[
  {
    "path": "LICENSE.md",
    "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2014 Phil Schumann\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\n"
  },
  {
    "path": "README.md",
    "content": "go-xsd\r\n======\r\n\r\n\r\nA Go package for loading ( **xml.Unmarshal()**-ing ) an XML Schema Definition (XSD) document into an **xsd.Schema** structure.\r\n\r\nWith this, you could probably write an XML validator, or otherwise utilize or further process the loaded XSD --- but the main use-case here was:\r\n\r\n\r\ngo-xsd/xsd-makepkg\r\n==================\r\n\r\n\r\nA command-line tool to generate Go \"XML wrapper\" package sources for specified XSD schema URIs.\r\n\r\nIf no arguments are specified, this tool proceeds to (re)generate all Go packages for various common XML formats in your local $GOPATH-relative directory corresponding to the **http://github.com/metaleap/go-xsd-pkg** repository. For more details on command-line arguments for *xsd-makepkg*: scroll down to the bottom of this readme.\r\n\r\nEach generated wrapper package contains the type structures required to easily **xml.Unmarshal()** an XML document based on that XSD.\r\n\r\n**XSD simple-types** are represented by the corresponding native Go scalar data type, augmented by utility methods where applicable:\r\n\r\n- enumerated simple-types (eg. \"value can be 'sunny', 'cloudy', 'rainy'\") get handy corresponding **IsXyz() bool** methods (eg. \"IsSunny()\", \"IsCloudy()\", \"IsRainy()\")\r\n\r\n- simple-types that define a whitespace-separated list of scalar values get a corresponding, properly typed **Values()** method\r\n\r\n- for attributes or elements that define a fixed or default value, their corresponding generated Go simple-type will have a properly typed *ElemnameDefault()* / *ElemnameFixed()* / *AttnameDefault()* / *AttnameFixed()* method (eg. if the *langpref* attribute is defined to default to \"Go\", then its simple-type will have a *LangprefDefault()* method returning \"Go\")\r\n\r\n**XSD complex-types**, attribute-groups, element-groups, elements etc. are ultimately represented by corresponding generated Go struct types.\r\n\r\n**XSD includes** are all loaded and processed together into a single output .go source file.\r\n\r\n**XSD imports** are rewritten as Go imports but not otherwise auto-magically processed. If you see the generated .go package importing another \"some-xsd-xml-whatever-name-_go\" package that will cause a \"package not found\" compiler error, then to make that import work, you'll first need to also auto-generate that package with *xsd-makepkg* yourself as well.\r\n\r\n**XSD documentation annotation** is rewritten as Go // code comments. Yeah, that's rather neat.\r\n\r\nRegarding the auto-generated code:\r\n\r\n- it's **by necessity not idiomatic** and most likely not as terse/slim as manually-written structs would be. For very simplistic XML formats, writing your own 3 or 4 custom structs might be a tiny bit more efficient. **For highly intricate, unwieldy XML formats, the auto-generated packages beat hand-writing 100s of custom structs, however.** Auto-generated code will never win a code-beauty contest, you're expected to simply import the compiled package rather than having to work inside its generated source files.\r\n\r\n- most (XSD-declared) types are prefixed with T -- thanks to the SVG schema which taught me that in XSD, \"scriptType\" and \"ScriptType\" are two valid and uniquely different type names. To have all types exported from the generated Go package, then, some kind of prefix is indeed needed.\r\n\r\n- most XSDs are chock-full of anonymous types, as well as implicit ones (unions, restrictions, extensions...) Go does support \"anonymous types\" per se, but I decided against using them. Every type is declared and exported, no anonymous magic. This makes most auto-generated packages \"look\" even more confusing than their XSD counterparts at first glance. Indeed they may appear quite bloated, and when coding with the imported generated package you'll probably be better off working with the particular XML format's specification document rather than the **godoc** for the generated package... this is not a perfect situation but at least for now I can work with this for the few XML formats I occasionally need to \"parse, convert and forget\" -- ultimately, most XML formats at my end are mere interchange or legacy formats, and never really the \"main topic\" at hand.\r\n\r\n\r\ngo-xsd/types\r\n============\r\n\r\n\r\nA tiny package automatically imported by all **go-xsd** auto-generated packages.\r\nMaps all XSD built-in simple-types to Go types, which affords us easy mapping of any XSD type references in the schema to Go imports: every *xs:string* and *xs:boolean* automatically becomes *xsdt.String* and *xsdt.Boolean* etc.\r\nTypes are mapped to Go types depending on how **encoding/xml.Unmarshal()** can handle them: ie. it parses bools and numbers, but dates/durations have too many format mismatches and thus are just declared string types.\r\nSame for base64- and hex-encoded binary data: since **Unmarshal()** won't decode them, we leave them as strings. If you need their binary data, your code needs to import Go's base64/hex codec packages and use them as necessary.\r\n\r\n\r\nHow to use auto-generated packages:\r\n===================================\r\n\r\n\r\nTake a look at the \"test progs\" under **xsd-makepkg/tests**, they're basically simple usage examples. For unmarshal you need to define just one small custom struct like this --- using the rss package as a simple example, as demonstrated in **xsd-makepkg/tests/xsd-test-rss/main.go**:\r\n\r\n\r\n    type MyRssDoc struct {\r\n        XMLName xml.Name `xml:\"rss\"`\r\n        rss.TxsdRss\r\n    }\r\n\r\n\r\nSo your custom struct specifies two things:\r\n\r\n- the XML name of the root element in your XML file, as is typical when working with **encoding/xml.Unmarshal()**.\r\n\r\n- the Go struct type from the auto-generated package to **embed right inside** your custom struct.\r\n\r\nThe second part is the only tricky part. XML Schema Definition has no real concept of \"root element\", partly because they're designed to support use-cases where you embed a full document defined in one XSD deep inside a full document defined in another XSD. So a Collada document may contain a full or partial MathML document somewhere inside it. Some well-designed XSDs define a single top-level element, so we could infer \"this is the root element\" and generate a \"XyzDoc\" struct (like the *MyRssDoc* above) for you. But many don't. Some formats may legally have one of two or more possible \"root\" elements, ie. Atom allegedly may have either a \"feed\" root element or an \"entry\" root element. So **go-xsd** does not magically infer which of the XSD's top-level elements might be the root element, you define this by writing a small struct as shown above. The naming of the root element Go type to be embedded is not consistent across different packages, because their naming is directly based on the XSD that was used to generate the package. So for example...\r\n\r\n- for rss we have *rss.TxsdRss*\r\n- for atom: *atom.TentryType* and *atom.TfeedType*\r\n- for svg: *svg.TsvgType*\r\n- for Collada: *collada.TxsdCollada*\r\n\r\nSeems like Collada and RSS share a certain naming pattern, and yet Atom/SVG share another one? Mere coincidence, the naming is completely arbitrary and up to the XSD author. Ultimately, to find out the proper Go type name to embed, you'll have to dig a bit inside the generated package. That's actually pretty straightforward, here's how you do it:\r\n\r\nA) Suppose you have an XML format where the root element (and only that one) is known to be named:\r\n\r\n\r\n    <gopher>\r\n\r\n\r\nB) Open the generated Go package source files under **$GOPATH/src/github.com/metaleap/go-xsd-pkg/yourdomain.org/xsd/gopher.xsd_go/*.go** (unless you used custom paths when you ran the **go-xsd/xsd-makepkg** tool)\r\n\r\nC) Search for an occurence of either:\r\n\r\n\r\n    \"gopher\"`\r\n\r\n\r\n( quote, gopher, quote, backtick ), or:\r\n\r\n\r\n     gopher\"`\r\n\r\n\r\n( *whitespace*, gopher, quote, backtick )\r\n\r\nD) The found occurence is likely the tag for a field in a type named something like **XsdGoPkgHasElem_Gopher** or **XsdGoPkgHasElems_Gopher**. Ignore that type, instead focus on the type of the field itself. That's the one you're looking for, the one to embed in your tiny custom doc struct.\r\n\r\n\r\nCommand-line flags for *go-xsd/xsd-makepkg* tool:\r\n=================================================\r\n\r\n\r\n- **-basepath=\"\"**: Defaults to github.com/metaleap/go-xsd-pkg. A $GOPATH/src/-relative path (always a slash-style path, even on Windows) where XSD files are downloaded to / loaded from and generated Go wrapper packages are created. Any XSD imports are also rewritten as Go imports from that path (but are not otherwise auto-magically processed in any way).\r\n- **-local=true**: Local copy -- only downloads if file does not exist locally\r\n- **-parse=false**: Not necessary, unless the generated Go wrapper package fails to compile with either the error \"*cannot convert {value} to type {type}*\" or \"*cannot use {value} (type {type}) as type {type} in return argument*\" -- ultimately down to a slightly faulty XSD file, but while rare, those exist (hello, KML using 0 and 1 for *xs:boolean*s that are clearly spec'd to be only ever either *true* or *false*...)\r\n- **-uri=\"\"**: The XML Schema Definition file URIs to generate a Go wrapper packages from, whitespace-separated. (For each, the protocol prefix can be omitted, it then defaults to *http://*. Only protocols understood by the *net/http* package are supported.)\r\n- **-gofmt=true**: Run 'gofmt' against the generated Go wrapper package?\r\n- **-goinst=true**: Run 'go-buildrun' ( http://github.com/metaleap/go-buildrun ) against the generated Go wrapper package?\r\n"
  },
  {
    "path": "elem.go",
    "content": "package xsd\r\n\r\nimport (\r\n\txsdt \"github.com/metaleap/go-xsd/types\"\r\n)\r\n\r\ntype element interface {\r\n\tbase() *elemBase\r\n\tinit(parent, self element, xsdName xsdt.NCName, atts ...beforeAfterMake)\r\n\tParent() element\r\n}\r\n\r\ntype elemBase struct {\r\n\tatts         []beforeAfterMake\r\n\tparent, self element // self is the struct that embeds elemBase, rather than the elemBase pseudo-field\r\n\txsdName      xsdt.NCName\r\n\thasNameAttr  bool\r\n}\r\n\r\nfunc (me *elemBase) afterMakePkg(bag *PkgBag) {\r\n\tif !me.hasNameAttr {\r\n\t\tbag.Stacks.Name.Pop()\r\n\t}\r\n\tfor _, a := range me.atts {\r\n\t\ta.afterMakePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *elemBase) beforeMakePkg(bag *PkgBag) {\r\n\tif !me.hasNameAttr {\r\n\t\tbag.Stacks.Name.Push(me.xsdName)\r\n\t}\r\n\tfor _, a := range me.atts {\r\n\t\ta.beforeMakePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *elemBase) base() *elemBase { return me }\r\n\r\nfunc (me *elemBase) init(parent, self element, xsdName xsdt.NCName, atts ...beforeAfterMake) {\r\n\tme.parent, me.self, me.xsdName, me.atts = parent, self, xsdName, atts\r\n\tfor _, a := range atts {\r\n\t\tif _, me.hasNameAttr = a.(*hasAttrName); me.hasNameAttr {\r\n\t\t\tbreak\r\n\t\t}\r\n\t}\r\n}\r\n\r\nfunc (me *elemBase) longSafeName(bag *PkgBag) (ln string) {\r\n\tvar els = []element{}\r\n\tfor el := me.self; (el != nil) && (el != bag.Schema); el = el.Parent() {\r\n\t\tels = append(els, el)\r\n\t}\r\n\tfor i := len(els) - 1; i >= 0; i-- {\r\n\t\tln += bag.safeName(els[i].base().selfName().String())\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc (me *elemBase) selfName() xsdt.NCName {\r\n\tif me.hasNameAttr {\r\n\t\tfor _, at := range me.atts {\r\n\t\t\tif an, ok := at.(*hasAttrName); ok {\r\n\t\t\t\treturn an.Name\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\treturn me.xsdName\r\n}\r\n\r\nfunc (me *elemBase) Parent() element { return me.parent }\r\n\r\ntype All struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"all\"`\r\n\thasAttrId\r\n\thasAttrMaxOccurs\r\n\thasAttrMinOccurs\r\n\thasElemAnnotation\r\n\thasElemsElement\r\n}\r\n\r\ntype Annotation struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"annotation\"`\r\n\thasElemsAppInfo\r\n\thasElemsDocumentation\r\n}\r\n\r\ntype Any struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"any\"`\r\n\thasAttrId\r\n\thasAttrMaxOccurs\r\n\thasAttrMinOccurs\r\n\thasAttrNamespace\r\n\thasAttrProcessContents\r\n\thasElemAnnotation\r\n}\r\n\r\ntype AnyAttribute struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"anyAttribute\"`\r\n\thasAttrId\r\n\thasAttrNamespace\r\n\thasAttrProcessContents\r\n\thasElemAnnotation\r\n}\r\n\r\ntype AppInfo struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"appinfo\"`\r\n\thasAttrSource\r\n\thasCdata\r\n}\r\n\r\ntype Attribute struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"attribute\"`\r\n\thasAttrDefault\r\n\thasAttrFixed\r\n\thasAttrForm\r\n\thasAttrId\r\n\thasAttrName\r\n\thasAttrRef\r\n\thasAttrType\r\n\thasAttrUse\r\n\thasElemAnnotation\r\n\thasElemsSimpleType\r\n}\r\n\r\ntype AttributeGroup struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"attributeGroup\"`\r\n\thasAttrId\r\n\thasAttrName\r\n\thasAttrRef\r\n\thasElemAnnotation\r\n\thasElemsAnyAttribute\r\n\thasElemsAttribute\r\n\thasElemsAttributeGroup\r\n}\r\n\r\ntype Choice struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"choice\"`\r\n\thasAttrId\r\n\thasAttrMaxOccurs\r\n\thasAttrMinOccurs\r\n\thasElemAnnotation\r\n\thasElemsAny\r\n\thasElemsChoice\r\n\thasElemsElement\r\n\thasElemsGroup\r\n\thasElemsSequence\r\n}\r\n\r\ntype ComplexContent struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"complexContent\"`\r\n\thasAttrId\r\n\thasAttrMixed\r\n\thasElemAnnotation\r\n\thasElemExtensionComplexContent\r\n\thasElemRestrictionComplexContent\r\n}\r\n\r\ntype ComplexType struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"complexType\"`\r\n\thasAttrAbstract\r\n\thasAttrBlock\r\n\thasAttrFinal\r\n\thasAttrId\r\n\thasAttrMixed\r\n\thasAttrName\r\n\thasElemAll\r\n\thasElemAnnotation\r\n\thasElemsAnyAttribute\r\n\thasElemsAttribute\r\n\thasElemsAttributeGroup\r\n\thasElemChoice\r\n\thasElemComplexContent\r\n\thasElemGroup\r\n\thasElemSequence\r\n\thasElemSimpleContent\r\n}\r\n\r\ntype Documentation struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"documentation\"`\r\n\thasAttrLang\r\n\thasAttrSource\r\n\thasCdata\r\n}\r\n\r\ntype Element struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"element\"`\r\n\thasAttrAbstract\r\n\thasAttrBlock\r\n\thasAttrDefault\r\n\thasAttrFinal\r\n\thasAttrFixed\r\n\thasAttrForm\r\n\thasAttrId\r\n\thasAttrMaxOccurs\r\n\thasAttrMinOccurs\r\n\thasAttrName\r\n\thasAttrNillable\r\n\thasAttrRef\r\n\thasAttrSubstitutionGroup\r\n\thasAttrType\r\n\thasElemAnnotation\r\n\thasElemComplexType\r\n\thasElemsKey\r\n\thasElemKeyRef\r\n\thasElemsSimpleType\r\n\thasElemUnique\r\n}\r\n\r\ntype ExtensionComplexContent struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"extension\"`\r\n\thasAttrBase\r\n\thasAttrId\r\n\thasElemAll\r\n\thasElemAnnotation\r\n\thasElemsAnyAttribute\r\n\thasElemsAttribute\r\n\thasElemsAttributeGroup\r\n\thasElemsChoice\r\n\thasElemsGroup\r\n\thasElemsSequence\r\n}\r\n\r\ntype ExtensionSimpleContent struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"extension\"`\r\n\thasAttrBase\r\n\thasAttrId\r\n\thasElemAnnotation\r\n\thasElemsAnyAttribute\r\n\thasElemsAttribute\r\n\thasElemsAttributeGroup\r\n}\r\n\r\ntype Field struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"field\"`\r\n\thasAttrId\r\n\thasAttrXpath\r\n\thasElemAnnotation\r\n}\r\n\r\ntype Group struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"group\"`\r\n\thasAttrId\r\n\thasAttrMaxOccurs\r\n\thasAttrMinOccurs\r\n\thasAttrName\r\n\thasAttrRef\r\n\thasElemAll\r\n\thasElemAnnotation\r\n\thasElemChoice\r\n\thasElemSequence\r\n}\r\n\r\ntype Include struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"include\"`\r\n\thasAttrId\r\n\thasAttrSchemaLocation\r\n\thasElemAnnotation\r\n}\r\n\r\ntype Import struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"import\"`\r\n\thasAttrId\r\n\thasAttrNamespace\r\n\thasAttrSchemaLocation\r\n\thasElemAnnotation\r\n}\r\n\r\ntype Key struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"key\"`\r\n\thasAttrId\r\n\thasAttrName\r\n\thasElemAnnotation\r\n\thasElemField\r\n\thasElemSelector\r\n}\r\n\r\ntype KeyRef struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"keyref\"`\r\n\thasAttrId\r\n\thasAttrName\r\n\thasAttrRefer\r\n\thasElemAnnotation\r\n\thasElemField\r\n\thasElemSelector\r\n}\r\n\r\ntype List struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"list\"`\r\n\thasAttrId\r\n\thasAttrItemType\r\n\thasElemAnnotation\r\n\thasElemsSimpleType\r\n}\r\n\r\ntype Notation struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"notation\"`\r\n\thasAttrId\r\n\thasAttrName\r\n\thasAttrPublic\r\n\thasAttrSystem\r\n\thasElemAnnotation\r\n}\r\n\r\ntype Redefine struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"redefine\"`\r\n\thasAttrId\r\n\thasAttrSchemaLocation\r\n\thasElemAnnotation\r\n\thasElemsAttributeGroup\r\n\thasElemsComplexType\r\n\thasElemsGroup\r\n\thasElemsSimpleType\r\n}\r\n\r\ntype RestrictionComplexContent struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"restriction\"`\r\n\thasAttrBase\r\n\thasAttrId\r\n\thasElemAll\r\n\thasElemAnnotation\r\n\thasElemsAnyAttribute\r\n\thasElemsAttribute\r\n\thasElemsAttributeGroup\r\n\thasElemsChoice\r\n\thasElemsSequence\r\n}\r\n\r\ntype RestrictionSimpleContent struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"restriction\"`\r\n\thasAttrBase\r\n\thasAttrId\r\n\thasElemAnnotation\r\n\thasElemsAnyAttribute\r\n\thasElemsAttribute\r\n\thasElemsAttributeGroup\r\n\thasElemsEnumeration\r\n\thasElemFractionDigits\r\n\thasElemLength\r\n\thasElemMaxExclusive\r\n\thasElemMaxInclusive\r\n\thasElemMaxLength\r\n\thasElemMinExclusive\r\n\thasElemMinInclusive\r\n\thasElemMinLength\r\n\thasElemPattern\r\n\thasElemsSimpleType\r\n\thasElemTotalDigits\r\n\thasElemWhiteSpace\r\n}\r\n\r\ntype RestrictionSimpleEnumeration struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"enumeration\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype RestrictionSimpleFractionDigits struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"fractionDigits\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype RestrictionSimpleLength struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"length\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype RestrictionSimpleMaxExclusive struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"maxExclusive\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype RestrictionSimpleMaxInclusive struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"maxInclusive\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype RestrictionSimpleMaxLength struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"maxLength\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype RestrictionSimpleMinExclusive struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"minExclusive\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype RestrictionSimpleMinInclusive struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"minInclusive\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype RestrictionSimpleMinLength struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"minLength\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype RestrictionSimplePattern struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"pattern\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype RestrictionSimpleTotalDigits struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"totalDigits\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype RestrictionSimpleType struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"restriction\"`\r\n\thasAttrBase\r\n\thasAttrId\r\n\thasElemAnnotation\r\n\thasElemsEnumeration\r\n\thasElemFractionDigits\r\n\thasElemLength\r\n\thasElemMaxExclusive\r\n\thasElemMaxInclusive\r\n\thasElemMaxLength\r\n\thasElemMinExclusive\r\n\thasElemMinInclusive\r\n\thasElemMinLength\r\n\thasElemPattern\r\n\thasElemsSimpleType\r\n\thasElemTotalDigits\r\n\thasElemWhiteSpace\r\n}\r\n\r\ntype RestrictionSimpleWhiteSpace struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"whiteSpace\"`\r\n\thasAttrValue\r\n}\r\n\r\ntype Selector struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"selector\"`\r\n\thasAttrId\r\n\thasAttrXpath\r\n\thasElemAnnotation\r\n}\r\n\r\ntype Sequence struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"sequence\"`\r\n\thasAttrId\r\n\thasAttrMaxOccurs\r\n\thasAttrMinOccurs\r\n\thasElemAnnotation\r\n\thasElemsAny\r\n\thasElemsChoice\r\n\thasElemsElement\r\n\thasElemsGroup\r\n\thasElemsSequence\r\n}\r\n\r\ntype SimpleContent struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"simpleContent\"`\r\n\thasAttrId\r\n\thasElemAnnotation\r\n\thasElemExtensionSimpleContent\r\n\thasElemRestrictionSimpleContent\r\n}\r\n\r\ntype SimpleType struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"simpleType\"`\r\n\thasAttrFinal\r\n\thasAttrId\r\n\thasAttrName\r\n\thasElemAnnotation\r\n\thasElemList\r\n\thasElemRestrictionSimpleType\r\n\thasElemUnion\r\n}\r\n\r\ntype Union struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"union\"`\r\n\thasAttrId\r\n\thasAttrMemberTypes\r\n\thasElemAnnotation\r\n\thasElemsSimpleType\r\n}\r\n\r\ntype Unique struct {\r\n\telemBase\r\n\t//\tXMLName xml.Name `xml:\"unique\"`\r\n\thasAttrId\r\n\thasAttrName\r\n\thasElemAnnotation\r\n\thasElemField\r\n\thasElemSelector\r\n}\r\n\r\nfunc Flattened(choices []*Choice, seqs []*Sequence) (allChoices []*Choice, allSeqs []*Sequence) {\r\n\tvar tmpChoices []*Choice\r\n\tvar tmpSeqs []*Sequence\r\n\tfor _, ch := range choices {\r\n\t\tif ch != nil {\r\n\t\t\tallChoices = append(allChoices, ch)\r\n\t\t\ttmpChoices, tmpSeqs = Flattened(ch.Choices, ch.Sequences)\r\n\t\t\tallChoices = append(allChoices, tmpChoices...)\r\n\t\t\tallSeqs = append(allSeqs, tmpSeqs...)\r\n\t\t}\r\n\t}\r\n\tfor _, seq := range seqs {\r\n\t\tif seq != nil {\r\n\t\t\tallSeqs = append(allSeqs, seq)\r\n\t\t\ttmpChoices, tmpSeqs = Flattened(seq.Choices, seq.Sequences)\r\n\t\t\tallChoices = append(allChoices, tmpChoices...)\r\n\t\t\tallSeqs = append(allSeqs, tmpSeqs...)\r\n\t\t}\r\n\t}\r\n\treturn\r\n}\r\n"
  },
  {
    "path": "elemmakepkg.go",
    "content": "package xsd\r\n\r\nimport (\r\n\t\"fmt\"\r\n\t\"path\"\r\n\t\"strings\"\r\n\t\"unicode\"\r\n\r\n\t\"github.com/metaleap/go-util/str\"\r\n\r\n\txsdt \"github.com/metaleap/go-xsd/types\"\r\n)\r\n\r\nconst (\r\n\tidPrefix = \"XsdGoPkg\"\r\n)\r\n\r\nfunc (me *All) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsElement.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Annotation) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsAppInfo.makePkg(bag)\r\n\tme.hasElemsDocumentation.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Any) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *AnyAttribute) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *AppInfo) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Attribute) makePkg(bag *PkgBag) {\r\n\tvar safeName, typeName, tmp, key, defVal, impName string\r\n\tvar defName = \"Default\"\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tif len(me.Form) == 0 {\r\n\t\tme.Form = bag.Schema.AttributeFormDefault\r\n\t}\r\n\tme.hasElemsSimpleType.makePkg(bag)\r\n\tif len(me.Ref) > 0 {\r\n\t\tkey = bag.resolveQnameRef(me.Ref.String(), \"\", &impName)\r\n\t\ttmp = ustr.PrefixWithSep(impName, \".\", idPrefix+\"HasAttr_\"+bag.safeName(me.Ref.String()[(strings.Index(me.Ref.String(), \":\")+1):]))\r\n\t\tif bag.attRefImps[me], bag.attsKeys[me] = impName, key; len(bag.attsCache[key]) == 0 {\r\n\t\t\tbag.attsCache[key] = tmp\r\n\t\t}\r\n\t} else {\r\n\t\tsafeName = bag.safeName(me.Name.String())\r\n\t\tif typeName = me.Type.String(); (len(typeName) == 0) && (len(me.SimpleTypes) > 0) {\r\n\t\t\ttypeName = me.SimpleTypes[0].Name.String()\r\n\t\t} else {\r\n\t\t\tif len(typeName) == 0 {\r\n\t\t\t\ttypeName = bag.xsdStringTypeRef()\r\n\t\t\t}\r\n\t\t\ttypeName = bag.resolveQnameRef(typeName, \"T\", &impName)\r\n\t\t}\r\n\t\tif defVal = me.Default; len(defVal) == 0 {\r\n\t\t\tdefName, defVal = \"Fixed\", me.Fixed\r\n\t\t}\r\n\t\tif me.Parent() == bag.Schema {\r\n\t\t\tkey = safeName\r\n\t\t} else {\r\n\t\t\tkey = safeName + \"_\" + bag.safeName(typeName) + \"_\" + bag.safeName(defVal)\r\n\t\t}\r\n\t\tif len(bag.attsCache[key]) == 0 {\r\n\t\t\ttmp = idPrefix + \"HasAttr_\" + key\r\n\t\t\tbag.attsKeys[me] = key\r\n\t\t\tbag.attsCache[key] = tmp\r\n\t\t\tvar td = bag.addType(me, tmp, \"\", me.Annotation)\r\n\t\t\ttd.addField(me, safeName, typeName, ustr.Ifs(len(bag.Schema.TargetNamespace) > 0, bag.Schema.TargetNamespace.String()+\" \", \"\")+me.Name.String()+\",attr\", me.Annotation)\r\n\t\t\tif isPt := bag.isParseType(typeName); len(defVal) > 0 {\r\n\t\t\t\tdoc := sfmt(\"Returns the %v value for %v -- \"+ustr.Ifs(isPt, \"%v\", \"%#v\"), strings.ToLower(defName), safeName, defVal)\r\n\t\t\t\tif isPt {\r\n\t\t\t\t\tif PkgGen.ForceParseForDefaults {\r\n\t\t\t\t\t\ttd.addMethod(nil, tmp, safeName+defName, typeName, sfmt(\"var x = new(%v); x.Set(%#v); return *x\", typeName, defVal), doc)\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\ttd.addMethod(nil, tmp, safeName+defName, typeName, sfmt(\"return %v(%v)\", typeName, defVal), doc)\r\n\t\t\t\t\t}\r\n\t\t\t\t} else {\r\n\t\t\t\t\ttd.addMethod(nil, tmp, safeName+defName, typeName, sfmt(\"return %v(%#v)\", typeName, defVal), doc)\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\tbag.attsKeys[me] = key\r\n\t\t}\r\n\t}\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *AttributeGroup) makePkg(bag *PkgBag) {\r\n\tvar refName, refImp string\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsAttribute.makePkg(bag)\r\n\tme.hasElemsAnyAttribute.makePkg(bag)\r\n\tme.hasElemsAttributeGroup.makePkg(bag)\r\n\tif len(me.Ref) > 0 {\r\n\t\tif len(bag.attGroups[me]) == 0 {\r\n\t\t\trefName = bag.resolveQnameRef(me.Ref.String(), \"\", &refImp)\r\n\t\t\tbag.attGroups[me] = idPrefix + \"HasAtts_\" + refName\r\n\t\t\tbag.attGroupRefImps[me] = refImp\r\n\t\t}\r\n\t} else {\r\n\t\tsafeName := bag.safeName(me.Name.String())\r\n\t\ttmp := idPrefix + \"HasAtts_\" + safeName\r\n\t\tvar td = bag.addType(me, tmp, \"\", me.Annotation)\r\n\t\tbag.attGroups[me] = tmp\r\n\t\tfor _, ag := range me.AttributeGroups {\r\n\t\t\tif len(ag.Ref) == 0 {\r\n\t\t\t\tag.Ref.Set(ag.Name.String())\r\n\t\t\t}\r\n\t\t\tif refName = bag.resolveQnameRef(ag.Ref.String(), \"\", &refImp); len(refImp) > 0 {\r\n\t\t\t\ttd.addEmbed(ag, refImp+\".\"+idPrefix+\"HasAtts_\"+refName[(len(refImp)+1):], ag.Annotation)\r\n\t\t\t} else {\r\n\t\t\t\ttd.addEmbed(ag, idPrefix+\"HasAtts_\"+refName, ag.Annotation)\r\n\t\t\t}\r\n\t\t}\r\n\t\tfor _, att := range me.Attributes {\r\n\t\t\tif key := bag.attsKeys[att]; len(key) > 0 {\r\n\t\t\t\ttd.addEmbed(att, bag.attsCache[key], att.Annotation)\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Choice) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsAny.makePkg(bag)\r\n\tme.hasElemsChoice.makePkg(bag)\r\n\tme.hasElemsGroup.makePkg(bag)\r\n\tme.hasElemsSequence.makePkg(bag)\r\n\tme.hasElemsElement.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *ComplexContent) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemExtensionComplexContent.makePkg(bag)\r\n\tme.hasElemRestrictionComplexContent.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *ComplexType) makePkg(bag *PkgBag) {\r\n\tvar att *Attribute\r\n\tvar attGroup *AttributeGroup\r\n\tvar ctBaseType, ctValueType, typeSafeName string\r\n\tvar allAtts = map[*Attribute]bool{}\r\n\tvar allAttGroups = map[*AttributeGroup]bool{}\r\n\tvar allElems = map[*Element]bool{}\r\n\tvar allElemGroups = map[*Group]bool{}\r\n\tvar elsDone, grsDone = map[string]bool{}, map[string]bool{}\r\n\tvar allChoices, tmpChoices = []*Choice{}, []*Choice{me.Choice}\r\n\tvar allSeqs, tmpSeqs = []*Sequence{}, []*Sequence{me.Sequence}\r\n\tvar el *Element\r\n\tvar elGr *Group\r\n\tvar mixed = false\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsAttribute.makePkg(bag)\r\n\tme.hasElemsAnyAttribute.makePkg(bag)\r\n\tme.hasElemsAttributeGroup.makePkg(bag)\r\n\tme.hasElemAll.makePkg(bag)\r\n\tme.hasElemChoice.makePkg(bag)\r\n\tme.hasElemGroup.makePkg(bag)\r\n\tme.hasElemSequence.makePkg(bag)\r\n\tme.hasElemComplexContent.makePkg(bag)\r\n\tme.hasElemSimpleContent.makePkg(bag)\r\n\tif len(me.Name) == 0 {\r\n\t\tme.Name = bag.AnonName(me.longSafeName(bag))\r\n\t}\r\n\ttypeSafeName = bag.safeName(ustr.PrependIf(me.Name.String(), \"T\"))\r\n\tvar td = bag.addType(me, typeSafeName, \"\", me.Annotation)\r\n\tfor _, att = range me.Attributes {\r\n\t\tallAtts[att] = true\r\n\t}\r\n\tfor _, attGroup = range me.AttributeGroups {\r\n\t\tallAttGroups[attGroup] = true\r\n\t}\r\n\tallChoices, allSeqs = Flattened(tmpChoices, tmpSeqs)\r\n\tif me.All != nil {\r\n\t\tfor _, el = range me.All.Elements {\r\n\t\t\tallElems[el] = true\r\n\t\t}\r\n\t}\r\n\tif me.Group != nil {\r\n\t\tallElemGroups[me.Group] = true\r\n\t}\r\n\tif mixed = me.Mixed; me.ComplexContent != nil {\r\n\t\tmixed = mixed || me.ComplexContent.Mixed\r\n\t\ttd.addAnnotations(me.ComplexContent.Annotation)\r\n\t\tif me.ComplexContent.ExtensionComplexContent != nil {\r\n\t\t\ttd.addAnnotations(me.ComplexContent.ExtensionComplexContent.Annotation)\r\n\t\t\tif me.ComplexContent.ExtensionComplexContent.All != nil {\r\n\t\t\t\tfor _, el = range me.ComplexContent.ExtensionComplexContent.All.Elements {\r\n\t\t\t\t\tallElems[el] = true\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tfor _, elGr = range me.ComplexContent.ExtensionComplexContent.Groups {\r\n\t\t\t\tallElemGroups[elGr] = true\r\n\t\t\t}\r\n\t\t\ttmpChoices, tmpSeqs = Flattened(me.ComplexContent.ExtensionComplexContent.Choices, me.ComplexContent.ExtensionComplexContent.Sequences)\r\n\t\t\tallChoices, allSeqs = append(allChoices, tmpChoices...), append(allSeqs, tmpSeqs...)\r\n\t\t\tfor _, att = range me.ComplexContent.ExtensionComplexContent.Attributes {\r\n\t\t\t\tallAtts[att] = true\r\n\t\t\t}\r\n\t\t\tfor _, attGroup = range me.ComplexContent.ExtensionComplexContent.AttributeGroups {\r\n\t\t\t\tallAttGroups[attGroup] = true\r\n\t\t\t}\r\n\t\t\tif len(me.ComplexContent.ExtensionComplexContent.Base) > 0 {\r\n\t\t\t\tctBaseType = me.ComplexContent.ExtensionComplexContent.Base.String()\r\n\t\t\t}\r\n\t\t}\r\n\t\tif me.ComplexContent.RestrictionComplexContent != nil {\r\n\t\t\ttd.addAnnotations(me.ComplexContent.RestrictionComplexContent.Annotation)\r\n\t\t\tif me.ComplexContent.RestrictionComplexContent.All != nil {\r\n\t\t\t\tfor _, el = range me.ComplexContent.RestrictionComplexContent.All.Elements {\r\n\t\t\t\t\tallElems[el] = true\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\ttmpChoices, tmpSeqs = Flattened(me.ComplexContent.RestrictionComplexContent.Choices, me.ComplexContent.RestrictionComplexContent.Sequences)\r\n\t\t\tallChoices, allSeqs = append(allChoices, tmpChoices...), append(allSeqs, tmpSeqs...)\r\n\t\t\tfor _, att = range me.ComplexContent.RestrictionComplexContent.Attributes {\r\n\t\t\t\tallAtts[att] = true\r\n\t\t\t}\r\n\t\t\tfor _, attGroup = range me.ComplexContent.RestrictionComplexContent.AttributeGroups {\r\n\t\t\t\tallAttGroups[attGroup] = true\r\n\t\t\t}\r\n\t\t\tif len(me.ComplexContent.RestrictionComplexContent.Base) > 0 {\r\n\t\t\t\tctBaseType = me.ComplexContent.RestrictionComplexContent.Base.String()\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tif me.SimpleContent != nil {\r\n\t\ttd.addAnnotations(me.SimpleContent.Annotation)\r\n\t\tif me.SimpleContent.ExtensionSimpleContent != nil {\r\n\t\t\tif len(me.SimpleContent.ExtensionSimpleContent.Base) > 0 {\r\n\t\t\t\tctBaseType = me.SimpleContent.ExtensionSimpleContent.Base.String()\r\n\t\t\t}\r\n\t\t\ttd.addAnnotations(me.SimpleContent.ExtensionSimpleContent.Annotation)\r\n\t\t\tfor _, att = range me.SimpleContent.ExtensionSimpleContent.Attributes {\r\n\t\t\t\tallAtts[att] = true\r\n\t\t\t}\r\n\t\t\tfor _, attGroup = range me.SimpleContent.ExtensionSimpleContent.AttributeGroups {\r\n\t\t\t\tallAttGroups[attGroup] = true\r\n\t\t\t}\r\n\t\t\tif (len(ctValueType) == 0) && (len(me.SimpleContent.ExtensionSimpleContent.Base) > 0) {\r\n\t\t\t\tctValueType = me.SimpleContent.ExtensionSimpleContent.Base.String()\r\n\t\t\t}\r\n\t\t}\r\n\t\tif me.SimpleContent.RestrictionSimpleContent != nil {\r\n\t\t\tif len(me.SimpleContent.RestrictionSimpleContent.Base) > 0 {\r\n\t\t\t\tctBaseType = me.SimpleContent.RestrictionSimpleContent.Base.String()\r\n\t\t\t}\r\n\t\t\ttd.addAnnotations(me.SimpleContent.RestrictionSimpleContent.Annotation)\r\n\t\t\tfor _, att = range me.SimpleContent.RestrictionSimpleContent.Attributes {\r\n\t\t\t\tallAtts[att] = true\r\n\t\t\t}\r\n\t\t\tfor _, attGroup = range me.SimpleContent.RestrictionSimpleContent.AttributeGroups {\r\n\t\t\t\tallAttGroups[attGroup] = true\r\n\t\t\t}\r\n\t\t\tif (len(ctValueType) == 0) && (len(me.SimpleContent.RestrictionSimpleContent.Base) > 0) {\r\n\t\t\t\tctValueType = me.SimpleContent.RestrictionSimpleContent.Base.String()\r\n\t\t\t}\r\n\t\t\tif (len(ctValueType) == 0) && (len(me.SimpleContent.RestrictionSimpleContent.SimpleTypes) > 0) {\r\n\t\t\t\tctValueType = me.SimpleContent.RestrictionSimpleContent.SimpleTypes[0].Name.String()\r\n\t\t\t}\r\n\t\t\tfor _, enum := range me.SimpleContent.RestrictionSimpleContent.Enumerations {\r\n\t\t\t\tprintln(\"ENUMTODO!?! Whoever sees this message, please post an issue at github.com/metaleap/go-xsd with a link to the XSD...\" + enum.selfName().String())\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tif ctBaseType = bag.resolveQnameRef(ctBaseType, \"T\", nil); len(ctBaseType) > 0 {\r\n\t\tif strings.HasPrefix(ctBaseType, \"xsdt.\") {\r\n\t\t\ttd.addEmbed(nil, idPrefix+\"HasCdata\")\r\n\t\t} else {\r\n\t\t\ttd.addEmbed(nil, bag.safeName(ctBaseType))\r\n\t\t}\r\n\t} else if ctValueType = bag.resolveQnameRef(ctValueType, \"T\", nil); len(ctValueType) > 0 {\r\n\t\tbag.simpleContentValueTypes[typeSafeName] = ctValueType\r\n\t\ttd.addField(nil, idPrefix+\"Value\", ctValueType, \",chardata\")\r\n\t\tchain := sfmt(\"me.%vValue\", idPrefix)\r\n\t\ttd.addMethod(nil, \"*\"+typeSafeName, sfmt(\"To%v\", bag.safeName(ctValueType)), ctValueType, sfmt(\"return %v\", chain), sfmt(\"Simply returns the value of its %vValue field.\", idPrefix))\r\n\t\tvar ttn string\r\n\t\tfor ttd := bag.declTypes[ctValueType]; ttd != nil; ttd = bag.declTypes[ttn] {\r\n\t\t\tif ttd != nil {\r\n\t\t\t\tbag.declConvs[ttd.Name] = true\r\n\t\t\t}\r\n\t\t\tif ttn = ttd.Type; len(ttn) > 0 {\r\n\t\t\t\tchain += sfmt(\".To%v()\", bag.safeName(ttn))\r\n\t\t\t\ttd.addMethod(nil, \"*\"+typeSafeName, sfmt(\"To%v\", bag.safeName(ttn)), ttn, sfmt(\"return %v\", chain), sfmt(\"Returns the value of its %vValue field as a %v (which %v is just aliasing).\", idPrefix, ttn, ctValueType))\r\n\t\t\t} else {\r\n\t\t\t\tbreak\r\n\t\t\t}\r\n\t\t}\r\n\t\tif (!strings.HasPrefix(ctValueType, \"xsdt.\")) && (bag.declTypes[ctValueType] == nil) {\r\n\t\t\tprintln(\"NOTFOUND: \" + ctValueType)\r\n\t\t}\r\n\t} else if mixed {\r\n\t\ttd.addEmbed(nil, idPrefix+\"HasCdata\")\r\n\t}\r\n\tfor elGr = range allElemGroups {\r\n\t\tsubMakeElemGroup(bag, td, elGr, grsDone, anns(nil, me.ComplexContent)...)\r\n\t}\r\n\tfor el = range allElems {\r\n\t\tsubMakeElem(bag, td, el, elsDone, 1, anns(me.All, nil)...)\r\n\t}\r\n\tfor _, ch := range allChoices {\r\n\t\tfor _, el = range ch.Elements {\r\n\t\t\tsubMakeElem(bag, td, el, elsDone, ch.hasAttrMaxOccurs.Value(), ch.Annotation)\r\n\t\t}\r\n\t\tfor _, elGr = range ch.Groups {\r\n\t\t\tsubMakeElemGroup(bag, td, elGr, grsDone, ch.Annotation)\r\n\t\t}\r\n\t}\r\n\tfor _, seq := range allSeqs {\r\n\t\tfor _, el = range seq.Elements {\r\n\t\t\tsubMakeElem(bag, td, el, elsDone, seq.hasAttrMaxOccurs.Value(), seq.Annotation)\r\n\t\t}\r\n\t\tfor _, elGr = range seq.Groups {\r\n\t\t\tsubMakeElemGroup(bag, td, elGr, grsDone, seq.Annotation)\r\n\t\t}\r\n\t}\r\n\tfor attGroup = range allAttGroups {\r\n\t\ttd.addEmbed(attGroup, ustr.PrefixWithSep(bag.attGroupRefImps[attGroup], \".\", bag.attGroups[attGroup][(strings.Index(bag.attGroups[attGroup], \".\")+1):]), attGroup.Annotation)\r\n\t}\r\n\r\n\tfor att = range allAtts {\r\n\t\tif key := bag.attsKeys[att]; len(key) > 0 {\r\n\t\t\ttd.addEmbed(att, ustr.PrefixWithSep(bag.attRefImps[att], \".\", bag.attsCache[key][(strings.Index(bag.attsCache[key], \".\")+1):]), att.Annotation)\r\n\t\t}\r\n\t}\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Documentation) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tif len(me.CDATA) > 0 {\r\n\t\tvar s, ln string\r\n\t\tfor _, ln = range ustr.Split(me.CDATA, \"\\n\") {\r\n\t\t\tif s = strings.Trim(ln, \" \\t\\r\\n\"); len(s) > 0 {\r\n\t\t\t\tbag.appendFmt(false, \"//\\t%s\", s)\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Element) makePkg(bag *PkgBag) {\r\n\tvar (\r\n\t\tsafeName, typeName, valueType, tmp, key, defVal, impName string\r\n\t\tsubEl                                                    *Element\r\n\t)\r\n\tasterisk, defName, doc := \"\", \"Default\", \"\"\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tif len(me.Form) == 0 {\r\n\t\tme.Form = bag.Schema.ElementFormDefault\r\n\t}\r\n\tme.hasElemsSimpleType.makePkg(bag)\r\n\tme.hasElemComplexType.makePkg(bag)\r\n\tif len(me.Ref) > 0 {\r\n\t\tkey = bag.resolveQnameRef(me.Ref.String(), \"\", &impName)\r\n\t\tfor pref, cache := range map[string]map[string]string{\"HasElem_\": bag.elemsCacheOnce, \"HasElems_\": bag.elemsCacheMult} {\r\n\t\t\ttmp = ustr.PrefixWithSep(impName, \".\", idPrefix+pref+bag.safeName(me.Ref.String()[(strings.Index(me.Ref.String(), \":\")+1):]))\r\n\t\t\tif bag.elemRefImps[me], bag.elemKeys[me] = impName, key; len(cache[key]) == 0 {\r\n\t\t\t\tcache[key] = tmp\r\n\t\t\t}\r\n\t\t}\r\n\t} else {\r\n\t\tsafeName = bag.safeName(me.Name.String())\r\n\t\tif typeName = me.Type.String(); (len(typeName) == 0) && ((me.ComplexType != nil) || (len(me.SimpleTypes) > 0)) {\r\n\t\t\tif me.ComplexType != nil {\r\n\t\t\t\tasterisk, typeName = \"*\", me.ComplexType.Name.String()\r\n\t\t\t} else {\r\n\t\t\t\ttypeName = me.SimpleTypes[0].Name.String()\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\tif len(typeName) == 0 {\r\n\t\t\t\ttypeName = bag.xsdStringTypeRef()\r\n\t\t\t}\r\n\t\t\tloadedSchemas := make(map[string]bool)\r\n\t\t\tif typeName = bag.resolveQnameRef(typeName, \"T\", &impName); bag.Schema.RootSchema([]string{bag.Schema.loadUri}).globalComplexType(bag, typeName, loadedSchemas) != nil {\r\n\t\t\t\tasterisk = \"*\"\r\n\t\t\t}\r\n\t\t}\r\n\t\tif defVal = me.Default; len(defVal) == 0 {\r\n\t\t\tdefName, defVal = \"Fixed\", me.Fixed\r\n\t\t}\r\n\t\tif me.Parent() == bag.Schema {\r\n\t\t\tkey = safeName\r\n\t\t} else {\r\n\t\t\tkey = bag.safeName(bag.Stacks.FullName()) + \"_\" + safeName + \"_\" + bag.safeName(typeName) + \"_\" + bag.safeName(defVal)\r\n\t\t}\r\n\t\tif valueType = bag.simpleContentValueTypes[typeName]; len(valueType) == 0 {\r\n\t\t\tvalueType = typeName\r\n\t\t}\r\n\t\tisPt := bag.isParseType(valueType)\r\n\t\tif _, isChoice := me.Parent().(*Choice); isChoice && isPt {\r\n\t\t\tasterisk = \"*\"\r\n\t\t}\r\n\t\tfor pref, cache := range map[string]map[string]string{\"HasElem_\": bag.elemsCacheOnce, \"HasElems_\": bag.elemsCacheMult} {\r\n\t\t\tif tmp = idPrefix + pref + key; !bag.elemsWritten[tmp] {\r\n\t\t\t\tbag.elemsWritten[tmp], bag.elemKeys[me] = true, key\r\n\t\t\t\tcache[key] = tmp\r\n\t\t\t\tvar td = bag.addType(me, tmp, \"\", me.Annotation)\r\n\t\t\t\ttd.addField(me, ustr.Ifs(pref == \"HasElems_\", pluralize(safeName), safeName), ustr.Ifs(pref == \"HasElems_\", \"[]\"+asterisk+typeName, asterisk+typeName), ustr.Ifs(len(bag.Schema.TargetNamespace) > 0, bag.Schema.TargetNamespace.String()+\" \", \"\")+me.Name.String(), me.Annotation)\r\n\t\t\t\tif me.parent == bag.Schema {\r\n\t\t\t\t\tloadedSchemas := make(map[string]bool)\r\n\t\t\t\t\tfor _, subEl = range bag.Schema.RootSchema([]string{bag.Schema.loadUri}).globalSubstitutionElems(me, loadedSchemas) {\r\n\t\t\t\t\t\ttd.addEmbed(subEl, idPrefix+pref+bag.safeName(subEl.Name.String()), subEl.Annotation)\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\tif len(defVal) > 0 {\r\n\t\t\t\t\tdoc = sfmt(\"Returns the %v value for %v -- \"+ustr.Ifs(isPt, \"%v\", \"%#v\"), strings.ToLower(defName), safeName, defVal)\r\n\t\t\t\t\tif isPt {\r\n\t\t\t\t\t\tif PkgGen.ForceParseForDefaults {\r\n\t\t\t\t\t\t\ttd.addMethod(nil, tmp, safeName+defName, valueType, sfmt(\"var x = new(%v); x.Set(%#v); return *x\", valueType, defVal), doc)\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\ttd.addMethod(nil, tmp, safeName+defName, valueType, sfmt(\"return %v(%v)\", valueType, defVal), doc)\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\ttd.addMethod(nil, tmp, safeName+defName, valueType, sfmt(\"return %v(%#v)\", valueType, defVal), doc)\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *ExtensionComplexContent) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsAttribute.makePkg(bag)\r\n\tme.hasElemsAnyAttribute.makePkg(bag)\r\n\tme.hasElemsAttributeGroup.makePkg(bag)\r\n\tme.hasElemAll.makePkg(bag)\r\n\tme.hasElemsChoice.makePkg(bag)\r\n\tme.hasElemsGroup.makePkg(bag)\r\n\tme.hasElemsSequence.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *ExtensionSimpleContent) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsAttribute.makePkg(bag)\r\n\tme.hasElemsAnyAttribute.makePkg(bag)\r\n\tme.hasElemsAttributeGroup.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Field) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Group) makePkg(bag *PkgBag) {\r\n\tvar refName, refImp string\r\n\tvar choices = []*Choice{me.Choice}\r\n\tvar seqs = []*Sequence{me.Sequence}\r\n\tvar el *Element\r\n\tvar gr *Group\r\n\tvar elsDone, grsDone = map[string]bool{}, map[string]bool{}\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemAll.makePkg(bag)\r\n\tme.hasElemChoice.makePkg(bag)\r\n\tme.hasElemSequence.makePkg(bag)\r\n\tif len(me.Ref) > 0 {\r\n\t\tif len(bag.elemGroups[me]) == 0 {\r\n\t\t\trefName = bag.resolveQnameRef(me.Ref.String(), \"\", &refImp)\r\n\t\t\tbag.elemGroups[me] = idPrefix + \"HasGroup_\" + refName\r\n\t\t\tbag.elemGroupRefImps[me] = refImp\r\n\t\t}\r\n\t} else {\r\n\t\tme.Ref.Set(me.Name.String())\r\n\t\tsafeName := bag.safeName(me.Name.String())\r\n\t\ttmp := idPrefix + \"HasGroup_\" + safeName\r\n\t\tbag.elemGroups[me] = tmp\r\n\t\tvar td = bag.addType(me, tmp, \"\", me.Annotation)\r\n\t\tchoices, seqs = Flattened(choices, seqs)\r\n\t\tif me.All != nil {\r\n\t\t\tfor _, el = range me.All.Elements {\r\n\t\t\t\tsubMakeElem(bag, td, el, elsDone, 1, me.All.Annotation)\r\n\t\t\t}\r\n\t\t}\r\n\t\tfor _, ch := range choices {\r\n\t\t\tfor _, el = range ch.Elements {\r\n\t\t\t\tsubMakeElem(bag, td, el, elsDone, ch.hasAttrMaxOccurs.Value(), ch.Annotation)\r\n\t\t\t}\r\n\t\t\tfor _, gr = range ch.Groups {\r\n\t\t\t\tsubMakeElemGroup(bag, td, gr, grsDone, ch.Annotation)\r\n\t\t\t}\r\n\t\t}\r\n\t\tfor _, seq := range seqs {\r\n\t\t\tfor _, el = range seq.Elements {\r\n\t\t\t\tsubMakeElem(bag, td, el, elsDone, seq.hasAttrMaxOccurs.Value(), seq.Annotation)\r\n\t\t\t}\r\n\t\t\tfor _, gr = range seq.Groups {\r\n\t\t\t\tsubMakeElemGroup(bag, td, gr, grsDone, seq.Annotation)\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Import) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tvar impName, impPath string\r\n\tvar pos int\r\n\tme.hasElemAnnotation.makePkg(bag)\r\n\tfor k, v := range bag.Schema.XMLNamespaces {\r\n\t\tif v == me.Namespace {\r\n\t\t\timpName = safeIdentifier(k)\r\n\t\t\tbreak\r\n\t\t}\r\n\t}\r\n\tif len(impName) > 0 {\r\n\t\tif pos, impPath = strings.Index(me.SchemaLocation.String(), protSep), me.SchemaLocation.String(); pos > 0 {\r\n\t\t\timpPath = impPath[pos+len(protSep):]\r\n\t\t} else {\r\n\t\t\timpPath = path.Join(path.Dir(bag.Schema.loadUri), impPath)\r\n\t\t}\r\n\t\timpPath = path.Join(path.Dir(impPath), goPkgPrefix+path.Base(impPath)+goPkgSuffix)\r\n\t\tbag.imports[impName] = path.Join(PkgGen.BasePath, impPath)\r\n\t}\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Key) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemField.makePkg(bag)\r\n\tme.hasElemSelector.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *KeyRef) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemField.makePkg(bag)\r\n\tme.hasElemSelector.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *List) makePkg(bag *PkgBag) {\r\n\tvar safeName string\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsSimpleType.makePkg(bag)\r\n\trtr := bag.resolveQnameRef(me.ItemType.String(), \"T\", nil)\r\n\tif len(rtr) == 0 {\r\n\t\trtr = me.SimpleTypes[0].Name.String()\r\n\t}\r\n\tst := bag.Stacks.CurSimpleType()\r\n\tsafeName = bag.safeName(ustr.PrependIf(st.Name.String(), \"T\"))\r\n\tbody, doc := \"\", sfmt(\"%v declares a String containing a whitespace-separated list of %v values. This Values() method creates and returns a slice of all elements in that list\", safeName, rtr)\r\n\tbody = sfmt(\"svals := %v.ListValues(string(me)); list = make([]%v, len(svals)); for i, s := range svals { list[i].Set(s) }; return\", bag.impName, rtr)\r\n\tbag.ctd.addMethod(me, safeName, \"Values\", sfmt(\"(list []%v)\", rtr), body, doc+\".\", me.Annotation)\r\n\tfor baseType := bag.simpleBaseTypes[rtr]; len(baseType) > 0; baseType = bag.simpleBaseTypes[baseType] {\r\n\t\tbody = sfmt(\"svals := %v.ListValues(string(me)); list = make([]%v, len(svals)); for i, s := range svals { list[i].Set(s) }; return\", bag.impName, baseType)\r\n\t\tbag.ctd.addMethod(me, safeName, \"Values\"+bag.safeName(baseType), sfmt(\"(list []%v)\", baseType), body, sfmt(\"%s, typed as %s.\", doc, baseType), me.Annotation)\r\n\t}\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Notation) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemAnnotation.makePkg(bag)\r\n\tbag.appendFmt(false, \"%vNotations.Add(%#v, %#v, %#v, %#v)\", idPrefix, me.Id, me.Name, me.Public, me.System)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Redefine) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsSimpleType.makePkg(bag)\r\n\tme.hasElemsAttributeGroup.makePkg(bag)\r\n\tme.hasElemsGroup.makePkg(bag)\r\n\tme.hasElemsComplexType.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionComplexContent) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsAttribute.makePkg(bag)\r\n\tme.hasElemsAnyAttribute.makePkg(bag)\r\n\tme.hasElemsAttributeGroup.makePkg(bag)\r\n\tme.hasElemAll.makePkg(bag)\r\n\tme.hasElemsChoice.makePkg(bag)\r\n\tme.hasElemsSequence.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleContent) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsSimpleType.makePkg(bag)\r\n\tme.hasElemsAttribute.makePkg(bag)\r\n\tme.hasElemsAnyAttribute.makePkg(bag)\r\n\tme.hasElemsAttributeGroup.makePkg(bag)\r\n\tme.hasElemLength.makePkg(bag)\r\n\tme.hasElemPattern.makePkg(bag)\r\n\tme.hasElemsEnumeration.makePkg(bag)\r\n\tme.hasElemFractionDigits.makePkg(bag)\r\n\tme.hasElemMaxExclusive.makePkg(bag)\r\n\tme.hasElemMaxInclusive.makePkg(bag)\r\n\tme.hasElemMaxLength.makePkg(bag)\r\n\tme.hasElemMinExclusive.makePkg(bag)\r\n\tme.hasElemMinInclusive.makePkg(bag)\r\n\tme.hasElemMinLength.makePkg(bag)\r\n\tme.hasElemTotalDigits.makePkg(bag)\r\n\tme.hasElemWhiteSpace.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleEnumeration) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tsafeName := bag.safeName(ustr.PrependIf(bag.Stacks.CurSimpleType().Name.String(), \"T\"))\r\n\tvar doc = sfmt(\"Returns true if the value of this enumerated %v is %#v.\", safeName, me.Value)\r\n\tbag.ctd.addMethod(me, safeName, \"Is\"+bag.safeName(me.Value), \"bool\", sfmt(\"return me.String() == %#v\", me.Value), doc)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleFractionDigits) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleLength) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMaxExclusive) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMaxInclusive) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMaxLength) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMinExclusive) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMinInclusive) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMinLength) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimplePattern) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleTotalDigits) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleType) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsSimpleType.makePkg(bag)\r\n\tme.hasElemLength.makePkg(bag)\r\n\tme.hasElemPattern.makePkg(bag)\r\n\tme.hasElemsEnumeration.makePkg(bag)\r\n\tme.hasElemFractionDigits.makePkg(bag)\r\n\tme.hasElemMaxExclusive.makePkg(bag)\r\n\tme.hasElemMaxInclusive.makePkg(bag)\r\n\tme.hasElemMaxLength.makePkg(bag)\r\n\tme.hasElemMinExclusive.makePkg(bag)\r\n\tme.hasElemMinInclusive.makePkg(bag)\r\n\tme.hasElemMinLength.makePkg(bag)\r\n\tme.hasElemTotalDigits.makePkg(bag)\r\n\tme.hasElemWhiteSpace.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *RestrictionSimpleWhiteSpace) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Schema) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsImport.makePkg(bag)\r\n\tme.hasElemsSimpleType.makePkg(bag)\r\n\tme.hasElemsAttribute.makePkg(bag)\r\n\tme.hasElemsAttributeGroup.makePkg(bag)\r\n\tme.hasElemsComplexType.makePkg(bag)\r\n\tme.hasElemsElement.makePkg(bag)\r\n\tme.hasElemsGroup.makePkg(bag)\r\n\tme.hasElemsRedefine.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Selector) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemAnnotation.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Sequence) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsAny.makePkg(bag)\r\n\tme.hasElemsChoice.makePkg(bag)\r\n\tme.hasElemsGroup.makePkg(bag)\r\n\tme.hasElemsSequence.makePkg(bag)\r\n\tme.hasElemsElement.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *SimpleContent) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemExtensionSimpleContent.makePkg(bag)\r\n\tme.hasElemRestrictionSimpleContent.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *SimpleType) makePkg(bag *PkgBag) {\r\n\tvar typeName = me.Name\r\n\tvar baseType, safeName = \"\", \"\"\r\n\tvar resolve = true\r\n\tvar isPt bool\r\n\tif len(typeName) == 0 {\r\n\t\ttypeName = bag.AnonName(me.longSafeName(bag))\r\n\t\tme.Name = typeName\r\n\t} else {\r\n\t\tme.Name = typeName\r\n\t}\r\n\ttypeName = xsdt.NCName(ustr.PrependIf(typeName.String(), \"T\"))\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tbag.Stacks.SimpleType.Push(me)\r\n\tsafeName = bag.safeName(typeName.String())\r\n\tif me.RestrictionSimpleType != nil {\r\n\t\tif baseType = me.RestrictionSimpleType.Base.String(); (len(baseType) == 0) && (len(me.RestrictionSimpleType.SimpleTypes) > 0) {\r\n\t\t\tresolve, baseType = false, me.RestrictionSimpleType.SimpleTypes[0].Name.String()\r\n\t\t}\r\n\t}\r\n\tif len(baseType) == 0 {\r\n\t\tbaseType = bag.xsdStringTypeRef()\r\n\t}\r\n\tif resolve {\r\n\t\tbaseType = bag.resolveQnameRef(baseType, \"T\", nil)\r\n\t}\r\n\tbag.simpleBaseTypes[safeName] = baseType\r\n\tif isPt = bag.isParseType(baseType); isPt {\r\n\t\tbag.parseTypes[safeName] = true\r\n\t}\r\n\tvar td = bag.addType(me, safeName, baseType, me.Annotation)\r\n\tvar doc string\r\n\tif isPt {\r\n\t\tdoc = sfmt(\"Since %v is a non-string scalar type (either boolean or numeric), sets the current value obtained from parsing the specified string.\", safeName)\r\n\t} else {\r\n\t\tdoc = sfmt(\"Since %v is just a simple String type, this merely sets the current value from the specified string.\", safeName)\r\n\t}\r\n\ttd.addMethod(nil, \"*\"+safeName, \"Set (s string)\", \"\", sfmt(\"(*%v)(me).Set(s)\", baseType), doc)\r\n\tif isPt {\r\n\t\tdoc = sfmt(\"Returns a string representation of this %v's current non-string scalar value.\", safeName)\r\n\t} else {\r\n\t\tdoc = sfmt(\"Since %v is just a simple String type, this merely returns the current string value.\", safeName)\r\n\t}\r\n\ttd.addMethod(nil, safeName, \"String\", \"string\", sfmt(\"return %v(me).String()\", baseType), doc)\r\n\tdoc = sfmt(\"This convenience method just performs a simple type conversion to %v's alias type %v.\", safeName, baseType)\r\n\ttd.addMethod(nil, safeName, \"To\"+bag.safeName(baseType), baseType, sfmt(\"return %v(me)\", baseType), doc)\r\n\tme.hasElemRestrictionSimpleType.makePkg(bag)\r\n\tme.hasElemList.makePkg(bag)\r\n\tme.hasElemUnion.makePkg(bag)\r\n\tbag.Stacks.SimpleType.Pop()\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Union) makePkg(bag *PkgBag) {\r\n\tvar memberTypes []string\r\n\tvar rtn, rtnSafeName, safeName string\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemsSimpleType.makePkg(bag)\r\n\tmemberTypes = ustr.Split(me.MemberTypes, \" \")\r\n\tfor _, st := range me.SimpleTypes {\r\n\t\tmemberTypes = append(memberTypes, st.Name.String())\r\n\t}\r\n\tfor _, mt := range memberTypes {\r\n\t\trtn = bag.resolveQnameRef(mt, \"T\", nil)\r\n\t\tsafeName, rtnSafeName = bag.safeName(ustr.PrependIf(bag.Stacks.CurSimpleType().Name.String(), \"T\")), bag.safeName(rtn)\r\n\t\tbag.ctd.addMethod(me, safeName, \"To\"+rtnSafeName, rtn, sfmt(ustr.Ifs(bag.isParseType(rtn), \"var x = new(%v); x.Set(me.String()); return *x\", \"return %v(me)\"), rtn), sfmt(\"%v is an XSD union-type of several types. This is a simple type conversion to %v, but keep in mind the actual value may or may not be a valid %v value.\", safeName, rtnSafeName, rtnSafeName), me.Annotation)\r\n\t}\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc (me *Unique) makePkg(bag *PkgBag) {\r\n\tme.elemBase.beforeMakePkg(bag)\r\n\tme.hasElemField.makePkg(bag)\r\n\tme.hasElemSelector.makePkg(bag)\r\n\tme.elemBase.afterMakePkg(bag)\r\n}\r\n\r\nfunc anns(a *All, cc *ComplexContent) (anns []*Annotation) {\r\n\tif (a != nil) && (a.Annotation != nil) {\r\n\t\tanns = append(anns, a.Annotation)\r\n\t}\r\n\tif cc != nil {\r\n\t\tif cc.Annotation != nil {\r\n\t\t\tanns = append(anns, cc.Annotation)\r\n\t\t}\r\n\t\tif ecc := cc.ExtensionComplexContent; (ecc != nil) && (ecc.Annotation != nil) {\r\n\t\t\tanns = append(anns, ecc.Annotation)\r\n\t\t}\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc pluralize(s string) string {\r\n\tfor _, psp := range PkgGen.PluralizeSpecialPrefixes {\r\n\t\tif strings.HasPrefix(s, psp) {\r\n\t\t\treturn ustr.Pluralize(s[len(psp):] + s[:len(psp)])\r\n\t\t}\r\n\t}\r\n\treturn ustr.Pluralize(s)\r\n}\r\n\r\nfunc sfmt(s string, a ...interface{}) string {\r\n\treturn fmt.Sprintf(s, a...)\r\n}\r\n\r\n// For any rune, return a rune that is a valid in an identifier\r\nfunc coerceToIdentifierRune(ch rune) rune {\r\n\tif !unicode.IsLetter(ch) && !unicode.IsNumber(ch) {\r\n\t\treturn '_'\r\n\t}\r\n\treturn ch\r\n}\r\n\r\n// Take any string and convert it to a valid identifier\r\n// Appends an underscore if the first rune is a number\r\nfunc safeIdentifier(s string) string {\r\n\ts = strings.Map(coerceToIdentifierRune, s)\r\n\tif unicode.IsNumber([]rune(s)[0]) {\r\n\t\ts = fmt.Sprint(\"_\", s)\r\n\t}\r\n\treturn s\r\n}\r\n\r\nfunc subMakeElem(bag *PkgBag, td *declType, el *Element, done map[string]bool, parentMaxOccurs xsdt.Long, anns ...*Annotation) {\r\n\tvar elCache map[string]string\r\n\tanns = append(anns, el.Annotation)\r\n\tif refName := bag.elemKeys[el]; (len(refName) > 0) && (!done[refName]) {\r\n\t\tif done[refName], elCache = true, ustr.Ifm((parentMaxOccurs == 1) && (el.hasAttrMaxOccurs.Value() == 1), bag.elemsCacheOnce, bag.elemsCacheMult); !strings.HasPrefix(elCache[refName], bag.impName+\".\"+idPrefix) {\r\n\t\t\ttd.addEmbed(el, elCache[refName], anns...)\r\n\t\t}\r\n\t}\r\n}\r\n\r\nfunc subMakeElemGroup(bag *PkgBag, td *declType, gr *Group, done map[string]bool, anns ...*Annotation) {\r\n\tvar refImp string\r\n\tanns = append(anns, gr.Annotation)\r\n\tif refName := bag.resolveQnameRef(gr.Ref.String(), \"\", &refImp); !done[refName] {\r\n\t\tif done[refName] = true; len(refImp) > 0 {\r\n\t\t\tif !strings.HasPrefix(refName, bag.impName+\".\"+idPrefix) {\r\n\t\t\t\ttd.addEmbed(gr, refImp+\".\"+idPrefix+\"HasGroup_\"+refName[(len(refImp)+1):], anns...)\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\ttd.addEmbed(gr, idPrefix+\"HasGroup_\"+refName, anns...)\r\n\t\t}\r\n\t}\r\n}\r\n"
  },
  {
    "path": "elemparents.go",
    "content": "package xsd\r\n\r\nfunc (me *All) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"all\", &me.hasAttrId, &me.hasAttrMaxOccurs, &me.hasAttrMinOccurs)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemsElement.initChildren(me)\r\n}\r\n\r\nfunc (me *Annotation) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"annotation\")\r\n\tme.hasElemsAppInfo.initChildren(me)\r\n\tme.hasElemsDocumentation.initChildren(me)\r\n}\r\n\r\nfunc (me *Any) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"any\", &me.hasAttrId, &me.hasAttrNamespace, &me.hasAttrMaxOccurs, &me.hasAttrMinOccurs, &me.hasAttrProcessContents)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n}\r\n\r\nfunc (me *AnyAttribute) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"anyAttribute\", &me.hasAttrId, &me.hasAttrNamespace, &me.hasAttrProcessContents)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n}\r\n\r\nfunc (me *AppInfo) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"appInfo\", &me.hasAttrSource)\r\n}\r\n\r\nfunc (me *Attribute) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"attribute\", &me.hasAttrDefault, &me.hasAttrFixed, &me.hasAttrForm, &me.hasAttrId, &me.hasAttrName, &me.hasAttrRef, &me.hasAttrType, &me.hasAttrUse)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemsSimpleType.initChildren(me)\r\n}\r\n\r\nfunc (me *AttributeGroup) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"attributeGroup\", &me.hasAttrId, &me.hasAttrName, &me.hasAttrRef)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemsAttribute.initChildren(me)\r\n\tme.hasElemsAnyAttribute.initChildren(me)\r\n\tme.hasElemsAttributeGroup.initChildren(me)\r\n}\r\n\r\nfunc (me *Choice) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"choice\", &me.hasAttrId, &me.hasAttrMaxOccurs, &me.hasAttrMinOccurs)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemsAny.initChildren(me)\r\n\tme.hasElemsChoice.initChildren(me)\r\n\tme.hasElemsElement.initChildren(me)\r\n\tme.hasElemsGroup.initChildren(me)\r\n\tme.hasElemsSequence.initChildren(me)\r\n}\r\n\r\nfunc (me *ComplexContent) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"complexContent\", &me.hasAttrId, &me.hasAttrMixed)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemExtensionComplexContent.initChildren(me)\r\n\tme.hasElemRestrictionComplexContent.initChildren(me)\r\n}\r\n\r\nfunc (me *ComplexType) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"complexType\", &me.hasAttrAbstract, &me.hasAttrBlock, &me.hasAttrFinal, &me.hasAttrId, &me.hasAttrMixed, &me.hasAttrName)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemAll.initChildren(me)\r\n\tme.hasElemChoice.initChildren(me)\r\n\tme.hasElemsAttribute.initChildren(me)\r\n\tme.hasElemGroup.initChildren(me)\r\n\tme.hasElemSequence.initChildren(me)\r\n\tme.hasElemComplexContent.initChildren(me)\r\n\tme.hasElemSimpleContent.initChildren(me)\r\n\tme.hasElemsAnyAttribute.initChildren(me)\r\n\tme.hasElemsAttributeGroup.initChildren(me)\r\n}\r\n\r\nfunc (me *Documentation) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"documentation\", &me.hasAttrLang, &me.hasAttrSource)\r\n}\r\n\r\nfunc (me *Element) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"element\", &me.hasAttrAbstract, &me.hasAttrBlock, &me.hasAttrDefault, &me.hasAttrFinal, &me.hasAttrFixed, &me.hasAttrForm, &me.hasAttrId, &me.hasAttrName, &me.hasAttrNillable, &me.hasAttrRef, &me.hasAttrType, &me.hasAttrMaxOccurs, &me.hasAttrMinOccurs, &me.hasAttrSubstitutionGroup)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemUnique.initChildren(me)\r\n\tme.hasElemsKey.initChildren(me)\r\n\tme.hasElemComplexType.initChildren(me)\r\n\tme.hasElemKeyRef.initChildren(me)\r\n\tme.hasElemsSimpleType.initChildren(me)\r\n}\r\n\r\nfunc (me *ExtensionComplexContent) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"extension\", &me.hasAttrBase, &me.hasAttrId)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemAll.initChildren(me)\r\n\tme.hasElemsAttribute.initChildren(me)\r\n\tme.hasElemsChoice.initChildren(me)\r\n\tme.hasElemsGroup.initChildren(me)\r\n\tme.hasElemsSequence.initChildren(me)\r\n\tme.hasElemsAnyAttribute.initChildren(me)\r\n\tme.hasElemsAttributeGroup.initChildren(me)\r\n}\r\n\r\nfunc (me *ExtensionSimpleContent) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"extension\", &me.hasAttrBase, &me.hasAttrId)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemsAttribute.initChildren(me)\r\n\tme.hasElemsAnyAttribute.initChildren(me)\r\n\tme.hasElemsAttributeGroup.initChildren(me)\r\n}\r\n\r\nfunc (me *Field) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"field\", &me.hasAttrId, &me.hasAttrXpath)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n}\r\n\r\nfunc (me *Group) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"group\", &me.hasAttrId, &me.hasAttrName, &me.hasAttrRef, &me.hasAttrMaxOccurs, &me.hasAttrMinOccurs)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemAll.initChildren(me)\r\n\tme.hasElemChoice.initChildren(me)\r\n\tme.hasElemSequence.initChildren(me)\r\n}\r\n\r\nfunc (me *Import) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"import\", &me.hasAttrId, &me.hasAttrNamespace, &me.hasAttrSchemaLocation)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n}\r\n\r\nfunc (me *Key) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"key\", &me.hasAttrId, &me.hasAttrName)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemField.initChildren(me)\r\n\tme.hasElemSelector.initChildren(me)\r\n}\r\n\r\nfunc (me *KeyRef) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"keyref\", &me.hasAttrId, &me.hasAttrName, &me.hasAttrRefer)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemField.initChildren(me)\r\n\tme.hasElemSelector.initChildren(me)\r\n}\r\n\r\nfunc (me *List) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"list\", &me.hasAttrId, &me.hasAttrItemType)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemsSimpleType.initChildren(me)\r\n}\r\n\r\nfunc (me *Notation) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"notation\", &me.hasAttrId, &me.hasAttrName, &me.hasAttrPublic, &me.hasAttrSystem)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n}\r\n\r\nfunc (me *Redefine) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"redefine\", &me.hasAttrId, &me.hasAttrSchemaLocation)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemsGroup.initChildren(me)\r\n\tme.hasElemsAttributeGroup.initChildren(me)\r\n\tme.hasElemsComplexType.initChildren(me)\r\n\tme.hasElemsSimpleType.initChildren(me)\r\n}\r\n\r\nfunc (me *RestrictionComplexContent) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"restriction\", &me.hasAttrBase, &me.hasAttrId)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemAll.initChildren(me)\r\n\tme.hasElemsAttribute.initChildren(me)\r\n\tme.hasElemsChoice.initChildren(me)\r\n\tme.hasElemsSequence.initChildren(me)\r\n\tme.hasElemsAnyAttribute.initChildren(me)\r\n\tme.hasElemsAttributeGroup.initChildren(me)\r\n}\r\n\r\nfunc (me *RestrictionSimpleContent) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"restriction\", &me.hasAttrBase, &me.hasAttrId)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemLength.initChildren(me)\r\n\tme.hasElemPattern.initChildren(me)\r\n\tme.hasElemsAttribute.initChildren(me)\r\n\tme.hasElemsEnumeration.initChildren(me)\r\n\tme.hasElemFractionDigits.initChildren(me)\r\n\tme.hasElemMaxExclusive.initChildren(me)\r\n\tme.hasElemMaxInclusive.initChildren(me)\r\n\tme.hasElemMaxLength.initChildren(me)\r\n\tme.hasElemMinExclusive.initChildren(me)\r\n\tme.hasElemMinInclusive.initChildren(me)\r\n\tme.hasElemMinLength.initChildren(me)\r\n\tme.hasElemTotalDigits.initChildren(me)\r\n\tme.hasElemWhiteSpace.initChildren(me)\r\n\tme.hasElemsAnyAttribute.initChildren(me)\r\n\tme.hasElemsAttributeGroup.initChildren(me)\r\n\tme.hasElemsSimpleType.initChildren(me)\r\n}\r\n\r\nfunc (me *RestrictionSimpleEnumeration) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"enumeration\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *RestrictionSimpleFractionDigits) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"fractionDigits\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *RestrictionSimpleLength) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"length\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMaxExclusive) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"maxExclusive\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMaxInclusive) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"maxInclusive\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMaxLength) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"maxLength\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMinExclusive) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"minExclusive\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMinInclusive) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"minInclusive\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *RestrictionSimpleMinLength) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"minLength\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *RestrictionSimplePattern) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"pattern\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *RestrictionSimpleTotalDigits) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"totalDigits\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *RestrictionSimpleType) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"restriction\", &me.hasAttrBase, &me.hasAttrId)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemLength.initChildren(me)\r\n\tme.hasElemPattern.initChildren(me)\r\n\tme.hasElemsEnumeration.initChildren(me)\r\n\tme.hasElemFractionDigits.initChildren(me)\r\n\tme.hasElemMaxExclusive.initChildren(me)\r\n\tme.hasElemMaxInclusive.initChildren(me)\r\n\tme.hasElemMaxLength.initChildren(me)\r\n\tme.hasElemMinExclusive.initChildren(me)\r\n\tme.hasElemMinInclusive.initChildren(me)\r\n\tme.hasElemMinLength.initChildren(me)\r\n\tme.hasElemTotalDigits.initChildren(me)\r\n\tme.hasElemWhiteSpace.initChildren(me)\r\n\tme.hasElemsSimpleType.initChildren(me)\r\n}\r\n\r\nfunc (me *RestrictionSimpleWhiteSpace) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"whiteSpace\", &me.hasAttrValue)\r\n}\r\n\r\nfunc (me *Schema) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"schema\", &me.hasAttrId, &me.hasAttrLang, &me.hasAttrVersion, &me.hasAttrBlockDefault, &me.hasAttrFinalDefault, &me.hasAttrSchemaLocation, &me.hasAttrTargetNamespace, &me.hasAttrAttributeFormDefault, &me.hasAttrElementFormDefault)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemsAttribute.initChildren(me)\r\n\tme.hasElemsElement.initChildren(me)\r\n\tme.hasElemsGroup.initChildren(me)\r\n\tme.hasElemsImport.initChildren(me)\r\n\tme.hasElemsNotation.initChildren(me)\r\n\tme.hasElemsRedefine.initChildren(me)\r\n\tme.hasElemsAttributeGroup.initChildren(me)\r\n\tme.hasElemsComplexType.initChildren(me)\r\n\tme.hasElemsSimpleType.initChildren(me)\r\n}\r\n\r\nfunc (me *Selector) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"selector\", &me.hasAttrId, &me.hasAttrXpath)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n}\r\n\r\nfunc (me *Sequence) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"sequence\", &me.hasAttrId, &me.hasAttrMaxOccurs, &me.hasAttrMinOccurs)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemsAny.initChildren(me)\r\n\tme.hasElemsChoice.initChildren(me)\r\n\tme.hasElemsElement.initChildren(me)\r\n\tme.hasElemsGroup.initChildren(me)\r\n\tme.hasElemsSequence.initChildren(me)\r\n}\r\n\r\nfunc (me *SimpleContent) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"simpleContent\", &me.hasAttrId)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemExtensionSimpleContent.initChildren(me)\r\n\tme.hasElemRestrictionSimpleContent.initChildren(me)\r\n}\r\n\r\nfunc (me *SimpleType) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"simpleType\", &me.hasAttrFinal, &me.hasAttrId, &me.hasAttrName)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemRestrictionSimpleType.initChildren(me)\r\n\tme.hasElemList.initChildren(me)\r\n\tme.hasElemUnion.initChildren(me)\r\n}\r\n\r\nfunc (me *Union) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"union\", &me.hasAttrId, &me.hasAttrMemberTypes)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemsSimpleType.initChildren(me)\r\n}\r\n\r\nfunc (me *Unique) initElement(parent element) {\r\n\tme.elemBase.init(parent, me, \"unique\", &me.hasAttrId, &me.hasAttrName)\r\n\tme.hasElemAnnotation.initChildren(me)\r\n\tme.hasElemField.initChildren(me)\r\n\tme.hasElemSelector.initChildren(me)\r\n}\r\n"
  },
  {
    "path": "hasattr.go",
    "content": "package xsd\r\n\r\nimport (\r\n\txsdt \"github.com/metaleap/go-xsd/types\"\r\n)\r\n\r\ntype hasAttrAbstract struct {\r\n\tAbstract bool `xml:\"abstract,attr\"`\r\n}\r\n\r\ntype hasAttrAttributeFormDefault struct {\r\n\tAttributeFormDefault string `xml:\"attributeFormDefault,attr\"`\r\n}\r\n\r\ntype hasAttrBase struct {\r\n\tBase xsdt.Qname `xml:\"base,attr\"`\r\n}\r\n\r\ntype hasAttrBlock struct {\r\n\tBlock string `xml:\"block,attr\"`\r\n}\r\n\r\ntype hasAttrBlockDefault struct {\r\n\tBlockDefault string `xml:\"blockDefault,attr\"`\r\n}\r\n\r\ntype hasAttrDefault struct {\r\n\tDefault string `xml:\"default,attr\"`\r\n}\r\n\r\ntype hasAttrFinal struct {\r\n\tFinal string `xml:\"final,attr\"`\r\n}\r\n\r\ntype hasAttrFinalDefault struct {\r\n\tFinalDefault string `xml:\"finalDefault,attr\"`\r\n}\r\n\r\ntype hasAttrFixed struct {\r\n\tFixed string `xml:\"fixed,attr\"`\r\n}\r\n\r\ntype hasAttrForm struct {\r\n\tForm string `xml:\"form,attr\"`\r\n}\r\n\r\ntype hasAttrElementFormDefault struct {\r\n\tElementFormDefault string `xml:\"elementFormDefault,attr\"`\r\n}\r\n\r\ntype hasAttrId struct {\r\n\tId xsdt.Id `xml:\"id,attr\"`\r\n}\r\n\r\ntype hasAttrItemType struct {\r\n\tItemType xsdt.Qname `xml:\"itemType,attr\"`\r\n}\r\n\r\ntype hasAttrLang struct {\r\n\tLang xsdt.Language `xml:\"lang,attr\"`\r\n}\r\n\r\ntype hasAttrMaxOccurs struct {\r\n\tMaxOccurs string `xml:\"maxOccurs,attr\"`\r\n}\r\n\r\nfunc (me *hasAttrMaxOccurs) Value() (l xsdt.Long) {\r\n\tif len(me.MaxOccurs) == 0 {\r\n\t\tl = 1\r\n\t} else if me.MaxOccurs == \"unbounded\" {\r\n\t\tl = -1\r\n\t} else {\r\n\t\tl.Set(me.MaxOccurs)\r\n\t}\r\n\treturn\r\n}\r\n\r\ntype hasAttrMemberTypes struct {\r\n\tMemberTypes string `xml:\"memberTypes,attr\"`\r\n}\r\n\r\ntype hasAttrMinOccurs struct {\r\n\tMinOccurs uint64 `xml:\"minOccurs,attr\"`\r\n}\r\n\r\ntype hasAttrMixed struct {\r\n\tMixed bool `xml:\"mixed,attr\"`\r\n}\r\n\r\ntype hasAttrName struct {\r\n\tName xsdt.NCName `xml:\"name,attr\"`\r\n}\r\n\r\ntype hasAttrNamespace struct {\r\n\tNamespace string `xml:\"namespace,attr\"`\r\n}\r\n\r\ntype hasAttrNillable struct {\r\n\tNillable bool `xml:\"nillable,attr\"`\r\n}\r\n\r\ntype hasAttrProcessContents struct {\r\n\tProcessContents string `xml:\"processContents,attr\"`\r\n}\r\n\r\ntype hasAttrPublic struct {\r\n\tPublic string `xml:\"public,attr\"`\r\n}\r\n\r\ntype hasAttrRef struct {\r\n\tRef xsdt.Qname `xml:\"ref,attr\"`\r\n}\r\n\r\ntype hasAttrRefer struct {\r\n\tRefer xsdt.Qname `xml:\"refer,attr\"`\r\n}\r\n\r\ntype hasAttrSchemaLocation struct {\r\n\tSchemaLocation xsdt.AnyURI `xml:\"schemaLocation,attr\"`\r\n}\r\n\r\ntype hasAttrSource struct {\r\n\tSource xsdt.AnyURI `xml:\"source,attr\"`\r\n}\r\n\r\ntype hasAttrSubstitutionGroup struct {\r\n\tSubstitutionGroup xsdt.Qname `xml:\"substitutionGroup,attr\"`\r\n}\r\n\r\ntype hasAttrSystem struct {\r\n\tSystem xsdt.AnyURI `xml:\"system,attr\"`\r\n}\r\n\r\ntype hasAttrTargetNamespace struct {\r\n\tTargetNamespace xsdt.AnyURI `xml:\"targetNamespace,attr\"`\r\n}\r\n\r\ntype hasAttrType struct {\r\n\tType xsdt.Qname `xml:\"type,attr\"`\r\n}\r\n\r\ntype hasAttrUse struct {\r\n\tUse string `xml:\"use,attr\"`\r\n}\r\n\r\ntype hasAttrValue struct {\r\n\tValue string `xml:\"value,attr\"`\r\n}\r\n\r\ntype hasAttrVersion struct {\r\n\tVersion xsdt.Token `xml:\"version,attr\"`\r\n}\r\n\r\ntype hasAttrXpath struct {\r\n\tXpath string `xml:\"xpath,attr\"`\r\n}\r\n"
  },
  {
    "path": "haselem.go",
    "content": "package xsd\r\n\r\ntype hasCdata struct {\r\n\tCDATA string `xml:\",chardata\"`\r\n}\r\n\r\ntype hasElemAll struct {\r\n\tAll *All `xml:\"all\"`\r\n}\r\n\r\ntype hasElemAnnotation struct {\r\n\tAnnotation *Annotation `xml:\"annotation\"`\r\n}\r\n\r\ntype hasElemsAny struct {\r\n\tAnys []*Any `xml:\"any\"`\r\n}\r\n\r\ntype hasElemsAnyAttribute struct {\r\n\tAnyAttributes []*AnyAttribute `xml:\"anyAttribute\"`\r\n}\r\n\r\ntype hasElemsAppInfo struct {\r\n\tAppInfos []*AppInfo `xml:\"appinfo\"`\r\n}\r\n\r\ntype hasElemsAttribute struct {\r\n\tAttributes []*Attribute `xml:\"attribute\"`\r\n}\r\n\r\ntype hasElemsAttributeGroup struct {\r\n\tAttributeGroups []*AttributeGroup `xml:\"attributeGroup\"`\r\n}\r\n\r\ntype hasElemChoice struct {\r\n\tChoice *Choice `xml:\"choice\"`\r\n}\r\n\r\ntype hasElemsChoice struct {\r\n\tChoices []*Choice `xml:\"choice\"`\r\n}\r\n\r\ntype hasElemComplexContent struct {\r\n\tComplexContent *ComplexContent `xml:\"complexContent\"`\r\n}\r\n\r\ntype hasElemComplexType struct {\r\n\tComplexType *ComplexType `xml:\"complexType\"`\r\n}\r\n\r\ntype hasElemsComplexType struct {\r\n\tComplexTypes []*ComplexType `xml:\"complexType\"`\r\n}\r\n\r\ntype hasElemsDocumentation struct {\r\n\tDocumentations []*Documentation `xml:\"documentation\"`\r\n}\r\n\r\ntype hasElemsElement struct {\r\n\tElements []*Element `xml:\"element\"`\r\n}\r\n\r\ntype hasElemsEnumeration struct {\r\n\tEnumerations []*RestrictionSimpleEnumeration `xml:\"enumeration\"`\r\n}\r\n\r\ntype hasElemExtensionComplexContent struct {\r\n\tExtensionComplexContent *ExtensionComplexContent `xml:\"extension\"`\r\n}\r\n\r\ntype hasElemExtensionSimpleContent struct {\r\n\tExtensionSimpleContent *ExtensionSimpleContent `xml:\"extension\"`\r\n}\r\n\r\ntype hasElemField struct {\r\n\tField *Field `xml:\"field\"`\r\n}\r\n\r\ntype hasElemFractionDigits struct {\r\n\tFractionDigits *RestrictionSimpleFractionDigits `xml:\"fractionDigits\"`\r\n}\r\n\r\ntype hasElemGroup struct {\r\n\tGroup *Group `xml:\"group\"`\r\n}\r\n\r\ntype hasElemsGroup struct {\r\n\tGroups []*Group `xml:\"group\"`\r\n}\r\n\r\ntype hasElemsImport struct {\r\n\tImports []*Import `xml:\"import\"`\r\n}\r\n\r\ntype hasElemsInclude struct {\r\n\tIncludes []*Include `xml:\"include\"`\r\n}\r\n\r\ntype hasElemsKey struct {\r\n\tKeys []*Key `xml:\"key\"`\r\n}\r\n\r\ntype hasElemKeyRef struct {\r\n\tKeyRef *KeyRef `xml:\"keyref\"`\r\n}\r\n\r\ntype hasElemLength struct {\r\n\tLength *RestrictionSimpleLength `xml:\"length\"`\r\n}\r\n\r\ntype hasElemList struct {\r\n\tList *List `xml:\"list\"`\r\n}\r\n\r\ntype hasElemMaxExclusive struct {\r\n\tMaxExclusive *RestrictionSimpleMaxExclusive `xml:\"maxExclusive\"`\r\n}\r\n\r\ntype hasElemMaxInclusive struct {\r\n\tMaxInclusive *RestrictionSimpleMaxInclusive `xml:\"maxInclusive\"`\r\n}\r\n\r\ntype hasElemMaxLength struct {\r\n\tMaxLength *RestrictionSimpleMaxLength `xml:\"maxLength\"`\r\n}\r\n\r\ntype hasElemMinExclusive struct {\r\n\tMinExclusive *RestrictionSimpleMinExclusive `xml:\"minExclusive\"`\r\n}\r\n\r\ntype hasElemMinInclusive struct {\r\n\tMinInclusive *RestrictionSimpleMinInclusive `xml:\"minInclusive\"`\r\n}\r\n\r\ntype hasElemMinLength struct {\r\n\tMinLength *RestrictionSimpleMinLength `xml:\"minLength\"`\r\n}\r\n\r\ntype hasElemsNotation struct {\r\n\tNotations []*Notation `xml:\"notation\"`\r\n}\r\n\r\ntype hasElemPattern struct {\r\n\tPattern *RestrictionSimplePattern `xml:\"pattern\"`\r\n}\r\n\r\ntype hasElemsRedefine struct {\r\n\tRedefines []*Redefine `xml:\"redefine\"`\r\n}\r\n\r\ntype hasElemRestrictionComplexContent struct {\r\n\tRestrictionComplexContent *RestrictionComplexContent `xml:\"restriction\"`\r\n}\r\n\r\ntype hasElemRestrictionSimpleContent struct {\r\n\tRestrictionSimpleContent *RestrictionSimpleContent `xml:\"restriction\"`\r\n}\r\n\r\ntype hasElemRestrictionSimpleType struct {\r\n\tRestrictionSimpleType *RestrictionSimpleType `xml:\"restriction\"`\r\n}\r\n\r\ntype hasElemSelector struct {\r\n\tSelector *Selector `xml:\"selector\"`\r\n}\r\n\r\ntype hasElemSequence struct {\r\n\tSequence *Sequence `xml:\"sequence\"`\r\n}\r\n\r\ntype hasElemsSequence struct {\r\n\tSequences []*Sequence `xml:\"sequence\"`\r\n}\r\n\r\ntype hasElemSimpleContent struct {\r\n\tSimpleContent *SimpleContent `xml:\"simpleContent\"`\r\n}\r\n\r\ntype hasElemsSimpleType struct {\r\n\tSimpleTypes []*SimpleType `xml:\"simpleType\"`\r\n}\r\n\r\ntype hasElemTotalDigits struct {\r\n\tTotalDigits *RestrictionSimpleTotalDigits `xml:\"totalDigits\"`\r\n}\r\n\r\ntype hasElemUnion struct {\r\n\tUnion *Union `xml:\"union\"`\r\n}\r\n\r\ntype hasElemUnique struct {\r\n\tUnique *Unique `xml:\"unique\"`\r\n}\r\n\r\ntype hasElemWhiteSpace struct {\r\n\tWhiteSpace *RestrictionSimpleWhiteSpace `xml:\"whiteSpace\"`\r\n}\r\n"
  },
  {
    "path": "hasmakepkg.go",
    "content": "package xsd\r\n\r\nfunc (me *hasElemAll) makePkg(bag *PkgBag) {\r\n\tif me.All != nil {\r\n\t\tme.All.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemAnnotation) makePkg(bag *PkgBag) {\r\n\tif me.Annotation != nil {\r\n\t\tme.Annotation.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsAny) makePkg(bag *PkgBag) {\r\n\tfor _, any := range me.Anys {\r\n\t\tany.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsAnyAttribute) makePkg(bag *PkgBag) {\r\n\tfor _, aa := range me.AnyAttributes {\r\n\t\taa.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsAppInfo) makePkg(bag *PkgBag) {\r\n\tfor _, ai := range me.AppInfos {\r\n\t\tai.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsAttribute) makePkg(bag *PkgBag) {\r\n\tfor _, ea := range me.Attributes {\r\n\t\tea.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsAttributeGroup) makePkg(bag *PkgBag) {\r\n\tfor _, ag := range me.AttributeGroups {\r\n\t\tag.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemChoice) makePkg(bag *PkgBag) {\r\n\tif me.Choice != nil {\r\n\t\tme.Choice.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsChoice) makePkg(bag *PkgBag) {\r\n\tfor _, ch := range me.Choices {\r\n\t\tch.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemComplexContent) makePkg(bag *PkgBag) {\r\n\tif me.ComplexContent != nil {\r\n\t\tme.ComplexContent.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemComplexType) makePkg(bag *PkgBag) {\r\n\tif me.ComplexType != nil {\r\n\t\tme.ComplexType.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsComplexType) makePkg(bag *PkgBag) {\r\n\tfor _, ct := range me.ComplexTypes {\r\n\t\tct.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsDocumentation) makePkg(bag *PkgBag) {\r\n\tfor _, doc := range me.Documentations {\r\n\t\tdoc.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsElement) makePkg(bag *PkgBag) {\r\n\tfor _, el := range me.Elements {\r\n\t\tel.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsEnumeration) makePkg(bag *PkgBag) {\r\n\tfor _, enum := range me.Enumerations {\r\n\t\tenum.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemExtensionComplexContent) makePkg(bag *PkgBag) {\r\n\tif me.ExtensionComplexContent != nil {\r\n\t\tme.ExtensionComplexContent.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemExtensionSimpleContent) makePkg(bag *PkgBag) {\r\n\tif me.ExtensionSimpleContent != nil {\r\n\t\tme.ExtensionSimpleContent.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemField) makePkg(bag *PkgBag) {\r\n\tif me.Field != nil {\r\n\t\tme.Field.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemFractionDigits) makePkg(bag *PkgBag) {\r\n\tif me.FractionDigits != nil {\r\n\t\tme.FractionDigits.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemGroup) makePkg(bag *PkgBag) {\r\n\tif me.Group != nil {\r\n\t\tme.Group.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsGroup) makePkg(bag *PkgBag) {\r\n\tfor _, gr := range me.Groups {\r\n\t\tgr.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsImport) makePkg(bag *PkgBag) {\r\n\tfor _, imp := range me.Imports {\r\n\t\timp.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsKey) makePkg(bag *PkgBag) {\r\n\tfor _, k := range me.Keys {\r\n\t\tk.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemKeyRef) makePkg(bag *PkgBag) {\r\n\tif me.KeyRef != nil {\r\n\t\tme.KeyRef.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemLength) makePkg(bag *PkgBag) {\r\n\tif me.Length != nil {\r\n\t\tme.Length.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemList) makePkg(bag *PkgBag) {\r\n\tif me.List != nil {\r\n\t\tme.List.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMaxExclusive) makePkg(bag *PkgBag) {\r\n\tif me.MaxExclusive != nil {\r\n\t\tme.MaxExclusive.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMaxInclusive) makePkg(bag *PkgBag) {\r\n\tif me.MaxInclusive != nil {\r\n\t\tme.MaxInclusive.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMaxLength) makePkg(bag *PkgBag) {\r\n\tif me.MaxLength != nil {\r\n\t\tme.MaxLength.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMinExclusive) makePkg(bag *PkgBag) {\r\n\tif me.MinExclusive != nil {\r\n\t\tme.MinExclusive.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMinInclusive) makePkg(bag *PkgBag) {\r\n\tif me.MinInclusive != nil {\r\n\t\tme.MinInclusive.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMinLength) makePkg(bag *PkgBag) {\r\n\tif me.MinLength != nil {\r\n\t\tme.MinLength.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsNotation) makePkg(bag *PkgBag) {\r\n\tfor _, not := range me.Notations {\r\n\t\tnot.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemPattern) makePkg(bag *PkgBag) {\r\n\tif me.Pattern != nil {\r\n\t\tme.Pattern.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsRedefine) makePkg(bag *PkgBag) {\r\n\tfor _, rd := range me.Redefines {\r\n\t\trd.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemRestrictionComplexContent) makePkg(bag *PkgBag) {\r\n\tif me.RestrictionComplexContent != nil {\r\n\t\tme.RestrictionComplexContent.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemRestrictionSimpleContent) makePkg(bag *PkgBag) {\r\n\tif me.RestrictionSimpleContent != nil {\r\n\t\tme.RestrictionSimpleContent.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemRestrictionSimpleType) makePkg(bag *PkgBag) {\r\n\tif me.RestrictionSimpleType != nil {\r\n\t\tme.RestrictionSimpleType.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemSelector) makePkg(bag *PkgBag) {\r\n\tif me.Selector != nil {\r\n\t\tme.Selector.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemSequence) makePkg(bag *PkgBag) {\r\n\tif me.Sequence != nil {\r\n\t\tme.Sequence.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsSequence) makePkg(bag *PkgBag) {\r\n\tfor _, seq := range me.Sequences {\r\n\t\tseq.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemSimpleContent) makePkg(bag *PkgBag) {\r\n\tif me.SimpleContent != nil {\r\n\t\tme.SimpleContent.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsSimpleType) makePkg(bag *PkgBag) {\r\n\tfor _, st := range me.SimpleTypes {\r\n\t\tst.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemTotalDigits) makePkg(bag *PkgBag) {\r\n\tif me.TotalDigits != nil {\r\n\t\tme.TotalDigits.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemUnion) makePkg(bag *PkgBag) {\r\n\tif me.Union != nil {\r\n\t\tme.Union.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemUnique) makePkg(bag *PkgBag) {\r\n\tif me.Unique != nil {\r\n\t\tme.Unique.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemWhiteSpace) makePkg(bag *PkgBag) {\r\n\tif me.WhiteSpace != nil {\r\n\t\tme.WhiteSpace.makePkg(bag)\r\n\t}\r\n}\r\n\r\nfunc (me *hasAttrAbstract) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrBase) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrBlock) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrDefault) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrFinal) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrFixed) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrForm) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrId) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrLang) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrMixed) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrName) beforeMakePkg(bag *PkgBag) {\r\n\tbag.Stacks.Name.Push(me.Name)\r\n}\r\n\r\nfunc (me *hasAttrNamespace) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrNillable) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrPublic) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrRef) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrRefer) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrSource) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrSystem) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrType) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrUse) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrValue) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrVersion) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrXpath) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrBlockDefault) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrFinalDefault) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrItemType) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrMaxOccurs) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrMemberTypes) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrMinOccurs) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrProcessContents) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrSchemaLocation) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrSubstitutionGroup) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrTargetNamespace) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrAttributeFormDefault) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrElementFormDefault) beforeMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrAbstract) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrBase) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrBlock) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrDefault) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrFinal) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrFixed) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrForm) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrId) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrLang) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrMixed) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrName) afterMakePkg(bag *PkgBag) {\r\n\tbag.Stacks.Name.Pop()\r\n}\r\n\r\nfunc (me *hasAttrNamespace) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrNillable) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrPublic) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrRef) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrRefer) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrSource) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrSystem) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrType) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrUse) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrValue) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrVersion) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrXpath) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrBlockDefault) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrFinalDefault) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrItemType) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrMaxOccurs) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrMemberTypes) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrMinOccurs) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrProcessContents) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrSchemaLocation) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrSubstitutionGroup) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrTargetNamespace) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrAttributeFormDefault) afterMakePkg(bag *PkgBag) {\r\n}\r\n\r\nfunc (me *hasAttrElementFormDefault) afterMakePkg(bag *PkgBag) {\r\n}\r\n"
  },
  {
    "path": "hasparents.go",
    "content": "package xsd\r\n\r\nfunc (me *hasElemAll) initChildren(p element) {\r\n\tif me.All != nil {\r\n\t\tme.All.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemAnnotation) initChildren(p element) {\r\n\tif me.Annotation != nil {\r\n\t\tme.Annotation.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsAny) initChildren(p element) {\r\n\tfor _, any := range me.Anys {\r\n\t\tany.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsAnyAttribute) initChildren(p element) {\r\n\tfor _, aa := range me.AnyAttributes {\r\n\t\taa.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsAppInfo) initChildren(p element) {\r\n\tfor _, ai := range me.AppInfos {\r\n\t\tai.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsAttribute) initChildren(p element) {\r\n\tfor _, ea := range me.Attributes {\r\n\t\tea.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsAttributeGroup) initChildren(p element) {\r\n\tfor _, ag := range me.AttributeGroups {\r\n\t\tag.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemChoice) initChildren(p element) {\r\n\tif me.Choice != nil {\r\n\t\tme.Choice.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsChoice) initChildren(p element) {\r\n\tfor _, ch := range me.Choices {\r\n\t\tch.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemComplexContent) initChildren(p element) {\r\n\tif me.ComplexContent != nil {\r\n\t\tme.ComplexContent.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemComplexType) initChildren(p element) {\r\n\tif me.ComplexType != nil {\r\n\t\tme.ComplexType.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsComplexType) initChildren(p element) {\r\n\tfor _, ct := range me.ComplexTypes {\r\n\t\tct.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsDocumentation) initChildren(p element) {\r\n\tfor _, doc := range me.Documentations {\r\n\t\tdoc.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsElement) initChildren(p element) {\r\n\tfor _, el := range me.Elements {\r\n\t\tel.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsEnumeration) initChildren(p element) {\r\n\tfor _, enum := range me.Enumerations {\r\n\t\tenum.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemExtensionComplexContent) initChildren(p element) {\r\n\tif me.ExtensionComplexContent != nil {\r\n\t\tme.ExtensionComplexContent.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemExtensionSimpleContent) initChildren(p element) {\r\n\tif me.ExtensionSimpleContent != nil {\r\n\t\tme.ExtensionSimpleContent.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemField) initChildren(p element) {\r\n\tif me.Field != nil {\r\n\t\tme.Field.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemFractionDigits) initChildren(p element) {\r\n\tif me.FractionDigits != nil {\r\n\t\tme.FractionDigits.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemGroup) initChildren(p element) {\r\n\tif me.Group != nil {\r\n\t\tme.Group.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsGroup) initChildren(p element) {\r\n\tfor _, gr := range me.Groups {\r\n\t\tgr.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsImport) initChildren(p element) {\r\n\tfor _, imp := range me.Imports {\r\n\t\timp.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsKey) initChildren(p element) {\r\n\tfor _, k := range me.Keys {\r\n\t\tk.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemKeyRef) initChildren(p element) {\r\n\tif me.KeyRef != nil {\r\n\t\tme.KeyRef.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemLength) initChildren(p element) {\r\n\tif me.Length != nil {\r\n\t\tme.Length.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemList) initChildren(p element) {\r\n\tif me.List != nil {\r\n\t\tme.List.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMaxExclusive) initChildren(p element) {\r\n\tif me.MaxExclusive != nil {\r\n\t\tme.MaxExclusive.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMaxInclusive) initChildren(p element) {\r\n\tif me.MaxInclusive != nil {\r\n\t\tme.MaxInclusive.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMaxLength) initChildren(p element) {\r\n\tif me.MaxLength != nil {\r\n\t\tme.MaxLength.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMinExclusive) initChildren(p element) {\r\n\tif me.MinExclusive != nil {\r\n\t\tme.MinExclusive.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMinInclusive) initChildren(p element) {\r\n\tif me.MinInclusive != nil {\r\n\t\tme.MinInclusive.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemMinLength) initChildren(p element) {\r\n\tif me.MinLength != nil {\r\n\t\tme.MinLength.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsNotation) initChildren(p element) {\r\n\tfor _, not := range me.Notations {\r\n\t\tnot.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemPattern) initChildren(p element) {\r\n\tif me.Pattern != nil {\r\n\t\tme.Pattern.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsRedefine) initChildren(p element) {\r\n\tfor _, rd := range me.Redefines {\r\n\t\trd.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemRestrictionComplexContent) initChildren(p element) {\r\n\tif me.RestrictionComplexContent != nil {\r\n\t\tme.RestrictionComplexContent.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemRestrictionSimpleContent) initChildren(p element) {\r\n\tif me.RestrictionSimpleContent != nil {\r\n\t\tme.RestrictionSimpleContent.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemRestrictionSimpleType) initChildren(p element) {\r\n\tif me.RestrictionSimpleType != nil {\r\n\t\tme.RestrictionSimpleType.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemSelector) initChildren(p element) {\r\n\tif me.Selector != nil {\r\n\t\tme.Selector.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemSequence) initChildren(p element) {\r\n\tif me.Sequence != nil {\r\n\t\tme.Sequence.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsSequence) initChildren(p element) {\r\n\tfor _, seq := range me.Sequences {\r\n\t\tseq.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemSimpleContent) initChildren(p element) {\r\n\tif me.SimpleContent != nil {\r\n\t\tme.SimpleContent.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemsSimpleType) initChildren(p element) {\r\n\tfor _, st := range me.SimpleTypes {\r\n\t\tst.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemTotalDigits) initChildren(p element) {\r\n\tif me.TotalDigits != nil {\r\n\t\tme.TotalDigits.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemUnion) initChildren(p element) {\r\n\tif me.Union != nil {\r\n\t\tme.Union.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemUnique) initChildren(p element) {\r\n\tif me.Unique != nil {\r\n\t\tme.Unique.initElement(p)\r\n\t}\r\n}\r\n\r\nfunc (me *hasElemWhiteSpace) initChildren(p element) {\r\n\tif me.WhiteSpace != nil {\r\n\t\tme.WhiteSpace.initElement(p)\r\n\t}\r\n}\r\n"
  },
  {
    "path": "makepkg.go",
    "content": "package xsd\r\n\r\nimport (\r\n\t\"fmt\"\r\n\t\"path\"\r\n\t\"strings\"\r\n\r\n\t\"github.com/metaleap/go-util/dev/go\"\r\n\t\"github.com/metaleap/go-util/slice\"\r\n\t\"github.com/metaleap/go-util/str\"\r\n\r\n\txsdt \"github.com/metaleap/go-xsd/types\"\r\n)\r\n\r\nvar (\r\n\tPkgGen = &pkgGen{\r\n\t\tBaseCodePath:             udevgo.GopathSrcGithub(\"metaleap\", \"go-xsd-pkg\"),\r\n\t\tBasePath:                 \"github.com/metaleap/go-xsd-pkg\",\r\n\t\tForceParseForDefaults:    false,\r\n\t\tPluralizeSpecialPrefixes: []string{\"Library\", \"Instance\"},\r\n\t\tAddWalkers:               true,\r\n\t}\r\n\ttypeRenderRepls = map[string]string{\"*\": \"\", \"[\": \"\", \"]\": \"\", \"(list \": \"\", \")\": \"\"}\r\n)\r\n\r\ntype pkgGen struct {\r\n\tBaseCodePath, BasePath   string\r\n\tForceParseForDefaults    bool\r\n\tPluralizeSpecialPrefixes []string\r\n\tAddWalkers               bool\r\n}\r\n\r\ntype beforeAfterMake interface {\r\n\tafterMakePkg(*PkgBag)\r\n\tbeforeMakePkg(*PkgBag)\r\n}\r\n\r\ntype pkgStack []interface{}\r\n\r\nfunc (me *pkgStack) Pop() (el interface{}) { sl := *me; el = sl[0]; *me = sl[1:]; return }\r\n\r\nfunc (me *pkgStack) Push(el interface{}) { nu := []interface{}{el}; *me = append(nu, *me...) }\r\n\r\ntype pkgStacks struct {\r\n\tName, SimpleType pkgStack\r\n}\r\n\r\nfunc (me *pkgStacks) CurName() (r xsdt.NCName) {\r\n\tif len(me.Name) > 0 {\r\n\t\tr = me.Name[0].(xsdt.NCName)\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc (me *pkgStacks) CurSimpleType() (r *SimpleType) {\r\n\tif len(me.SimpleType) > 0 {\r\n\t\tr = me.SimpleType[0].(*SimpleType)\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc (me *pkgStacks) FullName() (r string) {\r\n\tfor _, name := range me.Name {\r\n\t\tr += name.(xsdt.NCName).String()\r\n\t}\r\n\treturn\r\n}\r\n\r\ntype PkgBag struct {\r\n\tSchema *Schema\r\n\tStacks pkgStacks\r\n\r\n\tallAtts       []*Attribute\r\n\tallAttGroups  []*AttributeGroup\r\n\tallElems      []*Element\r\n\tallElemGroups []*Group\r\n\tallNotations  []*Notation\r\n\r\n\tctd                                                                                          *declType\r\n\tlines                                                                                        []string\r\n\timpName                                                                                      string\r\n\tdebug                                                                                        bool\r\n\timports, attsCache, elemsCacheOnce, elemsCacheMult, simpleBaseTypes, simpleContentValueTypes map[string]string\r\n\timpsUsed, elemsWritten, parseTypes, walkerTypes, declConvs                                   map[string]bool\r\n\tanonCounts                                                                                   map[string]uint64\r\n\tattGroups, attGroupRefImps                                                                   map[*AttributeGroup]string\r\n\tattsKeys, attRefImps                                                                         map[*Attribute]string\r\n\tdeclTypes                                                                                    map[string]*declType\r\n\tdeclElemTypes                                                                                map[element][]*declType\r\n\tdeclWrittenTypes                                                                             []*declType\r\n\telemGroups, elemGroupRefImps                                                                 map[*Group]string\r\n\telemChoices, elemChoiceRefImps                                                               map[*Choice]string\r\n\telemSeqs, elemSeqRefImps                                                                     map[*Sequence]string\r\n\telemKeys, elemRefImps                                                                        map[*Element]string\r\n}\r\n\r\nfunc newPkgBag(schema *Schema) (bag *PkgBag) {\r\n\tvar newImpname = true\r\n\tbag = &PkgBag{Schema: schema}\r\n\tbag.impName = \"xsdt\"\r\n\tfor i := 0; newImpname; i++ {\r\n\t\tnewImpname = false\r\n\t\tloadedSchemas := make(map[string]bool)\r\n\t\tfor _, s := range schema.allSchemas(loadedSchemas) {\r\n\t\t\tfor ns := range s.XMLNamespaces {\r\n\t\t\t\tif ns == bag.impName {\r\n\t\t\t\t\tnewImpname = true\r\n\t\t\t\t\tbreak\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\tif newImpname {\r\n\t\t\tbag.impName = sfmt(\"xsdt\", i)\r\n\t\t}\r\n\t}\r\n\tbag.imports, bag.impsUsed, bag.lines = map[string]string{}, map[string]bool{}, []string{\"//\\tAuto-generated by the \\\"go-xsd\\\" package located at:\", \"//\\t\\tgithub.com/metaleap/go-xsd\", \"//\\tComments on types and fields (if any) are from the XSD file located at:\", \"//\\t\\t\" + bag.Schema.loadUri, \"package go_\" + bag.safeName(ustr.Replace(path.Base(bag.Schema.RootSchema([]string{bag.Schema.loadUri}).loadUri), map[string]string{\"xsd\": \"\", \"schema\": \"\"})), \"\"}\r\n\tbag.imports[bag.impName] = \"github.com/metaleap/go-xsd/types\"\r\n\tbag.anonCounts, bag.declTypes, bag.declElemTypes = map[string]uint64{}, map[string]*declType{}, map[element][]*declType{}\r\n\tbag.simpleContentValueTypes, bag.attsCache, bag.elemsCacheOnce, bag.elemsCacheMult, bag.simpleBaseTypes = map[string]string{}, map[string]string{}, map[string]string{}, map[string]string{}, map[string]string{}\r\n\tbag.attGroups, bag.attGroupRefImps = map[*AttributeGroup]string{}, map[*AttributeGroup]string{}\r\n\tbag.attsKeys, bag.attRefImps = map[*Attribute]string{}, map[*Attribute]string{}\r\n\tbag.elemGroups, bag.elemGroupRefImps = map[*Group]string{}, map[*Group]string{}\r\n\tbag.elemKeys, bag.elemRefImps = map[*Element]string{}, map[*Element]string{}\r\n\tbag.elemsWritten, bag.parseTypes, bag.walkerTypes, bag.declConvs = map[string]bool{}, map[string]bool{}, map[string]bool{}, map[string]bool{}\r\n\tfor _, pt := range []string{\"Boolean\", \"Byte\", \"Double\", \"Float\", \"Int\", \"Integer\", \"Long\", \"NegativeInteger\", \"NonNegativeInteger\", \"NonPositiveInteger\", \"PositiveInteger\", \"Short\", \"UnsignedByte\", \"UnsignedInt\", \"UnsignedLong\", \"UnsignedShort\"} {\r\n\t\tbag.parseTypes[bag.impName+\".\"+pt] = true\r\n\t}\r\n\tbag.addType(nil, idPrefix+\"HasCdata\", \"\").addField(nil, idPrefix+\"CDATA\", \"string\", \",chardata\")\r\n\treturn\r\n}\r\n\r\nfunc (me *PkgBag) addType(elem element, n, t string, a ...*Annotation) (dt *declType) {\r\n\tdt = &declType{elem: elem, Name: n, Type: t, Annotations: a}\r\n\tdt.Embeds, dt.Fields, dt.Methods, dt.memberWritten = map[string]*declEmbed{}, map[string]*declField{}, map[string]*declMethod{}, map[string]bool{}\r\n\tme.ctd, me.declTypes[n] = dt, dt\r\n\tif elem != nil {\r\n\t\tme.declElemTypes[elem] = append(me.declElemTypes[elem], dt)\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc (me *PkgBag) AnonName(n string) (an xsdt.NCName) {\r\n\tvar c uint64\r\n\tn = \"Txsd\" + n\r\n\tan = xsdt.NCName(n)\r\n\tif c = me.anonCounts[n]; c > 0 {\r\n\t\tan += xsdt.NCName(fmt.Sprintf(\"%v\", c))\r\n\t}\r\n\tme.anonCounts[n] = c + 1\r\n\treturn\r\n}\r\n\r\nfunc (me *PkgBag) append(lines ...string) {\r\n\tme.lines = append(me.lines, lines...)\r\n}\r\n\r\nfunc (me *PkgBag) appendFmt(addLineAfter bool, format string, fmtArgs ...interface{}) {\r\n\tme.append(fmt.Sprintf(format, fmtArgs...))\r\n\tif addLineAfter {\r\n\t\tme.append(\"\")\r\n\t}\r\n}\r\n\r\nfunc (me *PkgBag) assembleSource() string {\r\n\tvar (\r\n\t\tdt     *declType\r\n\t\trender = func(el element) {\r\n\t\t\tfor _, dt = range me.declElemTypes[el] {\r\n\t\t\t\tif dt != nil {\r\n\t\t\t\t\tdt.render(me)\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\tinitLines = me.lines\r\n\t\tsnConv    string\r\n\t)\r\n\tme.lines = []string{}\r\n\tloadedSchemas := make(map[string]bool)\r\n\tme.Schema.collectGlobals(me, loadedSchemas)\r\n\tif len(me.allNotations) > 0 {\r\n\t\tme.impsUsed[me.impName] = true\r\n\t\tme.appendFmt(false, \"var %sNotations = new(%s.Notations)\\n\\nfunc init () {\", idPrefix, me.impName)\r\n\t\tfor _, not := range me.allNotations {\r\n\t\t\tnot.makePkg(me)\r\n\t\t}\r\n\t\tme.appendFmt(true, \"}\")\r\n\t}\r\n\tfor _, att := range me.allAtts {\r\n\t\trender(att)\r\n\t}\r\n\tfor _, attGr := range me.allAttGroups {\r\n\t\trender(attGr)\r\n\t}\r\n\tfor _, el := range me.allElems {\r\n\t\trender(el)\r\n\t}\r\n\tfor _, gr := range me.allElemGroups {\r\n\t\trender(gr)\r\n\t}\r\n\r\n\tfor _, dt := range me.declTypes {\r\n\t\tdt.render(me)\r\n\t}\r\n\r\n\tif len(me.walkerTypes) > 0 {\r\n\t\tdoc := sfmt(\"//\\tProvides %v strong-typed hooks for your own custom handler functions to be invoked when the Walk() method is called on any instance of any (non-attribute-related) struct type defined in this package.\\n//\\tIf your custom handler does get called at all for a given struct instance, then it always gets called twice, first with the 'enter' bool argument set to true, then (after having Walk()ed all subordinate struct instances, if any) once again with it set to false.\", len(me.walkerTypes))\r\n\t\tme.appendFmt(true, `var (\r\n\t//\tSet this to false to break a Walk() immediately as soon as the first error is returned by a custom handler function.\r\n\t//\tIf true, Walk() proceeds and accumulates all errors in the WalkErrors slice.\r\n\tWalkContinueOnError = true\r\n\t//\tContains all errors accumulated during Walk()s. If you're using this, you need to reset this yourself as needed prior to a fresh Walk().\r\n\tWalkErrors          []error\r\n\t//\tYour custom error-handling function, if required.\r\n\tWalkOnError         func(error)\r\n\t%s\r\n\tWalkHandlers        = &%sWalkHandlers {}\r\n)`, doc, idPrefix)\r\n\t\tme.appendFmt(false, doc)\r\n\t\tme.appendFmt(false, \"type %vWalkHandlers struct {\", idPrefix)\r\n\t\tfor wt := range me.walkerTypes {\r\n\t\t\tme.appendFmt(false, \"\\t%s func (*%s, bool) (error)\", wt, wt)\r\n\t\t}\r\n\t\tme.appendFmt(true, \"}\")\r\n\t}\r\n\tfor conv := range me.declConvs {\r\n\t\tsnConv = me.safeName(conv)\r\n\t\tme.appendFmt(false, \"//\\tA convenience interface that declares a type conversion to %v.\", conv)\r\n\t\tme.appendFmt(true, \"type To%v interface { To%v () %v }\", snConv, snConv, conv)\r\n\t}\r\n\r\n\tinitLines = append(initLines, \"import (\")\r\n\tfor impName, impPath := range me.imports {\r\n\t\tif me.impsUsed[impName] {\r\n\t\t\tif len(impPath) > 0 {\r\n\t\t\t\tinitLines = append(initLines, sfmt(\"\\t%s \\\"%s\\\"\", impName, impPath))\r\n\t\t\t} else {\r\n\t\t\t\tinitLines = append(initLines, sfmt(\"\\t\\\"%s\\\"\", impName))\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tinitLines = append(initLines, \")\", \"\")\r\n\treturn strings.Join(append(initLines, me.lines...), \"\\n\")\r\n}\r\n\r\nfunc (me *PkgBag) checkType(typeSpec string) {\r\n\tvar dt *declType\r\n\ttn := ustr.Replace(typeSpec, typeRenderRepls)\r\n\tif dt = me.declTypes[tn]; (dt != nil) && (len(dt.EquivalentTo) > 0) {\r\n\t\ttn = dt.EquivalentTo\r\n\t\tdt = me.declTypes[tn]\r\n\t}\r\n\tif pos := strings.Index(tn, \".\"); pos > 0 {\r\n\t\tme.impsUsed[tn[:pos]] = true\r\n\t}\r\n\tif dt != nil {\r\n\t\tdt.render(me)\r\n\t} // else if (tn != \"string\") && (tn != \"bool\") && (len(tn) > 0) && !strings.Contains(tn, \".\") { println(\"TYPE NOT FOUND: \" + tn) }\r\n}\r\n\r\nfunc (me *PkgBag) isParseType(typeRef string) bool {\r\n\tfor pt := range me.parseTypes {\r\n\t\tif typeRef == pt {\r\n\t\t\treturn true\r\n\t\t}\r\n\t}\r\n\treturn false\r\n}\r\n\r\nfunc (me *PkgBag) resolveQnameRef(ref, pref string, noUsageRec *string) string {\r\n\tvar ns = me.Schema.XMLNamespaces[\"\"]\r\n\tvar impName = \"\"\r\n\tif len(ref) == 0 {\r\n\t\treturn \"\"\r\n\t}\r\n\tif pos := strings.Index(ref, \":\"); pos > 0 {\r\n\t\timpName, ns = ref[:pos], me.Schema.XMLNamespaces[ref[:pos]]\r\n\t\timpName = safeIdentifier(impName)\r\n\t\tref = ref[(pos + 1):]\r\n\t}\r\n\tif ns == xsdNamespaceUri {\r\n\t\timpName, pref = me.impName, \"\"\r\n\t}\r\n\tif ns == me.Schema.TargetNamespace.String() {\r\n\t\timpName = \"\"\r\n\t}\r\n\tif noUsageRec == nil { /*me.impsUsed[impName] = true*/\r\n\t} else {\r\n\t\t*noUsageRec = impName\r\n\t}\r\n\treturn ustr.PrefixWithSep(impName, \".\", me.safeName(ustr.PrependIf(ref, pref)))\r\n}\r\n\r\nfunc (me *PkgBag) rewriteTypeSpec(typeSpec string) (tn string) {\r\n\ttn = ustr.Replace(typeSpec, typeRenderRepls)\r\n\tif dt := me.declTypes[tn]; (dt != nil) && (len(dt.EquivalentTo) > 0) {\r\n\t\ttn = strings.Replace(typeSpec, tn, dt.EquivalentTo, -1)\r\n\t} else {\r\n\t\ttn = typeSpec\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc (me *PkgBag) safeName(name string) string {\r\n\treturn ustr.SafeIdentifier(name)\r\n}\r\n\r\nfunc (me *PkgBag) xsdStringTypeRef() string {\r\n\treturn ustr.PrefixWithSep(me.Schema.XSDNamespacePrefix, \":\", \"string\")\r\n}\r\n\r\ntype declEmbed struct {\r\n\tName          string\r\n\tAnnotations   []*Annotation\r\n\telem          element\r\n\tfinalTypeName string\r\n}\r\n\r\nfunc (me *declEmbed) render(bag *PkgBag, dt *declType) {\r\n\tif n := bag.rewriteTypeSpec(me.Name); !dt.memberWritten[\"E_\"+n] {\r\n\t\tdt.memberWritten[\"E_\"+n] = true\r\n\t\tfor _, ann := range me.Annotations {\r\n\t\t\tif ann != nil {\r\n\t\t\t\tann.makePkg(bag)\r\n\t\t\t}\r\n\t\t}\r\n\t\tme.finalTypeName = bag.rewriteTypeSpec(n)\r\n\t\tbag.appendFmt(true, \"\\t%s\", me.finalTypeName)\r\n\t}\r\n}\r\n\r\ntype declField struct {\r\n\tName, Type, XmlTag string\r\n\tAnnotations        []*Annotation\r\n\telem               element\r\n\tfinalTypeName      string\r\n}\r\n\r\nfunc (me *declField) render(bag *PkgBag, dt *declType) {\r\n\tfor _, ann := range me.Annotations {\r\n\t\tif ann != nil {\r\n\t\t\tann.makePkg(bag)\r\n\t\t}\r\n\t}\r\n\tme.finalTypeName = bag.rewriteTypeSpec(me.Type)\r\n\tbag.appendFmt(true, \"\\t%s %s `xml:\\\"%s\\\"`\", me.Name, me.finalTypeName, me.XmlTag)\r\n}\r\n\r\ntype declMethod struct {\r\n\tBody, Doc, Name, ReceiverType, ReturnType string\r\n\tAnnotations                               []*Annotation\r\n\telem                                      element\r\n}\r\n\r\nfunc (me *declMethod) render(bag *PkgBag, dt *declType) {\r\n\tfor _, ann := range me.Annotations {\r\n\t\tif ann != nil {\r\n\t\t\tann.makePkg(bag)\r\n\t\t}\r\n\t}\r\n\tbag.appendFmt(false, \"//\\t%s\", me.Doc)\r\n\trt := bag.rewriteTypeSpec(me.ReturnType)\r\n\tbag.appendFmt(true, \"func (me %s) %s %s { %s }\", bag.rewriteTypeSpec(me.ReceiverType), ustr.Ifs(strings.Contains(me.Name, \"(\"), me.Name, me.Name+\" ()\"), rt, strings.Replace(me.Body, me.ReturnType, rt, -1))\r\n}\r\n\r\ntype declType struct {\r\n\tEquivalentTo, Name, Type string\r\n\tEmbeds                   map[string]*declEmbed\r\n\tAnnotations              []*Annotation\r\n\tFields                   map[string]*declField\r\n\tMethods                  map[string]*declMethod\r\n\telem                     element\r\n\tmemberWritten            map[string]bool\r\n\trendered                 bool\r\n}\r\n\r\nfunc (me *declType) addAnnotations(a ...*Annotation) {\r\n\tme.Annotations = append(me.Annotations, a...)\r\n}\r\n\r\nfunc (me *declType) addField(elem element, n, t, x string, a ...*Annotation) (f *declField) {\r\n\tf = &declField{elem: elem, Name: n, Type: t, XmlTag: x, Annotations: a}\r\n\tme.Fields[n] = f\r\n\treturn\r\n}\r\n\r\nfunc (me *declType) addEmbed(elem element, name string, a ...*Annotation) (e *declEmbed) {\r\n\te = &declEmbed{elem: elem, Name: name, Annotations: a}\r\n\tme.Embeds[name] = e\r\n\treturn\r\n}\r\n\r\nfunc (me *declType) addMethod(elem element, recType, name, retType, body, doc string, a ...*Annotation) (m *declMethod) {\r\n\tm = &declMethod{elem: elem, Body: body, Doc: doc, Name: name, ReceiverType: recType, ReturnType: retType, Annotations: a}\r\n\tme.Methods[name] = m\r\n\treturn\r\n}\r\n\r\nfunc (me *declType) checkForEquivalents(bag *PkgBag) {\r\n\tif (len(me.EquivalentTo) == 0) && (strings.HasPrefix(me.Name, \"Txsd\") || strings.HasPrefix(me.Name, idPrefix)) {\r\n\t\tfor _, dt := range bag.declWrittenTypes {\r\n\t\t\tif (dt != me) && (len(dt.EquivalentTo) == 0) && me.equivalentTo(dt) {\r\n\t\t\t\tme.EquivalentTo = dt.Name\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\nfunc (me *declType) equivalentTo(dt *declType) bool {\r\n\tvar sme, sdt []string\r\n\tif me.Type != dt.Type {\r\n\t\treturn false\r\n\t}\r\n\tif len(me.Embeds) != len(dt.Embeds) {\r\n\t\treturn false\r\n\t}\r\n\tif len(me.Fields) != len(dt.Fields) {\r\n\t\treturn false\r\n\t}\r\n\tsme, sdt = []string{}, []string{}\r\n\tfor e := range me.Embeds {\r\n\t\tsme = append(sme, e)\r\n\t}\r\n\tfor e := range dt.Embeds {\r\n\t\tsdt = append(sdt, e)\r\n\t}\r\n\tif !uslice.StrEquivalent(sme, sdt) {\r\n\t\treturn false\r\n\t}\r\n\tsme, sdt = []string{}, []string{}\r\n\tfor _, f := range me.Fields {\r\n\t\tsme = append(sme, f.Name+f.Type+f.XmlTag)\r\n\t}\r\n\tfor _, f := range dt.Fields {\r\n\t\tsdt = append(sdt, f.Name+f.Type+f.XmlTag)\r\n\t}\r\n\tif !uslice.StrEquivalent(sme, sdt) {\r\n\t\treturn false\r\n\t}\r\n\tsme, sdt = []string{}, []string{}\r\n\tfor _, m := range me.Methods {\r\n\t\tif m.Name != \"Walk\" {\r\n\t\t\tsme = append(sme, m.Name+m.ReturnType+m.Body)\r\n\t\t}\r\n\t}\r\n\tfor _, m := range dt.Methods {\r\n\t\tif m.Name != \"Walk\" {\r\n\t\t\tsdt = append(sdt, m.Name+m.ReturnType+m.Body)\r\n\t\t}\r\n\t}\r\n\tif !uslice.StrEquivalent(sme, sdt) {\r\n\t\treturn false\r\n\t}\r\n\treturn true\r\n}\r\n\r\nfunc (me *declType) render(bag *PkgBag) {\r\n\tif !me.rendered {\r\n\t\tme.rendered = true\r\n\t\tif me.checkForEquivalents(bag); len(me.EquivalentTo) == 0 {\r\n\t\t\tvar myName = me.Name\r\n\t\t\tfor _, ann := range me.Annotations {\r\n\t\t\t\tif ann != nil {\r\n\t\t\t\t\tann.makePkg(bag)\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tfor _, e := range me.Embeds {\r\n\t\t\t\tbag.checkType(e.Name)\r\n\t\t\t}\r\n\t\t\tfor _, f := range me.Fields {\r\n\t\t\t\tbag.checkType(f.Type)\r\n\t\t\t}\r\n\t\t\tfor _, m := range me.Methods {\r\n\t\t\t\tbag.checkType(m.ReturnType)\r\n\t\t\t}\r\n\t\t\tif len(me.Type) > 0 {\r\n\t\t\t\tbag.checkType(me.Type)\r\n\t\t\t\tbag.appendFmt(true, \"type %s %s\", myName, me.Type)\r\n\t\t\t} else {\r\n\t\t\t\tbag.appendFmt(false, \"type %s struct {\", myName)\r\n\t\t\t\tfor _, f := range me.Fields {\r\n\t\t\t\t\tf.render(bag, me)\r\n\t\t\t\t}\r\n\t\t\t\tfor _, e := range me.Embeds {\r\n\t\t\t\t\te.render(bag, me)\r\n\t\t\t\t}\r\n\t\t\t\tbag.appendFmt(true, \"}\")\r\n\t\t\t\tif PkgGen.AddWalkers && !strings.HasPrefix(myName, idPrefix+\"HasAtt\") {\r\n\t\t\t\t\terrCheck := sfmt(\"%s.OnWalkError(&err, &WalkErrors, WalkContinueOnError, WalkOnError) { return }\", bag.impName)\r\n\t\t\t\t\tfnCall := \"\\t\\tif fn != nil { if err = fn(me, %v); %s }\"\r\n\t\t\t\t\twalkBody := sfmt(\"\\n\\tif fn := WalkHandlers.%s; me != nil {\\n%s\\n\", myName, sfmt(fnCall, true, errCheck))\r\n\t\t\t\t\tec, fc := 0, 0\r\n\t\t\t\t\tbag.walkerTypes[myName] = true\r\n\t\t\t\t\tfor _, e := range me.Embeds {\r\n\t\t\t\t\t\tif bag.walkerTypes[e.finalTypeName] {\r\n\t\t\t\t\t\t\tec++\r\n\t\t\t\t\t\t\twalkBody += sfmt(\"\\t\\tif err = me.%s.Walk(); %s\\n\", e.finalTypeName, errCheck)\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\tfor _, f := range me.Fields {\r\n\t\t\t\t\t\tif bag.walkerTypes[strings.Replace(f.finalTypeName, \"*\", \"\", -1)] {\r\n\t\t\t\t\t\t\tfc++\r\n\t\t\t\t\t\t\twalkBody += sfmt(\"\\t\\tif err = me.%v.Walk(); %s\\n\", f.Name, errCheck)\r\n\t\t\t\t\t\t} else if strings.HasPrefix(f.finalTypeName, \"[]\") && bag.walkerTypes[ustr.Replace(f.finalTypeName, typeRenderRepls)] {\r\n\t\t\t\t\t\t\twalkBody += sfmt(\"\\t\\tfor _, x := range me.%s { if err = x.Walk(); %s }\\n\", f.Name, errCheck)\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\twalkBody += sfmt(\"%s\\n}\\n\\treturn\\n\", sfmt(fnCall, false, errCheck))\r\n\t\t\t\t\tme.addMethod(nil, \"*\"+myName, \"Walk\", \"(err error)\", walkBody, sfmt(\"If the WalkHandlers.%v function is not nil (ie. was set by outside code), calls it with this %v instance as the single argument. Then calls the Walk() method on %v/%v embed(s) and %v/%v field(s) belonging to this %v instance.\", myName, myName, ec, len(me.Embeds), fc, len(me.Fields), myName))\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tbag.declWrittenTypes = append(bag.declWrittenTypes, me)\r\n\t\t\tfor _, m := range me.Methods {\r\n\t\t\t\tm.render(bag, me)\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n"
  },
  {
    "path": "types/README.md",
    "content": "# xsdt\r\n--\r\n    import \"github.com/metaleap/go-xsd/types\"\r\n\r\nA tiny package imported by all \"go-xsd\"-generated packages.\r\n\r\nMaps all XSD built-in simple-types to Go types, which affords us easy mapping of\r\nany XSD type references in the schema to Go imports: every xs:string and\r\nxs:boolean automatically becomes xsdt.String and xsdt.Boolean etc. Types are\r\nmapped to Go types depending on how encoding/xml.Unmarshal() can handle them:\r\nie. it parses bools and numbers, but dates/durations have too many format\r\nmismatches and thus are just declared string types. Same for base64- and\r\nhex-encoded binary data: since Unmarshal() won't decode them, we leave them as\r\nstrings. If you need their binary data, your code needs to import Go's\r\nbase64/hex codec packages and use them as necessary.\r\n\r\n## Usage\r\n\r\n#### func  ListValues\r\n\r\n```go\r\nfunc ListValues(v string) (spl []string)\r\n```\r\nXSD \"list\" types are always space-separated strings. All generated Go types\r\nbased on any XSD's list types get a Values() method, which will always resort to\r\nthis function.\r\n\r\n#### func  ListValuesBoolean\r\n\r\n```go\r\nfunc ListValuesBoolean(vals []Boolean) (sl []bool)\r\n```\r\n\r\n#### func  ListValuesDouble\r\n\r\n```go\r\nfunc ListValuesDouble(vals []Double) (sl []float64)\r\n```\r\n\r\n#### func  ListValuesLong\r\n\r\n```go\r\nfunc ListValuesLong(vals []Long) (sl []int64)\r\n```\r\n\r\n#### func  OnWalkError\r\n\r\n```go\r\nfunc OnWalkError(err *error, slice *[]error, breakWalk bool, handler func(error)) (ret bool)\r\n```\r\nA helper function for the Walk() functionality of generated wrapper packages.\r\n\r\n#### type AnySimpleType\r\n\r\n```go\r\ntype AnySimpleType string\r\n```\r\n\r\nIn XSD, the type xsd:anySimpleType is the base type from which all other\r\nbuilt-in types are derived.\r\n\r\n#### func (*AnySimpleType) Set\r\n\r\n```go\r\nfunc (me *AnySimpleType) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (AnySimpleType) String\r\n\r\n```go\r\nfunc (me AnySimpleType) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type AnyType\r\n\r\n```go\r\ntype AnyType string\r\n```\r\n\r\nIn XSD, represents any simple or complex type. In Go, we hope no one schema ever\r\nuses it.\r\n\r\n#### func (*AnyType) Set\r\n\r\n```go\r\nfunc (me *AnyType) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (AnyType) String\r\n\r\n```go\r\nfunc (me AnyType) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type AnyURI\r\n\r\n```go\r\ntype AnyURI string\r\n```\r\n\r\nRepresents a URI as defined by RFC 2396. An anyURI value can be absolute or\r\nrelative, and may have an optional fragment identifier.\r\n\r\n#### func (*AnyURI) Set\r\n\r\n```go\r\nfunc (me *AnyURI) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (AnyURI) String\r\n\r\n```go\r\nfunc (me AnyURI) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Base64Binary\r\n\r\n```go\r\ntype Base64Binary string // []byte\r\n\r\n```\r\n\r\nRepresents Base64-encoded arbitrary binary data. A base64Binary is the set of\r\nfinite-length sequences of binary octets.\r\n\r\n#### func (*Base64Binary) Set\r\n\r\n```go\r\nfunc (me *Base64Binary) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Base64Binary) String\r\n\r\n```go\r\nfunc (me Base64Binary) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Boolean\r\n\r\n```go\r\ntype Boolean bool\r\n```\r\n\r\nRepresents Boolean values, which are either true or false.\r\n\r\n#### func (Boolean) B\r\n\r\n```go\r\nfunc (me Boolean) B() bool\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*Boolean) Set\r\n\r\n```go\r\nfunc (me *Boolean) Set(v string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (Boolean) String\r\n\r\n```go\r\nfunc (me Boolean) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type Byte\r\n\r\n```go\r\ntype Byte int8\r\n```\r\n\r\nRepresents an integer with a minimum value of -128 and maximum of 127.\r\n\r\n#### func (Byte) N\r\n\r\n```go\r\nfunc (me Byte) N() int8\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*Byte) Set\r\n\r\n```go\r\nfunc (me *Byte) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (Byte) String\r\n\r\n```go\r\nfunc (me Byte) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type Date\r\n\r\n```go\r\ntype Date string // time.Time\r\n\r\n```\r\n\r\nRepresents a calendar date. The pattern for date is CCYY-MM-DD with optional\r\ntime zone indicator as allowed for dateTime.\r\n\r\n#### func (*Date) Set\r\n\r\n```go\r\nfunc (me *Date) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Date) String\r\n\r\n```go\r\nfunc (me Date) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type DateTime\r\n\r\n```go\r\ntype DateTime string // time.Time\r\n\r\n```\r\n\r\nRepresents a specific instance of time.\r\n\r\n#### func (*DateTime) Set\r\n\r\n```go\r\nfunc (me *DateTime) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (DateTime) String\r\n\r\n```go\r\nfunc (me DateTime) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Decimal\r\n\r\n```go\r\ntype Decimal string // complex128\r\n\r\n```\r\n\r\nRepresents arbitrary precision numbers.\r\n\r\n#### func (*Decimal) Set\r\n\r\n```go\r\nfunc (me *Decimal) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Decimal) String\r\n\r\n```go\r\nfunc (me Decimal) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Double\r\n\r\n```go\r\ntype Double float64\r\n```\r\n\r\nRepresents double-precision 64-bit floating-point numbers.\r\n\r\n#### func (Double) N\r\n\r\n```go\r\nfunc (me Double) N() float64\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*Double) Set\r\n\r\n```go\r\nfunc (me *Double) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (Double) String\r\n\r\n```go\r\nfunc (me Double) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type Duration\r\n\r\n```go\r\ntype Duration string // time.Duration\r\n\r\n```\r\n\r\nRepresents a duration of time.\r\n\r\n#### func (*Duration) Set\r\n\r\n```go\r\nfunc (me *Duration) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Duration) String\r\n\r\n```go\r\nfunc (me Duration) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Entities\r\n\r\n```go\r\ntype Entities string\r\n```\r\n\r\nRepresents the ENTITIES attribute type. Contains a set of values of type ENTITY.\r\n\r\n#### func (*Entities) Set\r\n\r\n```go\r\nfunc (me *Entities) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Entities) String\r\n\r\n```go\r\nfunc (me Entities) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### func (Entities) Values\r\n\r\n```go\r\nfunc (me Entities) Values() (list []Entity)\r\n```\r\nThis type declares a String containing a whitespace-separated list of values.\r\nThis Values() method creates and returns a slice of all elements in that list.\r\n\r\n#### type Entity\r\n\r\n```go\r\ntype Entity NCName\r\n```\r\n\r\nThis is a reference to an unparsed entity with a name that matches the specified\r\nname.\r\n\r\n#### func (*Entity) Set\r\n\r\n```go\r\nfunc (me *Entity) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Entity) String\r\n\r\n```go\r\nfunc (me Entity) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Float\r\n\r\n```go\r\ntype Float float32\r\n```\r\n\r\nRepresents single-precision 32-bit floating-point numbers.\r\n\r\n#### func (Float) N\r\n\r\n```go\r\nfunc (me Float) N() float32\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*Float) Set\r\n\r\n```go\r\nfunc (me *Float) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (Float) String\r\n\r\n```go\r\nfunc (me Float) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type GDay\r\n\r\n```go\r\ntype GDay string\r\n```\r\n\r\nRepresents a Gregorian day that recurs, specifically a day of the month such as\r\nthe fifth day of the month. A gDay is the space of a set of calendar dates.\r\nSpecifically, it is a set of one-day long, monthly periodic instances.\r\n\r\n#### func (*GDay) Set\r\n\r\n```go\r\nfunc (me *GDay) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (GDay) String\r\n\r\n```go\r\nfunc (me GDay) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type GMonth\r\n\r\n```go\r\ntype GMonth string\r\n```\r\n\r\nRepresents a Gregorian month that recurs every year. A gMonth is the space of a\r\nset of calendar months. Specifically, it is a set of one-month long, yearly\r\nperiodic instances.\r\n\r\n#### func (*GMonth) Set\r\n\r\n```go\r\nfunc (me *GMonth) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (GMonth) String\r\n\r\n```go\r\nfunc (me GMonth) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type GMonthDay\r\n\r\n```go\r\ntype GMonthDay string\r\n```\r\n\r\nRepresents a specific Gregorian date that recurs, specifically a day of the year\r\nsuch as the third of May. A gMonthDay is the set of calendar dates.\r\nSpecifically, it is a set of one-day long, annually periodic instances.\r\n\r\n#### func (*GMonthDay) Set\r\n\r\n```go\r\nfunc (me *GMonthDay) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (GMonthDay) String\r\n\r\n```go\r\nfunc (me GMonthDay) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type GYear\r\n\r\n```go\r\ntype GYear string\r\n```\r\n\r\nRepresents a Gregorian year. A set of one-year long, nonperiodic instances.\r\n\r\n#### func (*GYear) Set\r\n\r\n```go\r\nfunc (me *GYear) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (GYear) String\r\n\r\n```go\r\nfunc (me GYear) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type GYearMonth\r\n\r\n```go\r\ntype GYearMonth string\r\n```\r\n\r\nRepresents a specific Gregorian month in a specific Gregorian year. A set of\r\none-month long, nonperiodic instances.\r\n\r\n#### func (*GYearMonth) Set\r\n\r\n```go\r\nfunc (me *GYearMonth) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (GYearMonth) String\r\n\r\n```go\r\nfunc (me GYearMonth) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type HexBinary\r\n\r\n```go\r\ntype HexBinary string // []byte\r\n\r\n```\r\n\r\nRepresents arbitrary hex-encoded binary data. A hexBinary is the set of\r\nfinite-length sequences of binary octets. Each binary octet is encoded as a\r\ncharacter tuple, consisting of two hexadecimal digits ([0-9a-fA-F]) representing\r\nthe octet code.\r\n\r\n#### func (*HexBinary) Set\r\n\r\n```go\r\nfunc (me *HexBinary) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (HexBinary) String\r\n\r\n```go\r\nfunc (me HexBinary) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Id\r\n\r\n```go\r\ntype Id NCName\r\n```\r\n\r\nThe ID must be a no-colon-name (NCName) and must be unique within an XML\r\ndocument.\r\n\r\n#### func (*Id) Set\r\n\r\n```go\r\nfunc (me *Id) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Id) String\r\n\r\n```go\r\nfunc (me Id) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Idref\r\n\r\n```go\r\ntype Idref NCName\r\n```\r\n\r\nRepresents a reference to an element that has an ID attribute that matches the\r\nspecified ID. An IDREF must be an NCName and must be a value of an element or\r\nattribute of type ID within the XML document.\r\n\r\n#### func (*Idref) Set\r\n\r\n```go\r\nfunc (me *Idref) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Idref) String\r\n\r\n```go\r\nfunc (me Idref) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Idrefs\r\n\r\n```go\r\ntype Idrefs string\r\n```\r\n\r\nContains a set of values of type IDREF.\r\n\r\n#### func (*Idrefs) Set\r\n\r\n```go\r\nfunc (me *Idrefs) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Idrefs) String\r\n\r\n```go\r\nfunc (me Idrefs) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### func (Idrefs) Values\r\n\r\n```go\r\nfunc (me Idrefs) Values() (list []Idref)\r\n```\r\nThis type declares a String containing a whitespace-separated list of values.\r\nThis Values() method creates and returns a slice of all elements in that list.\r\n\r\n#### type Int\r\n\r\n```go\r\ntype Int int32\r\n```\r\n\r\nRepresents an integer with a minimum value of -2147483648 and maximum of\r\n2147483647.\r\n\r\n#### func (Int) N\r\n\r\n```go\r\nfunc (me Int) N() int32\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*Int) Set\r\n\r\n```go\r\nfunc (me *Int) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (Int) String\r\n\r\n```go\r\nfunc (me Int) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type Integer\r\n\r\n```go\r\ntype Integer int64\r\n```\r\n\r\nRepresents a sequence of decimal digits with an optional leading sign (+ or -).\r\n\r\n#### func (Integer) N\r\n\r\n```go\r\nfunc (me Integer) N() int64\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*Integer) Set\r\n\r\n```go\r\nfunc (me *Integer) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (Integer) String\r\n\r\n```go\r\nfunc (me Integer) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type Language\r\n\r\n```go\r\ntype Language Token\r\n```\r\n\r\nRepresents natural language identifiers (defined by RFC 1766).\r\n\r\n#### func (*Language) Set\r\n\r\n```go\r\nfunc (me *Language) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Language) String\r\n\r\n```go\r\nfunc (me Language) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Long\r\n\r\n```go\r\ntype Long int64\r\n```\r\n\r\nRepresents an integer with a minimum value of -9223372036854775808 and maximum\r\nof 9223372036854775807.\r\n\r\n#### func (Long) N\r\n\r\n```go\r\nfunc (me Long) N() int64\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*Long) Set\r\n\r\n```go\r\nfunc (me *Long) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (Long) String\r\n\r\n```go\r\nfunc (me Long) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type NCName\r\n\r\n```go\r\ntype NCName Name\r\n```\r\n\r\nRepresents noncolonized names. This data type is the same as Name, except it\r\ncannot begin with a colon.\r\n\r\n#### func (*NCName) Set\r\n\r\n```go\r\nfunc (me *NCName) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (NCName) String\r\n\r\n```go\r\nfunc (me NCName) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Name\r\n\r\n```go\r\ntype Name Token\r\n```\r\n\r\nRepresents names in XML. A Name is a token that begins with a letter,\r\nunderscore, or colon and continues with name characters (letters, digits, and\r\nother characters).\r\n\r\n#### func (*Name) Set\r\n\r\n```go\r\nfunc (me *Name) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Name) String\r\n\r\n```go\r\nfunc (me Name) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type NegativeInteger\r\n\r\n```go\r\ntype NegativeInteger int64\r\n```\r\n\r\nRepresents an integer that is less than zero. Consists of a negative sign (-)\r\nand sequence of decimal digits.\r\n\r\n#### func (NegativeInteger) N\r\n\r\n```go\r\nfunc (me NegativeInteger) N() int64\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*NegativeInteger) Set\r\n\r\n```go\r\nfunc (me *NegativeInteger) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (NegativeInteger) String\r\n\r\n```go\r\nfunc (me NegativeInteger) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type Nmtoken\r\n\r\n```go\r\ntype Nmtoken Token\r\n```\r\n\r\nAn NMTOKEN is set of name characters (letters, digits, and other characters) in\r\nany combination. Unlike Name and NCName, NMTOKEN has no restrictions on the\r\nstarting character.\r\n\r\n#### func (*Nmtoken) Set\r\n\r\n```go\r\nfunc (me *Nmtoken) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Nmtoken) String\r\n\r\n```go\r\nfunc (me Nmtoken) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Nmtokens\r\n\r\n```go\r\ntype Nmtokens string\r\n```\r\n\r\nContains a set of values of type NMTOKEN.\r\n\r\n#### func (*Nmtokens) Set\r\n\r\n```go\r\nfunc (me *Nmtokens) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Nmtokens) String\r\n\r\n```go\r\nfunc (me Nmtokens) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### func (Nmtokens) Values\r\n\r\n```go\r\nfunc (me Nmtokens) Values() (list []Nmtoken)\r\n```\r\nThis type declares a String containing a whitespace-separated list of values.\r\nThis Values() method creates and returns a slice of all elements in that list.\r\n\r\n#### type NonNegativeInteger\r\n\r\n```go\r\ntype NonNegativeInteger uint64\r\n```\r\n\r\nRepresents an integer that is greater than or equal to zero.\r\n\r\n#### func (NonNegativeInteger) N\r\n\r\n```go\r\nfunc (me NonNegativeInteger) N() uint64\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*NonNegativeInteger) Set\r\n\r\n```go\r\nfunc (me *NonNegativeInteger) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (NonNegativeInteger) String\r\n\r\n```go\r\nfunc (me NonNegativeInteger) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type NonPositiveInteger\r\n\r\n```go\r\ntype NonPositiveInteger int64\r\n```\r\n\r\nRepresents an integer that is less than or equal to zero. A\r\nnonPositiveIntegerconsists of a negative sign (-) and sequence of decimal\r\ndigits.\r\n\r\n#### func (NonPositiveInteger) N\r\n\r\n```go\r\nfunc (me NonPositiveInteger) N() int64\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*NonPositiveInteger) Set\r\n\r\n```go\r\nfunc (me *NonPositiveInteger) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (NonPositiveInteger) String\r\n\r\n```go\r\nfunc (me NonPositiveInteger) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type NormalizedString\r\n\r\n```go\r\ntype NormalizedString String\r\n```\r\n\r\nRepresents white space normalized strings.\r\n\r\n#### func (*NormalizedString) Set\r\n\r\n```go\r\nfunc (me *NormalizedString) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (NormalizedString) String\r\n\r\n```go\r\nfunc (me NormalizedString) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Notation\r\n\r\n```go\r\ntype Notation string\r\n```\r\n\r\nA set of QNames.\r\n\r\n#### func (*Notation) Set\r\n\r\n```go\r\nfunc (me *Notation) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Notation) String\r\n\r\n```go\r\nfunc (me Notation) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### func (Notation) Values\r\n\r\n```go\r\nfunc (me Notation) Values() (list []Qname)\r\n```\r\nThis type declares a String containing a whitespace-separated list of values.\r\nThis Values() method creates and returns a slice of all elements in that list.\r\n\r\n#### type Notations\r\n\r\n```go\r\ntype Notations map[string]*notation\r\n```\r\n\r\n\r\n#### func (Notations) Add\r\n\r\n```go\r\nfunc (me Notations) Add(id, name, public, system string)\r\n```\r\n\r\n#### type PositiveInteger\r\n\r\n```go\r\ntype PositiveInteger uint64\r\n```\r\n\r\nRepresents an integer that is greater than zero.\r\n\r\n#### func (PositiveInteger) N\r\n\r\n```go\r\nfunc (me PositiveInteger) N() uint64\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*PositiveInteger) Set\r\n\r\n```go\r\nfunc (me *PositiveInteger) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (PositiveInteger) String\r\n\r\n```go\r\nfunc (me PositiveInteger) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type Qname\r\n\r\n```go\r\ntype Qname string\r\n```\r\n\r\nRepresents a qualified name. A qualified name is composed of a prefix and a\r\nlocal name separated by a colon. Both the prefix and local names must be an\r\nNCName. The prefix must be associated with a namespace URI reference, using a\r\nnamespace declaration.\r\n\r\n#### func (*Qname) Set\r\n\r\n```go\r\nfunc (me *Qname) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Qname) String\r\n\r\n```go\r\nfunc (me Qname) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Short\r\n\r\n```go\r\ntype Short int16\r\n```\r\n\r\nRepresents an integer with a minimum value of -32768 and maximum of 32767.\r\n\r\n#### func (Short) N\r\n\r\n```go\r\nfunc (me Short) N() int16\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*Short) Set\r\n\r\n```go\r\nfunc (me *Short) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (Short) String\r\n\r\n```go\r\nfunc (me Short) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type String\r\n\r\n```go\r\ntype String string\r\n```\r\n\r\nRepresents character strings.\r\n\r\n#### func (*String) Set\r\n\r\n```go\r\nfunc (me *String) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (String) String\r\n\r\n```go\r\nfunc (me String) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type Time\r\n\r\n```go\r\ntype Time string // time.Time\r\n\r\n```\r\n\r\nRepresents a specific instance of time.\r\n\r\n#### func (*Time) Set\r\n\r\n```go\r\nfunc (me *Time) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Time) String\r\n\r\n```go\r\nfunc (me Time) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type ToXsdtAnySimpleType\r\n\r\n```go\r\ntype ToXsdtAnySimpleType interface {\r\n\tToXsdtAnySimpleType() AnySimpleType\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to AnySimpleType.\r\n\r\n#### type ToXsdtAnyType\r\n\r\n```go\r\ntype ToXsdtAnyType interface {\r\n\tToXsdtAnyType() AnyType\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to AnyType.\r\n\r\n#### type ToXsdtAnyURI\r\n\r\n```go\r\ntype ToXsdtAnyURI interface {\r\n\tToXsdtAnyURI() AnyURI\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to AnyURI.\r\n\r\n#### type ToXsdtBase64Binary\r\n\r\n```go\r\ntype ToXsdtBase64Binary interface {\r\n\tToXsdtBase64Binary() Base64Binary\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Base64Binary.\r\n\r\n#### type ToXsdtBoolean\r\n\r\n```go\r\ntype ToXsdtBoolean interface {\r\n\tToXsdtBoolean() Boolean\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Boolean.\r\n\r\n#### type ToXsdtByte\r\n\r\n```go\r\ntype ToXsdtByte interface {\r\n\tToXsdtByte() Byte\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Byte.\r\n\r\n#### type ToXsdtDate\r\n\r\n```go\r\ntype ToXsdtDate interface {\r\n\tToXsdtDate() Date\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Date.\r\n\r\n#### type ToXsdtDateTime\r\n\r\n```go\r\ntype ToXsdtDateTime interface {\r\n\tToXsdtDateTime() DateTime\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to DateTime.\r\n\r\n#### type ToXsdtDecimal\r\n\r\n```go\r\ntype ToXsdtDecimal interface {\r\n\tToXsdtDecimal() Decimal\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Decimal.\r\n\r\n#### type ToXsdtDouble\r\n\r\n```go\r\ntype ToXsdtDouble interface {\r\n\tToXsdtDouble() Double\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Double.\r\n\r\n#### type ToXsdtDuration\r\n\r\n```go\r\ntype ToXsdtDuration interface {\r\n\tToXsdtDuration() Duration\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Duration.\r\n\r\n#### type ToXsdtEntities\r\n\r\n```go\r\ntype ToXsdtEntities interface {\r\n\tToXsdtEntities() Entities\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Entities.\r\n\r\n#### type ToXsdtEntity\r\n\r\n```go\r\ntype ToXsdtEntity interface {\r\n\tToXsdtEntity() Entity\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Entity.\r\n\r\n#### type ToXsdtFloat\r\n\r\n```go\r\ntype ToXsdtFloat interface {\r\n\tToXsdtFloat() Float\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Float.\r\n\r\n#### type ToXsdtGDay\r\n\r\n```go\r\ntype ToXsdtGDay interface {\r\n\tToXsdtGDay() GDay\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to GDay.\r\n\r\n#### type ToXsdtGMonth\r\n\r\n```go\r\ntype ToXsdtGMonth interface {\r\n\tToXsdtGMonth() GMonth\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to GMonth.\r\n\r\n#### type ToXsdtGMonthDay\r\n\r\n```go\r\ntype ToXsdtGMonthDay interface {\r\n\tToXsdtGMonthDay() GMonthDay\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to GMonthDay.\r\n\r\n#### type ToXsdtGYear\r\n\r\n```go\r\ntype ToXsdtGYear interface {\r\n\tToXsdtGYear() GYear\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to GYear.\r\n\r\n#### type ToXsdtGYearMonth\r\n\r\n```go\r\ntype ToXsdtGYearMonth interface {\r\n\tToXsdtGYearMonth() GYearMonth\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to GYearMonth.\r\n\r\n#### type ToXsdtHexBinary\r\n\r\n```go\r\ntype ToXsdtHexBinary interface {\r\n\tToXsdtHexBinary() HexBinary\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to HexBinary.\r\n\r\n#### type ToXsdtId\r\n\r\n```go\r\ntype ToXsdtId interface {\r\n\tToXsdtId() Id\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Id.\r\n\r\n#### type ToXsdtIdref\r\n\r\n```go\r\ntype ToXsdtIdref interface {\r\n\tToXsdtIdref() Idref\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Idref.\r\n\r\n#### type ToXsdtIdrefs\r\n\r\n```go\r\ntype ToXsdtIdrefs interface {\r\n\tToXsdtIdrefs() Idrefs\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Idrefs.\r\n\r\n#### type ToXsdtInt\r\n\r\n```go\r\ntype ToXsdtInt interface {\r\n\tToXsdtInt() Int\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Int.\r\n\r\n#### type ToXsdtInteger\r\n\r\n```go\r\ntype ToXsdtInteger interface {\r\n\tToXsdtInteger() Integer\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Integer.\r\n\r\n#### type ToXsdtLanguage\r\n\r\n```go\r\ntype ToXsdtLanguage interface {\r\n\tToXsdtLanguage() Language\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Language.\r\n\r\n#### type ToXsdtLong\r\n\r\n```go\r\ntype ToXsdtLong interface {\r\n\tToXsdtLong() Long\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Long.\r\n\r\n#### type ToXsdtNCName\r\n\r\n```go\r\ntype ToXsdtNCName interface {\r\n\tToXsdtNCName() NCName\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to NCName.\r\n\r\n#### type ToXsdtName\r\n\r\n```go\r\ntype ToXsdtName interface {\r\n\tToXsdtName() Name\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Name.\r\n\r\n#### type ToXsdtNegativeInteger\r\n\r\n```go\r\ntype ToXsdtNegativeInteger interface {\r\n\tToXsdtNegativeInteger() NegativeInteger\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to NegativeInteger.\r\n\r\n#### type ToXsdtNmtoken\r\n\r\n```go\r\ntype ToXsdtNmtoken interface {\r\n\tToXsdtNmtoken() Nmtoken\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Nmtoken.\r\n\r\n#### type ToXsdtNmtokens\r\n\r\n```go\r\ntype ToXsdtNmtokens interface {\r\n\tToXsdtNmtokens() Nmtokens\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Nmtokens.\r\n\r\n#### type ToXsdtNonNegativeInteger\r\n\r\n```go\r\ntype ToXsdtNonNegativeInteger interface {\r\n\tToXsdtNonNegativeInteger() NonNegativeInteger\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to NonNegativeInteger.\r\n\r\n#### type ToXsdtNonPositiveInteger\r\n\r\n```go\r\ntype ToXsdtNonPositiveInteger interface {\r\n\tToXsdtNonPositiveInteger() NonPositiveInteger\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to NonPositiveInteger.\r\n\r\n#### type ToXsdtNormalizedString\r\n\r\n```go\r\ntype ToXsdtNormalizedString interface {\r\n\tToXsdtNormalizedS() NormalizedString\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to NormalizedString.\r\n\r\n#### type ToXsdtNotation\r\n\r\n```go\r\ntype ToXsdtNotation interface {\r\n\tToXsdtNotation() Notation\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Notation.\r\n\r\n#### type ToXsdtPositiveInteger\r\n\r\n```go\r\ntype ToXsdtPositiveInteger interface {\r\n\tToXsdtPositiveInteger() PositiveInteger\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to PositiveInteger.\r\n\r\n#### type ToXsdtQname\r\n\r\n```go\r\ntype ToXsdtQname interface {\r\n\tToXsdtQname() Qname\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Qname.\r\n\r\n#### type ToXsdtShort\r\n\r\n```go\r\ntype ToXsdtShort interface {\r\n\tToXsdtShort() Short\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Short.\r\n\r\n#### type ToXsdtString\r\n\r\n```go\r\ntype ToXsdtString interface {\r\n\tToXsdtString() String\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to String.\r\n\r\n#### type ToXsdtTime\r\n\r\n```go\r\ntype ToXsdtTime interface {\r\n\tToXsdtTime() Time\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Time.\r\n\r\n#### type ToXsdtToken\r\n\r\n```go\r\ntype ToXsdtToken interface {\r\n\tToXsdtToken() Token\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to Token.\r\n\r\n#### type ToXsdtUnsignedByte\r\n\r\n```go\r\ntype ToXsdtUnsignedByte interface {\r\n\tToXsdtUnsignedByte() UnsignedByte\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to UnsignedByte.\r\n\r\n#### type ToXsdtUnsignedInt\r\n\r\n```go\r\ntype ToXsdtUnsignedInt interface {\r\n\tToXsdtUnsignedInt() UnsignedInt\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to UnsignedInt.\r\n\r\n#### type ToXsdtUnsignedLong\r\n\r\n```go\r\ntype ToXsdtUnsignedLong interface {\r\n\tToXsdtUnsignedLong() UnsignedLong\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to UnsignedLong.\r\n\r\n#### type ToXsdtUnsignedShort\r\n\r\n```go\r\ntype ToXsdtUnsignedShort interface {\r\n\tToXsdtUnsignedShort() UnsignedShort\r\n}\r\n```\r\n\r\nA convenience interface that declares a type conversion to UnsignedShort.\r\n\r\n#### type Token\r\n\r\n```go\r\ntype Token NormalizedString\r\n```\r\n\r\nRepresents tokenized strings.\r\n\r\n#### func (*Token) Set\r\n\r\n```go\r\nfunc (me *Token) Set(v string)\r\n```\r\nSince this is just a simple String type, this merely sets the current value from\r\nthe specified string.\r\n\r\n#### func (Token) String\r\n\r\n```go\r\nfunc (me Token) String() string\r\n```\r\nSince this is just a simple String type, this merely returns its current string\r\nvalue.\r\n\r\n#### type UnsignedByte\r\n\r\n```go\r\ntype UnsignedByte uint8\r\n```\r\n\r\nRepresents an integer with a minimum of zero and maximum of 255.\r\n\r\n#### func (UnsignedByte) N\r\n\r\n```go\r\nfunc (me UnsignedByte) N() uint8\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*UnsignedByte) Set\r\n\r\n```go\r\nfunc (me *UnsignedByte) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (UnsignedByte) String\r\n\r\n```go\r\nfunc (me UnsignedByte) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type UnsignedInt\r\n\r\n```go\r\ntype UnsignedInt uint32\r\n```\r\n\r\nRepresents an integer with a minimum of zero and maximum of 4294967295.\r\n\r\n#### func (UnsignedInt) N\r\n\r\n```go\r\nfunc (me UnsignedInt) N() uint32\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*UnsignedInt) Set\r\n\r\n```go\r\nfunc (me *UnsignedInt) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (UnsignedInt) String\r\n\r\n```go\r\nfunc (me UnsignedInt) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type UnsignedLong\r\n\r\n```go\r\ntype UnsignedLong uint64\r\n```\r\n\r\nRepresents an integer with a minimum of zero and maximum of\r\n18446744073709551615.\r\n\r\n#### func (UnsignedLong) N\r\n\r\n```go\r\nfunc (me UnsignedLong) N() uint64\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*UnsignedLong) Set\r\n\r\n```go\r\nfunc (me *UnsignedLong) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (UnsignedLong) String\r\n\r\n```go\r\nfunc (me UnsignedLong) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n#### type UnsignedShort\r\n\r\n```go\r\ntype UnsignedShort uint16\r\n```\r\n\r\nRepresents an integer with a minimum of zero and maximum of 65535.\r\n\r\n#### func (UnsignedShort) N\r\n\r\n```go\r\nfunc (me UnsignedShort) N() uint16\r\n```\r\nBecause littering your code with type conversions is a hassle...\r\n\r\n#### func (*UnsignedShort) Set\r\n\r\n```go\r\nfunc (me *UnsignedShort) Set(s string)\r\n```\r\nSince this is a non-string scalar type, sets its current value obtained from\r\nparsing the specified string.\r\n\r\n#### func (UnsignedShort) String\r\n\r\n```go\r\nfunc (me UnsignedShort) String() string\r\n```\r\nReturns a string representation of its current non-string scalar value.\r\n\r\n--\r\n**godocdown** http://github.com/robertkrimen/godocdown\r\n"
  },
  {
    "path": "types/doc.go",
    "content": "//\tA tiny package imported by all \"go-xsd\"-generated packages.\r\n//\t\r\n//\tMaps all XSD built-in simple-types to Go types, which affords us easy mapping of any XSD type references in the schema to Go imports: every xs:string and xs:boolean automatically becomes xsdt.String and xsdt.Boolean etc.\r\n//\tTypes are mapped to Go types depending on how encoding/xml.Unmarshal() can handle them: ie. it parses bools and numbers, but dates/durations have too many format mismatches and thus are just declared string types.\r\n//\tSame for base64- and hex-encoded binary data: since Unmarshal() won't decode them, we leave them as strings. If you need their binary data, your code needs to import Go's base64/hex codec packages and use them as necessary.\r\npackage xsdt\r\n"
  },
  {
    "path": "types/xsdtypes.go",
    "content": "package xsdt\r\n\r\nimport (\r\n\t\"strconv\"\r\n)\r\n\r\ntype notation struct {\r\n\tId, Name, Public, System string\r\n}\r\n\r\ntype Notations map[string]*notation\r\n\r\nfunc (me Notations) Add(id, name, public, system string) {\r\n\tme[name] = &notation{Id: id, Name: name, Public: public, System: system}\r\n}\r\n\r\n//\tIn XSD, the type xsd:anySimpleType is the base type from which all other built-in types are derived.\r\ntype AnySimpleType string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *AnySimpleType) Set(v string) {\r\n\t*me = AnySimpleType(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me AnySimpleType) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to AnySimpleType.\r\ntype ToXsdtAnySimpleType interface {\r\n\tToXsdtAnySimpleType() AnySimpleType\r\n}\r\n\r\n//\tIn XSD, represents any simple or complex type. In Go, we hope no one schema ever uses it.\r\ntype AnyType string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *AnyType) Set(v string) {\r\n\t*me = AnyType(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me AnyType) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to AnyType.\r\ntype ToXsdtAnyType interface {\r\n\tToXsdtAnyType() AnyType\r\n}\r\n\r\n//\tRepresents a URI as defined by RFC 2396. An anyURI value can be absolute or relative, and may have an optional fragment identifier.\r\ntype AnyURI string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *AnyURI) Set(v string) {\r\n\t*me = AnyURI(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me AnyURI) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to AnyURI.\r\ntype ToXsdtAnyURI interface {\r\n\tToXsdtAnyURI() AnyURI\r\n}\r\n\r\n//\tRepresents Base64-encoded arbitrary binary data. A base64Binary is the set of finite-length sequences of binary octets.\r\ntype Base64Binary string // []byte\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Base64Binary) Set(v string) {\r\n\t*me = Base64Binary(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Base64Binary) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Base64Binary.\r\ntype ToXsdtBase64Binary interface {\r\n\tToXsdtBase64Binary() Base64Binary\r\n}\r\n\r\n//\tRepresents Boolean values, which are either true or false.\r\ntype Boolean bool\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me Boolean) B() bool {\r\n\treturn bool(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *Boolean) Set(v string) {\r\n\t//\tmost schemas use true and false but sadly, a very few rare ones *do* use \"0\" and \"1\"...\r\n\tswitch v {\r\n\tcase \"0\":\r\n\t\t*me = false\r\n\tcase \"1\":\r\n\t\t*me = true\r\n\tdefault:\r\n\t\tb, _ := strconv.ParseBool(v)\r\n\t\t*me = Boolean(b)\r\n\t}\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me Boolean) String() string {\r\n\treturn strconv.FormatBool(bool(me))\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Boolean.\r\ntype ToXsdtBoolean interface {\r\n\tToXsdtBoolean() Boolean\r\n}\r\n\r\n//\tRepresents an integer with a minimum value of -128 and maximum of 127.\r\ntype Byte int8\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me Byte) N() int8 {\r\n\treturn int8(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *Byte) Set(s string) {\r\n\tv, _ := strconv.ParseInt(s, 0, 8)\r\n\t*me = Byte(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me Byte) String() string {\r\n\treturn strconv.FormatInt(int64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Byte.\r\ntype ToXsdtByte interface {\r\n\tToXsdtByte() Byte\r\n}\r\n\r\n//\tRepresents a calendar date.\r\n//\tThe pattern for date is CCYY-MM-DD with optional time zone indicator as allowed for dateTime.\r\ntype Date string // time.Time\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Date) Set(v string) {\r\n\t*me = Date(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Date) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Date.\r\ntype ToXsdtDate interface {\r\n\tToXsdtDate() Date\r\n}\r\n\r\n//\tRepresents a specific instance of time.\r\ntype DateTime string // time.Time\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *DateTime) Set(v string) {\r\n\t*me = DateTime(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me DateTime) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to DateTime.\r\ntype ToXsdtDateTime interface {\r\n\tToXsdtDateTime() DateTime\r\n}\r\n\r\n//\tRepresents a specific instance of time.\r\ntype Time string // time.Time\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Time) Set(v string) {\r\n\t*me = Time(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Time) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Time.\r\ntype ToXsdtTime interface {\r\n\tToXsdtTime() Time\r\n}\r\n\r\n//\tRepresents arbitrary precision numbers.\r\ntype Decimal string // complex128\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Decimal) Set(v string) {\r\n\t*me = Decimal(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Decimal) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Decimal.\r\ntype ToXsdtDecimal interface {\r\n\tToXsdtDecimal() Decimal\r\n}\r\n\r\n//\tRepresents double-precision 64-bit floating-point numbers.\r\ntype Double float64\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me Double) N() float64 {\r\n\treturn float64(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *Double) Set(s string) {\r\n\tv, _ := strconv.ParseFloat(s, 64)\r\n\t*me = Double(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me Double) String() string {\r\n\treturn strconv.FormatFloat(float64(me), 'f', 8, 64)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Double.\r\ntype ToXsdtDouble interface {\r\n\tToXsdtDouble() Double\r\n}\r\n\r\n//\tRepresents a duration of time.\r\ntype Duration string // time.Duration\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Duration) Set(v string) {\r\n\t*me = Duration(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Duration) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Duration.\r\ntype ToXsdtDuration interface {\r\n\tToXsdtDuration() Duration\r\n}\r\n\r\n//\tRepresents the ENTITIES attribute type. Contains a set of values of type ENTITY.\r\ntype Entities string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Entities) Set(v string) {\r\n\t*me = Entities(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Entities) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tThis type declares a String containing a whitespace-separated list of values. This Values() method creates and returns a slice of all elements in that list.\r\nfunc (me Entities) Values() (list []Entity) {\r\n\tspl := ListValues(string(me))\r\n\tlist = make([]Entity, len(spl))\r\n\tfor i, s := range spl {\r\n\t\tlist[i].Set(s)\r\n\t}\r\n\treturn\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Entities.\r\ntype ToXsdtEntities interface {\r\n\tToXsdtEntities() Entities\r\n}\r\n\r\n//\tThis is a reference to an unparsed entity with a name that matches the specified name.\r\ntype Entity NCName\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Entity) Set(v string) {\r\n\t*me = Entity(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Entity) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Entity.\r\ntype ToXsdtEntity interface {\r\n\tToXsdtEntity() Entity\r\n}\r\n\r\n//\tRepresents single-precision 32-bit floating-point numbers.\r\ntype Float float32\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me Float) N() float32 {\r\n\treturn float32(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *Float) Set(s string) {\r\n\tv, _ := strconv.ParseFloat(s, 32)\r\n\t*me = Float(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me Float) String() string {\r\n\treturn strconv.FormatFloat(float64(me), 'f', 8, 32)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Float.\r\ntype ToXsdtFloat interface {\r\n\tToXsdtFloat() Float\r\n}\r\n\r\n//\tRepresents a Gregorian day that recurs, specifically a day of the month such as the fifth day of the month. A gDay is the space of a set of calendar dates. Specifically, it is a set of one-day long, monthly periodic instances.\r\ntype GDay string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *GDay) Set(v string) {\r\n\t*me = GDay(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me GDay) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to GDay.\r\ntype ToXsdtGDay interface {\r\n\tToXsdtGDay() GDay\r\n}\r\n\r\n//\tRepresents a Gregorian month that recurs every year. A gMonth is the space of a set of calendar months. Specifically, it is a set of one-month long, yearly periodic instances.\r\ntype GMonth string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *GMonth) Set(v string) {\r\n\t*me = GMonth(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me GMonth) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to GMonth.\r\ntype ToXsdtGMonth interface {\r\n\tToXsdtGMonth() GMonth\r\n}\r\n\r\n//\tRepresents a specific Gregorian date that recurs, specifically a day of the year such as the third of May. A gMonthDay is the set of calendar dates. Specifically, it is a set of one-day long, annually periodic instances.\r\ntype GMonthDay string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *GMonthDay) Set(v string) {\r\n\t*me = GMonthDay(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me GMonthDay) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to GMonthDay.\r\ntype ToXsdtGMonthDay interface {\r\n\tToXsdtGMonthDay() GMonthDay\r\n}\r\n\r\n//\tRepresents a Gregorian year. A set of one-year long, nonperiodic instances.\r\ntype GYear string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *GYear) Set(v string) {\r\n\t*me = GYear(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me GYear) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to GYear.\r\ntype ToXsdtGYear interface {\r\n\tToXsdtGYear() GYear\r\n}\r\n\r\n//\tRepresents a specific Gregorian month in a specific Gregorian year. A set of one-month long, nonperiodic instances.\r\ntype GYearMonth string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *GYearMonth) Set(v string) {\r\n\t*me = GYearMonth(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me GYearMonth) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to GYearMonth.\r\ntype ToXsdtGYearMonth interface {\r\n\tToXsdtGYearMonth() GYearMonth\r\n}\r\n\r\n//\tRepresents arbitrary hex-encoded binary data. A hexBinary is the set of finite-length sequences of binary octets. Each binary octet is encoded as a character tuple, consisting of two hexadecimal digits ([0-9a-fA-F]) representing the octet code.\r\ntype HexBinary string // []byte\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *HexBinary) Set(v string) {\r\n\t*me = HexBinary(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me HexBinary) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to HexBinary.\r\ntype ToXsdtHexBinary interface {\r\n\tToXsdtHexBinary() HexBinary\r\n}\r\n\r\n//\tThe ID must be a no-colon-name (NCName) and must be unique within an XML document.\r\ntype Id NCName\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Id) Set(v string) {\r\n\t*me = Id(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Id) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Id.\r\ntype ToXsdtId interface {\r\n\tToXsdtId() Id\r\n}\r\n\r\n//\tRepresents a reference to an element that has an ID attribute that matches the specified ID. An IDREF must be an NCName and must be a value of an element or attribute of type ID within the XML document.\r\ntype Idref NCName\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Idref) Set(v string) {\r\n\t*me = Idref(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Idref) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Idref.\r\ntype ToXsdtIdref interface {\r\n\tToXsdtIdref() Idref\r\n}\r\n\r\n//\tContains a set of values of type IDREF.\r\ntype Idrefs string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Idrefs) Set(v string) {\r\n\t*me = Idrefs(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Idrefs) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tThis type declares a String containing a whitespace-separated list of values. This Values() method creates and returns a slice of all elements in that list.\r\nfunc (me Idrefs) Values() (list []Idref) {\r\n\tspl := ListValues(string(me))\r\n\tlist = make([]Idref, len(spl))\r\n\tfor i, s := range spl {\r\n\t\tlist[i].Set(s)\r\n\t}\r\n\treturn\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Idrefs.\r\ntype ToXsdtIdrefs interface {\r\n\tToXsdtIdrefs() Idrefs\r\n}\r\n\r\n//\tRepresents an integer with a minimum value of -2147483648 and maximum of 2147483647.\r\ntype Int int32\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me Int) N() int32 {\r\n\treturn int32(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *Int) Set(s string) {\r\n\tv, _ := strconv.ParseInt(s, 0, 32)\r\n\t*me = Int(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me Int) String() string {\r\n\treturn strconv.FormatInt(int64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Int.\r\ntype ToXsdtInt interface {\r\n\tToXsdtInt() Int\r\n}\r\n\r\n//\tRepresents a sequence of decimal digits with an optional leading sign (+ or -). \r\ntype Integer int64\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me Integer) N() int64 {\r\n\treturn int64(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *Integer) Set(s string) {\r\n\tv, _ := strconv.ParseInt(s, 0, 64)\r\n\t*me = Integer(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me Integer) String() string {\r\n\treturn strconv.FormatInt(int64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Integer.\r\ntype ToXsdtInteger interface {\r\n\tToXsdtInteger() Integer\r\n}\r\n\r\n//\tRepresents natural language identifiers (defined by RFC 1766).\r\ntype Language Token\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Language) Set(v string) {\r\n\t*me = Language(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Language) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Language.\r\ntype ToXsdtLanguage interface {\r\n\tToXsdtLanguage() Language\r\n}\r\n\r\n//\tRepresents an integer with a minimum value of -9223372036854775808 and maximum of 9223372036854775807.\r\ntype Long int64\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me Long) N() int64 {\r\n\treturn int64(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *Long) Set(s string) {\r\n\tv, _ := strconv.ParseInt(s, 0, 64)\r\n\t*me = Long(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me Long) String() string {\r\n\treturn strconv.FormatInt(int64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Long.\r\ntype ToXsdtLong interface {\r\n\tToXsdtLong() Long\r\n}\r\n\r\n//\tRepresents names in XML. A Name is a token that begins with a letter, underscore, or colon and continues with name characters (letters, digits, and other characters).\r\ntype Name Token\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Name) Set(v string) {\r\n\t*me = Name(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Name) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Name.\r\ntype ToXsdtName interface {\r\n\tToXsdtName() Name\r\n}\r\n\r\n//\tRepresents noncolonized names. This data type is the same as Name, except it cannot begin with a colon.\r\ntype NCName Name\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *NCName) Set(v string) {\r\n\t*me = NCName(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me NCName) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to NCName.\r\ntype ToXsdtNCName interface {\r\n\tToXsdtNCName() NCName\r\n}\r\n\r\n//\tRepresents an integer that is less than zero. Consists of a negative sign (-) and sequence of decimal digits.\r\ntype NegativeInteger int64\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me NegativeInteger) N() int64 {\r\n\treturn int64(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *NegativeInteger) Set(s string) {\r\n\tv, _ := strconv.ParseInt(s, 0, 64)\r\n\t*me = NegativeInteger(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me NegativeInteger) String() string {\r\n\treturn strconv.FormatInt(int64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to NegativeInteger.\r\ntype ToXsdtNegativeInteger interface {\r\n\tToXsdtNegativeInteger() NegativeInteger\r\n}\r\n\r\n//\tAn NMTOKEN is set of name characters (letters, digits, and other characters) in any combination. Unlike Name and NCName, NMTOKEN has no restrictions on the starting character.\r\ntype Nmtoken Token\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Nmtoken) Set(v string) {\r\n\t*me = Nmtoken(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Nmtoken) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Nmtoken.\r\ntype ToXsdtNmtoken interface {\r\n\tToXsdtNmtoken() Nmtoken\r\n}\r\n\r\n//\tContains a set of values of type NMTOKEN.\r\ntype Nmtokens string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Nmtokens) Set(v string) {\r\n\t*me = Nmtokens(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Nmtokens) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tThis type declares a String containing a whitespace-separated list of values. This Values() method creates and returns a slice of all elements in that list.\r\nfunc (me Nmtokens) Values() (list []Nmtoken) {\r\n\tspl := ListValues(string(me))\r\n\tlist = make([]Nmtoken, len(spl))\r\n\tfor i, s := range spl {\r\n\t\tlist[i].Set(s)\r\n\t}\r\n\treturn\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Nmtokens.\r\ntype ToXsdtNmtokens interface {\r\n\tToXsdtNmtokens() Nmtokens\r\n}\r\n\r\n//\tRepresents an integer that is greater than or equal to zero.\r\ntype NonNegativeInteger uint64\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me NonNegativeInteger) N() uint64 {\r\n\treturn uint64(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *NonNegativeInteger) Set(s string) {\r\n\tv, _ := strconv.ParseUint(s, 0, 64)\r\n\t*me = NonNegativeInteger(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me NonNegativeInteger) String() string {\r\n\treturn strconv.FormatUint(uint64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to NonNegativeInteger.\r\ntype ToXsdtNonNegativeInteger interface {\r\n\tToXsdtNonNegativeInteger() NonNegativeInteger\r\n}\r\n\r\n//\tRepresents an integer that is less than or equal to zero. A nonPositiveIntegerconsists of a negative sign (-) and sequence of decimal digits.\r\ntype NonPositiveInteger int64\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me NonPositiveInteger) N() int64 {\r\n\treturn int64(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *NonPositiveInteger) Set(s string) {\r\n\tv, _ := strconv.ParseInt(s, 0, 64)\r\n\t*me = NonPositiveInteger(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me NonPositiveInteger) String() string {\r\n\treturn strconv.FormatInt(int64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to NonPositiveInteger.\r\ntype ToXsdtNonPositiveInteger interface {\r\n\tToXsdtNonPositiveInteger() NonPositiveInteger\r\n}\r\n\r\n//\tRepresents white space normalized strings.\r\ntype NormalizedString String\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *NormalizedString) Set(v string) {\r\n\t*me = NormalizedString(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me NormalizedString) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to NormalizedString.\r\ntype ToXsdtNormalizedString interface {\r\n\tToXsdtNormalizedS() NormalizedString\r\n}\r\n\r\n//\tA set of QNames.\r\ntype Notation string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Notation) Set(v string) {\r\n\t*me = Notation(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Notation) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tThis type declares a String containing a whitespace-separated list of values. This Values() method creates and returns a slice of all elements in that list.\r\nfunc (me Notation) Values() (list []Qname) {\r\n\tspl := ListValues(string(me))\r\n\tlist = make([]Qname, len(spl))\r\n\tfor i, s := range spl {\r\n\t\tlist[i].Set(s)\r\n\t}\r\n\treturn\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Notation.\r\ntype ToXsdtNotation interface {\r\n\tToXsdtNotation() Notation\r\n}\r\n\r\n//\tRepresents an integer that is greater than zero.\r\ntype PositiveInteger uint64\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me PositiveInteger) N() uint64 {\r\n\treturn uint64(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *PositiveInteger) Set(s string) {\r\n\tv, _ := strconv.ParseUint(s, 0, 64)\r\n\t*me = PositiveInteger(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me PositiveInteger) String() string {\r\n\treturn strconv.FormatUint(uint64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to PositiveInteger.\r\ntype ToXsdtPositiveInteger interface {\r\n\tToXsdtPositiveInteger() PositiveInteger\r\n}\r\n\r\n//\tRepresents a qualified name. A qualified name is composed of a prefix and a local name separated by a colon. Both the prefix and local names must be an NCName. The prefix must be associated with a namespace URI reference, using a namespace declaration.\r\ntype Qname string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Qname) Set(v string) {\r\n\t*me = Qname(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Qname) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Qname.\r\ntype ToXsdtQname interface {\r\n\tToXsdtQname() Qname\r\n}\r\n\r\n//\tRepresents an integer with a minimum value of -32768 and maximum of 32767.\r\ntype Short int16\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me Short) N() int16 {\r\n\treturn int16(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *Short) Set(s string) {\r\n\tv, _ := strconv.ParseInt(s, 0, 16)\r\n\t*me = Short(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me Short) String() string {\r\n\treturn strconv.FormatInt(int64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Short.\r\ntype ToXsdtShort interface {\r\n\tToXsdtShort() Short\r\n}\r\n\r\n//\tRepresents character strings.\r\ntype String string\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *String) Set(v string) {\r\n\t*me = String(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me String) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to String.\r\ntype ToXsdtString interface {\r\n\tToXsdtString() String\r\n}\r\n\r\n//\tRepresents tokenized strings.\r\ntype Token NormalizedString\r\n\r\n//\tSince this is just a simple String type, this merely sets the current value from the specified string.\r\nfunc (me *Token) Set(v string) {\r\n\t*me = Token(v)\r\n}\r\n\r\n//\tSince this is just a simple String type, this merely returns its current string value.\r\nfunc (me Token) String() string {\r\n\treturn string(me)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to Token.\r\ntype ToXsdtToken interface {\r\n\tToXsdtToken() Token\r\n}\r\n\r\n//\tRepresents an integer with a minimum of zero and maximum of 255.\r\ntype UnsignedByte uint8\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me UnsignedByte) N() uint8 {\r\n\treturn uint8(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *UnsignedByte) Set(s string) {\r\n\tv, _ := strconv.ParseUint(s, 0, 8)\r\n\t*me = UnsignedByte(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me UnsignedByte) String() string {\r\n\treturn strconv.FormatUint(uint64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to UnsignedByte.\r\ntype ToXsdtUnsignedByte interface {\r\n\tToXsdtUnsignedByte() UnsignedByte\r\n}\r\n\r\n//\tRepresents an integer with a minimum of zero and maximum of 4294967295.\r\ntype UnsignedInt uint32\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me UnsignedInt) N() uint32 {\r\n\treturn uint32(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *UnsignedInt) Set(s string) {\r\n\tv, _ := strconv.ParseUint(s, 0, 32)\r\n\t*me = UnsignedInt(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me UnsignedInt) String() string {\r\n\treturn strconv.FormatUint(uint64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to UnsignedInt.\r\ntype ToXsdtUnsignedInt interface {\r\n\tToXsdtUnsignedInt() UnsignedInt\r\n}\r\n\r\n//\tRepresents an integer with a minimum of zero and maximum of 18446744073709551615.\r\ntype UnsignedLong uint64\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me UnsignedLong) N() uint64 {\r\n\treturn uint64(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *UnsignedLong) Set(s string) {\r\n\tv, _ := strconv.ParseUint(s, 0, 64)\r\n\t*me = UnsignedLong(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me UnsignedLong) String() string {\r\n\treturn strconv.FormatUint(uint64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to UnsignedLong.\r\ntype ToXsdtUnsignedLong interface {\r\n\tToXsdtUnsignedLong() UnsignedLong\r\n}\r\n\r\n//\tRepresents an integer with a minimum of zero and maximum of 65535.\r\ntype UnsignedShort uint16\r\n\r\n//\tBecause littering your code with type conversions is a hassle...\r\nfunc (me UnsignedShort) N() uint16 {\r\n\treturn uint16(me)\r\n}\r\n\r\n//\tSince this is a non-string scalar type, sets its current value obtained from parsing the specified string.\r\nfunc (me *UnsignedShort) Set(s string) {\r\n\tv, _ := strconv.ParseUint(s, 0, 16)\r\n\t*me = UnsignedShort(v)\r\n}\r\n\r\n//\tReturns a string representation of its current non-string scalar value.\r\nfunc (me UnsignedShort) String() string {\r\n\treturn strconv.FormatUint(uint64(me), 10)\r\n}\r\n\r\n//\tA convenience interface that declares a type conversion to UnsignedShort.\r\ntype ToXsdtUnsignedShort interface {\r\n\tToXsdtUnsignedShort() UnsignedShort\r\n}\r\n\r\n// XSD \"list\" types are always space-separated strings. All generated Go types based on any XSD's list types get a Values() method, which will always resort to this function.\r\nfunc ListValues(v string) (spl []string) {\r\n\tif len(v) == 0 {\r\n\t\treturn\r\n\t}\r\n\tlastWs := true\r\n\twsr := func(r rune) bool {\r\n\t\treturn (r == ' ') || (r == '\\r') || (r == '\\n') || (r == '\\t')\r\n\t}\r\n\twss := func(r string) bool {\r\n\t\treturn (r == \" \") || (r == \"\\r\") || (r == \"\\n\") || (r == \"\\t\")\r\n\t}\r\n\tfor wss(v[len(v)-1:]) {\r\n\t\tv = v[:len(v)-1]\r\n\t}\r\n\tfor wss(v[:1]) {\r\n\t\tv = v[1:]\r\n\t}\r\n\tif len(v) > 0 {\r\n\t\tcur, num, i := \"\", 1, 0\r\n\t\tfor _, r := range v {\r\n\t\t\tif wsr(r) {\r\n\t\t\t\tif !lastWs {\r\n\t\t\t\t\tnum++\r\n\t\t\t\t\tlastWs = true\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\tlastWs = false\r\n\t\t\t}\r\n\t\t}\r\n\t\tlastWs, spl = true, make([]string, num)\r\n\t\tfor _, r := range v {\r\n\t\t\tif wsr(r) {\r\n\t\t\t\tif !lastWs {\r\n\t\t\t\t\tif len(cur) > 0 {\r\n\t\t\t\t\t\tspl[i] = cur\r\n\t\t\t\t\t\ti++\r\n\t\t\t\t\t}\r\n\t\t\t\t\tcur, lastWs = \"\", true\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\tlastWs = false\r\n\t\t\t\tcur += string(r)\r\n\t\t\t}\r\n\t\t}\r\n\t\tif len(cur) > 0 {\r\n\t\t\tspl[i] = cur\r\n\t\t}\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc ListValuesBoolean(vals []Boolean) (sl []bool) {\r\n\tsl = make([]bool, len(vals))\r\n\tfor i, b := range vals {\r\n\t\tsl[i] = b.B()\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc ListValuesDouble(vals []Double) (sl []float64) {\r\n\tsl = make([]float64, len(vals))\r\n\tfor i, d := range vals {\r\n\t\tsl[i] = d.N()\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc ListValuesLong(vals []Long) (sl []int64) {\r\n\tsl = make([]int64, len(vals))\r\n\tfor i, l := range vals {\r\n\t\tsl[i] = l.N()\r\n\t}\r\n\treturn\r\n}\r\n\r\n//\tA helper function for the Walk() functionality of generated wrapper packages.\r\nfunc OnWalkError(err *error, slice *[]error, breakWalk bool, handler func(error)) (ret bool) {\r\n\tif e := *err; e != nil {\r\n\t\t*slice = append(*slice, e)\r\n\t\tret = breakWalk\r\n\t\tif handler != nil {\r\n\t\t\thandler(e)\r\n\t\t}\r\n\t}\r\n\t*err = nil\r\n\treturn\r\n}\r\n"
  },
  {
    "path": "xsd-makepkg/main.go",
    "content": "package main\r\n\r\nimport (\r\n\t\"flag\"\r\n\t\"log\"\r\n\t\"os/exec\"\r\n\t\"strings\"\r\n\r\n\t\"github.com/metaleap/go-util/dev/go\"\r\n\r\n\txsd \"github.com/metaleap/go-xsd\"\r\n)\r\n\r\nvar (\r\n\tflagGoFmt      = flag.Bool(\"gofmt\", true, \"Run 'gofmt' against the generated Go wrapper package?\")\r\n\tflagGoInst     = flag.Bool(\"goinst\", true, \"Run 'go-buildrun' against the generated Go wrapper package?\")\r\n\tflagSchema     = flag.String(\"uri\", \"\", \"The XML Schema Definition file URIs to generate a Go wrapper packages from, whitespace-separated. (For each, the protocol prefix can be omitted, it then defaults to http://. Only protocols understood by the net/http package are supported.)\")\r\n\tflagLocalCopy  = flag.Bool(\"local\", true, \"Local copy: only downloads if file does not exist locally\")\r\n\tflagForceParse = flag.Bool(\"parse\", false, \"Not necessary unless the generated Go wrapper package won't compile.\")\r\n\tflagBasePath   = flag.String(\"basepath\", \"\", \"Defaults to \"+xsd.PkgGen.BasePath+\". A $GOPATH/src/-relative path (always a slash-style path, even on Windows) where XSD files are downloaded to / loaded from and generated Go wrapper packages are created. Any XSD imports are also rewritten as Go imports from that path (but are not otherwise auto-magically processed in any way).\")\r\n\r\n\t//\tif no schemas are specified in *flagSchema, we run the pkg-maker through a default series of various XSDs...\r\n\tschemas = []string{\r\n\t\t\"www.w3.org/2001/xml.xsd\",\r\n\t\t\"www.w3.org/2001/03/xml.xsd\",\r\n\t\t\"www.w3.org/TR/2002/WD-SVG11-20020108/xml.xsd\",\r\n\t\t\"www.w3.org/TR/2002/WD-SVG11-20020108/xlink.xsd\",\r\n\t\t\"www.w3.org/TR/2002/WD-SVG11-20020108/SVG.xsd\",\r\n\t\t\"www.w3.org/2007/schema-for-xslt20.xsd\",\r\n\t\t\"www.w3.org/Math/XMLSchema/mathml2/common/xlink-href.xsd\",\r\n\t\t\"www.w3.org/Math/XMLSchema/mathml2/mathml2.xsd\",\r\n\t\t\"docs.oasis-open.org/election/external/xAL.xsd\",\r\n\t\t\"docbook.org/xml/5.0/xsd/xml.xsd\",\r\n\t\t\"docbook.org/xml/5.0/xsd/xlink.xsd\",\r\n\t\t\"docbook.org/xml/5.0/xsd/docbook.xsd\",\r\n\t\t\"kbcafe.com/rss/atom.xsd.xml\",\r\n\t\t\"thearchitect.co.uk/schemas/rss-2_0.xsd\",\r\n\t\t\"schemas.opengis.net/kml/2.2.0/atom-author-link.xsd\",\r\n\t\t\"schemas.opengis.net/kml/2.2.0/ogckml22.xsd\",\r\n\t\t\"khronos.org/files/collada_schema_1_4\",\r\n\t\t\"khronos.org/files/collada_schema_1_5\",\r\n\t}\r\n)\r\n\r\nfunc main() {\r\n\tvar (\r\n\t\tsd          *xsd.Schema\r\n\t\terr         error\r\n\t\traw         []byte\r\n\t\toutFilePath string\r\n\t)\r\n\tflag.Parse()\r\n\tif len(*flagSchema) > 0 {\r\n\t\tschemas = strings.Split(*flagSchema, \" \")\r\n\t}\r\n\tif len(*flagBasePath) > 0 {\r\n\t\txsd.PkgGen.BasePath, xsd.PkgGen.BaseCodePath = *flagBasePath, udevgo.GopathSrc(strings.Split(*flagBasePath, \"/\")...)\r\n\t}\r\n\tfor _, s := range schemas {\r\n\t\tlog.Printf(\"LOAD:\\t%v\\n\", s)\r\n\t\tif sd, err = xsd.LoadSchema(s, *flagLocalCopy); err != nil {\r\n\t\t\tlog.Printf(\"\\tERROR: %v\\n\", err)\r\n\t\t} else if sd != nil {\r\n\t\t\txsd.PkgGen.ForceParseForDefaults = *flagForceParse || (s == \"schemas.opengis.net/kml/2.2.0/ogckml22.xsd\") // KML schema uses 0 and 1 as defaults for booleans...\r\n\t\t\tif outFilePath, err = sd.MakeGoPkgSrcFile(); err == nil {\r\n\t\t\t\tlog.Printf(\"MKPKG:\\t%v\\n\", outFilePath)\r\n\t\t\t\tif *flagGoFmt {\r\n\t\t\t\t\tif raw, err = exec.Command(\"gofmt\", \"-w=true\", \"-s=true\", \"-e=true\", outFilePath).CombinedOutput(); len(raw) > 0 {\r\n\t\t\t\t\t\tlog.Printf(\"GOFMT:\\t%s\\n\", string(raw))\r\n\t\t\t\t\t}\r\n\t\t\t\t\tif err != nil {\r\n\t\t\t\t\t\tlog.Printf(\"GOFMT:\\t%v\\n\", err)\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t\tif *flagGoInst {\r\n\t\t\t\t\tif raw, err = exec.Command(\"go-buildrun\", \"-d=__doc.html\", \"-f=\"+outFilePath).CombinedOutput(); len(raw) > 0 {\r\n\t\t\t\t\t\tprintln(string(raw))\r\n\t\t\t\t\t}\r\n\t\t\t\t\tif err != nil {\r\n\t\t\t\t\t\tlog.Printf(\"GOINST:\\t%v\\n\", err)\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\tlog.Printf(\"\\tERROR:\\t%v\\n\", err)\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n"
  },
  {
    "path": "xsd-makepkg/tests/README.md",
    "content": "# tests\r\n--\r\n    import \"github.com/metaleap/go-xsd/xsd-makepkg/tests\"\r\n\r\n\tA simple test function shared by the various test programs inside this directory (rss, atom, collada, svg etc.)\r\n\r\n## Usage\r\n\r\n```go\r\nvar (\r\n\tOnDocLoaded func(interface{})\r\n)\r\n```\r\n\r\n#### func  TestViaRemarshal\r\n\r\n```go\r\nfunc TestViaRemarshal(dirPath string, makeEmptyDoc func() interface{})\r\n```\r\nAttempts to xml.Unmarshal() all files in the \"infiles\" sub-directory of the\r\nspecified directory path into the interface{} structure returned by the\r\nspecified constructor. For each such input file, then attempts to\r\nxml.MarshalIndent() said structure back into a new output XML file with the same\r\nname, in the \"outfiles\" sub-directory of the specified directory path.\r\n\r\n--\r\n**godocdown** http://github.com/robertkrimen/godocdown"
  },
  {
    "path": "xsd-makepkg/tests/doc.go",
    "content": "//\tA simple test function shared by the various test programs inside this directory (rss, atom, collada, svg etc.)\r\npackage tests\r\n"
  },
  {
    "path": "xsd-makepkg/tests/tests.go",
    "content": "package tests\r\n\r\nimport (\r\n\t\"encoding/xml\"\r\n\t\"fmt\"\r\n\t\"log\"\r\n\t\"path/filepath\"\r\n\t\"strings\"\r\n\r\n\t\"github.com/metaleap/go-util/fs\"\r\n\r\n\txmlx \"github.com/go-forks/go-pkg-xmlx\"\r\n)\r\n\r\nvar (\r\n\tOnDocLoaded func(interface{})\r\n)\r\n\r\nfunc verifyDocs(origData, faksData []byte) (errs []error) {\r\n\torig, faks := xmlx.New(), xmlx.New()\r\n\terr := orig.LoadBytes(origData, nil)\r\n\tif err == nil {\r\n\t\tif err = faks.LoadBytes(faksData, nil); err == nil {\r\n\t\t\terrs = verifyNode(orig.Root, faks.Root)\r\n\t\t}\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc verifyNode(orig, faks *xmlx.Node) (errs []error) {\r\n\ttype both struct {\r\n\t\torigNodes, faksNodes []*xmlx.Node\r\n\t}\r\n\tvar (\r\n\t\tcurBoth *both\r\n\t\tcn      *xmlx.Node\r\n\t\ttmp     string\r\n\t\ti       int\r\n\t\tsubErrs []error\r\n\t)\r\n\tattVal := func(xn *xmlx.Node, att *xmlx.Attr) (v string) {\r\n\t\tif v = xn.As(\"\", att.Name.Local); len(v) == 0 {\r\n\t\t\tv = xn.As(att.Name.Space, att.Name.Local)\r\n\t\t}\r\n\t\treturn\r\n\t}\r\n\tcleanNodes := func(xns ...*xmlx.Node) {\r\n\t\tfor _, xn := range xns {\r\n\t\t\tfor _, cn = range xn.Children {\r\n\t\t\t\tif cn.Type != xmlx.NT_ELEMENT {\r\n\t\t\t\t\txn.RemoveChild(cn)\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tcleanNodes(orig, faks)\r\n\tfor _, a := range orig.Attributes {\r\n\t\tif tmp = attVal(faks, a); tmp != a.Value {\r\n\t\t\terrs = append(errs, fmt.Errorf(\"Attribute '%s:%s' of <%s> element: different values (orig='%s' faks='%s')\", a.Name.Space, a.Name.Local, orig.Name.Local, a.Value, tmp))\r\n\t\t}\r\n\t}\r\n\tif len(orig.Children) > len(faks.Children) {\r\n\t\terrs = append(errs, fmt.Errorf(\"Orig <%s> element has %v children, but faks has %v.\", orig.Name.Local, len(orig.Children), len(faks.Children)))\r\n\t}\r\n\tif orig.Value != faks.Value {\r\n\t\terrs = append(errs, fmt.Errorf(\"Orig <%s> element value differs from faks value.\", orig.Name.Local))\r\n\t}\r\n\tnamedNodes := map[string]*both{}\r\n\tfor _, cn = range orig.Children {\r\n\t\tif curBoth = namedNodes[cn.Name.Local]; curBoth == nil {\r\n\t\t\tcurBoth = &both{}\r\n\t\t\tnamedNodes[cn.Name.Local] = curBoth\r\n\t\t}\r\n\t\tcurBoth.origNodes = append(curBoth.origNodes, cn)\r\n\t}\r\n\tfor _, cn = range faks.Children {\r\n\t\tif curBoth = namedNodes[cn.Name.Local]; curBoth != nil {\r\n\t\t\tcurBoth.faksNodes = append(curBoth.faksNodes, cn)\r\n\t\t}\r\n\t}\r\n\tfor tmp, curBoth = range namedNodes {\r\n\t\tif len(curBoth.origNodes) != len(curBoth.faksNodes) {\r\n\t\t\terrs = append(errs, fmt.Errorf(\"Orig <%s> element has %v <%s> elements but faks <%s> element has %v.\", orig.Name.Local, len(curBoth.origNodes), tmp, faks.Name.Local, len(curBoth.faksNodes)))\r\n\t\t} else if len(curBoth.origNodes) == 1 {\r\n\t\t\terrs = append(errs, verifyNode(curBoth.origNodes[0], curBoth.faksNodes[0])...)\r\n\t\t} else {\r\n\t\t\tfor i, cn = range curBoth.origNodes {\r\n\t\t\t\tif subErrs = verifyNode(cn, curBoth.faksNodes[i]); len(subErrs) > 0 {\r\n\t\t\t\t\terrs = append(errs, subErrs...)\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\treturn\r\n}\r\n\r\n//\tAttempts to xml.Unmarshal() all files in the \"infiles\" sub-directory of the specified directory path into the interface{} structure returned by the specified constructor.\r\n//\tFor each such input file, then attempts to xml.MarshalIndent() said structure back into a new output XML file with the same name, in the \"outfiles\" sub-directory of the specified directory path.\r\nfunc TestViaRemarshal(dirPath string, makeEmptyDoc func() interface{}) {\r\n\tvar dirPathInFiles = filepath.Join(dirPath, \"infiles\")\r\n\tvar dirPathOutFiles = filepath.Join(dirPath, \"outfiles\")\r\n\tvar loadXmlDocFile = func(filename string) bool {\r\n\t\tlog.Printf(\"Loading %s\", filename)\r\n\t\tdoc, dataOrig := makeEmptyDoc(), ufs.ReadBinaryFile(filename, true)\r\n\t\terr := xml.Unmarshal(dataOrig, doc)\r\n\t\tif err != nil {\r\n\t\t\tpanic(err)\r\n\t\t}\r\n\t\tif OnDocLoaded != nil {\r\n\t\t\tOnDocLoaded(doc)\r\n\t\t}\r\n\t\toutFileName := filepath.Join(dirPathOutFiles, filepath.Base(filename))\r\n\t\tlog.Printf(\"Writing %s\", outFileName)\r\n\t\tdataFaks, err := xml.MarshalIndent(doc, \"\", \"\\t\")\r\n\t\tif err != nil {\r\n\t\t\tpanic(err)\r\n\t\t}\r\n\t\tufs.WriteTextFile(outFileName, strings.Trim(string(dataFaks), \" \\r\\n\\t\"))\r\n\t\tlog.Printf(\"Verifying...\")\r\n\t\tif errs := verifyDocs(dataOrig, dataFaks); len(errs) > 0 {\r\n\t\t\tfor _, err = range errs {\r\n\t\t\t\tlog.Printf(\"%v\", err)\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn true\r\n\t}\r\n\tif errs := ufs.NewDirWalker(false, nil, loadXmlDocFile).Walk(dirPathInFiles); len(errs) > 0 {\r\n\t\tpanic(errs[0])\r\n\t}\r\n}\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-atom/feed/infiles/samplefeed.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<feed xmlns=\"http://www.w3.org/2005/Atom\">\r\n\r\n  <title>Example Feed</title>\r\n  <link href=\"http://example.org/\"/>\r\n  <updated>2003-12-13T18:30:02Z</updated>\r\n  <author>\r\n    <name>John Doe</name>\r\n  </author>\r\n  <id>urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6</id>\r\n\r\n  <entry>\r\n    <title>Atom-Powered Robots Run Amok</title>\r\n    <link href=\"http://example.org/2003/12/13/atom03\"/>\r\n    <id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id>\r\n    <updated>2003-12-13T18:30:02Z</updated>\r\n    <summary>Some text.</summary>\r\n  </entry>\r\n\r\n</feed>\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-atom/feed/outfiles/samplefeed.xml",
    "content": "<feed base=\"\" lang=\"\">\r\n\t<link xmlns=\"http://www.w3.org/2005/Atom\" length=\"0\" title=\"\" href=\"http://example.org/\" hreflang=\"\" type=\"\" base=\"\" lang=\"\" rel=\"\"></link>\r\n\t<entry xmlns=\"http://www.w3.org/2005/Atom\" base=\"\" lang=\"\">\r\n\t\t<link xmlns=\"http://www.w3.org/2005/Atom\" length=\"0\" title=\"\" href=\"http://example.org/2003/12/13/atom03\" hreflang=\"\" type=\"\" base=\"\" lang=\"\" rel=\"\"></link>\r\n\t\t<summary xmlns=\"http://www.w3.org/2005/Atom\" base=\"\" lang=\"\" type=\"\">Some text.</summary>\r\n\t\t<id xmlns=\"http://www.w3.org/2005/Atom\" base=\"\" lang=\"\">urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id>\r\n\t\t<updated xmlns=\"http://www.w3.org/2005/Atom\" base=\"\" lang=\"\">2003-12-13T18:30:02Z</updated>\r\n\t\t<title xmlns=\"http://www.w3.org/2005/Atom\" base=\"\" lang=\"\" type=\"\">Atom-Powered Robots Run Amok</title>\r\n\t</entry>\r\n\t<title xmlns=\"http://www.w3.org/2005/Atom\" base=\"\" lang=\"\" type=\"\">Example Feed</title>\r\n\t<author xmlns=\"http://www.w3.org/2005/Atom\" base=\"\" lang=\"\">\r\n\t\t<name xmlns=\"http://www.w3.org/2005/Atom\">John Doe</name>\r\n\t</author>\r\n\t<updated xmlns=\"http://www.w3.org/2005/Atom\" base=\"\" lang=\"\">2003-12-13T18:30:02Z</updated>\r\n\t<id xmlns=\"http://www.w3.org/2005/Atom\" base=\"\" lang=\"\">urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6</id>\r\n</feed>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-atom/main.go",
    "content": "package main\r\n\r\nimport (\r\n\t\"encoding/xml\"\r\n\r\n\t\"github.com/metaleap/go-xsd/xsd-makepkg/tests\"\r\n\r\n\t\"github.com/metaleap/go-util/dev/go\"\r\n\r\n\tatom \"github.com/metaleap/go-xsd-pkg/kbcafe.com/rss/atom.xsd.xml_go\"\r\n)\r\n\r\ntype AtomEntryDoc struct {\r\n\tXMLName xml.Name `xml:\"entry\"`\r\n\tatom.TentryType\r\n}\r\n\r\ntype AtomFeedDoc struct {\r\n\tXMLName xml.Name `xml:\"feed\"`\r\n\tatom.TfeedType\r\n}\r\n\r\nfunc main() {\r\n\tvar (\r\n\t\tentryDirBasePath  = udevgo.GopathSrcGithub(\"metaleap\", \"go-xsd\", \"xsd-makepkg\", \"tests\", \"xsd-test-atom\", \"entry\")\r\n\t\tentryMakeEmptyDoc = func() interface{} { return &AtomEntryDoc{} }\r\n\t\tfeedDirBasePath   = udevgo.GopathSrcGithub(\"metaleap\", \"go-xsd\", \"xsd-makepkg\", \"tests\", \"xsd-test-atom\", \"feed\")\r\n\t\tfeedMakeEmptyDoc  = func() interface{} { return &AtomFeedDoc{} }\r\n\t)\r\n\ttests.TestViaRemarshal(entryDirBasePath, entryMakeEmptyDoc)\r\n\ttests.TestViaRemarshal(feedDirBasePath, feedMakeEmptyDoc)\r\n}\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/cube.dae",
    "content": "<?xml version=\"1.0\" ?><COLLADA version=\"1.4.1\" xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n    <asset>\r\n        <contributor>\r\n            <author>alorino</author>\r\n            <authoring_tool>Maya 7.0 | ColladaMaya v2.01 Jun  9 2006 at 16:08:19 | FCollada v1.11</authoring_tool>\r\n            <comments>Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=0;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n            <copyright>\r\nCopyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&quot;License&quot;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &quot;AS IS&quot; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n</copyright>\r\n        </contributor>\r\n        <created>2006-06-21T21:25:37Z</created>\r\n        <modified>2006-06-21T21:25:37Z</modified>\r\n        <unit meter=\"0.01\" name=\"centimeter\"/>\r\n        <up_axis>Y_UP</up_axis>\r\n    </asset>\r\n    <library_cameras>\r\n        <camera id=\"cl_unnamed_1\" name=\"cl_unnamed_1\">\r\n            <optics>\r\n                <technique_common>\r\n                    <perspective>\r\n                        <yfov>37.8493</yfov>\r\n                        <aspect_ratio>1</aspect_ratio>\r\n                        <znear>10</znear>\r\n                        <zfar>1000</zfar>\r\n                    </perspective>\r\n                </technique_common>\r\n            </optics>\r\n        </camera>\r\n        <camera id=\"testCameraShape\" name=\"testCameraShape\">\r\n            <optics>\r\n                <technique_common>\r\n                    <perspective>\r\n                        <yfov>37.8501</yfov>\r\n                        <aspect_ratio>1</aspect_ratio>\r\n                        <znear>0.01</znear>\r\n                        <zfar>1000</zfar>\r\n                    </perspective>\r\n                </technique_common>\r\n            </optics>\r\n        </camera>\r\n    </library_cameras>\r\n    <library_lights>\r\n        <light id=\"Lt_Light-lib\" name=\"Lt_Light\">\r\n            <technique_common>\r\n                <point>\r\n                    <color>1 1 1</color>\r\n                    <constant_attenuation>1</constant_attenuation>\r\n                    <linear_attenuation>0</linear_attenuation>\r\n                    <quadratic_attenuation>0</quadratic_attenuation>\r\n                </point>\r\n            </technique_common>\r\n        </light>\r\n        <light id=\"pointLightShape1-lib\" name=\"pointLightShape1\">\r\n            <technique_common>\r\n                <point>\r\n                    <color>1 1 1</color>\r\n                    <constant_attenuation>1</constant_attenuation>\r\n                    <linear_attenuation>0</linear_attenuation>\r\n                    <quadratic_attenuation>0</quadratic_attenuation>\r\n                </point>\r\n            </technique_common>\r\n        </light>\r\n    </library_lights>\r\n    <library_materials>\r\n        <material id=\"Blue\" name=\"Blue\">\r\n            <instance_effect url=\"#Blue-fx\"/>\r\n        </material>\r\n        <material id=\"Red\" name=\"Red\">\r\n            <instance_effect url=\"#Red-fx\"/>\r\n        </material>\r\n    </library_materials>\r\n    <library_effects>\r\n        <effect id=\"Blue-fx\">\r\n            <profile_COMMON>\r\n                <technique sid=\"common\">\r\n                    <phong>\r\n                        <emission>\r\n                            <color>0 0 0 1</color>\r\n                        </emission>\r\n                        <ambient>\r\n                            <color>0 0 0 1</color>\r\n                        </ambient>\r\n                        <diffuse>\r\n                            <color>0.137255 0.403922 0.870588 1</color>\r\n                        </diffuse>\r\n                        <specular>\r\n                            <color>0.5 0.5 0.5 1</color>\r\n                        </specular>\r\n                        <shininess>\r\n                            <float>10</float>\r\n                        </shininess>\r\n                        <reflective>\r\n                            <color>0 0 0 1</color>\r\n                        </reflective>\r\n                        <reflectivity>\r\n                            <float>0.5</float>\r\n                        </reflectivity>\r\n                        <transparent>\r\n                            <color>0 0 0 1</color>\r\n                        </transparent>\r\n                        <transparency>\r\n                            <float>1</float>\r\n                        </transparency>\r\n                        <index_of_refraction>\r\n                            <float>0</float>\r\n                        </index_of_refraction>\r\n                    </phong>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"Red-fx\">\r\n            <profile_COMMON>\r\n                <technique sid=\"common\">\r\n                    <phong>\r\n                        <emission>\r\n                            <color>0 0 0 1</color>\r\n                        </emission>\r\n                        <ambient>\r\n                            <color>0 0 0 1</color>\r\n                        </ambient>\r\n                        <diffuse>\r\n                            <color>0.658824 0.101961 0.109804 1</color>\r\n                        </diffuse>\r\n                        <specular>\r\n                            <color>0.368627 0.368627 0.368627 1</color>\r\n                        </specular>\r\n                        <shininess>\r\n                            <float>10</float>\r\n                        </shininess>\r\n                        <reflective>\r\n                            <color>0 0 0 1</color>\r\n                        </reflective>\r\n                        <reflectivity>\r\n                            <float>0.5</float>\r\n                        </reflectivity>\r\n                        <transparent>\r\n                            <color>0 0 0 1</color>\r\n                        </transparent>\r\n                        <transparency>\r\n                            <float>1</float>\r\n                        </transparency>\r\n                        <index_of_refraction>\r\n                            <float>0</float>\r\n                        </index_of_refraction>\r\n                    </phong>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n    </library_effects>\r\n    <library_geometries>\r\n        <geometry id=\"box-lib\" name=\"box\">\r\n            <mesh>\r\n                <source id=\"box-lib-positions\" name=\"position\">\r\n                    <float_array count=\"24\" id=\"box-lib-positions-array\">-50 50 50 50 50 50 -50 -50 50 50 -50 50 -50 50 -50 50 50 -50 -50 -50 -50 50 -50 -50</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" offset=\"0\" source=\"#box-lib-positions-array\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"box-lib-normals\" name=\"normal\">\r\n                    <float_array count=\"72\" id=\"box-lib-normals-array\">0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"24\" offset=\"0\" source=\"#box-lib-normals-array\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"box-lib-vertices\">\r\n                    <input semantic=\"POSITION\" source=\"#box-lib-positions\"/>\r\n                </vertices>\r\n                <polylist count=\"5\" material=\"BlueSG\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#box-lib-vertices\"/>\r\n                    <input offset=\"1\" semantic=\"NORMAL\" source=\"#box-lib-normals\"/>\r\n                    <vcount>4 4 4 4 4</vcount>\r\n                    <p>0 0 1 1 5 2 4 3 6 4 7 5 3 6 2 7 0 8 4 9 6 10 2 11 3 12 7 13 5 14 1 15 5 16 7 17 6 18 4 19</p>\r\n                </polylist>\r\n                <polylist count=\"1\" material=\"RedSG\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#box-lib-vertices\"/>\r\n                    <input offset=\"1\" semantic=\"NORMAL\" source=\"#box-lib-normals\"/>\r\n                    <vcount>4</vcount>\r\n                    <p>0 20 2 21 3 22 1 23</p>\r\n                </polylist>\r\n            </mesh>\r\n        </geometry>\r\n    </library_geometries>\r\n    <library_visual_scenes>\r\n        <visual_scene id=\"VisualSceneNode\" name=\"untitled\">\r\n            <node id=\"Camera\" name=\"Camera\">\r\n                <translate sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n                <rotate sid=\"rotateY\">0 1 0 -26</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <instance_camera url=\"#cl_unnamed_1\"/>\r\n            </node>\r\n            <node id=\"Light\" name=\"Light\">\r\n                <translate sid=\"translate\">-325 225 400</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n                <instance_light url=\"#Lt_Light-lib\"/>\r\n            </node>\r\n            <node id=\"Box\" name=\"Box\">\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n                <instance_geometry url=\"#box-lib\">\r\n                    <bind_material>\r\n                        <technique_common>\r\n                            <instance_material symbol=\"BlueSG\" target=\"#Blue\"/>\r\n                            <instance_material symbol=\"RedSG\" target=\"#Red\"/>\r\n                        </technique_common>\r\n                    </bind_material>\r\n                </instance_geometry>\r\n            </node>\r\n            <node id=\"testCamera\" name=\"testCamera\">\r\n                <translate sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n                <rotate sid=\"rotateY\">0 1 0 -26</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <instance_camera url=\"#testCameraShape\"/>\r\n            </node>\r\n            <node id=\"pointLight1\" name=\"pointLight1\">\r\n                <translate sid=\"translate\">3 4 10</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n                <instance_light url=\"#pointLightShape1-lib\"/>\r\n            </node>\r\n        </visual_scene>\r\n    </library_visual_scenes>\r\n    <scene>\r\n        <instance_visual_scene url=\"#VisualSceneNode\"/>\r\n    </scene>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/cube_triangulate.dae",
    "content": "<?xml version=\"1.0\" ?><COLLADA version=\"1.4.1\" xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n    <asset>\r\n        <contributor>\r\n            <author>alorino</author>\r\n            <authoring_tool>Maya 7.0 | ColladaMaya v2.01 Jun  9 2006 at 16:08:19 | FCollada v1.11</authoring_tool>\r\n            <comments>Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=0;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n            <copyright>\r\nCopyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&quot;License&quot;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &quot;AS IS&quot; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n</copyright>\r\n        </contributor>\r\n        <created>2006-06-21T21:25:37Z</created>\r\n        <modified>2006-06-21T21:25:37Z</modified>\r\n        <unit meter=\"0.01\" name=\"centimeter\"/>\r\n        <up_axis>Y_UP</up_axis>\r\n    </asset>\r\n    <library_cameras>\r\n        <camera id=\"cl_unnamed_1\" name=\"cl_unnamed_1\">\r\n            <optics>\r\n                <technique_common>\r\n                    <perspective>\r\n                        <yfov>37.8493</yfov>\r\n                        <aspect_ratio>1</aspect_ratio>\r\n                        <znear>10</znear>\r\n                        <zfar>1000</zfar>\r\n                    </perspective>\r\n                </technique_common>\r\n            </optics>\r\n        </camera>\r\n        <camera id=\"testCameraShape\" name=\"testCameraShape\">\r\n            <optics>\r\n                <technique_common>\r\n                    <perspective>\r\n                        <yfov>37.8501</yfov>\r\n                        <aspect_ratio>1</aspect_ratio>\r\n                        <znear>0.01</znear>\r\n                        <zfar>1000</zfar>\r\n                    </perspective>\r\n                </technique_common>\r\n            </optics>\r\n        </camera>\r\n    </library_cameras>\r\n    <library_lights>\r\n        <light id=\"Lt_Light-lib\" name=\"Lt_Light\">\r\n            <technique_common>\r\n                <point>\r\n                    <color>1 1 1</color>\r\n                    <constant_attenuation>1</constant_attenuation>\r\n                    <linear_attenuation>0</linear_attenuation>\r\n                    <quadratic_attenuation>0</quadratic_attenuation>\r\n                </point>\r\n            </technique_common>\r\n        </light>\r\n        <light id=\"pointLightShape1-lib\" name=\"pointLightShape1\">\r\n            <technique_common>\r\n                <point>\r\n                    <color>1 1 1</color>\r\n                    <constant_attenuation>1</constant_attenuation>\r\n                    <linear_attenuation>0</linear_attenuation>\r\n                    <quadratic_attenuation>0</quadratic_attenuation>\r\n                </point>\r\n            </technique_common>\r\n        </light>\r\n    </library_lights>\r\n    <library_materials>\r\n        <material id=\"Blue\" name=\"Blue\">\r\n            <instance_effect url=\"#Blue-fx\"/>\r\n        </material>\r\n        <material id=\"Red\" name=\"Red\">\r\n            <instance_effect url=\"#Red-fx\"/>\r\n        </material>\r\n    </library_materials>\r\n    <library_effects>\r\n        <effect id=\"Blue-fx\">\r\n            <profile_COMMON>\r\n                <technique sid=\"common\">\r\n                    <phong>\r\n                        <emission>\r\n                            <color>0 0 0 1</color>\r\n                        </emission>\r\n                        <ambient>\r\n                            <color>0 0 0 1</color>\r\n                        </ambient>\r\n                        <diffuse>\r\n                            <color>0.137255 0.403922 0.870588 1</color>\r\n                        </diffuse>\r\n                        <specular>\r\n                            <color>0.5 0.5 0.5 1</color>\r\n                        </specular>\r\n                        <shininess>\r\n                            <float>10</float>\r\n                        </shininess>\r\n                        <reflective>\r\n                            <color>0 0 0 1</color>\r\n                        </reflective>\r\n                        <reflectivity>\r\n                            <float>0.5</float>\r\n                        </reflectivity>\r\n                        <transparent>\r\n                            <color>0 0 0 1</color>\r\n                        </transparent>\r\n                        <transparency>\r\n                            <float>1</float>\r\n                        </transparency>\r\n                        <index_of_refraction>\r\n                            <float>0</float>\r\n                        </index_of_refraction>\r\n                    </phong>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"Red-fx\">\r\n            <profile_COMMON>\r\n                <technique sid=\"common\">\r\n                    <phong>\r\n                        <emission>\r\n                            <color>0 0 0 1</color>\r\n                        </emission>\r\n                        <ambient>\r\n                            <color>0 0 0 1</color>\r\n                        </ambient>\r\n                        <diffuse>\r\n                            <color>0.658824 0.101961 0.109804 1</color>\r\n                        </diffuse>\r\n                        <specular>\r\n                            <color>0.368627 0.368627 0.368627 1</color>\r\n                        </specular>\r\n                        <shininess>\r\n                            <float>10</float>\r\n                        </shininess>\r\n                        <reflective>\r\n                            <color>0 0 0 1</color>\r\n                        </reflective>\r\n                        <reflectivity>\r\n                            <float>0.5</float>\r\n                        </reflectivity>\r\n                        <transparent>\r\n                            <color>0 0 0 1</color>\r\n                        </transparent>\r\n                        <transparency>\r\n                            <float>1</float>\r\n                        </transparency>\r\n                        <index_of_refraction>\r\n                            <float>0</float>\r\n                        </index_of_refraction>\r\n                    </phong>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n    </library_effects>\r\n    <library_geometries>\r\n        <geometry id=\"box-lib\" name=\"box\">\r\n            <mesh>\r\n                <source id=\"box-lib-positions\" name=\"position\">\r\n                    <float_array count=\"24\" id=\"box-lib-positions-array\">-50 50 50 50 50 50 -50 -50 50 50 -50 50 -50 50 -50 50 50 -50 -50 -50 -50 50 -50 -50</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" offset=\"0\" source=\"#box-lib-positions-array\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"box-lib-normals\" name=\"normal\">\r\n                    <float_array count=\"72\" id=\"box-lib-normals-array\">0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"24\" offset=\"0\" source=\"#box-lib-normals-array\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"box-lib-vertices\">\r\n                    <input semantic=\"POSITION\" source=\"#box-lib-positions\"/>\r\n                </vertices>\r\n                <triangles count=\"10\" material=\"BlueSG\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#box-lib-vertices\"/>\r\n                    <input offset=\"1\" semantic=\"NORMAL\" source=\"#box-lib-normals\"/>\r\n                    <p>0 0 1 1 5 2 0 0 5 2 4 3 6 4 7 5 3 6 6 4 3 6 2 7 0 8 4 9 6 10 0 8 6 10 2 11 3 12 7 13 5 14 3 12 5 14 1 15 5 16 7 17 6 18 5 16 6 18 4 19</p>\r\n                </triangles>\r\n                <triangles count=\"2\" material=\"RedSG\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#box-lib-vertices\"/>\r\n                    <input offset=\"1\" semantic=\"NORMAL\" source=\"#box-lib-normals\"/>\r\n                    <p>0 20 2 21 3 22 0 20 3 22 1 23</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n    </library_geometries>\r\n    <library_visual_scenes>\r\n        <visual_scene id=\"VisualSceneNode\" name=\"untitled\">\r\n            <node id=\"Camera\" name=\"Camera\">\r\n                <translate sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n                <rotate sid=\"rotateY\">0 1 0 -26</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <instance_camera url=\"#cl_unnamed_1\"/>\r\n            </node>\r\n            <node id=\"Light\" name=\"Light\">\r\n                <translate sid=\"translate\">-325 225 400</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n                <instance_light url=\"#Lt_Light-lib\"/>\r\n            </node>\r\n            <node id=\"Box\" name=\"Box\">\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n                <instance_geometry url=\"#box-lib\">\r\n                    <bind_material>\r\n                        <technique_common>\r\n                            <instance_material symbol=\"BlueSG\" target=\"#Blue\"/>\r\n                            <instance_material symbol=\"RedSG\" target=\"#Red\"/>\r\n                        </technique_common>\r\n                    </bind_material>\r\n                </instance_geometry>\r\n            </node>\r\n            <node id=\"testCamera\" name=\"testCamera\">\r\n                <translate sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n                <rotate sid=\"rotateY\">0 1 0 -26</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <instance_camera url=\"#testCameraShape\"/>\r\n            </node>\r\n            <node id=\"pointLight1\" name=\"pointLight1\">\r\n                <translate sid=\"translate\">3 4 10</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n                <instance_light url=\"#pointLightShape1-lib\"/>\r\n            </node>\r\n        </visual_scene>\r\n    </library_visual_scenes>\r\n    <scene>\r\n        <instance_visual_scene url=\"#VisualSceneNode\"/>\r\n    </scene>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/duck.dae",
    "content": "<?xml version=\"1.0\" ?><COLLADA version=\"1.4.1\" xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n    <asset>\r\n        <contributor>\r\n            <author>gcorson</author>\r\n            <authoring_tool>Maya 8.0 | ColladaMaya v3.02 | FCollada v3.2</authoring_tool>\r\n            <comments>Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=1;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n            <copyright>\r\nCopyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&quot;License&quot;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &quot;AS IS&quot; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n</copyright>\r\n            <source_data>file:///C:/vs2005/sample_data/Complete_Packages/SCEA_Private/Maya_MoonLander/Moonlander/untitled</source_data>\r\n        </contributor>\r\n        <created>2006-08-23T22:29:59Z</created>\r\n        <modified>2007-02-21T22:47:42Z</modified>\r\n        <unit meter=\"0.01\" name=\"centimeter\"/>\r\n        <up_axis>Y_UP</up_axis>\r\n    </asset>\r\n    <library_cameras>\r\n        <camera id=\"cameraShape1\" name=\"cameraShape1\">\r\n            <optics>\r\n                <technique_common>\r\n                    <perspective>\r\n                        <yfov>37.8492</yfov>\r\n                        <aspect_ratio>1.5</aspect_ratio>\r\n                        <znear>1</znear>\r\n                        <zfar>10000</zfar>\r\n                    </perspective>\r\n                </technique_common>\r\n            </optics>\r\n        </camera>\r\n    </library_cameras>\r\n    <library_lights>\r\n        <light id=\"directionalLightShape1-lib\" name=\"directionalLightShape1\">\r\n            <technique_common>\r\n                <directional>\r\n                    <color>1 1 1</color>\r\n                </directional>\r\n            </technique_common>\r\n        </light>\r\n    </library_lights>\r\n    <library_images>\r\n        <image depth=\"1\" id=\"file2\" name=\"file2\">\r\n            <init_from>./duckCM_fix.jpg</init_from>\r\n        </image>\r\n    </library_images>\r\n    <library_materials>\r\n        <material id=\"blinn3\" name=\"blinn3\">\r\n            <instance_effect url=\"#blinn3-fx\"/>\r\n        </material>\r\n    </library_materials>\r\n    <library_effects>\r\n        <effect id=\"blinn3-fx\">\r\n            <profile_COMMON>\r\n                <newparam sid=\"file2-surface\">\r\n                    <surface type=\"2D\">\r\n                        <init_from>file2</init_from>\r\n                        <format>A8R8G8B8</format>\r\n                    </surface>\r\n                </newparam>\r\n                <newparam sid=\"file2-sampler\">\r\n                    <sampler2D>\r\n                        <source>file2-surface</source>\r\n                        <minfilter>LINEAR_MIPMAP_LINEAR</minfilter>\r\n                        <magfilter>LINEAR</magfilter>\r\n                    </sampler2D>\r\n                </newparam>\r\n                <technique sid=\"common\">\r\n                    <blinn>\r\n                        <emission>\r\n                            <color>0 0 0 1</color>\r\n                        </emission>\r\n                        <ambient>\r\n                            <color>0 0 0 1</color>\r\n                        </ambient>\r\n                        <diffuse>\r\n                            <texture texcoord=\"TEX0\" texture=\"file2-sampler\"/>\r\n                        </diffuse>\r\n                        <specular>\r\n                            <color>0 0 0 1</color>\r\n                        </specular>\r\n                        <shininess>\r\n                            <float>0.3</float>\r\n                        </shininess>\r\n                        <reflective>\r\n                            <color>0 0 0 1</color>\r\n                        </reflective>\r\n                        <reflectivity>\r\n                            <float>0.5</float>\r\n                        </reflectivity>\r\n                        <transparent>\r\n                            <color>0 0 0 1</color>\r\n                        </transparent>\r\n                        <transparency>\r\n                            <float>1</float>\r\n                        </transparency>\r\n                        <index_of_refraction>\r\n                            <float>1</float>\r\n                        </index_of_refraction>\r\n                    </blinn>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n    </library_effects>\r\n    <library_geometries>\r\n        <geometry id=\"LOD3spShape-lib\" name=\"LOD3spShape\">\r\n            <mesh>\r\n                <source id=\"LOD3spShape-lib-positions\" name=\"position\">\r\n                    <float_array count=\"6324\" id=\"LOD3spShape-lib-positions-array\">35.0226 89.3874 23.3732 19.5676 89.7173 22.4879 9.22909 91.5427 17.1037 4.33048 88.7008 4.57726 45.0571 89.4178 19.824 -30.5196 11.6272 25.1326 -15.6992 11.4278 34.2321 51.8411 17.7055 36.5602 65.7206 18.372 27.0862 56.0117 11.4345 22.6963 -23.2343 18.1488 41.0429 -40.9218 18.6322 29.6382 62.4487 11.3989 12.9806 60.2326 28.1944 39.5949 71.2984 29.0359 29.3335 -32.9737 29.6914 43.477 -48.95 28.9358 31.4102 73.8118 41.7425 29.8584 65.2513 41.3955 39.884 72.6597 55.003 29.2468 64.6263 55.4849 38.2648 66.5829 66.4165 27.9218 55.5179 67.734 35.7358 43.4971 75.6992 31.8699 56.934 75.0037 25.7495 14.7601 73.8701 35.1574 -12.1248 73.9991 28.9191 14.7016 78.8465 28.8886 -3.37962 78.0576 23.1953 -24.7824 78.2304 7.65121 4.94216 81.4267 15.8195 -54.7257 89.9761 8.84491 -53.6566 74.7375 26.9735 -44.1714 77.8938 26.1268 -64.7587 73.8997 7.15297 -61.5691 65.6958 25.2253 -42.9296 61.2502 39.4496 -64.9663 57.2673 21.7398 -48.9596 49.2561 39.8218 -58.3698 43.9468 28.036 -31.7993 70.8398 33.4366 -33.1153 82.3349 8.62471 48.2452 81.0789 22.327 34.1225 80.5718 26.6473 15.5527 81.3807 24.423 0.65596 81.0723 3.99376 15.1798 11.41 36.4164 17.2973 17.3674 43.2976 43.8649 67.7941 39.8677 55.9835 56.1625 42.7808 56.4187 41.7648 44.4371 46.9566 29.0085 44.2399 18.041 21.337 45.4158 -24.2634 29.7596 46.4694 -37.1346 44.6474 44.4312 -35.8668 57.8953 42.7333 -24.1626 66.8013 39.6298 -14.2645 43.4767 51.8892 10.1522 43.8267 53.9252 -10.3735 36.316 51.8336 -14.5047 52.2745 51.0455 9.35439 52.1796 53.5056 24.5685 36.9247 52.4691 11.2191 35.6243 52.5988 27.0248 44.5585 52.8835 25.4374 55.0852 52.0724 9.23132 59.258 51.2115 21.2751 61.6417 50.3945 -11.0645 57.3325 50.3033 -22.8339 53.8174 48.6047 -22.3883 43.3299 49.8488 -13.3437 34.4469 50.7719 -15.0193 59.7488 48.0109 12.3031 31.6369 51.4681 28.2 34.9703 51.4911 34.9314 44.1559 51.2583 33.7281 55.8993 50.0475 24.8495 63.37 48.6114 9.96162 62.8873 48.4038 6.73344 84.5266 2.83788 10.2211 84.9641 13.1445 19.05 85.0093 20.4734 35.2584 84.9759 22.0089 44.8651 85.199 18.7578 54.1484 90.1992 13.1393 25.84 89.3162 23.5593 14.5318 90.4728 20.5795 5.99276 89.5698 10.1098 59.1034 90.0324 3.37689 -23.9364 11.5353 30.6125 -11.459 10.0413 29.8243 -24.5326 10.1147 22.2069 -35.1528 11.6836 17.7191 61.5472 14.2726 25.2082 43.6854 11.43 30.0164 47.7677 14.1162 33.6212 -19.459 14.309 37.9267 -36.067 14.5054 27.6816 -32.9292 18.5574 36.7248 -46.1733 18.6604 20.5246 73.3418 18.3468 14.9194 68.8732 23.4107 28.4208 55.7803 22.4988 38.5465 -27.0171 23.4671 43.0366 -45.2302 23.6628 30.9246 -41.0731 29.3325 39.4763 79.4615 29.1894 16.0672 76.9844 23.4678 15.5749 72.8865 35.1223 29.8369 63.2406 34.5574 39.8307 81.8608 42.114 16.7292 80.9318 35.3877 16.409 66.0817 48.5555 39.2449 73.9987 48.5347 29.6857 80.1688 55.1853 16.948 81.5894 48.8387 16.9628 61.1927 62.0057 37.295 70.17 61.0152 28.6395 74.8647 66.3268 16.601 77.7874 61.0196 16.7611 61.7637 71.037 26.8557 67.1835 75.4493 16.6366 71.6321 71.1772 16.667 -7.40039 76.1581 26.3759 14.8335 76.3145 32.0471 -20.947 75.0059 21.3995 -9.30957 78.0917 17.6635 2.33308 81.2658 10.7014 -55.3055 81.4823 20.1865 -44.1025 82.8784 21.08 -48.3998 77.2606 26.9595 -63.8341 69.8359 17.705 -58.2579 70.6396 26.4175 -58.1459 60.4109 31.5845 -50.1918 68.7831 33.097 -53.5557 46.1592 34.9928 -63.069 52.729 24.0553 -63.6495 60.7883 23.3658 -54.4261 28.5392 21.6382 -12.4228 39.2454 51.9419 -52.1766 34.1006 30.9987 -39.3582 37.1753 42.8245 -63.2047 33.3562 7.77354 -14.9689 48.0973 51.5712 -13.2184 68.1588 38.5488 -20.841 71.9312 31.5875 -34.0814 73.6573 23.1685 39.0864 77.6536 29.4959 52.286 78.2905 24.2985 28.6752 75.0467 34.74 24.5284 79.4248 29.0977 58.2456 81.6454 14.9372 62.5867 78.8584 16.1198 -40.058 73.3058 29.0169 -62.4832 42.7738 19.6053 -66.2542 57.7677 16.0138 -46.3972 55.562 40.3341 46.1403 83.2928 20.059 52.8472 87.516 12.3304 24.3957 81.2413 26.4145 17.5457 83.2299 21.6568 35.0308 86.9496 21.9178 5.66061 83.0193 2.97282 39.2717 10.0042 25.9897 49.7414 9.99683 19.7068 14.6156 10.0124 31.7958 28.2119 11.4278 34.5791 55.179 10.0309 11.4214 16.1259 13.9798 40.2177 33.0793 17.7336 41.3765 18.9195 36.2041 52.5892 10.6044 39.6524 53.4314 18.2523 44.3116 53.7955 25.9535 39.9994 52.7745 9.73549 48.0914 53.8815 16.9236 53.6009 53.2898 26.8721 49.8693 52.6952 9.12603 55.8675 52.7181 15.9783 60.8706 50.8542 23.2428 59.2083 51.1997 15.2006 70.9348 38.4909 -38.0814 66.6122 37.6368 -31.4745 63.2943 41.295 -12.9337 55.4359 50.6592 -29.8093 42.9681 46.5354 -18.6612 31.1764 47.8255 -30.266 55.8423 44.7033 36.2897 31.2217 48.0605 46.511 42.7776 47.7899 45.6636 56.4673 46.2574 32.8524 66.1703 44.2955 12.3579 67.2602 43.2175 -19.149 38.1518 50.4005 -23.6628 48.8825 49.2194 21.1045 32.7401 51.4785 32.4268 38.9651 51.46 35.2465 50.0413 50.7771 17.9201 63.7837 48.4371 30.018 60.597 49.2453 -20.4236 57.6424 48.1257 -7.11345 60.5511 48.2081 -5.54756 57.4675 50.6459 -6.2067 51.4293 52.475 -5.95461 43.3855 53.166 -4.66971 35.7333 52.2177 -5.70251 32.445 51.1085 -8.3205 17.8723 43.3717 -2.69678 11.3425 36.4653 -27.2981 42.8866 48.0687 -27.8897 55.043 46.5161 -16.4436 32.2248 49.3054 -18.5848 62.3861 45.599 13.6265 28.0639 49.9986 41.3922 43.4352 49.4685 32.3868 32.7171 49.8711 40.4699 56.3449 48.0345 28.9733 65.0389 46.3945 11.0523 65.6624 45.6909 -37.9272 11.78 6.99728 -50.2675 18.389 7.36354 75.8256 18.3928 2.93945 64.2756 11.6576 2.65993 82.8128 29.1368 2.93945 85.8726 42.1384 2.93945 84.9147 55.2091 3.25752 79.936 66.2007 3.25752 72.9207 75.6569 3.11665 -13.2799 78.2816 6.78078 -42.4217 91.5301 9.02211 -66.2519 42.375 7.59116 -67.9758 58.5114 6.99802 8.76422 81.5601 20.2429 8.65004 83.1534 13.7124 6.16626 86.3527 3.3376 10.3479 87.4003 13.9949 7.91973 84.7475 8.18356 19.5238 87.0994 20.6484 13.8638 85.0248 17.2846 35.1961 83.043 23.5111 26.055 84.941 22.3278 44.4291 87.1742 18.6599 55.1672 83.7325 13.2216 53.3737 85.5572 12.3674 -18.7264 10.108 26.6814 -28.5504 10.1785 15.7995 -28.6467 14.412 33.9793 -40.9463 14.6426 19.2219 68.6182 14.2022 14.0757 -36.9819 23.7436 38.5844 48.5084 72.1529 33.9029 -14.7042 76.6096 19.7209 -49.515 83.8778 20.7678 -60.3339 76.3635 19.0618 -54.5522 64.8765 32.9243 -60.8158 55.9957 28.5728 -50.6442 23.4975 21.2438 -45.1383 35.1824 39.0803 -57.747 33.5446 21.51 -27.5531 73.6877 22.8942 26.6207 76.9559 31.9144 -39.393 77.9086 22.2647 -65.5928 51.6658 17.2594 -44.8336 71.3336 32.1213 -65.569 63.5509 16.5565 25.3055 83.1594 23.781 12.1192 83.2358 18.075 25.9631 10.0257 30.0393 30.5288 14.0969 38.2233 18.4628 39.992 53.2994 17.691 48.9863 53.8221 16.1429 57.6002 52.3171 32.2615 71.41 37.9727 51.4408 62.676 41.4618 57.6406 48.9151 43.8433 52.9177 35.0586 44.5773 36.217 23.1483 43.9056 -31.7681 36.6178 45.7769 -37.83 51.5724 43.6927 -25.9576 36.5644 47.2776 -31.2662 49.6491 45.6583 26.7542 27.5116 48.1161 23.2102 67.8126 43.5534 -9.81152 64.5785 42.5347 -5.73514 54.6841 51.8166 -6.34459 47.5345 53.0926 -5.18279 39.3551 52.8687 -13.0679 23.5531 45.6457 -5.21985 14.0791 40.2548 -0.679352 10.0168 31.8299 -28.752 49.271 47.2864 -23.8534 36.6519 48.7626 -24.6964 59.5316 45.8889 -7.15942 29.3978 49.7079 38.1551 37.5127 49.7814 23.9612 29.5453 49.9126 42.2701 49.9123 48.8776 35.8278 61.6884 47.1419 20.5055 66.243 45.9037 -8.95663 63.2617 45.5834 -31.1142 10.1703 6.38486 -44.1714 14.6552 7.27827 70.6407 14.3913 2.92833 79.9353 23.413 2.93945 84.5803 35.3544 2.93945 85.9631 48.8595 3.25752 82.8254 61.0226 3.25826 76.7546 71.3433 3.2553 -19.2017 77.8115 7.33611 -48.5489 92.2656 9.06511 -60.1596 84.4057 8.28143 -55.757 23.043 7.73055 -29.2013 79.6561 8.08569 -37.1064 88.1752 8.91461 -68.0046 51.5783 7.15372 -66.9147 65.618 7.07735 57.0756 10.1525 2.28551 6.64003 83.0734 8.64102 7.67061 86.759 8.63805 14.3983 87.2706 17.8748 26.21 86.9437 22.1654 62.3057 92.5874 2.9313 1.3848 69.2606 38.5873 1.56273 65.4519 43.0262 1.32251 64.1537 45.6605 4.95551 9.99831 32.3904 4.63076 11.3477 37.0599 4.48174 13.922 40.9628 4.08211 17.3859 43.9419 3.02928 21.4474 45.8963 3.07525 28.2293 49.9356 3.11009 31.6361 51.3265 3.03002 35.4574 52.4675 2.61333 39.4033 53.3009 2.11362 43.4389 53.8266 1.75772 47.519 53.7873 1.63762 51.3863 53.3032 1.70287 54.8295 52.4802 1.76736 58.0161 51.0099 1.52196 61.5001 48.3586 1.93642 72.8387 33.8763 3.64763 75.9142 30.548 5.31806 78.4269 26.9639 58.5778 87.5953 2.23361 59.1501 85.8263 2.11721 61.5583 84.2063 2.51758 64.9644 82.1214 2.892 69.0133 79.1475 3.00989 32.7991 89.7151 -30.4233 18.3501 89.4171 -27.9721 8.67525 89.5668 -20.9938 2.39314 90.3705 -9.85685 41.3633 90.1718 -28.7054 -31.106 11.4775 -32.9686 -16.1893 11.413 -41.8242 -37.8441 11.7199 -17.9362 51.1145 17.827 -43.7764 65.4167 18.372 -34.6672 55.5386 11.4663 -30.2365 -22.7101 18.3816 -48.1723 -41.2258 18.6322 -37.22 -49.9064 18.1281 -19.4546 62.0944 11.4196 -20.5393 59.314 28.4606 -46.5397 70.9277 29.0352 -36.8544 -33.1991 29.873 -50.7109 -49.3615 28.878 -39.0246 73.4812 41.7559 -37.3453 64.6226 41.5905 -46.5931 72.9066 55.0971 -37.0309 63.9264 55.2231 -45.5736 67.308 66.4328 -36.116 55.8026 66.7664 -44.1694 43.9561 74.6649 -39.815 57.8297 75.238 -34.1393 15.5401 73.1894 -42.5115 -12.2174 73.8819 -36.4385 15.3978 78.7998 -35.5147 -2.0421 78.412 -29.475 -24.7876 76.5792 -19.7267 -12.534 78.2897 -17.6678 4.34457 81.1227 -24.1642 -55.8163 87.2424 -22.0756 -43.7036 88.3494 -22.3158 -54.1303 74.7924 -34.6324 -44.4888 77.8752 -33.6648 -65.5053 72.5896 -18.5049 -61.9613 65.7536 -32.9553 -43.4634 60.448 -47.4894 -65.1954 57.0723 -29.5143 -59.2654 27.9119 -20.2361 -49.2087 49.1998 -47.3723 -58.9689 43.7199 -35.5858 -66.3446 42.1948 -19.4391 15.5861 70.0443 -46.0785 -33.1287 69.3852 -41.4713 -34.4892 80.0254 -21.5618 48.699 81.1865 -30.8689 34.2382 80.5703 -34.2498 16.5759 81.1153 -31.895 0.727875 81.1872 -12.4148 -68.018 58.2133 -17.8183 14.7802 11.3848 -44.0174 16.9221 17.4452 -50.8066 -13.0864 43.3447 -58.8481 10.4495 43.9097 -61.0858 -9.32663 36.6667 -59.0505 -14.22 51.903 -58.0496 9.45597 51.998 -60.0277 24.246 37.0634 -60.5519 11.3896 35.7436 -60.2776 26.5918 44.6467 -61.0071 25.4626 54.4929 -59.5273 9.00666 58.9948 -57.2808 21.3366 60.5555 -57.2059 -11.1972 57.2725 -56.9708 -22.2438 53.1256 -56.0203 -20.3457 43.0689 -57.3067 -12.1122 35.0371 -58.1689 -14.9222 59.3774 -55.2218 12.2904 31.7184 -59.1973 27.7581 35.2002 -59.4961 33.8971 44.4969 -59.5273 32.7486 55.5991 -57.9969 24.5692 62.5262 -55.8246 9.69026 62.3164 -55.2589 6.31009 84.6215 -9.59067 9.94086 84.9232 -20.0693 19.0219 85.0345 -27.4843 34.7653 85.0426 -29.4209 44.1941 85.119 -26.7866 50.8728 90.6708 -23.6459 25.0482 89.5646 -29.954 12.9607 89.423 -24.9078 5.25504 89.8204 -16.202 3.24726 88.5844 -2.72431 56.928 89.7848 -10.5352 -24.3405 11.4359 -38.3603 -12.0514 9.99387 -37.4698 -25.119 9.92937 -30.186 -35.4745 11.6324 -25.6774 -30.9667 10.1577 -16.9998 61 14.303 -32.6913 42.9826 11.5093 -37.4209 46.9722 14.2133 -40.7944 -19.5197 14.3549 -45.3897 -36.488 14.4595 -35.3605 -33.1887 18.5722 -44.2309 -44.1233 14.4447 -18.6976 -46.6619 18.3928 -28.2843 73.0378 18.3468 -22.5011 68.5692 23.4107 -36.0025 54.8395 22.7093 -45.7182 -26.8814 23.6917 -50.1401 -45.535 23.6628 -38.5063 -41.3718 29.3444 -46.7703 79.1575 29.1894 -23.6481 76.6804 23.4678 -23.1566 72.5633 35.1268 -37.3883 62.517 34.8109 -46.6606 81.5568 42.114 -24.311 80.6278 35.3877 -23.9899 65.2083 48.5511 -46.1149 73.84 48.5629 -37.3 80.6871 55.3477 -24.807 81.674 48.8988 -24.6283 60.7961 61.4452 -45.0316 70.7794 61.119 -36.7907 75.5475 66.5218 -24.6246 78.6126 61.265 -24.804 62.9885 71.049 -35.1951 66.8647 75.4648 -24.4251 71.4756 71.2009 -24.4489 -6.85692 76.1307 -33.2993 15.3904 76.124 -38.9186 -20.6749 74.9933 -28.8188 -18.659 77.1776 -18.9697 -8.319 78.3549 -24.2702 1.96458 81.2562 -18.3514 -55.843 81.314 -28.5504 -49.6254 89.3466 -22.4648 -44.4451 82.6048 -28.9686 -48.6808 77.2324 -34.5316 -64.3131 69.6573 -25.8984 -61.7107 81.899 -20.9783 -58.7835 70.7123 -34.1097 -58.4469 60.3879 -39.1736 -50.5077 68.7809 -40.6817 -54.183 45.9931 -42.2824 -63.8549 52.5711 -32.0063 -63.9335 60.729 -31.1655 -54.957 22.8131 -19.9766 -55.152 28.2115 -29.5499 -11.2032 39.4137 -59.029 -53.076 34.2815 -38.5249 -39.7533 37.3377 -50.1979 -63.1283 33.463 -20.1464 -14.2141 47.7244 -58.4915 -30.0695 77.3155 -20.5683 -21.5757 71.2928 -39.3886 -34.2579 73.9026 -30.84 39.2161 77.6454 -37.0836 52.7939 78.4766 -32.8685 29.7051 73.7336 -42.0511 25.218 79.3136 -35.8083 57.9394 81.7173 -23.2211 62.3879 78.9177 -24.2442 -40.3947 73.317 -36.5831 -38.6256 84.6334 -22.1512 -63.1328 42.5522 -27.8513 -68.0395 51.255 -18.387 -66.6864 57.5891 -24.6884 -46.719 55.3544 -48.0974 -67.0838 65.1042 -17.911 46.0958 83.2499 -28.6417 50.9529 87.3143 -20.6038 25.2513 81.0708 -33.3601 17.9216 83.2039 -29.0153 34.0372 87.1164 -29.0287 5.17719 83.0067 -10.4967 38.7965 10.0502 -33.6129 49.3922 10.0272 -27.3241 14.187 9.93604 -39.5629 27.7425 11.4278 -42.1534 55.0359 10.0176 -19.0023 15.6372 13.9546 -47.8631 32.7953 17.7996 -48.8099 18.8513 36.2745 -60.5645 10.861 39.7903 -60.8997 18.3879 44.3219 -61.3282 25.5709 40.1514 -60.9249 9.98461 48.0417 -60.7803 17.172 53.0256 -60.1664 26.7053 49.7018 -60.6231 9.02446 55.628 -58.8755 15.9709 59.969 -57.3289 23.2776 58.2326 -58.209 44.1377 66.4765 -47.442 32.9162 70.0487 -45.5996 -39.1943 64.8054 -45.7138 55.5401 55.5242 -49.7715 51.248 61.6595 -48.7462 56.0065 41.9561 -51.2803 57.0734 48.8091 -50.5693 46.5132 29.225 -51.505 52.5663 35.3329 -51.6029 17.5056 21.4015 -53.1414 35.7529 23.258 -51.4249 -24.8654 30.3579 -52.8774 -37.595 44.6801 -51.7631 -32.3879 37.056 -52.6379 -36.3175 56.5451 -50.6094 -38.0947 50.8613 -51.419 -25.0582 65.9138 -47.2878 -13.0315 55.2283 -57.5699 -29.5994 42.7331 -54.0504 -17.7196 32.1054 -55.3997 -31.0452 54.9518 -52.1567 14.4814 25.6447 -55.9766 35.6595 31.6265 -55.6473 45.0786 43.2372 -55.4835 44.2682 56.1306 -54.0718 32.613 65.3459 -51.8098 12.2638 66.6664 -50.3239 -16.8788 38.5536 -57.7812 -22.2779 48.1633 -56.692 20.9614 32.7638 -59.3975 31.7892 39.2914 -59.6303 34.2463 50.1711 -58.9927 17.7651 63.1379 -55.4049 29.3959 59.9275 -56.7944 -19.9928 57.0804 -55.4805 -7.23875 60.3598 -55.204 -5.65804 57.5512 -57.0761 -6.0065 51.3551 -59.049 -5.22208 43.4715 -59.8809 -3.96387 36.0409 -59.508 -5.15608 32.8988 -58.5686 -13.5854 23.9342 -52.6112 -9.06415 18.1577 -50.5723 -3.25877 11.387 -43.9714 -26.2193 42.6871 -55.6006 -28.5919 54.4558 -53.8865 -15.0875 33.3422 -56.7928 -18.825 61.9909 -52.8915 13.3618 27.7844 -57.7174 39.8055 43.952 -57.5439 31.8122 33.1212 -57.6826 38.9151 56.1492 -56.0878 28.5307 64.3375 -53.8731 10.8825 65.2576 -52.8604 -38.7872 11.7814 -10.3899 -51.3804 18.2081 -11.1306 75.9308 18.2734 -10.619 64.3713 11.5264 -10.1319 82.6956 29.1294 -10.748 85.6139 42.137 -11.5317 84.7924 55.3455 -12.4133 79.6343 66.3979 -12.9219 71.6684 75.6332 -12.7061 -25.2621 79.1542 -11.2952 -14.3624 78.3676 -10.5812 -55.4174 91.1379 -15.1558 -43.1913 92.0224 -14.9719 -65.5402 74.7902 -11.1558 -61.0434 28.0454 -11.3123 -32.6111 84.6875 -12.5304 -67.2833 42.4839 -10.9141 -68.8802 58.6841 -10.4374 0.543259 81.1205 -6.22162 9.52418 81.0708 -28.7966 8.37571 83.1824 -21.1125 5.53085 86.6678 -9.24443 6.35532 84.3783 -3.72153 9.91936 86.9399 -19.9543 7.46301 84.8157 -15.1358 19.1716 86.9829 -27.1848 13.7244 84.9789 -24.2465 35.0315 83.0667 -31.2656 26.1633 85.0641 -29.3275 42.8321 87.2394 -26.5835 54.4673 83.6613 -21.5529 52.1903 85.3592 -20.4029 -19.1772 9.97014 -34.5627 -29.0093 10.0524 -23.9684 -28.9966 14.3787 -41.6404 -41.4341 14.4313 -27.1351 68.2653 14.2141 -21.6559 -37.1724 23.751 -45.8917 49.1935 70.9503 -42.3484 -14.5648 76.6133 -27.0075 -49.8916 83.6109 -28.9872 -61.1227 76.1114 -27.2671 -55.0601 65.0337 -40.5186 -61.3029 55.8348 -36.2984 -51.2017 23.1727 -29.0783 -45.8464 35.4359 -46.3143 -58.6945 33.6906 -29.4149 -27.3062 73.8878 -30.3291 27.1279 76.7275 -38.8845 -39.6428 78.0687 -29.8339 -66.1326 51.3373 -25.8257 -45.1368 71.2869 -39.6934 -65.8464 63.4174 -25.0094 25.8474 83.1357 -30.877 12.1451 83.2039 -25.5855 25.4849 9.93826 -37.9992 30.078 14.1043 -45.7664 18.448 40.0625 -61.2347 17.9876 48.7616 -61.0605 16.2348 56.7727 -58.8674 -32.2767 62.0154 -49.2051 -13.9368 67.8282 -45.9206 -24.8684 37.0434 -54.8511 -31.525 48.8313 -53.174 26.4258 27.5071 -55.6637 23.2554 67.017 -50.8845 -10.1563 64.4547 -50.0444 -5.75739 54.7064 -58.2557 -5.8419 47.5145 -59.5984 -4.37907 39.5768 -59.8409 -5.9761 14.2111 -47.5917 -0.926239 9.96272 -39.5747 -28.5177 48.5533 -54.7769 -21.6936 37.4949 -56.2842 -25.4638 59.1765 -53.191 -6.8028 30.1029 -57.2111 37.0326 38.1125 -57.7227 23.7499 29.4563 -57.6722 40.6137 50.1599 -57.0286 34.858 61.1842 -54.92 20.4387 65.7863 -53.1414 -9.18353 63.1068 -52.8225 -31.7926 10.1666 -9.9777 -45.2866 14.5017 -10.8326 70.7816 14.2259 -10.5137 79.9368 23.3648 -10.642 84.3683 35.367 -11.0661 85.8037 48.9262 -12.0255 82.7112 61.2146 -12.6921 76.0168 71.4278 -13.3949 -20.2604 77.9924 -11.2248 -49.3845 92.9811 -15.3182 -60.8729 85.6046 -14.2238 -56.4851 22.8762 -11.2211 -64.3531 34.2467 -11.1677 -29.1309 81.0871 -11.445 -37.3177 89.3021 -14.5323 -69.0093 51.6317 -10.622 -67.6547 66.1837 -10.4878 5.71547 83.0356 -4.42811 57.0919 10.0917 -9.5929 6.03725 83.0742 -16.133 5.45968 86.1214 -3.26036 7.12048 86.8962 -15.0149 13.8867 86.9385 -24.0596 25.9809 87.0964 -28.959 -11.6043 122.781 8.68477 -11.2981 122.692 9.69681 -10.977 122.366 10.6888 -10.6656 121.82 11.586 -10.3765 121.078 12.3445 -10.1237 120.175 12.9302 -9.91827 119.156 13.3142 -9.77222 118.067 13.4803 -9.68768 116.96 13.4188 -9.67062 115.887 13.1341 -9.72327 114.899 12.6358 -9.85822 114.021 11.8907 -10.7227 112.914 8.71887 -11.1023 127.944 8.41562 -10.4921 127.767 10.4464 -9.85971 127.122 12.423 -9.24655 126.037 14.2114 -8.68082 124.561 15.7276 -8.18628 122.764 16.8946 -7.78964 120.733 17.6635 -7.49306 118.563 17.9719 -7.3344 116.363 17.8451 -7.30846 114.233 17.2735 -7.41818 112.273 16.2733 -7.69992 110.534 14.786 -8.2775 109.033 12.4727 -9.35776 108.08 8.5424 -9.95609 132.998 7.96262 -9.04932 132.737 10.981 -8.11142 131.781 13.9103 -7.20317 130.173 16.5602 -6.3661 127.988 18.8075 -5.64024 125.328 20.5468 -5.05821 122.318 21.6961 -4.64821 119.099 22.2025 -4.42282 115.824 22.0238 -4.39761 112.65 21.1845 -4.56294 109.746 19.6875 -4.97073 107.211 17.3891 -7.42485 103.383 8.21767 -8.20483 137.879 7.33685 -7.0141 137.537 11.2983 -5.78555 136.284 15.1374 -4.59557 134.176 18.611 -3.49826 131.313 21.5559 -2.54626 127.827 23.8351 -1.78407 123.883 25.3417 -1.24654 119.664 26.006 -0.958862 115.367 25.7954 -0.932175 111.202 24.7018 -1.15683 107.411 22.6977 -1.71957 104.094 19.6809 -4.90993 99.0215 7.7476 -5.87453 142.516 6.54797 -4.41762 142.098 11.3954 -2.91623 140.566 16.0879 -1.46082 137.989 20.3341 -0.119568 134.489 23.9337 1.04373 130.229 26.72 1.97571 125.407 28.5617 2.63261 120.249 29.3728 2.98405 114.998 29.1163 3.01297 109.897 27.8025 2.72233 105.248 25.381 2.00388 101.315 21.4907 -1.90344 95.1527 7.08847 -2.99854 146.84 5.6071 -1.29695 146.353 11.2694 0.45578 144.564 16.7478 2.15439 141.556 21.7035 3.72029 137.47 25.9059 5.07858 132.497 29.1585 6.16626 126.869 31.3079 6.93364 120.848 32.2555 7.3429 114.718 31.9552 7.37701 108.764 30.4219 7.02557 103.335 27.5927 6.15958 98.8146 22.9217 1.31064 91.5316 5.92221 0.38089 150.789 4.52833 2.30194 150.239 10.9231 4.28081 148.22 17.1066 6.19814 144.825 22.7007 7.96496 140.213 27.4444 9.49823 134.6 31.1152 10.7268 128.246 33.5419 11.592 121.45 34.611 12.0547 114.531 34.2722 12.0932 107.81 32.5417 11.6995 101.628 29.4492 10.7461 96.4739 24.1724 4.21408 154.305 3.32648 6.32714 153.7 10.3604 8.50323 151.481 17.1593 10.6111 147.749 23.3102 12.5537 142.677 28.5254 14.2397 136.505 32.5617 15.5905 129.519 35.2301 16.5418 122.048 36.4053 17.0504 114.439 36.0331 17.0919 107.05 34.1306 16.6589 100.258 30.74 15.7233 94.7279 25.791 8.4454 157.338 2.02082 10.7201 156.687 9.59079 13.0608 154.299 16.9057 15.3288 150.283 23.5229 17.4189 144.827 29.1348 19.2332 138.186 33.4774 20.6856 130.67 36.3481 21.7103 122.631 37.6123 22.2575 114.445 37.2119 22.3019 106.495 35.1648 21.8259 99.2209 31.4888 20.825 93.3985 26.5962 13.0133 159.842 0.628418 15.4163 159.154 8.62471 17.8875 156.633 16.3489 20.283 152.392 23.3369 22.4903 146.631 29.2623 24.4054 139.618 33.8481 25.9394 131.682 36.879 27.0211 123.193 38.2151 27.5987 114.549 37.7917 27.6461 106.153 35.6297 27.1561 98.4202 31.8069 26.2026 92.3353 26.7949 17.8512 161.781 -0.829224 20.3468 161.067 7.47549 22.9136 158.449 15.497 25.4011 154.045 22.7534 27.6929 148.063 28.9072 29.6814 140.78 33.6686 31.2747 132.539 36.8168 32.3972 123.724 38.2032 33.0378 114.732 37.7776 33.1394 106.004 35.5511 32.5863 97.9694 31.5919 31.965 91.3737 26.2299 28.0317 162.761 5.43213 30.6652 160.074 13.6627 33.218 155.556 21.1096 35.5698 149.416 27.4236 37.6109 141.943 32.3103 39.2458 133.487 35.5408 40.3779 124.44 36.8931 41.0778 115.182 36.3645 41.3685 106.251 34.3441 40.5714 98.0124 30.0964 39.483 90.8428 24.5869 25.47 163.494 -3.09354 33.2647 163.97 -5.38011 35.8181 163.241 3.11665 38.442 160.564 11.3176 40.9852 156.062 18.737 45.5605 150.164 24.1539 46.9596 143.512 28.5313 48.7731 136.143 30.9839 48.1273 125.112 34.1698 49.5294 116.289 34.2469 49.9179 107.113 32.426 48.6893 98.8206 27.8254 47.2243 91.628 22.178 38.4532 163.455 -6.88224 40.9503 162.742 1.42916 43.5171 160.123 9.45065 47.7967 155.173 17.3906 53.1913 129.392 30.4605 57.4434 120.187 30.353 57.7555 108.881 29.1971 56.501 100.349 24.8901 54.4406 93.4897 18.651 43.5401 162.322 -8.34137 45.9453 161.636 -0.335434 50.4154 158.124 9.95186 48.4521 160.589 -9.73451 50.7305 159.939 -2.15119 54.3182 157.614 6.23138 63.8033 119.565 25.3861 63.9101 110.06 24.7226 62.901 102.219 20.9027 60.7679 96.0876 14.7059 53.1171 158.28 -11.0416 55.2347 157.675 -3.99215 58.19 155.872 2.80748 67.2969 119.573 21.0355 67.7537 111.25 20.0049 67.3733 103.92 17.1459 65.043 98.1407 11.5222 57.4671 155.429 -12.245 59.394 154.879 -5.83163 62.1915 152.982 0.103493 69.6977 119.848 16.5973 70.8076 112.269 15.649 70.4413 106.039 12.8968 68.5447 100.725 8.19913 61.4382 152.077 -13.326 63.1457 151.59 -7.6422 65.78 149.427 -2.04368 72.9933 113.56 10.1899 72.6093 109.123 7.23009 71.4208 102.692 -5.93692 66.1158 146.314 -14.556 67.6306 145.656 -8.87371 68.937 144.641 -4.73136 71.1249 140.238 -3.87204 72.9303 135.432 -3.25369 73.955 129.872 0.956131 73.8222 124.051 6.88754 69.9913 140.169 -15.5436 71.876 138.749 -9.69077 -11.3759 117.634 8.77818 63.3644 132.244 19.7795 58.7861 144.777 19.4836 67.0122 129.764 16.8798 70.6155 138.855 5.83472 63.4756 148.383 9.49515 62.8195 133.184 17.464 65.3848 131.323 15.0306 58.8061 141.77 16.8434 60.1659 137.06 18.4575 67.3103 131.311 12.1873 59.8997 144.627 13.2097 68.6945 133.697 9.63008 62.6779 144.573 10.0134 68.5944 137.783 7.94185 66.1373 141.972 8.0323 63.5846 133.449 17.7798 66.1373 131.523 15.497 59.6002 142.393 17.3936 68.0977 131.472 12.4801 69.5345 133.885 9.64862 63.3399 145.241 10.1906 69.4233 138.273 7.76169 66.8358 142.631 7.99524 70.3049 128.194 12.73 72.5233 132.983 6.70811 70.8876 139.701 3.88477 57.3232 138.168 24.4749 62.3546 131.157 22.7541 67.3926 146.279 4.41341 62.6852 151.575 8.16354 58.5355 152.152 14.7897 56.0087 147.327 21.699 67.4163 128.203 18.5732 61.7689 138.738 16.9517 60.1192 142.066 15.9826 64.1066 135.62 16.4201 65.946 133.39 14.7222 67.2903 132.939 12.8657 68.2793 135.009 11.4955 67.7633 138.355 10.7993 65.6517 141.685 10.9157 62.861 143.967 11.7343 60.6115 144.197 13.6175 60.9733 137.35 18.8824 60.8999 145.33 13.6701 65.4233 132.097 14.9091 64.194 132.052 16.3667 63.0381 133.984 17.1452 60.5626 137.576 18.0038 59.2072 139.485 18.0623 59.179 141.815 16.5439 61.4122 134.887 18.1943 67.2154 132.019 12.4453 66.4087 131.047 13.613 59.0411 143.572 15.1678 60.1096 144.464 13.3409 68.5151 134.306 10.3248 68.0821 132.189 10.829 61.149 144.974 11.4258 62.7831 144.363 10.5976 68.2882 138.059 8.96576 68.9548 135.624 8.61655 64.3898 143.534 8.86493 66.015 141.892 9.0614 67.5801 139.948 7.72906 62.5229 143.343 13.2497 61.0674 143.946 13.8533 64.8184 141.126 13.1519 66.8854 138.187 12.9695 67.3889 133.651 13.1986 66.7994 134.635 14.1328 65.5909 137.242 14.9847 63.4504 140.109 15.2998 61.4471 142.587 14.915 69.5049 129.705 12.5735 72.1177 136.32 4.77299 71.5801 133.393 8.20432 59.2932 134.201 23.8217 59.9546 137.579 21.2023 65.0801 149.359 5.97188 67.3192 144.395 6.27661 56.9459 150.409 18.5398 60.5959 148.729 14.5628 56.1303 142.947 23.7928 65.2135 129.283 20.9902 68.9562 127.783 15.7988 69.2988 142.988 3.69571 60.547 152.61 11.1863 71.7477 130.025 9.56706 72.9533 131.626 4.33482 71.3592 125.34 12.6099 70.8958 140.288 0.80043 60.4142 128.485 25.3476 53.3566 137.368 28.099 60.1785 154.454 5.65604 66.8521 148.152 1.54631 50.4599 149.321 23.457 54.4777 155.19 14.0957 66.8083 125.61 19.6379 60.7657 140.445 16.6648 62.9418 137.1 16.8738 65.1157 134.361 15.6497 66.6044 132.832 13.8036 67.9094 133.728 12.0538 68.246 136.622 11.0736 66.8721 140.078 10.7355 64.2593 143.015 11.2634 61.6205 144.401 12.4393 60.0361 143.345 14.9402 62.2167 135.13 18.5205 60.0235 144.253 15.7061 59.9835 139.927 18.519 64.9258 132.28 16.7923 67.1776 131.236 14.0179 68.9044 132.335 10.9928 69.7696 135.952 8.50682 68.3794 140.573 7.55853 64.9874 144.212 8.9287 61.9957 145.611 11.7513 64.3364 132.866 16.125 59.6128 139.75 17.5893 61.7458 135.583 17.8214 66.3694 131.791 13.6738 59.3318 143.457 15.0788 67.9657 132.894 11.3154 61.3218 144.772 11.7684 68.6738 136.094 9.51442 64.4194 143.374 9.69681 67.3615 140.039 8.78485 61.7844 144.005 13.1407 63.6091 142.365 13.2305 65.9438 139.693 13.0347 67.4912 136.673 12.9257 66.9492 133.714 13.8169 66.3464 135.861 14.5969 64.5685 138.672 15.2167 62.3546 141.447 15.1878 60.8028 143.341 14.6881 70.7571 131.099 10.3129 71.4393 136.084 6.66586 61.5272 134.531 20.6551 65.2209 146.715 7.63861 59.5052 147.331 17.3142 58.8328 141.204 20.8056 65.3699 130.706 18.6303 68.3045 129.387 14.7556 69.1838 141.704 5.63008 61.9527 149.098 11.8158 72.6026 127.566 8.47568 72.3965 136.097 1.70497 56.5247 132.614 27.6949 63.6929 151.685 3.08774 52.022 153.009 18.9305 51.1249 144.226 26.8356 63.9865 126.508 22.5154 69.2202 125.238 16.535 69.0541 144.317 0.692924 57.2187 155.661 9.56113 67.741 135.282 12.8723 67.7907 134.283 12.7419 71.6609 136.111 -15.9358 72.3201 105.969 -15.2641 74.0417 117.157 -16.1597 75.2065 106.525 -16.2769 79.8634 107.308 -17.6552 91.3867 109.457 -21.1013 88.3001 106.164 -20.0804 79.2991 114.295 -17.6596 83.595 107.064 -18.7273 84.1132 113.461 -18.9875 85.3967 106.488 -19.2404 74.3568 135.883 -16.7173 78.9611 134.305 -18.0244 82.9529 133.126 -19.1618 84.9244 134.248 -19.7638 86.99 136.683 -20.4237 90.4947 139.433 -21.5114 93.7133 139.447 -22.4507 94.9967 133.968 -22.6969 95.4994 138.023 -22.9393 92.0955 130.536 -21.7701 88.3638 126.832 -20.5942 85.6599 124.96 -19.7608 81.4537 123.062 -18.4885 74.8654 115.813 -16.3999 75.0456 119.162 -16.437 77.3477 106.901 -16.9108 90.4702 107.067 -20.7351 76.8324 114.944 -16.9597 81.866 106.977 -18.232 81.8267 113.709 -18.3173 87.5994 113.172 -20.0641 72.8517 136.463 -16.4526 76.6211 135.168 -17.3616 81.0749 133.56 -18.6235 84.1259 133.478 -19.5125 85.7941 135.222 -20.0404 95.5972 136.005 -22.9201 93.7963 132.209 -22.3054 90.1255 128.604 -21.1495 87.0197 125.694 -20.1745 83.7714 124.169 -19.1907 77.8207 121.529 -17.3927 90.9181 111.196 -21.0087 72.5032 108.223 -2.09484 75.2258 128.38 -2.75545 73.0089 134.723 -11.6266 74.987 120.808 6.20024 75.9205 117.527 -9.42607 74.9633 116.553 -9.73895 78.1707 127.11 -4.45851 76.4373 109.876 3.38505 75.8359 108.157 -4.45555 81.7666 127.621 -5.91393 76.6804 114.045 7.19746 76.6345 120.205 6.07716 82.3917 119.936 3.28125 80.7256 108.785 -7.12913 83.5075 117.685 2.46864 82.9974 115.277 1.76725 92.4261 111.042 -14.8022 90.3783 110.634 -9.15768 95.4037 129.402 -7.5814 96.0984 136.789 -17.4832 82.3405 119.579 -9.26593 80.8413 115.369 -9.65369 85.2625 124.587 -1.81087 84.8272 129.21 -7.48057 85.7451 117.806 -3.52579 86.8232 121.414 -9.52765 85.9097 118.886 0.325172 87.199 131.776 -9.16064 88.7516 134.416 -11.1099 90.1003 121.341 -5.78863 94.2515 126.991 -9.62626 89.9564 123.624 -10.2795 92.7753 126.838 -11.8772 90.8128 122.536 -2.9371 84.8317 108.856 -9.63812 86.0135 114.746 -2.76731 86.5792 108.162 -11.0609 90.7371 125.097 -2.53673 73.043 106.875 -10.3143 75.0849 116.366 -9.04127 75.9716 116.037 -9.92357 74.6763 117.226 -13.3023 76.6107 127.495 -3.81347 75.8715 107.338 -10.9986 74.2945 131.787 -6.83849 77.6673 130.92 -7.97213 79.9509 127.383 -5.12654 76.4239 117.364 7.49699 79.6098 120.36 4.88643 79.5468 114.305 5.90663 78.3479 108.471 -5.80049 80.1169 108.117 -13.6233 81.3351 130.611 -9.06203 83.483 116.149 2.62879 83.0011 114.026 3.50368 91.761 108.672 -14.126 92.1266 109.889 -18.0081 93.8845 131.645 -7.45462 96.1799 134.037 -11.4887 81.9698 117.706 -6.57603 78.9833 118.659 -9.33636 78.2737 115.773 -9.7916 81.6235 116.026 -5.37269 79.8693 114.493 -14.8934 83.5372 128.01 -6.78511 83.5372 116.896 -3.09725 86.2686 119.313 -6.65833 84.7701 120.477 -9.37344 85.7155 117.814 -1.09836 82.8336 116.065 -0.2435 84.0376 118.31 1.24899 82.4806 122.05 -11.5955 87.1182 124.405 -12.0018 88.0999 133.229 -10.2009 92.2897 123.818 -7.20253 93.4241 126.82 -10.8934 91.5661 125.3 -11.0513 89.9394 122.25 -7.90022 90.4806 121.459 -4.05592 93.4426 125.358 -4.55564 95.0537 127.861 -8.4207 86.6067 133.598 -11.5288 88.5707 135.852 -12.9256 89.8207 126.465 -12.6372 92.9117 128.817 -13.9117 95.0404 130.344 -13.2941 82.9299 109.011 -8.36213 85.6702 113.376 -2.09262 83.9642 114.927 -0.734322 83.2265 115.122 -10.3417 85.751 115.129 -7.31301 84.1511 107.994 -14.6242 84.6693 113.83 -16.0203 88.6597 113.95 -5.64331 88.16 112.314 -5.20661 87.6284 114.616 -8.44739 91.1709 112.257 -10.1186 89.261 107.896 -12.7825 84.4929 131.425 -10.2884 88.4714 122.412 -9.79086 88.4424 120.148 -1.065 85.9995 121.323 0.560211 86.1099 130.434 -8.26055 87.8345 118.872 -4.42515 91.1968 133.419 -9.01013 88.8191 128.275 -4.56676 81.5976 122.873 0.828606 76.9644 122.205 2.94316 81.4612 110.902 -0.296883 85.7392 110.723 -3.63627 75.9894 134.176 -12.4407 80.1251 132.842 -13.5803 83.9442 132.485 -14.6398 85.946 134.022 -15.3694 88.0213 136.327 -16.4059 91.3103 138.582 -16.933 94.3976 138.399 -17.1755 95.3962 132.764 -17.8798 92.8436 130.018 -17.5358 89.2928 126.974 -16.3569 86.4413 124.91 -15.6051 82.4754 123.01 -14.5108 91.896 112.486 -14.9156 82.8751 115.658 -0.544518 86.2805 115.188 -4.50003 76.1644 116.572 -8.83145 75.4185 115.882 -13.8516 76.0488 119.438 -12.6624 75.6543 131.457 -7.41829 79.4986 117.656 6.72963 79.0322 110.008 1.65974 78.0128 107.635 -12.0211 79.5268 130.758 -8.47779 82.1877 117.111 4.66623 91.3177 107.267 -17.6789 94.3523 135.804 -11.3701 79.199 116.397 -7.74822 77.416 115.064 -14.3959 84.1318 118.571 -6.36101 83.3881 117.034 -0.32283 85.0712 123.225 -11.8706 91.807 124.332 -9.03386 92.9703 124.047 -5.59067 87.5542 134.782 -12.3095 91.394 127.808 -13.2948 94.0891 129.464 -13.8324 83.6906 111.07 -2.07482 83.6929 113.909 0.096817 83.6402 115.586 -6.22978 82.2292 108.145 -14.0185 82.2626 114.108 -15.3812 85.9475 107.439 -15.3597 88.2578 113.456 -17.1125 88.2163 114.084 -11.2463 88.9763 106.666 -16.7455 83.1168 130.614 -9.81607 88.5233 125.332 -12.2287 88.5596 122.718 -0.990116 88.1236 120.568 -7.14322 91.5424 136.545 -12.2591 90.1959 130.708 -6.46555 83.1835 123.375 -0.566017 79.5957 122.783 1.99635 74.3672 117.295 7.88031 87.5631 110.072 -6.37584 74.1744 134.769 -11.9588 77.8467 133.564 -12.9456 82.0565 132.388 -14.1586 85.1416 133.114 -14.9897 86.8728 135.108 -15.8513 96.088 134.721 -17.6366 94.3716 131.254 -17.9443 90.9752 128.478 -16.8885 87.8886 125.817 -15.9581 84.6456 124.017 -15.1551 78.798 121.528 -13.6567 91.6357 111.58 -17.9377 84.2971 115.519 -2.50114 83.7426 120.625 1.77541 88.5833 114.451 -6.97195 88.0828 118.976 -2.26166 92.4098 128.085 -4.46593 90.9233 113.198 -10.8133 95.8359 131.912 -12.44 88.8584 109.104 -9.27186 75.6269 121.857 3.65715 78.5266 120.452 -11.3783 85.7325 132.479 -10.7807 87.2109 126.227 -3.03349 82.3865 115.792 -3.39975 85.5323 114.683 -10.7629 88.5351 113.906 -14.361 85.1809 114.135 -13.5766 82.7372 114.618 -13.0324 80.3171 114.815 -12.4815 77.8096 115.265 -12.0804 75.7054 115.895 -11.7089 74.7512 116.96 -11.2522 75.744 118.732 -10.8711 69.843 141.836 -9.30819 67.9679 143.189 -15.0231 72.8213 119.941 10.9157 71.6506 104.986 0.684029 69.456 100.727 -14.47 73.995 114.29 6.9995 73.1142 110.85 3.56299 72.9748 136.288 -10.6843 71.3295 137.732 -15.8765 71.3963 104.177 -15.1099 74.1581 133.103 -5.27631 75.2109 128.825 -1.40012 75.073 122.123 6.21136 74.2901 118.616 8.83824 74.0083 114.133 7.99301 73.4597 110.347 4.91832 72.8198 106.93 -0.967873 82.4554 113.29 2.18171 79.572 111.521 3.2642 80.1607 112.304 4.14649 -10.1429 113.254 10.7089 72.7842 105.382 -7.25814 -5.83078 104.99 14.0223 -2.85619 101.143 15.3198 0.690811 97.9167 16.3207 4.67302 94.8688 16.9057 66.3361 95.2358 0.153168 -11.892 122.645 7.67271 -12.1529 122.274 6.67995 -12.3643 121.685 5.78059 -12.534 120.909 5.0184 -12.626 119.978 4.42898 -12.646 118.938 4.04047 -12.5956 117.84 3.87142 -12.4777 116.734 3.92851 -12.2953 115.674 4.20803 -12.0595 114.707 4.70033 -11.7659 113.862 5.43361 -11.6777 127.672 6.3856 -12.1989 126.934 4.40896 -12.6304 125.765 2.6199 -12.9514 124.219 1.10294 -13.1465 122.369 -0.071487 -13.2072 120.301 -0.848503 -13.1242 118.113 -1.18808 -12.8996 115.91 -1.07389 -12.5437 113.798 -0.511894 -12.0803 111.876 0.468269 -11.5131 110.201 1.90664 -10.7279 108.684 4.35558 -10.8109 132.596 4.94501 -11.5843 131.502 2.01563 -12.2226 129.769 -0.634972 -12.6979 127.479 -2.88298 -12.987 124.738 -4.62311 -13.0768 121.674 -5.77454 -12.9633 118.431 -6.28242 -12.6504 115.16 -6.12376 -12.1492 112.018 -5.30077 -11.4627 109.168 -3.83942 -10.636 106.694 -1.7434 -9.32736 137.352 3.37615 -10.3401 135.919 -0.462959 -11.1772 133.648 -3.93729 -11.8 130.646 -6.88298 -12.1796 127.054 -9.1636 -12.2968 123.039 -10.6717 -12.1477 118.789 -11.3375 -11.7385 114.502 -11.1299 -11.0883 110.379 -10.0578 -10.1881 106.649 -8.12857 -9.11383 103.415 -5.39493 -7.24765 141.871 1.70126 -8.48584 140.119 -2.99197 -9.509 137.344 -7.23812 -10.2704 133.674 -10.8392 -10.7339 129.283 -13.627 -10.8777 124.375 -15.4702 -10.6953 119.179 -16.2843 -10.1948 113.94 -16.03 -9.38 108.916 -14.6924 -8.24042 104.41 -12.2576 -6.81169 100.55 -8.6587 -4.60298 146.087 -0.054435 -6.04802 144.042 -5.53284 -7.24321 140.802 -10.4893 -8.13144 136.519 -14.6932 -8.67267 131.393 -17.9473 -8.84024 125.664 -20.0997 -8.62744 119.599 -21.0494 -8.04318 113.482 -20.7529 -7.08603 107.625 -19.1759 -5.77963 102.353 -16.3577 -4.12698 97.8226 -12.2769 -1.43115 149.939 -1.86574 -3.0623 147.631 -8.04924 -4.41095 143.974 -13.6441 -5.41411 139.139 -18.3892 -6.02504 133.353 -22.0622 -6.21411 126.886 -24.4919 -5.97388 120.04 -25.564 -5.31401 113.136 -25.2289 -4.25377 106.509 -23.4776 -2.81467 100.514 -20.3577 -0.857285 95.3878 -15.9247 2.22112 153.371 -3.70596 0.427597 150.832 -10.5049 -1.05525 146.812 -16.6565 -2.15849 141.496 -21.8739 -2.82948 135.134 -25.9124 -3.03783 128.024 -28.5838 -2.77313 120.497 -29.7627 -2.04877 112.906 -29.3942 -0.897324 105.606 -27.4954 0.658188 98.9955 -24.1115 2.66969 93.7269 -19.7623 6.30045 156.332 -5.54841 4.37052 153.602 -12.8633 2.77497 149.275 -19.4821 1.58868 143.556 -25.0954 0.866531 136.711 -29.4409 0.642624 129.061 -32.3147 0.926575 120.963 -33.5833 1.70657 112.796 -33.1866 2.9455 104.941 -31.144 4.64336 97.9398 -27.491 6.69341 92.8958 -23.465 10.7483 158.78 -7.36639 8.71009 155.896 -15.0906 7.02557 151.328 -22.08 5.77182 145.289 -28.0077 5.00963 138.061 -32.5957 4.77312 129.983 -35.6311 5.07339 121.431 -36.9701 5.89712 112.807 -36.5512 7.20499 104.513 -34.3944 9.05486 97.2925 -30.556 11.2406 92.5807 -26.9734 15.4979 160.678 -9.13321 13.3818 157.684 -17.1547 11.6321 152.94 -24.4125 10.3309 146.669 -30.5671 9.53901 139.163 -35.3323 9.29359 130.775 -38.4834 9.60574 121.895 -39.8743 10.4606 112.939 -39.4398 11.8189 104.326 -37.2 14.0588 96.9514 -33.3467 16.6434 92.4725 -29.9718 23.0545 162.362 -11.6177 20.8829 159.289 -19.8483 19.0871 154.421 -27.2967 17.7525 147.986 -33.6129 16.9392 140.284 -38.5019 16.6871 131.675 -41.736 17.0074 122.563 -43.1632 17.8853 113.373 -42.7169 19.2791 104.535 -40.4185 21.2106 97.0107 -36.2628 23.42 92.7149 -32.4103 30.8573 162.843 -13.8754 28.6938 159.781 -22.0763 26.9055 154.931 -29.4973 27.9242 148.749 -36.2635 26.8335 141.896 -40.4148 27.1308 134.403 -43.1558 24.8332 123.19 -45.306 25.7073 114.033 -44.8611 27.096 105.227 -42.5709 28.977 97.7766 -38.3173 31.01 93.1798 -33.7501 36.0984 162.352 -15.1936 33.9816 159.358 -23.2144 33.3826 154.015 -31.9877 31.2043 127.797 -45.1888 41.2721 161.261 -16.3458 39.5527 157.252 -27.2589 34.1114 118.081 -46.7154 35.274 106.958 -44.7195 36.8836 99.3018 -39.4702 38.9366 94.263 -33.7738 46.3034 159.583 -17.3163 44.8502 156.854 -26.2038 42.5748 117.521 -46.6924 42.9789 108.591 -45.2964 44.501 100.951 -40.6187 47.291 94.8665 -33.4268 51.1197 157.345 -18.0904 49.9772 155.213 -25.3275 48.2059 117.708 -45.7612 48.7168 109.961 -44.0908 50.3568 102.509 -40.027 53.4827 96.7468 -32.9174 55.6498 154.578 -18.6568 54.8409 152.392 -25.0769 52.7864 118.209 -43.2581 53.6228 111.351 -41.2941 55.2413 104.656 -38.0407 58.7364 99.47 -31.8202 59.8286 151.323 -19.0083 59.0656 148.888 -25.0487 58.6371 112.647 -37.2162 60.0213 108.358 -34.3455 66.7364 101.215 -23.2055 64.3461 145.393 -20.1264 63.2939 144.171 -24.2324 64.6093 139.563 -25.8976 66.0209 134.24 -27.224 64.8265 128.137 -31.0498 61.4092 121.344 -36.0211 68.4454 138.292 -21.5291 45.453 130.809 -41.5454 41.6524 143.401 -39.21 50.101 128.433 -40.9145 59.0129 137.957 -33.7931 50.9314 147.376 -33.4765 46.2433 131.854 -39.2708 49.7303 130.061 -38.4737 43.1271 140.511 -36.8678 43.4601 135.718 -38.774 52.9147 130.138 -37.0872 45.9668 143.509 -34.5197 55.443 132.636 -35.7653 50.0284 143.557 -33.3201 56.2208 136.784 -34.4582 54.0432 141.001 -33.4001 46.726 132.091 -39.9847 50.1181 130.245 -39.3182 43.4927 141.099 -37.7857 53.4219 130.291 -37.7879 56.1362 132.807 -36.2509 50.4828 144.208 -33.8546 57.0422 137.29 -34.817 54.643 141.653 -33.7723 55.0842 126.961 -39.0439 60.0643 131.807 -35.2485 60.3282 138.873 -32.42 37.8104 136.599 -42.3736 42.95 129.62 -43.6504 57.0126 145.449 -31.2322 50.941 150.632 -32.0693 43.8723 150.975 -35.442 38.0876 145.889 -39.6926 49.5108 126.802 -42.685 45.605 137.439 -38.4211 44.6923 140.828 -36.8618 47.893 134.316 -39.1277 50.3776 132.134 -38.6198 52.5225 131.75 -37.7278 54.0743 133.869 -37.1666 53.9713 137.248 -36.4482 52.0865 140.596 -35.554 49.2647 142.875 -34.8407 46.3531 143.052 -35.2278 43.9086 135.978 -39.5785 46.5533 144.179 -35.4761 49.8356 130.846 -38.4441 47.9983 130.76 -39.0142 46.6052 132.656 -39.1566 44.0339 136.249 -38.6168 42.8387 138.17 -38.0111 43.6017 140.564 -36.8188 44.6634 133.535 -39.1929 52.6931 130.851 -37.3023 51.3763 129.845 -37.8198 44.2029 142.382 -35.6615 46.0758 143.337 -34.7362 54.9106 133.214 -36.2776 54.299 131.078 -36.3859 47.9753 143.917 -33.7041 49.8059 143.321 -33.8591 55.4037 137.025 -35.1736 56.1837 134.599 -35.1328 52.1021 142.547 -33.2281 53.387 140.878 -34.1972 55.4482 138.973 -33.8331 48.1733 142.19 -35.9091 46.6141 142.785 -35.6607 50.1892 139.952 -36.9649 52.0658 136.997 -37.7961 52.4194 132.447 -38.0845 51.4089 133.398 -38.5931 49.903 135.983 -38.7555 47.893 138.861 -37.994 46.3798 141.377 -36.6995 54.5637 128.486 -38.5583 60.8235 135.305 -33.5811 58.5718 132.382 -36.0552 39.8159 132.627 -42.8845 41.7955 136.119 -41.0087 54.1663 148.483 -31.4153 55.9539 143.477 -32.6654 40.5373 149.092 -37.6693 45.7748 147.539 -36.2109 37.1201 141.421 -41.3319 46.3145 127.804 -43.6823 52.3171 126.477 -40.9857 59.1168 142.133 -31.5495 47.4993 151.562 -33.5084 58.2159 128.907 -37.3334 61.9319 130.28 -33.5996 55.9843 124.214 -39.8068 61.9357 139.512 -29.8517 40.0547 127.159 -44.8752 32.5262 135.693 -43.2641 50.1396 153.648 -28.7343 58.0699 147.457 -28.6001 32.4395 147.874 -38.275 40.7865 154.09 -32.8062 48.5485 123.891 -44.2502 44.8917 139.171 -37.7145 46.6541 135.791 -38.9245 49.1683 133.076 -38.9875 51.4356 131.609 -38.169 53.4767 132.569 -37.389 54.253 135.498 -36.8633 53.2321 138.983 -35.9892 50.709 141.926 -35.1558 47.8345 143.294 -34.7866 45.1675 142.152 -35.9951 45.1713 133.754 -39.9113 44.7331 143.025 -36.6728 43.2421 138.583 -38.8326 48.3979 130.967 -39.812 51.8085 130.009 -38.6079 54.898 131.214 -36.9842 56.9414 134.926 -35.5317 56.2052 139.595 -34.146 52.5633 143.214 -33.6329 48.5055 144.528 -34.4611 48.2504 131.567 -38.9341 43.4311 138.451 -37.8428 45.1446 134.246 -39.058 51.3088 130.573 -37.8872 44.498 142.267 -35.7379 53.9312 131.767 -36.7632 47.939 143.698 -34.0771 55.4586 135.033 -35.7586 51.6817 142.351 -33.9384 54.6942 139.021 -34.6087 47.6009 142.867 -35.4487 49.1112 141.201 -36.4341 51.2183 138.511 -37.4098 52.6196 135.479 -38.0192 51.7129 132.488 -38.381 50.7646 134.609 -38.7822 48.8984 137.414 -38.4633 47.013 140.215 -37.3683 45.949 142.148 -36.1946 56.8747 130.003 -37.3653 59.271 135.122 -34.8148 43.4222 133.063 -41.3875 53.4219 145.768 -32.7803 43.3933 146.037 -37.8806 41.0259 139.775 -40.1938 47.7811 129.312 -41.5937 52.3542 128.12 -39.7631 57.9468 140.752 -33.0391 48.3905 148.009 -34.6435 59.466 126.101 -36.8574 62.769 134.918 -31.1499 35.337 130.917 -44.7544 54.5184 150.949 -28.3414 36.1436 151.734 -35.4628 31.2473 142.63 -41.2578 44.4825 124.75 -45.068 52.223 123.767 -42.08 60.3461 143.735 -29.0309 45.5294 154.723 -30.4826 52.8762 134.088 -38.0496 52.9993 133.095 -37.9288 65.4323 107.528 -26.9171 67.9487 126.833 -28.5074 70.5081 134.319 -20.2732 62.6749 119.616 -35.7438 72.6589 117.278 -23.098 72.2444 116.442 -22.3254 71.3889 125.795 -28.3703 65.5901 109.029 -33.5959 69.3603 107.637 -26.6398 75.0515 126.757 -29.2103 63.5342 113.12 -36.9642 64.2148 119.206 -36.4696 70.5985 118.958 -37.1681 74.9121 108.319 -27.0453 71.9998 116.742 -36.9872 71.9612 114.391 -36.0381 88.8094 110.578 -26.9527 84.1169 110.131 -30.6072 87.2695 128.749 -35.4465 93.0867 136.547 -27.8016 77.576 118.913 -26.6205 76.2215 114.981 -25.3972 75.678 123.817 -34.645 78.3012 128.686 -29.8368 77.0845 117.097 -33.174 81.2906 120.822 -28.8656 75.1464 118.021 -36.546 81.172 131.293 -29.8079 83.4949 133.994 -29.1154 81.9364 120.685 -33.7567 87.4282 126.444 -33.002 84.2007 123.162 -29.9962 87.3956 126.405 -30.3062 80.9881 121.747 -36.5927 79.7217 108.446 -27.144 76.8458 113.737 -33.7746 81.9683 107.792 -26.8548 80.6767 124.289 -36.9998 70.1714 106.645 -20.1493 72.022 116.241 -22.9037 72.8888 115.884 -22.6383 73.3892 117.141 -19.0068 69.7533 125.895 -28.1175 72.9185 107.101 -21.1147 69.1965 130.484 -24.8144 72.6997 129.897 -25.4795 73.1742 126.294 -28.81 63.1531 116.358 -37.3542 67.3688 119.359 -37.0517 66.7935 113.286 -37.5877 72.197 107.977 -26.8719 77.8994 107.939 -21.2215 76.3201 129.88 -26.4826 71.9026 115.225 -37.0598 71.0463 113.066 -37.4483 87.9791 108.369 -27.0824 90.3568 109.787 -24.1197 85.8919 131.003 -34.834 89.9668 133.538 -32.7744 75.3807 117.261 -28.6335 74.2589 118.273 -24.8974 74.5081 115.555 -23.9173 74.7186 115.201 -29.2771 78.273 114.414 -20.2702 76.9377 127.337 -29.5447 74.9877 116.19 -32.3036 79.228 118.61 -30.8741 79.7455 119.59 -27.752 75.7618 117.015 -35.1966 72.8947 115.268 -34.2906 73.0867 117.445 -36.2917 78.8617 122.15 -25.111 82.7305 124.079 -27.0743 82.4725 132.777 -29.4795 84.5114 123.193 -33.8509 87.4141 126.338 -31.4821 85.952 124.849 -30.2847 82.9247 121.687 -31.9314 81.3232 120.724 -35.4257 84.0399 124.603 -36.7655 87.4445 127.25 -34.4856 81.9223 133.222 -27.574 84.3016 135.509 -27.551 85.3181 126.104 -28.0604 88.5803 128.469 -28.7521 90.0231 129.941 -30.4819 77.43 108.57 -27.2025 76.3149 112.625 -34.143 74.121 114.113 -34.4307 78.5236 114.752 -26.0741 79.2235 114.861 -29.7308 81.84 107.809 -22.5419 82.8432 113.477 -21.7471 80.6945 113.198 -32.7484 80.1006 111.667 -32.8137 81.4167 114.445 -29.7768 85.2891 111.653 -30.1957 85.1586 107.567 -26.8363 79.5016 131.024 -27.3879 82.7149 121.901 -29.5647 78.0128 119.311 -36.7914 75.0649 120.445 -36.8974 79.7863 129.926 -29.9221 79.3229 118.187 -33.5803 84.4402 132.877 -32.1553 80.111 127.576 -34.3959 71.2569 121.989 -34.7844 66.2834 120.958 -33.9154 71.8315 110.129 -33.2852 77.2358 110.04 -32.7655 73.4782 133.884 -21.131 77.6228 132.464 -22.2276 81.3655 132.277 -23.4746 83.426 133.82 -24.0033 85.7036 136.141 -24.3458 88.7308 138.375 -25.7679 91.4667 138.163 -27.2159 92.7583 132.552 -26.9171 90.4562 129.827 -25.7152 86.8669 126.78 -24.6669 84.0844 124.721 -23.6771 80.1888 122.834 -22.3988 88.4224 111.98 -26.642 73.0971 114.872 -34.0422 78.0365 114.257 -32.4652 72.6559 116.366 -23.6348 74.0565 115.738 -18.8756 74.3546 119.371 -20.3332 70.6786 130.252 -24.9797 66.3234 116.559 -38.424 68.7427 109.182 -33.5877 75.2695 107.415 -21.4172 74.5162 129.923 -26.0103 69.7229 116.044 -38.0771 89.5331 107.124 -23.792 88.3401 135.32 -31.9677 74.1388 115.95 -26.0645 75.9612 114.948 -19.4391 77.1416 118.114 -30.0044 73.3922 116.231 -34.5642 80.9955 123.121 -26.1556 85.0815 123.793 -32.0715 84.2148 123.344 -35.5836 83.1264 134.427 -27.4776 86.9811 127.454 -28.4118 89.522 129.098 -29.4795 74.6652 110.346 -32.9938 73.4634 113.087 -34.946 76.8228 114.888 -29.5521 79.8915 107.956 -22.0252 80.6122 114.073 -21.0487 83.7573 107.262 -22.8645 86.4999 113.195 -22.8837 83.3651 113.698 -27.6845 87.0649 106.513 -23.293 78.1729 130.027 -26.8719 84.0191 124.97 -27.6585 78.0395 121.874 -37.0279 80.9955 119.953 -31.531 86.4391 136.135 -29.7404 82.2626 130.071 -33.6418 73.3188 122.63 -34.5204 68.9993 121.598 -34.5597 61.1201 116.288 -36.4563 80.2549 109.485 -31.4116 71.6743 134.356 -20.764 75.3384 133.298 -21.6337 79.5527 132.054 -22.774 82.5547 132.906 -23.8513 84.4528 134.914 -24.1434 93.1861 134.488 -27.5777 91.9487 131.059 -26.2461 88.5515 128.283 -25.1888 85.4827 125.624 -24.1983 82.3397 123.833 -23.052 76.6708 121.456 -21.1288 89.869 111.457 -23.9848 75.2791 114.471 -33.131 72.5418 119.712 -36.6595 81.3907 113.876 -31.5584 78.3679 118.196 -35.5399 83.0864 127.336 -36.4037 85.4308 112.541 -29.518 90.2145 131.46 -31.6971 82.9166 108.627 -29.6277 64.7835 120.521 -33.7531 75.2428 120.861 -23.2937 80.7976 132.083 -27.6852 77.9572 125.484 -34.7339 74.1796 115.013 -31.4161 80.9021 114.638 -26.7177 85.1483 113.312 -25.263 82.0676 114.019 -24.0982 79.6802 114.358 -23.3746 77.3173 114.669 -22.6413 75.2124 115.161 -21.7041 73.588 115.837 -21.0027 72.7523 116.861 -20.956 73.4137 118.581 -21.8902 66.4762 141.604 -20.8641 58.3546 118.743 -38.2809 63.6573 103.164 -29.6181 61.2017 113.464 -35.2759 62.603 110.079 -31.8602 69.9438 135.891 -21.1621 68.2393 131.67 -26.2038 67.4378 127.136 -29.5202 62.8091 120.687 -35.9907 60.5767 117.653 -37.3935 60.7761 113.247 -36.1998 62.0921 109.556 -33.1525 65.2417 105.935 -28.1842 71.3073 112.394 -36.0092 68.3164 110.617 -35.2945 68.3445 111.331 -36.3747 -11.3552 113.133 6.63324 68.4684 104.805 -22.5375 -9.45044 104.401 1.95409 -7.56053 100.492 -0.627556 -5.0686 97.2087 -3.46945 -1.8849 93.9531 -6.38548 56.808 93.3547 -23.3279 61.9223 96.6682 -23.3508 59.4081 140.566 19.6623 60.4639 137.464 20.042 61.8763 134.831 19.5882 63.4845 132.857 18.7674 59.1931 143.585 18.4382 65.1653 131.503 17.6961 59.7648 145.792 16.5098 66.574 130.654 16.1776 60.7479 147.03 14.1165 67.7426 130.322 14.3856 61.9742 147.354 11.7839 68.7983 130.581 12.5261 63.4081 146.812 9.84286 69.823 131.736 10.6896 65.1046 145.464 8.28365 70.6207 133.636 8.99838 67.079 143.51 7.13741 70.6489 135.976 7.7083 68.7916 141.109 6.6273 70.0306 138.529 6.87865 46.0899 131.451 -40.7647 44.2964 133.408 -40.6498 42.8521 136.048 -40.2939 42.1344 139.179 -39.5132 48.0895 130.139 -40.7032 42.5725 142.25 -38.4974 50.1107 129.339 -40.116 44.0636 144.531 -37.2763 52.0814 129.065 -39.1855 46.164 145.859 -35.8431 53.992 129.384 -38.172 48.4484 146.268 -34.5523 55.8478 130.62 -37.1918 50.7075 145.792 -33.6656 57.2832 132.639 -36.2405 52.9926 144.492 -33.2066 58.0113 135.002 -35.2811 55.2984 142.565 -33.2185 57.9772 137.569 -34.3714 57.0771 140.172 -33.5929 1.38182 68.9774 -45.9569 1.47894 65.0285 -50.2728 1.09637 63.909 -52.87 4.59888 9.97681 -40.0908 4.56625 11.4122 -44.5415 4.27933 14.0176 -48.351 3.6239 17.5846 -51.2515 2.5518 21.6054 -53.3934 2.81797 25.9316 -56.0077 3.01964 28.3271 -57.5284 3.3214 31.8267 -58.9081 3.45486 35.6754 -59.9047 3.14198 39.6169 -60.4303 2.63558 43.6332 -60.5215 2.15143 47.625 -60.2798 1.8074 51.4352 -59.6459 1.64281 54.9177 -58.6553 1.54494 58.1214 -57.1999 1.24614 61.2169 -55.2299 2.20258 72.8765 -41.2252 4.0999 75.8378 -37.4454 6.18702 78.5203 -33.435 56.4936 87.4619 -10.08 57.7629 85.6098 -10.3506 59.9983 84.0135 -10.7406 63.4852 82.0057 -11.5406 67.5801 79.1089 -12.265 -10.1652 108.262 6.21582 -11.0734 112.965 7.57632 -0.481384 91.8178 -0.502998 -8.62003 103.705 4.73889 -6.45135 99.499 2.95057 -3.73181 95.6969 0.985786 -60.1092 28.2359 7.92776 -8.84988 108.395 10.4182 -10.438 113.006 9.67531 2.73864 92.5778 10.975 -6.7205 103.892 10.9765 -4.01207 99.6658 11.3213 -0.806137 95.8341 11.3643 64.3527 94.8043 -12.5052 60.0369 91.4033 -11.0824 -11.539 10.151 19.9241 -5.49863 10.1436 21.8177 -15.9268 10.1577 16.38 -19.33 10.1651 11.6357 -22.5381 10.1681 4.40154 32.719 10.1303 18.5309 40.266 10.1244 13.6679 14.2263 10.1377 23.0462 22.7994 10.1333 21.7028 2.70157 10.137 23.1159 44.4157 10.1281 7.56966 6.82094 10.137 23.6438 46.5807 10.1555 0.804138 -22.7316 10.1651 -8.79883 46.5392 10.1481 -8.35619 -6.5737 10.1422 -30.0845 -12.5993 10.151 -28.2717 -18.4966 10.1644 -25.6115 -21.6988 10.1659 -20.5282 -21.6462 10.1607 -14.2928 40.6619 10.1362 -21.951 32.9614 10.1496 -27.1618 22.9625 10.1599 -31.832 13.8408 10.1637 -33.647 2.11658 10.1488 -32.443 44.7679 10.1347 -15.5147 6.04318 10.1488 -32.526 12.5907 10.1733 -3.80531 59.1887 91.8044 8.95242 -37.1383 88.9529 -2.97714 -31.8022 10.0858 -1.97102 -25.1531 10.1622 -2.2068 -48.967 94.3801 -3.43312 -42.7435 92.7505 -3.24479 -45.2458 14.541 -1.9814 -38.8006 11.688 -1.94433 -51.5643 18.2037 -2.1067 -56.8395 22.9229 -2.04294 -61.3273 28.167 -2.00068 -64.683 34.1592 -1.92802 -67.7244 42.676 -1.88947 -69.2985 52.0358 -1.98363 -69.0782 59.0674 -1.98585 -68.0128 66.587 -1.96361 -66.3149 75.4782 -2.11857 -61.6254 86.6775 -2.9586 -55.4464 92.4777 -3.38715 -32.8632 83.5116 -1.95249 -29.1664 80.3716 -1.67964 -25.0219 78.6923 -1.82199 -19.731 77.9019 -1.94433 -13.8211 78.3245 -1.89985 0.599609 81.0967 -1.11393 5.68803 83.0274 -0.72765 6.50954 84.4391 -0.967133 5.72511 86.2104 -0.331726 3.73808 88.5303 1.10886 0.442429 91.5093 2.82008 -2.82133 95.1602 4.04714 -5.66766 99.1208 5.2742 -8.03503 103.465 6.34038 -9.79816 108.128 7.22415 -10.9333 112.931 8.02786 -26.7479 60.7542 43.6698 -20.1774 63.8423 42.5992 -8.42801 27.4619 48.2347 14.9477 25.7121 48.3904 3.09452 25.896 48.4757 42.6645 36.5214 48.0598 47.7344 49.638 47.1827 40.5551 62.2549 45.2372 -20.4769 63.1994 -50.3046 -27.628 60.1306 -51.1217 -8.33606 28.1588 -55.7549 41.6947 37.0493 -55.6696 46.1069 49.7648 -54.9594 39.661 61.5616 -52.9449 -28.2701 61.5994 42.6785 -21.096 64.5792 41.7131 -10.6093 65.5757 41.2676 1.58052 66.8139 41.2357 -20.6037 30.6107 47.064 -27.9498 36.4747 46.6355 -32.0076 43.3195 45.7562 -33.3289 50.1288 44.8568 -9.84192 26.1273 47.153 -32.1367 56.4888 43.8329 40.1118 30.266 46.5139 29.9349 25.9004 46.5236 16.4046 23.9305 47.0581 3.12344 24.0639 47.2805 46.8217 35.817 46.5762 50.7757 42.2756 46.3478 52.0569 49.3051 45.7651 50.1277 56.399 44.7582 45.0638 62.5551 43.5645 13.7088 68.7742 41.1082 26.4851 69.2584 41.2994 37.1171 66.9377 42.3456 1.53827 66.2289 -48.7276 -11.1349 65.489 -48.6957 -21.7418 64.0098 -49.2903 -29.2399 60.7943 -50.2557 -33.7448 49.2984 -52.3954 -32.2894 43.1438 -53.1362 -27.8334 36.8602 -53.862 -20.3917 31.2343 -54.2831 -10.0503 26.5855 -54.5085 -32.8298 55.3737 -51.4331 2.729 24.1781 -54.8289 15.8893 23.9164 -54.731 29.5034 26.0458 -54.0829 39.6795 30.5618 -53.8806 46.253 36.21 -53.7901 50.0128 42.5536 -53.5439 51.139 49.2547 -52.9597 49.321 55.8341 -52.0848 44.6241 61.6202 -51.0127 37.1431 65.7944 -49.8316 26.732 68.0261 -48.7847 13.6339 67.8667 -48.6371</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2108\" offset=\"0\" source=\"#LOD3spShape-lib-positions-array\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"LOD3spShape-lib-normals\" name=\"normal\">\r\n                    <float_array count=\"6870\" id=\"LOD3spShape-lib-normals-array\">-0.192109 -0.934569 0.299458 -0.06315 -0.993623 0.093407 -0.038767 -0.993005 0.111528 -0.11695 -0.921313 0.370816 -0.085264 -0.993927 0.06957 -0.25821 -0.942076 0.214058 -0.305238 -0.944237 0.123473 -0.103012 -0.993873 0.04007 -0.109849 -0.993698 0.02232 -0.319871 -0.945464 0.061492 0.322015 -0.653105 0.68539 0.238016 -0.809438 0.536805 0.39559 -0.829362 0.394547 0.547107 -0.665777 0.50736 0.149283 -0.925897 0.34703 0.227375 -0.943129 0.242504 -0.182106 -0.7902 0.585167 -0.310544 -0.820667 0.479654 -0.418246 -0.841388 0.342252 -0.407245 -0.671943 0.618582 -0.544891 -0.711903 0.443045 -0.234371 -0.618101 0.750347 -0.474249 -0.857348 0.200104 -0.472515 -0.875412 0.101901 -0.601129 -0.750567 0.274396 -0.593419 -0.791427 0.146617 0.282256 -0.953514 0.105559 0.497204 -0.845385 0.195227 0.680184 -0.678639 0.277127 0.475425 -0.378716 0.794069 0.394699 -0.508097 0.765539 0.651796 -0.507567 0.563506 0.728714 -0.35445 0.585953 -0.280085 -0.456993 0.844222 -0.472084 -0.52749 0.706322 -0.629949 -0.5896 0.505505 -0.525528 -0.402813 0.749375 -0.688269 -0.483465 0.540877 -0.345696 -0.333643 0.877027 0.797494 -0.502759 0.333521 0.868857 -0.332163 0.36709 0.779236 -0.208323 0.591094 0.556733 -0.232343 0.797537 0.611419 -0.086952 0.786515 0.805975 -0.07802 0.586786 0.901017 -0.198547 0.385677 0.912954 -0.073233 0.401437 0.587309 0.31693 0.74473 0.626298 0.112282 0.771455 0.807598 0.10215 0.580819 0.767563 0.296279 0.568389 0.905959 0.097128 0.412074 0.868972 0.273148 0.412646 0.369046 0.664292 0.650016 0.498279 0.502362 0.706648 0.692864 0.459155 0.555982 0.584348 0.597963 0.548615 0.813067 0.415121 0.408163 0.751114 0.515121 0.41289 0.19627 0.766932 0.610977 0.270011 0.7156 0.644213 0.477417 0.672112 0.565984 0.38089 0.730939 0.56626 0.665617 0.613839 0.424448 0.5601 0.712938 0.42191 -0.142237 0.892596 0.427833 -0.115435 0.801937 0.586149 -0.145778 0.823148 0.548795 -0.183731 0.901347 0.392196 -0.170598 0.892172 0.418242 -0.198923 0.94046 0.275618 -0.083913 0.784617 0.614276 -0.104776 0.836925 0.537195 -0.07128 0.762805 0.642687 -0.083732 0.95816 0.273711 -0.152017 0.963903 0.218593 -0.043758 0.995476 0.084341 0.11433 0.983142 0.142691 -0.188565 0.971095 0.146345 -0.153667 0.986837 0.050398 -0.277878 0.955105 0.102752 -0.278528 0.959779 0.035299 -0.266228 0.943946 0.195163 -0.494465 0.642119 0.585822 -0.123678 0.744163 0.656449 -0.094312 0.919596 0.381378 -0.521981 0.776809 0.352284 0.287464 0.72515 0.625717 0.35104 0.866307 0.355363 -0.085399 0.659129 0.747166 0.224013 0.689809 0.688464 -0.41145 0.564912 0.715251 -0.896437 0.304297 0.322186 -0.755967 0.475931 0.449448 -0.804069 0.52634 0.276477 -0.929837 0.307416 0.202235 -0.651421 0.428251 0.626301 -0.812838 0.261118 0.520685 -0.700828 0.14352 0.698743 -0.528973 0.340042 0.777534 -0.323564 0.505566 0.799819 -0.384671 0.217738 0.897005 -0.26768 0.410295 0.871783 -0.51729 -0.021456 0.855541 -0.703157 -0.1848 0.686599 -0.802326 -0.033833 0.595927 -0.877917 -0.14451 0.456484 -0.806047 -0.267053 0.528176 -0.89323 0.116397 0.434273 -0.92976 -0.00252 0.368157 -0.693473 -0.636086 0.338364 -0.705373 -0.68381 0.186692 -0.75587 -0.532488 0.380943 -0.796546 -0.566484 0.211211 -0.077417 -0.240522 0.967551 -0.089798 -0.134723 0.986806 -0.168487 -0.121841 0.978145 -0.138523 -0.221426 0.965289 -0.113525 -0.038943 0.992772 -0.195995 -0.017488 0.980449 -0.602195 -0.290799 0.743503 -0.742439 -0.374894 0.555193 -0.432918 -0.200289 0.878901 -0.818103 -0.413906 0.399236 -0.879805 -0.419705 0.22314 -0.8832 -0.285146 0.372357 -0.940384 -0.263381 0.215195 -0.205308 0.092751 0.974293 -0.12459 0.080228 0.988959 -0.122228 0.178941 0.976238 -0.196017 0.189929 0.962031 -0.04789 0.778827 0.625407 -0.065661 0.712179 0.698921 -0.086279 0.666075 0.740878 -0.054107 0.736647 0.674109 0.32735 0.918436 0.222077 0.038245 0.947019 0.318892 -0.067436 0.912058 0.404479 0.299059 0.868082 0.396229 0.020777 0.864061 0.502958 0.601008 0.74983 0.276665 0.10013 0.787789 0.607752 0.137884 0.80072 0.582954 0.293157 0.782715 0.549014 0.251535 0.793724 0.553834 0.033793 0.760625 0.648311 0.012829 0.792843 0.609291 -0.001462 0.805911 0.592035 0.470195 0.782277 0.408607 0.406592 0.824118 0.394351 -0.228092 0.919665 0.319673 -0.149194 0.877198 0.45636 0.221981 0.775644 0.590848 0.477153 0.718896 0.505483 0.642223 0.702693 0.306223 -0.941954 -0.151996 0.299365 -0.977272 -0.097629 0.18817 -0.969667 0.027366 0.242894 -0.984274 0.065087 0.16422 -0.081923 0.660823 0.746057 -0.143863 0.635643 0.75846 -0.950758 0.179022 0.253002 -0.969441 0.180582 0.166057 0.433741 0.791171 0.431182 0.286611 0.730746 0.619568 0.635928 0.49935 0.588427 0.410194 0.41588 0.811655 -0.030936 0.832088 0.553781 -0.063268 0.738092 0.671727 -0.236437 0.785277 0.572222 -0.098454 0.365739 0.925495 -0.356861 0.365039 0.859882 0.116456 0.704283 0.700303 0.160354 0.369389 0.915335 -0.380395 0.81813 0.431235 -0.491132 0.823545 0.283836 -0.59916 0.341103 0.724332 -0.798743 0.301719 0.520552 0.047573 -0.992573 0.111966 0.069354 -0.994739 0.075398 0.015592 -0.990695 0.135202 0.028503 -0.991144 0.129693 0.0864 -0.911356 0.402449 0.046371 -0.905885 0.420977 -0.018844 -0.991895 0.125654 -0.057065 -0.909815 0.411073 0.087743 -0.99576 0.027619 0.126144 -0.779499 0.613571 0.067151 -0.760559 0.645787 0.153713 -0.607983 0.778928 0.075394 -0.57677 0.81342 -0.085238 -0.760064 0.644234 -0.102578 -0.566247 0.817827 0.045094 -0.227711 0.972684 0.047131 -0.133922 0.98987 0.005657 -0.158915 0.987276 0.006376 -0.238835 0.971039 0.058631 -0.040878 0.997442 0.002975 -0.056704 0.998387 0.127635 -0.116289 0.98498 0.152279 -0.014755 0.988227 0.100619 -0.20516 0.973543 0.059288 0.068169 0.995911 -0.006745 0.055506 0.998436 0.05032 0.180626 0.982264 -0.021925 0.163036 0.986376 0.163736 0.099069 0.981517 0.156175 0.220652 0.962768 0.020684 0.317842 0.947918 -0.050294 0.316731 0.947181 -0.025411 0.533931 0.845146 -0.086911 0.5228 0.848014 0.127716 0.356862 0.925385 0.071441 0.516034 0.853584 -0.061054 0.766638 0.63917 0.078289 0.741306 0.666586 0.208508 0.671416 0.711144 0.313289 0.499706 0.807554 0.378689 0.310587 0.871855 0.400342 0.118619 0.908656 0.381543 -0.070384 0.921668 0.331083 -0.22771 0.915714 0.260306 -0.364971 0.893889 0.178111 -0.473128 0.862802 0.071351 -0.485088 0.87155 -0.127917 -0.411323 0.902469 -0.217134 -0.272275 0.9374 -0.28612 -0.114565 0.95132 -0.297833 0.014133 0.954513 -0.259212 0.153056 0.953616 -0.214461 0.319798 0.922895 -0.151901 0.528641 0.835144 -0.103669 0.295387 0.949736 -0.165776 0.313209 0.935104 -0.083675 0.492895 0.866056 -0.119834 0.470121 0.874429 -0.087588 0.774585 0.626376 -0.256922 -0.123444 0.958516 -0.282852 0.013185 0.959073 -0.378724 -0.276752 0.883163 -0.438423 -0.070607 0.895991 -0.437651 -0.063548 0.896897 -0.390678 -0.27619 0.878117 -0.251518 -0.431278 0.866451 -0.276371 -0.456203 0.845871 -0.19905 -0.303218 0.9319 -0.274611 0.135247 0.951996 -0.249887 0.293965 0.922573 -0.442099 0.099565 0.891423 -0.416837 0.295755 0.859521 -0.412837 0.32408 0.851198 -0.438351 0.113033 0.891668 0.156401 -0.497394 0.85331 0.061408 -0.535686 0.842181 0.119454 -0.452018 0.883974 0.032667 -0.468626 0.882793 0.050048 -0.559259 0.827481 0.150699 -0.524664 0.837865 0.208739 -0.361482 0.908713 0.238743 -0.413555 0.878621 0.232419 -0.391651 0.890276 -0.125806 -0.451337 0.883441 -0.128663 -0.465603 0.875591 -0.150994 -0.530967 0.833832 0.284031 -0.235212 0.929517 0.269401 -0.199777 0.942079 0.293517 -0.238502 0.925724 0.286186 -0.032306 0.957629 0.310905 -0.056264 0.948774 0.312743 -0.062252 0.947795 0.322676 0.120164 0.938851 0.286685 0.125421 0.94978 0.312932 0.123775 0.941676 0.279716 0.294166 0.913907 0.303905 0.313656 0.89959 0.309104 0.311381 0.898608 0.037576 0.808415 0.587412 0.169817 0.698638 0.69503 -0.000992 0.780213 0.625514 0.138259 0.681294 0.718834 0.161529 0.715447 0.679738 0.018778 0.826522 0.562592 -0.09996 0.801388 0.589733 -0.098648 0.85295 0.512587 -0.076807 0.814801 0.574631 0.262922 0.511395 0.818137 0.242579 0.49202 0.836105 0.262895 0.521513 0.811733 -0.185749 0.495789 0.848346 -0.322481 0.52883 0.785076 -0.160242 0.722224 0.672841 -0.146317 0.772841 0.617501 -0.312096 0.577251 0.754571 -0.076559 0.797941 0.597853 -0.071594 0.840171 0.537576 -0.107376 0.806238 0.581766 -0.112987 0.848782 0.51653 -0.287568 -0.01818 0.957588 -0.246849 -0.15606 0.956405 -0.173556 -0.290795 0.940913 -0.283237 0.22681 0.931844 -0.297529 0.100463 0.949412 0.014537 -0.330354 0.943745 0.072188 -0.329168 0.941508 0.150177 -0.268878 0.951394 -0.091484 -0.341365 0.935468 0.211928 -0.141481 0.96699 0.233591 -0.009434 0.972289 0.24083 0.120366 0.963075 0.233787 0.260424 0.936762 0.102888 0.613185 0.78321 -0.030399 0.694019 0.719314 -0.098708 0.675427 0.730791 0.204918 0.428836 0.879834 -0.132475 0.557408 0.819602 -0.232943 0.388015 0.89173 -0.075386 0.634728 0.769049 -0.09685 0.652599 0.751489 -0.092397 0.509504 0.855493 -0.081276 0.316551 0.945087 -0.068265 0.172012 0.982727 -0.054553 0.065325 0.996372 -0.043341 -0.055449 0.99752 -0.033383 -0.160096 0.986537 -0.028874 -0.24536 0.969002 -0.033304 -0.336054 0.941254 -0.042357 -0.467717 0.882863 -0.046567 -0.556118 0.829798 -0.037674 -0.519487 0.853647 -0.022566 -0.457423 0.888963 -0.012961 -0.556886 0.830488 -0.007732 -0.753873 0.656974 -0.003792 -0.90729 0.420489 -0.001149 -0.991208 0.132304 0.512335 -0.857386 0.049017 0.70555 -0.704425 0.077354 0.297092 -0.954566 0.023258 0.84286 -0.528889 0.09931 0.930258 -0.348816 0.113782 0.968103 -0.21837 0.122848 0.986591 -0.093131 0.134031 0.985676 0.081564 0.147617 0.95281 0.259757 0.157095 0.894834 0.417704 0.157465 0.844113 0.514896 0.149516 0.774064 0.618654 0.134508 0.673761 0.729252 0.119321 0.59429 0.795832 0.116061 0.5205 0.84585 0.116695 0.525074 0.841884 0.124616 0.765546 0.621669 0.16573 0.097097 -0.995263 0.004896 -0.565407 0.809464 0.158374 -0.611313 0.789337 0.056957 -0.920895 0.236324 0.310006 -0.979363 0.144989 0.140806 -0.738247 -0.362498 0.568846 -0.830423 -0.418752 0.367485 -0.844491 -0.498578 0.195588 -0.637358 -0.672695 0.37584 -0.668066 -0.709833 0.223216 -0.553902 -0.635855 0.537476 -0.346188 -0.291036 0.891881 -0.564224 -0.330618 0.756534 -0.436173 -0.617389 0.654663 -0.266348 -0.628612 0.730688 -0.097978 -0.251576 0.962865 -0.086895 -0.643915 0.760146 0.176816 -0.222898 0.958672 0.120695 -0.699248 0.704617 0.465192 -0.190422 0.864486 0.373032 -0.681742 0.629345 0.749171 -0.141411 0.647105 0.57208 -0.682024 0.455597 0.984143 0.023025 0.175875 0.738366 -0.656556 0.154109 -0.095635 0.76965 0.631263 -0.315057 -0.948903 0.017974 -0.110306 -0.993886 0.004918 -0.457702 -0.888528 0.032039 -0.589111 -0.807168 0.037792 0.510058 -0.858624 -0.051043 0.70623 -0.703125 -0.082786 0.294439 -0.955391 -0.023102 0.843862 -0.525198 -0.109834 0.928966 -0.346434 -0.130403 0.964683 -0.219414 -0.145751 0.981881 -0.104853 -0.157847 0.98501 0.058597 -0.162241 0.95819 0.238399 -0.158234 0.897823 0.414043 -0.149942 0.829346 0.538002 -0.150797 0.747675 0.644543 -0.159833 0.659153 0.734437 -0.161615 0.265044 0.963485 0.038059 0.039034 0.999086 0.017437 0.018622 0.997848 -0.062875 0.244836 0.962544 -0.116463 -0.130658 0.991351 0.012349 -0.138096 0.990164 -0.022449 -0.273293 0.96189 0.008822 -0.274255 0.961657 0.000421 -0.053579 0.998129 0.029453 -0.515915 0.855204 0.049583 0.344116 0.89883 -0.271457 -0.055876 0.956544 -0.286182 0.365283 0.930753 0.01632 -0.828131 0.557888 0.054409 -0.952772 0.299578 0.049783 -0.711727 -0.701459 0.037422 -0.905755 -0.418034 -0.069676 -0.8121 -0.578723 -0.074656 -0.818385 -0.573492 0.036778 -0.910268 -0.412077 0.040054 0.709552 0.701423 0.067393 0.515618 0.854187 0.067105 0.52626 0.835416 -0.158524 0.711562 0.67733 -0.186822 0.587221 0.793907 -0.157743 0.504751 0.849895 -0.151344 0.655685 0.754174 0.036026 0.627882 0.742251 -0.234154 -0.995755 -0.076042 0.051857 -0.966252 -0.253074 0.048064 -0.995208 0.084624 0.048994 -0.98245 0.180559 0.046801 0.500696 0.849415 -0.166726 0.699452 0.674292 -0.236847 -0.644888 0.764208 0.010314 -0.658085 0.75262 0.022063 -0.996997 0.052783 0.056672 -0.999004 0.031144 0.031952 0.095211 -0.995451 -0.003478 -0.828476 -0.551185 0.099113 -0.83354 -0.552229 0.015914 -0.680841 -0.722996 0.117184 -0.70438 -0.709823 0.000289 0.942473 0.130036 -0.307954 0.760792 -0.603232 -0.239387 -0.191598 -0.926128 -0.324926 -0.11404 -0.910397 -0.397707 -0.034523 -0.992382 -0.118262 -0.056307 -0.993628 -0.097639 -0.08229 -0.99447 -0.065257 -0.263919 -0.93806 -0.224478 -0.301453 -0.945273 -0.124839 -0.10268 -0.994176 -0.032728 -0.109842 -0.993816 -0.016268 -0.306215 -0.95011 -0.059356 0.319117 -0.647606 -0.691933 0.534285 -0.666968 -0.519319 0.385251 -0.83007 -0.403195 0.239592 -0.805165 -0.542499 0.228594 -0.939199 -0.256224 0.158278 -0.918607 -0.362089 -0.178484 -0.75672 -0.628902 -0.309497 -0.797477 -0.51792 -0.420841 -0.831771 -0.362009 -0.538657 -0.700909 -0.467519 -0.394197 -0.64598 -0.653696 -0.222745 -0.580396 -0.783278 -0.463953 -0.858375 -0.218951 -0.461429 -0.880375 -0.109649 -0.599801 -0.782405 -0.167575 -0.59309 -0.744341 -0.306921 0.280118 -0.952342 -0.120743 0.489162 -0.845976 -0.212238 0.674722 -0.67782 -0.292079 0.467443 -0.364911 -0.805194 0.712309 -0.345361 -0.611018 0.641575 -0.494023 -0.586791 0.39121 -0.489528 -0.779305 -0.257887 -0.431057 -0.864687 -0.450347 -0.520374 -0.725533 -0.610796 -0.588414 -0.529809 -0.665056 -0.488467 -0.56489 -0.505193 -0.408993 -0.759938 -0.312897 -0.314982 -0.896037 0.796286 -0.495922 -0.346396 0.865739 -0.328626 -0.377493 0.760432 -0.204661 -0.616326 0.545204 -0.224716 -0.807623 0.593644 -0.079984 -0.800743 0.783915 -0.086134 -0.614865 0.896384 -0.199742 -0.395726 0.906271 -0.095045 -0.411874 0.551478 0.253954 -0.794594 0.749758 0.226635 -0.62169 0.783116 0.056593 -0.619295 0.5969 0.085909 -0.797703 0.90526 0.04554 -0.42241 0.880719 0.218398 -0.420282 0.336343 0.599609 -0.726183 0.572035 0.582293 -0.577677 0.679985 0.408785 -0.6087 0.461982 0.425407 -0.778204 0.822759 0.398489 -0.405308 0.73865 0.550111 -0.389581 0.158279 0.713924 -0.6821 0.37644 0.723509 -0.578643 0.467127 0.676077 -0.569835 0.228363 0.685665 -0.691168 0.648361 0.657528 -0.383777 0.564637 0.73282 -0.379684 -0.132948 0.895471 -0.424801 -0.16783 0.911023 -0.376656 -0.12755 0.841928 -0.524298 -0.095044 0.810733 -0.577649 -0.191234 0.937857 -0.289574 -0.161097 0.88789 -0.430929 -0.099619 0.831047 -0.547207 -0.068866 0.782563 -0.618751 -0.042804 0.75673 -0.652324 -0.106611 0.95728 -0.268792 0.061832 0.967519 -0.24512 -0.090989 0.984179 -0.152028 -0.171442 0.958937 -0.225938 -0.170146 0.982001 -0.081999 -0.195635 0.967138 -0.16239 -0.282706 0.95847 -0.037576 -0.282545 0.952356 -0.114834 -0.262642 0.936921 -0.230646 -0.457702 0.605028 -0.651498 -0.494691 0.715297 -0.493589 -0.076223 0.822259 -0.563986 -0.087936 0.702019 -0.706709 0.319664 0.765998 -0.557729 0.294833 0.694844 -0.655946 0.224172 0.682804 -0.695361 -0.063717 0.649517 -0.757673 -0.387084 0.558006 -0.734027 -0.896043 0.261582 -0.358722 -0.944002 0.274393 -0.183216 -0.810194 0.488173 -0.324457 -0.742944 0.435424 -0.508371 -0.645648 0.412332 -0.642745 -0.811086 0.243382 -0.531887 -0.699157 0.136155 -0.701885 -0.530892 0.331786 -0.77979 -0.30426 0.511436 -0.803654 -0.248492 0.408629 -0.878222 -0.387347 0.198969 -0.900208 -0.511763 -0.033699 -0.858465 -0.688173 -0.178311 -0.703294 -0.790784 -0.260454 -0.553917 -0.872048 -0.112083 -0.476413 -0.794394 -0.013341 -0.607256 -0.920109 0.042291 -0.389372 -0.884532 0.127633 -0.44868 -0.676964 -0.636735 -0.369174 -0.702442 -0.678564 -0.214769 -0.78028 -0.57775 -0.239514 -0.733839 -0.540713 -0.41123 -0.092147 -0.181509 -0.979062 -0.144369 -0.166467 -0.975421 -0.159435 -0.079334 -0.984015 -0.094565 -0.065989 -0.993329 -0.168501 -0.000101 -0.985701 -0.104493 0.01153 -0.994459 -0.726284 -0.369697 -0.579514 -0.588438 -0.292192 -0.753899 -0.407291 -0.20071 -0.890971 -0.869486 -0.42871 -0.245363 -0.799739 -0.41079 -0.4378 -0.938755 -0.260153 -0.225963 -0.869609 -0.274794 -0.410206 -0.170534 0.079532 -0.982137 -0.161151 0.169743 -0.972223 -0.090409 0.181448 -0.979236 -0.10396 0.092065 -0.990311 -0.061474 0.779505 -0.623373 -0.054952 0.743789 -0.666152 -0.103099 0.66864 -0.736404 -0.089248 0.714186 -0.694242 0.313646 0.879357 -0.358269 0.027421 0.941997 -0.334499 -0.080622 0.891857 -0.445073 0.022338 0.831019 -0.555795 0.289168 0.850636 -0.43909 0.556005 0.699289 -0.449281 0.050624 0.773712 -0.631511 0.231632 0.808083 -0.541616 0.288863 0.771715 -0.566581 0.103245 0.744807 -0.659244 0.031939 0.724546 -0.688486 0.003268 0.749951 -0.661485 -0.026171 0.792703 -0.609046 0.482137 0.794981 -0.36817 0.398207 0.851469 -0.34122 -0.221077 0.901734 -0.371484 -0.143622 0.850839 -0.505417 0.234374 0.743588 -0.626216 0.46128 0.703836 -0.540218 0.562017 0.649813 -0.511741 -0.977474 -0.09123 -0.19032 -0.936551 -0.12725 -0.326619 -0.984003 0.070682 -0.163533 -0.961337 0.050417 -0.270718 -0.12138 0.620783 -0.774529 -0.05521 0.647511 -0.760053 -0.944461 0.162933 -0.285388 -0.972855 0.171501 -0.15537 0.237565 0.800499 -0.55024 0.395586 0.847721 -0.353385 0.35269 0.570432 -0.741766 0.568049 0.652016 -0.502191 -0.054488 0.806873 -0.588206 -0.221404 0.774347 -0.592762 -0.082141 0.728443 -0.680164 -0.34248 0.449493 -0.825023 -0.1184 0.432945 -0.893611 0.102358 0.477975 -0.872389 0.062161 0.735187 -0.675008 -0.351621 0.822971 -0.446186 -0.453177 0.839825 -0.298872 -0.753559 0.408132 -0.515341 -0.56556 0.457673 -0.686059 0.070662 -0.994095 -0.082354 0.053046 -0.991548 -0.1184 0.013209 -0.990078 -0.139895 0.042006 -0.899343 -0.435221 0.096965 -0.90473 -0.414802 0.032991 -0.99044 -0.133938 -0.056118 -0.897897 -0.436614 -0.016738 -0.990736 -0.134764 0.086464 -0.995644 -0.034877 0.061043 -0.750045 -0.658564 0.137198 -0.774505 -0.61751 0.069229 -0.578014 -0.813085 0.165722 -0.607498 -0.776841 -0.08926 -0.735213 -0.671934 -0.114239 -0.544747 -0.830783 0.019911 -0.230638 -0.972836 -0.030593 -0.214954 -0.976145 -0.045955 -0.097756 -0.994149 0.002659 -0.095509 -0.995425 -0.052141 0.011297 -0.998576 0.002127 0.01818 -0.999832 0.120697 0.01473 -0.99258 0.113372 -0.110702 -0.987366 0.096736 -0.223211 -0.969958 -0.055442 0.119889 -0.991238 -0.003618 0.136061 -0.990694 -0.057352 0.236947 -0.969828 -0.01353 0.263616 -0.964533 0.087309 0.294367 -0.951696 0.113304 0.153076 -0.981697 -0.061332 0.359879 -0.930981 -0.028754 0.371752 -0.927887 -0.069217 0.479884 -0.874597 -0.04309 0.485197 -0.873342 0.017067 0.479437 -0.87741 0.052641 0.398131 -0.915817 -0.034654 0.760876 -0.647972 0.07156 0.732098 -0.67743 0.191934 0.634425 -0.748777 0.303753 0.458556 -0.835141 0.384402 0.282027 -0.879031 0.419845 0.110042 -0.9009 0.406427 -0.062856 -0.911518 0.353955 -0.220425 -0.908916 0.281504 -0.354287 -0.89176 0.067511 -0.500136 -0.863311 0.193668 -0.469971 -0.861174 -0.14958 -0.414815 -0.897527 -0.228363 -0.298833 -0.926579 -0.288297 -0.161724 -0.943785 -0.298702 -0.022525 -0.954081 -0.190826 0.301532 -0.934165 -0.246409 0.126265 -0.960906 -0.15017 0.520238 -0.840715 -0.129702 0.309072 -0.942153 -0.066417 0.305119 -0.949995 -0.055085 0.462192 -0.885067 -0.090042 0.449004 -0.888981 -0.071733 0.766958 -0.637675 -0.283007 -0.028509 -0.958694 -0.281863 -0.191917 -0.940065 -0.351312 -0.084797 -0.932411 -0.309888 -0.241843 -0.919501 -0.329877 -0.256795 -0.908426 -0.371873 -0.083592 -0.924512 -0.244245 -0.370528 -0.896133 -0.261882 -0.399787 -0.878401 -0.239012 -0.350966 -0.905371 -0.228514 0.26963 -0.935457 -0.253264 0.114721 -0.960571 -0.387754 0.261515 -0.883887 -0.38213 0.068912 -0.921536 -0.395833 0.087229 -0.914171 -0.400411 0.295266 -0.867461 0.059717 -0.537384 -0.841221 0.170799 -0.490618 -0.854471 0.023673 -0.491984 -0.870282 0.138029 -0.482666 -0.864859 0.172547 -0.546798 -0.819292 0.048051 -0.585369 -0.809342 0.24535 -0.391127 -0.88703 0.271557 -0.425603 -0.863203 0.253362 -0.383231 -0.888224 -0.16392 -0.464478 -0.870282 -0.156074 -0.43633 -0.886147 -0.174103 -0.495914 -0.85074 0.311338 -0.234144 -0.921002 0.314452 -0.22765 -0.921573 0.331844 -0.253055 -0.908759 0.334948 -0.047443 -0.941041 0.358791 -0.06942 -0.930833 0.352034 -0.064094 -0.93379 0.370008 0.120956 -0.921121 0.325861 0.13785 -0.935314 0.365501 0.126808 -0.922133 0.293842 0.331419 -0.896559 0.345775 0.339247 -0.874843 0.349666 0.318511 -0.88107 0.181191 0.722006 -0.667741 0.050427 0.826013 -0.561391 0.124911 0.682336 -0.720288 -8.3e-005 0.771418 -0.636329 0.029371 0.862647 -0.504953 0.172441 0.753171 -0.634821 -0.088449 0.796983 -0.597491 -0.084759 0.878493 -0.470177 -0.056365 0.816918 -0.573992 0.28721 0.527283 -0.799677 0.229314 0.522426 -0.821271 0.28443 0.557632 -0.779838 -0.184783 0.47937 -0.857939 -0.159072 0.705689 -0.690434 -0.306838 0.513915 -0.801088 -0.313651 0.56677 -0.761837 -0.157757 0.765176 -0.624195 -0.073978 0.778021 -0.623867 -0.070331 0.835642 -0.544753 -0.087799 0.795672 -0.599331 -0.090591 0.859197 -0.503561 -0.232887 -0.144487 -0.961711 -0.244705 -0.029472 -0.96915 -0.189644 -0.261806 -0.946305 -0.251478 0.075314 -0.964928 -0.245154 0.195506 -0.949567 0.069738 -0.345456 -0.93584 -0.006898 -0.32309 -0.946343 0.169707 -0.300933 -0.938424 -0.116208 -0.315517 -0.941778 0.239122 -0.166926 -0.956533 0.255866 -0.011563 -0.966643 0.242809 0.152646 -0.957989 0.202267 0.315072 -0.927264 -0.032641 0.607102 -0.793953 0.060458 0.564272 -0.823372 -0.076278 0.598808 -0.797252 0.144831 0.45396 -0.879173 -0.202967 0.364176 -0.908945 -0.116061 0.523868 -0.843856 -0.061288 0.585836 -0.808109 -0.069247 0.590821 -0.803825 -0.06147 0.471147 -0.87991 -0.062087 0.339494 -0.938557 -0.069753 0.213116 -0.974534 -0.075711 0.106988 -0.991373 -0.074759 0.010224 -0.997149 -0.065915 -0.084862 -0.99421 -0.056359 -0.195476 -0.979088 -0.058264 -0.312594 -0.948098 -0.069962 -0.465689 -0.882179 -0.071195 -0.557949 -0.826815 -0.045754 -0.47841 -0.876944 -0.060646 -0.52652 -0.847997 -0.029989 -0.553187 -0.832517 -0.018388 -0.737572 -0.675018 -0.009087 -0.897441 -0.441041 -0.00158 -0.989993 -0.141109 -0.308322 -0.951065 -0.020322 -0.110713 -0.99381 -0.009215 -0.455221 -0.889796 -0.032191 -0.596471 -0.800898 -0.052761 -0.511407 0.823202 -0.246578 -0.952243 0.291325 -0.09145 -0.828387 0.538442 -0.154449 -0.712918 -0.697663 -0.070811 -0.964192 -0.256036 -0.069136 -0.99426 -0.077609 -0.073642 -0.993521 0.085088 -0.075342 -0.980403 0.180699 -0.07847 -0.618484 0.785248 -0.029371 -0.985065 0.143698 -0.094851 -0.540296 0.826158 -0.159823 -0.899944 0.302263 -0.314224 -0.858864 -0.489238 -0.15165 -0.711588 -0.680949 -0.173063 -0.767866 -0.270651 -0.580629 -0.848883 -0.383401 -0.36387 -0.671939 -0.656576 -0.342645 -0.602072 -0.614193 -0.510173 -0.382168 -0.137855 -0.913752 -0.607476 -0.181274 -0.773377 -0.492091 -0.563373 -0.66367 -0.327921 -0.53701 -0.777231 -0.13782 -0.132667 -0.981532 -0.138241 -0.548212 -0.824835 0.069946 -0.573914 -0.815923 0.11889 -0.117351 -0.985948 0.269629 -0.627654 -0.730309 0.418909 -0.085153 -0.904027 0.751138 0.018205 -0.659894 0.495888 -0.698066 -0.516526 -0.95931 0.034968 0.280182 -0.952229 0.032635 0.303636 -0.93144 0.167086 0.323268 -0.946666 0.171861 0.272557 -0.944846 0.025037 0.326557 -0.91551 0.150958 0.372899 -0.937578 0.012119 0.347564 -0.899986 0.12397 0.417919 -0.930687 -0.005661 0.365772 -0.885622 0.08696 0.456193 -0.924746 -0.02703 0.379623 -0.873384 0.042333 0.485189 -0.919713 -0.051956 0.389139 -0.863691 -0.010116 0.503919 -0.915891 -0.078133 0.39375 -0.857075 -0.064545 0.511132 -0.913924 -0.104134 0.392301 -0.854193 -0.116994 0.506623 -0.913686 -0.130204 0.385001 -0.854276 -0.170718 0.490986 -0.915221 -0.154787 0.372036 -0.856986 -0.224754 0.463745 -0.918574 -0.175545 0.354127 -0.862661 -0.271395 0.426803 -0.924357 -0.190998 0.330279 -0.874699 -0.302741 0.378484 -0.93489 -0.202027 0.291831 -0.900162 -0.32556 0.289342 -0.890596 -0.319641 0.323525 -0.930807 -0.199874 0.306022 -0.896 0.289458 0.336747 -0.918721 0.296141 0.261252 -0.872107 0.26593 0.410745 -0.848724 0.226438 0.477905 -0.827137 0.172709 0.534805 -0.80861 0.10747 0.578446 -0.794368 0.032855 0.606547 -0.785336 -0.046853 0.617294 -0.781515 -0.12666 0.610894 -0.781913 -0.208771 0.58739 -0.785856 -0.293485 0.544332 -0.793937 -0.361184 0.489091 -0.811021 -0.403504 0.423592 -0.835242 -0.430573 0.342022 -0.847345 0.403795 0.3449 -0.876998 0.412515 0.246384 -0.816114 0.373023 0.441375 -0.785473 0.321444 0.528872 -0.757102 0.251755 0.60284 -0.732492 0.167285 0.659903 -0.71285 0.071993 0.697612 -0.699448 -0.030237 0.714044 -0.693366 -0.135002 0.707826 -0.694705 -0.244186 0.676579 -0.700161 -0.36004 0.616559 -0.706167 -0.453566 0.543697 -0.723583 -0.510419 0.464651 -0.757493 -0.546167 0.357639 -0.786239 0.510828 0.347683 -0.822283 0.521471 0.227858 -0.748188 0.473296 0.464978 -0.710816 0.41044 0.571208 -0.676265 0.32557 0.66081 -0.646313 0.222825 0.729815 -0.622397 0.107069 0.775344 -0.605751 -0.016281 0.795488 -0.597541 -0.142104 0.789146 -0.599072 -0.273389 0.752576 -0.605625 -0.422009 0.67463 -0.607323 -0.542234 0.580639 -0.62045 -0.60942 0.493609 -0.663091 -0.648882 0.373178 -0.713977 0.609147 0.34522 -0.755821 0.6215 0.206088 -0.669772 0.565403 0.481378 -0.626414 0.492206 0.604433 -0.58635 0.393512 0.708055 -0.551603 0.274208 0.787746 -0.523909 0.140003 0.84019 -0.504656 -0.002861 0.863316 -0.494725 -0.148092 0.856339 -0.496885 -0.296649 0.81554 -0.511217 -0.470298 0.719359 -0.523448 -0.603062 0.601929 -0.54514 -0.6692 0.504969 -0.589688 -0.712391 0.380483 -0.632092 0.697412 0.337752 -0.679083 0.71125 0.181575 -0.582478 0.648166 0.490511 -0.533908 0.565768 0.62837 -0.489063 0.454778 0.744308 -0.450216 0.320826 0.833293 -0.419311 0.170384 0.891711 -0.397828 0.010371 0.917402 -0.386738 -0.152189 0.909545 -0.388906 -0.314579 0.865905 -0.416834 -0.497637 0.760662 -0.460989 -0.625959 0.629018 -0.542107 0.774681 0.32556 -0.593506 0.78981 0.15476 -0.487909 0.720672 0.492521 -0.434921 0.630341 0.64305 -0.3861 0.508756 0.769476 -0.343913 0.362223 0.866325 -0.310381 0.197869 0.929791 -0.287052 0.023243 0.957633 -0.274984 -0.154056 0.949026 -0.274153 -0.330443 0.903132 -0.301736 -0.514601 0.802584 -0.360883 -0.638403 0.679857 -0.445437 0.840329 0.308923 -0.50045 0.856542 0.126038 -0.387543 0.782319 0.487634 -0.331043 0.685354 0.648614 -0.279115 0.554987 0.783636 -0.234323 0.398047 0.886934 -0.198766 0.222238 0.954517 -0.174032 0.035606 0.984096 -0.161146 -0.153806 0.974872 -0.161623 -0.341915 0.925728 -0.183322 -0.527132 0.829774 -0.220903 -0.657095 0.720714 -0.343523 0.893833 0.288192 -0.401399 0.910874 0.095845 -0.282773 0.832684 0.476106 -0.223681 0.730476 0.645269 -0.169508 0.593188 0.787016 -0.122852 0.428085 0.895349 -0.085869 0.24334 0.966133 -0.060478 0.047525 0.997037 -0.048298 -0.151042 0.987347 -0.051169 -0.346801 0.936542 -0.071334 -0.536879 0.840638 -0.087789 -0.68823 0.720162 -0.21986 0.940431 0.259327 -0.28005 0.958152 0.059303 -0.156918 0.876718 0.454689 -0.095926 0.770248 0.630489 -0.040164 0.627316 0.777728 0.007734 0.455603 0.890149 0.046891 0.262808 0.963708 0.076503 0.059129 0.995315 0.087975 -0.141662 0.985998 0.082632 -0.346525 0.934394 0.066735 -0.543112 0.837004 0.044893 -0.70688 0.705907 -0.074449 0.972485 0.220751 -0.13589 0.990587 0.016451 -0.0105 0.907325 0.420298 0.052421 0.798072 0.600278 0.112271 0.651463 0.750327 0.17284 0.475296 0.862682 0.224622 0.286559 0.931359 0.237263 0.088989 0.967361 0.218281 -0.113 0.969322 0.208533 -0.342413 0.916116 0.208343 -0.548433 0.809824 0.177566 -0.726111 0.664254 0.072457 0.981536 0.17702 0.011184 0.999581 -0.026697 0.13045 0.91774 0.375149 0.17379 0.810665 0.559124 0.202259 0.677497 0.70717 0.281823 0.466274 0.838549 0.389486 0.279956 0.877454 0.38011 0.146887 0.913204 0.357385 -0.040932 0.93306 0.345941 -0.321259 0.881543 0.34413 -0.559385 0.754098 0.331752 -0.740685 0.584232 0.196145 0.971318 0.134422 0.140044 0.988072 -0.064045 0.22226 0.915547 0.335221 0.215212 0.826522 0.520139 0.485045 0.203691 0.850436 0.549186 0.085396 0.831326 0.51886 -0.274121 0.809717 0.494351 -0.559544 0.665228 0.486216 -0.716967 0.499552 0.288962 0.953069 0.090338 0.249176 0.963756 -0.09532 0.279421 0.910567 0.304618 0.388152 0.921065 0.031265 0.355698 0.926134 -0.125519 0.404067 0.903782 0.141097 0.68549 -0.217008 0.69499 0.702569 0.095581 0.705167 0.629523 -0.529053 0.569037 0.593718 -0.693079 0.408828 0.496683 0.867503 -0.027267 0.458279 0.875316 -0.154276 0.528047 0.848543 0.03378 0.806768 -0.152023 0.570977 0.808457 0.086821 0.582116 0.751952 -0.463847 0.468417 0.679141 -0.659907 0.321388 0.597185 0.799146 -0.068811 0.555473 0.811556 -0.181181 0.641605 0.76683 -0.017718 0.890943 -0.106367 0.441483 0.8665 0.068021 0.494522 0.874776 -0.373384 0.30879 0.812876 -0.546789 0.200637 0.713003 0.692155 -0.112017 0.675208 0.706006 -0.213658 0.760001 0.64795 -0.050575 0.881663 0.086627 0.463859 0.915057 -0.143088 0.377089 0.91943 -0.337729 0.201463 0.893271 -0.433495 0.118948 0.740476 -0.66906 0.063675 0.859379 -0.511092 0.015908 0.647012 -0.745143 -0.161672 0.622061 -0.770384 0.139818 0.519697 -0.840964 -0.150645 0.82048 0.555122 -0.136569 0.782459 0.574043 -0.241314 0.857424 0.511442 -0.057009 0.806681 0.536729 -0.247364 0.862468 0.496193 -0.099707 0.878972 0.473396 -0.057475 0.818208 0.516312 -0.252897 -0.95504 -0.087036 0.283414 0.458007 0.336509 0.822795 0.548647 0.436829 0.712858 0.498793 0.508214 0.702085 0.40895 0.438856 0.800103 0.458788 0.419381 0.783347 0.488579 0.295919 0.820806 0.338496 0.547557 0.765246 0.40128 0.540787 0.739273 0.447903 0.573978 0.685516 0.572577 0.090453 0.814846 0.659971 0.242585 0.711049 0.600793 0.356629 0.715446 0.507798 0.222804 0.832165 0.525407 0.175386 0.832579 0.592642 0.076696 0.801806 0.696495 -0.160757 0.699323 0.747071 -0.060562 0.66198 0.716368 0.089686 0.691935 0.643654 -0.044528 0.76402 0.679875 -0.004061 0.733317 0.751902 -0.071444 0.655392 0.836517 -0.293072 0.462977 0.828132 -0.230473 0.510959 0.762807 -0.199352 0.61513 0.753672 -0.259258 0.603957 0.803598 -0.130297 0.580735 0.857252 -0.175255 0.484153 0.916775 -0.199713 0.345889 0.913851 -0.163134 0.371839 0.958882 -0.051876 0.279022 0.954667 -0.015331 0.297282 0.878559 0.023718 0.477045 0.887732 -0.142315 0.437811 0.881622 0.374121 0.287709 0.786275 0.361357 0.501191 0.845764 0.203036 0.493417 0.938392 0.191581 0.287606 0.964699 0.141352 0.222208 0.919874 0.344658 0.187198 0.735833 0.601185 0.31165 0.66518 0.53777 0.518014 0.724119 0.464664 0.509645 0.811286 0.503396 0.297333 0.847399 0.503007 0.169996 0.757311 0.630422 0.170435 0.55095 0.766953 0.328993 0.550236 0.662384 0.508417 0.604139 0.603421 0.520479 0.650213 0.6874 0.32358 0.647232 0.739853 0.183595 0.52066 0.823219 0.226328 0.232539 0.84106 0.48841 0.333081 0.772484 0.540672 0.4542 0.75815 0.467879 0.390892 0.846896 0.360515 0.372475 0.869089 0.325495 0.285053 0.827495 0.483733 0.339781 0.673393 0.656575 0.238562 0.704887 0.668 0.320797 0.691569 0.647164 0.829927 0.324203 0.453996 0.78816 0.413058 0.456275 0.818961 0.437724 0.37108 0.868606 0.367447 0.332424 0.594766 0.761672 -0.257117 0.732865 0.586033 -0.345649 0.753901 0.533838 0.38295 0.862991 0.204761 0.461865 0.867214 0.193679 0.458725 0.940858 -0.000486 0.3388 0.908483 -0.022324 0.417326 0.966409 -0.169051 -0.193584 0.923393 -0.383468 0.01723 0.951149 0.102662 0.291162 0.867316 0.198019 0.456675 0.856872 0.261318 0.444391 0.920131 0.262219 0.290862 0.845974 0.375555 -0.378531 0.934245 0.115443 -0.337429 0.724297 0.540152 0.42852 0.705159 0.593618 0.387773 0.719293 0.595991 0.356949 0.405662 0.913937 -0.012545 0.486535 0.862055 -0.141935 0.71787 0.605721 0.343167 0.730039 0.584407 0.354276 0.725686 0.562032 0.396862 0.693853 0.591752 0.410363 0.217331 0.868422 0.445659 0.312452 0.932842 0.179389 0.629841 0.545507 0.552922 0.214362 0.527633 0.821981 0.173015 0.7023 0.690536 0.57713 0.459556 0.675077 0.602476 0.389152 0.696838 0.688167 0.493994 0.531411 0.689409 0.382203 0.615335 0.751692 0.33439 0.568456 0.797599 0.361585 0.482797 0.671211 0.364963 0.645196 0.411128 0.319273 0.853838 0.313319 0.402291 0.860228 0.718031 0.380064 0.58308 0.802641 0.402836 0.439876 0.786668 0.41629 0.455912 0.7261 0.396288 0.561903 0.493842 0.121551 0.861014 0.469657 0.240907 0.849345 0.710366 0.36318 0.602894 0.767343 0.380847 0.515888 0.773688 0.31236 0.551215 0.718919 0.257235 0.645744 0.615801 -0.251493 0.746687 0.530844 -0.044491 0.846301 0.775459 0.113009 0.621203 0.81328 0.246247 0.527199 0.846491 0.212923 0.487972 0.849483 0.012404 0.52747 0.842402 -0.47405 0.256193 0.735809 -0.426295 0.526173 0.762121 0.060604 0.644592 0.762121 0.060604 0.644592 0.670388 0.105094 0.734531 0.670388 0.105094 0.734531 0.53593 0.35712 0.765013 0.53593 0.35712 0.765013 0.519593 0.470857 0.712963 0.519593 0.470857 0.712963 0.592721 0.147272 0.791829 0.592721 0.147272 0.791829 0.539402 0.227876 0.810628 0.539402 0.227876 0.810628 0.838046 -0.041961 0.543984 0.838046 -0.041961 0.543984 0.805134 0.024108 0.592603 0.805134 0.024108 0.592603 0.458987 0.56981 0.681651 0.458987 0.56981 0.681651 0.36131 0.737053 0.571146 0.36131 0.737053 0.571146 0.930114 -0.106536 0.351481 0.930114 -0.106536 0.351481 0.880661 -0.11099 0.460561 0.880661 -0.11099 0.460561 0.320732 0.857422 0.402441 0.320732 0.857422 0.402441 0.44726 0.859353 0.247932 0.44726 0.859353 0.247932 0.95182 0.231775 0.200795 0.95182 0.231775 0.200795 0.964167 0.021103 0.264456 0.964167 0.021103 0.264456 0.579093 0.8006 0.153919 0.579093 0.8006 0.153919 0.697437 0.705567 0.12553 0.697437 0.705567 0.12553 0.814036 0.566095 0.129927 0.814036 0.566095 0.129927 0.890074 0.43096 0.148464 0.890074 0.43096 0.148464 0.029208 0.881474 -0.471328 0.029208 0.881474 -0.471328 0.096449 0.728365 -0.678368 0.096449 0.728365 -0.678368 0.4685 0.04873 -0.882118 0.4685 0.04873 -0.882118 0.638087 -0.253445 -0.727056 0.638087 -0.253445 -0.727056 0.178322 0.511529 -0.840559 0.178322 0.511529 -0.840559 0.316697 0.307225 -0.897394 0.316697 0.307225 -0.897394 -0.229597 0.97301 0.023188 -0.229597 0.97301 0.023188 -0.099111 0.961282 -0.257125 -0.099111 0.961282 -0.257125 0.690989 -0.552351 -0.466307 0.690989 -0.552351 -0.466307 0.614728 -0.774975 -0.146708 0.614728 -0.774975 -0.146708 -0.213285 0.674612 0.706689 -0.213285 0.674612 0.706689 -0.277125 0.880387 0.384865 -0.277125 0.880387 0.384865 0.522099 -0.831492 0.189823 0.522099 -0.831492 0.189823 0.41303 -0.701304 0.581016 0.41303 -0.701304 0.581016 0.016451 0.304495 0.952372 0.016451 0.304495 0.952372 -0.102423 0.482133 0.87009 -0.102423 0.482133 0.87009 0.321342 -0.449506 0.833477 0.321342 -0.449506 0.833477 0.240502 -0.251619 0.937468 0.240502 -0.251619 0.937468 0.177609 -0.048219 0.982919 0.177609 -0.048219 0.982919 0.113264 0.143803 0.983103 0.113264 0.143803 0.983103 0.856752 0.237426 0.457827 0.923385 0.210649 0.320917 0.807841 0.342573 0.479622 0.926355 0.306361 0.219111 0.893024 0.401372 0.203491 0.707489 0.350542 0.613661 0.690028 0.404138 0.600445 0.701459 0.296818 0.647962 0.79174 0.518629 0.322757 0.756722 0.567339 0.324806 0.829456 0.472735 0.297531 0.598529 0.538416 0.593188 0.611969 0.432342 0.662249 0.636119 0.597396 0.488334 0.661695 0.3349 0.670821 0.723255 0.374582 0.580165 0.790325 0.34767 0.504491 0.811959 0.371822 0.449969 0.863778 0.442517 0.24097 0.701135 0.600411 0.384599 0.932766 0.160597 0.322732 0.970845 0.170441 0.168552 0.883636 0.175716 0.433947 0.958137 0.275993 0.076165 0.918477 0.391142 0.058382 0.596042 0.268924 0.756581 0.631692 0.23949 0.737299 0.526233 0.296752 0.79688 0.713347 0.696389 0.078601 0.607873 0.785114 0.118686 0.815341 0.574919 0.068466 0.317442 0.747572 0.583409 0.328784 0.607429 0.72314 0.382484 0.824581 0.416859 0.421264 0.422347 0.802596 0.694449 0.183029 0.695875 0.790988 0.142639 0.594973 0.851498 0.154648 0.501034 0.88206 0.467139 0.061249 0.494106 0.834447 0.244044 0.898388 0.239427 0.368203 0.928433 0.290662 0.231361 0.927907 0.362185 0.088373 0.90613 0.422899 -0.009252 0.502343 -0.531378 -0.68212 0.481433 0.034979 -0.875785 0.821621 0.007587 -0.569984 0.601173 0.059321 -0.796914 0.288385 0.93379 -0.211824 0.988457 0.045901 -0.144378 0.606647 0.786641 -0.114787 0.631147 0.75431 -0.180748 0.972584 0.01879 -0.231792 0.50542 0.85821 -0.089584 0.979429 0.125423 -0.158074 0.681238 -0.704485 -0.199036 0.649817 -0.670326 -0.358331 0.486326 -0.865845 -0.117473 0.446328 -0.866561 -0.223303 0.749936 -0.639396 -0.169616 0.164446 0.814374 0.556554 0.230868 0.7458 0.624886 0.513037 0.656869 0.552553 0.434017 0.729299 0.528916 0.753221 0.48407 0.445347 0.753221 0.48407 0.445347 0.124146 -0.973254 0.193296 0.136691 -0.979344 0.149 0.136691 -0.979344 0.149 0.184839 -0.973906 0.131688 0.16227 -0.986484 -0.022769 0.212195 -0.968006 0.133929 0.212195 -0.968006 0.133929 0.404326 0.749489 0.524201 0.579587 0.654669 0.485269 0.579587 0.654669 0.485269 0.267339 0.835446 0.480167 0.245983 0.889628 0.38478 0.267339 0.835446 0.480167 0.316456 0.757992 0.570354 0.349573 0.870764 0.345787 0.299173 0.736411 0.60679 0.210334 0.763548 0.610536 0.173912 0.765408 0.619601 0.197207 0.7873 0.584182 0.208134 0.150701 0.966421 0.45413 0.145812 0.878922 0.34138 0.606573 0.718004 0.193961 0.656473 0.728987 0.702212 0.014831 0.711813 0.629702 0.408791 0.660579 0.464374 -0.299888 0.833321 0.195845 -0.470873 0.860188 0.247334 -0.957018 0.151467 0.40013 -0.846054 0.352263 0.156142 -0.842984 0.51478 0.487382 -0.796965 0.356799 0.24234 -0.955279 0.169453 0.220077 -0.968074 0.119991 0.144759 -0.978459 0.147185 0.183204 -0.982603 -0.03045 0.067622 -0.997704 0.003667 0.333609 0.885237 0.324131 0.26257 0.786829 0.558531 0.249027 0.818022 0.518484 0.310909 0.905688 0.288211 0.981618 -0.064667 0.179569 0.953472 -0.110057 0.280676 0.829047 -0.397145 0.393645 0.92859 0.156172 0.336647 0.777747 -0.421784 0.466056 0.769156 -0.579058 0.270354 0.995933 0.044395 0.078399 0.452986 -0.772336 0.445309 0.25562 -0.911562 0.322045 0.985612 -0.013881 -0.168452 0.7241 -0.689125 0.028032 0.669094 -0.721471 -0.178308 0.959852 -0.03757 -0.277979 0.142983 -0.970854 0.192352 0.080246 -0.996775 0.00032 0.399717 0.880195 0.255896 0.376418 0.74386 0.552252 0.932941 0.251988 0.257146 0.923519 0.376658 0.072404 0.341071 0.563945 0.752088 0.901143 0.06264 0.428972 0.473307 -0.704975 -0.528197 0.53861 0.034196 -0.841861 0.284747 -0.650038 -0.704536 0.28859 -0.717857 -0.633559 0.66476 -0.69131 -0.283167 0.687122 0.601648 -0.407288 0.19454 0.943367 -0.268726 0.142669 0.967481 -0.20887 0.158097 0.977372 -0.140534 0.267227 0.956959 -0.113221 0.206618 0.964826 -0.16254 0.111176 0.975912 -0.187714 0.29006 0.951394 -0.103509 0.197728 0.977642 -0.071559 0.133329 0.730763 0.669484 -0.021072 0.776457 0.629818 -0.048861 0.692427 0.719831 -0.267381 0.736738 0.621067 0.502201 -0.841758 -0.198082 0.347489 -0.823244 -0.44891 0.323269 -0.832159 -0.450565 0.365532 -0.909977 -0.195774 0.278989 -0.744812 -0.606152 0.310543 -0.724294 -0.615598 0.470573 -0.845704 0.251686 0.639991 -0.751749 0.159014 0.847528 -0.526779 -0.064814 0.931762 0.360605 -0.042234 0.731131 -0.37377 0.57074 0.545828 -0.440059 0.713036 0.28654 -0.807827 -0.515083 0.336227 -0.798398 -0.499512 0.390344 -0.778946 -0.490791 0.394888 -0.900382 -0.182694 0.453746 -0.877199 -0.156959 0.356802 -0.910855 -0.207449 -0.344161 0.695104 0.631176 -0.149439 0.640429 0.753338 -0.149043 0.665502 0.731364 -0.349826 0.693839 0.629452 -0.136209 0.702366 0.698663 -0.323407 0.705435 0.63069 0.682989 -0.682468 -0.260315 0.59895 -0.703991 -0.381648 0.629914 -0.656157 -0.415531 0.77097 -0.571238 -0.281588 0.426971 -0.693708 -0.580055 0.470882 -0.685627 -0.555145 0.547183 -0.735019 -0.400422 0.403878 -0.692278 -0.598025 0.639219 -0.729933 -0.242067 0.756317 -0.646196 0.102054 0.818345 -0.573567 0.036491 0.814869 -0.159464 0.557279 0.753505 -0.300809 0.584589 0.916322 -0.395282 -0.064085 -0.552229 0.717565 0.424433 -0.549898 0.723485 0.417351 -0.689114 0.695621 0.20306 -0.692124 0.693865 0.198787 -0.449937 0.772191 0.44864 -0.582332 0.776773 0.23982 0.4591 -0.736156 -0.497294 0.428557 -0.75507 -0.496193 0.470093 -0.756298 -0.455001 0.604445 -0.773438 -0.190894 0.573109 -0.784752 -0.236031 0.620477 -0.767507 -0.161065 -0.154659 0.830449 0.535196 -0.208047 0.933434 0.292262 0.839948 -0.488026 -0.237313 0.649751 -0.668884 -0.361136 0.686328 -0.685198 -0.243841 0.870409 -0.456272 -0.184943 0.113928 -0.971144 0.209524 0.420169 -0.778433 0.466369 0.36716 -0.763202 0.531711 -0.02591 -0.968892 0.246125 0.735247 0.502746 0.454597 0.760736 -0.231899 0.60622 0.709739 -0.164748 0.68493 0.677088 0.518341 0.522374 0.150157 0.985896 -0.073902 0.110758 0.979195 -0.170028 0.14924 0.977328 -0.150193 0.102024 0.980668 -0.166976 0.092901 0.976521 -0.194362 0.035026 -0.981694 0.187218 -0.094184 -0.972517 0.212932 -0.040179 -0.998571 0.035247 -0.134425 -0.988935 0.062742 0.104938 0.981244 -0.161707 0.151335 0.986059 -0.069173 0.069929 0.986197 -0.150086 0.095076 0.992657 -0.074781 -0.031932 -0.959846 0.278703 0.3959 -0.771292 0.498369 0.753955 -0.269659 0.599029 0.811465 0.345679 0.471202 0.245701 0.963498 -0.106314 0.226774 0.963215 -0.144187 -0.201856 -0.975954 0.082263 -0.144695 -0.963786 0.22401 0.238399 0.953876 -0.182445 0.263237 0.957272 -0.119739 0.137189 0.954008 0.266548 0.004047 0.860303 0.509766 -0.324412 0.82325 0.46585 -0.221133 0.946632 0.234497 0.552688 -0.819889 -0.14939 0.435697 -0.752668 -0.493618 0.365249 -0.701895 -0.611504 0.358271 0.298744 0.88453 0.369064 0.261778 0.891776 0.680582 -0.368671 0.633159 0.35026 0.27383 0.895732 -0.101362 0.652868 0.750659 -0.31403 0.712829 0.627104 0.528306 -0.819128 -0.223433 0.448996 -0.780542 -0.434921 0.341896 0.423686 0.838807 0.504935 0.340193 0.79329 0.181522 0.411952 0.892942 0.181522 0.411952 0.892942 0.465736 -0.606641 0.644264 -0.0363 0.939717 0.340021 0.06455 0.996125 -0.059741 -0.0363 0.939717 0.340021 0.286421 0.951044 -0.116095 0.288616 0.950349 -0.116354 0.275757 0.953921 -0.118292 0.150003 0.985457 -0.079833 -0.160278 0.98687 0.019962 -0.557805 0.804225 0.205125 -0.528811 0.837981 0.134713 -0.689987 0.699784 0.184985 -0.704052 0.684413 0.189445 -0.639015 0.750411 0.168948 -0.301208 0.951297 0.065638 0.321965 0.939617 -0.116016 0.978366 -0.179418 -0.103002 0.950511 -0.146462 -0.274005 0.864752 0.428163 -0.262451 0.86448 -0.440579 -0.242001 0.720676 -0.665351 -0.194768 0.631835 -0.756962 -0.166709 0.640249 -0.749264 -0.169365 0.627443 -0.760901 -0.165364 0.541996 -0.828837 -0.138816 0.434754 -0.894291 -0.105989 0.396475 -0.913174 -0.094449 0.3782 -0.921198 -0.091428 0.733887 0.635327 -0.240355 0.720343 0.687761 -0.089944 0.744559 0.62451 -0.235838 0.345736 0.9286 0.13479 0.993133 0.093733 0.070012 0.356159 0.925036 0.132136 0.187307 0.978163 -0.09007 0.502357 0.858922 0.099456 0.251333 0.962401 -0.103033 0.65335 -0.735934 0.17758 0.65112 0.755621 0.071276 0.96166 -0.25776 -0.093651 0.209729 0.846026 0.490157 0.369985 -0.806261 -0.461579 -0.486759 0.759504 0.431532 0.951681 0.185976 -0.24437 0.902737 0.332183 -0.273352 0.941165 0.315326 -0.121568 0.951681 0.185976 -0.24437 0.956675 0.290442 0.020395 0.999368 -0.03479 -0.007251 0.964422 0.229761 0.130768 0.952504 0.13236 0.274258 0.999368 -0.03479 -0.007251 0.940577 -0.003262 0.339566 0.985356 -0.047323 -0.163812 0.973149 -0.138935 0.183517 0.98634 -0.163979 0.015638 0.985356 -0.047323 -0.163812 0.800077 -0.569905 -0.187309 0.874318 -0.431977 -0.221278 0.945305 -0.32607 -0.008707 0.031586 -0.183913 0.982435 0.031586 -0.183913 0.982435 -0.030751 -0.950601 0.30889 -0.030751 -0.950601 0.30889 0.985137 -0.170059 0.024169 -0.138803 -0.672288 0.727161 -0.138803 -0.672288 0.727161 0.909257 -0.407951 -0.082632 0.909257 -0.407951 -0.082632 0.975975 0.172973 -0.132486 0.975975 0.172973 -0.132486 0.980139 0.18814 -0.062699 0.980139 0.18814 -0.062699 0.977763 -0.075286 0.195733 0.977763 -0.075286 0.195733 0.989301 -0.108793 0.097195 0.989301 -0.108793 0.097195 0.977445 0.124096 -0.170885 0.977445 0.124096 -0.170885 0.998153 0.056019 0.023506 0.998153 0.056019 0.023506 0.796335 -0.523715 0.302611 0.474101 -0.734714 0.485204 -0.961031 0.165053 0.221757 -0.966015 0.031778 0.256527 -0.974186 0.146597 0.171671 -0.972365 0.022683 0.232362 -0.984794 0.118521 0.127015 -0.97678 0.011602 0.213931 -0.992779 0.080892 0.088578 -0.980405 -0.006081 0.1969 -0.997692 0.034776 0.058321 -0.983084 -0.030932 0.180525 -0.999084 -0.01652 0.039467 -0.983546 -0.055798 0.171824 -0.996955 -0.071034 0.03217 -0.982323 -0.081459 0.168542 -0.991355 -0.12588 0.037019 -0.979425 -0.107879 0.170556 -0.982538 -0.178319 0.053122 -0.975168 -0.132497 0.177459 -0.97118 -0.224992 0.078667 -0.9699 -0.153567 0.188972 -0.957807 -0.263848 0.113978 -0.963903 -0.170188 0.204763 -0.939615 -0.29636 0.171153 -0.955655 -0.183417 0.230396 -0.916192 -0.318352 0.243403 -0.943673 -0.194814 0.26745 -0.940074 0.285894 0.18581 -0.959445 0.258862 0.111609 -0.975323 0.216319 0.04416 -0.986978 0.160325 -0.013014 -0.993968 0.093475 -0.057363 -0.996059 0.018754 -0.086686 -0.993227 -0.06055 -0.099163 -0.985628 -0.140582 -0.09367 -0.972899 -0.220345 -0.070116 -0.955697 -0.29262 -0.031897 -0.933885 -0.356815 0.023271 -0.904554 -0.412768 0.106793 -0.874187 -0.443341 0.198105 -0.904883 0.399162 0.14784 -0.930066 0.363832 0.051015 -0.950616 0.308169 -0.036885 -0.965592 0.235032 -0.111317 -0.974471 0.147814 -0.168987 -0.976979 0.05078 -0.207202 -0.973161 -0.05162 -0.224262 -0.963025 -0.155851 -0.219756 -0.94516 -0.263631 -0.192798 -0.918341 -0.367435 -0.147108 -0.884469 -0.46033 -0.076225 -0.846414 -0.531736 0.028979 -0.81683 -0.561478 0.132408 -0.856198 0.505244 0.107954 -0.886734 0.462178 -0.009715 -0.911564 0.394322 -0.116455 -0.92955 0.305236 -0.206801 -0.940103 0.199203 -0.276631 -0.942966 0.081326 -0.322801 -0.938215 -0.042948 -0.343377 -0.925514 -0.170798 -0.338011 -0.90304 -0.303133 -0.304351 -0.869126 -0.43109 -0.242446 -0.825613 -0.542663 -0.154533 -0.78679 -0.615366 -0.04782 -0.763783 -0.641746 0.069265 -0.795208 0.602633 0.06691 -0.830597 0.552504 -0.069627 -0.85928 0.473551 -0.193358 -0.879991 0.369951 -0.297914 -0.892055 0.246859 -0.378547 -0.895219 0.110198 -0.431786 -0.889617 -0.03377 -0.455457 -0.87547 -0.181874 -0.447743 -0.852671 -0.3311 -0.404135 -0.819795 -0.473097 -0.322669 -0.773161 -0.597383 -0.21297 -0.732323 -0.672114 -0.109388 -0.703802 -0.710148 0.018793 -0.723285 0.690084 0.025367 -0.762965 0.633675 -0.127835 -0.79508 0.544841 -0.266451 -0.818228 0.428382 -0.383395 -0.831653 0.290204 -0.47343 -0.835118 0.137002 -0.532737 -0.828804 -0.024239 -0.559013 -0.813771 -0.188224 -0.549862 -0.79107 -0.350428 -0.501406 -0.757687 -0.507139 -0.410755 -0.712161 -0.640658 -0.287028 -0.672656 -0.725938 0.143347 -0.641851 0.766661 -0.016075 -0.68527 0.704796 -0.183489 -0.720395 0.607414 -0.334782 -0.745674 0.479891 -0.46225 -0.760327 0.328783 -0.560182 -0.764125 0.161453 -0.624537 -0.757252 -0.014499 -0.652962 -0.740618 -0.191819 -0.643964 -0.713493 -0.368156 -0.596145 -0.67319 -0.539525 -0.505696 -0.633594 -0.66652 -0.392824 -0.552217 0.831757 -0.056883 -0.598779 0.765354 -0.236001 -0.636491 0.660838 -0.397708 -0.663675 0.524103 -0.533716 -0.679467 0.362301 -0.638015 -0.683616 0.18334 -0.706439 -0.676308 -0.004709 -0.736604 -0.658096 -0.193709 -0.72759 -0.624976 -0.385418 -0.678866 -0.57331 -0.567527 -0.590956 -0.539712 -0.669892 -0.509859 -0.455829 0.884817 -0.096532 -0.504906 0.814845 -0.284776 -0.544771 0.704701 -0.454557 -0.573584 0.560728 -0.597148 -0.59041 0.390539 -0.706325 -0.594941 0.202476 -0.777849 -0.58738 0.005005 -0.809296 -0.568315 -0.193377 -0.799765 -0.531724 -0.399254 -0.746904 -0.472063 -0.588647 -0.65624 -0.438252 -0.663694 -0.606173 -0.336649 0.931055 -0.140727 -0.387856 0.858178 -0.336301 -0.429627 0.743452 -0.512543 -0.459974 0.593597 -0.660353 -0.477869 0.416607 -0.773356 -0.482921 0.221168 -0.847273 -0.475295 0.016124 -0.879678 -0.455543 -0.189817 -0.869741 -0.417917 -0.406061 -0.812687 -0.353552 -0.60422 -0.714086 -0.307968 -0.666598 -0.678825 -0.193714 0.962913 -0.187815 -0.246267 0.8884 -0.387424 -0.288613 0.77069 -0.568101 -0.317008 0.616998 -0.720292 -0.324374 0.435579 -0.839674 -0.320365 0.248902 -0.91401 -0.326185 0.041175 -0.944409 -0.317893 -0.181748 -0.930544 -0.279515 -0.404386 -0.870829 -0.213288 -0.614544 -0.759503 -0.156721 -0.682515 -0.713871 -0.046463 0.971992 -0.230375 -0.103325 0.898972 -0.425645 -0.164362 0.783516 -0.59924 -0.218293 0.643744 -0.733446 -0.220032 0.426957 -0.877094 -0.163378 0.257767 -0.952294 -0.189104 0.091231 -0.97771 -0.196106 -0.137994 -0.970824 -0.15848 -0.395997 -0.904473 -0.068774 -0.626707 -0.776214 0.011498 -0.702817 -0.711278 0.080842 0.962059 -0.260588 -0.004368 0.897342 -0.441313 -0.108637 0.80053 -0.589364 -0.077282 0.160772 -0.983961 -0.047366 -0.005136 -0.998864 -0.055321 -0.376835 -0.924627 0.024205 -0.64051 -0.767568 0.122657 -0.746286 -0.654227 0.182989 0.944565 -0.272601 0.060296 0.892968 -0.446064 0.298773 0.913904 -0.274797 0.253313 0.891687 -0.375137 0.114854 -0.338324 -0.933994 0.102232 0.013353 -0.994671 0.151765 -0.614693 -0.774028 0.247572 -0.789545 -0.561539 0.422501 0.861523 -0.281553 0.416333 0.839555 -0.34902 0.37199 -0.274879 -0.886603 0.353485 0.017625 -0.935274 0.378321 -0.507369 -0.774242 0.386435 -0.730111 -0.563565 0.530382 0.793788 -0.297652 0.540498 0.759214 -0.362568 0.588887 -0.200332 -0.782994 0.56861 0.014756 -0.822475 0.582449 -0.344028 -0.736476 0.575726 -0.569224 -0.586961 0.65241 0.687716 -0.318445 0.658927 0.642592 -0.391012 0.527988 0.032741 -0.848621 0.572271 -0.222348 -0.789346 0.647447 -0.270239 -0.712589 0.71954 -0.352064 -0.598592 0.761452 -0.51329 -0.395884 0.588683 -0.724004 -0.359542 0.425419 -0.825843 -0.370137 0.75829 0.548346 -0.35258 0.752446 0.495489 -0.433954 0.762878 0.455469 -0.458873 0.774527 0.480972 -0.410821 -0.059483 0.299655 -0.952191 -0.090596 0.399221 -0.912368 0.036545 0.471124 -0.881309 0.07364 0.399264 -0.913874 -0.030114 0.266255 -0.963432 -0.038844 0.381241 -0.923659 -0.13284 0.509742 -0.85001 -0.066453 0.503298 -0.861554 0.001768 0.538105 -0.842876 0.050754 0.065758 -0.996544 -0.019181 0.193572 -0.980899 0.117727 0.320417 -0.939933 0.173089 0.209675 -0.962329 0.073986 0.047418 -0.996131 -0.002861 0.154045 -0.98806 0.22268 -0.189591 -0.956279 0.142047 -0.070696 -0.987332 0.235945 0.061061 -0.969846 0.284019 -0.085242 -0.955022 0.284187 -0.119522 -0.95129 0.18495 -0.046926 -0.981627 0.469944 -0.314762 -0.824668 0.324898 -0.286474 -0.901318 0.327435 -0.220891 -0.918691 0.436096 -0.251459 -0.864054 0.473624 -0.209127 -0.855538 0.371679 -0.174482 -0.911817 0.593781 -0.220328 -0.773873 0.64569 -0.038921 -0.762607 0.659388 -0.074842 -0.748068 0.577338 -0.188497 -0.794449 0.520053 -0.164818 -0.838081 0.486574 -0.003404 -0.873633 0.583694 0.350278 -0.732535 0.633952 0.167061 -0.755112 0.445809 0.172583 -0.878333 0.388775 0.329865 -0.860258 0.670839 0.324639 -0.666772 0.692093 0.11947 -0.711852 0.445222 0.577844 -0.684013 0.517686 0.479897 -0.708308 0.330597 0.433029 -0.838565 0.275479 0.50654 -0.817024 0.53871 0.612813 -0.578145 0.616696 0.484403 -0.620516 0.278003 0.744964 -0.606418 0.365453 0.664551 -0.651779 0.221829 0.57283 -0.789087 0.182217 0.632878 -0.752504 0.306851 0.80584 -0.506422 0.437533 0.722967 -0.534681 -0.077112 0.816166 -0.572649 0.125172 0.825515 -0.550324 0.121846 0.731498 -0.670868 -0.019603 0.743964 -0.667932 -0.030227 0.802231 -0.596248 0.128031 0.849287 -0.512171 -0.166759 0.672289 -0.721262 -0.074919 0.639876 -0.764817 -0.086363 0.65898 -0.747185 0.419268 0.406688 -0.811677 0.45283 0.31045 -0.835802 0.550354 0.354523 -0.755926 0.488995 0.426269 -0.761038 0.798505 0.589542 -0.121777 0.629664 0.764854 -0.136094 0.428097 0.516657 -0.741484 0.481992 0.162651 -0.860946 0.476625 0.173666 -0.861782 0.541781 -0.051837 -0.83892 0.610962 -0.026965 -0.7912 0.77405 -0.395398 -0.494477 0.920958 -0.172543 -0.349378 0.643893 0.078074 -0.761122 0.480736 0.233816 -0.845117 0.483133 0.167149 -0.859444 0.616661 0.240115 -0.749715 0.967736 0.117908 -0.222674 0.913198 0.379905 -0.147451 0.390578 0.591083 -0.705741 0.382839 0.535126 -0.753044 0.414139 0.577573 -0.70349 0.47634 0.860797 -0.179246 0.340392 0.907818 -0.24495 0.421549 0.584377 -0.693397 0.405414 0.540989 -0.736865 0.431518 0.576007 -0.694268 0.364935 0.56563 -0.739517 0.160295 0.921034 -0.354968 -0.063838 0.850342 -0.522343 0.231853 0.516573 -0.824255 -0.234963 0.674542 -0.699847 -0.263787 0.488611 -0.831671 0.143761 0.349005 -0.926028 0.121957 0.430188 -0.894463 0.244238 0.368175 -0.897104 0.286839 0.465666 -0.837185 0.431825 0.308888 -0.847417 0.349106 0.306214 -0.88564 0.242828 0.317447 -0.916658 -0.193183 0.358321 -0.913393 -0.108882 0.280328 -0.953709 0.308743 0.342271 -0.887428 0.400235 0.380025 -0.833902 0.437071 0.358464 -0.824907 0.306876 0.362809 -0.879885 -0.062544 0.201463 -0.977497 -0.04802 0.0781 -0.995788 0.266858 0.326827 -0.906626 0.350138 0.278047 -0.894479 0.354862 0.347322 -0.868009 0.255429 0.219947 -0.941477 -0.006971 -0.087812 -0.996113 0.120653 -0.291438 -0.94895 0.318338 0.07641 -0.944893 0.448609 0.180967 -0.875215 0.399034 0.212972 -0.89186 0.432397 -0.02109 -0.901437 0.342686 -0.457883 -0.820311 0.578434 -0.49519 -0.648229 0.296419 -0.000702 -0.955058 0.296419 -0.000702 -0.955058 0.172523 0.052896 -0.983584 0.172523 0.052896 -0.983584 0.039158 0.322577 -0.945733 0.039158 0.322577 -0.945733 0.047516 0.433082 -0.900101 0.047516 0.433082 -0.900101 0.073663 0.121903 -0.989805 0.073663 0.121903 -0.989805 0.020637 0.212144 -0.977021 0.020637 0.212144 -0.977021 0.424054 -0.091556 -0.900997 0.424054 -0.091556 -0.900997 0.357272 -0.03225 -0.933444 0.357272 -0.03225 -0.933444 0.012525 0.534209 -0.84526 0.012525 0.534209 -0.84526 -0.011494 0.7071 -0.707021 -0.011494 0.7071 -0.707021 0.597526 -0.131026 -0.791072 0.597526 -0.131026 -0.791072 0.505826 -0.146625 -0.850083 0.505826 -0.146625 -0.850083 0.043082 0.835064 -0.548463 0.043082 0.835064 -0.548463 0.232892 0.841802 -0.486962 0.232892 0.841802 -0.486962 0.692441 0.211038 -0.689919 0.692441 0.211038 -0.689919 0.670034 -0.002279 -0.742327 0.670034 -0.002279 -0.742327 0.395537 0.785831 -0.475416 0.395537 0.785831 -0.475416 0.511415 0.69064 -0.511342 0.511415 0.69064 -0.511342 0.608864 0.549501 -0.572131 0.608864 0.549501 -0.572131 0.665886 0.412472 -0.621662 0.665886 0.412472 -0.621662 0.267718 0.900516 0.342634 0.267718 0.900516 0.342634 0.434491 0.763425 0.477912 0.434491 0.763425 0.477912 0.869912 0.076138 0.487294 0.869912 0.076138 0.487294 0.932155 -0.229683 0.279881 0.932155 -0.229683 0.279881 0.602872 0.538559 0.588642 0.602872 0.538559 0.588642 0.752279 0.323048 0.574209 0.752279 0.323048 0.574209 -0.213672 0.974192 0.072768 -0.213672 0.974192 0.072768 0.039021 0.973056 0.227243 0.039021 0.973056 0.227243 0.840289 -0.540248 0.045233 0.840289 -0.540248 0.045233 0.606818 -0.775669 -0.17352 0.606818 -0.775669 -0.17352 -0.573632 0.648601 -0.500262 -0.573632 0.648601 -0.500262 -0.459052 0.865899 -0.198721 -0.459052 0.865899 -0.198721 0.348772 -0.845309 -0.404736 0.348772 -0.845309 -0.404736 0.044107 -0.731158 -0.680781 0.044107 -0.731158 -0.680781 -0.526631 0.262875 -0.808429 -0.526631 0.262875 -0.808429 -0.572583 0.444835 -0.688673 -0.572583 0.444835 -0.688673 -0.171813 -0.489749 -0.854767 -0.171813 -0.489749 -0.854767 -0.298216 -0.294897 -0.907801 -0.298216 -0.294897 -0.907801 -0.378075 -0.092709 -0.921121 -0.378075 -0.092709 -0.921121 -0.44719 0.096281 -0.889242 -0.44719 0.096281 -0.889242 0.612429 0.206829 -0.762989 0.464886 0.248405 -0.849809 0.407407 0.351958 -0.842701 0.648197 0.357749 -0.672202 0.671753 0.259933 -0.693674 0.260779 0.444292 -0.857088 0.266283 0.359019 -0.894538 0.239549 0.282383 -0.928911 0.456076 0.54318 -0.704947 0.484975 0.494828 -0.721072 0.523431 0.452679 -0.721874 0.154432 0.395601 -0.905345 0.17883 0.504716 -0.84456 0.266157 0.567731 -0.779001 0.193307 0.300033 -0.934138 0.427534 0.439385 -0.790035 0.307666 0.464115 -0.830626 0.465664 0.419078 -0.779442 0.586011 0.418412 -0.693919 0.376686 0.574397 -0.726757 0.72401 0.167928 -0.669036 0.615211 0.144276 -0.775048 0.538442 0.194451 -0.81992 0.755996 0.352652 -0.551458 0.765047 0.251817 -0.592698 0.104303 0.251884 -0.96212 0.084593 0.265317 -0.960443 0.005837 0.281933 -0.959416 0.438714 0.77153 -0.460728 0.549094 0.684577 -0.479427 0.639111 0.567102 -0.51955 -0.119349 0.571474 -0.811895 -0.055497 0.717664 -0.694175 0.087893 0.80095 -0.592244 -0.082255 0.383999 -0.919662 0.371981 0.25099 -0.893663 0.168173 0.254214 -0.952414 0.515832 0.244885 -0.820943 0.711746 0.448691 -0.540457 0.274747 0.816832 -0.507247 0.645705 0.281916 -0.70964 0.539281 0.220414 -0.812769 0.769022 0.394085 -0.503292 0.726749 0.338639 -0.597628 0.910687 0.132665 0.391214 0.999599 0.019627 0.020427 0.95412 0.024299 0.298438 0.445708 0.894704 -0.029136 0.965917 0.00636 -0.258774 0.63813 0.749781 -0.174984 0.564478 0.808758 -0.165152 0.955888 0.074409 -0.28415 0.833027 -0.550995 -0.049699 0.747769 -0.638876 -0.180774 0.496269 -0.862279 -0.100952 -0.207933 0.848115 -0.487303 0.067624 0.763984 -0.641681 0.12728 0.626188 -0.769213 -0.218784 0.728379 -0.649305 0.477035 0.407812 -0.778542 0.477035 0.407812 -0.778542 0.017333 -0.981177 -0.192329 0.100697 -0.980826 -0.166857 0.066985 -0.985016 -0.158922 0.066985 -0.985016 -0.158922 0.113176 -0.977596 -0.177477 0.113176 -0.977596 -0.177477 0.260639 0.584649 -0.768279 0.260639 0.584649 -0.768279 0.016554 0.67435 -0.738226 -0.106362 0.750404 -0.652366 -0.106362 0.750404 -0.652366 -0.052394 0.836039 -0.546163 0.073173 0.824552 -0.561034 -0.11046 0.686583 -0.718611 -0.155032 0.743111 -0.650962 -0.209657 0.806439 -0.552901 -0.277141 0.74834 -0.602644 -0.254322 0.755762 -0.603444 -0.358109 0.092557 -0.929081 -0.250923 0.673348 -0.695442 -0.112663 0.603179 -0.789609 -0.09202 0.089713 -0.991708 0.154625 0.382352 -0.910988 0.205405 -0.026468 -0.978319 -0.072607 -0.353019 -0.932795 -0.315135 -0.516218 -0.796372 0.137801 -0.96591 -0.219155 -0.147037 -0.862058 -0.485012 0.15353 -0.866566 -0.474859 0.229098 -0.817711 -0.528075 0.125194 -0.964684 -0.231758 0.055128 -0.985656 -0.159509 0.133227 -0.975043 -0.1776 0.08158 0.845691 -0.5274 0.078804 0.875247 -0.477213 -0.135909 0.78308 -0.606889 -0.14307 0.731129 -0.667069 0.652262 -0.134271 -0.746006 0.728452 -0.084587 -0.679855 0.489926 -0.423017 -0.762253 0.604152 0.140091 -0.784458 0.789901 0.036981 -0.612119 0.511155 -0.597093 -0.618224 0.41548 -0.442463 -0.794735 0.053874 -0.927755 -0.369281 0.152238 -0.796477 -0.58519 0.917433 -0.01634 -0.397554 0.60325 -0.699086 -0.383887 0.029478 -0.980033 -0.196639 0.188278 0.863211 -0.468421 0.734878 0.361526 -0.573806 0.645074 0.228829 -0.729052 0.011092 0.714503 -0.699544 0.528285 0.032629 -0.84844 -0.123905 0.526586 -0.841044 0.709036 -0.679127 0.189881 0.54884 -0.680148 0.485977 0.696633 -0.536154 0.476698 0.937025 0.142119 0.319041 0.883729 -0.390989 0.257199 0.771856 0.621298 -0.135006 0.80244 -0.582305 -0.130427 0.360455 0.931906 0.040288 0.246781 0.968966 0.014261 0.199409 0.979909 0.003657 0.20259 0.97835 0.042279 0.297397 0.954751 0.002279 0.296878 0.953346 -0.054732 -0.448272 0.750301 -0.485901 -0.299256 0.711329 -0.635969 -0.449932 0.662013 -0.599417 -0.604373 0.702658 -0.375506 0.543677 -0.837776 -0.05046 0.41825 -0.908309 0.006481 0.525642 -0.828016 0.195167 0.513327 -0.837473 0.187441 0.632445 -0.690176 0.351668 0.562937 -0.723503 0.399556 0.270888 -0.860723 -0.431018 0.466072 -0.760826 -0.451575 0.785817 -0.470274 -0.401664 0.806986 0.379916 -0.452147 0.311722 -0.406116 -0.859011 0.08011 -0.476468 -0.875534 0.492226 -0.783275 0.379728 0.564196 -0.75938 0.324076 0.615425 -0.747397 0.250297 0.467281 -0.880804 -0.076373 0.423525 -0.905139 -0.036738 0.388235 -0.921287 -0.022439 -0.638353 0.671458 -0.376365 -0.642083 0.670375 -0.371923 -0.527289 0.635121 -0.564436 -0.53912 0.609156 -0.581618 -0.499354 0.673213 -0.545371 -0.620665 0.681581 -0.387585 0.724403 -0.679107 -0.118553 0.808578 -0.568186 -0.152862 0.76273 -0.645516 0.039393 0.719046 -0.694329 0.029644 0.704086 -0.666952 0.243799 0.68063 -0.673335 0.288725 0.675478 -0.668555 0.311069 0.688796 -0.721756 0.068031 0.678689 -0.726051 -0.110594 0.590821 -0.659388 -0.464906 0.324614 -0.335183 -0.884465 0.389368 -0.193616 -0.900503 0.677507 -0.584788 -0.446103 0.811911 -0.403641 -0.421752 -0.702864 0.705439 -0.091315 -0.699069 0.693346 0.174852 -0.698884 0.694843 0.169571 -0.697074 0.711711 -0.08692 -0.629707 0.772938 0.077689 -0.630257 0.757744 -0.169115 0.665495 -0.718329 0.202779 0.637554 -0.7383 0.220087 0.650398 -0.741869 0.163133 0.619906 -0.781037 -0.075482 0.62189 -0.772088 -0.130895 0.619404 -0.767547 -0.164959 -0.428525 0.808484 -0.403384 -0.344282 0.922494 -0.174568 0.841854 -0.487833 -0.230867 0.838993 -0.458769 -0.292613 0.718357 -0.682624 -0.134116 0.750372 -0.66081 -0.016469 -0.004385 -0.980634 -0.195802 0.11327 -0.803082 -0.585003 0.033162 -0.790045 -0.612151 -0.142029 -0.978203 -0.151482 0.398848 0.500353 -0.768484 0.284867 0.522124 -0.803889 0.240759 -0.182234 -0.953324 0.326055 -0.256882 -0.90978 0.106126 0.992625 0.058596 0.101925 0.991712 -0.078227 0.185058 0.981762 0.043548 0.161241 0.98316 0.086007 0.203627 0.976108 0.075821 -0.181266 -0.979622 -0.086502 -0.058418 -0.989239 -0.134139 0.18691 0.981774 0.034418 0.16088 0.98655 0.028917 -0.164751 -0.970502 -0.176023 0.075477 -0.797038 -0.599194 0.41959 0.332341 -0.844685 0.322606 -0.288805 -0.901397 0.338129 0.937695 -0.079978 0.299596 0.953203 -0.040569 -0.230271 -0.970692 -0.068787 0.273756 0.960659 -0.046809 -0.093554 0.935084 -0.341855 -0.357811 0.927392 -0.109158 -0.580229 0.784645 -0.218327 -0.370232 0.823908 -0.429073 0.555442 -0.82035 -0.136052 0.648256 -0.730721 0.214037 0.665073 -0.670138 0.329534 -0.177345 0.255741 -0.950339 0.237945 -0.404121 -0.883215 -0.171659 0.218398 -0.960643 -0.191232 0.22974 -0.95428 -0.611039 0.688951 -0.389844 -0.497376 0.621066 -0.605717 0.578572 -0.812132 -0.075471 0.636769 -0.760919 0.124606 -0.168096 0.382717 -0.908445 -0.01579 0.29859 -0.954251 -0.354497 0.372019 -0.857866 -0.354497 0.372019 -0.857866 0.030753 -0.642052 -0.766044 -0.28865 0.899627 -0.327645 -0.28865 0.899627 -0.327645 -0.590748 0.801531 0.092551 0.882451 -0.187177 -0.431561 0.631213 0.690214 -0.3538 0.716773 0.651128 -0.249539 0.810085 0.079366 -0.580916 0.218435 0.918014 -0.330963 0.140919 0.983259 -0.115515 0.178425 0.905077 -0.386006 0.364259 0.817074 -0.446884 0.299785 0.939825 -0.163886 0.464631 -0.750462 -0.470027 0.536199 0.720631 -0.439525 0.864301 -0.265631 -0.427112 -0.127859 0.902899 -0.410396 0.648779 -0.746777 0.14632 -0.65206 0.746179 -0.134292 0.932257 0.179954 -0.313868 0.932257 0.179954 -0.313868 0.85443 0.301563 -0.423095 0.797829 0.26596 -0.541049 0.873116 -0.177098 -0.454207 0.873116 -0.177098 -0.454207 0.649289 0.072699 -0.757059 0.753442 0.191783 -0.628923 0.6043 -0.0704 -0.793641 0.921298 -0.001363 -0.388856 0.921298 -0.001363 -0.388856 0.805464 -0.09727 -0.584608 0.710857 -0.181827 -0.679427 0.859553 -0.250977 -0.445172 -0.504833 -0.252405 -0.825491 -0.504833 -0.252405 -0.825491 -0.176988 -0.95937 -0.219738 -0.176988 -0.95937 -0.219738 0.838581 -0.043777 -0.543014 -0.50884 -0.695521 -0.507279 -0.50884 -0.695521 -0.507279 0.843621 -0.371969 -0.387224 0.843621 -0.371969 -0.387224 0.897769 0.154532 -0.41247 0.897769 0.154532 -0.41247 0.883068 0.157461 -0.442037 0.883068 0.157461 -0.442037 0.71598 -0.20424 -0.667576 0.71598 -0.20424 -0.667576 0.84052 -0.139279 -0.523572 0.84052 -0.139279 -0.523572 0.889164 0.201883 -0.410647 0.889164 0.201883 -0.410647 0.844759 0.094819 -0.526679 0.844759 0.094819 -0.526679 0.516769 -0.546521 -0.658988 0.137687 -0.761356 -0.633545 -0.073521 0.769689 -0.634171 -0.902895 -0.325759 0.280467 -0.936415 -0.200727 0.287811 -0.858832 -0.448083 0.248252 -0.80054 -0.564124 0.202238 -0.740856 -0.649577 0.170825 -0.640499 -0.727822 0.245023 -0.852262 -0.443442 0.277505 -0.785146 -0.561254 0.261802 -0.709343 -0.657204 0.254784 0.578683 -0.759785 0.2964 -0.000115 -0.99999 -0.004589 -0.00051 -0.999977 -0.006811 -3.4e-005 -0.999995 -0.003095 -0.0006 -0.999998 -0.001658 0.001309 -0.999998 0.001288 -0.003465 -0.999976 -0.006061 -0.004195 -0.999979 -0.004981 -0.000633 -0.99997 -0.007748 -0.001948 -0.999974 -0.00693 -6e-006 -0.999971 -0.007673 -0.00264 -0.99998 -0.005704 -6.6e-005 -0.999967 -0.008151 -0.00142 -0.999996 -0.002481 0.003645 -0.999993 4.6e-005 -0.002686 -0.999991 0.003221 0.002724 -0.999944 0.010221 0.004946 -0.999932 0.010546 0.006765 -0.99992 0.010688 0.004595 -0.999966 0.006817 0.001146 -0.999997 0.002298 -0.004822 -0.999982 0.003527 -0.003588 -0.999964 0.00771 -0.00298 -0.999888 0.014663 -0.001243 -0.999863 0.016531 0.001848 -0.999933 0.011451 -0.004415 -0.999984 0.003674 0.001118 -0.999907 0.013595 0.001334 -0.999999 -0.000699 -0.00033 -1 -0.000292</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2290\" offset=\"0\" source=\"#LOD3spShape-lib-normals-array\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"LOD3spShape-lib-map1\" name=\"map1\">\r\n                    <float_array count=\"4554\" id=\"LOD3spShape-lib-map1-array\">0.245158 0.423975 0.25011 0.468112 0.150442 0.543685 0.148569 0.498875 0.302841 0.416173 0.345064 0.636086 0.339502 0.673242 0.260986 0.672117 0.283208 0.642063 0.331126 0.714598 0.241009 0.71553 0.233372 0.762934 0.302959 0.373132 0.224027 0.289653 0.23558 0.359702 0.143764 0.429085 0.134156 0.320572 0.298228 0.319321 0.288073 0.263566 0.326898 0.757163 0.328393 0.797118 0.23841 0.805793 0.60087 0.640918 0.866606 0.398924 0.510699 0.676291 0.517366 0.634965 0.871384 0.397619 0.505796 0.719121 0.878048 0.397558 0.87416 0.398826 0.86606 0.397625 0.86057 0.399008 0.501279 0.762876 0.856321 0.39906 0.497144 0.804816 0.862375 0.397683 0.860024 0.397676 0.853776 0.399148 0.494669 0.842655 0.936097 0.40457 0.495808 0.877438 0.932361 0.401286 0.944998 0.401429 0.333511 0.830512 0.255441 0.838224 0.335539 0.859065 0.275714 0.857682 0.13703 0.645509 0.099669 0.709478 0.072436 0.710311 0.114209 0.64461 0.217381 0.600094 0.193334 0.589335 0.083907 0.774978 0.093256 0.834193 0.067488 0.842396 0.056643 0.778851 0.948825 0.405179 0.543475 0.557405 0.5578 0.533271 0.685834 0.551732 0.928618 0.398828 0.939922 0.398832 0.318062 0.571086 0.304302 0.551225 0.870712 0.401462 0.862287 0.401557 0.855482 0.401642 0.85836 0.405349 0.85103 0.405417 0.86725 0.404976 0.851008 0.401767 0.84805 0.401779 0.618068 0.949096 0.595914 0.442419 0.701364 0.36472 0.704143 0.312403 0.595493 0.387203 0.757075 0.288915 0.749567 0.262372 0.79867 0.019963 0.720188 0.090411 0.342229 0.232442 0.353643 0.285267 0.846214 0.405443 0.84246 0.405195 0.945825 0.3988 0.51556 0.94314 0.529717 0.959537 0.951482 0.401365 0.955814 0.405156 0.355112 0.336459 0.416748 0.23909 0.409212 0.301844 0.412385 0.174765 0.722678 0.141004 0.371257 0.129527 0.316583 0.183819 0.278107 0.146712 0.815355 0.094326 0.586596 0.164171 0.31201 0.090946 0.272238 0.213152 0.591566 0.221736 0.775513 0.183818 0.258385 0.177707 0.714664 0.225413 0.594393 0.311859 0.803506 0.201004 0.853165 0.100422 0.240207 0.064107 0.220228 0.127313 0.134162 0.116701 0.137886 0.045291 0.20962 0.176711 0.132836 0.176022 0.393776 0.367451 0.346805 0.380154 0.21424 0.228892 0.133514 0.241035 0.127886 0.880246 0.194162 0.909528 0.176891 0.924466 0.105635 0.892789 0.298575 0.918513 0.289302 0.932026 0.41004 0.927663 0.412647 0.940987 0.152917 0.714025 0.188039 0.660899 0.251002 0.622891 0.148083 0.821618 0.139091 0.770988 0.529124 0.59406 0.624566 0.605374 0.943792 0.414167 0.33386 0.602351 0.939709 0.408955 0.951716 0.40979 0.95394 0.414936 0.863781 0.409841 0.854643 0.410095 0.847079 0.410021 0.50373 0.914675 0.043999 0.560029 0.039161 0.51728 0.035514 0.442488 0.02836 0.327681 0.57657 0.399149 0.579657 0.45714 0.483058 0.467543 0.484696 0.402538 0.027211 0.11532 0.026409 0.041836 0.027231 0.176259 0.027041 0.244825 0.496033 0.232082 0.498386 0.171519 0.545104 0.178866 0.55478 0.242428 0.486973 0.320445 0.572701 0.32584 0.253473 0.42034 0.198325 0.471074 0.201641 0.514357 0.257191 0.464291 0.304409 0.414784 0.305266 0.371658 0.230885 0.286168 0.167912 0.306331 0.188981 0.401339 0.242536 0.354324 0.300813 0.31779 0.290984 0.262458 0.644363 0.422582 0.643061 0.366324 0.70337 0.314326 0.703499 0.366966 0.745969 0.26707 0.75382 0.293297 0.343946 0.231017 0.355397 0.284532 0.356783 0.335152 0.414764 0.29281 0.419941 0.236001 0.413771 0.173263 0.370421 0.125545 0.313385 0.086563 0.282902 0.142155 0.319456 0.18046 0.261679 0.175104 0.275739 0.211488 0.247515 0.05956 0.175872 0.043369 0.166908 0.113803 0.230266 0.122298 0.162066 0.173298 0.220575 0.173418 0.399643 0.347472 0.348371 0.378515 0.850892 0.415208 0.23283 0.882474 0.174218 0.860862 0.318561 0.890705 0.412205 0.900441 0.414872 0.864697 0.414169 0.832004 0.413463 0.796679 0.414763 0.757 0.418623 0.715141 0.424042 0.67374 0.797949 0.022112 0.816816 0.093012 0.720595 0.147032 0.715991 0.092651 0.636546 0.210325 0.627672 0.148444 0.772502 0.189202 0.711355 0.231084 0.641706 0.289174 0.223314 0.226619 0.162858 0.235961 0.139391 0.505963 0.140772 0.546375 0.105327 0.324975 0.131454 0.436403 0.855305 0.0942 0.800674 0.205793 0.103269 0.042003 0.100779 0.11305 0.099208 0.173793 0.099637 0.242841 0.428561 0.633258 0.429426 0.594048 0.429051 0.559095 0.429259 0.535162 0.35272 0.639241 0.294558 0.645659 0.274212 0.673847 0.348213 0.675519 0.253789 0.714174 0.339072 0.715472 0.241562 0.759109 0.241492 0.801977 0.330569 0.796358 0.332348 0.756954 0.843668 0.414845 0.519216 0.636196 0.513483 0.677706 0.858319 0.415536 0.509018 0.719971 0.595108 0.724198 0.959154 0.409842 0.961426 0.415077 0.955396 0.420505 0.503982 0.762367 0.946551 0.419988 0.498249 0.80295 0.581926 0.813498 0.948394 0.426244 0.956245 0.426562 0.493564 0.840197 0.962774 0.420748 0.49337 0.874734 0.5689 0.884732 0.963626 0.426902 0.947821 0.439136 0.254385 0.836095 0.333265 0.830744 0.334347 0.859927 0.274272 0.857068 0.111374 0.707428 0.160452 0.654158 0.126019 0.649524 0.074711 0.707898 0.232092 0.611555 0.203545 0.598866 0.085639 0.828171 0.086444 0.767612 0.053832 0.770468 0.05904 0.833261 0.5406 0.554531 0.653253 0.57169 0.949156 0.432796 0.552741 0.532581 0.956416 0.432776 0.955188 0.438695 0.321928 0.578317 0.3053 0.558373 0.963377 0.433055 0.962074 0.438861 0.939469 0.450342 0.944673 0.445101 0.952905 0.444195 0.949616 0.449137 0.959891 0.444199 0.95721 0.449055 0.928445 0.45763 0.933041 0.454385 0.647892 0.957038 0.945196 0.453364 0.513713 0.938992 0.528694 0.953445 0.940767 0.456994 0.954246 0.453493 0.191556 0.905473 0.119561 0.876603 0.09609 0.886393 0.173642 0.917872 0.296111 0.916924 0.285563 0.930752 0.407594 0.925155 0.699705 0.808301 0.767751 0.813767 0.770203 0.857847 0.710393 0.859091 0.67046 0.86001 0.652167 0.800156 0.732575 0.902022 0.706983 0.910753 0.776574 0.894725 0.709069 0.706824 0.772884 0.721001 0.769128 0.766819 0.69961 0.756109 0.650715 0.739559 0.665169 0.685443 0.747389 0.629544 0.781976 0.645207 0.777571 0.679447 0.726035 0.663915 0.69251 0.641696 0.7256 0.608173 0.800842 0.598447 0.800844 0.613722 0.782354 0.62203 0.77064 0.606739 0.761516 0.586356 0.801211 0.57812 0.833474 0.606525 0.843418 0.585771 0.884582 0.608278 0.861681 0.62927 0.826927 0.645008 0.821482 0.621769 0.901508 0.709495 0.841154 0.721344 0.835351 0.679466 0.88519 0.664947 0.920582 0.64464 0.946246 0.692573 0.905321 0.811872 0.840491 0.814502 0.842749 0.767471 0.908491 0.759591 0.957769 0.748636 0.953229 0.808266 0.87648 0.901039 0.832824 0.894364 0.83647 0.858222 0.893987 0.860506 0.934495 0.863509 0.904941 0.908789 0.811165 0.93926 0.808557 0.928096 0.833115 0.918674 0.850764 0.928355 0.866017 0.939324 0.815782 0.955298 0.781351 0.919619 0.767445 0.930389 0.756778 0.947206 0.874321 0.260529 0.87457 0.258357 0.870642 0.262514 0.870232 0.260129 0.875205 0.262091 0.87418 0.274349 0.878088 0.275377 0.879128 0.284194 0.875282 0.284248 0.876451 0.268146 0.87176 0.26763 0.879196 0.270887 0.875496 0.265391 0.893101 0.28442 0.892287 0.271326 0.879947 0.284131 0.862255 0.219399 0.877309 0.242158 0.869772 0.241647 0.855575 0.218438 0.862432 0.239621 0.84944 0.210845 0.867315 0.244511 0.849901 0.240235 0.863194 0.266321 0.876212 0.265675 0.880423 0.283451 0.866718 0.283089 0.870498 0.254293 0.863904 0.253791 0.870234 0.270504 0.864805 0.270607 0.879852 0.25405 0.878645 0.27023 0.884908 0.221559 0.894641 0.243235 0.885819 0.242521 0.87478 0.219802 0.853855 0.205189 0.868038 0.204565 0.870975 0.210424 0.856654 0.209577 0.882303 0.208527 0.885027 0.21281 0.869343 0.207181 0.855354 0.205901 0.879862 0.246326 0.872817 0.221463 0.859409 0.2185 0.885826 0.225344 0.891813 0.248223 0.886742 0.266822 0.897889 0.269881 0.890434 0.283337 0.902191 0.283202 0.887267 0.269985 0.888486 0.253806 0.897003 0.253871 0.897865 0.269734 0.890567 0.21382 0.890889 0.214313 0.887336 0.211472 0.940502 0.247339 0.935827 0.245027 0.948386 0.259727 0.952135 0.261243 0.929477 0.246937 0.935892 0.257903 0.955141 0.271935 0.951237 0.271687 0.951697 0.282445 0.956107 0.282705 0.939971 0.271031 0.941535 0.28252 0.963745 0.266939 0.955791 0.248173 0.96377 0.246708 0.971434 0.266214 0.948554 0.235961 0.955224 0.234835 0.896396 0.245174 0.886107 0.251776 0.887306 0.25714 0.901578 0.253513 0.893935 0.234459 0.893306 0.241625 0.88488 0.259333 0.895682 0.256287 0.898524 0.274248 0.887363 0.275119 0.885952 0.26722 0.897217 0.265981 0.888292 0.284017 0.899782 0.283788 0.893557 0.224473 0.903384 0.244263 0.904117 0.226402 0.909834 0.245212 0.898452 0.232315 0.90536 0.242289 0.914901 0.24109 0.908475 0.23147 0.912117 0.251402 0.92111 0.249824 0.905103 0.223634 0.894105 0.223477 0.891627 0.223783 0.892209 0.224715 0.894785 0.217728 0.904032 0.218825 0.905292 0.26092 0.916745 0.259188 0.925679 0.257542 0.919312 0.270264 0.927598 0.269904 0.909165 0.270372 0.922229 0.248254 0.923018 0.231732 0.931448 0.236491 0.927474 0.250713 0.939132 0.243721 0.931475 0.252998 0.941395 0.236759 0.941774 0.24318 0.951181 0.24757 0.953028 0.242625 0.943442 0.249961 0.949719 0.251412 0.932269 0.241398 0.935522 0.24909 0.930136 0.234395 0.929446 0.228394 0.942151 0.230847 0.942787 0.227016 0.929372 0.224433 0.954848 0.237908 0.922857 0.256527 0.927955 0.258098 0.929776 0.270263 0.925166 0.269641 0.93313 0.259066 0.935431 0.270899 0.938091 0.256867 0.945703 0.257403 0.953024 0.257866 0.948714 0.269472 0.957575 0.269677 0.940805 0.269454 0.944953 0.253898 0.950208 0.269278 0.961307 0.253711 0.957956 0.256418 0.964661 0.269455 0.96896 0.268209 0.902892 0.249987 0.897745 0.228849 0.908596 0.231834 0.912735 0.252197 0.897122 0.224227 0.89485 0.22181 0.90624 0.226903 0.908607 0.228742 0.903082 0.242361 0.906809 0.256103 0.917237 0.255133 0.919494 0.264606 0.908311 0.265315 0.907454 0.269025 0.916487 0.269043 0.911531 0.283044 0.919593 0.2829 0.909419 0.273405 0.911476 0.28336 0.920571 0.273041 0.922157 0.283218 0.922114 0.255039 0.920062 0.238863 0.921052 0.234472 0.923775 0.23538 0.929369 0.253983 0.934895 0.263753 0.927988 0.282737 0.92516 0.269608 0.937386 0.272947 0.938515 0.283177 0.906903 0.269654 0.905634 0.25451 0.912156 0.254648 0.915624 0.269303 0.934262 0.269581 0.931993 0.256855 0.928513 0.24901 0.928512 0.223212 0.917128 0.220406 0.916725 0.220767 0.9041 0.217973 0.914088 0.228391 0.916363 0.246441 0.918617 0.23227 0.923487 0.240784 0.938248 0.22777 0.892821 0.216321 0.844542 0.206031 0.874322 0.212263 0.870581 0.286403 0.864795 0.285932 0.877377 0.285736 0.887924 0.285532 0.898823 0.285311 0.908672 0.285115 0.917425 0.284957 0.921216 0.269224 0.922914 0.284906 0.926665 0.284912 0.930758 0.284928 0.936388 0.28496 0.952837 0.284936 0.967867 0.284724 0.971593 0.266723 0.976556 0.284338 0.976161 0.284497 0.973686 0.284223 0.968029 0.284169 0.960033 0.284154 0.950775 0.284138 0.942494 0.284121 0.936182 0.284123 0.929809 0.284158 0.920968 0.284223 0.910111 0.284292 0.952943 0.272204 0.950019 0.262148 0.953976 0.282879 0.900909 0.229617 0.889642 0.217102 0.912068 0.234085 0.913562 0.243735 0.925227 0.239763 0.92311 0.245509 0.916786 0.225007 0.940372 0.24984 0.963568 0.250138 0.888081 0.264217 0.918118 0.254988 0.844126 0.209259 0.844951 0.221286 0.886769 0.216308 0.872985 0.215718 0.879346 0.309871 0.875833 0.306046 0.875654 0.308144 0.879007 0.306407 0.876295 0.294136 0.878977 0.293033 0.879812 0.300399 0.876175 0.301094 0.880254 0.30345 0.882198 0.297454 0.893175 0.297687 0.865817 0.349629 0.859181 0.350621 0.872916 0.327332 0.880252 0.326495 0.865713 0.330422 0.852822 0.359205 0.869257 0.322943 0.877097 0.301439 0.864055 0.301093 0.852819 0.327816 0.866118 0.317194 0.872679 0.31623 0.865658 0.301152 0.871305 0.301562 0.879516 0.300927 0.881998 0.315802 0.888262 0.347411 0.878301 0.348969 0.888479 0.326114 0.897047 0.325511 0.857019 0.363938 0.860381 0.359999 0.874655 0.358691 0.872015 0.364197 0.888629 0.3558 0.886097 0.359632 0.872907 0.361011 0.858128 0.36229 0.881706 0.320824 0.862423 0.349295 0.875903 0.346079 0.888714 0.341972 0.893556 0.318638 0.898554 0.296744 0.887564 0.300041 0.888147 0.300674 0.898715 0.300283 0.89883 0.31539 0.89048 0.315686 0.894383 0.353795 0.894065 0.354129 0.890921 0.356254 0.942171 0.318343 0.9529 0.304272 0.949521 0.305533 0.937705 0.320863 0.937122 0.30759 0.931259 0.318903 0.955735 0.293528 0.951772 0.293299 0.940544 0.294181 0.964624 0.302435 0.972337 0.302695 0.965634 0.321964 0.957594 0.320997 0.957663 0.333351 0.950951 0.332759 0.897685 0.323309 0.904388 0.314564 0.887892 0.312338 0.888936 0.316243 0.699423 0.809253 0.710111 0.860044 0.769921 0.8588 0.767468 0.81472 0.651885 0.801109 0.669688 0.860514 0.732293 0.902975 0.706453 0.911484 0.776292 0.895678 0.708787 0.707777 0.699329 0.757062 0.768846 0.767772 0.772602 0.721954 0.664887 0.686395 0.650433 0.740512 0.747107 0.630497 0.725753 0.664868 0.777288 0.6804 0.781693 0.64616 0.725318 0.609127 0.692228 0.642648 0.80056 0.5994 0.770358 0.607692 0.782072 0.622983 0.800562 0.614675 0.800928 0.579073 0.761234 0.587309 0.833192 0.607478 0.861399 0.630223 0.8843 0.609231 0.843136 0.586725 0.8212 0.622722 0.826645 0.645961 0.901226 0.710448 0.884907 0.6659 0.835069 0.680418 0.840872 0.722297 0.945964 0.693526 0.920299 0.645594 0.905039 0.812825 0.908209 0.760544 0.842467 0.768423 0.840209 0.815454 0.952947 0.809219 0.957487 0.749588 0.876198 0.901993 0.893705 0.861459 0.836187 0.859175 0.832541 0.895317 0.904659 0.909742 0.934213 0.864462 0.810883 0.940213 0.850482 0.929308 0.832833 0.919627 0.808275 0.929049 0.815494 0.955807 0.865735 0.940277 0.767163 0.931342 0.781069 0.920572 0.878641 0.308129 0.757688 0.947696 0.89571 0.326063 0.896265 0.333541 0.887647 0.308911 0.896958 0.311973 0.898883 0.293285 0.897963 0.301935 0.887703 0.301029 0.887878 0.29293 0.905567 0.324686 0.896731 0.344468 0.906991 0.342485 0.911791 0.324251 0.900908 0.335596 0.911043 0.336295 0.917143 0.326675 0.907054 0.325968 0.923285 0.31808 0.915184 0.316034 0.908088 0.344187 0.897103 0.344536 0.894607 0.344154 0.895142 0.343144 0.898106 0.350443 0.90726 0.349181 0.907871 0.308374 0.918398 0.309598 0.927049 0.310818 0.928305 0.298442 0.920004 0.298182 0.909927 0.298243 0.924036 0.321254 0.929162 0.318872 0.933826 0.332572 0.925629 0.337191 0.941158 0.32555 0.933051 0.316658 0.943727 0.330971 0.955075 0.325269 0.952983 0.320359 0.943791 0.324629 0.951332 0.316568 0.945126 0.31796 0.937248 0.318798 0.934373 0.326359 0.932584 0.333273 0.932192 0.3393 0.932318 0.343421 0.945607 0.340893 0.944776 0.336887 0.957129 0.33006 0.924262 0.313255 0.925922 0.300164 0.930502 0.299579 0.929283 0.311724 0.936126 0.298969 0.93441 0.310774 0.939442 0.311396 0.947027 0.310849 0.954323 0.310334 0.958291 0.298597 0.94944 0.298819 0.941532 0.298832 0.946483 0.315703 0.950981 0.300512 0.962811 0.314479 0.969751 0.300159 0.965388 0.298807 0.959326 0.311738 0.904541 0.316598 0.900452 0.33816 0.911146 0.334819 0.914268 0.314088 0.900043 0.343367 0.910827 0.338483 0.909045 0.340214 0.897918 0.345703 0.907714 0.311836 0.905082 0.324826 0.918749 0.311513 0.909052 0.30192 0.920236 0.301846 0.91718 0.297035 0.908155 0.297332 0.909931 0.29344 0.92041 0.293444 0.923496 0.310879 0.922253 0.327378 0.925923 0.331262 0.923469 0.332076 0.930583 0.312153 0.934974 0.302503 0.925817 0.29614 0.93758 0.293425 0.907706 0.300101 0.916398 0.300537 0.913653 0.315103 0.907277 0.314776 0.934984 0.298714 0.933344 0.311407 0.930312 0.318902 0.931529 0.345055 0.919853 0.347075 0.920283 0.347817 0.907379 0.350402 0.918259 0.323025 0.916863 0.340467 0.921166 0.335346 0.925584 0.327014 0.941044 0.340685 0.896265 0.352186 0.847118 0.363087 0.877923 0.355511 0.921992 0.300554 0.972463 0.301867 0.950828 0.303658 0.953466 0.293583 0.892951 0.350759 0.90326 0.337983 0.915596 0.322974 0.91417 0.333036 0.927312 0.326701 0.92504 0.320904 0.919699 0.342662 0.941871 0.316003 0.965254 0.318221 0.889956 0.306147 0.919598 0.314755 0.845891 0.359181 0.847322 0.346695 0.890112 0.35133 0.87636 0.352039 0.950166 0.457401 0.877438 0.456074 0.890333 0.455013 0.891902 0.457826 0.881771 0.45805 0.893433 0.460126 0.885457 0.459788 0.90216 0.458193 0.902038 0.46051 0.902093 0.455956 0.869348 0.456995 0.875073 0.458463 0.870949 0.459563 0.865831 0.459946 0.88002 0.459819 0.876379 0.459992 0.890696 0.462723 0.889158 0.462546 0.893089 0.46287 0.842115 0.409869 0.837426 0.409453 0.838646 0.414482 0.833434 0.414204 0.847163 0.42056 0.840709 0.41957 0.839445 0.430603 0.83503 0.428579 0.852464 0.422383 0.843659 0.433436 0.835601 0.419062 0.830596 0.418889 0.831257 0.427506 0.827802 0.427141 0.876435 0.450731 0.866399 0.449489 0.869211 0.447456 0.878828 0.448367 0.861778 0.461251 0.86329 0.45579 0.869445 0.454182 0.919848 0.462088 0.9244 0.459418 0.936505 0.460001 0.932799 0.462552 0.914853 0.457033 0.912969 0.45878 0.983064 0.742705 0.970242 0.681277 0.978343 0.807461 0.961861 0.871181 0.925 0.920764 0.93957 0.629718 0.896636 0.591965 0.87816 0.953598 0.820182 0.969676 0.849136 0.56846 0.801508 0.561342 0.753635 0.961316 0.693916 0.922274 0.756457 0.570463 0.715065 0.59271 0.62759 0.729278 0.628526 0.797321 0.647916 0.672373 0.648988 0.865355 0.678001 0.627321 0.970524 0.680324 0.983346 0.741752 0.978626 0.806509 0.962143 0.870229 0.925282 0.919811 0.896919 0.591012 0.939853 0.628765 0.878442 0.952645 0.819304 0.969461 0.80179 0.560389 0.849419 0.567507 0.753465 0.960832 0.694447 0.921544 0.715348 0.591757 0.756739 0.569509 0.628808 0.796368 0.627873 0.728326 0.648199 0.671421 0.648584 0.866073 0.678283 0.626368 0.411737 0.936637 0.212659 0.665019 0.175067 0.711347 0.264355 0.628942 0.154113 0.763611 0.154483 0.81452 0.911051 0.461039 0.528987 0.594894 0.945951 0.460521 0.339791 0.607004 0.94197 0.46307 0.896594 0.462992 0.902819 0.462828 0.939147 0.46498 0.588358 0.917245 0.930869 0.464578 0.500784 0.908814 0.937502 0.466649 0.178893 0.855096 0.23388 0.878659 0.317203 0.888741 0.409219 0.897533 0.412456 0.865776 0.413517 0.832907 0.415303 0.797177 0.41903 0.758087 0.424284 0.717135 0.429773 0.675932 0.433166 0.635493 0.431719 0.596003 0.42845 0.560105 0.426262 0.535529 0.166927 0.932027 0.089131 0.90146 0.412839 0.954955 0.280654 0.94225 0.092604 0.643694 0.172265 0.583534 0.034269 0.783775 0.048602 0.713913 0.288973 0.53753 0.047197 0.849027 0.9297 0.466322 0.910929 0.462701 0.429574 0.516361 0.573602 0.514995 0.911763 0.464455 0.904647 0.46452 0.91245 0.466086 0.906026 0.466148 0.920833 0.464349 0.682918 0.980037 0.544365 0.975068 0.92089 0.466118 0.274953 0.94136 0.412382 0.948959 0.078614 0.893197 0.159929 0.926191 0.045546 0.712112 0.029763 0.775258 0.174568 0.589926 0.093871 0.647648 0.286715 0.542233 0.039682 0.837587 0.568016 0.514851 0.425296 0.517534 0.89967 0.464526 0.715649 0.536695 0.89649 0.46445 0.90127 0.466162 0.89793 0.466107 0.92457 0.397524 0.934172 0.397517 0.90196 0.397532 0.543555 0.96576 0.912366 0.397543 0.914428 0.398827 0.902477 0.39881 0.887934 0.397535 0.886084 0.398748 0.939158 0.397548 0.916553 0.401268 0.903345 0.401161 0.918892 0.404595 0.904419 0.40426 0.88377 0.401252 0.880927 0.404722 0.905294 0.428912 0.905488 0.424961 0.912357 0.424967 0.91334 0.429138 0.905906 0.421495 0.911087 0.422154 0.904076 0.437412 0.90478 0.43319 0.913199 0.433998 0.911884 0.43877 0.90321 0.444063 0.903361 0.441071 0.909872 0.442542 0.908067 0.444769 0.902496 0.453271 0.918142 0.453706 0.928783 0.450398 0.93573 0.445715 0.939896 0.439756 0.941415 0.433124 0.940295 0.426582 0.937084 0.420446 0.931618 0.414911 0.921769 0.409549 0.905101 0.407893 0.876573 0.40992 0.866307 0.415598 0.859425 0.421874 0.854503 0.429219 0.846009 0.439206 0.853866 0.435555 0.855666 0.44134 0.849189 0.44441 0.859693 0.44628 0.853635 0.449316 0.859396 0.453185 0.889827 0.45174 0.862926 0.421743 0.859205 0.428005 0.869662 0.416377 0.857993 0.434235 0.859086 0.440054 0.916008 0.412068 0.903601 0.410265 0.918257 0.418305 0.91053 0.415402 0.913091 0.413541 0.921836 0.416936 0.92534 0.416062 0.879532 0.412275 0.931494 0.42114 0.923547 0.422692 0.927682 0.421785 0.926515 0.428111 0.931209 0.427509 0.93512 0.42705 0.936295 0.433481 0.92732 0.434037 0.932331 0.433786 0.925669 0.439922 0.930432 0.440034 0.934525 0.439972 0.912845 0.451737 0.922595 0.449614 0.907361 0.448978 0.915126 0.447877 0.918684 0.448912 0.909842 0.450414 0.901128 0.451294 0.929882 0.445604 0.921412 0.444811 0.925747 0.445329 0.862632 0.44473 0.90791 0.418325 0.914417 0.420366 0.918293 0.424021 0.92059 0.42877 0.920879 0.434155 0.919487 0.439514 0.911345 0.446349 0.90499 0.446728 0.916084 0.443813 0.891421 0.410387 0.891335 0.407994 0.8923 0.404278 0.892667 0.401108 0.892803 0.398753 0.893101 0.397518 0.953337 0.401538 0.958091 0.405199 0.9475 0.399036 0.96186 0.409791 0.964499 0.415028 0.96612 0.420717 0.967305 0.426924 0.967388 0.433074 0.966427 0.438883 0.96451 0.444202 0.961861 0.44894 0.958944 0.453645 0.955428 0.457592 0.951844 0.460785 0.948132 0.463506 0.945008 0.465414 0.9428 0.466896 0.940897 0.39766 0.894646 0.464377 0.893748 0.464327 0.895819 0.465909 0.894732 0.465707 0.898046 0.468336 0.895591 0.467749 0.894211 0.467377 0.894053 0.470321 0.892528 0.469525 0.89702 0.472125 0.906461 0.46806 0.901761 0.468217 0.901883 0.471147 0.906501 0.470456 0.912592 0.467918 0.912253 0.470089 0.920682 0.467923 0.920674 0.470154 0.9293 0.468129 0.929876 0.470181 0.93702 0.468441 0.938213 0.470896 0.942275 0.468514 0.942757 0.470744 0.890006 0.4495 0.852976 0.399065 0.859393 0.397599 0.847065 0.401675 0.84127 0.405026 0.953466 0.401386 0.958188 0.405089 0.947588 0.398916 0.961862 0.409747 0.964391 0.415022 0.965926 0.420729 0.967068 0.426923 0.967242 0.433135 0.966314 0.439008 0.964406 0.444378 0.961584 0.44912 0.958267 0.453722 0.954279 0.457569 0.865611 0.460368 0.870463 0.459645 0.869977 0.459728 0.865391 0.460791 0.875883 0.460032 0.875386 0.460071 0.889107 0.462568 0.889055 0.46259 0.836433 0.409343 0.829542 0.419704 0.832578 0.41403 0.832317 0.414141 0.82924 0.419624 0.86181 0.461905 0.861843 0.46256 0.95053 0.46075 0.946775 0.4634 0.943577 0.465237 0.941527 0.466697 0.893773 0.464335 0.893798 0.464342 0.894526 0.465626 0.894385 0.465571 0.940912 0.397604 0.893807 0.467247 0.893563 0.467166 0.891985 0.469369 0.891535 0.469419 0.940364 0.468392 0.940762 0.470517 0.866236 0.398834 0.873711 0.398813 0.877506 0.397514 0.870971 0.397493 0.865522 0.397455 0.860032 0.398872 0.856026 0.399014 0.861954 0.397568 0.860159 0.397664 0.853853 0.399094 0.935431 0.404681 0.948546 0.405179 0.944496 0.401457 0.931632 0.401375 0.939488 0.398861 0.927974 0.398901 0.870657 0.401504 0.861966 0.401526 0.855096 0.4016 0.850751 0.405417 0.858121 0.405363 0.867731 0.405188 0.850561 0.401575 0.848094 0.401586 0.842791 0.404957 0.845766 0.405198 0.9455 0.398818 0.951158 0.401375 0.955535 0.405156 0.94295 0.41441 0.9536 0.414936 0.951437 0.40979 0.938847 0.409148 0.863906 0.410047 0.854469 0.410101 0.8468 0.410021 0.843291 0.414792 0.850618 0.415218 0.858112 0.415702 0.958875 0.409842 0.961147 0.415077 0.9551 0.420509 0.945887 0.42022 0.947818 0.426423 0.955942 0.426574 0.962495 0.420748 0.963347 0.426902 0.947179 0.438896 0.955415 0.438781 0.95627 0.432802 0.948355 0.432791 0.963455 0.433109 0.96255 0.43901 0.93973 0.449457 0.950281 0.449152 0.953464 0.44429 0.944309 0.444589 0.960647 0.444424 0.957836 0.449233 0.928866 0.456683 0.941589 0.457208 0.946319 0.453375 0.933669 0.453285 0.954103 0.453514 0.949874 0.457416 0.877353 0.455968 0.882269 0.458025 0.892317 0.457757 0.890577 0.455047 0.886684 0.460112 0.89423 0.460211 0.902677 0.460467 0.90267 0.458019 0.902808 0.455334 0.869597 0.456984 0.865825 0.458435 0.871446 0.458982 0.8752 0.458466 0.877063 0.46 0.880928 0.46006 0.889224 0.462652 0.890358 0.462714 0.892541 0.462593 0.841603 0.409572 0.838159 0.409243 0.834209 0.413908 0.837981 0.414182 0.839885 0.419736 0.846514 0.420792 0.834481 0.428371 0.838869 0.430451 0.84343 0.433385 0.852102 0.422532 0.830666 0.418987 0.834732 0.419195 0.827717 0.426976 0.830662 0.427303 0.875777 0.450429 0.878346 0.448288 0.868619 0.446935 0.865577 0.448677 0.860982 0.459109 0.863516 0.455972 0.868771 0.453598 0.919955 0.462087 0.933215 0.46265 0.936971 0.460171 0.92452 0.45941 0.915797 0.455832 0.913434 0.458571 0.911682 0.460937 0.945768 0.460575 0.941689 0.463136 0.897291 0.462545 0.903757 0.462585 0.930828 0.464538 0.938505 0.464915 0.929084 0.466249 0.936418 0.466469 0.911714 0.462545 0.904992 0.464496 0.91226 0.464434 0.906001 0.466171 0.912549 0.466198 0.920438 0.466178 0.920682 0.464371 0.899694 0.464496 0.896238 0.464476 0.897673 0.46607 0.901142 0.46612 0.933851 0.397545 0.924135 0.397565 0.901567 0.397461 0.902111 0.398787 0.913998 0.398826 0.911927 0.397463 0.885568 0.398789 0.887707 0.397486 0.939027 0.397536 0.902897 0.401138 0.916139 0.401275 0.904075 0.404332 0.918631 0.404656 0.883077 0.401373 0.880245 0.404983 0.905419 0.428922 0.912942 0.429219 0.912006 0.425106 0.905474 0.425025 0.910791 0.422281 0.905844 0.421559 0.904305 0.436885 0.911907 0.438227 0.913047 0.433844 0.905052 0.432984 0.903203 0.443238 0.908124 0.443775 0.909903 0.441649 0.903445 0.440313 0.90285 0.452456 0.918742 0.45246 0.929033 0.449192 0.935553 0.444785 0.939489 0.439171 0.940895 0.433027 0.939916 0.426757 0.936762 0.420698 0.931211 0.415109 0.90461 0.407951 0.921344 0.40965 0.876099 0.410269 0.865754 0.416146 0.858856 0.422274 0.85408 0.42925 0.845714 0.439016 0.8487 0.443676 0.855252 0.440105 0.853622 0.434905 0.852614 0.447663 0.858958 0.44511 0.858176 0.451853 0.889824 0.45148 0.858947 0.427844 0.863033 0.422095 0.869857 0.416948 0.858451 0.439034 0.857612 0.433475 0.903128 0.410252 0.915613 0.4122 0.910336 0.415321 0.91773 0.418674 0.921258 0.417307 0.91279 0.413538 0.924944 0.416332 0.879341 0.412694 0.930972 0.4215 0.922517 0.423241 0.926792 0.422268 0.92506 0.428584 0.929895 0.42793 0.93442 0.427304 0.935453 0.433435 0.925801 0.434263 0.930838 0.433902 0.924243 0.439743 0.929152 0.439726 0.933786 0.439455 0.922618 0.448568 0.913071 0.450609 0.91472 0.447235 0.9073 0.44856 0.909883 0.449686 0.918464 0.448158 0.90106 0.450464 0.929479 0.444749 0.920523 0.44435 0.924927 0.444695 0.861743 0.443993 0.907779 0.418347 0.914012 0.420577 0.917709 0.42432 0.919641 0.429082 0.919962 0.434273 0.918588 0.43924 0.904848 0.446138 0.911088 0.445577 0.915514 0.4432 0.890897 0.408138 0.891059 0.410492 0.89188 0.404459 0.892481 0.401195 0.892744 0.398811 0.892774 0.397499 0.852987 0.39915 0.859402 0.397672 0.847027 0.401638 0.84144 0.40503 0.836758 0.409301 0.826856 0.427241 0.893304 0.464316 0.894343 0.465793 0.894093 0.464377 0.895401 0.465971 0.893628 0.467665 0.890751 0.471053 0.897653 0.467915 0.895086 0.467874 0.893376 0.47055 0.896513 0.470318 0.906138 0.467954 0.901291 0.467913 0.900442 0.470186 0.905385 0.470181 0.912382 0.468058 0.911527 0.470316 0.918635 0.470453 0.91977 0.468076 0.926488 0.470872 0.927835 0.468189 0.935282 0.468257 0.935209 0.471328 0.877915 0.500707 0.878197 0.500625 0.878935 0.505269 0.878376 0.50543 0.87849 0.500327 0.879515 0.504678 0.878776 0.499827 0.880077 0.503685 0.879041 0.499148 0.880596 0.502336 0.879273 0.498323 0.88105 0.500691 0.879461 0.49739 0.881414 0.498833 0.879595 0.496393 0.881685 0.496848 0.879673 0.495381 0.881831 0.494834 0.879688 0.4944 0.881855 0.492886 0.879641 0.493495 0.881754 0.491093 0.879517 0.492692 0.881496 0.489502 0.879256 0.49199 0.880966 0.488128 0.878724 0.491679 0.879976 0.487255 0.880441 0.487544 0.878985 0.491764 0.880259 0.509816 0.879427 0.510054 0.881118 0.508941 0.881951 0.507469 0.882719 0.50547 0.883385 0.503037 0.883918 0.500283 0.884295 0.497337 0.884501 0.494341 0.884524 0.491438 0.884373 0.488781 0.883999 0.486461 0.88321 0.484429 0.882394 0.483424 0.882124 0.514208 0.881033 0.51452 0.883251 0.513061 0.884343 0.511133 0.885349 0.508513 0.886222 0.505324 0.886921 0.501715 0.887414 0.497854 0.887677 0.493924 0.887702 0.490113 0.887496 0.486645 0.88698 0.48361 0.885938 0.48091 0.884878 0.479558 0.884506 0.51838 0.88317 0.518762 0.885883 0.516979 0.887217 0.514621 0.888447 0.511419 0.889514 0.507521 0.890369 0.503109 0.890971 0.49839 0.891293 0.493586 0.89132 0.488919 0.891054 0.484665 0.890395 0.481066 0.88919 0.477958 0.887817 0.476052 0.887367 0.522273 0.885807 0.522719 0.888975 0.520637 0.890533 0.517885 0.891968 0.514147 0.893214 0.509596 0.894212 0.504446 0.894915 0.498938 0.895291 0.493329 0.895322 0.487882 0.895 0.482915 0.894205 0.478779 0.892842 0.475169 0.891068 0.473073 0.890668 0.525829 0.888906 0.526332 0.892483 0.523982 0.894241 0.520876 0.895861 0.516656 0.897267 0.51152 0.898394 0.505707 0.899187 0.499489 0.899612 0.493158 0.899646 0.487009 0.899286 0.481354 0.898411 0.476638 0.894359 0.528996 0.892421 0.529549 0.896354 0.526965 0.898288 0.52355 0.900069 0.518911 0.901615 0.513263 0.902854 0.506872 0.903726 0.500036 0.904193 0.493075 0.904231 0.486314 0.903834 0.4801 0.902975 0.47504 0.898388 0.531728 0.896302 0.532323 0.900534 0.529543 0.902614 0.525869 0.904531 0.520877 0.906194 0.514801 0.907527 0.507925 0.908466 0.50057 0.908967 0.493081 0.909009 0.485806 0.908572 0.479151 0.907654 0.473824 0.902694 0.533986 0.900491 0.534614 0.90496 0.531679 0.907157 0.527799 0.909181 0.522528 0.910937 0.516111 0.912345 0.50885 0.913336 0.501084 0.913866 0.493175 0.913909 0.485494 0.91346 0.478418 0.912585 0.472851 0.907215 0.535736 0.904927 0.536388 0.909569 0.53334 0.91185 0.529311 0.913952 0.523838 0.915776 0.517175 0.917237 0.509635 0.918266 0.50157 0.918854 0.493342 0.918947 0.485357 0.91844 0.478006 0.91787 0.471971 0.914263 0.537286 0.911914 0.537955 0.916678 0.534827 0.919019 0.530693 0.921175 0.525076 0.923047 0.518239 0.924546 0.510502 0.925585 0.502224 0.926227 0.493754 0.926493 0.485583 0.925762 0.478045 0.924764 0.471485 0.921403 0.537724 0.919062 0.538392 0.92381 0.535275 0.926142 0.531156 0.930338 0.525761 0.93162 0.519674 0.933283 0.512932 0.932692 0.502839 0.933977 0.494768 0.934333 0.486371 0.933206 0.478784 0.931863 0.472204 0.92611 0.537268 0.92382 0.53792 0.928464 0.534872 0.932388 0.530343 0.937335 0.506755 0.941235 0.498334 0.941521 0.487989 0.940371 0.480184 0.938481 0.473907 0.930691 0.536256 0.928485 0.536884 0.934789 0.533043 0.935078 0.534703 0.932989 0.535298 0.938368 0.532576 0.947164 0.489068 0.947066 0.497764 0.946239 0.481893 0.944283 0.476284 0.939209 0.532632 0.937267 0.533185 0.941919 0.530982 0.950689 0.490156 0.950271 0.497772 0.95034 0.48345 0.948203 0.478162 0.943023 0.530074 0.941256 0.530577 0.945589 0.528338 0.95349 0.491089 0.952472 0.498024 0.953154 0.485389 0.951415 0.480527 0.946464 0.527065 0.944898 0.52751 0.948879 0.525086 0.955336 0.498108 0.955494 0.49227 0.955142 0.488211 0.954263 0.484425 0.949389 0.475505 0.954052 0.482326 0.94757 0.475109 0.945693 0.473082 0.943613 0.471998 0.950577 0.521636 0.949187 0.522238 0.951775 0.520708 0.950886 0.519379 0.952605 0.518141 0.95447 0.515316 0.952742 0.516616 0.878125 0.495997 0.943537 0.514246 0.944979 0.511457 0.945299 0.511731 0.944004 0.514141 0.946866 0.510467 0.945612 0.512005 0.946775 0.509925 0.944125 0.524447 0.943125 0.523168 0.943363 0.52176 0.944265 0.522893 0.943213 0.51865 0.9436 0.520352 0.942839 0.519741 0.942465 0.520831 0.942508 0.517563 0.943036 0.516979 0.944472 0.514036 0.943564 0.516394 0.946664 0.509365 0.948503 0.507957 0.948316 0.508687 0.949207 0.508705 0.948096 0.509397 0.949608 0.50791 0.950009 0.507096 0.951195 0.506751 0.950679 0.507606 0.951005 0.508659 0.950161 0.508443 0.951647 0.507843 0.952323 0.510866 0.951744 0.509448 0.952587 0.5089 0.953318 0.510638 0.952296 0.507042 0.953444 0.508317 0.954198 0.510416 0.954069 0.512878 0.953344 0.512779 0.95222 0.51488 0.952538 0.512757 0.952777 0.515115 0.953314 0.515413 0.952001 0.51802 0.951641 0.517475 0.949848 0.518868 0.951263 0.516984 0.950071 0.519673 0.950291 0.520481 0.948367 0.522605 0.94826 0.52146 0.946642 0.521256 0.948152 0.520315 0.946704 0.522693 0.946766 0.524131 0.94537 0.524785 0.945389 0.52319 0.944404 0.521338 0.945409 0.521595 0.948517 0.508521 0.947425 0.509189 0.946164 0.510225 0.943731 0.513771 0.942852 0.515989 0.942484 0.51808 0.944874 0.511783 0.950283 0.508511 0.949456 0.508269 0.942699 0.51973 0.943487 0.520694 0.951552 0.510694 0.95099 0.509314 0.944633 0.521012 0.946034 0.520645 0.951461 0.514432 0.951791 0.512457 0.947604 0.519694 0.949207 0.518265 0.95053 0.516413 0.954352 0.507334 0.955064 0.51004 0.953029 0.50566 0.954691 0.513093 0.953563 0.516187 0.942931 0.511155 0.945738 0.50837 0.941124 0.514785 0.948237 0.525023 0.946042 0.527051 0.950358 0.522206 0.940778 0.525984 0.939919 0.523165 0.942236 0.527579 0.940031 0.519157 0.94836 0.506655 0.95038 0.505668 0.951792 0.505283 0.952106 0.519194 0.94408 0.527997 0.955136 0.505085 0.955458 0.508799 0.953996 0.503048 0.954947 0.51289 0.953571 0.516724 0.940392 0.509704 0.943959 0.505926 0.937487 0.514053 0.946965 0.527152 0.943743 0.529685 0.949863 0.52392 0.936263 0.528363 0.934831 0.524989 0.938515 0.530358 0.93544 0.520327 0.947235 0.504116 0.949823 0.503295 0.952034 0.502955 0.951882 0.52041 0.941028 0.53079 0.956255 0.501869 0.956376 0.507194 0.955436 0.512282 0.95378 0.516679 0.954272 0.512902 0.953969 0.514386 0.955477 0.513065 0.955509 0.511632 0.956562 0.510151 0.957541 0.50583 0.957528 0.506237 0.957401 0.500104 0.957323 0.498901 0.956684 0.496896 0.956413 0.492938 0.956425 0.492794 0.955922 0.48933 0.955605 0.489791 0.952251 0.480529 0.95403 0.483685 0.955302 0.484788 0.955335 0.486204 0.955539 0.486154 0.954877 0.485325 0.956687 0.508947 0.956754 0.495687 0.955045 0.487387 0.877848 0.505182 0.877652 0.500582 0.87737 0.504506 0.877412 0.500243 0.876974 0.503437 0.877218 0.499703 0.87668 0.502023 0.877063 0.498994 0.876501 0.50033 0.876979 0.498142 0.876446 0.498438 0.87696 0.497191 0.876522 0.496436 0.877006 0.496186 0.876728 0.49442 0.877115 0.495174 0.877054 0.492488 0.877281 0.494204 0.877479 0.49073 0.877498 0.49332 0.877999 0.489197 0.877767 0.492546 0.878719 0.487808 0.878144 0.491879 0.879235 0.487423 0.878402 0.491725 0.878643 0.509686 0.877934 0.508686 0.877348 0.507101 0.876912 0.505005 0.876647 0.502497 0.876565 0.499694 0.876669 0.496727 0.876956 0.493734 0.877416 0.490859 0.878045 0.488251 0.878803 0.485988 0.879891 0.48389 0.880652 0.483253 0.880004 0.514038 0.879075 0.512727 0.878307 0.510649 0.877736 0.507903 0.877388 0.504616 0.87728 0.500942 0.877417 0.497054 0.877793 0.493132 0.878389 0.48936 0.879214 0.485947 0.880199 0.482989 0.881623 0.480314 0.882641 0.479405 0.881911 0.518172 0.880775 0.516569 0.879836 0.51403 0.879138 0.510673 0.878713 0.506655 0.878582 0.502165 0.878749 0.497412 0.879208 0.492618 0.879955 0.488021 0.881001 0.483899 0.88231 0.480367 0.883909 0.47731 0.885135 0.475926 0.884336 0.52203 0.883011 0.520159 0.881915 0.517195 0.8811 0.513276 0.880604 0.508586 0.88045 0.503344 0.880646 0.497795 0.881181 0.492199 0.882059 0.48684 0.883257 0.482017 0.884772 0.477872 0.886828 0.474331 0.888116 0.472377 0.887245 0.525554 0.885749 0.523442 0.884512 0.520096 0.883592 0.515673 0.883032 0.510379 0.882858 0.504462 0.883079 0.498199 0.883683 0.491882 0.884656 0.485819 0.885976 0.480334 0.887771 0.475644 0.888962 0.472096 0.890594 0.528694 0.888949 0.526372 0.887589 0.522693 0.886578 0.51783 0.885962 0.512009 0.885771 0.505504 0.886014 0.498617 0.886678 0.491672 0.887734 0.484992 0.889161 0.478945 0.891005 0.474124 0.894335 0.531403 0.892565 0.528905 0.891102 0.524947 0.890014 0.519714 0.889351 0.513452 0.889146 0.506453 0.889407 0.499043 0.890122 0.491571 0.891258 0.484384 0.892815 0.477978 0.894695 0.473363 0.898413 0.533643 0.896544 0.531004 0.894999 0.526825 0.89385 0.5213 0.893151 0.514687 0.892934 0.507295 0.893209 0.499472 0.893965 0.491581 0.895164 0.483992 0.89686 0.477387 0.898865 0.473076 0.902769 0.53538 0.900829 0.53264 0.899224 0.5283 0.898031 0.522562 0.897305 0.515695 0.897079 0.50802 0.897366 0.499895 0.89815 0.491701 0.899396 0.483821 0.901449 0.477074 0.903819 0.472976 0.909699 0.53692 0.907707 0.534109 0.906061 0.529655 0.904836 0.523767 0.904091 0.516721 0.90386 0.508844 0.904153 0.500507 0.904958 0.492099 0.906237 0.484012 0.908008 0.477129 0.910034 0.473198 0.916854 0.53736 0.91487 0.534559 0.91323 0.530122 0.914164 0.524465 0.913164 0.518196 0.913437 0.51134 0.91133 0.50108 0.912131 0.492703 0.913405 0.484646 0.91513 0.47783 0.916994 0.473623 0.92166 0.536911 0.919719 0.534172 0.91917 0.529284 0.917172 0.505296 0.919838 0.496406 0.920904 0.486229 0.92238 0.479225 0.924263 0.474614 0.926405 0.535913 0.924828 0.532245 0.931019 0.534378 0.929686 0.53188 0.92797 0.487724 0.927599 0.495894 0.929366 0.480734 0.931925 0.475167 0.935435 0.53233 0.934387 0.530379 0.933232 0.488977 0.932764 0.496065 0.934736 0.482159 0.937602 0.476887 0.93959 0.529799 0.938848 0.527798 0.937731 0.490249 0.936964 0.496523 0.939215 0.484123 0.942421 0.479379 0.943421 0.526821 0.942722 0.524593 0.94207 0.497013 0.942329 0.491435 0.943599 0.487511 0.946933 0.482758 0.949756 0.480976 0.945342 0.476815 0.940652 0.473783 0.947564 0.521395 0.9466 0.520277 0.951324 0.514898 0.949518 0.517928 0.928377 0.510114 0.926885 0.51291 0.927854 0.512845 0.929178 0.51043 0.92998 0.510746 0.931406 0.509225 0.930823 0.508639 0.92835 0.521984 0.930534 0.523359 0.930891 0.521821 0.928964 0.520607 0.929579 0.519229 0.928441 0.517467 0.927597 0.51852 0.926179 0.516255 0.926753 0.519573 0.927195 0.51571 0.928211 0.515165 0.928823 0.512781 0.932374 0.506682 0.930239 0.508053 0.932657 0.507439 0.93294 0.508196 0.934517 0.507536 0.93451 0.506707 0.936567 0.505592 0.934502 0.505878 0.936317 0.506456 0.936067 0.50732 0.937546 0.507578 0.93807 0.506748 0.938901 0.508422 0.940036 0.50988 0.941088 0.509726 0.939772 0.507879 0.940713 0.507314 0.938594 0.505926 0.942911 0.511998 0.942269 0.509491 0.941755 0.511888 0.940774 0.511818 0.940867 0.513981 0.941724 0.514237 0.941696 0.517149 0.942674 0.514592 0.940898 0.516619 0.940099 0.51609 0.938667 0.517973 0.939267 0.518807 0.937547 0.521739 0.939868 0.519641 0.937153 0.52057 0.936759 0.519402 0.934851 0.520311 0.935057 0.52176 0.932933 0.523788 0.935263 0.523209 0.932985 0.522196 0.933038 0.520604 0.931248 0.520284 0.932573 0.508007 0.934161 0.507367 0.930964 0.509008 0.927841 0.514787 0.928411 0.512543 0.928106 0.516928 0.929515 0.510546 0.935671 0.507169 0.937081 0.507438 0.929093 0.51864 0.93071 0.519671 0.938351 0.508298 0.9394 0.509723 0.932552 0.520045 0.934434 0.519715 0.940079 0.511519 0.940113 0.513519 0.936336 0.518792 0.938116 0.517377 0.939405 0.515521 0.943638 0.508965 0.941943 0.506311 0.939071 0.504531 0.94388 0.51543 0.944335 0.512165 0.927944 0.506963 0.925069 0.509715 0.923231 0.513349 0.935271 0.526189 0.938229 0.524222 0.940839 0.521447 0.923484 0.521848 0.925731 0.524779 0.928789 0.526502 0.922597 0.517761 0.93396 0.504385 0.931029 0.505302 0.936534 0.504088 0.942769 0.518413 0.932116 0.527039 0.945351 0.507568 0.943089 0.503744 0.939896 0.502018 0.945354 0.516015 0.946118 0.511811 0.925289 0.504712 0.920962 0.50815 0.918385 0.51252 0.934537 0.528948 0.938552 0.526478 0.941809 0.523283 0.918305 0.523665 0.921702 0.527196 0.925959 0.529352 0.917212 0.518867 0.933078 0.501722 0.929349 0.502508 0.936447 0.501609 0.943896 0.519878 0.930309 0.529931 0.948005 0.505607 0.944871 0.499392 0.947806 0.516062 0.9491 0.511191 0.953215 0.511264 0.952698 0.512701 0.951135 0.50884 0.950868 0.504414 0.946032 0.497811 0.946155 0.49879 0.9504 0.504692 0.944108 0.496015 0.944681 0.492183 0.945966 0.489086 0.945497 0.488606 0.944291 0.491984 0.951345 0.48426 0.948386 0.485293 0.952907 0.485943 0.952013 0.507755 0.944606 0.494766 0.94856 0.486751 0.889967 0.448966 0.879572 0.4873 0.878531 0.491695 0.881189 0.483034 0.883359 0.479059 0.88597 0.475436 0.826451 0.427416 0.889758 0.472115 0.881748 0.482959 0.884054 0.478968 0.886811 0.475429 0.942835 0.472365 0.877975 0.397658 0.883515 0.397651 0.873951 0.397664 0.870831 0.397671 0.867889 0.397674 0.918562 0.397639 0.925482 0.397634 0.901603 0.397646 0.909465 0.397642 0.891034 0.397645 0.929288 0.397637 0.894812 0.397645 0.931273 0.397662 0.86549 0.397668 0.931235 0.397655 0.882529 0.39765 0.877003 0.397658 0.871595 0.397671 0.868659 0.397671 0.868707 0.397667 0.925845 0.397644 0.918784 0.397657 0.909614 0.397666 0.901249 0.39767 0.890498 0.397656 0.92961 0.397643 0.894099 0.397656 0.867711 0.397671 0.900103 0.397679 0.595916 0.679782 0.593633 0.724091 0.587548 0.772055 0.579229 0.819401 0.570764 0.860428 0.56898 0.893979 0.055194 0.327681 0.056512 0.244825 0.056323 0.176259 0.056343 0.11532 0.057144 0.041836 0.468306 0.320445 0.459246 0.232082 0.470583 0.402538 0.456894 0.171519 0.044392 0.51728 0.04804 0.442488 0.039555 0.560029 0.472222 0.467543 0.655545 0.572596 0.685594 0.967391 0.590033 0.92387 0.595756 0.680499 0.590769 0.76975 0.682275 0.551691 0.647404 0.965201 0.571758 0.851938 0.600135 0.64164 0.623018 0.605621 0.617347 0.944413 0.720327 0.535205</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2277\" offset=\"0\" source=\"#LOD3spShape-lib-map1-array\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"LOD3spShape-lib-vertices\">\r\n                    <input semantic=\"POSITION\" source=\"#LOD3spShape-lib-positions\"/>\r\n                </vertices>\r\n                <polylist count=\"2144\" material=\"blinn3SG\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#LOD3spShape-lib-vertices\"/>\r\n                    <input offset=\"1\" semantic=\"NORMAL\" source=\"#LOD3spShape-lib-normals\"/>\r\n                    <input offset=\"2\" semantic=\"TEXCOORD\" set=\"0\" source=\"#LOD3spShape-lib-map1\"/>\r\n                    <vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3</vcount>\r\n                    <p>89 0 23 243 1 26 90 2 28 6 3 29 91 4 30 243 1 26 89 0 23 5 5 31 92 6 33 244 7 35 91 4 30 5 5 31 299 8 36 244 7 35 92 6 33 218 9 37 7 10 39 95 11 41 93 12 42 8 13 57 93 12 42 95 11 41 94 14 61 9 15 62 96 16 65 245 17 66 89 0 23 6 3 29 89 0 23 245 17 66 97 18 67 5 5 31 97 18 67 245 17 66 98 19 68 11 20 69 98 19 68 245 17 66 96 16 65 10 21 70 97 18 67 246 22 71 92 6 33 5 5 31 92 6 33 246 22 71 300 23 72 218 9 37 300 23 72 246 22 71 99 24 84 219 25 85 99 24 84 246 22 71 97 18 67 11 20 69 12 26 86 247 27 89 93 12 42 9 15 62 93 12 42 247 27 89 100 28 90 8 13 57 13 29 135 102 30 137 101 31 138 14 32 139 101 31 138 102 30 137 7 10 39 8 13 57 103 33 140 248 34 141 98 19 68 10 21 70 98 19 68 248 34 141 104 35 142 11 20 69 104 35 142 248 34 141 105 36 200 16 37 246 105 36 200 248 34 141 103 33 140 15 38 249 100 28 90 107 39 252 101 31 138 8 13 57 101 31 138 107 39 252 106 40 253 14 32 139 108 41 254 109 42 256 13 29 135 14 32 139 18 43 259 109 42 256 108 41 254 17 44 260 106 40 253 111 45 262 108 41 254 14 32 139 108 41 254 111 45 262 110 46 265 17 44 260 20 47 266 112 48 283 113 49 285 19 50 286 113 49 285 112 48 283 18 43 259 17 44 260 110 46 265 115 51 289 113 49 285 17 44 260 113 49 285 115 51 289 114 52 290 19 50 286 22 53 291 116 54 292 117 55 293 21 56 294 117 55 293 116 54 292 20 47 266 19 50 286 114 52 290 119 57 295 117 55 293 19 50 286 117 55 293 119 57 295 118 58 296 21 56 294 23 59 297 249 60 298 120 61 300 24 62 303 120 61 300 249 60 298 22 53 291 21 56 294 118 58 296 122 63 304 120 61 300 21 56 294 120 61 300 122 63 304 121 64 884 24 62 303 26 65 885 339 66 886 340 67 887 123 68 888 123 68 888 340 67 887 341 69 889 28 70 890 341 69 889 340 67 887 124 71 891 27 72 892 124 71 891 340 67 887 339 66 886 25 73 893 125 74 894 250 75 895 307 76 896 29 77 897 307 76 896 250 75 895 126 78 898 227 79 899 126 78 898 250 75 895 123 68 888 28 70 890 123 68 888 250 75 895 125 74 894 26 65 885 126 78 898 127 80 900 45 81 901 227 79 899 126 78 898 28 70 890 30 82 902 127 80 900 128 83 0 251 84 1 308 85 2 31 86 3 308 85 74 251 84 75 129 87 76 228 88 77 129 87 76 251 84 75 130 89 78 33 90 79 130 89 4 251 84 1 128 83 0 32 91 12 131 92 13 252 93 14 309 94 15 34 95 16 309 94 15 252 93 14 128 83 0 31 86 3 128 83 0 252 93 14 132 96 17 32 91 12 132 96 17 252 93 14 131 92 13 35 97 18 133 98 82 253 99 83 132 96 17 35 97 18 132 96 17 253 99 83 134 100 91 32 91 12 134 100 91 253 99 83 156 101 92 36 102 93 156 101 92 253 99 83 133 98 82 38 103 94 135 104 96 254 105 97 136 106 98 39 107 101 136 106 98 254 105 97 137 108 102 37 109 105 137 108 102 254 105 97 133 98 82 35 97 18 133 98 82 254 105 97 135 104 96 38 103 94 104 35 142 255 110 903 99 24 84 11 20 69 99 24 84 255 110 903 310 111 904 219 25 85 310 111 904 255 110 903 138 112 905 1978 113 906 138 112 905 255 110 903 104 35 142 16 37 246 204 114 5 285 115 6 139 116 7 59 117 8 139 116 7 285 115 6 203 118 9 57 119 10 105 36 200 256 120 907 140 121 908 16 37 246 140 121 908 256 120 907 135 104 909 39 107 910 135 104 909 256 120 907 141 122 911 38 103 912 141 122 911 256 120 907 105 36 200 15 38 249 138 112 905 257 123 913 142 124 914 1978 113 906 142 124 914 257 123 913 154 125 915 229 126 916 154 125 915 257 123 913 140 121 908 39 107 910 140 121 908 257 123 913 138 112 905 16 37 246 143 127 11 284 128 19 202 129 20 60 130 21 203 118 9 284 128 19 143 127 11 57 119 10 144 131 917 56 132 918 2065 133 919 2066 134 920 311 135 921 258 136 922 125 74 894 29 77 897 125 74 894 258 136 922 145 137 923 26 65 885 145 137 80 258 136 81 146 138 95 40 139 99 146 138 95 258 136 81 311 135 100 41 140 103 43 141 924 147 142 925 148 143 926 42 144 927 148 143 926 147 142 925 23 59 297 24 62 303 149 145 928 259 146 929 124 71 891 25 73 893 124 71 891 259 146 929 150 147 976 27 72 892 150 147 976 259 146 929 147 142 925 43 141 924 147 142 925 259 146 929 149 145 928 23 59 297 121 64 884 152 148 978 148 143 926 24 62 303 148 143 926 152 148 978 151 149 980 42 144 927 231 150 981 30 82 902 28 70 890 341 69 889 231 150 981 341 69 889 27 72 892 44 151 982 153 152 104 260 153 106 129 87 76 33 90 79 129 87 76 260 153 106 312 154 107 228 88 77 312 154 107 260 153 106 146 138 95 41 140 103 146 138 95 260 153 106 153 152 104 40 139 99 154 125 110 261 155 111 313 156 112 229 126 113 313 156 112 261 155 111 155 157 114 230 158 115 155 157 114 261 155 111 136 106 98 37 109 105 136 106 98 261 155 111 154 125 110 39 107 101 153 152 104 262 159 108 181 160 109 40 139 99 181 160 116 262 159 117 134 100 91 36 102 93 134 100 91 262 159 117 130 89 4 32 91 12 130 89 78 262 159 108 153 152 104 33 90 79 137 108 102 263 161 118 155 157 114 37 109 105 155 157 114 263 161 118 314 162 119 230 158 115 314 162 119 263 161 118 131 92 13 34 95 16 131 92 13 263 161 118 137 108 102 35 97 18 151 149 980 241 163 983 157 164 985 42 144 927 157 164 985 241 163 983 242 165 987 83 166 1012 159 167 1013 264 168 1016 160 169 1017 44 151 982 160 169 1017 264 168 1016 239 170 1018 81 171 1019 239 170 1018 264 168 1016 238 172 1020 82 173 1023 238 172 1020 264 168 1016 159 167 1013 43 141 924 82 173 1023 238 172 1020 157 164 985 83 166 1012 157 164 985 238 172 1020 43 141 924 42 144 927 160 169 1017 265 174 1036 231 150 981 44 151 982 231 150 981 265 174 1036 232 175 1038 30 82 902 232 175 1038 265 174 1036 237 176 1039 80 177 1040 237 176 1039 265 174 1036 160 169 1017 81 171 1019 94 14 61 163 178 1041 164 179 1042 9 15 62 165 180 1043 266 181 1045 166 182 1046 46 183 1047 166 182 1046 266 181 1045 163 178 1041 94 14 61 90 2 28 288 184 1048 207 185 1049 6 3 29 164 179 1042 167 186 1050 12 26 86 9 15 62 166 182 1046 267 187 1051 168 188 1052 46 183 1047 168 188 1052 267 187 1051 169 189 1053 47 190 1054 169 189 1053 267 187 1051 95 11 41 7 10 39 95 11 41 267 187 1051 166 182 1046 94 14 61 207 185 1049 287 191 1055 96 16 65 6 3 29 96 16 65 287 191 1055 206 192 1056 10 21 70 170 193 22 268 194 2246 171 195 24 63 196 25 171 195 24 268 194 2246 172 197 2247 58 198 27 172 197 1057 268 194 1058 173 199 1059 64 200 1060 173 199 1059 268 194 1058 170 193 1061 62 201 1062 172 197 2247 269 202 2248 174 203 32 58 198 27 174 203 32 269 202 2248 175 204 2249 61 205 34 175 204 1063 269 202 1064 176 206 1065 65 207 1066 176 206 1065 269 202 1064 172 197 1057 64 200 1060 175 204 2249 270 208 2250 177 209 38 61 205 34 177 209 38 270 208 2250 178 210 2251 66 211 40 178 210 1067 270 208 1068 179 212 1069 67 213 1070 179 212 1069 270 208 1068 175 204 1063 65 207 1066 180 214 1071 271 215 1072 149 145 928 25 73 893 149 145 928 271 215 1072 249 60 298 23 59 297 249 60 298 271 215 1072 48 216 1073 22 53 291 150 147 976 159 167 1013 44 151 982 27 72 892 159 167 1013 150 147 976 43 141 924 48 216 1073 272 217 1074 116 54 292 22 53 291 116 54 292 272 217 1074 49 218 1075 20 47 266 49 218 1075 273 219 1076 112 48 283 20 47 266 112 48 283 273 219 1076 50 220 1077 18 43 259 50 220 1077 274 221 1078 109 42 256 18 43 259 109 42 256 274 221 1078 51 222 1079 13 29 135 169 189 1053 275 223 1080 52 224 1081 47 190 1054 51 222 1079 275 223 1080 102 30 137 13 29 135 102 30 137 275 223 1080 169 189 1053 7 10 39 206 192 1056 286 225 1082 103 33 140 10 21 70 103 33 140 286 225 1082 53 226 1083 15 38 249 53 226 1083 276 227 1084 141 122 911 15 38 249 141 122 911 276 227 1084 54 228 1085 38 103 912 156 101 1086 277 229 1087 55 230 1088 36 102 1089 54 228 1085 277 229 1087 156 101 1086 38 103 912 55 230 1088 182 231 1090 181 160 1091 36 102 1089 181 160 1091 182 231 1090 56 132 918 40 139 1092 202 129 20 283 232 43 183 233 44 60 130 21 201 234 45 68 235 46 183 233 44 283 232 43 56 132 918 144 131 917 145 137 923 40 139 1092 144 131 917 321 236 1093 339 66 886 26 65 885 145 137 923 276 227 1084 2069 237 1094 2070 238 1095 54 228 1085 290 239 47 208 240 48 184 241 49 278 242 50 210 243 51 290 239 47 278 242 50 185 244 52 2068 245 1096 2069 237 1094 276 227 1084 53 226 1083 277 229 1087 2071 246 1097 2073 247 1098 55 230 1088 289 248 53 209 249 54 186 250 55 279 251 56 208 240 48 289 248 53 279 251 56 184 241 49 2070 238 1095 2071 246 1097 277 229 1087 54 228 1085 275 223 1080 2075 252 1099 2076 253 1100 52 224 1081 294 254 2265 212 255 58 2053 256 59 280 257 60 214 258 1101 294 254 1102 280 257 1103 187 259 1104 2074 260 1105 2075 252 1099 275 223 1080 51 222 1079 286 225 1082 2072 261 1106 2068 245 1096 53 226 1083 292 262 63 210 243 51 185 244 52 2052 263 64 274 221 1078 2078 264 1107 2074 260 1105 51 222 1079 293 265 1108 214 258 1101 187 259 1104 2055 266 1109 213 267 1110 293 265 1108 2055 266 1109 188 268 1111 2079 269 1112 2078 264 1107 274 221 1078 50 220 1077 273 219 1076 2080 270 1113 2079 269 1112 50 220 1077 295 271 1114 213 267 1110 188 268 1111 2056 272 1115 215 273 1116 295 271 1114 2056 272 1115 189 274 1117 2081 275 1118 2080 270 1113 273 219 1076 49 218 1075 271 215 1072 2084 276 1119 2085 277 1120 48 216 1073 297 278 1121 216 279 1122 190 280 1123 281 281 1124 217 282 87 297 278 73 281 281 2271 191 283 88 2083 284 1125 2084 276 1119 271 215 1072 180 214 1071 272 217 1074 2082 285 1126 2081 275 1118 49 218 1075 296 286 1127 215 273 1116 189 274 1117 2057 287 1128 216 279 1122 296 286 1127 2057 287 1128 190 280 1123 2085 277 1120 2082 285 1126 272 217 1074 48 216 1073 182 231 1090 2064 288 1129 2065 133 919 56 132 918 291 289 120 211 290 121 2051 291 122 2050 292 123 209 249 54 291 289 120 2050 292 123 186 250 55 2073 247 1098 2064 288 1129 182 231 1090 55 230 1088 211 290 121 298 293 124 282 294 125 2051 291 122 298 293 124 323 295 126 322 296 127 282 294 125 70 297 128 192 298 129 139 116 7 57 119 10 59 117 8 139 116 7 192 298 129 71 299 130 69 300 131 193 301 132 143 127 11 60 130 21 70 297 128 57 119 10 143 127 11 193 301 132 73 302 133 194 303 134 170 193 22 63 196 25 62 201 1062 170 193 1061 194 303 1130 74 304 1131 59 117 8 71 299 130 205 305 136 204 114 5 62 201 1062 74 304 1131 195 306 1132 173 199 1059 64 200 1060 173 199 1059 195 306 1132 75 307 1133 64 200 1060 75 307 1133 196 308 1134 176 206 1065 65 207 1066 176 206 1065 196 308 1134 76 309 1135 77 310 1136 197 311 1137 178 210 1067 67 213 1070 66 211 40 178 210 2251 197 311 2267 78 312 143 65 207 1066 76 309 1135 198 313 1138 179 212 1069 77 310 1136 67 213 1070 179 212 1069 198 313 1138 72 314 201 199 315 202 183 233 44 68 235 46 69 300 131 60 130 21 183 233 44 199 315 202 200 316 203 72 314 201 68 235 46 201 234 45 338 317 204 200 316 203 201 234 45 337 318 205 338 317 204 337 318 205 66 211 40 78 312 143 283 232 43 336 319 206 337 318 205 201 234 45 177 209 38 336 319 206 335 320 207 61 205 34 284 128 19 334 321 208 335 320 207 202 129 20 174 203 32 334 321 208 333 322 209 58 198 27 285 115 6 332 323 210 333 322 209 203 118 9 171 195 24 332 323 210 331 324 232 63 196 25 331 324 232 204 114 5 205 305 136 330 325 233 331 324 232 330 325 233 73 302 133 63 196 25 329 326 234 292 262 63 2052 263 64 2054 327 235 2076 253 1100 2077 328 1139 328 329 1140 52 224 1081 52 224 1081 328 329 1140 327 330 1141 47 190 1054 287 191 1055 326 331 1142 327 330 1141 206 192 1056 168 188 1052 326 331 1142 325 332 1143 46 183 1047 288 184 1048 324 333 1144 325 332 1143 207 185 1049 193 301 132 289 248 53 208 240 48 70 297 128 209 249 54 289 248 53 193 301 132 69 300 131 210 243 51 292 262 63 205 305 136 71 299 130 208 240 48 290 239 47 192 298 129 70 297 128 192 298 129 290 239 47 210 243 51 71 299 130 199 315 202 291 289 120 209 249 54 69 300 131 211 290 121 291 289 120 199 315 202 72 314 201 292 262 63 329 326 234 330 325 233 205 305 136 2053 256 59 212 255 58 329 326 234 2054 327 235 195 306 1132 293 265 1108 213 267 1110 75 307 1133 214 258 1101 293 265 1108 195 306 1132 74 304 1131 212 255 58 294 254 2265 194 303 134 73 302 133 194 303 1130 294 254 1102 214 258 1101 74 304 1131 213 267 1110 295 271 1114 196 308 1134 75 307 1133 196 308 1134 295 271 1114 215 273 1116 76 309 1135 215 273 1116 296 286 1127 198 313 1138 76 309 1135 198 313 1138 296 286 1127 216 279 1122 77 310 1136 323 295 126 217 282 87 191 283 88 322 296 127 217 282 87 323 295 126 338 317 204 78 312 143 216 279 1122 297 278 1121 197 311 1137 77 310 1136 197 311 2267 297 278 73 217 282 87 78 312 143 200 316 203 298 293 124 211 290 121 72 314 201 247 27 89 301 334 1145 220 335 1146 100 28 90 221 336 1147 301 334 1145 247 27 89 12 26 86 107 39 252 302 337 1148 222 338 1149 106 40 253 220 335 1146 302 337 1148 107 39 252 100 28 90 111 45 262 303 339 1150 223 340 1151 110 46 265 222 338 1149 303 339 1150 111 45 262 106 40 253 115 51 289 304 341 1152 224 342 1153 114 52 290 223 340 1151 304 341 1152 115 51 289 110 46 265 119 57 295 305 343 1154 225 344 1155 118 58 296 224 342 1153 305 343 1154 119 57 295 114 52 290 122 63 304 306 345 1156 226 346 1157 121 64 884 225 344 1155 306 345 1156 122 63 304 118 58 296 152 148 978 346 347 1158 345 348 1159 151 149 980 152 148 978 121 64 884 226 346 1157 346 347 1158 241 163 983 344 349 1160 343 350 1161 242 165 987 241 163 983 151 149 980 345 348 1159 344 349 1160 167 186 1050 315 351 1162 221 336 1147 12 26 86 232 175 1038 316 352 1163 127 80 900 30 82 902 127 80 900 316 352 1163 162 353 1164 45 81 901 162 353 1164 316 352 1163 235 354 1165 79 355 1166 235 354 1165 316 352 1163 232 175 1038 80 177 1040 234 356 1167 317 357 1168 235 354 1165 80 177 1040 235 354 1165 317 357 1168 233 358 1169 79 355 1166 233 358 1169 317 357 1168 87 359 1170 3 360 1171 87 359 1170 317 357 1168 234 356 1167 2 361 1172 236 362 1173 318 363 1174 237 176 1039 81 171 1019 237 176 1039 318 363 1174 234 356 1167 80 177 1040 234 356 1167 318 363 1174 86 364 1175 2 361 1172 86 364 1175 318 363 1174 236 362 1173 1 365 1176 239 170 1018 319 366 1177 236 362 1173 81 171 1019 236 362 1173 319 366 1177 85 367 1178 1 365 1176 85 367 1178 319 366 1177 161 368 1179 0 369 1180 161 368 1179 319 366 1177 239 170 1018 82 173 1023 0 369 1180 161 368 1179 240 370 1181 4 371 1182 240 370 1181 161 368 1179 82 173 1023 83 166 1012 242 165 987 158 372 1183 240 370 1181 83 166 1012 240 370 1181 158 372 1183 84 373 1184 4 371 1182 343 350 1161 342 374 1185 158 372 1183 242 165 987 158 372 1183 342 374 1185 88 375 1186 84 373 1184 144 131 917 2066 134 920 2067 376 1187 321 236 1093 339 66 886 321 236 1093 180 214 1071 25 73 893 2067 376 1187 2083 284 1125 180 214 1071 321 236 1093 46 183 1047 325 332 1143 324 333 1144 165 180 1043 207 185 1049 325 332 1143 326 331 1142 287 191 1055 47 190 1054 327 330 1141 326 331 1142 168 188 1052 206 192 1056 327 330 1141 328 329 1140 286 225 1082 286 225 1082 328 329 1140 2077 328 1139 2072 261 1106 73 302 133 330 325 233 329 326 234 212 255 58 204 114 5 331 324 232 332 323 210 285 115 6 58 198 27 333 322 209 332 323 210 171 195 24 203 118 9 333 322 209 334 321 208 284 128 19 61 205 34 335 320 207 334 321 208 174 203 32 202 129 20 335 320 207 336 319 206 283 232 43 66 211 40 337 318 205 336 319 206 177 209 38 200 316 203 338 317 204 323 295 126 298 293 124 299 8 36 218 9 37 2022 377 1188 2017 378 1189 218 9 37 300 23 72 2021 379 1190 2022 377 1188 300 23 72 219 25 85 2023 380 1191 2021 379 1190 220 335 1146 301 334 1145 674 381 1192 592 382 1193 301 334 1145 221 336 1147 593 383 1194 674 381 1192 222 338 1149 302 337 1148 675 384 1195 594 385 1196 302 337 1148 220 335 1146 592 382 1193 675 384 1195 223 340 1151 303 339 1150 676 386 1197 595 387 1198 303 339 1150 222 338 1149 594 385 1196 676 386 1197 224 342 1153 304 341 1152 677 388 1199 596 389 1200 304 341 1152 223 340 1151 595 387 1198 677 388 1199 225 344 1155 305 343 1154 678 390 1201 597 391 1202 305 343 1154 224 342 1153 596 389 1200 678 390 1201 226 346 1157 306 345 1156 679 392 1203 598 393 1204 306 345 1156 225 344 1155 597 391 1202 679 392 1203 2036 394 1205 2037 395 1206 680 396 1207 599 397 1208 2037 395 1206 2038 398 1209 600 399 1210 680 396 1207 2038 398 1209 2039 400 1211 608 401 1212 600 399 1210 31 86 3 308 85 2 2019 402 144 2033 403 2261 602 404 148 681 405 149 2019 402 2264 2020 406 2259 34 95 16 309 94 15 2032 407 2262 2031 408 2252 309 94 15 31 86 3 2033 403 2261 2032 407 2262 219 25 85 310 111 904 2024 409 1213 2023 380 1191 684 410 1214 604 411 1215 2025 412 1216 2026 413 1217 2034 414 2258 2035 415 2260 685 416 158 605 417 159 2035 415 1218 2036 394 1205 599 397 1208 685 416 1219 345 348 1159 346 347 1158 1971 418 1220 1970 419 1221 346 347 1158 226 346 1157 598 393 1204 1971 418 1220 2020 406 2259 2016 420 2257 686 421 161 602 404 148 2016 420 2257 2034 414 2258 605 417 159 686 421 161 229 126 113 313 156 112 2028 422 2255 2027 423 2256 313 156 112 230 158 115 2029 424 2254 2028 422 2255 230 158 115 314 162 119 2030 425 2253 2029 424 2254 314 162 119 34 95 16 2031 408 2252 2030 425 2253 343 350 1161 344 349 1160 1969 426 1222 1968 427 1223 344 349 1160 345 348 1159 1970 419 1221 1969 426 1222 2039 400 1211 2040 428 1224 689 429 1225 608 401 1212 2040 428 1224 2041 430 1226 612 431 1227 689 429 1225 221 336 1147 315 351 1162 690 432 1228 593 383 1194 2041 430 1226 2042 433 1229 692 434 1230 612 431 1227 2042 433 1229 2043 435 1231 434 436 1232 692 434 1230 88 375 1186 342 374 1185 1967 437 1233 435 438 1234 342 374 1185 343 350 1161 1968 427 1223 1967 437 1233 436 439 1235 353 440 1236 437 441 1237 622 442 1238 438 443 1239 352 444 1240 436 439 1235 622 442 1238 439 445 1241 352 444 1240 438 443 1239 623 446 1242 440 447 1243 354 448 1244 439 445 1241 623 446 1242 355 449 1245 356 450 1246 441 451 1247 443 452 1248 441 451 1247 357 453 1249 442 454 1250 443 452 1248 444 455 1251 353 440 1236 436 439 1235 624 456 1252 436 439 1235 352 444 1240 445 457 1253 624 456 1252 445 457 1253 359 458 1254 446 459 1255 624 456 1252 446 459 1255 358 460 1256 444 455 1251 624 456 1252 445 457 1253 352 444 1240 439 445 1241 625 461 1257 439 445 1241 354 448 1244 447 462 1258 625 461 1257 447 462 1258 360 463 1259 448 464 1260 625 461 1257 448 464 1260 359 458 1254 445 457 1253 625 461 1257 361 465 1261 357 453 1249 441 451 1247 626 466 1262 441 451 1247 356 450 1246 449 467 1263 626 466 1262 362 468 1264 363 469 1265 450 470 1266 451 471 1267 450 470 1266 356 450 1246 355 449 1245 451 471 1267 452 472 1268 358 460 1256 446 459 1255 627 473 1269 446 459 1255 359 458 1254 453 474 1270 627 473 1269 453 474 1270 365 475 1271 454 476 1272 627 473 1269 454 476 1272 364 477 1273 452 472 1268 627 473 1269 449 467 1263 356 450 1246 450 470 1266 456 478 1274 450 470 1266 363 469 1265 455 479 1275 456 478 1274 457 480 1276 363 469 1265 362 468 1264 458 481 1277 367 482 1278 366 483 1279 457 480 1276 458 481 1277 455 479 1275 363 469 1265 457 480 1276 460 484 1280 457 480 1276 366 483 1279 459 485 1281 460 484 1280 369 486 1282 368 487 1283 462 488 1284 461 489 1285 462 488 1284 366 483 1279 367 482 1278 461 489 1285 459 485 1281 366 483 1279 462 488 1284 464 490 1286 462 488 1284 368 487 1283 463 491 1287 464 490 1286 371 492 1288 370 493 1289 466 494 1290 465 495 1291 466 494 1290 368 487 1283 369 486 1282 465 495 1291 463 491 1287 368 487 1283 466 494 1290 468 496 1292 466 494 1290 370 493 1289 467 497 1293 468 496 1292 372 498 1294 373 499 1295 469 500 1296 628 501 1297 469 500 1296 370 493 1289 371 492 1288 628 501 1297 467 497 1293 370 493 1289 469 500 1296 471 502 1298 469 500 1296 373 499 1295 470 503 1299 471 502 1298 375 504 1300 472 505 1301 1965 506 1302 1964 507 1303 472 505 1301 377 508 1304 1966 509 1305 1965 506 1302 1966 509 1305 376 510 1306 473 511 1307 1965 506 1302 473 511 1307 374 512 1308 1964 507 1303 1965 506 1302 474 513 1309 378 514 1310 475 515 1311 629 516 1312 475 515 1311 379 517 1313 476 518 1314 629 516 1312 476 518 1314 377 508 1304 472 505 1301 629 516 1312 472 505 1301 375 504 1300 474 513 1309 629 516 1312 476 518 1314 379 517 1313 399 519 1315 477 520 1316 476 518 1314 477 520 1316 380 521 1317 377 508 1304 478 522 162 381 523 163 479 524 164 630 525 165 479 524 174 382 526 175 480 527 176 630 525 177 480 527 176 384 528 178 481 529 179 630 525 177 481 529 166 383 530 167 478 522 162 630 525 165 482 531 168 385 532 169 483 533 170 631 534 171 483 533 170 381 523 163 478 522 162 631 534 171 478 522 162 383 530 167 484 535 172 631 534 171 484 535 172 386 536 173 482 531 168 631 534 171 485 537 180 386 536 173 484 535 172 632 538 181 484 535 172 383 530 167 486 539 182 632 538 181 486 539 182 387 540 183 511 541 184 632 538 181 511 541 184 390 542 185 485 537 180 632 538 181 487 543 186 391 544 187 488 545 188 633 546 189 488 545 188 388 547 190 489 548 191 633 546 189 489 548 191 386 536 173 485 537 180 633 546 189 485 537 180 390 542 185 487 543 186 633 546 189 453 474 1270 359 458 1254 448 464 1260 634 549 1318 448 464 1260 360 463 1259 490 550 1319 634 549 1318 490 550 1319 389 551 1320 491 552 1321 634 549 1318 491 552 1321 365 475 1271 453 474 1270 634 549 1318 575 553 236 405 554 237 492 555 238 659 556 239 492 555 238 403 557 240 574 558 241 659 556 239 454 476 1272 365 475 1271 493 559 1322 635 560 1323 493 559 1322 391 544 1324 487 543 1325 635 560 1323 487 543 1325 390 542 1326 494 561 1327 635 560 1323 494 561 1327 364 477 1273 454 476 1272 635 560 1323 491 552 1321 389 551 1320 495 562 1328 636 563 1329 495 562 1328 392 564 1330 508 565 1331 636 563 1329 508 565 1331 391 544 1324 493 559 1322 636 563 1329 493 559 1322 365 475 1271 491 552 1321 636 563 1329 496 566 242 406 567 243 573 568 244 658 569 245 574 558 241 403 557 240 496 566 242 658 569 245 651 570 1332 2087 571 1333 2088 572 1334 552 573 1335 497 574 1336 378 514 1310 474 513 1309 637 575 1337 474 513 1309 375 504 1300 498 576 1338 637 575 1337 498 576 211 394 577 212 499 578 213 637 575 214 499 578 213 395 579 215 497 574 216 637 575 214 397 580 1339 396 581 1340 501 582 1341 500 583 1342 501 582 1341 373 499 1295 372 498 1294 500 583 1342 502 584 1343 374 512 1308 473 511 1307 638 585 1344 473 511 1307 376 510 1306 503 586 1345 638 585 1344 503 586 1345 397 580 1339 500 583 1342 638 585 1344 500 583 1342 372 498 1294 502 584 1343 638 585 1344 470 503 1299 373 499 1295 501 582 1341 505 587 1346 501 582 1341 396 581 1340 504 588 1347 505 587 1346 609 589 1348 1966 509 1305 377 508 1304 380 521 1317 609 589 1348 398 590 1349 376 510 1306 1966 509 1305 506 591 217 384 528 178 480 527 176 639 592 218 480 527 176 382 526 175 507 593 219 639 592 218 507 593 219 395 579 215 499 578 213 639 592 218 499 578 213 394 577 212 506 591 217 639 592 218 508 565 192 392 564 193 509 594 194 640 595 195 509 594 194 400 596 196 510 597 197 640 595 195 510 597 197 388 547 190 488 545 188 640 595 195 488 545 188 391 544 187 508 565 192 640 595 195 506 591 217 394 577 212 538 598 226 641 599 227 538 598 198 387 540 183 486 539 182 641 599 199 486 539 182 383 530 167 481 529 166 641 599 199 481 529 179 384 528 178 506 591 217 641 599 227 489 548 191 388 547 190 510 597 197 642 600 220 510 597 197 400 596 196 512 601 221 642 600 220 512 601 221 385 532 169 482 531 168 642 600 220 482 531 168 386 536 173 489 548 191 642 600 220 504 588 1347 396 581 1340 513 602 1350 620 603 1351 513 602 1350 429 604 1352 621 605 1353 620 603 1351 515 606 1354 398 590 1349 516 607 1355 643 608 1356 516 607 1355 427 609 1357 618 610 1358 643 608 1356 618 610 1358 428 611 1359 617 612 1360 643 608 1356 617 612 1360 397 580 1339 515 606 1354 643 608 1356 428 611 1359 429 604 1352 513 602 1350 617 612 1360 513 602 1350 396 581 1340 397 580 1339 617 612 1360 516 607 1355 398 590 1349 609 589 1348 644 613 1361 609 589 1348 380 521 1317 610 614 1362 644 613 1361 610 614 1362 426 615 1363 616 616 1364 644 613 1361 616 616 1364 427 609 1357 516 607 1355 644 613 1361 442 454 1250 357 453 1249 520 617 1365 519 618 1366 521 619 1367 401 620 1368 522 621 1369 645 622 1370 522 621 1369 442 454 1250 519 618 1366 645 622 1370 437 441 1237 353 440 1236 579 623 1371 661 624 1372 520 617 1365 357 453 1249 361 465 1261 523 625 1373 522 621 1369 401 620 1368 524 626 1374 646 627 1375 524 626 1374 402 628 1376 525 629 1377 646 627 1375 525 629 1377 355 449 1245 443 452 1248 646 627 1375 443 452 1248 442 454 1250 522 621 1369 646 627 1375 579 623 1371 353 440 1236 444 455 1251 660 630 1378 444 455 1251 358 460 1256 578 631 1379 660 630 1378 526 632 2273 409 633 247 527 634 248 647 635 2268 527 634 248 404 636 250 528 637 251 647 635 2268 528 637 1380 410 638 1381 529 639 1382 647 635 1383 529 639 1382 408 640 1384 526 632 1385 647 635 1383 528 637 251 404 636 250 530 641 255 648 642 2269 530 641 255 407 643 257 531 644 258 648 642 2269 531 644 1386 411 645 1387 532 646 1388 648 642 1389 532 646 1388 410 638 1381 528 637 1380 648 642 1389 531 644 258 407 643 257 533 647 261 649 648 2272 533 647 261 412 649 263 534 650 264 649 648 2272 534 650 1390 413 651 1391 535 652 1392 649 648 1393 535 652 1392 411 645 1387 531 644 1386 649 648 1393 393 653 1394 374 512 1308 502 584 1343 537 654 1395 502 584 1343 372 498 1294 628 501 1297 537 654 1395 628 501 1297 371 492 1288 536 655 1396 537 654 1395 503 586 1345 376 510 1306 398 590 1349 515 606 1354 515 606 1354 397 580 1339 503 586 1345 536 655 1396 371 492 1288 465 495 1291 540 656 1397 465 495 1291 369 486 1282 539 657 1398 540 656 1397 539 657 1398 369 486 1282 461 489 1285 542 658 1399 461 489 1285 367 482 1278 541 659 1400 542 658 1399 541 659 1400 367 482 1278 458 481 1277 544 660 1401 458 481 1277 362 468 1264 543 661 1402 544 660 1401 525 629 1377 402 628 1376 545 662 1403 546 663 1404 543 661 1402 362 468 1264 451 471 1267 546 663 1404 451 471 1267 355 449 1245 525 629 1377 546 663 1404 578 631 1379 358 460 1256 452 472 1268 577 664 1405 452 472 1268 364 477 1273 547 665 1406 577 664 1405 547 665 1406 364 477 1273 494 561 1327 549 666 1407 494 561 1327 390 542 1326 548 667 1408 549 666 1407 511 541 1409 387 540 1410 550 668 1411 551 669 1412 548 667 1408 390 542 1326 511 541 1409 551 669 1412 550 668 1411 387 540 1410 538 598 1413 650 670 1414 538 598 1413 394 577 1415 552 573 1335 650 670 1414 573 568 244 406 567 243 553 671 267 657 672 268 572 673 269 657 672 268 553 671 267 414 674 270 552 573 1335 394 577 1415 498 576 1338 651 570 1332 651 570 1332 498 576 1338 375 504 1300 1964 507 1303 1945 675 1416 549 666 1407 548 667 1408 2091 676 1417 2092 677 1418 580 678 271 663 679 272 652 680 273 554 681 274 663 679 272 582 682 275 555 683 276 652 680 273 2093 684 1419 547 665 1406 549 666 1407 2092 677 1418 551 669 1412 550 668 1411 2095 685 1420 2090 686 1421 581 687 277 662 688 278 653 689 279 556 690 280 662 688 278 580 678 271 554 681 274 653 689 279 2091 676 1417 548 667 1408 551 669 1412 2090 686 1421 546 663 1404 545 662 1403 2097 691 1422 2098 692 1423 584 693 281 667 694 282 654 695 2270 557 696 284 667 694 1424 586 697 1425 558 698 1426 654 695 1427 2099 699 1428 543 661 1402 546 663 1404 2098 692 1423 577 664 1405 547 665 1406 2093 684 1419 2094 700 1429 582 682 275 665 701 287 2060 702 288 555 683 276 544 660 1401 543 661 1402 2099 699 1428 2100 703 1430 586 697 1425 666 704 1431 2061 705 1432 558 698 1426 666 704 1431 585 706 1433 559 707 1434 2061 705 1432 2101 708 1435 541 659 1400 544 660 1401 2100 703 1430 542 658 1399 541 659 1400 2101 708 1435 2102 709 1436 585 706 1433 668 710 1437 2062 711 1438 559 707 1434 668 710 1437 587 712 1439 560 713 1440 2062 711 1438 2103 714 1441 539 657 1398 542 658 1399 2102 709 1436 537 654 1395 536 655 1396 2105 715 1442 2106 716 1443 588 717 1444 670 718 1445 655 719 1446 561 720 1447 670 718 2275 589 721 301 562 722 302 655 719 299 2107 723 1448 393 653 1394 537 654 1395 2106 716 1443 540 656 1397 539 657 1398 2103 714 1441 2104 724 1449 587 712 1439 669 725 1450 2063 726 1451 560 713 1440 669 725 1450 588 717 1444 561 720 1447 2063 726 1451 2105 715 1442 536 655 1396 540 656 1397 2104 724 1449 650 670 1414 552 573 1335 2088 572 1334 2089 727 1452 583 728 305 664 729 306 2059 730 307 2058 731 308 664 729 306 581 687 277 556 690 280 2059 730 307 2095 685 1420 550 668 1411 650 670 1414 2089 727 1452 671 732 309 583 728 305 2058 731 308 656 733 310 1947 734 311 671 732 309 656 733 310 1946 735 970 563 736 971 416 737 972 403 557 240 492 555 238 563 736 971 492 555 238 405 554 237 417 738 973 564 739 974 415 740 975 406 567 243 496 566 242 564 739 974 496 566 242 403 557 240 416 737 972 565 741 2274 419 742 977 409 633 247 526 632 2273 565 741 1453 526 632 1385 408 640 1384 420 743 1454 576 744 979 417 738 973 405 554 237 575 553 236 566 745 1455 420 743 1454 408 640 1384 529 639 1382 566 745 1455 529 639 1382 410 638 1381 421 746 1456 567 747 1457 421 746 1456 410 638 1381 532 646 1388 567 747 1457 532 646 1388 411 645 1387 422 748 1458 568 749 1459 423 750 1460 413 651 1391 534 650 1390 568 749 984 534 650 264 412 649 263 424 751 986 569 752 1461 422 748 1458 411 645 1387 535 652 1392 569 752 1461 535 652 1392 413 651 1391 423 750 1460 570 753 988 418 754 989 414 674 270 553 671 267 570 753 988 553 671 267 406 567 243 415 740 975 414 674 270 418 754 989 571 755 990 572 673 269 572 673 269 571 755 990 1963 756 991 1962 757 992 424 751 986 412 649 263 1962 757 992 1963 756 991 657 672 268 572 673 269 1962 757 992 1961 758 993 533 647 261 407 643 257 1960 759 994 1961 758 993 658 569 245 573 568 244 1960 759 994 1959 760 995 530 641 255 404 636 250 1958 761 996 1959 760 995 659 556 239 574 558 241 1958 761 996 1957 762 997 527 634 248 409 633 247 1956 763 998 1957 762 997 576 744 979 575 553 236 1956 763 998 1955 764 999 409 633 247 419 742 977 1955 764 999 1956 763 998 2060 702 288 665 701 287 1954 765 1000 1953 766 1001 2097 691 1422 545 662 1403 1952 767 1462 2096 768 1463 545 662 1403 402 628 1376 1951 769 1464 1952 767 1462 660 630 1378 578 631 1379 1951 769 1464 1950 770 1465 524 626 1374 401 620 1368 1949 771 1466 1950 770 1465 661 624 1372 579 623 1371 1949 771 1466 1948 772 1467 564 739 974 416 737 972 580 678 271 662 688 278 581 687 277 415 740 975 564 739 974 662 688 278 582 682 275 417 738 973 576 744 979 665 701 287 580 678 271 416 737 972 563 736 971 663 679 272 563 736 971 417 738 973 582 682 275 663 679 272 570 753 988 415 740 975 581 687 277 664 729 306 583 728 305 418 754 989 570 753 988 664 729 306 665 701 287 576 744 979 1955 764 999 1954 765 1000 1954 765 1000 584 693 281 557 696 284 1953 766 1001 566 745 1455 421 746 1456 585 706 1433 666 704 1431 586 697 1425 420 743 1454 566 745 1455 666 704 1431 584 693 281 419 742 977 565 741 2274 667 694 282 565 741 1453 420 743 1454 586 697 1425 667 694 1424 585 706 1433 421 746 1456 567 747 1457 668 710 1437 567 747 1457 422 748 1458 587 712 1439 668 710 1437 587 712 1439 422 748 1458 569 752 1461 669 725 1450 569 752 1461 423 750 1460 588 717 1444 669 725 1450 589 721 301 1947 734 311 1946 735 970 562 722 302 589 721 301 424 751 986 1963 756 991 1947 734 311 588 717 1444 423 750 1460 568 749 1459 670 718 1445 568 749 984 424 751 986 589 721 301 670 718 2275 571 755 990 418 754 989 583 728 305 671 732 309 590 773 1468 354 448 1244 440 447 1243 672 774 1469 447 462 1258 354 448 1244 590 773 1468 673 775 1470 591 776 1471 360 463 1259 447 462 1258 673 775 1470 626 466 1262 449 467 1263 592 382 1193 674 381 1192 593 383 1194 361 465 1261 626 466 1262 674 381 1192 456 478 1274 455 479 1275 594 385 1196 675 384 1195 592 382 1193 449 467 1263 456 478 1274 675 384 1195 460 484 1280 459 485 1281 595 387 1198 676 386 1197 594 385 1196 455 479 1275 460 484 1280 676 386 1197 464 490 1286 463 491 1287 596 389 1200 677 388 1199 595 387 1198 459 485 1281 464 490 1286 677 388 1199 468 496 1292 467 497 1293 597 391 1202 678 390 1201 596 389 1200 463 491 1287 468 496 1292 678 390 1201 471 502 1298 470 503 1299 598 393 1204 679 392 1203 597 391 1202 467 497 1293 471 502 1298 679 392 1203 475 515 1311 378 514 1310 599 397 1208 680 396 1207 600 399 1210 379 517 1313 475 515 1311 680 396 1207 399 519 1315 379 517 1313 600 399 1210 608 401 1212 479 524 164 381 523 163 601 777 222 681 405 223 602 404 148 382 526 175 479 524 174 681 405 149 483 533 170 385 532 169 603 778 224 682 779 225 601 777 222 381 523 163 483 533 170 682 779 225 490 550 1319 360 463 1259 591 776 1471 683 780 1472 604 411 1215 389 551 1320 490 550 1319 683 780 1472 495 562 1328 389 551 1320 604 411 1215 684 410 1214 606 781 1473 392 564 1330 495 562 1328 684 410 1214 497 574 216 395 579 215 605 417 159 685 416 158 599 397 1208 378 514 1310 497 574 1336 685 416 1219 505 587 1346 504 588 1347 1970 419 1221 1971 418 1220 505 587 1346 1971 418 1220 598 393 1204 470 503 1299 507 593 219 382 526 175 602 404 148 686 421 161 605 417 159 395 579 215 507 593 219 686 421 161 509 594 194 392 564 193 606 781 228 687 782 229 607 783 230 400 596 196 509 594 194 687 782 229 512 601 221 400 596 196 607 783 230 688 784 231 603 778 224 385 532 169 512 601 221 688 784 231 620 603 1351 621 605 1353 1968 427 1223 1969 426 1222 620 603 1351 1969 426 1222 1970 419 1221 504 588 1347 518 785 1474 399 519 1315 608 401 1212 689 429 1225 612 431 1227 425 786 1475 518 785 1474 689 429 1225 523 625 1373 361 465 1261 593 383 1194 690 432 1228 610 614 1362 380 521 1317 477 520 1316 691 787 1476 477 520 1316 399 519 1315 518 785 1474 691 787 1476 518 785 1474 425 786 1475 614 788 1477 691 787 1476 614 788 1477 426 615 1363 610 614 1362 691 787 1476 611 789 1478 425 786 1475 612 431 1227 692 434 1230 434 436 1232 350 790 1479 611 789 1478 692 434 1230 613 791 1480 426 615 1363 614 788 1477 693 792 1481 614 788 1477 425 786 1475 611 789 1478 693 792 1481 611 789 1478 350 790 1479 433 793 1482 693 792 1481 433 793 1482 349 794 1483 613 791 1480 693 792 1481 615 795 1484 427 609 1357 616 616 1364 694 796 1485 616 616 1364 426 615 1363 613 791 1480 694 796 1485 613 791 1480 349 794 1483 432 797 1486 694 796 1485 432 797 1486 348 798 1487 615 795 1484 694 796 1485 618 610 1358 427 609 1357 615 795 1484 695 799 1488 615 795 1484 348 798 1487 431 800 1489 695 799 1488 431 800 1489 347 801 1490 517 802 1491 695 799 1488 517 802 1491 428 611 1359 618 610 1358 695 799 1488 347 801 1490 351 803 1492 619 804 1493 517 802 1491 619 804 1493 429 604 1352 428 611 1359 517 802 1491 621 605 1353 429 604 1352 619 804 1493 514 805 1494 619 804 1493 351 803 1492 430 806 1495 514 805 1494 1968 427 1223 621 605 1353 514 805 1494 1967 437 1233 514 805 1494 430 806 1495 435 438 1234 1967 437 1233 696 807 1496 697 808 1497 710 809 1498 709 810 1499 697 808 1497 698 811 1500 711 812 1501 710 809 1498 698 811 1500 699 813 1502 712 814 1503 711 812 1501 699 813 1502 700 815 1504 713 816 1505 712 814 1503 700 815 1504 701 817 1506 714 818 1507 713 816 1505 701 817 1506 702 819 1508 715 820 1509 714 818 1507 702 819 1508 703 821 1510 716 822 1511 715 820 1509 703 821 1510 704 823 1512 717 824 1513 716 822 1511 704 823 1512 705 825 1514 718 826 1515 717 824 1513 705 825 1514 706 827 1516 719 828 1517 718 826 1515 706 827 1516 707 829 1518 720 830 1519 719 828 1517 707 829 1518 1331 831 1520 721 832 1521 720 830 1519 708 833 1522 722 834 1523 1979 835 1524 1980 836 1525 709 810 1499 710 809 1498 724 837 1526 723 838 1527 710 809 1498 711 812 1501 725 839 1528 724 837 1526 711 812 1501 712 814 1503 726 840 1529 725 839 1528 712 814 1503 713 816 1505 727 841 1530 726 840 1529 713 816 1505 714 818 1507 728 842 1531 727 841 1530 714 818 1507 715 820 1509 729 843 1532 728 842 1531 715 820 1509 716 822 1511 730 844 1533 729 843 1532 716 822 1511 717 824 1513 731 845 1534 730 844 1533 717 824 1513 718 826 1515 732 846 1535 731 845 1534 718 826 1515 719 828 1517 733 847 1536 732 846 1535 719 828 1517 720 830 1519 734 848 1537 733 847 1536 1333 849 1538 721 832 1521 1979 835 1524 1982 850 1539 723 838 1527 724 837 1526 737 851 1540 736 852 1541 724 837 1526 725 839 1528 738 853 1542 737 851 1540 725 839 1528 726 840 1529 739 854 1543 738 853 1542 726 840 1529 727 841 1530 740 855 1544 739 854 1543 727 841 1530 728 842 1531 741 856 1545 740 855 1544 728 842 1531 729 843 1532 742 857 1546 741 856 1545 729 843 1532 730 844 1533 743 858 1547 742 857 1546 730 844 1533 731 845 1534 744 859 1548 743 858 1547 731 845 1534 732 846 1535 745 860 1549 744 859 1548 732 846 1535 733 847 1536 746 861 1550 745 860 1549 733 847 1536 734 848 1537 747 862 1551 746 861 1550 1334 863 1552 1333 849 1538 1982 850 1539 1983 864 1553 736 852 1541 737 851 1540 750 865 1554 749 866 1555 737 851 1540 738 853 1542 751 867 1556 750 865 1554 738 853 1542 739 854 1543 752 868 1557 751 867 1556 739 854 1543 740 855 1544 753 869 1558 752 868 1557 740 855 1544 741 856 1545 754 870 1559 753 869 1558 741 856 1545 742 857 1546 755 871 1560 754 870 1559 742 857 1546 743 858 1547 756 872 1561 755 871 1560 743 858 1547 744 859 1548 757 873 1562 756 872 1561 744 859 1548 745 860 1549 758 874 1563 757 873 1562 745 860 1549 746 861 1550 759 875 1564 758 874 1563 746 861 1550 747 862 1551 760 876 1565 759 875 1564 1335 877 1566 1334 863 1552 1983 864 1553 1984 878 1567 749 866 1555 750 865 1554 763 879 1568 762 880 1569 750 865 1554 751 867 1556 764 881 1570 763 879 1568 751 867 1556 752 868 1557 765 882 1571 764 881 1570 752 868 1557 753 869 1558 766 883 1572 765 882 1571 753 869 1558 754 870 1559 767 884 1573 766 883 1572 754 870 1559 755 871 1560 768 885 1574 767 884 1573 755 871 1560 756 872 1561 769 886 1575 768 885 1574 756 872 1561 757 873 1562 770 887 1576 769 886 1575 757 873 1562 758 874 1563 771 888 1577 770 887 1576 758 874 1563 759 875 1564 772 889 1578 771 888 1577 759 875 1564 760 876 1565 773 890 1579 772 889 1578 1336 891 1580 1335 877 1566 1984 878 1567 1981 892 1581 762 880 1569 763 879 1568 776 893 1582 775 894 1583 763 879 1568 764 881 1570 777 895 1584 776 893 1582 764 881 1570 765 882 1571 778 896 1585 777 895 1584 765 882 1571 766 883 1572 779 897 1586 778 896 1585 766 883 1572 767 884 1573 780 898 1587 779 897 1586 767 884 1573 768 885 1574 781 899 1588 780 898 1587 768 885 1574 769 886 1575 782 900 1589 781 899 1588 769 886 1575 770 887 1576 783 901 1590 782 900 1589 770 887 1576 771 888 1577 784 902 1591 783 901 1590 771 888 1577 772 889 1578 785 903 1592 784 902 1591 772 889 1578 773 890 1579 786 904 1593 785 903 1592 2 361 1172 1336 891 1580 1981 892 1581 87 359 1170 775 894 1583 776 893 1582 788 905 1594 787 906 1595 776 893 1582 777 895 1584 789 907 1596 788 905 1594 777 895 1584 778 896 1585 790 908 1597 789 907 1596 778 896 1585 779 897 1586 791 909 1598 790 908 1597 779 897 1586 780 898 1587 792 910 1599 791 909 1598 780 898 1587 781 899 1588 793 911 1600 792 910 1599 781 899 1588 782 900 1589 794 912 1601 793 911 1600 782 900 1589 783 901 1590 795 913 1602 794 912 1601 783 901 1590 784 902 1591 796 914 1603 795 913 1602 784 902 1591 785 903 1592 797 915 1604 796 914 1603 785 903 1592 786 904 1593 798 916 1605 797 915 1604 787 906 1595 788 905 1594 800 917 1606 799 918 1607 788 905 1594 789 907 1596 801 919 1608 800 917 1606 789 907 1596 790 908 1597 802 920 1609 801 919 1608 790 908 1597 791 909 1598 803 921 1610 802 920 1609 791 909 1598 792 910 1599 804 922 1611 803 921 1610 792 910 1599 793 911 1600 805 923 1612 804 922 1611 793 911 1600 794 912 1601 806 924 1613 805 923 1612 794 912 1601 795 913 1602 807 925 1614 806 924 1613 795 913 1602 796 914 1603 808 926 1615 807 925 1614 796 914 1603 797 915 1604 809 927 1616 808 926 1615 797 915 1604 798 916 1605 810 928 1617 809 927 1616 799 918 1607 800 917 1606 812 929 1618 811 930 1619 800 917 1606 801 919 1608 813 931 1620 812 929 1618 801 919 1608 802 920 1609 814 932 1621 813 931 1620 802 920 1609 803 921 1610 815 933 1622 814 932 1621 803 921 1610 804 922 1611 816 934 1623 815 933 1622 804 922 1611 805 923 1612 817 935 1624 816 934 1623 805 923 1612 806 924 1613 818 936 1625 817 935 1624 806 924 1613 807 925 1614 819 937 1626 818 936 1625 807 925 1614 808 926 1615 820 938 1627 819 937 1626 808 926 1615 809 927 1616 821 939 1628 820 938 1627 809 927 1616 810 928 1617 822 940 1629 821 939 1628 811 930 1619 812 929 1618 824 941 1630 823 942 1631 812 929 1618 813 931 1620 825 943 1632 824 941 1630 813 931 1620 814 932 1621 826 944 1633 825 943 1632 814 932 1621 815 933 1622 827 945 1634 826 944 1633 815 933 1622 816 934 1623 828 946 1635 827 945 1634 816 934 1623 817 935 1624 829 947 1636 828 946 1635 817 935 1624 818 936 1625 830 948 1637 829 947 1636 818 936 1625 819 937 1626 831 949 1638 830 948 1637 819 937 1626 820 938 1627 832 950 1639 831 949 1638 820 938 1627 821 939 1628 833 951 1640 832 950 1639 821 939 1628 822 940 1629 834 952 1641 833 951 1640 823 942 1631 824 941 1630 835 953 1642 846 954 1643 824 941 1630 825 943 1632 836 955 1644 835 953 1642 825 943 1632 826 944 1633 837 956 1645 836 955 1644 826 944 1633 827 945 1634 838 957 1646 837 956 1645 827 945 1634 828 946 1635 839 958 1647 838 957 1646 828 946 1635 829 947 1636 840 959 1648 839 958 1647 829 947 1636 830 948 1637 841 960 1649 840 959 1648 830 948 1637 831 949 1638 842 961 1650 841 960 1649 831 949 1638 832 950 1639 843 962 1651 842 961 1650 832 950 1639 833 951 1640 844 963 1652 843 962 1651 833 951 1640 834 952 1641 845 964 1653 844 963 1652 846 954 1643 835 953 1642 848 965 1654 847 966 1655 835 953 1642 836 955 1644 849 967 1656 848 965 1654 836 955 1644 837 956 1645 850 968 1657 849 967 1656 837 956 1645 838 957 1646 851 969 1658 850 968 1657 838 957 1646 839 958 1647 852 970 1659 851 969 1658 839 958 1647 840 959 1648 853 971 1660 852 970 1659 840 959 1648 841 960 1649 854 972 1661 853 971 1660 841 960 1649 842 961 1650 855 973 1662 854 972 1661 842 961 1650 843 962 1651 856 974 1663 855 973 1662 843 962 1651 844 963 1652 857 975 1664 856 974 1663 844 963 1652 845 964 1653 858 976 1665 857 975 1664 847 966 1655 848 965 1654 860 977 1666 859 978 1667 848 965 1654 849 967 1656 861 979 1668 860 977 1666 849 967 1656 850 968 1657 862 980 1669 861 979 1668 853 971 1660 854 972 1661 863 981 1670 854 972 1661 855 973 1662 864 982 1671 863 981 1670 855 973 1662 856 974 1663 865 983 1672 864 982 1671 856 974 1663 857 975 1664 866 984 1673 865 983 1672 857 975 1664 858 976 1665 867 985 1674 866 984 1673 859 978 1667 860 977 1666 869 986 1675 868 987 1676 860 977 1666 861 979 1668 870 988 1677 869 986 1675 868 987 1676 869 986 1675 872 989 1678 871 990 1679 869 986 1675 870 988 1677 873 991 1680 872 989 1678 875 992 1681 874 993 1682 864 982 1671 865 983 1672 865 983 1672 866 984 1673 876 994 1683 875 992 1681 866 984 1673 867 985 1674 877 995 1684 876 994 1683 871 990 1679 872 989 1678 879 996 1685 878 997 1686 872 989 1678 873 991 1680 880 998 1687 879 996 1685 882 999 1688 881 1000 1689 874 993 1682 875 992 1681 875 992 1681 876 994 1683 883 1001 1690 882 999 1688 876 994 1683 877 995 1684 884 1002 1691 883 1001 1690 878 997 1686 879 996 1685 886 1003 1692 885 1004 1693 879 996 1685 880 998 1687 887 1005 1694 886 1003 1692 889 1006 1695 888 1007 1696 881 1000 1689 882 999 1688 882 999 1688 883 1001 1690 890 1008 1697 889 1006 1695 883 1001 1690 884 1002 1691 891 1009 1698 890 1008 1697 885 1004 1693 886 1003 1692 893 1010 1699 892 1011 1700 886 1003 1692 887 1005 1694 894 1012 1701 893 1010 1699 1313 1013 1702 888 1007 1696 889 1006 1695 895 1014 1703 889 1006 1695 890 1008 1697 896 1015 1704 895 1014 1703 890 1008 1697 891 1009 1698 1314 1016 1705 896 1015 1704 891 1009 1698 1337 1017 1706 897 1018 1707 1314 1016 1705 1985 1019 1708 1337 1017 1706 320 1020 1709 1986 1021 1710 892 1011 1700 893 1010 1699 899 1022 1711 898 1023 1712 893 1010 1699 894 1012 1701 900 1024 1713 899 1022 1711 1312 1025 1714 1311 1026 1715 906 1027 1716 905 1028 1717 697 808 1497 696 807 1496 907 1029 1718 698 811 1500 697 808 1497 907 1029 1718 699 813 1502 698 811 1500 907 1029 1718 700 815 1504 699 813 1502 907 1029 1718 701 817 1506 700 815 1504 907 1029 1718 702 819 1508 701 817 1506 907 1029 1718 703 821 1510 702 819 1508 907 1029 1718 704 823 1512 703 821 1510 907 1029 1718 705 825 1514 704 823 1512 907 1029 1718 706 827 1516 705 825 1514 907 1029 1718 707 829 1518 706 827 1516 907 1029 1718 707 829 1518 907 1029 1718 1331 831 1520 708 833 1522 1980 836 1525 907 1029 1718 941 1030 312 980 1031 313 1044 1032 314 1007 1033 315 1007 1033 315 1028 1034 316 956 1035 317 941 1030 312 942 1036 318 958 1037 319 1028 1034 316 1007 1033 315 1007 1033 315 1044 1032 314 981 1038 320 942 1036 318 943 1039 321 979 1040 322 1043 1041 323 1008 1042 324 1008 1042 324 1029 1043 325 955 1044 326 943 1039 321 941 1030 312 956 1035 317 1029 1043 325 1008 1042 324 1008 1042 324 1043 1041 323 980 1031 313 941 1030 312 944 1045 327 978 1046 328 1042 1047 329 1009 1048 330 1009 1048 330 1027 1049 331 953 1050 332 944 1045 327 943 1039 321 955 1044 326 1027 1049 331 1009 1048 330 1009 1048 330 1042 1047 329 979 1040 322 943 1039 321 945 1051 333 977 1052 334 1041 1053 335 1010 1054 336 1010 1054 336 1030 1055 337 960 1056 338 945 1051 333 944 1045 327 953 1050 332 1030 1055 337 1010 1054 336 1010 1054 336 1041 1053 335 978 1046 328 944 1045 327 1011 1057 339 1032 1058 340 964 1059 341 946 1060 342 945 1051 333 960 1056 338 1032 1058 340 1011 1057 339 1011 1057 339 946 1060 342 1066 1061 343 1067 1062 344 947 1063 345 976 1064 346 1040 1065 347 1012 1066 348 1012 1066 348 1034 1067 349 968 1068 350 947 1063 345 946 1060 342 964 1059 341 1034 1067 349 1012 1066 348 1012 1066 348 1040 1065 347 1066 1061 343 946 1060 342 948 1069 351 975 1070 352 1039 1071 353 1013 1072 354 1013 1072 354 1036 1073 355 971 1074 356 948 1069 351 947 1063 345 968 1068 350 1036 1073 355 1013 1072 354 1013 1072 354 1039 1071 353 976 1064 346 947 1063 345 949 1075 357 973 1076 358 1038 1077 359 1014 1078 360 1014 1078 360 1035 1079 361 967 1080 362 949 1075 357 948 1069 351 971 1074 356 1035 1079 361 1014 1078 360 1014 1078 360 1038 1077 359 975 1070 352 948 1069 351 950 1081 363 974 1082 364 1037 1083 365 1015 1084 366 1015 1084 366 1033 1085 367 963 1086 368 950 1081 363 949 1075 357 967 1080 362 1033 1085 367 1015 1084 366 1015 1084 366 1037 1083 365 973 1076 358 949 1075 357 942 1036 318 981 1038 320 1045 1087 369 1016 1088 370 1016 1088 370 1031 1089 371 958 1037 319 942 1036 318 950 1081 363 963 1086 368 1031 1089 371 1016 1088 370 1016 1088 370 1045 1087 369 974 1082 364 950 1081 363 1044 1032 314 1038 1077 359 973 1076 358 981 1038 320 986 1090 1719 1048 1091 1720 1907 1092 1721 1906 1093 1722 923 1094 1723 1017 1095 1724 1907 1092 1721 1908 1096 1725 990 1097 1726 1050 1098 1727 1911 1099 1728 1913 1100 1729 925 1101 1730 1018 1102 1731 1911 1099 1728 1909 1103 1732 909 1104 1733 1051 1105 1734 1905 1106 1735 1909 1103 1732 951 1107 1736 1019 1108 1737 1905 1106 1735 1906 1093 1722 908 1109 1738 1052 1110 1739 1910 1111 1740 1908 1096 1725 924 1112 1741 1020 1113 1742 1910 1111 1740 1912 1114 1743 910 1115 1744 1053 1116 1745 1914 1117 1746 1912 1114 1743 926 1118 1747 1021 1119 1748 1914 1117 1746 1916 1120 1749 927 1121 1750 1022 1122 1751 1918 1123 1752 1920 1124 1753 982 1125 1754 1046 1126 1755 1918 1123 1752 1916 1120 1749 984 1127 1756 1047 1128 1757 1922 1129 1758 1920 1124 1753 929 1130 1759 1023 1131 1760 1922 1129 1758 1924 1132 1761 911 1133 1762 1054 1134 1763 1923 1135 1764 1924 1132 1761 930 1136 1765 1024 1137 1766 1923 1135 1764 1921 1138 1767 988 1139 1768 1049 1140 1769 1919 1141 1770 1921 1138 1767 928 1142 1771 1025 1143 1772 1919 1141 1770 1917 1144 1773 912 1145 1774 1055 1146 1775 1915 1147 1776 1917 1144 1773 952 1148 1777 1026 1149 1778 1915 1147 1776 1913 1100 1729 953 1050 332 1027 1049 331 954 1150 969 914 1151 963 954 1152 969 1027 1049 331 955 1044 326 913 1153 967 956 1035 317 1028 1034 316 957 1154 968 916 1155 965 957 1156 968 1028 1034 316 958 1037 319 915 1157 962 955 1044 326 1029 1043 325 959 1158 966 913 1159 967 959 1160 966 1029 1043 325 956 1035 317 916 1161 965 960 1056 338 1030 1055 337 961 1162 964 917 1163 959 961 1164 964 1030 1055 337 953 1050 332 914 1165 963 958 1037 319 1031 1089 371 962 1166 961 915 1167 962 962 1168 961 1031 1089 371 963 1086 368 918 1169 958 964 1059 341 1032 1058 340 965 1170 960 919 1171 955 965 1172 960 1032 1058 340 960 1056 338 917 1173 959 963 1086 368 1033 1085 367 966 1174 957 918 1175 958 966 1176 957 1033 1085 367 967 1080 362 920 1177 954 968 1068 350 1034 1067 349 969 1178 956 921 1179 950 969 1180 956 1034 1067 349 964 1059 341 919 1181 955 967 1080 362 1035 1079 361 970 1182 953 920 1183 954 970 1184 953 1035 1079 361 971 1074 356 922 1185 952 971 1074 356 1036 1073 355 972 1186 951 922 1187 952 972 1188 951 1036 1073 355 968 1068 350 921 1189 950 914 1190 1779 954 1191 1780 1020 1113 1742 924 1112 1741 923 1094 1723 1020 1113 1742 954 1192 1780 913 1193 1781 916 1194 1782 957 1195 1783 1019 1108 1737 951 1107 1736 925 1101 1730 1019 1108 1737 957 1196 1783 915 1197 1784 923 1094 1723 913 1198 1781 959 1199 1785 1017 1095 1724 916 1200 1782 951 1107 1736 1017 1095 1724 959 1201 1785 917 1202 1786 961 1203 1787 1021 1119 1748 926 1118 1747 914 1204 1779 924 1112 1741 1021 1119 1748 961 1205 1787 925 1101 1730 915 1206 1784 962 1207 1788 1018 1102 1731 952 1148 1777 1018 1102 1731 962 1208 1788 918 1209 1789 919 1210 1790 965 1211 1791 1022 1122 1751 927 1121 1750 917 1212 1786 926 1118 1747 1022 1122 1751 965 1213 1791 952 1148 1777 918 1214 1789 966 1215 1792 1026 1149 1778 928 1142 1771 1026 1149 1778 966 1216 1792 920 1217 1793 921 1218 1794 969 1219 1795 1023 1131 1760 929 1130 1759 919 1220 1790 927 1121 1750 1023 1131 1760 969 1221 1795 928 1142 1771 920 1222 1793 970 1223 1796 1025 1143 1772 930 1136 1765 1025 1143 1772 970 1224 1796 922 1225 1797 930 1136 1765 922 1226 1797 972 1227 1798 1024 1137 1766 921 1228 1794 929 1130 1759 1024 1137 1766 972 1229 1798 984 1127 1756 1046 1126 1755 996 1230 1799 932 1231 1800 996 1230 1799 1046 1126 1755 982 1125 1754 931 1232 1801 911 1133 1762 1047 1128 1757 983 1233 1802 933 1234 1803 983 1233 1802 1047 1128 1757 984 1127 1756 932 1231 1800 908 1109 1738 1048 1091 1720 985 1235 1804 935 1236 1805 985 1235 1804 1048 1091 1720 986 1090 1719 934 1237 1806 912 1145 1774 1049 1140 1769 987 1238 1807 937 1239 1808 987 1238 1807 1049 1140 1769 988 1139 1768 936 1240 1809 909 1104 1733 1050 1098 1727 989 1241 1810 939 1242 1811 989 1241 1810 1050 1098 1727 990 1097 1726 938 1243 1812 986 1090 1719 1051 1105 1734 991 1244 1813 934 1237 1806 991 1244 1813 1051 1105 1734 909 1104 1733 939 1242 1811 910 1115 1744 1052 1110 1739 992 1245 1814 940 1246 1815 992 1245 1814 1052 1110 1739 908 1109 1738 935 1236 1805 982 1125 1754 1053 1116 1745 993 1247 1816 931 1232 1801 993 1247 1816 1053 1116 1745 910 1115 1744 940 1246 1815 988 1139 1768 1054 1134 1763 994 1248 1817 936 1240 1809 994 1248 1817 1054 1134 1763 911 1133 1762 933 1234 1803 990 1097 1726 1055 1146 1775 995 1249 1818 938 1243 1812 995 1249 1818 1055 1146 1775 912 1145 1774 937 1239 1808 996 1230 1799 1056 1250 1819 997 1251 1820 932 1231 1800 998 1252 1821 1056 1250 1819 996 1230 1799 931 1232 1801 983 1233 1802 1057 1253 1822 999 1254 1823 933 1234 1803 997 1251 1820 1057 1253 1822 983 1233 1802 932 1231 1800 985 1235 1804 1058 1255 1824 1000 1256 1825 935 1236 1805 1001 1257 1826 1058 1255 1824 985 1235 1804 934 1237 1806 987 1238 1807 1059 1258 1827 1002 1259 1828 937 1239 1808 1003 1260 1829 1059 1258 1827 987 1238 1807 936 1240 1809 989 1241 1810 1060 1261 1830 1004 1262 1831 939 1242 1811 1005 1263 1832 1060 1261 1830 989 1241 1810 938 1243 1812 991 1244 1813 1061 1264 1833 1001 1257 1826 934 1237 1806 1004 1262 1831 1061 1264 1833 991 1244 1813 939 1242 1811 992 1245 1814 1062 1265 1834 1006 1266 1835 940 1246 1815 1000 1256 1825 1062 1265 1834 992 1245 1814 935 1236 1805 993 1247 1816 1063 1267 1836 998 1252 1821 931 1232 1801 1006 1266 1835 1063 1267 1836 993 1247 1816 940 1246 1815 994 1248 1817 1064 1268 1837 1003 1260 1829 936 1240 1809 999 1254 1823 1064 1268 1837 994 1248 1817 933 1234 1803 995 1249 1818 1065 1269 1838 1005 1263 1832 938 1243 1812 1002 1259 1828 1065 1269 1838 995 1249 1818 937 1239 1808 973 1076 358 1037 1083 365 974 1082 364 1045 1087 369 981 1038 320 980 1031 313 1043 1041 323 1039 1071 353 975 1070 352 1044 1032 314 980 1031 313 975 1070 352 1038 1077 359 1043 1041 323 979 1040 322 976 1064 346 1039 1071 353 978 1046 328 1041 1053 335 977 1052 334 1067 1062 344 1066 1061 343 979 1040 322 1042 1047 329 1040 1065 347 976 1064 346 1011 1057 339 1067 1062 344 977 1052 334 945 1051 333 978 1046 328 1066 1061 343 1040 1065 347 1042 1047 329 997 1251 1820 1056 1250 1819 904 1270 1839 903 1271 1840 1056 1250 1819 998 1252 1821 1313 1013 1702 904 1270 1839 999 1254 1823 1057 1253 1822 902 1272 1841 901 1273 1842 1000 1256 1825 1058 1255 1824 863 981 1670 864 982 1671 1058 1255 1824 1001 1257 1826 853 971 1660 863 981 1670 1002 1259 1828 1059 1258 1827 887 1005 1694 880 998 1687 1059 1258 1827 1003 1260 1829 894 1012 1701 887 1005 1694 1004 1262 1831 1060 1261 1830 862 980 1669 851 969 1658 1060 1261 1830 1005 1263 1832 870 988 1677 862 980 1669 1001 1257 1826 1061 1264 1833 852 970 1659 853 971 1660 1061 1264 1833 1004 1262 1831 851 969 1658 852 970 1659 1006 1266 1835 1062 1265 1834 874 993 1682 881 1000 1689 1062 1265 1834 1000 1256 1825 864 982 1671 874 993 1682 1063 1267 1836 1006 1266 1835 881 1000 1689 888 1007 1696 1003 1260 1829 1064 1268 1837 900 1024 1713 894 1012 1701 1064 1268 1837 999 1254 1823 901 1273 1842 900 1024 1713 1005 1263 1832 1065 1269 1838 873 991 1680 870 988 1677 1065 1269 1838 1002 1259 1828 880 998 1687 873 991 1680 1057 1253 1822 997 1251 1820 903 1271 1840 902 1272 1841 870 988 1677 861 979 1668 862 980 1669 862 980 1669 850 968 1657 851 969 1658 1063 1267 1836 888 1007 1696 1313 1013 1702 998 1252 1821 1116 1274 372 1237 1275 373 1117 1276 374 1151 1277 375 1237 1275 373 1152 1278 376 1117 1276 374 1153 1279 377 1238 1280 378 1092 1281 379 1070 1282 380 1308 1283 381 1238 1280 378 1153 1279 377 1309 1284 382 1153 1279 377 1239 1285 383 1310 1286 384 1309 1284 382 1110 1287 385 1287 1288 386 1239 1285 383 1093 1289 387 1093 1289 387 1239 1285 383 1153 1279 377 1070 1282 380 1219 1290 388 1118 1291 389 1154 1292 390 1297 1293 391 1113 1294 392 1115 1295 393 1297 1293 391 1154 1292 390 1120 1296 394 1112 1297 395 1150 1298 396 1155 1299 397 1071 1300 398 1155 1299 397 1150 1301 396 1069 1302 399 1154 1292 390 1240 1303 400 1156 1304 401 1113 1305 392 1156 1306 401 1240 1303 400 1277 1307 402 1114 1308 403 1277 1307 402 1240 1303 400 1157 1309 404 1222 1310 405 1157 1309 404 1240 1303 400 1154 1292 390 1118 1291 389 1218 1311 406 1121 1312 407 1158 1313 408 1274 1314 409 1219 1290 388 1274 1314 409 1158 1313 408 1118 1291 389 1159 1315 410 1241 1316 411 1160 1317 412 1123 1318 413 1160 1317 412 1241 1316 411 1245 1319 414 1124 1320 415 1245 1319 414 1241 1316 411 1161 1321 416 1161 1321 416 1241 1316 411 1159 1315 410 1122 1322 417 1162 1323 418 1242 1324 419 1119 1325 420 1120 1296 394 1220 1326 421 1242 1324 419 1162 1323 418 1125 1327 422 1162 1323 418 1243 1328 423 1163 1329 424 1125 1327 422 1163 1329 424 1243 1328 423 1094 1330 425 1072 1331 426 1094 1330 425 1243 1328 423 1155 1299 397 1071 1300 398 1155 1299 397 1243 1328 423 1162 1323 418 1120 1296 394 1278 1332 427 1244 1333 428 1164 1334 429 1223 1335 430 1164 1334 429 1244 1333 428 1158 1313 408 1121 1312 407 1158 1313 408 1244 1333 428 1157 1309 404 1118 1291 389 1157 1309 404 1244 1333 428 1278 1332 427 1222 1310 405 1124 1320 415 1245 1319 414 1165 1336 431 1126 1337 432 1165 1336 431 1245 1319 414 1166 1338 433 1208 1339 434 1129 1340 435 1167 1341 436 1128 1342 437 1167 1341 436 1129 1340 435 1296 1343 438 1209 1344 439 1168 1345 440 1246 1346 441 1095 1347 442 1073 1348 443 1095 1347 442 1246 1346 441 1266 1349 444 1074 1350 445 1266 1349 444 1246 1346 441 1167 1341 436 1209 1344 439 1167 1341 436 1246 1346 441 1168 1345 440 1128 1342 437 1228 1351 446 1247 1352 447 1170 1353 448 1131 1354 449 1170 1353 448 1247 1352 447 1169 1355 450 1130 1356 451 1171 1357 452 1248 1358 453 1172 1359 454 1132 1360 455 1172 1359 454 1248 1358 453 1237 1275 373 1116 1274 372 1171 1357 452 1301 1361 456 1174 1362 457 1248 1358 453 1237 1275 373 1248 1358 453 1173 1363 458 1152 1278 376 1173 1363 458 1248 1358 453 1174 1362 457 1133 1364 459 1175 1365 460 1249 1366 461 1307 1367 462 1306 1368 463 1307 1367 462 1249 1366 461 1238 1280 378 1308 1283 381 1238 1280 378 1249 1366 461 1096 1369 464 1092 1281 379 1096 1369 464 1249 1366 461 1175 1365 460 1075 1370 465 1218 1311 406 1273 1371 466 1176 1372 467 1121 1312 407 1134 1373 468 1135 1374 469 1176 1372 467 1273 1371 466 1177 1375 470 1250 1376 471 1178 1377 472 1136 1378 473 1178 1377 472 1250 1376 471 1179 1379 474 1137 1380 475 1179 1379 474 1250 1376 471 1171 1357 452 1132 1360 455 1180 1381 476 1251 1382 477 1177 1375 470 1136 1378 473 1181 1383 478 1235 1384 479 1174 1362 457 1301 1361 456 1181 1383 478 1251 1382 477 1182 1385 480 1126 1337 432 1182 1385 480 1251 1382 477 1180 1381 476 1138 1386 481 1183 1387 482 1252 1388 483 1179 1379 474 1132 1360 455 1179 1379 474 1252 1388 483 1184 1389 484 1137 1380 475 1184 1389 484 1252 1388 483 1286 1390 485 1232 1391 486 1286 1390 485 1252 1388 483 1183 1387 482 1233 1392 487 1139 1393 488 1217 1394 489 1272 1395 490 1185 1396 491 1216 1397 492 1140 1398 493 1185 1396 491 1272 1395 490 1186 1399 494 1253 1400 495 1187 1401 496 1142 1402 497 1187 1401 496 1253 1400 495 1188 1403 498 1144 1404 499 1188 1403 498 1253 1400 495 1189 1405 500 1143 1406 501 1189 1405 500 1253 1400 495 1186 1399 494 1141 1407 502 1190 1408 503 1254 1409 504 1191 1410 505 1145 1411 506 1191 1410 505 1254 1409 504 1192 1412 507 1130 1356 451 1192 1412 507 1254 1409 504 1186 1399 494 1142 1402 497 1186 1399 494 1254 1409 504 1190 1408 503 1141 1407 502 1193 1413 508 1255 1414 509 1281 1415 510 1225 1416 511 1281 1415 510 1255 1414 509 1194 1417 512 1226 1418 513 1194 1417 512 1255 1414 509 1185 1396 491 1140 1398 493 1185 1396 491 1255 1414 509 1193 1413 508 1139 1393 488 1195 1419 514 1256 1420 515 1188 1403 498 1143 1406 501 1188 1403 498 1256 1420 515 1196 1421 516 1144 1404 499 1196 1421 516 1256 1420 515 1284 1422 517 1230 1423 518 1284 1422 517 1256 1420 515 1195 1419 514 1231 1424 519 1216 1397 492 1271 1425 520 1194 1417 512 1140 1398 493 1227 1426 521 1226 1418 513 1194 1417 512 1271 1425 520 1197 1427 522 1257 1428 523 1283 1429 524 1229 1430 525 1283 1429 524 1257 1428 523 1196 1421 516 1230 1423 518 1196 1421 516 1257 1428 523 1187 1401 496 1144 1404 499 1187 1401 496 1257 1428 523 1197 1427 522 1142 1402 497 1198 1431 526 1258 1432 527 1220 1326 421 1125 1327 422 1221 1433 528 1258 1432 527 1198 1431 526 1146 1434 529 1200 1435 530 1259 1436 531 1199 1437 532 1147 1438 533 1174 1362 457 1260 1439 534 1201 1440 535 1133 1364 459 1302 1441 536 1304 1442 537 1305 1443 538 1201 1440 535 1198 1431 526 1261 1444 539 1203 1445 540 1146 1434 529 1203 1445 540 1261 1444 539 1097 1446 541 1076 1447 542 1097 1446 541 1261 1444 539 1163 1329 424 1072 1331 426 1163 1329 424 1261 1444 539 1198 1431 526 1125 1327 422 1305 1443 538 1262 1448 543 1175 1365 460 1306 1368 463 1175 1365 460 1262 1448 543 1098 1449 544 1075 1370 465 1098 1449 544 1262 1448 543 1204 1450 545 1077 1451 546 1204 1450 545 1262 1448 543 1305 1443 538 1304 1442 537 1148 1452 547 1276 1453 548 1221 1433 528 1146 1434 529 1199 1437 532 1206 1454 549 1205 1455 550 1147 1438 533 1265 1456 551 1303 1457 552 1304 1442 537 1302 1441 536 1078 1458 553 1263 1459 554 1203 1445 540 1076 1447 542 1203 1445 540 1263 1459 554 1148 1452 547 1146 1434 529 1204 1450 545 1264 1460 555 1099 1461 556 1077 1451 546 1303 1457 552 1264 1460 555 1204 1450 545 1304 1442 537 1206 1454 549 1129 1340 435 1208 1339 434 1205 1455 550 1074 1350 445 1266 1349 444 1263 1459 554 1078 1458 553 1263 1459 554 1266 1349 444 1209 1344 439 1148 1452 547 1279 1462 557 1267 1463 558 1210 1464 559 1224 1465 560 1210 1464 559 1267 1463 558 1176 1372 467 1135 1374 469 1176 1372 467 1267 1463 558 1164 1334 429 1121 1312 407 1164 1334 429 1267 1463 558 1279 1462 557 1223 1335 430 1285 1466 561 1268 1467 562 1184 1389 484 1232 1391 486 1184 1389 484 1268 1467 562 1211 1468 563 1137 1380 475 1211 1468 563 1268 1467 562 1195 1419 514 1143 1406 501 1195 1419 514 1268 1467 562 1285 1466 561 1231 1424 519 1149 1469 564 1269 1470 565 1212 1471 566 1145 1411 506 1212 1471 566 1269 1470 565 1213 1472 567 1138 1386 481 1134 1373 468 1300 1473 568 1214 1474 569 1135 1374 469 1139 1393 488 1214 1474 569 1300 1473 568 1217 1394 489 1215 1475 570 1270 1476 571 1189 1405 500 1141 1407 502 1189 1405 500 1270 1476 571 1211 1468 563 1143 1406 501 1211 1468 563 1270 1476 571 1178 1377 472 1137 1380 475 1178 1377 472 1270 1476 571 1215 1475 570 1136 1378 473 1227 1426 521 1271 1425 520 1247 1352 447 1228 1351 446 1247 1352 447 1271 1425 520 1216 1397 492 1169 1355 450 1216 1397 492 1272 1395 490 1293 1477 572 1169 1355 450 1293 1477 572 1272 1395 490 1217 1394 489 1149 1469 564 1134 1373 468 1273 1371 466 1290 1478 573 1213 1472 567 1290 1478 573 1273 1371 466 1218 1311 406 1124 1320 415 1218 1311 406 1274 1314 409 1160 1317 412 1124 1320 415 1160 1317 412 1274 1314 409 1219 1290 388 1123 1318 413 1115 1479 393 1275 1480 574 1159 1315 410 1123 1318 413 1330 1481 575 1161 1321 416 1122 1322 417 1259 1436 531 1258 1432 527 1221 1433 528 1199 1437 532 1221 1433 528 1276 1453 548 1206 1454 549 1199 1437 532 1276 1453 548 1296 1343 438 1129 1340 435 1206 1454 549 1114 1482 403 1277 1307 402 1100 1483 576 1068 1484 577 1100 1483 576 1277 1307 402 1222 1310 405 1079 1485 578 1222 1310 405 1278 1332 427 1101 1486 579 1079 1485 578 1101 1486 579 1278 1332 427 1223 1335 430 1080 1487 580 1223 1335 430 1279 1462 557 1102 1488 581 1080 1487 580 1102 1488 581 1279 1462 557 1224 1465 560 1081 1489 582 1224 1465 560 1280 1490 583 1103 1491 584 1081 1489 582 1103 1491 584 1280 1490 583 1225 1416 511 1082 1492 585 1225 1416 511 1281 1415 510 1104 1493 586 1082 1492 585 1104 1493 586 1281 1415 510 1226 1418 513 1083 1494 587 1083 1494 587 1226 1418 513 1227 1426 521 1084 1495 588 1084 1495 588 1227 1426 521 1228 1351 446 1085 1496 589 1131 1354 449 1282 1497 590 1105 1498 591 1087 1499 592 1105 1498 591 1282 1497 590 1229 1430 525 1086 1500 593 1106 1501 594 1283 1429 524 1230 1423 518 1088 1502 595 1229 1430 525 1283 1429 524 1106 1501 594 1086 1500 593 1230 1423 518 1284 1422 517 1107 1503 596 1088 1502 595 1107 1503 596 1284 1422 517 1231 1424 519 1089 1504 597 1108 1505 598 1285 1466 561 1232 1391 486 1090 1506 599 1231 1424 519 1285 1466 561 1108 1505 598 1089 1504 597 1232 1391 486 1286 1390 485 1109 1507 600 1090 1506 599 1109 1507 600 1286 1390 485 1233 1392 487 1091 1508 601 1233 1392 487 1287 1288 386 1110 1287 385 1091 1508 601 1168 1345 440 1288 1509 602 1234 1510 603 1128 1342 437 1234 1510 603 1288 1509 602 1264 1460 555 1303 1457 552 1264 1460 555 1288 1509 602 1111 1511 604 1099 1461 556 1111 1511 604 1288 1509 602 1168 1345 440 1073 1348 443 1085 1496 589 1228 1351 446 1131 1354 449 1087 1499 592 1200 1435 530 1289 1512 605 1235 1384 479 1127 1513 606 1235 1384 479 1289 1512 605 1260 1439 534 1174 1362 457 1260 1439 534 1289 1512 605 1236 1514 607 1202 1515 608 1236 1514 607 1289 1512 605 1200 1435 530 1147 1438 533 1213 1472 567 1290 1478 573 1182 1385 480 1138 1386 481 1126 1337 432 1182 1385 480 1290 1478 573 1124 1320 415 1205 1455 550 1291 1516 609 1236 1514 607 1147 1438 533 1236 1514 607 1291 1516 609 1207 1517 610 1202 1515 608 1215 1475 570 1292 1518 611 1180 1381 476 1136 1378 473 1180 1381 476 1292 1518 611 1212 1471 566 1138 1386 481 1212 1471 566 1292 1518 611 1190 1408 503 1145 1411 506 1190 1408 503 1292 1518 611 1215 1475 570 1141 1407 502 1208 1339 434 1294 1519 612 1291 1516 609 1205 1455 550 1291 1516 609 1294 1519 612 1265 1456 551 1207 1517 610 1169 1355 450 1293 1477 572 1191 1410 505 1130 1356 451 1191 1410 505 1293 1477 572 1149 1469 564 1145 1411 506 1234 1510 603 1294 1519 612 1208 1339 434 1128 1342 437 1282 1497 590 1295 1520 613 1197 1427 522 1229 1430 525 1197 1427 522 1295 1520 613 1192 1412 507 1142 1402 497 1192 1412 507 1295 1520 613 1170 1353 448 1130 1356 451 1170 1353 448 1295 1520 613 1282 1497 590 1131 1354 449 1209 1344 439 1296 1343 438 1276 1453 548 1148 1452 547 1219 1290 388 1297 1293 391 1115 1521 393 1123 1318 413 1235 1384 479 1181 1383 478 1126 1337 432 1165 1336 431 1127 1513 606 1183 1387 482 1298 1522 614 1287 1288 386 1233 1392 487 1287 1288 386 1298 1522 614 1239 1285 383 1239 1285 383 1298 1522 614 1310 1286 384 1172 1359 454 1298 1522 614 1183 1387 482 1132 1360 455 1210 1464 559 1299 1523 615 1280 1490 583 1224 1465 560 1280 1490 583 1299 1523 615 1193 1413 508 1225 1416 511 1193 1413 508 1299 1523 615 1214 1474 569 1139 1393 488 1214 1474 569 1299 1523 615 1210 1464 559 1135 1374 469 1217 1394 489 1300 1473 568 1269 1470 565 1149 1469 564 1269 1470 565 1300 1473 568 1134 1373 468 1213 1472 567 1301 1361 456 1177 1375 470 1251 1382 477 1181 1383 478 1171 1357 452 1250 1376 471 1177 1375 470 1301 1361 456 1202 1515 608 1207 1517 610 1265 1456 551 1302 1441 536 1201 1440 535 1260 1439 534 1202 1515 608 1302 1441 536 1265 1456 551 1294 1519 612 1234 1510 603 1303 1457 552 1201 1440 535 1305 1443 538 1306 1368 463 1133 1364 459 1307 1367 462 1173 1363 458 1133 1364 459 1306 1368 463 1173 1363 458 1307 1367 462 1308 1283 381 1152 1278 376 1152 1278 376 1308 1283 381 1309 1284 382 1117 1276 374 1310 1286 384 1116 1274 372 1117 1276 374 1309 1284 382 1298 1522 614 1172 1359 454 1116 1274 372 1310 1286 384 1068 1524 1843 1319 1525 1844 1318 1526 1845 1114 1527 1846 902 1272 1841 1321 1528 1847 1318 1526 1845 906 1027 1716 902 1272 1841 906 1027 1716 1311 1026 1715 901 1273 1842 1311 1026 1715 899 1022 1711 900 1024 1713 901 1273 1842 898 1023 1712 899 1022 1711 1311 1026 1715 1312 1025 1714 1113 1529 1848 1322 1530 1849 1323 1531 1850 1115 1532 1851 1313 1013 1702 1324 1533 1852 1323 1531 1850 904 1270 1839 1316 1534 1853 1325 1535 1854 1326 1536 1855 1317 1537 1856 1315 1538 1857 1320 1539 1858 1332 1540 1859 897 1018 1707 903 1271 1840 1322 1530 1849 1321 1528 1847 902 1272 1841 895 1014 1703 1325 1535 1854 1324 1533 1852 1313 1013 1702 1159 1315 410 1275 1541 574 1316 1542 616 1122 1322 417 1120 1296 394 1119 1325 420 1317 1543 617 1112 1544 395 1314 1016 1705 1327 1545 1860 1326 1536 1855 896 1015 1704 1317 1546 617 1119 1325 420 1122 1322 417 1316 1547 616 906 1027 1716 1318 1526 1845 1319 1525 1844 905 1028 1717 1150 1548 1861 1332 1540 1859 1320 1539 1858 1069 1549 1862 1114 1550 1846 1318 1526 1845 1321 1528 1847 1156 1551 1863 1156 1552 1863 1321 1528 1847 1322 1530 1849 1113 1553 1848 904 1270 1839 1323 1531 1850 1322 1530 1849 903 1271 1840 1115 1554 1851 1323 1531 1850 1324 1533 1852 1275 1555 1864 1275 1556 1864 1324 1533 1852 1325 1535 1854 1316 1557 1853 896 1015 1704 1326 1536 1855 1325 1535 1854 895 1014 1703 1317 1558 1856 1326 1536 1855 1327 1545 1860 1112 1559 1865 1112 1560 1865 1327 1545 1860 1332 1540 1859 1150 1561 1861 1328 1562 618 1259 1436 531 1200 1435 530 1127 1513 606 1220 1326 421 1258 1432 527 1259 1436 531 1328 1562 618 1329 1563 619 1242 1324 419 1220 1326 421 1328 1562 618 1166 1338 433 1328 1562 618 1127 1513 606 1165 1336 431 1330 1481 575 1329 1563 619 1328 1562 618 1166 1338 433 1119 1325 420 1329 1563 619 1330 1481 575 1122 1322 417 1119 1325 420 1242 1324 419 1329 1563 619 1161 1321 416 1330 1481 575 1166 1338 433 1245 1319 414 1314 1016 1705 897 1018 1707 1332 1540 1859 1327 1545 1860 720 830 1519 721 832 1521 1333 849 1538 734 848 1537 734 848 1537 1333 849 1538 1334 863 1552 747 862 1551 747 862 1551 1334 863 1552 1335 877 1566 760 876 1565 760 876 1565 1335 877 1566 1336 891 1580 773 890 1579 773 890 1579 1336 891 1580 2 361 1172 786 904 1593 786 904 1593 2 361 1172 86 364 1175 798 916 1605 884 1002 1691 320 1020 1709 1337 1017 1706 891 1009 1698 696 807 1496 709 810 1499 1349 1564 1866 1338 1565 1867 1338 1565 1867 1349 1564 1866 1350 1566 1868 1339 1567 1869 1339 1567 1869 1350 1566 1868 1351 1568 1870 1340 1569 1871 1340 1569 1871 1351 1568 1870 1352 1570 1872 1341 1571 1873 1341 1571 1873 1352 1570 1872 1353 1572 1874 1342 1573 1875 1342 1573 1875 1353 1572 1874 1354 1574 1876 1343 1575 1877 1343 1575 1877 1354 1574 1876 1355 1576 1878 1344 1577 1879 1344 1577 1879 1355 1576 1878 1356 1578 1880 1345 1579 1881 1345 1579 1881 1356 1578 1880 1357 1580 1882 1346 1581 1883 1346 1581 1883 1357 1580 1882 1358 1582 1884 1347 1583 1885 1347 1583 1885 1358 1582 1884 1359 1584 1886 1348 1585 1887 1348 1585 1887 1359 1584 1886 1360 1586 1888 1897 1587 1889 1897 1587 1889 1360 1586 1888 1972 1588 1890 1973 1589 1891 709 810 1499 723 838 1527 1361 1590 1892 1349 1564 1866 1349 1564 1866 1361 1590 1892 1362 1591 1893 1350 1566 1868 1350 1566 1868 1362 1591 1893 1363 1592 1894 1351 1568 1870 1351 1568 1870 1363 1592 1894 1364 1593 1895 1352 1570 1872 1352 1570 1872 1364 1593 1895 1365 1594 1896 1353 1572 1874 1353 1572 1874 1365 1594 1896 1366 1595 1897 1354 1574 1876 1354 1574 1876 1366 1595 1897 1367 1596 1898 1355 1576 1878 1355 1576 1878 1367 1596 1898 1368 1597 1899 1356 1578 1880 1356 1578 1880 1368 1597 1899 1369 1598 1900 1357 1580 1882 1357 1580 1882 1369 1598 1900 1370 1599 1901 1358 1582 1884 1358 1582 1884 1370 1599 1901 1371 1600 1902 1359 1584 1886 1360 1586 1888 1899 1601 1903 1975 1602 1904 1972 1588 1890 723 838 1527 736 852 1541 1372 1603 1905 1361 1590 1892 1361 1590 1892 1372 1603 1905 1373 1604 1906 1362 1591 1893 1362 1591 1893 1373 1604 1906 1374 1605 1907 1363 1592 1894 1363 1592 1894 1374 1605 1907 1375 1606 1908 1364 1593 1895 1364 1593 1895 1375 1606 1908 1376 1607 1909 1365 1594 1896 1365 1594 1896 1376 1607 1909 1377 1608 1910 1366 1595 1897 1366 1595 1897 1377 1608 1910 1378 1609 1911 1367 1596 1898 1367 1596 1898 1378 1609 1911 1379 1610 1912 1368 1597 1899 1368 1597 1899 1379 1610 1912 1380 1611 1913 1369 1598 1900 1369 1598 1900 1380 1611 1913 1381 1612 1914 1370 1599 1901 1370 1599 1901 1381 1612 1914 1382 1613 1915 1371 1600 1902 1899 1601 1903 1900 1614 1916 1976 1615 1917 1975 1602 1904 736 852 1541 749 866 1555 1383 1616 1918 1372 1603 1905 1372 1603 1905 1383 1616 1918 1384 1617 1919 1373 1604 1906 1373 1604 1906 1384 1617 1919 1385 1618 1920 1374 1605 1907 1374 1605 1907 1385 1618 1920 1386 1619 1921 1375 1606 1908 1375 1606 1908 1386 1619 1921 1387 1620 1922 1376 1607 1909 1376 1607 1909 1387 1620 1922 1388 1621 1923 1377 1608 1910 1377 1608 1910 1388 1621 1923 1389 1622 1924 1378 1609 1911 1378 1609 1911 1389 1622 1924 1390 1623 1925 1379 1610 1912 1379 1610 1912 1390 1623 1925 1391 1624 1926 1380 1611 1913 1380 1611 1913 1391 1624 1926 1392 1625 1927 1381 1612 1914 1381 1612 1914 1392 1625 1927 1393 1626 1928 1382 1613 1915 1900 1614 1916 1901 1627 1929 1977 1628 1930 1976 1615 1917 749 866 1555 762 880 1569 1394 1629 1931 1383 1616 1918 1383 1616 1918 1394 1629 1931 1395 1630 1932 1384 1617 1919 1384 1617 1919 1395 1630 1932 1396 1631 1933 1385 1618 1920 1385 1618 1920 1396 1631 1933 1397 1632 1934 1386 1619 1921 1386 1619 1921 1397 1632 1934 1398 1633 1935 1387 1620 1922 1387 1620 1922 1398 1633 1935 1399 1634 1936 1388 1621 1923 1388 1621 1923 1399 1634 1936 1400 1635 1937 1389 1622 1924 1389 1622 1924 1400 1635 1937 1401 1636 1938 1390 1623 1925 1390 1623 1925 1401 1636 1938 1402 1637 1939 1391 1624 1926 1391 1624 1926 1402 1637 1939 1403 1638 1940 1392 1625 1927 1392 1625 1927 1403 1638 1940 1404 1639 1941 1393 1626 1928 1901 1627 1929 1902 1640 1942 1974 1641 1943 1977 1628 1930 762 880 1569 775 894 1583 1405 1642 1944 1394 1629 1931 1394 1629 1931 1405 1642 1944 1406 1643 1945 1395 1630 1932 1395 1630 1932 1406 1643 1945 1407 1644 1946 1396 1631 1933 1396 1631 1933 1407 1644 1946 1408 1645 1947 1397 1632 1934 1397 1632 1934 1408 1645 1947 1409 1646 1948 1398 1633 1935 1398 1633 1935 1409 1646 1948 1410 1647 1949 1399 1634 1936 1399 1634 1936 1410 1647 1949 1411 1648 1950 1400 1635 1937 1400 1635 1937 1411 1648 1950 1412 1649 1951 1401 1636 1938 1401 1636 1938 1412 1649 1951 1413 1650 1952 1402 1637 1939 1402 1637 1939 1413 1650 1952 1414 1651 1953 1403 1638 1940 1403 1638 1940 1414 1651 1953 1415 1652 1954 1404 1639 1941 2043 435 1231 2044 1653 1955 1974 1641 1943 434 436 1232 775 894 1583 787 906 1595 1416 1654 1956 1405 1642 1944 1405 1642 1944 1416 1654 1956 1417 1655 1957 1406 1643 1945 1406 1643 1945 1417 1655 1957 1418 1656 1958 1407 1644 1946 1407 1644 1946 1418 1656 1958 1419 1657 1959 1408 1645 1947 1408 1645 1947 1419 1657 1959 1420 1658 1960 1409 1646 1948 1409 1646 1948 1420 1658 1960 1421 1659 1961 1410 1647 1949 1410 1647 1949 1421 1659 1961 1422 1660 1962 1411 1648 1950 1411 1648 1950 1422 1660 1962 1423 1661 1963 1412 1649 1951 1412 1649 1951 1423 1661 1963 1424 1662 1964 1413 1650 1952 1413 1650 1952 1424 1662 1964 1425 1663 1965 1414 1651 1953 1414 1651 1953 1425 1663 1965 1426 1664 1966 1415 1652 1954 787 906 1595 799 918 1607 1427 1665 1967 1416 1654 1956 1416 1654 1956 1427 1665 1967 1428 1666 1968 1417 1655 1957 1417 1655 1957 1428 1666 1968 1429 1667 1969 1418 1656 1958 1418 1656 1958 1429 1667 1969 1430 1668 1970 1419 1657 1959 1419 1657 1959 1430 1668 1970 1431 1669 1971 1420 1658 1960 1420 1658 1960 1431 1669 1971 1432 1670 1972 1421 1659 1961 1421 1659 1961 1432 1670 1972 1433 1671 1973 1422 1660 1962 1422 1660 1962 1433 1671 1973 1434 1672 1974 1423 1661 1963 1423 1661 1963 1434 1672 1974 1435 1673 1975 1424 1662 1964 1424 1662 1964 1435 1673 1975 1436 1674 1976 1425 1663 1965 1425 1663 1965 1436 1674 1976 1437 1675 1977 1426 1664 1966 799 918 1607 811 930 1619 1438 1676 1978 1427 1665 1967 1427 1665 1967 1438 1676 1978 1439 1677 1979 1428 1666 1968 1428 1666 1968 1439 1677 1979 1440 1678 1980 1429 1667 1969 1429 1667 1969 1440 1678 1980 1441 1679 1981 1430 1668 1970 1430 1668 1970 1441 1679 1981 1442 1680 1982 1431 1669 1971 1431 1669 1971 1442 1680 1982 1443 1681 1983 1432 1670 1972 1432 1670 1972 1443 1681 1983 1444 1682 1984 1433 1671 1973 1433 1671 1973 1444 1682 1984 1445 1683 1985 1434 1672 1974 1434 1672 1974 1445 1683 1985 1446 1684 1986 1435 1673 1975 1435 1673 1975 1446 1684 1986 1447 1685 1987 1436 1674 1976 1436 1674 1976 1447 1685 1987 1448 1686 1988 1437 1675 1977 811 930 1619 823 942 1631 1449 1687 1989 1438 1676 1978 1438 1676 1978 1449 1687 1989 1450 1688 1990 1439 1677 1979 1439 1677 1979 1450 1688 1990 1451 1689 1991 1440 1678 1980 1440 1678 1980 1451 1689 1991 1452 1690 1992 1441 1679 1981 1441 1679 1981 1452 1690 1992 1453 1691 1993 1442 1680 1982 1442 1680 1982 1453 1691 1993 1454 1692 1994 1443 1681 1983 1443 1681 1983 1454 1692 1994 1455 1693 1995 1444 1682 1984 1444 1682 1984 1455 1693 1995 1456 1694 1996 1445 1683 1985 1445 1683 1985 1456 1694 1996 1457 1695 1997 1446 1684 1986 1446 1684 1986 1457 1695 1997 1458 1696 1998 1447 1685 1987 1447 1685 1987 1458 1696 1998 1459 1697 1999 1448 1686 1988 823 942 1631 846 954 1643 1460 1698 2000 1449 1687 1989 1449 1687 1989 1460 1698 2000 1461 1699 2001 1450 1688 1990 1450 1688 1990 1461 1699 2001 1462 1700 2002 1451 1689 1991 1451 1689 1991 1462 1700 2002 1463 1701 2003 1452 1690 1992 1452 1690 1992 1463 1701 2003 1464 1702 2004 1453 1691 1993 1453 1691 1993 1464 1702 2004 1465 1703 2005 1454 1692 1994 1454 1692 1994 1465 1703 2005 1466 1704 2006 1455 1693 1995 1455 1693 1995 1466 1704 2006 1467 1705 2007 1456 1694 1996 1456 1694 1996 1467 1705 2007 1468 1706 2008 1457 1695 1997 1457 1695 1997 1468 1706 2008 1469 1707 2009 1458 1696 1998 1458 1696 1998 1469 1707 2009 1470 1708 2010 1459 1697 1999 846 954 1643 847 966 1655 1471 1709 2011 1460 1698 2000 1460 1698 2000 1471 1709 2011 1472 1710 2012 1461 1699 2001 1461 1699 2001 1472 1710 2012 1473 1711 2013 1462 1700 2002 1462 1700 2002 1473 1711 2013 1474 1712 2014 1463 1701 2003 1463 1701 2003 1474 1712 2014 1475 1713 2015 1464 1702 2004 1464 1702 2004 1475 1713 2015 1476 1714 2016 1465 1703 2005 1465 1703 2005 1476 1714 2016 1477 1715 2017 1466 1704 2006 1466 1704 2006 1477 1715 2017 1478 1716 2018 1467 1705 2007 1467 1705 2007 1478 1716 2018 1479 1717 2019 1468 1706 2008 1468 1706 2008 1479 1717 2019 1480 1718 2020 1469 1707 2009 1469 1707 2009 1480 1718 2020 1481 1719 2021 1470 1708 2010 847 966 1655 859 978 1667 1482 1720 2022 1471 1709 2011 1471 1709 2011 1482 1720 2022 1483 1721 2023 1472 1710 2012 1472 1710 2012 1483 1721 2023 1484 1722 2024 1473 1711 2013 1476 1714 2016 1485 1723 2025 1477 1715 2017 1477 1715 2017 1485 1723 2025 1488 1724 2026 1478 1716 2018 1478 1716 2018 1488 1724 2026 1489 1725 2027 1479 1717 2019 1479 1717 2019 1489 1725 2027 1490 1726 2028 1480 1718 2020 1480 1718 2020 1490 1726 2028 1491 1727 2029 1481 1719 2021 859 978 1667 868 987 1676 1486 1728 2030 1482 1720 2022 1482 1720 2022 1486 1728 2030 1487 1729 2031 1483 1721 2023 868 987 1676 871 990 1679 1492 1730 2032 1486 1728 2030 1486 1728 2030 1492 1730 2032 1493 1731 2033 1487 1729 2031 1495 1732 2034 1489 1725 2027 1488 1724 2026 1494 1733 2035 1489 1725 2027 1495 1732 2034 1496 1734 2036 1490 1726 2028 1490 1726 2028 1496 1734 2036 1497 1735 2037 1491 1727 2029 871 990 1679 878 997 1686 1498 1736 2038 1492 1730 2032 1492 1730 2032 1498 1736 2038 1499 1737 2039 1493 1731 2033 1501 1738 2040 1495 1732 2034 1494 1733 2035 1500 1739 2041 1495 1732 2034 1501 1738 2040 1502 1740 2042 1496 1734 2036 1496 1734 2036 1502 1740 2042 1503 1741 2043 1497 1735 2037 878 997 1686 885 1004 1693 1504 1742 2044 1498 1736 2038 1498 1736 2038 1504 1742 2044 1505 1743 2045 1499 1737 2039 1507 1744 2046 1501 1738 2040 1500 1739 2041 1506 1745 2047 1501 1738 2040 1507 1744 2046 1508 1746 2048 1502 1740 2042 1502 1740 2042 1508 1746 2048 1509 1747 2049 1503 1741 2043 885 1004 1693 892 1011 1700 1510 1748 2050 1504 1742 2044 1504 1742 2044 1510 1748 2050 1511 1749 2051 1505 1743 2045 1882 1750 2052 1512 1751 2053 1507 1744 2046 1506 1745 2047 1507 1744 2046 1512 1751 2053 1513 1752 2054 1508 1746 2048 1508 1746 2048 1513 1752 2054 1883 1753 2055 1509 1747 2049 1509 1747 2049 1883 1753 2055 1514 1754 2056 1904 1755 2057 1904 1755 2057 1985 1019 1708 1986 1021 1710 1903 1756 2058 892 1011 1700 898 1023 1712 1515 1757 2059 1510 1748 2050 1510 1748 2050 1515 1757 2059 1516 1758 2060 1511 1749 2051 1312 1025 1714 905 1028 1717 1521 1759 2061 1881 1760 2062 1338 1565 1867 907 1029 1718 696 807 1496 1339 1567 1869 907 1029 1718 1338 1565 1867 1340 1569 1871 907 1029 1718 1339 1567 1869 1341 1571 1873 907 1029 1718 1340 1569 1871 1342 1573 1875 907 1029 1718 1341 1571 1873 1343 1575 1877 907 1029 1718 1342 1573 1875 1344 1577 1879 907 1029 1718 1343 1575 1877 1345 1579 1881 907 1029 1718 1344 1577 1879 1346 1581 1883 907 1029 1718 1345 1579 1881 1347 1583 1885 907 1029 1718 1346 1581 1883 1348 1585 1887 907 1029 1718 1347 1583 1885 1348 1585 1887 1897 1587 1889 907 1029 1718 1973 1589 1891 907 1029 1718 1897 1587 1889 1555 1761 692 1621 1762 693 1658 1763 694 1594 1764 695 1621 1762 693 1555 1761 692 1570 1765 696 1642 1766 697 1556 1767 698 1621 1762 693 1642 1766 697 1572 1768 699 1621 1762 693 1556 1767 698 1595 1769 700 1658 1763 694 1557 1770 701 1622 1771 702 1657 1772 703 1593 1773 704 1622 1771 702 1557 1770 701 1569 1774 705 1643 1775 706 1555 1761 692 1622 1771 702 1643 1775 706 1570 1765 696 1622 1771 702 1555 1761 692 1594 1764 695 1657 1772 703 1558 1776 707 1623 1777 708 1656 1778 709 1592 1779 710 1623 1777 708 1558 1776 707 1567 1780 711 1641 1781 712 1557 1770 701 1623 1777 708 1641 1781 712 1569 1774 705 1623 1777 708 1557 1770 701 1593 1773 704 1656 1778 709 1559 1782 713 1624 1783 714 1655 1784 715 1591 1785 716 1624 1783 714 1559 1782 713 1574 1786 717 1644 1787 718 1558 1776 707 1624 1783 714 1644 1787 718 1567 1780 711 1624 1783 714 1558 1776 707 1592 1779 710 1655 1784 715 1625 1788 719 1560 1789 720 1578 1790 721 1646 1791 722 1559 1782 713 1625 1788 719 1646 1791 722 1574 1786 717 1625 1788 719 1681 1792 723 1680 1793 724 1560 1789 720 1561 1794 725 1626 1795 726 1654 1796 727 1590 1797 728 1626 1795 726 1561 1794 725 1582 1798 729 1648 1799 730 1560 1789 720 1626 1795 726 1648 1799 730 1578 1790 721 1626 1795 726 1560 1789 720 1680 1793 724 1654 1796 727 1562 1800 731 1627 1801 732 1653 1802 733 1589 1803 734 1627 1801 732 1562 1800 731 1585 1804 735 1650 1805 736 1561 1794 725 1627 1801 732 1650 1805 736 1582 1798 729 1627 1801 732 1561 1794 725 1590 1797 728 1653 1802 733 1563 1806 737 1628 1807 738 1652 1808 739 1587 1809 740 1628 1807 738 1563 1806 737 1581 1810 741 1649 1811 742 1562 1800 731 1628 1807 738 1649 1811 742 1585 1804 735 1628 1807 738 1562 1800 731 1589 1803 734 1652 1808 739 1564 1812 743 1629 1813 744 1651 1814 745 1588 1815 746 1629 1813 744 1564 1812 743 1577 1816 747 1647 1817 748 1563 1806 737 1629 1813 744 1647 1817 748 1581 1810 741 1629 1813 744 1563 1806 737 1587 1809 740 1651 1814 745 1556 1767 698 1630 1818 749 1659 1819 750 1595 1769 700 1630 1818 749 1556 1767 698 1572 1768 699 1645 1820 752 1564 1812 743 1630 1818 749 1645 1820 752 1577 1816 747 1630 1818 749 1564 1812 743 1588 1815 746 1659 1819 750 1658 1763 694 1595 1769 700 1587 1809 740 1652 1808 739 1662 1821 2063 1600 1822 2064 1927 1823 2065 1926 1824 2066 1631 1825 2067 1537 1826 2068 1925 1827 2069 1926 1824 2066 1664 1828 2070 1604 1829 2071 1934 1830 2072 1932 1831 2073 1632 1832 2074 1539 1833 2075 1930 1834 2076 1932 1831 2073 1665 1835 2077 1523 1836 2078 1930 1834 2076 1928 1837 2079 1633 1838 2080 1565 1839 2081 1927 1823 2065 1928 1837 2079 1666 1840 2082 1522 1841 2083 1925 1827 2069 1929 1842 2084 1634 1843 2085 1538 1844 2086 1931 1845 2087 1929 1842 2084 1667 1846 2088 1524 1847 2089 1931 1845 2087 1933 1848 2090 1635 1849 2091 1540 1850 2092 1935 1851 2093 1933 1848 2090 1636 1852 2094 1541 1853 2095 1939 1854 2096 1937 1855 2097 1660 1856 2098 1596 1857 2099 1935 1851 2093 1937 1855 2097 1661 1858 2100 1598 1859 2101 1939 1854 2096 1941 1860 2102 1637 1861 2103 1543 1862 2104 1943 1863 2105 1941 1860 2102 1668 1864 2106 1525 1865 2107 1943 1863 2105 1944 1866 2108 1638 1867 2109 1544 1868 2110 1942 1869 2111 1944 1866 2108 1663 1870 2112 1602 1871 2113 1942 1869 2111 1940 1872 2114 1639 1873 2115 1542 1874 2116 1938 1875 2117 1940 1872 2114 1669 1876 2118 1526 1877 2119 1938 1875 2117 1936 1878 2120 1640 1879 2121 1566 1880 2122 1934 1830 2072 1936 1878 2120 1567 1780 711 1528 1881 944 1568 1882 949 1641 1781 712 1568 1883 949 1527 1884 947 1569 1774 705 1641 1781 712 1570 1765 696 1530 1885 946 1571 1886 948 1642 1766 697 1571 1887 948 1529 1888 942 1572 1768 699 1642 1766 697 1569 1774 705 1527 1889 947 1573 1890 945 1643 1775 706 1573 1891 945 1530 1892 946 1570 1765 696 1643 1775 706 1574 1786 717 1531 1893 940 1575 1894 943 1644 1787 718 1575 1895 943 1528 1896 944 1567 1780 711 1644 1787 718 1572 1768 699 1529 1897 942 1576 1898 941 1645 1820 752 1576 1899 941 1532 1900 938 1577 1816 747 1645 1820 752 1578 1790 721 1533 1901 936 1579 1902 939 1646 1791 722 1579 1903 939 1531 1904 940 1574 1786 717 1646 1791 722 1577 1816 747 1532 1905 938 1580 1906 937 1647 1817 748 1580 1907 937 1534 1908 934 1581 1810 741 1647 1817 748 1582 1798 729 1535 1909 931 1583 1910 935 1648 1799 730 1583 1911 935 1533 1912 936 1578 1790 721 1648 1799 730 1581 1810 741 1534 1913 934 1584 1914 933 1649 1811 742 1584 1915 933 1536 1916 932 1585 1804 735 1649 1811 742 1585 1804 735 1536 1917 932 1586 1918 930 1650 1805 736 1586 1919 930 1535 1920 931 1582 1798 729 1650 1805 736 1568 1921 2123 1528 1922 2124 1538 1844 2086 1634 1843 2085 1568 1923 2123 1634 1843 2085 1537 1826 2068 1527 1924 2125 1571 1925 2126 1530 1926 2127 1565 1839 2081 1633 1838 2080 1571 1927 2126 1633 1838 2080 1539 1833 2075 1529 1928 2128 1573 1929 2129 1527 1930 2125 1537 1826 2068 1631 1825 2067 1573 1931 2129 1631 1825 2067 1565 1839 2081 1530 1932 2127 1575 1933 2130 1531 1934 2131 1540 1850 2092 1635 1849 2091 1575 1935 2130 1635 1849 2091 1538 1844 2086 1528 1936 2124 1576 1937 2132 1529 1938 2128 1539 1833 2075 1632 1832 2074 1576 1939 2132 1632 1832 2074 1566 1880 2122 1532 1940 2133 1579 1941 2134 1533 1942 2135 1541 1853 2095 1636 1852 2094 1579 1943 2134 1636 1852 2094 1540 1850 2092 1531 1944 2131 1580 1945 2136 1532 1946 2133 1566 1880 2122 1640 1879 2121 1580 1947 2136 1640 1879 2121 1542 1874 2116 1534 1948 2137 1583 1949 2138 1535 1950 2139 1543 1862 2104 1637 1861 2103 1583 1951 2138 1637 1861 2103 1541 1853 2095 1533 1952 2135 1584 1953 2140 1534 1954 2137 1542 1874 2116 1639 1873 2115 1584 1955 2140 1639 1873 2115 1544 1868 2110 1536 1956 2141 1586 1957 2142 1536 1958 2141 1544 1868 2110 1638 1867 2109 1586 1959 2142 1638 1867 2109 1543 1862 2104 1535 1960 2139 1598 1859 2101 1546 1961 2143 1610 1962 2144 1660 1856 2098 1610 1962 2144 1545 1963 2145 1596 1857 2099 1660 1856 2098 1525 1865 2107 1547 1964 2146 1597 1965 2147 1661 1858 2100 1597 1965 2147 1546 1961 2143 1598 1859 2101 1661 1858 2100 1522 1841 2083 1549 1966 2148 1599 1967 2149 1662 1821 2063 1599 1967 2149 1548 1968 2150 1600 1822 2064 1662 1821 2063 1526 1877 2119 1551 1969 2151 1601 1970 2152 1663 1870 2112 1601 1970 2152 1550 1971 2153 1602 1871 2113 1663 1870 2112 1523 1836 2078 1553 1972 2154 1603 1973 2155 1664 1828 2070 1603 1973 2155 1552 1974 2156 1604 1829 2071 1664 1828 2070 1600 1822 2064 1548 1968 2150 1605 1975 2157 1665 1835 2077 1605 1975 2157 1553 1972 2154 1523 1836 2078 1665 1835 2077 1524 1847 2089 1554 1976 2158 1606 1977 2159 1666 1840 2082 1606 1977 2159 1549 1966 2148 1522 1841 2083 1666 1840 2082 1596 1857 2099 1545 1963 2145 1607 1978 2160 1667 1846 2088 1607 1978 2160 1554 1976 2158 1524 1847 2089 1667 1846 2088 1602 1871 2113 1550 1971 2153 1608 1979 2161 1668 1864 2106 1608 1979 2161 1547 1964 2146 1525 1865 2107 1668 1864 2106 1604 1829 2071 1552 1974 2156 1609 1980 2162 1669 1876 2118 1609 1980 2162 1551 1969 2151 1526 1877 2119 1669 1876 2118 1610 1962 2144 1546 1961 2143 1611 1981 2163 1670 1982 2164 1612 1983 2165 1545 1963 2145 1610 1962 2144 1670 1982 2164 1597 1965 2147 1547 1964 2146 1613 1984 2166 1671 1985 2167 1611 1981 2163 1546 1961 2143 1597 1965 2147 1671 1985 2167 1599 1967 2149 1549 1966 2148 1614 1986 2168 1672 1987 2169 1615 1988 2170 1548 1968 2150 1599 1967 2149 1672 1987 2169 1601 1970 2152 1551 1969 2151 1616 1989 2171 1673 1990 2172 1617 1991 2173 1550 1971 2153 1601 1970 2152 1673 1990 2172 1603 1973 2155 1553 1972 2154 1618 1992 2174 1674 1993 2175 1619 1994 2176 1552 1974 2156 1603 1973 2155 1674 1993 2175 1605 1975 2157 1548 1968 2150 1615 1988 2170 1675 1995 2177 1618 1992 2174 1553 1972 2154 1605 1975 2157 1675 1995 2177 1606 1977 2159 1554 1976 2158 1620 1996 2178 1676 1997 2179 1614 1986 2168 1549 1966 2148 1606 1977 2159 1676 1997 2179 1607 1978 2160 1545 1963 2145 1612 1983 2165 1677 1998 2180 1620 1996 2178 1554 1976 2158 1607 1978 2160 1677 1998 2180 1608 1979 2161 1550 1971 2153 1617 1991 2173 1678 1999 2181 1613 1984 2166 1547 1964 2146 1608 1979 2161 1678 1999 2181 1609 1980 2162 1552 1974 2156 1619 1994 2176 1679 2000 2182 1616 1989 2171 1551 1969 2151 1609 1980 2162 1679 2000 2182 1587 1809 740 1595 1769 700 1659 1819 750 1588 1815 746 1651 1814 745 1594 1764 695 1589 1803 734 1653 1802 733 1657 1772 703 1658 1763 694 1652 1808 739 1589 1803 734 1594 1764 695 1657 1772 703 1653 1802 733 1590 1797 728 1593 1773 704 1592 1779 710 1680 1793 724 1681 1792 723 1591 1785 716 1655 1784 715 1593 1773 704 1590 1797 728 1654 1796 727 1656 1778 709 1625 1788 719 1559 1782 713 1591 1785 716 1681 1792 723 1592 1779 710 1656 1778 709 1654 1796 727 1680 1793 724 1611 1981 2163 1519 2001 2183 1520 2002 2184 1670 1982 2164 1670 1982 2164 1520 2002 2184 1882 1750 2052 1612 1983 2165 1613 1984 2166 1517 2003 2185 1518 2004 2186 1671 1985 2167 1614 1986 2168 1488 1724 2026 1485 1723 2025 1672 1987 2169 1672 1987 2169 1485 1723 2025 1476 1714 2016 1615 1988 2170 1616 1989 2171 1499 1737 2039 1505 1743 2045 1673 1990 2172 1673 1990 2172 1505 1743 2045 1511 1749 2051 1617 1991 2173 1618 1992 2174 1474 1712 2014 1484 1722 2024 1674 1993 2175 1674 1993 2175 1484 1722 2024 1487 1729 2031 1619 1994 2176 1615 1988 2170 1476 1714 2016 1475 1713 2015 1675 1995 2177 1675 1995 2177 1475 1713 2015 1474 1712 2014 1618 1992 2174 1620 1996 2178 1500 1739 2041 1494 1733 2035 1676 1997 2179 1676 1997 2179 1494 1733 2035 1488 1724 2026 1614 1986 2168 1677 1998 2180 1506 1745 2047 1500 1739 2041 1620 1996 2178 1617 1991 2173 1511 1749 2051 1516 1758 2060 1678 1999 2181 1678 1999 2181 1516 1758 2060 1517 2003 2185 1613 1984 2166 1619 1994 2176 1487 1729 2031 1493 1731 2033 1679 2000 2182 1679 2000 2182 1493 1731 2033 1499 1737 2039 1616 1989 2171 1671 1985 2167 1518 2004 2186 1519 2001 2183 1611 1981 2163 1487 1729 2031 1484 1722 2024 1483 1721 2023 1484 1722 2024 1474 1712 2014 1473 1711 2013 1677 1998 2180 1612 1983 2165 1882 1750 2052 1506 1745 2047 1807 2005 620 1687 2006 621 1721 2007 622 1721 2007 622 1687 2006 621 1722 2008 623 1807 2005 620 1723 2009 624 1070 1282 380 1092 1281 379 1808 2010 625 1878 2011 626 1879 2012 627 1723 2009 624 1808 2010 625 1723 2009 624 1879 2012 627 1880 2013 628 1809 2014 629 1110 1287 385 1093 1289 387 1809 2014 629 1857 2015 630 1093 1289 387 1070 1282 380 1723 2009 624 1809 2014 629 1789 2016 631 1867 2017 632 1724 2018 633 1688 2019 634 1683 2020 635 1724 2018 633 1867 2017 632 1685 2021 636 1690 2022 637 1725 2023 638 1720 2024 639 1682 2025 640 1071 1300 398 1069 2026 399 1720 2027 639 1725 2023 638 1724 2018 633 1683 2028 635 1726 2029 641 1810 2030 642 1726 2031 641 1684 2032 643 1847 2033 644 1810 2030 642 1847 2033 644 1792 2034 645 1727 2035 646 1810 2030 642 1727 2035 646 1688 2019 634 1724 2018 633 1810 2030 642 1788 2036 647 1844 2037 648 1728 2038 649 1691 2039 650 1789 2016 631 1688 2019 634 1728 2038 649 1844 2037 648 1729 2040 651 1693 2041 652 1730 2042 653 1811 2043 654 1730 2042 653 1694 2044 655 1815 2045 656 1811 2043 654 1815 2045 656 1731 2046 657 1811 2043 654 1731 2046 657 1692 2047 658 1729 2040 651 1811 2043 654 1732 2048 659 1690 2022 637 1689 2049 660 1812 2050 661 1790 2051 662 1695 2052 663 1732 2048 659 1812 2050 661 1732 2048 659 1695 2052 663 1733 2053 664 1813 2054 665 1733 2053 664 1072 1331 426 1094 1330 425 1813 2054 665 1094 1330 425 1071 1300 398 1725 2023 638 1813 2054 665 1725 2023 638 1690 2022 637 1732 2048 659 1813 2054 665 1848 2055 666 1793 2056 667 1734 2057 668 1814 2058 669 1734 2057 668 1691 2039 650 1728 2038 649 1814 2058 669 1728 2038 649 1688 2019 634 1727 2035 646 1814 2058 669 1727 2035 646 1792 2034 645 1848 2055 666 1814 2058 669 1694 2044 655 1696 2059 670 1735 2060 671 1815 2045 656 1735 2060 671 1736 2061 672 1815 2045 656 1778 2062 673 1698 2063 674 1737 2064 675 1699 2065 676 1737 2064 675 1779 2066 677 1866 2067 678 1699 2065 676 1738 2068 679 1073 1348 443 1095 1347 442 1816 2069 680 1095 1347 442 1074 1350 445 1836 2070 681 1816 2069 680 1836 2070 681 1779 2066 677 1737 2064 675 1816 2069 680 1737 2064 675 1698 2063 674 1738 2068 679 1816 2069 680 1798 2071 682 1701 2072 683 1740 2073 684 1817 2074 685 1740 2073 684 1700 2075 686 1739 2076 687 1817 2074 685 1741 2077 688 1702 2078 689 1742 2079 690 1818 2080 691 1742 2079 690 1686 2081 751 1807 2005 620 1818 2080 691 1741 2077 688 1818 2080 691 1744 2082 753 1871 2083 754 1807 2005 620 1722 2008 623 1743 2084 755 1818 2080 691 1743 2084 755 1703 2085 756 1744 2082 753 1818 2080 691 1745 2086 757 1876 2087 758 1877 2088 759 1819 2089 760 1877 2088 759 1878 2011 626 1808 2010 625 1819 2089 760 1808 2010 625 1092 1281 379 1096 1369 464 1819 2089 760 1096 1369 464 1075 1370 465 1745 2086 757 1819 2089 760 1788 2036 647 1691 2039 650 1746 2090 761 1843 2091 762 1704 2092 763 1843 2091 762 1746 2090 761 1705 2093 764 1747 2094 765 1706 2095 766 1748 2096 767 1820 2097 768 1748 2096 767 1707 2098 769 1749 2099 770 1820 2097 768 1749 2099 770 1702 2078 689 1741 2077 688 1820 2097 768 1750 2100 771 1706 2095 766 1747 2094 765 1821 2101 772 1751 2102 773 1871 2083 754 1744 2082 753 1805 2103 774 1751 2102 773 1696 2059 670 1752 2104 775 1821 2101 772 1752 2104 775 1708 2105 776 1750 2100 771 1821 2101 772 1753 2106 777 1702 2078 689 1749 2099 770 1822 2107 778 1749 2099 770 1707 2098 769 1754 2108 779 1822 2107 778 1754 2108 779 1802 2109 780 1856 2110 781 1822 2107 778 1856 2110 781 1803 2111 782 1753 2106 777 1822 2107 778 1709 2112 783 1755 2113 784 1842 2114 785 1787 2115 786 1786 2116 787 1842 2114 785 1755 2113 784 1710 2117 788 1756 2118 789 1712 2119 790 1757 2120 791 1823 2121 792 1757 2120 791 1714 2122 793 1758 2123 794 1823 2121 792 1758 2123 794 1713 2124 795 1759 2125 796 1823 2121 792 1759 2125 796 1711 2126 797 1756 2118 789 1823 2121 792 1760 2127 798 1715 2128 799 1761 2129 800 1824 2130 801 1761 2129 800 1700 2075 686 1762 2131 802 1824 2130 801 1762 2131 802 1712 2119 790 1756 2118 789 1824 2130 801 1756 2118 789 1711 2126 797 1760 2127 798 1824 2130 801 1763 2132 803 1795 2133 804 1851 2134 805 1825 2135 806 1851 2134 805 1796 2136 807 1764 2137 808 1825 2135 806 1764 2137 808 1710 2117 788 1755 2113 784 1825 2135 806 1755 2113 784 1709 2112 783 1763 2132 803 1825 2135 806 1765 2138 809 1713 2124 795 1758 2123 794 1826 2139 810 1758 2123 794 1714 2122 793 1766 2140 811 1826 2139 810 1766 2140 811 1800 2141 812 1854 2142 813 1826 2139 810 1854 2142 813 1801 2143 814 1765 2138 809 1826 2139 810 1786 2116 787 1710 2117 788 1764 2137 808 1841 2144 815 1797 2145 816 1841 2144 815 1764 2137 808 1796 2136 807 1767 2146 817 1799 2147 818 1853 2148 819 1827 2149 820 1853 2148 819 1800 2141 812 1766 2140 811 1827 2149 820 1766 2140 811 1714 2122 793 1757 2120 791 1827 2149 820 1757 2120 791 1712 2119 790 1767 2146 817 1827 2149 820 1768 2150 821 1695 2052 663 1790 2051 662 1828 2151 822 1791 2152 823 1716 2153 824 1768 2150 821 1828 2151 822 1770 2154 825 1717 2155 826 1769 2156 827 1829 2157 828 1744 2082 753 1703 2085 756 1771 2158 829 1830 2159 830 1872 2160 831 1771 2158 829 1875 2161 832 1874 2162 833 1768 2150 821 1716 2153 824 1773 2163 834 1831 2164 835 1773 2163 834 1076 1447 542 1097 1446 541 1831 2164 835 1097 1446 541 1072 1331 426 1733 2053 664 1831 2164 835 1733 2053 664 1695 2052 663 1768 2150 821 1831 2164 835 1875 2161 832 1876 2087 758 1745 2086 757 1832 2165 836 1745 2086 757 1075 1370 465 1098 1449 544 1832 2165 836 1098 1449 544 1077 1451 546 1774 2166 837 1832 2165 836 1774 2166 837 1874 2162 833 1875 2161 832 1832 2165 836 1718 2167 838 1716 2153 824 1791 2152 823 1846 2168 839 1769 2156 827 1717 2155 826 1775 2169 840 1776 2170 841 1835 2171 842 1872 2160 831 1874 2162 833 1873 2172 843 1078 1458 553 1076 1447 542 1773 2163 834 1833 2173 844 1773 2163 834 1716 2153 824 1718 2167 838 1833 2173 844 1774 2166 837 1077 1451 546 1099 1461 556 1834 2174 845 1873 2172 843 1874 2162 833 1774 2166 837 1834 2174 845 1776 2170 841 1775 2169 840 1778 2062 673 1699 2065 676 1074 1350 445 1078 1458 553 1833 2173 844 1836 2070 681 1833 2173 844 1718 2167 838 1779 2066 677 1836 2070 681 1849 2175 846 1794 2176 847 1780 2177 848 1837 2178 849 1780 2177 848 1705 2093 764 1746 2090 761 1837 2178 849 1746 2090 761 1691 2039 650 1734 2057 668 1837 2178 849 1734 2057 668 1793 2056 667 1849 2175 846 1837 2178 849 1855 2179 850 1802 2109 780 1754 2108 779 1838 2180 851 1754 2108 779 1707 2098 769 1781 2181 852 1838 2180 851 1781 2181 852 1713 2124 795 1765 2138 809 1838 2180 851 1765 2138 809 1801 2143 814 1855 2179 850 1838 2180 851 1719 2182 853 1715 2128 799 1782 2183 854 1839 2184 855 1782 2183 854 1708 2105 776 1783 2185 856 1839 2184 855 1704 2092 763 1705 2093 764 1784 2186 857 1870 2187 858 1709 2112 783 1787 2115 786 1870 2187 858 1784 2186 857 1785 2188 859 1711 2126 797 1759 2125 796 1840 2189 860 1759 2125 796 1713 2124 795 1781 2181 852 1840 2189 860 1781 2181 852 1707 2098 769 1748 2096 767 1840 2189 860 1748 2096 767 1706 2095 766 1785 2188 859 1840 2189 860 1797 2145 816 1798 2071 682 1817 2074 685 1841 2144 815 1817 2074 685 1739 2076 687 1786 2116 787 1841 2144 815 1786 2116 787 1739 2076 687 1863 2190 861 1842 2114 785 1863 2190 861 1719 2182 853 1787 2115 786 1842 2114 785 1704 2092 763 1783 2185 856 1860 2191 862 1843 2091 762 1860 2191 862 1694 2044 655 1788 2036 647 1843 2091 762 1788 2036 647 1694 2044 655 1730 2042 653 1844 2037 648 1730 2042 653 1693 2041 652 1789 2016 631 1844 2037 648 1685 2192 636 1693 2041 652 1729 2040 651 1845 2193 863 1896 2194 864 1692 2047 658 1731 2046 657 1829 2157 828 1769 2156 827 1791 2152 823 1828 2151 822 1791 2152 823 1769 2156 827 1776 2170 841 1846 2168 839 1846 2168 839 1776 2170 841 1699 2065 676 1866 2067 678 1684 2195 643 1068 2196 577 1100 1483 576 1847 2033 644 1100 1483 576 1079 1485 578 1792 2034 645 1847 2033 644 1792 2034 645 1079 1485 578 1101 1486 579 1848 2055 666 1101 1486 579 1080 1487 580 1793 2056 667 1848 2055 666 1793 2056 667 1080 1487 580 1102 1488 581 1849 2175 846 1102 1488 581 1081 1489 582 1794 2176 847 1849 2175 846 1794 2176 847 1081 1489 582 1103 1491 584 1850 2197 865 1103 1491 584 1082 1492 585 1795 2133 804 1850 2197 865 1795 2133 804 1082 1492 585 1104 1493 586 1851 2134 805 1104 1493 586 1083 1494 587 1796 2136 807 1851 2134 805 1083 1494 587 1084 1495 588 1797 2145 816 1796 2136 807 1084 1495 588 1085 1496 589 1798 2071 682 1797 2145 816 1701 2072 683 1087 1499 592 1105 1498 591 1852 2198 866 1105 1498 591 1086 1500 593 1799 2147 818 1852 2198 866 1106 1501 594 1088 1502 595 1800 2141 812 1853 2148 819 1799 2147 818 1086 1500 593 1106 1501 594 1853 2148 819 1800 2141 812 1088 1502 595 1107 1503 596 1854 2142 813 1107 1503 596 1089 1504 597 1801 2143 814 1854 2142 813 1108 1505 598 1090 1506 599 1802 2109 780 1855 2179 850 1801 2143 814 1089 1504 597 1108 1505 598 1855 2179 850 1802 2109 780 1090 1506 599 1109 1507 600 1856 2110 781 1109 1507 600 1091 1508 601 1803 2111 782 1856 2110 781 1803 2111 782 1091 1508 601 1110 1287 385 1857 2015 630 1738 2068 679 1698 2063 674 1804 2199 867 1858 2200 868 1804 2199 867 1873 2172 843 1834 2174 845 1858 2200 868 1834 2174 845 1099 1461 556 1111 1511 604 1858 2200 868 1111 1511 604 1073 1348 443 1738 2068 679 1858 2200 868 1085 1496 589 1087 1499 592 1701 2072 683 1798 2071 682 1770 2154 825 1697 2201 869 1805 2103 774 1859 2202 870 1805 2103 774 1744 2082 753 1830 2159 830 1859 2202 870 1830 2159 830 1772 2203 871 1806 2204 872 1859 2202 870 1806 2204 872 1717 2155 826 1770 2154 825 1859 2202 870 1783 2185 856 1708 2105 776 1752 2104 775 1860 2191 862 1696 2059 670 1694 2044 655 1860 2191 862 1752 2104 775 1775 2169 840 1717 2155 826 1806 2204 872 1861 2205 873 1806 2204 872 1772 2203 871 1777 2206 874 1861 2205 873 1785 2188 859 1706 2095 766 1750 2100 771 1862 2207 875 1750 2100 771 1708 2105 776 1782 2183 854 1862 2207 875 1782 2183 854 1715 2128 799 1760 2127 798 1862 2207 875 1760 2127 798 1711 2126 797 1785 2188 859 1862 2207 875 1778 2062 673 1775 2169 840 1861 2205 873 1864 2208 876 1861 2205 873 1777 2206 874 1835 2171 842 1864 2208 876 1739 2076 687 1700 2075 686 1761 2129 800 1863 2190 861 1761 2129 800 1715 2128 799 1719 2182 853 1863 2190 861 1804 2199 867 1698 2063 674 1778 2062 673 1864 2208 876 1852 2198 866 1799 2147 818 1767 2146 817 1865 2209 877 1767 2146 817 1712 2119 790 1762 2131 802 1865 2209 877 1762 2131 802 1700 2075 686 1740 2073 684 1865 2209 877 1740 2073 684 1701 2072 683 1852 2198 866 1865 2209 877 1779 2066 677 1718 2167 838 1846 2168 839 1866 2067 678 1789 2016 631 1693 2041 652 1685 2210 636 1867 2017 632 1805 2103 774 1697 2201 869 1735 2060 671 1696 2059 670 1751 2102 773 1753 2106 777 1803 2111 782 1857 2015 630 1868 2211 878 1857 2015 630 1809 2014 629 1868 2211 878 1809 2014 629 1880 2013 628 1868 2211 878 1742 2079 690 1702 2078 689 1753 2106 777 1868 2211 878 1780 2177 848 1794 2176 847 1850 2197 865 1869 2212 879 1850 2197 865 1795 2133 804 1763 2132 803 1869 2212 879 1763 2132 803 1709 2112 783 1784 2186 857 1869 2212 879 1784 2186 857 1705 2093 764 1780 2177 848 1869 2212 879 1787 2115 786 1719 2182 853 1839 2184 855 1870 2187 858 1839 2184 855 1783 2185 856 1704 2092 763 1870 2187 858 1871 2083 754 1751 2102 773 1821 2101 772 1747 2094 765 1741 2077 688 1871 2083 754 1747 2094 765 1820 2097 768 1772 2203 871 1872 2160 831 1835 2171 842 1777 2206 874 1771 2158 829 1872 2160 831 1772 2203 871 1830 2159 830 1835 2171 842 1873 2172 843 1804 2199 867 1864 2208 876 1771 2158 829 1703 2085 756 1876 2087 758 1875 2161 832 1877 2088 759 1876 2087 758 1703 2085 756 1743 2084 755 1743 2084 755 1722 2008 623 1878 2011 626 1877 2088 759 1722 2008 623 1687 2006 621 1879 2012 627 1878 2011 626 1880 2013 628 1879 2012 627 1687 2006 621 1686 2081 751 1868 2211 878 1880 2013 628 1686 2081 751 1742 2079 690 1068 2213 1843 1684 2214 2187 1886 2215 2188 1319 1525 1844 1518 2004 2186 1521 1759 2061 1886 2215 2188 1887 2216 2189 1518 2004 2186 1517 2003 2185 1881 1760 2062 1521 1759 2061 1881 1760 2062 1517 2003 2185 1516 1758 2060 1515 1757 2059 898 1023 1712 1312 1025 1714 1881 1760 2062 1515 1757 2059 1683 2217 2190 1685 2218 2191 1889 2219 2192 1888 2220 2193 1882 1750 2052 1520 2002 2184 1889 2219 2192 1890 2221 2194 1884 2222 2195 1885 2223 2196 1892 2224 2197 1891 2225 2198 1315 1538 1857 1514 1754 2056 1898 2226 2199 1320 1539 1858 1519 2001 2183 1518 2004 2186 1887 2216 2189 1888 2220 2193 1512 1751 2053 1882 1750 2052 1890 2221 2194 1891 2225 2198 1729 2040 651 1692 2047 658 1884 2227 880 1845 2228 863 1690 2022 637 1682 2229 640 1885 2230 881 1689 2049 660 1883 1753 2055 1513 1752 2054 1892 2224 2197 1893 2231 2200 1885 2232 881 1884 2233 880 1692 2047 658 1689 2049 660 1521 1759 2061 905 1028 1717 1319 1525 1844 1886 2215 2188 1720 2234 2201 1069 2235 1862 1320 1539 1858 1898 2226 2199 1684 2236 2187 1726 2237 2202 1887 2216 2189 1886 2215 2188 1726 2238 2202 1683 2239 2190 1888 2220 2193 1887 2216 2189 1520 2002 2184 1519 2001 2183 1888 2220 2193 1889 2219 2192 1685 2240 2191 1845 2241 2203 1890 2221 2194 1889 2219 2192 1845 2242 2203 1884 2243 2195 1891 2225 2198 1890 2221 2194 1513 1752 2054 1512 1751 2053 1891 2225 2198 1892 2224 2197 1885 2244 2196 1682 2245 2204 1893 2231 2200 1892 2224 2197 1682 2246 2204 1720 2247 2201 1898 2226 2199 1893 2231 2200 1894 2248 882 1697 2201 869 1770 2154 825 1829 2157 828 1790 2051 662 1894 2248 882 1829 2157 828 1828 2151 822 1895 2249 883 1894 2248 882 1790 2051 662 1812 2050 661 1736 2061 672 1735 2060 671 1697 2201 869 1894 2248 882 1896 2194 864 1736 2061 672 1894 2248 882 1895 2249 883 1689 2049 660 1692 2047 658 1896 2194 864 1895 2249 883 1689 2049 660 1895 2249 883 1812 2050 661 1731 2046 657 1815 2045 656 1736 2061 672 1896 2194 864 1883 1753 2055 1893 2231 2200 1898 2226 2199 1514 1754 2056 1359 1584 1886 1371 1600 1902 1899 1601 1903 1360 1586 1888 1371 1600 1902 1382 1613 1915 1900 1614 1916 1899 1601 1903 1382 1613 1915 1393 1626 1928 1901 1627 1929 1900 1614 1916 1393 1626 1928 1404 1639 1941 1902 1640 1942 1901 1627 1929 1404 1639 1941 1415 1652 1954 350 790 1479 1902 1640 1942 1415 1652 1954 1426 1664 1966 433 793 1482 350 790 1479 1497 1735 2037 1903 1756 2058 430 806 1495 1503 1741 2043 1509 1747 2049 1904 1755 2057 1903 1756 2058 1051 1105 1734 986 1090 1719 1906 1093 1722 1905 1106 1735 1048 1091 1720 908 1109 1738 1908 1096 1725 1907 1092 1721 1017 1095 1724 951 1107 1736 1906 1093 1722 1907 1092 1721 1019 1108 1737 925 1101 1730 1909 1103 1732 1905 1106 1735 1020 1113 1742 923 1094 1723 1908 1096 1725 1910 1111 1740 1050 1098 1727 909 1104 1733 1909 1103 1732 1911 1099 1728 1052 1110 1739 910 1115 1744 1912 1114 1743 1910 1111 1740 1018 1102 1731 952 1148 1777 1913 1100 1729 1911 1099 1728 1021 1119 1748 924 1112 1741 1912 1114 1743 1914 1117 1746 1055 1146 1775 990 1097 1726 1913 1100 1729 1915 1147 1776 1053 1116 1745 982 1125 1754 1916 1120 1749 1914 1117 1746 1026 1149 1778 928 1142 1771 1917 1144 1773 1915 1147 1776 1022 1122 1751 926 1118 1747 1916 1120 1749 1918 1123 1752 1049 1140 1769 912 1145 1774 1917 1144 1773 1919 1141 1770 1046 1126 1755 984 1127 1756 1920 1124 1753 1918 1123 1752 1025 1143 1772 930 1136 1765 1921 1138 1767 1919 1141 1770 1023 1131 1760 927 1121 1750 1920 1124 1753 1922 1129 1758 1054 1134 1763 988 1139 1768 1921 1138 1767 1923 1135 1764 1047 1128 1757 911 1133 1762 1924 1132 1761 1922 1129 1758 1024 1137 1766 929 1130 1759 1924 1132 1761 1923 1135 1764 1522 1841 2083 1662 1821 2063 1926 1824 2066 1925 1827 2069 1600 1822 2064 1665 1835 2077 1928 1837 2079 1927 1823 2065 1565 1839 2081 1631 1825 2067 1926 1824 2066 1927 1823 2065 1537 1826 2068 1634 1843 2085 1929 1842 2084 1925 1827 2069 1539 1833 2075 1633 1838 2080 1928 1837 2079 1930 1834 2076 1524 1847 2089 1666 1840 2082 1929 1842 2084 1931 1845 2087 1523 1836 2078 1664 1828 2070 1932 1831 2073 1930 1834 2076 1538 1844 2086 1635 1849 2091 1933 1848 2090 1931 1845 2087 1566 1880 2122 1632 1832 2074 1932 1831 2073 1934 1830 2072 1596 1857 2099 1667 1846 2088 1933 1848 2090 1935 1851 2093 1604 1829 2071 1669 1876 2118 1936 1878 2120 1934 1830 2072 1540 1850 2092 1636 1852 2094 1937 1855 2097 1935 1851 2093 1542 1874 2116 1640 1879 2121 1936 1878 2120 1938 1875 2117 1598 1859 2101 1660 1856 2098 1937 1855 2097 1939 1854 2096 1526 1877 2119 1663 1870 2112 1940 1872 2114 1938 1875 2117 1541 1853 2095 1637 1861 2103 1941 1860 2102 1939 1854 2096 1544 1868 2110 1639 1873 2115 1940 1872 2114 1942 1869 2111 1525 1865 2107 1661 1858 2100 1941 1860 2102 1943 1863 2105 1602 1871 2113 1668 1864 2106 1944 1866 2108 1942 1869 2111 1543 1862 2104 1638 1867 2109 1944 1866 2108 1943 1863 2105 651 570 1332 1945 675 1416 2086 2250 2205 2087 571 1333 1964 507 1303 374 512 1308 393 653 1394 1945 675 1416 2086 2250 2205 1945 675 1416 393 653 1394 2107 723 1448 401 620 1368 521 619 1367 1948 772 1467 1949 771 1466 579 623 1371 660 630 1378 1950 770 1465 1949 771 1466 402 628 1376 524 626 1374 1950 770 1465 1951 769 1464 578 631 1379 577 664 1405 1952 767 1462 1951 769 1464 577 664 1405 2094 700 1429 2096 768 1463 1952 767 1462 419 742 977 584 693 281 1954 765 1000 1955 764 999 575 553 236 659 556 239 1957 762 997 1956 763 998 404 636 250 527 634 248 1957 762 997 1958 761 996 574 558 241 658 569 245 1959 760 995 1958 761 996 407 643 257 530 641 255 1959 760 995 1960 759 994 573 568 244 657 672 268 1961 758 993 1960 759 994 412 649 263 533 647 261 1961 758 993 1962 757 992 571 755 990 671 732 309 1947 734 311 1963 756 991 1470 1708 2010 1481 1719 2021 347 801 1490 431 800 1489 1459 1697 1999 1470 1708 2010 431 800 1489 348 798 1487 1448 1686 1988 1459 1697 1999 348 798 1487 432 797 1486 1437 1675 1977 1448 1686 1988 432 797 1486 349 794 1483 1491 1727 2029 351 803 1492 347 801 1490 1481 1719 2021 1497 1735 2037 430 806 1495 351 803 1492 1491 1727 2029 435 438 1234 430 806 1495 1903 1756 2058 1986 1021 1710 435 438 1234 1986 1021 1710 320 1020 1709 88 375 1186 433 793 1482 1426 1664 1966 1437 1675 1977 349 794 1483 2048 2251 2206 2049 2252 2207 1973 1589 1891 1972 1588 1890 1902 1640 1942 350 790 1479 434 436 1232 1974 1641 1943 2047 2253 2208 2048 2251 2206 1972 1588 1890 1975 1602 1904 2046 2254 2209 2047 2253 2208 1975 1602 1904 1976 1615 1917 2045 2255 2210 2046 2254 2209 1976 1615 1917 1977 1628 1930 2044 1653 1955 2045 2255 2210 1977 1628 1930 1974 1641 1943 606 781 1473 684 410 1214 2026 413 1217 2027 423 2211 310 111 904 1978 113 906 2025 412 1216 2024 409 1213 867 985 1674 858 976 1665 4 371 1182 84 373 1184 858 976 1665 845 964 1653 0 369 1180 4 371 1182 721 832 1521 1331 831 1520 1980 836 1525 1979 835 1524 774 2256 2212 3 360 1171 87 359 1170 1981 892 1581 722 834 1523 735 2257 2213 1982 850 1539 1979 835 1524 735 2257 2213 748 2258 2214 1983 864 1553 1982 850 1539 748 2258 2214 761 2259 2215 1984 878 1567 1983 864 1553 761 2259 2215 774 2256 2212 1981 892 1581 1984 878 1567 810 928 1617 798 916 1605 86 364 1175 1 365 1176 1 365 1176 85 367 1178 822 940 1629 810 928 1617 834 952 1641 822 940 1629 85 367 1178 0 369 1180 845 964 1653 834 952 1641 0 369 1180 88 375 1186 320 1020 1709 2015 2260 2216 2015 2260 2216 84 373 1184 88 375 1186 1904 1755 2057 1514 1754 2056 1315 1538 1857 1985 1019 1708 1337 1017 1706 1985 1019 1708 1315 1538 1857 897 1018 1707 90 2 28 243 1 26 1987 2261 2217 1988 2262 2218 243 1 26 91 4 30 1989 2263 2219 1987 2261 2217 91 4 30 244 7 35 1990 2264 2220 1989 2263 2219 244 7 35 299 8 36 1991 2265 2221 1990 2264 2220 164 179 1042 163 178 1041 1992 2266 2222 1993 2267 2223 266 181 1045 165 180 1043 1994 2268 2224 1995 2269 2225 163 178 1041 266 181 1045 1995 2269 2225 1992 2266 2222 288 184 1048 90 2 28 1988 2262 2218 1996 2270 2226 167 186 1050 164 179 1042 1993 2267 2223 1997 2271 2227 324 333 1144 288 184 1048 1996 2270 2226 1998 2272 2228 315 351 1162 167 186 1050 1997 2271 2227 1999 2273 2229 165 180 1043 324 333 1144 1998 2272 2228 1994 2268 2224 1991 2265 2221 299 8 36 2017 378 1189 2018 2274 2230 690 432 1228 315 351 1162 1999 2273 2229 2001 2275 2231 622 442 1238 437 441 1237 2002 2276 2232 2003 2277 2233 438 443 1239 622 442 1238 2003 2277 2233 2004 2278 2234 623 446 1242 438 443 1239 2004 2278 2234 2005 2279 2235 440 447 1243 623 446 1242 2005 2279 2235 2006 2280 2236 519 618 1366 520 617 1365 2007 2281 2237 2008 2282 2238 521 619 1367 645 622 1370 2009 2283 2239 2010 2284 2240 645 622 1370 519 618 1366 2008 2282 2238 2009 2283 2239 437 441 1237 661 624 1372 2011 2285 2241 2002 2276 2232 520 617 1365 523 625 1373 2012 2286 2242 2007 2281 2237 661 624 1372 1948 772 1467 2013 2287 2243 2011 2285 2241 672 774 1469 440 447 1243 2006 2280 2236 2000 2288 2244 523 625 1373 690 432 1228 2001 2275 2231 2012 2286 2242 1948 772 1467 521 619 1367 2010 2284 2240 2013 2287 2243 1988 2262 2218 1987 2261 2217 2014 2289 2245 1987 2261 2217 1989 2263 2219 2014 2289 2245 1989 2263 2219 1990 2264 2220 2014 2289 2245 1990 2264 2220 1991 2265 2221 2014 2289 2245 1993 2267 2223 1992 2266 2222 2014 2289 2245 1995 2269 2225 1994 2268 2224 2014 2289 2245 1992 2266 2222 1995 2269 2225 2014 2289 2245 1996 2270 2226 1988 2262 2218 2014 2289 2245 1997 2271 2227 1993 2267 2223 2014 2289 2245 1998 2272 2228 1996 2270 2226 2014 2289 2245 1999 2273 2229 1997 2271 2227 2014 2289 2245 1994 2268 2224 1998 2272 2228 2014 2289 2245 1991 2265 2221 2018 2274 2230 2000 2288 2244 2014 2289 2245 2001 2275 2231 1999 2273 2229 2014 2289 2245 2003 2277 2233 2002 2276 2232 2014 2289 2245 2004 2278 2234 2003 2277 2233 2014 2289 2245 2005 2279 2235 2004 2278 2234 2014 2289 2245 2006 2280 2236 2005 2279 2235 2014 2289 2245 2008 2282 2238 2007 2281 2237 2014 2289 2245 2010 2284 2240 2009 2283 2239 2014 2289 2245 2009 2283 2239 2008 2282 2238 2014 2289 2245 2002 2276 2232 2011 2285 2241 2014 2289 2245 2007 2281 2237 2012 2286 2242 2014 2289 2245 2011 2285 2241 2013 2287 2243 2014 2289 2245 2000 2288 2244 2006 2280 2236 2014 2289 2245 2012 2286 2242 2001 2275 2231 2014 2289 2245 2013 2287 2243 2010 2284 2240 2014 2289 2245 2015 2260 2216 320 1020 1709 884 1002 1691 877 995 1684 877 995 1684 867 985 1674 84 373 1184 2015 2260 2216 1497 1735 2037 1503 1741 2043 1903 1756 2058 672 774 1469 2000 2288 2244 2018 2274 2230 2017 378 1189 308 85 74 228 88 77 2020 406 151 2019 402 150 673 775 1470 590 773 1468 2022 377 1188 2021 379 1190 590 773 1468 672 774 1469 2017 378 1189 2022 377 1188 591 776 1471 673 775 1470 2021 379 1190 2023 380 1191 683 780 1472 591 776 1471 2023 380 1191 2024 409 1213 604 411 1215 683 780 1472 2024 409 1213 2025 412 1216 1978 113 906 142 124 914 2026 413 1217 2025 412 1216 142 124 914 229 126 916 2027 423 2211 2026 413 1217 687 782 229 606 781 228 2027 423 153 2028 422 152 607 783 230 687 782 229 2028 422 152 2029 424 154 688 784 231 607 783 230 2029 424 154 2030 425 155 603 778 224 688 784 231 2030 425 155 2031 408 147 682 779 225 603 778 224 2031 408 147 2032 407 146 601 777 222 682 779 225 2032 407 146 2033 403 145 681 405 223 601 777 222 2033 403 145 2019 402 2263 2020 406 151 228 88 77 312 154 107 2016 420 160 312 154 107 41 140 103 2034 414 156 2016 420 160 41 140 103 311 135 100 2035 415 157 2034 414 156 311 135 921 29 77 897 2036 394 1205 2035 415 1218 29 77 897 307 76 896 2037 395 1206 2036 394 1205 307 76 896 227 79 899 2038 398 1209 2037 395 1206 227 79 899 45 81 901 2039 400 1211 2038 398 1209 45 81 901 162 353 1164 2040 428 1224 2039 400 1211 162 353 1164 79 355 1166 2041 430 1226 2040 428 1224 79 355 1166 233 358 1169 2042 433 1229 2041 430 1226 233 358 1169 3 360 1171 2043 435 1231 2042 433 1229 3 360 1171 774 2256 2212 2044 1653 1955 2043 435 1231 774 2256 2212 761 2259 2215 2045 2255 2210 2044 1653 1955 761 2259 2215 748 2258 2214 2046 2254 2209 2045 2255 2210 748 2258 2214 735 2257 2213 2047 2253 2208 2046 2254 2209 735 2257 2213 722 834 1523 2048 2251 2206 2047 2253 2208 722 834 1523 708 833 1522 2049 2252 2207 2048 2251 2206 907 1029 1718 2049 2252 2207 708 833 1522 1973 1589 1891 2049 2252 2207 907 1029 1718 907 1029 1718 1980 836 1525 1331 831 1520 2050 292 123 2051 291 122 2065 133 1002 2064 288 1003 282 294 125 322 296 127 2067 376 1004 2066 134 1005 2051 291 122 282 294 125 2066 134 1005 2065 133 1002 185 244 52 278 242 50 2069 237 1006 2068 245 1007 184 241 49 279 251 56 2071 246 1008 2070 238 1009 278 242 50 184 241 49 2070 238 1009 2069 237 1006 2052 263 64 185 244 52 2068 245 1007 2072 261 1010 186 250 55 2050 292 123 2064 288 1003 2073 247 1011 279 251 56 186 250 55 2073 247 1011 2071 246 1008 187 259 1104 280 257 1103 2075 252 1099 2074 260 1105 2053 256 59 2054 327 235 2077 328 1014 2076 253 1015 280 257 60 2053 256 59 2076 253 1015 2075 252 2276 2055 266 1109 187 259 1104 2074 260 1105 2078 264 1107 2054 327 235 2052 263 64 2072 261 1010 2077 328 1014 188 268 1111 2055 266 1109 2078 264 1107 2079 269 1112 2056 272 1115 188 268 1111 2079 269 1112 2080 270 1113 189 274 1117 2056 272 1115 2080 270 1113 2081 275 1118 2057 287 1128 189 274 1117 2081 275 1118 2082 285 1126 191 283 88 281 281 2271 2084 276 1021 2083 284 1022 190 280 1123 2057 287 1128 2082 285 1126 2085 277 1120 281 281 1124 190 280 1123 2085 277 1120 2084 276 1119 322 296 127 191 283 88 2083 284 1022 2067 376 1004 1946 735 970 656 733 310 2087 571 1024 2086 2250 1025 2058 731 308 2059 730 307 2089 727 1026 2088 572 1027 656 733 310 2058 731 308 2088 572 1027 2087 571 1024 653 689 279 554 681 274 2091 676 1028 2090 686 1029 652 680 273 555 683 276 2093 684 1030 2092 677 1031 554 681 274 652 680 273 2092 677 1031 2091 676 1028 555 683 276 2060 702 288 2094 700 1032 2093 684 1030 2059 730 307 556 690 280 2095 685 1033 2089 727 1026 556 690 280 653 689 279 2090 686 1029 2095 685 1033 1953 766 1001 557 696 284 2097 691 1034 2096 768 1035 654 695 1427 558 698 1426 2099 699 1428 2098 692 1423 557 696 284 654 695 2270 2098 692 1037 2097 691 1034 558 698 1426 2061 705 1432 2100 703 1430 2099 699 1428 2060 702 288 1953 766 1001 2096 768 1035 2094 700 1032 2061 705 1432 559 707 1434 2101 708 1435 2100 703 1430 559 707 1434 2062 711 1438 2102 709 1436 2101 708 1435 2062 711 1438 560 713 1440 2103 714 1441 2102 709 1436 560 713 1440 2063 726 1451 2104 724 1449 2103 714 1441 2063 726 1451 561 720 1447 2105 715 1442 2104 724 1449 655 719 299 562 722 302 2107 723 1044 2106 716 2266 561 720 1447 655 719 1446 2106 716 1443 2105 715 1442 562 722 302 1946 735 970 2086 2250 1025 2107 723 1044 1686 2081 751 1687 2006 621 1807 2005 620 1117 1276 374 1237 1275 373 1151 1277 375</p>\r\n                </polylist>\r\n            </mesh>\r\n        </geometry>\r\n    </library_geometries>\r\n    <library_visual_scenes>\r\n        <visual_scene id=\"VisualSceneNode\" name=\"untitled\">\r\n            <node id=\"LOD3sp\" name=\"LOD3sp\">\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n                <instance_geometry url=\"#LOD3spShape-lib\">\r\n                    <bind_material>\r\n                        <technique_common>\r\n                            <instance_material symbol=\"blinn3SG\" target=\"#blinn3\">\r\n                                <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"TEX0\"/>\r\n                            </instance_material>\r\n                        </technique_common>\r\n                    </bind_material>\r\n                </instance_geometry>\r\n            </node>\r\n            <node id=\"camera1\" name=\"camera1\">\r\n                <translate sid=\"translate\">400.113 463.264 -431.078</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 -223.2</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 -38.4</rotate>\r\n                <instance_camera url=\"#cameraShape1\"/>\r\n            </node>\r\n            <node id=\"directionalLight1\" name=\"directionalLight1\">\r\n                <translate sid=\"translate\">148.654 183.672 -292.179</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 -12.8709</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 -191.679</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 -45.6358</rotate>\r\n                <instance_light url=\"#directionalLightShape1-lib\"/>\r\n            </node>\r\n        </visual_scene>\r\n    </library_visual_scenes>\r\n    <scene>\r\n        <instance_visual_scene url=\"#VisualSceneNode\"/>\r\n    </scene>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/duck_triangulate.dae",
    "content": "<?xml version=\"1.0\" ?><COLLADA version=\"1.4.1\" xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n    <asset>\r\n        <contributor>\r\n            <author>gcorson</author>\r\n            <authoring_tool>Maya 8.0 | ColladaMaya v3.02 | FCollada v3.2</authoring_tool>\r\n            <comments>Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=1;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=1;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n            <copyright>\r\nCopyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&quot;License&quot;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &quot;AS IS&quot; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n</copyright>\r\n            <source_data>file:///C:/vs2005/sample_data/Complete_Packages/SCEA_Private/Maya_MoonLander/Moonlander/untitled</source_data>\r\n        </contributor>\r\n        <created>2006-08-23T22:29:59Z</created>\r\n        <modified>2007-02-21T22:52:44Z</modified>\r\n        <unit meter=\"0.01\" name=\"centimeter\"/>\r\n        <up_axis>Y_UP</up_axis>\r\n    </asset>\r\n    <library_cameras>\r\n        <camera id=\"cameraShape1\" name=\"cameraShape1\">\r\n            <optics>\r\n                <technique_common>\r\n                    <perspective>\r\n                        <yfov>37.8492</yfov>\r\n                        <aspect_ratio>1.5</aspect_ratio>\r\n                        <znear>1</znear>\r\n                        <zfar>10000</zfar>\r\n                    </perspective>\r\n                </technique_common>\r\n            </optics>\r\n        </camera>\r\n    </library_cameras>\r\n    <library_lights>\r\n        <light id=\"directionalLightShape1-lib\" name=\"directionalLightShape1\">\r\n            <technique_common>\r\n                <directional>\r\n                    <color>1 1 1</color>\r\n                </directional>\r\n            </technique_common>\r\n        </light>\r\n    </library_lights>\r\n    <library_images>\r\n        <image depth=\"1\" id=\"file2\" name=\"file2\">\r\n            <init_from>./duckCM_fix.jpg</init_from>\r\n        </image>\r\n    </library_images>\r\n    <library_materials>\r\n        <material id=\"blinn3\" name=\"blinn3\">\r\n            <instance_effect url=\"#blinn3-fx\"/>\r\n        </material>\r\n    </library_materials>\r\n    <library_effects>\r\n        <effect id=\"blinn3-fx\">\r\n            <profile_COMMON>\r\n                <newparam sid=\"file2-surface\">\r\n                    <surface type=\"2D\">\r\n                        <init_from>file2</init_from>\r\n                        <format>A8R8G8B8</format>\r\n                    </surface>\r\n                </newparam>\r\n                <newparam sid=\"file2-sampler\">\r\n                    <sampler2D>\r\n                        <source>file2-surface</source>\r\n                        <minfilter>LINEAR_MIPMAP_LINEAR</minfilter>\r\n                        <magfilter>LINEAR</magfilter>\r\n                    </sampler2D>\r\n                </newparam>\r\n                <technique sid=\"common\">\r\n                    <blinn>\r\n                        <emission>\r\n                            <color>0 0 0 1</color>\r\n                        </emission>\r\n                        <ambient>\r\n                            <color>0 0 0 1</color>\r\n                        </ambient>\r\n                        <diffuse>\r\n                            <texture texcoord=\"TEX0\" texture=\"file2-sampler\"/>\r\n                        </diffuse>\r\n                        <specular>\r\n                            <color>0 0 0 1</color>\r\n                        </specular>\r\n                        <shininess>\r\n                            <float>0.3</float>\r\n                        </shininess>\r\n                        <reflective>\r\n                            <color>0 0 0 1</color>\r\n                        </reflective>\r\n                        <reflectivity>\r\n                            <float>0.5</float>\r\n                        </reflectivity>\r\n                        <transparent>\r\n                            <color>0 0 0 1</color>\r\n                        </transparent>\r\n                        <transparency>\r\n                            <float>1</float>\r\n                        </transparency>\r\n                        <index_of_refraction>\r\n                            <float>1</float>\r\n                        </index_of_refraction>\r\n                    </blinn>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n    </library_effects>\r\n    <library_geometries>\r\n        <geometry id=\"LOD3spShape-lib\" name=\"LOD3spShape\">\r\n            <mesh>\r\n                <source id=\"LOD3spShape-lib-positions\" name=\"position\">\r\n                    <float_array count=\"6324\" id=\"LOD3spShape-lib-positions-array\">35.0226 89.3874 23.3732 19.5676 89.7173 22.4879 9.22909 91.5427 17.1037 4.33048 88.7008 4.57726 45.0571 89.4178 19.824 -30.5196 11.6272 25.1326 -15.6992 11.4278 34.2321 51.8411 17.7055 36.5602 65.7206 18.372 27.0862 56.0117 11.4345 22.6963 -23.2343 18.1488 41.0429 -40.9218 18.6322 29.6382 62.4487 11.3989 12.9806 60.2326 28.1944 39.5949 71.2984 29.0359 29.3335 -32.9737 29.6914 43.477 -48.95 28.9358 31.4102 73.8118 41.7425 29.8584 65.2513 41.3955 39.884 72.6597 55.003 29.2468 64.6263 55.4849 38.2648 66.5829 66.4165 27.9218 55.5179 67.734 35.7358 43.4971 75.6992 31.8699 56.934 75.0037 25.7495 14.7601 73.8701 35.1574 -12.1248 73.9991 28.9191 14.7016 78.8465 28.8886 -3.37962 78.0576 23.1953 -24.7824 78.2304 7.65121 4.94216 81.4267 15.8195 -54.7257 89.9761 8.84491 -53.6566 74.7375 26.9735 -44.1714 77.8938 26.1268 -64.7587 73.8997 7.15297 -61.5691 65.6958 25.2253 -42.9296 61.2502 39.4496 -64.9663 57.2673 21.7398 -48.9596 49.2561 39.8218 -58.3698 43.9468 28.036 -31.7993 70.8398 33.4366 -33.1153 82.3349 8.62471 48.2452 81.0789 22.327 34.1225 80.5718 26.6473 15.5527 81.3807 24.423 0.65596 81.0723 3.99376 15.1798 11.41 36.4164 17.2973 17.3674 43.2976 43.8649 67.7941 39.8677 55.9835 56.1625 42.7808 56.4187 41.7648 44.4371 46.9566 29.0085 44.2399 18.041 21.337 45.4158 -24.2634 29.7596 46.4694 -37.1346 44.6474 44.4312 -35.8668 57.8953 42.7333 -24.1626 66.8013 39.6298 -14.2645 43.4767 51.8892 10.1522 43.8267 53.9252 -10.3735 36.316 51.8336 -14.5047 52.2745 51.0455 9.35439 52.1796 53.5056 24.5685 36.9247 52.4691 11.2191 35.6243 52.5988 27.0248 44.5585 52.8835 25.4374 55.0852 52.0724 9.23132 59.258 51.2115 21.2751 61.6417 50.3945 -11.0645 57.3325 50.3033 -22.8339 53.8174 48.6047 -22.3883 43.3299 49.8488 -13.3437 34.4469 50.7719 -15.0193 59.7488 48.0109 12.3031 31.6369 51.4681 28.2 34.9703 51.4911 34.9314 44.1559 51.2583 33.7281 55.8993 50.0475 24.8495 63.37 48.6114 9.96162 62.8873 48.4038 6.73344 84.5266 2.83788 10.2211 84.9641 13.1445 19.05 85.0093 20.4734 35.2584 84.9759 22.0089 44.8651 85.199 18.7578 54.1484 90.1992 13.1393 25.84 89.3162 23.5593 14.5318 90.4728 20.5795 5.99276 89.5698 10.1098 59.1034 90.0324 3.37689 -23.9364 11.5353 30.6125 -11.459 10.0413 29.8243 -24.5326 10.1147 22.2069 -35.1528 11.6836 17.7191 61.5472 14.2726 25.2082 43.6854 11.43 30.0164 47.7677 14.1162 33.6212 -19.459 14.309 37.9267 -36.067 14.5054 27.6816 -32.9292 18.5574 36.7248 -46.1733 18.6604 20.5246 73.3418 18.3468 14.9194 68.8732 23.4107 28.4208 55.7803 22.4988 38.5465 -27.0171 23.4671 43.0366 -45.2302 23.6628 30.9246 -41.0731 29.3325 39.4763 79.4615 29.1894 16.0672 76.9844 23.4678 15.5749 72.8865 35.1223 29.8369 63.2406 34.5574 39.8307 81.8608 42.114 16.7292 80.9318 35.3877 16.409 66.0817 48.5555 39.2449 73.9987 48.5347 29.6857 80.1688 55.1853 16.948 81.5894 48.8387 16.9628 61.1927 62.0057 37.295 70.17 61.0152 28.6395 74.8647 66.3268 16.601 77.7874 61.0196 16.7611 61.7637 71.037 26.8557 67.1835 75.4493 16.6366 71.6321 71.1772 16.667 -7.40039 76.1581 26.3759 14.8335 76.3145 32.0471 -20.947 75.0059 21.3995 -9.30957 78.0917 17.6635 2.33308 81.2658 10.7014 -55.3055 81.4823 20.1865 -44.1025 82.8784 21.08 -48.3998 77.2606 26.9595 -63.8341 69.8359 17.705 -58.2579 70.6396 26.4175 -58.1459 60.4109 31.5845 -50.1918 68.7831 33.097 -53.5557 46.1592 34.9928 -63.069 52.729 24.0553 -63.6495 60.7883 23.3658 -54.4261 28.5392 21.6382 -12.4228 39.2454 51.9419 -52.1766 34.1006 30.9987 -39.3582 37.1753 42.8245 -63.2047 33.3562 7.77354 -14.9689 48.0973 51.5712 -13.2184 68.1588 38.5488 -20.841 71.9312 31.5875 -34.0814 73.6573 23.1685 39.0864 77.6536 29.4959 52.286 78.2905 24.2985 28.6752 75.0467 34.74 24.5284 79.4248 29.0977 58.2456 81.6454 14.9372 62.5867 78.8584 16.1198 -40.058 73.3058 29.0169 -62.4832 42.7738 19.6053 -66.2542 57.7677 16.0138 -46.3972 55.562 40.3341 46.1403 83.2928 20.059 52.8472 87.516 12.3304 24.3957 81.2413 26.4145 17.5457 83.2299 21.6568 35.0308 86.9496 21.9178 5.66061 83.0193 2.97282 39.2717 10.0042 25.9897 49.7414 9.99683 19.7068 14.6156 10.0124 31.7958 28.2119 11.4278 34.5791 55.179 10.0309 11.4214 16.1259 13.9798 40.2177 33.0793 17.7336 41.3765 18.9195 36.2041 52.5892 10.6044 39.6524 53.4314 18.2523 44.3116 53.7955 25.9535 39.9994 52.7745 9.73549 48.0914 53.8815 16.9236 53.6009 53.2898 26.8721 49.8693 52.6952 9.12603 55.8675 52.7181 15.9783 60.8706 50.8542 23.2428 59.2083 51.1997 15.2006 70.9348 38.4909 -38.0814 66.6122 37.6368 -31.4745 63.2943 41.295 -12.9337 55.4359 50.6592 -29.8093 42.9681 46.5354 -18.6612 31.1764 47.8255 -30.266 55.8423 44.7033 36.2897 31.2217 48.0605 46.511 42.7776 47.7899 45.6636 56.4673 46.2574 32.8524 66.1703 44.2955 12.3579 67.2602 43.2175 -19.149 38.1518 50.4005 -23.6628 48.8825 49.2194 21.1045 32.7401 51.4785 32.4268 38.9651 51.46 35.2465 50.0413 50.7771 17.9201 63.7837 48.4371 30.018 60.597 49.2453 -20.4236 57.6424 48.1257 -7.11345 60.5511 48.2081 -5.54756 57.4675 50.6459 -6.2067 51.4293 52.475 -5.95461 43.3855 53.166 -4.66971 35.7333 52.2177 -5.70251 32.445 51.1085 -8.3205 17.8723 43.3717 -2.69678 11.3425 36.4653 -27.2981 42.8866 48.0687 -27.8897 55.043 46.5161 -16.4436 32.2248 49.3054 -18.5848 62.3861 45.599 13.6265 28.0639 49.9986 41.3922 43.4352 49.4685 32.3868 32.7171 49.8711 40.4699 56.3449 48.0345 28.9733 65.0389 46.3945 11.0523 65.6624 45.6909 -37.9272 11.78 6.99728 -50.2675 18.389 7.36354 75.8256 18.3928 2.93945 64.2756 11.6576 2.65993 82.8128 29.1368 2.93945 85.8726 42.1384 2.93945 84.9147 55.2091 3.25752 79.936 66.2007 3.25752 72.9207 75.6569 3.11665 -13.2799 78.2816 6.78078 -42.4217 91.5301 9.02211 -66.2519 42.375 7.59116 -67.9758 58.5114 6.99802 8.76422 81.5601 20.2429 8.65004 83.1534 13.7124 6.16626 86.3527 3.3376 10.3479 87.4003 13.9949 7.91973 84.7475 8.18356 19.5238 87.0994 20.6484 13.8638 85.0248 17.2846 35.1961 83.043 23.5111 26.055 84.941 22.3278 44.4291 87.1742 18.6599 55.1672 83.7325 13.2216 53.3737 85.5572 12.3674 -18.7264 10.108 26.6814 -28.5504 10.1785 15.7995 -28.6467 14.412 33.9793 -40.9463 14.6426 19.2219 68.6182 14.2022 14.0757 -36.9819 23.7436 38.5844 48.5084 72.1529 33.9029 -14.7042 76.6096 19.7209 -49.515 83.8778 20.7678 -60.3339 76.3635 19.0618 -54.5522 64.8765 32.9243 -60.8158 55.9957 28.5728 -50.6442 23.4975 21.2438 -45.1383 35.1824 39.0803 -57.747 33.5446 21.51 -27.5531 73.6877 22.8942 26.6207 76.9559 31.9144 -39.393 77.9086 22.2647 -65.5928 51.6658 17.2594 -44.8336 71.3336 32.1213 -65.569 63.5509 16.5565 25.3055 83.1594 23.781 12.1192 83.2358 18.075 25.9631 10.0257 30.0393 30.5288 14.0969 38.2233 18.4628 39.992 53.2994 17.691 48.9863 53.8221 16.1429 57.6002 52.3171 32.2615 71.41 37.9727 51.4408 62.676 41.4618 57.6406 48.9151 43.8433 52.9177 35.0586 44.5773 36.217 23.1483 43.9056 -31.7681 36.6178 45.7769 -37.83 51.5724 43.6927 -25.9576 36.5644 47.2776 -31.2662 49.6491 45.6583 26.7542 27.5116 48.1161 23.2102 67.8126 43.5534 -9.81152 64.5785 42.5347 -5.73514 54.6841 51.8166 -6.34459 47.5345 53.0926 -5.18279 39.3551 52.8687 -13.0679 23.5531 45.6457 -5.21985 14.0791 40.2548 -0.679352 10.0168 31.8299 -28.752 49.271 47.2864 -23.8534 36.6519 48.7626 -24.6964 59.5316 45.8889 -7.15942 29.3978 49.7079 38.1551 37.5127 49.7814 23.9612 29.5453 49.9126 42.2701 49.9123 48.8776 35.8278 61.6884 47.1419 20.5055 66.243 45.9037 -8.95663 63.2617 45.5834 -31.1142 10.1703 6.38486 -44.1714 14.6552 7.27827 70.6407 14.3913 2.92833 79.9353 23.413 2.93945 84.5803 35.3544 2.93945 85.9631 48.8595 3.25752 82.8254 61.0226 3.25826 76.7546 71.3433 3.2553 -19.2017 77.8115 7.33611 -48.5489 92.2656 9.06511 -60.1596 84.4057 8.28143 -55.757 23.043 7.73055 -29.2013 79.6561 8.08569 -37.1064 88.1752 8.91461 -68.0046 51.5783 7.15372 -66.9147 65.618 7.07735 57.0756 10.1525 2.28551 6.64003 83.0734 8.64102 7.67061 86.759 8.63805 14.3983 87.2706 17.8748 26.21 86.9437 22.1654 62.3057 92.5874 2.9313 1.3848 69.2606 38.5873 1.56273 65.4519 43.0262 1.32251 64.1537 45.6605 4.95551 9.99831 32.3904 4.63076 11.3477 37.0599 4.48174 13.922 40.9628 4.08211 17.3859 43.9419 3.02928 21.4474 45.8963 3.07525 28.2293 49.9356 3.11009 31.6361 51.3265 3.03002 35.4574 52.4675 2.61333 39.4033 53.3009 2.11362 43.4389 53.8266 1.75772 47.519 53.7873 1.63762 51.3863 53.3032 1.70287 54.8295 52.4802 1.76736 58.0161 51.0099 1.52196 61.5001 48.3586 1.93642 72.8387 33.8763 3.64763 75.9142 30.548 5.31806 78.4269 26.9639 58.5778 87.5953 2.23361 59.1501 85.8263 2.11721 61.5583 84.2063 2.51758 64.9644 82.1214 2.892 69.0133 79.1475 3.00989 32.7991 89.7151 -30.4233 18.3501 89.4171 -27.9721 8.67525 89.5668 -20.9938 2.39314 90.3705 -9.85685 41.3633 90.1718 -28.7054 -31.106 11.4775 -32.9686 -16.1893 11.413 -41.8242 -37.8441 11.7199 -17.9362 51.1145 17.827 -43.7764 65.4167 18.372 -34.6672 55.5386 11.4663 -30.2365 -22.7101 18.3816 -48.1723 -41.2258 18.6322 -37.22 -49.9064 18.1281 -19.4546 62.0944 11.4196 -20.5393 59.314 28.4606 -46.5397 70.9277 29.0352 -36.8544 -33.1991 29.873 -50.7109 -49.3615 28.878 -39.0246 73.4812 41.7559 -37.3453 64.6226 41.5905 -46.5931 72.9066 55.0971 -37.0309 63.9264 55.2231 -45.5736 67.308 66.4328 -36.116 55.8026 66.7664 -44.1694 43.9561 74.6649 -39.815 57.8297 75.238 -34.1393 15.5401 73.1894 -42.5115 -12.2174 73.8819 -36.4385 15.3978 78.7998 -35.5147 -2.0421 78.412 -29.475 -24.7876 76.5792 -19.7267 -12.534 78.2897 -17.6678 4.34457 81.1227 -24.1642 -55.8163 87.2424 -22.0756 -43.7036 88.3494 -22.3158 -54.1303 74.7924 -34.6324 -44.4888 77.8752 -33.6648 -65.5053 72.5896 -18.5049 -61.9613 65.7536 -32.9553 -43.4634 60.448 -47.4894 -65.1954 57.0723 -29.5143 -59.2654 27.9119 -20.2361 -49.2087 49.1998 -47.3723 -58.9689 43.7199 -35.5858 -66.3446 42.1948 -19.4391 15.5861 70.0443 -46.0785 -33.1287 69.3852 -41.4713 -34.4892 80.0254 -21.5618 48.699 81.1865 -30.8689 34.2382 80.5703 -34.2498 16.5759 81.1153 -31.895 0.727875 81.1872 -12.4148 -68.018 58.2133 -17.8183 14.7802 11.3848 -44.0174 16.9221 17.4452 -50.8066 -13.0864 43.3447 -58.8481 10.4495 43.9097 -61.0858 -9.32663 36.6667 -59.0505 -14.22 51.903 -58.0496 9.45597 51.998 -60.0277 24.246 37.0634 -60.5519 11.3896 35.7436 -60.2776 26.5918 44.6467 -61.0071 25.4626 54.4929 -59.5273 9.00666 58.9948 -57.2808 21.3366 60.5555 -57.2059 -11.1972 57.2725 -56.9708 -22.2438 53.1256 -56.0203 -20.3457 43.0689 -57.3067 -12.1122 35.0371 -58.1689 -14.9222 59.3774 -55.2218 12.2904 31.7184 -59.1973 27.7581 35.2002 -59.4961 33.8971 44.4969 -59.5273 32.7486 55.5991 -57.9969 24.5692 62.5262 -55.8246 9.69026 62.3164 -55.2589 6.31009 84.6215 -9.59067 9.94086 84.9232 -20.0693 19.0219 85.0345 -27.4843 34.7653 85.0426 -29.4209 44.1941 85.119 -26.7866 50.8728 90.6708 -23.6459 25.0482 89.5646 -29.954 12.9607 89.423 -24.9078 5.25504 89.8204 -16.202 3.24726 88.5844 -2.72431 56.928 89.7848 -10.5352 -24.3405 11.4359 -38.3603 -12.0514 9.99387 -37.4698 -25.119 9.92937 -30.186 -35.4745 11.6324 -25.6774 -30.9667 10.1577 -16.9998 61 14.303 -32.6913 42.9826 11.5093 -37.4209 46.9722 14.2133 -40.7944 -19.5197 14.3549 -45.3897 -36.488 14.4595 -35.3605 -33.1887 18.5722 -44.2309 -44.1233 14.4447 -18.6976 -46.6619 18.3928 -28.2843 73.0378 18.3468 -22.5011 68.5692 23.4107 -36.0025 54.8395 22.7093 -45.7182 -26.8814 23.6917 -50.1401 -45.535 23.6628 -38.5063 -41.3718 29.3444 -46.7703 79.1575 29.1894 -23.6481 76.6804 23.4678 -23.1566 72.5633 35.1268 -37.3883 62.517 34.8109 -46.6606 81.5568 42.114 -24.311 80.6278 35.3877 -23.9899 65.2083 48.5511 -46.1149 73.84 48.5629 -37.3 80.6871 55.3477 -24.807 81.674 48.8988 -24.6283 60.7961 61.4452 -45.0316 70.7794 61.119 -36.7907 75.5475 66.5218 -24.6246 78.6126 61.265 -24.804 62.9885 71.049 -35.1951 66.8647 75.4648 -24.4251 71.4756 71.2009 -24.4489 -6.85692 76.1307 -33.2993 15.3904 76.124 -38.9186 -20.6749 74.9933 -28.8188 -18.659 77.1776 -18.9697 -8.319 78.3549 -24.2702 1.96458 81.2562 -18.3514 -55.843 81.314 -28.5504 -49.6254 89.3466 -22.4648 -44.4451 82.6048 -28.9686 -48.6808 77.2324 -34.5316 -64.3131 69.6573 -25.8984 -61.7107 81.899 -20.9783 -58.7835 70.7123 -34.1097 -58.4469 60.3879 -39.1736 -50.5077 68.7809 -40.6817 -54.183 45.9931 -42.2824 -63.8549 52.5711 -32.0063 -63.9335 60.729 -31.1655 -54.957 22.8131 -19.9766 -55.152 28.2115 -29.5499 -11.2032 39.4137 -59.029 -53.076 34.2815 -38.5249 -39.7533 37.3377 -50.1979 -63.1283 33.463 -20.1464 -14.2141 47.7244 -58.4915 -30.0695 77.3155 -20.5683 -21.5757 71.2928 -39.3886 -34.2579 73.9026 -30.84 39.2161 77.6454 -37.0836 52.7939 78.4766 -32.8685 29.7051 73.7336 -42.0511 25.218 79.3136 -35.8083 57.9394 81.7173 -23.2211 62.3879 78.9177 -24.2442 -40.3947 73.317 -36.5831 -38.6256 84.6334 -22.1512 -63.1328 42.5522 -27.8513 -68.0395 51.255 -18.387 -66.6864 57.5891 -24.6884 -46.719 55.3544 -48.0974 -67.0838 65.1042 -17.911 46.0958 83.2499 -28.6417 50.9529 87.3143 -20.6038 25.2513 81.0708 -33.3601 17.9216 83.2039 -29.0153 34.0372 87.1164 -29.0287 5.17719 83.0067 -10.4967 38.7965 10.0502 -33.6129 49.3922 10.0272 -27.3241 14.187 9.93604 -39.5629 27.7425 11.4278 -42.1534 55.0359 10.0176 -19.0023 15.6372 13.9546 -47.8631 32.7953 17.7996 -48.8099 18.8513 36.2745 -60.5645 10.861 39.7903 -60.8997 18.3879 44.3219 -61.3282 25.5709 40.1514 -60.9249 9.98461 48.0417 -60.7803 17.172 53.0256 -60.1664 26.7053 49.7018 -60.6231 9.02446 55.628 -58.8755 15.9709 59.969 -57.3289 23.2776 58.2326 -58.209 44.1377 66.4765 -47.442 32.9162 70.0487 -45.5996 -39.1943 64.8054 -45.7138 55.5401 55.5242 -49.7715 51.248 61.6595 -48.7462 56.0065 41.9561 -51.2803 57.0734 48.8091 -50.5693 46.5132 29.225 -51.505 52.5663 35.3329 -51.6029 17.5056 21.4015 -53.1414 35.7529 23.258 -51.4249 -24.8654 30.3579 -52.8774 -37.595 44.6801 -51.7631 -32.3879 37.056 -52.6379 -36.3175 56.5451 -50.6094 -38.0947 50.8613 -51.419 -25.0582 65.9138 -47.2878 -13.0315 55.2283 -57.5699 -29.5994 42.7331 -54.0504 -17.7196 32.1054 -55.3997 -31.0452 54.9518 -52.1567 14.4814 25.6447 -55.9766 35.6595 31.6265 -55.6473 45.0786 43.2372 -55.4835 44.2682 56.1306 -54.0718 32.613 65.3459 -51.8098 12.2638 66.6664 -50.3239 -16.8788 38.5536 -57.7812 -22.2779 48.1633 -56.692 20.9614 32.7638 -59.3975 31.7892 39.2914 -59.6303 34.2463 50.1711 -58.9927 17.7651 63.1379 -55.4049 29.3959 59.9275 -56.7944 -19.9928 57.0804 -55.4805 -7.23875 60.3598 -55.204 -5.65804 57.5512 -57.0761 -6.0065 51.3551 -59.049 -5.22208 43.4715 -59.8809 -3.96387 36.0409 -59.508 -5.15608 32.8988 -58.5686 -13.5854 23.9342 -52.6112 -9.06415 18.1577 -50.5723 -3.25877 11.387 -43.9714 -26.2193 42.6871 -55.6006 -28.5919 54.4558 -53.8865 -15.0875 33.3422 -56.7928 -18.825 61.9909 -52.8915 13.3618 27.7844 -57.7174 39.8055 43.952 -57.5439 31.8122 33.1212 -57.6826 38.9151 56.1492 -56.0878 28.5307 64.3375 -53.8731 10.8825 65.2576 -52.8604 -38.7872 11.7814 -10.3899 -51.3804 18.2081 -11.1306 75.9308 18.2734 -10.619 64.3713 11.5264 -10.1319 82.6956 29.1294 -10.748 85.6139 42.137 -11.5317 84.7924 55.3455 -12.4133 79.6343 66.3979 -12.9219 71.6684 75.6332 -12.7061 -25.2621 79.1542 -11.2952 -14.3624 78.3676 -10.5812 -55.4174 91.1379 -15.1558 -43.1913 92.0224 -14.9719 -65.5402 74.7902 -11.1558 -61.0434 28.0454 -11.3123 -32.6111 84.6875 -12.5304 -67.2833 42.4839 -10.9141 -68.8802 58.6841 -10.4374 0.543259 81.1205 -6.22162 9.52418 81.0708 -28.7966 8.37571 83.1824 -21.1125 5.53085 86.6678 -9.24443 6.35532 84.3783 -3.72153 9.91936 86.9399 -19.9543 7.46301 84.8157 -15.1358 19.1716 86.9829 -27.1848 13.7244 84.9789 -24.2465 35.0315 83.0667 -31.2656 26.1633 85.0641 -29.3275 42.8321 87.2394 -26.5835 54.4673 83.6613 -21.5529 52.1903 85.3592 -20.4029 -19.1772 9.97014 -34.5627 -29.0093 10.0524 -23.9684 -28.9966 14.3787 -41.6404 -41.4341 14.4313 -27.1351 68.2653 14.2141 -21.6559 -37.1724 23.751 -45.8917 49.1935 70.9503 -42.3484 -14.5648 76.6133 -27.0075 -49.8916 83.6109 -28.9872 -61.1227 76.1114 -27.2671 -55.0601 65.0337 -40.5186 -61.3029 55.8348 -36.2984 -51.2017 23.1727 -29.0783 -45.8464 35.4359 -46.3143 -58.6945 33.6906 -29.4149 -27.3062 73.8878 -30.3291 27.1279 76.7275 -38.8845 -39.6428 78.0687 -29.8339 -66.1326 51.3373 -25.8257 -45.1368 71.2869 -39.6934 -65.8464 63.4174 -25.0094 25.8474 83.1357 -30.877 12.1451 83.2039 -25.5855 25.4849 9.93826 -37.9992 30.078 14.1043 -45.7664 18.448 40.0625 -61.2347 17.9876 48.7616 -61.0605 16.2348 56.7727 -58.8674 -32.2767 62.0154 -49.2051 -13.9368 67.8282 -45.9206 -24.8684 37.0434 -54.8511 -31.525 48.8313 -53.174 26.4258 27.5071 -55.6637 23.2554 67.017 -50.8845 -10.1563 64.4547 -50.0444 -5.75739 54.7064 -58.2557 -5.8419 47.5145 -59.5984 -4.37907 39.5768 -59.8409 -5.9761 14.2111 -47.5917 -0.926239 9.96272 -39.5747 -28.5177 48.5533 -54.7769 -21.6936 37.4949 -56.2842 -25.4638 59.1765 -53.191 -6.8028 30.1029 -57.2111 37.0326 38.1125 -57.7227 23.7499 29.4563 -57.6722 40.6137 50.1599 -57.0286 34.858 61.1842 -54.92 20.4387 65.7863 -53.1414 -9.18353 63.1068 -52.8225 -31.7926 10.1666 -9.9777 -45.2866 14.5017 -10.8326 70.7816 14.2259 -10.5137 79.9368 23.3648 -10.642 84.3683 35.367 -11.0661 85.8037 48.9262 -12.0255 82.7112 61.2146 -12.6921 76.0168 71.4278 -13.3949 -20.2604 77.9924 -11.2248 -49.3845 92.9811 -15.3182 -60.8729 85.6046 -14.2238 -56.4851 22.8762 -11.2211 -64.3531 34.2467 -11.1677 -29.1309 81.0871 -11.445 -37.3177 89.3021 -14.5323 -69.0093 51.6317 -10.622 -67.6547 66.1837 -10.4878 5.71547 83.0356 -4.42811 57.0919 10.0917 -9.5929 6.03725 83.0742 -16.133 5.45968 86.1214 -3.26036 7.12048 86.8962 -15.0149 13.8867 86.9385 -24.0596 25.9809 87.0964 -28.959 -11.6043 122.781 8.68477 -11.2981 122.692 9.69681 -10.977 122.366 10.6888 -10.6656 121.82 11.586 -10.3765 121.078 12.3445 -10.1237 120.175 12.9302 -9.91827 119.156 13.3142 -9.77222 118.067 13.4803 -9.68768 116.96 13.4188 -9.67062 115.887 13.1341 -9.72327 114.899 12.6358 -9.85822 114.021 11.8907 -10.7227 112.914 8.71887 -11.1023 127.944 8.41562 -10.4921 127.767 10.4464 -9.85971 127.122 12.423 -9.24655 126.037 14.2114 -8.68082 124.561 15.7276 -8.18628 122.764 16.8946 -7.78964 120.733 17.6635 -7.49306 118.563 17.9719 -7.3344 116.363 17.8451 -7.30846 114.233 17.2735 -7.41818 112.273 16.2733 -7.69992 110.534 14.786 -8.2775 109.033 12.4727 -9.35776 108.08 8.5424 -9.95609 132.998 7.96262 -9.04932 132.737 10.981 -8.11142 131.781 13.9103 -7.20317 130.173 16.5602 -6.3661 127.988 18.8075 -5.64024 125.328 20.5468 -5.05821 122.318 21.6961 -4.64821 119.099 22.2025 -4.42282 115.824 22.0238 -4.39761 112.65 21.1845 -4.56294 109.746 19.6875 -4.97073 107.211 17.3891 -7.42485 103.383 8.21767 -8.20483 137.879 7.33685 -7.0141 137.537 11.2983 -5.78555 136.284 15.1374 -4.59557 134.176 18.611 -3.49826 131.313 21.5559 -2.54626 127.827 23.8351 -1.78407 123.883 25.3417 -1.24654 119.664 26.006 -0.958862 115.367 25.7954 -0.932175 111.202 24.7018 -1.15683 107.411 22.6977 -1.71957 104.094 19.6809 -4.90993 99.0215 7.7476 -5.87453 142.516 6.54797 -4.41762 142.098 11.3954 -2.91623 140.566 16.0879 -1.46082 137.989 20.3341 -0.119568 134.489 23.9337 1.04373 130.229 26.72 1.97571 125.407 28.5617 2.63261 120.249 29.3728 2.98405 114.998 29.1163 3.01297 109.897 27.8025 2.72233 105.248 25.381 2.00388 101.315 21.4907 -1.90344 95.1527 7.08847 -2.99854 146.84 5.6071 -1.29695 146.353 11.2694 0.45578 144.564 16.7478 2.15439 141.556 21.7035 3.72029 137.47 25.9059 5.07858 132.497 29.1585 6.16626 126.869 31.3079 6.93364 120.848 32.2555 7.3429 114.718 31.9552 7.37701 108.764 30.4219 7.02557 103.335 27.5927 6.15958 98.8146 22.9217 1.31064 91.5316 5.92221 0.38089 150.789 4.52833 2.30194 150.239 10.9231 4.28081 148.22 17.1066 6.19814 144.825 22.7007 7.96496 140.213 27.4444 9.49823 134.6 31.1152 10.7268 128.246 33.5419 11.592 121.45 34.611 12.0547 114.531 34.2722 12.0932 107.81 32.5417 11.6995 101.628 29.4492 10.7461 96.4739 24.1724 4.21408 154.305 3.32648 6.32714 153.7 10.3604 8.50323 151.481 17.1593 10.6111 147.749 23.3102 12.5537 142.677 28.5254 14.2397 136.505 32.5617 15.5905 129.519 35.2301 16.5418 122.048 36.4053 17.0504 114.439 36.0331 17.0919 107.05 34.1306 16.6589 100.258 30.74 15.7233 94.7279 25.791 8.4454 157.338 2.02082 10.7201 156.687 9.59079 13.0608 154.299 16.9057 15.3288 150.283 23.5229 17.4189 144.827 29.1348 19.2332 138.186 33.4774 20.6856 130.67 36.3481 21.7103 122.631 37.6123 22.2575 114.445 37.2119 22.3019 106.495 35.1648 21.8259 99.2209 31.4888 20.825 93.3985 26.5962 13.0133 159.842 0.628418 15.4163 159.154 8.62471 17.8875 156.633 16.3489 20.283 152.392 23.3369 22.4903 146.631 29.2623 24.4054 139.618 33.8481 25.9394 131.682 36.879 27.0211 123.193 38.2151 27.5987 114.549 37.7917 27.6461 106.153 35.6297 27.1561 98.4202 31.8069 26.2026 92.3353 26.7949 17.8512 161.781 -0.829224 20.3468 161.067 7.47549 22.9136 158.449 15.497 25.4011 154.045 22.7534 27.6929 148.063 28.9072 29.6814 140.78 33.6686 31.2747 132.539 36.8168 32.3972 123.724 38.2032 33.0378 114.732 37.7776 33.1394 106.004 35.5511 32.5863 97.9694 31.5919 31.965 91.3737 26.2299 28.0317 162.761 5.43213 30.6652 160.074 13.6627 33.218 155.556 21.1096 35.5698 149.416 27.4236 37.6109 141.943 32.3103 39.2458 133.487 35.5408 40.3779 124.44 36.8931 41.0778 115.182 36.3645 41.3685 106.251 34.3441 40.5714 98.0124 30.0964 39.483 90.8428 24.5869 25.47 163.494 -3.09354 33.2647 163.97 -5.38011 35.8181 163.241 3.11665 38.442 160.564 11.3176 40.9852 156.062 18.737 45.5605 150.164 24.1539 46.9596 143.512 28.5313 48.7731 136.143 30.9839 48.1273 125.112 34.1698 49.5294 116.289 34.2469 49.9179 107.113 32.426 48.6893 98.8206 27.8254 47.2243 91.628 22.178 38.4532 163.455 -6.88224 40.9503 162.742 1.42916 43.5171 160.123 9.45065 47.7967 155.173 17.3906 53.1913 129.392 30.4605 57.4434 120.187 30.353 57.7555 108.881 29.1971 56.501 100.349 24.8901 54.4406 93.4897 18.651 43.5401 162.322 -8.34137 45.9453 161.636 -0.335434 50.4154 158.124 9.95186 48.4521 160.589 -9.73451 50.7305 159.939 -2.15119 54.3182 157.614 6.23138 63.8033 119.565 25.3861 63.9101 110.06 24.7226 62.901 102.219 20.9027 60.7679 96.0876 14.7059 53.1171 158.28 -11.0416 55.2347 157.675 -3.99215 58.19 155.872 2.80748 67.2969 119.573 21.0355 67.7537 111.25 20.0049 67.3733 103.92 17.1459 65.043 98.1407 11.5222 57.4671 155.429 -12.245 59.394 154.879 -5.83163 62.1915 152.982 0.103493 69.6977 119.848 16.5973 70.8076 112.269 15.649 70.4413 106.039 12.8968 68.5447 100.725 8.19913 61.4382 152.077 -13.326 63.1457 151.59 -7.6422 65.78 149.427 -2.04368 72.9933 113.56 10.1899 72.6093 109.123 7.23009 71.4208 102.692 -5.93692 66.1158 146.314 -14.556 67.6306 145.656 -8.87371 68.937 144.641 -4.73136 71.1249 140.238 -3.87204 72.9303 135.432 -3.25369 73.955 129.872 0.956131 73.8222 124.051 6.88754 69.9913 140.169 -15.5436 71.876 138.749 -9.69077 -11.3759 117.634 8.77818 63.3644 132.244 19.7795 58.7861 144.777 19.4836 67.0122 129.764 16.8798 70.6155 138.855 5.83472 63.4756 148.383 9.49515 62.8195 133.184 17.464 65.3848 131.323 15.0306 58.8061 141.77 16.8434 60.1659 137.06 18.4575 67.3103 131.311 12.1873 59.8997 144.627 13.2097 68.6945 133.697 9.63008 62.6779 144.573 10.0134 68.5944 137.783 7.94185 66.1373 141.972 8.0323 63.5846 133.449 17.7798 66.1373 131.523 15.497 59.6002 142.393 17.3936 68.0977 131.472 12.4801 69.5345 133.885 9.64862 63.3399 145.241 10.1906 69.4233 138.273 7.76169 66.8358 142.631 7.99524 70.3049 128.194 12.73 72.5233 132.983 6.70811 70.8876 139.701 3.88477 57.3232 138.168 24.4749 62.3546 131.157 22.7541 67.3926 146.279 4.41341 62.6852 151.575 8.16354 58.5355 152.152 14.7897 56.0087 147.327 21.699 67.4163 128.203 18.5732 61.7689 138.738 16.9517 60.1192 142.066 15.9826 64.1066 135.62 16.4201 65.946 133.39 14.7222 67.2903 132.939 12.8657 68.2793 135.009 11.4955 67.7633 138.355 10.7993 65.6517 141.685 10.9157 62.861 143.967 11.7343 60.6115 144.197 13.6175 60.9733 137.35 18.8824 60.8999 145.33 13.6701 65.4233 132.097 14.9091 64.194 132.052 16.3667 63.0381 133.984 17.1452 60.5626 137.576 18.0038 59.2072 139.485 18.0623 59.179 141.815 16.5439 61.4122 134.887 18.1943 67.2154 132.019 12.4453 66.4087 131.047 13.613 59.0411 143.572 15.1678 60.1096 144.464 13.3409 68.5151 134.306 10.3248 68.0821 132.189 10.829 61.149 144.974 11.4258 62.7831 144.363 10.5976 68.2882 138.059 8.96576 68.9548 135.624 8.61655 64.3898 143.534 8.86493 66.015 141.892 9.0614 67.5801 139.948 7.72906 62.5229 143.343 13.2497 61.0674 143.946 13.8533 64.8184 141.126 13.1519 66.8854 138.187 12.9695 67.3889 133.651 13.1986 66.7994 134.635 14.1328 65.5909 137.242 14.9847 63.4504 140.109 15.2998 61.4471 142.587 14.915 69.5049 129.705 12.5735 72.1177 136.32 4.77299 71.5801 133.393 8.20432 59.2932 134.201 23.8217 59.9546 137.579 21.2023 65.0801 149.359 5.97188 67.3192 144.395 6.27661 56.9459 150.409 18.5398 60.5959 148.729 14.5628 56.1303 142.947 23.7928 65.2135 129.283 20.9902 68.9562 127.783 15.7988 69.2988 142.988 3.69571 60.547 152.61 11.1863 71.7477 130.025 9.56706 72.9533 131.626 4.33482 71.3592 125.34 12.6099 70.8958 140.288 0.80043 60.4142 128.485 25.3476 53.3566 137.368 28.099 60.1785 154.454 5.65604 66.8521 148.152 1.54631 50.4599 149.321 23.457 54.4777 155.19 14.0957 66.8083 125.61 19.6379 60.7657 140.445 16.6648 62.9418 137.1 16.8738 65.1157 134.361 15.6497 66.6044 132.832 13.8036 67.9094 133.728 12.0538 68.246 136.622 11.0736 66.8721 140.078 10.7355 64.2593 143.015 11.2634 61.6205 144.401 12.4393 60.0361 143.345 14.9402 62.2167 135.13 18.5205 60.0235 144.253 15.7061 59.9835 139.927 18.519 64.9258 132.28 16.7923 67.1776 131.236 14.0179 68.9044 132.335 10.9928 69.7696 135.952 8.50682 68.3794 140.573 7.55853 64.9874 144.212 8.9287 61.9957 145.611 11.7513 64.3364 132.866 16.125 59.6128 139.75 17.5893 61.7458 135.583 17.8214 66.3694 131.791 13.6738 59.3318 143.457 15.0788 67.9657 132.894 11.3154 61.3218 144.772 11.7684 68.6738 136.094 9.51442 64.4194 143.374 9.69681 67.3615 140.039 8.78485 61.7844 144.005 13.1407 63.6091 142.365 13.2305 65.9438 139.693 13.0347 67.4912 136.673 12.9257 66.9492 133.714 13.8169 66.3464 135.861 14.5969 64.5685 138.672 15.2167 62.3546 141.447 15.1878 60.8028 143.341 14.6881 70.7571 131.099 10.3129 71.4393 136.084 6.66586 61.5272 134.531 20.6551 65.2209 146.715 7.63861 59.5052 147.331 17.3142 58.8328 141.204 20.8056 65.3699 130.706 18.6303 68.3045 129.387 14.7556 69.1838 141.704 5.63008 61.9527 149.098 11.8158 72.6026 127.566 8.47568 72.3965 136.097 1.70497 56.5247 132.614 27.6949 63.6929 151.685 3.08774 52.022 153.009 18.9305 51.1249 144.226 26.8356 63.9865 126.508 22.5154 69.2202 125.238 16.535 69.0541 144.317 0.692924 57.2187 155.661 9.56113 67.741 135.282 12.8723 67.7907 134.283 12.7419 71.6609 136.111 -15.9358 72.3201 105.969 -15.2641 74.0417 117.157 -16.1597 75.2065 106.525 -16.2769 79.8634 107.308 -17.6552 91.3867 109.457 -21.1013 88.3001 106.164 -20.0804 79.2991 114.295 -17.6596 83.595 107.064 -18.7273 84.1132 113.461 -18.9875 85.3967 106.488 -19.2404 74.3568 135.883 -16.7173 78.9611 134.305 -18.0244 82.9529 133.126 -19.1618 84.9244 134.248 -19.7638 86.99 136.683 -20.4237 90.4947 139.433 -21.5114 93.7133 139.447 -22.4507 94.9967 133.968 -22.6969 95.4994 138.023 -22.9393 92.0955 130.536 -21.7701 88.3638 126.832 -20.5942 85.6599 124.96 -19.7608 81.4537 123.062 -18.4885 74.8654 115.813 -16.3999 75.0456 119.162 -16.437 77.3477 106.901 -16.9108 90.4702 107.067 -20.7351 76.8324 114.944 -16.9597 81.866 106.977 -18.232 81.8267 113.709 -18.3173 87.5994 113.172 -20.0641 72.8517 136.463 -16.4526 76.6211 135.168 -17.3616 81.0749 133.56 -18.6235 84.1259 133.478 -19.5125 85.7941 135.222 -20.0404 95.5972 136.005 -22.9201 93.7963 132.209 -22.3054 90.1255 128.604 -21.1495 87.0197 125.694 -20.1745 83.7714 124.169 -19.1907 77.8207 121.529 -17.3927 90.9181 111.196 -21.0087 72.5032 108.223 -2.09484 75.2258 128.38 -2.75545 73.0089 134.723 -11.6266 74.987 120.808 6.20024 75.9205 117.527 -9.42607 74.9633 116.553 -9.73895 78.1707 127.11 -4.45851 76.4373 109.876 3.38505 75.8359 108.157 -4.45555 81.7666 127.621 -5.91393 76.6804 114.045 7.19746 76.6345 120.205 6.07716 82.3917 119.936 3.28125 80.7256 108.785 -7.12913 83.5075 117.685 2.46864 82.9974 115.277 1.76725 92.4261 111.042 -14.8022 90.3783 110.634 -9.15768 95.4037 129.402 -7.5814 96.0984 136.789 -17.4832 82.3405 119.579 -9.26593 80.8413 115.369 -9.65369 85.2625 124.587 -1.81087 84.8272 129.21 -7.48057 85.7451 117.806 -3.52579 86.8232 121.414 -9.52765 85.9097 118.886 0.325172 87.199 131.776 -9.16064 88.7516 134.416 -11.1099 90.1003 121.341 -5.78863 94.2515 126.991 -9.62626 89.9564 123.624 -10.2795 92.7753 126.838 -11.8772 90.8128 122.536 -2.9371 84.8317 108.856 -9.63812 86.0135 114.746 -2.76731 86.5792 108.162 -11.0609 90.7371 125.097 -2.53673 73.043 106.875 -10.3143 75.0849 116.366 -9.04127 75.9716 116.037 -9.92357 74.6763 117.226 -13.3023 76.6107 127.495 -3.81347 75.8715 107.338 -10.9986 74.2945 131.787 -6.83849 77.6673 130.92 -7.97213 79.9509 127.383 -5.12654 76.4239 117.364 7.49699 79.6098 120.36 4.88643 79.5468 114.305 5.90663 78.3479 108.471 -5.80049 80.1169 108.117 -13.6233 81.3351 130.611 -9.06203 83.483 116.149 2.62879 83.0011 114.026 3.50368 91.761 108.672 -14.126 92.1266 109.889 -18.0081 93.8845 131.645 -7.45462 96.1799 134.037 -11.4887 81.9698 117.706 -6.57603 78.9833 118.659 -9.33636 78.2737 115.773 -9.7916 81.6235 116.026 -5.37269 79.8693 114.493 -14.8934 83.5372 128.01 -6.78511 83.5372 116.896 -3.09725 86.2686 119.313 -6.65833 84.7701 120.477 -9.37344 85.7155 117.814 -1.09836 82.8336 116.065 -0.2435 84.0376 118.31 1.24899 82.4806 122.05 -11.5955 87.1182 124.405 -12.0018 88.0999 133.229 -10.2009 92.2897 123.818 -7.20253 93.4241 126.82 -10.8934 91.5661 125.3 -11.0513 89.9394 122.25 -7.90022 90.4806 121.459 -4.05592 93.4426 125.358 -4.55564 95.0537 127.861 -8.4207 86.6067 133.598 -11.5288 88.5707 135.852 -12.9256 89.8207 126.465 -12.6372 92.9117 128.817 -13.9117 95.0404 130.344 -13.2941 82.9299 109.011 -8.36213 85.6702 113.376 -2.09262 83.9642 114.927 -0.734322 83.2265 115.122 -10.3417 85.751 115.129 -7.31301 84.1511 107.994 -14.6242 84.6693 113.83 -16.0203 88.6597 113.95 -5.64331 88.16 112.314 -5.20661 87.6284 114.616 -8.44739 91.1709 112.257 -10.1186 89.261 107.896 -12.7825 84.4929 131.425 -10.2884 88.4714 122.412 -9.79086 88.4424 120.148 -1.065 85.9995 121.323 0.560211 86.1099 130.434 -8.26055 87.8345 118.872 -4.42515 91.1968 133.419 -9.01013 88.8191 128.275 -4.56676 81.5976 122.873 0.828606 76.9644 122.205 2.94316 81.4612 110.902 -0.296883 85.7392 110.723 -3.63627 75.9894 134.176 -12.4407 80.1251 132.842 -13.5803 83.9442 132.485 -14.6398 85.946 134.022 -15.3694 88.0213 136.327 -16.4059 91.3103 138.582 -16.933 94.3976 138.399 -17.1755 95.3962 132.764 -17.8798 92.8436 130.018 -17.5358 89.2928 126.974 -16.3569 86.4413 124.91 -15.6051 82.4754 123.01 -14.5108 91.896 112.486 -14.9156 82.8751 115.658 -0.544518 86.2805 115.188 -4.50003 76.1644 116.572 -8.83145 75.4185 115.882 -13.8516 76.0488 119.438 -12.6624 75.6543 131.457 -7.41829 79.4986 117.656 6.72963 79.0322 110.008 1.65974 78.0128 107.635 -12.0211 79.5268 130.758 -8.47779 82.1877 117.111 4.66623 91.3177 107.267 -17.6789 94.3523 135.804 -11.3701 79.199 116.397 -7.74822 77.416 115.064 -14.3959 84.1318 118.571 -6.36101 83.3881 117.034 -0.32283 85.0712 123.225 -11.8706 91.807 124.332 -9.03386 92.9703 124.047 -5.59067 87.5542 134.782 -12.3095 91.394 127.808 -13.2948 94.0891 129.464 -13.8324 83.6906 111.07 -2.07482 83.6929 113.909 0.096817 83.6402 115.586 -6.22978 82.2292 108.145 -14.0185 82.2626 114.108 -15.3812 85.9475 107.439 -15.3597 88.2578 113.456 -17.1125 88.2163 114.084 -11.2463 88.9763 106.666 -16.7455 83.1168 130.614 -9.81607 88.5233 125.332 -12.2287 88.5596 122.718 -0.990116 88.1236 120.568 -7.14322 91.5424 136.545 -12.2591 90.1959 130.708 -6.46555 83.1835 123.375 -0.566017 79.5957 122.783 1.99635 74.3672 117.295 7.88031 87.5631 110.072 -6.37584 74.1744 134.769 -11.9588 77.8467 133.564 -12.9456 82.0565 132.388 -14.1586 85.1416 133.114 -14.9897 86.8728 135.108 -15.8513 96.088 134.721 -17.6366 94.3716 131.254 -17.9443 90.9752 128.478 -16.8885 87.8886 125.817 -15.9581 84.6456 124.017 -15.1551 78.798 121.528 -13.6567 91.6357 111.58 -17.9377 84.2971 115.519 -2.50114 83.7426 120.625 1.77541 88.5833 114.451 -6.97195 88.0828 118.976 -2.26166 92.4098 128.085 -4.46593 90.9233 113.198 -10.8133 95.8359 131.912 -12.44 88.8584 109.104 -9.27186 75.6269 121.857 3.65715 78.5266 120.452 -11.3783 85.7325 132.479 -10.7807 87.2109 126.227 -3.03349 82.3865 115.792 -3.39975 85.5323 114.683 -10.7629 88.5351 113.906 -14.361 85.1809 114.135 -13.5766 82.7372 114.618 -13.0324 80.3171 114.815 -12.4815 77.8096 115.265 -12.0804 75.7054 115.895 -11.7089 74.7512 116.96 -11.2522 75.744 118.732 -10.8711 69.843 141.836 -9.30819 67.9679 143.189 -15.0231 72.8213 119.941 10.9157 71.6506 104.986 0.684029 69.456 100.727 -14.47 73.995 114.29 6.9995 73.1142 110.85 3.56299 72.9748 136.288 -10.6843 71.3295 137.732 -15.8765 71.3963 104.177 -15.1099 74.1581 133.103 -5.27631 75.2109 128.825 -1.40012 75.073 122.123 6.21136 74.2901 118.616 8.83824 74.0083 114.133 7.99301 73.4597 110.347 4.91832 72.8198 106.93 -0.967873 82.4554 113.29 2.18171 79.572 111.521 3.2642 80.1607 112.304 4.14649 -10.1429 113.254 10.7089 72.7842 105.382 -7.25814 -5.83078 104.99 14.0223 -2.85619 101.143 15.3198 0.690811 97.9167 16.3207 4.67302 94.8688 16.9057 66.3361 95.2358 0.153168 -11.892 122.645 7.67271 -12.1529 122.274 6.67995 -12.3643 121.685 5.78059 -12.534 120.909 5.0184 -12.626 119.978 4.42898 -12.646 118.938 4.04047 -12.5956 117.84 3.87142 -12.4777 116.734 3.92851 -12.2953 115.674 4.20803 -12.0595 114.707 4.70033 -11.7659 113.862 5.43361 -11.6777 127.672 6.3856 -12.1989 126.934 4.40896 -12.6304 125.765 2.6199 -12.9514 124.219 1.10294 -13.1465 122.369 -0.071487 -13.2072 120.301 -0.848503 -13.1242 118.113 -1.18808 -12.8996 115.91 -1.07389 -12.5437 113.798 -0.511894 -12.0803 111.876 0.468269 -11.5131 110.201 1.90664 -10.7279 108.684 4.35558 -10.8109 132.596 4.94501 -11.5843 131.502 2.01563 -12.2226 129.769 -0.634972 -12.6979 127.479 -2.88298 -12.987 124.738 -4.62311 -13.0768 121.674 -5.77454 -12.9633 118.431 -6.28242 -12.6504 115.16 -6.12376 -12.1492 112.018 -5.30077 -11.4627 109.168 -3.83942 -10.636 106.694 -1.7434 -9.32736 137.352 3.37615 -10.3401 135.919 -0.462959 -11.1772 133.648 -3.93729 -11.8 130.646 -6.88298 -12.1796 127.054 -9.1636 -12.2968 123.039 -10.6717 -12.1477 118.789 -11.3375 -11.7385 114.502 -11.1299 -11.0883 110.379 -10.0578 -10.1881 106.649 -8.12857 -9.11383 103.415 -5.39493 -7.24765 141.871 1.70126 -8.48584 140.119 -2.99197 -9.509 137.344 -7.23812 -10.2704 133.674 -10.8392 -10.7339 129.283 -13.627 -10.8777 124.375 -15.4702 -10.6953 119.179 -16.2843 -10.1948 113.94 -16.03 -9.38 108.916 -14.6924 -8.24042 104.41 -12.2576 -6.81169 100.55 -8.6587 -4.60298 146.087 -0.054435 -6.04802 144.042 -5.53284 -7.24321 140.802 -10.4893 -8.13144 136.519 -14.6932 -8.67267 131.393 -17.9473 -8.84024 125.664 -20.0997 -8.62744 119.599 -21.0494 -8.04318 113.482 -20.7529 -7.08603 107.625 -19.1759 -5.77963 102.353 -16.3577 -4.12698 97.8226 -12.2769 -1.43115 149.939 -1.86574 -3.0623 147.631 -8.04924 -4.41095 143.974 -13.6441 -5.41411 139.139 -18.3892 -6.02504 133.353 -22.0622 -6.21411 126.886 -24.4919 -5.97388 120.04 -25.564 -5.31401 113.136 -25.2289 -4.25377 106.509 -23.4776 -2.81467 100.514 -20.3577 -0.857285 95.3878 -15.9247 2.22112 153.371 -3.70596 0.427597 150.832 -10.5049 -1.05525 146.812 -16.6565 -2.15849 141.496 -21.8739 -2.82948 135.134 -25.9124 -3.03783 128.024 -28.5838 -2.77313 120.497 -29.7627 -2.04877 112.906 -29.3942 -0.897324 105.606 -27.4954 0.658188 98.9955 -24.1115 2.66969 93.7269 -19.7623 6.30045 156.332 -5.54841 4.37052 153.602 -12.8633 2.77497 149.275 -19.4821 1.58868 143.556 -25.0954 0.866531 136.711 -29.4409 0.642624 129.061 -32.3147 0.926575 120.963 -33.5833 1.70657 112.796 -33.1866 2.9455 104.941 -31.144 4.64336 97.9398 -27.491 6.69341 92.8958 -23.465 10.7483 158.78 -7.36639 8.71009 155.896 -15.0906 7.02557 151.328 -22.08 5.77182 145.289 -28.0077 5.00963 138.061 -32.5957 4.77312 129.983 -35.6311 5.07339 121.431 -36.9701 5.89712 112.807 -36.5512 7.20499 104.513 -34.3944 9.05486 97.2925 -30.556 11.2406 92.5807 -26.9734 15.4979 160.678 -9.13321 13.3818 157.684 -17.1547 11.6321 152.94 -24.4125 10.3309 146.669 -30.5671 9.53901 139.163 -35.3323 9.29359 130.775 -38.4834 9.60574 121.895 -39.8743 10.4606 112.939 -39.4398 11.8189 104.326 -37.2 14.0588 96.9514 -33.3467 16.6434 92.4725 -29.9718 23.0545 162.362 -11.6177 20.8829 159.289 -19.8483 19.0871 154.421 -27.2967 17.7525 147.986 -33.6129 16.9392 140.284 -38.5019 16.6871 131.675 -41.736 17.0074 122.563 -43.1632 17.8853 113.373 -42.7169 19.2791 104.535 -40.4185 21.2106 97.0107 -36.2628 23.42 92.7149 -32.4103 30.8573 162.843 -13.8754 28.6938 159.781 -22.0763 26.9055 154.931 -29.4973 27.9242 148.749 -36.2635 26.8335 141.896 -40.4148 27.1308 134.403 -43.1558 24.8332 123.19 -45.306 25.7073 114.033 -44.8611 27.096 105.227 -42.5709 28.977 97.7766 -38.3173 31.01 93.1798 -33.7501 36.0984 162.352 -15.1936 33.9816 159.358 -23.2144 33.3826 154.015 -31.9877 31.2043 127.797 -45.1888 41.2721 161.261 -16.3458 39.5527 157.252 -27.2589 34.1114 118.081 -46.7154 35.274 106.958 -44.7195 36.8836 99.3018 -39.4702 38.9366 94.263 -33.7738 46.3034 159.583 -17.3163 44.8502 156.854 -26.2038 42.5748 117.521 -46.6924 42.9789 108.591 -45.2964 44.501 100.951 -40.6187 47.291 94.8665 -33.4268 51.1197 157.345 -18.0904 49.9772 155.213 -25.3275 48.2059 117.708 -45.7612 48.7168 109.961 -44.0908 50.3568 102.509 -40.027 53.4827 96.7468 -32.9174 55.6498 154.578 -18.6568 54.8409 152.392 -25.0769 52.7864 118.209 -43.2581 53.6228 111.351 -41.2941 55.2413 104.656 -38.0407 58.7364 99.47 -31.8202 59.8286 151.323 -19.0083 59.0656 148.888 -25.0487 58.6371 112.647 -37.2162 60.0213 108.358 -34.3455 66.7364 101.215 -23.2055 64.3461 145.393 -20.1264 63.2939 144.171 -24.2324 64.6093 139.563 -25.8976 66.0209 134.24 -27.224 64.8265 128.137 -31.0498 61.4092 121.344 -36.0211 68.4454 138.292 -21.5291 45.453 130.809 -41.5454 41.6524 143.401 -39.21 50.101 128.433 -40.9145 59.0129 137.957 -33.7931 50.9314 147.376 -33.4765 46.2433 131.854 -39.2708 49.7303 130.061 -38.4737 43.1271 140.511 -36.8678 43.4601 135.718 -38.774 52.9147 130.138 -37.0872 45.9668 143.509 -34.5197 55.443 132.636 -35.7653 50.0284 143.557 -33.3201 56.2208 136.784 -34.4582 54.0432 141.001 -33.4001 46.726 132.091 -39.9847 50.1181 130.245 -39.3182 43.4927 141.099 -37.7857 53.4219 130.291 -37.7879 56.1362 132.807 -36.2509 50.4828 144.208 -33.8546 57.0422 137.29 -34.817 54.643 141.653 -33.7723 55.0842 126.961 -39.0439 60.0643 131.807 -35.2485 60.3282 138.873 -32.42 37.8104 136.599 -42.3736 42.95 129.62 -43.6504 57.0126 145.449 -31.2322 50.941 150.632 -32.0693 43.8723 150.975 -35.442 38.0876 145.889 -39.6926 49.5108 126.802 -42.685 45.605 137.439 -38.4211 44.6923 140.828 -36.8618 47.893 134.316 -39.1277 50.3776 132.134 -38.6198 52.5225 131.75 -37.7278 54.0743 133.869 -37.1666 53.9713 137.248 -36.4482 52.0865 140.596 -35.554 49.2647 142.875 -34.8407 46.3531 143.052 -35.2278 43.9086 135.978 -39.5785 46.5533 144.179 -35.4761 49.8356 130.846 -38.4441 47.9983 130.76 -39.0142 46.6052 132.656 -39.1566 44.0339 136.249 -38.6168 42.8387 138.17 -38.0111 43.6017 140.564 -36.8188 44.6634 133.535 -39.1929 52.6931 130.851 -37.3023 51.3763 129.845 -37.8198 44.2029 142.382 -35.6615 46.0758 143.337 -34.7362 54.9106 133.214 -36.2776 54.299 131.078 -36.3859 47.9753 143.917 -33.7041 49.8059 143.321 -33.8591 55.4037 137.025 -35.1736 56.1837 134.599 -35.1328 52.1021 142.547 -33.2281 53.387 140.878 -34.1972 55.4482 138.973 -33.8331 48.1733 142.19 -35.9091 46.6141 142.785 -35.6607 50.1892 139.952 -36.9649 52.0658 136.997 -37.7961 52.4194 132.447 -38.0845 51.4089 133.398 -38.5931 49.903 135.983 -38.7555 47.893 138.861 -37.994 46.3798 141.377 -36.6995 54.5637 128.486 -38.5583 60.8235 135.305 -33.5811 58.5718 132.382 -36.0552 39.8159 132.627 -42.8845 41.7955 136.119 -41.0087 54.1663 148.483 -31.4153 55.9539 143.477 -32.6654 40.5373 149.092 -37.6693 45.7748 147.539 -36.2109 37.1201 141.421 -41.3319 46.3145 127.804 -43.6823 52.3171 126.477 -40.9857 59.1168 142.133 -31.5495 47.4993 151.562 -33.5084 58.2159 128.907 -37.3334 61.9319 130.28 -33.5996 55.9843 124.214 -39.8068 61.9357 139.512 -29.8517 40.0547 127.159 -44.8752 32.5262 135.693 -43.2641 50.1396 153.648 -28.7343 58.0699 147.457 -28.6001 32.4395 147.874 -38.275 40.7865 154.09 -32.8062 48.5485 123.891 -44.2502 44.8917 139.171 -37.7145 46.6541 135.791 -38.9245 49.1683 133.076 -38.9875 51.4356 131.609 -38.169 53.4767 132.569 -37.389 54.253 135.498 -36.8633 53.2321 138.983 -35.9892 50.709 141.926 -35.1558 47.8345 143.294 -34.7866 45.1675 142.152 -35.9951 45.1713 133.754 -39.9113 44.7331 143.025 -36.6728 43.2421 138.583 -38.8326 48.3979 130.967 -39.812 51.8085 130.009 -38.6079 54.898 131.214 -36.9842 56.9414 134.926 -35.5317 56.2052 139.595 -34.146 52.5633 143.214 -33.6329 48.5055 144.528 -34.4611 48.2504 131.567 -38.9341 43.4311 138.451 -37.8428 45.1446 134.246 -39.058 51.3088 130.573 -37.8872 44.498 142.267 -35.7379 53.9312 131.767 -36.7632 47.939 143.698 -34.0771 55.4586 135.033 -35.7586 51.6817 142.351 -33.9384 54.6942 139.021 -34.6087 47.6009 142.867 -35.4487 49.1112 141.201 -36.4341 51.2183 138.511 -37.4098 52.6196 135.479 -38.0192 51.7129 132.488 -38.381 50.7646 134.609 -38.7822 48.8984 137.414 -38.4633 47.013 140.215 -37.3683 45.949 142.148 -36.1946 56.8747 130.003 -37.3653 59.271 135.122 -34.8148 43.4222 133.063 -41.3875 53.4219 145.768 -32.7803 43.3933 146.037 -37.8806 41.0259 139.775 -40.1938 47.7811 129.312 -41.5937 52.3542 128.12 -39.7631 57.9468 140.752 -33.0391 48.3905 148.009 -34.6435 59.466 126.101 -36.8574 62.769 134.918 -31.1499 35.337 130.917 -44.7544 54.5184 150.949 -28.3414 36.1436 151.734 -35.4628 31.2473 142.63 -41.2578 44.4825 124.75 -45.068 52.223 123.767 -42.08 60.3461 143.735 -29.0309 45.5294 154.723 -30.4826 52.8762 134.088 -38.0496 52.9993 133.095 -37.9288 65.4323 107.528 -26.9171 67.9487 126.833 -28.5074 70.5081 134.319 -20.2732 62.6749 119.616 -35.7438 72.6589 117.278 -23.098 72.2444 116.442 -22.3254 71.3889 125.795 -28.3703 65.5901 109.029 -33.5959 69.3603 107.637 -26.6398 75.0515 126.757 -29.2103 63.5342 113.12 -36.9642 64.2148 119.206 -36.4696 70.5985 118.958 -37.1681 74.9121 108.319 -27.0453 71.9998 116.742 -36.9872 71.9612 114.391 -36.0381 88.8094 110.578 -26.9527 84.1169 110.131 -30.6072 87.2695 128.749 -35.4465 93.0867 136.547 -27.8016 77.576 118.913 -26.6205 76.2215 114.981 -25.3972 75.678 123.817 -34.645 78.3012 128.686 -29.8368 77.0845 117.097 -33.174 81.2906 120.822 -28.8656 75.1464 118.021 -36.546 81.172 131.293 -29.8079 83.4949 133.994 -29.1154 81.9364 120.685 -33.7567 87.4282 126.444 -33.002 84.2007 123.162 -29.9962 87.3956 126.405 -30.3062 80.9881 121.747 -36.5927 79.7217 108.446 -27.144 76.8458 113.737 -33.7746 81.9683 107.792 -26.8548 80.6767 124.289 -36.9998 70.1714 106.645 -20.1493 72.022 116.241 -22.9037 72.8888 115.884 -22.6383 73.3892 117.141 -19.0068 69.7533 125.895 -28.1175 72.9185 107.101 -21.1147 69.1965 130.484 -24.8144 72.6997 129.897 -25.4795 73.1742 126.294 -28.81 63.1531 116.358 -37.3542 67.3688 119.359 -37.0517 66.7935 113.286 -37.5877 72.197 107.977 -26.8719 77.8994 107.939 -21.2215 76.3201 129.88 -26.4826 71.9026 115.225 -37.0598 71.0463 113.066 -37.4483 87.9791 108.369 -27.0824 90.3568 109.787 -24.1197 85.8919 131.003 -34.834 89.9668 133.538 -32.7744 75.3807 117.261 -28.6335 74.2589 118.273 -24.8974 74.5081 115.555 -23.9173 74.7186 115.201 -29.2771 78.273 114.414 -20.2702 76.9377 127.337 -29.5447 74.9877 116.19 -32.3036 79.228 118.61 -30.8741 79.7455 119.59 -27.752 75.7618 117.015 -35.1966 72.8947 115.268 -34.2906 73.0867 117.445 -36.2917 78.8617 122.15 -25.111 82.7305 124.079 -27.0743 82.4725 132.777 -29.4795 84.5114 123.193 -33.8509 87.4141 126.338 -31.4821 85.952 124.849 -30.2847 82.9247 121.687 -31.9314 81.3232 120.724 -35.4257 84.0399 124.603 -36.7655 87.4445 127.25 -34.4856 81.9223 133.222 -27.574 84.3016 135.509 -27.551 85.3181 126.104 -28.0604 88.5803 128.469 -28.7521 90.0231 129.941 -30.4819 77.43 108.57 -27.2025 76.3149 112.625 -34.143 74.121 114.113 -34.4307 78.5236 114.752 -26.0741 79.2235 114.861 -29.7308 81.84 107.809 -22.5419 82.8432 113.477 -21.7471 80.6945 113.198 -32.7484 80.1006 111.667 -32.8137 81.4167 114.445 -29.7768 85.2891 111.653 -30.1957 85.1586 107.567 -26.8363 79.5016 131.024 -27.3879 82.7149 121.901 -29.5647 78.0128 119.311 -36.7914 75.0649 120.445 -36.8974 79.7863 129.926 -29.9221 79.3229 118.187 -33.5803 84.4402 132.877 -32.1553 80.111 127.576 -34.3959 71.2569 121.989 -34.7844 66.2834 120.958 -33.9154 71.8315 110.129 -33.2852 77.2358 110.04 -32.7655 73.4782 133.884 -21.131 77.6228 132.464 -22.2276 81.3655 132.277 -23.4746 83.426 133.82 -24.0033 85.7036 136.141 -24.3458 88.7308 138.375 -25.7679 91.4667 138.163 -27.2159 92.7583 132.552 -26.9171 90.4562 129.827 -25.7152 86.8669 126.78 -24.6669 84.0844 124.721 -23.6771 80.1888 122.834 -22.3988 88.4224 111.98 -26.642 73.0971 114.872 -34.0422 78.0365 114.257 -32.4652 72.6559 116.366 -23.6348 74.0565 115.738 -18.8756 74.3546 119.371 -20.3332 70.6786 130.252 -24.9797 66.3234 116.559 -38.424 68.7427 109.182 -33.5877 75.2695 107.415 -21.4172 74.5162 129.923 -26.0103 69.7229 116.044 -38.0771 89.5331 107.124 -23.792 88.3401 135.32 -31.9677 74.1388 115.95 -26.0645 75.9612 114.948 -19.4391 77.1416 118.114 -30.0044 73.3922 116.231 -34.5642 80.9955 123.121 -26.1556 85.0815 123.793 -32.0715 84.2148 123.344 -35.5836 83.1264 134.427 -27.4776 86.9811 127.454 -28.4118 89.522 129.098 -29.4795 74.6652 110.346 -32.9938 73.4634 113.087 -34.946 76.8228 114.888 -29.5521 79.8915 107.956 -22.0252 80.6122 114.073 -21.0487 83.7573 107.262 -22.8645 86.4999 113.195 -22.8837 83.3651 113.698 -27.6845 87.0649 106.513 -23.293 78.1729 130.027 -26.8719 84.0191 124.97 -27.6585 78.0395 121.874 -37.0279 80.9955 119.953 -31.531 86.4391 136.135 -29.7404 82.2626 130.071 -33.6418 73.3188 122.63 -34.5204 68.9993 121.598 -34.5597 61.1201 116.288 -36.4563 80.2549 109.485 -31.4116 71.6743 134.356 -20.764 75.3384 133.298 -21.6337 79.5527 132.054 -22.774 82.5547 132.906 -23.8513 84.4528 134.914 -24.1434 93.1861 134.488 -27.5777 91.9487 131.059 -26.2461 88.5515 128.283 -25.1888 85.4827 125.624 -24.1983 82.3397 123.833 -23.052 76.6708 121.456 -21.1288 89.869 111.457 -23.9848 75.2791 114.471 -33.131 72.5418 119.712 -36.6595 81.3907 113.876 -31.5584 78.3679 118.196 -35.5399 83.0864 127.336 -36.4037 85.4308 112.541 -29.518 90.2145 131.46 -31.6971 82.9166 108.627 -29.6277 64.7835 120.521 -33.7531 75.2428 120.861 -23.2937 80.7976 132.083 -27.6852 77.9572 125.484 -34.7339 74.1796 115.013 -31.4161 80.9021 114.638 -26.7177 85.1483 113.312 -25.263 82.0676 114.019 -24.0982 79.6802 114.358 -23.3746 77.3173 114.669 -22.6413 75.2124 115.161 -21.7041 73.588 115.837 -21.0027 72.7523 116.861 -20.956 73.4137 118.581 -21.8902 66.4762 141.604 -20.8641 58.3546 118.743 -38.2809 63.6573 103.164 -29.6181 61.2017 113.464 -35.2759 62.603 110.079 -31.8602 69.9438 135.891 -21.1621 68.2393 131.67 -26.2038 67.4378 127.136 -29.5202 62.8091 120.687 -35.9907 60.5767 117.653 -37.3935 60.7761 113.247 -36.1998 62.0921 109.556 -33.1525 65.2417 105.935 -28.1842 71.3073 112.394 -36.0092 68.3164 110.617 -35.2945 68.3445 111.331 -36.3747 -11.3552 113.133 6.63324 68.4684 104.805 -22.5375 -9.45044 104.401 1.95409 -7.56053 100.492 -0.627556 -5.0686 97.2087 -3.46945 -1.8849 93.9531 -6.38548 56.808 93.3547 -23.3279 61.9223 96.6682 -23.3508 59.4081 140.566 19.6623 60.4639 137.464 20.042 61.8763 134.831 19.5882 63.4845 132.857 18.7674 59.1931 143.585 18.4382 65.1653 131.503 17.6961 59.7648 145.792 16.5098 66.574 130.654 16.1776 60.7479 147.03 14.1165 67.7426 130.322 14.3856 61.9742 147.354 11.7839 68.7983 130.581 12.5261 63.4081 146.812 9.84286 69.823 131.736 10.6896 65.1046 145.464 8.28365 70.6207 133.636 8.99838 67.079 143.51 7.13741 70.6489 135.976 7.7083 68.7916 141.109 6.6273 70.0306 138.529 6.87865 46.0899 131.451 -40.7647 44.2964 133.408 -40.6498 42.8521 136.048 -40.2939 42.1344 139.179 -39.5132 48.0895 130.139 -40.7032 42.5725 142.25 -38.4974 50.1107 129.339 -40.116 44.0636 144.531 -37.2763 52.0814 129.065 -39.1855 46.164 145.859 -35.8431 53.992 129.384 -38.172 48.4484 146.268 -34.5523 55.8478 130.62 -37.1918 50.7075 145.792 -33.6656 57.2832 132.639 -36.2405 52.9926 144.492 -33.2066 58.0113 135.002 -35.2811 55.2984 142.565 -33.2185 57.9772 137.569 -34.3714 57.0771 140.172 -33.5929 1.38182 68.9774 -45.9569 1.47894 65.0285 -50.2728 1.09637 63.909 -52.87 4.59888 9.97681 -40.0908 4.56625 11.4122 -44.5415 4.27933 14.0176 -48.351 3.6239 17.5846 -51.2515 2.5518 21.6054 -53.3934 2.81797 25.9316 -56.0077 3.01964 28.3271 -57.5284 3.3214 31.8267 -58.9081 3.45486 35.6754 -59.9047 3.14198 39.6169 -60.4303 2.63558 43.6332 -60.5215 2.15143 47.625 -60.2798 1.8074 51.4352 -59.6459 1.64281 54.9177 -58.6553 1.54494 58.1214 -57.1999 1.24614 61.2169 -55.2299 2.20258 72.8765 -41.2252 4.0999 75.8378 -37.4454 6.18702 78.5203 -33.435 56.4936 87.4619 -10.08 57.7629 85.6098 -10.3506 59.9983 84.0135 -10.7406 63.4852 82.0057 -11.5406 67.5801 79.1089 -12.265 -10.1652 108.262 6.21582 -11.0734 112.965 7.57632 -0.481384 91.8178 -0.502998 -8.62003 103.705 4.73889 -6.45135 99.499 2.95057 -3.73181 95.6969 0.985786 -60.1092 28.2359 7.92776 -8.84988 108.395 10.4182 -10.438 113.006 9.67531 2.73864 92.5778 10.975 -6.7205 103.892 10.9765 -4.01207 99.6658 11.3213 -0.806137 95.8341 11.3643 64.3527 94.8043 -12.5052 60.0369 91.4033 -11.0824 -11.539 10.151 19.9241 -5.49863 10.1436 21.8177 -15.9268 10.1577 16.38 -19.33 10.1651 11.6357 -22.5381 10.1681 4.40154 32.719 10.1303 18.5309 40.266 10.1244 13.6679 14.2263 10.1377 23.0462 22.7994 10.1333 21.7028 2.70157 10.137 23.1159 44.4157 10.1281 7.56966 6.82094 10.137 23.6438 46.5807 10.1555 0.804138 -22.7316 10.1651 -8.79883 46.5392 10.1481 -8.35619 -6.5737 10.1422 -30.0845 -12.5993 10.151 -28.2717 -18.4966 10.1644 -25.6115 -21.6988 10.1659 -20.5282 -21.6462 10.1607 -14.2928 40.6619 10.1362 -21.951 32.9614 10.1496 -27.1618 22.9625 10.1599 -31.832 13.8408 10.1637 -33.647 2.11658 10.1488 -32.443 44.7679 10.1347 -15.5147 6.04318 10.1488 -32.526 12.5907 10.1733 -3.80531 59.1887 91.8044 8.95242 -37.1383 88.9529 -2.97714 -31.8022 10.0858 -1.97102 -25.1531 10.1622 -2.2068 -48.967 94.3801 -3.43312 -42.7435 92.7505 -3.24479 -45.2458 14.541 -1.9814 -38.8006 11.688 -1.94433 -51.5643 18.2037 -2.1067 -56.8395 22.9229 -2.04294 -61.3273 28.167 -2.00068 -64.683 34.1592 -1.92802 -67.7244 42.676 -1.88947 -69.2985 52.0358 -1.98363 -69.0782 59.0674 -1.98585 -68.0128 66.587 -1.96361 -66.3149 75.4782 -2.11857 -61.6254 86.6775 -2.9586 -55.4464 92.4777 -3.38715 -32.8632 83.5116 -1.95249 -29.1664 80.3716 -1.67964 -25.0219 78.6923 -1.82199 -19.731 77.9019 -1.94433 -13.8211 78.3245 -1.89985 0.599609 81.0967 -1.11393 5.68803 83.0274 -0.72765 6.50954 84.4391 -0.967133 5.72511 86.2104 -0.331726 3.73808 88.5303 1.10886 0.442429 91.5093 2.82008 -2.82133 95.1602 4.04714 -5.66766 99.1208 5.2742 -8.03503 103.465 6.34038 -9.79816 108.128 7.22415 -10.9333 112.931 8.02786 -26.7479 60.7542 43.6698 -20.1774 63.8423 42.5992 -8.42801 27.4619 48.2347 14.9477 25.7121 48.3904 3.09452 25.896 48.4757 42.6645 36.5214 48.0598 47.7344 49.638 47.1827 40.5551 62.2549 45.2372 -20.4769 63.1994 -50.3046 -27.628 60.1306 -51.1217 -8.33606 28.1588 -55.7549 41.6947 37.0493 -55.6696 46.1069 49.7648 -54.9594 39.661 61.5616 -52.9449 -28.2701 61.5994 42.6785 -21.096 64.5792 41.7131 -10.6093 65.5757 41.2676 1.58052 66.8139 41.2357 -20.6037 30.6107 47.064 -27.9498 36.4747 46.6355 -32.0076 43.3195 45.7562 -33.3289 50.1288 44.8568 -9.84192 26.1273 47.153 -32.1367 56.4888 43.8329 40.1118 30.266 46.5139 29.9349 25.9004 46.5236 16.4046 23.9305 47.0581 3.12344 24.0639 47.2805 46.8217 35.817 46.5762 50.7757 42.2756 46.3478 52.0569 49.3051 45.7651 50.1277 56.399 44.7582 45.0638 62.5551 43.5645 13.7088 68.7742 41.1082 26.4851 69.2584 41.2994 37.1171 66.9377 42.3456 1.53827 66.2289 -48.7276 -11.1349 65.489 -48.6957 -21.7418 64.0098 -49.2903 -29.2399 60.7943 -50.2557 -33.7448 49.2984 -52.3954 -32.2894 43.1438 -53.1362 -27.8334 36.8602 -53.862 -20.3917 31.2343 -54.2831 -10.0503 26.5855 -54.5085 -32.8298 55.3737 -51.4331 2.729 24.1781 -54.8289 15.8893 23.9164 -54.731 29.5034 26.0458 -54.0829 39.6795 30.5618 -53.8806 46.253 36.21 -53.7901 50.0128 42.5536 -53.5439 51.139 49.2547 -52.9597 49.321 55.8341 -52.0848 44.6241 61.6202 -51.0127 37.1431 65.7944 -49.8316 26.732 68.0261 -48.7847 13.6339 67.8667 -48.6371</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2108\" offset=\"0\" source=\"#LOD3spShape-lib-positions-array\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"LOD3spShape-lib-normals\" name=\"normal\">\r\n                    <float_array count=\"6870\" id=\"LOD3spShape-lib-normals-array\">-0.192109 -0.934569 0.299458 -0.06315 -0.993623 0.093407 -0.038767 -0.993005 0.111528 -0.11695 -0.921313 0.370816 -0.085264 -0.993927 0.06957 -0.25821 -0.942076 0.214058 -0.305238 -0.944237 0.123473 -0.103012 -0.993873 0.04007 -0.109849 -0.993698 0.02232 -0.319871 -0.945464 0.061492 0.322015 -0.653105 0.68539 0.238016 -0.809438 0.536805 0.39559 -0.829362 0.394547 0.547107 -0.665777 0.50736 0.149283 -0.925897 0.34703 0.227375 -0.943129 0.242504 -0.182106 -0.7902 0.585167 -0.310544 -0.820667 0.479654 -0.418246 -0.841388 0.342252 -0.407245 -0.671943 0.618582 -0.544891 -0.711903 0.443045 -0.234371 -0.618101 0.750347 -0.474249 -0.857348 0.200104 -0.472515 -0.875412 0.101901 -0.601129 -0.750567 0.274396 -0.593419 -0.791427 0.146617 0.282256 -0.953514 0.105559 0.497204 -0.845385 0.195227 0.680184 -0.678639 0.277127 0.475425 -0.378716 0.794069 0.394699 -0.508097 0.765539 0.651796 -0.507567 0.563506 0.728714 -0.35445 0.585953 -0.280085 -0.456993 0.844222 -0.472084 -0.52749 0.706322 -0.629949 -0.5896 0.505505 -0.525528 -0.402813 0.749375 -0.688269 -0.483465 0.540877 -0.345696 -0.333643 0.877027 0.797494 -0.502759 0.333521 0.868857 -0.332163 0.36709 0.779236 -0.208323 0.591094 0.556733 -0.232343 0.797537 0.611419 -0.086952 0.786515 0.805975 -0.07802 0.586786 0.901017 -0.198547 0.385677 0.912954 -0.073233 0.401437 0.587309 0.31693 0.74473 0.626298 0.112282 0.771455 0.807598 0.10215 0.580819 0.767563 0.296279 0.568389 0.905959 0.097128 0.412074 0.868972 0.273148 0.412646 0.369046 0.664292 0.650016 0.498279 0.502362 0.706648 0.692864 0.459155 0.555982 0.584348 0.597963 0.548615 0.813067 0.415121 0.408163 0.751114 0.515121 0.41289 0.19627 0.766932 0.610977 0.270011 0.7156 0.644213 0.477417 0.672112 0.565984 0.38089 0.730939 0.56626 0.665617 0.613839 0.424448 0.5601 0.712938 0.42191 -0.142237 0.892596 0.427833 -0.115435 0.801937 0.586149 -0.145778 0.823148 0.548795 -0.183731 0.901347 0.392196 -0.170598 0.892172 0.418242 -0.198923 0.94046 0.275618 -0.083913 0.784617 0.614276 -0.104776 0.836925 0.537195 -0.07128 0.762805 0.642687 -0.083732 0.95816 0.273711 -0.152017 0.963903 0.218593 -0.043758 0.995476 0.084341 0.11433 0.983142 0.142691 -0.188565 0.971095 0.146345 -0.153667 0.986837 0.050398 -0.277878 0.955105 0.102752 -0.278528 0.959779 0.035299 -0.266228 0.943946 0.195163 -0.494465 0.642119 0.585822 -0.123678 0.744163 0.656449 -0.094312 0.919596 0.381378 -0.521981 0.776809 0.352284 0.287464 0.72515 0.625717 0.35104 0.866307 0.355363 -0.085399 0.659129 0.747166 0.224013 0.689809 0.688464 -0.41145 0.564912 0.715251 -0.896437 0.304297 0.322186 -0.755967 0.475931 0.449448 -0.804069 0.52634 0.276477 -0.929837 0.307416 0.202235 -0.651421 0.428251 0.626301 -0.812838 0.261118 0.520685 -0.700828 0.14352 0.698743 -0.528973 0.340042 0.777534 -0.323564 0.505566 0.799819 -0.384671 0.217738 0.897005 -0.26768 0.410295 0.871783 -0.51729 -0.021456 0.855541 -0.703157 -0.1848 0.686599 -0.802326 -0.033833 0.595927 -0.877917 -0.14451 0.456484 -0.806047 -0.267053 0.528176 -0.89323 0.116397 0.434273 -0.92976 -0.00252 0.368157 -0.693473 -0.636086 0.338364 -0.705373 -0.68381 0.186692 -0.75587 -0.532488 0.380943 -0.796546 -0.566484 0.211211 -0.077417 -0.240522 0.967551 -0.089798 -0.134723 0.986806 -0.168487 -0.121841 0.978145 -0.138523 -0.221426 0.965289 -0.113525 -0.038943 0.992772 -0.195995 -0.017488 0.980449 -0.602195 -0.290799 0.743503 -0.742439 -0.374894 0.555193 -0.432918 -0.200289 0.878901 -0.818103 -0.413906 0.399236 -0.879805 -0.419705 0.22314 -0.8832 -0.285146 0.372357 -0.940384 -0.263381 0.215195 -0.205308 0.092751 0.974293 -0.12459 0.080228 0.988959 -0.122228 0.178941 0.976238 -0.196017 0.189929 0.962031 -0.04789 0.778827 0.625407 -0.065661 0.712179 0.698921 -0.086279 0.666075 0.740878 -0.054107 0.736647 0.674109 0.32735 0.918436 0.222077 0.038245 0.947019 0.318892 -0.067436 0.912058 0.404479 0.299059 0.868082 0.396229 0.020777 0.864061 0.502958 0.601008 0.74983 0.276665 0.10013 0.787789 0.607752 0.137884 0.80072 0.582954 0.293157 0.782715 0.549014 0.251535 0.793724 0.553834 0.033793 0.760625 0.648311 0.012829 0.792843 0.609291 -0.001462 0.805911 0.592035 0.470195 0.782277 0.408607 0.406592 0.824118 0.394351 -0.228092 0.919665 0.319673 -0.149194 0.877198 0.45636 0.221981 0.775644 0.590848 0.477153 0.718896 0.505483 0.642223 0.702693 0.306223 -0.941954 -0.151996 0.299365 -0.977272 -0.097629 0.18817 -0.969667 0.027366 0.242894 -0.984274 0.065087 0.16422 -0.081923 0.660823 0.746057 -0.143863 0.635643 0.75846 -0.950758 0.179022 0.253002 -0.969441 0.180582 0.166057 0.433741 0.791171 0.431182 0.286611 0.730746 0.619568 0.635928 0.49935 0.588427 0.410194 0.41588 0.811655 -0.030936 0.832088 0.553781 -0.063268 0.738092 0.671727 -0.236437 0.785277 0.572222 -0.098454 0.365739 0.925495 -0.356861 0.365039 0.859882 0.116456 0.704283 0.700303 0.160354 0.369389 0.915335 -0.380395 0.81813 0.431235 -0.491132 0.823545 0.283836 -0.59916 0.341103 0.724332 -0.798743 0.301719 0.520552 0.047573 -0.992573 0.111966 0.069354 -0.994739 0.075398 0.015592 -0.990695 0.135202 0.028503 -0.991144 0.129693 0.0864 -0.911356 0.402449 0.046371 -0.905885 0.420977 -0.018844 -0.991895 0.125654 -0.057065 -0.909815 0.411073 0.087743 -0.99576 0.027619 0.126144 -0.779499 0.613571 0.067151 -0.760559 0.645787 0.153713 -0.607983 0.778928 0.075394 -0.57677 0.81342 -0.085238 -0.760064 0.644234 -0.102578 -0.566247 0.817827 0.045094 -0.227711 0.972684 0.047131 -0.133922 0.98987 0.005657 -0.158915 0.987276 0.006376 -0.238835 0.971039 0.058631 -0.040878 0.997442 0.002975 -0.056704 0.998387 0.127635 -0.116289 0.98498 0.152279 -0.014755 0.988227 0.100619 -0.20516 0.973543 0.059288 0.068169 0.995911 -0.006745 0.055506 0.998436 0.05032 0.180626 0.982264 -0.021925 0.163036 0.986376 0.163736 0.099069 0.981517 0.156175 0.220652 0.962768 0.020684 0.317842 0.947918 -0.050294 0.316731 0.947181 -0.025411 0.533931 0.845146 -0.086911 0.5228 0.848014 0.127716 0.356862 0.925385 0.071441 0.516034 0.853584 -0.061054 0.766638 0.63917 0.078289 0.741306 0.666586 0.208508 0.671416 0.711144 0.313289 0.499706 0.807554 0.378689 0.310587 0.871855 0.400342 0.118619 0.908656 0.381543 -0.070384 0.921668 0.331083 -0.22771 0.915714 0.260306 -0.364971 0.893889 0.178111 -0.473128 0.862802 0.071351 -0.485088 0.87155 -0.127917 -0.411323 0.902469 -0.217134 -0.272275 0.9374 -0.28612 -0.114565 0.95132 -0.297833 0.014133 0.954513 -0.259212 0.153056 0.953616 -0.214461 0.319798 0.922895 -0.151901 0.528641 0.835144 -0.103669 0.295387 0.949736 -0.165776 0.313209 0.935104 -0.083675 0.492895 0.866056 -0.119834 0.470121 0.874429 -0.087588 0.774585 0.626376 -0.256922 -0.123444 0.958516 -0.282852 0.013185 0.959073 -0.378724 -0.276752 0.883163 -0.438423 -0.070607 0.895991 -0.437651 -0.063548 0.896897 -0.390678 -0.27619 0.878117 -0.251518 -0.431278 0.866451 -0.276371 -0.456203 0.845871 -0.19905 -0.303218 0.9319 -0.274611 0.135247 0.951996 -0.249887 0.293965 0.922573 -0.442099 0.099565 0.891423 -0.416837 0.295755 0.859521 -0.412837 0.32408 0.851198 -0.438351 0.113033 0.891668 0.156401 -0.497394 0.85331 0.061408 -0.535686 0.842181 0.119454 -0.452018 0.883974 0.032667 -0.468626 0.882793 0.050048 -0.559259 0.827481 0.150699 -0.524664 0.837865 0.208739 -0.361482 0.908713 0.238743 -0.413555 0.878621 0.232419 -0.391651 0.890276 -0.125806 -0.451337 0.883441 -0.128663 -0.465603 0.875591 -0.150994 -0.530967 0.833832 0.284031 -0.235212 0.929517 0.269401 -0.199777 0.942079 0.293517 -0.238502 0.925724 0.286186 -0.032306 0.957629 0.310905 -0.056264 0.948774 0.312743 -0.062252 0.947795 0.322676 0.120164 0.938851 0.286685 0.125421 0.94978 0.312932 0.123775 0.941676 0.279716 0.294166 0.913907 0.303905 0.313656 0.89959 0.309104 0.311381 0.898608 0.037576 0.808415 0.587412 0.169817 0.698638 0.69503 -0.000992 0.780213 0.625514 0.138259 0.681294 0.718834 0.161529 0.715447 0.679738 0.018778 0.826522 0.562592 -0.09996 0.801388 0.589733 -0.098648 0.85295 0.512587 -0.076807 0.814801 0.574631 0.262922 0.511395 0.818137 0.242579 0.49202 0.836105 0.262895 0.521513 0.811733 -0.185749 0.495789 0.848346 -0.322481 0.52883 0.785076 -0.160242 0.722224 0.672841 -0.146317 0.772841 0.617501 -0.312096 0.577251 0.754571 -0.076559 0.797941 0.597853 -0.071594 0.840171 0.537576 -0.107376 0.806238 0.581766 -0.112987 0.848782 0.51653 -0.287568 -0.01818 0.957588 -0.246849 -0.15606 0.956405 -0.173556 -0.290795 0.940913 -0.283237 0.22681 0.931844 -0.297529 0.100463 0.949412 0.014537 -0.330354 0.943745 0.072188 -0.329168 0.941508 0.150177 -0.268878 0.951394 -0.091484 -0.341365 0.935468 0.211928 -0.141481 0.96699 0.233591 -0.009434 0.972289 0.24083 0.120366 0.963075 0.233787 0.260424 0.936762 0.102888 0.613185 0.78321 -0.030399 0.694019 0.719314 -0.098708 0.675427 0.730791 0.204918 0.428836 0.879834 -0.132475 0.557408 0.819602 -0.232943 0.388015 0.89173 -0.075386 0.634728 0.769049 -0.09685 0.652599 0.751489 -0.092397 0.509504 0.855493 -0.081276 0.316551 0.945087 -0.068265 0.172012 0.982727 -0.054553 0.065325 0.996372 -0.043341 -0.055449 0.99752 -0.033383 -0.160096 0.986537 -0.028874 -0.24536 0.969002 -0.033304 -0.336054 0.941254 -0.042357 -0.467717 0.882863 -0.046567 -0.556118 0.829798 -0.037674 -0.519487 0.853647 -0.022566 -0.457423 0.888963 -0.012961 -0.556886 0.830488 -0.007732 -0.753873 0.656974 -0.003792 -0.90729 0.420489 -0.001149 -0.991208 0.132304 0.512335 -0.857386 0.049017 0.70555 -0.704425 0.077354 0.297092 -0.954566 0.023258 0.84286 -0.528889 0.09931 0.930258 -0.348816 0.113782 0.968103 -0.21837 0.122848 0.986591 -0.093131 0.134031 0.985676 0.081564 0.147617 0.95281 0.259757 0.157095 0.894834 0.417704 0.157465 0.844113 0.514896 0.149516 0.774064 0.618654 0.134508 0.673761 0.729252 0.119321 0.59429 0.795832 0.116061 0.5205 0.84585 0.116695 0.525074 0.841884 0.124616 0.765546 0.621669 0.16573 0.097097 -0.995263 0.004896 -0.565407 0.809464 0.158374 -0.611313 0.789337 0.056957 -0.920895 0.236324 0.310006 -0.979363 0.144989 0.140806 -0.738247 -0.362498 0.568846 -0.830423 -0.418752 0.367485 -0.844491 -0.498578 0.195588 -0.637358 -0.672695 0.37584 -0.668066 -0.709833 0.223216 -0.553902 -0.635855 0.537476 -0.346188 -0.291036 0.891881 -0.564224 -0.330618 0.756534 -0.436173 -0.617389 0.654663 -0.266348 -0.628612 0.730688 -0.097978 -0.251576 0.962865 -0.086895 -0.643915 0.760146 0.176816 -0.222898 0.958672 0.120695 -0.699248 0.704617 0.465192 -0.190422 0.864486 0.373032 -0.681742 0.629345 0.749171 -0.141411 0.647105 0.57208 -0.682024 0.455597 0.984143 0.023025 0.175875 0.738366 -0.656556 0.154109 -0.095635 0.76965 0.631263 -0.315057 -0.948903 0.017974 -0.110306 -0.993886 0.004918 -0.457702 -0.888528 0.032039 -0.589111 -0.807168 0.037792 0.510058 -0.858624 -0.051043 0.70623 -0.703125 -0.082786 0.294439 -0.955391 -0.023102 0.843862 -0.525198 -0.109834 0.928966 -0.346434 -0.130403 0.964683 -0.219414 -0.145751 0.981881 -0.104853 -0.157847 0.98501 0.058597 -0.162241 0.95819 0.238399 -0.158234 0.897823 0.414043 -0.149942 0.829346 0.538002 -0.150797 0.747675 0.644543 -0.159833 0.659153 0.734437 -0.161615 0.265044 0.963485 0.038059 0.039034 0.999086 0.017437 0.018622 0.997848 -0.062875 0.244836 0.962544 -0.116463 -0.130658 0.991351 0.012349 -0.138096 0.990164 -0.022449 -0.273293 0.96189 0.008822 -0.274255 0.961657 0.000421 -0.053579 0.998129 0.029453 -0.515915 0.855204 0.049583 0.344116 0.89883 -0.271457 -0.055876 0.956544 -0.286182 0.365283 0.930753 0.01632 -0.828131 0.557888 0.054409 -0.952772 0.299578 0.049783 -0.711727 -0.701459 0.037422 -0.905755 -0.418034 -0.069676 -0.8121 -0.578723 -0.074656 -0.818385 -0.573492 0.036778 -0.910268 -0.412077 0.040054 0.709552 0.701423 0.067393 0.515618 0.854187 0.067105 0.52626 0.835416 -0.158524 0.711562 0.67733 -0.186822 0.587221 0.793907 -0.157743 0.504751 0.849895 -0.151344 0.655685 0.754174 0.036026 0.627882 0.742251 -0.234154 -0.995755 -0.076042 0.051857 -0.966252 -0.253074 0.048064 -0.995208 0.084624 0.048994 -0.98245 0.180559 0.046801 0.500696 0.849415 -0.166726 0.699452 0.674292 -0.236847 -0.644888 0.764208 0.010314 -0.658085 0.75262 0.022063 -0.996997 0.052783 0.056672 -0.999004 0.031144 0.031952 0.095211 -0.995451 -0.003478 -0.828476 -0.551185 0.099113 -0.83354 -0.552229 0.015914 -0.680841 -0.722996 0.117184 -0.70438 -0.709823 0.000289 0.942473 0.130036 -0.307954 0.760792 -0.603232 -0.239387 -0.191598 -0.926128 -0.324926 -0.11404 -0.910397 -0.397707 -0.034523 -0.992382 -0.118262 -0.056307 -0.993628 -0.097639 -0.08229 -0.99447 -0.065257 -0.263919 -0.93806 -0.224478 -0.301453 -0.945273 -0.124839 -0.10268 -0.994176 -0.032728 -0.109842 -0.993816 -0.016268 -0.306215 -0.95011 -0.059356 0.319117 -0.647606 -0.691933 0.534285 -0.666968 -0.519319 0.385251 -0.83007 -0.403195 0.239592 -0.805165 -0.542499 0.228594 -0.939199 -0.256224 0.158278 -0.918607 -0.362089 -0.178484 -0.75672 -0.628902 -0.309497 -0.797477 -0.51792 -0.420841 -0.831771 -0.362009 -0.538657 -0.700909 -0.467519 -0.394197 -0.64598 -0.653696 -0.222745 -0.580396 -0.783278 -0.463953 -0.858375 -0.218951 -0.461429 -0.880375 -0.109649 -0.599801 -0.782405 -0.167575 -0.59309 -0.744341 -0.306921 0.280118 -0.952342 -0.120743 0.489162 -0.845976 -0.212238 0.674722 -0.67782 -0.292079 0.467443 -0.364911 -0.805194 0.712309 -0.345361 -0.611018 0.641575 -0.494023 -0.586791 0.39121 -0.489528 -0.779305 -0.257887 -0.431057 -0.864687 -0.450347 -0.520374 -0.725533 -0.610796 -0.588414 -0.529809 -0.665056 -0.488467 -0.56489 -0.505193 -0.408993 -0.759938 -0.312897 -0.314982 -0.896037 0.796286 -0.495922 -0.346396 0.865739 -0.328626 -0.377493 0.760432 -0.204661 -0.616326 0.545204 -0.224716 -0.807623 0.593644 -0.079984 -0.800743 0.783915 -0.086134 -0.614865 0.896384 -0.199742 -0.395726 0.906271 -0.095045 -0.411874 0.551478 0.253954 -0.794594 0.749758 0.226635 -0.62169 0.783116 0.056593 -0.619295 0.5969 0.085909 -0.797703 0.90526 0.04554 -0.42241 0.880719 0.218398 -0.420282 0.336343 0.599609 -0.726183 0.572035 0.582293 -0.577677 0.679985 0.408785 -0.6087 0.461982 0.425407 -0.778204 0.822759 0.398489 -0.405308 0.73865 0.550111 -0.389581 0.158279 0.713924 -0.6821 0.37644 0.723509 -0.578643 0.467127 0.676077 -0.569835 0.228363 0.685665 -0.691168 0.648361 0.657528 -0.383777 0.564637 0.73282 -0.379684 -0.132948 0.895471 -0.424801 -0.16783 0.911023 -0.376656 -0.12755 0.841928 -0.524298 -0.095044 0.810733 -0.577649 -0.191234 0.937857 -0.289574 -0.161097 0.88789 -0.430929 -0.099619 0.831047 -0.547207 -0.068866 0.782563 -0.618751 -0.042804 0.75673 -0.652324 -0.106611 0.95728 -0.268792 0.061832 0.967519 -0.24512 -0.090989 0.984179 -0.152028 -0.171442 0.958937 -0.225938 -0.170146 0.982001 -0.081999 -0.195635 0.967138 -0.16239 -0.282706 0.95847 -0.037576 -0.282545 0.952356 -0.114834 -0.262642 0.936921 -0.230646 -0.457702 0.605028 -0.651498 -0.494691 0.715297 -0.493589 -0.076223 0.822259 -0.563986 -0.087936 0.702019 -0.706709 0.319664 0.765998 -0.557729 0.294833 0.694844 -0.655946 0.224172 0.682804 -0.695361 -0.063717 0.649517 -0.757673 -0.387084 0.558006 -0.734027 -0.896043 0.261582 -0.358722 -0.944002 0.274393 -0.183216 -0.810194 0.488173 -0.324457 -0.742944 0.435424 -0.508371 -0.645648 0.412332 -0.642745 -0.811086 0.243382 -0.531887 -0.699157 0.136155 -0.701885 -0.530892 0.331786 -0.77979 -0.30426 0.511436 -0.803654 -0.248492 0.408629 -0.878222 -0.387347 0.198969 -0.900208 -0.511763 -0.033699 -0.858465 -0.688173 -0.178311 -0.703294 -0.790784 -0.260454 -0.553917 -0.872048 -0.112083 -0.476413 -0.794394 -0.013341 -0.607256 -0.920109 0.042291 -0.389372 -0.884532 0.127633 -0.44868 -0.676964 -0.636735 -0.369174 -0.702442 -0.678564 -0.214769 -0.78028 -0.57775 -0.239514 -0.733839 -0.540713 -0.41123 -0.092147 -0.181509 -0.979062 -0.144369 -0.166467 -0.975421 -0.159435 -0.079334 -0.984015 -0.094565 -0.065989 -0.993329 -0.168501 -0.000101 -0.985701 -0.104493 0.01153 -0.994459 -0.726284 -0.369697 -0.579514 -0.588438 -0.292192 -0.753899 -0.407291 -0.20071 -0.890971 -0.869486 -0.42871 -0.245363 -0.799739 -0.41079 -0.4378 -0.938755 -0.260153 -0.225963 -0.869609 -0.274794 -0.410206 -0.170534 0.079532 -0.982137 -0.161151 0.169743 -0.972223 -0.090409 0.181448 -0.979236 -0.10396 0.092065 -0.990311 -0.061474 0.779505 -0.623373 -0.054952 0.743789 -0.666152 -0.103099 0.66864 -0.736404 -0.089248 0.714186 -0.694242 0.313646 0.879357 -0.358269 0.027421 0.941997 -0.334499 -0.080622 0.891857 -0.445073 0.022338 0.831019 -0.555795 0.289168 0.850636 -0.43909 0.556005 0.699289 -0.449281 0.050624 0.773712 -0.631511 0.231632 0.808083 -0.541616 0.288863 0.771715 -0.566581 0.103245 0.744807 -0.659244 0.031939 0.724546 -0.688486 0.003268 0.749951 -0.661485 -0.026171 0.792703 -0.609046 0.482137 0.794981 -0.36817 0.398207 0.851469 -0.34122 -0.221077 0.901734 -0.371484 -0.143622 0.850839 -0.505417 0.234374 0.743588 -0.626216 0.46128 0.703836 -0.540218 0.562017 0.649813 -0.511741 -0.977474 -0.09123 -0.19032 -0.936551 -0.12725 -0.326619 -0.984003 0.070682 -0.163533 -0.961337 0.050417 -0.270718 -0.12138 0.620783 -0.774529 -0.05521 0.647511 -0.760053 -0.944461 0.162933 -0.285388 -0.972855 0.171501 -0.15537 0.237565 0.800499 -0.55024 0.395586 0.847721 -0.353385 0.35269 0.570432 -0.741766 0.568049 0.652016 -0.502191 -0.054488 0.806873 -0.588206 -0.221404 0.774347 -0.592762 -0.082141 0.728443 -0.680164 -0.34248 0.449493 -0.825023 -0.1184 0.432945 -0.893611 0.102358 0.477975 -0.872389 0.062161 0.735187 -0.675008 -0.351621 0.822971 -0.446186 -0.453177 0.839825 -0.298872 -0.753559 0.408132 -0.515341 -0.56556 0.457673 -0.686059 0.070662 -0.994095 -0.082354 0.053046 -0.991548 -0.1184 0.013209 -0.990078 -0.139895 0.042006 -0.899343 -0.435221 0.096965 -0.90473 -0.414802 0.032991 -0.99044 -0.133938 -0.056118 -0.897897 -0.436614 -0.016738 -0.990736 -0.134764 0.086464 -0.995644 -0.034877 0.061043 -0.750045 -0.658564 0.137198 -0.774505 -0.61751 0.069229 -0.578014 -0.813085 0.165722 -0.607498 -0.776841 -0.08926 -0.735213 -0.671934 -0.114239 -0.544747 -0.830783 0.019911 -0.230638 -0.972836 -0.030593 -0.214954 -0.976145 -0.045955 -0.097756 -0.994149 0.002659 -0.095509 -0.995425 -0.052141 0.011297 -0.998576 0.002127 0.01818 -0.999832 0.120697 0.01473 -0.99258 0.113372 -0.110702 -0.987366 0.096736 -0.223211 -0.969958 -0.055442 0.119889 -0.991238 -0.003618 0.136061 -0.990694 -0.057352 0.236947 -0.969828 -0.01353 0.263616 -0.964533 0.087309 0.294367 -0.951696 0.113304 0.153076 -0.981697 -0.061332 0.359879 -0.930981 -0.028754 0.371752 -0.927887 -0.069217 0.479884 -0.874597 -0.04309 0.485197 -0.873342 0.017067 0.479437 -0.87741 0.052641 0.398131 -0.915817 -0.034654 0.760876 -0.647972 0.07156 0.732098 -0.67743 0.191934 0.634425 -0.748777 0.303753 0.458556 -0.835141 0.384402 0.282027 -0.879031 0.419845 0.110042 -0.9009 0.406427 -0.062856 -0.911518 0.353955 -0.220425 -0.908916 0.281504 -0.354287 -0.89176 0.067511 -0.500136 -0.863311 0.193668 -0.469971 -0.861174 -0.14958 -0.414815 -0.897527 -0.228363 -0.298833 -0.926579 -0.288297 -0.161724 -0.943785 -0.298702 -0.022525 -0.954081 -0.190826 0.301532 -0.934165 -0.246409 0.126265 -0.960906 -0.15017 0.520238 -0.840715 -0.129702 0.309072 -0.942153 -0.066417 0.305119 -0.949995 -0.055085 0.462192 -0.885067 -0.090042 0.449004 -0.888981 -0.071733 0.766958 -0.637675 -0.283007 -0.028509 -0.958694 -0.281863 -0.191917 -0.940065 -0.351312 -0.084797 -0.932411 -0.309888 -0.241843 -0.919501 -0.329877 -0.256795 -0.908426 -0.371873 -0.083592 -0.924512 -0.244245 -0.370528 -0.896133 -0.261882 -0.399787 -0.878401 -0.239012 -0.350966 -0.905371 -0.228514 0.26963 -0.935457 -0.253264 0.114721 -0.960571 -0.387754 0.261515 -0.883887 -0.38213 0.068912 -0.921536 -0.395833 0.087229 -0.914171 -0.400411 0.295266 -0.867461 0.059717 -0.537384 -0.841221 0.170799 -0.490618 -0.854471 0.023673 -0.491984 -0.870282 0.138029 -0.482666 -0.864859 0.172547 -0.546798 -0.819292 0.048051 -0.585369 -0.809342 0.24535 -0.391127 -0.88703 0.271557 -0.425603 -0.863203 0.253362 -0.383231 -0.888224 -0.16392 -0.464478 -0.870282 -0.156074 -0.43633 -0.886147 -0.174103 -0.495914 -0.85074 0.311338 -0.234144 -0.921002 0.314452 -0.22765 -0.921573 0.331844 -0.253055 -0.908759 0.334948 -0.047443 -0.941041 0.358791 -0.06942 -0.930833 0.352034 -0.064094 -0.93379 0.370008 0.120956 -0.921121 0.325861 0.13785 -0.935314 0.365501 0.126808 -0.922133 0.293842 0.331419 -0.896559 0.345775 0.339247 -0.874843 0.349666 0.318511 -0.88107 0.181191 0.722006 -0.667741 0.050427 0.826013 -0.561391 0.124911 0.682336 -0.720288 -8.3e-005 0.771418 -0.636329 0.029371 0.862647 -0.504953 0.172441 0.753171 -0.634821 -0.088449 0.796983 -0.597491 -0.084759 0.878493 -0.470177 -0.056365 0.816918 -0.573992 0.28721 0.527283 -0.799677 0.229314 0.522426 -0.821271 0.28443 0.557632 -0.779838 -0.184783 0.47937 -0.857939 -0.159072 0.705689 -0.690434 -0.306838 0.513915 -0.801088 -0.313651 0.56677 -0.761837 -0.157757 0.765176 -0.624195 -0.073978 0.778021 -0.623867 -0.070331 0.835642 -0.544753 -0.087799 0.795672 -0.599331 -0.090591 0.859197 -0.503561 -0.232887 -0.144487 -0.961711 -0.244705 -0.029472 -0.96915 -0.189644 -0.261806 -0.946305 -0.251478 0.075314 -0.964928 -0.245154 0.195506 -0.949567 0.069738 -0.345456 -0.93584 -0.006898 -0.32309 -0.946343 0.169707 -0.300933 -0.938424 -0.116208 -0.315517 -0.941778 0.239122 -0.166926 -0.956533 0.255866 -0.011563 -0.966643 0.242809 0.152646 -0.957989 0.202267 0.315072 -0.927264 -0.032641 0.607102 -0.793953 0.060458 0.564272 -0.823372 -0.076278 0.598808 -0.797252 0.144831 0.45396 -0.879173 -0.202967 0.364176 -0.908945 -0.116061 0.523868 -0.843856 -0.061288 0.585836 -0.808109 -0.069247 0.590821 -0.803825 -0.06147 0.471147 -0.87991 -0.062087 0.339494 -0.938557 -0.069753 0.213116 -0.974534 -0.075711 0.106988 -0.991373 -0.074759 0.010224 -0.997149 -0.065915 -0.084862 -0.99421 -0.056359 -0.195476 -0.979088 -0.058264 -0.312594 -0.948098 -0.069962 -0.465689 -0.882179 -0.071195 -0.557949 -0.826815 -0.045754 -0.47841 -0.876944 -0.060646 -0.52652 -0.847997 -0.029989 -0.553187 -0.832517 -0.018388 -0.737572 -0.675018 -0.009087 -0.897441 -0.441041 -0.00158 -0.989993 -0.141109 -0.308322 -0.951065 -0.020322 -0.110713 -0.99381 -0.009215 -0.455221 -0.889796 -0.032191 -0.596471 -0.800898 -0.052761 -0.511407 0.823202 -0.246578 -0.952243 0.291325 -0.09145 -0.828387 0.538442 -0.154449 -0.712918 -0.697663 -0.070811 -0.964192 -0.256036 -0.069136 -0.99426 -0.077609 -0.073642 -0.993521 0.085088 -0.075342 -0.980403 0.180699 -0.07847 -0.618484 0.785248 -0.029371 -0.985065 0.143698 -0.094851 -0.540296 0.826158 -0.159823 -0.899944 0.302263 -0.314224 -0.858864 -0.489238 -0.15165 -0.711588 -0.680949 -0.173063 -0.767866 -0.270651 -0.580629 -0.848883 -0.383401 -0.36387 -0.671939 -0.656576 -0.342645 -0.602072 -0.614193 -0.510173 -0.382168 -0.137855 -0.913752 -0.607476 -0.181274 -0.773377 -0.492091 -0.563373 -0.66367 -0.327921 -0.53701 -0.777231 -0.13782 -0.132667 -0.981532 -0.138241 -0.548212 -0.824835 0.069946 -0.573914 -0.815923 0.11889 -0.117351 -0.985948 0.269629 -0.627654 -0.730309 0.418909 -0.085153 -0.904027 0.751138 0.018205 -0.659894 0.495888 -0.698066 -0.516526 -0.95931 0.034968 0.280182 -0.952229 0.032635 0.303636 -0.93144 0.167086 0.323268 -0.946666 0.171861 0.272557 -0.944846 0.025037 0.326557 -0.91551 0.150958 0.372899 -0.937578 0.012119 0.347564 -0.899986 0.12397 0.417919 -0.930687 -0.005661 0.365772 -0.885622 0.08696 0.456193 -0.924746 -0.02703 0.379623 -0.873384 0.042333 0.485189 -0.919713 -0.051956 0.389139 -0.863691 -0.010116 0.503919 -0.915891 -0.078133 0.39375 -0.857075 -0.064545 0.511132 -0.913924 -0.104134 0.392301 -0.854193 -0.116994 0.506623 -0.913686 -0.130204 0.385001 -0.854276 -0.170718 0.490986 -0.915221 -0.154787 0.372036 -0.856986 -0.224754 0.463745 -0.918574 -0.175545 0.354127 -0.862661 -0.271395 0.426803 -0.924357 -0.190998 0.330279 -0.874699 -0.302741 0.378484 -0.93489 -0.202027 0.291831 -0.900162 -0.32556 0.289342 -0.890596 -0.319641 0.323525 -0.930807 -0.199874 0.306022 -0.896 0.289458 0.336747 -0.918721 0.296141 0.261252 -0.872107 0.26593 0.410745 -0.848724 0.226438 0.477905 -0.827137 0.172709 0.534805 -0.80861 0.10747 0.578446 -0.794368 0.032855 0.606547 -0.785336 -0.046853 0.617294 -0.781515 -0.12666 0.610894 -0.781913 -0.208771 0.58739 -0.785856 -0.293485 0.544332 -0.793937 -0.361184 0.489091 -0.811021 -0.403504 0.423592 -0.835242 -0.430573 0.342022 -0.847345 0.403795 0.3449 -0.876998 0.412515 0.246384 -0.816114 0.373023 0.441375 -0.785473 0.321444 0.528872 -0.757102 0.251755 0.60284 -0.732492 0.167285 0.659903 -0.71285 0.071993 0.697612 -0.699448 -0.030237 0.714044 -0.693366 -0.135002 0.707826 -0.694705 -0.244186 0.676579 -0.700161 -0.36004 0.616559 -0.706167 -0.453566 0.543697 -0.723583 -0.510419 0.464651 -0.757493 -0.546167 0.357639 -0.786239 0.510828 0.347683 -0.822283 0.521471 0.227858 -0.748188 0.473296 0.464978 -0.710816 0.41044 0.571208 -0.676265 0.32557 0.66081 -0.646313 0.222825 0.729815 -0.622397 0.107069 0.775344 -0.605751 -0.016281 0.795488 -0.597541 -0.142104 0.789146 -0.599072 -0.273389 0.752576 -0.605625 -0.422009 0.67463 -0.607323 -0.542234 0.580639 -0.62045 -0.60942 0.493609 -0.663091 -0.648882 0.373178 -0.713977 0.609147 0.34522 -0.755821 0.6215 0.206088 -0.669772 0.565403 0.481378 -0.626414 0.492206 0.604433 -0.58635 0.393512 0.708055 -0.551603 0.274208 0.787746 -0.523909 0.140003 0.84019 -0.504656 -0.002861 0.863316 -0.494725 -0.148092 0.856339 -0.496885 -0.296649 0.81554 -0.511217 -0.470298 0.719359 -0.523448 -0.603062 0.601929 -0.54514 -0.6692 0.504969 -0.589688 -0.712391 0.380483 -0.632092 0.697412 0.337752 -0.679083 0.71125 0.181575 -0.582478 0.648166 0.490511 -0.533908 0.565768 0.62837 -0.489063 0.454778 0.744308 -0.450216 0.320826 0.833293 -0.419311 0.170384 0.891711 -0.397828 0.010371 0.917402 -0.386738 -0.152189 0.909545 -0.388906 -0.314579 0.865905 -0.416834 -0.497637 0.760662 -0.460989 -0.625959 0.629018 -0.542107 0.774681 0.32556 -0.593506 0.78981 0.15476 -0.487909 0.720672 0.492521 -0.434921 0.630341 0.64305 -0.3861 0.508756 0.769476 -0.343913 0.362223 0.866325 -0.310381 0.197869 0.929791 -0.287052 0.023243 0.957633 -0.274984 -0.154056 0.949026 -0.274153 -0.330443 0.903132 -0.301736 -0.514601 0.802584 -0.360883 -0.638403 0.679857 -0.445437 0.840329 0.308923 -0.50045 0.856542 0.126038 -0.387543 0.782319 0.487634 -0.331043 0.685354 0.648614 -0.279115 0.554987 0.783636 -0.234323 0.398047 0.886934 -0.198766 0.222238 0.954517 -0.174032 0.035606 0.984096 -0.161146 -0.153806 0.974872 -0.161623 -0.341915 0.925728 -0.183322 -0.527132 0.829774 -0.220903 -0.657095 0.720714 -0.343523 0.893833 0.288192 -0.401399 0.910874 0.095845 -0.282773 0.832684 0.476106 -0.223681 0.730476 0.645269 -0.169508 0.593188 0.787016 -0.122852 0.428085 0.895349 -0.085869 0.24334 0.966133 -0.060478 0.047525 0.997037 -0.048298 -0.151042 0.987347 -0.051169 -0.346801 0.936542 -0.071334 -0.536879 0.840638 -0.087789 -0.68823 0.720162 -0.21986 0.940431 0.259327 -0.28005 0.958152 0.059303 -0.156918 0.876718 0.454689 -0.095926 0.770248 0.630489 -0.040164 0.627316 0.777728 0.007734 0.455603 0.890149 0.046891 0.262808 0.963708 0.076503 0.059129 0.995315 0.087975 -0.141662 0.985998 0.082632 -0.346525 0.934394 0.066735 -0.543112 0.837004 0.044893 -0.70688 0.705907 -0.074449 0.972485 0.220751 -0.13589 0.990587 0.016451 -0.0105 0.907325 0.420298 0.052421 0.798072 0.600278 0.112271 0.651463 0.750327 0.17284 0.475296 0.862682 0.224622 0.286559 0.931359 0.237263 0.088989 0.967361 0.218281 -0.113 0.969322 0.208533 -0.342413 0.916116 0.208343 -0.548433 0.809824 0.177566 -0.726111 0.664254 0.072457 0.981536 0.17702 0.011184 0.999581 -0.026697 0.13045 0.91774 0.375149 0.17379 0.810665 0.559124 0.202259 0.677497 0.70717 0.281823 0.466274 0.838549 0.389486 0.279956 0.877454 0.38011 0.146887 0.913204 0.357385 -0.040932 0.93306 0.345941 -0.321259 0.881543 0.34413 -0.559385 0.754098 0.331752 -0.740685 0.584232 0.196145 0.971318 0.134422 0.140044 0.988072 -0.064045 0.22226 0.915547 0.335221 0.215212 0.826522 0.520139 0.485045 0.203691 0.850436 0.549186 0.085396 0.831326 0.51886 -0.274121 0.809717 0.494351 -0.559544 0.665228 0.486216 -0.716967 0.499552 0.288962 0.953069 0.090338 0.249176 0.963756 -0.09532 0.279421 0.910567 0.304618 0.388152 0.921065 0.031265 0.355698 0.926134 -0.125519 0.404067 0.903782 0.141097 0.68549 -0.217008 0.69499 0.702569 0.095581 0.705167 0.629523 -0.529053 0.569037 0.593718 -0.693079 0.408828 0.496683 0.867503 -0.027267 0.458279 0.875316 -0.154276 0.528047 0.848543 0.03378 0.806768 -0.152023 0.570977 0.808457 0.086821 0.582116 0.751952 -0.463847 0.468417 0.679141 -0.659907 0.321388 0.597185 0.799146 -0.068811 0.555473 0.811556 -0.181181 0.641605 0.76683 -0.017718 0.890943 -0.106367 0.441483 0.8665 0.068021 0.494522 0.874776 -0.373384 0.30879 0.812876 -0.546789 0.200637 0.713003 0.692155 -0.112017 0.675208 0.706006 -0.213658 0.760001 0.64795 -0.050575 0.881663 0.086627 0.463859 0.915057 -0.143088 0.377089 0.91943 -0.337729 0.201463 0.893271 -0.433495 0.118948 0.740476 -0.66906 0.063675 0.859379 -0.511092 0.015908 0.647012 -0.745143 -0.161672 0.622061 -0.770384 0.139818 0.519697 -0.840964 -0.150645 0.82048 0.555122 -0.136569 0.782459 0.574043 -0.241314 0.857424 0.511442 -0.057009 0.806681 0.536729 -0.247364 0.862468 0.496193 -0.099707 0.878972 0.473396 -0.057475 0.818208 0.516312 -0.252897 -0.95504 -0.087036 0.283414 0.458007 0.336509 0.822795 0.548647 0.436829 0.712858 0.498793 0.508214 0.702085 0.40895 0.438856 0.800103 0.458788 0.419381 0.783347 0.488579 0.295919 0.820806 0.338496 0.547557 0.765246 0.40128 0.540787 0.739273 0.447903 0.573978 0.685516 0.572577 0.090453 0.814846 0.659971 0.242585 0.711049 0.600793 0.356629 0.715446 0.507798 0.222804 0.832165 0.525407 0.175386 0.832579 0.592642 0.076696 0.801806 0.696495 -0.160757 0.699323 0.747071 -0.060562 0.66198 0.716368 0.089686 0.691935 0.643654 -0.044528 0.76402 0.679875 -0.004061 0.733317 0.751902 -0.071444 0.655392 0.836517 -0.293072 0.462977 0.828132 -0.230473 0.510959 0.762807 -0.199352 0.61513 0.753672 -0.259258 0.603957 0.803598 -0.130297 0.580735 0.857252 -0.175255 0.484153 0.916775 -0.199713 0.345889 0.913851 -0.163134 0.371839 0.958882 -0.051876 0.279022 0.954667 -0.015331 0.297282 0.878559 0.023718 0.477045 0.887732 -0.142315 0.437811 0.881622 0.374121 0.287709 0.786275 0.361357 0.501191 0.845764 0.203036 0.493417 0.938392 0.191581 0.287606 0.964699 0.141352 0.222208 0.919874 0.344658 0.187198 0.735833 0.601185 0.31165 0.66518 0.53777 0.518014 0.724119 0.464664 0.509645 0.811286 0.503396 0.297333 0.847399 0.503007 0.169996 0.757311 0.630422 0.170435 0.55095 0.766953 0.328993 0.550236 0.662384 0.508417 0.604139 0.603421 0.520479 0.650213 0.6874 0.32358 0.647232 0.739853 0.183595 0.52066 0.823219 0.226328 0.232539 0.84106 0.48841 0.333081 0.772484 0.540672 0.4542 0.75815 0.467879 0.390892 0.846896 0.360515 0.372475 0.869089 0.325495 0.285053 0.827495 0.483733 0.339781 0.673393 0.656575 0.238562 0.704887 0.668 0.320797 0.691569 0.647164 0.829927 0.324203 0.453996 0.78816 0.413058 0.456275 0.818961 0.437724 0.37108 0.868606 0.367447 0.332424 0.594766 0.761672 -0.257117 0.732865 0.586033 -0.345649 0.753901 0.533838 0.38295 0.862991 0.204761 0.461865 0.867214 0.193679 0.458725 0.940858 -0.000486 0.3388 0.908483 -0.022324 0.417326 0.966409 -0.169051 -0.193584 0.923393 -0.383468 0.01723 0.951149 0.102662 0.291162 0.867316 0.198019 0.456675 0.856872 0.261318 0.444391 0.920131 0.262219 0.290862 0.845974 0.375555 -0.378531 0.934245 0.115443 -0.337429 0.724297 0.540152 0.42852 0.705159 0.593618 0.387773 0.719293 0.595991 0.356949 0.405662 0.913937 -0.012545 0.486535 0.862055 -0.141935 0.71787 0.605721 0.343167 0.730039 0.584407 0.354276 0.725686 0.562032 0.396862 0.693853 0.591752 0.410363 0.217331 0.868422 0.445659 0.312452 0.932842 0.179389 0.629841 0.545507 0.552922 0.214362 0.527633 0.821981 0.173015 0.7023 0.690536 0.57713 0.459556 0.675077 0.602476 0.389152 0.696838 0.688167 0.493994 0.531411 0.689409 0.382203 0.615335 0.751692 0.33439 0.568456 0.797599 0.361585 0.482797 0.671211 0.364963 0.645196 0.411128 0.319273 0.853838 0.313319 0.402291 0.860228 0.718031 0.380064 0.58308 0.802641 0.402836 0.439876 0.786668 0.41629 0.455912 0.7261 0.396288 0.561903 0.493842 0.121551 0.861014 0.469657 0.240907 0.849345 0.710366 0.36318 0.602894 0.767343 0.380847 0.515888 0.773688 0.31236 0.551215 0.718919 0.257235 0.645744 0.615801 -0.251493 0.746687 0.530844 -0.044491 0.846301 0.775459 0.113009 0.621203 0.81328 0.246247 0.527199 0.846491 0.212923 0.487972 0.849483 0.012404 0.52747 0.842402 -0.47405 0.256193 0.735809 -0.426295 0.526173 0.762121 0.060604 0.644592 0.762121 0.060604 0.644592 0.670388 0.105094 0.734531 0.670388 0.105094 0.734531 0.53593 0.35712 0.765013 0.53593 0.35712 0.765013 0.519593 0.470857 0.712963 0.519593 0.470857 0.712963 0.592721 0.147272 0.791829 0.592721 0.147272 0.791829 0.539402 0.227876 0.810628 0.539402 0.227876 0.810628 0.838046 -0.041961 0.543984 0.838046 -0.041961 0.543984 0.805134 0.024108 0.592603 0.805134 0.024108 0.592603 0.458987 0.56981 0.681651 0.458987 0.56981 0.681651 0.36131 0.737053 0.571146 0.36131 0.737053 0.571146 0.930114 -0.106536 0.351481 0.930114 -0.106536 0.351481 0.880661 -0.11099 0.460561 0.880661 -0.11099 0.460561 0.320732 0.857422 0.402441 0.320732 0.857422 0.402441 0.44726 0.859353 0.247932 0.44726 0.859353 0.247932 0.95182 0.231775 0.200795 0.95182 0.231775 0.200795 0.964167 0.021103 0.264456 0.964167 0.021103 0.264456 0.579093 0.8006 0.153919 0.579093 0.8006 0.153919 0.697437 0.705567 0.12553 0.697437 0.705567 0.12553 0.814036 0.566095 0.129927 0.814036 0.566095 0.129927 0.890074 0.43096 0.148464 0.890074 0.43096 0.148464 0.029208 0.881474 -0.471328 0.029208 0.881474 -0.471328 0.096449 0.728365 -0.678368 0.096449 0.728365 -0.678368 0.4685 0.04873 -0.882118 0.4685 0.04873 -0.882118 0.638087 -0.253445 -0.727056 0.638087 -0.253445 -0.727056 0.178322 0.511529 -0.840559 0.178322 0.511529 -0.840559 0.316697 0.307225 -0.897394 0.316697 0.307225 -0.897394 -0.229597 0.97301 0.023188 -0.229597 0.97301 0.023188 -0.099111 0.961282 -0.257125 -0.099111 0.961282 -0.257125 0.690989 -0.552351 -0.466307 0.690989 -0.552351 -0.466307 0.614728 -0.774975 -0.146708 0.614728 -0.774975 -0.146708 -0.213285 0.674612 0.706689 -0.213285 0.674612 0.706689 -0.277125 0.880387 0.384865 -0.277125 0.880387 0.384865 0.522099 -0.831492 0.189823 0.522099 -0.831492 0.189823 0.41303 -0.701304 0.581016 0.41303 -0.701304 0.581016 0.016451 0.304495 0.952372 0.016451 0.304495 0.952372 -0.102423 0.482133 0.87009 -0.102423 0.482133 0.87009 0.321342 -0.449506 0.833477 0.321342 -0.449506 0.833477 0.240502 -0.251619 0.937468 0.240502 -0.251619 0.937468 0.177609 -0.048219 0.982919 0.177609 -0.048219 0.982919 0.113264 0.143803 0.983103 0.113264 0.143803 0.983103 0.856752 0.237426 0.457827 0.923385 0.210649 0.320917 0.807841 0.342573 0.479622 0.926355 0.306361 0.219111 0.893024 0.401372 0.203491 0.707489 0.350542 0.613661 0.690028 0.404138 0.600445 0.701459 0.296818 0.647962 0.79174 0.518629 0.322757 0.756722 0.567339 0.324806 0.829456 0.472735 0.297531 0.598529 0.538416 0.593188 0.611969 0.432342 0.662249 0.636119 0.597396 0.488334 0.661695 0.3349 0.670821 0.723255 0.374582 0.580165 0.790325 0.34767 0.504491 0.811959 0.371822 0.449969 0.863778 0.442517 0.24097 0.701135 0.600411 0.384599 0.932766 0.160597 0.322732 0.970845 0.170441 0.168552 0.883636 0.175716 0.433947 0.958137 0.275993 0.076165 0.918477 0.391142 0.058382 0.596042 0.268924 0.756581 0.631692 0.23949 0.737299 0.526233 0.296752 0.79688 0.713347 0.696389 0.078601 0.607873 0.785114 0.118686 0.815341 0.574919 0.068466 0.317442 0.747572 0.583409 0.328784 0.607429 0.72314 0.382484 0.824581 0.416859 0.421264 0.422347 0.802596 0.694449 0.183029 0.695875 0.790988 0.142639 0.594973 0.851498 0.154648 0.501034 0.88206 0.467139 0.061249 0.494106 0.834447 0.244044 0.898388 0.239427 0.368203 0.928433 0.290662 0.231361 0.927907 0.362185 0.088373 0.90613 0.422899 -0.009252 0.502343 -0.531378 -0.68212 0.481433 0.034979 -0.875785 0.821621 0.007587 -0.569984 0.601173 0.059321 -0.796914 0.288385 0.93379 -0.211824 0.988457 0.045901 -0.144378 0.606647 0.786641 -0.114787 0.631147 0.75431 -0.180748 0.972584 0.01879 -0.231792 0.50542 0.85821 -0.089584 0.979429 0.125423 -0.158074 0.681238 -0.704485 -0.199036 0.649817 -0.670326 -0.358331 0.486326 -0.865845 -0.117473 0.446328 -0.866561 -0.223303 0.749936 -0.639396 -0.169616 0.164446 0.814374 0.556554 0.230868 0.7458 0.624886 0.513037 0.656869 0.552553 0.434017 0.729299 0.528916 0.753221 0.48407 0.445347 0.753221 0.48407 0.445347 0.124146 -0.973254 0.193296 0.136691 -0.979344 0.149 0.136691 -0.979344 0.149 0.184839 -0.973906 0.131688 0.16227 -0.986484 -0.022769 0.212195 -0.968006 0.133929 0.212195 -0.968006 0.133929 0.404326 0.749489 0.524201 0.579587 0.654669 0.485269 0.579587 0.654669 0.485269 0.267339 0.835446 0.480167 0.245983 0.889628 0.38478 0.267339 0.835446 0.480167 0.316456 0.757992 0.570354 0.349573 0.870764 0.345787 0.299173 0.736411 0.60679 0.210334 0.763548 0.610536 0.173912 0.765408 0.619601 0.197207 0.7873 0.584182 0.208134 0.150701 0.966421 0.45413 0.145812 0.878922 0.34138 0.606573 0.718004 0.193961 0.656473 0.728987 0.702212 0.014831 0.711813 0.629702 0.408791 0.660579 0.464374 -0.299888 0.833321 0.195845 -0.470873 0.860188 0.247334 -0.957018 0.151467 0.40013 -0.846054 0.352263 0.156142 -0.842984 0.51478 0.487382 -0.796965 0.356799 0.24234 -0.955279 0.169453 0.220077 -0.968074 0.119991 0.144759 -0.978459 0.147185 0.183204 -0.982603 -0.03045 0.067622 -0.997704 0.003667 0.333609 0.885237 0.324131 0.26257 0.786829 0.558531 0.249027 0.818022 0.518484 0.310909 0.905688 0.288211 0.981618 -0.064667 0.179569 0.953472 -0.110057 0.280676 0.829047 -0.397145 0.393645 0.92859 0.156172 0.336647 0.777747 -0.421784 0.466056 0.769156 -0.579058 0.270354 0.995933 0.044395 0.078399 0.452986 -0.772336 0.445309 0.25562 -0.911562 0.322045 0.985612 -0.013881 -0.168452 0.7241 -0.689125 0.028032 0.669094 -0.721471 -0.178308 0.959852 -0.03757 -0.277979 0.142983 -0.970854 0.192352 0.080246 -0.996775 0.00032 0.399717 0.880195 0.255896 0.376418 0.74386 0.552252 0.932941 0.251988 0.257146 0.923519 0.376658 0.072404 0.341071 0.563945 0.752088 0.901143 0.06264 0.428972 0.473307 -0.704975 -0.528197 0.53861 0.034196 -0.841861 0.284747 -0.650038 -0.704536 0.28859 -0.717857 -0.633559 0.66476 -0.69131 -0.283167 0.687122 0.601648 -0.407288 0.19454 0.943367 -0.268726 0.142669 0.967481 -0.20887 0.158097 0.977372 -0.140534 0.267227 0.956959 -0.113221 0.206618 0.964826 -0.16254 0.111176 0.975912 -0.187714 0.29006 0.951394 -0.103509 0.197728 0.977642 -0.071559 0.133329 0.730763 0.669484 -0.021072 0.776457 0.629818 -0.048861 0.692427 0.719831 -0.267381 0.736738 0.621067 0.502201 -0.841758 -0.198082 0.347489 -0.823244 -0.44891 0.323269 -0.832159 -0.450565 0.365532 -0.909977 -0.195774 0.278989 -0.744812 -0.606152 0.310543 -0.724294 -0.615598 0.470573 -0.845704 0.251686 0.639991 -0.751749 0.159014 0.847528 -0.526779 -0.064814 0.931762 0.360605 -0.042234 0.731131 -0.37377 0.57074 0.545828 -0.440059 0.713036 0.28654 -0.807827 -0.515083 0.336227 -0.798398 -0.499512 0.390344 -0.778946 -0.490791 0.394888 -0.900382 -0.182694 0.453746 -0.877199 -0.156959 0.356802 -0.910855 -0.207449 -0.344161 0.695104 0.631176 -0.149439 0.640429 0.753338 -0.149043 0.665502 0.731364 -0.349826 0.693839 0.629452 -0.136209 0.702366 0.698663 -0.323407 0.705435 0.63069 0.682989 -0.682468 -0.260315 0.59895 -0.703991 -0.381648 0.629914 -0.656157 -0.415531 0.77097 -0.571238 -0.281588 0.426971 -0.693708 -0.580055 0.470882 -0.685627 -0.555145 0.547183 -0.735019 -0.400422 0.403878 -0.692278 -0.598025 0.639219 -0.729933 -0.242067 0.756317 -0.646196 0.102054 0.818345 -0.573567 0.036491 0.814869 -0.159464 0.557279 0.753505 -0.300809 0.584589 0.916322 -0.395282 -0.064085 -0.552229 0.717565 0.424433 -0.549898 0.723485 0.417351 -0.689114 0.695621 0.20306 -0.692124 0.693865 0.198787 -0.449937 0.772191 0.44864 -0.582332 0.776773 0.23982 0.4591 -0.736156 -0.497294 0.428557 -0.75507 -0.496193 0.470093 -0.756298 -0.455001 0.604445 -0.773438 -0.190894 0.573109 -0.784752 -0.236031 0.620477 -0.767507 -0.161065 -0.154659 0.830449 0.535196 -0.208047 0.933434 0.292262 0.839948 -0.488026 -0.237313 0.649751 -0.668884 -0.361136 0.686328 -0.685198 -0.243841 0.870409 -0.456272 -0.184943 0.113928 -0.971144 0.209524 0.420169 -0.778433 0.466369 0.36716 -0.763202 0.531711 -0.02591 -0.968892 0.246125 0.735247 0.502746 0.454597 0.760736 -0.231899 0.60622 0.709739 -0.164748 0.68493 0.677088 0.518341 0.522374 0.150157 0.985896 -0.073902 0.110758 0.979195 -0.170028 0.14924 0.977328 -0.150193 0.102024 0.980668 -0.166976 0.092901 0.976521 -0.194362 0.035026 -0.981694 0.187218 -0.094184 -0.972517 0.212932 -0.040179 -0.998571 0.035247 -0.134425 -0.988935 0.062742 0.104938 0.981244 -0.161707 0.151335 0.986059 -0.069173 0.069929 0.986197 -0.150086 0.095076 0.992657 -0.074781 -0.031932 -0.959846 0.278703 0.3959 -0.771292 0.498369 0.753955 -0.269659 0.599029 0.811465 0.345679 0.471202 0.245701 0.963498 -0.106314 0.226774 0.963215 -0.144187 -0.201856 -0.975954 0.082263 -0.144695 -0.963786 0.22401 0.238399 0.953876 -0.182445 0.263237 0.957272 -0.119739 0.137189 0.954008 0.266548 0.004047 0.860303 0.509766 -0.324412 0.82325 0.46585 -0.221133 0.946632 0.234497 0.552688 -0.819889 -0.14939 0.435697 -0.752668 -0.493618 0.365249 -0.701895 -0.611504 0.358271 0.298744 0.88453 0.369064 0.261778 0.891776 0.680582 -0.368671 0.633159 0.35026 0.27383 0.895732 -0.101362 0.652868 0.750659 -0.31403 0.712829 0.627104 0.528306 -0.819128 -0.223433 0.448996 -0.780542 -0.434921 0.341896 0.423686 0.838807 0.504935 0.340193 0.79329 0.181522 0.411952 0.892942 0.181522 0.411952 0.892942 0.465736 -0.606641 0.644264 -0.0363 0.939717 0.340021 0.06455 0.996125 -0.059741 -0.0363 0.939717 0.340021 0.286421 0.951044 -0.116095 0.288616 0.950349 -0.116354 0.275757 0.953921 -0.118292 0.150003 0.985457 -0.079833 -0.160278 0.98687 0.019962 -0.557805 0.804225 0.205125 -0.528811 0.837981 0.134713 -0.689987 0.699784 0.184985 -0.704052 0.684413 0.189445 -0.639015 0.750411 0.168948 -0.301208 0.951297 0.065638 0.321965 0.939617 -0.116016 0.978366 -0.179418 -0.103002 0.950511 -0.146462 -0.274005 0.864752 0.428163 -0.262451 0.86448 -0.440579 -0.242001 0.720676 -0.665351 -0.194768 0.631835 -0.756962 -0.166709 0.640249 -0.749264 -0.169365 0.627443 -0.760901 -0.165364 0.541996 -0.828837 -0.138816 0.434754 -0.894291 -0.105989 0.396475 -0.913174 -0.094449 0.3782 -0.921198 -0.091428 0.733887 0.635327 -0.240355 0.720343 0.687761 -0.089944 0.744559 0.62451 -0.235838 0.345736 0.9286 0.13479 0.993133 0.093733 0.070012 0.356159 0.925036 0.132136 0.187307 0.978163 -0.09007 0.502357 0.858922 0.099456 0.251333 0.962401 -0.103033 0.65335 -0.735934 0.17758 0.65112 0.755621 0.071276 0.96166 -0.25776 -0.093651 0.209729 0.846026 0.490157 0.369985 -0.806261 -0.461579 -0.486759 0.759504 0.431532 0.951681 0.185976 -0.24437 0.902737 0.332183 -0.273352 0.941165 0.315326 -0.121568 0.951681 0.185976 -0.24437 0.956675 0.290442 0.020395 0.999368 -0.03479 -0.007251 0.964422 0.229761 0.130768 0.952504 0.13236 0.274258 0.999368 -0.03479 -0.007251 0.940577 -0.003262 0.339566 0.985356 -0.047323 -0.163812 0.973149 -0.138935 0.183517 0.98634 -0.163979 0.015638 0.985356 -0.047323 -0.163812 0.800077 -0.569905 -0.187309 0.874318 -0.431977 -0.221278 0.945305 -0.32607 -0.008707 0.031586 -0.183913 0.982435 0.031586 -0.183913 0.982435 -0.030751 -0.950601 0.30889 -0.030751 -0.950601 0.30889 0.985137 -0.170059 0.024169 -0.138803 -0.672288 0.727161 -0.138803 -0.672288 0.727161 0.909257 -0.407951 -0.082632 0.909257 -0.407951 -0.082632 0.975975 0.172973 -0.132486 0.975975 0.172973 -0.132486 0.980139 0.18814 -0.062699 0.980139 0.18814 -0.062699 0.977763 -0.075286 0.195733 0.977763 -0.075286 0.195733 0.989301 -0.108793 0.097195 0.989301 -0.108793 0.097195 0.977445 0.124096 -0.170885 0.977445 0.124096 -0.170885 0.998153 0.056019 0.023506 0.998153 0.056019 0.023506 0.796335 -0.523715 0.302611 0.474101 -0.734714 0.485204 -0.961031 0.165053 0.221757 -0.966015 0.031778 0.256527 -0.974186 0.146597 0.171671 -0.972365 0.022683 0.232362 -0.984794 0.118521 0.127015 -0.97678 0.011602 0.213931 -0.992779 0.080892 0.088578 -0.980405 -0.006081 0.1969 -0.997692 0.034776 0.058321 -0.983084 -0.030932 0.180525 -0.999084 -0.01652 0.039467 -0.983546 -0.055798 0.171824 -0.996955 -0.071034 0.03217 -0.982323 -0.081459 0.168542 -0.991355 -0.12588 0.037019 -0.979425 -0.107879 0.170556 -0.982538 -0.178319 0.053122 -0.975168 -0.132497 0.177459 -0.97118 -0.224992 0.078667 -0.9699 -0.153567 0.188972 -0.957807 -0.263848 0.113978 -0.963903 -0.170188 0.204763 -0.939615 -0.29636 0.171153 -0.955655 -0.183417 0.230396 -0.916192 -0.318352 0.243403 -0.943673 -0.194814 0.26745 -0.940074 0.285894 0.18581 -0.959445 0.258862 0.111609 -0.975323 0.216319 0.04416 -0.986978 0.160325 -0.013014 -0.993968 0.093475 -0.057363 -0.996059 0.018754 -0.086686 -0.993227 -0.06055 -0.099163 -0.985628 -0.140582 -0.09367 -0.972899 -0.220345 -0.070116 -0.955697 -0.29262 -0.031897 -0.933885 -0.356815 0.023271 -0.904554 -0.412768 0.106793 -0.874187 -0.443341 0.198105 -0.904883 0.399162 0.14784 -0.930066 0.363832 0.051015 -0.950616 0.308169 -0.036885 -0.965592 0.235032 -0.111317 -0.974471 0.147814 -0.168987 -0.976979 0.05078 -0.207202 -0.973161 -0.05162 -0.224262 -0.963025 -0.155851 -0.219756 -0.94516 -0.263631 -0.192798 -0.918341 -0.367435 -0.147108 -0.884469 -0.46033 -0.076225 -0.846414 -0.531736 0.028979 -0.81683 -0.561478 0.132408 -0.856198 0.505244 0.107954 -0.886734 0.462178 -0.009715 -0.911564 0.394322 -0.116455 -0.92955 0.305236 -0.206801 -0.940103 0.199203 -0.276631 -0.942966 0.081326 -0.322801 -0.938215 -0.042948 -0.343377 -0.925514 -0.170798 -0.338011 -0.90304 -0.303133 -0.304351 -0.869126 -0.43109 -0.242446 -0.825613 -0.542663 -0.154533 -0.78679 -0.615366 -0.04782 -0.763783 -0.641746 0.069265 -0.795208 0.602633 0.06691 -0.830597 0.552504 -0.069627 -0.85928 0.473551 -0.193358 -0.879991 0.369951 -0.297914 -0.892055 0.246859 -0.378547 -0.895219 0.110198 -0.431786 -0.889617 -0.03377 -0.455457 -0.87547 -0.181874 -0.447743 -0.852671 -0.3311 -0.404135 -0.819795 -0.473097 -0.322669 -0.773161 -0.597383 -0.21297 -0.732323 -0.672114 -0.109388 -0.703802 -0.710148 0.018793 -0.723285 0.690084 0.025367 -0.762965 0.633675 -0.127835 -0.79508 0.544841 -0.266451 -0.818228 0.428382 -0.383395 -0.831653 0.290204 -0.47343 -0.835118 0.137002 -0.532737 -0.828804 -0.024239 -0.559013 -0.813771 -0.188224 -0.549862 -0.79107 -0.350428 -0.501406 -0.757687 -0.507139 -0.410755 -0.712161 -0.640658 -0.287028 -0.672656 -0.725938 0.143347 -0.641851 0.766661 -0.016075 -0.68527 0.704796 -0.183489 -0.720395 0.607414 -0.334782 -0.745674 0.479891 -0.46225 -0.760327 0.328783 -0.560182 -0.764125 0.161453 -0.624537 -0.757252 -0.014499 -0.652962 -0.740618 -0.191819 -0.643964 -0.713493 -0.368156 -0.596145 -0.67319 -0.539525 -0.505696 -0.633594 -0.66652 -0.392824 -0.552217 0.831757 -0.056883 -0.598779 0.765354 -0.236001 -0.636491 0.660838 -0.397708 -0.663675 0.524103 -0.533716 -0.679467 0.362301 -0.638015 -0.683616 0.18334 -0.706439 -0.676308 -0.004709 -0.736604 -0.658096 -0.193709 -0.72759 -0.624976 -0.385418 -0.678866 -0.57331 -0.567527 -0.590956 -0.539712 -0.669892 -0.509859 -0.455829 0.884817 -0.096532 -0.504906 0.814845 -0.284776 -0.544771 0.704701 -0.454557 -0.573584 0.560728 -0.597148 -0.59041 0.390539 -0.706325 -0.594941 0.202476 -0.777849 -0.58738 0.005005 -0.809296 -0.568315 -0.193377 -0.799765 -0.531724 -0.399254 -0.746904 -0.472063 -0.588647 -0.65624 -0.438252 -0.663694 -0.606173 -0.336649 0.931055 -0.140727 -0.387856 0.858178 -0.336301 -0.429627 0.743452 -0.512543 -0.459974 0.593597 -0.660353 -0.477869 0.416607 -0.773356 -0.482921 0.221168 -0.847273 -0.475295 0.016124 -0.879678 -0.455543 -0.189817 -0.869741 -0.417917 -0.406061 -0.812687 -0.353552 -0.60422 -0.714086 -0.307968 -0.666598 -0.678825 -0.193714 0.962913 -0.187815 -0.246267 0.8884 -0.387424 -0.288613 0.77069 -0.568101 -0.317008 0.616998 -0.720292 -0.324374 0.435579 -0.839674 -0.320365 0.248902 -0.91401 -0.326185 0.041175 -0.944409 -0.317893 -0.181748 -0.930544 -0.279515 -0.404386 -0.870829 -0.213288 -0.614544 -0.759503 -0.156721 -0.682515 -0.713871 -0.046463 0.971992 -0.230375 -0.103325 0.898972 -0.425645 -0.164362 0.783516 -0.59924 -0.218293 0.643744 -0.733446 -0.220032 0.426957 -0.877094 -0.163378 0.257767 -0.952294 -0.189104 0.091231 -0.97771 -0.196106 -0.137994 -0.970824 -0.15848 -0.395997 -0.904473 -0.068774 -0.626707 -0.776214 0.011498 -0.702817 -0.711278 0.080842 0.962059 -0.260588 -0.004368 0.897342 -0.441313 -0.108637 0.80053 -0.589364 -0.077282 0.160772 -0.983961 -0.047366 -0.005136 -0.998864 -0.055321 -0.376835 -0.924627 0.024205 -0.64051 -0.767568 0.122657 -0.746286 -0.654227 0.182989 0.944565 -0.272601 0.060296 0.892968 -0.446064 0.298773 0.913904 -0.274797 0.253313 0.891687 -0.375137 0.114854 -0.338324 -0.933994 0.102232 0.013353 -0.994671 0.151765 -0.614693 -0.774028 0.247572 -0.789545 -0.561539 0.422501 0.861523 -0.281553 0.416333 0.839555 -0.34902 0.37199 -0.274879 -0.886603 0.353485 0.017625 -0.935274 0.378321 -0.507369 -0.774242 0.386435 -0.730111 -0.563565 0.530382 0.793788 -0.297652 0.540498 0.759214 -0.362568 0.588887 -0.200332 -0.782994 0.56861 0.014756 -0.822475 0.582449 -0.344028 -0.736476 0.575726 -0.569224 -0.586961 0.65241 0.687716 -0.318445 0.658927 0.642592 -0.391012 0.527988 0.032741 -0.848621 0.572271 -0.222348 -0.789346 0.647447 -0.270239 -0.712589 0.71954 -0.352064 -0.598592 0.761452 -0.51329 -0.395884 0.588683 -0.724004 -0.359542 0.425419 -0.825843 -0.370137 0.75829 0.548346 -0.35258 0.752446 0.495489 -0.433954 0.762878 0.455469 -0.458873 0.774527 0.480972 -0.410821 -0.059483 0.299655 -0.952191 -0.090596 0.399221 -0.912368 0.036545 0.471124 -0.881309 0.07364 0.399264 -0.913874 -0.030114 0.266255 -0.963432 -0.038844 0.381241 -0.923659 -0.13284 0.509742 -0.85001 -0.066453 0.503298 -0.861554 0.001768 0.538105 -0.842876 0.050754 0.065758 -0.996544 -0.019181 0.193572 -0.980899 0.117727 0.320417 -0.939933 0.173089 0.209675 -0.962329 0.073986 0.047418 -0.996131 -0.002861 0.154045 -0.98806 0.22268 -0.189591 -0.956279 0.142047 -0.070696 -0.987332 0.235945 0.061061 -0.969846 0.284019 -0.085242 -0.955022 0.284187 -0.119522 -0.95129 0.18495 -0.046926 -0.981627 0.469944 -0.314762 -0.824668 0.324898 -0.286474 -0.901318 0.327435 -0.220891 -0.918691 0.436096 -0.251459 -0.864054 0.473624 -0.209127 -0.855538 0.371679 -0.174482 -0.911817 0.593781 -0.220328 -0.773873 0.64569 -0.038921 -0.762607 0.659388 -0.074842 -0.748068 0.577338 -0.188497 -0.794449 0.520053 -0.164818 -0.838081 0.486574 -0.003404 -0.873633 0.583694 0.350278 -0.732535 0.633952 0.167061 -0.755112 0.445809 0.172583 -0.878333 0.388775 0.329865 -0.860258 0.670839 0.324639 -0.666772 0.692093 0.11947 -0.711852 0.445222 0.577844 -0.684013 0.517686 0.479897 -0.708308 0.330597 0.433029 -0.838565 0.275479 0.50654 -0.817024 0.53871 0.612813 -0.578145 0.616696 0.484403 -0.620516 0.278003 0.744964 -0.606418 0.365453 0.664551 -0.651779 0.221829 0.57283 -0.789087 0.182217 0.632878 -0.752504 0.306851 0.80584 -0.506422 0.437533 0.722967 -0.534681 -0.077112 0.816166 -0.572649 0.125172 0.825515 -0.550324 0.121846 0.731498 -0.670868 -0.019603 0.743964 -0.667932 -0.030227 0.802231 -0.596248 0.128031 0.849287 -0.512171 -0.166759 0.672289 -0.721262 -0.074919 0.639876 -0.764817 -0.086363 0.65898 -0.747185 0.419268 0.406688 -0.811677 0.45283 0.31045 -0.835802 0.550354 0.354523 -0.755926 0.488995 0.426269 -0.761038 0.798505 0.589542 -0.121777 0.629664 0.764854 -0.136094 0.428097 0.516657 -0.741484 0.481992 0.162651 -0.860946 0.476625 0.173666 -0.861782 0.541781 -0.051837 -0.83892 0.610962 -0.026965 -0.7912 0.77405 -0.395398 -0.494477 0.920958 -0.172543 -0.349378 0.643893 0.078074 -0.761122 0.480736 0.233816 -0.845117 0.483133 0.167149 -0.859444 0.616661 0.240115 -0.749715 0.967736 0.117908 -0.222674 0.913198 0.379905 -0.147451 0.390578 0.591083 -0.705741 0.382839 0.535126 -0.753044 0.414139 0.577573 -0.70349 0.47634 0.860797 -0.179246 0.340392 0.907818 -0.24495 0.421549 0.584377 -0.693397 0.405414 0.540989 -0.736865 0.431518 0.576007 -0.694268 0.364935 0.56563 -0.739517 0.160295 0.921034 -0.354968 -0.063838 0.850342 -0.522343 0.231853 0.516573 -0.824255 -0.234963 0.674542 -0.699847 -0.263787 0.488611 -0.831671 0.143761 0.349005 -0.926028 0.121957 0.430188 -0.894463 0.244238 0.368175 -0.897104 0.286839 0.465666 -0.837185 0.431825 0.308888 -0.847417 0.349106 0.306214 -0.88564 0.242828 0.317447 -0.916658 -0.193183 0.358321 -0.913393 -0.108882 0.280328 -0.953709 0.308743 0.342271 -0.887428 0.400235 0.380025 -0.833902 0.437071 0.358464 -0.824907 0.306876 0.362809 -0.879885 -0.062544 0.201463 -0.977497 -0.04802 0.0781 -0.995788 0.266858 0.326827 -0.906626 0.350138 0.278047 -0.894479 0.354862 0.347322 -0.868009 0.255429 0.219947 -0.941477 -0.006971 -0.087812 -0.996113 0.120653 -0.291438 -0.94895 0.318338 0.07641 -0.944893 0.448609 0.180967 -0.875215 0.399034 0.212972 -0.89186 0.432397 -0.02109 -0.901437 0.342686 -0.457883 -0.820311 0.578434 -0.49519 -0.648229 0.296419 -0.000702 -0.955058 0.296419 -0.000702 -0.955058 0.172523 0.052896 -0.983584 0.172523 0.052896 -0.983584 0.039158 0.322577 -0.945733 0.039158 0.322577 -0.945733 0.047516 0.433082 -0.900101 0.047516 0.433082 -0.900101 0.073663 0.121903 -0.989805 0.073663 0.121903 -0.989805 0.020637 0.212144 -0.977021 0.020637 0.212144 -0.977021 0.424054 -0.091556 -0.900997 0.424054 -0.091556 -0.900997 0.357272 -0.03225 -0.933444 0.357272 -0.03225 -0.933444 0.012525 0.534209 -0.84526 0.012525 0.534209 -0.84526 -0.011494 0.7071 -0.707021 -0.011494 0.7071 -0.707021 0.597526 -0.131026 -0.791072 0.597526 -0.131026 -0.791072 0.505826 -0.146625 -0.850083 0.505826 -0.146625 -0.850083 0.043082 0.835064 -0.548463 0.043082 0.835064 -0.548463 0.232892 0.841802 -0.486962 0.232892 0.841802 -0.486962 0.692441 0.211038 -0.689919 0.692441 0.211038 -0.689919 0.670034 -0.002279 -0.742327 0.670034 -0.002279 -0.742327 0.395537 0.785831 -0.475416 0.395537 0.785831 -0.475416 0.511415 0.69064 -0.511342 0.511415 0.69064 -0.511342 0.608864 0.549501 -0.572131 0.608864 0.549501 -0.572131 0.665886 0.412472 -0.621662 0.665886 0.412472 -0.621662 0.267718 0.900516 0.342634 0.267718 0.900516 0.342634 0.434491 0.763425 0.477912 0.434491 0.763425 0.477912 0.869912 0.076138 0.487294 0.869912 0.076138 0.487294 0.932155 -0.229683 0.279881 0.932155 -0.229683 0.279881 0.602872 0.538559 0.588642 0.602872 0.538559 0.588642 0.752279 0.323048 0.574209 0.752279 0.323048 0.574209 -0.213672 0.974192 0.072768 -0.213672 0.974192 0.072768 0.039021 0.973056 0.227243 0.039021 0.973056 0.227243 0.840289 -0.540248 0.045233 0.840289 -0.540248 0.045233 0.606818 -0.775669 -0.17352 0.606818 -0.775669 -0.17352 -0.573632 0.648601 -0.500262 -0.573632 0.648601 -0.500262 -0.459052 0.865899 -0.198721 -0.459052 0.865899 -0.198721 0.348772 -0.845309 -0.404736 0.348772 -0.845309 -0.404736 0.044107 -0.731158 -0.680781 0.044107 -0.731158 -0.680781 -0.526631 0.262875 -0.808429 -0.526631 0.262875 -0.808429 -0.572583 0.444835 -0.688673 -0.572583 0.444835 -0.688673 -0.171813 -0.489749 -0.854767 -0.171813 -0.489749 -0.854767 -0.298216 -0.294897 -0.907801 -0.298216 -0.294897 -0.907801 -0.378075 -0.092709 -0.921121 -0.378075 -0.092709 -0.921121 -0.44719 0.096281 -0.889242 -0.44719 0.096281 -0.889242 0.612429 0.206829 -0.762989 0.464886 0.248405 -0.849809 0.407407 0.351958 -0.842701 0.648197 0.357749 -0.672202 0.671753 0.259933 -0.693674 0.260779 0.444292 -0.857088 0.266283 0.359019 -0.894538 0.239549 0.282383 -0.928911 0.456076 0.54318 -0.704947 0.484975 0.494828 -0.721072 0.523431 0.452679 -0.721874 0.154432 0.395601 -0.905345 0.17883 0.504716 -0.84456 0.266157 0.567731 -0.779001 0.193307 0.300033 -0.934138 0.427534 0.439385 -0.790035 0.307666 0.464115 -0.830626 0.465664 0.419078 -0.779442 0.586011 0.418412 -0.693919 0.376686 0.574397 -0.726757 0.72401 0.167928 -0.669036 0.615211 0.144276 -0.775048 0.538442 0.194451 -0.81992 0.755996 0.352652 -0.551458 0.765047 0.251817 -0.592698 0.104303 0.251884 -0.96212 0.084593 0.265317 -0.960443 0.005837 0.281933 -0.959416 0.438714 0.77153 -0.460728 0.549094 0.684577 -0.479427 0.639111 0.567102 -0.51955 -0.119349 0.571474 -0.811895 -0.055497 0.717664 -0.694175 0.087893 0.80095 -0.592244 -0.082255 0.383999 -0.919662 0.371981 0.25099 -0.893663 0.168173 0.254214 -0.952414 0.515832 0.244885 -0.820943 0.711746 0.448691 -0.540457 0.274747 0.816832 -0.507247 0.645705 0.281916 -0.70964 0.539281 0.220414 -0.812769 0.769022 0.394085 -0.503292 0.726749 0.338639 -0.597628 0.910687 0.132665 0.391214 0.999599 0.019627 0.020427 0.95412 0.024299 0.298438 0.445708 0.894704 -0.029136 0.965917 0.00636 -0.258774 0.63813 0.749781 -0.174984 0.564478 0.808758 -0.165152 0.955888 0.074409 -0.28415 0.833027 -0.550995 -0.049699 0.747769 -0.638876 -0.180774 0.496269 -0.862279 -0.100952 -0.207933 0.848115 -0.487303 0.067624 0.763984 -0.641681 0.12728 0.626188 -0.769213 -0.218784 0.728379 -0.649305 0.477035 0.407812 -0.778542 0.477035 0.407812 -0.778542 0.017333 -0.981177 -0.192329 0.100697 -0.980826 -0.166857 0.066985 -0.985016 -0.158922 0.066985 -0.985016 -0.158922 0.113176 -0.977596 -0.177477 0.113176 -0.977596 -0.177477 0.260639 0.584649 -0.768279 0.260639 0.584649 -0.768279 0.016554 0.67435 -0.738226 -0.106362 0.750404 -0.652366 -0.106362 0.750404 -0.652366 -0.052394 0.836039 -0.546163 0.073173 0.824552 -0.561034 -0.11046 0.686583 -0.718611 -0.155032 0.743111 -0.650962 -0.209657 0.806439 -0.552901 -0.277141 0.74834 -0.602644 -0.254322 0.755762 -0.603444 -0.358109 0.092557 -0.929081 -0.250923 0.673348 -0.695442 -0.112663 0.603179 -0.789609 -0.09202 0.089713 -0.991708 0.154625 0.382352 -0.910988 0.205405 -0.026468 -0.978319 -0.072607 -0.353019 -0.932795 -0.315135 -0.516218 -0.796372 0.137801 -0.96591 -0.219155 -0.147037 -0.862058 -0.485012 0.15353 -0.866566 -0.474859 0.229098 -0.817711 -0.528075 0.125194 -0.964684 -0.231758 0.055128 -0.985656 -0.159509 0.133227 -0.975043 -0.1776 0.08158 0.845691 -0.5274 0.078804 0.875247 -0.477213 -0.135909 0.78308 -0.606889 -0.14307 0.731129 -0.667069 0.652262 -0.134271 -0.746006 0.728452 -0.084587 -0.679855 0.489926 -0.423017 -0.762253 0.604152 0.140091 -0.784458 0.789901 0.036981 -0.612119 0.511155 -0.597093 -0.618224 0.41548 -0.442463 -0.794735 0.053874 -0.927755 -0.369281 0.152238 -0.796477 -0.58519 0.917433 -0.01634 -0.397554 0.60325 -0.699086 -0.383887 0.029478 -0.980033 -0.196639 0.188278 0.863211 -0.468421 0.734878 0.361526 -0.573806 0.645074 0.228829 -0.729052 0.011092 0.714503 -0.699544 0.528285 0.032629 -0.84844 -0.123905 0.526586 -0.841044 0.709036 -0.679127 0.189881 0.54884 -0.680148 0.485977 0.696633 -0.536154 0.476698 0.937025 0.142119 0.319041 0.883729 -0.390989 0.257199 0.771856 0.621298 -0.135006 0.80244 -0.582305 -0.130427 0.360455 0.931906 0.040288 0.246781 0.968966 0.014261 0.199409 0.979909 0.003657 0.20259 0.97835 0.042279 0.297397 0.954751 0.002279 0.296878 0.953346 -0.054732 -0.448272 0.750301 -0.485901 -0.299256 0.711329 -0.635969 -0.449932 0.662013 -0.599417 -0.604373 0.702658 -0.375506 0.543677 -0.837776 -0.05046 0.41825 -0.908309 0.006481 0.525642 -0.828016 0.195167 0.513327 -0.837473 0.187441 0.632445 -0.690176 0.351668 0.562937 -0.723503 0.399556 0.270888 -0.860723 -0.431018 0.466072 -0.760826 -0.451575 0.785817 -0.470274 -0.401664 0.806986 0.379916 -0.452147 0.311722 -0.406116 -0.859011 0.08011 -0.476468 -0.875534 0.492226 -0.783275 0.379728 0.564196 -0.75938 0.324076 0.615425 -0.747397 0.250297 0.467281 -0.880804 -0.076373 0.423525 -0.905139 -0.036738 0.388235 -0.921287 -0.022439 -0.638353 0.671458 -0.376365 -0.642083 0.670375 -0.371923 -0.527289 0.635121 -0.564436 -0.53912 0.609156 -0.581618 -0.499354 0.673213 -0.545371 -0.620665 0.681581 -0.387585 0.724403 -0.679107 -0.118553 0.808578 -0.568186 -0.152862 0.76273 -0.645516 0.039393 0.719046 -0.694329 0.029644 0.704086 -0.666952 0.243799 0.68063 -0.673335 0.288725 0.675478 -0.668555 0.311069 0.688796 -0.721756 0.068031 0.678689 -0.726051 -0.110594 0.590821 -0.659388 -0.464906 0.324614 -0.335183 -0.884465 0.389368 -0.193616 -0.900503 0.677507 -0.584788 -0.446103 0.811911 -0.403641 -0.421752 -0.702864 0.705439 -0.091315 -0.699069 0.693346 0.174852 -0.698884 0.694843 0.169571 -0.697074 0.711711 -0.08692 -0.629707 0.772938 0.077689 -0.630257 0.757744 -0.169115 0.665495 -0.718329 0.202779 0.637554 -0.7383 0.220087 0.650398 -0.741869 0.163133 0.619906 -0.781037 -0.075482 0.62189 -0.772088 -0.130895 0.619404 -0.767547 -0.164959 -0.428525 0.808484 -0.403384 -0.344282 0.922494 -0.174568 0.841854 -0.487833 -0.230867 0.838993 -0.458769 -0.292613 0.718357 -0.682624 -0.134116 0.750372 -0.66081 -0.016469 -0.004385 -0.980634 -0.195802 0.11327 -0.803082 -0.585003 0.033162 -0.790045 -0.612151 -0.142029 -0.978203 -0.151482 0.398848 0.500353 -0.768484 0.284867 0.522124 -0.803889 0.240759 -0.182234 -0.953324 0.326055 -0.256882 -0.90978 0.106126 0.992625 0.058596 0.101925 0.991712 -0.078227 0.185058 0.981762 0.043548 0.161241 0.98316 0.086007 0.203627 0.976108 0.075821 -0.181266 -0.979622 -0.086502 -0.058418 -0.989239 -0.134139 0.18691 0.981774 0.034418 0.16088 0.98655 0.028917 -0.164751 -0.970502 -0.176023 0.075477 -0.797038 -0.599194 0.41959 0.332341 -0.844685 0.322606 -0.288805 -0.901397 0.338129 0.937695 -0.079978 0.299596 0.953203 -0.040569 -0.230271 -0.970692 -0.068787 0.273756 0.960659 -0.046809 -0.093554 0.935084 -0.341855 -0.357811 0.927392 -0.109158 -0.580229 0.784645 -0.218327 -0.370232 0.823908 -0.429073 0.555442 -0.82035 -0.136052 0.648256 -0.730721 0.214037 0.665073 -0.670138 0.329534 -0.177345 0.255741 -0.950339 0.237945 -0.404121 -0.883215 -0.171659 0.218398 -0.960643 -0.191232 0.22974 -0.95428 -0.611039 0.688951 -0.389844 -0.497376 0.621066 -0.605717 0.578572 -0.812132 -0.075471 0.636769 -0.760919 0.124606 -0.168096 0.382717 -0.908445 -0.01579 0.29859 -0.954251 -0.354497 0.372019 -0.857866 -0.354497 0.372019 -0.857866 0.030753 -0.642052 -0.766044 -0.28865 0.899627 -0.327645 -0.28865 0.899627 -0.327645 -0.590748 0.801531 0.092551 0.882451 -0.187177 -0.431561 0.631213 0.690214 -0.3538 0.716773 0.651128 -0.249539 0.810085 0.079366 -0.580916 0.218435 0.918014 -0.330963 0.140919 0.983259 -0.115515 0.178425 0.905077 -0.386006 0.364259 0.817074 -0.446884 0.299785 0.939825 -0.163886 0.464631 -0.750462 -0.470027 0.536199 0.720631 -0.439525 0.864301 -0.265631 -0.427112 -0.127859 0.902899 -0.410396 0.648779 -0.746777 0.14632 -0.65206 0.746179 -0.134292 0.932257 0.179954 -0.313868 0.932257 0.179954 -0.313868 0.85443 0.301563 -0.423095 0.797829 0.26596 -0.541049 0.873116 -0.177098 -0.454207 0.873116 -0.177098 -0.454207 0.649289 0.072699 -0.757059 0.753442 0.191783 -0.628923 0.6043 -0.0704 -0.793641 0.921298 -0.001363 -0.388856 0.921298 -0.001363 -0.388856 0.805464 -0.09727 -0.584608 0.710857 -0.181827 -0.679427 0.859553 -0.250977 -0.445172 -0.504833 -0.252405 -0.825491 -0.504833 -0.252405 -0.825491 -0.176988 -0.95937 -0.219738 -0.176988 -0.95937 -0.219738 0.838581 -0.043777 -0.543014 -0.50884 -0.695521 -0.507279 -0.50884 -0.695521 -0.507279 0.843621 -0.371969 -0.387224 0.843621 -0.371969 -0.387224 0.897769 0.154532 -0.41247 0.897769 0.154532 -0.41247 0.883068 0.157461 -0.442037 0.883068 0.157461 -0.442037 0.71598 -0.20424 -0.667576 0.71598 -0.20424 -0.667576 0.84052 -0.139279 -0.523572 0.84052 -0.139279 -0.523572 0.889164 0.201883 -0.410647 0.889164 0.201883 -0.410647 0.844759 0.094819 -0.526679 0.844759 0.094819 -0.526679 0.516769 -0.546521 -0.658988 0.137687 -0.761356 -0.633545 -0.073521 0.769689 -0.634171 -0.902895 -0.325759 0.280467 -0.936415 -0.200727 0.287811 -0.858832 -0.448083 0.248252 -0.80054 -0.564124 0.202238 -0.740856 -0.649577 0.170825 -0.640499 -0.727822 0.245023 -0.852262 -0.443442 0.277505 -0.785146 -0.561254 0.261802 -0.709343 -0.657204 0.254784 0.578683 -0.759785 0.2964 -0.000115 -0.99999 -0.004589 -0.00051 -0.999977 -0.006811 -3.4e-005 -0.999995 -0.003095 -0.0006 -0.999998 -0.001658 0.001309 -0.999998 0.001288 -0.003465 -0.999976 -0.006061 -0.004195 -0.999979 -0.004981 -0.000633 -0.99997 -0.007748 -0.001948 -0.999974 -0.00693 -6e-006 -0.999971 -0.007673 -0.00264 -0.99998 -0.005704 -6.6e-005 -0.999967 -0.008151 -0.00142 -0.999996 -0.002481 0.003645 -0.999993 4.6e-005 -0.002686 -0.999991 0.003221 0.002724 -0.999944 0.010221 0.004946 -0.999932 0.010546 0.006765 -0.99992 0.010688 0.004595 -0.999966 0.006817 0.001146 -0.999997 0.002298 -0.004822 -0.999982 0.003527 -0.003588 -0.999964 0.00771 -0.00298 -0.999888 0.014663 -0.001243 -0.999863 0.016531 0.001848 -0.999933 0.011451 -0.004415 -0.999984 0.003674 0.001118 -0.999907 0.013595 0.001334 -0.999999 -0.000699 -0.00033 -1 -0.000292</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2290\" offset=\"0\" source=\"#LOD3spShape-lib-normals-array\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"LOD3spShape-lib-map1\" name=\"map1\">\r\n                    <float_array count=\"4554\" id=\"LOD3spShape-lib-map1-array\">0.245158 0.423975 0.25011 0.468112 0.150442 0.543685 0.148569 0.498875 0.302841 0.416173 0.345064 0.636086 0.339502 0.673242 0.260986 0.672117 0.283208 0.642063 0.331126 0.714598 0.241009 0.71553 0.233372 0.762934 0.302959 0.373132 0.224027 0.289653 0.23558 0.359702 0.143764 0.429085 0.134156 0.320572 0.298228 0.319321 0.288073 0.263566 0.326898 0.757163 0.328393 0.797118 0.23841 0.805793 0.60087 0.640918 0.866606 0.398924 0.510699 0.676291 0.517366 0.634965 0.871384 0.397619 0.505796 0.719121 0.878048 0.397558 0.87416 0.398826 0.86606 0.397625 0.86057 0.399008 0.501279 0.762876 0.856321 0.39906 0.497144 0.804816 0.862375 0.397683 0.860024 0.397676 0.853776 0.399148 0.494669 0.842655 0.936097 0.40457 0.495808 0.877438 0.932361 0.401286 0.944998 0.401429 0.333511 0.830512 0.255441 0.838224 0.335539 0.859065 0.275714 0.857682 0.13703 0.645509 0.099669 0.709478 0.072436 0.710311 0.114209 0.64461 0.217381 0.600094 0.193334 0.589335 0.083907 0.774978 0.093256 0.834193 0.067488 0.842396 0.056643 0.778851 0.948825 0.405179 0.543475 0.557405 0.5578 0.533271 0.685834 0.551732 0.928618 0.398828 0.939922 0.398832 0.318062 0.571086 0.304302 0.551225 0.870712 0.401462 0.862287 0.401557 0.855482 0.401642 0.85836 0.405349 0.85103 0.405417 0.86725 0.404976 0.851008 0.401767 0.84805 0.401779 0.618068 0.949096 0.595914 0.442419 0.701364 0.36472 0.704143 0.312403 0.595493 0.387203 0.757075 0.288915 0.749567 0.262372 0.79867 0.019963 0.720188 0.090411 0.342229 0.232442 0.353643 0.285267 0.846214 0.405443 0.84246 0.405195 0.945825 0.3988 0.51556 0.94314 0.529717 0.959537 0.951482 0.401365 0.955814 0.405156 0.355112 0.336459 0.416748 0.23909 0.409212 0.301844 0.412385 0.174765 0.722678 0.141004 0.371257 0.129527 0.316583 0.183819 0.278107 0.146712 0.815355 0.094326 0.586596 0.164171 0.31201 0.090946 0.272238 0.213152 0.591566 0.221736 0.775513 0.183818 0.258385 0.177707 0.714664 0.225413 0.594393 0.311859 0.803506 0.201004 0.853165 0.100422 0.240207 0.064107 0.220228 0.127313 0.134162 0.116701 0.137886 0.045291 0.20962 0.176711 0.132836 0.176022 0.393776 0.367451 0.346805 0.380154 0.21424 0.228892 0.133514 0.241035 0.127886 0.880246 0.194162 0.909528 0.176891 0.924466 0.105635 0.892789 0.298575 0.918513 0.289302 0.932026 0.41004 0.927663 0.412647 0.940987 0.152917 0.714025 0.188039 0.660899 0.251002 0.622891 0.148083 0.821618 0.139091 0.770988 0.529124 0.59406 0.624566 0.605374 0.943792 0.414167 0.33386 0.602351 0.939709 0.408955 0.951716 0.40979 0.95394 0.414936 0.863781 0.409841 0.854643 0.410095 0.847079 0.410021 0.50373 0.914675 0.043999 0.560029 0.039161 0.51728 0.035514 0.442488 0.02836 0.327681 0.57657 0.399149 0.579657 0.45714 0.483058 0.467543 0.484696 0.402538 0.027211 0.11532 0.026409 0.041836 0.027231 0.176259 0.027041 0.244825 0.496033 0.232082 0.498386 0.171519 0.545104 0.178866 0.55478 0.242428 0.486973 0.320445 0.572701 0.32584 0.253473 0.42034 0.198325 0.471074 0.201641 0.514357 0.257191 0.464291 0.304409 0.414784 0.305266 0.371658 0.230885 0.286168 0.167912 0.306331 0.188981 0.401339 0.242536 0.354324 0.300813 0.31779 0.290984 0.262458 0.644363 0.422582 0.643061 0.366324 0.70337 0.314326 0.703499 0.366966 0.745969 0.26707 0.75382 0.293297 0.343946 0.231017 0.355397 0.284532 0.356783 0.335152 0.414764 0.29281 0.419941 0.236001 0.413771 0.173263 0.370421 0.125545 0.313385 0.086563 0.282902 0.142155 0.319456 0.18046 0.261679 0.175104 0.275739 0.211488 0.247515 0.05956 0.175872 0.043369 0.166908 0.113803 0.230266 0.122298 0.162066 0.173298 0.220575 0.173418 0.399643 0.347472 0.348371 0.378515 0.850892 0.415208 0.23283 0.882474 0.174218 0.860862 0.318561 0.890705 0.412205 0.900441 0.414872 0.864697 0.414169 0.832004 0.413463 0.796679 0.414763 0.757 0.418623 0.715141 0.424042 0.67374 0.797949 0.022112 0.816816 0.093012 0.720595 0.147032 0.715991 0.092651 0.636546 0.210325 0.627672 0.148444 0.772502 0.189202 0.711355 0.231084 0.641706 0.289174 0.223314 0.226619 0.162858 0.235961 0.139391 0.505963 0.140772 0.546375 0.105327 0.324975 0.131454 0.436403 0.855305 0.0942 0.800674 0.205793 0.103269 0.042003 0.100779 0.11305 0.099208 0.173793 0.099637 0.242841 0.428561 0.633258 0.429426 0.594048 0.429051 0.559095 0.429259 0.535162 0.35272 0.639241 0.294558 0.645659 0.274212 0.673847 0.348213 0.675519 0.253789 0.714174 0.339072 0.715472 0.241562 0.759109 0.241492 0.801977 0.330569 0.796358 0.332348 0.756954 0.843668 0.414845 0.519216 0.636196 0.513483 0.677706 0.858319 0.415536 0.509018 0.719971 0.595108 0.724198 0.959154 0.409842 0.961426 0.415077 0.955396 0.420505 0.503982 0.762367 0.946551 0.419988 0.498249 0.80295 0.581926 0.813498 0.948394 0.426244 0.956245 0.426562 0.493564 0.840197 0.962774 0.420748 0.49337 0.874734 0.5689 0.884732 0.963626 0.426902 0.947821 0.439136 0.254385 0.836095 0.333265 0.830744 0.334347 0.859927 0.274272 0.857068 0.111374 0.707428 0.160452 0.654158 0.126019 0.649524 0.074711 0.707898 0.232092 0.611555 0.203545 0.598866 0.085639 0.828171 0.086444 0.767612 0.053832 0.770468 0.05904 0.833261 0.5406 0.554531 0.653253 0.57169 0.949156 0.432796 0.552741 0.532581 0.956416 0.432776 0.955188 0.438695 0.321928 0.578317 0.3053 0.558373 0.963377 0.433055 0.962074 0.438861 0.939469 0.450342 0.944673 0.445101 0.952905 0.444195 0.949616 0.449137 0.959891 0.444199 0.95721 0.449055 0.928445 0.45763 0.933041 0.454385 0.647892 0.957038 0.945196 0.453364 0.513713 0.938992 0.528694 0.953445 0.940767 0.456994 0.954246 0.453493 0.191556 0.905473 0.119561 0.876603 0.09609 0.886393 0.173642 0.917872 0.296111 0.916924 0.285563 0.930752 0.407594 0.925155 0.699705 0.808301 0.767751 0.813767 0.770203 0.857847 0.710393 0.859091 0.67046 0.86001 0.652167 0.800156 0.732575 0.902022 0.706983 0.910753 0.776574 0.894725 0.709069 0.706824 0.772884 0.721001 0.769128 0.766819 0.69961 0.756109 0.650715 0.739559 0.665169 0.685443 0.747389 0.629544 0.781976 0.645207 0.777571 0.679447 0.726035 0.663915 0.69251 0.641696 0.7256 0.608173 0.800842 0.598447 0.800844 0.613722 0.782354 0.62203 0.77064 0.606739 0.761516 0.586356 0.801211 0.57812 0.833474 0.606525 0.843418 0.585771 0.884582 0.608278 0.861681 0.62927 0.826927 0.645008 0.821482 0.621769 0.901508 0.709495 0.841154 0.721344 0.835351 0.679466 0.88519 0.664947 0.920582 0.64464 0.946246 0.692573 0.905321 0.811872 0.840491 0.814502 0.842749 0.767471 0.908491 0.759591 0.957769 0.748636 0.953229 0.808266 0.87648 0.901039 0.832824 0.894364 0.83647 0.858222 0.893987 0.860506 0.934495 0.863509 0.904941 0.908789 0.811165 0.93926 0.808557 0.928096 0.833115 0.918674 0.850764 0.928355 0.866017 0.939324 0.815782 0.955298 0.781351 0.919619 0.767445 0.930389 0.756778 0.947206 0.874321 0.260529 0.87457 0.258357 0.870642 0.262514 0.870232 0.260129 0.875205 0.262091 0.87418 0.274349 0.878088 0.275377 0.879128 0.284194 0.875282 0.284248 0.876451 0.268146 0.87176 0.26763 0.879196 0.270887 0.875496 0.265391 0.893101 0.28442 0.892287 0.271326 0.879947 0.284131 0.862255 0.219399 0.877309 0.242158 0.869772 0.241647 0.855575 0.218438 0.862432 0.239621 0.84944 0.210845 0.867315 0.244511 0.849901 0.240235 0.863194 0.266321 0.876212 0.265675 0.880423 0.283451 0.866718 0.283089 0.870498 0.254293 0.863904 0.253791 0.870234 0.270504 0.864805 0.270607 0.879852 0.25405 0.878645 0.27023 0.884908 0.221559 0.894641 0.243235 0.885819 0.242521 0.87478 0.219802 0.853855 0.205189 0.868038 0.204565 0.870975 0.210424 0.856654 0.209577 0.882303 0.208527 0.885027 0.21281 0.869343 0.207181 0.855354 0.205901 0.879862 0.246326 0.872817 0.221463 0.859409 0.2185 0.885826 0.225344 0.891813 0.248223 0.886742 0.266822 0.897889 0.269881 0.890434 0.283337 0.902191 0.283202 0.887267 0.269985 0.888486 0.253806 0.897003 0.253871 0.897865 0.269734 0.890567 0.21382 0.890889 0.214313 0.887336 0.211472 0.940502 0.247339 0.935827 0.245027 0.948386 0.259727 0.952135 0.261243 0.929477 0.246937 0.935892 0.257903 0.955141 0.271935 0.951237 0.271687 0.951697 0.282445 0.956107 0.282705 0.939971 0.271031 0.941535 0.28252 0.963745 0.266939 0.955791 0.248173 0.96377 0.246708 0.971434 0.266214 0.948554 0.235961 0.955224 0.234835 0.896396 0.245174 0.886107 0.251776 0.887306 0.25714 0.901578 0.253513 0.893935 0.234459 0.893306 0.241625 0.88488 0.259333 0.895682 0.256287 0.898524 0.274248 0.887363 0.275119 0.885952 0.26722 0.897217 0.265981 0.888292 0.284017 0.899782 0.283788 0.893557 0.224473 0.903384 0.244263 0.904117 0.226402 0.909834 0.245212 0.898452 0.232315 0.90536 0.242289 0.914901 0.24109 0.908475 0.23147 0.912117 0.251402 0.92111 0.249824 0.905103 0.223634 0.894105 0.223477 0.891627 0.223783 0.892209 0.224715 0.894785 0.217728 0.904032 0.218825 0.905292 0.26092 0.916745 0.259188 0.925679 0.257542 0.919312 0.270264 0.927598 0.269904 0.909165 0.270372 0.922229 0.248254 0.923018 0.231732 0.931448 0.236491 0.927474 0.250713 0.939132 0.243721 0.931475 0.252998 0.941395 0.236759 0.941774 0.24318 0.951181 0.24757 0.953028 0.242625 0.943442 0.249961 0.949719 0.251412 0.932269 0.241398 0.935522 0.24909 0.930136 0.234395 0.929446 0.228394 0.942151 0.230847 0.942787 0.227016 0.929372 0.224433 0.954848 0.237908 0.922857 0.256527 0.927955 0.258098 0.929776 0.270263 0.925166 0.269641 0.93313 0.259066 0.935431 0.270899 0.938091 0.256867 0.945703 0.257403 0.953024 0.257866 0.948714 0.269472 0.957575 0.269677 0.940805 0.269454 0.944953 0.253898 0.950208 0.269278 0.961307 0.253711 0.957956 0.256418 0.964661 0.269455 0.96896 0.268209 0.902892 0.249987 0.897745 0.228849 0.908596 0.231834 0.912735 0.252197 0.897122 0.224227 0.89485 0.22181 0.90624 0.226903 0.908607 0.228742 0.903082 0.242361 0.906809 0.256103 0.917237 0.255133 0.919494 0.264606 0.908311 0.265315 0.907454 0.269025 0.916487 0.269043 0.911531 0.283044 0.919593 0.2829 0.909419 0.273405 0.911476 0.28336 0.920571 0.273041 0.922157 0.283218 0.922114 0.255039 0.920062 0.238863 0.921052 0.234472 0.923775 0.23538 0.929369 0.253983 0.934895 0.263753 0.927988 0.282737 0.92516 0.269608 0.937386 0.272947 0.938515 0.283177 0.906903 0.269654 0.905634 0.25451 0.912156 0.254648 0.915624 0.269303 0.934262 0.269581 0.931993 0.256855 0.928513 0.24901 0.928512 0.223212 0.917128 0.220406 0.916725 0.220767 0.9041 0.217973 0.914088 0.228391 0.916363 0.246441 0.918617 0.23227 0.923487 0.240784 0.938248 0.22777 0.892821 0.216321 0.844542 0.206031 0.874322 0.212263 0.870581 0.286403 0.864795 0.285932 0.877377 0.285736 0.887924 0.285532 0.898823 0.285311 0.908672 0.285115 0.917425 0.284957 0.921216 0.269224 0.922914 0.284906 0.926665 0.284912 0.930758 0.284928 0.936388 0.28496 0.952837 0.284936 0.967867 0.284724 0.971593 0.266723 0.976556 0.284338 0.976161 0.284497 0.973686 0.284223 0.968029 0.284169 0.960033 0.284154 0.950775 0.284138 0.942494 0.284121 0.936182 0.284123 0.929809 0.284158 0.920968 0.284223 0.910111 0.284292 0.952943 0.272204 0.950019 0.262148 0.953976 0.282879 0.900909 0.229617 0.889642 0.217102 0.912068 0.234085 0.913562 0.243735 0.925227 0.239763 0.92311 0.245509 0.916786 0.225007 0.940372 0.24984 0.963568 0.250138 0.888081 0.264217 0.918118 0.254988 0.844126 0.209259 0.844951 0.221286 0.886769 0.216308 0.872985 0.215718 0.879346 0.309871 0.875833 0.306046 0.875654 0.308144 0.879007 0.306407 0.876295 0.294136 0.878977 0.293033 0.879812 0.300399 0.876175 0.301094 0.880254 0.30345 0.882198 0.297454 0.893175 0.297687 0.865817 0.349629 0.859181 0.350621 0.872916 0.327332 0.880252 0.326495 0.865713 0.330422 0.852822 0.359205 0.869257 0.322943 0.877097 0.301439 0.864055 0.301093 0.852819 0.327816 0.866118 0.317194 0.872679 0.31623 0.865658 0.301152 0.871305 0.301562 0.879516 0.300927 0.881998 0.315802 0.888262 0.347411 0.878301 0.348969 0.888479 0.326114 0.897047 0.325511 0.857019 0.363938 0.860381 0.359999 0.874655 0.358691 0.872015 0.364197 0.888629 0.3558 0.886097 0.359632 0.872907 0.361011 0.858128 0.36229 0.881706 0.320824 0.862423 0.349295 0.875903 0.346079 0.888714 0.341972 0.893556 0.318638 0.898554 0.296744 0.887564 0.300041 0.888147 0.300674 0.898715 0.300283 0.89883 0.31539 0.89048 0.315686 0.894383 0.353795 0.894065 0.354129 0.890921 0.356254 0.942171 0.318343 0.9529 0.304272 0.949521 0.305533 0.937705 0.320863 0.937122 0.30759 0.931259 0.318903 0.955735 0.293528 0.951772 0.293299 0.940544 0.294181 0.964624 0.302435 0.972337 0.302695 0.965634 0.321964 0.957594 0.320997 0.957663 0.333351 0.950951 0.332759 0.897685 0.323309 0.904388 0.314564 0.887892 0.312338 0.888936 0.316243 0.699423 0.809253 0.710111 0.860044 0.769921 0.8588 0.767468 0.81472 0.651885 0.801109 0.669688 0.860514 0.732293 0.902975 0.706453 0.911484 0.776292 0.895678 0.708787 0.707777 0.699329 0.757062 0.768846 0.767772 0.772602 0.721954 0.664887 0.686395 0.650433 0.740512 0.747107 0.630497 0.725753 0.664868 0.777288 0.6804 0.781693 0.64616 0.725318 0.609127 0.692228 0.642648 0.80056 0.5994 0.770358 0.607692 0.782072 0.622983 0.800562 0.614675 0.800928 0.579073 0.761234 0.587309 0.833192 0.607478 0.861399 0.630223 0.8843 0.609231 0.843136 0.586725 0.8212 0.622722 0.826645 0.645961 0.901226 0.710448 0.884907 0.6659 0.835069 0.680418 0.840872 0.722297 0.945964 0.693526 0.920299 0.645594 0.905039 0.812825 0.908209 0.760544 0.842467 0.768423 0.840209 0.815454 0.952947 0.809219 0.957487 0.749588 0.876198 0.901993 0.893705 0.861459 0.836187 0.859175 0.832541 0.895317 0.904659 0.909742 0.934213 0.864462 0.810883 0.940213 0.850482 0.929308 0.832833 0.919627 0.808275 0.929049 0.815494 0.955807 0.865735 0.940277 0.767163 0.931342 0.781069 0.920572 0.878641 0.308129 0.757688 0.947696 0.89571 0.326063 0.896265 0.333541 0.887647 0.308911 0.896958 0.311973 0.898883 0.293285 0.897963 0.301935 0.887703 0.301029 0.887878 0.29293 0.905567 0.324686 0.896731 0.344468 0.906991 0.342485 0.911791 0.324251 0.900908 0.335596 0.911043 0.336295 0.917143 0.326675 0.907054 0.325968 0.923285 0.31808 0.915184 0.316034 0.908088 0.344187 0.897103 0.344536 0.894607 0.344154 0.895142 0.343144 0.898106 0.350443 0.90726 0.349181 0.907871 0.308374 0.918398 0.309598 0.927049 0.310818 0.928305 0.298442 0.920004 0.298182 0.909927 0.298243 0.924036 0.321254 0.929162 0.318872 0.933826 0.332572 0.925629 0.337191 0.941158 0.32555 0.933051 0.316658 0.943727 0.330971 0.955075 0.325269 0.952983 0.320359 0.943791 0.324629 0.951332 0.316568 0.945126 0.31796 0.937248 0.318798 0.934373 0.326359 0.932584 0.333273 0.932192 0.3393 0.932318 0.343421 0.945607 0.340893 0.944776 0.336887 0.957129 0.33006 0.924262 0.313255 0.925922 0.300164 0.930502 0.299579 0.929283 0.311724 0.936126 0.298969 0.93441 0.310774 0.939442 0.311396 0.947027 0.310849 0.954323 0.310334 0.958291 0.298597 0.94944 0.298819 0.941532 0.298832 0.946483 0.315703 0.950981 0.300512 0.962811 0.314479 0.969751 0.300159 0.965388 0.298807 0.959326 0.311738 0.904541 0.316598 0.900452 0.33816 0.911146 0.334819 0.914268 0.314088 0.900043 0.343367 0.910827 0.338483 0.909045 0.340214 0.897918 0.345703 0.907714 0.311836 0.905082 0.324826 0.918749 0.311513 0.909052 0.30192 0.920236 0.301846 0.91718 0.297035 0.908155 0.297332 0.909931 0.29344 0.92041 0.293444 0.923496 0.310879 0.922253 0.327378 0.925923 0.331262 0.923469 0.332076 0.930583 0.312153 0.934974 0.302503 0.925817 0.29614 0.93758 0.293425 0.907706 0.300101 0.916398 0.300537 0.913653 0.315103 0.907277 0.314776 0.934984 0.298714 0.933344 0.311407 0.930312 0.318902 0.931529 0.345055 0.919853 0.347075 0.920283 0.347817 0.907379 0.350402 0.918259 0.323025 0.916863 0.340467 0.921166 0.335346 0.925584 0.327014 0.941044 0.340685 0.896265 0.352186 0.847118 0.363087 0.877923 0.355511 0.921992 0.300554 0.972463 0.301867 0.950828 0.303658 0.953466 0.293583 0.892951 0.350759 0.90326 0.337983 0.915596 0.322974 0.91417 0.333036 0.927312 0.326701 0.92504 0.320904 0.919699 0.342662 0.941871 0.316003 0.965254 0.318221 0.889956 0.306147 0.919598 0.314755 0.845891 0.359181 0.847322 0.346695 0.890112 0.35133 0.87636 0.352039 0.950166 0.457401 0.877438 0.456074 0.890333 0.455013 0.891902 0.457826 0.881771 0.45805 0.893433 0.460126 0.885457 0.459788 0.90216 0.458193 0.902038 0.46051 0.902093 0.455956 0.869348 0.456995 0.875073 0.458463 0.870949 0.459563 0.865831 0.459946 0.88002 0.459819 0.876379 0.459992 0.890696 0.462723 0.889158 0.462546 0.893089 0.46287 0.842115 0.409869 0.837426 0.409453 0.838646 0.414482 0.833434 0.414204 0.847163 0.42056 0.840709 0.41957 0.839445 0.430603 0.83503 0.428579 0.852464 0.422383 0.843659 0.433436 0.835601 0.419062 0.830596 0.418889 0.831257 0.427506 0.827802 0.427141 0.876435 0.450731 0.866399 0.449489 0.869211 0.447456 0.878828 0.448367 0.861778 0.461251 0.86329 0.45579 0.869445 0.454182 0.919848 0.462088 0.9244 0.459418 0.936505 0.460001 0.932799 0.462552 0.914853 0.457033 0.912969 0.45878 0.983064 0.742705 0.970242 0.681277 0.978343 0.807461 0.961861 0.871181 0.925 0.920764 0.93957 0.629718 0.896636 0.591965 0.87816 0.953598 0.820182 0.969676 0.849136 0.56846 0.801508 0.561342 0.753635 0.961316 0.693916 0.922274 0.756457 0.570463 0.715065 0.59271 0.62759 0.729278 0.628526 0.797321 0.647916 0.672373 0.648988 0.865355 0.678001 0.627321 0.970524 0.680324 0.983346 0.741752 0.978626 0.806509 0.962143 0.870229 0.925282 0.919811 0.896919 0.591012 0.939853 0.628765 0.878442 0.952645 0.819304 0.969461 0.80179 0.560389 0.849419 0.567507 0.753465 0.960832 0.694447 0.921544 0.715348 0.591757 0.756739 0.569509 0.628808 0.796368 0.627873 0.728326 0.648199 0.671421 0.648584 0.866073 0.678283 0.626368 0.411737 0.936637 0.212659 0.665019 0.175067 0.711347 0.264355 0.628942 0.154113 0.763611 0.154483 0.81452 0.911051 0.461039 0.528987 0.594894 0.945951 0.460521 0.339791 0.607004 0.94197 0.46307 0.896594 0.462992 0.902819 0.462828 0.939147 0.46498 0.588358 0.917245 0.930869 0.464578 0.500784 0.908814 0.937502 0.466649 0.178893 0.855096 0.23388 0.878659 0.317203 0.888741 0.409219 0.897533 0.412456 0.865776 0.413517 0.832907 0.415303 0.797177 0.41903 0.758087 0.424284 0.717135 0.429773 0.675932 0.433166 0.635493 0.431719 0.596003 0.42845 0.560105 0.426262 0.535529 0.166927 0.932027 0.089131 0.90146 0.412839 0.954955 0.280654 0.94225 0.092604 0.643694 0.172265 0.583534 0.034269 0.783775 0.048602 0.713913 0.288973 0.53753 0.047197 0.849027 0.9297 0.466322 0.910929 0.462701 0.429574 0.516361 0.573602 0.514995 0.911763 0.464455 0.904647 0.46452 0.91245 0.466086 0.906026 0.466148 0.920833 0.464349 0.682918 0.980037 0.544365 0.975068 0.92089 0.466118 0.274953 0.94136 0.412382 0.948959 0.078614 0.893197 0.159929 0.926191 0.045546 0.712112 0.029763 0.775258 0.174568 0.589926 0.093871 0.647648 0.286715 0.542233 0.039682 0.837587 0.568016 0.514851 0.425296 0.517534 0.89967 0.464526 0.715649 0.536695 0.89649 0.46445 0.90127 0.466162 0.89793 0.466107 0.92457 0.397524 0.934172 0.397517 0.90196 0.397532 0.543555 0.96576 0.912366 0.397543 0.914428 0.398827 0.902477 0.39881 0.887934 0.397535 0.886084 0.398748 0.939158 0.397548 0.916553 0.401268 0.903345 0.401161 0.918892 0.404595 0.904419 0.40426 0.88377 0.401252 0.880927 0.404722 0.905294 0.428912 0.905488 0.424961 0.912357 0.424967 0.91334 0.429138 0.905906 0.421495 0.911087 0.422154 0.904076 0.437412 0.90478 0.43319 0.913199 0.433998 0.911884 0.43877 0.90321 0.444063 0.903361 0.441071 0.909872 0.442542 0.908067 0.444769 0.902496 0.453271 0.918142 0.453706 0.928783 0.450398 0.93573 0.445715 0.939896 0.439756 0.941415 0.433124 0.940295 0.426582 0.937084 0.420446 0.931618 0.414911 0.921769 0.409549 0.905101 0.407893 0.876573 0.40992 0.866307 0.415598 0.859425 0.421874 0.854503 0.429219 0.846009 0.439206 0.853866 0.435555 0.855666 0.44134 0.849189 0.44441 0.859693 0.44628 0.853635 0.449316 0.859396 0.453185 0.889827 0.45174 0.862926 0.421743 0.859205 0.428005 0.869662 0.416377 0.857993 0.434235 0.859086 0.440054 0.916008 0.412068 0.903601 0.410265 0.918257 0.418305 0.91053 0.415402 0.913091 0.413541 0.921836 0.416936 0.92534 0.416062 0.879532 0.412275 0.931494 0.42114 0.923547 0.422692 0.927682 0.421785 0.926515 0.428111 0.931209 0.427509 0.93512 0.42705 0.936295 0.433481 0.92732 0.434037 0.932331 0.433786 0.925669 0.439922 0.930432 0.440034 0.934525 0.439972 0.912845 0.451737 0.922595 0.449614 0.907361 0.448978 0.915126 0.447877 0.918684 0.448912 0.909842 0.450414 0.901128 0.451294 0.929882 0.445604 0.921412 0.444811 0.925747 0.445329 0.862632 0.44473 0.90791 0.418325 0.914417 0.420366 0.918293 0.424021 0.92059 0.42877 0.920879 0.434155 0.919487 0.439514 0.911345 0.446349 0.90499 0.446728 0.916084 0.443813 0.891421 0.410387 0.891335 0.407994 0.8923 0.404278 0.892667 0.401108 0.892803 0.398753 0.893101 0.397518 0.953337 0.401538 0.958091 0.405199 0.9475 0.399036 0.96186 0.409791 0.964499 0.415028 0.96612 0.420717 0.967305 0.426924 0.967388 0.433074 0.966427 0.438883 0.96451 0.444202 0.961861 0.44894 0.958944 0.453645 0.955428 0.457592 0.951844 0.460785 0.948132 0.463506 0.945008 0.465414 0.9428 0.466896 0.940897 0.39766 0.894646 0.464377 0.893748 0.464327 0.895819 0.465909 0.894732 0.465707 0.898046 0.468336 0.895591 0.467749 0.894211 0.467377 0.894053 0.470321 0.892528 0.469525 0.89702 0.472125 0.906461 0.46806 0.901761 0.468217 0.901883 0.471147 0.906501 0.470456 0.912592 0.467918 0.912253 0.470089 0.920682 0.467923 0.920674 0.470154 0.9293 0.468129 0.929876 0.470181 0.93702 0.468441 0.938213 0.470896 0.942275 0.468514 0.942757 0.470744 0.890006 0.4495 0.852976 0.399065 0.859393 0.397599 0.847065 0.401675 0.84127 0.405026 0.953466 0.401386 0.958188 0.405089 0.947588 0.398916 0.961862 0.409747 0.964391 0.415022 0.965926 0.420729 0.967068 0.426923 0.967242 0.433135 0.966314 0.439008 0.964406 0.444378 0.961584 0.44912 0.958267 0.453722 0.954279 0.457569 0.865611 0.460368 0.870463 0.459645 0.869977 0.459728 0.865391 0.460791 0.875883 0.460032 0.875386 0.460071 0.889107 0.462568 0.889055 0.46259 0.836433 0.409343 0.829542 0.419704 0.832578 0.41403 0.832317 0.414141 0.82924 0.419624 0.86181 0.461905 0.861843 0.46256 0.95053 0.46075 0.946775 0.4634 0.943577 0.465237 0.941527 0.466697 0.893773 0.464335 0.893798 0.464342 0.894526 0.465626 0.894385 0.465571 0.940912 0.397604 0.893807 0.467247 0.893563 0.467166 0.891985 0.469369 0.891535 0.469419 0.940364 0.468392 0.940762 0.470517 0.866236 0.398834 0.873711 0.398813 0.877506 0.397514 0.870971 0.397493 0.865522 0.397455 0.860032 0.398872 0.856026 0.399014 0.861954 0.397568 0.860159 0.397664 0.853853 0.399094 0.935431 0.404681 0.948546 0.405179 0.944496 0.401457 0.931632 0.401375 0.939488 0.398861 0.927974 0.398901 0.870657 0.401504 0.861966 0.401526 0.855096 0.4016 0.850751 0.405417 0.858121 0.405363 0.867731 0.405188 0.850561 0.401575 0.848094 0.401586 0.842791 0.404957 0.845766 0.405198 0.9455 0.398818 0.951158 0.401375 0.955535 0.405156 0.94295 0.41441 0.9536 0.414936 0.951437 0.40979 0.938847 0.409148 0.863906 0.410047 0.854469 0.410101 0.8468 0.410021 0.843291 0.414792 0.850618 0.415218 0.858112 0.415702 0.958875 0.409842 0.961147 0.415077 0.9551 0.420509 0.945887 0.42022 0.947818 0.426423 0.955942 0.426574 0.962495 0.420748 0.963347 0.426902 0.947179 0.438896 0.955415 0.438781 0.95627 0.432802 0.948355 0.432791 0.963455 0.433109 0.96255 0.43901 0.93973 0.449457 0.950281 0.449152 0.953464 0.44429 0.944309 0.444589 0.960647 0.444424 0.957836 0.449233 0.928866 0.456683 0.941589 0.457208 0.946319 0.453375 0.933669 0.453285 0.954103 0.453514 0.949874 0.457416 0.877353 0.455968 0.882269 0.458025 0.892317 0.457757 0.890577 0.455047 0.886684 0.460112 0.89423 0.460211 0.902677 0.460467 0.90267 0.458019 0.902808 0.455334 0.869597 0.456984 0.865825 0.458435 0.871446 0.458982 0.8752 0.458466 0.877063 0.46 0.880928 0.46006 0.889224 0.462652 0.890358 0.462714 0.892541 0.462593 0.841603 0.409572 0.838159 0.409243 0.834209 0.413908 0.837981 0.414182 0.839885 0.419736 0.846514 0.420792 0.834481 0.428371 0.838869 0.430451 0.84343 0.433385 0.852102 0.422532 0.830666 0.418987 0.834732 0.419195 0.827717 0.426976 0.830662 0.427303 0.875777 0.450429 0.878346 0.448288 0.868619 0.446935 0.865577 0.448677 0.860982 0.459109 0.863516 0.455972 0.868771 0.453598 0.919955 0.462087 0.933215 0.46265 0.936971 0.460171 0.92452 0.45941 0.915797 0.455832 0.913434 0.458571 0.911682 0.460937 0.945768 0.460575 0.941689 0.463136 0.897291 0.462545 0.903757 0.462585 0.930828 0.464538 0.938505 0.464915 0.929084 0.466249 0.936418 0.466469 0.911714 0.462545 0.904992 0.464496 0.91226 0.464434 0.906001 0.466171 0.912549 0.466198 0.920438 0.466178 0.920682 0.464371 0.899694 0.464496 0.896238 0.464476 0.897673 0.46607 0.901142 0.46612 0.933851 0.397545 0.924135 0.397565 0.901567 0.397461 0.902111 0.398787 0.913998 0.398826 0.911927 0.397463 0.885568 0.398789 0.887707 0.397486 0.939027 0.397536 0.902897 0.401138 0.916139 0.401275 0.904075 0.404332 0.918631 0.404656 0.883077 0.401373 0.880245 0.404983 0.905419 0.428922 0.912942 0.429219 0.912006 0.425106 0.905474 0.425025 0.910791 0.422281 0.905844 0.421559 0.904305 0.436885 0.911907 0.438227 0.913047 0.433844 0.905052 0.432984 0.903203 0.443238 0.908124 0.443775 0.909903 0.441649 0.903445 0.440313 0.90285 0.452456 0.918742 0.45246 0.929033 0.449192 0.935553 0.444785 0.939489 0.439171 0.940895 0.433027 0.939916 0.426757 0.936762 0.420698 0.931211 0.415109 0.90461 0.407951 0.921344 0.40965 0.876099 0.410269 0.865754 0.416146 0.858856 0.422274 0.85408 0.42925 0.845714 0.439016 0.8487 0.443676 0.855252 0.440105 0.853622 0.434905 0.852614 0.447663 0.858958 0.44511 0.858176 0.451853 0.889824 0.45148 0.858947 0.427844 0.863033 0.422095 0.869857 0.416948 0.858451 0.439034 0.857612 0.433475 0.903128 0.410252 0.915613 0.4122 0.910336 0.415321 0.91773 0.418674 0.921258 0.417307 0.91279 0.413538 0.924944 0.416332 0.879341 0.412694 0.930972 0.4215 0.922517 0.423241 0.926792 0.422268 0.92506 0.428584 0.929895 0.42793 0.93442 0.427304 0.935453 0.433435 0.925801 0.434263 0.930838 0.433902 0.924243 0.439743 0.929152 0.439726 0.933786 0.439455 0.922618 0.448568 0.913071 0.450609 0.91472 0.447235 0.9073 0.44856 0.909883 0.449686 0.918464 0.448158 0.90106 0.450464 0.929479 0.444749 0.920523 0.44435 0.924927 0.444695 0.861743 0.443993 0.907779 0.418347 0.914012 0.420577 0.917709 0.42432 0.919641 0.429082 0.919962 0.434273 0.918588 0.43924 0.904848 0.446138 0.911088 0.445577 0.915514 0.4432 0.890897 0.408138 0.891059 0.410492 0.89188 0.404459 0.892481 0.401195 0.892744 0.398811 0.892774 0.397499 0.852987 0.39915 0.859402 0.397672 0.847027 0.401638 0.84144 0.40503 0.836758 0.409301 0.826856 0.427241 0.893304 0.464316 0.894343 0.465793 0.894093 0.464377 0.895401 0.465971 0.893628 0.467665 0.890751 0.471053 0.897653 0.467915 0.895086 0.467874 0.893376 0.47055 0.896513 0.470318 0.906138 0.467954 0.901291 0.467913 0.900442 0.470186 0.905385 0.470181 0.912382 0.468058 0.911527 0.470316 0.918635 0.470453 0.91977 0.468076 0.926488 0.470872 0.927835 0.468189 0.935282 0.468257 0.935209 0.471328 0.877915 0.500707 0.878197 0.500625 0.878935 0.505269 0.878376 0.50543 0.87849 0.500327 0.879515 0.504678 0.878776 0.499827 0.880077 0.503685 0.879041 0.499148 0.880596 0.502336 0.879273 0.498323 0.88105 0.500691 0.879461 0.49739 0.881414 0.498833 0.879595 0.496393 0.881685 0.496848 0.879673 0.495381 0.881831 0.494834 0.879688 0.4944 0.881855 0.492886 0.879641 0.493495 0.881754 0.491093 0.879517 0.492692 0.881496 0.489502 0.879256 0.49199 0.880966 0.488128 0.878724 0.491679 0.879976 0.487255 0.880441 0.487544 0.878985 0.491764 0.880259 0.509816 0.879427 0.510054 0.881118 0.508941 0.881951 0.507469 0.882719 0.50547 0.883385 0.503037 0.883918 0.500283 0.884295 0.497337 0.884501 0.494341 0.884524 0.491438 0.884373 0.488781 0.883999 0.486461 0.88321 0.484429 0.882394 0.483424 0.882124 0.514208 0.881033 0.51452 0.883251 0.513061 0.884343 0.511133 0.885349 0.508513 0.886222 0.505324 0.886921 0.501715 0.887414 0.497854 0.887677 0.493924 0.887702 0.490113 0.887496 0.486645 0.88698 0.48361 0.885938 0.48091 0.884878 0.479558 0.884506 0.51838 0.88317 0.518762 0.885883 0.516979 0.887217 0.514621 0.888447 0.511419 0.889514 0.507521 0.890369 0.503109 0.890971 0.49839 0.891293 0.493586 0.89132 0.488919 0.891054 0.484665 0.890395 0.481066 0.88919 0.477958 0.887817 0.476052 0.887367 0.522273 0.885807 0.522719 0.888975 0.520637 0.890533 0.517885 0.891968 0.514147 0.893214 0.509596 0.894212 0.504446 0.894915 0.498938 0.895291 0.493329 0.895322 0.487882 0.895 0.482915 0.894205 0.478779 0.892842 0.475169 0.891068 0.473073 0.890668 0.525829 0.888906 0.526332 0.892483 0.523982 0.894241 0.520876 0.895861 0.516656 0.897267 0.51152 0.898394 0.505707 0.899187 0.499489 0.899612 0.493158 0.899646 0.487009 0.899286 0.481354 0.898411 0.476638 0.894359 0.528996 0.892421 0.529549 0.896354 0.526965 0.898288 0.52355 0.900069 0.518911 0.901615 0.513263 0.902854 0.506872 0.903726 0.500036 0.904193 0.493075 0.904231 0.486314 0.903834 0.4801 0.902975 0.47504 0.898388 0.531728 0.896302 0.532323 0.900534 0.529543 0.902614 0.525869 0.904531 0.520877 0.906194 0.514801 0.907527 0.507925 0.908466 0.50057 0.908967 0.493081 0.909009 0.485806 0.908572 0.479151 0.907654 0.473824 0.902694 0.533986 0.900491 0.534614 0.90496 0.531679 0.907157 0.527799 0.909181 0.522528 0.910937 0.516111 0.912345 0.50885 0.913336 0.501084 0.913866 0.493175 0.913909 0.485494 0.91346 0.478418 0.912585 0.472851 0.907215 0.535736 0.904927 0.536388 0.909569 0.53334 0.91185 0.529311 0.913952 0.523838 0.915776 0.517175 0.917237 0.509635 0.918266 0.50157 0.918854 0.493342 0.918947 0.485357 0.91844 0.478006 0.91787 0.471971 0.914263 0.537286 0.911914 0.537955 0.916678 0.534827 0.919019 0.530693 0.921175 0.525076 0.923047 0.518239 0.924546 0.510502 0.925585 0.502224 0.926227 0.493754 0.926493 0.485583 0.925762 0.478045 0.924764 0.471485 0.921403 0.537724 0.919062 0.538392 0.92381 0.535275 0.926142 0.531156 0.930338 0.525761 0.93162 0.519674 0.933283 0.512932 0.932692 0.502839 0.933977 0.494768 0.934333 0.486371 0.933206 0.478784 0.931863 0.472204 0.92611 0.537268 0.92382 0.53792 0.928464 0.534872 0.932388 0.530343 0.937335 0.506755 0.941235 0.498334 0.941521 0.487989 0.940371 0.480184 0.938481 0.473907 0.930691 0.536256 0.928485 0.536884 0.934789 0.533043 0.935078 0.534703 0.932989 0.535298 0.938368 0.532576 0.947164 0.489068 0.947066 0.497764 0.946239 0.481893 0.944283 0.476284 0.939209 0.532632 0.937267 0.533185 0.941919 0.530982 0.950689 0.490156 0.950271 0.497772 0.95034 0.48345 0.948203 0.478162 0.943023 0.530074 0.941256 0.530577 0.945589 0.528338 0.95349 0.491089 0.952472 0.498024 0.953154 0.485389 0.951415 0.480527 0.946464 0.527065 0.944898 0.52751 0.948879 0.525086 0.955336 0.498108 0.955494 0.49227 0.955142 0.488211 0.954263 0.484425 0.949389 0.475505 0.954052 0.482326 0.94757 0.475109 0.945693 0.473082 0.943613 0.471998 0.950577 0.521636 0.949187 0.522238 0.951775 0.520708 0.950886 0.519379 0.952605 0.518141 0.95447 0.515316 0.952742 0.516616 0.878125 0.495997 0.943537 0.514246 0.944979 0.511457 0.945299 0.511731 0.944004 0.514141 0.946866 0.510467 0.945612 0.512005 0.946775 0.509925 0.944125 0.524447 0.943125 0.523168 0.943363 0.52176 0.944265 0.522893 0.943213 0.51865 0.9436 0.520352 0.942839 0.519741 0.942465 0.520831 0.942508 0.517563 0.943036 0.516979 0.944472 0.514036 0.943564 0.516394 0.946664 0.509365 0.948503 0.507957 0.948316 0.508687 0.949207 0.508705 0.948096 0.509397 0.949608 0.50791 0.950009 0.507096 0.951195 0.506751 0.950679 0.507606 0.951005 0.508659 0.950161 0.508443 0.951647 0.507843 0.952323 0.510866 0.951744 0.509448 0.952587 0.5089 0.953318 0.510638 0.952296 0.507042 0.953444 0.508317 0.954198 0.510416 0.954069 0.512878 0.953344 0.512779 0.95222 0.51488 0.952538 0.512757 0.952777 0.515115 0.953314 0.515413 0.952001 0.51802 0.951641 0.517475 0.949848 0.518868 0.951263 0.516984 0.950071 0.519673 0.950291 0.520481 0.948367 0.522605 0.94826 0.52146 0.946642 0.521256 0.948152 0.520315 0.946704 0.522693 0.946766 0.524131 0.94537 0.524785 0.945389 0.52319 0.944404 0.521338 0.945409 0.521595 0.948517 0.508521 0.947425 0.509189 0.946164 0.510225 0.943731 0.513771 0.942852 0.515989 0.942484 0.51808 0.944874 0.511783 0.950283 0.508511 0.949456 0.508269 0.942699 0.51973 0.943487 0.520694 0.951552 0.510694 0.95099 0.509314 0.944633 0.521012 0.946034 0.520645 0.951461 0.514432 0.951791 0.512457 0.947604 0.519694 0.949207 0.518265 0.95053 0.516413 0.954352 0.507334 0.955064 0.51004 0.953029 0.50566 0.954691 0.513093 0.953563 0.516187 0.942931 0.511155 0.945738 0.50837 0.941124 0.514785 0.948237 0.525023 0.946042 0.527051 0.950358 0.522206 0.940778 0.525984 0.939919 0.523165 0.942236 0.527579 0.940031 0.519157 0.94836 0.506655 0.95038 0.505668 0.951792 0.505283 0.952106 0.519194 0.94408 0.527997 0.955136 0.505085 0.955458 0.508799 0.953996 0.503048 0.954947 0.51289 0.953571 0.516724 0.940392 0.509704 0.943959 0.505926 0.937487 0.514053 0.946965 0.527152 0.943743 0.529685 0.949863 0.52392 0.936263 0.528363 0.934831 0.524989 0.938515 0.530358 0.93544 0.520327 0.947235 0.504116 0.949823 0.503295 0.952034 0.502955 0.951882 0.52041 0.941028 0.53079 0.956255 0.501869 0.956376 0.507194 0.955436 0.512282 0.95378 0.516679 0.954272 0.512902 0.953969 0.514386 0.955477 0.513065 0.955509 0.511632 0.956562 0.510151 0.957541 0.50583 0.957528 0.506237 0.957401 0.500104 0.957323 0.498901 0.956684 0.496896 0.956413 0.492938 0.956425 0.492794 0.955922 0.48933 0.955605 0.489791 0.952251 0.480529 0.95403 0.483685 0.955302 0.484788 0.955335 0.486204 0.955539 0.486154 0.954877 0.485325 0.956687 0.508947 0.956754 0.495687 0.955045 0.487387 0.877848 0.505182 0.877652 0.500582 0.87737 0.504506 0.877412 0.500243 0.876974 0.503437 0.877218 0.499703 0.87668 0.502023 0.877063 0.498994 0.876501 0.50033 0.876979 0.498142 0.876446 0.498438 0.87696 0.497191 0.876522 0.496436 0.877006 0.496186 0.876728 0.49442 0.877115 0.495174 0.877054 0.492488 0.877281 0.494204 0.877479 0.49073 0.877498 0.49332 0.877999 0.489197 0.877767 0.492546 0.878719 0.487808 0.878144 0.491879 0.879235 0.487423 0.878402 0.491725 0.878643 0.509686 0.877934 0.508686 0.877348 0.507101 0.876912 0.505005 0.876647 0.502497 0.876565 0.499694 0.876669 0.496727 0.876956 0.493734 0.877416 0.490859 0.878045 0.488251 0.878803 0.485988 0.879891 0.48389 0.880652 0.483253 0.880004 0.514038 0.879075 0.512727 0.878307 0.510649 0.877736 0.507903 0.877388 0.504616 0.87728 0.500942 0.877417 0.497054 0.877793 0.493132 0.878389 0.48936 0.879214 0.485947 0.880199 0.482989 0.881623 0.480314 0.882641 0.479405 0.881911 0.518172 0.880775 0.516569 0.879836 0.51403 0.879138 0.510673 0.878713 0.506655 0.878582 0.502165 0.878749 0.497412 0.879208 0.492618 0.879955 0.488021 0.881001 0.483899 0.88231 0.480367 0.883909 0.47731 0.885135 0.475926 0.884336 0.52203 0.883011 0.520159 0.881915 0.517195 0.8811 0.513276 0.880604 0.508586 0.88045 0.503344 0.880646 0.497795 0.881181 0.492199 0.882059 0.48684 0.883257 0.482017 0.884772 0.477872 0.886828 0.474331 0.888116 0.472377 0.887245 0.525554 0.885749 0.523442 0.884512 0.520096 0.883592 0.515673 0.883032 0.510379 0.882858 0.504462 0.883079 0.498199 0.883683 0.491882 0.884656 0.485819 0.885976 0.480334 0.887771 0.475644 0.888962 0.472096 0.890594 0.528694 0.888949 0.526372 0.887589 0.522693 0.886578 0.51783 0.885962 0.512009 0.885771 0.505504 0.886014 0.498617 0.886678 0.491672 0.887734 0.484992 0.889161 0.478945 0.891005 0.474124 0.894335 0.531403 0.892565 0.528905 0.891102 0.524947 0.890014 0.519714 0.889351 0.513452 0.889146 0.506453 0.889407 0.499043 0.890122 0.491571 0.891258 0.484384 0.892815 0.477978 0.894695 0.473363 0.898413 0.533643 0.896544 0.531004 0.894999 0.526825 0.89385 0.5213 0.893151 0.514687 0.892934 0.507295 0.893209 0.499472 0.893965 0.491581 0.895164 0.483992 0.89686 0.477387 0.898865 0.473076 0.902769 0.53538 0.900829 0.53264 0.899224 0.5283 0.898031 0.522562 0.897305 0.515695 0.897079 0.50802 0.897366 0.499895 0.89815 0.491701 0.899396 0.483821 0.901449 0.477074 0.903819 0.472976 0.909699 0.53692 0.907707 0.534109 0.906061 0.529655 0.904836 0.523767 0.904091 0.516721 0.90386 0.508844 0.904153 0.500507 0.904958 0.492099 0.906237 0.484012 0.908008 0.477129 0.910034 0.473198 0.916854 0.53736 0.91487 0.534559 0.91323 0.530122 0.914164 0.524465 0.913164 0.518196 0.913437 0.51134 0.91133 0.50108 0.912131 0.492703 0.913405 0.484646 0.91513 0.47783 0.916994 0.473623 0.92166 0.536911 0.919719 0.534172 0.91917 0.529284 0.917172 0.505296 0.919838 0.496406 0.920904 0.486229 0.92238 0.479225 0.924263 0.474614 0.926405 0.535913 0.924828 0.532245 0.931019 0.534378 0.929686 0.53188 0.92797 0.487724 0.927599 0.495894 0.929366 0.480734 0.931925 0.475167 0.935435 0.53233 0.934387 0.530379 0.933232 0.488977 0.932764 0.496065 0.934736 0.482159 0.937602 0.476887 0.93959 0.529799 0.938848 0.527798 0.937731 0.490249 0.936964 0.496523 0.939215 0.484123 0.942421 0.479379 0.943421 0.526821 0.942722 0.524593 0.94207 0.497013 0.942329 0.491435 0.943599 0.487511 0.946933 0.482758 0.949756 0.480976 0.945342 0.476815 0.940652 0.473783 0.947564 0.521395 0.9466 0.520277 0.951324 0.514898 0.949518 0.517928 0.928377 0.510114 0.926885 0.51291 0.927854 0.512845 0.929178 0.51043 0.92998 0.510746 0.931406 0.509225 0.930823 0.508639 0.92835 0.521984 0.930534 0.523359 0.930891 0.521821 0.928964 0.520607 0.929579 0.519229 0.928441 0.517467 0.927597 0.51852 0.926179 0.516255 0.926753 0.519573 0.927195 0.51571 0.928211 0.515165 0.928823 0.512781 0.932374 0.506682 0.930239 0.508053 0.932657 0.507439 0.93294 0.508196 0.934517 0.507536 0.93451 0.506707 0.936567 0.505592 0.934502 0.505878 0.936317 0.506456 0.936067 0.50732 0.937546 0.507578 0.93807 0.506748 0.938901 0.508422 0.940036 0.50988 0.941088 0.509726 0.939772 0.507879 0.940713 0.507314 0.938594 0.505926 0.942911 0.511998 0.942269 0.509491 0.941755 0.511888 0.940774 0.511818 0.940867 0.513981 0.941724 0.514237 0.941696 0.517149 0.942674 0.514592 0.940898 0.516619 0.940099 0.51609 0.938667 0.517973 0.939267 0.518807 0.937547 0.521739 0.939868 0.519641 0.937153 0.52057 0.936759 0.519402 0.934851 0.520311 0.935057 0.52176 0.932933 0.523788 0.935263 0.523209 0.932985 0.522196 0.933038 0.520604 0.931248 0.520284 0.932573 0.508007 0.934161 0.507367 0.930964 0.509008 0.927841 0.514787 0.928411 0.512543 0.928106 0.516928 0.929515 0.510546 0.935671 0.507169 0.937081 0.507438 0.929093 0.51864 0.93071 0.519671 0.938351 0.508298 0.9394 0.509723 0.932552 0.520045 0.934434 0.519715 0.940079 0.511519 0.940113 0.513519 0.936336 0.518792 0.938116 0.517377 0.939405 0.515521 0.943638 0.508965 0.941943 0.506311 0.939071 0.504531 0.94388 0.51543 0.944335 0.512165 0.927944 0.506963 0.925069 0.509715 0.923231 0.513349 0.935271 0.526189 0.938229 0.524222 0.940839 0.521447 0.923484 0.521848 0.925731 0.524779 0.928789 0.526502 0.922597 0.517761 0.93396 0.504385 0.931029 0.505302 0.936534 0.504088 0.942769 0.518413 0.932116 0.527039 0.945351 0.507568 0.943089 0.503744 0.939896 0.502018 0.945354 0.516015 0.946118 0.511811 0.925289 0.504712 0.920962 0.50815 0.918385 0.51252 0.934537 0.528948 0.938552 0.526478 0.941809 0.523283 0.918305 0.523665 0.921702 0.527196 0.925959 0.529352 0.917212 0.518867 0.933078 0.501722 0.929349 0.502508 0.936447 0.501609 0.943896 0.519878 0.930309 0.529931 0.948005 0.505607 0.944871 0.499392 0.947806 0.516062 0.9491 0.511191 0.953215 0.511264 0.952698 0.512701 0.951135 0.50884 0.950868 0.504414 0.946032 0.497811 0.946155 0.49879 0.9504 0.504692 0.944108 0.496015 0.944681 0.492183 0.945966 0.489086 0.945497 0.488606 0.944291 0.491984 0.951345 0.48426 0.948386 0.485293 0.952907 0.485943 0.952013 0.507755 0.944606 0.494766 0.94856 0.486751 0.889967 0.448966 0.879572 0.4873 0.878531 0.491695 0.881189 0.483034 0.883359 0.479059 0.88597 0.475436 0.826451 0.427416 0.889758 0.472115 0.881748 0.482959 0.884054 0.478968 0.886811 0.475429 0.942835 0.472365 0.877975 0.397658 0.883515 0.397651 0.873951 0.397664 0.870831 0.397671 0.867889 0.397674 0.918562 0.397639 0.925482 0.397634 0.901603 0.397646 0.909465 0.397642 0.891034 0.397645 0.929288 0.397637 0.894812 0.397645 0.931273 0.397662 0.86549 0.397668 0.931235 0.397655 0.882529 0.39765 0.877003 0.397658 0.871595 0.397671 0.868659 0.397671 0.868707 0.397667 0.925845 0.397644 0.918784 0.397657 0.909614 0.397666 0.901249 0.39767 0.890498 0.397656 0.92961 0.397643 0.894099 0.397656 0.867711 0.397671 0.900103 0.397679 0.595916 0.679782 0.593633 0.724091 0.587548 0.772055 0.579229 0.819401 0.570764 0.860428 0.56898 0.893979 0.055194 0.327681 0.056512 0.244825 0.056323 0.176259 0.056343 0.11532 0.057144 0.041836 0.468306 0.320445 0.459246 0.232082 0.470583 0.402538 0.456894 0.171519 0.044392 0.51728 0.04804 0.442488 0.039555 0.560029 0.472222 0.467543 0.655545 0.572596 0.685594 0.967391 0.590033 0.92387 0.595756 0.680499 0.590769 0.76975 0.682275 0.551691 0.647404 0.965201 0.571758 0.851938 0.600135 0.64164 0.623018 0.605621 0.617347 0.944413 0.720327 0.535205</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2277\" offset=\"0\" source=\"#LOD3spShape-lib-map1-array\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"LOD3spShape-lib-vertices\">\r\n                    <input semantic=\"POSITION\" source=\"#LOD3spShape-lib-positions\"/>\r\n                </vertices>\r\n                <triangles count=\"4212\" material=\"blinn3SG\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#LOD3spShape-lib-vertices\"/>\r\n                    <input offset=\"1\" semantic=\"NORMAL\" source=\"#LOD3spShape-lib-normals\"/>\r\n                    <input offset=\"2\" semantic=\"TEXCOORD\" set=\"0\" source=\"#LOD3spShape-lib-map1\"/>\r\n                    <p>89 0 23 243 1 26 6 3 29 6 3 29 243 1 26 90 2 28 243 1 26 89 0 23 91 4 30 91 4 30 89 0 23 5 5 31 92 6 33 244 7 35 5 5 31 5 5 31 244 7 35 91 4 30 244 7 35 92 6 33 299 8 36 299 8 36 92 6 33 218 9 37 95 11 41 93 12 42 7 10 39 7 10 39 93 12 42 8 13 57 93 12 42 95 11 41 9 15 62 9 15 62 95 11 41 94 14 61 245 17 66 89 0 23 96 16 65 96 16 65 89 0 23 6 3 29 89 0 23 245 17 66 5 5 31 5 5 31 245 17 66 97 18 67 245 17 66 98 19 68 97 18 67 97 18 67 98 19 68 11 20 69 98 19 68 245 17 66 10 21 70 10 21 70 245 17 66 96 16 65 246 22 71 92 6 33 97 18 67 97 18 67 92 6 33 5 5 31 92 6 33 246 22 71 218 9 37 218 9 37 246 22 71 300 23 72 246 22 71 99 24 84 300 23 72 300 23 72 99 24 84 219 25 85 99 24 84 246 22 71 11 20 69 11 20 69 246 22 71 97 18 67 247 27 89 93 12 42 12 26 86 12 26 86 93 12 42 9 15 62 93 12 42 247 27 89 8 13 57 8 13 57 247 27 89 100 28 90 102 30 137 101 31 138 13 29 135 13 29 135 101 31 138 14 32 139 101 31 138 102 30 137 8 13 57 8 13 57 102 30 137 7 10 39 248 34 141 98 19 68 103 33 140 103 33 140 98 19 68 10 21 70 98 19 68 248 34 141 11 20 69 11 20 69 248 34 141 104 35 142 248 34 141 105 36 200 104 35 142 104 35 142 105 36 200 16 37 246 105 36 200 248 34 141 15 38 249 15 38 249 248 34 141 103 33 140 107 39 252 101 31 138 100 28 90 100 28 90 101 31 138 8 13 57 101 31 138 107 39 252 14 32 139 14 32 139 107 39 252 106 40 253 108 41 254 109 42 256 14 32 139 14 32 139 109 42 256 13 29 135 109 42 256 108 41 254 18 43 259 18 43 259 108 41 254 17 44 260 111 45 262 108 41 254 106 40 253 106 40 253 108 41 254 14 32 139 108 41 254 111 45 262 17 44 260 17 44 260 111 45 262 110 46 265 20 47 266 112 48 283 19 50 286 19 50 286 112 48 283 113 49 285 113 49 285 112 48 283 17 44 260 17 44 260 112 48 283 18 43 259 115 51 289 113 49 285 110 46 265 110 46 265 113 49 285 17 44 260 115 51 289 114 52 290 113 49 285 113 49 285 114 52 290 19 50 286 22 53 291 116 54 292 21 56 294 21 56 294 116 54 292 117 55 293 116 54 292 20 47 266 117 55 293 117 55 293 20 47 266 19 50 286 114 52 290 119 57 295 19 50 286 19 50 286 119 57 295 117 55 293 119 57 295 118 58 296 117 55 293 117 55 293 118 58 296 21 56 294 23 59 297 249 60 298 24 62 303 24 62 303 249 60 298 120 61 300 249 60 298 22 53 291 120 61 300 120 61 300 22 53 291 21 56 294 118 58 296 122 63 304 21 56 294 21 56 294 122 63 304 120 61 300 122 63 304 121 64 884 120 61 300 120 61 300 121 64 884 24 62 303 26 65 885 339 66 886 123 68 888 123 68 888 339 66 886 340 67 887 123 68 888 340 67 887 28 70 890 28 70 890 340 67 887 341 69 889 340 67 887 124 71 891 341 69 889 341 69 889 124 71 891 27 72 892 124 71 891 340 67 887 25 73 893 25 73 893 340 67 887 339 66 886 250 75 895 307 76 896 125 74 894 125 74 894 307 76 896 29 77 897 307 76 896 250 75 895 227 79 899 227 79 899 250 75 895 126 78 898 250 75 895 123 68 888 126 78 898 126 78 898 123 68 888 28 70 890 123 68 888 250 75 895 26 65 885 26 65 885 250 75 895 125 74 894 126 78 898 127 80 900 227 79 899 227 79 899 127 80 900 45 81 901 126 78 898 28 70 890 127 80 900 127 80 900 28 70 890 30 82 902 128 83 0 251 84 1 31 86 3 31 86 3 251 84 1 308 85 2 308 85 74 251 84 75 228 88 77 228 88 77 251 84 75 129 87 76 251 84 75 130 89 78 129 87 76 129 87 76 130 89 78 33 90 79 251 84 1 128 83 0 130 89 4 130 89 4 128 83 0 32 91 12 131 92 13 252 93 14 34 95 16 34 95 16 252 93 14 309 94 15 252 93 14 128 83 0 309 94 15 309 94 15 128 83 0 31 86 3 128 83 0 252 93 14 32 91 12 32 91 12 252 93 14 132 96 17 252 93 14 131 92 13 132 96 17 132 96 17 131 92 13 35 97 18 133 98 82 253 99 83 35 97 18 35 97 18 253 99 83 132 96 17 253 99 83 134 100 91 132 96 17 132 96 17 134 100 91 32 91 12 134 100 91 253 99 83 36 102 93 36 102 93 253 99 83 156 101 92 253 99 83 133 98 82 156 101 92 156 101 92 133 98 82 38 103 94 135 104 96 254 105 97 39 107 101 39 107 101 254 105 97 136 106 98 136 106 98 254 105 97 37 109 105 37 109 105 254 105 97 137 108 102 254 105 97 133 98 82 137 108 102 137 108 102 133 98 82 35 97 18 254 105 97 135 104 96 133 98 82 133 98 82 135 104 96 38 103 94 255 110 903 99 24 84 104 35 142 104 35 142 99 24 84 11 20 69 99 24 84 255 110 903 219 25 85 219 25 85 255 110 903 310 111 904 255 110 903 138 112 905 310 111 904 310 111 904 138 112 905 1978 113 906 138 112 905 255 110 903 16 37 246 16 37 246 255 110 903 104 35 142 204 114 5 285 115 6 59 117 8 59 117 8 285 115 6 139 116 7 285 115 6 203 118 9 139 116 7 139 116 7 203 118 9 57 119 10 105 36 200 256 120 907 16 37 246 16 37 246 256 120 907 140 121 908 256 120 907 135 104 909 140 121 908 140 121 908 135 104 909 39 107 910 135 104 909 256 120 907 38 103 912 38 103 912 256 120 907 141 122 911 256 120 907 105 36 200 141 122 911 141 122 911 105 36 200 15 38 249 138 112 905 257 123 913 1978 113 906 1978 113 906 257 123 913 142 124 914 257 123 913 154 125 915 142 124 914 142 124 914 154 125 915 229 126 916 154 125 915 257 123 913 39 107 910 39 107 910 257 123 913 140 121 908 257 123 913 138 112 905 140 121 908 140 121 908 138 112 905 16 37 246 284 128 19 202 129 20 143 127 11 143 127 11 202 129 20 60 130 21 203 118 9 284 128 19 57 119 10 57 119 10 284 128 19 143 127 11 56 132 918 2065 133 919 144 131 917 144 131 917 2065 133 919 2066 134 920 311 135 921 258 136 922 29 77 897 29 77 897 258 136 922 125 74 894 258 136 922 145 137 923 125 74 894 125 74 894 145 137 923 26 65 885 145 137 80 258 136 81 40 139 99 40 139 99 258 136 81 146 138 95 258 136 81 311 135 100 146 138 95 146 138 95 311 135 100 41 140 103 43 141 924 147 142 925 42 144 927 42 144 927 147 142 925 148 143 926 147 142 925 23 59 297 148 143 926 148 143 926 23 59 297 24 62 303 149 145 928 259 146 929 25 73 893 25 73 893 259 146 929 124 71 891 259 146 929 150 147 976 124 71 891 124 71 891 150 147 976 27 72 892 150 147 976 259 146 929 43 141 924 43 141 924 259 146 929 147 142 925 259 146 929 149 145 928 147 142 925 147 142 925 149 145 928 23 59 297 121 64 884 152 148 978 24 62 303 24 62 303 152 148 978 148 143 926 152 148 978 151 149 980 148 143 926 148 143 926 151 149 980 42 144 927 231 150 981 30 82 902 341 69 889 341 69 889 30 82 902 28 70 890 341 69 889 27 72 892 231 150 981 231 150 981 27 72 892 44 151 982 153 152 104 260 153 106 33 90 79 33 90 79 260 153 106 129 87 76 260 153 106 312 154 107 129 87 76 129 87 76 312 154 107 228 88 77 312 154 107 260 153 106 41 140 103 41 140 103 260 153 106 146 138 95 260 153 106 153 152 104 146 138 95 146 138 95 153 152 104 40 139 99 154 125 110 261 155 111 229 126 113 229 126 113 261 155 111 313 156 112 261 155 111 155 157 114 313 156 112 313 156 112 155 157 114 230 158 115 155 157 114 261 155 111 37 109 105 37 109 105 261 155 111 136 106 98 261 155 111 154 125 110 136 106 98 136 106 98 154 125 110 39 107 101 262 159 108 181 160 109 153 152 104 153 152 104 181 160 109 40 139 99 181 160 116 262 159 117 36 102 93 36 102 93 262 159 117 134 100 91 262 159 117 130 89 4 134 100 91 134 100 91 130 89 4 32 91 12 130 89 78 262 159 108 33 90 79 33 90 79 262 159 108 153 152 104 137 108 102 263 161 118 37 109 105 37 109 105 263 161 118 155 157 114 155 157 114 263 161 118 230 158 115 230 158 115 263 161 118 314 162 119 263 161 118 131 92 13 314 162 119 314 162 119 131 92 13 34 95 16 131 92 13 263 161 118 35 97 18 35 97 18 263 161 118 137 108 102 151 149 980 241 163 983 42 144 927 42 144 927 241 163 983 157 164 985 241 163 983 242 165 987 157 164 985 157 164 985 242 165 987 83 166 1012 264 168 1016 160 169 1017 159 167 1013 159 167 1013 160 169 1017 44 151 982 160 169 1017 264 168 1016 81 171 1019 81 171 1019 264 168 1016 239 170 1018 264 168 1016 238 172 1020 239 170 1018 239 170 1018 238 172 1020 82 173 1023 238 172 1020 264 168 1016 43 141 924 43 141 924 264 168 1016 159 167 1013 82 173 1023 238 172 1020 83 166 1012 83 166 1012 238 172 1020 157 164 985 157 164 985 238 172 1020 42 144 927 42 144 927 238 172 1020 43 141 924 160 169 1017 265 174 1036 44 151 982 44 151 982 265 174 1036 231 150 981 265 174 1036 232 175 1038 231 150 981 231 150 981 232 175 1038 30 82 902 232 175 1038 265 174 1036 80 177 1040 80 177 1040 265 174 1036 237 176 1039 265 174 1036 160 169 1017 237 176 1039 237 176 1039 160 169 1017 81 171 1019 163 178 1041 164 179 1042 94 14 61 94 14 61 164 179 1042 9 15 62 165 180 1043 266 181 1045 46 183 1047 46 183 1047 266 181 1045 166 182 1046 266 181 1045 163 178 1041 166 182 1046 166 182 1046 163 178 1041 94 14 61 288 184 1048 207 185 1049 90 2 28 90 2 28 207 185 1049 6 3 29 164 179 1042 167 186 1050 9 15 62 9 15 62 167 186 1050 12 26 86 267 187 1051 168 188 1052 166 182 1046 166 182 1046 168 188 1052 46 183 1047 168 188 1052 267 187 1051 47 190 1054 47 190 1054 267 187 1051 169 189 1053 267 187 1051 95 11 41 169 189 1053 169 189 1053 95 11 41 7 10 39 95 11 41 267 187 1051 94 14 61 94 14 61 267 187 1051 166 182 1046 207 185 1049 287 191 1055 6 3 29 6 3 29 287 191 1055 96 16 65 287 191 1055 206 192 1056 96 16 65 96 16 65 206 192 1056 10 21 70 170 193 22 268 194 2246 63 196 25 63 196 25 268 194 2246 171 195 24 268 194 2246 172 197 2247 171 195 24 171 195 24 172 197 2247 58 198 27 268 194 1058 173 199 1059 172 197 1057 172 197 1057 173 199 1059 64 200 1060 173 199 1059 268 194 1058 62 201 1062 62 201 1062 268 194 1058 170 193 1061 172 197 2247 269 202 2248 58 198 27 58 198 27 269 202 2248 174 203 32 174 203 32 269 202 2248 61 205 34 61 205 34 269 202 2248 175 204 2249 175 204 1063 269 202 1064 65 207 1066 65 207 1066 269 202 1064 176 206 1065 269 202 1064 172 197 1057 176 206 1065 176 206 1065 172 197 1057 64 200 1060 270 208 2250 177 209 38 175 204 2249 175 204 2249 177 209 38 61 205 34 177 209 38 270 208 2250 66 211 40 66 211 40 270 208 2250 178 210 2251 178 210 1067 270 208 1068 67 213 1070 67 213 1070 270 208 1068 179 212 1069 270 208 1068 175 204 1063 179 212 1069 179 212 1069 175 204 1063 65 207 1066 271 215 1072 149 145 928 180 214 1071 180 214 1071 149 145 928 25 73 893 149 145 928 271 215 1072 23 59 297 23 59 297 271 215 1072 249 60 298 271 215 1072 48 216 1073 249 60 298 249 60 298 48 216 1073 22 53 291 150 147 976 159 167 1013 27 72 892 27 72 892 159 167 1013 44 151 982 159 167 1013 150 147 976 43 141 924 48 216 1073 272 217 1074 22 53 291 22 53 291 272 217 1074 116 54 292 272 217 1074 49 218 1075 116 54 292 116 54 292 49 218 1075 20 47 266 49 218 1075 273 219 1076 20 47 266 20 47 266 273 219 1076 112 48 283 112 48 283 273 219 1076 18 43 259 18 43 259 273 219 1076 50 220 1077 274 221 1078 109 42 256 50 220 1077 50 220 1077 109 42 256 18 43 259 109 42 256 274 221 1078 13 29 135 13 29 135 274 221 1078 51 222 1079 275 223 1080 52 224 1081 169 189 1053 169 189 1053 52 224 1081 47 190 1054 275 223 1080 102 30 137 51 222 1079 51 222 1079 102 30 137 13 29 135 102 30 137 275 223 1080 7 10 39 7 10 39 275 223 1080 169 189 1053 206 192 1056 286 225 1082 10 21 70 10 21 70 286 225 1082 103 33 140 286 225 1082 53 226 1083 103 33 140 103 33 140 53 226 1083 15 38 249 53 226 1083 276 227 1084 15 38 249 15 38 249 276 227 1084 141 122 911 276 227 1084 54 228 1085 141 122 911 141 122 911 54 228 1085 38 103 912 277 229 1087 55 230 1088 156 101 1086 156 101 1086 55 230 1088 36 102 1089 54 228 1085 277 229 1087 38 103 912 38 103 912 277 229 1087 156 101 1086 182 231 1090 181 160 1091 55 230 1088 55 230 1088 181 160 1091 36 102 1089 181 160 1091 182 231 1090 40 139 1092 40 139 1092 182 231 1090 56 132 918 283 232 43 183 233 44 202 129 20 202 129 20 183 233 44 60 130 21 201 234 45 68 235 46 283 232 43 283 232 43 68 235 46 183 233 44 144 131 917 145 137 923 56 132 918 56 132 918 145 137 923 40 139 1092 321 236 1093 339 66 886 144 131 917 339 66 886 26 65 885 144 131 917 144 131 917 26 65 885 145 137 923 2069 237 1094 2070 238 1095 276 227 1084 276 227 1084 2070 238 1095 54 228 1085 290 239 47 208 240 48 278 242 50 278 242 50 208 240 48 184 241 49 210 243 51 290 239 47 185 244 52 185 244 52 290 239 47 278 242 50 2068 245 1096 2069 237 1094 53 226 1083 53 226 1083 2069 237 1094 276 227 1084 2071 246 1097 2073 247 1098 277 229 1087 277 229 1087 2073 247 1098 55 230 1088 289 248 53 209 249 54 279 251 56 279 251 56 209 249 54 186 250 55 208 240 48 289 248 53 184 241 49 184 241 49 289 248 53 279 251 56 2070 238 1095 2071 246 1097 54 228 1085 54 228 1085 2071 246 1097 277 229 1087 275 223 1080 2075 252 1099 52 224 1081 52 224 1081 2075 252 1099 2076 253 1100 212 255 58 2053 256 59 294 254 2265 294 254 2265 2053 256 59 280 257 60 294 254 1102 280 257 1103 214 258 1101 214 258 1101 280 257 1103 187 259 1104 2075 252 1099 275 223 1080 2074 260 1105 2074 260 1105 275 223 1080 51 222 1079 2072 261 1106 2068 245 1096 286 225 1082 286 225 1082 2068 245 1096 53 226 1083 292 262 63 210 243 51 2052 263 64 2052 263 64 210 243 51 185 244 52 274 221 1078 2078 264 1107 51 222 1079 51 222 1079 2078 264 1107 2074 260 1105 214 258 1101 187 259 1104 293 265 1108 293 265 1108 187 259 1104 2055 266 1109 293 265 1108 2055 266 1109 213 267 1110 213 267 1110 2055 266 1109 188 268 1111 2078 264 1107 274 221 1078 2079 269 1112 2079 269 1112 274 221 1078 50 220 1077 273 219 1076 2080 270 1113 50 220 1077 50 220 1077 2080 270 1113 2079 269 1112 213 267 1110 188 268 1111 295 271 1114 295 271 1114 188 268 1111 2056 272 1115 215 273 1116 295 271 1114 189 274 1117 189 274 1117 295 271 1114 2056 272 1115 2081 275 1118 2080 270 1113 49 218 1075 49 218 1075 2080 270 1113 273 219 1076 2084 276 1119 2085 277 1120 271 215 1072 271 215 1072 2085 277 1120 48 216 1073 297 278 1121 216 279 1122 281 281 1124 281 281 1124 216 279 1122 190 280 1123 217 282 87 297 278 73 191 283 88 191 283 88 297 278 73 281 281 2271 2083 284 1125 2084 276 1119 180 214 1071 180 214 1071 2084 276 1119 271 215 1072 2082 285 1126 2081 275 1118 272 217 1074 272 217 1074 2081 275 1118 49 218 1075 296 286 1127 215 273 1116 2057 287 1128 2057 287 1128 215 273 1116 189 274 1117 216 279 1122 296 286 1127 190 280 1123 190 280 1123 296 286 1127 2057 287 1128 2085 277 1120 2082 285 1126 48 216 1073 48 216 1073 2082 285 1126 272 217 1074 182 231 1090 2064 288 1129 56 132 918 56 132 918 2064 288 1129 2065 133 919 211 290 121 2051 291 122 291 289 120 291 289 120 2051 291 122 2050 292 123 291 289 120 2050 292 123 209 249 54 209 249 54 2050 292 123 186 250 55 2064 288 1129 182 231 1090 2073 247 1098 2073 247 1098 182 231 1090 55 230 1088 298 293 124 282 294 125 211 290 121 211 290 121 282 294 125 2051 291 122 323 295 126 322 296 127 298 293 124 298 293 124 322 296 127 282 294 125 70 297 128 192 298 129 57 119 10 57 119 10 192 298 129 139 116 7 59 117 8 139 116 7 71 299 130 71 299 130 139 116 7 192 298 129 69 300 131 193 301 132 60 130 21 60 130 21 193 301 132 143 127 11 57 119 10 143 127 11 70 297 128 70 297 128 143 127 11 193 301 132 194 303 134 170 193 22 73 302 133 73 302 133 170 193 22 63 196 25 170 193 1061 194 303 1130 62 201 1062 62 201 1062 194 303 1130 74 304 1131 71 299 130 205 305 136 59 117 8 59 117 8 205 305 136 204 114 5 62 201 1062 74 304 1131 173 199 1059 173 199 1059 74 304 1131 195 306 1132 173 199 1059 195 306 1132 64 200 1060 64 200 1060 195 306 1132 75 307 1133 64 200 1060 75 307 1133 176 206 1065 176 206 1065 75 307 1133 196 308 1134 65 207 1066 176 206 1065 76 309 1135 76 309 1135 176 206 1065 196 308 1134 77 310 1136 197 311 1137 67 213 1070 67 213 1070 197 311 1137 178 210 1067 66 211 40 178 210 2251 78 312 143 78 312 143 178 210 2251 197 311 2267 76 309 1135 198 313 1138 65 207 1066 65 207 1066 198 313 1138 179 212 1069 67 213 1070 179 212 1069 77 310 1136 77 310 1136 179 212 1069 198 313 1138 199 315 202 183 233 44 72 314 201 72 314 201 183 233 44 68 235 46 69 300 131 60 130 21 199 315 202 199 315 202 60 130 21 183 233 44 72 314 201 68 235 46 200 316 203 200 316 203 68 235 46 201 234 45 200 316 203 201 234 45 338 317 204 338 317 204 201 234 45 337 318 205 337 318 205 66 211 40 338 317 204 338 317 204 66 211 40 78 312 143 283 232 43 336 319 206 201 234 45 201 234 45 336 319 206 337 318 205 177 209 38 336 319 206 61 205 34 61 205 34 336 319 206 335 320 207 334 321 208 335 320 207 284 128 19 284 128 19 335 320 207 202 129 20 334 321 208 333 322 209 174 203 32 174 203 32 333 322 209 58 198 27 332 323 210 333 322 209 285 115 6 285 115 6 333 322 209 203 118 9 332 323 210 331 324 232 171 195 24 171 195 24 331 324 232 63 196 25 331 324 232 204 114 5 330 325 233 330 325 233 204 114 5 205 305 136 331 324 232 330 325 233 63 196 25 63 196 25 330 325 233 73 302 133 329 326 234 292 262 63 2054 327 235 2054 327 235 292 262 63 2052 263 64 2077 328 1139 328 329 1140 2076 253 1100 2076 253 1100 328 329 1140 52 224 1081 328 329 1140 327 330 1141 52 224 1081 52 224 1081 327 330 1141 47 190 1054 326 331 1142 327 330 1141 287 191 1055 287 191 1055 327 330 1141 206 192 1056 168 188 1052 326 331 1142 46 183 1047 46 183 1047 326 331 1142 325 332 1143 324 333 1144 325 332 1143 288 184 1048 288 184 1048 325 332 1143 207 185 1049 289 248 53 208 240 48 193 301 132 193 301 132 208 240 48 70 297 128 209 249 54 289 248 53 69 300 131 69 300 131 289 248 53 193 301 132 210 243 51 292 262 63 71 299 130 71 299 130 292 262 63 205 305 136 208 240 48 290 239 47 70 297 128 70 297 128 290 239 47 192 298 129 290 239 47 210 243 51 192 298 129 192 298 129 210 243 51 71 299 130 199 315 202 291 289 120 69 300 131 69 300 131 291 289 120 209 249 54 291 289 120 199 315 202 211 290 121 211 290 121 199 315 202 72 314 201 292 262 63 329 326 234 205 305 136 205 305 136 329 326 234 330 325 233 2053 256 59 212 255 58 2054 327 235 2054 327 235 212 255 58 329 326 234 195 306 1132 293 265 1108 75 307 1133 75 307 1133 293 265 1108 213 267 1110 293 265 1108 195 306 1132 214 258 1101 214 258 1101 195 306 1132 74 304 1131 294 254 2265 194 303 134 212 255 58 212 255 58 194 303 134 73 302 133 194 303 1130 294 254 1102 74 304 1131 74 304 1131 294 254 1102 214 258 1101 295 271 1114 196 308 1134 213 267 1110 213 267 1110 196 308 1134 75 307 1133 295 271 1114 215 273 1116 196 308 1134 196 308 1134 215 273 1116 76 309 1135 215 273 1116 296 286 1127 76 309 1135 76 309 1135 296 286 1127 198 313 1138 296 286 1127 216 279 1122 198 313 1138 198 313 1138 216 279 1122 77 310 1136 323 295 126 217 282 87 322 296 127 322 296 127 217 282 87 191 283 88 217 282 87 323 295 126 78 312 143 78 312 143 323 295 126 338 317 204 216 279 1122 297 278 1121 77 310 1136 77 310 1136 297 278 1121 197 311 1137 297 278 73 217 282 87 197 311 2267 197 311 2267 217 282 87 78 312 143 200 316 203 298 293 124 72 314 201 72 314 201 298 293 124 211 290 121 247 27 89 301 334 1145 100 28 90 100 28 90 301 334 1145 220 335 1146 301 334 1145 247 27 89 221 336 1147 221 336 1147 247 27 89 12 26 86 107 39 252 302 337 1148 106 40 253 106 40 253 302 337 1148 222 338 1149 302 337 1148 107 39 252 220 335 1146 220 335 1146 107 39 252 100 28 90 111 45 262 303 339 1150 110 46 265 110 46 265 303 339 1150 223 340 1151 303 339 1150 111 45 262 222 338 1149 222 338 1149 111 45 262 106 40 253 304 341 1152 224 342 1153 115 51 289 115 51 289 224 342 1153 114 52 290 223 340 1151 304 341 1152 110 46 265 110 46 265 304 341 1152 115 51 289 305 343 1154 225 344 1155 119 57 295 119 57 295 225 344 1155 118 58 296 224 342 1153 305 343 1154 114 52 290 114 52 290 305 343 1154 119 57 295 306 345 1156 226 346 1157 122 63 304 122 63 304 226 346 1157 121 64 884 225 344 1155 306 345 1156 118 58 296 118 58 296 306 345 1156 122 63 304 346 347 1158 345 348 1159 152 148 978 152 148 978 345 348 1159 151 149 980 152 148 978 121 64 884 346 347 1158 346 347 1158 121 64 884 226 346 1157 344 349 1160 343 350 1161 241 163 983 241 163 983 343 350 1161 242 165 987 241 163 983 151 149 980 344 349 1160 344 349 1160 151 149 980 345 348 1159 167 186 1050 315 351 1162 12 26 86 12 26 86 315 351 1162 221 336 1147 316 352 1163 127 80 900 232 175 1038 232 175 1038 127 80 900 30 82 902 127 80 900 316 352 1163 45 81 901 45 81 901 316 352 1163 162 353 1164 316 352 1163 235 354 1165 162 353 1164 162 353 1164 235 354 1165 79 355 1166 316 352 1163 232 175 1038 235 354 1165 235 354 1165 232 175 1038 80 177 1040 234 356 1167 317 357 1168 80 177 1040 80 177 1040 317 357 1168 235 354 1165 317 357 1168 233 358 1169 235 354 1165 235 354 1165 233 358 1169 79 355 1166 233 358 1169 317 357 1168 3 360 1171 3 360 1171 317 357 1168 87 359 1170 317 357 1168 234 356 1167 87 359 1170 87 359 1170 234 356 1167 2 361 1172 236 362 1173 318 363 1174 81 171 1019 81 171 1019 318 363 1174 237 176 1039 318 363 1174 234 356 1167 237 176 1039 237 176 1039 234 356 1167 80 177 1040 234 356 1167 318 363 1174 2 361 1172 2 361 1172 318 363 1174 86 364 1175 318 363 1174 236 362 1173 86 364 1175 86 364 1175 236 362 1173 1 365 1176 319 366 1177 236 362 1173 239 170 1018 239 170 1018 236 362 1173 81 171 1019 236 362 1173 319 366 1177 1 365 1176 1 365 1176 319 366 1177 85 367 1178 85 367 1178 319 366 1177 0 369 1180 0 369 1180 319 366 1177 161 368 1179 319 366 1177 239 170 1018 161 368 1179 161 368 1179 239 170 1018 82 173 1023 0 369 1180 161 368 1179 4 371 1182 4 371 1182 161 368 1179 240 370 1181 161 368 1179 82 173 1023 240 370 1181 240 370 1181 82 173 1023 83 166 1012 242 165 987 158 372 1183 83 166 1012 83 166 1012 158 372 1183 240 370 1181 240 370 1181 158 372 1183 4 371 1182 4 371 1182 158 372 1183 84 373 1184 343 350 1161 342 374 1185 242 165 987 242 165 987 342 374 1185 158 372 1183 342 374 1185 88 375 1186 158 372 1183 158 372 1183 88 375 1186 84 373 1184 144 131 917 2066 134 920 321 236 1093 321 236 1093 2066 134 920 2067 376 1187 321 236 1093 180 214 1071 339 66 886 339 66 886 180 214 1071 25 73 893 2067 376 1187 2083 284 1125 321 236 1093 321 236 1093 2083 284 1125 180 214 1071 325 332 1143 324 333 1144 46 183 1047 46 183 1047 324 333 1144 165 180 1043 325 332 1143 326 331 1142 207 185 1049 207 185 1049 326 331 1142 287 191 1055 47 190 1054 327 330 1141 168 188 1052 168 188 1052 327 330 1141 326 331 1142 327 330 1141 328 329 1140 206 192 1056 206 192 1056 328 329 1140 286 225 1082 286 225 1082 328 329 1140 2072 261 1106 2072 261 1106 328 329 1140 2077 328 1139 330 325 233 329 326 234 73 302 133 73 302 133 329 326 234 212 255 58 331 324 232 332 323 210 204 114 5 204 114 5 332 323 210 285 115 6 333 322 209 332 323 210 58 198 27 58 198 27 332 323 210 171 195 24 333 322 209 334 321 208 203 118 9 203 118 9 334 321 208 284 128 19 61 205 34 335 320 207 174 203 32 174 203 32 335 320 207 334 321 208 202 129 20 335 320 207 283 232 43 283 232 43 335 320 207 336 319 206 66 211 40 337 318 205 177 209 38 177 209 38 337 318 205 336 319 206 338 317 204 323 295 126 200 316 203 200 316 203 323 295 126 298 293 124 299 8 36 218 9 37 2017 378 1189 2017 378 1189 218 9 37 2022 377 1188 218 9 37 300 23 72 2022 377 1188 2022 377 1188 300 23 72 2021 379 1190 300 23 72 219 25 85 2021 379 1190 2021 379 1190 219 25 85 2023 380 1191 301 334 1145 674 381 1192 220 335 1146 220 335 1146 674 381 1192 592 382 1193 221 336 1147 593 383 1194 301 334 1145 301 334 1145 593 383 1194 674 381 1192 302 337 1148 675 384 1195 222 338 1149 222 338 1149 675 384 1195 594 385 1196 302 337 1148 220 335 1146 675 384 1195 675 384 1195 220 335 1146 592 382 1193 303 339 1150 676 386 1197 223 340 1151 223 340 1151 676 386 1197 595 387 1198 222 338 1149 594 385 1196 303 339 1150 303 339 1150 594 385 1196 676 386 1197 304 341 1152 677 388 1199 224 342 1153 224 342 1153 677 388 1199 596 389 1200 223 340 1151 595 387 1198 304 341 1152 304 341 1152 595 387 1198 677 388 1199 305 343 1154 678 390 1201 225 344 1155 225 344 1155 678 390 1201 597 391 1202 224 342 1153 596 389 1200 305 343 1154 305 343 1154 596 389 1200 678 390 1201 226 346 1157 306 345 1156 598 393 1204 598 393 1204 306 345 1156 679 392 1203 225 344 1155 597 391 1202 306 345 1156 306 345 1156 597 391 1202 679 392 1203 2037 395 1206 680 396 1207 2036 394 1205 2036 394 1205 680 396 1207 599 397 1208 2038 398 1209 600 399 1210 2037 395 1206 2037 395 1206 600 399 1210 680 396 1207 2039 400 1211 608 401 1212 2038 398 1209 2038 398 1209 608 401 1212 600 399 1210 31 86 3 308 85 2 2033 403 2261 2033 403 2261 308 85 2 2019 402 144 681 405 149 2019 402 2264 602 404 148 602 404 148 2019 402 2264 2020 406 2259 34 95 16 309 94 15 2031 408 2252 2031 408 2252 309 94 15 2032 407 2262 309 94 15 31 86 3 2032 407 2262 2032 407 2262 31 86 3 2033 403 2261 219 25 85 310 111 904 2023 380 1191 2023 380 1191 310 111 904 2024 409 1213 604 411 1215 2025 412 1216 684 410 1214 684 410 1214 2025 412 1216 2026 413 1217 2035 415 2260 685 416 158 2034 414 2258 2034 414 2258 685 416 158 605 417 159 2036 394 1205 599 397 1208 2035 415 1218 2035 415 1218 599 397 1208 685 416 1219 346 347 1158 1971 418 1220 345 348 1159 345 348 1159 1971 418 1220 1970 419 1221 226 346 1157 598 393 1204 346 347 1158 346 347 1158 598 393 1204 1971 418 1220 2016 420 2257 686 421 161 2020 406 2259 2020 406 2259 686 421 161 602 404 148 2034 414 2258 605 417 159 2016 420 2257 2016 420 2257 605 417 159 686 421 161 229 126 113 313 156 112 2027 423 2256 2027 423 2256 313 156 112 2028 422 2255 313 156 112 230 158 115 2028 422 2255 2028 422 2255 230 158 115 2029 424 2254 230 158 115 314 162 119 2029 424 2254 2029 424 2254 314 162 119 2030 425 2253 314 162 119 34 95 16 2030 425 2253 2030 425 2253 34 95 16 2031 408 2252 344 349 1160 1969 426 1222 343 350 1161 343 350 1161 1969 426 1222 1968 427 1223 345 348 1159 1970 419 1221 344 349 1160 344 349 1160 1970 419 1221 1969 426 1222 2040 428 1224 689 429 1225 2039 400 1211 2039 400 1211 689 429 1225 608 401 1212 2041 430 1226 612 431 1227 2040 428 1224 2040 428 1224 612 431 1227 689 429 1225 315 351 1162 690 432 1228 221 336 1147 221 336 1147 690 432 1228 593 383 1194 2042 433 1229 692 434 1230 2041 430 1226 2041 430 1226 692 434 1230 612 431 1227 2043 435 1231 434 436 1232 2042 433 1229 2042 433 1229 434 436 1232 692 434 1230 88 375 1186 342 374 1185 435 438 1234 435 438 1234 342 374 1185 1967 437 1233 342 374 1185 343 350 1161 1967 437 1233 1967 437 1233 343 350 1161 1968 427 1223 436 439 1235 353 440 1236 622 442 1238 622 442 1238 353 440 1236 437 441 1237 352 444 1240 436 439 1235 438 443 1239 438 443 1239 436 439 1235 622 442 1238 439 445 1241 352 444 1240 623 446 1242 623 446 1242 352 444 1240 438 443 1239 354 448 1244 439 445 1241 440 447 1243 440 447 1243 439 445 1241 623 446 1242 356 450 1246 441 451 1247 355 449 1245 355 449 1245 441 451 1247 443 452 1248 441 451 1247 357 453 1249 443 452 1248 443 452 1248 357 453 1249 442 454 1250 353 440 1236 436 439 1235 444 455 1251 444 455 1251 436 439 1235 624 456 1252 436 439 1235 352 444 1240 624 456 1252 624 456 1252 352 444 1240 445 457 1253 359 458 1254 446 459 1255 445 457 1253 445 457 1253 446 459 1255 624 456 1252 446 459 1255 358 460 1256 624 456 1252 624 456 1252 358 460 1256 444 455 1251 352 444 1240 439 445 1241 445 457 1253 445 457 1253 439 445 1241 625 461 1257 439 445 1241 354 448 1244 625 461 1257 625 461 1257 354 448 1244 447 462 1258 360 463 1259 448 464 1260 447 462 1258 447 462 1258 448 464 1260 625 461 1257 448 464 1260 359 458 1254 625 461 1257 625 461 1257 359 458 1254 445 457 1253 357 453 1249 441 451 1247 361 465 1261 361 465 1261 441 451 1247 626 466 1262 441 451 1247 356 450 1246 626 466 1262 626 466 1262 356 450 1246 449 467 1263 363 469 1265 450 470 1266 362 468 1264 362 468 1264 450 470 1266 451 471 1267 450 470 1266 356 450 1246 451 471 1267 451 471 1267 356 450 1246 355 449 1245 358 460 1256 446 459 1255 452 472 1268 452 472 1268 446 459 1255 627 473 1269 446 459 1255 359 458 1254 627 473 1269 627 473 1269 359 458 1254 453 474 1270 365 475 1271 454 476 1272 453 474 1270 453 474 1270 454 476 1272 627 473 1269 454 476 1272 364 477 1273 627 473 1269 627 473 1269 364 477 1273 452 472 1268 356 450 1246 450 470 1266 449 467 1263 449 467 1263 450 470 1266 456 478 1274 450 470 1266 363 469 1265 456 478 1274 456 478 1274 363 469 1265 455 479 1275 457 480 1276 363 469 1265 458 481 1277 458 481 1277 363 469 1265 362 468 1264 366 483 1279 457 480 1276 367 482 1278 367 482 1278 457 480 1276 458 481 1277 363 469 1265 457 480 1276 455 479 1275 455 479 1275 457 480 1276 460 484 1280 457 480 1276 366 483 1279 460 484 1280 460 484 1280 366 483 1279 459 485 1281 369 486 1282 368 487 1283 461 489 1285 461 489 1285 368 487 1283 462 488 1284 462 488 1284 366 483 1279 461 489 1285 461 489 1285 366 483 1279 367 482 1278 366 483 1279 462 488 1284 459 485 1281 459 485 1281 462 488 1284 464 490 1286 368 487 1283 463 491 1287 462 488 1284 462 488 1284 463 491 1287 464 490 1286 371 492 1288 370 493 1289 465 495 1291 465 495 1291 370 493 1289 466 494 1290 368 487 1283 369 486 1282 466 494 1290 466 494 1290 369 486 1282 465 495 1291 463 491 1287 368 487 1283 468 496 1292 468 496 1292 368 487 1283 466 494 1290 370 493 1289 467 497 1293 466 494 1290 466 494 1290 467 497 1293 468 496 1292 372 498 1294 373 499 1295 628 501 1297 628 501 1297 373 499 1295 469 500 1296 370 493 1289 371 492 1288 469 500 1296 469 500 1296 371 492 1288 628 501 1297 467 497 1293 370 493 1289 471 502 1298 471 502 1298 370 493 1289 469 500 1296 373 499 1295 470 503 1299 469 500 1296 469 500 1296 470 503 1299 471 502 1298 375 504 1300 472 505 1301 1964 507 1303 1964 507 1303 472 505 1301 1965 506 1302 472 505 1301 377 508 1304 1965 506 1302 1965 506 1302 377 508 1304 1966 509 1305 376 510 1306 473 511 1307 1966 509 1305 1966 509 1305 473 511 1307 1965 506 1302 473 511 1307 374 512 1308 1965 506 1302 1965 506 1302 374 512 1308 1964 507 1303 378 514 1310 475 515 1311 474 513 1309 474 513 1309 475 515 1311 629 516 1312 475 515 1311 379 517 1313 629 516 1312 629 516 1312 379 517 1313 476 518 1314 377 508 1304 472 505 1301 476 518 1314 476 518 1314 472 505 1301 629 516 1312 472 505 1301 375 504 1300 629 516 1312 629 516 1312 375 504 1300 474 513 1309 476 518 1314 379 517 1313 477 520 1316 477 520 1316 379 517 1313 399 519 1315 476 518 1314 477 520 1316 377 508 1304 377 508 1304 477 520 1316 380 521 1317 478 522 162 381 523 163 630 525 165 630 525 165 381 523 163 479 524 164 479 524 174 382 526 175 630 525 177 630 525 177 382 526 175 480 527 176 384 528 178 481 529 179 480 527 176 480 527 176 481 529 179 630 525 177 383 530 167 478 522 162 481 529 166 481 529 166 478 522 162 630 525 165 482 531 168 385 532 169 631 534 171 631 534 171 385 532 169 483 533 170 381 523 163 478 522 162 483 533 170 483 533 170 478 522 162 631 534 171 478 522 162 383 530 167 631 534 171 631 534 171 383 530 167 484 535 172 386 536 173 482 531 168 484 535 172 484 535 172 482 531 168 631 534 171 485 537 180 386 536 173 632 538 181 632 538 181 386 536 173 484 535 172 383 530 167 486 539 182 484 535 172 484 535 172 486 539 182 632 538 181 486 539 182 387 540 183 632 538 181 632 538 181 387 540 183 511 541 184 390 542 185 485 537 180 511 541 184 511 541 184 485 537 180 632 538 181 487 543 186 391 544 187 633 546 189 633 546 189 391 544 187 488 545 188 488 545 188 388 547 190 633 546 189 633 546 189 388 547 190 489 548 191 386 536 173 485 537 180 489 548 191 489 548 191 485 537 180 633 546 189 390 542 185 487 543 186 485 537 180 485 537 180 487 543 186 633 546 189 359 458 1254 448 464 1260 453 474 1270 453 474 1270 448 464 1260 634 549 1318 448 464 1260 360 463 1259 634 549 1318 634 549 1318 360 463 1259 490 550 1319 389 551 1320 491 552 1321 490 550 1319 490 550 1319 491 552 1321 634 549 1318 491 552 1321 365 475 1271 634 549 1318 634 549 1318 365 475 1271 453 474 1270 575 553 236 405 554 237 659 556 239 659 556 239 405 554 237 492 555 238 403 557 240 574 558 241 492 555 238 492 555 238 574 558 241 659 556 239 454 476 1272 365 475 1271 635 560 1323 635 560 1323 365 475 1271 493 559 1322 391 544 1324 487 543 1325 493 559 1322 493 559 1322 487 543 1325 635 560 1323 487 543 1325 390 542 1326 635 560 1323 635 560 1323 390 542 1326 494 561 1327 364 477 1273 454 476 1272 494 561 1327 494 561 1327 454 476 1272 635 560 1323 491 552 1321 389 551 1320 636 563 1329 636 563 1329 389 551 1320 495 562 1328 392 564 1330 508 565 1331 495 562 1328 495 562 1328 508 565 1331 636 563 1329 508 565 1331 391 544 1324 636 563 1329 636 563 1329 391 544 1324 493 559 1322 365 475 1271 491 552 1321 493 559 1322 493 559 1322 491 552 1321 636 563 1329 406 567 243 573 568 244 496 566 242 496 566 242 573 568 244 658 569 245 574 558 241 403 557 240 658 569 245 658 569 245 403 557 240 496 566 242 2087 571 1333 2088 572 1334 651 570 1332 651 570 1332 2088 572 1334 552 573 1335 497 574 1336 378 514 1310 637 575 1337 637 575 1337 378 514 1310 474 513 1309 375 504 1300 498 576 1338 474 513 1309 474 513 1309 498 576 1338 637 575 1337 498 576 211 394 577 212 637 575 214 637 575 214 394 577 212 499 578 213 395 579 215 497 574 216 499 578 213 499 578 213 497 574 216 637 575 214 397 580 1339 396 581 1340 500 583 1342 500 583 1342 396 581 1340 501 582 1341 373 499 1295 372 498 1294 501 582 1341 501 582 1341 372 498 1294 500 583 1342 502 584 1343 374 512 1308 638 585 1344 638 585 1344 374 512 1308 473 511 1307 376 510 1306 503 586 1345 473 511 1307 473 511 1307 503 586 1345 638 585 1344 503 586 1345 397 580 1339 638 585 1344 638 585 1344 397 580 1339 500 583 1342 372 498 1294 502 584 1343 500 583 1342 500 583 1342 502 584 1343 638 585 1344 470 503 1299 373 499 1295 505 587 1346 505 587 1346 373 499 1295 501 582 1341 396 581 1340 504 588 1347 501 582 1341 501 582 1341 504 588 1347 505 587 1346 609 589 1348 1966 509 1305 380 521 1317 380 521 1317 1966 509 1305 377 508 1304 398 590 1349 376 510 1306 609 589 1348 609 589 1348 376 510 1306 1966 509 1305 506 591 217 384 528 178 639 592 218 639 592 218 384 528 178 480 527 176 382 526 175 507 593 219 480 527 176 480 527 176 507 593 219 639 592 218 507 593 219 395 579 215 639 592 218 639 592 218 395 579 215 499 578 213 394 577 212 506 591 217 499 578 213 499 578 213 506 591 217 639 592 218 508 565 192 392 564 193 640 595 195 640 595 195 392 564 193 509 594 194 400 596 196 510 597 197 509 594 194 509 594 194 510 597 197 640 595 195 510 597 197 388 547 190 640 595 195 640 595 195 388 547 190 488 545 188 391 544 187 508 565 192 488 545 188 488 545 188 508 565 192 640 595 195 506 591 217 394 577 212 641 599 227 641 599 227 394 577 212 538 598 226 387 540 183 486 539 182 538 598 198 538 598 198 486 539 182 641 599 199 383 530 167 481 529 166 486 539 182 486 539 182 481 529 166 641 599 199 481 529 179 384 528 178 641 599 227 641 599 227 384 528 178 506 591 217 388 547 190 510 597 197 489 548 191 489 548 191 510 597 197 642 600 220 510 597 197 400 596 196 642 600 220 642 600 220 400 596 196 512 601 221 385 532 169 482 531 168 512 601 221 512 601 221 482 531 168 642 600 220 482 531 168 386 536 173 642 600 220 642 600 220 386 536 173 489 548 191 504 588 1347 396 581 1340 620 603 1351 620 603 1351 396 581 1340 513 602 1350 429 604 1352 621 605 1353 513 602 1350 513 602 1350 621 605 1353 620 603 1351 398 590 1349 516 607 1355 515 606 1354 515 606 1354 516 607 1355 643 608 1356 516 607 1355 427 609 1357 643 608 1356 643 608 1356 427 609 1357 618 610 1358 618 610 1358 428 611 1359 643 608 1356 643 608 1356 428 611 1359 617 612 1360 617 612 1360 397 580 1339 643 608 1356 643 608 1356 397 580 1339 515 606 1354 428 611 1359 429 604 1352 617 612 1360 617 612 1360 429 604 1352 513 602 1350 396 581 1340 397 580 1339 513 602 1350 513 602 1350 397 580 1339 617 612 1360 516 607 1355 398 590 1349 644 613 1361 644 613 1361 398 590 1349 609 589 1348 380 521 1317 610 614 1362 609 589 1348 609 589 1348 610 614 1362 644 613 1361 610 614 1362 426 615 1363 644 613 1361 644 613 1361 426 615 1363 616 616 1364 427 609 1357 516 607 1355 616 616 1364 616 616 1364 516 607 1355 644 613 1361 357 453 1249 520 617 1365 442 454 1250 442 454 1250 520 617 1365 519 618 1366 521 619 1367 401 620 1368 645 622 1370 645 622 1370 401 620 1368 522 621 1369 442 454 1250 519 618 1366 522 621 1369 522 621 1369 519 618 1366 645 622 1370 353 440 1236 579 623 1371 437 441 1237 437 441 1237 579 623 1371 661 624 1372 520 617 1365 357 453 1249 523 625 1373 523 625 1373 357 453 1249 361 465 1261 401 620 1368 524 626 1374 522 621 1369 522 621 1369 524 626 1374 646 627 1375 524 626 1374 402 628 1376 646 627 1375 646 627 1375 402 628 1376 525 629 1377 355 449 1245 443 452 1248 525 629 1377 525 629 1377 443 452 1248 646 627 1375 443 452 1248 442 454 1250 646 627 1375 646 627 1375 442 454 1250 522 621 1369 579 623 1371 353 440 1236 660 630 1378 660 630 1378 353 440 1236 444 455 1251 358 460 1256 578 631 1379 444 455 1251 444 455 1251 578 631 1379 660 630 1378 526 632 2273 409 633 247 647 635 2268 647 635 2268 409 633 247 527 634 248 404 636 250 528 637 251 527 634 248 527 634 248 528 637 251 647 635 2268 410 638 1381 529 639 1382 528 637 1380 528 637 1380 529 639 1382 647 635 1383 529 639 1382 408 640 1384 647 635 1383 647 635 1383 408 640 1384 526 632 1385 528 637 251 404 636 250 648 642 2269 648 642 2269 404 636 250 530 641 255 407 643 257 531 644 258 530 641 255 530 641 255 531 644 258 648 642 2269 531 644 1386 411 645 1387 648 642 1389 648 642 1389 411 645 1387 532 646 1388 532 646 1388 410 638 1381 648 642 1389 648 642 1389 410 638 1381 528 637 1380 531 644 258 407 643 257 649 648 2272 649 648 2272 407 643 257 533 647 261 533 647 261 412 649 263 649 648 2272 649 648 2272 412 649 263 534 650 264 534 650 1390 413 651 1391 649 648 1393 649 648 1393 413 651 1391 535 652 1392 411 645 1387 531 644 1386 535 652 1392 535 652 1392 531 644 1386 649 648 1393 374 512 1308 502 584 1343 393 653 1394 393 653 1394 502 584 1343 537 654 1395 502 584 1343 372 498 1294 537 654 1395 537 654 1395 372 498 1294 628 501 1297 371 492 1288 536 655 1396 628 501 1297 628 501 1297 536 655 1396 537 654 1395 376 510 1306 398 590 1349 503 586 1345 503 586 1345 398 590 1349 515 606 1354 515 606 1354 397 580 1339 503 586 1345 536 655 1396 371 492 1288 540 656 1397 540 656 1397 371 492 1288 465 495 1291 369 486 1282 539 657 1398 465 495 1291 465 495 1291 539 657 1398 540 656 1397 539 657 1398 369 486 1282 542 658 1399 542 658 1399 369 486 1282 461 489 1285 461 489 1285 367 482 1278 542 658 1399 542 658 1399 367 482 1278 541 659 1400 367 482 1278 458 481 1277 541 659 1400 541 659 1400 458 481 1277 544 660 1401 458 481 1277 362 468 1264 544 660 1401 544 660 1401 362 468 1264 543 661 1402 402 628 1376 545 662 1403 525 629 1377 525 629 1377 545 662 1403 546 663 1404 362 468 1264 451 471 1267 543 661 1402 543 661 1402 451 471 1267 546 663 1404 451 471 1267 355 449 1245 546 663 1404 546 663 1404 355 449 1245 525 629 1377 578 631 1379 358 460 1256 577 664 1405 577 664 1405 358 460 1256 452 472 1268 364 477 1273 547 665 1406 452 472 1268 452 472 1268 547 665 1406 577 664 1405 547 665 1406 364 477 1273 549 666 1407 549 666 1407 364 477 1273 494 561 1327 390 542 1326 548 667 1408 494 561 1327 494 561 1327 548 667 1408 549 666 1407 387 540 1410 550 668 1411 511 541 1409 511 541 1409 550 668 1411 551 669 1412 548 667 1408 390 542 1326 551 669 1412 551 669 1412 390 542 1326 511 541 1409 387 540 1410 538 598 1413 550 668 1411 550 668 1411 538 598 1413 650 670 1414 538 598 1413 394 577 1415 650 670 1414 650 670 1414 394 577 1415 552 573 1335 406 567 243 553 671 267 573 568 244 573 568 244 553 671 267 657 672 268 572 673 269 657 672 268 414 674 270 414 674 270 657 672 268 553 671 267 394 577 1415 498 576 1338 552 573 1335 552 573 1335 498 576 1338 651 570 1332 1945 675 1416 651 570 1332 1964 507 1303 651 570 1332 498 576 1338 1964 507 1303 498 576 1338 375 504 1300 1964 507 1303 548 667 1408 2091 676 1417 549 666 1407 549 666 1407 2091 676 1417 2092 677 1418 663 679 272 652 680 273 580 678 271 580 678 271 652 680 273 554 681 274 582 682 275 555 683 276 663 679 272 663 679 272 555 683 276 652 680 273 2093 684 1419 547 665 1406 2092 677 1418 2092 677 1418 547 665 1406 549 666 1407 550 668 1411 2095 685 1420 551 669 1412 551 669 1412 2095 685 1420 2090 686 1421 662 688 278 653 689 279 581 687 277 581 687 277 653 689 279 556 690 280 580 678 271 554 681 274 662 688 278 662 688 278 554 681 274 653 689 279 2091 676 1417 548 667 1408 2090 686 1421 2090 686 1421 548 667 1408 551 669 1412 546 663 1404 545 662 1403 2098 692 1423 2098 692 1423 545 662 1403 2097 691 1422 584 693 281 667 694 282 557 696 284 557 696 284 667 694 282 654 695 2270 667 694 1424 586 697 1425 654 695 1427 654 695 1427 586 697 1425 558 698 1426 543 661 1402 546 663 1404 2099 699 1428 2099 699 1428 546 663 1404 2098 692 1423 547 665 1406 2093 684 1419 577 664 1405 577 664 1405 2093 684 1419 2094 700 1429 665 701 287 2060 702 288 582 682 275 582 682 275 2060 702 288 555 683 276 544 660 1401 543 661 1402 2100 703 1430 2100 703 1430 543 661 1402 2099 699 1428 586 697 1425 666 704 1431 558 698 1426 558 698 1426 666 704 1431 2061 705 1432 666 704 1431 585 706 1433 2061 705 1432 2061 705 1432 585 706 1433 559 707 1434 541 659 1400 544 660 1401 2101 708 1435 2101 708 1435 544 660 1401 2100 703 1430 542 658 1399 541 659 1400 2102 709 1436 2102 709 1436 541 659 1400 2101 708 1435 585 706 1433 668 710 1437 559 707 1434 559 707 1434 668 710 1437 2062 711 1438 587 712 1439 560 713 1440 668 710 1437 668 710 1437 560 713 1440 2062 711 1438 2103 714 1441 539 657 1398 2102 709 1436 2102 709 1436 539 657 1398 542 658 1399 536 655 1396 2105 715 1442 537 654 1395 537 654 1395 2105 715 1442 2106 716 1443 670 718 1445 655 719 1446 588 717 1444 588 717 1444 655 719 1446 561 720 1447 589 721 301 562 722 302 670 718 2275 670 718 2275 562 722 302 655 719 299 2107 723 1448 393 653 1394 2106 716 1443 2106 716 1443 393 653 1394 537 654 1395 539 657 1398 2103 714 1441 540 656 1397 540 656 1397 2103 714 1441 2104 724 1449 669 725 1450 2063 726 1451 587 712 1439 587 712 1439 2063 726 1451 560 713 1440 588 717 1444 561 720 1447 669 725 1450 669 725 1450 561 720 1447 2063 726 1451 2105 715 1442 536 655 1396 2104 724 1449 2104 724 1449 536 655 1396 540 656 1397 650 670 1414 552 573 1335 2089 727 1452 2089 727 1452 552 573 1335 2088 572 1334 583 728 305 664 729 306 2058 731 308 2058 731 308 664 729 306 2059 730 307 664 729 306 581 687 277 2059 730 307 2059 730 307 581 687 277 556 690 280 550 668 1411 650 670 1414 2095 685 1420 2095 685 1420 650 670 1414 2089 727 1452 671 732 309 583 728 305 656 733 310 656 733 310 583 728 305 2058 731 308 1947 734 311 671 732 309 1946 735 970 1946 735 970 671 732 309 656 733 310 416 737 972 403 557 240 563 736 971 563 736 971 403 557 240 492 555 238 563 736 971 492 555 238 417 738 973 417 738 973 492 555 238 405 554 237 415 740 975 406 567 243 564 739 974 564 739 974 406 567 243 496 566 242 564 739 974 496 566 242 416 737 972 416 737 972 496 566 242 403 557 240 565 741 2274 419 742 977 526 632 2273 526 632 2273 419 742 977 409 633 247 526 632 1385 408 640 1384 565 741 1453 565 741 1453 408 640 1384 420 743 1454 417 738 973 405 554 237 576 744 979 576 744 979 405 554 237 575 553 236 566 745 1455 420 743 1454 529 639 1382 529 639 1382 420 743 1454 408 640 1384 529 639 1382 410 638 1381 566 745 1455 566 745 1455 410 638 1381 421 746 1456 567 747 1457 421 746 1456 532 646 1388 532 646 1388 421 746 1456 410 638 1381 567 747 1457 532 646 1388 422 748 1458 422 748 1458 532 646 1388 411 645 1387 423 750 1460 413 651 1391 568 749 1459 568 749 1459 413 651 1391 534 650 1390 568 749 984 534 650 264 424 751 986 424 751 986 534 650 264 412 649 263 422 748 1458 411 645 1387 569 752 1461 569 752 1461 411 645 1387 535 652 1392 569 752 1461 535 652 1392 423 750 1460 423 750 1460 535 652 1392 413 651 1391 570 753 988 418 754 989 553 671 267 553 671 267 418 754 989 414 674 270 553 671 267 406 567 243 570 753 988 570 753 988 406 567 243 415 740 975 418 754 989 571 755 990 414 674 270 414 674 270 571 755 990 572 673 269 571 755 990 1963 756 991 572 673 269 572 673 269 1963 756 991 1962 757 992 424 751 986 412 649 263 1963 756 991 1963 756 991 412 649 263 1962 757 992 657 672 268 572 673 269 1961 758 993 1961 758 993 572 673 269 1962 757 992 407 643 257 1960 759 994 533 647 261 533 647 261 1960 759 994 1961 758 993 573 568 244 1960 759 994 658 569 245 658 569 245 1960 759 994 1959 760 995 404 636 250 1958 761 996 530 641 255 530 641 255 1958 761 996 1959 760 995 574 558 241 1958 761 996 659 556 239 659 556 239 1958 761 996 1957 762 997 409 633 247 1956 763 998 527 634 248 527 634 248 1956 763 998 1957 762 997 576 744 979 575 553 236 1955 764 999 1955 764 999 575 553 236 1956 763 998 419 742 977 1955 764 999 409 633 247 409 633 247 1955 764 999 1956 763 998 2060 702 288 665 701 287 1953 766 1001 1953 766 1001 665 701 287 1954 765 1000 545 662 1403 1952 767 1462 2097 691 1422 2097 691 1422 1952 767 1462 2096 768 1463 402 628 1376 1951 769 1464 545 662 1403 545 662 1403 1951 769 1464 1952 767 1462 578 631 1379 1951 769 1464 660 630 1378 660 630 1378 1951 769 1464 1950 770 1465 524 626 1374 401 620 1368 1950 770 1465 1950 770 1465 401 620 1368 1949 771 1466 579 623 1371 1949 771 1466 661 624 1372 661 624 1372 1949 771 1466 1948 772 1467 416 737 972 580 678 271 564 739 974 564 739 974 580 678 271 662 688 278 581 687 277 415 740 975 662 688 278 662 688 278 415 740 975 564 739 974 582 682 275 417 738 973 665 701 287 665 701 287 417 738 973 576 744 979 580 678 271 416 737 972 663 679 272 663 679 272 416 737 972 563 736 971 417 738 973 582 682 275 563 736 971 563 736 971 582 682 275 663 679 272 570 753 988 415 740 975 664 729 306 664 729 306 415 740 975 581 687 277 418 754 989 570 753 988 583 728 305 583 728 305 570 753 988 664 729 306 665 701 287 576 744 979 1954 765 1000 1954 765 1000 576 744 979 1955 764 999 1954 765 1000 584 693 281 1953 766 1001 1953 766 1001 584 693 281 557 696 284 566 745 1455 421 746 1456 666 704 1431 666 704 1431 421 746 1456 585 706 1433 420 743 1454 566 745 1455 586 697 1425 586 697 1425 566 745 1455 666 704 1431 419 742 977 565 741 2274 584 693 281 584 693 281 565 741 2274 667 694 282 565 741 1453 420 743 1454 667 694 1424 667 694 1424 420 743 1454 586 697 1425 421 746 1456 567 747 1457 585 706 1433 585 706 1433 567 747 1457 668 710 1437 422 748 1458 587 712 1439 567 747 1457 567 747 1457 587 712 1439 668 710 1437 587 712 1439 422 748 1458 669 725 1450 669 725 1450 422 748 1458 569 752 1461 423 750 1460 588 717 1444 569 752 1461 569 752 1461 588 717 1444 669 725 1450 1947 734 311 1946 735 970 589 721 301 589 721 301 1946 735 970 562 722 302 589 721 301 424 751 986 1947 734 311 1947 734 311 424 751 986 1963 756 991 588 717 1444 423 750 1460 670 718 1445 670 718 1445 423 750 1460 568 749 1459 424 751 986 589 721 301 568 749 984 568 749 984 589 721 301 670 718 2275 571 755 990 418 754 989 671 732 309 671 732 309 418 754 989 583 728 305 590 773 1468 354 448 1244 672 774 1469 672 774 1469 354 448 1244 440 447 1243 354 448 1244 590 773 1468 447 462 1258 447 462 1258 590 773 1468 673 775 1470 591 776 1471 360 463 1259 673 775 1470 673 775 1470 360 463 1259 447 462 1258 626 466 1262 449 467 1263 674 381 1192 674 381 1192 449 467 1263 592 382 1193 361 465 1261 626 466 1262 593 383 1194 593 383 1194 626 466 1262 674 381 1192 456 478 1274 455 479 1275 675 384 1195 675 384 1195 455 479 1275 594 385 1196 449 467 1263 456 478 1274 592 382 1193 592 382 1193 456 478 1274 675 384 1195 459 485 1281 595 387 1198 460 484 1280 460 484 1280 595 387 1198 676 386 1197 455 479 1275 460 484 1280 594 385 1196 594 385 1196 460 484 1280 676 386 1197 463 491 1287 596 389 1200 464 490 1286 464 490 1286 596 389 1200 677 388 1199 595 387 1198 459 485 1281 677 388 1199 677 388 1199 459 485 1281 464 490 1286 467 497 1293 597 391 1202 468 496 1292 468 496 1292 597 391 1202 678 390 1201 596 389 1200 463 491 1287 678 390 1201 678 390 1201 463 491 1287 468 496 1292 470 503 1299 598 393 1204 471 502 1298 471 502 1298 598 393 1204 679 392 1203 597 391 1202 467 497 1293 679 392 1203 679 392 1203 467 497 1293 471 502 1298 475 515 1311 378 514 1310 680 396 1207 680 396 1207 378 514 1310 599 397 1208 379 517 1313 475 515 1311 600 399 1210 600 399 1210 475 515 1311 680 396 1207 379 517 1313 600 399 1210 399 519 1315 399 519 1315 600 399 1210 608 401 1212 381 523 163 601 777 222 479 524 164 479 524 164 601 777 222 681 405 223 602 404 148 382 526 175 681 405 149 681 405 149 382 526 175 479 524 174 385 532 169 603 778 224 483 533 170 483 533 170 603 778 224 682 779 225 601 777 222 381 523 163 682 779 225 682 779 225 381 523 163 483 533 170 360 463 1259 591 776 1471 490 550 1319 490 550 1319 591 776 1471 683 780 1472 604 411 1215 389 551 1320 683 780 1472 683 780 1472 389 551 1320 490 550 1319 389 551 1320 604 411 1215 495 562 1328 495 562 1328 604 411 1215 684 410 1214 606 781 1473 392 564 1330 684 410 1214 684 410 1214 392 564 1330 495 562 1328 395 579 215 605 417 159 497 574 216 497 574 216 605 417 159 685 416 158 599 397 1208 378 514 1310 685 416 1219 685 416 1219 378 514 1310 497 574 1336 504 588 1347 1970 419 1221 505 587 1346 505 587 1346 1970 419 1221 1971 418 1220 505 587 1346 1971 418 1220 470 503 1299 470 503 1299 1971 418 1220 598 393 1204 507 593 219 382 526 175 686 421 161 686 421 161 382 526 175 602 404 148 395 579 215 507 593 219 605 417 159 605 417 159 507 593 219 686 421 161 392 564 193 606 781 228 509 594 194 509 594 194 606 781 228 687 782 229 607 783 230 400 596 196 687 782 229 687 782 229 400 596 196 509 594 194 400 596 196 607 783 230 512 601 221 512 601 221 607 783 230 688 784 231 603 778 224 385 532 169 688 784 231 688 784 231 385 532 169 512 601 221 621 605 1353 1968 427 1223 620 603 1351 620 603 1351 1968 427 1223 1969 426 1222 620 603 1351 1969 426 1222 504 588 1347 504 588 1347 1969 426 1222 1970 419 1221 399 519 1315 608 401 1212 518 785 1474 518 785 1474 608 401 1212 689 429 1225 612 431 1227 425 786 1475 689 429 1225 689 429 1225 425 786 1475 518 785 1474 523 625 1373 361 465 1261 690 432 1228 690 432 1228 361 465 1261 593 383 1194 380 521 1317 477 520 1316 610 614 1362 610 614 1362 477 520 1316 691 787 1476 477 520 1316 399 519 1315 691 787 1476 691 787 1476 399 519 1315 518 785 1474 425 786 1475 614 788 1477 518 785 1474 518 785 1474 614 788 1477 691 787 1476 614 788 1477 426 615 1363 691 787 1476 691 787 1476 426 615 1363 610 614 1362 425 786 1475 612 431 1227 611 789 1478 611 789 1478 612 431 1227 692 434 1230 350 790 1479 611 789 1478 434 436 1232 434 436 1232 611 789 1478 692 434 1230 426 615 1363 614 788 1477 613 791 1480 613 791 1480 614 788 1477 693 792 1481 614 788 1477 425 786 1475 693 792 1481 693 792 1481 425 786 1475 611 789 1478 350 790 1479 433 793 1482 611 789 1478 611 789 1478 433 793 1482 693 792 1481 349 794 1483 613 791 1480 433 793 1482 433 793 1482 613 791 1480 693 792 1481 615 795 1484 427 609 1357 694 796 1485 694 796 1485 427 609 1357 616 616 1364 616 616 1364 426 615 1363 694 796 1485 694 796 1485 426 615 1363 613 791 1480 349 794 1483 432 797 1486 613 791 1480 613 791 1480 432 797 1486 694 796 1485 432 797 1486 348 798 1487 694 796 1485 694 796 1485 348 798 1487 615 795 1484 618 610 1358 427 609 1357 695 799 1488 695 799 1488 427 609 1357 615 795 1484 348 798 1487 431 800 1489 615 795 1484 615 795 1484 431 800 1489 695 799 1488 431 800 1489 347 801 1490 695 799 1488 695 799 1488 347 801 1490 517 802 1491 428 611 1359 618 610 1358 517 802 1491 517 802 1491 618 610 1358 695 799 1488 347 801 1490 351 803 1492 517 802 1491 517 802 1491 351 803 1492 619 804 1493 429 604 1352 428 611 1359 619 804 1493 619 804 1493 428 611 1359 517 802 1491 621 605 1353 429 604 1352 514 805 1494 514 805 1494 429 604 1352 619 804 1493 351 803 1492 430 806 1495 619 804 1493 619 804 1493 430 806 1495 514 805 1494 1968 427 1223 621 605 1353 1967 437 1233 1967 437 1233 621 605 1353 514 805 1494 430 806 1495 435 438 1234 514 805 1494 514 805 1494 435 438 1234 1967 437 1233 697 808 1497 710 809 1498 696 807 1496 696 807 1496 710 809 1498 709 810 1499 698 811 1500 711 812 1501 697 808 1497 697 808 1497 711 812 1501 710 809 1498 699 813 1502 712 814 1503 698 811 1500 698 811 1500 712 814 1503 711 812 1501 700 815 1504 713 816 1505 699 813 1502 699 813 1502 713 816 1505 712 814 1503 701 817 1506 714 818 1507 700 815 1504 700 815 1504 714 818 1507 713 816 1505 702 819 1508 715 820 1509 701 817 1506 701 817 1506 715 820 1509 714 818 1507 703 821 1510 716 822 1511 702 819 1508 702 819 1508 716 822 1511 715 820 1509 704 823 1512 717 824 1513 703 821 1510 703 821 1510 717 824 1513 716 822 1511 704 823 1512 705 825 1514 717 824 1513 717 824 1513 705 825 1514 718 826 1515 705 825 1514 706 827 1516 718 826 1515 718 826 1515 706 827 1516 719 828 1517 707 829 1518 720 830 1519 706 827 1516 706 827 1516 720 830 1519 719 828 1517 1331 831 1520 721 832 1521 707 829 1518 707 829 1518 721 832 1521 720 830 1519 708 833 1522 722 834 1523 1980 836 1525 1980 836 1525 722 834 1523 1979 835 1524 710 809 1498 724 837 1526 709 810 1499 709 810 1499 724 837 1526 723 838 1527 711 812 1501 725 839 1528 710 809 1498 710 809 1498 725 839 1528 724 837 1526 712 814 1503 726 840 1529 711 812 1501 711 812 1501 726 840 1529 725 839 1528 713 816 1505 727 841 1530 712 814 1503 712 814 1503 727 841 1530 726 840 1529 714 818 1507 728 842 1531 713 816 1505 713 816 1505 728 842 1531 727 841 1530 715 820 1509 729 843 1532 714 818 1507 714 818 1507 729 843 1532 728 842 1531 716 822 1511 730 844 1533 715 820 1509 715 820 1509 730 844 1533 729 843 1532 717 824 1513 731 845 1534 716 822 1511 716 822 1511 731 845 1534 730 844 1533 717 824 1513 718 826 1515 731 845 1534 731 845 1534 718 826 1515 732 846 1535 718 826 1515 719 828 1517 732 846 1535 732 846 1535 719 828 1517 733 847 1536 720 830 1519 734 848 1537 719 828 1517 719 828 1517 734 848 1537 733 847 1536 1333 849 1538 721 832 1521 1982 850 1539 1982 850 1539 721 832 1521 1979 835 1524 724 837 1526 737 851 1540 723 838 1527 723 838 1527 737 851 1540 736 852 1541 725 839 1528 738 853 1542 724 837 1526 724 837 1526 738 853 1542 737 851 1540 726 840 1529 739 854 1543 725 839 1528 725 839 1528 739 854 1543 738 853 1542 727 841 1530 740 855 1544 726 840 1529 726 840 1529 740 855 1544 739 854 1543 728 842 1531 741 856 1545 727 841 1530 727 841 1530 741 856 1545 740 855 1544 729 843 1532 742 857 1546 728 842 1531 728 842 1531 742 857 1546 741 856 1545 730 844 1533 743 858 1547 729 843 1532 729 843 1532 743 858 1547 742 857 1546 731 845 1534 744 859 1548 730 844 1533 730 844 1533 744 859 1548 743 858 1547 731 845 1534 732 846 1535 744 859 1548 744 859 1548 732 846 1535 745 860 1549 733 847 1536 746 861 1550 732 846 1535 732 846 1535 746 861 1550 745 860 1549 734 848 1537 747 862 1551 733 847 1536 733 847 1536 747 862 1551 746 861 1550 1334 863 1552 1333 849 1538 1983 864 1553 1983 864 1553 1333 849 1538 1982 850 1539 736 852 1541 737 851 1540 749 866 1555 749 866 1555 737 851 1540 750 865 1554 738 853 1542 751 867 1556 737 851 1540 737 851 1540 751 867 1556 750 865 1554 739 854 1543 752 868 1557 738 853 1542 738 853 1542 752 868 1557 751 867 1556 740 855 1544 753 869 1558 739 854 1543 739 854 1543 753 869 1558 752 868 1557 741 856 1545 754 870 1559 740 855 1544 740 855 1544 754 870 1559 753 869 1558 742 857 1546 755 871 1560 741 856 1545 741 856 1545 755 871 1560 754 870 1559 743 858 1547 756 872 1561 742 857 1546 742 857 1546 756 872 1561 755 871 1560 744 859 1548 757 873 1562 743 858 1547 743 858 1547 757 873 1562 756 872 1561 744 859 1548 745 860 1549 757 873 1562 757 873 1562 745 860 1549 758 874 1563 746 861 1550 759 875 1564 745 860 1549 745 860 1549 759 875 1564 758 874 1563 747 862 1551 760 876 1565 746 861 1550 746 861 1550 760 876 1565 759 875 1564 1335 877 1566 1334 863 1552 1984 878 1567 1984 878 1567 1334 863 1552 1983 864 1553 749 866 1555 750 865 1554 762 880 1569 762 880 1569 750 865 1554 763 879 1568 751 867 1556 764 881 1570 750 865 1554 750 865 1554 764 881 1570 763 879 1568 752 868 1557 765 882 1571 751 867 1556 751 867 1556 765 882 1571 764 881 1570 753 869 1558 766 883 1572 752 868 1557 752 868 1557 766 883 1572 765 882 1571 754 870 1559 767 884 1573 753 869 1558 753 869 1558 767 884 1573 766 883 1572 755 871 1560 768 885 1574 754 870 1559 754 870 1559 768 885 1574 767 884 1573 756 872 1561 769 886 1575 755 871 1560 755 871 1560 769 886 1575 768 885 1574 757 873 1562 770 887 1576 756 872 1561 756 872 1561 770 887 1576 769 886 1575 757 873 1562 758 874 1563 770 887 1576 770 887 1576 758 874 1563 771 888 1577 759 875 1564 772 889 1578 758 874 1563 758 874 1563 772 889 1578 771 888 1577 760 876 1565 773 890 1579 759 875 1564 759 875 1564 773 890 1579 772 889 1578 1336 891 1580 1335 877 1566 1981 892 1581 1981 892 1581 1335 877 1566 1984 878 1567 762 880 1569 763 879 1568 775 894 1583 775 894 1583 763 879 1568 776 893 1582 764 881 1570 777 895 1584 763 879 1568 763 879 1568 777 895 1584 776 893 1582 765 882 1571 778 896 1585 764 881 1570 764 881 1570 778 896 1585 777 895 1584 766 883 1572 779 897 1586 765 882 1571 765 882 1571 779 897 1586 778 896 1585 767 884 1573 780 898 1587 766 883 1572 766 883 1572 780 898 1587 779 897 1586 768 885 1574 781 899 1588 767 884 1573 767 884 1573 781 899 1588 780 898 1587 769 886 1575 782 900 1589 768 885 1574 768 885 1574 782 900 1589 781 899 1588 770 887 1576 783 901 1590 769 886 1575 769 886 1575 783 901 1590 782 900 1589 770 887 1576 771 888 1577 783 901 1590 783 901 1590 771 888 1577 784 902 1591 771 888 1577 772 889 1578 784 902 1591 784 902 1591 772 889 1578 785 903 1592 773 890 1579 786 904 1593 772 889 1578 772 889 1578 786 904 1593 785 903 1592 2 361 1172 1336 891 1580 87 359 1170 87 359 1170 1336 891 1580 1981 892 1581 775 894 1583 776 893 1582 787 906 1595 787 906 1595 776 893 1582 788 905 1594 777 895 1584 789 907 1596 776 893 1582 776 893 1582 789 907 1596 788 905 1594 778 896 1585 790 908 1597 777 895 1584 777 895 1584 790 908 1597 789 907 1596 779 897 1586 791 909 1598 778 896 1585 778 896 1585 791 909 1598 790 908 1597 780 898 1587 792 910 1599 779 897 1586 779 897 1586 792 910 1599 791 909 1598 781 899 1588 793 911 1600 780 898 1587 780 898 1587 793 911 1600 792 910 1599 782 900 1589 794 912 1601 781 899 1588 781 899 1588 794 912 1601 793 911 1600 783 901 1590 795 913 1602 782 900 1589 782 900 1589 795 913 1602 794 912 1601 783 901 1590 784 902 1591 795 913 1602 795 913 1602 784 902 1591 796 914 1603 784 902 1591 785 903 1592 796 914 1603 796 914 1603 785 903 1592 797 915 1604 786 904 1593 798 916 1605 785 903 1592 785 903 1592 798 916 1605 797 915 1604 787 906 1595 788 905 1594 799 918 1607 799 918 1607 788 905 1594 800 917 1606 789 907 1596 801 919 1608 788 905 1594 788 905 1594 801 919 1608 800 917 1606 790 908 1597 802 920 1609 789 907 1596 789 907 1596 802 920 1609 801 919 1608 791 909 1598 803 921 1610 790 908 1597 790 908 1597 803 921 1610 802 920 1609 792 910 1599 804 922 1611 791 909 1598 791 909 1598 804 922 1611 803 921 1610 793 911 1600 805 923 1612 792 910 1599 792 910 1599 805 923 1612 804 922 1611 794 912 1601 806 924 1613 793 911 1600 793 911 1600 806 924 1613 805 923 1612 795 913 1602 807 925 1614 794 912 1601 794 912 1601 807 925 1614 806 924 1613 795 913 1602 796 914 1603 807 925 1614 807 925 1614 796 914 1603 808 926 1615 796 914 1603 797 915 1604 808 926 1615 808 926 1615 797 915 1604 809 927 1616 798 916 1605 810 928 1617 797 915 1604 797 915 1604 810 928 1617 809 927 1616 799 918 1607 800 917 1606 811 930 1619 811 930 1619 800 917 1606 812 929 1618 801 919 1608 813 931 1620 800 917 1606 800 917 1606 813 931 1620 812 929 1618 802 920 1609 814 932 1621 801 919 1608 801 919 1608 814 932 1621 813 931 1620 803 921 1610 815 933 1622 802 920 1609 802 920 1609 815 933 1622 814 932 1621 804 922 1611 816 934 1623 803 921 1610 803 921 1610 816 934 1623 815 933 1622 805 923 1612 817 935 1624 804 922 1611 804 922 1611 817 935 1624 816 934 1623 806 924 1613 818 936 1625 805 923 1612 805 923 1612 818 936 1625 817 935 1624 807 925 1614 819 937 1626 806 924 1613 806 924 1613 819 937 1626 818 936 1625 807 925 1614 808 926 1615 819 937 1626 819 937 1626 808 926 1615 820 938 1627 808 926 1615 809 927 1616 820 938 1627 820 938 1627 809 927 1616 821 939 1628 810 928 1617 822 940 1629 809 927 1616 809 927 1616 822 940 1629 821 939 1628 811 930 1619 812 929 1618 823 942 1631 823 942 1631 812 929 1618 824 941 1630 813 931 1620 825 943 1632 812 929 1618 812 929 1618 825 943 1632 824 941 1630 814 932 1621 826 944 1633 813 931 1620 813 931 1620 826 944 1633 825 943 1632 815 933 1622 827 945 1634 814 932 1621 814 932 1621 827 945 1634 826 944 1633 816 934 1623 828 946 1635 815 933 1622 815 933 1622 828 946 1635 827 945 1634 817 935 1624 829 947 1636 816 934 1623 816 934 1623 829 947 1636 828 946 1635 818 936 1625 830 948 1637 817 935 1624 817 935 1624 830 948 1637 829 947 1636 818 936 1625 819 937 1626 830 948 1637 830 948 1637 819 937 1626 831 949 1638 819 937 1626 820 938 1627 831 949 1638 831 949 1638 820 938 1627 832 950 1639 820 938 1627 821 939 1628 832 950 1639 832 950 1639 821 939 1628 833 951 1640 821 939 1628 822 940 1629 833 951 1640 833 951 1640 822 940 1629 834 952 1641 823 942 1631 824 941 1630 846 954 1643 846 954 1643 824 941 1630 835 953 1642 825 943 1632 836 955 1644 824 941 1630 824 941 1630 836 955 1644 835 953 1642 826 944 1633 837 956 1645 825 943 1632 825 943 1632 837 956 1645 836 955 1644 827 945 1634 838 957 1646 826 944 1633 826 944 1633 838 957 1646 837 956 1645 828 946 1635 839 958 1647 827 945 1634 827 945 1634 839 958 1647 838 957 1646 829 947 1636 840 959 1648 828 946 1635 828 946 1635 840 959 1648 839 958 1647 830 948 1637 841 960 1649 829 947 1636 829 947 1636 841 960 1649 840 959 1648 830 948 1637 831 949 1638 841 960 1649 841 960 1649 831 949 1638 842 961 1650 831 949 1638 832 950 1639 842 961 1650 842 961 1650 832 950 1639 843 962 1651 833 951 1640 844 963 1652 832 950 1639 832 950 1639 844 963 1652 843 962 1651 833 951 1640 834 952 1641 844 963 1652 844 963 1652 834 952 1641 845 964 1653 846 954 1643 835 953 1642 847 966 1655 847 966 1655 835 953 1642 848 965 1654 835 953 1642 836 955 1644 848 965 1654 848 965 1654 836 955 1644 849 967 1656 836 955 1644 837 956 1645 849 967 1656 849 967 1656 837 956 1645 850 968 1657 837 956 1645 838 957 1646 850 968 1657 850 968 1657 838 957 1646 851 969 1658 839 958 1647 852 970 1659 838 957 1646 838 957 1646 852 970 1659 851 969 1658 840 959 1648 853 971 1660 839 958 1647 839 958 1647 853 971 1660 852 970 1659 841 960 1649 854 972 1661 840 959 1648 840 959 1648 854 972 1661 853 971 1660 841 960 1649 842 961 1650 854 972 1661 854 972 1661 842 961 1650 855 973 1662 843 962 1651 856 974 1663 842 961 1650 842 961 1650 856 974 1663 855 973 1662 844 963 1652 857 975 1664 843 962 1651 843 962 1651 857 975 1664 856 974 1663 845 964 1653 858 976 1665 844 963 1652 844 963 1652 858 976 1665 857 975 1664 847 966 1655 848 965 1654 859 978 1667 859 978 1667 848 965 1654 860 977 1666 848 965 1654 849 967 1656 860 977 1666 860 977 1666 849 967 1656 861 979 1668 849 967 1656 850 968 1657 861 979 1668 861 979 1668 850 968 1657 862 980 1669 853 971 1660 854 972 1661 863 981 1670 855 973 1662 864 982 1671 854 972 1661 854 972 1661 864 982 1671 863 981 1670 856 974 1663 865 983 1672 855 973 1662 855 973 1662 865 983 1672 864 982 1671 857 975 1664 866 984 1673 856 974 1663 856 974 1663 866 984 1673 865 983 1672 858 976 1665 867 985 1674 857 975 1664 857 975 1664 867 985 1674 866 984 1673 859 978 1667 860 977 1666 868 987 1676 868 987 1676 860 977 1666 869 986 1675 860 977 1666 861 979 1668 869 986 1675 869 986 1675 861 979 1668 870 988 1677 868 987 1676 869 986 1675 871 990 1679 871 990 1679 869 986 1675 872 989 1678 870 988 1677 873 991 1680 869 986 1675 869 986 1675 873 991 1680 872 989 1678 875 992 1681 874 993 1682 865 983 1672 865 983 1672 874 993 1682 864 982 1671 866 984 1673 876 994 1683 865 983 1672 865 983 1672 876 994 1683 875 992 1681 867 985 1674 877 995 1684 866 984 1673 866 984 1673 877 995 1684 876 994 1683 871 990 1679 872 989 1678 878 997 1686 878 997 1686 872 989 1678 879 996 1685 873 991 1680 880 998 1687 872 989 1678 872 989 1678 880 998 1687 879 996 1685 881 1000 1689 874 993 1682 882 999 1688 882 999 1688 874 993 1682 875 992 1681 875 992 1681 876 994 1683 882 999 1688 882 999 1688 876 994 1683 883 1001 1690 877 995 1684 884 1002 1691 876 994 1683 876 994 1683 884 1002 1691 883 1001 1690 878 997 1686 879 996 1685 885 1004 1693 885 1004 1693 879 996 1685 886 1003 1692 879 996 1685 880 998 1687 886 1003 1692 886 1003 1692 880 998 1687 887 1005 1694 889 1006 1695 888 1007 1696 882 999 1688 882 999 1688 888 1007 1696 881 1000 1689 882 999 1688 883 1001 1690 889 1006 1695 889 1006 1695 883 1001 1690 890 1008 1697 884 1002 1691 891 1009 1698 883 1001 1690 883 1001 1690 891 1009 1698 890 1008 1697 885 1004 1693 886 1003 1692 892 1011 1700 892 1011 1700 886 1003 1692 893 1010 1699 886 1003 1692 887 1005 1694 893 1010 1699 893 1010 1699 887 1005 1694 894 1012 1701 888 1007 1696 889 1006 1695 1313 1013 1702 1313 1013 1702 889 1006 1695 895 1014 1703 889 1006 1695 890 1008 1697 895 1014 1703 895 1014 1703 890 1008 1697 896 1015 1704 890 1008 1697 891 1009 1698 896 1015 1704 896 1015 1704 891 1009 1698 1314 1016 1705 891 1009 1698 1337 1017 1706 1314 1016 1705 1314 1016 1705 1337 1017 1706 897 1018 1707 1985 1019 1708 1337 1017 1706 1986 1021 1710 1986 1021 1710 1337 1017 1706 320 1020 1709 892 1011 1700 893 1010 1699 898 1023 1712 898 1023 1712 893 1010 1699 899 1022 1711 893 1010 1699 894 1012 1701 899 1022 1711 899 1022 1711 894 1012 1701 900 1024 1713 1312 1025 1714 1311 1026 1715 905 1028 1717 905 1028 1717 1311 1026 1715 906 1027 1716 697 808 1497 696 807 1496 907 1029 1718 698 811 1500 697 808 1497 907 1029 1718 699 813 1502 698 811 1500 907 1029 1718 700 815 1504 699 813 1502 907 1029 1718 701 817 1506 700 815 1504 907 1029 1718 702 819 1508 701 817 1506 907 1029 1718 703 821 1510 702 819 1508 907 1029 1718 704 823 1512 703 821 1510 907 1029 1718 705 825 1514 704 823 1512 907 1029 1718 706 827 1516 705 825 1514 907 1029 1718 707 829 1518 706 827 1516 907 1029 1718 707 829 1518 907 1029 1718 1331 831 1520 708 833 1522 1980 836 1525 907 1029 1718 941 1030 312 980 1031 313 1007 1033 315 1007 1033 315 980 1031 313 1044 1032 314 1007 1033 315 1028 1034 316 941 1030 312 941 1030 312 1028 1034 316 956 1035 317 942 1036 318 958 1037 319 1007 1033 315 1007 1033 315 958 1037 319 1028 1034 316 1007 1033 315 1044 1032 314 942 1036 318 942 1036 318 1044 1032 314 981 1038 320 943 1039 321 979 1040 322 1008 1042 324 1008 1042 324 979 1040 322 1043 1041 323 1008 1042 324 1029 1043 325 943 1039 321 943 1039 321 1029 1043 325 955 1044 326 941 1030 312 956 1035 317 1008 1042 324 1008 1042 324 956 1035 317 1029 1043 325 1008 1042 324 1043 1041 323 941 1030 312 941 1030 312 1043 1041 323 980 1031 313 944 1045 327 978 1046 328 1009 1048 330 1009 1048 330 978 1046 328 1042 1047 329 1009 1048 330 1027 1049 331 944 1045 327 944 1045 327 1027 1049 331 953 1050 332 943 1039 321 955 1044 326 1009 1048 330 1009 1048 330 955 1044 326 1027 1049 331 1009 1048 330 1042 1047 329 943 1039 321 943 1039 321 1042 1047 329 979 1040 322 977 1052 334 1041 1053 335 945 1051 333 945 1051 333 1041 1053 335 1010 1054 336 1010 1054 336 1030 1055 337 945 1051 333 945 1051 333 1030 1055 337 960 1056 338 944 1045 327 953 1050 332 1010 1054 336 1010 1054 336 953 1050 332 1030 1055 337 1010 1054 336 1041 1053 335 944 1045 327 944 1045 327 1041 1053 335 978 1046 328 1032 1058 340 964 1059 341 1011 1057 339 1011 1057 339 964 1059 341 946 1060 342 960 1056 338 1032 1058 340 945 1051 333 945 1051 333 1032 1058 340 1011 1057 339 1011 1057 339 946 1060 342 1067 1062 344 1067 1062 344 946 1060 342 1066 1061 343 976 1064 346 1040 1065 347 947 1063 345 947 1063 345 1040 1065 347 1012 1066 348 1034 1067 349 968 1068 350 1012 1066 348 1012 1066 348 968 1068 350 947 1063 345 964 1059 341 1034 1067 349 946 1060 342 946 1060 342 1034 1067 349 1012 1066 348 1040 1065 347 1066 1061 343 1012 1066 348 1012 1066 348 1066 1061 343 946 1060 342 975 1070 352 1039 1071 353 948 1069 351 948 1069 351 1039 1071 353 1013 1072 354 1036 1073 355 971 1074 356 1013 1072 354 1013 1072 354 971 1074 356 948 1069 351 968 1068 350 1036 1073 355 947 1063 345 947 1063 345 1036 1073 355 1013 1072 354 1039 1071 353 976 1064 346 1013 1072 354 1013 1072 354 976 1064 346 947 1063 345 973 1076 358 1038 1077 359 949 1075 357 949 1075 357 1038 1077 359 1014 1078 360 1035 1079 361 967 1080 362 1014 1078 360 1014 1078 360 967 1080 362 949 1075 357 971 1074 356 1035 1079 361 948 1069 351 948 1069 351 1035 1079 361 1014 1078 360 1038 1077 359 975 1070 352 1014 1078 360 1014 1078 360 975 1070 352 948 1069 351 974 1082 364 1037 1083 365 950 1081 363 950 1081 363 1037 1083 365 1015 1084 366 1033 1085 367 963 1086 368 1015 1084 366 1015 1084 366 963 1086 368 950 1081 363 967 1080 362 1033 1085 367 949 1075 357 949 1075 357 1033 1085 367 1015 1084 366 1037 1083 365 973 1076 358 1015 1084 366 1015 1084 366 973 1076 358 949 1075 357 942 1036 318 981 1038 320 1016 1088 370 1016 1088 370 981 1038 320 1045 1087 369 1016 1088 370 1031 1089 371 942 1036 318 942 1036 318 1031 1089 371 958 1037 319 950 1081 363 963 1086 368 1016 1088 370 1016 1088 370 963 1086 368 1031 1089 371 1016 1088 370 1045 1087 369 950 1081 363 950 1081 363 1045 1087 369 974 1082 364 1038 1077 359 973 1076 358 1044 1032 314 1044 1032 314 973 1076 358 981 1038 320 986 1090 1719 1048 1091 1720 1906 1093 1722 1906 1093 1722 1048 1091 1720 1907 1092 1721 923 1094 1723 1017 1095 1724 1908 1096 1725 1908 1096 1725 1017 1095 1724 1907 1092 1721 990 1097 1726 1050 1098 1727 1913 1100 1729 1913 1100 1729 1050 1098 1727 1911 1099 1728 925 1101 1730 1018 1102 1731 1909 1103 1732 1909 1103 1732 1018 1102 1731 1911 1099 1728 909 1104 1733 1051 1105 1734 1909 1103 1732 1909 1103 1732 1051 1105 1734 1905 1106 1735 951 1107 1736 1019 1108 1737 1906 1093 1722 1906 1093 1722 1019 1108 1737 1905 1106 1735 1052 1110 1739 1910 1111 1740 908 1109 1738 908 1109 1738 1910 1111 1740 1908 1096 1725 924 1112 1741 1020 1113 1742 1912 1114 1743 1912 1114 1743 1020 1113 1742 1910 1111 1740 910 1115 1744 1053 1116 1745 1912 1114 1743 1912 1114 1743 1053 1116 1745 1914 1117 1746 1021 1119 1748 1914 1117 1746 926 1118 1747 926 1118 1747 1914 1117 1746 1916 1120 1749 1022 1122 1751 1918 1123 1752 927 1121 1750 927 1121 1750 1918 1123 1752 1920 1124 1753 1046 1126 1755 1918 1123 1752 982 1125 1754 982 1125 1754 1918 1123 1752 1916 1120 1749 1047 1128 1757 1922 1129 1758 984 1127 1756 984 1127 1756 1922 1129 1758 1920 1124 1753 1023 1131 1760 1922 1129 1758 929 1130 1759 929 1130 1759 1922 1129 1758 1924 1132 1761 1054 1134 1763 1923 1135 1764 911 1133 1762 911 1133 1762 1923 1135 1764 1924 1132 1761 1024 1137 1766 1923 1135 1764 930 1136 1765 930 1136 1765 1923 1135 1764 1921 1138 1767 1049 1140 1769 1919 1141 1770 988 1139 1768 988 1139 1768 1919 1141 1770 1921 1138 1767 1025 1143 1772 1919 1141 1770 928 1142 1771 928 1142 1771 1919 1141 1770 1917 1144 1773 1055 1146 1775 1915 1147 1776 912 1145 1774 912 1145 1774 1915 1147 1776 1917 1144 1773 1026 1149 1778 1915 1147 1776 952 1148 1777 952 1148 1777 1915 1147 1776 1913 1100 1729 1027 1049 331 954 1150 969 953 1050 332 953 1050 332 954 1150 969 914 1151 963 954 1152 969 1027 1049 331 913 1153 967 913 1153 967 1027 1049 331 955 1044 326 1028 1034 316 957 1154 968 956 1035 317 956 1035 317 957 1154 968 916 1155 965 957 1156 968 1028 1034 316 915 1157 962 915 1157 962 1028 1034 316 958 1037 319 1029 1043 325 959 1158 966 955 1044 326 955 1044 326 959 1158 966 913 1159 967 959 1160 966 1029 1043 325 916 1161 965 916 1161 965 1029 1043 325 956 1035 317 1030 1055 337 961 1162 964 960 1056 338 960 1056 338 961 1162 964 917 1163 959 961 1164 964 1030 1055 337 914 1165 963 914 1165 963 1030 1055 337 953 1050 332 1031 1089 371 962 1166 961 958 1037 319 958 1037 319 962 1166 961 915 1167 962 962 1168 961 1031 1089 371 918 1169 958 918 1169 958 1031 1089 371 963 1086 368 964 1059 341 1032 1058 340 919 1171 955 919 1171 955 1032 1058 340 965 1170 960 1032 1058 340 960 1056 338 965 1172 960 965 1172 960 960 1056 338 917 1173 959 963 1086 368 1033 1085 367 918 1175 958 918 1175 958 1033 1085 367 966 1174 957 1033 1085 367 967 1080 362 966 1176 957 966 1176 957 967 1080 362 920 1177 954 968 1068 350 1034 1067 349 921 1179 950 921 1179 950 1034 1067 349 969 1178 956 1034 1067 349 964 1059 341 969 1180 956 969 1180 956 964 1059 341 919 1181 955 967 1080 362 1035 1079 361 920 1183 954 920 1183 954 1035 1079 361 970 1182 953 1035 1079 361 971 1074 356 970 1184 953 970 1184 953 971 1074 356 922 1185 952 971 1074 356 1036 1073 355 922 1187 952 922 1187 952 1036 1073 355 972 1186 951 1036 1073 355 968 1068 350 972 1188 951 972 1188 951 968 1068 350 921 1189 950 954 1191 1780 1020 1113 1742 914 1190 1779 914 1190 1779 1020 1113 1742 924 1112 1741 1020 1113 1742 954 1192 1780 923 1094 1723 923 1094 1723 954 1192 1780 913 1193 1781 957 1195 1783 1019 1108 1737 916 1194 1782 916 1194 1782 1019 1108 1737 951 1107 1736 925 1101 1730 1019 1108 1737 915 1197 1784 915 1197 1784 1019 1108 1737 957 1196 1783 923 1094 1723 913 1198 1781 1017 1095 1724 1017 1095 1724 913 1198 1781 959 1199 1785 916 1200 1782 951 1107 1736 959 1201 1785 959 1201 1785 951 1107 1736 1017 1095 1724 961 1203 1787 1021 1119 1748 917 1202 1786 917 1202 1786 1021 1119 1748 926 1118 1747 914 1204 1779 924 1112 1741 961 1205 1787 961 1205 1787 924 1112 1741 1021 1119 1748 915 1206 1784 962 1207 1788 925 1101 1730 925 1101 1730 962 1207 1788 1018 1102 1731 952 1148 1777 1018 1102 1731 918 1209 1789 918 1209 1789 1018 1102 1731 962 1208 1788 965 1211 1791 1022 1122 1751 919 1210 1790 919 1210 1790 1022 1122 1751 927 1121 1750 917 1212 1786 926 1118 1747 965 1213 1791 965 1213 1791 926 1118 1747 1022 1122 1751 918 1214 1789 966 1215 1792 952 1148 1777 952 1148 1777 966 1215 1792 1026 1149 1778 928 1142 1771 1026 1149 1778 920 1217 1793 920 1217 1793 1026 1149 1778 966 1216 1792 969 1219 1795 1023 1131 1760 921 1218 1794 921 1218 1794 1023 1131 1760 929 1130 1759 919 1220 1790 927 1121 1750 969 1221 1795 969 1221 1795 927 1121 1750 1023 1131 1760 920 1222 1793 970 1223 1796 928 1142 1771 928 1142 1771 970 1223 1796 1025 1143 1772 930 1136 1765 1025 1143 1772 922 1225 1797 922 1225 1797 1025 1143 1772 970 1224 1796 930 1136 1765 922 1226 1797 1024 1137 1766 1024 1137 1766 922 1226 1797 972 1227 1798 921 1228 1794 929 1130 1759 972 1229 1798 972 1229 1798 929 1130 1759 1024 1137 1766 1046 1126 1755 996 1230 1799 984 1127 1756 984 1127 1756 996 1230 1799 932 1231 1800 1046 1126 1755 982 1125 1754 996 1230 1799 996 1230 1799 982 1125 1754 931 1232 1801 1047 1128 1757 983 1233 1802 911 1133 1762 911 1133 1762 983 1233 1802 933 1234 1803 983 1233 1802 1047 1128 1757 932 1231 1800 932 1231 1800 1047 1128 1757 984 1127 1756 908 1109 1738 1048 1091 1720 935 1236 1805 935 1236 1805 1048 1091 1720 985 1235 1804 1048 1091 1720 986 1090 1719 985 1235 1804 985 1235 1804 986 1090 1719 934 1237 1806 1049 1140 1769 987 1238 1807 912 1145 1774 912 1145 1774 987 1238 1807 937 1239 1808 987 1238 1807 1049 1140 1769 936 1240 1809 936 1240 1809 1049 1140 1769 988 1139 1768 909 1104 1733 1050 1098 1727 939 1242 1811 939 1242 1811 1050 1098 1727 989 1241 1810 989 1241 1810 1050 1098 1727 938 1243 1812 938 1243 1812 1050 1098 1727 990 1097 1726 986 1090 1719 1051 1105 1734 934 1237 1806 934 1237 1806 1051 1105 1734 991 1244 1813 1051 1105 1734 909 1104 1733 991 1244 1813 991 1244 1813 909 1104 1733 939 1242 1811 910 1115 1744 1052 1110 1739 940 1246 1815 940 1246 1815 1052 1110 1739 992 1245 1814 1052 1110 1739 908 1109 1738 992 1245 1814 992 1245 1814 908 1109 1738 935 1236 1805 982 1125 1754 1053 1116 1745 931 1232 1801 931 1232 1801 1053 1116 1745 993 1247 1816 1053 1116 1745 910 1115 1744 993 1247 1816 993 1247 1816 910 1115 1744 940 1246 1815 1054 1134 1763 994 1248 1817 988 1139 1768 988 1139 1768 994 1248 1817 936 1240 1809 994 1248 1817 1054 1134 1763 933 1234 1803 933 1234 1803 1054 1134 1763 911 1133 1762 1055 1146 1775 995 1249 1818 990 1097 1726 990 1097 1726 995 1249 1818 938 1243 1812 995 1249 1818 1055 1146 1775 937 1239 1808 937 1239 1808 1055 1146 1775 912 1145 1774 1056 1250 1819 997 1251 1820 996 1230 1799 996 1230 1799 997 1251 1820 932 1231 1800 998 1252 1821 1056 1250 1819 931 1232 1801 931 1232 1801 1056 1250 1819 996 1230 1799 983 1233 1802 1057 1253 1822 933 1234 1803 933 1234 1803 1057 1253 1822 999 1254 1823 1057 1253 1822 983 1233 1802 997 1251 1820 997 1251 1820 983 1233 1802 932 1231 1800 1058 1255 1824 1000 1256 1825 985 1235 1804 985 1235 1804 1000 1256 1825 935 1236 1805 1001 1257 1826 1058 1255 1824 934 1237 1806 934 1237 1806 1058 1255 1824 985 1235 1804 987 1238 1807 1059 1258 1827 937 1239 1808 937 1239 1808 1059 1258 1827 1002 1259 1828 1059 1258 1827 987 1238 1807 1003 1260 1829 1003 1260 1829 987 1238 1807 936 1240 1809 989 1241 1810 1060 1261 1830 939 1242 1811 939 1242 1811 1060 1261 1830 1004 1262 1831 1060 1261 1830 989 1241 1810 1005 1263 1832 1005 1263 1832 989 1241 1810 938 1243 1812 1061 1264 1833 1001 1257 1826 991 1244 1813 991 1244 1813 1001 1257 1826 934 1237 1806 1004 1262 1831 1061 1264 1833 939 1242 1811 939 1242 1811 1061 1264 1833 991 1244 1813 1062 1265 1834 1006 1266 1835 992 1245 1814 992 1245 1814 1006 1266 1835 940 1246 1815 1000 1256 1825 1062 1265 1834 935 1236 1805 935 1236 1805 1062 1265 1834 992 1245 1814 1063 1267 1836 998 1252 1821 993 1247 1816 993 1247 1816 998 1252 1821 931 1232 1801 1006 1266 1835 1063 1267 1836 940 1246 1815 940 1246 1815 1063 1267 1836 993 1247 1816 994 1248 1817 1064 1268 1837 936 1240 1809 936 1240 1809 1064 1268 1837 1003 1260 1829 1064 1268 1837 994 1248 1817 999 1254 1823 999 1254 1823 994 1248 1817 933 1234 1803 995 1249 1818 1065 1269 1838 938 1243 1812 938 1243 1812 1065 1269 1838 1005 1263 1832 1065 1269 1838 995 1249 1818 1002 1259 1828 1002 1259 1828 995 1249 1818 937 1239 1808 1037 1083 365 974 1082 364 973 1076 358 973 1076 358 974 1082 364 981 1038 320 974 1082 364 1045 1087 369 981 1038 320 980 1031 313 1043 1041 323 975 1070 352 975 1070 352 1043 1041 323 1039 1071 353 1044 1032 314 980 1031 313 1038 1077 359 1038 1077 359 980 1031 313 975 1070 352 1043 1041 323 979 1040 322 1039 1071 353 1039 1071 353 979 1040 322 976 1064 346 1041 1053 335 977 1052 334 978 1046 328 1066 1061 343 978 1046 328 1067 1062 344 978 1046 328 977 1052 334 1067 1062 344 1042 1047 329 1040 1065 347 979 1040 322 979 1040 322 1040 1065 347 976 1064 346 1067 1062 344 977 1052 334 1011 1057 339 1011 1057 339 977 1052 334 945 1051 333 978 1046 328 1066 1061 343 1042 1047 329 1042 1047 329 1066 1061 343 1040 1065 347 997 1251 1820 1056 1250 1819 903 1271 1840 903 1271 1840 1056 1250 1819 904 1270 1839 1056 1250 1819 998 1252 1821 904 1270 1839 904 1270 1839 998 1252 1821 1313 1013 1702 1057 1253 1822 902 1272 1841 999 1254 1823 999 1254 1823 902 1272 1841 901 1273 1842 1058 1255 1824 863 981 1670 1000 1256 1825 1000 1256 1825 863 981 1670 864 982 1671 1058 1255 1824 1001 1257 1826 863 981 1670 863 981 1670 1001 1257 1826 853 971 1660 1059 1258 1827 887 1005 1694 1002 1259 1828 1002 1259 1828 887 1005 1694 880 998 1687 1003 1260 1829 894 1012 1701 1059 1258 1827 1059 1258 1827 894 1012 1701 887 1005 1694 1004 1262 1831 1060 1261 1830 851 969 1658 851 969 1658 1060 1261 1830 862 980 1669 1060 1261 1830 1005 1263 1832 862 980 1669 862 980 1669 1005 1263 1832 870 988 1677 1061 1264 1833 852 970 1659 1001 1257 1826 1001 1257 1826 852 970 1659 853 971 1660 1061 1264 1833 1004 1262 1831 852 970 1659 852 970 1659 1004 1262 1831 851 969 1658 1006 1266 1835 1062 1265 1834 881 1000 1689 881 1000 1689 1062 1265 1834 874 993 1682 1062 1265 1834 1000 1256 1825 874 993 1682 874 993 1682 1000 1256 1825 864 982 1671 1063 1267 1836 1006 1266 1835 888 1007 1696 888 1007 1696 1006 1266 1835 881 1000 1689 1003 1260 1829 1064 1268 1837 894 1012 1701 894 1012 1701 1064 1268 1837 900 1024 1713 999 1254 1823 901 1273 1842 1064 1268 1837 1064 1268 1837 901 1273 1842 900 1024 1713 1005 1263 1832 1065 1269 1838 870 988 1677 870 988 1677 1065 1269 1838 873 991 1680 1065 1269 1838 1002 1259 1828 873 991 1680 873 991 1680 1002 1259 1828 880 998 1687 997 1251 1820 903 1271 1840 1057 1253 1822 1057 1253 1822 903 1271 1840 902 1272 1841 870 988 1677 861 979 1668 862 980 1669 862 980 1669 850 968 1657 851 969 1658 1063 1267 1836 888 1007 1696 998 1252 1821 998 1252 1821 888 1007 1696 1313 1013 1702 1116 1274 372 1237 1275 373 1117 1276 374 1237 1275 373 1152 1278 376 1151 1277 375 1151 1277 375 1152 1278 376 1117 1276 374 1153 1279 377 1238 1280 378 1070 1282 380 1070 1282 380 1238 1280 378 1092 1281 379 1238 1280 378 1153 1279 377 1308 1283 381 1308 1283 381 1153 1279 377 1309 1284 382 1239 1285 383 1310 1286 384 1153 1279 377 1153 1279 377 1310 1286 384 1309 1284 382 1110 1287 385 1287 1288 386 1093 1289 387 1093 1289 387 1287 1288 386 1239 1285 383 1239 1285 383 1153 1279 377 1093 1289 387 1093 1289 387 1153 1279 377 1070 1282 380 1118 1291 389 1154 1292 390 1219 1290 388 1219 1290 388 1154 1292 390 1297 1293 391 1115 1295 393 1297 1293 391 1113 1294 392 1113 1294 392 1297 1293 391 1154 1292 390 1112 1297 395 1150 1298 396 1120 1296 394 1120 1296 394 1150 1298 396 1155 1299 397 1071 1300 398 1155 1299 397 1069 1302 399 1069 1302 399 1155 1299 397 1150 1301 396 1154 1292 390 1240 1303 400 1113 1305 392 1113 1305 392 1240 1303 400 1156 1304 401 1240 1303 400 1277 1307 402 1156 1306 401 1156 1306 401 1277 1307 402 1114 1308 403 1277 1307 402 1240 1303 400 1222 1310 405 1222 1310 405 1240 1303 400 1157 1309 404 1240 1303 400 1154 1292 390 1157 1309 404 1157 1309 404 1154 1292 390 1118 1291 389 1121 1312 407 1158 1313 408 1218 1311 406 1218 1311 406 1158 1313 408 1274 1314 409 1219 1290 388 1274 1314 409 1118 1291 389 1118 1291 389 1274 1314 409 1158 1313 408 1159 1315 410 1241 1316 411 1123 1318 413 1123 1318 413 1241 1316 411 1160 1317 412 1241 1316 411 1245 1319 414 1160 1317 412 1160 1317 412 1245 1319 414 1124 1320 415 1245 1319 414 1241 1316 411 1161 1321 416 1161 1321 416 1241 1316 411 1122 1322 417 1122 1322 417 1241 1316 411 1159 1315 410 1162 1323 418 1242 1324 419 1120 1296 394 1120 1296 394 1242 1324 419 1119 1325 420 1242 1324 419 1162 1323 418 1220 1326 421 1220 1326 421 1162 1323 418 1125 1327 422 1162 1323 418 1243 1328 423 1125 1327 422 1125 1327 422 1243 1328 423 1163 1329 424 1243 1328 423 1094 1330 425 1163 1329 424 1163 1329 424 1094 1330 425 1072 1331 426 1094 1330 425 1243 1328 423 1071 1300 398 1071 1300 398 1243 1328 423 1155 1299 397 1243 1328 423 1162 1323 418 1155 1299 397 1155 1299 397 1162 1323 418 1120 1296 394 1278 1332 427 1244 1333 428 1223 1335 430 1223 1335 430 1244 1333 428 1164 1334 429 1164 1334 429 1244 1333 428 1121 1312 407 1121 1312 407 1244 1333 428 1158 1313 408 1244 1333 428 1157 1309 404 1158 1313 408 1158 1313 408 1157 1309 404 1118 1291 389 1244 1333 428 1278 1332 427 1157 1309 404 1157 1309 404 1278 1332 427 1222 1310 405 1124 1320 415 1245 1319 414 1126 1337 432 1126 1337 432 1245 1319 414 1165 1336 431 1165 1336 431 1245 1319 414 1166 1338 433 1129 1340 435 1167 1341 436 1208 1339 434 1208 1339 434 1167 1341 436 1128 1342 437 1167 1341 436 1129 1340 435 1209 1344 439 1209 1344 439 1129 1340 435 1296 1343 438 1168 1345 440 1246 1346 441 1073 1348 443 1073 1348 443 1246 1346 441 1095 1347 442 1095 1347 442 1246 1346 441 1074 1350 445 1074 1350 445 1246 1346 441 1266 1349 444 1246 1346 441 1167 1341 436 1266 1349 444 1266 1349 444 1167 1341 436 1209 1344 439 1246 1346 441 1168 1345 440 1167 1341 436 1167 1341 436 1168 1345 440 1128 1342 437 1228 1351 446 1247 1352 447 1131 1354 449 1131 1354 449 1247 1352 447 1170 1353 448 1247 1352 447 1169 1355 450 1170 1353 448 1170 1353 448 1169 1355 450 1130 1356 451 1248 1358 453 1172 1359 454 1171 1357 452 1171 1357 452 1172 1359 454 1132 1360 455 1248 1358 453 1237 1275 373 1172 1359 454 1172 1359 454 1237 1275 373 1116 1274 372 1301 1361 456 1174 1362 457 1171 1357 452 1171 1357 452 1174 1362 457 1248 1358 453 1248 1358 453 1173 1363 458 1237 1275 373 1237 1275 373 1173 1363 458 1152 1278 376 1173 1363 458 1248 1358 453 1133 1364 459 1133 1364 459 1248 1358 453 1174 1362 457 1175 1365 460 1249 1366 461 1306 1368 463 1306 1368 463 1249 1366 461 1307 1367 462 1249 1366 461 1238 1280 378 1307 1367 462 1307 1367 462 1238 1280 378 1308 1283 381 1238 1280 378 1249 1366 461 1092 1281 379 1092 1281 379 1249 1366 461 1096 1369 464 1249 1366 461 1175 1365 460 1096 1369 464 1096 1369 464 1175 1365 460 1075 1370 465 1218 1311 406 1273 1371 466 1121 1312 407 1121 1312 407 1273 1371 466 1176 1372 467 1135 1374 469 1176 1372 467 1134 1373 468 1134 1373 468 1176 1372 467 1273 1371 466 1177 1375 470 1250 1376 471 1136 1378 473 1136 1378 473 1250 1376 471 1178 1377 472 1250 1376 471 1179 1379 474 1178 1377 472 1178 1377 472 1179 1379 474 1137 1380 475 1179 1379 474 1250 1376 471 1132 1360 455 1132 1360 455 1250 1376 471 1171 1357 452 1251 1382 477 1177 1375 470 1180 1381 476 1180 1381 476 1177 1375 470 1136 1378 473 1174 1362 457 1301 1361 456 1235 1384 479 1181 1383 478 1235 1384 479 1301 1361 456 1181 1383 478 1251 1382 477 1126 1337 432 1126 1337 432 1251 1382 477 1182 1385 480 1251 1382 477 1180 1381 476 1182 1385 480 1182 1385 480 1180 1381 476 1138 1386 481 1252 1388 483 1179 1379 474 1183 1387 482 1183 1387 482 1179 1379 474 1132 1360 455 1179 1379 474 1252 1388 483 1137 1380 475 1137 1380 475 1252 1388 483 1184 1389 484 1252 1388 483 1286 1390 485 1184 1389 484 1184 1389 484 1286 1390 485 1232 1391 486 1286 1390 485 1252 1388 483 1233 1392 487 1233 1392 487 1252 1388 483 1183 1387 482 1217 1394 489 1272 1395 490 1139 1393 488 1139 1393 488 1272 1395 490 1185 1396 491 1140 1398 493 1185 1396 491 1216 1397 492 1216 1397 492 1185 1396 491 1272 1395 490 1186 1399 494 1253 1400 495 1142 1402 497 1142 1402 497 1253 1400 495 1187 1401 496 1253 1400 495 1188 1403 498 1187 1401 496 1187 1401 496 1188 1403 498 1144 1404 499 1188 1403 498 1253 1400 495 1143 1406 501 1143 1406 501 1253 1400 495 1189 1405 500 1253 1400 495 1186 1399 494 1189 1405 500 1189 1405 500 1186 1399 494 1141 1407 502 1190 1408 503 1254 1409 504 1145 1411 506 1145 1411 506 1254 1409 504 1191 1410 505 1254 1409 504 1192 1412 507 1191 1410 505 1191 1410 505 1192 1412 507 1130 1356 451 1254 1409 504 1186 1399 494 1192 1412 507 1192 1412 507 1186 1399 494 1142 1402 497 1186 1399 494 1254 1409 504 1141 1407 502 1141 1407 502 1254 1409 504 1190 1408 503 1193 1413 508 1255 1414 509 1225 1416 511 1225 1416 511 1255 1414 509 1281 1415 510 1255 1414 509 1194 1417 512 1281 1415 510 1281 1415 510 1194 1417 512 1226 1418 513 1194 1417 512 1255 1414 509 1140 1398 493 1140 1398 493 1255 1414 509 1185 1396 491 1255 1414 509 1193 1413 508 1185 1396 491 1185 1396 491 1193 1413 508 1139 1393 488 1256 1420 515 1188 1403 498 1195 1419 514 1195 1419 514 1188 1403 498 1143 1406 501 1188 1403 498 1256 1420 515 1144 1404 499 1144 1404 499 1256 1420 515 1196 1421 516 1256 1420 515 1284 1422 517 1196 1421 516 1196 1421 516 1284 1422 517 1230 1423 518 1284 1422 517 1256 1420 515 1231 1424 519 1231 1424 519 1256 1420 515 1195 1419 514 1216 1397 492 1271 1425 520 1140 1398 493 1140 1398 493 1271 1425 520 1194 1417 512 1227 1426 521 1226 1418 513 1271 1425 520 1271 1425 520 1226 1418 513 1194 1417 512 1257 1428 523 1283 1429 524 1197 1427 522 1197 1427 522 1283 1429 524 1229 1430 525 1283 1429 524 1257 1428 523 1230 1423 518 1230 1423 518 1257 1428 523 1196 1421 516 1196 1421 516 1257 1428 523 1144 1404 499 1144 1404 499 1257 1428 523 1187 1401 496 1257 1428 523 1197 1427 522 1187 1401 496 1187 1401 496 1197 1427 522 1142 1402 497 1198 1431 526 1258 1432 527 1125 1327 422 1125 1327 422 1258 1432 527 1220 1326 421 1258 1432 527 1198 1431 526 1221 1433 528 1221 1433 528 1198 1431 526 1146 1434 529 1259 1436 531 1199 1437 532 1200 1435 530 1200 1435 530 1199 1437 532 1147 1438 533 1174 1362 457 1260 1439 534 1133 1364 459 1133 1364 459 1260 1439 534 1201 1440 535 1304 1442 537 1305 1443 538 1302 1441 536 1302 1441 536 1305 1443 538 1201 1440 535 1198 1431 526 1261 1444 539 1146 1434 529 1146 1434 529 1261 1444 539 1203 1445 540 1261 1444 539 1097 1446 541 1203 1445 540 1203 1445 540 1097 1446 541 1076 1447 542 1097 1446 541 1261 1444 539 1072 1331 426 1072 1331 426 1261 1444 539 1163 1329 424 1261 1444 539 1198 1431 526 1163 1329 424 1163 1329 424 1198 1431 526 1125 1327 422 1262 1448 543 1175 1365 460 1305 1443 538 1305 1443 538 1175 1365 460 1306 1368 463 1175 1365 460 1262 1448 543 1075 1370 465 1075 1370 465 1262 1448 543 1098 1449 544 1262 1448 543 1204 1450 545 1098 1449 544 1098 1449 544 1204 1450 545 1077 1451 546 1204 1450 545 1262 1448 543 1304 1442 537 1304 1442 537 1262 1448 543 1305 1443 538 1148 1452 547 1276 1453 548 1146 1434 529 1146 1434 529 1276 1453 548 1221 1433 528 1199 1437 532 1206 1454 549 1147 1438 533 1147 1438 533 1206 1454 549 1205 1455 550 1303 1457 552 1304 1442 537 1265 1456 551 1265 1456 551 1304 1442 537 1302 1441 536 1078 1458 553 1263 1459 554 1076 1447 542 1076 1447 542 1263 1459 554 1203 1445 540 1263 1459 554 1148 1452 547 1203 1445 540 1203 1445 540 1148 1452 547 1146 1434 529 1204 1450 545 1264 1460 555 1077 1451 546 1077 1451 546 1264 1460 555 1099 1461 556 1264 1460 555 1204 1450 545 1303 1457 552 1303 1457 552 1204 1450 545 1304 1442 537 1206 1454 549 1129 1340 435 1205 1455 550 1205 1455 550 1129 1340 435 1208 1339 434 1074 1350 445 1266 1349 444 1078 1458 553 1078 1458 553 1266 1349 444 1263 1459 554 1266 1349 444 1209 1344 439 1263 1459 554 1263 1459 554 1209 1344 439 1148 1452 547 1267 1463 558 1210 1464 559 1279 1462 557 1279 1462 557 1210 1464 559 1224 1465 560 1210 1464 559 1267 1463 558 1135 1374 469 1135 1374 469 1267 1463 558 1176 1372 467 1267 1463 558 1164 1334 429 1176 1372 467 1176 1372 467 1164 1334 429 1121 1312 407 1164 1334 429 1267 1463 558 1223 1335 430 1223 1335 430 1267 1463 558 1279 1462 557 1285 1466 561 1268 1467 562 1232 1391 486 1232 1391 486 1268 1467 562 1184 1389 484 1268 1467 562 1211 1468 563 1184 1389 484 1184 1389 484 1211 1468 563 1137 1380 475 1211 1468 563 1268 1467 562 1143 1406 501 1143 1406 501 1268 1467 562 1195 1419 514 1268 1467 562 1285 1466 561 1195 1419 514 1195 1419 514 1285 1466 561 1231 1424 519 1149 1469 564 1269 1470 565 1145 1411 506 1145 1411 506 1269 1470 565 1212 1471 566 1269 1470 565 1213 1472 567 1212 1471 566 1212 1471 566 1213 1472 567 1138 1386 481 1134 1373 468 1300 1473 568 1135 1374 469 1135 1374 469 1300 1473 568 1214 1474 569 1139 1393 488 1214 1474 569 1217 1394 489 1217 1394 489 1214 1474 569 1300 1473 568 1215 1475 570 1270 1476 571 1141 1407 502 1141 1407 502 1270 1476 571 1189 1405 500 1270 1476 571 1211 1468 563 1189 1405 500 1189 1405 500 1211 1468 563 1143 1406 501 1211 1468 563 1270 1476 571 1137 1380 475 1137 1380 475 1270 1476 571 1178 1377 472 1270 1476 571 1215 1475 570 1178 1377 472 1178 1377 472 1215 1475 570 1136 1378 473 1227 1426 521 1271 1425 520 1228 1351 446 1228 1351 446 1271 1425 520 1247 1352 447 1271 1425 520 1216 1397 492 1247 1352 447 1247 1352 447 1216 1397 492 1169 1355 450 1216 1397 492 1272 1395 490 1169 1355 450 1169 1355 450 1272 1395 490 1293 1477 572 1272 1395 490 1217 1394 489 1293 1477 572 1293 1477 572 1217 1394 489 1149 1469 564 1134 1373 468 1273 1371 466 1213 1472 567 1213 1472 567 1273 1371 466 1290 1478 573 1273 1371 466 1218 1311 406 1290 1478 573 1290 1478 573 1218 1311 406 1124 1320 415 1218 1311 406 1274 1314 409 1124 1320 415 1124 1320 415 1274 1314 409 1160 1317 412 1274 1314 409 1219 1290 388 1160 1317 412 1160 1317 412 1219 1290 388 1123 1318 413 1275 1480 574 1159 1315 410 1115 1479 393 1115 1479 393 1159 1315 410 1123 1318 413 1330 1481 575 1161 1321 416 1122 1322 417 1259 1436 531 1258 1432 527 1199 1437 532 1199 1437 532 1258 1432 527 1221 1433 528 1276 1453 548 1206 1454 549 1221 1433 528 1221 1433 528 1206 1454 549 1199 1437 532 1296 1343 438 1129 1340 435 1276 1453 548 1276 1453 548 1129 1340 435 1206 1454 549 1114 1482 403 1277 1307 402 1068 1484 577 1068 1484 577 1277 1307 402 1100 1483 576 1100 1483 576 1277 1307 402 1079 1485 578 1079 1485 578 1277 1307 402 1222 1310 405 1278 1332 427 1101 1486 579 1222 1310 405 1222 1310 405 1101 1486 579 1079 1485 578 1101 1486 579 1278 1332 427 1080 1487 580 1080 1487 580 1278 1332 427 1223 1335 430 1279 1462 557 1102 1488 581 1223 1335 430 1223 1335 430 1102 1488 581 1080 1487 580 1279 1462 557 1224 1465 560 1102 1488 581 1102 1488 581 1224 1465 560 1081 1489 582 1224 1465 560 1280 1490 583 1081 1489 582 1081 1489 582 1280 1490 583 1103 1491 584 1280 1490 583 1225 1416 511 1103 1491 584 1103 1491 584 1225 1416 511 1082 1492 585 1225 1416 511 1281 1415 510 1082 1492 585 1082 1492 585 1281 1415 510 1104 1493 586 1281 1415 510 1226 1418 513 1104 1493 586 1104 1493 586 1226 1418 513 1083 1494 587 1226 1418 513 1227 1426 521 1083 1494 587 1083 1494 587 1227 1426 521 1084 1495 588 1227 1426 521 1228 1351 446 1084 1495 588 1084 1495 588 1228 1351 446 1085 1496 589 1282 1497 590 1105 1498 591 1131 1354 449 1131 1354 449 1105 1498 591 1087 1499 592 1105 1498 591 1282 1497 590 1086 1500 593 1086 1500 593 1282 1497 590 1229 1430 525 1106 1501 594 1283 1429 524 1088 1502 595 1088 1502 595 1283 1429 524 1230 1423 518 1283 1429 524 1106 1501 594 1229 1430 525 1229 1430 525 1106 1501 594 1086 1500 593 1284 1422 517 1107 1503 596 1230 1423 518 1230 1423 518 1107 1503 596 1088 1502 595 1107 1503 596 1284 1422 517 1089 1504 597 1089 1504 597 1284 1422 517 1231 1424 519 1108 1505 598 1285 1466 561 1090 1506 599 1090 1506 599 1285 1466 561 1232 1391 486 1285 1466 561 1108 1505 598 1231 1424 519 1231 1424 519 1108 1505 598 1089 1504 597 1286 1390 485 1109 1507 600 1232 1391 486 1232 1391 486 1109 1507 600 1090 1506 599 1109 1507 600 1286 1390 485 1091 1508 601 1091 1508 601 1286 1390 485 1233 1392 487 1287 1288 386 1110 1287 385 1233 1392 487 1233 1392 487 1110 1287 385 1091 1508 601 1168 1345 440 1288 1509 602 1128 1342 437 1128 1342 437 1288 1509 602 1234 1510 603 1288 1509 602 1264 1460 555 1234 1510 603 1234 1510 603 1264 1460 555 1303 1457 552 1264 1460 555 1288 1509 602 1099 1461 556 1099 1461 556 1288 1509 602 1111 1511 604 1288 1509 602 1168 1345 440 1111 1511 604 1111 1511 604 1168 1345 440 1073 1348 443 1085 1496 589 1228 1351 446 1087 1499 592 1087 1499 592 1228 1351 446 1131 1354 449 1289 1512 605 1235 1384 479 1200 1435 530 1200 1435 530 1235 1384 479 1127 1513 606 1235 1384 479 1289 1512 605 1174 1362 457 1174 1362 457 1289 1512 605 1260 1439 534 1289 1512 605 1236 1514 607 1260 1439 534 1260 1439 534 1236 1514 607 1202 1515 608 1236 1514 607 1289 1512 605 1147 1438 533 1147 1438 533 1289 1512 605 1200 1435 530 1213 1472 567 1290 1478 573 1138 1386 481 1138 1386 481 1290 1478 573 1182 1385 480 1182 1385 480 1290 1478 573 1126 1337 432 1126 1337 432 1290 1478 573 1124 1320 415 1291 1516 609 1236 1514 607 1205 1455 550 1205 1455 550 1236 1514 607 1147 1438 533 1236 1514 607 1291 1516 609 1202 1515 608 1202 1515 608 1291 1516 609 1207 1517 610 1215 1475 570 1292 1518 611 1136 1378 473 1136 1378 473 1292 1518 611 1180 1381 476 1180 1381 476 1292 1518 611 1138 1386 481 1138 1386 481 1292 1518 611 1212 1471 566 1292 1518 611 1190 1408 503 1212 1471 566 1212 1471 566 1190 1408 503 1145 1411 506 1292 1518 611 1215 1475 570 1190 1408 503 1190 1408 503 1215 1475 570 1141 1407 502 1294 1519 612 1291 1516 609 1208 1339 434 1208 1339 434 1291 1516 609 1205 1455 550 1291 1516 609 1294 1519 612 1207 1517 610 1207 1517 610 1294 1519 612 1265 1456 551 1169 1355 450 1293 1477 572 1130 1356 451 1130 1356 451 1293 1477 572 1191 1410 505 1293 1477 572 1149 1469 564 1191 1410 505 1191 1410 505 1149 1469 564 1145 1411 506 1234 1510 603 1294 1519 612 1128 1342 437 1128 1342 437 1294 1519 612 1208 1339 434 1282 1497 590 1295 1520 613 1229 1430 525 1229 1430 525 1295 1520 613 1197 1427 522 1295 1520 613 1192 1412 507 1197 1427 522 1197 1427 522 1192 1412 507 1142 1402 497 1192 1412 507 1295 1520 613 1130 1356 451 1130 1356 451 1295 1520 613 1170 1353 448 1295 1520 613 1282 1497 590 1170 1353 448 1170 1353 448 1282 1497 590 1131 1354 449 1209 1344 439 1296 1343 438 1148 1452 547 1148 1452 547 1296 1343 438 1276 1453 548 1219 1290 388 1297 1293 391 1123 1318 413 1123 1318 413 1297 1293 391 1115 1521 393 1126 1337 432 1165 1336 431 1181 1383 478 1165 1336 431 1127 1513 606 1181 1383 478 1235 1384 479 1181 1383 478 1127 1513 606 1298 1522 614 1287 1288 386 1183 1387 482 1183 1387 482 1287 1288 386 1233 1392 487 1287 1288 386 1298 1522 614 1239 1285 383 1239 1285 383 1298 1522 614 1310 1286 384 1172 1359 454 1298 1522 614 1132 1360 455 1132 1360 455 1298 1522 614 1183 1387 482 1210 1464 559 1299 1523 615 1224 1465 560 1224 1465 560 1299 1523 615 1280 1490 583 1299 1523 615 1193 1413 508 1280 1490 583 1280 1490 583 1193 1413 508 1225 1416 511 1193 1413 508 1299 1523 615 1139 1393 488 1139 1393 488 1299 1523 615 1214 1474 569 1299 1523 615 1210 1464 559 1214 1474 569 1214 1474 569 1210 1464 559 1135 1374 469 1217 1394 489 1300 1473 568 1149 1469 564 1149 1469 564 1300 1473 568 1269 1470 565 1300 1473 568 1134 1373 468 1269 1470 565 1269 1470 565 1134 1373 468 1213 1472 567 1301 1361 456 1177 1375 470 1181 1383 478 1181 1383 478 1177 1375 470 1251 1382 477 1250 1376 471 1177 1375 470 1171 1357 452 1171 1357 452 1177 1375 470 1301 1361 456 1202 1515 608 1207 1517 610 1302 1441 536 1302 1441 536 1207 1517 610 1265 1456 551 1260 1439 534 1202 1515 608 1201 1440 535 1201 1440 535 1202 1515 608 1302 1441 536 1265 1456 551 1294 1519 612 1303 1457 552 1303 1457 552 1294 1519 612 1234 1510 603 1305 1443 538 1306 1368 463 1201 1440 535 1201 1440 535 1306 1368 463 1133 1364 459 1307 1367 462 1173 1363 458 1306 1368 463 1306 1368 463 1173 1363 458 1133 1364 459 1173 1363 458 1307 1367 462 1152 1278 376 1152 1278 376 1307 1367 462 1308 1283 381 1308 1283 381 1309 1284 382 1152 1278 376 1152 1278 376 1309 1284 382 1117 1276 374 1310 1286 384 1116 1274 372 1309 1284 382 1309 1284 382 1116 1274 372 1117 1276 374 1298 1522 614 1172 1359 454 1310 1286 384 1310 1286 384 1172 1359 454 1116 1274 372 1319 1525 1844 1318 1526 1845 1068 1524 1843 1068 1524 1843 1318 1526 1845 1114 1527 1846 1321 1528 1847 1318 1526 1845 902 1272 1841 902 1272 1841 1318 1526 1845 906 1027 1716 902 1272 1841 906 1027 1716 901 1273 1842 901 1273 1842 906 1027 1716 1311 1026 1715 899 1022 1711 900 1024 1713 1311 1026 1715 1311 1026 1715 900 1024 1713 901 1273 1842 898 1023 1712 899 1022 1711 1312 1025 1714 1312 1025 1714 899 1022 1711 1311 1026 1715 1322 1530 1849 1323 1531 1850 1113 1529 1848 1113 1529 1848 1323 1531 1850 1115 1532 1851 1324 1533 1852 1323 1531 1850 1313 1013 1702 1313 1013 1702 1323 1531 1850 904 1270 1839 1325 1535 1854 1326 1536 1855 1316 1534 1853 1316 1534 1853 1326 1536 1855 1317 1537 1856 1320 1539 1858 1332 1540 1859 1315 1538 1857 1315 1538 1857 1332 1540 1859 897 1018 1707 1322 1530 1849 1321 1528 1847 903 1271 1840 903 1271 1840 1321 1528 1847 902 1272 1841 1325 1535 1854 1324 1533 1852 895 1014 1703 895 1014 1703 1324 1533 1852 1313 1013 1702 1275 1541 574 1316 1542 616 1159 1315 410 1159 1315 410 1316 1542 616 1122 1322 417 1120 1296 394 1119 1325 420 1112 1544 395 1112 1544 395 1119 1325 420 1317 1543 617 1327 1545 1860 1326 1536 1855 1314 1016 1705 1314 1016 1705 1326 1536 1855 896 1015 1704 1119 1325 420 1122 1322 417 1317 1546 617 1317 1546 617 1122 1322 417 1316 1547 616 1318 1526 1845 1319 1525 1844 906 1027 1716 906 1027 1716 1319 1525 1844 905 1028 1717 1332 1540 1859 1320 1539 1858 1150 1548 1861 1150 1548 1861 1320 1539 1858 1069 1549 1862 1114 1550 1846 1318 1526 1845 1156 1551 1863 1156 1551 1863 1318 1526 1845 1321 1528 1847 1156 1552 1863 1321 1528 1847 1113 1553 1848 1113 1553 1848 1321 1528 1847 1322 1530 1849 904 1270 1839 1323 1531 1850 903 1271 1840 903 1271 1840 1323 1531 1850 1322 1530 1849 1323 1531 1850 1324 1533 1852 1115 1554 1851 1115 1554 1851 1324 1533 1852 1275 1555 1864 1324 1533 1852 1325 1535 1854 1275 1556 1864 1275 1556 1864 1325 1535 1854 1316 1557 1853 1326 1536 1855 1325 1535 1854 896 1015 1704 896 1015 1704 1325 1535 1854 895 1014 1703 1326 1536 1855 1327 1545 1860 1317 1558 1856 1317 1558 1856 1327 1545 1860 1112 1559 1865 1327 1545 1860 1332 1540 1859 1112 1560 1865 1112 1560 1865 1332 1540 1859 1150 1561 1861 1328 1562 618 1259 1436 531 1127 1513 606 1127 1513 606 1259 1436 531 1200 1435 530 1258 1432 527 1259 1436 531 1220 1326 421 1220 1326 421 1259 1436 531 1328 1562 618 1242 1324 419 1220 1326 421 1329 1563 619 1329 1563 619 1220 1326 421 1328 1562 618 1328 1562 618 1127 1513 606 1166 1338 433 1166 1338 433 1127 1513 606 1165 1336 431 1329 1563 619 1328 1562 618 1330 1481 575 1330 1481 575 1328 1562 618 1166 1338 433 1329 1563 619 1330 1481 575 1119 1325 420 1119 1325 420 1330 1481 575 1122 1322 417 1119 1325 420 1242 1324 419 1329 1563 619 1330 1481 575 1166 1338 433 1161 1321 416 1161 1321 416 1166 1338 433 1245 1319 414 1314 1016 1705 897 1018 1707 1327 1545 1860 1327 1545 1860 897 1018 1707 1332 1540 1859 721 832 1521 1333 849 1538 720 830 1519 720 830 1519 1333 849 1538 734 848 1537 1333 849 1538 1334 863 1552 734 848 1537 734 848 1537 1334 863 1552 747 862 1551 1334 863 1552 1335 877 1566 747 862 1551 747 862 1551 1335 877 1566 760 876 1565 1335 877 1566 1336 891 1580 760 876 1565 760 876 1565 1336 891 1580 773 890 1579 773 890 1579 1336 891 1580 786 904 1593 786 904 1593 1336 891 1580 2 361 1172 2 361 1172 86 364 1175 786 904 1593 786 904 1593 86 364 1175 798 916 1605 884 1002 1691 320 1020 1709 891 1009 1698 891 1009 1698 320 1020 1709 1337 1017 1706 709 810 1499 1349 1564 1866 696 807 1496 696 807 1496 1349 1564 1866 1338 1565 1867 1349 1564 1866 1350 1566 1868 1338 1565 1867 1338 1565 1867 1350 1566 1868 1339 1567 1869 1350 1566 1868 1351 1568 1870 1339 1567 1869 1339 1567 1869 1351 1568 1870 1340 1569 1871 1351 1568 1870 1352 1570 1872 1340 1569 1871 1340 1569 1871 1352 1570 1872 1341 1571 1873 1352 1570 1872 1353 1572 1874 1341 1571 1873 1341 1571 1873 1353 1572 1874 1342 1573 1875 1353 1572 1874 1354 1574 1876 1342 1573 1875 1342 1573 1875 1354 1574 1876 1343 1575 1877 1354 1574 1876 1355 1576 1878 1343 1575 1877 1343 1575 1877 1355 1576 1878 1344 1577 1879 1355 1576 1878 1356 1578 1880 1344 1577 1879 1344 1577 1879 1356 1578 1880 1345 1579 1881 1345 1579 1881 1356 1578 1880 1346 1581 1883 1346 1581 1883 1356 1578 1880 1357 1580 1882 1346 1581 1883 1357 1580 1882 1347 1583 1885 1347 1583 1885 1357 1580 1882 1358 1582 1884 1358 1582 1884 1359 1584 1886 1347 1583 1885 1347 1583 1885 1359 1584 1886 1348 1585 1887 1359 1584 1886 1360 1586 1888 1348 1585 1887 1348 1585 1887 1360 1586 1888 1897 1587 1889 1360 1586 1888 1972 1588 1890 1897 1587 1889 1897 1587 1889 1972 1588 1890 1973 1589 1891 723 838 1527 1361 1590 1892 709 810 1499 709 810 1499 1361 1590 1892 1349 1564 1866 1361 1590 1892 1362 1591 1893 1349 1564 1866 1349 1564 1866 1362 1591 1893 1350 1566 1868 1362 1591 1893 1363 1592 1894 1350 1566 1868 1350 1566 1868 1363 1592 1894 1351 1568 1870 1363 1592 1894 1364 1593 1895 1351 1568 1870 1351 1568 1870 1364 1593 1895 1352 1570 1872 1364 1593 1895 1365 1594 1896 1352 1570 1872 1352 1570 1872 1365 1594 1896 1353 1572 1874 1365 1594 1896 1366 1595 1897 1353 1572 1874 1353 1572 1874 1366 1595 1897 1354 1574 1876 1366 1595 1897 1367 1596 1898 1354 1574 1876 1354 1574 1876 1367 1596 1898 1355 1576 1878 1367 1596 1898 1368 1597 1899 1355 1576 1878 1355 1576 1878 1368 1597 1899 1356 1578 1880 1356 1578 1880 1368 1597 1899 1357 1580 1882 1357 1580 1882 1368 1597 1899 1369 1598 1900 1357 1580 1882 1369 1598 1900 1358 1582 1884 1358 1582 1884 1369 1598 1900 1370 1599 1901 1370 1599 1901 1371 1600 1902 1358 1582 1884 1358 1582 1884 1371 1600 1902 1359 1584 1886 1899 1601 1903 1975 1602 1904 1360 1586 1888 1360 1586 1888 1975 1602 1904 1972 1588 1890 736 852 1541 1372 1603 1905 723 838 1527 723 838 1527 1372 1603 1905 1361 1590 1892 1372 1603 1905 1373 1604 1906 1361 1590 1892 1361 1590 1892 1373 1604 1906 1362 1591 1893 1373 1604 1906 1374 1605 1907 1362 1591 1893 1362 1591 1893 1374 1605 1907 1363 1592 1894 1374 1605 1907 1375 1606 1908 1363 1592 1894 1363 1592 1894 1375 1606 1908 1364 1593 1895 1375 1606 1908 1376 1607 1909 1364 1593 1895 1364 1593 1895 1376 1607 1909 1365 1594 1896 1376 1607 1909 1377 1608 1910 1365 1594 1896 1365 1594 1896 1377 1608 1910 1366 1595 1897 1377 1608 1910 1378 1609 1911 1366 1595 1897 1366 1595 1897 1378 1609 1911 1367 1596 1898 1378 1609 1911 1379 1610 1912 1367 1596 1898 1367 1596 1898 1379 1610 1912 1368 1597 1899 1368 1597 1899 1379 1610 1912 1369 1598 1900 1369 1598 1900 1379 1610 1912 1380 1611 1913 1369 1598 1900 1380 1611 1913 1370 1599 1901 1370 1599 1901 1380 1611 1913 1381 1612 1914 1370 1599 1901 1381 1612 1914 1371 1600 1902 1371 1600 1902 1381 1612 1914 1382 1613 1915 1900 1614 1916 1976 1615 1917 1899 1601 1903 1899 1601 1903 1976 1615 1917 1975 1602 1904 736 852 1541 749 866 1555 1372 1603 1905 1372 1603 1905 749 866 1555 1383 1616 1918 1383 1616 1918 1384 1617 1919 1372 1603 1905 1372 1603 1905 1384 1617 1919 1373 1604 1906 1384 1617 1919 1385 1618 1920 1373 1604 1906 1373 1604 1906 1385 1618 1920 1374 1605 1907 1385 1618 1920 1386 1619 1921 1374 1605 1907 1374 1605 1907 1386 1619 1921 1375 1606 1908 1386 1619 1921 1387 1620 1922 1375 1606 1908 1375 1606 1908 1387 1620 1922 1376 1607 1909 1387 1620 1922 1388 1621 1923 1376 1607 1909 1376 1607 1909 1388 1621 1923 1377 1608 1910 1388 1621 1923 1389 1622 1924 1377 1608 1910 1377 1608 1910 1389 1622 1924 1378 1609 1911 1389 1622 1924 1390 1623 1925 1378 1609 1911 1378 1609 1911 1390 1623 1925 1379 1610 1912 1379 1610 1912 1390 1623 1925 1380 1611 1913 1380 1611 1913 1390 1623 1925 1391 1624 1926 1391 1624 1926 1392 1625 1927 1380 1611 1913 1380 1611 1913 1392 1625 1927 1381 1612 1914 1381 1612 1914 1392 1625 1927 1382 1613 1915 1382 1613 1915 1392 1625 1927 1393 1626 1928 1901 1627 1929 1977 1628 1930 1900 1614 1916 1900 1614 1916 1977 1628 1930 1976 1615 1917 749 866 1555 762 880 1569 1383 1616 1918 1383 1616 1918 762 880 1569 1394 1629 1931 1394 1629 1931 1395 1630 1932 1383 1616 1918 1383 1616 1918 1395 1630 1932 1384 1617 1919 1395 1630 1932 1396 1631 1933 1384 1617 1919 1384 1617 1919 1396 1631 1933 1385 1618 1920 1396 1631 1933 1397 1632 1934 1385 1618 1920 1385 1618 1920 1397 1632 1934 1386 1619 1921 1397 1632 1934 1398 1633 1935 1386 1619 1921 1386 1619 1921 1398 1633 1935 1387 1620 1922 1398 1633 1935 1399 1634 1936 1387 1620 1922 1387 1620 1922 1399 1634 1936 1388 1621 1923 1399 1634 1936 1400 1635 1937 1388 1621 1923 1388 1621 1923 1400 1635 1937 1389 1622 1924 1400 1635 1937 1401 1636 1938 1389 1622 1924 1389 1622 1924 1401 1636 1938 1390 1623 1925 1390 1623 1925 1401 1636 1938 1391 1624 1926 1391 1624 1926 1401 1636 1938 1402 1637 1939 1402 1637 1939 1403 1638 1940 1391 1624 1926 1391 1624 1926 1403 1638 1940 1392 1625 1927 1403 1638 1940 1404 1639 1941 1392 1625 1927 1392 1625 1927 1404 1639 1941 1393 1626 1928 1902 1640 1942 1974 1641 1943 1901 1627 1929 1901 1627 1929 1974 1641 1943 1977 1628 1930 762 880 1569 775 894 1583 1394 1629 1931 1394 1629 1931 775 894 1583 1405 1642 1944 1405 1642 1944 1406 1643 1945 1394 1629 1931 1394 1629 1931 1406 1643 1945 1395 1630 1932 1406 1643 1945 1407 1644 1946 1395 1630 1932 1395 1630 1932 1407 1644 1946 1396 1631 1933 1407 1644 1946 1408 1645 1947 1396 1631 1933 1396 1631 1933 1408 1645 1947 1397 1632 1934 1408 1645 1947 1409 1646 1948 1397 1632 1934 1397 1632 1934 1409 1646 1948 1398 1633 1935 1409 1646 1948 1410 1647 1949 1398 1633 1935 1398 1633 1935 1410 1647 1949 1399 1634 1936 1410 1647 1949 1411 1648 1950 1399 1634 1936 1399 1634 1936 1411 1648 1950 1400 1635 1937 1411 1648 1950 1412 1649 1951 1400 1635 1937 1400 1635 1937 1412 1649 1951 1401 1636 1938 1401 1636 1938 1412 1649 1951 1402 1637 1939 1402 1637 1939 1412 1649 1951 1413 1650 1952 1413 1650 1952 1414 1651 1953 1402 1637 1939 1402 1637 1939 1414 1651 1953 1403 1638 1940 1414 1651 1953 1415 1652 1954 1403 1638 1940 1403 1638 1940 1415 1652 1954 1404 1639 1941 2044 1653 1955 1974 1641 1943 2043 435 1231 2043 435 1231 1974 1641 1943 434 436 1232 775 894 1583 787 906 1595 1405 1642 1944 1405 1642 1944 787 906 1595 1416 1654 1956 1416 1654 1956 1417 1655 1957 1405 1642 1944 1405 1642 1944 1417 1655 1957 1406 1643 1945 1417 1655 1957 1418 1656 1958 1406 1643 1945 1406 1643 1945 1418 1656 1958 1407 1644 1946 1418 1656 1958 1419 1657 1959 1407 1644 1946 1407 1644 1946 1419 1657 1959 1408 1645 1947 1419 1657 1959 1420 1658 1960 1408 1645 1947 1408 1645 1947 1420 1658 1960 1409 1646 1948 1420 1658 1960 1421 1659 1961 1409 1646 1948 1409 1646 1948 1421 1659 1961 1410 1647 1949 1421 1659 1961 1422 1660 1962 1410 1647 1949 1410 1647 1949 1422 1660 1962 1411 1648 1950 1422 1660 1962 1423 1661 1963 1411 1648 1950 1411 1648 1950 1423 1661 1963 1412 1649 1951 1412 1649 1951 1423 1661 1963 1413 1650 1952 1413 1650 1952 1423 1661 1963 1424 1662 1964 1413 1650 1952 1424 1662 1964 1414 1651 1953 1414 1651 1953 1424 1662 1964 1425 1663 1965 1425 1663 1965 1426 1664 1966 1414 1651 1953 1414 1651 1953 1426 1664 1966 1415 1652 1954 787 906 1595 799 918 1607 1416 1654 1956 1416 1654 1956 799 918 1607 1427 1665 1967 1427 1665 1967 1428 1666 1968 1416 1654 1956 1416 1654 1956 1428 1666 1968 1417 1655 1957 1428 1666 1968 1429 1667 1969 1417 1655 1957 1417 1655 1957 1429 1667 1969 1418 1656 1958 1429 1667 1969 1430 1668 1970 1418 1656 1958 1418 1656 1958 1430 1668 1970 1419 1657 1959 1430 1668 1970 1431 1669 1971 1419 1657 1959 1419 1657 1959 1431 1669 1971 1420 1658 1960 1431 1669 1971 1432 1670 1972 1420 1658 1960 1420 1658 1960 1432 1670 1972 1421 1659 1961 1432 1670 1972 1433 1671 1973 1421 1659 1961 1421 1659 1961 1433 1671 1973 1422 1660 1962 1433 1671 1973 1434 1672 1974 1422 1660 1962 1422 1660 1962 1434 1672 1974 1423 1661 1963 1423 1661 1963 1434 1672 1974 1424 1662 1964 1424 1662 1964 1434 1672 1974 1435 1673 1975 1435 1673 1975 1436 1674 1976 1424 1662 1964 1424 1662 1964 1436 1674 1976 1425 1663 1965 1436 1674 1976 1437 1675 1977 1425 1663 1965 1425 1663 1965 1437 1675 1977 1426 1664 1966 799 918 1607 811 930 1619 1427 1665 1967 1427 1665 1967 811 930 1619 1438 1676 1978 1438 1676 1978 1439 1677 1979 1427 1665 1967 1427 1665 1967 1439 1677 1979 1428 1666 1968 1439 1677 1979 1440 1678 1980 1428 1666 1968 1428 1666 1968 1440 1678 1980 1429 1667 1969 1440 1678 1980 1441 1679 1981 1429 1667 1969 1429 1667 1969 1441 1679 1981 1430 1668 1970 1441 1679 1981 1442 1680 1982 1430 1668 1970 1430 1668 1970 1442 1680 1982 1431 1669 1971 1442 1680 1982 1443 1681 1983 1431 1669 1971 1431 1669 1971 1443 1681 1983 1432 1670 1972 1443 1681 1983 1444 1682 1984 1432 1670 1972 1432 1670 1972 1444 1682 1984 1433 1671 1973 1444 1682 1984 1445 1683 1985 1433 1671 1973 1433 1671 1973 1445 1683 1985 1434 1672 1974 1434 1672 1974 1445 1683 1985 1435 1673 1975 1435 1673 1975 1445 1683 1985 1446 1684 1986 1446 1684 1986 1447 1685 1987 1435 1673 1975 1435 1673 1975 1447 1685 1987 1436 1674 1976 1447 1685 1987 1448 1686 1988 1436 1674 1976 1436 1674 1976 1448 1686 1988 1437 1675 1977 811 930 1619 823 942 1631 1438 1676 1978 1438 1676 1978 823 942 1631 1449 1687 1989 1449 1687 1989 1450 1688 1990 1438 1676 1978 1438 1676 1978 1450 1688 1990 1439 1677 1979 1450 1688 1990 1451 1689 1991 1439 1677 1979 1439 1677 1979 1451 1689 1991 1440 1678 1980 1451 1689 1991 1452 1690 1992 1440 1678 1980 1440 1678 1980 1452 1690 1992 1441 1679 1981 1452 1690 1992 1453 1691 1993 1441 1679 1981 1441 1679 1981 1453 1691 1993 1442 1680 1982 1453 1691 1993 1454 1692 1994 1442 1680 1982 1442 1680 1982 1454 1692 1994 1443 1681 1983 1454 1692 1994 1455 1693 1995 1443 1681 1983 1443 1681 1983 1455 1693 1995 1444 1682 1984 1455 1693 1995 1456 1694 1996 1444 1682 1984 1444 1682 1984 1456 1694 1996 1445 1683 1985 1445 1683 1985 1456 1694 1996 1446 1684 1986 1446 1684 1986 1456 1694 1996 1457 1695 1997 1446 1684 1986 1457 1695 1997 1447 1685 1987 1447 1685 1987 1457 1695 1997 1458 1696 1998 1447 1685 1987 1458 1696 1998 1448 1686 1988 1448 1686 1988 1458 1696 1998 1459 1697 1999 823 942 1631 846 954 1643 1449 1687 1989 1449 1687 1989 846 954 1643 1460 1698 2000 1460 1698 2000 1461 1699 2001 1449 1687 1989 1449 1687 1989 1461 1699 2001 1450 1688 1990 1461 1699 2001 1462 1700 2002 1450 1688 1990 1450 1688 1990 1462 1700 2002 1451 1689 1991 1462 1700 2002 1463 1701 2003 1451 1689 1991 1451 1689 1991 1463 1701 2003 1452 1690 1992 1463 1701 2003 1464 1702 2004 1452 1690 1992 1452 1690 1992 1464 1702 2004 1453 1691 1993 1464 1702 2004 1465 1703 2005 1453 1691 1993 1453 1691 1993 1465 1703 2005 1454 1692 1994 1465 1703 2005 1466 1704 2006 1454 1692 1994 1454 1692 1994 1466 1704 2006 1455 1693 1995 1455 1693 1995 1466 1704 2006 1456 1694 1996 1456 1694 1996 1466 1704 2006 1467 1705 2007 1456 1694 1996 1467 1705 2007 1457 1695 1997 1457 1695 1997 1467 1705 2007 1468 1706 2008 1457 1695 1997 1468 1706 2008 1458 1696 1998 1458 1696 1998 1468 1706 2008 1469 1707 2009 1458 1696 1998 1469 1707 2009 1459 1697 1999 1459 1697 1999 1469 1707 2009 1470 1708 2010 846 954 1643 847 966 1655 1460 1698 2000 1460 1698 2000 847 966 1655 1471 1709 2011 1460 1698 2000 1471 1709 2011 1461 1699 2001 1461 1699 2001 1471 1709 2011 1472 1710 2012 1461 1699 2001 1472 1710 2012 1462 1700 2002 1462 1700 2002 1472 1710 2012 1473 1711 2013 1462 1700 2002 1473 1711 2013 1463 1701 2003 1463 1701 2003 1473 1711 2013 1474 1712 2014 1474 1712 2014 1475 1713 2015 1463 1701 2003 1463 1701 2003 1475 1713 2015 1464 1702 2004 1475 1713 2015 1476 1714 2016 1464 1702 2004 1464 1702 2004 1476 1714 2016 1465 1703 2005 1476 1714 2016 1477 1715 2017 1465 1703 2005 1465 1703 2005 1477 1715 2017 1466 1704 2006 1466 1704 2006 1477 1715 2017 1467 1705 2007 1467 1705 2007 1477 1715 2017 1478 1716 2018 1467 1705 2007 1478 1716 2018 1468 1706 2008 1468 1706 2008 1478 1716 2018 1479 1717 2019 1468 1706 2008 1479 1717 2019 1469 1707 2009 1469 1707 2009 1479 1717 2019 1480 1718 2020 1469 1707 2009 1480 1718 2020 1470 1708 2010 1470 1708 2010 1480 1718 2020 1481 1719 2021 847 966 1655 859 978 1667 1471 1709 2011 1471 1709 2011 859 978 1667 1482 1720 2022 1471 1709 2011 1482 1720 2022 1472 1710 2012 1472 1710 2012 1482 1720 2022 1483 1721 2023 1472 1710 2012 1483 1721 2023 1473 1711 2013 1473 1711 2013 1483 1721 2023 1484 1722 2024 1476 1714 2016 1485 1723 2025 1477 1715 2017 1485 1723 2025 1488 1724 2026 1477 1715 2017 1477 1715 2017 1488 1724 2026 1478 1716 2018 1488 1724 2026 1489 1725 2027 1478 1716 2018 1478 1716 2018 1489 1725 2027 1479 1717 2019 1489 1725 2027 1490 1726 2028 1479 1717 2019 1479 1717 2019 1490 1726 2028 1480 1718 2020 1480 1718 2020 1490 1726 2028 1481 1719 2021 1481 1719 2021 1490 1726 2028 1491 1727 2029 859 978 1667 868 987 1676 1482 1720 2022 1482 1720 2022 868 987 1676 1486 1728 2030 1482 1720 2022 1486 1728 2030 1483 1721 2023 1483 1721 2023 1486 1728 2030 1487 1729 2031 868 987 1676 871 990 1679 1486 1728 2030 1486 1728 2030 871 990 1679 1492 1730 2032 1492 1730 2032 1493 1731 2033 1486 1728 2030 1486 1728 2030 1493 1731 2033 1487 1729 2031 1495 1732 2034 1489 1725 2027 1494 1733 2035 1494 1733 2035 1489 1725 2027 1488 1724 2026 1495 1732 2034 1496 1734 2036 1489 1725 2027 1489 1725 2027 1496 1734 2036 1490 1726 2028 1490 1726 2028 1496 1734 2036 1491 1727 2029 1491 1727 2029 1496 1734 2036 1497 1735 2037 871 990 1679 878 997 1686 1492 1730 2032 1492 1730 2032 878 997 1686 1498 1736 2038 1498 1736 2038 1499 1737 2039 1492 1730 2032 1492 1730 2032 1499 1737 2039 1493 1731 2033 1495 1732 2034 1494 1733 2035 1501 1738 2040 1501 1738 2040 1494 1733 2035 1500 1739 2041 1495 1732 2034 1501 1738 2040 1496 1734 2036 1496 1734 2036 1501 1738 2040 1502 1740 2042 1496 1734 2036 1502 1740 2042 1497 1735 2037 1497 1735 2037 1502 1740 2042 1503 1741 2043 878 997 1686 885 1004 1693 1498 1736 2038 1498 1736 2038 885 1004 1693 1504 1742 2044 1498 1736 2038 1504 1742 2044 1499 1737 2039 1499 1737 2039 1504 1742 2044 1505 1743 2045 1507 1744 2046 1501 1738 2040 1506 1745 2047 1506 1745 2047 1501 1738 2040 1500 1739 2041 1501 1738 2040 1507 1744 2046 1502 1740 2042 1502 1740 2042 1507 1744 2046 1508 1746 2048 1502 1740 2042 1508 1746 2048 1503 1741 2043 1503 1741 2043 1508 1746 2048 1509 1747 2049 885 1004 1693 892 1011 1700 1504 1742 2044 1504 1742 2044 892 1011 1700 1510 1748 2050 1504 1742 2044 1510 1748 2050 1505 1743 2045 1505 1743 2045 1510 1748 2050 1511 1749 2051 1512 1751 2053 1507 1744 2046 1882 1750 2052 1882 1750 2052 1507 1744 2046 1506 1745 2047 1507 1744 2046 1512 1751 2053 1508 1746 2048 1508 1746 2048 1512 1751 2053 1513 1752 2054 1508 1746 2048 1513 1752 2054 1509 1747 2049 1509 1747 2049 1513 1752 2054 1883 1753 2055 1509 1747 2049 1883 1753 2055 1904 1755 2057 1904 1755 2057 1883 1753 2055 1514 1754 2056 1904 1755 2057 1985 1019 1708 1903 1756 2058 1903 1756 2058 1985 1019 1708 1986 1021 1710 892 1011 1700 898 1023 1712 1510 1748 2050 1510 1748 2050 898 1023 1712 1515 1757 2059 1510 1748 2050 1515 1757 2059 1511 1749 2051 1511 1749 2051 1515 1757 2059 1516 1758 2060 1312 1025 1714 905 1028 1717 1881 1760 2062 1881 1760 2062 905 1028 1717 1521 1759 2061 1338 1565 1867 907 1029 1718 696 807 1496 1339 1567 1869 907 1029 1718 1338 1565 1867 1340 1569 1871 907 1029 1718 1339 1567 1869 1341 1571 1873 907 1029 1718 1340 1569 1871 1342 1573 1875 907 1029 1718 1341 1571 1873 1343 1575 1877 907 1029 1718 1342 1573 1875 1344 1577 1879 907 1029 1718 1343 1575 1877 1345 1579 1881 907 1029 1718 1344 1577 1879 1346 1581 1883 907 1029 1718 1345 1579 1881 1347 1583 1885 907 1029 1718 1346 1581 1883 1348 1585 1887 907 1029 1718 1347 1583 1885 1348 1585 1887 1897 1587 1889 907 1029 1718 1973 1589 1891 907 1029 1718 1897 1587 1889 1555 1761 692 1621 1762 693 1594 1764 695 1594 1764 695 1621 1762 693 1658 1763 694 1621 1762 693 1555 1761 692 1642 1766 697 1642 1766 697 1555 1761 692 1570 1765 696 1556 1767 698 1621 1762 693 1572 1768 699 1572 1768 699 1621 1762 693 1642 1766 697 1621 1762 693 1556 1767 698 1658 1763 694 1658 1763 694 1556 1767 698 1595 1769 700 1557 1770 701 1622 1771 702 1593 1773 704 1593 1773 704 1622 1771 702 1657 1772 703 1622 1771 702 1557 1770 701 1643 1775 706 1643 1775 706 1557 1770 701 1569 1774 705 1555 1761 692 1622 1771 702 1570 1765 696 1570 1765 696 1622 1771 702 1643 1775 706 1622 1771 702 1555 1761 692 1657 1772 703 1657 1772 703 1555 1761 692 1594 1764 695 1558 1776 707 1623 1777 708 1592 1779 710 1592 1779 710 1623 1777 708 1656 1778 709 1623 1777 708 1558 1776 707 1641 1781 712 1641 1781 712 1558 1776 707 1567 1780 711 1557 1770 701 1623 1777 708 1569 1774 705 1569 1774 705 1623 1777 708 1641 1781 712 1623 1777 708 1557 1770 701 1656 1778 709 1656 1778 709 1557 1770 701 1593 1773 704 1624 1783 714 1655 1784 715 1559 1782 713 1559 1782 713 1655 1784 715 1591 1785 716 1624 1783 714 1559 1782 713 1644 1787 718 1644 1787 718 1559 1782 713 1574 1786 717 1558 1776 707 1624 1783 714 1567 1780 711 1567 1780 711 1624 1783 714 1644 1787 718 1624 1783 714 1558 1776 707 1655 1784 715 1655 1784 715 1558 1776 707 1592 1779 710 1560 1789 720 1578 1790 721 1625 1788 719 1625 1788 719 1578 1790 721 1646 1791 722 1625 1788 719 1646 1791 722 1559 1782 713 1559 1782 713 1646 1791 722 1574 1786 717 1625 1788 719 1681 1792 723 1560 1789 720 1560 1789 720 1681 1792 723 1680 1793 724 1626 1795 726 1654 1796 727 1561 1794 725 1561 1794 725 1654 1796 727 1590 1797 728 1561 1794 725 1582 1798 729 1626 1795 726 1626 1795 726 1582 1798 729 1648 1799 730 1626 1795 726 1648 1799 730 1560 1789 720 1560 1789 720 1648 1799 730 1578 1790 721 1560 1789 720 1680 1793 724 1626 1795 726 1626 1795 726 1680 1793 724 1654 1796 727 1627 1801 732 1653 1802 733 1562 1800 731 1562 1800 731 1653 1802 733 1589 1803 734 1562 1800 731 1585 1804 735 1627 1801 732 1627 1801 732 1585 1804 735 1650 1805 736 1627 1801 732 1650 1805 736 1561 1794 725 1561 1794 725 1650 1805 736 1582 1798 729 1561 1794 725 1590 1797 728 1627 1801 732 1627 1801 732 1590 1797 728 1653 1802 733 1628 1807 738 1652 1808 739 1563 1806 737 1563 1806 737 1652 1808 739 1587 1809 740 1563 1806 737 1581 1810 741 1628 1807 738 1628 1807 738 1581 1810 741 1649 1811 742 1628 1807 738 1649 1811 742 1562 1800 731 1562 1800 731 1649 1811 742 1585 1804 735 1562 1800 731 1589 1803 734 1628 1807 738 1628 1807 738 1589 1803 734 1652 1808 739 1629 1813 744 1651 1814 745 1564 1812 743 1564 1812 743 1651 1814 745 1588 1815 746 1564 1812 743 1577 1816 747 1629 1813 744 1629 1813 744 1577 1816 747 1647 1817 748 1629 1813 744 1647 1817 748 1563 1806 737 1563 1806 737 1647 1817 748 1581 1810 741 1563 1806 737 1587 1809 740 1629 1813 744 1629 1813 744 1587 1809 740 1651 1814 745 1556 1767 698 1630 1818 749 1595 1769 700 1595 1769 700 1630 1818 749 1659 1819 750 1630 1818 749 1556 1767 698 1645 1820 752 1645 1820 752 1556 1767 698 1572 1768 699 1564 1812 743 1630 1818 749 1577 1816 747 1577 1816 747 1630 1818 749 1645 1820 752 1630 1818 749 1564 1812 743 1659 1819 750 1659 1819 750 1564 1812 743 1588 1815 746 1595 1769 700 1587 1809 740 1658 1763 694 1658 1763 694 1587 1809 740 1652 1808 739 1600 1822 2064 1927 1823 2065 1662 1821 2063 1662 1821 2063 1927 1823 2065 1926 1824 2066 1537 1826 2068 1925 1827 2069 1631 1825 2067 1631 1825 2067 1925 1827 2069 1926 1824 2066 1604 1829 2071 1934 1830 2072 1664 1828 2070 1664 1828 2070 1934 1830 2072 1932 1831 2073 1539 1833 2075 1930 1834 2076 1632 1832 2074 1632 1832 2074 1930 1834 2076 1932 1831 2073 1523 1836 2078 1930 1834 2076 1665 1835 2077 1665 1835 2077 1930 1834 2076 1928 1837 2079 1565 1839 2081 1927 1823 2065 1633 1838 2080 1633 1838 2080 1927 1823 2065 1928 1837 2079 1666 1840 2082 1522 1841 2083 1929 1842 2084 1929 1842 2084 1522 1841 2083 1925 1827 2069 1538 1844 2086 1931 1845 2087 1634 1843 2085 1634 1843 2085 1931 1845 2087 1929 1842 2084 1524 1847 2089 1931 1845 2087 1667 1846 2088 1667 1846 2088 1931 1845 2087 1933 1848 2090 1635 1849 2091 1540 1850 2092 1933 1848 2090 1933 1848 2090 1540 1850 2092 1935 1851 2093 1636 1852 2094 1541 1853 2095 1937 1855 2097 1937 1855 2097 1541 1853 2095 1939 1854 2096 1660 1856 2098 1596 1857 2099 1937 1855 2097 1937 1855 2097 1596 1857 2099 1935 1851 2093 1661 1858 2100 1598 1859 2101 1941 1860 2102 1941 1860 2102 1598 1859 2101 1939 1854 2096 1637 1861 2103 1543 1862 2104 1941 1860 2102 1941 1860 2102 1543 1862 2104 1943 1863 2105 1668 1864 2106 1525 1865 2107 1944 1866 2108 1944 1866 2108 1525 1865 2107 1943 1863 2105 1638 1867 2109 1544 1868 2110 1944 1866 2108 1944 1866 2108 1544 1868 2110 1942 1869 2111 1663 1870 2112 1602 1871 2113 1940 1872 2114 1940 1872 2114 1602 1871 2113 1942 1869 2111 1639 1873 2115 1542 1874 2116 1940 1872 2114 1940 1872 2114 1542 1874 2116 1938 1875 2117 1669 1876 2118 1526 1877 2119 1936 1878 2120 1936 1878 2120 1526 1877 2119 1938 1875 2117 1640 1879 2121 1566 1880 2122 1936 1878 2120 1936 1878 2120 1566 1880 2122 1934 1830 2072 1528 1881 944 1568 1882 949 1567 1780 711 1567 1780 711 1568 1882 949 1641 1781 712 1568 1883 949 1527 1884 947 1641 1781 712 1641 1781 712 1527 1884 947 1569 1774 705 1530 1885 946 1571 1886 948 1570 1765 696 1570 1765 696 1571 1886 948 1642 1766 697 1571 1887 948 1529 1888 942 1642 1766 697 1642 1766 697 1529 1888 942 1572 1768 699 1527 1889 947 1573 1890 945 1569 1774 705 1569 1774 705 1573 1890 945 1643 1775 706 1573 1891 945 1530 1892 946 1643 1775 706 1643 1775 706 1530 1892 946 1570 1765 696 1531 1893 940 1575 1894 943 1574 1786 717 1574 1786 717 1575 1894 943 1644 1787 718 1575 1895 943 1528 1896 944 1644 1787 718 1644 1787 718 1528 1896 944 1567 1780 711 1529 1897 942 1576 1898 941 1572 1768 699 1572 1768 699 1576 1898 941 1645 1820 752 1576 1899 941 1532 1900 938 1645 1820 752 1645 1820 752 1532 1900 938 1577 1816 747 1578 1790 721 1533 1901 936 1646 1791 722 1646 1791 722 1533 1901 936 1579 1902 939 1531 1904 940 1574 1786 717 1579 1903 939 1579 1903 939 1574 1786 717 1646 1791 722 1577 1816 747 1532 1905 938 1647 1817 748 1647 1817 748 1532 1905 938 1580 1906 937 1534 1908 934 1581 1810 741 1580 1907 937 1580 1907 937 1581 1810 741 1647 1817 748 1582 1798 729 1535 1909 931 1648 1799 730 1648 1799 730 1535 1909 931 1583 1910 935 1533 1912 936 1578 1790 721 1583 1911 935 1583 1911 935 1578 1790 721 1648 1799 730 1581 1810 741 1534 1913 934 1649 1811 742 1649 1811 742 1534 1913 934 1584 1914 933 1536 1916 932 1585 1804 735 1584 1915 933 1584 1915 933 1585 1804 735 1649 1811 742 1585 1804 735 1536 1917 932 1650 1805 736 1650 1805 736 1536 1917 932 1586 1918 930 1535 1920 931 1582 1798 729 1586 1919 930 1586 1919 930 1582 1798 729 1650 1805 736 1568 1921 2123 1528 1922 2124 1634 1843 2085 1634 1843 2085 1528 1922 2124 1538 1844 2086 1634 1843 2085 1537 1826 2068 1568 1923 2123 1568 1923 2123 1537 1826 2068 1527 1924 2125 1571 1925 2126 1530 1926 2127 1633 1838 2080 1633 1838 2080 1530 1926 2127 1565 1839 2081 1571 1927 2126 1633 1838 2080 1529 1928 2128 1529 1928 2128 1633 1838 2080 1539 1833 2075 1573 1929 2129 1527 1930 2125 1631 1825 2067 1631 1825 2067 1527 1930 2125 1537 1826 2068 1631 1825 2067 1565 1839 2081 1573 1931 2129 1573 1931 2129 1565 1839 2081 1530 1932 2127 1575 1933 2130 1531 1934 2131 1635 1849 2091 1635 1849 2091 1531 1934 2131 1540 1850 2092 1635 1849 2091 1538 1844 2086 1575 1935 2130 1575 1935 2130 1538 1844 2086 1528 1936 2124 1529 1938 2128 1539 1833 2075 1576 1937 2132 1576 1937 2132 1539 1833 2075 1632 1832 2074 1576 1939 2132 1632 1832 2074 1532 1940 2133 1532 1940 2133 1632 1832 2074 1566 1880 2122 1579 1941 2134 1533 1942 2135 1636 1852 2094 1636 1852 2094 1533 1942 2135 1541 1853 2095 1636 1852 2094 1540 1850 2092 1579 1943 2134 1579 1943 2134 1540 1850 2092 1531 1944 2131 1532 1946 2133 1566 1880 2122 1580 1945 2136 1580 1945 2136 1566 1880 2122 1640 1879 2121 1580 1947 2136 1640 1879 2121 1534 1948 2137 1534 1948 2137 1640 1879 2121 1542 1874 2116 1583 1949 2138 1535 1950 2139 1637 1861 2103 1637 1861 2103 1535 1950 2139 1543 1862 2104 1637 1861 2103 1541 1853 2095 1583 1951 2138 1583 1951 2138 1541 1853 2095 1533 1952 2135 1534 1954 2137 1542 1874 2116 1584 1953 2140 1584 1953 2140 1542 1874 2116 1639 1873 2115 1584 1955 2140 1639 1873 2115 1536 1956 2141 1536 1956 2141 1639 1873 2115 1544 1868 2110 1586 1957 2142 1536 1958 2141 1638 1867 2109 1638 1867 2109 1536 1958 2141 1544 1868 2110 1638 1867 2109 1543 1862 2104 1586 1959 2142 1586 1959 2142 1543 1862 2104 1535 1960 2139 1546 1961 2143 1610 1962 2144 1598 1859 2101 1598 1859 2101 1610 1962 2144 1660 1856 2098 1545 1963 2145 1596 1857 2099 1610 1962 2144 1610 1962 2144 1596 1857 2099 1660 1856 2098 1547 1964 2146 1597 1965 2147 1525 1865 2107 1525 1865 2107 1597 1965 2147 1661 1858 2100 1597 1965 2147 1546 1961 2143 1661 1858 2100 1661 1858 2100 1546 1961 2143 1598 1859 2101 1522 1841 2083 1549 1966 2148 1662 1821 2063 1662 1821 2063 1549 1966 2148 1599 1967 2149 1548 1968 2150 1600 1822 2064 1599 1967 2149 1599 1967 2149 1600 1822 2064 1662 1821 2063 1551 1969 2151 1601 1970 2152 1526 1877 2119 1526 1877 2119 1601 1970 2152 1663 1870 2112 1601 1970 2152 1550 1971 2153 1663 1870 2112 1663 1870 2112 1550 1971 2153 1602 1871 2113 1523 1836 2078 1553 1972 2154 1664 1828 2070 1664 1828 2070 1553 1972 2154 1603 1973 2155 1603 1973 2155 1552 1974 2156 1664 1828 2070 1664 1828 2070 1552 1974 2156 1604 1829 2071 1600 1822 2064 1548 1968 2150 1665 1835 2077 1665 1835 2077 1548 1968 2150 1605 1975 2157 1553 1972 2154 1523 1836 2078 1605 1975 2157 1605 1975 2157 1523 1836 2078 1665 1835 2077 1524 1847 2089 1554 1976 2158 1666 1840 2082 1666 1840 2082 1554 1976 2158 1606 1977 2159 1549 1966 2148 1522 1841 2083 1606 1977 2159 1606 1977 2159 1522 1841 2083 1666 1840 2082 1596 1857 2099 1545 1963 2145 1667 1846 2088 1667 1846 2088 1545 1963 2145 1607 1978 2160 1554 1976 2158 1524 1847 2089 1607 1978 2160 1607 1978 2160 1524 1847 2089 1667 1846 2088 1550 1971 2153 1608 1979 2161 1602 1871 2113 1602 1871 2113 1608 1979 2161 1668 1864 2106 1608 1979 2161 1547 1964 2146 1668 1864 2106 1668 1864 2106 1547 1964 2146 1525 1865 2107 1552 1974 2156 1609 1980 2162 1604 1829 2071 1604 1829 2071 1609 1980 2162 1669 1876 2118 1609 1980 2162 1551 1969 2151 1669 1876 2118 1669 1876 2118 1551 1969 2151 1526 1877 2119 1546 1961 2143 1611 1981 2163 1610 1962 2144 1610 1962 2144 1611 1981 2163 1670 1982 2164 1612 1983 2165 1545 1963 2145 1670 1982 2164 1670 1982 2164 1545 1963 2145 1610 1962 2144 1597 1965 2147 1547 1964 2146 1671 1985 2167 1671 1985 2167 1547 1964 2146 1613 1984 2166 1546 1961 2143 1597 1965 2147 1611 1981 2163 1611 1981 2163 1597 1965 2147 1671 1985 2167 1549 1966 2148 1614 1986 2168 1599 1967 2149 1599 1967 2149 1614 1986 2168 1672 1987 2169 1615 1988 2170 1548 1968 2150 1672 1987 2169 1672 1987 2169 1548 1968 2150 1599 1967 2149 1601 1970 2152 1551 1969 2151 1673 1990 2172 1673 1990 2172 1551 1969 2151 1616 1989 2171 1550 1971 2153 1601 1970 2152 1617 1991 2173 1617 1991 2173 1601 1970 2152 1673 1990 2172 1603 1973 2155 1553 1972 2154 1674 1993 2175 1674 1993 2175 1553 1972 2154 1618 1992 2174 1552 1974 2156 1603 1973 2155 1619 1994 2176 1619 1994 2176 1603 1973 2155 1674 1993 2175 1548 1968 2150 1615 1988 2170 1605 1975 2157 1605 1975 2157 1615 1988 2170 1675 1995 2177 1618 1992 2174 1553 1972 2154 1675 1995 2177 1675 1995 2177 1553 1972 2154 1605 1975 2157 1554 1976 2158 1620 1996 2178 1606 1977 2159 1606 1977 2159 1620 1996 2178 1676 1997 2179 1614 1986 2168 1549 1966 2148 1676 1997 2179 1676 1997 2179 1549 1966 2148 1606 1977 2159 1545 1963 2145 1612 1983 2165 1607 1978 2160 1607 1978 2160 1612 1983 2165 1677 1998 2180 1620 1996 2178 1554 1976 2158 1677 1998 2180 1677 1998 2180 1554 1976 2158 1607 1978 2160 1608 1979 2161 1550 1971 2153 1678 1999 2181 1678 1999 2181 1550 1971 2153 1617 1991 2173 1547 1964 2146 1608 1979 2161 1613 1984 2166 1613 1984 2166 1608 1979 2161 1678 1999 2181 1609 1980 2162 1552 1974 2156 1679 2000 2182 1679 2000 2182 1552 1974 2156 1619 1994 2176 1551 1969 2151 1609 1980 2162 1616 1989 2171 1616 1989 2171 1609 1980 2162 1679 2000 2182 1651 1814 745 1587 1809 740 1588 1815 746 1587 1809 740 1595 1769 700 1588 1815 746 1595 1769 700 1659 1819 750 1588 1815 746 1594 1764 695 1589 1803 734 1657 1772 703 1657 1772 703 1589 1803 734 1653 1802 733 1658 1763 694 1652 1808 739 1594 1764 695 1594 1764 695 1652 1808 739 1589 1803 734 1657 1772 703 1653 1802 733 1593 1773 704 1593 1773 704 1653 1802 733 1590 1797 728 1655 1784 715 1592 1779 710 1591 1785 716 1680 1793 724 1681 1792 723 1592 1779 710 1592 1779 710 1681 1792 723 1591 1785 716 1590 1797 728 1654 1796 727 1593 1773 704 1593 1773 704 1654 1796 727 1656 1778 709 1559 1782 713 1591 1785 716 1625 1788 719 1625 1788 719 1591 1785 716 1681 1792 723 1592 1779 710 1656 1778 709 1680 1793 724 1680 1793 724 1656 1778 709 1654 1796 727 1611 1981 2163 1519 2001 2183 1670 1982 2164 1670 1982 2164 1519 2001 2183 1520 2002 2184 1670 1982 2164 1520 2002 2184 1612 1983 2165 1612 1983 2165 1520 2002 2184 1882 1750 2052 1517 2003 2185 1518 2004 2186 1613 1984 2166 1613 1984 2166 1518 2004 2186 1671 1985 2167 1488 1724 2026 1485 1723 2025 1614 1986 2168 1614 1986 2168 1485 1723 2025 1672 1987 2169 1672 1987 2169 1485 1723 2025 1615 1988 2170 1615 1988 2170 1485 1723 2025 1476 1714 2016 1499 1737 2039 1505 1743 2045 1616 1989 2171 1616 1989 2171 1505 1743 2045 1673 1990 2172 1505 1743 2045 1511 1749 2051 1673 1990 2172 1673 1990 2172 1511 1749 2051 1617 1991 2173 1618 1992 2174 1474 1712 2014 1674 1993 2175 1674 1993 2175 1474 1712 2014 1484 1722 2024 1674 1993 2175 1484 1722 2024 1619 1994 2176 1619 1994 2176 1484 1722 2024 1487 1729 2031 1476 1714 2016 1475 1713 2015 1615 1988 2170 1615 1988 2170 1475 1713 2015 1675 1995 2177 1675 1995 2177 1475 1713 2015 1618 1992 2174 1618 1992 2174 1475 1713 2015 1474 1712 2014 1620 1996 2178 1500 1739 2041 1676 1997 2179 1676 1997 2179 1500 1739 2041 1494 1733 2035 1676 1997 2179 1494 1733 2035 1614 1986 2168 1614 1986 2168 1494 1733 2035 1488 1724 2026 1677 1998 2180 1506 1745 2047 1620 1996 2178 1620 1996 2178 1506 1745 2047 1500 1739 2041 1617 1991 2173 1511 1749 2051 1678 1999 2181 1678 1999 2181 1511 1749 2051 1516 1758 2060 1516 1758 2060 1517 2003 2185 1678 1999 2181 1678 1999 2181 1517 2003 2185 1613 1984 2166 1619 1994 2176 1487 1729 2031 1679 2000 2182 1679 2000 2182 1487 1729 2031 1493 1731 2033 1679 2000 2182 1493 1731 2033 1616 1989 2171 1616 1989 2171 1493 1731 2033 1499 1737 2039 1518 2004 2186 1519 2001 2183 1671 1985 2167 1671 1985 2167 1519 2001 2183 1611 1981 2163 1487 1729 2031 1484 1722 2024 1483 1721 2023 1484 1722 2024 1474 1712 2014 1473 1711 2013 1677 1998 2180 1612 1983 2165 1506 1745 2047 1506 1745 2047 1612 1983 2165 1882 1750 2052 1807 2005 620 1687 2006 621 1721 2007 622 1687 2006 621 1722 2008 623 1721 2007 622 1721 2007 622 1722 2008 623 1807 2005 620 1723 2009 624 1070 1282 380 1808 2010 625 1808 2010 625 1070 1282 380 1092 1281 379 1879 2012 627 1723 2009 624 1878 2011 626 1878 2011 626 1723 2009 624 1808 2010 625 1723 2009 624 1879 2012 627 1809 2014 629 1809 2014 629 1879 2012 627 1880 2013 628 1093 1289 387 1809 2014 629 1110 1287 385 1110 1287 385 1809 2014 629 1857 2015 630 1070 1282 380 1723 2009 624 1093 1289 387 1093 1289 387 1723 2009 624 1809 2014 629 1867 2017 632 1724 2018 633 1789 2016 631 1789 2016 631 1724 2018 633 1688 2019 634 1724 2018 633 1867 2017 632 1683 2020 635 1683 2020 635 1867 2017 632 1685 2021 636 1725 2023 638 1720 2024 639 1690 2022 637 1690 2022 637 1720 2024 639 1682 2025 640 1071 1300 398 1069 2026 399 1725 2023 638 1725 2023 638 1069 2026 399 1720 2027 639 1724 2018 633 1683 2028 635 1810 2030 642 1810 2030 642 1683 2028 635 1726 2029 641 1684 2032 643 1847 2033 644 1726 2031 641 1726 2031 641 1847 2033 644 1810 2030 642 1847 2033 644 1792 2034 645 1810 2030 642 1810 2030 642 1792 2034 645 1727 2035 646 1688 2019 634 1724 2018 633 1727 2035 646 1727 2035 646 1724 2018 633 1810 2030 642 1844 2037 648 1728 2038 649 1788 2036 647 1788 2036 647 1728 2038 649 1691 2039 650 1789 2016 631 1688 2019 634 1844 2037 648 1844 2037 648 1688 2019 634 1728 2038 649 1729 2040 651 1693 2041 652 1811 2043 654 1811 2043 654 1693 2041 652 1730 2042 653 1694 2044 655 1815 2045 656 1730 2042 653 1730 2042 653 1815 2045 656 1811 2043 654 1815 2045 656 1731 2046 657 1811 2043 654 1731 2046 657 1692 2047 658 1811 2043 654 1811 2043 654 1692 2047 658 1729 2040 651 1732 2048 659 1690 2022 637 1812 2050 661 1812 2050 661 1690 2022 637 1689 2049 660 1695 2052 663 1732 2048 659 1790 2051 662 1790 2051 662 1732 2048 659 1812 2050 661 1732 2048 659 1695 2052 663 1813 2054 665 1813 2054 665 1695 2052 663 1733 2053 664 1072 1331 426 1094 1330 425 1733 2053 664 1733 2053 664 1094 1330 425 1813 2054 665 1094 1330 425 1071 1300 398 1813 2054 665 1813 2054 665 1071 1300 398 1725 2023 638 1690 2022 637 1732 2048 659 1725 2023 638 1725 2023 638 1732 2048 659 1813 2054 665 1848 2055 666 1793 2056 667 1814 2058 669 1814 2058 669 1793 2056 667 1734 2057 668 1734 2057 668 1691 2039 650 1814 2058 669 1814 2058 669 1691 2039 650 1728 2038 649 1688 2019 634 1727 2035 646 1728 2038 649 1728 2038 649 1727 2035 646 1814 2058 669 1792 2034 645 1848 2055 666 1727 2035 646 1727 2035 646 1848 2055 666 1814 2058 669 1694 2044 655 1696 2059 670 1815 2045 656 1815 2045 656 1696 2059 670 1735 2060 671 1735 2060 671 1736 2061 672 1815 2045 656 1698 2063 674 1737 2064 675 1778 2062 673 1778 2062 673 1737 2064 675 1699 2065 676 1737 2064 675 1779 2066 677 1699 2065 676 1699 2065 676 1779 2066 677 1866 2067 678 1738 2068 679 1073 1348 443 1816 2069 680 1816 2069 680 1073 1348 443 1095 1347 442 1095 1347 442 1074 1350 445 1816 2069 680 1816 2069 680 1074 1350 445 1836 2070 681 1779 2066 677 1737 2064 675 1836 2070 681 1836 2070 681 1737 2064 675 1816 2069 680 1698 2063 674 1738 2068 679 1737 2064 675 1737 2064 675 1738 2068 679 1816 2069 680 1798 2071 682 1701 2072 683 1817 2074 685 1817 2074 685 1701 2072 683 1740 2073 684 1700 2075 686 1739 2076 687 1740 2073 684 1740 2073 684 1739 2076 687 1817 2074 685 1702 2078 689 1742 2079 690 1741 2077 688 1741 2077 688 1742 2079 690 1818 2080 691 1686 2081 751 1807 2005 620 1742 2079 690 1742 2079 690 1807 2005 620 1818 2080 691 1818 2080 691 1744 2082 753 1741 2077 688 1741 2077 688 1744 2082 753 1871 2083 754 1722 2008 623 1743 2084 755 1807 2005 620 1807 2005 620 1743 2084 755 1818 2080 691 1743 2084 755 1703 2085 756 1818 2080 691 1818 2080 691 1703 2085 756 1744 2082 753 1876 2087 758 1877 2088 759 1745 2086 757 1745 2086 757 1877 2088 759 1819 2089 760 1877 2088 759 1878 2011 626 1819 2089 760 1819 2089 760 1878 2011 626 1808 2010 625 1808 2010 625 1092 1281 379 1819 2089 760 1819 2089 760 1092 1281 379 1096 1369 464 1075 1370 465 1745 2086 757 1096 1369 464 1096 1369 464 1745 2086 757 1819 2089 760 1788 2036 647 1691 2039 650 1843 2091 762 1843 2091 762 1691 2039 650 1746 2090 761 1843 2091 762 1746 2090 761 1704 2092 763 1704 2092 763 1746 2090 761 1705 2093 764 1747 2094 765 1706 2095 766 1820 2097 768 1820 2097 768 1706 2095 766 1748 2096 767 1707 2098 769 1749 2099 770 1748 2096 767 1748 2096 767 1749 2099 770 1820 2097 768 1749 2099 770 1702 2078 689 1820 2097 768 1820 2097 768 1702 2078 689 1741 2077 688 1706 2095 766 1747 2094 765 1750 2100 771 1750 2100 771 1747 2094 765 1821 2101 772 1744 2082 753 1805 2103 774 1871 2083 754 1751 2102 773 1871 2083 754 1805 2103 774 1751 2102 773 1696 2059 670 1821 2101 772 1821 2101 772 1696 2059 670 1752 2104 775 1708 2105 776 1750 2100 771 1752 2104 775 1752 2104 775 1750 2100 771 1821 2101 772 1702 2078 689 1749 2099 770 1753 2106 777 1753 2106 777 1749 2099 770 1822 2107 778 1749 2099 770 1707 2098 769 1822 2107 778 1822 2107 778 1707 2098 769 1754 2108 779 1802 2109 780 1856 2110 781 1754 2108 779 1754 2108 779 1856 2110 781 1822 2107 778 1856 2110 781 1803 2111 782 1822 2107 778 1822 2107 778 1803 2111 782 1753 2106 777 1755 2113 784 1842 2114 785 1709 2112 783 1709 2112 783 1842 2114 785 1787 2115 786 1842 2114 785 1755 2113 784 1786 2116 787 1786 2116 787 1755 2113 784 1710 2117 788 1756 2118 789 1712 2119 790 1823 2121 792 1823 2121 792 1712 2119 790 1757 2120 791 1714 2122 793 1758 2123 794 1757 2120 791 1757 2120 791 1758 2123 794 1823 2121 792 1758 2123 794 1713 2124 795 1823 2121 792 1823 2121 792 1713 2124 795 1759 2125 796 1711 2126 797 1756 2118 789 1759 2125 796 1759 2125 796 1756 2118 789 1823 2121 792 1760 2127 798 1715 2128 799 1824 2130 801 1824 2130 801 1715 2128 799 1761 2129 800 1700 2075 686 1762 2131 802 1761 2129 800 1761 2129 800 1762 2131 802 1824 2130 801 1712 2119 790 1756 2118 789 1762 2131 802 1762 2131 802 1756 2118 789 1824 2130 801 1756 2118 789 1711 2126 797 1824 2130 801 1824 2130 801 1711 2126 797 1760 2127 798 1763 2132 803 1795 2133 804 1825 2135 806 1825 2135 806 1795 2133 804 1851 2134 805 1796 2136 807 1764 2137 808 1851 2134 805 1851 2134 805 1764 2137 808 1825 2135 806 1764 2137 808 1710 2117 788 1825 2135 806 1825 2135 806 1710 2117 788 1755 2113 784 1709 2112 783 1763 2132 803 1755 2113 784 1755 2113 784 1763 2132 803 1825 2135 806 1713 2124 795 1758 2123 794 1765 2138 809 1765 2138 809 1758 2123 794 1826 2139 810 1758 2123 794 1714 2122 793 1826 2139 810 1826 2139 810 1714 2122 793 1766 2140 811 1800 2141 812 1854 2142 813 1766 2140 811 1766 2140 811 1854 2142 813 1826 2139 810 1854 2142 813 1801 2143 814 1826 2139 810 1826 2139 810 1801 2143 814 1765 2138 809 1786 2116 787 1710 2117 788 1841 2144 815 1841 2144 815 1710 2117 788 1764 2137 808 1797 2145 816 1841 2144 815 1796 2136 807 1796 2136 807 1841 2144 815 1764 2137 808 1799 2147 818 1853 2148 819 1767 2146 817 1767 2146 817 1853 2148 819 1827 2149 820 1853 2148 819 1800 2141 812 1827 2149 820 1827 2149 820 1800 2141 812 1766 2140 811 1766 2140 811 1714 2122 793 1827 2149 820 1827 2149 820 1714 2122 793 1757 2120 791 1712 2119 790 1767 2146 817 1757 2120 791 1757 2120 791 1767 2146 817 1827 2149 820 1768 2150 821 1695 2052 663 1828 2151 822 1828 2151 822 1695 2052 663 1790 2051 662 1716 2153 824 1768 2150 821 1791 2152 823 1791 2152 823 1768 2150 821 1828 2151 822 1717 2155 826 1769 2156 827 1770 2154 825 1770 2154 825 1769 2156 827 1829 2157 828 1744 2082 753 1703 2085 756 1830 2159 830 1830 2159 830 1703 2085 756 1771 2158 829 1771 2158 829 1875 2161 832 1872 2160 831 1872 2160 831 1875 2161 832 1874 2162 833 1768 2150 821 1716 2153 824 1831 2164 835 1831 2164 835 1716 2153 824 1773 2163 834 1076 1447 542 1097 1446 541 1773 2163 834 1773 2163 834 1097 1446 541 1831 2164 835 1097 1446 541 1072 1331 426 1831 2164 835 1831 2164 835 1072 1331 426 1733 2053 664 1695 2052 663 1768 2150 821 1733 2053 664 1733 2053 664 1768 2150 821 1831 2164 835 1876 2087 758 1745 2086 757 1875 2161 832 1875 2161 832 1745 2086 757 1832 2165 836 1745 2086 757 1075 1370 465 1832 2165 836 1832 2165 836 1075 1370 465 1098 1449 544 1077 1451 546 1774 2166 837 1098 1449 544 1098 1449 544 1774 2166 837 1832 2165 836 1774 2166 837 1874 2162 833 1832 2165 836 1832 2165 836 1874 2162 833 1875 2161 832 1718 2167 838 1716 2153 824 1846 2168 839 1846 2168 839 1716 2153 824 1791 2152 823 1769 2156 827 1717 2155 826 1776 2170 841 1776 2170 841 1717 2155 826 1775 2169 840 1872 2160 831 1874 2162 833 1835 2171 842 1835 2171 842 1874 2162 833 1873 2172 843 1078 1458 553 1076 1447 542 1833 2173 844 1833 2173 844 1076 1447 542 1773 2163 834 1716 2153 824 1718 2167 838 1773 2163 834 1773 2163 834 1718 2167 838 1833 2173 844 1774 2166 837 1077 1451 546 1834 2174 845 1834 2174 845 1077 1451 546 1099 1461 556 1874 2162 833 1774 2166 837 1873 2172 843 1873 2172 843 1774 2166 837 1834 2174 845 1776 2170 841 1775 2169 840 1699 2065 676 1699 2065 676 1775 2169 840 1778 2062 673 1074 1350 445 1078 1458 553 1836 2070 681 1836 2070 681 1078 1458 553 1833 2173 844 1718 2167 838 1779 2066 677 1833 2173 844 1833 2173 844 1779 2066 677 1836 2070 681 1794 2176 847 1780 2177 848 1849 2175 846 1849 2175 846 1780 2177 848 1837 2178 849 1780 2177 848 1705 2093 764 1837 2178 849 1837 2178 849 1705 2093 764 1746 2090 761 1691 2039 650 1734 2057 668 1746 2090 761 1746 2090 761 1734 2057 668 1837 2178 849 1734 2057 668 1793 2056 667 1837 2178 849 1837 2178 849 1793 2056 667 1849 2175 846 1855 2179 850 1802 2109 780 1838 2180 851 1838 2180 851 1802 2109 780 1754 2108 779 1707 2098 769 1781 2181 852 1754 2108 779 1754 2108 779 1781 2181 852 1838 2180 851 1781 2181 852 1713 2124 795 1838 2180 851 1838 2180 851 1713 2124 795 1765 2138 809 1801 2143 814 1855 2179 850 1765 2138 809 1765 2138 809 1855 2179 850 1838 2180 851 1719 2182 853 1715 2128 799 1839 2184 855 1839 2184 855 1715 2128 799 1782 2183 854 1708 2105 776 1783 2185 856 1782 2183 854 1782 2183 854 1783 2185 856 1839 2184 855 1704 2092 763 1705 2093 764 1870 2187 858 1870 2187 858 1705 2093 764 1784 2186 857 1709 2112 783 1787 2115 786 1784 2186 857 1784 2186 857 1787 2115 786 1870 2187 858 1785 2188 859 1711 2126 797 1840 2189 860 1840 2189 860 1711 2126 797 1759 2125 796 1713 2124 795 1781 2181 852 1759 2125 796 1759 2125 796 1781 2181 852 1840 2189 860 1781 2181 852 1707 2098 769 1840 2189 860 1840 2189 860 1707 2098 769 1748 2096 767 1706 2095 766 1785 2188 859 1748 2096 767 1748 2096 767 1785 2188 859 1840 2189 860 1797 2145 816 1798 2071 682 1841 2144 815 1841 2144 815 1798 2071 682 1817 2074 685 1739 2076 687 1786 2116 787 1817 2074 685 1817 2074 685 1786 2116 787 1841 2144 815 1786 2116 787 1739 2076 687 1842 2114 785 1842 2114 785 1739 2076 687 1863 2190 861 1719 2182 853 1787 2115 786 1863 2190 861 1863 2190 861 1787 2115 786 1842 2114 785 1704 2092 763 1783 2185 856 1843 2091 762 1843 2091 762 1783 2185 856 1860 2191 862 1694 2044 655 1788 2036 647 1860 2191 862 1860 2191 862 1788 2036 647 1843 2091 762 1788 2036 647 1694 2044 655 1844 2037 648 1844 2037 648 1694 2044 655 1730 2042 653 1693 2041 652 1789 2016 631 1730 2042 653 1730 2042 653 1789 2016 631 1844 2037 648 1693 2041 652 1729 2040 651 1685 2192 636 1685 2192 636 1729 2040 651 1845 2193 863 1896 2194 864 1692 2047 658 1731 2046 657 1829 2157 828 1769 2156 827 1828 2151 822 1828 2151 822 1769 2156 827 1791 2152 823 1769 2156 827 1776 2170 841 1791 2152 823 1791 2152 823 1776 2170 841 1846 2168 839 1776 2170 841 1699 2065 676 1846 2168 839 1846 2168 839 1699 2065 676 1866 2067 678 1068 2196 577 1100 1483 576 1684 2195 643 1684 2195 643 1100 1483 576 1847 2033 644 1100 1483 576 1079 1485 578 1847 2033 644 1847 2033 644 1079 1485 578 1792 2034 645 1079 1485 578 1101 1486 579 1792 2034 645 1792 2034 645 1101 1486 579 1848 2055 666 1101 1486 579 1080 1487 580 1848 2055 666 1848 2055 666 1080 1487 580 1793 2056 667 1080 1487 580 1102 1488 581 1793 2056 667 1793 2056 667 1102 1488 581 1849 2175 846 1081 1489 582 1794 2176 847 1102 1488 581 1102 1488 581 1794 2176 847 1849 2175 846 1794 2176 847 1081 1489 582 1850 2197 865 1850 2197 865 1081 1489 582 1103 1491 584 1082 1492 585 1795 2133 804 1103 1491 584 1103 1491 584 1795 2133 804 1850 2197 865 1795 2133 804 1082 1492 585 1851 2134 805 1851 2134 805 1082 1492 585 1104 1493 586 1083 1494 587 1796 2136 807 1104 1493 586 1104 1493 586 1796 2136 807 1851 2134 805 1084 1495 588 1797 2145 816 1083 1494 587 1083 1494 587 1797 2145 816 1796 2136 807 1085 1496 589 1798 2071 682 1084 1495 588 1084 1495 588 1798 2071 682 1797 2145 816 1087 1499 592 1105 1498 591 1701 2072 683 1701 2072 683 1105 1498 591 1852 2198 866 1105 1498 591 1086 1500 593 1852 2198 866 1852 2198 866 1086 1500 593 1799 2147 818 1106 1501 594 1088 1502 595 1853 2148 819 1853 2148 819 1088 1502 595 1800 2141 812 1086 1500 593 1106 1501 594 1799 2147 818 1799 2147 818 1106 1501 594 1853 2148 819 1088 1502 595 1107 1503 596 1800 2141 812 1800 2141 812 1107 1503 596 1854 2142 813 1107 1503 596 1089 1504 597 1854 2142 813 1854 2142 813 1089 1504 597 1801 2143 814 1108 1505 598 1090 1506 599 1855 2179 850 1855 2179 850 1090 1506 599 1802 2109 780 1089 1504 597 1108 1505 598 1801 2143 814 1801 2143 814 1108 1505 598 1855 2179 850 1090 1506 599 1109 1507 600 1802 2109 780 1802 2109 780 1109 1507 600 1856 2110 781 1109 1507 600 1091 1508 601 1856 2110 781 1856 2110 781 1091 1508 601 1803 2111 782 1091 1508 601 1110 1287 385 1803 2111 782 1803 2111 782 1110 1287 385 1857 2015 630 1738 2068 679 1698 2063 674 1858 2200 868 1858 2200 868 1698 2063 674 1804 2199 867 1873 2172 843 1834 2174 845 1804 2199 867 1804 2199 867 1834 2174 845 1858 2200 868 1834 2174 845 1099 1461 556 1858 2200 868 1858 2200 868 1099 1461 556 1111 1511 604 1073 1348 443 1738 2068 679 1111 1511 604 1111 1511 604 1738 2068 679 1858 2200 868 1085 1496 589 1087 1499 592 1798 2071 682 1798 2071 682 1087 1499 592 1701 2072 683 1697 2201 869 1805 2103 774 1770 2154 825 1770 2154 825 1805 2103 774 1859 2202 870 1805 2103 774 1744 2082 753 1859 2202 870 1859 2202 870 1744 2082 753 1830 2159 830 1772 2203 871 1806 2204 872 1830 2159 830 1830 2159 830 1806 2204 872 1859 2202 870 1806 2204 872 1717 2155 826 1859 2202 870 1859 2202 870 1717 2155 826 1770 2154 825 1783 2185 856 1708 2105 776 1860 2191 862 1860 2191 862 1708 2105 776 1752 2104 775 1694 2044 655 1860 2191 862 1696 2059 670 1696 2059 670 1860 2191 862 1752 2104 775 1717 2155 826 1806 2204 872 1775 2169 840 1775 2169 840 1806 2204 872 1861 2205 873 1806 2204 872 1772 2203 871 1861 2205 873 1861 2205 873 1772 2203 871 1777 2206 874 1785 2188 859 1706 2095 766 1862 2207 875 1862 2207 875 1706 2095 766 1750 2100 771 1750 2100 771 1708 2105 776 1862 2207 875 1862 2207 875 1708 2105 776 1782 2183 854 1715 2128 799 1760 2127 798 1782 2183 854 1782 2183 854 1760 2127 798 1862 2207 875 1711 2126 797 1785 2188 859 1760 2127 798 1760 2127 798 1785 2188 859 1862 2207 875 1775 2169 840 1861 2205 873 1778 2062 673 1778 2062 673 1861 2205 873 1864 2208 876 1777 2206 874 1835 2171 842 1861 2205 873 1861 2205 873 1835 2171 842 1864 2208 876 1739 2076 687 1700 2075 686 1863 2190 861 1863 2190 861 1700 2075 686 1761 2129 800 1715 2128 799 1719 2182 853 1761 2129 800 1761 2129 800 1719 2182 853 1863 2190 861 1804 2199 867 1698 2063 674 1864 2208 876 1864 2208 876 1698 2063 674 1778 2062 673 1852 2198 866 1799 2147 818 1865 2209 877 1865 2209 877 1799 2147 818 1767 2146 817 1712 2119 790 1762 2131 802 1767 2146 817 1767 2146 817 1762 2131 802 1865 2209 877 1762 2131 802 1700 2075 686 1865 2209 877 1865 2209 877 1700 2075 686 1740 2073 684 1701 2072 683 1852 2198 866 1740 2073 684 1740 2073 684 1852 2198 866 1865 2209 877 1779 2066 677 1718 2167 838 1866 2067 678 1866 2067 678 1718 2167 838 1846 2168 839 1789 2016 631 1693 2041 652 1867 2017 632 1867 2017 632 1693 2041 652 1685 2210 636 1696 2059 670 1751 2102 773 1735 2060 671 1735 2060 671 1751 2102 773 1697 2201 869 1805 2103 774 1697 2201 869 1751 2102 773 1803 2111 782 1857 2015 630 1753 2106 777 1753 2106 777 1857 2015 630 1868 2211 878 1857 2015 630 1809 2014 629 1868 2211 878 1809 2014 629 1880 2013 628 1868 2211 878 1742 2079 690 1702 2078 689 1868 2211 878 1868 2211 878 1702 2078 689 1753 2106 777 1780 2177 848 1794 2176 847 1869 2212 879 1869 2212 879 1794 2176 847 1850 2197 865 1795 2133 804 1763 2132 803 1850 2197 865 1850 2197 865 1763 2132 803 1869 2212 879 1763 2132 803 1709 2112 783 1869 2212 879 1869 2212 879 1709 2112 783 1784 2186 857 1705 2093 764 1780 2177 848 1784 2186 857 1784 2186 857 1780 2177 848 1869 2212 879 1787 2115 786 1719 2182 853 1870 2187 858 1870 2187 858 1719 2182 853 1839 2184 855 1783 2185 856 1704 2092 763 1839 2184 855 1839 2184 855 1704 2092 763 1870 2187 858 1871 2083 754 1751 2102 773 1747 2094 765 1747 2094 765 1751 2102 773 1821 2101 772 1871 2083 754 1747 2094 765 1741 2077 688 1741 2077 688 1747 2094 765 1820 2097 768 1772 2203 871 1872 2160 831 1777 2206 874 1777 2206 874 1872 2160 831 1835 2171 842 1872 2160 831 1772 2203 871 1771 2158 829 1771 2158 829 1772 2203 871 1830 2159 830 1835 2171 842 1873 2172 843 1864 2208 876 1864 2208 876 1873 2172 843 1804 2199 867 1703 2085 756 1876 2087 758 1771 2158 829 1771 2158 829 1876 2087 758 1875 2161 832 1877 2088 759 1876 2087 758 1743 2084 755 1743 2084 755 1876 2087 758 1703 2085 756 1743 2084 755 1722 2008 623 1877 2088 759 1877 2088 759 1722 2008 623 1878 2011 626 1687 2006 621 1879 2012 627 1722 2008 623 1722 2008 623 1879 2012 627 1878 2011 626 1880 2013 628 1879 2012 627 1686 2081 751 1686 2081 751 1879 2012 627 1687 2006 621 1868 2211 878 1880 2013 628 1742 2079 690 1742 2079 690 1880 2013 628 1686 2081 751 1684 2214 2187 1886 2215 2188 1068 2213 1843 1068 2213 1843 1886 2215 2188 1319 1525 1844 1521 1759 2061 1886 2215 2188 1518 2004 2186 1518 2004 2186 1886 2215 2188 1887 2216 2189 1518 2004 2186 1517 2003 2185 1521 1759 2061 1521 1759 2061 1517 2003 2185 1881 1760 2062 1517 2003 2185 1516 1758 2060 1881 1760 2062 1881 1760 2062 1516 1758 2060 1515 1757 2059 898 1023 1712 1312 1025 1714 1515 1757 2059 1515 1757 2059 1312 1025 1714 1881 1760 2062 1683 2217 2190 1685 2218 2191 1888 2220 2193 1888 2220 2193 1685 2218 2191 1889 2219 2192 1882 1750 2052 1520 2002 2184 1890 2221 2194 1890 2221 2194 1520 2002 2184 1889 2219 2192 1885 2223 2196 1892 2224 2197 1884 2222 2195 1884 2222 2195 1892 2224 2197 1891 2225 2198 1514 1754 2056 1898 2226 2199 1315 1538 1857 1315 1538 1857 1898 2226 2199 1320 1539 1858 1518 2004 2186 1887 2216 2189 1519 2001 2183 1519 2001 2183 1887 2216 2189 1888 2220 2193 1882 1750 2052 1890 2221 2194 1512 1751 2053 1512 1751 2053 1890 2221 2194 1891 2225 2198 1729 2040 651 1692 2047 658 1845 2228 863 1845 2228 863 1692 2047 658 1884 2227 880 1690 2022 637 1682 2229 640 1689 2049 660 1689 2049 660 1682 2229 640 1885 2230 881 1513 1752 2054 1892 2224 2197 1883 1753 2055 1883 1753 2055 1892 2224 2197 1893 2231 2200 1884 2233 880 1692 2047 658 1885 2232 881 1885 2232 881 1692 2047 658 1689 2049 660 905 1028 1717 1319 1525 1844 1521 1759 2061 1521 1759 2061 1319 1525 1844 1886 2215 2188 1069 2235 1862 1320 1539 1858 1720 2234 2201 1720 2234 2201 1320 1539 1858 1898 2226 2199 1684 2236 2187 1726 2237 2202 1886 2215 2188 1886 2215 2188 1726 2237 2202 1887 2216 2189 1726 2238 2202 1683 2239 2190 1887 2216 2189 1887 2216 2189 1683 2239 2190 1888 2220 2193 1520 2002 2184 1519 2001 2183 1889 2219 2192 1889 2219 2192 1519 2001 2183 1888 2220 2193 1845 2241 2203 1890 2221 2194 1685 2240 2191 1685 2240 2191 1890 2221 2194 1889 2219 2192 1884 2243 2195 1891 2225 2198 1845 2242 2203 1845 2242 2203 1891 2225 2198 1890 2221 2194 1512 1751 2053 1891 2225 2198 1513 1752 2054 1513 1752 2054 1891 2225 2198 1892 2224 2197 1682 2245 2204 1893 2231 2200 1885 2244 2196 1885 2244 2196 1893 2231 2200 1892 2224 2197 1720 2247 2201 1898 2226 2199 1682 2246 2204 1682 2246 2204 1898 2226 2199 1893 2231 2200 1894 2248 882 1697 2201 869 1829 2157 828 1829 2157 828 1697 2201 869 1770 2154 825 1894 2248 882 1829 2157 828 1790 2051 662 1790 2051 662 1829 2157 828 1828 2151 822 1894 2248 882 1790 2051 662 1895 2249 883 1895 2249 883 1790 2051 662 1812 2050 661 1735 2060 671 1697 2201 869 1736 2061 672 1736 2061 672 1697 2201 869 1894 2248 882 1736 2061 672 1894 2248 882 1896 2194 864 1896 2194 864 1894 2248 882 1895 2249 883 1692 2047 658 1896 2194 864 1689 2049 660 1689 2049 660 1896 2194 864 1895 2249 883 1689 2049 660 1895 2249 883 1812 2050 661 1815 2045 656 1736 2061 672 1731 2046 657 1731 2046 657 1736 2061 672 1896 2194 864 1883 1753 2055 1893 2231 2200 1514 1754 2056 1514 1754 2056 1893 2231 2200 1898 2226 2199 1371 1600 1902 1899 1601 1903 1359 1584 1886 1359 1584 1886 1899 1601 1903 1360 1586 1888 1382 1613 1915 1900 1614 1916 1371 1600 1902 1371 1600 1902 1900 1614 1916 1899 1601 1903 1393 1626 1928 1901 1627 1929 1382 1613 1915 1382 1613 1915 1901 1627 1929 1900 1614 1916 1404 1639 1941 1902 1640 1942 1393 1626 1928 1393 1626 1928 1902 1640 1942 1901 1627 1929 1404 1639 1941 1415 1652 1954 1902 1640 1942 1902 1640 1942 1415 1652 1954 350 790 1479 1426 1664 1966 433 793 1482 1415 1652 1954 1415 1652 1954 433 793 1482 350 790 1479 1497 1735 2037 1903 1756 2058 430 806 1495 1503 1741 2043 1509 1747 2049 1903 1756 2058 1903 1756 2058 1509 1747 2049 1904 1755 2057 1051 1105 1734 986 1090 1719 1905 1106 1735 1905 1106 1735 986 1090 1719 1906 1093 1722 1048 1091 1720 908 1109 1738 1907 1092 1721 1907 1092 1721 908 1109 1738 1908 1096 1725 1017 1095 1724 951 1107 1736 1907 1092 1721 1907 1092 1721 951 1107 1736 1906 1093 1722 1019 1108 1737 925 1101 1730 1905 1106 1735 1905 1106 1735 925 1101 1730 1909 1103 1732 1020 1113 1742 923 1094 1723 1910 1111 1740 1910 1111 1740 923 1094 1723 1908 1096 1725 1050 1098 1727 909 1104 1733 1911 1099 1728 1911 1099 1728 909 1104 1733 1909 1103 1732 1052 1110 1739 910 1115 1744 1910 1111 1740 1910 1111 1740 910 1115 1744 1912 1114 1743 1018 1102 1731 952 1148 1777 1911 1099 1728 1911 1099 1728 952 1148 1777 1913 1100 1729 1021 1119 1748 924 1112 1741 1914 1117 1746 1914 1117 1746 924 1112 1741 1912 1114 1743 990 1097 1726 1913 1100 1729 1055 1146 1775 1055 1146 1775 1913 1100 1729 1915 1147 1776 982 1125 1754 1916 1120 1749 1053 1116 1745 1053 1116 1745 1916 1120 1749 1914 1117 1746 928 1142 1771 1917 1144 1773 1026 1149 1778 1026 1149 1778 1917 1144 1773 1915 1147 1776 926 1118 1747 1916 1120 1749 1022 1122 1751 1022 1122 1751 1916 1120 1749 1918 1123 1752 912 1145 1774 1917 1144 1773 1049 1140 1769 1049 1140 1769 1917 1144 1773 1919 1141 1770 984 1127 1756 1920 1124 1753 1046 1126 1755 1046 1126 1755 1920 1124 1753 1918 1123 1752 930 1136 1765 1921 1138 1767 1025 1143 1772 1025 1143 1772 1921 1138 1767 1919 1141 1770 927 1121 1750 1920 1124 1753 1023 1131 1760 1023 1131 1760 1920 1124 1753 1922 1129 1758 988 1139 1768 1921 1138 1767 1054 1134 1763 1054 1134 1763 1921 1138 1767 1923 1135 1764 911 1133 1762 1924 1132 1761 1047 1128 1757 1047 1128 1757 1924 1132 1761 1922 1129 1758 929 1130 1759 1924 1132 1761 1024 1137 1766 1024 1137 1766 1924 1132 1761 1923 1135 1764 1662 1821 2063 1926 1824 2066 1522 1841 2083 1522 1841 2083 1926 1824 2066 1925 1827 2069 1665 1835 2077 1928 1837 2079 1600 1822 2064 1600 1822 2064 1928 1837 2079 1927 1823 2065 1631 1825 2067 1926 1824 2066 1565 1839 2081 1565 1839 2081 1926 1824 2066 1927 1823 2065 1634 1843 2085 1929 1842 2084 1537 1826 2068 1537 1826 2068 1929 1842 2084 1925 1827 2069 1633 1838 2080 1928 1837 2079 1539 1833 2075 1539 1833 2075 1928 1837 2079 1930 1834 2076 1666 1840 2082 1929 1842 2084 1524 1847 2089 1524 1847 2089 1929 1842 2084 1931 1845 2087 1664 1828 2070 1932 1831 2073 1523 1836 2078 1523 1836 2078 1932 1831 2073 1930 1834 2076 1635 1849 2091 1933 1848 2090 1538 1844 2086 1538 1844 2086 1933 1848 2090 1931 1845 2087 1632 1832 2074 1932 1831 2073 1566 1880 2122 1566 1880 2122 1932 1831 2073 1934 1830 2072 1596 1857 2099 1667 1846 2088 1935 1851 2093 1935 1851 2093 1667 1846 2088 1933 1848 2090 1604 1829 2071 1669 1876 2118 1934 1830 2072 1934 1830 2072 1669 1876 2118 1936 1878 2120 1540 1850 2092 1636 1852 2094 1935 1851 2093 1935 1851 2093 1636 1852 2094 1937 1855 2097 1542 1874 2116 1640 1879 2121 1938 1875 2117 1938 1875 2117 1640 1879 2121 1936 1878 2120 1598 1859 2101 1660 1856 2098 1939 1854 2096 1939 1854 2096 1660 1856 2098 1937 1855 2097 1526 1877 2119 1663 1870 2112 1938 1875 2117 1938 1875 2117 1663 1870 2112 1940 1872 2114 1541 1853 2095 1637 1861 2103 1939 1854 2096 1939 1854 2096 1637 1861 2103 1941 1860 2102 1544 1868 2110 1639 1873 2115 1942 1869 2111 1942 1869 2111 1639 1873 2115 1940 1872 2114 1525 1865 2107 1661 1858 2100 1943 1863 2105 1943 1863 2105 1661 1858 2100 1941 1860 2102 1602 1871 2113 1668 1864 2106 1942 1869 2111 1942 1869 2111 1668 1864 2106 1944 1866 2108 1543 1862 2104 1638 1867 2109 1943 1863 2105 1943 1863 2105 1638 1867 2109 1944 1866 2108 651 570 1332 1945 675 1416 2087 571 1333 2087 571 1333 1945 675 1416 2086 2250 2205 374 512 1308 393 653 1394 1964 507 1303 1964 507 1303 393 653 1394 1945 675 1416 2086 2250 2205 1945 675 1416 2107 723 1448 2107 723 1448 1945 675 1416 393 653 1394 401 620 1368 521 619 1367 1949 771 1466 1949 771 1466 521 619 1367 1948 772 1467 660 630 1378 1950 770 1465 579 623 1371 579 623 1371 1950 770 1465 1949 771 1466 402 628 1376 524 626 1374 1951 769 1464 1951 769 1464 524 626 1374 1950 770 1465 577 664 1405 1952 767 1462 578 631 1379 578 631 1379 1952 767 1462 1951 769 1464 577 664 1405 2094 700 1429 1952 767 1462 1952 767 1462 2094 700 1429 2096 768 1463 584 693 281 1954 765 1000 419 742 977 419 742 977 1954 765 1000 1955 764 999 659 556 239 1957 762 997 575 553 236 575 553 236 1957 762 997 1956 763 998 527 634 248 1957 762 997 404 636 250 404 636 250 1957 762 997 1958 761 996 658 569 245 1959 760 995 574 558 241 574 558 241 1959 760 995 1958 761 996 530 641 255 1959 760 995 407 643 257 407 643 257 1959 760 995 1960 759 994 573 568 244 657 672 268 1960 759 994 1960 759 994 657 672 268 1961 758 993 412 649 263 533 647 261 1962 757 992 1962 757 992 533 647 261 1961 758 993 671 732 309 1947 734 311 571 755 990 571 755 990 1947 734 311 1963 756 991 1470 1708 2010 1481 1719 2021 431 800 1489 431 800 1489 1481 1719 2021 347 801 1490 1459 1697 1999 1470 1708 2010 348 798 1487 348 798 1487 1470 1708 2010 431 800 1489 1448 1686 1988 1459 1697 1999 432 797 1486 432 797 1486 1459 1697 1999 348 798 1487 1437 1675 1977 1448 1686 1988 349 794 1483 349 794 1483 1448 1686 1988 432 797 1486 351 803 1492 347 801 1490 1491 1727 2029 1491 1727 2029 347 801 1490 1481 1719 2021 430 806 1495 351 803 1492 1497 1735 2037 1497 1735 2037 351 803 1492 1491 1727 2029 430 806 1495 1903 1756 2058 435 438 1234 435 438 1234 1903 1756 2058 1986 1021 1710 435 438 1234 1986 1021 1710 88 375 1186 88 375 1186 1986 1021 1710 320 1020 1709 433 793 1482 1426 1664 1966 349 794 1483 349 794 1483 1426 1664 1966 1437 1675 1977 2049 2252 2207 1973 1589 1891 2048 2251 2206 2048 2251 2206 1973 1589 1891 1972 1588 1890 350 790 1479 434 436 1232 1902 1640 1942 1902 1640 1942 434 436 1232 1974 1641 1943 2047 2253 2208 2048 2251 2206 1975 1602 1904 1975 1602 1904 2048 2251 2206 1972 1588 1890 2046 2254 2209 2047 2253 2208 1976 1615 1917 1976 1615 1917 2047 2253 2208 1975 1602 1904 2046 2254 2209 1976 1615 1917 2045 2255 2210 2045 2255 2210 1976 1615 1917 1977 1628 1930 2044 1653 1955 2045 2255 2210 1974 1641 1943 1974 1641 1943 2045 2255 2210 1977 1628 1930 684 410 1214 2026 413 1217 606 781 1473 606 781 1473 2026 413 1217 2027 423 2211 310 111 904 1978 113 906 2024 409 1213 2024 409 1213 1978 113 906 2025 412 1216 858 976 1665 4 371 1182 867 985 1674 867 985 1674 4 371 1182 84 373 1184 858 976 1665 845 964 1653 4 371 1182 4 371 1182 845 964 1653 0 369 1180 721 832 1521 1331 831 1520 1979 835 1524 1979 835 1524 1331 831 1520 1980 836 1525 3 360 1171 87 359 1170 774 2256 2212 774 2256 2212 87 359 1170 1981 892 1581 735 2257 2213 1982 850 1539 722 834 1523 722 834 1523 1982 850 1539 1979 835 1524 748 2258 2214 1983 864 1553 735 2257 2213 735 2257 2213 1983 864 1553 1982 850 1539 761 2259 2215 1984 878 1567 748 2258 2214 748 2258 2214 1984 878 1567 1983 864 1553 774 2256 2212 1981 892 1581 761 2259 2215 761 2259 2215 1981 892 1581 1984 878 1567 810 928 1617 798 916 1605 1 365 1176 1 365 1176 798 916 1605 86 364 1175 1 365 1176 85 367 1178 810 928 1617 810 928 1617 85 367 1178 822 940 1629 822 940 1629 85 367 1178 834 952 1641 834 952 1641 85 367 1178 0 369 1180 845 964 1653 834 952 1641 0 369 1180 88 375 1186 320 1020 1709 2015 2260 2216 2015 2260 2216 84 373 1184 88 375 1186 1514 1754 2056 1315 1538 1857 1904 1755 2057 1904 1755 2057 1315 1538 1857 1985 1019 1708 1337 1017 1706 1985 1019 1708 897 1018 1707 897 1018 1707 1985 1019 1708 1315 1538 1857 243 1 26 1987 2261 2217 90 2 28 90 2 28 1987 2261 2217 1988 2262 2218 91 4 30 1989 2263 2219 243 1 26 243 1 26 1989 2263 2219 1987 2261 2217 244 7 35 1990 2264 2220 91 4 30 91 4 30 1990 2264 2220 1989 2263 2219 299 8 36 1991 2265 2221 244 7 35 244 7 35 1991 2265 2221 1990 2264 2220 164 179 1042 163 178 1041 1993 2267 2223 1993 2267 2223 163 178 1041 1992 2266 2222 266 181 1045 165 180 1043 1995 2269 2225 1995 2269 2225 165 180 1043 1994 2268 2224 163 178 1041 266 181 1045 1992 2266 2222 1992 2266 2222 266 181 1045 1995 2269 2225 90 2 28 1988 2262 2218 288 184 1048 288 184 1048 1988 2262 2218 1996 2270 2226 167 186 1050 164 179 1042 1997 2271 2227 1997 2271 2227 164 179 1042 1993 2267 2223 288 184 1048 1996 2270 2226 324 333 1144 324 333 1144 1996 2270 2226 1998 2272 2228 315 351 1162 167 186 1050 1999 2273 2229 1999 2273 2229 167 186 1050 1997 2271 2227 324 333 1144 1998 2272 2228 165 180 1043 165 180 1043 1998 2272 2228 1994 2268 2224 1991 2265 2221 299 8 36 2018 2274 2230 2018 2274 2230 299 8 36 2017 378 1189 315 351 1162 1999 2273 2229 690 432 1228 690 432 1228 1999 2273 2229 2001 2275 2231 622 442 1238 437 441 1237 2003 2277 2233 2003 2277 2233 437 441 1237 2002 2276 2232 438 443 1239 622 442 1238 2004 2278 2234 2004 2278 2234 622 442 1238 2003 2277 2233 623 446 1242 438 443 1239 2005 2279 2235 2005 2279 2235 438 443 1239 2004 2278 2234 623 446 1242 2005 2279 2235 440 447 1243 440 447 1243 2005 2279 2235 2006 2280 2236 520 617 1365 2007 2281 2237 519 618 1366 519 618 1366 2007 2281 2237 2008 2282 2238 645 622 1370 2009 2283 2239 521 619 1367 521 619 1367 2009 2283 2239 2010 2284 2240 519 618 1366 2008 2282 2238 645 622 1370 645 622 1370 2008 2282 2238 2009 2283 2239 437 441 1237 661 624 1372 2002 2276 2232 2002 2276 2232 661 624 1372 2011 2285 2241 523 625 1373 2012 2286 2242 520 617 1365 520 617 1365 2012 2286 2242 2007 2281 2237 661 624 1372 1948 772 1467 2011 2285 2241 2011 2285 2241 1948 772 1467 2013 2287 2243 440 447 1243 2006 2280 2236 672 774 1469 672 774 1469 2006 2280 2236 2000 2288 2244 690 432 1228 2001 2275 2231 523 625 1373 523 625 1373 2001 2275 2231 2012 2286 2242 1948 772 1467 521 619 1367 2013 2287 2243 2013 2287 2243 521 619 1367 2010 2284 2240 1988 2262 2218 1987 2261 2217 2014 2289 2245 1987 2261 2217 1989 2263 2219 2014 2289 2245 1989 2263 2219 1990 2264 2220 2014 2289 2245 1990 2264 2220 1991 2265 2221 2014 2289 2245 1993 2267 2223 1992 2266 2222 2014 2289 2245 1995 2269 2225 1994 2268 2224 2014 2289 2245 1992 2266 2222 1995 2269 2225 2014 2289 2245 1996 2270 2226 1988 2262 2218 2014 2289 2245 1997 2271 2227 1993 2267 2223 2014 2289 2245 1998 2272 2228 1996 2270 2226 2014 2289 2245 1999 2273 2229 1997 2271 2227 2014 2289 2245 1994 2268 2224 1998 2272 2228 2014 2289 2245 1991 2265 2221 2018 2274 2230 2014 2289 2245 2018 2274 2230 2000 2288 2244 2014 2289 2245 2001 2275 2231 1999 2273 2229 2014 2289 2245 2003 2277 2233 2002 2276 2232 2014 2289 2245 2004 2278 2234 2003 2277 2233 2014 2289 2245 2005 2279 2235 2004 2278 2234 2014 2289 2245 2006 2280 2236 2005 2279 2235 2014 2289 2245 2008 2282 2238 2007 2281 2237 2014 2289 2245 2010 2284 2240 2009 2283 2239 2014 2289 2245 2009 2283 2239 2008 2282 2238 2014 2289 2245 2002 2276 2232 2011 2285 2241 2014 2289 2245 2007 2281 2237 2012 2286 2242 2014 2289 2245 2011 2285 2241 2013 2287 2243 2014 2289 2245 2000 2288 2244 2006 2280 2236 2014 2289 2245 2012 2286 2242 2001 2275 2231 2014 2289 2245 2013 2287 2243 2010 2284 2240 2014 2289 2245 320 1020 1709 884 1002 1691 2015 2260 2216 2015 2260 2216 884 1002 1691 877 995 1684 867 985 1674 84 373 1184 877 995 1684 877 995 1684 84 373 1184 2015 2260 2216 1497 1735 2037 1503 1741 2043 1903 1756 2058 2000 2288 2244 2018 2274 2230 672 774 1469 672 774 1469 2018 2274 2230 2017 378 1189 228 88 77 2020 406 151 308 85 74 308 85 74 2020 406 151 2019 402 150 673 775 1470 590 773 1468 2021 379 1190 2021 379 1190 590 773 1468 2022 377 1188 590 773 1468 672 774 1469 2022 377 1188 2022 377 1188 672 774 1469 2017 378 1189 591 776 1471 673 775 1470 2023 380 1191 2023 380 1191 673 775 1470 2021 379 1190 591 776 1471 2023 380 1191 683 780 1472 683 780 1472 2023 380 1191 2024 409 1213 683 780 1472 2024 409 1213 604 411 1215 604 411 1215 2024 409 1213 2025 412 1216 1978 113 906 142 124 914 2025 412 1216 2025 412 1216 142 124 914 2026 413 1217 142 124 914 229 126 916 2026 413 1217 2026 413 1217 229 126 916 2027 423 2211 606 781 228 2027 423 153 687 782 229 687 782 229 2027 423 153 2028 422 152 687 782 229 2028 422 152 607 783 230 607 783 230 2028 422 152 2029 424 154 607 783 230 2029 424 154 688 784 231 688 784 231 2029 424 154 2030 425 155 688 784 231 2030 425 155 603 778 224 603 778 224 2030 425 155 2031 408 147 682 779 225 603 778 224 2032 407 146 2032 407 146 603 778 224 2031 408 147 601 777 222 682 779 225 2033 403 145 2033 403 145 682 779 225 2032 407 146 601 777 222 2033 403 145 681 405 223 681 405 223 2033 403 145 2019 402 2263 2020 406 151 228 88 77 2016 420 160 2016 420 160 228 88 77 312 154 107 41 140 103 2034 414 156 312 154 107 312 154 107 2034 414 156 2016 420 160 311 135 100 2035 415 157 41 140 103 41 140 103 2035 415 157 2034 414 156 311 135 921 29 77 897 2035 415 1218 2035 415 1218 29 77 897 2036 394 1205 307 76 896 2037 395 1206 29 77 897 29 77 897 2037 395 1206 2036 394 1205 227 79 899 2038 398 1209 307 76 896 307 76 896 2038 398 1209 2037 395 1206 227 79 899 45 81 901 2038 398 1209 2038 398 1209 45 81 901 2039 400 1211 45 81 901 162 353 1164 2039 400 1211 2039 400 1211 162 353 1164 2040 428 1224 162 353 1164 79 355 1166 2040 428 1224 2040 428 1224 79 355 1166 2041 430 1226 233 358 1169 2042 433 1229 79 355 1166 79 355 1166 2042 433 1229 2041 430 1226 3 360 1171 2043 435 1231 233 358 1169 233 358 1169 2043 435 1231 2042 433 1229 774 2256 2212 2044 1653 1955 3 360 1171 3 360 1171 2044 1653 1955 2043 435 1231 761 2259 2215 2045 2255 2210 774 2256 2212 774 2256 2212 2045 2255 2210 2044 1653 1955 761 2259 2215 748 2258 2214 2045 2255 2210 2045 2255 2210 748 2258 2214 2046 2254 2209 748 2258 2214 735 2257 2213 2046 2254 2209 2046 2254 2209 735 2257 2213 2047 2253 2208 735 2257 2213 722 834 1523 2047 2253 2208 2047 2253 2208 722 834 1523 2048 2251 2206 722 834 1523 708 833 1522 2048 2251 2206 2048 2251 2206 708 833 1522 2049 2252 2207 907 1029 1718 2049 2252 2207 708 833 1522 1973 1589 1891 2049 2252 2207 907 1029 1718 907 1029 1718 1980 836 1525 1331 831 1520 2051 291 122 2065 133 1002 2050 292 123 2050 292 123 2065 133 1002 2064 288 1003 322 296 127 2067 376 1004 282 294 125 282 294 125 2067 376 1004 2066 134 1005 282 294 125 2066 134 1005 2051 291 122 2051 291 122 2066 134 1005 2065 133 1002 185 244 52 278 242 50 2068 245 1007 2068 245 1007 278 242 50 2069 237 1006 184 241 49 279 251 56 2070 238 1009 2070 238 1009 279 251 56 2071 246 1008 278 242 50 184 241 49 2069 237 1006 2069 237 1006 184 241 49 2070 238 1009 2052 263 64 185 244 52 2072 261 1010 2072 261 1010 185 244 52 2068 245 1007 2050 292 123 2064 288 1003 186 250 55 186 250 55 2064 288 1003 2073 247 1011 279 251 56 186 250 55 2071 246 1008 2071 246 1008 186 250 55 2073 247 1011 280 257 1103 2075 252 1099 187 259 1104 187 259 1104 2075 252 1099 2074 260 1105 2054 327 235 2077 328 1014 2053 256 59 2053 256 59 2077 328 1014 2076 253 1015 2053 256 59 2076 253 1015 280 257 60 280 257 60 2076 253 1015 2075 252 2276 187 259 1104 2074 260 1105 2055 266 1109 2055 266 1109 2074 260 1105 2078 264 1107 2054 327 235 2052 263 64 2077 328 1014 2077 328 1014 2052 263 64 2072 261 1010 2055 266 1109 2078 264 1107 188 268 1111 188 268 1111 2078 264 1107 2079 269 1112 188 268 1111 2079 269 1112 2056 272 1115 2056 272 1115 2079 269 1112 2080 270 1113 189 274 1117 2056 272 1115 2081 275 1118 2081 275 1118 2056 272 1115 2080 270 1113 2057 287 1128 189 274 1117 2082 285 1126 2082 285 1126 189 274 1117 2081 275 1118 191 283 88 281 281 2271 2083 284 1022 2083 284 1022 281 281 2271 2084 276 1021 190 280 1123 2057 287 1128 2085 277 1120 2085 277 1120 2057 287 1128 2082 285 1126 281 281 1124 190 280 1123 2084 276 1119 2084 276 1119 190 280 1123 2085 277 1120 322 296 127 191 283 88 2067 376 1004 2067 376 1004 191 283 88 2083 284 1022 1946 735 970 656 733 310 2086 2250 1025 2086 2250 1025 656 733 310 2087 571 1024 2058 731 308 2059 730 307 2088 572 1027 2088 572 1027 2059 730 307 2089 727 1026 656 733 310 2058 731 308 2087 571 1024 2087 571 1024 2058 731 308 2088 572 1027 554 681 274 2091 676 1028 653 689 279 653 689 279 2091 676 1028 2090 686 1029 555 683 276 2093 684 1030 652 680 273 652 680 273 2093 684 1030 2092 677 1031 652 680 273 2092 677 1031 554 681 274 554 681 274 2092 677 1031 2091 676 1028 2060 702 288 2094 700 1032 555 683 276 555 683 276 2094 700 1032 2093 684 1030 2059 730 307 556 690 280 2089 727 1026 2089 727 1026 556 690 280 2095 685 1033 653 689 279 2090 686 1029 556 690 280 556 690 280 2090 686 1029 2095 685 1033 1953 766 1001 557 696 284 2096 768 1035 2096 768 1035 557 696 284 2097 691 1034 654 695 1427 558 698 1426 2098 692 1423 2098 692 1423 558 698 1426 2099 699 1428 557 696 284 654 695 2270 2097 691 1034 2097 691 1034 654 695 2270 2098 692 1037 558 698 1426 2061 705 1432 2099 699 1428 2099 699 1428 2061 705 1432 2100 703 1430 1953 766 1001 2096 768 1035 2060 702 288 2060 702 288 2096 768 1035 2094 700 1032 2061 705 1432 559 707 1434 2100 703 1430 2100 703 1430 559 707 1434 2101 708 1435 559 707 1434 2062 711 1438 2101 708 1435 2101 708 1435 2062 711 1438 2102 709 1436 560 713 1440 2103 714 1441 2062 711 1438 2062 711 1438 2103 714 1441 2102 709 1436 2063 726 1451 2104 724 1449 560 713 1440 560 713 1440 2104 724 1449 2103 714 1441 561 720 1447 2105 715 1442 2063 726 1451 2063 726 1451 2105 715 1442 2104 724 1449 562 722 302 2107 723 1044 655 719 299 655 719 299 2107 723 1044 2106 716 2266 655 719 1446 2106 716 1443 561 720 1447 561 720 1447 2106 716 1443 2105 715 1442 1946 735 970 2086 2250 1025 562 722 302 562 722 302 2086 2250 1025 2107 723 1044 1686 2081 751 1687 2006 621 1807 2005 620 1117 1276 374 1237 1275 373 1151 1277 375</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n    </library_geometries>\r\n    <library_visual_scenes>\r\n        <visual_scene id=\"VisualSceneNode\" name=\"untitled\">\r\n            <node id=\"LOD3sp\" name=\"LOD3sp\">\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n                <instance_geometry url=\"#LOD3spShape-lib\">\r\n                    <bind_material>\r\n                        <technique_common>\r\n                            <instance_material symbol=\"blinn3SG\" target=\"#blinn3\">\r\n                                <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"TEX0\"/>\r\n                            </instance_material>\r\n                        </technique_common>\r\n                    </bind_material>\r\n                </instance_geometry>\r\n            </node>\r\n            <node id=\"camera1\" name=\"camera1\">\r\n                <translate sid=\"translate\">400.113 463.264 -431.078</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 -223.2</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 -38.4</rotate>\r\n                <instance_camera url=\"#cameraShape1\"/>\r\n            </node>\r\n            <node id=\"directionalLight1\" name=\"directionalLight1\">\r\n                <translate sid=\"translate\">148.654 183.672 -292.179</translate>\r\n                <rotate sid=\"rotateZ\">0 0 1 -12.8709</rotate>\r\n                <rotate sid=\"rotateY\">0 1 0 -191.679</rotate>\r\n                <rotate sid=\"rotateX\">1 0 0 -45.6358</rotate>\r\n                <instance_light url=\"#directionalLightShape1-lib\"/>\r\n            </node>\r\n        </visual_scene>\r\n    </library_visual_scenes>\r\n    <scene>\r\n        <instance_visual_scene url=\"#VisualSceneNode\"/>\r\n    </scene>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.4.1/infiles/mgmidget.dae",
    "content": "<?xml version=\"1.0\" ?><COLLADA version=\"1.4.1\" xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n    <asset>\r\n        <contributor>\r\n            <authoring_tool>Google SketchUp 8.0.4811</authoring_tool>\r\n        </contributor>\r\n        <created>2011-10-20T03:44:52Z</created>\r\n        <modified>2011-10-20T03:44:52Z</modified>\r\n        <unit meter=\"0.02539999969303608\" name=\"inch\"/>\r\n        <up_axis>Z_UP</up_axis>\r\n    </asset>\r\n    <library_visual_scenes>\r\n        <visual_scene id=\"ID1\">\r\n            <node name=\"SketchUp\">\r\n                <node id=\"ID2\" name=\"instance_0\">\r\n                    <matrix>-1 0 0 -0.1047857155373135 0 1 0 -1.159676022821707 0 -0 1 -1.110223024625157e-016 0 0 0 1</matrix>\r\n                    <instance_node url=\"#ID3\"/>\r\n                </node>\r\n            </node>\r\n        </visual_scene>\r\n    </library_visual_scenes>\r\n    <library_nodes>\r\n        <node id=\"ID3\" name=\"skp7C95\">\r\n            <node id=\"ID4\" name=\"instance_1\">\r\n                <matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID5\"/>\r\n            </node>\r\n            <node id=\"ID35\" name=\"instance_2\">\r\n                <matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID36\"/>\r\n            </node>\r\n            <node id=\"ID89\" name=\"instance_3\">\r\n                <matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID90\"/>\r\n            </node>\r\n            <node id=\"ID139\" name=\"instance_4\">\r\n                <matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID140\"/>\r\n            </node>\r\n            <node id=\"ID209\" name=\"instance_5\">\r\n                <matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID210\"/>\r\n            </node>\r\n            <node id=\"ID225\" name=\"instance_6\">\r\n                <matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID226\"/>\r\n            </node>\r\n            <node id=\"ID243\" name=\"instance_7\">\r\n                <matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID244\"/>\r\n            </node>\r\n            <node id=\"ID251\" name=\"instance_8\">\r\n                <matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID252\"/>\r\n            </node>\r\n            <node id=\"ID267\" name=\"instance_9\">\r\n                <matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID268\"/>\r\n            </node>\r\n            <node id=\"ID323\" name=\"instance_10\">\r\n                <matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID324\"/>\r\n            </node>\r\n        </node>\r\n        <node id=\"ID5\" name=\"_3D_Object1_1\">\r\n            <instance_geometry url=\"#ID6\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID19\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID20\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID27\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n        </node>\r\n        <node id=\"ID36\" name=\"_3D_Object1_3\">\r\n            <instance_geometry url=\"#ID37\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID38\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID47\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID48\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID57\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID65\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID73\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID81\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n        </node>\r\n        <node id=\"ID90\" name=\"_3D_Object1_5\">\r\n            <instance_geometry url=\"#ID91\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID38\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID99\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID48\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID107\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID115\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID123\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID131\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n        </node>\r\n        <node id=\"ID140\" name=\"_3D_Object1_7\">\r\n            <instance_geometry url=\"#ID141\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID38\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID149\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID162\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID20\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID168\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID174\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID180\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID188\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID189\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID196\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID200\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n        </node>\r\n        <node id=\"ID210\" name=\"_3D_Object1_9\">\r\n            <instance_geometry url=\"#ID211\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID38\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID217\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n        </node>\r\n        <node id=\"ID226\" name=\"_3D_Object1_10\">\r\n            <instance_geometry url=\"#ID227\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID235\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n        </node>\r\n        <node id=\"ID244\" name=\"_3D_Object2_2\">\r\n            <instance_geometry url=\"#ID245\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID38\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n        </node>\r\n        <node id=\"ID252\" name=\"_3D_Object2_4\">\r\n            <instance_geometry url=\"#ID253\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID261\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n        </node>\r\n        <node id=\"ID268\" name=\"_3D_Object8\">\r\n            <instance_geometry url=\"#ID269\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID38\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID275\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID283\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID20\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID289\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID295\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID301\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID309\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID189\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID315\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID200\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n        </node>\r\n        <node id=\"ID324\" name=\"_3D_Object2\">\r\n            <instance_geometry url=\"#ID1222\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID1223\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1235\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1243\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1249\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1255\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1261\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1267\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1273\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1279\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1287\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1295\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1303\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID1304\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1311\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID1304\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1317\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1323\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1329\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1335\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1341\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1347\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1353\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1359\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1365\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1371\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1377\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1383\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1389\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1395\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1401\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1407\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1413\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1419\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1425\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1431\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1437\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1443\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1449\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1455\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID1223\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1463\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1469\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1475\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID48\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1481\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID38\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1487\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1493\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1499\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID48\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1505\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1511\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1517\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1523\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID38\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1529\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1537\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID1538\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1550\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID1551\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1558\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID189\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1564\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1572\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1578\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1584\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1590\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1596\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID48\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1602\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1608\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1614\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1620\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID38\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1626\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID1551\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1632\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID189\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1638\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1646\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1654\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1662\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1668\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1674\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1682\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1688\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1694\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1702\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1708\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1714\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1722\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1728\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1734\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1742\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1748\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1754\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1760\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1766\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1772\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1778\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1784\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1790\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1796\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1802\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1808\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1814\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID48\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1820\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1826\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID48\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1832\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1838\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1844\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1850\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1856\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1862\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1870\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1878\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1886\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1894\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID150\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1902\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1908\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1916\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1922\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <node id=\"ID325\" name=\"instance_11\">\r\n                <matrix>0.2391837984 0 0 2.38950825377015 0 0.2391837984 0 0.9452262937899669 0 0 0.2391837984 0.2410314998464498 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID326\"/>\r\n            </node>\r\n            <node id=\"ID779\" name=\"instance_13\">\r\n                <matrix>-0.2391837984 0 0 -2.366056800203434 0 0.2391837984 0 3.471970791224086 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID780\"/>\r\n            </node>\r\n            <node id=\"ID1220\" name=\"instance_14\">\r\n                <matrix>0.2391837984 0 0 2.38950825377015 0 0.2391837984 0 3.471970791224085 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID326\"/>\r\n            </node>\r\n            <node id=\"ID1221\" name=\"instance_15\">\r\n                <matrix>-0.2391837984 0 0 -2.366056800203434 0 0.2391837984 0 0.942551212767317 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n                <instance_node url=\"#ID780\"/>\r\n            </node>\r\n        </node>\r\n        <node id=\"ID326\" name=\"wheel3\">\r\n            <node id=\"ID327\" name=\"group_0\">\r\n                <matrix>-0.9999576712051372 -0.009200858546759075 3.597306985714045e-008 -6.593666714136403 -0.00920085854675907 0.9999576712051379 3.309891276924002e-010 -10.27499661274406 3.597459254459032e-008 8.009926719458926e-015 0.9999999999999993 -3.583475360434295 0 0 0 1</matrix>\r\n                <instance_geometry url=\"#ID775\">\r\n                    <bind_material>\r\n                        <technique_common>\r\n                            <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                                <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                            </instance_material>\r\n                        </technique_common>\r\n                    </bind_material>\r\n                </instance_geometry>\r\n                <node id=\"ID328\" name=\"instance_12\">\r\n                    <matrix>0.7999999999999998 1.040834085586084e-017 1.929980390148138e-023 0.6785531540121249 -7.806255641895632e-018 0.8000000000000003 4.135903062765138e-025 1.538230777312308 1.172997038562746e-023 0 0.8000000000000006 1.538231618346253 0 0 0 1</matrix>\r\n                    <instance_node url=\"#ID329\"/>\r\n                </node>\r\n            </node>\r\n        </node>\r\n        <node id=\"ID329\" name=\"wheel_rb\">\r\n            <instance_geometry url=\"#ID330\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID338\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID346\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID359\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID367\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID375\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID383\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID384\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID393\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID384\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID401\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID409\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID417\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID425\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID433\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID441\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID449\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID457\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID465\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID473\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID481\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID489\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID497\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID505\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID513\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID521\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID529\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID537\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID545\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID553\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID561\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID569\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID577\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID585\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID593\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID601\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID609\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID617\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID625\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID626\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID635\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID643\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID651\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID659\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID667\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID675\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID683\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID691\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID697\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID701\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID705\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID709\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID713\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID717\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID721\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID725\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID729\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID733\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID737\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID741\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID745\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID749\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID753\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID754\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID759\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID763\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID767\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID771\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n        </node>\r\n        <node id=\"ID780\" name=\"wheel3\">\r\n            <node id=\"ID781\" name=\"group_0\">\r\n                <matrix>-0.9999576712051372 -0.009200858546759075 3.597306985714045e-008 -6.593666714136403 -0.00920085854675907 0.9999576712051379 3.309891276924002e-010 -10.27499661274406 3.597459254459032e-008 8.009926719458926e-015 0.9999999999999993 -3.583475360434295 0 0 0 1</matrix>\r\n                <instance_geometry url=\"#ID1216\">\r\n                    <bind_material>\r\n                        <technique_common>\r\n                            <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                                <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                            </instance_material>\r\n                        </technique_common>\r\n                    </bind_material>\r\n                </instance_geometry>\r\n                <node id=\"ID782\" name=\"instance_12\">\r\n                    <matrix>0.7999999999999998 1.040834085586084e-017 1.929980390148138e-023 0.6785531540121249 -7.806255641895632e-018 0.8000000000000003 4.135903062765138e-025 1.538230777312308 1.172997038562746e-023 0 0.8000000000000006 1.538231618346253 0 0 0 1</matrix>\r\n                    <instance_node url=\"#ID783\"/>\r\n                </node>\r\n            </node>\r\n        </node>\r\n        <node id=\"ID783\" name=\"wheel_rb\">\r\n            <instance_geometry url=\"#ID784\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID792\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID800\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID808\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID816\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID824\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID832\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID384\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID840\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID384\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID848\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID145\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID856\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID864\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID872\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID880\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID888\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID896\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID904\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID912\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID920\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID928\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID936\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID944\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID952\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID960\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID968\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID976\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID984\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID992\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1000\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1008\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1016\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1024\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1032\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1040\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1048\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1056\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1064\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1072\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID626\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1080\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1088\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1096\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1104\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1112\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1120\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                        <instance_material symbol=\"Material3\" target=\"#ID347\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1128\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID7\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1136\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1140\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1144\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1148\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1152\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1156\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1160\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1164\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1168\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1172\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1176\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1180\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1184\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1188\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1192\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1196\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID754\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1200\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1204\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1208\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n            <instance_geometry url=\"#ID1212\">\r\n                <bind_material>\r\n                    <technique_common>\r\n                        <instance_material symbol=\"Material2\" target=\"#ID692\">\r\n                            <bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"/>\r\n                        </instance_material>\r\n                    </technique_common>\r\n                </bind_material>\r\n            </instance_geometry>\r\n        </node>\r\n    </library_nodes>\r\n    <library_geometries>\r\n        <geometry id=\"ID6\">\r\n            <mesh>\r\n                <source id=\"ID12\">\r\n                    <float_array count=\"1098\" id=\"ID16\">-0.3512492775917053 0.3640900552272797 0.4558710157871246 0.0003733329358510673 0.3764632046222687 0.4582751095294952 0.0003733329358510673 0.3664841055870056 0.4716075956821442 0.0003733329358510673 0.3664841055870056 0.4716075956821442 0.0003733329358510673 0.3764632046222687 0.4582751095294952 -0.3512492775917053 0.3640900552272797 0.4558710157871246 -0.3512492775917053 0.3444961309432983 0.4558710157871246 -0.3512492775917053 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3640900552272797 0.4558710157871246 0.3519960343837738 0.3640900552272797 0.4558710157871246 -0.3512492775917053 0.3748391568660736 0.4410378038883209 -0.3512492775917053 0.3748391568660736 0.4410378038883209 0.0003733329358510673 0.3465428054332733 0.4716075956821442 0.0003733329358510673 0.3465428054332733 0.4716075956821442 -0.5576297044754028 0.3417671024799347 0.4339523613452911 -0.5576297044754028 0.3417671024799347 0.4339523613452911 0.3519960343837738 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3748391568660736 0.4410378038883209 0.3519960343837738 0.3748391568660736 0.4410378038883209 -0.5576297044754028 0.3615391850471497 0.4339523613452911 -0.5576297044754028 0.3615391850471497 0.4339523613452911 0.0003733329358510673 0.3311522305011749 0.4595692157745361 0.0003733329358510673 0.3311522305011749 0.4595692157745361 -0.3512492775917053 0.3287160694599152 0.4410378038883209 -0.3512492775917053 0.3287160694599152 0.4410378038883209 0.5583760738372803 0.3417671024799347 0.4339523613452911 0.5583760738372803 0.3417671024799347 0.4339523613452911 0.5583760738372803 0.3615391850471497 0.4339523613452911 0.5583760738372803 0.3615391850471497 0.4339523613452911 -0.5604491829872131 0.3724029362201691 0.4215744733810425 -0.5604491829872131 0.3724029362201691 0.4215744733810425 -0.6428633332252502 0.3404026031494141 0.4038339257240295 -0.6428633332252502 0.3404026031494141 0.4038339257240295 -0.5604491829872131 0.3270919919013977 0.4215744733810425 -0.5604491829872131 0.3270919919013977 0.4215744733810425 0.3519960343837738 0.3287160694599152 0.4410378038883209 0.3519960343837738 0.3287160694599152 0.4410378038883209 0.5611954927444458 0.3724029362201691 0.4215744733810425 0.5611954927444458 0.3724029362201691 0.4215744733810425 -0.6428633332252502 0.3609992563724518 0.4038339257240295 -0.6428633332252502 0.3609992563724518 0.4038339257240295 0.5611954927444458 0.3270919919013977 0.4215744733810425 0.5611954927444458 0.3270919919013977 0.4215744733810425 0.6436101794242859 0.3404026031494141 0.4038339257240295 0.6436101794242859 0.3404026031494141 0.4038339257240295 0.6436101794242859 0.3609992563724518 0.4038339257240295 0.6436101794242859 0.3609992563724518 0.4038339257240295 -0.6441342830657959 0.3715909421443939 0.392346978187561 -0.6441342830657959 0.3715909421443939 0.392346978187561 -0.6848444938659668 0.3385834991931915 0.3807705938816071 -0.6848444938659668 0.3385834991931915 0.3807705938816071 -0.6441342830657959 0.3246558606624603 0.392346978187561 -0.6441342830657959 0.3246558606624603 0.392346978187561 0.6448808908462524 0.3715909421443939 0.392346978187561 0.6448808908462524 0.3715909421443939 0.392346978187561 -0.6848444938659668 0.3617342412471771 0.3807705938816071 -0.6848444938659668 0.3617342412471771 0.3807705938816071 0.6448808908462524 0.3246558606624603 0.392346978187561 0.6448808908462524 0.3246558606624603 0.392346978187561 0.685590922832489 0.3385834991931915 0.3807705938816071 0.685590922832489 0.3385834991931915 0.3807705938816071 0.685590922832489 0.3617342412471771 0.3807705938816071 0.685590922832489 0.3617342412471771 0.3807705938816071 -0.6924977898597717 0.3738462924957275 0.3587177395820618 -0.6924977898597717 0.3738462924957275 0.3587177395820618 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.6924977898597717 0.3230318427085877 0.3587177395820618 -0.6924977898597717 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3738462924957275 0.3587177395820618 0.693244218826294 0.3738462924957275 0.3587177395820618 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 0.693244218826294 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3230318427085877 0.3587177395820618 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.381706178188324 0.3493618071079254 -0.7020096182823181 0.381706178188324 0.3493618071079254 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7255671620368958 0.3380583226680756 0.3681576550006867 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.381706178188324 0.3493618071079254 0.7027556896209717 0.381706178188324 0.3493618071079254 -0.7146109938621521 0.3731479644775391 0.3700889348983765 -0.7146109938621521 0.3731479644775391 0.3700889348983765 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7255671620368958 0.3380583226680756 0.3681576550006867 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7153576016426086 0.3731479644775391 0.3700889348983765 0.7153576016426086 0.3731479644775391 0.3700889348983765 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7264339923858643 0.3679208159446716 0.3674047589302063 -0.7264339923858643 0.3679208159446716 0.3674047589302063 -0.7177720069885254 0.3258920609951019 0.4299785196781158 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.6979426145553589 0.3512220680713654 0.42958864569664 0.6979426145553589 0.3512220680713654 0.42958864569664 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.6979426145553589 0.3512220680713654 0.42958864569664 0.6979426145553589 0.3512220680713654 0.42958864569664 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7159313559532166 0.3825618922710419 0.3357574045658112 -0.7172813415527344 0.3512220680713654 0.42958864569664 -0.7172813415527344 0.3512220680713654 0.42958864569664 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.693244218826294 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3230318427085877 0.3587177395820618 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7271807193756104 0.3679208159446716 0.3674047589302063 0.7271807193756104 0.3679208159446716 0.3674047589302063 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.7180280089378357 0.3512220680713654 0.42958864569664 0.7180280089378357 0.3512220680713654 0.42958864569664 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6917747259140015 0.2917623221874237 0.5514896512031555 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6788990497589111 0.277787446975708 0.5516139268875122 0.679326593875885 0.2916669249534607 0.551818311214447 0.679326593875885 0.2916669249534607 0.551818311214447 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.679326593875885 0.2916669249534607 0.551818311214447 0.679326593875885 0.2916669249534607 0.551818311214447 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6692409515380859 0.2158858478069305 0.6860935091972351 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6695502996444702 0.2332195788621903 0.6872068643569946 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6723158359527588 0.2332195788621903 0.692791759967804 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.6218504309654236 0.2261438220739365 0.7275896668434143 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.4369176328182221 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.623400092124939 0.2261438220739365 0.7318599224090576 0.623400092124939 0.2261438220739365 0.7318599224090576 0.4386698305606842 0.2250510305166245 0.728861391544342 0.4386698305606842 0.2250510305166245 0.728861391544342 0.623400092124939 0.2261438220739365 0.7318599224090576 0.623400092124939 0.2261438220739365 0.7318599224090576 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.4379231929779053 0.2172611206769943 0.749642550945282 0.437664121389389 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4386698305606842 0.2250510305166245 0.728861391544342 0.4386698305606842 0.2250510305166245 0.728861391544342 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.1970987468957901 0.1926998645067215 0.7719690799713135 0.4386698305606842 0.2172611206769943 0.749642550945282 0.4386698305606842 0.2172611206769943 0.749642550945282 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.4386698305606842 0.2172611206769943 0.749642550945282 0.4386698305606842 0.2172611206769943 0.749642550945282 -0.1976823061704636 0.2099207788705826 0.7732192873954773 -0.1976823061704636 0.2099207788705826 0.7732192873954773 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.0003733063931576908 0.1899106204509735 0.7792853713035584 -0.1976823061704636 0.2099207788705826 0.7732192873954773 -0.1976823061704636 0.2099207788705826 0.7732192873954773 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"366\" source=\"#ID16\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID13\">\r\n                    <float_array count=\"1098\" id=\"ID17\">-0.071125187092009 0.4507200585843386 0.8898273071505825 -4.263967884275383e-009 0.8008832375061619 0.5988205406310382 -5.504344485312176e-009 0.444157913898005 0.8959485183434214 5.504344485312176e-009 -0.444157913898005 -0.8959485183434214 4.263967884275383e-009 -0.8008832375061619 -0.5988205406310382 0.071125187092009 -0.4507200585843386 -0.8898273071505825 -0.06762980948302125 -0.3639052502035215 0.9289774904396784 0.06762980948302125 0.3639052502035215 -0.9289774904396784 0.07112527238031438 0.4507200476058207 0.8898273058942577 -0.07112527238031438 -0.4507200476058207 -0.8898273058942577 -0.05295591724079173 0.8070734904910732 0.588071468255128 0.05295591724079173 -0.8070734904910732 -0.588071468255128 -5.194259043014777e-009 -0.3219438234562064 0.9467587731510065 5.194259043014777e-009 0.3219438234562064 -0.9467587731510065 -0.1952435862872257 -0.3225981683293698 0.9261805244142408 0.1952435862872257 0.3225981683293698 -0.9261805244142408 0.0676298903270364 -0.3639052384125159 0.92897748917306 -0.0676298903270364 0.3639052384125159 -0.92897748917306 0.05295598363639042 0.8070734879396393 0.5880714657777973 -0.05295598363639042 -0.8070734879396393 -0.5880714657777973 -0.1964190692480931 0.3872593094726631 0.9008050712903812 0.1964190692480931 -0.3872593094726631 -0.9008050712903812 -4.206846264984871e-009 -0.6188292458269113 0.7855255339639164 4.206846264984871e-009 0.6188292458269113 -0.7855255339639164 -0.05146910879328837 -0.682661196124296 0.728920175428126 0.05146910879328837 0.682661196124296 -0.728920175428126 0.1952430020004395 -0.3225984771781914 0.926180540009435 -0.1952430020004395 0.3225984771781914 -0.926180540009435 0.1964185076893298 0.3872596420709859 0.9008050507519085 -0.1964185076893298 -0.3872596420709859 -0.9008050507519085 -0.1731628035249205 0.720259607377219 0.6717445507454481 0.1731628035249205 -0.720259607377219 -0.6717445507454481 -0.3781976423062447 -0.2788958561989671 0.8827137954903859 0.3781976423062447 0.2788958561989671 -0.8827137954903859 -0.1812838656160409 -0.611012699337296 0.7705839612370974 0.1812838656160409 0.611012699337296 -0.7705839612370974 0.05146917124753067 -0.6826611952120336 0.7289201718725927 -0.05146917124753067 0.6826611952120336 -0.7289201718725927 0.1731617213854804 0.7202604007202256 0.6717439790583591 -0.1731617213854804 -0.7202604007202256 -0.6717439790583591 -0.3735418711200219 0.3628600994103804 0.8536972641258971 0.3735418711200219 -0.3628600994103804 -0.8536972641258971 0.181282778263941 -0.6110135191637968 0.7705835669828285 -0.181282778263941 0.6110135191637968 -0.7705835669828285 0.3781986476610136 -0.2788973044064862 0.8827129071800052 -0.3781986476610136 0.2788973044064862 -0.8827129071800052 0.3735427701649122 0.3628616634215295 0.8536962059635056 -0.3735427701649122 -0.3628616634215295 -0.8536962059635056 -0.3084756592757642 0.6952683570081935 0.6491877073524343 0.3084756592757642 -0.6952683570081935 -0.6491877073524343 -0.4842349374434831 -0.3512828890327633 0.8013219435607023 0.4842349374434831 0.3512828890327633 -0.8013219435607023 -0.3447848531328449 -0.5593445309787422 0.7538282965731213 0.3447848531328449 0.5593445309787422 -0.7538282965731213 0.3084753303407854 0.6952712068050755 0.6491848115590485 -0.3084753303407854 -0.6952712068050755 -0.6491848115590485 -0.4498228601286283 0.3998238053715448 0.7986240161452179 0.4498228601286283 -0.3998238053715448 -0.7986240161452179 0.3447848974915967 -0.55934731735585 0.7538262087699811 -0.3447848974915967 0.55934731735585 -0.7538262087699811 0.4842345611858018 -0.3512835657741214 0.8013218742616555 -0.4842345611858018 0.3512835657741214 -0.8013218742616555 0.4498247367326896 0.3998245059083885 0.7986226084318424 -0.4498247367326896 -0.3998245059083885 -0.7986226084318424 0.1390934429420212 0.8757229171530553 0.4623444457365932 -0.1390934429420212 -0.8757229171530553 -0.4623444457365932 -0.2805014547971665 -0.4481261184840369 0.8488238426134741 0.2805014547971665 0.4481261184840369 -0.8488238426134741 -0.3373790400527729 -0.7856801756880902 0.5185383735692095 0.3373790400527729 0.7856801756880902 -0.5185383735692095 -0.1391012332027621 0.8757221718317327 0.4623435137252217 0.1391012332027621 -0.8757221718317327 -0.4623435137252217 0.1832509294236752 0.8986260316191347 0.3986105269079149 -0.1832509294236752 -0.8986260316191347 -0.3986105269079149 -0.5800566743481957 0.05070925503692379 0.8129962029417551 0.5800566743481957 -0.05070925503692379 -0.8129962029417551 0.3525503091742624 -0.7876181241922912 0.505337481238972 -0.3525503091742624 0.7876181241922912 -0.505337481238972 0.2804983942557796 -0.44812624773872 0.8488247857523628 -0.2804983942557796 0.44812624773872 -0.8488247857523628 -0.1832512338339642 0.898626112386407 0.3986102048814386 0.1832512338339642 -0.898626112386407 -0.3986102048814386 -0.05990506789815193 0.9413055895298192 0.3321974863842852 0.05990506789815193 -0.9413055895298192 -0.3321974863842852 0.9918683419023885 -0.08671032838144153 -0.09315852770299216 0.9759562146826556 -0.1138931241787893 -0.1858435451854526 0.9904882410233603 -0.09514272493502067 -0.09940274788147702 -0.9904882410233603 0.09514272493502067 0.09940274788147702 -0.9759562146826556 0.1138931241787893 0.1858435451854526 -0.9918683419023885 0.08671032838144153 0.09315852770299216 -0.3004923551871483 -0.8848925945410495 0.3559065054203003 0.3004923551871483 0.8848925945410495 -0.3559065054203003 0.5800601094850288 0.05071953851926407 0.8129931105468295 -0.5800601094850288 -0.05071953851926407 -0.8129931105468295 0.03941810041296814 0.9385169908126403 0.3429753217300331 -0.03941810041296814 -0.9385169908126403 -0.3429753217300331 -0.1948504716201211 0.9292746675562946 0.31381823711753 0.1948504716201211 -0.9292746675562946 -0.31381823711753 0.980004878619731 -0.1148416960155928 -0.1624863770837066 -0.980004878619731 0.1148416960155928 0.1624863770837066 0.01808784460961578 -0.9585720035182385 -0.284275471942988 -0.01450490163885446 -0.9818714578108111 -0.1889921907511515 0.01390591190561859 -0.9622823983029412 -0.2716969111536106 -0.01390591190561859 0.9622823983029412 0.2716969111536106 0.01450490163885446 0.9818714578108111 0.1889921907511515 -0.01808784460961578 0.9585720035182385 0.284275471942988 -0.3340438595180452 -0.93522254807589 0.1173604937307616 0.3340438595180452 0.93522254807589 -0.1173604937307616 -0.02177368027010158 -0.981464076286009 -0.1904052882867142 0.02177368027010158 0.981464076286009 0.1904052882867142 0.3098855746507412 -0.8907823498961794 0.3323819124694065 -0.3098855746507412 0.8907823498961794 -0.3323819124694065 -0.9779787607639027 -0.1141885828737194 -0.1746954808688327 -0.9918664072211452 -0.08672722985843478 -0.09316339317188697 -0.9904870505903934 -0.09515421425005848 -0.09940361222409007 0.9904870505903934 0.09515421425005848 0.09940361222409007 0.9918664072211452 0.08672722985843478 0.09316339317188697 0.9779787607639027 0.1141885828737194 0.1746954808688327 0.1912503182808568 0.9273764772990287 0.321552771889646 -0.1912503182808568 -0.9273764772990287 -0.321552771889646 -0.3811288433792529 0.8957550736264501 0.2288310573695485 0.3811288433792529 -0.8957550736264501 -0.2288310573695485 0.007248706169782307 0.9191592767960465 0.3938193496244603 -0.007248706169782307 -0.9191592767960465 -0.3938193496244603 0.9853759184996108 0.02508948516799318 -0.1685372866016697 -0.9853759184996108 -0.02508948516799318 0.1685372866016697 0.01723171841286865 -0.919196357530028 -0.3934223229356319 -0.01723171841286865 0.919196357530028 0.3934223229356319 0.1845544456475155 -0.9017691296340797 -0.3908351230771521 -0.1845544456475155 0.9017691296340797 0.3908351230771521 -0.9908221950411159 -0.0198614659408184 0.1337045249218829 -0.9872800348044978 0.000627502331247067 0.158989745321055 -0.9882708773498506 -0.008080873138596571 0.1524971228301519 0.9882708773498506 0.008080873138596571 -0.1524971228301519 0.9872800348044978 -0.000627502331247067 -0.158989745321055 0.9908221950411159 0.0198614659408184 -0.1337045249218829 -0.9826945450324243 0.01630357907460154 0.1845145643922866 -0.8325865012073505 0.5049181106934321 0.2277222419990581 0.8325865012073505 -0.5049181106934321 -0.2277222419990581 0.9826945450324243 -0.01630357907460154 -0.1845145643922866 0.3862723911918118 -0.9163355120307432 0.1054650140772564 -0.3862723911918118 0.9163355120307432 -0.1054650140772564 0.02177412265120054 -0.9814640654872793 -0.1904052933611679 0.01450529868995076 -0.9818714473737441 -0.1889922145012973 -0.013916141499668 -0.9621402750830043 -0.2721992506767098 0.013916141499668 0.9621402750830043 0.2721992506767098 -0.01450529868995076 0.9818714473737441 0.1889922145012973 -0.02177412265120054 0.9814640654872793 0.1904052933611679 -0.9812022224608331 -0.1149914710388205 -0.1549811608752812 0.9812022224608331 0.1149914710388205 0.1549811608752812 -0.01811265111712815 -0.9587713810518664 -0.2836007241623442 0.01811265111712815 0.9587713810518664 0.2836007241623442 -0.007290548039703533 0.9192696015801237 0.3935609832287768 0.007290548039703533 -0.9192696015801237 -0.3935609832287768 0.5044979341430722 0.8431073902036704 0.1861498402613552 -0.5044979341430722 -0.8431073902036704 -0.1861498402613552 -0.6634249520533542 0.6453035303078039 0.3787488439128096 0.6634249520533542 -0.6453035303078039 -0.3787488439128096 0.9866206869680558 0.03480237759473551 -0.1592746513430026 -0.9866206869680558 -0.03480237759473551 0.1592746513430026 0.016290647704942 -0.9171381502189657 -0.3982363973951743 -0.016290647704942 0.9171381502189657 0.3982363973951743 -0.9798578929557653 0.033049689096777 0.1969421937089524 0.9798578929557653 -0.033049689096777 -0.1969421937089524 0.6687046635203147 -0.003313254786347099 -0.7435207430387558 0.6691533453686369 -0.003650025003637705 -0.7431153865312135 0.6695577595913523 -0.003953773836092823 -0.7427494693659914 -0.6695577595913523 0.003953773836092823 0.7427494693659914 -0.6691533453686369 0.003650025003637705 0.7431153865312135 -0.6687046635203147 0.003313254786347099 0.7435207430387558 0.6682020981908339 -0.002936324147361365 -0.7439740143135841 -0.6682020981908339 0.002936324147361365 0.7439740143135841 -0.109182585023408 0.9846313083799815 0.1363097563842444 -0.109182585023408 0.9846313083799815 0.1363097563842444 -0.109182585023408 0.9846313083799815 0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.9998363974575332 7.141383765963521e-005 0.01808793020788936 0.9976328688181551 -0.02100972016673701 0.06547710067018192 0.9597396774909109 0.2745786746262134 0.0592140430147635 -0.9597396774909109 -0.2745786746262134 -0.0592140430147635 -0.9976328688181551 0.02100972016673701 -0.06547710067018192 -0.9998363974575332 -7.141383765963521e-005 -0.01808793020788936 0.9848361978242306 0.01615844898842442 0.1727326488577111 0.856672094315397 0.4840166217746973 0.178439997385904 -0.856672094315397 -0.4840166217746973 -0.178439997385904 -0.9848361978242306 -0.01615844898842442 -0.1727326488577111 -0.98696211613235 0.02493391055134607 -0.1590096897178627 0.98696211613235 -0.02493391055134607 0.1590096897178627 -0.01729793627663625 -0.9218896674301311 -0.3870661732651561 0.01729793627663625 0.9218896674301311 0.3870661732651561 0.6630244607310728 0.6479169333248619 0.3749696147465508 -0.6630244607310728 -0.6479169333248619 -0.3749696147465508 -0.4291444056645902 0.8755119012486158 0.2220675344547685 0.4291444056645902 -0.8755119012486158 -0.2220675344547685 -0.002972792712082139 0.9099971813227669 0.4146037777060294 0.002972792712082139 -0.9099971813227669 -0.4146037777060294 0.8775711867427927 0.09931257888195555 -0.4690477842125063 -0.8775711867427927 -0.09931257888195555 0.4690477842125063 0.07264632224497998 -0.9370277162915097 -0.3416161160803113 -0.07264632224497998 0.9370277162915097 0.3416161160803113 -0.9780693798260903 0.03167860608980022 0.2058561491984491 0.9780693798260903 -0.03167860608980022 -0.2058561491984491 -0.8588543264598119 -0.002726306327623486 -0.5122126640127819 -0.8586600694715521 -0.002560320177594947 -0.5125391008066581 -0.8582920509860762 -0.00224620446095228 -0.513156613305952 0.8582920509860762 0.00224620446095228 0.513156613305952 0.8586600694715521 0.002560320177594947 0.5125391008066581 0.8588543264598119 0.002726306327623486 0.5122126640127819 -0.8580357563130109 -0.002027713692026421 -0.513585951195652 0.8580357563130109 0.002027713692026421 0.513585951195652 -0.01688581023481479 -0.9205500229754365 -0.3902595605653204 0.01688581023481479 0.9205500229754365 0.3902595605653204 -0.988737448764744 0.03460807652772169 -0.1456040468161406 0.988737448764744 -0.03460807652772169 0.1456040468161406 0.9817236992713015 0.03298316703888651 0.1874318248888274 -0.9817236992713015 -0.03298316703888651 -0.1874318248888274 0.002785596797246988 0.9135642906878028 0.4066848008354569 -0.002785596797246988 -0.9135642906878028 -0.4066848008354569 -0.003715581427239436 0.9075670778700513 0.4198906924677824 0.003715581427239436 -0.9075670778700513 -0.4198906924677824 0.9185793612217119 0.09230724313175556 -0.3843062971158896 -0.9185793612217119 -0.09230724313175556 0.3843062971158896 0.04949783681109286 -0.9339419638453096 -0.3539807513407877 -0.04949783681109286 0.9339419638453096 0.3539807513407877 -0.8448040745229659 -0.04735681112537662 0.5329759920572695 0.8448040745229659 0.04735681112537662 -0.5329759920572695 -0.07206498059894695 -0.9376465112780928 -0.3400377309348109 0.07206498059894695 0.9376465112780928 0.3400377309348109 -0.8675974172743418 0.0996611272755185 -0.4871779769746009 0.8675974172743418 -0.0996611272755185 0.4871779769746009 0.980870754914267 0.03167188993408591 0.1920662738273411 -0.980870754914267 -0.03167188993408591 -0.1920662738273411 0.003995682630986656 0.9105358541074029 0.4134108040499359 -0.003995682630986656 -0.9105358541074029 -0.4134108040499359 -0.06377025308336654 0.9361062702478691 0.3458878512239293 0.06377025308336654 -0.9361062702478691 -0.3458878512239293 0.4323102883021924 0.0530645150617952 -0.9001621919794964 -0.4323102883021924 -0.0530645150617952 0.9001621919794964 0.09068971629220776 -0.9398373191312726 -0.3293648264872576 -0.09068971629220776 0.9398373191312726 0.3293648264872576 -0.89587439590845 -0.04364692810303722 0.4421583567262277 0.89587439590845 0.04364692810303722 -0.4421583567262277 -0.05394774551138133 -0.9356041443768313 -0.3489047517290886 0.05394774551138133 0.9356041443768313 0.3489047517290886 0.8373436273772882 -0.04802482564338885 0.5445633717140435 -0.8373436273772882 0.04802482564338885 -0.5445633717140435 -0.9121098089249937 0.09277933971432061 -0.3993090164083277 0.9121098089249937 -0.09277933971432061 0.3993090164083277 0.06730152409430609 0.9373980523815594 0.341694887649556 -0.06730152409430609 -0.9373980523815594 -0.341694887649556 -0.08738201937403496 0.9375900260780157 0.3365847971747116 0.08738201937403496 -0.9375900260780157 -0.3365847971747116 0.4568272935323279 0.04401882866045551 -0.8884656248878117 -0.4568272935323279 -0.04401882866045551 0.8884656248878117 0.05151497838900335 -0.9395351067219221 -0.3385557417008417 -0.05151497838900335 0.9395351067219221 0.3385557417008417 -0.394969106281068 -0.06359206783930438 0.9164908368289645 0.394969106281068 0.06359206783930438 -0.9164908368289645 -0.07952270090936106 -0.9403691550093645 -0.330729485149199 0.07952270090936106 0.9403691550093645 0.330729485149199 0.8903356679666751 -0.0442926671645055 0.4531451842200123 -0.8903356679666751 0.0442926671645055 -0.4531451842200123 -0.4042455124259617 0.0532011627306395 -0.9131019669059858 0.4042455124259617 -0.0532011627306395 0.9131019669059858 0.08651024889737816 0.9378939396687426 0.3359626984776119 -0.08651024889737816 -0.9378939396687426 -0.3359626984776119 -0.0970566982023139 0.931924377921838 0.3494237415646799 0.0970566982023139 -0.931924377921838 -0.3494237415646799 0.1071191013945236 0.07343949725049899 -0.9915302004276136 -0.1071191013945236 -0.07343949725049899 0.9915302004276136 -0.002326866966603946 -0.9452538076808833 -0.3263277872859 0.002326866966603946 0.9452538076808833 0.3263277872859 -0.4120552709137233 -0.06211659127437492 0.9090390436063076 0.4120552709137233 0.06211659127437492 -0.9090390436063076 -0.04353053250813483 -0.9398686495221501 -0.3387506669882254 0.04353053250813483 0.9398686495221501 0.3387506669882254 0.370955215819271 -0.0642954861431061 0.9264223217939536 -0.370955215819271 0.0642954861431061 -0.9264223217939536 -0.4290446271268197 0.04442644661450344 -0.9021901123237922 0.4290446271268197 -0.04442644661450344 0.9021901123237922 0.08511499803969619 0.9325962146665485 0.3507416962642554 -0.08511499803969619 -0.9325962146665485 -0.3507416962642554 -0.05399603319120466 0.9317823507949836 0.35897921826561 0.05399603319120466 -0.9317823507949836 -0.35897921826561 0.001546450211013052 0.9362515579885762 0.3513269540694375 -0.001546450211013052 -0.9362515579885762 -0.3513269540694375 0.1062957171113633 0.07402617534980542 -0.9915751841826522 -0.1062957171113633 -0.07402617534980542 0.9915751841826522 -0.002747462488095163 -0.9454117597753844 -0.3258666229123312 0.002747462488095163 0.9454117597753844 0.3258666229123312 -0.1095480449216852 -0.06437227185794837 0.9918948716823186 0.1095480449216852 0.06437227185794837 -0.9918948716823186 0.005833135918347435 -0.9452465444315101 -0.3263049873441214 -0.005833135918347435 0.9452465444315101 0.3263049873441214 0.3885602999908704 -0.06284595774554791 0.9192775853168886 -0.3885602999908704 0.06284595774554791 -0.9192775853168886 -0.09492198545918304 0.07293069024446487 -0.9928096147282984 0.09492198545918304 -0.07293069024446487 0.9928096147282984 0.04552759092394652 0.9321757341004116 0.3591317853087088 -0.04552759092394652 -0.9321757341004116 -0.3591317853087088 0.001320964449476984 0.9369949929397182 0.3493402900594502 -0.001320964449476984 -0.9369949929397182 -0.3493402900594502 0.06781079953703786 0.06339096066314931 -0.9956823196041751 -0.06781079953703786 -0.06339096066314931 0.9956823196041751 -0.0009121108150353565 -0.9452731957874374 -0.3262786437688901 0.0009121108150353565 0.9452731957874374 0.3262786437688901 -0.1109486858899821 -0.0646082375357192 0.9917238349166637 0.1109486858899821 0.0646082375357192 -0.9917238349166637 0.09862599401148636 -0.06381484593375146 0.9930763207043544 -0.09862599401148636 0.06381484593375146 -0.9930763207043544 0.006731919778519307 -0.9454016983288083 -0.3258378585325845 -0.006731919778519307 0.9454016983288083 0.3258378585325845 -0.09533962166136091 0.07354105201997502 -0.9927245691576611 0.09533962166136091 -0.07354105201997502 0.9927245691576611 -0.00585674817653786 0.9362360349332584 0.3513229075839591 0.00585674817653786 -0.9362360349332584 -0.3513229075839591 0.001063618126260402 0.9555103601597252 0.2949556243639264 -0.001063618126260402 -0.9555103601597252 -0.2949556243639264 0.06676637174755735 0.06297665332872211 -0.9957791887457687 -0.06676637174755735 -0.06297665332872211 0.9957791887457687 -0.0007808558058856688 -0.945066558494442 -0.3268770262341513 0.0007808558058856688 0.945066558494442 0.3268770262341513 -0.06778356439968603 -0.07427319914588644 0.9949315957822976 0.06778356439968603 0.07427319914588644 -0.9949315957822976 0.09863785519546375 -0.06393136056138422 0.9930676485815096 -0.09863785519546375 0.06393136056138422 -0.9930676485815096 0.0009121098624746426 -0.945273195049111 -0.3262786459105843 -0.0009121098624746426 0.945273195049111 0.3262786459105843 -0.06781082967194811 0.06339112364419754 -0.9956823071755007 0.06781082967194811 -0.06339112364419754 0.9956823071755007 -0.005113872727019609 0.936979243186678 0.3493476007403689 0.005113872727019609 -0.936979243186678 -0.3493476007403689 0.0011066045999455 0.9561138177226354 0.2929934179910984 -0.0011066045999455 -0.9561138177226354 -0.2929934179910984 -6.527460857175112e-010 0.06909947499341243 -0.9976097746892993 6.527460857175112e-010 -0.06909947499341243 0.9976097746892993 -1.347770541733307e-010 -0.9398412832334818 -0.341611420081417 1.347770541733307e-010 0.9398412832334818 0.341611420081417 -0.06984418121300744 -0.07471473347307646 0.9947559997068285 0.06984418121300744 0.07471473347307646 -0.9947559997068285 0.06778358821749267 -0.07427310619908654 0.9949316010982366 -0.06778358821749267 0.07427310619908654 -0.9949316010982366 0.0007808560536009646 -0.9450665577020792 -0.326877028524438 -0.0007808560536009646 0.9450665577020792 0.326877028524438 -0.06676629092695928 0.06297683347455915 -0.9957791827716497 0.06676629092695928 -0.06297683347455915 0.9957791827716497 -0.001063617863931956 0.9555103604376601 0.2949556234645008 0.001063617863931956 -0.9555103604376601 -0.2949556234645008 -5.947595930751025e-011 0.9582811076798368 0.2858274281168708 5.947595930751025e-011 -0.9582811076798368 -0.2858274281168708 -1.765349996060053e-010 -0.9394117153834616 -0.3427909406625296 1.765349996060053e-010 0.9394117153834616 0.3427909406625296 -4.496929153027535e-010 0.069446775553659 -0.9975856581593381 4.496929153027535e-010 -0.069446775553659 0.9975856581593381 1.754160081432712e-009 -0.07807047071678244 0.9969478429697614 -1.754160081432712e-009 0.07807047071678244 -0.9969478429697614 0.0698441349091514 -0.07471461379667607 0.9947560119466511 -0.0698441349091514 0.07471461379667607 -0.9947560119466511 -0.001106604917078725 0.9561138179412515 0.2929934172764991 0.001106604917078725 -0.9561138179412515 -0.2929934172764991 -5.696815383325837e-011 0.9584455434264317 0.2852755515041763 5.696815383325837e-011 -0.9584455434264317 -0.2852755515041763 1.940881415368471e-009 -0.07832859275901773 0.9969275959448569 -1.940881415368471e-009 0.07832859275901773 -0.9969275959448569</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"366\" source=\"#ID17\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID15\">\r\n                    <float_array count=\"1150\" id=\"ID18\">3.363011324314395 1.091241105173762 -0.1553451444614712 1.114857243519861 -0.1513262137275674 1.245826278515947 -3.444961309432992 -2.600061641399552 -3.640900552272805 -2.600061641399551 -3.664841055870056 0.1688050011259317 0.1478845043465195 1.114715565585078 -3.370472873082449 1.091099427235427 0.1438655746501197 1.245684600600866 3.363625686805526 1.161250500904157 3.35931410957973 1.017184906139791 -0.1547336583624773 1.184599941148575 -3.465428054332733 0.1688050011259248 -3.444961309432983 -2.600061641399559 -3.664841055870056 0.1688050011259248 -3.444961309432983 -2.368966857590021 -3.417671024799347 -4.001623507588316 -3.640900552272796 -2.368966857590021 3.444961309432983 -2.605930296681317 3.664841055870056 0.1629370603691651 3.640900552272797 -2.605930296681317 -3.366775708089421 1.017046728066655 -3.37108728420215 1.161112322851636 0.1472729696182163 1.184461763099396 5.232526333403246 0.8816716290727438 3.165073438187141 0.9504132468772458 3.17463679401719 1.09432225142684 3.465428054332733 0.1629370603691713 3.664841055870056 0.1629370603691717 3.444961309432992 -2.605930296681311 -0.1662453203201013 4.277515370301163 -3.68468566869181 4.230333896089076 -0.174144990518452 4.431100496335322 -3.615391850471496 -4.001623507588316 -3.821454854119473 4.053629022659217 -5.888020909411589 3.972460822033052 -3.8371194779215 4.223552794113253 3.444961309432983 -2.374807730589978 3.640900552272797 -2.374807730589978 3.417671024799347 -4.007461349848854 -3.172510719572426 0.9501071519867526 -5.239959747342773 0.881365534532131 -3.18207409321333 1.094016155803878 5.208064585780865 0.3770924323198692 5.225823365227359 0.2463947041263298 3.140952443675589 0.4519073964150835 0.1737020930346429 4.277278018298897 0.1816017611957285 4.430863144397903 3.6921433500374 4.230096544066889 -3.669590958958236 4.159879707953389 -3.67733568214817 4.33014074777308 -0.1587979356318518 4.372590041939007 -3.417671024799347 -2.998679591619311 -3.404026031494141 -3.709814581504416 -3.615391850471497 -2.998679591619311 -5.914787297700372 3.734759990333489 -5.90203603357741 3.887075903499135 -3.83586637216516 3.974265709566328 3.828886079136073 4.053204712999882 3.844550732054981 4.223128482792832 5.895448265354315 3.972036513167178 3.615391850471497 -4.007461349848854 -5.233252095411015 0.2460237755530919 -5.21549392738442 0.3767214755863982 -3.148385652438477 0.4515364235619232 4.903843566619047 -0.5478823292112369 4.087453864717281 -0.3597486232310047 4.09614884437698 -0.2284844717547298 3.677049488222819 4.159669778718533 0.1662555542926239 4.372380112774407 3.684794209414996 4.32993081859446 -3.404026031494141 -3.709814581504415 -3.609992563724518 -3.709814581504415 -3.615391850471497 -2.99867959161931 -6.446086437282949 2.59450650613355 -7.254357430308779 2.378929468700127 -6.479162616098119 2.74491834620776 3.843293815772286 3.973794870688992 5.909459608730573 3.886605085336919 5.922210253430289 3.734289208359481 3.417671024799347 -3.004223796660122 3.615391850471497 -3.004223796660122 3.404026031494141 -3.71536232334646 -4.094523750266317 -0.3610205477337822 -4.910918916159961 -0.5491541230999865 -4.10321902030303 -0.2297564873891819 4.899423414798795 -0.5607994889403913 4.876887840851143 -0.6828394993164713 4.083162689502553 -0.3723197720037885 -3.404026031494141 -2.90273125672229 -3.385834991931915 -3.279538441558008 -3.609992563724518 -2.90273125672229 -7.210147450728702 2.023822809671743 -7.265351044455665 2.1712154290896 -6.46243976460627 2.39884994911966 6.452919864954517 2.592722858712204 6.485996164623874 2.743134613197453 7.261196380597501 2.377145943948744 3.609992563724518 -3.71536232334646 -4.883965008323234 -0.6841003794997391 -4.906502474509111 -0.5620607390081219 -4.090236119856233 -0.3735815933244923 4.403677843243818 -1.026441190329094 3.997071167592487 -0.9057965266926231 4.03471507245138 -0.7860839389691612 -3.385834991931914 -3.279538441558009 -3.61734241247177 -3.279538441558009 -3.609992563724517 -2.90273125672229 -7.096346584687105 1.244142846791853 -7.505107656952137 1.104643774466029 -7.18114537945805 1.382564177912367 6.469197397685358 2.396908097022826 7.272114523214139 2.169274317877348 7.21690940863351 2.021882178179872 3.40402603149414 -2.907858650929879 3.609992563724517 -2.907858650929879 3.385834991931914 -3.284662959066703 -4.003697306288606 -0.9075436612659009 -4.410302460156304 -1.028187764826076 -4.04134326209841 -0.7878316292916993 4.80194303154706 -0.06451616791528596 4.82298860351823 -0.2707329905389797 4.389737888171332 0.04373490727972126 -3.385834991931916 -2.926414100524648 -3.37659627199173 -3.11493511735112 -3.617342412471772 -2.926414100524648 -7.598894664383375 1.83150963898636 -7.613542486464217 2.051861945039554 -7.192935074670702 2.167533274606519 7.102304068018194 1.241478919057735 7.187104664978349 1.379899431477534 7.51106381440397 1.101980671806985 3.609992563724517 -2.907858650929878 3.61734241247177 -3.284662959066703 -4.829804761306388 -0.2720205152737582 -4.808759444673219 -0.06580367652390529 -4.396556070892201 0.04244740713633755 7.753569650717056 2.101478480347231 7.665921350776067 2.022913398972865 7.560145750653939 2.212321811953085 -2.749756741017578 -2.995041979031922 -3.097402950109877 -2.995041979031922 -3.007173842046506 -2.820683849110998 -7.634176840463143 2.057940251353917 -7.812935549860432 2.149456661263454 -7.638073995685398 2.27857233954607 7.619935867675237 2.049986764597122 7.605287673675827 1.82963447384389 7.199330183036197 2.165658086132554 3.385834991931914 -2.931390908339032 3.61734241247177 -2.931390908339032 3.376596271991729 -3.119913505532187 -7.673133942537746 2.023559513672274 -7.760778505345099 2.102124495667099 -7.567357649153838 2.2129676870636 7.857324712467795 1.975956969339328 7.742533688840616 2.05771596092277 7.828155208389795 2.137652171269155 2.749756741017579 2.345015600238243 2.641411517930605 2.831962270825535 3.097402950109877 2.345015600238243 -7.24401352842452 3.805631189619558 -7.038729180681206 3.801281165128669 -6.913838049817935 3.665275214523943 7.819560736063652 2.147804905442341 7.640800358253213 2.056288490652131 7.644696436889007 2.276920590610841 3.006401748700101 -2.825442076668657 3.096628090548786 -2.999798913666478 2.748981362314569 -2.999798913666477 -7.749646201003721 2.058540805548088 -7.864434325683387 1.976781869931928 -7.835263830146105 2.138476961174959 7.529002737015872 1.51002548539833 7.514338012453531 1.672932830928272 7.640146586551808 1.692512138772697 2.392642648721047 2.673959912250578 2.643074891691783 2.674694627417805 2.846405821837372 2.185726809895583 -6.929479702051268 2.833735851230139 -6.975013846286685 2.340685757225951 -7.104899002091787 2.837596829670674 -7.631157006578849 2.835462057561212 -8.04951721951365 2.504886153103752 -7.994073785055845 2.910671915849256 -7.12352902858604 2.358711998373981 -7.328866212847088 2.361056434433184 -7.248235429212962 2.856443391906117 6.921302059429526 3.665292614646768 7.046195563824993 3.801298576766062 7.251475738927507 3.805648601625234 -2.640637228004281 2.831384584102829 -2.748981362314569 2.34443769086393 -3.096628090548786 2.34443769086393 -7.521690731583161 1.673324681034132 -7.53635484704045 1.510417301573095 -7.647504677822431 1.692903992956625 5.998012096748293 1.506793739965519 5.893806799275831 1.617504467530705 6.036726345161062 1.785746620089322 7.55767871259555 2.076052129409543 7.431586630695063 2.057635994534083 7.357404331345999 2.568780976099774 2.396168678405192 1.886606019114077 1.94364443756023 2.876446011354756 2.646600839669345 1.887357771677554 -6.949694831687917 2.14685190845241 -7.12510570764405 2.150942886529585 -6.877438122051456 3.182308673505118 -6.325785041756646 1.003471480149776 -6.521915314652772 0.8429392495671604 -6.136667914984765 1.197548469803839 -3.375970934403905 1.951585475714651 -3.32101188788706 1.545758936930594 -3.766293661159237 1.544358603225574 -3.444215953129659 2.68830891261291 -3.567861822787906 2.198441108781526 -3.866611150578393 2.192475169183561 7.993135689125607 2.500216041865653 7.64284985184452 2.829723084090582 8.005942721469616 2.904400225420917 7.336328329478214 2.361081705673661 7.130995316771696 2.358737269612108 7.255699279495952 2.856468663643245 -2.642206135259483 2.674075866950639 -2.39177403700181 2.673341152740492 -2.845538129572966 2.185108686384703 6.982478224044516 2.340662135674304 6.936942904734958 2.833712234356156 7.11236101309747 2.837573212833319 -7.438974329536338 2.057851876040162 -7.565071770183033 2.076268020829575 -7.364798961763082 2.56899713277036 -6.033216610603887 1.57111708506123 -6.159986794465825 1.460226825256347 -6.174789043226012 1.740065083959159 4.85798692031304 1.698477941097572 4.672048310971199 1.443086095910852 4.728856764969501 1.720115144933764 7.172813415527344 2.215624450361127 7.146109938621521 1.716790903165772 6.971959471702576 2.215624450361127 2.999888949933708 3.473632195112481 3.138749138258804 3.475259739310611 3.740984071097564 2.501925893528688 -6.702044348579214 3.175256915664935 -6.93932991602912 2.140044201120406 -6.868574775876112 3.175565134916088 -2.616479399103249 3.064540991371932 -3.094892377718396 2.084727567279685 -3.348238529858119 2.08158794193209 3.783452369573576 -2.410573954978049 3.282289435742107 -2.627889051920066 3.24470700120309 -2.40720453052603 -3.862978237507477 2.074314600976639 -3.564229409625427 2.080296012234676 -3.956567065386774 1.674269159886016 3.738677437160806 -2.637534584050092 3.293399873181828 -2.635465586596091 3.79425227612451 -2.417707902547568 -3.355590941516178 2.478382701804081 -3.102244054118723 2.481485393674201 -3.520550970233599 1.98351141238814 -7.594606175405855 2.202466850080047 -7.47794979832137 2.35317745592341 -7.246228508829629 2.533223430132042 3.325156879871405 2.390352099686712 3.38006444490519 2.792347920228598 3.770438741948165 2.388968882714275 3.568171165915268 2.197777784379399 3.444524138274316 2.687645231246857 3.866920632239829 2.191811849128781 -1.939136937806618 2.996857556485883 -2.394736093995948 2.011654222883672 -2.645168127583657 2.012402454049706 7.132537761470795 2.151957450803447 6.95712805949004 2.147866943964651 6.910562859290539 3.183204435103502 -6.979426145553589 2.215624450361126 -7.153576016426086 1.716790903165771 -7.180280089378357 2.215624450361126 -4.659333070171257 1.282465330407035 -4.825829750865863 1.539219265082906 -4.696736382727083 1.560995895547962 4.9290532598241 1.276143286731304 4.718100678503693 1.426794932530108 4.903539531627329 1.682411541928784 4.745156419409949 1.239670733106283 4.616148262563794 1.261753702561913 4.741063915256745 1.751263448479428 7.172813415527344 1.827794836268678 6.971959471702576 1.827794836268678 6.760110855102539 2.897398463765879 3.001333178159676 3.389455477460454 2.431488071920004 4.362362003789879 3.140193293588899 3.391086865953328 -6.702422187397375 2.983882575984508 -6.86895259429575 2.984197541863131 -6.650642565982718 4.148839642526224 -2.676590297209839 3.015327403606043 -2.53347023241928 3.016622927711519 -3.262009120200233 2.032190694220815 -3.264121531577342 -0.6185343306447173 -3.302574581835824 -0.7923742430616737 -3.802873578432089 -0.6211608736339703 3.59076536853066 2.919562560720977 3.889516220689897 2.913639727148494 3.981244018816276 2.516246032851238 -3.308480961832819 -0.8012053494908562 -3.753761581660225 -0.8028171550667607 -3.808689367685841 -0.629828256812915 3.102150346193101 2.480610382783226 3.355497187440614 2.477507691629174 3.520458100523353 1.982636516424233 6.946792029182502 2.141282976391568 6.735189966000142 3.176353257888278 6.90172277714292 3.1766614347321 -3.13787716514938 3.590355447087952 -2.999016829737287 3.588732769932899 -3.739213164752058 2.619932279714279 3.097163209888682 2.211457492722142 2.618085232636954 3.187125497516952 3.350509581303376 2.208331150580494 -6.979426145553592 1.827794836268678 -7.180280089378361 1.827794836268678 -6.793265938758852 2.897398463765879 -4.622798642746512 1.260962125007225 -4.751807891381726 1.238879152986148 -4.747714062753222 1.750471927792585 -3.255359593263395 1.784445893554394 -3.377998912594182 1.634497298505222 -3.434335941777626 2.035950374748347 6.905620994244752 2.880413598497575 7.158225753153406 1.813100505230981 6.747989884040035 2.883291205058956 2.797228129713849 4.570021020669109 2.971894593907851 4.578549266746009 3.51675404507292 3.60368179874324 -6.546684035612724 4.104305580285383 -6.77991456089315 3.048920602753996 -6.711066182568706 4.213330661426279 -1.929066760568944 4.330132436477025 -2.536573929178348 3.254264834924483 -2.679694140598081 3.252979374275868 6.90198706610201 3.042738196867563 6.735454268915141 3.042425387819891 6.678202909160588 4.247452502940356 -2.432187037378961 4.420404853308839 -3.002207798147593 3.403459163418558 -3.141067985031883 3.405089687260619 2.534057263812353 3.139163502602719 2.677177372647691 3.137873614003794 3.263546273745768 2.159013531616769 -7.165698991808533 1.813376139786578 -6.938783096555175 2.880652392949351 -6.781150195221142 2.88352990018531 6.90921543989634 3.072505921917002 6.751582485250123 3.075320308184777 6.534872179003074 4.126520120381919 3.087366207216764 0.7150470426967408 2.991422126483569 1.069046709694413 3.261774413532147 0.7263837354393467 -6.191689921848177 4.467119016759341 -6.362427615455451 4.56992179024694 -5.890724466119536 4.740902389830819 -2.516033550490085 4.562246692240131 -2.342676875381855 4.553387972531977 -3.107369740252683 3.482374972634118 6.775677381336893 3.074666827339538 6.544554124886941 4.171114881393614 6.709702635397148 4.279417889599178 2.535780028834959 3.270835456004771 1.928448359359963 4.390686350372738 2.678900213827625 3.269550807327317 -2.973697806718678 4.62850459838636 -2.799031287025279 4.619977831494026 -3.519035698294822 3.609518095869491 -6.785886084602273 3.136879251431091 -6.943521368422148 3.134083679893112 -6.56347069178487 4.228557034944899 6.871315886065541 3.032678645942017 6.503730840512504 4.08816378816996 6.658245864851171 4.196476182069274 2.479245290902088 0.6799391594704114 2.655386600500139 0.6887119106616295 2.723775693035722 0.325473928040234 -5.786815964834077 4.41743193651017 -6.256253125735997 4.242634564742138 -5.799836684864317 4.57912805001892 -2.764790416968209 -0.3099461404066007 -2.93767842662447 -0.2965708418704494 -2.654121206895844 0.1743715649900948 6.410496587940926 4.588502606663502 6.240007306484755 4.485448140664476 5.926333253693103 4.749144969994971 2.342550010904686 4.605539762404322 2.51590689397195 4.614397225654048 3.107366593594489 3.490427715015902 -3.019751154199075 0.813696567399304 -3.118750605215249 0.4610497625235205 -3.293114010547314 0.4728046342728451 -6.499981634076516 4.153969748633226 -6.866414130243568 3.0566261660537 -6.655163170917687 4.261689361615773 6.320661604646921 4.506123984109544 6.160719536389932 4.402801809377919 5.847271939966228 4.674895757954358 4.475126514475689 -3.139489052202338 4.310861229382351 -3.190270440552815 3.712788380835582 -1.81061645316503 -6.219749017878388 4.656698261009725 -6.221426397937465 4.818713106940197 -4.371602260915684 5.005078906591893 -2.573507219184859 0.123166923536211 -2.850978286353149 -0.3500135887976733 -2.742966987028473 0.1374310117205718 6.326034469667299 4.30186700299907 5.843622117431883 4.465736879078405 5.855722307044476 4.627476358188781 2.796081378531468 -0.5021796092870459 2.682180257178022 -0.01753821345826981 2.968910683649469 -0.4883419603594429 -2.677514768040854 0.4272692987426954 -2.501401708623118 0.4181522080289449 -2.747693030851121 0.06472171681886078 -6.211937926494723 4.420431923506698 -6.371608914610234 4.524011695051512 -5.885738513333545 4.682423819668592 6.182316541170235 4.084370033139755 5.711766468973696 4.257986463479243 5.725137688084235 4.424187225022235 6.225875089733087 4.705598514825299 6.226124551745001 4.539065342408841 4.386576789189246 4.716321352820723 4.280851344301558 -1.114383093943481 5.212464066453744 -2.374424283921286 4.134375191175259 -1.182206610588335 -4.380574847206741 4.884036770681126 -6.227571691308472 4.712204003581481 -4.37888839880877 5.058818498672211 -4.863920587890178 -2.628537670686931 -5.012055977869064 -2.562245890919636 -3.887823801815627 -1.378453122986953 6.253968750578897 4.863936472538404 6.252869723395892 4.701919438002648 4.395507797000101 5.01459432400774 2.603744200918126 -0.0675143808171938 2.773135743585333 -0.05275609087205359 2.88441538098767 -0.5405722752387457 -3.970997117430519 -1.694725850269888 -4.714607482699267 -3.03282589780904 -4.873007805014202 -2.971589748269491 -5.775253029903046 4.308120282781093 -6.258880676701894 4.145516521376522 -5.787544273760879 4.474373072257086 6.226044261950792 4.740855154327086 4.386745596272524 4.751539162644003 4.386484668088556 4.926125753368285 4.420595087537521 -0.9824866923526269 4.279573029886118 -1.057121830978527 2.913500309799356 0.5062628034162329 -4.371847724656409 4.879211601165759 -4.37046663728801 5.053994987432245 -1.972225710654404 5.247679973906447 -4.919860463928752 -2.657000446341697 -3.976616174530816 -1.400859471856824 -3.827291160728394 -1.455001196462917 4.143155088372027 -1.20519707237488 5.408309180123485 -2.301275976026724 5.268764062628875 -2.378243230022588 6.259748007929074 4.756894376780651 4.404214438903148 4.893193152894964 4.401952434286432 5.067970868929011 -4.509290824377787 -0.8869529922811061 -4.372188638714785 -0.9659787194513991 -5.601427948645435 -2.067872402622526 -4.413776507097539 4.727517860431248 -6.262003003190792 4.586268298636127 -6.261075233875922 4.752800424840699 4.378575836076083 4.921700353745099 4.378552318954246 4.747113643335689 1.972273653746801 4.943986761700014 2.882609416811939 0.2974335323744031 4.093205774324514 -1.343324673699387 2.742661400572453 0.2283284366643733 -1.97306245640906 5.073745614681402 -4.371654801356737 4.877573717286324 -1.972046964483193 5.246099221765742 -4.058011030152646 -1.324667796130753 -4.201092367989796 -1.260940684376005 -2.688106748254699 0.2359371195845208 4.061017289485063 -1.330326344986218 4.204131887652479 -1.266645323033161 5.280453381301022 -2.458015933965689 4.377931523600408 5.053996240945879 4.37931499523145 4.879212855072634 1.979691937985324 5.247681226984314 -2.917958641228029 0.5015790382689307 -4.28402565300467 -1.061809814189349 -4.425047483154843 -0.9871744741953735 -4.413387164833381 4.762143724781832 -6.260687912101217 4.787334763896554 -4.412452425655175 4.93672888762891 4.380206407626598 5.137082954250202 1.973897438993191 5.158911206979114 1.977764843012009 5.331083965876196 2.772666770969397 1.163276922930621 2.692141335111127 1.049773363124517 0.9519103176151644 1.787726003152057 -1.974631578162743 5.074155862236125 -1.973559904608792 5.246509258805685 0.001196126629127586 5.307396446881216 -4.3747741012958 -0.9656669121644274 -2.866779137099168 0.5182987753131525 -2.725923580872883 0.4396082863386507 4.062077012743613 -1.329543916370038 2.692161523327219 0.2310536357480181 4.205158671723249 -1.265817105306885 4.379122069019729 4.877574765997092 1.980528084987827 5.073746663488098 1.979513189146325 5.24610027065672 -2.886596839790157 0.2925076435209275 -2.746648776952617 0.2234026023531332 -4.097198394391896 -1.348249267559785 -4.386018694525992 4.747113020988515 -4.386042211644917 4.921699731397924 -1.979739731292052 4.94398613935284 1.976958240847883 5.159477248897645 0.0002558056373687623 5.215676113176325 1.980734731456215 5.33165125669606 0.006621650679452279 5.068569953189448 -1.969041235255684 5.012140162207792 0.006508141286023687 5.246835204736376 0.9665412120711872 1.961348275235311 2.739451801271774 1.271389977423975 0.8930927937344544 1.847441088196134 -2.634893744918189 1.13779737732554 -2.718992970340795 1.25651282003048 -0.8669201300834908 1.832527505845364 2.730427803217191 0.434958167162637 2.871283277958421 0.5136487327236128 4.379276657673796 -0.9703183990415918 1.98102612436018 5.246511807061357 1.982097201853244 5.074158410287361 0.006269994174613433 5.307398995209108 -0.958446106655611 1.784896237836819 -2.698677170116475 1.046944488479108 -2.779202923349742 1.160447911292415 -1.981363515933531 5.158911980882619 -4.387672782589707 5.137083728155668 -1.985230770944093 5.331084739764228 1.979370095927085 5.359339000532783 -0.001136560109975048 5.243657279146571 -0.001214392540318872 5.420447844660266 1.976506857319015 5.012137220215808 0.0008444684858135076 5.068567011197461 0.0009579779078014775 5.246832262744378 -0.9731955653287988 1.958692946536143 -0.8997471455144981 1.844785760086569 -2.746106100963762 1.268734652296151 -0.8334575878217123 1.871810990948354 -2.699549169916647 1.324511915116575 -0.9108048461715025 1.996245543828041 2.641530225683527 1.135114165178643 0.8735568164435165 1.82984479154096 2.725629236375278 1.253829692954878 -0.007721920714548686 5.21567933006274 -1.984424305868512 5.159480465804964 -1.988200647459517 5.331654473539335 -0.006329562512153622 5.243659313274075 -1.986836019474041 5.359341034660285 -0.006251730073986694 5.420449878787768 0.8401599042857876 1.869232838044573 0.9175071689004798 1.993667388514356 2.70625128012307 1.321933772812247</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"575\" source=\"#ID18\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID14\">\r\n                    <input semantic=\"POSITION\" source=\"#ID12\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID13\"/>\r\n                </vertices>\r\n                <triangles count=\"388\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID14\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID15\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 1 6 8 7 2 8 3 8 9 7 4 6 0 9 10 10 1 11 4 11 11 10 5 9 12 12 6 13 2 14 3 14 7 13 13 12 6 15 14 16 0 17 5 17 15 16 7 15 16 18 2 19 8 20 9 20 3 19 17 18 18 21 8 22 1 23 4 23 9 22 19 21 20 24 10 25 0 26 5 26 11 25 21 24 12 27 2 28 16 29 17 29 3 28 13 27 22 30 6 31 12 32 13 32 7 31 23 30 14 16 20 33 0 17 5 17 21 33 15 16 24 34 14 35 6 36 7 36 15 35 25 34 16 37 8 38 26 39 27 39 9 38 17 37 18 40 28 41 8 42 9 42 29 41 19 40 20 43 30 44 10 45 11 45 31 44 21 43 22 46 12 47 16 48 17 48 13 47 23 46 24 49 6 50 22 51 23 51 7 50 25 49 14 52 32 53 20 54 21 54 33 53 15 52 34 55 14 56 24 57 25 57 15 56 35 55 36 58 16 59 26 60 27 60 17 59 37 58 26 39 8 38 28 61 29 61 9 38 27 39 38 62 28 63 18 64 19 64 29 63 39 62 40 65 30 66 20 67 21 67 31 66 41 65 36 68 22 69 16 70 17 70 23 69 37 68 32 71 40 72 20 73 21 73 41 72 33 71 34 74 32 75 14 76 15 76 33 75 35 74 36 77 26 78 42 79 43 79 27 78 37 77 26 80 28 81 44 82 45 82 29 81 27 80 38 83 46 84 28 85 29 85 47 84 39 83 40 86 48 87 30 88 31 88 49 87 41 86 32 89 50 90 40 91 41 91 51 90 33 89 52 92 32 93 34 94 35 94 33 93 53 92 42 95 26 96 44 97 45 97 27 96 43 95 44 82 28 81 46 98 47 98 29 81 45 82 54 99 46 100 38 101 39 101 47 100 55 99 56 102 48 103 40 104 41 104 49 103 57 102 50 105 56 106 40 107 41 107 57 106 51 105 52 108 50 109 32 110 33 110 51 109 53 108 42 111 44 112 58 113 59 113 45 112 43 111 44 114 46 115 60 116 61 116 47 115 45 114 54 117 62 118 46 119 47 119 63 118 55 117 56 120 64 121 48 122 49 122 65 121 57 120 50 123 66 124 56 125 57 125 67 124 51 123 68 126 50 127 52 128 53 128 51 127 69 126 58 129 44 130 60 131 61 131 45 130 59 129 60 116 46 132 62 133 63 133 47 132 61 116 70 134 62 135 54 136 55 136 63 135 71 134 72 137 64 138 56 139 57 139 65 138 73 137 66 140 74 141 56 142 57 142 75 141 67 140 68 143 66 144 50 145 51 145 67 144 69 143 60 146 76 147 58 148 59 148 77 147 61 146 60 149 62 150 78 151 79 151 63 150 61 149 70 152 80 153 62 154 63 154 81 153 71 152 82 155 64 156 72 157 73 157 65 156 83 155 84 158 85 159 86 160 87 160 88 159 89 158 90 161 66 162 68 163 69 163 67 162 91 161 78 164 76 165 60 166 61 166 77 165 79 164 62 167 92 168 78 169 79 169 93 168 63 167 70 170 94 171 80 172 81 172 95 171 71 170 82 173 72 174 96 175 97 175 73 174 83 173 85 176 98 177 86 178 87 178 99 177 88 176 100 179 101 180 102 181 103 181 104 180 105 179 68 182 106 183 90 184 91 184 107 183 69 182 101 185 108 186 102 187 103 187 109 186 104 185 76 188 78 189 110 190 111 190 79 189 77 188 112 191 113 192 114 193 115 193 116 192 117 191 80 194 94 195 118 196 119 196 95 195 81 194 120 197 82 198 96 199 97 199 83 198 121 197 96 200 72 201 122 202 123 202 73 201 97 200 85 203 124 204 98 205 99 205 125 204 88 203 100 206 102 207 126 208 127 208 103 207 105 206 128 209 106 210 68 211 69 211 107 210 129 209 130 212 131 213 132 214 133 214 134 213 135 212 136 215 130 216 137 217 138 217 135 216 139 215 140 218 76 219 110 220 111 220 77 219 141 218 142 221 143 222 144 223 145 223 146 222 147 221 148 224 112 225 114 226 115 226 117 225 149 224 143 227 150 228 144 229 145 229 151 228 146 227 80 230 118 231 152 232 153 232 119 231 81 230 94 233 154 234 118 235 119 235 155 234 95 233 137 236 120 237 96 238 97 238 121 237 138 236 156 239 96 240 122 241 123 241 97 240 157 239 124 242 158 243 98 244 99 244 159 243 125 242 160 245 100 246 126 247 127 247 105 246 161 245 162 248 136 249 156 250 157 250 139 249 163 248 164 251 165 252 166 253 167 253 168 252 169 251 137 254 130 255 132 256 133 256 135 255 138 254 170 257 165 258 164 259 169 259 168 258 171 257 156 260 136 261 137 262 138 262 139 261 157 260 172 263 173 264 174 265 175 265 176 264 177 263 178 266 179 267 180 268 181 268 182 267 183 266 179 269 184 270 185 271 186 271 187 270 182 269 188 272 112 273 148 274 149 274 117 273 189 272 144 275 150 276 190 277 191 277 151 276 145 275 152 278 118 279 192 280 193 280 119 279 153 278 154 281 185 282 118 283 119 283 186 282 155 281 194 284 120 285 137 286 138 286 121 285 195 284 137 287 96 288 156 289 157 289 97 288 138 287 156 290 122 291 196 292 197 292 123 291 157 290 124 293 198 294 158 295 159 295 199 294 125 293 160 296 126 297 200 298 201 298 127 297 161 296 202 299 162 300 156 301 157 301 163 300 203 299 204 302 205 303 206 304 207 304 208 303 209 302 179 305 185 306 180 307 181 307 186 306 182 305 205 308 210 309 206 310 207 310 211 309 208 308 184 311 192 312 185 313 186 313 193 312 187 311 150 314 212 315 190 316 191 316 213 315 151 314 214 317 188 318 148 319 149 319 189 318 215 317 184 320 216 321 192 322 193 322 217 321 187 320 152 323 192 324 218 325 219 325 193 324 153 323 118 326 185 327 192 328 193 328 186 327 119 326 154 329 180 330 185 331 186 331 181 330 155 329 220 332 156 333 196 334 197 334 157 333 221 332 198 335 222 336 158 337 159 337 223 336 199 335 224 338 160 339 200 340 201 340 161 339 225 338 226 341 162 342 202 343 203 343 163 342 227 341 190 344 212 345 228 346 229 346 213 345 191 344 230 347 188 348 214 349 215 349 189 348 231 347 216 350 232 351 192 352 193 352 233 351 217 350 192 353 234 354 218 355 219 355 235 354 193 353 220 356 196 357 236 358 237 358 197 357 221 356 198 359 238 360 222 361 223 361 239 360 199 359 224 362 200 363 240 364 241 364 201 363 225 362 242 365 226 366 202 367 203 367 227 366 243 365 212 368 244 369 228 370 229 370 245 369 213 368 216 371 246 372 232 373 233 373 247 372 217 371 248 374 230 375 214 376 215 376 231 375 249 374 218 377 234 378 250 379 251 379 235 378 219 377 220 380 236 381 252 382 253 382 237 381 221 380 238 383 254 384 222 385 223 385 255 384 239 383 240 386 200 387 256 388 257 388 201 387 241 386 226 389 242 390 258 391 259 391 243 390 227 389 228 392 244 393 260 394 261 394 245 393 229 392 246 395 262 396 232 397 233 397 263 396 247 395 264 398 230 399 248 400 249 400 231 399 265 398 250 401 234 402 266 403 267 403 235 402 251 401 252 404 236 405 268 406 269 406 237 405 253 404 254 407 238 408 270 409 271 409 239 408 255 407 240 410 256 411 272 412 273 412 257 411 241 410 258 413 242 414 274 415 275 415 243 414 259 413 228 416 260 417 276 418 277 418 261 417 229 416 246 419 278 420 262 421 263 421 279 420 247 419 280 422 264 423 248 424 249 424 265 423 281 422 250 425 266 426 282 427 283 427 267 426 251 425 252 428 268 429 284 430 285 430 269 429 253 428 284 431 268 432 286 433 287 433 269 432 285 431 270 434 238 435 288 436 289 436 239 435 271 434 290 437 240 438 272 439 273 439 241 438 291 437 258 440 274 441 292 442 293 442 275 441 259 440 276 443 260 444 294 445 295 445 261 444 277 443 278 446 296 447 262 448 263 448 297 447 279 446 298 449 264 450 280 451 281 451 265 450 299 449 282 452 266 453 300 454 301 454 267 453 283 452 284 455 286 456 302 457 303 457 287 456 285 455 270 458 288 459 304 460 305 460 289 459 271 458 290 461 272 462 306 463 307 463 273 462 291 461 274 464 308 465 292 466 293 466 309 465 275 464 310 467 296 468 278 469 279 469 297 468 311 467 260 470 312 471 294 472 295 472 313 471 261 470 298 473 314 474 264 475 265 475 315 474 299 473 316 476 282 477 300 478 301 478 283 477 317 476 302 479 286 480 318 481 319 481 287 480 303 479 304 482 288 483 320 484 321 484 289 483 305 482 322 485 290 486 306 487 307 487 291 486 323 485 292 488 308 489 324 490 325 490 309 489 293 488 310 491 326 492 296 493 297 493 327 492 311 491 294 494 312 495 328 496 329 496 313 495 295 494 330 497 314 498 298 499 299 499 315 498 331 497 316 500 300 501 332 502 333 502 301 501 317 500 302 503 318 504 334 505 335 505 319 504 303 503 304 506 320 507 336 508 337 508 321 507 305 506 322 509 306 510 338 511 339 511 307 510 323 509 308 512 340 513 324 514 325 514 341 513 309 512 310 515 342 516 326 517 327 517 343 516 311 515 312 518 344 519 328 520 329 520 345 519 313 518 330 521 346 522 314 523 315 523 347 522 331 521 316 524 332 525 348 526 349 526 333 525 317 524 318 527 350 528 334 529 335 529 351 528 319 527 352 530 322 531 338 532 339 532 323 531 353 530 354 533 304 534 336 535 337 535 305 534 355 533 324 536 340 537 356 538 357 538 341 537 325 536 342 539 358 540 326 541 327 541 359 540 343 539 328 542 344 543 338 544 339 544 345 543 329 542 336 545 346 546 330 547 331 547 347 546 337 545 348 548 332 549 360 550 361 550 333 549 349 548 334 551 350 552 362 553 363 553 351 552 335 551 344 554 352 555 338 556 339 556 353 555 345 554 354 557 336 558 330 559 331 559 337 558 355 557 356 560 340 561 364 562 365 562 341 561 357 560 342 563 356 564 358 565 359 565 357 564 343 563 350 566 348 567 360 568 361 568 349 567 351 566 350 569 360 570 362 571 363 571 361 570 351 569 356 572 364 573 358 574 359 574 365 573 357 572</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID19\">\r\n            <mesh>\r\n                <source id=\"ID22\">\r\n                    <float_array count=\"162\" id=\"ID25\">0.1924440562725067 0.2711399495601654 0.6115583777427673 0.1957686692476273 0.2042710781097412 0.7609833478927612 0.002700587967410684 0.2004776000976563 0.7722446918487549 0.002700587967410684 0.2004776000976563 0.7722446918487549 0.1957686692476273 0.2042710781097412 0.7609833478927612 0.1924440562725067 0.2711399495601654 0.6115583777427673 0.4444983303546906 0.2680619955062866 0.586967945098877 0.4444983303546906 0.2680619955062866 0.586967945098877 0.002700587967410684 0.2720804810523987 0.6240522265434265 0.002700587967410684 0.2720804810523987 0.6240522265434265 0.4397116601467133 0.2113500535488129 0.7385702729225159 0.4397116601467133 0.2113500535488129 0.7385702729225159 0.352396547794342 0.3509823083877564 0.4470842778682709 0.352396547794342 0.3509823083877564 0.4470842778682709 0.002700587967410684 0.3516040444374085 0.4641821682453156 0.002700587967410684 0.3516040444374085 0.4641821682453156 -0.1870429217815399 0.2711399495601654 0.6115583777427673 -0.1870429217815399 0.2711399495601654 0.6115583777427673 0.6850299835205078 0.2828713655471802 0.5538220405578613 0.6850299835205078 0.2828713655471802 0.5538220405578613 0.5602087378501892 0.3492371141910553 0.4287796020507813 0.5602087378501892 0.3492371141910553 0.4287796020507813 -0.1903675049543381 0.2042710781097412 0.7609833478927612 -0.1903675049543381 0.2042710781097412 0.7609833478927612 0.6636645793914795 0.2286375910043716 0.6840465664863586 0.6636645793914795 0.2286375910043716 0.6840465664863586 0.709339439868927 0.3376691043376923 0.4316198825836182 0.709339439868927 0.3376691043376923 0.4316198825836182 -0.3469953238964081 0.3509823083877564 0.4470842778682709 -0.3469953238964081 0.3509823083877564 0.4470842778682709 -0.4390972852706909 0.2680619955062866 0.586967945098877 -0.4390972852706909 0.2680619955062866 0.586967945098877 0.6231700778007507 0.2220461815595627 0.7204016447067261 0.6231700778007507 0.2220461815595627 0.7204016447067261 0.643763542175293 0.3510677814483643 0.3979833722114563 0.643763542175293 0.3510677814483643 0.3979833722114563 -0.4343104958534241 0.2113500535488129 0.7385702729225159 -0.4343104958534241 0.2113500535488129 0.7385702729225159 0.7126624584197998 0.357633650302887 0.3590758442878723 0.7126624584197998 0.357633650302887 0.3590758442878723 -0.5548076629638672 0.3492371141910553 0.4287796020507813 -0.5548076629638672 0.3492371141910553 0.4287796020507813 -0.6796286106109619 0.2828713655471802 0.5538220405578613 -0.6796286106109619 0.2828713655471802 0.5538220405578613 -0.7039383053779602 0.3376691043376923 0.4316198825836182 -0.7039383053779602 0.3376691043376923 0.4316198825836182 -0.6572906970977783 0.2286375910043716 0.6784615516662598 -0.6572906970977783 0.2286375910043716 0.6784615516662598 -0.6383625268936157 0.3510677814483643 0.3979833722114563 -0.6383625268936157 0.3510677814483643 0.3979833722114563 -0.616965651512146 0.2220461815595627 0.7161311507225037 -0.616965651512146 0.2220461815595627 0.7161311507225037 -0.7072612643241882 0.357633650302887 0.3590758442878723 -0.7072612643241882 0.357633650302887 0.3590758442878723</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"54\" source=\"#ID25\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID23\">\r\n                    <float_array count=\"162\" id=\"ID26\">0.03485320284872272 0.899138437978854 0.4362743673425384 0.01951910867172393 0.9171748765335216 0.3980065957397955 1.051160530737447e-009 0.9061375626667 0.4229831173042872 -1.051160530737447e-009 -0.9061375626667 -0.4229831173042872 -0.01951910867172393 -0.9171748765335216 -0.3980065957397955 -0.03485320284872272 -0.899138437978854 -0.4362743673425384 0.0257166868780685 0.908666212219352 0.4167305685775294 -0.0257166868780685 -0.908666212219352 -0.4167305685775294 3.645488823785591e-009 0.8979822765258833 0.4400316250514187 -3.645488823785591e-009 -0.8979822765258833 -0.4400316250514187 0.001300593575580135 0.938226845998182 0.3460183433066159 -0.001300593575580135 -0.938226845998182 -0.3460183433066159 0.04630452055562252 0.8783656303933205 0.4757412224307018 -0.04630452055562252 -0.8783656303933205 -0.4757412224307018 8.738997922719271e-010 0.8929615435048699 0.4501329601588852 -8.738997922719271e-010 -0.8929615435048699 -0.4501329601588852 -0.03485319651907277 0.89913844009921 0.4362743634782617 0.03485319651907277 -0.89913844009921 -0.4362743634782617 0.003983352877028968 0.9189265915012781 0.3944084841020794 -0.003983352877028968 -0.9189265915012781 -0.3944084841020794 0.05753510116414596 0.8849008725822695 0.4622122432791778 -0.05753510116414596 -0.8849008725822695 -0.4622122432791778 -0.01951910407534057 0.9171748731339707 0.3980066037992096 0.01951910407534057 -0.9171748731339707 -0.3980066037992096 0.009659538208278065 0.9410757749378406 0.3380578044458462 -0.009659538208278065 -0.9410757749378406 -0.3380578044458462 0.04496678695988145 0.935419526232216 0.3506683590146127 -0.04496678695988145 -0.935419526232216 -0.3506683590146127 -0.0463044972456431 0.8783656491122684 0.475741190138516 0.0463044972456431 -0.8783656491122684 -0.475741190138516 -0.02571666601298755 0.908666221566183 0.4167305494846911 0.02571666601298755 -0.908666221566183 -0.4167305494846911 -0.04492138787749118 0.9905538335691692 0.1295575999800209 0.04492138787749118 -0.9905538335691692 -0.1295575999800209 0.06688683703105594 0.9649000494973166 0.2539567788267463 -0.06688683703105594 -0.9649000494973166 -0.2539567788267463 -0.003213236844278409 0.9375383555841581 0.3478670822563341 0.003213236844278409 -0.9375383555841581 -0.3478670822563341 0.05934913700066501 0.9617562798550992 0.2673995850717735 -0.05934913700066501 -0.9617562798550992 -0.2673995850717735 -0.05753510569380399 0.8849008584507783 0.4622122697699384 0.05753510569380399 -0.8849008584507783 -0.4622122697699384 -0.007363809001137122 0.9171999091885652 0.3983592610966668 0.007363809001137122 -0.9171999091885652 -0.3983592610966668 -0.04496687070698219 0.9354195212454681 0.3506683615778889 0.04496687070698219 -0.9354195212454681 -0.3506683615778889 -0.02259546634892213 0.9354078084312736 0.3528479514270653 0.02259546634892213 -0.9354078084312736 -0.3528479514270653 -0.06688688639620655 0.964900012856177 0.2539569050417224 0.06688688639620655 -0.964900012856177 -0.2539569050417224 0.04228500258832065 0.990857597467327 0.1281140121039941 -0.04228500258832065 -0.990857597467327 -0.1281140121039941 -0.05934926707443611 0.9617562834541745 0.2673995432571656 0.05934926707443611 -0.9617562834541745 -0.2673995432571656</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"54\" source=\"#ID26\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID24\">\r\n                    <input semantic=\"POSITION\" source=\"#ID22\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID23\"/>\r\n                </vertices>\r\n                <triangles count=\"60\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID24\"/>\r\n                    <p>0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 6 10 1 4 11 7 12 6 0 5 7 13 14 0 8 9 5 15 16 8 2 3 9 17 6 18 10 11 19 7 12 20 6 7 21 13 14 12 0 5 13 15 16 14 8 9 15 17 22 16 2 3 17 23 18 24 10 11 25 19 26 18 6 7 19 27 20 26 6 7 27 21 28 14 16 17 15 29 30 16 22 23 17 31 24 32 10 11 33 25 20 34 26 27 35 21 30 28 16 17 29 31 36 30 22 23 31 37 34 38 26 27 39 35 40 28 30 31 29 41 42 30 36 37 31 43 44 40 30 31 41 45 42 44 30 31 45 43 46 42 36 37 43 47 48 40 44 45 41 49 50 46 36 37 47 51 52 48 44 45 49 53</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID27\">\r\n            <mesh>\r\n                <source id=\"ID28\">\r\n                    <float_array count=\"288\" id=\"ID32\">-0.07851788401603699 0.1782157123088837 0.750410795211792 -0.07483669370412827 0.1782276183366776 0.7286940813064575 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.07483669370412827 0.1782276183366776 0.7286940813064575 -0.07851788401603699 0.1782157123088837 0.750410795211792 0.000409614498494193 0.1782157123088837 0.750410795211792 0.000409614498494193 0.1782157123088837 0.750410795211792 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.07149340957403183 0.1782367527484894 0.7254133224487305 -0.07149340957403183 0.1782367527484894 0.7254133224487305 -0.07443798333406448 0.1782035082578659 0.7693319320678711 -0.07443798333406448 0.1782035082578659 0.7693319320678711 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.07443798333406448 0.1968002468347549 0.7693800926208496 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.07443798333406448 0.1968002468347549 0.7693800926208496 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.07851788401603699 0.1968121081590653 0.7504593729972839 -0.07851788401603699 0.1968121081590653 0.7504593729972839 -0.09266245365142822 0.1896431148052216 0.724322497844696 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.000409614498494193 0.1782397478818893 0.7226461172103882 -0.07120383530855179 0.1781944781541824 0.7728844285011292 -0.07120383530855179 0.1781944781541824 0.7728844285011292 -0.07120383530855179 0.1967910826206207 0.772932767868042 -0.07120383530855179 0.1967910826206207 0.772932767868042 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.07483669370412827 0.1968243420124054 0.7287421822547913 -0.07483669370412827 0.1968243420124054 0.7287421822547913 -0.08871600776910782 0.1896520107984543 0.7204501032829285 -0.08871600776910782 0.1896520107984543 0.7204501032829285 0.07204876095056534 0.1782367527484894 0.7255136966705322 0.07204876095056534 0.1782367527484894 0.7255136966705322 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.000409614498494193 0.1968121081590653 0.7504593729972839 0.000409614498494193 0.1968121081590653 0.7504593729972839 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08871600776910782 0.1896520107984543 0.7204501032829285 -0.08871600776910782 0.1896520107984543 0.7204501032829285 0.07520543038845062 0.1782276183366776 0.7287005186080933 0.07520543038845062 0.1782276183366776 0.7287005186080933 -0.003841559402644634 0.1896552294492722 0.7171844244003296 -0.003841559402644634 0.1896552294492722 0.7171844244003296 0.07189667224884033 0.1781944781541824 0.7727674245834351 0.07189667224884033 0.1781944781541824 0.7727674245834351 -0.003841564524918795 0.1896068900823593 0.7814804315567017 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.0004096109187230468 0.1781909167766571 0.7759701609611511 -0.003841564524918795 0.1896068900823593 0.7814804315567017 0.0004096109187230468 0.1967881321907044 0.7760187983512878 0.0004096109187230468 0.1967881321907044 0.7760187983512878 -0.07149340957403183 0.1968333870172501 0.7254616618156433 -0.07149340957403183 0.1968333870172501 0.7254616618156433 0.07795095443725586 0.1782157123088837 0.750410795211792 0.07795095443725586 0.1782157123088837 0.750410795211792 0.08072145283222199 0.1896520107984543 0.7205688953399658 0.08072145283222199 0.1896520107984543 0.7205688953399658 0.07507967203855515 0.1782035082578659 0.7693222761154175 0.07507967203855515 0.1782035082578659 0.7693222761154175 0.08054187148809433 0.189610093832016 0.7777007222175598 0.08054187148809433 0.189610093832016 0.7777007222175598 0.07189667224884033 0.1967910826206207 0.7728157639503479 0.07189667224884033 0.1967910826206207 0.7728157639503479 0.000409614498494193 0.1968369483947754 0.7226946949958801 0.000409614498494193 0.1968369483947754 0.7226946949958801 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.07507967203855515 0.1968002468347549 0.7693703770637512 0.07507967203855515 0.1968002468347549 0.7693703770637512 0.07204876095056534 0.1968333870172501 0.7255620956420898 0.07204876095056534 0.1968333870172501 0.7255620956420898 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.07795095443725586 0.1968121081590653 0.7504593729972839 0.07795095443725586 0.1968121081590653 0.7504593729972839 0.07520543038845062 0.1968243420124054 0.7287487387657166 0.07520543038845062 0.1968243420124054 0.7287487387657166 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.0876883789896965 0.1896311044692993 0.7504352331161499</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID32\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID29\">\r\n                    <float_array count=\"288\" id=\"ID33\">-0.3024878347369789 -0.9531330521014052 0.006204420036904032 -0.2878136372143352 -0.9422455791864398 -0.1712792419911581 -0.5249396037438788 -0.8510941690515425 0.008782245025272984 0.5249396037438788 0.8510941690515425 -0.008782245025272984 0.2878136372143352 0.9422455791864398 0.1712792419911581 0.3024878347369789 0.9531330521014052 -0.006204420036904032 -1.030157873869469e-007 -0.9999995857409991 -0.0009102295422166482 1.030157873869469e-007 0.9999995857409991 0.0009102295422166482 -0.4867280914656857 -0.8423232723404854 0.2314892434904643 0.4867280914656857 0.8423232723404854 -0.2314892434904643 -0.4832427607286494 -0.8438939856208405 -0.2330651737954984 0.4832427607286494 0.8438939856208405 0.2330651737954984 -0.1065158443663067 -0.8465930701179467 -0.5214734399058137 0.1065158443663067 0.8465930701179467 0.5214734399058137 -0.2843076200453105 -0.9452226107733496 0.1603851404182587 0.2843076200453105 0.9452226107733496 -0.1603851404182587 -0.3613522282898117 0.9323990584512384 0.007520831684874476 -0.1943492098146326 0.9744131186208097 0.1129046451838712 -0.3367738535342633 0.9278463575668894 0.1602638709302215 0.3367738535342633 -0.9278463575668894 -0.1602638709302215 0.1943492098146326 -0.9744131186208097 -0.1129046451838712 0.3613522282898117 -0.9323990584512384 -0.007520831684874476 -0.3350021281728092 0.9286763000072572 -0.1591662775983643 -0.2053667260317607 0.9786667518408502 0.005991383836474488 0.2053667260317607 -0.9786667518408502 -0.005991383836474488 0.3350021281728092 -0.9286763000072572 0.1591662775983643 5.950004055100147e-007 -0.9999996252914151 -0.0008656885557298904 -5.950004055100147e-007 0.9999996252914151 0.0008656885557298904 -0.1163281839727694 -0.8491927267221577 0.5151111205320502 0.1163281839727694 0.8491927267221577 -0.5151111205320502 -0.07782172999912324 0.8997020137288794 0.4295114257294478 0.07782172999912324 -0.8997020137288794 -0.4295114257294478 -0.3506576699523518 -0.7630938270209297 0.5428876584212787 0.3506576699523518 0.7630938270209297 -0.5428876584212787 -0.1969912460712346 0.9734167353974789 -0.116851650477932 0.1969912460712346 -0.9734167353974789 0.116851650477932 -0.3367741236817105 -0.753563594148795 -0.5645574365748503 0.3367741236817105 0.753563594148795 0.5645574365748503 0.1647585956680902 -0.8280508909958978 -0.5358976834008324 -0.1647585956680902 0.8280508909958978 0.5358976834008324 0.0081277610919186 -0.4291142777136779 -0.903213638162036 -0.0081277610919186 0.4291142777136779 0.903213638162036 -7.908903987158142e-007 -0.9999995294381545 -0.0009701148614059022 7.908903987158142e-007 0.9999995294381545 0.0009701148614059022 9.367606006905798e-008 0.9999995870292008 0.0009088131925657172 -9.367606006905798e-008 -0.9999995870292008 -0.0009088131925657172 -0.2576590149372369 0.8834340835300767 0.3913515709422234 0.2576590149372369 -0.8834340835300767 -0.3913515709422234 -0.2494900682113803 0.8802092095288722 -0.4037158076226872 0.2494900682113803 -0.8802092095288722 0.4037158076226872 0.4250998540304424 -0.8806347916119481 -0.2092187322059793 -0.4250998540304424 0.8806347916119481 0.2092187322059793 -0.00845229221265386 0.1033426982612746 -0.9946098961263311 0.00845229221265386 -0.1033426982612746 0.9946098961263311 0.1749601512800255 -0.8291922921760373 0.5308757746026089 -0.1749601512800255 0.8291922921760373 -0.5308757746026089 -0.009459542753938796 0.09949545053255485 0.994993051420064 0.009079193768697695 -0.4319341657279547 0.9018594373389937 -0.009079193768697695 0.4319341657279547 -0.9018594373389937 0.009459542753938796 -0.09949545053255485 -0.994993051420064 0.006149349385183222 0.8895686355997782 0.4567601428094272 -0.006149349385183222 -0.8895686355997782 -0.4567601428094272 -0.07191839607807007 0.9008443571287098 -0.4281438876533442 0.07191839607807007 -0.9008443571287098 0.4281438876533442 0.448138374237927 -0.8939458912537754 0.005721979192628416 -0.448138374237927 0.8939458912537754 -0.005721979192628416 0.4770528154286843 0.1031595313166823 -0.8727993597557735 -0.4770528154286843 -0.1031595313166823 0.8727993597557735 0.4238771647515925 -0.8828044000927632 0.202446388900883 -0.4238771647515925 0.8828044000927632 -0.202446388900883 0.4945456462922296 0.09947495807119577 0.8634404070056803 -0.4945456462922296 -0.09947495807119577 -0.8634404070056803 0.1258013806332151 0.8860187556699122 0.4462564030150351 -0.1258013806332151 -0.8860187556699122 -0.4462564030150351 0.005435422936699622 0.891631961359924 -0.4527282867890564 -0.005435422936699622 -0.891631961359924 0.4527282867890564 0.6702508690679085 -0.6667194785354795 -0.3259584474363129 -0.6702508690679085 0.6667194785354795 0.3259584474363129 0.6742346164452745 -0.6654584480574296 0.3202697861114761 -0.6742346164452745 0.6654584480574296 -0.3202697861114761 0.3173293102426028 0.9355575519583267 0.1550295966410821 -0.3173293102426028 -0.9355575519583267 -0.1550295966410821 0.1190699982263196 0.8884420729247442 -0.4432753304432444 -0.1190699982263196 -0.8884420729247442 0.4432753304432444 0.760030288705589 -0.6498302846838061 0.008634891884813508 -0.760030288705589 0.6498302846838061 -0.008634891884813508 0.5170322868802112 0.8188151053051141 -0.2494382441559307 -0.5170322868802112 -0.8188151053051141 0.2494382441559307 0.521322000416191 0.8159351570852588 0.2499463768777512 -0.521322000416191 -0.8159351570852588 -0.2499463768777512 0.3362759406245169 0.9417533539071984 0.004371745834244416 -0.3362759406245169 -0.9417533539071984 -0.004371745834244416 0.3202772260176232 0.9345677672437676 -0.1549373645169405 -0.3202772260176232 -0.9345677672437676 0.1549373645169405 0.5932164723436803 0.8050212461442146 0.005916941484898163 -0.5932164723436803 -0.8050212461442146 -0.005916941484898163</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID33\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID31\">\r\n                    <float_array count=\"432\" id=\"ID34\">-1.604442099772253 5.802283499279104 -1.573183456353962 5.630762032501461 -1.821740661015552 5.802476513066489 0.00409614498494193 5.902462085770645 -0.7483669370412827 5.731623910707608 -0.7851788401603699 5.902462085770645 -1.604196182515231 5.962490747251832 -1.82149474324102 5.962684121255307 -1.780449779026585 6.146339901946291 -1.571268598756017 5.633255221851461 -1.78291091091704 5.598733785620715 -1.819858586623598 5.804940331456764 -0.7140452025127804 5.703378050300267 -0.7474780852070422 5.729186753498295 0.004984843891686928 5.900025345398822 0.00409614498494193 5.902326100828895 -0.7851788401603699 5.902326100828895 -0.7443798333406448 6.051172408391516 0.2236734658732968 5.762133091532981 -0.01270952242478987 5.911585246007205 0.1787754005984815 5.945230107319095 -1.564428723748529 6.113601345021629 -1.599305025680767 5.963826210519477 -1.775445545748399 6.147742417172025 0.2179063692350927 5.992400588104799 0.1773562749568012 5.786613389957505 0.01955257277450474 5.992590827788637 -1.448469807025108 4.751486045042294 -1.688880764353528 4.742016143994216 -1.478189593478927 4.779967674105643 0.004111008280331676 5.683600164398651 -0.7149192326696907 5.705368853763854 0.004111006276021026 5.902015713185169 0.003401430125809488 5.900151354700049 -0.7450744437582559 6.04899798727062 -0.7127329307595376 6.076944359379837 0.0875151803162183 5.355915491467289 0.05684437206541895 5.38500547820929 0.2786303277646169 5.390837238688121 0.21754929076373 5.754514713295354 0.01919549468686374 5.754705200410626 -0.01879160302071026 5.90400806068337 -1.489320372067448 5.95132655585069 -1.699604226711574 5.988160124114627 -1.665788431435642 6.023972587944718 0.180187554914348 5.787662053882029 -0.01197278655136753 5.822494054807282 0.02240503837869619 5.993649535119075 -1.653813246305865 4.709468520215458 -1.688903054480486 4.743081386304116 -1.448492007543037 4.752549879443639 0.7204748535710164 5.70615846456132 0.004083388854297861 5.683600164355402 0.004083390574457986 5.902015713141923 -1.032044798157092 1.226779649424081 -0.8514584171371413 1.314888120954353 -0.1346106482705932 1.265763910272534 0.004082013310828176 5.901868745412714 -0.7120524830533479 6.07866141048066 0.004081979479286662 6.102935850588785 -1.46081457044848 5.981914842209305 -1.489466745456678 5.951579120552236 -1.665939082746371 6.024218721431586 0.7451694618322063 6.049014422414442 -0.003306408641074359 5.900171063165603 0.7128279474080883 6.076962202870619 0.2786041034267978 5.392014972887837 0.05681812193419247 5.386183819490798 0.2423942948771818 5.426348456631136 0.7851788401603699 5.902641979286039 -0.00409614498494193 5.902641979286039 0.7443798333406448 6.051485002905634 0.7851788401603699 5.902740625578002 0.7483669370412827 5.731898697963258 -0.00409614498494193 5.902740625578002 0.3006698490501311 5.929101459942056 0.2630781014933425 5.897206458866669 0.1089805479442876 5.965504217141602 0.7511228658279991 5.72913454369326 0.7195561280267626 5.704064808637644 0.003164871263548281 5.899922524039425 0.1248118584738087 1.029936007830623 0.157349922380298 1.131786871995296 0.8710852770113151 1.185262132547967 -0.185866128285687 1.168551250859002 -1.03203501974185 1.22652955858015 -0.1346011083247205 1.265517216529196 0.7189780480699066 6.077740979275789 0.004107471930473988 5.901868745460156 0.004107434556820421 6.102935850636226 -0.862861704234138 3.927370724705898 -0.2015707945288319 4.078433926945395 -0.1493850533623736 3.981598326028479 -0.8628045199244163 3.927639570001535 -1.043698269554101 4.014691222259664 -0.2015078816790155 4.078687252534298 0.7120398805439631 6.078949583813254 -0.004094617363084419 5.902158799714556 -0.004094581751470315 6.103226367629099 0.7787125549174547 2.585036605096612 0.6033385655026737 2.522650066138377 -0.1117223255655186 2.561895583422623 0.7474038480014797 5.729259531857909 0.7139709664477956 5.703452705248894 -0.005059084104673388 5.900101868103782 0.2627588158035044 5.897246571368882 0.07680789880434155 5.938520967984054 0.1086573100596666 5.96553881100149 0.7795095443725586 5.902461857342622 0.7520543038845062 5.731674322378174 0.00409614498494193 5.902461857342622 1.837982949551064 4.380493162626602 1.698151380191647 4.426663247286263 1.722261911843289 4.456418909610435 0.1247907685741417 1.030037050628625 0.8710661817052536 1.185357244751118 0.9672866956702858 1.093149008827759 0.6182835712551754 4.775255339961362 0.793800767381204 4.711713847427201 -0.05393935509880506 4.670308342735786 0.7515192965588562 6.048837954527257 0.004818832041163543 5.90006726269816 0.7196892646605601 6.075939857527496 0.8862475378018822 3.792571274053156 0.1746565630062018 3.851984305430153 0.9832304820207426 3.884087444153092 0.1746380817817648 3.851553385651503 0.1432486616462902 3.953791929426786 0.9832116155855102 3.883662527970578 -0.06534121213406159 2.63105822182879 0.7787179296387801 2.584739777075194 -0.1117168868593094 2.561597231824915 -0.004094653617984109 5.902158799714615 -0.7189652312805638 6.07802915258916 -0.004094618001953375 6.103226367629159 0.7149043705724325 5.705577453965008 -0.004125870608663351 5.683810639604747 -0.004125866857378252 5.902226193962813 0.7795095443725586 5.902325637871498 0.00409614498494193 5.902325637871498 0.7507967203855515 6.051095985290626 1.8422754717584 5.661531884254806 1.860065481229638 5.833109873402369 1.989092693654606 5.626995170813783 1.866608484664902 4.416370659075843 1.838140690497932 4.381252172648102 1.722410861650169 4.457169627042735 0.1017818923490949 4.635730454846145 0.1403692834330186 4.563151008605013 -0.7040384761248265 4.607730130874681 0.6182300880543712 4.774973129686113 -0.0539900413699956 4.670015046265992 -0.09994876018071668 4.739887083494891 1.733899547804191 5.531120571691932 1.709772779716068 5.562763359799611 1.878316678975313 5.570720590338454 1.878304677869654 5.570236401650518 1.709760849657511 5.562278239889182 1.849835545272472 5.607594591763997 0.1537407156268212 2.444674604463092 -0.5978653068071427 2.329634598343816 -0.6885274476433928 2.39449174630185 0.1537883138861346 2.444229771370457 0.1157277970935313 2.371708602168431 -0.5978147418473687 2.329177771002359 -0.00491720082529457 5.900077058146425 -0.7516176617662564 6.048844008260367 -0.7197876284078544 6.075947788539828 -0.004068778744300874 5.683810639521082 -0.7204602436909137 5.706367533632258 -0.004068782197838758 5.902226193879148 1.861658167768242 5.915239599347373 1.842927300380627 6.064991691688345 2.01170103070488 5.915433112871178 1.861850771719819 5.83510277999676 2.011893635504649 5.835295886105167 1.990956558256295 5.629018528131723 0.1719779002507082 5.824603213096284 0.1389888997947077 5.857181682759085 0.2822048289751989 5.867848448492063 -0.613562480917102 4.673788626475852 0.1017936545345657 4.636024285106233 -0.7040268847461585 4.608027003318812 1.839764149855081 6.066881609824319 1.986422966154651 6.101004404133319 2.008651870081057 5.917402684293361 0.2825884533466772 4.865079334453994 0.1672701472499133 4.901776309015174 0.2002177616702845 4.936782292242141 0.3100472870646619 4.89401534558154 0.2821395270143702 4.864357040165081 0.1997767932944579 4.936065654880399 -0.00409614498494193 5.90264147944936 -0.7795095443725586 5.90264147944936 -0.7507967203855515 6.051408074034807 -0.7194780291125233 5.70413058581879 -0.7510447657283905 5.729198913126174 -0.003086767938886549 5.899989699497139 0.557955278772954 5.834059593021777 0.4409585274078356 5.799210002360261 0.4147576104431627 6.005114826228685 0.2822718771330113 5.868125037355849 0.1390557649232501 5.857459792492024 0.2543176606559016 5.895720061609569 0.5411198927479399 5.741546306500214 0.4201305351659356 5.74135568632237 0.4473328967749751 5.924542618564806 0.5506819982486841 5.885009179554949 0.5275336326060752 5.735643569586635 0.4338826583204476 5.918682986264019 -0.00409614498494193 5.902740361620345 -0.7520543038845062 5.731950011883361 -0.7795095443725586 5.902740361620345 0.5626309017891711 5.835755551708061 0.4194700893104356 6.00682987497948 0.5404594473816824 6.00702030289107</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"216\" source=\"#ID34\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID30\">\r\n                    <input semantic=\"POSITION\" source=\"#ID28\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID29\"/>\r\n                </vertices>\r\n                <triangles count=\"144\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID30\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID31\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 0 6 2 7 8 8 9 8 3 7 5 6 1 9 10 10 2 11 3 11 11 10 4 9 12 12 1 13 6 14 7 14 4 13 13 12 6 15 0 16 14 17 15 17 5 16 7 15 16 18 17 19 18 20 19 20 20 19 21 18 14 21 0 22 8 23 9 23 5 22 15 21 16 24 22 25 23 26 24 26 25 25 21 24 12 27 10 28 1 29 4 29 11 28 13 27 26 30 12 31 6 32 7 32 13 31 27 30 6 33 14 34 28 35 29 35 15 34 7 33 17 36 30 37 18 38 19 38 31 37 20 36 16 39 23 40 17 41 20 41 24 40 21 39 14 42 8 43 32 44 33 44 9 43 15 42 22 45 34 46 23 47 24 47 35 46 25 45 36 48 10 49 12 50 13 50 11 49 37 48 38 51 26 52 6 53 7 53 27 52 39 51 36 54 12 55 40 56 41 56 13 55 37 54 6 57 28 58 42 59 43 59 29 58 7 57 28 60 14 61 32 62 33 62 15 61 29 60 17 63 44 64 30 65 31 65 45 64 20 63 18 66 30 67 46 68 47 68 31 67 19 66 23 69 44 70 17 71 20 71 45 70 24 69 23 72 34 73 44 74 45 74 35 73 24 72 22 75 48 76 34 77 35 77 49 76 25 75 50 78 38 79 6 80 7 80 39 79 51 78 52 81 40 82 38 83 39 83 41 82 53 81 52 84 36 85 40 86 41 86 37 85 53 84 54 87 6 88 42 89 43 89 7 88 55 87 28 90 56 91 57 92 58 92 59 91 29 90 28 93 32 94 56 95 59 95 33 94 29 93 30 96 44 97 60 98 61 98 45 97 31 96 46 99 30 100 60 101 61 101 31 100 47 99 34 102 62 103 44 104 45 104 63 103 35 102 48 105 62 106 34 107 35 107 63 106 49 105 64 108 50 109 6 110 7 110 51 109 65 108 66 111 38 112 50 113 51 113 39 112 67 111 52 114 38 115 66 116 67 116 39 115 53 114 62 117 48 118 52 119 53 119 49 118 63 117 68 120 6 121 54 122 55 122 7 121 69 120 54 123 57 124 70 125 71 125 58 124 55 123 57 126 56 127 70 128 71 128 59 127 58 126 56 129 46 130 60 131 61 131 47 130 59 129 44 132 72 133 60 134 61 134 73 133 45 132 62 135 74 136 44 137 45 137 75 136 63 135 64 138 6 139 68 140 69 140 7 139 65 138 50 141 64 142 76 143 77 143 65 142 51 141 76 144 66 145 50 146 51 146 67 145 77 144 74 147 52 148 66 149 67 149 53 148 75 147 62 150 52 151 74 152 75 152 53 151 63 150 68 153 54 154 78 155 79 155 55 154 69 153 78 156 54 157 70 158 71 158 55 157 79 156 56 159 72 160 70 161 71 161 73 160 59 159 56 162 60 163 72 164 73 164 61 163 59 162 44 165 80 166 72 167 73 167 81 166 45 165 74 168 82 169 44 170 45 170 83 169 75 168 64 171 68 172 84 173 85 173 69 172 65 171 64 174 84 175 76 176 77 176 85 175 65 174 66 177 86 178 82 179 83 179 87 178 67 177 82 180 74 181 66 182 67 182 75 181 83 180 68 183 78 184 84 185 85 185 79 184 69 183 80 186 88 187 70 188 71 188 89 187 81 186 72 189 80 190 70 191 71 191 81 190 73 189 44 192 90 193 80 194 81 194 91 193 45 192 82 195 92 196 44 197 45 197 93 196 83 195 92 198 86 199 94 200 95 200 87 199 93 198 82 201 86 202 92 203 93 203 87 202 83 201 90 204 94 205 88 206 89 206 95 205 91 204 80 207 90 208 88 209 89 209 91 208 81 207 44 210 92 211 90 212 91 212 93 211 45 210 92 213 94 214 90 215 91 215 95 214 93 213</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID37\">\r\n            <mesh>\r\n                <source id=\"ID40\">\r\n                    <float_array count=\"114\" id=\"ID44\">0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6998841166496277 0.270549088716507 0.3540823757648468 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6998841166496277 0.270549088716507 0.3540823757648468 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"38\" source=\"#ID44\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID41\">\r\n                    <float_array count=\"114\" id=\"ID45\">0.9884127945771787 0 -0.1517898136112303 0.9969899233375046 0 -0.07753123734003652 0.9884127945771787 0 -0.1517898136112303 -0.9884127945771787 -0 0.1517898136112303 -0.9969899233375046 -0 0.07753123734003652 -0.9884127945771787 -0 0.1517898136112303 0.9884127945771787 0 -0.1517898136112303 0.9983209373992593 0 -0.05792500280762848 -0.9983209373992593 -0 0.05792500280762848 -0.9884127945771787 -0 0.1517898136112303 0.9993509731965242 7.18492665555945e-019 0.03602266468710872 -0.9993509731965242 -7.18492665555945e-019 -0.03602266468710872 0.9990304983920447 0.0002615411009320761 0.04402266324060325 -0.9990304983920447 -0.0002615411009320761 -0.04402266324060325 0.9888373930540065 0.000243802279811211 0.1489984921353378 -0.9888373930540065 -0.000243802279811211 -0.1489984921353378 0.9861057339238535 0.0001949415399641176 0.1661187632999196 -0.9861057339238535 -0.0001949415399641176 -0.1661187632999196 0.9624191563697438 0.0002416039797533959 0.2715682401903204 -0.9624191563697438 -0.0002416039797533959 -0.2715682401903204 0.9573306222604454 0 0.2889949475032887 -0.9573306222604454 -0 -0.2889949475032887 0.8839944246690079 -2.34346267069095e-018 0.4674974407995293 -0.8839944246690079 2.34346267069095e-018 -0.4674974407995293 0.9134632872758963 0.008433748235240745 0.4068337433028604 -0.9134632872758963 -0.008433748235240745 -0.4068337433028604 0.7766929828863236 0.0006653471482944537 0.6298790103252504 -0.7766929828863236 -0.0006653471482944537 -0.6298790103252504 0.8876641481112757 0.01683615633685049 0.4601835546797433 -0.8876641481112757 -0.01683615633685049 -0.4601835546797433 4.474170745649866e-005 -0.002559499189329098 0.9999967234756721 0.0001348128492229062 -0.002562698209801924 0.9999967071962693 4.239615786161625e-005 -0.002559415883111041 0.9999967237910848 -4.239615786161625e-005 0.002559415883111041 -0.9999967237910848 -0.0001348128492229062 0.002562698209801924 -0.9999967071962693 -4.474170745649866e-005 0.002559499189329098 -0.9999967234756721 0.0001382935307154935 -0.002562821831347933 0.9999967064041562 -0.0001382935307154935 0.002562821831347933 -0.9999967064041562</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"38\" source=\"#ID45\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID43\">\r\n                    <float_array count=\"76\" id=\"ID46\">3.217366635799408 -1.014987970353258 3.174309134483337 0.02936904625421927 -4.606521725654602 -1.014987970353258 3.174309134483337 0.02936904625421971 -5.109987258911133 0.02936904625421971 -4.606521725654602 -1.014987970353258 3.174309134483337 -0.9347596834103267 3.138594627380371 0.1405233934521675 -5.109987258911133 -0.9347596834103267 -5.681315660476685 0.1405233934521675 3.138594627380371 -0.3197488620574284 3.102889358997345 0.73392555109761 -5.681315660476685 -0.3197488620574284 3.099300357882584 0.7525232592401354 -6.220526077713789 0.7525232592401354 -5.684948389092591 -0.3009255327867159 3.119290230740525 0.4236586082511997 -6.220526077713787 -0.2306158695550169 3.099300357882584 -0.2306158695550167 3.122794330120087 0.3925020501514792 -6.405144929885864 0.3925020501514792 -6.216936111450195 -0.2625305373007132 3.122794330120087 -0.3032706499672477 2.803181707859039 0.2349233739714925 -6.405144929885864 -0.3032706499672477 -6.521115899085999 0.2349233739714925 2.803181707859039 -1.936911851088256 2.70549088716507 -1.354481735846471 -6.521115899085999 -1.936911851088256 2.572282569008688 -0.07878836915218171 -6.647628083256216 -0.09970009621027236 -6.661598736798799 -0.5848708598991235 7.077063234366902 -5.209014241747745 7.042690862107612 2.043961881576643 6.562209069469692 -5.209197418525998 7.134453694649073 1.835703753249987 6.782620276737968 1.835703753249987 6.310054666937787 -5.398285491289607</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"38\" source=\"#ID46\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID42\">\r\n                    <input semantic=\"POSITION\" source=\"#ID40\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID41\"/>\r\n                </vertices>\r\n                <triangles count=\"14\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID42\"/>\r\n                    <p>0 1 2 6 7 1 7 10 1 7 12 10 12 14 10 12 16 14 14 16 18 16 20 18 20 22 18 20 24 22 24 26 22 24 28 26 30 31 32 30 36 31</p>\r\n                </triangles>\r\n                <triangles count=\"14\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID42\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID43\"/>\r\n                    <p>3 0 4 1 5 2 4 3 8 4 9 5 4 6 11 7 8 8 11 7 13 9 8 8 11 10 15 11 13 12 15 13 17 14 13 15 19 16 17 17 15 18 19 19 21 20 17 21 19 22 23 23 21 24 23 23 25 25 21 24 23 26 27 27 25 28 27 29 29 30 25 31 33 32 34 33 35 34 34 35 37 36 35 37</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID47\">\r\n            <mesh>\r\n                <source id=\"ID50\">\r\n                    <float_array count=\"90\" id=\"ID54\">0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6671133041381836 -0.6521289944648743 0.3517222404479981</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID54\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID51\">\r\n                    <float_array count=\"90\" id=\"ID55\">-0.9969900277453814 9.626555252388103e-019 0.0775298947262491 -0.9884131832184093 1.906393035707814e-018 0.1517872828666863 -0.9884131832184093 1.906393035707814e-018 0.1517872828666863 0.9884131832184093 -1.906393035707814e-018 -0.1517872828666863 0.9884131832184093 -1.906393035707814e-018 -0.1517872828666863 0.9969900277453814 -9.626555252388103e-019 -0.0775298947262491 -0.9983209916237562 6.4888899971745e-019 0.05792406825629513 -0.9884131832184093 1.700382951580574e-018 0.1517872828666863 0.9884131832184093 -1.700382951580574e-018 -0.1517872828666863 0.9983209916237562 -6.4888899971745e-019 -0.05792406825629513 -0.9993510188497022 0 -0.03602139814140998 0.9993510188497022 -0 0.03602139814140998 -0.9990305921481414 -0.0002616147124452107 -0.04402053509302527 0.9990305921481414 0.0002616147124452107 0.04402053509302527 -0.9943779220620549 -0.0002469081820434832 -0.1058890322549958 0.9943779220620549 0.0002469081820434832 0.1058890322549958 -0.9934290682451136 -0.0001942857728718545 -0.1144493277336469 0.9934290682451136 0.0001942857728718545 0.1144493277336469 -0.9959830180574033 -0.0002479755067153577 -0.0895419803746499 0.9959830180574033 0.0002479755067153577 0.0895419803746499 -0.9972497351322402 -9.175001186096695e-020 -0.07411454498731458 0.9972497351322402 9.175001186096695e-020 0.07411454498731458 -0.9997397171438488 2.749353240624562e-019 0.02281442449717623 0.9997397171438488 -2.749353240624562e-019 -0.02281442449717623 -0.9982766421434597 -0.001456496946020338 0.05866535917749741 0.9982766421434597 0.001456496946020338 -0.05866535917749741 -0.9962136581104646 -9.87810436129017e-005 0.08693870045308721 0.9962136581104646 9.87810436129017e-005 -0.08693870045308721 -0.9913228737516919 -0.002879171972723066 0.1314179224666044 0.9913228737516919 0.002879171972723066 -0.1314179224666044</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID55\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID53\">\r\n                    <float_array count=\"60\" id=\"ID56\">-3.201837241649628 -1.153543505140703 4.622048735618591 -1.153543505140703 -3.158780634403229 -0.1091876107511638 5.125510692596436 -0.1091876107511638 -3.158780634403229 -0.9347603867451351 5.125510692596436 -0.9347603867451351 -3.123067617416382 0.1405233934521675 5.696841478347778 0.1405233934521675 -3.123067617416382 -0.2528983824522879 5.696841478347778 -0.2528983824522879 -3.087365627288818 0.8007758246933258 -3.084303793502754 0.8166679514527762 5.699947050034061 -0.2367805808048564 6.235524132752182 0.8166679514527762 -3.104264639119321 1.089387370119314 -3.084303793502755 0.4455548184328019 6.235524132752184 0.4455548184328018 -3.107274770736694 1.061742395136762 6.232461333274841 0.417437203216338 6.420673131942749 1.061742395136762 -3.107274770736694 1.723373104067945 6.420673131942749 1.723373104067945 -2.787659466266632 2.230640169182266 6.53664231300354 2.230640169182266 -2.787659466266632 2.770680346987941 6.53664231300354 2.770680346987941 -2.686533033847809 3.221638161564211 -2.667214906130042 3.449328196154371 6.555779429903087 2.996085165249665 6.540637820919023 3.430599364195978</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID56\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID52\">\r\n                    <input semantic=\"POSITION\" source=\"#ID50\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID51\"/>\r\n                </vertices>\r\n                <triangles count=\"12\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID52\"/>\r\n                    <p>0 1 2 6 7 0 10 6 0 12 6 10 14 12 10 16 12 14 16 14 18 20 16 18 22 20 18 24 20 22 26 24 22 28 24 26</p>\r\n                </triangles>\r\n                <triangles count=\"12\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID52\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID53\"/>\r\n                    <p>3 0 4 1 5 2 5 2 8 1 9 3 5 4 9 5 11 6 11 6 9 5 13 7 11 8 13 9 15 10 15 11 13 12 17 13 19 14 15 15 17 16 19 17 17 18 21 19 19 20 21 21 23 22 23 22 21 21 25 23 23 24 25 25 27 26 27 27 25 28 29 29</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID57\">\r\n            <mesh>\r\n                <source id=\"ID58\">\r\n                    <float_array count=\"198\" id=\"ID62\">0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7885450124740601 0.3102889358997345 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID62\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID59\">\r\n                    <float_array count=\"198\" id=\"ID63\">0.01757355631798894 -0.996658244590752 -0.07977163410397985 0.01700902801069171 -0.9995231595339412 0.02577104036353611 0.01751695589509933 -0.9995282799576263 0.02522645082286458 -0.01751695589509933 0.9995282799576263 -0.02522645082286458 -0.01700902801069171 0.9995231595339412 -0.02577104036353611 -0.01757355631798894 0.996658244590752 0.07977163410397985 0.01625839579783936 -0.9946609971594649 -0.1019076311952124 -0.01625839579783936 0.9946609971594649 0.1019076311952124 0.01508160133426316 -0.9800364416240054 -0.1982450967619426 -0.01508160133426316 0.9800364416240054 0.1982450967619426 0.01366831664102421 -0.9791246266498208 -0.2028007460737008 -0.01366831664102421 0.9791246266498208 0.2028007460737008 0.01306527961609271 -0.9558446256026917 -0.2935819309409272 -0.01306527961609271 0.9558446256026917 0.2935819309409272 0.01273971076296427 -0.9520607276259343 -0.3056436989078172 -0.01273971076296427 0.9520607276259343 0.3056436989078172 0.01238562344223381 -0.9255817632390216 -0.3783450751513635 -0.01238562344223381 0.9255817632390216 0.3783450751513635 0.01238350552953238 -0.9254423735519356 -0.3786859675580281 -0.01238350552953238 0.9254423735519356 0.3786859675580281 0.01241741070313897 -0.9280470570654398 -0.3722559170565407 -0.01241741070313897 0.9280470570654398 0.3722559170565407 0.01241179030027248 -0.92760980977564 -0.3733443293657248 -0.01241179030027248 0.92760980977564 0.3733443293657248 0.01248377637649902 -0.932921716390152 -0.359862788316651 -0.01248377637649902 0.932921716390152 0.359862788316651 0.0124849284269848 -0.9329212995850048 -0.3598638288892045 -0.0124849284269848 0.9329212995850048 0.3598638288892045 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0 0 -1 -0 -0 1 -0.01337534588875929 0.999303232382507 0.03484465342387041 -0.01337534588875929 0.999303232382507 0.03484465342387041 -0.0133767273996353 0.9994525532114903 0.03025982556309336 0.0133767273996353 -0.9994525532114903 -0.03025982556309336 0.01337534588875929 -0.999303232382507 -0.03484465342387041 0.01337534588875929 -0.999303232382507 -0.03484465342387041 -0.01337610627739966 0.9994397139226007 0.03068123229542974 -0.01337456197828937 0.9993032712123542 0.03484384072081131 0.01337456197828937 -0.9993032712123542 -0.03484384072081131 0.01337610627739966 -0.9994397139226007 -0.03068123229542974 -0.01337717699255372 0.9995742348990625 0.02593067800238563 0.01337717699255372 -0.9995742348990625 -0.02593067800238563 -0.01337623645414197 0.9995744997605131 0.02592095150342658 0.01337623645414197 -0.9995744997605131 -0.02592095150342658 -0.01337926781303881 0.9999090010156541 0.001727680718123866 0.01337926781303881 -0.9999090010156541 -0.001727680718123866 -0.01366164874581822 0.9999038562712569 -0.002374356210722729 0.01366164874581822 -0.9999038562712569 0.002374356210722729 -0.01373271164826091 0.985340622057855 0.1700449092252551 0.01373271164826091 -0.985340622057855 -0.1700449092252551 -0.01486615069782372 0.9737391817984691 0.2271805524112425 0.01486615069782372 -0.9737391817984691 -0.2271805524112425 -0.0152885886490525 0.9353144770558194 0.353487040875503 0.0152885886490525 -0.9353144770558194 -0.353487040875503 -0.02312573667733494 0.9506753367844222 0.3093244321629897 0.02312573667733494 -0.9506753367844222 -0.3093244321629897 -0.03283908092088732 0.9857753155064591 0.1648290693488631 0.03283908092088732 -0.9857753155064591 -0.1648290693488631 -0.05301767165236267 0.9825105025154766 0.1784999690177787 0.05301767165236267 -0.9825105025154766 -0.1784999690177787</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID63\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID61\">\r\n                    <float_array count=\"152\" id=\"ID64\">6.486414740553204 2.200584320257102 6.559209671773116 2.63147311179554 7.074063889325645 2.631473580841196 7.352576081397806 2.205026862540071 6.48108520835931 2.205026862540071 7.068745480385288 2.635906735090988 7.352576081397806 3.224042151981169 6.496194904353771 2.708773932450279 6.48108520835931 3.224042151981169 7.606635830927045 2.684044270212909 6.519269471646906 2.684044270212909 7.376054453682446 3.198896900317751 7.606635830927044 2.931616529341707 6.639766324665787 2.27734928889875 6.519269471646906 2.931616529341706 7.805803415294651 2.271617827094184 6.645463546737465 2.271617827094184 7.612500660756662 2.925731755297332 7.805803415294649 2.953149377663582 6.746457275010557 1.821357505336036 6.645463546737464 2.953149377663581 7.906799264988455 1.821359718478698 6.746454620511368 1.821359718478698 7.8058005157308 2.953151732755598 7.906799264988455 1.885349226639128 6.754099226591073 0.7199301840054732 6.746454620511367 1.885349226639128 7.914452876516921 0.7199222391663144 6.754108263938685 0.7199214768751236 7.906809292079772 1.885339913695565 6.559353637864163 -0.5018143597871121 6.754108393519553 0.6045616013489867 7.914453006097798 0.6045623551865789 7.719681411874956 -0.5017985319122876 6.559340327405119 -0.5017985319122876 7.914438265428908 0.6045792671104565 -6.621782779693604 2.518778630097707 -6.621782779693604 -3.636011672019959 -7.782019972801209 -3.623797090848287 -7.782019972801209 2.530995086828868 -6.664041417716023 -2.051149898773439 -7.824382534092096 -2.051149898773439 -8.025300206329026 -1.018266833586361 -6.864953118724609 -1.018265775553878 -6.664038974574384 -2.051148107694036 -8.025297799093693 -1.018265071791724 -6.864953098071562 -0.997458293041149 -8.025297778440647 -0.9974575894663439 -8.024819822562574 0.07819240295993857 -6.864471208429597 0.07819482848281474 -6.864949097792568 -0.9974558364394162 -8.024815868857917 0.07819482848281474 -6.864471208429595 0.07910333492510922 -8.024815868857916 0.07910333492510922 -7.926265037739377 1.130297099530577 -6.765915653925095 1.130301932393614 -6.864462769493923 0.07910822762635848 -7.926256694531853 1.130301932393614 -6.765915653925095 1.256046983758888 -7.926256694531853 1.256046983758888 -7.73997953774591 1.893894132554812 -6.655309974446317 1.891253165835361 -6.768592688689693 1.253424576120478 -7.742676210338567 1.891253165835361 -6.655309974446317 0.5981015604815404 -7.742676210338567 0.5981015604815404 -7.509189229834411 1.163019357512824 -6.647193467686876 1.16124259311054 -6.665929778665064 0.5952743692480706 -7.518684266401535 1.16124259311054 -6.647193467686875 1.98374502410431 -7.518684266401534 1.98374502410431 -7.045918801752059 2.438513755918931 -6.782620276737963 2.414315454238441 -6.739210310102997 1.957669605233432 -7.134453694649066 2.414315454238441</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"76\" source=\"#ID64\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID60\">\r\n                    <input semantic=\"POSITION\" source=\"#ID58\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID59\"/>\r\n                </vertices>\r\n                <triangles count=\"52\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID60\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID61\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 6 6 8 7 0 8 5 8 9 7 7 6 10 9 8 10 6 11 7 11 9 10 11 9 10 12 12 13 8 14 9 14 13 13 11 12 14 15 12 16 10 17 11 17 13 16 15 15 14 18 16 19 12 20 13 20 17 19 15 18 18 21 16 22 14 23 15 23 17 22 19 21 18 24 20 25 16 26 17 26 21 25 19 24 22 27 20 28 18 29 19 29 21 28 23 27 24 30 20 31 22 32 23 32 21 31 25 30 26 33 24 34 22 35 23 35 25 34 27 33 28 36 29 37 30 38 31 38 32 37 33 36 34 39 28 36 30 38 31 38 33 36 35 39 36 40 37 41 38 42 39 42 40 41 41 40 42 43 43 44 38 45 39 45 44 44 45 43 42 46 38 47 46 48 47 48 39 47 45 46 48 49 42 50 46 51 47 51 45 50 49 49 48 52 46 53 50 54 51 54 47 53 49 52 52 55 48 56 50 57 51 57 49 56 53 55 52 58 50 59 54 60 55 60 51 59 53 58 56 61 52 62 54 63 55 63 53 62 57 61 56 64 54 65 58 66 59 66 55 65 57 64 60 67 56 68 58 69 59 69 57 68 61 67 60 70 58 71 62 72 63 72 59 71 61 70 64 73 60 74 62 75 63 75 61 74 65 73</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID65\">\r\n            <mesh>\r\n                <source id=\"ID66\">\r\n                    <float_array count=\"792\" id=\"ID70\">0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.645243763923645 -0.5195940136909485 0.2845224440097809 0.645243763923645 -0.5195940136909485 0.2845224440097809 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607192754745483 -0.5262042284011841 0.2845224440097809 0.6607192754745483 -0.5262042284011841 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6454480886459351 -0.5189134478569031 0.2888893783092499 0.6454480886459351 -0.5189134478569031 0.2888893783092499 0.6454480886459351 -0.5189134478569031 0.2801555991172791 0.6454480886459351 -0.5189134478569031 0.2801555991172791 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6320086717605591 -0.4944190382957459 0.2845224440097809 0.6320086717605591 -0.4944190382957459 0.2845224440097809 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6325429677963257 -0.4940980672836304 0.2801555991172791 0.6325429677963257 -0.4940980672836304 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6325429677963257 -0.4940980672836304 0.2888893783092499 0.6325429677963257 -0.4940980672836304 0.2888893783092499 0.6460316181182861 -0.516976535320282 0.2925914824008942 0.6460316181182861 -0.516976535320282 0.2925914824008942 0.6340638399124146 -0.4931805729866028 0.2764533758163452 0.6340638399124146 -0.4931805729866028 0.2764533758163452 0.6460316181182861 -0.516976535320282 0.2764533758163452 0.6460316181182861 -0.516976535320282 0.2764533758163452 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6284593343734741 -0.4669303297996521 0.2845224440097809 0.6284593343734741 -0.4669303297996521 0.2845224440097809 0.6290544867515564 -0.4669303297996521 0.2801555991172791 0.6290544867515564 -0.4669303297996521 0.2801555991172791 0.6307517290115356 -0.4669303297996521 0.2764533758163452 0.6307517290115356 -0.4669303297996521 0.2764533758163452 0.6607219576835632 -0.5225614309310913 0.2950650453567505 0.6607219576835632 -0.5225614309310913 0.2950650453567505 0.6469043493270874 -0.5140765309333801 0.2950650453567505 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6469043493270874 -0.5140765309333801 0.2950650453567505 0.6469043493270874 -0.5140765309333801 0.2739797532558441 0.6469043493270874 -0.5140765309333801 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6290544867515564 -0.4669303297996521 0.2888893783092499 0.6290544867515564 -0.4669303297996521 0.2888893783092499 0.6340638399124146 -0.4931805729866028 0.2925914824008942 0.6340638399124146 -0.4931805729866028 0.2925914824008942 0.6332915425300598 -0.4669303297996521 0.2739797532558441 0.6332915425300598 -0.4669303297996521 0.2739797532558441 0.6363397836685181 -0.4918103218078613 0.2739797532558441 0.6363397836685181 -0.4918103218078613 0.2739797532558441 0.6607241034507752 -0.5194733142852783 0.2925914824008942 0.6607241034507752 -0.5194733142852783 0.2925914824008942 0.6479336619377136 -0.5106549263000488 0.2959337532520294 0.6479336619377136 -0.5106549263000488 0.2959337532520294 0.6479336619377136 -0.5106549263000488 0.2731113433837891 0.6479336619377136 -0.5106549263000488 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607219576835632 -0.5225614309310913 0.2739797532558441 0.6607219576835632 -0.5225614309310913 0.2739797532558441 0.630005955696106 -0.438325822353363 0.2845224440097809 0.630005955696106 -0.438325822353363 0.2845224440097809 0.6305613517761231 -0.4385876655578613 0.2801555991172791 0.6305613517761231 -0.4385876655578613 0.2801555991172791 0.6321433782577515 -0.439333975315094 0.2764533758163452 0.6321433782577515 -0.439333975315094 0.2764533758163452 0.6345111727714539 -0.44045090675354 0.2739797532558441 0.6345111727714539 -0.44045090675354 0.2739797532558441 0.6607251763343811 -0.5174095630645752 0.2888893783092499 0.6607251763343811 -0.5174095630645752 0.2888893783092499 0.6489629149436951 -0.5072347521781921 0.2950650453567505 0.6489629149436951 -0.5072347521781921 0.2950650453567505 0.6363397836685181 -0.4918103218078613 0.2950650453567505 0.6363397836685181 -0.4918103218078613 0.2950650453567505 0.6390239000320435 -0.4901936650276184 0.2731113433837891 0.6390239000320435 -0.4901936650276184 0.2731113433837891 0.6489629149436951 -0.5072347521781921 0.2739797532558441 0.6489629149436951 -0.5072347521781921 0.2739797532558441 0.6607241034507752 -0.5194733142852783 0.2764533758163452 0.6607241034507752 -0.5194733142852783 0.2764533758163452 0.6305613517761231 -0.4385876655578613 0.2888893783092499 0.6305613517761231 -0.4385876655578613 0.2888893783092499 0.6307517290115356 -0.4669303297996521 0.2925914824008942 0.6307517290115356 -0.4669303297996521 0.2925914824008942 0.637304425239563 -0.4417674541473389 0.2731113433837891 0.637304425239563 -0.4417674541473389 0.2731113433837891 0.6362877488136292 -0.4669303297996521 0.2731113433837891 0.6362877488136292 -0.4669303297996521 0.2731113433837891 0.6607257723808289 -0.5166845917701721 0.2845224440097809 0.6607257723808289 -0.5166845917701721 0.2845224440097809 0.6498355865478516 -0.5043348670005798 0.2925914824008942 0.6498355865478516 -0.5043348670005798 0.2925914824008942 0.6390239000320435 -0.4901936650276184 0.2959337532520294 0.6390239000320435 -0.4901936650276184 0.2959337532520294 0.6417081952095032 -0.4885762333869934 0.2739797532558441 0.6417081952095032 -0.4885762333869934 0.2739797532558441 0.6498355865478516 -0.5043348670005798 0.2764533758163452 0.6498355865478516 -0.5043348670005798 0.2764533758163452 0.6607251763343811 -0.5174095630645752 0.2801555991172791 0.6607251763343811 -0.5174095630645752 0.2801555991172791 0.6454863548278809 -0.4090263247489929 0.2845224440097809 0.6454863548278809 -0.4090263247489929 0.2845224440097809 0.645751953125 -0.4096751809120178 0.2801555991172791 0.645751953125 -0.4096751809120178 0.2801555991172791 0.646506130695343 -0.4115235209465027 0.2764533758163452 0.646506130695343 -0.4115235209465027 0.2764533758163452 0.6476355791091919 -0.4142892956733704 0.2739797532558441 0.6476355791091919 -0.4142892956733704 0.2739797532558441 0.6489681005477905 -0.4175517559051514 0.2731113433837891 0.6489681005477905 -0.4175517559051514 0.2731113433837891 0.6504192352294922 -0.5023968815803528 0.2888893783092499 0.6504192352294922 -0.5023968815803528 0.2888893783092499 0.6417081952095032 -0.4885762333869934 0.2950650453567505 0.6417081952095032 -0.4885762333869934 0.2950650453567505 0.6332915425300598 -0.4669303297996521 0.2950650453567505 0.6332915425300598 -0.4669303297996521 0.2950650453567505 0.6392834782600403 -0.4669303297996521 0.2739797532558441 0.6392834782600403 -0.4669303297996521 0.2739797532558441 0.6439837217330933 -0.4872047901153565 0.2764533758163452 0.6439837217330933 -0.4872047901153565 0.2764533758163452 0.6504192352294922 -0.5023968815803528 0.2801555991172791 0.6504192352294922 -0.5023968815803528 0.2801555991172791 0.645751953125 -0.4096751809120178 0.2888893783092499 0.645751953125 -0.4096751809120178 0.2888893783092499 0.6321433782577515 -0.439333975315094 0.2925914824008942 0.6321433782577515 -0.439333975315094 0.2925914824008942 0.6502998471260071 -0.4208146929740906 0.2739797532558441 0.6502998471260071 -0.4208146929740906 0.2739797532558441 0.6400973200798035 -0.4430851340293884 0.2739797532558441 0.6400973200798035 -0.4430851340293884 0.2739797532558441 0.6506238579750061 -0.5017167925834656 0.2845224440097809 0.6506238579750061 -0.5017167925834656 0.2845224440097809 0.6439837217330933 -0.4872047901153565 0.2925914824008942 0.6439837217330933 -0.4872047901153565 0.2925914824008942 0.6362877488136292 -0.4669303297996521 0.2959337532520294 0.6362877488136292 -0.4669303297996521 0.2959337532520294 0.6418229341506958 -0.4669303297996521 0.2764533758163452 0.6418229341506958 -0.4669303297996521 0.2764533758163452 0.6455046534538269 -0.4862898588180542 0.2801555991172791 0.6455046534538269 -0.4862898588180542 0.2801555991172791 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602405309677124 -0.4085699319839478 0.2739797532558441 0.6602405309677124 -0.4085699319839478 0.2739797532558441 0.6455046534538269 -0.4862898588180542 0.2888893783092499 0.6455046534538269 -0.4862898588180542 0.2888893783092499 0.6392834782600403 -0.4669303297996521 0.2950650453567505 0.6392834782600403 -0.4669303297996521 0.2950650453567505 0.6345111727714539 -0.44045090675354 0.2950650453567505 0.6345111727714539 -0.44045090675354 0.2950650453567505 0.6424651741981506 -0.444201648235321 0.2764533758163452 0.6424651741981506 -0.444201648235321 0.2764533758163452 0.6435200572013855 -0.4669303297996521 0.2801555991172791 0.6435200572013855 -0.4669303297996521 0.2801555991172791 0.6460384726524353 -0.4859673380851746 0.2845224440097809 0.6460384726524353 -0.4859673380851746 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.646506130695343 -0.4115235209465027 0.2925914824008942 0.646506130695343 -0.4115235209465027 0.2925914824008942 0.66024249792099 -0.4116581082344055 0.2764533758163452 0.66024249792099 -0.4116581082344055 0.2764533758163452 0.6514291167259216 -0.4235804677009583 0.2764533758163452 0.6514291167259216 -0.4235804677009583 0.2764533758163452 0.6418229341506958 -0.4669303297996521 0.2925914824008942 0.6418229341506958 -0.4669303297996521 0.2925914824008942 0.637304425239563 -0.4417674541473389 0.2959337532520294 0.637304425239563 -0.4417674541473389 0.2959337532520294 0.644047737121582 -0.4449477791786194 0.2801555991172791 0.644047737121582 -0.4449477791786194 0.2801555991172791 0.6441159844398499 -0.4669303297996521 0.2845224440097809 0.6441159844398499 -0.4669303297996521 0.2845224440097809 0.6602380871772766 -0.404927670955658 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602380871772766 -0.404927670955658 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6435200572013855 -0.4669303297996521 0.2888893783092499 0.6435200572013855 -0.4669303297996521 0.2888893783092499 0.6400973200798035 -0.4430851340293884 0.2950650453567505 0.6400973200798035 -0.4430851340293884 0.2950650453567505 0.6476355791091919 -0.4142892956733704 0.2950650453567505 0.6476355791091919 -0.4142892956733704 0.2950650453567505 0.6521837711334229 -0.4254279732704163 0.2801555991172791 0.6521837711334229 -0.4254279732704163 0.2801555991172791 0.6446030139923096 -0.4452097415924072 0.2845224440097809 0.6446030139923096 -0.4452097415924072 0.2845224440097809 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602438688278198 -0.4137213826179504 0.2801555991172791 0.6602438688278198 -0.4137213826179504 0.2801555991172791 0.6424651741981506 -0.444201648235321 0.2925914824008942 0.6424651741981506 -0.444201648235321 0.2925914824008942 0.6489681005477905 -0.4175517559051514 0.2959337532520294 0.6489681005477905 -0.4175517559051514 0.2959337532520294 0.6524484753608704 -0.4260773062705994 0.2845224440097809 0.6524484753608704 -0.4260773062705994 0.2845224440097809 0.644047737121582 -0.4449477791786194 0.2888893783092499 0.644047737121582 -0.4449477791786194 0.2888893783092499 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602442264556885 -0.4144457578659058 0.2845224440097809 0.6602442264556885 -0.4144457578659058 0.2845224440097809 0.6502998471260071 -0.4208146929740906 0.2950650453567505 0.6502998471260071 -0.4208146929740906 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6521837711334229 -0.4254279732704163 0.2888893783092499 0.6521837711334229 -0.4254279732704163 0.2888893783092499 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602438688278198 -0.4137213826179504 0.2888893783092499 0.6602438688278198 -0.4137213826179504 0.2888893783092499 0.6514291167259216 -0.4235804677009583 0.2925914824008942 0.6514291167259216 -0.4235804677009583 0.2925914824008942 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602405309677124 -0.4085699319839478 0.2950650453567505 0.6602405309677124 -0.4085699319839478 0.2950650453567505 0.66024249792099 -0.4116581082344055 0.2925914824008942 0.66024249792099 -0.4116581082344055 0.2925914824008942</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"264\" source=\"#ID70\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID67\">\r\n                    <float_array count=\"792\" id=\"ID71\">-0.705751612624297 -0.6736031467969834 0.2194845368207189 -0.723249639387585 -0.6905851167376961 -0.001468218686374701 -0.8075908669576146 -0.5897411418470161 -0.001541823474401379 0.8075908669576146 0.5897411418470161 0.001541823474401379 0.723249639387585 0.6905851167376961 0.001468218686374701 0.705751612624297 0.6736031467969834 -0.2194845368207189 0.9999998549764383 -0.0005385602124681323 1.798811497296893e-010 0.9999998619819208 -0.0005253479946148091 6.754579145190894e-006 0.999999813854024 -0.0006101572892038408 -2.340183956586328e-011 -0.999999813854024 0.0006101572892038408 2.340183956586328e-011 -0.9999998619819208 0.0005253479946148091 -6.754579145190894e-006 -0.9999998549764383 0.0005385602124681323 -1.798811497296893e-010 -0.7832090569802331 -0.563885812854759 0.2619472525629185 0.7832090569802331 0.563885812854759 -0.2619472525629185 -0.7817598749353603 -0.5645085171358366 -0.26491816098967 0.7817598749353603 0.5645085171358366 0.26491816098967 0.9999998411775229 -0.0005634720393395381 -1.200790474749005e-005 -0.9999998411775229 0.0005634720393395381 1.200790474749005e-005 0.9999998619817377 -0.0005253483505001034 -6.754000790909341e-006 -0.9999998619817377 0.0005253483505001034 6.754000790909341e-006 -0.9527376244220858 -0.303793227155968 -0.0008331534811120218 0.9527376244220858 0.303793227155968 0.0008331534811120218 -0.6459756364898233 -0.6063525859232831 0.4637370144874305 0.6459756364898233 0.6063525859232831 -0.4637370144874305 -0.9154121483802826 -0.2904213362317121 -0.2787042268412563 0.9154121483802826 0.2904213362317121 0.2787042268412563 -0.7111187578705497 -0.6677746268057927 -0.2199708162439523 0.7111187578705497 0.6677746268057927 0.2199708162439523 0.9999998580605745 -0.0005324296017061601 -1.993866258511989e-005 -0.9999998580605745 0.0005324296017061601 1.993866258511989e-005 0.9999998411772466 -0.0005634725222285433 1.200826317338047e-005 -0.9999998411772466 0.0005634725222285433 -1.200826317338047e-005 -0.9168306842379277 -0.2874967770350575 0.277068763367991 0.9168306842379277 0.2874967770350575 -0.277068763367991 -0.6899817838723537 -0.4765390401152086 0.544826285315237 0.6899817838723537 0.4765390401152086 -0.544826285315237 -0.7842961867475975 -0.2413048357223482 -0.5715343101776026 0.7842961867475975 0.2413048357223482 0.5715343101776026 -0.6884771646026739 -0.4767686045504761 -0.5465262038874754 0.6884771646026739 0.4767686045504761 0.5465262038874754 0.9999998166802554 -0.0006055076015476713 5.482529811520003e-021 -0.9999998166802554 0.0006055076015476713 -5.482529811520003e-021 -0.4938391524225622 -0.4499982720094807 0.7440594376278327 0.4938391524225622 0.4499982720094807 -0.7440594376278327 -0.6578123227561983 -0.5980467967039984 -0.4578460188558833 0.6578123227561983 0.5980467967039984 0.4578460188558833 0.9999998580600193 -0.0005324306374811512 1.993885123911218e-005 -0.9999998580600193 0.0005324306374811512 -1.993885123911218e-005 -0.9993172590390673 -0.03694610674034449 3.135883035788179e-005 0.9993172590390673 0.03694610674034449 -3.135883035788179e-005 -0.960465965536488 -0.03630975369366535 -0.2760194392298613 0.960465965536488 0.03630975369366535 0.2760194392298613 -0.8205875269300812 -0.03194355955907711 -0.5706274788769542 0.8205875269300812 0.03194355955907711 0.5706274788769542 0.7939095379223065 0.1969112463909028 0.5752682910093089 -0.7939095379223065 -0.1969112463909028 -0.5752682910093089 -0.4651506096546429 -0.2948383542682578 0.8346887175410359 -0.1387519338525277 -0.1243833632592113 0.9824849514351408 0.1387519338525277 0.1243833632592113 -0.9824849514351408 0.4651506096546429 0.2948383542682578 -0.8346887175410359 -0.4688103618416526 -0.2943564121356371 -0.8328091901897661 0.4688103618416526 0.2943564121356371 0.8328091901897661 -0.5129314289867056 -0.4461939983816099 -0.7333568469482561 0.5129314289867056 0.4461939983816099 0.7333568469482561 0.9999998166802563 -0.0006055075999022886 -1.096546068823298e-020 -0.9999998166802563 0.0006055075999022886 1.096546068823298e-020 -0.9604972668016695 -0.03495668559621632 0.276085187213385 0.9604972668016695 0.03495668559621632 -0.276085187213385 -0.7866645316355505 -0.2363439708880585 0.570351156824885 0.7866645316355505 0.2363439708880585 -0.570351156824885 -0.5130348197170416 -0.02081339521567967 -0.8581154213376535 0.5130348197170416 0.02081339521567967 0.8581154213376535 -0.4995435721539706 -0.1430177528752383 -0.8544016279725641 0.4995435721539706 0.1430177528752383 0.8544016279725641 0.9000285742012102 0.3063376208368318 0.3100093993435784 -0.9000285742012102 -0.3063376208368318 -0.3100093993435784 -0.03636807467283153 -0.006606222029889989 0.999316626988205 0.03636807467283153 0.006606222029889989 -0.999316626988205 -0.04812466771604267 -0.007954144418886417 -0.9988096655238093 0.04812466771604267 0.007954144418886417 0.9988096655238093 -0.1526086015993849 -0.1285731755270082 -0.9798875207148938 0.1526086015993849 0.1285731755270082 0.9798875207148938 0.7996254711754621 0.1929644709936232 -0.5686508760052793 -0.7996254711754621 -0.1929644709936232 0.5686508760052793 -0.9631114801070717 0.2691022468341752 0.0005075773480541925 0.9631114801070717 -0.2691022468341752 -0.0005075773480541925 -0.9262260303536134 0.2559807553453563 -0.2767294591983437 0.9262260303536134 -0.2559807553453563 0.2767294591983437 -0.7941112433644082 0.2126601577859673 -0.5693531333475573 0.7941112433644082 -0.2126601577859673 0.5693531333475573 -0.5072819859800244 0.1267210860462836 -0.8524123139956467 0.5072819859800244 -0.1267210860462836 0.8524123139956467 0.937110602165385 0.3235995292060994 0.1307939754224954 -0.937110602165385 -0.3235995292060994 -0.1307939754224954 0.4683145507705584 0.2666103025462021 0.8423778416558645 -0.4683145507705584 -0.2666103025462021 -0.8423778416558645 -0.5006817121148732 -0.1383947502935547 0.854496761986202 0.5006817121148732 0.1383947502935547 -0.854496761986202 -0.02916676532904535 -0.002607048449104029 -0.9995711595972666 0.02916676532904535 0.002607048449104029 0.9995711595972666 0.4686365287356026 0.2634175385470021 -0.8432028251378688 -0.4686365287356026 -0.2634175385470021 0.8432028251378688 0.9063167055109044 0.2979834863464362 -0.2996595921653166 -0.9063167055109044 -0.2979834863464362 0.2996595921653166 -0.9256385792573044 0.2571014635508372 0.2776545660178067 0.9256385792573044 -0.2571014635508372 -0.2776545660178067 -0.8206331206288936 -0.02964916322471281 0.5706857352755176 0.8206331206288936 0.02964916322471281 -0.5706857352755176 -0.03606796853137018 0.003069262570959986 -0.9993446258790261 0.03606796853137018 -0.003069262570959986 0.9993446258790261 -0.01386625369199847 -0.001056049480266805 -0.9999033012086941 0.01386625369199847 0.001056049480266805 0.9999033012086941 0.9469315112745416 0.3214314072292765 0.001601062746909136 -0.9469315112745416 -0.3214314072292765 -0.001601062746909136 0.7641065348004036 0.3901442817233559 0.5137398591835036 -0.7641065348004036 -0.3901442817233559 -0.5137398591835036 -0.0253409147764243 -0.002224590617548376 0.9996763922564534 0.0253409147764243 0.002224590617548376 -0.9996763922564534 0.4738172194062332 0.1197701700090635 -0.8724404558307378 -0.4738172194062332 -0.1197701700090635 0.8724404558307378 0.7711373476771701 0.3842751232355434 -0.5076217299128626 -0.7711373476771701 -0.3842751232355434 0.5076217299128626 0.940058892599263 0.3172032298953741 -0.1251854200336039 -0.940058892599263 -0.3172032298953741 0.1251854200336039 -0.7886999360348029 0.6147767214633088 0.001411965128137241 0.7886999360348029 -0.6147767214633088 -0.001411965128137241 -0.7623290759492826 0.5848091274625029 -0.2772231310674836 0.7623290759492826 -0.5848091274625029 0.2772231310674836 -0.6631486409280196 0.4874613557369795 -0.5679923473942115 0.6631486409280196 -0.4874613557369795 0.5679923473942115 -0.4363268446364034 0.2955463160935649 -0.8498654362269137 0.4363268446364034 -0.2955463160935649 0.8498654362269137 -0.0295904739926534 0.007287631111918657 -0.9995355392789527 0.0295904739926534 -0.007287631111918657 0.9995355392789527 0.8781779081951024 0.4175185727202028 0.2334133736351856 -0.8781779081951024 -0.4175185727202028 -0.2334133736351856 0.4800981526433935 0.1133023647646291 0.8698668507117304 -0.4800981526433935 -0.1133023647646291 -0.8698668507117304 -0.5131310993602707 -0.0187526802328627 0.8581053617437688 0.5131310993602707 0.0187526802328627 -0.8581053617437688 0.4952743046220077 0.02034728321867889 -0.8684983311709963 -0.4952743046220077 -0.02034728321867889 0.8684983311709963 0.7972622849144865 0.1792769318503911 -0.5763962445742011 -0.7972622849144865 -0.1792769318503911 0.5763962445742011 0.8823867396385429 0.41265543867549 -0.2260732859972651 -0.8823867396385429 -0.41265543867549 0.2260732859972651 -0.7595042982554835 0.5870603968540626 0.280202268686383 0.7595042982554835 -0.5870603968540626 -0.280202268686383 -0.7932577613415092 0.2145816981708134 0.5698217430754876 0.7932577613415092 -0.2145816981708134 -0.5698217430754876 0.4353447705095689 -0.2671658094731063 -0.8597077183779092 -0.4353447705095689 0.2671658094731063 0.8597077183779092 0.4665169607832366 -0.1084626786762199 -0.8778369852290067 -0.4665169607832366 0.1084626786762199 0.8778369852290067 0.9085269655623637 0.4178115441467183 0.003502345468202378 -0.9085269655623637 -0.4178115441467183 -0.003502345468202378 0.8008465080303187 0.1689211539185453 0.5745524469832773 -0.8008465080303187 -0.1689211539185453 -0.5745524469832773 -0.01394041370417603 -0.0009874344792977709 0.9999023401507297 0.01394041370417603 0.0009874344792977709 -0.9999023401507297 0.81484435028947 0.03368710526116375 -0.5787001501126944 -0.81484435028947 -0.03368710526116375 0.5787001501126944 0.9422159256443544 0.1931516140816549 -0.2737181094480306 -0.9422159256443544 -0.1931516140816549 0.2737181094480306 -0.6804146158758695 0.7328252533849206 0.00176025674830374 0.6804146158758695 -0.7328252533849206 -0.00176025674830374 -0.6618880202834722 0.7123564045500399 -0.2333508120872217 0.6618880202834722 -0.7123564045500399 0.2333508120872217 -0.6005935287410511 0.633267848924303 -0.4881180643585715 0.6005935287410511 -0.633267848924303 0.4881180643585715 -0.4501576861779418 0.4575811199314518 -0.7667969589514554 0.4501576861779418 -0.4575811199314518 0.7667969589514554 -0.1180449525871773 0.1181456463689562 -0.9859548647949118 0.1180449525871773 -0.1181456463689562 0.9859548647949118 0.7873239455630373 -0.2010483539872131 -0.5828383687628018 -0.7873239455630373 0.2010483539872131 0.5828383687628018 0.9431346571913443 0.1855647482284393 0.2757947472659363 -0.9431346571913443 -0.1855647482284393 -0.2757947472659363 0.4953154525289081 0.01781029697467817 0.8685305957810332 -0.4953154525289081 -0.01781029697467817 -0.8685305957810332 -0.5073106571574744 0.1285893059795506 0.8521154191317917 0.5073106571574744 -0.1285893059795506 -0.8521154191317917 0.7913989160805892 -0.1706694853308344 -0.5869920633223047 -0.7913989160805892 0.1706694853308344 0.5869920633223047 0.9593414664545559 0.03890179671757865 -0.2795542898132069 -0.9593414664545559 -0.03890179671757865 0.2795542898132069 0.9816075400361064 0.1908982818473136 0.00211738801526375 -0.9816075400361064 -0.1908982818473136 -0.00211738801526375 -0.668592732933499 0.7058284386373456 0.2340725799389628 0.668592732933499 -0.7058284386373456 -0.2340725799389628 -0.658648055556712 0.4905608607123966 0.5705548009161566 0.658648055556712 -0.4905608607123966 -0.5705548009161566 0.8945237521063432 -0.3128950493248178 -0.319255297568591 -0.8945237521063432 0.3128950493248178 0.319255297568591 0.7273308374623275 -0.4107140561815599 -0.5498216228298409 -0.7273308374623275 0.4107140561815599 0.5498216228298409 0.8149356869034029 0.03016825800147217 0.5787656714253494 -0.8149356869034029 -0.03016825800147217 -0.5787656714253494 -0.03815079619648202 0.003415148224166548 0.9992661574936786 0.03815079619648202 -0.003415148224166548 -0.9992661574936786 0.9388012737182524 -0.1951675219529285 -0.2838341185265438 -0.9388012737182524 0.1951675219529285 0.2838341185265438 0.9992277367336863 0.03929287538264983 -9.286468785953477e-006 -0.9992277367336863 -0.03929287538264983 9.286468785953477e-006 0.9999997700670603 0.0006781340773516428 1.091712874520978e-011 0.999999741515791 0.0007190041331446171 -1.186517879136609e-006 0.9999997627535195 0.0006888344536469859 -5.398966828881975e-010 -0.9999997627535195 -0.0006888344536469859 5.398966828881975e-010 -0.999999741515791 -0.0007190041331446171 1.186517879136609e-006 -0.9999997700670603 -0.0006781340773516428 -1.091712874520978e-011 0.9999997415162626 0.0007190034793928838 1.185225566045566e-006 -0.9999997415162626 -0.0007190034793928838 -1.185225566045566e-006 0.9999997591493971 0.0006939736981349089 1.008237387055068e-005 -0.9999997591493971 -0.0006939736981349089 -1.008237387055068e-005 0.9999997616215287 0.0006904002692460185 -1.021538954553776e-005 -0.9999997616215287 -0.0006904002692460185 1.021538954553776e-005 0.9999997581675503 0.0006954601648648084 -1.095769135979897e-020 -0.9999997581675503 -0.0006954601648648084 1.095769135979897e-020 0.9594300725529456 0.03651680147267897 0.279571921142404 -0.9594300725529456 -0.03651680147267897 -0.279571921142404 0.4640834765258798 -0.1107483895265082 0.8788408963133987 -0.4640834765258798 0.1107483895265082 -0.8788408963133987 -0.4349383883559403 0.298045747182913 0.8497042608581626 0.4349383883559403 -0.298045747182913 -0.8497042608581626 0.8509522788102882 -0.4576708245757746 -0.2577161918073987 -0.8509522788102882 0.4576708245757746 0.2577161918073987 0.9793566160984792 -0.2021367815241144 -0.001157609264210023 -0.9793566160984792 0.2021367815241144 0.001157609264210023 0.9999997591488229 0.0006939745151300152 -1.008309259434636e-005 -0.9999997591488229 -0.0006939745151300152 1.008309259434636e-005 -0.6150886461380279 0.6241615889410819 0.481755402961536 0.6150886461380279 -0.6241615889410819 -0.481755402961536 0.9355903546303108 -0.3265017138224018 -0.134414728336458 -0.9355903546303108 0.3265017138224018 0.134414728336458 0.7902373545678373 -0.1746497282835001 0.5873860705329383 -0.7902373545678373 0.1746497282835001 -0.5873860705329383 -0.03727582289811701 0.00904632410419585 0.9992640677255787 0.03727582289811701 -0.00904632410419585 -0.9992640677255787 0.8837575014651523 -0.467937238920978 -0.002723790572529869 -0.8837575014651523 0.467937238920978 0.002723790572529869 0.9385893356447606 -0.1982001301868833 0.2824301106607252 -0.9385893356447606 0.1982001301868833 -0.2824301106607252 0.9999997616211637 0.0006904007994159351 1.021529299323952e-005 -0.9999997616211637 -0.0006904007994159351 -1.021529299323952e-005 0.9471939711829661 -0.3206513593284936 -0.002507332333696746 -0.9471939711829661 0.3206513593284936 0.002507332333696746 0.4270453468344068 -0.2684592106674866 0.8634592775312981 -0.4270453468344068 0.2684592106674866 -0.8634592775312981 -0.4729763080059392 0.4540909037883582 0.7550462655769797 0.4729763080059392 -0.4540909037883582 -0.7550462655769797 0.8504098207762262 -0.4605667194708368 0.2543254482807772 -0.8504098207762262 0.4605667194708368 -0.2543254482807772 0.9999997581675503 0.0006954601649510948 2.191458151038304e-020 -0.9999997581675503 -0.0006954601649510948 -2.191458151038304e-020 0.9399882881102288 -0.3171041366911378 0.1259642199553888 -0.9399882881102288 0.3171041366911378 -0.1259642199553888 0.7241574605236903 -0.4145294511506577 0.5511454494927945 -0.7241574605236903 0.4145294511506577 -0.5511454494927945 -0.1340835029535357 0.124013334904789 0.983179692122199 0.1340835029535357 -0.124013334904789 -0.983179692122199 0.7948251512710979 -0.1957764209566542 0.5743906091713888 -0.7948251512710979 0.1957764209566542 -0.5743906091713888 0.9035807440994651 -0.3012260155692836 0.3046386817804174 -0.9035807440994651 0.3012260155692836 -0.3046386817804174</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"264\" source=\"#ID71\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID69\">\r\n                    <float_array count=\"1336\" id=\"ID72\">8.434630368164704 2.353360081779203 8.439855099803374 2.318780785786409 8.216371074199902 2.318780785786409 -5.353662840570794 2.238346445495049 -5.34641849052734 2.272699661990973 -5.258483149757913 2.238346445495049 8.428908305771554 2.372275948504826 8.210678454353849 2.337581846710967 8.207148906956121 2.372275948504826 8.216371074199902 2.099201542017305 8.439855099803374 2.099201542017305 8.212874042292729 2.064506099013996 -5.346578877313325 2.272445596198183 -5.325947323394589 2.301568815064706 -5.258643536548753 2.238092379694571 -5.34641849052734 2.203787490769093 -5.353662840570794 2.238140003930209 -5.258483149757913 2.238140003930209 7.596583364577615 2.55171847021232 7.601656486858115 2.517142999896679 7.317236541932582 2.517142999896679 8.413950709713538 2.465525301638435 8.428908305771554 2.434330334682621 8.207148906956121 2.434330334682621 7.586893672412469 1.929008386505678 7.581798412101595 1.894435629635499 7.302094057981144 1.894435629635499 8.43415938311553 2.12514351646369 8.428908305771554 2.090567388980215 8.207148906956121 2.090567388980215 -5.325369974300813 2.30194764879499 -5.294479264856308 2.321406344066429 -5.258066187507247 2.238471213390559 -5.325947319466017 2.174917397892478 -5.346578873384753 2.204041554538746 -5.258643532620178 2.238394067707548 7.581798412101595 2.619588947825986 7.302476555747747 2.584888879834124 7.302094057981145 2.619588947825986 7.317236541932579 1.850354270639173 7.601656486858113 1.850354270639173 7.316881791826323 1.815654716533251 8.3955569580953 2.50250886325613 8.18899985985553 2.470326219360448 8.178697842914264 2.50250886325613 7.302094057981146 0.855743874384147 7.581798412101595 0.855743874384147 7.300971110964643 0.8234534403100693 8.207148906956121 1.617093440555834 8.428908305771554 1.617093440555834 8.197117569523337 1.584857075977602 -5.258905246021844 2.238243226210277 -5.29531832366427 2.321178356806438 -5.258905246021844 2.328012192249299 8.395556958095302 2.393997464238216 8.178697842914264 2.393997464238216 8.372838650853405 2.41948796271577 8.410732696733057 1.717467499264168 8.3955569580953 1.686336924306703 8.178697842914264 1.686336924306703 -5.294479267695164 2.155079403421889 -5.325369977139668 2.1745385675832 -5.258066190346099 2.238015237432566 5.710314858466266 2.828716964504237 5.712813940303199 2.794071325224616 5.43564487805588 2.794071325224616 7.567306430558848 3.088475496532702 7.581798412101595 3.057307671632219 7.302094057981145 3.057307671632219 5.708851787152099 1.644395658947628 5.706348692416967 1.609750896345491 5.432440777234132 1.609750896345491 5.693943675180602 0.2308084042307124 5.686744761844247 0.1990061827887031 5.422161061289249 0.1990061827887031 7.535905530802523 1.112286182196852 7.521223456598177 1.081172584512499 7.254863636322893 1.081172584512499 -5.257175951646648 2.238243226210277 -5.257175951646648 2.328012192249299 -5.220747967071105 2.321178356806438 8.33916397760588 1.883711615823397 8.129529547857697 1.883711615823397 8.311784926989073 1.903794973188536 8.145593213807361 2.42019245782121 8.129529547857695 2.448237742633388 8.339163977605878 2.448237742633388 8.163266938210644 0.7538489312785419 8.178697842914264 0.7821135543431498 8.3955569580953 0.7821135543431498 8.129529547857697 0.9243288884928269 8.362387450447192 0.949536456620966 8.33916397760588 0.9243288884928271 -5.258905246021844 2.148475901285807 -5.29531832366427 2.155307392279307 5.432440777234132 2.846946774123885 5.706348692416967 2.846946774123885 5.431682793373643 2.812281116825409 5.435644878055882 1.624304963908791 5.712813940303199 1.624304963908791 5.436407010946693 1.589640059902782 7.521223456598179 3.247101335524373 7.256226904838707 3.214817473372052 7.254863636322895 3.247101335524373 5.432440777234131 0.1682208939942272 5.706348692416967 0.168220893994227 5.434602378679044 0.1362272820838394 5.425340449899831 -1.689216044294241 5.422161061289249 -1.661438381831966 5.686744761844248 -1.661438381831966 7.252848146393001 -0.5270631398770428 7.254863636322892 -0.4985518232093718 7.521223456598176 -0.4985518232093723 -5.257390617861971 2.23830157544322 -5.220962633305634 2.321236706044601 -5.190081459393857 2.30177801079064 -8.260842066902697 -0.4796763149142531 -8.059533172577172 -0.4796763149142531 -8.232721767073175 -0.4991327960577887 8.079424579263606 1.959442771916687 8.05953317257717 1.983772065631482 8.260842066902697 1.983772065631481 7.499236753965093 3.533515822434401 7.521223456598177 3.508078316264925 7.254863636322893 3.508078316264925 7.439999196691409 -0.1271001322564012 7.417539771395165 -0.1522811294232672 7.171086101027779 -0.1522811294232672 8.110574073075688 -0.5489996162952336 8.129529547857697 -0.5242128766259669 8.339163977605882 -0.5242128766259669 8.05953317257717 -0.5424206148045283 8.288956913940631 -0.5229773532910994 8.260842066902697 -0.5424206148045279 -5.257175951646648 2.148475901285807 -5.220747967071105 2.155307392279307 4.322864625052438 2.944894745205068 4.32318594951872 2.910224881472888 4.036723057722867 2.910224881472888 5.699185441715321 3.897729522860127 5.706348692416967 3.865923177062649 5.432440777234131 3.865923177062649 4.329062854421077 1.525740662158354 4.32874688218239 1.491071464894376 4.044919952782598 1.491071464894376 4.346555817097767 -0.1306287692369947 4.345701005524085 -0.1626604812616511 4.069386787927182 -0.1626604812616511 4.374144530264028 -2.151847645849272 4.372975942564231 -2.179722527662006 4.107900982830067 -2.179722527662006 5.666277883087392 -1.583331166730941 5.655444809482778 -1.61058523539394 5.404784526157568 -1.61058523539394 -5.257824474759958 2.238586261658011 -5.190515316496215 2.302062697139542 -5.169877801644873 2.27293947822191 -8.143361574613978 0.8413655801904392 -8.167849371996281 0.8658136570680978 -7.974670137151378 0.865813657068098 -7.995540330570239 -0.8630370076530344 -7.974670137151378 -0.8868406056614312 -8.167849371996281 -0.8868406056614312 7.417539771395168 3.483727300830921 7.171086101027782 3.483727300830921 7.39103908120253 3.503781361879716 7.173709694356354 3.648842704203838 7.171086101027782 3.677323068379556 7.417539771395168 3.677323068379556 7.167986007454825 -2.20633963742961 7.171086101027779 -2.180877764144669 7.417539771395165 -2.180877764144669 7.045549963493105 -2.116993011529345 7.295981151505877 -2.097581142588419 7.26871964559047 -2.116993011529345 -8.039652436742212 1.957654011907818 -8.059533172577169 1.933332583847781 -8.260842066902695 1.933332583847781 -7.974670137151378 2.295338343142578 -8.196734695214555 2.276589091912657 -8.167849371996281 2.295338343142578 -5.220962632578972 2.155249043451731 -5.257390617135311 2.23818487738792 -5.190081458667196 2.174708207595564 4.044919952782597 2.916697151235225 4.328746882182389 2.916697151235225 4.042600078796272 2.882054041348514 4.323185949518719 1.556336739814635 4.039037810754717 1.521694115390833 4.036723057722867 1.556336739814635 5.422161061289248 3.943015595733636 5.686744761844247 3.943015595733636 5.420036419983333 3.911021305348012 4.32874688218239 -0.03934716925420752 4.051532611608242 -0.07113567801260858 4.044919952782598 -0.03934716925420708 4.345701005524084 -2.041487688672124 4.079349393796518 -2.068716198387755 4.069386787927182 -2.041487688672124 4.107900982830065 -4.294279042810013 4.372975942564231 -4.294279042810013 4.119767316885249 -4.317723284416905 5.408428166518827 -3.738151290697665 5.404784526157568 -3.713779059006903 5.655444809482778 -3.713779059006903 -5.257531821098262 2.23812262282773 -5.169585147941832 2.272475839326124 -5.162335432618291 2.23812262282773 -8.058467359513546 1.590060425611151 -8.07521500203085 1.620689764464635 -7.888739162701234 1.620689764464635 -7.907185337553728 0.4013047780946442 -7.88873916270123 0.3741826951527294 -8.075215002030847 0.3741826951527294 -7.268719645590471 -2.053150487784164 -7.045549963493105 -2.053150487784164 -7.241471017322947 -2.072558574438991 7.049656255600592 3.557643136187863 7.045549963493103 3.583017370243692 7.268719645590469 3.583017370243692 5.675999108017063 4.796796616406089 5.686744761844247 4.769521473815643 5.422161061289248 4.769521473815644 5.380593695362149 -3.720189074757867 5.627751146083146 -3.696716872328327 5.614830603089938 -3.720189074757867 -7.041437280987505 3.559881852951684 -7.045549963493105 3.534504664393194 -7.268719645590471 3.534504664393194 -6.879131975953596 3.872325978238262 -7.107471800469083 3.853729175174603 -7.07932470356956 3.872325978238261 -7.956974743609803 2.699247075170101 -7.974670137151378 2.671816843440934 -8.167849371996281 2.671816843440934 -8.100272364420025 2.813405133895433 -8.075215002030847 2.837493791448359 -7.88873916270123 2.837493791448359 -5.190515307563639 2.174423518224927 -5.257824465827388 2.237900188151389 -5.169877792712301 2.203547674922303 0.9321896995554874 3.084759604088484 0.9324691034587712 3.050069154998214 0.6010926834848163 3.050069154998214 4.32784579960887 4.236534059576869 4.32874688218239 4.204503985072105 4.044919952782598 4.204503985072104 0.950062449921591 1.383032588066094 0.949797214608149 1.34834276664203 0.6231956013640261 1.34834276664203 1.003416473405784 -0.564888771331991 1.002788032144056 -0.5970963054434877 0.689784832516474 -0.5970963054434877 1.092339209865707 -2.862877208302275 1.091705377008492 -2.891206797268985 0.799014424632421 -2.891206797268985 1.21477090199698 -5.192994789713625 1.214511035774509 -5.218228300925035 0.9457283423114732 -5.218228300925036 4.409831302193775 -4.322735542825156 4.408621707159075 -4.347257289987124 4.156787646307723 -4.347257289987124 -5.169585147941832 2.204011317694693 -5.257531821098262 2.238363830858279 -5.162335432618291 2.238363830858279 -7.999157219777652 2.042518948965083 -8.005130751859149 2.077023827768453 -7.823033792135997 2.077023827768453 -8.00513075185915 1.31362032127005 -7.835707978970907 1.345278800213265 -7.823033792135998 1.31362032127005 -7.05545941398606 -0.164176067462128 -7.079324703569558 -0.1398098589040872 -6.879131975953596 -0.1398098589040872 -6.884479357744759 -2.534560429404811 -6.879131975953596 -2.559795433399359 -7.07932470356956 -2.559795433399359 5.655444809482778 4.978600663649545 5.404784526157568 4.978600663649546 5.642662340147106 5.002120284121173 5.401695898015736 4.808656846371256 5.404784526157568 4.836440516700103 5.655444809482777 4.836440516700103 -5.380593695362148 4.962171502045569 -5.614830603089938 4.962171502045569 -5.384093045167586 4.986553189531894 -5.351938677244748 5.017996387150544 -5.582837128882106 4.994576258487117 -5.56975153141031 5.017996387150543 -6.874595950601089 3.916023019294676 -6.879131975953595 3.887689986660023 -7.079324703569558 3.887689986660023 -6.897904037561943 3.810508318163908 -6.873283332082826 3.834405261392366 -6.692262931049166 3.834405261392366 -7.888739162701233 2.724661003134386 -8.075215002030848 2.724661003134386 -7.876414230061255 2.756405562862807 -8.022138934044577 2.667683772496266 -8.00513075185915 2.698225030675403 -7.823033792135997 2.698225030675403 0.6231956013640233 2.987301201786206 0.9497972146081468 2.987301201786206 0.6186869138979473 2.952689308328709 0.9324691034587718 1.488731301058679 0.6055889575248274 1.454119106364988 0.6010926834848163 1.488731301058679 4.069386787927182 4.167419738683337 4.345701005524084 4.167419738683337 4.062729945287959 4.135637796654536 0.949797214608149 -0.2493085088309403 0.6360503119188737 -0.2808136654129828 0.6231956013640255 -0.2493085088309403 0.689784832516474 -2.4607913856797 1.002788032144056 -2.4607913856797 0.7091761562947707 -2.487216522236849 0.7990144246324216 -5.04666531159668 1.091705377008492 -5.04666531159668 0.8222001987001021 -5.068632328092367 -0.9457283423114715 6.394951207259644 -1.214511035774507 6.394951207259644 -0.9693463955966802 6.41663285742608 -4.156787646307723 5.552627698955143 -4.408621707159075 5.552627698955144 -4.168826186517451 5.576018849749032 -7.984960319107533 2.382495153753913 -7.978954487231514 2.416995862268491 -7.798376612851471 2.416995862268491 -7.978954487231514 1.966439049599448 -7.802869053634529 2.001063721989028 -7.798376612851471 1.966439049599448 -6.856830818500603 1.084050530930478 -6.873283332082827 1.114614485837111 -6.692262931049166 1.114614485837111 -6.697884869256301 -0.9582713887241099 -6.692262931049166 -0.9864833759891449 -6.873283332082827 -0.9864833759891449 -5.614830603089938 -3.667689435313882 -5.380593695362148 -3.667689435313881 -5.601902573413683 -3.691164337909785 5.377093788557139 4.98813735430019 5.380593695362149 5.012523274922119 5.614830603089938 5.01252327492212 4.345701005524084 5.287360168805004 4.069386787927182 5.287360168805004 4.344421835165308 5.315231718444743 -4.449546056620505 5.523364437354302 -4.448524202508265 5.547887865422255 -4.209933402218356 5.547887865422255 -5.351938677244748 4.785846990777218 -5.56975153141031 4.785846990777218 -5.354765627823066 4.813646201701512 -5.538309584632483 4.761696983986634 -5.527083909871697 4.788854112455638 -5.323191108608555 4.788854112455638 -6.692262931049166 3.477831458554068 -6.873283332082827 3.477831458554069 -6.688521608741516 3.509995270680501 -6.720266959877879 3.164917477131315 -6.703434061204358 3.195353879732647 -6.535032963733198 3.195353879732646 -7.823033792135997 2.435604219488475 -8.005130751859149 2.435604219488475 -7.818584992145309 2.470231680986677 -1.96709306637855 3.077400285787161 -2.167801986871375 3.077400285787161 -1.964642189484361 3.112139973866311 0.9490457595910196 4.646912491789276 0.9497972146081496 4.614707436536613 0.6231956013640266 4.614707436536613 -1.918008717777247 1.315220598284153 -2.116263790567739 1.315220598284153 -1.920500958376179 1.349957769617933 -1.772230843885125 -0.6784430312662949 -1.963551749588468 -0.6784430312662946 -1.779694261781554 -0.6458798048266266 -1.543216962057551 -2.921635989955523 -1.531212837937363 -2.950650003716382 -1.712284373429763 -2.950650003716381 -1.222507394185468 -5.188411095530244 -1.207044158877362 -5.214242382180978 -1.376271851481387 -5.214242382180978 0.8485782902677852 6.390061095284668 0.8316396263229159 6.415314516155797 0.9893581626293579 6.415314516155797 -1.361941693243071 6.362733172750426 -1.362288982534341 6.387967241494827 -1.117326923650519 6.387967241494827 -6.697526395585393 1.892624381144682 -6.703434061204357 1.927117271470286 -6.535032963733198 1.927117271470286 -6.703434061204357 0.4832986325845745 -6.539345332253292 0.5154173203434307 -6.535032963733198 0.4832986325845745 -5.558655482375348 -1.571083272452359 -5.56975153141031 -1.543893531995541 -5.351938677244748 -1.543893531995541 -5.348603797862836 -3.730569693276149 -5.351938677244746 -3.754966297982173 -5.56975153141031 -3.754966297982173 4.372975942564231 5.588690154963504 4.107900982830067 5.588690154963505 4.371597365049192 5.613207036215486 4.107900982830066 5.25623854649248 4.372975942564231 5.25623854649248 4.097832937811947 5.229034383492466 -4.448524202508266 5.136112743423935 -4.220284363397968 5.163250715910081 -4.209933402218357 5.136112743423935 -4.486871269309131 5.178815212013592 -4.48615398637004 5.206697524035649 -4.258776450555414 5.206697524035649 -5.323191108608555 3.899793911100535 -5.527083909871697 3.899793911100535 -5.324989662746323 3.931801033582214 -5.503371109474338 3.845397623584101 -5.495820513932753 3.877144935837415 -5.301210651361618 3.877144935837415 -6.535032963733196 2.696133322235575 -6.703434061204355 2.696133322235575 -6.533506043351181 2.730813638015173 -6.641860146900234 2.531084909783068 -6.635902379084699 2.565571766215482 -6.471868518083324 2.565571766215482 -1.918008717777247 2.956182252046366 -2.121205890158615 2.921578102403865 -2.11626379056774 2.956182252046366 -1.967093066378549 1.51948075221779 -2.162893322330048 1.484874355808419 -2.167801986871373 1.519480752217791 0.6897848325164744 4.407826049212817 1.002788032144057 4.407826049212817 0.6768229489005453 4.376348946068332 -1.918008717777245 -0.1565365247956884 -2.102179364039371 -0.1879855502119529 -2.116263790567738 -0.1565365247956884 -1.963551749588464 -2.295202401859097 -1.772230843885123 -2.295202401859097 -1.942056306671609 -2.321333474487419 -1.712284373429763 -4.909224007543397 -1.531212837937362 -4.909224007543397 -1.686141419975853 -4.930315929223952 1.376271851481388 6.369227335455214 1.207044158877364 6.369227335455214 1.349117506683136 6.389508423958248 0.9893581626293585 5.441362297022207 0.8316396263229164 5.441362297022207 0.9653949506273185 5.466130793660186 -1.362288982534343 5.602639499088345 -1.137768301233448 5.628569766402831 -1.11732692365052 5.602639499088347 -6.635902379084699 1.696209365236964 -6.473472917853572 1.730888213057201 -6.471868518083324 1.696209365236964 -5.519597952639094 0.2327923851607379 -5.527083909871697 0.2645483088620941 -5.323191108608554 0.2645483088620941 -5.320499878353941 -1.669964106105268 -5.323191108608555 -1.697771323703456 -5.527083909871697 -1.697771323703455 -4.408621707159075 -4.296747015947841 -4.156787646307723 -4.296747015947841 -4.407412304627763 -4.32126581679264 4.408621707159075 5.605109209534284 4.144760566125584 5.581715029474692 4.156787646307723 5.605109209534284 1.001846931342163 5.972661113159814 1.002788032144055 5.944337132374494 0.6897848325164729 5.944337132374495 -1.511722885307478 5.846256149112257 -1.512522758452065 5.874582428309672 -1.287670506457124 5.874582428309672 -4.486153986370041 4.042309874632021 -4.265787779652355 4.074046865503883 -4.258776450555414 4.042309874632021 -4.513936661932269 4.116634488435327 -4.513529393516768 4.148671265418692 -4.293640562989966 4.148671265418692 -5.30121065136162 2.810912441373487 -5.495820513932754 2.810912441373487 -5.301818367203231 2.845580057199926 -5.486866123566071 2.783186271251781 -5.484193596745347 2.817823636846223 -5.292855245808954 2.817823636846223 -4.053823696300509 2.237933945389781 -3.965878808417176 2.272287161939893 -3.958641016476932 2.237933945389781 -1.918008717777246 4.649794177545886 -2.116263790567739 4.649794177545886 -1.910891693420302 4.682404522695187 -3.965878808417176 2.204199992204413 -4.053823696300509 2.238552505419718 -3.958641016476932 2.238552505419718 -3.98688258012103 2.174496531652604 -4.054189352611236 2.237973201526826 -3.966244464718757 2.203620688326012 -4.017173339631032 2.155424003666398 -4.053600131603027 2.238359837618288 -3.986293359006373 2.174883167813916 -4.054029148368965 2.148475901285807 -4.054029148368965 2.238243226210277 -4.017602356320005 2.155307392279307 -4.053705692468588 2.148475901285807 -4.090128310949842 2.155307392279307 -4.053705692468588 2.238243226210277 -4.089952433315315 2.155259592545581 -4.120834202083113 2.174718756689015 -4.053529814846994 2.238195426480065 0.4817370153810024 5.867033550067902 0.4662092569933485 5.894993387095167 0.6144719776412866 5.894993387095167 -5.493156499972884 1.622250154706118 -5.495820513932754 1.656888623668823 -5.30121065136162 1.656888623668823 -5.30121065136162 0.1336222520571034 -5.495820513932754 0.1336222520571034 -5.299479955906707 0.16563083642983 -4.448524202508266 -2.069012009645138 -4.209933402218357 -2.069012009645138 -4.447657984950528 -2.096891377077753 -4.448524202508265 -4.245748750520807 -4.197716937838588 -4.222414069935461 -4.209933402218356 -4.245748750520807 1.090947998110311 6.444314700437957 1.091705377008491 6.419086760900848 0.7990144246324199 6.419086760900847 1.091705377008496 5.764461288009136 0.7793575878386156 5.738158179036597 0.7990144246324239 5.764461288009136 -1.512522758452064 4.199124051242464 -1.301605464577787 4.230341346563795 -1.287670506457123 4.199124051242464 -1.628375530324133 4.532137312614295 -1.629173990339626 4.564343890560317 -1.417698726505826 4.564343890560318 -4.513529393516767 2.842460905715748 -4.296126179723646 2.877096140892943 -4.293640562989966 2.842460905715748 -4.523873026935287 2.878948457209516 -4.52373943882028 2.913619209927827 -4.306478961546185 2.913619209927827 -5.292855245808954 1.589284403419701 -5.484193596745347 1.589284403419701 -5.292256482891902 1.623952812594009 -4.054189359642654 2.238513250449592 -3.986882587152454 2.301989685878881 -3.966244471750178 2.272866466985217 -1.772230843885124 4.316668158091233 -1.97791489492716 4.285298111276199 -1.963551749588466 4.316668158091233 -4.120931077310953 2.174782322711644 -4.141563825700471 2.203906479345791 -4.053626690071178 2.238258992500297 0.4662092569933474 3.984640728124225 0.5978885664865269 4.015324222717966 0.6144719776412849 3.984640728124225 -4.485674624860247 -0.08526153762548347 -4.48615398637004 -0.05322623054405954 -4.258776450555414 -0.0532262305440591 -4.258776450555414 -1.933085990116117 -4.48615398637004 -1.933085990116117 -4.248284576315554 -1.905981862401339 -1.214262924493798 -5.194566694637977 -1.214511035774507 -5.169331267036565 -0.9457283423114715 -5.169331267036566 1.214511035774506 6.451534252752131 0.9221179475047064 6.429848196719905 0.9457283423114704 6.451534252752131 -1.761069588366373 5.937702646020404 -1.772230843885125 5.908481456554886 -1.963551749588467 5.908481456554886 0.2053747464016292 4.494206613498784 0.1944372944454104 4.526154345813759 0.3365673192634006 4.526154345813759 -1.629173990339625 2.867167703373754 -1.422673876480833 2.901739456795183 -1.417698726505825 2.867167703373754 -1.673273684142616 3.018941404769386 -1.673590716300032 3.053630894775492 -1.466805478570464 3.053630894775492 -4.306478961546185 1.564023796208383 -4.52373943882028 1.564023796208383 -4.303984471274499 1.598659334192533 -4.513386385417228 1.521059658472058 -4.513529393516768 1.55573108481662 -4.293640562989966 1.55573108481662 -4.053600130150717 2.238126612289381 -4.017173338178724 2.321061742906462 -3.986293357554064 2.301603047648817 -4.141471615561583 2.203760403806036 -4.148715368841032 2.238112916971204 -4.05353447993902 2.238112916971204 -4.293640562989966 0.04335369123050295 -4.513529393516768 0.04335369123050295 -4.28656117905012 0.0750804706277098 -1.362577667292276 -2.816696003244873 -1.362288982534341 -2.788363968266435 -1.117326923650519 -2.788363968266436 -1.362288982534339 -4.96872170244727 -1.093208957200034 -4.947382584107978 -1.117326923650517 -4.96872170244727 -1.517054674570912 6.352714651674939 -1.531212837937361 6.326423764830597 -1.712284373429761 6.326423764830597 -1.531212837937358 5.640120267067013 -1.734448249583062 5.614337428574716 -1.712284373429759 5.640120267067013 0.1944372944454098 2.768116755041422 0.3306030045439118 2.802621145461516 0.3365673192634 2.768116755041422 0.09703799021453519 2.992970025448294 0.09311781389960916 3.02762566825247 0.2331416166700978 3.02762566825247 -1.466805478570464 1.551162662776399 -1.673590716300032 1.551162662776399 -1.461801932402765 1.585732578944526 -1.629455680006471 1.378103798768278 -1.629173990339626 1.41279417401793 -1.417698726505825 1.41279417401793 -4.054029148368965 2.328012192249299 -4.017602356320005 2.321178356806438 -4.148715368841032 2.238373531371506 -4.141471615561583 2.272726747871482 -4.05353447993902 2.238373531371506 -1.5130564857246 -0.5257943792033832 -1.512522758452064 -0.4935852610863161 -1.287670506457123 -0.4935852610863157 -1.287670506457123 -2.200920589208218 -1.512522758452064 -2.200920589208219 -1.266807547891256 -2.175199304236262 1.191572206143222 -5.192175383810728 1.207044158877364 -5.1663454530928 1.376271851481389 -5.1663454530928 -1.207044158877361 6.429711904418062 -1.403428117920235 6.409426980035437 -1.376271851481385 6.429711904418062 0.2331416166700967 1.664649718651807 0.09311781389960805 1.664649718651807 0.2391568923698373 1.699149334331037 0.1905901596095888 1.402942822274038 0.1944372944454098 1.437604227236455 0.3365673192634 1.437604227236455 -1.417698726505827 -0.01600042466492939 -1.629173990339627 -0.01600042466492939 -1.40354905450114 0.01515616649882865 -4.090128310949842 2.321178356806438 -4.053705692468588 2.328012192249299 -4.141563826111081 2.272580676061272 -4.120931077721562 2.301703894915674 -4.053626690481788 2.238227459571957 0.817284599356215 -2.839893539460173 0.8316396263229142 -2.811548851757165 0.9893581626293563 -2.811548851757165 0.8316396263229164 -4.845690357464556 1.017620105613927 -4.826367558809764 0.9893581626293585 -4.845690357464556 0.3365673192634 0.3196989763957595 0.1944372944454098 0.3196989763957595 0.3535537786690163 0.3502448284896839 0.4558387683873832 -0.4939535826444508 0.466209256993349 -0.4618899096476089 0.6144719776412871 -0.4618899096476089 -4.120834201487819 2.301767461664036 -4.08995243272002 2.321226156917597 -4.053529814251699 2.238291026317921 0.6144719776412871 -1.790580230231597 0.4662092569933496 -1.790580230231597 0.6392934645829623 -1.766340825597774</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"668\" source=\"#ID72\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID68\">\r\n                    <input semantic=\"POSITION\" source=\"#ID66\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID67\"/>\r\n                </vertices>\r\n                <triangles count=\"448\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID68\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID69\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 7 12 16 13 8 14 9 14 17 13 10 12 18 15 6 16 8 17 9 17 11 16 19 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 16 30 28 31 8 32 9 32 29 31 17 30 30 33 18 34 8 35 9 35 19 34 31 33 12 36 20 37 32 38 33 38 21 37 13 36 20 39 2 40 24 41 25 41 3 40 21 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 8 51 28 52 40 53 41 53 29 52 9 51 22 54 34 55 42 56 43 56 35 55 23 54 26 57 44 58 38 59 39 59 45 58 27 57 46 60 30 61 8 62 9 62 31 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 8 78 40 79 54 80 55 80 41 79 9 78 42 81 56 82 57 83 58 83 59 82 43 81 34 84 56 85 42 86 43 86 59 85 35 84 60 87 38 88 44 89 45 89 39 88 61 87 60 90 44 91 62 92 63 92 45 91 61 90 64 93 46 94 8 51 9 51 47 94 65 93 66 95 32 96 48 97 49 97 33 96 67 95 48 98 20 99 50 100 51 100 21 99 49 98 34 101 32 102 68 103 69 103 33 102 35 101 50 104 24 105 52 106 53 106 25 105 51 104 70 107 52 108 36 109 37 109 53 108 71 107 72 110 36 111 38 112 39 112 37 111 73 110 8 113 54 114 74 115 75 115 55 114 9 113 57 116 76 117 54 118 55 118 77 117 58 116 56 119 76 120 57 121 58 121 77 120 59 119 56 122 34 123 68 124 69 124 35 123 59 122 38 125 60 126 72 127 73 127 61 126 39 125 78 128 60 129 62 130 63 130 61 129 79 128 78 131 62 132 80 133 81 133 63 132 79 131 64 134 8 78 82 135 83 135 9 78 65 134 66 136 48 137 84 138 85 138 49 137 67 136 68 139 32 140 66 141 67 141 33 140 69 139 48 142 50 143 86 144 87 144 51 143 49 142 50 145 52 146 88 147 89 147 53 146 51 145 52 148 70 149 90 150 91 150 71 149 53 148 36 151 72 152 70 153 71 153 73 152 37 151 8 154 74 155 92 156 93 156 75 155 9 154 74 157 54 158 94 159 95 159 55 158 75 157 76 160 94 161 54 162 55 162 95 161 77 160 56 163 96 164 76 165 77 165 97 164 59 163 68 166 96 167 56 168 59 168 97 167 69 166 98 169 72 170 60 171 61 171 73 170 99 169 98 172 60 173 78 174 79 174 61 173 99 172 100 175 78 176 80 177 81 177 79 176 101 175 100 178 80 179 82 180 83 180 81 179 101 178 82 181 8 182 102 183 103 183 9 182 83 181 104 184 66 185 84 186 85 186 67 185 105 184 48 187 86 188 84 189 85 189 87 188 49 187 106 190 68 191 66 192 67 192 69 191 107 190 50 193 88 194 86 195 87 195 89 194 51 193 52 196 90 197 88 198 89 198 91 197 53 196 90 199 70 200 108 201 109 201 71 200 91 199 110 202 70 203 72 204 73 204 71 203 111 202 8 205 92 206 112 207 113 207 93 206 9 205 92 208 74 209 114 210 115 210 75 209 93 208 94 211 114 212 74 213 75 213 115 212 95 211 76 214 116 215 94 216 95 216 117 215 77 214 96 217 116 218 76 219 77 219 117 218 97 217 96 220 68 221 106 222 107 222 69 221 97 220 110 223 72 224 98 225 99 225 73 224 111 223 118 226 98 227 78 228 79 228 99 227 119 226 118 229 78 230 100 231 101 231 79 230 119 229 120 232 100 233 82 234 83 234 101 233 121 232 82 235 102 236 120 237 121 237 103 236 83 235 102 238 8 239 122 240 123 240 9 239 103 238 104 241 84 242 124 243 125 243 85 242 105 241 106 244 66 245 104 246 105 246 67 245 107 244 84 247 86 248 126 249 127 249 87 248 85 247 86 250 88 251 128 252 129 252 89 251 87 250 88 253 90 254 130 255 131 255 91 254 89 253 90 256 108 257 132 258 133 258 109 257 91 256 70 259 110 260 108 261 109 261 111 260 71 259 122 262 8 263 112 264 113 264 9 263 123 262 112 265 92 266 134 267 135 267 93 266 113 265 92 268 114 269 134 270 135 270 115 269 93 268 114 271 94 272 136 273 137 273 95 272 115 271 116 274 136 275 94 276 95 276 137 275 117 274 96 277 138 278 116 279 117 279 139 278 97 277 106 280 138 281 96 282 97 282 139 281 107 280 110 283 98 284 140 285 141 285 99 284 111 283 140 286 98 287 118 288 119 288 99 287 141 286 142 289 118 290 100 291 101 291 119 290 143 289 100 292 120 293 142 294 143 294 121 293 101 292 120 295 102 296 144 297 145 297 103 296 121 295 102 298 122 299 144 300 145 300 123 299 103 298 146 301 104 302 124 303 125 303 105 302 147 301 84 304 126 305 124 306 125 306 127 305 85 304 148 307 106 308 104 309 105 309 107 308 149 307 86 310 128 311 126 312 127 312 129 311 87 310 128 313 88 314 130 315 131 315 89 314 129 313 130 316 90 317 132 318 133 318 91 317 131 316 132 319 108 320 150 321 151 321 109 320 133 319 108 322 110 323 152 324 153 324 111 323 109 322 122 325 112 326 154 327 155 327 113 326 123 325 112 328 134 329 154 330 155 330 135 329 113 328 134 331 114 332 156 333 157 333 115 332 135 331 136 334 156 335 114 336 115 336 157 335 137 334 116 337 158 338 136 339 137 339 159 338 117 337 138 340 158 341 116 342 117 342 159 341 139 340 106 343 148 344 138 345 139 345 149 344 107 343 110 346 140 347 152 348 153 348 141 347 111 346 140 349 118 350 160 351 161 351 119 350 141 349 118 352 142 353 160 354 161 354 143 353 119 352 142 355 120 356 162 357 163 357 121 356 143 355 120 358 144 359 162 360 163 360 145 359 121 358 144 361 122 362 154 363 155 363 123 362 145 361 124 364 164 365 146 366 147 366 165 365 125 364 148 367 104 368 146 369 147 369 105 368 149 367 126 370 166 371 124 372 125 372 167 371 127 370 128 373 168 374 126 375 127 375 169 374 129 373 128 376 130 377 170 378 171 378 131 377 129 376 130 379 132 380 172 381 173 381 133 380 131 379 132 382 150 383 174 384 175 384 151 383 133 382 108 385 152 386 150 387 151 387 153 386 109 385 154 388 134 389 176 390 177 390 135 389 155 388 134 391 156 392 176 393 177 393 157 392 135 391 156 394 136 395 178 396 179 396 137 395 157 394 158 397 178 398 136 399 137 399 179 398 159 397 138 400 180 401 158 402 159 402 181 401 139 400 180 403 138 404 148 405 149 405 139 404 181 403 140 406 182 407 152 408 153 408 183 407 141 406 140 409 160 410 182 411 183 411 161 410 141 409 160 412 142 413 184 414 185 414 143 413 161 412 142 415 162 416 184 417 185 417 163 416 143 415 162 418 144 419 186 420 187 420 145 419 163 418 144 421 154 422 186 423 187 423 155 422 145 421 146 424 164 425 188 426 189 426 165 425 147 424 124 427 166 428 164 429 165 429 167 428 125 427 190 430 148 431 146 432 147 432 149 431 191 430 126 433 168 434 166 435 167 435 169 434 127 433 168 436 128 437 170 438 171 438 129 437 169 436 170 439 130 440 172 441 173 441 131 440 171 439 172 442 132 443 174 444 175 444 133 443 173 442 174 445 150 446 192 447 193 447 151 446 175 445 152 448 194 449 150 450 151 450 195 449 153 448 154 451 176 452 186 453 187 453 177 452 155 451 176 454 156 455 196 456 197 456 157 455 177 454 178 457 196 458 156 459 157 459 197 458 179 457 158 460 198 461 178 462 179 462 199 461 159 460 158 463 180 464 198 465 199 465 181 464 159 463 180 466 148 467 190 468 191 468 149 467 181 466 152 469 182 470 194 471 195 471 183 470 153 469 160 472 200 473 182 474 183 474 201 473 161 472 160 475 184 476 200 477 201 477 185 476 161 475 184 478 162 479 202 480 203 480 163 479 185 478 162 481 186 482 202 483 203 483 187 482 163 481 204 484 205 485 206 486 207 486 208 485 209 484 146 487 188 488 190 489 191 489 189 488 147 487 210 490 204 491 206 492 207 492 209 491 211 490 212 493 204 494 210 495 211 495 209 494 213 493 214 496 204 497 212 498 213 498 209 497 215 496 216 499 204 500 214 501 215 501 209 500 217 499 216 502 174 503 204 504 209 504 175 503 217 502 174 505 192 506 204 507 209 507 193 506 175 505 150 508 194 509 192 510 193 510 195 509 151 508 186 511 176 512 218 513 219 513 177 512 187 511 218 514 176 515 196 516 197 516 177 515 219 514 178 517 220 518 196 519 197 519 221 518 179 517 178 520 198 521 220 522 221 522 199 521 179 520 198 523 180 524 222 525 223 525 181 524 199 523 180 526 190 527 222 528 223 528 191 527 181 526 182 529 224 530 194 531 195 531 225 530 183 529 182 532 200 533 224 534 225 534 201 533 183 532 184 535 226 536 200 537 201 537 227 536 185 535 184 538 202 539 226 540 227 540 203 539 185 538 202 541 186 542 218 543 219 543 187 542 203 541 204 544 228 545 205 546 208 546 229 545 209 544 190 547 188 548 230 549 231 549 189 548 191 547 192 550 232 551 204 552 209 552 233 551 193 550 194 553 232 554 192 555 193 555 233 554 195 553 218 556 196 557 234 558 235 558 197 557 219 556 234 559 196 560 220 561 221 561 197 560 235 559 220 562 198 563 236 564 237 564 199 563 221 562 198 565 222 566 236 567 237 567 223 566 199 565 222 568 190 569 230 570 231 570 191 569 223 568 194 571 224 572 232 573 233 573 225 572 195 571 200 574 238 575 224 576 225 576 239 575 201 574 200 577 226 578 238 579 239 579 227 578 201 577 226 580 202 581 240 582 241 582 203 581 227 580 202 583 218 584 240 585 241 585 219 584 203 583 204 586 242 587 228 588 229 588 243 587 209 586 232 589 244 590 204 591 209 591 245 590 233 589 240 592 218 593 234 594 235 594 219 593 241 592 234 595 220 596 246 597 247 597 221 596 235 595 220 598 236 599 246 600 247 600 237 599 221 598 236 601 222 602 248 603 249 603 223 602 237 601 222 604 230 605 248 606 249 606 231 605 223 604 224 607 244 608 232 609 233 609 245 608 225 607 224 610 238 611 244 612 245 612 239 611 225 610 238 613 226 614 250 615 251 615 227 614 239 613 226 616 240 617 250 618 251 618 241 617 227 616 204 500 252 619 242 620 243 620 253 619 209 500 244 621 254 622 204 623 209 623 255 622 245 621 240 624 234 625 256 626 257 626 235 625 241 624 256 627 234 628 246 629 247 629 235 628 257 627 246 630 236 631 258 632 259 632 237 631 247 630 236 633 248 634 258 635 259 635 249 634 237 633 244 636 238 637 254 638 255 638 239 637 245 636 238 639 250 640 254 641 255 641 251 640 239 639 250 642 240 643 256 644 257 644 241 643 251 642 204 504 260 645 252 646 253 646 261 645 209 504 254 647 262 648 204 649 209 649 263 648 255 647 256 650 246 651 260 652 261 652 247 651 257 650 246 653 258 654 260 655 261 655 259 654 247 653 254 656 250 657 262 658 263 658 251 657 255 656 250 659 256 660 262 661 263 661 257 660 251 659 262 662 260 663 204 664 209 664 261 663 263 662 262 665 256 666 260 667 261 667 257 666 263 665</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID73\">\r\n            <mesh>\r\n                <source id=\"ID74\">\r\n                    <float_array count=\"798\" id=\"ID78\">0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7675102353096008 -0.5612731575965881 0.2852768898010254 0.7675102353096008 -0.5612731575965881 0.2852768898010254 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7529726028442383 -0.5678825974464417 0.2799702882766724 0.7529726028442383 -0.5678825974464417 0.2799702882766724 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7688149809837341 -0.5605922937393189 0.281104177236557 0.7688149809837341 -0.5605922937393189 0.281104177236557 0.7658206224441528 -0.5605922937393189 0.2893087267875671 0.7658206224441528 -0.5605922937393189 0.2893087267875671 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.7809376120567322 -0.5357759594917297 0.2855293154716492 0.7809376120567322 -0.5357759594917297 0.2855293154716492 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.7799424529075623 -0.5360983014106751 0.2898147404193878 0.7799424529075623 -0.5360983014106751 0.2898147404193878 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7807786464691162 -0.5348604321479797 0.2815302610397339 0.7807786464691162 -0.5348604321479797 0.2815302610397339 0.7695367932319641 -0.5586550235748291 0.2774266302585602 0.7695367932319641 -0.5586550235748291 0.2774266302585602 0.7779433131217957 -0.5357759594917297 0.2937338352203369 0.7779433131217957 -0.5357759594917297 0.2937338352203369 0.7640029788017273 -0.5586550235748291 0.2925863564014435 0.7640029788017273 -0.5586550235748291 0.2925863564014435 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.783890426158905 -0.5086091160774231 0.2826657593250275 0.783890426158905 -0.5086091160774231 0.2826657593250275 0.7842149138450623 -0.5086091160774231 0.2867254912853241 0.7842149138450623 -0.5086091160774231 0.2867254912853241 0.7832766175270081 -0.5086091160774231 0.2910321354866028 0.7832766175270081 -0.5086091160774231 0.2910321354866028 0.7493549585342407 -0.5642405152320862 0.2898727059364319 0.7493549585342407 -0.5642405152320862 0.2898727059364319 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7623351216316223 -0.5557551980018616 0.2946110367774963 0.7623351216316223 -0.5557551980018616 0.2946110367774963 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7695651054382324 -0.5557551980018616 0.2748038470745087 0.7695651054382324 -0.5557551980018616 0.2748038470745087 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7823523879051209 -0.5086091160774231 0.27947136759758 0.7823523879051209 -0.5086091160774231 0.27947136759758 0.7794895172119141 -0.5334889888763428 0.2784262001514435 0.7794895172119141 -0.5334889888763428 0.2784262001514435 0.7812198996543884 -0.5086091160774231 0.2949300408363342 0.7812198996543884 -0.5086091160774231 0.2949300408363342 0.7752450704574585 -0.5348604321479797 0.296690046787262 0.7752450704574585 -0.5348604321479797 0.296690046787262 0.7502013444900513 -0.561151921749115 0.2875483632087708 0.7502013444900513 -0.561151921749115 0.2875483632087708 0.7610700726509094 -0.5523343682289124 0.2950736284255981 0.7610700726509094 -0.5523343682289124 0.2950736284255981 0.7565851211547852 -0.5642405152320862 0.2700657248497009 0.7565851211547852 -0.5642405152320862 0.2700657248497009 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7688960433006287 -0.5523343682289124 0.2736347615718842 0.7688960433006287 -0.5523343682289124 0.2736347615718842 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7812067866325378 -0.4821297526359558 0.2790530025959015 0.7812067866325378 -0.4821297526359558 0.2790530025959015 0.7825827598571777 -0.4810132384300232 0.2821890711784363 0.7825827598571777 -0.4810132384300232 0.2821890711784363 0.7827998399734497 -0.4802669882774353 0.286208987236023 0.7827998399734497 -0.4802669882774353 0.286208987236023 0.7818241715431213 -0.4800053238868713 0.290501743555069 0.7818241715431213 -0.4800053238868713 0.290501743555069 0.7514697909355164 -0.5590887665748596 0.2840702533721924 0.7514697909355164 -0.5590887665748596 0.2840702533721924 0.7604013085365295 -0.548913836479187 0.2939048111438751 0.7604013085365295 -0.548913836479187 0.2939048111438751 0.7722594738006592 -0.5334889888763428 0.2982333302497864 0.7722594738006592 -0.5334889888763428 0.2982333302497864 0.755734920501709 -0.561151921749115 0.2723884582519531 0.755734920501709 -0.561151921749115 0.2723884582519531 0.7676315307617188 -0.548913836479187 0.2740978002548218 0.7676315307617188 -0.548913836479187 0.2740978002548218 0.7772659063339233 -0.5318727493286133 0.2766901254653931 0.7772659063339233 -0.5318727493286133 0.2766901254653931 0.7788809537887573 -0.4834471940994263 0.2772795259952545 0.7788809537887573 -0.4834471940994263 0.2772795259952545 0.7798362970352173 -0.5086091160774231 0.2776279151439667 0.7798362970352173 -0.5086091160774231 0.2776279151439667 0.7798051834106445 -0.4802669882774353 0.2944135665893555 0.7798051834106445 -0.4802669882774353 0.2944135665893555 0.7783564925193787 -0.5086091160774231 0.297825813293457 0.7783564925193787 -0.5086091160774231 0.297825813293457 0.7529666423797607 -0.5583648681640625 0.2799681127071381 0.7529666423797607 -0.5583648681640625 0.2799681127071381 0.7604292035102844 -0.546014130115509 0.2912820279598236 0.7604292035102844 -0.546014130115509 0.2912820279598236 0.7694398760795593 -0.5318727493286133 0.2981289625167847 0.7694398760795593 -0.5318727493286133 0.2981289625167847 0.7544642090797424 -0.5590887665748596 0.2758658826351166 0.7544642090797424 -0.5590887665748596 0.2758658826351166 0.7659631371498108 -0.546014130115509 0.2761222422122955 0.7659631371498108 -0.546014130115509 0.2761222422122955 0.774446427822113 -0.530255138874054 0.2765855491161346 0.774446427822113 -0.530255138874054 0.2765855491161346 0.7679250836372376 -0.4592308402061462 0.2732801735401154 0.7679250836372376 -0.4592308402061462 0.2732801735401154 0.7688785791397095 -0.4559683799743652 0.2745532691478729 0.7688785791397095 -0.4559683799743652 0.2745532691478729 0.7690914273262024 -0.4532025456428528 0.2772639095783234 0.7690914273262024 -0.4532025456428528 0.2772639095783234 0.7685301899909973 -0.4513538479804993 0.2810003161430359 0.7685301899909973 -0.4513538479804993 0.2810003161430359 0.7672816514968872 -0.4507051110267639 0.2851933538913727 0.7672816514968872 -0.4507051110267639 0.2851933538913727 0.7611505389213562 -0.5440757274627686 0.2876043915748596 0.7611505389213562 -0.5440757274627686 0.2876043915748596 0.7672161459922791 -0.530255138874054 0.2963924407958984 0.7672161459922791 -0.530255138874054 0.2963924407958984 0.775122344493866 -0.5086091160774231 0.2992783784866333 0.775122344493866 -0.5086091160774231 0.2992783784866333 0.7641456723213196 -0.5440757274627686 0.2793997526168823 0.7641456723213196 -0.5440757274627686 0.2793997526168823 0.7714604139328003 -0.5288839936256409 0.2781288921833038 0.7714604139328003 -0.5288839936256409 0.2781288921833038 0.776724100112915 -0.5086091160774231 0.2774169743061066 0.776724100112915 -0.5086091160774231 0.2774169743061066 0.766375720500946 -0.4624937176704407 0.2736393809318543 0.766375720500946 -0.4624937176704407 0.2736393809318543 0.7759590744972229 -0.4847645163536072 0.2771378755569458 0.7759590744972229 -0.4847645163536072 0.2771378755569458 0.7655348181724548 -0.4513538479804993 0.2892045080661774 0.7655348181724548 -0.4513538479804993 0.2892045080661774 0.7770491242408752 -0.4810132384300232 0.2973486185073853 0.7770491242408752 -0.4810132384300232 0.2973486185073853 0.7624562382698059 -0.5433959364891052 0.2834318280220032 0.7624562382698059 -0.5433959364891052 0.2834318280220032 0.7659268379211426 -0.5288839936256409 0.2932883203029633 0.7659268379211426 -0.5288839936256409 0.2932883203029633 0.7720103859901428 -0.5086091160774231 0.299067348241806 0.7720103859901428 -0.5086091160774231 0.299067348241806 0.7687625288963318 -0.5279688835144043 0.2810851335525513 0.7687625288963318 -0.5279688835144043 0.2810851335525513 0.7734904885292053 -0.5086091160774231 0.2788696885108948 0.7734904885292053 -0.5086091160774231 0.2788696885108948 0.7570374608039856 -0.4502493739128113 0.270230770111084 0.7570374608039856 -0.4502493739128113 0.270230770111084 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7657673954963684 -0.5279688835144043 0.2892895638942719 0.7657673954963684 -0.5279688835144043 0.2892895638942719 0.7694941163063049 -0.5086091160774231 0.2972239553928375 0.7694941163063049 -0.5086091160774231 0.2972239553928375 0.7739768028259277 -0.4821297526359558 0.298860102891922 0.7739768028259277 -0.4821297526359558 0.298860102891922 0.7667633295059204 -0.5276470184326172 0.2850039303302765 0.7667633295059204 -0.5276470184326172 0.2850039303302765 0.7706266045570374 -0.5086091160774231 0.2817656397819519 0.7706266045570374 -0.5086091160774231 0.2817656397819519 0.7728867530822754 -0.4858811497688294 0.2786497473716736 0.7728867530822754 -0.4858811497688294 0.2786497473716736 0.7561874985694885 -0.4533376097679138 0.272553950548172 0.7561874985694885 -0.4533376097679138 0.272553950548172 0.7644664645195007 -0.4652591943740845 0.2755759060382843 0.7644664645195007 -0.4652591943740845 0.2755759060382843 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7635570168495178 -0.4532025456428528 0.2924236953258514 0.7635570168495178 -0.4532025456428528 0.2924236953258514 0.7679563164710999 -0.5086091160774231 0.2940293550491333 0.7679563164710999 -0.5086091160774231 0.2940293550491333 0.7710549831390381 -0.4834471940994263 0.2987184822559357 0.7710549831390381 -0.4834471940994263 0.2987184822559357 0.7685694098472595 -0.5086091160774231 0.285663366317749 0.7685694098472595 -0.5086091160774231 0.285663366317749 0.7701312303543091 -0.4866270422935486 0.2815848290920258 0.7701312303543091 -0.4866270422935486 0.2815848290920258 0.7534245252609253 -0.4466072916984558 0.2801350057125092 0.7534245252609253 -0.4466072916984558 0.2801350057125092 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.767632007598877 -0.5086091160774231 0.2899697721004486 0.767632007598877 -0.5086091160774231 0.2899697721004486 0.768729567527771 -0.4847645163536072 0.2969449162483215 0.768729567527771 -0.4847645163536072 0.2969449162483215 0.7616479992866516 -0.4559683799743652 0.2943599820137024 0.7616479992866516 -0.4559683799743652 0.2943599820137024 0.7681118845939636 -0.4868890047073364 0.285496324300766 0.7681118845939636 -0.4868890047073364 0.285496324300766 0.7624879479408264 -0.4671074748039246 0.2787948548793793 0.7624879479408264 -0.4671074748039246 0.2787948548793793 0.7549169063568115 -0.455400288105011 0.2760307788848877 0.7549169063568115 -0.455400288105011 0.2760307788848877 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7673535346984863 -0.4858811497688294 0.2938092648983002 0.7673535346984863 -0.4858811497688294 0.2938092648983002 0.760098934173584 -0.4592308402061462 0.2947191298007965 0.760098934173584 -0.4592308402061462 0.2947191298007965 0.7671361565589905 -0.4866270422935486 0.2897888720035553 0.7671361565589905 -0.4866270422935486 0.2897888720035553 0.7607418298721314 -0.4677572846412659 0.2828062176704407 0.7607418298721314 -0.4677572846412659 0.2828062176704407 0.7534193992614746 -0.4561249613761902 0.2801329493522644 0.7534193992614746 -0.4561249613761902 0.2801329493522644 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.759145975112915 -0.4624937176704407 0.29344642162323 0.759145975112915 -0.4624937176704407 0.29344642162323 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.759493887424469 -0.4671074748039246 0.2869994938373566 0.759493887424469 -0.4671074748039246 0.2869994938373566 0.7519221901893616 -0.455400288105011 0.2842352688312531 0.7519221901893616 -0.455400288105011 0.2842352688312531 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7589325904846191 -0.4652591943740845 0.2907354831695557 0.7589325904846191 -0.4652591943740845 0.2907354831695557 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7506538033485413 -0.4533376097679138 0.2877134084701538 0.7506538033485413 -0.4533376097679138 0.2877134084701538 0.7498074173927307 -0.4502493739128113 0.2900377213954926 0.7498074173927307 -0.4502493739128113 0.2900377213954926</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"266\" source=\"#ID78\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID75\">\r\n                    <float_array count=\"798\" id=\"ID79\">0.6799178236397709 -0.69057367228955 0.2466166179264536 0.5877019751617741 -0.6735925825448549 0.4481957397516203 0.7591808928247313 -0.5897284098617264 0.2754356087578434 -0.7591808928247313 0.5897284098617264 -0.2754356087578434 -0.5877019751617741 0.6735925825448549 -0.4481957397516203 -0.6799178236397709 0.69057367228955 -0.2466166179264536 -0.9393751266512928 -0.0005868521936232807 -0.3428906925440976 -0.9393751425070286 -0.0005617318017703885 -0.3428906911791024 -0.939376177593132 -0.0006342400068577415 -0.3428877290165553 0.939376177593132 0.0006342400068577415 0.3428877290165553 0.9393751425070286 0.0005617318017703885 0.3428906911791024 0.9393751266512928 0.0005868521936232807 0.3428906925440976 0.8252148226182395 -0.5644944296083407 0.01914511614750935 -0.8252148226182395 0.5644944296083407 -0.01914511614750935 0.6458766624700151 -0.5638591779577424 0.5146903577000577 -0.6458766624700151 0.5638591779577424 -0.5146903577000577 -0.9393782460668849 -0.0005463059712546547 -0.3428822135458314 0.9393782460668849 0.0005463059712546547 0.3428822135458314 -0.9393725144611836 -0.0005830620076450874 -0.3428978552186772 0.9393725144611836 0.0005830620076450874 0.3428978552186772 0.9554902810441462 -0.2903868445625364 0.05209417755557585 -0.9554902810441462 0.2903868445625364 -0.05209417755557585 0.7434540010848137 -0.6677509343219258 0.03721341133485457 -0.7434540010848137 0.6677509343219258 -0.03721341133485457 0.8952730943270777 -0.3038198768900282 0.325852066098326 -0.8952730943270777 0.3038198768900282 -0.325852066098326 0.4478529470750022 -0.6063564480372432 0.6570841618239579 -0.4478529470750022 0.6063564480372432 -0.6570841618239579 -0.9393820145822192 -0.000581914026689231 -0.342871830361605 0.9393820145822192 0.000581914026689231 0.342871830361605 -0.9393664157576216 -0.0005364266369218085 -0.3429146383477124 0.9393664157576216 0.0005364266369218085 0.3429146383477124 0.9327407545336943 -0.2413581365757324 -0.2678449826683425 -0.9327407545336943 0.2413581365757324 0.2678449826683425 0.8341508868389282 -0.476763425058057 -0.2772885401756445 -0.8341508868389282 0.476763425058057 0.2772885401756445 0.7662683213594329 -0.287461068881913 0.5746294402119204 -0.7662683213594329 0.287461068881913 -0.5746294402119204 0.4613755936650907 -0.476538718404578 0.7483604822754253 -0.4613755936650907 0.476538718404578 -0.7483604822754253 -0.9393736916148986 -0.0007151470546898659 -0.3428943803366973 0.9393736916148986 0.0007151470546898659 0.3428943803366973 0.2088634488026968 -0.4500435417004254 0.8682377959568338 -0.2088634488026968 0.4500435417004254 -0.8682377959568338 -0.9393729573431053 -0.0006630127486160339 -0.3428964966670899 0.9393729573431053 0.0006630127486160339 0.3428964966670899 0.7749461224564865 -0.5980366748323877 -0.2044765092744824 -0.7749461224564865 0.5980366748323877 0.2044765092744824 0.9665019143844036 -0.03194751190439447 -0.2546633188631643 -0.9665019143844036 0.03194751190439447 0.2546633188631643 0.9968801234772516 -0.03631507232101158 0.07008020361199754 -0.9968801234772516 0.03631507232101158 -0.07008020361199754 0.9387135282855428 -0.03695080590496688 0.3427120507899905 -0.9387135282855428 0.03695080590496688 -0.3427120507899905 -0.943038533385406 0.196902834547097 0.2681559216158034 0.943038533385406 -0.196902834547097 -0.2681559216158034 -0.2067253711329811 -0.1242152919064481 0.9704819329521427 0.1507433781956068 -0.2948336904584761 0.9435833449679005 -0.1507433781956068 0.2948336904584761 -0.9435833449679005 0.2067253711329811 0.1242152919064481 -0.9704819329521427 -0.9393903858135525 -0.0007073923093318052 -0.3428486585028234 0.9393903858135525 0.0007073923093318052 0.3428486585028234 0.7333521400211251 -0.4462197364600544 -0.51291576844542 0.7259902234974308 -0.2943867505606677 -0.621509964908433 -0.7259902234974308 0.2943867505606677 0.621509964908433 -0.7333521400211251 0.4462197364600544 0.51291576844542 0.7761996123257705 -0.02081418239622952 -0.6301435801755819 -0.7761996123257705 0.02081418239622952 0.6301435801755819 0.762265959676282 -0.1430140804791905 -0.6312666469119754 -0.762265959676282 0.1430140804791905 0.6312666469119754 0.8075999694332556 -0.03496358636113148 0.5886933301814896 -0.8075999694332556 0.03496358636113148 -0.5886933301814896 0.5434396503299688 -0.2363915090035321 0.8054765055048313 -0.5434396503299688 0.2363915090035321 -0.8054765055048313 -0.9517535263931729 0.3063699007265154 -0.01739853232272874 0.9517535263931729 -0.3063699007265154 0.01739853232272874 -0.3085419422614615 -0.006578297159407321 0.9511879918670166 0.3085419422614615 0.006578297159407321 -0.9511879918670166 -0.5562186803025871 0.1930351131557664 -0.8083057743028863 0.5562186803025871 -0.1930351131557664 0.8083057743028863 0.4791735318885444 -0.1284248272304346 -0.8682740293756868 0.3877633052703881 -0.007981794208910882 -0.9217244219651503 -0.3877633052703881 0.007981794208910882 0.9217244219651503 -0.4791735318885444 0.1284248272304346 0.8682740293756868 0.7688467764772459 0.1267459813893369 -0.6267456346096091 -0.7688467764772459 -0.1267459813893369 0.6267456346096091 0.9411963276024344 0.212650316218457 -0.2625439314093566 -0.9411963276024344 -0.212650316218457 0.2625439314093566 0.9649683650122823 0.2559650058373194 0.05760182559800928 -0.9649683650122823 -0.2559650058373194 -0.05760182559800928 0.9045559699959583 0.2690886836502407 0.3307110180747711 -0.9045559699959583 -0.2690886836502407 -0.3307110180747711 -0.9251274501786493 0.3236103327476385 -0.1985335071591531 0.9251274501786493 -0.3236103327476385 0.1985335071591531 -0.7287461481921549 0.2665806127222086 0.6307644793548138 0.7287461481921549 -0.2665806127222086 -0.6307644793548138 0.1773436221600157 -0.1383801625069031 0.9743716797525103 -0.1773436221600157 0.1383801625069031 -0.9743716797525103 -0.7485752064243595 0.2979840073279869 -0.5923180663321707 0.7485752064243595 -0.2979840073279869 0.5923180663321707 -0.1511142449962449 0.2634252964934358 -0.9527704855454751 0.1511142449962449 -0.2634252964934358 0.9527704855454751 0.3701288015582322 -0.002611640970967592 -0.9289767755915674 -0.3701288015582322 0.002611640970967592 0.9289767755915674 0.3765260039300674 0.003050065597743506 -0.9264010284236004 -0.3765260039300674 -0.003050065597743506 0.9264010284236004 0.355911543415152 -0.001054782258333201 -0.9345190531488546 -0.355911543415152 0.001054782258333201 0.9345190531488546 0.7743024048645378 0.2570963877903078 0.5782363125973403 -0.7743024048645378 -0.2570963877903078 -0.5782363125973403 0.5752066770048471 -0.02965150030983746 0.8174705299020983 -0.5752066770048471 0.02965150030983746 -0.8174705299020983 -0.8901001040455957 0.3213871804143389 -0.3231595349720336 0.8901001040455957 -0.3213871804143389 0.3231595349720336 -0.8939305696985269 0.3901322278047513 0.2206467343664276 0.8939305696985269 -0.3901322278047513 -0.2206467343664276 -0.3189771771136281 -0.002228556801782159 0.9477597765336964 0.3189771771136281 0.002228556801782159 -0.9477597765336964 -0.8401802938848788 0.3172011463304369 -0.4398641910114704 0.8401802938848788 -0.3172011463304369 0.4398641910114704 -0.5502837979551655 0.3842861951266458 -0.7412906730447405 0.5502837979551655 -0.3842861951266458 0.7412906730447405 -0.1459412265344615 0.1197706494857031 -0.9820163694762882 0.1459412265344615 -0.1197706494857031 0.9820163694762882 0.37059784119191 0.007332092256201738 -0.9287644914223642 -0.37059784119191 -0.007332092256201738 0.9287644914223642 0.701316740430611 0.2955786602452652 -0.6486818058180739 -0.701316740430611 -0.2955786602452652 0.6486818058180739 0.8176991911943827 0.4874539738108439 -0.3061970870796612 -0.8176991911943827 -0.4874539738108439 0.3061970870796612 0.8111534106397504 0.5848325082018011 0.001040075906144079 -0.8111534106397504 -0.5848325082018011 -0.001040075906144079 0.7403772452589184 0.6147858898666835 0.2718084699262435 -0.7403772452589184 -0.6147858898666835 -0.2718084699262435 -0.9049687909099836 0.4175173690044793 -0.08191907017599744 0.9049687909099836 -0.4175173690044793 0.08191907017599744 -0.7492797496892516 0.1133132693665334 0.6524875168852504 0.7492797496892516 -0.1133132693665334 -0.6524875168852504 0.1877929087199124 -0.0187485058154597 0.9820296925063937 -0.1877929087199124 0.0187485058154597 -0.9820296925063937 -0.7513841927851167 0.4126586489627937 -0.5149122588061585 0.7513841927851167 -0.4126586489627937 0.5149122588061585 -0.5512846542936887 0.1792841408636472 -0.8148266237519931 0.5512846542936887 -0.1792841408636472 0.8148266237519931 -0.1675135795287171 0.02034497022041111 -0.9856598210641473 0.1675135795287171 -0.02034497022041111 0.9856598210641473 -0.1141953612150234 -0.2671837295399576 -0.956855409216089 0.1141953612150234 0.2671837295399576 0.956855409216089 -0.1373079995524726 -0.1084823874345631 -0.9845699999875051 0.1373079995524726 0.1084823874345631 0.9845699999875051 0.6173715680651242 0.5870686058801959 0.5236437710263469 -0.6173715680651242 -0.5870686058801959 -0.5236437710263469 0.5497245629401343 0.2145754652830064 0.8073167126963617 -0.5497245629401343 -0.2145754652830064 -0.8073167126963617 -0.854643214054378 0.4178076248024445 -0.3082560061503141 0.854643214054378 -0.4178076248024445 0.3082560061503141 -0.9493035167847738 0.1689353223568427 0.265110712496214 0.9493035167847738 -0.1689353223568427 -0.265110712496214 -0.3297320128049064 -0.0009892053169032501 0.9440740549366167 0.3297320128049064 0.0009892053169032501 -0.9440740549366167 -0.7912297299100904 0.1931499717911882 -0.5802142732676165 0.7912297299100904 -0.1931499717911882 0.5802142732676165 -0.5669909487172499 0.0336906701803891 -0.8230347518881016 0.5669909487172499 -0.0336906701803891 0.8230347518881016 -0.5397868028907887 -0.2010953174264371 -0.817429434712319 0.5397868028907887 0.2010953174264371 0.817429434712319 0.4490318189794837 0.1182232051121184 -0.885660035971475 -0.4490318189794837 -0.1182232051121184 0.885660035971475 0.6857865836606216 0.4576104799293926 -0.565941172145908 -0.6857865836606216 -0.4576104799293926 0.565941172145908 0.7315345787125549 0.633264681644932 -0.2526519406792432 -0.7315345787125549 -0.633264681644932 0.2526519406792432 0.7017768175496579 0.7123551285934313 0.007711622171104857 -0.7017768175496579 -0.7123551285934313 -0.007711622171104857 0.6385570036227747 0.7328260708349735 0.2349700045301061 -0.6385570036227747 -0.7328260708349735 -0.2349700045301061 -0.9805264826708569 0.1855593302681447 -0.06430825554744492 0.9805264826708569 -0.1855593302681447 0.06430825554744492 -0.7630835367065815 0.01780607266966092 0.6460545331343619 0.7630835367065815 -0.01780607266966092 -0.6460545331343619 0.184362495251173 0.12859871721751 0.9744089697220424 -0.184362495251173 -0.12859871721751 -0.9744089697220424 -0.9228079037311781 0.1909135490947522 -0.3346305269746243 0.9228079037311781 -0.1909135490947522 0.3346305269746243 -0.8053162660872498 0.03890319056273035 -0.5915676236402138 0.8053162660872498 -0.03890319056273035 0.5915676236402138 -0.5421984100238716 -0.1706823745167251 -0.8227322840371089 0.5421984100238716 0.1706823745167251 0.8227322840371089 -0.7308172781272795 -0.3129338373834094 -0.60661233041468 0.7308172781272795 0.3129338373834094 0.60661233041468 -0.4946782400134846 -0.4107007204322739 -0.7659101494911609 0.4946782400134846 0.4107007204322739 0.7659101494911609 0.5477687006081097 0.705830777747373 0.4491685249643411 -0.5477687006081097 -0.705830777747373 -0.4491685249643411 0.4230660660035778 0.4905603113941648 0.7618173565108086 -0.4230660660035778 -0.4905603113941648 -0.7618173565108086 -0.9639875372890381 0.03017184867160515 0.2642303682379318 0.9639875372890381 -0.03017184867160515 -0.2642303682379318 -0.3068048893822191 0.003413062047218768 0.951766311054676 0.3068048893822191 -0.003413062047218768 -0.951766311054676 -0.9386491960233321 0.03928995933307447 -0.3426280576665571 0.9386491960233321 -0.03928995933307447 0.3426280576665571 -0.7845604671848272 -0.1951769569427006 -0.5885327763254251 0.7845604671848272 0.1951769569427006 0.5885327763254251 -0.9393739826382334 0.0006643069749497271 -0.3428936853291808 0.9393739826382334 -0.0006643069749497271 0.3428936853291808 -0.9393627354388413 0.0006410171626454632 -0.3429245403377464 0.9393627354388413 -0.0006410171626454632 0.3429245403377464 -0.9393707871345157 0.0006503156483142318 -0.3429024662609445 0.9393707871345157 -0.0006503156483142318 0.3429024662609445 -0.9393858151819967 0.0007508352660037245 -0.3428610891910293 0.9393858151819967 -0.0007508352660037245 0.3428610891910293 -0.9393749440430065 0.0007494343761093713 -0.3428908760120547 0.9393749440430065 -0.0007494343761093713 0.3428908760120547 -0.9393706349601151 0.0007184916840570121 -0.3429027470644266 0.9393706349601151 -0.0007184916840570121 0.3429027470644266 -0.9393774967244869 0.0007332103915556257 -0.3428839177479142 0.9393774967244869 -0.0007332103915556257 0.3428839177479142 -0.9971242869243636 0.03652602847978859 -0.0664003438927319 0.9971242869243636 -0.03652602847978859 0.0664003438927319 -0.7373166601176144 -0.1107468138559625 0.6664077475043031 0.7373166601176144 0.1107468138559625 -0.6664077475043031 0.117200890801949 0.2980435715410924 0.9473299217581271 -0.117200890801949 -0.2980435715410924 -0.9473299217581271 -0.9195739989367627 -0.2021364701998765 -0.3369339815076314 0.9195739989367627 0.2021364701998765 0.3369339815076314 -0.710960969287894 -0.4576456895764533 -0.5339428086989381 0.710960969287894 0.4576456895764533 0.5339428086989381 -0.8327848895967537 -0.3265070939497657 -0.4470597781726753 0.8327848895967537 0.3265070939497657 0.4470597781726753 -0.9393686625186729 0.0007466450868659529 -0.3429080903084584 0.9393686625186729 -0.0007466450868659529 0.3429080903084584 0.4125985842833128 0.6241671444098168 0.663458954334555 -0.4125985842833128 -0.6241671444098168 -0.663458954334555 -0.9437441686078724 -0.1746371064618844 0.2808003298880828 0.9437441686078724 0.1746371064618844 -0.2808003298880828 -0.3076367097576911 0.009034419447857814 0.9514609997654672 0.3076367097576911 -0.009034419447857814 -0.9514609997654672 -0.9785309184006823 -0.1982016884260379 -0.05650957829417122 0.9785309184006823 0.1982016884260379 0.05650957829417122 -0.8292727824263236 -0.4679301182566809 -0.3055291422355518 0.8292727824263236 0.4679301182566809 0.3055291422355518 -0.8889076873737911 -0.3206636371950923 -0.3271359887089659 0.8889076873737911 0.3206636371950923 0.3271359887089659 -0.9393765001578003 0.0006796477173609782 -0.3428867583186357 -0.9393684132680966 0.0007475143312173088 -0.3429087712154695 0.9393684132680966 -0.0007475143312173088 0.3429087712154695 0.9393765001578003 -0.0006796477173609782 0.3428867583186357 -0.6972138643777165 -0.2684413314761774 0.664704504930415 0.6972138643777165 0.2684413314761774 -0.664704504930415 0.1853846871193252 0.454094635493599 0.8714531426287965 -0.1853846871193252 -0.454094635493599 -0.8714531426287965 -0.8860715267852453 -0.4605499260129334 -0.05264043189360979 0.8860715267852453 0.4605499260129334 0.05264043189360979 -0.9261804971935849 -0.3171068437321693 -0.2040415062590594 0.9261804971935849 0.3171068437321693 0.2040415062590594 -0.9393832217065231 0.0006577869272402029 -0.3428683859626487 0.9393832217065231 -0.0006577869272402029 0.3428683859626487 -0.8692191199475498 -0.4145367328698739 0.2694761930471368 0.8692191199475498 0.4145367328698739 -0.2694761930471368 -0.2112153012424403 0.1239840947019398 0.9695442438496582 0.2112153012424403 -0.1239840947019398 -0.9695442438496582 -0.9532471886245345 -0.3012622693908256 -0.02368211183384631 0.9532471886245345 0.3012622693908256 0.02368211183384631 -0.9435863980596823 -0.1957734034073722 0.2670533353378111 0.9435863980596823 0.1957734034073722 -0.2670533353378111</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"266\" source=\"#ID79\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID77\">\r\n                    <float_array count=\"1344\" id=\"ID80\">1.619940663751411 -0.5362174691976966 1.613846557947723 -0.5017271521305829 1.836114619655016 -0.4916143526109842 5.771260477422451 0.0734402400975003 5.778516163528459 0.03908932103959196 5.683327532901288 0.0390735980818707 1.013713383320064 1.348938574794434 1.230728295956212 1.3909385420679 1.244657916080953 1.357901235720828 1.851542131741161 -0.6933212301949294 1.629281880835274 -0.7035397143174436 1.843711701956062 -0.6590665075198411 5.750992150815773 0.1020487929024041 5.771629536923543 0.07292988606899389 5.683697328424739 0.03856207864578082 5.778516333721045 0.0384503001934367 5.771278556264129 0.004093121027264076 5.683327703094029 0.03843457665509981 -1.36129387662527 0.7146292361098703 -1.373412434552412 0.7481054592727344 -1.085245988633699 0.7501305827269096 1.042264173133666 1.105680513481854 1.026680915775881 1.138277373706746 1.25762345915204 1.147271701316672 -0.9533113756527406 -0.9874977370150897 -0.9559962434775798 -0.9527577037205379 -0.6732718861217429 -0.9483976736708046 2.273858580643569 -2.276982527023954 2.2768013411733 -2.243724166483653 2.486285836560912 -2.226913973983119 5.719229934352534 0.1219010763660958 5.750119181521162 0.1024442784082792 5.68282113769674 0.03895967738315521 5.771592897026315 0.004656349823180232 5.750971845768776 -0.02447029179827442 5.683641419902921 0.03899681652744076 -1.860588190318298 3.154229687137683 -1.584460234643399 3.189343581926385 -1.576818068449811 3.157610702835063 -1.375882141952869 0.970829533683324 -1.095215580807107 1.007040408900814 -1.087715573356463 0.9728438253005183 0.299672488534154 3.464290623319485 0.5149517431601536 3.506137428848698 0.5345265100463381 3.476738120539312 -0.6674394257889194 -1.16710067635655 -0.9501623321362684 -1.17151854966625 -0.6747949134391407 -1.132884079746303 2.365664167113472 -2.760604537145424 2.57264895253524 -2.709699814011214 2.575020887356716 -2.742836544082699 5.684019527455241 0.1286430516699855 5.720449573903224 0.1218186530629061 5.684046663755639 0.03887565512981509 3.524288174154021 -4.153586329718942 3.532725286339523 -4.123172807589194 3.724314143050513 -4.087676906240269 5.750051068639311 -0.02526298293343521 5.719170715305216 -0.04472634600013511 5.682724014993886 0.03820633920893721 0.3769189552788338 2.847514955246447 0.3529358568563651 2.875002380782882 0.5878019828602177 2.887307729561664 -4.416007428413155 2.642239149393477 -4.424919397124604 2.673766394861575 -4.151657435624867 2.651191048843345 -1.827583867839416 2.501154979313117 -1.848194911464509 2.530112679597738 -1.564424291873586 2.533467744031272 -4.302746967210638 0.7640969585229374 -4.307230387189139 0.798619081474214 -4.029121585587762 0.7737329990590853 -4.191219685300024 -1.038349402467703 -4.190886611113217 -1.00364798615899 -3.914384642568414 -1.027570042644774 -0.4828936110712395 -2.827271504267202 -0.4766757241225178 -2.794444705642271 -0.2089133383215913 -2.782952236830445 5.685034350648311 0.1288511212866728 5.685066791064555 0.03908372583573953 5.648615988162037 0.1220102507647917 9.003925651227013 -1.582225864756775 8.988558356441066 -1.555360862926255 9.071398748130621 -1.42608384892452 3.928184648118962 -4.583338050699777 4.116833436486531 -4.511407321671815 4.117925898085868 -4.542155959012292 5.685319396431342 0.03944268274648118 5.721778563210672 -0.04348661136288807 5.685353146744804 -0.05032711075721768 -0.5611049140248847 4.911213825145168 -0.591503150633188 4.93114132602554 -0.3579215445064632 4.951825716237154 -0.7436788908035641 5.625439958852236 -0.5348362375169496 5.671412143014889 -0.5102955062754649 5.647465530726081 -4.301157819088672 4.797794894030605 -4.563957141887809 4.815755131679201 -4.299662100001466 4.825660364575621 -4.13972959611697 2.738187058951259 -4.412988596937202 2.760784571725561 -4.139352146361913 2.77022409267287 -2.54932334401649 5.358571036064803 -2.287104079908336 5.395311154017087 -2.278751543403887 5.367520261208195 -4.024892946958188 0.8033939850798529 -4.30300512909942 0.8282566773702877 -4.026111142228624 0.8380544365145123 -3.919065677488451 -1.057819433587963 -4.195559897560815 -1.033842018004807 -3.921993983162364 -1.023225768234507 -0.4185409081226615 -3.385515222052097 -0.1581648865923863 -3.341398190278865 -0.1508391842109891 -3.373179164807823 5.647657503310684 0.1215527002061922 5.684103679856141 0.03862491692143853 5.616777510095222 0.1020874951803267 2.589733919600477 7.003077785279044 2.554705917251536 6.992672442845839 2.401366746613284 7.058921181604996 9.393827081815365 0.2391323439353595 9.40266179659629 0.3973351886024577 9.432684295061447 0.3806420697550928 0.5025310397084046 -4.988877140356379 0.5144515645830259 -4.959580721650704 0.7579586323948353 -4.929498172098796 5.683669481526682 0.03910621148369183 5.683694654134307 -0.05066358376212161 5.647271910136958 -0.04383681065607089 -2.561959380242889 6.944335344099695 -2.596993967154515 6.954742003856614 -2.373592417839188 7.000190505670715 -2.702137029903522 7.132034911443729 -2.923756901269518 7.081475652123408 -2.732270563775011 7.148603879586429 -2.467435100021785 4.592509301004865 -2.494649281086138 4.614595820596708 -2.224049902225317 4.623013222445562 -5.36164484362815 4.586123819740367 -5.362192908928294 4.614010788500421 -5.096611154048744 4.582471502577178 -4.56688003112652 4.689727902756597 -4.57930200711115 4.716561020899873 -4.316484865191646 4.698762874224935 -5.440969886436216 2.692233501350221 -5.441119011272154 2.724271696265192 -5.164701718585753 2.688471620540477 -5.500788962026832 0.9402364799944278 -5.500283964943947 0.9749079010736622 -5.21701686762737 0.9360782703663532 -5.550290642101149 -0.7277531729571569 -5.549047328610682 -0.693096692605817 -5.26389781890407 -0.7324689153635181 -4.036256128223102 -2.954209003928445 -4.031561564195668 -2.922121583880448 -3.762855291998268 -2.941225105044576 5.616582470712541 0.1019192748789323 5.683907920827861 0.03845622416289126 5.595959486822548 0.07279163191781758 0.9485481630149456 4.719783956197679 0.9177410871016201 4.700247380171296 0.7602327978503798 4.75367462515718 3.072706013482189 7.028682182293315 2.892949862118324 7.084343539764074 2.923456550359094 7.100478524638944 8.667863687869488 -2.549622785560057 8.647926724476196 -2.525323072178259 8.715137888319841 -2.359345478300862 0.9112050698282426 -5.608788139435831 1.143556302597768 -5.544144004815419 1.153142210698788 -5.571685733466637 5.684599104662434 0.03904258699742706 5.64820599884873 -0.04390164775393446 5.617313552627433 -0.0244502760703929 -8.580844810615245 -2.52905113808391 -8.591414311221001 -2.557307821283608 -8.656712686176773 -2.389292430150153 -9.43662006136109 0.4074293301469209 -9.457663243961537 0.2325184534252773 -9.466623837960949 0.3907209150934053 -3.699148926196413 6.645872898822612 -3.731051530223564 6.660247001561825 -3.481143517260459 6.683439111398497 -3.64004296827223 6.855839769674712 -3.88949658934957 6.829795703199483 -3.65138347528706 6.87980995602046 -4.994125480006238 6.160863198340516 -5.006778514780404 6.137674035888735 -5.259108604376683 6.166333546234884 -5.126363043889109 4.469682957820198 -5.392010603201445 4.500877403808089 -5.11575059352798 4.496761427074305 -4.628176790071787 6.415622447031654 -4.876761810265183 6.426236510537431 -4.626726637297842 6.440133143373526 -5.185703839608864 2.590417465035719 -5.462130097249499 2.626174678216572 -5.178355964517593 2.622103462375783 -5.224788700592726 0.9007578834621121 -5.50804485453766 0.9396368862139409 -5.22164086321596 0.9353614403237647 -5.540320307336977 -0.6583556220892282 -5.256558835524158 -0.6629335021782893 -5.255143829357484 -0.6976067833444801 -3.777112743499354 -3.023051129941048 -4.04579065902626 -3.003702364183223 -3.781672648037275 -2.99121622453559 5.596219326529494 0.0732574920260865 5.684168278331471 0.03892290506316366 5.588990967175316 0.03890468605894603 0.4998097920681904 2.453886604604937 0.4756079876757702 2.426516097881019 0.3171209089754962 2.483268165560494 1.267798329451585 5.383283569880579 1.423771492851449 5.327138408258841 1.242077378110208 5.360117080156955 3.716323320198441 6.707602605352751 3.684422999876136 6.693231963591493 3.498317961081459 6.745168025005574 9.344200343447417 1.16030958054039 9.26796239366251 1.325311722897352 9.299679747214773 1.330948062172947 -3.638589467194065 -5.144094677951412 -3.631313215788357 -5.116118827494002 -3.375292523768128 -5.123506085704157 5.684333159636095 0.03916320953088037 5.617046629634652 -0.02432901216832 5.596405786960629 0.004791846405160305 -1.979998524869254 -4.292231232359522 -1.966019939634636 -4.321352069247738 -2.156718727576579 -4.245419612231467 -3.356419095637832 -4.784552375798672 -3.177423250337188 -4.876439142279571 -3.354261724503482 -4.815266301684429 -7.561216541310131 -4.115292821471752 -7.573151951854512 -4.142644503106019 -7.633207647570638 -3.96834156804957 -9.293052612876728 1.341556749601224 -9.401161974604914 1.182243650014989 -9.32477316452411 1.347202829535455 -4.869964308023862 6.377934111765112 -4.8848413574723 6.400675942944742 -4.636245593820659 6.390218752929163 -6.07286041884511 5.470690714683427 -6.332373990554641 5.525748821587173 -6.324262199234997 5.550163840109545 -4.982097524888515 6.172184478721647 -5.233853154708968 6.176821155594962 -5.234332882127718 6.201355482769962 -7.247121350747163 4.027842168054396 -7.241468022229128 4.055827198921337 -6.958920755375172 3.987688333365518 -7.64215543430428 2.706222353546021 -7.636284749546447 2.738098460390365 -7.333114764115316 2.667168061082732 -7.904473707186456 1.593705962947574 -7.897600379347402 1.627974058318311 -7.582171699315598 1.552126328674518 -8.129314786199577 0.6211338347343134 -8.121211181959145 0.6552342303022353 -7.803191481485429 0.574859198644154 -5.603895166475303 -2.464050242442858 -5.601954388676592 -2.432050278125148 -5.320166773080404 -2.469757582269813 5.684168133723978 0.03939144153358901 5.596240432571903 0.005020598424682573 5.58899082256767 0.0393732230226368 0.2609407075899523 0.7662683350253778 0.2464178553673385 0.7333756776812409 0.08244092777695111 0.7946065141369463 0.6692709134033237 3.073392454663266 0.8275744370277732 3.016324231663723 0.6489799187466167 3.044290578172518 2.914087841273369 4.373778203064759 2.886381843409347 4.352074408209947 2.715611208776685 4.394363588837614 4.112391869781885 6.752711646038292 3.916918130189838 6.78670937210445 3.929066245460942 6.81044191996446 8.597573059976908 3.1134257125061 8.569003321645953 3.101210943013873 8.400959997930153 3.23573385271581 -3.645573854009589 -5.205905116017523 -3.396171407572772 -5.186190643465025 -3.389567453954982 -5.21359278206677 -0.6237742695409254 -2.262293632617847 -0.6162776662729164 -2.29510980438105 -0.8008728259144898 -2.228944788320345 -1.324403197915005 -2.887697376925141 -1.142707894193754 -2.958656093541742 -1.322884421832762 -2.920867847297965 1.44619367991595 -4.643821647288538 1.46463209016117 -4.670947905366278 1.268428130761601 -4.616933790719322 -0.1346704162189716 -5.69497690456166 0.05098800274990267 -5.768526732673512 -0.1407112346029149 -5.723136177364614 -8.30779216894544 3.394367136317387 -8.48326313202746 3.292850927761829 -8.511445552161902 3.305619598484514 -7.962904352894063 3.90877979757036 -8.174643574304826 3.83263813770047 -7.976468699194655 3.930877081942786 5.244229109527849 5.959529036035123 5.217118252744867 5.978516796625582 5.249348931055446 6.170935451051902 -6.213938937078119 5.334279439823904 -6.243474750498419 5.317684818608774 -6.496968739352367 5.392932828999133 -3.053093782863408 6.909506753450412 -3.07222231678322 6.889245278357064 -3.296820632536994 6.95933983652242 -7.08483066240791 3.732139032860339 -7.368235455741166 3.798037197539121 -7.059931435450571 3.755532283334331 -7.405682702620627 2.478921781926116 -7.708984472013555 2.549502668052206 -7.386582836601299 2.508403793861222 -7.606157635594927 1.49141616921262 -7.921497907093262 1.567491054517074 -7.594546020387012 1.524988479135021 -8.096383167409147 0.7057872019862346 -7.774834056208714 0.6607276196604602 -7.778112136670967 0.6260301919090223 -5.572052791773422 -2.344558996903286 -5.295821959913587 -2.34974542234395 -5.290132020227484 -2.381645242672343 -0.04493796829425523 -0.6804333687833346 -0.04812183143536819 -0.7151659775523823 -0.2216357719088419 -0.6511069129760208 0.2146031608462551 1.019503007775851 0.378776636687172 0.9585989727452969 0.2016363736440807 0.9862242392562028 2.851193736355579 2.121199178873979 2.830530186218446 2.092259984246353 2.671287314240473 2.136986624537561 3.210433857256208 5.217882736047205 3.380004084656394 5.172703069927436 3.200391430161433 5.190440114097691 4.874548435766551 6.429839837451818 4.8596573276466 6.407094835190613 4.640829891298521 6.442130835704692 8.140814775315286 3.78974305685948 7.942648003681906 3.887992661778128 7.956213016474014 3.910087667730711 -5.73064914030279 -4.258906631492967 -5.457350933574708 -4.295846322779151 -5.733416338800293 -4.286711804356949 -0.1979483730046061 -0.9529180326137299 -0.3759270801434889 -0.9226072555480928 -0.3709597723457686 -0.8880232614150131 2.471740617996483 -2.39641028024239 2.483667763629212 -2.428248508037898 2.304631391555998 -2.380038236975361 1.706465342929101 -3.398810757327853 1.882755430859778 -3.45292282266539 1.703883154092827 -3.43104364641585 3.663826807537205 -5.058099271887226 3.867017257693361 -5.071442611882878 3.875328351798353 -5.099241550009557 3.546949641461736 -5.204786830846116 3.757786403330053 -5.247989096006686 3.540891660310312 -5.232263500799691 -3.719983169175907 6.709259388348319 -3.955041191334191 6.741412177170066 -3.950707790311418 6.76571302493091 3.207237620922375 6.760309367766829 3.205697714796032 6.884373949705359 3.237968071284741 6.87129973348397 2.71836963588698 6.955938591004199 2.643738667999106 7.139481731582862 2.67439868026482 7.146913204001043 -6.673875480347463 4.929980155275759 -6.827551760709345 4.985726092375737 -6.799759036566416 5.004089692531792 -8.041638509701523 3.462054168216795 -8.019730434175074 3.487231284284867 -7.867897563958934 3.421921478705819 -8.465434558910218 2.594488712837228 -8.447798478652601 2.62452979293724 -8.280260285826683 2.556644135527951 -8.489853494364654 2.015456063645019 -8.681731702440303 2.054683786781513 -8.668209328905455 2.087810513189702 -8.615883842455308 1.675419869276102 -8.809070055157438 1.71822637717244 -8.799456048663686 1.752187564289123 -8.383413956562865 -0.208860780062662 -8.074128844644719 -0.2957553748595546 -8.393006850053908 -0.2401766799348658 2.910415331761248 0.5002001580095155 2.90001779392691 0.4663678523011883 2.742913490552973 0.5138640038345921 3.061575968768659 2.979150420011122 3.220724728902601 2.934216961777545 3.053178380804451 2.947538842408506 4.611258982889346 4.752849140734649 4.598727642118561 4.72604749443345 4.393635926502052 4.760028617231185 4.890639490138161 6.416107688973201 4.67327925239847 6.427166271375205 4.671952480520878 6.451682150945595 3.558310174515268 6.858448376779172 3.294490571738939 6.834771662509112 3.552510865243352 6.88255749581085 -5.660762004745068 -4.187828860526787 -5.395863931408391 -4.195431560943416 -5.387067279186301 -4.222904746339228 2.845925978076525 -0.8490627157231938 2.847239824624465 -0.8838514188327487 2.682807024405622 -0.8354986339624942 2.667455759507103 -1.251624583802213 2.500120987715268 -1.236746312810481 2.503562196626869 -1.202151807089803 4.246404101003895 -2.878698216903488 4.252006989534803 -2.910692879271482 4.052017385987604 -2.871333267858569 3.999075742993286 -2.998898309632048 4.198842363777092 -3.038952548225522 3.995209126676578 -3.030793600690773 5.224559176740601 -4.471932540129242 5.451866419099465 -4.467714518620189 5.45342011706218 -4.495574607842248 5.276578896826958 -4.346573707344106 5.285998818079652 -4.319227069055942 5.515077591108759 -4.341525387462998 8.76992928250457 0.7931378170681543 8.781246852195157 0.822964758607844 8.91750916719236 0.8369004254560353 5.454819931525203 5.774979439755891 5.438892046984051 5.801636547383986 5.508081672766806 5.901339801016119 8.307666585764583 -1.123804771503647 8.318244655158576 -1.094450092419963 8.543170996483735 -1.070773087765305 -6.99445915595618 4.617630292792419 -7.029238702488101 4.606699740324029 -7.159954343912172 4.675437740008153 -8.077557467285487 3.107186595085773 -8.231674759177464 3.169096597927384 -8.047749834980579 3.127652876541906 -8.377298220836005 2.39661395425165 -8.545373207110847 2.463673439697669 -8.353563822226445 2.424237975417156 -8.49958007699728 2.012770143201586 -8.515489481780616 1.980273254157807 -8.693719349471335 2.052819540140382 -8.589192053205473 1.720319789859238 -8.596166837426104 1.685934658432313 -8.780249100694144 1.761942752364017 -8.298043634641619 -0.1220147028500511 -7.991646190182824 -0.1723444802677662 -7.987133271535171 -0.2052426539596612 2.901507908494777 0.8562299904322406 3.058848826558489 0.8092210452807116 2.895607012733823 0.8218373312986727 4.518024461486122 2.698701214804513 4.509072063129959 2.667183999331559 4.314262999384527 2.704541868593081 4.43615323997166 4.859893217004145 4.641148657717239 4.825554387755506 4.437417693647018 4.83201999369583 5.231687984906028 6.202493182026287 4.980411586168624 6.222385037355247 5.23216710628925 6.227028374247662 3.31070475680292 6.909450371292843 3.066999198626133 6.859552613209947 3.047861030092218 6.879808391990907 -8.852141192071063 -0.4721833525155892 -8.572104589030143 -0.584149427709649 -8.865553288376802 -0.4984767425031667 4.383277596557019 -0.9703164350082597 4.384233889511629 -1.00500854075006 4.192074091795119 -0.9644786168449441 4.176033042626822 -1.01111114523631 4.368146312940617 -1.05177733749157 4.173686020948338 -1.045732735005197 5.319938273639886 -2.597084929179837 5.320816204336861 -2.629117487317422 5.10006898952085 -2.599084903763264 5.13820867252681 -2.461632476964901 5.359088894745606 -2.491053648364738 5.131738605725835 -2.493436923101918 8.407159244259502 -1.21726296456864 8.620821399399713 -1.162140338743266 8.63127955419581 -1.189252455245153 4.528587017767162 -0.02641170334488021 4.497699283455415 -0.04586685038860851 4.46130134568214 0.03707477433640671 8.803758288345591 0.7456149804471391 8.939097696542799 0.7932262656363351 8.939436819185779 0.7627160713532108 4.460459536095858 0.03671129283708071 4.49685343594146 -0.04623142840983539 4.460430386658008 -0.05305915144846824 4.461401517562886 0.03686151698430007 4.461377258793934 -0.05290892820156359 4.424948741815012 -0.04606697911144887 4.460201965536864 0.03699704956974839 4.423743437030018 -0.04592988149532395 4.392871851205832 -0.02646411253551594 4.459853063353561 0.03717094384205769 4.392521668794053 -0.02628937768656717 4.371892838109163 0.002837012659116112 4.46030882180899 0.03651959677391967 4.372349501451534 0.002184231002592093 4.365120183165604 0.03654031200201141 4.372372628472493 0.07151854504854761 4.460309042390368 0.03714823679994782 4.365120403746716 0.03716895127662532 -8.692847217974084 1.545343360804858 -8.88046059017552 1.595736369065635 -8.873804038316852 1.628408569577701 4.457594078254536 0.8211222757485189 4.453360548884101 0.7865779258220966 4.263106471524915 0.8266050940870721 4.349027318188401 2.812213945169185 4.543822040409512 2.774809825120358 4.349329252298876 2.780177696524552 5.287626271073044 4.684981160200084 5.287219963686873 4.657092025211705 5.049061512377468 4.682545124536409 5.212927123046342 6.185565883910937 4.974387162667712 6.181924996350574 4.961601159714077 6.205066389024376 -2.769837363284249 7.106560558728847 -2.875320188287005 6.890935407414553 -2.800658644767653 7.113566861210577 -8.40635272720972 -0.7404675769389774 -8.397635060647142 -0.7701983909791447 -8.685551039872424 -0.6713702382917143 4.277606690294204 0.8717851468593341 4.467880180442919 0.8318151239353879 4.276651714627878 0.8371229192208669 5.277518695450643 -0.7861156721666167 5.2780353752537 -0.8207840754168208 5.060271186983167 -0.7876014305827878 5.072896601442999 -0.7361859931783535 5.290693392453745 -0.7692359557974751 5.070818838281209 -0.7708377493860409 7.752320879486677 -0.815634093393138 7.960279861130616 -0.7854237819541431 7.966929169676278 -0.8172053419659937 7.756268297219876 -0.5106367060453658 7.970877719783358 -0.5121091333148329 7.749542183438701 -0.5432998544074876 4.54896506610784 0.002494817847126293 4.52832980994388 -0.02662167391076578 4.461045078771744 0.03686542088697709 8.471142945786282 0.7317644909466251 8.608364977868966 0.727454718084664 8.464646331275617 0.6988226688018977 4.392805397245467 0.1002596017002513 4.460091999127723 0.03676921779013002 4.372156016577284 0.07114020902000419 -8.661765550226443 1.490152638466672 -8.660010180941812 1.456837393641249 -8.844288917909376 1.535252928071866 5.282073843692743 2.77826056913915 5.281990368352663 2.74622350729675 5.054714328947004 2.77652368092618 5.25524872040469 4.538789907910283 5.027891262692011 4.536893693824378 5.017033020420198 4.563909288279159 6.324735945896386 5.547955898162823 6.057108866597945 5.517318246759454 6.316625784021564 5.572368795969156 -5.171992694385841 5.96078681863121 -5.199100239339689 5.941802143399436 -5.177102212115647 6.172193961391411 -8.734637861296427 2.253355305893985 -8.57512569154439 2.150988707709166 -8.742758106069079 2.223519983419607 5.271435059783841 0.9659776987075038 5.271663234763903 0.9313077956459605 5.051558756737666 0.9645213127699988 5.259973374209189 0.8804458520093909 5.042724405532344 0.8790986888390493 5.039883034129148 0.9137172972381544 7.642158445271394 0.2861765293495928 7.648252285721511 0.2518190687301 7.437572311646674 0.2625473983699317 7.447216269288958 0.3897562336038156 7.657907695074914 0.379167991525558 7.448679477244231 0.3549816491299752 8.457255599261766 0.4005989649232058 8.594723473570284 0.429011511997523 8.594458268094895 0.3959232265597514 4.55659693984642 0.03750324897989772 4.549340962523218 0.003151046568942362 4.461420229561208 0.03752046925485183 4.423674434264032 0.1197001367480126 4.460076033603965 0.03675617630689763 4.392789490340109 0.1002465986616575 5.254291552091464 2.622599776821264 5.034414921811282 2.621174292000391 5.027005795765879 2.652854811490564 7.075637084872096 4.166225394866737 7.08174621608214 4.138302128714233 6.833895663818552 4.135070975690361 6.165886087263003 5.39481491611344 6.136112467866505 5.411145787013433 6.404110533357063 5.439706168541727 -2.762575856170686 7.000904422486411 -2.790781249043742 6.846675808502423 -2.795603585611011 6.989067957824188 -8.702669161745337 1.568940343562624 -8.695452768587304 1.538337791588719 -8.868656310130136 1.625858514697937 7.458692868491122 1.49558732789169 7.464888725195936 1.46124074692423 7.24913406967041 1.473268274111121 7.454405578342742 1.335080218524416 7.249464990515346 1.313435234817762 7.238656992412899 1.347174936169087 8.322582891898371 0.9974536615701256 8.327949185315202 0.9629170762017794 8.185646700759257 0.9744376532228073 8.200077318221679 1.114587443871882 8.342404957382749 1.103260797492331 8.203418269607138 1.079863562102585 4.549359237757692 0.07112002494902815 4.556596724507694 0.03676511143898095 4.461420014222696 0.03678233244741672 4.461100903142934 0.1269562658758845 4.461074953590937 0.03718753011993907 4.424668563021831 0.120130189205036 7.312622210591013 2.790872194196395 7.318783500968848 2.759026713980688 7.089901216091215 2.766524808805758 7.092058531659565 3.821989058166489 6.869658853247844 3.795887237322841 6.844204893344118 3.818907879671726 6.829884711987325 5.010664637021248 6.648412208270865 4.973277014582632 6.802085706819893 5.029023555430791 -5.377629787839329 5.7964764533189 -5.393577288687887 5.769819168261567 -5.430793614409249 5.922860502356951 7.300968871997586 2.438955546683173 7.09134858737015 2.416996713956953 7.072084155091899 2.446407557494349 8.162200133225813 1.793737807869269 8.174643604179328 1.760348669530641 8.022843958062268 1.771727549671615 8.159494923662852 1.617996035113387 8.022148715622286 1.596545134562194 8.007705996141191 1.629463060000011 4.528643064032052 0.1003865767564764 4.549261847374723 0.07125912380428487 4.461322430038266 0.03692173845406211 4.460546063433141 0.1268673404645122 4.496964697452659 0.1200267885895665 4.460517218740209 0.03709860525537007 7.799694177759466 3.677299978200762 7.822581943645002 3.652668286093621 7.646968487033075 3.646328395507186 6.896875631760279 4.734159474761321 6.861827229868409 4.744522600559201 7.044703940237076 4.777404512500175 8.039431588244 2.692269467299187 8.057984007583832 2.662576694149323 7.894354637798699 2.668250721389529 8.036198704186658 2.299836424912813 7.896775844967872 2.278089078509356 7.872566136927246 2.305453098225462 4.497544049806503 0.1199618105192656 4.528420815506976 0.1004971687639112 4.461099362781186 0.03703286791730859 7.859066668103008 3.266107975803739 7.714332995525491 3.240840086120174 7.683424882464392 3.260273915005729</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"672\" source=\"#ID80\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID76\">\r\n                    <input semantic=\"POSITION\" source=\"#ID74\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID75\"/>\r\n                </vertices>\r\n                <triangles count=\"448\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID76\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID77\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 16 12 6 13 8 14 9 14 11 13 17 12 7 15 18 16 8 17 9 17 19 16 10 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 28 30 16 31 8 32 9 32 17 31 29 30 18 33 30 34 8 35 9 35 31 34 19 33 12 36 20 37 32 38 33 38 21 37 13 36 2 39 24 40 20 41 21 41 25 40 3 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 26 48 38 49 14 50 15 50 39 49 27 48 40 51 28 52 8 53 9 53 29 52 41 51 26 54 42 55 38 56 39 56 43 55 27 54 30 57 44 58 8 59 9 59 45 58 31 57 46 60 22 61 34 62 35 62 23 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 40 78 8 79 54 80 55 80 9 79 41 78 42 81 56 82 57 83 58 83 59 82 43 81 42 84 57 85 38 86 39 86 58 85 43 84 8 87 44 88 60 89 61 89 45 88 9 87 62 90 46 91 63 92 64 92 47 91 65 90 46 93 34 94 63 95 64 95 35 94 47 93 66 96 32 97 48 98 49 98 33 97 67 96 48 99 20 100 50 101 51 101 21 100 49 99 34 102 32 103 68 104 69 104 33 103 35 102 50 105 24 106 52 107 53 107 25 106 51 105 52 108 36 109 70 110 71 110 37 109 53 108 38 111 72 112 36 113 37 113 73 112 39 111 54 114 8 115 74 116 75 116 9 115 55 114 56 117 54 118 76 119 77 119 55 118 59 117 56 120 76 121 57 122 58 122 77 121 59 120 38 123 57 124 72 125 73 125 58 124 39 123 8 126 60 127 78 128 79 128 61 127 9 126 80 129 62 130 81 131 82 131 65 130 83 129 81 132 62 133 63 134 64 134 65 133 82 132 63 135 34 136 68 137 69 137 35 136 64 135 66 138 48 139 84 140 85 140 49 139 67 138 68 141 32 142 66 143 67 143 33 142 69 141 48 144 50 145 86 146 87 146 51 145 49 144 50 147 52 148 88 149 89 149 53 148 51 147 52 150 70 151 90 152 91 152 71 151 53 150 36 153 72 154 70 155 71 155 73 154 37 153 74 156 8 157 92 158 93 158 9 157 75 156 54 159 74 160 94 161 95 161 75 160 55 159 54 162 94 163 76 164 77 164 95 163 55 162 57 165 76 166 96 167 97 167 77 166 58 165 57 168 96 169 72 170 73 170 97 169 58 168 8 171 78 172 98 173 99 173 79 172 9 171 78 174 80 175 100 176 101 176 83 175 79 174 100 177 80 178 81 179 82 179 83 178 101 177 81 180 63 181 102 182 103 182 64 181 82 180 102 183 63 184 68 185 69 185 64 184 103 183 84 186 104 187 66 188 67 188 105 187 85 186 84 189 48 190 86 191 87 191 49 190 85 189 106 192 68 193 66 194 67 194 69 193 107 192 86 195 50 196 88 197 89 197 51 196 87 195 88 198 52 199 90 200 91 200 53 199 89 198 70 201 108 202 90 203 91 203 109 202 71 201 70 204 72 205 110 206 111 206 73 205 71 204 92 207 8 208 112 209 113 209 9 208 93 207 74 210 92 211 114 212 115 212 93 211 75 210 94 213 74 214 114 215 115 215 75 214 95 213 76 216 94 217 116 218 117 218 95 217 77 216 76 219 116 220 96 221 97 221 117 220 77 219 72 222 96 223 110 224 111 224 97 223 73 222 8 225 98 226 118 227 119 227 99 226 9 225 98 228 78 229 120 230 121 230 79 229 99 228 120 231 78 232 100 233 101 233 79 232 121 231 100 234 81 235 122 236 123 236 82 235 101 234 122 237 81 238 102 239 103 239 82 238 123 237 102 240 68 241 106 242 107 242 69 241 103 240 124 243 104 244 84 245 85 245 105 244 125 243 104 246 106 247 66 248 67 248 107 247 105 246 84 249 86 250 126 251 127 251 87 250 85 249 86 252 88 253 128 254 129 254 89 253 87 252 88 255 90 256 130 257 131 257 91 256 89 255 90 258 108 259 132 260 133 260 109 259 91 258 70 261 110 262 108 263 109 263 111 262 71 261 8 264 118 265 112 266 113 266 119 265 9 264 92 267 112 268 134 269 135 269 113 268 93 267 114 270 92 271 134 272 135 272 93 271 115 270 94 273 114 274 136 275 137 275 115 274 95 273 94 276 136 277 116 278 117 278 137 277 95 276 96 279 116 280 138 281 139 281 117 280 97 279 96 282 138 283 110 284 111 284 139 283 97 282 118 285 98 286 140 287 141 287 99 286 119 285 140 288 98 289 120 290 121 290 99 289 141 288 120 291 100 292 142 293 143 293 101 292 121 291 142 294 100 295 122 296 123 296 101 295 143 294 144 297 122 298 102 299 103 299 123 298 145 297 144 300 102 301 106 302 107 302 103 301 145 300 124 303 146 304 104 305 105 305 147 304 125 303 126 306 124 307 84 308 85 308 125 307 127 306 104 309 148 310 106 311 107 311 149 310 105 309 126 312 86 313 128 314 129 314 87 313 127 312 128 315 88 316 130 317 131 317 89 316 129 315 130 318 90 319 132 320 133 320 91 319 131 318 108 321 150 322 132 323 133 323 151 322 109 321 110 324 152 325 108 326 109 326 153 325 111 324 112 327 118 328 154 329 155 329 119 328 113 327 134 330 112 331 154 332 155 332 113 331 135 330 114 333 134 334 156 335 157 335 135 334 115 333 136 336 114 337 156 338 157 338 115 337 137 336 116 339 136 340 158 341 159 341 137 340 117 339 116 342 158 343 138 344 139 344 159 343 117 342 138 345 152 346 110 347 111 347 153 346 139 345 118 348 140 349 154 350 155 350 141 349 119 348 140 351 120 352 160 353 161 353 121 352 141 351 160 354 120 355 142 356 143 356 121 355 161 354 162 357 142 358 122 359 123 359 143 358 163 357 162 360 122 361 144 362 145 362 123 361 163 360 148 363 144 364 106 365 107 365 145 364 149 363 164 366 146 367 124 368 125 368 147 367 165 366 146 369 148 370 104 371 105 371 149 370 147 369 166 372 124 373 126 374 127 374 125 373 167 372 126 375 128 376 168 377 169 377 129 376 127 375 128 378 130 379 170 380 171 380 131 379 129 378 172 381 130 382 132 383 133 383 131 382 173 381 174 384 132 385 150 386 151 386 133 385 175 384 152 387 150 388 108 389 109 389 151 388 153 387 134 390 154 391 176 392 177 392 155 391 135 390 156 393 134 394 176 395 177 395 135 394 157 393 136 396 156 397 178 398 179 398 157 397 137 396 136 399 178 400 158 401 159 401 179 400 137 399 158 402 180 403 138 404 139 404 181 403 159 402 138 405 180 406 152 407 153 407 181 406 139 405 154 408 140 409 182 410 183 410 141 409 155 408 140 411 160 412 182 413 183 413 161 412 141 411 160 414 142 415 184 416 185 416 143 415 161 414 184 417 142 418 162 419 163 419 143 418 185 417 186 420 162 421 144 422 145 422 163 421 187 420 148 423 186 424 144 425 145 425 187 424 149 423 164 426 188 427 146 428 147 428 189 427 165 426 166 429 164 430 124 431 125 431 165 430 167 429 146 432 190 433 148 434 149 434 191 433 147 432 168 435 166 436 126 437 127 437 167 436 169 435 168 438 128 439 170 440 171 440 129 439 169 438 170 441 130 442 172 443 173 443 131 442 171 441 174 444 172 445 132 446 133 446 173 445 175 444 192 447 174 448 150 449 151 449 175 448 193 447 152 450 194 451 150 452 151 452 195 451 153 450 176 453 154 454 182 455 183 455 155 454 177 453 156 456 176 457 196 458 197 458 177 457 157 456 178 459 156 460 196 461 197 461 157 460 179 459 178 462 198 463 158 464 159 464 199 463 179 462 158 465 198 466 180 467 181 467 199 466 159 465 180 468 194 469 152 470 153 470 195 469 181 468 182 471 160 472 200 473 201 473 161 472 183 471 200 474 160 475 184 476 185 476 161 475 201 474 184 477 162 478 202 479 203 479 163 478 185 477 202 480 162 481 186 482 187 482 163 481 203 480 190 483 186 484 148 485 149 485 187 484 191 483 188 486 164 487 204 488 205 488 165 487 189 486 188 489 190 490 146 491 147 491 191 490 189 489 204 492 164 493 206 494 207 494 165 493 205 492 204 495 206 496 208 497 209 497 207 496 205 495 204 498 208 499 210 500 211 500 209 499 205 498 204 501 210 502 212 503 213 503 211 502 205 501 204 504 212 505 214 506 215 506 213 505 205 504 216 507 204 508 214 509 215 509 205 508 217 507 192 510 150 511 194 512 195 512 151 511 193 510 176 513 182 514 218 515 219 515 183 514 177 513 196 516 176 517 218 518 219 518 177 517 197 516 178 519 196 520 220 521 221 521 197 520 179 519 178 522 220 523 198 524 199 524 221 523 179 522 198 525 222 526 180 527 181 527 223 526 199 525 222 528 194 529 180 530 181 530 195 529 223 528 218 531 182 532 200 533 201 533 183 532 219 531 200 534 184 535 224 536 225 536 185 535 201 534 224 537 184 538 202 539 203 539 185 538 225 537 226 540 202 541 186 542 187 542 203 541 227 540 226 543 186 544 190 545 191 545 187 544 227 543 228 546 188 547 204 548 205 548 189 547 229 546 228 549 190 550 188 551 189 551 191 550 229 549 230 552 204 553 216 554 217 554 205 553 231 552 232 555 192 556 194 557 195 557 193 556 233 555 196 558 218 559 234 560 235 560 219 559 197 558 196 561 234 562 220 563 221 563 235 562 197 561 220 564 236 565 198 566 199 566 237 565 221 564 236 567 222 568 198 569 199 569 223 568 237 567 222 570 232 571 194 572 195 572 233 571 223 570 218 573 200 574 238 575 239 575 201 574 219 573 200 576 224 577 238 578 239 578 225 577 201 576 224 579 202 580 240 581 241 581 203 580 225 579 240 582 202 583 226 584 227 584 203 583 241 582 228 585 226 586 190 587 191 587 227 586 229 585 242 588 228 589 204 590 205 590 229 589 243 588 244 591 204 592 245 593 246 593 205 592 247 591 218 594 238 595 234 596 235 596 239 595 219 594 220 597 234 598 248 599 249 599 235 598 221 597 248 600 236 601 220 602 221 602 237 601 249 600 236 603 250 604 222 605 223 605 251 604 237 603 250 606 232 607 222 608 223 608 233 607 251 606 238 609 224 610 252 611 253 611 225 610 239 609 224 612 240 613 252 614 253 614 241 613 225 612 240 615 226 616 242 617 243 617 227 616 241 615 242 618 226 619 228 620 229 620 227 619 243 618 254 621 242 622 204 623 205 623 243 622 255 621 256 624 204 625 244 626 247 626 205 625 257 624 234 627 238 628 258 629 259 629 239 628 235 627 234 630 258 631 248 632 249 632 259 631 235 630 248 633 260 634 236 635 237 635 261 634 249 633 260 636 250 637 236 638 237 638 251 637 261 636 238 639 252 640 258 641 259 641 253 640 239 639 252 642 240 643 254 644 255 644 241 643 253 642 240 645 242 646 254 647 255 647 243 646 241 645 262 648 254 649 204 650 205 650 255 649 263 648 256 651 264 652 204 653 205 653 265 652 257 651 248 654 258 655 264 656 265 656 259 655 249 654 264 657 260 658 248 659 249 659 261 658 265 657 258 660 252 661 262 662 263 662 253 661 259 660 252 663 254 664 262 665 263 665 255 664 253 663 264 666 262 667 204 668 205 668 263 667 265 666 258 669 262 670 264 671 265 671 263 670 259 669</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID81\">\r\n            <mesh>\r\n                <source id=\"ID82\">\r\n                    <float_array count=\"300\" id=\"ID86\">0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7651680707931519 -0.5068138837814331 0.2471411228179932 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7651680707931519 -0.5068138837814331 0.2471411228179932 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.766562283039093 -0.4993950724601746 0.243329256772995 0.766562283039093 -0.4993950724601746 0.243329256772995 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7745932340621948 -0.5068138837814331 0.251851499080658 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7745932340621948 -0.5068138837814331 0.251851499080658 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.766562283039093 -0.4993950724601746 0.243329256772995 0.766562283039093 -0.4993950724601746 0.243329256772995 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.766562283039093 -0.5142327547073364 0.243329256772995 0.766562283039093 -0.5142327547073364 0.243329256772995 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.766562283039093 -0.5142327547073364 0.243329256772995 0.766562283039093 -0.5142327547073364 0.243329256772995 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID86\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID83\">\r\n                    <float_array count=\"300\" id=\"ID87\">0.375978209953221 0.5217944735711745 -0.7657485964668513 0.4407333323315916 2.066001226809362e-006 -0.897638083955679 0.4407333331654882 2.066979567289028e-006 -0.8976380835462399 -0.4407333331654882 -2.066979567289028e-006 0.8976380835462399 -0.4407333323315916 -2.066001226809362e-006 0.897638083955679 -0.375978209953221 -0.5217944735711745 0.7657485964668513 -0.9443384505283671 4.81767848970578e-008 -0.3289755171037514 -0.9421829832111356 -5.11061567637383e-007 -0.335098830417392 -0.9466350234875653 -0.006131783125161065 -0.3222491792734352 0.9466350234875653 0.006131783125161065 0.3222491792734352 0.9421829832111356 5.11061567637383e-007 0.335098830417392 0.9443384505283671 -4.81767848970578e-008 0.3289755171037514 0.3699653038975272 0.5173306518499654 -0.771683011714331 -0.3699653038975272 -0.5173306518499654 0.771683011714331 0.378595662181366 -0.5119595283111984 -0.7710789622009072 -0.378595662181366 0.5119595283111984 0.7710789622009072 -0.9453780427562016 0.01025717885261708 -0.3258145892320336 0.9453780427562016 -0.01025717885261708 0.3258145892320336 -0.9466351612062506 0.006130792814932401 -0.3222487935547259 0.9466351612062506 -0.006130792814932401 0.3222487935547259 0.8995898946121159 9.144688632883362e-010 0.4367356425937349 0.8995954425367289 -2.754916782337308e-011 0.4367242147707715 0.8996049235230686 -7.124082212569685e-006 0.4367046845664716 -0.8996049235230686 7.124082212569685e-006 -0.4367046845664716 -0.8995954425367289 2.754916782337308e-011 -0.4367242147707715 -0.8995898946121159 -9.144688632883362e-010 -0.4367356425937349 0.2115276328007368 0.8697883303021156 -0.4457850614724262 -0.2115276328007368 -0.8697883303021156 0.4457850614724262 0.8996049241110151 7.126201571800092e-006 0.4367046833552761 -0.8996049241110151 -7.126201571800092e-006 -0.4367046833552761 0.3705540966906015 -0.5174542913667095 -0.7713175207215178 -0.3705540966906015 0.5174542913667095 0.7713175207215178 -0.9439623282584713 0 -0.3300532121171466 0.9439623282584713 -0 0.3300532121171466 -0.9453780682239803 -0.0102571385473218 -0.3258145166040277 0.9453780682239803 0.0102571385473218 0.3258145166040277 0.8995950455855233 -3.663571547317351e-005 0.4367250309013729 -0.8995950455855233 3.663571547317351e-005 -0.4367250309013729 0.2075772187704324 0.8694421042859699 -0.4483103005088291 -0.2075772187704324 -0.8694421042859699 0.4483103005088291 0.8995950457664682 3.663566904712296e-005 0.4367250305286541 -0.8995950457664682 -3.663566904712296e-005 -0.4367250305286541 0.208460698835653 -0.8739288926851656 -0.4390813450501301 -0.208460698835653 0.8739288926851656 0.4390813450501301 -0.9460346356416761 0.004563946282964946 -0.3240333911198774 0.9460346356416761 -0.004563946282964946 0.3240333911198774 0.008590673261842052 0.9996059528861063 -0.02672338465777645 -0.008590673261842052 -0.9996059528861063 0.02672338465777645 0.2038573469755026 -0.8745269342451815 -0.4400509326928348 -0.2038573469755026 0.8745269342451815 0.4400509326928348 -0.9439623343035419 0 -0.3300531948280579 0.9439623343035419 -0 0.3300531948280579 0.8995774230538666 4.826647817647466e-022 0.436761330627798 -0.8995774230538666 -4.826647817647466e-022 -0.436761330627798 0.8995774230538701 0 0.4367613306277909 -0.8995774230538701 -0 -0.4367613306277909 -0.9415278151062586 0.01889825686992318 -0.3364048591630528 0.9415278151062586 -0.01889825686992318 0.3364048591630528 -0.2190448495887265 0.8751592745761597 0.431411170453411 -0.001785345109949788 0.9999967123999728 0.001840579279618263 0.001785345109949788 -0.9999967123999728 -0.001840579279618263 0.2190448495887265 -0.8751592745761597 -0.431411170453411 -0.002843379399834357 -0.9999928917927541 -0.002476198205651264 0.002843379399834357 0.9999928917927541 0.002476198205651264 0.01363581427139172 -0.9994901796294989 -0.0288694543306301 -0.01363581427139172 0.9994901796294989 0.0288694543306301 -0.9460346179128348 -0.004563942108385799 -0.3240334429390699 0.9460346179128348 0.004563942108385799 0.3240334429390699 0.8995952008205769 1.186622883298446e-005 0.4367247125132474 -0.8995952008205769 -1.186622883298446e-005 -0.4367247125132474 0.8995952008791872 -1.186621380169817e-005 0.4367247123925184 -0.8995952008791872 1.186621380169817e-005 -0.4367247123925184 -0.9398068381235053 4.800570693624863e-007 -0.3417061705852986 0.9398068381235053 -4.800570693624863e-007 0.3417061705852986 -0.3993398374938099 0.5109025352181355 0.7612531075129344 -0.2284849364604937 0.8694177509828229 0.4380723776804629 0.2284849364604937 -0.8694177509828229 -0.4380723776804629 0.3993398374938099 -0.5109025352181355 -0.7612531075129344 -0.222572432077619 -0.8709186855360013 0.438134860132468 0.222572432077619 0.8709186855360013 -0.438134860132468 -0.2226310751864621 -0.8762556962653183 0.4273305033857309 0.2226310751864621 0.8762556962653183 -0.4273305033857309 -0.9415278025606702 -0.0188975949309247 -0.3364049314607355 0.9415278025606702 0.0188975949309247 0.3364049314607355 0.8996042616570016 2.640372423429032e-005 0.4367060472576542 -0.8996042616570016 -2.640372423429032e-005 -0.4367060472576542 0.8996042617889712 -2.640316438136232e-005 0.4367060469858336 -0.8996042617889712 2.640316438136232e-005 -0.4367060469858336 -0.469474849302696 9.118013130299431e-006 0.8829458453320185 -0.4041982700684288 0.5086681365402612 0.7601845074337856 0.4041982700684288 -0.5086681365402612 -0.7601845074337856 0.469474849302696 -9.118013130299431e-006 -0.8829458453320185 -0.4010681788190585 -0.5057171122936732 0.7638026697204665 0.4010681788190585 0.5057171122936732 -0.7638026697204665 -0.40456666931246 -0.5073368437200908 0.76087787264814 0.40456666931246 0.5073368437200908 -0.76087787264814 0.8996050028853476 4.9278183417775e-010 0.43670452113947 -0.8996050028853476 -4.9278183417775e-010 -0.43670452113947 -0.4694748563753538 8.980243316135359e-006 0.8829458415727979 0.4694748563753538 -8.980243316135359e-006 -0.8829458415727979</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID87\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID85\">\r\n                    <float_array count=\"288\" id=\"ID88\">-8.343844565602536 3.543118263434617 -8.382851173200937 3.526346557651889 -8.437936047592569 3.605860239956482 5.313198148759145 -0.1399620452823762 5.314159574535079 -0.2096745960193521 5.271181998423044 -0.2007403241355626 -8.399079464883094 3.622409275093206 -8.343993404509398 3.542899692012902 -8.438087577498109 3.605639171055174 -0.1926900638404377 7.20294571541573 -0.1766122939953679 7.299228780151535 -0.1376025136248288 7.282458250509552 4.902738990445891 -0.03114646266338814 4.859391015364293 -0.0913431629190689 4.828268720275609 -0.06266687231914832 4.817776875026402 -0.2264247686498599 4.859794847519937 -0.2872030478013722 4.816815489344182 -0.2961373197290152 -5.068611761747508 -0.9486757717377763 -5.068609406092489 -0.8788322353679069 -5.025779548333094 -0.9393184573896304 -8.950026130758724 0.6605307602452011 -8.971175442494232 0.6266938625873333 -9.067562318135598 0.6761944720988358 -5.067665914919799 -0.9488873331219097 -5.110499916460379 -0.9395300187737632 -5.067668270476479 -0.8790437967520385 -0.1932408678788178 7.202945780829676 -0.2322495278464481 7.219717358683649 -0.1771694353701919 7.29922950031786 5.068138837814331 -0.2417616733835548 4.993950724601746 -0.2736911840805733 4.982473850250244 -0.2417616733835548 5.305675535343083 -0.009926139123586465 5.274554433657209 -0.03860242458546571 5.231204667521974 0.02159426488454008 -5.024686968751198 -0.9391142004259667 -5.06752154218299 -0.8786300449575993 -4.993331884049916 -0.9135494472973115 -8.970827455956204 0.5896146450140907 -9.08822349081407 0.6059158153191752 -9.0634209709409 0.635602120563353 -5.111592468299554 -0.9388367054217398 -5.142946360897971 -0.9132719523181463 -5.068756106704823 -0.878352550012667 5.158889385222121 5.305634292436024 5.063804966929708 5.254598621125737 5.133562050212204 5.335044313432179 4.993950724601746 -0.02792316078328727 5.068138837814331 -0.06254924404119872 4.982473850250244 -0.06254924404119872 -8.179974031342647 1.090452894609735 -8.19515812353618 1.05949601654638 -8.294178322284875 1.096276142224795 5.485995607753845 5.00183953062288 5.465419112284291 5.035893612869341 5.559200633392363 5.080366375996972 5.153806209564209 -0.2417616733835557 5.142327547073364 -0.2736911840805741 5.068138837814331 -0.2417616733835557 -4.993950724601746 -0.9141731902504215 -5.068138837814331 -0.8792517567371023 -4.982473850250244 -0.8792517567371023 -5.142327547073364 -0.9141731902504207 -5.153806209564209 -0.8792517567371014 -5.068138837814331 -0.8792517567371014 4.952025870323596 -0.1121746920996578 4.994621123114127 -0.1713549770475362 4.920569945696441 -0.1365479701492706 -7.001419027427395 2.973917863672661 -7.016607472064904 2.94018778095906 -7.110212585110727 2.978243406263085 -8.173166530997587 1.177725768140519 -8.287373741612189 1.183513471797853 -8.266794802308175 1.21574612199988 7.174263755035262 2.9637055771487 7.075130506956731 2.927114391874874 7.153763361781501 2.995969580567783 6.955257057845609 3.024932840630291 6.9399776139736 3.055861081990014 7.03347546040006 3.0940795430343 5.142327547073364 -0.02792316078328618 5.153806209564209 -0.06254924404119762 5.068138837814331 -0.06254924404119762 -5.068138837814331 -0.8789867754968088 -4.993950724601746 -0.8440644861611898 -4.982473850250244 -0.8789867754968088 -5.153806209564209 -0.8789867754968075 -5.142327547073364 -0.8440644861611885 -5.068138837814331 -0.8789867754968075 4.833383986635733 -0.2009420908461514 4.832478441355254 -0.269311086124223 4.79041356430487 -0.209896498007136 -4.817001152561604 5.422121169557888 -4.839736998741243 5.392347092862829 -4.92035794411898 5.438471476782302 -7.002911586619617 2.953729967921219 -7.111705460258842 2.958050589909358 -7.091110626255508 2.990277884449331 8.286530932096811 1.18568334353603 8.192902823453633 1.147662741779765 8.265952833762935 1.217917647225526 8.210438277911528 1.141555618151195 8.195229667675156 1.175280453895014 8.283404632472832 1.211864301761794 5.183789348550204 -0.08688609419973015 5.215244082052956 -0.1112593744938168 5.14119230992116 -0.1460663845973721 -5.068338773715833 -0.8786955365358936 -5.025506009258447 -0.8182099678317926 -4.994150160080813 -0.8437739050935431 -5.142128106458063 -0.8438637850184855 -5.110773449376557 -0.8182998477648531 -5.067938896772182 -0.8787854164497464 5.298171380705109 -0.1178998379364343 5.341143585397443 -0.1268542451379624 5.299076888217746 -0.186268833524066 0.4846525411324921 7.173005203558017 0.4451360141056099 7.156989867586018 0.4017957098467573 7.224787245778542 -4.871987383799793 5.307274327778187 -4.975435306639563 5.323263998490778 -4.949564627279097 5.352380461933763 9.141146669114521 0.7992565543632813 9.059815007171272 0.7539109006504693 9.115559867904937 0.8285270522387842 9.109081201946891 0.8693466249542297 9.086023387126863 0.89896629850475 9.162859674176625 0.944850583614073 -5.068392404893438 -0.8786614576419535 -5.068391135651106 -0.8088183124045556 -5.025559407947352 -0.8181759908226125 -5.067885275889797 -0.8787754489378705 -5.110720060929337 -0.8182899821185287 -5.067886545079142 -0.808932303700472 8.280710457527816 3.705126732858316 8.241191888595893 3.721141910399398 8.284531581773541 3.788943079334775 0.4409911514236909 7.240768284153922 0.484335515399475 7.172968962999835 0.4014767417204491 7.224749081770063 8.280933073751957 3.704815650635557 8.28475928709571 3.788631853439325 8.324275367051978 3.772612241933037</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"144\" source=\"#ID88\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID84\">\r\n                    <input semantic=\"POSITION\" source=\"#ID82\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID83\"/>\r\n                </vertices>\r\n                <triangles count=\"96\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID84\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID85\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 12 6 0 7 2 8 3 8 5 7 13 6 1 9 14 10 2 11 3 11 15 10 4 9 6 12 8 13 16 14 17 14 9 13 11 12 6 15 18 16 7 17 10 17 19 16 11 15 20 18 21 19 22 20 23 20 24 19 25 18 26 21 0 22 12 23 13 23 5 22 27 21 20 24 28 25 21 26 24 26 29 25 25 24 1 27 30 28 14 29 15 29 31 28 4 27 6 30 16 31 32 32 33 32 17 31 11 30 34 33 18 34 6 35 11 35 19 34 35 33 22 36 21 37 36 38 37 38 24 37 23 36 26 39 12 40 38 41 39 41 13 40 27 39 28 42 40 43 21 44 24 44 41 43 29 42 14 45 30 46 42 47 43 47 31 46 15 45 44 48 6 49 32 50 33 50 11 49 45 48 46 51 26 52 38 53 39 53 27 52 47 51 30 54 48 55 42 56 43 56 49 55 31 54 50 57 34 58 6 59 11 59 35 58 51 57 36 60 21 61 52 62 53 62 24 61 37 60 40 63 54 64 21 65 24 65 55 64 41 63 56 66 6 67 44 68 45 68 11 67 57 66 58 69 46 70 59 71 60 71 47 70 61 69 46 72 38 73 59 74 60 74 39 73 47 72 42 75 48 76 62 77 63 77 49 76 43 75 48 78 64 79 62 80 63 80 65 79 49 78 66 81 50 82 6 83 11 83 51 82 67 81 21 84 68 85 52 86 53 86 69 85 24 84 54 87 70 88 21 89 24 89 71 88 55 87 72 90 6 91 56 92 57 92 11 91 73 90 74 93 58 94 75 95 76 95 61 94 77 93 58 96 59 97 75 98 76 98 60 97 61 96 62 99 64 100 78 101 79 101 65 100 63 99 64 102 80 103 78 104 79 104 81 103 65 102 82 105 66 106 6 107 11 107 67 106 83 105 21 108 84 109 68 110 69 110 85 109 24 108 70 111 86 112 21 113 24 113 87 112 71 111 72 114 82 115 6 116 11 116 83 115 73 114 88 117 74 118 89 119 90 119 77 118 91 117 74 120 75 121 89 122 90 122 76 121 77 120 78 123 80 124 92 125 93 125 81 124 79 123 80 126 94 127 92 128 93 128 95 127 81 126 21 129 96 130 84 131 85 131 97 130 24 129 21 132 86 133 96 134 97 134 87 133 24 132 94 135 88 136 98 137 99 137 91 136 95 135 98 138 88 139 89 140 90 140 91 139 99 138 94 141 98 142 92 143 93 143 99 142 95 141</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID91\">\r\n            <mesh>\r\n                <source id=\"ID92\">\r\n                    <float_array count=\"108\" id=\"ID96\">-0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"36\" source=\"#ID96\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID93\">\r\n                    <float_array count=\"108\" id=\"ID97\">-0.9969899583790898 0 -0.07753078673185826 -0.9884129292970471 0 -0.1517889363505488 -0.9884129292970471 0 -0.1517889363505488 0.9884129292970471 -0 0.1517889363505488 0.9884129292970471 -0 0.1517889363505488 0.9969899583790898 -0 0.07753078673185826 -0.998320957347389 0 -0.0579246590062718 0.998320957347389 -0 0.0579246590062718 -0.9993510989424169 7.184929433669925e-019 0.03601917603976783 0.9993510989424169 -7.184929433669925e-019 -0.03601917603976783 -0.9990306614844523 0.0002614309546962441 0.04401896259333652 0.9990306614844523 -0.0002614309546962441 -0.04401896259333652 -0.9888379135974273 0.0002436995254544094 0.1489950376449768 0.9888379135974273 -0.0002436995254544094 -0.1489950376449768 -0.9861063237501272 0.0001948595204020617 0.1661152620615472 0.9861063237501272 -0.0001948595204020617 -0.1661152620615472 -0.9624184146477172 0.0002415020656172742 0.2715708688790593 0.9624184146477172 -0.0002415020656172742 -0.2715708688790593 -0.9573298297691951 2.022174489453926e-020 0.2889975727131348 0.9573298297691951 -2.022174489453926e-020 -0.2889975727131348 -0.8839922438205549 -5.787082397949427e-020 0.4675015645589871 0.8839922438205549 5.787082397949427e-020 -0.4675015645589871 -0.9134613059251451 0.008433697485858586 0.4068381930500694 0.9134613059251451 -0.008433697485858586 -0.4068381930500694 -0.7766917816344079 0.0006653446873563806 0.6298804915680564 0.7766917816344079 -0.0006653446873563806 -0.6298804915680564 -0.887662577311735 0.0168360614725487 0.4601865881078896 0.887662577311735 -0.0168360614725487 -0.4601865881078896 -4.240544352349684e-005 -0.002559416028395586 0.9999967237903193 -0.0001348136590898401 -0.002562698012055371 0.9999967071966669 -4.475077414611043e-005 -0.002559499325770485 0.9999967234749172 4.475077414611043e-005 0.002559499325770485 -0.9999967234749172 0.0001348136590898401 0.002562698012055371 -0.9999967071966669 4.240544352349684e-005 0.002559416028395586 -0.9999967237903193 -0.0001382939885384298 -0.002562821619516241 0.9999967064046358 0.0001382939885384298 0.002562821619516241 -0.9999967064046358</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"36\" source=\"#ID97\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID95\">\r\n                    <float_array count=\"76\" id=\"ID98\">-3.217366635799408 -1.011662528891078 4.606521427631378 -1.011662528891078 -3.174309134483337 0.03269434537139772 5.109987258911133 0.03269434537139772 -3.174309134483337 -0.9347596834103267 5.109987258911133 -0.9347596834103267 -3.138594627380371 0.1405233934521675 5.681315660476685 0.1405233934521675 -3.138594627380371 -0.3213110935675059 5.681315660476685 -0.3213110935675059 -3.102889358997345 0.7323627702456695 -3.09928917724737 0.7510178070110662 5.684959547332459 -0.3024305511224223 6.220538449628159 0.7510178070110662 -3.119279014302022 0.4187348569376954 -3.09928917724737 -0.2355396215454666 6.220538449628159 -0.2355396215454666 -3.122794330120087 0.3874851047394469 6.216937303543091 -0.2675471603832269 6.405143737792969 0.3874851047394469 -3.122794330120087 -0.3106585169242548 6.405143737792969 -0.3106585169242548 -2.803181707859039 0.2275367623352473 -2.803181707859039 0.2275367623352468 6.405143737792969 -0.3106585169242556 6.521115303039551 0.2275367623352468 -2.803181707859039 -1.950888725490773 6.521115303039551 -1.950888725490773 -2.70549088716507 -1.368457715187601 -2.57175403627721 -0.08890733546632032 6.662126685805698 -0.5949907224755842 6.648155411909684 -0.1098190995586758 -6.590083908601013 -5.20958023311017 -7.070594972351801 2.04357821955581 -7.104933336244505 -5.209397056353318 -6.810479911718501 1.83452016452179 -7.162312139268526 1.834520164521791 -6.33791556685284 -5.399469606680877</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"38\" source=\"#ID98\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID94\">\r\n                    <input semantic=\"POSITION\" source=\"#ID92\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID93\"/>\r\n                </vertices>\r\n                <triangles count=\"14\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID94\"/>\r\n                    <p>0 1 2 6 1 0 8 6 0 10 6 8 12 10 8 14 10 12 14 12 16 18 14 16 20 18 16 22 18 20 24 22 20 26 22 24 28 29 30 30 29 34</p>\r\n                </triangles>\r\n                <triangles count=\"14\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID94\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID95\"/>\r\n                    <p>3 0 4 1 5 2 5 2 4 1 7 3 5 4 7 5 9 6 9 6 7 5 11 7 9 8 11 9 13 10 13 11 11 12 15 13 17 14 13 15 15 16 17 17 15 18 19 19 17 20 19 21 21 22 21 23 19 24 23 25 21 26 23 27 25 28 25 29 23 30 27 31 31 32 32 33 33 34 35 35 32 36 31 37</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID99\">\r\n            <mesh>\r\n                <source id=\"ID100\">\r\n                    <float_array count=\"90\" id=\"ID104\">-0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID104\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID101\">\r\n                    <float_array count=\"90\" id=\"ID105\">0.988412913780544 0 0.1517890373902383 0.9969899576627774 0 0.07753079594311511 0.988412913780544 0 0.1517890373902383 -0.988412913780544 -0 -0.1517890373902383 -0.9969899576627774 -0 -0.07753079594311511 -0.988412913780544 -0 -0.1517890373902383 0.988412913780544 0 0.1517890373902383 0.9983209527432319 0 0.05792473835802717 -0.9983209527432319 -0 -0.05792473835802717 -0.988412913780544 -0 -0.1517890373902383 0.9993509166757276 0 -0.03602423266889734 -0.9993509166757276 -0 0.03602423266889734 0.9990305393801646 -0.0002619822270462396 -0.04402173044179333 -0.9990305393801646 0.0002619822270462396 0.04402173044179333 0.994377943186845 -0.0002472551933162214 -0.105888833067369 -0.994377943186845 0.0002472551933162214 0.105888833067369 0.9934289228239549 -0.0001945588048795497 -0.1144505895297539 -0.9934289228239549 0.0001945588048795497 0.1144505895297539 0.995983160148023 -0.000248323998790207 -0.08954039890881241 -0.995983160148023 0.000248323998790207 0.08954039890881241 0.9972495302272323 -7.346303986892779e-019 -0.07411730203916211 -0.9972495302272323 7.346303986892779e-019 0.07411730203916211 0.9997397286185086 0 0.02281392166618968 -0.9997397286185086 -0 -0.02281392166618968 0.9982764498562651 -0.001456672185643534 0.05866862678225434 -0.9982764498562651 0.001456672185643534 -0.05866862678225434 0.9962132812992509 -9.879291414691034e-005 0.08694301813797259 -0.9962132812992509 9.879291414691034e-005 -0.08694301813797259 0.9913216074311079 -0.002879513856937434 0.1314274668406588 -0.9913216074311079 0.002879513856937434 -0.1314274668406588</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID105\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID103\">\r\n                    <float_array count=\"64\" id=\"ID106\">3.201837241649628 -1.150202329427836 3.158780634403229 -0.1058461503505726 -4.622048437595367 -1.150202329427836 3.158780634403229 -0.1058461503505723 -5.125510692596436 -0.1058461503505723 -4.622048437595367 -1.150202329427836 3.158780634403229 -0.9347603867451351 3.123067617416382 0.1405233934521675 -5.125510692596436 -0.9347603867451351 -5.696841478347778 0.1405233934521675 3.123067617416382 -0.2545367445365298 3.087365627288818 0.7991379089722803 -5.696841478347778 -0.2545367445365298 3.084286775264742 0.8151176357230101 -6.235541749751866 0.8151176357230101 -5.699964131968046 -0.2383310143047544 3.104247691337136 1.086372973785097 -6.235541749751866 0.44254094400415 3.084286775264742 0.44254094400415 3.107274770736694 1.058577291180575 -6.420671939849854 1.058577291180575 -6.232461929321289 0.4142719643560417 3.107274770736694 1.722909634361432 2.787659466266632 2.23017673742393 -6.420671939849854 1.722909634361432 -6.536641120910645 2.23017673742393 2.787659466266632 2.772574243860051 2.686533033847809 3.223532218529132 -6.536641120910645 2.772574243860051 2.667131545541148 3.452259268550261 -6.540721785117357 3.4335304126865 -6.55586156508433 2.999015659128898</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID106\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID102\">\r\n                    <input semantic=\"POSITION\" source=\"#ID100\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID101\"/>\r\n                </vertices>\r\n                <triangles count=\"12\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID102\"/>\r\n                    <p>0 1 2 6 7 1 7 10 1 7 12 10 12 14 10 12 16 14 14 16 18 16 20 18 20 22 18 20 24 22 24 26 22 24 28 26</p>\r\n                </triangles>\r\n                <triangles count=\"12\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID102\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID103\"/>\r\n                    <p>3 0 4 1 5 2 4 3 8 4 9 5 4 6 11 7 8 8 11 7 13 9 8 8 11 10 15 11 13 12 15 13 17 14 13 15 19 16 17 17 15 18 19 19 21 20 17 21 19 22 23 23 21 24 23 23 25 25 21 24 23 26 27 27 25 28 27 29 29 30 25 31</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID107\">\r\n            <mesh>\r\n                <source id=\"ID108\">\r\n                    <float_array count=\"198\" id=\"ID112\">-0.669903576374054 -0.652129054069519 0.3517222404479981 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID112\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID109\">\r\n                    <float_array count=\"198\" id=\"ID113\">-0.01701265821172461 -0.9995231985732976 0.02576712972714528 -0.01757382759865987 -0.9966581675845644 -0.07977253644275587 -0.01751781381950524 -0.9995282886182213 0.02522551190591106 0.01751781381950524 0.9995282886182213 -0.02522551190591106 0.01757382759865987 0.9966581675845644 0.07977253644275587 0.01701265821172461 0.9995231985732976 -0.02576712972714528 -0.01625792747926485 -0.9946609696459937 -0.1019079744522989 0.01625792747926485 0.9946609696459937 0.1019079744522989 -0.0150813316095251 -0.9800366184397777 -0.1982442431799954 0.0150813316095251 0.9800366184397777 0.1982442431799954 -0.01366808468970709 -0.9791248445876004 -0.2027997094973813 0.01366808468970709 0.9791248445876004 0.2027997094973813 -0.01306491161032782 -0.9558449561319398 -0.293580871178189 0.01306491161032782 0.9558449561319398 0.293580871178189 -0.01273933707335443 -0.9520610552478258 -0.3056426939603298 0.01273933707335443 0.9520610552478258 0.3056426939603298 -0.01238557086853103 -0.9255816397548481 -0.3783453789634373 0.01238557086853103 0.9255816397548481 0.3783453789634373 -0.01238357987591431 -0.9254422243120635 -0.3786863298427829 0.01238357987591431 0.9254422243120635 0.3786863298427829 -0.01241748667662049 -0.9280470140680498 -0.3722560217162554 0.01241748667662049 0.9280470140680498 0.3722560217162554 -0.01241185824118758 -0.9276097725235235 -0.373344419663476 0.01241185824118758 0.9276097725235235 0.373344419663476 -0.0124838307381665 -0.9329216405473417 -0.3598629830484896 0.0124838307381665 0.9329216405473417 0.3598629830484896 -0.01248496597669147 -0.9329212298258305 -0.3598640084321035 0.01248496597669147 0.9329212298258305 0.3598640084321035 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0 0 -1 -0 -0 1 0.0133753871119692 0.9993032320341038 0.03484464759183624 0.0133753871119692 0.9993032320341038 0.03484464759183624 0.01337680086005785 0.999452551939183 0.03025983511199893 -0.01337680086005785 -0.999452551939183 -0.03025983511199893 -0.0133753871119692 -0.9993032320341038 -0.03484464759183624 -0.0133753871119692 -0.9993032320341038 -0.03484464759183624 0.01337464439725718 0.9993032688233439 0.03484387760033019 0.01337618871559839 0.9994397121588509 0.03068125380876897 -0.01337618871559839 -0.9994397121588509 -0.03068125380876897 -0.01337464439725718 -0.9993032688233439 -0.03484387760033019 0.01337725942786449 0.9995742326768236 0.02593072113804774 -0.01337725942786449 -0.9995742326768236 -0.02593072113804774 0.01337627272410458 0.9995744990501909 0.02592096017840197 -0.01337627272410458 -0.9995744990501909 -0.02592096017840197 0.01337920066408224 0.9999090019891376 0.001727637310686036 -0.01337920066408224 -0.9999090019891376 -0.001727637310686036 0.01366154746104537 0.9999038576502615 -0.002374358249118602 -0.01366154746104537 -0.9999038576502615 0.002374358249118602 0.01373262422128222 0.9853407192912542 0.1700443528571015 -0.01373262422128222 -0.9853407192912542 -0.1700443528571015 0.01486608652804611 0.9737392342553481 0.227180331770048 -0.01486608652804611 -0.9737392342553481 -0.227180331770048 0.01528852077539887 0.9353143715544456 0.3534873229639399 -0.01528852077539887 -0.9353143715544456 -0.3534873229639399 0.02312570321348094 0.9506753226411848 0.3093244781325283 -0.02312570321348094 -0.9506753226411848 -0.3093244781325283 0.03283908891765636 0.9857753031401179 0.1648291417136772 -0.03283908891765636 -0.9857753031401179 -0.1648291417136772 0.05301784880448666 0.9825104516283633 0.1785001964961789 -0.05301784880448666 -0.9825104516283633 -0.1785001964961789</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID113\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID111\">\r\n                    <float_array count=\"152\" id=\"ID114\">-6.587084260695764 2.631483678724743 -6.514283945022775 2.200594930637337 -7.101933740995046 2.631484147770351 -6.508983115107352 2.205013116963651 -7.3804769572862 2.205013116963651 -7.096643972922929 2.635892997883588 -6.508983115107352 3.224110165411892 -6.52409510872766 2.708841950220179 -7.3804769572862 3.224110165411892 -6.547166844772381 2.684101889976966 -7.63453856792353 2.684101889976966 -7.403952422220897 3.198954593785766 -6.547166844772382 2.931676874432807 -6.66766485108719 2.277409950911386 -7.63453856792353 2.931676874432807 -6.673365396615662 2.271670746973251 -7.833707641170352 2.271670746973251 -7.640406806964966 2.925784279055681 -6.673365396615662 2.953259250368061 -6.774360631709381 1.821467194941181 -7.833707641170353 2.953259250368061 -6.774354367603451 1.821472426221418 -7.934691860163473 1.821472426221418 -7.833700798795213 2.953264816600614 -6.774354367603451 1.885462650761757 -6.781999020801852 0.7200436083193725 -7.934691860163473 1.885462650761757 -6.782008058852917 0.7200348861669447 -7.94234551951389 0.7200356484581351 -7.934701887964341 1.885453322796166 -6.782008188442811 0.6046683932719337 -6.587251094540574 -0.5017076658009313 -7.942345649103793 0.6046691471095926 -6.58723797722436 -0.501692046192276 -7.747575485735714 -0.501692046192276 -7.942331122441789 0.6046858349492025 6.649683117866516 2.518778630097707 7.809916734695435 -3.623796856403351 6.649683117866516 -3.636011437575023 7.809916734695435 2.530995086828868 7.852276925867837 -2.051139641918057 6.691939385450148 -2.051139641918057 8.053193404231466 -1.018256576941133 6.691937070977494 -2.051137945764325 6.892853595325956 -1.018255612295274 8.053191123778195 -1.018254908533119 8.053191103127452 -0.9974499057607017 6.892853574675213 -0.9974506093355069 8.052713144303427 0.07820008666477071 8.052709191062137 0.07820251111365614 6.892849574859298 -0.9974481538077652 6.892371682550782 0.07820251111365616 8.052709191062137 0.0791106921925258 6.892371682550782 0.0791106921925258 7.954167892996237 1.130304459217047 7.954158953536085 1.130309635740629 6.892362640508396 0.0791159328388503 6.793807781046568 1.130309635740629 7.954158953536085 1.256038828458484 6.793807781046567 1.256038828458484 7.767881794133284 1.893885976781469 7.77057826240271 1.891244640745734 6.796484610512178 1.253416052618986 6.683206662638841 1.891244640745734 7.77057826240271 0.5982395666867535 6.683206662638841 0.5982395666867535 7.537086536284932 1.163157345832559 7.546580016143097 1.161416096352253 6.693824913004702 0.5954478869186282 6.675086237668953 1.161416096352253 7.546580016143097 1.983805357481187 6.675086237668955 1.983805357481187 7.073812769076112 2.438574088924843 7.162312139268527 2.414526194755044 6.76706758327844 1.957880326597733 6.810479911718502 2.414526194755044</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"76\" source=\"#ID114\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID110\">\r\n                    <input semantic=\"POSITION\" source=\"#ID108\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID109\"/>\r\n                </vertices>\r\n                <triangles count=\"52\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID110\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID111\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 1 6 8 7 6 8 7 8 9 7 4 6 8 9 10 10 6 11 7 11 11 10 9 9 8 12 12 13 10 14 11 14 13 13 9 12 12 15 14 16 10 17 11 17 15 16 13 15 12 18 16 19 14 20 15 20 17 19 13 18 16 21 18 22 14 23 15 23 19 22 17 21 16 24 20 25 18 26 19 26 21 25 17 24 20 27 22 28 18 29 19 29 23 28 21 27 20 30 24 31 22 32 23 32 25 31 21 30 24 33 26 34 22 35 23 35 27 34 25 33 28 36 29 37 30 38 31 38 32 37 33 36 34 39 29 37 28 36 33 36 32 37 35 39 36 40 37 41 38 42 39 42 40 41 41 40 42 43 43 44 38 45 39 45 44 44 45 43 38 46 43 47 46 48 47 48 44 47 39 46 46 49 43 50 48 51 49 51 44 50 47 49 46 52 48 53 50 54 51 54 49 53 47 52 50 55 48 56 52 57 53 57 49 56 51 55 50 58 52 59 54 60 55 60 53 59 51 58 54 61 52 62 56 63 57 63 53 62 55 61 54 64 56 65 58 66 59 66 57 65 55 64 58 67 56 68 60 69 61 69 57 68 59 67 58 70 60 71 62 72 63 72 61 71 59 70 62 73 60 74 64 75 65 75 61 74 63 73</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID115\">\r\n            <mesh>\r\n                <source id=\"ID116\">\r\n                    <float_array count=\"792\" id=\"ID120\">-0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6480334997177124 -0.5195937156677246 0.2845224440097809 -0.6480334997177124 -0.5195937156677246 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635096669197083 -0.526203989982605 0.2845224440097809 -0.6635096669197083 -0.526203989982605 0.2845224440097809 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6482381224632263 -0.5189133882522583 0.2801555991172791 -0.6482381224632263 -0.5189133882522583 0.2801555991172791 -0.6482381224632263 -0.5189133882522583 0.2888893783092499 -0.6482381224632263 -0.5189133882522583 0.2888893783092499 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6353332996368408 -0.4940980970859528 0.2801555991172791 -0.6353332996368408 -0.4940980970859528 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6347987651824951 -0.4944190084934235 0.2845224440097809 -0.6347987651824951 -0.4944190084934235 0.2845224440097809 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6368538737297058 -0.4931806027889252 0.2764533758163452 -0.6368538737297058 -0.4931806027889252 0.2764533758163452 -0.6488213539123535 -0.5169762372970581 0.2764533758163452 -0.6488213539123535 -0.5169762372970581 0.2764533758163452 -0.6353332996368408 -0.4940980970859528 0.2888893783092499 -0.6353332996368408 -0.4940980970859528 0.2888893783092499 -0.6488213539123535 -0.5169762372970581 0.2925914824008942 -0.6488213539123535 -0.5169762372970581 0.2925914824008942 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6335422992706299 -0.4669302999973297 0.2764533758163452 -0.6335422992706299 -0.4669302999973297 0.2764533758163452 -0.6318445205688477 -0.4669302999973297 0.2801555991172791 -0.6318445205688477 -0.4669302999973297 0.2801555991172791 -0.6312496066093445 -0.4669302999973297 0.2845224440097809 -0.6312496066093445 -0.4669302999973297 0.2845224440097809 -0.6635122895240784 -0.5225611925125122 0.2950650453567505 -0.6635122895240784 -0.5225611925125122 0.2950650453567505 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.64969402551651 -0.5140764713287354 0.2950650453567505 -0.64969402551651 -0.5140764713287354 0.2950650453567505 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.64969402551651 -0.5140764713287354 0.2739797532558441 -0.64969402551651 -0.5140764713287354 0.2739797532558441 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6360813975334168 -0.4669302999973297 0.2739797532558441 -0.6360813975334168 -0.4669302999973297 0.2739797532558441 -0.6391298174858093 -0.4918101131916046 0.2739797532558441 -0.6391298174858093 -0.4918101131916046 0.2739797532558441 -0.6318445205688477 -0.4669302999973297 0.2888893783092499 -0.6318445205688477 -0.4669302999973297 0.2888893783092499 -0.6368538737297058 -0.4931806027889252 0.2925914824008942 -0.6368538737297058 -0.4931806027889252 0.2925914824008942 -0.6635141968727112 -0.5194733142852783 0.2925914824008942 -0.6635141968727112 -0.5194733142852783 0.2925914824008942 -0.650723934173584 -0.5106549263000488 0.2959337532520294 -0.650723934173584 -0.5106549263000488 0.2959337532520294 -0.6635122895240784 -0.5225611925125122 0.2739797532558441 -0.6635122895240784 -0.5225611925125122 0.2739797532558441 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.650723934173584 -0.5106549263000488 0.2731113433837891 -0.650723934173584 -0.5106549263000488 0.2731113433837891 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.637301504611969 -0.4404509365558624 0.2739797532558441 -0.637301504611969 -0.4404509365558624 0.2739797532558441 -0.6349334716796875 -0.4393340051174164 0.2764533758163452 -0.6349334716796875 -0.4393340051174164 0.2764533758163452 -0.6333513855934143 -0.4385876953601837 0.2801555991172791 -0.6333513855934143 -0.4385876953601837 0.2801555991172791 -0.6327959895133972 -0.4383257925510407 0.2845224440097809 -0.6327959895133972 -0.4383257925510407 0.2845224440097809 -0.6635154485702515 -0.5174095630645752 0.2888893783092499 -0.6635154485702515 -0.5174095630645752 0.2888893783092499 -0.6517528891563416 -0.5072346925735474 0.2950650453567505 -0.6517528891563416 -0.5072346925735474 0.2950650453567505 -0.6391298174858093 -0.4918101131916046 0.2950650453567505 -0.6391298174858093 -0.4918101131916046 0.2950650453567505 -0.6635141968727112 -0.5194733142852783 0.2764533758163452 -0.6635141968727112 -0.5194733142852783 0.2764533758163452 -0.6517528891563416 -0.5072346925735474 0.2739797532558441 -0.6517528891563416 -0.5072346925735474 0.2739797532558441 -0.6418135762214661 -0.4901936948299408 0.2731113433837891 -0.6418135762214661 -0.4901936948299408 0.2731113433837891 -0.6400948166847229 -0.4417674839496613 0.2731113433837891 -0.6400948166847229 -0.4417674839496613 0.2731113433837891 -0.6390777230262756 -0.4669302999973297 0.2731113433837891 -0.6390777230262756 -0.4669302999973297 0.2731113433837891 -0.6333513855934143 -0.4385876953601837 0.2888893783092499 -0.6333513855934143 -0.4385876953601837 0.2888893783092499 -0.6335422992706299 -0.4669302999973297 0.2925914824008942 -0.6335422992706299 -0.4669302999973297 0.2925914824008942 -0.6635158658027649 -0.5166845321655273 0.2845224440097809 -0.6635158658027649 -0.5166845321655273 0.2845224440097809 -0.6526256799697876 -0.5043348073959351 0.2925914824008942 -0.6526256799697876 -0.5043348073959351 0.2925914824008942 -0.6418135762214661 -0.4901936948299408 0.2959337532520294 -0.6418135762214661 -0.4901936948299408 0.2959337532520294 -0.6635154485702515 -0.5174095630645752 0.2801555991172791 -0.6635154485702515 -0.5174095630645752 0.2801555991172791 -0.6526256799697876 -0.5043348073959351 0.2764533758163452 -0.6526256799697876 -0.5043348073959351 0.2764533758163452 -0.6444981694221497 -0.4885759055614471 0.2739797532558441 -0.6444981694221497 -0.4885759055614471 0.2739797532558441 -0.6517580151557922 -0.4175517857074738 0.2731113433837891 -0.6517580151557922 -0.4175517857074738 0.2731113433837891 -0.6504251956939697 -0.4142893254756928 0.2739797532558441 -0.6504251956939697 -0.4142893254756928 0.2739797532558441 -0.6492962241172791 -0.4115234911441803 0.2764533758163452 -0.6492962241172791 -0.4115234911441803 0.2764533758163452 -0.6485416889190674 -0.4096752107143402 0.2801555991172791 -0.6485416889190674 -0.4096752107143402 0.2801555991172791 -0.6482764482498169 -0.4090263545513153 0.2845224440097809 -0.6482764482498169 -0.4090263545513153 0.2845224440097809 -0.6532091498374939 -0.502396821975708 0.2888893783092499 -0.6532091498374939 -0.502396821975708 0.2888893783092499 -0.6444981694221497 -0.4885759055614471 0.2950650453567505 -0.6444981694221497 -0.4885759055614471 0.2950650453567505 -0.6360813975334168 -0.4669302999973297 0.2950650453567505 -0.6360813975334168 -0.4669302999973297 0.2950650453567505 -0.6532091498374939 -0.502396821975708 0.2801555991172791 -0.6532091498374939 -0.502396821975708 0.2801555991172791 -0.6467736959457398 -0.4872048199176788 0.2764533758163452 -0.6467736959457398 -0.4872048199176788 0.2764533758163452 -0.6420736312866211 -0.4669302999973297 0.2739797532558441 -0.6420736312866211 -0.4669302999973297 0.2739797532558441 -0.6530901193618774 -0.4208144843578339 0.2739797532558441 -0.6530901193618774 -0.4208144843578339 0.2739797532558441 -0.6428875923156738 -0.4430851638317108 0.2739797532558441 -0.6428875923156738 -0.4430851638317108 0.2739797532558441 -0.6485416889190674 -0.4096752107143402 0.2888893783092499 -0.6485416889190674 -0.4096752107143402 0.2888893783092499 -0.6349334716796875 -0.4393340051174164 0.2925914824008942 -0.6349334716796875 -0.4393340051174164 0.2925914824008942 -0.6534140110015869 -0.5017167329788208 0.2845224440097809 -0.6534140110015869 -0.5017167329788208 0.2845224440097809 -0.6467736959457398 -0.4872048199176788 0.2925914824008942 -0.6467736959457398 -0.4872048199176788 0.2925914824008942 -0.6390777230262756 -0.4669302999973297 0.2959337532520294 -0.6390777230262756 -0.4669302999973297 0.2959337532520294 -0.6482942700386047 -0.4862898886203766 0.2801555991172791 -0.6482942700386047 -0.4862898886203766 0.2801555991172791 -0.6446129679679871 -0.4669302999973297 0.2764533758163452 -0.6446129679679871 -0.4669302999973297 0.2764533758163452 -0.6630308032035828 -0.4085699617862701 0.2739797532558441 -0.6630308032035828 -0.4085699617862701 0.2739797532558441 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6482942700386047 -0.4862898886203766 0.2888893783092499 -0.6482942700386047 -0.4862898886203766 0.2888893783092499 -0.6420736312866211 -0.4669302999973297 0.2950650453567505 -0.6420736312866211 -0.4669302999973297 0.2950650453567505 -0.637301504611969 -0.4404509365558624 0.2950650453567505 -0.637301504611969 -0.4404509365558624 0.2950650453567505 -0.6488281488418579 -0.4859673082828522 0.2845224440097809 -0.6488281488418579 -0.4859673082828522 0.2845224440097809 -0.6463103890419006 -0.4669302999973297 0.2801555991172791 -0.6463103890419006 -0.4669302999973297 0.2801555991172791 -0.6452553868293762 -0.4442016780376434 0.2764533758163452 -0.6452553868293762 -0.4442016780376434 0.2764533758163452 -0.6630327105522156 -0.4116580784320831 0.2764533758163452 -0.6630327105522156 -0.4116580784320831 0.2764533758163452 -0.6542187929153442 -0.4235804378986359 0.2764533758163452 -0.6542187929153442 -0.4235804378986359 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6492962241172791 -0.4115234911441803 0.2925914824008942 -0.6492962241172791 -0.4115234911441803 0.2925914824008942 -0.6446129679679871 -0.4669302999973297 0.2925914824008942 -0.6446129679679871 -0.4669302999973297 0.2925914824008942 -0.6400948166847229 -0.4417674839496613 0.2959337532520294 -0.6400948166847229 -0.4417674839496613 0.2959337532520294 -0.646905779838562 -0.4669302999973297 0.2845224440097809 -0.646905779838562 -0.4669302999973297 0.2845224440097809 -0.6468372344970703 -0.444947749376297 0.2801555991172791 -0.6468372344970703 -0.444947749376297 0.2801555991172791 -0.6630285978317261 -0.4049277007579804 0.2845224440097809 -0.6630285978317261 -0.4049277007579804 0.2845224440097809 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6463103890419006 -0.4669302999973297 0.2888893783092499 -0.6463103890419006 -0.4669302999973297 0.2888893783092499 -0.6428875923156738 -0.4430851638317108 0.2950650453567505 -0.6428875923156738 -0.4430851638317108 0.2950650453567505 -0.6504251956939697 -0.4142893254756928 0.2950650453567505 -0.6504251956939697 -0.4142893254756928 0.2950650453567505 -0.6473929882049561 -0.4452097713947296 0.2845224440097809 -0.6473929882049561 -0.4452097713947296 0.2845224440097809 -0.6549736261367798 -0.4254280030727387 0.2801555991172791 -0.6549736261367798 -0.4254280030727387 0.2801555991172791 -0.6630337834358215 -0.4137214124202728 0.2801555991172791 -0.6630337834358215 -0.4137214124202728 0.2801555991172791 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6452553868293762 -0.4442016780376434 0.2925914824008942 -0.6452553868293762 -0.4442016780376434 0.2925914824008942 -0.6517580151557922 -0.4175517857074738 0.2959337532520294 -0.6517580151557922 -0.4175517857074738 0.2959337532520294 -0.6468372344970703 -0.444947749376297 0.2888893783092499 -0.6468372344970703 -0.444947749376297 0.2888893783092499 -0.6552384495735169 -0.426077276468277 0.2845224440097809 -0.6552384495735169 -0.426077276468277 0.2845224440097809 -0.663034200668335 -0.4144457876682282 0.2845224440097809 -0.663034200668335 -0.4144457876682282 0.2845224440097809 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6530901193618774 -0.4208144843578339 0.2950650453567505 -0.6530901193618774 -0.4208144843578339 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6549736261367798 -0.4254280030727387 0.2888893783092499 -0.6549736261367798 -0.4254280030727387 0.2888893783092499 -0.6630337834358215 -0.4137214124202728 0.2888893783092499 -0.6630337834358215 -0.4137214124202728 0.2888893783092499 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6542187929153442 -0.4235804378986359 0.2925914824008942 -0.6542187929153442 -0.4235804378986359 0.2925914824008942 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630327105522156 -0.4116580784320831 0.2925914824008942 -0.6630327105522156 -0.4116580784320831 0.2925914824008942 -0.6630308032035828 -0.4085699617862701 0.2950650453567505 -0.6630308032035828 -0.4085699617862701 0.2950650453567505</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"264\" source=\"#ID120\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID117\">\r\n                    <float_array count=\"792\" id=\"ID121\">0.7232596242239593 -0.6905746602767982 -0.001467838888265382 0.7057607724956698 -0.6735924503473242 0.2194879104675313 0.8076016226056172 -0.5897264131612695 -0.00154168243093702 -0.8076016226056172 0.5897264131612695 0.00154168243093702 -0.7057607724956698 0.6735924503473242 -0.2194879104675313 -0.7232596242239593 0.6905746602767982 0.001467838888265382 -0.9999998181937388 -0.0006022943216548701 2.922395420187849e-005 -0.9999997999824708 -0.0006324832160101544 2.860604413076798e-010 -0.9999997897974863 -0.0006483864460522037 -2.491010877726737e-011 0.9999997897974863 0.0006483864460522037 2.491010877726737e-011 0.9999997999824708 0.0006324832160101544 -2.860604413076798e-010 0.9999998181937388 0.0006022943216548701 -2.922395420187849e-005 0.7817612866731201 -0.5645061459265469 -0.2649190477680753 -0.7817612866731201 0.5645061459265469 0.2649190477680753 0.7832106863400417 -0.5638831090884926 0.2619482011533125 -0.7832106863400417 0.5638831090884926 -0.2619482011533125 -0.9999997958179734 -0.0006383792109791188 2.891357388609432e-005 0.9999997958179734 0.0006383792109791188 -2.891357388609432e-005 -0.9999998181931959 -0.0006022952886622905 -2.922260522741146e-005 0.9999998181931959 0.0006022952886622905 2.922260522741146e-005 0.9154130318517745 -0.2904204377266433 -0.2787022613230957 -0.9154130318517745 0.2904204377266433 0.2787022613230957 0.711127203597459 -0.6677643370207396 -0.2199747497030292 -0.711127203597459 0.6677643370207396 0.2199747497030292 0.952739552757128 -0.3037871859535902 -0.0008308204056597102 -0.952739552757128 0.3037871859535902 0.0008308204056597102 0.645984127761978 -0.6063440422865414 0.463736357279881 -0.645984127761978 0.6063440422865414 -0.463736357279881 -0.999999776244766 -0.0006689441745444033 -4.910144988000729e-006 0.999999776244766 0.0006689441745444033 4.910144988000729e-006 -0.9999997958172164 -0.0006383804483021269 -2.891243502256493e-005 0.9999997958172164 0.0006383804483021269 2.891243502256493e-005 0.7843147677524072 -0.2413030462060462 -0.5715095668290867 -0.7843147677524072 0.2413030462060462 0.5715095668290867 0.6885006209850318 -0.4767691864279585 -0.5464961461676083 -0.6885006209850318 0.4767691864279585 0.5464961461676083 0.9168326109734188 -0.2874979990120987 0.2770611196463751 -0.9168326109734188 0.2874979990120987 -0.2770611196463751 0.6900022504499387 -0.4765417725743317 0.5447979748179445 -0.6900022504499387 0.4765417725743317 -0.5447979748179445 -0.9999997637842953 -0.000687336419680339 0 0.9999997637842953 0.000687336419680339 -0 0.4938122844858366 -0.4499642787109471 0.744097826616243 -0.4938122844858366 0.4499642787109471 -0.744097826616243 -0.9999997762445951 -0.000668944429587437 4.910191440555164e-006 0.9999997762445951 0.000668944429587437 -4.910191440555164e-006 0.6578188065603675 -0.5980410579776557 -0.4578441991643669 -0.6578188065603675 0.5980410579776557 0.4578441991643669 0.8205908215871317 -0.03194403562537936 -0.5706227143348928 -0.8205908215871317 0.03194403562537936 0.5706227143348928 0.960457130199687 -0.0363137738537825 -0.2760496529196837 -0.960457130199687 0.0363137738537825 0.2760496529196837 0.9993171501328293 -0.03694905120123387 3.264550519562491e-005 -0.9993171501328293 0.03694905120123387 -3.264550519562491e-005 -0.793910982057031 0.1969421269369894 0.5752557267918115 0.793910982057031 -0.1969421269369894 -0.5752557267918115 0.1386984645759476 -0.1243363006127545 0.982498458153604 0.4651519897602477 -0.2948357761580864 0.8346888591081955 -0.4651519897602477 0.2948357761580864 -0.8346888591081955 -0.1386984645759476 0.1243363006127545 -0.982498458153604 -0.9999997637842955 -0.0006873364193195035 -1.096442815385977e-020 0.9999997637842955 0.0006873364193195035 1.096442815385977e-020 0.5128913528758033 -0.4461619504614353 -0.7334043728433013 0.4688183208013235 -0.2943521348334288 -0.8328062216386418 -0.4688183208013235 0.2943521348334288 0.8328062216386418 -0.5128913528758033 0.4461619504614353 0.7334043728433013 0.5130920796549894 -0.02080795852300087 -0.8580813170425183 -0.5130920796549894 0.02080795852300087 0.8580813170425183 0.499551869261499 -0.1430168053203858 -0.8543969354540623 -0.499551869261499 0.1430168053203858 0.8543969354540623 0.9604894321225267 -0.03495709229521331 0.2761123910280198 -0.9604894321225267 0.03495709229521331 -0.2761123910280198 0.786679117859316 -0.2363443375900022 0.5703308860768734 -0.786679117859316 0.2363443375900022 -0.5703308860768734 -0.9000246676130381 0.3063624940737907 0.3099961611261122 0.9000246676130381 -0.3063624940737907 -0.3099961611261122 0.03633634782028813 -0.006584840887365813 0.9993179222337458 -0.03633634782028813 0.006584840887365813 -0.9993179222337458 -0.799626186182979 0.1929925127090643 -0.568640354185935 0.799626186182979 -0.1929925127090643 0.568640354185935 0.1525444722947879 -0.1285229675501668 -0.9799040926460118 0.04807963178047214 -0.007935340825018506 -0.9988119839959095 -0.04807963178047214 0.007935340825018506 0.9988119839959095 -0.1525444722947879 0.1285229675501668 0.9799040926460118 0.5072631551753162 0.1267094788403512 -0.8524252456219195 -0.5072631551753162 -0.1267094788403512 0.8524252456219195 0.7940988277295695 0.212649686279568 -0.5693743607888617 -0.7940988277295695 -0.212649686279568 0.5693743607888617 0.9262255379225123 0.2559747769389783 -0.2767366373850652 -0.9262255379225123 -0.2559747769389783 0.2767366373850652 0.9631119231717006 0.2691006602835732 0.0005080152095792424 -0.9631119231717006 -0.2691006602835732 -0.0005080152095792424 -0.9371087965896104 0.3236025621236881 0.1307994080313711 0.9371087965896104 -0.3236025621236881 -0.1307994080313711 -0.4683157211142002 0.2666126435683628 0.8423764500784526 0.4683157211142002 -0.2666126435683628 -0.8423764500784526 0.500693008818584 -0.1383898050868787 0.8544909436431782 -0.500693008818584 0.1383898050868787 -0.8544909436431782 -0.9063167357382785 0.2980070758240811 -0.2996360413559952 0.9063167357382785 -0.2980070758240811 0.2996360413559952 -0.4686403143303254 0.2634205410351238 -0.8431997831742701 0.4686403143303254 -0.2634205410351238 0.8431997831742701 0.02920398259114767 -0.0026130516583192 -0.9995700572555417 -0.02920398259114767 0.0026130516583192 0.9995700572555417 0.03605850256194776 0.003067083053787333 -0.9993449741678452 -0.03605850256194776 -0.003067083053787333 0.9993449741678452 0.01386902869683676 -0.001056629619223589 -0.9999032621093174 -0.01386902869683676 0.001056629619223589 0.9999032621093174 0.9256378545608276 0.2570954480242819 0.277662552046944 -0.9256378545608276 -0.2570954480242819 -0.277662552046944 0.8206358178234287 -0.02964836110656165 0.5706818984241283 -0.8206358178234287 0.02964836110656165 -0.5706818984241283 -0.9469246469125361 0.3214516112137361 0.001604592677941127 0.9469246469125361 -0.3214516112137361 -0.001604592677941127 -0.7641051893798622 0.3901493579511544 0.5137380052644216 0.7641051893798622 -0.3901493579511544 -0.5137380052644216 0.02537449276774779 -0.002236188127699197 0.9996755146443453 -0.02537449276774779 0.002236188127699197 -0.9996755146443453 -0.9400560163134932 0.3172067396078798 -0.1251981251462831 0.9400560163134932 -0.3172067396078798 0.1251981251462831 -0.7711342244953958 0.3842843387634247 -0.5076194980426203 0.7711342244953958 -0.3842843387634247 0.5076194980426203 -0.4738115753659977 0.1197652890400627 -0.872444191103558 0.4738115753659977 -0.1197652890400627 0.872444191103558 0.02958654968916754 0.007286484206468705 -0.9995356638086503 -0.02958654968916754 -0.007286484206468705 0.9995356638086503 0.4363488436236744 0.2955605560399648 -0.8498491891986655 -0.4363488436236744 -0.2955605560399648 0.8498491891986655 0.6631409982889462 0.4874660914062892 -0.5679972060824027 -0.6631409982889462 -0.4874660914062892 0.5679972060824027 0.7623336718204757 0.5848074391059263 -0.2772140544328147 -0.7623336718204757 -0.5848074391059263 0.2772140544328147 0.7886950662680942 0.6147829703463104 0.001411317304633245 -0.7886950662680942 -0.6147829703463104 -0.001411317304633245 -0.8781743790133187 0.4175251680829177 0.23341485398728 0.8781743790133187 -0.4175251680829177 -0.23341485398728 -0.4800902307928689 0.113296584546636 0.8698719757684558 0.4800902307928689 -0.113296584546636 -0.8698719757684558 0.5131883005520358 -0.01875718759237305 0.8580710553853554 -0.5131883005520358 0.01875718759237305 -0.8580710553853554 -0.8823796484183437 0.4126666692035347 -0.2260804639626802 0.8823796484183437 -0.4126666692035347 0.2260804639626802 -0.7972849488781376 0.1792800600182346 -0.5763639218169749 0.7972849488781376 -0.1792800600182346 0.5763639218169749 -0.4952765194930661 0.02034356393238864 -0.8684971552315893 0.4952765194930661 -0.02034356393238864 0.8684971552315893 -0.435356577143355 -0.2671834708247518 -0.8596962508095875 0.435356577143355 0.2671834708247518 0.8596962508095875 -0.4665287049009216 -0.1084638747966296 -0.8778305960534585 0.4665287049009216 0.1084638747966296 0.8778305960534585 0.75950835167557 0.5870581609984589 0.280195965959837 -0.75950835167557 -0.5870581609984589 -0.280195965959837 0.7932463932521849 0.2145728539145977 0.5698408988089085 -0.7932463932521849 -0.2145728539145977 -0.5698408988089085 -0.9085196475422841 0.41782745437537 0.003502627562550796 0.9085196475422841 -0.41782745437537 -0.003502627562550796 -0.800869417060235 0.1689324330988504 0.5745171971881278 0.800869417060235 -0.1689324330988504 -0.5745171971881278 0.0139431092792251 -0.0009866306018833713 0.9999023033595247 -0.0139431092792251 0.0009866306018833713 -0.9999023033595247 -0.9422268574159193 0.1931477037499293 -0.273683236059958 0.9422268574159193 -0.1931477037499293 0.273683236059958 -0.814835838977536 0.03369062831624135 -0.5787119292717505 0.814835838977536 -0.03369062831624135 0.5787119292717505 -0.7873146849475823 -0.2010835114851383 -0.5828387498053776 0.7873146849475823 0.2010835114851383 0.5828387498053776 0.1180304988758481 0.1181393092581005 -0.9859573545256091 -0.1180304988758481 -0.1181393092581005 0.9859573545256091 0.4501212254398852 0.4575449027803883 -0.7668399731027207 -0.4501212254398852 -0.4575449027803883 0.7668399731027207 0.6005852136669773 0.6332674469621952 -0.4881288167508398 -0.6005852136669773 -0.6332674469621952 0.4881288167508398 0.6618861883828568 0.7123657780164507 -0.2333273921746658 -0.6618861883828568 -0.7123657780164507 0.2333273921746658 0.6804093504380189 0.7328301506810396 0.001756726876281748 -0.6804093504380189 -0.7328301506810396 -0.001756726876281748 -0.9431414902949492 0.1855658782828246 0.2757706186332155 0.9431414902949492 -0.1855658782828246 -0.2757706186332155 -0.4953182918781093 0.01780718095942004 0.8685290404109873 0.4953182918781093 -0.01780718095942004 -0.8685290404109873 0.5072865408438301 0.1285882324951642 0.8521299384146005 -0.5072865408438301 -0.1285882324951642 -0.8521299384146005 -0.9816073418028719 0.1908993751890319 0.002110703943471509 0.9816073418028719 -0.1908993751890319 -0.002110703943471509 -0.9593484895959843 0.0388996844240557 -0.279530481453477 0.9593484895959843 -0.0388996844240557 0.279530481453477 -0.7914424681559653 -0.1706815775771435 -0.5869298243188631 0.7914424681559653 0.1706815775771435 0.5869298243188631 -0.894520193110629 -0.312927838115438 -0.3192331315037981 0.894520193110629 0.312927838115438 0.3192331315037981 -0.7273473914158 -0.4107184345321895 -0.5497964530042537 0.7273473914158 0.4107184345321895 0.5497964530042537 0.6685900741135386 0.7058359896190666 0.2340574044018388 -0.6685900741135386 -0.7058359896190666 -0.2340574044018388 0.658643651050992 0.4905658629674176 0.5705555845149989 -0.658643651050992 -0.4905658629674176 -0.5705555845149989 -0.814926590417651 0.03015739503281149 0.5787790457118306 0.814926590417651 -0.03015739503281149 -0.5787790457118306 0.03814091694684892 0.003413426189993021 0.9992665405066354 -0.03814091694684892 -0.003413426189993021 -0.9992665405066354 -0.9992278934255273 0.03928889095366263 -6.929232985555457e-006 0.9992278934255273 -0.03928889095366263 6.929232985555457e-006 -0.938809669902001 -0.1951630115952412 -0.2838094476996348 0.938809669902001 0.1951630115952412 0.2838094476996348 -0.9999997743790419 0.0006717453873031948 -2.186125590766863e-011 0.9999997743790419 -0.0006717453873031948 2.186125590766863e-011 -0.9999997749421429 0.0006709065984553252 -1.09573478369303e-020 0.9999997749421429 -0.0006709065984553252 1.09573478369303e-020 -0.9999997090200168 0.0007628080343569275 9.153401029092946e-006 0.9999997090200168 -0.0007628080343569275 -9.153401029092946e-006 -0.9999996992523692 0.000775549469651193 4.265134099829579e-006 0.9999996992523692 -0.000775549469651193 -4.265134099829579e-006 -0.9999997274454909 0.0007369711162139045 -4.452547571276294e-005 0.9999997274454909 -0.0007369711162139045 4.452547571276294e-005 -0.9999997406987353 0.0007201405851322528 -7.10704149141186e-010 0.9999997406987353 -0.0007201405851322528 7.10704149141186e-010 -0.9999997274456218 0.0007369709769112005 4.452484465423866e-005 0.9999997274456218 -0.0007369709769112005 -4.452484465423866e-005 -0.9594382249524349 0.03651452657942052 0.2795442395199753 0.9594382249524349 -0.03651452657942052 -0.2795442395199753 -0.4640933731506169 -0.1107502342990451 0.8788354377244861 0.4640933731506169 0.1107502342990451 -0.8788354377244861 0.4349693534041575 0.2980530013238956 0.8496858654826425 -0.4349693534041575 -0.2980530013238956 -0.8496858654826425 -0.979356998294315 -0.2021349591101914 -0.001152474498922521 0.979356998294315 0.2021349591101914 0.001152474498922521 -0.8509474623195337 -0.4576673394521972 -0.2577382834789834 0.8509474623195337 0.4576673394521972 0.2577382834789834 -0.9355765566034081 -0.3265447567807907 -0.1344062072714054 0.9355765566034081 0.3265447567807907 0.1344062072714054 -0.9999996992525759 0.0007755492042714741 -4.264928487867499e-006 0.9999996992525759 -0.0007755492042714741 4.264928487867499e-006 0.6150877754416196 0.6241638324603201 0.481753607927045 -0.6150877754416196 -0.6241638324603201 -0.481753607927045 -0.7902842389987238 -0.1746512333911817 0.5873225419351337 0.7902842389987238 0.1746512333911817 -0.5873225419351337 0.03727133908825687 0.009044912639848819 0.9992642477532686 -0.03727133908825687 -0.009044912639848819 -0.9992642477532686 -0.9386010172620667 -0.1981899545211005 0.2823984283269608 0.9386010172620667 0.1981899545211005 -0.2823984283269608 -0.8837544363354132 -0.467943007525534 -0.002727263359898528 0.8837544363354132 0.467943007525534 0.002727263359898528 -0.9471856471481824 -0.3206759458915923 -0.002507501348223877 0.9471856471481824 0.3206759458915923 0.002507501348223877 -0.9999997090203798 0.000762807559321599 -9.153314517965673e-006 0.9999997090203798 -0.000762807559321599 9.153314517965673e-006 -0.4270570059187908 -0.2684750778700419 0.8634485776572645 0.4270570059187908 0.2684750778700419 -0.8634485776572645 0.472911004094651 0.4540552020476878 0.7551086383426046 -0.472911004094651 -0.4540552020476878 -0.7551086383426046 -0.8503974480748343 -0.4605720304353962 0.2543571997967144 0.8503974480748343 0.4605720304353962 -0.2543571997967144 -0.9399779765243473 -0.3171413384034758 0.1259475094031056 0.9399779765243473 0.3171413384034758 -0.1259475094031056 -0.9999997749421428 0.0006709065987186352 3.287346944984957e-020 0.9999997749421428 -0.0006709065987186352 -3.287346944984957e-020 -0.7241743640535807 -0.4145373799428673 0.5511172752488299 0.7241743640535807 0.4145373799428673 -0.5511172752488299 0.1340688008837682 0.1240082058184067 0.9831823439826858 -0.1340688008837682 -0.1240082058184067 -0.9831823439826858 -0.9035746812554419 -0.301257729151216 0.3046253043014963 0.9035746812554419 0.301257729151216 -0.3046253043014963 -0.7948187846833775 -0.1958141005338769 0.5743865750054989 0.7948187846833775 0.1958141005338769 -0.5743865750054989</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"264\" source=\"#ID121\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID119\">\r\n                    <float_array count=\"1336\" id=\"ID122\">-8.459148306365966 2.320610608435393 -8.453924324230584 2.355189974618953 -8.235664210561588 2.320610608435393 5.345779393385952 2.272761294528312 5.35302374423285 2.23840807802204 5.257842260045958 2.23840807802204 -8.459148306365965 2.096954745877603 -8.235664210561586 2.096954745877603 -8.232170868965739 2.06225925348499 -8.229866286368056 2.339826235524017 -8.448096962230043 2.374520389255541 -8.226340435739356 2.374520389255541 5.325515883125656 2.301301490633831 5.34614743659245 2.272178271686187 5.258210303311181 2.237825055086888 5.35302374423285 2.238078368792828 5.345779393385952 2.203725855621364 5.257842260045958 2.238078368792828 -7.594643879022609 1.892138130946195 -7.599735688577622 1.926711021119759 -7.314941693144679 1.892138130946195 -8.448096962230043 2.088729449784985 -8.453347287020552 2.123305648105701 -8.226340435739356 2.088729449784985 -7.614613133164902 2.519425711850718 -7.609543474466718 2.55400131525583 -7.33019722651946 2.519425711850718 -8.448096962230043 2.440066517344678 -8.433138761923601 2.471261304889587 -8.226340435739356 2.440066517344678 5.293901944627884 2.321234741744345 5.324792655280616 2.301776046490474 5.257487075161621 2.23829961114335 5.346147425702103 2.204308861027132 5.325515872235314 2.175184704299745 5.25821029242083 2.238661374291615 -7.59464387902261 0.847508270273163 -7.31494169314468 0.847508270273163 -7.313817229690283 0.8152187374453735 -7.614613133164902 1.847488849611038 -7.330197226519459 1.847488849611038 -7.329844071479497 1.812789092317539 -8.448096962230043 1.610256536976383 -8.226340435739356 1.610256536976383 -8.216305077654839 1.578020394015013 -7.315322611721951 2.58773636338952 -7.594643879022609 2.622436635247417 -7.314941693144679 2.622436635247417 -8.207874315730333 2.477237724286042 -8.414427950004418 2.509420127842605 -8.197568291130997 2.509420127842605 5.257694584180658 2.328012192249299 5.294109453664709 2.321178356806438 5.257694584180658 2.238243226210277 -8.414427950004418 2.404469505689812 -8.391710570707931 2.429960516845966 -8.197568291130997 2.404469505689812 5.324792655982698 2.174710171893183 5.293901945329966 2.15525100774944 5.257487075863704 2.238186841685243 -8.414427950004418 1.680627594748813 -8.429604281088645 1.711757990864516 -8.197568291130997 1.680627594748813 -5.690121388297848 0.1905733787220271 -5.697321005850073 0.2223746195841103 -5.425537767858401 0.1905733787220271 -7.533739806625457 1.074394969231607 -7.548425411989435 1.105508108359522 -7.267384254108391 1.074394969231607 -5.70996238626119 1.606689537717041 -5.71246452611048 1.641334536429509 -5.436053500309336 1.606689537717041 -5.716350316942823 2.797108435003465 -5.713852095007093 2.831754306080557 -5.439181483673173 2.797108435003465 -7.594643879022609 3.064196424748586 -7.580148294606151 3.095363784577919 -7.314941693144679 3.064196424748586 5.257261649911184 2.328012192249299 5.257261649911184 2.238243226210277 5.220833665769637 2.321178356806438 -8.357548818346192 1.899075206820555 -8.33017279422689 1.919163127378879 -8.147913995851576 1.899075206820555 -8.357548818346194 2.460148851109297 -8.147913995851576 2.460148851109297 -8.163976206223536 2.432104690786913 5.294109453664709 2.155307392279307 5.257694584180658 2.148475901285807 -8.357548818346192 0.9137672563702848 -8.38077106938216 0.9389755219671715 -8.147913995851576 0.9137672563702848 -8.182138385212012 0.742171433417169 -8.414427950004418 0.7704347662281051 -8.197568291130997 0.7704347662281051 -5.428715747259455 -1.704161865476215 -5.690121388297847 -1.676388150076523 -5.4255377678584 -1.676388150076524 -5.438215962025859 0.1266433971109121 -5.709962386261191 0.1586387343795093 -5.436053500309336 0.1586387343795093 -7.265366515898596 -0.5414825644176899 -7.533739806625457 -0.5129706370093234 -7.267384254108391 -0.5129706370093239 -5.439943273501687 1.586970821745632 -5.716350316942821 1.621635477153723 -5.439181483673172 1.621635477153723 -5.435295758054295 2.814971835455708 -5.709962386261191 2.849637242763926 -5.436053500309336 2.849637242763926 -7.268748940745635 3.223204487094314 -7.533739806625457 3.255487443403001 -7.267384254108392 3.255487443403001 5.221365332197959 2.321322867834767 5.257793316222684 2.238387737206852 5.190486544042464 2.30186417257458 8.278584240919347 -0.4954740699094379 8.250463842632156 -0.5149304624881447 8.077276431021296 -0.4954740699094379 -8.278584240919347 1.99989558902176 -8.077276431021296 1.99989558902176 -8.097163232592376 1.975562923541217 -7.533739806625457 3.520699317831119 -7.51175487315617 3.546135961707067 -7.267384254108391 3.520699317831119 5.257261649911184 2.148475901285807 5.220833665769637 2.155307392279307 -8.278584240919347 -0.5584549503005105 -8.306696024953093 -0.5390068718870841 -8.077276431021296 -0.5584549503005101 -8.128962961671316 -0.5649448027075027 -8.357548818346194 -0.5401549389140391 -8.147913995851578 -0.5401549389140395 -7.42943998662339 -0.1647572133505751 -7.451897832370662 -0.1395771713629692 -7.182986502978527 -0.1647572133505749 -4.106498705344571 -2.194737263876049 -4.371573289103265 -2.194737263876049 -4.372742006118543 -2.166866418174485 -5.658881325239604 -1.625850436882716 -5.669716572530494 -1.598596161089331 -5.408222599321642 -1.625850436882716 -4.344407637896152 -0.1724349091188175 -4.345262429244977 -0.1404014375225808 -4.068094255706499 -0.1724349091188171 -4.327264597134145 1.488405310062259 -4.327580443456421 1.523074254803126 -4.043438262940182 1.488405310062259 -4.321733655741939 2.912919540576105 -4.321412509367989 2.947589152101175 -4.035270892659064 2.912919540576105 -5.709962386261191 3.874449404872737 -5.70279892686596 3.906254839774855 -5.436053500309336 3.874449404872737 5.19044319722537 2.301835729927616 5.257749969418736 2.238359294568514 5.169805681238873 2.272712511066155 8.184874888882753 0.8555462819586317 8.160387914107073 0.8310995600623022 7.991694895770678 0.8555462819586317 8.184874888882753 -0.9033583255625841 7.991694895770677 -0.9033583255625837 8.012566787185671 -0.8795559162780426 -7.429439986623393 3.502378420519628 -7.402942013570105 3.522435967625112 -7.18298650297853 3.502378420519628 -7.42943998662339 3.691872979870877 -7.182986502978527 3.691872979870877 -7.185612665447719 3.663392052305356 5.257793314422883 2.238098715214484 5.221365330398156 2.155162881251762 5.190486542242661 2.17462204540182 8.184874888882753 2.311433348499024 8.213760123864551 2.292684013666642 7.991694895770677 2.311433348499024 8.057393700875089 1.973876432916301 8.278584240919347 1.949556275431979 8.077276431021295 1.949556275431979 -7.279957710792657 -2.13595743916171 -7.30721571253933 -2.116541219188251 -7.056785922228732 -2.13595743916171 -7.179886540892554 -2.225423302269734 -7.429439986623391 -2.199964688915634 -7.182986502978528 -2.199964688915634 -4.106498705344571 -4.315338944522543 -4.118364496719114 -4.338783795582042 -4.371573289103265 -4.315338944522543 -4.078057156177957 -2.084249906790512 -4.344407637896152 -2.057020180700147 -4.068094255706499 -2.057020180700147 -5.411866621041948 -3.759065283276399 -5.658881325239604 -3.734692179949262 -5.408222599321642 -3.734692179949263 -4.050050888315531 -0.07999528710715549 -4.327264597134145 -0.04820659046825556 -4.043438262940183 -0.04820659046825556 -4.037586288133102 1.518865553538542 -4.32173365574194 1.553508179276814 -4.035270892659065 1.553508179276813 -4.327264597134145 2.919530116198718 -4.043438262940183 2.919530116198718 -4.041117794381885 2.884887003072012 -5.423412798604202 3.92044888372028 -5.690121388297848 3.95244492192354 -5.425537767858401 3.95244492192354 5.169773852910238 2.272662087988296 5.257718141093744 2.238308871496426 5.162523542740018 2.238308871496426 8.091502253624396 1.615081577113413 8.074755632710328 1.584451892168086 7.905025930413123 1.615081577113413 8.091502253624396 0.3617049907004171 7.905025930413125 0.3617049907004173 7.923471454017586 0.3888275851167384 7.279957710792657 -2.071767945251741 7.252707923918537 -2.091174697282529 7.056785922228733 -2.071767945251742 -7.279957710792657 3.60230930383809 -7.056785922228732 3.60230930383809 -7.060890679069933 3.576938197173214 -5.690121388297848 4.784846942203251 -5.679372873464557 4.81212212846314 -5.425537767858401 4.784846942203251 5.257749966396306 2.238127159158331 5.19044319420294 2.174650489354293 5.169805678216441 2.203774645995499 8.091502253624395 2.847984580969486 8.116559106319665 2.823897488017409 7.905025930413123 2.847984580969486 7.974000727324746 2.711421312809561 8.184874888882751 2.683990357308276 7.991694895770676 2.683990357308276 7.089414076980404 3.891409795122575 7.117562916148956 3.87281496631796 6.889218849468708 3.891409795122575 7.052671928082037 3.579085085218491 7.279957710792657 3.553704666771124 7.056785922228732 3.553704666771123 -5.618014521290714 -3.740963454464607 -5.630933483310515 -3.717494260488303 -5.383777369702075 -3.740963454464607 -0.9337447459037462 -5.237268806807606 -1.202525370192819 -5.237268806807607 -1.202785001514176 -5.212034885784941 -4.155551980529968 -4.368411102527899 -4.407385614296162 -4.368411102527899 -4.408595755932867 -4.343888470665049 -0.7866734789045558 -2.905686300756087 -1.079361224108526 -2.905686300756086 -1.079995554315324 -2.877355485465953 -0.9899921090106084 -0.6054973022645677 -0.9906208085041063 -0.5732895900857723 -0.6769883797933513 -0.6054973022645677 -0.9368824927316599 1.345601344553227 -0.9371471508370505 1.380291196550636 -0.6102822656157736 1.345601344553227 -0.9194164943493827 3.052803907308949 -0.9191376025459386 3.087494386794017 -0.5880403229384407 3.052803907308949 -4.327264597134145 4.214075276869146 -4.326363227868169 4.246107105709727 -4.043438262940183 4.214075276869145 5.257718141093744 2.238177579226426 5.169773852910238 2.203825066069364 5.162523542740018 2.238177579226426 8.020958995273697 2.075390039611 8.014984018665016 2.040885238245398 7.838859520104162 2.075390039611 7.851534492708137 1.338298761784583 8.020958995273695 1.306640681498651 7.83885952010416 1.306640681498651 7.089414076980401 -0.1522422350910452 7.065549128877333 -0.1766089148531753 6.889218849468707 -0.1522422350910452 7.089414076980402 -2.579620428781995 6.889218849468708 -2.579620428781995 6.894568634402707 -2.554382359578488 -5.658881325239604 4.999445459736856 -5.646101014844469 5.022962266460473 -5.408222599321642 4.999445459736856 -5.658881325239605 4.851752253498015 -5.408222599321643 4.851752253498015 -5.405134640673079 4.823972583106356 8.020958995273697 2.703698637209602 8.037965997820322 2.6731569720878 7.838859520104162 2.703698637209602 8.091502253624396 2.731726712195991 7.905025930413123 2.731726712195991 7.892699923699313 2.763470810421477 6.882337915206716 3.846495242284363 6.906958097270341 3.822597695924058 6.701317974862309 3.846495242284363 6.884686030210803 3.930892229955167 7.089414076980401 3.902559950926199 6.889218849468707 3.902559950926199 5.355005519845296 5.038864350061447 5.57281521324942 5.038864350061446 5.585904221985749 5.015441758617409 5.387276543565392 5.00751871024453 5.618014521290716 4.983135647496873 5.383777369702076 4.983135647496874 0.9337447459037446 6.413703438449323 0.9573595173927529 6.435386439937327 1.202525370192817 6.413703438449323 -0.7866734789045521 -5.06538932238841 -0.809858496376345 -5.087357951888587 -1.079361224108522 -5.06538932238841 4.155551980529967 5.573661995742216 4.167590095393595 5.597052401176532 4.407385614296162 5.573661995742215 -0.6769883797933518 -2.47346946447306 -0.6963824410752739 -2.499892482786617 -0.989992109010609 -2.47346946447306 -0.6231349085514287 -0.2886335442522294 -0.9368824927316583 -0.2571275521303555 -0.6102822656157725 -0.2571275521303555 -0.5925382545852054 1.452190109230196 -0.9194164943493816 1.486802000928491 -0.588040322938439 1.486802000928491 -0.9368824927316583 2.989260231790058 -0.6102822656157725 2.989260231790058 -0.6057718714373334 2.95464864565857 -4.344407637896152 4.176216277967253 -4.068094255706499 4.176216277967253 -4.061437166037296 4.144434184346377 7.994555236402969 2.418633329209624 8.000562573761977 2.384132705547334 7.813977695463445 2.418633329209624 7.818468817536674 1.998685546094638 7.994555236402969 1.964060680592401 7.813977695463445 1.964060680592401 6.882337915206716 1.108482911829678 6.865884915840715 1.077919330033254 6.701317974862309 1.108482911829678 6.882337915206716 -1.001403397725176 6.701317974862309 -1.001403397725177 6.706936325541064 -0.97319204391688 5.618014521290714 -3.688706682456192 5.60508291867447 -3.71218400114565 5.383777369702075 -3.688706682456193 -5.618014521290715 5.033489398688582 -5.383777369702075 5.033489398688582 -5.380277708517728 5.009102549842747 -4.34312926208276 5.330608004661404 -4.068094255706499 5.302740465696545 -4.344407637896151 5.302740465696545 8.020958995273697 2.437946820433476 7.838859520104161 2.437946820433476 7.834412148872458 2.472574482747183 6.711663862443613 3.201320591517932 6.728497075353185 3.170884508632846 6.543262750347934 3.201320591517932 6.882337915206716 3.486455530030453 6.701317974862309 3.486455530030453 6.697575632248265 3.51861822226603 5.530021900809667 4.804071587326873 5.54124409688892 4.776914686637295 5.326128570022592 4.804071587326872 5.357832170269662 4.829204193083857 5.572815213249419 4.801405637170106 5.355005519845295 4.801405637170106 4.208948529117996 5.568963007813125 4.44753877437411 5.568963007813125 4.448560841545348 5.544438233461815 -1.007018039784137 6.431708172088143 -0.8493013544758682 6.431708172088143 -0.8662356188876785 6.406453664322858 1.10573487894831 6.407177696861663 1.350699105388963 6.407177696861663 1.350351194428278 6.381944449917796 1.395056283149452 -5.230085027013481 1.225824621021148 -5.230085027013481 1.241285039505927 -5.204251745528667 1.731934685679073 -2.962044495702981 1.55085691539324 -2.962044495702981 1.562863942988197 -2.933032022317872 1.983521061971769 -0.6855567854979721 1.792201439262944 -0.6855567854979721 1.799661996535315 -0.6529928500682611 2.136748522003975 1.313328052295595 1.938490401881309 1.313328052295595 1.940985160294814 1.348064942679381 2.188314297829721 3.079320608771617 1.987604097177415 3.079320608771617 1.985150605086615 3.114060013520255 -0.936882492731661 4.623051910599274 -0.9361309016619213 4.655257145087229 -0.6102822656157747 4.623051910599274 6.711663862443615 1.925024402047909 6.70575696549514 1.890531342677316 6.543262750347935 1.925024402047909 6.547575844512357 0.5069292619910031 6.711663862443615 0.4748116824340639 6.543262750347935 0.4748116824340637 5.572815213249419 -1.559100047478916 5.561722558084639 -1.586289528753696 5.355005519845295 -1.559100047478916 5.572815213249418 -3.775989891247839 5.355005519845295 -3.775989891247839 5.351670638961791 -3.751591927864505 -4.370194115780932 5.634314081380831 -4.106498705344571 5.609796319296637 -4.371573289103265 5.609796319296637 -4.371573289103265 5.271712918633719 -4.106498705344571 5.271712918633719 -4.096431206840382 5.244507346248376 6.643839798432421 2.567619195287584 6.649796789849342 2.533132168263443 6.47980489056156 2.567619195287584 6.711663862443613 2.699058771651552 6.543262750347934 2.699058771651552 6.541735545556305 2.733739170767791 5.498446087312136 3.885599378014982 5.505997639730058 3.853853266771846 5.303836361074548 3.885599378014983 5.327927385702473 3.941081011540729 5.530021900809665 3.909072920174765 5.326128570022592 3.909072920174765 4.257936460904844 5.222382075887188 4.48531345142495 5.222382075887188 4.486030902111493 5.194500438426589 4.219299388511197 5.178528147736031 4.44753877437411 5.151390473061319 4.208948529117997 5.151390473061319 -1.00701803978414 5.45184854982558 -0.9830551004479032 5.476616749527783 -0.8493013544758715 5.45184854982558 -1.395056283149454 6.384619143505996 -1.367900988315397 6.404899443116974 -1.22582462102115 6.384619143505996 1.126180452989459 5.641416503633121 1.350699105388962 5.615488709512939 1.105734878948308 5.615488709512939 1.731934685679073 -4.924178516475186 1.705792500385768 -4.945271664832444 1.550856915393241 -4.924178516475187 1.983521061971769 -2.3058824449882 1.962029323693447 -2.332015406115985 1.792201439262944 -2.3058824449882 2.136748522003976 -0.1619157663335245 2.122662978108879 -0.1933642392432385 1.93849040188131 -0.1619157663335245 2.188314297829719 1.517674831104229 2.183404800846037 1.483068430645079 1.987604097177413 1.517674831104229 2.136748522003975 2.95799400297503 2.141691388046876 2.923389843946922 1.93849040188131 2.95799400297503 -0.9899921090106101 4.415539712514128 -0.6769883797933529 4.415539712514128 -0.6640286535419743 4.384061745863043 6.481409524701137 1.72795506612671 6.643839798432421 1.693276133926626 6.47980489056156 1.693276133926626 5.530021900809665 0.2562638933463456 5.522535512819788 0.2245090923624617 5.326128570022592 0.2562638933463454 5.530021900809667 -1.71325762960622 5.326128570022592 -1.71325762960622 5.323437547324017 -1.685451073282144 4.406175641169333 -4.342441555283165 4.155551980529967 -4.317921419826119 4.407385614296161 -4.31792141982612 -4.407385614296161 5.62613219503817 -4.155551980529967 5.62613219503817 -4.14352539796433 5.602737416250526 -0.989049937042964 5.986932463028932 -0.6769883797933529 5.958607270824244 -0.9899921090106101 5.958607270824243 5.486959261738098 2.820684156459011 5.489632356636179 2.786046726792639 5.295621030574568 2.820684156459011 5.304443311461843 2.848018489033896 5.498446087312138 2.813351435311252 5.30383636107455 2.813351435311252 4.513108861298631 4.158010227951072 4.513515557441372 4.125972469394512 4.293220230864972 4.158010227951072 4.26494726907729 4.08214504933332 4.48531345142495 4.050410280721512 4.257936460904844 4.050410280721513 1.276725279204792 5.889163354326482 1.501575939317806 5.889163354326482 1.500775228390917 5.860837398112774 4.120657713958259 2.174783692688514 4.089776541609949 2.1553245285458 4.053353924651989 2.238260362477218 -0.631284774629305 5.907484127101301 -0.4830188650751356 5.907484127101301 -0.4985508620873287 5.879526141804989 4.053290871418724 2.238243226210277 4.089713488378332 2.155307392279307 4.053290871418724 2.148475901285807 4.054157899394946 2.238243226210277 4.054157899394946 2.148475901285807 4.01773051086569 2.155307392279307 4.054543914286919 2.238138304462622 4.018116525819456 2.155202470514856 3.987236541310906 2.174661634661405 4.054255546355624 2.23832752867375 3.986948173372667 2.174850858877091 3.966310655794683 2.203975015514911 4.054050695621173 2.238652068903375 3.966105805124072 2.204299555643396 3.95886741765176 2.238652068903375 3.966105805124072 2.272187594718053 4.054050695621173 2.237834378123268 3.95886741765176 2.237834378123268 2.136748522003975 4.656719431448113 1.93849040188131 4.656719431448113 1.931376664778171 4.68933052335335 5.498446087312137 1.654010558828326 5.495781333232114 1.61937203389967 5.303836361074549 1.654010558828326 5.302105984347215 0.1561552233427898 5.498446087312137 0.1241456503715618 5.303836361074548 0.1241456503715618 4.446672468588617 -2.112488711766805 4.208948529117997 -2.084610017992233 4.44753877437411 -2.084610017992233 4.44753877437411 -4.266698714593822 4.208948529117997 -4.266698714593822 4.196732168112794 -4.243364883480098 -1.078604252253852 6.463181153954725 -0.7866734789045543 6.437952798452399 -1.079361224108524 6.437952798452399 -0.7866734789045549 5.77736591715584 -0.767013479870341 5.751065149833229 -1.079361224108526 5.77736591715584 5.295022843372047 1.621605019435101 5.486959261738098 1.586937174499785 5.295621030574568 1.586937174499785 4.523059274737537 2.916007856548877 4.523192791943769 2.881337674012432 4.305799353268193 2.916007856548877 4.295706542211787 2.88038939282568 4.513108861298631 2.845753687310846 4.293220230864972 2.845753687310846 1.618313505717711 4.572318658344436 1.617513135747064 4.540114369776875 1.406837416130729 4.572318658344435 1.290660398817509 4.237757019502931 1.501575939317806 4.20653928295437 1.276725279204791 4.20653928295437 4.141023112258878 2.203732033367162 4.120389769618377 2.174607876719661 4.053085980356384 2.238084546537417 -0.6146994697045521 4.020679997856751 -0.4830188650751344 3.989996889396601 -0.6312847746293043 3.989996889396601 3.986948171177394 2.301635356761356 4.05425554416035 2.238158921409632 3.96631065359941 2.272512137903279 1.98352106197177 4.322119444130752 1.997885599264552 4.29075003516839 1.792201439262946 4.322119444130752 4.48531345142495 -0.06275353672841606 4.484833871098414 -0.09478981890238702 4.257936460904843 -0.06275353672841606 4.48531345142495 -1.948321272137886 4.257936460904844 -1.948321272137886 4.247444760144271 -1.921217425104833 1.202278269767634 -5.213554036127535 0.9337447459037468 -5.18831941884492 1.20252537019282 -5.18831941884492 -0.9337447459037468 6.470280942389443 -0.9101352261482021 6.44859316348806 -1.20252537019282 6.470280942389442 1.7810361668454 5.948996361269827 1.983521061971767 5.91977691270677 1.792201439262943 5.91977691270677 4.513108861298631 1.553437099301205 4.512966207749581 1.51876624239257 4.293220230864972 1.553437099301205 4.523059274737538 1.560638837012923 4.305799353268195 1.560638837012923 4.303304420538273 1.595274856461392 1.663014187917965 3.057044881378341 1.662698406695706 3.022354883904754 1.456228398706928 3.057044881378341 1.411811474799222 2.904143609495244 1.618313505717711 2.869571771675831 1.406837416130728 2.869571771675831 -0.2102850955705954 4.533779046459811 -0.2212219667555027 4.501830716375358 -0.3524154584033468 4.533779046459811 4.148360119053441 2.238232274855406 4.141116365372862 2.203879761700982 4.053179233460373 2.238232274855406 4.018116527126163 2.321283278909248 4.054543915593625 2.238348148296289 3.987236542617612 2.30182458365257 4.51310886129863 0.03565696069686471 4.293220230864971 0.03565696069686471 4.286140664411874 0.06738142067043182 1.350988144508157 -2.831136704223236 1.105734878948305 -2.80280497975379 1.350699105388959 -2.802804979753791 1.105734878948308 -4.987727928423084 1.081620465374786 -4.966387199934666 1.350699105388962 -4.987727928423085 1.536701820058918 6.367885355987457 1.73193468567907 6.341592512008873 1.550856915393238 6.341592512008873 1.731934685679077 5.650744780346956 1.754094166479398 5.624959601068585 1.550856915393245 5.650744780346956 1.618313505717711 1.409318260218672 1.618593808566288 1.374627377623547 1.406837416130728 1.409318260218672 1.663014187917964 1.548769447821672 1.456228398706927 1.548769447821672 1.451225850928825 1.583339440626227 -0.1086696165038081 3.030118861325131 -0.1125886202209725 2.995463149197006 -0.2486929241486502 3.030118861325131 -0.3464514958988113 2.804383934901902 -0.2102850955705932 2.769879506764597 -0.3524154584033451 2.769879506764597 4.141116365372862 2.272607393820292 4.148360119053441 2.23825417733106 4.053179233460373 2.23825417733106 4.054157899394946 2.328012192249299 4.01773051086569 2.321178356806438 1.501575939317805 -0.5012014929778504 1.502112372354255 -0.5334083234158705 1.276725279204791 -0.5012014929778509 1.501575939317806 -2.213331115450854 1.276725279204791 -2.213331115450854 1.255857814214288 -2.187612521976157 -1.210357660518652 -5.207987081071356 -1.395056283149451 -5.182156022682914 -1.225824621021147 -5.182156022682913 1.395056283149452 6.445100058395354 1.42221195935433 6.424813982187559 1.225824621021148 6.445100058395354 1.618313505717711 -0.02352780711635812 1.406837416130728 -0.02352780711635768 1.39268811687711 0.007629375589039378 -0.2102850955705948 1.435104646698213 -0.2064391479506883 1.400443172948768 -0.3524154584033462 1.435104646698212 -0.1086696165038081 1.662898754661748 -0.2486929241486496 1.662898754661748 -0.2547078584367069 1.69739840721977 4.120389765485858 2.301878342480607 4.141023108126361 2.272755123612851 4.053085976223867 2.238401907107786 4.053290871418724 2.328012192249299 4.089713488378332 2.321178356806438 -0.8349414320856191 -2.851902013096587 -1.007018039784136 -2.823559249374875 -0.8493013544758671 -2.823559249374875 -1.007018039784137 -4.861525074475524 -1.03528126658282 -4.842203439682592 -0.8493013544758686 -4.861525074475524 -0.4830188650751377 -0.4695719101567735 -0.472649456256577 -0.5016362722773671 -0.6312847746293077 -0.4695719101567735 -0.2102850955705954 0.3145772758262392 -0.3524154584033462 0.3145772758262392 -0.3694040583669178 0.3451226396423521 4.089776541823367 2.321161220312439 4.120657714171677 2.301702525059598 4.053353924865407 2.23822608971583 -0.4830188650751338 -1.801078081036106 -0.6312847746293038 -1.801078081036107 -0.6561056020352341 -1.776838728686103</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"668\" source=\"#ID122\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID118\">\r\n                    <input semantic=\"POSITION\" source=\"#ID116\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID117\"/>\r\n                </vertices>\r\n                <triangles count=\"448\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID118\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID119\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 16 12 6 13 8 14 9 14 11 13 17 12 7 15 18 16 8 17 9 17 19 16 10 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 28 30 16 31 8 32 9 32 17 31 29 30 18 33 30 34 8 35 9 35 31 34 19 33 12 36 20 37 32 38 33 38 21 37 13 36 2 39 24 40 20 41 21 41 25 40 3 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 40 51 28 52 8 53 9 53 29 52 41 51 26 54 42 55 38 56 39 56 43 55 27 54 30 57 44 58 8 59 9 59 45 58 31 57 46 60 22 61 34 62 35 62 23 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 40 78 8 79 54 80 55 80 9 79 41 78 42 81 56 82 57 83 58 83 59 82 43 81 42 84 57 85 38 86 39 86 58 85 43 84 8 53 44 87 60 88 61 88 45 87 9 53 62 89 46 90 63 91 64 91 47 90 65 89 63 92 46 93 34 94 35 94 47 93 64 92 66 95 32 96 48 97 49 97 33 96 67 95 48 98 20 99 50 100 51 100 21 99 49 98 68 101 34 102 32 103 33 103 35 102 69 101 50 104 24 105 52 106 53 106 25 105 51 104 52 107 36 108 70 109 71 109 37 108 53 107 36 110 38 111 72 112 73 112 39 111 37 110 54 113 8 114 74 115 75 115 9 114 55 113 56 116 54 117 76 118 77 118 55 117 59 116 56 119 76 120 57 121 58 121 77 120 59 119 38 122 57 123 72 124 73 124 58 123 39 122 8 79 60 125 78 126 79 126 61 125 9 79 80 127 62 128 81 129 82 129 65 128 83 127 81 130 62 131 63 132 64 132 65 131 82 130 63 133 34 134 68 135 69 135 35 134 64 133 84 136 66 137 48 138 49 138 67 137 85 136 68 139 32 140 66 141 67 141 33 140 69 139 48 142 50 143 86 144 87 144 51 143 49 142 50 145 52 146 88 147 89 147 53 146 51 145 52 148 70 149 90 150 91 150 71 149 53 148 36 151 72 152 70 153 71 153 73 152 37 151 74 154 8 155 92 156 93 156 9 155 75 154 54 157 74 158 94 159 95 159 75 158 55 157 54 160 94 161 76 162 77 162 95 161 55 160 57 163 76 164 96 165 97 165 77 164 58 163 57 166 96 167 72 168 73 168 97 167 58 166 8 169 78 170 98 171 99 171 79 170 9 169 78 172 80 173 100 174 101 174 83 173 79 172 100 175 80 176 81 177 82 177 83 176 101 175 81 178 63 179 102 180 103 180 64 179 82 178 102 181 63 182 68 183 69 183 64 182 103 181 84 184 104 185 66 186 67 186 105 185 85 184 84 187 48 188 86 189 87 189 49 188 85 187 106 190 68 191 66 192 67 192 69 191 107 190 86 193 50 194 88 195 89 195 51 194 87 193 88 196 52 197 90 198 91 198 53 197 89 196 70 199 108 200 90 201 91 201 109 200 71 199 70 202 72 203 110 204 111 204 73 203 71 202 92 205 8 206 112 207 113 207 9 206 93 205 74 208 92 209 114 210 115 210 93 209 75 208 74 211 114 212 94 213 95 213 115 212 75 211 76 214 94 215 116 216 117 216 95 215 77 214 76 217 116 218 96 219 97 219 117 218 77 217 72 220 96 221 110 222 111 222 97 221 73 220 8 223 98 224 118 225 119 225 99 224 9 223 98 226 78 227 120 228 121 228 79 227 99 226 120 229 78 230 100 231 101 231 79 230 121 229 100 232 81 233 122 234 123 234 82 233 101 232 122 235 81 236 102 237 103 237 82 236 123 235 102 238 68 239 106 240 107 240 69 239 103 238 124 241 104 242 84 243 85 243 105 242 125 241 104 244 106 245 66 246 67 246 107 245 105 244 126 247 84 248 86 249 87 249 85 248 127 247 86 250 88 251 128 252 129 252 89 251 87 250 88 253 90 254 130 255 131 255 91 254 89 253 90 256 108 257 132 258 133 258 109 257 91 256 70 259 110 260 108 261 109 261 111 260 71 259 8 262 118 263 112 264 113 264 119 263 9 262 92 265 112 266 134 267 135 267 113 266 93 265 114 268 92 269 134 270 135 270 93 269 115 268 94 271 114 272 136 273 137 273 115 272 95 271 94 274 136 275 116 276 117 276 137 275 95 274 96 277 116 278 138 279 139 279 117 278 97 277 96 280 138 281 110 282 111 282 139 281 97 280 118 283 98 284 140 285 141 285 99 284 119 283 98 286 120 287 140 288 141 288 121 287 99 286 120 289 100 290 142 291 143 291 101 290 121 289 142 292 100 293 122 294 123 294 101 293 143 292 144 295 122 296 102 297 103 297 123 296 145 295 144 298 102 299 106 300 107 300 103 299 145 298 124 301 146 302 104 303 105 303 147 302 125 301 126 304 124 305 84 306 85 306 125 305 127 304 104 307 148 308 106 309 107 309 149 308 105 307 128 310 126 311 86 312 87 312 127 311 129 310 128 313 88 314 130 315 131 315 89 314 129 313 130 316 90 317 132 318 133 318 91 317 131 316 108 319 150 320 132 321 133 321 151 320 109 319 110 322 152 323 108 324 109 324 153 323 111 322 112 325 118 326 154 327 155 327 119 326 113 325 134 328 112 329 154 330 155 330 113 329 135 328 114 331 134 332 156 333 157 333 135 332 115 331 114 334 156 335 136 336 137 336 157 335 115 334 116 337 136 338 158 339 159 339 137 338 117 337 116 340 158 341 138 342 139 342 159 341 117 340 138 343 152 344 110 345 111 345 153 344 139 343 118 346 140 347 154 348 155 348 141 347 119 346 140 349 120 350 160 351 161 351 121 350 141 349 120 352 142 353 160 354 161 354 143 353 121 352 142 355 122 356 162 357 163 357 123 356 143 355 162 358 122 359 144 360 145 360 123 359 163 358 148 361 144 362 106 363 107 363 145 362 149 361 164 364 146 365 124 366 125 366 147 365 165 364 146 367 148 368 104 369 105 369 149 368 147 367 166 370 124 371 126 372 127 372 125 371 167 370 168 373 126 374 128 375 129 375 127 374 169 373 170 376 128 377 130 378 131 378 129 377 171 376 172 379 130 380 132 381 133 381 131 380 173 379 174 382 132 383 150 384 151 384 133 383 175 382 108 385 152 386 150 387 151 387 153 386 109 385 134 388 154 389 176 390 177 390 155 389 135 388 156 391 134 392 176 393 177 393 135 392 157 391 136 394 156 395 178 396 179 396 157 395 137 394 136 397 178 398 158 399 159 399 179 398 137 397 158 400 180 401 138 402 139 402 181 401 159 400 138 403 180 404 152 405 153 405 181 404 139 403 154 406 140 407 182 408 183 408 141 407 155 406 140 409 160 410 182 411 183 411 161 410 141 409 160 412 142 413 184 414 185 414 143 413 161 412 184 415 142 416 162 417 163 417 143 416 185 415 186 418 162 419 144 420 145 420 163 419 187 418 186 421 144 422 148 423 149 423 145 422 187 421 164 424 188 425 146 426 147 426 189 425 165 424 166 427 164 428 124 429 125 429 165 428 167 427 190 430 148 431 146 432 147 432 149 431 191 430 168 433 166 434 126 435 127 435 167 434 169 433 170 436 168 437 128 438 129 438 169 437 171 436 172 439 170 440 130 441 131 441 171 440 173 439 174 442 172 443 132 444 133 444 173 443 175 442 192 445 174 446 150 447 151 447 175 446 193 445 152 448 194 449 150 450 151 450 195 449 153 448 176 451 154 452 182 453 183 453 155 452 177 451 156 454 176 455 196 456 197 456 177 455 157 454 156 457 196 458 178 459 179 459 197 458 157 457 178 460 198 461 158 462 159 462 199 461 179 460 158 463 198 464 180 465 181 465 199 464 159 463 180 466 194 467 152 468 153 468 195 467 181 466 182 469 160 470 200 471 201 471 161 470 183 469 200 472 160 473 184 474 185 474 161 473 201 472 184 475 162 476 202 477 203 477 163 476 185 475 202 478 162 479 186 480 187 480 163 479 203 478 190 481 186 482 148 483 149 483 187 482 191 481 188 484 164 485 204 486 205 486 165 485 189 484 188 487 190 488 146 489 147 489 191 488 189 487 204 490 164 491 206 492 207 492 165 491 205 490 204 493 206 494 208 495 209 495 207 494 205 493 204 496 208 497 210 498 211 498 209 497 205 496 204 499 210 500 212 501 213 501 211 500 205 499 204 502 212 503 214 504 215 504 213 503 205 502 216 505 204 506 214 507 215 507 205 506 217 505 192 508 150 509 194 510 195 510 151 509 193 508 176 511 182 512 218 513 219 513 183 512 177 511 196 514 176 515 218 516 219 516 177 515 197 514 196 517 220 518 178 519 179 519 221 518 197 517 178 520 220 521 198 522 199 522 221 521 179 520 198 523 222 524 180 525 181 525 223 524 199 523 222 526 194 527 180 528 181 528 195 527 223 526 218 529 182 530 200 531 201 531 183 530 219 529 200 532 184 533 224 534 225 534 185 533 201 532 224 535 184 536 202 537 203 537 185 536 225 535 202 538 186 539 226 540 227 540 187 539 203 538 226 541 186 542 190 543 191 543 187 542 227 541 228 544 188 545 204 546 205 546 189 545 229 544 228 547 190 548 188 549 189 549 191 548 229 547 230 550 204 551 216 552 217 552 205 551 231 550 232 553 192 554 194 555 195 555 193 554 233 553 196 556 218 557 234 558 235 558 219 557 197 556 196 559 234 560 220 561 221 561 235 560 197 559 220 562 236 563 198 564 199 564 237 563 221 562 236 565 222 566 198 567 199 567 223 566 237 565 222 568 232 569 194 570 195 570 233 569 223 568 218 571 200 572 238 573 239 573 201 572 219 571 200 574 224 575 238 576 239 576 225 575 201 574 224 577 202 578 240 579 241 579 203 578 225 577 240 580 202 581 226 582 227 582 203 581 241 580 226 583 190 584 228 585 229 585 191 584 227 583 242 586 228 587 204 588 205 588 229 587 243 586 244 589 204 590 230 591 231 591 205 590 245 589 218 592 238 593 234 594 235 594 239 593 219 592 234 595 246 596 220 597 221 597 247 596 235 595 246 598 236 599 220 600 221 600 237 599 247 598 236 601 248 602 222 603 223 603 249 602 237 601 248 604 232 605 222 606 223 606 233 605 249 604 238 607 224 608 250 609 251 609 225 608 239 607 224 610 240 611 250 612 251 612 241 611 225 610 240 613 226 614 242 615 243 615 227 614 241 613 242 616 226 617 228 618 229 618 227 617 243 616 252 619 242 620 204 621 205 621 243 620 253 619 254 622 204 493 244 623 245 623 205 493 255 622 234 624 238 625 256 626 257 626 239 625 235 624 234 627 256 628 246 629 247 629 257 628 235 627 246 630 258 631 236 632 237 632 259 631 247 630 258 633 248 634 236 635 237 635 249 634 259 633 238 636 250 637 256 638 257 638 251 637 239 636 250 639 240 640 252 641 253 641 241 640 251 639 240 642 242 643 252 644 253 644 243 643 241 642 260 645 252 646 204 647 205 647 253 646 261 645 254 648 262 649 204 490 205 490 263 649 255 648 256 650 262 651 246 652 247 652 263 651 257 650 262 653 258 654 246 655 247 655 259 654 263 653 256 656 250 657 260 658 261 658 251 657 257 656 250 659 252 660 260 661 261 661 253 660 251 659 262 662 260 663 204 664 205 664 261 663 263 662 256 665 260 666 262 667 263 667 261 666 257 665</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID123\">\r\n            <mesh>\r\n                <source id=\"ID124\">\r\n                    <float_array count=\"804\" id=\"ID128\">-0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7703003287315369 -0.5612730979919434 0.2852768898010254 -0.7703003287315369 -0.5612730979919434 0.2852768898010254 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557626962661743 -0.5678825378417969 0.2799702882766724 -0.7557626962661743 -0.5678825378417969 0.2799702882766724 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7686104774475098 -0.5605920553207398 0.2893087267875671 -0.7686104774475098 -0.5605920553207398 0.2893087267875671 -0.7716054916381836 -0.5605920553207398 0.281104177236557 -0.7716054916381836 -0.5605920553207398 0.281104177236557 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7827324271202087 -0.5360980033874512 0.2898147404193878 -0.7827324271202087 -0.5360980033874512 0.2898147404193878 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7837280631065369 -0.535775899887085 0.2855293154716492 -0.7837280631065369 -0.535775899887085 0.2855293154716492 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7807338237762451 -0.535775899887085 0.2937338352203369 -0.7807338237762451 -0.535775899887085 0.2937338352203369 -0.7667932510375977 -0.5586550235748291 0.2925863564014435 -0.7667932510375977 -0.5586550235748291 0.2925863564014435 -0.7835687398910523 -0.534860372543335 0.2815302610397339 -0.7835687398910523 -0.534860372543335 0.2815302610397339 -0.772327184677124 -0.5586550235748291 0.2774266302585602 -0.772327184677124 -0.5586550235748291 0.2774266302585602 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7860668897628784 -0.5086090564727783 0.2910321354866028 -0.7860668897628784 -0.5086090564727783 0.2910321354866028 -0.7870047688484192 -0.5086090564727783 0.2867254912853241 -0.7870047688484192 -0.5086090564727783 0.2867254912853241 -0.7866801619529724 -0.5086090564727783 0.2826657593250275 -0.7866801619529724 -0.5086090564727783 0.2826657593250275 -0.7521452307701111 -0.5642404556274414 0.2898727059364319 -0.7521452307701111 -0.5642404556274414 0.2898727059364319 -0.7651250958442688 -0.5557551383972168 0.2946110367774963 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7651250958442688 -0.5557551383972168 0.2946110367774963 -0.7723551988601685 -0.5557551383972168 0.2748038470745087 -0.7723551988601685 -0.5557551383972168 0.2748038470745087 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7840102910995483 -0.5086090564727783 0.2949300408363342 -0.7840102910995483 -0.5086090564727783 0.2949300408363342 -0.7780358195304871 -0.534860372543335 0.296690046787262 -0.7780358195304871 -0.534860372543335 0.296690046787262 -0.7851429581642151 -0.5086090564727783 0.27947136759758 -0.7851429581642151 -0.5086090564727783 0.27947136759758 -0.782279908657074 -0.5334889888763428 0.2784262001514435 -0.782279908657074 -0.5334889888763428 0.2784262001514435 -0.7529913187026978 -0.5611518621444702 0.2875483632087708 -0.7529913187026978 -0.5611518621444702 0.2875483632087708 -0.7638605833053589 -0.5523343086242676 0.2950736284255981 -0.7638605833053589 -0.5523343086242676 0.2950736284255981 -0.7716865539550781 -0.5523343086242676 0.2736347615718842 -0.7716865539550781 -0.5523343086242676 0.2736347615718842 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7593755125999451 -0.5642404556274414 0.2700657248497009 -0.7593755125999451 -0.5642404556274414 0.2700657248497009 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7846143841743469 -0.4800049960613251 0.290501743555069 -0.7846143841743469 -0.4800049960613251 0.290501743555069 -0.7855896949768066 -0.4802669584751129 0.286208987236023 -0.7855896949768066 -0.4802669584751129 0.286208987236023 -0.7853732705116272 -0.4810132682323456 0.2821890711784363 -0.7853732705116272 -0.4810132682323456 0.2821890711784363 -0.7839964628219605 -0.4821297228336334 0.2790530025959015 -0.7839964628219605 -0.4821297228336334 0.2790530025959015 -0.7542600035667419 -0.5590887069702148 0.2840702533721924 -0.7542600035667419 -0.5590887069702148 0.2840702533721924 -0.763191282749176 -0.548913836479187 0.2939048111438751 -0.763191282749176 -0.548913836479187 0.2939048111438751 -0.7750492691993713 -0.5334889888763428 0.2982333302497864 -0.7750492691993713 -0.5334889888763428 0.2982333302497864 -0.7800555229187012 -0.5318727493286133 0.2766901254653931 -0.7800555229187012 -0.5318727493286133 0.2766901254653931 -0.7704221606254578 -0.548913836479187 0.2740978002548218 -0.7704221606254578 -0.548913836479187 0.2740978002548218 -0.7585252523422241 -0.5611518621444702 0.2723884582519531 -0.7585252523422241 -0.5611518621444702 0.2723884582519531 -0.7825949788093567 -0.4802669584751129 0.2944135665893555 -0.7825949788093567 -0.4802669584751129 0.2944135665893555 -0.7811463475227356 -0.5086090564727783 0.297825813293457 -0.7811463475227356 -0.5086090564727783 0.297825813293457 -0.7816710472106934 -0.4834472239017487 0.2772795259952545 -0.7816710472106934 -0.4834472239017487 0.2772795259952545 -0.7826264500617981 -0.5086090564727783 0.2776279151439667 -0.7826264500617981 -0.5086090564727783 0.2776279151439667 -0.7557573914527893 -0.5583648681640625 0.2799681127071381 -0.7557573914527893 -0.5583648681640625 0.2799681127071381 -0.7632195949554443 -0.5460140705108643 0.2912820279598236 -0.7632195949554443 -0.5460140705108643 0.2912820279598236 -0.7722298502922058 -0.5318727493286133 0.2981289625167847 -0.7722298502922058 -0.5318727493286133 0.2981289625167847 -0.7772368788719177 -0.5302550792694092 0.2765855491161346 -0.7772368788719177 -0.5302550792694092 0.2765855491161346 -0.7687534689903259 -0.5460140705108643 0.2761222422122955 -0.7687534689903259 -0.5460140705108643 0.2761222422122955 -0.7572545409202576 -0.5590887069702148 0.2758658826351166 -0.7572545409202576 -0.5590887069702148 0.2758658826351166 -0.7700717449188232 -0.4507050812244415 0.2851933538913727 -0.7700717449188232 -0.4507050812244415 0.2851933538913727 -0.7713201642036438 -0.4513538777828217 0.2810003161430359 -0.7713201642036438 -0.4513538777828217 0.2810003161430359 -0.7718814015388489 -0.4532025158405304 0.2772639095783234 -0.7718814015388489 -0.4532025158405304 0.2772639095783234 -0.7716686725616455 -0.4559684097766876 0.2745532691478729 -0.7716686725616455 -0.4559684097766876 0.2745532691478729 -0.7707153558731079 -0.4592308700084686 0.2732801735401154 -0.7707153558731079 -0.4592308700084686 0.2732801735401154 -0.7639413475990295 -0.5440757274627686 0.2876043915748596 -0.7639413475990295 -0.5440757274627686 0.2876043915748596 -0.7700060606002808 -0.5302550792694092 0.2963924407958984 -0.7700060606002808 -0.5302550792694092 0.2963924407958984 -0.7779124975204468 -0.5086090564727783 0.2992783784866333 -0.7779124975204468 -0.5086090564727783 0.2992783784866333 -0.7795143723487854 -0.5086090564727783 0.2774169743061066 -0.7795143723487854 -0.5086090564727783 0.2774169743061066 -0.774250328540802 -0.5288839340209961 0.2781288921833038 -0.774250328540802 -0.5288839340209961 0.2781288921833038 -0.7669360041618347 -0.5440757274627686 0.2793997526168823 -0.7669360041618347 -0.5440757274627686 0.2793997526168823 -0.7683249115943909 -0.4513538777828217 0.2892045080661774 -0.7683249115943909 -0.4513538777828217 0.2892045080661774 -0.7798391580581665 -0.4810132682323456 0.2973486185073853 -0.7798391580581665 -0.4810132682323456 0.2973486185073853 -0.7691658139228821 -0.462493509054184 0.2736393809318543 -0.7691658139228821 -0.462493509054184 0.2736393809318543 -0.7787491083145142 -0.4847645461559296 0.2771378755569458 -0.7787491083145142 -0.4847645461559296 0.2771378755569458 -0.7652463316917419 -0.5433958768844605 0.2834318280220032 -0.7652463316917419 -0.5433958768844605 0.2834318280220032 -0.7687168121337891 -0.5288839340209961 0.2932883203029633 -0.7687168121337891 -0.5288839340209961 0.2932883203029633 -0.7748002409934998 -0.5086090564727783 0.299067348241806 -0.7748002409934998 -0.5086090564727783 0.299067348241806 -0.7762805819511414 -0.5086090564727783 0.2788696885108948 -0.7762805819511414 -0.5086090564727783 0.2788696885108948 -0.771552324295044 -0.5279688835144043 0.2810851335525513 -0.771552324295044 -0.5279688835144043 0.2810851335525513 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.7598279118537903 -0.4502493441104889 0.270230770111084 -0.7598279118537903 -0.4502493441104889 0.270230770111084 -0.7685574293136597 -0.5279688835144043 0.2892895638942719 -0.7685574293136597 -0.5279688835144043 0.2892895638942719 -0.7722839117050171 -0.5086090564727783 0.2972239553928375 -0.7722839117050171 -0.5086090564727783 0.2972239553928375 -0.7767665386199951 -0.4821297228336334 0.298860102891922 -0.7767665386199951 -0.4821297228336334 0.298860102891922 -0.7756767272949219 -0.4858811795711517 0.2786497473716736 -0.7756767272949219 -0.4858811795711517 0.2786497473716736 -0.7734167575836182 -0.5086090564727783 0.2817656397819519 -0.7734167575836182 -0.5086090564727783 0.2817656397819519 -0.7695537805557251 -0.5276470184326172 0.2850039303302765 -0.7695537805557251 -0.5276470184326172 0.2850039303302765 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.766347348690033 -0.4532025158405304 0.2924236953258514 -0.766347348690033 -0.4532025158405304 0.2924236953258514 -0.7589777112007141 -0.4533375799655914 0.272553950548172 -0.7589777112007141 -0.4533375799655914 0.272553950548172 -0.7672565579414368 -0.4652592241764069 0.2755759060382843 -0.7672565579414368 -0.4652592241764069 0.2755759060382843 -0.7707462310791016 -0.5086090564727783 0.2940293550491333 -0.7707462310791016 -0.5086090564727783 0.2940293550491333 -0.7738451957702637 -0.4834472239017487 0.2987184822559357 -0.7738451957702637 -0.4834472239017487 0.2987184822559357 -0.7729213237762451 -0.4866270124912262 0.2815848290920258 -0.7729213237762451 -0.4866270124912262 0.2815848290920258 -0.7713596820831299 -0.5086090564727783 0.285663366317749 -0.7713596820831299 -0.5086090564727783 0.285663366317749 -0.7562143206596375 -0.4466072618961334 0.2801350057125092 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7562143206596375 -0.4466072618961334 0.2801350057125092 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.7704225182533264 -0.5086090564727783 0.2899697721004486 -0.7704225182533264 -0.5086090564727783 0.2899697721004486 -0.7715195417404175 -0.4847645461559296 0.2969449162483215 -0.7715195417404175 -0.4847645461559296 0.2969449162483215 -0.7644380927085877 -0.4559684097766876 0.2943599820137024 -0.7644380927085877 -0.4559684097766876 0.2943599820137024 -0.7652781009674072 -0.4671074450016022 0.2787948548793793 -0.7652781009674072 -0.4671074450016022 0.2787948548793793 -0.7709025144577026 -0.4868890345096588 0.285496324300766 -0.7709025144577026 -0.4868890345096588 0.285496324300766 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7577064633369446 -0.4554002583026886 0.2760307788848877 -0.7577064633369446 -0.4554002583026886 0.2760307788848877 -0.770143449306488 -0.4858811795711517 0.2938092648983002 -0.770143449306488 -0.4858811795711517 0.2938092648983002 -0.7628887891769409 -0.4592308700084686 0.2947191298007965 -0.7628887891769409 -0.4592308700084686 0.2947191298007965 -0.7635319828987122 -0.4677572548389435 0.2828062176704407 -0.7635319828987122 -0.4677572548389435 0.2828062176704407 -0.7699267864227295 -0.4866270124912262 0.2897888720035553 -0.7699267864227295 -0.4866270124912262 0.2897888720035553 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7562091946601868 -0.4561249315738678 0.2801329493522644 -0.7562091946601868 -0.4561249315738678 0.2801329493522644 -0.7619361281394959 -0.462493509054184 0.29344642162323 -0.7619361281394959 -0.462493509054184 0.29344642162323 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7622835040092468 -0.4671074450016022 0.2869994938373566 -0.7622835040092468 -0.4671074450016022 0.2869994938373566 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7547121644020081 -0.4554002583026886 0.2842352688312531 -0.7547121644020081 -0.4554002583026886 0.2842352688312531 -0.7617230415344238 -0.4652592241764069 0.2907354831695557 -0.7617230415344238 -0.4652592241764069 0.2907354831695557 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7525970935821533 -0.4502493441104889 0.2900377213954926 -0.7525970935821533 -0.4502493441104889 0.2900377213954926 -0.7534435987472534 -0.4533375799655914 0.2877134084701538 -0.7534435987472534 -0.4533375799655914 0.2877134084701538</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"268\" source=\"#ID128\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID125\">\r\n                    <float_array count=\"804\" id=\"ID129\">-0.5876968925040732 -0.6735887911657533 0.4482081022883399 -0.6799127012575088 -0.6905785237255421 0.2466171551976235 -0.759162307953137 -0.5897294263540077 0.2754846527039925 0.759162307953137 0.5897294263540077 -0.2754846527039925 0.6799127012575088 0.6905785237255421 -0.2466171551976235 0.5876968925040732 0.6735887911657533 -0.4482081022883399 0.9393751607873966 -0.0005323211920775615 -0.3428906880185009 0.9393628637960561 -0.0006173183939990839 -0.3429242322129957 0.9393707373678011 -0.000612502356919651 -0.3429026722233822 -0.9393707373678011 0.000612502356919651 0.3429026722233822 -0.9393628637960561 0.0006173183939990839 0.3429242322129957 -0.9393751607873966 0.0005323211920775615 0.3428906880185009 -0.6458786781853358 -0.5638637250233121 0.5146828466817196 0.6458786781853358 0.5638637250233121 -0.5146828466817196 -0.8252130452855564 -0.5644959910024429 0.01917566251028928 0.8252130452855564 0.5644959910024429 -0.01917566251028928 0.9393567538817786 -0.0005382712193212191 -0.342941101649805 -0.9393567538817786 0.0005382712193212191 0.342941101649805 0.939356016129181 -0.0005718943339125305 -0.3429430680138977 -0.939356016129181 0.0005718943339125305 0.3429430680138977 -0.8952735511995463 -0.3038189711323704 0.325851655362714 0.8952735511995463 0.3038189711323704 -0.325851655362714 -0.4478259900236246 -0.6063394693870341 0.6571182013327666 0.4478259900236246 0.6063394693870341 -0.6571182013327666 -0.9554916368303205 -0.2903786264833388 0.05211511516790984 0.9554916368303205 0.2903786264833388 -0.05211511516790984 -0.7434422345913258 -0.6677615857521629 0.03725732705942159 0.7434422345913258 0.6677615857521629 -0.03725732705942159 0.9393876703993481 -0.0004425158333556151 -0.3428565427134553 -0.9393876703993481 0.0004425158333556151 0.3428565427134553 0.9393666363447232 -0.0005621982148279082 -0.3429139927963977 -0.9393666363447232 0.0005621982148279082 0.3429139927963977 -0.7663098117138697 -0.287478801867799 0.5745652364594542 0.7663098117138697 0.287478801867799 -0.5745652364594542 -0.4613914722004991 -0.4765550593873655 0.7483402867365623 0.4613914722004991 0.4765550593873655 -0.7483402867365623 -0.932740769324679 -0.2413542623399678 -0.267848422227826 0.932740769324679 0.2413542623399678 0.267848422227826 -0.8341463287975626 -0.4767548134915079 -0.2773170567531434 0.8341463287975626 0.4767548134915079 0.2773170567531434 0.9393855128217374 -0.0006459763529616571 -0.3428621312061057 -0.9393855128217374 0.0006459763529616571 0.3428621312061057 -0.2088796630572912 -0.4500651899447348 0.8682226737197561 0.2088796630572912 0.4500651899447348 -0.8682226737197561 -0.7749432179757205 -0.5980364207514185 -0.204488259732111 0.7749432179757205 0.5980364207514185 0.204488259732111 0.939366114960446 -0.0006049700991971296 -0.3429153482644036 -0.939366114960446 0.0006049700991971296 0.3429153482644036 -0.9387340067703677 -0.03695263064359954 0.3426557567316931 0.9387340067703677 0.03695263064359954 -0.3426557567316931 -0.9968836200001532 -0.03631772943364059 0.07002907042203974 0.9968836200001532 0.03631772943364059 -0.07002907042203974 -0.9665215557356135 -0.03194205032447853 -0.2545894493483146 0.9665215557356135 0.03194205032447853 0.2545894493483146 0.9430367189335424 0.1968518836966687 0.268199706614553 -0.9430367189335424 -0.1968518836966687 -0.268199706614553 -0.1507118301187419 -0.2948238051524016 0.943591473137458 0.2067286901584398 -0.1242111749235226 0.9704817528884784 -0.2067286901584398 0.1242111749235226 -0.9704817528884784 0.1507118301187419 0.2948238051524016 -0.943591473137458 -0.7259792496024214 -0.2943875774327934 -0.6215223917124435 0.7259792496024214 0.2943875774327934 0.6215223917124435 -0.7333575458056554 -0.4462259760542575 -0.5129026109353815 0.7333575458056554 0.4462259760542575 0.5129026109353815 0.9393735877531112 -0.0006683619107217434 -0.3428947592545039 -0.9393735877531112 0.0006683619107217434 0.3428947592545039 -0.8075809994209117 -0.03495251137658172 0.5887200109753288 0.8075809994209117 0.03495251137658172 -0.5887200109753288 -0.5434233473847485 -0.236380861998622 0.8054906291186406 0.5434233473847485 0.236380861998622 -0.8054906291186406 -0.77624666820467 -0.0208055834280788 -0.6300858971595587 0.77624666820467 0.0208055834280788 0.6300858971595587 -0.7622511894948567 -0.1430085582808667 -0.6312857327487325 0.7622511894948567 0.1430085582808667 0.6312857327487325 0.9517583666008596 0.3063554853541103 -0.01738758748968628 -0.9517583666008596 -0.3063554853541103 0.01738758748968628 0.3085135604110648 -0.006603051996354107 0.9511970262499887 -0.3085135604110648 0.006603051996354107 -0.9511970262499887 -0.3878239877414278 -0.008000950448255184 -0.9216987248142754 0.3878239877414278 0.008000950448255184 0.9216987248142754 -0.4792453524202446 -0.1284890568692437 -0.8682248870243514 0.4792453524202446 0.1284890568692437 0.8682248870243514 0.9393735869902281 -0.0006695758963013816 -0.3428947589760324 0.5562171680627579 0.1930149375026731 -0.8083116328824455 -0.5562171680627579 -0.1930149375026731 0.8083116328824455 -0.9393735869902281 0.0006695758963013816 0.3428947589760324 -0.9045527953872581 0.2690997388246127 0.3307107057862241 0.9045527953872581 -0.2690997388246127 -0.3307107057862241 -0.9649660436318769 0.2559692579079254 0.05762181569083463 0.9649660436318769 -0.2559692579079254 -0.05762181569083463 -0.9411968749283585 0.212637547222373 -0.2625523112378656 0.9411968749283585 -0.212637547222373 0.2625523112378656 -0.7688041742506049 0.1267303267397051 -0.6268010577043508 0.7688041742506049 -0.1267303267397051 0.6268010577043508 0.9251000585648488 0.3236474129631007 -0.1986006891367833 -0.9251000585648488 -0.3236474129631007 0.1986006891367833 0.7287341594235066 0.266575449730096 0.6307805121359665 -0.7287341594235066 -0.266575449730096 -0.6307805121359665 -0.1772913704638064 -0.1383692191083977 0.9743827426439765 0.1772913704638064 0.1383692191083977 -0.9743827426439765 -0.3700636271278899 -0.0026001605183503 -0.9290027723544364 0.3700636271278899 0.0026001605183503 0.9290027723544364 0.1511001016898652 0.2634154647907756 -0.9527754468805187 -0.1511001016898652 -0.2634154647907756 0.9527754468805187 0.7485679692683575 0.2979864513267261 -0.5923259830626647 -0.7485679692683575 -0.2979864513267261 0.5923259830626647 -0.7742812385345269 0.2570974118672391 0.5782641995356501 0.7742812385345269 -0.2570974118672391 -0.5782641995356501 -0.5751797832589399 -0.02964236575501923 0.8174897840845747 0.5751797832589399 0.02964236575501923 -0.8174897840845747 -0.3765588901945572 0.00306265901278567 -0.9263876199168547 0.3765588901945572 -0.00306265901278567 0.9263876199168547 -0.3558744091625368 -0.00105431210854561 -0.9345331954131929 0.3558744091625368 0.00105431210854561 0.9345331954131929 0.8900901419288182 0.3214159272263259 -0.3231583837166805 -0.8900901419288182 -0.3214159272263259 0.3231583837166805 0.8939422885008184 0.3901586756435967 0.2205524714210979 -0.8939422885008184 -0.3901586756435967 -0.2205524714210979 0.3189739854704907 -0.002230760464651021 0.9477608455200186 -0.3189739854704907 0.002230760464651021 -0.9477608455200186 0.1459070766059959 0.1197596578183602 -0.9820227845399114 -0.1459070766059959 -0.1197596578183602 0.9820227845399114 0.5502710975079951 0.3842764948060142 -0.7413051293407796 -0.5502710975079951 -0.3842764948060142 0.7413051293407796 0.8401899553323845 0.3172136215311651 -0.4398367393404606 -0.8401899553323845 -0.3172136215311651 0.4398367393404606 -0.7403767789009327 0.6147888203117427 0.2718031119836112 0.7403767789009327 -0.6147888203117427 -0.2718031119836112 -0.8111574230182659 0.5848269571315641 0.001032131097179552 0.8111574230182659 -0.5848269571315641 -0.001032131097179552 -0.8177054620361993 0.4874545794882314 -0.3061793760071327 0.8177054620361993 -0.4874545794882314 0.3061793760071327 -0.7013225750134465 0.2955872987883978 -0.6486715614018295 0.7013225750134465 -0.2955872987883978 0.6486715614018295 -0.3706111819145363 0.007338079827218162 -0.9287591207758661 0.3706111819145363 -0.007338079827218162 0.9287591207758661 0.9049787698564504 0.4174971728340059 -0.08191176218784334 -0.9049787698564504 -0.4174971728340059 0.08191176218784334 0.7492842702768336 0.1133073061078705 0.6524833612424842 -0.7492842702768336 -0.1133073061078705 -0.6524833612424842 -0.1878140547977587 -0.01875155572929557 0.9820255902868089 0.1878140547977587 0.01875155572929557 -0.9820255902868089 0.167502222222814 0.02034291975031596 -0.9856617935004132 -0.167502222222814 -0.02034291975031596 0.9856617935004132 0.5512543512531241 0.1792794820842699 -0.8148481499813896 -0.5512543512531241 -0.1792794820842699 0.8148481499813896 0.7513795791219324 0.4126530258060037 -0.5149234975913383 -0.7513795791219324 -0.4126530258060037 0.5149234975913383 -0.6173781056117399 0.5870733562910818 0.5236307372990856 0.6173781056117399 -0.5870733562910818 -0.5236307372990856 -0.5497328960254407 0.2145702959604168 0.8073124123404403 0.5497328960254407 -0.2145702959604168 -0.8073124123404403 0.1141922235456532 -0.2671827699782004 -0.9568560516130291 -0.1141922235456532 0.2671827699782004 0.9568560516130291 0.1373067547012777 -0.1084821594943567 -0.984570198708474 -0.1373067547012777 0.1084821594943567 0.984570198708474 0.8546613199521403 0.4177995435425294 -0.3082167574829752 -0.8546613199521403 -0.4177995435425294 0.3082167574829752 0.949312841698599 0.1689206995761342 0.2650866383672328 -0.949312841698599 -0.1689206995761342 -0.2650866383672328 0.3297255915197676 -0.0009885026706106888 0.9440762983781605 -0.3297255915197676 0.0009885026706106888 -0.9440762983781605 0.5669851340101569 0.03369013539364726 -0.8230387795168842 -0.5669851340101569 -0.03369013539364726 0.8230387795168842 0.7912620993234708 0.1931464842356832 -0.5801712900528676 -0.7912620993234708 -0.1931464842356832 0.5801712900528676 -0.638537056043159 0.7328347537142009 0.2349971314896894 0.638537056043159 -0.7328347537142009 -0.2349971314896894 -0.7017607547321368 0.712370248672392 0.007776369603867601 0.7017607547321368 -0.712370248672392 -0.007776369603867601 -0.7315432666606591 0.6332764970439743 -0.2525971640679395 0.7315432666606591 -0.6332764970439743 0.2525971640679395 -0.6857894462902499 0.4575811258932667 -0.5659614373640338 0.6857894462902499 -0.4575811258932667 0.5659614373640338 -0.448989411502799 0.118161168088927 -0.8856898140513023 0.448989411502799 -0.118161168088927 0.8856898140513023 0.5397359834793658 -0.2011374880223855 -0.8174526157824724 -0.5397359834793658 0.2011374880223855 0.8174526157824724 0.9805230520615818 0.1855606155572991 -0.06435683592157802 -0.9805230520615818 -0.1855606155572991 0.06435683592157802 0.7630889204272282 0.01780855155038437 0.64604810580396 -0.7630889204272282 -0.01780855155038437 -0.64604810580396 -0.1843376772474672 0.1285988927317919 0.9744136419073606 0.1843376772474672 -0.1285988927317919 -0.9744136419073606 0.5422038749671823 -0.1706845476378058 -0.822728231658699 -0.5422038749671823 0.1706845476378058 0.822728231658699 0.805326769638433 0.03891174302325975 -0.591552762108857 -0.805326769638433 -0.03891174302325975 0.591552762108857 0.9228136040141001 0.1909154029804643 -0.334613749196465 -0.9228136040141001 -0.1909154029804643 0.334613749196465 -0.5477717468215713 0.7058405800431359 0.4491494060425926 0.5477717468215713 -0.7058405800431359 -0.4491494060425926 -0.4230759410465558 0.4905613902451703 0.7618111777260144 0.4230759410465558 -0.4905613902451703 -0.7618111777260144 0.7307814415269979 -0.3129023787814385 -0.6066717284270301 -0.7307814415269979 0.3129023787814385 0.6066717284270301 0.4946705607433165 -0.4106995055208651 -0.765915760706626 -0.4946705607433165 0.4106995055208651 0.765915760706626 0.9640089799779689 0.03017944270324709 0.2641512592435581 -0.9640089799779689 -0.03017944270324709 -0.2641512592435581 0.3067914316709257 0.003415327227728099 0.9517706409599064 -0.3067914316709257 -0.003415327227728099 -0.9517706409599064 0.7845936255858756 -0.1951876263780493 -0.5884850322641299 -0.7845936255858756 0.1951876263780493 0.5884850322641299 0.9386630805879255 0.0392960783194796 -0.3425893159015547 -0.9386630805879255 -0.0392960783194796 0.3425893159015547 0.9393670562484972 0.0006709258275012985 -0.3429126470306497 0.939387535505722 0.000712326964459923 -0.342856457904444 0.9393574540791952 0.0007067326414839689 -0.3429388779284527 -0.9393574540791952 -0.0007067326414839689 0.3429388779284527 -0.939387535505722 -0.000712326964459923 0.342856457904444 -0.9393670562484972 -0.0006709258275012985 0.3429126470306497 0.9393431617020412 0.0007352327346118228 -0.342977964301555 -0.9393431617020412 -0.0007352327346118228 0.342977964301555 0.9393599141774945 0.0007601345231298448 -0.3429320250894583 -0.9393599141774945 -0.0007601345231298448 0.3429320250894583 0.9393615077663579 0.0007724940961668289 -0.3429276322779873 0.9393601490072554 0.0007609575084204824 -0.3429313800175442 -0.9393601490072554 -0.0007609575084204824 0.3429313800175442 -0.9393615077663579 -0.0007724940961668289 0.3429276322779873 0.9393627260853724 0.0006563668888109732 -0.3429245369231614 -0.9393627260853724 -0.0006563668888109732 0.3429245369231614 0.9971204370427232 0.03653306278942292 -0.06645426513740364 -0.9971204370427232 -0.03653306278942292 0.06645426513740364 0.7372987661546131 -0.1107401548197216 0.6664286514979597 -0.7372987661546131 0.1107401548197216 -0.6664286514979597 -0.1171929909311837 0.2980396873264142 0.9473321210932186 0.1171929909311837 -0.2980396873264142 -0.9473321210932186 0.7109610084331069 -0.4576545015958977 -0.533935203612564 -0.7109610084331069 0.4576545015958977 0.533935203612564 0.9195885397944029 -0.2021437811372046 -0.3368899066851834 -0.9195885397944029 0.2021437811372046 0.3368899066851834 0.9393777598906878 0.0007398185943266229 -0.342883182572725 -0.9393777598906878 -0.0007398185943266229 0.342883182572725 -0.4126002273746283 0.6241763898905763 0.6634492344358925 0.4126002273746283 -0.6241763898905763 -0.6634492344358925 0.8327769633305351 -0.326481564813242 -0.4470931862409326 -0.8327769633305351 0.326481564813242 0.4470931862409326 0.9437654754795771 -0.1746400651050991 0.2807268689543169 -0.9437654754795771 0.1746400651050991 -0.2807268689543169 0.3076547733687897 0.009019681811754757 0.9514552988782045 -0.3076547733687897 -0.009019681811754757 -0.9514552988782045 0.8292553411957173 -0.4679345914479724 -0.305569627457955 -0.8292553411957173 0.4679345914479724 0.305569627457955 0.978525240877293 -0.198207437447245 -0.05658767274444375 -0.978525240877293 0.198207437447245 0.05658767274444375 0.9393775037110876 0.0007170786854222044 -0.3428839327231367 -0.9393775037110876 -0.0007170786854222044 0.3428839327231367 0.8889169327109634 -0.3206772464545694 -0.327097524212654 -0.8889169327109634 0.3206772464545694 0.327097524212654 0.6972377163543299 -0.2684672569085393 0.6646690145185071 -0.6972377163543299 0.2684672569085393 -0.6646690145185071 -0.1853855410059012 0.4540945488152194 0.8714530061467753 0.1853855410059012 -0.4540945488152194 -0.8714530061467753 0.8860657673843491 -0.460566397903878 -0.05259324092914863 -0.8860657673843491 0.460566397903878 0.05259324092914863 0.9393815149114341 0.0006962135971441197 -0.3428729862927766 -0.9393815149114341 -0.0006962135971441197 0.3428729862927766 0.9261755368606386 -0.3171137330902705 -0.2040533146176769 -0.9261755368606386 0.3171137330902705 0.2040533146176769 0.8692075955050879 -0.4145285925430947 0.2695258835075111 -0.8692075955050879 0.4145285925430947 -0.2695258835075111 0.2112090076613408 0.1239828002257577 0.9695457804203428 -0.2112090076613408 -0.1239828002257577 -0.9695457804203428 0.9435827415100812 -0.1957791465876297 0.2670620446370821 -0.9435827415100812 0.1957791465876297 -0.2670620446370821 0.9532398032915065 -0.3012849232039792 -0.02369118972829772 -0.9532398032915065 0.3012849232039792 0.02369118972829772</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"268\" source=\"#ID129\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID127\">\r\n                    <float_array count=\"1344\" id=\"ID130\">-1.634288126785523 -0.5065289085493202 -1.640379052581864 -0.5410184523209991 -1.856555345418121 -0.4964163357652918 -5.778295590805511 0.03205422185374644 -5.771040376065449 0.06640407704827979 -5.683106961699117 0.03203849938297348 -1.649825872907014 -0.7096271427484812 -1.872085244757289 -0.6994083991017083 -1.864254265075438 -0.6651528064412706 -1.250153234433578 1.388867994416182 -1.033136379969898 1.346867854706073 -1.2640871169191 1.355830552429904 -5.772293785269364 0.06467080810115421 -5.751655304927285 0.09379116709534083 -5.684362861601302 0.03030128675433246 -5.771057804517495 -0.004020829118176509 -5.77829604825178 0.03033741467521566 -5.683107419145802 0.03032169064965274 0.941829984151723 -0.9609511652732851 0.9391453810392414 -0.9956921457641622 0.6591045179291777 -0.9565910163461631 -2.298736174314402 -2.252131831131854 -2.295799360350946 -2.285392208547589 -2.508224399502738 -2.235320619216542 1.360259115359714 0.7438133206830114 1.348136929739905 0.7103366787325215 1.072091003311855 0.7458384694714858 -1.046144858699138 1.135555738755742 -1.061731116339241 1.102958580026134 -1.277093603441204 1.144550148730938 -5.749518098518074 0.09476023152207522 -5.718629545671879 0.1142170674418765 -5.682217795954116 0.0312755066327144 -5.751022146412669 -0.03209973361856562 -5.771643141950839 -0.002972906983269175 -5.683691598819914 0.03136777785330124 0.9360188500432026 -1.178793874431138 0.653294825374241 -1.174376258026063 0.6606496470022805 -1.140161651151889 1.082062536854703 1.002869853268189 1.362730555809482 0.9666582456482398 1.074562321257126 0.9686725780065689 -2.59692189371452 -2.750766795198185 -2.594551974413581 -2.71763225463656 -2.387561148125512 -2.768533614240544 1.572856767537705 3.192495854687331 1.848982780508274 3.157381599884053 1.565216039789851 3.160762650246198 -0.5326693457661397 3.509086516653532 -0.3173867435926214 3.467239795083357 -0.5522414566524753 3.479687267329237 -5.682524326379558 0.03125426468534857 -5.718934609416646 0.1141962239470702 -5.682505174354105 0.1210205370941643 -3.548374177992213 -4.162400898866058 -3.748405835024245 -4.096493015933778 -3.556813030258006 -4.131988087612529 -0.3707686409634659 2.876568066983024 -0.3947520919379999 2.849080661628393 -0.6056354571054812 2.88887340672698 -5.719528767814164 -0.05209044814793297 -5.750408737360305 -0.03262718972382478 -5.683080428078381 0.0308417911828481 4.186850590640463 -1.012832654639289 4.187181959525086 -1.047532031750883 3.910348885434423 -1.036753305367215 0.461361770471615 -2.805143628904236 0.4675799557079119 -2.837968092285334 0.1935975774084048 -2.79365197764752 4.303757616769216 0.7931495987261827 4.299276099205702 0.7586266097905626 4.025651445178969 0.768262892045919 4.421855965558771 2.675739898522337 4.412944362757875 2.644212477329875 4.148594793655522 2.653164426675216 1.836544132993338 2.530954269068594 1.815935736747094 2.501996573645861 1.552776893868374 2.534309332938826 -5.685517809967489 0.03186237080762425 -5.685483153435268 0.1216286403407125 -5.649064958060038 0.1147878556212348 -9.030374649917681 -1.574259264673119 -9.097831914049516 -1.418111789352376 -9.01501151996856 -1.547393323510752 -4.142805915330388 -4.551035293948126 -4.141710119170721 -4.520285381727755 -3.953061528514277 -4.592219093100567 0.5198919438131561 5.681147397240062 0.7287342649248896 5.635173346240597 0.4953520758126662 5.657199812528079 0.5761398701293136 4.938653610753637 0.5457425097262514 4.918725752989903 0.3425593751247935 4.959338371403813 -5.684229012748609 -0.05839674360224198 -5.720654875189503 -0.05155612160551183 -5.684201171964915 0.03137465884716622 3.918068169370771 -1.033112221647365 4.191633949144947 -1.043728341387933 3.915140147795424 -1.067705463291403 4.022424033973914 0.834096151218422 4.299316023905623 0.8242985867211519 4.021206310122105 0.7994363883648149 0.1353488577012257 -3.385379955262383 0.1426733292801519 -3.353600057806711 0.4030523637027622 -3.397715594431443 4.136299052245296 2.77213048139999 4.409934787789173 2.762690938571992 4.136676566775521 2.740093373416944 4.296967691609879 4.834050616884352 4.561262373190898 4.824146386953786 4.298462563975828 4.806187967889898 2.277332738046936 5.404742304676548 2.539551599375477 5.368003662027922 2.268979779556783 5.376952527814152 -5.684613092909862 0.03143214119235111 -5.648164570525363 0.1143588037099876 -5.61728512605813 0.09489386175592705 -2.391575643019016 7.075109157083599 -2.54491357482462 7.008856034877449 -2.579941045850445 7.019262065795718 -9.455522670358189 0.3936826177966736 -9.425502495920142 0.4103758079060491 -9.416687345118106 0.2521722878796683 -0.5205322597230766 -5.003410972697667 -0.7759609292150033 -4.944027806037942 -0.5324501778737423 -4.974112482582693 2.484791692757342 4.622491555313475 2.457577970450815 4.600404225150341 2.214192329424671 4.630909266079464 2.692538484590985 7.149239896415337 2.722672491989346 7.165807289230103 2.914162444762996 7.098685444118171 2.551196454191369 6.960176066700288 2.362825959432703 7.016021475754335 2.586232415527616 6.970580909416076 -5.684238825075605 -0.05839476020257792 -5.68421093372304 0.03137664223711616 -5.647815872610838 -0.05156786487336856 5.550740669980429 -0.7031542345021993 5.551983930813544 -0.7378102782263556 5.265588396921515 -0.7425259612204131 4.027137664664973 -2.936758650661695 4.03183283263711 -2.968844775350604 3.75843209905359 -2.955861400622662 5.501772203953999 0.9708295837415617 5.502276960522053 0.9361588591065313 5.218505161799626 0.9320007330043373 5.442184087406976 2.726196003257531 5.442034999802737 2.694157733504288 5.165768091873196 2.690395843907137 5.363477376190491 4.622498711143918 5.36292902625928 4.594614593321119 5.097895239508742 4.59096264954118 4.57655003485986 4.72524694323863 4.564128520102458 4.698414767445477 4.313732538969919 4.707449421615377 -5.683656828523747 0.03060907923229341 -5.616332364152895 0.09407309923417973 -5.595708929043085 0.06494501139983984 -0.9035559238162105 4.707243960448621 -0.9343616981914327 4.726781007681586 -0.7460488040164265 4.760672494056906 -2.915516686883468 7.11768381176926 -2.8850110492991 7.101547003124586 -3.064761712741705 7.045879354138607 -8.695254082798334 -2.544458748004903 -8.742514541794581 -2.354180337085872 -8.675320800472102 -2.520158893678196 -1.172230252181666 -5.586780348943091 -1.162635729891915 -5.559234261855116 -0.9302904315922256 -5.623888626311721 3.634837123849704 6.87366660110001 3.646177290930252 6.897641335596261 3.884287868500393 6.847617592972168 3.474955179495547 6.699536004914985 3.724861717189847 6.676347654042879 3.692958291840227 6.661975881050432 9.459460031363795 0.4198141392265857 9.489462694564887 0.4031058003115101 9.480505502558653 0.2449040595548825 8.68391044850973 -2.384958581035534 8.618607649062048 -2.552972255618855 8.608036055581655 -2.524715861107074 -5.64820700494384 -0.05159523905633234 -5.684600202790996 0.03134977399356694 -5.617314580384186 -0.03214368485288174 5.258386200642894 -0.6735411257000341 5.542147666558238 -0.6689630362439691 5.256968935414906 -0.7082159926309967 5.509574308368847 0.9353771847827545 5.226318222653589 0.8964989021024413 5.223167606128538 0.9311018180773975 3.777445589727428 -3.006914210559496 4.041562458501941 -3.019401516651943 3.772885548595255 -3.038752089955421 5.463511540082831 2.626612245948628 5.187086486360211 2.590855394880787 5.179737704047764 2.62254107133701 5.392865583126181 4.510938742625006 5.127218825968604 4.479741317634885 5.11660684268122 4.506822372824333 4.995032972003899 6.178128541047359 5.260016203490196 6.183598342080376 5.007685823580591 6.154941696776611 4.626587954251779 6.433440369273826 4.625137622580454 6.457953709657695 4.87517345875307 6.444055577750325 -5.683667357941976 0.03062793658874029 -5.595719437593925 0.06496383567925987 -5.588490646712567 0.03060971688826645 -0.4598590419423732 2.426713798117077 -0.4840621461310818 2.45408427740843 -0.3013709194714104 2.483465808915808 -1.410286566773439 5.335568849888774 -1.254312662185517 5.391711933229681 -1.228589745297435 5.368546301041597 -3.710722171227237 6.724208019360445 -3.492720817658558 6.761778418468669 -3.678822751719198 6.709835472709786 -9.320234484257593 1.345829623827133 -9.288518671217004 1.34019345550243 -9.364766633716425 1.175196317681586 3.632911908128812 -5.163997491092875 3.369616624503415 -5.143404123956382 3.625637957812055 -5.13601515249943 4.634626410958905 6.408092318440026 4.883222584391303 6.418551766529748 4.868346083145752 6.395805024591026 9.313410450463893 1.357480959732312 9.345124038670903 1.363126520220501 9.421554401144784 1.198182517139952 7.66094701079778 -3.968962028724445 7.600885510735214 -4.143263608647695 7.58895228403194 -4.115912139661436 3.379968156452582 -4.795022626127295 3.377814115820344 -4.825738046801772 3.200976333159742 -4.886913864563443 2.177731559297771 -4.256733539454348 1.987033527300132 -4.332666715782128 2.001011546405866 -4.303545603030939 -5.616905480062753 -0.03195764700595825 -5.684192595908041 0.03153483241750948 -5.596264906875802 -0.002836670226629316 8.135632481055744 0.6467846298274449 8.143736191055005 0.6126825793533866 7.817615547244568 0.5664056975362209 5.604026208031266 -2.447892704043489 5.605968045621975 -2.479895599273528 5.322239669658892 -2.485603461842086 7.910548891879452 1.62505911682075 7.917423041942325 1.590791612619515 7.595121947029427 1.549212695649579 7.648140393909088 2.740076383101864 7.654014175277737 2.708200818831211 7.344970491059966 2.669147191123872 7.250938896262698 4.066194749260766 7.25658957949578 4.038206995229646 6.968392189669932 3.99804925325602 6.330169403804309 5.567600197966375 6.33828197781904 5.543187600931597 6.078767289008784 5.488134954704552 5.234858943685333 6.219206489446688 5.234379154250187 6.194669514983062 4.982624410286215 6.190032337805749 -5.595738121885606 -0.002107843882471494 -5.683666853373951 0.03226200839890913 -5.588490142144011 0.03224379041315121 -0.2299324533387503 0.729168882831263 -0.2444582929433015 0.7620621536471894 -0.06595591735775286 0.790400861286243 -0.8125319772006873 3.017794677503951 -0.6542271561514512 3.074862410578888 -0.6339346682586394 3.045760783924645 -2.877774435399899 4.357863286120309 -2.9054821625964 4.379566241016444 -2.707005040896449 4.400150830114178 -3.924376744820628 6.828128521863997 -3.912227949632494 6.804395592346775 -4.107701896713467 6.770397319542972 -8.612090387140565 3.132318144885416 -8.415472723842832 3.25462297604561 -8.583522185231189 3.120103705864056 3.383826387321667 -5.232956294477321 3.390429891860372 -5.205556265624473 3.639833537315615 -5.225269220317825 7.988444796116241 3.950818076507967 8.186622618935166 3.852581069993151 7.974882037621727 3.928721227996451 8.321249129370793 3.414263150884053 8.524916106107225 3.325534200360769 8.496739733872749 3.312768203912115 0.1510206007186302 -5.711405996685896 0.1570653586876661 -5.739568266727456 -0.03463197449445815 -5.784963653351625 -1.255966484601831 -4.6331030134885 -1.452168057014411 -4.687120724204308 -1.433730305993322 -4.659992660156179 1.343610033826532 -2.897651272480716 1.34209162004531 -2.930821537567856 1.161915013148988 -2.968609549947419 0.6343652317238041 -2.304351929952293 0.6418617825255241 -2.271535750771943 0.8189598313239338 -2.2381868989369 7.788972773850396 0.6528216140289085 8.110519995554304 0.6978813329106642 7.792250235363141 0.6181240811246688 7.934673018451014 1.564016031454092 7.619334815426091 1.487941597001828 7.607723219364737 1.521513707960413 5.297544050171814 -2.364631221469998 5.573773910602987 -2.359445006498093 5.291853149384379 -2.396529747281462 7.721009017518952 2.551012032566287 7.417707771404205 2.480431187695184 7.398608439320649 2.509913182397862 7.378678430317099 3.806337644516013 7.095271469613857 3.740439878517878 7.07037146757814 3.763832987463858 6.220427645271243 5.351223384974789 6.503456244691065 5.409873293788387 6.249963775453848 5.334629748447567 -5.270613878297841 5.967673255825852 -5.275759361667078 6.179078711813066 -5.243504771459213 5.986660930279739 3.047084099028744 6.93091981268171 3.290809721156963 6.980753888153003 3.066212852775847 6.910657934091883 0.0643922459230406 -0.7210905818866035 0.06121120103332323 -0.6863590033394218 0.2379062217880146 -0.6570334173992765 -0.3636197155227572 0.9565918268743122 -0.199445161929524 1.017494559671196 -0.1864823122444165 0.9842165027092117 -2.822010068346362 2.090920108388004 -2.842674329173911 2.119859385685524 -2.662769188401859 2.135646876448718 -3.373182456892068 5.182275375164926 -3.203613940797268 5.22745458337398 -3.193571050743304 5.20001223956443 -4.873020602859887 6.447361349656247 -4.639301611593265 6.459652528907108 -4.858128783869598 6.424616012450758 -7.968610523694299 3.929467018207868 -7.955042831342867 3.907370432748207 -8.153204520808952 3.809113804253872 5.735731686947555 -4.306531837517649 5.459667223056172 -4.315665662678008 5.732965055269636 -4.278728774919856 3.946955635540269 6.787352992197897 3.95128838443904 6.763053017269658 3.716230936367765 6.730901383304845 -3.535693014794845 -5.251964487442733 -3.752587484793535 -5.267690810281319 -3.541751222657247 -5.224486546129128 -3.658791357557014 -5.077930099078674 -3.870291265138999 -5.119078097898604 -3.861981789478717 -5.091275294421588 -1.695311036086562 -3.412789638260236 -1.692728327425731 -3.44502301433671 -1.871599256619585 -3.466902521146339 -2.474335010279066 -2.440217038035144 -2.462407665813163 -2.408379080905731 -2.295299899327754 -2.392007176822233 0.3931295553270386 -0.9298718341588198 0.215151516310107 -0.9601832120140615 0.3881610346771586 -0.8952871545367428 8.83090808195661 1.713201502329808 8.637719336656275 1.670394886309324 8.82129416290114 1.74716277522841 8.399275799018552 -0.2210039491789647 8.40886644422185 -0.2523190646442885 8.089989920867051 -0.3078963674227854 8.701943789392425 2.053326377471591 8.510065975193324 2.014098746774247 8.688421921503766 2.086453025817476 8.466054264147338 2.627943768646528 8.483690014899814 2.597902795826956 8.298519861909124 2.560058353665381 8.035041820668011 3.496982364922802 8.056951315095304 3.471805670084362 7.883212921189479 3.431673652019552 6.809007439602639 5.021311928093619 6.836799964349999 5.002948715705256 6.683119219274349 4.947203955742285 -3.260660911194111 6.884266610850335 -3.228391922141995 6.897340545099304 -3.229921085116142 6.77327863886917 -2.695475850007717 7.161187854283521 -2.664815296173824 7.153756314305748 -2.739445982257249 6.970211505134532 -2.89218958151452 0.4623860832525094 -2.902584925186209 0.4962171725199305 -2.735085154802271 0.5098805270612874 -3.213671931998484 2.936118438852268 -3.054525052387994 2.981051777272747 -3.046127714352541 2.949440283961018 -4.596324846387193 4.734967347678038 -4.608856304640121 4.761768782547184 -4.391233370012669 4.768948202406476 -4.670534738712671 6.469354259775886 -4.671861372891332 6.444837997000658 -4.889221471490005 6.433779241743252 -3.547254578740973 6.90407687877277 -3.28923575130753 6.856286549768203 -3.553054643055344 6.879965491549306 5.663023208727047 -4.20765976635011 5.389330048648437 -4.242738453200204 5.398125280990574 -4.215263073891824 -5.278229585263992 -4.366305533453391 -5.516727459048768 -4.361257122533217 -5.287649137072221 -4.338958402008602 -5.454810054422477 -4.51563512383377 -5.453256057030798 -4.487773760575872 -5.225949682751572 -4.491991974974134 -3.991375186117491 -3.045963509967441 -4.19500860715473 -3.054122370011437 -3.995241946709423 -3.014068560931149 -4.2482546304477 -2.925821019825826 -4.242653025179007 -2.893825701827686 -4.048265382796182 -2.886460601861261 -2.491483608156819 -1.245228830975674 -2.658817033256372 -1.26010617416459 -2.494921775182919 -1.210636482554042 -2.838468018587474 -0.8928382005394318 -2.837154840158582 -0.8580486931832319 -2.674035559756206 -0.8444842978475415 8.617727186099021 1.681164327663043 8.610752423905051 1.715549223531451 8.8018125402254 1.757171900894283 8.536043491754262 1.97843696443914 8.520131262130361 2.010934105155868 8.714272989901735 2.050983812258195 8.006952711457062 -0.183947639801174 8.313349876694996 -0.1336197163075516 8.002438408217408 -0.2168446016713619 8.564453439037457 2.465756910542675 8.396381986438255 2.398698050210063 8.37264435659068 2.426321813870671 8.248327187524744 3.176968576735512 8.094213786232071 3.115059759357864 8.064406167390686 3.135525648921928 7.170002022230695 4.692479944407302 7.039293280764523 4.623730227025391 7.004515339233874 4.634662642814085 -5.480364303745048 5.782939931988822 -5.533619467239355 5.909304849834479 -5.464440254357934 5.809598000878715 -8.79249040936396 0.7829281715672438 -8.94006588098264 0.8266921709825369 -8.803805732043497 0.8127560611786968 -8.324479147978348 -1.138831000213761 -8.559984921300103 -1.085797531574062 -8.335059020080189 -1.109475333131905 -3.050694840966592 0.8044191868086035 -2.893355025099158 0.8514289446161969 -2.887452685790644 0.8170356909276371 -4.506374521597316 2.668429524590553 -4.515326390466558 2.699946707382018 -4.31156498745022 2.705787355114174 -4.435135774640633 4.841335461204134 -4.638866684136944 4.834869948878139 -4.433871442972754 4.869208280941132 -5.23258612624856 6.244795780432598 -4.980831637565121 6.240152371133828 -5.232107360543298 6.220260205619157 -3.304957886754006 6.930798896815192 -3.042113658866823 6.901161805012654 -3.061250670041988 6.880909366093234 8.871608282726093 -0.4862232848804858 8.885023154138871 -0.5125177972378905 8.59157698546651 -0.5981941395017913 -8.648698606186477 -1.204677381859101 -8.638240077235158 -1.177564936682886 -8.424578670472791 -1.232688230747936 -5.360122562265048 -2.506000423400825 -5.139242509498001 -2.476579842706702 -5.132773134567029 -2.508383650287633 -5.321690545371856 -2.64447189277278 -5.320812559055614 -2.612439665357678 -5.100943559160501 -2.614439619292221 -4.170363168307121 -1.055717432248732 -4.364824400472052 -1.061761956683289 -4.172710397766799 -1.0210962895362 -4.381232302345145 -1.014093437284773 -4.380274962914606 -0.9794036872903147 -4.189071014015481 -0.9735662655406596 -4.460382141882528 0.02970777035881239 -4.372445540844122 0.0640779423795097 -4.365194100076415 0.02972848475338779 8.903937635865709 1.58826874419468 8.716320660161918 1.537877073571023 8.897282944693579 1.620940077452542 -4.372422565099564 -0.005885461720779861 -4.460381700691149 0.02845100466999386 -4.365193658885561 0.0284717205621112 -4.39263004781457 -0.03440953332577173 -4.459960374557958 0.0290530312392545 -4.372000405281639 -0.005282113493438264 -4.423485553331526 -0.05386812311555181 -4.459945209472826 0.02906059301675808 -4.39261482727612 -0.03440193513979781 -4.459742214446557 -0.06069050670352177 -4.459774796619139 0.02907993685161893 -4.42331432621714 -0.05384855773769362 -4.4617782224255 -0.06036869844406919 -4.498200731610488 -0.05354097531077903 -4.461800327138134 0.02940174708602667 -4.497518157848608 -0.05383473939555101 -4.528406075737823 -0.0343791280378902 -4.461121000383781 0.02910886480316722 -8.962561667557381 0.7521034163714 -8.962223404290473 0.7826149539410692 -8.82688539192873 0.735001572547627 -4.450244072811719 0.7811894457271972 -4.454478296616852 0.8157344875429972 -4.25998964435588 0.8212174156970132 -4.346492488049074 2.781015738243396 -4.540986329433369 2.775647928898338 -4.346191014603219 2.813051616509951 -5.287903821982955 4.666486086019012 -5.28830999091003 4.694374815491331 -5.04974618255413 4.691938815248318 -5.213320699298114 6.203183542332868 -4.961995522428713 6.222685247830399 -4.974781695470389 6.199542430651975 2.790248284699574 7.12077861696805 2.821065395156717 7.127784662287296 2.895758311766352 6.905161380056465 8.703643680961973 -0.6857681323355882 8.415732719445984 -0.7846014422278069 8.424448948040244 -0.7548690767279352 -7.984223954740257 -0.5242400425061006 -7.769614876977303 -0.5227676346305572 -7.762888778350972 -0.5554303527733849 -7.980254135178361 -0.8303874715674979 -7.973605106139527 -0.7986066015443341 -7.765646189602546 -0.828816257106993 -5.29145251916307 -0.778641511633843 -5.073656718285485 -0.7455933924010927 -5.071578248459449 -0.7802432158811737 -5.278609421455686 -0.8309054962920214 -5.278093112686092 -0.796237527368122 -5.060846573179293 -0.7977232671706889 -4.273902826376768 0.8328644975095786 -4.465131719415578 0.827556762403614 -4.274857451847524 0.8675263321494672 -4.460299321942095 0.02956324701069983 -4.393012474292192 0.09305259727493652 -4.372362884887002 0.06393367866869167 8.682649388063927 1.449574090444589 8.684406860003334 1.482888932367785 8.866932536835083 1.527988676546785 -4.527626259026713 -0.03501501430149527 -4.548262664483186 -0.005897255585183629 -4.460344026620005 0.02847484303748904 -8.627378400833218 0.7182839025649992 -8.49015222166312 0.7225939591655773 -8.483660553379961 0.689649968259905 -5.282719558101339 2.74713054383379 -5.282802884947855 2.779167232862019 -5.055444263708266 2.777430364861157 -5.028509912437525 4.545913170466169 -5.255866476205934 4.547809397946735 -5.017651682042155 4.572928955756335 -6.33043148512515 5.565650525958854 -6.32232165199879 5.590064896786578 -6.062804363370425 5.535011025945936 5.203030191317635 6.180601572742147 5.225015908561341 5.950208726369962 5.19790709698616 5.969193486342004 8.760705685204632 2.246849101893711 8.768828859097201 2.217012986800187 8.601195514666992 2.144479784189916 -8.613371641486925 0.3856663313216517 -8.613636085671026 0.418754193932143 -8.476164807288635 0.3903420099349643 -7.669649440992814 0.370797313781492 -7.458958280863248 0.3813855562383646 -7.460421441063718 0.3466109705210539 -7.659978798590958 0.2433949552906475 -7.65388766586991 0.2777507902337484 -7.44929904838637 0.2541227773029685 -5.04323660385484 0.8742446272987433 -5.260484603369598 0.8755917906909654 -5.040394795149055 0.9088632413996086 -5.272297497100485 0.9269699262082453 -5.272069434888858 0.9616394308490045 -5.052193456491585 0.9601830616480456 -4.459972957087579 0.02929694111498971 -4.423571741378723 0.1122405237850691 -4.392687303188897 0.0927870743005024 -4.549323536238968 -0.004046641435744432 -4.55657951190216 0.03030491805240184 -4.461402801616853 0.03032213800506731 -5.035000859264302 2.621410000960689 -5.254877164871539 2.622835471023548 -5.027592162108842 2.653090192463134 -7.09070919251049 4.148100935280669 -7.084600047297619 4.176024381311477 -6.842857180446632 4.1448697614421 -6.410326072650934 5.45643678272326 -6.142327106375758 5.427879402861199 -6.172098680432305 5.411550248318663 2.784134457998289 7.014706338812497 2.817163269323979 7.002869811273473 2.812331700326085 6.860476905546576 8.893197122900897 1.617459917330398 8.719991987867189 1.529940219776617 8.727208287935637 1.560542413154153 -8.359434015351081 1.097015203865124 -8.217104073433312 1.1083416630811 -8.220443975466068 1.073618355095572 -8.34486625889067 0.955869012209253 -8.339499603550593 0.9904055627753068 -8.202561493724595 0.9673895776210707 -7.260406241916179 1.308754244623648 -7.465349018230898 1.330399713359927 -7.24959586265464 1.342494702027965 -7.475927176314872 1.457638003769571 -7.469730426762375 1.491984513193227 -7.260167924464421 1.469665505903167 -4.460570457190625 0.02955451479688858 -4.460598919078507 0.1193234108502796 -4.424166386291351 0.1124973219903019 -4.556579272021503 0.0294829913682542 -4.549341784026376 0.06383742248671029 -4.461402561736435 0.029500212134882 -7.328918198328824 2.760749862715633 -7.322754872744688 2.792594711171613 -7.10003582112016 2.768247808791357 -6.878680160919599 3.803484329922073 -7.101077956048729 3.829585371192688 -6.853222855664148 3.826504284722295 -6.839182910418581 5.027825199280951 -6.811386171103502 5.046182661432376 -6.657708769743121 4.990440542487015 5.457087838578618 5.930387946640559 5.419865410911841 5.777347634718608 5.403916980590292 5.804004741730131 -8.037972299862767 1.593119991335581 -8.175320457195674 1.614570723034023 -8.023530479656374 1.6260376576569 -8.190515196564247 1.757231245667825 -8.178068675362454 1.790620921476749 -8.038714533708697 1.768610308976451 -7.101479624950173 2.418650985727016 -7.311103574176353 2.440609994461795 -7.082218775957254 2.448062065003728 -4.460363105683712 0.02952158193390643 -4.496811221884622 0.1124499136576728 -4.460392639932004 0.119290477772927 -4.549506022156817 0.06360286560401821 -4.528886799177706 0.09273060786823638 -4.461567125481633 0.02926513919347144 -7.836686215026396 3.662041520968044 -7.813795479195937 3.686673002089047 -7.661068219381618 3.655701684686811 -6.906954385481576 4.750220969010126 -7.054783145916974 4.793468289904231 -6.871906295255305 4.760584641937258 -7.911818009785852 2.278192344210657 -8.051238930753467 2.299939675135196 -7.887607329289605 2.305556344450116 -8.073196141579601 2.66566353395958 -8.054648766368899 2.695357052149128 -7.909567745808319 2.671337703570303 -4.528576493109429 0.09288510001082233 -4.497699531881085 0.1123498706279721 -4.461255680420941 0.02942037901142184 -7.728634309529307 3.247181413039645 -7.873372214707917 3.272449333841338 -7.697725894321536 3.266615265858516</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"672\" source=\"#ID130\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID126\">\r\n                    <input semantic=\"POSITION\" source=\"#ID124\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID125\"/>\r\n                </vertices>\r\n                <triangles count=\"448\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID126\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID127\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 7 12 16 13 8 14 9 14 17 13 10 12 18 15 6 16 8 17 9 17 11 16 19 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 16 30 28 31 8 32 9 32 29 31 17 30 30 33 18 34 8 35 9 35 19 34 31 33 12 36 20 37 32 38 33 38 21 37 13 36 20 39 2 40 24 41 25 41 3 40 21 39 12 42 34 43 22 44 23 44 35 43 13 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 8 51 28 52 40 53 41 53 29 52 9 51 22 54 34 55 42 56 43 56 35 55 23 54 26 57 44 58 38 59 39 59 45 58 27 57 46 60 30 61 8 62 9 62 31 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 8 78 40 79 54 80 55 80 41 79 9 78 42 81 56 82 57 83 58 83 59 82 43 81 34 84 56 85 42 86 43 86 59 85 35 84 38 87 44 88 60 89 61 89 45 88 39 87 44 90 62 91 60 92 61 92 63 91 45 90 64 93 46 94 8 95 9 95 47 94 65 93 66 96 32 97 48 98 49 98 33 97 67 96 48 99 20 100 50 101 51 101 21 100 49 99 32 102 68 103 34 104 35 104 69 103 33 102 50 105 24 106 52 107 53 107 25 106 51 105 52 108 36 109 70 110 71 110 37 109 53 108 36 111 38 112 72 113 73 113 39 112 37 111 8 114 54 115 74 116 75 116 55 115 9 114 76 117 54 118 57 119 58 119 55 118 77 117 56 120 76 121 57 122 58 122 77 121 59 120 34 123 68 124 56 125 59 125 69 124 35 123 38 126 60 127 72 128 73 128 61 127 39 126 78 129 60 130 62 131 63 131 61 130 79 129 80 132 78 133 62 134 63 134 79 133 81 132 82 135 8 136 83 137 84 137 9 136 85 135 66 138 48 139 86 140 87 140 49 139 67 138 68 141 32 142 66 143 67 143 33 142 69 141 48 144 50 145 88 146 89 146 51 145 49 144 50 147 52 148 90 149 91 149 53 148 51 147 52 150 70 151 92 152 93 152 71 151 53 150 36 153 72 154 70 155 71 155 73 154 37 153 8 156 74 157 94 158 95 158 75 157 9 156 74 159 54 160 96 161 97 161 55 160 75 159 76 162 96 163 54 164 55 164 97 163 77 162 56 165 98 166 76 167 77 167 99 166 59 165 68 168 98 169 56 170 59 170 99 169 69 168 100 171 72 172 60 173 61 173 73 172 101 171 100 174 60 175 78 176 79 176 61 175 101 174 102 177 78 178 80 179 81 179 79 178 103 177 102 180 80 181 83 182 84 182 81 181 103 180 83 183 8 184 104 185 105 185 9 184 84 183 106 186 66 187 86 188 87 188 67 187 107 186 48 189 88 190 86 191 87 191 89 190 49 189 108 192 68 193 66 194 67 194 69 193 109 192 50 195 90 196 88 197 89 197 91 196 51 195 52 198 92 199 90 200 91 200 93 199 53 198 92 201 70 202 110 203 111 203 71 202 93 201 112 204 70 205 72 206 73 206 71 205 113 204 8 207 94 208 114 209 115 209 95 208 9 207 94 210 74 211 116 212 117 212 75 211 95 210 74 213 96 214 116 215 117 215 97 214 75 213 76 216 118 217 96 218 97 218 119 217 77 216 98 219 118 220 76 221 77 221 119 220 99 219 68 222 108 223 98 224 99 224 109 223 69 222 112 225 72 226 100 227 101 227 73 226 113 225 120 228 100 229 78 230 79 230 101 229 121 228 120 231 78 232 102 233 103 233 79 232 121 231 122 234 102 235 83 236 84 236 103 235 123 234 122 237 83 238 104 239 105 239 84 238 123 237 104 240 8 241 124 242 125 242 9 241 105 240 106 243 86 244 126 245 127 245 87 244 107 243 108 246 66 247 106 248 107 248 67 247 109 246 86 249 88 250 128 251 129 251 89 250 87 249 88 252 90 253 130 254 131 254 91 253 89 252 90 255 92 256 132 257 133 257 93 256 91 255 92 258 110 259 134 260 135 260 111 259 93 258 70 261 112 262 110 263 111 263 113 262 71 261 124 264 8 265 114 266 115 266 9 265 125 264 114 267 94 268 136 269 137 269 95 268 115 267 94 270 116 271 136 272 137 272 117 271 95 270 116 273 96 274 138 275 139 275 97 274 117 273 118 276 138 277 96 278 97 278 139 277 119 276 98 279 140 280 118 281 119 281 141 280 99 279 108 282 140 283 98 284 99 284 141 283 109 282 112 285 100 286 142 287 143 287 101 286 113 285 142 288 100 289 120 290 121 290 101 289 143 288 144 291 120 292 102 293 103 293 121 292 145 291 144 294 102 295 122 296 123 296 103 295 145 294 146 297 122 298 104 299 105 299 123 298 147 297 104 300 124 301 146 302 147 302 125 301 105 300 148 303 106 304 126 305 127 305 107 304 149 303 86 306 128 307 126 308 127 308 129 307 87 306 150 309 108 310 106 311 107 311 109 310 151 309 88 312 130 313 128 314 129 314 131 313 89 312 90 315 132 316 130 317 131 317 133 316 91 315 132 318 92 319 134 320 135 320 93 319 133 318 134 321 110 322 152 323 153 323 111 322 135 321 110 324 112 325 154 326 155 326 113 325 111 324 124 327 114 328 156 329 157 329 115 328 125 327 114 330 136 331 156 332 157 332 137 331 115 330 136 333 116 334 158 335 159 335 117 334 137 333 116 336 138 337 158 338 159 338 139 337 117 336 118 339 160 340 138 341 139 341 161 340 119 339 140 342 160 343 118 344 119 344 161 343 141 342 108 345 150 346 140 347 141 347 151 346 109 345 112 348 142 349 154 350 155 350 143 349 113 348 142 351 120 352 162 353 163 353 121 352 143 351 162 354 120 355 144 356 145 356 121 355 163 354 164 357 144 358 122 359 123 359 145 358 165 357 122 360 146 361 164 362 165 362 147 361 123 360 146 363 124 364 156 365 157 365 125 364 147 363 126 366 166 367 148 368 149 368 167 367 127 366 150 369 106 370 148 371 149 371 107 370 151 369 128 372 168 373 126 374 127 374 169 373 129 372 128 375 130 376 170 377 171 377 131 376 129 375 130 378 132 379 172 380 173 380 133 379 131 378 132 381 134 382 174 383 175 383 135 382 133 381 134 384 152 385 176 386 177 386 153 385 135 384 110 387 154 388 152 389 153 389 155 388 111 387 156 390 136 391 178 392 179 392 137 391 157 390 136 393 158 394 178 395 179 395 159 394 137 393 158 396 138 397 180 398 181 398 139 397 159 396 160 399 180 400 138 401 139 401 181 400 161 399 140 402 182 403 160 404 161 404 183 403 141 402 140 405 150 406 182 407 183 407 151 406 141 405 154 408 142 409 184 410 185 410 143 409 155 408 142 411 162 412 184 413 185 413 163 412 143 411 162 414 144 415 186 416 187 416 145 415 163 414 144 417 164 418 186 419 187 419 165 418 145 417 164 420 146 421 188 422 189 422 147 421 165 420 146 423 156 424 188 425 189 425 157 424 147 423 166 426 190 427 148 428 149 428 191 427 167 426 168 429 166 430 126 431 127 431 167 430 169 429 192 432 150 433 148 434 149 434 151 433 193 432 128 435 170 436 168 437 169 437 171 436 129 435 130 438 172 439 170 440 171 440 173 439 131 438 132 441 174 442 172 443 173 443 175 442 133 441 174 444 134 445 176 446 177 446 135 445 175 444 176 447 152 448 194 449 195 449 153 448 177 447 152 450 154 451 196 452 197 452 155 451 153 450 156 453 178 454 188 455 189 455 179 454 157 453 178 456 158 457 198 458 199 458 159 457 179 456 198 459 158 460 180 461 181 461 159 460 199 459 160 462 200 463 180 464 181 464 201 463 161 462 160 465 182 466 200 467 201 467 183 466 161 465 182 468 150 469 192 470 193 470 151 469 183 468 154 471 184 472 196 473 197 473 185 472 155 471 162 474 202 475 184 476 185 476 203 475 163 474 162 477 186 478 202 479 203 479 187 478 163 477 186 480 164 481 204 482 205 482 165 481 187 480 164 483 188 484 204 485 205 485 189 484 165 483 206 486 207 487 208 488 209 488 210 487 211 486 148 489 190 490 192 491 193 491 191 490 149 489 212 492 206 493 208 494 209 494 211 493 213 492 214 495 206 496 212 497 213 497 211 496 215 495 216 498 206 499 217 500 218 500 211 499 219 498 220 501 206 502 216 503 219 503 211 502 221 501 220 504 176 505 206 506 211 506 177 505 221 504 176 507 194 508 206 509 211 509 195 508 177 507 152 510 196 511 194 512 195 512 197 511 153 510 188 513 178 514 222 515 223 515 179 514 189 513 222 516 178 517 198 518 199 518 179 517 223 516 198 519 180 520 224 521 225 521 181 520 199 519 180 522 200 523 224 524 225 524 201 523 181 522 200 525 182 526 226 527 227 527 183 526 201 525 182 528 192 529 226 530 227 530 193 529 183 528 184 531 228 532 196 533 197 533 229 532 185 531 184 534 202 535 228 536 229 536 203 535 185 534 186 537 230 538 202 539 203 539 231 538 187 537 186 540 204 541 230 542 231 542 205 541 187 540 204 543 188 544 222 545 223 545 189 544 205 543 206 546 232 547 207 548 210 548 233 547 211 546 190 549 234 550 192 551 193 551 235 550 191 549 194 552 236 553 206 554 211 554 237 553 195 552 196 555 236 556 194 557 195 557 237 556 197 555 222 558 198 559 238 560 239 560 199 559 223 558 238 561 198 562 224 563 225 563 199 562 239 561 224 564 200 565 240 566 241 566 201 565 225 564 200 567 226 568 240 569 241 569 227 568 201 567 226 570 192 571 234 572 235 572 193 571 227 570 196 573 228 574 236 575 237 575 229 574 197 573 202 576 242 577 228 578 229 578 243 577 203 576 202 579 230 580 242 581 243 581 231 580 203 579 230 582 204 583 244 584 245 584 205 583 231 582 204 585 222 586 244 587 245 587 223 586 205 585 206 588 246 589 232 590 233 590 247 589 211 588 236 591 248 592 206 593 211 593 249 592 237 591 244 594 222 595 238 596 239 596 223 595 245 594 238 597 224 598 250 599 251 599 225 598 239 597 224 600 240 601 250 602 251 602 241 601 225 600 240 603 226 604 252 605 253 605 227 604 241 603 226 606 234 607 252 608 253 608 235 607 227 606 228 609 248 610 236 611 237 611 249 610 229 609 228 612 242 613 248 614 249 614 243 613 229 612 242 615 230 616 254 617 255 617 231 616 243 615 230 618 244 619 254 620 255 620 245 619 231 618 206 621 256 622 246 623 247 623 257 622 211 621 248 624 258 625 206 626 211 626 259 625 249 624 244 627 238 628 260 629 261 629 239 628 245 627 260 630 238 631 250 632 251 632 239 631 261 630 250 633 240 634 262 635 263 635 241 634 251 633 240 636 252 637 262 638 263 638 253 637 241 636 248 639 242 640 258 641 259 641 243 640 249 639 242 642 254 643 258 644 259 644 255 643 243 642 254 645 244 646 260 647 261 647 245 646 255 645 206 648 264 649 256 650 257 650 265 649 211 648 258 651 266 652 206 653 211 653 267 652 259 651 260 654 250 655 264 656 265 656 251 655 261 654 264 657 250 658 262 659 263 659 251 658 265 657 258 660 254 661 266 662 267 662 255 661 259 660 254 663 260 664 266 665 267 665 261 664 255 663 266 666 264 667 206 668 211 668 265 667 267 666 266 669 260 670 264 671 265 671 261 670 267 669</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID131\">\r\n            <mesh>\r\n                <source id=\"ID132\">\r\n                    <float_array count=\"300\" id=\"ID136\">-0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7668684720993042 -0.5068138837814331 0.2471411228179932 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7668684720993042 -0.5068138837814331 0.2471411228179932 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7764356732368469 -0.5068138837814331 0.2506216466426849 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7764356732368469 -0.5068138837814331 0.2506216466426849 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID136\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID133\">\r\n                    <float_array count=\"300\" id=\"ID137\">-0.3444744669286572 4.079759914057629e-006 -0.9387956868337078 -0.3444744635857354 4.23225667410034e-006 -0.9387956880596586 -0.2915421061266723 0.5326437071235343 -0.7945400440612941 0.2915421061266723 -0.5326437071235343 0.7945400440612941 0.3444744635857354 -4.23225667410034e-006 0.9387956880596586 0.3444744669286572 -4.079759914057629e-006 0.9387956868337078 0.942176612727427 -3.407978116043969e-007 -0.3351167414937004 0.9443365522823279 4.38158657145187e-008 -0.3289809660505061 0.9466284736151717 -0.006141568091176871 -0.322268233126369 -0.9466284736151717 0.006141568091176871 0.322268233126369 -0.9443365522823279 -4.38158657145187e-008 0.3289809660505061 -0.942176612727427 3.407978116043969e-007 0.3351167414937004 -0.2978240011526128 -0.502502490113407 -0.8116600962023906 0.2978240011526128 0.502502490113407 0.8116600962023906 -0.2879580904145521 0.5083478614726341 -0.8115803040371324 0.2879580904145521 -0.5083478614726341 0.8115803040371324 0.9453746644987464 0.01025145618060543 -0.3258245714645534 -0.9453746644987464 -0.01025145618060543 0.3258245714645534 0.946628563072084 0.00614092036701929 -0.3222679826993792 -0.946628563072084 -0.00614092036701929 0.3222679826993792 -0.8995939852382286 1.012405620589444e-011 0.4367272166046006 -0.8996043510403685 1.73211945004724e-006 0.4367058639247215 -0.8995978073140609 2.80740707445072e-010 0.4367193436015103 0.8995978073140609 -2.80740707445072e-010 -0.4367193436015103 0.8996043510403685 -1.73211945004724e-006 -0.4367058639247215 0.8995939852382286 -1.012405620589444e-011 -0.4367272166046006 -0.2841901110213427 -0.5268225958571753 -0.8010580086934929 0.2841901110213427 0.5268225958571753 0.8010580086934929 -0.8996043508901038 -1.73154997735763e-006 0.4367058642342657 0.8996043508901038 1.73154997735763e-006 -0.4367058642342657 -0.1575289664995284 0.8773623204698655 -0.4532328136105368 0.1575289664995284 -0.8773623204698655 0.4532328136105368 0.9439623282584713 0 -0.3300532121171466 -0.9439623282584713 -0 0.3300532121171466 0.9453746045541199 -0.0102512283230372 -0.32582475256188 -0.9453746045541199 0.0102512283230372 0.32582475256188 -0.8996005388610735 1.525096691196571e-005 0.436713716579036 0.8996005388610735 -1.525096691196571e-005 -0.436713716579036 -0.1652276555493636 -0.8656258515265084 -0.4726433190162198 0.1652276555493636 0.8656258515265084 0.4726433190162198 -0.8996005389579996 -1.525128351529844e-005 0.4367137163793637 0.8996005389579996 1.525128351529844e-005 -0.4367137163793637 -0.1610828583957122 0.8600686632090739 -0.4840807859198952 0.1610828583957122 -0.8600686632090739 0.4840807859198952 0.9460346225478317 0.004563988258263347 -0.3240334287569112 -0.9460346225478317 -0.004563988258263347 0.3240334287569112 5.715509850104025e-005 0.9999481864272838 -0.01017944959614463 -5.715509850104025e-005 -0.9999481864272838 0.01017944959614463 0.9439623343035419 0 -0.3300531948280579 -0.9439623343035419 -0 0.3300531948280579 -0.1493475103630262 -0.8821789182458041 -0.4466046096392519 0.1493475103630262 0.8821789182458041 0.4466046096392519 -0.8995833389788723 7.450330753906704e-018 0.436749145656432 0.8995833389788723 -7.450330753906704e-018 -0.436749145656432 -0.8995833389788784 7.451586262374615e-018 0.4367491456564195 0.8995833389788784 -7.451586262374615e-018 -0.4367491456564195 0.9415289990586808 0.01889261324753735 -0.3364018625041152 -0.9415289990586808 -0.01889261324753735 0.3364018625041152 -0.005477675187488539 0.9998653062196856 -0.01547140888073127 0.1704063428817634 0.8679535442270318 0.466495791373724 -0.1704063428817634 -0.8679535442270318 -0.466495791373724 0.005477675187488539 -0.9998653062196856 0.01547140888073127 0.946034644772299 -0.004563893317774229 -0.3240333652084827 -0.946034644772299 0.004563893317774229 0.3240333652084827 -0.004107270407317365 -0.9999227077040288 -0.01173494557484708 -0.003331995468411167 -0.9998028471998554 -0.01957458907005007 0.003331995468411167 0.9998028471998554 0.01957458907005007 0.004107270407317365 0.9999227077040288 0.01173494557484708 -0.8995854663270582 -1.122920923692321e-005 0.4367447637316722 0.8995854663270582 1.122920923692321e-005 -0.4367447637316722 -0.8995854663984171 1.122944233857225e-005 0.4367447635846849 0.8995854663984171 -1.122944233857225e-005 -0.4367447635846849 0.9398090404245463 3.199174541821317e-007 -0.341700113456509 -0.9398090404245463 -3.199174541821317e-007 0.341700113456509 0.3043241533703555 0.5032296839336767 0.8087933573437832 0.1678101137099761 0.8774056885098098 0.4494430147496695 -0.1678101137099761 -0.8774056885098098 -0.4494430147496695 -0.3043241533703555 -0.5032296839336767 -0.8087933573437832 0.9415290064490484 -0.01889209698707879 -0.3364018708130184 -0.9415290064490484 0.01889209698707879 0.3364018708130184 0.1730385331033649 -0.869260509229306 0.4630808062917779 0.1639094801891984 -0.8784978536901976 0.4487484856418159 -0.1639094801891984 0.8784978536901976 -0.4487484856418159 -0.1730385331033649 0.869260509229306 -0.4630808062917779 -0.8995945474336173 -2.706734065570341e-005 0.4367260577239058 0.8995945474336173 2.706734065570341e-005 -0.4367260577239058 -0.8995945473837314 2.70678889917239e-005 0.43672605782663 0.8995945473837314 -2.70678889917239e-005 -0.43672605782663 0.3048050421784275 0.5167260829904283 0.8000550239952098 0.3560251099978775 1.252025733392218e-005 0.9344763886231917 -0.3560251099978775 -1.252025733392218e-005 -0.9344763886231917 -0.3048050421784275 -0.5167260829904283 -0.8000550239952098 0.3081635667612611 -0.5007642538332132 0.8088698153620538 0.3019606338086662 -0.5141080316243367 0.8028154877985467 -0.3019606338086662 0.5141080316243367 -0.8028154877985467 -0.3081635667612611 0.5007642538332132 -0.8088698153620538 -0.8995957333211336 3.563160380080513e-010 0.4367236157919696 0.8995957333211336 -3.563160380080513e-010 -0.4367236157919696 0.3560250660667217 1.305518283296992e-005 0.934476405353152 -0.3560250660667217 -1.305518283296992e-005 -0.934476405353152</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID137\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID135\">\r\n                    <float_array count=\"284\" id=\"ID138\">8.835954899761456 2.887915538562082 8.770413372543002 2.816882901193681 8.733752412056139 2.836659965768741 -5.314774554701073 -0.2142585737425105 -5.313812817044318 -0.1445455542540637 -5.271796926739802 -0.2053242417841283 -0.9289416574248566 7.402765972782708 -0.8922781296017029 7.422541681094712 -0.863401992858196 7.3317322718534 8.799273287538805 2.907729616097122 8.835935518109764 2.887954017289928 8.73373342233003 2.836697960878422 -4.859119072430346 -0.09558662079202554 -4.902466791769723 -0.0353895062623624 -4.827996966860698 -0.06691013284173455 -4.816194187557621 -0.3007492821543235 -4.859173003559876 -0.2918149501666864 -4.817155898476206 -0.2310362624376061 5.067921635991438 -0.8939049498631768 5.110753786502324 -0.9543909004864848 5.067920551345233 -0.963747871921122 -0.8635100636443788 7.331723311569516 -0.8923874305780094 7.422532478723641 -0.826847922579062 7.351500619539451 5.068356041716164 -0.8938075335386285 5.068357126392557 -0.963650455596574 5.025525083324317 -0.9542934841619367 8.808957078028893 0.2235436860803819 8.789868649741981 0.2581306419745067 8.909327708334688 0.2618754518582341 -4.99395102262497 -0.2782860152253181 -5.068138837814331 -0.2463565045282997 -4.982474148273468 -0.2463565045282997 -5.274826460679561 -0.0428739002739665 -5.305948269550634 -0.01419741471706724 -5.231477552158321 0.01732320923153562 5.142585770829897 -0.9285234784541353 5.111230622193833 -0.9540887604745603 5.06839641844553 -0.8936037096588904 -5.677523129966245 5.173624890263669 -5.77687127388714 5.213571083110868 -5.753477191572667 5.243957175029614 5.067881250533171 -0.8937192322685431 5.025048238873127 -0.9542042830957674 4.993692792215798 -0.9286390010704587 8.917975008069023 0.1012065005595706 8.798526468680523 0.09725949789170468 8.89532322039822 0.1319388614386109 -5.068138837814331 -0.06678624390902521 -4.99395102262497 -0.03216016065111377 -4.982474148273468 -0.06678624390902521 8.190529426662092 0.9996672152945153 8.08979968190903 0.9727990861225769 8.074907594095551 1.00384362226358 -5.142327547073364 -0.2782860152253181 -5.153806209564209 -0.2463565045282997 -6.087457908013803 4.90321883025728 -6.105786276791672 4.868378548045608 -6.185120077832808 4.936362668216338 5.153806209564209 -0.8939784871425019 5.142327547073364 -0.9288991014895013 5.068138837814331 -0.8939784871425019 4.99395102262497 -0.9288991014895013 4.982474148273468 -0.8939784871425019 -4.994457814787069 -0.1757846438723037 -4.951862563447768 -0.1166043582780247 -4.920406936232481 -0.1409776365938563 7.291121875868974 2.969945835853808 7.19582799620366 2.941761479730215 7.18092159339962 2.975569337325649 8.195220010186123 1.088186045874139 8.079596744289182 1.092337823660826 8.174893249620968 1.120516685308637 -5.153806209564209 -0.06678624390902369 -5.142327547073364 -0.03216016065111223 -5.068138837814331 -0.06678624390902369 -7.137106535112019 3.060024521581374 -7.152088610920599 3.029006382100205 -7.232334484981479 3.088346443754763 -7.242612385084303 2.943389676118223 -7.343399522378902 2.970124280639696 -7.323149468945029 3.002485087503869 5.142327547073364 -0.859232200450826 5.153806209564209 -0.8941551102661389 5.068138837814331 -0.8941551102661389 4.99395102262497 -0.859232200450826 5.068138837814331 -0.8941551102661394 4.982474148273468 -0.8941551102661394 -4.832054457100766 -0.2738214624777934 -4.832959625552252 -0.2054526243414892 -4.78998926836575 -0.2144070109213413 5.598317121471339 5.263711799162454 5.578074224668392 5.294579086722642 5.683571160579093 5.298544798118836 7.290745375798657 2.966191282101151 7.180544980643493 2.971813416852751 7.270412587505954 2.99852205537594 -5.215406421209959 -0.1156881818831501 -5.183951092391164 -0.09131490251471087 -5.141354648074129 -0.1504951906648063 -8.083079912414807 1.092796300949026 -8.097990711575598 1.058989267437694 -8.172944713511527 1.119510781048612 -8.094798269883858 1.060530406342207 -8.190094705824908 1.088709413212966 -8.169765332536054 1.1210419082654 5.110783088494092 -0.8334782524305988 5.142138361268883 -0.8590419577254941 5.067949178412453 -0.8939642449202555 5.025495776989243 -0.8333931899840764 5.0683284949814 -0.8938791824822415 4.994140206192672 -0.8589568952825682 -5.299507771761791 -0.1908129161324697 -5.341574173907995 -0.131398464396818 -5.298602628478756 -0.1224440777899588 0.7746483127185083 7.390196991462098 0.7215207055259842 7.330470823398197 0.6845096625040692 7.349839445500478 5.693758894249335 5.227986497685446 5.588257337641396 5.224097600900424 5.670120622312615 5.258254352524729 -8.921870194509085 0.3337149091498159 -8.942408415393054 0.3029687755400236 -9.003367095494639 0.3684096216131407 -8.887500700048713 0.2305031088110326 -8.973102047573454 0.2648049438611277 -8.949729391207098 0.2951999908073414 5.067864535606823 -0.8241038597953553 5.110697440995674 -0.8334624164704209 5.06786315890317 -0.893948245928211 5.068413141266897 -0.8239802152392052 5.068414518008867 -0.89382460137206 5.025581427976076 -0.8333387719142708 -8.7257462002488 2.924610743178769 -8.741858115725387 3.003708982049239 -8.688733039413137 2.943978492221996 0.7383976461187897 7.40944198674381 0.7754057636934864 7.390068878114348 0.6852633045720957 7.349716597241113 -8.779349897822261 2.983342955922296 -8.742341417663866 3.002717266921394 -8.726214869462636 2.923620873445715</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"142\" source=\"#ID138\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID134\">\r\n                    <input semantic=\"POSITION\" source=\"#ID132\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID133\"/>\r\n                </vertices>\r\n                <triangles count=\"96\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID134\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID135\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 12 7 1 8 4 8 13 7 5 6 14 9 0 10 2 11 3 11 5 10 15 9 8 12 7 13 16 14 17 14 10 13 9 12 6 15 18 16 7 17 10 17 19 16 11 15 20 18 21 19 22 20 23 20 24 19 25 18 1 21 12 22 26 23 27 23 13 22 4 21 20 24 22 25 28 26 29 26 23 25 25 24 2 27 30 28 14 29 15 29 31 28 3 27 16 30 7 31 32 32 33 32 10 31 17 30 18 33 34 34 7 35 10 35 35 34 19 33 36 36 21 37 20 38 25 38 24 37 37 36 26 39 12 40 38 41 39 41 13 40 27 39 20 42 28 43 40 44 41 44 29 43 25 42 14 45 30 46 42 47 43 47 31 46 15 45 7 48 44 49 32 50 33 50 45 49 10 48 42 51 30 52 46 53 47 53 31 52 43 51 34 54 48 55 7 31 10 31 49 55 35 54 50 56 26 57 38 58 39 58 27 57 51 56 52 59 36 60 20 61 25 61 37 60 53 59 20 61 40 62 54 63 55 63 41 62 25 61 7 64 56 65 44 66 45 66 57 65 10 64 58 67 46 68 59 69 60 69 47 68 61 67 42 70 46 71 58 72 61 72 47 71 43 70 48 73 62 74 7 75 10 75 63 74 49 73 64 76 50 77 65 78 66 78 51 77 67 76 50 79 38 80 65 81 66 81 39 80 51 79 68 82 52 83 20 84 25 84 53 83 69 82 70 85 20 86 54 87 55 87 25 86 71 85 7 88 72 89 56 90 57 90 73 89 10 88 59 91 74 92 75 93 76 93 77 92 60 91 58 94 59 95 75 96 76 96 60 95 61 94 62 97 78 98 7 99 10 99 79 98 63 97 80 100 64 101 81 102 82 102 67 101 83 100 64 103 65 104 81 105 82 105 66 104 67 103 84 106 68 107 20 108 25 108 69 107 85 106 86 109 20 110 70 111 71 111 25 110 87 109 7 112 78 113 72 114 73 114 79 113 10 112 88 115 74 116 89 117 90 117 77 116 91 115 75 118 74 119 88 120 91 120 77 119 76 118 92 121 80 122 93 123 94 123 83 122 95 121 80 124 81 125 93 126 94 126 82 125 83 124 96 127 84 128 20 129 25 129 85 128 97 127 96 130 20 131 86 132 87 132 25 131 97 130 92 133 98 134 89 135 90 135 99 134 95 133 98 136 88 137 89 138 90 138 91 137 99 136 93 139 98 140 92 141 95 141 99 140 94 139</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID141\">\r\n            <mesh>\r\n                <source id=\"ID142\">\r\n                    <float_array count=\"1134\" id=\"ID147\">0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7976231575012207 0.6196871995925903 -0.1194272115826607 0.7976231575012207 0.6196871995925903 -0.1194272115826607 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7976231575012207 0.6200764179229736 0.01818196848034859 0.7976231575012207 0.6200764179229736 0.01818196848034859 0.7976231575012207 0.7611286044120789 -0.118915356695652 0.7976231575012207 0.7611286044120789 -0.118915356695652 0.7976231575012207 0.7639247179031372 0.02084463648498058 0.7976231575012207 0.7639247179031372 0.02084463648498058 0.798487663269043 0.4255831241607666 0.01916016265749931 0.798487663269043 0.4255831241607666 0.01916016265749931 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7976231575012207 0.7669853568077087 0.1513165235519409 0.7976231575012207 0.7669853568077087 0.1513165235519409 0.7976231575012207 0.6231358647346497 0.1513165235519409 0.7976231575012207 0.6231358647346497 0.1513165235519409 0.7976231575012207 0.872636616230011 -0.118915356695652 0.7976231575012207 0.872636616230011 -0.118915356695652 0.7976231575012207 0.8771676421165466 0.02084463648498058 0.7976231575012207 0.8771676421165466 0.02084463648498058 0.7976231575012207 0.8771676421165466 0.1513165235519409 0.7976231575012207 0.8771676421165466 0.1513165235519409 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7687971591949463 0.7642374038696289 0.234848827123642 0.7687971591949463 0.7642374038696289 0.234848827123642 0.7687971591949463 0.8763352632522583 0.234848827123642 0.7687971591949463 0.8763352632522583 0.234848827123642 0.7698178291320801 0.6222134828567505 0.2340750992298126 0.7698178291320801 0.6222134828567505 0.2340750992298126 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7687971591949463 1.068503022193909 0.234848827123642 0.7687971591949463 1.068503022193909 0.234848827123642 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 1.067611813545227 0.1501588523387909 0.7976231575012207 1.067611813545227 0.1501588523387909 0.7461556792259216 0.7716558575630188 0.29511559009552 0.7461556792259216 0.7716558575630188 0.29511559009552 0.7460806965827942 0.8783665895462036 0.29511559009552 0.7460806965827942 0.8783665895462036 0.29511559009552 0.7444993853569031 1.070043087005615 0.292364776134491 0.7444993853569031 1.070043087005615 0.292364776134491 0.7471287846565247 0.6197603940963745 0.2984656691551209 0.7471287846565247 0.6197603940963745 0.2984656691551209 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7687971591949463 1.22945249080658 0.2351814955472946 0.7687971591949463 1.22945249080658 0.2351814955472946 0.7424870729446411 1.229051828384399 0.2896876931190491 0.7424870729446411 1.229051828384399 0.2896876931190491 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7976231575012207 1.226557493209839 0.1501588523387909 0.7976231575012207 1.226557493209839 0.1501588523387909 0.6736209392547607 0.8758261203765869 0.358364999294281 0.6736209392547607 0.8758261203765869 0.358364999294281 0.6739693880081177 0.7716558575630188 0.3602698147296906 0.6739693880081177 0.7716558575630188 0.3602698147296906 0.6727290749549866 1.070043087005615 0.342584639787674 0.6727290749549866 1.070043087005615 0.342584639787674 0.6714252829551697 1.229051828384399 0.3374882340431213 0.6714252829551697 1.229051828384399 0.3374882340431213 0.674491286277771 0.6242926120758057 0.356035441160202 0.674491286277771 0.6242926120758057 0.356035441160202 0.7687971591949463 1.336279630661011 0.2374546378850937 0.7687971591949463 1.336279630661011 0.2374546378850937 0.7405544519424439 1.33383572101593 0.2877088189125061 0.7405544519424439 1.33383572101593 0.2877088189125061 0.6702165007591248 1.338770151138306 0.3299798667430878 0.6702165007591248 1.338770151138306 0.3299798667430878 0.688839852809906 0.4193950891494751 0.3588072657585144 0.688839852809906 0.4193950891494751 0.3588072657585144 0.6524490714073181 0.770412027835846 0.3768142461776733 0.6524490714073181 0.770412027835846 0.3768142461776733 0.6521070003509522 0.8788958787918091 0.36956787109375 0.6521070003509522 0.8788958787918091 0.36956787109375 0.6511565446853638 0.6258586049079895 0.3818635642528534 0.6511565446853638 0.6258586049079895 0.3818635642528534 0.6503376960754395 1.071277260780335 0.3560464382171631 0.6503376960754395 1.071277260780335 0.3560464382171631 0.7946488857269287 1.336279630661011 0.1839811652898789 0.7946488857269287 1.336279630661011 0.1839811652898789 0.6476884484291077 1.231573462486267 0.3451077938079834 0.6476884484291077 1.231573462486267 0.3451077938079834 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.7687971591949463 1.430078029632568 0.2376271635293961 0.7687971591949463 1.430078029632568 0.2376271635293961 0.7387611269950867 1.431114196777344 0.2848821878433228 0.7387611269950867 1.431114196777344 0.2848821878433228 0.668738603591919 1.432783603668213 0.3242798447608948 0.668738603591919 1.432783603668213 0.3242798447608948 0.6441174149513245 1.337924003601074 0.3337158262729645 0.6441174149513245 1.337924003601074 0.3337158262729645 0.6322492361068726 0.7708060741424561 0.3701403439044952 0.6322492361068726 0.7708060741424561 0.3701403439044952 0.6230122447013855 0.8783389925956726 0.3555973768234253 0.6230122447013855 0.8783389925956726 0.3555973768234253 0.6149778366088867 1.073966383934021 0.34251469373703 0.6149778366088867 1.073966383934021 0.34251469373703 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6076487898826599 1.231997966766357 0.325863778591156 0.6076487898826599 1.231997966766357 0.325863778591156 0.7952814698219299 1.430078029632568 0.1879792362451553 0.7952814698219299 1.430078029632568 0.1879792362451553 0.6022510528564453 1.338981509208679 0.3172231614589691 0.6022510528564453 1.338981509208679 0.3172231614589691 0.7687971591949463 1.527541875839233 0.2388848811388016 0.7687971591949463 1.527541875839233 0.2388848811388016 0.7354865670204163 1.524521231651306 0.2817167937755585 0.7354865670204163 1.524521231651306 0.2817167937755585 0.6677529215812683 1.524521231651306 0.3170008361339569 0.6677529215812683 1.524521231651306 0.3170008361339569 0.6405463814735413 1.43192446231842 0.3254314661026001 0.6405463814735413 1.43192446231842 0.3254314661026001 0.5962012410163879 1.422707080841065 0.303942084312439 0.5962012410163879 1.422707080841065 0.303942084312439 0.6069484949111939 0.8772760033607483 0.3508152365684509 0.6069484949111939 0.8772760033607483 0.3508152365684509 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.5943053960800171 1.076266169548035 0.3287610411643982 0.5943053960800171 1.076266169548035 0.3287610411643982 0.5860564708709717 1.234852313995361 0.3147788345813751 0.5860564708709717 1.234852313995361 0.3147788345813751 0.7969198822975159 1.529133081436157 0.1681521981954575 0.7969198822975159 1.529133081436157 0.1681521981954575 0.5783446431159973 1.340795755386353 0.2962920665740967 0.5783446431159973 1.340795755386353 0.2962920665740967 0.7629945874214172 1.629548072814941 0.2351733148097992 0.7629945874214172 1.629548072814941 0.2351733148097992 0.7300229668617249 1.627527952194214 0.2751796841621399 0.7300229668617249 1.627527952194214 0.2751796841621399 0.6662258505821228 1.630582451820374 0.3066250681877136 0.6662258505821228 1.630582451820374 0.3066250681877136 0.6369754076004028 1.523992538452148 0.3161111772060394 0.6369754076004028 1.523992538452148 0.3161111772060394 0.5925832986831665 1.534539937973023 0.2910608053207398 0.5925832986831665 1.534539937973023 0.2910608053207398 0.5729466080665588 1.432812809944153 0.2799475789070129 0.5729466080665588 1.432812809944153 0.2799475789070129 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5641165971755981 1.231308460235596 0.2951163649559021 0.5641165971755981 1.231308460235596 0.2951163649559021 0.7976231575012207 1.629548072814941 0.1532912850379944 0.7976231575012207 1.629548072814941 0.1532912850379944 0.5558203458786011 1.338033199310303 0.2760796546936035 0.5558203458786011 1.338033199310303 0.2760796546936035 0.7910681962966919 1.631798982620239 0.123851403594017 0.7910681962966919 1.631798982620239 0.123851403594017 0.7581207752227783 1.731385946273804 0.2290779650211334 0.7581207752227783 1.731385946273804 0.2290779650211334 0.7230180501937866 1.735270857810974 0.2675617933273315 0.7230180501937866 1.735270857810974 0.2675617933273315 0.6637653708457947 1.735270857810974 0.2955930531024933 0.6637653708457947 1.735270857810974 0.2955930531024933 0.6328089237213135 1.630808830261231 0.3067907989025116 0.6328089237213135 1.630808830261231 0.3067907989025116 0.5831363201141357 1.635170221328735 0.2697256505489349 0.5831363201141357 1.635170221328735 0.2697256505489349 0.5668072104454041 1.539629101753235 0.2627097368240356 0.5668072104454041 1.539629101753235 0.2627097368240356 0.5483854413032532 1.437644124031067 0.2575764954090118 0.5483854413032532 1.437644124031067 0.2575764954090118 0.7976231575012207 1.731245756149292 0.1508422940969467 0.7976231575012207 1.731245756149292 0.1508422940969467 0.7774713039398193 1.770382642745972 0.08878238499164581 0.7774713039398193 1.770382642745972 0.08878238499164581 0.7529417276382446 1.832421541213989 0.2219224870204926 0.7529417276382446 1.832421541213989 0.2219224870204926 0.7168887853622437 1.830480456352234 0.2584208846092224 0.7168887853622437 1.830480456352234 0.2584208846092224 0.6609818935394287 1.828536510467529 0.2839697897434235 0.6609818935394287 1.828536510467529 0.2839697897434235 0.6256666779518127 1.734643340110779 0.2933281362056732 0.6256666779518127 1.734643340110779 0.2933281362056732 0.5772106051445007 1.733703374862671 0.2523872554302216 0.5772106051445007 1.733703374862671 0.2523872554302216 0.5580869913101196 1.635875701904297 0.243652269244194 0.5580869913101196 1.635875701904297 0.243652269244194 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5391620993614197 1.536199450492859 0.2382145375013351 0.7868422269821167 1.832582235336304 0.1508422940969467 0.7868422269821167 1.832582235336304 0.1508422940969467 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7774713039398193 1.831223368644714 0.08806630969047546 0.7774713039398193 1.831223368644714 0.08806630969047546 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7089943289756775 1.906256556510925 0.2465686351060867 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6161291599273682 1.828536510467529 0.2750792801380158 0.6161291599273682 1.828536510467529 0.2750792801380158 0.569970428943634 1.82999062538147 0.2332505583763123 0.569970428943634 1.82999062538147 0.2332505583763123 0.5455059409141541 1.737459182739258 0.2144985496997833 0.5455059409141541 1.737459182739258 0.2144985496997833 0.5255792737007141 1.631603479385376 0.2142343670129776 0.5255792737007141 1.631603479385376 0.2142343670129776 0.7709382176399231 1.897327780723572 0.1462340503931046 0.7709382176399231 1.897327780723572 0.1462340503931046 0.758520245552063 1.848836660385132 0.05843546241521835 0.758520245552063 1.848836660385132 0.05843546241521835 0.7762541174888611 1.794281721115112 0.06106704473495483 0.7762541174888611 1.794281721115112 0.06106704473495483 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7930033206939697 1.725906729698181 0.03279396891593933 0.7930033206939697 1.725906729698181 0.03279396891593933 0.6045059561729431 1.912085294723511 0.2496029883623123 0.6045059561729431 1.912085294723511 0.2496029883623123 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5392844080924988 1.786986827850342 0.1989490985870361 0.5392844080924988 1.786986827850342 0.1989490985870361 0.5107629299163818 1.737711548805237 0.1886539459228516 0.5107629299163818 1.737711548805237 0.1886539459228516 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7667569518089294 1.816561579704285 0.03192228823900223 0.7667569518089294 1.816561579704285 0.03192228823900223 0.5368551015853882 1.831621766090393 0.1790818572044373 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5368551015853882 1.831621766090393 0.1790818572044373 0.7158539295196533 1.866551876068115 0.03108330257236958 0.7158539295196533 1.866551876068115 0.03108330257236958 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6598671674728394 1.913674473762512 0.02759447880089283 0.7762541174888611 1.840326070785523 -0.01964796893298626 0.7762541174888611 1.840326070785523 -0.01964796893298626 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4955552816390991 1.831614017486572 0.16129469871521 0.4955552816390991 1.831614017486572 0.16129469871521 0.7189935445785523 1.884884715080261 -0.0176821406930685 0.7189935445785523 1.884884715080261 -0.0176821406930685 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.6611202955245972 1.907618165016174 -0.01770789735019207 0.6611202955245972 1.907618165016174 -0.01770789735019207 0.7738800644874573 1.862605094909668 -0.08081070333719254 0.7738800644874573 1.862605094909668 -0.08081070333719254 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5996825695037842 1.907618165016174 0.02810462191700935 0.5996825695037842 1.907618165016174 0.02810462191700935 0.725027859210968 1.896474838256836 -0.07735307514667511 0.725027859210968 1.896474838256836 -0.07735307514667511 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.4961572587490082 1.913546085357666 0.03562422469258308 0.4961572587490082 1.913546085357666 0.03562422469258308 0.5986562371253967 1.918723344802856 -0.0167639497667551 0.5986562371253967 1.918723344802856 -0.0167639497667551 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6611202955245972 1.918723344802856 -0.0708390548825264 0.6611202955245972 1.918723344802856 -0.0708390548825264 0.7738800644874573 1.868109583854675 -0.1344994306564331 0.7738800644874573 1.868109583854675 -0.1344994306564331 0.518811047077179 1.913546085357666 0.007866731844842434 0.518811047077179 1.913546085357666 0.007866731844842434 0.7228279709815979 1.896474838256836 -0.1368977874517441 0.7228279709815979 1.896474838256836 -0.1368977874517441 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5986562371253967 1.918723344802856 -0.06880220025777817 0.5986562371253967 1.918723344802856 -0.06880220025777817 0.6611202955245972 1.923628926277161 -0.1305911093950272 0.6611202955245972 1.923628926277161 -0.1305911093950272 0.7654834985733032 1.864772439002991 -0.1993826925754547 0.7654834985733032 1.864772439002991 -0.1993826925754547 0.7074308395385742 1.889798879623413 -0.1963488012552261 0.7074308395385742 1.889798879623413 -0.1963488012552261 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5967269539833069 1.918723344802856 -0.1292334944009781 0.5967269539833069 1.918723344802856 -0.1292334944009781 0.6610304117202759 1.908910393714905 -0.1960339546203613 0.6610304117202759 1.908910393714905 -0.1960339546203613 0.7544460296630859 1.854760766029358 -0.2666657269001007 0.7544460296630859 1.854760766029358 -0.2666657269001007 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.6866759657859802 1.878122568130493 -0.2706334590911865 0.6866759657859802 1.878122568130493 -0.2706334590911865 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.5986562371253967 1.913129925727844 -0.1947008222341538 0.5986562371253967 1.913129925727844 -0.1947008222341538 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.6520506143569946 1.899369478225708 -0.2707102298736572 0.6520506143569946 1.899369478225708 -0.2707102298736572 0.7397289276123047 1.849756956100464 -0.2961414754390717 0.7397289276123047 1.849756956100464 -0.2961414754390717 0.674824595451355 1.873115420341492 -0.2989807724952698 0.674824595451355 1.873115420341492 -0.2989807724952698 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.5926526784896851 1.902366518974304 -0.2694905698299408 0.5926526784896851 1.902366518974304 -0.2694905698299408 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.642670750617981 1.887944936752319 -0.2983261346817017 0.642670750617981 1.887944936752319 -0.2983261346817017 0.7001771926879883 1.811398148536682 -0.3453316688537598 0.7001771926879883 1.811398148536682 -0.3453316688537598 0.5936500430107117 1.890616059303284 -0.2966291010379791 0.5936500430107117 1.890616059303284 -0.2966291010379791 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.6569415926933289 1.831865787506104 -0.3451592326164246 0.6569415926933289 1.831865787506104 -0.3451592326164246 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.6276070475578308 1.831865787506104 -0.3451592326164246 0.6276070475578308 1.831865787506104 -0.3451592326164246 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.424839973449707 1.892464518547058 -0.2987582087516785 0.424839973449707 1.892464518547058 -0.2987582087516785 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.5814452171325684 1.831865787506104 -0.3430174887180328 0.5814452171325684 1.831865787506104 -0.3430174887180328 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"378\" source=\"#ID147\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID143\">\r\n                    <float_array count=\"1134\" id=\"ID148\">0.9900552956686062 -0.002352708047164541 -0.1406590782118 0.997169978879332 0.0005626500067133648 -0.07517789998904474 0.9976197425330905 -0.001196871580965296 -0.0689450274249644 -0.9976197425330905 0.001196871580965296 0.0689450274249644 -0.997169978879332 -0.0005626500067133648 0.07517789998904474 -0.9900552956686062 0.002352708047164541 0.1406590782118 0.9907502151915427 -0.003272368041776708 -0.1356587730495558 -0.9907502151915427 0.003272368041776708 0.1356587730495558 0.9999987715484215 0.001298132680655167 -0.0008784948441743609 -0.9999987715484215 -0.001298132680655167 0.0008784948441743609 0.9977882280381223 -0.0004295143788617648 -0.06647155411107901 -0.9977882280381223 0.0004295143788617648 0.06647155411107901 1 0 0 -1 -0 -0 0.9996866781643978 -0.01287970789148096 0.02146295937799879 -0.9996866781643978 0.01287970789148096 -0.02146295937799879 0.9916288815365839 -0.004292839331706357 -0.1290493426289959 -0.9916288815365839 0.004292839331706357 0.1290493426289959 0.9862294564733497 -1.023521613759804e-018 0.1653827656809535 -0.9862294564733497 1.023521613759804e-018 -0.1653827656809535 0.9855234036645701 -0.0150094328749683 0.1688737331682242 -0.9855234036645701 0.0150094328749683 -0.1688737331682242 0.9984170139917291 -0.005688295605190683 -0.05595631747128758 -0.9984170139917291 0.005688295605190683 0.05595631747128758 1 0 0 -1 -0 -0 0.9862261923033275 0.0001385673981601088 0.1654021717328899 -0.9862261923033275 -0.0001385673981601088 -0.1654021717328899 0.9857490260995654 -0.03215838325426263 0.1651202468815681 -0.9857490260995654 0.03215838325426263 -0.1651202468815681 0.993558929430381 -0.01612267807413861 -0.1121637775793633 -0.993558929430381 0.01612267807413861 0.1121637775793633 0.9410463363002816 0.001842553401757326 0.3382726680250405 -0.9410463363002816 -0.001842553401757326 -0.3382726680250405 0.9399697361499318 0.002496753562366073 0.341248679622173 -0.9399697361499318 -0.002496753562366073 -0.341248679622173 0.9472756568605438 -0.00553628734223512 0.320371939223599 -0.9472756568605438 0.00553628734223512 -0.320371939223599 1 0 0 -1 -0 -0 0.9986371166879656 -0.003641535286201516 -0.05206388761805772 -0.9986371166879656 0.003641535286201516 0.05206388761805772 1 0 0 -1 -0 -0 0.9334242866530585 0.003566205222945827 0.358756718775463 -0.9334242866530585 -0.003566205222945827 -0.358756718775463 0.9613972024972641 -0.002189232112902448 0.2751556401260756 -0.9613972024972641 0.002189232112902448 -0.2751556401260756 0.9999088897289408 2.49493391549871e-019 -0.01349860144745444 -0.9999088897289408 -2.49493391549871e-019 0.01349860144745444 0.9866434192671509 0.0003843271064437876 0.1628944919556831 -0.9866434192671509 -0.0003843271064437876 -0.1628944919556831 0.8268208571787928 0.009421202414397688 0.5623864428301889 -0.8268208571787928 -0.009421202414397688 -0.5623864428301889 0.8167992916288501 0.01709412357318276 0.5766686293998258 -0.8167992916288501 -0.01709412357318276 -0.5766686293998258 0.7779744640104565 0.01700624928527182 0.6280656978635992 -0.7779744640104565 -0.01700624928527182 -0.6280656978635992 0.8163231400853481 -8.704477407084645e-005 0.5775954669008445 -0.8163231400853481 8.704477407084645e-005 -0.5775954669008445 1 0 0 -1 -0 -0 0.9237450876980882 0.001311220861844423 0.383005605250763 -0.9237450876980882 -0.001311220861844423 -0.383005605250763 0.7541917009803472 0.02513245543842398 0.6561731767270028 -0.7541917009803472 -0.02513245543842398 -0.6561731767270028 0.8419595543963964 0.02106488778245558 0.5391292788036411 -0.8419595543963964 -0.02106488778245558 -0.5391292788036411 0.9579580307156499 -0.0150347799141805 0.2865141650605185 -0.9579580307156499 0.0150347799141805 -0.2865141650605185 0.5722866440581146 0.04950480248095534 0.8185580441019579 -0.5722866440581146 -0.04950480248095534 -0.8185580441019579 0.6404287661317567 0.01381415417394053 0.7678933289561866 -0.6404287661317567 -0.01381415417394053 -0.7678933289561866 0.5511062456143986 0.03972205931053413 0.8334890905398419 -0.5511062456143986 -0.03972205931053413 -0.8334890905398419 0.4447699353356177 0.05578200889076308 0.8939060756621251 -0.4447699353356177 -0.05578200889076308 -0.8939060756621251 0.6923543389926927 0.01264347006466835 0.7214468878183032 -0.6923543389926927 -0.01264347006466835 -0.7214468878183032 0.890213441644624 -0.01369295778836025 0.4553378209881536 -0.890213441644624 0.01369295778836025 -0.4553378209881536 0.7186762426794346 0.02684668868725016 0.6948263909169687 -0.7186762426794346 -0.02684668868725016 -0.6948263909169687 0.3458403087416392 0.06829456209539139 0.9358046450182251 -0.3458403087416392 -0.06829456209539139 -0.9358046450182251 0.75368530727801 0.06163089589583062 0.6543394304673444 -0.75368530727801 -0.06163089589583062 -0.6543394304673444 0.157066604294048 0.04904476334098479 0.9863694505632075 -0.157066604294048 -0.04904476334098479 -0.9863694505632075 0.02443806644282753 0.06659572866917021 0.9974807215337839 -0.02443806644282753 -0.06659572866917021 -0.9974807215337839 0.2630441307697239 0.04030051035594109 0.9639417275606712 -0.2630441307697239 -0.04030051035594109 -0.9639417275606712 0.08335440127704034 0.06610197704781352 0.9943251844432567 -0.08335440127704034 -0.06610197704781352 -0.9943251844432567 0.8957315970327513 -0.06402836860577338 0.4399605369698968 -0.8957315970327513 0.06402836860577338 -0.4399605369698968 -0.06492613846004917 0.06947997884781025 0.9954682963731061 0.06492613846004917 -0.06947997884781025 -0.9954682963731061 0.7783133842626236 0.06431532705604588 0.6245733060124612 -0.7783133842626236 -0.06431532705604588 -0.6245733060124612 0.8617517623012343 0.001114692778924215 0.5073289442075288 -0.8617517623012343 -0.001114692778924215 -0.5073289442075288 0.6891552101990586 0.03963287346438789 0.7235290813757573 -0.6891552101990586 -0.03963287346438789 -0.7235290813757573 0.278777090103203 0.07301736481532682 0.9575760014061632 -0.278777090103203 -0.07301736481532682 -0.9575760014061632 -0.1276463389581969 0.09421586330362655 0.9873346865437888 0.1276463389581969 -0.09421586330362655 -0.9873346865437888 -0.2920792382219204 0.0721269134737136 0.9536705022975484 0.2920792382219204 -0.0721269134737136 -0.9536705022975484 -0.3571230440059741 0.06599960238081828 0.9317226969036875 0.3571230440059741 -0.06599960238081828 -0.9317226969036875 -0.4506036016147756 0.06628064034319742 0.8902602265222728 0.4506036016147756 -0.06628064034319742 -0.8902602265222728 -0.2698068405574629 0.03894401619505566 0.9621266197289207 -0.2693199515713319 0.03468941093848316 0.9624257937391103 0.2693199515713319 -0.03468941093848316 -0.9624257937391103 0.2698068405574629 -0.03894401619505566 -0.9621266197289207 -0.4411119244105691 0.05372970429490571 0.8958422790978254 0.4411119244105691 -0.05372970429490571 -0.8958422790978254 0.8931455316935644 -0.001744440434512021 0.4497644007070713 -0.8931455316935644 0.001744440434512021 -0.4497644007070713 -0.5089425449950996 0.08994888652575087 0.8560880116592503 0.5089425449950996 -0.08994888652575087 -0.8560880116592503 0.8603328292912356 0.04401005563554806 0.5078292408346468 -0.8603328292912356 -0.04401005563554806 -0.5078292408346468 0.6433431650210305 0.05695677214154844 0.7634562843594509 -0.6433431650210305 -0.05695677214154844 -0.7634562843594509 0.2291499131194153 0.08885161135973935 0.9693274516261995 -0.2291499131194153 -0.08885161135973935 -0.9693274516261995 -0.2166937839321052 0.08239336651058744 0.9727564634379143 0.2166937839321052 -0.08239336651058744 -0.9727564634379143 -0.5746463005236908 0.07940848382555334 0.8145403133000618 0.5746463005236908 -0.07940848382555334 -0.8145403133000618 -0.2550544664270329 0.09062866748743163 0.962670070057792 0.2550544664270329 -0.09062866748743163 -0.962670070057792 -0.268208641338077 0.08039316393004066 0.9600005541169757 0.268208641338077 -0.08039316393004066 -0.9600005541169757 -0.5040571034588977 0.06903428738336181 0.8609069076375783 0.5040571034588977 -0.06903428738336181 -0.8609069076375783 -0.5691109628437332 0.06388130761124124 0.8197755122647643 0.5691109628437332 -0.06388130761124124 -0.8197755122647643 0.9418618395814504 0.05197652566664391 0.3319558945400289 -0.9418618395814504 -0.05197652566664391 -0.3319558945400289 -0.6651250306610507 0.08194918217676402 0.7422216819311438 0.6651250306610507 -0.08194918217676402 -0.7422216819311438 0.8512879043211205 0.07117862593348728 0.5198485425263549 -0.8512879043211205 -0.07117862593348728 -0.5198485425263549 0.619245477230669 0.08797079891542996 0.7802539185851883 -0.619245477230669 -0.08797079891542996 -0.7802539185851883 0.2313078287806651 0.09844277603067 0.9678872393993784 -0.2313078287806651 -0.09844277603067 -0.9678872393993784 -0.2676693105422716 0.09407514478910847 0.9589071943242126 0.2676693105422716 -0.09407514478910847 -0.9589071943242126 -0.6004211577830194 0.09502269862054737 0.7940183373407487 0.6004211577830194 -0.09502269862054737 -0.7940183373407487 -0.6841191930593298 0.07792027847086325 0.7251960837531285 0.6841191930593298 -0.07792027847086325 -0.7251960837531285 -0.2193006907917859 0.09994973342337506 0.9705242180424153 0.2193006907917859 -0.09994973342337506 -0.9705242180424153 -0.895673926454469 0.000862505034626854 0.4447105503073879 0.895673926454469 -0.000862505034626854 -0.4447105503073879 -0.9606480777099047 0.006747156029087368 0.277686417884966 0.9606480777099047 -0.006747156029087368 -0.277686417884966 0.9963145726077562 0.01035982162450304 0.08514661769754983 -0.9963145726077562 -0.01035982162450304 -0.08514661769754983 -0.6701351984268618 0.08537696750274057 0.7373124095316902 0.6701351984268618 -0.08537696750274057 -0.7373124095316902 0.983777930475698 0.007551106240307528 -0.1792315940438523 -0.983777930475698 -0.007551106240307528 0.1792315940438523 0.8252223957521297 0.07354185068204758 0.5599996372743245 -0.8252223957521297 -0.07354185068204758 -0.5599996372743245 0.5945268041904479 0.1033653995277004 0.7974042094694331 -0.5945268041904479 -0.1033653995277004 -0.7974042094694331 0.1932005350996065 0.1192242477747035 0.9738886650843524 -0.1932005350996065 -0.1192242477747035 -0.9738886650843524 -0.3142248385532922 0.08615462943965131 0.9454311876928294 0.3142248385532922 -0.08615462943965131 -0.9454311876928294 -0.6518420645040525 0.08411285033915791 0.7536756274093763 0.6518420645040525 -0.08411285033915791 -0.7536756274093763 -0.699313003458432 0.07803047773575904 0.7105438534941222 0.699313003458432 -0.07803047773575904 -0.7105438534941222 -0.6622814848387056 0.08497993225021311 0.7444203422493159 0.6622814848387056 -0.08497993225021311 -0.7444203422493159 0.9949544543089252 0.04854030718942921 0.08780360145680287 -0.9949544543089252 -0.04854030718942921 -0.08780360145680287 0.9901379325004186 0.1122611193768768 -0.08381119078051108 -0.9901379325004186 -0.1122611193768768 0.08381119078051108 0.8032877158295905 0.1034007057999469 0.5865467923681383 -0.8032877158295905 -0.1034007057999469 -0.5865467923681383 0.5551052080391238 0.1581470010154239 0.8166074540914189 -0.5551052080391238 -0.1581470010154239 -0.8166074540914189 0.1213402806397459 0.2048808402222884 0.971236519908553 -0.1213402806397459 -0.2048808402222884 -0.971236519908553 -0.3781550379003967 0.1064664390502687 0.9195997306798786 0.3781550379003967 -0.1064664390502687 -0.9195997306798786 -0.6975916079972683 0.08525585232582549 0.711405220739898 0.6975916079972683 -0.08525585232582549 -0.711405220739898 -0.7002539934369103 0.09092200289402992 0.7080801748851593 0.7002539934369103 -0.09092200289402992 -0.7080801748851593 -0.6677750823147534 0.08506158820664575 0.7394869611097193 0.6677750823147534 -0.08506158820664575 -0.7394869611097193 0.9833538533676359 0.1393665663939898 0.1165854160629505 -0.9833538533676359 -0.1393665663939898 -0.1165854160629505 0.9757539082018429 0.141577994889696 0.1669130971249493 -0.9757539082018429 -0.141577994889696 -0.1669130971249493 0.935136779511798 0.1146530242704431 -0.3352221466877514 -0.935136779511798 -0.1146530242704431 0.3352221466877514 0.9788947884377451 0.1472326476577278 0.1417305211770475 -0.9788947884377451 -0.1472326476577278 -0.1417305211770475 0.7476957669442501 0.4263151891498764 0.509123167410161 -0.7476957669442501 -0.4263151891498764 -0.509123167410161 0.4351652976529689 0.4515882744243441 0.7789089767880753 -0.4351652976529689 -0.4515882744243441 -0.7789089767880753 0.05563331340804202 0.5289120472471837 0.8468512152179009 -0.05563331340804202 -0.5289120472471837 -0.8468512152179009 -0.4461974740070724 0.1722475743624215 0.8782019057801969 0.4461974740070724 -0.1722475743624215 -0.8782019057801969 -0.7419998352307358 0.139150102798354 0.655799888234794 0.7419998352307358 -0.139150102798354 -0.655799888234794 -0.6897695245368228 0.1108441646533761 0.7154939372087931 0.6897695245368228 -0.1108441646533761 -0.7154939372087931 -0.6647898545472454 0.1067289742039228 0.7393668746680708 0.6647898545472454 -0.1067289742039228 -0.7393668746680708 0.8950740664183305 0.4457805184040029 0.01105192457504562 -0.8950740664183305 -0.4457805184040029 -0.01105192457504562 0.8045230737725263 0.3681127863915901 -0.466085400181797 -0.8045230737725263 -0.3681127863915901 0.466085400181797 0.9598099745488073 0.2719552409484544 0.06931925906474978 -0.9598099745488073 -0.2719552409484544 -0.06931925906474978 0.7666598717558816 0.5088704772459741 -0.3915143400013715 -0.7666598717558816 -0.5088704772459741 0.3915143400013715 0.9651938739578729 0.2074084999712526 0.1593188620781253 -0.9651938739578729 -0.2074084999712526 -0.1593188620781253 -0.4503169078687535 0.4919917453143936 0.7450897966218713 0.4503169078687535 -0.4919917453143936 -0.7450897966218713 -0.6459866396208748 0.5996255363186426 0.4723880583015519 0.6459866396208748 -0.5996255363186426 -0.4723880583015519 -0.7457846745836115 0.1824622396899441 0.6407126893105413 0.7457846745836115 -0.1824622396899441 -0.6407126893105413 -0.576804386229287 0.1625954175684261 0.8005369636765092 0.576804386229287 -0.1625954175684261 -0.8005369636765092 0.5180576795043453 0.5370752177731986 -0.665707481676783 -0.5180576795043453 -0.5370752177731986 0.665707481676783 0.9061217896403585 0.4189367839184288 0.05861120557570541 -0.9061217896403585 -0.4189367839184288 -0.05861120557570541 -0.672019975146843 0.2478991248329869 0.697807406746787 -0.9156362960112678 0.1723120788930026 0.3632061685796893 0.9156362960112678 -0.1723120788930026 -0.3632061685796893 0.672019975146843 -0.2478991248329869 -0.697807406746787 0.6923885252186227 0.6725875489072316 -0.2611974716580217 -0.6923885252186227 -0.6725875489072316 0.2611974716580217 0.9606405710798401 0.2313040970548623 0.1538444275267501 -0.9606405710798401 -0.2313040970548623 -0.1538444275267501 -0.6184247596515268 0.7458918534232262 0.2473785755614576 0.6184247596515268 -0.7458918534232262 -0.2473785755614576 0.1488281615604248 0.9155662927981008 -0.3736154999708747 -0.1488281615604248 -0.9155662927981008 0.3736154999708747 0.8374542785258724 0.4900457070242865 0.2419205167111248 -0.8374542785258724 -0.4900457070242865 -0.2419205167111248 -0.3069818865505185 0.7901164331145026 0.530545137997042 0.3069818865505185 -0.7901164331145026 -0.530545137997042 -0.3746978090516431 0.3208310715897286 0.8698672171052803 0.3746978090516431 -0.3208310715897286 -0.8698672171052803 0.5180267390122302 0.8233124476276885 0.2319588568036569 -0.5180267390122302 -0.8233124476276885 -0.2319588568036569 0.9752261389276453 0.2198272850358889 0.02469701816064608 -0.9752261389276453 -0.2198272850358889 -0.02469701816064608 -0.02013490161526211 0.9948608097377648 0.0992298089530694 0.02013490161526211 -0.9948608097377648 -0.0992298089530694 0.2346198895705985 0.9689521708126289 0.07800767972048685 -0.2346198895705985 -0.9689521708126289 -0.07800767972048685 0.8194747684724745 0.5635680518478359 0.1041736760099196 -0.8194747684724745 -0.5635680518478359 -0.1041736760099196 -0.2427140865183295 0.9516308537911111 -0.1883841562296938 0.2427140865183295 -0.9516308537911111 0.1883841562296938 0.02236502878686735 0.9851014286376449 0.1705138727008254 -0.02236502878686735 -0.9851014286376449 -0.1705138727008254 0.4496571382552055 0.8867051493015056 0.1075287692588997 -0.4496571382552055 -0.8867051493015056 -0.1075287692588997 0.9776491467217603 0.2082435558818598 -0.02892693118691978 -0.9776491467217603 -0.2082435558818598 0.02892693118691978 0.05451745702686445 0.9941628502168685 0.09310249259819294 -0.05451745702686445 -0.9941628502168685 -0.09310249259819294 0.0438127723127856 0.9905954583831333 0.129618975512762 -0.0438127723127856 -0.9905954583831333 -0.129618975512762 -0.1956981726428444 0.9610455400549627 -0.1951760619664117 0.1956981726428444 -0.9610455400549627 0.1951760619664117 0.2045468584743975 0.9728343517018995 0.1084154363409551 -0.2045468584743975 -0.9728343517018995 -0.1084154363409551 0.8061690114442743 0.5903126513353483 -0.04028025149366901 -0.8061690114442743 -0.5903126513353483 0.04028025149366901 0.01476157945201542 0.9980629163706004 0.06043600531052539 -0.01476157945201542 -0.9980629163706004 -0.06043600531052539 0.4193902735346606 0.9034891719639234 -0.0884257576075347 -0.4193902735346606 -0.9034891719639234 0.0884257576075347 0.9604116108431715 0.2414805364948089 -0.1389125201405691 -0.9604116108431715 -0.2414805364948089 0.1389125201405691 -0.06838177615090631 0.9976586436301028 -0.001078647574916805 0.06838177615090631 -0.9976586436301028 0.001078647574916805 -0.04222907014205805 0.9990297916010928 0.01249724483293236 0.04222907014205805 -0.9990297916010928 -0.01249724483293236 0.170351442830629 0.9826231251431248 -0.0737033232594172 -0.170351442830629 -0.9826231251431248 0.0737033232594172 0.74333074519562 0.6421569410365217 -0.1873335696706328 -0.74333074519562 -0.6421569410365217 0.1873335696706328 0.3686962453234184 0.9044387136279826 -0.2146012394544205 -0.3686962453234184 -0.9044387136279826 0.2146012394544205 0.8917877003818316 0.2447790213962437 -0.3805232294249349 -0.8917877003818316 -0.2447790213962437 0.3805232294249349 -0.06630977119137992 0.9976983596115199 0.01417735775908853 0.06630977119137992 -0.9976983596115199 -0.01417735775908853 -0.04403949477506977 0.9976014876445216 -0.05340219798279838 0.04403949477506977 -0.9976014876445216 0.05340219798279838 0.2225619983841981 0.9576447485763068 -0.1827093112007543 -0.2225619983841981 -0.9576447485763068 0.1827093112007543 0.7124873634880191 0.619288682816256 -0.3299140557866522 -0.7124873634880191 -0.619288682816256 0.3299140557866522 -0.05913011988548577 0.9980266575742054 0.02112864627910984 0.05913011988548577 -0.9980266575742054 -0.02112864627910984 0.4033109953577375 0.8742862054507831 -0.2701182555511977 -0.4033109953577375 -0.8742862054507831 0.2701182555511977 0.813417733126717 0.2117233690580949 -0.5417792967894609 -0.813417733126717 -0.2117233690580949 0.5417792967894609 0.02580062929879584 0.9936985544649175 -0.1090757094046117 -0.02580062929879584 -0.9936985544649175 0.1090757094046117 -0.0165775742272396 0.9998193966169232 -0.009292910271388092 0.0165775742272396 -0.9998193966169232 0.009292910271388092 0.273496974185514 0.9192953144788657 -0.2830115366704539 -0.273496974185514 -0.9192953144788657 0.2830115366704539 0.5880277526648068 0.59155477570931 -0.5516215273459555 -0.5880277526648068 -0.59155477570931 0.5516215273459555 0.3472037532448569 0.7613954729584919 -0.5474728189517716 -0.3472037532448569 -0.7613954729584919 0.5474728189517716 0.6116929260147036 0.2894547948434446 -0.7362388783579076 -0.6116929260147036 -0.2894547948434446 0.7362388783579076 0.01557971421225727 0.9619313535424179 -0.272846740088857 -0.01557971421225727 -0.9619313535424179 0.272846740088857 -0.002326710954896456 0.991508710784031 -0.1300194710630725 0.002326710954896456 -0.991508710784031 0.1300194710630725 0.153468283798909 0.7918642236388596 -0.5910994308816781 -0.153468283798909 -0.7918642236388596 0.5910994308816781 0.3471621632704636 0.4496794813653836 -0.8229622083864676 -0.3471621632704636 -0.4496794813653836 0.8229622083864676 0.009566350025912693 0.8013399447302031 -0.5981327427310573 -0.009566350025912693 -0.8013399447302031 0.5981327427310573 -0.009548376057996846 0.9875451697264027 -0.1570457457707962 0.009548376057996846 -0.9875451697264027 0.1570457457707962 0.1286514942738617 0.5174470521760602 -0.845988972277658 -0.1286514942738617 -0.5174470521760602 0.845988972277658 0.2579558093757095 0.3380193053285395 -0.905097646463924 -0.2579558093757095 -0.3380193053285395 0.905097646463924 -0.001015192158410591 0.9767277832484703 -0.2144803180140568 0.001015192158410591 -0.9767277832484703 0.2144803180140568 -0.01572330387130821 0.4801689581634223 -0.8770350901370048 0.01572330387130821 -0.4801689581634223 0.8770350901370048 0.08149151905122982 0.3325274144394839 -0.9395662036114937 -0.08149151905122982 -0.3325274144394839 0.9395662036114937 0.03162526171808766 0.8553544880402206 -0.5170769213673285 -0.03162526171808766 -0.8553544880402206 0.5170769213673285 0 0.3078858683395855 -0.9514232980523336 -0 -0.3078858683395855 0.9514232980523336 -0.006817813475423355 0.4762750478533392 -0.8792699222717185 0.006817813475423355 -0.4762750478533392 0.8792699222717185 0 0.3078858683395854 -0.9514232980523336 -0 -0.3078858683395854 0.9514232980523336 -0.02307224561617772 0.3132163572532846 -0.9494014877970277 -2.964317095709304e-017 0.3078858683395854 -0.9514232980523336 2.964317095709304e-017 -0.3078858683395854 0.9514232980523336 0.02307224561617772 -0.3132163572532846 0.9494014877970277 0.0292968079231985 0.4931382590738291 -0.8694575058524391 -0.0292968079231985 -0.4931382590738291 0.8694575058524391 -0.010011755192711 0.3023485122323238 -0.9531448693188572 0.010011755192711 -0.3023485122323238 0.9531448693188572 -0.01611343067033426 0.2259029615688404 -0.9740165344112284 0.01611343067033426 -0.2259029615688404 0.9740165344112284</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"378\" source=\"#ID148\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID144\">\r\n                    <input semantic=\"POSITION\" source=\"#ID142\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID143\"/>\r\n                </vertices>\r\n                <triangles count=\"297\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID144\"/>\r\n                    <p>0 1 2 6 0 2 2 1 8 6 2 10 2 8 12 1 14 8 16 6 10 10 2 12 12 8 18 8 14 20 16 10 22 10 12 24 8 20 18 12 18 26 14 28 20 22 10 24 30 16 22 24 12 26 20 32 18 18 34 26 28 36 20 22 24 38 30 22 40 24 26 42 20 36 32 18 32 34 26 34 44 28 46 36 48 22 38 38 24 42 40 22 48 42 26 50 32 36 52 34 32 54 50 26 44 44 34 56 46 58 36 42 50 60 32 52 54 36 58 52 34 54 56 50 44 62 44 56 64 46 66 58 60 50 68 70 54 52 72 52 58 74 56 54 68 50 62 44 64 62 76 64 56 66 78 58 72 70 52 70 74 54 78 72 58 74 76 56 68 62 80 62 64 82 76 84 64 66 86 78 88 70 72 90 74 70 78 92 72 94 76 74 96 68 80 62 82 80 84 82 64 98 84 76 86 100 78 92 88 72 88 90 70 90 94 74 78 100 92 94 98 76 96 80 102 80 82 104 84 106 82 98 108 84 92 110 88 112 90 88 114 94 90 116 92 117 120 98 94 122 96 102 102 80 104 106 104 82 108 106 84 124 108 98 110 112 88 116 110 92 112 114 90 114 120 94 120 124 98 122 102 126 102 104 128 106 130 104 108 132 106 124 134 108 136 112 110 116 138 110 136 114 112 140 120 114 142 124 120 122 126 144 102 128 126 130 128 104 132 130 106 134 132 108 146 134 124 138 136 110 136 140 114 140 142 120 142 146 124 144 126 148 126 128 150 130 152 128 132 154 130 134 156 132 146 158 134 138 160 136 160 140 136 162 142 140 164 146 142 166 144 148 126 150 148 152 150 128 154 152 130 156 154 132 158 156 134 168 158 146 160 162 140 162 164 142 164 168 146 144 166 170 166 148 172 148 150 174 152 176 150 154 178 152 156 180 154 156 158 182 168 184 158 170 166 186 186 166 172 172 148 174 176 174 150 178 176 152 180 178 154 156 182 180 184 182 158 170 186 188 186 172 190 172 174 192 176 194 174 178 196 176 180 198 178 180 182 200 184 202 182 188 186 204 206 170 188 186 190 204 172 192 190 194 192 174 196 194 176 198 196 178 180 200 198 202 200 182 208 188 204 210 206 188 204 190 212 192 214 190 194 216 192 196 218 194 198 220 196 198 200 222 202 224 200 208 204 226 188 208 228 210 188 230 226 204 212 214 212 190 216 214 192 218 216 194 220 218 196 198 222 220 224 222 200 208 226 232 228 208 232 230 188 228 234 210 230 218 236 216 220 238 218 222 240 220 224 242 222 228 232 244 246 230 228 234 230 246 236 218 238 220 248 249 220 240 248 242 240 222 244 252 228 252 246 228 254 234 246 249 248 256 240 242 248 258 252 244 252 260 246 254 246 260 248 262 256 242 264 248 258 266 252 266 260 252 268 254 260 262 270 256 264 262 248 272 266 258 274 260 266 268 260 274 270 276 256 272 258 278 272 280 266 280 274 266 282 268 274 270 284 276 286 272 278 278 258 288 290 280 272 292 274 280 282 274 292 284 288 276 294 286 278 290 272 286 284 278 288 296 280 290 296 292 280 298 282 292 294 278 284 300 286 294 302 290 286 304 296 290 296 306 292 306 298 292 300 302 286 304 290 302 308 296 304 308 306 296 310 298 306 312 302 300 314 304 302 316 308 304 318 306 308 318 310 306 312 320 302 316 304 314 320 314 302 322 308 316 322 318 308 324 310 318 326 316 314 328 314 320 330 322 316 322 332 318 332 324 318 330 316 326 328 326 314 330 334 322 334 332 322 336 324 332 338 330 326 340 326 328 342 334 330 334 344 332 344 336 332 346 330 338 348 338 326 348 326 340 342 350 334 346 342 330 334 350 344 344 352 336 346 338 354 354 338 348 342 356 350 346 356 342 350 358 344 358 352 344 360 346 354 356 362 350 346 364 356 350 366 358 360 364 346 356 368 369 364 368 356 360 372 364 364 374 368 372 374 364 372 376 374</p>\r\n                </triangles>\r\n                <triangles count=\"297\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID144\"/>\r\n                    <p>3 4 5 3 5 7 9 4 3 11 3 7 13 9 3 9 15 4 11 7 17 13 3 11 19 9 13 21 15 9 23 11 17 25 13 11 19 21 9 27 19 13 21 29 15 25 11 23 23 17 31 27 13 25 19 33 21 27 35 19 21 37 29 39 25 23 41 23 31 43 27 25 33 37 21 35 33 19 45 35 27 37 47 29 39 23 49 43 25 39 49 23 41 51 27 43 53 37 33 55 33 35 45 27 51 57 35 45 37 59 47 61 51 43 55 53 33 53 59 37 57 55 35 63 45 51 65 57 45 59 67 47 69 51 61 53 55 71 59 53 73 55 57 75 63 51 69 63 65 45 57 65 77 59 79 67 53 71 73 55 75 71 59 73 79 57 77 75 81 63 69 83 65 63 65 85 77 79 87 67 73 71 89 71 75 91 73 93 79 75 77 95 81 69 97 81 83 63 65 83 85 77 85 99 79 101 87 73 89 93 71 91 89 75 95 91 93 101 79 77 99 95 103 81 97 105 83 81 83 107 85 85 109 99 89 111 93 89 91 113 91 95 115 118 93 119 95 99 121 103 97 123 105 81 103 83 105 107 85 107 109 99 109 125 89 113 111 93 111 119 91 115 113 95 121 115 99 125 121 127 103 123 129 105 103 105 131 107 107 133 109 109 135 125 111 113 137 111 139 119 113 115 137 115 121 141 121 125 143 145 127 123 127 129 103 105 129 131 107 131 133 109 133 135 125 135 147 111 137 139 115 141 137 121 143 141 125 147 143 149 127 145 151 129 127 129 153 131 131 155 133 133 157 135 135 159 147 137 161 139 137 141 161 141 143 163 143 147 165 149 145 167 149 151 127 129 151 153 131 153 155 133 155 157 135 157 159 147 159 169 141 163 161 143 165 163 147 169 165 171 167 145 173 149 167 175 151 149 151 177 153 153 179 155 155 181 157 183 159 157 159 185 169 187 167 171 173 167 187 175 149 173 151 175 177 153 177 179 155 179 181 181 183 157 159 183 185 189 187 171 191 173 187 193 175 173 175 195 177 177 197 179 179 199 181 201 183 181 183 203 185 205 187 189 189 171 207 205 191 187 191 193 173 175 193 195 177 195 197 179 197 199 199 201 181 183 201 203 205 189 209 189 207 211 213 191 205 191 215 193 193 217 195 195 219 197 197 221 199 223 201 199 201 225 203 227 205 209 229 209 189 231 189 211 213 205 227 191 213 215 193 215 217 195 217 219 197 219 221 221 223 199 201 223 225 233 227 209 233 209 229 229 189 231 231 211 235 217 237 219 219 239 221 221 241 223 223 243 225 245 233 229 229 231 247 247 231 235 239 219 237 250 251 221 251 241 221 223 241 243 229 253 245 229 247 253 247 235 255 257 251 250 251 243 241 245 253 259 247 261 253 261 247 255 257 263 251 251 265 243 253 267 259 253 261 267 261 255 269 257 271 263 251 263 265 259 267 273 267 261 275 275 261 269 257 277 271 279 259 273 267 281 273 267 275 281 275 269 283 277 285 271 279 273 287 289 259 279 273 281 291 281 275 293 293 275 283 277 289 285 279 287 295 287 273 291 289 279 285 291 281 297 281 293 297 293 283 299 285 279 295 295 287 301 287 291 303 291 297 305 293 307 297 293 299 307 287 303 301 303 291 305 305 297 309 297 307 309 307 299 311 301 303 313 303 305 315 305 309 317 309 307 319 307 311 319 303 321 313 315 305 317 303 315 321 317 309 323 309 319 323 319 311 325 315 317 327 321 315 329 317 323 331 319 333 323 319 325 333 327 317 331 315 327 329 323 335 331 323 333 335 333 325 337 327 331 339 329 327 341 331 335 343 333 345 335 333 337 345 339 331 347 327 339 349 341 327 349 335 351 343 331 343 347 345 351 335 337 353 345 355 339 347 349 339 355 351 357 343 343 357 347 345 359 351 345 353 359 355 347 361 351 363 357 357 365 347 359 367 351 347 365 361 370 371 357 357 371 365 365 373 361 371 375 365 365 375 373 375 377 373</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID149\">\r\n            <mesh>\r\n                <source id=\"ID155\">\r\n                    <float_array count=\"144\" id=\"ID159\">0.6581289172172546 1.925639629364014 0.2436227351427078 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6566852927207947 1.912085294723511 0.2607377767562866 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6581289172172546 1.925639629364014 0.2436227351427078 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.6045059561729431 1.912085294723511 0.2496029883623123 0.6045059561729431 1.912085294723511 0.2496029883623123 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7500623464584351 1.90237021446228 0.2152038067579269 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6072992086410523 1.926056265830994 0.2301047742366791 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.7709382176399231 1.897327780723572 0.1462340503931046 0.7709382176399231 1.897327780723572 0.1462340503931046 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7521055936813355 1.90048885345459 0.08241678774356842 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5564971566200256 1.905122637748718 0.08657681941986084 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7218274474143982 1.905122637748718 0.05090289935469627 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7044316530227661 1.922605037689209 0.06054756790399551 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6581888198852539 1.925890922546387 0.04520654678344727</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID159\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID156\">\r\n                    <float_array count=\"144\" id=\"ID160\">0.06368183923200262 0.7816359070732991 0.620475569322218 0.4351652976529689 0.4515882744243441 0.7789089767880753 0.05563331340804202 0.5289120472471837 0.8468512152179009 -0.05563331340804202 -0.5289120472471837 -0.8468512152179009 -0.4351652976529689 -0.4515882744243441 -0.7789089767880753 -0.06368183923200262 -0.7816359070732991 -0.620475569322218 0.35795738869433 0.7264570419027571 0.5866231108207655 -0.35795738869433 -0.7264570419027571 -0.5866231108207655 -0.4503169078687535 0.4919917453143936 0.7450897966218713 0.4503169078687535 -0.4919917453143936 -0.7450897966218713 0.7476957669442501 0.4263151891498764 0.509123167410161 -0.7476957669442501 -0.4263151891498764 -0.509123167410161 -0.3587997901179157 0.7857770301638292 0.5038027088834004 0.3587997901179157 -0.7857770301638292 -0.5038027088834004 0.6026311348964107 0.7116602076906679 0.3610754270829568 -0.6026311348964107 -0.7116602076906679 -0.3610754270829568 -0.6459866396208748 0.5996255363186426 0.4723880583015519 0.6459866396208748 -0.5996255363186426 -0.4723880583015519 0.8950740664183305 0.4457805184040029 0.01105192457504562 -0.8950740664183305 -0.4457805184040029 -0.01105192457504562 -0.5614119746978663 0.7664293163683451 0.3120940526139411 0.5614119746978663 -0.7664293163683451 -0.3120940526139411 0.7799010414554628 0.6257727049031696 -0.01276273226448814 -0.7799010414554628 -0.6257727049031696 0.01276273226448814 -0.7167971047649803 0.6972385239267886 0.007768613321232372 0.7167971047649803 -0.6972385239267886 -0.007768613321232372 0.6469230332364384 0.6898812497274981 -0.3248914439356497 -0.6469230332364384 -0.6898812497274981 0.3248914439356497 -0.6184247596515268 0.7458918534232262 0.2473785755614576 0.6184247596515268 -0.7458918534232262 -0.2473785755614576 0.7666598717558816 0.5088704772459741 -0.3915143400013715 -0.7666598717558816 -0.5088704772459741 0.3915143400013715 -0.2427140865183295 0.9516308537911111 -0.1883841562296938 0.2427140865183295 -0.9516308537911111 0.1883841562296938 0.5180576795043453 0.5370752177731986 -0.665707481676783 -0.5180576795043453 -0.5370752177731986 0.665707481676783 -0.693515309669331 0.6221333811688795 -0.3632995613672408 0.693515309669331 -0.6221333811688795 0.3632995613672408 0.3920329437243987 0.7299265527327969 -0.5599262439378937 -0.3920329437243987 -0.7299265527327969 0.5599262439378937 -0.1956981726428444 0.9610455400549627 -0.1951760619664117 0.1956981726428444 -0.9610455400549627 0.1951760619664117 0.1488281615604248 0.9155662927981008 -0.3736154999708747 -0.1488281615604248 -0.9155662927981008 0.3736154999708747 -0.4360106190602546 0.6523043197237375 -0.619995011702873 0.4360106190602546 -0.6523043197237375 0.619995011702873 0.03258612750319111 0.8226944407409194 -0.5675491181107868 -0.03258612750319111 -0.8226944407409194 0.5675491181107868</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID160\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID158\">\r\n                    <float_array count=\"144\" id=\"ID161\">-0.14982045556514 -8.316798414086907 -0.6936716701330531 -8.287437175619747 -0.1790159423250831 -8.146215969184315 -0.2073074579882039 -8.749814709742097 -0.6387413596695191 -8.882757905347074 -0.7510917595116751 -8.719696277367525 -9.094852670127247 -7.002258959439575 -9.646040306013674 -7.061560931524517 -9.609601124940296 -6.891843081338203 4.721085827244991 -6.687977590734072 4.213867949560833 -6.83050779919227 4.578082471218702 -6.540515107334523 -9.313835603103531 -6.437850264840334 -9.813745990075313 -6.309196186018193 -9.262151981743834 -6.252280503657532 4.406837534938787 -6.898071876106249 4.199902154201657 -6.807940392341079 4.707186346096488 -6.665556309650214 -15.37345076151881 -3.135519892390655 -15.83382916344027 -2.888472771458424 -15.73231838591345 -2.716100072539287 8.062583101023312 -1.257353546819625 8.245269708836297 -0.7075691333339041 8.460145540014123 -0.7853569518880319 -14.92308371222783 -2.85581785835925 -15.1091631203076 -2.94715270933599 -15.38816787693552 -2.614286891640673 10.13229269872748 -2.030806223790802 9.867238671037802 -2.025538394937177 10.25339902581849 -1.547719574735519 -16.57918381797935 -0.8764531836845783 -16.66529393175382 -0.4999924201245851 -16.47462369575802 -0.414718120843968 10.0743158013063 4.409280263795306 10.33936934927102 4.403997518620375 10.47576653108455 3.978464122402 -17.77818355776621 0.1483719851793338 -17.66289384405605 -0.3364642109844385 -17.89867654398276 -0.310953882398821 8.827508930937732 3.245245550925936 8.676315342582571 3.755592063598506 9.086442611058098 3.329863466668702 -17.0822909434011 2.974866944420178 -17.12311202182214 2.528078589498817 -17.31803530042676 3.000595632608795 6.61052696030081 7.141648360596713 6.347926612480678 7.418860344056025 6.602126373538136 7.511937981641268 -18.55725727894121 1.672754872058794 -18.83697110777229 1.769865113222594 -18.77313520414998 2.139600909810604 4.897367782508628 7.375062005046844 4.655422672765788 7.290374409774107 4.626054596276275 7.660001697508108 -16.62922440995447 5.315904305007655 -16.98813222125273 4.881244282551317 -16.897735133379 5.430931382444905 2.470188841201698 10.31134153396707 1.875921553309959 10.55046187739263 2.108960131118924 10.64940622458298 -17.51227183145602 4.518021817074613 -17.68407501047069 4.693145375765543 -17.44223810768192 5.069544815263329 -0.9209516549029151 8.913201958803468 -0.9712984538805081 8.748772552573735 -1.374058429762926 9.056428466690454 -12.77253371674224 8.934130110648971 -12.65971399906374 8.731503734435394 -13.21232760142227 8.587336096869878 -10.11081142365707 8.082359692722404 -10.11751936113235 8.251409480792749 -9.621150051683159 8.384986354872035</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"72\" source=\"#ID161\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID157\">\r\n                    <input semantic=\"POSITION\" source=\"#ID155\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID156\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID157\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID158\"/>\r\n                    <p>0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 6 9 10 10 1 11 12 12 0 13 8 14 14 15 10 16 6 17 16 18 12 19 8 20 18 21 10 22 14 23 16 24 20 25 12 26 22 27 18 28 14 29 24 30 20 31 16 32 18 33 22 34 26 35 16 36 28 37 24 38 30 39 18 40 26 41 28 42 32 43 24 44 34 45 30 46 26 47 32 48 36 49 24 50 38 51 34 52 26 53 32 54 40 55 36 56 42 57 34 58 38 59 40 60 44 61 36 62 46 63 42 64 38 65 44 66 40 67 42 68 42 69 46 70 44 71</p>\r\n                </triangles>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID157\"/>\r\n                    <p>3 4 5 4 7 5 3 5 9 4 11 7 9 5 13 7 11 15 9 13 17 15 11 19 13 21 17 15 19 23 17 21 25 27 23 19 25 29 17 27 19 31 25 33 29 27 31 35 25 37 33 27 35 39 37 41 33 39 35 43 37 45 41 39 43 47 43 41 45 45 47 43</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID162\">\r\n            <mesh>\r\n                <source id=\"ID163\">\r\n                    <float_array count=\"78\" id=\"ID166\">0.6581888198852539 1.925890922546387 0.04520654678344727 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6591432690620422 1.944134831428528 0.1425205767154694 0.6591432690620422 1.944134831428528 0.1425205767154694 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6581289172172546 1.925639629364014 0.2436227351427078</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID166\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID164\">\r\n                    <float_array count=\"78\" id=\"ID167\">0.03936908541704142 0.982044718226688 -0.1844945704255019 0.1654102896355377 0.972487807810053 -0.1640332275591905 0.05154924676621023 0.9986704535612888 -1.848042230411276e-005 -0.05154924676621023 -0.9986704535612888 1.848042230411276e-005 -0.1654102896355377 -0.972487807810053 0.1640332275591905 -0.03936908541704142 -0.982044718226688 0.1844945704255019 -0.07133888125878626 0.9829625270788537 -0.169397267922179 0.07133888125878626 -0.9829625270788537 0.169397267922179 0.2344210378311746 0.9677133534895852 -0.09261556294757618 -0.2344210378311746 -0.9677133534895852 0.09261556294757618 -0.1253412291305374 0.9875267950369973 -0.09529116099619422 0.1253412291305374 -0.9875267950369973 0.09529116099619422 0.2642768599222439 0.9643251834938845 0.01531932730653969 -0.2642768599222439 -0.9643251834938845 -0.01531932730653969 -0.1531152101238801 0.9876602560594644 0.03290822130218187 0.1531152101238801 -0.9876602560594644 -0.03290822130218187 0.2333223649560231 0.9667716409934942 0.1044665888314273 -0.2333223649560231 -0.9667716409934942 -0.1044665888314273 -0.1453187436904175 0.983128098322856 0.1110927766343233 0.1453187436904175 -0.983128098322856 -0.1110927766343233 0.1663135392735206 0.9732003198707487 0.1588110325443019 -0.1663135392735206 -0.9732003198707487 -0.1588110325443019 -0.08898286512452604 0.9845880526293398 0.1505603411718863 0.08898286512452604 -0.9845880526293398 -0.1505603411718863 0.04190944451044767 0.9827370906126011 0.1801982497004504 -0.04190944451044767 -0.9827370906126011 -0.1801982497004504</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID167\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID165\">\r\n                    <input semantic=\"POSITION\" source=\"#ID163\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID164\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID165\"/>\r\n                    <p>0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 6 2 3 7 11 2 8 12 13 9 3 10 2 14 15 3 11 2 12 16 17 13 3 14 2 18 19 3 15 2 16 20 21 17 3 18 2 22 23 3 19 2 20 24 25 21 3 22 2 24 25 3 23</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID168\">\r\n            <mesh>\r\n                <source id=\"ID169\">\r\n                    <float_array count=\"18\" id=\"ID172\">0.5611516833305359 1.912085294723511 0.2021596431732178 0.569970428943634 1.82999062538147 0.2332505583763123 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.569970428943634 1.82999062538147 0.2332505583763123 0.5611516833305359 1.912085294723511 0.2021596431732178</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID172\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID170\">\r\n                    <float_array count=\"18\" id=\"ID173\">-0.9632636129987122 -0.001769357604049535 0.2685518222733488 -0.9632636129987122 -0.001769357604049535 0.2685518222733488 -0.9632636129987122 -0.001769357604049535 0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID173\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID171\">\r\n                    <input semantic=\"POSITION\" source=\"#ID169\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID170\"/>\r\n                </vertices>\r\n                <triangles count=\"2\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID171\"/>\r\n                    <p>0 1 2 3 4 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID174\">\r\n            <mesh>\r\n                <source id=\"ID175\">\r\n                    <float_array count=\"612\" id=\"ID178\">0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6078575253486633 1.062604069709778 0.02048102393746376 0.6078575253486633 1.062604069709778 0.02048102393746376 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6078575253486633 1.062604069709778 0.02048102393746376 0.6078575253486633 1.062604069709778 0.02048102393746376 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5737410187721252 1.083053588867188 0.3171393871307373 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7976231575012207 1.134773850440979 0.09562528133392334 0.6100444793701172 1.132825136184692 0.09579920023679733 0.6100444793701172 1.132825136184692 0.09579920023679733 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6100444793701172 1.132825136184692 0.09579920023679733 0.6100444793701172 1.132825136184692 0.09579920023679733 0.5641165971755981 1.231308460235596 0.2951163649559021 0.5641165971755981 1.231308460235596 0.2951163649559021 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7976231575012207 1.226557493209839 0.1501588523387909 0.7976231575012207 1.226557493209839 0.1501588523387909 0.6150623559951782 1.227490305900574 0.1535092145204544 0.6150623559951782 1.227490305900574 0.1535092145204544 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6150623559951782 1.227490305900574 0.1535092145204544 0.6150623559951782 1.227490305900574 0.1535092145204544 0.5558203458786011 1.338033199310303 0.2760796546936035 0.5558203458786011 1.338033199310303 0.2760796546936035 0.798487663269043 0.4255831241607666 0.01916016265749931 0.798487663269043 0.4255831241607666 0.01916016265749931 0.688839852809906 0.4193950891494751 0.3588072657585144 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.688839852809906 0.4193950891494751 0.3588072657585144 0.7946488857269287 1.336279630661011 0.1839811652898789 0.7946488857269287 1.336279630661011 0.1839811652898789 0.6001907587051392 1.335630416870117 0.1818975508213043 0.6001907587051392 1.335630416870117 0.1818975508213043 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.5483854413032532 1.437644124031067 0.2575764954090118 0.5483854413032532 1.437644124031067 0.2575764954090118 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7952814698219299 1.430078029632568 0.1879792362451553 0.7952814698219299 1.430078029632568 0.1879792362451553 0.6001907587051392 1.430773377418518 0.1891794055700302 0.6001907587051392 1.430773377418518 0.1891794055700302 0.6024033427238464 1.530340790748596 0.1673334091901779 0.6024033427238464 1.530340790748596 0.1673334091901779 0.7969198822975159 1.529133081436157 0.1681521981954575 0.7969198822975159 1.529133081436157 0.1681521981954575 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5255792737007141 1.631603479385376 0.2142343670129776 0.5255792737007141 1.631603479385376 0.2142343670129776 0.7910681962966919 1.631798982620239 0.123851403594017 0.7910681962966919 1.631798982620239 0.123851403594017 0.5982099771499634 1.63359522819519 0.123851403594017 0.5982099771499634 1.63359522819519 0.123851403594017 0.5107629299163818 1.737711548805237 0.1886539459228516 0.5107629299163818 1.737711548805237 0.1886539459228516 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7916035652160645 1.673280954360962 0.08852987736463547 0.600138247013092 1.674088478088379 0.08723254501819611 0.600138247013092 1.674088478088379 0.08723254501819611 0.600138247013092 1.703011274337769 0.06053215265274048 0.600138247013092 1.703011274337769 0.06053215265274048 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7907845973968506 1.703024983406067 0.0606619194149971 0.6017862558364868 1.727086067199707 0.03279396891593933 0.6017862558364868 1.727086067199707 0.03279396891593933 0.4955552816390991 1.831614017486572 0.16129469871521 0.4955552816390991 1.831614017486572 0.16129469871521 0.7930033206939697 1.725906729698181 0.03279396891593933 0.7930033206939697 1.725906729698181 0.03279396891593933 0.6035350561141968 1.760315418243408 -0.0219960268586874 0.6035350561141968 1.760315418243408 -0.0219960268586874 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4784936010837555 1.90060830116272 0.1212251707911491 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.601814329624176 1.775644421577454 -0.07519237697124481 0.601814329624176 1.775644421577454 -0.07519237697124481 0.4961572587490082 1.913546085357666 0.03562422469258308 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4961572587490082 1.913546085357666 0.03562422469258308 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.518811047077179 1.913546085357666 0.007866731844842434 0.518811047077179 1.913546085357666 0.007866731844842434 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.601814329624176 1.788490056991577 -0.1259496361017227 0.601814329624176 1.788490056991577 -0.1259496361017227 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.601814329624176 1.792240262031555 -0.1946214735507965 0.601814329624176 1.792240262031555 -0.1946214735507965 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.6047999858856201 1.788490056991577 -0.264063835144043 0.6047999858856201 1.788490056991577 -0.264063835144043 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.424839973449707 1.892464518547058 -0.2987582087516785 0.424839973449707 1.892464518547058 -0.2987582087516785 0.602636456489563 1.761277794837952 -0.2947392761707306 0.602636456489563 1.761277794837952 -0.2947392761707306 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.5888708233833313 1.761277794837952 -0.3425095975399017 0.5888708233833313 1.761277794837952 -0.3425095975399017 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.5730990171432495 1.778753638267517 -0.3605347573757172</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"204\" source=\"#ID178\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID176\">\r\n                    <float_array count=\"612\" id=\"ID179\">-0.002031866627481819 0.7041738060751083 -0.7100247336225014 -0.003154768045807751 0.7279228439330888 -0.6856517926170259 0.005578171167189729 0.952967993764047 -0.3030196146584522 -0.005578171167189729 -0.952967993764047 0.3030196146584522 0.003154768045807751 -0.7279228439330888 0.6856517926170259 0.002031866627481819 -0.7041738060751083 0.7100247336225014 -0.009873866414612846 0.2940160093358328 -0.9557494928150671 0.009873866414612846 -0.2940160093358328 0.9557494928150671 0.003893238134685696 0.9526977033105609 -0.3038946014716437 -0.003893238134685696 -0.9526977033105609 0.3038946014716437 -0.008412856373111871 0.2958381366472996 -0.9552010368255988 0.008412856373111871 -0.2958381366472996 0.9552010368255988 -0.9948075727464791 -0.08790104295397494 -0.05129619726512105 -0.9967250369421153 0.07969187169170205 -0.01372611813341505 -0.9641576495820019 0.2638333602880564 0.02814222364388343 0.9641576495820019 -0.2638333602880564 -0.02814222364388343 0.9967250369421153 -0.07969187169170205 0.01372611813341505 0.9948075727464791 0.08790104295397494 0.05129619726512105 0.002151779979543105 0.9027479757737718 -0.4301644593400033 -0.002151779979543105 -0.9027479757737718 0.4301644593400033 -0.008621931941022816 0.2207983455641449 -0.9752813711364228 0.008621931941022816 -0.2207983455641449 0.9752813711364228 -0.9998659129083529 -0.004779808995791442 -0.01566236348415073 0.9998659129083529 0.004779808995791442 0.01566236348415073 -0.9960924026966632 0.08616161503151285 -0.0193933335233983 0.9960924026966632 -0.08616161503151285 0.0193933335233983 -0.003991031751673676 0.9093357713540832 -0.4160438998488402 0.003991031751673676 -0.9093357713540832 0.4160438998488402 -0.005673303817165464 0.2264395815461192 -0.9740086906865957 0.005673303817165464 -0.2264395815461192 0.9740086906865957 -0.9905917461751002 -0.136308881204913 -0.01216064613541545 0.9905917461751002 0.136308881204913 0.01216064613541545 -0.9968271004583693 0.04460997381382314 -0.06592178720340064 0.9968271004583693 -0.04460997381382314 0.06592178720340064 -0.004720641850529348 0.794362249212256 -0.6074259893739855 0.004720641850529348 -0.794362249212256 0.6074259893739855 -0.004096609442663096 0.1253146842323055 -0.9921085866510944 0.004096609442663096 -0.1253146842323055 0.9921085866510944 -0.9980320214358647 -0.06250647920590244 0.005002424004814591 0.9980320214358647 0.06250647920590244 -0.005002424004814591 -0.008661296070234087 0.8008066651523571 -0.598860306747696 0.008661296070234087 -0.8008066651523571 0.598860306747696 -0.895673926454469 0.000862505034626854 0.4447105503073879 0.895673926454469 -0.000862505034626854 -0.4447105503073879 -0.005601653918102343 0.1304529245089368 -0.9914386798791176 0.005601653918102343 -0.1304529245089368 0.9914386798791176 -0.9852520874831436 -0.1710602304784259 -0.004089212488466666 0.9852520874831436 0.1710602304784259 0.004089212488466666 -0.006660261559601748 0.6261558675591958 -0.7796694622961377 0.006660261559601748 -0.6261558675591958 0.7796694622961377 -0.9759873012105041 0.1309215835370071 -0.1740928684352089 0.9759873012105041 -0.1309215835370071 0.1740928684352089 -0.01726204262242443 0.07004637810473909 -0.9973943687423293 0.01726204262242443 -0.07004637810473909 0.9973943687423293 -0.9827040135866452 -0.1847034824060137 0.01332085837286729 0.9827040135866452 0.1847034824060137 -0.01332085837286729 -0.009504067604324451 0.6333563698512222 -0.773801900661826 0.009504067604324451 -0.6333563698512222 0.773801900661826 -0.9606480777099047 0.006747156029087368 0.277686417884966 0.9606480777099047 -0.006747156029087368 -0.277686417884966 -0.02864687218974323 0.06098751536159313 -0.9977273573896649 0.02864687218974323 -0.06098751536159313 0.9977273573896649 -0.9710427981079228 -0.2387850133832192 0.007589573526315395 0.9710427981079228 0.2387850133832192 -0.007589573526315395 -0.01226787875901361 0.4089424243897999 -0.9124777217471924 0.01226787875901361 -0.4089424243897999 0.9124777217471924 -0.9258013446998226 0.1301689880839249 -0.3548913984491697 0.9258013446998226 -0.1301689880839249 0.3548913984491697 -0.009719797712985413 -0.9998397877975792 0.01503077740206486 0.0003328631328224821 -0.9999540640432325 0.009579092105094415 -0.01129806292066895 -0.9997986181160402 0.01658544504970744 0.01129806292066895 0.9997986181160402 -0.01658544504970744 -0.0003328631328224821 0.9999540640432325 -0.009579092105094415 0.009719797712985413 0.9998397877975792 -0.01503077740206486 -0.9844962349256925 -0.1748435336383345 -0.01403218308020972 0.9844962349256925 0.1748435336383345 0.01403218308020972 -0.005829761127499755 0.3941442088955652 -0.9190301172863082 0.005829761127499755 -0.3941442088955652 0.9190301172863082 -0.9125354682186676 -0.113071856984082 -0.3930569607590082 0.9125354682186676 0.113071856984082 0.3930569607590082 0.008795837783968767 -0.9999350760969271 0.007244089225746932 -0.008795837783968767 0.9999350760969271 -0.007244089225746932 -0.05844106786614663 -0.9982849747213407 -0.00342794869806715 -0.07339287618189742 -0.9972986376699625 -0.002985469374419037 0.07339287618189742 0.9972986376699625 0.002985469374419037 0.05844106786614663 0.9982849747213407 0.00342794869806715 0.001709746850782575 0.1630913484666589 -0.9866094915522722 -0.001709746850782575 -0.1630913484666589 0.9866094915522722 -0.5477059616495917 0.06663800159267526 -0.8340129233514493 0.5477059616495917 -0.06663800159267526 0.8340129233514493 0.07999201948807029 -0.9966969330856842 -0.01401785988699024 -0.07999201948807029 0.9966969330856842 0.01401785988699024 0.01146984438351619 -0.999901694502409 -0.008064986114630322 -0.01146984438351619 0.999901694502409 0.008064986114630322 -0.8175794994995225 -0.1036249520646039 -0.5664147167118089 0.8175794994995225 0.1036249520646039 0.5664147167118089 0.1171617741696312 -0.9928591628594425 -0.02244552069949391 -0.1171617741696312 0.9928591628594425 0.02244552069949391 -0.0005074472560596779 -0.07314127026300465 -0.9973214612558964 0.0005074472560596779 0.07314127026300465 0.9973214612558964 -0.4671844489454682 -0.05409992846637629 -0.8825031945570806 0.4671844489454682 0.05409992846637629 0.8825031945570806 -0.4157906930759787 -0.2893035753226083 -0.8622189634060209 0.4157906930759787 0.2893035753226083 0.8622189634060209 -0.001251635271873887 -0.2989057631075787 -0.9542818127734711 0.001251635271873887 0.2989057631075787 0.9542818127734711 -0.7357190838004971 -0.2286602149856994 -0.6375201454185199 0.7357190838004971 0.2286602149856994 0.6375201454185199 -0.7444348412862022 -0.2640622869040579 -0.6132600392282103 0.7444348412862022 0.2640622869040579 0.6132600392282103 -0.003126673932310979 -0.5245017008971007 -0.851403658475913 0.003126673932310979 0.5245017008971007 0.851403658475913 -0.4536446921904907 -0.4631745362896014 -0.7613644608072456 0.4536446921904907 0.4631745362896014 0.7613644608072456 -0.8074366296485683 -0.3017917233898638 -0.5069199589630861 0.8074366296485683 0.3017917233898638 0.5069199589630861 -0.001292295406336159 -0.6679956481798597 -0.7441640571710996 0.001292295406336159 0.6679956481798597 0.7441640571710996 -0.4413671517616215 -0.6003898332880783 -0.6668786137147805 0.4413671517616215 0.6003898332880783 0.6668786137147805 -0.4526042059574229 -0.6352574959571411 -0.6257773937910457 0.4526042059574229 0.6352574959571411 0.6257773937910457 0.001171496973536925 -0.7300813933283943 -0.683359193038706 -0.001171496973536925 0.7300813933283943 0.683359193038706 -0.4748306978382566 -0.694060433707126 -0.5411246831855952 0.4748306978382566 0.694060433707126 0.5411246831855952 -0.8464327417927822 -0.3623231382338141 -0.3902224456916258 0.8464327417927822 0.3623231382338141 0.3902224456916258 -0.002717372553585746 -0.8075922943265442 -0.5897349421823276 0.002717372553585746 0.8075922943265442 0.5897349421823276 -0.5001653078149472 -0.78536585523471 -0.3647398227364699 0.5001653078149472 0.78536585523471 0.3647398227364699 0.0003509594575061786 -0.9195500935760502 -0.3929726481979843 -0.0003509594575061786 0.9195500935760502 0.3929726481979843 -0.795359980458199 -0.595955913272563 -0.110630244151401 0.795359980458199 0.595955913272563 0.110630244151401 -0.00256579025065002 -0.970557316593617 -0.2408566210985008 0.00256579025065002 0.970557316593617 0.2408566210985008 -0.6770060329921882 -0.7260985289165722 0.120182185024945 0.6770060329921882 0.7260985289165722 -0.120182185024945 -0.5130701491301604 -0.8343894420681041 -0.2013784522654617 0.5130701491301604 0.8343894420681041 0.2013784522654617 -0.5045067427627233 -0.02904912283269602 -0.8629189388173135 -0.3740113601256721 0.08517896410713484 -0.9235042211980302 0.3740113601256721 -0.08517896410713484 0.9235042211980302 0.5045067427627233 0.02904912283269602 0.8629189388173135 -0.8761959573560605 -0.4814021187707525 -0.02307908914855814 0.8761959573560605 0.4814021187707525 0.02307908914855814 -0.004738763320069978 -0.9886901052970992 -0.1498980313740208 0.004738763320069978 0.9886901052970992 0.1498980313740208 -0.8175577526278948 -0.3652868797157938 -0.4451570696119803 0.8175577526278948 0.3652868797157938 0.4451570696119803 -0.8246365967014818 -0.5481839684026157 0.1395307140630971 0.8246365967014818 0.5481839684026157 -0.1395307140630971 -0.4805225420358854 -0.8689360124465977 -0.1185254945941055 0.4805225420358854 0.8689360124465977 0.1185254945941055 -0.0001018243583388035 -0.9999807029784149 0.00621154591027403 0.0001018243583388035 0.9999807029784149 -0.00621154591027403 -0.7326244611747069 -0.6427575554192596 0.223884175054709 0.7326244611747069 0.6427575554192596 -0.223884175054709 -0.3573930893115141 -0.9320420580026236 0.05973091181797268 0.3573930893115141 0.9320420580026236 -0.05973091181797268 0.000312141434426454 -0.9401959467122115 0.3406339448053481 -0.000312141434426454 0.9401959467122115 -0.3406339448053481 -0.5938783159957045 -0.6788810746920075 0.431774283874261 0.5938783159957045 0.6788810746920075 -0.431774283874261 -0.2810885037071276 -0.8836044828356823 0.3744761287403708 0.2810885037071276 0.8836044828356823 -0.3744761287403708 -0.306646385949856 -0.3948509445278647 0.8660604630101439 0.306646385949856 0.3948509445278647 -0.8660604630101439 -0.535498682530136 -0.8308301576049837 0.151533528377606 0.535498682530136 0.8308301576049837 -0.151533528377606 0.0008582238826964657 -0.9269981380297792 0.3750649484303885 -0.0008582238826964657 0.9269981380297792 -0.3750649484303885 -0.1704952431820977 -0.2412252931725145 0.9553751776062177 0.1704952431820977 0.2412252931725145 -0.9553751776062177 -0.5540921946255204 -0.8216202647571059 0.1338730009954866 0.5540921946255204 0.8216202647571059 -0.1338730009954866 -0.5143604385851316 -0.7538249196936183 0.4088781354724427 0.5143604385851316 0.7538249196936183 -0.4088781354724427 -0.1380026630778748 -0.9128747444940201 0.3842069310259667 0.1380026630778748 0.9128747444940201 -0.3842069310259667 -0.435850001315338 -0.4621906220367008 0.772278839056689 0.435850001315338 0.4621906220367008 -0.772278839056689 0.03773339099784692 -0.9621256170329681 -0.2699823850786089 -0.03773339099784692 0.9621256170329681 0.2699823850786089 -0.3481885838874076 -0.2117944700509886 0.913185530166955 0.3481885838874076 0.2117944700509886 -0.913185530166955 -0.01286325317847039 -0.9648904002076516 -0.2623376684824051 0.01286325317847039 0.9648904002076516 0.2623376684824051 -0.1095095532543335 -0.9934846951634816 0.0315565876159114 0.1095095532543335 0.9934846951634816 -0.0315565876159114 0.1087422852010516 -0.9469574157884161 -0.3024016668151454 -0.1087422852010516 0.9469574157884161 0.3024016668151454 0.06106025898700137 -0.8594251928277874 -0.5076021894213622 -0.06106025898700137 0.8594251928277874 0.5076021894213622 2.065922027485135e-016 -0.7503520187156011 -0.6610384618230791 -2.065922027485135e-016 0.7503520187156011 0.6610384618230791 -2.234546919098456e-016 -0.7503520187156002 -0.6610384618230801 -0.006610675482426474 -0.7456954604641577 -0.6662541401093234 0.006610675482426474 0.7456954604641577 0.6662541401093234 2.234546919098456e-016 0.7503520187156002 0.6610384618230801 -0.02829408732694985 -0.7299337508869919 -0.6829320346406237 0.02829408732694985 0.7299337508869919 0.6829320346406237</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"204\" source=\"#ID179\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID177\">\r\n                    <input semantic=\"POSITION\" source=\"#ID175\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID176\"/>\r\n                </vertices>\r\n                <triangles count=\"212\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID177\"/>\r\n                    <p>0 1 2 3 4 5 0 6 1 4 7 5 0 2 8 9 3 5 0 10 6 7 11 5 12 13 14 15 16 17 8 2 18 19 3 9 10 20 6 7 21 11 12 22 13 16 23 17 12 14 24 25 15 17 26 8 18 19 9 27 10 28 20 21 29 11 30 22 12 17 23 31 12 24 32 33 25 17 26 18 34 35 19 27 28 36 20 21 37 29 30 38 22 23 39 31 40 26 34 35 27 41 12 32 42 43 33 17 28 44 36 37 45 29 46 38 30 31 39 47 40 34 48 49 35 41 42 32 50 51 33 43 44 52 36 37 53 45 46 54 38 39 55 47 40 48 56 57 49 41 42 50 58 59 51 43 44 60 52 53 61 45 62 54 46 47 55 63 64 56 48 49 57 65 50 66 58 59 67 51 68 69 70 71 72 73 74 62 46 47 63 75 76 56 64 65 57 77 58 66 78 79 67 59 70 69 80 81 72 71 82 69 83 84 72 85 86 76 64 65 77 87 66 88 78 79 89 67 80 69 90 91 72 81 92 69 82 85 72 93 88 76 86 87 77 89 78 88 94 95 89 79 90 69 96 97 72 91 96 69 92 93 72 97 88 86 98 99 87 89 88 100 94 95 101 89 100 88 98 99 89 101 94 100 102 103 101 95 100 98 104 105 99 101 94 102 106 107 103 95 102 100 104 105 101 103 106 102 108 109 103 107 110 102 104 105 103 111 108 102 112 113 103 109 112 102 110 111 103 113 108 112 114 115 113 109 112 110 116 117 111 113 112 118 114 115 119 113 118 112 116 117 113 119 118 120 114 115 121 119 122 118 116 117 119 123 120 124 114 115 125 121 120 118 122 123 119 121 114 124 126 127 125 115 128 124 120 121 125 129 128 120 122 123 121 129 124 130 126 127 131 125 128 132 124 125 133 129 132 130 124 125 131 133 126 130 134 135 131 127 136 130 132 133 131 137 130 138 134 135 139 131 136 140 130 131 141 137 142 143 130 131 144 145 130 140 146 147 141 131 136 148 140 141 149 137 142 130 150 151 131 145 150 130 146 147 131 151 146 140 152 153 141 147 148 154 140 141 155 149 140 154 152 153 155 141 148 156 154 155 157 149 152 154 158 159 155 153 156 160 154 155 161 157 154 160 158 159 161 155 156 162 160 161 163 157 160 164 158 159 165 161 162 166 160 161 167 163 160 168 164 165 169 161 166 170 160 161 171 167 162 172 166 167 173 163 174 168 160 161 169 175 170 176 160 161 177 171 178 170 166 167 171 179 172 180 166 167 181 173 182 178 166 167 179 183 180 182 166 167 183 181 172 184 180 181 185 173 186 182 180 181 183 187 184 188 180 181 189 185 188 190 180 181 191 189 184 192 188 189 193 185 192 194 188 189 195 193 194 196 188 189 197 195 198 199 188 189 200 201 199 202 188 189 203 200</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID180\">\r\n            <mesh>\r\n                <source id=\"ID181\">\r\n                    <float_array count=\"306\" id=\"ID185\">0.5822945237159729 1.93234646320343 -0.1336532384157181 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.5886632204055786 1.934478163719177 -0.148460179567337 0.5886632204055786 1.934478163719177 -0.148460179567337 0.5886632204055786 1.934720396995544 -0.1188463941216469 0.5886632204055786 1.934720396995544 -0.1188463941216469 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.5886632204055786 1.918007493019104 -0.148460179567337 0.5886632204055786 1.918007493019104 -0.148460179567337 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1147843822836876 0.62096107006073 1.943698525428772 -0.1147843822836876 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.6060627698898315 1.933767676353455 -0.1592995822429657 0.6060627698898315 1.933767676353455 -0.1592995822429657 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.6060627698898315 1.933767676353455 -0.1080069318413734 0.6060627698898315 1.933767676353455 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.5886632204055786 1.918007493019104 -0.148460179567337 0.6624386310577393 1.923469066619873 -0.1336532384157181 0.6624386310577393 1.923469066619873 -0.1336532384157181 0.5886632204055786 1.918007493019104 -0.148460179567337 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1525221467018127 0.62096107006073 1.943698525428772 -0.1525221467018127 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.930925488471985 -0.1632670909166336 0.6624386310577393 1.930925488471985 -0.1632670909166336 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6624386310577393 1.930925488471985 -0.1040394529700279 0.6624386310577393 1.930925488471985 -0.1040394529700279 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.70525062084198 1.934461951255798 -0.1147843822836876 0.70525062084198 1.934461951255798 -0.1147843822836876 0.738028347492218 1.888520956039429 -0.148460179567337 0.738028347492218 1.888520956039429 -0.148460179567337 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.920978307723999 -0.1592995822429657 0.7206282615661621 1.920978307723999 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.7206282615661621 1.920978307723999 -0.1080069318413734 0.7206282615661621 1.920978307723999 -0.1080069318413734 0.744395911693573 1.885544061660767 -0.1336532384157181 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.888520956039429 -0.148460179567337 0.738028347492218 1.888520956039429 -0.148460179567337 0.70525062084198 1.934461951255798 -0.1525222510099411 0.70525062084198 1.934461951255798 -0.1525222510099411 0.738028347492218 1.888520956039429 -0.1188463941216469 0.738028347492218 1.888520956039429 -0.1188463941216469 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.920978307723999 -0.148460179567337 0.738028347492218 1.920978307723999 -0.148460179567337 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.888520956039429 -0.1188463941216469 0.738028347492218 1.920978307723999 -0.1188463941216469 0.738028347492218 1.920978307723999 -0.1188463941216469 0.738028347492218 1.888520956039429 -0.1188463941216469 0.744395911693573 1.920978307723999 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"102\" source=\"#ID185\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID182\">\r\n                    <float_array count=\"306\" id=\"ID186\">-0.4525870160939107 0.8917055352646315 0.005121644426094273 -0.268503656107856 0.9630575363932906 0.02063899834778602 -0.1975743797487748 0.9600174138981226 0.1983202699656487 0.1975743797487748 -0.9600174138981226 -0.1983202699656487 0.268503656107856 -0.9630575363932906 -0.02063899834778602 0.4525870160939107 -0.8917055352646315 -0.005121644426094273 -0.6836914411438895 0.4960175374375364 -0.5352874142561113 0.6836914411438895 -0.4960175374375364 0.5352874142561113 -0.6826789355655409 0.5175040650256956 0.5158866286472065 0.6826789355655409 -0.5175040650256956 -0.5158866286472065 -0.9999982786554844 -2.453531840315205e-017 0.00185544767322905 -0.7628108367871563 -5.107898362146584e-017 -0.6466217033784732 0.7628108367871563 5.107898362146584e-017 0.6466217033784732 0.9999982786554844 2.453531840315205e-017 -0.00185544767322905 -0.188685970994036 0.9568090513440232 -0.2211651953092718 0.188685970994036 -0.9568090513440232 0.2211651953092718 -0.9999999999992952 3.715457857115628e-018 1.187155444384655e-006 0.9999999999992952 -3.715457857115628e-018 -1.187155444384655e-006 -0.04316329546441134 0.9022464711878826 0.4290550490947117 0.04316329546441134 -0.9022464711878826 -0.4290550490947117 -0.3190221129661848 -5.169595915164021e-017 -0.9477472719235812 0.3190221129661848 5.169595915164021e-017 0.9477472719235812 -0.3015180340726529 0.4026939942020862 -0.8642478939300533 0.3015180340726529 -0.4026939942020862 0.8642478939300533 -0.7628108229850096 -4.387034181854362e-018 0.6466217196606778 0.7628108229850096 4.387034181854362e-018 -0.6466217196606778 -0.2966889948970395 0.3930087617907217 0.8703561072702991 0.2966889948970395 -0.3930087617907217 -0.8703561072702991 0.07444731930745059 -0.9972153159559796 -0.004382952286991633 0.07003499471041809 -0.9973648724161474 0.01893174017975829 -0.1719345689301247 -0.9851083717067944 1.534270210203556e-009 0.1719345689301247 0.9851083717067944 -1.534270210203556e-009 -0.07003499471041809 0.9973648724161474 -0.01893174017975829 -0.07444731930745059 0.9972153159559796 0.004382952286991633 0.06798922594315633 -0.9976860554080358 -6.586151547304128e-008 -0.06798922594315633 0.9976860554080358 6.586151547304128e-008 -0.05077244356092967 0.9044995626227409 -0.4234414955931014 0.05077244356092967 -0.9044995626227409 0.4234414955931014 0.0700349909810802 -0.9973648699915734 -0.01893188170710432 -0.0700349909810802 0.9973648699915734 0.01893188170710432 0.09074013728241166 0.8894532731297745 0.447927563792071 -0.09074013728241166 -0.8894532731297745 -0.447927563792071 -0.1684282001120586 -0.9857139247301988 3.261984415863724e-017 0.1684282001120586 0.9857139247301988 -3.261984415863724e-017 0.005344218692808919 4.599723035563907e-016 -0.9999857195613163 -0.005344218692808919 -4.599723035563907e-016 0.9999857195613163 0.03778722120653656 0.3316848252043232 -0.9426331750170188 -0.03778722120653656 -0.3316848252043232 0.9426331750170188 0.07444731259877206 -0.9972153164940292 0.004382943820520862 -0.07444731259877206 0.9972153164940292 -0.004382943820520862 -0.3190230296533958 -3.387307016387933e-007 0.947746963356071 0.3190230296533958 3.387307016387933e-007 -0.947746963356071 0.03242818957297756 0.331514159442729 0.9428927694123016 -0.03242818957297756 -0.331514159442729 -0.9428927694123016 -0.428391047419486 -0.8995381360362913 -0.08551170859707016 0.428391047419486 0.8995381360362913 0.08551170859707016 0.096620987895277 0.8889263129942582 -0.4477436708258138 -0.096620987895277 -0.8889263129942582 0.4477436708258138 -0.1684281857940404 -0.985713927176708 7.297025297092771e-018 0.1684281857940404 0.985713927176708 -7.297025297092771e-018 0.2484753200447397 0.8848239865712221 0.3941402391495622 -0.2484753200447397 -0.8848239865712221 -0.3941402391495622 -0.4241534822457019 -0.9051263251428462 -0.02898549692952567 0.4241534822457019 0.9051263251428462 0.02898549692952567 0.3702863131757861 2.794849320865508e-017 -0.9289176746486653 -0.3702863131757861 -2.794849320865508e-017 0.9289176746486653 0.3291556278174122 0.3380571823925383 -0.8816881047790899 -0.3291556278174122 -0.3380571823925383 0.8816881047790899 -0.4283909470720873 -0.8995381996175712 0.08551154246918034 0.4283909470720873 0.8995381996175712 -0.08551154246918034 0.00534420647697881 -7.185503873166344e-006 0.9999857196007852 -0.00534420647697881 7.185503873166344e-006 -0.9999857196007852 0.3421972052650621 0.3781976168594891 0.860155587850584 -0.3421972052650621 -0.3781976168594891 -0.860155587850584 -0.4199577750881749 -0.9075436447592974 3.995179379812722e-009 0.4199577750881749 0.9075436447592974 -3.995179379812722e-009 0.8007728670257135 -7.155639727126521e-018 -0.598968125558797 -0.8007728670257135 7.155639727126521e-018 0.598968125558797 0.2265426645478447 0.8870897369980587 -0.4021818241197354 -0.2265426645478447 -0.8870897369980587 0.4021818241197354 -0.4241534419131434 -0.9051263461530197 0.02898543104591447 0.4241534419131434 0.9051263461530197 -0.02898543104591447 0.370287246724113 2.791847602566496e-017 0.9289173025159322 -0.370287246724113 -2.791847602566496e-017 -0.9289173025159322 0.3251771624720898 0.9178173352138632 0.2277523922761804 -0.3251771624720898 -0.9178173352138632 -0.2277523922761804 0.9999999999994651 -1.021213629580521e-017 1.034288983214875e-006 0.6891861070879743 0.4665571033273914 -0.5543888338807671 -0.6891861070879743 -0.4665571033273914 0.5543888338807671 -0.9999999999994651 1.021213629580521e-017 -1.034288983214875e-006 0.8007725555961954 1.082289136176546e-017 0.5989685419151311 0.6796603680121492 0.4735256808583966 0.5602099728862223 -0.6796603680121492 -0.4735256808583966 -0.5602099728862223 -0.8007725555961954 -1.082289136176546e-017 -0.5989685419151311 0.9999999999992956 -9.014564059030779e-018 1.187010242994903e-006 -0.9999999999992956 9.014564059030779e-018 -1.187010242994903e-006 0.313686535197523 0.9395316905111851 -0.1374080061749221 -0.313686535197523 -0.9395316905111851 0.1374080061749221 0.3230550412313637 0.9463801774828378 -1.598246447941602e-006 -0.3230550412313637 -0.9463801774828378 1.598246447941602e-006 0.4168035059478051 0.908996610240611 -8.345898481386191e-007 -0.4168035059478051 -0.908996610240611 8.345898481386191e-007</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"102\" source=\"#ID186\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID184\">\r\n                    <float_array count=\"352\" id=\"ID187\">-14.26092285976243 -3.267336504556862 -14.50122065856141 -3.267336504556862 -14.54251926898909 -3.17988706781201 -14.26092285976243 -0.1936368490969575 -14.32712549384918 -0.3104567334225453 -14.50122065856142 -0.1936368490969575 -13.28435324929342 -1.428885536193822 -13.5667973286864 -1.343144519761906 -13.35215909967177 -1.312346726885018 -19.3234646320343 -2.775774186125142 -19.18007493019104 -2.902572994601767 -19.34478163719177 -2.902572994601767 -13.11902751273521 0.8971882525866644 -13.33458909656133 0.9284211431238822 -13.29162681686096 1.015373793926696 -19.18007493019104 0.8440785969051348 -19.3234646320343 0.8440785969051348 -19.34720396995544 0.9708767054351376 -11.92267352558833 -6.826298116710207 -12.13631873394668 -6.86110752723275 -12.25721177027786 -6.790163260846058 -19.34478163719177 -4.548037813701737 -19.18007493019104 -4.548037813701737 -19.19373035430908 -4.709301980786576 -19.18007493019104 -2.775774186125141 -19.18007493019104 -2.902572994601766 -19.3234646320343 -2.775774186125141 -11.91381290526125 5.517748780580218 -12.07582188985228 5.418781031966613 -12.12824349977981 5.553476189529911 -19.18007493019104 0.9708767054351369 -19.18007493019104 0.8440785969051341 -19.34720396995544 0.9708767054351369 -12.12265048181766 -7.572720107513859 -12.4568996842455 -7.534966229714509 -12.2830045508424 -7.471974036191307 7.481279052890341 -1.332361574105782 7.306749509412366 -1.247090367960376 8.046522017319962 -1.130607405835401 -19.33767676353455 -4.709301980786575 -19.34478163719177 -4.548037813701736 -19.19373035430908 -4.709301980786575 7.916809577349874 -0.6200375446511065 7.177049311337771 -0.7365686098342905 7.113509712554342 -0.6200375446511065 -12.60728008267938 5.152993841333039 -12.78200409385244 5.214550165207798 -12.66254653544607 5.286983389437513 7.916809577349874 -1.481877666592482 7.113509712554342 -1.481877666592482 7.177049311337772 -1.365347363029752 -19.18007493019104 3.436148046595554 -19.34720396995544 3.436148046595554 -19.33767676353455 3.597412461610878 -6.637237714247711 -12.74746105825016 -6.789128990141371 -12.83913569252778 -7.202867050126867 -12.79965041751035 8.000807655241598 -1.284367781877518 7.435563000784418 -1.253156713644663 8.000807655241598 -1.051405475536982 -19.33767676353454 -4.84390537779191 -19.19373035430908 -4.84390537779191 -19.23469066619873 -5.288492384512499 -7.089418961990558 11.42791153601595 -6.936062752823792 11.33775889249149 -7.497939059796469 11.28498356280143 8.046521833787153 -0.9721732080846033 7.306749325871717 -0.855691007925414 7.481278869343953 -0.7704193328896771 -19.19373035430908 3.597412461610879 -19.18007493019104 3.436148046595555 -19.33767676353455 3.597412461610879 -7.369825158474165 -12.2661650838376 -6.807597071843823 -12.3165685238239 -7.373684867622481 -12.36558529324536 -0.9523345474047307 -1.253156713644663 -1.586747984026279 -1.284367781877517 -1.586747984026279 -1.051405475536982 -19.30925488471985 -5.288492384512495 -19.33767676353455 -4.843905377791907 -19.23469066619873 -5.288492384512495 -7.026502570918128 11.14659193631369 -6.612407509575389 11.18368896840311 -7.024437646714015 11.04713849317582 7.435563000784419 -0.8496545304854709 8.000807655241598 -0.8184441655874251 -19.19373035430908 4.696283635055127 -19.33767676353455 4.696283635055127 -19.30925488471985 5.140870625317183 -2.014115649206309 -12.93522160548694 -1.991314094578658 -13.03305745380377 -2.422679319116055 -13.06955143368769 -1.596487895227738 -2.789542415683737 -1.795261294877364 -2.875262727568388 -2.429125493778011 -2.672445961980781 19.30925488471977 5.111744556259069 19.23469066619865 5.111744556259068 18.98195147514334 5.570565771945749 -1.575875569072168 11.70481331340891 -1.600637823938743 11.60727270824166 -2.188957930681452 11.65672342128608 -0.9523345474047285 -0.8496545304854711 -1.586747984026277 -1.051405475536982 -1.586747984026277 -0.8184441655874253 -19.23393808117686 5.142587001218538 -19.19304180662768 4.697996395662434 -19.30850229921694 5.142593680539108 -1.447328158709876 -13.32921368835843 -1.852035486588968 -13.47058325486161 -2.03526438040989 -13.38141326564552 -1.162771101234705 -1.081029775445771 -1.233061224869425 -1.197511247511588 -2.0658382000911 -1.081029775445771 19.20978307723999 4.149075244325578 18.98195147514343 4.149075244325578 18.88520956039429 4.310342993249799 19.20978307723999 5.570565771945566 19.30925488471985 5.111744556258882 18.98195147514343 5.570565771945566 -2.211275104051926 12.3639478654558 -1.780305455998344 12.32466851538065 -2.392882900506015 12.27274921558506 -1.596484536613035 0.6977740394742718 -2.429122137695238 0.5806783548559564 -1.795257934409154 0.7834948204452205 18.98195147514343 -5.713607677473338 19.23469066619873 -5.254786509630095 19.20978307723999 -5.713607677473338 19.23546720119447 -5.25301637823222 19.31003141920311 -5.253009485083976 19.21062783605071 -5.711839834884016 4.322774348413157 -7.633655863766362 4.195476574851193 -7.703165834573777 4.120827068660837 -7.574583915238395 -1.162771101234708 -1.021777341054808 -2.065838200091101 -1.021777341054808 -1.233061224869426 -0.9052966309337139 18.88520956039429 1.220751038278707 18.85544061660767 1.347546326955163 19.20978307723999 1.220751038278707 19.20978307723999 4.310342993249799 2.563221074984186 8.536311706901527 2.364832289113026 8.470198192077113 2.21004758401401 8.575937602597728 18.88520956039429 -5.422194446223683 18.98195147514343 -5.260926449374481 19.20978307723999 -5.422194446223683 18.98195147514343 -5.26092644937448 19.20978307723999 -5.26092644937448 19.20978307723999 -5.422194446223682 0.1146304451731955 -8.842369097665188 -0.1073383621633756 -8.806969540874464 0.05541078008391931 -8.708909056030961 18.85544061660767 -3.279318302324934 18.88520956039429 -3.152523713614531 19.20978307723999 -3.279318302324934 19.20978307723999 1.220751038278706 18.85544061660767 1.347546326955161 19.20978307723999 1.347546326955161 1.414737226473141 2.681464436820052 1.060449668087176 2.714365251456016 1.283321707504077 2.746058902699369 19.20978307723999 -3.279318302324935 19.20978307723999 -3.152523713614531 1.520888431116687 -3.802192102175359 1.478300328370118 -3.889256168860493 1.29792042368622 -3.770919075514688 1.520936551287351 1.732151967067352 1.297968527428662 1.700878897507549 1.240087476461425 1.819216476633805 1.47847632952945 -3.889095433125303 1.24021531170752 -3.889095433125303 1.298096197691254 -3.770758554053941 1.47847632952945 1.819465532770021 1.521064265145528 1.732400780884212 1.24021531170752 1.819465532770021</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"176\" source=\"#ID187\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID183\">\r\n                    <input semantic=\"POSITION\" source=\"#ID181\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID182\"/>\r\n                </vertices>\r\n                <triangles count=\"60\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID183\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID184\"/>\r\n                    <p>0 0 1 1 2 2 0 3 6 4 1 5 0 6 2 7 8 8 10 9 11 10 6 11 6 12 14 13 1 14 16 15 10 16 8 17 8 18 2 19 18 20 6 21 11 22 20 23 16 24 11 25 10 26 6 27 22 28 14 29 24 30 16 31 8 32 8 33 18 34 26 35 28 36 29 37 30 38 22 39 6 40 20 41 30 42 29 43 34 44 22 45 36 46 14 47 30 48 34 49 38 50 24 51 8 52 26 53 26 54 18 55 40 56 42 57 28 58 30 59 22 60 20 61 44 62 36 63 22 64 46 65 30 66 38 67 48 68 50 69 24 70 26 71 52 72 26 73 40 74 54 75 42 76 30 77 46 78 22 79 44 80 56 81 36 82 46 83 30 59 48 84 58 85 50 86 26 87 52 88 52 89 40 90 60 91 62 92 54 93 30 94 46 95 44 96 64 97 56 98 46 99 66 100 68 101 30 102 58 103 70 104 50 105 52 106 52 107 60 108 72 109 74 110 62 111 30 112 66 113 64 114 76 115 66 116 46 117 64 118 78 119 56 120 66 121 80 122 30 123 68 124 82 125 70 126 72 127 70 128 52 129 72 130 60 131 84 132 72 133 74 134 30 135 80 136 76 137 86 138 87 139 87 140 66 113 76 115 78 141 66 142 87 143 90 144 82 145 91 146 82 147 72 148 91 149 84 150 91 151 72 152 86 153 90 154 94 155 87 156 86 157 94 158 78 159 87 160 96 161 94 162 90 154 91 163 84 164 98 165 91 166 96 167 87 168 100 169 98 170 100 171 91 172 98 173 96 174 100 175</p>\r\n                </triangles>\r\n                <triangles count=\"60\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID183\"/>\r\n                    <p>3 4 5 4 7 5 9 3 5 7 12 13 4 15 7 9 13 17 19 3 9 21 12 7 13 12 17 15 23 7 9 17 25 27 19 9 31 32 33 21 7 23 35 32 31 15 37 23 39 35 31 27 9 25 41 19 27 31 33 43 45 21 23 47 23 37 49 39 31 27 25 51 41 27 53 31 43 55 45 23 47 47 37 57 59 49 31 53 27 51 61 41 53 31 55 63 65 45 47 67 47 57 59 31 69 53 51 71 73 61 53 31 63 75 77 65 67 65 47 67 67 57 79 69 31 81 73 71 83 73 53 71 73 85 61 81 31 75 88 89 77 77 67 88 88 67 79 92 83 93 92 73 83 73 92 85 95 93 89 95 89 88 97 88 79 92 93 95 92 99 85 101 88 97 92 101 99 101 97 99</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID188\">\r\n            <mesh>\r\n                <source id=\"ID191\">\r\n                    <float_array count=\"78\" id=\"ID194\">0.6034737825393677 1.943698525428772 -0.1336532384157181 0.6624386310577393 1.940856695175171 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6624386310577393 1.940856695175171 -0.1336532384157181 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1147843822836876 0.62096107006073 1.943698525428772 -0.1147843822836876 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.940856695175171 -0.111865259706974 0.62096107006073 1.943698525428772 -0.1525221467018127 0.62096107006073 1.943698525428772 -0.1525221467018127 0.70525062084198 1.934461951255798 -0.1147843822836876 0.70525062084198 1.934461951255798 -0.1147843822836876 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.70525062084198 1.934461951255798 -0.1525222510099411 0.70525062084198 1.934461951255798 -0.1525222510099411 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7180529236793518 1.930909156799316 -0.1445471495389938</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID194\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID192\">\r\n                    <float_array count=\"78\" id=\"ID195\">-0.268503656107856 0.9630575363932906 0.02063899834778602 0.1092906628252984 0.9940098344680534 -7.69523253476409e-009 -0.1975743797487748 0.9600174138981226 0.1983202699656487 0.1975743797487748 -0.9600174138981226 -0.1983202699656487 -0.1092906628252984 -0.9940098344680534 7.69523253476409e-009 0.268503656107856 -0.9630575363932906 -0.02063899834778602 -0.04316329546441134 0.9022464711878826 0.4290550490947117 0.04316329546441134 -0.9022464711878826 -0.4290550490947117 -0.188685970994036 0.9568090513440232 -0.2211651953092718 0.188685970994036 -0.9568090513440232 0.2211651953092718 0.09074013728241166 0.8894532731297745 0.447927563792071 -0.09074013728241166 -0.8894532731297745 -0.447927563792071 -0.05077244356092967 0.9044995626227409 -0.4234414955931014 0.05077244356092967 -0.9044995626227409 0.4234414955931014 0.2484753200447397 0.8848239865712221 0.3941402391495622 -0.2484753200447397 -0.8848239865712221 -0.3941402391495622 0.096620987895277 0.8889263129942582 -0.4477436708258138 -0.096620987895277 -0.8889263129942582 0.4477436708258138 0.3251771624720898 0.9178173352138632 0.2277523922761804 -0.3251771624720898 -0.9178173352138632 -0.2277523922761804 0.2265426645478447 0.8870897369980587 -0.4021818241197354 -0.2265426645478447 -0.8870897369980587 0.4021818241197354 0.3230550412313637 0.9463801774828378 -1.598246447941602e-006 -0.3230550412313637 -0.9463801774828378 1.598246447941602e-006 0.313686535197523 0.9395316905111851 -0.1374080061749221 -0.313686535197523 -0.9395316905111851 0.1374080061749221</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID195\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID193\">\r\n                    <input semantic=\"POSITION\" source=\"#ID191\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID192\"/>\r\n                </vertices>\r\n                <triangles count=\"12\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID193\"/>\r\n                    <p>0 1 2 2 1 6 0 8 1 6 1 10 8 12 1 1 14 10 12 16 1 1 18 14 16 20 1 1 22 18 20 24 1 1 24 22</p>\r\n                </triangles>\r\n                <triangles count=\"12\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID193\"/>\r\n                    <p>3 4 5 7 4 3 4 9 5 11 4 7 4 13 9 11 15 4 4 17 13 15 19 4 4 21 17 19 23 4 4 25 21 23 25 4</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID196\">\r\n            <mesh>\r\n                <source id=\"ID197\">\r\n                    <float_array count=\"78\" id=\"ID206\">0.6591432690620422 1.832582235336304 0.1425205767154694 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6591432690620422 1.832582235336304 0.1425205767154694 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6581888198852539 1.925890922546387 0.04520654678344727 0.7044316530227661 1.922605037689209 0.06054756790399551 0.7044316530227661 1.922605037689209 0.06054756790399551</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID206\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID198\">\r\n                    <float_array count=\"78\" id=\"ID207\">0.07889354688882974 -0.9052810488935695 -0.4174230836614798 -0.3613255746133597 -0.7363735528321385 0.5720120801344139 -0.02555645774528356 -0.7356610195326022 0.6768675880907327 0.02555645774528356 0.7356610195326022 -0.6768675880907327 0.3613255746133597 0.7363735528321385 -0.5720120801344139 -0.07889354688882974 0.9052810488935695 0.4174230836614798 -0.617978362244385 -0.7228716127692982 0.3091267947785527 0.617978362244385 0.7228716127692982 -0.3091267947785527 0.245498465440001 -0.7367781301705658 0.6299908653059739 -0.245498465440001 0.7367781301705658 -0.6299908653059739 -0.6981146516868598 -0.7101009198138653 -0.09161122627515073 0.6981146516868598 0.7101009198138653 0.09161122627515073 0.4229439574322713 -0.7494576529893595 0.5093443189505603 -0.4229439574322713 0.7494576529893595 -0.5093443189505603 0.6309107859638151 0.7132731859136506 0.3052751912801168 -0.6309107859638151 -0.7132731859136506 -0.3052751912801168 -0.668049406363227 0.7436903212606503 0.02519318798744152 0.668049406363227 -0.7436903212606503 -0.02519318798744152 0.3801733720381798 0.7237166802557863 0.5759360849197276 -0.3801733720381798 -0.7237166802557863 -0.5759360849197276 -0.5707129137868127 0.7192086630024464 0.3962646452803979 0.5707129137868127 -0.7192086630024464 -0.3962646452803979 0.0133747525654576 0.7218060729221357 0.6919661184527297 -0.0133747525654576 -0.7218060729221357 -0.6919661184527297 -0.327398087392843 0.7209079855479794 0.6108208974361165 0.327398087392843 -0.7209079855479794 -0.6108208974361165</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID207\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID205\">\r\n                    <float_array count=\"72\" id=\"ID208\">1.670397217954203 12.03873704482643 1.176526164090342 11.89637820790931 1.90788936543112 10.97402130969709 -6.542116642659369 8.418421955571644 -6.807315665933135 8.078643921026838 -5.570119367677798 7.645708411753829 10.16757882423856 10.72667158569806 9.998266154211549 9.653925714034958 10.59645423422299 10.58870047207641 -9.328879077613392 3.677675743203012 -9.444353010918027 3.306112027999903 -8.069237158150896 3.286841758651705 14.64976446746045 7.966015200863561 13.87068795816023 7.117704896956166 14.93720437652424 7.723612438930211 9.467765211356864 -1.453302206882614 8.168684772799315 -1.104275795865729 9.543800436155987 -1.084997163890837 -17.0972853500271 2.619394381338049 -18.3762790715688 2.644007760555567 -18.24485641557415 3.125422876902387 7.343712022776949 -5.939154573314194 7.042372400553623 -6.287974280806098 6.061597792196416 -5.55325232752239 -17.204848032999 -0.8227041725542247 -18.36637267839059 -1.22674786200653 -18.48383053894326 -0.7977327367101881 -0.9267127151734594 -10.43011461864739 -1.415903210216094 -10.57918238555594 -1.664725312902166 -9.536787660905636 -16.67259260139242 -4.36693626276425 -16.92224900716855 -4.069997286398384 -15.7903887940536 -3.616838921844481 -11.0216266886206 -8.922337946536512 -11.46257013647479 -8.757281792566458 -10.80642236134923 -7.875322928325505</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"36\" source=\"#ID208\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID199\">\r\n                    <input semantic=\"POSITION\" source=\"#ID197\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID198\"/>\r\n                </vertices>\r\n                <triangles count=\"12\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID199\"/>\r\n                    <p>0 1 2 0 6 1 8 0 2 0 10 6 12 0 8 10 0 15 12 17 0 0 19 15 17 21 0 0 23 19 0 21 25 0 25 23</p>\r\n                </triangles>\r\n                <triangles count=\"12\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID199\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID205\"/>\r\n                    <p>3 0 4 1 5 2 4 3 7 4 5 5 3 6 5 7 9 8 7 9 11 10 5 11 9 12 5 13 13 14 14 15 5 16 11 17 5 18 16 19 13 20 14 21 18 22 5 23 5 24 20 25 16 26 18 27 22 28 5 29 24 30 20 31 5 32 22 33 24 34 5 35</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID211\">\r\n            <mesh>\r\n                <source id=\"ID212\">\r\n                    <float_array count=\"234\" id=\"ID215\">-0.1970338225364685 -1.931188106536865 0.1519460678100586 -0.1967810839414597 -1.975753784179688 0.06137931346893311 -0.479192852973938 -1.931188106536865 0.1536669880151749 -0.479192852973938 -1.931188106536865 0.1536669880151749 -0.1967810839414597 -1.975753784179688 0.06137931346893311 -0.1970338225364685 -1.931188106536865 0.1519460678100586 -0.4238884449005127 -1.952622652053833 0.111620157957077 -0.4238884449005127 -1.952622652053833 0.111620157957077 0.003534962190315127 -1.975753784179688 0.06137931346893311 0.003534962190315127 -1.975753784179688 0.06137931346893311 -0.5108060836791992 -1.828675627708435 0.2087062001228333 -0.5108060836791992 -1.828675627708435 0.2087062001228333 -0.3540624976158142 -1.968288421630859 0.07805071771144867 -0.3540624976158142 -1.968288421630859 0.07805071771144867 0.003534962190315127 -1.931188106536865 0.1527040004730225 0.003534962190315127 -1.931188106536865 0.1527040004730225 -0.1976474672555924 -1.828675627708435 0.2088393121957779 -0.1976474672555924 -1.828675627708435 0.2088393121957779 0.2041033208370209 -1.931188106536865 0.1519460678100586 0.2041033208370209 -1.931188106536865 0.1519460678100586 -0.5159977078437805 -1.740602254867554 0.2356471866369247 -0.5159977078437805 -1.740602254867554 0.2356471866369247 0.2038507014513016 -1.975753784179688 0.06137931346893311 0.2038507014513016 -1.975753784179688 0.06137931346893311 0.2047170847654343 -1.828675627708435 0.2088393121957779 0.2047170847654343 -1.828675627708435 0.2088393121957779 0.003534962190315127 -1.828675627708435 0.2087676078081131 0.003534962190315127 -1.828675627708435 0.2087676078081131 -0.1991988271474838 -1.740602254867554 0.2356471866369247 -0.1991988271474838 -1.740602254867554 0.2356471866369247 0.4862626791000366 -1.931188106536865 0.1536669880151749 0.4862626791000366 -1.931188106536865 0.1536669880151749 0.5178753733634949 -1.828675627708435 0.2087062001228333 0.5178753733634949 -1.828675627708435 0.2087062001228333 -0.5156968235969544 -1.602517247200012 0.2691195011138916 -0.5156968235969544 -1.602517247200012 0.2691195011138916 0.4309577345848084 -1.952622652053833 0.111620157957077 0.4309577345848084 -1.952622652053833 0.111620157957077 0.5230674743652344 -1.740602254867554 0.2356471866369247 0.5230674743652344 -1.740602254867554 0.2356471866369247 0.2062683254480362 -1.740602254867554 0.2356471866369247 0.2062683254480362 -1.740602254867554 0.2356471866369247 0.003534962190315127 -1.742378234863281 0.2356471866369247 0.003534962190315127 -1.742378234863281 0.2356471866369247 -0.2001994103193283 -1.602517247200012 0.2691195011138916 -0.2001994103193283 -1.602517247200012 0.2691195011138916 0.3611322641372681 -1.968288421630859 0.07805071771144867 0.3611322641372681 -1.968288421630859 0.07805071771144867 -0.5085935592651367 -1.473212003707886 0.2946602702140808 -0.5085935592651367 -1.473212003707886 0.2946602702140808 0.5227663516998291 -1.602517247200012 0.2691195011138916 0.5227663516998291 -1.602517247200012 0.2691195011138916 0.2072690576314926 -1.602517247200012 0.2691195011138916 0.2072690576314926 -1.602517247200012 0.2691195011138916 0.003534962190315127 -1.602517247200012 0.2691195011138916 0.003534962190315127 -1.602517247200012 0.2691195011138916 -0.2037112414836884 -1.473212003707886 0.2946602702140808 -0.2037112414836884 -1.473212003707886 0.2946602702140808 -0.4516721367835999 -1.365588307380676 0.3139455020427704 -0.4516721367835999 -1.365588307380676 0.3139455020427704 0.5156629085540772 -1.473212003707886 0.2946602702140808 0.5156629085540772 -1.473212003707886 0.2946602702140808 0.2107809633016586 -1.473212003707886 0.2946602702140808 0.2107809633016586 -1.473212003707886 0.2946602702140808 0.003534962190315127 -1.473212003707886 0.2946602702140808 0.003534962190315127 -1.473212003707886 0.2946602702140808 -0.3896275460720062 -1.332627534866333 0.3204693794250488 -0.3896275460720062 -1.332627534866333 0.3204693794250488 -0.2025128901004791 -1.305356502532959 0.3259882032871246 -0.2025128901004791 -1.305356502532959 0.3259882032871246 0.4587418138980866 -1.365588307380676 0.3139455020427704 0.4587418138980866 -1.365588307380676 0.3139455020427704 0.2095824927091599 -1.305356502532959 0.3259882032871246 0.2095824927091599 -1.305356502532959 0.3259882032871246 0.003534962190315127 -1.301196455955505 0.3259882032871246 0.003534962190315127 -1.301196455955505 0.3259882032871246 0.3966972529888153 -1.332627534866333 0.3204693794250488 0.3966972529888153 -1.332627534866333 0.3204693794250488</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"78\" source=\"#ID215\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID213\">\r\n                    <float_array count=\"234\" id=\"ID216\">-4.515878047999203e-005 -0.7243893371074355 0.6893910981770325 0.00167219103053643 -0.897063476184309 0.4418985443212967 0.006410489730464489 -0.6094093748595211 0.792829817460685 -0.006410489730464489 0.6094093748595211 -0.792829817460685 -0.00167219103053643 0.897063476184309 -0.4418985443212967 4.515878047999203e-005 0.7243893371074355 -0.6893910981770325 0.01264943619488881 -0.8853302774953902 0.4647905888826568 -0.01264943619488881 0.8853302774953902 -0.4647905888826568 7.878145810645445e-010 -0.8982732127961225 0.4394374075712401 -7.878145810645445e-010 0.8982732127961225 -0.4394374075712401 0.001474960385020964 -0.375806674823649 0.9266969125069181 -0.001474960385020964 0.375806674823649 -0.9266969125069181 0.002320778656645531 -0.9043218214667207 0.4268450037256373 -0.002320778656645531 0.9043218214667207 -0.4268450037256373 1.857749683900308e-009 -0.7236993566282646 0.6901153825381927 -1.857749683900308e-009 0.7236993566282646 -0.6901153825381927 -0.0005486435031754847 -0.3899735549035239 0.9208258931341008 0.0005486435031754847 0.3899735549035239 -0.9208258931341008 4.516323083206616e-005 -0.7243893393134647 0.6893910958587183 -4.516323083206616e-005 0.7243893393134647 -0.6893910958587183 -0.0001626197986828542 -0.2635487516562606 0.9646460641371153 0.0001626197986828542 0.2635487516562606 -0.9646460641371153 -0.001672191344845518 -0.8970634771177262 0.4418985424252507 0.001672191344845518 0.8970634771177262 -0.4418985424252507 0.0005486438164148678 -0.3899735550538463 0.9208258930702521 -0.0005486438164148678 0.3899735550538463 -0.9208258930702521 4.740422479309856e-010 -0.3897250116678094 0.9209312760898751 -4.740422479309856e-010 0.3897250116678094 -0.9209312760898751 -0.0006334395315461648 -0.2638390090469637 0.964566522360939 0.0006334395315461648 0.2638390090469637 -0.964566522360939 -0.006410483636061917 -0.6094089467559926 0.7928301465719526 0.006410483636061917 0.6094089467559926 -0.7928301465719526 -0.001474960054633009 -0.3758066845522592 0.9266969085621664 0.001474960054633009 0.3758066845522592 -0.9266969085621664 -1.421866300011938e-018 -0.2151078777409298 0.9765902932825993 1.421866300011938e-018 0.2151078777409298 -0.9765902932825993 -0.01264950172687415 -0.8853301863937345 0.464790760629014 0.01264950172687415 0.8853301863937345 -0.464790760629014 0.0001626196653223157 -0.2635487189581836 0.9646460730705043 -0.0001626196653223157 0.2635487189581836 -0.9646460730705043 0.0006334415469292542 -0.2638390102706938 0.9645665220248874 -0.0006334415469292542 0.2638390102706938 -0.9645665220248874 2.009365864777678e-009 -0.2659351138115117 0.9639909310994883 -2.009365864777678e-009 0.2659351138115117 -0.9639909310994883 -0.0003118220590012659 -0.2144534401416348 0.9767341627988764 0.0003118220590012659 0.2144534401416348 -0.9767341627988764 -0.002320771401198793 -0.9043218400706571 0.4268449643504352 0.002320771401198793 0.9043218400706571 -0.4268449643504352 -1.908724997150857e-018 -0.1867975922323924 0.9823984219939387 1.908724997150857e-018 0.1867975922323924 -0.9823984219939387 -3.846534772188975e-018 -0.2151078982051234 0.9765902887750698 3.846534772188975e-018 0.2151078982051234 -0.9765902887750698 0.0003118221621229709 -0.2144534401719119 0.9767341627921956 -0.0003118221621229709 0.2144534401719119 -0.9767341627921956 -3.415587396278465e-018 -0.2133083393301314 0.9769849294498977 3.415587396278465e-018 0.2133083393301314 -0.9769849294498977 -0.0004993295652226545 -0.188260279239131 0.9821190446838864 0.0004993295652226545 0.188260279239131 -0.9821190446838864 -0.001573872363585238 -0.1798939088582221 0.9836847586912652 0.001573872363585238 0.1798939088582221 -0.9836847586912652 1.950937990684165e-018 -0.1867975866733153 0.9823984230509664 -1.950937990684165e-018 0.1867975866733153 -0.9823984230509664 0.0004993296850496009 -0.1882602789748251 0.9821190447344897 -0.0004993296850496009 0.1882602789748251 -0.9821190447344897 -3.48401965557127e-010 -0.1874269755801675 0.9822785393282657 3.48401965557127e-010 0.1874269755801675 -0.9822785393282657 -0.003781893832025225 -0.1854015646517295 0.9826555638186424 0.003781893832025225 0.1854015646517295 -0.9826555638186424 -0.0002058559345083983 -0.1824473280205556 0.9832156071388891 0.0002058559345083983 0.1824473280205556 -0.9832156071388891 0.001573874654780835 -0.1798939133359203 0.9836847578687288 -0.001573874654780835 0.1798939133359203 -0.9836847578687288 0.0002058526909813292 -0.182447326200633 0.9832156074772764 -0.0002058526909813292 0.182447326200633 -0.9832156074772764 -2.788418118671642e-009 -0.1791754175536094 0.9838171424327236 2.788418118671642e-009 0.1791754175536094 -0.9838171424327236 0.003781894494418022 -0.1854015651104945 0.9826555637295359 -0.003781894494418022 0.1854015651104945 -0.9826555637295359</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"78\" source=\"#ID216\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID214\">\r\n                    <input semantic=\"POSITION\" source=\"#ID212\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID213\"/>\r\n                </vertices>\r\n                <triangles count=\"52\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID214\"/>\r\n                    <p>0 1 2 1 6 2 8 1 0 2 10 0 1 12 6 8 0 14 10 16 0 18 8 14 0 16 14 10 20 16 22 8 18 18 14 24 14 16 26 20 28 16 22 18 30 18 24 32 14 26 24 16 28 26 20 34 28 36 22 30 30 18 32 32 24 38 24 26 40 26 28 42 34 44 28 46 22 36 24 40 38 26 42 40 28 44 42 34 48 44 40 50 38 40 42 52 42 44 54 48 56 44 40 52 50 42 54 52 44 56 54 48 58 56 52 60 50 52 54 62 54 56 64 58 66 56 52 62 60 54 64 62 56 68 64 56 66 68 62 70 60 64 72 62 64 68 74 62 76 70 62 72 76 64 74 72</p>\r\n                </triangles>\r\n                <triangles count=\"52\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID214\"/>\r\n                    <p>3 4 5 3 7 4 5 4 9 5 11 3 7 13 4 15 5 9 5 17 11 15 9 19 15 17 5 17 21 11 19 9 23 25 15 19 27 17 15 17 29 21 31 19 23 33 25 19 25 27 15 27 29 17 29 35 21 31 23 37 33 19 31 39 25 33 41 27 25 43 29 27 29 45 35 37 23 47 39 41 25 41 43 27 43 45 29 45 49 35 39 51 41 53 43 41 55 45 43 45 57 49 51 53 41 53 55 43 55 57 45 57 59 49 51 61 53 63 55 53 65 57 55 57 67 59 61 63 53 63 65 55 65 69 57 69 67 57 61 71 63 63 73 65 75 69 65 71 77 63 77 73 63 73 75 65</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID217\">\r\n            <mesh>\r\n                <source id=\"ID218\">\r\n                    <float_array count=\"486\" id=\"ID222\">-0.06212541833519936 -1.890682101249695 0.185465544462204 -0.004580865148454905 -1.885924220085144 0.1778659224510193 -0.003423498477786779 -1.882099986076355 0.1798757761716843 -0.003423498477786779 -1.882099986076355 0.1798757761716843 -0.004580865148454905 -1.885924220085144 0.1778659224510193 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362602695822716 -1.877979755401611 0.1924054622650147 -0.05362602695822716 -1.877979755401611 0.1924054622650147 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.003423502203077078 -1.889748334884644 0.1758555620908737 -0.003423502203077078 -1.889748334884644 0.1758555620908737 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.000261504203081131 -1.879300594329834 0.18134805560112 -0.000261504203081131 -1.879300594329834 0.18134805560112 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.01774921268224716 -1.872801303863525 0.1951804459095001 -0.01774921268224716 -1.872801303863525 0.1951804459095001 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.004193538334220648 -1.907847166061401 0.190097764134407 -0.004193538334220648 -1.907847166061401 0.190097764134407 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.01031874679028988 -1.903075337409973 0.1926834881305695 -0.01031874679028988 -1.903075337409973 0.1926834881305695 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.000261504203081131 -1.892548799514771 0.1743834316730499 -0.000261504203081131 -1.892548799514771 0.1743834316730499 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.01256070844829083 -1.896557927131653 0.1962146610021591 -0.01256070844829083 -1.896557927131653 0.1962146610021591 -0.05362602695822716 -1.882304906845093 0.2003258913755417 0.004057842772454023 -1.878275752067566 0.1818866580724716 0.004057842772454023 -1.878275752067566 0.1818866580724716 0.004173615481704474 -1.909591317176819 0.189151793718338 0.004173615481704474 -1.909591317176819 0.189151793718338 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.916087865829468 0.1715866476297379 0.00344362435862422 -1.916087865829468 0.1715866476297379 -0.01031874306499958 -1.890042185783386 0.1997462660074234 -0.01031874306499958 -1.890042185783386 0.1997462660074234 -0.01774921268224716 -1.877128958702087 0.2031001746654511 -0.01774921268224716 -1.877128958702087 0.2031001746654511 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004173615481704474 -1.905439138412476 0.1941477060317993 0.004173615481704474 -1.905439138412476 0.1941477060317993 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.920415163040161 0.1795060932636261 -0.0002153222449123859 -1.904404282569885 0.194709837436676 -0.0002153222449123859 -1.904404282569885 0.194709837436676 0.00344362435862422 -1.916087865829468 0.1715866476297379 0.00344362435862422 -1.916087865829468 0.1715866476297379 -0.003428266383707523 -1.901579737663269 0.1962397992610931 -0.003428266383707523 -1.901579737663269 0.1962397992610931 0.004057839047163725 -1.893572092056274 0.1738448441028595 0.004057839047163725 -1.893572092056274 0.1738448441028595 -0.004604290705174208 -1.897721648216248 0.198330745100975 -0.004604290705174208 -1.897721648216248 0.198330745100975 -0.01774921268224716 -1.877128958702087 0.2031001746654511 -0.01774921268224716 -1.877128958702087 0.2031001746654511 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.0083771962672472 -1.879300594329834 0.18134805560112 0.0083771962672472 -1.879300594329834 0.18134805560112 0.008562571369111538 -1.904404282569885 0.194709837436676 0.008562571369111538 -1.904404282569885 0.194709837436676 0.01254078187048435 -1.907847166061401 0.190097764134407 0.01254078187048435 -1.907847166061401 0.190097764134407 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.0252343937754631 -1.909103035926819 0.1754486709833145 -0.003428266383707523 -1.893861889839172 0.200422078371048 -0.003428266383707523 -1.893861889839172 0.200422078371048 -0.004193538334220648 -1.885270476341248 0.2023317068815231 -0.004193538334220648 -1.885270476341248 0.2023317068815231 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.02461381815373898 -1.873335719108582 0.1948819309473038 0.02461381815373898 -1.873335719108582 0.1948819309473038 0.004173621535301209 -1.898949146270752 0.2003982812166214 0.004173621535301209 -1.898949146270752 0.2003982812166214 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.008377193473279476 -1.892548799514771 0.1743834316730499 0.008377193473279476 -1.892548799514771 0.1743834316730499 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.01153918355703354 -1.882099986076355 0.1798757761716843 0.01153918355703354 -1.882099986076355 0.1798757761716843 0.01177550666034222 -1.901579737663269 0.1962397992610931 0.01177550666034222 -1.901579737663269 0.1962397992610931 0.0186659786850214 -1.903075337409973 0.1926834881305695 0.0186659786850214 -1.903075337409973 0.1926834881305695 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.05625637620687485 -1.903384566307068 0.1785260140895844 -0.0002153187524527311 -1.89103627204895 0.2019526362419128 -0.0002153187524527311 -1.89103627204895 0.2019526362419128 0.004173621535301209 -1.883522987365723 0.2032789885997772 0.004173621535301209 -1.883522987365723 0.2032789885997772 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.05625637620687485 -1.877979755401611 0.1924054622650147 0.05625637620687485 -1.877979755401611 0.1924054622650147 0.01295152120292187 -1.897721648216248 0.198330745100975 0.01295152120292187 -1.897721648216248 0.198330745100975 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.01153918355703354 -1.889748334884644 0.1758555620908737 0.01153918355703354 -1.889748334884644 0.1758555620908737 0.004173621535301209 -1.890002012252808 0.2025137692689896 0.004173621535301209 -1.890002012252808 0.2025137692689896 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.01269654557108879 -1.885924220085144 0.1778659224510193 0.01269654557108879 -1.885924220085144 0.1778659224510193 0.01177550666034222 -1.893861889839172 0.200422078371048 0.01177550666034222 -1.893861889839172 0.200422078371048 0.02090794593095779 -1.896557927131653 0.1962146610021591 0.02090794593095779 -1.896557927131653 0.1962146610021591 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.890682101249695 0.185465544462204 0.064755879342556 -1.890682101249695 0.185465544462204 0.008562571369111538 -1.89103627204895 0.2019526362419128 0.008562571369111538 -1.89103627204895 0.2019526362419128 0.01254078559577465 -1.885270476341248 0.2023317068815231 0.01254078559577465 -1.885270476341248 0.2023317068815231 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.890682101249695 0.185465544462204 0.064755879342556 -1.890682101249695 0.185465544462204 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.0186659786850214 -1.890042185783386 0.1997462660074234 0.0186659786850214 -1.890042185783386 0.1997462660074234</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"162\" source=\"#ID222\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID219\">\r\n                    <float_array count=\"486\" id=\"ID223\">-0.1559367835908594 0.4724906605952762 -0.8674308590161968 -0.1571837693401717 0.456705339978458 -0.875621776277393 -0.1522451649855252 0.5550067500675552 -0.8177951559638763 0.1522451649855252 -0.5550067500675552 0.8177951559638763 0.1571837693401717 -0.456705339978458 0.875621776277393 0.1559367835908594 -0.4724906605952762 0.8674308590161968 -0.1390503382858027 0.3378735749610511 -0.9308632825316738 0.1390503382858027 -0.3378735749610511 0.9308632825316738 -0.4869393082831401 0.8579505478323806 -0.1637405494153943 0.4869393082831401 -0.8579505478323806 0.1637405494153943 -0.5650701725602941 -0.7240143539059234 -0.3955994380947325 -0.5654194957188525 -0.7237957918031766 -0.3955002473185714 -0.9999999993758014 -1.504630552647389e-005 -3.196882694804338e-005 0.9999999993758014 1.504630552647389e-005 3.196882694804338e-005 0.5654194957188525 0.7237957918031766 0.3955002473185714 0.5650701725602941 0.7240143539059234 0.3955994380947325 -0.1873666787595777 0.2714871219833654 -0.9440277910569129 0.1873666787595777 -0.2714871219833654 0.9440277910569129 -0.9999999976347745 6.227543176424389e-005 2.919282880435985e-005 0.9999999976347745 -6.227543176424389e-005 -2.919282880435985e-005 -0.1284827264643132 0.7799780092813398 -0.6124757089369463 0.1284827264643132 -0.7799780092813398 0.6124757089369463 -0.2693333263803373 -0.8451188910684884 -0.4617722590845744 0.2693333263803373 0.8451188910684884 0.4617722590845744 -0.1085841614822981 0.07656549866794069 -0.9911343018425484 0.1085841614822981 -0.07656549866794069 0.9911343018425484 -0.5656655764677463 0.7237428511543926 0.3952451656912744 0.5656655764677463 -0.7237428511543926 -0.3952451656912744 -0.215460344750203 0.9745977197732217 -0.06112384520758304 0.215460344750203 -0.9745977197732217 0.06112384520758304 -0.06024289250176393 -0.7152519924570895 0.6962653094828037 -0.06680914302018613 -0.535661734201317 0.8417856288398764 -0.1098236036290324 -0.6959721181523937 0.7096207345056963 0.1098236036290324 0.6959721181523937 -0.7096207345056963 0.06680914302018613 0.535661734201317 -0.8417856288398764 0.06024289250176393 0.7152519924570895 -0.6962653094828037 -0.2693810262618333 -0.8451073808799046 -0.4617655005221041 0.2693810262618333 0.8451073808799046 0.4617655005221041 -0.06641723789961297 -0.4778104061893048 0.8759486093641555 -0.1492248560790995 -0.5551857009119028 0.8182302731084516 0.1492248560790995 0.5551857009119028 -0.8182302731084516 0.06641723789961297 0.4778104061893048 -0.8759486093641555 -0.1801642414375255 0.140548577976789 -0.9735434984303185 0.1801642414375255 -0.140548577976789 0.9735434984303185 -0.06109943537755055 -0.4210572589614811 0.9049738359048778 -0.1598490402081354 -0.4688447286817832 0.8686960945761431 0.1598490402081354 0.4688447286817832 -0.8686960945761431 0.06109943537755055 0.4210572589614811 -0.9049738359048778 -0.01706439951246839 0.8069219832866875 -0.5904114829150576 0.01706439951246839 -0.8069219832866875 0.5904114829150576 -0.005922541934862095 -0.7145168845725065 0.6995931282951752 0.005922541934862095 0.7145168845725065 -0.6995931282951752 -0.01638072440113115 -0.8774243488918827 -0.4794352759651192 0.01638072440113115 0.8774243488918827 0.4794352759651192 -0.004892287435146141 0.09504341174650677 -0.9954611069284605 0.004892287435146141 -0.09504341174650677 0.9954611069284605 -0.1608853655267507 -0.3451121954708132 0.9246693850758978 0.1608853655267507 0.3451121954708132 -0.9246693850758978 -0.2697758473313772 0.8450062910095768 0.4617200021126179 0.2697758473313772 -0.8450062910095768 -0.4617200021126179 0.005163321228154287 0.80314369678722 -0.5957629918221281 -0.005163321228154287 -0.80314369678722 0.5957629918221281 0.002344292070657979 -0.7372617171674439 0.6756031858228611 -0.002344292070657979 0.7372617171674439 -0.6756031858228611 -0.008157238007564552 -0.6687361967973861 0.7434550144837653 0.008157238007564552 0.6687361967973861 -0.7434550144837653 -0.1482697422189595 -0.6939824270870997 0.704559773501597 0.1482697422189595 0.6939824270870997 -0.704559773501597 -0.01631095801948851 -0.8774315909803663 -0.4794244005035099 0.01631095801948851 0.8774315909803663 0.4794244005035099 -0.247634545874316 -0.587407097508461 0.7704739018852661 0.247634545874316 0.587407097508461 -0.7704739018852661 0.01672740120278551 0.08830494052585623 -0.9959530267676915 -0.01672740120278551 -0.08830494052585623 0.9959530267676915 -0.2806604926472587 -0.455709256550181 0.8447240740984473 0.2806604926472587 0.455709256550181 -0.8447240740984473 -0.06931151722567759 -0.2749132873875356 0.9589674645146482 0.06931151722567759 0.2749132873875356 -0.9589674645146482 0.02391697579585033 0.8773665534004429 0.4792242786451961 -0.02391697579585033 -0.8773665534004429 -0.4792242786451961 0.2101921749737974 0.7555228558127222 -0.6204872794218858 -0.2101921749737974 -0.7555228558127222 0.6204872794218858 0.1514833837771899 -0.6960574425040083 0.701823924623685 -0.1514833837771899 0.6960574425040083 -0.701823924623685 0.1295182429994306 -0.6780618820468425 0.7235033578674217 -0.1295182429994306 0.6780618820468425 -0.7235033578674217 0.2751035091169459 -0.8437311463046369 -0.460907595974514 -0.2751035091169459 0.8437311463046369 0.460907595974514 0.1086831171316301 0.05008127305961377 -0.9928141045227352 -0.1086831171316301 -0.05008127305961377 0.9928141045227352 -0.2488725265091385 -0.3207670673426812 0.9138768812358338 0.2488725265091385 0.3207670673426812 -0.9138768812358338 -0.1296109157726461 -0.2425424417003133 0.9614437968423459 0.1296109157726461 0.2425424417003133 -0.9614437968423459 0.02382489002837564 0.8773602369114034 0.4792404295360543 -0.02382489002837564 -0.8773602369114034 -0.4792404295360543 0.2436673669795205 0.9657019217466152 -0.08969956858403495 -0.2436673669795205 -0.9657019217466152 0.08969956858403495 6.120173975055664e-008 -0.478955974542849 0.8778389228381857 -6.120173975055664e-008 0.478955974542849 -0.8778389228381857 0.0739072039953195 -0.6532948377034049 0.7534876111972089 -0.0739072039953195 0.6532948377034049 -0.7534876111972089 0.2751232148782023 -0.8437271877663316 -0.4609030801144639 -0.2751232148782023 0.8437271877663316 0.4609030801144639 0.1207740632168708 0.1185580458727601 -0.9855747639894804 -0.1207740632168708 -0.1185580458727601 0.9855747639894804 0.00894902137950491 -0.2714223354616189 0.9624187398575059 -0.00894902137950491 0.2714223354616189 -0.9624187398575059 0.2194923653377241 0.6465152519741085 -0.7306443255944074 -0.2194923653377241 -0.6465152519741085 0.7306443255944074 0.2502420019123516 -0.5907866162909732 0.7670398389199618 -0.2502420019123516 0.5907866162909732 -0.7670398389199618 0.165115532820197 -0.5861941213740701 0.7931666362675529 -0.165115532820197 0.5861941213740701 -0.7931666362675529 0.5834070092154735 -0.7127232439408671 -0.3894378501695283 -0.5834070092154735 0.7127232439408671 0.3894378501695283 0.1583039384910361 0.3225371996795222 -0.9332253842888749 -0.1583039384910361 -0.3225371996795222 0.9332253842888749 -0.1502315126915595 -0.2102981436898203 0.9660254568876648 0.1502315126915595 0.2102981436898203 -0.9660254568876648 0.01196630073376463 -0.2032111379676907 0.9790618167677796 -0.01196630073376463 0.2032111379676907 -0.9790618167677796 0.2939800854361898 0.8387086624576868 0.4584141019704441 -0.2939800854361898 -0.8387086624576868 -0.4584141019704441 0.4885737109371212 0.8578263993909789 -0.1594666030522976 -0.4885737109371212 -0.8578263993909789 0.1594666030522976 0.2806670705106129 -0.4587400994911635 0.8430797807146296 -0.2806670705106129 0.4587400994911635 -0.8430797807146296 0.06935806896058236 -0.53855939403882 0.8397280734634266 -0.06935806896058236 0.53855939403882 -0.8397280734634266 0.5837254403942573 -0.7125257971522856 -0.3893219729594392 -0.5837254403942573 0.7125257971522856 0.3893219729594392 0.1600135354637308 0.3583929788715838 -0.9197554790073013 -0.1600135354637308 -0.3583929788715838 0.9197554790073013 -0.002334717766163528 -0.1667584603142579 0.9859950126682033 0.002334717766163528 0.1667584603142579 -0.9859950126682033 0.06637512762902212 -0.1772777037866704 0.9819200365469464 -0.06637512762902212 0.1772777037866704 -0.9819200365469464 0.1780098328934645 0.4656460746403963 -0.8668830558761842 -0.1780098328934645 -0.4656460746403963 0.8668830558761842 0.2462724472171071 -0.3254193099052178 0.9129360078792538 -0.2462724472171071 0.3254193099052178 -0.9129360078792538 0.1656993367893799 -0.4721240936589514 0.8658190168703118 -0.1656993367893799 0.4721240936589514 -0.8658190168703118 0.9999999988634817 4.762279000706527e-005 2.259778687422832e-006 -0.9999999988634817 -4.762279000706527e-005 -2.259778687422832e-006 0.17090859929879 0.4725818099566265 -0.8645557723963474 -0.17090859929879 -0.4725818099566265 0.8645557723963474 0.147042743150684 -0.2137060265846958 0.9657681739879935 -0.147042743150684 0.2137060265846958 -0.9657681739879935 0.1124707744108558 -0.2039467248969374 0.9724999014433038 -0.1124707744108558 0.2039467248969374 -0.9724999014433038 0.5666903137006596 0.7231345214766569 0.3948905572517206 -0.5666903137006596 -0.7231345214766569 -0.3948905572517206 0.07468321548360864 -0.4785813686036864 0.87486129812128 -0.07468321548360864 0.4785813686036864 -0.87486129812128 0.9999999985165108 -4.563442049767177e-005 -2.974017410650329e-005 -0.9999999985165108 4.563442049767177e-005 2.974017410650329e-005 0.07423592034048399 -0.4103243047544882 0.9089130833357759 -0.07423592034048399 0.4103243047544882 -0.9089130833357759 0.1529426208812376 -0.3797523998761752 0.9123577530257875 -0.1529426208812376 0.3797523998761752 -0.9123577530257875</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"162\" source=\"#ID223\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID221\">\r\n                    <float_array count=\"648\" id=\"ID224\">6.197624366416148 -11.259997112316 5.633936893191923 -11.37516565359185 5.611547707344592 -11.34470730699959 7.403462601312935 -11.80058060332358 7.370045423987567 -11.92998237377035 6.849633993693515 -11.94229113561747 5.696372318742883 -10.64788532287058 5.813110766776234 -10.74276692755852 5.2251960094395 -10.81918947322953 16.71249903445029 3.182932220119489 16.67402942061986 3.118707169152669 16.52218241039167 3.174982135305599 6.812389486930464 -11.72106037525777 7.332829805861207 -11.70953224809925 6.815314067625983 -11.75617018200611 17.12937086962881 3.027794399053971 17.09092129546603 2.963568365523682 16.93907443053135 3.019845005021688 5.16879640366618 -10.37793354192443 4.692598847528177 -10.54041821852935 4.655032869492355 -10.52132573327616 3.316817011957314 8.28696009640405 2.949558494481474 8.240705668572732 2.957463557755681 8.31143063151924 16.56069853453455 3.238318904064413 16.71256449570688 3.182043106992403 16.5222478542219 3.174093280345051 14.96649859022233 -9.098557704937159 14.77792841397065 -9.340442122292201 14.5403783674566 -9.334241340304722 16.97753256443189 3.083914057716583 17.12938258331342 3.027636097162986 16.93908614068197 3.019686755483996 2.372312219509824 -6.160143645757917 1.842523888909761 -6.261200890510088 2.010197727062115 -6.134782165451713 1.189729957394605 -9.184726024294891 0.8309835809387123 -9.155254213398603 1.324136612107796 -9.115977910943537 3.308996198885484 8.215921292460237 2.949642810671755 8.240395628414737 3.316901452868017 8.286649443415252 1.985797509472134 -12.01678366973451 1.884782301468045 -11.91130946186546 2.408964688164641 -11.92198289204256 14.83251544451584 -8.240996096947621 15.0701866687631 -8.242673229859516 14.83482692331507 -8.276136922348439 2.121944780594908 -12.55728524347131 2.187703029390534 -12.43579115089712 2.614634971188297 -12.50776249167922 3.971608883595491 8.165892040130983 3.609428938861981 8.190668385583734 3.979541742940867 8.236609317390048 2.869269205423273 -6.832168742372222 2.825017921672816 -6.827098607389249 3.032185739816667 -6.701957520309583 1.879250671449631 -9.424508502786869 1.66139680828244 -9.484614874094675 1.794288992707469 -9.414068284419628 1.709624855619829 -11.78135322142818 2.134246416472771 -11.69066613969296 2.200682386268879 -11.72825951914409 8.059933387038802 7.361380735710531 7.815088261159154 7.328703211547769 7.833180823061438 7.398263054670808 1.861071224581285 -12.12614345670638 2.354492329090669 -12.08134989583227 2.385238608147247 -12.13726351175387 16.42051106116374 -7.022789241080307 16.64725711412552 -6.962930322031732 16.60630317097705 -7.14220994153427 2.738133534395794 -12.38043226462098 2.310673250895076 -12.31042854559361 2.750462775923929 -12.32029808043496 3.978612217185231 8.240070602782543 3.60850080853052 8.194122714515283 3.616436110895134 8.264844445876936 3.962904818935796 -7.292312993777429 3.76042015277968 -7.422111002188075 3.733155102936037 -7.250534211171334 2.213533841257794 -8.35294398979698 2.12842144698438 -8.343293319300081 2.208810937015485 -8.301976324477195 2.545346670331956 -10.24091808674377 2.322570049726805 -10.19125554829339 2.538430238934704 -10.12685150326239 6.103085514188759 -8.910222896259375 6.029731124295621 -8.881678893032651 6.129663986048146 -8.859309869417674 8.041798655680426 7.291989983945062 7.815044544248284 7.328864562562806 8.059889623759394 7.361542301729187 9.132084732071418 -9.510007126989109 9.08088999905916 -9.464296984695222 9.185110438468982 -9.463971576272957 13.20224478425976 -10.36343232802376 13.3398771322845 -10.51803003989664 13.17843005962019 -10.39320381009214 11.43645710193289 -9.737400761577282 11.41461912072993 -9.678962200227657 11.50668825496226 -9.702385262888926 1.913463414545358 -13.7492248509189 2.26246784942114 -13.66915782100476 2.352917667962758 -13.76595309271632 7.994241014777865 7.299007569651417 7.763322305743026 7.336586921587116 8.012341495641103 7.368561727803613 -2.708505363225937 -7.581342807761608 -2.752716735287881 -7.586624351503083 -2.690305482984234 -7.409024351745314 -2.408038090459215 -8.330172446087151 -2.402712097948566 -8.279241586279305 -2.357857689482753 -8.27351093410228 2.427733195625073 -8.455374829297051 2.347736176994048 -8.497160574895521 2.382893340703943 -8.449574973281287 -1.540654535043063 -10.25350487592474 -1.524502340440594 -10.14001771049218 -1.439682122421367 -10.12888782919359 6.238839170943551 -9.153274357170988 6.298833285700818 -9.112877702812414 6.338533754401055 -9.130256761262144 -7.349453083953662 7.472791483684338 -7.366122874349985 7.542563229943737 -7.138123085184278 7.57659911827452 9.082276873057205 -9.578298123958279 9.157511467552011 -9.550447235340323 9.18649728474279 -9.577967266196051 -15.84106025971079 -7.802581354588299 -16.02577925248045 -7.905519240484162 -16.08720237835226 -7.729472326927488 11.61928007962442 -9.563403606333257 11.52701752301233 -9.540456369846153 11.60485452531269 -9.529500667208096 7.477425664162507 -12.21359236987914 7.357611013346843 -12.13910516746961 7.514430752388228 -12.1561721246241 8.012955099589016 7.36622824461213 7.763935256677664 7.334256585784075 7.782028681595612 7.403804813469619 -4.472627024158272 -7.140105044838997 -4.616561152049331 -7.009602977725914 -4.397930765304884 -6.965464273665069 -1.907041218627021 -9.652654549627787 -1.90040429998779 -9.581964242946295 -1.862323480858624 -9.646297176069183 -2.018224417106208 -8.444456047060598 -2.103325621452177 -8.454168264145315 -2.053887850389722 -8.397104188734629 1.990083414864688 -9.647830565521002 1.945365855454683 -9.641473191466572 1.983446591116788 -9.577140253326217 -2.441442317070226 -9.962434291685895 -2.335028471376848 -9.840651469745062 -2.216347901821768 -9.918014774313466 5.619407371413129 -9.769189997372809 5.580372030501779 -9.750902291957752 5.645238539763041 -9.701195762185026 -7.120154071111422 7.505763881131445 -7.348152995148785 7.471740560249816 -7.136818631874857 7.575542696086022 8.571682981362905 -9.941388359690892 8.543741861368087 -9.913207592295294 8.627578642942691 -9.885342329960086 -17.30873164025513 -5.807842919854194 -17.30042791571163 -5.84240661150004 -17.52869218706355 -5.739481514788718 10.44002827943813 -10.22387272263708 10.42852130822453 -10.18928591467931 10.51999094326319 -10.18967947586913 13.00007191924083 -9.728127183555126 13.01129475757121 -9.664357513014636 13.07625308512217 -9.711458331365444 6.75421226631954 -12.88691426647534 6.598425021674292 -12.86475524284705 6.774513419890265 -12.74136749502083 -8.706701726069261 7.061200937314908 -8.926615639431279 7.0212023372878 -8.726810540056269 7.130405775807971 -7.592880588982362 -7.886585728392562 -7.633057415635026 -7.902042458245666 -7.717839839828695 -7.744500298881613 -5.539662779684833 -9.783784531621299 -5.565493975714329 -9.715790278759508 -5.500627515195189 -9.765496821452649 -6.546767267113827 -8.86477506768734 -6.506817002793847 -8.84775404024936 -6.521452258115116 -8.916084992530603 -4.307539566629169 -10.46302344215784 -4.236882415719203 -10.43054065850127 -4.197033327748333 -10.54754831571461 -4.183166013910026 8.095177530899505 -4.193202844330219 8.165736723659775 -3.87818205344835 8.193143526319274 -17.99768512551199 -4.44821867621306 -18.20772947711836 -4.362708196412636 -18.25068134367565 -4.115679117601889 10.39364211255814 -11.12909175208168 10.404918891182 -11.09446224364395 10.48511055506974 -11.1296301725986 13.75946256675644 -9.10711749848984 13.69168837461222 -9.062539591759453 13.76093359521591 -9.071388525216449 3.314176340585103 -13.55179243198169 3.367676503565271 -13.41155116498354 3.393401801089565 -13.52547294854093 -8.930111430721901 7.023576888020984 -8.950242232747243 7.092782337603858 -8.730319162413187 7.132794853398441 -1.887520876410273 -6.965628159730111 -2.328824417541305 -6.847337843858353 -2.009431466254339 -6.823957987372525 -8.497255295655442 -9.965506187960209 -8.553150880097793 -9.909460134073417 -8.469314236614467 -9.937325408418628 -5.874101238397566 -9.083629668760038 -5.861678596705763 -9.015028149574606 -5.800960042567156 -9.054749242212123 -1.069468892170816 -10.43148323287195 -1.12784662685244 -10.31939180273221 -0.7560415793383726 -10.39445817435967 -3.869230301757583 8.124053248754537 -4.184252351615299 8.096637706176612 -3.87927179928428 8.194610267316962 -8.283416306050794 -12.0090750480539 -8.267032979264023 -12.04181760167526 -8.745552588827549 -11.94967989073469 5.581058484167266 -13.48312572992086 5.515989391869519 -13.43217272378933 5.554950723307702 -13.41377833247973 10.7540593980047 -11.85583002706053 10.68854426789727 -11.83609738632692 10.74742395131375 -11.78678634013501 -6.455515058226985 -12.82829110315036 -6.40736757203113 -12.71896075360123 -6.243447410381162 -12.84104224457879 -3.730550544774442 8.184213897068409 -4.050089217144411 8.162100559980363 -3.738611724340771 8.254924337111099 -6.789357545558712 -10.89796702217291 -6.813753411785932 -10.92745619740967 -7.192776391768387 -10.71412771831276 -10.45039944883282 -10.22156671107636 -10.35892983701128 -10.2211731503276 -10.3704368965475 -10.25575991952401 -9.31243785406706 -9.479580890652926 -9.283118771410861 -9.45228023310394 -9.259975742136748 -9.526014246534382 -2.922748154376651 -12.02158136272815 -2.889989145479664 -11.96637960618612 -2.559457503250584 -12.11909158407499 -16.66245416592098 3.122852859843346 -16.70092479697012 3.187077533745165 -16.54905902340839 3.243354827939089 -7.816380735472926 -11.71470824484129 -8.280273560523812 -11.66449702498086 -8.306038928107515 -11.53401638521053 -5.501207800824206 -13.50172963510977 -5.475100091914485 -13.43238222556532 -5.436138655390553 -13.45077662008532 12.24605122471798 -10.94799925093522 12.21924215364737 -10.97686048198976 12.20418030919195 -10.9086410758723 -7.120645559002742 -13.16877513383195 -7.191200289378312 -13.13009160936637 -6.979967747121975 -13.149619879602 -4.046915306220754 8.157532044061622 -4.054962696160851 8.228241312738671 -3.735428159960213 8.25033577252891 -6.003717679093289 -10.49976845512194 -5.610095722923115 -10.69605544639521 -6.122001358535752 -10.59345887466921 -10.41541767711593 -11.16350779648839 -10.33522592600749 -11.12833991688703 -10.32394925781765 -11.16296937672707 -11.27447212688236 -9.76393293959965 -11.26074218892122 -9.729851739696969 -11.20381765168273 -9.798417488865258 -8.944366430493115 -9.607239634683738 -8.968917873877935 -9.533788053713632 -8.89348850031559 -9.561311101334495 -2.129279084614208 -11.97511880962241 -2.463535233103457 -11.82750889987764 -2.027241597610338 -11.87025468706373 -16.66146154028098 3.122677811701418 -16.54806239403512 3.24317744817157 -16.50961297116488 3.178951358590919 -7.166230498382989 -11.61830630362956 -7.169787853271556 -11.65337994249353 -7.66688026064009 -11.48571992597951 -11.07860540252045 -11.64028442056426 -11.10796073898341 -11.6129993474125 -11.01248111088695 -11.62185212441992 -11.30391686197207 -11.55531934197853 -11.26505197444156 -11.51409731109688 -11.20858812876708 -11.56512696321413 -6.459410281560207 -13.50393031460893 -6.319730071361994 -13.48069229262466 -6.039372967742235 -13.60329889884792 -17.10284554313597 2.959046935256939 -16.98944398312366 3.079550740424591 -16.95099789614945 3.015323313437506 -12.78181866068961 -9.811849976624592 -12.78619287012304 -9.77626833855374 -12.70530928752901 -9.827560921884508 -11.59334749276988 -9.603998235513227 -11.51555518208066 -9.615148469281399 -11.53811771297429 -9.673416449426592 -2.807864160330112 -12.37859176931993 -2.81964309402998 -12.31838935422885 -2.372494295509015 -12.42681527498888 -17.1030221698742 2.959066855560852 -17.14147186864163 3.02329284292782 -16.98962142196237 3.079571133669681 -13.5651865570709 -9.324125563345955 -13.49605717866754 -9.31473296910154 -13.48795982698588 -9.378794899876009 -3.003948839719733 -12.73790184325345 -3.056274745672789 -12.68840325281481 -2.620380130903866 -12.72680484274118 -3.061828660353814 -12.44218577334851 -2.678221898967927 -12.43193504188406 -2.616303497280888 -12.55467185804887</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"324\" source=\"#ID224\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID220\">\r\n                    <input semantic=\"POSITION\" source=\"#ID218\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID219\"/>\r\n                </vertices>\r\n                <triangles count=\"108\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID220\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID221\"/>\r\n                    <p>0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 10 9 11 10 12 11 1 12 6 13 16 14 18 15 12 16 8 17 8 18 2 19 20 20 22 21 11 22 10 23 18 24 10 25 12 26 6 27 24 28 16 29 26 30 18 31 8 32 8 33 20 34 28 35 30 36 31 37 32 38 36 39 11 40 22 41 31 42 38 43 39 44 16 45 24 46 42 47 38 48 44 49 45 50 8 51 28 52 26 53 20 54 48 55 28 56 50 57 30 58 32 59 31 60 39 61 32 62 52 63 36 64 22 65 38 66 45 67 39 68 42 69 24 70 54 71 45 72 44 73 56 74 26 75 28 76 58 77 28 78 48 79 60 80 50 81 32 82 62 83 64 84 30 85 50 86 32 87 39 88 66 89 68 90 36 91 52 92 39 93 45 94 70 95 42 96 54 97 72 98 45 99 56 100 74 101 44 102 76 103 56 104 28 105 78 106 58 107 48 108 80 109 60 110 50 111 62 112 82 113 62 114 32 115 66 116 64 117 50 118 84 119 39 120 70 121 66 122 68 123 52 124 86 125 45 126 74 127 70 128 72 129 54 130 88 131 74 132 56 133 90 134 56 135 76 136 92 137 58 138 78 139 94 140 80 141 96 142 60 143 62 144 98 145 82 146 84 147 50 148 82 149 62 150 66 151 98 152 64 153 84 154 100 155 66 156 70 157 98 158 102 159 68 160 86 161 70 162 74 163 98 164 104 165 72 166 88 167 74 168 90 169 98 170 56 171 92 172 90 173 92 174 76 175 106 176 78 177 96 178 94 179 80 180 108 181 96 182 82 183 98 184 110 185 82 186 110 187 84 188 84 189 112 190 100 191 102 192 86 193 114 194 104 195 88 196 116 197 90 198 118 199 98 200 90 201 92 202 118 203 92 204 106 205 120 206 96 207 122 208 94 209 108 210 124 211 96 212 110 213 98 214 126 215 84 216 110 217 112 218 100 219 112 220 128 221 130 222 102 223 114 224 132 225 104 226 116 227 98 228 118 229 134 230 118 231 92 232 120 233 120 234 106 235 136 236 96 237 124 238 122 239 108 240 138 241 124 242 98 243 140 244 126 245 110 246 126 247 112 248 112 249 142 250 128 251 130 252 114 253 144 254 132 255 116 256 146 257 98 258 134 259 148 260 134 261 118 262 120 263 150 264 120 265 136 266 124 267 152 268 122 269 124 270 138 271 146 272 98 273 148 274 140 275 126 276 140 277 142 278 112 279 126 280 142 281 128 282 142 283 154 284 130 285 144 286 156 287 138 288 132 289 146 290 148 291 134 292 150 293 134 294 120 295 150 296 150 297 136 298 158 299 156 300 152 301 124 302 140 303 148 304 160 305 140 306 160 307 142 308 142 309 160 310 154 311 156 312 144 313 152 314 148 315 150 316 160 317 160 318 150 319 158 320 160 321 158 322 154 323</p>\r\n                </triangles>\r\n                <triangles count=\"108\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID220\"/>\r\n                    <p>3 4 5 4 7 5 3 5 9 13 14 15 17 7 4 9 13 19 21 3 9 15 14 23 13 15 19 17 25 7 9 19 27 29 21 9 33 34 35 23 14 37 40 41 34 43 25 17 46 47 41 27 29 9 29 49 21 33 35 51 33 40 34 23 37 53 40 46 41 55 25 43 57 47 46 59 29 27 61 49 29 63 33 51 51 35 65 67 40 33 53 37 69 71 46 40 73 55 43 75 57 46 57 77 47 59 79 29 61 81 49 83 63 51 67 33 63 85 51 65 67 71 40 87 53 69 71 75 46 89 55 73 91 57 75 93 77 57 95 79 59 61 97 81 83 99 63 83 51 85 99 67 63 101 85 65 99 71 67 87 69 103 99 75 71 89 73 105 99 91 75 91 93 57 107 77 93 95 97 79 97 109 81 111 99 83 85 111 83 101 113 85 115 87 103 117 89 105 99 119 91 119 93 91 121 107 93 95 123 97 97 125 109 127 99 111 113 111 85 129 113 101 115 103 131 117 105 133 135 119 99 121 93 119 137 107 121 123 125 97 125 139 109 127 141 99 113 127 111 129 143 113 145 115 131 147 117 133 149 135 99 121 119 135 137 121 151 123 153 125 147 139 125 141 149 99 143 141 127 143 127 113 155 143 129 157 145 131 147 133 139 151 135 149 151 121 135 159 137 151 125 153 157 161 149 141 143 161 141 155 161 143 153 145 157 161 151 149 159 151 161 155 159 161</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID227\">\r\n            <mesh>\r\n                <source id=\"ID228\">\r\n                    <float_array count=\"2448\" id=\"ID232\">-0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1615252941846848 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.030722618103027 -0.1571999192237854 0.1615252941846848 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1615252941846848 -2.030722618103027 -0.1571999192237854 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1615252941846848 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.04564905166626 -0.1687948554754257 -0.1706530898809433 -2.038688659667969 -0.1488334983587265 -0.1706530898809433 -2.038688659667969 -0.1488334983587265 -0.1801174134016037 -2.008158206939697 -0.1905468553304672 -0.1801174134016037 -2.008158206939697 -0.1905468553304672 -0.1706530898809433 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 0.1615252941846848 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 0.1615252941846848 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 0.1615252941846848 -2.038688659667969 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 0.1615252941846848 -2.038688659667969 -0.1488334983587265 0.1709899455308914 -2.008158206939697 -0.1905468553304672 0.1709899455308914 -2.008158206939697 -0.1905468553304672 0.1709899455308914 -2.04564905166626 -0.1687948554754257 0.1709899455308914 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.2164027541875839 -2.04564905166626 -0.1687948554754257 -0.2164027541875839 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.034487009048462 -0.1905468553304672 -0.2164027541875839 -2.034487009048462 -0.1905468553304672 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.1706530898809433 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.1706530898809433 -1.998634099960327 -0.1363122016191483 0.1615252941846848 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 0.1615252941846848 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.1706530898809433 -2.044009208679199 -0.1363122016191483 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.1706530898809433 -2.044009208679199 -0.1363122016191483 0.1615252941846848 -2.044009208679199 -0.1363122016191483 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 0.1615252941846848 -2.044009208679199 -0.1363122016191483 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.2072749584913254 -2.034487009048462 -0.1905468553304672 0.2072749584913254 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.04564905166626 -0.1687948554754257 0.2072749584913254 -2.04564905166626 -0.1687948554754257 -0.2164027541875839 -2.053104400634766 -0.1409582644701004 -0.2164027541875839 -2.053104400634766 -0.1409582644701004 -0.1801174134016037 -2.053104400634766 -0.1409582644701004 -0.1801174134016037 -2.053104400634766 -0.1409582644701004 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.008158206939697 -0.1905468553304672 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.008158206939697 -0.1905468553304672 -0.1801174134016037 -2.001414299011231 -0.1687948554754257 -0.1801174134016037 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.1706530898809433 -1.996765375137329 -0.1215425506234169 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.1706530898809433 -1.996765375137329 -0.1215425506234169 0.1615252941846848 -1.996765375137329 -0.1215425506234169 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 0.1615252941846848 -1.996765375137329 -0.1215425506234169 0.1709899455308914 -2.001414299011231 -0.1687948554754257 0.1709899455308914 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.1706530898809433 -2.045880794525147 -0.1215425506234169 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.1706530898809433 -2.045880794525147 -0.1215425506234169 0.1615252941846848 -2.045880794525147 -0.1215425506234169 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 0.1615252941846848 -2.045880794525147 -0.1215425506234169 0.1709899455308914 -2.053104400634766 -0.1409582644701004 0.1709899455308914 -2.053104400634766 -0.1409582644701004 0.2072749584913254 -2.008158206939697 -0.1905468553304672 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.008158206939697 -0.1905468553304672 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.053104400634766 -0.1409582644701004 0.2072749584913254 -2.053104400634766 -0.1409582644701004 -0.2258673459291458 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.038688659667969 -0.1488334983587265 -0.2258673459291458 -2.038688659667969 -0.1488334983587265 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -1.998634099960327 -0.1067729070782661 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.1706530898809433 -1.998634099960327 -0.1067729070782661 0.1615252941846848 -1.998634099960327 -0.1067729070782661 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 0.1615252941846848 -1.998634099960327 -0.1067729070782661 -0.1801174134016037 -1.996166825294495 -0.1409582644701004 -0.1801174134016037 -1.996166825294495 -0.1409582644701004 0.1709899455308914 -1.996166825294495 -0.1409582644701004 0.1709899455308914 -1.996166825294495 -0.1409582644701004 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.1706530898809433 -2.044009208679199 -0.1067729070782661 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.1706530898809433 -2.044009208679199 -0.1067729070782661 0.1615252941846848 -2.044009208679199 -0.1067729070782661 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 0.1615252941846848 -2.044009208679199 -0.1067729070782661 -0.1801174134016037 -2.055723428726196 -0.1202674210071564 -0.1801174134016037 -2.055723428726196 -0.1202674210071564 0.1709899455308914 -2.055723428726196 -0.1202674210071564 0.1709899455308914 -2.055723428726196 -0.1202674210071564 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.2167398035526276 -2.038688659667969 -0.1488334983587265 0.2167398035526276 -2.038688659667969 -0.1488334983587265 0.2167398035526276 -2.044009208679199 -0.1363122016191483 0.2167398035526276 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.045880794525147 -0.1215425506234169 -0.2258673459291458 -2.045880794525147 -0.1215425506234169 -0.2164027541875839 -2.055723428726196 -0.1202674210071564 -0.2164027541875839 -2.055723428726196 -0.1202674210071564 -0.2258673459291458 -2.011924266815186 -0.1571999192237854 -0.2258673459291458 -2.011924266815186 -0.1571999192237854 -0.2164027541875839 -2.001414299011231 -0.1687948554754257 -0.2164027541875839 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.003956317901611 -0.09425179660320282 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -2.003956317901611 -0.09425179660320282 0.1615252941846848 -2.003956317901611 -0.09425179660320282 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 0.1615252941846848 -2.003956317901611 -0.09425179660320282 -0.1801174134016037 -1.993547916412354 -0.1202674210071564 -0.1801174134016037 -1.993547916412354 -0.1202674210071564 0.1709899455308914 -1.993547916412354 -0.1202674210071564 0.1709899455308914 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -2.001414299011231 -0.1687948554754257 0.2072749584913254 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 0.1615252941846848 -2.038688659667969 -0.09425181150436401 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 0.1615252941846848 -2.038688659667969 -0.09425181150436401 -0.1801174134016037 -2.054501533508301 -0.0963137224316597 -0.1801174134016037 -2.054501533508301 -0.0963137224316597 0.1709899455308914 -2.054501533508301 -0.0963137224316597 0.1709899455308914 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.055723428726196 -0.1202674210071564 0.2072749584913254 -2.055723428726196 -0.1202674210071564 0.2167398035526276 -2.011924266815186 -0.1571999192237854 0.2167398035526276 -2.011924266815186 -0.1571999192237854 0.2167398035526276 -2.045880794525147 -0.1215425506234169 0.2167398035526276 -2.045880794525147 -0.1215425506234169 -0.6118695139884949 -2.033908367156982 -0.1215425282716751 -0.6118695139884949 -2.033908367156982 -0.1215425282716751 -0.6130750775337219 -2.032478094100952 -0.1363121122121811 -0.6130750775337219 -2.032478094100952 -0.1363121122121811 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.6165025234222412 -2.028409481048584 -0.1488334983587265 -0.6165025234222412 -2.028409481048584 -0.1488334983587265 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.6216357350349426 -2.022314310073853 -0.1571999192237854 -0.6216357350349426 -2.022314310073853 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.6276903748512268 -2.015124082565308 -0.1601379364728928 -0.6276903748512268 -2.015124082565308 -0.1601379364728928 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.1801174134016037 -1.996166825294495 -0.09957704693078995 -0.1801174134016037 -1.996166825294495 -0.09957704693078995 0.1709899455308914 -1.996166825294495 -0.09957704693078995 0.1709899455308914 -1.996166825294495 -0.09957704693078995 -0.2164027541875839 -1.996166825294495 -0.1409582644701004 -0.2164027541875839 -1.996166825294495 -0.1409582644701004 0.2072749584913254 -1.996166825294495 -0.1409582644701004 0.2072749584913254 -1.996166825294495 -0.1409582644701004 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 0.1615252941846848 -2.030722618103027 -0.08588515222072601 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 0.1615252941846848 -2.030722618103027 -0.08588515222072601 -0.1801174134016037 -2.050714015960693 -0.06386412680149078 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.1801174134016037 -2.050714015960693 -0.06386412680149078 0.1709899455308914 -2.050714015960693 -0.06386412680149078 0.1615252941846848 -2.038688659667969 -0.09425181150436401 0.1615252941846848 -2.038688659667969 -0.09425181150436401 0.1709899455308914 -2.050714015960693 -0.06386412680149078 -0.2164027541875839 -2.054501533508301 -0.0963137224316597 -0.2164027541875839 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.054501533508301 -0.0963137224316597 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.6185629963874817 -2.015124082565308 -0.1601379364728928 0.6185629963874817 -2.015124082565308 -0.1601379364728928 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.6125085949897766 -2.022314310073853 -0.1571999192237854 0.6125085949897766 -2.022314310073853 -0.1571999192237854 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.607374906539917 -2.028409481048584 -0.1488334983587265 0.607374906539917 -2.028409481048584 -0.1488334983587265 0.603947639465332 -2.032478094100952 -0.1363121122121811 0.603947639465332 -2.032478094100952 -0.1363121122121811 0.6027420163154602 -2.033908367156982 -0.1215425282716751 0.6027420163154602 -2.033908367156982 -0.1215425282716751 -0.6130750775337219 -2.032478094100952 -0.106772854924202 -0.6130750775337219 -2.032478094100952 -0.106772854924202 -0.2258673459291458 -2.044009208679199 -0.1067729070782661 -0.2258673459291458 -2.044009208679199 -0.1067729070782661 -0.6337444186210632 -2.007936954498291 -0.1571999192237854 -0.6337444186210632 -2.007936954498291 -0.1571999192237854 -0.2258673459291458 -2.003956317901611 -0.1488334983587265 -0.2258673459291458 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1801174134016037 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -1.999191641807556 -0.06404808163642883 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1709899455308914 -1.999191641807556 -0.06404808163642883 0.1709899455308914 -1.999191641807556 -0.06404808163642883 -0.2164027541875839 -1.993547916412354 -0.1202674210071564 -0.2164027541875839 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -1.993547916412354 -0.1202674210071564 0.2167398035526276 -2.003956317901611 -0.1488334983587265 0.2167398035526276 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.1615252941846848 -2.030722618103027 -0.08588515222072601 0.1615252941846848 -2.030722618103027 -0.08588515222072601 0.1709899455308914 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.050714015960693 -0.06386412680149078 -0.2164027541875839 -2.050714015960693 -0.06386412680149078 0.2072749584913254 -2.050714015960693 -0.06386412680149078 0.2072749584913254 -2.050714015960693 -0.06386412680149078 0.2167398035526276 -2.044009208679199 -0.1067729070782661 0.2167398035526276 -2.044009208679199 -0.1067729070782661 0.6246169209480286 -2.007936954498291 -0.1571999192237854 0.6246169209480286 -2.007936954498291 -0.1571999192237854 0.603947639465332 -2.032478094100952 -0.106772854924202 0.603947639465332 -2.032478094100952 -0.106772854924202 -0.6553853750228882 -2.078316926956177 -0.106772854924202 -0.6553853750228882 -2.078316926956177 -0.106772854924202 -0.6546038389205933 -2.079557180404663 -0.1215425282716751 -0.6546038389205933 -2.079557180404663 -0.1215425282716751 -0.6553853750228882 -2.078316926956177 -0.1363121122121811 -0.6553853750228882 -2.078316926956177 -0.1363121122121811 -0.657609224319458 -2.074785947799683 -0.1488334983587265 -0.657609224319458 -2.074785947799683 -0.1488334983587265 -0.6609358191490173 -2.069501638412476 -0.1571999192237854 -0.6609358191490173 -2.069501638412476 -0.1571999192237854 -0.6648588180541992 -2.063269138336182 -0.1601379364728928 -0.6648588180541992 -2.063269138336182 -0.1601379364728928 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -1.996166825294495 -0.09957704693078995 -0.2164027541875839 -1.996166825294495 -0.09957704693078995 0.2072749584913254 -1.996166825294495 -0.09957704693078995 0.2072749584913254 -1.996166825294495 -0.09957704693078995 -0.2258673459291458 -1.998634099960327 -0.1363122016191483 -0.2258673459291458 -1.998634099960327 -0.1363122016191483 0.2167398035526276 -1.998634099960327 -0.1363122016191483 0.2167398035526276 -1.998634099960327 -0.1363122016191483 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 -0.2258673459291458 -2.038688659667969 -0.09425181150436401 -0.2258673459291458 -2.038688659667969 -0.09425181150436401 0.2167398035526276 -2.038688659667969 -0.09425181150436401 0.2167398035526276 -2.038688659667969 -0.09425181150436401 0.6557315587997437 -2.063269138336182 -0.1601379364728928 0.6557315587997437 -2.063269138336182 -0.1601379364728928 0.6518086194992065 -2.069501638412476 -0.1571999192237854 0.6518086194992065 -2.069501638412476 -0.1571999192237854 0.6484818458557129 -2.074785947799683 -0.1488334983587265 0.6484818458557129 -2.074785947799683 -0.1488334983587265 0.6462578773498535 -2.078316926956177 -0.1363121122121811 0.6462578773498535 -2.078316926956177 -0.1363121122121811 0.6454765200614929 -2.079557180404663 -0.1215425282716751 0.6454765200614929 -2.079557180404663 -0.1215425282716751 0.6462578773498535 -2.078316926956177 -0.106772854924202 0.6462578773498535 -2.078316926956177 -0.106772854924202 -0.657609224319458 -2.074785947799683 -0.09425179660320282 -0.657609224319458 -2.074785947799683 -0.09425179660320282 -0.6165025234222412 -2.028409481048584 -0.09425179660320282 -0.6165025234222412 -2.028409481048584 -0.09425179660320282 -0.6687852740287781 -2.057035684585571 -0.1571999192237854 -0.6687852740287781 -2.057035684585571 -0.1571999192237854 -0.6388782262802124 -2.00184178352356 -0.1488334387540817 -0.6388782262802124 -2.00184178352356 -0.1488334387540817 -0.2164027541875839 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.2164027541875839 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.006489753723145 -0.04094164818525314 -0.2164027541875839 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.2072749584913254 -2.006489753723145 -0.04094164818525314 0.2072749584913254 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -1.999191641807556 -0.06404808163642883 0.2072749584913254 -1.999191641807556 -0.06404808163642883 -0.2258673459291458 -1.996765375137329 -0.1215425506234169 -0.2258673459291458 -1.996765375137329 -0.1215425506234169 0.2167398035526276 -1.996765375137329 -0.1215425506234169 0.2167398035526276 -1.996765375137329 -0.1215425506234169 0.6297513246536255 -2.00184178352356 -0.1488334387540817 0.6297513246536255 -2.00184178352356 -0.1488334387540817 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.607374906539917 -2.028409481048584 -0.09425179660320282 0.607374906539917 -2.028409481048584 -0.09425179660320282 0.6596575975418091 -2.057035684585571 -0.1571999192237854 0.6596575975418091 -2.057035684585571 -0.1571999192237854 0.6484818458557129 -2.074785947799683 -0.09425179660320282 0.6484818458557129 -2.074785947799683 -0.09425179660320282 -0.7177013754844666 -2.096775054931641 -0.09390366077423096 -0.7177013754844666 -2.096775054931641 -0.09390366077423096 -0.7165237665176392 -2.098670482635498 -0.1065675467252731 -0.7165237665176392 -2.098670482635498 -0.1065675467252731 -0.7165124416351318 -2.100502252578735 -0.1215060725808144 -0.7165124416351318 -2.100502252578735 -0.1215060725808144 -0.7165237665176392 -2.098670482635498 -0.1364448219537735 -0.7165237665176392 -2.098670482635498 -0.1364448219537735 -0.7177013754844666 -2.096775054931641 -0.1491094380617142 -0.7177013754844666 -2.096775054931641 -0.1491094380617142 -0.7177552580833435 -2.088963031768799 -0.1575712114572525 -0.7177552580833435 -2.088963031768799 -0.1575712114572525 -0.7180059552192688 -2.080292224884033 -0.160543292760849 -0.7180059552192688 -2.080292224884033 -0.160543292760849 -0.2258673459291458 -1.998634099960327 -0.1067729070782661 -0.2258673459291458 -1.998634099960327 -0.1067729070782661 0.2167398035526276 -1.998634099960327 -0.1067729070782661 0.2167398035526276 -1.998634099960327 -0.1067729070782661 -0.6423077583312988 -1.997771978378296 -0.1363121122121811 -0.6423077583312988 -1.997771978378296 -0.1363121122121811 0.6331802010536194 -1.997771978378296 -0.1363121122121811 0.6331802010536194 -1.997771978378296 -0.1363121122121811 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.2072749584913254 -2.025967359542847 -0.03255007416009903 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.6216357350349426 -2.022314310073853 -0.08588512986898422 -0.6216357350349426 -2.022314310073853 -0.08588512986898422 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.6125085949897766 -2.022314310073853 -0.08588512986898422 0.6125085949897766 -2.022314310073853 -0.08588512986898422 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.708878755569458 -2.080292224884033 -0.160543292760849 0.708878755569458 -2.080292224884033 -0.160543292760849 0.7086280584335327 -2.088963031768799 -0.1575712114572525 0.7086280584335327 -2.088963031768799 -0.1575712114572525 0.7085741758346558 -2.096775054931641 -0.1491094380617142 0.7085741758346558 -2.096775054931641 -0.1491094380617142 0.707396388053894 -2.098670482635498 -0.1364448219537735 0.707396388053894 -2.098670482635498 -0.1364448219537735 0.7073850035667419 -2.100502252578735 -0.1215060725808144 0.7073850035667419 -2.100502252578735 -0.1215060725808144 0.707396388053894 -2.098670482635498 -0.1065675467252731 0.707396388053894 -2.098670482635498 -0.1065675467252731 0.7085741758346558 -2.096775054931641 -0.09390366077423096 0.7085741758346558 -2.096775054931641 -0.09390366077423096 -0.7177552580833435 -2.088963031768799 -0.08544092625379562 -0.7177552580833435 -2.088963031768799 -0.08544092625379562 -0.6609358191490173 -2.069501638412476 -0.08588512986898422 -0.6609358191490173 -2.069501638412476 -0.08588512986898422 -0.7180686593055725 -2.071079969406128 -0.1575712114572525 -0.7180686593055725 -2.071079969406128 -0.1575712114572525 -0.6721116900444031 -2.051751613616943 -0.1488334387540817 -0.6721116900444031 -2.051751613616943 -0.1488334387540817 -0.2258673459291458 -2.003956317901611 -0.09425179660320282 -0.2258673459291458 -2.003956317901611 -0.09425179660320282 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.003956317901611 -0.09425179660320282 0.2167398035526276 -2.003956317901611 -0.09425179660320282 -0.6435112357139587 -1.996342778205872 -0.1215425282716751 -0.6435112357139587 -1.996342778205872 -0.1215425282716751 0.6343837380409241 -1.996342778205872 -0.1215425282716751 0.6343837380409241 -1.996342778205872 -0.1215425282716751 0.6629846692085266 -2.051751613616943 -0.1488334387540817 0.6629846692085266 -2.051751613616943 -0.1488334387540817 -0.6276903748512268 -2.015124082565308 -0.08294735848903656 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.6276903748512268 -2.015124082565308 -0.08294735848903656 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.6185629963874817 -2.015124082565308 -0.08294735848903656 0.6185629963874817 -2.015124082565308 -0.08294735848903656 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.6518086194992065 -2.069501638412476 -0.08588512986898422 0.6518086194992065 -2.069501638412476 -0.08588512986898422 0.7089411616325378 -2.071079969406128 -0.1575712114572525 0.7089411616325378 -2.071079969406128 -0.1575712114572525 0.7086280584335327 -2.088963031768799 -0.08544092625379562 0.7086280584335327 -2.088963031768799 -0.08544092625379562 -0.7801192998886108 -2.044661283493042 -0.08544092625379562 -0.7801192998886108 -2.044661283493042 -0.08544092625379562 -0.7858226895332336 -2.048605442047119 -0.09390366077423096 -0.7858226895332336 -2.048605442047119 -0.09390366077423096 -0.7880875468254089 -2.050557851791382 -0.1065675467252731 -0.7880875468254089 -2.050557851791382 -0.1065675467252731 -0.789569079875946 -2.051625490188599 -0.1215060725808144 -0.789569079875946 -2.051625490188599 -0.1215060725808144 -0.7880875468254089 -2.050557851791382 -0.1364448219537735 -0.7880875468254089 -2.050557851791382 -0.1364448219537735 -0.7858226895332336 -2.048605442047119 -0.1491094380617142 -0.7858226895332336 -2.048605442047119 -0.1491094380617142 -0.7801192998886108 -2.044661283493042 -0.1575712114572525 -0.7801192998886108 -2.044661283493042 -0.1575712114572525 -0.7726680636405945 -2.039297103881836 -0.160543292760849 -0.7726680636405945 -2.039297103881836 -0.160543292760849 -0.6423077583312988 -1.997771978378296 -0.106772854924202 -0.6423077583312988 -1.997771978378296 -0.106772854924202 0.6331802010536194 -1.997771978378296 -0.106772854924202 0.6331802010536194 -1.997771978378296 -0.106772854924202 -0.6743361949920654 -2.048221349716187 -0.1363121122121811 -0.6743361949920654 -2.048221349716187 -0.1363121122121811 0.6652085781097412 -2.048221349716187 -0.1363121122121811 0.6652085781097412 -2.048221349716187 -0.1363121122121811 -0.6337444186210632 -2.007936954498291 -0.08588512986898422 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.6337444186210632 -2.007936954498291 -0.08588512986898422 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.6246169209480286 -2.007936954498291 -0.08588512986898422 0.6246169209480286 -2.007936954498291 -0.08588512986898422 0.2167398035526276 -2.011924266815186 -0.08588515222072601 -0.6648588180541992 -2.063269138336182 -0.08294735848903656 -0.6648588180541992 -2.063269138336182 -0.08294735848903656 0.6557315587997437 -2.063269138336182 -0.08294735848903656 0.6557315587997437 -2.063269138336182 -0.08294735848903656 0.7635407447814941 -2.039297103881836 -0.160543292760849 0.7635407447814941 -2.039297103881836 -0.160543292760849 0.770991861820221 -2.044661283493042 -0.1575712114572525 0.770991861820221 -2.044661283493042 -0.1575712114572525 0.7766953706741333 -2.048605442047119 -0.1491094380617142 0.7766953706741333 -2.048605442047119 -0.1491094380617142 0.7789598703384399 -2.050557851791382 -0.1364448219537735 0.7789598703384399 -2.050557851791382 -0.1364448219537735 0.7804414033889771 -2.051625490188599 -0.1215060725808144 0.7804414033889771 -2.051625490188599 -0.1215060725808144 0.7789598703384399 -2.050557851791382 -0.1065675467252731 0.7789598703384399 -2.050557851791382 -0.1065675467252731 0.7766953706741333 -2.048605442047119 -0.09390366077423096 0.7766953706741333 -2.048605442047119 -0.09390366077423096 0.770991861820221 -2.044661283493042 -0.08544092625379562 0.770991861820221 -2.044661283493042 -0.08544092625379562 -0.7726680636405945 -2.039297103881836 -0.08246933668851852 -0.7726680636405945 -2.039297103881836 -0.08246933668851852 -0.7180059552192688 -2.080292224884033 -0.08246933668851852 -0.7180059552192688 -2.080292224884033 -0.08246933668851852 -0.7639322280883789 -2.032893419265747 -0.1575712114572525 -0.7639322280883789 -2.032893419265747 -0.1575712114572525 -0.7181222438812256 -2.063268184661865 -0.1491094380617142 -0.7181222438812256 -2.063268184661865 -0.1491094380617142 -0.6388782262802124 -2.00184178352356 -0.09425176680088043 -0.6388782262802124 -2.00184178352356 -0.09425176680088043 0.6297513246536255 -2.00184178352356 -0.09425176680088043 0.6297513246536255 -2.00184178352356 -0.09425176680088043 -0.6748786568641663 -2.047461271286011 -0.1215425282716751 -0.6748786568641663 -2.047461271286011 -0.1215425282716751 0.6657513976097107 -2.047461271286011 -0.1215425282716751 0.6657513976097107 -2.047461271286011 -0.1215425282716751 0.70899498462677 -2.063268184661865 -0.1491094380617142 0.70899498462677 -2.063268184661865 -0.1491094380617142 -0.6687852740287781 -2.057035684585571 -0.08588512986898422 -0.6687852740287781 -2.057035684585571 -0.08588512986898422 0.6596575975418091 -2.057035684585571 -0.08588512986898422 0.6596575975418091 -2.057035684585571 -0.08588512986898422 0.708878755569458 -2.080292224884033 -0.08246933668851852 0.708878755569458 -2.080292224884033 -0.08246933668851852 0.7548051476478577 -2.032893419265747 -0.1575712114572525 0.7548051476478577 -2.032893419265747 -0.1575712114572525 0.7635407447814941 -2.039297103881836 -0.08246933668851852 0.7635407447814941 -2.039297103881836 -0.08246933668851852 -0.7931804656982422 -1.947999954223633 -0.1005254313349724 -0.7931804656982422 -1.947999954223633 -0.1005254313349724 -0.799446702003479 -1.950582027435303 -0.1023855954408646 -0.799446702003479 -1.950582027435303 -0.1023855954408646 -0.8047597408294678 -1.952769994735718 -0.1076830625534058 -0.8047597408294678 -1.952769994735718 -0.1076830625534058 -0.8083102107048035 -1.954230546951294 -0.1156112402677536 -0.8083102107048035 -1.954230546951294 -0.1156112402677536 -0.8095563650131226 -1.954744100570679 -0.1249629184603691 -0.8095563650131226 -1.954744100570679 -0.1249629184603691 -0.8083102107048035 -1.954230546951294 -0.1343148648738861 -0.8083102107048035 -1.954230546951294 -0.1343148648738861 -0.8047597408294678 -1.952769994735718 -0.1422431319952011 -0.8047597408294678 -1.952769994735718 -0.1422431319952011 -0.799446702003479 -1.950582027435303 -0.1475403010845184 -0.799446702003479 -1.950582027435303 -0.1475403010845184 -0.7931804656982422 -1.947999954223633 -0.1494005620479584 -0.7931804656982422 -1.947999954223633 -0.1494005620479584 -0.6743361949920654 -2.048221349716187 -0.106772854924202 -0.6743361949920654 -2.048221349716187 -0.106772854924202 0.6652085781097412 -2.048221349716187 -0.106772854924202 0.6652085781097412 -2.048221349716187 -0.106772854924202 -0.7181578874588013 -2.058051824569702 -0.1364448219537735 -0.7181578874588013 -2.058051824569702 -0.1364448219537735 0.7090305685997009 -2.058051824569702 -0.1364448219537735 0.7090305685997009 -2.058051824569702 -0.1364448219537735 -0.6721116900444031 -2.051751613616943 -0.09425176680088043 -0.6721116900444031 -2.051751613616943 -0.09425176680088043 0.6629846692085266 -2.051751613616943 -0.09425176680088043 0.6629846692085266 -2.051751613616943 -0.09425176680088043 -0.7180686593055725 -2.071079969406128 -0.08544092625379562 -0.7180686593055725 -2.071079969406128 -0.08544092625379562 0.7089411616325378 -2.071079969406128 -0.08544092625379562 0.7089411616325378 -2.071079969406128 -0.08544092625379562 0.7840532064437866 -1.947999954223633 -0.1494005620479584 0.7840532064437866 -1.947999954223633 -0.1494005620479584 0.7903189063072205 -1.950582027435303 -0.1475403010845184 0.7903189063072205 -1.950582027435303 -0.1475403010845184 0.7956326007843018 -1.952769994735718 -0.1422431319952011 0.7956326007843018 -1.952769994735718 -0.1422431319952011 0.7991833090782166 -1.954230546951294 -0.1343148648738861 0.7991833090782166 -1.954230546951294 -0.1343148648738861 0.8004284501075745 -1.954744100570679 -0.1249629184603691 0.8004284501075745 -1.954744100570679 -0.1249629184603691 0.7991833090782166 -1.954230546951294 -0.1156112402677536 0.7991833090782166 -1.954230546951294 -0.1156112402677536 0.7956326007843018 -1.952769994735718 -0.1076830625534058 0.7956326007843018 -1.952769994735718 -0.1076830625534058 0.7903189063072205 -1.950582027435303 -0.1023855954408646 0.7903189063072205 -1.950582027435303 -0.1023855954408646 0.7840532064437866 -1.947999954223633 -0.1005254313349724 0.7840532064437866 -1.947999954223633 -0.1005254313349724 -0.7869135737419128 -1.945419311523438 -0.1023855954408646 -0.7869135737419128 -1.945419311523438 -0.1023855954408646 -0.7639322280883789 -2.032893419265747 -0.08544092625379562 -0.7639322280883789 -2.032893419265747 -0.08544092625379562 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7591820955276489 -2.029483556747437 -0.1491094380617142 -0.7591820955276489 -2.029483556747437 -0.1491094380617142 -0.7181704640388489 -2.056217908859253 -0.1215060725808144 -0.7181704640388489 -2.056217908859253 -0.1215060725808144 0.7090427279472351 -2.056217908859253 -0.1215060725808144 0.7090427279472351 -2.056217908859253 -0.1215060725808144 0.7500547170639038 -2.029483556747437 -0.1491094380617142 0.7500547170639038 -2.029483556747437 -0.1491094380617142 -0.7181222438812256 -2.063268184661865 -0.093903549015522 -0.7181222438812256 -2.063268184661865 -0.093903549015522 0.70899498462677 -2.063268184661865 -0.093903549015522 0.70899498462677 -2.063268184661865 -0.093903549015522 0.7548051476478577 -2.032893419265747 -0.08544092625379562 0.7548051476478577 -2.032893419265747 -0.08544092625379562 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7777858972549439 -1.945419311523438 -0.1023855954408646 0.7777858972549439 -1.945419311523438 -0.1023855954408646 -0.7966580986976624 -1.939646244049072 -0.1261951923370361 -0.7966580986976624 -1.939646244049072 -0.1261951923370361 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7181578874588013 -2.058051824569702 -0.1065675467252731 -0.7181578874588013 -2.058051824569702 -0.1065675467252731 0.7090305685997009 -2.058051824569702 -0.1065675467252731 0.7090305685997009 -2.058051824569702 -0.1065675467252731 -0.7549589276313782 -2.026442289352417 -0.1364448219537735 -0.7549589276313782 -2.026442289352417 -0.1364448219537735 0.7458319067955017 -2.026442289352417 -0.1364448219537735 0.7458319067955017 -2.026442289352417 -0.1364448219537735 -0.7591820955276489 -2.029483556747437 -0.093903549015522 -0.7591820955276489 -2.029483556747437 -0.093903549015522 0.7500547170639038 -2.029483556747437 -0.093903549015522 0.7500547170639038 -2.029483556747437 -0.093903549015522 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7875306010246277 -1.939646244049072 -0.1261951923370361 0.7875306010246277 -1.939646244049072 -0.1261951923370361 0.7777858972549439 -1.945419311523438 -0.1475403010845184 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.7534772753715515 -2.025376796722412 -0.1215060725808144 -0.7534772753715515 -2.025376796722412 -0.1215060725808144 0.7443500757217407 -2.025376796722412 -0.1215060725808144 0.7443500757217407 -2.025376796722412 -0.1215060725808144 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1422431319952011 -0.7549589276313782 -2.026442289352417 -0.1065675467252731 -0.7549589276313782 -2.026442289352417 -0.1065675467252731 0.7458319067955017 -2.026442289352417 -0.1065675467252731 0.7458319067955017 -2.026442289352417 -0.1065675467252731 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1076830625534058 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"816\" source=\"#ID232\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID229\">\r\n                    <float_array count=\"2448\" id=\"ID233\">0.004488788996345108 0.5271326193254718 -0.8497711765036595 1.291284191913415e-005 0.001617569529035767 -0.9999986916501827 -1.184745062262114e-005 -0.001670929507781155 -0.9999986039261345 1.184745062262114e-005 0.001670929507781155 0.9999986039261345 -1.291284191913415e-005 -0.001617569529035767 0.9999986916501827 -0.004488788996345108 -0.5271326193254718 0.8497711765036595 1 -0 -0 1 -0 -0 1 -0 -0 -1 0 0 -1 0 0 -1 0 0 -0.004488791232266994 0.5271326188299925 -0.8497711767992057 1.184746344884554e-005 -0.001670930314586899 -0.9999986039247862 -1.291285525506731e-005 0.001617570336250907 -0.9999986916488768 1.291285525506731e-005 -0.001617570336250907 0.9999986916488768 -1.184746344884554e-005 0.001670930314586899 0.9999986039247862 0.004488791232266994 -0.5271326188299925 0.8497711767992057 -0.004485367141985272 -0.527177061858388 -0.8497436242373103 0.004485367141985272 0.527177061858388 0.8497436242373103 0.00450622159746319 0.5290845697262511 -0.8485571354036818 -0.00450622159746319 -0.5290845697262511 0.8485571354036818 1 -0 -0 -1 0 0 1 -0 -0 -1 0 0 -0.004506223850392898 0.529084570208921 -0.8485571350907679 0.004506223850392898 -0.529084570208921 0.8485571350907679 0.004485369376187172 -0.5271770613638911 -0.8497436245323006 -0.004485369376187172 0.5271770613638911 0.8497436245323006 0.9507847764805869 -0.2039779657307184 -0.2332408590044168 0.9283498084308596 -0.2517515811088936 -0.273473535457379 0.9686109501656518 -0.01105674204799939 -0.2483356109672492 -0.9686109501656518 0.01105674204799939 0.2483356109672492 -0.9283498084308596 0.2517515811088936 0.273473535457379 -0.9507847764805869 0.2039779657307184 0.2332408590044168 -0.004503646784154841 -0.5291183014219199 -0.8485361160646174 0.004503646784154841 0.5291183014219199 0.8485361160646174 0.969486083937551 -0.003329945691308154 -0.245123733067863 0.9518157133827669 0.1909252690972961 -0.2399883109190519 -0.9518157133827669 -0.1909252690972961 0.2399883109190519 -0.969486083937551 0.003329945691308154 0.245123733067863 0.007114028034887915 0.8353288408671091 -0.5497045735854221 -0.007114028034887915 -0.8353288408671091 0.5497045735854221 1 -0 -0 -1 0 0 -0.007114031583790776 0.8353288406995403 -0.5497045737941306 0.007114031583790776 -0.8353288406995403 0.5497045737941306 1 -0 -0 -1 0 0 0.004503649035743961 -0.5291183019045855 -0.8485361157516932 -0.004503649035743961 0.5291183019045855 0.8485361157516932 -0.9686088766577514 -0.01105706906332083 -0.2483436838003697 -0.9694840650325932 -0.003330049845388831 -0.2451317164626107 -0.9518126386933298 0.190931131146001 -0.2399958415951187 0.9518126386933298 -0.190931131146001 0.2399958415951187 0.9694840650325932 0.003330049845388831 0.2451317164626107 0.9686088766577514 0.01105706906332083 0.2483436838003697 -0.9283454604112509 -0.2517587064041628 -0.2734817359231238 -0.9507815996920912 -0.2039844377888872 -0.2332481486033696 0.9507815996920912 0.2039844377888872 0.2332481486033696 0.9283454604112509 0.2517587064041628 0.2734817359231238 0.4905464884192308 -0.8041624847744235 -0.3356886068680113 -0.4905464884192308 0.8041624847744235 0.3356886068680113 0.4815280316392164 -0.7597623620804733 -0.4369117850454046 -0.4815280316392164 0.7597623620804733 0.4369117850454046 0.519680435363879 0.6575142275990822 -0.5455339454193402 -0.519680435363879 -0.6575142275990822 0.5455339454193402 0.4571189376483561 0.7721023227499775 -0.4414751182652633 -0.4571189376483561 -0.7721023227499775 0.4414751182652633 1 -0 -0 -1 0 0 0.008217380333334407 0.9652946846739656 -0.2610338031762294 -0.008217380333334407 -0.9652946846739656 0.2610338031762294 -0.4571111868059822 0.7721059895862967 -0.4414767306912019 -0.008217384433657467 0.9652946846164316 -0.2610338032599099 0.008217384433657467 -0.9652946846164316 0.2610338032599099 0.4571111868059822 -0.7721059895862967 0.4414767306912019 1 -0 -0 -1 0 0 -0.00712138017653666 -0.8359415949672389 -0.5487722075214908 0.00712138017653666 0.8359415949672389 0.5487722075214908 -0.4815203449022732 -0.7597661310854951 -0.4369137025781796 0.007121383731482815 -0.8359415950919007 -0.5487722072854615 -0.007121383731482815 0.8359415950919007 0.5487722072854615 0.4815203449022732 0.7597661310854951 0.4369137025781796 -0.5196764354100114 0.6575156548129167 -0.5455360356158752 0.5196764354100114 -0.6575156548129167 0.5455360356158752 -0.4905403092732229 -0.8041655748678753 -0.3356902339591523 0.4905403092732229 0.8041655748678753 0.3356902339591523 -2.426986289955367e-017 -0.7364613431137198 -0.6764796302174486 -0.4608133353180124 -0.8211656453082652 -0.3366571742270609 0.4608133353180124 0.8211656453082652 0.3366571742270609 2.426986289955367e-017 0.7364613431137198 0.6764796302174486 -1.844326444024408e-017 -0.5303087739567048 -0.8478045790537678 -0.5361227053423503 -0.6069014056672079 -0.586722360759812 0.5361227053423503 0.6069014056672079 0.586722360759812 1.844326444024408e-017 0.5303087739567048 0.8478045790537678 -1.84392460472661e-017 0.5302604510494343 -0.8478348035159034 -1.84392460472661e-017 0.5302604510494343 -0.8478348035159034 1.84392460472661e-017 -0.5302604510494343 0.8478348035159034 1.84392460472661e-017 -0.5302604510494343 0.8478348035159034 1 -0 -0 -1 0 0 0.1971558893645083 0.9573518568225626 -0.2112036399479925 0.008510868807066028 0.9999637818978656 -2.160247128884518e-006 -0.008510868807066028 -0.9999637818978656 2.160247128884518e-006 -0.1971558893645083 -0.9573518568225626 0.2112036399479925 -0.197150763684683 0.957352793676903 -0.2112041780305861 -0.008510873054234794 0.9999637818617173 -2.160248014874601e-006 0.008510873054234794 -0.9999637818617173 2.160248014874601e-006 0.197150763684683 -0.957352793676903 0.2112041780305861 1 -0 -0 -1 0 0 0.4037720748323315 -0.884629716808151 -0.2332345937581405 -0.00822400988133839 -0.9653911586344171 -0.2606765744979195 0.00822400988133839 0.9653911586344171 0.2606765744979195 -0.4037720748323315 0.884629716808151 0.2332345937581405 -0.4037636373369974 -0.8846333061352755 -0.2332355865655364 0.008224013985609841 -0.9653911586268107 -0.2606765743966046 -0.008224013985609841 0.9653911586268107 0.2606765743966046 0.4037636373369974 0.8846333061352755 0.2332355865655364 0 0.5302604510494342 -0.8478348035159036 0 0.5302604510494342 -0.8478348035159036 -0 -0.5302604510494342 0.8478348035159036 -0 -0.5302604510494342 0.8478348035159036 0 -0.530308773956705 -0.8478045790537678 0 -0.73646134311372 -0.6764796302174486 0.5361196403178399 -0.6069025460851478 -0.5867239818013534 -0.5361196403178399 0.6069025460851478 0.5867239818013534 -0 0.73646134311372 0.6764796302174486 -0 0.530308773956705 0.8478045790537678 0.4608080865995052 -0.8211681029947009 -0.3366583638476655 -0.4608080865995052 0.8211681029947009 0.3366583638476655 -0.385742073903384 -0.904729134348099 -0.1807435915391077 0.385742073903384 0.904729134348099 0.1807435915391077 0.3995130760539953 -0.8964009062419867 -0.1919758249114185 -0.3995130760539953 0.8964009062419867 0.1919758249114185 -1.844326444024408e-017 -0.5303087739567048 -0.8478045790537678 1.844326444024408e-017 0.5303087739567048 0.8478045790537678 -0.5296020992421222 0.6561021605196902 -0.5376351657394927 1.84392460472661e-017 0.5302604510494341 -0.8478348035159036 -1.84392460472661e-017 -0.5302604510494341 0.8478348035159036 0.5296020992421222 -0.6561021605196902 0.5376351657394927 0.3363076841507985 0.9088032483512361 -0.2469287293276507 -0.3363076841507985 -0.9088032483512361 0.2469287293276507 1 -0 -0 -1 0 0 0.1687919888662012 0.9856383382082573 -0.005131349594128028 0.008215461209643943 0.9652926464581436 0.2610414007220816 -0.008215461209643943 -0.9652926464581436 -0.2610414007220816 -0.1687919888662012 -0.9856383382082573 0.005131349594128028 -0.1687866907192891 0.985639246299354 -0.005131197761984126 -0.008215465309037044 0.9652926463999988 0.2610414008080769 0.008215465309037044 -0.9652926463999988 -0.2610414008080769 0.1687866907192891 -0.985639246299354 0.005131197761984126 -0.3362995806041703 0.9088060116563134 -0.2469295957612287 0.3362995806041703 -0.9088060116563134 0.2469295957612287 1 -0 -0 -1 0 0 0.4054173713524426 -0.9140433536476199 -0.01270836961564649 -0.0085183821524327 -0.9999637179227549 1.898996257460486e-006 0.0085183821524327 0.9999637179227549 -1.898996257460486e-006 -0.4054173713524426 0.9140433536476199 0.01270836961564649 -0.4054090877927001 -0.9140470268562219 -0.01270843146859746 0.008518386403168153 -0.9999637178865443 1.898997386052117e-006 -0.008518386403168153 0.9999637178865443 -1.898997386052117e-006 0.4054090877927001 0.9140470268562219 0.01270843146859746 -0.3995054948484711 -0.8964041377589346 -0.1919765126116719 0.3995054948484711 0.8964041377589346 0.1919765126116719 0.5295992578884425 0.6561032421321235 -0.5376366446846116 -1.843957923624534e-017 0.530260451049434 -0.8478348035159036 1.843957923624534e-017 -0.530260451049434 0.8478348035159036 -0.5295992578884425 -0.6561032421321235 0.5376366446846116 0 -0.530308773956705 -0.8478045790537678 -0 0.530308773956705 0.8478045790537678 0.3857360849191797 -0.9047315918850344 -0.1807440716493763 -0.3857360849191797 0.9047315918850344 0.1807440716493763 -0.4309198326745419 -0.8770224328284038 -0.2124611732140556 0.4309198326745419 0.8770224328284038 0.2124611732140556 -0.5327637842338816 -0.7277249795655932 -0.4319480342877498 0.5327637842338816 0.7277249795655932 0.4319480342877498 -0.9518042055811592 -0.190973276116534 -0.2399957542277287 -0.9694840947041866 0.00331998404263018 -0.2451317356475093 0.9694840947041866 -0.00331998404263018 0.2451317356475093 0.9518042055811592 0.190973276116534 0.2399957542277287 -0.9686097296440215 0.01105536758733848 -0.2483404326452789 0.9686097296440215 -0.01105536758733848 0.2483404326452789 1 -0 -0 -1 0 0 0.2033484727129228 0.9512258883415256 0.2319885945347255 0.007110930513536101 0.8353317410655891 0.5497002065085688 -0.007110930513536101 -0.8353317410655891 -0.5497002065085688 -0.2033484727129228 -0.9512258883415256 -0.2319885945347255 -0.2033426129463571 0.9512269403845534 0.2319894171008448 -0.007110934060996255 0.8353317408991332 0.5497002067156275 0.007110934060996255 -0.8353317408991332 -0.5497002067156275 0.2033426129463571 -0.9512269403845534 -0.2319894171008448 0.1614152367059206 0.9743133093652557 -0.1570308777052931 -0.1614152367059206 -0.9743133093652557 0.1570308777052931 -0.1614100521526407 0.9743141614547412 -0.1570309200534283 0.1614100521526407 -0.9743141614547412 0.1570309200534283 1 -0 -0 -1 0 0 0.4682095373053083 -0.861961179723896 0.1944293028978371 -0.008224404365587646 -0.9653911472719587 0.2606766041319447 0.008224404365587646 0.9653911472719587 -0.2606766041319447 -0.4682095373053083 0.861961179723896 -0.1944293028978371 -0.4682019899704703 -0.8619651573705387 0.1944298435602781 0.008224408470051839 -0.9653911472649058 0.2606766040285682 -0.008224408470051839 0.9653911472649058 -0.2606766040285682 0.4682019899704703 0.8619651573705387 -0.1944298435602781 0.3830001893543202 -0.9231847577728879 -0.03226078068443357 -0.3830001893543202 0.9231847577728879 0.03226078068443357 -0.3829925019228482 -0.9231879427444888 -0.03226090268538033 0.3829925019228482 0.9231879427444888 0.03226090268538033 0.969482534593383 0.003320064267726581 -0.2451379046407311 0.9686081273789292 0.011055620241521 -0.2483466706774216 -0.9686081273789292 -0.011055620241521 0.2483466706774216 -0.969482534593383 -0.003320064267726581 0.2451379046407311 0.9518018292501137 -0.1909778067330918 -0.2400015732689168 -0.9518018292501137 0.1909778067330918 0.2400015732689168 0.5327584513434122 -0.7277280272118245 -0.4319494772916799 -0.5327584513434122 0.7277280272118245 0.4319494772916799 0.4309135647672034 -0.8770253533943997 -0.2124618299908239 -0.4309135647672034 0.8770253533943997 0.2124618299908239 -0.4170594428444811 -0.9088731196315648 -0.003327693711584223 0.4170594428444811 0.9088731196315648 0.003327693711584223 -0.389889799865892 -0.920520092443446 -0.02507395797325029 0.389889799865892 0.920520092443446 0.02507395797325029 -0.5808401353985782 0.4821791438864718 -0.6558414521140539 0.5808401353985782 -0.4821791438864718 0.6558414521140539 -0.4351576601727508 0.8653660605412787 -0.2485546057836074 0.4351576601727508 -0.8653660605412787 0.2485546057836074 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381909181881517 -0.8670377328596581 0.4981877931206408 0.007381909181881517 -0.8670377328596581 0.4981877931206408 0.007381909181881517 -0.8670377328596581 0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 0.3983226025615785 0.8257120510117484 0.3994229751811265 0.006168303546718681 0.724165675140333 0.6895984534349694 -0.006168303546718681 -0.724165675140333 -0.6895984534349694 -0.3983226025615785 -0.8257120510117484 -0.3994229751811265 -0.3983149935338047 0.82571494562648 0.3994245792327065 -0.006168306624853458 0.7241656751259054 0.6895984534225869 0.006168306624853458 -0.7241656751259054 -0.6895984534225869 0.3983149935338047 -0.82571494562648 -0.3994245792327065 0.1616139654679756 0.9868432281948369 0.00462267581696379 -0.1616139654679756 -0.9868432281948369 -0.00462267581696379 -0.1616088560296658 0.9868440655201934 0.004622553445772205 0.1616088560296658 -0.9868440655201934 -0.004622553445772205 0.4351517892962836 0.8653687240638655 -0.248555610848599 -0.4351517892962836 -0.8653687240638655 0.248555610848599 1 -0 -0 -1 0 0 -0.00711704432119061 -0.8354119817383284 0.5495781731911931 -0.007114343072514042 -0.8359433818649293 0.5487695768160543 0.007114343072514042 0.8359433818649293 -0.5487695768160543 0.00711704432119061 0.8354119817383284 -0.5495781731911931 0.007117047871469148 -0.8354119815705081 0.5495781734003199 0.007114346624128299 -0.8359433819897826 0.548769576579821 -0.007114346624128299 0.8359433819897826 -0.548769576579821 -0.007117047871469148 0.8354119815705081 -0.5495781734003199 0.4205973650660567 -0.9033844932356513 0.08363201468849163 -0.4205973650660567 0.9033844932356513 -0.08363201468849163 -0.4205896914261071 -0.9033880303471145 0.08363239857646454 0.4205896914261071 0.9033880303471145 -0.08363239857646454 0.3898839349670044 -0.9205225746850979 -0.02507402540007215 -0.3898839349670044 0.9205225746850979 0.02507402540007215 0.5808354696970706 0.4821816265219495 -0.6558437589749793 -0.5808354696970706 -0.4821816265219495 0.6558437589749793 0.4170529949296572 -0.9088760784289615 -0.003327683848527164 -0.4170529949296572 0.9088760784289615 0.003327683848527164 0.375636554559482 -0.9267659594296408 -0.001426646816343268 -0.375636554559482 0.9267659594296408 0.001426646816343268 0.3615379352414891 -0.8963778338843952 -0.2565094546055576 -0.3615379352414891 0.8963778338843952 0.2565094546055576 -0.01317855971440936 -0.5315374133761069 -0.8469322899413455 0.3116445996116282 -0.7750366101410903 -0.5497234727332603 -0.3116445996116282 0.7750366101410903 0.5497234727332603 0.01317855971440936 0.5315374133761069 0.8469322899413455 -0.0009604106469768857 -0.003481589405118227 -0.9999934780520339 0.1909697935805264 -0.4542111818604366 -0.8701854631127529 -0.1909697935805264 0.4542111818604366 0.8701854631127529 0.0009604106469768857 0.003481589405118227 0.9999934780520339 -0.0164933863787913 0.09664605067485214 -0.9951821487017912 0.0164933863787913 -0.09664605067485214 0.9951821487017912 0.006165103925877515 0.7241364373548521 0.6896291841189768 -0.006165103925877515 -0.7241364373548521 -0.6896291841189768 0.1113597444880326 0.3410123073759261 0.9334396678552434 0.1127160108475753 0.2964221010645066 0.9483823273865414 0.06760990946514464 0.8518280438394437 0.5194399713833947 -0.06760990946514464 -0.8518280438394437 -0.5194399713833947 -0.1127160108475753 -0.2964221010645066 -0.9483823273865414 -0.1113597444880326 -0.3410123073759261 -0.9334396678552434 -0.1113597986625791 0.3410123265116291 0.9334396544013737 -0.0676099442996163 0.8518280349382184 0.5194399814464574 -0.1127160663844531 0.2964220991850565 0.9483823213733691 0.1127160663844531 -0.2964220991850565 -0.9483823213733691 0.0676099442996163 -0.8518280349382184 -0.5194399814464574 0.1113597986625791 -0.3410123265116291 -0.9334396544013737 -0.006165107002489781 0.7241364373411164 0.6896291841058957 0.006165107002489781 -0.7241364373411164 -0.6896291841058957 0.2520097343969997 0.9561807716861601 0.1490282712333903 -0.2520097343969997 -0.9561807716861601 -0.1490282712333903 -0.2520026543425559 0.9561827210020266 0.1490277365508405 0.2520026543425559 -0.9561827210020266 -0.1490277365508405 -0.2089810829856228 0.9593342405053436 -0.1897491026281595 0.2089810829856228 -0.9593342405053436 0.1897491026281595 0.2089764398195915 0.9593353216206724 -0.1897487504340671 -0.2089764398195915 -0.9593353216206724 0.1897487504340671 0.06511765981521719 0.8653027985546354 0.4970017677973647 -0.06511765981521719 -0.8653027985546354 -0.4970017677973647 -0.06511769217474663 0.8653027967235247 0.4970017667456341 0.06511769217474663 -0.8653027967235247 -0.4970017667456341 -0.004487133044256028 -0.5271690917589494 0.8497485594757354 -0.006053605977966533 -0.7118585486726083 0.7022967752570072 0.006053605977966533 0.7118585486726083 -0.7022967752570072 0.004487133044256028 0.5271690917589494 -0.8497485594757354 0.004487135279260867 -0.527169091262663 0.8497485597718208 0.006053608948403288 -0.711858542716506 0.7022967812685976 -0.006053608948403288 0.711858542716506 -0.7022967812685976 -0.004487135279260867 0.527169091262663 -0.8497485597718208 0.5230269111733532 -0.814656438621079 0.2505548586670826 0.9380631612546022 -0.3098704059889023 0.1549768917913092 -0.9380631612546022 0.3098704059889023 -0.1549768917913092 -0.5230269111733532 0.814656438621079 -0.2505548586670826 -0.5230218643211199 -0.8146592720761156 0.2505561810502257 -0.9380593085260298 -0.3098796964138935 0.1549816358092144 0.9380593085260298 0.3098796964138935 -0.1549816358092144 0.5230218643211199 0.8146592720761156 -0.2505561810502257 -0.4590575121611554 -0.8828407405763209 0.09928961328892443 0.4590575121611554 0.8828407405763209 -0.09928961328892443 0.4590519990438607 -0.8828435600932946 0.09929003260968643 -0.4590519990438607 0.8828435600932946 -0.09929003260968643 0.0009604082012670587 -0.003481586759837493 -0.9999934780635926 0.01649402129472259 0.09664494668425393 -0.9951822453912284 -0.01649402129472259 -0.09664494668425393 0.9951822453912284 -0.0009604082012670587 0.003481586759837493 0.9999934780635926 0.01317855819193988 -0.5315374160970591 -0.8469322882573572 -0.1909713844454057 -0.4542065493211052 -0.8701875320164152 0.1909713844454057 0.4542065493211052 0.8701875320164152 -0.01317855819193988 0.5315374160970591 0.8469322882573572 -0.3116373339559766 -0.775037729972948 -0.549726012849302 0.3116373339559766 0.775037729972948 0.549726012849302 -0.3615400346458993 -0.8963775113842584 -0.2565076225627719 0.3615400346458993 0.8963775113842584 0.2565076225627719 -0.3756351912458759 -0.9267665112885345 -0.001427113083451963 0.3756351912458759 0.9267665112885345 0.001427113083451963 0.3660163128328314 -0.8951196799710379 0.2545443326196945 -0.3660163128328314 0.8951196799710379 -0.2545443326196945 -0.4604682813638613 -0.8639448175538647 0.2038830892438882 0.4604682813638613 0.8639448175538647 -0.2038830892438882 -0.2452495829276179 0.537978731336872 -0.8064933519273415 0.2452495829276179 -0.537978731336872 0.8064933519273415 -0.3420778914638995 0.8352557333912953 -0.4305003786393016 0.3420778914638995 -0.8352557333912953 0.4305003786393016 0.9533547772720478 0.2073353234407452 0.2193780579417316 0.4929498273097556 0.8475452044592331 0.1966407743918826 -0.4929498273097556 -0.8475452044592331 -0.1966407743918826 -0.9533547772720478 -0.2073353234407452 -0.2193780579417316 0.9819633613475416 0.008174349160209676 0.1888945128553083 0.9712395268594098 0.1527028035397002 0.1826899976928819 -0.9712395268594098 -0.1527028035397002 -0.1826899976928819 -0.9819633613475416 -0.008174349160209676 -0.1888945128553083 -0.9819621457066552 0.008174608269845507 0.1889008210114933 -0.9533518229372173 0.2073416252522031 0.2193849405498462 -0.9712376137677075 0.1527078377669839 0.1826959602381562 0.9712376137677075 -0.1527078377669839 -0.1826959602381562 0.9533518229372173 -0.2073416252522031 -0.2193849405498462 0.9819621457066552 -0.008174608269845507 -0.1889008210114933 -0.4929436839516181 0.8475484893400156 0.1966420165418993 0.4929436839516181 -0.8475484893400156 -0.1966420165418993 -0.1616126467929127 0.9868433789549992 0.004636573009163386 0.1616126467929127 -0.9868433789549992 -0.004636573009163386 0.1616086986990226 0.9868440259602455 0.004636478338450456 -0.1616086986990226 -0.9868440259602455 -0.004636478338450456 0.3420719352007187 0.8352574249071307 -0.4305018295960471 -0.3420719352007187 -0.8352574249071307 0.4305018295960471 -0.002537005133132722 -0.2983222820992422 0.9544618272136685 0.002537005133132722 0.2983222820992422 -0.9544618272136685 0.002537006399231014 -0.2983222820982839 0.9544618272106026 -0.002537006399231014 0.2983222820982839 -0.9544618272106026 0.9692117246097193 -0.1700508427884214 0.1780767917107711 0.9755244633565797 -0.1339045376042436 0.1744178781027079 -0.9755244633565797 0.1339045376042436 -0.1744178781027079 -0.9692117246097193 0.1700508427884214 -0.1780767917107711 -0.969209682975027 -0.1700564158979245 0.1780825815159918 -0.975522834811217 -0.1339089090479584 0.1744236303929958 0.975522834811217 0.1339089090479584 -0.1744236303929958 0.969209682975027 0.1700564158979245 -0.1780825815159918 -0.5420085214821976 -0.8034774453955865 0.2462737448070021 0.5420085214821976 0.8034774453955865 -0.2462737448070021 0.5420050527543967 -0.8034794852516837 0.2462747237708181 -0.5420050527543967 0.8034794852516837 -0.2462747237708181 0.4604621041029297 -0.8639479349109633 0.203883830766897 -0.4604621041029297 0.8639479349109633 -0.203883830766897 0.2452400623599147 0.537977272359414 -0.8064972202298221 -0.2452400623599147 -0.537977272359414 0.8064972202298221 -0.3660181200272975 -0.8951191958143714 0.2545434365610635 0.3660181200272975 0.8951191958143714 -0.2545434365610635 0.5349298534122274 -0.820438879235361 0.201816989788763 -0.5349298534122274 0.820438879235361 -0.201816989788763 0.5418619307912237 -0.8404674244212702 -0.0003955324055206845 -0.5418619307912237 0.8404674244212702 0.0003955324055206845 0.5346032101380197 -0.8189075422524407 -0.2087818118328113 -0.5346032101380197 0.8189075422524407 0.2087818118328113 0.5007885610287516 -0.7381352419440627 -0.452069885905855 -0.5007885610287516 0.7381352419440627 0.452069885905855 0.3684123294857594 -0.516149390177032 -0.7732154696478559 -0.3684123294857594 0.516149390177032 0.7732154696478559 0.0478582816317733 -0.0550397329247885 -0.9973365593814466 -0.0478582816317733 0.0550397329247885 0.9973365593814466 0.9820117227801273 -0.01516361406153519 0.1882100983767855 -0.9820117227801273 0.01516361406153519 -0.1882100983767855 -0.9820105098488078 -0.01516412257358528 0.188216385931347 0.9820105098488078 0.01516412257358528 -0.188216385931347 -0.1605722101379926 0.9819392217079419 0.1000596332343944 0.1605722101379926 -0.9819392217079419 -0.1000596332343944 0.1605682782363152 0.9819398513304203 0.100059764108343 -0.1605682782363152 -0.9819398513304203 -0.100059764108343 -0.1756091928408706 0.9545543256001183 -0.2408058364489564 0.1756091928408706 -0.9545543256001183 0.2408058364489564 0.1756049463341025 0.9545549760381938 -0.2408063548657312 -0.1756049463341025 -0.9545549760381938 0.2408063548657312 -4.224825819991032e-018 -0.7626436742213498 0.6468188511246096 -1.429016437196659e-017 -0.7626436742213498 0.6468188511246096 1.429016437196659e-017 0.7626436742213498 -0.6468188511246096 4.224825819991032e-018 0.7626436742213498 -0.6468188511246096 -1.013364126958988e-017 -0.7626436742213497 0.6468188511246096 0 -0.7626436742213497 0.6468188511246096 -0 0.7626436742213497 -0.6468188511246096 1.013364126958988e-017 0.7626436742213497 -0.6468188511246096 -0.5591105295910246 -0.7248419592501981 0.4024916766975165 0.5591105295910246 0.7248419592501981 -0.4024916766975165 0.5591056566767783 -0.7248450914082306 0.4024928050703792 -0.5591056566767783 0.7248450914082306 -0.4024928050703792 -0.04785727603751437 -0.05503628285538993 -0.9973367980274921 0.04785727603751437 0.05503628285538993 0.9973367980274921 -0.3684095361632931 -0.5161481207247707 -0.773217647972571 0.3684095361632931 0.5161481207247707 0.773217647972571 -0.500786033776766 -0.7381333534427802 -0.4520757689917162 0.500786033776766 0.7381333534427802 0.4520757689917162 -0.5346042318944263 -0.8189072324190625 -0.2087804107964212 0.5346042318944263 0.8189072324190625 0.2087804107964212 -0.5418602855356823 -0.8404684850344925 -0.0003957562555456968 0.5418602855356823 0.8404684850344925 0.0003957562555456968 -0.534930478721305 -0.8204385991749377 0.2018164708809996 0.534930478721305 0.8204385991749377 -0.2018164708809996 0.4951674708618757 -0.7385095350908808 0.4576164795766258 -0.4951674708618757 0.7385095350908808 -0.4576164795766258 0.3183395078452557 -0.7721101324745773 0.5500053645874112 -0.3183395078452557 0.7721101324745773 -0.5500053645874112 -0.3312334875777305 0.4585333926876312 -0.8246402273097425 0.3312334875777305 -0.4585333926876312 0.8246402273097425 -0.3953916543466458 0.760631889798606 -0.5148830623495241 0.3953916543466458 -0.760631889798606 0.5148830623495241 -0.4339903309879185 0.8776667121096652 0.2033556860862441 0 0.7418548498667967 0.6705604981872348 -0 -0.7418548498667967 -0.6705604981872348 0.4339903309879185 -0.8776667121096652 -0.2033556860862441 -3.5007466452076e-018 -0.0927257244181379 0.995691689244784 -0.545325893063524 0.6066233389940663 0.5784702195810603 0.545325893063524 -0.6066233389940663 -0.5784702195810603 3.5007466452076e-018 0.0927257244181379 -0.995691689244784 3.500835953124784e-018 -0.09272572441813787 0.995691689244784 0 0.7418548498667967 0.6705604981872347 0.5453237625103464 0.6066240261518271 0.5784715074546947 -0.5453237625103464 -0.6066240261518271 -0.5784715074546947 -0 -0.7418548498667967 -0.6705604981872347 -3.500835953124784e-018 0.09272572441813787 -0.995691689244784 0.433984687094243 0.8776692990887326 0.2033565656791167 -0.433984687094243 -0.8776692990887326 -0.2033565656791167 -0.1638429889992566 0.9864740220782488 -0.004947597452530763 0.1638429889992566 -0.9864740220782488 0.004947597452530763 0.1638388899380074 0.9864747034689766 -0.004947480133999534 -0.1638388899380074 -0.9864747034689766 0.004947480133999534 0.3954027592399868 0.7606273271792183 -0.5148812747941054 -0.3954027592399868 -0.7606273271792183 0.5148812747941054 -2.143303475908384e-017 -0.09272572441813802 0.995691689244784 2.143303475908384e-017 0.09272572441813802 -0.995691689244784 1.039644819016881e-017 -0.09272572441813794 0.995691689244784 -1.039644819016881e-017 0.09272572441813794 -0.995691689244784 -0.9729811604997007 -0.1604862499171054 0.1659874239218137 -0.9663649709820766 -0.1661986424099368 0.1962568575105194 0.9663649709820766 0.1661986424099368 -0.1962568575105194 0.9729811604997007 0.1604862499171054 -0.1659874239218137 0.9729797693100141 -0.1604903406621652 0.1659916234861693 0.9663632722055722 -0.166202713767299 0.1962617743436668 -0.9663632722055722 0.166202713767299 -0.1962617743436668 -0.9729797693100141 0.1604903406621652 -0.1659916234861693 -0.3183322774902897 -0.7721117779715709 0.550007239430014 0.3183322774902897 0.7721117779715709 -0.550007239430014 0.3312363991329317 0.4585259669551954 -0.8246431867888391 -0.3312363991329317 -0.4585259669551954 0.8246431867888391 -0.4951656625047575 -0.7385078120898534 0.4576212169015796 0.4951656625047575 0.7385078120898534 -0.4576212169015796 -0.1400766977702307 -0.9073438454459583 0.3963655697372422 0.1400766977702307 0.9073438454459583 -0.3963655697372422 -0.1256096743341652 -0.9833223113472117 0.1315273421020968 0.1256096743341652 0.9833223113472117 -0.1315273421020968 -0.128283290812836 -0.9917368882248544 0.001158374858148637 0.128283290812836 0.9917368882248544 -0.001158374858148637 -0.1153943029065925 -0.984098587901963 -0.1350337889050886 0.1153943029065925 0.984098587901963 0.1350337889050886 -0.1284831242963187 -0.9099543801398161 -0.3943033259248769 0.1284831242963187 0.9099543801398161 0.3943033259248769 -0.09849816820575726 -0.5903422102445749 -0.8011205812258603 0.09849816820575726 0.5903422102445749 0.8011205812258603 -0.03202782867604653 -0.1016115259451568 -0.9943084611856596 0.03202782867604653 0.1016115259451568 0.9943084611856596 -0.2141261850158152 0.9569679736873127 0.1958628965051106 0.2141261850158152 -0.9569679736873127 -0.1958628965051106 0.2141220647380355 0.9569688389538172 0.1958631733218463 -0.2141220647380355 -0.9569688389538172 -0.1958631733218463 -0.4672212444973646 0.8499038758801577 -0.2436549003287628 0.4672212444973646 -0.8499038758801577 0.2436549003287628 0.4672182636243016 0.8499080224456675 -0.243646152274948 -0.4672182636243016 -0.8499080224456675 0.243646152274948 -0.9826264533111563 -0.01797811170136815 0.1847215221699718 -0.9813579875627883 -0.003808794214706564 0.1921509649555376 0.9813579875627883 0.003808794214706564 -0.1921509649555376 0.9826264533111563 0.01797811170136815 -0.1847215221699718 0.9826255473396359 -0.01797857586882106 0.1847262962472046 0.9813570169983672 -0.00380888767080053 0.1921559199264434 -0.9813570169983672 0.00380888767080053 -0.1921559199264434 -0.9826255473396359 0.01797857586882106 -0.1847262962472046 -0.01040655362327202 -0.5310321088401302 0.8472877923247155 0.1945992146603698 -0.4494178078959073 0.8718685563773961 -0.1945992146603698 0.4494178078959073 -0.8718685563773961 0.01040655362327202 0.5310321088401302 -0.8472877923247155 0.01040654437201029 -0.5310321051968826 0.8472877947217229 -0.1946008373504995 -0.4494125680682662 0.8718708951242554 0.1946008373504995 0.4494125680682662 -0.8718708951242554 -0.01040654437201029 0.5310321051968826 -0.8472877947217229 0.03202750470163987 -0.101612159488225 -0.9943084068772254 -0.03202750470163987 0.101612159488225 0.9943084068772254 0.09849856501704039 -0.5903421861833855 -0.8011205501682033 -0.09849856501704039 0.5903421861833855 0.8011205501682033 0.1284865616602314 -0.9099544824154301 -0.3943019698210983 -0.1284865616602314 0.9099544824154301 0.3943019698210983 0.1153943190618475 -0.9840986892549881 -0.1350330364572579 -0.1153943190618475 0.9840986892549881 0.1350330364572579 0.1282830091798698 -0.9917369243417012 0.001158642749103654 -0.1282830091798698 0.9917369243417012 -0.001158642749103654 0.1256092611713195 -0.9833225359147746 0.1315260577609322 -0.1256092611713195 0.9833225359147746 -0.1315260577609322 0.1400799493552314 -0.9073439561764587 0.3963641671224688 -0.1400799493552314 0.9073439561764587 -0.3963641671224688 -0.09434577775386129 -0.5908641402970412 0.8012355720579669 0.09434577775386129 0.5908641402970412 -0.8012355720579669 0.3558044851785133 -0.5242703878370199 0.7736560791230648 -0.3558044851785133 0.5242703878370199 -0.7736560791230648 0.11044162975056 0.4763486881935899 -0.872292711006051 -0.11044162975056 -0.4763486881935899 0.872292711006051 -0.5138841473982002 0.7078534076519844 -0.4846304120959586 0.5138841473982002 -0.7078534076519844 0.4846304120959586 -0.5487656345747323 0.7204383497653253 0.424057616954591 0.5487656345747323 -0.7204383497653253 -0.424057616954591 -0.97240301549141 0.1423704772866765 0.1848324177745257 0.97240301549141 -0.1423704772866765 -0.1848324177745257 0.9724016040933897 0.1423740406102053 0.184837098324243 -0.9724016040933897 -0.1423740406102053 -0.184837098324243 0.5487607209511846 0.7204413695144796 0.4240588452482003 -0.5487607209511846 -0.7204413695144796 -0.4240588452482003 -0.4910713099762163 0.8711148161495533 0.002818794595687712 0.4910713099762163 -0.8711148161495533 -0.002818794595687712 0.4910715149506781 0.8711147029436044 0.002818070176919228 -0.4910715149506781 -0.8711147029436044 -0.002818070176919228 0.5138751071222991 0.7078565388566401 -0.4846354244975739 -0.5138751071222991 -0.7078565388566401 0.4846354244975739 -0.01952915716753109 0.09936770376786923 0.9948591214178152 -0.000901511437009039 -0.00239284428340388 0.9999967307813382 0.000901511437009039 0.00239284428340388 -0.9999967307813382 0.01952915716753109 -0.09936770376786923 -0.9948591214178152 0.0009015106142754519 -0.002392843584613443 0.9999967307837522 0.019530305448713 0.0993663276712274 0.9948592363215081 -0.019530305448713 -0.0993663276712274 -0.9948592363215081 -0.0009015106142754519 0.002392843584613443 -0.9999967307837522 -0.3558010816934756 -0.5242689737071172 0.7736586026625948 0.3558010816934756 0.5242689737071172 -0.7736586026625948 -0.1104368687109324 0.4763487936985649 -0.8722932561766407 0.1104368687109324 -0.4763487936985649 0.8722932561766407 0.09434667403723156 -0.5908640941187042 0.8012355005735802 -0.09434667403723156 0.5908640941187042 -0.8012355005735802 -0.5365507891276882 -0.2724842322812369 0.798664882065413 0.5365507891276882 0.2724842322812369 -0.798664882065413 -0.7718989017929135 -0.4700275721864217 0.4280726186004335 0.7718989017929135 0.4700275721864217 -0.4280726186004335 -0.8212626267043875 -0.5423479117822164 0.1771621871734457 0.8212626267043875 0.5423479117822164 -0.1771621871734457 -0.8298217026360002 -0.5580246638853392 0.002101506589023479 0.8298217026360002 0.5580246638853392 -0.002101506589023479 -0.8191525367658278 -0.5478711966426224 -0.1697830185839858 0.8191525367658278 0.5478711966426224 0.1697830185839858 -0.7636381136186676 -0.4827390762580249 -0.4287421319190264 0.7636381136186676 0.4827390762580249 0.4287421319190264 -0.5233844415973248 -0.2983440031957737 -0.7981601230649003 0.5233844415973248 0.2983440031957737 0.7981601230649003 -0.1044290352053733 0.005254070376865984 -0.9945184620461048 0.1044290352053733 -0.005254070376865984 0.9945184620461048 -0.472644591359042 0.8465163181847629 0.2449841082722667 0.472644591359042 -0.8465163181847629 -0.2449841082722667 0.4726405629488491 0.8465209651874089 0.2449758227939498 -0.4726405629488491 -0.8465209651874089 -0.2449758227939498 -0.5716476152068997 0.7948786592261468 -0.2034377573979513 0.5716476152068997 -0.7948786592261468 0.2034377573979513 0.5716538709212509 0.7948759531259698 -0.2034307523528113 -0.5716538709212509 -0.7948759531259698 0.2034307523528113 -0.2522332325838068 0.5353992599326737 0.8060558472239181 0.003454990292217633 0.5278882118816235 0.8493068343057785 -0.003454990292217633 -0.5278882118816235 -0.8493068343057785 0.2522332325838068 -0.5353992599326737 -0.8060558472239181 -0.00345498716885455 0.5278882133577253 0.8493068334010104 0.2522230714425461 0.5353976955645072 0.8060600658860997 -0.2522230714425461 -0.5353976955645072 -0.8060600658860997 0.00345498716885455 -0.5278882133577253 -0.8493068334010104 0.0449767607063262 -0.05522849264763451 0.9974602270748624 -0.0449767607063262 0.05522849264763451 -0.9974602270748624 -0.04497635205074753 -0.05522480061078004 0.9974604499195479 0.04497635205074753 0.05522480061078004 -0.9974604499195479 0.1044306828384715 0.005254899200190294 -0.9945182846565902 -0.1044306828384715 -0.005254899200190294 0.9945182846565902 0.5233819800666606 -0.2983432050961097 -0.7981620355006134 -0.5233819800666606 0.2983432050961097 0.7981620355006134 0.7636412175008654 -0.4827403031888474 -0.428735222032125 -0.7636412175008654 0.4827403031888474 0.428735222032125 0.8191529989231559 -0.5478741956857312 -0.1697711107842366 -0.8191529989231559 0.5478741956857312 0.1697711107842366 0.8298214721963223 -0.5580250124644846 0.002099939508719763 -0.8298214721963223 0.5580250124644846 -0.002099939508719763 0.8212619114047657 -0.5423522706732846 0.1771521588107895 -0.8212619114047657 0.5423522706732846 -0.1771521588107895 0.7719029417189524 -0.4700267448051407 0.4280662422260262 -0.7719029417189524 0.4700267448051407 -0.4280662422260262 0.5365496146771743 -0.27248320120415 0.7986660228476696 -0.5365496146771743 0.27248320120415 -0.7986660228476696 -0.1289437060681589 0.03485601270080709 0.9910391410252217 0.1289437060681589 -0.03485601270080709 -0.9910391410252217 -0.03479614492933991 -0.107556492015506 0.9935898697769491 0.03479614492933991 0.107556492015506 -0.9935898697769491 0.4117216244618857 0.3251528563313931 -0.8513289164418195 -0.4117216244618857 -0.3251528563313931 0.8513289164418195 0.2090209499597313 0.8118881659929046 -0.5451126933016783 -0.2090209499597313 -0.8118881659929046 0.5451126933016783 -0.40193394204585 0.7563622353385511 0.5161058759451913 0.40193394204585 -0.7563622353385511 -0.5161058759451913 0.4019449905548627 0.7563576842291382 0.5161039411546733 -0.4019449905548627 -0.7563576842291382 -0.5161039411546733 -0.5735166984635115 0.819193332634773 -0.0009382698162191664 0.5735166984635115 -0.819193332634773 0.0009382698162191664 0.5735121937818867 0.8191964859873223 -0.0009385784519762406 -0.5735121937818867 -0.8191964859873223 0.0009385784519762406 -0.2090240299687819 0.8118886554685469 -0.5451107832515193 0.2090240299687819 -0.8118886554685469 0.5451107832515193 -0.3159127438450883 0.468385233172462 0.825114786937094 0.3159127438450883 -0.468385233172462 -0.825114786937094 0.3159155219903057 0.4683779667290617 0.825117848097072 -0.3159155219903057 -0.4683779667290617 -0.825117848097072 0.03479582160481239 -0.1075568870946448 0.9935898383323755 -0.03479582160481239 0.1075568870946448 -0.9935898383323755 -0.4117181736895207 0.3251486966248509 -0.85133217402899 0.4117181736895207 -0.3251486966248509 0.85133217402899 0.1289448168390606 0.03485611312543633 0.9910389929705732 -0.1289448168390606 -0.03485611312543633 -0.9910389929705732 -0.2179986478772222 0.5715816519244338 0.7910568909421361 0.2179986478772222 -0.5715816519244338 -0.7910568909421361 -0.5815808283735376 0.4410522115439132 0.6835471357269907 0.5815808283735376 -0.4410522115439132 -0.6835471357269907 -0.8189788016617627 0.3296810862412729 0.4696638199855696 0.8189788016617627 -0.3296810862412729 -0.4696638199855696 -0.9368855294290948 0.2565188594263468 0.2375785754334149 0.9368855294290948 -0.2565188594263468 -0.2375785754334149 -0.9736690702705535 0.2279660041882405 0.0002062351157356025 0.9736690702705535 -0.2279660041882405 -0.0002062351157356025 -0.9397567116348682 0.2472500300875843 -0.236060893751819 0.9397567116348682 -0.2472500300875843 0.236060893751819 -0.8191797350546107 0.3112627907725366 -0.481726101385787 0.8191797350546107 -0.3112627907725366 0.481726101385787 -0.5762477640027265 0.4098641495958019 -0.707071349552482 0.5762477640027265 -0.4098641495958019 0.707071349552482 -0.2011847824327154 0.5359189442834044 -0.8199485157469719 0.2011847824327154 -0.5359189442834044 0.8199485157469719 -0.5570993725849827 0.8049566860049144 0.2041691032487639 0.5570993725849827 -0.8049566860049144 -0.2041691032487639 0.5571067054878111 0.8049534204623468 0.2041619690012957 -0.5571067054878111 -0.8049534204623468 -0.2041619690012957 0.244554282108253 0.935479489453685 -0.2550908228729328 -0.244554282108253 -0.935479489453685 0.2550908228729328 -0.2445560468036773 0.9354781423299914 -0.2550940712650647 0.2445560468036773 -0.9354781423299914 0.2550940712650647 -0.4948898272186186 0.7206569593878724 0.4855281719955623 0.4948898272186186 -0.7206569593878724 -0.4855281719955623 0.4948809605575952 0.7206596462753181 0.4855332214256047 -0.4948809605575952 -0.7206596462753181 -0.4855332214256047 0.113544970438825 0.4778958828496498 0.8710471082802582 -0.113544970438825 -0.4778958828496498 -0.8710471082802582 -0.1135390829164887 0.4778950769826455 0.8710483178597122 0.1135390829164887 -0.4778950769826455 -0.8710483178597122 0.201201418721007 0.5359196099292964 -0.8199439985742226 -0.201201418721007 -0.5359196099292964 0.8199439985742226 0.5762381845786991 0.4098643448626707 -0.7070790432785707 -0.5762381845786991 -0.4098643448626707 0.7070790432785707 0.8191556178229759 0.3112796801530513 -0.4817561982090866 -0.8191556178229759 -0.3112796801530513 0.4817561982090866 0.9397661340326265 0.2472489376023817 -0.2360245245305342 -0.9397661340326265 -0.2472489376023817 0.2360245245305342 0.9736700099245995 0.2279619934839536 0.0002032246345537654 -0.9736700099245995 -0.2279619934839536 -0.0002032246345537654 0.936894120427421 0.2565174721216962 0.2375461925706741 -0.936894120427421 -0.2565174721216962 -0.2375461925706741 0.8189551107340638 0.3296966683503205 0.4696941914493472 -0.8189551107340638 -0.3296966683503205 -0.4696941914493472 0.5815727234851986 0.4410522309737556 0.6835540189707624 -0.5815727234851986 -0.4410522309737556 -0.6835540189707624 0.2180149968763851 0.5715826008495109 0.7910516996651348 -0.2180149968763851 -0.5715826008495109 -0.7910516996651348 0.1615929276070497 0.6847314780545727 0.7106549997773765 -0.1615929276070497 -0.6847314780545727 -0.7106549997773765 0.3857982856502868 0.3539777102712661 0.851973863108729 -0.3857982856502868 -0.3539777102712661 -0.851973863108729 0.4710470348251843 0.2073320250443136 -0.8573961292036638 -0.4710470348251843 -0.2073320250443136 0.8573961292036638 0.7240439167329056 0.4871179768674159 -0.4883405402530791 -0.7240439167329056 -0.4871179768674159 0.4883405402530791 0.2596762166444364 0.9656824066951043 -0.005074633857011698 -0.2596762166444364 -0.9656824066951043 0.005074633857011698 -0.2596650624206113 0.96568541228746 -0.005073445899835583 0.2596650624206113 -0.96568541228746 0.005073445899835583 -0.724042314234301 0.4871179111181395 -0.4883429817926515 0.724042314234301 -0.4871179111181395 0.4883429817926515 0.2001431516069512 0.8113013914184546 0.5493020764090706 -0.2001431516069512 -0.8113013914184546 -0.5493020764090706 -0.200147528953493 0.811302209449807 0.549299273252452 0.200147528953493 -0.811302209449807 -0.549299273252452 -0.385793900643739 0.3539738078666538 0.8519774701073204 0.385793900643739 -0.3539738078666538 -0.8519774701073204 -0.4710390211828121 0.2073282544056938 -0.8574014435771766 0.4710390211828121 -0.2073282544056938 0.8574014435771766 -0.1615964627129738 0.6847282314695419 0.7106573240790866 0.1615964627129738 -0.6847282314695419 -0.7106573240790866 -0.3815297487970356 0.9242033489235089 -0.01682915985550096 0.3815297487970356 -0.9242033489235089 0.01682915985550096 -0.1893524600258164 0.9226379770853586 -0.3359833464950444 0.1893524600258164 -0.9226379770853586 0.3359833464950444 0.2430371049992868 0.9365806957721924 0.2524867638123671 -0.2430371049992868 -0.9365806957721924 -0.2524867638123671 -0.2430370270984135 0.9365799912233536 0.2524894522534115 0.2430370270984135 -0.9365799912233536 -0.2524894522534115 0.8151017431464896 0.5177508511940201 -0.2598907547555734 -0.8151017431464896 -0.5177508511940201 0.2598907547555734 -0.8151046069588269 0.5177485751983484 -0.2598863070547895 0.8151046069588269 -0.5177485751983484 0.2598863070547895 0.7143689442105867 0.4976941657223021 0.4919121150708055 -0.7143689442105867 -0.4976941657223021 -0.4919121150708055 -0.7143671097740584 0.4976943659632153 0.4919145764881657 0.7143671097740584 -0.4976943659632153 -0.4919145764881657 0.1893424248662611 0.9226408447753204 -0.3359811269968113 0.3815261748862386 0.9242048271015135 -0.01682900588081726 -0.3815261748862386 -0.9242048271015135 0.01682900588081726 -0.1893424248662611 -0.9226408447753204 0.3359811269968113 -0.06791426900456359 0.967764305676533 0.2425281441894815 0.06791426900456359 -0.967764305676533 -0.2425281441894815 0.7646667205034805 0.3007454141879074 0.5699447362678212 -0.7646667205034805 -0.3007454141879074 -0.5699447362678212 -0.04338468686296027 0.9656293038630097 -0.2562768356033023 0.04338468686296027 -0.9656293038630097 0.2562768356033023 0.7794250940536733 0.242256527445879 -0.5777614539490208 -0.7794250940536733 -0.242256527445879 0.5777614539490208 0.8458046245742587 0.533492675425588 -0.0003198687944614629 -0.8458046245742587 -0.533492675425588 0.0003198687944614629 -0.8458039896858844 0.53349368320006 -0.0003178318336505332 0.8458039896858844 -0.53349368320006 0.0003178318336505332 -0.7794180332466006 0.2422483115643041 -0.5777744239703283 0.7794180332466006 -0.2422483115643041 0.5777744239703283 0.8072299147687196 0.5296170535344539 0.2605487311578569 -0.8072299147687196 -0.5296170535344539 -0.2605487311578569 -0.8072346006267613 0.529613178217676 0.2605420906669885 0.8072346006267613 -0.529613178217676 -0.2605420906669885 -0.7646564644093824 0.3007414749600063 0.5699605746679528 0.7646564644093824 -0.3007414749600063 -0.5699605746679528 0.04338315991997069 0.9656295661029632 -0.2562761059934406 -0.04338315991997069 -0.9656295661029632 0.2562761059934406 0.06791218362178518 0.9677646416119429 0.2425273876522583 -0.06791218362178518 -0.9677646416119429 -0.2425273876522583 0.03596881937183998 0.9901531491874407 0.1352885257041033 -0.03596881937183998 -0.9901531491874407 -0.1352885257041033 0.05336704274176079 0.9892374608611649 -0.1362395125430002 -0.05336704274176079 -0.9892374608611649 0.1362395125430002 0.9238445835961621 0.2567454882110192 -0.2838889565363886 -0.9238445835961621 -0.2567454882110192 0.2838889565363886 -0.9238498592351629 0.256741474720856 -0.2838754176559315 0.9238498592351629 -0.256741474720856 0.2838754176559315 0.9180233515898573 0.2848647456352883 0.2758354629663632 -0.9180233515898573 -0.2848647456352883 -0.2758354629663632 -0.9180321739839776 0.2848572832830602 0.2758138062005712 0.9180321739839776 -0.2848572832830602 -0.2758138062005712 -0.0533662582375591 0.9892377314270605 -0.1362378552486978 0.0533662582375591 -0.9892377314270605 0.1362378552486978 -0.03596860507902677 0.9901533491104316 0.1352871194684281 0.03596860507902677 -0.9901533491104316 -0.1352871194684281 0.08061863977779155 0.9967424115525362 0.002280336118426854 -0.08061863977779155 -0.9967424115525362 -0.002280336118426854 0.9631149707435038 0.26904404532459 -0.004985459368985176 -0.9631149707435038 -0.26904404532459 0.004985459368985176 -0.9631170908148206 0.2690365543304014 -0.004980142008200281 0.9631170908148206 -0.2690365543304014 0.004980142008200281 -0.08061888242522709 0.9967423920075657 0.002280300757270798 0.08061888242522709 -0.9967423920075657 -0.002280300757270798</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"816\" source=\"#ID233\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID231\">\r\n                    <float_array count=\"3654\" id=\"ID234\">-0.1258852921180548 -15.48570502078738 1.534266493751242 -15.56317789494367 -0.1266861167179144 -15.56317789494367 -20.22738456726074 -1.25975176692009 -20.22738456726074 -0.804327005147934 -20.13338327407837 -1.236639364560445 0.2171591933625222 -15.48512115102699 0.2179600183620088 -15.56259402518073 -1.442991763260136 -15.56259402518073 20.22738456726074 -0.804327005147934 20.22738456726074 -1.25975176692009 20.13338327407837 -1.236639364560445 -1.534266493751242 14.81136512443701 -1.533465750397696 14.88883083827612 0.1266861167179146 14.81136512443701 1.535182831453892 -15.48560319931241 1.534382627736602 -15.56306891660233 -0.125769697796328 -15.48560319931241 -20.0537109375 -1.17082305153211 20.0537109375 -1.17082305153211 -20.32135009765625 -1.236639364560445 20.32135009765625 -1.236639364560445 -1.443908096956845 -15.48501972830002 0.2170436034463229 -15.48501972830002 -1.443107892840238 -15.56248544558737 1.442991763260136 14.81078125992196 -0.217960018362009 14.81078125992196 1.442191019507003 14.88824697375851 -20.42436417053202 -1.457934297741718 -20.37877720569773 -1.185995510641885 -20.28512865274249 -1.209954558772863 0.1263667481455355 14.8108939296594 -1.533786602762934 14.888339962441 0.1271657844858969 14.88833996244099 -20.01676861989358 -2.142210274540014 -20.02399308552023 -1.829286924592993 -19.93027556611291 -1.805495344233855 1.535182831453892 -11.81749829109407 -0.125769697796328 -11.81749829109406 -0.1250914032063509 -11.72661523658976 -20.00047206878662 -1.072321949402491 20.00047206878662 -1.072321949402491 0.2170436034463227 -11.81707672674592 -1.443908096956845 -11.81707672674592 0.2163653085178635 -11.72619367224318 -20.40102958679199 -1.170823520421982 20.40102958679199 -1.170823520421982 -0.2176406618968502 14.81031116168222 -0.2184396986359462 14.88775719446127 1.442511859765762 14.88775719446127 20.03095235338139 -1.812328709790346 20.02372738872175 -2.125252666203983 19.93723485288939 -1.788537083321516 20.37098365259558 -1.167128669961374 20.41657116571465 -1.439068106254421 20.27733512328646 -1.191087775289236 -19.27332397693066 -0.3641417240250766 -19.37498517074159 -0.1892271894203401 -19.19996052172735 -0.09598873356603006 -20.25288498192033 -1.282814483491743 -20.38300259367404 -1.216169844625221 -20.23855301829428 -0.9700426683051181 0.1271657844858967 10.12746505475762 -1.533786602762934 10.12746505475762 -1.533109210034726 10.21834130689198 -19.64642004864075 -2.524566304484259 -19.56917411608184 -2.186462850662363 -19.51654064930535 -2.457614418915185 1.53576798095259 -11.72712909143676 1.53508925514035 -11.81801568481086 -0.1251846092066019 -11.7271284439361 -19.98179435729981 -0.9561345557371775 19.98179435729981 -0.9561345557371775 1.535771774619323 -7.24993936660568 -0.1251808155399471 -7.24993885709483 -0.1247273262878519 -7.142904384136094 0.2164547174303251 -7.249699541016292 -1.444497043881923 -7.249700050527142 0.2160012279519299 -7.142665068058149 -1.443814524209448 -11.81759386889674 -1.444493250360386 -11.72670727552421 0.216458510951785 -11.72670662802354 -20.45424699783325 -1.072321949402491 20.45424699783325 -1.072321949402491 0.1280776013716562 10.21983633715882 0.1273991315217464 10.12894974260203 -1.532874948178165 10.21983633715882 1.44160021364496 10.21941468027686 -0.2186730368693393 10.12852808572163 -0.2193515070578187 10.21941468027685 1.442511859765762 10.12704401933711 -0.2184396986359461 10.12704401933711 1.441834466699521 10.21792027146991 19.58407642658773 -2.168589865662105 19.6613212151512 -2.506694049127253 19.53144193617117 -2.439742019072841 20.22472307134249 -0.9533116094784729 20.36917352486233 -1.199439246983046 20.23905601646291 -1.266084010725955 19.33720802203883 -0.1755983867431848 19.23554742857724 -0.3505131372780738 19.16218169939295 -0.08235981578698171 -1.801174134016037 6.165596324617181 -1.801174134016037 5.973266267907271 -2.164027541875839 6.165596324617181 -19.83645144563483 0.03318917964926284 -19.7386458323571 0.1983548763961393 -19.66380185096627 0.1291288351316886 -1.801174134016036 12.65174037172843 -2.164027541875838 12.77388336677867 -1.801174134016036 12.77388336677867 1.801174134016038 -14.18852359140346 2.16402754187584 -14.31067771740757 1.801174134016038 -14.31067771740757 -18.94105633498291 -2.750284032160559 -19.00181212506624 -2.48018548161269 -18.92481819325029 -2.412420390939995 -20.00047206878662 -0.8399464587370555 20.00047206878662 -0.8399464587370555 1.536427766611958 -3.037719784628627 -0.1245246814740755 -3.037719075692561 -0.1243657737671471 -2.920606382194752 0.2157985909101244 -3.037642433196023 -1.445153028328816 -3.03764314213209 0.215639683123898 -2.920529739698281 1.536424552133933 -7.141330885511757 1.535971735724498 -7.248360007971451 -0.1245278959520605 -7.141330121281866 -1.444696997338603 -7.248121035000783 -1.445149813974002 -7.141091912541681 0.2158018052648988 -7.141091148311789 19.02525222840553 -2.463730370768209 18.96449488988946 -2.733829416651876 18.94825847333672 -2.395965155820597 -20.47295093536377 -0.9561345557371775 20.47295093536377 -0.9561345557371775 0.1282193479991071 5.199645944215716 -1.532279787764698 5.306673480603418 0.1286728633344158 5.306674244821984 1.441005058336967 5.306434136946083 -0.2194932483535334 5.199406600558972 -0.2199467639151551 5.306434901164647 0.1280776013716559 5.198457694805845 -1.532874948178165 5.198457694805845 -1.532421904097657 5.305481681525087 1.44160021364496 5.198218590203622 -0.2193515070578185 5.198218590203623 1.441147169338374 5.30524257692227 19.7073272718307 0.2193619714884788 19.80513473309581 0.05419578943741742 19.63248359445579 0.1501357268180654 -1.709899455308914 -14.18852359140347 -1.709899455308914 -14.31067771740758 -2.072749584913254 -14.31067771740758 1.709899455308914 12.65174037172843 1.709899455308914 12.77388336677867 2.072749584913254 12.77388336677867 2.072749584913254 6.165596324617179 1.709899455308914 5.973266267907269 1.709899455308914 6.165596324617179 -1.801174134016037 2.880588778750365 -2.164027541875839 2.880588778750365 -2.164027541875839 3.10728777221482 -2.164027541875839 5.973266267907271 -17.31377201656435 0.08931789896481847 -17.37287013460527 0.3111986444837677 -17.20090103287147 0.2484264908816917 -2.164027541875838 12.65174037172843 2.164027541875838 -14.18852359140347 2.164027541875838 -14.31067771740758 1.801174134016036 -14.18852359140347 -12.24665345080589 -4.079363818946902 -12.29238037915529 -4.254866361738525 -12.33345400916902 -3.918308791597755 -20.0537109375 -0.7414472321669261 20.0537109375 -0.7414472321669261 1.536473731628583 1.023433804708911 -0.1244787976216367 1.02343398194291 -0.1246378109740279 1.140547373129819 0.2157527026406713 1.023357288952173 -1.445198997762496 1.023357111718174 0.2159117160724131 1.140470680139015 1.536473051392666 -2.92158106874024 1.536313956212724 -3.038695226888168 -0.1244794778575538 -2.921580891504811 -1.445039222293361 -3.038618494935111 -1.445198317552694 -2.921504336787248 0.2157533828504729 -2.92150415955182 -14.01397623552149 -4.302495126678767 -14.09490695303824 -4.139559529647563 -14.05452101996732 -4.037353805460541 14.15411215206861 -4.125126939414474 14.07317835339905 -4.288062767769929 14.11372681239765 -4.022921070123109 12.35919406675291 -4.244127343717848 12.31346799409292 -4.068624662957061 12.40027174729932 -3.907569508996484 -20.45424699783325 -0.8399464587370555 20.45424699783325 -0.8399464587370555 0.1285303983974092 0.9576156398572594 -1.532262887677826 1.074730746022038 0.1286896618719946 1.074730923259974 1.440988152825947 1.074653933634526 -0.2198043043227711 0.957538827469815 -0.2199635678768321 1.074654110872463 0.1286761474507288 0.9588850272414258 -1.532276503648425 0.9588843182825991 -1.532117005308048 1.076001303352002 1.441001774343951 0.9588073937422039 -0.2199500479082111 0.9588081027010309 1.440842275923982 1.07592437881154 -16.7753448735345 1.438180721989944 -16.64471179919583 1.476097594512997 -16.60427237279912 1.373910338866937 16.58518842739789 1.490732201329241 16.71582385163008 1.452815275052713 16.54474959254172 1.388544800815744 17.31704049764172 0.3204375904302545 17.25794314035383 0.09855671951743608 17.14506961262196 0.2576654013530714 -2.072749584913253 -14.18852359140347 -1.709899455308913 -14.18852359140347 -2.072749584913253 -14.31067771740758 2.072749584913254 12.65174037172843 2.072749584913254 5.973266267907269 2.072749584913254 2.880588778750366 1.709899455308914 2.880588778750366 2.072749584913254 3.107287772214821 13.68307907495966 1.072909917580273 13.62808642009628 0.8503769331383377 13.55208476113084 1.110051758401565 -1.801174134016037 3.10728777221482 16.77343157614949 1.093430361463871 16.8800370767962 0.9316686619756909 16.7822397986052 0.7553960546951699 19.66415887355527 -0.09164776415532905 19.71677879137577 -0.3628001049675953 19.58691646811338 -0.4297521812945988 20.32217697599747 -1.37764651333131 20.30784598460897 -1.690418858362025 20.17771158229746 -1.623774106597644 2.164027541875839 -6.109858504127848 1.801174134016037 -6.109858504127848 1.801174134016037 -5.930707404381179 -20.13338327407837 -0.6756296883026759 20.13338327407837 -0.6756296883026759 1.536431798160886 5.383194369809282 -0.1245206499251362 5.383194815632582 -0.1249735890401167 5.49022756400574 0.2157945595157108 5.382955785992272 -1.445157059723218 5.38295534016897 0.2162474988567167 5.489988534364836 1.536429922569505 1.141549740347531 1.53658890939953 1.024435640256233 -0.1245225255165305 1.141550153896868 -1.44531417111309 1.024358960517863 -1.445155184203727 1.141473060609095 0.2157964350352158 1.141473474158432 -4.418039454811175 -2.939394436690957 -4.515685712402823 -2.90258142229704 -4.509945086823084 -2.78555429801103 4.60235245800409 -2.899954755245872 4.504703024020952 -2.936767771359333 4.596612012498335 -2.782927625493501 -4.950180467880308 -3.765557817145136 -4.967657919060676 -3.987971337740143 -5.047637576747289 -3.72843591542275 5.053509723754392 -3.983803519776202 5.036032810786674 -3.761389973008671 5.133493100570709 -3.724268066917963 -1.709899455308914 -6.109858504127848 -2.072749584913253 -6.109858504127848 -1.709899455308914 -5.930707404381179 -20.40102958679199 -0.7414474666118622 20.40102958679199 -0.7414474666118622 0.1288377546512114 -2.971837188091958 -1.532274295216435 -2.854721620595885 0.1286783558827203 -2.854721207040741 1.440999565994849 -2.85464474342017 -0.2201116551053502 -2.971760310916177 -0.2199522562573161 -2.854644329865026 0.1286903598530311 -2.97310100861579 -1.532262189696789 -2.973101185855498 -1.532421555315797 -2.855984258820569 1.44098745487106 -2.973024325283773 -0.2199642658317187 -2.973024148044064 1.441146820569594 -2.855907398248911 -15.95889351019889 -0.03429134901812657 -15.82235116921501 -0.04436164856562209 -15.80896810424477 -0.1610045434072966 15.75831500296562 -0.03979592193297119 15.89485961610109 -0.02972562099683371 15.74493216452814 -0.1564388328590915 -15.94167276809853 -0.1989282114728265 -15.96040264678348 -0.03552441633350978 -15.81047560219309 -0.162236410886687 15.89637631539405 -0.03096368756243825 15.87764675367161 -0.1943675051849753 15.74644722515451 -0.1576756995503003 1.709899455308914 3.107287772214821 -20.29402090607722 -1.707137542595449 -20.30835265581908 -1.394364744684893 -20.16388658362278 -1.64049269433256 -19.73168774939586 -0.3806781729236828 -19.67906704044389 -0.1095253799235279 -19.601825519152 -0.4476303609034865 -16.92390303656202 0.9166428058467701 -16.81729575673723 1.078404696955189 -16.82610636654618 0.7403699897566273 -13.68951357730702 0.8410080554524878 -13.7445055611347 1.063541142515051 -13.61350942485764 1.100683000464225 13.0525877799319 0.1521790341023219 13.17040191568972 -0.001155844393756667 13.03920295411153 0.03553626429518431 16.24700292835964 1.102935238654555 16.31044231884614 0.841181457112277 16.20163974646863 1.002035331094687 -1.801174134016037 0.9281126122259156 -2.164027541875839 0.9281126122259156 -2.164027541875839 1.092179354949206 19.11775920122815 0.2551224137991908 19.10153141628488 -0.08274181684235182 19.04078517653014 0.1873572049067138 19.98183783074891 -0.5155219419165721 20.07555533468009 -0.491730323831432 19.989062704674 -0.828445788062113 20.23862187101954 -1.082531508487775 20.33227041494376 -1.106490578463651 20.19301794631684 -1.354470543530482 2.164027541875839 -5.930707404381178 2.164027541875839 -6.109858504127846 1.801174134016037 -5.930707404381178 0.1265715466658575 -8.624540498687608 -1.535181274761152 -8.476112729121779 0.1257712544890636 -8.476112526330917 1.443906540323413 -8.475808177192903 -0.2178454526559046 -8.6242359467574 -0.2170451600797494 -8.47580797440204 1.535778260544824 10.34166195767494 -0.125174329614441 10.34166228140747 -0.1258529536602815 10.43254622574892 0.2164482317530474 10.34124051642223 -1.444503529559196 10.34124019268969 0.2171268561375344 10.43212446076212 1.535776363654405 5.48854535393289 1.536229698567882 5.381517581354886 -0.1251762265048792 5.488545608676763 -1.444954967881073 5.381278331737467 -1.444501632741374 5.488306104314879 0.2164501285708891 5.488306359058752 -5.006386172853704 0.8644759555906119 -5.10633734776779 0.8543739725296139 -5.112620370191539 0.971383794125354 5.192089220564711 0.8515297083164171 5.092134941572865 0.8616316919311688 5.198372049964359 0.9685395363262117 -4.4198076004139 -2.939995586543617 -4.511711117659859 -2.786154666037582 -4.41176019428805 -2.776051142907861 4.598375461573348 -2.783526339728882 4.506468587809408 -2.937367267429926 4.498421434102714 -2.773422816126627 2.164027541875839 -4.221487111498896 1.801174134016037 -4.221487111498896 1.801174134016037 -3.99864903761605 -1.709899455308914 -4.221487111498896 -2.072749584913254 -4.221487111498896 -1.709899455308914 -3.99864903761605 -1.709899455308914 -5.930707404381178 -2.072749584913254 -6.109858504127846 -2.072749584913254 -5.930707404381178 -20.32135009765625 -0.6756296883026759 20.32135009765625 -0.6756296883026759 0.1285315268532095 -7.06673312404176 -1.532874170312753 -6.9597073232761 0.128078379237067 -6.959707195905827 1.441599435808795 -6.95946816837863 -0.2198054327362544 -7.066493969143699 -0.2193522848939825 -6.959468041008358 0.1286802715887128 -7.065549315582399 -1.53227237951043 -7.065549761362867 -1.532725812526302 -6.958527232137923 1.440997650360744 -7.065310448255558 -0.2199541718914076 -7.065310002475089 1.441451083602888 -6.958287919031208 -17.03570139470239 -1.664839179020459 -17.16215171293897 -1.465750723148897 -17.02109289708171 -1.548287371507728 17.10490101519861 -1.470209160463029 16.97844830994291 -1.669297642531781 16.96384001004768 -1.552745819682501 -16.10909598759142 -1.302788866770341 -16.10026045620292 -1.114236167078391 -15.97254971372975 -1.312826111367258 16.03698900342898 -1.116078629847719 16.04582438879647 -1.304631333774081 15.90927584270994 -1.314668578596409 -1.801174134016037 1.092179354949206 -1.801174134016037 0.9281126122259151 -2.16402754187584 1.092179354949206 2.072749584913254 1.092179354949206 1.709899455308914 0.9281126122259151 1.709899455308914 1.092179354949206 2.072749584913253 0.928112612225916 1.709899455308914 0.928112612225916 2.072749584913253 1.092179354949207 -20.32447832993505 -1.12534613712419 -20.23082980428274 -1.101387022951018 -20.18522545590466 -1.373326559639653 -19.99602312897831 -0.8454042666628082 -20.08251535874198 -0.508688298157286 -19.98879786942752 -0.5324799518734432 -19.12498771854559 -0.09920621455344565 -19.14121417005104 0.2386584948735982 -19.06424028196456 0.1708931899514246 -16.35799184967967 0.8279845533070835 -16.29455027534648 1.089738574145822 -16.24918742499983 0.9888385743428132 -13.23398984080131 -0.005659109431052334 -13.11617370435128 0.1476757854030664 -13.10278905354915 0.03103300316748309 -1.623332509725665 1.079694577807148 -1.623912730830739 0.9625784149731788 -5.485210456574892 1.07969475504561 13.18691021924062 0.1613203273318695 13.16818254401781 -0.00208362409851555 13.05036600887522 0.1512501135072835 -1.649230744145912 5.316901489714334 -1.65081451611082 5.209884161761756 -5.523024672812959 5.316902253860008 -1.721616743470018 10.23734429079699 -1.723712203225943 10.14648142792378 -5.629320716497547 10.23734429079698 -1.828819947018093 14.83327669988015 -5.785400478102014 14.91072905303895 -1.826823493132404 14.91072905303895 1.948040242702229 -15.49952216750314 5.965298784462179 -15.57698204488604 1.946590302434547 -15.57698204488604 17.9651228853713 -2.46866666317547 17.88111367877141 -2.734881495695522 17.82511370084852 -2.561231209508487 1.535185411592541 10.43307626874063 1.535863756865278 10.34218840029443 -0.1257671176576649 10.43307651155031 -5.589209059185219 14.34121049446882 -5.555801936241187 14.26833670692095 -7.146681740765876 13.86251749888974 5.674530193615789 14.31700556182349 7.232002004761192 13.83831259338827 5.641123056105888 14.24413177840787 -1.444589022608439 10.34176682675407 -1.443910676997195 10.43265469519871 0.2170410234059594 10.43265493800838 -8.509568598196866 4.183771607807824 -8.60374072404613 4.123470965439186 -8.630576273599415 4.228396712930236 8.682293648491479 4.111069268365709 8.588118293225817 4.171369973786545 8.709128504848385 4.215995125570333 -5.005124119188297 0.8652771805034814 -5.111357269189332 0.9721856630876584 -5.013927802630328 1.029193903125683 5.19711097734882 0.9693407154298069 5.090874916270149 0.862432226982461 5.099678329236927 1.026348958594327 2.164027541875839 -3.071965378997481 1.801174134016037 -3.071965378997481 1.801174134016037 -2.907898754035186 -1.709899455308914 -3.071965378997482 -2.072749584913253 -3.071965378997482 -1.709899455308914 -2.907898754035186 2.164027541875839 -3.99864903761605 -2.072749584913254 -3.99864903761605 -17.83013640463499 -2.745083098271195 -17.91414773614437 -2.478868123378903 -17.7741368920588 -2.571432719215629 -1.472393506701663 7.189482014100863 -1.47944486800743 7.337793609484673 0.1848775878461846 7.364425987845634 1.570465385352345 7.335115541791618 1.563414020547373 7.186803946510763 -0.09385624333294915 7.361747920134089 0.1278459538366897 -11.60445230359342 -1.533783998542705 -11.51356454702308 0.1271683887061131 -11.51356430421371 1.442509255643703 -11.51314345890218 -0.2191198682266861 -11.60403121547096 -0.2184423027579913 -11.51314321609281 0.1280793439095862 -11.60312746727764 -1.532873205640229 -11.60312762913219 -1.533551519883644 -11.51225002289478 1.441598471172542 -11.60270602728622 -0.2193532495302308 -11.60270586543168 1.442276785754449 -11.51182842105037 -19.71564877991073 -1.494040472876068 -19.81191580095041 -1.152676274233754 -19.6659051662743 -1.394427905724576 19.77946428884835 -1.162730732326592 19.68319536119753 -1.504095160702185 19.63345196448953 -1.404482526512843 -17.11234276679926 -1.418144715217714 -17.08288268909941 -1.162188648336637 -16.97124931523291 -1.500644719083383 17.02532203902382 -1.166305031655054 17.05478171365591 -1.422261127245591 16.91368607181041 -1.504761140364921 -1.801174134016037 -1.580052705958203 -1.801174134016037 -1.768733472471541 -2.164027541875839 -1.580052705958203 2.072749584913254 -1.580052705958203 1.709899455308914 -1.768733472471541 1.709899455308914 -1.580052705958203 -1.801174134016037 -1.768733472471541 -2.164027541875839 -1.768733472471541 -2.164027541875839 -1.580052705958203 2.072749584913254 -1.768733472471541 2.072749584913254 -1.580052705958202 -13.23177955480132 -0.00658200255963195 -13.25050698507355 0.1568219662438976 -13.11396101893223 0.1467517513486443 -1.85677580673647 -15.49846495925416 -1.855325867060111 -15.57592483664391 -5.874035988020432 -15.57592483664391 1.737565553146629 14.83182100552171 1.735569101289583 14.90927335871286 5.694150108665018 14.90927335871286 5.538076029825277 10.23604209361662 1.632468261753308 10.14517923074912 1.630372801597992 10.23604209361662 1.559579703773065 5.209048591982027 1.557995932234425 5.316065919938509 5.431790903520531 5.316066684084182 1.532681253467128 0.9622987077137645 1.532101032429185 1.079414870547939 5.393979426098372 1.079415047786401 -1.623332772088225 -2.466732283477933 -5.485210718937451 -2.466732106864797 -5.497703966683182 -2.350028972639862 -1.649232307100429 0.447377576352172 -5.523026235767493 0.4473782828116477 -5.510550193190154 0.564081855834275 13.44611496587061 -2.014045157192618 13.30957060914802 -2.024114142851768 13.29597490498195 -1.907486525431189 -1.721616743470019 3.751470101692875 -5.629320716497547 3.751470101692875 -5.593987872893266 3.854820861283677 -1.826823493132404 8.308347630418078 -5.785400478102014 8.308347630418076 -5.732785283958959 8.389268976536879 -5.965298784462179 14.23324356338103 -5.90365040839472 14.29366077080401 -1.946590302434547 14.23324356338103 6.140859473718176 -15.11938777954019 6.079619365090169 -15.18003497983019 2.061893856221012 -15.11938777954019 19.25650095716715 -2.778314433863801 19.32945595815604 -2.848790673537433 19.19517112251402 -2.946462966080575 -18.82236779398378 0.6784072465355927 -18.89905086944287 0.7463918189142581 -18.75080234157753 0.9238325989700599 -19.97088696162336 -0.1974415343765166 -20.06469025362492 -0.1738620178566139 -19.91066038848814 0.1632906828289227 20.07046133359917 -0.1880625399512464 19.97665805461466 -0.2116420885173906 19.91643107483787 0.149090618948812 18.92378358334661 0.7291600778045483 18.84710070390738 0.6611753685995382 18.77553365329143 0.9066012149792155 -10.80569009633248 0.1099605378774972 -10.92821405895882 0.1519472391902269 -10.82422126623122 0.3900870975693102 11.00007461399909 0.1490151236111422 10.87754812043968 0.1070284198381223 10.89607888937612 0.3871549959444814 2.164027541875839 1.030713255234531 1.801174134016037 1.030713255234531 1.801174134016037 1.194776216917491 -1.709899455308914 1.030713255234531 -2.072749584913254 1.030713255234531 -1.709899455308914 1.194776216917491 2.16402754187584 -2.907898754035186 2.16402754187584 -3.071965378997481 1.801174134016037 -2.907898754035186 -1.709899455308914 -2.907898754035186 -2.072749584913254 -3.071965378997482 -2.072749584913254 -2.907898754035186 12.98986872044777 -3.037455366848272 12.89700698097519 -3.196405471095785 12.86791455317681 -2.974745740430965 -12.82084986506411 -3.202609789768635 -12.91371409952405 -3.043659654109695 -12.79175797658145 -2.980950015299825 -19.29269603840264 -2.872384688597455 -19.21974135309156 -2.801908246698138 -19.15840974671375 -2.970057261403088 -1.533777853801287 -15.45945260546777 -1.534577153620485 -15.38198747693904 0.1271745334473898 -15.45945201608054 1.442503111133931 -15.45886978904782 -0.2184484472676229 -15.45886919966059 1.443302411351995 -15.38140466052163 -20.35913839763453 -0.9992405881392164 -20.39944525362752 -0.5877322188676134 -20.28079302324131 -0.932453177032359 20.38291650820884 -0.599747286199168 20.34260851149802 -1.011256052922561 20.26426322596364 -0.9444685773096617 -19.88015526090114 -1.147477682376389 -19.78934155726489 -0.9789607440089759 -19.73472769094323 -1.389446709145283 19.75796237056699 -0.9894516927722035 19.8487757038444 -1.157968754652141 19.70334647721835 -1.399937958769411 -1.801174134016037 -2.3692739281999 -1.801174134016037 -2.626277042775172 -2.164027541875839 -2.3692739281999 2.072749584913254 -2.3692739281999 1.709899455308914 -2.626277042775172 1.709899455308914 -2.3692739281999 -2.164027541875839 -2.626277042775172 2.072749584913254 -2.626277042775172 14.17973260486218 -1.149716057020562 14.18900416428264 -1.338255799942257 14.03847163581126 -1.232040378595642 -14.24825931667381 -1.336457444313252 -14.23898786253076 -1.147917698187767 -14.09772519752328 -1.230242021161755 -13.37209015912777 -2.019615903618303 -13.50863627162445 -2.00954691688874 -13.3584946268269 -1.902988273799286 -1.970622815117818 -15.11873913070546 -5.988349963112748 -15.17938633951847 -6.049588879628458 -15.11873913070546 1.855325867060111 14.23222149466546 5.812389996301541 14.29263872910246 5.874035988020432 14.23222149466546 5.694150108665017 8.307449396982861 1.735569101289583 8.307449396982861 5.641530148518164 8.388370697265708 5.538076029825278 3.750903665915818 1.630372801597992 3.750903665915819 5.502744973542115 3.854254436665682 5.431792466268043 0.4471755655462812 1.557997494981921 0.4471748590868135 5.419315828020097 0.5638791372650112 5.393979688424572 -2.46652122830907 1.532101294755384 -2.466521404922204 5.406473531880293 -2.349818095444993 -19.09568861490444 -1.860737775573822 -19.71716312893302 -1.743635927404361 -19.0933554765953 -1.743635927404361 -1.649233103102599 -2.859567199326331 -1.648675988840149 -2.976683373446285 -5.523027031769663 -2.85956678576967 -19.65501490689303 -0.02263704786605328 -19.0297120460069 -0.02263704786605328 -19.02750970147574 -0.139739765654591 -19.71716312893302 1.847660563006503 -19.0933554765953 1.847660563006503 -19.0867053147492 1.740765367513165 -19.25725339646276 3.827431524102865 -19.88853787551105 3.917867663004274 -19.26881717011474 3.917867663004274 -19.50128008188347 5.671749433882255 -20.13187847699102 5.748127731735295 -19.51778234712939 5.748127731735294 19.7667812749501 -5.811840188322443 20.39490611426976 -5.88769550952377 19.786675930432 -5.88769550952377 6.140859473718175 -11.82192118735633 2.061893856221012 -11.82192118735633 2.062672747337603 -11.73103509104769 -17.38165993209769 0.429103221833177 -17.29160418754188 0.7859695532530753 -17.22586501560617 0.6024968064149385 -19.99860051972076 -0.129264626879026 -20.03692995984601 0.274651531291131 -19.84284155047692 0.2073961150121447 20.0445830652846 0.2609923657732687 20.00625418497915 -0.1429243006399641 19.85049470330193 0.1937368648675621 17.33110558440374 0.7772354161435705 17.42116358810667 0.4203688994892632 17.26536684195997 0.5937625740723932 2.164027541875839 0.5515809805773705 1.801174134016037 0.5515809805773705 1.801174134016037 0.83208660130879 -1.709899455308914 0.5515809805773707 -2.072749584913254 0.5515809805773707 -1.709899455308914 0.8320866013087902 2.164027541875839 1.19477621691749 2.164027541875839 1.03071325523453 1.801174134016037 1.19477621691749 -1.709899455308914 1.19477621691749 -2.072749584913254 1.03071325523453 -2.072749584913254 1.19477621691749 8.289403965375485 -2.788661418358525 8.191755230015026 -2.825474632941424 8.183709745059858 -2.661530130953802 -8.104747585472685 -2.828122870696716 -8.202398775323518 -2.791309654783989 -8.096702295527615 -2.664178362786818 10.55889685108461 -5.946475750744878 10.44012297903797 -5.880095964417052 10.53628430554413 -5.840934631093697 -10.35731628797262 -5.89110171479426 -10.47609214127761 -5.957481542480854 -10.45348009169989 -5.851940357070943 -1.970622815117817 -11.82143713216541 -6.049588879628457 -11.82143713216541 -1.97140170614905 -11.73055103585631 -20.37146078337978 -0.5875260487930961 -20.32937631025639 -0.1610463816450941 -20.27762162786924 -0.5640350063438532 20.32417836561852 -0.1739015931347521 20.36626246054495 -0.6003817335958721 20.27242331558046 -0.5768906650759407 -20.36033972231744 -0.7896780462460825 -20.47467865286477 -0.4440562104675164 -20.32509873553122 -0.3628146208389277 20.46316738269153 -0.4571844655618593 20.34882768846971 -0.8028067005413702 20.31358754771352 -0.3759427820974189 -1.801174134016037 -6.977500372299702 -1.801174134016037 -7.160534927336461 -2.164027541875839 -6.977500372299702 2.072749584913254 -6.977500372299704 1.709899455308914 -7.160534927336463 1.709899455308914 -6.977500372299704 -1.801174134016037 -7.160534927336462 -2.164027541875839 -7.160534927336462 -2.164027541875839 -6.977500372299703 2.072749584913254 -7.160534927336462 1.709899455308915 -7.160534927336462 2.072749584913254 -6.977500372299703 16.40028087842734 -1.096514751653602 16.43264684739913 -1.35225353776757 16.24836178246479 -1.336003393894237 -16.47990704049319 -1.348561334813969 -16.44754130520498 -1.092822530397934 -16.29562067470131 -1.332311189777687 16.19609020845928 -2.976192540915188 16.05680323653849 -3.060572695513196 16.01186058132998 -2.959557939969597 -16.10550301620983 -3.047195266568088 -16.24479163187337 -2.96281503271374 -16.06056070560901 -2.946180416143652 1.557441176765298 -2.976414794792929 1.557998290877803 -2.859298620672535 5.431793262163925 -2.859298207115874 -19.71099252619484 -5.865995296541705 -19.73088776767315 -5.941849933856844 -20.33911867998974 -5.941849933856844 19.44287400693677 5.724306708224998 19.45937786699727 5.800683623232993 20.07347361540942 5.800683623232993 19.19668673045452 3.864446538353782 19.20824711419368 3.954884620453327 19.8279694010471 3.954884620453327 19.03145439579096 1.868086594865004 19.65526164385514 1.868086594865004 19.02480298406573 1.761191802296992 18.96731324907351 -0.01606998787516269 19.59261733200767 -0.01606998787516269 18.96511135067093 -0.1331727488302648 19.65526164385513 -1.75023393902643 19.03378714285789 -1.867335829994521 19.03145439579096 -1.75023393902643 -19.71716312893301 -3.035852820181699 -19.70630012688311 -2.932379932769402 -19.09335547659529 -3.035852820181699 -19.65501490689303 -1.661030144640715 -19.65130187729402 -1.544307681117579 -19.0297120460069 -1.661030144640715 -1.649233627418467 -5.66861509053434 -5.523027556085529 -5.668614660178287 -5.558497928304542 -5.565295516326459 -19.71716312893302 -0.3709380187175263 -19.72097596217537 -0.2542182464687891 -19.0933554765953 -0.3709380187175263 -19.88853787551104 1.004335023182328 -19.90021075152527 1.107755774515915 -19.26881717011473 1.004335023182328 -20.13187847699102 2.709321514746258 -20.15119418013812 2.790029141600843 -19.51778234712939 2.709321514746258 -20.39490611426976 4.825675277952427 -20.42026695723209 4.884771801353764 -19.786675930432 4.825675277952427 20.62862864475278 -5.189494413296692 20.6565575668751 -5.24789067845684 20.02542496075474 -5.189494413296694 6.234562162653291 -10.29060420000016 2.156048683565865 -10.20929661415252 6.286211616719921 -10.20929603489529 2.164027541875839 4.256228387112969 1.801174134016037 4.256228387112969 1.801174134016037 4.446850187936754 1.801174134016037 14.53565253497429 2.164027541875839 14.36881323059433 1.801174134016037 14.36881323059433 -1.709899455308914 14.5356525349743 -1.709899455308914 14.36881323059433 -2.072749584913253 14.36881323059433 -1.709899455308914 4.256228387112969 -2.072749584913254 4.256228387112969 -1.709899455308914 4.446850187936753 2.164027541875839 0.83208660130879 -2.072749584913254 0.8320866013087902 8.840650698761181 0.7309651901980898 8.740696993498888 0.741067230969132 8.749502213520943 0.90498390251546 -8.65457962069206 0.7439368182846401 -8.75453572456612 0.7338347770853647 -8.663384631687885 0.9078534967795184 8.285031415308975 -2.670887680950639 8.290773607553 -2.787914757671433 8.185077943099925 -2.660784213273968 -8.203770488478375 -2.790562541754825 -8.198028435409483 -2.673535460808032 -8.098072564572732 -2.663431992766513 6.286210747687413 -7.247709244640746 2.156047814533343 -7.247709754129139 2.156320294775668 -7.140680253534097 -2.064773746241611 -7.247565948528585 -6.194943086811017 -7.247565439040191 -2.065046226061218 -7.140536447932877 -2.064774615251489 -10.20907791273233 -6.143288541849903 -10.29038548467444 -6.194943955820882 -10.2090773334752 -1.801174134016037 -13.50682571730549 -2.164027541875839 -13.36383510451845 -1.801174134016037 -13.36383510451845 1.709899455308914 -13.5068257173055 1.709899455308914 -13.36383510451845 2.072749584913254 -13.36383510451845 -2.164027541875838 -13.50682571730549 -2.164027541875838 -13.36383510451845 -1.801174134016036 -13.50682571730549 2.072749584913254 -13.50682571730549 1.709899455308914 -13.50682571730549 2.072749584913254 -13.36383510451845 18.8177069592771 -1.209340377535111 18.90992502597356 -1.377384683742904 18.69081283492763 -1.552240444926474 -18.93728235548932 -1.368108922980885 -18.84506451152456 -1.200064541132465 -18.71816917170635 -1.542964762871077 19.49338849225603 -1.600214965321107 19.35491319362604 -1.844695599665951 19.27729808140946 -1.777382601357212 -19.37542426648113 -1.83007648905537 -19.51390051793135 -1.585595581796428 -19.29780925957031 -1.762763415605031 -1.721617074545594 -6.968771324576598 -1.720217509984122 -7.075788784910571 -5.629321047573122 -6.968771197216782 1.628973567806513 -7.075050332908721 1.63037313263474 -6.968032872576905 5.538076360862024 -6.96803274521709 5.43179378641133 -5.667975308354976 1.55799881512521 -5.667975738711083 5.467262370965596 -5.564656151795372 -19.97241806420399 -5.243115459453888 -20.60355221981268 -5.301509222468676 -20.5756207094513 -5.243115459453886 19.73088776767315 4.877998344572728 20.36447977992893 4.937094554868735 20.33911867998974 4.877998344572728 20.09278821849486 2.822020037372321 20.07347361540942 2.741311791476443 19.45937786699727 2.741311791476443 19.83964137098812 1.124191389438626 19.8279694010471 1.020770416184978 19.20824711419368 1.020770416184977 19.65907569985622 -0.249251298510735 19.65526164385514 -0.3659709719504866 19.03145439579096 -0.3659709719504865 19.5889031099648 -1.549256831414366 19.59261733200767 -1.66597919737478 18.96731324907351 -1.66597919737478 19.64439942206315 -2.948580675760438 19.65526164385514 -3.052053772418875 19.03145439579096 -3.052053772418875 -13.33592262243147 -4.898779877281784 -13.32724461429281 -5.002380365810703 -13.9758112521686 -4.895899366622762 -19.27652982269344 -3.485648979579537 -19.88853787551105 -3.378800343703154 -19.26881717011474 -3.378800343703154 -12.78843572517963 -2.167939608558373 -12.78494239059626 -2.284666268952871 -13.43280904490074 -2.166317031007146 -12.86434947522666 0.3783191994140578 -12.86777865046281 0.2615920617598282 -13.51790675091619 0.3786073164295759 -12.80469908872295 3.150110555665507 -13.43915250706015 3.252547179441606 -12.79477930015034 3.253644499076614 -13.3724603603717 6.944633294311597 -13.99945800299225 7.023442643684843 -13.35957153980648 7.026130571389397 -13.23684863189478 12.02525215553542 -13.82154769380664 12.07864571751451 -13.22101723269816 12.08636941785606 12.33377592710247 -13.38925882167366 12.87212983008434 -13.45805102097961 12.31414740306657 -13.44971053785923 20.00563527017167 -4.289910144599922 20.62862864475278 -4.379461966831193 20.02542496075474 -4.379461966831193 2.164027541875839 4.446850187936754 2.16402754187584 14.5356525349743 2.16402754187584 14.36881323059433 1.801174134016037 14.5356525349743 -2.072749584913254 14.5356525349743 -1.709899455308915 14.5356525349743 -2.072749584913254 14.36881323059433 -2.072749584913254 4.446850187936753 8.332421442733166 0.3248724105630031 8.23478612014728 0.3816650488759661 8.244146163658927 0.6620740110073597 -8.14784378851318 0.3834650845206253 -8.245481565846042 0.3266724452599342 -8.157203605496989 0.6638740513313505 8.845018977540157 0.8474460458601429 8.838737870248515 0.7304361606346531 8.747586610073936 0.9044539734638741 -8.752619675533401 0.7333038493751959 -8.758900633707189 0.8503137395542709 -8.661465807769917 0.9073216695714188 6.381706256974224 -3.037854604489748 2.217293209073027 -3.037855313431844 2.217331895121768 -2.920741092364239 -2.126017979415087 -3.037836654842383 -6.29043087830499 -3.037835945900288 -2.126056665465213 -2.920722433774778 6.347327608743012 -5.977014465299771 2.217294058606035 -5.873458934281515 6.381707106507224 -5.873458194850908 -2.126018828940561 -5.87341449389307 -6.256058786560113 -5.976970028205966 -6.290431727830457 -5.87341375446244 -19.95263164985139 -4.329606636135661 -19.97241806420398 -4.419161021052664 -20.57562070945129 -4.419161021052665 19.86182033568163 -0.8703749569180225 20.01154621865167 -0.951449981342862 19.80451876606578 -1.27289923290686 -20.02232204506392 -0.9391425865699135 -19.87259621809162 -0.8580674981478026 -19.81529407100559 -1.260592091872657 20.23146596873297 -0.8716685261312739 20.12242406551535 -1.218348519731488 20.02862266206194 -1.194764354361259 -20.12822428633522 -1.204076335472272 -20.23726650002452 -0.8573959743186155 -20.03442289304061 -1.180492145097886 -1.826824586943753 -11.52725328202993 -1.825132545534608 -11.61812270646902 -5.785401571913356 -11.52725303926997 1.733878155305792 -11.6170711371541 1.735570194995614 -11.52620171269521 5.694151202371042 -11.52620146993524 -1.721617298496609 -9.930784784932458 -5.629321271524137 -9.93078464102506 -5.682238952383604 -9.849983874159859 5.538076584785603 -9.929676401114678 1.630373356558319 -9.929676545021975 5.590999032665459 -9.848875691607359 19.8279694010471 -3.399585845859671 19.21596080132521 -3.506434080563812 19.20824711419368 -3.399585845859672 -12.24637376714517 -13.40836023289157 -12.22674923757046 -13.46881107464228 -12.78473223522918 -13.47715143711746 13.15095731194658 12.04773369815918 13.13512647058755 12.10885081313781 13.73565693208303 12.10112713141661 13.913827371448 7.038180209726914 13.28682978420098 6.959370587725284 13.27393922907185 7.040868146729923 13.35256059130704 3.259584294556714 12.71810719620634 3.157147581717787 12.70818625333717 3.26068161514578 12.78132664426309 0.2637482655984293 12.77789917124408 0.3804753601100623 13.43145531771669 0.3807634770190918 12.69834033445918 -2.286792600824052 12.70183198112379 -2.170065983258001 13.34620643190982 -2.168443406302117 13.24156751753326 -5.010104758862823 13.25024668311079 -4.906504171975626 13.89013699207585 -4.903623658581844 -13.38655077693436 -9.407329466025793 -14.02643328442225 -9.403703719747682 -13.99974726314679 -9.315566488136867 -12.79265236282773 -3.17249119754468 -13.43702561684884 -3.170852553021684 -13.4421999530635 -3.069777157777844 -19.88853787551105 -4.653437878976164 -19.87105866931539 -4.572470025680754 -19.26881717011474 -4.653437878976163 -12.8664396327831 -2.550426284173941 -13.51999690804204 -2.550137563341048 -13.51423263529951 -2.431827814564653 -12.78725258424518 0.5421897651681046 -13.4316259157876 0.5411387125132219 -13.43730858216449 0.6594526508923403 -13.31820626962136 1.148622773729654 -13.95809572863937 1.14641997789693 -13.95356646660478 1.247520193935313 -13.05263182037547 8.058491633593386 -13.65322229626781 8.054612698573468 -13.67842590892999 8.143013872085891 -13.53753473976309 12.42088103693054 -13.56327857532572 12.49011286933152 -12.97958068716272 12.4303234295584 12.18807699161649 -13.99050758966505 12.21078310288069 -14.06453253642737 11.67574409871494 -13.98125989923936 20.80300052005983 -3.525848058974709 20.82854644668942 -3.605475864612836 20.20337945190793 -3.525848058974708 17.92773440791897 0.934404939424109 17.95883205212984 0.5087100955931938 17.86686999530537 0.7498942998668615 20.37068608345732 -0.3150210748115584 20.2389061130269 -0.7428518873839999 20.1766302477866 -0.3823346340016746 -20.2310649963513 -0.7288551156814925 -20.3628445054506 -0.301023868366783 -20.16878870812031 -0.3683374959578851 -17.90835210279895 0.5190444716235586 -17.87725191635645 0.9447395490675353 -17.81638799976208 0.7602288082544331 18.63292876559278 0.6798426208756718 18.71971455788247 0.4374742982094129 18.67283844015406 0.3369992226401191 -18.67640575487218 0.4500103576947548 -18.58961808424568 0.6923788763163904 -18.62952991850636 0.3495352008911188 6.414908754167234 1.023368008062789 2.238467718276084 1.023367830827259 2.238448809289845 1.14048199675667 -2.147192343400981 1.023358710823203 -6.323633826326739 1.023358888058733 -2.147173434416766 1.140472876752615 6.402859763642525 -2.580249934277293 2.238467956833238 -2.463520932997877 6.414908992724389 -2.463520756344259 -2.147192581957001 -2.463513878309864 -6.311584239756299 -2.58024287954372 -6.323634064882758 -2.463513701656246 20.80300052005983 -2.801340922762518 20.20337945190793 -2.801340922762517 20.188512053329 -2.694952224273715 -20.15280409823782 -2.823769506265871 -20.75242450568366 -2.823769506265871 -20.13793298121631 -2.717382437237145 -20.77796689271467 -3.639240388894365 -20.75242450568366 -3.559610185451681 -20.15280409823781 -3.559610185451681 20.35332457234593 -0.3912425455085675 20.31267981979008 -0.795018995246536 20.2188592612982 -0.8185559616507105 -20.30717484434662 -0.7814338473596483 -20.34781928729178 -0.3776570108690364 -20.21335429499406 -0.8049708363084362 -1.945145187511359 -15.47335699436489 -5.965303587510771 -15.39589692551435 -1.946595105483251 -15.39589771130469 1.853880752392238 -15.47229979428692 1.855330669772816 -15.39484051121988 5.874040790733024 -15.39483972542954 -5.785403239548952 -15.04013907866404 -5.847463225359407 -14.97998396035569 -1.826826254579378 -15.04013953634829 5.6941528698481 -15.03873239205965 1.735571862472703 -15.03873284974418 5.756210470486538 -14.97857723599753 -20.13187847699103 -4.886548309996081 -19.51778234712939 -4.886548309996081 -19.53176699574289 -4.976773996913344 19.4733595225263 -5.014604668516155 19.45937786699727 -4.924377015635736 20.07347361540942 -4.924377015635736 19.81049155353127 -4.60384828740536 19.8279694010471 -4.684816776859036 19.20824711419368 -4.684816776859035 -11.58742557215873 -13.99849849022211 -12.12246911885658 -14.08177050757356 -12.09976018715222 -14.00774611181299 12.89323353164304 12.45224083362812 13.47693195902317 12.51203027906792 13.45118815197472 12.44279844010534 13.56703584054666 8.070163337369181 12.96644536465432 8.074042272389097 13.59223945320884 8.158564510881602 13.87238915572219 1.150688780284061 13.23249801746846 1.152891577898662 13.86785819432984 1.251789078104015 13.34502163273091 0.543784993079222 12.70064717012643 0.5448360458892348 13.35070372348434 0.6620989489209274 13.43354892563288 -2.552814681976314 12.77999277959097 -2.553103402850863 13.42778520730833 -2.434504916130313 13.35043036383278 -3.174749920172591 12.70605597875404 -3.176388565908164 13.35560640873016 -3.07367445013428 13.94085189954146 -9.420090180270188 13.30096771279472 -9.423715927097835 13.91416594955969 -9.331952935300919 6.246267764111797 -10.52846786661774 6.291948354259946 -10.61163952638504 5.481289423857795 -10.52846786661774 -13.05222448821012 -8.58187421502493 -13.03820336607494 -8.663257287449984 -13.65281504003895 -8.57755341964312 6.245847800149925 -1.880433942362893 6.266406242435597 -1.980290088833311 5.411532210389346 -1.880433942362893 5.762895432627286 -2.532489777285673 5.773209501044816 -2.650608049472909 4.900561396497381 -2.532489777285673 5.724733741118499 0.7522634488976678 5.714453933394056 0.6341415790908785 4.845745101101401 0.7522634488976678 5.762895432627284 0.1446212800522538 5.74254738240009 0.04473273972453876 4.90056139649738 0.1446212800522538 6.24584780014993 9.099169542499173 6.200304759878094 9.015957262895716 5.411532210389351 9.099169542499173 6.194009239969899 14.76720583912763 5.481289423857793 14.82647764875103 6.246267764111794 14.82647764875103 -6.681573585152865 -15.68616414123209 -6.05407990356233 -15.74840312665198 -6.737347497045993 -15.74840312665198 12.48855316705312 -9.252799388235788 11.97610575784352 -9.249208305926727 11.99392520395582 -9.168288972593787 20.10612483648646 -0.06994634711913117 20.17767637959077 -0.4293966130357051 20.0994877879545 -0.4963115679919771 -20.16009323139969 -0.416667326695615 -20.08854078378872 -0.05721675942178185 -20.0819047173461 -0.4835823377522973 6.381704649756711 5.37887575203954 2.21729160185552 5.378875306235432 2.217181417853976 5.485903637859425 -2.126016372212715 5.378817155681943 -6.290429271102615 5.378817601486052 -2.125906188207228 5.485845487305934 6.393769807776276 0.5592844259689304 2.217292424198623 0.6760129261795581 6.381705472099821 0.6760133383679016 -2.126017194548094 0.6759985033494707 -6.302495025160681 0.559270003232243 -6.290430093437998 0.6759989155378136 20.9060612931202 -1.562612468000731 20.30848620802033 -1.562612468000731 20.30287072104166 -1.44558241718986 -20.25956944162511 -1.569885710493683 -20.85714420726013 -1.569885710493683 -20.25395425910502 -1.45285561270979 20.9060612931202 -2.225438164502922 20.92394225591409 -2.32830743226695 20.30848620802033 -2.225438164502923 -20.87502839644772 -2.345641707276582 -20.85714420726013 -2.242773584147423 -20.25956944162511 -2.242773584147423 -11.88817560536505 -9.260603524094993 -12.40062473387321 -9.264194641840197 -11.906001431415 -9.179683392264884 2.06097151102202 14.99813896867651 6.140855942856528 14.92067524972966 2.061890325359427 14.92067466034867 -1.969700470176329 14.99746901968832 -1.970619284413044 14.92000471135974 -6.049585348923622 14.92000530074073 5.965295159525155 14.4647058947663 6.026937110409433 14.40431189296153 1.946586677497587 14.46470528209729 -5.874032363336034 14.46368315038819 -1.855322242375778 14.46368253771903 -5.935673121822985 14.40328913493601 -20.39490611426975 -5.70279024415907 -19.78667593043199 -5.70279024415907 -19.80659147745628 -5.778662702814096 19.75080462913672 -5.832812341942816 19.73088776767315 -5.756941274204897 20.33911867998974 -5.756941274204898 -20.13187847699103 -6.184768002291844 -20.10909363375337 -6.125026385394213 -19.51778234712939 -6.184768002291844 20.07347361540942 -6.235629099221573 19.45937786699727 -6.235629099221573 20.05068833849255 -6.175887826897446 12.95201542659176 -8.677205228103345 12.96603823407813 -8.595821883043008 13.56662878573868 -8.591501073186427 6.754616299660663 -15.6462745323125 6.810387904093108 -15.70851477878647 6.127121264295615 -15.70851477878647 -6.268455780373956 14.72898408943928 -6.320714429482843 14.78825583087804 -5.555738032909589 14.78825583087804 -5.486073660803411 9.074287849891656 -6.274845184594558 8.991075588023234 -6.320388277228336 9.074287849891652 -4.976351778539248 0.1415936677974302 -5.818333789585228 0.04170518630734208 -5.838683341421687 0.14159366779743 -4.921641526579893 0.7481925475422897 -5.790347859003281 0.6300707052936024 -5.800628184995603 0.7481925475422897 -4.97635177853925 -2.528411035207693 -5.848997933678714 -2.646529279441869 -5.838683341421689 -2.528411035207693 -5.486073660803408 -1.877463045824859 -6.340948186675116 -1.977319135869942 -6.320388277228332 -1.877463045824859 -5.555738032909594 -10.50352967720198 -6.366395134018609 -10.58670129809006 -6.320714429482849 -10.50352967720198 5.481289423857795 -15.98753793244891 5.510969567998247 -15.91530300543795 6.246267764111796 -15.98753793244891 6.24584780014993 -10.78771876483377 5.411532210389351 -10.78771876483377 5.435328218621169 -10.7037108618419 -13.91353734314843 -12.92171871146923 -13.8861213111479 -12.85288663792676 -13.31306410991564 -12.93200797088304 5.762895432627289 -4.557917422079658 4.900561396497384 -4.557917422079658 4.908463923540076 -4.455744293400096 5.724733741118496 -2.869284616338203 4.845745101101398 -2.869284616338203 4.852122102271112 -2.750999744964681 5.762895432627284 0.8523079849774781 4.900561396497379 0.8523079849774783 4.894223108620866 0.9705958909207604 6.245847800149928 2.592472923930502 5.41153221038935 2.592472923930502 5.404312132754207 2.694682901092746 6.246267764111791 9.189171306058729 5.48128942385779 9.189171306058727 5.457634726556623 9.273197912901006 6.054079903562323 15.20192656145848 6.026653593107932 15.27471197250861 6.737347497045986 15.20192656145848 -7.136840617307224 -15.86362293600253 -7.110680685708544 -15.94955050630191 -7.733638703188792 -15.86362293600253 11.88051109584065 -10.51035110463789 11.89856222168681 -10.59982731610746 11.40621783062836 -10.5074326416561 6.286208139886638 10.34096985642506 2.156045206732569 10.34096953267527 2.155637263309643 10.43185840111712 -2.064771138505662 10.34071600012359 -6.194940479075068 10.34071632387338 -2.064363195715607 10.4316048685672 6.320712284776231 4.047761473604088 2.156046116358797 4.151290242535098 6.286209049512875 4.151290488951789 -2.064772048108888 4.151180774574902 -6.229438067194808 4.047651997446768 -6.194941388678302 4.151181020991611 20.38689106185467 -0.3675360882013236 20.98075509356929 -0.4845585734268668 20.38100385810589 -0.4845585734268669 -20.93300181444927 -0.4772426378975562 -20.33913616396483 -0.3602201031614308 -20.33324933203611 -0.4772426378975562 20.98075509356928 -1.181125789820407 20.98439634225405 -1.297509928046471 20.38100385810589 -1.181125789820407 -20.93664116356928 -1.301150725698631 -20.93300181444927 -1.184766447515376 -20.33324933203611 -1.184766447515376 11.9425107601879 -5.460110390939859 11.46821182019071 -5.457833078615106 11.48129222873351 -5.354517706193568 -11.3796557633655 -5.462912767894873 -11.85395239058167 -5.465190072791427 -11.39273033654533 -5.359597732470252 -11.80992550383406 -10.61126265504318 -11.79187660583792 -10.52178615659516 -11.31758565358503 -10.51886768425294 6.19279012385028 8.64965783282023 2.061893058865427 8.730855545814588 6.140858676362587 8.730855762737491 -1.970622017798412 8.730438441473964 -6.10152548991167 8.649240755296395 -6.04958808230905 8.730438658396796 20.62862864475278 4.663095231786883 20.02542496075475 4.663095231786882 20.04875704449826 4.73834140769583 -19.99575106009266 4.793917561647061 -19.97241806420399 4.718672154314169 -20.5756207094513 4.71867215431417 20.39490611426976 5.063741524841502 20.36955884826999 5.00462172494337 19.786675930432 5.063741524841501 -20.33911867998975 5.116027931513679 -19.73088776767315 5.116027931513679 -20.31376897162592 5.056910494480397 -13.54894758620648 -12.869464876199 -12.99100108768251 -12.87938192315538 -12.9741469154952 -12.94032896927434 12.88781872262451 -12.96191251164105 12.90467236016845 -12.90096561145163 13.46261942713789 -12.89104858824029 13.82781376212289 -12.94490572427047 13.2273405288901 -12.95519498368427 13.80039773012236 -12.876073650728 7.206890183415421 -15.8194261028975 7.80369147570937 -15.8194261028975 7.180731613869257 -15.90535242980736 -6.127121264295615 15.16110947286534 -6.810387904093107 15.16110947286534 -6.099695999247533 15.23389437246668 -5.555738032909594 9.16386601240076 -6.320714429482849 9.163866012400758 -5.532082481422274 9.247892971168845 -5.48607366080341 2.582958482464122 -6.320388277228336 2.582958482464122 -5.478856527112153 2.685168097921368 -4.97635177853925 0.847745541607958 -5.838683341421689 0.847745541607958 -4.970013523685966 0.9660334486462843 -4.921641526579892 -2.864741126722707 -5.800628184995603 -2.864741126722707 -4.928018501940538 -2.746456254488112 -4.976351778539248 -4.548779407090365 -5.838683341421688 -4.548779407090365 -4.984251282078246 -4.446606624270848 -5.486073660803407 -10.7624996933367 -6.320388277228332 -10.7624996933367 -5.509870588640021 -10.67849145069768 -6.320714429482852 -15.94817489215379 -5.585417048391617 -15.87594043913541 -5.555738032909598 -15.94817489215379 21.57906557726768 -2.876514824472174 20.65680101162844 -3.153062524123012 21.51185973897987 -2.822035989789736 6.054079903562315 -15.35735574199614 6.737347497045978 -15.35735574199614 6.79137675512484 -15.41563520193747 19.78228867112949 -4.802496146611683 19.81720279778365 -4.884064396474167 18.82936954318858 -4.965817707361395 18.89928919099147 -2.459749490640927 18.91478716833286 -2.561382932191457 17.92280045984089 -2.570335453807294 18.56983972151805 -1.853871095590934 18.57741461973798 -1.972112239387514 17.58561952867072 -1.92545357159622 18.45123474670648 0.09423992229320444 18.44383717760304 -0.02400991670020455 17.46202567084532 0.06687675697882396 18.50194631647845 0.8301131190783623 18.48737543229769 0.7283892171674928 17.5176845152422 0.8472212211496896 19.1518036754584 4.037028737242856 19.12092319045545 3.954465979097988 18.17621860774099 4.104024287775686 19.89386684210612 4.621830500182345 20.82338060881069 4.415922753373301 20.76594985327408 4.35491387762656 -10.35094543297784 -14.20067283139461 -11.19410078352241 -14.53172579100197 -11.19811047518582 -14.44342460728844 -7.136840617307227 -10.31360030017205 -7.733638703188795 -10.31360030017205 -7.683242648508167 -10.23213913867737 20.32446354097022 0.8900140395694282 20.9060612931202 0.78372669717952 20.30848620802033 0.7837266971795198 -20.85714420726013 0.8063377358356672 -20.2755503314351 0.9126234382160128 -20.25956944162511 0.8063377358356674 20.9060612931202 -0.595340636213596 20.90255189760133 -0.7117279831918816 20.30848620802033 -0.595340636213596 -20.85363672124219 -0.7080966544917728 -20.85714420726013 -0.5917091687065901 -20.25956944162511 -0.5917091687065901 11.50908564424262 -1.918365067201044 11.05997776113018 -1.917319314272627 11.06360858494781 -1.800934974495052 -10.9708844374187 -1.918309278534524 -11.4199952284914 -1.919355031782282 -10.97451876354575 -1.801924903216777 11.49024261449513 -6.437900897545949 11.50125220196862 -6.545300943881646 11.04113504256883 -6.436775475956003 -11.41214246865376 -6.551134297138825 -11.40113237296818 -6.443734284266868 -10.95202189307697 -6.442608863027584 7.80369147570937 -10.28700547585288 7.206890183415421 -10.28700547585288 7.75329385580454 -10.20554490388711 20.80300052005983 2.519946469598104 20.20337945190793 2.519946469598103 20.22565931231011 2.609136494481905 -20.17508078172761 2.649577058616104 -20.15280409823781 2.560384419397016 -20.75242450568366 2.560384419397017 20.62862864475278 2.352086369464359 20.60494166879231 2.27210270209862 20.02542496075475 2.352086369464359 -20.55193740283809 2.305486034160472 -20.5756207094513 2.385472061529084 -19.97241806420399 2.385472061529084 12.2068980965008 12.9550050083438 11.69455395108866 12.94594609188215 11.67241457017144 13.00585786343107 -11.58412638900755 13.0226593553717 -11.60626177456227 12.96274836233339 -12.11860764338409 12.97180716108091 12.72918432577834 13.18306093999296 12.70393517905035 13.10954874643071 12.17129791733646 13.17123547407489 -12.64157854467537 13.20214947501818 -12.08369156497823 13.19032410925815 -12.61632654269563 13.12863790408146 -6.864417233210737 -15.3761661782524 -6.810387904093118 -15.317886759067 -6.127121264295628 -15.317886759067 11.25489979803197 -14.38906050582082 11.25089241115764 -14.47736029460588 10.40773359752547 -14.14631256477208 -20.7612177207908 4.288671046468957 -20.81864838608558 4.349679073782933 -19.88913433797749 4.555583957092581 -19.13396671245228 3.912501603394154 -19.16484697658038 3.995064922279535 -18.18926161225843 4.06206092782526 -18.50563229836227 0.713973065757318 -18.52020368526477 0.8156964303875511 -17.53594028943154 0.8328044420980906 -18.46265677827362 -0.03181936797406507 -18.4700543868238 0.08643046949219194 -17.48084579267644 0.05906730453119619 -18.59516460013114 -1.964343308648128 -18.58758982961047 -1.846102159788938 -17.60336804499703 -1.917684638859098 -18.92986105151579 -2.547164824102136 -18.91436262528865 -2.445531918067848 -17.93787344073092 -2.556117298546288 -19.82431353319132 -4.842691482695914 -19.78939915044415 -4.761122784839052 -18.83648099627789 -4.924445242593923 -21.56115409333136 -2.81300687974492 -21.49394886930313 -2.758528585126467 -20.63888794608658 -3.08955183790076 -6.151187897777986 14.86793685246231 -6.183484001710157 14.8188325427136 -6.88676893606024 15.3445787044166 21.01588486134403 -1.493580908638953 20.97214619359315 -1.450305432604273 21.85257272911928 -1.099374492657775 -6.054079903562326 15.66394356841404 -6.085546252392573 15.57912534756473 -6.737347497045989 15.66394356841404 19.09784261631689 -5.665367083744897 19.07866516452079 -5.605766508192128 20.06451467253897 -5.510338225733223 18.94861090759784 -4.489328350193258 17.96526477264077 -4.567994219834461 17.95663560601861 -4.499031578449101 18.55626228192083 -2.245196215778663 17.56705774949353 -2.272660838106723 17.56448057618941 -2.198361804061612 17.50361834533681 0.3376192558547082 18.48537907942182 0.2463938007939507 17.50111210259477 0.263316631053256 17.98349004384679 2.778780388780819 18.95114781123171 2.650100072375254 17.97479970152297 2.709821865356972 18.66871701664516 4.739838390008994 18.68550973270752 4.799881018867224 19.62350378177931 4.626139503213997 20.48585895366501 3.208972020292398 20.5212234669863 3.256749896532715 21.3551482091582 2.922788511933866 -10.59260645905891 -14.02473504976397 -10.57474531747618 -14.07820756627867 -11.42549649788359 -14.3130698754175 -7.032480610264812 -9.929920506486791 -7.017465549157525 -10.009966694629 -7.564205398152559 -9.929920506486791 20.80300052005983 0.6130911782242035 20.78594527094802 0.5101369711179855 20.20337945190793 0.613091178224203 -20.73536589002804 0.5273515224651979 -20.75242450568366 0.6303045875238176 -20.15280409823781 0.6303045875238178 11.11481591308222 -0.1051635201005277 10.67313058780968 -0.1054507822121825 10.66932013353808 0.0109307059469806 -10.58370889753562 -0.1045602024869996 -11.02538954908752 -0.1042729402951162 -10.57989495614908 0.01182131817607818 11.12108527513962 -2.82985394616313 10.6758855991421 -2.711774660640677 11.1175709227317 -2.711485801621931 -10.58646658533347 -2.713396171815666 -11.03166571549463 -2.831475378943757 -11.0281472352027 -2.713107312988698 -7.032480610264807 -5.980251993563511 -7.564205398152554 -5.980251993563511 -7.530786548996639 -5.875759681946785 7.63471531577972 -5.966528150141411 7.102991448426993 -5.966528150141411 7.601296869834521 -5.862035759979094 7.634715315779718 -9.904777725263328 7.087974166484131 -9.98482475006748 7.102991448426991 -9.904777725263328 11.88104301060168 7.730744070698312 11.40674967366338 7.727387722639384 11.38700320447991 7.808030776517882 -11.31811627320468 7.737400235818781 -11.79240729693525 7.740756613765377 -11.29836349812367 7.818044007809075 12.42236784211999 8.855473325503414 11.93024021143789 8.93997306177841 12.44267920541723 8.944654170067947 -11.84224949512063 8.952765702106669 -12.33438121839557 8.868265640508742 -12.35469020856201 8.957446828418414 -7.13684061730723 14.6035380207491 -7.733638703188799 14.6035380207491 -7.793065852383537 14.66364680158483 7.863116019706955 14.62142281774234 7.803691475709366 14.56131246222641 7.206890183415417 14.56131246222641 6.810387904093108 15.62250881395056 6.158585597260383 15.53769164992117 6.127121264295615 15.62250881395056 10.64812188910312 -13.97020986349114 11.48100331908877 -14.25855713810598 10.63025727708445 -14.02368468870126 -20.47134883064427 3.141884624800533 -21.34064834484623 2.855720136661591 -20.50671077110817 3.189659325645795 -18.67744677331908 4.688548675580548 -19.63223152325436 4.574843078576825 -18.69423976044573 4.748594847996532 -18.96586603948137 2.620070198242451 -17.99820761879756 2.748751986681923 -17.98951765047572 2.679792674409498 -18.50374101007454 0.2355873519280551 -17.52198059616986 0.3268114671119724 -17.51947243429134 0.2525099336327405 -17.58504291080237 -2.261868284593515 -18.57424697963804 -2.234404066597924 -17.58246375705508 -2.187570344374183 -17.98007130213197 -4.537979718092 -18.96341891204808 -4.459312931132367 -17.97144271064198 -4.469016272537027 -20.06924100169798 -5.459150753230877 -19.08339303448883 -5.554584673331036 -19.10257096872654 -5.614188769922377 -21.82463515913867 -1.035607285027535 -20.94419451317123 -1.386516728459617 -20.98792973384786 -1.429789553625454 6.957030406515772 15.30147402807357 6.253764026412599 14.77571310684173 6.221463213333099 14.82481879511972 13.24902279558214 3.294787470836895 13.17250605793369 3.493275937324095 13.23996567473463 3.508783176795775 -5.365113282948636 15.79065007294183 -4.710040908357168 15.22767842466411 -5.39995510525978 15.70665233539627 16.19794462004861 2.754856657617638 16.1220949461399 2.556352607012657 16.13048607222746 2.770365114624273 18.34801597482679 1.481637412947112 18.20345860114789 1.329992227552638 18.29265451660103 1.525032494539118 19.53355452758557 0.3371112082606094 19.56892365470986 0.2736465125813908 19.38331637588949 0.1889224661028608 20.0821404801278 -0.5686390283897488 20.09416422805195 -0.6423614134252477 19.89559330751496 -0.6520758376530369 20.14746044991227 -1.316385372481673 20.13548672438661 -1.390114901023454 19.9488895817624 -1.326100459367725 19.73236464710091 -2.196742952686596 19.69731556752489 -2.260318123429297 19.54638105014318 -2.131632940623904 18.58278942852822 -3.435201583282729 18.52779480529105 -3.478882128864334 18.43703879388979 -3.302870002411925 16.33447133570581 -4.872926882947694 16.26708276076318 -4.888623179742998 16.25777471784159 -4.692823570233458 13.07313341024983 -5.779812798939578 13.00574360763224 -5.764118123836169 13.0831053701237 -5.584033418828343 -16.75140205280221 -7.033609355633292 -16.73455669734293 -6.95378890099922 -15.84941523673392 -6.938987130608046 11.485704578568 3.564039440242556 11.03659715100993 3.562346679198259 11.02256251450557 3.665582742433701 -10.94748000297495 3.566890853070066 -11.39659033852839 3.568583609031864 -10.9334511294356 3.67012660634021 11.49823570533242 0.784514190463575 11.0530095748095 0.9012468114319752 11.50211739701468 0.9028734869298769 -10.96390958408971 0.9030289786852718 -11.40913457640902 0.786296441410674 -11.41302031426358 0.9046556530168958 -7.476732188075237 -2.540275438685691 -7.96185890084587 -2.540275438685691 -7.949814201404601 -2.422254753791453 8.031016493912214 -2.536254287616334 7.545887520374816 -2.536254287616334 8.018975014907184 -2.418233402063202 -7.476732188075234 -6.917994599196333 -7.464511891600614 -7.025276898338348 -7.961858900845867 -6.917994599196333 8.03101649391221 -6.900416800026115 7.533669734336611 -7.007698404937827 7.545887520374811 -6.900416800026115 16.76420119447324 -6.91647899188791 16.78104572894176 -6.996300651314189 15.87906067360353 -6.901676998082103 11.91022314828462 4.561712338596312 11.44809652452617 4.666079386483428 11.92239421787382 4.669030272460829 -11.35951521528867 4.672466824850459 -11.82163888593369 4.568099821856783 -11.83381059580436 4.675417709558539 -7.032480610264804 8.72071542154522 -7.564205398152551 8.720715421545219 -7.614253547443564 8.802314661677276 7.634715315779717 8.694160543473812 7.102991448426989 8.694160543473812 7.684765391583088 8.775759062067047 -7.136840617307227 8.411319751399541 -7.151526848290986 8.331230264692637 -7.733638703188795 8.411319751399541 7.803691475709369 8.386000156298877 7.221578957882544 8.305909864359006 7.206890183415419 8.386000156298877 5.440152179921578 15.75103547255551 5.474990754676886 15.66703843587469 4.785074059763954 15.18806852163023 -12.91785455589404 -5.771413657964802 -12.98524824569778 -5.787108314123944 -12.99521938835092 -5.591329170328322 -16.18736023591789 -4.90079620378512 -16.254743835362 -4.885099940633942 -16.17804683615611 -4.704997013960973 -18.45660410930849 -3.492893670088006 -18.5116046017812 -3.449212762133619 -18.36585358986387 -3.316880083443126 -19.6342150670084 -2.270541307850118 -19.66926621938151 -2.206966020290432 -19.48327895573629 -2.141855888590541 -20.07656025567824 -1.393310997677839 -20.08852736323156 -1.31958186362021 -19.88995920110071 -1.329296898526438 -20.0347334368345 -0.6392674188977939 -20.02271642856252 -0.5655454133313304 -19.83616522247241 -0.6489817931228171 -19.50444059046417 0.2832174139911288 -19.46906936833976 0.3466822125640264 -19.31882967102436 0.1984932301516812 -18.13094297193036 1.342681974469279 -18.27550057868637 1.494328204769843 -18.22013320684589 1.537723585374211 -16.04192664748013 2.567288158049044 -16.1177766731274 2.765791866404721 -16.05032309836031 2.781300296672564 -13.08487286704176 3.500189080775882 -13.16139273782458 3.301700818487659 -13.15233636581025 3.515696304294178 10.24085731453228 3.054641142801304 10.09568434174807 3.206266583057336 10.15105999396724 3.249656014342071 -13.92169498924238 8.525583904608956 -13.92571437982139 8.464181066648459 -14.80733845710934 8.721989234606134 9.729376143567727 -5.485682896584646 9.674365302733431 -5.442009467930161 9.820724959866462 -5.309699448012958 -15.7431166168421 -8.744679841109498 -15.74617360574825 -8.806115397923687 -16.63121274020343 -8.824313949317142 -7.649723849017653 0.503208117632882 -8.118524992821746 0.5032081176328818 -8.130684527790425 0.6212197641389228 8.187117002699868 0.4991882500390427 7.718311818779396 0.4991882500390429 8.199273291994922 0.6172001007674531 -7.649723849017653 -2.827342530455175 -7.645574661377543 -2.94568937160102 -8.118524992821746 -2.827342530455175 8.187117002699868 -2.821886003920568 7.714161150644998 -2.940232951486718 7.718311818779396 -2.821886003920568 -17.35285518253659 -4.781519281615425 -17.33550081610619 -4.674675810283945 -16.46204657156678 -4.723592537597446 17.36116383204319 -4.649529544745183 17.37851949569528 -4.756372010921651 16.48771172748784 -4.698445811863101 15.77341221322411 -8.69490455544441 16.66150737375114 -8.774539078152111 15.77646917625345 -8.756340432034165 -7.476732188075231 3.934684559417278 -7.961858900845864 3.934684559417278 -7.996117669615851 4.039003763958955 8.03101649391221 3.92087212163712 7.545887520374811 3.92087212163712 8.065274653067206 4.025191448810749 -7.03248061026481 5.26692659629437 -7.04576841658478 5.159727383726821 -7.564205398152557 5.266926596294369 7.634715315779718 5.249844130181354 7.116276421466857 5.14264557215134 7.102991448426991 5.249844130181354 -16.35401105570545 5.589322087643444 -16.36932733869319 5.669338509553549 -15.46755489395689 5.45903300351341 16.40125262962586 5.632256087627205 16.38593746804693 5.552238438000799 15.49948268553142 5.421947354805714 14.84800931200649 8.674772106184451 13.96638717917902 8.416962603943121 13.96236775505396 8.478365759693405 -9.583499015840868 -5.444112271117455 -9.638510428180183 -5.487785702994803 -9.729861111525326 -5.311802241436492 -10.00503999929794 3.208677945844417 -10.15021542408105 3.057052493225586 -10.06041621888513 3.252067380666915 7.823263378063171 1.844995796719567 7.637044660860614 1.929707460771202 7.672430506030068 1.993162881079528 7.266002671424891 -4.081227628148306 7.230933229169728 -4.017662908855122 7.41752398173393 -3.952563600562411 -7.476732188075232 1.049556411670443 -7.481029337041679 0.9312145841113194 -7.961858900845867 1.049556411670443 8.031016493912208 1.044163919605646 7.550186096798842 0.9258219855750245 7.54588752037481 1.044163919605646 -17.52887280798863 -2.200391799271471 -17.52253928407527 -2.082104840340035 -16.65121182350999 -2.183526522309906 17.54693523901445 -2.074315040848438 17.55326847356357 -2.192602147985348 16.67561015576078 -2.175736849892744 -16.54224332996499 -5.38969046182404 -17.41554103145738 -5.339073624759178 -16.53793646737794 -5.32047998459549 17.44071208892617 -5.309329019913351 16.56741663537295 -5.359946560773709 16.56311019988906 -5.290735121216711 -17.04231749954915 3.027321072225742 -17.05857124665137 3.134267081755523 -16.16536354207718 2.950948116548893 17.08629494565541 3.10905467310819 17.07003942855553 3.002109703978317 16.19308803469502 2.925737491278382 -16.75249666411863 4.038603306935936 -15.86378180945119 3.918212494690579 -15.86143047294218 3.848944464869951 15.89325589887734 3.888945814367085 16.78196948360307 4.009338306784329 15.89090559118726 3.819676817843149 -7.139709940404122 -4.017280058561446 -7.174782378316723 -4.080844784922408 -7.326306038254803 -3.952180743030327 -7.545772553450412 1.92961163723237 -7.731996629065305 1.844899970947288 -7.581161383160362 1.993067059213717 6.454357718850154 0.02693688988193563 6.255173985870023 0.03665121777820374 6.267210639867439 0.1103728717575611 6.292475976014345 -2.027041327424431 6.10527931616058 -2.091055105081219 6.093292294909722 -2.017326341309507 -17.44600370363494 0.1948067163721705 -17.45223396575996 0.3130953221069958 -16.57304843904786 0.1674341708287272 17.47705044806883 0.3053220131582382 17.47082063427238 0.1870332541952688 16.59786600858757 0.1596606731941048 -16.70405113014801 -2.448568659391437 -17.57530955068302 -2.346780597106894 -16.70235926504646 -2.374251231000029 17.5992031813698 -2.336390013497714 16.72794694877144 -2.43817719827735 16.72625352080001 -2.363860410569207 -17.37580324632672 0.6068323270448055 -16.49823457562174 0.5349616993424446 -16.49675925541783 0.4606435041695667 16.52377211140471 0.5245348956779676 17.40133819795266 0.5964049026787099 16.52229490464012 0.4502173423448165 -6.014329621213945 -2.090569549442515 -6.201531625714024 -2.026555794576184 -6.002348538441281 -2.01684081192003 -6.164158314101604 0.03621855138512806 -6.363341453216346 0.02650422652073411 -6.176189022008093 0.1099401823557091</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1827\" source=\"#ID234\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID230\">\r\n                    <input semantic=\"POSITION\" source=\"#ID228\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID229\"/>\r\n                </vertices>\r\n                <triangles count=\"1272\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID230\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID231\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 12 6 13 7 14 8 15 8 16 7 17 6 10 9 11 10 9 11 8 11 6 10 7 9 1 12 18 13 2 14 3 14 19 13 4 12 20 15 1 16 0 17 5 17 4 16 21 15 8 5 7 4 22 18 23 18 10 4 9 5 10 9 9 11 23 19 22 19 8 11 7 9 6 3 24 20 7 4 10 4 25 20 11 3 10 9 25 21 11 10 6 10 24 21 7 9 26 22 12 23 14 24 15 24 17 23 27 22 14 25 13 26 28 27 29 27 16 26 15 25 30 28 31 29 32 30 33 30 34 29 35 28 2 31 18 32 36 33 37 33 19 32 3 31 38 34 32 35 39 36 40 36 33 35 41 34 20 37 0 38 42 39 43 39 5 38 21 37 22 18 7 4 44 40 45 40 10 4 23 18 10 9 23 19 45 41 44 41 22 19 7 9 12 42 26 43 46 44 47 44 27 43 17 42 24 20 48 45 7 4 10 4 49 45 25 20 49 46 25 21 10 9 7 9 24 21 48 46 13 47 50 48 28 49 29 49 51 48 16 47 52 50 53 51 54 52 55 52 56 51 57 50 58 53 59 54 52 55 57 55 60 54 61 53 30 56 62 57 31 58 34 58 63 57 35 56 38 59 30 60 32 61 33 61 35 60 41 59 36 62 18 63 64 64 65 64 19 63 37 62 38 65 39 66 66 67 67 67 40 66 41 65 68 68 20 69 42 70 43 70 21 69 69 68 44 40 7 4 70 71 71 71 10 4 45 40 10 9 45 41 71 72 70 72 44 41 7 9 68 73 42 74 72 75 73 75 43 74 69 73 46 76 74 77 75 78 76 78 77 77 47 76 26 79 74 80 46 81 47 81 77 80 27 79 48 45 78 82 7 4 10 4 79 82 49 45 79 83 49 46 10 9 7 9 48 46 78 83 80 84 36 85 64 86 65 86 37 85 81 84 82 87 50 88 83 89 84 89 51 88 85 87 28 90 50 91 82 92 85 92 51 91 29 90 54 93 53 94 86 95 87 95 56 94 55 93 52 96 59 97 53 98 56 98 60 97 57 96 88 99 59 100 58 101 61 101 60 100 89 99 62 102 90 103 91 104 92 104 93 103 63 102 62 105 64 106 31 107 34 107 65 106 63 105 94 108 95 109 90 110 93 110 96 109 97 108 66 111 98 112 99 113 100 113 101 112 67 111 66 114 39 115 68 116 69 116 40 115 67 114 7 4 102 117 70 71 71 71 103 117 10 4 103 118 10 9 71 72 70 72 7 9 102 118 104 119 72 120 105 121 106 121 73 120 107 119 75 122 108 123 109 124 110 124 111 123 76 122 104 125 68 126 72 127 73 127 69 126 107 125 74 128 108 129 75 130 76 130 111 129 77 128 54 131 86 132 74 133 77 133 87 132 55 131 78 82 112 134 7 4 10 4 113 134 79 82 113 135 79 83 10 9 7 9 78 83 112 135 80 136 114 137 115 138 116 138 117 137 81 136 118 139 83 140 119 141 120 141 84 140 121 139 80 142 64 143 114 144 117 144 65 143 81 142 82 145 83 146 118 147 121 147 84 146 85 145 82 148 88 149 58 150 61 150 89 149 85 148 86 151 122 152 123 153 124 153 125 152 87 151 126 154 127 155 128 156 129 156 130 155 131 154 132 157 127 158 88 159 89 159 130 158 133 157 62 160 91 161 134 162 135 162 92 161 63 160 90 103 95 163 91 104 92 104 96 163 93 103 62 164 136 165 64 166 65 166 137 165 63 164 138 167 95 109 94 108 97 108 96 109 139 167 140 168 141 169 66 170 67 170 142 169 143 168 144 171 66 172 68 173 69 173 67 172 145 171 7 4 146 174 102 117 103 117 147 174 10 4 147 175 10 9 103 118 102 118 7 9 146 175 148 176 105 177 149 178 150 178 106 177 151 176 109 179 152 180 153 181 154 181 155 180 110 179 148 182 104 183 105 184 106 184 107 183 151 182 108 185 152 186 109 187 110 187 155 186 111 185 144 188 68 189 104 190 107 190 69 189 145 188 74 191 156 192 108 193 111 193 157 192 77 191 86 194 156 195 74 196 77 196 157 195 87 194 112 134 158 197 7 4 10 4 159 197 113 134 159 198 113 135 10 9 7 9 112 135 158 198 115 199 160 200 161 201 162 201 163 200 116 199 164 202 119 203 165 204 166 204 120 203 167 202 115 205 114 206 160 207 163 207 117 206 116 205 118 208 119 209 164 210 167 210 120 209 121 208 136 211 114 212 64 213 65 213 117 212 137 211 118 214 168 215 82 216 85 216 169 215 121 214 168 217 88 218 82 219 85 219 89 218 169 217 170 220 86 221 171 222 172 222 87 221 173 220 174 223 126 154 128 156 129 156 131 154 175 223 128 224 127 158 132 157 133 157 130 158 129 224 132 225 88 226 176 227 177 227 89 226 133 225 134 228 91 229 178 230 179 230 92 229 135 228 136 231 62 160 134 162 135 162 63 160 137 231 180 232 91 233 95 234 96 234 92 233 181 232 182 235 95 236 183 237 184 237 96 236 185 235 186 238 183 239 140 240 143 240 184 239 187 238 140 241 66 242 144 243 145 243 67 242 143 241 7 4 188 244 146 174 147 174 189 244 10 4 189 245 10 9 147 175 146 175 7 9 188 245 190 246 149 247 191 248 192 248 150 247 193 246 153 249 194 250 195 251 196 251 197 250 154 249 190 252 148 253 149 254 150 254 151 253 193 252 152 255 194 256 153 257 154 257 197 256 155 255 198 258 104 259 148 260 151 260 107 259 199 258 108 261 200 262 152 263 155 263 201 262 111 261 198 264 144 265 104 266 107 266 145 265 199 264 156 267 200 268 108 269 111 269 201 268 157 267 86 270 170 271 156 272 157 272 173 271 87 270 158 197 202 273 7 4 10 4 203 273 159 197 203 274 159 198 10 9 7 9 158 198 202 274 161 275 204 276 205 277 206 277 207 276 162 275 208 278 165 279 209 280 210 280 166 279 211 278 161 281 160 282 204 283 207 283 163 282 162 281 164 284 165 285 208 286 211 286 166 285 167 284 212 287 160 288 114 289 117 289 163 288 213 287 164 290 214 291 118 292 121 292 215 291 167 290 136 293 212 294 114 295 117 295 213 294 137 293 214 296 168 297 118 298 121 298 169 297 215 296 176 227 88 226 168 299 169 299 89 226 177 227 216 300 217 301 170 302 173 302 218 301 219 300 128 303 220 304 216 305 219 305 221 304 129 303 132 306 222 307 128 308 129 308 223 307 133 306 132 309 176 310 224 311 225 311 177 310 133 309 226 312 134 313 178 314 179 314 135 313 227 312 178 315 91 316 180 317 181 317 92 316 179 315 136 318 134 319 228 320 229 320 135 319 137 318 180 321 95 322 182 323 185 323 96 322 181 321 186 324 182 325 183 326 184 326 185 325 187 324 230 327 186 328 140 329 143 329 187 328 231 327 232 330 140 331 144 332 145 332 143 331 233 330 234 333 235 334 236 335 237 335 238 334 239 333 240 336 241 337 242 338 243 338 244 337 245 336 246 339 191 340 247 341 248 341 192 340 249 339 195 342 250 343 251 344 252 344 253 343 196 342 246 345 190 346 191 347 192 347 193 346 249 345 194 348 250 349 195 350 196 350 253 349 197 348 254 351 148 352 190 353 193 353 151 352 255 351 152 354 256 355 194 356 197 356 257 355 155 354 198 357 148 358 254 359 255 359 151 358 199 357 152 360 200 361 256 362 257 362 201 361 155 360 232 363 144 364 198 365 199 365 145 364 233 363 156 366 258 367 200 368 201 368 259 367 157 366 156 369 170 370 258 371 259 371 173 370 157 369 202 273 260 372 7 4 10 4 261 372 203 273 261 373 203 274 10 9 7 9 202 274 260 373 205 374 262 375 263 376 264 376 265 375 206 374 266 377 209 378 267 379 268 379 210 378 269 377 205 380 204 381 262 382 265 382 207 381 206 380 208 383 209 384 266 385 269 385 210 384 211 383 160 386 270 387 204 388 207 388 271 387 163 386 272 389 164 390 208 391 211 391 167 390 273 389 212 392 270 393 160 394 163 394 271 393 213 392 272 395 214 396 164 397 167 397 215 396 273 395 212 398 136 399 228 400 229 400 137 399 213 398 274 401 168 402 214 403 215 403 169 402 275 401 176 404 168 405 274 406 275 406 169 405 177 404 217 407 276 408 170 409 173 409 277 408 218 407 216 410 220 411 217 412 218 412 221 411 219 410 128 413 222 414 220 415 221 415 223 414 129 413 132 416 224 417 222 418 223 418 225 417 133 416 176 419 278 420 224 421 225 421 279 420 177 419 226 422 178 423 280 424 281 424 179 423 227 422 228 425 134 426 226 427 227 427 135 426 229 425 178 428 180 429 282 430 283 430 181 429 179 428 180 431 284 432 285 433 286 433 287 432 181 431 288 434 289 435 284 436 287 436 290 435 291 434 230 437 292 438 288 439 291 439 293 438 231 437 230 440 140 441 232 442 233 442 143 441 231 440 294 443 246 444 247 445 248 445 249 444 295 443 296 446 297 447 298 448 299 448 300 447 301 446 302 449 303 450 304 451 305 451 306 450 307 449 250 452 308 453 251 454 252 454 309 453 253 452 310 455 190 456 246 457 249 457 193 456 311 455 194 458 312 459 250 460 253 460 313 459 197 458 254 461 190 462 310 463 311 463 193 462 255 461 194 464 256 465 312 466 313 466 257 465 197 464 314 467 198 468 254 469 255 469 199 468 315 467 200 470 316 471 256 472 257 472 317 471 201 470 314 473 232 363 198 365 199 365 233 363 315 473 200 368 258 367 316 474 317 474 259 367 201 368 170 475 276 476 258 477 259 477 277 476 173 475 298 478 318 479 296 480 301 480 319 479 299 478 320 481 303 482 302 483 307 483 306 482 321 481 263 484 322 485 323 486 324 486 325 485 264 484 326 487 267 488 327 489 328 489 268 488 329 487 263 490 262 491 322 492 325 492 265 491 264 490 266 493 267 494 326 495 329 495 268 494 269 493 204 496 330 497 331 498 332 498 333 497 207 496 334 499 208 500 335 501 336 501 211 500 337 499 270 502 330 503 204 504 207 504 333 503 271 502 334 505 272 506 208 507 211 507 273 506 337 505 270 508 212 509 338 510 339 510 213 509 271 508 340 511 214 512 272 513 273 513 215 512 341 511 212 514 228 515 338 516 339 516 229 515 213 514 274 517 214 512 340 518 341 518 215 512 275 517 176 519 274 520 278 521 279 521 275 520 177 519 276 522 342 523 343 524 344 524 345 523 277 522 342 525 346 526 347 527 348 527 349 526 345 525 350 528 346 529 222 530 223 530 349 529 351 528 222 531 224 532 352 533 353 533 225 532 223 531 224 534 278 535 354 536 355 536 279 535 225 534 226 537 280 538 356 539 357 539 281 538 227 537 178 540 282 541 280 542 281 542 283 541 179 540 228 543 226 544 358 545 359 545 227 544 229 543 180 546 285 547 282 548 283 548 286 547 181 546 284 549 289 550 285 551 286 551 290 550 287 549 292 552 289 553 288 554 291 554 290 553 293 552 360 555 292 556 230 557 231 557 293 556 361 555 362 558 230 559 232 560 233 560 231 559 363 558 246 561 364 562 365 563 366 563 367 562 249 561 364 564 368 565 369 566 370 566 371 565 367 564 372 567 373 568 374 569 375 569 376 568 377 567 373 570 250 571 378 572 379 572 253 571 376 570 310 573 246 574 365 575 366 575 249 574 311 573 250 576 312 577 378 578 379 578 313 577 253 576 380 579 254 580 310 581 311 581 255 580 381 579 256 582 382 583 312 584 313 584 383 583 257 582 380 585 314 586 254 587 255 587 315 586 381 585 256 588 316 589 382 590 383 590 317 589 257 588 362 591 232 592 314 593 315 593 233 592 363 591 258 594 384 595 316 596 317 596 385 595 259 594 276 597 384 598 258 599 259 599 385 598 277 597 322 600 386 601 323 602 324 602 387 601 325 600 326 603 327 604 388 605 389 605 328 604 329 603 331 606 390 607 391 608 392 608 393 607 332 606 394 609 335 610 395 611 396 611 336 610 397 609 330 612 390 613 331 614 332 614 393 613 333 612 394 615 334 616 335 617 336 617 337 616 397 615 330 618 270 619 398 620 399 620 271 619 333 618 400 621 272 622 334 623 337 623 273 622 401 621 270 619 338 624 398 620 399 620 339 624 271 619 340 625 272 622 400 621 401 621 273 622 341 625 338 626 228 627 358 628 359 628 229 627 339 626 274 629 340 630 402 631 403 631 341 630 275 629 278 632 274 633 402 634 403 634 275 633 279 632 276 635 343 636 404 637 405 637 344 636 277 635 342 638 347 639 343 640 344 640 348 639 345 638 347 641 346 642 350 643 351 643 349 642 348 641 350 644 222 645 352 646 353 646 223 645 351 644 352 647 224 648 354 649 355 649 225 648 353 647 354 650 278 651 406 652 407 652 279 651 355 650 280 653 408 654 356 655 357 655 409 654 281 653 358 656 226 657 356 658 357 658 227 657 359 656 410 659 280 660 282 661 283 661 281 660 411 659 412 662 282 663 285 664 286 664 283 663 413 662 289 665 414 666 285 667 286 667 415 666 290 665 292 668 416 669 289 670 290 670 417 669 293 668 360 671 418 672 292 673 293 673 419 672 361 671 360 674 230 675 362 676 363 676 231 675 361 674 364 677 369 678 365 679 366 679 370 678 367 677 368 680 420 681 369 682 370 682 421 681 371 680 422 683 372 684 374 685 375 685 377 684 423 683 374 686 373 687 378 688 379 688 376 687 375 686 424 689 310 690 365 691 366 691 311 690 425 689 312 692 426 693 378 694 379 694 427 693 313 692 424 695 380 696 310 697 311 697 381 696 425 695 312 698 382 699 426 700 427 700 383 699 313 698 428 701 314 702 380 703 381 703 315 702 429 701 316 704 430 705 382 706 383 706 431 705 317 704 362 707 314 708 428 709 429 709 315 708 363 707 316 710 384 711 430 712 431 712 385 711 317 710 276 713 404 714 384 715 385 715 405 714 277 713 391 716 420 717 368 718 371 718 421 717 392 716 422 719 395 720 372 721 377 721 396 720 423 719 391 722 390 723 420 724 421 724 393 723 392 722 394 725 395 726 422 727 423 727 396 726 397 725 432 728 330 729 433 730 434 730 333 729 435 728 436 731 334 732 437 733 438 733 337 732 439 731 330 734 398 735 433 736 434 736 399 735 333 734 400 737 334 738 436 739 439 739 337 738 401 737 398 740 338 741 440 742 441 742 339 741 399 740 340 743 400 744 442 745 443 745 401 744 341 743 338 746 358 747 440 748 441 748 359 747 339 746 402 749 340 750 442 751 443 751 341 750 403 749 278 752 402 753 406 754 407 754 403 753 279 752 404 755 343 756 444 757 445 757 344 756 405 755 343 758 347 759 446 760 447 760 348 759 344 758 347 761 350 762 448 763 449 763 351 762 348 761 352 764 450 765 350 766 351 766 451 765 353 764 354 767 452 768 352 769 353 769 453 768 355 767 454 770 354 771 406 772 407 772 355 771 455 770 408 773 456 774 356 775 357 775 457 774 409 773 410 776 408 777 280 778 281 778 409 777 411 776 358 779 356 780 458 781 459 781 357 780 359 779 412 782 410 783 282 784 283 784 411 783 413 782 414 785 412 786 285 787 286 787 413 786 415 785 416 788 414 789 289 790 290 790 415 789 417 788 418 791 416 792 292 793 293 793 417 792 419 791 460 794 418 795 360 796 361 796 419 795 461 794 360 797 362 798 462 799 463 799 363 798 361 797 464 800 365 801 465 802 466 802 366 801 467 800 468 803 469 804 465 805 466 805 470 804 471 803 472 806 473 807 474 808 475 808 476 807 477 806 378 809 478 810 473 811 476 811 479 810 379 809 464 812 424 689 365 691 366 691 425 689 467 812 378 694 426 693 478 813 479 813 427 693 379 694 480 814 380 815 424 816 425 816 381 815 481 814 382 817 482 818 426 819 427 819 483 818 383 817 480 820 428 821 380 822 381 822 429 821 481 820 430 823 482 824 382 825 383 825 483 824 431 823 462 826 362 827 428 828 429 828 363 827 463 826 384 829 484 830 430 831 431 831 485 830 385 829 384 832 404 833 484 834 485 834 405 833 385 832 432 835 486 836 468 837 471 837 487 836 435 835 437 838 472 839 488 840 489 840 477 839 438 838 433 841 486 842 432 843 435 843 487 842 434 841 436 844 437 845 488 846 489 846 438 845 439 844 490 847 398 848 491 849 492 849 399 848 493 847 400 850 494 851 495 852 496 852 497 851 401 850 398 853 440 854 491 855 492 855 441 854 399 853 442 856 400 857 495 858 496 858 401 857 443 856 440 859 358 860 458 861 459 861 359 860 441 859 402 862 442 863 498 864 499 864 443 863 403 862 406 865 402 866 498 867 499 867 403 866 407 865 404 868 444 869 500 870 501 870 445 869 405 868 343 871 446 872 444 873 445 873 447 872 344 871 448 874 446 875 347 876 348 876 447 875 449 874 450 877 448 878 350 879 351 879 449 878 451 877 452 880 450 881 352 882 353 882 451 881 453 880 454 883 452 884 354 885 355 885 453 884 455 883 502 886 454 887 406 888 407 888 455 887 503 886 456 889 408 890 504 891 505 891 409 890 457 889 356 892 456 893 458 894 459 894 457 893 357 892 408 895 410 896 506 897 507 897 411 896 409 895 410 898 412 899 508 900 509 900 413 899 411 898 414 901 510 902 412 903 413 903 511 902 415 901 416 904 512 905 414 906 415 906 513 905 417 904 418 907 514 908 416 909 417 909 515 908 419 907 460 910 516 911 418 912 419 912 517 911 461 910 462 913 460 914 360 915 361 915 461 914 463 913 469 916 464 800 465 802 466 802 467 800 470 916 486 917 469 918 468 919 471 919 470 918 487 917 488 920 472 921 474 922 475 922 477 921 489 920 473 811 478 810 474 923 475 923 479 810 476 811 518 924 424 925 464 926 467 926 425 925 519 924 426 927 520 928 478 929 479 929 521 928 427 927 518 930 480 931 424 932 425 932 481 931 519 930 482 933 520 934 426 935 427 935 521 934 483 933 522 936 428 937 480 938 481 938 429 937 523 936 430 939 524 940 482 941 483 941 525 940 431 939 462 942 428 943 522 944 523 944 429 943 463 942 430 945 484 946 524 947 525 947 485 946 431 945 484 948 404 949 500 950 501 950 405 949 485 948 526 951 490 952 527 953 528 953 493 952 529 951 494 954 530 955 531 956 532 956 533 955 497 954 490 957 491 958 527 959 528 959 492 958 493 957 495 960 494 961 531 962 532 962 497 961 496 960 534 963 440 964 535 965 536 965 441 964 537 963 442 966 538 967 539 968 540 968 541 967 443 966 440 969 458 970 535 971 536 971 459 970 441 969 498 972 442 973 539 974 540 974 443 973 499 972 502 975 406 976 498 977 499 977 407 976 503 975 500 978 444 979 542 980 543 980 445 979 501 978 444 981 446 982 544 983 545 983 447 982 445 981 546 984 446 985 448 986 449 986 447 985 547 984 548 987 448 988 450 989 451 989 449 988 549 987 450 990 452 991 550 992 551 992 453 991 451 990 452 993 454 994 552 995 553 995 455 994 453 993 454 996 502 997 554 998 555 998 503 997 455 996 456 999 504 1000 556 1001 557 1001 505 1000 457 999 408 1002 506 1003 504 1004 505 1004 507 1003 409 1002 456 1005 558 1006 458 1007 459 1007 559 1006 457 1005 410 1008 508 1009 506 1010 507 1010 509 1009 411 1008 412 1011 510 1012 508 1013 509 1013 511 1012 413 1011 414 1014 512 1015 510 1016 511 1016 513 1015 415 1014 416 1017 514 1018 512 1019 513 1019 515 1018 417 1017 516 1020 514 1021 418 1022 419 1022 515 1021 517 1020 560 1023 516 1024 460 1025 461 1025 517 1024 561 1023 562 1026 460 1027 462 1028 463 1028 461 1027 563 1026 469 1029 564 1030 464 1031 467 1031 565 1030 470 1029 526 1032 566 1033 469 1034 470 1034 567 1033 529 1032 568 1035 530 1036 474 1037 475 1037 533 1036 569 1035 570 1038 474 1039 478 1040 479 1040 475 1039 571 1038 464 1041 564 1042 518 1043 519 1043 565 1042 467 1041 570 1044 478 1045 520 1046 521 1046 479 1045 571 1044 572 1047 480 1048 518 1049 519 1049 481 1048 573 1047 482 1050 574 1051 520 1052 521 1052 575 1051 483 1050 522 1053 480 1054 572 1055 573 1055 481 1054 523 1053 482 1056 524 1057 574 1058 575 1058 525 1057 483 1056 562 1059 462 1060 522 1061 523 1061 463 1060 563 1059 484 1062 576 1063 524 1064 525 1064 577 1063 485 1062 500 1065 576 1066 484 1067 485 1067 577 1066 501 1065 526 1068 527 1069 566 1070 567 1070 528 1069 529 1068 531 1071 530 1072 568 1073 569 1073 533 1072 532 1071 534 1074 578 1075 579 1076 580 1076 581 1075 537 1074 538 1077 582 1078 583 1079 584 1079 585 1078 541 1077 535 1080 578 1081 534 1082 537 1082 581 1081 536 1080 539 1083 538 1084 583 1085 584 1085 541 1084 540 1083 558 1086 535 1087 458 1088 459 1088 536 1087 559 1086 498 1089 539 1090 586 1091 587 1091 540 1090 499 1089 586 1092 502 1093 498 1094 499 1094 503 1093 587 1092 500 1095 542 1096 588 1097 589 1097 543 1096 501 1095 444 1098 544 1099 542 1100 543 1100 545 1099 445 1098 544 1101 446 1102 546 1103 547 1103 447 1102 545 1101 546 1104 448 1105 548 1106 549 1106 449 1105 547 1104 548 1107 450 1108 550 1109 551 1109 451 1108 549 1107 550 1110 452 1111 552 1112 553 1112 453 1111 551 1110 552 1113 454 1114 554 1115 555 1115 455 1114 553 1113 554 1116 502 1117 590 1118 591 1118 503 1117 555 1116 556 1119 504 1120 592 1121 593 1121 505 1120 557 1119 558 1122 456 1123 556 1124 557 1124 457 1123 559 1122 504 1125 506 1126 594 1127 595 1127 507 1126 505 1125 506 1128 508 1129 596 1130 597 1130 509 1129 507 1128 508 1131 510 1132 598 1133 599 1133 511 1132 509 1131 510 1134 512 1135 600 1136 601 1136 513 1135 511 1134 512 1137 514 1138 602 1139 603 1139 515 1138 513 1137 516 1140 604 1141 514 1142 515 1142 605 1141 517 1140 560 1143 606 1144 516 1145 517 1145 607 1144 561 1143 560 1146 460 1147 562 1148 563 1148 461 1147 561 1146 469 1149 566 1150 564 1151 565 1151 567 1150 470 1149 568 1152 474 1153 570 1154 571 1154 475 1153 569 1152 608 1155 518 1156 564 1157 565 1157 519 1156 609 1155 520 1158 610 1159 570 1160 571 1160 611 1159 521 1158 572 1161 518 1162 608 1163 609 1163 519 1162 573 1161 520 1164 574 1165 610 1166 611 1166 575 1165 521 1164 612 1167 522 1168 572 1169 573 1169 523 1168 613 1167 524 1170 614 1171 574 1172 575 1172 615 1171 525 1170 612 1173 562 1174 522 1175 523 1175 563 1174 613 1173 576 1176 614 1177 524 1178 525 1178 615 1177 577 1176 500 1179 588 1180 576 1181 577 1181 589 1180 501 1179 579 1182 616 1183 617 1184 618 1184 619 1183 580 1182 582 1185 620 1186 621 1187 622 1187 623 1186 585 1185 578 1188 616 1189 579 1190 580 1190 619 1189 581 1188 583 1191 582 1192 621 1193 622 1193 585 1192 584 1191 624 1194 578 1195 535 1196 536 1196 581 1195 625 1194 539 1197 583 1198 626 1199 627 1199 584 1198 540 1197 558 1200 624 1201 535 1202 536 1202 625 1201 559 1200 586 1203 539 1204 626 1205 627 1205 540 1204 587 1203 502 1206 586 1207 590 1208 591 1208 587 1207 503 1206 588 1209 542 1210 628 1211 629 1211 543 1210 589 1209 542 1212 544 1213 630 1214 631 1214 545 1213 543 1212 632 1215 544 1216 546 1217 547 1217 545 1216 633 1215 634 1218 546 1219 548 1220 549 1220 547 1219 635 1218 636 1221 548 1222 550 1223 551 1223 549 1222 637 1221 638 1224 550 1225 552 1226 553 1226 551 1225 639 1224 640 1227 552 1228 554 1229 555 1229 553 1228 641 1227 642 1230 554 1231 590 1232 591 1232 555 1231 643 1230 592 1233 644 1234 556 1235 557 1235 645 1234 593 1233 504 1236 594 1237 592 1238 593 1238 595 1237 505 1236 556 1239 646 1240 558 1241 559 1241 647 1240 557 1239 506 1242 596 1243 594 1244 595 1244 597 1243 507 1242 508 1245 598 1246 596 1247 597 1247 599 1246 509 1245 510 1248 600 1249 598 1250 599 1250 601 1249 511 1248 512 1251 602 1252 600 1253 601 1253 603 1252 513 1251 514 1254 604 1255 602 1256 603 1256 605 1255 515 1254 606 1257 604 1258 516 1259 517 1259 605 1258 607 1257 648 1260 606 1261 560 1262 561 1262 607 1261 649 1260 650 1263 560 1264 562 1265 563 1265 561 1264 651 1263 652 1266 564 1267 617 1268 618 1268 565 1267 653 1266 570 1269 654 1270 620 1271 623 1271 655 1270 571 1269 608 1272 564 1273 652 1274 653 1274 565 1273 609 1272 570 1275 610 1276 654 1277 655 1277 611 1276 571 1275 608 1278 656 1279 572 1280 573 1280 657 1279 609 1278 658 1281 610 1282 574 1283 575 1283 611 1282 659 1281 656 1284 612 1285 572 1286 573 1286 613 1285 657 1284 614 1287 658 1288 574 1289 575 1289 659 1288 615 1287 650 1290 562 1291 612 1292 613 1292 563 1291 651 1290 576 1293 660 1294 614 1295 615 1295 661 1294 577 1293 588 1296 660 1297 576 1298 577 1298 661 1297 589 1296 652 1299 617 1300 616 1301 619 1301 618 1300 653 1299 620 1302 654 1303 621 1304 622 1304 655 1303 623 1302 662 1305 616 1306 578 1307 581 1307 619 1306 663 1305 583 1308 621 1309 664 1310 665 1310 622 1309 584 1308 624 1311 662 1312 578 1313 581 1313 663 1312 625 1311 626 1314 583 1315 664 1316 665 1316 584 1315 627 1314 646 1317 624 1318 558 1319 559 1319 625 1318 647 1317 586 1320 626 1321 666 1322 667 1322 627 1321 587 1320 590 1323 586 1324 666 1325 667 1325 587 1324 591 1323 668 1326 588 1327 628 1328 629 1328 589 1327 669 1326 628 1329 542 1330 630 1331 631 1331 543 1330 629 1329 630 1332 544 1333 632 1334 633 1334 545 1333 631 1332 632 1335 546 1336 634 1337 635 1337 547 1336 633 1335 634 1338 548 1339 636 1340 637 1340 549 1339 635 1338 636 1341 550 1342 638 1343 639 1343 551 1342 637 1341 638 1344 552 1345 640 1346 641 1346 553 1345 639 1344 640 1347 554 1348 642 1349 643 1349 555 1348 641 1347 590 1350 670 1351 642 1352 643 1352 671 1351 591 1350 592 1353 672 1354 644 1355 645 1355 673 1354 593 1353 644 1356 646 1357 556 1358 557 1358 647 1357 645 1356 592 1359 594 1360 674 1361 675 1361 595 1360 593 1359 594 1362 596 1363 676 1364 677 1364 597 1363 595 1362 596 1365 598 1366 678 1367 679 1367 599 1366 597 1365 598 1368 600 1369 680 1370 681 1370 601 1369 599 1368 600 1371 602 1372 682 1373 683 1373 603 1372 601 1371 602 1374 604 1375 684 1376 685 1376 605 1375 603 1374 686 1377 604 1378 606 1379 607 1379 605 1378 687 1377 688 1380 606 1381 648 1382 649 1382 607 1381 689 1380 648 1383 560 1384 650 1385 651 1385 561 1384 649 1383 652 1386 690 1387 608 1388 609 1388 691 1387 653 1386 692 1389 654 1390 610 1391 611 1391 655 1390 693 1389 690 1392 656 1393 608 1394 609 1394 657 1393 691 1392 658 1395 692 1396 610 1397 611 1397 693 1396 659 1395 694 1398 612 1399 656 1400 657 1400 613 1399 695 1398 614 1401 696 1402 658 1403 659 1403 697 1402 615 1401 694 1404 650 1405 612 1406 613 1406 651 1405 695 1404 660 1407 696 1408 614 1409 615 1409 697 1408 661 1407 588 1410 668 1411 660 1412 661 1412 669 1411 589 1410 698 1413 652 1414 616 1415 619 1415 653 1414 699 1413 621 1416 654 1417 700 1418 701 1418 655 1417 622 1416 662 1419 698 1420 616 1421 619 1421 699 1420 663 1419 700 1422 664 1423 621 1424 622 1424 665 1423 701 1422 702 1425 662 1426 624 1427 625 1427 663 1426 703 1425 626 1428 664 1429 704 1430 705 1430 665 1429 627 1428 646 1431 702 1432 624 1433 625 1433 703 1432 647 1431 666 1434 626 1435 704 1436 705 1436 627 1435 667 1434 590 1437 666 1438 670 1439 671 1439 667 1438 591 1437 668 1440 628 1441 706 1442 707 1442 629 1441 669 1440 628 1443 630 1444 708 1445 709 1445 631 1444 629 1443 630 1446 632 1447 710 1448 711 1448 633 1447 631 1446 632 1449 634 1450 712 1451 713 1451 635 1450 633 1449 634 1452 636 1453 714 1454 715 1454 637 1453 635 1452 636 1455 638 1456 716 1457 717 1457 639 1456 637 1455 638 1458 640 1459 718 1460 719 1460 641 1459 639 1458 640 1461 642 1462 720 1463 721 1463 643 1462 641 1461 642 1464 670 1465 722 1466 723 1466 671 1465 643 1464 672 1467 724 1468 644 1469 645 1469 725 1468 673 1467 674 1470 672 1471 592 1472 593 1472 673 1471 675 1470 644 1473 726 1474 646 1475 647 1475 727 1474 645 1473 676 1476 674 1477 594 1478 595 1478 675 1477 677 1476 596 1479 678 1480 676 1481 677 1481 679 1480 597 1479 598 1482 680 1483 678 1484 679 1484 681 1483 599 1482 680 1485 600 1486 682 1487 683 1487 601 1486 681 1485 682 1488 602 1489 684 1490 685 1490 603 1489 683 1488 686 1491 684 1492 604 1493 605 1493 685 1492 687 1491 688 1494 686 1495 606 1496 607 1496 687 1495 689 1494 728 1497 688 1498 648 1499 649 1499 689 1498 729 1497 730 1500 648 1501 650 1502 651 1502 649 1501 731 1500 698 1503 690 1504 652 1505 653 1505 691 1504 699 1503 692 1506 700 1507 654 1508 655 1508 701 1507 693 1506 732 1509 656 1510 690 1511 691 1511 657 1510 733 1509 658 1512 734 1513 692 1514 693 1514 735 1513 659 1512 694 1515 656 1516 732 1517 733 1517 657 1516 695 1515 658 1518 696 1519 734 1520 735 1520 697 1519 659 1518 730 1521 650 1522 694 1523 695 1523 651 1522 731 1521 660 1524 736 1525 696 1526 697 1526 737 1525 661 1524 660 1527 668 1528 736 1529 737 1529 669 1528 661 1527 738 1530 698 1531 662 1532 663 1532 699 1531 739 1530 700 1533 740 1534 664 1535 665 1535 741 1534 701 1533 738 1536 662 1537 702 1538 703 1538 663 1537 739 1536 664 1539 740 1540 704 1541 705 1541 741 1540 665 1539 726 1542 702 1543 646 1544 647 1544 703 1543 727 1542 666 1545 704 1546 742 1547 743 1547 705 1546 667 1545 666 1548 742 1549 670 1550 671 1550 743 1549 667 1548 744 1551 668 1552 706 1553 707 1553 669 1552 745 1551 706 1554 628 1555 708 1556 709 1556 629 1555 707 1554 708 1557 630 1558 710 1559 711 1559 631 1558 709 1557 632 1560 712 1561 710 1562 711 1562 713 1561 633 1560 634 1563 714 1564 712 1565 713 1565 715 1564 635 1563 714 1566 636 1567 716 1568 717 1568 637 1567 715 1566 716 1569 638 1570 718 1571 719 1571 639 1570 717 1569 640 1572 720 1573 718 1574 719 1574 721 1573 641 1572 642 1575 722 1576 720 1577 721 1577 723 1576 643 1575 670 1578 746 1579 722 1580 723 1580 747 1579 671 1578 748 1581 724 1582 672 1583 673 1583 725 1582 749 1581 644 1584 724 1585 726 1586 727 1586 725 1585 645 1584 674 1587 748 1588 672 1589 673 1589 749 1588 675 1587 676 1590 748 1591 674 1592 675 1592 749 1591 677 1590 676 1593 678 1594 748 1595 749 1595 679 1594 677 1593 678 1596 680 1597 748 1598 749 1598 681 1597 679 1596 680 1599 682 1600 748 1601 749 1601 683 1600 681 1599 682 1602 684 1603 748 1604 749 1604 685 1603 683 1602 684 1605 686 1606 748 1607 749 1607 687 1606 685 1605 686 1608 688 1609 748 1610 749 1610 689 1609 687 1608 688 1611 750 1612 748 1613 749 1613 751 1612 689 1611 648 1614 730 1615 728 1616 729 1616 731 1615 649 1614 752 1617 690 1618 698 1619 699 1619 691 1618 753 1617 692 1620 754 1621 700 1622 701 1622 755 1621 693 1620 732 1623 690 1624 752 1625 753 1625 691 1624 733 1623 692 1626 734 1627 754 1628 755 1628 735 1627 693 1626 756 1629 694 1630 732 1631 733 1631 695 1630 757 1629 696 1632 758 1633 734 1634 735 1634 759 1633 697 1632 756 1635 730 1636 694 1637 695 1637 731 1636 757 1635 696 1638 736 1639 758 1640 759 1640 737 1639 697 1638 736 1641 668 1642 744 1643 745 1643 669 1642 737 1641 752 1644 698 1645 738 1646 739 1646 699 1645 753 1644 700 1647 754 1648 740 1649 741 1649 755 1648 701 1647 760 1650 738 1651 702 1652 703 1652 739 1651 761 1650 740 1653 762 1654 704 1655 705 1655 763 1654 741 1653 726 1656 760 1657 702 1658 703 1658 761 1657 727 1656 704 1659 762 1660 742 1661 743 1661 763 1660 705 1659 670 1662 742 1663 746 1664 747 1664 743 1663 671 1662 764 1665 706 1666 765 1667 766 1667 707 1666 767 1665 706 1668 708 1669 765 1670 766 1670 709 1669 707 1668 708 1671 710 1672 765 1673 766 1673 711 1672 709 1671 710 1674 712 1675 765 1676 766 1676 713 1675 711 1674 712 1677 714 1678 765 1679 766 1679 715 1678 713 1677 714 1680 716 1681 765 1682 766 1682 717 1681 715 1680 716 1683 718 1684 765 1685 766 1685 719 1684 717 1683 765 1686 718 1687 720 1688 721 1688 719 1687 766 1686 765 1689 720 1690 722 1691 723 1691 721 1690 766 1689 746 1692 765 1693 722 1694 723 1694 766 1693 747 1692 748 1695 768 1696 724 1697 725 1697 769 1696 749 1695 724 1698 770 1699 726 1700 727 1700 771 1699 725 1698 750 1701 772 1702 748 1703 749 1703 773 1702 751 1701 774 1704 728 1705 730 1706 731 1706 729 1705 775 1704 776 1707 732 1708 752 1709 753 1709 733 1708 777 1707 734 1710 778 1711 754 1712 755 1712 779 1711 735 1710 776 1713 756 1714 732 1715 733 1715 757 1714 777 1713 734 1716 758 1717 778 1718 779 1718 759 1717 735 1716 730 1719 756 1720 774 1721 775 1721 757 1720 731 1719 758 1722 736 1723 780 1724 781 1724 737 1723 759 1722 780 1725 736 1726 744 1727 745 1727 737 1726 781 1725 782 1728 752 1729 738 1730 739 1730 753 1729 783 1728 754 1731 784 1732 740 1733 741 1733 785 1732 755 1731 760 1734 782 1735 738 1736 739 1736 783 1735 761 1734 740 1737 784 1738 762 1739 763 1739 785 1738 741 1737 760 1740 726 1741 770 1742 771 1742 727 1741 761 1740 742 1743 762 1744 786 1745 787 1745 763 1744 743 1743 742 1746 786 1747 746 1748 747 1748 787 1747 743 1746 788 1749 764 1750 765 1751 766 1751 767 1750 789 1749 790 1752 765 1753 746 1754 747 1754 766 1753 791 1752 748 1755 792 1756 768 1757 769 1757 793 1756 749 1755 772 1758 794 1759 748 1760 749 1760 795 1759 773 1758 782 1761 776 1762 752 1763 753 1763 777 1762 783 1761 754 1764 778 1765 784 1766 785 1766 779 1765 755 1764 756 1767 776 1768 796 1769 797 1769 777 1768 757 1767 778 1770 758 1771 798 1772 799 1772 759 1771 779 1770 774 1773 756 1774 796 1775 797 1775 757 1774 775 1773 758 1776 780 1777 798 1778 799 1778 781 1777 759 1776 782 1779 760 1780 800 1781 801 1781 761 1780 783 1779 762 1782 784 1783 802 1784 803 1784 785 1783 763 1782 760 1785 770 1786 800 1787 801 1787 771 1786 761 1785 786 1788 762 1789 802 1790 803 1790 763 1789 787 1788 804 1791 788 1792 765 1793 766 1793 789 1792 805 1791 806 1794 765 1795 790 1796 791 1796 766 1795 807 1794 748 1797 808 1798 792 1799 793 1799 809 1798 749 1797 748 1800 794 1801 808 1802 809 1802 795 1801 749 1800 776 1803 782 1804 810 1805 811 1805 783 1804 777 1803 784 1806 778 1807 812 1808 813 1808 779 1807 785 1806 796 1809 776 1810 810 1811 811 1811 777 1810 797 1809 778 1812 798 1813 812 1814 813 1814 799 1813 779 1812 782 1815 800 1816 810 1817 811 1817 801 1816 783 1815 802 1818 784 1819 812 1820 813 1820 785 1819 803 1818 804 1821 765 1822 814 1823 815 1823 766 1822 805 1821 814 1824 765 1825 806 1826 807 1826 766 1825 815 1824</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID235\">\r\n            <mesh>\r\n                <source id=\"ID236\">\r\n                    <float_array count=\"96\" id=\"ID240\">-0.04908180236816406 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.07640528678894043 -0.04908180236816406 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.07640528678894043 -0.04908180236816406 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.1648990213871002 -0.1397031098604202 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.004162006080150604 0.04153963923454285 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.1648990213871002 -0.04908180236816406 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.07640528678894043 0.04153963923454285 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.2324993163347244 -0.1397031098604202 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.004162006080150604 0.1321610063314438 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.2324993163347244 -0.04908180236816406 -2.050858497619629 -0.2324993163347244 0.04153963923454285 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.07640528678894043 0.1321610063314438 -2.050858497619629 -0.07640528678894043 0.04153963923454285 -2.050858497619629 -0.2324993163347244 0.04153963923454285 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.2324993163347244</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID240\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID237\">\r\n                    <float_array count=\"96\" id=\"ID241\">0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID241\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID239\">\r\n                    <float_array count=\"32\" id=\"ID242\">-0.4908180236816406 -0.03274111449718475 -1.397031098604202 -0.6010549227396648 -1.397031098604202 -0.03274111449718475 -0.4908180236816406 -0.6010549227396648 -1.397031098604202 -1.297205634911855 0.4153963923454285 -0.03274111449718475 -0.4908180236816406 -1.297205634911855 0.4153963923454285 -0.6010549227396648 -1.397031098604202 -1.828994621833166 1.321610063314438 -0.03274111449718475 -0.4908180236816406 -1.828994621833166 0.4153963923454285 -1.297205634911855 1.321610063314438 -0.6010549227396648 0.4153963923454285 -1.828994621833166 1.321610063314438 -1.297205634911855 1.321610063314438 -1.828994621833166</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"16\" source=\"#ID242\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID238\">\r\n                    <input semantic=\"POSITION\" source=\"#ID236\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID237\"/>\r\n                </vertices>\r\n                <triangles count=\"36\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID238\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID239\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 1 0 0 5 0 4 1 7 3 6 3 8 4 1 1 4 1 9 4 7 3 10 5 6 3 0 0 5 0 7 3 11 5 12 6 8 4 6 3 7 3 9 4 13 6 14 7 6 3 10 5 11 5 7 3 15 7 12 6 16 8 8 4 9 4 17 8 13 6 14 7 12 6 6 3 7 3 13 6 15 7 18 9 14 7 10 5 11 5 15 7 19 9 20 10 16 8 12 6 13 6 17 8 21 10 22 11 12 6 14 7 15 7 13 6 23 11 24 12 14 7 18 9 19 9 15 7 25 12 22 11 20 10 12 6 13 6 21 10 23 11 24 12 22 11 14 7 15 7 23 11 25 12 26 13 20 10 22 11 23 11 21 10 27 13 28 14 22 11 24 12 25 12 23 11 29 14 28 14 26 13 22 11 23 11 27 13 29 14 30 15 26 13 28 14 29 14 27 13 31 15</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID245\">\r\n            <mesh>\r\n                <source id=\"ID246\">\r\n                    <float_array count=\"462\" id=\"ID249\">-0.3924421966075897 1.913545966148377 0.0538654625415802 -0.003499784041196108 1.913545966148377 0.05373930931091309 -0.003499784041196108 1.89157509803772 0.1127162873744965 -0.003499784041196108 1.89157509803772 0.1127162873744965 -0.003499784041196108 1.913545966148377 0.05373930931091309 -0.3924421966075897 1.913545966148377 0.0538654625415802 -0.3849683403968811 1.89157509803772 0.1122315526008606 -0.3849683403968811 1.89157509803772 0.1122315526008606 0.3854426443576813 1.913545966148377 0.0538654625415802 0.3854426443576813 1.913545966148377 0.0538654625415802 -0.4555876851081848 1.913545966148377 0.0538654625415802 -0.4555876851081848 1.913545966148377 0.0538654625415802 -0.3927546739578247 1.832278966903687 0.1609024703502655 -0.3927546739578247 1.832278966903687 0.1609024703502655 0.3779688477516174 1.89157509803772 0.1122315526008606 0.3779688477516174 1.89157509803772 0.1122315526008606 -0.4815247356891632 1.90060830116272 0.1218081116676331 -0.4815247356891632 1.90060830116272 0.1218081116676331 -0.4985863864421845 1.831613898277283 0.1618779003620148 -0.4985863864421845 1.831613898277283 0.1618779003620148 -0.003499784041196108 1.83673882484436 0.1572884917259216 -0.003499784041196108 1.83673882484436 0.1572884917259216 0.3857554793357849 1.832278966903687 0.1609024703502655 0.3857554793357849 1.832278966903687 0.1609024703502655 0.4525613486766815 1.913545966148377 0.05351218581199646 0.4525613486766815 1.913545966148377 0.05351218581199646 -0.4057326018810272 1.748755574226379 0.202934205532074 -0.4057326018810272 1.748755574226379 0.202934205532074 -0.1956372708082199 1.746377825737 0.2039957940578461 -0.1956372708082199 1.746377825737 0.2039957940578461 0.4956434965133667 1.831613898277283 0.1613763868808746 0.4956434965133667 1.831613898277283 0.1613763868808746 0.4785308539867401 1.90060830116272 0.1212298572063446 0.4785308539867401 1.90060830116272 0.1212298572063446 -0.5137938857078552 1.737711429595947 0.1892369687557221 -0.5137938857078552 1.737711429595947 0.1892369687557221 -0.003499784041196108 1.757756352424622 0.208108589053154 -0.003499784041196108 1.757756352424622 0.208108589053154 0.1886377781629562 1.746377825737 0.2039957940578461 0.1886377781629562 1.746377825737 0.2039957940578461 0.3987329006195068 1.748755574226379 0.202934205532074 0.3987329006195068 1.748755574226379 0.202934205532074 -0.4230424761772156 1.650818824768066 0.2358699589967728 -0.4230424761772156 1.650818824768066 0.2358699589967728 -0.5286108255386353 1.631603360176086 0.214817613363266 -0.5286108255386353 1.631603360176086 0.214817613363266 -0.2041698843240738 1.663896322250366 0.2470194548368454 -0.2041698843240738 1.663896322250366 0.2470194548368454 0.5108861327171326 1.737711429595947 0.1888849139213562 0.5108861327171326 1.737711429595947 0.1888849139213562 0.1971705108880997 1.663896322250366 0.2470194548368454 0.1971705108880997 1.663896322250366 0.2470194548368454 -0.003499784041196108 1.663896322250366 0.2506212294101715 -0.003499784041196108 1.663896322250366 0.2506212294101715 0.4160428643226624 1.650818824768066 0.2358699589967728 0.4160428643226624 1.650818824768066 0.2358699589967728 0.525602400302887 1.631603360176086 0.2142856419086456 0.525602400302887 1.631603360176086 0.2142856419086456 -0.4412959218025208 1.501774668693543 0.2760804295539856 -0.4412959218025208 1.501774668693543 0.2760804295539856 -0.2256496995687485 1.501774907112122 0.2899670302867889 -0.2256496995687485 1.501774907112122 0.2899670302867889 -0.5421937704086304 1.536199450492859 0.2387980967760086 -0.5421937704086304 1.536199450492859 0.2387980967760086 0.2186503261327744 1.501774907112122 0.2899670302867889 0.2186503261327744 1.501774907112122 0.2899670302867889 0.4342963695526123 1.501774668693543 0.2760804295539856 0.4342963695526123 1.501774668693543 0.2760804295539856 -0.003499784041196108 1.501774907112122 0.2931338846683502 -0.003499784041196108 1.501774907112122 0.2931338846683502 -0.5514172911643982 1.437644124031067 0.2581594586372376 -0.5514172911643982 1.437644124031067 0.2581594586372376 -0.4633875489234924 1.329277634620667 0.3124249279499054 -0.4633875489234924 1.329277634620667 0.3124249279499054 -0.2482648938894272 1.33567476272583 0.3311053514480591 -0.2482648938894272 1.33567476272583 0.3311053514480591 0.5393254160881043 1.536199450492859 0.2381628751754761 0.5393254160881043 1.536199450492859 0.2381628751754761 -0.5588521361351013 1.338033318519592 0.2766626179218292 -0.5588521361351013 1.338033318519592 0.2766626179218292 0.2412653863430023 1.33567476272583 0.3311053514480591 0.2412653863430023 1.33567476272583 0.3311053514480591 0.4563882350921631 1.329277634620667 0.3124249279499054 0.4563882350921631 1.329277634620667 0.3124249279499054 -0.003499784041196108 1.326353907585144 0.3321035206317902 -0.003499784041196108 1.326353907585144 0.3321035206317902 0.5483801960945129 1.437644124031067 0.2574158906936646 0.5483801960945129 1.437644124031067 0.2574158906936646 -0.4844794273376465 1.123080253601074 0.3444932699203491 -0.4844794273376465 1.123080253601074 0.3444932699203491 -0.567148745059967 1.231308460235596 0.295699417591095 -0.567148745059967 1.231308460235596 0.295699417591095 0.5556744933128357 1.338033318519592 0.276308536529541 0.5556744933128357 1.338033318519592 0.276308536529541 -0.2700301110744476 1.131339311599731 0.3596623241901398 -0.2700301110744476 1.131339311599731 0.3596623241901398 0.2630306780338287 1.131339311599731 0.3596623241901398 0.2630306780338287 1.131339311599731 0.3596623241901398 0.4774796962738037 1.123080253601074 0.3444932699203491 0.4774796962738037 1.123080253601074 0.3444932699203491 0.5641939043998718 1.231308460235596 0.2950709462165833 0.5641939043998718 1.231308460235596 0.2950709462165833 -0.003499784041196108 1.128503799438477 0.3657594621181488 -0.003499784041196108 1.128503799438477 0.3657594621181488 -0.5044852495193481 0.8832650184631348 0.3699729144573212 -0.5044852495193481 0.8832650184631348 0.3699729144573212 -0.5767728090286255 1.083053588867188 0.3177225887775421 -0.5767728090286255 1.083053588867188 0.3177225887775421 -0.299287348985672 0.8913923501968384 0.3904069364070892 -0.299287348985672 0.8913923501968384 0.3904069364070892 0.2922879457473755 0.8913923501968384 0.3904069364070892 0.2922879457473755 0.8913923501968384 0.3904069364070892 0.4974865317344666 0.8832650184631348 0.3699729144573212 0.4974865317344666 0.8832650184631348 0.3699729144573212 0.573678731918335 1.083053588867188 0.3170293569564819 0.573678731918335 1.083053588867188 0.3170293569564819 -0.003499784041196108 0.8878175616264343 0.3964553773403168 -0.003499784041196108 0.8878175616264343 0.3964553773403168 -0.5283554196357727 0.6259345412254334 0.397999107837677 -0.5283554196357727 0.6259345412254334 0.397999107837677 -0.5918655395507813 0.8816207051277161 0.3470511138439179 -0.5918655395507813 0.8816207051277161 0.3470511138439179 -0.3311246931552887 0.6259345412254334 0.4213344156742096 -0.3311246931552887 0.6259345412254334 0.4213344156742096 -0.6050222516059876 0.7718126773834229 0.3615998923778534 -0.6050222516059876 0.7718126773834229 0.3615998923778534 0.324125200510025 0.6259345412254334 0.4213344156742096 0.324125200510025 0.6259345412254334 0.4213344156742096 0.5213552117347717 0.6259345412254334 0.397999107837677 0.5213552117347717 0.6259345412254334 0.397999107837677 0.5888693928718567 0.8816207051277161 0.3465395271778107 0.5888693928718567 0.8816207051277161 0.3465395271778107 -0.003499784041196108 0.6259345412254334 0.4376304149627686 -0.003499784041196108 0.6259345412254334 0.4376304149627686 -0.5606250166893005 0.4234864413738251 0.4212178885936737 -0.5606250166893005 0.4234864413738251 0.4212178885936737 -0.629096269607544 0.6240295767784119 0.3749243021011353 -0.629096269607544 0.6240295767784119 0.3749243021011353 0.602715015411377 0.7718126773834229 0.3617312014102936 0.602715015411377 0.7718126773834229 0.3617312014102936 -0.3552756011486054 0.4234864413738251 0.4407898485660553 -0.3552756011486054 0.4234864413738251 0.4407898485660553 -0.6648309230804443 0.4212585687637329 0.3920857310295105 -0.6648309230804443 0.4212585687637329 0.3920857310295105 0.3482760787010193 0.4234864413738251 0.4407898485660553 0.3482760787010193 0.4234864413738251 0.4407898485660553 0.553625762462616 0.4234864413738251 0.4212178885936737 0.553625762462616 0.4234864413738251 0.4212178885936737 0.6264829635620117 0.6240295767784119 0.3751082420349121 0.6264829635620117 0.6240295767784119 0.3751082420349121 -0.003499784041196108 0.4255315363407135 0.4577548205852509 -0.003499784041196108 0.4255315363407135 0.4577548205852509 0.6621518731117249 0.4212585687637329 0.3921840190887451 0.6621518731117249 0.4212585687637329 0.3921840190887451</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"154\" source=\"#ID249\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID247\">\r\n                    <float_array count=\"462\" id=\"ID250\">-0.0001782469314118506 0.9359415269660365 0.3521554008225851 2.304130455219981e-012 0.937087038524494 0.349095806662574 -4.17327692578534e-011 0.8124286249016133 0.5830606567420528 4.17327692578534e-011 -0.8124286249016133 -0.5830606567420528 -2.304130455219981e-012 -0.937087038524494 -0.349095806662574 0.0001782469314118506 -0.9359415269660365 -0.3521554008225851 0.02815726933504569 0.8124234393539105 0.5823876057849761 -0.02815726933504569 -0.8124234393539105 -0.5823876057849761 0.001177355043848136 0.9358986257314065 0.3522674781883302 -0.001177355043848136 -0.9358986257314065 -0.3522674781883302 0.07111601620125621 0.9588412546148962 0.2748926348380301 -0.07111601620125621 -0.9588412546148962 -0.2748926348380301 0.002224004402349778 0.5451763948437488 0.8383184074739092 -0.002224004402349778 -0.5451763948437488 -0.8383184074739092 -0.0247490152834155 0.8123773450419 0.5826066730695548 0.0247490152834155 -0.8123773450419 -0.5826066730695548 0.1347837926354865 0.7274531243527497 0.6727891802877163 -0.1347837926354865 -0.7274531243527497 -0.6727891802877163 -0.01188990300743283 0.45042272341769 0.8927362434871036 0.01188990300743283 -0.45042272341769 -0.8927362434871036 -1.812531033613134e-009 0.5749698906834061 0.8181745686633825 1.812531033613134e-009 -0.5749698906834061 -0.8181745686633825 -0.0002663419220773194 0.5452890246601579 0.8382480591371233 0.0002663419220773194 -0.5452890246601579 -0.8382480591371233 -0.06831730452083262 0.9597751257338697 0.2723315147491064 0.06831730452083262 -0.9597751257338697 -0.2723315147491064 -0.06167175424223675 0.3636344597811704 0.9294980227995868 0.06167175424223675 -0.3636344597811704 -0.9294980227995868 -0.02751725272444099 0.4567496534542082 0.889169587239667 0.02751725272444099 -0.4567496534542082 -0.889169587239667 0.01579638502248365 0.4498412523778214 0.8929688246962347 -0.01579638502248365 -0.4498412523778214 -0.8929688246962347 -0.1256799507987488 0.7307929084495699 0.6709294112848553 0.1256799507987488 -0.7307929084495699 -0.6709294112848553 -0.1483123354811652 0.2719284164026189 0.950819850180299 0.1483123354811652 -0.2719284164026189 -0.950819850180299 -1.076934935744015e-008 0.4868752681084012 0.8734715068646328 1.076934935744015e-008 -0.4868752681084012 -0.8734715068646328 0.02751725298650883 0.456749677241571 0.8891695750124365 -0.02751725298650883 -0.456749677241571 -0.8891695750124365 0.06101109977296807 0.3642945231045185 0.9292831356161287 -0.06101109977296807 -0.3642945231045185 -0.9292831356161287 -0.145248349693507 0.3159010042398395 0.9376083790322982 0.145248349693507 -0.3159010042398395 -0.9376083790322982 -0.2222891114857754 0.2854551366133628 0.9322568937239943 0.2222891114857754 -0.2854551366133628 -0.9322568937239943 -0.0474367284323688 0.3634452253373133 0.9304070748737584 0.0474367284323688 -0.3634452253373133 -0.9304070748737584 0.1459011091775654 0.2714276469420584 0.9513358496431497 -0.1459011091775654 -0.2714276469420584 -0.9513358496431497 0.04743676327859917 0.3634452669479714 0.9304070568427392 -0.04743676327859917 -0.3634452669479714 -0.9304070568427392 -7.726431084607996e-009 0.3349265681058958 0.9422442326577578 7.726431084607996e-009 -0.3349265681058958 -0.9422442326577578 0.1431094636710336 0.3156371553435537 0.9380260484519704 -0.1431094636710336 -0.3156371553435537 -0.9380260484519704 0.2182979891680393 0.2842321390783597 0.9335727497309091 -0.2182979891680393 -0.2842321390783597 -0.9335727497309091 -0.1665751974634712 0.2398908308754316 0.9564021606269512 0.1665751974634712 -0.2398908308754316 -0.9564021606269512 -0.04219572394290461 0.2493759021386717 0.9674870440028941 0.04219572394290461 -0.2493759021386717 -0.9674870440028941 -0.2613867269618275 0.2450048606994376 0.9336217634576822 0.2613867269618275 -0.2450048606994376 -0.9336217634576822 0.04219573575736518 0.2493759010541719 0.9674870437671579 -0.04219573575736518 -0.2493759010541719 -0.9674870437671579 0.1644228359734293 0.2399124235060672 0.9567691257863102 -0.1644228359734293 -0.2399124235060672 -0.9567691257863102 -4.360533668269902e-009 0.2401766670986377 0.9707291942562508 4.360533668269902e-009 -0.2401766670986377 -0.9707291942562508 -0.2697549245147201 0.1999895753758608 0.94193229610256 0.2697549245147201 -0.1999895753758608 -0.94193229610256 -0.205165955596271 0.2026383263809331 0.9575200464459233 0.205165955596271 -0.2026383263809331 -0.9575200464459233 -0.04510107884947809 0.1949068748297897 0.9797842634124606 0.04510107884947809 -0.1949068748297897 -0.9797842634124606 0.2577041694106427 0.2436241867406072 0.9350057843154495 -0.2577041694106427 -0.2436241867406072 -0.9350057843154495 -0.3155416212866312 0.206553169256247 0.926158341487029 0.3155416212866312 -0.206553169256247 -0.926158341487029 0.04510104543534891 0.1949068346227504 0.9797842729488866 -0.04510104543534891 -0.1949068346227504 -0.9797842729488866 0.2011697807349986 0.2021535428046418 0.9584699601190244 -0.2011697807349986 -0.2021535428046418 -0.9584699601190244 -4.296743762838351e-010 0.1854674230964988 0.9826504134075068 4.296743762838351e-010 -0.1854674230964988 -0.9826504134075068 0.2675210635041206 0.2016813846098287 0.9422086285337693 -0.2675210635041206 -0.2016813846098287 -0.9422086285337693 -0.2058173284334745 0.1429031004056697 0.9681001658975966 0.2058173284334745 -0.1429031004056697 -0.9681001658975966 -0.3252481571229391 0.1766447668061257 0.9289834566062741 0.3252481571229391 -0.1766447668061257 -0.9289834566062741 0.3084472488844051 0.2058706115497009 0.9286967136561829 -0.3084472488844051 -0.2058706115497009 -0.9286967136561829 -0.04796545790210148 0.137895058325429 0.9892847253130254 0.04796545790210148 -0.137895058325429 -0.9892847253130254 0.04796547033123873 0.1378951115528392 0.9892847172911007 -0.04796547033123873 -0.1378951115528392 -0.9892847172911007 0.2024207883500881 0.1425877581726434 0.9688625060673101 -0.2024207883500881 -0.1425877581726434 -0.9688625060673101 0.318558960484321 0.1757972678665487 0.9314588070901503 -0.318558960484321 -0.1757972678665487 -0.9314588070901503 -5.391486020732135e-009 0.1476432149403069 0.9890406872733246 5.391486020732135e-009 -0.1476432149403069 -0.9890406872733246 -0.1773289548747459 0.1343572735873728 0.9749372106947186 0.1773289548747459 -0.1343572735873728 -0.9749372106947186 -0.3212173299977274 0.1431746513568026 0.9361198887524979 0.3212173299977274 -0.1431746513568026 -0.9361198887524979 -0.06274409473882742 0.1270693842706143 0.9899073442279798 0.06274409473882742 -0.1270693842706143 -0.9899073442279798 0.06274399125447423 0.1270692920287318 0.9899073626278246 -0.06274399125447423 -0.1270692920287318 -0.9899073626278246 0.1739226856060093 0.1350214639577931 0.9754589195359729 -0.1739226856060093 -0.1350214639577931 -0.9754589195359729 0.3147030443890779 0.1431671105088732 0.9383310568881254 -0.3147030443890779 -0.1431671105088732 -0.9383310568881254 -4.80197978026056e-009 0.1328495772137584 0.9911362115441681 4.80197978026056e-009 -0.1328495772137584 -0.9911362115441681 -0.1709425518226716 0.1279235197490857 0.9769412556911282 0.1709425518226716 -0.1279235197490857 -0.9769412556911282 -0.2533455977826842 0.1573595136377819 0.9544914832264431 0.2533455977826842 -0.1573595136377819 -0.9544914832264431 -0.0766108992186908 0.1207361439996178 0.9897239785177517 0.0766108992186908 -0.1207361439996178 -0.9897239785177517 -0.22749638196544 0.1315879079765795 0.9648471478254894 0.22749638196544 -0.1315879079765795 -0.9648471478254894 0.07661103214427249 0.1207362064017146 0.9897239606160457 -0.07661103214427249 -0.1207362064017146 -0.9897239606160457 0.1656929408753884 0.1271979898621564 0.9779399371735934 -0.1656929408753884 -0.1271979898621564 -0.9779399371735934 0.2478673874826266 0.1611480776092019 0.9552973648583963 -0.2478673874826266 -0.1611480776092019 -0.9552973648583963 -4.814492874022326e-009 0.1278209019418282 0.9917972660916029 4.814492874022326e-009 -0.1278209019418282 -0.9917972660916029 -0.1953528286554639 0.1373444081517152 0.9710683734350346 0.1953528286554639 -0.1373444081517152 -0.9710683734350346 -0.2237895774661974 0.1223335681965512 0.966929533683712 0.2237895774661974 -0.1223335681965512 -0.966929533683712 0.217589038094111 0.132316565109581 0.9670301634896823 -0.217589038094111 -0.132316565109581 -0.9670301634896823 -0.07338413420345472 0.1038272878729786 0.9918844000891187 0.07338413420345472 -0.1038272878729786 -0.9918844000891187 -0.255451770674433 0.1427053145778973 0.9562319729283896 0.255451770674433 -0.1427053145778973 -0.9562319729283896 0.07338406236200086 0.1038272705222477 0.9918844072204937 -0.07338406236200086 -0.1038272705222477 -0.9918844072204937 0.189399515785567 0.1365482538004697 0.9723591917620952 -0.189399515785567 -0.1365482538004697 -0.9723591917620952 0.2132922457168499 0.1204664420331665 0.9695330083400631 -0.2132922457168499 -0.1204664420331665 -0.9695330083400631 -3.144688608621132e-009 0.09991715580283653 0.9949957597780363 3.144688608621132e-009 -0.09991715580283653 -0.9949957597780363 0.2443217657506773 0.1408108584240575 0.9594160603879589 -0.2443217657506773 -0.1408108584240575 -0.9594160603879589</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"154\" source=\"#ID250\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID248\">\r\n                    <input semantic=\"POSITION\" source=\"#ID246\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID247\"/>\r\n                </vertices>\r\n                <triangles count=\"232\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID248\"/>\r\n                    <p>0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 0 6 7 5 11 12 6 2 3 7 13 8 14 2 3 15 9 10 6 16 17 7 11 12 18 6 7 19 13 20 12 2 3 13 21 2 14 22 23 15 3 8 24 14 15 25 9 18 16 6 7 17 19 26 18 12 13 19 27 28 12 20 21 13 29 20 2 22 23 3 21 22 14 30 31 15 23 14 24 32 33 25 15 26 12 28 29 13 27 34 18 26 27 19 35 36 28 20 21 29 37 38 20 22 23 21 39 14 32 30 31 33 15 40 22 30 31 23 41 42 26 28 29 27 43 44 34 26 27 35 45 36 20 38 39 21 37 46 28 36 37 29 47 38 22 40 41 23 39 40 30 48 49 31 41 42 44 26 27 45 43 46 42 28 29 43 47 36 38 50 51 39 37 52 46 36 37 47 53 38 40 54 55 41 39 40 48 56 57 49 41 58 44 42 43 45 59 58 42 46 47 43 59 52 36 50 51 37 53 50 38 54 55 39 51 60 46 52 53 47 61 54 40 56 57 41 55 62 44 58 59 45 63 60 58 46 47 59 61 52 50 64 65 51 53 50 54 66 67 55 51 68 60 52 53 61 69 66 54 56 57 55 67 70 62 58 59 63 71 72 58 60 61 59 73 68 52 64 65 53 69 64 50 66 67 51 65 74 60 68 69 61 75 66 56 76 77 57 67 78 70 58 59 71 79 74 72 60 61 73 75 72 78 58 59 79 73 68 64 80 81 65 69 64 66 82 83 67 65 84 74 68 69 75 85 66 76 86 87 77 67 88 72 74 75 73 89 90 78 72 73 79 91 84 68 80 81 69 85 80 64 82 83 65 81 82 66 92 93 67 83 94 74 84 85 75 95 66 86 92 93 87 67 94 88 74 75 89 95 88 90 72 73 91 89 84 80 96 97 81 85 80 82 98 99 83 81 82 92 100 101 93 83 102 94 84 85 95 103 104 88 94 95 89 105 106 90 88 89 91 107 102 84 96 97 85 103 96 80 98 99 81 97 98 82 100 101 83 99 108 94 102 103 95 109 108 104 94 95 105 109 104 106 88 89 107 105 102 96 110 111 97 103 96 98 112 113 99 97 98 100 114 115 101 99 116 108 102 103 109 117 118 104 108 109 105 119 120 106 104 105 107 121 116 102 110 111 103 117 110 96 112 113 97 111 112 98 114 115 99 113 122 108 116 117 109 123 122 118 108 109 119 123 118 124 104 105 125 119 124 120 104 105 121 125 116 110 126 127 111 117 110 112 128 129 113 111 112 114 130 131 115 113 132 122 116 117 123 133 134 118 122 123 119 135 136 124 118 119 125 137 132 116 126 127 117 133 126 110 128 129 111 127 128 112 138 139 113 129 112 130 138 139 131 113 140 122 132 133 123 141 140 134 122 123 135 141 134 142 118 119 143 135 142 136 118 119 137 143 132 126 144 145 127 133 126 128 146 147 129 127 128 138 148 149 139 129 150 140 132 133 141 151 150 132 144 145 133 151 144 126 146 147 127 145 146 128 152 153 129 147 128 148 152 153 149 129</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID253\">\r\n            <mesh>\r\n                <source id=\"ID254\">\r\n                    <float_array count=\"2964\" id=\"ID258\">-0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.94102954864502 -0.2903494238853455 0.4591898620128632 1.94102954864502 -0.2903494238853455 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.4666804373264313 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.4666804373264313 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.94102954864502 -0.2903494238853455 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.4591898620128632 1.94102954864502 -0.2903494238853455 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.4666804373264313 1.927737951278687 -0.2694617509841919 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.4666804373264313 1.927737951278687 -0.2694617509841919 0.4591898620128632 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 0.4591898620128632 1.933063864707947 -0.2819830179214478 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.974754452705383 -0.2916486263275147 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4686544239521027 1.937264442443848 -0.303368866443634 0.4686544239521027 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.4666804373264313 1.925872087478638 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.4666804373264313 1.925872087478638 -0.2546918988227844 0.4591898620128632 1.927737951278687 -0.2694617509841919 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 0.4591898620128632 1.927737951278687 -0.2694617509841919 -0.4761454164981842 1.930520176887512 -0.2916485071182251 -0.4761454164981842 1.930520176887512 -0.2916485071182251 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.963594079017639 -0.303368866443634 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.5049393773078919 1.963594079017639 -0.303368866443634 0.5049393773078919 1.963594079017639 -0.303368866443634 0.4686544239521027 1.950429439544678 -0.3074844181537628 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 0.4686544239521027 1.937264442443848 -0.303368866443634 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.4686544239521027 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.4666804373264313 1.927737951278687 -0.2399222552776337 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.4666804373264313 1.927737951278687 -0.2399222552776337 0.4591898620128632 1.925872087478638 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 0.4591898620128632 1.925872087478638 -0.2546918988227844 -0.4761454164981842 1.92527174949646 -0.2741076946258545 -0.4761454164981842 1.92527174949646 -0.2741076946258545 0.4686544239521027 1.930520176887512 -0.2916485071182251 0.4686544239521027 1.930520176887512 -0.2916485071182251 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.4591898620128632 1.973116874694824 -0.2694617509841919 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.4666804373264313 1.933063864707947 -0.2274011671543121 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.4666804373264313 1.933063864707947 -0.2274011671543121 0.4591898620128632 1.927737951278687 -0.2399222552776337 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 0.4591898620128632 1.927737951278687 -0.2399222552776337 -0.4761454164981842 1.922653794288635 -0.2534168660640717 -0.4761454164981842 1.922653794288635 -0.2534168660640717 0.4686544239521027 1.92527174949646 -0.2741076946258545 0.4686544239521027 1.92527174949646 -0.2741076946258545 -0.5124302506446838 1.930520176887512 -0.2916485071182251 -0.5124302506446838 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.514404296875 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.514404296875 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.963594079017639 -0.303368866443634 0.514404296875 1.967794060707092 -0.2819830179214478 0.514404296875 1.967794060707092 -0.2819830179214478 0.5049393773078919 1.963594079017639 -0.303368866443634 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.514404296875 1.959829092025757 -0.2903494238853455 0.514404296875 1.959829092025757 -0.2903494238853455 0.5049393773078919 1.950429439544678 -0.3074844181537628 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.5049393773078919 1.937264442443848 -0.303368866443634 0.514404296875 1.950429439544678 -0.2932872772216797 0.514404296875 1.950429439544678 -0.2932872772216797 0.5049393773078919 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4666804373264313 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.933063864707947 -0.2274011671543121 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 0.4591898620128632 1.933063864707947 -0.2274011671543121 -0.4761454164981842 1.92527174949646 -0.2327264100313187 -0.4761454164981842 1.92527174949646 -0.2327264100313187 0.4686544239521027 1.922653794288635 -0.2534168660640717 0.4686544239521027 1.922653794288635 -0.2534168660640717 -0.5124302506446838 1.92527174949646 -0.2741076946258545 -0.5124302506446838 1.92527174949646 -0.2741076946258545 0.5049393773078919 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 0.514404296875 1.974986433982849 -0.2546918988227844 0.514404296875 1.974986433982849 -0.2546918988227844 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.974531054496765 -0.2399222552776337 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.4591898620128632 1.973116874694824 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.514404296875 1.94102954864502 -0.2903494238853455 0.514404296875 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.6682524085044861 1.94563889503479 -0.2932872772216797 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.6682524085044861 1.94563889503479 -0.2932872772216797 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.6697498559951782 1.954917311668396 -0.2903493940830231 -0.6697498559951782 1.954917311668396 -0.2903493940830231 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.6710188984870911 1.9627845287323 -0.2819830179214478 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.6710188984870911 1.9627845287323 -0.2819830179214478 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.6718668341636658 1.968037009239197 -0.2694616913795471 -0.6718668341636658 1.968037009239197 -0.2694616913795471 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.6721646189689636 1.969884276390076 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.6721646189689636 1.969884276390076 -0.2546918988227844 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.94102954864502 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4761454164981842 1.928295969963074 -0.1971973478794098 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.4761454164981842 1.928295969963074 -0.1971973478794098 0.4686544239521027 1.92527174949646 -0.2327264100313187 0.4686544239521027 1.92527174949646 -0.2327264100313187 -0.5124302506446838 1.922653794288635 -0.2534168660640717 -0.5124302506446838 1.922653794288635 -0.2534168660640717 0.5049393773078919 1.92527174949646 -0.2741076946258545 0.5049393773078919 1.92527174949646 -0.2741076946258545 -0.5218953490257263 1.933063864707947 -0.2819830179214478 -0.5218953490257263 1.933063864707947 -0.2819830179214478 0.514404296875 1.974986433982849 -0.2546918988227844 0.514404296875 1.973116874694824 -0.2694617509841919 0.6646738648414612 1.969884276390076 -0.2546918988227844 0.6646738648414612 1.969884276390076 -0.2546918988227844 0.514404296875 1.973116874694824 -0.2694617509841919 0.514404296875 1.974986433982849 -0.2546918988227844 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.514404296875 1.967794060707092 -0.2819830179214478 0.6643763184547424 1.968037009239197 -0.2694616913795471 0.6643763184547424 1.968037009239197 -0.2694616913795471 0.514404296875 1.967794060707092 -0.2819830179214478 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.514404296875 1.959829092025757 -0.2903494238853455 0.6635281443595886 1.9627845287323 -0.2819830179214478 0.6635281443595886 1.9627845287323 -0.2819830179214478 0.514404296875 1.959829092025757 -0.2903494238853455 0.514404296875 1.950429439544678 -0.2932872772216797 0.6622587442398071 1.954917311668396 -0.2903493940830231 0.6622587442398071 1.954917311668396 -0.2903493940830231 0.514404296875 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.967794060707092 -0.2274012565612793 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.514404296875 1.94102954864502 -0.2903494238853455 0.6607614159584045 1.94563889503479 -0.2932872772216797 0.6607614159584045 1.94563889503479 -0.2932872772216797 0.514404296875 1.94102954864502 -0.2903494238853455 -0.6667550802230835 1.936360359191895 -0.2903493940830231 -0.6667550802230835 1.936360359191895 -0.2903493940830231 -0.6718668341636658 1.968037009239197 -0.2399222552776337 -0.6718668341636658 1.968037009239197 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4591898620128632 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.4761454164981842 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.928295969963074 -0.1971973478794098 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4686544239521027 1.928295969963074 -0.1971973478794098 -0.5124302506446838 1.92527174949646 -0.2327264100313187 -0.5124302506446838 1.92527174949646 -0.2327264100313187 0.5049393773078919 1.922653794288635 -0.2534168660640717 0.5049393773078919 1.922653794288635 -0.2534168660640717 -0.5218953490257263 1.927737951278687 -0.2694617509841919 -0.5218953490257263 1.927737951278687 -0.2694617509841919 0.514404296875 1.933063864707947 -0.2819830179214478 0.514404296875 1.933063864707947 -0.2819830179214478 0.6643763184547424 1.968037009239197 -0.2399222552776337 0.6643763184547424 1.968037009239197 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.5049393773078919 1.983609795570374 -0.229463130235672 0.5049393773078919 1.983609795570374 -0.229463130235672 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4686544239521027 1.983609795570374 -0.229463130235672 0.659264087677002 1.936360359191895 -0.2903493940830231 0.659264087677002 1.936360359191895 -0.2903493940830231 -0.7710930705070496 1.897564053535461 -0.2932872772216797 -0.7710930705070496 1.897564053535461 -0.2932872772216797 -0.7768009901046753 1.905940294265747 -0.2903493940830231 -0.7768009901046753 1.905940294265747 -0.2903493940830231 -0.7816405296325684 1.913044810295105 -0.2819830179214478 -0.7816405296325684 1.913044810295105 -0.2819830179214478 -0.7848740220069885 1.917791366577148 -0.2694616913795471 -0.7848740220069885 1.917791366577148 -0.2694616913795471 -0.7860094308853149 1.919457793235779 -0.2546918988227844 -0.7860094308853149 1.919457793235779 -0.2546918988227844 -0.7848740220069885 1.917791366577148 -0.2399222552776337 -0.7848740220069885 1.917791366577148 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4686544239521027 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 0.5049393773078919 1.92527174949646 -0.2327264100313187 0.5049393773078919 1.92527174949646 -0.2327264100313187 -0.5218953490257263 1.925872087478638 -0.2546918988227844 -0.5218953490257263 1.925872087478638 -0.2546918988227844 0.514404296875 1.927737951278687 -0.2694617509841919 0.514404296875 1.927737951278687 -0.2694617509841919 -0.6654856204986572 1.928493976593018 -0.281982958316803 -0.6654856204986572 1.928493976593018 -0.281982958316803 0.7773829102516174 1.917791366577148 -0.2399222552776337 0.7773829102516174 1.917791366577148 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.7785183787345886 1.919457793235779 -0.2546918988227844 0.7785183787345886 1.919457793235779 -0.2546918988227844 0.5049393773078919 1.983609795570374 -0.229463130235672 0.5049393773078919 1.983609795570374 -0.229463130235672 0.7773829102516174 1.917791366577148 -0.2694616913795471 0.7773829102516174 1.917791366577148 -0.2694616913795471 0.7741499543190002 1.913044810295105 -0.2819830179214478 0.7741499543190002 1.913044810295105 -0.2819830179214478 0.7693102359771729 1.905940294265747 -0.2903493940830231 0.7693102359771729 1.905940294265747 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.7636018991470337 1.897564053535461 -0.2932872772216797 0.7636018991470337 1.897564053535461 -0.2932872772216797 -0.7653849124908447 1.889186143875122 -0.2903493940830231 -0.7653849124908447 1.889186143875122 -0.2903493940830231 -0.7816405296325684 1.913044810295105 -0.2274011671543121 -0.7816405296325684 1.913044810295105 -0.2274011671543121 -0.6710188984870911 1.9627845287323 -0.2274011671543121 -0.6710188984870911 1.9627845287323 -0.2274011671543121 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 0.514404296875 1.925872087478638 -0.2546918988227844 0.514404296875 1.925872087478638 -0.2546918988227844 -0.6646373271942139 1.923238515853882 -0.2694616913795471 -0.6646373271942139 1.923238515853882 -0.2694616913795471 0.6579948663711548 1.928493976593018 -0.281982958316803 0.6579948663711548 1.928493976593018 -0.281982958316803 0.7741499543190002 1.913044810295105 -0.2274011671543121 0.7741499543190002 1.913044810295105 -0.2274011671543121 0.6635281443595886 1.9627845287323 -0.2274011671543121 0.6635281443595886 1.9627845287323 -0.2274011671543121 0.514404296875 1.967794060707092 -0.2274012565612793 0.514404296875 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.7578940391540527 1.889186143875122 -0.2903493940830231 0.7578940391540527 1.889186143875122 -0.2903493940830231 -0.7926220297813416 1.87386691570282 -0.2936926782131195 -0.7926220297813416 1.87386691570282 -0.2936926782131195 -0.8007404804229736 1.876919627189636 -0.2907206118106842 -0.8007404804229736 1.876919627189636 -0.2907206118106842 -0.8081105947494507 1.879507780075073 -0.2822587192058563 -0.8081105947494507 1.879507780075073 -0.2822587192058563 -0.8095204830169678 1.881236433982849 -0.2695942223072052 -0.8095204830169678 1.881236433982849 -0.2695942223072052 -0.8112494945526123 1.881843686103821 -0.2546553909778595 -0.8112494945526123 1.881843686103821 -0.2546553909778595 -0.8095204830169678 1.881236433982849 -0.239716961979866 -0.8095204830169678 1.881236433982849 -0.239716961979866 -0.8081105947494507 1.879507780075073 -0.2270529717206955 -0.8081105947494507 1.879507780075073 -0.2270529717206955 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5124302506446838 1.928295969963074 -0.1971973478794098 0.514404296875 1.927737951278687 -0.2399222552776337 0.514404296875 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.6643399000167847 1.921393752098084 -0.2546918988227844 -0.6643399000167847 1.921393752098084 -0.2546918988227844 0.6571467518806458 1.923238515853882 -0.2694616913795471 0.6571467518806458 1.923238515853882 -0.2694616913795471 -0.7605457901954651 1.882081866264343 -0.281982958316803 -0.7605457901954651 1.882081866264343 -0.281982958316803 0.80061936378479 1.879507780075073 -0.2270529717206955 0.80061936378479 1.879507780075073 -0.2270529717206955 0.8020292520523071 1.881236433982849 -0.239716961979866 0.8020292520523071 1.881236433982849 -0.239716961979866 0.514404296875 1.967794060707092 -0.2274012565612793 0.514404296875 1.967794060707092 -0.2274012565612793 0.8037582039833069 1.881843686103821 -0.2546553909778595 0.8037582039833069 1.881843686103821 -0.2546553909778595 0.8020292520523071 1.881236433982849 -0.2695942223072052 0.8020292520523071 1.881236433982849 -0.2695942223072052 0.80061936378479 1.879507780075073 -0.2822587192058563 0.80061936378479 1.879507780075073 -0.2822587192058563 0.7932494282722473 1.876919627189636 -0.2907206118106842 0.7932494282722473 1.876919627189636 -0.2907206118106842 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.514404296875 1.959829092025757 -0.2190346866846085 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.514404296875 1.959829092025757 -0.2190346866846085 0.785130500793457 1.87386691570282 -0.2936926782131195 0.785130500793457 1.87386691570282 -0.2936926782131195 -0.7839280962944031 1.870815515518189 -0.2907206118106842 -0.7839280962944031 1.870815515518189 -0.2907206118106842 -0.8007404804229736 1.876919627189636 -0.2185902446508408 -0.8007404804229736 1.876919627189636 -0.2185902446508408 -0.7768009901046753 1.905940294265747 -0.2190346866846085 -0.7768009901046753 1.905940294265747 -0.2190346866846085 -0.6697498559951782 1.954917311668396 -0.2190346866846085 -0.6697498559951782 1.954917311668396 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.5218953490257263 1.94102954864502 -0.2190346866846085 0.514404296875 1.933063864707947 -0.2274011671543121 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.514404296875 1.933063864707947 -0.2274011671543121 0.514404296875 1.927737951278687 -0.2399222552776337 0.514404296875 1.927737951278687 -0.2399222552776337 -0.6646373271942139 1.923238515853882 -0.2399222552776337 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.6646373271942139 1.923238515853882 -0.2399222552776337 0.6568490266799927 1.921393752098084 -0.2546918988227844 0.6568490266799927 1.921393752098084 -0.2546918988227844 -0.757311999797821 1.877334475517273 -0.2694616913795471 -0.757311999797821 1.877334475517273 -0.2694616913795471 0.7530544996261597 1.882081866264343 -0.281982958316803 0.7530544996261597 1.882081866264343 -0.281982958316803 0.7932494282722473 1.876919627189636 -0.2185902446508408 0.7932494282722473 1.876919627189636 -0.2185902446508408 0.7693102359771729 1.905940294265747 -0.2190346866846085 0.7693102359771729 1.905940294265747 -0.2190346866846085 0.6622587442398071 1.954917311668396 -0.2190346866846085 0.6622587442398071 1.954917311668396 -0.2190346866846085 0.514404296875 1.950429439544678 -0.216096967458725 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.514404296875 1.950429439544678 -0.216096967458725 0.514404296875 1.959829092025757 -0.2190346866846085 0.514404296875 1.959829092025757 -0.2190346866846085 0.776436984539032 1.870815515518189 -0.2907206118106842 0.776436984539032 1.870815515518189 -0.2907206118106842 -0.802080512046814 1.844061851501465 -0.2936926782131195 -0.802080512046814 1.844061851501465 -0.2936926782131195 -0.8102076053619385 1.848336219787598 -0.2907206118106842 -0.8102076053619385 1.848336219787598 -0.2907206118106842 -0.8164049386978149 1.851444840431213 -0.2822587192058563 -0.8164049386978149 1.851444840431213 -0.2822587192058563 -0.8189199566841126 1.853061437606812 -0.2695942223072052 -0.8189199566841126 1.853061437606812 -0.2695942223072052 -0.8205373883247376 1.853911638259888 -0.2546553909778595 -0.8205373883247376 1.853911638259888 -0.2546553909778595 -0.8189199566841126 1.853061437606812 -0.239716961979866 -0.8189199566841126 1.853061437606812 -0.239716961979866 -0.8164049386978149 1.851444840431213 -0.2270529717206955 -0.8164049386978149 1.851444840431213 -0.2270529717206955 -0.8102076053619385 1.848336219787598 -0.2185902446508408 -0.8102076053619385 1.848336219787598 -0.2185902446508408 -0.6682524085044861 1.94563889503479 -0.216096967458725 -0.6682524085044861 1.94563889503479 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 0.514404296875 1.94102954864502 -0.2190346866846085 0.514404296875 1.94102954864502 -0.2190346866846085 -0.6654856204986572 1.928493976593018 -0.2274011671543121 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.6654856204986572 1.928493976593018 -0.2274011671543121 0.6571467518806458 1.923238515853882 -0.2399222552776337 0.514404296875 1.933063864707947 -0.2274011671543121 0.514404296875 1.933063864707947 -0.2274011671543121 0.6571467518806458 1.923238515853882 -0.2399222552776337 -0.7566525936126709 1.876231789588928 -0.2546918988227844 -0.7566525936126709 1.876231789588928 -0.2546918988227844 0.7498206496238709 1.877334475517273 -0.2694616913795471 0.7498206496238709 1.877334475517273 -0.2694616913795471 -0.7765578627586365 1.868226766586304 -0.2822587192058563 -0.7765578627586365 1.868226766586304 -0.2822587192058563 0.802716851234436 1.848336219787598 -0.2185902446508408 0.802716851234436 1.848336219787598 -0.2185902446508408 0.8089143037796021 1.851444840431213 -0.2270529717206955 0.8089143037796021 1.851444840431213 -0.2270529717206955 0.8114292621612549 1.853061437606812 -0.239716961979866 0.8114292621612549 1.853061437606812 -0.239716961979866 0.8130461573600769 1.853911638259888 -0.2546553909778595 0.8130461573600769 1.853911638259888 -0.2546553909778595 0.8114292621612549 1.853061437606812 -0.2695942223072052 0.8114292621612549 1.853061437606812 -0.2695942223072052 0.8089143037796021 1.851444840431213 -0.2822587192058563 0.8089143037796021 1.851444840431213 -0.2822587192058563 0.802716851234436 1.848336219787598 -0.2907206118106842 0.802716851234436 1.848336219787598 -0.2907206118106842 0.514404296875 1.950429439544678 -0.216096967458725 0.6607614159584045 1.94563889503479 -0.216096967458725 0.6607614159584045 1.94563889503479 -0.216096967458725 0.514404296875 1.950429439544678 -0.216096967458725 0.7945891618728638 1.844061851501465 -0.2936926782131195 0.7945891618728638 1.844061851501465 -0.2936926782131195 -0.792536735534668 1.838940620422363 -0.2907206118106842 -0.792536735534668 1.838940620422363 -0.2907206118106842 -0.802080512046814 1.844061851501465 -0.2156186848878861 -0.802080512046814 1.844061851501465 -0.2156186848878861 -0.7926220297813416 1.87386691570282 -0.2156186848878861 -0.7926220297813416 1.87386691570282 -0.2156186848878861 -0.7710930705070496 1.897564053535461 -0.216096967458725 -0.7710930705070496 1.897564053535461 -0.216096967458725 -0.6667550802230835 1.936360359191895 -0.2190346866846085 -0.6667550802230835 1.936360359191895 -0.2190346866846085 0.6579948663711548 1.928493976593018 -0.2274011671543121 0.514404296875 1.94102954864502 -0.2190346866846085 0.514404296875 1.94102954864502 -0.2190346866846085 0.6579948663711548 1.928493976593018 -0.2274011671543121 -0.757311999797821 1.877334475517273 -0.2399222552776337 -0.757311999797821 1.877334475517273 -0.2399222552776337 0.7491613626480103 1.876231789588928 -0.2546918988227844 0.7491613626480103 1.876231789588928 -0.2546918988227844 -0.7716328501701355 1.866497397422791 -0.2695942223072052 -0.7716328501701355 1.866497397422791 -0.2695942223072052 0.7690663933753967 1.868226766586304 -0.2822587192058563 0.7690663933753967 1.868226766586304 -0.2822587192058563 0.7945891618728638 1.844061851501465 -0.2156186848878861 0.7945891618728638 1.844061851501465 -0.2156186848878861 0.785130500793457 1.87386691570282 -0.2156186848878861 0.785130500793457 1.87386691570282 -0.2156186848878861 0.7636018991470337 1.897564053535461 -0.216096967458725 0.7636018991470337 1.897564053535461 -0.216096967458725 0.659264087677002 1.936360359191895 -0.2190346866846085 0.659264087677002 1.936360359191895 -0.2190346866846085 0.7850460410118103 1.838940620422363 -0.2907206118106842 0.7850460410118103 1.838940620422363 -0.2907206118106842 -0.8062112331390381 1.823601245880127 -0.2790639102458954 -0.8062112331390381 1.823601245880127 -0.2790639102458954 -0.8124768733978272 1.826184034347534 -0.2772038877010346 -0.8124768733978272 1.826184034347534 -0.2772038877010346 -0.8177905082702637 1.828371405601502 -0.2719063758850098 -0.8177905082702637 1.828371405601502 -0.2719063758850098 -0.8213410377502441 1.829832553863525 -0.2639782726764679 -0.8213410377502441 1.829832553863525 -0.2639782726764679 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8177905082702637 1.828371405601502 -0.2373465597629547 -0.8177905082702637 1.828371405601502 -0.2373465597629547 -0.8124768733978272 1.826184034347534 -0.2320491224527359 -0.8124768733978272 1.826184034347534 -0.2320491224527359 -0.8062112331390381 1.823601245880127 -0.2301888763904572 -0.8062112331390381 1.823601245880127 -0.2301888763904572 -0.7653849124908447 1.889186143875122 -0.2190346866846085 -0.7653849124908447 1.889186143875122 -0.2190346866846085 -0.7605457901954651 1.882081866264343 -0.2274011671543121 -0.7605457901954651 1.882081866264343 -0.2274011671543121 0.7498206496238709 1.877334475517273 -0.2399222552776337 0.7498206496238709 1.877334475517273 -0.2399222552776337 -0.769903838634491 1.865890741348267 -0.2546553909778595 -0.769903838634491 1.865890741348267 -0.2546553909778595 0.7641419172286987 1.866497397422791 -0.2695942223072052 0.7641419172286987 1.866497397422791 -0.2695942223072052 -0.7873572707176209 1.836227893829346 -0.2822587192058563 -0.7873572707176209 1.836227893829346 -0.2822587192058563 0.7987200021743774 1.823601245880127 -0.2301888763904572 0.7987200021743774 1.823601245880127 -0.2301888763904572 0.8049858808517456 1.826184034347534 -0.2320491224527359 0.8049858808517456 1.826184034347534 -0.2320491224527359 0.8102995157241821 1.828371405601502 -0.2373465597629547 0.8102995157241821 1.828371405601502 -0.2373465597629547 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8138501644134522 1.829832553863525 -0.2639782726764679 0.8138501644134522 1.829832553863525 -0.2639782726764679 0.8102995157241821 1.828371405601502 -0.2719063758850098 0.8102995157241821 1.828371405601502 -0.2719063758850098 0.8049858808517456 1.826184034347534 -0.2772038877010346 0.8049858808517456 1.826184034347534 -0.2772038877010346 0.7578940391540527 1.889186143875122 -0.2190346866846085 0.7578940391540527 1.889186143875122 -0.2190346866846085 0.7987200021743774 1.823601245880127 -0.2790639102458954 0.7987200021743774 1.823601245880127 -0.2790639102458954 -0.7999439239501953 1.821020245552063 -0.2772038877010346 -0.7999439239501953 1.821020245552063 -0.2772038877010346 -0.7999439239501953 1.821020245552063 -0.2320491224527359 -0.7999439239501953 1.821020245552063 -0.2320491224527359 -0.792536735534668 1.838940620422363 -0.2185902446508408 -0.792536735534668 1.838940620422363 -0.2185902446508408 -0.7839280962944031 1.870815515518189 -0.2185902446508408 -0.7839280962944031 1.870815515518189 -0.2185902446508408 0.7530544996261597 1.882081866264343 -0.2274011671543121 0.7530544996261597 1.882081866264343 -0.2274011671543121 -0.7716328501701355 1.866497397422791 -0.239716961979866 -0.7716328501701355 1.866497397422791 -0.239716961979866 0.762412965297699 1.865890741348267 -0.2546553909778595 0.762412965297699 1.865890741348267 -0.2546553909778595 -0.7827526926994324 1.833805084228516 -0.2695942223072052 -0.7827526926994324 1.833805084228516 -0.2695942223072052 0.7798661589622498 1.836227893829346 -0.2822587192058563 0.7798661589622498 1.836227893829346 -0.2822587192058563 0.7924529314041138 1.821020245552063 -0.2320491224527359 0.7924529314041138 1.821020245552063 -0.2320491224527359 0.7850460410118103 1.838940620422363 -0.2185902446508408 0.7850460410118103 1.838940620422363 -0.2185902446508408 0.776436984539032 1.870815515518189 -0.2185902446508408 0.776436984539032 1.870815515518189 -0.2185902446508408 0.7924529314041138 1.821020245552063 -0.2772038877010346 0.7924529314041138 1.821020245552063 -0.2772038877010346 -0.8096880912780762 1.815246343612671 -0.2558586299419403 -0.8096880912780762 1.815246343612671 -0.2558586299419403 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.7765578627586365 1.868226766586304 -0.2270528525114059 -0.7765578627586365 1.868226766586304 -0.2270528525114059 0.7641419172286987 1.866497397422791 -0.239716961979866 0.7641419172286987 1.866497397422791 -0.239716961979866 -0.7811350226402283 1.832955837249756 -0.2546553909778595 -0.7811350226402283 1.832955837249756 -0.2546553909778595 0.7752613425254822 1.833805084228516 -0.2695942223072052 0.7752613425254822 1.833805084228516 -0.2695942223072052 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2719063758850098 0.8021973371505737 1.815246343612671 -0.2558586299419403 0.8021973371505737 1.815246343612671 -0.2558586299419403 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.7690663933753967 1.868226766586304 -0.2270528525114059 0.7690663933753967 1.868226766586304 -0.2270528525114059 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7873572707176209 1.836227893829346 -0.2270528525114059 -0.7873572707176209 1.836227893829346 -0.2270528525114059 -0.7827526926994324 1.833805084228516 -0.239716961979866 -0.7827526926994324 1.833805084228516 -0.239716961979866 0.7736440300941467 1.832955837249756 -0.2546553909778595 0.7736440300941467 1.832955837249756 -0.2546553909778595 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2639782726764679 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7798661589622498 1.836227893829346 -0.2270528525114059 0.7798661589622498 1.836227893829346 -0.2270528525114059 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2719063758850098 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2452745586633682 -0.7910812497138977 1.81736946105957 -0.2452745586633682 0.7752613425254822 1.833805084228516 -0.239716961979866 0.7752613425254822 1.833805084228516 -0.239716961979866 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7898352742195129 1.816856741905212 -0.2546263933181763 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2639782726764679 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7910812497138977 1.81736946105957 -0.2452745586633682 -0.7910812497138977 1.81736946105957 -0.2452745586633682 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2452745586633682</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"988\" source=\"#ID258\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID255\">\r\n                    <float_array count=\"2964\" id=\"ID259\">0.01811380957266693 0.866976891652594 -0.4980190350209233 0.01811380957266693 0.866976891652594 -0.4980190350209233 0.01811380957266693 0.866976891652594 -0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0.01811379250568842 0.866976891920706 -0.4980190351749354 -0.01811379250568842 0.866976891920706 -0.4980190351749354 -0.01811379250568842 0.866976891920706 -0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.0009121131494288234 -0.298310708672215 -0.9544683803778329 0.001614307504300969 -0.5285047862956617 -0.8489287866917099 0.002200289293744457 -0.7196483725656897 -0.6943352062156852 -0.002200289293744457 0.7196483725656897 0.6943352062156852 -0.001614307504300969 0.5285047862956617 0.8489287866917099 -0.0009121131494288234 0.298310708672215 0.9544683803778329 0.03884761246150546 0.2980925397878077 -0.9537461406102229 0.03884761246150546 0.2980925397878077 -0.9537461406102229 0.03884761246150546 0.2980925397878077 -0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 1 0 0 -1 -0 -0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.002552514391934026 -0.8355289377748245 -0.5494405143517835 -0.002552514391934026 0.8355289377748245 0.5494405143517835 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 -0.0009121122897470495 -0.298310708672449 -0.9544683803785813 -0.002200287232821748 -0.719648376781204 -0.694335201853018 -0.001614305981759535 -0.5285047859663513 -0.8489287868996188 0.001614305981759535 0.5285047859663513 0.8489287868996188 0.002200287232821748 0.719648376781204 0.694335201853018 0.0009121122897470495 0.298310708672449 0.9544683803785813 0.8320403846287647 6.728158019358152e-006 -0.5547150604603675 0.8055737206021635 -0.334860110908844 -0.4887941149372647 0.8320394359021639 1.297833282873577e-005 -0.5547164833815306 -0.8320394359021639 -1.297833282873577e-005 0.5547164833815306 -0.8055737206021635 0.334860110908844 0.4887941149372647 -0.8320403846287647 -6.728158019358152e-006 0.5547150604603675 0.8055816010006706 0.3348440792358995 -0.4887921099300389 0.8116067224060802 0.2934437497667821 -0.5051586818694401 -0.8116067224060802 -0.2934437497667821 0.5051586818694401 -0.8055816010006706 -0.3348440792358995 0.4887921099300389 0.002648263323064338 -0.867050619351959 -0.4982130168740636 0.002648263323064338 -0.867050619351959 -0.4982130168740636 0.002648263323064338 -0.867050619351959 -0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.3338427968763195 -0.8115972051705556 -0.4794360891017068 0.002949635041474276 -0.9653555796487164 -0.2609212611003802 -0.002949635041474276 0.9653555796487164 0.2609212611003802 -0.3338427968763195 0.8115972051705556 0.4794360891017068 -0.002552511986482694 -0.835528937878214 -0.5494405142057348 0.002552511986482694 0.835528937878214 0.5494405142057348 -0.8055939915198626 0.3348349516607002 -0.4887779413736592 -0.8320507220387324 1.297809478051873e-005 -0.5546995545215382 -0.8116189586545295 0.2934350227654479 -0.505144091687885 0.8116189586545295 -0.2934350227654479 0.505144091687885 0.8320507220387324 -1.297809478051873e-005 0.5546995545215382 0.8055939915198626 -0.3348349516607002 0.4887779413736592 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 -0.8055861114285355 -0.334850983396517 -0.4887799463887985 -0.8320516707037028 6.727990467320525e-006 -0.5546981316300886 0.8320516707037028 -6.727990467320525e-006 0.5546981316300886 0.8055861114285355 0.334850983396517 0.4887799463887985 0.5466316485213796 -0.6118596425677951 -0.5716831453100651 -0.5466316485213796 0.6118596425677951 0.5716831453100651 0.7649780016593277 0.5278720251009558 -0.368998349715981 -0.7649780016593277 -0.5278720251009558 0.368998349715981 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -0.002212084448621615 0.7242674441303389 -0.6895156097256238 -0.002214140911835727 0.7242053730320672 -0.6895807967537286 -0.002553587655163572 0.8355923275804911 -0.5493441009774335 0.002553587655163572 -0.8355923275804911 0.5493441009774335 0.002214140911835727 -0.7242053730320672 0.6895807967537286 0.002212084448621615 -0.7242674441303389 0.6895156097256238 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.1864812486088931 -0.9557434151656247 -0.2275505840133497 0.003055537417817281 -0.9999953318327775 1.934294798560031e-006 -0.003055537417817281 0.9999953318327775 -1.934294798560031e-006 -0.1864812486088931 0.9557434151656247 0.2275505840133497 -0.3338527455496996 -0.8115943561974748 -0.4794339842745131 -0.002949632261432901 -0.9653555796741683 -0.2609212610376411 0.002949632261432901 0.9653555796741683 0.2609212610376411 0.3338527455496996 0.8115943561974748 0.4794339842745131 -0.7649920390725676 0.5278581958797434 -0.3689890312708192 0.7649920390725676 -0.5278581958797434 0.3689890312708192 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 0.002214138825010872 0.7242053730344722 -0.6895807967579033 0.002212082363703796 0.7242674441336792 -0.6895156097288039 0.002553585248665742 0.8355923276848613 -0.5493441008298652 -0.002553585248665742 -0.8355923276848613 0.5493441008298652 -0.002212082363703796 -0.7242674441336792 0.6895156097288039 -0.002214138825010872 -0.7242053730344722 0.6895807967579033 -0.5466429642130603 -0.6118560606134371 -0.5716761589982258 0.5466429642130603 0.6118560606134371 0.5716761589982258 0 3.868158711756917e-006 -0.9999999999925187 0 3.868158711701378e-006 -0.9999999999925188 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 -0 -3.868158711701378e-006 0.9999999999925188 -0 -3.868158711756917e-006 0.9999999999925187 0 0.5281572825815556 -0.8491465626475012 0 0.5281572825815556 -0.8491465626475013 -0 -0.5281572825815556 0.8491465626475013 -0 -0.5281572825815556 0.8491465626475012 0 0.8356446321585987 -0.5492704695726142 0 0.8356446321585989 -0.5492704695726142 -0 -0.8356446321585989 0.5492704695726142 -0 -0.8356446321585987 0.5492704695726142 0.7568791977856552 0.5590129755901407 -0.3385828895281033 -0.7568791977856552 -0.5590129755901407 0.3385828895281033 -0.002554155191691176 0.8357993912333664 -0.5490290100761444 0.002554155191691176 -0.8357993912333664 0.5490290100761444 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.1661060322011099 -0.9860944486220339 -0.005150190599470763 0.002949694936965429 -0.9653554352628204 0.2609217946211268 -0.002949694936965429 0.9653554352628204 -0.2609217946211268 -0.1661060322011099 0.9860944486220339 0.005150190599470763 -0.1864880322547073 -0.9557422919471569 -0.2275497422748767 -0.003055534537986922 -0.999995331841577 1.934293567479863e-006 0.003055534537986922 0.999995331841577 -1.934293567479863e-006 0.1864880322547073 0.9557422919471569 0.2275497422748767 0.2862877336281036 -0.8697972039015308 -0.401860868534326 -0.2862877336281036 0.8697972039015308 0.401860868534326 -2.019804105832881e-017 0.835644632158599 -0.5492704695726142 -1.504631385858392e-017 0.5281572825815555 -0.8491465626475012 -5.394652787860109e-018 0.8356446321585987 -0.5492704695726142 5.394652787860109e-018 -0.8356446321585987 0.5492704695726142 1.504631385858392e-017 -0.5281572825815555 0.8491465626475012 2.019804105832881e-017 -0.835644632158599 0.5492704695726142 -0.7568933467921767 0.5589992110197796 -0.3385739855053869 0.7568933467921767 -0.5589992110197796 0.3385739855053869 0 3.86815871177543e-006 -0.9999999999925187 0 0.5281572825815556 -0.8491465626475012 -0 -0.5281572825815556 0.8491465626475012 -0 -3.86815871177543e-006 0.9999999999925187 -1 0 0 1 -0 -0 0.002554152784050285 0.8357993911402223 -0.5490290102291404 -0.002554152784050285 -0.8357993911402223 0.5490290102291404 0 -0.2983734121066879 -0.9544492165368531 0 3.868158711756917e-006 -0.9999999999925187 -0 -3.868158711756917e-006 0.9999999999925187 -0 0.2983734121066879 0.9544492165368531 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 0 0.965359471880244 -0.2609235329576394 -0 -0.965359471880244 0.2609235329576394 0.7268825143436041 0.6607398573687157 -0.1872555772891412 -0.7268825143436041 -0.6607398573687157 0.1872555772891412 -0.002950127160059584 0.9653490900268844 -0.2609452646322702 0.002950127160059584 -0.9653490900268844 0.2609452646322702 -0.002949448796250568 0.9653929382102103 -0.26078300482519 0.002949448796250568 -0.9653929382102103 0.26078300482519 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.2007501489671204 -0.951725343973551 0.232203030402501 0.002552997604157791 -0.8355269595520708 0.5494435203593774 -0.002552997604157791 0.8355269595520708 -0.5494435203593774 -0.2007501489671204 0.951725343973551 -0.232203030402501 -0.1661127803645202 -0.9860933108704654 -0.005150384072321964 -0.002949692156861799 -0.9653554352876221 0.2609217945607945 0.002949692156861799 0.9653554352876221 -0.2609217945607945 0.1661127803645202 0.9860933108704654 0.005150384072321964 0.1724465557830786 -0.9617809931350786 -0.2126958077693477 -0.1724465557830786 0.9617809931350786 0.2126958077693477 -0.2862975662683983 -0.8697944662238237 -0.4018597890747538 0.2862975662683983 0.8697944662238237 0.4018597890747538 0 -0.8667445901319661 -0.4987522586184146 -0 0.8667445901319661 0.4987522586184146 4.409748279020684e-018 0.965359471880244 -0.2609235329576394 -4.409748279020684e-018 -0.965359471880244 0.2609235329576394 -0.7268976426489947 0.6607244087997335 -0.1872513624184803 0.7268976426489947 -0.6607244087997335 0.1872513624184803 -1 0 0 1 -0 -0 0.002950124379610544 0.965349090051797 -0.2609452645715427 0.002949446016322907 0.9653929382009268 -0.2607830048909988 -0.002949446016322907 -0.9653929382009268 0.2607830048909988 -0.002950124379610544 -0.965349090051797 0.2609452645715427 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 -0.8320362498070469 -8.063598776771518e-006 -0.5547212623849964 -0.803978066699777 -0.3441521864512067 -0.4849521015796744 -0.8320371287516315 -3.026124632421247e-006 -0.5547199440885313 0.8320371287516315 3.026124632421247e-006 0.5547199440885313 0.803978066699777 0.3441521864512067 0.4849521015796744 0.8320362498070469 8.063598776771518e-006 0.5547212623849964 -0.8055654191382256 0.3348837302659184 -0.4887916147928875 -0.8116036193285674 0.2934593149064727 -0.5051546254241303 0.8116036193285674 -0.2934593149064727 0.5051546254241303 0.8055654191382256 -0.3348837302659184 0.4887916147928875 -0.7568503463297163 0.5590451464084897 -0.3385942668411544 -0.7649953272105627 0.5278527817531871 -0.3689899594046245 0.7649953272105627 -0.5278527817531871 0.3689899594046245 0.7568503463297163 -0.5590451464084897 0.3385942668411544 -0.7249140961405115 0.6675523157258524 -0.1699219202629169 -0.7268914757574545 0.6607266118067573 -0.1872675276750152 0.7268914757574545 -0.6607266118067573 0.1872675276750152 0.7249140961405115 -0.6675523157258524 0.1699219202629169 0 0.965359471880244 -0.2609235329576393 -0 -0.965359471880244 0.2609235329576393 0.7249272079121237 0.667543496065336 -0.169900630044745 -0.7249272079121237 -0.667543496065336 0.169900630044745 -0.003055185258789919 0.9999953329104274 6.309564516309169e-007 0.003055185258789919 -0.9999953329104274 -6.309564516309169e-007 -0.003055193244397305 0.9999953328861547 3.846450991081987e-007 0.003055193244397305 -0.9999953328861547 -3.846450991081987e-007 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.396242401047364 -0.8263973975146813 0.400074119374375 0.00161200203617746 -0.5277742081911482 0.8493831800887288 -0.00161200203617746 0.5277742081911482 -0.8493831800887288 -0.396242401047364 0.8263973975146813 -0.400074119374375 -0.2007576106584453 -0.951724024483904 0.2322019874653813 -0.002552995198272918 -0.8355269596566859 0.5494435202114703 0.002552995198272918 0.8355269596566859 -0.5494435202114703 0.2007576106584453 0.951724024483904 -0.2322019874653813 0.1616196621128437 -0.9868424115335599 0.00459778393993502 -0.1616196621128437 0.9868424115335599 -0.00459778393993502 -0.1724535429730829 -0.9617797362109177 -0.2126958263109286 0.1724535429730829 0.9617797362109177 0.2126958263109286 -0.3357453554640401 -0.8484485168976997 -0.4091578796240137 0.3357453554640401 0.8484485168976997 0.4091578796240137 2.37852513665284e-017 -0.8667445901319661 -0.4987522586184147 -2.37852513665284e-017 0.8667445901319661 0.4987522586184147 0.7650013428316465 0.5278468550956063 -0.3689859659004064 0.7249205833962374 0.6675457238996612 -0.1699201408654548 0.7268979590519979 0.6607199911880276 -0.1872657212907171 -0.7268979590519979 -0.6607199911880276 0.1872657212907171 -0.7249205833962374 -0.6675457238996612 0.1699201408654548 -0.7650013428316465 -0.5278468550956063 0.3689859659004064 1.464501951309081e-018 0.965359471880244 -0.2609235329576394 -1.464501951309081e-018 -0.965359471880244 0.2609235329576394 0.8116088634042136 0.2934555747505147 -0.5051483727495967 0.7568564105892773 0.5590392475553451 -0.3385904509029589 -0.7568564105892773 -0.5590392475553451 0.3385904509029589 -0.8116088634042136 -0.2934555747505147 0.5051483727495967 -0.7249423445682703 0.6675281145621809 -0.1698964782475471 0.7249423445682703 -0.6675281145621809 0.1698964782475471 0.8320419656509712 -3.026103993012759e-006 -0.554712689044077 0.8055707295559194 0.3348798184281762 -0.4887855428429281 -0.8055707295559194 -0.3348798184281762 0.4887855428429281 -0.8320419656509712 3.026103993012759e-006 0.554712689044077 -1 0 0 1 -0 -0 0.003055190364844028 0.9999953328949524 3.846453285500369e-007 0.003055182379244019 0.9999953329192248 6.309566859035713e-007 -0.003055182379244019 -0.9999953329192248 -6.309566859035713e-007 -0.003055190364844028 -0.9999953328949524 -3.846453285500369e-007 0.8039834668812202 -0.344147818365849 -0.4849462486664688 0.8320410867311748 -8.063554250222519e-006 -0.554714007328267 -0.8320410867311748 8.063554250222519e-006 0.554714007328267 -0.8039834668812202 0.344147818365849 0.4849462486664688 -0.7664487854284114 -0.4050337947265615 -0.4985016393601074 0.7664487854284114 0.4050337947265615 0.4985016393601074 -0.7205240482818297 0.6934070339913934 -0.00563746918592094 0.7205240482818297 -0.6934070339913934 0.00563746918592094 0 0.9992983021790191 -0.03745535024705565 -0 -0.9992983021790191 0.03745535024705565 0.7193380553647977 0.6943244888794296 -0.02159319907541268 -0.7193380553647977 -0.6943244888794296 0.02159319907541268 0.7289093500560232 0.684238699561087 -0.02255130647786537 -0.7289093500560232 -0.684238699561087 0.02255130647786537 -0.002949335473584697 0.9653475938150504 0.2609508086512788 0.002949335473584697 -0.9653475938150504 -0.2609508086512788 -0.002950301896304013 0.9653916081025115 0.2607879190529493 0.002950301896304013 -0.9653916081025115 -0.2607879190529493 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.001615094735668822 -0.5285024120461672 0.8489302632904412 -8.857905654529529e-007 0.000536850303038527 0.9999998558954735 8.857905654529529e-007 -0.000536850303038527 -0.9999998558954735 -0.001615094735668822 0.5285024120461672 -0.8489302632904412 -0.3962520963852381 -0.8263937323002769 0.4000720876606143 -0.001612000517827052 -0.5277742085236129 0.8493831798850298 0.001612000517827052 0.5277742085236129 -0.8493831798850298 0.3962520963852381 0.8263937323002769 -0.4000720876606143 0.2520181699357093 -0.9561763662848922 0.1490422711195572 -0.2520181699357093 0.9561763662848922 -0.1490422711195572 -0.1616261657716915 -0.9868413456543232 0.004597939223866884 0.1616261657716915 0.9868413456543232 -0.004597939223866884 -0.1962426981760692 -0.9534546635626248 -0.2289388738140783 0.1962426981760692 0.9534546635626248 0.2289388738140783 0.3357496371242677 -0.8484470727281261 -0.4091573608649813 -0.3357496371242677 0.8484470727281261 0.4091573608649813 2.37852513665284e-017 -0.8667445901319661 -0.4987522586184147 -2.37852513665284e-017 0.8667445901319661 0.4987522586184147 0.7205305897862324 0.6934002366019171 -0.005637469530682406 -0.7205305897862324 -0.6934002366019171 0.005637469530682406 4.575417561731639e-018 0.9992983021790192 -0.03745535024705565 -4.575417561731639e-018 -0.9992983021790192 0.03745535024705565 -0.7193533642005128 0.6943086462472908 -0.0215926181751677 0.7193533642005128 -0.6943086462472908 0.0215926181751677 -1 0 0 1 -0 -0 0.002950299115588007 0.9653916080934859 0.2607879191178184 0.002949332693869268 0.9653475938402066 0.2609508085896353 -0.002949332693869268 -0.9653475938402066 -0.2609508085896353 -0.002950299115588007 -0.9653916080934859 -0.2607879191178184 -0.7289242112690209 0.6842228763809267 -0.02255104571515598 0.7289242112690209 -0.6842228763809267 0.02255104571515598 0.7664546770341747 -0.4050299076951926 -0.49849573912408 -0.7664546770341747 0.4050299076951926 0.49849573912408 -0.0002797592049493041 0.006263672890302613 -0.9999803438751738 -0.01106566094474254 0.03668599928103868 -0.9992655746119784 0.01697730248933885 -0.524390261730718 -0.8513087715994557 -0.01697730248933885 0.524390261730718 0.8513087715994557 0.01106566094474254 -0.03668599928103868 0.9992655746119784 0.0002797592049493041 -0.006263672890302613 0.9999803438751738 -0.01780721153823865 0.5319665183544828 -0.8465781278576965 -0.1264676245001224 0.5355571030882171 -0.8349757656872761 0.1264676245001224 -0.5355571030882171 0.8349757656872761 0.01780721153823865 -0.5319665183544828 0.8465781278576965 -0.1893315825615171 0.8206660561074328 -0.5391296469290327 -0.02822700821874184 0.8365546736574295 -0.547155840678806 0.02822700821874184 -0.8365546736574295 0.547155840678806 0.1893315825615171 -0.8206660561074328 0.5391296469290327 -0.03272715821418405 0.9650613597744062 -0.2599721234778792 -0.2155343565998912 0.9421998252081087 -0.2565237425714823 0.2155343565998912 -0.9421998252081087 0.2565237425714823 0.03272715821418405 -0.9650613597744062 0.2599721234778792 -0.2228877374193605 0.9748440975020174 0.0002051183931693147 -0.03389589443880784 0.9994253687680178 -2.455819977344632e-005 0.03389589443880784 -0.9994253687680178 2.455819977344632e-005 0.2228877374193605 -0.9748440975020174 -0.0002051183931693147 -0.7301198465623731 0.6832725967623803 -0.007972964902108899 0.7301198465623731 -0.6832725967623803 0.007972964902108899 2.068868811079841e-018 0.9992983021790191 -0.03745535024705565 -2.068868811079841e-018 -0.9992983021790191 0.03745535024705565 0.7678778063303926 0.6369896413553908 0.06788130339905686 -0.7678778063303926 -0.6369896413553908 -0.06788130339905686 0.8092178749763873 0.5804623039637544 0.09071904152816923 -0.8092178749763873 -0.5804623039637544 -0.09071904152816923 -0.002553622612297775 0.8355937385993449 0.549341954546641 0.002553622612297775 -0.8355937385993449 -0.549341954546641 -0.002554286917194058 0.8358000414649245 0.5490280195997059 0.002554286917194058 -0.8358000414649245 -0.5490280195997059 -1 0 0 1 -0 -0 1.481633289449374e-006 -0.0005762421340112978 0.9999998339713901 -0.001613847109763359 0.5284751012949722 0.848947267389898 0.001613847109763359 -0.5284751012949722 -0.848947267389898 -1.481633289449374e-006 0.0005762421340112978 -0.9999998339713901 8.857880502895044e-007 0.0005368497562072896 0.999999855895767 -0.001615093212392778 -0.5285024117156749 0.8489302634990876 0.001615093212392778 0.5285024117156749 -0.8489302634990876 -8.857880502895044e-007 -0.0005368497562072896 -0.999999855895767 0.4929489107293522 -0.8475429605278416 0.1966527433585581 0.9533497854571083 -0.2073605654130637 0.2193758931160399 -0.9533497854571083 0.2073605654130637 -0.2193758931160399 -0.4929489107293522 0.8475429605278416 -0.1966527433585581 -0.2520271808283023 -0.9561738850512725 0.149042952432157 0.2520271808283023 0.9561738850512725 -0.149042952432157 -0.1616277778155193 -0.9868408232939524 0.004653054795648724 0.1616277778155193 0.9868408232939524 -0.004653054795648724 0.1962459009082128 -0.9534539725555282 -0.2289390062763575 -0.1962459009082128 0.9534539725555282 0.2289390062763575 -0.2777561620133268 -0.830283889877445 -0.4831978649307193 0.2777561620133268 0.830283889877445 0.4831978649307193 0.03389580203817755 0.9994253719014018 -2.457505460847512e-005 0.03272706690551168 0.965061366334949 -0.2599721106185886 0.2228865655285466 0.9748443654123843 0.0002052574352880103 -0.2228865655285466 -0.9748443654123843 -0.0002052574352880103 -0.03272706690551168 -0.965061366334949 0.2599721106185886 -0.03389580203817755 -0.9994253719014018 2.457505460847512e-005 0.730126241693922 0.6832657653076124 -0.007972775458476284 -0.730126241693922 -0.6832657653076124 0.007972775458476284 0.02822692769022931 0.8365546646967691 -0.5471558585332399 0.2155368156360248 0.9421992683628976 -0.2565237217138076 -0.2155368156360248 -0.9421992683628976 0.2565237217138076 -0.02822692769022931 -0.8365546646967691 0.5471558585332399 6.123228085551975e-019 0.9992983021790191 -0.03745535024705565 -6.123228085551975e-019 -0.9992983021790191 0.03745535024705565 0.01780718905203821 0.5319665044789665 -0.846578137049673 0.1893315178785763 0.8206639692342971 -0.5391328462803978 -0.1893315178785763 -0.8206639692342971 0.5391328462803978 -0.01780718905203821 -0.5319665044789665 0.846578137049673 0.0002797632041481558 0.00626367289098501 -0.9999803438740506 0.126465024024466 0.5355555057194289 -0.8349771841146907 -0.126465024024466 -0.5355555057194289 0.8349771841146907 -0.0002797632041481558 -0.00626367289098501 0.9999803438740506 0.00255362020575763 0.8355937387029213 0.5493419544002797 0.002554284509427913 0.8358000413710054 0.5490280197538832 -0.002554284509427913 -0.8358000413710054 -0.5490280197538832 -0.00255362020575763 -0.8355937387029213 -0.5493419544002797 -0.8092297345050434 0.5804462092470282 0.09071623318707789 -0.7678918164356939 0.6369729306543241 0.06787962775923269 0.7678918164356939 -0.6369729306543241 -0.06787962775923269 0.8092297345050434 -0.5804462092470282 -0.09071623318707789 -0.01697729557675344 -0.5243902633278786 -0.8513087707534898 0.01106592119690006 0.03668641810883589 -0.9992655563534688 -0.01106592119690006 -0.03668641810883589 0.9992655563534688 0.01697729557675344 0.5243902633278786 0.8513087707534898 0.1184825435448558 -0.4899915571089545 -0.8636377486174882 -0.1184825435448558 0.4899915571089545 0.8636377486174882 -0.2167209968464306 0.9418398285204125 0.256845764883382 0.2167209968464306 -0.9418398285204125 -0.256845764883382 -0.7802832047922998 0.6145788157087936 0.1159784445534376 0.7802832047922998 -0.6145788157087936 -0.1159784445534376 8.335971109177908e-018 0.9965072187388201 0.08350666441321454 -8.335971109177908e-018 -0.9965072187388201 -0.08350666441321454 6.602877351672787e-018 0.9965072187388201 0.08350666441321454 -6.602877351672787e-018 -0.9965072187388201 -0.08350666441321454 0.91484729386902 0.3766843762805661 0.1454761477584959 -0.91484729386902 -0.3766843762805661 -0.1454761477584959 0.9380738936174975 0.3098261895273916 0.1550003303101148 -0.9380738936174975 -0.3098261895273916 -0.1550003303101148 -0.001613329526401327 0.5278221017331963 0.8493534164820853 0.001613329526401327 -0.5278221017331963 -0.8493534164820853 0.001613845587672781 0.5284751009650505 0.84894726759817 -1.481630220660002e-006 -0.0005762415874944916 0.9999998339717051 1.481630220660002e-006 0.0005762415874944916 -0.9999998339717051 -0.001613845587672781 -0.5284751009650505 -0.84894726759817 0.9712365635796946 -0.1527066280144715 0.1827025542414654 0.9819609856057684 -0.008174300589236617 0.1889068647721009 -0.9819609856057684 0.008174300589236617 -0.1889068647721009 -0.9712365635796946 0.1527066280144715 -0.1827025542414654 -0.4929567288601705 -0.8475387800870704 0.1966511625188134 -0.9533535455219041 -0.2073525445156425 0.2193671341010386 0.9533535455219041 0.2073525445156425 -0.2193671341010386 0.4929567288601705 0.8475387800870704 -0.1966511625188134 -0.1605110079563473 -0.9819532101403307 0.1000205449892033 0.1605110079563473 0.9819532101403307 -0.1000205449892033 0.1616305651411281 -0.9868403664580093 0.004653121659863324 -0.1616305651411281 0.9868403664580093 -0.004653121659863324 -0.1621884459272584 -0.9565899097374314 -0.2421376728149378 0.1621884459272584 0.9565899097374314 0.2421376728149378 0.2777603923494519 -0.830283070778745 -0.4831968406561615 -0.2777603923494519 0.830283070778745 0.4831968406561615 0.2167232423485981 0.9418394466154173 0.2568452705912165 -0.2167232423485981 -0.9418394466154173 -0.2568452705912165 0.7802889215868538 0.6145718648083991 0.1159768159364256 -0.7802889215868538 -0.6145718648083991 -0.1159768159364256 1.030934398677886e-018 0.9965072187388201 0.08350666441321455 -1.030934398677886e-018 -0.9965072187388201 -0.08350666441321455 0.001613328006849522 0.5278221020668691 0.849353416277614 -0.001613328006849522 -0.5278221020668691 -0.849353416277614 -0.9380787959196464 0.3098143672477748 0.1549942918071744 -0.9148539408133669 0.3766702869387026 0.1454708284013264 0.9148539408133669 -0.3766702869387026 -0.1454708284013264 0.9380787959196464 -0.3098143672477748 -0.1549942918071744 0 0.9965072187388201 0.08350666441321455 -0 -0.9965072187388201 -0.08350666441321455 -0.1184820905555187 -0.4899930899273966 -0.8636369411048811 0.1184820905555187 0.4899930899273966 0.8636369411048811 -0.02157256374809401 0.0304730294347691 -0.999302766417867 0.02157256374809401 -0.0304730294347691 0.999302766417867 -0.3265606669319467 0.4195619864804518 -0.8469509255638955 0.3265606669319467 -0.4195619864804518 0.8469509255638955 -0.5261526271735196 0.6463451952757038 -0.5526312527014876 0.5261526271735196 -0.6463451952757038 0.5526312527014876 -0.6183152130251024 0.7380156723353358 -0.2702205853171522 0.6183152130251024 -0.7380156723353358 0.2702205853171522 -0.6410526923499644 0.7674968419890563 -0.0002077683496633954 0.6410526923499644 -0.7674968419890563 0.0002077683496633954 -0.6090258531602395 0.7488508500734324 0.261361654660243 0.6090258531602395 -0.7488508500734324 -0.261361654660243 -0.0325679263279658 0.9650796482741636 0.2599242248458434 0.0325679263279658 -0.9650796482741636 -0.2599242248458434 -0.8206302163431705 0.5639156656873579 0.09254820374780565 0.8206302163431705 -0.5639156656873579 -0.09254820374780565 3.839672104174279e-018 0.9631331640241506 0.2690251072982375 -3.839672104174279e-018 -0.9631331640241506 -0.2690251072982375 9.873498882604889e-018 0.9631331640241506 0.2690251072982374 -9.873498882604889e-018 -0.9631331640241506 -0.2690251072982374 0.9692092068417504 0.1700562954552146 0.1780852878517311 -0.9692092068417504 -0.1700562954552146 -0.1780852878517311 0.9755210414545454 0.1339201871436595 0.1744250015188364 -0.9755210414545454 -0.1339201871436595 -0.1744250015188364 0.9820094607551504 0.01516355419712978 0.1882219052381767 -0.9820094607551504 -0.01516355419712978 -0.1882219052381767 -0.9712389984143933 -0.1527002210970489 0.1826949655461758 -0.9819625328217502 -0.008173970839654855 0.1888988362457681 0.9819625328217502 0.008173970839654855 -0.1888988362457681 0.9712389984143933 0.1527002210970489 -0.1826949655461758 -0.02117067087250909 -0.9821148502766945 0.187088811960507 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 0.02117067087250909 0.9821148502766945 -0.187088811960507 0.1605137823074094 -0.981952766035434 0.1000204527320781 -0.1605137823074094 0.981952766035434 -0.1000204527320781 -0.1490552496970033 -0.9888158434479187 -0.00507545900829777 0.1490552496970033 0.9888158434479187 0.00507545900829777 0.1621914928617083 -0.956589485234327 -0.2421373089435325 -0.1621914928617083 0.956589485234327 0.2421373089435325 0.1992955053068566 -0.8041073521826736 -0.5600827329334965 -0.1992955053068566 0.8041073521826736 0.5600827329334965 0.6090279241513155 0.7488517591937228 0.2613542239115452 -0.6090279241513155 -0.7488517591937228 -0.2613542239115452 0.03256783281309811 0.9650796464246926 0.2599242434299818 -0.03256783281309811 -0.9650796464246926 -0.2599242434299818 0.6410549470182567 0.7674949587243872 -0.0002079328529572579 -0.6410549470182567 -0.7674949587243872 0.0002079328529572579 0.8206353015347579 0.5639084200000258 0.0925472621314709 -0.8206353015347579 -0.5639084200000258 -0.0925472621314709 0.6183164625215473 0.7380178490005961 -0.2702117812593917 -0.6183164625215473 -0.7380178490005961 0.2702117812593917 0.5261603498804544 0.64634501550577 -0.5526241101730215 -0.5261603498804544 -0.64634501550577 0.5526241101730215 0.3265598441620871 0.4195571632132496 -0.8469536321294596 -0.3265598441620871 -0.4195571632132496 0.8469536321294596 -0.9755231142129951 0.1339146232400715 0.1744176806365959 -0.969211805223159 0.1700492026605481 0.1780779191550072 0.969211805223159 -0.1700492026605481 -0.1780779191550072 0.9755231142129951 -0.1339146232400715 -0.1744176806365959 9.873448737266604e-018 0.9631331640241506 0.2690251072982374 0 0.9631331640241506 0.2690251072982374 -0 -0.9631331640241506 -0.2690251072982374 -9.873448737266604e-018 -0.9631331640241506 -0.2690251072982374 0.0215690849119027 0.03046902354634635 -0.9993029636602681 -0.0215690849119027 -0.03046902354634635 0.9993029636602681 0.2891880719699376 -0.3913850132782499 -0.8736063360641876 -0.2891880719699376 0.3913850132782499 0.8736063360641876 -0.5050167113002247 0.6564889884265315 0.5603394769086103 0.5050167113002247 -0.6564889884265315 -0.5603394769086103 -0.1913791141245951 0.8201616641672003 0.5391742569034372 0.1913791141245951 -0.8201616641672003 -0.5391742569034372 -0.889292257498726 0.4269801621608256 0.1638512187136083 0.889292257498726 -0.4269801621608256 -0.1638512187136083 -0.9335688285797957 0.3336606029531335 0.1308428230400855 0.9335688285797957 -0.3336606029531335 -0.1308428230400855 -8.514388587547155e-018 0.7626349109729054 0.6468291834521296 8.514388587547155e-018 -0.7626349109729054 -0.6468291834521296 2.174811445937475e-017 0.7626349109729054 0.6468291834521296 -2.174811445937475e-017 -0.7626349109729054 -0.6468291834521296 -0.9820110045135057 0.01516290704785058 0.188213902951492 0.9820110045135057 -0.01516290704785058 -0.188213902951492 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 0.02117070859153276 -0.9821148264214962 0.1870889329190988 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.02117070859153276 0.9821148264214962 -0.1870889329190988 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.1446250046914288 -0.9707689276932437 0.1915497247278472 0.1446250046914288 0.9707689276932437 -0.1915497247278472 0.1490581853501327 -0.9888154004405476 -0.005075552356619214 -0.1490581853501327 0.9888154004405476 0.005075552356619214 0.2347772550107806 -0.9350487801729239 -0.2656377594144512 -0.2347772550107806 0.9350487801729239 0.2656377594144512 -0.1992967459393751 -0.8041087791459054 -0.5600802427853153 0.1992967459393751 0.8041087791459054 0.5600802427853153 0.5050262873067521 0.656488399991662 0.5603315356157868 -0.5050262873067521 -0.656488399991662 -0.5603315356157868 0.1913782600183198 0.8201595563084797 0.5391777664075532 -0.1913782600183198 -0.8201595563084797 -0.5391777664075532 0.88929565445638 0.4269740989418542 0.163848581921817 -0.88929565445638 -0.4269740989418542 -0.163848581921817 2.43577377835986e-017 0.7626349109729054 0.6468291834521296 3.435253496846114e-017 0.7626349109729055 0.6468291834521296 -3.435253496846114e-017 -0.7626349109729055 -0.6468291834521296 -2.43577377835986e-017 -0.7626349109729054 -0.6468291834521296 0.9335711130046454 0.3336550455237233 0.1308406953506054 -0.9335711130046454 -0.3336550455237233 -0.1308406953506054 -0.289189093827899 -0.3913801532758218 -0.8736081751178803 0.289189093827899 0.3913801532758218 0.8736081751178803 -0.04141091907858467 0.03946780910082173 -0.9983623730018315 0.04141091907858467 -0.03946780910082173 0.9983623730018315 -0.4971166425574662 0.2809862863339101 -0.8209273722959116 0.4971166425574662 -0.2809862863339101 0.8209273722959116 -0.8001393427670355 0.4181600269938953 -0.4300223528850576 0.8001393427670355 -0.4181600269938953 0.4300223528850576 -0.8780942256849145 0.4536487713185636 -0.1521621605392353 0.8780942256849145 -0.4536487713185636 0.1521621605392353 -0.8980461688117551 0.4399009207699547 -0.000508515756603526 0.8980461688117551 -0.4399009207699547 0.000508515756603526 -0.8887363119851522 0.4350413154743655 0.1445227372746709 0.8887363119851522 -0.4350413154743655 -0.1445227372746709 -0.8107133045140261 0.3990345337987951 0.4283869497544556 0.8107133045140261 -0.3990345337987951 -0.4283869497544556 -0.02797389227719448 0.8365633045521014 0.5471556440609309 0.02797389227719448 -0.8365633045521014 -0.5471556440609309 -0.966362969318562 0.1662080634581257 0.1962587352739023 0.966362969318562 -0.1662080634581257 -0.1962587352739023 -0.9729795164130922 0.1604889476513607 0.1659944526853352 0.9729795164130922 -0.1604889476513607 -0.1659944526853352 -2.750518736971893e-017 0.558430223714857 0.8295514964375477 2.750518736971893e-017 -0.558430223714857 -0.8295514964375477 2.750518736971894e-017 0.558430223714857 0.8295514964375479 2.750518736971894e-017 0.558430223714857 0.8295514964375479 -2.750518736971894e-017 -0.558430223714857 -0.8295514964375479 -2.750518736971894e-017 -0.558430223714857 -0.8295514964375479 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 0 -0.9535520834967369 0.3012281926696639 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.8246482123398324 -0.5384016893806141 0.1734328306775256 -0.8890262365898423 -0.4149202519035402 0.1935808234696932 -0.9686414897692759 -0.1553131039194101 0.1939368558280669 0.9686414897692759 0.1553131039194101 -0.1939368558280669 0.8890262365898423 0.4149202519035402 -0.1935808234696932 0.8246482123398324 0.5384016893806141 -0.1734328306775256 0.1446279629508149 -0.9707684895702872 0.1915497115375567 -0.1446279629508149 0.9707684895702872 -0.1915497115375567 -0.8635611351890751 -0.4640120862153424 0.1973700829331586 0.8635611351890751 0.4640120862153424 -0.1973700829331586 0.2433418509003679 -0.9699402281087456 0.0008351627014749256 -0.2433418509003679 0.9699402281087456 -0.0008351627014749256 -0.2347805683958469 -0.9350476959945108 -0.265638647261802 0.2347805683958469 0.9350476959945108 0.265638647261802 0.4628863340488015 -0.673449561625458 -0.5763696120523182 -0.4628863340488015 0.673449561625458 0.5763696120523182 0.8107124498491226 0.3990398452309895 0.4283836196420935 -0.8107124498491226 -0.3990398452309895 -0.4283836196420935 0.8887334496212473 0.435047673495858 0.1445212002100697 -0.8887334496212473 -0.435047673495858 -0.1445212002100697 0.02797386354473429 0.8365632928830925 0.5471556633710173 -0.02797386354473429 -0.8365632928830925 -0.5471556633710173 0.8980452761152394 0.4399027401971485 -0.0005110911300991234 -0.8980452761152394 -0.4399027401971485 0.0005110911300991234 0.8780938863150243 0.4536512439230808 -0.152156747149835 -0.8780938863150243 -0.4536512439230808 0.152156747149835 0.8001385740484556 0.4181646564270302 -0.4300192814688292 -0.8001385740484556 -0.4181646564270302 0.4300192814688292 0.4971137439881398 0.2809865126027326 -0.8209290500849927 -0.4971137439881398 -0.2809865126027326 0.8209290500849927 0 0.558430223714857 0.8295514964375477 0 0.558430223714857 0.8295514964375477 -0 -0.558430223714857 -0.8295514964375477 -0 -0.558430223714857 -0.8295514964375477 5.501001328179156e-017 0.5584302237148572 0.8295514964375478 -5.501001328179156e-017 -0.5584302237148572 -0.8295514964375478 0.9663641684364211 0.1662051895494593 0.1962552647166763 0.9729804984150213 0.1604860601719533 0.1659914883195547 -0.9729804984150213 -0.1604860601719533 -0.1659914883195547 -0.9663641684364211 -0.1662051895494593 -0.1962552647166763 0.04139812811194069 0.03946047028410003 -0.9983631935692467 -0.04139812811194069 -0.03946047028410003 0.9983631935692467 0.4352840504712 -0.2573443154483981 -0.8627292151722816 -0.4352840504712 0.2573443154483981 0.8627292151722816 -0.4947758603815167 0.2766781834040977 0.8237997516459558 0.4947758603815167 -0.2766781834040977 -0.8237997516459558 -0.3182902998221029 0.4253874815852181 0.8471934699640583 0.3182902998221029 -0.4253874815852181 -0.8471934699640583 -0.1285214720385949 0.5354504412796926 0.8347305290681628 0.1285214720385949 -0.5354504412796926 -0.8347305290681628 -0.01760029184088905 0.5319340583806397 0.8466028509648533 0.01760029184088905 -0.5319340583806397 -0.8466028509648533 -0.9813562345527125 0.003809967870390602 0.1921598944872417 0.9813562345527125 -0.003809967870390602 -0.1921598944872417 -0.9826247484202688 0.01797822488136286 0.1847305800946843 0.9826247484202688 -0.01797822488136286 -0.1847305800946843 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -0.9723970600012454 -0.1424041971710985 0.1848377730037599 0.9723970600012454 0.1424041971710985 -0.1848377730037599 0.8890296576422765 -0.4149142640270552 0.1935779464178291 0.8246531840080079 -0.5383947946004558 0.1734305949150483 0.9686426244423733 -0.1553103197147293 0.1939334182225955 -0.9686426244423733 0.1553103197147293 -0.1939334182225955 -0.8246531840080079 0.5383947946004558 -0.1734305949150483 -0.8890296576422765 0.4149142640270552 -0.1935779464178291 0.8635652832973482 -0.4640055489693796 0.1973673022797745 -0.8635652832973482 0.4640055489693796 -0.1973673022797745 0.2352902165018025 -0.9353796256116568 0.2640141473654995 0.02641988367814303 -0.8342914698166311 0.5506902333777483 -0.02641988367814303 0.8342914698166311 -0.5506902333777483 -0.2352902165018025 0.9353796256116568 -0.2640141473654995 -0.2433403836998066 -0.9699405959747506 0.000835428618573482 0.2433403836998066 0.9699405959747506 -0.000835428618573482 0.5174644567329831 -0.8184376411384442 -0.2497806309259746 -0.5174644567329831 0.8184376411384442 0.2497806309259746 -0.4628855797423996 -0.6734441282042899 -0.576376566364132 0.4628855797423996 0.6734441282042899 0.576376566364132 0.4947740454005835 0.2766758231917733 0.8238016344115227 -0.4947740454005835 -0.2766758231917733 -0.8238016344115227 0.3182882874077929 0.4253827693621513 0.847196592078132 -0.3182882874077929 -0.4253827693621513 -0.847196592078132 0.128518737747317 0.5354487075508035 0.8347320621792425 -0.128518737747317 -0.5354487075508035 -0.8347320621792425 0.9813569196690418 0.003809901884023064 0.192156396888899 0.9826253879433582 0.01797789724989331 0.1847272101766201 -0.9826253879433582 -0.01797789724989331 -0.1847272101766201 -0.9813569196690418 -0.003809901884023064 -0.192156396888899 0.01760029521255894 0.5319340620057762 0.8466028486170276 -0.01760029521255894 -0.5319340620057762 -0.8466028486170276 -0.4352838388394464 -0.2573442088715797 -0.8627293537404738 0.4352838388394464 0.2573442088715797 0.8627293537404738 -0.1460518413338239 -0.2495440035223013 -0.9572860857387729 0.1460518413338239 0.2495440035223013 0.9572860857387729 -0.6112310483565564 -0.06322878937391613 -0.7889225093247461 0.6112310483565564 0.06322878937391613 0.7889225093247461 -0.8915441330874293 0.08765989438287093 -0.4443701178906702 0.8915441330874293 -0.08765989438287093 0.4443701178906702 -0.9686701625701264 0.1863682952031955 -0.1641492451685955 0.9686701625701264 -0.1863682952031955 0.1641492451685955 -0.979113170918322 0.2033125117858606 0.001192092946436506 0.979113170918322 -0.2033125117858606 -0.001192092946436506 -0.9687439140355221 0.1712184293976954 0.1794978508331603 0.9687439140355221 -0.1712184293976954 -0.1794978508331603 -0.9005329413542803 0.06961919280870038 0.4291778064258139 0.9005329413542803 -0.06961919280870038 -0.4291778064258139 -0.6132342788519511 -0.07787746425893305 0.7860526825865594 0.6132342788519511 0.07787746425893305 -0.7860526825865594 -0.01160717805864078 0.03735978391852368 0.9992344669611213 0.01160717805864078 -0.03735978391852368 -0.9992344669611213 -0.0002750990191358153 0.006169802339054176 0.9999809287479571 0.0002750990191358153 -0.006169802339054176 -0.9999809287479571 0.9723980564127662 -0.1424016814601213 0.1848344691933977 -0.9723980564127662 0.1424016814601213 -0.1848344691933977 0.2021749486814607 -0.8035469111942198 0.5598550273382186 0.01676180795212049 -0.5244277201954837 0.8512899670997793 -0.01676180795212049 0.5244277201954837 -0.8512899670997793 -0.2021749486814607 0.8035469111942198 -0.5598550273382186 -0.2352934458797688 -0.935378697436839 0.2640145577565506 -0.0264198118204032 -0.8342914800161936 0.5506902213729273 0.0264198118204032 0.8342914800161936 -0.5506902213729273 0.2352934458797688 0.935378697436839 -0.2640145577565506 0.5295609180573445 -0.8482711081585763 -0.001166674626152061 -0.5295609180573445 0.8482711081585763 0.001166674626152061 -0.5174623672663363 -0.8184399911235302 -0.2497772595590622 0.5174623672663363 0.8184399911235302 0.2497772595590622 0.6977626942542141 -0.4698759106643299 -0.5406883123246394 -0.6977626942542141 0.4698759106643299 0.5406883123246394 0.6132240363791013 -0.07788204483911553 0.7860602192571512 -0.6132240363791013 0.07788204483911553 -0.7860602192571512 0.9005318544569916 0.06962168370321398 0.4291796829610897 -0.9005318544569916 -0.06962168370321398 -0.4291796829610897 0.9687461451792536 0.1712215384825853 0.1794828430797579 -0.9687461451792536 -0.1712215384825853 -0.1794828430797579 0.9791130567332587 0.2033130864589525 0.001187858993839574 -0.9791130567332587 -0.2033130864589525 -0.001187858993839574 0.9686723019472787 0.1863743052274754 -0.1641297955617317 -0.9686723019472787 -0.1863743052274754 0.1641297955617317 0.8915434616907393 0.08766106977177895 -0.4443712330506563 -0.8915434616907393 -0.08766106977177895 0.4443712330506563 0.6112206164766446 -0.06323622661557089 -0.788929995397142 -0.6112206164766446 0.06323622661557089 0.788929995397142 0.0002750988464171122 0.006169799816833397 0.9999809287635664 0.01160772079517966 0.03736020406176591 0.9992344449479333 -0.01160772079517966 -0.03736020406176591 -0.9992344449479333 -0.0002750988464171122 -0.006169799816833397 -0.9999809287635664 0.1460352483029513 -0.2495452139578195 -0.9572883016332339 -0.1460352483029513 0.2495452139578195 0.9572883016332339 0.4035889713133622 -0.4176632165417596 -0.8140475291911482 -0.4035889713133622 0.4176632165417596 0.8140475291911482 -0.1539794761670579 -0.2560725467089957 0.9543150275151743 0.1539794761670579 0.2560725467089957 -0.9543150275151743 -0.04016355133499785 0.03656675640650078 0.9985237911387334 0.04016355133499785 -0.03656675640650078 -0.9985237911387334 -0.01581688188725655 0.02996803041905136 0.9994257067937403 0.01581688188725655 -0.02996803041905136 -0.9994257067937403 0.1204495300448903 -0.4892020510285962 0.8638132112797188 -0.1204495300448903 0.4892020510285962 -0.8638132112797188 -0.2021770285378366 -0.8035482787212227 0.5598523134682673 -0.01676178295521105 -0.5244277323202428 0.8512899601226424 0.01676178295521105 0.5244277323202428 -0.8512899601226424 0.2021770285378366 0.8035482787212227 -0.5598523134682673 0.5094076716102441 -0.8208413594926837 0.2583085106047273 -0.5094076716102441 0.8208413594926837 -0.2583085106047273 -0.5295565658978195 -0.8482738252862873 -0.001166554189821187 0.5295565658978195 0.8482738252862873 0.001166554189821187 0.7825480196691753 -0.5713196341361541 -0.2474115449254199 -0.7825480196691753 0.5713196341361541 0.2474115449254199 -0.6977594807071145 -0.469882079092307 -0.5406870988207769 0.6977594807071145 0.469882079092307 0.5406870988207769 0.1539618074981693 -0.256072749908537 0.9543178236762513 -0.1539618074981693 0.256072749908537 -0.9543178236762513 0.04015046190472683 0.03655948831891245 0.9985245836846964 -0.04015046190472683 -0.03655948831891245 -0.9985245836846964 0.01581380495359327 0.029964143765137 0.9994258720191867 -0.01581380495359327 -0.029964143765137 -0.9994258720191867 -0.1204492571903401 -0.4892032475319197 0.8638125717113167 0.1204492571903401 0.4892032475319197 -0.8638125717113167 -0.4035754572775538 -0.4176660774932453 -0.8140527611860422 0.4035754572775538 0.4176660774932453 0.8140527611860422 -0.2840023630893594 -0.7144389413139534 -0.6394682610527728 0.2840023630893594 0.7144389413139534 0.6394682610527728 -0.5848906347871803 -0.5854977094664804 -0.5613335706580842 0.5848906347871803 0.5854977094664804 0.5613335706580842 -0.7969858988165718 -0.4526946244706833 -0.399851289935256 0.7969858988165718 0.4526946244706833 0.399851289935256 -0.9231956656843949 -0.3296026792501743 -0.1976659725209516 0.9231956656843949 0.3296026792501743 0.1976659725209516 -0.9966489268663521 0.08166372880846787 0.00468529329347788 0.9966489268663521 -0.08166372880846787 -0.00468529329347788 -0.964893075726331 0.04428042273650343 0.2588833648144611 0.964893075726331 -0.04428042273650343 -0.2588833648144611 -0.8090326429841972 -0.4292081262383663 0.401555185443987 0.8090326429841972 0.4292081262383663 -0.401555185443987 -0.5898902060140966 -0.5786579984570285 0.5631913224387896 0.5898902060140966 0.5786579984570285 -0.5631913224387896 -0.2853859383363251 -0.7146722102624251 0.6385910256795935 0.2853859383363251 0.7146722102624251 -0.6385910256795935 0.281985638696346 -0.4007104282647744 0.8717311811842428 -0.281985638696346 0.4007104282647744 -0.8717311811842428 0.446211320909524 -0.6853561749786278 0.5754844659161896 -0.446211320909524 0.6853561749786278 -0.5754844659161896 -0.5094030941587701 -0.8208446185389465 0.258307181234132 0.5094030941587701 0.8208446185389465 -0.258307181234132 0.8099979478262502 -0.5864296355143889 -0.001899238722307423 -0.8099979478262502 0.5864296355143889 0.001899238722307423 -0.7825487427006799 -0.5713246622280038 -0.2473976467706242 0.7825487427006799 0.5713246622280038 0.2473976467706242 0.7405771949884781 -0.4517623278846433 -0.497449713405532 -0.7405771949884781 0.4517623278846433 0.497449713405532 0.2853792354347278 -0.7146718252325069 0.6385944520597773 -0.2853792354347278 0.7146718252325069 -0.6385944520597773 0.5898824331376763 -0.5786633709007107 0.563193943729335 -0.5898824331376763 0.5786633709007107 -0.563193943729335 0.8090291310112718 -0.4292122029973183 0.4015579036369908 -0.8090291310112718 0.4292122029973183 -0.4015579036369908 0.9649001816587276 0.04427200365486803 0.2588583186365426 -0.9649001816587276 -0.04427200365486803 -0.2588583186365426 0.9966494201427686 0.08165806893666418 0.004679007011975113 -0.9966494201427686 -0.08165806893666418 -0.004679007011975113 0.9232036126395943 -0.3295966235877274 -0.1976389519522193 -0.9232036126395943 0.3295966235877274 0.1976389519522193 0.796980877440989 -0.4526998857070485 -0.3998553419353262 -0.796980877440989 0.4526998857070485 0.3998553419353262 0.5848829390569337 -0.5855014917679562 -0.561337644147995 -0.5848829390569337 0.5855014917679562 0.561337644147995 -0.2819860956836727 -0.4007056494994016 0.871733230008092 0.2819860956836727 0.4007056494994016 -0.871733230008092 0.2839962715560833 -0.714437751660903 -0.6394722955249566 -0.2839962715560833 0.714437751660903 0.6394722955249566 0.06967649649256183 -0.8034909282982834 -0.5912254341441046 -0.06967649649256183 0.8034909282982834 0.5912254341441046 0.03136787686568475 -0.8139973840788715 0.5800209608399454 -0.03136787686568475 0.8139973840788715 -0.5800209608399454 0.4112395355653548 -0.4067898810838509 0.8157230148989163 -0.4112395355653548 0.4067898810838509 -0.8157230148989163 0.4480839719870259 -0.2555058724445752 0.8567015251501929 -0.4480839719870259 0.2555058724445752 -0.8567015251501929 -0.4462089635647924 -0.6853539770439056 0.5754889112611429 0.4462089635647924 0.6853539770439056 -0.5754889112611429 0.7861148917546521 -0.5602688451774001 0.2610022951721959 -0.7861148917546521 0.5602688451774001 -0.2610022951721959 -0.8099959449369538 -0.5864324054839372 -0.001898152790002464 0.8099959449369538 0.5864324054839372 0.001898152790002464 0.8679852392884114 -0.4186456692010427 -0.267090673810694 -0.8679852392884114 0.4186456692010427 0.267090673810694 -0.7405681044240781 -0.4517599181591552 -0.4974654350349996 0.7405681044240781 0.4517599181591552 0.4974654350349996 -0.03136265652006765 -0.8139970210045682 0.5800217526711331 0.03136265652006765 0.8139970210045682 -0.5800217526711331 -0.4112244960213013 -0.4067936091788324 0.8157287376348134 0.4112244960213013 0.4067936091788324 -0.8157287376348134 -0.4480832331455037 -0.2555053323577675 0.8567020726662327 0.4480832331455037 0.2555053323577675 -0.8567020726662327 -0.06967019624810501 -0.8034906672085651 -0.5912265314272404 0.06967019624810501 0.8034906672085651 0.5912265314272404 -0.3815030890092033 -0.924214326544346 -0.01683067695064405 0.3815030890092033 0.924214326544346 0.01683067695064405 -0.7602024055534215 -0.6496822491888411 0.002297320117012182 0.7602024055534215 0.6496822491888411 -0.002297320117012182 -0.7235978029626576 -0.6767074108252281 0.1359165173252718 0.7235978029626576 0.6767074108252281 -0.1359165173252718 0.6996929648346212 -0.457255608955431 0.5489508748874855 -0.6996929648346212 0.457255608955431 -0.5489508748874855 -0.7861194615018242 -0.5602692741775224 0.260987610166985 0.7861194615018242 0.5602692741775224 -0.260987610166985 0.9154288715728126 -0.4024769486616665 -0.001512245655052878 -0.9154288715728126 0.4024769486616665 0.001512245655052878 -0.8679872702806583 -0.418643144329402 -0.2670880310622752 0.8679872702806583 0.418643144329402 0.2670880310622752 0.6401239958287761 -0.5616460253274669 -0.5242089394488227 -0.6401239958287761 0.5616460253274669 0.5242089394488227 0.3815100567366204 -0.9242114501319144 -0.01683068786129064 -0.3815100567366204 0.9242114501319144 0.01683068786129064 0.7236074502295418 -0.676699720026526 0.1359034469331913 -0.7236074502295418 0.676699720026526 -0.1359034469331913 0.7602217437119161 -0.6496596261772683 0.002295757571221962 -0.7602217437119161 0.6496596261772683 -0.002295757571221962 -0.6996930785508547 -0.4572560764512379 0.5489503405376914 0.6996930785508547 0.4572560764512379 -0.5489503405376914 -0.04331297926586832 -0.9656287363035919 -0.2562911029510049 0.04331297926586832 0.9656287363035919 0.2562911029510049 -0.06784976146030096 -0.9677646947856123 0.24254464619177 0.06784976146030096 0.9677646947856123 -0.24254464619177 0.6240702080260744 -0.5918291363616083 0.5101711955880744 -0.6240702080260744 0.5918291363616083 -0.5101711955880744 0.7594261707433901 -0.4193338100716575 0.4974244132738343 -0.7594261707433901 0.4193338100716575 -0.4974244132738343 0.8724739609286245 -0.410869274275227 0.26452906637658 -0.8724739609286245 0.410869274275227 -0.26452906637658 -0.9154312545832757 -0.4024715253698982 -0.001513075846592315 0.9154312545832757 0.4024715253698982 0.001513075846592315 0.8256770590776061 -0.5007123384848367 -0.2598933400493392 -0.8256770590776061 0.5007123384848367 0.2598933400493392 -0.6401183454754561 -0.5616481155677299 -0.5242135996566498 0.6401183454754561 0.5616481155677299 0.5242135996566498 0.06784620197388161 -0.9677652070871987 0.2425435977905633 -0.06784620197388161 0.9677652070871987 -0.2425435977905633 -0.6240708460233705 -0.5918260188339922 0.5101740316546712 0.6240708460233705 0.5918260188339922 -0.5101740316546712 -0.7594127775507094 -0.4193365193935109 0.4974425763800812 0.7594127775507094 0.4193365193935109 -0.4974425763800812 0.04331015943856095 -0.9656291961824468 -0.256289846793524 -0.04331015943856095 0.9656291961824468 0.256289846793524 0.05342527282932921 -0.9892348271926069 -0.1362358135452093 -0.05342527282932921 0.9892348271926069 0.1362358135452093 0.03602488255749498 -0.990151181161496 0.1352880123337349 -0.03602488255749498 0.990151181161496 -0.1352880123337349 -0.8724749547026995 -0.4108695217241122 0.2645254043276785 0.8724749547026995 0.4108695217241122 -0.2645254043276785 0.8774502952952402 -0.4796473008575407 -0.004409769423848663 -0.8774502952952402 0.4796473008575407 0.004409769423848663 -0.8256786698183741 -0.5007121985949208 -0.2598884922138749 0.8256786698183741 0.5007121985949208 0.2598884922138749 -0.03602431648454466 -0.990151257720754 0.1352876027425672 0.03602431648454466 0.990151257720754 -0.1352876027425672 -0.05342430309089553 -0.9892349472673335 -0.1362353219405603 0.05342430309089553 0.9892349472673335 0.1362353219405603 0.08071066687826572 -0.9967349708365165 0.002277314996621204 -0.08071066687826572 0.9967349708365165 -0.002277314996621204 0.8194403105675971 -0.5130260276504044 0.2555814397997763 -0.8194403105675971 0.5130260276504044 -0.2555814397997763 -0.8774528301994429 -0.4796426101341143 -0.004415576827767885 0.8774528301994429 0.4796426101341143 0.004415576827767885 -0.08070874464632695 -0.9967351266216002 0.00227725629573557 0.08070874464632695 0.9967351266216002 -0.00227725629573557 -0.8194362584182509 -0.5130304918091215 0.2555854707599559 0.8194362584182509 0.5130304918091215 -0.2555854707599559</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"988\" source=\"#ID259\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID257\">\r\n                    <float_array count=\"3640\" id=\"ID260\">5.073201819573185 5.600716181436744 0.4431947293248177 5.627367762284371 0.445157753558425 5.77577947978994 19.42444920539856 -2.284081900119782 19.34477210044861 -2.21826593875885 19.51842546463013 -2.155384290218354 -0.3683005752163459 5.627980801831711 -4.998312028091073 5.601329220981368 -0.3702635976005759 5.776392519352418 -4.607146616344261 -15.34367856238688 -4.607434025537637 -15.26620563161423 0.02193692619318748 -15.26620484570936 7.160318775454673 13.4418102735027 7.148171802192096 13.3649303743631 2.559466077564319 13.86992800761164 19.29153442382813 -2.119765305519104 -19.34477210044861 -2.21826593875885 -19.42444920539856 -2.284081900119782 -19.51842546463013 -2.155384290218354 0.02193411607899051 -12.19211046583441 -4.607436835651924 -12.19211078958473 0.02169050847536717 -12.101223714757 -7.086038837485496 13.44907359354734 -2.485181750245635 13.87719133378585 -7.073891875480463 13.37219369330701 4.532241269596551 -15.34350658550807 -0.09684663643765332 -15.26603286882992 4.532528678519042 -15.2660336547348 18.12293612293303 -5.740417639581398 18.05022071995145 -5.579453161455872 18.14224321801971 -5.607051071422144 20.0461661021292 -2.185631356216326 20.13818591144634 -2.158032923472155 20.19435282629705 -2.280338623817249 0.02244777560490949 -9.667085073012048 -4.606923132412025 -9.667085343404384 0.02216065455198159 -9.518654281630893 19.27285671234131 -2.003576270739238 -19.29153442382813 -2.119765305519104 0.02160569789400608 -7.995839269942864 -4.607765191921811 -7.995839779454807 0.02144316053642897 -7.888805077286571 4.532531488597545 -12.19198653582923 -0.09684382635923963 -12.19198621207891 -0.09660021898521853 -12.10109946100112 -4.607520677691383 -12.1909112318562 -4.607763879512159 -12.1000356436168 0.02160701030363091 -12.10003499619338 -20.12290056046157 -2.126596506239412 -20.03088058233253 -2.154194590658596 -20.17906587605502 -2.24890066294136 4.532017785128885 -9.666995670709737 -0.09735748611396007 -9.666995400317401 -0.09707036533164624 -9.518564608935924 -18.15759742904709 -5.575369671827158 -18.06557476219196 -5.547772110150985 -18.13829200069284 -5.708734556878697 17.99357612869964 -5.702260793229072 18.04974735518383 -5.579956091177736 18.12245655089196 -5.740922304536536 20.06549735998501 -2.318743424592642 20.04618550119356 -2.18537728325909 20.19437439105596 -2.280082453791246 19.35041664390355 -0.1672801767393221 19.27009759898836 -0.05361967781094949 19.44672188351816 -0.06496179150935104 19.61243033409119 -2.284081900119782 19.69209432601929 -2.218266407648723 4.606925059893758 8.983872029657613 -0.02244584812317223 8.983872353355501 4.606681792005382 9.074743737995473 19.29153442382813 -1.887388408184052 -19.27285671234131 -2.003576270739238 0.02153183676538729 -4.006987150812811 -4.607839118610364 -4.006987623436984 0.02147472689993803 -3.889872771067557 4.532859843554559 -7.995769383157321 -0.09651540948718468 -7.995768873645379 -0.09635287228280043 -7.888734680988943 -4.607675526484326 -7.997752646212891 -4.607838376214422 -7.890711847908215 0.02153257916132211 -7.89071133836483 4.532858531161661 -12.099911581594 4.532615329570105 -12.19078716983378 -0.09651672188005642 -12.09991093417058 14.31034454902532 -6.891321912716821 14.3219313136851 -6.704624404125912 14.39066722400534 -6.77766275692727 -19.23235905354456 -0.03176419670807103 -19.31267478578086 -0.1454239941680635 -19.40898110949886 -0.04310624040735855 -20.03089757299971 -2.153942386636512 -20.05020776466498 -2.287306844929085 -20.17908503223773 -2.248646362017625 -19.61243033409119 -2.284081900119782 -19.69209432601929 -2.218266407648723 0.09735555865652508 8.983748252347926 -4.532019712586315 8.983747928650038 -4.531776444927222 9.074619636988276 -18.06510549529732 -5.548274579009042 -18.00893586832819 -5.670577737512788 -18.13781652703782 -5.709238760892301 -4.761454164981842 -15.36620406725101 -5.124302506446838 -15.36620406725101 -4.761454164981842 -15.25769683390061 4.761454164981842 14.03119791667768 5.124302506446838 14.03119791667768 4.761454164981842 13.92269336851347 5.124302506446838 9.051208503106006 4.761454164981842 8.923895314410608 4.761454164981842 9.051208503106006 19.27005375162924 -0.05399533286574425 19.338784861109 0.01904098857144973 19.44667808279935 -0.06533699708664376 4.606619735267406 9.075917602756913 -0.02250765383615134 8.985038304927638 -0.02275121646351726 9.075917602756913 19.74531054496765 -2.119765305519104 19.34477210044861 -1.788889181613922 -19.29153442382813 -1.887388408184052 0.02139500721034665 -0.08559919136399398 -4.607975889885002 -0.0855991913639942 0.02145203981830667 0.0315140254419601 4.532933771225495 -4.006965017630068 -0.09644154737612184 -4.006964545005895 -0.09638443756449916 -3.889850165260626 0.02139500721034668 -3.887985410722442 -4.607918915518152 -4.00509837419036 -4.607975889885002 -3.887985410722442 4.532933028839068 -7.890641320673163 4.532770179262458 -7.997682118977982 -0.09644228976254241 -7.890640811129774 7.300735343715204 -6.876981630525356 7.208677959532405 -6.957488130201455 7.270102437898879 -6.772688577984919 -14.36005071717713 -6.682371106887645 -14.34846803919266 -6.869067463427804 -14.4287874013639 -6.755409008992634 8.984437848452524 -7.798264015179135 8.940569602336625 -7.697642087810905 9.029006040665307 -7.61466168380332 -4.686544239521028 9.051208503106002 -4.686544239521028 8.923895314410604 -5.049393773078919 9.051208503106002 -19.301046610831 0.04089217765845121 -19.23231472762878 -0.03214369318521712 -19.40893683022086 -0.04348528743434973 -4.686544239521027 14.03119791667768 -4.686544239521027 13.92269336851347 -5.049393773078919 14.03119791667768 -19.74531054496765 -2.119765305519104 0.0976609259876836 9.075793361768964 0.09741736358987754 8.984914063939309 -4.531714388969109 9.075793361768964 4.686544239521027 -15.36620406725101 4.686544239521027 -15.25769683390061 5.049393773078919 -15.36620406725101 -5.124302506446838 -15.25769683390061 5.124302506446838 13.92269336851347 5.124302506446838 8.923895314410608 5.124302506446838 3.967442294660724 4.761454164981842 3.967442294660724 5.124302506446838 4.117387341176849 18.10363545293048 -0.2809333171421746 17.98922406407012 -0.20204778396656 18.16032542044089 -0.1377736016281496 4.606619735267406 4.018951594910801 -0.02275121646351722 4.018951594910799 4.60645699692999 4.125982852127443 4.606508922688092 4.124733668805059 -0.02269943066667871 4.017706157806399 -0.02286199261143391 4.124734178285195 19.76400971412659 -2.003576270739238 19.42444920539856 -1.723072868585587 -19.34477210044861 -1.788889181613922 0.02153152266195754 4.201206879020086 -4.607839432713795 4.201206879020086 0.02169430386568268 4.30823977692898 4.533070541424439 -0.08562176681403434 -0.09630471889683018 -0.08562176681403434 -0.09636175145103647 0.03149144999193612 0.02153152266195751 0.02957013340985924 -4.607896483955441 -0.08754120186105191 -4.607839432713794 0.02957013340985924 4.533070541424439 -3.887962858276884 4.533013567111289 -4.005075821744817 -0.09630471889683018 -3.887962858276884 1.476583962944563 -3.961951133663058 1.378933579597579 -3.998762427310236 1.470855877273663 -3.844924883029417 -7.270340430197083 -6.946251903039824 -7.362393703741029 -6.865745530157424 -7.331759894273065 -6.761452641873312 2.874643384624575 -6.344012562412311 2.854840250265239 -6.200825300641612 2.951799341928625 -6.162900036422522 -8.997852944453967 -7.682148384603612 -9.041722306212098 -7.782770010969236 -9.086285293693118 -7.599168228825396 -4.761454164981842 -9.669378941447398 -5.124302506446838 -9.669378941447398 -4.761454164981842 -9.563003705794053 -4.686544239521027 3.967442294660724 -5.049393773078919 3.967442294660724 -5.049393773078919 4.117387341176849 -4.686544239521027 8.923895314410608 -5.049393773078919 8.923895314410608 -5.049393773078919 9.051208503106006 -17.94074922257743 -0.190250879566312 -18.05515731857771 -0.2691362702345684 -18.11184834142092 -0.1259768133397359 -5.049393773078919 13.92269336851347 -19.76400971412659 -2.003576270739238 0.09760914084168518 4.017635746807368 -4.531603575892205 4.124663257806173 0.09777170263322435 4.124663767286307 0.09766092598768356 4.018881109642489 -4.531714388969109 4.018881109642489 -4.531551650785075 4.125912366859277 5.049393773078919 -15.25769683390061 -20.15883989174207 -1.446384394925267 -20.01064744910403 -1.541089938928572 -20.13952805939735 -1.579751062190041 -18.12105498306678 2.003518467207123 -18.04834926118542 1.842551710623711 -18.17722596699716 1.881213352405044 -14.34379104229491 2.928736016400822 -14.35537490132199 2.742038852078833 -14.4516825406131 2.844355839528841 -11.60635441085664 1.474098297344885 -11.68030642612911 1.293021679652002 -11.73699900134571 1.436180756113591 4.761454164981842 4.117387341176849 17.98957291257794 -0.2027690231414206 18.03003106852359 -0.1005792818805556 18.16067509038074 -0.1384961940455248 4.606508164012554 -0.1524014195865267 -0.02286275128697907 -0.1524009469552575 4.606451053037286 -0.03528480902880758 4.606435462909619 -0.034902986115325 -0.0228783266660047 -0.1520194848137105 -0.02293546331610938 -0.034902986115325 19.74531054496765 -1.887388408184052 19.51842546463013 -1.699962810675303 -19.42444920539856 -1.723072868585587 0.02160463890589585 9.199395637636078 -4.607766250909928 9.19939563763608 0.02184789283266063 9.290282643961225 4.532934085324899 4.201136376263897 -0.09644123327671748 4.201136376263896 -0.09660401432701996 4.308169274172933 0.0216046389058958 4.310373838309889 -4.607928850863339 4.20333433420841 -4.607766250909929 4.310373838309889 4.532934085324899 0.02954755022149495 4.532991136512775 -0.08756378504943213 -0.09644123327671744 0.02954755022149517 2.080673221082074 -0.1580516116257338 1.980713114162307 -0.1479506138575482 2.086947185949026 -0.04104431478021404 -1.450480747367893 -3.996593703793443 -1.548127087929501 -3.959782412325525 -1.542398773543374 -3.842756168619942 1.478128977262679 -3.84748367689357 1.386215277362713 -4.001324400253703 1.378169148335766 -3.837380976808661 -2.924515073702726 -6.194855306154077 -2.944318956763954 -6.338042503843924 -3.021470103146817 -6.156930058907749 -4.761454164981842 -6.551386285397905 -5.124302506446838 -6.551386285397905 -4.761454164981842 -6.407354064951116 5.049393773078919 -9.669378941447398 4.686544239521028 -9.669378941447398 4.686544239521028 -9.563003705794051 -5.124302506446838 -9.563003705794053 11.72913812660912 1.281032594197831 11.65518784529848 1.462109071704529 11.78583115406787 1.424191559828298 -4.686544239521027 4.117387341176849 14.3933440379706 2.719888654750523 14.38176193015808 2.906585325303857 14.48965214181703 2.82220537159695 -17.98155911242234 -0.08878543203838715 -17.94110020337961 -0.190974988782554 -18.11220014362858 -0.126702275739503 18.0636678162378 1.810931733780058 18.13637432502825 1.971897619722236 18.19254462341883 1.849593166447284 -19.74531054496765 -1.887388408184052 0.09784517307933045 -0.03492560211400781 0.09778803648307755 -0.1520421008124095 -4.53153011637229 -0.03492560211400803 0.09777246129926198 -0.1524235527697383 -4.531602817226173 -0.1524240254010073 -4.531545706304733 -0.03530741484327198 20.1242406419332 -1.61126473379213 19.99535993028215 -1.572603819630105 20.14355175979657 -1.477898787843594 -20.06678079509166 -1.418435288422712 -20.01061269560492 -1.540741450105125 -20.15880298935821 -1.44603382526822 -18.0295444399364 1.975363959042047 -18.04885248059514 1.84199695203714 -18.12156445860097 2.002961959819854 -14.2732883668018 2.856238288911769 -14.35361304282905 2.742579638298572 -14.34201654549573 2.929276317082448 -11.60456866809315 1.473918969118328 -11.564113636159 1.371728462482041 -11.67852720339388 1.292843999359143 -10.47625515972126 -0.7799536673345897 -10.46288497898667 -0.896597041693023 -10.59409434988142 -0.9332878993617697 5.124302506446838 -0.1810681453366635 4.761454164981842 -0.1810681453366635 5.124302506446838 -0.01700151890789119 17.50400202822861 -1.423449115347078 17.37279351621073 -1.386758260035087 17.52273216033082 -1.260045454950131 17.37279144816011 -1.386756484877176 17.38616170783077 -1.270113116118066 17.52273008947194 -1.260043677735799 4.606435462909618 -3.94017376343256 -0.02293546331610935 -3.94017376343256 4.606492588632147 -3.823058781002435 4.606507842214324 -3.823420031241192 -0.02292019528997866 -3.940535367002381 -0.02286307308520944 -3.823420031241192 19.69209432601929 -1.788889181613922 19.61243033409119 -1.723072868585587 -19.51842546463013 -1.699962810675303 0.02193292519788623 14.07047703510907 -4.607438026533037 14.07047703510907 0.02222024578093109 14.14793264486438 4.532860902529158 9.199271564634241 -0.09651435051259227 9.199271564634238 -0.09675760421008815 9.290158570959765 0.02193292519788632 9.288725747574326 -4.607681567292359 9.197849735409813 -4.607438026533037 9.288725747574327 4.532860902529158 4.310303418401068 4.533023502329318 4.203263914299446 -0.0965143505125923 4.310303418401068 5.690845502269881 3.381911180032327 5.596674513402085 3.442216463478121 5.717702102938485 3.486845033176731 -2.051536016508506 -0.1503033752320826 -2.151492172878935 -0.1604043722975538 -2.157766383052216 -0.0433970835920991 2.081993036838842 -0.03794822347858934 1.975763000973912 -0.1448570043827798 1.984559679438029 0.01905964840697018 -1.457754229520732 -3.999150084251062 -1.549663657648365 -3.845309370045329 -1.449707779298342 -3.835206670561589 -4.761454164981842 -4.040416392011158 -5.124302506446838 -4.040416392011158 -4.761454164981842 -3.876350825242172 5.049393773078919 -6.551386285397908 4.686544239521027 -6.551386285397908 4.686544239521027 -6.407354064951118 -5.124302506446838 -6.407354064951116 5.049393773078919 -9.563003705794051 -18.07388425457883 -4.474188075370972 -18.12550441956021 -4.572507413312393 -18.21523613450942 -4.463290371653764 10.51541013065442 -0.9003298494342281 10.52878043479375 -0.7836864838295137 10.64661821288263 -0.9370207043494412 11.61295282063542 1.35974183626907 11.65340817536358 1.461932263824594 11.72736497661217 1.280857434191407 -4.686544239521027 -0.181068145336663 -5.049393773078919 -0.181068145336663 -5.049393773078919 -0.01700151890789076 14.39159014935171 2.720431276678623 14.31126689317316 2.834089626742285 14.37999540352754 2.907127461777244 -17.32066854671092 -1.383087478227263 -17.45187405187674 -1.419778327114212 -17.47060458735927 -1.256374695331356 18.06416692096803 1.810377423968519 18.04485959465632 1.943743709634421 18.13687968566132 1.971341561143569 -19.69209432601929 -1.788889181613922 0.09777278309345966 -3.823397420735158 0.09782990524439074 -3.940512756496364 -4.531602495431977 -3.823397420735158 0.09784517307933047 -3.940151151465963 -4.53153011637229 -3.940151151465963 -4.531587242040977 -3.823036169035822 -17.33403701575904 -1.266442347839805 -17.32066646814052 -1.383085696173078 -17.47060250598066 -1.256372911220834 19.99532756972705 -1.572257179571142 20.05149498381842 -1.449951679461248 20.14351725043284 -1.477550067022098 -4.578089119545712 -15.45302547447942 -6.042443522549657 -15.45302547447942 -4.581164235491041 -15.37558999088647 4.565359965689587 14.15486206179388 6.044720666041248 14.15486284728921 4.568480903247499 14.07742950375024 6.047416248517195 9.152503540541604 4.55801373756888 9.061655984129738 4.555339560991968 9.152503540541604 4.549805518930956 4.062372985938772 4.548003588686205 4.169394932529762 6.048578524753239 4.16939544198341 6.049316921622414 -0.02143661639989597 4.546392706834692 -0.1385521722146575 4.545758292856145 -0.02143661639989597 -10.47625096160975 -0.7799554999894198 -10.59409015588215 -0.9332897300608669 -10.61282016940071 -0.7698860612522147 4.761454164981842 -0.01700151890789119 17.50589387807564 -2.286747502342873 17.63362708011275 -2.088157985538652 17.6424661795315 -2.276711018057561 18.33222329356584 -2.53750280138788 18.31763141763591 -2.420951718121649 18.45869955379253 -2.338416052996688 4.606507842214324 -7.813859075424752 -0.02286307308520943 -7.813859075424753 4.606670443487124 -7.706829759908492 4.606618118893985 -7.705705445333536 -0.02291553909568638 -7.812730975322972 -0.02275283283692284 -7.705704681111107 -19.61243033409119 -1.723072868585587 -0.02212474982177109 -15.16260858599943 4.607246132715756 -15.16260858599943 -0.02241169795092981 -15.24008567857359 -0.09684263549329919 14.07030507281433 -0.09712995580554193 14.14776068257027 4.532532679463495 14.07030507281434 -4.607533062650705 14.07088580756522 -4.607246132715755 14.14835842472385 0.02212474982177103 14.14835842472385 4.532532679463494 9.288601513246206 4.532776219993277 9.197725501081312 -0.0968426354932992 9.288601513246205 17.33542141828752 0.1877632006411207 17.26381917608259 0.4331881399150761 17.41208157884864 0.2557460918948759 -5.661727513750998 3.431888070435921 -5.755894392243127 3.371582867353965 -5.782751875781377 3.476516580661745 8.15684694074397 -0.8273037683524903 8.034301206339869 -0.8692903517736603 8.052832203414228 -0.589163423036165 -2.046592066139235 -0.147211950632897 -2.152818396643546 -0.04030317718012921 -2.055389088607163 0.01670469073204583 -4.761454164981842 -0.07917014712386801 -5.124302506446838 -0.07917014712386801 -4.761454164981842 0.08489251226380006 5.049393773078919 -4.040416392011159 4.686544239521027 -4.040416392011159 4.686544239521027 -3.876350825242173 -5.124302506446838 -3.876350825242172 5.049393773078919 -6.407354064951118 5.049393773078919 -6.551386285397907 -14.05781573420595 -5.024120918143106 -14.15256219722485 -4.945567930657166 -14.03167809162006 -4.881563909785387 18.07737601006223 -4.58810494037262 18.02575544117672 -4.489785733663947 18.16710612556526 -4.478888044492561 -18.32662568061224 -5.158126311317372 -18.2474307438047 -5.246695942853649 -18.38865139039027 -5.234791804229245 -4.47089225317745 -0.02168761765281581 -4.471526665899239 -0.1388031734717903 -5.974453860459585 -0.02168761765281603 10.64661403173349 -0.9370225280908811 10.52877624953241 -0.7836883095266434 10.66534421812733 -0.7736188715451156 -4.473138411666099 4.168614706137857 -4.47494033547283 4.061592759479787 -5.97371870907645 4.168615215591504 -4.686544239521027 -0.01700151890789119 -4.686544239521027 -0.1810681453366635 -5.049393773078919 -0.01700151890789119 -4.480472602474462 9.151139574630145 -4.48314677371307 9.060292018121034 -5.972552268551757 9.151139574630147 -4.490490482628745 14.15299466769471 -4.493611421443417 14.07556210968241 -5.969850587262583 14.15299545319003 0.09782524844617796 -7.812660500675886 -4.531712772616011 -7.705634970686305 0.09766254234076646 -7.705634206463876 0.09777278309345971 -7.81378864823879 -4.531602495431977 -7.813788648238789 -4.531765096551524 -7.706759332722385 -18.27099170851211 -2.424541269168228 -18.28558383583374 -2.541092332957057 -18.41205705831794 -2.342005617836192 -17.58211691113504 -2.08964165825829 -17.45438678647546 -2.288231169383394 -17.59095619641875 -2.278194685385098 4.503218956355878 -15.4511854490245 4.506294071050191 -15.3737499654008 5.967573955087233 -15.4511854490245 -6.052265975289288 -15.44533751292056 -6.040289554249846 -15.36844913382241 -4.590939939674025 -15.36844991378953 6.054374605847429 14.13759094877424 6.042443522549659 14.06069895433972 4.578089119545712 14.06069895433972 6.044729634492048 9.015892673164469 4.565368934140106 9.015892350621446 6.054800970515214 9.10643985359448 6.047416248517195 4.018835421644788 4.555339560991967 4.018835421644788 6.054127345178423 4.125729724018402 6.048580889190117 -0.1514151321723878 4.548005953123063 -0.1514156047510027 6.050931677955227 -0.03431204161438601 6.049316921622414 -3.941649049601756 4.545758292856146 -3.941649049601756 6.046967637963183 -3.824547103426327 -10.74851442354966 -3.063015151465335 -10.76209685333605 -3.17964171456935 -10.8986662170669 -3.169573584757068 5.124302506446838 -2.786634471021795 4.761454164981842 -2.786634471021795 5.124302506446838 -2.597953268488039 4.761454164981842 -2.786634471021796 4.761454164981842 -2.597953268488039 18.28037174991929 -2.387247902897864 18.39200537588947 -2.048791391975406 18.42147391942475 -2.304748247562976 20.10342244761315 -2.175557580146113 20.05365622757925 -2.075945265886892 20.19968243591717 -1.834191666765926 4.606616114702037 -11.97692069766911 -0.02275483702880937 -11.97691972658449 4.606859648237528 -11.88604805585828 4.606923857897373 -11.88698878740255 -0.02269036658132474 -11.9778686798956 -0.02244705011956558 -11.88698878740255 0.09703446105603143 -15.16243689422908 0.09732140891473909 -15.23991398680386 -4.532340784707429 -15.16243689422908 4.607210949986045 -15.16254006450116 4.606923857897373 -15.24001089111221 -0.02244705011956553 -15.24001089111221 4.532627714371946 14.07071411677103 -0.09703446105603136 14.14818673393028 4.532340784707429 14.14818673393028 19.07599919846098 -0.7697091863383988 19.01577470375694 -0.4089749355334092 19.16980963613103 -0.7461299621495905 -17.28428507404853 0.4188681793839473 -17.35588528201159 0.173443868592124 -17.43254569204425 0.2414265857558596 15.30183050588967 -0.1829166560228486 15.36758095112323 0.0005554223524328328 15.4576363544048 -0.3563128009267357 -8.093886708506606 -0.8717388436542277 -8.216429222122992 -0.8297522633635218 -8.112418215758909 -0.5916119358026275 -4.761454164981842 -0.5396528051985078 -5.124302506446838 -0.5396528051985078 -4.761454164981842 -0.2591468229856518 5.049393773078919 -0.07917014712386801 4.686544239521027 -0.07917014712386801 4.686544239521027 0.08489251226380006 -4.761454164981842 0.08489251226379962 -5.124302506446838 -0.07917014712386845 -5.124302506446838 0.08489251226379962 5.049393773078919 -3.876350825242173 -10.78873572164456 -3.716033258499089 -10.88638676771986 -3.679221155967225 -10.7806966594359 -3.552089620514495 14.08771776632497 -4.952904215484902 13.99297305853906 -5.031457179754451 13.96683504462481 -4.88890021352956 -12.81873064085446 -6.323475727819551 -12.9375202801542 -6.389862228958428 -12.91489197283081 -6.28431188256751 18.20050519762579 -5.270138353211265 18.27969847953496 -5.181568988507997 18.34172465062959 -5.258234250450363 -4.590931001276149 -12.26650784736685 -6.040280615852252 -12.26650752373431 -4.593497191052654 -12.17565448283994 -4.470892253177451 -3.941391387470278 -5.974453860459587 -3.941391387470278 -5.972106958364483 -3.824289449247038 -4.473140775797431 -0.1516729526775121 -5.9737210732078 -0.151672480098929 -5.976069481400151 -0.03456939748639857 10.81373574963085 -3.175913325044117 10.80015319868049 -3.059286770672568 10.95030387416685 -3.165845195985691 -4.480472602474462 4.018075057372399 -5.972552268551757 4.018075057372399 -5.979265751594065 4.12496938406762 -4.686544239521027 -2.786634471021795 -5.049393773078919 -2.786634471021795 -5.049393773078919 -2.597953268488039 -4.490499449948416 9.014558288891497 -5.969859554582534 9.014558611434746 -5.979934463855106 9.105105856089267 -4.503218956355878 14.05885938239087 -5.967573955087233 14.05885938239087 -5.979503848171558 14.13575134744592 0.09735676063776333 -11.88686467278167 0.09760007687019463 -11.9777445652751 -4.532018510605086 -11.88686467278167 0.09766454650745335 -11.97679549132519 -4.531710768449262 -11.9767964624098 -4.531954301755221 -11.88592382059859 -20.02712261024925 -2.084116209692205 -20.07688910636322 -2.183728438594344 -20.17314666844703 -1.842362817728177 -18.34511534970802 -2.052109752869381 -18.23348502442543 -2.390566215450448 -18.3745844063478 -2.3080665718989 -4.686544239521027 -2.597953268488039 4.516068559031519 -15.36663923555123 5.965418769344401 -15.36663845558411 5.977395191618864 -15.44352683456322 2.185710194233277 -16.01687443923805 1.05048369056491 -16.01687443923805 2.159981592288677 -15.94210187928404 -2.042807883044052 14.68327279064717 -0.8655783579390752 14.68327279064717 -2.017823314231195 14.60834501656992 -1.929195131025891 9.366593011213197 -0.7162983972724596 9.366593011213197 -1.90850667468732 9.277168800803024 -0.6197144075065175 4.230907494019563 -1.842862539746875 4.12441831375727 -1.85645403696691 4.230907494019562 -0.5869599132875225 -0.005214870768700249 -1.827330744080122 -0.1222727230226611 -1.83208928020407 -0.005214870768700249 -0.6197144075065186 -3.854197644495329 -1.86123801091954 -3.971253691573725 -1.856454036966911 -3.854197644495329 6.048581882468827 -3.836912484706731 4.547374048342753 -3.954026417459464 4.548006946401772 -3.836912484706731 -11.7137872856193 -2.243317102395549 -11.57251851853729 -2.32564098050423 -11.72306161508688 -2.431857197353134 5.124302506446838 -3.602498390950017 4.761454164981843 -3.602498390950017 5.124302506446838 -3.345493890250985 4.761454164981842 -3.602498390950017 4.761454164981842 -3.345493890250985 20.08457897251528 -2.055865244857796 20.13921180576704 -1.64537909675398 20.23002554166368 -1.813895503225645 20.19759135237859 -1.625547247119456 20.11925692071081 -1.558760504617163 20.23791939035629 -1.214038421584816 -4.532305602423171 -15.16236827270183 0.09735676063776333 -15.23983909931349 -4.532018510605086 -15.23983909931349 19.73845055727641 -1.17193752314016 19.79020798968127 -0.76894620653525 19.83229447363586 -1.195428257387685 -19.02053244237188 -0.4206978926875721 -19.08075641956122 -0.7814315195013426 -19.17456687379724 -0.7578523360994263 19.04361459444834 -0.7224069564248532 18.88785007816897 -0.3857440386864083 19.08194556589112 -0.3184879843938077 -15.40033074449994 -0.006736022598707869 -15.33457975263204 -0.1902079797442773 -15.49038327259916 -0.3636040100761548 -4.761454164981842 3.090177455198686 -5.124302506446838 3.090177455198686 -4.761454164981842 3.280801018765249 5.049393773078919 -0.5396528051985071 4.686544239521027 -0.5396528051985071 4.686544239521027 -0.2591468229856512 -4.761454164981842 -0.2591468229856516 -5.124302506446838 -0.5396528051985076 -5.124302506446838 -0.2591468229856516 5.049393773078919 0.08489251226380006 4.686544239521026 0.08489251226380006 -11.29117332810071 -0.454513021491851 -11.39113452772774 -0.4646142400789053 -11.29997668616337 -0.2905965906201609 10.81518807001345 -3.681376184324148 10.71753875656982 -3.718188285918735 10.70949955680639 -3.554244652108326 -10.89147854209262 -3.676377657350613 -10.88574355741903 -3.559351615817855 -10.78578256268175 -3.54924914255366 12.86981854023901 -6.398820626364874 12.75103029931516 -6.332434154458914 12.84718988258773 -6.293270326452451 -4.601412393244298 -8.039100679945284 -6.038042127694073 -8.039100170441028 -4.603106545398308 -7.9320681020255 5.96540983205286 -12.2651987737772 4.516059621739696 -12.26519909740974 4.518625810461399 -12.17434573286439 -4.601416592951921 -12.13911900106356 -6.048232252107009 -12.22965381964346 -6.038046327401609 -12.13911835606558 1.924939184056606 -3.851183110382057 1.929725371978757 -3.968239063933166 0.6882050009732821 -3.851183110382057 -4.473141768941632 -3.836662058552371 -4.472508873143861 -3.953775991312667 -5.973722066352004 -3.836662058552371 1.900598898150354 -0.008223471781617087 1.895838164574524 -0.1252812312231929 0.6554722561226023 -0.008223471781616651 11.62146684899884 -2.32414813217465 11.76273441895258 -2.241824255053962 11.77200882275109 -2.430364347748823 1.924939184056609 4.221911285269113 1.911349764665274 4.115421823402338 0.6882050009732854 4.221911285269113 1.997501705891769 9.350362567447537 1.976816557807729 9.260937569313592 0.7846033412747 9.350362567447537 2.110902209731034 14.65994240190167 2.085916671400111 14.58501497532099 0.9336694325431627 14.65994240190167 -20.10569296408427 -1.568586693562604 -20.18402750885082 -1.63537335397261 -20.2243540948804 -1.223865034252437 -20.11354165442537 -1.653906723464462 -20.05891140086225 -2.064392488687762 -20.20435586164081 -1.822422972752629 -4.686544239521027 -3.345493890250986 -4.686544239521027 -3.602498390950018 -5.049393773078919 -3.345493890250986 -4.686544239521027 -3.602498390950018 -5.049393773078919 -3.602498390950018 -5.049393773078919 -3.345493890250986 -2.25358504465243 -15.99313969485531 -2.227856382409962 -15.91836714774108 -1.118360160867006 -15.99313969485531 1.231427929331768 -16.0832287152018 1.246773391632617 -16.00107993467809 2.340082606993026 -16.00107993467809 -1.034247302142608 14.87185567604342 -1.050483690564911 14.78982451832558 -2.185710194233279 14.78982451832558 -0.8511274640230193 10.0002774869243 -0.8655783579390763 9.906600297514103 -2.042807883044055 9.906600297514103 -0.7162983972724579 4.665798678485239 -1.929195131025889 4.665798678485239 -0.7062726610036019 4.773879846168242 -0.6197144075065142 0.06833696570131506 -1.856454036966908 0.06833696570131506 -0.616109874675348 0.1855695620024668 -0.5869599132875247 -4.15662371771603 -1.832089280204071 -4.15662371771603 -0.5905923369997634 -4.039392815958605 -0.6197144075065186 -8.422888053040696 -1.856454036966911 -8.422888053040696 -0.6299763984947571 -8.31482231769256 6.048581882468826 -7.819029137943104 4.548006946401772 -7.819029137943104 6.041885497235486 -7.712135992901121 -13.82931939188191 -4.351686699235466 -13.87428264295881 -4.452702424119747 -14.01357613905352 -4.36832128794176 -14.25778268796201 -2.245020409864408 -14.10584671119727 -2.484509922961849 -14.29015892645264 -2.500759784520114 5.124302506446838 -7.881537941745776 4.761454164981842 -7.881537941745776 5.124302506446838 -7.6985038665113 5.124302506446839 -7.6985038665113 4.761454164981843 -7.881537941745776 4.761454164981843 -7.6985038665113 20.03028076532722 -1.381016395343589 19.99503835597511 -0.9541505383688793 20.14462771188116 -1.03539290335758 -19.78593216233073 -0.7795111928942626 -19.73417519782671 -1.182501940266683 -19.8280191276076 -1.205992641333124 -18.89416258523788 -0.3970288842616265 -19.04992644933156 -0.7336912628382923 -19.08825813327001 -0.3297729376788208 -4.761454164981843 13.44225764041227 -5.124302506446838 13.44225764041227 -4.761454164981843 13.60910229782351 5.049393773078919 3.090177455198686 4.686544239521027 3.090177455198686 4.686544239521027 3.280801018765249 -5.124302506446838 3.280801018765249 5.049393773078919 -0.2591468229856516 5.049393773078919 -0.5396528051985076 4.686544239521027 -0.2591468229856516 -10.82821208961962 -0.7633832521201768 -10.92584966841327 -0.8201757145988158 -10.83756654817415 -0.4829738130488148 11.32068449710185 -0.4622790885886125 11.22072499057226 -0.4521778703036782 11.2295284961436 -0.2882614443346122 -11.38443577435428 -0.4663621754053626 -11.39070290132402 -0.3493546517843862 -11.29326723914596 -0.292347992818163 10.81455182094506 -3.561505136271076 10.82028690372956 -3.678531174828386 10.71459251931607 -3.55140266326374 -4.609014189964251 -4.018059215745196 -6.037142939433112 -4.018058743132294 -4.609602044500985 -3.900947156736948 5.963173779386009 -8.038366688508372 4.526541066212165 -8.038367198012628 4.528235214853508 -7.931334620058437 -4.609016585596063 -7.892475152040531 -6.043968290687342 -7.999373371679192 -6.037145335064903 -7.892474643173437 5.973361525504735 -12.22836178285181 4.526545265390071 -12.13782700560199 5.963177978563827 -12.1378263606043 2.34008260699303 -12.48192391564776 1.246773391632622 -12.48192391564776 2.317592736484473 -12.39277309291505 1.924939184056607 -8.412837673600276 0.6882050009732832 -8.412837673600276 0.6984619795776459 -8.304772637004039 1.900598898150355 -4.153472972138632 0.6554722561226023 -4.153472972138633 0.6591052055856272 -4.036242044737321 -4.473141768941632 -7.8182614765414 -5.973722066352004 -7.8182614765414 -5.967023291911748 -7.711368307083891 1.924939184056606 0.06517660569296027 0.6882050009732821 0.06517660569295983 0.6845999623521182 0.1824092280948905 13.91450185915773 -4.441606057501248 13.86953836477013 -4.34059039963825 14.05379419500759 -4.357224977307931 1.997501705891766 4.655622716512228 0.7846033412746978 4.655622716512228 0.7745824634076259 4.763703169927634 2.110902209731027 9.889210826905524 0.9336694325431572 9.88921082690552 0.9192168054866379 9.982888422541976 2.253585044652428 14.76591122104986 1.118360160867005 14.76591122104986 1.102120059458066 14.84794372060561 -19.98558194520679 -0.9649112159111604 -20.02082543129274 -1.391776445368014 -20.13517140592633 -1.046153461468818 -4.686544239521026 -7.6985038665113 -4.686544239521026 -7.881537941745776 -5.049393773078918 -7.6985038665113 -4.686544239521027 -7.881537941745776 -5.049393773078919 -7.881537941745776 -5.049393773078919 -7.6985038665113 14.14487273506835 -2.48144691508517 14.29680762871678 -2.241957414090741 14.32918403217292 -2.497696775822221 -2.40765094405234 -15.97667295900939 -1.314340653278554 -15.97667295900938 -1.298997832366708 -16.05882076335761 9.628086702292622 -14.28270449167188 9.308205458503469 -14.2937589850914 9.600338603232551 -14.20259415521653 -9.15638467590645 13.23755857289141 -8.780384903449992 13.22736880096883 -9.131317806245944 13.15691490507223 -10.05972714560176 8.367771173881465 -9.63248910550479 8.364731285713532 -10.03446332221797 8.275523334134968 -11.05057981166086 3.367901329390489 -11.47024375638755 3.261958444741649 -11.49145484452039 3.369034668676927 -11.10781426203081 -0.2846352700330709 -11.55327831969917 -0.4020426143794527 -11.5607912865993 -0.2849247609257422 -11.50336225993952 -3.578563639963122 -11.06248694205577 -3.576935725768492 -11.51082094881473 -3.695682477442028 -10.10964567584324 -7.327846505399825 -9.682401778561495 -7.324856078319797 -10.12667529700769 -7.435382094268694 -0.7162983972724568 -7.823109787084589 -1.943001489737283 -7.929580125903267 -1.929195131025889 -7.823109787084589 4.553557532492785 -7.857251946035247 4.555344612540982 -7.75023178734587 6.047421300066162 -7.750231023161794 -17.9198669236586 -3.250838765086589 -17.99747120723871 -3.318150945145977 -18.13596643191458 -3.073669950827252 -17.25217988680722 -2.5263192365622 -17.12527697766129 -2.869220361091524 -17.34439773755976 -2.694363093502924 5.124302506446838 -13.48634422972656 5.124302506446838 -13.62934139326121 4.761454164981841 -13.62934139326121 4.761454164981843 -13.48634422972656 5.124302506446839 -13.48634422972656 4.761454164981843 -13.62934139326121 4.686544239521028 13.44225764041227 4.686544239521028 13.60910229782351 5.049393773078919 13.44225764041227 -5.124302506446838 13.60910229782351 5.049393773078919 3.28080101876525 5.049393773078919 3.090177455198687 4.686544239521027 3.28080101876525 -18.90994524114691 -0.6686511851179914 -19.00192999132849 -0.9098360090245988 -18.97082490968914 -0.4841418391330651 10.85470589029763 -0.818710814368558 10.75707004431758 -0.7619183525581621 10.76642466268993 -0.4815089167862112 -19.4115973855404 -0.8045165649583449 -19.45148232814367 -1.147363289893205 -19.4983977167788 -1.046887611486468 11.32024261235959 -0.3470254471665981 11.31397538034749 -0.4640329673057708 11.22280868561172 -0.290018789896727 -4.611197369125708 -0.07464421162137877 -6.036346680419965 -0.07464421162137877 -4.610611047130893 0.04246622395491267 5.962276415639592 -4.017826119827646 4.534142900166311 -4.017826592440547 4.534730752741241 -3.900714533426205 -4.611197369125708 -3.889258412346493 -6.038739791771512 -4.006358473932219 -6.036346680419965 -3.889258412346493 5.969099984893216 -7.998646739658097 4.534145295495415 -7.891748537457251 5.962278810968677 -7.891748028590238 2.480903371497711 -8.058358052523531 1.423050836975676 -8.058358052523531 2.465468505781433 -7.952015602886137 -2.407650944052344 -12.46470553348781 -2.38515895868009 -12.37555525100804 -1.314340653278559 -12.46470553348781 1.410735011654689 -13.00671822027868 1.423050836975677 -12.91285457345404 2.480903371497713 -12.91285457345404 9.729244274646593 -7.30594838406494 10.15648411028464 -7.308938772449786 10.17351774453513 -7.416472969842089 1.997501705891766 -7.814032465549865 2.011305859053121 -7.92050309886547 0.7846033412746967 -7.814032465549865 11.10444042445242 -3.570828956788975 11.54531507591204 -3.572456871640502 11.55277347298887 -3.689575756379318 -4.480477653373026 -7.749458032316293 -4.478690576892274 -7.856478191042537 -5.972557319450274 -7.749457268132219 11.59508770646414 -0.4081566416561464 11.14962472704136 -0.2907492515030213 11.60260042313606 -0.2910387425086379 11.5122384283163 3.242405769474073 11.09257827984395 3.348347282653135 11.53345264634378 3.349480607268078 10.10672084692224 8.335535333180506 10.08145716235882 8.243286889359673 9.679486869191189 8.332495425106218 9.206022378799732 13.19523610707479 9.180957784235043 13.11459017406516 8.830024516351578 13.18504604893292 -4.686544239521027 -13.48634422972656 -4.686544239521027 -13.62934139326121 -5.049393773078919 -13.48634422972656 -5.049393773078917 -13.48634422972655 -4.686544239521025 -13.62934139326121 -5.049393773078917 -13.62934139326121 17.14783892261312 -2.861549196694088 17.27474097378587 -2.518648181113935 17.36695898175682 -2.686691984662478 18.01437777808899 -3.306078968835501 17.93677342017773 -3.238766841808939 18.15287233016291 -3.061598167134486 -9.676220626684239 -14.23931561735597 -9.64846988615342 -14.15920716125022 -9.356341775336516 -14.25036985130444 8.314302669057607 -14.54647509631868 8.351208741690044 -14.47606596013724 8.612018580897297 -14.46727170186682 -7.874674711645378 13.0703121279486 -7.909382922154723 13.00355435605076 -8.229363370231875 13.01266036622991 -9.200888312076378 7.716063763747422 -9.228446260163334 7.62810248980347 -9.604637102843647 7.63196129370947 -9.731521732947766 0.3128026427261059 -9.726711675644653 0.2117124118050615 -10.15395803252766 0.2139131077134052 -11.06188080428233 -0.3900423914164883 -11.06651790623856 -0.5083858982375872 -11.50739327296986 -0.507336005217475 -11.10900066089257 -3.468773843369492 -11.10440731392674 -3.587115263248207 -11.55738433878191 -3.587404476404805 -11.05269642612473 -4.013668789078606 -11.05913092582625 -4.114699164534456 -11.50000618465159 -4.116336946823259 -9.644629174803402 -10.5877045246411 -9.61875971287736 -10.67598751597022 -10.04599557022101 -10.67961988343205 -0.7313022409280223 -12.71903327725996 -0.7162983972724635 -12.81265723100193 -1.929195131025896 -12.81265723100193 6.047427482856627 -12.02048803427564 4.555350795331638 -12.02048900192059 6.037385524928208 -11.9299382382272 6.044733395853727 -11.96373588251265 4.562728162852848 -12.05458491008635 4.565372695501758 -11.96373588251265 -19.13281915548478 -2.677617379175354 -19.22662532336866 -2.70120123346108 -19.33567460291308 -2.354519640129916 -18.80792778166735 -2.290597024990281 -18.7506233124425 -2.69312374254919 -18.95766314796141 -2.371672764704971 5.049393773078919 13.44225764041227 4.686544239521028 13.60910229782351 5.049393773078919 13.60910229782351 -19.72465195860826 -1.872689394452899 -19.78692607458605 -2.233208412698209 -19.91871488476029 -1.805375217318498 18.96065782700875 -0.9014312385492096 18.86867452091106 -0.6602465080778366 18.92955453951317 -0.4757372335720102 -19.98049274172801 -1.531577379917239 -19.97388192775903 -1.95794251587571 -20.05204745036232 -1.89102883843251 19.41606164962303 -1.137152569665585 19.37617823093496 -0.7943060405164421 19.46297723682424 -1.036676948636391 -4.609013165908317 4.244034893684437 -6.03714191537718 4.244034893684436 -4.607335193697341 4.35106633479906 5.961475705594768 -0.07487620678720416 4.536324607044228 -0.07487620678720394 4.53573828578471 0.04223422879136592 -4.609013165908317 0.03046803522357362 -6.034750327903938 -0.08663088252388675 -6.03714191537718 0.03046803522357362 5.961475705594768 -3.889037147989022 5.963871796437454 -4.006137218737282 4.53632460704423 -3.889037147989022 2.580668397781054 -4.009650183868443 1.546464556103274 -4.009650183868443 2.575145488151038 -3.892615606872484 -1.490413644686014 -8.048534463857896 -2.548261358666484 -8.048534463857896 -2.532824772750701 -7.942192257001909 2.580668397781056 -8.498388385117684 1.53855837293821 -8.606580699121144 1.546464556103276 -8.498388385117684 -2.548261358666482 -12.89452278500166 -1.490413644686011 -12.89452278500166 -1.478094259329754 -12.98838747392245 8.127325805352195 -12.04608252682808 7.866329681399593 -12.05022794831653 8.110494136636552 -11.9526537920919 9.69167276843638 -10.55736549001929 10.09303711034639 -10.64928026616558 9.665805314844198 -10.64564792172906 11.10109676368728 -4.106572517366085 11.09466221611444 -4.005542143797015 11.54197135609249 -4.1082102996243 0.7996088669677953 -12.70189029515711 1.997501705891756 -12.79551465409046 0.7846033412746861 -12.79551465409046 11.14623008516814 -3.581298962871853 11.15082302239242 -3.462957587042447 11.59920578154974 -3.5815881759208 -4.480483835384518 -12.01913765601633 -5.972563501461573 -12.01913668837068 -5.962517963969264 -11.92858682781568 11.10845729119374 -0.5141889211814835 11.10382056253397 -0.3958454591988279 11.54933199150644 -0.5131390285591592 9.773404801169409 0.2038562044241398 9.778215120696375 0.3049464276235968 10.20064709599586 0.2060569001643874 9.652907369034246 7.602326676393322 9.276718422415952 7.598467899525356 9.249162077638447 7.686428557138511 8.28170625625744 12.97315601374789 7.961728231203193 12.96404963741902 7.92701721011836 13.03081009362518 18.75949479111181 -2.68298020751688 18.81679885272213 -2.280453714248502 18.96653425854302 -2.361529408787258 19.23139801201328 -2.689451701497159 19.13759183695888 -2.665867864861596 19.34044707240945 -2.342770367622618 -4.490503210843826 -11.96238721875293 -4.487858677129998 -12.05323624630745 -5.969863315477971 -11.96238721875293 -8.663158878813899 -14.42652604764428 -8.402350720291743 -14.43532004108953 -8.365447939979076 -14.50572705701122 15.46335916394793 -10.60892281156017 15.15066046890538 -10.60892281156017 15.4605718920975 -10.53279436171911 -15.29970092633747 9.305762693544153 -14.99859668636053 9.305762693544153 -15.29624746796896 9.23368831106178 -15.44113742569023 5.340529677294571 -15.72983750475899 5.24998906567549 -15.73376769121119 5.34052967729457 -14.98663259470132 -0.5193083408391356 -15.27171154115017 -0.6200326321203501 -15.2836478343792 -0.5193083408391356 -15.00300206834774 -0.6824902856178123 -15.29705297699152 -0.8008897544279089 -15.29735971942515 -0.6824902856178123 -15.2836478343792 -3.177385094368122 -14.98663259470132 -3.177385094368122 -15.28393654950007 -3.295781449767732 -15.73376769121119 -3.248296663348741 -15.44113742569023 -3.248296663348741 -15.74634910072259 -3.348968410168124 -15.29970092633748 -8.467577620774065 -14.99859668636054 -8.467577620774065 -15.30109726509389 -8.558169169191881 -9.170686243752215 -11.31038111380704 -9.569906803357572 -11.40790835860952 -9.546865027032169 -11.31530059948072 -0.8655783579390791 -12.20994719597754 -2.063998346223663 -12.29929923647023 -2.042807883044057 -12.20994719597754 6.032847801229052 -15.26743859805111 6.044733395853726 -15.34433456450821 4.565372695501758 -15.34433456450821 4.578089119545712 -15.27181098915321 6.042443522549657 -15.27181098915321 4.575014081597541 -15.34924436875584 -19.68978159165452 -2.293963292161629 -19.78360930459403 -2.270426643519187 -19.82425638726421 -1.866647650281283 19.78048424304985 -2.221722100294466 19.71821042565488 -1.861203340651838 19.91227337887101 -1.793889211802343 19.95944976798924 -1.947520684372979 19.96606127535994 -1.521155800721344 20.03761534536724 -1.880607046526774 -4.601408956055971 9.271815676683524 -6.038038690505769 9.271815676683522 -4.598875089223176 9.362670027227752 5.962275391711477 4.24330835415043 4.534141876238193 4.243308354150429 4.532463909626989 4.35033979531938 -4.601408956055971 4.30787130089876 -6.031231801022802 4.200973234703139 -6.038038690505768 4.30787130089876 5.962275391711476 0.03024645439678193 5.959880823535986 -0.08685247252196932 4.534141876238193 0.03024645439678193 2.476153838318579 -0.08152662073299774 1.448475082256825 -0.08152662073299774 2.481589082294483 0.0355093323322735 -1.613661316306823 -4.00664585757511 -2.647858214491436 -4.00664585757511 -2.642337916068863 -3.889611157446968 2.476153838318576 -3.366939655412789 1.447397692994427 -3.483564387562972 1.448475082256822 -3.366939655412789 -1.613661316306821 -8.487591882161246 -1.605754788234128 -8.595784290817457 -2.647858214491436 -8.487591882161246 6.6776721177237 -8.26850753411134 6.465933012836835 -8.270891193067653 6.670723983068755 -8.160274527676586 -8.179911047886003 -12.01633978017662 -8.16308171009161 -11.92290944819252 -7.918916619656993 -12.02048527253476 6.515334858398953 -11.26382444313159 6.553415841722168 -11.17832569057235 6.765147003713963 -11.17553940940338 15.02202243247326 -8.429644127596799 15.32312760948885 -8.429644127596799 15.32452377666325 -8.520234777394641 9.595311194915702 -11.28366783139316 9.618352304145599 -11.37627627152644 9.219134308971217 -11.27874830954333 15.46211492777181 -3.240215589930534 15.7547468827891 -3.240215589930534 15.76732793248971 -3.340887364577219 2.110902209731041 -12.19347232815999 2.132089323736721 -12.28282517451938 0.9336694325431699 -12.19347232815999 15.0101056246541 -3.170566056938317 15.30712256202268 -3.170566056938317 15.30741115185396 -3.288962358661077 15.32066409723172 -0.8077351146625333 15.02661315338168 -0.6893356999620466 15.3209709925307 -0.6893356999620466 15.29518659165885 -0.6282128187308306 15.01010562465411 -0.5274885037723215 15.30712256202268 -0.5274885037723215 15.75081771334134 5.211752358278227 15.46211492777181 5.302292096450603 15.75474688278911 5.302292096450603 15.32312760948885 9.253044120185663 15.31967646468605 9.180966345238184 15.02202243247326 9.253044120185663 19.77908576945749 -2.259271994055478 19.68525805006725 -2.282808626784016 19.81973307066181 -1.855493273825868 -4.503218956355878 -15.26997096044538 -4.500143919658692 -15.34740434007876 -5.967573955087234 -15.26997096044538 -5.95797891353612 -15.2655721743769 -4.490503210843827 -15.34246811125649 -5.969863315477973 -15.34246811125649 -15.48594779083108 -10.55551571529595 -15.48315975889287 -10.47939023135501 -15.17324855490909 -10.55551571529595 15.7114721802048 -10.13036465378344 15.68691514941947 -10.04414893753694 16.01708444038077 -10.04414893753694 -15.1668191078759 9.234871470267324 -15.15066046890538 9.160017322859506 -15.46335916394793 9.160017322859506 -15.00862113548088 4.998656138367536 -14.99859668636054 4.912960297695726 -15.29970092633747 4.912960297695726 -15.44951183108844 0.2103160872656308 -15.44113742569023 0.1081623766247779 -15.73376769121119 0.1081623766247779 -14.98957904088851 -0.7018823012797399 -14.98663259470132 -0.820254278292991 -15.2836478343792 -0.820254278292991 -15.00003788106573 -3.155892365437515 -15.00300206834774 -3.274260926143993 -15.29735971942515 -3.274260926143993 -14.97925661821838 -4.127858398099161 -14.98663259470132 -4.23005584520005 -15.2836478343792 -4.23005584520005 -15.42889186415092 -7.762435691660009 -15.44113742569023 -7.847957855214205 -15.73376769121119 -7.847957855214205 -14.98357338336505 -10.55388201517499 -14.99859668636054 -10.62888111751612 -15.29970092633747 -10.62888111751612 -8.824823626942271 -14.12489571325095 -8.794080268872612 -14.19284427826379 -9.170089165605129 -14.20300702134653 -0.8826350129102212 -15.92375036724437 -0.8655783579390697 -16.00567808604854 -2.042807883044047 -16.00567808604854 -1.050483690564914 -15.82923519957291 -2.211437211425421 -15.90400693072866 -2.185710194233281 -15.82923519957291 -6.030513669705284 14.16644362764167 -6.042443522549659 14.24333609920092 -4.578089119545712 14.24333609920092 -4.590927172236486 14.17802120568929 -6.040276786812616 14.17802120568929 -4.58789892625582 14.25545751748922 5.96317034262518 9.270523289539652 4.526537629451313 9.270523289539652 4.524003767872253 9.361377640174554 -4.590927172236486 9.318216910614718 -6.030122993531732 9.227678957809356 -6.040276786812616 9.318216910614718 5.963170342625178 4.307137113572084 5.956365236892629 4.200239064899323 4.526537629451314 4.307137113572084 2.580668397781054 4.226768642287551 1.546464556103275 4.226768642287551 2.596393690121083 4.33308345358001 -1.515796929642288 -0.08450018169509035 -2.543472473262476 -0.08450018169509035 -2.548905067545308 0.03253589439603184 2.580668397781052 -0.5085529354970522 1.547479105901426 -0.6251768485774619 1.546464556103273 -0.5085529354970519 -1.515796929642288 -3.364648213406738 -1.514720630772632 -3.481272910079917 -2.543472473262476 -3.364648213406738 5.301970907146547 -3.435856086462512 5.122380014925482 -3.436902553364898 5.300567009919858 -3.319233503802847 -6.522399165103879 -8.254818544593391 -6.734136917726277 -8.252434883096971 -6.727188912143367 -8.144201761325455 5.130792201892552 -7.109309396465209 5.159518850826261 -7.003947812433165 5.339109200491081 -7.00284522868404 -6.821393137669627 -11.15121937687499 -6.60966332883516 -11.15400569981857 -6.571580074568978 -11.23950573425742 15.68691514941947 -8.313956844572193 16.01130909436 -8.223475798903641 16.01708444038077 -8.313956844572193 15.00700185472502 -10.50086241382568 15.32312760948885 -10.57586585104739 15.02202243247326 -10.57586585104739 15.46211492777181 -7.812702149595211 15.44987103714391 -7.727179303403415 15.75474688278911 -7.812702149595211 8.874415679096611 -14.0833870487067 9.219676513622714 -14.16150151219486 8.843669532248601 -14.15133835857689 15.01010562465411 -4.21760143079724 15.00272995593065 -4.115404060723963 15.30712256202268 -4.217601430797241 0.9507300078925474 -15.90024312151012 2.110902209731035 -15.98217213411584 0.9336694325431638 -15.98217213411584 15.02661315338167 -3.267215297547446 15.0236473080955 -3.148847216089724 15.3209709925307 -3.267215297547446 15.01010562465411 -0.8272897564913471 15.01305345961021 -0.7089182544098032 15.30712256202268 -0.8272897564913471 15.46211492777181 0.09569302719149637 15.47048894150539 0.1978466668897259 15.75474688278911 0.09569302719149637 15.02202243247326 4.877885897656243 15.03204586218669 4.963582345625581 15.32312760948885 4.877885897656243 15.48594779083108 9.106820843174218 15.17324855490909 9.106820843174218 15.18940489824317 9.181679302055864 4.516055793173837 14.17620921522614 4.513027548437893 14.25364552705619 5.965406003487029 14.17620921522614 5.955644101001473 14.1646048661961 4.503218956355878 14.24149733763617 5.967573955087234 14.24149733763617 2.253585044652437 -15.80549481303079 2.279313202063853 -15.8802661536584 1.118360160867012 -15.80549481303079 -16.03646536591912 -9.98953066762771 -15.70629498706582 -9.98953066762771 -15.73085244048429 -10.0757418179448 -9.691790315408117 -12.66057836863902 -9.713998895841865 -12.46082576638666 -9.592025503009758 -12.61999545698963 -19.38355668723695 -4.849280978589558 -19.22797954663386 -4.68492067644751 -19.29867559749668 -4.885420632541788 -19.65355374764422 -0.1876257909771591 -19.83106337048672 -0.3626433077867314 -19.87527749914726 -0.2839274121714716 -17.82394544450362 -0.5795170116679241 -18.04243545583606 -0.7263208742847903 -18.05720797763103 -0.624616735940446 -17.52329737790185 -1.128318286865405 -17.75279379070075 -1.246811770317144 -17.75986485325772 -1.128547848127118 -17.84463983667688 -2.716384265512863 -17.61117615647032 -2.760379019697464 -17.85187049601123 -2.834639070439923 -18.72812638482233 -2.907042865882481 -18.49785025410326 -2.989545482403961 -18.74496551268442 -3.008544142958534 -19.98336525213728 -2.619792609283633 -19.77616602255682 -2.743600817854579 -20.03000983968968 -2.697641230362282 -19.07521880107368 2.222549238425893 -19.28863543162263 2.360351055835429 -19.20319018112049 2.395655766345168 -15.15066046890538 -10.38957659428272 -15.4678996499368 -10.46161236820582 -15.46335916394793 -10.38957659428272 -7.592980592543337 -14.72278805579691 -7.931323689259743 -14.81781382894436 -7.912733424243109 -14.73609284126878 1.066715171206866 14.87922337145254 1.050483690564915 14.9612663398651 2.185710194233282 14.9612663398651 1.246773391632629 14.68378374546087 2.366609997996232 14.75838297211304 2.340082606993036 14.68378374546087 5.965406003487029 9.316907204223755 5.955254592107321 9.22636929298281 4.516055793173837 9.316907204223753 1.423050836975679 9.408630203324389 2.504008705394735 9.497683835261139 2.480903371497714 9.408630203324389 -1.613661316306823 4.216833965123685 -2.647858214491436 4.216833965123685 -2.66358527831016 4.323148525969196 2.480903371497709 4.956565244715231 1.431281496542692 4.848389187239793 1.423050836975673 4.95656524471523 -1.613661316306823 -0.5108695198862523 -1.614674755282457 -0.6274933972356864 -2.647858214491436 -0.5108695198862521 5.581476603007155 -0.6805588062504455 5.41338949362268 -0.6802705431518155 5.583064466256579 -0.5639388517518161 -5.181810821326999 -3.433770564486227 -5.361405040645122 -3.432724098009614 -5.36000037290997 -3.31610156279985 5.573471488986977 -3.563565990905814 5.395482428849181 -3.681420280371785 5.405384380871043 -3.56327727041682 -5.218859508223209 -6.99200057020482 -5.190136506454993 -7.097361217876384 -5.398453185088338 -6.990897996254484 14.88039625808592 -6.049177235414322 15.21748049650793 -5.941420586126752 15.21811730717534 -6.049177235414322 -16.03069190279564 -8.185171423605269 -15.70629498706582 -8.275654346415315 -16.03646536591912 -8.275654346415315 14.8895366535659 -7.82661596848238 14.88039625808593 -7.746024320254646 15.21811730717534 -7.746024320254646 19.02606839773496 2.256506534682424 19.15403259842444 2.429616522993429 19.2394830470427 2.394311106744111 15.48594779083108 -10.33653502102502 15.49048636236317 -10.40857419527562 15.17324855490909 -10.33653502102502 19.75600973124104 -2.714071717270739 19.9632084087255 -2.590263207330954 20.00985406907348 -2.668112017905508 7.965972928466415 -14.69621602469888 7.98456087767152 -14.77793914185571 7.646222527975709 -14.6829108925316 18.49592406243902 -2.978197317817065 18.72620003535318 -2.895694800358196 18.74303946008466 -2.997195955559551 17.61693882169307 -2.753566207606559 17.85040236961077 -2.70957162793011 17.8576334275191 -2.827825963791534 17.75939437792321 -1.253691370720623 17.5298988979745 -1.135198367111765 17.76646611515011 -1.135427927443862 18.04657186683278 -0.7382075998340181 17.82808222336632 -0.5914038944870823 18.06134458600063 -0.6365035704445915 19.81430039918641 -0.3934265245109556 19.63679235280653 -0.2184086574765198 19.85851574560294 -0.3147104713785267 19.33533831004069 -4.884288843118547 19.25045193748908 -4.92042911361338 19.17976630410968 -4.719925736989262 -2.407650944052344 14.65960892399736 -2.434178292636242 14.73420815998433 -1.31434065327856 14.65960892399736 -1.134588874954071 14.85525742460412 -2.253585044652435 14.93729944855732 -1.118360160867011 14.93729944855732 9.617296553904486 -12.66500159933754 9.517538033774816 -12.6244186570386 9.639505159001477 -12.46524884622546 -8.348870233178907 -12.71452028932761 -8.285797666476661 -12.69012230195108 -8.214562814956576 -12.86742169281624 -18.26962030106745 -6.321678590382891 -18.20580946819558 -6.344842556523926 -18.31228988078171 -6.527023297727342 -20.0176928318019 -1.364111028346354 -19.97740045059154 -1.416793138344588 -20.17402113757889 -1.551212762328492 -19.20516685026805 -0.1514455281133151 -19.18609610962371 -0.2190984511117832 -19.41311367953923 -0.3074381544577679 -17.67416945040313 -0.971600351689575 -17.66995277574447 -1.045853337287439 -17.90337358244077 -1.090443414968429 -17.51628493294478 -2.958314624085006 -17.52029699570496 -3.032574277155831 -17.75686446996305 -3.032804537444579 -18.30652781387649 -4.314869983319435 -18.32123859860547 -4.38319247403253 -18.55345877405838 -4.335297809494179 -19.88292975625511 -2.43110911045672 -19.92024185688072 -2.485132106889783 -20.13522941088246 -2.380158619234217 -18.46166333929716 3.682637282770554 -18.59763165040474 3.857152589259791 -18.39842742323149 3.706758269414646 -7.978014589064561 10.65448200121277 -7.935765208984162 10.85195564554562 -7.915461067359663 10.62926959620017 15.15066046890538 9.563056658643538 15.46335916394792 9.563056658643538 15.13071507699757 9.476108580649944 9.365389491392346 12.82429154073632 9.333231225800933 12.89612594592658 9.65309354528778 12.88456395601899 8.658719233181996 13.33630972377719 8.943388862302919 13.4049215920979 8.919316626974984 13.32407923516827 1.259774571595104 10.10164871144983 1.246773391632616 10.19545538944987 2.340082606993024 10.19545538944987 -2.548261358666484 9.391118389780145 -2.571369004689898 9.480171440153075 -1.490413644686015 9.391118389780145 -1.490413644686015 4.945903461583451 -1.498644713387319 4.837727313105533 -2.548261358666485 4.945903461583451 5.39174599264131 4.676365261466075 5.212157525850023 4.67814160123558 5.394906863333667 4.784706386250813 -5.472181395963654 -0.6834580342270553 -5.640271324742957 -0.6837462972064924 -5.64185996059949 -0.5671263909287087 5.312351299946323 -0.3136682266879932 5.142869273387641 -0.4301738445479654 5.132760493972358 -0.3120448232940665 -5.454294017722256 -3.677656071289764 -5.632285628908424 -3.559801821789036 -5.464195701397696 -3.55951310139795 14.84063769401802 -3.380259162047009 15.18577900417103 -3.26185971708987 15.18595468460332 -3.380259162047009 -15.24130194941138 -5.919889781147626 -14.90421775913593 -6.027644908858769 -15.24193995183978 -6.027644908858769 14.84874765343728 -6.011659752450758 14.84063769401802 -5.904141119940886 15.18595468460332 -5.904141119940886 -14.90421775913593 -7.714855940669859 -14.91335624095274 -7.795449382657618 -15.24193995183978 -7.714855940669859 6.07413098284888 -9.966587740241058 6.052751336910597 -10.0457322227141 5.87941875266081 -9.919309661669212 7.840549175481191 10.6290490144039 7.860849705980102 10.85173505516317 7.903100309075954 10.65426141844438 18.34389530544001 3.739275975397719 18.54309953293489 3.889671079150379 18.40713350634971 3.715154863026652 -15.15330176001074 9.422006758451859 -15.48594779083108 9.508950183664904 -15.17324855490909 9.508950183664904 19.8969724458157 -2.449373366132012 19.85965982852327 -2.395350590533483 20.11196010793283 -2.344400307585765 -9.413435376015551 12.78134491258663 -9.701140325193906 12.84161546867074 -9.381280391948785 12.85317710193036 18.3211164608359 -4.35912086594477 18.30640528909486 -4.290798043421902 18.55333637234671 -4.311225968804862 17.52692274457307 -3.024050899505027 17.52290995029941 -2.949791951472361 17.76348996065288 -3.024281157607632 17.67517820574421 -1.05432127111724 17.67939522910824 -0.9800689784134583 17.90859895542022 -1.09891093270451 19.17654482217115 -0.2418173010313325 19.19561638993978 -0.1741641351521039 19.40356197441698 -0.3301573215256888 19.94916318742726 -1.450260333309652 19.9894558707789 -1.397578366317186 20.14578400235407 -1.584679592411025 18.25653184107658 -6.55787781846958 18.15005578636333 -6.375695333792005 18.2138688302574 -6.352531145971249 -1.327345637163402 10.083661662458 -2.407650944052354 10.17746934616758 -1.314340653278568 10.17746934616759 -8.969535605905968 13.28203736354265 -8.993610370704918 13.3628779521194 -8.708939888320259 13.29426758462078 8.139676247078629 -12.86816259583665 8.210908009611323 -12.69086320744336 8.273978207441394 -12.71526119447974 -12.78274387722732 -6.365614854307423 -12.85013894276203 -6.381307745137489 -12.86009693609806 -6.18552628458628 -15.78946505816563 -5.510541726443739 -15.85685088002671 -5.494847306285777 -15.78013292210458 -5.314741186294477 -17.8416253924724 -4.205936875219305 -17.89662173176317 -4.162252455235499 -17.75085943067127 -4.029919296213584 -18.73492209816997 -2.986942577111664 -18.88587297080539 -3.115625688304565 -18.92092603351418 -3.052052087977587 -19.08382523072946 -2.297553636979063 -19.27044217847237 -2.36156841028472 -19.2823972448122 -2.287838757801712 -19.22438961449992 -1.632404227412163 -19.03782283819056 -1.715842692447699 -19.23639490486517 -1.706128478536877 -18.74223579387762 -0.8065263520552668 -18.59198109796248 -0.9547140616795583 -18.77760881278337 -0.869989378480578 -17.54122458466774 0.1184337390716796 -17.68579234691721 0.2700819306560698 -17.6304287660604 0.3134777680939756 -15.65646630459152 1.291234755797375 -15.7323386476556 1.48973944020916 -15.66488296606815 1.505248688255905 -12.9367457267672 2.211256775862102 -13.0132550779171 2.012766795441328 -13.00421049433906 2.226764875080322 -9.843270666827925 9.942780775254487 -9.888396610315738 10.1631985964147 -9.788166085982898 10.12333448897309 15.68691514941947 8.786710331342688 16.0238749337508 8.86268155512165 16.01708444038077 8.786710331342688 7.897678810089994 8.027416426002192 7.864543301827258 8.114184752327695 8.125539781929545 8.109627824716947 6.673049848220581 9.469715966396223 6.896084339222137 9.559746333869635 6.884762958644726 9.465804985259812 -5.271379763675692 4.6632943912561 -5.450971557570048 4.661518049302336 -5.454131147372023 4.769859307307832 6.677170504544652 3.410883337648484 6.491090664057091 3.307947080044089 6.465431366870718 3.413794575316653 -5.202275551431507 -0.4338439809994849 -5.371761164807856 -0.3173384028208116 -5.192167031731167 -0.3157149999798093 15.1753449570544 -0.7137339373397769 14.82737263025975 -0.7137339373397769 15.17550626670093 -0.5953376211913491 -15.21005229255512 -3.255013659375607 -14.86491272747025 -3.373413050099153 -15.21022837451268 -3.373413050099153 14.83018938232627 -3.363247504567183 14.82737263025975 -3.244873795772628 15.1753449570544 -3.244873795772628 -14.86491272747025 -5.883240749762564 -14.87302250707226 -5.990760022550326 -15.21022837451268 -5.883240749762564 10.16320062559679 -7.037031182269035 10.35410713240962 -7.017393499742548 10.34700273135151 -7.12495615122071 -6.10914123146968 -10.02512542648012 -6.130524663523904 -9.945979887175954 -5.935811910440053 -9.898701177291059 4.439032976970478 -11.98340202401183 4.468619694421044 -11.92649294888146 4.630761698629476 -12.03770408049976 12.941697311043 2.018454057509577 12.86518640303935 2.216944390881896 12.93264894552412 2.232452517676358 9.768878972063599 9.947686821193569 9.713778591995073 10.12824057167612 9.814002868135006 10.16810468723477 15.6659813934412 1.499018471902721 15.59011232929354 1.300513219207083 15.59852351378556 1.514527764349704 -15.70629498706582 8.732666998645161 -16.03646536591912 8.732666998645161 -16.04325582618906 8.808635269477087 17.62672952931197 0.2801970374289753 17.48216341514532 0.128548661864497 17.57136601513961 0.323592927514855 18.53923678922872 -0.9469091429666696 18.68948976418842 -0.7987211602002733 18.72486364052563 -0.8621843036017132 18.9891225781716 -1.713194037408865 19.17568880158024 -1.629755837601254 19.18768961402955 -1.703479854376856 19.22216787145841 -2.364303168194035 19.03555155082161 -2.300288606453789 19.23411853418363 -2.290573759383596 18.8342591331913 -3.123954853184598 18.68330990625126 -2.995271476320575 18.86931301872998 -3.06038112160753 17.83863199804143 -4.173434737613167 17.78363573912622 -4.217119220216832 17.69287130051369 -4.041101388896995 15.79085600446988 -5.505157165192947 15.72346798640699 -5.520851640241356 15.71414130288766 -5.325050415289506 -6.94070064484745 9.437924505789244 -6.952019441919244 9.531867377155223 -6.728988888700038 9.441835550321279 -7.95027424563846 8.000646900380163 -8.17813151795796 8.082859631654044 -7.917136733841961 8.087416633127729 12.77835483883574 -6.387302547985668 12.71096200259839 -6.371609624830847 12.78831666929671 -6.191520684157089 -9.68092843336105 -6.120881596644153 -9.735939489592669 -6.16455774489523 -9.827290752882114 -5.988573495171885 -10.07394446695215 1.952842852432265 -10.21911948003686 1.801217886282871 -10.12932053946803 1.996232043650448 2.413905613590869 8.735847419225193 2.379310964445952 8.790980780609035 2.53426046563354 8.93105476926039 15.67423082878306 3.968712718113738 15.68691514941947 4.049011524292988 16.01708444038077 4.049011524292988 15.21811730717534 5.80085919864991 14.88039625808593 5.800859198649909 15.2190775342545 5.891455222201265 -6.547544681720589 3.294471620129648 -6.733627439126202 3.397406998346797 -6.521889653117752 3.400318211144182 15.18595468460332 2.248110681458929 14.84063769401802 2.248110681458929 15.18646775344484 2.355864921485728 -14.85159354600209 -0.720568210412048 -15.19956548803766 -0.720568210412048 -15.19972704947418 -0.6021719483419815 14.83780678440374 -0.7339876700204291 14.84063769401802 -0.6156173123829684 15.18595468460332 -0.6156173123829684 -14.85159354600209 -3.237951948498318 -14.85441151087351 -3.356325337016881 -15.19956548803767 -3.237951948498318 12.05741482513919 -3.563240662441386 12.24195836344508 -3.489354483544652 12.24154061641983 -3.607748473706828 -10.39766087355002 -6.999490266505816 -10.20675364225036 -7.019128052741568 -10.39055491731616 -7.107053486036927 10.2975001942721 -7.633555202672231 10.30599075633745 -7.564584601157192 10.48832644754952 -7.613440602891981 -4.690710747276611 -12.01390608707657 -4.528570604954117 -11.90269375807636 -4.498981510604737 -11.95960344593224 10.14467526126418 1.803192736996237 9.999495264955684 1.954817680861395 10.05487363302272 1.998206865702695 -2.478268632430267 8.716361066160564 -2.598617818886321 8.911570221728214 -2.443671634953325 8.771494937489718 -15.70629498706582 4.017592829726342 -15.69361245066309 3.937292183630611 -16.03646536591912 4.017592829726342 -14.90421775913593 5.763260575988522 -15.24193995183978 5.763260575988522 -15.24289825157169 5.853858412660615 9.661321327434161 -6.166279363329495 9.606307960399429 -6.122603221429672 9.752675213521918 -5.990295139197252 -7.395537909747889 -4.830922892375976 -7.430609113530139 -4.894486908002942 -7.582130724041725 -4.765823197772249 -7.775983267541528 0.7476408337632816 -7.962203837859102 0.6629274849558876 -7.811371043444507 0.8110953701622439 7.766607095408951 6.515231945749315 7.590830213999094 6.418063621011885 7.750224525147358 6.595115452111634 14.87216447635101 2.179947425949198 14.88039625808592 2.287457504881583 15.21811730717534 2.287457504881584 -14.86491272747025 2.226444157171185 -15.21022837451267 2.226444157171185 -15.21074376780526 2.334196873085406 -14.86491272747025 -0.6225643843096979 -14.86208045979548 -0.7409344194215524 -15.21022837451268 -0.6225643843096981 12.41469233972847 -0.5002694550396616 12.23169637368569 -0.5000396405644378 12.41447618763021 -0.3818782724980979 -12.27825252498836 -3.482855020088215 -12.09370982983083 -3.556741012596679 -12.277836473803 -3.601248711584913 12.22372091515855 -3.796425702544841 12.22513709523424 -3.722106338661855 12.40813305999706 -3.722336782997072 -10.34901622437447 -7.543969645772952 -10.34052578346923 -7.612940066679143 -10.53135278775586 -7.592825519571694 7.887300302356735 0.6628454520420777 7.701075561955177 0.747558799260738 7.736462743421062 0.8110133344696594 -7.642527278143381 6.394943276232301 -7.81830235691293 6.492113066751919 -7.801916090519243 6.571997778155295 -14.90421775913592 2.266675886894497 -14.89598725529453 2.159165115481537 -15.24193995183978 2.266675886894497 7.355734855273431 -4.894160274590968 7.320664240262901 -4.830596263918473 7.507261218016874 -4.765496574388916 -6.338988225187498 -3.044192736994829 -6.526187453215318 -2.980179495076612 -6.327008858612708 -2.970464848302552 -6.478766604773241 -1.044994264491359 -6.677945251180706 -1.054708253937041 -6.490795495926419 -0.9712717169038074 9.610606299620715 4.026767889582137 9.600603974387786 4.095612210845925 9.782930967972504 4.184999620950642 10.84047123466893 3.232022608900226 10.65762112611577 3.184796505463652 10.83485398750863 3.33963684896644 -12.26747683539415 -0.5066035206759694 -12.45047166792699 -0.5068333345684198 -12.45025742428145 -0.3884424522482105 11.96646711559798 -0.2245792295362926 11.96483023268117 -0.1502630192217587 12.14891252852914 -0.1060984740581887 -12.26094568485028 -3.714805528299638 -12.25952937471671 -3.789124952490278 -12.4439405161016 -3.715035972821853 6.603293950145228 -1.054998462077994 6.404110550950738 -1.045284472474634 6.416140047648382 -0.9715619236904124 -9.646317743629719 4.075727575063625 -9.656319410185724 4.006883384766423 -9.828644396363487 4.165114815121433 -10.69924566447718 3.16651825694732 -10.88209648364179 3.21374460925405 -10.8764772486745 3.321359416421312 6.451588298678992 -2.979853689228417 6.264384924186519 -3.043866932336237 6.252404951289926 -2.970139042273824 -12.0013834934214 -0.1574555205813113 -12.00302080340579 -0.2317717869179218 -12.18546658538891 -0.1132909421250119</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1820\" source=\"#ID260\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID256\">\r\n                    <input semantic=\"POSITION\" source=\"#ID254\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID255\"/>\r\n                </vertices>\r\n                <triangles count=\"636\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID256\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID257\"/>\r\n                    <p>0 0 1 1 2 2 6 3 7 4 8 5 12 6 13 7 14 8 18 9 19 10 20 11 24 12 25 13 26 14 7 4 30 15 8 5 32 16 33 17 34 18 20 19 19 20 38 21 40 22 41 23 42 24 46 25 47 26 48 27 52 28 53 29 54 30 54 31 58 32 59 33 62 34 63 35 64 36 30 15 68 37 8 5 70 38 32 16 34 18 38 39 72 40 73 41 48 42 47 43 76 44 19 45 72 46 38 47 78 48 79 49 80 50 84 51 85 52 86 53 79 54 90 55 91 56 94 57 53 58 52 59 52 60 54 61 59 62 59 63 58 64 96 65 98 66 8 5 99 67 102 68 103 69 104 70 68 37 108 71 8 5 110 72 70 38 34 18 73 73 112 74 113 75 116 76 76 77 117 78 72 79 112 80 73 81 116 82 48 83 76 84 94 85 72 86 53 87 78 88 80 89 120 90 79 91 91 92 80 93 34 18 122 94 123 95 126 96 127 97 128 98 90 99 132 100 91 101 134 102 135 103 136 104 140 105 141 106 134 107 144 108 140 109 145 110 58 111 148 112 96 113 104 114 103 115 150 116 99 67 8 5 152 117 108 71 154 118 8 5 156 119 110 72 34 18 113 120 158 121 159 122 162 123 117 124 163 125 113 126 112 127 158 128 162 129 116 130 117 131 72 132 166 133 112 134 116 135 132 136 90 137 94 138 166 139 72 140 168 141 169 142 170 143 174 144 78 145 120 146 169 147 176 148 177 149 34 18 123 95 180 150 182 151 126 152 128 153 176 154 184 155 185 156 135 103 188 157 136 104 141 106 135 158 134 107 141 159 140 109 144 108 144 160 145 161 190 162 96 163 148 164 192 165 104 166 150 167 194 168 194 169 150 170 196 171 152 117 8 5 198 172 154 118 200 173 8 5 202 174 156 119 34 18 159 175 204 176 205 177 208 178 163 179 209 180 159 181 158 182 204 183 208 184 162 185 163 186 112 187 212 188 158 189 214 190 116 191 162 192 166 193 212 194 112 195 214 196 132 197 116 198 94 199 216 200 166 201 168 202 170 203 218 204 169 205 177 206 170 207 174 208 120 209 220 210 177 149 176 148 185 211 34 18 180 150 222 212 182 213 224 214 225 215 182 216 128 217 224 218 185 156 184 155 228 219 230 220 231 221 232 222 236 223 232 224 237 225 240 226 237 227 241 228 244 229 241 230 245 231 190 162 145 161 248 232 148 233 250 234 192 235 194 236 196 237 252 238 252 239 196 240 254 241 8 5 256 242 198 172 8 5 200 173 258 243 260 244 202 174 34 18 205 245 262 246 263 247 266 248 209 249 267 250 205 251 204 252 262 253 266 254 208 255 209 256 158 257 270 258 204 259 272 260 162 261 208 262 158 263 212 264 270 265 272 266 214 267 162 268 166 269 274 270 212 271 276 272 132 273 214 274 166 201 216 200 274 275 278 276 279 277 280 278 284 279 168 202 218 204 286 280 287 281 278 282 290 283 174 284 220 285 292 286 293 287 286 288 296 289 34 18 222 212 298 290 225 291 299 292 225 293 224 294 299 295 292 296 302 297 303 298 306 299 231 300 230 301 230 302 232 303 236 304 236 305 237 306 240 307 244 308 240 309 241 310 308 311 244 312 245 313 190 314 248 315 310 316 192 317 250 318 312 319 250 320 314 321 312 322 252 323 254 324 316 325 316 326 254 327 318 328 8 5 320 329 256 242 8 5 258 243 322 330 324 331 260 244 34 18 263 332 326 333 327 334 330 335 267 336 331 337 263 338 262 339 326 340 330 341 266 342 267 343 204 344 334 345 262 346 336 347 208 348 266 349 204 350 270 351 334 352 272 353 208 354 336 355 212 356 338 357 270 358 340 359 214 360 272 361 212 271 274 270 338 362 340 363 342 272 214 274 274 364 231 365 306 366 279 367 344 368 280 369 287 370 279 371 278 372 284 373 218 374 346 375 286 376 293 377 287 378 290 379 220 380 348 381 292 382 303 383 293 384 350 385 34 18 296 289 352 386 298 387 353 388 298 389 299 390 353 391 356 392 290 393 348 394 302 395 358 396 303 397 360 398 361 399 362 400 366 401 367 402 360 403 370 404 366 405 371 406 371 407 374 408 375 409 378 410 374 411 379 412 308 413 245 414 382 415 310 316 248 315 384 416 314 417 386 418 312 419 314 420 388 421 386 422 316 423 318 424 390 425 390 426 318 427 392 428 8 5 322 330 320 329 324 331 34 18 394 429 327 430 396 431 397 432 331 433 400 434 401 435 326 436 396 437 327 438 401 439 330 440 331 441 262 442 404 443 405 444 408 445 266 446 330 447 262 448 334 449 404 450 336 451 266 452 408 453 270 454 410 455 334 456 412 457 272 458 336 459 270 358 338 357 410 460 412 461 340 462 272 361 274 463 414 464 338 465 302 466 340 467 358 468 414 469 274 470 306 471 416 472 417 473 418 474 280 475 344 476 422 477 417 478 424 479 425 480 428 481 284 482 346 483 424 484 430 485 431 486 430 487 434 488 435 489 394 429 34 18 350 385 352 490 438 491 439 492 352 493 353 494 438 495 442 496 356 497 443 498 443 499 356 500 348 501 434 502 446 503 447 504 361 505 450 506 362 507 367 508 361 509 360 510 367 511 366 512 370 513 370 514 371 515 375 516 375 517 374 518 378 519 378 520 379 521 452 522 454 523 308 524 382 525 310 526 384 527 456 528 456 528 384 529 458 530 388 531 460 532 386 533 388 534 462 535 460 536 390 537 392 538 464 539 464 540 392 541 397 542 400 543 466 544 467 545 396 546 464 547 397 548 401 549 400 550 467 551 405 552 470 553 471 554 474 555 330 556 475 557 404 558 470 559 405 560 408 561 330 562 474 563 334 564 478 565 404 566 480 567 336 568 408 569 334 570 410 571 478 572 480 573 412 457 336 459 338 574 482 575 410 576 484 577 340 578 412 579 338 580 414 581 482 582 340 583 484 584 358 585 362 586 450 587 414 588 416 589 418 590 486 591 417 592 425 593 418 594 344 595 488 596 422 597 424 598 431 599 425 600 428 601 346 602 490 603 430 604 435 605 431 606 434 607 447 608 435 609 466 610 439 611 492 612 439 613 438 614 492 615 494 616 442 617 495 618 495 619 442 620 443 621 498 622 428 601 490 603 446 623 500 624 447 625 361 626 502 627 450 628 367 629 504 630 361 631 370 632 506 633 367 634 508 635 370 636 375 637 510 638 375 639 378 640 512 641 378 642 452 643 452 644 379 645 514 646 516 647 454 648 382 649 456 650 458 651 518 652 518 652 458 653 520 654 462 655 522 656 460 657 462 658 524 659 522 660 467 661 466 662 492 663 471 664 526 665 524 666 528 667 475 668 529 669 471 670 470 671 526 672 528 673 474 674 475 675 404 676 532 677 533 678 536 679 408 680 474 681 404 682 478 683 532 684 536 685 480 567 408 686 410 687 538 688 478 689 540 690 412 691 480 692 482 693 538 694 410 695 484 696 412 697 540 698 414 699 542 700 482 701 500 702 446 703 484 704 414 705 450 706 542 707 486 708 418 709 544 710 546 711 416 712 486 713 418 714 425 715 548 716 488 717 550 718 422 719 425 720 431 721 552 722 431 723 435 724 554 725 435 726 447 727 556 728 558 729 494 730 559 731 559 732 494 733 495 734 562 735 498 736 563 737 498 738 490 739 563 740 447 741 500 742 566 743 502 744 568 745 450 746 504 747 502 748 361 749 506 750 504 751 367 752 506 753 370 754 508 755 508 756 375 757 510 758 510 759 378 760 512 761 512 762 452 763 570 764 452 765 514 766 572 767 574 768 454 769 516 770 576 771 574 772 516 773 518 774 520 775 578 776 578 777 520 778 580 779 524 780 526 781 522 782 582 783 529 784 558 785 528 786 529 787 582 788 584 789 585 790 586 791 590 792 474 793 591 794 533 678 532 677 594 795 590 796 536 797 474 798 478 799 596 800 532 801 598 802 480 803 536 804 538 805 596 806 478 807 598 808 540 809 480 810 482 811 600 812 538 813 602 814 484 815 540 816 482 817 542 818 600 819 500 820 484 821 602 822 450 823 568 824 542 825 486 826 544 827 604 828 418 829 548 830 544 831 546 832 486 833 606 834 425 835 552 836 548 837 488 838 608 839 550 840 431 841 554 842 552 843 435 844 556 845 554 846 447 847 566 848 556 849 582 850 558 851 559 852 610 853 562 854 611 855 562 856 563 857 611 858 608 859 614 860 550 861 500 862 616 863 566 864 502 865 618 866 568 867 504 868 620 869 502 870 506 871 622 872 504 873 624 874 506 875 508 876 626 877 508 878 510 879 512 880 628 881 510 882 570 883 630 884 512 885 570 886 452 887 572 888 514 889 632 890 572 891 634 892 574 893 576 894 636 895 634 896 576 897 638 898 578 899 580 900 640 901 641 902 580 903 644 904 645 905 646 906 585 790 650 907 586 791 652 908 590 909 653 910 656 911 657 912 658 913 662 914 536 915 590 916 656 917 664 918 657 919 662 920 598 921 536 922 538 923 666 924 596 925 668 926 540 927 598 928 538 929 600 930 666 931 602 932 540 933 668 934 542 935 670 936 600 937 500 938 602 939 616 940 568 941 670 942 542 943 672 944 604 945 544 946 606 947 486 948 604 949 674 950 544 951 548 952 676 953 546 954 606 955 552 956 678 957 548 958 554 959 680 960 552 961 554 962 556 963 682 964 556 965 566 966 684 967 686 968 610 969 687 970 690 971 610 972 611 973 692 974 693 975 614 976 608 977 692 978 614 979 566 980 616 981 696 982 618 983 698 984 568 985 620 986 618 987 502 988 622 989 620 990 504 991 624 992 622 993 506 994 626 995 624 996 508 997 628 998 626 999 510 1000 630 1001 628 1002 512 1003 700 1004 630 1005 570 1006 702 1007 570 1008 572 1009 572 1010 632 1011 704 1012 704 1013 632 1014 706 1015 708 1016 634 1017 636 1018 710 1019 708 1020 636 1021 712 1022 713 1023 714 1024 658 1025 718 1026 710 1027 720 1028 721 1029 722 1030 658 1031 657 1032 718 1033 726 1034 721 1035 720 1036 596 1037 728 1038 729 1039 732 1040 598 1041 662 1042 596 1043 666 1044 728 1045 732 1046 668 1047 598 1048 600 1049 734 1050 666 1051 736 1052 602 1053 668 1054 600 1055 670 1056 734 1057 602 1058 736 1059 616 1060 568 1061 698 1062 670 1063 738 1064 604 1065 672 1066 674 1067 672 1068 544 1069 740 1070 606 1071 604 1072 678 1073 674 1074 548 1075 676 1076 606 1077 742 1078 680 1079 678 1080 552 1081 682 1082 680 1083 554 1084 556 1085 684 1086 682 1087 566 1088 696 1089 684 1090 744 1091 745 1092 693 1093 692 1094 744 1095 693 1096 748 1097 676 1098 742 1099 616 1100 750 1101 696 1102 618 1103 752 1104 698 1105 620 1106 754 1107 618 1108 756 1109 620 1110 622 1111 758 1112 622 1113 624 1114 760 1115 624 1116 626 1117 628 1118 762 1119 626 1120 630 1121 764 1122 628 1123 700 1124 766 1125 630 1126 700 1127 570 1128 702 1129 702 1130 572 1131 704 1132 768 1133 704 1134 706 1135 770 1136 768 1137 706 1138 718 1139 708 1140 710 1141 772 1142 722 1143 745 1144 720 1145 722 1146 772 1147 729 1148 774 1149 775 1150 778 1151 662 1152 779 1153 729 1154 728 1155 774 1156 778 1157 732 1158 662 1159 666 1160 782 1161 728 1162 784 1163 668 1164 732 1165 666 1166 734 1167 782 1168 784 1169 736 1170 668 1171 670 1172 786 1173 734 1174 616 1175 736 1176 750 1177 698 1178 786 1179 670 1180 788 1181 738 1182 672 1183 740 1184 604 1185 738 1186 790 1187 672 1188 674 1189 742 1190 606 1191 740 1192 792 1193 674 1194 678 1195 680 1196 794 1197 678 1198 682 1199 796 1200 680 1201 684 1202 798 1203 682 1204 684 1205 696 1206 800 1207 744 1208 772 1209 745 1210 802 1211 748 1212 803 1213 803 1214 748 1215 742 1216 696 1217 750 1218 806 1219 752 1220 808 1221 698 1222 754 1223 752 1224 618 1225 756 1226 754 1227 620 1228 758 1229 756 1230 622 1231 760 1232 758 1233 624 1234 762 1235 760 1236 626 1237 764 1238 762 1239 628 1240 766 1241 764 1242 630 1243 810 1244 766 1245 700 1246 812 1247 700 1248 702 1249 814 1250 702 1251 704 1252 814 1253 704 1254 768 1255 816 1256 768 1257 770 1258 775 1259 816 1260 770 1261 818 1262 779 1263 819 1264 775 1265 774 1266 816 1267 818 1268 778 1269 779 1270 728 1271 822 1272 774 1273 824 1274 732 1275 778 1276 728 1277 782 1278 822 1279 824 1280 784 1281 732 1282 734 1283 826 1284 782 1285 828 1286 736 1287 784 1288 786 1289 826 1290 734 1291 736 1292 828 1293 750 1294 808 1295 786 1296 698 1297 830 1298 738 1299 788 1300 790 1301 788 1302 672 1303 832 1304 740 1305 738 1306 792 1307 790 1308 674 1309 834 1310 742 1311 740 1312 794 1313 792 1314 678 1315 796 1316 794 1317 680 1318 798 1319 796 1320 682 1321 800 1322 798 1323 684 1324 696 1325 806 1326 800 1327 819 1328 802 1329 836 1330 836 1331 802 1332 803 1333 803 1334 742 1335 834 1336 750 1337 838 1338 806 1339 752 1340 840 1341 808 1342 754 1343 842 1344 752 1345 844 1346 754 1347 756 1348 846 1349 756 1350 758 1351 848 1352 758 1353 760 1354 762 1355 850 1356 760 1357 764 1358 852 1359 762 1360 766 1361 854 1362 764 1363 856 1364 766 1365 810 1366 810 1367 700 1368 812 1369 812 1370 702 1371 814 1372 858 1373 814 1374 768 1375 858 1376 768 1377 816 1378 836 1379 818 1380 819 1381 860 1382 816 1383 774 1384 862 1385 778 1386 818 1387 774 1388 822 1389 860 1390 862 1391 824 1392 778 1393 782 1394 864 1395 822 1396 866 1397 784 1398 824 1399 782 1400 826 1401 864 1402 866 1403 828 1404 784 1405 868 1406 826 1407 786 1408 828 1409 838 1410 750 1411 808 1412 868 1413 786 1414 870 1415 830 1416 788 1417 832 1418 738 1419 830 1420 872 1421 788 1422 790 1423 834 1424 740 1425 832 1426 874 1427 790 1428 792 1429 876 1430 792 1431 794 1432 796 1433 878 1434 794 1435 798 1436 880 1437 796 1438 800 1439 882 1440 798 1441 800 1442 806 1443 884 1444 836 1445 803 1446 886 1447 886 1448 803 1449 834 1450 806 1451 838 1452 888 1453 840 1454 890 1455 808 1456 842 1457 840 1458 752 1459 844 1460 842 1461 754 1462 846 1463 844 1464 756 1465 848 1466 846 1467 758 1468 850 1469 848 1470 760 1471 852 1472 850 1473 762 1474 854 1475 852 1476 764 1477 854 1478 766 1479 856 1480 856 1481 810 1482 892 1483 810 1484 812 1485 894 1486 896 1487 812 1488 814 1489 896 1490 814 1491 858 1492 860 1493 858 1494 816 1495 818 1496 836 1497 898 1498 898 1499 862 1500 818 1501 822 1502 900 1503 860 1504 902 1505 824 1506 862 1507 822 1508 864 1509 900 1510 866 1511 824 1512 902 1513 904 1514 864 1515 826 1516 866 1517 906 1518 828 1519 868 1520 904 1521 826 1522 906 1523 838 1524 828 1525 868 1526 808 1527 890 1528 908 1529 830 1530 870 1531 870 1532 788 1533 872 1534 910 1535 832 1536 830 1537 874 1538 872 1539 790 1540 912 1541 834 1542 832 1543 876 1544 874 1545 792 1546 878 1547 876 1548 794 1549 880 1550 878 1551 796 1552 882 1553 880 1554 798 1555 884 1556 882 1557 800 1558 806 1559 888 1560 884 1561 898 1562 836 1563 886 1564 886 1565 834 1566 912 1567 838 1568 914 1569 888 1570 890 1571 840 1572 916 1573 840 1574 842 1575 916 1576 842 1577 844 1578 916 1579 916 1580 844 1581 846 1582 916 1583 846 1584 918 1585 920 1586 916 1587 918 1588 852 1589 916 1590 920 1591 916 1592 852 1593 854 1594 916 1595 854 1596 856 1597 892 1598 916 1599 856 1600 892 1601 810 1602 894 1603 894 1604 812 1605 896 1606 922 1607 896 1608 858 1609 922 1610 858 1611 860 1612 924 1613 862 1614 898 1615 860 1616 900 1617 922 1618 902 1619 862 1620 924 1621 864 1622 926 1623 900 1624 902 1625 928 1626 866 1627 904 1628 926 1629 864 1630 928 1631 906 1632 866 1633 930 1634 904 1635 868 1636 838 1637 906 1638 914 1639 890 1640 930 1641 868 1642 932 1643 908 1644 870 1645 908 1646 910 1647 830 1648 872 1649 932 1650 870 1651 910 1652 912 1653 832 1654 874 1655 932 1656 872 1657 932 1658 874 1659 934 1660 932 1661 934 1662 936 1663 880 1664 932 1665 936 1666 882 1667 932 1668 880 1669 882 1670 884 1671 932 1672 884 1673 888 1674 932 1675 898 1676 886 1677 938 1678 938 1679 886 1680 912 1681 888 1682 914 1683 932 1684 940 1685 890 1686 916 1687 942 1688 916 1689 892 1690 944 1691 892 1692 894 1693 946 1694 894 1695 896 1696 922 1697 946 1698 896 1699 924 1700 898 1701 938 1702 900 1703 948 1704 922 1705 950 1706 902 1707 924 1708 926 1709 948 1710 900 1711 950 1712 928 1713 902 1714 952 1715 926 1716 904 1717 928 1718 954 1719 906 1720 930 1721 952 1722 904 1723 906 1724 954 1725 914 1726 932 1727 956 1728 908 1729 958 1730 910 1731 908 1732 910 1733 960 1734 912 1735 960 1736 938 1737 912 1738 914 1739 962 1740 932 1741 964 1742 940 1743 916 1744 966 1745 916 1746 942 1747 946 1748 944 1749 894 1750 948 1751 946 1752 922 1753 968 1754 924 1755 938 1756 968 1757 950 1758 924 1759 926 1760 970 1761 948 1762 950 1763 972 1764 928 1765 952 1766 970 1767 926 1768 972 1769 954 1770 928 1771 932 1772 974 1773 956 1774 958 1775 960 1776 910 1777 960 1778 968 1779 938 1780 962 1781 976 1782 932 1783 964 1784 916 1785 978 1786 978 1787 916 1788 966 1789 980 1790 944 1791 946 1792 948 1793 980 1794 946 1795 982 1796 950 1797 968 1798 970 1799 980 1800 948 1801 982 1802 972 1803 950 1804 932 1805 984 1806 974 1807 958 1808 986 1809 960 1810 986 1811 968 1812 960 1813 932 1814 976 1815 984 1816 986 1817 982 1818 968 1819</p>\r\n                </triangles>\r\n                <triangles count=\"636\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID256\"/>\r\n                    <p>3 4 5 9 10 11 15 16 17 21 22 23 27 28 29 9 31 10 35 36 37 39 22 21 43 44 45 49 50 51 55 56 57 60 61 55 65 66 67 9 69 31 35 37 71 74 75 39 77 50 49 39 75 22 81 82 83 87 88 89 92 93 82 57 56 95 60 55 57 97 61 60 100 9 101 105 106 107 9 109 69 35 71 111 114 115 74 118 77 119 74 115 75 77 49 119 56 75 95 121 81 83 81 92 82 124 125 35 129 130 131 92 133 93 137 138 139 139 142 143 146 143 147 97 149 61 151 106 105 153 9 100 9 155 109 35 111 157 160 161 114 164 118 165 161 115 114 118 119 165 115 167 75 93 133 119 75 167 95 171 172 173 121 83 175 178 179 172 181 124 35 129 131 183 186 187 179 137 189 138 139 138 142 147 143 142 191 146 147 193 149 97 195 151 105 197 151 195 199 9 153 9 201 155 35 157 203 206 207 160 210 164 211 207 161 160 164 165 211 161 213 115 165 119 215 115 213 167 119 133 215 167 217 95 219 171 173 171 178 172 221 121 175 186 179 178 223 181 35 226 227 183 227 129 183 229 187 186 233 234 235 238 233 239 242 238 243 246 242 247 249 146 191 193 251 149 253 197 195 255 197 253 199 257 9 259 201 9 35 203 261 264 265 206 268 210 269 265 207 206 210 211 269 207 271 161 211 165 273 271 213 161 165 215 273 213 275 167 215 133 277 275 217 167 281 282 283 219 173 285 283 288 289 221 175 291 289 294 295 223 35 297 300 226 301 300 227 226 304 305 295 235 234 307 239 233 235 243 238 239 242 243 247 246 247 309 311 249 191 313 251 193 313 315 251 317 255 253 319 255 317 257 321 9 323 259 9 35 261 325 328 329 264 332 268 333 329 265 264 268 269 333 265 335 207 269 211 337 335 271 207 337 211 273 271 339 213 273 215 341 339 275 213 215 343 341 307 234 275 281 345 282 283 282 288 347 219 285 288 294 289 349 221 291 294 304 295 297 35 351 354 301 355 354 300 301 349 291 357 304 359 305 363 364 365 365 368 369 372 369 373 376 377 372 380 377 381 383 246 309 385 249 311 313 387 315 387 389 315 391 319 317 393 319 391 321 323 9 395 35 325 398 399 328 402 403 332 328 399 329 332 333 402 406 407 265 333 269 409 407 335 265 409 269 337 335 411 271 337 273 413 411 339 271 273 341 413 339 415 275 359 341 305 307 275 415 419 420 421 423 345 281 426 427 420 347 285 429 432 433 427 436 437 433 351 35 395 440 441 355 441 354 355 444 357 445 349 357 444 448 449 437 363 451 364 365 364 368 373 369 368 376 372 373 381 377 376 453 380 381 383 309 455 457 385 311 459 385 457 387 461 389 461 463 389 465 393 391 398 393 465 468 469 403 398 465 399 468 403 402 472 473 406 476 333 477 406 473 407 477 333 409 407 479 335 409 337 481 479 411 335 337 413 481 411 483 339 413 341 485 483 415 339 359 485 341 415 451 363 487 419 421 419 426 420 423 489 345 426 432 427 491 347 429 432 436 433 436 448 437 493 440 469 493 441 440 496 445 497 444 445 496 491 429 499 448 501 449 451 503 364 364 505 368 368 507 373 376 373 509 381 376 511 453 381 513 515 380 453 383 455 517 519 459 457 521 459 519 461 523 463 523 525 463 493 469 468 525 527 472 530 476 531 527 473 472 476 477 531 534 535 407 477 409 537 535 479 407 409 481 537 479 539 411 481 413 541 411 539 483 541 413 485 483 543 415 485 449 501 543 451 415 545 419 487 487 421 547 549 426 419 423 551 489 553 432 426 555 436 432 557 448 436 560 497 561 496 497 560 564 499 565 564 491 499 567 501 448 451 569 503 364 503 505 368 505 507 509 373 507 511 376 509 513 381 511 571 453 513 573 515 453 517 455 575 517 575 577 579 521 519 581 521 579 523 527 525 561 530 583 583 530 531 587 588 589 592 477 593 595 535 534 477 537 593 535 597 479 537 481 599 479 597 539 481 541 599 539 601 483 541 485 603 601 543 483 603 485 501 543 569 451 605 545 487 545 549 419 607 487 547 549 553 426 551 609 489 553 555 432 555 557 436 557 567 448 560 561 583 612 565 613 612 564 565 551 615 609 567 617 501 569 619 503 503 621 505 505 623 507 509 507 625 511 509 627 511 629 513 513 631 571 573 453 571 573 633 515 577 575 635 577 635 637 581 579 639 581 642 643 647 648 649 587 651 588 654 593 655 659 660 661 593 537 663 660 665 661 537 599 663 597 667 539 599 541 669 667 601 539 669 541 603 601 671 543 617 603 501 543 671 569 545 605 673 605 487 607 549 545 675 607 547 677 549 679 553 553 681 555 683 557 555 685 567 557 688 613 689 612 613 691 615 694 695 615 695 609 697 617 567 569 699 619 503 619 621 505 621 623 507 623 625 509 625 627 511 627 629 513 629 631 571 631 701 573 571 703 705 633 573 707 633 705 637 635 709 637 709 711 715 716 717 711 719 659 723 724 725 719 660 659 725 724 727 730 731 597 663 599 733 731 667 597 599 669 733 667 735 601 669 603 737 735 671 601 617 737 603 671 699 569 673 605 739 545 673 675 605 607 741 549 675 679 743 607 677 553 679 681 555 681 683 683 685 557 685 697 567 694 746 747 694 747 695 743 677 749 697 751 617 699 753 619 619 755 621 623 621 757 625 623 759 627 625 761 627 763 629 629 765 631 631 767 701 703 571 701 705 573 703 707 705 769 707 769 771 711 709 719 746 723 773 773 723 725 776 777 730 780 663 781 777 731 730 663 733 781 731 783 667 733 669 785 783 735 667 669 737 785 735 787 671 751 737 617 671 787 699 673 739 789 739 605 741 675 673 791 741 607 743 679 675 793 679 795 681 681 797 683 683 799 685 801 697 685 746 773 747 804 749 805 743 749 804 807 751 697 699 809 753 619 753 755 621 755 757 623 757 759 625 759 761 627 761 763 629 763 765 631 765 767 701 767 811 703 701 813 705 703 815 769 705 815 771 769 817 771 817 776 820 780 821 817 777 776 780 781 821 777 823 731 781 733 825 823 783 731 733 785 825 783 827 735 785 737 829 735 827 787 751 829 737 699 787 809 789 739 831 673 789 791 739 741 833 675 791 793 741 743 835 679 793 795 681 795 797 683 797 799 685 799 801 801 807 697 837 805 820 804 805 837 835 743 804 807 839 751 809 841 753 753 843 755 757 755 845 759 757 847 761 759 849 761 851 763 763 853 765 765 855 767 811 767 857 813 701 811 815 703 813 769 815 859 817 769 859 820 821 837 777 817 861 821 781 863 861 823 777 781 825 863 823 865 783 825 785 867 865 827 783 785 829 867 787 827 869 751 839 829 787 869 809 789 831 871 831 739 833 791 789 873 833 741 835 793 791 875 795 793 877 795 879 797 797 881 799 799 883 801 885 807 801 887 804 837 835 804 887 889 839 807 809 891 841 753 841 843 755 843 845 757 845 847 759 847 849 761 849 851 763 851 853 765 853 855 857 767 855 893 811 857 895 813 811 815 813 897 859 815 897 817 859 861 899 837 821 821 863 899 861 901 823 863 825 903 901 865 823 903 825 867 827 865 905 829 907 867 827 905 869 829 839 907 891 809 869 871 831 909 873 789 871 831 833 911 791 873 875 833 835 913 793 875 877 795 877 879 797 879 881 799 881 883 801 883 885 885 889 807 887 837 899 913 835 887 889 915 839 917 841 891 917 843 841 917 845 843 847 845 917 919 847 917 919 917 921 921 917 853 855 853 917 857 855 917 857 917 893 895 811 893 897 813 895 859 897 923 861 859 923 899 863 925 923 901 861 925 863 903 901 927 865 867 929 903 865 927 905 867 907 929 869 905 931 915 907 839 869 931 891 871 909 933 831 911 909 871 933 873 833 913 911 873 933 875 935 875 933 937 935 933 937 933 881 881 933 883 933 885 883 933 889 885 939 887 899 913 887 939 933 915 889 917 891 941 893 917 943 895 893 945 897 895 947 897 947 923 939 899 925 923 949 901 925 903 951 901 949 927 903 929 951 905 927 953 907 955 929 905 953 931 915 955 907 909 957 933 909 911 959 913 961 911 913 939 961 933 963 915 917 941 965 943 917 967 895 945 947 923 947 949 939 925 969 925 951 969 949 971 927 929 973 951 927 971 953 929 955 973 957 975 933 911 961 959 939 969 961 933 977 963 979 917 965 967 917 979 947 945 981 947 981 949 969 951 983 949 981 971 951 973 983 975 985 933 961 987 959 961 969 987 985 977 933 969 983 987</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID261\">\r\n            <mesh>\r\n                <source id=\"ID262\">\r\n                    <float_array count=\"96\" id=\"ID265\">0.09004729241132736 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.2292656004428864 0.09004729241132736 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.2292656004428864 0.09004729241132736 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.2658107578754425 0.2706232964992523 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.1927204430103302 -0.09052873402833939 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.2658107578754425 0.09004729241132736 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.2292656004428864 -0.09052873402833939 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.3023560345172882 0.2706232964992523 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.1927204430103302 -0.2711048126220703 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.3023560345172882 0.09004729241132736 1.979883551597595 -0.3023560345172882 -0.09052873402833939 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.2292656004428864 -0.2711048126220703 1.979883551597595 -0.2292656004428864 -0.09052873402833939 1.979883551597595 -0.3023560345172882 -0.09052873402833939 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.3023560345172882</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID265\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID263\">\r\n                    <float_array count=\"96\" id=\"ID266\">0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID266\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID264\">\r\n                    <input semantic=\"POSITION\" source=\"#ID262\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID263\"/>\r\n                </vertices>\r\n                <triangles count=\"36\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID264\"/>\r\n                    <p>0 1 2 3 4 5 6 1 0 5 4 7 6 8 1 4 9 7 10 6 0 5 7 11 12 8 6 7 9 13 14 6 10 11 7 15 12 16 8 9 17 13 14 12 6 7 13 15 18 14 10 11 15 19 20 16 12 13 17 21 22 12 14 15 13 23 24 14 18 19 15 25 22 20 12 13 21 23 24 22 14 15 23 25 26 20 22 23 21 27 28 22 24 25 23 29 28 26 22 23 27 29 30 26 28 29 27 31</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID269\">\r\n            <mesh>\r\n                <source id=\"ID270\">\r\n                    <float_array count=\"1134\" id=\"ID273\">-0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.8002784848213196 0.6196871995925903 -0.1194272115826607 -0.8002784848213196 0.6196871995925903 -0.1194272115826607 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.8002784848213196 0.6200764179229736 0.01818196848034859 -0.8002784848213196 0.6200764179229736 0.01818196848034859 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8002784848213196 0.7639247179031372 0.02084463648498058 -0.8002784848213196 0.7639247179031372 0.02084463648498058 -0.8002784848213196 0.7611286044120789 -0.118915356695652 -0.8002784848213196 0.7611286044120789 -0.118915356695652 -0.8002784848213196 0.6231358647346497 0.1513165235519409 -0.8002784848213196 0.6231358647346497 0.1513165235519409 -0.8002784848213196 0.7669853568077087 0.1513165235519409 -0.8002784848213196 0.7669853568077087 0.1513165235519409 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.8002784848213196 0.8771676421165466 0.02084463648498058 -0.8002784848213196 0.8771676421165466 0.02084463648498058 -0.8002784848213196 0.8771676421165466 0.1513165235519409 -0.8002784848213196 0.8771676421165466 0.1513165235519409 -0.8002784848213196 0.872636616230011 -0.118915356695652 -0.8002784848213196 0.872636616230011 -0.118915356695652 -0.7714517116546631 0.7642374038696289 0.234848827123642 -0.7714517116546631 0.7642374038696289 0.234848827123642 -0.7724733352661133 0.6222134828567505 0.2340750992298126 -0.7724733352661133 0.6222134828567505 0.2340750992298126 -0.7714517116546631 0.8763352632522583 0.234848827123642 -0.7714517116546631 0.8763352632522583 0.234848827123642 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.7714517116546631 1.068503022193909 0.234848827123642 -0.7714517116546631 1.068503022193909 0.234848827123642 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.748810887336731 0.7716558575630188 0.29511559009552 -0.748810887336731 0.7716558575630188 0.29511559009552 -0.7487359046936035 0.8783665895462036 0.29511559009552 -0.7487359046936035 0.8783665895462036 0.29511559009552 -0.7497841715812683 0.6197603940963745 0.2984656691551209 -0.7497841715812683 0.6197603940963745 0.2984656691551209 -0.8002784848213196 1.067611813545227 0.1501588523387909 -0.8002784848213196 1.067611813545227 0.1501588523387909 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.7471549510955811 1.070043087005615 0.292364776134491 -0.7471549510955811 1.070043087005615 0.292364776134491 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.7451425790786743 1.229051828384399 0.2896876931190491 -0.7451425790786743 1.229051828384399 0.2896876931190491 -0.7714517116546631 1.22945249080658 0.2351814955472946 -0.7714517116546631 1.22945249080658 0.2351814955472946 -0.6762760281562805 0.8758261203765869 0.358364999294281 -0.6762760281562805 0.8758261203765869 0.358364999294281 -0.6766242980957031 0.7716558575630188 0.3602698147296906 -0.6766242980957031 0.7716558575630188 0.3602698147296906 -0.6753841638565064 1.070043087005615 0.342584639787674 -0.6753841638565064 1.070043087005615 0.342584639787674 -0.6771467328071594 0.6242926120758057 0.356035441160202 -0.6771467328071594 0.6242926120758057 0.356035441160202 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.6740805506706238 1.229051828384399 0.3374882340431213 -0.6740805506706238 1.229051828384399 0.3374882340431213 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6728717684745789 1.338770151138306 0.3299798667430878 -0.6728717684745789 1.338770151138306 0.3299798667430878 -0.7432098388671875 1.33383572101593 0.2877088189125061 -0.7432098388671875 1.33383572101593 0.2877088189125061 -0.7714517116546631 1.336279630661011 0.2374546378850937 -0.7714517116546631 1.336279630661011 0.2374546378850937 -0.6551044583320618 0.770412027835846 0.3768142461776733 -0.6551044583320618 0.770412027835846 0.3768142461776733 -0.6547621488571167 0.8788958787918091 0.36956787109375 -0.6547621488571167 0.8788958787918091 0.36956787109375 -0.6538115739822388 0.6258586049079895 0.3818635642528534 -0.6538115739822388 0.6258586049079895 0.3818635642528534 -0.652993381023407 1.071277260780335 0.3560464382171631 -0.652993381023407 1.071277260780335 0.3560464382171631 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6503435969352722 1.231573462486267 0.3451077938079834 -0.6503435969352722 1.231573462486267 0.3451077938079834 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.6467726230621338 1.337924003601074 0.3337158262729645 -0.6467726230621338 1.337924003601074 0.3337158262729645 -0.6713939309120178 1.432783603668213 0.3242798447608948 -0.6713939309120178 1.432783603668213 0.3242798447608948 -0.7414166927337647 1.431114196777344 0.2848821878433228 -0.7414166927337647 1.431114196777344 0.2848821878433228 -0.7714517116546631 1.430078029632568 0.2376271635293961 -0.7714517116546631 1.430078029632568 0.2376271635293961 -0.6349050998687744 0.7708060741424561 0.3701403439044952 -0.6349050998687744 0.7708060741424561 0.3701403439044952 -0.6256678700447083 0.8783389925956726 0.3555973768234253 -0.6256678700447083 0.8783389925956726 0.3555973768234253 -0.6176331639289856 1.073966383934021 0.34251469373703 -0.6176331639289856 1.073966383934021 0.34251469373703 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6103045344352722 1.231997966766357 0.325863778591156 -0.6103045344352722 1.231997966766357 0.325863778591156 -0.6049067378044128 1.338981509208679 0.3172231614589691 -0.6049067378044128 1.338981509208679 0.3172231614589691 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.5988566875457764 1.422707080841065 0.303942084312439 -0.5988566875457764 1.422707080841065 0.303942084312439 -0.6432016491889954 1.43192446231842 0.3254314661026001 -0.6432016491889954 1.43192446231842 0.3254314661026001 -0.6704087257385254 1.524521231651306 0.3170008361339569 -0.6704087257385254 1.524521231651306 0.3170008361339569 -0.7381420135498047 1.524521231651306 0.2817167937755585 -0.7381420135498047 1.524521231651306 0.2817167937755585 -0.7714517116546631 1.527541875839233 0.2388848811388016 -0.7714517116546631 1.527541875839233 0.2388848811388016 -0.6096035838127136 0.8772760033607483 0.3508152365684509 -0.6096035838127136 0.8772760033607483 0.3508152365684509 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.5969606637954712 1.076266169548035 0.3287610411643982 -0.5969606637954712 1.076266169548035 0.3287610411643982 -0.5887119770050049 1.234852313995361 0.3147788345813751 -0.5887119770050049 1.234852313995361 0.3147788345813751 -0.581000566482544 1.340795755386353 0.2962920665740967 -0.581000566482544 1.340795755386353 0.2962920665740967 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.5952385663986206 1.534539937973023 0.2910608053207398 -0.5952385663986206 1.534539937973023 0.2910608053207398 -0.5756016969680786 1.432812809944153 0.2799475789070129 -0.5756016969680786 1.432812809944153 0.2799475789070129 -0.6396305561065674 1.523992538452148 0.3161111772060394 -0.6396305561065674 1.523992538452148 0.3161111772060394 -0.6688806414604187 1.630582451820374 0.3066250681877136 -0.6688806414604187 1.630582451820374 0.3066250681877136 -0.7326781153678894 1.627527952194214 0.2751796841621399 -0.7326781153678894 1.627527952194214 0.2751796841621399 -0.7656499743461609 1.629548072814941 0.2351733148097992 -0.7656499743461609 1.629548072814941 0.2351733148097992 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.8002784848213196 1.629548072814941 0.1532912850379944 -0.8002784848213196 1.629548072814941 0.1532912850379944 -0.5857915282249451 1.635170221328735 0.2697256505489349 -0.5857915282249451 1.635170221328735 0.2697256505489349 -0.5694620013237 1.539629101753235 0.2627097368240356 -0.5694620013237 1.539629101753235 0.2627097368240356 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.635464072227478 1.630808830261231 0.3067907989025116 -0.635464072227478 1.630808830261231 0.3067907989025116 -0.6664205193519592 1.735270857810974 0.2955930531024933 -0.6664205193519592 1.735270857810974 0.2955930531024933 -0.725673258304596 1.735270857810974 0.2675617933273315 -0.725673258304596 1.735270857810974 0.2675617933273315 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7607758045196533 1.731385946273804 0.2290779650211334 -0.7607758045196533 1.731385946273804 0.2290779650211334 -0.8002784848213196 1.731245756149292 0.1508422940969467 -0.8002784848213196 1.731245756149292 0.1508422940969467 -0.5798652172088623 1.733703374862671 0.2523872554302216 -0.5798652172088623 1.733703374862671 0.2523872554302216 -0.5607426762580872 1.635875701904297 0.243652269244194 -0.5607426762580872 1.635875701904297 0.243652269244194 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.6283220648765564 1.734643340110779 0.2933281362056732 -0.6283220648765564 1.734643340110779 0.2933281362056732 -0.6636370420455933 1.828536510467529 0.2839697897434235 -0.6636370420455933 1.828536510467529 0.2839697897434235 -0.7195442318916321 1.830480456352234 0.2584208846092224 -0.7195442318916321 1.830480456352234 0.2584208846092224 -0.780127227306366 1.770382642745972 0.08878238499164581 -0.780127227306366 1.770382642745972 0.08878238499164581 -0.7555970549583435 1.832421541213989 0.2219224870204926 -0.7555970549583435 1.832421541213989 0.2219224870204926 -0.789497435092926 1.832582235336304 0.1508422940969467 -0.789497435092926 1.832582235336304 0.1508422940969467 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.5481609702110291 1.737459182739258 0.2144985496997833 -0.5481609702110291 1.737459182739258 0.2144985496997833 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.6187847852706909 1.828536510467529 0.2750792801380158 -0.6187847852706909 1.828536510467529 0.2750792801380158 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.780127227306366 1.831223368644714 0.08806630969047546 -0.780127227306366 1.831223368644714 0.08806630969047546 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7611757516860962 1.848836660385132 0.05843546241521835 -0.7611757516860962 1.848836660385132 0.05843546241521835 -0.7789089679718018 1.794281721115112 0.06106704473495483 -0.7789089679718018 1.794281721115112 0.06106704473495483 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5419393181800842 1.786986827850342 0.1989490985870361 -0.5419393181800842 1.786986827850342 0.1989490985870361 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.5395102500915527 1.831621766090393 0.1790818572044373 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5395102500915527 1.831621766090393 0.1790818572044373 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7694121599197388 1.816561579704285 0.03192228823900223 -0.7694121599197388 1.816561579704285 0.03192228823900223 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.7185090184211731 1.866551876068115 0.03108330257236958 -0.7185090184211731 1.866551876068115 0.03108330257236958 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.7789088487625122 1.840326070785523 -0.01964796893298626 -0.7789088487625122 1.840326070785523 -0.01964796893298626 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.721648633480072 1.884884715080261 -0.0176821406930685 -0.721648633480072 1.884884715080261 -0.0176821406930685 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.6637756824493408 1.907618165016174 -0.01770789735019207 -0.6637756824493408 1.907618165016174 -0.01770789735019207 -0.7765349745750427 1.862605094909668 -0.08081070333719254 -0.7765349745750427 1.862605094909668 -0.08081070333719254 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.6023380160331726 1.907618165016174 0.02810462191700935 -0.6023380160331726 1.907618165016174 0.02810462191700935 -0.7276830077171326 1.896474838256836 -0.07735307514667511 -0.7276830077171326 1.896474838256836 -0.07735307514667511 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6013118028640747 1.918723344802856 -0.0167639497667551 -0.6013118028640747 1.918723344802856 -0.0167639497667551 -0.6637756824493408 1.918723344802856 -0.0708390548825264 -0.6637756824493408 1.918723344802856 -0.0708390548825264 -0.7765349745750427 1.868109583854675 -0.1344994306564331 -0.7765349745750427 1.868109583854675 -0.1344994306564331 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.7254838347434998 1.896474838256836 -0.1368977874517441 -0.7254838347434998 1.896474838256836 -0.1368977874517441 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.6013118028640747 1.918723344802856 -0.06880220025777817 -0.6013118028640747 1.918723344802856 -0.06880220025777817 -0.6637756824493408 1.923628926277161 -0.1305911093950272 -0.6637756824493408 1.923628926277161 -0.1305911093950272 -0.7681390643119812 1.864772439002991 -0.1993826925754547 -0.7681390643119812 1.864772439002991 -0.1993826925754547 -0.7100864052772522 1.889798879623413 -0.1963487863540649 -0.7100864052772522 1.889798879623413 -0.1963487863540649 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5993821024894714 1.918723344802856 -0.1292334944009781 -0.5993821024894714 1.918723344802856 -0.1292334944009781 -0.6636860370635986 1.908910393714905 -0.1960339397192001 -0.6636860370635986 1.908910393714905 -0.1960339397192001 -0.7571017146110535 1.854760766029358 -0.2666657269001007 -0.7571017146110535 1.854760766029358 -0.2666657269001007 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.6893312931060791 1.878122568130493 -0.2706334590911865 -0.6893312931060791 1.878122568130493 -0.2706334590911865 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.6013118028640747 1.913129925727844 -0.1947008073329926 -0.6013118028640747 1.913129925727844 -0.1947008073329926 -0.6547057628631592 1.899369478225708 -0.2707102298736572 -0.6547057628631592 1.899369478225708 -0.2707102298736572 -0.742384135723114 1.849756956100464 -0.2961414754390717 -0.742384135723114 1.849756956100464 -0.2961414754390717 -0.6774798035621643 1.873115420341492 -0.2989807724952698 -0.6774798035621643 1.873115420341492 -0.2989807724952698 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.5953081846237183 1.902366518974304 -0.2694905698299408 -0.5953081846237183 1.902366518974304 -0.2694905698299408 -0.6453258395195007 1.887944936752319 -0.2983261346817017 -0.6453258395195007 1.887944936752319 -0.2983261346817017 -0.7028328776359558 1.811398148536682 -0.3453316688537598 -0.7028328776359558 1.811398148536682 -0.3453316688537598 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.5963053107261658 1.890616059303284 -0.2966291010379791 -0.5963053107261658 1.890616059303284 -0.2966291010379791 -0.6595970392227173 1.831865787506104 -0.3451592326164246 -0.6595970392227173 1.831865787506104 -0.3451592326164246 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.6302624344825745 1.831865787506104 -0.3451592326164246 -0.6302624344825745 1.831865787506104 -0.3451592326164246 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.5841007232666016 1.831865787506104 -0.3430174887180328 -0.5841007232666016 1.831865787506104 -0.3430174887180328 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"378\" source=\"#ID273\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID271\">\r\n                    <float_array count=\"1134\" id=\"ID274\">-0.9971698257805797 0.0005629392510087631 -0.07517992851904062 -0.9900549072726571 -0.002353833251243577 -0.1406617931577565 -0.9976197890163987 -0.001197338959292204 -0.06894434670292125 0.9976197890163987 0.001197338959292204 0.06894434670292125 0.9900549072726571 0.002353833251243577 0.1406617931577565 0.9971698257805797 -0.0005629392510087631 0.07517992851904062 -0.999998772192228 0.001297841649654843 -0.000878191943182305 0.999998772192228 -0.001297841649654843 0.000878191943182305 -0.9907504747950866 -0.003274201081718127 -0.1356568328562443 0.9907504747950866 0.003274201081718127 0.1356568328562443 -0.9996866423995363 -0.01288064492216578 0.02146406285703578 0.9996866423995363 0.01288064492216578 -0.02146406285703578 -1 0 0 1 -0 -0 -0.9977881690244589 -0.0004287993236961485 -0.06647244456131977 0.9977881690244589 0.0004287993236961485 0.06647244456131977 -0.9855234423644645 -0.01500868463078184 0.1688735738229934 0.9855234423644645 0.01500868463078184 -0.1688735738229934 -0.9862287710324551 -8.267499692004867e-018 0.1653868531286971 0.9862287710324551 8.267499692004867e-018 -0.1653868531286971 -0.9916285418780479 -0.004290259579512917 -0.1290520383626579 0.9916285418780479 0.004290259579512917 0.1290520383626579 -0.985749350796998 -0.03215857008479352 0.1651182720761036 0.985749350796998 0.03215857008479352 -0.1651182720761036 -1 0 0 1 -0 -0 -0.9862255066865959 0.0001385711715906435 0.1654062597328094 0.9862255066865959 -0.0001385711715906435 -0.1654062597328094 -0.9984170026492772 -0.005688992607919956 -0.05595644899330283 0.9984170026492772 0.005688992607919956 0.05595644899330283 -0.9410469154779283 0.001844830909214399 0.3382710443836322 0.9410469154779283 -0.001844830909214399 -0.3382710443836322 -0.9472759744194746 -0.005534136034595238 0.3203710374331382 0.9472759744194746 0.005534136034595238 -0.3203710374331382 -0.9399700399246553 0.002496395944578447 0.3412478454896523 0.9399700399246553 -0.002496395944578447 -0.3412478454896523 -0.9935588885764284 -0.01612484945244063 -0.1121638273281921 0.9935588885764284 0.01612484945244063 0.1121638273281921 -0.9613973563932222 -0.002189225636765583 0.2751551024626563 0.9613973563932222 0.002189225636765583 -0.2751551024626563 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 -0.9334254836337974 0.003566250945204206 0.3587536039640679 0.9334254836337974 -0.003566250945204206 -0.3587536039640679 -0.9986374256045345 -0.003641894733685418 -0.05205793680791224 0.9986374256045345 0.003641894733685418 0.05205793680791224 -0.8268226581498774 0.009422437119762919 0.5623837743469269 0.8268226581498774 -0.009422437119762919 -0.5623837743469269 -0.8168016371698678 0.01709359352879232 0.5766653228493074 0.8168016371698678 -0.01709359352879232 -0.5766653228493074 -0.8163226983969137 -8.631410377862732e-005 0.5775960912539633 0.8163226983969137 8.631410377862732e-005 -0.5775960912539633 -0.9866427530423128 0.0003843367440036173 0.1628985271706077 0.9866427530423128 -0.0003843367440036173 -0.1628985271706077 -0.9999089323302191 2.494934331033375e-019 -0.01349544538876384 0.9999089323302191 -2.494934331033375e-019 0.01349544538876384 -0.7779781572466521 0.0170058673868699 0.6280611334269329 0.7779781572466521 -0.0170058673868699 -0.6280611334269329 -0.8419596631426931 0.02106523826798618 0.5391290952799299 0.8419596631426931 -0.02106523826798618 -0.5391290952799299 -1 0 0 1 -0 -0 -0.7541959415760483 0.0251328646306682 0.6561682869704039 0.7541959415760483 -0.0251328646306682 -0.6561682869704039 -0.9237461769474246 0.001311369236523803 0.3830029776460528 0.9237461769474246 -0.001311369236523803 -0.3830029776460528 -0.5722869724216011 0.04950486075750642 0.8185578110053667 0.5722869724216011 -0.04950486075750642 -0.8185578110053667 -0.6404317868099004 0.01381361012202974 0.7678908194651599 0.6404317868099004 -0.01381361012202974 -0.7678908194651599 -0.5511097648203741 0.03972113168969944 0.8334868078241682 0.5511097648203741 -0.03972113168969944 -0.8334868078241682 -0.6923513999901381 0.01264498783236419 0.7214496816926425 0.6923513999901381 -0.01264498783236419 -0.7214496816926425 -0.9579561741255267 -0.01503452474447218 0.2865203858724391 0.9579561741255267 0.01503452474447218 -0.2865203858724391 -0.4447687272850421 0.0557822628515867 0.8939066608882611 0.4447687272850421 -0.0557822628515867 -0.8939066608882611 -0.7536840750669706 0.06163170476199874 0.6543407735718255 0.7536840750669706 -0.06163170476199874 -0.6543407735718255 -0.3458396898734605 0.06829452254788901 0.9358048766159453 0.3458396898734605 -0.06829452254788901 -0.9358048766159453 -0.718680268982603 0.02684640343212302 0.6948222374088595 0.718680268982603 -0.02684640343212302 -0.6948222374088595 -0.8902152677398911 -0.01369281234898472 0.455334255215627 0.8902152677398911 0.01369281234898472 -0.455334255215627 -0.1570689378202707 0.04904402033157927 0.9863691159204689 0.1570689378202707 -0.04904402033157927 -0.9863691159204689 -0.02443527989440703 0.06659550801904349 0.9974808045311787 0.02443527989440703 -0.06659550801904349 -0.9974808045311787 -0.2630385832787527 0.04030153307416526 0.9639431986059028 0.2630385832787527 -0.04030153307416526 -0.9639431986059028 -0.08336213897397456 0.06610197637446741 0.9943245358056257 0.08336213897397456 -0.06610197637446741 -0.9943245358056257 -0.7783090938606397 0.06431607241494514 0.6245785757156144 0.7783090938606397 -0.06431607241494514 -0.6245785757156144 0.06493009687762971 0.06947966491896254 0.9954680601014834 -0.06493009687762971 -0.06947966491896254 -0.9954680601014834 -0.8957292464329562 -0.06402755354882821 0.4399654412237403 0.8957292464329562 0.06402755354882821 -0.4399654412237403 0.1276482232535163 0.09421563455280727 0.9873344647615783 -0.1276482232535163 -0.09421563455280727 -0.9873344647615783 -0.2787761319735821 0.07301649224843831 0.9575763468787132 0.2787761319735821 -0.07301649224843831 -0.9575763468787132 -0.6891604595520967 0.03963249604408594 0.72352410205 0.6891604595520967 -0.03963249604408594 -0.72352410205 -0.8617532152450977 0.001114275120065018 0.507326477138433 0.8617532152450977 -0.001114275120065018 -0.507326477138433 0.2920834002159803 0.07212648049786291 0.953669260346197 -0.2920834002159803 -0.07212648049786291 -0.953669260346197 0.3571216532956693 0.06599922729284308 0.9317232565220831 -0.3571216532956693 -0.06599922729284308 -0.9317232565220831 0.4506015337891731 0.06628168920434097 0.8902611950562956 -0.4506015337891731 -0.06628168920434097 -0.8902611950562956 0.2693223248807161 0.03468885815107804 0.9624251495264555 0.2698092361900396 0.03894437952874851 0.9621259332175119 -0.2698092361900396 -0.03894437952874851 -0.9621259332175119 -0.2693223248807161 -0.03468885815107804 -0.9624251495264555 0.4411122495725708 0.0537295665045241 0.8958421272524874 -0.4411122495725708 -0.0537295665045241 -0.8958421272524874 0.5089459389656588 0.08994830854849475 0.8560860546695225 -0.5089459389656588 -0.08994830854849475 -0.8560860546695225 -0.893140624757341 -0.001746560783355491 0.4497741365769009 0.893140624757341 0.001746560783355491 -0.4497741365769009 0.5746451336020118 0.0794064839342916 0.8145413315091624 -0.5746451336020118 -0.0794064839342916 -0.8145413315091624 0.2166944550745142 0.08239317814647433 0.9727563298868236 -0.2166944550745142 -0.08239317814647433 -0.9727563298868236 -0.2291519337417415 0.08885238018855346 0.9693269034733584 0.2291519337417415 -0.08885238018855346 -0.9693269034733584 -0.6433487104130216 0.05695835373892637 0.7634514933833408 0.6433487104130216 -0.05695835373892637 -0.7634514933833408 -0.8603321617051047 0.04400776713950057 0.5078305701385226 0.8603321617051047 -0.04400776713950057 -0.5078305701385226 0.2550527083687899 0.09062810501618281 0.962670588797082 -0.2550527083687899 -0.09062810501618281 -0.962670588797082 0.2682109604760207 0.08039226475316619 0.9599999814835348 -0.2682109604760207 -0.08039226475316619 -0.9599999814835348 0.5040590655039837 0.06903469085750864 0.8609057265121769 -0.5040590655039837 -0.06903469085750864 -0.8609057265121769 0.5691070498781491 0.06388243088221356 0.8197781412086864 -0.5691070498781491 -0.06388243088221356 -0.8197781412086864 0.6651248264792729 0.08194838488496878 0.7422219529329904 -0.6651248264792729 -0.08194838488496878 -0.7422219529329904 -0.941859161629607 0.05197455383669319 0.3319638013516687 0.941859161629607 -0.05197455383669319 -0.3319638013516687 0.6004182426841933 0.09502246409311689 0.7940205697396621 -0.6004182426841933 -0.09502246409311689 -0.7940205697396621 0.6841206473431174 0.07791754646142467 0.7251950053828735 -0.6841206473431174 -0.07791754646142467 -0.7251950053828735 0.267669686032973 0.09407481440231033 0.9589071219227546 -0.267669686032973 -0.09407481440231033 -0.9589071219227546 -0.2313062834227052 0.09844300790988127 0.9678875851269249 0.2313062834227052 -0.09844300790988127 -0.9678875851269249 -0.619244317071901 0.08796980742174308 0.7802549511258077 0.619244317071901 -0.08796980742174308 -0.7802549511258077 -0.8512868441637578 0.07117766962833931 0.519850409541042 0.8512868441637578 -0.07117766962833931 -0.519850409541042 0.2193054435540003 0.09994882204899158 0.9705232379487894 -0.2193054435540003 -0.09994882204899158 -0.9705232379487894 0.8956747356556694 0.0008618938289220829 0.4447089217085428 -0.8956747356556694 -0.0008618938289220829 -0.4447089217085428 0.960647311568589 0.006749071895014515 0.2776890217574298 -0.960647311568589 -0.006749071895014515 -0.2776890217574298 0.6701335758696255 0.08537633870501175 0.7373139570640962 -0.6701335758696255 -0.08537633870501175 -0.7373139570640962 -0.9963151381735486 0.0103614777137824 0.08513979813113079 0.9963151381735486 -0.0103614777137824 -0.08513979813113079 0.6518451327680904 0.08411166198014565 0.7536731063302501 -0.6518451327680904 -0.08411166198014565 -0.7536731063302501 0.6993131868940091 0.07803092851825916 0.7105436234537067 -0.6993131868940091 -0.07803092851825916 -0.7105436234537067 0.6622904416225062 0.08497656868953818 0.7444127576212123 -0.6622904416225062 -0.08497656868953818 -0.7444127576212123 0.3142247324526497 0.08615424789633501 0.9454312577255299 -0.3142247324526497 -0.08615424789633501 -0.9454312577255299 -0.193200246653653 0.1192240843693557 0.9738887423105661 0.193200246653653 -0.1192240843693557 -0.9738887423105661 -0.594527126720041 0.1033651737012722 0.7974039982717156 0.594527126720041 -0.1033651737012722 -0.7974039982717156 -0.9837759202990764 0.00754899880848756 -0.1792427160492016 0.9837759202990764 -0.00754899880848756 0.1792427160492016 -0.8252223923057854 0.07354181259994058 0.5599996473540243 0.8252223923057854 -0.07354181259994058 -0.5599996473540243 -0.9949542336215003 0.04853849320883647 0.08780710492704381 0.9949542336215003 -0.04853849320883647 -0.08780710492704381 0.6975918817599495 0.08525706534140216 0.7114048069221802 -0.6975918817599495 -0.08525706534140216 -0.7114048069221802 0.7002563485426032 0.09092126520727779 0.7080779405255386 -0.7002563485426032 -0.09092126520727779 -0.7080779405255386 0.6677794435755355 0.08506167003832711 0.739483013346648 -0.6677794435755355 -0.08506167003832711 -0.739483013346648 0.3781520398090869 0.1064682548120612 0.9196007533193418 -0.3781520398090869 -0.1064682548120612 -0.9196007533193418 -0.1213382593086127 0.2048805149604576 0.971236841052425 0.1213382593086127 -0.2048805149604576 -0.971236841052425 -0.5551054568074277 0.1581458233571667 0.8166075130546502 0.5551054568074277 -0.1581458233571667 -0.8166075130546502 -0.9901371474068906 0.112258842923586 -0.08382351406617986 0.9901371474068906 -0.112258842923586 0.08382351406617986 -0.803288234902613 0.1033987854605901 0.5865464200149202 0.803288234902613 -0.1033987854605901 -0.5865464200149202 -0.9833532129007401 0.1393681738100481 0.1165888965838687 0.9833532129007401 -0.1393681738100481 -0.1165888965838687 -0.9757579836748939 0.1415666458278183 0.1668988977907482 0.9757579836748939 -0.1415666458278183 -0.1668988977907482 0.7419975155705617 0.1391518965907396 0.655802132172742 -0.7419975155705617 -0.1391518965907396 -0.655802132172742 0.6897713813801563 0.1108430655201028 0.7154923173976208 -0.6897713813801563 -0.1108430655201028 -0.7154923173976208 0.6647871628790784 0.1067286098731158 0.7393693474209881 -0.6647871628790784 -0.1067286098731158 -0.7393693474209881 0.4461970877580111 0.1722484814124183 0.8782019241196101 -0.4461970877580111 -0.1722484814124183 -0.8782019241196101 -0.05563229514765632 0.5289117773130566 0.8468514507020388 0.05563229514765632 -0.5289117773130566 -0.8468514507020388 -0.435165702110851 0.4515896568508939 0.7789079493314098 0.435165702110851 -0.4515896568508939 -0.7789079493314098 -0.9351368442133152 0.1146554042918252 -0.3352211521688928 0.9351368442133152 -0.1146554042918252 0.3352211521688928 -0.978895673913228 0.147226222079519 0.1417310803111279 0.978895673913228 -0.147226222079519 -0.1417310803111279 -0.7476966889115523 0.4263167318637315 0.5091205216093028 0.7476966889115523 -0.4263167318637315 -0.5091205216093028 -0.8950751141167099 0.4457783992915338 0.01105254785271177 0.8950751141167099 -0.4457783992915338 -0.01105254785271177 -0.8045196442390664 0.3681117434220877 -0.4660921436671046 0.8045196442390664 -0.3681117434220877 0.4660921436671046 -0.959812087916502 0.2719516153311274 0.0693042192666197 0.959812087916502 -0.2719516153311274 -0.0693042192666197 0.6459848051780541 0.5996263944146406 0.4723894776562762 -0.6459848051780541 -0.5996263944146406 -0.4723894776562762 0.7457844295604762 0.1824636226309696 0.640712580679932 -0.7457844295604762 -0.1824636226309696 -0.640712580679932 0.5768067994535729 0.1625941184643131 0.8005354887479621 -0.5768067994535729 -0.1625941184643131 -0.8005354887479621 0.4503136938074429 0.4919927923707287 0.7450910477416499 -0.4503136938074429 -0.4919927923707287 -0.7450910477416499 -0.7666597499316146 0.508869338847824 -0.3915160581832792 0.7666597499316146 -0.508869338847824 0.3915160581832792 -0.965191148852219 0.2074110258106779 0.1593320826120586 0.965191148852219 -0.2074110258106779 -0.1593320826120586 0.6720191798213647 0.2479001060540849 0.6978078240967164 0.915635216907809 0.1723123688035635 0.3632087514302132 -0.915635216907809 -0.1723123688035635 -0.3632087514302132 -0.6720191798213647 -0.2479001060540849 -0.6978078240967164 -0.5180563146018837 0.5370719857658701 -0.6657111513311301 0.5180563146018837 -0.5370719857658701 0.6657111513311301 -0.9061218933420621 0.4189367196019224 0.05861006206597097 0.9061218933420621 -0.4189367196019224 -0.05861006206597097 0.6184195938279667 0.7458954947469703 0.2473805103192755 -0.6184195938279667 -0.7458954947469703 -0.2473805103192755 -0.6923879750287439 0.6725876114897066 -0.2611987689598995 0.6923879750287439 -0.6725876114897066 0.2611987689598995 -0.9606390840088881 0.2313098313454677 0.1538450915612705 0.9606390840088881 -0.2313098313454677 -0.1538450915612705 0.3069822403524479 0.7901164364290533 0.5305449283452308 -0.3069822403524479 -0.7901164364290533 -0.5305449283452308 0.3746982762224805 0.3208309892232409 0.8698670462489877 -0.3746982762224805 -0.3208309892232409 -0.8698670462489877 -0.1488282554927515 0.9155661090944683 -0.3736159127293701 0.1488282554927515 -0.9155661090944683 0.3736159127293701 -0.8374524352939948 0.4900488263066086 0.241920578818076 0.8374524352939948 -0.4900488263066086 -0.241920578818076 0.02013432366244061 0.9948608492919433 0.09922952966113069 -0.02013432366244061 -0.9948608492919433 -0.09922952966113069 -0.5180285247407579 0.8233112786731716 0.2319590178554426 0.5180285247407579 -0.8233112786731716 -0.2319590178554426 -0.975224393760161 0.2198350414258225 0.02469689001540941 0.975224393760161 -0.2198350414258225 -0.02469689001540941 0.2427050512818961 0.9516342080442651 -0.1883788527468427 -0.2427050512818961 -0.9516342080442651 0.1883788527468427 -0.2346210444548571 0.9689518614398232 0.07800804901555697 0.2346210444548571 -0.9689518614398232 -0.07800804901555697 -0.819474038561389 0.5635690772945599 0.1041738702422332 0.819474038561389 -0.5635690772945599 -0.1041738702422332 -0.05451759974655495 0.9941628349827284 0.0931025716990618 0.05451759974655495 -0.9941628349827284 -0.0931025716990618 -0.02236446271528624 0.9851014015947033 0.1705141031809617 0.02236446271528624 -0.9851014015947033 -0.1705141031809617 -0.4496591405956503 0.886703902231043 0.1075306795617989 0.4496591405956503 -0.886703902231043 -0.1075306795617989 -0.9776483495819677 0.2082474605589881 -0.02892576239941774 0.9776483495819677 -0.2082474605589881 0.02892576239941774 0.1956975435479542 0.9610457712487652 -0.195175554345729 -0.1956975435479542 -0.9610457712487652 0.195175554345729 -0.04381310747323911 0.9905954208196149 0.1296191492980425 0.04381310747323911 -0.9905954208196149 -0.1296191492980425 -0.2045470172969875 0.9728342701465432 0.1084158685034084 0.2045470172969875 -0.9728342701465432 -0.1084158685034084 -0.8061701085817001 0.590311466549336 -0.04027565629188418 0.8061701085817001 -0.590311466549336 0.04027565629188418 -0.01476168874444083 0.9980629191000056 0.06043593354113075 0.01476168874444083 -0.9980629191000056 -0.06043593354113075 -0.419392606116148 0.903488272462289 -0.08842388511151307 0.419392606116148 -0.903488272462289 0.08842388511151307 -0.9604116408479968 0.2414820489055198 -0.1389096835359247 0.9604116408479968 -0.2414820489055198 0.1389096835359247 0.06838160924233415 0.9976586547835161 -0.001078912866593481 -0.06838160924233415 -0.9976586547835161 0.001078912866593481 0.04222899237231256 0.999029792746431 0.0124974160626191 -0.04222899237231256 -0.999029792746431 -0.0124974160626191 -0.1703502280819691 0.9826233292457884 -0.07370340978777087 0.1703502280819691 -0.9826233292457884 0.07370340978777087 -0.743332148657051 0.6421560784117094 -0.1873309577506773 0.743332148657051 -0.6421560784117094 0.1873309577506773 -0.3686957111908107 0.9044387687211277 -0.2146019249301191 0.3686957111908107 -0.9044387687211277 0.2146019249301191 -0.8917894335220302 0.2447762468689626 -0.3805209524155026 0.8917894335220302 -0.2447762468689626 0.3805209524155026 0.06630971025854703 0.9976983597810961 0.01417763081541426 -0.06630971025854703 -0.9976983597810961 -0.01417763081541426 0.04403933478065045 0.9976015098838473 -0.05340191447453794 -0.04403933478065045 -0.9976015098838473 0.05340191447453794 -0.2225625318643727 0.9576445604125241 -0.1827096475898951 0.2225625318643727 -0.9576445604125241 0.1827096475898951 -0.7124877891680587 0.6192867656417471 -0.3299167352339004 0.7124877891680587 -0.6192867656417471 0.3299167352339004 0.05913006371641766 0.998026649424209 0.02112918843636627 -0.05913006371641766 -0.998026649424209 -0.02112918843636627 -0.4033096759206618 0.8742863152187486 -0.2701198702983436 0.4033096759206618 -0.8742863152187486 0.2701198702983436 -0.8134171882056506 0.211723434582368 -0.5417800893169285 0.8134171882056506 -0.211723434582368 0.5417800893169285 0.01657746807843397 0.9998193993815981 -0.009292802178504271 -0.01657746807843397 -0.9998193993815981 0.009292802178504271 -0.02580076011921999 0.9936985509212223 -0.1090757107441127 0.02580076011921999 -0.9936985509212223 0.1090757107441127 -0.2734955781683317 0.9192954085383365 -0.2830125802198605 0.2734955781683317 -0.9192954085383365 0.2830125802198605 -0.5880241288714962 0.5915554449308768 -0.5516246726149496 0.5880241288714962 -0.5915554449308768 0.5516246726149496 -0.3472030503156433 0.7613958998613115 -0.5474726710310721 0.3472030503156433 -0.7613958998613115 0.5474726710310721 -0.6116960464249118 0.289453862162385 -0.7362366524884584 0.6116960464249118 -0.289453862162385 0.7362366524884584 0.002326696679450597 0.9915085948100195 -0.1300203557156428 -0.002326696679450597 -0.9915085948100195 0.1300203557156428 -0.01557989416257686 0.9619313418665531 -0.2728467709772202 0.01557989416257686 -0.9619313418665531 0.2728467709772202 -0.1534675911282402 0.7918643444445248 -0.5910994488838054 0.1534675911282402 -0.7918643444445248 0.5910994488838054 -0.3471650544122291 0.4496793716837986 -0.8229610486997658 0.3471650544122291 -0.4496793716837986 0.8229610486997658 0.009548372349849251 0.9875451512375372 -0.1570458622590819 -0.009548372349849251 -0.9875451512375372 0.1570458622590819 -0.009566344304074151 0.8013399289201441 -0.5981327640038742 0.009566344304074151 -0.8013399289201441 0.5981327640038742 -0.1286511849964354 0.5174474660113633 -0.8459887661886724 0.1286511849964354 -0.5174474660113633 0.8459887661886724 -0.2579593021808977 0.3380197859589668 -0.905096471498259 0.2579593021808977 -0.3380197859589668 0.905096471498259 0.00101513059537807 0.9767277244806438 -0.2144805859296778 -0.00101513059537807 -0.9767277244806438 0.2144805859296778 0.01572335456579693 0.4801689348661454 -0.8770351019832158 -0.01572335456579693 -0.4801689348661454 0.8770351019832158 -0.08149115589158218 0.3325277535703116 -0.939566115085541 0.08149115589158218 -0.3325277535703116 0.939566115085541 -0.0316252922276885 0.8553539284748959 -0.5170778451394682 0.0316252922276885 -0.8553539284748959 0.5170778451394682 0.006817937470603061 0.4762750335139073 -0.8792699290775122 -0.006817937470603061 -0.4762750335139073 0.8792699290775122 5.835773135693002e-018 0.3078858683395854 -0.9514232980523336 -5.835773135693002e-018 -0.3078858683395854 0.9514232980523336 0 0.3078858683395855 -0.9514232980523336 -0 -0.3078858683395855 0.9514232980523336 0.02307212455675351 0.3132164083073376 -0.9494014738957851 -0.02307212455675351 -0.3132164083073376 0.9494014738957851 -9.880966486775119e-018 0.3078858683395854 -0.9514232980523336 9.880966486775119e-018 -0.3078858683395854 0.9514232980523336 -0.02929681047929539 0.4931386002173482 -0.8694573122766952 0.02929681047929539 -0.4931386002173482 0.8694573122766952 0.01001146315705132 0.3023485085216996 -0.9531448735633838 -0.01001146315705132 -0.3023485085216996 0.9531448735633838 0.01611345675114597 0.2259029614738796 -0.97401653400179 -0.01611345675114597 -0.2259029614738796 0.97401653400179</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"378\" source=\"#ID274\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID272\">\r\n                    <input semantic=\"POSITION\" source=\"#ID270\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID271\"/>\r\n                </vertices>\r\n                <triangles count=\"297\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID272\"/>\r\n                    <p>0 1 2 0 2 6 2 1 8 10 0 6 6 2 12 2 8 14 10 6 16 2 14 12 6 12 18 14 8 20 16 6 18 22 10 16 12 14 24 18 12 26 14 20 28 30 16 18 32 22 16 26 12 24 14 28 24 34 18 26 28 20 36 32 16 30 30 18 34 38 22 32 26 24 40 24 28 42 34 26 44 28 36 46 32 30 48 30 34 50 52 38 32 24 42 40 26 40 54 28 56 42 34 44 58 26 54 44 28 46 56 48 30 50 52 32 48 50 34 58 60 38 52 54 40 62 58 44 64 44 54 66 48 50 68 52 48 70 50 58 72 60 52 74 54 62 76 58 64 78 64 44 66 54 76 66 70 48 68 68 50 72 74 52 70 72 58 78 80 60 74 78 64 82 64 66 84 66 76 86 70 68 88 68 72 90 92 74 70 72 78 94 96 80 74 78 82 98 64 84 82 84 66 86 86 76 100 70 88 92 88 68 90 90 72 94 96 74 92 94 78 98 98 82 102 82 84 104 84 86 106 86 100 108 92 88 110 88 90 112 90 94 114 116 92 117 94 98 120 98 102 122 82 104 102 84 106 104 86 108 106 108 100 124 110 88 112 92 110 117 112 90 114 114 94 120 120 98 122 122 102 126 102 104 128 104 106 130 106 108 132 108 124 134 110 112 136 117 110 138 112 114 136 114 120 140 120 122 142 102 128 126 122 126 144 104 130 128 106 132 130 132 108 134 134 124 146 110 136 138 136 114 140 140 120 142 142 122 144 126 128 148 144 126 150 128 130 152 130 132 154 132 134 156 134 146 158 138 136 160 136 140 160 140 142 162 142 144 164 128 152 148 126 148 150 144 150 166 130 154 152 132 156 154 156 134 158 158 146 168 160 140 162 162 142 164 164 144 166 148 152 170 150 148 172 166 150 174 152 154 176 154 156 178 156 158 180 168 146 182 158 168 184 152 176 170 172 148 170 150 172 174 154 178 176 156 180 178 158 184 180 168 182 186 168 186 184 170 176 188 172 170 190 174 172 192 176 178 194 178 180 196 180 184 198 186 182 200 184 186 202 176 194 188 190 170 188 172 190 192 178 196 194 180 198 196 198 184 202 186 200 204 182 206 200 202 186 204 188 194 208 190 188 210 192 190 212 194 196 214 196 198 216 198 202 218 200 220 204 206 222 200 202 204 224 194 214 208 210 188 208 190 210 212 196 216 214 198 218 216 202 224 218 204 220 226 220 200 228 200 222 230 204 226 224 208 214 232 234 210 208 212 210 236 214 216 238 226 220 240 220 228 240 200 230 228 222 242 230 232 214 238 244 208 245 234 208 244 210 234 236 240 228 248 230 250 228 230 242 250 252 244 245 236 234 244 248 228 254 250 254 228 242 256 250 244 252 258 236 244 260 248 254 262 264 254 250 250 256 264 266 258 252 260 244 258 268 262 254 264 268 254 256 270 264 272 266 252 268 274 262 264 276 268 264 270 276 278 266 272 262 274 280 282 274 268 276 282 268 270 284 276 286 278 272 262 280 286 274 288 280 282 290 274 276 292 282 276 284 292 280 278 286 288 294 280 274 290 288 282 296 290 292 296 282 284 298 292 280 294 278 288 300 294 290 302 288 296 304 290 306 296 292 298 306 292 302 300 288 290 304 302 296 308 304 306 308 296 298 310 306 302 312 300 304 314 302 308 316 304 306 318 308 310 318 306 320 312 302 314 320 302 304 316 314 308 322 316 318 322 308 310 324 318 314 326 320 316 328 314 322 330 316 332 322 318 324 332 318 328 326 314 316 330 328 334 330 322 332 334 322 324 336 332 328 338 326 330 340 328 334 342 330 332 344 334 332 336 344 328 346 338 340 346 328 330 348 340 342 348 330 334 350 342 334 344 350 344 336 352 340 354 346 340 348 354 342 356 348 342 350 356 344 358 350 344 352 358 348 360 354 348 356 362 350 364 356 350 358 366 348 362 360 356 368 362 356 370 368 362 372 360 362 368 374 362 374 372 372 374 376</p>\r\n                </triangles>\r\n                <triangles count=\"297\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID272\"/>\r\n                    <p>3 4 5 7 3 5 9 4 3 7 5 11 13 3 7 15 9 3 17 7 11 13 15 3 19 13 7 21 9 15 19 7 17 17 11 23 25 15 13 27 13 19 29 21 15 19 17 31 17 23 33 25 13 27 25 29 15 27 19 35 37 21 29 31 17 33 35 19 31 33 23 39 41 25 27 43 29 25 45 27 35 47 37 29 49 31 33 51 35 31 33 39 53 41 43 25 55 41 27 43 57 29 59 45 35 45 55 27 57 47 29 51 31 49 49 33 53 59 35 51 53 39 61 63 41 55 65 45 59 67 55 45 69 51 49 71 49 53 73 59 51 75 53 61 77 63 55 79 65 59 67 45 65 67 77 55 69 49 71 73 51 69 71 53 75 79 59 73 75 61 81 83 65 79 85 67 65 87 77 67 89 69 71 91 73 69 71 75 93 95 79 73 75 81 97 99 83 79 83 85 65 87 67 85 101 77 87 93 89 71 91 69 89 95 73 91 93 75 97 99 79 95 103 83 99 105 85 83 107 87 85 109 101 87 111 89 93 113 91 89 115 95 91 118 93 119 121 99 95 123 103 99 103 105 83 105 107 85 107 109 87 125 101 109 113 89 111 118 111 93 115 91 113 121 95 115 123 99 121 127 103 123 129 105 103 131 107 105 133 109 107 135 125 109 137 113 111 139 111 118 137 115 113 141 121 115 143 123 121 127 129 103 145 127 123 129 131 105 131 133 107 135 109 133 147 125 135 139 137 111 141 115 137 143 121 141 145 123 143 149 129 127 151 127 145 153 131 129 155 133 131 157 135 133 159 147 135 161 137 139 161 141 137 163 143 141 165 145 143 149 153 129 151 149 127 167 151 145 153 155 131 155 157 133 159 135 157 169 147 159 163 141 161 165 143 163 167 145 165 171 153 149 173 149 151 175 151 167 177 155 153 179 157 155 181 159 157 183 147 169 185 169 159 171 177 153 171 149 173 175 173 151 177 179 155 179 181 157 181 185 159 187 183 169 185 187 169 189 177 171 191 171 173 193 173 175 195 179 177 197 181 179 199 185 181 201 183 187 203 187 185 189 195 177 189 171 191 193 191 173 195 197 179 197 199 181 203 185 199 205 201 187 201 207 183 205 187 203 209 195 189 211 189 191 213 191 193 215 197 195 217 199 197 219 203 199 205 221 201 201 223 207 225 205 203 209 215 195 209 189 211 213 211 191 215 217 197 217 219 199 219 225 203 227 221 205 229 201 221 231 223 201 225 227 205 233 215 209 209 211 235 237 211 213 239 217 215 241 221 227 241 229 221 229 231 201 231 243 223 239 215 233 246 209 247 247 209 235 237 235 211 249 229 241 229 251 231 251 243 231 246 247 253 247 235 237 255 229 249 229 255 251 251 257 243 259 253 247 261 247 237 263 255 249 251 255 265 265 257 251 253 259 267 259 247 261 255 263 269 255 269 265 265 271 257 253 267 273 263 275 269 269 277 265 277 271 265 273 267 279 281 275 263 269 275 283 269 283 277 277 285 271 273 279 287 287 281 263 281 289 275 275 291 283 283 293 277 293 285 277 287 279 281 281 295 289 289 291 275 291 297 283 283 297 293 293 299 285 279 295 281 295 301 289 289 303 291 291 305 297 293 297 307 293 307 299 289 301 303 303 305 291 305 309 297 297 309 307 307 311 299 301 313 303 303 315 305 305 317 309 309 319 307 307 319 311 303 313 321 303 321 315 315 317 305 317 323 309 309 323 319 319 325 311 321 327 315 315 329 317 317 331 323 319 323 333 319 333 325 315 327 329 329 331 317 323 331 335 323 335 333 333 337 325 327 339 329 329 341 331 331 343 335 335 345 333 345 337 333 339 347 329 329 347 341 341 349 331 331 349 343 343 351 335 351 345 335 353 337 345 347 355 341 355 349 341 349 357 343 357 351 343 351 359 345 359 353 345 355 361 349 363 357 349 357 365 351 367 359 351 361 363 349 363 369 357 369 371 357 361 373 363 375 369 363 373 375 363 377 375 373</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID275\">\r\n            <mesh>\r\n                <source id=\"ID276\">\r\n                    <float_array count=\"144\" id=\"ID280\">-0.7116498351097107 1.906256556510925 0.2465686351060867 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6608441472053528 1.925890922546387 0.04520654678344727</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID280\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID277\">\r\n                    <float_array count=\"144\" id=\"ID281\">-0.435165702110851 0.4515896568508939 0.7789079493314098 -0.06368333310271433 0.7816356971273526 0.620475680475203 -0.05563229514765632 0.5289117773130566 0.8468514507020388 0.05563229514765632 -0.5289117773130566 -0.8468514507020388 0.06368333310271433 -0.7816356971273526 -0.620475680475203 0.435165702110851 -0.4515896568508939 -0.7789079493314098 0.4503136938074429 0.4919927923707287 0.7450910477416499 -0.4503136938074429 -0.4919927923707287 -0.7450910477416499 -0.357955641606925 0.726460486063723 0.5866199117229437 0.357955641606925 -0.726460486063723 -0.5866199117229437 0.3587988135093599 0.7857758001028901 0.5038053229144552 -0.3587988135093599 -0.7857758001028901 -0.5038053229144552 -0.7476966889115523 0.4263167318637315 0.5091205216093028 0.7476966889115523 -0.4263167318637315 -0.5091205216093028 0.6459848051780541 0.5996263944146406 0.4723894776562762 -0.6459848051780541 -0.5996263944146406 -0.4723894776562762 -0.6026294861515171 0.7116628314326922 0.3610730075455128 0.6026294861515171 -0.7116628314326922 -0.3610730075455128 0.5614139557093099 0.7664281898127975 0.3120932556065631 -0.5614139557093099 -0.7664281898127975 -0.3120932556065631 -0.8950751141167099 0.4457783992915338 0.01105254785271177 0.8950751141167099 -0.4457783992915338 -0.01105254785271177 0.7167870052363519 0.6972488856121056 0.007770497859147317 -0.7167870052363519 -0.6972488856121056 -0.007770497859147317 -0.7799109052037205 0.6257604651572392 -0.01276010150857372 0.7799109052037205 -0.6257604651572392 0.01276010150857372 0.6184195938279667 0.7458954947469703 0.2473805103192755 -0.6184195938279667 -0.7458954947469703 -0.2473805103192755 -0.6469293907248533 0.6898739395188838 -0.3248943074125266 0.6469293907248533 -0.6898739395188838 0.3248943074125266 0.2427050512818961 0.9516342080442651 -0.1883788527468427 -0.2427050512818961 -0.9516342080442651 0.1883788527468427 -0.7666597499316146 0.508869338847824 -0.3915160581832792 0.7666597499316146 -0.508869338847824 0.3915160581832792 0.6935024192222105 0.6221495312494236 -0.3632965115426569 -0.6935024192222105 -0.6221495312494236 0.3632965115426569 -0.5180563146018837 0.5370719857658701 -0.6657111513311301 0.5180563146018837 -0.5370719857658701 0.6657111513311301 0.1956975435479542 0.9610457712487652 -0.195175554345729 -0.1956975435479542 -0.9610457712487652 0.195175554345729 -0.3920370787496035 0.7299200010228979 -0.5599318896010566 0.3920370787496035 -0.7299200010228979 0.5599318896010566 0.436009300540624 0.6523065459228311 -0.6199935967316932 -0.436009300540624 -0.6523065459228311 0.6199935967316932 -0.1488282554927515 0.9155661090944683 -0.3736159127293701 0.1488282554927515 -0.9155661090944683 0.3736159127293701 -0.03258556170756263 0.82269437928504 -0.5675492396796997 0.03258556170756263 -0.82269437928504 0.5675492396796997</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID281\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID279\">\r\n                    <float_array count=\"144\" id=\"ID282\">0.7188386542691355 -8.291532658220529 0.1749896748126473 -8.320893956598498 0.2041830542323292 -8.150311163627059 9.672250224643861 -7.059456281068957 9.121063736486267 -7.00015437808274 9.635808610670308 -6.88973862863807 0.6639147781687854 -8.886877481008773 0.2324867331287822 -8.753934829114037 0.7762688155175496 -8.723816519917641 9.839906616466639 -6.307174060427218 9.339995661571731 -6.435828230921108 9.288313773784795 -6.250258337511604 -4.191559614331788 -6.836501395105861 -4.69878214040593 -6.693971572480447 -4.555776490174386 -6.546509488265469 15.85579309369449 -2.88317807879961 15.3954110245283 -3.130225793674685 15.7542839453301 -2.710804965467504 -4.177611420914334 -6.813955883605757 -4.384548454898964 -6.904087306834577 -4.684900128791502 -6.671571896546428 15.13162762342031 -2.942603618617635 14.94554878944722 -2.851268576834669 15.4106366706707 -2.609737105537482 -8.226513411480296 -0.7098504223906802 -8.043831377542412 -1.259634095720322 -8.44139085504138 -0.7876381362217108 16.68586566671936 -0.4969757365175341 16.59975977698542 -0.8734360458787314 16.49519576895906 -0.4117015401201064 -9.850781302299073 -2.029177671362245 -10.11583197132906 -2.034445504716346 -10.23693653686281 -1.551358442944537 17.68092000924953 -0.333467071248151 17.79621260351479 0.1513689572324142 17.91670649074802 -0.307956751485418 -10.32315030913376 4.40779187417157 -10.0581001196428 4.41307461787261 -10.45954325990876 3.982258596677514 17.1422727178355 2.524676465625354 17.10145403098541 2.971463949908351 17.33720217749696 2.997192587960516 -8.658483753761287 3.758285282074407 -8.809672350536607 3.247939079297819 -9.068603822892037 3.332556943658334 18.85280106037276 1.76687791656905 18.57308203040395 1.669767787113157 18.78896415663697 2.136613287842372 -6.327562815075143 7.424957543166874 -6.590166251534956 7.147744147272575 -6.581760019008222 7.518035654996087 17.00806838718614 4.873788786955079 16.64914884213192 5.308447629415089 16.91766513457668 5.423474394581779 -4.633608847655582 7.295671634646289 -4.875549018316793 7.380359627722972 -4.604236027962772 7.665300658634502 17.70326608388892 4.685070745077654 17.53146206826799 4.509947453012988 17.46142862806131 5.061469611505912 -1.852210723918644 10.55642798035522 -2.446473941138867 10.31730615529452 -2.085243986845924 10.65537294062357 12.79719115790005 8.928718448525228 13.23698361062379 8.581924978490923 12.68436991297344 8.726092390013315 0.9968152046229961 8.751937142296828 0.946469134028074 8.916366648893565 1.39957890577551 9.0595932442054 10.14359480581646 8.249131720626881 10.13688624953656 8.080081984372791 9.647226693335407 8.382708553762887</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"72\" source=\"#ID282\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID278\">\r\n                    <input semantic=\"POSITION\" source=\"#ID276\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID277\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID278\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID279\"/>\r\n                    <p>0 0 1 1 2 2 1 3 6 4 2 5 8 6 1 7 0 8 1 9 10 10 6 11 12 12 8 13 0 14 10 15 14 16 6 17 12 18 16 19 8 20 18 21 14 22 10 23 12 24 20 25 16 26 18 27 22 28 14 29 20 30 24 31 16 32 26 33 14 34 22 35 24 36 20 37 28 38 30 39 26 40 22 41 20 42 32 43 28 44 34 45 30 46 22 47 32 48 36 49 28 50 38 51 30 52 34 53 36 54 40 55 28 56 42 57 38 58 34 59 36 60 44 61 40 62 42 63 44 64 38 65 44 66 46 67 40 68 46 69 44 70 42 71</p>\r\n                </triangles>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID278\"/>\r\n                    <p>3 4 5 3 7 4 5 4 9 7 11 4 5 9 13 7 15 11 9 17 13 11 15 19 17 21 13 15 23 19 17 25 21 23 15 27 29 21 25 23 27 31 29 33 21 23 31 35 29 37 33 35 31 39 29 41 37 35 39 43 41 45 37 39 45 43 41 47 45 43 45 47</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID283\">\r\n            <mesh>\r\n                <source id=\"ID284\">\r\n                    <float_array count=\"78\" id=\"ID287\">-0.7070872783660889 1.922605037689209 0.06054756790399551 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6617981791496277 1.944134831428528 0.1425205767154694 -0.6617981791496277 1.944134831428528 0.1425205767154694 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID287\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID285\">\r\n                    <float_array count=\"78\" id=\"ID288\">-0.165409139121686 0.9724881256473652 -0.1640325033945932 -0.03936888359639548 0.9820447570333709 -0.1844944069278004 -0.05154784640370621 0.9986705258475552 -1.828954190066948e-005 0.05154784640370621 -0.9986705258475552 1.828954190066948e-005 0.03936888359639548 -0.9820447570333709 0.1844944069278004 0.165409139121686 -0.9724881256473652 0.1640325033945932 -0.2344195103292229 0.9677138782286453 -0.09261394636166778 0.2344195103292229 -0.9677138782286453 0.09261394636166778 0.07133911037849994 0.9829624583428812 -0.1693975702863634 -0.07133911037849994 -0.9829624583428812 0.1693975702863634 -0.2642754452526631 0.9643255572820237 0.01532020264946916 0.2642754452526631 -0.9643255572820237 -0.01532020264946916 0.1253419610089993 0.9875266825606484 -0.09529136393807591 -0.1253419610089993 -0.9875266825606484 0.09529136393807591 -0.2333211288655121 0.9667719534384546 0.1044664581084193 0.2333211288655121 -0.9667719534384546 -0.1044664581084193 0.1531163977687427 0.9876600812654266 0.03290794142900599 -0.1531163977687427 -0.9876600812654266 -0.03290794142900599 -0.1663136067224484 0.9732003845942406 0.1588105652801244 0.1663136067224484 -0.9732003845942406 -0.1588105652801244 0.1453191391419066 0.9831280205923531 0.1110929472343633 -0.1453191391419066 -0.9831280205923531 -0.1110929472343633 -0.04191050783459503 0.9827371062147273 0.1801979173069162 0.04191050783459503 -0.9827371062147273 -0.1801979173069162 0.08898259893596822 0.9845879358947005 0.1505612618744073 -0.08898259893596822 -0.9845879358947005 -0.1505612618744073</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID288\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID286\">\r\n                    <input semantic=\"POSITION\" source=\"#ID284\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID285\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID286\"/>\r\n                    <p>0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 6 2 10 11 3 7 8 12 2 3 13 9 10 2 14 15 3 11 2 12 16 17 13 3 14 2 18 19 3 15 2 16 20 21 17 3 18 2 22 23 3 19 2 20 24 25 21 3 2 24 22 23 25 3</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID289\">\r\n            <mesh>\r\n                <source id=\"ID290\">\r\n                    <float_array count=\"18\" id=\"ID293\">-0.546968400478363 1.912085294723511 0.1417621821165085 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.546968400478363 1.912085294723511 0.1417621821165085</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID293\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID291\">\r\n                    <float_array count=\"18\" id=\"ID294\">0.9632631188235522 -0.001770734784068651 0.2685535857378334 0.9632631188235522 -0.001770734784068651 0.2685535857378334 0.9632631188235522 -0.001770734784068651 0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID294\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID292\">\r\n                    <input semantic=\"POSITION\" source=\"#ID290\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID291\"/>\r\n                </vertices>\r\n                <triangles count=\"2\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID292\"/>\r\n                    <p>0 1 2 3 4 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID295\">\r\n            <mesh>\r\n                <source id=\"ID296\">\r\n                    <float_array count=\"612\" id=\"ID299\">-0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.6028463840484619 1.335630416870117 0.1818975508213043 -0.6028463840484619 1.335630416870117 0.1818975508213043 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.6028463840484619 1.430773377418518 0.1891794055700302 -0.6028463840484619 1.430773377418518 0.1891794055700302 -0.6050586104393005 1.530340790748596 0.1673334091901779 -0.6050586104393005 1.530340790748596 0.1673334091901779 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.6008648872375488 1.63359522819519 0.123851403594017 -0.6008648872375488 1.63359522819519 0.123851403594017 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.6027937531471252 1.674088478088379 0.08723254501819611 -0.6027937531471252 1.674088478088379 0.08723254501819611 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.6027937531471252 1.703011274337769 0.06053215265274048 -0.6027937531471252 1.703011274337769 0.06053215265274048 -0.6044416427612305 1.727086067199707 0.03279396891593933 -0.6044416427612305 1.727086067199707 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.60619056224823 1.760315418243408 -0.0219960268586874 -0.60619056224823 1.760315418243408 -0.0219960268586874 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.6044694781303406 1.775644421577454 -0.07519237697124481 -0.6044694781303406 1.775644421577454 -0.07519237697124481 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.6044694781303406 1.788490056991577 -0.1259496361017227 -0.6044694781303406 1.788490056991577 -0.1259496361017227 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.6044694781303406 1.792240262031555 -0.1946214586496353 -0.6044694781303406 1.792240262031555 -0.1946214586496353 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.6074553728103638 1.788490056991577 -0.264063835144043 -0.6074553728103638 1.788490056991577 -0.264063835144043 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.6052919626235962 1.761277794837952 -0.2947392761707306 -0.6052919626235962 1.761277794837952 -0.2947392761707306 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.5915260314941406 1.761277794837952 -0.3425095975399017 -0.5915260314941406 1.761277794837952 -0.3425095975399017 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.5757541060447693 1.778753638267517 -0.3605347573757172</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"204\" source=\"#ID299\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID297\">\r\n                    <float_array count=\"612\" id=\"ID300\">0.003154775786052327 0.7279221052632761 -0.6856525767900384 0.00203187706716806 0.704169472516569 -0.7100290314144352 -0.005578169835515358 0.9529680193264487 -0.3030195342916218 0.005578169835515358 -0.9529680193264487 0.3030195342916218 -0.00203187706716806 -0.704169472516569 0.7100290314144352 -0.003154775786052327 -0.7279221052632761 0.6856525767900384 0.009873696533179039 0.2940161067184299 -0.9557494646124096 -0.009873696533179039 -0.2940161067184299 0.9557494646124096 -0.003893262529684494 0.9526976940201263 -0.3038946302842631 0.003893262529684494 -0.9526976940201263 0.3038946302842631 0.008412698300353367 0.295838201885185 -0.9552010180127784 -0.008412698300353367 -0.295838201885185 0.9552010180127784 -0.002151784389725178 0.9027479772971301 -0.4301644561210053 0.002151784389725178 -0.9027479772971301 0.4301644561210053 0.9967239721974597 0.07970595424672489 -0.01372166551612808 0.994807368507486 -0.08790384280203133 -0.05129536025652839 0.9641445631344157 0.263879925291912 0.02815397674009587 -0.9641445631344157 -0.263879925291912 -0.02815397674009587 -0.994807368507486 0.08790384280203133 0.05129536025652839 -0.9967239721974597 -0.07970595424672489 0.01372166551612808 0.9998659225120776 -0.004781490074433051 -0.01566123723529287 -0.9998659225120776 0.004781490074433051 0.01566123723529287 0.00862185958196769 0.2207983508858853 -0.9752813705712944 -0.00862185958196769 -0.2207983508858853 0.9752813705712944 0.003991036288046091 0.9093356525074643 -0.4160441595650297 -0.003991036288046091 -0.9093356525074643 0.4160441595650297 0.9960935768753003 0.08614723225758705 -0.01939691939787533 -0.9960935768753003 -0.08614723225758705 0.01939691939787533 0.9905918755147362 -0.1363080438040944 -0.01215949663836422 -0.9905918755147362 0.1363080438040944 0.01215949663836422 0.005673301987295233 0.2264394723743121 -0.9740087160777382 -0.005673301987295233 -0.2264394723743121 0.9740087160777382 0.004720636310207403 0.7943622490834562 -0.6074259895854802 -0.004720636310207403 -0.7943622490834562 0.6074259895854802 0.9968271721108338 0.04461136360658059 -0.06591976318737446 -0.9968271721108338 -0.04461136360658059 0.06591976318737446 0.9980321071246151 -0.06250502152018732 0.005003542061573886 -0.9980321071246151 0.06250502152018732 -0.005003542061573886 0.004096602433148256 0.1253146873242252 -0.9921085862894931 -0.004096602433148256 -0.1253146873242252 0.9921085862894931 0.008661291044890985 0.800806736223715 -0.5988602117824801 -0.008661291044890985 -0.800806736223715 0.5988602117824801 0.8956747356556694 0.0008618938289220829 0.4447089217085428 -0.8956747356556694 -0.0008618938289220829 -0.4447089217085428 0.9852524477210616 -0.1710581732994747 -0.004088472465827907 -0.9852524477210616 0.1710581732994747 0.004088472465827907 0.005601650806890374 0.1304529279567728 -0.9914386794430319 -0.005601650806890374 -0.1304529279567728 0.9914386794430319 0.006660255799076443 0.62615586728002 -0.7796694625695538 -0.006660255799076443 -0.62615586728002 0.7796694625695538 0.9759876233675472 0.1309203157675931 -0.1740920157637353 -0.9759876233675472 -0.1309203157675931 0.1740920157637353 0.9827040068018349 -0.1847034700396569 0.01332153035235797 -0.9827040068018349 0.1847034700396569 -0.01332153035235797 0.01726207897819288 0.07004635942544597 -0.9973943694249492 -0.01726207897819288 -0.07004635942544597 0.9973943694249492 0.009504062429951832 0.6333564301194223 -0.7738018513958912 -0.009504062429951832 -0.6333564301194223 0.7738018513958912 0.960647311568589 0.006749071895014515 0.2776890217574298 -0.960647311568589 -0.006749071895014515 -0.2776890217574298 0.9710424030277641 -0.2387866027887111 0.007590115327941624 -0.9710424030277641 0.2387866027887111 -0.007590115327941624 0.02864701649948257 0.06098741739664127 -0.9977273592344587 -0.02864701649948257 -0.06098741739664127 0.9977273592344587 0.0122678743552204 0.408942547431161 -0.9124776666633092 -0.0122678743552204 -0.408942547431161 0.9124776666633092 0.9258007050101661 0.1301718437275705 -0.3548920197795999 -0.9258007050101661 -0.1301718437275705 0.3548920197795999 0.9844961877060547 -0.1748438068751519 -0.01403209142106429 -0.9844961877060547 0.1748438068751519 0.01403209142106429 -0.0003328446250290773 -0.9999540637905197 0.009579119128647748 0.009719844425970807 -0.9998397863798134 0.01503084150353108 0.01129802889254054 -0.9997986187078636 0.01658543255363933 -0.01129802889254054 0.9997986187078636 -0.01658543255363933 -0.009719844425970807 0.9998397863798134 -0.01503084150353108 0.0003328446250290773 0.9999540637905197 -0.009579119128647748 0.005829775791856834 0.3941443923859961 -0.9190300384997712 -0.005829775791856834 -0.3941443923859961 0.9190300384997712 0.9125357698546387 -0.1130702210936151 -0.3930567310677209 -0.9125357698546387 0.1130702210936151 0.3930567310677209 0.0584403134379483 -0.9982850189476406 -0.003427930860333971 0.07339187183949321 -0.9972987116424856 -0.002985448732408235 -0.07339187183949321 0.9972987116424856 0.002985448732408235 -0.0584403134379483 0.9982850189476406 0.003427930860333971 -0.008795869253130913 -0.9999350758860359 0.007244080125832215 0.008795869253130913 0.9999350758860359 -0.007244080125832215 -0.001709771075087474 0.1630913164699768 -0.9866094967994991 0.001709771075087474 -0.1630913164699768 0.9866094967994991 0.5477061066700305 0.06663861518257813 -0.8340127790884894 -0.5477061066700305 -0.06663861518257813 0.8340127790884894 -0.01146976780842381 -0.9999016954466101 -0.008064977955058951 0.01146976780842381 0.9999016954466101 0.008064977955058951 -0.07999252346564843 -0.9966968905818605 -0.01401800606535597 0.07999252346564843 0.9966968905818605 0.01401800606535597 0.8175796316467974 -0.1036266295353065 -0.5664142190724379 -0.8175796316467974 0.1036266295353065 0.5664142190724379 -0.1171614320668039 -0.9928592035054589 -0.02244550847189105 0.1171614320668039 0.9928592035054589 0.02244550847189105 0.0005074685993279611 -0.07314158556779575 -0.9973214381212556 -0.0005074685993279611 0.07314158556779575 0.9973214381212556 0.4671843293411222 -0.05410079983313199 -0.8825032044562227 -0.4671843293411222 0.05410079983313199 0.8825032044562227 0.4157909467608663 -0.2893045046693474 -0.8622185292428631 -0.4157909467608663 0.2893045046693474 0.8622185292428631 0.00125164063339767 -0.2989056791747194 -0.9542818390563789 -0.00125164063339767 0.2989056791747194 0.9542818390563789 0.7357186249502042 -0.2286613752319258 -0.6375202587984362 -0.7357186249502042 0.2286613752319258 0.6375202587984362 0.003126663485774014 -0.5245013036690988 -0.8514039032238826 -0.003126663485774014 0.5245013036690988 0.8514039032238826 0.7444360956075482 -0.2640628572513944 -0.6132582710219399 -0.7444360956075482 0.2640628572513944 0.6132582710219399 0.453646658642683 -0.4631728809210656 -0.7613642961694551 -0.453646658642683 0.4631728809210656 0.7613642961694551 0.001292287114555989 -0.6679956796251377 -0.7441640289587799 -0.001292287114555989 0.6679956796251377 0.7441640289587799 0.8074365638431011 -0.3017915337183512 -0.5069201766996171 -0.8074365638431011 0.3017915337183512 0.5069201766996171 0.4413654101371363 -0.6003888253962572 -0.6668806737893819 -0.4413654101371363 0.6003888253962572 0.6668806737893819 -0.001171495476863823 -0.7300817285972934 -0.6833588348494045 0.001171495476863823 0.7300817285972934 0.6833588348494045 0.4526027224778333 -0.635258761474257 -0.6257771820511247 -0.4526027224778333 0.635258761474257 0.6257771820511247 0.4748307092488027 -0.6940603301408 -0.5411248060097805 -0.4748307092488027 0.6940603301408 0.5411248060097805 0.002717381677525309 -0.8075924325322345 -0.5897347528791967 -0.002717381677525309 0.8075924325322345 0.5897347528791967 0.8464322837763881 -0.3623231834195628 -0.3902233972198512 -0.8464322837763881 0.3623231834195628 0.3902233972198512 -0.0003509631312579686 -0.919550123560017 -0.3929725780326637 0.0003509631312579686 0.919550123560017 0.3929725780326637 0.5001644196760581 -0.7853667004844724 -0.3647392206224129 -0.5001644196760581 0.7853667004844724 0.3647392206224129 0.7953598593833767 -0.5959557967894432 -0.1106317420757499 -0.7953598593833767 0.5959557967894432 0.1106317420757499 0.00256577070308407 -0.9705573239926624 -0.2408565914914959 -0.00256577070308407 0.9705573239926624 0.2408565914914959 0.6770063870684798 -0.7260984694438274 0.1201805497566687 -0.6770063870684798 0.7260984694438274 -0.1201805497566687 0.5130715501709678 -0.8343890419510267 -0.2013765405334188 -0.5130715501709678 0.8343890419510267 0.2013765405334188 0.5045078836468269 -0.02905227361918602 -0.8629181657235846 0.3740154694987343 0.08517409969750246 -0.9235030055805781 -0.3740154694987343 -0.08517409969750246 0.9235030055805781 -0.5045078836468269 0.02905227361918602 0.8629181657235846 0.004738754576579228 -0.9886901059625701 -0.1498980272611502 -0.004738754576579228 0.9886901059625701 0.1498980272611502 0.8761960434976746 -0.4814018184795852 -0.0230820823057494 -0.8761960434976746 0.4814018184795852 0.0230820823057494 0.8175550262034389 -0.3652865767667861 -0.4451623254089426 -0.8175550262034389 0.3652865767667861 0.4451623254089426 0.4805228882716853 -0.8689358673983149 -0.1185251542744236 -0.4805228882716853 0.8689358673983149 0.1185251542744236 0.8246367447315011 -0.5481831095965644 0.1395332132206313 -0.8246367447315011 0.5481831095965644 -0.1395332132206313 0.00010182183726732 -0.9999807024157885 0.006211636526666983 -0.00010182183726732 0.9999807024157885 -0.006211636526666983 0.3573934484380254 -0.9320419610155467 0.05973027640879219 -0.3573934484380254 0.9320419610155467 -0.05973027640879219 0.7326226935095296 -0.6427578869681038 0.223889007535297 -0.7326226935095296 0.6427578869681038 -0.223889007535297 -0.0003121471177735471 -0.9401959828614036 0.3406338450234447 0.0003121471177735471 0.9401959828614036 -0.3406338450234447 0.281088461575212 -0.8836047623771194 0.3744755007657446 -0.281088461575212 0.8836047623771194 -0.3744755007657446 0.5938773958340341 -0.6788819111953476 0.4317742342580647 -0.5938773958340341 0.6788819111953476 -0.4317742342580647 -0.0008582256848451016 -0.9269980685706961 0.3750651200989938 0.0008582256848451016 0.9269980685706961 -0.3750651200989938 0.5354989973352612 -0.8308293100162483 0.1515370630270194 -0.5354989973352612 0.8308293100162483 -0.1515370630270194 0.3066480515466414 -0.3948527167845805 0.8660590652666156 -0.3066480515466414 0.3948527167845805 -0.8660590652666156 0.1380021439462748 -0.9128750179141473 0.3842064678457104 -0.1380021439462748 0.9128750179141473 -0.3842064678457104 0.5540930953588987 -0.8216196774116014 0.1338728776326658 -0.5540930953588987 0.8216196774116014 -0.1338728776326658 0.5143594831915055 -0.7538234116189816 0.4088821176648433 -0.5143594831915055 0.7538234116189816 -0.4088821176648433 0.1704962860405792 -0.2412262551434388 0.9553747486069755 -0.1704962860405792 0.2412262551434388 -0.9553747486069755 -0.03773370260261522 -0.9621258501780877 -0.2699815106761744 0.03773370260261522 0.9621258501780877 0.2699815106761744 0.4358498792710058 -0.4621916880777535 0.7722782699333747 -0.4358498792710058 0.4621916880777535 -0.7722782699333747 0.01286360673163864 -0.9648903405124554 -0.2623378707080084 -0.01286360673163864 0.9648903405124554 0.2623378707080084 0.3481882744279781 -0.2117944960202763 0.9131856421376676 -0.3481882744279781 0.2117944960202763 -0.9131856421376676 -0.1087425189090441 -0.9469588072574531 -0.3023972254152774 0.1087425189090441 0.9469588072574531 0.3023972254152774 0.109509698468203 -0.9934846561267767 0.0315573126559204 -0.109509698468203 0.9934846561267767 -0.0315573126559204 -0.06105980458301809 -0.8594249915838784 -0.507602584809548 0.06105980458301809 0.8594249915838784 0.507602584809548 4.131844054970268e-016 -0.7503520187156 -0.6610384618230805 -4.131844054970268e-016 0.7503520187156 0.6610384618230805 0.006610566334737722 -0.7456954882692445 -0.6662541100718458 2.234526453262779e-016 -0.7503520187156001 -0.6610384618230801 -2.234526453262779e-016 0.7503520187156001 0.6610384618230801 -0.006610566334737722 0.7456954882692445 0.6662541100718458 0.02829381865111946 -0.7299337328155146 -0.6829320650871116 -0.02829381865111946 0.7299337328155146 0.6829320650871116</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"204\" source=\"#ID300\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID298\">\r\n                    <input semantic=\"POSITION\" source=\"#ID296\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID297\"/>\r\n                </vertices>\r\n                <triangles count=\"212\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID298\"/>\r\n                    <p>0 1 2 3 4 5 0 6 1 4 7 5 2 1 8 9 4 3 6 10 1 4 11 7 2 8 12 13 9 3 14 15 16 17 18 19 20 15 14 19 18 21 6 22 10 11 23 7 8 24 12 13 25 9 16 15 26 27 18 17 20 28 15 18 29 21 10 22 30 31 23 11 12 24 32 33 25 13 26 15 34 35 18 27 36 28 20 21 29 37 22 38 30 31 39 23 24 40 32 33 41 25 34 15 42 43 18 35 36 44 28 29 45 37 38 46 30 31 47 39 32 40 48 49 41 33 34 42 50 51 43 35 52 44 36 37 45 53 38 54 46 47 55 39 48 40 56 57 41 49 50 42 58 59 43 51 52 60 44 45 61 53 54 62 46 47 63 55 64 48 56 57 49 65 66 50 58 59 51 67 60 68 44 45 69 61 70 71 72 73 74 75 76 64 56 57 65 77 66 58 78 79 59 67 70 80 81 82 83 75 70 72 84 85 73 75 86 64 76 77 65 87 88 66 78 79 67 89 70 90 80 83 91 75 70 84 92 93 85 75 86 76 88 89 77 87 88 78 94 95 79 89 70 96 90 91 97 75 70 92 96 97 93 75 98 86 88 89 87 99 100 88 94 95 89 101 100 98 88 89 99 101 100 94 102 103 95 101 104 98 100 101 99 105 102 104 100 101 105 103 102 94 106 107 95 103 108 104 102 103 105 109 102 106 110 111 107 103 108 102 112 113 103 109 102 110 112 113 111 103 114 108 112 113 109 115 112 110 116 117 111 113 118 114 112 113 115 119 118 112 116 117 113 119 120 114 118 119 115 121 122 118 116 117 119 123 122 120 118 119 121 123 124 122 116 117 123 125 122 126 120 121 127 123 124 126 122 123 127 125 124 116 128 129 117 125 124 130 126 127 131 125 132 124 128 129 125 133 132 130 124 125 131 133 132 128 134 135 129 133 132 136 130 131 137 133 138 132 134 135 133 139 140 136 132 133 137 141 142 132 143 144 133 145 146 136 140 141 137 147 140 132 148 149 133 141 150 132 142 145 133 151 152 146 140 141 147 153 154 140 148 149 141 155 148 132 150 151 133 149 156 146 152 153 147 157 152 140 154 155 141 153 158 156 152 153 157 159 160 152 154 155 153 161 162 156 158 159 157 163 158 152 160 161 153 159 164 162 158 159 163 165 166 158 160 161 159 167 168 162 164 165 163 169 170 164 158 159 165 171 172 158 166 167 159 173 174 168 164 165 169 175 176 170 158 159 171 177 170 178 164 165 179 171 158 172 180 181 173 159 182 168 174 175 169 183 184 174 164 165 175 185 184 164 178 179 165 185 186 182 174 175 183 187 188 174 184 185 175 189 190 182 186 187 183 191 192 186 174 175 187 193 194 190 186 187 191 195 196 194 186 187 195 197 198 199 186 187 200 201 202 198 186 187 201 203</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID301\">\r\n            <mesh>\r\n                <source id=\"ID302\">\r\n                    <float_array count=\"306\" id=\"ID306\">-0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6165045499801636 1.934720396995544 -0.1188463941216469 -0.6165045499801636 1.934720396995544 -0.1188463941216469 -0.6165045499801636 1.934478163719177 -0.148460179567337 -0.6165045499801636 1.934478163719177 -0.148460179567337 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6339040398597717 1.933767676353455 -0.1080069318413734 -0.6339040398597717 1.933767676353455 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.933767676353455 -0.1592995822429657 -0.6339040398597717 1.933767676353455 -0.1592995822429657 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.690280020236969 1.923469066619873 -0.1336532384157181 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.690280020236969 1.923469066619873 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.690280020236969 1.930925488471985 -0.1040394529700279 -0.690280020236969 1.930925488471985 -0.1040394529700279 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.930925488471985 -0.1632670909166336 -0.690280020236969 1.930925488471985 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.920978307723999 -0.1080069318413734 -0.7484694719314575 1.920978307723999 -0.1080069318413734 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.920978307723999 -0.1592995822429657 -0.7484694719314575 1.920978307723999 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7658695578575134 1.920978307723999 -0.1188463941216469 -0.7658695578575134 1.920978307723999 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7658695578575134 1.920978307723999 -0.148460179567337 -0.7658695578575134 1.920978307723999 -0.148460179567337 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"102\" source=\"#ID306\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID303\">\r\n                    <float_array count=\"306\" id=\"ID307\">0.2685032900269681 0.9630576308432356 0.02063935365529308 0.4525875977984503 0.8917052376508322 0.005122056725679501 0.197574767091013 0.960017639689952 0.1983187910740314 -0.197574767091013 -0.960017639689952 -0.1983187910740314 -0.4525875977984503 -0.8917052376508322 -0.005122056725679501 -0.2685032900269681 -0.9630576308432356 -0.02063935365529308 0.6826818001107279 0.5175042953428181 0.5158826068974507 -0.6826818001107279 -0.5175042953428181 -0.5158826068974507 0.6836944016697715 0.4960176053006482 -0.5352835700422942 -0.6836944016697715 -0.4960176053006482 0.5352835700422942 0.9999982787388297 -2.764381330880746e-017 0.001855402753470593 0.9999999999992953 -1.344529174791133e-017 1.187132519731373e-006 -0.9999999999992953 1.344529174791133e-017 -1.187132519731373e-006 -0.9999982787388297 2.764381330880746e-017 -0.001855402753470593 0.04316331056239178 0.9022464637821981 0.4290550631490245 -0.04316331056239178 -0.9022464637821981 -0.4290550631490245 0.762814706200499 -2.629409797658931e-017 -0.6466171386564437 -0.762814706200499 2.629409797658931e-017 0.6466171386564437 0.1886860822774901 0.956809299814221 -0.2211640254286229 -0.1886860822774901 -0.956809299814221 0.2211640254286229 0.7628146924144519 1.553973405980757e-017 0.6466171549198531 -0.7628146924144519 -1.553973405980757e-017 -0.6466171549198531 0.2966896142403783 0.3930092177325965 0.8703556902664036 -0.2966896142403783 -0.3930092177325965 -0.8703556902664036 0.3190228087349438 -3.247041946735389e-017 -0.9477470377199115 -0.3190228087349438 3.247041946735389e-017 0.9477470377199115 0.3015186508611372 0.4026945547667087 -0.8642474175513177 -0.3015186508611372 -0.4026945547667087 0.8642474175513177 -0.06798932660550203 -0.9976860485482023 -6.586060030642062e-008 0.1719351211168655 -0.9851082753314626 1.5342658739515e-009 -0.07003507829713505 -0.9973648774176054 -0.01893116746740961 0.07003507829713505 0.9973648774176054 0.01893116746740961 -0.1719351211168655 0.9851082753314626 -1.5342658739515e-009 0.06798932660550203 0.9976860485482023 6.586060030642062e-008 -0.07003508202665411 -0.997364879841995 0.0189310259437501 0.07003508202665411 0.997364879841995 -0.0189310259437501 -0.09074012681344057 0.8894532850476279 0.4479275422474753 0.09074012681344057 -0.8894532850476279 -0.4479275422474753 -0.07444730486362687 -0.9972153156526353 -0.004383266630817152 0.07444730486362687 0.9972153156526353 0.004383266630817152 0.05077249430285804 0.904499556128183 -0.4234415033817376 -0.05077249430285804 -0.904499556128183 0.4234415033817376 -0.0744472981544605 -0.9972153161907268 0.004383258163692835 0.0744472981544605 0.9972153161907268 -0.004383258163692835 0.3190237254244892 -3.387300576113519e-007 0.9477467291508663 -0.3190237254244892 3.387300576113519e-007 -0.9477467291508663 -0.03242831273582751 0.3315141411543863 0.9428927716064944 0.03242831273582751 -0.3315141411543863 -0.9428927716064944 0.1684288053257849 -0.9857138213175917 3.261995871790642e-017 -0.1684288053257849 0.9857138213175917 -3.261995871790642e-017 -0.005344422354575714 2.736307797239866e-016 -0.9999857184728669 0.005344422354575714 -2.736307797239866e-016 0.9999857184728669 -0.03778745893588001 0.3316848763063766 -0.9426331475058539 0.03778745893588001 -0.3316848763063766 0.9426331475058539 0.1684287910083168 -0.9857138237640154 -7.29699613754242e-018 -0.1684287910083168 0.9857138237640154 7.29699613754242e-018 -0.2484756132977017 0.8848234007634721 0.3941413693812095 0.2484756132977017 -0.8848234007634721 -0.3941413693812095 0.4283917724313258 -0.8995378958168598 -0.08551060345081933 -0.4283917724313258 0.8995378958168598 0.08551060345081933 -0.09662107353385505 0.8889262837349113 -0.4477437104353393 0.09662107353385505 -0.8889262837349113 0.4477437104353393 -0.005344410133169654 -7.18550191482743e-006 0.9999857185123682 0.005344410133169654 7.18550191482743e-006 -0.9999857185123682 0.428391672085077 -0.8995379593972396 0.08551043732552045 -0.428391672085077 0.8995379593972396 -0.08551043732552045 -0.3421974281014101 0.3781955923776879 0.8601563893309577 0.3421974281014101 -0.3781955923776879 -0.8601563893309577 0.4241540399827718 -0.9051261212181009 -0.02898370326526637 -0.4241540399827718 0.9051261212181009 0.02898370326526637 -0.370286485472462 -1.499824138001414e-018 -0.9289176059675327 0.370286485472462 1.499824138001414e-018 0.9289176059675327 -0.3291557229804519 0.3380558114720414 -0.8816885948900528 0.3291557229804519 -0.3380558114720414 0.8816885948900528 -0.3702874190200642 1.094756924120515e-017 0.9289172338348878 0.3702874190200642 -1.094756924120515e-017 -0.9289172338348878 0.4241539996507208 -0.9051261422282078 0.02898363737315737 -0.4241539996507208 0.9051261422282078 -0.02898363737315737 -0.3251796430928072 0.9178164481615403 0.2277524252388309 0.3251796430928072 -0.9178164481615403 -0.2277524252388309 0.4199582781990328 -0.9075434119490392 3.99096900070165e-009 -0.4199582781990328 0.9075434119490392 -3.99096900070165e-009 -0.8007715958187883 -7.155616565122561e-018 -0.5989698250578498 0.8007715958187883 7.155616565122561e-018 0.5989698250578498 -0.2265429325203143 0.8870890848101631 -0.4021831116988422 0.2265429325203143 -0.8870890848101631 0.4021831116988422 -0.6796599789034551 0.4735252770862831 0.5602107862557749 0.6796599789034551 -0.4735252770862831 -0.5602107862557749 -0.8007712843829574 6.359232916259598e-018 0.5989702414207808 0.8007712843829574 -6.359232916259598e-018 -0.5989702414207808 -0.9999999999994651 -1.645457276881922e-017 1.034295879815327e-006 -0.6891858043226757 0.4665554888991755 -0.5543905689116273 0.6891858043226757 -0.4665554888991755 0.5543905689116273 0.9999999999994651 1.645457276881922e-017 -1.034295879815327e-006 -0.9999999999992956 4.946327360675922e-018 1.187017885930274e-006 0.9999999999992956 -4.946327360675922e-018 -1.187017885930274e-006 -0.3230544891964065 0.9463803659259006 8.550144065327416e-008 0.3230544891964065 -0.9463803659259006 -8.550144065327416e-008 -0.3136885055110143 0.9395308213807142 -0.1374094508610924 0.3136885055110143 -0.9395308213807142 0.1374094508610924 -0.4168041023770971 0.9089963367591745 1.538922139574083e-007 0.4168041023770971 -0.9089963367591745 -1.538922139574083e-007</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"102\" source=\"#ID307\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID305\">\r\n                    <float_array count=\"354\" id=\"ID308\">14.74662494168064 -3.24670831878189 14.50632766822221 -3.24670831878189 14.78792300082874 -3.159258918565324 13.820349457531 -1.340223392086619 13.53790646303778 -1.425964394727856 13.60571068596005 -1.309425604163282 14.74662494168064 -0.2015677638513016 14.57252871304809 -0.31838760226104 14.50632766822222 -0.2015677638513016 19.3234646320343 0.9305684636762152 19.18007493019104 0.9305684636762152 19.34720396995544 1.05736601641011 12.39923564859679 -6.827449107672569 12.18558988491392 -6.79263974045073 12.520128137449 -6.756504929536055 19.18007493019104 -2.98907029529415 19.3234646320343 -2.862272042610564 19.34478163719177 -2.98907029529415 13.58985134138688 0.913600590386324 13.37428921549126 0.8823677125805266 13.54688959584556 1.000553205744748 19.18007493019104 0.930568463676214 19.18007493019104 1.057366016410109 19.34720396995544 1.057366016410109 19.18007493019104 -2.862272042610565 19.3234646320343 -2.862272042610565 12.71867148612623 -7.495234252113192 12.38442227660791 -7.532988091064745 12.54477580412482 -7.432242123407382 19.34478163719177 -4.733932057985893 19.19373035430908 -4.895195827090482 19.18007493019104 -4.733932057985893 12.33878138412339 5.382247156809008 12.17677293324015 5.481214797596579 12.3912040801708 5.516942167621013 -7.391282448218876 -1.48143095627047 -8.194581123679953 -1.48143095627047 -7.454820262563747 -1.364900655355888 19.18007493019104 3.622039261057927 19.33767676353455 3.783303278093615 19.34720396995544 3.622039261057927 -7.391282448218877 -0.6204842998191036 -7.454820262563748 -0.7370153623541556 -8.194581123679953 -0.6204842998191036 7.481154949549515 -12.79431255424122 7.067416291608053 -12.83379782656899 6.915524424990057 -12.74212319853608 -7.584380995427704 -1.247007601423149 -7.758909944543412 -1.332278807745487 -8.324154097693995 -1.130524639056481 19.33767676353455 -4.895195827090483 19.19373035430908 -4.895195827090483 19.34478163719177 -4.733932057985895 13.04180262783345 5.175172548692535 12.86707806501732 5.11361630106685 12.92234562026518 5.247605683200089 -7.584380812078765 -0.8557737698764369 -8.324153914352896 -0.9722559702773169 -7.758909761188733 -0.7705020946637685 19.19373035430908 3.783303278093616 19.33767676353455 3.783303278093616 19.18007493019104 3.622039261057928 7.648027143859386 -12.25948167563143 7.65188684485852 -12.35890188523497 7.085797861905361 -12.30988511571698 -7.713240890911518 -1.253156713644663 -8.278486734327558 -1.284367781877518 -8.278486734327558 -1.051405475536982 19.33767676353455 -5.062382866966574 19.23469066619873 -5.506970809153192 19.19373035430908 -5.062382866966574 7.367540623698635 11.41985850957108 7.776061332728784 11.27693054705916 7.214183829069861 11.32970587279734 -7.713240890911518 -0.8496545304854714 -8.278486734327558 -1.051405475536983 -8.278486734327558 -0.8184441655874255 19.19373035430909 4.914761442931146 19.30925488471985 5.359349368659267 19.33767676353455 4.914761442931146 2.285092063151581 -12.97430384402288 2.693655733061326 -13.10863367222362 2.262290508523929 -13.0721396923397 1.331404262185989 -1.284367781877517 0.6969924656801174 -1.253156713644663 1.331404262185989 -1.051405475536982 19.30925488471986 -5.506970809153168 19.23469066619874 -5.506970809153168 19.33767676353456 -5.06238286696655 7.304855699042223 11.14301553668178 7.302790777804189 11.0435620935058 6.890760040675517 11.18011256878542 19.233906454615 5.361065771843718 19.30847067265508 5.361072451178341 19.19301018033664 4.916474230813738 1.331404262185988 -1.051405475536982 0.6969924656801174 -0.8496545304854711 1.331404262185988 -0.8184441655874253 2.304331396739664 -13.42647922400892 2.121104136094343 -13.5156493816709 1.71639695895628 -13.37427954811462 1.544746040377931 -2.885022299798933 1.345972632848547 -2.799301999221842 2.178608611574747 -2.682205560965344 -19.30925488471981 5.330255816417758 -18.98195147514339 5.789075628693167 -19.23469066619869 5.330255816417758 1.845480971048728 11.74717148847956 2.458561636177985 11.6990816018842 1.870243297278053 11.64963089452367 -19.23549984096779 -5.471528107735983 -19.21066047540473 -5.930350160969313 -19.31006405897643 -5.471521214608823 -18.98195147514343 -5.932117994536131 -19.20978307723999 -5.932117994536131 -19.23469066619873 -5.473298230104304 2.178605235350849 0.5904376500551031 1.345969254092779 0.7075333192271444 1.544742659768699 0.7932540888905315 -3.959798216985414 -7.753429402214679 -4.087096411535118 -7.683919229159401 -3.885150574633056 -7.624847108754293 1.813176726206721 -1.081169652224882 0.9804013739520012 -1.197651123867453 0.9101107092265193 -1.081169652224882 -19.20978307723999 4.334972713557193 -18.88520956039429 4.496240462481415 -18.98195147514343 4.334972713557193 -19.20978307723999 5.789075628693066 -18.98195147514344 5.789075628693066 -19.30925488471985 5.330255816417655 2.481569112179163 12.40655007166253 2.66317520668856 12.31535119031279 2.050599478808898 12.36727062188914 -18.98195147514343 -5.446823632817054 -19.20978307723999 -5.608091629666255 -19.20978307723999 -5.446823632817054 -18.88520956039429 -5.608091629666257 -19.20978307723999 -5.608091629666257 -18.98195147514343 -5.446823632817055 1.813176726206721 -1.021637471001535 0.9101107092265193 -1.021637471001535 0.9804013739520012 -0.9051567613036898 0.367684899701497 -8.845277138547667 0.145718255611641 -8.880676763911682 0.2049359424005293 -8.74721646374895 -18.85544061660767 1.434091526799194 -18.88520956039429 1.307296052883267 -19.20978307723999 1.307296052883267 -19.20978307723999 4.496240462481416 -18.88520956039429 4.496240462481416 -19.20978307723999 4.334972713557194 -2.117223969310845 8.529395214753574 -2.31561130205695 8.595508854169639 -1.962439484181925 8.635134824541277 -19.20978307723999 -3.239066383758993 -18.88520956039429 -3.239066383758993 -19.20978307723999 -3.365861157709891 -18.85544061660767 -3.365861157709891 -1.225341157779861 -3.905255980985561 -1.267926982609724 -3.818192018720132 -1.044961102637988 -3.786919029566556 -19.20978307723999 1.434091526799194 -18.85544061660767 1.434091526799194 -19.20978307723999 1.307296052883267 -0.806110026159208 2.735666626985071 -1.160395921178498 2.702765752179635 -1.02897991537746 2.767360336190219 -0.9871177962192335 -3.90522116068271 -1.225379355844962 -3.905221160682709 -1.044999251680502 -3.786884255506705 -1.044972846114296 1.717034101611527 -1.26793873007405 1.748307188552936 -0.9870913567213968 1.835371746509942 -0.9871177962192357 1.835423300068112 -1.267965144607175 1.748358692275823 -1.225379355844964 1.835423300068112</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"177\" source=\"#ID308\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID304\">\r\n                    <input semantic=\"POSITION\" source=\"#ID302\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID303\"/>\r\n                </vertices>\r\n                <triangles count=\"60\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID304\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID305\"/>\r\n                    <p>0 0 1 1 2 2 2 3 1 4 6 5 0 6 8 7 1 8 10 9 11 10 6 11 2 12 6 13 14 14 16 15 10 16 8 17 18 18 8 19 0 20 11 21 20 22 6 23 16 15 11 24 10 25 14 26 6 27 22 28 8 29 24 30 16 31 26 32 8 33 18 34 28 35 29 36 30 37 20 38 22 39 6 40 28 41 34 42 29 43 36 44 14 45 22 46 34 47 38 48 29 49 26 50 24 51 8 52 40 53 26 54 18 55 30 56 29 57 42 58 44 59 22 60 20 61 46 62 36 63 22 64 38 65 48 66 29 67 26 68 50 69 24 70 40 71 52 72 26 73 42 74 29 75 54 76 44 77 46 78 22 79 46 80 56 81 36 82 48 83 58 84 29 85 52 86 50 87 26 88 60 89 52 90 40 91 62 92 46 93 44 94 29 95 64 96 54 97 66 98 56 99 46 100 58 101 68 102 29 103 52 104 70 105 50 106 60 107 72 108 52 109 62 110 66 111 46 112 74 113 66 114 62 115 29 116 76 117 64 118 78 119 56 120 66 121 29 122 68 123 80 124 72 125 82 126 70 127 72 128 70 129 52 130 84 131 72 132 60 133 74 134 86 135 66 136 88 137 86 138 74 139 29 140 80 141 76 142 86 143 78 144 66 145 90 146 82 147 91 148 91 149 82 150 72 151 72 152 84 153 91 154 86 155 88 156 94 157 88 156 90 158 94 157 96 159 78 160 86 161 94 162 90 163 91 164 91 165 84 166 98 167 100 168 96 169 86 170 91 171 98 172 100 173 100 174 98 175 96 176</p>\r\n                </triangles>\r\n                <triangles count=\"60\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID304\"/>\r\n                    <p>3 4 5 7 4 3 4 9 5 7 12 13 15 7 3 9 13 17 5 9 19 7 21 12 13 12 17 23 7 15 17 25 9 19 9 27 31 32 33 7 23 21 32 35 33 23 15 37 32 39 35 9 25 27 19 27 41 43 32 31 21 23 45 23 37 47 32 49 39 25 51 27 27 53 41 55 32 43 23 47 45 37 57 47 32 59 49 27 51 53 41 53 61 45 47 63 55 65 32 47 57 67 32 69 59 51 71 53 53 73 61 47 67 63 63 67 75 65 77 32 67 57 79 81 69 32 71 83 73 53 71 73 61 73 85 67 87 75 75 87 89 77 81 32 67 79 87 92 83 93 73 83 92 92 85 73 95 89 87 95 93 89 87 79 97 92 93 95 99 85 92 87 97 101 101 99 92 97 99 101</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID309\">\r\n            <mesh>\r\n                <source id=\"ID310\">\r\n                    <float_array count=\"78\" id=\"ID313\">-0.690280020236969 1.940856695175171 -0.1336532384157181 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.690280020236969 1.940856695175171 -0.1336532384157181 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7458943724632263 1.930909156799316 -0.1445471495389938</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID313\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID311\">\r\n                    <float_array count=\"78\" id=\"ID314\">-0.1092906432207105 0.9940098366235635 -7.695194953645212e-009 0.2685032900269681 0.9630576308432356 0.02063935365529308 0.197574767091013 0.960017639689952 0.1983187910740314 -0.197574767091013 -0.960017639689952 -0.1983187910740314 -0.2685032900269681 -0.9630576308432356 -0.02063935365529308 0.1092906432207105 -0.9940098366235635 7.695194953645212e-009 0.04316331056239178 0.9022464637821981 0.4290550631490245 -0.04316331056239178 -0.9022464637821981 -0.4290550631490245 0.1886860822774901 0.956809299814221 -0.2211640254286229 -0.1886860822774901 -0.956809299814221 0.2211640254286229 -0.09074012681344057 0.8894532850476279 0.4479275422474753 0.09074012681344057 -0.8894532850476279 -0.4479275422474753 0.05077249430285804 0.904499556128183 -0.4234415033817376 -0.05077249430285804 -0.904499556128183 0.4234415033817376 -0.2484756132977017 0.8848234007634721 0.3941413693812095 0.2484756132977017 -0.8848234007634721 -0.3941413693812095 -0.09662107353385505 0.8889262837349113 -0.4477437104353393 0.09662107353385505 -0.8889262837349113 0.4477437104353393 -0.3251796430928072 0.9178164481615403 0.2277524252388309 0.3251796430928072 -0.9178164481615403 -0.2277524252388309 -0.2265429325203143 0.8870890848101631 -0.4021831116988422 0.2265429325203143 -0.8870890848101631 0.4021831116988422 -0.3230544891964065 0.9463803659259006 8.550144065327416e-008 0.3230544891964065 -0.9463803659259006 -8.550144065327416e-008 -0.3136885055110143 0.9395308213807142 -0.1374094508610924 0.3136885055110143 -0.9395308213807142 0.1374094508610924</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID314\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID312\">\r\n                    <input semantic=\"POSITION\" source=\"#ID310\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID311\"/>\r\n                </vertices>\r\n                <triangles count=\"12\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID312\"/>\r\n                    <p>0 1 2 0 2 6 0 8 1 0 6 10 12 8 0 14 0 10 16 12 0 18 0 14 20 16 0 22 0 18 24 20 0 22 24 0</p>\r\n                </triangles>\r\n                <triangles count=\"12\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID312\"/>\r\n                    <p>3 4 5 7 3 5 4 9 5 11 7 5 5 9 13 11 5 15 5 13 17 15 5 19 5 17 21 19 5 23 5 21 25 5 25 23</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID315\">\r\n            <mesh>\r\n                <source id=\"ID316\">\r\n                    <float_array count=\"78\" id=\"ID320\">-0.7051355838775635 1.922352433204651 0.230619490146637 -0.6617981791496277 1.832582235336304 0.1425205767154694 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6617981791496277 1.832582235336304 0.1425205767154694 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID320\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID317\">\r\n                    <float_array count=\"78\" id=\"ID321\">0.2454983722499582 0.7367784293995229 -0.6299905516705731 -0.01355272467147211 0.9997780551212078 0.01612960483195176 -0.0255551309807017 0.7356609327778424 -0.6768677324743689 0.0255551309807017 -0.7356609327778424 0.6768677324743689 0.01355272467147211 -0.9997780551212078 -0.01612960483195176 -0.2454983722499582 -0.7367784293995229 0.6299905516705731 0.5063254148146489 0.7555293494449054 -0.4157041934358274 -0.5063254148146489 -0.7555293494449054 0.4157041934358274 -0.3613240372427959 0.7363722211506463 -0.5720147655683642 0.3613240372427959 -0.7363722211506463 0.5720147655683642 0.6680473200367499 0.7436922615332333 0.02519123512853581 -0.6680473200367499 -0.7436922615332333 -0.02519123512853581 -0.6179795511991585 0.7228706523012989 -0.3091266639117071 0.6179795511991585 -0.7228706523012989 0.3091266639117071 0.5707110805360036 0.7192114718924991 0.3962621875118188 -0.5707110805360036 -0.7192114718924991 -0.3962621875118188 -0.6999537629947992 0.7141776562948755 0.003873618279981795 0.6999537629947992 -0.7141776562948755 -0.003873618279981795 0.3273966486538866 0.7209092289414518 0.6108202011044208 -0.3273966486538866 -0.7209092289414518 -0.6108202011044208 -0.6309130786522602 0.7132712578771855 0.3052749578197078 0.6309130786522602 -0.7132712578771855 -0.3052749578197078 -0.01337508127704687 0.7218060427142515 0.6919661436096599 0.01337508127704687 -0.7218060427142515 -0.6919661436096599 -0.3801739812245751 0.7237156406791439 0.5759369891196715 0.3801739812245751 -0.7237156406791439 -0.5759369891196715</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID321\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID319\">\r\n                    <float_array count=\"72\" id=\"ID322\">10.62254496526318 10.58597901468444 10.02435287981894 9.65120515883069 10.19367564998362 10.72394999514477 14.96110814048428 7.718424838868263 13.8945885778913 7.112516974760296 14.67366561987308 7.960827729676313 1.933627046348441 10.97743010008375 1.202271169615731 11.89978789719242 1.696142772314045 12.04214687284743 18.3961081709604 2.641137417643054 17.11711045647631 2.616524038178354 18.26468471539078 3.122552538824543 -5.548728912979404 7.65138727776807 -6.785922521949193 8.084323930772092 -6.52071943268769 8.424102862944066 18.38599620971365 -1.222997101699112 17.22446535028297 -0.8189539529047211 18.50345185026655 -0.7939825504753987 -8.05029492928022 3.289034660604903 -9.425405248137516 3.308304911706402 -9.309935028138126 3.679868275081967 16.94411386082575 -4.063997537821977 16.69445513940783 -4.360936482954553 15.81224755184468 -3.610839220933176 -8.149844598314363 -1.106574484923794 -9.448921067989758 -1.455600782491445 -9.524954727489204 -1.087295859215323 11.48831525242079 -8.75386128287732 11.04736864805656 -8.918917385485216 10.83216194436042 -7.871902693084232 -7.021471257962126 -6.293757665802318 -7.322809907298218 -5.944937819296826 -6.040699822826644 -5.559035419713093 1.441548375341257 -10.58282918537751 0.9523591449902585 -10.43376135329469 1.690367232773703 -9.540434004979337</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"36\" source=\"#ID322\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID318\">\r\n                    <input semantic=\"POSITION\" source=\"#ID316\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID317\"/>\r\n                </vertices>\r\n                <triangles count=\"12\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID318\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID319\"/>\r\n                    <p>0 0 1 1 2 2 6 3 1 4 0 5 1 6 8 7 2 8 10 9 1 10 6 11 1 12 12 13 8 14 14 15 1 16 10 17 1 18 16 19 12 20 14 21 18 22 1 23 1 24 20 25 16 26 18 27 22 28 1 29 24 30 20 31 1 32 22 33 24 34 1 35</p>\r\n                </triangles>\r\n                <triangles count=\"12\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID318\"/>\r\n                    <p>3 4 5 5 4 7 3 9 4 7 4 11 9 13 4 11 4 15 13 17 4 4 19 15 17 21 4 4 23 19 4 21 25 4 25 23</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID330\">\r\n            <mesh>\r\n                <source id=\"ID331\">\r\n                    <float_array count=\"384\" id=\"ID335\">-0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"128\" source=\"#ID335\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID332\">\r\n                    <float_array count=\"384\" id=\"ID336\">-0.902466236746562 0.1795708561871048 0.3915469309555731 -0.9024665938061016 0.2869970887591513 0.3212268950567254 -0.9024662367466551 0.1795709440136923 0.3915468906764066 -0.9024665938125612 0.2869979446047657 0.3212261303894707 0.9024665938125612 -0.2869979446047657 -0.3212261303894707 0.902466236746562 -0.1795708561871048 -0.3915469309555731 0.9024665938061016 -0.2869970887591513 -0.3212268950567254 0.9024662367466551 -0.1795709440136923 -0.3915468906764066 -0.9024668903167546 0.05618340562307148 0.4270795438962162 -0.9024668903001765 0.05618563690832937 0.4270792503940392 0.9024668903167546 -0.05618340562307148 -0.4270795438962162 0.9024668903001765 -0.05618563690832937 -0.4270792503940392 -0.9024690894613248 0.3689289867002785 0.2223531995253341 -0.902469089464752 0.3689290774500262 0.2223530489391454 0.902469089464752 -0.3689290774500262 -0.2223530489391454 0.9024690894613248 -0.3689289867002785 -0.2223531995253341 -0.9999555776890411 0.006279922634141023 0.007028884711349623 -0.9999999999999999 -3.944088456120249e-009 1.649036539061831e-008 -0.9999555775055583 0.003929272324182818 0.008567603779806768 0.9999555775055583 -0.003929272324182818 -0.008567603779806768 0.9999999999999999 3.944088456120249e-009 -1.649036539061831e-008 0.9999555776890411 -0.006279922634141023 -0.007028884711349623 -0.9024674946036678 -0.07219701394895309 0.4246645880699658 -0.9024674946038228 -0.07219707389978321 0.424664577877421 0.9024674946036678 0.07219701394895309 -0.4246645880699658 0.9024674946038228 0.07219707389978321 -0.424664577877421 -0.9999555778310314 0.001229424558499158 0.009345099243102516 0.9999555778310314 -0.001229424558499158 -0.009345099243102516 -0.9024695789502093 0.4180784961390021 0.1037257448061106 -0.9024695789497297 0.4180784539420578 0.1037259148897536 0.9024695789497297 -0.4180784539420578 -0.1037259148897536 0.9024695789502093 -0.4180784961390021 -0.1037257448061106 -0.9999555784085298 0.008072791231372301 0.004865311027822405 0.9999555784085298 -0.008072791231372301 -0.004865311027822405 -0.9024683401951699 -0.1941614071388285 0.3845155951625956 -0.9024683401956324 -0.1941614450021188 0.3845155760424143 0.9024683401951699 0.1941614071388285 -0.3845155951625956 0.9024683401956324 0.1941614450021188 -0.3845155760424143 -0.9999555778376283 -0.001579793115735819 0.009292287400107886 0.9999555778376283 0.001579793115735819 -0.009292287400107886 -0.9024695599145399 0.4300784014704719 -0.02410937610681846 -0.9024695599118074 0.4300783861399769 -0.02410964968268119 0.9024695599118074 -0.4300783861399769 0.02410964968268119 0.9024695599145399 -0.4300784014704719 0.02410937610681846 -0.9999555771365172 0.009148344649372987 0.002269701247122971 0.9999555771365172 -0.009148344649372987 -0.002269701247122971 -0.9024699496610145 -0.298869595953435 0.3102014741639317 -0.9024699496784561 -0.298870415416041 0.3102006845840415 0.9024699496610145 0.298869595953435 -0.3102014741639317 0.9024699496784561 0.298870415416041 -0.3102006845840415 -0.9999555776015303 -0.004248627287482877 0.008413797582663555 0.9999555776015303 0.004248627287482877 -0.008413797582663555 -0.9024682165406183 0.4038669616350336 -0.1498085292421026 -0.902468216543048 0.4038670647292976 -0.1498082512966218 0.9024682165406183 -0.4038669616350336 0.1498085292421026 0.902468216543048 -0.4038670647292976 0.1498082512966218 -0.999955577745935 0.009410860694318868 -0.0005274806018676984 0.999955577745935 -0.009410860694318868 0.0005274806018676984 -0.9024707715227106 -0.3770220929027301 0.2083287018402623 -0.9024707715194342 -0.3770227739999134 0.2083274692366014 0.9024707715227106 0.3770220929027301 -0.2083287018402623 0.9024707715194342 0.3770227739999134 -0.2083274692366014 -0.9999555770671936 -0.006539895081909356 0.006787758432154178 0.9999555770671936 0.006539895081909356 -0.006787758432154178 -0.9024668466034375 0.3417689209700612 -0.2621976266875958 -0.9024668466014079 0.3417688417781226 -0.262197729919524 0.9024668466034375 -0.3417689209700612 0.2621976266875958 0.9024668466014079 -0.3417688417781226 0.262197729919524 -0.9999555775200822 0.008837293966907273 -0.003277990515714328 0.9999555775200822 -0.008837293966907273 0.003277990515714328 -0.902469637953096 -0.4216810734117544 0.08794103080541284 -0.9024696379339142 -0.4216812607433428 0.08794013273434857 0.902469637953096 0.4216810734117544 -0.08794103080541284 0.9024696379339142 0.4216812607433428 -0.08794013273434857 -0.9999555769430629 -0.008249995118261777 0.004558697293603463 0.9999555769430629 0.008249995118261777 -0.004558697293603463 -0.902465509489143 0.2493039587819413 -0.3512884004890483 -0.9024655094892364 0.2493038174778161 -0.3512885007701228 0.902465509489143 -0.2493039587819413 0.3512884004890483 0.9024655094892364 -0.2493038174778161 0.3512885007701228 -0.9999555779597974 0.00747843989793408 -0.005737163391514847 0.9999555779597974 -0.00747843989793408 0.005737163391514847 -0.9024672758692717 -0.4288731719288677 -0.04025690480859202 -0.9024672758646049 -0.4288730763736164 -0.04025792288916159 0.9024672758692717 0.4288731719288677 0.04025690480859202 0.9024672758646049 0.4288730763736164 0.04025792288916159 -0.9999555776764442 -0.009227086398497142 0.001924461057970694 0.9999555776764442 0.009227086398497142 -0.001924461057970694 -0.9024664086806516 0.1346861044661979 -0.4091626015006348 -0.9024664086756207 0.134686627996427 -0.4091624291782907 0.9024664086806516 -0.1346861044661979 0.4091626015006348 0.9024664086756207 -0.134686627996427 0.4091624291782907 -0.9999555777995033 0.005455079717335024 -0.007686646403922885 0.9999555777995033 -0.005455079717335024 0.007686646403922885 -0.902467892340141 -0.3979517141178801 -0.1648821898380311 -0.9024678923401798 -0.3979516028754097 -0.1648824583270336 0.9024678923401798 0.3979516028754097 0.1648824583270336 0.902467892340141 0.3979517141178801 0.1648821898380311 -0.9999555778851129 -0.009384369994094055 -0.000880827034032532 0.9999555778851129 0.009384369994094055 0.000880827034032532 -0.9024663791541479 0.008097340179231503 -0.430684185428747 -0.9024663791250542 0.008094825123542416 -0.4306842327681999 0.9024663791541479 -0.008097340179231503 0.430684185428747 0.9024663791250542 -0.008094825123542416 0.4306842327681999 -0.9999555777991002 0.002947080780235639 -0.008953052180265634 0.9999555777991002 -0.002947080780235639 0.008953052180265634 -0.9024662331196897 -0.3316729654395058 -0.2748594951522004 -0.9024662331163754 -0.3316728008946313 -0.2748596937192685 0.9024662331163754 0.3316728008946313 0.2748596937192685 0.9024662331196897 0.3316729654395058 0.2748594951522004 -0.999955578177709 -0.008707751861328623 -0.003607870397508076 0.999955578177709 0.008707751861328623 0.003607870397508076 -0.9024648168310505 -0.1192080340211159 -0.4139404534554687 -0.9024648168337509 -0.1192074838149737 -0.4139406118994938 0.9024648168310505 0.1192080340211159 0.4139404534554687 0.9024648168337509 0.1192074838149737 0.4139406118994938 -0.9999555778745281 0.0001771432880129035 -0.009423953410019359 0.9999555778745281 -0.0001771432880129035 0.009423953410019359 -0.902465654171666 -0.2359217875784709 -0.3604117828072296 -0.9024656541724766 -0.2359218880318137 -0.3604117170494711 0.9024656541724766 0.2359218880318137 0.3604117170494711 0.902465654171666 0.2359217875784709 0.3604117828072296 -0.9999555777101306 -0.007257512103960586 -0.006014243465287442 0.9999555777101306 0.007257512103960586 0.006014243465287442 -0.9999555776620278 -0.002608402576862527 -0.009057534907320045 0.9999555776620278 0.002608402576862527 0.009057534907320045 -0.9999555782419665 -0.005162296496035368 -0.007886205530005717 0.9999555782419665 0.005162296496035368 0.007886205530005717</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"128\" source=\"#ID336\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID334\">\r\n                    <float_array count=\"294\" id=\"ID337\">0.3968896729741346 0.1922852666439943 0.4737327008967246 -0.9152355322345628 0.9630262887515753 -0.6354626856147748 -0.3524052240098752 -0.2361568945663559 0.4655388858093918 0.08953581466919515 0.09695620062060414 -0.9810664844640712 0.6730670627304097 -0.8361327489468616 -0.4167537122269166 -0.1324198059202896 0.2973352684969716 0.2683873916988639 0.7882870625951499 -0.7713646321021612 1.150086384430147 -0.3900178469634608 -0.2567247963027225 -0.31560409935685 -1.289966888573064 1.118085413747316 0.06212354191532857 -0.07234147090675236 -0.783870346512475 1.378704611404 -0.4367617780734336 -0.01462412283998805 0.3039367921445285 -0.9584067804719864 0.4893324111284635 -0.02983363233461241 -0.3008224430983176 -0.9484756688791239 -0.8016174477820905 1.372301469794169 0.04433562663634652 -0.07875933781474324 -0.2203908618967485 1.503989911589727 0.1809070857644482 0.3155180012112068 1.022592991639205 -0.5743581365222055 1.234023150294384 -0.1285484832020004 -0.1429120515214738 -0.367198117649849 -1.66136548078844 0.7619376860652442 0.07671628909398423 -0.06208436965356513 -1.275396677288614 1.12832667461258 -0.4073515623064179 0.1011264290438674 -0.09476487502684913 -0.9804405628471385 0.4626568454837426 -0.1490324395691673 -0.6628716918210396 -0.8170859861489843 -0.2397426200746382 1.50198664557768 0.02493089743164573 -0.08076808610367456 0.3650414996825432 1.493042349004655 0.05736325230823958 0.3346473762187736 1.17267479942198 -0.3439402612969316 1.223643632931941 0.1302055707804858 -0.02066572129329647 -0.3914599007726098 -1.882760478217731 0.3355170423070947 0.08682001596138418 -0.04889598984901968 -1.651269230232574 0.7751163069047897 -0.3353501529221609 0.1995466050261453 -0.4668875889383237 -0.9047897006971836 0.3922070304645184 -0.2514821593426724 -0.9419647060013334 -0.6102700701630079 0.005635596625816379 -0.07818806575251706 0.9203364240227525 1.346830328258524 0.3457982769905845 1.495615404073835 1.126355299807839 0.3752155678757479 0.1040111679385125 -0.388637340607042 1.238011217856225 -0.09244888651659929 -0.06697561493530457 0.3275468783499481 -1.93459673056012 -0.123302009428372 0.09153118311425376 -0.03395832490335624 -1.878050069741289 0.3504523016984736 -0.2344980136134975 0.272067017744716 -0.7734592826352205 -0.7528807175430338 0.2920443195803396 -0.3274591628500121 -1.117289405717435 -0.3613891006095253 -0.01183525826232684 -0.07124871822464581 1.39616406775141 1.078353125365281 0.9029042283172811 1.35375431886067 0.9447253547904824 0.5959672029532446 0.2257787374954082 -0.3581771099131729 1.214189184550729 0.169958907902574 -0.186897061406765 0.2942037124704471 -1.93569205005432 -0.1079301547813531 -1.812203419199725 -0.5737500453082663 0.09043585409260579 -0.01858633654730853 -0.1179073442473178 0.3167816077142103 -0.9983469950028587 -0.5495662572713074 0.1755912440477331 -0.3743751425856143 -1.190013434193229 -0.09824780362384109 -0.02592837582048213 -0.06056746696411634 1.75026303628513 0.7114738979672752 1.382091246066081 1.089018993299208 0.6794575272154855 0.7773668085625854 0.3372907202383119 -0.2986409217881123 1.092513136402134 0.4297375884811659 -0.2952586744430266 0.2337084769733447 -1.819006096267833 -0.5593221080025462 -1.526489466348473 -0.9758143642852514 0.08363089132390443 -0.004153551560189934 0.005430313511846641 0.3347777810011712 -1.13847441899684 -0.3136789370305894 0.05211876781394509 -0.3929897756725005 -1.168978557164991 0.1615496775993526 -0.03539234262457076 -0.04709359816704189 1.951177325817038 0.2788063115482746 1.740805216807092 0.7249390145054863 0.3383174364586705 0.8966761424705388 0.4270405228667517 -0.2102904844304112 0.8659105981995169 0.6639631861579365 -0.3809160440027784 0.146093917292971 -1.538389610930159 -0.9636106058033177 -1.102793304223511 -1.293774310216109 0.07171849013542153 0.008062775638568245 -1.060803453390981 0.4063081240514468 -0.07222633956791902 -0.3845717407713823 0.1297449779240717 0.3265826019173688 -1.192697017918619 -0.05808015184411099 -0.03938788681399102 -0.0320215229750103 1.981042651962162 -0.1812112976198525 1.947182244123232 0.2938766420839853 -0.0524315242956043 0.9283402239298384 0.4802244090786475 -0.09863015383275404 0.5419672336339126 0.840067431844499 -0.4299897675531783 0.03654607664910618 -1.118723112271001 -1.28487983214167 -0.5787908752940257 -1.499364633663538 0.05575920687481053 0.01697370996765415 -0.8675436049402432 0.6248879863575346 -0.1921656442747269 -0.3487502314162322 0.2497335503953799 0.2916925404031848 -1.156099853862085 0.2066797400671177 -0.03755897012292375 -0.01669365819150997 1.837226823603213 -0.6277221656035168 1.982871524296908 -0.1658838045780912 0.1549471133513004 0.926271017659403 -0.4314797661798583 -0.08241555601430506 0.4850983193021703 0.02291896507682182 -0.4435596451746486 0.8574897570892256 -0.5973340108549068 -1.494561963904799 -0.0009938348333969052 -1.574320909725511 0.03716949338786759 0.02178844157197701 -0.590668199735378 0.8003619256414625 -0.3002610023705488 -0.2850266574071003 0.3573215388483328 0.2282013813533236 -1.020058250736914 0.4652208336946513 -0.03006746412218775 -0.00246891752738707 1.53248244939769 -1.021051126561889 1.844715281581389 -0.6135032123919676 -0.2397379242648021 0.9092043715946208 -0.3847025093323656 -0.1940833813882925 0.44076218466755 0.1365952386707551 -0.7787690196498813 0.6932719536246276 -0.02050822442818087 -1.574031800828231 0.5791832437635509 -1.51196408310349 0.01760077999626869 0.02207835371030489 -0.017581589667695 0.009384382415771322 1.093911919977969 -1.326263772815833 1.544954207250127 -1.00921122784879 -0.001204457374191035 0.01781819349283538 0.560426229320167 -1.516213318070019 1.110257215438868 -1.317846356961747</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"147\" source=\"#ID337\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID333\">\r\n                    <input semantic=\"POSITION\" source=\"#ID331\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID332\"/>\r\n                </vertices>\r\n                <triangles count=\"126\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID333\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID334\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 2 5 9 6 2 5 8 4 0 7 5 7 10 4 7 5 11 6 7 5 10 4 3 8 12 9 1 10 12 9 3 8 13 11 14 11 4 8 15 9 6 10 15 9 4 8 16 12 17 13 18 14 19 14 20 13 21 12 8 15 22 16 23 17 22 16 8 15 9 18 11 18 10 15 24 16 25 17 24 16 10 15 18 19 17 20 26 21 27 21 20 20 19 19 13 22 28 23 12 24 28 23 13 22 29 25 30 25 14 22 31 23 15 24 31 23 14 22 32 26 17 27 16 28 21 28 20 27 33 26 23 29 34 30 35 31 34 30 23 29 22 32 24 32 25 29 36 30 37 31 36 30 25 29 26 33 17 34 38 35 39 35 20 34 27 33 29 36 40 37 28 38 40 37 29 36 41 39 42 39 30 36 43 37 31 38 43 37 30 36 44 40 17 41 32 42 33 42 20 41 45 40 35 43 46 44 47 45 46 44 35 43 34 46 36 46 37 43 48 44 49 45 48 44 37 43 17 47 50 48 38 49 39 49 51 48 20 47 40 50 52 51 53 52 52 51 40 50 41 53 42 53 43 50 54 51 55 52 54 51 43 50 56 54 17 55 44 56 45 56 20 55 57 54 47 57 58 58 59 59 58 58 47 57 46 60 48 60 49 57 60 58 61 59 60 58 49 57 17 61 62 62 50 63 51 63 63 62 20 61 53 64 64 65 65 66 64 65 53 64 52 67 54 67 55 64 66 65 67 66 66 65 55 64 56 68 68 69 17 70 20 70 69 69 57 68 59 71 70 72 71 73 70 72 59 71 58 74 60 74 61 71 72 72 73 73 72 72 61 71 17 75 74 76 62 77 63 77 75 76 20 75 65 78 76 79 77 80 76 79 65 78 64 81 66 81 67 78 78 79 79 80 78 79 67 78 68 82 80 83 17 84 20 84 81 83 69 82 71 85 82 86 83 87 82 86 71 85 70 88 72 88 73 85 84 86 85 87 84 86 73 85 17 89 86 90 74 91 75 91 87 90 20 89 77 92 88 93 89 94 88 93 77 92 76 95 78 95 79 92 90 93 91 94 90 93 79 92 80 96 92 97 17 98 20 98 93 97 81 96 82 99 94 100 83 101 94 100 82 99 95 102 96 102 84 99 97 100 85 101 97 100 84 99 17 103 98 104 86 105 87 105 99 104 20 103 89 106 100 107 101 108 100 107 89 106 88 109 90 109 91 106 102 107 103 108 102 107 91 106 92 110 104 111 17 112 20 112 105 111 93 110 95 113 106 114 94 115 106 114 95 113 107 116 108 116 96 113 109 114 97 115 109 114 96 113 17 117 110 118 98 119 99 119 111 118 20 117 112 120 100 121 113 122 100 121 112 120 101 123 103 123 114 120 102 121 115 122 102 121 114 120 104 124 116 125 17 126 20 126 117 125 105 124 107 127 118 128 106 129 118 128 107 127 119 130 120 130 108 127 121 128 109 129 121 128 108 127 17 131 122 132 110 133 111 133 123 132 20 131 119 134 113 135 118 136 113 135 119 134 112 137 114 137 120 134 115 135 121 136 115 135 120 134 116 138 124 139 17 140 20 140 125 139 117 138 17 141 126 142 122 143 123 143 127 142 20 141 17 144 124 145 126 146 127 146 125 145 20 144</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID338\">\r\n            <mesh>\r\n                <source id=\"ID339\">\r\n                    <float_array count=\"3000\" id=\"ID343\">-0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 -0.3788313495221017 0.7391863847872159 -0.7918046221566382 -0.3788313495221017 0.7391863847872159</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1000\" source=\"#ID343\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID340\">\r\n                    <float_array count=\"3000\" id=\"ID344\">-0.6131685433316286 -0.6352305123706656 -0.4695812321865837 -0.6107430305208749 -0.4313432930897734 -0.6640300551757034 -0.6100330350797705 -0.432978057042589 -0.6636186391527805 0.6100330350797705 0.432978057042589 0.6636186391527805 0.6107430305208749 0.4313432930897734 0.6640300551757034 0.6131685433316286 0.6352305123706656 0.4695812321865837 -0.6414932949073833 -0.1910191354735049 -0.7429657074669219 0.6414932949073833 0.1910191354735049 0.7429657074669219 -0.9119812894775979 0.2460334925802348 0.3282646008505167 -0.9087638176408079 0.2443143590689556 0.3383176284198477 -0.9230582056960787 0.2076733531501404 0.3237828397066665 0.9230582056960787 -0.2076733531501404 -0.3237828397066665 0.9087638176408079 -0.2443143590689556 -0.3383176284198477 0.9119812894775979 -0.2460334925802348 -0.3282646008505167 -0.5814085771430504 -0.6235265193762986 -0.5226650419331412 0.5814085771430504 0.6235265193762986 0.5226650419331412 -0.6219866060717065 -0.2255011033331463 -0.7498545954136263 0.6219866060717065 0.2255011033331463 0.7498545954136263 -0.9234677517021199 0.1707487320338378 0.3435872262978766 -0.9210274254689069 0.188359605763954 0.3409239511248287 0.9210274254689069 -0.188359605763954 -0.3409239511248287 0.9234677517021199 -0.1707487320338378 -0.3435872262978766 -0.9243339167159471 0.2082873548390461 0.319723612238305 0.9243339167159471 -0.2082873548390461 -0.319723612238305 -0.9018502407217643 0.249016537502691 0.3530678509299122 0.9018502407217643 -0.249016537502691 -0.3530678509299122 -0.4688809399671691 -0.7410968956416455 -0.4805476619502169 0.4688809399671691 0.7410968956416455 0.4805476619502169 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.5313074129219958 -0.1516791908637951 -0.8334901655286883 0.5313074129219958 0.1516791908637951 0.8334901655286883 -0.9193974272347317 0.1904939904256795 0.3441226676722378 0.9193974272347317 -0.1904939904256795 -0.3441226676722378 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 -0.9064264101263384 0.2873078457702411 0.3095890256200023 0.9064264101263384 -0.2873078457702411 -0.3095890256200023 -0.4125080872329844 -0.7444765374883888 -0.5249683448520343 0.4125080872329844 0.7444765374883888 0.5249683448520343 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 -0.4893414839082547 -0.1788419456180993 -0.8535575379633175 0.4893414839082547 0.1788419456180993 0.8535575379633175 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 -0.8847877951732008 0.3876305483478212 0.2586370342779885 0.8847877951732008 -0.3876305483478212 -0.2586370342779885 0.04569831620770311 0.6180154536524877 -0.7848366472983348 0.04971157032437513 0.7278710826830646 -0.683909677347578 0.05401064972997639 0.5993988161129192 -0.7986262636291001 -0.05401064972997639 -0.5993988161129192 0.7986262636291001 -0.04971157032437513 -0.7278710826830646 0.683909677347578 -0.04569831620770311 -0.6180154536524877 0.7848366472983348 -0.9126387109060857 0.2012446850352883 0.3557965150204898 0.9126387109060857 -0.2012446850352883 -0.3557965150204898 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 -0.5954974211095998 -0.6204561645494262 0.5103106596225786 -0.5750104179820392 -0.5638465179981029 0.5928238552500531 -0.5884703132773211 -0.5886073228299992 0.554296048968593 0.5884703132773211 0.5886073228299992 -0.554296048968593 0.5750104179820392 0.5638465179981029 -0.5928238552500531 0.5954974211095998 0.6204561645494262 -0.5103106596225786 -0.4435911602170827 0.5573645162302835 -0.7018345094284296 -0.4368753109454024 0.552964815618193 -0.7094856414154525 -0.4492936185982592 0.5610742779696141 -0.6952200363106335 0.4492936185982592 -0.5610742779696141 0.6952200363106335 0.4368753109454024 -0.552964815618193 0.7094856414154525 0.4435911602170827 -0.5573645162302835 0.7018345094284296 0.02921517395714277 -0.972018298904142 0.2330813167247683 0.007288799048047151 -0.9575732679774761 0.2880977435929935 0.0331249413609678 -0.9196095857015579 0.391434474906901 -0.0331249413609678 0.9196095857015579 -0.391434474906901 -0.007288799048047151 0.9575732679774761 -0.2880977435929935 -0.02921517395714277 0.972018298904142 -0.2330813167247683 -0.9092595095315058 0.2346197211408815 0.3438033315404329 0.9092595095315058 -0.2346197211408815 -0.3438033315404329 0.02784385059247752 0.01284876764323613 -0.9995297039879475 0.02557206782593211 -0.2876548247142446 -0.9573926943348394 0.0278811390736898 -0.1294666985918035 -0.9911917150782147 -0.0278811390736898 0.1294666985918035 0.9911917150782147 -0.02557206782593211 0.2876548247142446 0.9573926943348394 -0.02784385059247752 -0.01284876764323613 0.9995297039879475 0.0271922736872749 -0.5474159088744459 -0.8364187963950122 0.009825431372019862 -0.4178389509239254 -0.9084679807176186 -0.009825431372019862 0.4178389509239254 0.9084679807176186 -0.0271922736872749 0.5474159088744459 0.8364187963950122 0.03669397673521557 0.6999623410633172 -0.7132364777298733 -0.03669397673521557 -0.6999623410633172 0.7132364777298733 -0.9111139540391022 0.1995854796515729 0.3606064323711994 0.9111139540391022 -0.1995854796515729 -0.3606064323711994 -0.6085378327787385 -0.4363385207717332 0.6627898621491521 0.6085378327787385 0.4363385207717332 -0.6627898621491521 -0.4290146282623736 0.5477739795014404 -0.7182549102637957 0.4290146282623736 -0.5477739795014404 0.7182549102637957 0.0355140718306879 -0.9496263193448361 0.3113657083071032 -0.0355140718306879 0.9496263193448361 -0.3113657083071032 0.02589537248138592 -0.5533675459134304 -0.8325345571288905 0.02066161520126121 -0.7708648855079502 -0.6366635107716556 0.0193163073801767 -0.6584185702951814 -0.7524040580430462 0.02675587691421818 -0.5599249416657842 -0.8281112139991341 -0.02675587691421818 0.5599249416657842 0.8281112139991341 -0.02589537248138592 0.5533675459134304 0.8325345571288905 -0.02066161520126121 0.7708648855079502 0.6366635107716556 -0.0193163073801767 0.6584185702951814 0.7524040580430462 0.019948224836587 -0.9244137174900406 -0.380869199650106 0.01414311661247775 -0.8602383968027927 -0.5096958631563011 -0.01414311661247775 0.8602383968027927 0.5096958631563011 -0.019948224836587 0.9244137174900406 0.380869199650106 -0.3869225765070412 0.8727213960493712 -0.2977386180306301 -0.4189594113912097 0.8690844326029823 -0.2629928908048341 -0.5897023076858039 0.8014515282654252 -0.09963250549419947 0.5897023076858039 -0.8014515282654252 0.09963250549419947 0.4189594113912097 -0.8690844326029823 0.2629928908048341 0.3869225765070412 -0.8727213960493712 0.2977386180306301 -0.9099990926414894 0.2258504072914317 0.3476970591160654 0.9099990926414894 -0.2258504072914317 -0.3476970591160654 0.03481463620808104 0.01941661477622277 -0.9992051521966502 -0.03481463620808104 -0.01941661477622277 0.9992051521966502 0.02635295136991371 0.002234022109095546 -0.9996502043711644 -0.02635295136991371 -0.002234022109095546 0.9996502043711644 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.03784136067587975 0.8144840404498097 -0.578950584484333 0.03784136067587975 -0.8144840404498097 0.578950584484333 -0.9173890060384352 0.2293469628645768 0.3252650953062846 0.9173890060384352 -0.2293469628645768 -0.3252650953062846 -0.6122597140083652 -0.4503628205385982 0.6498548857082733 0.6122597140083652 0.4503628205385982 -0.6498548857082733 -0.03958647210302838 -0.8552382005688831 0.5167209416252983 0.03958647210302838 0.8552382005688831 -0.5167209416252983 0.03026716317725075 -0.2976749896778023 -0.9541873502376365 -0.03026716317725075 0.2976749896778023 0.9541873502376365 0.02910907021181551 -0.7855610775535136 -0.6180990660600988 -0.02910907021181551 0.7855610775535136 0.6180990660600988 0.01961372260044477 -0.9291073014986491 -0.3692897564076902 -0.01961372260044477 0.9291073014986491 0.3692897564076902 -0.5991542260006512 0.7982237271597008 -0.06207330235162312 0.5991542260006512 -0.7982237271597008 0.06207330235162312 -0.9157317949075062 0.1970830215706734 0.3501336350653144 0.9157317949075062 -0.1970830215706734 -0.3501336350653144 0.0299077864524713 0.3064717907049849 -0.9514097780723052 -0.0299077864524713 -0.3064717907049849 0.9514097780723052 0.02136018720689605 0.2992869541934073 -0.9539240333758867 -0.02136018720689605 -0.2992869541934073 0.9539240333758867 -0.005482260976492941 0.139386230751211 0.9902229160605989 -0.007408558792217734 0.4165322447531742 0.909090755831069 -0.006913157180589681 0.1302289306279806 0.9914598498604414 0.006913157180589681 -0.1302289306279806 -0.9914598498604414 0.007408558792217734 -0.4165322447531742 -0.909090755831069 0.005482260976492941 -0.139386230751211 -0.9902229160605989 -0.003797720091156379 0.4255976902132539 0.9049045161823717 -0.003802609351618076 0.6663786935817081 0.7456037666900933 0.003802609351618076 -0.6663786935817081 -0.7456037666900933 0.003797720091156379 -0.4255976902132539 -0.9049045161823717 -0.0008944920513999811 0.6733396999513402 0.7393327047773614 0.001295306138674836 0.8564789233090522 0.5161803716816183 -0.001295306138674836 -0.8564789233090522 -0.5161803716816183 0.0008944920513999811 -0.6733396999513402 -0.7393327047773614 0.002908326967066847 0.8606855222858298 0.5091286412703778 0.006332432417781015 0.9251165065025596 0.3796305436818457 -0.006332432417781015 -0.9251165065025596 -0.3796305436818457 -0.002908326967066847 -0.8606855222858298 -0.5091286412703778 -0.001404844418161865 0.99551776389769 0.09456430709471765 0.007293336385795456 0.9730925818604524 0.2302990107936251 0.01231533713361633 0.9984524360191881 -0.05423159114975583 -0.01231533713361633 -0.9984524360191881 0.05423159114975583 -0.007293336385795456 -0.9730925818604524 -0.2302990107936251 0.001404844418161865 -0.99551776389769 -0.09456430709471765 0.0120157990965055 0.998198666219562 -0.05877961661630734 0.01023761722016337 0.980868485680595 -0.1944021733219808 -0.01023761722016337 -0.980868485680595 0.1944021733219808 -0.0120157990965055 -0.998198666219562 0.05877961661630734 0.01646393589398393 0.9369218021430217 -0.3491510783084469 0.02512467636456076 0.7906507610061087 -0.611751685537553 0.01414019568378701 0.8726596648110707 -0.4881241279406847 -0.01414019568378701 -0.8726596648110707 0.4881241279406847 -0.02512467636456076 -0.7906507610061087 0.611751685537553 -0.01646393589398393 -0.9369218021430217 0.3491510783084469 0.02402975912977263 0.7849144902682695 -0.6191379601050702 0.03469207648931452 0.5770147196282489 -0.8159966134495859 -0.03469207648931452 -0.5770147196282489 0.8159966134495859 -0.02402975912977263 -0.7849144902682695 0.6191379601050702 0.02921019489462125 0.5707659558659806 -0.8205930709789181 0.03508365640598449 0.3143465129616109 -0.9486597951015225 -0.03508365640598449 -0.3143465129616109 0.9486597951015225 -0.02921019489462125 -0.5707659558659806 0.8205930709789181 0.01492656118699344 -0.9952036424557336 -0.09667940739356572 -0.01492656118699344 0.9952036424557336 0.09667940739356572 0.008347472633542526 -0.9795541238063974 0.2010075576552121 0.01346271275209136 -0.9964377721902609 -0.08324975386068219 -0.01346271275209136 0.9964377721902609 0.08324975386068219 -0.008347472633542526 0.9795541238063974 -0.2010075576552121 0.002143504963585591 -0.8767179422043012 0.4810000573841198 0.008249685662450967 -0.976765905206645 0.2141502022233793 -0.008249685662450967 0.976765905206645 -0.2141502022233793 -0.002143504963585591 0.8767179422043012 -0.4810000573841198 0.002686763416736887 -0.7899672717419514 0.6131431243020837 0.003370248980950642 -0.8703013678452798 0.4925080411002865 -0.003370248980950642 0.8703013678452798 -0.4925080411002865 -0.002686763416736887 0.7899672717419514 -0.6131431243020837 -0.0007244517714074711 -0.686530526938509 0.7271006194132722 -0.006791809893397876 -0.4554923169053546 0.890213806092988 -0.009335567978409306 -0.5787453233274817 0.8154549024299805 0.009335567978409306 0.5787453233274817 -0.8154549024299805 0.006791809893397876 0.4554923169053546 -0.890213806092988 0.0007244517714074711 0.686530526938509 -0.7271006194132722 -0.9824989449431362 0.08503230673662772 -0.1657266725565704 -0.9999899824504387 -0.00260493943261591 0.003639957324477385 -0.9869176053607741 0.09681709921543918 -0.1289189261841074 0.9869176053607741 -0.09681709921543918 0.1289189261841074 0.9999899824504387 0.00260493943261591 -0.003639957324477385 0.9824989449431362 -0.08503230673662772 0.1657266725565704 -0.003997307821499382 -0.4458837485294091 0.8950819539726755 -0.007381002033179414 -0.3156791974855449 0.9488372700752583 0.007381002033179414 0.3156791974855449 -0.9488372700752583 0.003997307821499382 0.4458837485294091 -0.8950819539726755 -0.9999905288897614 -0.001370765720624478 0.004130754424404623 -0.9841485037669431 0.06359518961047951 -0.1655517272386327 0.9841485037669431 -0.06359518961047951 0.1655517272386327 0.9999905288897614 0.001370765720624478 -0.004130754424404623 -0.004057949462573538 -0.1654053068756676 0.9862173277242321 -0.002427302614937988 -0.01243128957560056 0.9999197824033201 0.002427302614937988 0.01243128957560056 -0.9999197824033201 0.004057949462573538 0.1654053068756676 -0.9862173277242321 -0.05001318370946404 0.8414267630942929 -0.5380517482583845 0.05001318370946404 -0.8414267630942929 0.5380517482583845 -0.9187981593551595 0.2316284903157012 0.3196219404853802 0.9187981593551595 -0.2316284903157012 -0.3196219404853802 -0.5116852732955495 -0.4542311857591191 0.7292819831699693 0.5116852732955495 0.4542311857591191 -0.7292819831699693 -0.05172784220055365 -0.8363317719908131 0.5457777913216892 0.05172784220055365 0.8363317719908131 -0.5457777913216892 -0.5143076157204272 0.8449925937235406 -0.1465441672818575 0.5143076157204272 -0.8449925937235406 0.1465441672818575 -0.9157810847001926 0.1934753844391117 0.3520117619078609 0.9157810847001926 -0.1934753844391117 -0.3520117619078609 0.03964917043178988 0.3525170978793918 0.9349650469331792 0.04335475963781485 0.2054908490064289 0.9776982539574081 0.03592728837289261 0.3424796949339312 0.9388380523328466 -0.03592728837289261 -0.3424796949339312 -0.9388380523328466 -0.04335475963781485 -0.2054908490064289 -0.9776982539574081 -0.03964917043178988 -0.3525170978793918 -0.9349650469331792 0.01644376297839757 0.9974451863900713 -0.06951764384949995 -0.01644376297839757 -0.9974451863900713 0.06951764384949995 0.03346756875724736 0.3104113722911479 -0.9500130008551491 0.02135092118153528 0.2802821764875909 -0.9596801757398549 0.03793714202236574 0.1449358727658069 -0.9887134903705868 -0.03793714202236574 -0.1449358727658069 0.9887134903705868 -0.02135092118153528 -0.2802821764875909 0.9596801757398549 -0.03346756875724736 -0.3104113722911479 0.9500130008551491 0.04741565844858901 -0.9527313725054269 -0.3000911314547839 0.04731999989724039 -0.988143031769225 -0.1460622003656307 0.04357592730064158 -0.986621286913195 -0.1570973417013809 -0.04357592730064158 0.986621286913195 0.1570973417013809 -0.04731999989724039 0.988143031769225 0.1460622003656307 -0.04741565844858901 0.9527313725054269 0.3000911314547839 -0.9612697098559012 0.1241480665562238 -0.2460646307048266 0.9612697098559012 -0.1241480665562238 0.2460646307048266 0.03145112195807651 0.7894354586032027 0.613027310670193 0.02684474802398928 0.6624818840923926 0.7485967624515366 0.002788247194464847 0.7096494163407977 0.7045494528879771 -0.002788247194464847 -0.7096494163407977 -0.7045494528879771 -0.02684474802398928 -0.6624818840923926 -0.7485967624515366 -0.03145112195807651 -0.7894354586032027 -0.613027310670193 -0.06757829711111801 0.7710133873258493 -0.6332231283867335 0.06757829711111801 -0.7710133873258493 0.6332231283867335 -0.9294521394256079 0.253452618746215 0.268105372135372 0.9294521394256079 -0.253452618746215 -0.268105372135372 -0.5121653214427434 -0.4705831108144322 0.7184971950729265 0.5121653214427434 0.4705831108144322 -0.7184971950729265 -0.06755689289069129 -0.8758167307604269 0.4778923731794361 0.06755689289069129 0.8758167307604269 -0.4778923731794361 0.01533915038481843 -0.931302781136795 -0.363922849395779 -0.01533915038481843 0.931302781136795 0.363922849395779 -0.5141693164024285 0.8420130928550114 -0.1632294873207583 0.5141693164024285 -0.8420130928550114 0.1632294873207583 -0.9325766854234757 0.1309140125917365 0.3363959677399454 0.9325766854234757 -0.1309140125917365 -0.3363959677399454 0.001200659249239651 -0.1460802454730157 0.9892720153223333 -0.001200659249239651 0.1460802454730157 -0.9892720153223333 -0.002061751646003162 0.149208950471754 0.9888035387675693 0.002061751646003162 -0.149208950471754 -0.9888035387675693 -0.0009318520237067135 0.433722340755988 0.9010460935939696 0.0009318520237067135 -0.433722340755988 -0.9010460935939696 0.001230385039251648 0.6798257005461618 0.7333726904034371 -0.001230385039251648 -0.6798257005461618 -0.7333726904034371 0.004958609525564488 0.865332610935552 0.5011735075231268 -0.004958609525564488 -0.865332610935552 -0.5011735075231268 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.03665747372773916 0.2635154343631972 0.9639584251783245 -0.03665747372773916 -0.2635154343631972 -0.9639584251783245 0.009900852030461732 0.9748308572254344 0.2227257796713161 -0.009900852030461732 -0.9748308572254344 -0.2227257796713161 0.02459906767420807 0.9291593642459279 -0.3688600841832339 -0.02459906767420807 -0.9291593642459279 0.3688600841832339 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.03526949973342622 0.2184273294063683 -0.9752156500779486 -0.03526949973342622 -0.2184273294063683 0.9752156500779486 0.01810657254151843 0.7819003011516978 -0.6231404906517333 -0.01810657254151843 -0.7819003011516978 0.6231404906517333 0.01159606897749572 -0.9972521189634576 -0.07316927228805119 -0.01159606897749572 0.9972521189634576 0.07316927228805119 0.007746355397098426 -0.9745611152693888 0.2239880054443695 -0.007746355397098426 0.9745611152693888 -0.2239880054443695 0.004188632105367766 -0.8653193803481177 0.5012033772382579 -0.004188632105367766 0.8653193803481177 -0.5012033772382579 0.03694298968752306 -0.9660546355743256 -0.2556827264370916 -0.03694298968752306 0.9660546355743256 0.2556827264370916 0.001214459778276763 -0.6793050578937298 0.7338550016232387 -0.001214459778276763 0.6793050578937298 -0.7338550016232387 -0.9165260464188996 0.2413126785897623 -0.3189799325781723 0.9165260464188996 -0.2413126785897623 0.3189799325781723 0.001434244776386382 -0.4349910787918278 0.9004336201594448 -0.001434244776386382 0.4349910787918278 -0.9004336201594448 0.03479758506284582 0.7257101728783496 0.6871199844675382 -0.03479758506284582 -0.7257101728783496 -0.6871199844675382 -0.9053555865328123 0.1174765612269161 -0.4080815108481708 0.9053555865328123 -0.1174765612269161 0.4080815108481708 -0.06837815441249286 0.7838010835826982 -0.61723600783957 0.06837815441249286 -0.7838010835826982 0.61723600783957 -0.925181050407382 0.2544784030417004 0.2815684043930342 0.925181050407382 -0.2544784030417004 -0.2815684043930342 -0.5094027305261349 -0.4031696580921826 0.7602388341346096 0.5094027305261349 0.4031696580921826 -0.7602388341346096 -0.06822779517691434 -0.8673864003091556 0.4929358990010996 0.06822779517691434 0.8673864003091556 -0.4929358990010996 -0.5108147009650829 0.8560080643809171 -0.07948921305931028 0.5108147009650829 -0.8560080643809171 0.07948921305931028 -0.9295497348399154 0.141402496183842 0.3405034868133092 0.9295497348399154 -0.141402496183842 -0.3405034868133092 0.01921047962226295 0.5651345907762262 -0.8247750310120148 -0.01921047962226295 -0.5651345907762262 0.8247750310120148 -0.924489198402029 -0.3808644361577947 0.0161865162458993 -0.9243377794016469 -0.3811886557337647 0.0171720211599593 -0.9072210144294771 -0.4193680273961145 0.03287078604844312 0.9072210144294771 0.4193680273961145 -0.03287078604844312 0.9243377794016469 0.3811886557337647 -0.0171720211599593 0.924489198402029 0.3808644361577947 -0.0161865162458993 -0.03780903634253117 0.08541542107879442 0.9956277831663706 0.03780903634253117 -0.08541542107879442 -0.9956277831663706 -0.915264571564772 -0.4027493562430763 -0.009149867984932962 0.915264571564772 0.4027493562430763 0.009149867984932962 -0.03805664037554967 -0.009784856047856541 -0.9992276761156334 0.03805664037554967 0.009784856047856541 0.9992276761156334 -0.03988346302587386 -0.9059913707647226 -0.4214130342988013 0.03988346302587386 0.9059913707647226 0.4214130342988013 -0.8756294668438924 0.3525945089564383 -0.3300759746610601 0.8756294668438924 -0.3525945089564383 0.3300759746610601 -0.7066995161370085 -0.3328394342728472 0.6243346097123314 -0.6992610303780938 -0.1874041802288657 0.6898649756490857 -0.706699211393621 -0.332866770111896 0.6243203808709985 0.706699211393621 0.332866770111896 -0.6243203808709985 0.6992610303780938 0.1874041802288657 -0.6898649756490857 0.7066995161370085 0.3328394342728472 -0.6243346097123314 -0.038009535614359 0.8723927326412684 0.4873255536467188 0.038009535614359 -0.8723927326412684 -0.4873255536467188 -0.6961182166882092 -0.4697752474880487 0.5428910067797866 0.6961182166882092 0.4697752474880487 -0.5428910067797866 -0.8876323827149847 0.1162542163379045 -0.4456385422507556 0.8876323827149847 -0.1162542163379045 0.4456385422507556 -0.06016248758640132 0.7467500003972328 -0.6623782242753371 0.06016248758640132 -0.7467500003972328 0.6623782242753371 -0.9245527864503199 0.237309528475381 0.298138110213608 0.9245527864503199 -0.237309528475381 -0.298138110213608 -0.5139497895077154 -0.4058857625891543 0.755719763928664 0.5139497895077154 0.4058857625891543 -0.755719763928664 -0.0600348953330893 -0.8956050067033663 0.4407805387153662 0.0600348953330893 0.8956050067033663 -0.4407805387153662 -0.515859789786745 0.8519771407680433 -0.08957471121854281 0.515859789786745 -0.8519771407680433 0.08957471121854281 -0.9272834517509151 0.1632925520749501 0.3368693256230941 0.9272834517509151 -0.1632925520749501 -0.3368693256230941 -0.9059645702483528 -0.4228100787491342 0.02144375813304393 0.9059645702483528 0.4228100787491342 -0.02144375813304393 -0.04998584997638523 0.03649578989508206 0.9980828984218056 0.04998584997638523 -0.03649578989508206 -0.9980828984218056 -0.9126672826667309 -0.4084995448882047 -0.01290554050999234 -0.9026800271055669 -0.4300978238059344 -0.01358788512213859 -0.9111165739877291 -0.4120009636975097 -0.01103605532726058 0.9111165739877291 0.4120009636975097 0.01103605532726058 0.9026800271055669 0.4300978238059344 0.01358788512213859 0.9126672826667309 0.4084995448882047 0.01290554050999234 -0.9164192555908047 -0.4001603245189633 -0.006889315152686308 0.9164192555908047 0.4001603245189633 0.006889315152686308 -0.9100128209423325 -0.4141053938628353 0.01983402365341829 -0.9098768749122155 -0.4144813710644892 0.01814567553114639 0.9098768749122155 0.4144813710644892 -0.01814567553114639 0.9100128209423325 0.4141053938628353 -0.01983402365341829 -0.05007447950133898 -0.04460336033844332 -0.9977490098963712 0.05007447950133898 0.04460336033844332 0.9977490098963712 -0.05223146845994098 -0.8838556721519534 -0.4648344054685892 0.05223146845994098 0.8838556721519534 0.4648344054685892 -0.9055099122664467 0.08478975686936037 -0.415767357926577 -0.9134603460440244 0.100090271838512 -0.3944263349326765 -0.9150871129800877 0.09156365276906278 -0.3927234054004866 0.9150871129800877 -0.09156365276906278 0.3927234054004866 0.9134603460440244 -0.100090271838512 0.3944263349326765 0.9055099122664467 -0.08478975686936037 0.415767357926577 -0.8628976978143381 0.3867850561445824 -0.3252766260430459 0.8628976978143381 -0.3867850561445824 0.3252766260430459 -0.9158353220314106 0.1680129671192036 0.3647153764230731 -0.8250636447121634 0.1563131469686213 0.542988197163665 -0.9156800465471477 0.12306795282666 0.3826020535000676 0.9156800465471477 -0.12306795282666 -0.3826020535000676 0.8250636447121634 -0.1563131469686213 -0.542988197163665 0.9158353220314106 -0.1680129671192036 -0.3647153764230731 -0.9301712002434255 0.04356903436083521 0.3645315863989973 0.9301712002434255 -0.04356903436083521 -0.3645315863989973 -0.9102915714758219 0.1919571037046917 -0.3667720344265427 -0.9098752187950685 0.1899053550703858 -0.3688672421593123 0.9098752187950685 -0.1899053550703858 0.3688672421593123 0.9102915714758219 -0.1919571037046917 0.3667720344265427 -0.05002206568014039 0.8883803733443121 0.4563749611905901 0.05002206568014039 -0.8883803733443121 -0.4563749611905901 -0.9161764556186254 -0.3981519670093227 0.04577896172588378 -0.9335057704990215 -0.3295072998576136 0.1413927713342278 -0.9152454586525087 -0.3912460761204535 0.09618866012325544 0.9152454586525087 0.3912460761204535 -0.09618866012325544 0.9335057704990215 0.3295072998576136 -0.1413927713342278 0.9161764556186254 0.3981519670093227 -0.04577896172588378 -0.8008752262028298 -0.5581038891156944 0.2170689314676397 0.8008752262028298 0.5581038891156944 -0.2170689314676397 -0.9078252336262972 0.2546053228708254 -0.3332108563015343 0.9078252336262972 -0.2546053228708254 0.3332108563015343 -0.06214391660331564 0.7497897154320584 -0.6587514829292707 0.06214391660331564 -0.7497897154320584 0.6587514829292707 -0.9105068842497451 0.232294596580093 0.3420766495005371 0.9105068842497451 -0.232294596580093 -0.3420766495005371 -0.5636529765645513 -0.1834260551652416 0.805388232032502 0.5636529765645513 0.1834260551652416 -0.805388232032502 -0.06204321152616367 -0.8915755561120776 0.4486019033028719 0.06204321152616367 0.8915755561120776 -0.4486019033028719 -0.563551722335448 0.8122020272639635 0.1507890021223632 0.563551722335448 -0.8122020272639635 -0.1507890021223632 -0.9128754411958339 0.2045282989941302 0.3533080861968483 0.9128754411958339 -0.2045282989941302 -0.3533080861968483 -0.8841694971092278 -0.4670196417475235 0.01170276051322128 0.8841694971092278 0.4670196417475235 -0.01170276051322128 -0.7948062792220184 0.5103440598305962 -0.328377707990168 -0.6271806346804609 0.7782902294104336 -0.0301458170575845 -0.6099115313195107 0.7918454994605457 -0.03144247044315008 0.6099115313195107 -0.7918454994605457 0.03144247044315008 0.6271806346804609 -0.7782902294104336 0.0301458170575845 0.7948062792220184 -0.5103440598305962 0.328377707990168 -0.06757420297446912 0.1542219217613901 0.9857227429356539 0.06757420297446912 -0.1542219217613901 -0.9857227429356539 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 -0.9173919056680412 -0.396652180679767 0.03254441544636197 0.9173919056680412 0.396652180679767 -0.03254441544636197 -0.7044687220678403 0.6666170076972114 0.2436094921732724 0.7044687220678403 -0.6666170076972114 -0.2436094921732724 -0.9056948139282527 -0.4239285587280207 -0.001217012017516861 0.9056948139282527 0.4239285587280207 0.001217012017516861 -0.9062955794800263 -0.4218840716820903 0.02534073155818777 0.9062955794800263 0.4218840716820903 -0.02534073155818777 -0.9178702577263617 -0.3968043330700363 -0.007778896977463935 0.9178702577263617 0.3968043330700363 0.007778896977463935 -0.0673402010633347 0.03284261300743482 -0.9971893802541189 0.0673402010633347 -0.03284261300743482 0.9971893802541189 -0.06783519718058229 -0.9323282921296917 -0.3551933863657993 0.06783519718058229 0.9323282921296917 0.3551933863657993 -0.9036091026635394 0.0556782963512844 -0.424724047940556 0.9036091026635394 -0.0556782963512844 0.424724047940556 -0.9151772240300315 0.1669447966678817 -0.3668515823629565 0.9151772240300315 -0.1669447966678817 0.3668515823629565 -0.5462375627474104 0.7832296524327782 0.2969441641012638 -0.6297975146368566 0.6855810967237255 0.3651488057933807 -0.6447186628852124 0.6879675290323077 0.3332244359657386 0.6447186628852124 -0.6879675290323077 -0.3332244359657386 0.6297975146368566 -0.6855810967237255 -0.3651488057933807 0.5462375627474104 -0.7832296524327782 -0.2969441641012638 -0.8004665242590809 0.1327927671656561 0.584482184954404 0.8004665242590809 -0.1327927671656561 -0.584482184954404 -0.9178727869669794 0.2036829255299642 -0.3406212160054408 0.9178727869669794 -0.2036829255299642 0.3406212160054408 -0.06731641938335971 0.8494783472765206 0.5233116062058579 0.06731641938335971 -0.8494783472765206 -0.5233116062058579 -0.7668641844162472 -0.5810340615428355 0.2726146400812705 0.7668641844162472 0.5810340615428355 -0.2726146400812705 -0.6233448385994473 -0.603445758421776 -0.4972870688387107 -0.6450470615181747 -0.7070854542103706 -0.2897316842716416 -0.6476791120465277 -0.7033306111846984 -0.2929809194967823 0.6476791120465277 0.7033306111846984 0.2929809194967823 0.6450470615181747 0.7070854542103706 0.2897316842716416 0.6233448385994473 0.603445758421776 0.4972870688387107 -0.0732053161087646 0.6786547872505393 -0.7308000146656684 0.0732053161087646 -0.6786547872505393 0.7308000146656684 -0.9271360714165975 0.212632426034943 0.3085549488773313 0.9271360714165975 -0.212632426034943 -0.3085549488773313 -0.5682440159721127 -0.2499810897182357 0.7839695103096603 0.5682440159721127 0.2499810897182357 -0.7839695103096603 -0.07326583168045271 -0.9382150080750226 0.3382080964893607 0.07326583168045271 0.9382150080750226 -0.3382080964893607 -0.5680807927105938 0.8189688158964524 0.08108200504714996 0.5680807927105938 -0.8189688158964524 -0.08108200504714996 -0.927548465775947 0.18590322006679 0.3241817953023973 0.927548465775947 -0.18590322006679 -0.3241817953023973 -0.8928491632893021 -0.4470013707692716 0.05486479876920774 0.8928491632893021 0.4470013707692716 -0.05486479876920774 -0.6779678389035451 0.5914850813119577 -0.4364687938419465 -0.7930586724642184 0.5380222435700273 -0.2856396461508205 0.7930586724642184 -0.5380222435700273 0.2856396461508205 0.6779678389035451 -0.5914850813119577 0.4364687938419465 -0.06837946245005622 0.133948004867257 0.9886264112935294 0.06837946245005622 -0.133948004867257 -0.9886264112935294 -0.9187989142657232 -0.3929531117095517 0.0373685314390171 0.9187989142657232 0.3929531117095517 -0.0373685314390171 -0.5792112105076253 -0.03535317024093707 -0.8144105395782932 -0.5626671069308074 -0.09424735772971241 -0.8212935908303943 -0.6084903667744845 -0.3361198159561551 -0.7188622558350478 0.6084903667744845 0.3361198159561551 0.7188622558350478 0.5626671069308074 0.09424735772971241 0.8212935908303943 0.5792112105076253 0.03535317024093707 0.8144105395782932 -0.6142586567780607 -0.3121905317741047 -0.7247229639274684 -0.5114901394861176 -0.3977120680449375 -0.7617105409142576 0.5114901394861176 0.3977120680449375 0.7617105409142576 0.6142586567780607 0.3121905317741047 0.7247229639274684 -0.7165913554401721 0.6650103775153866 0.2103759185488212 0.7165913554401721 -0.6650103775153866 -0.2103759185488212 -0.764937702624227 0.5192485317920021 0.3811184505318785 0.764937702624227 -0.5192485317920021 -0.3811184505318785 -0.5301106299440702 -0.2511652486673166 0.809875754595843 -0.6030031272843839 -0.3014611009609044 0.7385854270784746 -0.5174518251755897 -0.2411286674177418 0.8210362807889765 0.5174518251755897 0.2411286674177418 -0.8210362807889765 0.6030031272843839 0.3014611009609044 -0.7385854270784746 0.5301106299440702 0.2511652486673166 -0.809875754595843 -0.6060304150691775 -0.3080632070317224 0.7333649817685672 -0.5145052688849753 -0.2999231163421164 0.803324624652595 0.5145052688849753 0.2999231163421164 -0.803324624652595 0.6060304150691775 0.3080632070317224 -0.7333649817685672 -0.9180481665079123 -0.3962927934772661 -0.01181464385606148 0.9180481665079123 0.3962927934772661 0.01181464385606148 -0.06822609440622343 0.01557927206212744 -0.9975482375925926 0.06822609440622343 -0.01557927206212744 0.9975482375925926 -0.06836592527621122 -0.9248117108838933 -0.374231745945121 0.06836592527621122 0.9248117108838933 0.374231745945121 -0.9159377876348976 0.1653334364994017 -0.3656813147506822 0.9159377876348976 -0.1653334364994017 0.3656813147506822 -0.6049336713798291 0.7946676713190241 0.05058206590601672 -0.5557652605442751 0.7376308132429826 0.3834393805109877 0.5557652605442751 -0.7376308132429826 -0.3834393805109877 0.6049336713798291 -0.7946676713190241 -0.05058206590601672 -0.5113431291935486 0.8587529234400222 0.03273561836539834 -0.6114792617679662 0.7887888748458873 0.06249178623677078 0.6114792617679662 -0.7887888748458873 -0.06249178623677078 0.5113431291935486 -0.8587529234400222 -0.03273561836539834 -0.6410831753865172 -0.6305734637185176 -0.4374808213972034 -0.6084825682336931 -0.495113360886253 -0.6201707216788357 0.6084825682336931 0.495113360886253 0.6201707216788357 0.6410831753865172 0.6305734637185176 0.4374808213972034 -0.6086877370165386 -0.4987726994136522 -0.6170291995726814 -0.5145324763372529 -0.5486089202616341 -0.6590027188135252 0.5145324763372529 0.5486089202616341 0.6590027188135252 0.6086877370165386 0.4987726994136522 0.6170291995726814 -0.9180510116488734 0.2069327617052255 -0.3381732871525023 0.9180510116488734 -0.2069327617052255 0.3381732871525023 -0.06820506512298212 0.8583605711733054 0.5084930667635563 0.06820506512298212 -0.8583605711733054 -0.5084930667635563 -0.07788897801981856 0.7203251955069255 -0.6892495337836203 0.07788897801981856 -0.7203251955069255 0.6892495337836203 -0.9186236678224693 0.2137604419261941 0.3323206740242198 0.9186236678224693 -0.2137604419261941 -0.3323206740242198 -0.5912354405693278 -0.06373945870929254 0.8039763275235403 0.5912354405693278 0.06373945870929254 -0.8039763275235403 -0.07801011213032839 -0.9149104860515087 0.3960469983706556 0.07801011213032839 0.9149104860515087 -0.3960469983706556 -0.5911901739412696 0.7634359260444917 0.2601149074157052 0.5911901739412696 -0.7634359260444917 -0.2601149074157052 -0.918427191400784 0.2082707995037445 0.3363253903138127 0.918427191400784 -0.2082707995037445 -0.3363253903138127 -0.5611802421407521 0.1223351114562133 -0.8186029906712061 -0.5552116476461365 0.1310993066410967 -0.8213117545221707 0.5552116476461365 -0.1310993066410967 0.8213117545221707 0.5611802421407521 -0.1223351114562133 0.8186029906712061 -0.6408955186930352 0.6368247591987463 -0.4286107327058484 0.6408955186930352 -0.6368247591987463 0.4286107327058484 -0.06018780181180793 0.1916292067335681 0.9796201690654016 0.06018780181180793 -0.1916292067335681 -0.9796201690654016 -0.9294544655857993 -0.3596552207152826 0.08223453419858177 0.9294544655857993 0.3596552207152826 -0.08223453419858177 -0.5119734798882151 -0.3801411073322832 -0.7703089603576846 0.5119734798882151 0.3801411073322832 0.7703089603576846 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 -0.7827724052343109 0.4885261484066231 0.3854991101503113 0.7827724052343109 -0.4885261484066231 -0.3854991101503113 -0.6653394530452826 0.165916713449703 0.7278702194893354 -0.6147039237146543 0.238512470860314 0.7518316882214503 -0.6840994787240873 0.1363722874922993 0.7165266934410397 0.6840994787240873 -0.1363722874922993 -0.7165266934410397 0.6147039237146543 -0.238512470860314 -0.7518316882214503 0.6653394530452826 -0.165916713449703 -0.7278702194893354 -0.5846765150393855 0.2775554521153094 0.7623098738455811 0.5846765150393855 -0.2775554521153094 -0.7623098738455811 -0.5144696680899629 -0.2827869085697489 0.8095384641615049 0.5144696680899629 0.2827869085697489 -0.8095384641615049 -0.9325779507189076 -0.3562891568629708 -0.0579344675887886 0.9325779507189076 0.3562891568629708 0.0579344675887886 -0.06008517546283819 0.07478840775462761 -0.9953875957410397 0.06008517546283819 -0.07478840775462761 0.9953875957410397 -0.06016537746400757 -0.9456188928128914 -0.3196639437126669 0.06016537746400757 0.9456188928128914 0.3196639437126669 -0.9294575191574707 0.1069983269701304 -0.3530723411812842 0.9294575191574707 -0.1069983269701304 0.3530723411812842 -0.5118224780352834 0.8574987258211545 0.05228466498810563 0.5118224780352834 -0.8574987258211545 -0.05228466498810563 -0.514493135926281 -0.5625126092319087 -0.6472065957172033 0.514493135926281 0.5625126092319087 0.6472065957172033 -0.9325781432366856 0.2270966540840191 -0.280579964468348 0.9325781432366856 -0.2270966540840191 0.280579964468348 -0.06002763057924118 0.8270709642152402 0.5588830859125324 0.06002763057924118 -0.8270709642152402 -0.5588830859125324 -0.07605661316331486 0.6351470128865732 -0.7686375372146413 0.07605661316331486 -0.6351470128865732 0.7686375372146413 -0.9208305953623421 0.2088271071494026 0.3293360805685381 0.9208305953623421 -0.2088271071494026 -0.3293360805685381 -0.8621478316094056 0.2290208849793479 0.4519408707944841 0.8621478316094056 -0.2290208849793479 -0.4519408707944841 -0.6042033250166701 -0.04459964845335795 0.7955810539452516 0.6042033250166701 0.04459964845335795 -0.7955810539452516 -0.0760742450757196 -0.9574640025019078 0.27834401942414 0.0760742450757196 0.9574640025019078 -0.27834401942414 -0.6041792882639404 0.748119712716962 0.2743798153603302 0.6041792882639404 -0.748119712716962 -0.2743798153603302 -0.8666360269162206 0.3018712000249856 0.3972603371170386 0.8666360269162206 -0.3018712000249856 -0.3972603371170386 -0.06215953815997215 0.1869805446352334 0.9803950569763448 0.06215953815997215 -0.1869805446352334 -0.9803950569763448 -0.9251817572127729 -0.3717791800066462 0.07628209117657712 0.9251817572127729 0.3717791800066462 -0.07628209117657712 -0.5094391278008816 -0.4503793007937866 -0.7332327464604789 0.5094391278008816 0.4503793007937866 0.7332327464604789 -0.5107042903204709 -0.3659351517327707 0.7779926687151866 0.5107042903204709 0.3659351517327707 -0.7779926687151866 -0.9295512194985515 -0.3651508688837732 -0.05098404929172666 0.9295512194985515 0.3651508688837732 0.05098404929172666 -0.06207876760437363 0.06602698698797134 -0.9958848646314555 0.06207876760437363 -0.06602698698797134 0.9958848646314555 -0.06213739111210562 -0.9439802191053086 -0.3240991986470726 0.06213739111210562 0.9439802191053086 0.3240991986470726 -0.9251831321196651 0.1181898446877643 -0.3606484890498343 0.9251831321196651 -0.1181898446877643 0.3606484890498343 -0.5092947909307791 0.8601651410365301 -0.027106199962007 0.5092947909307791 -0.8601651410365301 0.027106199962007 -0.5105354677853689 -0.4940289674119409 -0.703767657320984 0.5105354677853689 0.4940289674119409 0.703767657320984 -0.9295504993104691 0.2254579596928901 -0.2917268887894581 0.9295504993104691 -0.2254579596928901 0.2917268887894581 -0.06203113682986364 0.8318660453007373 0.551498885528617 0.06203113682986364 -0.8318660453007373 -0.551498885528617 -0.07783629645161526 0.6386398399740993 -0.7655590543861087 0.07783629645161526 -0.6386398399740993 0.7655590543861087 -0.9138229107542849 0.2183939193754576 0.3423912729033732 0.9138229107542849 -0.2183939193754576 -0.3423912729033732 -0.5345884589721218 0.4034395796788172 0.7425979296243637 -0.5524074943628621 0.4050841393154985 0.7285278307976754 -0.4787989807562905 0.4668933018719641 0.7434797782682678 0.4787989807562905 -0.4668933018719641 -0.7434797782682678 0.5524074943628621 -0.4050841393154985 -0.7285278307976754 0.5345884589721218 -0.4034395796788172 -0.7425979296243637 -0.06467178653120824 -0.4384108387102168 -0.8964449210789618 -0.06712979634411644 -0.500579809610561 -0.8630836834589403 -0.05182109757684491 -0.4514163579221916 -0.8908074122088315 0.05182109757684491 0.4514163579221916 0.8908074122088315 0.06712979634411644 0.500579809610561 0.8630836834589403 0.06467178653120824 0.4384108387102168 0.8964449210789618 -0.07792118493082251 -0.9559677627777016 0.2829380240773106 0.07792118493082251 0.9559677627777016 -0.2829380240773106 -0.5296654684248241 0.4971931921921262 0.687206971149242 -0.544217945097606 0.4868904901393766 0.6832016384974328 0.544217945097606 -0.4868904901393766 -0.6832016384974328 0.5296654684248241 -0.4971931921921262 -0.687206971149242 -0.06331144630405373 -0.6168950586009265 -0.784494835827903 -0.04893206091694585 -0.6042992393415967 -0.7952534707535631 -0.06556201067145182 -0.5654470917961071 -0.8221746828600607 0.06556201067145182 0.5654470917961071 0.8221746828600607 0.04893206091694585 0.6042992393415967 0.7952534707535631 0.06331144630405373 0.6168950586009265 0.784494835827903 -0.07317435867671789 0.2852169995987944 0.9556656195407013 0.07317435867671789 -0.2852169995987944 -0.9556656195407013 -0.9245447371101613 -0.3773552231352665 0.05310428094265093 0.9245447371101613 0.3773552231352665 -0.05310428094265093 -0.5139838480450424 -0.4451092818304552 -0.7332791631958371 0.5139838480450424 0.4451092818304552 0.7332791631958371 -0.5157659772286117 -0.3552253929522392 0.7796155314867339 0.5157659772286117 0.3552253929522392 -0.7796155314867339 -0.9272834542399263 -0.373133423886244 -0.03027942324085647 0.9272834542399263 0.373133423886244 0.03027942324085647 -0.07322677161913004 0.1848207446832606 -0.980040372766839 0.07322677161913004 -0.1848207446832606 0.980040372766839 -0.07315269852634401 -0.9712587534489104 -0.2265063278303333 0.07315269852634401 0.9712587534489104 0.2265063278303333 -0.924551007271137 0.1411219268150242 -0.3539633268093474 0.924551007271137 -0.1411219268150242 0.3539633268093474 -0.5138680084800981 0.857573090590434 -0.02254027852243685 0.5138680084800981 -0.857573090590434 0.02254027852243685 -0.5156107881351871 -0.500749424973523 -0.6952665161988583 0.5156107881351871 0.500749424973523 0.6952665161988583 -0.9272779039266812 0.2114525434248893 -0.3089393318573824 0.9272779039266812 -0.2114525434248893 0.3089393318573824 -0.07323009189041933 0.7592000544660637 0.6467245402336659 0.07323009189041933 -0.7592000544660637 -0.6467245402336659 -0.07384419633644265 -0.4918662305097807 -0.8675336569560422 -0.07183856815325576 -0.5367001228199709 -0.8407093423358147 0.07183856815325576 0.5367001228199709 0.8407093423358147 0.07384419633644265 0.4918662305097807 0.8675336569560422 -0.4571428387213803 0.4708925370562133 0.7545068876759978 0.4571428387213803 -0.4708925370562133 -0.7545068876759978 -0.07317072936235344 -0.5741876618940569 -0.815447468138333 0.07317072936235344 0.5741876618940569 0.815447468138333 -0.07786128607335852 0.2282437525088427 0.9704856565512368 0.07786128607335852 -0.2282437525088427 -0.9704856565512368 -0.910518420051696 -0.4126184541394979 0.02649939716473525 0.910518420051696 0.4126184541394979 -0.02649939716473525 -0.5636615363401881 -0.6008612160141833 -0.5667905005736916 0.5636615363401881 0.6008612160141833 0.5667905005736916 -0.5636121577228427 -0.5422177340050004 0.6231703335344874 0.5636121577228427 0.5422177340050004 -0.6231703335344874 -0.9128840725037823 -0.4082071319792981 -0.003099608063125092 0.9128840725037823 0.4082071319792981 0.003099608063125092 -0.07794444694945403 0.123244223494892 -0.9893106309773917 0.07794444694945403 -0.123244223494892 0.9893106309773917 -0.07784980261668228 -0.9558510645399539 -0.2833516378113609 0.07784980261668228 0.9558510645399539 0.2833516378113609 -0.910506959134482 0.181741629865931 -0.3714122471612288 0.910506959134482 -0.181741629865931 0.3714122471612288 -0.5638170052827519 0.7901416633769365 -0.2403883032718469 0.5638170052827519 -0.7901416633769365 0.2403883032718469 -0.5636943070143379 -0.2718931151353536 -0.7799505511130938 0.5636943070143379 0.2718931151353536 0.7799505511130938 -0.9128734660900318 0.2052562609143245 -0.3528907795115115 0.9128734660900318 -0.2052562609143245 0.3528907795115115 -0.07796022575618454 0.7978022440562502 0.597857660801345 0.07796022575618454 -0.7978022440562502 -0.597857660801345 -0.07293523093475945 -0.536747093346532 -0.840584921273599 0.07293523093475945 0.536747093346532 0.840584921273599 -0.07604770112068858 0.3398450615732017 0.9374017715358579 0.07604770112068858 -0.3398450615732017 -0.9374017715358579 -0.9271339304211422 -0.3737861328003613 0.02658198615595467 0.9271339304211422 0.3737861328003613 -0.02658198615595467 -0.56821021807484 -0.5485574908562504 -0.6133692422194298 0.56821021807484 0.5485574908562504 0.6133692422194298 -0.5681978066790452 -0.4856242309667716 0.664319470422969 0.5681978066790452 0.4856242309667716 -0.664319470422969 -0.9275538218035446 -0.3736639910290091 -0.004373724489596332 0.9275538218035446 0.3736639910290091 0.004373724489596332 -0.07601198010694718 0.2461619642348556 -0.9662434818637893 0.07601198010694718 -0.2461619642348556 0.9662434818637893 -0.07603488379294941 -0.9824986161570616 -0.1700445991381432 0.07603488379294941 0.9824986161570616 0.1700445991381432 -0.9271175633615203 0.1624153764230984 -0.3377488256203726 0.9271175633615203 -0.1624153764230984 0.3377488256203726 -0.5684223245221804 0.8045495901676812 -0.1720349323417111 0.5684223245221804 -0.8045495901676812 0.1720349323417111 -0.5682562327497746 -0.3357303571020874 -0.7512456197949771 0.5682562327497746 0.3357303571020874 0.7512456197949771 -0.9275500865344358 0.1892090791949394 -0.3222588421132365 0.9275500865344358 -0.1892090791949394 0.3222588421132365 -0.07602359932507562 0.7168034810914563 0.6931184471941507 0.07602359932507562 -0.7168034810914563 -0.6931184471941507 -0.07788522860997994 0.33527590521265 0.9388950732367325 0.07788522860997994 -0.33527590521265 -0.9388950732367325 -0.9186365967429201 -0.3947997214296697 0.01549138740205839 -0.8622039110363094 -0.5055471860195102 -0.0320383910558382 0.8622039110363094 0.5055471860195102 0.0320383910558382 0.9186365967429201 0.3947997214296697 -0.01549138740205839 -0.5911920785065153 -0.6603884431093904 -0.4630108319669223 0.5911920785065153 0.6603884431093904 0.4630108319669223 -0.5913185191009809 -0.6117206410194161 0.5254905006934163 0.5913185191009809 0.6117206410194161 -0.5254905006934163 -0.9184398770765989 -0.3954642704709246 0.008729431620756456 0.9184398770765989 0.3954642704709246 -0.008729431620756456 -0.8666694425626617 -0.4954474410657432 0.05844579086240863 0.8666694425626617 0.4954474410657432 -0.05844579086240863 -0.07784647127831051 0.2414764141318304 -0.967279209084713 0.07784647127831051 -0.2414764141318304 0.967279209084713 -0.07789085419739079 -0.9815182421211756 -0.1747997574819787 0.07789085419739079 0.9815182421211756 0.1747997574819787 -0.9186099994929518 0.1824781962483763 -0.3505101663653969 -0.8621876343713294 0.2786709173777909 -0.4230543735088806 0.8621876343713294 -0.2786709173777909 0.4230543735088806 0.9186099994929518 -0.1824781962483763 0.3505101663653969 -0.5914357760694816 0.729508062189148 -0.3435428793995359 0.5914357760694816 -0.729508062189148 0.3435428793995359 -0.5912701432089158 -0.1528401862184598 -0.7918582545041852 0.5912701432089158 0.1528401862184598 0.7918582545041852 -0.9184311868293691 0.1886543416202624 -0.3476977055532891 0.9184311868293691 -0.1886543416202624 0.3476977055532891 -0.8666393501579606 0.1951110697023345 -0.45920355751823 0.8666393501579606 -0.1951110697023345 0.45920355751823 -0.07785123444427876 0.7200157100790545 0.6895770896243993 0.07785123444427876 -0.7200157100790545 -0.6895770896243993 -0.06463126882157386 0.9949142282440756 0.07725592228437379 -0.06710589855194701 0.997722592184132 0.006813767306884728 -0.05175606910108979 0.9966603560649529 0.06316204524621295 0.05175606910108979 -0.9966603560649529 -0.06316204524621295 0.06710589855194701 -0.997722592184132 -0.006813767306884728 0.06463126882157386 -0.9949142282440756 -0.07725592228437379 -0.9208481389957095 -0.3897131234716203 0.01274308840634989 0.9208481389957095 0.3897131234716203 -0.01274308840634989 -0.6041265859342664 -0.6628633493676761 -0.4423157788644598 0.6041265859342664 0.6628633493676761 0.4423157788644598 -0.6043510956270248 -0.616247919108277 0.504973519512789 0.6043510956270248 0.616247919108277 -0.504973519512789 -0.06544351105841843 0.9954089662035404 -0.06984366014138725 -0.06320711920580965 0.9890618334347577 -0.1332724642391598 -0.04887595123153411 0.9919269240416067 -0.1170133272433938 0.04887595123153411 -0.9919269240416067 0.1170133272433938 0.06320711920580965 -0.9890618334347577 0.1332724642391598 0.06544351105841843 -0.9954089662035404 0.06984366014138725 -0.06467060858579891 -0.5607537460364631 0.8254531777703786 -0.06715572110431041 -0.500971452014702 0.8628543987192979 -0.05176292428173093 -0.5493551863579695 0.8339840999032322 0.05176292428173093 0.5493551863579695 -0.8339840999032322 0.06715572110431041 0.500971452014702 -0.8628543987192979 0.06467060858579891 0.5607537460364631 -0.8254531777703786 -0.9208229918529777 0.1823261521974405 -0.3447349589174365 0.9208229918529777 -0.1823261521974405 0.3447349589174365 -0.6044052953115482 0.7127115897051575 -0.3560006023861583 0.6044052953115482 -0.7127115897051575 0.3560006023861583 -0.6042208852079725 -0.1329109324677061 -0.7856537442850122 0.6042208852079725 0.1329109324677061 0.7856537442850122 -0.06330197836798127 -0.3750046590734298 0.9248591055982096 -0.0489311245994604 -0.3905865829625489 0.9192648509842373 -0.06555032380382546 -0.4332602793100031 0.8988819084960116 0.06555032380382546 0.4332602793100031 -0.8988819084960116 0.0489311245994604 0.3905865829625489 -0.9192648509842373 0.06330197836798127 0.3750046590734298 -0.9248591055982096 -0.07380847313489657 0.9971350212817937 0.01655471615135637 0.07380847313489657 -0.9971350212817937 -0.01655471615135637 -0.9138485014307795 -0.4058014096885466 0.01435730920149108 0.9138485014307795 0.4058014096885466 -0.01435730920149108 -0.5523468059055555 -0.8333556620290644 -0.020768884660241 -0.4787759179973137 -0.8775837507625626 0.02490744353284692 -0.5345304218766152 -0.844640307144783 -0.02932540937096353 0.5345304218766152 0.844640307144783 0.02932540937096353 0.4787759179973137 0.8775837507625626 -0.02490744353284692 0.5523468059055555 0.8333556620290644 0.020768884660241 -0.5444019885151931 -0.8356723357134307 0.07265137454971396 -0.529810937761632 -0.8443800785050153 0.07951511335591559 0.529810937761632 0.8443800785050153 -0.07951511335591559 0.5444019885151931 0.8356723357134307 -0.07265137454971396 -0.0730429405716595 0.9940521145746529 -0.08077822938333205 0.0730429405716595 -0.9940521145746529 0.08077822938333205 -0.07388662353121546 -0.5091637543312346 0.8574922962560529 0.07388662353121546 0.5091637543312346 -0.8574922962560529 -0.9138168602334956 0.1889226119874796 -0.3595093776702133 0.9138168602334956 -0.1889226119874796 0.3595093776702133 -0.5347331070637321 0.444464319308261 -0.7186876742172578 -0.5525632992352004 0.4314208972124874 -0.7131267838096413 -0.4788900951458034 0.4137789169757429 -0.7742423939811258 0.4788900951458034 -0.4137789169757429 0.7742423939811258 0.5525632992352004 -0.4314208972124874 0.7131267838096413 0.5347331070637321 -0.444464319308261 0.7186876742172578 -0.5297627038662381 0.3498802766270966 -0.7726158616153819 -0.5443231062547118 0.3515163285545688 -0.7616748825822854 0.5443231062547118 -0.3515163285545688 0.7616748825822854 0.5297627038662381 -0.3498802766270966 0.7726158616153819 -0.0731648938415657 -0.4230767780001828 0.9031350608996067 0.0731648938415657 0.4230767780001828 -0.9031350608996067 -0.0717598100444269 0.9967833931070906 -0.03568468702823421 0.0717598100444269 -0.9967833931070906 0.03568468702823421 -0.4570938974721754 -0.8891267751684072 0.02277600870049867 0.4570938974721754 0.8891267751684072 -0.02277600870049867 -0.07186207300492192 -0.4636242428793894 0.8831129055097929 0.07186207300492192 0.4636242428793894 -0.8831129055097929 -0.4572184704652873 0.4213675234050111 -0.7831990043947393 0.4572184704652873 -0.4213675234050111 0.7831990043947393 -0.07284731910756336 0.9966994105687711 -0.03582670890139447 0.07284731910756336 -0.9966994105687711 0.03582670890139447 -0.07295841153948711 -0.4634759310171773 0.8831008614837808 0.07295841153948711 0.4634759310171773 -0.8831008614837808</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1000\" source=\"#ID344\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID342\">\r\n                    <float_array count=\"2470\" id=\"ID345\">-2.661799060038712 0.5143268679627622 -2.305498782632804 0.7612421416708729 -2.382152232341637 0.8114993214080721 -1.041160221479432 1.808590267548293 -0.7402787510683859 2.096312634686256 -1.10929632536876 1.865939697634436 2.972256478969288 -4.376182215124748 3.770492703260866 -4.471450631513128 4.117109534675268 -4.221737622712427 -2.388085444237092 0.8134970265397964 -2.741971876010438 0.5644427639446815 -2.64317861492822 0.5288504886875456 -0.8199817364353834 1.712364972440952 -0.4647338457287636 1.921831414400039 -0.5108777407253806 1.994641913414265 3.590480138856723 -4.394738788375328 4.008359773378214 -4.223632152308475 4.159072087260633 -3.60131408385592 2.944593614898622 -4.289383837459042 4.089733578634366 -4.1362612050151 3.720629425418393 -3.737994030932695 2.918110384210961 -4.566913844047221 3.577025552436587 -4.858740273202045 3.715949880857402 -4.664217122611951 -3.63466691595626 -1.375454603305033 -3.778377344265582 -1.567813990875131 -3.532893088158519 -1.405402268119589 2.016960844485938 -3.372595413195628 2.505112526826225 -2.980634682784841 2.166877960838995 -3.20534782375026 3.161264493954209 -2.789679773232189 2.90664991550928 -2.831647031589939 2.177397347012687 2.237394119727016 2.426208068189768 2.382798047632238 2.158320842907479 2.317355631430848 3.263520854441227 -3.993286695212771 3.619577955234709 -4.398837879978945 4.186501325658662 -3.604674619844945 4.118628753531486 -4.214430668958741 4.393196497476434 -4.169263296937372 4.264289486993383 -3.591368647410786 1.088541638290198 -2.918995386648729 1.338783932921017 -3.066679041718678 2.141709561156012 -2.539653586511744 3.043585516181242 -4.434309064416466 3.752219223354113 -4.925163319361463 3.705354160579695 -4.722111991503434 -4.647535569853533 -0.6416093864536248 -4.87356633634843 -0.8206456622006494 -4.720195001665112 -0.838111930340065 5.591129172591309 -4.47290649595115 5.700563982511904 -4.661067300428671 5.976463061569919 -4.01551000878934 0.733154928316176 3.383342872493777 0.7020392817537015 3.483545504538939 0.4940113330114128 3.302791294675418 2.134980860030076 -2.543645943407094 3.07355461487074 -2.178877951918392 2.984341750436177 -1.945595238278266 4.353781662995391 -3.563669890075839 4.486729766309145 -4.140997679661525 4.715175540128614 -4.237778325771608 5.39894081999101 -2.780519209470858 6.205863006664616 -3.061082790207338 6.229541255743985 -2.815692720273948 3.243896960758899 -4.281959803351813 4.226158437872415 -5.067116002014613 3.95954576161025 -4.766474747050036 -5.362925845386348 -4.061579228975656 -5.444027986460442 -4.257840651882353 -5.20917675816532 -4.076852570570276 -3.302965120206075 -5.295307391122558 -3.503674895768212 -5.500147149562402 -3.414236209071933 -5.48280054980703 7.060600724299492 -1.127963471288239 7.357365789459331 -1.181805828420435 7.153708221003003 -1.055334577185998 -5.546105656382263 -2.541558169230477 -6.376601944710836 -2.548300528389567 -6.376055494793524 -2.791910837103957 5.579123822736869 -2.942901892769273 6.001290330568972 -3.594786402053359 6.292020490288079 -3.896997050653707 -5.410310060843501 -1.264541462392171 -5.639737196896117 -0.3708988937511936 -6.445697115556035 -0.5327398872694064 -5.548733127301645 -0.4984393686878871 -6.402386873826202 0.3474497948727556 -6.378040758730448 -0.5490869415448467 5.436007331621839 -2.753141288256818 5.589949262777724 -3.009778769479917 6.249443067828077 -3.021812954622691 2.733685449622757 -4.60808068335111 3.550020822014475 -5.480747652159369 3.685386022701926 -5.416193428280835 -3.150145197377329 -5.815183648067049 -3.23901928547867 -5.834241632626324 -3.214384247080245 -6.200299681307078 7.077515231345002 -1.077833697990142 7.255757232167886 -1.180810893730796 7.37374899284945 -1.133457200799908 -5.64053701285209 -2.362387587081174 -6.473061319915687 -2.607393325339736 -5.813898093729755 -2.627781693529012 -5.571323704244727 -0.4508006085162343 -5.590385402988608 0.4192953775659653 -6.420823099055467 0.4090219793829775 -4.1449948999066 -0.3925930562476963 -6.412003022809788 0.3723260551637551 -6.402434335445965 -0.5259414841779818 -5.571948609914557 -0.5184370324832719 7.511011023866709 -2.787130807200926 7.386028045278803 -2.821643815884106 7.79264834779636 -3.094623924357429 4.528469987559812 -3.533326890439096 5.16365295085847 -4.520813777264999 5.288427740176394 -4.450421141627921 -5.37737609444318 -1.393369944667684 -6.43794403232774 -0.6842351375800343 -6.177999987344328 -1.570835269398446 -4.06048470052598 -0.8115314550383995 -5.627977588762684 -0.09354875387037062 -5.468981652152383 -0.9966139960495889 -5.698594924431132 0.04705198934153895 -6.523407502400124 -0.04000140227339736 -5.604833719540404 -0.8427021686719978 3.397833450122788 1.436453299966811 3.0682720466757 0.4699448618913633 3.120099824776935 -0.2576073983579654 2.698888249206223 2.153148196856395 2.746116622930116 1.15315754419546 2.182281272233411 1.731316065892566 1.762515223752795 2.675938097440283 1.426866649410332 2.153052203845308 0.6739441528367607 2.964104390912614 0.5470052852914087 2.380889252754579 -0.4762730165452944 2.975353590359535 -0.379127025517807 2.394587160073535 -1.269257263899759 2.192925190064263 -1.579665433403898 2.725371249155675 -2.044294447642872 1.793827010075304 -2.540424688596996 2.230643059343542 -2.635383615910281 1.232752438402079 -3.273119380180543 1.535119347208355 -2.989941374167471 0.5595534147310203 -3.076513428396748 -0.1659543789840967 3.797178894091073 0.589535539530324 3.584954115964931 -1.189073698497411 3.86146279790015 -0.3123520279787206 3.002871332391609 -1.96190235463934 2.897061565363328 -0.9648552907429856 2.135972779385058 -2.5645770483233 2.418887774560047 -1.588964928439499 1.728132329397168 -2.074478232231995 1.100337098236535 -2.939288573049616 0.8861221859959634 -2.378246195955483 -0.0462380938019025 -3.05896025402176 -0.03227092295787773 -2.473295078857695 -0.9454591957336178 -2.351161398673499 -1.178273536083925 -2.907562735203924 -1.772319464308227 -2.022702851046091 -2.203293041006291 -2.500402028373014 -2.439402056737099 -1.517112239780935 -3.030200242278591 -1.873660853038731 -2.887398122901175 -0.8793125957286936 -3.595833115298375 -1.078161158264579 -3.710588442244218 0.7070679054892642 -3.819964906568851 -0.198740607318797 5.603135835129864 -3.288385875698955 6.810870890825931 -4.291665963233803 6.262701037578077 -3.297688588377309 3.401754136409783 -5.385730003367606 4.499503752106183 -6.170792077931217 3.537805570138652 -5.322074800046389 -2.456301864786447 -5.979189118527012 -2.487130147304622 -6.36684873423582 -2.402367420971701 -6.32348935043586 -6.510171301073201 -2.96837143036549 -7.11732698224412 -3.953428325490446 -5.851137594154357 -2.991204346202717 -5.60265637794168 -0.5278164021063335 -6.465043856691065 0.3240294976779706 -6.431600829084085 -0.5856926335526124 -4.209404235825325 0.3044258401130099 -5.633236098381424 0.2161519211681857 -4.153220584432583 -0.5919371519429612 -4.215291073560992 -0.5744977462204292 -4.263529414155157 0.3221991449134441 -5.686973105331986 0.2076154673473941 -5.65143262943119 0.3334005600536639 -6.481253406832044 0.2821448753630127 -5.629668278170908 -0.6018165566198391 7.289855802678771 -2.825890216437976 7.611421202677152 -3.106627870969063 7.70924221545971 -3.086643914958204 5.18297450631685 -4.530079671339261 5.895028297840041 -5.457121340977217 5.307646526988149 -4.459574441591602 5.332209067274681 -1.615896687539317 6.143014995752494 -1.761979428609921 5.629008267869499 -0.7463477273334715 4.036035568395636 -0.9993909140033963 5.449746623983231 -1.157975509815105 4.221778863882256 -0.1138895382488578 -3.997216344816255 -1.156592358935419 -4.250909299071609 -0.2815645921801652 -5.638210010572456 -0.5486783925207119 -4.161558112449938 -0.6357893580252552 -5.649991922666122 0.162673834209167 -5.584920386969356 -0.7286636150463668 5.494720606752197 0.2501486147772298 6.275923150491728 -0.65523344044532 6.325862417864055 0.2471940347496744 5.493856655715302 0.366706868280492 6.307487637225778 -0.5247153149898205 6.324667251178918 0.3785027462624838 6.335973878144486 0.4200649213385262 5.505412349689225 0.4046323204088624 6.330840177740377 -0.4832391865050514 6.354965736662829 0.4299973635642851 5.524514761868456 0.413796645671067 6.355104265392128 -0.4667206081220865 6.348686999878188 0.4271997584595754 5.518228264842925 0.4008358708994737 6.348532651289016 -0.4826861760209525 6.405593025417301 0.3823184502673627 5.575015698521129 0.3688125470936636 6.402526849244486 -0.514599815300171 5.580948395643242 0.4157367094855328 6.402189221181026 -0.5113951445993928 6.411353286003433 0.4000658934411254 5.626549839694851 0.2839681310038151 6.428226229766665 -0.6163174962283112 6.457616882721426 0.2866889367729694 5.679613144525984 0.09802792271163478 6.425760748703323 -0.8323530921485491 6.504640036469908 0.06882814165186642 5.638390409749905 -0.3908745494751295 6.259225536954721 -1.368874127389776 6.462225544659513 -0.479789751691096 -6.409194594973165 0.4107466294511674 -6.405189489514616 -0.4925506539050644 -5.574851926507346 -0.4467662664155951 -6.3822125066093 0.4234890959370029 -6.382694340672956 -0.479815042264443 -5.552194299191942 -0.4361777819642201 -6.357692766381553 0.4191095339513883 -6.358135509214947 -0.4841960030603822 -5.527660594977107 -0.4414161723271314 -6.337686374565175 0.3978657857529473 -6.333509171185731 -0.5054400229986481 -5.503241243690558 -0.4621172308995953 -5.479788392845236 -0.5041294043719613 -6.324676198831939 0.3526571860783325 -6.309573809879248 -0.5505412985441708 1.745957532312295 2.657713232886528 2.682327380740597 2.134919811093426 2.727282558497929 2.374467822102313 -5.455101643277436 -0.57908685677795 -6.324274572841182 0.2666680609225586 -6.28355707143229 -0.6362917545517316 0.6652336964723358 2.943428855169668 1.753803744658647 2.655260171310598 0.8867903543797634 3.118978236478919 -5.290951497203457 -1.319381353096898 -6.327435422916969 -0.5524335438192431 -6.107009504749997 -1.440571652735586 5.762356183245927 -3.083708496260667 6.572423246359725 -4.03807808733024 7.047109981082493 -4.025925235254194 3.610847825014008 -5.236842748222333 4.559405230702663 -6.109249604868882 4.719319310056894 -6.012525550950048 -1.964009241795349 -6.507755706175733 -2.046393508680486 -6.553864915925065 -1.635076611744317 -7.643805512306598 -5.495336325949821 -3.347602026111755 -6.684777216062551 -4.368633898008876 -6.226933058893753 -4.35715210192923 -5.604000275338401 0.3645158178360241 -5.59045265464766 -0.5707972914437972 -4.164155400215128 -0.4808138035478431 7.684874037027289 -2.989922987339559 7.58708621916952 -3.010007229700875 8.498994210341262 -3.863426396329256 5.143033007068749 -4.539180625640339 5.717787806425276 -5.541268897230905 5.860507161178415 -5.472263804657364 4.192676241827535 0.04192978539679174 5.490996361882291 -0.9480844056190318 5.615427661959771 -0.05307178236898648 -5.462209449669895 -0.8043086080673315 -5.545667306279297 0.1291291351249389 -6.371687425542625 0.05659531610126218 5.523758680554177 -0.4338833848854653 6.354207285310459 -0.4112716340542739 5.523565805979221 0.4664539955697984 5.536572228151663 -0.4226032985896472 6.366920291787105 -0.4012123226992183 5.53167411224067 0.4777514955588634 5.547326545969745 0.4777114329058925 5.554125450147815 -0.4226259836262465 6.384470114428415 -0.403345774636922 5.559616742817855 0.4536184898915917 5.564444714190893 -0.4525417513668846 6.394798530817934 -0.4242064713489063 5.880914549031902 -2.06864522518943 6.734858187658725 -2.229716846200112 6.706382990873093 -1.992428992817538 5.594342931635121 0.4536484752102395 5.59609063437345 -0.441977094805049 6.426673737565221 -0.4286928413741457 5.554394599787321 0.3625400882458029 5.552652560288326 -0.5062900454127818 6.383108753397958 -0.5201741029379436 4.127093708298099 0.349085374462541 5.780362907360219 2.088063182125595 6.60870069498146 2.039406599150892 6.630766041321724 2.290072167503032 5.652179197504132 0.4063675696246454 5.630277932583336 -0.5294891830228586 6.461347556712913 -0.5273102266094472 5.689181062059775 0.241125792540077 5.646284167170914 -0.6502602675244906 6.471783918825218 -0.6694862709089748 5.604943682381954 -0.8548758041057144 6.435385846454905 -0.8886697541752605 5.705258546267622 0.04954383269713061 -5.625878457091545 0.4128913173724724 -6.456279603494737 0.3681045028935301 -5.61868898488491 -0.4874466767329562 -5.597398384708466 0.4398433145490905 -6.428081916010963 0.3996480928002333 -5.598883524092275 -0.4605082447537164 -5.571119059021333 0.4515076979844473 -6.401896102512689 0.4147173528205499 -5.576957820490299 -0.4488343226107577 -5.548918425932076 0.4519197748685152 -6.379668149979191 0.417815089717694 -5.555720079221102 -0.4484087783848311 -6.476678532968182 2.647031326878516 -6.475752441667305 2.404888014658125 -5.644588786272323 2.432043406180553 -5.532783473477472 0.4443536015118346 -6.363430823466654 0.4123864931825314 -5.537898422956329 -0.4559979435743079 2.254016958954333 3.634765079931456 3.232240892558104 3.344958568234572 2.52699327365733 4.053668724156345 -5.513894893397796 0.3670495865317552 -6.344343569199598 0.3621523079421049 -5.499906396557383 -0.4989705720211488 6.349136616735253 2.738226221440089 5.520765150887098 2.493018469052865 6.351232608300514 2.490855442909809 1.697980286874242 3.981481675466966 2.558079519991281 3.509863443645249 2.83617451174444 3.92667842082563 7.05576917080125 -3.869350706402243 6.581129811636943 -3.882599263004092 7.662203559623302 -4.913533654818638 4.699553073210266 -6.171834810212214 5.781796714671636 -6.755173925272217 4.858615578581932 -6.074245668090698 -3.154857143866117 -6.287097760729689 -3.004235976416077 -7.446203671646552 -2.923013648991004 -7.410697797244424 -6.238904897399809 -4.261501314141265 -6.696771126747163 -4.272424854255496 -7.233100912016699 -5.2780072099835 -4.172281427259849 0.4236948597737338 -5.599138070426414 0.3723794843949643 -4.160046578622444 -0.4737436785604704 7.688724458774837 -2.997587991844135 8.493484725290733 -3.878498459511783 8.583971388279348 -3.861854811376837 5.630635840262678 -5.49305586462806 6.194793007120643 -6.435297706577472 5.773769347551276 -5.42458368153758 4.149493655589789 -0.666422043308793 5.576712249359321 -0.7002834793214141 5.637463441909986 0.2063136648478206 -2.752395262503766 -2.388220319902878 -4.557148381589244 -2.4438330958985 -3.791997104759317 -3.160289595899267 4.080557974305158 0.3597441476089266 5.479408896688173 -0.5431689211380512 5.508185884087253 0.3568838258145871 4.078734300599257 0.4094231397152907 5.49610738001893 -0.4792775997923502 5.506171941511711 0.4210506271797914 5.512567720610957 0.4401719054329141 4.0852749331553 0.4248645746183525 5.509503751461832 -0.460178170981151 5.523701160329052 0.4353960044653995 4.096473844284713 0.4192446804514229 5.523730938822248 -0.4707721957735811 -3.966759717564554 0.6230881827453207 -3.797079964430929 -0.1886666454908832 -3.68214331192589 0.7048003957772115 5.914682744017741 -1.996607342708859 6.117129859104871 -2.221333120763166 6.770678563460123 -2.150790600524764 5.551529312835765 0.4495228068059489 4.124268810346557 0.4384218376475834 5.55221507049154 -0.4461036560030883 4.137603457175834 0.4528163016298624 4.138560890324671 -0.4446638803693676 5.565864599723549 -0.4313945211553699 4.213980714084771 0.4205838582382181 4.205959402934985 -0.4768728165044885 5.634227758319667 -0.4402423970654657 -3.875394710153257 -1.003386691537358 -3.568804610354984 -1.073847359963925 -3.798495665402174 -0.1820849155691501 5.916121464420085 1.806762106662963 6.776703735835856 1.98005265820314 6.123994606683545 2.05525332117598 5.585205845377178 -0.4925639279401325 4.169597344998032 0.4024386876104048 4.15762018592527 -0.4950097606756016 5.597675479733299 0.443399893764163 4.156617820371098 0.3621291455754826 5.572485063851977 -0.5270898869408937 5.584202678227232 0.3648870756734438 -5.55421954180395 0.4325579296179262 -5.552090815762549 -0.4677962709606923 -4.124925005749004 -0.4221101842327787 -5.538576477063474 0.4352706727699609 -5.538876324918283 -0.4650816136418131 -4.111622469373085 -0.4214203977710727 -5.52426233743118 0.4295055149755776 -5.52435757429008 -0.4708482185904604 -4.097125150651432 -0.4279153426255751 -5.512878698675422 0.4153870811823178 -5.51008541062717 -0.4849546898017661 -4.082981753191275 -0.4413168658447663 -5.803781728166912 2.695243922016638 -6.463048840774564 2.677056089199609 -5.631193550035248 2.461507415414935 -4.069649252612988 -0.4640573414130001 -5.505886766735717 0.3892222330192646 -5.496456165566158 -0.5111077385403589 3.395628482009644 4.365034469375767 4.067083141014313 3.636295497457961 3.834919411783258 4.229177482280971 -4.056840720569126 -0.4789649353516526 -5.506608144241801 0.3286859050130154 -5.482838903136125 -0.5372022959242325 5.472318711552627 2.507915073080861 6.28695098665998 2.780121525531526 5.627346059598288 2.772713745747252 1.77785141209766 4.72216774587029 2.915784678967103 4.664107656039868 2.539091054934751 4.89062216698243 6.619178588444171 -3.828609251683794 7.310729392674782 -4.86625049600592 7.719439946235701 -4.846904017109719 4.932253880902296 -5.959704110981211 5.850334017365131 -6.675404868943827 6.022785877259992 -6.533411281220287 -2.438202460806775 -7.566816113078535 -2.517246359618165 -7.605244271636148 -2.225179099355021 -8.573899165916442 -6.147305757602014 -4.334075845317214 -7.127119524533855 -5.359187381576786 -6.717869201020857 -5.349149792973891 8.588931033037188 -3.936947027258597 8.498392206892227 -3.953414187342754 9.271520465878172 -4.829384250182987 5.390870613633427 -5.57345836591487 5.785867199317528 -6.590653648012299 6.001688404292493 -6.520400303231552 4.179845061663457 0.3098219691396784 4.137508093891616 -0.6053915677220051 5.612246399584024 0.2811336414350372 -4.137244533226672 -0.3906263536147895 -4.109915944167414 0.5066086495387171 -5.538764975333309 0.4681121719386963 -4.093491571230447 0.4281509816797937 -5.520719793072696 0.4014243121698805 -4.093491571230447 -0.4693098312026066 4.095955679305225 0.4666987771532346 4.095370697688034 -0.4307901038188899 5.522613030223019 -0.4088759348981764 4.103119696156001 -0.4247646836698221 5.530293461700541 -0.4036800185450093 4.100600948168641 0.4727237170128614 4.109778224059697 0.4720632539261433 4.113528349182373 -0.4254116217219571 5.540696074459932 -0.4062771507909478 4.131128445010857 0.4687326012540565 4.135579146547521 -0.4287439876988017 5.562829411054837 -0.4168563095352443 -6.57558798965443 -0.4291223668602024 -5.949686005033862 -0.4066665999772727 -6.106218164610338 0.4067214157437564 6.906160533801982 -0.6164503317486078 8.588008637681035 -1.014951336896927 7.484402007252639 -0.3666865768634973 -6.594235457051168 -0.1072712048355581 -6.038886626027283 -0.9065050245338635 -5.968331417790047 -0.08485090619073749 6.094257506179066 -2.609111482345269 6.38760915225589 -3.073919155086647 7.785043341838376 -3.027241022869439 4.158247094811467 -0.515202285144675 5.590918326588575 -0.533762702622409 4.182569284383959 0.3628143594684092 -4.154959419916142 0.4418540299037406 -5.582161926964881 0.3971661449070394 -4.151049002528265 -0.4556168108391424 -4.138039279917377 0.4497783237258486 -5.565399234233393 0.4095546653307514 -4.138993010500824 -0.4477007573165332 -4.122737751398939 0.4504695718699686 -5.550147546112627 0.4135444010196748 -4.126058856890215 -0.4470074540046948 -4.110066034056458 0.4463155858593719 -5.537457493840162 0.4119462391451804 -4.11381972194354 -0.4511845102803854 -7.084231717134023 3.932564416781103 -6.487814456845412 2.963892194643452 -5.828619448587592 2.983631213287548 -4.100749980947755 0.4387628393962917 -5.52807408050241 0.4063539597087571 -4.103273851978412 -0.4587102997819708 4.427237314102075 4.211817097101426 4.633612095804903 3.613061858163787 4.717344599847353 4.192502098342859 0.2782028819448612 -1.450158226014998 0.6921164850603934 -1.628641759935543 0.3206106848921589 -1.391178060408406 6.848525411149121 4.203593104396327 5.634213361410922 3.188008916534419 6.293848033120097 3.193539879314641 -2.299859201895115 0.0619301615705932 -1.948271184522626 -0.1883172081444611 -1.891328164057275 -0.1374743576887198 1.568678405240158 5.068661018134691 2.326785986090503 5.245640623360807 2.155429516005429 5.433102250304442 7.732827786625975 -4.70339119690072 7.324212926387032 -4.723950566267607 8.319111193875182 -5.609547578366657 5.538615148466631 -6.572469865395896 5.953360540920912 -6.578961989440483 5.713279785731879 -6.432160030464202 -2.330512122076828 -7.585630805526254 -2.104055885263323 -8.590898403140145 -2.028798512837025 -8.548366861161911 -6.72869513150474 -5.250866900269577 -7.137958890888548 -5.260559550807522 -7.608945487818658 -6.255703576101399 8.496674351625121 -3.951322323121277 9.179300321773068 -4.839084543618871 9.27065934491648 -4.826824061750197 5.650766369438735 -6.458977061674541 5.741440448300319 -6.687316064812344 5.867141115348349 -6.389785434634255 -6.656295097298122 -0.05912841987920928 -6.586162527374134 -0.4246975448627076 -6.116633110672703 0.4110907662336733 -4.81651597652847 -3.918431791851718 -6.154981253152326 -4.374781149297583 -6.224683474972785 -4.744352959566725 -7.718550954367429 0.477881345093763 -6.339258681834792 0.6682309068354281 -7.714038473572953 0.6023579286995218 -6.610675455021291 -0.467456379308435 -6.019037035461805 -0.8972475817193066 -6.574245482658096 -0.09795340618191402 -7.624303380680911 -0.9476220364064913 -7.617857677143023 -1.06830930505799 -6.219167844454492 -1.070784404659 -6.909048470343557 -0.0813386710929849 -8.650674722245444 -0.3398743600165811 -8.259673190808709 -0.551958884871283 -6.715952600713422 4.289071664462673 -5.523929073475165 3.290676722131466 -6.262729427223396 4.280205518061553 3.463533200456307 4.110800280381099 4.069298934555739 5.075875895797951 3.937843837902142 5.147301601424823 5.102250521171852 3.458752088073406 5.450196430193508 4.151242919036542 5.209205622771145 4.035822782958834 4.099195002689461 1.148160626873494 4.389280951963332 1.1286483224619 4.095337276055221 1.204356443781205 2.351942138015295 1.100568588629236 2.769151279432363 0.9159566178321216 2.771021747791493 0.9722150784720091 2.195182696189024 4.692738226224547 3.069583945778339 5.566693212579978 2.935863018679035 5.626067172882261 6.54043165342027 4.011409472370985 5.735592185692652 3.036957278107067 7.015206002807851 4.001647704310436 -0.6317786240502441 2.516375579235664 -0.201766641564953 2.347215580046476 -0.5745818156162452 2.549565507132114 -1.605305603904998 3.543518012266425 -1.400727010858305 3.377949627684427 -1.343223786508591 3.410810264610257 1.807530471990459 4.915030062690574 2.402231215159181 5.271407892927533 2.41298121115136 5.483652071981339 7.295398628059252 -4.757193145759694 7.898642013392817 -5.666257972030044 8.280825905442994 -5.649319198347968 5.529399941378703 -6.811400320934341 5.833464914441211 -7.051644702807992 5.944142243046866 -6.818013508429276 -1.736609375029659 -8.599979835830487 -1.810456390209519 -8.644014698631873 -1.697471362572419 -8.866096477070775 -6.785103664943274 -5.211197734496072 -7.672080099481478 -6.212367473911156 -7.289404194507263 -6.205034285805037 9.271905004153444 -4.866476039442853 9.180531261399484 -4.878668450017517 9.400274494745993 -5.083337609184246 6.154288376155829 -6.665795398995026 6.467954122720688 -6.67559446441701 6.272982820837651 -6.366489343458639 -7.300822201226315 0.4995800430167435 -7.157860533619931 0.3007726256670714 -6.61782679821126 0.7707276170720391 2.4673256467482 0.9193765930242428 2.414069527238531 0.5491065533840862 2.513799392591445 0.5514798227418101 4.05665024727122 -5.593268903064636 4.516995633749293 -6.879723111970071 4.497717665920813 -5.731831628612675 -7.379442888224687 -1.044659418331918 -6.924392869678563 -1.04217891225324 -6.004154607457918 -0.8371542672269368 -8.968287821898736 0.2934255125263521 -7.542023281758183 0.4771849648315717 -7.537423955761589 0.6016595813773412 2.557945762132749 -0.6005614891247557 2.458215345371251 -0.6029203753848054 2.534015244132297 -0.9706957197685954 -6.99273692576547 -0.9065747945953878 -6.293570957011183 -1.129650712023979 -6.885079482756589 -0.6997488815661535 -7.63261541801149 -1.0054346037006 -6.227488975147699 -1.128661156671277 -7.154016454095761 -1.004976464628402 -8.922697736279979 -0.9064193612649891 -7.547280308312806 -1.067918414717907 -7.553775809653298 -0.9472327983245749 -3.98597483593536 5.652457902991198 -3.905101183939973 6.020618958475664 -5.05305560476592 6.622148164113315 -7.27772491667968 5.206817501283571 -6.72868968733474 4.136058323286965 -6.275449585183051 4.127744945274094 3.129344250468945 4.228303088262042 3.573350367991242 5.273079094114264 3.354175750142323 4.951616781581719 3.772065297827613 5.060605702879127 3.90441428202094 4.990208963003467 4.269826941252457 6.128012269342688 6.943140012061708 2.225444299620932 6.655360169729002 2.163960619423023 6.702412297663996 2.1096849018762 3.500449096548218 -0.3224776095588098 3.789307562308364 -0.4094590512181034 3.765924924014517 -0.3463911266747499 2.73421192946776 4.403165535243263 3.38025674050513 4.943435513391906 3.64298411173188 5.25514485092069 2.877940667869294 5.585437524330192 3.011909711981109 5.52641071277909 3.774958042568282 6.421429065416803 7.609975503683925 4.890018825072455 6.543176739322377 3.920145912335438 7.017936891579413 3.909965806713123 -2.844537059602854 2.008309631066081 -2.586835986024328 1.870394885037136 -2.761677657248522 2.029500599706688 -4.008092862297267 4.777051305618736 -3.918084073209415 4.576787760213856 -3.835270694369624 4.598089772890178 8.282079997379809 -5.637824583607729 7.899901978429571 -5.654845163920292 8.467885565626732 -5.943713672615953 5.932658345836569 -7.048441644263794 6.207313497316516 -6.865170711259076 6.042017955053143 -6.814426757901017 -0.7708877180182611 -8.67837023956853 -0.7033889763933321 -8.94094689105154 -0.654931246901786 -8.87572412908016 -7.29247008265804 -6.16825830814427 -7.675148319401016 -6.175515803589196 -7.828473878628092 -6.498814991450156 9.163513299032058 -4.884771330406955 9.288607905876326 -5.078632244589382 9.383696738578189 -5.089147503819769 6.156160333179555 -6.85925835793994 6.463426586427903 -6.72963564814617 6.149763548693514 -6.719783069680686 -7.342427430768073 0.2680930777047664 -7.099418415463823 0.185251862407488 -6.416444883919922 0.4564335272708737 -0.9387513316986113 3.177981314570622 -0.9486586336982406 2.928653260658535 -0.8733676025194243 2.955435193762439 0.1623900218977226 1.096942491253779 0.2049310777999552 0.7494616287782674 0.2390899787757239 1.121124098115781 2.561736891303922 -6.107532364065592 2.351259293116423 -7.267382833582784 2.697162291991673 -7.439733174679802 -8.930165451960262 0.295333508518245 -8.914208763313722 0.1371312959481615 -7.483393821633138 0.4455058785349199 -6.95826376736089 3.067299847819562 -6.977197707339149 3.142543371988218 -7.432231818739337 3.138655979150429 -8.076504999067801 1.942273857748956 -8.129971552498796 2.009779509810612 -9.538039950976902 1.753491054251887 1.514655812151018 -0.7334080930896799 1.495417258704747 -1.082469132367868 1.586050509773324 -1.101728573334035 0.9056622836245004 -3.026816851248352 0.9386843079517104 -2.804837975377466 0.848532342347732 -2.78422799511566 -7.107027252437868 -0.7876375390194846 -6.180492195800953 -0.9112870973468583 -6.87969655198374 -0.6882856501199133 -7.128542655161807 -3.081103406424559 -7.625633710012609 -3.157201018721693 -7.147035477462651 -3.156399070821825 -7.67646206602808 -2.797370727957003 -9.085934916881605 -2.809746725564581 -7.718161150097957 -2.869832060215034 -8.908472463734093 -0.9456976228573982 -7.529679053645937 -0.9754095865071504 -8.90510072222548 -0.8139328844854772 -5.881338388599651 4.50406112808743 -7.253841230344557 5.1963013655474 -7.210690829545285 4.875994604011638 -7.193159703222822 5.269845207239835 -6.201636592931429 4.184642820135692 -6.783802307654304 5.26301819230866 4.462075121711869 4.808897275595138 5.053724850986439 5.865516110681777 4.873549189960155 5.93692711853209 7.561292571124231 3.105880725196114 7.19840840418086 2.838397488863771 7.292904795002277 2.808409441747124 8.1446895956849 4.306100996550779 7.33108804176471 3.332484017562069 7.430419082646078 3.317686977760138 6.976466929022937 1.872974094695157 6.78298815180057 1.772553044467654 7.068893513549147 1.839229311548257 -3.375200879283819 5.745125750166509 -3.431496126799863 6.131233491670329 -3.45919853437108 5.75786510951576 -2.955184331484319 6.221493854929197 -2.872356450278772 7.328422963449643 -3.044170914533516 6.259261082509404 3.025786591428482 5.50585552532548 3.931373325290601 6.336109984127391 3.791337376614206 6.408479467987543 7.238755424174864 4.860237867715482 6.567221837176867 3.884141568478665 7.647720248807206 4.84458354354674 -3.854266820333741 4.863838823179988 -3.683295487647069 4.683780487940838 -3.769795641590861 4.853212271834425 7.967133376560895 -5.610343800351751 8.197397358396524 -5.907933248492452 8.540483215386344 -5.892575601653754 5.80543341433306 -7.001506192640144 6.197624860810667 -6.97081610700894 6.081375034645086 -6.819435075955772 2.694052004896493 -8.635718625076724 2.672106037527454 -8.709265195113094 2.8140929380626 -8.79297493691973 -7.172208132465931 -6.266624957468202 -7.704084751759124 -6.601281756698698 -7.360840524520197 -6.588309894264103 9.263260326210883 -5.103814835884413 9.405523130976883 -5.249161905572431 9.358294433600234 -5.114631927304724 6.099371398642951 -6.823128462645105 6.241312786510573 -6.960253543023304 6.407080260315937 -6.694157141549344 -3.00608556832405 5.019451911661345 -2.940368701141873 5.082412968960504 -3.130554944520676 5.227407523900158 1.353517222041405 2.969811712864057 1.392768651892923 2.763381990809926 1.443907975064636 3.009566474741562 4.266942852427738 -6.615506992460908 4.716744199031261 -7.743148165624424 4.650737616699059 -6.727729441427135 -10.28668002886894 -0.0937828797595812 -9.055407814662802 0.1362472901876673 -9.071140312411432 0.2944633974503092 -3.608858147557148 4.770238110183211 -3.750680886215156 4.97120033830512 -3.773360530426287 4.896600557490119 -7.100705157999414 2.711278583091485 -7.576834581716011 2.773091943295637 -7.53289520959112 2.701458828563071 -8.17428369246934 1.941646553319781 -9.62934706237974 1.724115776184242 -9.577442512528513 1.663494001273091 -7.780241514356955 -0.1627572382919025 -7.925738781038671 -0.7049677603238156 -7.81789872000735 -0.5108880977619668 -0.4003858537230914 -3.128404622530123 -0.3271898303935311 -3.163058982880862 -0.3664504784439115 -2.918283023253877 -3.210576798330826 -4.677163784487616 -3.334860453426127 -4.865370207353467 -3.148104590430492 -4.723003393556979 -1.316512064019561 -5.240797323619147 -1.443959236100936 -5.377229732235214 -1.395218845609698 -5.443644561343438 -7.287339521616378 -2.718342435752688 -7.744361347278708 -2.709899126802834 -7.787263952156327 -2.781924358475356 -7.666572568824681 -2.976800579108238 -9.03710292577769 -2.925003092659073 -9.076011327401556 -2.99138269813291 -10.16170857392661 -0.6825958909967832 -8.851696614398072 -0.9458017672404062 -8.848305698669181 -0.8140373333688989 -0.6418995047070736 7.398626793913742 -0.3851475606342147 7.649532137868212 -1.040226995247436 8.578003799303744 -7.687594056897973 6.085286508094633 -7.200547990069486 5.143462673449845 -6.791185263749208 5.136836418696446 4.936590354621746 5.981307350482459 5.116453585483766 5.909410591143172 5.328590197088473 6.927864112478795 7.306308382958497 3.212871115809425 7.037176307619113 2.935283787564428 7.40562559675408 3.198016750009801 8.188880842524677 4.269016917995517 7.473686813896915 3.279455971915816 8.280426782920902 4.256599975095995 -3.080035187647084 5.826761646029444 -3.032336604943796 6.176772711451529 -3.121678174578922 6.214017685437319 -3.997509586052842 5.931604622387955 -3.978727878031649 7.010881474673525 -4.064391166869241 7.039200860234 3.73907649699957 6.378775164524912 3.87935099306713 6.306692144878103 4.716810930553826 7.113391170709449 8.224676172670373 5.705182593954473 7.244516300415924 4.759328148477268 7.653443140774132 4.743071349325396 8.246228042817288 -5.420226833230213 8.685476913952527 -5.517917613663904 8.589069989065436 -5.401804206253233 5.716535945349822 -6.99827792502101 5.829734031808918 -7.151083490739215 5.950380016897553 -6.888351573934867 5.938075065571109 -7.477345904830089 6.079310741766163 -7.560349740341263 6.329976887835218 -7.444445810242726 3.506912979032589 -8.46166022371338 3.642055186490267 -8.611141909815 3.648030716630628 -8.533174653926585 -7.415617247831406 -6.123164672229621 -7.758917757279447 -6.135179534202703 -7.838113406866619 -6.259107765244684 9.199320618261513 -5.189777088698508 9.242747120781061 -5.317344943838871 9.338938362228362 -5.336702837402881 6.20428809670488 -6.752999988327257 6.586311701542256 -6.745322910101302 6.441712748022574 -6.609927054303896 7.313221789611619 -6.849888355574418 7.521171262621915 -6.706452308652097 7.45901239198993 -6.576650445976441 4.791985438184079 -6.393448434642259 4.96101672126361 -7.410250837308657 5.327297900583988 -7.497732947390289 -10.24084246468124 -0.1040529529873537 -10.18786210624122 -0.2959617694932749 -8.973048322673785 0.09368805104582501 -9.791558687129761 0.9814944629179719 -9.849740241730554 1.038480174062652 -11.03574671084916 0.6911650590541538 -9.415230739134167 -2.222866846366144 -10.75659909304071 -2.068782967820127 -9.461761610005713 -2.286137886242992 -10.13482258713969 -0.6655093740248087 -8.789002283949557 -0.747684339765454 -10.09884371873968 -0.48395379180013 0.7062362991890919 7.398958754048512 0.5215751719474426 8.610576067740357 0.2420699431879769 8.404827397964192 -7.738195418593551 6.050153291287474 -6.837541269088914 5.104195416427717 -7.355456083926312 6.045252120048752 4.669626389314941 6.035463120990829 5.087364117575771 6.997668551183808 4.849663849320372 7.057734058926635 8.887757765929553 5.204713154954328 8.19978347435528 4.33905670336054 8.291339532033625 4.326686009564462 -3.706736949528631 7.154787763625316 -3.646455252176806 8.220131701559021 -3.791426498015353 7.184865016877708 4.017462302655394 6.193364490230405 5.007217863813386 6.917949964255357 4.832422322582662 7.039874860515124 7.815867115999467 5.747013697197486 7.225753052870662 4.782860808236814 8.198275477145513 5.733581468844197 8.255934873121877 -5.425000924755263 8.354061003959405 -5.553084446659128 8.695492439150057 -5.521828640662377 6.214707203613981 -7.128945943891515 6.448048886577796 -6.99394840958314 6.32941090754643 -6.864572112469428 8.221420654770943 -6.011596916810401 8.268057903211902 -6.080553301519491 8.46005302508858 -5.928526389953852 -7.400535590715782 0.8717983867746344 -7.710056807611661 1.143598374101608 -7.739636148797682 0.9160539968145308 -7.397728585105807 -6.149469981422893 -7.820072536121256 -6.285705449040004 -7.476335612334193 -6.285611833348003 8.889699937979515 -5.367090655374562 8.802036041508512 -5.579571116364043 8.983551949191488 -5.392582583260899 6.214109891629436 -6.929543324702434 6.331806366037938 -7.059450696779978 6.596129007660912 -6.921729238484499 -7.479397580784825 0.4238032242109914 -7.823134473615471 0.4236551229774854 -7.840906910557184 0.2065396890655799 5.03613177516775 -7.371151395670309 5.44714017930667 -7.793709156066238 5.403250354818505 -7.456433614001966 -10.18932270967896 -0.3660431812972971 -9.901968525166041 -0.2877602649081492 -9.956211444287531 -0.09606984461399371 -9.785553559477243 0.9997840159759621 -11.03088046238132 0.7124922133221913 -10.96888940766614 0.6583064165969161 -9.410114233620595 -2.228385051922737 -10.70081004544833 -2.014953416345824 -10.75176751996626 -2.075844082053425 -10.17781002545755 -0.4324686368727615 -9.919087785409818 -0.6709566358517062 -9.882478990765385 -0.4894789985166593 1.760118758233272 8.266274949732306 2.073456556903941 8.439249232768111 1.973086817548392 8.775162110542233 -7.895675249693724 6.35572890440783 -7.738632574130896 6.040031310379674 -7.355893051787491 6.035139217269675 4.698653201530358 6.866233768884938 4.936890879330538 6.807500633840543 4.755953259092024 7.10117505962285 8.789778937523959 5.215777509063605 8.193911464926989 4.342014878462916 8.881865056477553 5.207681510575066 -3.636679076312206 7.174520399546183 -3.485281170383963 8.205188246932353 -3.567023200653953 8.239510501697062 4.608467887856551 6.942351551755317 4.784623973985226 6.821644505099476 5.002730093696144 6.988347316600743 8.382336284135629 6.009072709059925 7.818517792135292 5.708527979604562 8.200915224598788 5.694904571137292 -7.300328622433423 0.3133705363867954 -7.610227136120761 0.5768796973943583 -7.640754077580986 0.3502904432559122 8.683624809932937 -5.213540875446535 8.520711222363763 -5.352586884343154 8.752295864988689 -5.257974310796413 -7.092818134246431 1.331112866636004 -7.045255851850174 1.56780133338496 -7.383512819161629 1.615486151864548 9.080826027969591 -4.769648828027862 9.155802633392856 -4.807249290353734 9.216058004429662 -4.588944696320829 -7.184763006546485 1.174210970859951 -7.527235853374553 1.196529730501106 -7.563888096290102 0.9487953516270735 -7.287457386560325 0.1498170140715543 -7.260875675639328 0.3771226435993637 -7.630302431797364 0.1682635791268916 3.685928652310532 -7.859516517881581 3.710282400354488 -8.207401766278244 4.021944197128372 -8.321277962077289 -10.62889198449577 -0.004829544958635267 -10.44103046175671 -0.2056412825270085 -10.20681813314493 0.06374166861326873 -11.00590139692624 0.3907337674933596 -11.06989655349128 0.4434580411120462 -11.33757060876102 0.3299332866368258 -10.88077384336795 -1.431837684361402 -11.21906661463155 -1.401026336483101 -10.93675582579856 -1.489933784228467 -10.5596395438532 -0.7878020949513485 -10.12317404566467 -0.8221614784880638 -10.3823927298437 -0.5840073204946437 -1.615834864721014 8.293094617417673 -1.611430049953948 8.828839023972686 -1.814730889983079 8.61089390575034 -7.797266256922559 6.442545277235023 -7.260221681247103 6.119122849391917 -7.453867248912717 6.432445277851455 5.220278369457862 7.120775325574897 5.393343910433234 6.824179257647212 5.53582304901841 7.144123675288182 8.997431426691051 5.445946787423706 8.792789899193275 5.231813030241208 8.884875029733228 5.223710077424811 -3.138175189433178 8.317365019032891 -3.142359261060369 8.585258492464037 -3.218528724881931 8.353659643728127 4.54585703049935 7.161736605889143 4.939970439093995 7.208514868594181 4.814130817532872 7.434740768529738 8.090778324723388 5.987275507851667 7.865836740895702 5.680391139333189 8.434102477119943 5.975707014455302 -7.282057632106239 0.3420229973445143 -7.24953389326128 0.5767685969397471 -7.591005943910796 0.6062217419930539 -7.160381284168206 1.173992512444623 -7.54050878292817 0.9496240426249764 -7.199326808919533 0.9181592597770775 5.914689599860319 -7.02337559921768 6.29919748455012 -7.216898010070527 6.249641386265783 -7.083776125206647 -10.68063472916411 -0.03014462824183809 -10.63789637362116 -0.3114805503609948 -10.49291382516479 -0.2310377280508252 -10.98767111651761 0.4919174817930945 -11.32050148029596 0.4351794222741164 -11.23691440893257 0.3979838735056778 -10.86032803082546 -1.479091414228765 -11.12090449503825 -1.406631697688325 -11.1989547701045 -1.450640802191977 -10.61528799819944 -0.760199929410775 -10.43811890949309 -0.5563633344249114 -10.59175004968914 -0.4865325643419837 5.168886315289541 7.365943063405671 5.496535504559187 7.447443103446951 5.532248318194387 7.583289295059242 -7.911031530225858 6.136667593078347 -7.830448785404514 6.01329483810173 -7.487027993879361 6.003664093610519 5.196321233049179 7.312074496055821 5.209522134444327 7.172888476327961 5.52505120131981 7.196367035854346 8.940196896659442 5.490580774524839 8.846094317593119 5.475450592245355 8.736560394668635 5.275854911380717 -2.300373506391011 8.476309098196238 -2.219830157215937 8.684287937402377 -2.279150689010646 8.74370209437417 4.920373935155845 7.438211336220197 5.044873738304256 7.211527141739645 5.201938026693515 7.276423649238595 8.554216058595706 5.609838941235937 8.117312848289828 5.50583931127758 8.460523032565412 5.492339300060463 5.794782989367736 -7.095646520287728 5.838978350849863 -7.241079413747425 6.176397673910426 -7.292681087399546 -11.32324141032872 -0.05684265905028527 -11.14133237321608 0.2182022158056376 -11.30737918634648 0.1715256504883076 -10.74131848652431 -0.3051059973261299 -10.51661884714693 -0.3111780448464778 -10.55983482506775 -0.02988727853457548 -11.33513745992419 -0.3186119544810304 -11.4677873213602 -0.4112938962804223 -11.24791499099993 -0.3502225672437868 -11.47568516644927 -0.3709429057436157 -11.33426853498595 -0.4552433648619497 -11.25043997430787 -0.4183930563986958 -10.74388029507606 -0.5088916691470116 -10.54454376524947 -0.7603525242860809 -10.52085334959071 -0.486693300899215 -11.27212812476224 -0.7479573568234509 -11.24399792535239 -0.9644057792185449 -11.0734791832724 -0.9997547129525994 4.978979388225893 7.45691012177773 5.337233013825129 7.679442414591668 5.006846435673423 7.604819984842863 -7.552507478035663 6.163501045937264 -7.896230321513499 6.161101792884907 -7.472314108315947 6.027926149526729 6.381417688566287 7.364138822885103 6.568033924868935 7.091055228351658 6.612442373854851 7.225289807666986 5.108519115953327 7.241921539249105 5.437859442009398 7.127293216737903 5.229994844828195 7.390708196312395 8.899210574551541 5.707140730405462 8.769964914876876 5.554447965853877 8.863857021041271 5.57036678242239 0.6017656373906116 8.849027341067513 0.6831017678459112 9.02094398084264 0.5630702990475844 8.918172808578168 4.84918506126741 7.404696269567971 5.131383779189833 7.243594294828876 5.225877649618224 7.404059473402316 4.852034509448656 7.891839684728685 5.228726971077487 7.891158075813983 4.980384828495451 7.986939090479169 8.219528150327255 5.64268143251085 8.124451070387782 5.513201857738595 8.561642221226299 5.616449946382111 7.477964839792466 -0.3164301919684322 7.820002119320475 -0.5629349420333912 7.82095570648282 -0.3342272036161624 -10.73223469003857 -0.09750802350088886 -10.51385019564315 -0.3178100812963506 -10.50753475833932 -0.1035733729477003 -11.26210337181495 -0.2232559555111391 -11.4828768075653 -0.2822812359787225 -11.38964063218413 -0.3091237266096786 -11.38820264429764 -0.4634149773922885 -11.47856677714294 -0.4958093755231466 -11.25267877158462 -0.5413292099811872 -10.70926736066075 -0.7241433480761172 -10.48624088283821 -0.7019420723149915 -10.51035120217984 -0.4674430017563528 7.844049478789012 0.1933800494995118 7.502764762946278 -0.0432567612130923 7.845644128403817 -0.02419302449264853 -7.479089971007023 -0.2255670009436816 -7.845559445012757 -0.001841097336704264 -7.822783260867139 -0.2298481961284706 5.251847388980799 7.175966403540889 5.480262055549751 7.059138797071849 5.604855525251153 7.206321351226547 8.776750423011515 5.835196226157819 8.682652265325375 5.810220989327786 8.651500581638176 5.680456463118566 1.485772983708301 8.791928779812089 1.608273387713923 8.882207753686709 1.584619933842702 8.958069629267971 4.708393688786927 7.404342806766388 4.976298403093658 7.299798120732598 4.799109858124441 7.566151518812774 -7.454962337104237 -0.6596704191253112 -7.793178801377531 -0.7079307177167631 -7.761536119210644 -0.924080850109646 7.271660093477241 -0.5028294652796737 7.269619430338604 -0.742481892834188 7.613136989127534 -0.7498145417369845 -10.92051144681378 -0.2102256539428505 -10.90482643731967 -0.43775430480715 -10.70221595034152 -0.4305822903290932 -11.27725068815328 -0.173088120066662 -11.28100018826619 -0.3873621256739218 -11.18280299208395 -0.1971672534214698 -11.2630806435167 -0.2184774645733396 -11.24894199331346 -0.4534792626938192 -11.15625228072694 -0.4254444442964471 -10.90845917228694 -0.3742419134110793 -10.90502832334284 -0.6236457186092163 -10.70584857138288 -0.3670718909140796 7.618644319240165 0.413273990567097 7.275205169583114 0.4039696451474449 7.278378418002919 0.1757309639274631 -7.319965044724375 0.02637050699736276 -7.662310025337017 0.002872670088507172 -7.287293167286048 -0.2119090496941094 5.205967696573508 7.371192744173923 5.558892750505161 7.402139770442199 5.304261758068236 7.510718828934936 8.037753861832558 6.122809874252642 8.127594706888372 6.156102077184638 7.943854768287891 6.314353166684216 7.273791869601489 6.668048104795911 7.539061909339335 6.588340650501213 7.310957907657844 6.740480419146932 5.165539756279554 7.582007533895836 5.336979005721872 7.313335759549505 5.436421504585031 7.452357326752184 -7.110207297837602 -1.240657627793926 -7.392083045804741 -1.521561313377225 -7.056068249124015 -1.464908348649675 7.305131176915099 0.2880279903068188 7.649873525010325 0.05285049253222032 7.648649290072918 0.2807114310127205 -10.86392768529901 -0.3402247460209299 -10.96094106120326 -0.5307952075667954 -10.87205009150995 -0.5292217281837912 -10.88594628879937 -0.04402942136596071 -10.97483706903287 -0.04560951047551233 -10.87046564296891 -0.2533508204590864 7.659150054302678 -0.2763464000623481 7.315970564608313 -0.5349705400006876 7.65941400470839 -0.5257647217229292 -7.172426749101089 -1.140875959246738 -7.55519119575834 -0.9454712612601799 -7.513933166500292 -1.170992836758235 8.459571746985008 5.397204563665892 8.593907679644593 5.240374159134416 8.530400067812826 5.439495416581214 7.787513651940996 5.987941707509287 7.84955355450045 6.038053002042353 7.59007991289359 6.128803043075938 -7.332300693067998 -0.2484377953323516 -7.671599965303634 -0.2912972040263326 -7.631753046015854 -0.5387552600929779 7.290719076346226 0.2755267402021296 7.291975651081154 0.03940138049878873 7.635489710447182 0.04037490460496442 7.636853380435862 -0.2578290348497467 7.293339314235867 -0.2588010655243426 7.293684783939276 -0.5164621196727895 -7.156160674413737 -1.141481673185987 -7.199692840819402 -0.9078650066005928 -7.539607897009619 -0.9469071451194763 -7.305606594538739 -0.293280564857082 -7.603196841502352 -0.5847805386810494 -7.262747511722701 -0.5487342049231557</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1235\" source=\"#ID345\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID341\">\r\n                    <input semantic=\"POSITION\" source=\"#ID339\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID340\"/>\r\n                </vertices>\r\n                <triangles count=\"884\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID341\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID342\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 9 7 10 8 11 8 12 7 13 6 1 9 0 10 14 11 15 11 5 10 4 9 1 12 16 13 6 14 7 14 17 13 4 12 10 15 18 16 19 17 20 17 21 16 11 15 8 18 10 19 22 20 23 20 11 19 13 18 8 21 24 22 9 23 12 23 25 22 13 21 0 24 26 25 14 26 15 26 27 25 5 24 28 27 29 28 30 29 31 29 32 28 33 27 29 28 34 30 35 31 36 31 37 30 32 28 16 32 38 33 6 34 7 34 39 33 17 32 22 35 10 36 19 37 20 37 11 36 23 35 18 38 40 39 19 40 20 40 41 39 21 38 42 41 43 42 44 43 45 43 46 42 47 41 8 44 48 45 24 46 25 46 49 45 13 44 14 47 26 48 50 49 51 49 27 48 15 47 52 50 53 51 54 52 55 52 56 51 57 50 58 53 38 54 16 55 17 55 39 54 59 53 60 56 61 57 62 58 63 58 64 57 65 56 19 59 40 60 66 61 67 61 41 60 20 59 68 62 69 63 70 64 71 64 72 63 73 62 8 65 74 66 48 67 49 67 75 66 13 65 76 68 77 69 78 70 79 70 80 69 81 68 82 71 83 72 84 73 85 73 86 72 87 71 88 74 89 75 90 76 91 76 92 75 93 74 94 77 95 78 96 79 97 79 98 78 99 77 19 80 66 81 100 82 101 82 67 81 20 80 102 83 103 84 104 85 105 85 106 84 107 83 103 86 108 87 109 88 110 88 111 87 106 86 68 89 112 90 69 91 72 91 113 90 73 89 8 92 114 93 74 94 75 94 115 93 13 92 84 95 83 96 116 97 117 97 86 96 85 95 88 98 118 99 89 100 92 100 119 99 93 98 94 101 96 102 120 103 121 103 97 102 99 101 122 104 123 105 124 106 123 105 122 104 125 107 126 107 127 104 128 105 129 106 128 105 127 104 130 108 131 109 123 110 128 110 132 109 133 108 134 111 135 112 136 113 137 113 138 112 139 111 19 114 100 115 140 116 141 116 101 115 20 114 102 117 104 118 142 119 143 119 105 118 107 117 144 120 103 121 102 122 107 122 106 121 145 120 122 123 108 124 103 125 106 125 111 124 127 123 146 126 147 127 148 128 147 127 146 126 149 129 147 127 149 129 150 130 150 130 149 129 151 131 151 131 149 129 152 132 151 131 152 132 153 133 153 133 152 132 154 134 153 133 154 134 155 135 155 135 154 134 156 136 155 135 156 136 157 137 157 137 156 136 158 138 158 138 156 136 159 139 158 138 159 139 160 140 160 140 159 139 161 141 160 140 161 141 162 142 162 142 161 141 163 143 162 142 163 143 164 144 164 144 163 143 165 145 166 146 167 147 168 148 167 147 166 146 146 126 167 147 146 126 169 149 169 149 146 126 148 128 169 149 148 128 170 150 169 149 170 150 171 151 171 151 170 150 172 152 171 151 172 152 173 153 171 151 173 153 174 154 174 154 173 153 175 155 174 154 175 155 176 156 176 156 175 155 177 157 176 156 177 157 178 158 176 156 178 158 179 159 179 159 178 158 180 160 179 159 180 160 181 161 181 161 180 160 182 162 181 161 182 162 183 163 183 163 182 162 184 164 183 163 184 164 165 145 183 163 165 145 185 165 185 165 165 145 163 143 185 165 163 143 186 166 185 165 186 166 187 167 188 167 189 166 190 165 189 166 191 143 190 165 191 143 192 145 190 165 190 165 192 145 193 163 192 145 194 164 193 163 194 164 195 162 193 163 193 163 195 162 196 161 195 162 197 160 196 161 196 161 197 160 198 159 197 160 199 158 198 159 198 159 199 158 200 156 199 158 201 157 200 156 201 157 202 155 200 156 200 156 202 155 203 154 202 155 204 153 203 154 203 154 204 153 205 151 204 153 206 152 205 151 206 152 207 150 205 151 205 151 207 150 208 149 207 150 209 128 208 149 209 128 210 126 208 149 208 149 210 126 211 147 210 126 212 146 211 147 213 148 211 147 212 146 192 145 191 143 214 144 214 144 191 143 215 142 191 143 216 141 215 142 215 142 216 141 217 140 216 141 218 139 217 140 217 140 218 139 219 138 218 139 220 136 219 138 219 138 220 136 221 137 221 137 220 136 222 135 220 136 223 134 222 135 222 135 223 134 224 133 223 134 225 132 224 133 224 133 225 132 226 131 225 132 227 129 226 131 226 131 227 129 228 130 228 130 227 129 229 127 227 129 210 126 229 127 209 128 229 127 210 126 112 168 230 169 69 170 72 170 231 169 113 168 114 171 232 172 74 173 75 173 233 172 115 171 84 174 116 175 234 176 235 176 117 175 85 174 96 177 236 178 120 179 121 179 237 178 97 177 122 180 124 181 108 182 111 182 129 181 127 180 125 183 122 184 238 185 239 185 127 184 126 183 125 186 240 187 123 188 128 188 241 187 126 186 242 189 130 190 123 191 128 191 133 190 243 189 135 192 244 193 136 194 137 194 245 193 138 192 100 195 246 196 140 197 141 197 247 196 101 195 102 198 142 199 248 200 249 200 143 199 107 198 144 201 102 202 250 203 251 203 107 202 145 201 144 204 238 205 103 206 106 206 239 205 145 204 238 207 122 208 103 209 106 209 127 208 239 207 252 210 253 211 254 212 255 212 256 211 257 210 258 213 259 214 253 215 256 215 260 214 261 213 259 216 262 217 263 218 264 218 265 217 260 216 263 219 266 220 267 221 268 221 269 220 264 219 270 222 271 223 272 224 273 224 274 223 275 222 272 225 276 226 277 227 278 227 279 226 273 225 280 228 281 229 282 230 283 230 284 229 285 228 286 231 287 232 281 233 284 233 288 232 289 231 290 234 291 235 287 236 288 236 292 235 293 234 248 237 142 238 291 239 292 239 143 238 249 237 294 240 130 241 242 242 243 242 133 241 295 240 296 243 294 244 297 245 298 245 295 244 299 243 300 246 296 247 301 248 302 248 299 247 303 246 304 249 300 250 305 251 306 251 303 250 307 249 308 252 309 253 310 254 311 254 312 253 313 252 314 255 315 256 316 257 317 257 318 256 319 255 320 258 321 259 309 260 312 260 322 259 323 258 324 261 314 262 325 263 326 263 319 262 327 261 328 264 254 265 329 266 330 266 255 265 331 264 112 267 332 268 230 269 231 269 333 268 113 267 114 270 334 271 232 272 233 272 335 271 115 270 234 273 116 274 336 275 337 275 117 274 235 273 120 276 236 277 338 278 339 278 237 277 121 276 242 279 123 280 240 281 241 281 128 280 243 279 136 282 244 283 340 284 341 284 245 283 137 282 140 285 246 286 342 287 343 287 247 286 141 285 250 288 102 289 248 290 249 290 107 289 251 288 328 291 252 292 254 293 255 293 257 292 331 291 258 294 253 295 252 296 257 296 256 295 261 294 262 297 259 298 258 299 261 299 260 298 265 297 262 300 266 301 263 302 264 302 269 301 265 300 266 303 271 304 267 305 268 305 274 304 269 303 344 306 345 307 346 308 347 308 348 307 349 306 271 309 276 310 272 311 273 311 279 310 274 309 276 312 280 313 277 314 280 313 276 312 350 315 351 315 279 312 285 313 278 314 285 313 279 312 352 316 353 317 354 318 355 318 356 317 357 316 280 319 286 320 281 321 284 321 289 320 285 319 286 322 290 323 287 324 288 324 293 323 289 322 248 325 291 326 290 327 293 327 292 326 249 325 297 328 294 329 242 330 243 330 295 329 298 328 301 331 296 332 297 333 298 333 299 332 302 331 305 334 300 335 301 336 302 336 303 335 306 334 308 337 304 338 305 339 306 339 307 338 313 337 358 340 359 341 360 342 361 342 362 341 363 340 320 343 309 344 308 345 313 345 312 344 323 343 314 346 316 347 364 348 365 348 317 347 319 346 328 349 321 350 320 351 323 351 322 350 331 349 366 352 367 353 368 354 369 354 370 353 371 352 325 355 314 356 364 357 365 357 319 356 326 355 230 358 332 359 372 360 373 360 333 359 231 358 334 361 374 362 232 363 233 363 375 362 335 361 234 364 336 365 376 366 377 366 337 365 235 364 338 367 236 368 378 369 379 369 237 368 339 367 380 370 242 371 240 372 241 372 243 371 381 370 244 373 382 374 340 375 341 375 383 374 245 373 246 376 384 377 342 378 343 378 385 377 247 376 250 379 248 380 290 381 293 381 249 380 251 379 386 382 252 383 328 384 331 384 257 383 387 382 388 385 258 386 252 387 257 387 261 386 389 385 390 388 262 389 258 390 261 390 265 389 391 388 262 391 392 392 266 393 269 393 393 392 265 391 266 394 394 395 271 396 274 396 395 395 269 394 396 397 397 398 398 399 399 399 400 398 401 397 344 400 402 401 345 402 348 402 403 401 349 400 271 403 404 404 276 405 279 405 405 404 274 403 404 406 350 407 276 408 279 408 351 407 405 406 350 409 406 410 280 411 285 411 407 410 351 409 408 412 409 413 410 414 411 414 412 413 413 412 352 415 354 416 414 417 415 417 355 416 357 415 286 418 406 419 416 420 406 419 286 418 280 421 285 421 289 418 407 419 417 420 407 419 289 418 416 422 290 423 286 424 289 424 293 423 417 422 297 425 242 426 380 427 381 427 243 426 298 425 301 428 297 429 418 430 419 430 298 429 302 428 305 431 301 432 420 433 421 433 302 432 306 431 308 434 305 435 422 436 423 436 306 435 313 434 424 437 358 438 360 439 361 439 363 438 425 437 426 440 320 441 308 442 313 442 323 441 427 440 364 443 316 444 428 445 429 445 317 444 365 443 430 446 328 447 320 448 323 448 331 447 431 446 367 449 366 450 432 451 433 451 371 450 370 449 325 452 364 453 434 454 435 454 365 453 326 452 332 455 436 456 372 457 373 457 437 456 333 455 334 458 438 459 374 460 375 460 439 459 335 458 376 461 336 462 440 463 441 463 337 462 377 461 338 464 378 465 442 466 443 466 379 465 339 464 340 467 382 468 444 469 445 469 383 468 341 467 342 470 384 471 446 472 447 472 385 471 343 470 448 473 250 474 290 475 293 475 251 474 449 473 430 476 386 477 328 478 331 478 387 477 431 476 388 479 252 480 386 481 387 481 257 480 389 479 388 482 390 483 258 484 261 484 391 483 389 482 392 485 262 486 390 487 391 487 265 486 393 485 392 488 394 489 266 490 269 490 395 489 393 488 394 491 404 492 271 493 274 493 405 492 395 491 450 494 451 495 452 496 453 496 454 495 455 494 402 497 456 498 345 499 348 499 457 498 403 497 450 500 458 501 451 502 454 502 459 501 455 500 414 503 354 504 460 505 461 505 355 504 415 503 448 506 290 507 416 508 417 508 293 507 449 506 418 509 297 510 380 511 381 511 298 510 419 509 420 512 301 513 418 514 419 514 302 513 421 512 422 515 305 516 420 517 421 517 306 516 423 515 426 518 308 519 422 520 423 520 313 519 427 518 462 521 358 522 424 523 425 523 363 522 463 521 430 524 320 525 426 526 427 526 323 525 431 524 428 527 316 528 464 529 465 529 317 528 429 527 466 530 467 531 468 532 469 532 470 531 471 530 472 533 432 534 366 535 371 535 433 534 473 533 474 536 466 537 468 538 469 538 471 537 475 536 325 539 434 540 476 541 477 541 435 540 326 539 372 542 436 543 478 544 479 544 437 543 373 542 438 545 480 546 374 547 375 547 481 546 439 545 376 548 440 549 482 550 483 550 441 549 377 548 442 551 378 552 484 553 485 553 379 552 443 551 382 554 486 555 444 556 445 556 487 555 383 554 384 557 488 558 446 559 447 559 489 558 385 557 490 560 450 561 452 562 453 562 455 561 491 560 402 563 492 564 456 565 457 565 493 564 403 563 494 566 495 567 496 568 497 568 498 567 499 566 500 569 458 570 450 571 455 571 459 570 501 569 502 572 503 573 458 574 459 574 504 573 505 572 414 575 460 576 506 577 507 577 461 576 415 575 462 578 424 579 508 580 509 580 425 579 463 578 510 581 511 582 512 583 513 583 514 582 515 581 316 584 516 585 464 586 465 586 517 585 317 584 518 587 519 588 520 589 521 589 522 588 523 587 524 590 518 591 520 592 521 592 523 591 525 590 325 593 526 594 527 595 528 595 529 594 326 593 530 596 432 597 472 598 473 598 433 597 531 596 532 599 533 600 534 601 535 601 536 600 537 599 538 602 532 603 534 604 535 604 537 603 539 602 325 605 476 606 540 607 541 607 477 606 326 605 436 608 542 609 478 610 479 610 543 609 437 608 438 611 544 612 480 613 481 613 545 612 439 611 482 614 440 615 546 616 547 616 441 615 483 614 442 617 484 618 548 619 549 619 485 618 443 617 444 620 486 621 550 622 551 622 487 621 445 620 488 623 552 624 446 625 447 625 553 624 489 623 554 626 490 627 452 628 453 628 491 627 555 626 556 629 557 630 558 631 559 631 560 630 561 629 492 632 562 633 456 634 457 634 563 633 493 632 564 635 565 636 566 637 567 637 568 636 569 635 570 638 494 639 496 640 497 640 499 639 571 638 558 641 557 642 572 643 573 643 560 642 559 641 574 644 458 645 500 646 501 646 459 645 575 644 502 647 458 648 576 649 577 649 459 648 505 647 578 650 503 651 502 652 505 652 504 651 579 650 506 653 460 654 580 655 581 655 461 654 507 653 582 656 462 657 508 658 509 658 463 657 583 656 510 659 512 660 584 661 585 661 513 660 515 659 512 662 511 663 586 664 587 664 514 663 513 662 588 665 589 666 590 667 591 667 592 666 593 665 520 668 519 669 594 670 595 670 522 669 521 668 325 671 540 672 526 673 529 673 541 672 326 671 527 674 526 675 596 676 597 676 529 675 528 674 598 677 530 678 472 679 473 679 531 678 599 677 538 680 534 681 600 682 601 682 535 681 539 680 602 683 603 684 604 685 605 685 606 684 607 683 478 686 542 687 608 688 609 688 543 687 479 686 544 689 610 690 480 691 481 691 611 690 545 689 482 692 546 693 612 694 613 694 547 693 483 692 548 695 484 696 614 697 615 697 485 696 549 695 486 698 616 699 550 700 551 700 617 699 487 698 618 701 552 702 488 703 489 703 553 702 619 701 620 704 554 705 452 706 453 706 555 705 621 704 622 707 623 708 556 709 561 709 624 708 625 707 623 710 557 711 556 712 561 712 560 711 624 710 492 713 626 714 562 715 563 715 627 714 493 713 628 716 570 717 496 718 497 718 571 717 629 716 630 719 631 720 632 721 633 721 634 720 635 719 636 722 632 723 637 724 638 724 633 723 639 722 557 725 640 726 572 727 573 727 641 726 560 725 642 728 572 729 640 730 641 730 573 729 643 728 576 731 458 732 574 733 575 733 459 732 577 731 644 734 645 735 646 736 647 736 648 735 649 734 650 737 651 738 645 739 648 739 652 738 653 737 654 740 503 741 578 742 579 742 504 741 655 740 506 743 580 744 656 745 657 745 581 744 507 743 582 746 508 747 658 748 659 748 509 747 583 746 511 749 660 750 586 751 587 751 661 750 514 749 662 752 663 753 588 754 593 754 664 753 665 752 666 755 667 756 662 757 665 757 668 756 669 755 663 758 589 759 588 760 593 760 592 759 664 758 670 761 671 762 602 763 607 763 672 762 673 761 674 764 675 765 671 766 672 766 676 765 677 764 527 767 596 768 678 769 679 769 597 768 528 767 680 770 530 771 598 772 599 772 531 771 681 770 602 773 604 774 670 775 673 775 605 774 607 773 542 776 682 777 608 778 609 778 683 777 543 776 544 779 684 780 610 781 611 781 685 780 545 779 612 782 546 783 686 784 687 784 547 783 613 782 548 785 614 786 688 787 689 787 615 786 549 785 616 788 690 789 550 790 551 790 691 789 617 788 618 791 692 792 552 793 553 793 693 792 619 791 694 794 695 795 631 796 634 796 696 795 697 794 698 797 623 798 622 799 625 799 624 798 699 797 626 800 700 801 562 802 563 802 701 801 627 800 702 803 570 804 628 805 629 805 571 804 703 803 694 806 631 807 630 808 635 808 634 807 697 806 630 809 632 810 636 811 639 811 633 810 635 809 636 812 637 813 704 814 705 814 638 813 639 812 706 815 707 816 708 817 709 817 710 816 711 815 712 818 642 819 640 820 641 820 643 819 713 818 714 821 715 822 716 823 717 823 718 822 719 821 714 824 720 825 715 826 718 826 721 825 719 824 644 827 650 828 645 829 648 829 653 828 649 827 650 830 722 831 651 832 652 832 723 831 653 830 724 833 654 834 578 835 579 835 655 834 725 833 656 836 580 837 726 838 727 838 581 837 657 836 728 839 582 840 658 841 659 841 583 840 729 839 586 842 660 843 730 844 731 844 661 843 587 842 667 845 663 846 662 847 665 847 664 846 668 845 732 848 667 849 666 850 669 850 668 849 733 848 670 851 674 852 671 853 672 853 677 852 673 851 674 854 734 855 675 856 676 856 735 855 677 854 678 857 596 858 736 859 737 859 597 858 679 857 738 860 680 861 598 862 599 862 681 861 739 860 682 863 740 864 608 865 609 865 741 864 683 863 610 866 684 867 742 868 743 868 685 867 611 866 544 869 744 870 684 871 685 871 745 870 545 869 612 872 686 873 746 874 747 874 687 873 613 872 688 875 614 876 748 877 749 877 615 876 689 875 616 878 750 879 690 880 691 880 751 879 617 878 742 881 692 882 618 883 619 883 693 882 743 881 692 884 752 885 552 886 553 886 753 885 693 884 626 887 754 888 700 889 701 889 755 888 627 887 756 890 702 891 628 892 629 892 703 891 757 890 704 893 637 894 758 895 759 895 638 894 705 893 722 896 760 897 651 898 652 898 761 897 723 896 762 899 654 900 724 901 725 901 655 900 763 899 656 902 726 903 764 904 765 904 727 903 657 902 728 905 658 906 766 907 767 907 659 906 729 905 660 908 768 909 730 910 731 910 769 909 661 908 770 911 732 912 666 913 669 913 733 912 771 911 734 914 772 915 675 916 676 916 773 915 735 914 678 917 736 918 774 919 775 919 737 918 679 917 776 920 680 921 738 922 739 922 681 921 777 920 682 923 778 924 740 925 741 925 779 924 683 923 684 926 780 927 742 928 743 928 781 927 685 926 782 929 783 930 784 931 785 931 786 930 787 929 788 932 789 933 790 934 791 934 792 933 793 932 688 935 748 936 794 937 795 937 749 936 689 935 796 938 784 939 797 940 798 940 785 939 799 938 742 941 780 942 692 943 693 943 781 942 743 941 800 944 801 945 802 946 803 946 804 945 805 944 754 947 806 948 700 949 701 949 807 948 755 947 808 950 702 951 756 952 757 952 703 951 809 950 704 953 758 954 810 955 811 955 759 954 705 953 722 956 812 957 760 958 761 958 813 957 723 956 814 959 762 960 724 961 725 961 763 960 815 959 764 962 726 963 816 964 817 964 727 963 765 962 818 965 728 966 766 967 767 967 729 966 819 965 730 968 768 969 820 970 821 970 769 969 731 968 822 971 732 972 770 973 771 973 733 972 823 971 734 974 824 975 772 976 773 976 825 975 735 974 774 977 736 978 826 979 827 979 737 978 775 977 828 980 776 981 738 982 739 982 777 981 829 980 830 983 831 984 789 985 792 985 832 984 833 983 834 986 782 987 784 988 785 988 787 987 835 986 788 989 830 990 789 991 792 991 833 990 793 989 834 992 784 993 796 994 799 994 785 993 835 992 836 995 802 996 831 997 832 997 803 996 837 995 836 998 800 999 802 1000 803 1000 805 999 837 998 754 1001 838 1002 806 1003 807 1003 839 1002 755 1001 840 1004 808 1005 756 1006 757 1006 809 1005 841 1004 810 1007 758 1008 842 1009 843 1009 759 1008 811 1007 812 1010 844 1011 760 1012 761 1012 845 1011 813 1010 846 1013 762 1014 814 1015 815 1015 763 1014 847 1013 764 1016 816 1017 848 1018 849 1018 817 1017 765 1016 818 1019 766 1020 850 1021 851 1021 767 1020 819 1019 820 1022 768 1023 852 1024 853 1024 769 1023 821 1022 854 1025 822 1026 770 1027 771 1027 823 1026 855 1025 824 1028 856 1029 772 1030 773 1030 857 1029 825 1028 774 1031 826 1032 858 1033 859 1033 827 1032 775 1031 860 1034 776 1035 828 1036 829 1036 777 1035 861 1034 830 1037 862 1038 831 1039 832 1039 863 1038 833 1037 836 1040 831 1041 862 1042 863 1042 832 1041 837 1040 838 1043 864 1044 806 1045 807 1045 865 1044 839 1043 840 1046 866 1047 808 1048 809 1048 867 1047 841 1046 810 1049 842 1050 868 1051 869 1051 843 1050 811 1049 812 1052 870 1053 844 1054 845 1054 871 1053 813 1052 846 1055 814 1056 872 1057 873 1057 815 1056 847 1055 848 1058 816 1059 874 1060 875 1060 817 1059 849 1058 876 1061 818 1062 850 1063 851 1063 819 1062 877 1061 878 1064 820 1065 852 1066 853 1066 821 1065 879 1064 854 1067 880 1068 822 1069 823 1069 881 1068 855 1067 824 1070 882 1071 856 1072 857 1072 883 1071 825 1070 858 1073 826 1074 884 1075 885 1075 827 1074 859 1073 886 1076 860 1077 828 1078 829 1078 861 1077 887 1076 838 1079 888 1080 864 1081 865 1081 889 1080 839 1079 890 1082 840 1083 891 1084 892 1084 841 1083 893 1082 890 1085 866 1086 840 1087 841 1087 867 1086 893 1085 842 1088 894 1089 868 1090 869 1090 895 1089 843 1088 896 1091 844 1092 870 1093 871 1093 845 1092 897 1091 898 1094 846 1095 872 1096 873 1096 847 1095 899 1094 898 1097 900 1098 846 1099 847 1099 901 1098 899 1097 848 1100 874 1101 902 1102 903 1102 875 1101 849 1100 904 1103 876 1104 850 1105 851 1105 877 1104 905 1103 906 1106 852 1107 907 1108 908 1108 853 1107 909 1106 878 1109 852 1110 906 1111 909 1111 853 1110 879 1109 910 1112 880 1113 854 1114 855 1114 881 1113 911 1112 882 1115 912 1116 856 1117 857 1117 913 1116 883 1115 858 1118 884 1119 914 1120 915 1120 885 1119 859 1118 858 1121 914 1122 916 1123 917 1123 915 1122 859 1121 918 1124 860 1125 886 1126 887 1126 861 1125 919 1124 920 1127 921 1128 922 1129 923 1129 924 1128 925 1127 890 1130 926 1131 866 1132 867 1132 927 1131 893 1130 868 1133 894 1134 928 1135 929 1135 895 1134 869 1133 930 1136 896 1137 870 1138 871 1138 897 1137 931 1136 898 1139 872 1140 926 1141 927 1141 873 1140 899 1139 932 1142 933 1143 934 1144 935 1144 936 1143 937 1142 938 1145 939 1146 940 1147 941 1147 942 1146 943 1145 944 1148 878 1149 906 1150 909 1150 879 1149 945 1148 910 1151 946 1152 880 1153 881 1153 947 1152 911 1151 882 1154 948 1155 912 1156 913 1156 949 1155 883 1154 884 1157 944 1158 914 1159 915 1159 945 1158 885 1157 950 1160 951 1161 952 1162 953 1162 954 1161 955 1160 920 1163 956 1164 921 1165 924 1165 957 1164 925 1163 890 1166 958 1167 926 1168 927 1168 959 1167 893 1166 960 1169 961 1170 962 1171 963 1171 964 1170 965 1169 961 1172 966 1173 967 1174 968 1174 969 1173 964 1172 958 1175 898 1176 926 1177 927 1177 899 1176 959 1175 932 1178 970 1179 933 1180 936 1180 971 1179 937 1178 972 1181 939 1182 938 1183 943 1183 942 1182 973 1181 944 1184 906 1185 974 1186 975 1186 909 1185 945 1184 976 1187 977 1188 978 1189 979 1189 980 1188 981 1187 982 1190 978 1191 983 1192 984 1192 979 1191 985 1190 914 1193 944 1194 974 1195 975 1195 945 1194 915 1193 950 1196 952 1197 986 1198 987 1198 953 1197 955 1196 956 1199 988 1200 921 1201 924 1201 989 1200 957 1199 962 1202 961 1203 990 1204 991 1204 964 1203 963 1202 990 1205 961 1206 967 1207 968 1207 964 1206 991 1205 988 1208 970 1209 932 1210 937 1210 971 1209 989 1208 972 1211 992 1212 939 1213 942 1213 993 1212 973 1211 994 1214 976 1215 978 1216 979 1216 981 1215 995 1214 994 1217 978 1218 982 1219 985 1219 979 1218 995 1217 986 1220 952 1221 992 1222 993 1222 953 1221 987 1220 956 1223 996 1224 988 1225 989 1225 997 1224 957 1223 988 1226 996 1227 970 1228 971 1228 997 1227 989 1226 972 1229 998 1230 992 1231 993 1231 999 1230 973 1229 986 1232 992 1233 998 1234 999 1234 993 1233 987 1232</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID346\">\r\n            <mesh>\r\n                <source id=\"ID352\">\r\n                    <float_array count=\"864\" id=\"ID356\">-0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035627 -0.3378135984617037 -1.272300980758927</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"288\" source=\"#ID356\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID353\">\r\n                    <float_array count=\"864\" id=\"ID357\">-0.9999410261811262 -1.189599814927649e-005 -0.01086020341990315 -0.9999410269663441 -0.002736872445651152 -0.01050962029330042 -0.9999410263908806 7.648229374381802e-005 -0.01085992130776995 -0.9999410267352775 -0.00282230173442009 -0.01048702362534358 0.9999410267352775 0.00282230173442009 0.01048702362534358 0.9999410261811262 1.189599814927649e-005 0.01086020341990315 0.9999410269663441 0.002736872445651152 0.01050962029330042 0.9999410263908806 -7.648229374381802e-005 0.01085992130776995 -0.9999410251909873 0.002884647210172477 -0.01047019343041532 -0.9999410250023675 0.002799366906628021 -0.01049333417637169 0.9999410251909873 -0.002884647210172477 0.01047019343041532 0.9999410250023675 -0.002799366906628021 0.01049333417637169 9.286956521859729e-019 -0.2567189364859594 -0.9664861031848921 -5.715048115234753e-019 0.002173823798311303 -0.9999976372422557 -5.715048115234815e-019 0.002173823798316985 -0.9999976372422557 9.286956521860817e-019 -0.2567189364859696 -0.9664861031848894 -9.286956521860817e-019 0.2567189364859696 0.9664861031848894 -9.286956521859729e-019 0.2567189364859594 0.9664861031848921 5.715048115234753e-019 -0.002173823798311303 0.9999976372422557 5.715048115234815e-019 -0.002173823798316985 0.9999976372422557 -0.999941027241365 -0.005363709391798363 -0.009443127715125572 -0.999941027016906 -0.005440356935925922 -0.009399202348336674 0.999941027016906 0.005440356935925922 0.009399202348336674 0.999941027241365 0.005363709391798363 0.009443127715125572 0.004942785664726246 -0.2568034608485688 -0.9664510082596376 0.003828242018622541 0.004557013776478851 -0.999982288937403 0.0038266651399871 -0.2544110204982774 -0.9670886150105025 -0.0038266651399871 0.2544110204982774 0.9670886150105025 -0.003828242018622541 -0.004557013776478851 0.999982288937403 -0.004942785664726246 0.2568034608485688 0.9664510082596376 -0.9999410238180577 0.005496359094067572 -0.009366905700582823 -0.9999410236206152 0.005419907617564657 -0.009411369824492982 0.9999410238180577 -0.005496359094067572 0.009366905700582823 0.9999410236206152 -0.005419907617564657 0.009411369824492982 1.643076813688965e-018 0.26091795302378 -0.9653609800431552 1.643076813689116e-018 0.2609179530237881 -0.9653609800431529 -1.643076813689116e-018 -0.2609179530237881 0.9653609800431529 -1.643076813688965e-018 -0.26091795302378 0.9653609800431552 0.004944863497418337 0.002079709308106825 -0.9999856114635779 0.003826725799420876 0.2632158559531372 -0.9647293762213907 -0.003826725799420876 -0.2632158559531372 0.9647293762213907 -0.004944863497418337 -0.002079709308106825 0.9999856114635779 5.715048112518241e-019 -0.4981166872421474 -0.8671100079522257 5.715048112519107e-019 -0.4981166872421416 -0.8671100079522289 -5.715048112519107e-019 0.4981166872421416 0.8671100079522289 -5.715048112518241e-019 0.4981166872421474 0.8671100079522257 -0.9999410279774628 -0.007624925862152798 -0.007733115347123785 -0.999941027776978 -0.007687610089140697 -0.007670829123266627 0.999941027776978 0.007687610089140697 0.007670829123266627 0.9999410279774628 0.007624925862152798 0.007733115347123785 0.004945237506788235 -0.498190537464372 -0.8670534775934884 0.003830007769246236 -0.4960444625889477 -0.8682886744483829 -0.003830007769246236 0.4960444625889477 0.8682886744483829 -0.004945237506788235 0.498190537464372 0.8670534775934884 -0.9999410231812367 0.007733425532157156 -0.007625240245423564 -0.9999410229394634 0.007671116821697991 -0.00768795222977871 0.9999410231812367 -0.007733425532157156 0.007625240245423564 0.9999410229394634 -0.007671116821697991 0.00768795222977871 3.714782186172493e-018 0.5018825991966418 -0.8649357528878217 3.714782186172491e-018 0.5018825991966421 -0.8649357528878214 -3.714782186172491e-018 -0.5018825991966421 0.8649357528878214 -3.714782186172493e-018 -0.5018825991966418 0.8649357528878217 0.004941675560377144 0.2608252386265301 -0.9653733861765972 0.003821063636068529 0.5039417767426235 -0.8637291734833188 -0.003821063636068529 -0.5039417767426235 0.8637291734833188 -0.004941675560377144 -0.2608252386265301 0.9653733861765972 -1.143009550785445e-018 -0.7055662686997609 -0.7086439447798146 -1.143009550785445e-018 -0.7055662686997598 -0.7086439447798156 1.143009550785445e-018 0.7055662686997598 0.7086439447798156 1.143009550785445e-018 0.7055662686997609 0.7086439447798146 -0.9999410273711995 -0.009366649538182812 -0.005496149220936206 -0.9999410270511003 -0.009411083689174002 -0.005419771562170325 0.9999410270511003 0.009411083689174002 0.005419771562170325 0.9999410273711995 0.009366649538182812 0.005496149220936206 0.004947190279231937 -0.705623059879875 -0.7085701254456779 0.003831559424319163 -0.7038698595571158 -0.7103186186208439 -0.003831559424319163 0.7038698595571158 0.7103186186208439 -0.004947190279231937 0.705623059879875 0.7085701254456779 -0.9999410254789244 0.009443272316692088 -0.005363783376497059 -0.9999410251117098 0.009399334675645549 -0.00544047848980481 0.9999410254789244 -0.009443272316692088 0.005363783376497059 0.9999410251117098 -0.009399334675645549 0.00544047848980481 4.000533201430981e-018 0.7086421448071734 -0.7055680765192605 4.00053320143097e-018 0.7086421448071717 -0.7055680765192622 -4.00053320143097e-018 -0.7086421448071717 0.7055680765192622 -4.000533201430981e-018 -0.7086421448071734 0.7055680765192605 0.004938464558228079 0.5017959577429818 -0.8649719234522071 0.003824929807736708 0.7103168903995655 -0.7038716396652572 -0.003824929807736708 -0.7103168903995655 0.7038716396652572 -0.004938464558228079 -0.5017959577429818 0.8649719234522071 -4.572041747584274e-018 -0.864936467361332 -0.5018813678833869 -4.572041747584255e-018 -0.8649364673613317 -0.5018813678833874 4.572041747584274e-018 0.864936467361332 0.5018813678833869 4.572041747584255e-018 0.8649364673613317 0.5018813678833874 -0.9999410254124463 -0.01047018167537675 -0.00288461310922097 -0.9999410251383567 -0.01049332216834374 -0.002799363342558378 0.9999410251383567 0.01049332216834374 0.002799363342558378 0.9999410254124463 0.01047018167537675 0.00288461310922097 0.003832821996489258 -0.8637292188850311 -0.5039416096332962 0.004949545639221747 -0.8649707823906792 -0.5017978154679645 -0.004949545639221747 0.8649707823906792 0.5017978154679645 -0.003832821996489258 0.8637292188850311 0.5039416096332962 -0.9999410277040745 0.01050954553455601 -0.0027368899825801 -0.9999410274483728 0.01048696668360297 -0.002822260666456722 0.9999410277040745 -0.01050954553455601 0.0027368899825801 0.9999410274483728 -0.01048696668360297 0.002822260666456722 5.715048312027202e-019 0.8671086552386754 -0.4981190420072052 5.715048312025381e-019 0.8671086552386785 -0.4981190420071999 -5.715048312027202e-019 -0.8671086552386754 0.4981190420072052 -5.715048312025381e-019 -0.8671086552386785 0.4981190420071999 0.0049414496731202 0.7085678671176957 -0.7056253678570574 0.003820269720511365 0.8682920451375475 -0.4960386374972395 -0.003820269720511365 -0.8682920451375475 0.4960386374972395 -0.0049414496731202 -0.7085678671176957 0.7056253678570574 -7.429561417819622e-018 -0.9653613948153605 -0.2609164184181239 -7.429561417819627e-018 -0.9653613948153605 -0.2609164184181246 7.429561417819622e-018 0.9653613948153605 0.2609164184181239 7.429561417819627e-018 0.9653613948153605 0.2609164184181246 -0.9999410239817562 -0.01086014318859406 -7.647378754804853e-005 -0.9999410236950654 -0.0108604323189624 1.189578101152491e-005 0.9999410236950654 0.0108604323189624 -1.189578101152491e-005 0.9999410239817562 0.01086014318859406 7.647378754804853e-005 0.003828924557667887 -0.9647294463450653 -0.2632155669626615 0.004947196804022776 -0.9653740421109739 -0.2608227061858341 -0.004947196804022776 0.9653740421109739 0.2608227061858341 -0.003828924557667887 0.9647294463450653 0.2632155669626615 -0.9999410275599662 0.01085981393770593 7.644316398962921e-005 -0.9999410273536835 0.01086009544374367 -1.190852621266681e-005 0.9999410275599662 -0.01085981393770593 -7.644316398962921e-005 0.9999410273536835 -0.01086009544374367 1.190852621266681e-005 2.286020727136626e-018 0.9664860372523969 -0.2567191847060875 2.28602072713672e-018 0.9664860372523976 -0.2567191847060854 -2.286020727136626e-018 -0.9664860372523969 0.2567191847060875 -2.28602072713672e-018 -0.9664860372523976 0.2567191847060854 0.004937611921748164 0.8670557886269709 -0.4981865909445694 0.003827393334498319 0.9670875751500726 -0.2544149623167159 -0.003827393334498319 -0.9670875751500726 0.2544149623167159 -0.004937611921748164 -0.8670557886269709 0.4981865909445694 -5.143545129757725e-018 -0.9999976392143629 -0.002172916404493806 -5.14354512975772e-018 -0.9999976392143629 -0.002172916404493386 5.143545129757725e-018 0.9999976392143629 0.002172916404493806 5.14354512975772e-018 0.9999976392143629 0.002172916404493386 -0.999941022673983 -0.01048738397334414 0.002822401655441478 -0.999941022932187 -0.01050997881948693 0.002736969591659315 0.999941022673983 0.01048738397334414 -0.002822401655441478 0.999941022932187 0.01050997881948693 -0.002736969591659315 0.003823753939118948 -0.9999822999605859 -0.004558362792749011 0.00494289717588586 -0.9999856224609727 -0.002079095680684648 -0.00494289717588586 0.9999856224609727 0.002079095680684648 -0.003823753939118948 0.9999822999605859 0.004558362792749011 -0.9999410261363435 0.01049322892617458 0.002799356372282648 -0.9999410263259161 0.01047008550038063 0.002884645539441912 0.9999410263259161 -0.01047008550038063 -0.002884645539441912 0.9999410261363435 -0.01049322892617458 -0.002799356372282648 8.00106323387303e-018 0.9999976415480206 0.002171842166549161 8.001063233873028e-018 0.9999976415480205 0.002171842166550713 -8.00106323387303e-018 -0.9999976415480206 -0.002171842166549161 -8.001063233873028e-018 -0.9999976415480205 -0.002171842166550713 0.004943655417316188 0.9664498920219311 -0.2568076449055063 0.003820960518357111 0.9999823146921165 0.004557473391502327 -0.003820960518357111 -0.9999823146921165 -0.004557473391502327 -0.004943655417316188 -0.9664498920219311 0.2568076449055063 -6.858057229063156e-018 -0.966486022918216 0.2567192386708286 -6.858057229063177e-018 -0.9664860229182158 0.2567192386708294 6.858057229063156e-018 0.966486022918216 -0.2567192386708286 6.858057229063177e-018 0.9664860229182158 -0.2567192386708294 -0.9999410247043286 -0.009399388050470537 0.005440461150824826 -0.9999410247948612 -0.009443327762755185 0.005363813286095222 0.9999410247043286 0.009399388050470537 -0.005440461150824826 0.9999410247948612 0.009443327762755185 -0.005363813286095222 0.003820755532216115 -0.9670893318392673 0.2544083844330651 0.004936272458468085 -0.9664516804695458 0.2568010563292271 -0.004936272458468085 0.9664516804695458 -0.2568010563292271 -0.003820755532216115 0.9670893318392673 -0.2544083844330651 -0.9999410253685213 0.009411196694760312 0.005419885766598052 -0.9999410256117496 0.009366813524850533 0.005496189854195041 0.9999410256117496 -0.009366813524850533 -0.005496189854195041 0.9999410253685213 -0.009411196694760312 -0.005419885766598052 3.429033357918545e-018 0.965360504839634 0.2609197112058935 3.429033357918479e-018 0.9653605048396337 0.2609197112058954 -3.429033357918545e-018 -0.965360504839634 -0.2609197112058935 -3.429033357918479e-018 -0.9653605048396337 -0.2609197112058954 0.004934312890925137 0.9999856557972721 0.002083448102078534 0.003817824858266475 0.9647289711546364 0.263217469838665 -0.003817824858266475 -0.9647289711546364 -0.263217469838665 -0.004934312890925137 -0.9999856557972721 -0.002083448102078534 -9.144078984033087e-018 -0.867110662481631 0.4981155478507642 -9.144078984033078e-018 -0.8671106624816305 0.4981155478507653 9.144078984033087e-018 0.867110662481631 -0.4981155478507642 9.144078984033078e-018 0.8671106624816305 -0.4981155478507653 -0.9999410258568779 -0.007670953598774204 0.007687735634113518 -0.9999410261583621 -0.007733206562220277 0.007625071909699455 0.9999410258568779 0.007670953598774204 -0.007687735634113518 0.9999410261583621 0.007733206562220277 -0.007625071909699455 0.003833002046245444 -0.8682878081597345 0.4960459558311885 0.004943216518040933 -0.8670551900821601 0.4981875770852226 -0.004943216518040933 0.8670551900821601 -0.4981875770852226 -0.003833002046245444 0.8682878081597345 -0.4960459558311885 -0.9999410269360286 0.00768770199564354 0.007670846638225618 -0.9999410272625215 0.00762500257451162 0.007733132154028003 0.9999410272625215 -0.00762500257451162 -0.007733132154028003 0.9999410269360286 -0.00768770199564354 -0.007670846638225618 1.854995159308181e-033 0.8649358526966459 0.501882427187809 0 0.8649358526966459 0.5018824271878087 -1.854995159308181e-033 -0.8649358526966459 -0.501882427187809 -0 -0.8649358526966459 -0.5018824271878087 0.00493577675738415 0.965373481876459 0.2608249961133392 0.003824655911536794 0.8637325256144357 0.5039360040747896 -0.003824655911536794 -0.8637325256144357 -0.5039360040747896 -0.00493577675738415 -0.965373481876459 -0.2608249961133392 -4.000534401751088e-018 -0.7086423925289491 0.7055678277181058 -4.000534401751267e-018 -0.7086423925289535 0.7055678277181015 4.000534401751088e-018 0.7086423925289491 -0.7055678277181058 4.000534401751267e-018 0.7086423925289535 -0.7055678277181015 -0.9999410250620634 -0.005419835344405121 0.009411258293619431 -0.9999410252935886 -0.005496284586928853 0.009366791902600188 0.9999410250620634 0.005419835344405121 -0.009411258293619431 0.9999410252935886 0.005496284586928853 -0.009366791902600188 0.003839165997742563 -0.7103157740092257 0.7038726887712835 0.004956122332517188 -0.7085675751092042 0.7056255581789024 -0.004956122332517188 0.7085675751092042 -0.7056255581789024 -0.003839165997742563 0.7103157740092257 -0.7038726887712835 -0.9999410283762649 0.005440312684114939 0.009399083344507243 -0.9999410286150683 0.005363601809037949 0.00944304335864537 0.9999410286150683 -0.005363601809037949 -0.00944304335864537 0.9999410283762649 -0.005440312684114939 -0.009399083344507243 1.143010565603663e-018 0.7055700372479684 0.708640192578646 1.143010565603663e-018 0.7055700372479702 0.7086401925786443 -1.143010565603663e-018 -0.7055700372479684 -0.708640192578646 -1.143010565603663e-018 -0.7055700372479702 -0.7086401925786443 0.004943198463052079 0.8649741663126888 0.5017920449754302 0.003828663124196161 0.7038699749626737 0.7103185198801497 -0.003828663124196161 -0.7038699749626737 -0.7103185198801497 -0.004943198463052079 -0.8649741663126888 -0.5017920449754302 1.143009736610791e-018 -0.5018818905357418 0.864936164090894 1.143009736610772e-018 -0.5018818905357437 0.8649361640908929 -1.143009736610772e-018 0.5018818905357437 -0.8649361640908929 -1.143009736610791e-018 0.5018818905357418 -0.864936164090894 -0.9999410255099235 -0.002799393181743322 0.01049327880009495 -0.9999410257213326 -0.002884592461343174 0.01047015786420724 0.9999410255099235 0.002799393181743322 -0.01049327880009495 0.9999410257213326 0.002884592461343174 -0.01047015786420724 0.004945242852861994 -0.5017941450757408 0.8649729363054273 0.003824873531433713 -0.5039411440157595 0.863729525783712 -0.003824873531433713 0.5039411440157595 -0.863729525783712 -0.004945242852861994 0.5017941450757408 -0.8649729363054273 -0.9999410274584727 0.002822277484269053 0.01048696119453971 -0.9999410276338193 0.002736849005709989 0.0105095628901078 0.9999410276338193 -0.002736849005709989 -0.0105095628901078 0.9999410274584727 -0.002822277484269053 -0.01048696119453971 3.143276138552537e-018 0.4981161284324288 0.8671103289636725 3.143276138552654e-018 0.4981161284324221 0.8671103289636764 -3.143276138552654e-018 -0.4981161284324221 -0.8671103289636764 -3.143276138552537e-018 -0.4981161284324288 -0.8671103289636725 0.004946838745694068 0.705624759428811 0.7085684354157024 0.003832358652013756 0.4960426150147506 0.8682897195731909 -0.003832358652013756 -0.4960426150147506 -0.8682897195731909 -0.004946838745694068 -0.705624759428811 -0.7085684354157024 1.357324303737726e-018 -0.2609183436732318 0.9653608744582605 1.357324303737725e-018 -0.2609183436732317 0.9653608744582606 -1.357324303737726e-018 0.2609183436732318 -0.9653608744582605 -1.357324303737725e-018 0.2609183436732317 -0.9653608744582606 -0.999941026412113 -7.640534256199236e-005 0.01085991989442496 -0.999941026192585 1.181962340437762e-005 0.01086020244821933 0.999941026412113 7.640534256199236e-005 -0.01085991989442496 0.999941026192585 -1.181962340437762e-005 -0.01086020244821933 0.004940850776478425 -0.2608260194767013 0.9653731794272844 0.003825647232711771 -0.2632147699247492 0.9647296768093704 -0.003825647232711771 0.2632147699247492 -0.9647296768093704 -0.004940850776478425 0.2608260194767013 -0.9653731794272844 3.143278067595227e-018 0.2567179580818204 0.9664863630689782 3.143278067595215e-018 0.2567179580818195 0.9664863630689783 -3.143278067595227e-018 -0.2567179580818204 -0.9664863630689782 -3.143278067595215e-018 -0.2567179580818195 -0.9664863630689783 0.004950182655957406 0.4981916449537949 0.8670528130338454 0.003832480658714482 0.2544130730309406 0.9670880520216109 -0.003832480658714482 -0.2544130730309406 -0.9670880520216109 -0.004950182655957406 -0.4981916449537949 -0.8670528130338454 7.858190309334453e-019 -0.002175164586431004 0.9999976343267127 7.858190309334296e-019 -0.002175164586436765 0.9999976343267127 -7.858190309334453e-019 0.002175164586431004 -0.9999976343267127 -7.858190309334296e-019 0.002175164586436765 -0.9999976343267127 0.004940921873113072 -0.002084718490196847 0.9999856205165454 0.00382758993817654 -0.004556349394965424 0.999982294460985 -0.00382758993817654 0.004556349394965424 -0.999982294460985 -0.004940921873113072 0.002084718490196847 -0.9999856205165454 0.004946892765949841 0.2568047730411928 0.9664506385714813 -0.004946892765949841 -0.2568047730411928 -0.9664506385714813</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"288\" source=\"#ID357\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID355\">\r\n                    <float_array count=\"1344\" id=\"ID358\">0.04500165965700093 21.74008679032289 -6.710953503131737 20.09757480725083 0.1000627746095763 20.77921931956998 -7.080247872229587 21.0145052715412 -3.540123936114794 10.5072526357706 0.02250082982850047 10.87004339516144 -3.355476751565869 10.04878740362542 0.05003138730478817 10.38960965978499 0.07534380260125198 21.74001127780054 6.933554213792702 20.05073484708986 7.196528629951274 20.99006307575776 0.1303669829364637 20.77914246233489 0.06518349146823182 10.38957123116744 0.03767190130062599 10.87000563890027 3.466777106896351 10.02536742354493 3.598264314975637 10.49503153787888 -12.86224447874705 -2.82602362217035 -10.61044593144633 2.825940115185436 -12.86224447874711 2.825940115185495 -10.61044593144635 -2.826023622170461 -5.305222965723173 -1.41301181108523 -6.431122239373526 -1.413011811085175 -5.305222965723164 1.412970057592718 -6.431122239373552 1.412970057592747 -7.109527114000408 21.00841184581578 -13.09484172604693 18.04624503956301 -6.740198911846502 20.0914898144459 -13.75322553755872 18.85673535189866 -6.876612768779358 9.42836767594933 -3.554763557000204 10.50420592290789 -6.547420863023467 9.023122519781506 -3.370099455923251 10.04574490722295 -4.327947130481451 -2.831682395143322 -10.59673960971082 2.494519512677447 -10.42638530473695 -2.905002536116535 -5.213192652368477 -1.452501268058267 -5.298369804855411 1.247259756338724 -2.163973565240725 -1.415841197571661 7.225755851347815 20.9838244764124 13.29449402849827 17.95567810305388 13.85751213473528 18.80944566772061 6.962746893829194 20.04450223255975 3.481373446914597 10.02225111627987 3.612877925673907 10.4919122382062 6.647247014249137 8.977839051526939 6.928756067367642 9.404722833860303 10.61044593144633 2.825981580630943 12.86224447874709 -2.825992595740977 12.86224447874711 2.825981580630883 10.61044593144633 -2.825992595741062 5.305222965723164 -1.412996297870531 5.305222965723164 1.412990790315471 6.431122239373543 -1.412996297870488 6.431122239373552 1.412990790315442 4.495704241856068 2.664961531154151 10.43221711685011 -2.891879332533704 10.59158413280459 2.507848288547653 5.295792066402295 1.253924144273827 5.216108558425053 -1.445939666266852 2.247852120928034 1.332480765577075 -12.86224447874696 -2.825947916893363 -10.61044593144635 2.826018007123239 -12.86224447874705 2.826018007123342 -10.6104459314464 -2.825947916893278 -5.3052229657232 -1.412973958446639 -6.431122239373481 -1.412973958446681 -5.305222965723173 1.413009003561619 -6.431122239373526 1.413009003561671 -13.77936642589772 18.84494910367416 -18.58612139372733 14.76504876496961 -13.1209585274604 18.03447090017816 -19.48876166620547 15.41386975725847 -9.744380833102735 7.706934878629236 -6.889683212948862 9.42247455183708 -9.293060696863666 7.382524382484806 -6.560479263730202 9.01723545008908 -4.388737822148864 -2.773106452524509 -10.54092074314131 2.636624072452559 -10.48787858864871 -2.764407581528367 -5.243939294324353 -1.382203790764184 -5.270460371570657 1.31831203622628 -2.194368911074432 -1.386553226262254 -4.202713000993107 -2.847316927641705 -4.496732087605833 2.554385096985135 -10.59227251636439 2.389322457437515 -5.296136258182196 1.194661228718757 -2.248366043802917 1.277192548492567 -2.101356500496554 -1.423658463820853 -4.39962318408665 2.65699263316773 -10.49869520647 2.632675389960963 -4.30720657991396 -2.74923276937071 -2.15360328995698 -1.374616384685355 -5.249347603234998 1.316337694980481 -2.199811592043325 1.328496316583865 13.88355461244131 18.79753048361999 18.74912252010727 14.63692954201792 19.57388520321002 15.34696485517103 13.32051131828215 17.94377319846329 6.660255659141074 8.971886599231643 6.941777306220654 9.398765241809993 9.374561260053634 7.318464771008959 9.786942601605007 7.673482427585516 10.61044593144633 2.826024849709162 12.86224447874698 -2.825950054937781 12.86224447874709 2.826024849709241 10.61044593144633 -2.825950054937781 5.305222965723164 -1.41297502746889 5.305222965723164 1.413012424854581 6.43112223937349 -1.41297502746889 6.431122239373543 1.41301242485462 4.442089363119534 2.720080828020509 10.48866032343423 -2.762877897270078 10.54035182778038 2.638199660780892 5.270175913890189 1.319099830390446 5.244330161717117 -1.381438948635039 2.221044681559767 1.360040414010254 4.208186488432563 -2.842408495161039 10.29981134249543 -3.080686268385806 4.491944073349894 2.559656761580416 2.245972036674947 1.279828380790208 5.149905671247714 -1.540343134192903 2.104093244216282 -1.421204247580519 -12.86224447874695 -2.82600768666433 -10.6104459314464 2.825974081103952 -12.86224447874696 2.825974081103872 -10.61044593144626 -2.826007686664317 -5.305222965723129 -1.413003843332158 -6.431122239373472 -1.413003843332165 -5.3052229657232 1.412987040551976 -6.431122239373481 1.412987040551936 -19.50998122430807 15.39728158332552 -22.81065927108942 10.47772735264272 -18.60732806298233 14.74847168761938 -23.89600667514926 10.92066306974483 -11.94800333757463 5.460331534872416 -9.754990612154034 7.698640791662758 -11.40532963554471 5.238863676321358 -9.303664031491167 7.374235843809688 -4.401245236452727 -2.76072003842497 -10.52885884924632 2.666219038494773 -10.50030773036436 -2.734916554904787 -5.250153865182178 -1.367458277452394 -5.26442942462316 1.333109519247386 -2.200622618226364 -1.380360019212485 -4.378491287508375 2.678448496215526 -10.47763817691943 2.68387523224497 -4.32864380715561 -2.728077418327247 -2.164321903577805 -1.364038709163623 -5.238819088459714 1.341937616122485 -2.189245643754187 1.339224248107763 19.5949665952896 15.33027302281989 22.92595043396204 10.32077586296335 23.95620936789129 10.83867888613798 18.77018998656991 14.62024772013757 9.385094993284955 7.310123860068783 9.797483297644799 7.665136511409947 11.46297521698102 5.160387931481677 11.97810468394564 5.41933944306899 10.61044593144633 2.826049461490449 12.86224447874695 -2.825897195613273 12.86224447874698 2.826049461490449 10.6104459314464 -2.825897195613247 5.3052229657232 -1.412948597806623 5.305222965723164 1.413024730745224 6.431122239373472 -1.412948597806637 6.43112223937349 1.413024730745224 4.430291040022829 2.732353085540517 10.50094812248903 -2.734076931910342 10.52887684445967 2.667030953698378 5.264438422229835 1.333515476849189 5.250474061244517 -1.367038465955171 2.215145520011415 1.366176542770259 4.307926494970575 -2.748488817035858 10.405646661895 -2.852414177822029 4.399105344315679 2.657705380890611 2.199552672157839 1.328852690445306 5.202823330947497 -1.426207088911014 2.153963247485287 -1.374244408517929 -10.61044593144626 2.825894995370698 -12.86224447874705 -2.82609222888195 -10.61044593144633 -2.826092228881945 -12.86224447874695 2.82589499537068 -6.431122239373472 1.41294749768534 -5.305222965723129 1.412947497685349 -6.431122239373526 -1.413046114440975 -5.305222965723164 -1.413046114440972 -23.91094160824194 10.90046653479481 -25.480634378765 5.476511141612718 -22.82558978287088 10.45753752207573 -26.67466626827587 5.683381458330269 -13.33733313413794 2.841690729165134 -11.95547080412097 5.450233267397406 -12.7403171893825 2.738255570806359 -11.41279489143544 5.228768761037864 -10.52299040682837 2.680227784306265 -10.5061668122532 -2.720959260215462 -4.407169166769916 -2.754967482411306 -2.203584583384958 -1.377483741205653 -5.253083406126599 -1.360479630107731 -5.261495203414187 1.340113892153132 -10.46739654333959 2.708275296133268 -4.338942229388606 -2.718106829418196 -4.36829736990867 2.688553868555497 -2.184148684954335 1.344276934277748 -2.169471114694303 -1.359053414709098 -5.233698271669796 1.354137648066634 23.97097124693982 10.81840765627475 25.54024123667234 5.301444883669677 26.70589873035085 5.591928469817038 22.94070725863429 10.30051085556732 11.47035362931715 5.150255427783658 11.98548562346991 5.409203828137374 12.77012061833617 2.650722441834839 13.35294936517543 2.795964234908519 12.86224447874695 2.825978074745911 10.61044593144626 -2.826022509369519 12.86224447874705 -2.826022509369585 10.6104459314464 2.825978074745936 5.3052229657232 1.412989037372968 6.431122239373472 1.412989037372956 5.305222965723129 -1.41301125468476 6.431122239373526 -1.413011254684793 4.424277996020746 2.737940602897313 10.50650593923221 -2.720529992983924 10.52299403178044 2.680668671248751 5.261497015890218 1.340334335624375 5.253252969616103 -1.360264996491962 2.212138998010373 1.368970301448656 4.378331935230842 2.678689137250321 4.328980138760369 -2.727871931832631 10.42739215514632 -2.802536852443821 5.21369607757316 -1.40126842622191 2.164490069380185 -1.363935965916316 2.189165967615421 1.339344568625161 -10.61044593144629 -2.825904747399156 -12.86224447874705 2.826069973237946 -12.86224447874705 -2.825904747399128 -10.61044593144633 2.826069973237937 -5.305222965723164 1.413034986618969 -5.305222965723146 -1.412952373699578 -6.431122239373526 1.413034986618973 -6.431122239373526 -1.412952373699564 -26.68240515494901 5.660952007740802 -26.41417937681512 0.1022416071421344 -25.48837270451038 5.454083694207584 -27.63562791825015 0.05894696417114838 -13.81781395912508 0.02947348208557419 -13.34120257747451 2.830476003870401 -13.20708968840756 0.05112080357106722 -12.74418635225519 2.727041847103792 -10.51923878233571 2.689544116394612 -10.51013701455871 -2.711656587826044 -4.411191943823121 -2.751040942821268 -2.20559597191156 -1.375520471410634 -5.255068507279354 -1.355828293913022 -5.259619391167854 1.344772058197306 -10.46055017487655 2.724534513404098 -4.345629980062277 -2.711270388115964 -4.361511748855548 2.695401719720111 -2.180755874427774 1.347700859860056 -2.172814990031139 -1.355635194057982 -5.230275087438276 1.362267256702049 26.71345124453584 5.569463238081498 26.41427114481721 -0.07904357354193686 27.6356806405396 -0.03575631278366894 25.54779300121115 5.278981513532999 12.77389650060558 2.6394907567665 13.35672562226792 2.784731619040749 13.20713557240861 -0.03952178677096843 13.8178403202698 -0.01787815639183447 12.86224447874705 2.825904567781341 10.61044593144638 -2.826080473249799 12.86224447874712 -2.826080473249835 10.61044593144626 2.825904567781381 5.305222965723129 1.412952283890691 6.431122239373526 1.41295228389067 5.305222965723191 -1.4130402366249 6.431122239373561 -1.413040236624918 4.420634634695935 2.742095775502585 10.51058248831772 -2.711008433256825 10.51942773562302 2.690148952244857 5.259713867811509 1.345074476122429 5.255291244158862 -1.355504216628413 2.210317317347967 1.371047887751293 4.368439727116307 2.688941036790968 4.339422289735736 -2.717691662957049 10.43808803086309 -2.778188160359191 5.219044015431544 -1.389094080179595 2.169711144867868 -1.358845831478525 2.184219863558154 1.344470518395484 -10.61044593144636 -2.825999911941941 -12.86224447874705 2.825969956194804 -12.86224447874705 -2.82599991194193 -10.61044593144629 2.825969956194813 -5.305222965723146 1.412984978097406 -5.305222965723181 -1.41299995597097 -6.431122239373525 1.412984978097402 -6.431122239373525 -1.412999955970965 -26.41427583939755 0.07904742262653271 -26.71345594367574 -5.569460127254565 -25.54793886530002 -5.278983127411783 -27.63572438081653 0.03575277887220742 -13.81786219040827 0.01787638943610371 -13.20713791969877 0.03952371131326635 -13.35672797183787 -2.784730063627282 -12.77396943265001 -2.639491563705891 -10.51629208656035 2.697135660162628 -10.51334257328524 -2.704033755330998 -4.414444895310771 -2.747727539370401 -2.207222447655385 -1.373863769685201 -5.256671286642618 -1.352016877665499 -5.258146043280174 1.348567830081314 -10.45521431322128 2.737626225312479 -4.351142237181914 -2.705693483194667 -4.356241648110164 2.700981605799032 -2.178120824055082 1.350490802899516 -2.175571118590957 -1.352846741597333 -5.227607156610642 1.36881311265624 26.41417720728785 -0.1022377360609355 26.68242100433726 -5.660947693454984 27.6355867030183 -0.05895047794281139 25.48830445552332 -5.454082925036311 12.74415222776166 -2.727041462518156 13.20708860364393 -0.05111886803046777 13.34121050216863 -2.830473846727492 13.81779335150915 -0.0294752389714057 12.86224447874712 2.826052632890059 10.61044593144626 -2.82592204733246 12.86224447874695 -2.825922047332492 10.61044593144638 2.826052632890082 5.305222965723191 1.413026316445041 6.431122239373561 1.41302631644503 5.305222965723129 -1.41296102366623 6.431122239373472 -1.412961023666246 4.417217997697089 2.744713837406366 10.51330575549122 -2.704166435394285 10.51606746666478 2.697041471798994 5.258033733332388 1.348520735899497 5.256652877745612 -1.352083217697142 2.208608998848545 1.372356918703183 4.361514299577717 2.695541103625278 4.345847193716227 -2.711126089156569 10.44465127714765 -2.762265554347846 5.222325638573823 -1.381132777173923 2.172923596858114 -1.355563044578285 2.180757149788859 1.347770551812639 -10.6104459314464 -2.825930766618026 -12.86224447874705 2.826041266166101 -12.86224447874691 -2.825930766618044 -10.61044593144636 2.826041266166125 -5.305222965723182 1.413020633083062 -5.3052229657232 -1.412965383309013 -6.431122239373526 1.41302063308305 -6.431122239373455 -1.412965383309022 -25.54038650199819 -5.301448515743764 -23.97101290175442 -10.81841542886811 -22.94071136809923 -10.30052099361089 -26.70590282994665 -5.591927379275652 -13.35295141497332 -2.795963689637826 -12.77019325099909 -2.650724257871882 -11.98550645087721 -5.409207714434054 -11.47035568404961 -5.150260496805447 -10.51363540807846 2.703735574337612 -10.51638582391865 -2.697463741985649 -4.417536498075453 -2.745135983150786 -2.208768249037727 -1.372567991575393 -5.258192911959323 -1.348731870992824 -5.256817704039229 1.351867787168806 -10.45023670146809 2.749406257350436 -4.356258630087857 -2.700933213781691 -4.351338578301006 2.705750945986859 -2.175669289150503 1.352875472993429 -2.178129315043929 -1.350466606890846 -5.225118350734043 1.374703128675218 25.48056850699846 -5.4765109888474 23.91084720343317 -10.90046224804534 26.67468449563205 -5.683377758338963 22.82558998950295 -10.45752259924669 11.41279499475147 -5.228761299623346 12.74028425349923 -2.7382554944237 11.95542360171659 -5.450231124022667 13.33734224781603 -2.841688879169482 12.86224447874695 2.82582712160258 10.61044593144633 -2.826129032011907 12.86224447874705 -2.82612903201192 10.61044593144626 2.825827121602595 5.305222965723129 1.412913560801298 6.431122239373472 1.41291356080129 5.305222965723164 -1.413064516005953 6.431122239373526 -1.41306451600596 4.4146364097076 2.747910046670556 10.51647688693124 -2.696955842399996 10.51353388990205 2.704223658516902 5.256766944951025 1.352111829258451 5.258238443465622 -1.348477921199998 2.2073182048538 1.373955023335278 4.35645153003614 2.70087991621506 4.351538024872898 -2.705808272904777 10.45043595056386 -2.749456155586584 5.225217975281929 -1.374728077793292 2.175769012436449 -1.352904136452389 2.17822576501807 1.35043995810753 -10.6104459314464 2.825966664539571 -12.86224447874705 -2.826015326484667 -10.61044593144629 -2.826015326484686 -12.86224447874691 2.825966664539562 -6.431122239373455 1.412983332269781 -5.3052229657232 1.412983332269786 -6.431122239373526 -1.413007663242334 -5.305222965723146 -1.413007663242343 -22.92594750356043 -10.32078231370186 -19.59503874243783 -15.33026292526798 -18.77019605670036 -14.62023762439384 -23.95624398101459 -10.83868297384684 -11.97812199050729 -5.419341486923419 -11.46297375178022 -5.160391156850932 -9.797519371218915 -7.665131462633992 -9.385098028350182 -7.310118812196918 -10.51025774098094 2.711469903985125 -10.519136567093 -2.689735512526468 -4.420343528520512 -2.741685283211833 -2.210171764260256 -1.370842641605917 -5.2595682835465 -1.344867756263234 -5.25512887049047 1.355734951992562 -10.44496489620798 2.762230408910285 -4.361795749282214 -2.695581765113801 -4.346160956957755 2.711090981816287 -2.173080478478878 1.355545490908144 -2.180897874641107 -1.3477908825569 -5.222482448103991 1.381115204455142 22.81066195964529 -10.47771276851302 19.50999293442922 -15.39728354324274 23.89591475193814 -10.92065912129808 18.60733076095817 -14.74847483060988 9.303665380479083 -7.374237415304939 11.40533097982264 -5.23885638425651 9.754996467214612 -7.698641771621368 11.94795737596907 -5.460329560649042 12.86224447874705 2.826225508708164 10.61044593144644 -2.825782753959264 12.86224447874696 -2.825782753959264 10.61044593144633 2.826225508708167 5.305222965723164 1.413112754354084 6.431122239373526 1.413112754354082 5.305222965723218 -1.412891376979632 6.431122239373481 -1.412891376979632 4.411525367456426 2.750835793495604 10.51953671685669 -2.689732105727344 10.51046993801221 2.711434912783619 5.255234969006104 1.355717456391809 5.259768358428346 -1.344866052863672 2.205762683728213 1.375417896747802 4.351468090508527 2.705965589278195 4.356556746050451 -2.700699764144963 10.4555289323171 -2.737359948082401 5.227764466158549 -1.3686799740412 2.178278373025226 -1.350349882072481 2.175734045254263 1.352982794639098 -10.61044593144629 2.825979287301716 -12.86224447874705 -2.825992100767848 -10.61044593144633 -2.825992100767798 -12.86224447874705 2.825979287301734 -6.431122239373526 1.412989643650867 -5.305222965723146 1.412989643650858 -6.431122239373526 -1.412996050383924 -5.305222965723164 -1.412996050383899 -18.74913042428991 -14.63692005507998 -13.88360005709505 -18.79752453568512 -13.32055676393909 -17.94376725013277 -19.57395918633143 -15.34695536581981 -9.786979593165713 -7.673477682909906 -9.374565212144953 -7.31846002753999 -6.941800028547526 -9.398762267842558 -6.660278381969544 -8.971883625066383 -10.50600177760153 2.720649408174218 -10.52258142340395 -2.680531625677441 -4.423865910935081 -2.737831791075885 -2.211932955467541 -1.368915895537943 -5.261290711701975 -1.34026581283872 -5.253000888800764 1.360324704087109 -10.43779947743348 2.778124667649001 -4.368203459203839 -2.688987647016699 -4.339133801438258 2.717625466155597 -2.169566900719129 1.358812733077798 -2.184101729601919 -1.344493823508349 -5.218899738716739 1.389062333824501 18.5861204811644 -14.76505058173662 13.77936550939809 -18.84494501053288 19.48876976388837 -15.41387039274213 13.12090955371273 -18.03447626008716 6.560454776856362 -9.01723813004358 9.2930602405822 -7.382525290868308 6.889682754699045 -9.422472505266441 9.744384881944184 -7.706935196371063 12.86224447874696 2.825791620706781 10.61044593144629 -2.826150515554888 12.86224447874705 -2.826150515554875 10.61044593144644 2.825791620706781 5.305222965723218 1.412895810353391 6.431122239373481 1.412895810353391 5.305222965723146 -1.413075257777444 6.431122239373526 -1.413075257777438 4.407346409174058 2.754875420631839 10.52313453471532 -2.680309961522778 10.50634358496391 2.720891158259654 5.253171792481954 1.360445579129827 5.261567267357662 -1.340154980761389 2.203673204587029 1.37743771031592 4.345862822087661 2.711004199695371 4.36172004203437 -2.695664125246008 10.46075794161088 -2.724776304844964 5.230378970805441 -1.362388152422482 2.180860021017185 -1.347832062623004 2.17293141104383 1.355502099847685 -12.86224447874695 -2.825976183967639 -10.61044593144633 2.825990416027972 -12.86224447874705 2.825990416027897 -10.61044593144638 -2.825976183967614 -5.305222965723191 -1.412988091983807 -6.431122239373472 -1.412988091983819 -5.305222965723164 1.412995208013986 -6.431122239373526 1.412995208013948 -13.29454013808028 -17.95567278723111 -7.225792948281573 -20.98382388441372 -6.962728423460445 -20.04450400512787 -13.85755824385552 -18.80944035209259 -6.928779121927762 -9.404720176046295 -6.647270069040138 -8.977836393615556 -3.612896474140786 -10.49191194220686 -3.481364211730222 -10.02225200256394 -4.430171035067845 -2.732341685834769 -10.50077901065932 2.734066663135995 -10.52875653309172 -2.667019882103738 -5.264378266545858 -1.333509941051869 -5.25038950532966 1.367033331567997 -2.215085517533923 -1.366170842917385 -4.328518097775763 2.728095874626715 -10.42692928344672 2.802797985646838 -4.378004242621763 -2.678465056738759 -2.189002121310882 -1.339232528369379 -5.21346464172336 1.401398992823419 -2.164259048887882 1.364047937313357 13.09479295026678 -18.04624987728669 7.109488848458013 -21.00842022412065 13.75322481972926 -18.85673073724269 6.740151636101647 -20.09147929057193 3.370075818050824 -10.04573964528597 6.547396475133392 -9.023124938643347 3.554744424229007 -10.50421011206032 6.876612409864629 -9.428365368621344 10.61044593144629 2.826043208161488 12.862244478747 -2.82594132410737 12.86224447874705 2.826043208161514 10.61044593144629 -2.825941324107447 5.305222965723146 -1.412970662053724 5.305222965723146 1.413021604080744 6.431122239373499 -1.412970662053685 6.431122239373526 1.413021604080757 4.401303486300014 2.760784370702243 10.52890011716264 -2.666196886704789 10.50036585142223 2.734971001562761 5.250182925711115 1.367485500781381 5.264450058581321 -1.333098443352395 2.200651743150007 1.380392185351122 4.338997338335714 2.717948747950908 4.368342022762667 -2.688678959368056 10.46744109647829 -2.708407758160335 5.233720548239147 -1.354203879080168 2.184171011381333 -1.344339479684028 2.169498669167857 1.358974373975454 -10.61044593144636 -2.826003796516174 -12.86224447874694 2.825979469314216 -12.86224447874705 -2.826003796516174 -10.61044593144638 2.825979469314233 -5.30522296572319 1.412989734657116 -5.305222965723181 -1.413001898258087 -6.431122239373472 1.412989734657108 -6.431122239373525 -1.413001898258087 -0.1303295216944846 -20.7791541441071 -7.196566260968286 -20.990062942279 -0.07540959329038582 -21.74001114445558 -6.933536276452181 -20.05073707708879 -3.466768138226091 -10.0253685385444 -0.06516476084724229 -10.38957707205355 -3.598283130484143 -10.4950314711395 -0.03770479664519291 -10.87000557222779 -4.442085949347874 -2.719981088299503 -10.48865422912526 2.762966583080145 -10.54034897368759 -2.638160548550109 -5.270174486843797 -1.319080274275055 -5.24432711456263 1.381483291540072 -2.221042974673937 -1.359990544149752 -4.39903924405151 -2.657516153234907 -4.307800004700079 2.748704857416722 -10.40551982253659 2.852631559912603 -5.202759911268297 1.426315779956301 -2.153900002350039 1.374352428708361 -2.199519622025755 -1.328758076617453 6.71090713895255 -20.09756546865577 -0.04506717194452021 -21.74008690407053 7.080210519352136 -21.01451483490556 -0.1000250353029242 -20.77923124592329 -0.05001251765146209 -10.38961562296164 3.355453569476275 -10.04878273432789 -0.0225335859722601 -10.87004345203527 3.540105259676068 -10.50725741745278 12.862244478747 2.825946327616524 10.61044593144629 -2.826051856133897 12.86224447874703 -2.826051856133904 10.61044593144629 2.82594632761644 5.305222965723146 1.41297316380822 6.431122239373499 1.412973163808262 5.305222965723146 -1.413025928066949 6.431122239373517 -1.413025928066952 4.388634374310819 2.773181238710972 10.54086775703753 -2.636542126831748 10.48777562266277 2.764482314003959 5.243887811331383 1.38224115700198 5.270433878518763 -1.318271063415874 2.19431718715541 1.386590619355486 4.328497143600641 2.728049645213909 4.378387600123009 -2.678476127130542 10.47753497153215 -2.683902847387294 5.238767485766075 -1.341951423693647 2.189193800061505 -1.339238063565271 2.164248571800321 1.364024822606955 -10.61044593144629 -2.825941511668355 -12.86224447874705 2.826010708320168 -12.86224447874705 -2.8259415116683 -10.61044593144636 2.826010708320168 -5.305222965723182 1.413005354160084 -5.305222965723146 -1.412970755834178 -6.431122239373526 1.413005354160084 -6.431122239373526 -1.41297075583415 -4.495704144051983 -2.664967449207419 -10.4322800455154 2.891766839544133 -10.59158817915015 -2.507978354408405 -5.295794089575077 -1.253989177204203 -5.216140022757697 1.445883419772067 -2.247852072025991 -1.332483724603709 -4.208366568860864 2.842306276570779 -10.30000224773623 3.080400759006474 -4.491947727247955 -2.559759000559964 -2.245973863623977 -1.279879500279982 -5.150001123868115 1.540200379503237 -2.104183284430432 1.421153138285389 12.86224447874703 2.82603951587651 10.61044593144629 -2.825944977148527 12.86224447874705 -2.825944977148583 10.61044593144629 2.826039515876513 5.305222965723146 1.413019757938257 6.431122239373517 1.413019757938255 5.305222965723146 -1.412972488574264 6.431122239373526 -1.412972488574291 4.32761740458788 2.831720453845512 10.59673143731553 -2.494209468150155 10.42605207004991 2.905243259815798 5.213026035024954 1.452621629907899 5.298365718657763 -1.247104734075077 2.16380870229394 1.415860226922756 4.399491681506321 -2.656972876258102 10.4985636977804 -2.632587427674483 4.306952304418521 2.749261829601255 2.153476152209261 1.374630914800627 5.249281848890198 -1.316293713837241 2.199745840753161 -1.328486438129051 4.496740578981384 -2.554476881970431 10.59228532888561 -2.389536449472878 4.203006248744854 2.847276271266106 2.101503124372427 1.423638135633053 5.296142664442805 -1.194768224736439 2.248370289490692 -1.277238440985215</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"672\" source=\"#ID358\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID354\">\r\n                    <input semantic=\"POSITION\" source=\"#ID352\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID353\"/>\r\n                </vertices>\r\n                <triangles count=\"144\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID354\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID355\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 0 8 8 9 9 10 8 9 0 8 2 11 12 16 13 17 14 18 13 17 12 16 15 19 3 24 20 25 1 26 20 25 3 24 21 27 24 32 25 33 26 34 9 38 30 39 31 40 30 39 9 38 8 41 13 46 34 47 14 48 34 47 13 46 35 49 38 54 39 55 25 56 42 60 15 61 12 62 15 61 42 60 43 63 21 68 46 69 20 70 46 69 21 68 47 71 50 76 26 77 51 78 24 82 38 83 25 84 24 88 26 89 50 90 31 94 54 95 55 96 54 95 31 94 30 97 35 102 58 103 34 104 58 103 35 102 59 105 62 110 63 111 39 112 62 116 39 117 38 118 66 122 43 123 42 124 43 123 66 122 67 125 47 130 70 131 46 132 70 131 47 130 71 133 74 138 51 139 75 140 50 144 51 145 74 146 55 150 78 151 79 152 78 151 55 150 54 153 59 158 82 159 58 160 82 159 59 158 83 161 86 166 87 167 63 168 86 172 63 173 62 174 67 178 90 179 91 180 90 179 67 178 66 181 71 186 94 187 70 188 94 187 71 186 95 189 75 194 98 195 99 196 75 200 99 201 74 202 79 206 102 207 103 208 102 207 79 206 78 209 82 214 106 215 107 216 106 215 82 214 83 217 110 222 111 223 87 224 86 228 110 229 87 230 114 234 90 235 115 236 90 235 114 234 91 237 95 242 118 243 94 244 118 243 95 242 119 245 98 250 122 251 123 252 98 256 123 257 99 258 103 262 126 263 127 264 126 263 103 262 102 265 107 270 130 271 131 272 130 271 107 270 106 273 134 278 135 279 111 280 110 284 134 285 111 286 138 290 115 291 139 292 115 291 138 290 114 293 118 298 142 299 143 300 142 299 118 298 119 301 122 306 146 307 147 308 122 312 147 313 123 314 126 318 150 319 127 320 150 319 126 318 151 321 131 326 154 327 155 328 154 327 131 326 130 329 158 334 159 335 135 336 134 340 158 341 135 342 162 346 139 347 163 348 139 347 162 346 138 349 143 354 166 355 167 356 166 355 143 354 142 357 146 362 170 363 171 364 146 368 171 369 147 370 151 374 174 375 150 376 174 375 151 374 175 377 155 382 178 383 179 384 178 383 155 382 154 385 182 390 183 391 159 392 158 396 182 397 159 398 162 402 186 403 187 404 186 403 162 402 163 405 167 410 190 411 191 412 190 411 167 410 166 413 170 418 194 419 195 420 170 424 195 425 171 426 175 430 198 431 174 432 198 431 175 430 199 433 179 438 202 439 203 440 202 439 179 438 178 441 206 446 207 447 183 448 182 452 206 453 183 454 187 458 210 459 211 460 210 459 187 458 186 461 191 466 214 467 215 468 214 467 191 466 190 469 194 474 218 475 219 476 194 480 219 481 195 482 199 486 222 487 198 488 222 487 199 486 223 489 203 494 226 495 227 496 226 495 203 494 202 497 230 502 231 503 207 504 206 508 230 509 207 510 234 514 211 515 210 516 211 515 234 514 235 517 215 522 238 523 239 524 238 523 215 522 214 525 242 530 218 531 243 532 219 536 218 537 242 538 223 542 246 543 222 544 246 543 223 542 247 545 226 550 250 551 227 552 250 551 226 550 251 553 254 558 255 559 231 560 230 564 254 565 231 566 258 570 234 571 259 572 234 571 258 570 235 573 262 578 238 579 263 580 238 579 262 578 239 581 266 586 243 587 267 588 266 592 242 593 243 594 247 598 263 599 246 600 263 599 247 598 262 601 250 606 270 607 271 608 270 607 250 606 251 609 274 614 275 615 255 616 254 620 274 621 255 622 278 626 259 627 279 628 259 627 278 626 258 629 282 634 267 635 283 636 266 640 267 641 282 642 271 646 278 647 279 648 278 647 271 646 270 649 286 654 283 655 275 656 286 660 275 661 274 662 282 666 283 667 286 668</p>\r\n                </triangles>\r\n                <triangles count=\"144\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID354\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID355\"/>\r\n                    <p>4 4 5 5 6 6 7 7 6 6 5 5 7 12 5 13 10 14 11 15 10 14 5 13 16 20 17 21 18 22 19 23 18 22 17 21 22 28 4 29 23 30 6 31 23 30 4 29 27 35 28 36 29 37 10 42 11 43 32 44 33 45 32 44 11 43 36 50 18 51 37 52 19 53 37 52 18 51 28 57 40 58 41 59 44 64 45 65 16 66 17 67 16 66 45 65 48 72 22 73 49 74 23 75 49 74 22 73 52 79 27 80 53 81 28 85 41 86 29 87 53 91 27 92 29 93 32 98 33 99 56 100 57 101 56 100 33 99 60 106 36 107 61 108 37 109 61 108 36 107 40 113 64 114 65 115 41 119 40 120 65 121 68 126 69 127 44 128 45 129 44 128 69 127 72 134 48 135 73 136 49 137 73 136 48 135 76 141 52 142 77 143 77 147 52 148 53 149 56 154 57 155 80 156 81 157 80 156 57 155 84 162 60 163 85 164 61 165 85 164 60 163 64 169 88 170 89 171 65 175 64 176 89 177 69 182 68 183 92 184 93 185 92 184 68 183 96 190 72 191 97 192 73 193 97 192 72 191 100 197 101 198 76 199 77 203 100 204 76 205 80 210 81 211 104 212 105 213 104 212 81 211 84 218 85 219 108 220 109 221 108 220 85 219 88 225 112 226 113 227 88 231 113 232 89 233 93 238 116 239 92 240 117 241 92 240 116 239 120 246 96 247 121 248 97 249 121 248 96 247 124 253 125 254 101 255 100 259 124 260 101 261 104 266 105 267 128 268 129 269 128 268 105 267 108 274 109 275 132 276 133 277 132 276 109 275 112 281 136 282 137 283 112 287 137 288 113 289 116 294 140 295 117 296 141 297 117 296 140 295 120 302 121 303 144 304 145 305 144 304 121 303 148 309 149 310 125 311 124 315 148 316 125 317 152 322 128 323 153 324 129 325 153 324 128 323 132 330 133 331 156 332 157 333 156 332 133 331 136 337 160 338 161 339 136 343 161 344 137 345 140 350 164 351 141 352 165 353 141 352 164 351 144 358 145 359 168 360 169 361 168 360 145 359 172 365 173 366 149 367 148 371 172 372 149 373 176 378 152 379 177 380 153 381 177 380 152 379 156 386 157 387 180 388 181 389 180 388 157 387 160 393 184 394 185 395 160 399 185 400 161 401 165 406 164 407 188 408 189 409 188 408 164 407 168 414 169 415 192 416 193 417 192 416 169 415 196 421 197 422 173 423 172 427 196 428 173 429 200 434 176 435 201 436 177 437 201 436 176 435 180 442 181 443 204 444 205 445 204 444 181 443 184 449 208 450 209 451 184 455 209 456 185 457 188 462 189 463 212 464 213 465 212 464 189 463 192 470 193 471 216 472 217 473 216 472 193 471 220 477 221 478 197 479 196 483 220 484 197 485 224 490 200 491 225 492 201 493 225 492 200 491 204 498 205 499 228 500 229 501 228 500 205 499 208 505 232 506 233 507 208 511 233 512 209 513 236 518 237 519 213 520 212 521 213 520 237 519 216 526 217 527 240 528 241 529 240 528 217 527 244 533 221 534 245 535 245 539 221 540 220 541 248 546 224 547 249 548 225 549 249 548 224 547 252 554 228 555 253 556 229 557 253 556 228 555 232 561 256 562 257 563 232 567 257 568 233 569 236 574 260 575 237 576 261 577 237 576 260 575 241 582 264 583 240 584 265 585 240 584 264 583 268 589 244 590 269 591 244 595 245 596 269 597 264 602 248 603 265 604 249 605 265 604 248 603 252 610 253 611 272 612 273 613 272 612 253 611 256 617 276 618 277 619 256 623 277 624 257 625 260 630 280 631 261 632 281 633 261 632 280 631 284 637 268 638 285 639 285 643 268 644 269 645 272 650 273 651 280 652 281 653 280 652 273 651 276 657 284 658 287 659 277 663 276 664 287 665 287 669 284 670 285 671</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID359\">\r\n            <mesh>\r\n                <source id=\"ID360\">\r\n                    <float_array count=\"576\" id=\"ID364\">-0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID364\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID361\">\r\n                    <float_array count=\"576\" id=\"ID365\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.357324008988185e-018 0.002095735273219623 -0.999997803944421 1.428762637497407e-018 0.2608439886717864 -0.9653809681021234 1.357324008988168e-018 0.002095735273213525 -0.999997803944421 1.428762637497411e-018 0.2608439886717847 -0.9653809681021238 -1.428762637497411e-018 -0.2608439886717847 0.9653809681021238 -1.357324008988185e-018 -0.002095735273219623 0.999997803944421 -1.428762637497407e-018 -0.2608439886717864 0.9653809681021234 -1.357324008988168e-018 -0.002095735273213525 0.999997803944421 5.000666824631841e-019 -0.2567918074288612 -0.9664667441963116 5.000666824631774e-019 -0.2567918074288629 -0.9664667441963111 -5.000666824631774e-019 0.2567918074288629 0.9664667441963111 -5.000666824631841e-019 0.2567918074288612 0.9664667441963116 -2.286020591985056e-018 -0.4981832167412074 -0.8670717862768821 -2.286020591985096e-018 -0.4981832167412094 -0.867071786276881 2.286020591985056e-018 0.4981832167412074 0.8670717862768821 2.286020591985096e-018 0.4981832167412094 0.867071786276881 -6.858055771993613e-018 -0.7056226073427964 -0.7085878463583424 -6.858055771993708e-018 -0.7056226073428004 -0.7085878463583386 6.858055771993708e-018 0.7056226073428004 0.7085878463583386 6.858055771993613e-018 0.7056226073427964 0.7085878463583424 -8.001070223829628e-018 -0.8649741646300232 -0.5018163952309587 -8.001070223829614e-018 -0.8649741646300241 -0.5018163952309572 8.001070223829628e-018 0.8649741646300232 0.5018163952309587 8.001070223829614e-018 0.8649741646300241 0.5018163952309572 -5.715045332456655e-019 -0.9653796265175301 -0.2608489538121138 -5.715045332456722e-019 -0.96537962651753 -0.260848953812114 5.715045332456655e-019 0.9653796265175301 0.2608489538121138 5.715045332456722e-019 0.96537962651753 0.260848953812114 2.286022406958772e-018 -0.9999977996832321 -0.002097767550154592 2.286022406958698e-018 -0.9999977996832321 -0.002097767550151775 -2.286022406958772e-018 0.9999977996832321 0.002097767550154592 -2.286022406958698e-018 0.9999977996832321 0.002097767550151775 -5.1435407892633e-018 -0.9664655322690486 0.2567963686189982 -5.143540789263351e-018 -0.9664655322690482 0.2567963686189999 5.1435407892633e-018 0.9664655322690486 -0.2567963686189982 5.143540789263351e-018 0.9664655322690482 -0.2567963686189999 -8.001071306872786e-018 -0.8670714378610992 0.498183823147125 -8.001071306872821e-018 -0.8670714378611013 0.4981838231471211 8.001071306872786e-018 0.8670714378610992 -0.498183823147125 8.001071306872821e-018 0.8670714378611013 -0.4981838231471211 -5.715047892338878e-018 -0.708586537670636 0.7056239215275657 -5.715047892338916e-018 -0.7085865376706391 0.7056239215275628 5.715047892338878e-018 0.708586537670636 -0.7056239215275657 5.715047892338916e-018 0.7085865376706391 -0.7056239215275628 -3.714781434290872e-018 -0.5018152321358096 0.8649748394008253 -3.714781434290843e-018 -0.5018152321358057 0.8649748394008278 3.714781434290872e-018 0.5018152321358096 -0.8649748394008253 3.714781434290843e-018 0.5018152321358057 -0.8649748394008278 -1.357324087236494e-018 -0.2608455302381308 0.9653805515726887 -1.357324087236548e-018 -0.2608455302381353 0.9653805515726874 1.357324087236548e-018 0.2608455302381353 -0.9653805515726874 1.357324087236494e-018 0.2608455302381308 -0.9653805515726887 5.00066824342e-019 -0.002098394659843867 0.9999977983675022 5.00066824341991e-019 -0.0020983946598471 0.9999977983675022 -5.00066824341991e-019 0.0020983946598471 -0.9999977983675022 -5.00066824342e-019 0.002098394659843867 -0.9999977983675022 1.285886092699162e-018 0.2567924015669348 0.9664665863326504 1.285886092699151e-018 0.2567924015669318 0.966466586332651 -1.285886092699162e-018 -0.2567924015669348 -0.9664665863326504 -1.285886092699151e-018 -0.2567924015669318 -0.966466586332651 -2.000267021076344e-018 0.4981821975151394 0.8670723718807943 -2.000267021076362e-018 0.4981821975151401 0.867072371880794 2.000267021076344e-018 -0.4981821975151394 -0.8670723718807943 2.000267021076362e-018 -0.4981821975151401 -0.867072371880794 -4.000536746314618e-018 0.7056247595919799 0.7085857031092008 -4.00053674631458e-018 0.7056247595919819 0.7085857031091989 4.00053674631458e-018 -0.7056247595919819 -0.7085857031091989 4.000536746314618e-018 -0.7056247595919799 -0.7085857031092008 4.204657661605452e-033 0.8649761689145237 0.5018129404568533 -1.21193073775685e-032 0.8649761689145231 0.5018129404568542 1.21193073775685e-032 -0.8649761689145231 -0.5018129404568542 -4.204657661605452e-033 -0.8649761689145237 -0.5018129404568533 2.286019992337455e-018 0.9653804430920453 0.2608459317210191 2.286019992337455e-018 0.9653804430920455 0.2608459317210175 -2.286019992337455e-018 -0.9653804430920455 -0.2608459317210175 -2.286019992337455e-018 -0.9653804430920453 -0.2608459317210191 4.000536773496116e-018 0.9999978094868985 0.002093088962490353 4.00053677349617e-018 0.9999978094868985 0.002093088962486192 -4.00053677349617e-018 -0.9999978094868985 -0.002093088962486192 -4.000536773496116e-018 -0.9999978094868985 -0.002093088962490353 7.429555745771746e-018 0.9664663526289716 -0.256793281134948 7.429555745771715e-018 0.9664663526289721 -0.2567932811349458 -7.429555745771715e-018 -0.9664663526289721 0.2567932811349458 -7.429555745771746e-018 -0.9664663526289716 0.256793281134948 8.001073065904097e-018 0.8670738131462032 -0.498179689024054 8.001073065904117e-018 0.8670738131462042 -0.4981796890240521 -8.001073065904117e-018 -0.8670738131462042 0.4981796890240521 -8.001073065904097e-018 -0.8670738131462032 0.498179689024054 2.286020065195515e-018 0.7085865942299627 -0.705623864730766 2.286020065195486e-018 0.7085865942299621 -0.7056238647307667 -2.286020065195486e-018 -0.7085865942299621 0.7056238647307667 -2.286020065195515e-018 -0.7085865942299627 0.705623864730766 -5.715046975223761e-019 0.5018142835855971 -0.8649753897016226 -5.715046975224879e-019 0.5018142835856045 -0.8649753897016184 5.715046975223761e-019 -0.5018142835855971 0.8649753897016226 5.715046975224879e-019 -0.5018142835856045 0.8649753897016184</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID365\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID363\">\r\n                    <float_array count=\"576\" id=\"ID366\">27.57592606178605 5.763926047288433 27.54501506067751 -5.854844720127505 28.53273433475351 -0.04706980378245257 27.52202780079212 -0.04706980378244907 26.59974397119641 5.558144204924854 24.73998964194365 11.18211185132277 23.86467605623466 10.78457791436985 20.2179874206012 15.8382655546944 19.50326776451671 15.27607259060124 14.31814331951038 19.41505375671623 13.81280957653182 18.72650799807924 7.442587205730431 21.66875226978101 7.180994110594869 20.90077510041938 0.05980164344527855 22.44574392129143 0.05980164344524746 21.65067841029049 -7.326991595764483 21.69310909336947 -7.065454819865953 20.9251390127225 -13.70921071502846 18.77357233764413 -14.21458200416499 19.46211927773357 -19.41873183844568 15.34262262532737 -20.1333673911358 15.90482031523034 -23.80492209641044 10.86610404027797 -24.68017861195908 11.26362616270643 -26.5687879146979 5.649065240668816 -27.54503608652599 5.854853581020853 -27.52206684879615 0.04706611174358209 26.56880593685397 -5.64906110558527 24.68013205472282 -11.26361907399176 23.80482748009175 -10.8660993144682 20.13340493729391 -15.90483331120719 19.4187408495236 -15.34262380677985 14.21454295616055 -19.46214172533002 13.70921071502838 -18.77356879328679 7.327029141922628 -21.6931232707988 7.065417273707942 -20.92514846434208 -0.05986734922203147 -22.44576046162567 -0.05986734922203591 -21.65067841029053 -7.442633762966584 -21.66874754397123 -7.181031656752985 -20.90077510041939 -13.81285613376801 -18.72650327226948 -14.3181898767466 -19.4150537567162 -19.50334285683298 -15.27606432043412 -20.21802346491327 -15.83825019581263 -23.86471360239281 -10.78458382163206 -24.74002718810177 -11.18212484729964 -26.59974397119644 -5.55814125129378 -27.57601917625835 -5.763931954550666 -28.53282744922561 0.04706611174357161 -14.2664137246128 0.0235330558717858 -13.77251804326299 2.927426790510427 -13.78800958812917 -2.881965977275333 -13.76103342439808 0.02353305587179104 -13.29987198559822 -2.77907062564689 -12.37001359405088 -5.591062423649821 -11.9323568011964 -5.39229191081603 -10.10901173245664 -7.919125097906314 -9.751671428416488 -7.638032160217059 -7.159094938373302 -9.707526878358099 -6.906428066884002 -9.363251636134741 -3.721316881483292 -10.83437377198561 -3.590515828376493 -10.4503875502097 -0.02993367461101796 -10.82533920514526 -0.02993367461101574 -11.22288023081283 3.532708636853971 -10.46257423217104 3.663514570961314 -10.8465616353994 6.854605357514191 -9.386784396643396 7.107271478080275 -9.731070862665009 9.709370424761799 -7.671311903389926 10.06670246864696 -7.952416655603594 11.90241374004588 -5.433049657234099 12.34006602736141 -5.631809536995879 13.28440296842699 -2.824530552792635 13.76101390039606 -0.02353490189122454 13.77250753033876 -2.927422360063753 -13.28439395734895 2.824532620334408 -12.34008930597954 5.631813081353213 -11.90246104820522 5.433052020138987 -10.0666836955679 7.95241015761517 -9.709365919222838 7.671311312663686 -7.107291002082496 9.731059638866784 -6.854605357514229 9.386786168822065 -3.663495797882241 10.84655454668474 -3.532727409932976 10.46256950636125 0.02990082172262373 10.82533920514525 0.02990082172263927 11.22287196064572 3.590497055297435 10.45038755020969 3.721293602865216 10.8343761348905 6.906404788265909 9.363253999039621 7.159071659755192 9.707526878358115 9.751633882258355 7.638036295300619 10.1089937103006 7.919132777347199 11.93233802811733 5.392288957184925 12.36999482097183 5.591055925661383 13.2998719855982 2.779072102462427 13.78796303089303 2.881963023644217 14.26636716737676 -0.02353490189122628 12.86224447874703 2.929743190342062 15.27491705001244 -2.92979227890684 15.2749170500126 2.929743190342119 12.86224447874696 -2.929792278906809 6.431122239373481 -1.464896139453405 6.431122239373517 1.464871595171031 7.637458525006222 -1.46489613945342 7.637458525006302 1.46487159517106 -15.27491705001257 -2.929731850741423 -12.86224447874703 2.929750167992304 -15.2749170500126 2.929750167992251 -12.86224447874705 -2.92973185074145 -6.431122239373526 -1.464865925370725 -7.637458525006284 -1.464865925370711 -6.431122239373517 1.464875083996152 -7.637458525006302 1.464875083996125 -12.86224447874709 -2.929852871110114 -15.27491705001257 2.929721881732551 -15.27491705001264 -2.929852871110166 -12.86224447874705 2.929721881732527 -6.431122239373525 1.464860940866263 -6.431122239373543 -1.464926435555057 -7.637458525006283 1.464860940866276 -7.637458525006319 -1.464926435555083 -15.27491705001234 -2.929677555424733 -12.86224447874709 2.929823033031287 -15.27491705001264 2.929823033031245 -12.86224447874695 -2.929677555424782 -6.431122239373472 -1.464838777712391 -7.637458525006169 -1.464838777712367 -6.431122239373543 1.464911516515643 -7.63745852500632 1.464911516515623 -12.86224447874695 2.929697425929892 -15.2749170500125 -2.929855373115951 -12.86224447874691 -2.929855373116002 -15.27491705001234 2.929697425929927 -7.637458525006169 1.464848712964963 -6.431122239373472 1.464848712964946 -7.637458525006249 -1.464927686557976 -6.431122239373455 -1.464927686558001 -12.86224447874709 -2.929773314130085 -15.2749170500125 2.929742869038943 -15.27491705001257 -2.929773314130076 -12.86224447874691 2.92974286903891 -6.431122239373455 1.464871434519455 -6.431122239373543 -1.464886657065043 -7.637458525006249 1.464871434519471 -7.637458525006284 -1.464886657065038 -12.86224447874709 2.929540399646413 -15.27491705001243 -2.930000664061414 -12.86224447874695 -2.930000664061421 -15.27491705001257 2.929540399646405 -7.637458525006284 1.464770199823202 -6.431122239373543 1.464770199823206 -7.637458525006213 -1.465000332030707 -6.431122239373472 -1.465000332030711 -12.86224447874695 -2.929581822242644 -15.27491705001243 2.929960781087207 -15.27491705001232 -2.929581822242648 -12.86224447874695 2.9299607810872 -6.431122239373472 1.4649803905436 -6.431122239373472 -1.464790911121322 -7.637458525006213 1.464980390543604 -7.63745852500616 -1.464790911121324 -12.86224447874698 -2.929795632432642 -15.27491705001232 2.929734008047276 -15.27491705001264 -2.929795632432599 -12.86224447874695 2.929734008047279 -6.431122239373472 1.46486700402364 -6.43112223937349 -1.464897816216321 -7.63745852500616 1.464867004023638 -7.63745852500632 -1.4648978162163 -12.86224447874698 2.929854278460752 -15.27491705001246 -2.929664031079308 -12.86224447874705 -2.929664031079275 -15.27491705001264 2.929854278460836 -7.63745852500632 1.464927139230418 -6.43112223937349 1.464927139230376 -7.637458525006231 -1.464832015539654 -6.431122239373526 -1.464832015539638 -12.86224447874709 -2.929746866326544 -15.27491705001246 2.929799501924643 -15.2749170500126 -2.929746866326596 -12.86224447874705 2.929799501924695 -6.431122239373526 1.464899750962348 -6.431122239373543 -1.464873433163272 -7.637458525006231 1.464899750962321 -7.637458525006302 -1.464873433163298 -15.2749170500125 -2.92977425536968 -12.86224447874709 2.929742564000939 -15.2749170500126 2.929742564000883 -12.86224447874695 -2.929774255369613 -6.431122239373472 -1.464887127684806 -7.637458525006249 -1.46488712768484 -6.431122239373543 1.46487128200047 -7.637458525006302 1.464871282000442 -15.27491705001246 -2.929781790797626 -12.86224447874695 2.929741567953739 -15.2749170500125 2.92974156795366 -12.86224447874693 -2.929781790797601 -6.431122239373464 -1.4648908953988 -7.637458525006231 -1.464890895398813 -6.431122239373472 1.464870783976869 -7.637458525006249 1.46487078397683 12.86224447874707 2.929790045178396 15.27491705001246 -2.929772829085463 15.27491705001257 2.929790045178342 12.86224447874693 -2.929772829085486 6.431122239373464 -1.464886414542743 6.431122239373535 1.464895022589198 7.637458525006231 -1.464886414542731 7.637458525006284 1.464895022589171 12.86224447874705 2.929757835224654 15.27491705001257 -2.929758053031452 15.2749170500126 2.929757835224672 12.86224447874707 -2.9297580530314 6.431122239373535 -1.4648790265157 6.431122239373526 1.464878917612327 7.637458525006284 -1.464879026515726 7.637458525006302 1.464878917612336 15.2749170500125 2.929803538710692 12.86224447874705 -2.929750667340226 15.2749170500126 -2.929750667340216 12.86224447874705 2.929803538710713 6.431122239373526 1.464901769355357 7.637458525006249 1.464901769355346 6.431122239373526 -1.464875333670113 7.637458525006302 -1.464875333670108 15.27491705001246 2.929593042074761 12.86224447874705 -2.92993527925525 15.2749170500125 -2.929935279255278 12.86224447874705 2.929593042074726 6.431122239373526 1.464796521037363 7.637458525006231 1.464796521037381 6.431122239373526 -1.464967639627625 7.637458525006249 -1.464967639627639 15.27491705001232 2.929842954384168 12.86224447874705 -2.9296825896425 15.27491705001246 -2.929682589642478 12.86224447874696 2.929842954384198 6.431122239373481 1.464921477192099 7.63745852500616 1.464921477192084 6.431122239373526 -1.46484129482125 7.637458525006231 -1.464841294821239 15.27491705001232 -2.929740962824745 12.86224447874705 2.92978013852247 12.86224447874696 -2.929740962824737 15.2749170500125 2.929780138522509 7.637458525006249 1.464890069261254 7.63745852500616 -1.464870481412373 6.431122239373526 1.464890069261235 6.431122239373481 -1.464870481412369 15.2749170500125 -2.9299561138927 12.862244478747 2.929584292566244 12.86224447874705 -2.929956113892731 15.27491705001248 2.92958429256624 7.63745852500624 1.46479214628312 7.637458525006249 -1.46497805694635 6.431122239373499 1.464792146283122 6.431122239373526 -1.464978056946366 15.27491705001248 -2.929568316003488 12.86224447874695 2.929938126060063 12.862244478747 -2.929568316003465 15.27491705001243 2.929938126060052 7.637458525006213 1.464969063030026 7.63745852500624 -1.464784158001744 6.431122239373472 1.464969063030032 6.431122239373499 -1.464784158001733 15.27491705001243 -2.929777731100098 12.86224447874698 2.929762392715941 12.86224447874695 -2.929777731100067 15.27491705001244 2.929762392715948 7.637458525006222 1.464881196357974 7.637458525006213 -1.464888865550049 6.43112223937349 1.464881196357971 6.431122239373472 -1.464888865550033 12.86224447874698 2.929710500811676 15.27491705001244 -2.929833042641431 15.27491705001246 2.929710500811587 12.86224447874698 -2.929833042641436 6.43112223937349 -1.464916521320718 6.43112223937349 1.464855250405838 7.637458525006222 -1.464916521320715 7.637458525006231 1.464855250405794 15.27491705001244 2.92982644805314 12.86224447874698 -2.929692188965083 15.27491705001246 -2.929692188965185 12.86224447874696 2.929826448053173 6.431122239373481 1.464913224026587 7.637458525006222 1.46491322402657 6.43112223937349 -1.464846094482541 7.637458525006231 -1.464846094482593</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"288\" source=\"#ID366\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID362\">\r\n                    <input semantic=\"POSITION\" source=\"#ID360\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID361\"/>\r\n                </vertices>\r\n                <triangles count=\"96\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID362\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID363\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 1 1 26 26 27 27 26 26 1 1 3 3 27 27 26 26 28 28 27 27 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 25 25 46 46 25 25 24 24 46 46 24 24 47 47 96 96 97 97 98 98 97 97 96 96 99 99 104 104 96 105 98 106 96 105 104 104 105 107 108 112 104 113 109 114 104 113 108 112 105 115 112 120 108 121 109 122 108 121 112 120 113 123 113 128 116 129 117 130 116 129 113 128 112 131 120 136 116 137 121 138 116 137 120 136 117 139 120 144 124 145 125 146 124 145 120 144 121 147 128 152 124 153 129 154 124 153 128 152 125 155 132 160 129 161 133 162 129 161 132 160 128 163 132 168 136 169 137 170 136 169 132 168 133 171 140 176 136 177 141 178 136 177 140 176 137 179 144 184 140 185 141 186 140 185 144 184 145 187 148 192 145 193 144 194 145 193 148 192 149 195 152 200 148 201 153 202 148 201 152 200 149 203 156 208 153 209 157 210 153 209 156 208 152 211 160 216 156 217 157 218 156 217 160 216 161 219 164 224 161 225 160 226 161 225 164 224 165 227 168 232 165 233 164 234 165 233 168 232 169 235 168 240 172 241 169 242 172 241 168 240 173 243 173 248 176 249 172 250 176 249 173 248 177 251 177 256 180 257 176 258 180 257 177 256 181 259 181 264 184 265 180 266 184 265 181 264 185 267 188 272 185 273 189 274 185 273 188 272 184 275 97 280 188 281 189 282 188 281 97 280 99 283</p>\r\n                </triangles>\r\n                <triangles count=\"96\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID362\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID363\"/>\r\n                    <p>48 48 49 49 50 50 49 49 51 51 50 50 51 51 52 52 50 50 50 50 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 58 58 60 60 59 59 60 60 61 61 59 59 59 59 61 61 62 62 61 61 63 63 62 62 62 62 63 63 64 64 63 63 65 65 64 64 64 64 65 65 66 66 65 65 67 67 66 66 66 66 67 67 68 68 67 67 69 69 68 68 68 68 69 69 70 70 69 69 71 71 70 70 72 72 73 73 71 71 70 70 71 71 73 73 51 51 49 49 74 74 49 49 75 75 74 74 74 74 75 75 76 76 75 75 77 77 76 76 76 76 77 77 78 78 77 77 79 79 78 78 78 78 79 79 80 80 79 79 81 81 80 80 80 80 81 81 82 82 82 82 81 81 83 83 81 81 84 84 83 83 83 83 84 84 85 85 84 84 86 86 85 85 85 85 86 86 87 87 86 86 88 88 87 87 87 87 88 88 89 89 88 88 90 90 89 89 89 89 90 90 91 91 90 90 92 92 91 91 91 91 92 92 93 93 92 92 94 94 93 93 93 93 94 94 72 72 72 72 94 94 73 73 95 95 73 73 94 94 100 100 101 101 102 102 103 103 102 102 101 101 106 108 107 109 101 110 103 111 101 110 107 109 106 116 110 117 107 118 111 119 107 118 110 117 114 124 115 125 110 126 111 127 110 126 115 125 115 132 114 133 118 134 119 135 118 134 114 133 119 140 122 141 118 142 123 143 118 142 122 141 123 148 122 149 126 150 127 151 126 150 122 149 127 156 130 157 126 158 131 159 126 158 130 157 130 164 134 165 131 166 135 167 131 166 134 165 135 172 134 173 138 174 139 175 138 174 134 173 139 180 142 181 138 182 143 183 138 182 142 181 146 188 147 189 142 190 143 191 142 190 147 189 150 196 151 197 146 198 147 199 146 198 151 197 150 204 154 205 151 206 155 207 151 206 154 205 154 212 158 213 155 214 159 215 155 214 158 213 162 220 163 221 158 222 159 223 158 222 163 221 166 228 167 229 162 230 163 231 162 230 167 229 170 236 171 237 166 238 167 239 166 238 171 237 174 244 171 245 175 246 170 247 175 246 171 245 178 252 174 253 179 254 175 255 179 254 174 253 182 260 178 261 183 262 179 263 183 262 178 261 186 268 182 269 187 270 183 271 187 270 182 269 187 276 190 277 186 278 191 279 186 278 190 277 100 284 102 285 190 286 191 287 190 286 102 285</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID367\">\r\n            <mesh>\r\n                <source id=\"ID368\">\r\n                    <float_array count=\"576\" id=\"ID372\">-0.763745852500616 -1.436485524582849 0.3818088725044516 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.7637458525006249 -1.28872021610141 0.7405885836107022</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID372\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID369\">\r\n                    <float_array count=\"576\" id=\"ID373\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762080882819e-018 0.5017398950377737 -0.8650185418402798 5.715050599695061e-019 0.7085275831213713 -0.7056831186560921 5.715050599694446e-019 0.7085275831213729 -0.7056831186560907 1.428762080881852e-018 0.5017398950377386 -0.8650185418403001 -1.428762080881852e-018 -0.5017398950377386 0.8650185418403001 -1.428762080882819e-018 -0.5017398950377737 0.8650185418402798 -5.715050599695061e-019 -0.7085275831213713 0.7056831186560921 -5.715050599694446e-019 -0.7085275831213729 0.7056831186560907 -9.286952941388407e-019 0.2607625543991058 -0.9654029677928556 -9.286952941388763e-019 0.2607625543991116 -0.9654029677928541 9.286952941388763e-019 -0.2607625543991116 0.9654029677928541 9.286952941388407e-019 -0.2607625543991058 0.9654029677928556 -7.14381254244789e-020 0.002012725556721015 -0.9999979744658651 -7.143812542448248e-020 0.002012725556727595 -0.9999979744658651 7.14381254244789e-020 -0.002012725556721015 0.9999979744658651 7.143812542448248e-020 -0.002012725556727595 0.9999979744658651 -8.572571838953785e-019 -0.2568741755083748 -0.9664448551039488 -8.572571838953487e-019 -0.2568741755083704 -0.9664448551039501 8.572571838953487e-019 0.2568741755083704 0.9664448551039501 8.572571838953785e-019 0.2568741755083748 0.9664448551039488 -2.000267235225416e-018 -0.4982546428953812 -0.8670307438800519 -2.000267235225424e-018 -0.4982546428953847 -0.8670307438800501 2.000267235225424e-018 0.4982546428953847 0.8670307438800501 2.000267235225416e-018 0.4982546428953812 0.8670307438800519 1.045111957692991e-006 -0.7056819897722565 -0.7085287074706123 1.045111957693077e-006 -0.7056819897722642 -0.7085287074706047 -1.045111957692991e-006 0.7056819897722565 0.7085287074706123 -1.045111957693077e-006 0.7056819897722642 0.7085287074706047 1.703558339410631e-006 -0.8650181793754788 -0.5017405199373778 1.703555472269594e-006 -0.8650186691821249 -0.5017396754926639 -1.703558339410631e-006 0.8650181793754788 0.5017405199373778 -1.703555472269594e-006 0.8650186691821249 0.5017396754926639 6.584446236329073e-007 -0.9654035292207907 -0.2607604758540074 6.584446236328554e-007 -0.9654035292207932 -0.2607604758539974 -6.584446236329073e-007 0.9654035292207907 0.2607604758540074 -6.584446236328554e-007 0.9654035292207932 0.2607604758539974 -6.286553020284208e-018 -0.999997973793477 -0.002013059596886011 -6.286553020284232e-018 -0.999997973793477 -0.002013059596885226 6.286553020284208e-018 0.999997973793477 0.002013059596886011 6.286553020284232e-018 0.999997973793477 0.002013059596885226 -8.001067536444891e-018 -0.9664454482419091 0.2568719439185513 -8.001067536444849e-018 -0.9664454482419086 0.2568719439185535 8.001067536444891e-018 0.9664454482419091 -0.2568719439185513 8.001067536444849e-018 0.9664454482419086 -0.2568719439185535 -6.858064911194342e-018 -0.8670284530084556 0.4982586293018563 -6.858064911194386e-018 -0.8670284530084529 0.4982586293018606 6.858064911194342e-018 0.8670284530084556 -0.4982586293018563 6.858064911194386e-018 0.8670284530084529 -0.4982586293018606 -1.714512912291224e-018 -0.7085272435711623 0.7056834595747947 -1.714512912290773e-018 -0.7085272435711557 0.7056834595748014 1.714512912291224e-018 0.7085272435711623 -0.7056834595747947 1.714512912290773e-018 0.7085272435711557 -0.7056834595748014 2.000267850227171e-018 -0.50174509130913 0.8650155278069827 2.000267850227025e-018 -0.5017450913091236 0.8650155278069864 -2.000267850227171e-018 0.50174509130913 -0.8650155278069827 -2.000267850227025e-018 0.5017450913091236 -0.8650155278069864 -9.286958702615267e-019 -0.2607603696967824 0.9654035578946233 -9.286958702616151e-019 -0.260760369696751 0.9654035578946318 9.286958702616151e-019 0.260760369696751 -0.9654035578946318 9.286958702615267e-019 0.2607603696967824 -0.9654035578946233 -9.286950770806969e-019 -0.002010277094332024 0.9999979793909607 -9.286950770806418e-019 -0.002010277094311723 0.9999979793909607 9.286950770806969e-019 0.002010277094332024 -0.9999979793909607 9.286950770806418e-019 0.002010277094311723 -0.9999979793909607 5.715048573591528e-019 0.2568730418156993 0.9664451564306947 5.715048573588878e-019 0.2568730418156698 0.9664451564307025 -5.715048573591528e-019 -0.2568730418156993 -0.9664451564306947 -5.715048573588878e-019 -0.2568730418156698 -0.9664451564307025 2.000267221612142e-018 0.4982543657066462 0.8670309031714313 2.000267221612171e-018 0.4982543657066573 0.8670309031714246 -2.000267221612171e-018 -0.4982543657066573 -0.8670309031714246 -2.000267221612142e-018 -0.4982543657066462 -0.8670309031714313 4.572040930296596e-018 0.7056830209675885 0.70852768041768 4.572040930296914e-018 0.7056830209676014 0.7085276804176672 -4.572040930296596e-018 -0.7056830209675885 -0.70852768041768 -4.572040930296914e-018 -0.7056830209676014 -0.7085276804176672 -1.14300938579175e-018 0.8650179182246978 0.5017409701730664 -1.143009385792095e-018 0.8650179182247008 0.5017409701730615 1.143009385792095e-018 -0.8650179182247008 -0.5017409701730615 1.14300938579175e-018 -0.8650179182246978 -0.5017409701730664 -2.857524059864703e-018 0.9654022143532335 0.2607653437899165 -2.857524059865316e-018 0.9654022143532302 0.2607653437899289 2.857524059865316e-018 -0.9654022143532302 -0.2607653437899289 2.857524059864703e-018 -0.9654022143532335 -0.2607653437899165 8.572576927432837e-018 0.9999979724130936 0.002013745192837731 8.572576927432834e-018 0.9999979724130936 0.002013745192837834 -8.572576927432834e-018 -0.9999979724130936 -0.002013745192837834 -8.572576927432837e-018 -0.9999979724130936 -0.002013745192837731 1.028708566471013e-017 0.9664447927409161 -0.2568744101384328 1.028708566471029e-017 0.9664447927409177 -0.2568744101384266 -1.028708566471029e-017 -0.9664447927409177 0.2568744101384266 -1.028708566471013e-017 -0.9664447927409161 0.2568744101384328 1.714514848940942e-018 0.8670306548123118 -0.4982547978853128 1.714514848941008e-018 0.8670306548123127 -0.4982547978853114 -1.714514848941008e-018 -0.8670306548123127 0.4982547978853114 -1.714514848940942e-018 -0.8670306548123118 0.4982547978853128</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID373\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID371\">\r\n                    <float_array count=\"576\" id=\"ID374\">28.72971049165699 6.007126260736706 28.69872439823219 -6.09804847793303 29.72717074101186 -0.04706980378243859 28.53273433475355 -0.04706980378241763 27.57592606178616 5.76392604728844 25.7744043220282 11.65192704880838 24.73998964194376 11.18211185132279 21.062597259995 16.50268132861221 20.2179874206012 15.8382655546944 14.91535251156158 20.22880748247864 14.31814331951052 19.41505375671623 7.751723499126264 22.57635112608661 7.442587205730467 21.66875226978099 0.05980164344520748 23.38537904207242 0.05980164344520748 22.44574392129145 -7.636156424240395 22.60071976419947 -7.326991595764447 21.69310909336947 -14.21458200416507 19.46211927773357 -14.81179119621629 20.27586473332886 -20.13336739113572 15.90482031523034 -20.97801477668778 16.56924081495793 -24.68017861195898 11.26362616270643 -25.71460380496778 11.73344963035913 -27.54503608652592 5.854853581020838 -28.69876344623657 6.098035481956177 -28.53282744922561 0.0470661117435786 27.5450150606774 -5.854844720127502 25.71453772372937 -11.73342718276273 24.68013205472289 -11.26361907399176 20.97795770652724 -16.56924435931522 20.13340493729391 -15.90483331120722 14.81174313713382 -20.27586000751904 14.21454295616059 -19.46214172533004 7.636146662239294 -22.60070086096038 7.327029141922557 -21.6931232707988 -0.05986734922217803 -23.38535305011864 -0.05986734922200039 -22.44576046162567 -7.442633762966477 -21.6687475439712 -7.751770807285503 -22.57637002932572 -14.31818987674653 -19.41505375671621 -14.91540807987584 -20.22880748247863 -20.21802346491317 -15.83825019581262 -21.06255070275907 -16.50266951408773 -24.74002718810198 -11.18212484729966 -25.77444337003271 -11.65193295607063 -27.57601917625835 -5.76393195455067 -28.72973752489099 -6.007128032915357 -29.72717074101174 0.0470661117435751 -14.86358537050587 0.02353305587178755 -14.34938172311829 3.049017740978088 -14.3648687624455 -3.003564016457678 -14.2664137246128 0.0235330558717893 -13.78800958812917 -2.881965977275335 -12.88722168501636 -5.825966478035316 -12.37001359405099 -5.591062423649832 -10.53127535137954 -8.251334757043864 -10.10901173245659 -7.919125097906307 -7.45770403993792 -10.11440374123932 -7.159094938373267 -9.707526878358106 -3.875885403642752 -11.28818501466286 -3.721316881483239 -10.8343737719856 -0.02993367461108901 -11.69267652505932 -0.0299336746110002 -11.22288023081284 3.663514570961278 -10.8465616353994 3.818073331119647 -11.30035043048019 7.107271478080293 -9.731070862665019 7.405871568566908 -10.13793000375952 10.06670246864696 -7.952416655603611 10.48897885326362 -8.28462217965761 12.34006602736145 -5.631809536995879 12.85726886186469 -5.866713591381362 13.7725075303387 -2.927422360063751 14.26636716737677 -0.02353490189120882 14.34936219911609 -3.049024238966515 -13.77251804326296 2.927426790510419 -12.85730190248389 5.866724815179567 -12.34008930597949 5.631813081353215 -10.48900738834389 8.284620407478963 -10.06668369556786 7.952410157615169 -7.405895598108147 10.13793236666443 -7.107291002082534 9.731059638866787 -3.818078212120197 11.30035988209974 -3.663495797882224 10.84655454668473 0.02990082172260374 11.22287196064572 0.02990082172260374 11.69268952103621 3.721293602865234 10.83437613489049 3.875861749563132 11.28817556304331 7.159071659755262 9.707526878358113 7.45767625578079 10.11440374123932 10.1089937103006 7.919132777347201 10.5312986299975 8.251340664306103 12.36999482097188 5.591055925661395 12.8872021610141 5.825963524404191 13.78796303089308 2.88196302364422 14.36485524582849 3.003563130368353 14.86358537050593 -0.0235349018912193 16.15957962910908 3.052369011605017 15.2749170500125 -3.052489088735269 16.15957962910919 -3.05248908873528 15.27491705001234 3.052369011605174 7.637458525006169 1.526184505802587 8.079789814554541 1.526184505802509 7.637458525006249 -1.526244544367635 8.079789814554594 -1.52624454436764 16.1595796291089 3.052393434432479 15.27491705001234 -3.05240474671089 16.15957962910908 -3.052404746711059 15.27491705001257 3.052393434432461 7.637458525006284 1.52619671721623 8.079789814554452 1.526196717216239 7.637458525006169 -1.526202373355445 8.079789814554541 -1.526202373355529 15.27491705001246 3.052465505274848 16.1595796291089 -3.052357776085077 16.15957962910905 3.05246550527482 15.27491705001257 -3.052357776085104 7.637458525006284 -1.526178888042552 7.637458525006231 1.526232752637424 8.079789814554452 -1.526178888042539 8.079789814554523 1.52623275263741 -16.15957962910892 -3.05237354033085 -15.27491705001246 3.052416952581463 -16.15957962910905 3.052416952581491 -15.27491705001257 -3.052373540330827 -7.637458525006284 -1.526186770165414 -8.079789814554461 -1.526186770165425 -7.637458525006231 1.526208476290732 -8.079789814554523 1.526208476290746 -16.1595796291089 -3.052465806413212 -15.27491705001257 3.052375467693421 -16.15957962910892 3.052375467693405 -15.27491705001257 -3.052465806413236 -7.637458525006284 -1.526232903206618 -8.079789814554452 -1.526232903206606 -7.637458525006284 1.526187733846711 -8.079789814554461 1.526187733846702 -15.2749170500126 -3.052461191049092 -16.1595796291089 3.052369534568117 -16.15957962910917 -3.052461191049134 -15.27491705001257 3.052369534568098 -7.637458525006284 1.526184767284049 -7.637458525006302 -1.526230595524546 -8.079789814554452 1.526184767284059 -8.079789814554585 -1.526230595524567 -15.2748497760961 -3.052427910611382 -16.15952474692822 3.052390554465293 -16.15951235518956 -3.05243276531964 -15.27486216783468 3.05239166573236 -7.637431083917338 1.52619583286618 -7.637424888048051 -1.526213955305691 -8.079762373464108 1.526195277232647 -8.079756177594778 -1.52621638265982 -15.27488067987029 3.052479826373591 -16.15953903824096 -3.052340909406815 -15.27487645914545 -3.052340530900251 -16.15954325896589 3.052475085430112 -8.079771629482943 1.526237542715056 -7.637440339935146 1.526239913186796 -8.079769519120479 -1.526170454703408 -7.637438229572727 -1.526170265450126 -15.2749170500125 3.052418165791669 -16.15957962910889 -3.052394161251984 -15.2749170500123 -3.052394161251988 -16.15957962910889 3.052418165791704 -8.079789814554443 1.526209082895852 -7.637458525006249 1.526209082895835 -8.079789814554443 -1.526197080625992 -7.637458525006151 -1.526197080625994 -15.2749170500123 3.052374063043222 -16.15957962910892 -3.052455040458447 -15.27491705001232 -3.052455040458483 -16.15957962910888 3.052374063043219 -8.079789814554442 1.52618703152161 -7.63745852500615 1.526187031521611 -8.079789814554459 -1.526227520229223 -7.637458525006159 -1.526227520229242 -15.27491705001232 3.052318411927153 -16.15957962910915 -3.052488191674192 -15.27491705001257 -3.052488191674224 -16.15957962910892 3.05231841192716 -8.079789814554461 1.52615920596358 -7.63745852500616 1.526159205963577 -8.079789814554577 -1.526244095837096 -7.637458525006284 -1.526244095837112 -15.27491705001232 -3.052197806521551 -16.15957962910915 3.05265172018527 -16.1595796291089 -3.052197806521591 -15.27491705001257 3.052651720185259 -7.637458525006284 1.52632586009263 -7.63745852500616 -1.526098903260776 -8.079789814554577 1.526325860092635 -8.079789814554452 -1.526098903260796 -15.27491705001257 -3.0525561576722 -16.1595796291089 3.052245515360641 -16.15957962910915 -3.052556157672223 -15.27491705001232 3.05224551536068 -7.63745852500616 1.52612275768034 -7.637458525006284 -1.5262780788361 -8.079789814554452 1.526122757680321 -8.079789814554577 -1.526278078836111 -16.15957962910908 -3.052423131493118 -15.27491705001257 3.052388317079474 -16.15957962910915 3.052388317079447 -15.27491705001248 -3.052423131493245 -7.63745852500624 -1.526211565746623 -8.079789814554541 -1.526211565746559 -7.637458525006284 1.526194158539737 -8.079789814554577 1.526194158539723 -15.27491705001243 -3.052249109402259 -16.15957962910908 3.052553877330226 -16.15957962910915 -3.052249109402342 -15.27491705001248 3.052553877330089 -7.63745852500624 1.526276938665044 -7.637458525006213 -1.52612455470113 -8.079789814554541 1.526276938665113 -8.079789814554577 -1.526124554701171 15.27491705001246 3.052416535812357 16.15957962910915 -3.05241669005392 16.15957962910915 3.052416535812224 15.27491705001243 -3.052416690054004 7.637458525006213 -1.526208345027002 7.637458525006231 1.526208267906179 8.079789814554577 -1.52620834502696 8.079789814554577 1.526208267906112 16.15957962910905 3.052438862169345 15.27491705001246 -3.052369155945408 16.15957962910915 -3.052369155945526 15.27491705001246 3.052438862169398 7.637458525006231 1.526219431084699 8.079789814554523 1.526219431084672 7.637458525006231 -1.526184577972704 8.079789814554577 -1.526184577972763 15.27491705001264 3.05243197721078 16.15957962910905 -3.052388094537172 16.15957962910919 3.052431977210855 15.27491705001246 -3.052388094537107 7.637458525006231 -1.526194047268554 7.63745852500632 1.52621598860539 8.079789814554523 -1.526194047268586 8.079789814554594 1.526215988605428 16.15957962910919 -3.052517161824061 15.27491705001257 3.052318676844949 15.27491705001264 -3.052517161824126 16.15957962910915 3.052318676844975 8.079789814554577 1.526159338422487 8.079789814554594 -1.526258580912031 7.637458525006284 1.526159338422474 7.63745852500632 -1.526258580912063 16.15957962910915 -3.052362761715934 15.27491705001246 3.05243305502342 15.27491705001257 -3.052362761715977 16.1595796291089 3.052433055023369 8.07978981455445 1.526216527511684 8.079789814554575 -1.526181380857967 7.63745852500623 1.52621652751171 7.637458525006283 -1.526181380857988 16.15957962910901 3.052501452363778 15.27491705001246 -3.052324167367494 16.1595796291089 -3.052324167367532 15.27491705001232 3.052501452363784 7.63745852500616 1.526250726181892 8.079789814554506 1.526250726181889 7.637458525006231 -1.526162083683747 8.079789814554452 -1.526162083683766 16.15957962910922 3.052376857360143 15.27491705001232 -3.052456883429417 16.15957962910901 -3.052456883429418 15.27491705001232 3.052376857360129 7.637458525006159 1.526188428680064 8.07978981455461 1.526188428680072 7.637458525006159 -1.526228441714708 8.079789814554504 -1.526228441714709 16.15957962910922 -3.052351123981224 15.2749170500125 3.052455255490937 15.27491705001232 -3.052351123981252 16.15957962910908 3.052455255490922 8.079789814554541 1.526227627745461 8.079789814554612 -1.526175561990612 7.637458525006249 1.526227627745469 7.63745852500616 -1.526175561990626 16.15957962910919 3.052429041414678 15.2749170500125 -3.052393678245672 16.15957962910908 -3.052393678245677 15.2749170500125 3.052429041414679 7.637458525006248 1.52621452070734 8.079789814554593 1.526214520707339 7.637458525006248 -1.526196839122836 8.079789814554539 -1.526196839122838</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"288\" source=\"#ID374\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID370\">\r\n                    <input semantic=\"POSITION\" source=\"#ID368\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID369\"/>\r\n                </vertices>\r\n                <triangles count=\"96\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID370\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID371\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 1 1 26 26 27 27 26 26 1 1 3 3 27 27 26 26 28 28 27 27 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 35 35 37 37 38 38 38 38 37 37 39 39 38 38 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 25 25 46 46 25 25 24 24 46 46 24 24 47 47 96 96 97 97 98 98 97 97 96 96 99 99 104 104 99 105 96 106 99 105 104 104 105 107 108 112 104 113 109 114 104 113 108 112 105 115 112 120 108 121 109 122 108 121 112 120 113 123 116 128 113 129 112 130 113 129 116 128 117 131 120 136 116 137 121 138 116 137 120 136 117 139 124 144 121 145 125 146 121 145 124 144 120 147 124 152 128 153 129 154 128 153 124 152 125 155 129 160 132 161 133 162 132 161 129 160 128 163 133 168 136 169 137 170 136 169 133 168 132 171 137 176 140 177 141 178 140 177 137 176 136 179 144 184 140 185 145 186 140 185 144 184 141 187 148 192 145 193 149 194 145 193 148 192 144 195 152 200 148 201 149 202 148 201 152 200 153 203 156 208 152 209 157 210 152 209 156 208 153 211 160 216 157 217 161 218 157 217 160 216 156 219 164 224 160 225 161 226 160 225 164 224 165 227 168 232 164 233 169 234 164 233 168 232 165 235 169 240 172 241 168 242 172 241 169 240 173 243 173 248 176 249 172 250 176 249 173 248 177 251 180 256 176 257 177 258 176 257 180 256 181 259 184 264 181 265 180 266 181 265 184 264 185 267 184 272 188 273 185 274 188 273 184 272 189 275 98 280 188 281 189 282 188 281 98 280 97 283</p>\r\n                </triangles>\r\n                <triangles count=\"96\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID370\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID371\"/>\r\n                    <p>48 48 49 49 50 50 49 49 51 51 50 50 51 51 52 52 50 50 50 50 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 58 58 60 60 59 59 59 59 60 60 61 61 60 60 62 62 61 61 62 62 63 63 61 61 61 61 63 63 64 64 63 63 65 65 64 64 64 64 65 65 66 66 65 65 67 67 66 66 66 66 67 67 68 68 67 67 69 69 68 68 68 68 69 69 70 70 69 69 71 71 70 70 72 72 73 73 71 71 70 70 71 71 73 73 51 51 49 49 74 74 49 49 75 75 74 74 74 74 75 75 76 76 75 75 77 77 76 76 76 76 77 77 78 78 77 77 79 79 78 78 78 78 79 79 80 80 79 79 81 81 80 80 80 80 81 81 82 82 82 82 81 81 83 83 81 81 84 84 83 83 83 83 84 84 85 85 84 84 86 86 85 85 85 85 86 86 87 87 86 86 88 88 87 87 87 87 88 88 89 89 88 88 90 90 89 89 89 89 90 90 91 91 90 90 92 92 91 91 91 91 92 92 93 93 92 92 94 94 93 93 93 93 94 94 72 72 72 72 94 94 73 73 95 95 73 73 94 94 100 100 101 101 102 102 103 103 102 102 101 101 106 108 107 109 100 110 101 111 100 110 107 109 106 116 110 117 107 118 111 119 107 118 110 117 114 124 115 125 110 126 111 127 110 126 115 125 118 132 119 133 114 134 115 135 114 134 119 133 118 140 122 141 119 142 123 143 119 142 122 141 122 148 126 149 123 150 127 151 123 150 126 149 127 156 126 157 130 158 131 159 130 158 126 157 130 164 131 165 134 166 135 167 134 166 131 165 134 172 135 173 138 174 139 175 138 174 135 173 138 180 139 181 142 182 143 183 142 182 139 181 143 188 146 189 142 190 147 191 142 190 146 189 146 196 150 197 147 198 151 199 147 198 150 197 154 204 155 205 150 206 151 207 150 206 155 205 154 212 158 213 155 214 159 215 155 214 158 213 158 220 162 221 159 222 163 223 159 222 162 221 166 228 167 229 162 230 163 231 162 230 167 229 166 236 170 237 167 238 171 239 167 238 170 237 174 244 171 245 175 246 170 247 175 246 171 245 178 252 174 253 179 254 175 255 179 254 174 253 182 260 183 261 179 262 178 263 179 262 183 261 186 268 187 269 182 270 183 271 182 270 187 269 190 276 187 277 191 278 186 279 191 278 187 277 102 284 103 285 191 286 190 287 191 286 103 285</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID375\">\r\n            <mesh>\r\n                <source id=\"ID376\">\r\n                    <float_array count=\"288\" id=\"ID380\">0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035627 -0.3578613696232667 1.324001740206996 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151409 -0.35666972965487 1.31956378430982 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 0.6831636119784472 1.189256688460091 0.848191442515148 0.680868640605695 1.185278447723705 0.848191442515148 0.680868640605695 1.185278447723705 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035627 -0.6883468591155371 1.186265836591588 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.6860480580346522 1.182286995116669 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151387 0.9644406560028058 0.9686694797989038 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 0.6883464085616424 -1.186264860391474 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151387 0.6860518126504815 -1.182286394378136 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151333 -0.6808676644055873 -1.185277922077488 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.3508928026645748 -1.321112338057901 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035609 0.002993367461099794 -1.371508293416812 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151387 0.002993367461098018 -1.366914445870862 -0.2249169753035609 0.002993367461099794 -1.371508293416812</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID380\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID377\">\r\n                    <float_array count=\"288\" id=\"ID381\">-0.00428062881210491 -0.2567048492765375 -0.9664803653333486 -0.004280981952864871 0.002183299616824533 -0.999988453131486 -0.004280628810128404 -0.2567062461107217 -0.9664799943220406 -0.004280981954898488 0.002184853357166072 -0.9999884497379504 0.004280981954898488 -0.002184853357166072 0.9999884497379504 0.00428062881210491 0.2567048492765375 0.9664803653333486 0.004280981952864871 -0.002183299616824533 0.999988453131486 0.004280628810128404 0.2567062461107217 0.9664799943220406 -0.004281638786373565 0.2609241043035803 -0.9653498222730853 -0.00428163879072645 0.2609252439511864 -0.9653495142373459 0.00428163879072645 -0.2609252439511864 0.9653495142373459 0.004281638786373565 -0.2609241043035803 0.9653498222730853 -0.004280369372364794 -0.4981020763274863 -0.8671078364288279 -0.00428036937316088 -0.4981009455189371 -0.867108486010355 0.00428036937316088 0.4981009455189371 0.867108486010355 0.004280369372364794 0.4981020763274863 0.8671078364288279 -0.004282256411797012 0.5018836420376206 -0.864924547076262 -0.004282256413127314 0.5018847979083912 -0.8649238763662763 0.004282256413127314 -0.5018847979083912 0.8649238763662763 0.004282256411797012 -0.5018836420376206 0.864924547076262 -0.004279848666279009 -0.705555224291424 -0.7086420170794786 -0.004279848671315645 -0.7055541584054808 -0.708643078320874 0.004279848671315645 0.7055541584054808 0.708643078320874 0.004279848666279009 0.705555224291424 0.7086420170794786 -0.004281892798924736 0.7086451305096495 -0.7055520848236652 -0.0042818928041386 0.7086441543526577 -0.7055530652586102 0.004281892798924736 -0.7086451305096495 0.7055520848236652 0.0042818928041386 -0.7086441543526577 0.7055530652586102 -0.004279390712496793 -0.8649233212950592 -0.5018857789328697 -0.004279390712642355 -0.8649226644398191 -0.5018869109206303 0.004279390712496793 0.8649233212950592 0.5018857789328697 0.004279390712642355 0.8649226644398191 0.5018869109206303 -0.004281359113397748 0.8671102266169878 -0.4980979069022258 -0.004281359112962919 0.8671110173025061 -0.4980965304403946 0.004281359113397748 -0.8671102266169878 0.4980979069022258 0.004281359112962919 -0.8671110173025061 0.4980965304403946 -0.004280028371695556 -0.965348902363104 -0.2609275341229588 -0.004280028364445989 -0.9653485192918171 -0.260928951360894 0.004280028371695556 0.965348902363104 0.2609275341229588 0.004280028364445989 0.9653485192918171 0.260928951360894 -0.004281468576927181 0.9664802791478765 -0.2567051597554433 -0.004281468578594852 0.9664806579291112 -0.2567037336614381 0.004281468576927181 -0.9664802791478765 0.2567051597554433 0.004281468578594852 -0.9664806579291112 0.2567037336614381 -0.004280447389466799 -0.9999884506049243 -0.002185503811303777 -0.00428044738673919 -0.9999884540002806 -0.002183949701340417 0.004280447389466799 0.9999884506049243 0.002185503811303777 0.00428044738673919 0.9999884540002806 0.002183949701340417 -0.004280716988099828 0.9999884543797312 0.002183247421708556 -0.004280716977420427 0.9999884509864663 0.002184801100054285 0.004280716988099828 -0.9999884543797312 -0.002183247421708556 0.004280716977420427 -0.9999884509864663 -0.002184801100054285 -0.004279849309618837 -0.9664798642304419 0.2567067488925707 -0.004279849305227373 -0.9664794597692433 0.256708271651063 0.004279849309618837 0.9664798642304419 -0.2567067488925707 0.004279849305227373 0.9664794597692433 -0.256708271651063 -0.004279550911469715 0.9653495572584627 0.2609251190377931 -0.004279550914307764 0.9653499365637356 0.2609237157108637 0.004279550911469715 -0.9653495572584627 -0.2609251190377931 0.004279550914307764 -0.9653499365637356 -0.2609237157108637 -0.004279366945403445 -0.8671083352607096 0.4981012165614008 -0.004279366943950962 -0.8671074945846607 0.4981026800306053 0.004279366945403445 0.8671083352607096 -0.4981012165614008 0.004279366943950962 0.8671074945846607 -0.4981026800306053 -0.004280137578717258 0.8649244175304505 0.5018838833653839 -0.004280137569418133 0.8649251493016499 0.5018826222613267 0.004280137578717258 -0.8649244175304505 -0.5018838833653839 0.004280137569418133 -0.8649251493016499 -0.5018826222613267 -0.004279503727668084 -0.7086453482994729 0.7055518805738978 -0.004279503731088207 -0.708644065358699 0.7055531691373169 0.004279503727668084 0.7086453482994729 -0.7055518805738978 0.004279503731088207 0.708644065358699 -0.7055531691373169 -0.004280820620104977 0.7055523445921659 0.7086448783525611 -0.004280820622493526 0.7055537732692776 0.7086434559073291 0.004280820620104977 -0.7055523445921659 -0.7086448783525611 0.004280820622493526 -0.7055537732692776 -0.7086434559073291 -0.004279856789499468 -0.5018853069956759 0.8649235928379554 -0.004279856787992766 -0.5018869261655592 0.8649226532875417 0.004279856787992766 0.5018869261655592 -0.8649226532875417 0.004279856789499468 0.5018853069956759 -0.8649235928379554 -0.004280325599923767 0.4981013730755701 0.8671082406210833 -0.004280325596508693 0.4981002179615462 0.8671089041633976 0.004280325596508693 -0.4981002179615462 -0.8671089041633976 0.004280325599923767 -0.4981013730755701 -0.8671082406210833 -0.004280271874951132 -0.2609268930036005 0.9653490745736302 -0.004280271879293935 -0.2609251102153328 0.965349556446656 0.004280271874951132 0.2609268930036005 -0.9653490745736302 0.004280271879293935 0.2609251102153328 -0.965349556446656 -0.004280237443075813 0.2567064328691884 0.966479946450524 -0.004280237446015731 0.256704930550933 0.9664803454795375 0.004280237446015731 -0.256704930550933 -0.9664803454795375 0.004280237443075813 -0.2567064328691884 -0.966479946450524 -0.004280534257630148 -0.002183750939241975 0.9999884540624979 -0.004280534258190548 -0.002185305100490302 0.9999884506673475 0.004280534258190548 0.002185305100490302 -0.9999884506673475 0.004280534257630148 0.002183750939241975 -0.9999884540624979</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID381\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID379\">\r\n                    <float_array count=\"384\" id=\"ID382\">16.72264492845211 -3.239903109249033 -4.493906290557893 2.933910303838056 -4.728586341386173 -2.696140844848241 16.95653956603488 2.371301515704383 8.478269783017442 1.185650757852192 8.361322464226053 -1.619951554624516 -2.246953145278947 1.466955151919028 -2.364293170693086 -1.348070422424121 -16.95324444480733 2.385627098572262 4.724869775837585 -2.700043436932254 4.497951786028732 2.930243137362552 -16.72708843421687 -3.225761471737048 -8.363544217108437 -1.612880735868524 -8.476622222403663 1.192813549286131 2.362434887918793 -1.350021718466127 2.248975893014366 1.465121568681276 -4.650377267339515 -2.779097278612486 16.8845397929188 2.670381715873585 -4.576559850465017 2.853718301221435 16.81096911007859 -2.94358313064525 8.405484555039294 -1.471791565322625 -2.325188633669757 -1.389548639306243 8.442269896459401 1.335190857936793 -2.288279925232509 1.426859150610718 -16.88407653528399 2.671868009696685 4.649988302077555 -2.779450835817336 4.577047968530231 2.853401927377038 -16.81138055951746 -2.942128119354722 -8.405690279758728 -1.471064059677361 -8.442038267641994 1.335934004848342 2.324994151038777 -1.389725417908668 2.288523984265115 1.426700963688519 -4.633528105959257 -2.796443786905329 16.86821789600814 2.73349127372693 -4.593746885068567 2.836588465561602 16.82856995092033 -2.880655093693082 8.414284975460165 -1.440327546846541 -2.316764052979628 -1.398221893452664 8.434108948004072 1.366745636863465 -2.296873442534284 1.418294232780801 4.593973352083259 2.836523718218725 -16.82868561620813 -2.880198764756717 4.633415836383876 -2.796499481809613 -16.86799572512858 2.733954476238326 -8.433997862564288 1.366977238119163 2.296986676041629 1.418261859109362 -8.414342808104063 -1.440099382378358 2.316707918191938 -1.398249740904807 16.86025756741855 2.763878992145286 -4.625368403466258 -2.804667302171011 16.83691785074735 -2.850323934358243 -4.601950849363642 2.828377057234473 -2.300975424681821 1.414188528617236 8.430128783709277 1.381939496072643 -2.312684201733129 -1.402333651085505 8.418458925373676 -1.425161967179121 4.625321723249752 -2.804583041773303 -16.86010532359727 2.764157331875902 -16.83696537367468 -2.850054064282261 4.602104112393668 2.82847806387397 2.301052056196834 1.414239031936985 2.312660861624876 -1.402291520886652 -8.430052661798635 1.382078665937951 -8.41848268683734 -1.42502703214113 16.85496166571006 2.783686677685021 -4.620007726224934 -2.810278447092262 16.84234184440923 -2.830551225302984 -4.607345360204824 2.822837129837691 -2.303672680102412 1.411418564918846 8.42748083285503 1.391843338842511 -2.310003863112467 -1.405139223546131 8.421170922204613 -1.415275612651492 4.619984400096286 -2.809976726827539 -16.85483529246015 2.784011826299676 -16.84236541118916 -2.830188792266932 4.60747210773349 2.823105087936984 2.303736053866745 1.411552543968492 2.309992200048143 -1.404988363413769 -8.427417646230072 1.392005913149838 -8.421182705594578 -1.415094396133466 16.84661280771467 -2.814593484597931 -4.611683716472709 2.81851480107025 -4.615752153365286 -2.814589810342543 16.85066790715681 2.799634925290195 8.425333953578404 1.399817462645097 8.423306403857335 -1.407296742298966 -2.305841858236355 1.409257400535125 -2.307876076682643 -1.407294905171272 4.615710287708393 -2.814561377896678 -16.85057595863294 2.799689708006414 -16.84665468625737 -2.814561337141796 4.611775836897464 2.818552915409719 2.305887918448732 1.409276457704859 2.307855143854197 -1.407280688948339 -8.425287979316471 1.399844854003207 -8.423327343128683 -1.407280668570898 16.85061274891556 -2.799737230245905 -4.615671991269269 2.81450515557137 -4.611738806717524 -2.818601982494837 16.84669296982185 2.814502371962669 8.423346484910923 1.407251185981335 8.425306374457781 -1.399868615122952 -2.307835995634635 1.407252577785685 -2.305869403358762 -1.409300991247418 4.615728155487668 2.814609614993135 -16.85069104536705 -2.799615976508483 4.611660413818911 -2.818490959721189 -16.8466368184738 2.8146110332504 -8.423318409236899 1.4073055166252 2.307864077743834 1.407304807496568 -8.425345522683527 -1.399807988254242 2.305830206909456 -1.409245479860595 16.85488174045585 -2.783822084320475 -4.619932794077956 2.810191868402641 -4.607425572770014 -2.822910867387297 16.84241677434491 2.830407356558213 8.421208387172452 1.415203678279107 8.427440870227924 -1.391911042160237 -2.309966397038978 1.405095934201321 -2.303712786385007 -1.411455433693649 4.620004557216717 2.810058274546969 -16.85496420879204 -2.783885263391031 4.607342998617686 -2.823023215688412 -16.84234483497815 2.830335643376079 -8.421172417489073 1.41516782168804 2.310002278608359 1.405029137273484 -8.427482104396022 -1.391942631695516 2.303671499308843 -1.411511607844206 16.86015697964571 -2.764128945178626 -4.625258428899851 2.804623625608292 -4.602052139363532 -2.828459741286155 16.83702861702645 2.850080276962824 8.418514308513226 1.425040138481412 8.430078489822854 -1.382064472589313 -2.312629214449926 1.402311812804146 -2.301026069681766 -1.414229870643077 4.625415304190483 2.804724666538888 -16.86021964902263 -2.763862037364986 4.601989023202723 -2.828331854061645 -16.83687108925824 2.850382876463817 -8.418435544629118 1.425191438231908 2.312707652095241 1.402362333269444 -8.430109824511312 -1.381931018682493 2.300994511601362 -1.414165927030822 -4.593914234547086 -2.836549647844413 16.82876921869526 2.880127300163432 -4.633332011394352 2.796435274276993 16.86805470199861 -2.733989105220428 8.434027350999303 -1.366994552610214 -2.296957117273543 -1.418274823922207 8.414384609347628 1.440063650081716 -2.316666005697176 1.398217637138496 -16.82855802294511 2.880666116932571 4.593755417573123 -2.836541457565994 4.633540441894999 2.796500506525937 -16.86820930785124 -2.733438833984344 -8.434104653925619 -1.366719416992172 -8.414279011472553 1.440333058466285 2.296877708786562 -1.418270728782997 2.316770220947499 1.398250253262969 16.88411675624425 -2.671921487800922 -4.649910896461154 2.779418514975413 -4.577007912454192 -2.853430276512045 16.81145811289813 2.942066762377245 8.405729056449063 1.471033381188622 8.442058378122125 -1.335960743900461 -2.324955448230577 1.389709257487706 -2.288503956227096 -1.426715138256022 -16.81098620107458 2.943539550568779 4.576551096657347 -2.853740970625229 4.650360429397084 2.779075221069198 -16.88454891053257 -2.670436317040372 -8.442274455266283 -1.335218158520186 -8.405493100537289 1.47176977528439 2.288275548328674 -1.426870485312614 2.325180214698542 1.389537610534599 -4.497954252672803 -2.930183803648829 16.72711886388277 3.225770011282844 -4.724839231514265 2.700053591480886 16.95324496794547 -2.385640017490524 8.476622483972733 -1.192820008745262 -2.248977126336401 -1.465091901824415 8.363559431941386 1.612885005641422 -2.362419615757132 1.350026795740443 -16.72266364813068 3.23986216331764 4.493904609166451 -2.933941311184089 4.728569530450034 2.696148379731193 -16.95654291422808 -2.371371245078102 -8.478271457114039 -1.185685622539051 -8.361331824065339 1.61993108165882 2.246952304583226 -1.466970655592045 2.364284765225017 1.348074189865597</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID382\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID378\">\r\n                    <input semantic=\"POSITION\" source=\"#ID376\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID377\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID378\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID379\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 8 8 9 1 10 8 9 3 8 9 11 12 16 0 17 2 18 0 17 12 16 13 19 9 24 16 25 8 26 16 25 9 24 17 27 20 32 13 33 12 34 13 33 20 32 21 35 16 40 24 41 25 42 24 41 16 40 17 43 21 48 28 49 29 50 28 49 21 48 20 51 32 56 24 57 33 58 24 57 32 56 25 59 29 64 36 65 37 66 36 65 29 64 28 67 40 72 33 73 41 74 33 73 40 72 32 75 44 80 36 81 45 82 36 81 44 80 37 83 48 88 41 89 49 90 41 89 48 88 40 91 52 96 45 97 53 98 45 97 52 96 44 99 48 104 56 105 57 106 56 105 48 104 49 107 60 112 53 113 61 114 53 113 60 112 52 115 57 120 64 121 65 122 64 121 57 120 56 123 68 128 61 129 69 130 61 129 68 128 60 131 65 136 72 137 73 138 72 137 65 136 64 139 76 144 68 145 69 146 68 145 76 144 77 147 72 152 80 153 73 154 80 153 72 152 81 155 84 160 76 161 85 162 76 161 84 160 77 163 81 168 88 169 80 170 88 169 81 168 89 171 92 176 84 177 85 178 84 177 92 176 93 179 89 184 92 185 88 186 92 185 89 184 93 187</p>\r\n                </triangles>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID378\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID379\"/>\r\n                    <p>4 4 5 5 6 6 7 7 6 6 5 5 10 12 4 13 11 14 6 15 11 14 4 13 14 20 15 21 5 22 7 23 5 22 15 21 18 28 10 29 19 30 11 31 19 30 10 29 22 36 23 37 14 38 15 39 14 38 23 37 18 44 19 45 26 46 27 47 26 46 19 45 23 52 22 53 30 54 31 55 30 54 22 53 27 60 34 61 26 62 35 63 26 62 34 61 30 68 31 69 38 70 39 71 38 70 31 69 34 76 42 77 35 78 43 79 35 78 42 77 39 84 46 85 38 86 47 87 38 86 46 85 42 92 50 93 43 94 51 95 43 94 50 93 46 100 54 101 47 102 55 103 47 102 54 101 51 108 50 109 58 110 59 111 58 110 50 109 54 116 62 117 55 118 63 119 55 118 62 117 58 124 59 125 66 126 67 127 66 126 59 125 62 132 70 133 63 134 71 135 63 134 70 133 66 140 67 141 74 142 75 143 74 142 67 141 78 148 79 149 70 150 71 151 70 150 79 149 82 156 74 157 83 158 75 159 83 158 74 157 78 164 86 165 79 166 87 167 79 166 86 165 90 172 82 173 91 174 83 175 91 174 82 173 94 180 95 181 86 182 87 183 86 182 95 181 94 188 90 189 95 190 91 191 95 190 90 189</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID383\">\r\n            <mesh>\r\n                <source id=\"ID386\">\r\n                    <float_array count=\"288\" id=\"ID390\">-0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID390\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID387\">\r\n                    <float_array count=\"288\" id=\"ID391\">-0.9082500329767456 0.0007516867371791146 -0.4184271890840621 -0.9082492745359263 -0.1074503430176522 -0.4043979217186361 -0.9082500344776737 0.0008765598473410654 -0.4184269428635523 -0.9082492736520922 -0.1075708369032307 -0.4043658887176134 0.9082492736520922 0.1075708369032307 0.4043658887176134 0.9082500329767456 -0.0007516867371791146 0.4184271890840621 0.9082492745359263 0.1074503430176522 0.4043979217186361 0.9082500344776737 -0.0008765598473410654 0.4184269428635523 -0.9082506050830315 0.1091435923435764 -0.4039412266860695 -0.9082506046354215 0.1090229161292429 -0.4039738146688064 0.9082506050830315 -0.1091435923435764 0.4039412266860695 0.9082506046354215 -0.1090229161292429 0.4039738146688064 -0.9082482427168129 -0.2084560405691885 -0.3628101552493231 -0.9082482405359982 -0.2085640638359936 -0.3627480735158756 0.9082482405359982 0.2085640638359936 0.3627480735158756 0.9082482427168129 0.2084560405691885 0.3628101552493231 -0.9082491615154812 0.2099738865158217 -0.3619315233409027 -0.9082491645414247 0.209866585626633 -0.3619937449006862 0.9082491615154812 -0.2099738865158217 0.3619315233409027 0.9082491645414247 -0.209866585626633 0.3619937449006862 -0.9082465712478778 -0.2952584160994148 -0.2964972740834871 -0.908246568910591 -0.2953461497473803 -0.2964098883160561 0.908246568910591 0.2953461497473803 0.2964098883160561 0.9082465712478778 0.2952584160994148 0.2964972740834871 -0.9082473909658394 0.2964969062159364 -0.295256263960858 -0.9082473912470552 0.2964072177461657 -0.2953463010787428 0.9082473909658394 -0.2964969062159364 0.295256263960858 0.9082473912470552 -0.2964072177461657 0.2953463010787428 -0.9082474673790382 -0.3619345433051908 -0.2099760090153772 -0.9082474712734822 -0.3619966089766116 -0.2098689734447648 0.9082474712734822 0.3619966089766116 0.2098689734447648 0.9082474673790382 0.3619345433051908 0.2099760090153772 -0.9082484639023035 0.3628095932970937 -0.2084560549149473 -0.908248460723703 0.3627472515016051 -0.2085645346674632 0.9082484639023035 -0.3628095932970937 0.2084560549149473 0.908248460723703 -0.3627472515016051 0.2085645346674632 -0.9082511405035336 -0.4039399392223229 -0.1091439016853281 -0.9082511440516279 -0.403972551902783 -0.1090231013962746 0.9082511440516279 0.403972551902783 0.1090231013962746 0.9082511405035336 0.4039399392223229 0.1091439016853281 -0.9082495969998886 0.4043972754492359 -0.1074500495987548 -0.908249596623721 0.404365212715167 -0.1075706511027334 0.9082495969998886 -0.4043972754492359 0.1074500495987548 0.908249596623721 -0.404365212715167 0.1075706511027334 -0.9082514585655601 -0.4184238527729456 -0.0008760389129415635 -0.9082514553289773 -0.4184241025164883 -0.0007512163908289862 0.9082514553289773 0.4184241025164883 0.0007512163908289862 0.9082514585655601 0.4184238527729456 0.0008760389129415635 -0.9082505851953316 0.4184257471815965 0.0008766914283048339 -0.9082505828752954 0.418425995279139 0.0007517854403690022 0.9082505851953316 -0.4184257471815965 -0.0008766914283048339 0.9082505828752954 -0.418425995279139 -0.0007517854403690022 -0.9082490302929679 -0.4043664017146101 0.1075709632580378 -0.9082490333533763 -0.4043984855098431 0.1074502597949525 0.9082490302929679 0.4043664017146101 -0.1075709632580378 0.9082490333533763 0.4043984855098431 -0.1074502597949525 -0.9082505698761868 0.4039735439268114 0.1090242089024017 -0.9082505682264853 0.4039407217202315 0.1091457679088157 0.9082505682264853 -0.4039407217202315 -0.1091457679088157 0.9082505698761868 -0.4039735439268114 -0.1090242089024017 -0.9082486494484744 -0.3627467689190975 0.2085645521505931 -0.9082486481231678 -0.3628091637581442 0.2084559998550159 0.9082486494484744 0.3627467689190975 -0.2085645521505931 0.9082486481231678 0.3628091637581442 -0.2084559998550159 -0.9082483686281029 0.3619950655307562 0.2098677522054624 -0.9082483661589828 0.3619328652568282 0.209975013790977 0.9082483661589828 -0.3619328652568282 -0.209975013790977 0.9082483686281029 -0.3619950655307562 -0.2098677522054624 -0.9082506197478876 -0.2964042575108705 0.2953393435643274 -0.9082506167666825 -0.2964919493568599 0.2952513185567682 0.9082506197478876 0.2964042575108705 -0.2953393435643274 0.9082506167666825 0.2964919493568599 -0.2952513185567682 -0.9082480131803266 0.2953441289205035 0.2964074764006107 -0.90824801524225 0.295256581095625 0.2964946780774259 0.90824801524225 -0.295256581095625 -0.2964946780774259 0.9082480131803266 -0.2953441289205035 -0.2964074764006107 -0.9082502482972585 -0.2098653041311184 0.3619917686770259 -0.9082502533146946 -0.2099721613881187 0.3619297843446915 0.9082502482972585 0.2098653041311184 -0.3619917686770259 0.9082502533146946 0.2099721613881187 -0.3619297843446915 -0.9082493143264231 0.2085638932647763 0.3627454830205625 -0.9082493159583445 0.2084540785156279 0.3628085958344974 0.9082493159583445 -0.2084540785156279 -0.3628085958344974 0.9082493143264231 -0.2085638932647763 -0.3627454830205625 -0.9082485879667209 -0.1090232989628911 0.4039782453792602 -0.9082485869772989 -0.1091444703673541 0.4039455270726108 0.9082485879667209 0.1090232989628911 -0.4039782453792602 0.9082485869772989 0.1091444703673541 -0.4039455270726108 -0.9082511946939681 0.107569634709001 0.4043618936368158 -0.9082511981082746 0.1074499269831152 0.4043937120260486 0.9082511981082746 -0.1074499269831152 -0.4043937120260486 0.9082511946939681 -0.107569634709001 -0.4043618936368158 -0.9082509090819749 -0.0008773896933384607 0.4184250426768125 -0.9082509125925561 -0.000752468406024658 0.4184252783545552 0.9082509090819749 0.0008773896933384607 -0.4184250426768125 0.9082509125925561 0.000752468406024658 -0.4184252783545552</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID391\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID389\">\r\n                    <float_array count=\"192\" id=\"ID392\">-4.542699139165971 13.57301502275557 -0.4760628845307824 14.03057851338626 -4.293205956690974 12.84291939320605 -0.4520778451937232 13.27480097802665 0.5262263144851437 13.27311290434169 0.5509308441970694 14.02887609692691 4.364922551878471 12.82793928468497 4.615115580867611 13.5578951401443 -9.200497557095831 12.02549805985014 -5.460294461359973 13.36213689623786 -8.700673353099646 11.37978305347014 -5.167760694787276 12.6419962786728 5.236482058585006 12.62448183080072 5.529599615995658 13.34448409699993 8.762464862805501 11.35038498428026 9.262826653654555 11.9958490506677 -12.99216162462306 9.619703772942543 -9.850935596277633 11.70231789836429 -12.28897078609038 9.104402023815595 -9.321713719835559 11.07126571357382 9.379208433918393 11.04116980481799 9.908805909503144 11.67203388437624 12.33621713888454 9.064756673517946 13.03968184989838 9.57981702183138 -15.70518465917443 6.660142705593261 -13.3525193171996 9.309346053102276 -14.85691765236203 6.30484509550176 -12.63441802294289 8.80693061639283 12.67792072561648 8.768150175948428 13.39616309803314 9.270430520945231 14.8880027823071 6.259267456761666 15.73641299818794 6.614399205461904 -17.30591011175082 3.414281264193431 -15.85447136542427 6.437527688275801 -16.37252037394564 3.234169117888085 -15.00127260492471 6.089614567846071 15.03012559609594 6.045417211916162 15.88339658588965 6.393267460950476 16.38777273810398 3.18595789568538 17.32115792288254 3.365996716390026 -17.84158673383741 0.07271931827509812 -17.34754144405634 3.280923251307002 -16.88054368036996 0.07271501916888513 -16.4134956469478 3.102928287245775 16.42781917250773 3.055684031940567 17.36184157354511 3.233666018167433 16.88077042213474 0.02413597414263838 17.84180938374336 0.0241319283408874 -17.84181214267261 -0.02413337543565036 -16.88076908897763 -0.02413745264056083 -17.36185361655219 -3.23366717946566 -16.42782986626323 -3.055684287849731 16.4134818910754 -3.102935319425331 16.88054701756033 -0.07271698671732821 17.34751954079551 -3.280922069425896 17.84158597896712 -0.07272124314771755 -17.3211786305619 -3.365991047406652 -16.3877919244592 -3.185951882083677 -15.88340587967561 -6.393257993900284 -15.03015255389675 -6.045413601251539 15.00124014052953 -6.089609450990861 16.37250085551697 -3.234178633475433 15.85445263950981 -6.437525411168315 17.3058822788614 -3.414283177660608 -15.73639731955359 -6.614409163697935 -14.8880059792257 -6.259281506746234 -13.39617422300147 -9.270432463617809 -12.67787981034289 -8.768156485934776 12.63438003713352 -8.806939261801423 14.85687775431837 -6.30484505352637 13.35248086666035 -9.309357964262242 15.70515852596362 -6.660145524742545 -13.03968789063718 -9.579816255505966 -12.33617009607184 -9.064760126010743 -9.908816153169438 -11.67204170025707 -9.379206298367013 -11.04117126199523 9.321679514522458 -11.07126762305999 12.28893385344979 -9.104409654094303 9.850928337812352 -11.70231246863167 12.99212427033344 -9.61971454210361 -9.262873717913241 -11.99585669306635 -8.762497622106514 -11.35038698937884 -5.529610632032458 -13.34446963758883 -5.236511265108912 -12.62449364339831 5.167749101606612 -12.64198777028426 8.700643486461816 -11.37978310462293 5.460273663042221 -13.36213548128276 9.200495491064043 -12.02549128880329 -4.364955882694339 -12.82794829884673 -0.5262691202224505 -13.27310290361913 -4.615130655374084 -13.55787759450954 -0.5509741484817764 -14.02888433511281 0.4520367491142101 -13.27478359432735 4.293193018885061 -12.84290598107812 0.4760213753747136 -14.03057938515311 4.542676807114459 -13.57300831123361</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID392\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID388\">\r\n                    <input semantic=\"POSITION\" source=\"#ID386\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID387\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID388\"/>\r\n                    <p>0 1 2 1 0 3 0 8 9 8 0 2 3 12 1 12 3 13 9 16 17 16 9 8 13 20 12 20 13 21 17 24 25 24 17 16 21 28 20 28 21 29 25 32 33 32 25 24 29 36 28 36 29 37 33 40 41 40 33 32 37 44 36 44 37 45 41 48 49 48 41 40 44 52 53 52 44 45 48 56 49 56 48 57 53 60 61 60 53 52 57 64 56 64 57 65 61 68 69 68 61 60 65 72 64 72 65 73 69 76 77 76 69 68 73 80 72 80 73 81 77 84 85 84 77 76 81 88 80 88 81 89 92 84 93 84 92 85 89 93 88 93 89 92</p>\r\n                </triangles>\r\n                <triangles count=\"48\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID388\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID389\"/>\r\n                    <p>4 0 5 1 6 2 7 3 6 2 5 1 7 4 5 5 10 6 11 7 10 6 5 5 14 8 4 9 15 10 6 11 15 10 4 9 10 12 11 13 18 14 19 15 18 14 11 13 22 16 14 17 23 18 15 19 23 18 14 17 18 20 19 21 26 22 27 23 26 22 19 21 30 24 22 25 31 26 23 27 31 26 22 25 26 28 27 29 34 30 35 31 34 30 27 29 38 32 30 33 39 34 31 35 39 34 30 33 34 36 35 37 42 38 43 39 42 38 35 37 46 40 38 41 47 42 39 43 47 42 38 41 42 44 43 45 50 46 51 47 50 46 43 45 46 48 47 49 54 50 55 51 54 50 47 49 58 52 50 53 59 54 51 55 59 54 50 53 54 56 55 57 62 58 63 59 62 58 55 57 66 60 58 61 67 62 59 63 67 62 58 61 62 64 63 65 70 66 71 67 70 66 63 65 74 68 66 69 75 70 67 71 75 70 66 69 70 72 71 73 78 74 79 75 78 74 71 73 82 76 74 77 83 78 75 79 83 78 74 77 78 80 79 81 86 82 87 83 86 82 79 81 90 84 82 85 91 86 83 87 91 86 82 85 87 88 94 89 86 90 95 91 86 90 94 89 94 92 90 93 95 94 91 95 95 94 90 93</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID393\">\r\n            <mesh>\r\n                <source id=\"ID394\">\r\n                    <float_array count=\"288\" id=\"ID398\">-0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.848191442515148 -1.821721723044679 -0.002991724816678865</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID398\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID395\">\r\n                    <float_array count=\"288\" id=\"ID399\">-1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID399\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID397\">\r\n                    <float_array count=\"96\" id=\"ID400\">-18.21719920829072 0.02353305587178056 -17.58874109970749 3.731832569171651 -17.60424916488311 -3.686367916216107 -15.79154768106481 -7.14505990410002 -15.76162339299344 7.185815878339411 -15.73645395039408 0.02353305587178406 -15.20798726843623 -3.181281342099942 -13.6431234692418 -6.169288878862472 -12.90268619664868 -10.11682217439248 -11.14849664574191 -8.7368715422037 -9.134543999449482 -12.39913428420196 -7.894159355730627 -10.70906301849755 -4.743844447887168 -13.83647042450765 -4.101781864347913 -11.95141933613647 -0.02993367461101796 -14.33087164735588 -0.02993367461098022 -12.37934495576256 4.043974672825356 -11.9636131068125 4.686051523904595 -13.84865828792145 7.842322378820725 -10.73257746649335 9.082687498537359 -12.42266290962708 11.106162601468 -8.770158964817435 12.86035665791355 -10.15009187521957 13.61317214793644 -6.210043671649416 15.19249872726272 -3.226737724888358 15.73644944485523 -0.02353490189122628 15.7615948579133 -7.185808789624735 -15.19252726234299 3.226739497067041 -13.61319017009239 6.210048988185412 -12.86033863575761 10.15009660102933 -11.10619113654815 8.770154239007669 -9.082711528078582 12.42266290962708 -7.842317873281745 10.73258573666044 -4.686070296983688 13.84864765484944 -4.043988564903902 11.96361546971739 0.0299008217225882 12.37933786704789 0.0299008217226215 14.33087282880834 4.101776983347349 11.95143942082804 4.743848953426131 13.83646333579298 7.894117304033426 10.70905592978288 9.134510958830333 12.39913428420196 11.14846360512272 8.736878630918373 12.90263363202708 10.11682099294002 13.64312346924178 6.169292423219798 15.20797224997292 3.181279569921278 15.79154317552588 7.145053996837801 17.58872307755159 -3.731830796992965 17.60422062980293 3.686373823478347 18.21721723044679 -0.02353490189120707</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID400\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID396\">\r\n                    <input semantic=\"POSITION\" source=\"#ID394\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID395\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID396\"/>\r\n                    <p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 6 7 8 8 7 9 9 7 10 9 10 11 11 10 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 18 16 19 18 19 20 20 19 21 20 21 22 22 21 23 22 23 24 24 23 25 4 26 27 26 4 5 27 26 28 27 28 29 27 29 30 30 29 31 30 31 32 32 31 33 32 33 34 34 33 35 34 35 36 34 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 25 43 25 23 43 23 45 43 45 46 46 45 47</p>\r\n                </triangles>\r\n                <triangles count=\"48\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID396\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID397\"/>\r\n                    <p>48 0 49 1 50 2 50 2 49 1 51 3 49 1 52 4 51 3 52 4 53 5 51 3 53 5 54 6 51 3 54 6 55 7 51 3 51 3 55 7 56 8 55 7 57 9 56 8 56 8 57 9 58 10 57 9 59 11 58 10 58 10 59 11 60 12 59 11 61 13 60 12 60 12 61 13 62 14 61 13 63 15 62 14 63 15 64 16 62 14 62 14 64 16 65 17 64 16 66 18 65 17 65 17 66 18 67 19 66 18 68 20 67 19 67 19 68 20 69 21 68 20 70 22 69 21 70 22 71 23 69 21 72 24 73 25 71 23 69 21 71 23 73 25 53 5 52 4 74 26 74 26 52 4 75 27 52 4 76 28 75 27 75 27 76 28 77 29 76 28 78 30 77 29 77 29 78 30 79 31 78 30 80 32 79 31 79 31 80 32 81 33 81 33 80 32 82 34 80 32 83 35 82 34 82 34 83 35 84 36 83 35 85 37 84 36 84 36 85 37 86 38 85 37 87 39 86 38 86 38 87 39 88 40 87 39 89 41 88 40 88 40 89 41 90 42 90 42 89 41 91 43 89 41 92 44 91 43 91 43 92 44 72 24 72 24 92 44 73 25 73 25 92 44 93 45 92 44 94 46 93 45 95 47 93 45 94 46</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID401\">\r\n            <mesh>\r\n                <source id=\"ID402\">\r\n                    <float_array count=\"576\" id=\"ID406\">-0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151516 1.286033863575761 1.29026651708 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950979 -0.9639834939807769 1.663688891962011 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006284 0.9616870958540129 -1.659710651225625 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.7637458525006196 -0.956506702224935 -1.66269977597085 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950926 -0.9588031003517052 -1.6666787676304 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006284 0.4993573332498595 -1.852061121441011 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID406\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID403\">\r\n                    <float_array count=\"576\" id=\"ID407\">-0.7524585417620626 0.1695187983675101 0.6364507207391202 -0.752458751757041 -0.001116951969874288 0.6586384283675927 -0.7524587513418458 -0.0009841473680792699 0.6586386406695468 -0.7524585421170914 0.1693892527612725 0.6364852107032804 0.7524585421170914 -0.1693892527612725 -0.6364852107032804 0.7524585417620626 -0.1695187983675101 -0.6364507207391202 0.752458751757041 0.001116951969874288 -0.6586384283675927 0.7524587513418458 0.0009841473680792699 -0.6586386406695468 -0.7524565325827145 -0.1715493318107424 0.6359087932470239 -0.7524565358976068 -0.1714184440870872 0.6359440845009378 0.7524565325827145 0.1715493318107424 -0.6359087932470239 0.7524565358976068 0.1714184440870872 -0.6359440845009378 -0.003023428365700127 -0.001557416609379177 0.9999942166504876 -0.003023523763512286 0.2573134050059734 0.9663232740176982 -0.003023428365418651 -0.001558199390591175 0.9999942154310586 -0.003023523763771853 0.2573140904666033 0.9663230914923821 0.003023523763771853 -0.2573140904666033 -0.9663230914923821 0.003023428365700127 0.001557416609379177 -0.9999942166504876 0.003023523763512286 -0.2573134050059734 -0.9663232740176982 0.003023428365418651 0.001558199390591175 -0.9999942154310586 -0.752458965034369 0.3283526619799974 0.5709553706815058 -0.7524589655183874 0.3284673404373135 0.5708894038927644 0.7524589655183874 -0.3284673404373135 -0.5708894038927644 0.752458965034369 -0.3283526619799974 -0.5709553706815058 -0.7524536793556657 -0.3302908594592792 0.5698433193271392 -0.7524536801024093 -0.3301728027602695 0.5699117296720337 0.7524536793556657 0.3302908594592792 -0.5698433193271392 0.7524536801024093 0.3301728027602695 -0.5699117296720337 -0.003023637205282373 -0.2603221403258926 0.9655170847137802 -0.00302363720643009 -0.2603227088345894 0.9655169314326214 0.003023637205282373 0.2603221403258926 -0.9655170847137802 0.00302363720643009 0.2603227088345894 -0.9655169314326214 -0.003023769458048854 0.4986487925159631 0.8667988454887539 -0.003023769456780855 0.4986480616163927 0.8667992659575149 0.003023769458048854 -0.4986487925159631 -0.8667988454887539 0.003023769456780855 -0.4986480616163927 -0.8667992659575149 -0.7524604277183468 0.4649355000609762 0.4665171867155301 -0.7524604292449857 0.4650302144511048 0.4664227718154544 0.7524604292449857 -0.4650302144511048 -0.4664227718154544 0.7524604277183468 -0.4649355000609762 -0.4665171867155301 -0.7524523992911886 -0.4665217526188665 0.4649439118155596 -0.7524523999108818 -0.4664284121355344 0.4650375492592817 0.7524523992911886 0.4665217526188665 -0.4649439118155596 0.7524523999108818 0.4664284121355344 -0.4650375492592817 -0.003024220271891797 -0.5013452460737722 0.8652420460951814 -0.003024220270688767 -0.5013448265809373 0.8652422891608365 0.003024220270688767 0.5013448265809373 -0.8652422891608365 0.003024220271891797 0.5013452460737722 -0.8652420460951814 -0.003023789150446498 0.7060009776560012 0.7082044028724647 -0.003023789151712843 0.7060003159894974 0.7082050624797142 0.003023789150446498 -0.7060009776560012 -0.7082044028724647 0.003023789151712843 -0.7060003159894974 -0.7082050624797142 -0.7524618458997252 0.5698351311725082 0.3302863814128411 -0.7524618457279603 0.5699021833508379 0.3301706712226562 0.7524618457279603 -0.5699021833508379 -0.3301706712226562 0.7524618458997252 -0.5698351311725082 -0.3302863814128411 -0.7524479855813711 -0.5709672528893324 0.3283571609125437 -0.75244799164648 -0.5709000097533534 0.3284740457491269 0.7524479855813711 0.5709672528893324 -0.3283571609125437 0.75244799164648 0.5709000097533534 -0.3284740457491269 -0.003024450878027729 -0.7082033825184431 0.7060019983585898 -0.003024450877476187 -0.7082039104336583 0.7060014687968891 0.003024450878027729 0.7082033825184431 -0.7060019983585898 0.003024450877476187 0.7082039104336583 -0.7060014687968891 -0.003023198803451891 0.8652412822109276 0.5013465705746725 -0.003023198805660467 0.8652409285580689 0.5013471809205194 0.003023198803451891 -0.8652412822109276 -0.5013465705746725 0.003023198805660467 -0.8652409285580689 -0.5013471809205194 -0.7524650029900875 0.6358998698302749 0.1715452559092408 -0.7524650076588183 0.6359345265441972 0.1714167150485116 0.7524650076588183 -0.6359345265441972 -0.1714167150485116 0.7524650029900875 -0.6358998698302749 -0.1715452559092408 -0.7524485695931888 -0.6364956983395131 0.1693941442685062 -0.7524485617789981 -0.6364614586825991 0.1695227816204527 0.7524485695931888 0.6364956983395131 -0.1693941442685062 0.7524485617789981 0.6364614586825991 -0.1695227816204527 -0.003024642282712115 -0.8667991712589429 0.4986482209372369 -0.00302464228433073 -0.8667995384389017 0.4986475826685202 0.003024642282712115 0.8667991712589429 -0.4986482209372369 0.00302464228433073 0.8667995384389017 -0.4986475826685202 -0.003021941420137833 0.9655175454494209 0.2603204511738924 -0.003021941424746023 0.9655173587289867 0.2603211437110447 0.003021941420137833 -0.9655175454494209 -0.2603204511738924 0.003021941424746023 -0.9655173587289867 -0.2603211437110447 -0.7524649227682221 0.6586313785893013 0.001116754659718303 -0.7524649176522377 0.6586315962545964 0.0009839297400806876 0.7524649176522377 -0.6586315962545964 -0.0009839297400806876 0.7524649227682221 -0.6586313785893013 -0.001116754659718303 -0.7524562762274313 -0.6586412570388478 -0.001116643288669679 -0.7524562723022982 -0.6586414735750391 -0.0009836461920094291 0.7524562762274313 0.6586412570388478 0.001116643288669679 0.7524562723022982 0.6586414735750391 0.0009836461920094291 -0.00302424272530191 -0.966322583003932 0.2573159915989429 -0.003024242721690821 -0.9663227607441889 0.2573153241136048 0.00302424272530191 0.966322583003932 -0.2573159915989429 0.003024242721690821 0.9663227607441889 -0.2573153241136048 -0.003021067751355109 0.9999942264063256 0.001555732514273759 -0.003021067751511359 0.9999942251911452 0.001556513412098616 0.003021067751355109 -0.9999942264063256 -0.001555732514273759 0.003021067751511359 -0.9999942251911452 -0.001556513412098616 -0.7524581266761962 0.6364513097928596 -0.1695184292692185 -0.7524581327993718 0.6364858961559734 -0.1693884954139764 0.7524581266761962 -0.6364513097928596 0.1695184292692185 0.7524581327993718 -0.6364858961559734 0.1693884954139764 -0.7524554877062412 -0.6359441915615974 -0.1714226479781157 -0.7524554835789596 -0.6359095448500886 -0.171551146893593 0.7524554835789596 0.6359095448500886 0.171551146893593 0.7524554877062412 0.6359441915615974 0.1714226479781157 -0.003022939996113761 -0.9999942166299063 -0.001558377528098246 -0.003022939999784108 -0.9999942178488096 -0.001557595167271352 0.003022939996113761 0.9999942166299063 0.001558377528098246 0.003022939999784108 0.9999942178488096 0.001557595167271352 -0.003022243473153594 0.9663240542030337 -0.2573104900951403 -0.00302224347973812 0.966323868653908 -0.2573111869198347 0.003022243473153594 -0.9663240542030337 0.2573104900951403 0.00302224347973812 -0.966323868653908 0.2573111869198347 -0.752453954284854 0.5708942615132673 -0.3284703774350259 -0.7524539551700281 0.5709604990173309 -0.3283552251919589 0.752453954284854 -0.5708942615132673 0.3284703774350259 0.7524539551700281 -0.5709604990173309 0.3283552251919589 -0.75245270637364 -0.5699112482350072 -0.3301758528514779 -0.7524527067090119 -0.5698454450886161 -0.3302894077593754 0.7524527067090119 0.5698454450886161 0.3302894077593754 0.75245270637364 0.5699112482350072 0.3301758528514779 -0.003022956207305731 -0.9655159878608529 -0.2603262163533472 -0.003022956203584093 -0.9655161881351868 -0.2603254735608669 0.003022956207305731 0.9655159878608529 0.2603262163533472 0.003022956203584093 0.9655161881351868 0.2603254735608669 -0.003023860053777756 0.8667994464540276 -0.4986477473100291 -0.003023860056238176 0.866799054464471 -0.4986484287048933 0.003023860053777756 -0.8667994464540276 0.4986477473100291 0.003023860056238176 -0.866799054464471 0.4986484287048933 -0.7524520034872866 0.4664284183759522 -0.4650381844314248 -0.7524520059884629 0.4665225652234435 -0.4649437329626844 0.7524520034872866 -0.4664284183759522 0.4650381844314248 0.7524520059884629 -0.4665225652234435 0.4649437329626844 -0.7524541205941244 -0.4650354160681895 -0.4664277631136556 -0.7524541226695466 -0.4649429710307974 -0.4665199105790212 0.7524541226695466 0.4649429710307974 0.4665199105790212 0.7524541205941244 0.4650354160681895 0.4664277631136556 -0.003023625947355671 -0.8652411650582806 -0.5013467701847889 -0.003023625947147205 -0.8652415864938384 -0.5013460428563862 0.003023625947355671 0.8652411650582806 0.5013467701847889 0.003023625947147205 0.8652415864938384 0.5013460428563862 -0.003024498956473901 0.7082035258586333 -0.7060018543654559 -0.003024498957837877 0.7082029736233368 -0.7060024083224629 0.003024498956473901 -0.7082035258586333 0.7060018543654559 0.003024498957837877 -0.7082029736233368 0.7060024083224629 -0.7524548626014672 0.3301727897440394 -0.5699101759576202 -0.7524548560904877 0.3302906965735977 -0.5698418599074405 0.7524548626014672 -0.3301727897440394 0.5699101759576202 0.7524548560904877 -0.3302906965735977 0.5698418599074405 -0.7524550849515038 -0.3284703658453776 -0.5708927779294718 -0.7524550849804075 -0.3283542750975831 -0.5709595564593596 0.7524550849804075 0.3283542750975831 0.5709595564593596 0.7524550849515038 0.3284703658453776 0.5708927779294718 -0.003023436767652145 -0.7060015557338235 -0.7082038280972031 -0.003023436769444781 -0.7060023070751241 -0.7082030790915156 0.003023436767652145 0.7060015557338235 0.7082038280972031 0.003023436769444781 0.7060023070751241 0.7082030790915156 -0.003024066204165313 0.5013465000752155 -0.86524132002923 -0.003024066201718197 0.5013460802322781 -0.8652415632985611 0.003024066201718197 -0.5013460802322781 0.8652415632985611 0.003024066204165313 -0.5013465000752155 0.86524132002923 -0.7524593774133471 0.1714196849035536 -0.6359403879061972 -0.7524593773351924 0.171545207486858 -0.6359065397121069 0.7524593774133471 -0.1714196849035536 0.6359403879061972 0.7524593773351924 -0.171545207486858 0.6359065397121069 -0.7524551617968616 -0.1695201961406735 -0.6364543444628897 -0.7524551621628105 -0.169389900494532 -0.6364890341121294 0.7524551621628105 0.169389900494532 0.6364890341121294 0.7524551617968616 0.1695201961406735 0.6364543444628897 -0.003023456200964241 -0.498649628175152 -0.8667983658460503 -0.00302345619967725 -0.4986502339698029 -0.8667980173457189 0.00302345619967725 0.4986502339698029 0.8667980173457189 0.003023456200964241 0.498649628175152 0.8667983658460503 -0.003023170420924781 0.260321986899808 -0.9655171275420972 -0.00302317041934693 0.2603211190972351 -0.9655173615179473 0.00302317041934693 -0.2603211190972351 0.9655173615179473 0.003023170420924781 -0.260321986899808 0.9655171275420972 -0.7524572925624328 0.0009838075905523819 -0.6586403077494104 -0.7524572962038846 0.001116597773462055 -0.6586400918551432 0.7524572925624328 -0.0009838075905523819 0.6586403077494104 0.7524572962038846 -0.001116597773462055 0.6586400918551432 -0.003023757163787752 -0.2573148938061689 -0.9663228768471408 -0.003023757164135984 -0.257314121269845 -0.9663230825597305 0.003023757163787752 0.2573148938061689 0.9663228768471408 0.003023757164135984 0.257314121269845 0.9663230825597305 -0.003023376607918181 0.00155726701169435 -0.9999942170399491 -0.003023376605318863 0.001558049788827533 -0.9999942158206505 0.003023376607918181 -0.00155726701169435 0.9999942170399491 0.003023376605318863 -0.001558049788827533 0.9999942158206505</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID407\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID405\">\r\n                    <float_array count=\"384\" id=\"ID408\">-3.696624459452266 5.823858262090928 -4.040246963321643 6.795564893228256 0.9890827628466336 6.463093582785248 0.8935679007835635 7.468892618247301 -0.9529481975090883 6.466222128749999 -0.8551161998463231 7.471883329228509 3.729258442558688 5.811233706692518 4.07507250558566 6.782456078829257 -7.669972009859915 -1.835835337729923 -7.554321652554542 2.111785202383856 7.520717237189627 -2.106470744697186 7.63609149265897 1.831723202669839 -6.629265165315137 5.393041111258648 -2.241789872750055 7.291664938508001 -5.90273736965205 4.562006538717816 -1.735763312451184 6.364938643819828 1.768131448370683 6.359083708982839 2.27580128791188 7.285250498133096 5.926144752668277 4.543403046768413 6.654145913192843 5.373626057838043 7.555789239779621 2.108606428206098 7.668686127052055 -1.839057708593067 -7.634813705495054 1.834989415906823 -7.522186994038186 -2.10322894330467 -7.595724971270944 2.017799588171895 7.598413731494718 1.926247716636706 -7.632211106838805 -1.930765085388588 7.562014832044193 -2.012872824046142 -8.324555039492182 3.660162647609309 -4.81941465461502 6.4734078982287 -7.324240456616781 3.029240377010939 -3.995200295744808 5.700833126747577 4.020265958111306 5.689488510288188 4.845342759447187 6.461479132204169 7.337817537611757 3.009063783125704 8.338854610045059 3.639262429833399 7.632062042614949 -1.931080970865312 -7.562169654384618 -2.01252978617579 7.595891934628797 2.017484888043871 -7.598253173295223 1.926593136966556 -7.604280525974141 1.99775209317084 7.590162806256027 1.94624081239991 -7.623955884291689 -1.950882992818789 7.570534444041288 -1.992951860281939 -9.221774272756345 1.91194394298594 -6.718836162952989 5.323810449893363 -8.053104492918207 1.49712621750965 -5.675786398794395 4.737275524689899 5.693691067492606 4.723354330334615 6.737080334535841 5.309500309403943 8.058934044048545 1.477726111620418 9.227804990882156 1.892125520133433 7.604353213083794 1.997658685379888 7.623905935675444 -1.950977619621975 -7.590091221085666 1.946343936349168 -7.570585176680469 -1.992873761941959 -7.608357971913602 1.988098722674424 7.586171209310034 1.955863353392116 -7.619941292962327 -1.960561098109789 7.574615404368769 -1.983378289115803 -9.530272482541513 0.2746756156189894 -8.039325504952567 4.035248474488306 -8.274409480860204 0.07154880520611728 -6.858172886042456 3.642920142785312 6.870173671642146 3.627808949292373 8.051367441154209 4.019989372762995 8.274442799196638 0.05352251049803518 9.530305767400433 0.2564839307956014 7.608407674373749 1.988121343208024 7.619919383937229 -1.960542415976749 -7.586121691995373 1.955936271722545 -7.574637547254818 -1.98328952605131 -7.611019100226375 1.981758278354976 7.583544916727871 1.962188646121968 -7.617277576123059 -1.966904209989248 7.577301328813645 -1.977040668559802 -9.405511470881637 -1.240742243288395 -8.907815301433299 2.678985865460446 -8.123357840021573 -1.240750832424818 -7.650419727648758 2.481813686900803 7.657930885613808 2.465945293105961 8.915288502883657 2.663096804961726 8.119140709179817 -1.257537690235669 9.401272865435805 -1.257546018046028 7.611084735482613 1.981768564680788 7.617292804392591 -1.966902198835446 -7.583479377394854 1.962214253446523 -7.577286260901328 -1.977014389700738 -7.613120069812265 1.976745737194301 7.581459565158655 1.967310797641272 -7.615123097651352 -1.971918595009516 7.579461129931657 -1.971921953343625 -9.40150003157304 1.257442113621577 -8.119346403993839 1.257431712139362 -8.915537713431498 -2.663206671196163 -7.658166793412561 -2.466041118855443 7.650148767210773 -2.481713396774992 8.123108074390222 1.240849617657296 8.907523179620583 -2.678883862796719 9.4052402334673 1.240842837764527 -7.581390237913452 1.967188101395981 7.613189535885248 1.976618480108285 -7.57943764585014 -1.972050019822055 7.615146667941806 -1.972047747371725 7.579485914074268 1.97196708429726 7.581436772792678 -1.967275288237997 -7.615098313537803 1.971965794024384 -7.613142864168738 -1.976698898278629 -9.530625737779101 -0.25656725043594 -8.274749853594916 -0.05359064644060455 -8.051667980628185 -4.020064251666414 -6.870443660400792 -3.627887047345771 6.857934007589495 -3.64281816651194 8.274163615890476 -0.07144692779477511 8.039062677012478 -4.035156716714083 9.530005361959193 -0.2745723376109419 -7.579437553117938 1.972059733917022 7.615146760673897 1.972057399417009 -7.581436910305003 -1.967173248538126 7.613142749986364 -1.976607435662339 7.577315792308811 1.976949996703046 7.583505855838784 -1.96227509970517 -7.617263129816307 1.966838229966558 -7.611058272200855 -1.981825946153671 -9.227871799659241 -1.89215435520369 -8.058966808118642 -1.477763534671876 -6.737129216083037 -5.309523955305282 -5.693760167031574 -4.723377340212994 5.67558565569558 -4.737197305973607 8.052840575659085 -1.49704295134452 6.718603029494449 -5.323738691458113 9.221486487586468 -1.911869754300307 -7.577285369609861 1.977050570888327 7.617293560270303 1.966914482853697 -7.58353067722906 -1.962188734427586 7.611033394817669 -1.981754273956296 7.574638852779416 1.983381936755945 7.586122794998227 -1.955846374730674 -7.619918079974323 1.960632188041886 -7.608406550904774 -1.988032733024195 -8.338839386390088 -3.639205298984838 -7.337822183067741 -3.009007241083356 -4.845341235349157 -6.46142968527283 -4.020258889731459 -5.689438975694102 3.995128624001985 -5.700755173353182 7.324198181243452 -3.029144275291806 4.819358432886512 -6.47331750582667 8.324474868783517 -3.660076593319374 -7.574614745364233 1.983312116988463 7.619942024878952 1.960505775974488 -7.586170583499415 -1.95591014113808 7.60835859070232 -1.988135387999505 -7.604356035217696 -1.99769600445393 -7.623909739917847 1.950936307139087 7.590088410733276 -1.946377631840885 7.570581331427527 1.992838049551194 -6.654222092787895 -5.373730949672475 -5.926219203160268 -4.543505385850812 -2.275894023815066 -7.285346259589042 -1.768164791791738 -6.359189590593228 1.735701167858861 -6.364888541509357 5.902663718800884 -4.56193950172254 2.241735351137526 -7.291601797073808 6.629208755942161 -5.392962666056423 7.604268587691806 -1.997775046101012 -7.590174738516678 -1.946265886184374 7.623938984367359 1.950861077277974 -7.570551389136386 1.992910516343811 -7.59588595364065 -2.017442116402822 -7.632050366310129 1.931128964526406 7.59825903017894 -1.926544287206376 7.562181491525478 2.012562850542992 -4.075150813204585 -6.782473277036217 -3.729273224583506 -5.811255341959331 0.8550672826260229 -7.471889629038476 0.9528974804567071 -6.466230103660284 -0.9891114730239413 -6.463016631894419 3.696609987697176 -5.823790531437526 -0.8935970025749593 -7.468813907025647 4.040236589761045 -6.795486286170825 7.632213683143744 1.930717081479863 7.595726351403361 -2.01783708517383 -7.562012115608883 2.012838846303647 -7.598412396963864 -1.926287761518784 -7.668671507496315 1.83911283206964 7.522201914891844 2.103271019508454 -7.555790432103792 -2.108548548224249 7.634813601656944 -1.834968467158941 7.669984821502206 1.835824551549613 7.554320332815763 -2.111817851860591 -7.52070372868721 2.106484885781963 -7.636091856533377 -1.831723312270308</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID408\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID404\">\r\n                    <input semantic=\"POSITION\" source=\"#ID402\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID403\"/>\r\n                </vertices>\r\n                <triangles count=\"96\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID404\"/>\r\n                    <p>0 1 2 1 0 3 2 8 9 8 2 1 12 13 14 13 12 15 0 20 3 20 0 21 9 24 25 24 9 8 28 14 29 14 28 12 13 32 33 32 13 15 21 36 20 36 21 37 25 40 41 40 25 24 44 28 29 28 44 45 33 48 49 48 33 32 37 52 36 52 37 53 41 56 57 56 41 40 60 44 61 44 60 45 49 64 65 64 49 48 53 68 52 68 53 69 57 72 73 72 57 56 76 61 77 61 76 60 65 80 81 80 65 64 69 84 68 84 69 85 73 88 89 88 73 72 92 77 93 77 92 76 81 96 97 96 81 80 84 100 101 100 84 85 88 104 89 104 88 105 92 108 109 108 92 93 112 96 113 96 112 97 101 116 117 116 101 100 105 120 104 120 105 121 109 124 125 124 109 108 128 113 129 113 128 112 117 132 133 132 117 116 121 136 120 136 121 137 125 140 141 140 125 124 144 129 145 129 144 128 133 148 149 148 133 132 137 152 136 152 137 153 141 156 157 156 141 140 145 160 144 160 145 161 149 164 165 164 149 148 153 168 152 168 153 169 172 157 156 157 172 173 161 176 160 176 161 177 165 180 181 180 165 164 169 180 168 180 169 181 184 172 185 172 184 173 176 188 189 188 176 177 188 185 189 185 188 184</p>\r\n                </triangles>\r\n                <triangles count=\"96\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID404\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID405\"/>\r\n                    <p>4 0 5 1 6 2 7 3 6 2 5 1 6 4 7 5 10 6 11 7 10 6 7 5 16 8 17 9 18 10 19 11 18 10 17 9 22 12 5 13 23 14 4 15 23 14 5 13 10 16 11 17 26 18 27 19 26 18 11 17 17 20 30 21 19 22 31 23 19 22 30 21 16 24 18 25 34 26 35 27 34 26 18 25 38 28 22 29 39 30 23 31 39 30 22 29 26 32 27 33 42 34 43 35 42 34 27 33 46 36 47 37 30 38 31 39 30 38 47 37 34 40 35 41 50 42 51 43 50 42 35 41 54 44 38 45 55 46 39 47 55 46 38 45 42 48 43 49 58 50 59 51 58 50 43 49 46 52 62 53 47 54 63 55 47 54 62 53 50 56 51 57 66 58 67 59 66 58 51 57 70 60 54 61 71 62 55 63 71 62 54 61 58 64 59 65 74 66 75 67 74 66 59 65 62 68 78 69 63 70 79 71 63 70 78 69 66 72 67 73 82 74 83 75 82 74 67 73 86 76 70 77 87 78 71 79 87 78 70 77 74 80 75 81 90 82 91 83 90 82 75 81 78 84 94 85 79 86 95 87 79 86 94 85 82 88 83 89 98 90 99 91 98 90 83 89 86 92 87 93 102 94 103 95 102 94 87 93 106 96 90 97 107 98 91 99 107 98 90 97 95 100 94 101 110 102 111 103 110 102 94 101 99 104 114 105 98 106 115 107 98 106 114 105 102 108 103 109 118 110 119 111 118 110 103 109 122 112 106 113 123 114 107 115 123 114 106 113 110 116 111 117 126 118 127 119 126 118 111 117 114 120 130 121 115 122 131 123 115 122 130 121 118 124 119 125 134 126 135 127 134 126 119 125 138 128 122 129 139 130 123 131 139 130 122 129 126 132 127 133 142 134 143 135 142 134 127 133 130 136 146 137 131 138 147 139 131 138 146 137 134 140 135 141 150 142 151 143 150 142 135 141 154 144 138 145 155 146 139 147 155 146 138 145 142 148 143 149 158 150 159 151 158 150 143 149 162 152 147 153 163 154 146 155 163 154 147 153 150 156 151 157 166 158 167 159 166 158 151 157 170 160 154 161 171 162 155 163 171 162 154 161 174 164 175 165 159 166 158 167 159 166 175 165 178 168 162 169 179 170 163 171 179 170 162 169 166 172 167 173 182 174 183 175 182 174 167 173 183 176 170 177 182 178 171 179 182 178 170 177 174 180 186 181 175 182 187 183 175 182 186 181 178 184 179 185 190 186 191 187 190 186 179 185 186 188 190 189 187 190 191 191 187 190 190 189</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID409\">\r\n            <mesh>\r\n                <source id=\"ID410\">\r\n                    <float_array count=\"576\" id=\"ID414\">0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 0.4757403116530008 1.787046344116789 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.9220519445225366 1.603022710678486 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 0.9220519445225366 1.603022710678486 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151476 1.785497189630175 0.4815196415974014 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.7557056430950975 1.361733376410932 -1.357502525122301 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151387 1.309760632593005 -1.305527979088765 0.7557056430950975 1.361733376410932 -1.357502525122301 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.84819144251514 1.603025714371136 -0.9220525452610677 0.84819144251514 1.603025714371136 -0.9220525452610677 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.7557056430950979 1.858045828870668 -0.494764837365608 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.7557056430950979 1.858045828870668 -0.494764837365608 0.7557056430950908 1.922786669424786 0.002991490153192444 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151409 1.849288112382276 0.00299149015319311 0.7557056430950908 1.922786669424786 0.002991490153192444 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.60003328556399 0.9272330890747753 0.7557056430950908 1.663689943254438 0.9639850709194202 0.7557056430950908 1.663689943254438 0.9639850709194202 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.7557056430950904 1.357503426230103 1.361732775672407 0.7557056430950904 1.357503426230103 1.361732775672407 0.8481914425151351 1.305526777611701 1.309757628900341</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID414\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID411\">\r\n                    <float_array count=\"576\" id=\"ID415\">0.6221918684034155 -0.001303781729081092 0.7828637040033659 0.6221941339063147 0.2014863019961419 0.7564904030062049 0.6221918691918711 -0.001174692367902513 0.7828639077191937 0.6221941321218698 0.2013597797845118 0.7565240915121251 -0.6221941321218698 -0.2013597797845118 -0.7565240915121251 -0.6221918684034155 0.001303781729081092 -0.7828637040033659 -0.6221941339063147 -0.2014863019961419 -0.7564904030062049 -0.6221918691918711 0.001174692367902513 -0.7828639077191937 0.6221901218932683 -0.2038805206493446 0.7558519600544753 0.6221901229061849 -0.2037543408673254 0.755885983158643 -0.6221901218932683 0.2038805206493446 -0.7558519600544753 -0.6221901229061849 0.2037543408673254 -0.755885983158643 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 0.622195876340844 0.3903006052975382 0.678629301584322 0.6221958765038165 0.3904133786148501 0.6785644295571243 -0.622195876340844 -0.3903006052975382 -0.678629301584322 -0.6221958765038165 -0.3904133786148501 -0.6785644295571243 0.6221894238249361 -0.3924488889485895 0.677395150885664 0.6221894242877948 -0.392561562997384 0.6773298602316846 -0.6221894242877948 0.392561562997384 -0.6773298602316846 -0.6221894238249361 0.3924488889485895 -0.677395150885664 0.6221894259644839 -0.5544921390400044 0.5526470717925018 0.6221894262295475 -0.5543996744161857 0.5527398293007061 -0.6221894259644839 0.5544921390400044 -0.5526470717925018 -0.6221894262295475 0.5543996744161857 -0.5527398293007061 0.6221935983998548 -0.6785663445167995 0.3904136808557666 0.6221936044128955 -0.6786309659335652 0.3903013332077736 -0.6221935983998548 0.6785663445167995 -0.3904136808557666 -0.6221936044128955 0.6786309659335652 -0.3903013332077736 0.6222050039132737 -0.7564827860628643 0.2014813328719305 0.6222050124535287 -0.7565155769512322 0.2013581493455097 -0.6222050039132737 0.7564827860628643 -0.2014813328719305 -0.6222050124535287 0.7565155769512322 -0.2013581493455097 0.6222055415468412 -0.7828530407950558 -0.001174983547447636 0.6222055340692866 -0.7828528419120427 -0.001304332699868602 -0.6222055415468412 0.7828530407950558 0.001174983547447636 -0.6222055340692866 0.7828528419120427 0.001304332699868602 0.6221917009441136 -0.7558510087740555 -0.203879228494502 0.6221917107911614 -0.7558845909667217 -0.2037546567856542 -0.6221917009441136 0.7558510087740555 0.203879228494502 -0.6221917107911614 0.7558845909667217 0.2037546567856542 0.6221815841653294 -0.6773359418068746 -0.392563495834897 0.6221815865170676 -0.6773995833087608 -0.3924536634205645 -0.6221815841653294 0.6773359418068746 0.392563495834897 -0.6221815865170676 0.6773995833087608 0.3924536634205645 0.6221798007864562 -0.5526539130480859 -0.554496120713179 0.6221798004943125 -0.5527449429825729 -0.5544053786391775 -0.6221798007864562 0.5526539130480859 0.554496120713179 -0.6221798004943125 0.5527449429825729 0.5544053786391775 0.6221838439383094 -0.3903078065454426 -0.678636191557623 0.622183838657477 -0.3904185239302142 -0.6785725068742466 -0.6221838439383094 0.3903078065454426 0.678636191557623 -0.622183838657477 0.3904185239302142 0.6785725068742466 0.6221885184214142 -0.201487412154011 -0.7564947258825042 0.6221885190971537 -0.2013628297434559 -0.7565278960497087 -0.6221885190971537 0.2013628297434559 0.7565278960497087 -0.6221885184214142 0.201487412154011 0.7564947258825042 0.6221871363076309 0.00130441775786443 -0.7828674638197849 0.6221871383491345 0.001175274353274519 -0.7828676667247855 -0.6221871363076309 -0.00130441775786443 0.7828674638197849 -0.6221871383491345 -0.001175274353274519 0.7828676667247855 0.6221898070491942 0.2038792279466273 -0.7558525679098893 0.6221898011836357 0.2037549411636534 -0.7558860861627658 -0.6221898070491942 -0.2038792279466273 0.7558525679098893 -0.6221898011836357 -0.2037549411636534 0.7558860861627658 0.6221939030436636 0.3925585914201147 -0.6773274683028494 0.6221939035143759 0.3924479534520299 -0.6773915782328985 -0.6221939030436636 -0.3925585914201147 0.6773274683028494 -0.6221939035143759 -0.3924479534520299 0.6773915782328985 0.6221903896076413 0.5543987480332496 -0.5527396740410957 0.6221903859354878 0.5544908010891638 -0.5526473334387365 -0.6221903859354878 -0.5544908010891638 0.5526473334387365 -0.6221903896076413 -0.5543987480332496 0.5527396740410957 0.6221910156914612 0.678568769305014 -0.3904135823927066 0.6221910202362403 0.6786331798213453 -0.3903016033568862 -0.6221910202362403 -0.6786331798213453 0.3903016033568862 -0.6221910156914612 -0.678568769305014 0.3904135823927066 0.6221853496726847 0.7564982237091488 -0.2014840643266405 0.6221853387884145 0.7565314500689442 -0.2013593038658174 -0.6221853387884145 -0.7565314500689442 0.2013593038658174 -0.6221853496726847 -0.7564982237091488 0.2014840643266405 0.6221793638195623 0.7828738475245173 0.001173924718077005 0.622179367250408 0.7828736406861537 0.00130295306474845 -0.622179367250408 -0.7828736406861537 -0.00130295306474845 -0.6221793638195623 -0.7828738475245173 -0.001173924718077005 0.622189223507684 0.7558868877678742 0.2037537313805625 0.6221892329183988 0.7558531905054573 0.2038786718691672 -0.6221892329183988 -0.7558531905054573 -0.2038786718691672 -0.622189223507684 -0.7558868877678742 -0.2037537313805625 0.6221951309101329 0.6773259154460521 0.3925593246082557 0.6221951326288879 0.6773907079233851 0.3924475070018612 -0.6221951326288879 -0.6773907079233851 -0.3924475070018612 -0.6221951309101329 -0.6773259154460521 -0.3925593246082557 0.6221949112080535 0.5526439122938858 0.554489133050694 0.6221949093854745 0.55273621248258 0.5543971267468953 -0.6221949093854745 -0.55273621248258 -0.5543971267468953 -0.6221949112080535 -0.5526439122938858 -0.554489133050694</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID415\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID413\">\r\n                    <float_array count=\"288\" id=\"ID416\">-1.399394685447692 3.99758154621831 3.662193290876626 4.107473716139581 -1.250023878680641 4.919473912535772 3.325059649491211 3.216767926096336 -3.346531992851785 3.203384761442292 1.219983462261442 4.924407217212858 -3.68705615598036 4.093286913307604 1.372898142287666 4.002874476983909 -13.05527828904129 -10.30342549923025 -13.66913394578432 -0.02353490189121231 -16.00031333163775 -7.294225363887784 -13.19562582832752 -2.805824911607605 -11.82288121501415 -5.396910799146412 -9.220524701687543 -12.61044414255163 -9.644378024947853 -7.620210540823365 -6.808676644055874 -9.324186320342909 -4.757417384070129 -14.05810026995697 -3.508928026645748 -10.39275039272216 0.02993367461101789 -14.54771542895396 0.02993367461098014 -10.75306030751745 3.56674422924643 -10.38057079947547 4.815205427051927 -14.04592303961512 6.860518126504815 -9.300652969108006 9.272333143517251 -12.58691433567411 9.686716574760796 -7.58692666256699 13.09760632593005 -10.27015343549829 11.8527964920076 -5.35615068982347 13.21113689719592 -2.760366756640539 16.03025714371136 -7.2534800227204 13.66916248086444 0.02353305587179104 16.0003328556399 7.294233634054899 17.85497189630175 3.787954513899558 17.87046043747516 -3.742493405301364 18.49288112382276 0.0235330558717858 -17.85496739076283 -3.787953332447107 -17.87042739685603 3.742497540384916 -18.4927970204285 -0.02353490189122628 -16.03022410309207 7.253473524731939 -13.09757328531092 10.27014516533118 -13.2110843325745 2.760368233456089 -11.85278748092962 5.356150689823473 -9.272324132439298 12.58691788003143 -9.686702307220683 7.586924890388302 -6.860480580346522 9.300657694917794 -4.815191534973343 14.0459159509005 -3.5666972965487 10.38056843657058 -0.02990082172258827 14.54770834023929 -0.02990082172260382 10.75306267042233 3.508941918724347 10.39274802981726 4.757403116530008 14.05809790705208 6.80868640605695 9.324190455426477 9.220519445225365 12.61044532400409 9.644406560028058 7.620199907751378 13.05526777611702 10.30342668068269 11.8228864714763 5.396912571325081 13.19564835602249 2.805823139428946 1.162658492477524 4.932771090314962 4.606236932793788 2.014872649270415 5.339868907720868 2.743315371972167 0.5886060988810937 4.120513442521916 -5.353301219116173 2.726315394172552 -0.611291521408307 4.117988780848812 -1.187571050858884 4.929264283026042 -4.617667416210899 1.999131421715409 -5.164343543501015 0.8290711333373181 -2.99636583736415 4.428807317739661 -6.141480814850693 1.351387648974424 -2.139599332309027 3.788942846944112 -3.20239465897159 3.292826485442597 -6.372640036501849 0.1891437608247533 -5.26773872097306 -0.1397922540547897 -4.225021602925385 3.758142633215543 -3.943277568442837 2.750953874283442 -6.301440743977258 -0.7720073775261384 -5.136984467603375 -0.9288234656837572 -5.060075937571718 3.054007997932716 -4.477181062845431 2.188046769828072 -6.045781765648268 -1.597450497087772 -4.864377425616241 -1.59744239333856 -5.642996750969768 2.338482509684357 -4.471180360231378 -2.195912950284375 -6.049493045559932 1.588934727628423 -5.636963394135375 -2.34637225796323 -4.868088702938565 1.588940824409902 -3.935010939522044 -2.758405912819115 -6.303369004477561 0.7623055482335482 -5.051724644990093 -3.061634706345457 -5.138980702977859 0.9193062601172498 -3.190956910517112 -3.299940318090963 -6.372186186701201 -0.2009621428356244 -4.213235749099931 -3.765702618015408 -5.267538473975297 0.1284836752139618 -2.123166668350666 -3.794862669340203 -6.13638914881693 -1.36597498609087 -2.978922285784557 -4.43555752449242 -5.160082680879592 -0.8427219285103885 -1.16256291986312 -4.932657257001637 -4.606122629645602 -2.014735477800759 -5.339735788379853 -2.743176144763794 -0.5885197661079195 -4.120399914351149 1.399436221034114 -3.997516865119874 -3.662179849014553 -4.107398405247095 1.250064419912603 -4.919404685624561 -3.325063773367089 -3.216692463880472 3.346512787926854 -3.203272247311469 -1.21997784929461 -4.924298380406616 3.68705418545108 -4.093164790378991 -1.372895805521925 -4.00277042444336 4.617747902423629 -1.999222052002686 1.187652019463948 -4.929337193170962 5.353407928182614 -2.726409124851045 0.6113642978876138 -4.118071356985403 6.141565090651655 -1.351438121476672 2.139663964115627 -3.788989196166075 2.996454837881586 -4.42885565877945 5.164438050886696 -0.8291264049415041 6.372654774740514 -0.1890906805768049 3.202401858901243 -3.292778259440419 4.225021696139704 -3.75808538423671 5.267743730206006 0.1398428529100231 6.301322821900057 0.7719723381833509 3.943189382779365 -2.750992348204655 5.059997234893208 -3.054044110362204 5.136887609411004 0.9287968784213682 6.04489261921601 1.597565779340973 4.476345343562111 -2.187929742582891 5.642141342295993 -2.338367823715728 4.863551817964225 1.597558026222105 5.636555464348028 2.346311909831038 4.86769810624192 -1.589009864038318 6.049038901895399 -1.588997567746211 4.470751428024356 2.195852734366363 6.303703735283573 -0.7621972952458326 3.935311944199161 2.758511066035775 5.13929496892643 -0.9192004917269404 5.05203837862957 3.061732231587077 6.372547766122596 0.2010852094342388 3.191244841452139 3.300055229866782 5.267888059821077 -0.1283553981323895 4.213545717048607 3.765827006196082 2.979191962199724 4.435783737510645 5.160386065421639 0.8429754464373749 6.136714648690377 1.366238049433706 2.123424527614135 3.795082979436403</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"144\" source=\"#ID416\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID412\">\r\n                    <input semantic=\"POSITION\" source=\"#ID410\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID411\"/>\r\n                </vertices>\r\n                <triangles count=\"192\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID412\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID413\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 2 5 9 6 2 5 8 4 0 7 5 7 10 4 7 5 11 6 7 5 10 4 12 8 13 9 14 10 13 9 12 8 15 11 15 11 12 8 16 12 16 12 12 8 17 13 16 12 17 13 18 14 18 14 17 13 19 15 19 15 17 13 20 16 19 15 20 16 21 17 21 17 20 16 22 18 21 17 22 18 23 19 23 19 22 18 24 20 24 20 22 18 25 21 24 20 25 21 26 22 26 22 25 21 27 23 26 22 27 23 28 24 28 24 27 23 29 25 28 24 29 25 30 26 30 26 29 25 31 27 31 27 29 25 32 28 31 27 32 28 33 29 33 29 32 28 34 30 34 30 32 28 35 31 35 31 32 28 36 32 35 31 36 32 37 33 38 34 39 35 40 36 39 35 38 34 41 37 41 37 38 34 14 10 41 37 14 10 42 38 42 38 14 10 13 9 42 38 13 9 43 39 42 38 43 39 44 40 42 38 44 40 45 41 45 41 44 40 46 42 45 41 46 42 47 43 45 41 47 43 48 44 48 44 47 43 49 45 48 44 49 45 50 46 50 46 49 45 51 47 50 46 51 47 52 48 50 46 52 48 53 49 53 49 52 48 54 50 53 49 54 50 55 51 55 51 54 50 56 52 55 51 56 52 57 53 57 53 56 52 58 54 57 53 58 54 59 55 57 53 59 55 34 30 34 30 59 55 33 29 60 29 61 55 62 30 62 30 61 55 63 53 61 55 64 54 63 53 64 54 65 52 63 53 63 53 65 52 66 51 65 52 67 50 66 51 66 51 67 50 68 49 67 50 69 48 68 49 68 49 69 48 70 46 69 48 71 47 70 46 71 47 72 45 70 46 70 46 72 45 73 44 72 45 74 43 73 44 73 44 74 43 75 41 74 43 76 42 75 41 76 42 77 40 75 41 75 41 77 40 78 38 77 40 79 39 78 38 79 39 80 9 78 38 80 9 81 10 78 38 78 38 81 10 82 37 81 10 83 34 82 37 82 37 83 34 84 35 85 36 84 35 83 34 86 33 87 32 88 31 87 32 89 28 88 31 88 31 89 28 62 30 62 30 89 28 60 29 60 29 89 28 90 27 89 28 91 25 90 27 90 27 91 25 92 26 92 26 91 25 93 24 91 25 94 23 93 24 93 24 94 23 95 22 94 23 96 21 95 22 95 22 96 21 97 20 96 21 98 18 97 20 97 20 98 18 99 19 99 19 98 18 100 17 98 18 101 16 100 17 100 17 101 16 102 15 101 16 103 13 102 15 102 15 103 13 104 14 104 14 103 13 105 12 103 13 106 8 105 12 105 12 106 8 107 11 107 11 106 8 80 9 81 10 80 9 106 8 1 56 108 57 109 58 108 57 1 56 3 59 4 59 6 56 110 57 111 58 110 57 6 56 112 60 8 61 9 62 8 61 112 60 113 63 114 63 115 60 10 61 11 62 10 61 115 60 116 64 112 65 117 66 112 65 116 64 113 67 114 67 118 64 115 65 119 66 115 65 118 64 116 68 120 69 121 70 120 69 116 68 117 71 119 71 118 68 122 69 123 70 122 69 118 68 121 72 124 73 125 74 124 73 121 72 120 75 122 75 123 72 126 73 127 74 126 73 123 72 125 76 128 77 129 78 128 77 125 76 124 79 126 79 127 76 130 77 131 78 130 77 127 76 132 80 128 81 133 82 128 81 132 80 129 83 131 83 134 80 130 81 135 82 130 81 134 80 136 84 133 85 137 86 133 85 136 84 132 87 134 87 138 84 135 85 139 86 135 85 138 84 140 88 137 89 141 90 137 89 140 88 136 91 138 91 142 88 139 89 143 90 139 89 142 88 144 92 141 93 145 94 141 93 144 92 140 95 142 95 146 92 143 93 147 94 143 93 146 92 148 96 144 97 145 98 144 97 148 96 149 99 150 99 151 96 146 97 147 98 146 97 151 96 152 100 148 101 153 102 148 101 152 100 149 103 150 103 154 100 151 101 155 102 151 101 154 100 156 104 153 105 157 106 153 105 156 104 152 107 154 107 158 104 155 105 159 106 155 105 158 104 160 108 157 109 161 110 157 109 160 108 156 111 158 111 162 108 159 109 163 110 159 109 162 108 164 112 160 113 161 114 160 113 164 112 165 115 166 115 167 112 162 113 163 114 162 113 167 112 168 116 165 117 164 118 165 117 168 116 169 119 170 119 171 116 166 117 167 118 166 117 171 116 172 120 169 121 168 122 169 121 172 120 173 123 174 123 175 120 170 121 171 122 170 121 175 120 176 124 173 125 172 126 173 125 176 124 177 127 178 127 179 124 174 125 175 126 174 125 179 124 180 128 177 129 176 130 177 129 180 128 181 131 182 131 183 128 178 129 179 130 178 129 183 128 180 132 184 133 181 134 184 133 180 132 185 135 186 135 183 132 187 133 182 134 187 133 183 132 185 136 188 137 184 138 188 137 185 136 189 139 190 139 186 136 191 137 187 138 191 137 186 136 109 140 188 141 189 142 188 141 109 140 108 143 110 143 111 140 191 141 190 142 191 141 111 140</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID417\">\r\n            <mesh>\r\n                <source id=\"ID418\">\r\n                    <float_array count=\"90\" id=\"ID422\">-0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID422\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID419\">\r\n                    <float_array count=\"90\" id=\"ID423\">-0.9015424253173537 0.203441541780783 0.381880602323241 -0.913408876044686 0.2046884346174862 0.3518335826731535 -0.914297075399253 0.215116645721763 0.3431991938361602 0.914297075399253 -0.215116645721763 -0.3431991938361602 0.913408876044686 -0.2046884346174862 -0.3518335826731535 0.9015424253173537 -0.203441541780783 -0.381880602323241 -0.9136510681511446 0.2298793945988548 0.3352569009060609 0.9136510681511446 -0.2298793945988548 -0.3352569009060609 -0.9117782845679017 0.2541872650090479 0.3225665731250447 0.9117782845679017 -0.2541872650090479 -0.3225665731250447 -0.9120084709463099 0.1943087758477377 0.3612265889310024 0.9120084709463099 -0.1943087758477377 -0.3612265889310024 -0.9141809063392639 0.1816931123289236 0.3622994388857799 0.9141809063392639 -0.1816931123289236 -0.3622994388857799 -0.914761389475236 0.2626135214064524 0.306994688390269 0.914761389475236 -0.2626135214064524 -0.306994688390269 -0.9126379924856676 0.2390954511057188 0.3315497849980955 0.9126379924856676 -0.2390954511057188 -0.3315497849980955 -0.9141710218943564 0.2509149231036151 0.3183285159902191 0.9141710218943564 -0.2509149231036151 -0.3183285159902191 -0.9164054954864268 0.1852852093678754 0.3547821289633675 0.9164054954864268 -0.1852852093678754 -0.3547821289633675 -0.8960867889457255 0.2095902619358588 0.3912804477335874 0.8960867889457255 -0.2095902619358588 -0.3912804477335874 -0.907217225171867 0.2176423778275239 0.3599843076094281 0.907217225171867 -0.2176423778275239 -0.3599843076094281 -0.8562445711454921 0.1718809545737532 0.4871367075459286 0.8562445711454921 -0.1718809545737532 -0.4871367075459286 -0.8755394211216304 0.1676337555122239 0.4531331438714985 0.8755394211216304 -0.1676337555122239 -0.4531331438714985</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID423\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID421\">\r\n                    <float_array count=\"156\" id=\"ID424\">7.438147269351948 -8.945061733813203 11.48721830684091 -14.18013834552815 11.91024662259696 -14.00044492351452 5.955123311298482 -7.00022246175726 5.743609153420457 -7.090069172764073 3.719073634675974 -4.472530866906602 8.254929826970962 -8.487481463314271 12.88197936170507 -13.45581934143577 13.28861338462427 -13.18460323054936 6.644306692312134 -6.592301615274679 6.440989680852535 -6.727909670717886 4.127464913485481 -4.243740731657136 8.460166676803608 -8.414954825070682 12.39471472312215 -13.45941836602513 12.70973102284357 -13.55074890505256 6.354865511421787 -6.775374452526281 6.197357361561076 -6.729709183012567 4.230083338401804 -4.207477412535341 7.486582909888019 -8.962355583693171 12.38139310001852 -13.74944422881806 12.3713572617144 -13.48543642483197 6.185678630857198 -6.742718212415983 6.19069655000926 -6.874722114409029 3.74329145494401 -4.481177791846585 7.360925690233538 -8.961744858697601 10.65623561054411 -13.82917257110459 11.08396695669552 -14.10459549978603 5.54198347834776 -7.052297749893013 5.328117805272056 -6.914586285552295 3.680462845116769 -4.480872429348801 8.419948186108105 -8.356981608688461 13.46124800907294 -12.7724965200221 13.26768441638996 -12.36521479670056 6.633842208194981 -6.182607398350278 6.730624004536471 -6.386248260011051 4.209974093054052 -4.17849080434423 8.259253079178057 -8.537099214004153 9.876498001695808 -11.98045450806011 11.72036966567479 -13.33278326480139 5.860184832837393 -6.666391632400697 4.938249000847904 -5.990227254030056 4.129626539589029 -4.268549607002076 8.323250129800233 -8.425467281546748 13.15729410283716 -12.4439210471574 11.97966509082454 -10.58711210718703 5.989832545412269 -5.293556053593514 6.578647051418579 -6.221960523578701 4.161625064900116 -4.212733640773374 6.956289496105613 -10.6269661093069 8.850256094164777 -12.34833197236433 7.350777491034236 -8.872150234277518 3.675388745517118 -4.436075117138759 4.425128047082389 -6.174165986182165 3.478144748052807 -5.313483054653452 7.951820622852295 -8.756422366433158 11.57804377148073 -10.94931484447147 10.13372814794584 -9.101011452070644 5.066864073972921 -4.550505726035322 5.789021885740366 -5.474657422235735 3.975910311426147 -4.378211183216579 7.059350620025528 -10.00408034766921 7.554866048665636 -10.57803416141198 7.911156915166181 -8.818168903335222 3.955578457583091 -4.409084451667611 3.777433024332818 -5.28901708070599 3.529675310012764 -5.002040173834605 7.514844530510416 -9.783809952703798 9.68941088965202 -10.15601053307976 9.193989107545409 -9.508454846182369 4.596994553772705 -4.754227423091185 4.84470544482601 -5.078005266539878 3.757422265255208 -4.891904976351899 7.370703582872622 -9.539412442323325 9.051855465856226 -9.271744288876676 8.659595885478712 -9.110994827756787 4.329797942739356 -4.555497413878394 4.525927732928113 -4.635872144438338 3.685351791436311 -4.769706221161663</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"78\" source=\"#ID424\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID420\">\r\n                    <input semantic=\"POSITION\" source=\"#ID418\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID419\"/>\r\n                </vertices>\r\n                <triangles count=\"13\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID420\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID421\"/>\r\n                    <p>0 0 1 1 2 2 0 6 2 7 6 8 0 12 8 13 1 14 0 18 6 19 10 20 0 24 12 25 8 26 0 30 10 31 14 32 0 36 16 37 12 38 0 42 14 43 18 44 20 48 16 49 0 50 0 54 18 55 22 56 24 60 20 61 0 62 0 66 22 67 26 68 0 72 26 73 28 74</p>\r\n                </triangles>\r\n                <triangles count=\"13\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID420\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID421\"/>\r\n                    <p>3 3 4 4 5 5 7 9 3 10 5 11 4 15 9 16 5 17 11 21 7 22 5 23 9 27 13 28 5 29 15 33 11 34 5 35 13 39 17 40 5 41 19 45 15 46 5 47 5 51 17 52 21 53 23 57 19 58 5 59 5 63 21 64 25 65 27 69 23 70 5 71 29 75 27 76 5 77</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID425\">\r\n            <mesh>\r\n                <source id=\"ID426\">\r\n                    <float_array count=\"102\" id=\"ID430\">-0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"34\" source=\"#ID430\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID427\">\r\n                    <float_array count=\"102\" id=\"ID431\">-0.9142974941597579 -0.4048897335756242 0.01115328732918963 -0.9119121534907809 -0.4102455541326406 0.01071492558113266 -0.9134093689969149 -0.4070360955457695 -0.002222960079090378 0.9134093689969149 0.4070360955457695 0.002222960079090378 0.9119121534907809 0.4102455541326406 -0.01071492558113266 0.9142974941597579 0.4048897335756242 -0.01115328732918963 -0.9136502264216238 -0.4055454024125849 0.02786019277984999 0.9136502264216238 0.4055454024125849 -0.02786019277984999 -0.9117790669024211 -0.4069450223696586 0.05526917700770017 0.9117790669024211 0.4069450223696586 -0.05526917700770017 -0.9120015951730859 -0.4098723359248514 -0.01605486360118063 0.9120015951730859 0.4098723359248514 0.01605486360118063 -0.9141814459760682 -0.4043812773638791 -0.02735080164569932 0.9141814459760682 0.4043812773638791 0.02735080164569932 -0.9147624108846287 -0.3977990536394137 0.07046732970766671 0.9147624108846287 0.3977990536394137 -0.07046732970766671 -0.9126372670989114 -0.4070248176210724 0.03773614371876295 0.9126372670989114 0.4070248176210724 -0.03773614371876295 -0.9144871313551589 -0.4004184535448701 0.05812356360846403 0.9144871313551589 0.4004184535448701 -0.05812356360846403 -0.9204794639534302 -0.3894229249437765 -0.03267020000305571 0.9204794639534302 0.3894229249437765 0.03267020000305571 -0.9088875917936953 -0.4158717928127509 0.03120893183313543 0.9088875917936953 0.4158717928127509 -0.03120893183313543 -0.9109205019190907 -0.4117843417158877 -0.0256416672836413 0.9109205019190907 0.4117843417158877 0.0256416672836413 -0.9100402409371641 -0.4142768079748553 0.01419458520680808 0.9100402409371641 0.4142768079748553 -0.01419458520680808 -0.8630221137902762 -0.5042508634437252 0.03039568760896014 0.8630221137902762 0.5042508634437252 -0.03039568760896014 -0.9456945690175788 -0.3202907360795988 0.05545833131500434 0.9456945690175788 0.3202907360795988 -0.05545833131500434 -0.8815078276401288 -0.4717714966614515 0.01938052494116135 0.8815078276401288 0.4717714966614515 -0.01938052494116135</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"34\" source=\"#ID431\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID429\">\r\n                    <float_array count=\"180\" id=\"ID432\">-21.27670996781477 -0.5024825625750654 -13.45535559221688 -0.2253901856971766 -21.24412297407829 -0.125142413745954 -10.62206148703914 -0.06257120687297701 -6.727677796108438 -0.1126950928485883 -10.63835498390739 -0.2512412812875327 -21.24619008053712 -1.035354676238285 -21.18446660970853 -1.451884809972818 -13.42484942034366 -0.7580228247401991 -6.712424710171829 -0.3790114123700996 -10.59223330485427 -0.7259424049864089 -10.62309504026856 -0.5176773381191425 -21.25751011054963 -0.7668235939129079 -13.46874671677735 -0.8672629349756258 -20.98510383527625 -0.6124360400889033 -10.49255191763812 -0.3062180200444516 -6.734373358388677 -0.4336314674878129 -10.62875505527481 -0.3834117969564539 -21.26028882019027 -0.9262762329989754 -20.97141608118763 -1.060835085065468 -13.50058237987369 -0.2330322036721792 -6.750291189936846 -0.1165161018360896 -10.48570804059382 -0.5304175425327341 -10.63014441009513 -0.4631381164994877 -20.9479230613187 0.06512407169546448 -13.43154180529066 -0.1892618490922838 -20.42396479385608 0.2036061404282778 -10.21198239692804 0.1018030702141389 -6.71577090264533 -0.09463092454614187 -10.47396153065935 0.03256203584773224 -20.85307675263828 -1.723023086473669 -20.31535974206487 -1.82375838440512 -13.38256041331185 -0.8934496676200572 -6.691280206655926 -0.4467248338100286 -10.15767987103244 -0.9118791922025602 -10.42653837631914 -0.8615115432368344 -20.47295909683744 -0.3353143390356228 -13.48055350387107 -0.7283738844541267 -18.02003060176221 0.1220255335760297 -9.010015300881104 0.06101276678801487 -6.740276751935537 -0.3641869422270633 -10.23647954841872 -0.1676571695178114 -20.33158400188232 -1.748210110450446 -17.71476096729495 -2.009425410882813 -13.39863503439812 -0.8185917493552359 -6.699317517199058 -0.409295874677618 -8.857380483647473 -1.004712705441407 -10.16579200094116 -0.8741050552252229 -17.86863127354823 0.6202423415971474 -13.32897297677283 -0.2295582768528615 -15.0082564826709 0.9665192416528483 -7.504128241335451 0.4832596208264242 -6.664486488386415 -0.1147791384264307 -8.934315636774112 0.3101211707985737 -17.76961962851651 -1.883509276524634 -15.02644916115231 -1.943272607151886 -13.4529889311389 -0.693808394268258 -6.72649446556945 -0.346904197134129 -7.513224580576157 -0.9716363035759428 -8.884809814258253 -0.9417546382623171 -14.89071638258296 1.073873522804769 -13.21218803543074 -0.1228597901630481 -14.02614066497001 1.087155530817702 -7.013070332485004 0.5435777654088512 -6.60609401771537 -0.06142989508152404 -7.445358191291481 0.5369367614023844 -15.35883216443236 -1.675075450976801 -14.44465413117839 -1.686613223182673 -13.78397498742696 -0.4267008592463119 -6.891987493713481 -0.213350429623156 -7.222327065589196 -0.8433066115913365 -7.679416082216179 -0.8375377254884004 -15.11723179364458 0.6225414511188454 -14.30189428277912 -0.5868967377974099 -14.69836427084818 0.4732769352801142 -7.349182135424091 0.2366384676400571 -7.150947141389562 -0.293448368898705 -7.558615896822288 0.3112707255594227 -13.29140723759785 -2.096895835997954 -12.92434911954095 -1.920022184078838 -12.63674340539486 -0.8350418093976046 -6.318371702697432 -0.4175209046988023 -6.462174559770474 -0.960011092039419 -6.645703618798926 -1.048447917998977 -14.41809006551084 0.5267253828811376 -14.02024496794676 -0.5331294523352237 -14.1800185543271 0.1536412372854066 -7.090009277163551 0.07682061864270329 -7.010122483973378 -0.2665647261676118 -7.209045032755421 0.2633626914405688</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"90\" source=\"#ID432\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID428\">\r\n                    <input semantic=\"POSITION\" source=\"#ID426\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID427\"/>\r\n                </vertices>\r\n                <triangles count=\"15\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID428\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID429\"/>\r\n                    <p>0 0 1 1 2 2 0 6 6 7 1 8 2 12 1 13 8 14 6 18 10 19 1 20 8 24 1 25 12 26 10 30 14 31 1 32 12 36 1 37 16 38 14 42 18 43 1 44 16 48 1 49 20 50 18 54 22 55 1 56 20 60 1 61 24 62 22 66 26 67 1 68 24 72 1 73 28 74 26 78 30 79 1 80 28 84 1 85 32 86</p>\r\n                </triangles>\r\n                <triangles count=\"15\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID428\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID429\"/>\r\n                    <p>3 3 4 4 5 5 4 9 7 10 5 11 9 15 4 16 3 17 4 21 11 22 7 23 13 27 4 28 9 29 4 33 15 34 11 35 17 39 4 40 13 41 4 45 19 46 15 47 21 51 4 52 17 53 4 57 23 58 19 59 25 63 4 64 21 65 4 69 27 70 23 71 29 75 4 76 25 77 4 81 31 82 27 83 33 87 4 88 29 89</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID433\">\r\n            <mesh>\r\n                <source id=\"ID434\">\r\n                    <float_array count=\"108\" id=\"ID438\">-0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"36\" source=\"#ID438\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID435\">\r\n                    <float_array count=\"108\" id=\"ID439\">-0.9105526100805975 0.1847929401693026 -0.369791175582917 -0.9047258764599201 0.221095053799041 -0.3641264418432539 -0.9056830514341907 0.2001496463545517 -0.3737356410740096 0.9056830514341907 -0.2001496463545517 0.3737356410740096 0.9047258764599201 -0.221095053799041 0.3641264418432539 0.9105526100805975 -0.1847929401693026 0.369791175582917 -0.9051369888889698 0.176876174222501 -0.386577094946688 0.9051369888889698 -0.176876174222501 0.386577094946688 -0.904493813809657 0.1911218988267972 -0.3812654725632798 0.904493813809657 -0.1911218988267972 0.3812654725632798 -0.9048570575862879 0.1960303289645085 -0.3778965671481442 0.9048570575862879 -0.1960303289645085 0.3778965671481442 -0.9032828455301246 0.283194694223623 -0.3223055477874834 0.9032828455301246 -0.283194694223623 0.3223055477874834 -0.903932511685058 0.08979039239145804 -0.4181431570083751 0.903932511685058 -0.08979039239145804 0.4181431570083751 -0.9053391715144735 0.2442462075276558 -0.347425926824473 0.9053391715144735 -0.2442462075276558 0.347425926824473 -0.9034477096128234 0.08055611706507812 -0.4210616914405072 0.9034477096128234 -0.08055611706507812 0.4210616914405072 -0.9051167199063447 0.3004841266895872 -0.3007873217966073 0.9051167199063447 -0.3004841266895872 0.3007873217966073 -0.9038086622089847 0.07690250391578957 -0.4209701972913139 0.9038086622089847 -0.07690250391578957 0.4209701972913139 -0.8916242092027337 0.2877059539723708 -0.3496162948325602 0.8916242092027337 -0.2877059539723708 0.3496162948325602 -0.8974554480062785 0.08990498062023532 -0.4318458212180883 0.8974554480062785 -0.08990498062023532 0.4318458212180883 -0.8779052696244868 0.2831733692969536 -0.3861284507603243 0.8779052696244868 -0.2831733692969536 0.3861284507603243 -0.8787757289941988 0.135225059641794 -0.4576760878346039 0.8787757289941988 -0.135225059641794 0.4576760878346039 -0.9571766001854924 0.2406762368571569 -0.1608971878859901 0.9571766001854924 -0.2406762368571569 0.1608971878859901 -0.9663187840262552 -0.06408349179479717 -0.2492414767196787 0.9663187840262552 0.06408349179479717 0.2492414767196787</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"36\" source=\"#ID439\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID437\">\r\n                    <float_array count=\"192\" id=\"ID440\">7.247890561596551 9.017184793018476 11.62241699167023 14.15859673204485 11.23701380701663 14.38472431556303 5.618506903508315 7.192362157781517 5.811208495835114 7.079298366022423 3.623945280798275 4.508592396509238 6.312270124388578 9.4365141150515 10.09506839990886 14.89571032499116 9.610237607549587 15.07004322533177 4.805118803774794 7.535021612665886 5.047534199954431 7.447855162495579 3.156135062194289 4.71825705752575 6.493139303682451 9.389856794481524 10.73290706126174 14.34965055071956 10.70820329278883 14.61305107737053 5.354101646394414 7.306525538685265 5.366453530630868 7.174825275359781 3.246569651841226 4.694928397240762 6.929856889300352 9.19065053817757 10.37099973231822 14.77093216045764 10.07214180933752 14.65062086041686 5.036070904668759 7.32531043020843 5.185499866159109 7.385466080228818 3.464928444650176 4.595325269088785 7.821705813732769 8.685069065969902 12.17351499889409 13.08321338276301 12.31835537755474 13.50282029479082 6.159177688777371 6.751410147395411 6.086757499447046 6.541606691381505 3.910852906866384 4.342534532984951 5.370170743512229 9.751768766821881 8.151522194221171 15.33158858879169 7.77529816670016 15.01302132937492 3.88764908335008 7.506510664687459 4.075761097110585 7.665794294395843 2.685085371756115 4.87588438341094 7.211427886669418 9.036025413102365 10.6191642510143 11.62672481508899 11.45974683281593 13.49634638012442 5.729873416407967 6.748173190062207 5.309582125507149 5.813362407544494 3.605713943334709 4.518012706551183 5.235798096827196 9.792612949944351 7.610509003207477 15.06240894843653 6.043161989998992 13.39339577620473 3.021580994999496 6.696697888102364 3.805254501603738 7.531204474218267 2.617899048413598 4.896306474972175 7.980285588588723 8.469341774523125 10.22937862915607 8.939277822018701 11.46063465620553 10.99959879798778 5.730317328102766 5.499799398993892 5.114689314578033 4.46963891100935 3.990142794294362 4.234670887261562 4.605625825318914 11.54493689437456 5.204683511179758 9.799429035524494 6.007223952446729 13.40087908685941 3.003611976223365 6.700439543429704 2.602341755589879 4.899714517762247 2.302812912659457 5.772468447187281 7.838690672075432 8.780226490960692 9.603947610001866 8.670713562118595 10.08534950006962 9.25731378331802 5.042674750034811 4.62865689165901 4.801973805000933 4.335356781059297 3.919345336037716 4.390113245480346 4.061243782257101 10.93449054480636 5.113560001846171 9.800622461742714 4.507682296432314 11.54467298219238 2.253841148216157 5.772336491096191 2.556780000923085 4.900311230871357 2.030621891128551 5.46724527240318 7.906737286793971 9.178667328377136 9.276434081040812 8.875378320044581 9.671671521288179 9.065981605457438 4.835835760644089 4.532990802728719 4.638217040520406 4.43768916002229 3.953368643396986 4.589333664188568 5.196960240007307 11.11464310537072 5.184839687325803 10.74959644287122 6.191963544606201 9.949194390801255 3.0959817723031 4.974597195400627 2.592419843662901 5.374798221435611 2.598480120003654 5.557321552685361 7.116338653487188 7.625819840706948 7.961446468619004 7.383621000725571 8.493525136113068 7.344301545890064 4.246762568056534 3.672150772945032 3.980723234309502 3.691810500362786 3.558169326743594 3.812909920353474 2.15770661357887 9.356257960679804 2.510419584926491 9.040122526603774 3.248034811266818 8.626432983016079 1.624017405633409 4.313216491508039 1.255209792463246 4.520061263301887 1.078853306789435 4.678128980339902</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID440\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID436\">\r\n                    <input semantic=\"POSITION\" source=\"#ID434\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID435\"/>\r\n                </vertices>\r\n                <triangles count=\"16\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID436\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID437\"/>\r\n                    <p>0 0 1 1 2 2 0 6 2 7 6 8 0 12 8 13 1 14 0 18 6 19 10 20 0 24 12 25 8 26 0 30 10 31 14 32 0 36 16 37 12 38 0 42 14 43 18 44 0 48 20 49 16 50 22 54 0 55 18 56 0 60 24 61 20 62 26 66 0 67 22 68 0 72 28 73 24 74 26 78 30 79 0 80 0 84 32 85 28 86 30 90 34 91 0 92</p>\r\n                </triangles>\r\n                <triangles count=\"16\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID436\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID437\"/>\r\n                    <p>3 3 4 4 5 5 7 9 3 10 5 11 4 15 9 16 5 17 11 21 7 22 5 23 9 27 13 28 5 29 15 33 11 34 5 35 13 39 17 40 5 41 19 45 15 46 5 47 17 51 21 52 5 53 19 57 5 58 23 59 21 63 25 64 5 65 23 69 5 70 27 71 25 75 29 76 5 77 5 81 31 82 27 83 29 87 33 88 5 89 5 93 35 94 31 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID441\">\r\n            <mesh>\r\n                <source id=\"ID442\">\r\n                    <float_array count=\"180\" id=\"ID446\">-0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID446\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID443\">\r\n                    <float_array count=\"180\" id=\"ID447\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1357431839025557 0.7497550114468473 0.6476428111500465 -0.1366815993397975 0.7492072263892851 0.6480792176331454 -0.1339049186988217 0.7508247768900788 0.6467856114325872 0.1339049186988217 -0.7508247768900788 -0.6467856114325872 0.1366815993397975 -0.7492072263892851 -0.6480792176331454 0.1357431839025557 -0.7497550114468473 -0.6476428111500465 -0.1390632020355034 0.9113651292871443 -0.3873951818996452 -0.1334097867881871 0.9103994814047611 -0.3916307100408146 -0.1520463180641854 0.9134113510277387 -0.3775733319195171 0.1520463180641854 -0.9134113510277387 0.3775733319195171 0.1334097867881871 -0.9103994814047611 0.3916307100408146 0.1390632020355034 -0.9113651292871443 0.3873951818996452 -0.1620999136155048 0.09272970269960207 -0.9824076649961 -0.1662539374228294 0.0953143051630216 -0.9814656445962314 -0.1567944187057105 0.08942895644361149 -0.9835740805918715 0.1567944187057105 -0.08942895644361149 0.9835740805918715 0.1662539374228294 -0.0953143051630216 0.9814656445962314 0.1620999136155048 -0.09272970269960207 0.9824076649961 -0.1839627565907119 -0.7773362748139587 -0.6015862532055601 -0.1731947688567061 -0.7836915051681265 -0.5965158814046685 -0.1804827978264776 -0.7794077832683366 -0.5999578877466854 0.1804827978264776 0.7794077832683366 0.5999578877466854 0.1731947688567061 0.7836915051681265 0.5965158814046685 0.1839627565907119 0.7773362748139587 0.6015862532055601 -0.1454069155601703 -0.830330389039357 0.5379667963220666 -0.159394116583764 -0.8338018904044722 0.5285526682899351 -0.1498802405936568 -0.8314662140399025 0.5349764933057699 0.1498802405936568 0.8314662140399025 -0.5349764933057699 0.159394116583764 0.8338018904044722 -0.5285526682899351 0.1454069155601703 0.830330389039357 -0.5379667963220666 -0.1178688308120367 -0.1336192904808511 0.9839983861442035 -0.1169608422628643 -0.1329517455880777 0.9841971320432936 -0.1200646820303652 -0.1352334059142434 0.9835122765140153 0.1200646820303652 0.1352334059142434 -0.9835122765140153 0.1169608422628643 0.1329517455880777 -0.9841971320432936 0.1178688308120367 0.1336192904808511 -0.9839983861442035 -0.1149780011914516 -0.1314937652318465 0.9846265530378361 0.1149780011914516 0.1314937652318465 -0.9846265530378361 -0.1383533907224121 0.748228527281576 0.6488546911579324 0.1383533907224121 -0.748228527281576 -0.6488546911579324 -0.1218391275179259 0.9082828720398434 -0.4002217527380592 0.1218391275179259 -0.9082828720398434 0.4002217527380592 -0.171069294297384 0.09831063701288102 -0.9803419378965262 0.171069294297384 -0.09831063701288102 0.9803419378965262 -0.1903801350748161 -0.7734717985712226 -0.6045632977479636 0.1903801350748161 0.7734717985712226 0.6045632977479636 -0.1369570666554436 -0.8281195642851391 0.5435630130365088 0.1369570666554436 0.8281195642851391 -0.5435630130365088</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID447\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID445\">\r\n                    <float_array count=\"84\" id=\"ID448\">-2.556691561629541 -2.602862605502018 -2.586245081388976 -3.138366854245081 -2.334681128296288 -2.878373475755785 -2.951301684127827 -2.560178796236892 -3.07457980125035 -3.103438394186436 -3.22750530352778 -2.812409736805045 3.575431113631269 -3.789832146312027 3.841902111534349 -4.161649426798395 3.890396129634985 -3.830929293644298 3.566726244310392 -1.436325568056493 3.912498830598775 -1.754485825277173 3.887388388210999 -1.440193123441505 -0.6269127531905233 3.417011356515528 -0.02789107994044388 3.434714660158956 -0.4520798298547238 3.628218854229932 -4.876425679403012 -2.926478984311723 -4.930711116245211 -3.25041739217853 -4.616564961458593 -3.307009919642491 -4.878537780603065 -1.515035859425156 -4.836851909935116 -1.83958610627239 -4.513663973358447 -1.850958396857737 -4.790052294242987 -1.141577079945387 -5.308185798548161 -1.055748647629636 -5.046195202738853 -1.291777653134048 -4.796520925120116 -1.098375304575961 -5.090443691600591 -0.8300736736479857 -5.313828097940997 -1.009515787560939 3.552114816996843 -3.802895821126935 3.495993835408513 -4.170866329638131 3.816637853167348 -4.175572887189126 3.688828852934125 -1.375709284375783 3.713607575865441 -1.738790116719466 4.0296039108369 -1.697189035132493 -0.6101368924396966 3.352691153528167 -0.1460547981744018 3.138679991438502 -0.01104629650652111 3.368886973135145 -4.906343357164033 -2.861941179468713 -4.653434003548693 -3.245359532973397 -4.583199311398975 -2.874060766680606 -4.518465614885066 -1.386244061110217 -4.835281606577187 -1.418604677661858 -4.476160721886599 -1.758342063168315</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"42\" source=\"#ID448\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID444\">\r\n                    <input semantic=\"POSITION\" source=\"#ID442\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID443\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID444\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID445\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 42 24 48 25 43 26 46 26 49 25 47 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 24 33 54 34 25 35 28 35 55 34 29 33 30 36 32 37 56 38 57 38 33 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID449\">\r\n            <mesh>\r\n                <source id=\"ID450\">\r\n                    <float_array count=\"180\" id=\"ID454\">-0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID454\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID451\">\r\n                    <float_array count=\"180\" id=\"ID455\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211700042938787 0.789903523489808 0.6011407935232872 -0.1116879029147231 0.7955488162724242 0.5955064174885576 -0.1556107303666403 0.7682758938062599 0.6209166220926551 0.1556107303666403 -0.7682758938062599 -0.6209166220926551 0.1116879029147231 -0.7955488162724242 -0.5955064174885576 0.1211700042938787 -0.789903523489808 -0.6011407935232872 -0.07906121212958679 0.7719592340661052 -0.6307362885364001 -0.1090844255234062 0.783426245276965 -0.6118365029315144 -0.1244233597649755 0.7888847891485317 -0.60181360652188 0.1244233597649755 -0.7888847891485317 0.60181360652188 0.1090844255234062 -0.783426245276965 0.6118365029315144 0.07906121212958679 -0.7719592340661052 0.6307362885364001 -0.1697468595286489 -0.006068861490700951 -0.9854690114865956 -0.1572201673390395 -0.01588452934778078 -0.9874358210584038 -0.2018053130177652 0.01921618423162401 -0.979237128534952 0.2018053130177652 -0.01921618423162401 0.979237128534952 0.1572201673390395 0.01588452934778078 0.9874358210584038 0.1697468595286489 0.006068861490700951 0.9854690114865956 -0.1343567494298995 -0.8462231442695603 -0.5156109521578944 -0.1086210651978576 -0.8602669808478003 -0.4981387215006411 -0.1301145213637191 -0.8486119901717154 -0.5127649573314177 0.1301145213637191 0.8486119901717154 0.5127649573314177 0.1086210651978576 0.8602669808478003 0.4981387215006411 0.1343567494298995 0.8462231442695603 0.5156109521578944 -0.1133150330807146 -0.8395891544271424 0.5312718278303796 -0.1395139141062699 -0.8459706197122566 0.5146548147587942 -0.1233984985839719 -0.8421416557768033 0.5249478470788555 0.1233984985839719 0.8421416557768033 -0.5249478470788555 0.1395139141062699 0.8459706197122566 -0.5146548147587942 0.1133150330807146 0.8395891544271424 -0.5312718278303796 -0.1260546410823167 0.1544903123830586 0.9799198798072183 -0.1302224134692138 0.1510864416931907 0.9799056128866409 -0.1131147639969138 0.1650111135103676 0.9797838448270062 0.1131147639969138 -0.1650111135103676 -0.9797838448270062 0.1302224134692138 -0.1510864416931907 -0.9799056128866409 0.1260546410823167 -0.1544903123830586 -0.9799198798072183 -0.1420492710714026 0.1413865864036689 0.9797100784278996 0.1420492710714026 -0.1413865864036689 -0.9797100784278996 -0.07903885031514943 0.8139813077432695 0.5754887407981291 0.07903885031514943 -0.8139813077432695 -0.5754887407981291 -0.1506678535050407 0.7975887197008246 -0.5840816998727005 0.1506678535050407 -0.7975887197008246 0.5840816998727005 -0.1263475132736118 -0.03992446121385578 -0.9911822956885165 0.1263475132736118 0.03992446121385578 0.9911822956885165 -0.1536418730879432 -0.8349919501480647 -0.5283773443496233 0.1536418730879432 0.8349919501480647 0.5283773443496233 -0.09890193715248216 -0.8357326912076589 0.5401567139953833 0.09890193715248216 0.8357326912076589 -0.5401567139953833</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID455\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID453\">\r\n                    <float_array count=\"84\" id=\"ID456\">2.761839076668994 -2.686682816693547 2.821044674853094 -3.223738017132682 2.994709736256524 -2.987806394483918 2.418521699517856 -3.217524168002713 2.38695007375611 -2.736350782082216 2.1541310401361 -2.962968129024459 4.546856623073591 -1.394885293464188 4.816630126722004 -1.72556996709557 4.862848037992812 -1.436471730911179 4.674295548158963 -3.13614816966916 4.356729313977708 -3.137265300856367 4.701232558523698 -3.464185464245616 2.790045554862084 2.35347060364349 3.232835120194977 2.574608855939533 2.832124689239227 2.605261509879871 -4.067706033708806 -1.206600595934767 -4.089461011924668 -1.478694176529454 -3.773819348498676 -1.514619174466891 -3.969045730769214 -3.701827264759665 -3.931153506527283 -4.05303378018515 -3.610399023948869 -4.057492832424999 5.001577739208429 -0.581536198764107 5.043212311869807 -0.9815096230854541 5.255177150779224 -0.7332430780051124 4.606137713813613 -1.534142956742709 4.850872795825993 -1.696794596249568 4.9024837554483 -1.297541471095555 4.37016457834615 -1.331467340770913 4.347788412930141 -1.649491048209251 4.665354963484203 -1.648431032989956 4.483803267194991 -3.009115504783515 4.536459444617076 -3.384541965459336 4.849233383170659 -3.32165800873397 1.04044806537555 3.226749937533368 1.452060210471746 3.329977995737437 1.340664256104527 3.565066468173025 -3.862250629639993 -0.9756131540381329 -3.57981940945645 -1.290193905695045 -3.541497141569373 -0.9801162596498589 -3.807240998867626 -3.6140169568218 -4.122520570283084 -3.650081136837909 -3.774866068728113 -4.012438122951902</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"42\" source=\"#ID456\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID452\">\r\n                    <input semantic=\"POSITION\" source=\"#ID450\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID451\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID452\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID453\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 6 5 7 4 8 3 7 4 9 0 8 3 8 3 9 0 10 1 11 2 10 1 9 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 19 30 52 31 20 32 21 32 53 31 22 30 24 33 54 34 25 35 28 35 55 34 29 33 30 36 32 37 56 38 57 38 33 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID457\">\r\n            <mesh>\r\n                <source id=\"ID458\">\r\n                    <float_array count=\"180\" id=\"ID462\">-0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID462\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID459\">\r\n                    <float_array count=\"180\" id=\"ID463\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1281283390755502 0.939946060968536 0.3163613933391273 -0.1346201936039555 0.9376228862790311 0.3205319431816625 -0.1162781854949556 0.9440221721569896 0.3087094460070827 0.1162781854949556 -0.9440221721569896 -0.3087094460070827 0.1346201936039555 -0.9376228862790311 -0.3205319431816625 0.1281283390755502 -0.939946060968536 -0.3163613933391273 -0.1649346685400534 0.70700699320098 -0.687704636220007 -0.138001516637389 0.6955840009988096 -0.7050662940179939 -0.1262440609561076 0.6903675011133202 -0.7123588635511321 0.1262440609561076 -0.6903675011133202 0.7123588635511321 0.138001516637389 -0.6955840009988096 0.7050662940179939 0.1649346685400534 -0.70700699320098 0.687704636220007 -0.1286676828647164 -0.2510584934495154 -0.9593822284434316 -0.1249639091624064 -0.2537058685940289 -0.959175350834142 -0.1349838365174811 -0.2465273866193998 -0.9596893307344993 0.1349838365174811 0.2465273866193998 0.9596893307344993 0.1249639091624064 0.2537058685940289 0.959175350834142 0.1286676828647164 0.2510584934495154 0.9593822284434316 -0.1434766227141468 -0.9644040248531957 -0.2221245947244455 -0.1258995814562067 -0.9694811380793162 -0.2103701934628239 -0.137528258736553 -0.9661754887229821 -0.2181533933721836 0.137528258736553 0.9661754887229821 0.2181533933721836 0.1258995814562067 0.9694811380793162 0.2103701934628239 0.1434766227141468 0.9644040248531957 0.2221245947244455 -0.1200262461105332 -0.6312838785604785 0.7662077818152547 -0.1185484243271057 -0.6305364008267925 0.7670528784392604 -0.1239625549634292 -0.6332652192933885 0.7639426987675421 0.1239625549634292 0.6332652192933885 -0.7639426987675421 0.1185484243271057 0.6305364008267925 -0.7670528784392604 0.1200262461105332 0.6312838785604785 -0.7662077818152547 -0.1074482883687536 0.2164917070285634 0.9703536500237859 -0.1045482762700885 0.2188615063811693 0.9701388039623601 -0.1167974670152386 0.208822637995721 0.9709538905423534 0.1167974670152386 -0.208822637995721 -0.9709538905423534 0.1045482762700885 -0.2188615063811693 -0.9701388039623601 0.1074482883687536 -0.2164917070285634 -0.9703536500237859 -0.09592521523731801 0.2258827503490979 0.9694201030391322 0.09592521523731801 -0.2258827503490979 -0.9694201030391322 -0.1453360876391361 0.933647648128806 0.3273827893663605 0.1453360876391361 -0.933647648128806 -0.3273827893663605 -0.1018954951506087 0.6791262154425009 -0.7269146384320226 0.1018954951506087 -0.6791262154425009 0.7269146384320226 -0.1190712048485406 -0.2579031796181484 -0.9588055058867603 0.1190712048485406 0.2579031796181484 0.9588055058867603 -0.154126908222058 -0.9610952896026681 -0.2292176704913324 0.154126908222058 0.9610952896026681 0.2292176704913324 -0.115015487565636 -0.6287414646692523 0.7690615113406746 0.115015487565636 0.6287414646692523 -0.7690615113406746</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID463\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID461\">\r\n                    <float_array count=\"84\" id=\"ID464\">4.360066392024481 1.345881974146346 4.569212760641203 0.8212451680291688 4.659980598047449 1.15030729017397 4.139088478041265 0.7343252686688629 3.993090241948528 1.28379398993862 3.858881499525051 0.9609417295217747 4.615259486836989 2.070469394477851 4.916285000295099 1.711163197031581 4.932691922661467 2.050594508079105 5.237714155139309 -0.7850202068611257 4.917103607755755 -0.805118177735519 5.301373169335704 -1.097168139238578 -1.662795203246673 4.446608370819519 -1.733459754836062 4.880174696214064 -1.940032066892782 4.570920503433157 -3.840719447785261 1.984768461447111 -3.852408664159016 1.648173959859722 -3.534587250218728 1.624071027479026 -3.179303377019544 -2.513625773284166 -3.557127484714577 -2.219977571431748 -3.499512347452446 -2.523060644294281 5.765266348757652 1.69019121520112 5.857553404921535 1.299387320327408 6.036691952030751 1.558880138713572 5.379672069378961 1.860096852462629 5.68267868581342 1.783065168379234 5.53875939098732 2.16409055123303 4.72200273180184 2.074276447220133 4.697355198809692 1.697146151252073 5.018382483950596 1.712588065047657 4.680145291440302 -1.1477025667911 4.730220832293885 -1.507328388868188 5.042709028738651 -1.456450100848597 -1.849061549422705 4.695147414247404 -2.15044191010415 4.778099156923561 -2.043781256662477 4.349112368737373 -3.363423892743181 2.083472085264609 -3.683758735701449 2.077217382872447 -3.380644054737866 1.71494630994848 -3.246199033616235 -2.51847405722835 -3.308006398490402 -2.172864553124199 -3.620464559827389 -2.222019128872433</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"42\" source=\"#ID464\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID460\">\r\n                    <input semantic=\"POSITION\" source=\"#ID458\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID459\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID460\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID461\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 6 5 7 4 8 3 7 4 9 0 8 3 8 3 9 0 10 1 11 2 10 1 9 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 19 30 52 31 20 32 21 32 53 31 22 30 54 33 25 34 24 35 29 35 28 34 55 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 58 40 37 41 40 41 59 40 41 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID465\">\r\n            <mesh>\r\n                <source id=\"ID466\">\r\n                    <float_array count=\"180\" id=\"ID470\">-0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID470\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID467\">\r\n                    <float_array count=\"180\" id=\"ID471\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1135576304247743 0.5024134134834092 0.8571379273630698 -0.1060549371234037 0.5081935363673253 0.8546880599998006 -0.1410029563660657 0.4807853474390595 0.8654268403417659 0.1410029563660657 -0.4807853474390595 -0.8654268403417659 0.1060549371234037 -0.5081935363673253 -0.8546880599998006 0.1135576304247743 -0.5024134134834092 -0.8571379273630698 -0.1001724357446263 0.9948230072652543 0.01710752269338355 -0.0992313783360488 0.9949317552839722 0.01624610356613912 -0.1067686555805312 0.994014375944963 0.02314896542551481 0.1067686555805312 -0.994014375944963 -0.02314896542551481 0.0992313783360488 -0.9949317552839722 -0.01624610356613912 0.1001724357446263 -0.9948230072652543 -0.01710752269338355 -0.1204055105956813 0.4823208077810515 -0.8676803278855798 -0.1287480142985737 0.4875078415387097 -0.8635739998705626 -0.09891909191161409 0.4687497692647048 -0.8777748384806138 0.09891909191161409 -0.4687497692647048 0.8777748384806138 0.1287480142985737 -0.4875078415387097 0.8635739998705626 0.1204055105956813 -0.4823208077810515 0.8676803278855798 -0.148440743472404 -0.4706111030796328 -0.869764643645355 -0.1437557280381843 -0.4742852702663527 -0.8685549913877557 -0.1646652191806799 -0.4577190077569442 -0.8737154431107287 0.1646652191806799 0.4577190077569442 0.8737154431107287 0.1437557280381843 0.4742852702663527 0.8685549913877557 0.148440743472404 0.4706111030796328 0.869764643645355 -0.09475985240703004 -0.9954707181582593 0.007656347776652718 -0.1039611698752289 -0.994581356731652 -1.567513741408958e-017 -0.09646331398013955 -0.9953169813336709 0.006239849741635174 0.09646331398013955 0.9953169813336709 -0.006239849741635174 0.1039611698752289 0.994581356731652 1.567513741408958e-017 0.09475985240703004 0.9954707181582593 -0.007656347776652718 -0.1004692751834205 -0.4547958960035424 0.8849105139631087 -0.1080393619639094 -0.4596758574940459 0.881490557126703 -0.08050414354804245 -0.4417526345097378 0.8935175951123192 0.08050414354804245 0.4417526345097378 -0.8935175951123192 0.1080393619639094 0.4596758574940459 -0.881490557126703 0.1004692751834205 0.4547958960035424 -0.8849105139631087 -0.1261670868981231 -0.4712139498534301 0.8729486122602924 0.1261670868981231 0.4712139498534301 -0.8729486122602924 -0.08066176544082679 0.5273398224729309 0.8458169963001376 0.08066176544082679 -0.5273398224729309 -0.8458169963001376 -0.09298631847472325 0.9956116753904154 0.01053263513122168 0.09298631847472325 -0.9956116753904154 -0.01053263513122168 -0.1480979007488019 0.499360107511594 -0.8536430722613565 0.1480979007488019 -0.499360107511594 0.8536430722613565 -0.128617271239178 -0.4860099095104769 -0.8644373692735674 0.128617271239178 0.4860099095104769 0.8644373692735674 -0.08787557746910753 -0.9960416408784326 0.01337656610159817 0.08787557746910753 0.9960416408784326 -0.01337656610159817</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID471\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID469\">\r\n                    <float_array count=\"84\" id=\"ID472\">0.3783244763866356 3.599650192905323 0.04688576503043994 3.183664922406017 0.3783244763866733 3.320256183830747 0.027122406016975 3.736241749693183 -0.3004302779671875 3.329571050263488 -0.2925268116698577 3.596545335882117 4.000044726454139 1.10793485062912 4.21481509604171 0.7529116011386672 4.304771798895633 1.03172710660281 4.10347570606989 3.588741106063421 4.420431663145973 3.314529897656492 4.421275731804731 3.581575744406544 4.004262736190113 2.404159357085891 4.391308998608645 2.132013168039903 4.319595171864108 2.43657218669946 -3.898880727774464 2.528130711158829 -4.085679924831708 2.901690795312082 -4.197876129968127 2.620891524746142 -4.41453160017797 3.599650192905323 -4.414531600177956 3.320256183830747 -4.096804965313124 3.297878293086227 -4.021893908100886 0.8163003856027347 -4.40070684784139 1.094589961698369 -4.337741485997127 0.7903962326542223 -4.014861215834311 1.087495689805327 -4.318740986045711 1.009222180880419 -3.915494554730933 0.7530582966662636 4.117569520822965 1.609168978682243 4.06494067866972 1.289160856444053 4.382412656505274 1.275732923953219 4.113749018618937 3.59761042930563 4.11338677832698 3.307928508737795 4.430786423268708 3.323457494963106 4.004673048262786 2.396474751015988 4.306625459163545 2.483105444542788 3.896458540050114 2.733419148329708 -4.010318426120987 2.335558842294007 -3.918374393230021 2.65249310587964 -4.232313562344972 2.697004915989215 -4.110337663997246 3.602853878806665 -4.427552647176091 3.591221143347064 -4.109867458805556 3.289422241500907</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"42\" source=\"#ID472\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID468\">\r\n                    <input semantic=\"POSITION\" source=\"#ID466\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID467\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID468\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID469\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 54 33 25 34 24 35 29 35 28 34 55 33 30 36 56 37 31 38 34 38 57 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID473\">\r\n            <mesh>\r\n                <source id=\"ID474\">\r\n                    <float_array count=\"180\" id=\"ID478\">-0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID478\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID475\">\r\n                    <float_array count=\"180\" id=\"ID479\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1038929795673725 0.5024082937966418 0.8583659797085161 -0.101645225647281 0.504024634304494 0.8576872484287816 -0.1094074020686247 0.4984230333416132 0.8600026163955198 0.1094074020686247 -0.4984230333416132 -0.8600026163955198 0.101645225647281 -0.504024634304494 -0.8576872484287816 0.1038929795673725 -0.5024082937966418 -0.8583659797085161 -0.1067289061750859 0.9771652234428873 -0.1837309627702476 -0.1087690994352792 0.9772346523405453 -0.1821584949237671 -0.1018222525483512 0.9769718064996613 -0.1875055150942714 0.1018222525483512 -0.9769718064996613 0.1875055150942714 0.1087690994352792 -0.9772346523405453 0.1821584949237671 0.1067289061750859 -0.9771652234428873 0.1837309627702476 -0.1384934920200037 0.3534641008466894 -0.9251392771257453 -0.1359909180218172 0.3518821215535716 -0.9261130831310727 -0.1433289414998819 0.3565134591932102 -0.9232307230278977 0.1433289414998819 -0.3565134591932102 0.9232307230278977 0.1359909180218172 -0.3518821215535716 0.9261130831310727 0.1384934920200037 -0.3534641008466894 0.9251392771257453 -0.1222124372058731 -0.6679776222096131 -0.7340776637518621 -0.1173622889185317 -0.6711286400381099 -0.731992104916713 -0.1349675165566499 -0.6595557153030317 -0.7394389953780073 0.1349675165566499 0.6595557153030317 0.7394389953780073 0.1173622889185317 0.6711286400381099 0.731992104916713 0.1222124372058731 0.6679776222096131 0.7340776637518621 -0.1005580890291001 -0.9698016599802893 0.2221999348116262 -0.1176512528335321 -0.9707395559761901 0.209339191671912 -0.1058191295169145 -0.9701374026818134 0.2182561150255999 0.1058191295169145 0.9701374026818134 -0.2182561150255999 0.1176512528335321 0.9707395559761901 -0.209339191671912 0.1005580890291001 0.9698016599802893 -0.2221999348116262 -0.09416004869071552 -0.2485813326810608 0.9640234469519244 -0.09548416722338041 -0.2496875094316789 0.9636072443913355 -0.08585473045780438 -0.2416308289560064 0.9665627283089551 0.08585473045780438 0.2416308289560064 -0.9665627283089551 0.09548416722338041 0.2496875094316789 -0.9636072443913355 0.09416004869071552 0.2485813326810608 -0.9640234469519244 -0.1032242823055442 -0.256142923912011 0.9611116220670267 0.1032242823055442 0.256142923912011 -0.9611116220670267 -0.09649147165714225 0.5077129698964091 0.8561056804486271 0.09649147165714225 -0.5077129698964091 -0.8561056804486271 -0.1131851789208752 0.9773627740502681 -0.1787487711102216 0.1131851789208752 -0.9773627740502681 0.1787487711102216 -0.1315202965520038 0.349049637920842 -0.9278290585351389 0.1315202965520038 -0.349049637920842 0.9278290585351389 -0.1057405989715317 -0.6785643004438799 -0.7268902364815817 0.1057405989715317 0.6785643004438799 0.7268902364815817 -0.08943516453163014 -0.968954655637462 0.2304956109423514 0.08943516453163014 0.968954655637462 -0.2304956109423514</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID479\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID477\">\r\n                    <float_array count=\"84\" id=\"ID480\">-3.832275540913754 1.38313464652574 -4.037474306459234 0.861597233214203 -3.745473328734743 1.066488851161099 -4.163760809506149 1.448324091080901 -4.43604104310682 0.9826730704162471 -4.51102072099726 1.290001193398601 3.171026590337021 -2.606554836662415 3.406816483430799 -2.972177582241644 3.48126989775373 -2.661916721724257 3.668382965150461 2.008969601292834 3.994159350684655 1.684526607744221 3.986386895219333 1.997404066098809 2.195936011940815 4.503074526773451 2.648891197907055 4.264915060407883 2.500220450372008 4.580014812517327 -4.885016970408737 -1.255419445917819 -5.138103206570871 -0.8942667761061519 -5.196643413251278 -1.19861087185011 -4.90668503084679 1.890274882143592 -4.89624123966273 1.566454220558648 -4.577487831674194 1.559607900813885 -5.196980618279403 2.02817604302201 -5.613737620860929 2.214624445873762 -5.502753935253568 1.960405471812763 -5.419548725810715 2.156634437970546 -5.709881774726242 2.054336581082488 -5.28394018282753 1.881208739224467 3.310138597047183 -2.520016467100998 3.240017181379571 -2.859050560085873 3.557132004722975 -2.881032731401244 3.611445236497108 1.98282659750306 3.620759139691174 1.628873567018144 3.938085392640403 1.658921497886375 2.474798949672067 4.128983753580942 2.766926089553627 4.231515357916557 2.320203332516909 4.476851663613845 -4.68279295752764 -0.9992583488947533 -5.001424279837343 -0.9895101278624701 -4.732582976568755 -1.343547542461741 -4.494532730293797 1.981060250884132 -4.811397957767102 1.963200932487673 -4.484848678126927 1.630913117934281</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"42\" source=\"#ID480\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID476\">\r\n                    <input semantic=\"POSITION\" source=\"#ID474\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID475\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID476\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID477\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 54 33 25 34 24 35 29 35 28 34 55 33 56 36 31 37 30 38 35 38 34 37 57 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID481\">\r\n            <mesh>\r\n                <source id=\"ID482\">\r\n                    <float_array count=\"240\" id=\"ID486\">-0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID486\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID483\">\r\n                    <float_array count=\"240\" id=\"ID487\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6659834446608215 0.3807686437826488 0.6414680750821734 -0.6631750828133616 0.3731148991519088 0.6488328610407705 -0.6729842940505703 0.1624422630054802 0.7215986773483681 0.6729842940505703 -0.1624422630054802 -0.7215986773483681 0.6631750828133616 -0.3731148991519088 -0.6488328610407705 0.6659834446608215 -0.3807686437826488 -0.6414680750821734 -0.6145137989325163 0.4655985671337754 0.6368600829102905 -0.6113335516860552 0.4667959055536873 0.6390405864585023 0.6113335516860552 -0.4667959055536873 -0.6390405864585023 0.6145137989325163 -0.4655985671337754 -0.6368600829102905 -0.6629988808447853 -0.7286899444755632 -0.1715909345471451 -0.6112712807697465 -0.7468583700018094 -0.2618205424796805 -0.6144500916695223 -0.7444263356970634 -0.2613054066948456 0.6144500916695223 0.7444263356970634 0.2613054066948456 0.6112712807697465 0.7468583700018094 0.2618205424796805 0.6629988808447853 0.7286899444755632 0.1715909345471451 -0.6729924006868499 -0.7380291832850042 0.04893008519735241 -0.6658161315575506 -0.7238380484211855 -0.180962312693964 0.6658161315575506 0.7238380484211855 0.180962312693964 0.6729924006868499 0.7380291832850042 -0.04893008519735241 -0.6289565476282814 -0.7476459025257273 0.2131648789833918 -0.6701345713609732 -0.7408307531705968 0.04571051764672113 0.6701345713609732 0.7408307531705968 -0.04571051764672113 0.6289565476282814 0.7476459025257273 -0.2131648789833918 -0.6586335051836426 -0.4503276787562835 0.602832387646422 -0.6194244385915946 -0.5603481644919415 0.5498393396493199 -0.6253103361580007 -0.5580893712997171 0.545456906763728 0.6253103361580007 0.5580893712997171 -0.545456906763728 0.6194244385915946 0.5603481644919415 -0.5498393396493199 0.6586335051836426 0.4503276787562835 -0.602832387646422 -0.6252441215267333 -0.3647786176751771 0.6899321333169304 -0.6193457640666231 -0.3683472929438279 0.6933477455892423 0.6193457640666231 0.3683472929438279 -0.6933477455892423 0.6252441215267333 0.3647786176751771 -0.6899321333169304 -0.6701201336408642 0.1663084455640048 0.7233813015438224 -0.6289128458978669 0.007652928515795015 0.7774381422015375 0.6289128458978669 -0.007652928515795015 -0.7774381422015375 0.6701201336408642 -0.1663084455640048 -0.7233813015438224 -0.622078851308744 -0.7522767596266303 0.2170197679476473 0.622078851308744 0.7522767596266303 -0.2170197679476473 -0.6633240955833247 -0.4478538037142369 0.5995232395139108 0.6633240955833247 0.4478538037142369 -0.5995232395139108 -0.6220261755595516 0.005266994658404282 0.7829787325885845 0.6220261755595516 -0.005266994658404282 -0.7829787325885845</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID487\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID485\">\r\n                    <float_array count=\"132\" id=\"ID488\">-4.22725624399334 -5.808877949883205 -4.55134529488531 -5.976060559444166 -4.338167595264546 -6.491496952334127 -4.986782358868105 -5.199964448886369 -5.184941219754366 -5.408638486833185 -5.944453442550639 -4.799730893098601 -6.05632672639457 -5.091645344449993 -6.745726004323971 -4.816560978528544 -6.74510123625174 -5.077039638609257 -7.849986300628801 -5.500677176589291 -7.923492667272267 -5.229891230022745 -10.06436935037758 -6.764499303685906 -10.25054723218782 -6.567089824067745 -4.190221839946828 -7.423786392543641 -4.020489550882155 -6.418076771645296 -4.541160899478318 -7.445155913627095 -5.145381836570095 -9.567177416708539 -5.438809568305453 -9.482737238346916 -5.505193325159312 -7.604034168790181 -5.336475990643389 -7.742358147485223 -4.269678334633769 -7.17228634502103 -5.689347174156868 -9.800731856029373 -5.511200601136377 -9.91390228982233 -3.661673248818458 -8.175413593687873 -6.015019925488002 -7.266096214065682 -6.619985055648084 -9.486958521750623 -6.397152300006442 -9.528426778102082 -5.916495195503265 -6.398410337512396 -6.028516018800286 -7.409110337784746 -5.79271183303645 -7.457467891379393 -6.058299012606727 -5.672970773922897 -5.918451089773818 -6.293838969348061 -5.673245435811727 -6.290409739551873 -6.611867500289026 -4.289528229207675 -6.048613951193245 -5.018529849581411 -5.831542273483992 -4.949930903754136 -7.208078507396563 -3.680070861867471 -7.32929965042728 -3.837447967747981 -6.506198159929273 -4.392862628766582 -6.660239379493177 -5.681909366053281 -6.612063954614971 -5.871073215402708 -5.811153776812445 -5.845724523787836 -6.31321530276293 -9.510799849948398 -4.202315597411297 -7.952433032619871 -4.387052615037615 -7.827415091763079 -5.571264021655384 -7.567302934022142 -4.332306682772676 -7.141703510882534 -4.446445643616539 -6.970949011293415 -6.035007605903449 -7.19101390246045 -6.473568664496056 -9.447001600170312 -5.799661110009105 -7.240732120036159 -5.673040901826159 -6.386349889532563 -5.918247615980235 -6.389731880133182 -5.796727443660892 -7.448951623798941 -5.819314759100421 -5.528107959488318 -6.041028142086967 -5.586805558446977 -5.664342994491257 -6.207430836053704 -6.610934274938454 -4.510184301514173 -5.81103562343381 -5.155932387550443 -6.42137595324032 -4.391696199990871 -6.752987524416816 -5.516952551322585 -5.907464823598496 -5.691800534694194 -5.87571544118804 -5.509489278649395 -6.262434736188439 -4.53591418972004 -7.16680172405666 -3.98054871024504 -6.431552494877005 -4.672209874291356</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID488\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID484\">\r\n                    <input semantic=\"POSITION\" source=\"#ID482\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID483\"/>\r\n                </vertices>\r\n                <triangles count=\"64\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID484\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID485\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 9 9 7 7 10 10 9 9 10 10 11 11 11 11 10 10 12 12 0 0 13 13 14 14 13 13 0 0 2 2 13 13 2 2 15 15 13 13 15 15 16 16 16 16 15 15 17 17 18 17 19 15 20 16 20 16 19 15 21 13 19 15 22 2 21 13 22 2 23 0 21 13 24 14 21 13 23 0 25 12 26 10 27 11 27 11 26 10 28 9 26 10 29 7 28 9 28 9 29 7 30 8 30 8 29 7 31 6 29 7 32 5 31 6 31 6 32 5 33 4 32 5 34 3 33 4 33 4 34 3 35 1 34 3 23 0 35 1 22 2 35 1 23 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 37 23 40 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 46 28 53 29 54 29 51 28 55 27 56 30 52 31 57 32 58 32 55 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 60 38 65 38 68 37 69 36 70 39 38 40 71 41 72 41 39 40 73 39 42 42 37 43 36 44 41 44 40 43 45 42 36 45 38 46 70 47 73 47 39 46 41 45 46 48 48 49 53 50 54 50 49 49 51 48 57 51 52 52 53 53 54 53 55 52 58 51 74 54 56 55 57 56 58 56 59 55 75 54 60 57 62 58 76 59 77 59 63 58 65 57 70 60 71 61 78 62 79 62 72 61 73 60 76 63 66 64 60 65 65 65 69 64 77 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID489\">\r\n            <mesh>\r\n                <source id=\"ID490\">\r\n                    <float_array count=\"300\" id=\"ID494\">-0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID494\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID491\">\r\n                    <float_array count=\"300\" id=\"ID495\">-0.1088396993734213 0.9391143652329044 0.3259112284863811 -0.1164463359679276 0.9328196483828717 0.3410099037132209 -0.115277788968267 0.9330479626690824 0.3407822335886396 0.115277788968267 -0.9330479626690824 -0.3407822335886396 0.1164463359679276 -0.9328196483828717 -0.3410099037132209 0.1088396993734213 -0.9391143652329044 -0.3259112284863811 -0.110822325248955 0.938063640003709 0.3282605969796052 0.110822325248955 -0.938063640003709 -0.3282605969796052 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1169850955608708 0.9419046119998733 0.3148494708745472 0.1169850955608708 -0.9419046119998733 -0.3148494708745472 -0.5580107354442373 0.8289599112591531 0.03807209810606934 -0.4971810650748229 0.8663223338632058 0.04792287951357918 -0.5145250095588039 0.8558675183312584 0.05248624204499802 0.5145250095588039 -0.8558675183312584 -0.05248624204499802 0.4971810650748229 -0.8663223338632058 -0.04792287951357918 0.5580107354442373 -0.8289599112591531 -0.03807209810606934 -0.545158170653844 0.8382267271768401 0.01336124304687095 -0.5582784877518608 0.8289230506726751 0.03480957019271046 0.5582784877518608 -0.8289230506726751 -0.03480957019271046 0.545158170653844 -0.8382267271768401 -0.01336124304687095 -0.1318695905464307 0.9596171302456248 0.2484861654665474 -0.1321549003024238 0.9557169747171905 0.2629451398361978 -0.1365860819270675 0.9570595346721975 0.2556976521535723 0.1365860819270675 -0.9570595346721975 -0.2556976521535723 0.1321549003024238 -0.9557169747171905 -0.2629451398361978 0.1318695905464307 -0.9596171302456248 -0.2484861654665474 -0.1289657532660433 0.9574337946917685 0.2582409016144471 -0.1269044865420529 0.9532261396277257 0.2743267723462684 0.1269044865420529 -0.9532261396277257 -0.2743267723462684 0.1289657532660433 -0.9574337946917685 -0.2582409016144471 -0.1240825368586034 0.9470375050500011 0.2961815120418608 -0.1256954876265769 0.946399129432289 0.2975387910846624 -0.1260690186249341 0.9534847853620122 0.2738126487693791 0.1260690186249341 -0.9534847853620122 -0.2738126487693791 0.1240825368586034 -0.9470375050500011 -0.2961815120418608 0.1256954876265769 -0.946399129432289 -0.2975387910846624 -0.1211441855015404 0.9401500394776983 0.3184995911916539 0.1211441855015404 -0.9401500394776983 -0.3184995911916539 -0.5536072311495947 0.7950907964196508 0.2476886333032765 -0.6328306015520273 0.7446519113729666 0.2121767202779013 -0.6307694948426644 0.7463033893518946 0.2125114006772442 0.6307694948426644 -0.7463033893518946 -0.2125114006772442 0.6328306015520273 -0.7446519113729666 -0.2121767202779013 0.5536072311495947 -0.7950907964196508 -0.2476886333032765 -0.5039674104246305 0.8086833501771441 0.3033942787465886 -0.5497408771862887 0.7964870254649378 0.2517804325527812 0.5497408771862887 -0.7964870254649378 -0.2517804325527812 0.5039674104246305 -0.8086833501771441 -0.3033942787465886 -0.4609956099973669 0.7886395059681967 0.4068547372089872 -0.49850465150458 0.8115072862067282 0.3048754448322932 0.49850465150458 -0.8115072862067282 -0.3048754448322932 0.4609956099973669 -0.7886395059681967 -0.4068547372089872 -0.4569339343695998 0.6598239237892639 0.5965264195464085 -0.4573880925719646 0.794515332784318 0.399426487283961 0.4573880925719646 -0.794515332784318 -0.399426487283961 0.4569339343695998 -0.6598239237892639 -0.5965264195464085 -0.4287005991166544 0.541309811422194 0.7233252963743838 -0.4542025713545716 0.645235326881341 0.6143056219173191 0.4542025713545716 -0.645235326881341 -0.6143056219173191 0.4287005991166544 -0.541309811422194 -0.7233252963743838 -0.3063228392035632 0.9519258992836576 -0.001844032339199885 -0.3523470247597167 0.9358104485918809 0.01050611484984737 0.3523470247597167 -0.9358104485918809 -0.01050611484984737 0.3063228392035632 -0.9519258992836576 0.001844032339199885 -0.5412614551618135 0.8407681758003589 0.01203792828742119 0.5412614551618135 -0.8407681758003589 -0.01203792828742119 -0.4272410976619026 0.5422294182526325 0.7235000362474522 0.4272410976619026 -0.5422294182526325 -0.7235000362474522</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID495\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID493\">\r\n                    <float_array count=\"196\" id=\"ID496\">3.76825062863832 -7.313630254900839 3.596381102692845 -10.48973263072317 4.591982473100826 -10.49532155130045 3.796584343130128 -7.304870234576655 4.631787065582489 -10.48471036339275 4.788649302747732 -7.361376930524428 -1.233424149184261 -2.753147786843712 -0.7088761597558091 -3.338546544481618 -0.694556993678912 -2.849561690363584 -0.7853905368619629 -4.383741487515724 -1.146439087214903 -5.03998101979383 -1.55270259855911 -5.546970027708173 -1.390357703847656 -3.215229491993068 -1.75673311539269 -4.219410608791835 -1.883282441546899 -6.176047377569198 -2.160556126454998 -5.312462941343926 -2.261771182375565 -7.026766978130183 -2.433741973391066 -5.946419099073036 -3.334680812059787 -9.988933491671299 -2.830459374017382 -6.858879041460048 -4.18747608939894 -9.796708225378035 -0.7842970050049303 -4.827816971326995 3.846359672297336 -6.358789390875086 3.803908500346693 -7.294419494786282 4.796023997542307 -7.350374402013268 4.056342725136757 -3.460756783488558 4.017070421792077 -4.507227523838949 4.189805728167312 -4.506856094946615 3.870196798047121 -2.901029633565524 3.862151086380763 -3.39010326253353 4.041586134627782 -3.375623115899968 3.928024266704107 -3.013988383563838 4.902261330893889 -3.531575789521651 4.924433338735429 -3.053604799231155 3.919683204120139 -3.486961206510021 4.865011689683587 -4.583100420342436 4.914626931451051 -3.539105977826516 4.875488640555209 -4.580879223037842 3.826540600621813 -5.700099691054323 4.822529489921589 -5.718396071753157 3.879494827284836 -4.562583285591289 3.823573876076065 -5.724436591786642 4.783442973528894 -6.411767901669563 4.819555400866464 -5.742979411248102 3.807368354643659 -6.37459105667303 4.751878529572747 -7.369217884205696 4.801955210030906 -6.405668232595182 2.459913955440844 -7.711138893628805 1.765124464725816 -10.7423214537102 1.957060357039899 -10.75365200785607 3.149980037999058 -6.910862697284486 2.933665600069839 -7.795972115472037 3.112360206094057 -7.803950315529296 3.543814988888633 -6.287816333452746 3.368556206581121 -6.954419143262834 3.538235007196647 -6.973994288736734 3.78465959479941 -5.80854108379769 3.571658995865501 -6.383955407013207 3.730204477851461 -6.425917052375335 3.519029084241668 -5.520774225638371 3.291859972225696 -5.827754909589918 3.450220969145402 -5.87097057055601 4.662182803330457 -4.380360850124628 4.662517777683195 -4.824437088967236 4.81826881172313 -4.865116337961796 4.189859564349691 -4.520942806572722 4.017124258375433 -4.521314350847296 4.169439869693115 -5.006811491088558 4.054308477449268 -3.46818554239393 3.874875918312202 -3.482684764307377 4.004600561683029 -4.529075056857496 3.954605625143068 -2.881286514067027 4.12622640779107 -3.355828234508149 4.13083736103226 -2.887771090306144 3.943337637863319 -2.998836062633428 3.923906485213045 -3.463165909205145 4.918885407229313 -3.514893431760281 3.928797703118019 -3.481218209051338 3.879818224823473 -4.558188850263479 4.875812890540187 -4.576456053667682 3.841555000386308 -5.715504750840945 3.808597935928527 -6.370329666730073 4.803189826014569 -6.40130696790807 2.948827516519374 -7.691092086442025 2.529718595190085 -10.74144726110512 3.127530081582867 -7.698959191979644 3.405436347186381 -6.871638496491231 3.386085399216066 -7.765086638555999 3.575179329102383 -6.890866213050533 3.787685574673548 -6.22844919458952 3.799988017323743 -6.914572938978153 3.947379466551694 -6.267623306827016 3.764036350977447 -5.816332960126295 3.707505967984392 -6.43359348176798 3.926023634899166 -5.850225398106103 3.560052651719282 -5.497587420403937 3.494701207686569 -5.848193276457293 3.706070434976303 -5.556515053892731</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID496\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID492\">\r\n                    <input semantic=\"POSITION\" source=\"#ID490\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID491\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID492\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID493\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 2 4 6 5 7 5 3 4 5 3 8 6 9 7 10 8 9 7 8 6 11 9 11 9 8 6 12 10 12 10 8 6 13 11 13 11 8 6 14 12 13 11 14 12 15 13 13 11 15 13 16 14 16 14 15 13 17 15 16 14 17 15 18 16 18 16 17 15 19 17 18 16 19 17 20 18 20 18 19 17 21 19 20 18 21 19 22 20 12 10 23 21 11 9 24 9 25 21 26 10 27 20 28 19 29 18 28 19 30 17 29 18 29 18 30 17 31 16 30 17 32 15 31 16 31 16 32 15 33 14 32 15 34 13 33 14 33 14 34 13 35 11 34 13 36 12 35 11 36 12 37 6 35 11 35 11 37 6 26 10 26 10 37 6 24 9 24 9 37 6 38 7 39 8 38 7 37 6 40 22 0 23 6 24 7 24 5 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 42 29 49 30 50 30 47 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 59 37 62 38 63 39 62 38 59 37 64 40 65 40 60 37 66 38 67 39 66 38 60 37 62 41 68 42 63 43 67 43 69 42 66 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 70 51 77 52 78 52 75 51 79 50 80 53 76 54 81 55 82 55 79 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 43 62 92 63 93 64 94 64 95 63 46 62 44 65 43 66 93 67 94 67 46 66 45 65 49 68 42 69 44 70 45 70 47 69 50 68 48 71 49 72 96 73 97 73 50 72 51 71 52 74 58 75 53 76 56 76 61 75 57 74 58 77 64 78 59 79 60 79 65 78 61 77 62 80 40 81 68 82 69 82 41 81 66 80 70 83 72 84 77 85 78 85 73 84 75 83 76 86 77 87 81 88 82 88 78 87 79 86 80 89 81 90 85 91 86 91 82 90 83 89 84 92 85 93 89 94 90 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID497\">\r\n            <mesh>\r\n                <source id=\"ID498\">\r\n                    <float_array count=\"300\" id=\"ID502\">-0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID502\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID499\">\r\n                    <float_array count=\"300\" id=\"ID503\">-0.1164097430468417 -0.5916084081534543 -0.7977770760844811 -0.10882822046992 -0.5789017034806163 -0.8081022436156152 -0.1152454256731035 -0.591455387657384 -0.7980595317847402 0.1152454256731035 0.591455387657384 0.7980595317847402 0.10882822046992 0.5789017034806163 0.8081022436156152 0.1164097430468417 0.5916084081534543 0.7977770760844811 -0.1108221458520233 -0.5808630075720961 -0.8064221093342195 0.1108221458520233 0.5808630075720961 0.8064221093342195 -0.1170077107804017 -0.5691015957689537 -0.8138996064080387 0.1170077107804017 0.5691015957689537 0.8138996064080387 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211696670977339 -0.5721039063745667 -0.8111812572331694 0.1211696670977339 0.5721039063745667 0.8111812572331694 -0.1289674607165914 -0.5192099234538959 -0.844860017673528 -0.1321663082555465 -0.5232428882080906 -0.8418722865742495 -0.1268981050915295 -0.533447946261532 -0.8362596244908234 0.1268981050915295 0.533447946261532 0.8362596244908234 0.1321663082555465 0.5232428882080906 0.8418722865742495 0.1289674607165914 0.5192099234538959 0.844860017673528 -0.1318813258933644 -0.5104743797675104 -0.8497194969409517 -0.1366069441971335 -0.5166761365997606 -0.8452125843037756 0.1366069441971335 0.5166761365997606 0.8452125843037756 0.1318813258933644 0.5104743797675104 0.8497194969409517 -0.558031261867371 -0.2716463664879751 -0.78409780152261 -0.5451296895268838 -0.2505730592629967 -0.8000292266960662 -0.5582991414998946 -0.2685090417213844 -0.7849872375487035 0.5582991414998946 0.2685090417213844 0.7849872375487035 0.5451296895268838 0.2505730592629967 0.8000292266960662 0.558031261867371 0.2716463664879751 0.78409780152261 -0.5143888624622276 -0.293110942014941 -0.8059094700063585 -0.497052555982873 -0.2917024651576237 -0.8172199388242178 0.497052555982873 0.2917024651576237 0.8172199388242178 0.5143888624622276 0.293110942014941 0.8059094700063585 -0.3523806686222084 -0.2755513168992308 -0.8943709164191694 -0.306415783897025 -0.2682897565392926 -0.9133071629604461 0.306415783897025 0.2682897565392926 0.9133071629604461 0.3523806686222084 0.2755513168992308 0.8943709164191694 -0.4286828954205195 -0.847176126038426 -0.3138846709293164 -0.4541605104685136 -0.7721228532482589 -0.4444823171091813 -0.456893286178551 -0.7592058438957603 -0.4635245534375617 0.456893286178551 0.7592058438957603 0.4635245534375617 0.4541605104685136 0.7721228532482589 0.4444823171091813 0.4286828954205195 0.847176126038426 0.3138846709293164 -0.4574134951468932 -0.6083801890432725 -0.6485726173969845 -0.4610282434667641 -0.6138335702605229 -0.6408286094949022 0.4610282434667641 0.6138335702605229 0.6408286094949022 0.4574134951468932 0.6083801890432725 0.6485726173969845 -0.4985789755177557 -0.522521104138984 -0.69165793633923 -0.5040410792207913 -0.5203001144828611 -0.6893695535248579 0.5040410792207913 0.5203001144828611 0.6893695535248579 0.4985789755177557 0.522521104138984 0.69165793633923 -0.5536165038480039 -0.4630501931675085 -0.6921656487248167 -0.5497531637915774 -0.4673687586348154 -0.6923423303202705 0.5497531637915774 0.4673687586348154 0.6923423303202705 0.5536165038480039 0.4630501931675085 0.6921656487248167 -0.6328486545725545 -0.4146821088617343 -0.6538664458401979 -0.6307873335127643 -0.4154716222280389 -0.6553553776410614 0.6307873335127643 0.4154716222280389 0.6553553776410614 0.6328486545725545 0.4146821088617343 0.6538664458401979 -0.1240913043504173 -0.5526586540230366 -0.8241175646217339 -0.1256979469617381 -0.5537729312787706 -0.823125486613385 0.1256979469617381 0.5537729312787706 0.823125486613385 0.1240913043504173 0.5526586540230366 0.8241175646217339 -0.1260575905833764 -0.5330255257953374 -0.8366560061978389 0.1260575905833764 0.5330255257953374 0.8366560061978389 -0.5412201697451934 -0.2500231718377586 -0.8028506345548783 0.5412201697451934 0.2500231718377586 0.8028506345548783 -0.4272344532522728 -0.8476012840976981 -0.3147106371735229 0.4272344532522728 0.8476012840976981 0.3147106371735229</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID503\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID501\">\r\n                    <float_array count=\"196\" id=\"ID504\">-6.161466385372765 -9.739583828584451 -5.534782427677182 -6.599055031610398 -7.138963213337921 -9.590815887125158 -5.453974869115332 -6.64082692448904 -6.442251176197418 -6.552312786454574 -7.020912501436172 -9.64477766665155 -5.308720537271718 -5.689141638149316 -6.478772582362814 -6.522289149874103 -5.491014958906135 -6.614316476552948 -3.324449483955088 -1.304083515806536 -3.572826706871928 -1.932684592651026 -3.054065519073461 -1.683218989209923 -3.916435254479966 -1.453588938535106 -4.692973909088815 -2.493915854454659 -5.168852690973136 -1.807773613133746 -5.910816590358083 -3.108575940139804 -5.710456022755999 -1.932931811574967 -5.866347671529796 -2.26628703653867 -6.369100491594986 -2.716571791351699 -6.606115120661046 -3.494493541298796 -7.042161934252819 -3.144381333275127 -7.605823633967948 -4.052573869433889 -7.9717957997741 -3.671216674709287 -10.80202970911157 -5.90961685543797 -11.2782606739596 -5.320825261743578 -5.406867405753555 -5.632958163486499 -6.388217779204394 -5.501977139414676 -6.591891121267537 -6.452906138227753 -4.869366170504851 -2.672663225915323 -5.851698291102253 -2.537936179978868 -6.117810543867646 -3.561478629224226 -4.783295469245281 -2.147838056814312 -5.759915324541431 -1.987415610829698 -5.892517064855022 -2.454203569649013 -5.685275317190505 1.018545122632574 -5.145451942425918 1.261211835115473 -5.7562003319981 1.149012728635336 -5.946862418828762 0.7642798521704014 -7.130976261011481 0.2767553873179948 -7.036424047085478 0.1630502095845917 -7.281644872447997 -0.3986048403960985 -7.834279527146465 -0.6456774898488107 -7.689126942260445 -0.7059138880145554 -7.188071436753713 -2.505819076414183 -7.416547296366069 -2.811190375613943 -7.259177835029453 -2.856584011353963 -7.575012072795065 -2.706222549244504 -8.018917079536788 -3.217136703021234 -7.861456431581737 -3.261559665315641 -8.102290839309255 -2.644916224219954 -8.698178247785402 -3.146031785827807 -8.557885289507643 -3.223633364054006 -9.379701635931678 -3.470919080308647 -8.684971497927776 -2.754199168926557 -9.506351967249945 -3.371429820198309 -12.25623907044876 -4.989462679559276 -9.490624175621949 -2.809199905568493 -12.37770881846667 -4.872005277182687 -5.318589154545419 -4.950828734137319 -6.296049610050064 -4.799287875721132 -6.444857026542284 -5.458380516152987 -5.392057858255205 -4.876556620212218 -6.08813702729078 -3.598391158750079 -6.367006455932359 -4.715312852682593 -5.113185334491933 -3.759627421801614 -5.281056882911339 -4.974112230283341 -6.403242112042205 -5.487229736398297 -5.422269957287876 -5.619952481288294 -4.853940277352765 -2.690709885832792 -6.096300623064521 -3.58478531167352 -5.121764907583199 -3.747570384158296 -4.892686598708286 -2.620119059241625 -4.767264819600784 -2.166119404674233 -5.873559466293838 -2.478965772395742 -5.839645049230055 0.7939477636360648 -5.917332136334101 0.9220098715437491 -7.042920849049135 0.3363783258394972 -5.177910156173502 1.294964790723312 -5.271800528567625 1.412461230707683 -5.787526407421514 1.179018042887779 -7.052366363064595 0.117928942085436 -7.147894061445859 0.2311284178204125 -7.650128474823353 -0.0521237149128579 -7.330237832350131 -2.497391177424061 -7.397103799309265 -2.828987567036165 -7.169448987281526 -2.523237030315316 -7.737670076202681 -2.636262514374005 -8.030026041788469 -3.199266105371076 -7.584247127016653 -2.689362640162711 -8.015596352434937 -2.86584519018703 -8.170034062009835 -2.815279621232072 -8.584674860058595 -3.385887706682498 -8.626894580693087 -2.948706082022819 -8.7639835389675 -2.867638261066807 -9.418099806598537 -3.589866553505813 -9.444421399327453 -3.12265942849865 -9.566235995890917 -3.01950100195389 -12.16085591726943 -5.324233997524462</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID504\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID500\">\r\n                    <input semantic=\"POSITION\" source=\"#ID498\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID499\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID500\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID501\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 6 7 1 8 4 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 14 13 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 16 15 18 17 19 18 16 15 19 18 20 19 20 19 19 18 21 20 20 19 21 20 22 21 22 21 21 20 23 22 22 21 23 22 24 23 24 23 23 22 25 24 26 24 27 22 28 23 28 23 27 22 29 21 27 22 30 20 29 21 29 21 30 20 31 19 30 20 32 18 31 19 31 19 32 18 33 15 32 18 34 17 33 15 34 17 35 16 33 15 35 16 36 14 33 15 33 15 36 14 37 13 36 14 38 12 37 13 37 13 38 12 39 10 38 12 40 9 39 10 41 11 39 10 40 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 54 37 60 38 61 39 62 39 63 38 59 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 75 49 78 50 79 51 80 51 81 50 76 49 82 52 79 53 83 54 84 54 80 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 90 61 46 62 91 63 46 62 90 61 94 64 95 64 93 61 47 62 92 63 47 62 93 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 44 71 50 72 45 73 48 73 53 72 49 71 54 74 56 75 60 76 63 76 57 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 61 80 60 81 64 82 67 82 63 81 62 80 98 83 69 84 68 85 73 85 72 84 99 83 69 86 74 87 70 88 71 88 77 87 72 86 75 89 74 90 78 91 81 91 77 90 76 89 79 92 78 93 83 94 84 94 81 93 80 92 82 95 83 96 87 97 88 97 84 96 85 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID505\">\r\n            <mesh>\r\n                <source id=\"ID506\">\r\n                    <float_array count=\"240\" id=\"ID510\">-0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID510\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID507\">\r\n                    <float_array count=\"240\" id=\"ID511\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6729884580762607 0.7375072073159738 0.05629968430755275 -0.6658436797422771 0.7251760043223742 -0.1754193743641215 -0.6630305151580132 0.7299655905773456 -0.1659541278256337 0.6630305151580132 -0.7299655905773456 0.1659541278256337 0.6658436797422771 -0.7251760043223742 0.1754193743641215 0.6729884580762607 -0.7375072073159738 -0.05629968430755275 -0.6144800241452068 0.7457833801420833 -0.257335286795953 -0.6113107337789397 0.7482110703485606 -0.2578359574894776 0.6113107337789397 -0.7482110703485606 0.2578359574894776 0.6144800241452068 -0.7457833801420833 0.257335286795953 -0.6144572319660114 -0.469525830568726 0.6340250819276909 -0.6630446878927789 -0.3784166032630609 0.645889012317143 -0.6112832145498026 -0.4707347038740193 0.6361931076161541 0.6112832145498026 0.4707347038740193 -0.6361931076161541 0.6630446878927789 0.3784166032630609 -0.645889012317143 0.6144572319660114 0.469525830568726 -0.6340250819276909 -0.6658562154288208 -0.3859655043248172 0.6384873764187492 -0.6729915547513984 -0.1696569719422396 0.71992977373122 0.6729915547513984 0.1696569719422396 -0.71992977373122 0.6658562154288208 0.3859655043248172 -0.6384873764187492 -0.6701267456751917 -0.1735325142790268 0.72167625097323 -0.6289091309737778 -0.01542730369521124 0.7773257382066434 0.6289091309737778 0.01542730369521124 -0.7773257382066434 0.6701267456751917 0.1735325142790268 -0.72167625097323 -0.6252368259778801 0.3578597082949858 0.6935526949123143 -0.6586051859823896 0.4442906086005776 0.6073261595769036 -0.6193427745518753 0.3613913988662995 0.6970012800819265 0.6193427745518753 -0.3613913988662995 -0.6970012800819265 0.6586051859823896 -0.4442906086005776 -0.6073261595769036 0.6252368259778801 -0.3578597082949858 -0.6935526949123143 -0.6253034624160696 0.5526101220855131 0.5510150931318574 -0.6194223535536992 0.5548231614226238 0.5554162470319005 0.6194223535536992 -0.5548231614226238 -0.5554162470319005 0.6253034624160696 -0.5526101220855131 -0.5510150931318574 -0.628982358135911 0.7454560785608687 0.2206273511839385 -0.67013650131323 0.7403345362785804 0.05312103162442063 0.67013650131323 -0.7403345362785804 -0.05312103162442063 0.628982358135911 -0.7454560785608687 -0.2206273511839385 -0.6220189146899646 -0.01309573882381509 0.7828926946859175 0.6220189146899646 0.01309573882381509 -0.7828926946859175 -0.6632923012885572 0.441848588696277 0.6039976388351515 0.6632923012885572 -0.441848588696277 -0.6039976388351515 -0.6221076599331773 0.7500464868654583 0.2245268959239637 0.6221076599331773 -0.7500464868654583 -0.2245268959239637</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID511\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID509\">\r\n                    <float_array count=\"132\" id=\"ID512\">7.795591679423524 -5.323227745288749 9.929583898964312 -6.871125386769826 10.11824808736943 -6.675185043266 7.718649839306408 -5.593427100716775 6.623133292318746 -4.900658240318208 6.619185689247543 -5.161112975986945 5.822099524111708 -4.877519494199655 5.930260994757609 -5.170298768740171 5.05490498188978 -5.48043594259001 4.859378482153733 -5.270196480154701 4.414072035031004 -6.042836842313367 4.092155780313024 -5.873100523294384 4.194417247662015 -6.556555994075766 4.385226823545771 -7.511775063321221 4.975203874607814 -9.634970930132152 5.269730206931626 -9.552833993310438 4.034559973661107 -7.487651576590498 3.87764031107622 -6.480658898337778 5.822179128624093 -6.457005021127549 5.689472813873823 -7.515378658893742 5.925653000357565 -7.46826496498529 5.916109472248006 -7.310813277664289 6.288098685998339 -9.573629295500691 6.511257923774214 -9.533277001644295 5.546090981562797 -9.850025254076742 3.526461403957602 -8.209666149461569 5.366702388850225 -9.961973302364093 5.329292279186206 -7.665955408862323 4.100724298898611 -7.222142695431995 5.158417602448649 -7.80262028114791 6.489769452481003 -5.779453223070861 5.637638242695263 -5.933192605821058 6.437987728279937 -5.968028370914714 7.098762251858164 -3.787052743699775 6.386063448597975 -4.493172816030821 7.217578390551652 -3.945559541713974 5.729712477188441 -5.034440475430622 5.946010344400233 -5.104542875128599 6.517499784057383 -4.37952604699279 5.967022270105487 -5.74343876346228 5.576548159483153 -6.35877397416587 5.82171707979354 -6.36355039909147 5.927577537499342 -7.239119522850759 5.691826745769582 -7.287545814181028 6.355060939941811 -9.495860674564316 5.577040359522241 -6.444146991745441 5.691612126075604 -7.507383079612655 5.822211657743393 -6.448847275944787 4.064972331357362 -7.995403824306254 6.168526379568627 -9.569136817559707 4.251113033307034 -7.871692637448878 4.281639333974275 -7.022897481686874 4.164842777836451 -7.1925382682496 5.397026101555857 -7.63010449077775 5.701364756438144 -5.601711277529612 5.729387676422575 -5.784399080729091 6.578380074322135 -5.620264617403369 7.051363306255356 -4.085489202208199 6.13862237800544 -4.632304826311748 6.30564364571233 -4.770181180200111 5.734267381965052 -5.596749296751172 5.573646081394728 -6.275246632246977 5.955497993585017 -5.656571920937295 5.704254899531289 -5.239542710890913 6.511544613865906 -4.599494280401795 6.323365246363862 -4.479665053217046</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID512\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID508\">\r\n                    <input semantic=\"POSITION\" source=\"#ID506\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID507\"/>\r\n                </vertices>\r\n                <triangles count=\"64\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID508\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID509\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 7 7 6 6 8 8 8 8 6 6 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 15 15 14 14 13 13 16 16 16 16 13 13 12 12 16 16 12 12 11 11 16 16 11 11 17 17 18 17 19 11 20 16 19 11 21 12 20 16 21 12 22 13 20 16 20 16 22 13 23 14 24 15 23 14 22 13 21 12 19 11 25 10 19 11 26 9 25 10 25 10 26 9 27 8 26 9 28 6 27 8 27 8 28 6 29 7 29 7 28 6 30 5 28 6 31 4 30 5 30 5 31 4 32 3 31 4 33 0 32 3 32 3 33 0 34 1 35 2 34 1 33 0 36 18 37 19 38 20 39 20 40 19 41 18 38 21 42 22 43 23 44 23 45 22 39 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 47 29 50 29 54 28 55 27 56 30 57 31 53 32 54 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 70 39 71 40 36 41 41 41 72 40 73 39 38 42 37 43 42 44 45 44 40 43 39 42 71 45 37 46 36 47 41 47 40 46 72 45 47 48 46 49 52 50 55 50 51 49 50 48 56 51 53 52 52 53 55 53 54 52 59 51 74 54 57 55 56 56 59 56 58 55 75 54 60 57 76 58 61 59 64 59 77 58 65 57 78 60 71 61 70 62 73 62 72 61 79 60 66 63 61 64 76 65 77 65 64 64 69 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID513\">\r\n            <mesh>\r\n                <source id=\"ID514\">\r\n                    <float_array count=\"300\" id=\"ID518\">-0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID518\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID515\">\r\n                    <float_array count=\"300\" id=\"ID519\">-0.1164164008736633 0.5995543045607452 -0.7918218596946564 -0.1152524072062661 0.5994041612018266 -0.792105759458354 -0.108837402926013 0.5869636604169701 -0.8022643461317676 0.108837402926013 -0.5869636604169701 0.8022643461317676 0.1152524072062661 -0.5994041612018266 0.792105759458354 0.1164164008736633 -0.5995543045607452 0.7918218596946564 -0.1108295971226472 0.5889064001271712 -0.8005660824010021 0.1108295971226472 -0.5889064001271712 0.8005660824010021 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.117010717209138 0.5772025840593379 -0.8081742813362881 0.117010717209138 -0.5772025840593379 0.8081742813362881 -0.55805116068878 0.2794674820048999 -0.7813301661626451 -0.4972069966061667 0.2998409485598932 -0.8141748019268212 -0.5145432086037881 0.301138149130455 -0.8028456275137845 0.5145432086037881 -0.301138149130455 0.8028456275137845 0.4972069966061667 -0.2998409485598932 0.8141748019268212 0.55805116068878 -0.2794674820048999 0.7813301661626451 -0.5583170886261052 0.2763353231468237 -0.7822536786295161 -0.5451735392333464 0.2585521366823797 -0.7974563340627268 0.5451735392333464 -0.2585521366823797 0.7974563340627268 0.5583170886261052 -0.2763353231468237 0.7822536786295161 -0.1318899009461685 0.5189517552672971 -0.8445674216623568 -0.1321751191906274 0.5316379949383054 -0.8365947526759427 -0.1366137379887484 0.525105648062938 -0.8400004434315159 0.1366137379887484 -0.525105648062938 0.8400004434315159 0.1321751191906274 -0.5316379949383054 0.8365947526759427 0.1318899009461685 -0.5189517552672971 0.8445674216623568 -0.1289772731066859 0.5276362262001799 -0.8396218647839013 -0.1269133562014147 0.541783060402261 -0.8308815291477196 0.1269133562014147 -0.541783060402261 0.8308815291477196 0.1289772731066859 -0.5276362262001799 0.8396218647839013 -0.1260730475475516 0.541364594212308 -0.8312821198699127 -0.1257237932527103 0.5619705390732921 -0.8175467210036521 -0.1241088849423676 0.5608577831136058 -0.8185569814003505 0.1241088849423676 -0.5608577831136058 0.8185569814003505 0.1260730475475516 -0.541364594212308 0.8312821198699127 0.1257237932527103 -0.5619705390732921 0.8175467210036521 -0.1211792230471033 0.5801840317827792 -0.8054204399976321 0.1211792230471033 -0.5801840317827792 0.8054204399976321 -0.6328077900805511 0.4212204572764466 -0.6497134962313701 -0.630745177755128 0.4220252385451681 -0.6511952232391957 -0.5535170558317795 0.4699781182489695 -0.6875604971713225 0.5535170558317795 -0.4699781182489695 0.6875604971713225 0.630745177755128 -0.4220252385451681 0.6511952232391957 0.6328077900805511 -0.4212204572764466 0.6497134962313701 -0.5496579690091841 0.4742995180535889 -0.6876889444209731 -0.5040577082147066 0.5271615428562393 -0.6841246483812488 0.5040577082147066 -0.5271615428562393 0.6841246483812488 0.5496579690091841 -0.4742995180535889 0.6876889444209731 -0.4611603796146424 0.6201725230534618 -0.6345999889089049 -0.4986083373847545 0.5294053531974816 -0.6863815978712283 0.4986083373847545 -0.5294053531974816 0.6863815978712283 0.4611603796146424 -0.6201725230534618 0.6345999889089049 -0.4569158452101462 0.7637801850174524 -0.4559251466749819 -0.4575413346766589 0.6147893824288844 -0.6424094818065907 0.4575413346766589 -0.6147893824288844 0.6424094818065907 0.4569158452101462 -0.7637801850174524 0.4559251466749819 -0.4287765424434085 0.8502341030875822 -0.3053729631076245 -0.4541857773435357 0.7765036889450471 -0.4367577139714671 0.4541857773435357 -0.7765036889450471 0.4367577139714671 0.4287765424434085 -0.8502341030875822 0.3053729631076245 -0.3064595936731795 0.2773796356690582 -0.9105729268772327 -0.3524563901464338 0.2844550069979994 -0.8915491248600456 0.3524563901464338 -0.2844550069979994 0.8915491248600456 0.3064595936731795 -0.2773796356690582 0.9105729268772327 -0.5412696949613353 0.2580312515619297 -0.8002793203212533 0.5412696949613353 -0.2580312515619297 0.8002793203212533 -0.427351177790763 0.8506607779687953 -0.3061816644842928 0.427351177790763 -0.8506607779687953 0.3061816644842928</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID519\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID517\">\r\n                    <float_array count=\"196\" id=\"ID520\">6.113201900217518 -9.742250853991777 7.091288569950677 -9.595896339223589 5.499103420584213 -6.600182416334707 5.420290547408211 -6.640748761512123 6.975901634042057 -9.648330521578423 6.408896219694804 -6.554535211264102 7.876456342147549 -3.761524831997849 10.67805680033176 -6.022078132143546 11.16176846173632 -5.437065414091726 7.505618194240906 -4.139992194044065 6.953548495402975 -3.227415287865078 6.513094513763935 -3.57407440575762 6.285949643299203 -2.794328788599893 5.822719035721721 -3.182704696932027 5.788941760897649 -2.3401120123712 4.612728757974727 -2.558494340414665 5.637283441458915 -2.005547866194009 5.097247661780172 -1.876136291272333 3.849480692439346 -1.51211513898687 3.499790042667428 -1.988486954492802 3.259391378364231 -1.357956861170158 2.984224971584125 -1.734949918247632 5.276829500861391 -5.688413843343613 5.455377910186199 -6.614016405360451 6.443502443529829 -6.524454426903926 5.918364098679632 0.6946835222532575 6.996622144483922 0.08107890823026182 7.093346623752447 0.1936633434774049 5.659837046645889 0.9479949494725006 5.733164416645455 1.077643543196735 5.12457596617492 1.196888661312207 4.758236997495068 -2.149699721033194 5.865618505324296 -2.460175025701383 5.735808099411976 -1.992899477220481 4.843545496099361 -2.673703235409213 6.087171796191482 -3.566690023565987 5.826602908377137 -2.54228182317705 5.082764984602673 -3.760757070883378 6.331641412255999 -4.720481401818463 6.058548585046148 -3.602661679311559 5.35585679491965 -4.878577887491488 5.285915461951562 -4.952279500389528 6.40989096811075 -5.463018791418008 6.264065004454752 -4.803501560120678 5.3725854730318 -5.6341428049648 6.554020323273361 -6.45725466293534 6.354500477194964 -5.5058065265386 12.14541253552307 -5.10293046955647 12.26851450157659 -4.986537430148319 9.41056898809822 -2.898791439095068 9.298610626780286 -3.549173966198144 9.42651991423803 -3.450700016896117 8.613182971989794 -2.826927959732564 8.038933125624038 -2.704561851470576 8.487838424714864 -3.286514222629172 8.629014812798161 -3.209905916204647 7.523789324761757 -2.751687845226335 7.805375665433106 -3.308562304365771 7.96324250441662 -3.265004189452493 7.150832450639896 -2.549082256247872 7.219812768339646 -2.90011231837174 7.377457688057052 -2.855312596780183 7.635697253095525 -0.8035006671235652 7.782229223622522 -0.7453506809080558 7.235310741891112 -0.4904196007434802 7.011895007764506 0.03672512252392931 7.606548193301278 -0.1401008424521096 7.109563867316364 0.1488038753349426 5.810559197299331 0.7254211548792295 7.005536879862811 0.2545755458081305 5.890502313623793 0.8526266988596412 5.158474751740419 1.229593571299443 5.765798087273703 1.106421549715725 5.254634222010645 1.345955951793201 4.742685627602766 -2.167049408315839 4.865427715803005 -2.621495704933041 5.847127653942131 -2.483938036577421 5.090846327701405 -3.748857617575201 6.066241502050971 -3.589285790193484 4.828626099140562 -2.691145961250775 5.249019993973442 -4.974806095254356 5.387368148386617 -5.621069559526315 6.368925063442006 -5.491049143458817 9.362675427690499 -3.207509091704578 12.04798571922787 -5.432569415147625 9.485908542837471 -3.105411685193395 8.55510598041441 -3.016987279469245 9.338158193561835 -3.664297378796833 8.693206550649377 -2.936984635025157 7.953234205976306 -2.919923603102037 8.516550120266997 -3.44382944239968 8.108248304215895 -2.870429459557781 7.686443725701371 -2.683559650169936 7.532549763138777 -2.735810750521659 7.973800953496667 -3.248171677254486 7.293828092787273 -2.540400614243558 7.132876063535401 -2.565649444134168 7.358713154635643 -2.872239896407073</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID520\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID516\">\r\n                    <input semantic=\"POSITION\" source=\"#ID514\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID515\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID516\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID517\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 8 6 9 7 10 8 9 7 8 6 11 9 11 9 8 6 12 10 11 9 12 10 13 11 13 11 12 10 14 12 13 11 14 12 15 13 15 13 14 12 16 14 15 13 16 14 17 15 17 15 16 14 18 16 17 15 18 16 19 17 17 15 19 17 20 18 17 15 20 18 21 19 21 19 20 18 22 20 21 19 22 20 23 21 24 21 25 20 26 19 25 20 27 18 26 19 26 19 27 18 28 15 27 18 29 17 28 15 29 17 30 16 28 15 30 16 31 14 28 15 28 15 31 14 32 13 31 14 33 12 32 13 32 13 33 12 34 11 33 12 35 10 34 11 34 11 35 10 36 9 35 10 37 6 36 9 36 9 37 6 38 7 39 8 38 7 37 6 40 22 2 23 6 24 7 24 3 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 42 28 48 29 49 30 50 30 51 29 47 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 62 37 63 38 59 39 63 38 62 37 64 40 65 40 66 37 67 38 60 39 67 38 66 37 64 41 68 42 63 43 67 43 69 42 65 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 72 50 76 51 77 52 78 52 79 51 73 50 80 53 77 54 81 55 82 55 78 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 92 62 93 63 43 64 46 64 94 63 95 62 43 65 93 66 44 67 45 67 94 66 46 65 42 68 44 69 48 70 51 70 45 69 47 68 49 71 48 72 96 73 97 73 51 72 50 71 52 74 58 75 53 76 56 76 61 75 57 74 62 77 59 78 58 79 61 79 60 78 66 77 64 80 40 81 68 82 69 82 41 81 65 80 72 83 71 84 76 85 79 85 74 84 73 83 77 86 76 87 81 88 82 88 79 87 78 86 80 89 81 90 85 91 86 91 82 90 83 89 89 92 84 93 85 94 86 94 87 93 90 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID521\">\r\n            <mesh>\r\n                <source id=\"ID522\">\r\n                    <float_array count=\"300\" id=\"ID526\">-0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID526\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID523\">\r\n                    <float_array count=\"300\" id=\"ID527\">-0.1088358859381834 -0.9423316096583713 0.3164899482933284 -0.115264363165527 -0.9364085327492276 0.3314410752735454 -0.1164308334372561 -0.9361829241127744 0.3316706101311379 0.1164308334372561 0.9361829241127744 -0.3316706101311379 0.115264363165527 0.9364085327492276 -0.3314410752735454 0.1088358859381834 0.9423316096583713 -0.3164899482933284 -0.1108265020245895 -0.9413013605670106 0.3188561353395736 0.1108265020245895 0.9413013605670106 -0.3188561353395736 -0.1170061438965575 -0.9450112108173462 0.3053905265721109 0.1170061438965575 0.9450112108173462 -0.3053905265721109 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211767870245431 -0.9432883615922447 0.3090683632645491 0.1211767870245431 0.9432883615922447 -0.3090683632645491 -0.1289832713335865 -0.9599617263082118 0.2486700620087674 -0.1321753098522585 -0.9582917932523017 0.2533900677823568 -0.1269172199874076 -0.9559205324775958 0.2647790680141043 0.1269172199874076 0.9559205324775958 -0.2647790680141043 0.1321753098522585 0.9582917932523017 -0.2533900677823568 0.1289832713335865 0.9599617263082118 -0.2486700620087674 -0.1318905450426279 -0.9620432799504404 0.238909212109029 -0.1366015841177712 -0.9595604633487854 0.2461376127177232 0.1366015841177712 0.9595604633487854 -0.2461376127177232 0.1318905450426279 0.9620432799504404 -0.238909212109029 -0.5450709898174925 -0.8383750888433897 0.004982616402794485 -0.5582559972072337 -0.8292442885329374 0.02653585343755587 -0.5579936818601086 -0.8293100066025989 0.02979872401626703 0.5579936818601086 0.8293100066025989 -0.02979872401626703 0.5582559972072337 0.8292442885329374 -0.02653585343755587 0.5450709898174925 0.8383750888433897 -0.004982616402794485 -0.5144490778171239 -0.8563961092508181 0.04390729316607478 -0.4971056987735406 -0.8668022854730181 0.03923929338842273 0.4971056987735406 0.8668022854730181 -0.03923929338842273 0.5144490778171239 0.8563961092508181 -0.04390729316607478 -0.352304512060553 -0.9358847587336349 0.001117654625490362 -0.3062977673774491 -0.9518676260712704 -0.01138859679831438 0.3062977673774491 0.9518676260712704 0.01138859679831438 0.352304512060553 0.9358847587336349 -0.001117654625490362 -0.4286372452159311 -0.5485409186912338 0.7178948199667378 -0.4542014913136462 -0.6513390540662555 0.6078309320333537 -0.4569466615946189 -0.6657511171996592 0.5898942264549963 0.4569466615946189 0.6657511171996592 -0.5898942264549963 0.4542014913136462 0.6513390540662555 -0.6078309320333537 0.4286372452159311 0.5485409186912338 -0.7178948199667378 -0.4574340725793243 -0.7984546202919721 0.3914387417947999 -0.4610431429742561 -0.7926530874053718 0.3989239317754095 0.4610431429742561 0.7926530874053718 -0.3989239317754095 0.4574340725793243 0.7984546202919721 -0.3914387417947999 -0.4985522816593612 -0.8144906939653281 0.2967330987539529 -0.504011286993974 -0.8116541095840285 0.2952799163133784 0.504011286993974 0.8116541095840285 -0.2952799163133784 0.4985522816593612 0.8144906939653281 -0.2967330987539529 -0.5497181193307189 -0.7989775362978114 0.2438132190242709 -0.5535803758470984 -0.7975432953446792 0.2397362290679806 0.5535803758470984 0.7975432953446792 -0.2397362290679806 0.5497181193307189 0.7989775362978114 -0.2438132190242709 -0.6307130915381779 -0.7484351601869926 0.2050507428863028 -0.6327733709944583 -0.7467813291086449 0.2047327708380742 0.6327733709944583 0.7467813291086449 -0.2047327708380742 0.6307130915381779 0.7484351601869926 -0.2050507428863028 -0.1241102328803618 -0.949950385418969 0.2866895800979427 -0.12572764539914 -0.9493235337335358 0.288057958546645 0.12572764539914 0.9493235337335358 -0.288057958546645 0.1241102328803618 0.949950385418969 -0.2866895800979427 -0.1260763385258006 -0.9561757449318785 0.2642587778445488 0.1260763385258006 0.9561757449318785 -0.2642587778445488 -0.5411572163250612 -0.8409136120021787 0.0036282735233317 0.5411572163250612 0.8409136120021787 -0.0036282735233317 -0.4271593597663426 -0.5494736951569242 0.7180623508405128 0.4271593597663426 0.5494736951569242 -0.7180623508405128</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID527\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID525\">\r\n                    <float_array count=\"196\" id=\"ID528\">-3.786473319759188 -7.323412140034409 -4.615531269323347 -10.50426780891869 -3.619923147946738 -10.4997124189645 -3.81352480912883 -7.314962732852594 -4.805676486616894 -7.37051953241552 -4.653673804142658 -10.49401698912256 -3.861453874929484 -6.370197921834446 -4.812624718306279 -7.36088743703495 -3.820425668882074 -7.305856672633955 2.694805104503927 -6.908588653047397 3.159237001412372 -10.04246510191542 4.01444950041533 -9.85695107623112 2.124028407813262 -7.071998294227972 2.309722319644435 -5.993056934305602 2.044608896717736 -5.356969436367257 1.756362347080652 -6.218346919426859 1.654720203610757 -4.260796592547062 1.433822075213695 -5.58669282178515 1.301124565657046 -3.253791213680578 1.034025889616375 -5.076538702772943 1.150057598209742 -2.790499405865308 0.6099842723727789 -2.882667464664047 0.6813313594591697 -4.417481111052449 0.6181083223495576 -3.371747130340732 0.6745777442559287 -4.861532670451762 -3.824119757917572 -6.385272312822708 -4.818761116653899 -6.415319624856644 -4.770302607309429 -7.378913320643741 -3.932374746135774 -3.499523185868613 -4.927413575326117 -3.550563414087187 -4.879652942044097 -4.594604717966694 -3.940378453159533 -3.027190444375211 -4.936862069573945 -3.065660927447276 -4.915571062373914 -3.5436583785342 -3.918064205042312 -2.911394748494002 -4.09282702520373 -3.385230939043493 -3.913500117488176 -3.40050299024049 -4.103959653848396 -3.470749325366316 -4.244247793447956 -4.516291113672466 -4.071526949273308 -4.517354419797227 -4.694071954369298 -4.397249817793164 -4.852048441064388 -4.881619431869657 -4.696140705790722 -4.841330176768042 -3.612092296619232 -5.493643733810828 -3.54728384340591 -5.844317579836226 -3.388429709736816 -5.80223159735321 -3.853333020430924 -5.800397365438651 -3.80351443586253 -6.41800547167999 -3.644650972120329 -6.376784300125662 -3.613854860136208 -6.28799614187596 -3.613167292398807 -6.974182995811063 -3.443345100842655 -6.955360092461058 -3.229723261065653 -6.914445467807718 -3.198837732959714 -7.807696212394419 -3.020090597742209 -7.800548950638829 -2.556309598949435 -7.719435323674952 -2.07909737595266 -10.76451173411055 -1.887081515124395 -10.7541844740011 -3.839915993991579 -5.735080854880583 -4.835935624615236 -5.752527526608549 -4.800992548081733 -6.42136775030822 -3.842653010323232 -5.712728447491024 -4.889675796800544 -4.592379227370737 -4.838679085328147 -5.729945936031485 -3.893651563408266 -4.575157380439522 -3.857120588539961 -5.72660297898442 -4.819904359823177 -6.41140743340478 -3.825258441823209 -6.381453665091004 -3.941118556409633 -3.493999293346616 -4.890027573496783 -4.588206715689682 -3.894002460961315 -4.571016362072552 -3.954943057750661 -3.012787565415254 -4.93138635985045 -3.527791052174538 -3.936315166081157 -3.477142797519195 -4.105939758987547 -3.476609754896952 -4.063770219756945 -4.537696388468241 -3.926614997645129 -3.491897394819695 -4.000934001956216 -2.89206782663573 -4.177193689864259 -2.897812676959156 -4.175804411867014 -3.36587945210828 -4.244396603139681 -4.53007578126498 -4.22716918693565 -5.016005951249156 -4.071675761691439 -4.531139361422384 -3.652170740556171 -5.469963595447143 -3.798853510505536 -5.527848467073778 -3.590817288257763 -5.821021844290655 -3.833509888572388 -5.808143101871867 -3.995755863268846 -5.841267620548126 -3.781669341089509 -6.425648218290957 -3.850258232861662 -6.228912249916991 -4.010205632191378 -6.267452237426695 -3.866956363979578 -6.914973573831331 -3.477759105263607 -6.875094619680589 -3.647638875630202 -6.893593195818973 -3.464546362080003 -7.768615286749084 -3.033317435407952 -7.697846838450428 -3.212070745508375 -7.704897883551319 -2.636818840382449 -10.75008068999862</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID528\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID524\">\r\n                    <input semantic=\"POSITION\" source=\"#ID522\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID523\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID524\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID525\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 6 7 0 8 5 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 13 12 10 9 14 13 13 12 14 13 15 14 13 12 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 20 19 19 18 21 20 20 19 21 20 22 21 20 19 22 21 23 22 23 22 22 21 24 23 25 24 20 19 23 22 26 22 27 19 28 24 29 23 30 21 26 22 26 22 30 21 27 19 30 21 31 20 27 19 31 20 32 18 27 19 27 19 32 18 33 17 32 18 34 16 33 17 33 17 34 16 35 15 34 16 36 14 35 15 35 15 36 14 37 12 36 14 38 13 37 12 38 13 39 9 37 12 37 12 39 9 40 10 41 11 40 10 39 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 56 37 60 38 61 39 62 39 63 38 57 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 75 49 78 50 79 51 80 51 81 50 76 49 79 52 82 53 83 54 84 54 85 53 80 52 83 55 86 56 87 57 88 57 89 56 84 55 90 58 91 59 42 60 43 60 92 59 93 58 90 61 46 62 91 63 46 62 90 61 94 64 95 64 93 61 47 62 92 63 47 62 93 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 55 74 60 75 56 76 57 76 63 75 58 74 54 77 96 78 55 79 58 79 97 78 59 77 60 80 64 81 61 82 62 82 67 81 63 80 68 83 98 84 69 85 72 85 99 84 73 83 70 86 69 87 74 88 77 88 72 87 71 86 75 89 74 90 78 91 81 91 77 90 76 89 79 92 78 93 82 94 85 94 81 93 80 92 83 95 82 96 86 97 89 97 85 96 84 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID529\">\r\n            <mesh>\r\n                <source id=\"ID530\">\r\n                    <float_array count=\"180\" id=\"ID534\">-0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID534\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID531\">\r\n                    <float_array count=\"180\" id=\"ID535\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID535\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID533\">\r\n                    <float_array count=\"120\" id=\"ID536\">4.048226775239526 -14.15776759814488 5.275854736254216 -20.25943781854545 6.074311336163872 -20.10514721805505 3.331770984800639 -14.38222820365034 3.34628257493822 -12.47232526311665 2.743403913001568 -11.2463545094255 2.619482817920047 -12.7497492002406 1.930445109493735 -10.2117235234207 2.016557223285633 -11.52379262397881 1.315964684678752 -10.70622398827427 1.252530450429137 -9.803638625415397 -0.1147598324848787 -10.49443800458955 1.185360373440858 -8.832837379884129 1.034377884849387 -6.712951942821705 1.02924344771786 -5.77682455434737 -0.08553014833978972 -5.880332193704978 -1.198492142265195 -5.712091593480277 -1.215528711540519 -6.648138052462246 -1.547887303772093 -10.63899816275007 -1.472992104737583 -9.736992302315027 -1.393422409009268 -8.766741022896534 -2.156041200933601 -10.13969745661595 -2.258842582037208 -11.4510186977769 -2.982122386725945 -11.16788361953795 -2.877321672698945 -12.67215376661415 -3.610391638133557 -14.29897361281646 -3.600610863927081 -12.38904113597162 -4.32388128207585 -14.06887039043778 -5.629060832817041 -20.16055024897072 -6.425433245485834 -20.00001212795564 -3.212716622742917 -10.00000606397782 -2.161940641037925 -7.034435195218892 -2.814530416408521 -10.08027512448536 -1.805195819066778 -7.149486806408228 -1.80030543196354 -6.194520567985809 -1.491061193362973 -5.583941809768977 -1.438660836349472 -6.336076883307075 -1.129421291018604 -5.725509348888448 -1.0780206004668 -5.069848728307975 -0.7739436518860465 -5.319499081375033 -0.7364960523687913 -4.868496151157514 -0.6967112045046342 -4.383370511448267 -0.6077643557702595 -3.324069026231123 -0.05737991624243935 -5.247219002294777 -0.5992460711325975 -2.856045796740138 -0.04276507416989486 -2.940166096852489 0.5146217238589301 -2.888412277173685 0.5171889424246934 -3.356475971410852 0.592680186720429 -4.416418689942065 0.6262652252145684 -4.901819312707699 0.657982342339376 -5.353111994137136 0.9652225547468674 -5.105861761710349 1.008278611642817 -5.761896311989403 1.309741408960023 -6.374874600120302 1.371701956500784 -5.623177254712751 1.66588549240032 -7.191114101825169 1.67314128746911 -6.236162631558325 2.024113387619763 -7.07888379907244 2.637927368127108 -10.12971890927273 3.037155668081936 -10.05257360902752</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID536\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID532\">\r\n                    <input semantic=\"POSITION\" source=\"#ID530\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID531\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID532\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID533\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 3 3 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 9 9 7 7 10 10 9 9 10 10 11 11 11 11 10 10 12 12 11 11 12 12 13 13 11 11 13 13 14 14 11 11 14 14 15 15 11 11 15 15 16 16 11 11 16 16 17 17 11 11 17 17 18 18 18 18 17 17 19 19 19 19 17 17 20 20 18 18 19 19 21 21 18 18 21 21 22 22 22 22 21 21 23 23 22 22 23 23 24 24 24 24 23 23 25 25 25 25 23 23 26 26 25 25 26 26 27 27 25 25 27 27 28 28 28 28 27 27 29 29</p>\r\n                </triangles>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID532\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID533\"/>\r\n                    <p>30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 34 34 35 35 33 33 33 33 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 41 41 42 42 40 40 40 40 42 42 39 39 39 39 42 42 43 43 42 42 44 44 43 43 44 44 45 45 43 43 45 45 46 46 43 43 46 46 47 47 43 43 47 47 48 48 43 43 48 48 49 49 43 43 43 43 49 49 50 50 49 49 51 51 50 50 50 50 51 51 52 52 52 52 51 51 53 53 51 51 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 56 56 57 57 55 55 55 55 57 57 58 58 59 59 58 58 57 57</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID537\">\r\n            <mesh>\r\n                <source id=\"ID538\">\r\n                    <float_array count=\"240\" id=\"ID542\">-0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID542\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID539\">\r\n                    <float_array count=\"240\" id=\"ID543\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6630779028754261 -0.686790694066647 -0.2977351797517055 -0.6729311871649365 -0.562029832840137 -0.4809221187868957 -0.6658892428368299 -0.6885143064564592 -0.2872969997737087 0.6658892428368299 0.6885143064564592 0.2872969997737087 0.6729311871649365 0.562029832840137 0.4809221187868957 0.6630779028754261 0.686790694066647 0.2977351797517055 -0.6113217468963009 -0.7555949016953774 -0.2352914497035711 -0.6145076962834851 -0.7533304730451725 -0.23425091160954 0.6145076962834851 0.7533304730451725 0.23425091160954 0.6113217468963009 0.7555949016953774 0.2352914497035711 -0.6113552837420216 0.7554994400131816 -0.2355107496070638 -0.614536014802447 0.753238837863779 -0.234471191501963 -0.6630217725658703 0.6867913760071885 -0.2978585821254177 0.6630217725658703 -0.6867913760071885 0.2978585821254177 0.614536014802447 -0.753238837863779 0.234471191501963 0.6113552837420216 -0.7554994400131816 0.2355107496070638 -0.6658367060927759 0.6885118877851151 -0.2874245313088283 -0.6729662109479289 0.5620113969532229 -0.480894654386046 0.6729662109479289 -0.5620113969532229 0.480894654386046 0.6658367060927759 -0.6885118877851151 0.2874245313088283 -0.6701069292073644 0.5661758691150767 -0.4800016548513805 -0.6289247236154029 0.4714099301382881 -0.6182445873538268 0.6289247236154029 -0.4714099301382881 0.6182445873538268 0.6701069292073644 -0.5661758691150767 0.4800016548513805 -0.6252698128776827 0.1206693193046023 -0.7710230713036228 -0.6586069297905275 -2.229606074873209e-006 -0.7524871507387512 -0.6193819127185333 0.1198559305827131 -0.7758869776593 0.6193819127185333 -0.1198559305827131 0.7758869776593 0.6586069297905275 2.229606074873209e-006 0.7524871507387512 0.6252698128776827 -0.1206693193046023 0.7710230713036228 -0.6252581822364834 -0.120672201244489 -0.7710320521178985 -0.6193686517759511 -0.1198585530154133 -0.7758971584342167 0.6193686517759511 0.1198585530154133 0.7758971584342167 0.6252581822364834 0.120672201244489 0.7710320521178985 -0.6288757300373609 -0.4714242768409007 -0.6182834846371121 -0.67006535899179 -0.5661918537004904 -0.4800408310575318 0.67006535899179 0.5661918537004904 0.4800408310575318 0.6288757300373609 0.4714242768409007 0.6182834846371121 -0.6220449068117597 0.4728131159400871 -0.6241056731873016 0.6220449068117597 -0.4728131159400871 0.6241056731873016 -0.6632952763355497 -2.144258925662945e-006 -0.7483577863471115 0.6632952763355497 2.144258925662945e-006 0.7483577863471115 -0.6219938106167091 -0.472827546613443 -0.6241456646633203 0.6219938106167091 0.472827546613443 0.6241456646633203</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID543\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID541\">\r\n                    <float_array count=\"132\" id=\"ID544\">2.916716979171949 10.15761536438385 2.360348620683812 7.925327132511852 3.216081884900745 10.0871098268747 2.095474554515417 8.10766186966894 1.731248660526263 7.039697384405099 1.53253561834532 7.248080785050663 1.102106460940886 6.648978065149996 0.9696623879520416 6.935506865534766 0.03037484196967586 6.518738882791184 0.03037484196966032 6.779216066056368 -1.04136616354108 6.648978065150011 -0.9088939309335409 6.935506865534769 -1.471814094024708 7.248080785050666 -1.670494283317261 7.039697384405096 -2.034706097497008 8.107661869668936 -2.299594243474685 7.925327132511855 -2.856924722266216 10.15761536438385 -3.156233308757805 10.08710982687471 -1.40781128757764 8.740863958144171 -1.852121515551163 7.788450679867976 -1.168223810341762 8.705845242068937 -1.353723762346343 10.77235392063934 -1.891963265655392 8.548125708057006 -1.127976746028978 10.74215769727934 1.390907857481091 10.76412350460084 1.165152667342891 10.73392563091469 1.92977610017306 8.539773730394375 1.451024695764368 8.728401408360952 1.211452728307992 8.693382385382428 1.895306010249322 7.775979783153745 0.9074623347642705 7.685547256742304 1.633385363252757 7.302298032340775 1.117617843992585 7.784976980384649 -0.2901796556002942 6.749254765222319 0.8549824061199894 6.711683130854517 -0.197239063084682 6.918126269644701 0.3497466618996286 6.756248688697456 0.2568369789646587 6.925123544849952 -0.7953736304985473 6.718676308614904 -1.583745696748875 7.318291702219283 -0.8578410112294874 7.701550924618476 -1.06798004515442 7.800983242129445 -0.7399734769562733 10.71852904030233 -1.55024617473669 8.534797514554935 -1.310273488089885 8.50145099047988 -1.78574637488333 7.791442475072095 -1.566410502550131 7.70517274122652 -1.095319278789253 8.705805411636872 0.7810767299616233 10.71158619287857 1.352006114122691 8.494388859175095 1.591962985362013 8.527737177369552 1.138657808235052 8.693800988211841 1.609739214986294 7.693184525529069 1.829089859934408 7.779452862022374 1.08537548281971 7.599211858902786 1.642118984845298 7.065808738801556 1.799210093489108 7.202159495554009 0.8075133592585561 6.667004022123 0.8413662356912078 6.855588981904453 -0.303908425543867 6.890972967685572 -1.594006231623408 7.083719623542236 -1.037267018645942 7.617144552937642 -1.751077057674244 7.220075955278533 0.3635172617960516 6.897601249431154 -0.7817156750263035 6.862217289076101 -0.7478615787589549 6.673632464807028</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID544\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID540\">\r\n                    <input semantic=\"POSITION\" source=\"#ID538\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID539\"/>\r\n                </vertices>\r\n                <triangles count=\"64\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID540\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID541\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 10 10 12 12 13 13 13 13 12 12 14 14 13 13 14 14 15 15 15 15 14 14 16 16 15 15 16 16 17 17 18 17 19 16 20 15 19 16 21 14 20 15 20 15 21 14 22 13 21 14 23 12 22 13 22 13 23 12 24 10 23 12 25 11 24 10 25 11 26 9 24 10 24 10 26 9 27 8 26 9 28 7 27 8 27 8 28 7 29 6 28 7 30 5 29 6 29 6 30 5 31 4 30 5 32 3 31 4 31 4 32 3 33 1 32 3 34 0 33 1 35 2 33 1 34 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 36 22 43 23 44 23 41 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 48 27 52 28 53 29 54 29 55 28 49 27 56 30 57 31 53 32 54 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 70 39 71 40 37 41 40 41 72 40 73 39 43 42 36 43 38 44 39 44 41 43 44 42 37 45 71 46 38 47 39 47 72 46 40 45 47 48 52 49 48 50 49 50 55 49 50 48 52 51 56 52 53 53 54 53 59 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 76 57 61 58 60 59 65 59 64 58 77 57 78 60 71 61 70 62 73 62 72 61 79 60 66 63 61 64 76 65 77 65 64 64 69 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID545\">\r\n            <mesh>\r\n                <source id=\"ID546\">\r\n                    <float_array count=\"300\" id=\"ID550\">-0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID550\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID547\">\r\n                    <float_array count=\"300\" id=\"ID551\">-0.1164409580977757 -0.9514088463688938 0.2850661507936061 -0.1152736558224273 -0.9514554511327701 0.2853848432959771 -0.1088414049293589 -0.947410974285598 0.3009418455054356 0.1088414049293589 0.947410974285598 -0.3009418455054356 0.1152736558224273 0.9514554511327701 -0.2853848432959771 0.1164409580977757 0.9514088463688938 -0.2850661507936061 -0.1108291057697727 -0.947976074128154 0.2984263262429192 0.1108291057697727 0.947976074128154 -0.2984263262429192 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170025511882888 -0.9430258041624864 0.3114686753096171 0.1170025511882888 0.9430258041624864 -0.3114686753096171 -0.4971366770465531 -0.7227409499224468 0.4801048256790497 -0.5144747560634457 -0.7170989215866322 0.4701966206096629 -0.5580530298785489 -0.6868819057170897 0.4655857208311168 0.5580530298785489 0.6868819057170897 -0.4655857208311168 0.5144747560634457 0.7170989215866322 -0.4701966206096629 0.4971366770465531 0.7227409499224468 -0.4801048256790497 -0.5583224479878474 -0.6848994354787804 0.4681760431223551 -0.5451847648562986 -0.6795279363612947 0.4909331480692076 0.5451847648562986 0.6795279363612947 -0.4909331480692076 0.5583224479878474 0.6848994354787804 -0.4681760431223551 -0.132187031375201 -0.9230309666043481 0.3613037827447346 -0.1366215138279231 -0.9197698814859678 0.3679102160455122 -0.1319019164971365 -0.9175016921677499 0.375223305904228 0.1319019164971365 0.9175016921677499 -0.375223305904228 0.1366215138279231 0.9197698814859678 -0.3679102160455122 0.132187031375201 0.9230309666043481 -0.3613037827447346 -0.1268997631170716 -0.9278451148530309 0.3507134057377864 -0.1289849043901566 -0.9215886923010116 0.3661108802840657 0.1289849043901566 0.9215886923010116 -0.3661108802840657 0.1268997631170716 0.9278451148530309 -0.3507134057377864 -0.1260530155511802 -0.927743067690427 0.3512882543194544 -0.1256997483470361 -0.9362686863122588 0.3280251824122791 -0.1240889977263835 -0.935968365345372 0.3294922453047622 0.1240889977263835 0.935968365345372 -0.3294922453047622 0.1260530155511802 0.927743067690427 -0.3512882543194544 0.1256997483470361 0.9362686863122588 -0.3280251824122791 -0.1211640169608956 -0.9438046778011408 0.3074931074911838 0.1211640169608956 0.9438046778011408 -0.3074931074911838 -0.6328548543715852 -0.7235364593406309 0.2756623392905591 -0.6307922097387901 -0.7250610588406663 0.2763831562988343 -0.5535665584026356 -0.7852409048141928 0.2774180722751294 0.5535665584026356 0.7852409048141928 -0.2774180722751294 0.6307922097387901 0.7250610588406663 -0.2763831562988343 0.6328548543715852 0.7235364593406309 -0.2756623392905591 -0.5497036183937712 -0.7888062471367417 0.2749738831286428 -0.5040203107265815 -0.8294161793038206 0.2408989993423235 0.5040203107265815 0.8294161793038206 -0.2408989993423235 0.5497036183937712 0.7888062471367417 -0.2749738831286428 -0.4985502972453628 -0.8325691162757212 0.2414047798624232 -0.460851692936173 -0.8753739730121579 0.146068903229857 0.460851692936173 0.8753739730121579 -0.146068903229857 0.4985502972453628 0.8325691162757212 -0.2414047798624232 -0.4572416734112509 -0.8756361354271367 0.1555358814881895 -0.4569279317681941 -0.8856200811699702 -0.08302973562848467 0.4569279317681941 0.8856200811699702 0.08302973562848467 0.4572416734112509 0.8756361354271367 -0.1555358814881895 -0.4542038175253678 -0.8845680751983658 -0.1060104357374351 -0.4286788938903839 -0.8665692927857499 -0.2555231236771386 0.4286788938903839 0.8665692927857499 0.2555231236771386 0.4542038175253678 0.8845680751983658 0.1060104357374351 -0.3524105864353466 -0.7559917297368691 0.5516187842502752 -0.3064282572468343 -0.7615096868410569 0.5711433445361185 0.3064282572468343 0.7615096868410569 -0.5711433445361185 0.3524105864353466 0.7559917297368691 -0.5516187842502752 -0.5412831574712219 -0.6807737084399571 0.4935176808736367 0.5412831574712219 0.6807737084399571 -0.4935176808736367 -0.4272120245077655 -0.8674148026834218 -0.2551106548179773 0.4272120245077655 0.8674148026834218 0.2551106548179773</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID551\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID549\">\r\n                    <float_array count=\"196\" id=\"ID552\">-4.616909317180718 10.23948786492563 -5.610078521260624 10.18451102473239 -4.476007576609035 7.062446497286024 -5.582273135016021 10.1941861999994 -5.451980479202522 7.070081426959295 -4.457317962308713 7.070081426959296 -1.33218931828335 3.230435375675426 -1.6114341764961 2.609907015700216 -1.106382029703872 2.786350440244579 -1.802609827421979 4.207418866483767 -1.971952387364679 3.008396156954229 -2.310670360138509 5.273218044780612 -2.705824901930551 3.881759770422776 -2.574112979026264 5.90973500068239 -2.950461588838496 6.827506162532062 -2.915820564645328 4.577486397015233 -2.976053988909622 5.174927108690099 -4.098294577175903 9.820029505899221 -3.189794693172454 5.834534961886438 -3.533778702362138 6.694277314763351 -4.927754917204618 9.572531168459182 -3.044538181434562 4.237025474007779 -4.457317962308713 7.061712810444016 -5.451980479202522 7.061712810444018 -4.414598464887224 6.126107772952492 -5.763048222846655 3.122267891642199 -5.924772333389478 3.074542164180131 -5.33596872995056 2.130714035845917 -5.218756704377096 1.966856877840273 -5.377440342691845 1.899378453086448 -4.987916614829788 1.512708834556799 -5.29019606874273 3.166224867289707 -5.257018934731138 2.688642967424494 -4.260154754836963 2.720485635982612 -5.351085900066831 4.23457763899701 -5.285625910594948 3.191125460069592 -4.288675503379187 3.206941579033968 -4.351493664629199 4.291039244739512 -5.414233208841241 5.380670171341812 -5.345933874498217 4.243665053434983 -4.41979236804897 5.428040042772467 -5.444478208186572 6.07674149299513 -5.409786663689427 5.40789315121728 -4.415291528805324 5.454552311874554 -5.479987793634328 7.049459215875197 -5.432744773063641 6.08583337300607 -4.438155718111392 6.116919218057375 -7.120928170141183 9.270667048401974 -7.302381745519437 9.220150285118146 -6.203185173507943 6.276398871968053 -6.246087340236969 6.477690060269889 -6.416833798944759 6.43548686015438 -6.05090352278245 5.589542698505411 -6.057282581899993 5.716607486391731 -6.225849311089496 5.691759027822195 -5.947800219407116 5.041376582275624 -6.110213799958335 5.176780817884009 -5.915069665924102 4.577268658835078 -5.942953322128933 5.176183896234631 -5.911078840908683 4.364150946875863 -6.078344164688114 4.355576795346951 -5.968821493453951 4.011867773493208 -6.077940492615052 3.895396330804702 -5.788129089640393 3.450333224929001 -5.914572748051512 3.883135267461919 -6.122288302219893 3.554007002763703 -5.926698155432084 3.092878339107605 -5.764906912468319 3.140463050621411 -5.870819298278879 3.017708812526331 -5.411299025384771 2.019532791723905 -5.25185851333697 2.085897937376482 -5.418215817904647 1.905293193501272 -5.20087948499223 1.469582089575572 -5.03425269375542 1.515196952579786 -4.289073233445126 3.18393522163202 -5.286018809997048 3.167931777298792 -4.257505459531929 2.720014403967389 -4.351952313245739 4.286247223369609 -5.34638380163261 4.238759873238242 -4.285980849598744 3.209841492506433 -4.438928614152006 6.112609013456504 -5.433512735694054 6.081425640721875 -4.405753380254583 5.457778096002004 -7.23775406617386 9.323170269276911 -6.415450211855801 6.313277663626342 -6.244958820165806 6.356114253185693 -6.408634890764557 6.478828975510515 -6.226509457877878 5.603684553087598 -6.058025690602193 5.628878803242282 -6.210238106228282 5.734211264659076 -6.110019128929388 5.081703461357701 -5.942758739870094 5.081091340191565 -6.111403487118982 5.175334618298088 -6.083282415819649 4.567569574095214 -5.91599523908132 4.575875699918768 -6.075915714967462 4.348926781517354 -6.129123088814952 4.015794026888997 -5.965547817296141 4.005385117475852</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID552\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID548\">\r\n                    <input semantic=\"POSITION\" source=\"#ID546\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID547\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID548\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID549\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 14 12 16 14 17 15 17 15 16 14 18 16 18 16 16 14 19 17 18 16 19 17 20 18 20 18 19 17 21 19 21 19 19 17 22 20 23 21 14 12 17 15 24 15 25 12 26 21 27 20 28 17 29 19 29 19 28 17 30 18 30 18 28 17 31 16 28 17 32 14 31 16 31 16 32 14 24 15 24 15 32 14 25 12 32 14 33 13 25 12 33 13 34 11 25 12 25 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 2 22 6 23 40 24 41 24 7 23 3 22 42 25 43 26 44 27 45 27 46 26 47 25 44 28 48 29 49 30 50 30 51 29 45 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 52 35 59 36 60 36 57 35 61 34 62 37 63 38 58 39 63 38 62 37 64 40 65 40 66 37 67 38 61 39 67 38 66 37 68 41 63 42 64 43 65 43 67 42 69 41 6 44 68 45 40 46 41 46 69 45 7 44 70 47 71 48 72 49 73 49 74 48 75 47 72 50 76 51 77 52 78 52 79 51 73 50 77 53 80 54 81 55 82 55 83 54 78 53 84 56 85 57 81 58 82 58 86 57 87 56 85 59 88 60 89 61 90 61 91 60 86 59 92 62 42 63 93 64 94 64 47 63 95 62 92 65 43 66 42 67 47 67 46 66 95 65 43 68 48 69 44 70 45 70 51 69 46 68 48 71 96 72 49 73 50 73 97 72 51 71 59 74 52 75 54 76 55 76 57 75 60 74 62 77 58 78 59 79 60 79 61 78 66 77 40 80 68 81 64 82 65 82 69 81 41 80 71 83 76 84 72 85 73 85 79 84 74 83 76 86 80 87 77 88 78 88 83 87 79 86 80 89 84 90 81 91 82 91 87 90 83 89 84 92 88 93 85 94 86 94 91 93 87 92 88 95 98 96 89 97 90 97 99 96 91 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID553\">\r\n            <mesh>\r\n                <source id=\"ID554\">\r\n                    <float_array count=\"300\" id=\"ID558\">-0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID558\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID555\">\r\n                    <float_array count=\"300\" id=\"ID559\">-0.1164499499977552 0.9514072021990337 0.2850679651404685 -0.1088253784222441 0.9474097604849766 0.3009514624471104 -0.1152785401318226 0.9514539780096277 0.2853877816493387 0.1152785401318226 -0.9514539780096277 -0.2853877816493387 0.1088253784222441 -0.9474097604849766 -0.3009514624471104 0.1164499499977552 -0.9514072021990337 -0.2850679651404685 -0.1108158709414702 0.9479756505698795 0.2984325864815992 0.1108158709414702 -0.9479756505698795 -0.2984325864815992 -0.1170020873176061 0.9430265699053393 0.3114665311327904 0.1170020873176061 -0.9430265699053393 -0.3114665311327904 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211732142097103 0.9438073403036035 0.3074813108908012 0.1211732142097103 -0.9438073403036035 -0.3074813108908012 -0.1269033028027753 0.9278449706028746 0.3507125065701218 -0.1289786499144217 0.9215964103368728 0.3660936551218056 -0.1321716117428985 0.9230345567260386 0.3613002520603185 0.1321716117428985 -0.9230345567260386 -0.3613002520603185 0.1289786499144217 -0.9215964103368728 -0.3660936551218056 0.1269033028027753 -0.9278449706028746 -0.3507125065701218 -0.1318868020555722 0.9175152480092108 0.3751954705405586 -0.1365916059617619 0.9197763476074805 0.3679051556619317 0.1365916059617619 -0.9197763476074805 -0.3679051556619317 0.1318868020555722 -0.9175152480092108 -0.3751954705405586 -0.5580352589138925 0.686896283790861 0.4655858085500564 -0.5451072798952581 0.6795683929083647 0.4909631888086266 -0.5582998943323946 0.6849160643720522 0.4681786120206002 0.5582998943323946 -0.6849160643720522 -0.4681786120206002 0.5451072798952581 -0.6795683929083647 -0.4909631888086266 0.5580352589138925 -0.686896283790861 -0.4655858085500564 -0.497074599178697 0.7227721921072363 0.4801220690281148 -0.5144099610105722 0.7171316315973716 0.4702176251222334 0.5144099610105722 -0.7171316315973716 -0.4702176251222334 0.497074599178697 -0.7227721921072363 -0.4801220690281148 -0.352403313346486 0.7560131466980314 0.5515940778889484 -0.3064402809272837 0.7615293823458688 0.5711106320575088 0.3064402809272837 -0.7615293823458688 -0.5711106320575088 0.352403313346486 -0.7560131466980314 -0.5515940778889484 -0.4568215763294453 0.8856767481496878 -0.08301051250820768 -0.4286481079664477 0.8665788463267886 -0.2555423695509543 -0.4540888561829713 0.8846296580586545 -0.1059890502526975 0.4540888561829713 -0.8846296580586545 0.1059890502526975 0.4286481079664477 -0.8665788463267886 0.2555423695509543 0.4568215763294453 -0.8856767481496878 0.08301051250820768 -0.4574195148530338 0.8755517285042376 0.1554881286299919 -0.4610442893976508 0.8752815563959685 0.1460149315887465 0.4610442893976508 -0.8752815563959685 -0.1460149315887465 0.4574195148530338 -0.8755517285042376 -0.1554881286299919 -0.5040953384354201 0.8293748738257591 0.2408842220532205 -0.4986342763500318 0.8325237471962924 0.2413877975439595 0.4986342763500318 -0.8325237471962924 -0.2413877975439595 0.5040953384354201 -0.8293748738257591 -0.2408842220532205 -0.5535993933396806 0.7852192614320004 0.2774138121473434 -0.5497405090277223 0.7887818631232486 0.2749700804483234 0.5497405090277223 -0.7887818631232486 -0.2749700804483234 0.5535993933396806 -0.7852192614320004 -0.2774138121473434 -0.6327739567192011 0.7235964141618628 0.2756906765018007 -0.6307142225357303 0.7251185372018276 0.2764103407932322 0.6307142225357303 -0.7251185372018276 -0.2764103407932322 0.6327739567192011 -0.7235964141618628 -0.2756906765018007 -0.1241004601015495 0.9359706713431454 0.329481377604328 -0.1257158798169777 0.9362722954747478 0.3280086984948568 0.1257158798169777 -0.9362722954747478 -0.3280086984948568 0.1241004601015495 -0.9359706713431454 -0.329481377604328 -0.1260584581940911 0.9277432077180657 0.3512859314728144 0.1260584581940911 -0.9277432077180657 -0.3512859314728144 -0.5411915379110214 0.6808183023324969 0.4935566416355883 0.5411915379110214 -0.6808183023324969 -0.4935566416355883 -0.4272108780820152 0.8674072480996509 -0.2551382597584773 0.4272108780820152 -0.8674072480996509 0.2551382597584773</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID559\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID557\">\r\n                    <float_array count=\"196\" id=\"ID560\">4.624208775236756 10.25279109822444 4.483294934126929 7.075747942042431 5.617378929991789 10.19781422708152 5.588996955066634 10.20763462219114 4.464061036837125 7.083520870205009 5.458721422938665 7.083520870205004 5.458721422938665 7.076423884248994 4.464061036837125 7.076423884248999 4.421346952999289 6.140815188881417 4.158114993700223 9.82002950589921 3.593575840268438 6.694277314763352 4.987579839267953 9.572531168459182 3.010244459204613 6.827506162532067 3.2495779390001 5.834534961886451 3.035846245815374 5.174927108690105 2.975650367709245 4.577486397015233 2.633905235931875 5.90973500068239 2.765668784803665 3.88175977042276 2.031777497158823 3.008396156954226 2.370486083393128 5.273218044780597 1.862425550676504 4.207418866483772 1.671278059369284 2.609907015700215 1.391990961728664 3.230435375675429 1.166188366418925 2.786350440244582 3.10435390468914 4.237025474007778 5.487502565849463 7.063677282062665 4.445669499516969 6.131139493031489 5.440259090957746 6.100053721609197 5.359399117465306 4.250949577599662 4.296992243910657 3.223309561720638 5.293941409287112 3.207493381871648 5.298962164022343 3.183399341581381 4.268933211202332 2.737661070040306 5.265793053665141 2.705818470045893 5.257114503965267 1.984286605816789 5.026294682284743 1.530141409702067 5.415796362687616 1.916808604102276 5.797934195308944 3.14048579679244 5.370891361201542 2.148913571710389 5.959649671694621 3.092759185175174 6.100274528703595 3.920387757089989 5.936906742911044 3.908127033707534 5.810472141374266 3.475336991400121 5.937866076838642 4.353177406087491 5.995585169795275 4.000895026903539 6.105118350408258 4.344603273888446 6.137981372295337 5.179637239087242 5.970701324597152 5.179040319610356 5.942823095099554 4.580127261937448 6.087918494432243 5.725176464399121 5.978424246796603 5.049948518067148 6.256494040726642 5.700328114675888 6.280019180205057 6.487347366001216 6.084814463887035 5.599199516900355 6.450770346717195 6.445144142728336 7.160276736564839 9.280524494546649 6.242625006838358 6.286231003209693 7.341713869329332 9.230007304171149 5.452393926001093 6.09104426690505 4.423201973780691 5.468860483384689 5.417699803672306 5.422201727503866 5.422292833750023 5.396900100893685 4.359547899167656 4.307272427779807 5.353987874597794 4.259895192131318 4.427849072468621 5.444266645087963 4.446466439651513 6.127255214550647 4.413290633479596 5.472425483488996 5.441051096828423 6.096071898312635 4.360018074793429 4.302764210820874 4.294045878582681 3.226357187596779 5.354449558780775 4.25527680367496 4.297427948320241 3.201644465293737 4.265866408531684 2.73773186676205 5.294372291942167 3.185641304488297 5.908260563923147 3.034311935547308 5.289309405852778 2.102497103108806 5.44874766786911 2.036131675611467 5.455634220373443 1.92359810915547 5.071713689974774 1.533491951675666 5.238326230219618 1.487875929105176 6.157026842955437 3.572135238052842 5.799683556714631 3.158588099668047 5.961466416325745 3.111003021527154 6.102338909262918 4.338121338358671 5.991977498616147 3.994577086405462 6.155552762072252 4.004986074229297 6.13932621225063 5.17824259034208 5.943923440480776 4.578781900045646 6.111197565143103 4.570475749670344 6.23799435261363 5.743683457483806 5.970467508847646 5.090572949560249 6.137747467825764 5.091185061900924 6.439857234582204 6.489474903673819 6.089209544512898 5.639527272863173 6.257702125498454 5.614333098042479 7.272565028641802 9.334630861843838 6.279722914979196 6.367584550843858 6.450219087665467 6.324748101400834</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID560\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID556\">\r\n                    <input semantic=\"POSITION\" source=\"#ID554\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID555\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID556\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID557\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 6 6 1 7 8 8 9 8 4 7 7 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 15 14 13 12 16 15 16 15 13 12 17 16 16 15 17 16 18 17 18 17 17 16 19 18 19 18 17 16 20 19 19 18 20 19 21 20 19 18 21 20 22 21 22 21 21 20 23 22 22 21 23 22 24 23 18 17 25 24 16 15 26 15 27 24 28 17 29 23 30 22 31 21 30 22 32 20 31 21 31 21 32 20 33 18 32 20 34 19 33 18 34 19 35 16 33 18 33 18 35 16 28 17 28 17 35 16 26 15 35 16 36 12 26 15 26 15 36 12 37 14 37 14 36 12 38 13 38 13 36 12 39 10 36 12 40 9 39 10 41 11 39 10 40 9 6 25 8 26 42 27 43 27 9 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 46 31 50 32 51 33 52 33 53 32 47 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 54 38 61 39 62 39 59 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 75 50 79 51 80 51 76 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 94 62 44 63 94 62 91 61 90 64 93 64 92 61 95 62 49 63 95 62 92 61 8 65 90 66 42 67 43 67 93 66 9 65 94 68 45 69 44 70 49 70 48 69 95 68 45 71 50 72 46 73 47 73 53 72 48 71 61 74 54 75 56 76 57 76 59 75 62 74 56 77 55 78 96 79 97 79 58 78 57 77 64 80 60 81 61 82 62 82 63 81 67 80 70 83 69 84 98 85 99 85 72 84 71 83 74 86 68 87 70 88 71 88 73 87 77 86 79 89 75 90 74 91 77 91 76 90 80 89 83 92 78 93 79 94 80 94 81 93 84 92 87 95 82 96 83 97 84 97 85 96 88 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID561\">\r\n            <mesh>\r\n                <source id=\"ID562\">\r\n                    <float_array count=\"240\" id=\"ID566\">-0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID566\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID563\">\r\n                    <float_array count=\"240\" id=\"ID567\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6631686390966892 -0.5040032000643614 0.5533426880727064 -0.6729749463518688 -0.637361758729642 0.3753327991153409 -0.665978872098829 -0.4946710441241405 0.5583660985617809 0.665978872098829 0.4946710441241405 -0.5583660985617809 0.6729749463518688 0.637361758729642 -0.3753327991153409 0.6631686390966892 0.5040032000643614 -0.5533426880727064 -0.6144927450388785 -0.4648298128754873 0.6374416925152632 -0.6113023930812731 -0.4665479271234981 0.6392514496736599 0.6113023930812731 0.4665479271234981 -0.6392514496736599 0.6144927450388785 0.4648298128754873 -0.6374416925152632 -0.6144856224526448 0.02115082100305797 -0.788644446230291 -0.6629772102952537 -0.05946182801509716 -0.7462744197935675 -0.6113024351803775 0.02089648161452121 -0.7911211473590341 0.6113024351803775 -0.02089648161452121 0.7911211473590341 0.6629772102952537 0.05946182801509716 0.7462744197935675 0.6144856224526448 -0.02115082100305797 0.788644446230291 -0.6657964087760006 -0.04905406275857674 -0.7445192012217402 -0.6729865574698508 -0.2722723663025976 -0.6877185848970954 0.6729865574698508 0.2722723663025976 0.6877185848970954 0.6657964087760006 0.04905406275857674 0.7445192012217402 -0.6701219898639051 -0.2700944235726152 -0.6913649695029515 -0.6289126479749136 -0.4316287370285187 -0.6466571847496542 0.6289126479749136 0.4316287370285187 0.6466571847496542 0.6701219898639051 0.2700944235726152 0.6913649695029515 -0.6585492725804401 -0.7117353213657445 -0.2444293106486486 -0.6193536905515095 -0.6949069317223108 -0.3653838560261096 -0.625235720980833 -0.6900477813844846 -0.3645742072828637 0.625235720980833 0.6900477813844846 0.3645742072828637 0.6193536905515095 0.6949069317223108 0.3653838560261096 0.6585492725804401 0.7117353213657445 0.2444293106486486 -0.6252889641002037 -0.7683994078132589 -0.1362940257191311 -0.6194174598878585 -0.7727236736317268 -0.1386367000298329 0.6194174598878585 0.7727236736317268 0.1386367000298329 0.6252889641002037 0.7683994078132589 0.1362940257191311 -0.6701143216290043 -0.6378674916840043 0.3795679899576043 -0.6289491677379813 -0.7378166084535101 0.2450501921889897 0.6289491677379813 0.7378166084535101 -0.2450501921889897 0.6701143216290043 0.6378674916840043 -0.3795679899576043 -0.6220235325541719 -0.4367230682693095 -0.6498920576451671 0.6220235325541719 0.4367230682693095 0.6498920576451671 -0.66322861238516 -0.7078364633944363 -0.2430953492004979 0.66322861238516 0.7078364633944363 0.2430953492004979 -0.6220739496306955 -0.7438120858740276 0.2444740928986038 0.6220739496306955 0.7438120858740276 -0.2444740928986038</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID567\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID565\">\r\n                    <float_array count=\"132\" id=\"ID568\">-7.899110943071706 3.579476892421579 -8.214175023921374 3.499343108218881 -8.021211049481213 2.979020818746164 -8.759556250140577 4.335206239657886 -9.064802010625483 4.197342553950783 -11.08282841508071 5.669081998703718 -11.2648379224095 5.469276533528866 -7.825205836228406 2.14481334522609 -7.633701656418383 2.984495669372309 -8.138397114707948 2.229419222292963 -8.32989678897887 1.389732320018504 -8.631364655027486 1.58133806218634 -9.003990750986796 1.048556618282334 -9.189994418622993 1.264051624233875 -10.27307042155825 0.8681266778283273 -10.40627893432769 1.124434441577344 -13.15255137381423 0.9279589001163017 -13.1400950603756 1.173564403059267 -9.479935146563065 4.69355806947108 -8.826029735810842 3.819095263127729 -9.293499526711592 4.817014898978647 -11.27238326129256 6.122746934237442 -11.4451814866472 6.004559867052301 -9.598333715416914 4.269996002902563 -13.01122109678588 3.368945949801105 -10.11869071105481 3.450892066657108 -12.99649077872279 3.548711561631994 -10.9099599054405 1.675370038626291 -9.691000544009365 2.135289745490901 -10.93441203049134 1.86609666716912 -9.948650378751601 0.3300733873617702 -9.807669465111511 0.1722143048301494 -9.373139815182823 0.7689770988787354 -8.44894854732777 1.148049050310268 -8.784749024975916 0.3368814101118945 -8.577158506658666 0.2520704532656712 -7.929857688637407 2.612187149318454 -8.163454103892477 2.60234989713821 -8.283231792898336 1.754479953103737 -8.347904821053195 4.082333036170931 -8.575064803892623 4.009635864995857 -8.393267123014773 3.395516742139427 -11.4967703490366 5.776114209361791 -9.712549747783164 3.988124977535597 -9.538143212337962 4.122019508445817 -9.336631246940229 4.75423905497862 -8.857708853722354 3.759685808930915 -8.635265013996062 3.840908182472945 -12.99262703403099 3.273043651450185 -10.11874372708642 3.156863270877688 -10.099789347737 3.347976657609713 -9.576302614795329 2.006517442139522 -9.664307303095521 2.186591215072741 -10.88782026707182 1.734216017891711 -9.120028776210594 0.3225903730954203 -9.313113161111691 0.4264642055287746 -9.715984028727405 -0.1838898453009026 -8.597687662062889 1.298337143620016 -8.748456669163948 0.4045346212719758 -8.362142656158987 1.254366929361164 -8.171197827192739 4.170460074055694 -8.229032362201163 3.484223882823618 -7.995450381775688 3.494271011514753 -8.079339290991934 2.696767466467675 -8.439711847109324 1.84086418270131 -8.20339914665017 1.799521614731336</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID568\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID564\">\r\n                    <input semantic=\"POSITION\" source=\"#ID562\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID563\"/>\r\n                </vertices>\r\n                <triangles count=\"64\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID564\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID565\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 0 0 7 7 8 8 7 7 0 0 9 9 7 7 9 9 10 10 9 9 0 0 2 2 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 18 17 19 15 20 16 20 16 19 15 21 14 19 15 22 13 21 14 21 14 22 13 23 12 22 13 24 11 23 12 23 12 24 11 25 10 24 11 26 9 25 10 27 2 28 0 26 9 25 10 26 9 29 7 26 9 28 0 29 7 30 8 29 7 28 0 31 6 32 5 33 4 32 5 34 3 33 4 33 4 34 3 35 1 34 3 28 0 35 1 27 2 35 1 28 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 36 23 41 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 47 29 50 29 54 28 55 27 53 30 56 31 57 32 58 32 59 31 54 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 60 38 65 38 68 37 69 36 70 39 37 40 71 41 72 41 40 40 73 39 42 42 36 43 38 44 39 44 41 43 45 42 38 45 37 46 70 47 73 47 40 46 39 45 46 48 52 49 47 50 50 50 55 49 51 48 56 51 53 52 52 53 55 53 54 52 59 51 74 54 57 55 56 56 59 56 58 55 75 54 60 57 62 58 76 59 77 59 63 58 65 57 70 60 71 61 78 62 79 62 72 61 73 60 66 63 60 64 76 65 77 65 65 64 69 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID569\">\r\n            <mesh>\r\n                <source id=\"ID570\">\r\n                    <float_array count=\"300\" id=\"ID574\">-0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.36399123050046 -0.05397436236353959</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID574\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID571\">\r\n                    <float_array count=\"300\" id=\"ID575\">-0.1164223673367788 -0.03939636620354328 0.9924181370338092 -0.1152576241861024 -0.03911071598773939 0.9925653791876389 -0.1088382594273443 -0.0230925907380549 0.9937912082212393 0.1088382594273443 0.0230925907380549 -0.9937912082212393 0.1152576241861024 0.03911071598773939 -0.9925653791876389 0.1164223673367788 0.03939636620354328 -0.9924181370338092 -0.1108273234566798 -0.02565555069468248 0.9935084786220906 0.1108273234566798 0.02565555069468248 -0.9935084786220906 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170010640450718 -0.01171259707753706 0.993062720114908 0.1170010640450718 0.01171259707753706 -0.993062720114908 -0.3063605024253654 0.292841831319583 0.9057521208272551 -0.3523453743815874 0.2761690730154793 0.8941942631563176 -0.49707423312389 0.2193373097837861 0.8395286482908776 0.49707423312389 -0.2193373097837861 -0.8395286482908776 0.3523453743815874 -0.2761690730154793 -0.8941942631563176 0.3063605024253654 -0.292841831319583 -0.9057521208272551 -0.5580248035340664 0.2172606952515568 0.8008783359159973 -0.514413700169338 0.2117991293092924 0.830975134346339 0.514413700169338 -0.2117991293092924 -0.830975134346339 0.5580248035340664 -0.2172606952515568 -0.8008783359159973 -0.5582941772828572 0.2203572971939314 0.7998439055124711 -0.545145087248696 0.2436486159674788 0.8021547143698301 0.545145087248696 -0.2436486159674788 -0.8021547143698301 0.5582941772828572 -0.2203572971939314 -0.7998439055124711 -0.131888714653345 0.05687624445573066 0.9896314767446013 -0.1321734375085311 0.04191912395636385 0.9903398252437945 -0.1366090766113033 0.0492215304934492 0.9894014357798807 0.1366090766113033 -0.0492215304934492 -0.9894014357798807 0.1321734375085311 -0.04191912395636385 -0.9903398252437945 0.131888714653345 -0.05687624445573066 -0.9896314767446013 -0.1289755249516954 0.04693082498186052 0.9905366281112257 -0.1269026228341467 0.03033545622924269 0.9914512012263529 0.1269026228341467 -0.03033545622924269 -0.9914512012263529 0.1289755249516954 -0.04693082498186052 -0.9905366281112257 -0.126060444224836 0.03090911601848133 0.9915409174354799 -0.1257051481658395 0.006141985696806098 0.9920486337555757 -0.124092777366998 0.0076289036136885 0.992241292446045 0.124092777366998 -0.0076289036136885 -0.992241292446045 0.126060444224836 -0.03090911601848133 -0.9915409174354799 0.1257051481658395 -0.006141985696806098 -0.9920486337555757 -0.121164189425585 -0.01572761942446628 0.9925078746227056 0.121164189425585 0.01572761942446628 -0.9925078746227056 -0.5535966397540385 0.007327883701034462 0.8327527019310723 -0.6328191074081528 0.02571473448560696 0.7738725539321597 -0.6307579737542808 0.02590113406437414 0.7755472324749624 0.6307579737542808 -0.02590113406437414 -0.7755472324749624 0.6328191074081528 -0.02571473448560696 -0.7738725539321597 0.5535966397540385 -0.007327883701034462 -0.8327527019310723 -0.50401691956796 -0.04154329558212729 0.8626940937443589 -0.5497328291718073 0.003855971050269636 0.8353316395408592 0.5497328291718073 -0.003855971050269636 -0.8353316395408592 0.50401691956796 0.04154329558212729 -0.8626940937443589 -0.4985583850107261 -0.04209033687011798 0.8658336677894066 -0.4610763548051719 -0.1461813753387184 0.8752368825316127 0.4610763548051719 0.1461813753387184 -0.8752368825316127 0.4985583850107261 0.04209033687011798 -0.8658336677894066 -0.4574584754158474 -0.1372954494769191 0.8785679841783102 -0.4568954263623595 -0.3661495419449712 0.8106670600824024 0.4568954263623595 0.3661495419449712 -0.8106670600824024 0.4574584754158474 0.1372954494769191 -0.8785679841783102 -0.4541605407154716 -0.3875438698506286 0.8022144053794031 -0.4286977599895537 -0.5231200390841958 0.736589203890804 0.4286977599895537 0.5231200390841958 -0.736589203890804 0.4541605407154716 0.3875438698506286 -0.8022144053794031 -0.4272529523562543 -0.5230063251151536 0.7375088464502692 0.4272529523562543 0.5230063251151536 -0.7375088464502692 -0.5412401970068317 0.2456900208751192 0.8041737764851509 0.5412401970068317 -0.2456900208751192 -0.8041737764851509</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID575\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID573\">\r\n                    <float_array count=\"196\" id=\"ID576\">-13.80735445879598 0.2458649066213103 -14.09510292357247 -0.5039355294692868 -9.982481491239387 -0.7801007211882352 -9.988301163081676 -0.7356641740735505 -14.09879580861296 -0.4405539083059194 -10.34526016737302 -1.466008715794491 -3.709288218786411 0.08183865699999136 -4.257382154934284 -0.4900517056751142 -3.661200976693986 -0.3512310434882693 -4.316527116072848 0.05807392568797635 -5.545750788810404 -0.7523932208971403 -5.643938497996714 0.02538830541298317 -6.082881246769018 -0.8890069299183254 -7.090320138584049 -0.006447222908070464 -6.450420964679379 -0.6826635284399174 -7.188240519124049 -0.5334174714432312 -7.941139361618053 0.004288303168351604 -8.050713318734761 -0.478223336087835 -9.166790892866176 0.02237652469014133 -9.196091163788671 -0.4549016494423948 -13.13740525360347 0.1403214759947992 -13.10922761281063 -0.5571905098427091 -9.444849024834038 -2.637915891572029 -9.56365659142571 -3.414782035487321 -8.25892496550161 -2.716294787433218 -0.8383862270638492 -6.024387405365547 -0.760980155205736 -6.138226240003666 -0.4501075387385644 -5.702039180101661 -1.931797432665722 -4.455539334599414 -3.11972454521867 -4.927496814587837 -3.036946117474684 -5.046749768110493 -1.942059996843278 -4.288237917025894 -1.840201626763001 -4.405347099302408 -1.39198761903897 -4.060249812509751 -2.072054116570976 -3.996942288506867 -2.315112412340436 -4.901759201329516 -1.743825325723805 -4.738097079607221 -3.210764357994353 -3.909876114437887 -4.29745234114743 -4.921683762233218 -3.006142084263772 -4.677607628037944 -4.63326543236224 -4.104402683678466 -5.817027785622174 -5.11390335315071 -4.404478357282174 -4.86718369880627 -6.045846395112246 -4.351127992404424 -7.574657362153948 -2.511963867763529 -8.526584459177135 -3.206102051772249 -7.68254055900837 -3.291082013018551 -8.486035206263603 -2.245302060931764 -9.850251925139794 -2.869509604712622 -8.639203837906873 -3.01900298997022 -8.979394940552526 -3.648259713923244 -12.88930466061255 -3.809766395600264 -12.8594219210069 -3.959341569141119 -8.247053604057138 -3.436684447776327 -9.391545189087976 -3.394260442828891 -9.376131742660215 -3.534536530901836 -8.688221694559164 -2.944754120167723 -8.7058236215713 -3.078954991981029 -7.8341142891939 -3.053992018602209 -8.706594682299912 -1.318227486458866 -8.793910115866449 -1.430479012716069 -8.040918009984427 -1.609661502807112 -8.080882217779717 0.5073250354274762 -8.204757539203133 0.4184993788204998 -7.846467309198026 0.203731956450229 -7.836967917690922 0.2422817623004304 -8.193916486682584 0.4584273007660447 -7.973663933481603 0.1708422317066539 -3.184266115108013 -4.914833768129049 -3.657392430113825 -5.248806784060694 -3.102673325396043 -5.034591316029415 -2.258730892786211 -4.273571014922622 -3.394592342438381 -4.827589234947812 -2.162892915154069 -4.393783806136414 -1.204920604791744 -4.132968849313659 -1.64240444746631 -4.486484675650029 -1.124263670823358 -4.256400851632963 -1.573574662755514 -4.13323415933467 -2.106744346024158 -4.33304282629061 -1.707878264920318 -5.051978381616294 -4.376892342551905 -4.270486949557792 -4.102647352655998 -5.023934951648005 -3.055364651970826 -3.986730453637497 -7.39868796456141 -2.814896261844453 -8.22936812025759 -2.7654805562517 -8.304432996410977 -3.546277958346702 -8.87990583956584 -3.966989383531663 -12.75388280914387 -4.321676615539797 -8.85003260959982 -4.105813515261139 -8.187762571847973 -3.592890692650113 -9.315494873795004 -3.699917069303213 -8.18877059368268 -3.727801701899872 -7.814820248641656 -3.142791349253691 -8.686391782372066 -3.170572816674207 -7.860413932309075 -3.269408970252542 -8.035881586078531 -1.62343299194266 -8.789396298041625 -1.445615269068238 -8.113196821760255 -1.740424407903711</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID576\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID572\">\r\n                    <input semantic=\"POSITION\" source=\"#ID570\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID571\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID572\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID573\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 16 14 15 13 17 15 17 15 15 13 18 16 17 15 18 16 19 17 19 17 18 16 20 18 19 17 20 18 21 19 21 19 20 18 22 20 21 19 22 20 23 21 24 21 25 20 26 19 25 20 27 18 26 19 26 19 27 18 28 17 27 18 29 16 28 17 28 17 29 16 30 15 29 16 31 13 30 15 30 15 31 13 32 14 32 14 31 13 33 12 31 13 34 11 33 12 33 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 2 22 6 23 40 24 41 24 7 23 3 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 44 29 49 30 50 30 45 29 51 28 48 31 52 32 53 33 54 33 55 32 51 31 56 34 57 35 58 36 59 36 60 35 61 34 62 37 63 38 57 39 60 39 64 38 65 37 66 40 67 41 63 42 67 41 66 40 68 43 69 43 70 40 71 41 64 42 71 41 70 40 68 44 72 45 67 46 71 46 73 45 69 44 40 47 6 48 72 49 73 49 7 48 41 47 74 50 75 51 76 52 77 52 78 51 79 50 80 53 74 54 81 55 82 55 79 54 83 53 80 56 84 57 85 58 86 58 87 57 83 56 85 59 88 60 89 61 90 61 91 60 86 59 89 62 92 63 93 64 94 64 95 63 90 62 93 65 92 66 96 67 97 67 95 66 94 65 44 68 43 69 49 70 50 70 46 69 45 68 48 71 49 72 52 73 55 73 50 72 51 71 53 74 52 75 98 76 99 76 55 75 54 74 56 77 62 78 57 79 60 79 65 78 61 77 66 80 63 81 62 82 65 82 64 81 70 80 68 83 40 84 72 85 73 85 41 84 69 83 74 86 76 87 81 88 82 88 77 87 79 86 80 89 81 90 84 91 87 91 82 90 83 89 85 92 84 93 88 94 91 94 87 93 86 92 89 95 88 96 92 97 95 97 91 96 90 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID577\">\r\n            <mesh>\r\n                <source id=\"ID578\">\r\n                    <float_array count=\"300\" id=\"ID582\">-0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID582\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID579\">\r\n                    <float_array count=\"300\" id=\"ID583\">-0.1088481568860517 0.5923386087106918 -0.7983026063925831 -0.1152614763458105 0.5789463800012497 -0.8071777258782806 -0.1164251204271865 0.5786308311400867 -0.8072369866325796 0.1164251204271865 -0.5786308311400867 0.8072369866325796 0.1152614763458105 -0.5789463800012497 0.8071777258782806 0.1088481568860517 -0.5923386087106918 0.7983026063925831 -0.1108311632331452 0.590147562033904 -0.7996513667104105 0.1108311632331452 -0.590147562033904 0.7996513667104105 -0.1169877446230861 0.6008761854127825 -0.7907348970494391 0.1169877446230861 -0.6008761854127825 0.7907348970494391 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211500310125118 0.5973661817498072 -0.7927649808659082 0.1211500310125118 -0.5973661817498072 0.7927649808659082 -0.1289733966194932 0.6455983790150909 -0.7527075102438648 -0.1321771951964776 0.641516467688795 -0.7556360306087073 -0.1268970330673193 0.6330602330777329 -0.763630725085285 0.1268970330673193 -0.6330602330777329 0.763630725085285 0.1321771951964776 -0.641516467688795 0.7556360306087073 0.1289733966194932 -0.6455983790150909 0.7527075102438648 -0.1318920760546484 0.6528924852832206 -0.7458792683368364 -0.1366192134527518 0.6467025975280807 -0.7504071833784541 0.1366192134527518 -0.6467025975280807 0.7504071833784541 0.1318920760546484 -0.6528924852832206 0.7458792683368364 -0.5584055108423882 0.6651998527735585 -0.4956737246726797 -0.5581385279990985 0.6633895104200506 -0.4983931590899352 -0.5451959861481726 0.685035348561869 -0.4832058649360955 0.5451959861481726 -0.685035348561869 0.4832058649360955 0.5581385279990985 -0.6633895104200506 0.4983931590899352 0.5584055108423882 -0.6651998527735585 0.4956737246726797 -0.5144129314214905 0.6776483658738426 -0.5255207210137955 -0.4970796441004287 0.6888461887919656 -0.5276388496005341 0.4970796441004287 -0.6888461887919656 0.5276388496005341 0.5144129314214905 -0.6776483658738426 0.5255207210137955 -0.3524751158962745 0.7672119047738485 -0.5358611628464889 -0.3065368645499978 0.7874550645024714 -0.5347426222597793 0.3065368645499978 -0.7874550645024714 0.5347426222597793 0.3524751158962745 -0.7672119047738485 0.5358611628464889 -0.4568675187823961 0.2091268429512146 -0.864602818546687 -0.4286959899151095 0.03977866415051463 -0.9025726597394278 -0.454140017835944 0.1871034341906217 -0.8710620810906903 0.454140017835944 -0.1871034341906217 0.8710620810906903 0.4286959899151095 -0.03977866415051463 0.9025726597394278 0.4568675187823961 -0.2091268429512146 0.864602818546687 -0.4574112545118764 0.4314471465815102 -0.7775784873262276 -0.4610330568129479 0.4223904034843316 -0.7804068602786966 0.4610330568129479 -0.4223904034843316 0.7804068602786966 0.4574112545118764 -0.4314471465815102 0.7775784873262276 -0.5040287169911085 0.4972319905766404 -0.7061978476287568 -0.4985686990456941 0.4987245144832661 -0.7090155929070352 0.4985686990456941 -0.4987245144832661 0.7090155929070352 0.5040287169911085 -0.4972319905766404 0.7061978476287568 -0.5497106232233426 0.5162657272219958 -0.6567251553057397 -0.5535723758972673 0.5174191484113569 -0.6525603799655021 0.5535723758972673 -0.5174191484113569 0.6525603799655021 0.5497106232233426 -0.5162657272219958 0.6567251553057397 -0.6328126226365115 0.4957425846370723 -0.5948003651724295 -0.6307511085987073 0.4969187375520394 -0.5960073886045282 0.6307511085987073 -0.4969187375520394 0.5960073886045282 0.6328126226365115 -0.4957425846370723 0.5948003651724295 -0.1240850473728673 0.6156224677283072 -0.7782106901389768 -0.1257030963027143 0.6143256787305055 -0.7789754116993772 0.1257030963027143 -0.6143256787305055 0.7789754116993772 0.1240850473728673 -0.6156224677283072 0.7782106901389768 -0.1260524294574446 0.6335694907637545 -0.7633482071775848 0.1260524294574446 -0.6335694907637545 0.7633482071775848 -0.5412748879965412 0.687898621088518 -0.4835462570725241 0.5412748879965412 -0.687898621088518 0.4835462570725241 -0.4272470439601668 0.04043528853901111 -0.9032302867309456 0.4272470439601668 -0.04043528853901111 0.9032302867309456</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID583\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID581\">\r\n                    <float_array count=\"196\" id=\"ID584\">2.646808655273745 7.626911531842514 2.986714499689779 10.86290628058702 1.998937623161384 10.76476841980763 2.753392543137154 7.603757279601984 3.73149548145001 7.745943970176235 3.137910672426441 10.83666032021479 2.986360958528956 6.654920534525154 3.799485555325677 7.718958628996464 2.820184296480023 7.581971421901169 -2.95700400690178 2.488800756097747 -2.971172988345912 1.772671627247351 -2.594993336245468 2.091126521667093 -3.76863480279438 3.318475734997433 -3.431737630961593 2.084911934129343 -4.453542058358801 2.75223422874128 -4.08577743896114 3.685864912838015 -4.53685698336594 3.700681803303125 -5.569883206520585 3.476406390468299 -5.235605254682731 3.939530432036485 -5.959241747873955 4.31281594366269 -6.249633121797126 3.879151418789206 -6.88113622380909 4.847979343375632 -7.230760792342645 4.457246732780551 -9.888780236097874 6.819957862866433 -10.45577002727441 6.283216928777442 2.835843568044133 6.696637019396241 3.81895079101609 6.819175129102827 3.625763036746231 7.771438100407487 3.373113844173326 3.843845654733742 4.353287423553801 3.987980441594453 4.147409147623762 5.020072757806616 3.441920088820501 3.382462419447546 4.425017633747888 3.516183683878827 4.329822052382522 3.988576604581577 2.230352107905733 4.329484501746936 2.056359603288195 4.291999654325147 2.288473777971453 3.838233246252393 2.009452657357155 5.389437917116684 1.846819489349988 5.343682783349156 2.335103140462541 4.369785709347631 3.459288365190417 5.567061823306501 3.317376742139041 5.502219060815397 3.432423115070612 5.067446679764254 -4.074900648768324 5.522217060790011 -3.625507904080766 5.488165434978679 -4.027123668961578 5.648598042583979 -0.4737934490769319 6.534086009615941 -0.9192721422585309 7.044197939014103 -1.028756012507091 6.944701516300213 -0.7779385115273918 7.439108605446435 -0.2529975353390784 6.897934716972006 -0.6357437305888969 7.514537810738175 -0.9697804840218809 7.326856963524517 -1.497398853673659 8.118176192147216 -1.653891145271553 8.049854498656151 -4.608304711025181 10.23293734499374 -2.240674467155615 7.779841628900575 -4.443807657891354 10.31154936901565 2.910250464513155 6.064224792957607 3.895902912319825 6.178304156875717 3.75622254964643 6.838662211659464 3.960090801378393 6.133215747935012 3.191931818886059 4.899905221596626 4.178668992404626 5.008016229071481 2.9733499521145 6.025115824772509 2.981756068882562 6.041430594450256 3.836421506115961 6.809938349919037 2.853014213669746 6.688899456137831 3.403561010679153 3.827721629442527 4.186013224173247 5.000603531797977 3.19913319123502 4.893302521149462 3.493767507501942 3.347032692092354 4.38943376548893 3.946035659923494 3.408140364595802 3.806695969447152 1.628068030784827 5.400671769098429 1.994848645956156 4.389698935824643 2.168577740868163 4.427932373500567 2.393635605078873 4.309488781848157 2.442902545374851 3.817638953721654 2.605226202472054 3.872011356930058 1.76553688369938 5.855830345560892 1.832450069184318 5.358546584306009 1.995011165963287 5.404459939837887 -3.582332382251634 5.498604840327278 -3.558007158969994 5.626281209275753 -3.982493890322007 5.661270718905809 -0.5199101826953312 6.531590478244566 -0.4026134045726859 6.625773062040189 -0.9689320567369109 7.039776299560601 0.3219388629227055 6.921678714189059 0.4484293081867797 7.007795171809001 -0.01524134949612947 7.554529442168967 -0.4343023409365476 7.391532441464667 -0.2892066006479271 7.463461634669913 -0.9145523620121765 8.201304268657363 -1.364385652116661 7.987424724987632 -1.205987261730729 8.052971772803227 -3.35620196045869 10.62525094866661</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID584\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID580\">\r\n                    <input semantic=\"POSITION\" source=\"#ID578\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID579\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID580\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID581\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 6 7 0 8 5 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 15 14 13 12 16 15 15 14 16 15 17 16 15 14 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 18 17 20 19 21 20 21 20 20 19 22 21 21 20 22 21 23 22 23 22 22 21 24 23 23 22 24 23 25 24 26 24 27 23 28 22 27 23 29 21 28 22 28 22 29 21 30 20 29 21 31 19 30 20 30 20 31 19 32 17 31 19 33 18 32 17 33 18 34 16 32 17 32 17 34 16 35 14 34 16 36 15 35 14 36 15 37 12 35 14 35 14 37 12 38 13 38 13 37 12 39 10 37 12 40 9 39 10 41 11 39 10 40 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 55 39 58 39 62 38 63 37 64 40 65 41 61 42 62 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 68 46 74 47 75 48 76 48 77 47 73 46 78 49 75 50 79 51 80 51 76 50 81 49 78 52 82 53 83 54 84 54 85 53 81 52 86 55 83 56 87 57 88 57 84 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 94 62 46 63 94 62 91 61 90 64 93 64 92 61 95 62 47 63 95 62 92 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 60 74 55 75 54 76 59 76 58 75 63 74 54 77 56 78 96 79 97 79 57 78 59 77 64 80 61 81 60 82 63 82 62 81 67 80 69 83 98 84 70 85 71 85 99 84 72 83 68 86 70 87 74 88 77 88 71 87 73 86 75 89 74 90 79 91 80 91 77 90 76 89 78 92 79 93 82 94 85 94 80 93 81 92 83 95 82 96 87 97 88 97 85 96 84 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID585\">\r\n            <mesh>\r\n                <source id=\"ID586\">\r\n                    <float_array count=\"180\" id=\"ID590\">-0.5298591187803394 0.3053530486319291 0.657905410261265 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID590\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID587\">\r\n                    <float_array count=\"180\" id=\"ID591\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID591\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID589\">\r\n                    <float_array count=\"120\" id=\"ID592\">-6.107060972638583 10.3510451214439 -6.227565367325356 8.494179944032663 -5.98671614912405 9.138399969870253 -6.540672166948984 11.6205228613906 -6.901978847139394 10.23735513419642 -6.853807126191143 9.252082277676843 -7.239162120697529 13.30684774139463 -7.335486789514798 11.50684232576269 -10.06778605077227 19.04794340165244 -7.985814033393162 13.15527448152569 -10.82793655825754 18.80162710738276 -4.083905012052296 5.898375335431962 -4.306234587730349 4.811018489749948 -3.385471377541194 5.140468275977997 -5.553161274050962 7.679445612741617 -5.041763826525845 4.277439417764588 -5.726108265179133 5.043303854792981 -7.390247861223824 6.714910200247886 -7.717772010128141 8.570258983447072 -8.150745295211088 7.481316037858777 -8.858556458189856 8.193395738456855 -9.003512412931656 7.511347968262671 -10.02743369272711 8.549250986811536 -10.42232541141175 7.994811895109255 -11.41290570274134 9.284142171201117 -11.80775011326652 8.729689492795748 -13.18353596539283 10.30339123710937 -13.60830466398959 9.797102239768163 -19.04886463418979 14.25191163615645 -19.59188570890547 13.76630396384998 -9.795942854452735 6.88315198192499 -9.524432317094897 7.125955818078223 -6.804152331994795 4.898551119884082 -6.591767982696415 5.151695618554686 -5.903875056633261 4.364844746397874 -5.706452851370669 4.642071085600558 -5.211162705705876 3.997405947554627 -5.013716846363556 4.274625493405768 -4.501756206465828 3.755673984131335 -4.429278229094928 4.096697869228428 -4.075372647605544 3.740658018929389 -3.858886005064071 4.285129491723536 -3.695123930611912 3.357455100123943 -3.426903563095571 4.626041138838422 -3.270336083474492 5.8102614306953 -3.113782683662678 4.247089972016331 -2.863054132589566 2.521651927396491 -2.776580637025481 3.839722806370808 -2.520881913262922 2.138719708882294 -2.153117293865174 2.405509244874974 -2.041952506026148 2.949187667715981 -1.692735688770597 2.570234137988999 -5.413968279128769 9.400813553691382 -5.033893025386136 9.52397170082622 -3.992907016696581 6.577637240762844 -3.667743394757399 5.753421162881343 -3.619581060348764 6.653423870697313 -3.450989423569697 5.118677567098211 -3.053530486319291 5.175522560721952 -2.993358074562025 4.569199984935127</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID592\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID588\">\r\n                    <input semantic=\"POSITION\" source=\"#ID586\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID587\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID588\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID589\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 4 4 5 5 4 4 3 3 6 6 4 4 6 6 7 7 7 7 6 6 8 8 7 7 8 8 9 9 9 9 8 8 10 10 11 11 12 12 13 13 12 12 11 11 14 14 12 12 14 14 15 15 15 15 14 14 16 16 16 16 14 14 1 1 16 16 1 1 17 17 17 17 1 1 5 5 5 5 1 1 3 3 17 17 5 5 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 25 25 24 24 26 26 25 25 26 26 27 27 27 27 26 26 28 28 27 27 28 28 29 29</p>\r\n                </triangles>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID588\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID589\"/>\r\n                    <p>30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 33 33 35 35 34 34 34 34 35 35 36 36 35 35 37 37 36 36 36 36 37 37 38 38 37 37 39 39 38 38 38 38 39 39 40 40 39 39 41 41 40 40 40 40 41 41 42 42 41 41 43 43 42 42 44 44 45 45 43 43 43 43 45 45 42 42 42 42 45 45 46 46 45 45 47 47 46 46 46 46 47 47 48 48 48 48 47 47 49 49 47 47 50 50 49 49 51 51 49 49 50 50 52 52 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 55 55 56 56 57 57 56 56 44 44 57 57 43 43 57 57 44 44 44 44 58 58 45 45 59 59 45 45 58 58</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID593\">\r\n            <mesh>\r\n                <source id=\"ID594\">\r\n                    <float_array count=\"240\" id=\"ID598\">-0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID598\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID595\">\r\n                    <float_array count=\"240\" id=\"ID599\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6658812119562829 0.05557583132515614 -0.7439849047770725 -0.6630700206644244 0.06601587505827476 -0.7456406989538392 -0.672990936518585 0.2791484701318099 -0.6849520647365829 0.672990936518585 -0.2791484701318099 0.6849520647365829 0.6630700206644244 -0.06601587505827476 0.7456406989538392 0.6658812119562829 -0.05557583132515614 0.7439849047770725 -0.6145075341081261 -0.01519103171901108 -0.7887646816888181 -0.6113304972219287 -0.01491894967988539 -0.791234761690131 0.6113304972219287 0.01491894967988539 0.791234761690131 0.6145075341081261 0.01519103171901108 0.7887646816888181 -0.6145579693011508 0.4591343117628982 0.6414937148019891 -0.6630483910174163 0.498855229375798 0.5581310699948852 -0.6113858088080906 0.4608262320043037 0.643309083322156 0.6113858088080906 -0.4608262320043037 -0.643309083322156 0.6630483910174163 -0.498855229375798 -0.5581310699948852 0.6145579693011508 -0.4591343117628982 -0.6414937148019891 -0.6730103961097779 0.633535161008159 0.3816938648898171 -0.6658642050055886 0.4894684515523368 0.563067931449868 0.6658642050055886 -0.4894684515523368 -0.563067931449868 0.6730103961097779 -0.633535161008159 -0.3816938648898171 -0.6701444240931888 0.6340128793903517 0.3859198357482596 -0.6288817366873886 0.7353849506127249 0.2524217416812069 0.6288817366873886 -0.7353849506127249 -0.2524217416812069 0.6701444240931888 -0.6340128793903517 -0.3859198357482596 -0.6252123795686114 0.7697839976649213 -0.1286160074530658 -0.658578304891523 0.7141210938325098 -0.2372881785291209 -0.6193201491348418 0.7741457966357958 -0.1309230248150662 0.6193201491348418 -0.7741457966357958 0.1309230248150662 0.658578304891523 -0.7141210938325098 0.2372881785291209 0.6252123795686114 -0.7697839976649213 0.1286160074530658 -0.6252712636549731 0.6936274305614512 -0.3576546300833142 -0.6193894345161001 0.698494696426414 -0.3584158024892286 0.6193894345161001 -0.698494696426414 0.3584158024892286 0.6252712636549731 -0.6936274305614512 0.3576546300833142 -0.6289250440898284 0.438067046954839 -0.6423009818526467 -0.6701291299022093 0.2769832769238545 -0.6886270496872973 0.6701291299022093 -0.2769832769238545 0.6886270496872973 0.6289250440898284 -0.438067046954839 0.6423009818526467 -0.6219814506780375 0.7414065190456863 0.2519036492967151 0.6219814506780375 -0.7414065190456863 -0.2519036492967151 -0.6632653245983359 0.7102034419860702 -0.2359876695435651 0.6632653245983359 -0.7102034419860702 0.2359876695435651 -0.6220409688791525 0.4431898766144704 -0.6454825840426184 0.6220409688791525 -0.4431898766144704 0.6454825840426184</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID599\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID597\">\r\n                    <float_array count=\"132\" id=\"ID600\">11.17320201782601 5.536950720255618 9.132267951340403 4.075553710198706 11.35265838639835 5.335723967790457 8.828758325209945 4.21581308609941 8.272822123002557 3.384285294404218 7.958813840120982 3.46689333538805 8.073268797801365 2.865498302382628 13.17319575342934 1.025474877244218 10.29819330692128 0.7370029567927344 13.18256427081902 0.7797863034262775 10.43461727267754 0.9922419491244857 9.220172518723757 1.141427050559116 9.031436992618183 0.9274041343529934 8.665601494827795 1.463091360543377 8.36173593111768 1.273861371559148 8.18085731407338 2.115010321233234 7.866647783783838 2.032874418182379 7.685815723975792 2.874023367856466 10.95406190306286 1.514596294059031 10.9820680884364 1.705023222924476 9.743740101464573 1.988437824085204 13.08422968449263 3.199757330669627 13.07267779495826 3.379665889560748 10.18916535332233 3.309702731294755 11.36545721424794 6.006842844578951 9.664606296230362 4.161713060886227 11.53679451320826 5.887322116789082 8.87938669524374 3.718691191733911 9.54294143455537 4.58860161283133 9.357925723043625 4.713345186989823 8.394680517829666 3.989110993373233 8.433829724268323 3.302053148008258 8.621195066914398 3.915152656841173 7.959361423291862 2.521603384444761 8.30581624406488 1.662156996532964 8.192850961276159 2.510608965499221 8.468953380353767 1.050766553539041 8.589066946989393 0.1540948178637264 8.797428992253618 0.2377375302496965 9.395660232283182 0.6451734807435667 9.821862682408826 0.04469772784885676 9.9650088203073 0.2013483060752452 13.05993379571968 3.110797586965738 10.16431663537896 3.21133071886602 10.18010204372508 3.02003618013284 9.626254877814432 1.862045396082188 10.93264464736882 1.574955679289271 9.717512492742973 2.041116121749284 9.604226472762715 4.0114184348044 9.776872146541788 3.876144995495381 11.58740893055048 5.655514610796291 8.689895478581324 3.740148740343702 8.911424637990344 3.657371138622741 9.401641036197944 4.648499728985229 8.215118084369612 4.081528994233212 8.033717664007693 3.406265074033831 8.267186516090369 3.395002083835391 8.111839397566158 2.603469864687234 8.228261606106596 1.705594495213734 8.464930288377673 1.745696425622322 9.135802437258771 0.2031367210126086 9.724851614784443 -0.308343230978199 9.330301350185701 0.305373195999198 8.620257114820655 1.19753825098844 8.384287130441004 1.154964469876548 8.762482845796232 0.3028705175705735</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID600\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID596\">\r\n                    <input semantic=\"POSITION\" source=\"#ID594\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID595\"/>\r\n                </vertices>\r\n                <triangles count=\"64\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID596\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID597\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 7 7 8 8 9 9 8 8 7 7 10 10 8 8 10 10 11 11 8 8 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 6 6 16 16 6 6 5 5 16 16 5 5 17 17 18 17 19 5 20 16 19 5 21 6 20 16 21 6 22 15 20 16 20 16 22 15 23 14 22 15 24 13 23 14 23 14 24 13 25 12 24 13 26 11 25 12 25 12 26 11 27 8 26 11 28 10 27 8 28 10 29 7 27 8 30 9 27 8 29 7 21 6 19 5 31 4 19 5 32 3 31 4 31 4 32 3 33 1 32 3 34 0 33 1 35 2 33 1 34 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 37 23 40 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 47 28 53 29 54 29 50 28 55 27 56 30 57 31 52 32 55 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 70 39 71 40 38 41 39 41 72 40 73 39 42 42 37 43 36 44 41 44 40 43 45 42 71 45 36 46 38 47 39 47 41 46 72 45 53 48 47 49 46 50 51 50 50 49 54 48 56 51 52 52 53 53 54 53 55 52 59 51 56 54 74 55 57 56 58 56 75 55 59 54 60 57 76 58 61 59 64 59 77 58 65 57 78 60 71 61 70 62 73 62 72 61 79 60 61 63 76 64 66 65 69 65 77 64 64 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID601\">\r\n            <mesh>\r\n                <source id=\"ID602\">\r\n                    <float_array count=\"300\" id=\"ID606\">-0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID606\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID603\">\r\n                    <float_array count=\"300\" id=\"ID607\">-0.1088540514781176 -0.584331089942785 -0.8041815546274835 -0.1164339797874606 -0.5705294778991202 -0.8129816991784074 -0.1152698562505582 -0.5708457404589754 -0.8129255813663509 0.1152698562505582 0.5708457404589754 0.8129255813663509 0.1164339797874606 0.5705294778991202 0.8129816991784074 0.1088540514781176 0.584331089942785 0.8041815546274835 -0.1108435503727157 -0.5821217352458851 -0.8055110133915557 0.1108435503727157 0.5821217352458851 0.8055110133915557 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170176206764311 -0.5929274844702175 -0.7967081489548396 0.1170176206764311 0.5929274844702175 0.7967081489548396 -0.5144163086132454 -0.6723630224863056 -0.5322629307267247 -0.5581062161838647 -0.6583968034238775 -0.505006040259074 -0.4970751144160029 -0.683545041602595 -0.5344927564792851 0.4970751144160029 0.683545041602595 0.5344927564792851 0.5581062161838647 0.6583968034238775 0.505006040259074 0.5144163086132454 0.6723630224863056 0.5322629307267247 -0.5583798869887992 -0.6602297154995238 -0.5023033192980051 -0.5452373970371485 -0.6801451362856548 -0.4900191572368603 0.5452373970371485 0.6801451362856548 0.4900191572368603 0.5583798869887992 0.6602297154995238 0.5023033192980051 -0.1318903393557705 -0.6453922059420187 -0.7523787868447079 -0.1321750213771143 -0.6339255398774245 -0.7620158617870596 -0.1366232935947715 -0.6391496733784974 -0.7568498996944356 0.1366232935947715 0.6391496733784974 0.7568498996944356 0.1321750213771143 0.6339255398774245 0.7620158617870596 0.1318903393557705 0.6453922059420187 0.7523787868447079 -0.1289732790216521 -0.6380369665418767 -0.7591276062852959 -0.1269071717687836 -0.6253899701404045 -0.7699233435878096 0.1269071717687836 0.6253899701404045 0.7699233435878096 0.1289732790216521 0.6380369665418767 0.7591276062852959 -0.1241010714283334 -0.6078068716321187 -0.7843275660507647 -0.1257095939325673 -0.6065122404802681 -0.7850732450803013 -0.1260674500275698 -0.6258988106438125 -0.7696477615625263 0.1260674500275698 0.6258988106438125 0.7696477615625263 0.1241010714283334 0.6078068716321187 0.7843275660507647 0.1257095939325673 0.6065122404802681 0.7850732450803013 -0.1211769958232875 -0.5894025390301889 -0.7986994319942953 0.1211769958232875 0.5894025390301889 0.7986994319942953 -0.5535679708898417 -0.5108673680079583 -0.6577058870874768 -0.6327553060025942 -0.489798292648837 -0.5997652501136153 -0.630695063396688 -0.4909614247884672 -0.6009830416714983 0.630695063396688 0.4909614247884672 0.6009830416714983 0.6327553060025942 0.489798292648837 0.5997652501136153 0.5535679708898417 0.5108673680079583 0.6577058870874768 -0.5040208671260086 -0.4901460352175064 -0.7111398102076026 -0.5497067787296889 -0.5096714306261669 -0.6618591165966555 0.5497067787296889 0.5096714306261669 0.6618591165966555 0.5040208671260086 0.4901460352175064 0.7111398102076026 -0.4985571397014289 -0.4916144428633812 -0.7139720008661804 -0.4609719154458496 -0.4145896076660237 -0.7846147783374444 0.4609719154458496 0.4145896076660237 0.7846147783374444 0.4985571397014289 0.4916144428633812 0.7139720008661804 -0.4568505475577015 -0.2004861491589987 -0.8666561493416083 -0.4573491576022501 -0.4236797699590816 -0.7818741590357953 0.4573491576022501 0.4236797699590816 0.7818741590357953 0.4568505475577015 0.2004861491589987 0.8666561493416083 -0.4286900949630499 -0.03074629865061099 -0.9029282737847225 -0.4541268962482883 -0.1783764702348078 -0.8728978158813705 0.4541268962482883 0.1783764702348078 0.8728978158813705 0.4286900949630499 0.03074629865061099 0.9029282737847225 -0.3523735052985816 -0.7618774628075067 -0.5434847232715808 -0.3063976859348787 -0.7821413631807209 -0.5425636792631395 0.3063976859348787 0.7821413631807209 0.5425636792631395 0.3523735052985816 0.7618774628075067 0.5434847232715808 -0.5413340802838006 -0.6829922424325828 -0.4903865927002937 0.5413340802838006 0.6829922424325828 0.4903865927002937 -0.4272481797681519 -0.03139308917336886 -0.9035892135461523 0.4272481797681519 0.03139308917336886 0.9035892135461523</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID607\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID605\">\r\n                    <float_array count=\"196\" id=\"ID608\">-2.610060487118674 7.619753708788435 -1.948631865258435 10.75586386611057 -2.935981608932602 10.85663512075862 -2.719262994468259 7.596384747860257 -3.090772258404805 10.83022540427713 -3.69679133168683 7.740997122795123 9.993834386692768 6.697166556715506 7.305900416866997 4.355477009968277 10.55396224199972 6.155992813056084 6.961259725370663 4.748945569060884 6.317450494552758 3.785131728647392 6.032602059962001 4.221058734951406 5.632646490923408 3.387754924869541 5.304258404919437 3.853486727345086 4.50713919916442 2.672402010274958 4.602543987106065 3.620146029906336 4.151239165752258 3.608874678226097 3.476915045794671 2.013146968314747 3.829487363207134 3.243997859007959 3.007344018484941 2.420750867493745 3.012389283490861 1.704548783954941 2.640320935711225 2.025948153228608 -2.788788460198426 7.572962376067476 -3.767581555079931 7.71218000849874 -2.958384683729662 6.646322239064626 -1.949330144772716 5.368941012682137 -2.284182369127702 4.351127936247142 -1.787116026856405 5.322273542286981 -2.178006254645743 4.308764307005029 -2.240688841859411 3.817870637244726 -2.004373405150739 4.27027736655339 -3.424324889167503 3.37281876876143 -4.309776294106773 3.981152767028634 -4.406878702077174 3.508993181485741 -3.353896149640327 3.834780310909004 -4.123486029284101 5.012918456920043 -4.33348685434635 3.981344992154811 -4.15522701980411 5.000954905113102 -2.945912001956207 6.015132060051506 -3.932224531327764 6.125626458280218 -3.168915308745923 4.890452789232343 -2.880014071898048 6.056684529967771 -3.722631041023821 6.8333627787756 -3.865167419372976 6.173403206929011 -2.803637068433257 6.688943611917154 -3.589002991997068 7.76577639285253 -3.786233442174673 6.814013616893653 2.352155135876836 7.732019785561647 4.750224669518837 10.16676035099951 4.58673566867724 10.24664292795459 1.077703269353097 7.292616194349058 1.771051416478688 8.010154330456691 1.615439914209591 8.079710179245698 0.8917779093368455 7.409005396259467 0.7506151581350007 7.485622764389828 0.3595836739408692 6.872236538923343 0.6025386688846102 6.509881421450357 1.164565261957301 6.91447012137925 1.05683395826347 7.015137815428471 3.803209898733897 5.402796817356368 4.253535901802713 5.428742796817378 4.209437347221686 5.555948874626798 -3.4228971200836 5.548400610587399 -3.398703655180526 5.048706996552484 -3.281343791480293 5.483076573831793 -1.700902869676162 5.834124829345437 -1.934455908459623 5.38406533167012 -1.772317777748014 5.337234730377968 -1.563862617851588 5.377877017135567 -2.113718735031875 4.408380312461595 -1.940368773200062 4.369112149830636 -2.342549230029242 4.289545610607819 -2.558103344791782 3.853272065013154 -2.396266153697702 3.797994575249178 -3.477653760136398 3.336397819512019 -3.390320269200981 3.795864862738408 -4.371090681150245 3.937463004736838 -3.384938017023071 3.81842371163158 -3.176364284525369 4.883517101095137 -4.162826579523441 4.993184227830971 -2.821558507236654 6.680662886123442 -3.804473587643869 6.804173406389755 -2.952987580260624 6.033504265500596 1.47307452581419 7.94934296837219 3.496248995700073 10.57238716409893 1.315460912566759 8.016050776524924 0.538204523295595 7.363180085962341 1.02837778858371 8.169264935007575 0.3940072705090324 7.436216706816778 -0.2216517634023708 6.902275859416785 0.1235323511647279 7.532459053158027 -0.3470360049582089 6.989381151517559 0.6495041291754328 6.506652750037433 1.107371202240202 7.009909940338497 0.5338562939897318 6.602089407485308 3.762660802913122 5.413427654679166 4.167566621199896 5.568730472320866 3.74214220390277 5.54151624829845</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID608\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID604\">\r\n                    <input semantic=\"POSITION\" source=\"#ID602\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID603\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID604\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID605\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 2 4 6 5 7 5 3 4 5 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 16 14 15 13 17 15 16 14 17 15 18 16 16 14 18 16 19 17 19 17 18 16 20 18 19 17 20 18 21 19 19 17 21 19 22 20 22 20 21 19 23 21 24 21 25 19 26 20 26 20 25 19 27 17 25 19 28 18 27 17 28 18 29 16 27 17 27 17 29 16 30 14 29 16 31 15 30 14 31 15 32 13 30 14 30 14 32 13 33 12 32 13 34 11 33 12 33 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 0 22 6 23 40 24 41 24 7 23 5 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 43 30 46 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 59 37 62 38 63 39 62 38 59 37 64 40 65 40 60 37 66 38 67 39 66 38 60 37 62 41 68 42 63 43 67 43 69 42 66 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 70 51 77 52 78 52 75 51 79 50 76 53 80 54 81 55 82 55 83 54 79 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 92 62 44 63 93 64 94 64 45 63 95 62 92 65 42 66 44 67 45 67 47 66 95 65 42 68 48 69 43 70 46 70 51 69 47 68 48 71 96 72 49 73 50 73 97 72 51 71 52 74 58 75 53 76 56 76 61 75 57 74 58 77 64 78 59 79 60 79 65 78 61 77 40 80 68 81 62 82 66 82 69 81 41 80 70 83 72 84 77 85 78 85 73 84 75 83 76 86 77 87 80 88 83 88 78 87 79 86 81 89 80 90 85 91 86 91 83 90 82 89 84 92 85 93 89 94 90 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID609\">\r\n            <mesh>\r\n                <source id=\"ID610\">\r\n                    <float_array count=\"180\" id=\"ID614\">-0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5473779309113525 1.195018672079414</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID614\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID611\">\r\n                    <float_array count=\"180\" id=\"ID615\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID615\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID613\">\r\n                    <float_array count=\"120\" id=\"ID616\">10.18738032658465 19.04794340165245 8.105455617364823 13.15527448152571 10.94755861822705 18.80162710738278 7.358775169589009 13.30684774139464 7.455165168721541 11.50684232576267 7.021610669109959 10.23735513419643 6.660275453839438 11.62052286139061 6.973438948161821 9.252082277676829 6.226729965305786 10.35104512144388 6.34719681383455 8.494179944032666 6.106319436014469 9.138399969870267 19.2668110713613 14.01201653592069 13.76983724756887 9.60023445609569 19.80366406321081 13.52217335660197 13.3515820564935 10.10985633078179 11.95582315006028 8.547050531634294 11.56802765527242 9.104569669858437 10.56113355821253 7.823090735984151 10.17331027926723 8.380616962922931 9.136256855185536 7.350812800878698 8.999992836063413 8.033974680727708 8.283114275883213 7.327495655441081 7.849390818560094 8.493335205535086 7.512957717242513 6.567116406747775 5.827651849983826 4.90867469051484 5.672811493639108 7.679445612741619 5.133601729440363 4.148245525455751 4.203545845101182 5.898375335431982 4.414968261826749 4.748609150477415 3.505102824050252 5.140468275978011 1.752551412025126 2.570234137989006 2.101772922550591 2.949187667715991 2.207484130913374 2.374304575238707 2.566800864720181 2.074122762727876 2.836405746819554 3.839722806370809 2.913825924991913 2.45433734525742 3.173598406917275 4.247089972016333 3.330137726919719 5.810261430695305 3.48671947408091 4.626041138838414 3.756478858621256 3.283558203373887 3.924695409280047 4.246667602767543 4.141557137941606 3.66374782772054 4.499996418031707 4.016987340363854 4.568128427592768 3.675406400439349 5.086655139633613 4.190308481461465 5.280566779106266 3.911545367992075 5.784013827636212 4.552284834929218 5.977911575030141 4.273525265817147 6.675791028246748 5.054928165390897 6.884918623784433 4.800117228047845 9.633405535680648 7.006008267960344 9.901832031605407 6.761086678300985 3.053159718007235 4.569199984935134 3.113364982652893 5.175522560721941 3.51080533455498 5.118677567098216 3.679387584794505 6.65342387069732 3.72758258436077 5.753421162881336 4.052727808682412 6.577637240762856 5.093690163292324 9.523971700826227 5.473779309113525 9.400813553691391</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID616\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID612\">\r\n                    <input semantic=\"POSITION\" source=\"#ID610\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID611\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID612\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID613\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 5 5 6 6 7 7 8 8 9 9 6 6 9 9 8 8 10 10 11 11 12 12 13 13 12 12 11 11 14 14 12 12 14 14 15 15 15 15 14 14 16 16 15 15 16 16 17 17 17 17 16 16 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 7 7 23 23 7 7 24 24 24 24 7 7 9 9 9 9 7 7 6 6 24 24 9 9 25 25 24 24 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29</p>\r\n                </triangles>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID612\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID613\"/>\r\n                    <p>30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 33 33 34 34 35 35 34 34 36 36 35 35 37 37 38 38 36 36 36 36 38 38 35 35 35 35 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 47 47 46 46 48 48 47 47 47 47 48 48 49 49 48 48 50 50 49 49 51 51 49 49 50 50 52 52 53 53 36 36 37 37 36 36 53 53 38 38 37 37 54 54 37 37 55 55 54 54 54 54 55 55 56 56 56 56 55 55 57 57 55 55 58 58 57 57 59 59 57 57 58 58</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID617\">\r\n            <mesh>\r\n                <source id=\"ID618\">\r\n                    <float_array count=\"300\" id=\"ID622\">-0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID622\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID619\">\r\n                    <float_array count=\"300\" id=\"ID623\">-0.1088387569614722 0.01315362923910896 0.9939723874539582 -0.1152536654891546 0.0291861515433436 0.9929072268592888 -0.1164175568789908 0.02947304770899976 0.9927629585702068 0.1164175568789908 -0.02947304770899976 -0.9927629585702068 0.1152536654891546 -0.0291861515433436 -0.9929072268592888 0.1088387569614722 -0.01315362923910896 -0.9939723874539582 -0.1108275343076859 0.0157188274115992 0.9937153395737044 0.1108275343076859 -0.0157188274115992 -0.9937153395737044 -0.1169992818606147 0.001779387199382528 0.9931304052466096 0.1169992818606147 -0.001779387199382528 -0.9931304052466096 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211613462438688 0.005798762209368286 0.9926158887168858 0.1211613462438688 -0.005798762209368286 -0.9926158887168858 -0.1289723073749611 -0.05683794718569368 0.990017975437868 -0.1321721693293524 -0.05182041772276032 0.9898712855527286 -0.1269009350449967 -0.04024779597736024 0.9910985155894797 0.1269009350449967 0.04024779597736024 -0.9910985155894797 0.1321721693293524 0.05182041772276032 -0.9898712855527286 0.1289723073749611 0.05683794718569368 -0.990017975437868 -0.1318875386354734 -0.06677197077271543 0.9890132360447983 -0.1366133769342704 -0.05910629755485246 0.9888595607223364 0.1366133769342704 0.05910629755485246 -0.9888595607223364 0.1318875386354734 0.06677197077271543 -0.9890132360447983 -0.558028898390844 -0.2252503846026686 0.7986651443484001 -0.5451251899441658 -0.2516490044651679 0.7996945078215975 -0.5582945311177081 -0.2283387439749839 0.7976018019814056 0.5582945311177081 0.2283387439749839 -0.7976018019814056 0.5451251899441658 0.2516490044651679 -0.7996945078215975 0.558028898390844 0.2252503846026686 -0.7986651443484001 -0.5144576180718076 -0.2200898906441139 0.8287905641621072 -0.4971178181320478 -0.2277136551304314 0.8372695898948984 0.4971178181320478 0.2277136551304314 -0.8372695898948984 0.5144576180718076 0.2200898906441139 -0.8287905641621072 -0.3523674383661242 -0.2850989537794993 0.8913785811500805 -0.306373651989246 -0.301890195052002 0.9027721171470885 0.306373651989246 0.301890195052002 -0.9027721171470885 0.3523674383661242 0.2850989537794993 -0.8913785811500805 -0.4569170898122744 0.3580322882283826 0.8142724689091671 -0.4287165572106656 0.5157236689642438 0.7417757146493089 -0.4541867966104732 0.3794965782313983 0.8060376547627145 0.4541867966104732 -0.3794965782313983 -0.8060376547627145 0.4287165572106656 -0.5157236689642438 -0.7417757146493089 0.4569170898122744 -0.3580322882283826 -0.8142724689091671 -0.4610519398068395 0.1374069943415377 0.8766700785964896 -0.4574434326879626 0.128523092512843 0.8799018812240311 0.4574434326879626 -0.128523092512843 -0.8799018812240311 0.4610519398068395 -0.1374069943415377 -0.8766700785964896 -0.4985584274964397 0.03343317632154487 0.8662111273201989 -0.5040157149677988 0.03292087746401979 0.8630668426561742 0.5040157149677988 -0.03292087746401979 -0.8630668426561742 0.4985584274964397 -0.03343317632154487 -0.8662111273201989 -0.5535759670464742 -0.01565705409007048 0.8326514909407067 -0.5497125255609511 -0.01221039753376431 0.8352646559225813 0.5497125255609511 0.01221039753376431 -0.8352646559225813 0.5535759670464742 0.01565705409007048 -0.8326514909407067 -0.6307597955618702 -0.0336555489308815 0.7752479502255447 -0.6328213274262273 -0.03345237151289191 0.7735748873862641 0.6328213274262273 0.03345237151289191 -0.7735748873862641 0.6307597955618702 0.0336555489308815 -0.7752479502255447 -0.1240902978453498 -0.0175498111580307 0.9921157201198707 -0.1257023489127471 -0.01606129966648226 0.9919379789739081 0.1257023489127471 0.01606129966648226 -0.9919379789739081 0.1240902978453498 0.0175498111580307 -0.9921157201198707 -0.1260595472930294 -0.0408216577978071 0.9911824165061218 0.1260595472930294 0.0408216577978071 -0.9911824165061218 -0.5412148349373932 -0.2537132226334566 0.8016957671739552 0.5412148349373932 0.2537132226334566 -0.8016957671739552 -0.4272661229037248 0.5156003108204946 0.7426977714391153 0.4272661229037248 -0.5156003108204946 -0.7426977714391153</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID623\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID621\">\r\n                    <float_array count=\"196\" id=\"ID624\">9.891501356083198 -1.398559899101458 14.0190207913705 -1.378322775502937 13.80728166277617 -0.6130167098138849 9.892292853868527 -1.396358040448894 10.16976395576887 -2.147763991652776 14.01980057287232 -1.374692521388983 9.112972347923334 -3.318913266075672 7.922917617543023 -3.31064759363729 9.13990034236501 -4.10109427719969 9.185461095484014 -0.09440081931622046 13.12035929778858 -0.7049523672064595 13.15740834483686 -0.007683132925823285 9.208683394319904 -0.571882978597314 8.06307501585481 -0.5861914753075564 7.959654123141069 -0.1028398972043406 7.199978199095067 -0.6346024122160491 7.108731272710429 -0.10688175677692 6.460281336741163 -0.7780344309739375 5.66281971002354 -0.06367290266154251 6.090137041837841 -0.981480541855419 5.554770877852206 -0.8406449125250893 4.335914825773608 -0.02054527340170165 4.269814814293227 -0.5681835556315917 3.728999951832195 0.007992341182690677 3.675384037947553 -0.4246823111445474 8.240503349031185 -2.792558387712522 8.312030923974277 -3.573561015301703 9.534613588802479 -3.503157893577027 2.866400881466295 -4.09043929177291 2.592754049921546 -4.844748037579367 3.858647062123191 -5.16058960318777 1.764387869163704 -4.104380020650059 1.377297237169688 -4.827743230540988 1.934313392358909 -5.019461920039144 1.877196734483731 -4.342754535484429 1.33150791732068 -4.108270374199182 1.773090404879941 -4.458637017925284 1.855718646494166 -4.509721762035793 2.948315257028529 -5.11514745525924 3.033601055682589 -4.996987230377251 0.3417500518942679 -5.735767157626841 0.643265683683088 -6.176002351858831 0.7230910765086479 -6.063201128471859 8.098827313590068 0.4251827631843959 7.860758236876446 0.1233516168670555 8.221633022424319 0.3354410191769293 8.692700701586954 -1.456731561340594 8.020550205059355 -1.738846683847045 8.777424033680292 -1.570199514101096 7.775142777459928 -3.195329571672053 8.646044617348052 -3.233748210890571 8.631777309452774 -3.099303113019177 9.330348977001862 -3.552345717479117 8.185074552308338 -3.578387594753834 9.311692834307262 -3.69237575750201 8.92396389964752 -3.788083846687805 12.79728635458154 -4.147255281525537 12.83018579927031 -3.998070213710835 7.317289624280975 -2.980140061228889 7.346533038834244 -3.763528691237196 8.196485417401426 -3.731313273001689 5.336390733417921 -5.449619584766261 4.251179605034944 -4.373769397749731 3.951018182975293 -5.121079041999575 5.636561508752498 -4.702312727263123 7.093366192879808 -3.295908493898871 7.918442027052564 -4.084159963801527 7.9264042430006 -3.301158048278965 2.698973295573131 -4.160805864112061 3.648222878151388 -5.254826617090851 3.990976447294812 -4.518942246687931 1.264659737377111 -4.215067749817517 1.327014570610913 -5.138559858782626 1.781220271575089 -4.440238296359105 2.190316269496892 -4.331888373982719 2.092057563700482 -4.450888635141769 3.314877001865865 -4.899940379907601 1.141746521037105 -4.178758122598253 1.05871830345268 -4.301210512261891 1.572352064691836 -4.537480266369492 3.097661168592327 -4.985281801077196 3.013530619634568 -5.103953439875546 3.563681401541414 -5.3253843708294 7.851589781199859 0.1624999726829313 7.987420609990448 0.09004473225368445 8.21113041698956 0.3759870027255349 8.015398979144715 -1.752248997002818 8.090091306673514 -1.870291468803673 8.772747345371998 -1.584925376850224 7.744361237538513 -3.295161361764044 7.786369406217942 -3.422538761892946 8.614935622004783 -3.33792690271419 8.114139814095902 -3.742617406280015 8.111754056698198 -3.877517115416049 9.238931812302894 -3.867268169121407 8.806680473794703 -4.11759385727599 8.773640424439241 -4.255971035984555 12.67194791268335 -4.5269585570712</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID624\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID620\">\r\n                    <input semantic=\"POSITION\" source=\"#ID618\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID619\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID620\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID621\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 0 6 8 7 6 8 7 8 9 7 5 6 10 9 11 10 12 11 11 10 10 9 13 12 13 12 10 9 14 13 14 13 10 9 15 14 14 13 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 20 19 19 18 21 20 21 20 19 18 22 21 21 20 22 21 23 22 23 22 22 21 24 23 23 22 24 23 25 24 26 24 27 23 28 22 27 23 29 21 28 22 28 22 29 21 30 20 29 21 31 18 30 20 30 20 31 18 32 19 32 19 31 18 33 17 31 18 34 16 33 17 33 17 34 16 35 15 34 16 36 14 35 15 35 15 36 14 37 13 36 14 38 9 37 13 37 13 38 9 39 12 39 12 38 9 40 10 41 11 40 10 38 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 54 37 60 38 61 39 62 39 63 38 59 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 68 47 75 48 76 48 73 47 77 46 74 49 78 50 79 51 80 51 81 50 77 49 82 52 79 53 83 54 84 54 80 53 85 52 82 55 86 56 87 57 88 57 89 56 85 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 94 62 46 63 94 62 91 61 90 64 93 64 92 61 95 62 47 63 95 62 92 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 54 74 56 75 60 76 63 76 57 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 61 80 60 81 64 82 67 82 63 81 62 80 69 83 98 84 70 85 71 85 99 84 72 83 68 86 70 87 75 88 76 88 71 87 73 86 74 89 75 90 78 91 81 91 76 90 77 89 79 92 78 93 83 94 84 94 81 93 80 92 82 95 83 96 86 97 89 97 84 96 85 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID625\">\r\n            <mesh>\r\n                <source id=\"ID628\">\r\n                    <float_array count=\"180\" id=\"ID632\">-0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID632\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID629\">\r\n                    <float_array count=\"180\" id=\"ID633\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID633\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID631\">\r\n                    <float_array count=\"60\" id=\"ID634\">3.295252840429122 -1.288182790405501 3.553954881384697 -0.9130679473510686 3.861528503676829 -1.431814179263339 3.653175485382575 -0.4978760590883997 4.220446497283755 -0.6391021215311316 5.122854141660617 -1.809345535610677 5.526358198109146 -0.9067158682851475 5.700755221866416 -1.981511659262586 5.845294038790562 -2.297413730313628 6.124135088072079 -1.029998510971301 6.237853014667429 -2.141924398637036 6.348994523888187 -2.758800446062714 6.627065876926979 -2.5283351085099 7.000331008498487 -3.170403709446711 7.278421134616336 -2.939943688429858 7.915026008602089 -3.68870217088264 8.159474776988487 -3.454130399997072 11.21097795849668 -5.348585849823603 11.42530494601942 -5.07263695607616 6.348834577254241 -1.615424885060101 6.474741113180418 -0.8385239100247427 6.679996197963138 -1.144255152347283 7.225110846459248 -0.6922914059295819 7.281870875630058 -1.006895651470734 8.059207761561993 -0.6539708482222155 8.115944512114693 -0.9685740599925033 9.186441801135759 -0.6488213400628682 9.21274739048158 -0.9514208473190707 13.06654213649594 -1.122084458825146 13.09524992904242 -0.79949167490136</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID634\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID630\">\r\n                    <input semantic=\"POSITION\" source=\"#ID628\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID629\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID630\"/>\r\n                    <p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 13 14 15 14 13 16 16 13 17 16 17 18 18 17 19 18 19 20 20 19 12 20 12 21 21 12 11 21 11 22 21 22 23 23 22 24 24 22 25 24 25 26 26 25 27 26 27 28 26 28 29</p>\r\n                </triangles>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID630\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID631\"/>\r\n                    <p>30 0 31 1 32 2 31 1 33 3 32 2 33 3 34 4 32 2 32 2 34 4 35 5 34 4 36 6 35 5 35 5 36 6 37 7 37 7 36 6 38 8 36 6 39 9 38 8 39 9 40 10 38 8 38 8 40 10 41 11 40 10 42 12 41 11 41 11 42 12 43 13 42 12 44 14 43 13 43 13 44 14 45 15 44 14 46 16 45 15 45 15 46 16 47 17 48 18 47 17 46 16 40 10 39 9 49 19 39 9 50 20 49 19 49 19 50 20 51 21 50 20 52 22 51 21 51 21 52 22 53 23 52 22 54 24 53 23 53 23 54 24 55 25 54 24 56 26 55 25 55 25 56 26 57 27 57 27 56 26 58 28 59 29 58 28 56 26</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID635\">\r\n            <mesh>\r\n                <source id=\"ID636\">\r\n                    <float_array count=\"174\" id=\"ID640\">-0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID640\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID637\">\r\n                    <float_array count=\"174\" id=\"ID641\">-0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID641\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID639\">\r\n                    <float_array count=\"116\" id=\"ID642\">-5.942143510265987 -3.537919751528921 -3.014275322117851 -6.330159141483323 -2.722917134621747 -5.429709253919597 -4.532998647519656 -5.776067396796974 -3.761988289242532 -8.403663709214172 -5.054129935863941 -5.15141281351586 -5.946686595406146 -5.057682875228573 -6.957166350571083 -4.013129460871145 -6.563991993162109 -5.617669476879784 -9.272628914606271 -5.165311420703098 -7.710539025580329 -12.82943654886498 -8.196902947598092 -11.50317111573932 -9.781350822898569 -10.19751021323684 -11.70834131037578 -6.394627456981616 -11.82235097061978 -9.37266146756806 -13.07634609667806 -7.142739684942715 -13.57695803480326 -9.381946502322247 -15.03078282578663 -8.21146679775252 -16.05001083580809 -10.25921156711687 -21.52269079340287 -11.99864627882594 -20.67270284231222 -12.96009691898834 -4.569559219049879 -10.58978432392038 -5.12072743462904 -6.367588736361021 -5.093403218011745 -11.83399197753575 -5.841838948681586 -13.61146945795768 -6.191243496727681 -6.283137334198752 -8.616810169633229 -19.58292117139953 -8.078369726216202 -14.94382291552136 -10.02986884390828 -19.21441079518665 -5.014934421954141 -9.607205397593324 -4.039184863108101 -7.471911457760681 -4.308405084816615 -9.791460585699765 -3.855269512790164 -6.414718274432491 -3.478583175285542 -2.006564730435573 -3.281995996581054 -2.808834738439892 -3.095621748363841 -3.141568667099376 -2.920919474340793 -6.805734728978842 -2.56036371731452 -3.18379436818051 -2.546701609005873 -5.916995988767874 -2.284779609524939 -5.294892161960191 -2.266499323759828 -2.888033698398487 -1.880994144621266 -4.201831854607086 -10.33635142115611 -6.480048459494169 -10.76134539670144 -5.999323139412972 -8.025005417904044 -5.129605783558433 -7.515391412893316 -4.10573339887626 -6.788479017401629 -4.690973251161124 -6.53817304833903 -3.571369842471357 -5.911175485309891 -4.68633073378403 -5.854170655187891 -3.197313728490808 -4.890675411449284 -5.098755106618421 -4.636314457303135 -2.582655710351549 -4.098451473799046 -5.751585557869662 -2.973343297703073 -2.528841437614287 -2.971071755132994 -1.768959875764461 -2.52706496793197 -2.57570640675793 -1.507137661058926 -3.165079570741662 -1.361458567310874 -2.714854626959799</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID642\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID638\">\r\n                    <input semantic=\"POSITION\" source=\"#ID636\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID637\"/>\r\n                </vertices>\r\n                <triangles count=\"29\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID638\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID639\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 3 3 0 0 5 5 5 5 0 0 6 6 6 6 0 0 7 7 6 6 7 7 8 8 9 9 10 10 7 7 10 10 9 9 11 11 11 11 9 9 12 12 12 12 9 9 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 16 16 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 3 3 21 21 4 4 21 21 3 3 22 22 21 21 22 22 23 23 23 23 22 22 24 24 24 24 22 22 25 25 24 24 25 25 26 26 26 26 25 25 8 8 26 26 8 8 10 10 10 10 8 8 7 7 26 26 10 10 27 27 26 26 27 27 28 28</p>\r\n                </triangles>\r\n                <triangles count=\"29\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID638\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID639\"/>\r\n                    <p>29 29 30 30 31 31 30 30 32 32 31 31 33 33 34 34 32 32 32 32 34 34 31 31 34 34 35 35 31 31 31 31 35 35 36 36 35 35 37 37 36 36 36 36 37 37 38 38 38 38 37 37 39 39 37 37 40 40 39 39 41 41 39 39 40 40 42 42 43 43 44 44 43 43 45 45 44 44 44 44 45 45 46 46 45 45 47 47 46 46 46 46 47 47 48 48 47 47 49 49 48 48 48 48 49 49 50 50 49 49 51 51 50 50 50 50 51 51 52 52 52 52 51 51 32 32 33 33 32 32 51 51 34 34 33 33 53 53 33 33 54 54 53 53 53 53 54 54 55 55 55 55 54 54 40 40 41 41 40 40 56 56 40 40 54 54 56 56 57 57 56 56 54 54</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID643\">\r\n            <mesh>\r\n                <source id=\"ID644\">\r\n                    <float_array count=\"174\" id=\"ID648\">-0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID648\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID645\">\r\n                    <float_array count=\"174\" id=\"ID649\">-0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID649\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID647\">\r\n                    <float_array count=\"116\" id=\"ID650\">14.82902591557052 -8.384892502619829 20.41029086447709 -13.17764101175096 21.27248131697755 -12.2229423723072 15.79670305040769 -10.44749344574282 13.33494263193682 -9.550817708016966 12.88835961543644 -7.300830137085 11.5805232985438 -9.527731536536132 11.52980744991694 -6.541998000371912 9.529151400085357 -10.33648417410537 9.109835905503532 -5.293563109915906 7.928136657948257 -11.62962404360425 6.809176289792611 -4.123239947803949 7.424943045986368 -12.95197178042472 5.800264086731488 -3.640068430440598 6.099572673222684 -5.983272599215604 5.548610961513447 -5.312678419743834 2.557177127561046 -5.506438392768292 4.71279593362039 -5.407517741830074 4.245346264840824 -5.927683489544283 3.55839236819476 -8.488419045241628 2.837121282969626 -6.409136584333087 7.765917730597559 -15.06914637484883 8.270848227836648 -19.70532053592662 9.688516068491094 -19.34793117157087 5.571861419967594 -13.71230731538016 5.676042622384449 -6.509790425305303 4.812696874597001 -6.53714695665132 4.846150501537627 -11.92903008491025 4.338197914026393 -10.68076768650679 1.77919618409738 -4.244209522620814 2.122673132420412 -2.963841744772142 2.169098957013197 -5.340383843253396 2.406348437298501 -3.26857347832566 2.423075250768814 -5.964515042455125 2.785930709983797 -6.856153657690079 2.838021311192224 -3.254895212652651 3.049786336611342 -2.991636299607802 3.404588144896306 -2.061619973901975 3.712471522993184 -6.475985890212362 3.88295886529878 -7.534573187424415 4.135424113918324 -9.85266026796331 4.844258034245547 -9.673965585785433 1.418560641484813 -3.204568292166544 1.278588563780523 -2.753219196384146 2.356397966810195 -2.703758870915037 2.774305480756723 -2.656339209871917 2.900132043365744 -1.820034215220299 3.964068328974129 -5.814812021802124 4.554917952751766 -2.646781554957953 4.764575700042679 -5.168242087052686 5.764903724958471 -3.270999000185956 5.790261649271899 -4.763865768268066 6.444179807718218 -3.6504150685425 6.667471315968408 -4.775408854008483 7.414512957785258 -4.192446251309915 7.898351525203847 -5.223746722871408 10.20514543223855 -6.588820505875478 10.63624065848878 -6.111471186153602</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID650\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID646\">\r\n                    <input semantic=\"POSITION\" source=\"#ID644\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID645\"/>\r\n                </vertices>\r\n                <triangles count=\"29\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID646\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID647\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 11 11 14 14 13 13 15 15 15 15 13 13 16 16 15 15 16 16 17 17 17 17 16 16 18 18 18 18 16 16 19 19 19 19 16 16 20 20 21 21 22 22 23 23 22 22 21 21 24 24 24 24 21 21 12 12 24 24 12 12 11 11 24 24 11 11 14 14 24 24 14 14 25 25 24 24 25 25 26 26 24 24 26 26 27 27 27 27 26 26 28 28 28 28 26 26 18 18 28 28 18 18 19 19</p>\r\n                </triangles>\r\n                <triangles count=\"29\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID646\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID647\"/>\r\n                    <p>29 29 30 30 31 31 30 30 32 32 31 31 31 31 32 32 33 33 33 33 32 32 34 34 32 32 35 35 34 34 35 35 36 36 34 34 36 36 37 37 34 34 37 37 38 38 34 34 38 38 39 39 34 34 34 34 39 39 40 40 41 41 40 40 39 39 42 42 43 43 29 29 29 29 43 43 30 30 30 30 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 36 36 37 37 36 36 46 46 38 38 37 37 47 47 37 37 48 48 47 47 47 47 48 48 49 49 48 48 50 50 49 49 49 49 50 50 51 51 50 50 52 52 51 51 51 51 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 55 55 54 54 56 56 57 57 56 56 54 54</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID651\">\r\n            <mesh>\r\n                <source id=\"ID652\">\r\n                    <float_array count=\"174\" id=\"ID656\">-0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086261 -0.4057228466663786 1.255007445577006</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID656\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID653\">\r\n                    <float_array count=\"174\" id=\"ID657\">-0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID657\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID655\">\r\n                    <float_array count=\"116\" id=\"ID658\">6.702103108885646 20.11553924734162 5.794715717549207 13.65502883900708 8.114458168158471 19.74546699100114 5.035936020298975 15.78554439442911 5.041999724845416 11.87869973036162 4.515123873609423 10.63526002083553 3.72203637432034 13.91843838723838 3.499059127413852 8.503668162237371 2.323357503165463 13.08490005884943 2.520531152860973 6.490504505913559 2.068972894939293 5.631935926042748 0.06075091877033985 12.78483712999241 0.8120119978442776 7.222580289126928 0.8227126529265449 6.595773100139321 0.04362987063896788 7.548865554982541 -2.201940144480685 13.08490005885077 -0.6525134482231259 7.207434068793488 -0.6603042760459281 6.628102364821207 -1.949292046070537 5.631935926043967 -2.400906623229417 6.490504505914989 -3.600572082937799 13.91843838724053 -3.379425211242822 8.503668162239411 -4.395536890136512 10.63526002083815 -4.914377863521055 15.78554439443209 -4.922422127911656 11.87869973036458 -6.582432022018011 20.11553924734553 -5.675109960996605 13.65502883901048 -7.994833638526947 19.7454669910059 0.1023145158150442 6.277101703712805 -0.3301521380229641 3.314051182410604 0.05115725790752209 3.138550851856402 -0.9746460230352685 2.815967963021984 0.4113563264632725 3.297886550069661 1.034486447469647 2.815967963021374 -3.997416819263473 9.872733495502947 -3.291216011009006 10.05776962367277 -2.837554980498303 6.82751441950524 -2.461211063955828 5.939349865182291 -2.457188931760527 7.892772197216043 -2.197768445068256 5.317630010419073 -1.8002860414689 6.959219193620267 -1.689712605621411 4.251834081119705 -1.200453311614709 3.245252252957494 -1.100970072240343 6.542450029425386 -0.3262567241115629 3.603717034396744 0.02181493531948394 3.774432777491271 0.03037545938516992 6.392418564996206 0.4060059989221388 3.611290144563464 1.161678751582732 6.542450029424717 1.260265576430486 3.245252252956779 1.749529563706926 4.251834081118686 1.86101818716017 6.959219193619191 2.257561936804712 5.317630010417767 2.517968010149487 7.892772197214557 2.520999862422708 5.939349865180811 2.897357858774603 6.827514419503538 3.351051554442823 10.05776962367081 4.057229084079236 9.872733495500569</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID658\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID654\">\r\n                    <input semantic=\"POSITION\" source=\"#ID652\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID653\"/>\r\n                </vertices>\r\n                <triangles count=\"29\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID654\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID655\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 5 5 6 6 7 7 7 7 6 6 8 8 7 7 8 8 9 9 9 9 8 8 10 10 10 10 8 8 11 11 10 10 11 11 12 12 10 10 12 12 13 13 12 12 11 11 14 14 14 14 11 11 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 18 18 15 15 19 19 19 19 15 15 20 20 19 19 20 20 21 21 21 21 20 20 22 22 22 22 20 20 23 23 22 22 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 26 26 25 25 27 27 10 10 28 28 18 18 28 28 10 10 13 13 18 18 28 28 17 17</p>\r\n                </triangles>\r\n                <triangles count=\"29\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID654\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID655\"/>\r\n                    <p>29 29 30 30 31 31 32 32 33 33 30 30 31 31 30 30 33 33 34 34 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 41 41 40 40 42 42 40 40 43 43 42 42 42 42 43 43 31 31 31 31 43 43 29 29 29 29 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 47 47 32 32 47 47 33 33 47 47 46 46 33 33 46 46 48 48 33 33 33 33 48 48 49 49 49 49 48 48 50 50 48 48 51 51 50 50 50 50 51 51 52 52 51 51 53 53 52 52 52 52 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 57 57 55 55 56 56</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID659\">\r\n            <mesh>\r\n                <source id=\"ID660\">\r\n                    <float_array count=\"174\" id=\"ID664\">-0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID664\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID661\">\r\n                    <float_array count=\"174\" id=\"ID665\">-0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID665\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID663\">\r\n                    <float_array count=\"116\" id=\"ID666\">-6.984665430113307 3.983443023641084 -7.40422572564607 0.3789239175328026 -6.09915843792158 3.36857647914322 -7.410646117683638 2.119594723555238 -7.616745992036167 2.801032421564928 -9.087203731092407 5.365323263029861 -8.3423442719905 2.953155647545233 -9.093473939508872 2.602729468533396 -11.31992357356801 6.813667586479245 -14.53491699533404 8.746494248780024 -15.52040002022607 7.299823452712065 -14.97250845787214 5.988482126861165 -21.10379608906077 12.45059281253822 -17.33840302157449 8.883806786916869 -22.00748405742919 11.51994145614131 -8.583146557493567 0.3217766936036152 -8.054646834917762 1.646710999030179 -8.931546370346142 1.906224412462378 -11.32126622418493 0.2476387067093099 -12.6437260187638 7.60952939642481 -14.21409408474354 0.1839639580231964 -15.88012976177167 0.1958135568310805 -15.34672951463004 4.207573708536487 -16.44238348055336 2.621577179361666 -18.26023629726925 0.2127637073613848 -17.89873287521094 1.85170038214918 -20.57025466836452 1.480585937066035 -26.33609653088566 0.4649613457242628 -26.32221346343603 1.636013390160535 -13.16110673171801 0.8180066950802676 -10.28512733418226 0.7402929685330173 -13.16804826544283 0.2324806728621314 -9.130118148634626 0.1063818536806924 -8.949366437605471 0.9258501910745902 -8.22119174027668 1.310788589680833 -7.940064880885833 0.09790677841554024 -7.673364757315019 2.103786854268244 -7.486254228936068 2.994241063430582 -7.267458497667017 4.373247124390012 -7.107047042371768 0.09198197901159821 -6.321863009381899 3.804764698212405 -5.660633112092466 0.123819353354655 -5.659961786784004 3.406833793239623 -4.546736969754436 1.301364734266698 -4.465773185173071 0.953112206231189 -4.291573278746784 0.1608883468018076 -4.027323417458881 0.8233554995150897 -3.705323058841819 1.059797361777619 -3.702112862823035 0.1894619587664013 -11.00374202871459 5.759970728070657 -10.55189804453039 6.225296406269112 -8.669201510787243 4.441903393458435 -7.760200010113037 3.649911726356033 -4.543601865546203 2.682661631514931 -4.17117213599525 1.476577823772616 -3.808372996018083 1.400516210782464 -3.492332715056654 1.991721511820542 -3.04957921896079 1.68428823957161</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID666\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID662\">\r\n                    <input semantic=\"POSITION\" source=\"#ID660\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID661\"/>\r\n                </vertices>\r\n                <triangles count=\"29\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID662\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID663\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 7 7 5 5 8 8 9 9 10 10 11 11 10 10 9 9 12 12 10 10 12 12 13 13 13 13 12 12 14 14 3 3 15 15 1 1 15 15 3 3 16 16 15 15 16 16 17 17 15 15 17 17 18 18 18 18 17 17 7 7 18 18 7 7 8 8 18 18 8 8 19 19 18 18 19 19 20 20 20 20 19 19 9 9 20 20 9 9 21 21 21 21 9 9 11 11 21 21 11 11 22 22 21 21 22 22 23 23 21 21 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 24 24 26 26 27 27 27 27 26 26 28 28</p>\r\n                </triangles>\r\n                <triangles count=\"29\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID662\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID663\"/>\r\n                    <p>29 29 30 30 31 31 31 31 30 30 32 32 30 30 33 33 32 32 33 33 34 34 32 32 32 32 34 34 35 35 34 34 36 36 35 35 36 36 37 37 35 35 37 37 38 38 35 35 35 35 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 41 41 41 41 44 44 45 45 44 44 46 46 45 45 46 46 47 47 45 45 48 48 45 45 47 47 49 49 50 50 51 51 51 51 50 50 52 52 50 50 38 38 52 52 37 37 52 52 38 38 42 42 53 53 43 43 43 43 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 55 55 56 56 47 47 47 47 56 56 48 48 57 57 48 48 56 56</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID667\">\r\n            <mesh>\r\n                <source id=\"ID668\">\r\n                    <float_array count=\"174\" id=\"ID672\">-0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID672\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID669\">\r\n                    <float_array count=\"174\" id=\"ID673\">-0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID673\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID671\">\r\n                    <float_array count=\"116\" id=\"ID674\">20.61719888652537 1.218148136177216 26.37837451250605 0.1684497917821321 26.37941679385733 1.339544146984344 18.29973586318679 -0.02022262547900209 17.95056710501454 1.610244438259214 15.91953471137129 -0.01844121671260754 16.50403527979898 2.391555627588657 15.42855411374404 3.986084458633338 14.25340591987107 -0.01718592348860902 15.07707401407439 5.769850515057511 14.68308415411048 8.542387413325084 12.77760761527535 7.420370888018093 11.36156327050402 0.06924101484297966 11.44368572952684 6.634956071308992 9.192662885861024 5.204233701788687 9.425026296851021 2.312795134179659 8.738063013666524 2.754604887566969 7.072628075169551 3.838965865215587 7.924071315350075 2.605400439849607 7.606327939590292 1.892705793038809 7.446428614955478 0.2313362901843486 6.179339266233333 3.231097654269962 9.207521402500165 1.59536744141203 8.624532442400788 0.1649128185498039 8.27845148027766 1.398775674567985 21.29872623692821 12.19463380149279 17.47963465401062 8.646417845385683 22.19043848268239 11.25691735948019 15.64156248019065 7.076826964854104 7.538537007037196 2.884925257528756 7.34154207705524 4.271193706662542 7.820781240095327 3.538413482427052 8.739817327005309 4.323208922692841 10.64936311846411 6.097316900746395 11.09521924134119 5.628458679740094 3.803163969795146 0.9463528965194042 4.13922574013883 0.6993878372839926 3.723214307477739 0.1156681450921743 4.312266221200394 0.08245640927490194 4.603760701250082 0.797683720706015 4.712513148425511 1.156397567089829 5.680781635252012 0.03462050742148983 3.089669633116666 1.615548827134981 3.536314037584776 1.919482932607794 3.962035657675037 1.302700219924803 4.369031506833262 1.377302443783485 4.596331442930512 2.602116850894344 5.721842864763418 3.317478035654496 6.388803807637676 3.710185444009047 7.126702959935534 -0.00859296174430451 7.714277056872022 1.993042229316669 7.959767355685644 -0.009220608356303768 8.252017639899492 1.195777813794329 8.975283552507268 0.8051222191296068 9.149867931593397 -0.01011131273950105 10.30859944326268 0.609074068088608 13.18918725625302 0.08422489589106605 13.18970839692866 0.6697720734921721</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID674\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID670\">\r\n                    <input semantic=\"POSITION\" source=\"#ID668\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID669\"/>\r\n                </vertices>\r\n                <triangles count=\"29\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID670\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID671\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 5 5 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 8 8 10 10 11 11 8 8 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 12 12 14 14 15 15 15 15 14 14 16 16 16 16 14 14 17 17 16 16 17 17 18 18 18 18 17 17 19 19 19 19 17 17 20 20 20 20 17 17 21 21 12 12 22 22 23 23 22 22 12 12 15 15 23 23 22 22 24 24 23 23 24 24 20 20 20 20 24 24 19 19 25 25 26 26 27 27 26 26 25 25 10 10 26 26 10 10 28 28 28 28 10 10 9 9</p>\r\n                </triangles>\r\n                <triangles count=\"29\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID670\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID671\"/>\r\n                    <p>29 29 30 30 31 31 31 31 30 30 32 32 30 30 33 33 32 32 34 34 32 32 33 33 35 35 36 36 37 37 37 37 36 36 38 38 36 36 39 39 38 38 40 40 41 41 39 39 38 38 39 39 41 41 42 42 43 43 37 37 37 37 43 43 35 35 35 35 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 40 40 40 40 46 46 41 41 46 46 47 47 41 41 47 47 48 48 41 41 41 41 48 48 49 49 48 48 30 30 49 49 30 30 29 29 49 49 29 29 50 50 49 49 49 49 50 50 51 51 50 50 52 52 51 51 52 52 53 53 51 51 51 51 53 53 54 54 53 53 55 55 54 54 54 54 55 55 56 56 57 57 56 56 55 55</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID675\">\r\n            <mesh>\r\n                <source id=\"ID676\">\r\n                    <float_array count=\"180\" id=\"ID680\">-0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803394 0.6383334991085194 -0.1943718802796175</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID680\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID677\">\r\n                    <float_array count=\"180\" id=\"ID681\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID681\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID679\">\r\n                    <float_array count=\"120\" id=\"ID682\">-12.93127233964243 -1.486071496671276 -12.62543034616549 -4.129144983791254 -12.23498784722559 -1.874505443854724 -12.76666998217039 -3.058117583065982 -13.34961163411208 -2.09427775069872 -14.42832176977398 -1.181805033857142 -14.54974604533614 -1.810114365788693 -16.09538020415581 -1.092060798588364 -16.21682400372031 -1.72034805212735 -18.34966205435873 -1.064030839351062 -18.40995067147561 -1.668797885313605 -26.17068750133516 -1.303845305457521 -26.12148100826749 -1.949461217357851 -7.159292431165309 -1.69744618722385 -7.854985196129549 -2.746417347632534 -6.718791141366869 -2.468068923971035 -7.2798246100092 -0.8491966345196895 -8.417877199601666 -1.122717643494433 -10.38703202271997 -3.481579675358059 -11.03641160156596 -1.637361946361363 -11.54718953748084 -3.816798493870874 -11.84430204918045 -4.446292896444675 -12.86330478225409 -5.361104519921764 -13.4136083098111 -4.895822555464352 -14.17645312960758 -6.174030638247034 -14.72672962393063 -5.708741585074908 -16.01893622609624 -7.196171309012338 -16.5018368904839 -6.72319749841732 -22.65270559410508 -10.46391163633777 -23.07439550773097 -9.908684515855253 -11.53719775386548 -4.954342257927626 -8.250918445241952 -3.36159874920866 -11.32635279705254 -5.231955818168884 -8.009468113048119 -3.598085654506169 -7.363364811965314 -2.854370792537454 -7.088226564803792 -3.087015319123517 -6.70680415490555 -2.447911277732176 -6.431652391127047 -2.680552259960882 -6.312715173082745 -2.064572491895627 -5.922151024590223 -2.223146448222337 -6.117493923612793 -0.937252721927362 -5.77359476874042 -1.908399246935437 -5.518205800782978 -0.8186809731806815 -5.193516011359987 -1.74078983767903 -4.208938599800833 -0.5613588217472164 -3.927492598064775 -1.373208673816267 -3.6399123050046 -0.4245983172598448 -3.579646215582655 -0.8487230936119248 -3.359395570683434 -1.234034461985518 -13.06074050413374 -0.9747306086789257 -13.08534375066758 -0.6519226527287603 -9.204975335737807 -0.8343989426568027 -9.174831027179364 -0.5320154196755311 -8.108412001860152 -0.860174026063675 -8.047690102077906 -0.5460303992941817 -7.274873022668071 -0.9050571828943463 -7.214160884886991 -0.5909025169285711 -6.674805817056042 -1.04713887534936 -6.465636169821214 -0.7430357483356379 -6.383334991085194 -1.529058791532991</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID682\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID678\">\r\n                    <input semantic=\"POSITION\" source=\"#ID676\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID677\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID678\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID679\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 15 15 14 14 13 13 16 16 14 14 16 16 17 17 14 14 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 20 20 19 19 2 2 20 20 2 2 21 21 21 21 2 2 1 1 21 21 1 1 22 22 22 22 1 1 23 23 22 22 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29</p>\r\n                </triangles>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID678\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID679\"/>\r\n                    <p>30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 33 33 34 34 35 35 34 34 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 46 46 47 47 45 45 48 48 45 45 47 47 49 49 50 50 51 51 50 50 52 52 51 51 51 51 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 59 59 58 58 38 38 40 40 38 38 58 58</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID683\">\r\n            <mesh>\r\n                <source id=\"ID684\">\r\n                    <float_array count=\"288\" id=\"ID688\">-0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.270747921471866 -0.3435928533137942</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID688\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID685\">\r\n                    <float_array count=\"288\" id=\"ID689\">1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID689\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID687\">\r\n                    <float_array count=\"96\" id=\"ID690\">-13.23998135775804 -2.815179652060345 -12.70747921471866 -2.702930446068514 -13.16378218064985 -0.02353490189121056 -11.86264785299155 -5.414977569922251 -11.3852296786218 -5.19814619357484 -9.676892997933901 -7.645755905570643 -9.287060999525936 -7.339102244252365 -6.831627108706453 -9.35548004195716 -6.556009772566556 -8.979918166834205 -3.520815891249638 -10.42765167937458 -3.378135984617037 -10.00876771530356 0.02993367461099795 -10.78919857487892 0.02993367461107122 -10.35552755201697 3.578613696232724 -10.41547563048526 3.435947306217084 -9.996572763175115 6.607832481936404 -8.956385406325536 6.883464085616424 -9.331950235079592 9.329413065955807 -7.305833134151492 9.719179734048568 -7.612483251112466 11.41515847223228 -5.15738785643058 11.89255787352293 -5.374217460599311 12.72300830574298 -2.657477903000535 13.25550293955077 -2.769719724914605 13.16380470834466 0.02353305587178231 13.24002340945525 2.815181424239013 13.71509494893863 0.02353305587177882 -13.25547891000948 2.769721792456383 -13.71506791570486 -0.02353490189120707 -12.72297526512372 2.657477016911196 -11.89256237906191 5.374217460599315 -11.415120926074 5.157382539894559 -9.719207518205637 7.612483251112464 -9.329352241179443 7.305826045436834 -6.883468591155371 9.331957914520494 -6.607781419161219 8.956387769230418 -3.578613696232667 10.41548035629503 -3.435919522059974 9.9965833962471 -0.02990082172260377 10.7891985748789 -0.02990082172267482 10.35552991492187 3.378140490156039 10.00875944513644 3.520825277789115 10.42765758663682 6.556009772566611 8.979915213203102 6.831636119784472 9.35548594921938 9.287065505064954 7.339104016431012 9.676888492394975 7.645755905570645 11.38526271924082 5.198144421396179 11.86263358545151 5.414979342100926 12.70754829964972 2.702938420872503</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID690\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID686\">\r\n                    <input semantic=\"POSITION\" source=\"#ID684\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID685\"/>\r\n                </vertices>\r\n                <triangles count=\"96\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID686\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID687\"/>\r\n                    <p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 15 15 13 13 16 16 15 15 16 16 17 17 17 17 16 16 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 24 24 22 22 25 25 0 0 26 26 27 27 26 26 0 0 2 2 26 26 2 2 28 28 26 26 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 47 47 46 46 47 47 24 24 24 24 47 47 23 23 48 23 49 47 50 24 50 24 49 47 51 46 49 47 52 45 51 46 51 46 52 45 53 44 52 45 54 43 53 44 53 44 54 43 55 42 54 43 56 41 55 42 55 42 56 41 57 40 56 41 58 39 57 40 57 40 58 39 59 37 58 39 60 38 59 37 60 38 61 36 59 37 59 37 61 36 62 35 61 36 63 34 62 35 62 35 63 34 64 33 63 34 65 32 64 33 64 33 65 32 66 31 65 32 67 30 66 31 66 31 67 30 68 29 67 30 69 28 68 29 68 29 69 28 70 26 69 28 71 2 70 26 71 2 72 0 70 26 73 27 70 26 72 0 74 25 75 22 50 24 50 24 75 22 48 23 48 23 75 22 76 21 75 22 77 20 76 21 76 21 77 20 78 19 77 20 79 18 78 19 78 19 79 18 80 17 79 18 81 16 80 17 80 17 81 16 82 15 81 16 83 13 82 15 82 15 83 13 84 14 84 14 83 13 85 12 83 13 86 11 85 12 85 12 86 11 87 10 86 11 88 9 87 10 87 10 88 9 89 8 88 9 90 7 89 8 89 8 90 7 91 6 90 7 92 5 91 6 91 6 92 5 93 4 92 5 94 3 93 4 93 4 94 3 95 1 94 3 72 0 95 1 71 2 95 1 72 0</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID691\">\r\n            <mesh>\r\n                <source id=\"ID694\">\r\n                    <float_array count=\"6\" id=\"ID696\">-0.4478128033659967 0.2778640982455765 -0.362934906886154 -0.4478128033659949 0.307457980125035 -0.3945048806169198</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID696\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID695\">\r\n                    <input semantic=\"POSITION\" source=\"#ID694\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID695\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID697\">\r\n            <mesh>\r\n                <source id=\"ID698\">\r\n                    <float_array count=\"6\" id=\"ID700\">-0.4478128033659896 -0.2592153908032857 -0.3790163769896233 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID700\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID699\">\r\n                    <input semantic=\"POSITION\" source=\"#ID698\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID699\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID701\">\r\n            <mesh>\r\n                <source id=\"ID702\">\r\n                    <float_array count=\"6\" id=\"ID704\">-0.4478128033659967 -0.4253519781642065 0.1347814339741829 -0.4478128033659914 -0.4139088478041265 0.0933464324579063</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID704\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID703\">\r\n                    <input semantic=\"POSITION\" source=\"#ID702\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID703\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID705\">\r\n            <mesh>\r\n                <source id=\"ID706\">\r\n                    <float_array count=\"6\" id=\"ID708\">-0.4478128033659932 -0.003894005930508371 0.4410080127493087 -0.4478128033659967 0.03004302779671875 0.423250557236884</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID708\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID707\">\r\n                    <input semantic=\"POSITION\" source=\"#ID706\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID707\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID709\">\r\n            <mesh>\r\n                <source id=\"ID710\">\r\n                    <float_array count=\"6\" id=\"ID712\">-0.4478128033659976 0.4132203263553758 0.1481986756257214 -0.4478128033659941 0.443604104310682 0.1249160682732518</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID712\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID711\">\r\n                    <input semantic=\"POSITION\" source=\"#ID710\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID711\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID713\">\r\n            <mesh>\r\n                <source id=\"ID714\">\r\n                    <float_array count=\"6\" id=\"ID716\">-0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.005569503239401641 -0.6325761712128029</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID716\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID715\">\r\n                    <input semantic=\"POSITION\" source=\"#ID714\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID715\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID717\">\r\n            <mesh>\r\n                <source id=\"ID718\">\r\n                    <float_array count=\"6\" id=\"ID720\">-0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803314 -0.6020747235977453 -0.1948699676140677</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID720\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID719\">\r\n                    <input semantic=\"POSITION\" source=\"#ID718\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID719\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID721\">\r\n            <mesh>\r\n                <source id=\"ID722\">\r\n                    <float_array count=\"6\" id=\"ID724\">-0.5298591187803314 0.005242382336229534 -0.5675233220841833 -0.529859118780335 -0.05171889424246934 -0.426670674331888</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID724\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID723\">\r\n                    <input semantic=\"POSITION\" source=\"#ID722\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID723\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID725\">\r\n            <mesh>\r\n                <source id=\"ID726\">\r\n                    <float_array count=\"6\" id=\"ID728\">-0.5298591187803421 0.004574999374554745 -0.4344675846323871 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID728\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID727\">\r\n                    <input semantic=\"POSITION\" source=\"#ID726\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID727\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID729\">\r\n            <mesh>\r\n                <source id=\"ID730\">\r\n                    <float_array count=\"6\" id=\"ID732\">-0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.365877924949132 0.5166904045363489</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID732\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID731\">\r\n                    <input semantic=\"POSITION\" source=\"#ID730\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID731\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID733\">\r\n            <mesh>\r\n                <source id=\"ID734\">\r\n                    <float_array count=\"6\" id=\"ID736\">-0.5298591187803314 -0.3342368387947641 0.459116412202264 -0.5298591187803323 -0.2836405746819554 0.488100356742052</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID736\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID735\">\r\n                    <input semantic=\"POSITION\" source=\"#ID734\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID735\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID737\">\r\n            <mesh>\r\n                <source id=\"ID738\">\r\n                    <float_array count=\"6\" id=\"ID740\">-0.5298591187803341 0.328054863850014 0.4637080820710361 -0.5298591187803368 0.2863054132589566 0.3205489738215878</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID740\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID739\">\r\n                    <input semantic=\"POSITION\" source=\"#ID738\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID739\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID741\">\r\n            <mesh>\r\n                <source id=\"ID742\">\r\n                    <float_array count=\"6\" id=\"ID744\">-0.5298591187803421 0.2506140352906494 0.3552348656737639 -0.5298591187803332 0.2520881913262922 0.2718711494341899</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID744\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID743\">\r\n                    <input semantic=\"POSITION\" source=\"#ID742\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID743\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID745\">\r\n            <mesh>\r\n                <source id=\"ID746\">\r\n                    <float_array count=\"6\" id=\"ID748\">-0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.3723203951393453 0.5119000403984736</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID748\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID747\">\r\n                    <input semantic=\"POSITION\" source=\"#ID746\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID747\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID749\">\r\n            <mesh>\r\n                <source id=\"ID750\">\r\n                    <float_array count=\"6\" id=\"ID752\">-0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2562910144078499 0.3510828613173088</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID752\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID751\">\r\n                    <input semantic=\"POSITION\" source=\"#ID750\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID751\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID753\">\r\n            <mesh>\r\n                <source id=\"ID756\">\r\n                    <float_array count=\"6\" id=\"ID758\">-0.5298591187803385 -0.540087405646254 -0.1750670537230961 -0.529859118780335 -0.4220446497283755 -0.0812417951098896</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID758\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID757\">\r\n                    <input semantic=\"POSITION\" source=\"#ID756\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID757\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID759\">\r\n            <mesh>\r\n                <source id=\"ID760\">\r\n                    <float_array count=\"6\" id=\"ID762\">-0.529859118780335 -0.4132513394820253 -0.1345502998244115 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID762\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID761\">\r\n                    <input semantic=\"POSITION\" source=\"#ID760\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID761\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID763\">\r\n            <mesh>\r\n                <source id=\"ID764\">\r\n                    <float_array count=\"6\" id=\"ID766\">-0.5298591187803394 0.5432375283177788 -0.1650388315610469 -0.5298591187803332 0.5193516011359987 -0.221286843772758</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID766\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID765\">\r\n                    <input semantic=\"POSITION\" source=\"#ID764\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID765\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID767\">\r\n            <mesh>\r\n                <source id=\"ID768\">\r\n                    <float_array count=\"6\" id=\"ID770\">-0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.6054177208838552 -0.184220112484069</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID770\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID769\">\r\n                    <input semantic=\"POSITION\" source=\"#ID768\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID769\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID771\">\r\n            <mesh>\r\n                <source id=\"ID772\">\r\n                    <float_array count=\"6\" id=\"ID774\">-0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.4160034728768081 -0.1257918324128582</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID774\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID773\">\r\n                    <input semantic=\"POSITION\" source=\"#ID772\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID773\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID775\">\r\n            <mesh>\r\n                <source id=\"ID776\">\r\n                    <float_array count=\"6\" id=\"ID778\">0.4736113844101926 1.42012168249506 1.065790132799686 0.8846653631423393 1.420121682495051 1.065790132799686</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID778\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID777\">\r\n                    <input semantic=\"POSITION\" source=\"#ID776\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID777\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID784\">\r\n            <mesh>\r\n                <source id=\"ID785\">\r\n                    <float_array count=\"384\" id=\"ID789\">-0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"128\" source=\"#ID789\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID786\">\r\n                    <float_array count=\"384\" id=\"ID790\">-0.9024665938125612 0.2869979446047657 0.3212261303894707 -0.902466236746562 0.1795708561871048 0.3915469309555731 -0.9024665938061016 0.2869970887591513 0.3212268950567254 -0.9024662367466551 0.1795709440136923 0.3915468906764066 0.902466236746562 -0.1795708561871048 -0.3915469309555731 0.9024665938061016 -0.2869970887591513 -0.3212268950567254 0.9024662367466551 -0.1795709440136923 -0.3915468906764066 0.9024665938125612 -0.2869979446047657 -0.3212261303894707 -0.9024668903167546 0.05618340562307148 0.4270795438962162 -0.9024668903001765 0.05618563690832937 0.4270792503940392 0.9024668903167546 -0.05618340562307148 -0.4270795438962162 0.9024668903001765 -0.05618563690832937 -0.4270792503940392 -0.902469089464752 0.3689290774500262 0.2223530489391454 -0.9024690894613248 0.3689289867002785 0.2223531995253341 0.9024690894613248 -0.3689289867002785 -0.2223531995253341 0.902469089464752 -0.3689290774500262 -0.2223530489391454 -0.9999555775055583 0.003929272324182818 0.008567603779806768 -0.9999999999999999 -3.944088456120249e-009 1.649036539061831e-008 -0.9999555776890411 0.006279922634141023 0.007028884711349623 0.9999555776890411 -0.006279922634141023 -0.007028884711349623 0.9999999999999999 3.944088456120249e-009 -1.649036539061831e-008 0.9999555775055583 -0.003929272324182818 -0.008567603779806768 -0.9024674946036678 -0.07219701394895309 0.4246645880699658 -0.9024674946038228 -0.07219707389978321 0.424664577877421 0.9024674946036678 0.07219701394895309 -0.4246645880699658 0.9024674946038228 0.07219707389978321 -0.424664577877421 -0.9999555778310314 0.001229424558499158 0.009345099243102516 0.9999555778310314 -0.001229424558499158 -0.009345099243102516 -0.9024695789497297 0.4180784539420578 0.1037259148897536 -0.9024695789502093 0.4180784961390021 0.1037257448061106 0.9024695789502093 -0.4180784961390021 -0.1037257448061106 0.9024695789497297 -0.4180784539420578 -0.1037259148897536 -0.9999555784085298 0.008072791231372301 0.004865311027822405 0.9999555784085298 -0.008072791231372301 -0.004865311027822405 -0.9024683401951699 -0.1941614071388285 0.3845155951625956 -0.9024683401956324 -0.1941614450021188 0.3845155760424143 0.9024683401951699 0.1941614071388285 -0.3845155951625956 0.9024683401956324 0.1941614450021188 -0.3845155760424143 -0.9999555778376283 -0.001579793115735819 0.009292287400107886 0.9999555778376283 0.001579793115735819 -0.009292287400107886 -0.9024695599118074 0.4300783861399769 -0.02410964968268119 -0.9024695599145399 0.4300784014704719 -0.02410937610681846 0.9024695599145399 -0.4300784014704719 0.02410937610681846 0.9024695599118074 -0.4300783861399769 0.02410964968268119 -0.9999555771365172 0.009148344649372987 0.002269701247122971 0.9999555771365172 -0.009148344649372987 -0.002269701247122971 -0.9024699496610145 -0.298869595953435 0.3102014741639317 -0.9024699496784561 -0.298870415416041 0.3102006845840415 0.9024699496610145 0.298869595953435 -0.3102014741639317 0.9024699496784561 0.298870415416041 -0.3102006845840415 -0.9999555776015303 -0.004248627287482877 0.008413797582663555 0.9999555776015303 0.004248627287482877 -0.008413797582663555 -0.9024682165406183 0.4038669616350336 -0.1498085292421026 -0.902468216543048 0.4038670647292976 -0.1498082512966218 0.9024682165406183 -0.4038669616350336 0.1498085292421026 0.902468216543048 -0.4038670647292976 0.1498082512966218 -0.999955577745935 0.009410860694318868 -0.0005274806018676984 0.999955577745935 -0.009410860694318868 0.0005274806018676984 -0.9024707715227106 -0.3770220929027301 0.2083287018402623 -0.9024707715194342 -0.3770227739999134 0.2083274692366014 0.9024707715227106 0.3770220929027301 -0.2083287018402623 0.9024707715194342 0.3770227739999134 -0.2083274692366014 -0.9999555770671936 -0.006539895081909356 0.006787758432154178 0.9999555770671936 0.006539895081909356 -0.006787758432154178 -0.9024668466034375 0.3417689209700612 -0.2621976266875958 -0.9024668466014079 0.3417688417781226 -0.262197729919524 0.9024668466034375 -0.3417689209700612 0.2621976266875958 0.9024668466014079 -0.3417688417781226 0.262197729919524 -0.9999555775200822 0.008837293966907273 -0.003277990515714328 0.9999555775200822 -0.008837293966907273 0.003277990515714328 -0.902469637953096 -0.4216810734117544 0.08794103080541284 -0.9024696379339142 -0.4216812607433428 0.08794013273434857 0.902469637953096 0.4216810734117544 -0.08794103080541284 0.9024696379339142 0.4216812607433428 -0.08794013273434857 -0.9999555769430629 -0.008249995118261777 0.004558697293603463 0.9999555769430629 0.008249995118261777 -0.004558697293603463 -0.902465509489143 0.2493039587819413 -0.3512884004890483 -0.9024655094892364 0.2493038174778161 -0.3512885007701228 0.902465509489143 -0.2493039587819413 0.3512884004890483 0.9024655094892364 -0.2493038174778161 0.3512885007701228 -0.9999555779597974 0.00747843989793408 -0.005737163391514847 0.9999555779597974 -0.00747843989793408 0.005737163391514847 -0.9024672758692717 -0.4288731719288677 -0.04025690480859202 -0.9024672758646049 -0.4288730763736164 -0.04025792288916159 0.9024672758692717 0.4288731719288677 0.04025690480859202 0.9024672758646049 0.4288730763736164 0.04025792288916159 -0.9999555776764442 -0.009227086398497142 0.001924461057970694 0.9999555776764442 0.009227086398497142 -0.001924461057970694 -0.9024664086806516 0.1346861044661979 -0.4091626015006348 -0.9024664086756207 0.134686627996427 -0.4091624291782907 0.9024664086806516 -0.1346861044661979 0.4091626015006348 0.9024664086756207 -0.134686627996427 0.4091624291782907 -0.9999555777995033 0.005455079717335024 -0.007686646403922885 0.9999555777995033 -0.005455079717335024 0.007686646403922885 -0.9024678923401798 -0.3979516028754097 -0.1648824583270336 -0.902467892340141 -0.3979517141178801 -0.1648821898380311 0.902467892340141 0.3979517141178801 0.1648821898380311 0.9024678923401798 0.3979516028754097 0.1648824583270336 -0.9999555778851129 -0.009384369994094055 -0.000880827034032532 0.9999555778851129 0.009384369994094055 0.000880827034032532 -0.9024663791541479 0.008097340179231503 -0.430684185428747 -0.9024663791250542 0.008094825123542416 -0.4306842327681999 0.9024663791541479 -0.008097340179231503 0.430684185428747 0.9024663791250542 -0.008094825123542416 0.4306842327681999 -0.9999555777991002 0.002947080780235639 -0.008953052180265634 0.9999555777991002 -0.002947080780235639 0.008953052180265634 -0.9024662331163754 -0.3316728008946313 -0.2748596937192685 -0.9024662331196897 -0.3316729654395058 -0.2748594951522004 0.9024662331196897 0.3316729654395058 0.2748594951522004 0.9024662331163754 0.3316728008946313 0.2748596937192685 -0.999955578177709 -0.008707751861328623 -0.003607870397508076 0.999955578177709 0.008707751861328623 0.003607870397508076 -0.9024648168310505 -0.1192080340211159 -0.4139404534554687 -0.9024648168337509 -0.1192074838149737 -0.4139406118994938 0.9024648168310505 0.1192080340211159 0.4139404534554687 0.9024648168337509 0.1192074838149737 0.4139406118994938 -0.9999555778745281 0.0001771432880129035 -0.009423953410019359 0.9999555778745281 -0.0001771432880129035 0.009423953410019359 -0.9024656541724766 -0.2359218880318137 -0.3604117170494711 -0.902465654171666 -0.2359217875784709 -0.3604117828072296 0.902465654171666 0.2359217875784709 0.3604117828072296 0.9024656541724766 0.2359218880318137 0.3604117170494711 -0.9999555777101306 -0.007257512103960586 -0.006014243465287442 0.9999555777101306 0.007257512103960586 0.006014243465287442 -0.9999555776620278 -0.002608402576862527 -0.009057534907320045 0.9999555776620278 0.002608402576862527 0.009057534907320045 -0.9999555782419665 -0.005162296496035368 -0.007886205530005717 0.9999555782419665 0.005162296496035368 0.007886205530005717</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"128\" source=\"#ID790\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID788\">\r\n                    <float_array count=\"294\" id=\"ID791\">-0.3524052240098752 -0.2361568945663559 0.3968896729741346 0.1922852666439943 0.4737327008967246 -0.9152355322345628 0.9630262887515753 -0.6354626856147748 -0.4167537122269166 -0.1324198059202896 0.4655388858093918 0.08953581466919515 0.09695620062060414 -0.9810664844640712 0.6730670627304097 -0.8361327489468616 -0.2567247963027225 -0.31560409935685 0.2973352684969716 0.2683873916988639 0.7882870625951499 -0.7713646321021612 1.150086384430147 -0.3900178469634608 -0.783870346512475 1.378704611404 0.06212354191532857 -0.07234147090675236 -1.289966888573064 1.118085413747316 -0.3008224430983176 -0.9484756688791239 -0.4367617780734336 -0.01462412283998805 0.3039367921445285 -0.9584067804719864 0.4893324111284635 -0.02983363233461241 -0.2203908618967485 1.503989911589727 0.04433562663634652 -0.07875933781474324 -0.8016174477820905 1.372301469794169 -0.1429120515214738 -0.367198117649849 0.1809070857644482 0.3155180012112068 1.022592991639205 -0.5743581365222055 1.234023150294384 -0.1285484832020004 -1.275396677288614 1.12832667461258 0.07671628909398423 -0.06208436965356513 -1.66136548078844 0.7619376860652442 -0.6628716918210396 -0.8170859861489843 -0.4073515623064179 0.1011264290438674 -0.09476487502684913 -0.9804405628471385 0.4626568454837426 -0.1490324395691673 0.3650414996825432 1.493042349004655 0.02493089743164573 -0.08076808610367456 -0.2397426200746382 1.50198664557768 -0.02066572129329647 -0.3914599007726098 0.05736325230823958 0.3346473762187736 1.17267479942198 -0.3439402612969316 1.223643632931941 0.1302055707804858 -1.651269230232574 0.7751163069047897 0.08682001596138418 -0.04889598984901968 -1.882760478217731 0.3355170423070947 -0.9419647060013334 -0.6102700701630079 -0.3353501529221609 0.1995466050261453 -0.4668875889383237 -0.9047897006971836 0.3922070304645184 -0.2514821593426724 0.3457982769905845 1.495615404073835 0.9203364240227525 1.346830328258524 0.005635596625816379 -0.07818806575251706 -0.06697561493530457 0.3275468783499481 1.126355299807839 0.3752155678757479 0.1040111679385125 -0.388637340607042 1.238011217856225 -0.09244888651659929 -1.878050069741289 0.3504523016984736 0.09153118311425376 -0.03395832490335624 -1.93459673056012 -0.123302009428372 -1.117289405717435 -0.3613891006095253 -0.2344980136134975 0.272067017744716 -0.7734592826352205 -0.7528807175430338 0.2920443195803396 -0.3274591628500121 0.9029042283172811 1.35375431886067 1.39616406775141 1.078353125365281 -0.01183525826232684 -0.07124871822464581 -0.186897061406765 0.2942037124704471 0.9447253547904824 0.5959672029532446 0.2257787374954082 -0.3581771099131729 1.214189184550729 0.169958907902574 0.09043585409260579 -0.01858633654730853 -1.812203419199725 -0.5737500453082663 -1.93569205005432 -0.1079301547813531 -1.190013434193229 -0.09824780362384109 -0.1179073442473178 0.3167816077142103 -0.9983469950028587 -0.5495662572713074 0.1755912440477331 -0.3743751425856143 1.382091246066081 1.089018993299208 1.75026303628513 0.7114738979672752 -0.02592837582048213 -0.06056746696411634 -0.2952586744430266 0.2337084769733447 0.6794575272154855 0.7773668085625854 0.3372907202383119 -0.2986409217881123 1.092513136402134 0.4297375884811659 0.08363089132390443 -0.004153551560189934 -1.526489466348473 -0.9758143642852514 -1.819006096267833 -0.5593221080025462 -1.168978557164991 0.1615496775993526 0.005430313511846641 0.3347777810011712 -1.13847441899684 -0.3136789370305894 0.05211876781394509 -0.3929897756725005 1.740805216807092 0.7249390145054863 1.951177325817038 0.2788063115482746 -0.03539234262457076 -0.04709359816704189 -0.3809160440027784 0.146093917292971 0.3383174364586705 0.8966761424705388 0.4270405228667517 -0.2102904844304112 0.8659105981995169 0.6639631861579365 0.07171849013542153 0.008062775638568245 -1.102793304223511 -1.293774310216109 -1.538389610930159 -0.9636106058033177 -1.192697017918619 -0.05808015184411099 -1.060803453390981 0.4063081240514468 -0.07222633956791902 -0.3845717407713823 0.1297449779240717 0.3265826019173688 1.947182244123232 0.2938766420839853 1.981042651962162 -0.1812112976198525 -0.03938788681399102 -0.0320215229750103 -0.4299897675531783 0.03654607664910618 -0.0524315242956043 0.9283402239298384 0.4802244090786475 -0.09863015383275404 0.5419672336339126 0.840067431844499 0.05575920687481053 0.01697370996765415 -0.5787908752940257 -1.499364633663538 -1.118723112271001 -1.28487983214167 -1.156099853862085 0.2066797400671177 -0.8675436049402432 0.6248879863575346 -0.1921656442747269 -0.3487502314162322 0.2497335503953799 0.2916925404031848 1.982871524296908 -0.1658838045780912 1.837226823603213 -0.6277221656035168 -0.03755897012292375 -0.01669365819150997 -0.4435596451746486 0.8574897570892256 0.1549471133513004 0.926271017659403 -0.4314797661798583 -0.08241555601430506 0.4850983193021703 0.02291896507682182 0.03716949338786759 0.02178844157197701 -0.0009938348333969052 -1.574320909725511 -0.5973340108549068 -1.494561963904799 -1.020058250736914 0.4652208336946513 -0.590668199735378 0.8003619256414625 -0.3002610023705488 -0.2850266574071003 0.3573215388483328 0.2282013813533236 1.844715281581389 -0.6135032123919676 1.53248244939769 -1.021051126561889 -0.03006746412218775 -0.00246891752738707 -0.7787690196498813 0.6932719536246276 -0.2397379242648021 0.9092043715946208 -0.3847025093323656 -0.1940833813882925 0.44076218466755 0.1365952386707551 0.01760077999626869 0.02207835371030489 0.5791832437635509 -1.51196408310349 -0.02050822442818087 -1.574031800828231 1.544954207250127 -1.00921122784879 1.093911919977969 -1.326263772815833 -0.017581589667695 0.009384382415771322 1.110257215438868 -1.317846356961747 0.560426229320167 -1.516213318070019 -0.001204457374191035 0.01781819349283538</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"147\" source=\"#ID791\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID787\">\r\n                    <input semantic=\"POSITION\" source=\"#ID785\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID786\"/>\r\n                </vertices>\r\n                <triangles count=\"126\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID787\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID788\"/>\r\n                    <p>0 0 1 1 2 2 3 3 2 2 1 1 4 1 5 2 6 3 5 2 4 1 7 0 1 4 8 5 3 6 9 7 3 6 8 5 10 5 6 6 11 7 6 6 10 5 4 4 12 8 0 9 13 10 2 11 13 10 0 9 7 9 14 10 5 11 14 10 7 9 15 8 16 12 17 13 18 14 19 14 20 13 21 12 9 15 8 16 22 17 23 18 22 17 8 16 10 16 24 17 25 18 24 17 10 16 11 15 26 19 17 20 16 21 21 21 20 20 27 19 28 22 12 23 29 24 13 25 29 24 12 23 15 23 30 24 14 25 30 24 15 23 31 22 18 26 17 27 32 28 33 28 20 27 19 26 22 29 23 30 34 31 35 32 34 31 23 30 25 30 36 31 37 32 36 31 25 30 24 29 38 33 17 34 26 35 27 35 20 34 39 33 40 36 28 37 41 38 29 39 41 38 28 37 31 37 42 38 30 39 42 38 31 37 43 36 32 40 17 41 44 42 45 42 20 41 33 40 34 43 35 44 46 45 47 46 46 45 35 44 37 44 48 45 49 46 48 45 37 44 36 43 38 47 50 48 17 49 20 49 51 48 39 47 40 50 41 51 52 52 53 53 52 52 41 51 42 51 54 52 55 53 54 52 42 51 43 50 44 54 17 55 56 56 57 56 20 55 45 54 46 57 47 58 58 59 59 60 58 59 47 58 49 58 60 59 61 60 60 59 49 58 48 57 50 61 62 62 17 63 20 63 63 62 51 61 52 64 53 65 64 66 65 67 64 66 53 65 55 65 66 66 67 67 66 66 55 65 54 64 17 68 68 69 56 70 57 70 69 69 20 68 58 71 59 72 70 73 71 74 70 73 59 72 61 72 72 73 73 74 72 73 61 72 60 71 62 75 74 76 17 77 20 77 75 76 63 75 64 78 65 79 76 80 77 81 76 80 65 79 67 79 78 80 79 81 78 80 67 79 66 78 17 82 80 83 68 84 69 84 81 83 20 82 70 85 71 86 82 87 83 88 82 87 71 86 73 86 84 87 85 88 84 87 73 86 72 85 74 89 86 90 17 91 20 91 87 90 75 89 76 92 77 93 88 94 89 95 88 94 77 93 79 93 90 94 91 95 90 94 79 93 78 92 17 96 92 97 80 98 81 98 93 97 20 96 94 99 82 100 95 101 83 102 95 101 82 100 84 100 96 101 85 102 96 101 84 100 97 99 86 103 98 104 17 105 20 105 99 104 87 103 88 106 89 107 100 108 101 109 100 108 89 107 91 107 102 108 103 109 102 108 91 107 90 106 17 110 104 111 92 112 93 112 105 111 20 110 106 113 94 114 107 115 95 116 107 115 94 114 97 114 108 115 96 116 108 115 97 114 109 113 98 117 110 118 17 119 20 119 111 118 99 117 101 120 112 121 100 122 113 123 100 122 112 121 114 121 102 122 115 123 102 122 114 121 103 120 17 124 116 125 104 126 105 126 117 125 20 124 118 127 106 128 119 129 107 130 119 129 106 128 109 128 120 129 108 130 120 129 109 128 121 127 110 131 122 132 17 133 20 133 123 132 111 131 112 134 118 135 113 136 119 137 113 136 118 135 121 135 115 136 120 137 115 136 121 135 114 134 17 138 124 139 116 140 117 140 125 139 20 138 122 141 126 142 17 143 20 143 127 142 123 141 126 144 124 145 17 146 20 146 125 145 127 144</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID792\">\r\n            <mesh>\r\n                <source id=\"ID793\">\r\n                    <float_array count=\"3000\" id=\"ID797\">-0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 -0.3788313495221017 0.7391863847872159 -0.7918046221566382 -0.3788313495221017 0.7391863847872159</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1000\" source=\"#ID797\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID794\">\r\n                    <float_array count=\"3000\" id=\"ID798\">-0.6100330350797705 -0.432978057042589 -0.6636186391527805 -0.6107430305208749 -0.4313432930897734 -0.6640300551757034 -0.6131685433316286 -0.6352305123706656 -0.4695812321865837 0.6131685433316286 0.6352305123706656 0.4695812321865837 0.6107430305208749 0.4313432930897734 0.6640300551757034 0.6100330350797705 0.432978057042589 0.6636186391527805 -0.6414932949073833 -0.1910191354735049 -0.7429657074669219 0.6414932949073833 0.1910191354735049 0.7429657074669219 -0.9230582056960787 0.2076733531501404 0.3237828397066665 -0.9087638176408079 0.2443143590689556 0.3383176284198477 -0.9119812894775979 0.2460334925802348 0.3282646008505167 0.9119812894775979 -0.2460334925802348 -0.3282646008505167 0.9087638176408079 -0.2443143590689556 -0.3383176284198477 0.9230582056960787 -0.2076733531501404 -0.3237828397066665 -0.5814085771430504 -0.6235265193762986 -0.5226650419331412 0.5814085771430504 0.6235265193762986 0.5226650419331412 -0.6219866060717065 -0.2255011033331463 -0.7498545954136263 0.6219866060717065 0.2255011033331463 0.7498545954136263 -0.9210274254689069 0.188359605763954 0.3409239511248287 -0.9234677517021199 0.1707487320338378 0.3435872262978766 0.9234677517021199 -0.1707487320338378 -0.3435872262978766 0.9210274254689069 -0.188359605763954 -0.3409239511248287 -0.9243339167159471 0.2082873548390461 0.319723612238305 0.9243339167159471 -0.2082873548390461 -0.319723612238305 -0.9018502407217643 0.249016537502691 0.3530678509299122 0.9018502407217643 -0.249016537502691 -0.3530678509299122 -0.4688809399671691 -0.7410968956416455 -0.4805476619502169 0.4688809399671691 0.7410968956416455 0.4805476619502169 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.5313074129219958 -0.1516791908637951 -0.8334901655286883 0.5313074129219958 0.1516791908637951 0.8334901655286883 -0.9193974272347317 0.1904939904256795 0.3441226676722378 0.9193974272347317 -0.1904939904256795 -0.3441226676722378 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 -0.9064264101263384 0.2873078457702411 0.3095890256200023 0.9064264101263384 -0.2873078457702411 -0.3095890256200023 -0.4125080872329844 -0.7444765374883888 -0.5249683448520343 0.4125080872329844 0.7444765374883888 0.5249683448520343 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 -0.4893414839082547 -0.1788419456180993 -0.8535575379633175 0.4893414839082547 0.1788419456180993 0.8535575379633175 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 -0.8847877951732008 0.3876305483478212 0.2586370342779885 0.8847877951732008 -0.3876305483478212 -0.2586370342779885 0.05401064972997639 0.5993988161129192 -0.7986262636291001 0.04971157032437513 0.7278710826830646 -0.683909677347578 0.04569831620770311 0.6180154536524877 -0.7848366472983348 -0.04569831620770311 -0.6180154536524877 0.7848366472983348 -0.04971157032437513 -0.7278710826830646 0.683909677347578 -0.05401064972997639 -0.5993988161129192 0.7986262636291001 -0.9126387109060857 0.2012446850352883 0.3557965150204898 0.9126387109060857 -0.2012446850352883 -0.3557965150204898 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 -0.5884703132773211 -0.5886073228299992 0.554296048968593 -0.5750104179820392 -0.5638465179981029 0.5928238552500531 -0.5954974211095998 -0.6204561645494262 0.5103106596225786 0.5954974211095998 0.6204561645494262 -0.5103106596225786 0.5750104179820392 0.5638465179981029 -0.5928238552500531 0.5884703132773211 0.5886073228299992 -0.554296048968593 -0.4492936185982592 0.5610742779696141 -0.6952200363106335 -0.4368753109454024 0.552964815618193 -0.7094856414154525 -0.4435911602170827 0.5573645162302835 -0.7018345094284296 0.4435911602170827 -0.5573645162302835 0.7018345094284296 0.4368753109454024 -0.552964815618193 0.7094856414154525 0.4492936185982592 -0.5610742779696141 0.6952200363106335 0.0331249413609678 -0.9196095857015579 0.391434474906901 0.007288799048047151 -0.9575732679774761 0.2880977435929935 0.02921517395714277 -0.972018298904142 0.2330813167247683 -0.02921517395714277 0.972018298904142 -0.2330813167247683 -0.007288799048047151 0.9575732679774761 -0.2880977435929935 -0.0331249413609678 0.9196095857015579 -0.391434474906901 -0.9092595095315058 0.2346197211408815 0.3438033315404329 0.9092595095315058 -0.2346197211408815 -0.3438033315404329 0.0278811390736898 -0.1294666985918035 -0.9911917150782147 0.02557206782593211 -0.2876548247142446 -0.9573926943348394 0.02784385059247752 0.01284876764323613 -0.9995297039879475 -0.02784385059247752 -0.01284876764323613 0.9995297039879475 -0.02557206782593211 0.2876548247142446 0.9573926943348394 -0.0278811390736898 0.1294666985918035 0.9911917150782147 0.009825431372019862 -0.4178389509239254 -0.9084679807176186 0.0271922736872749 -0.5474159088744459 -0.8364187963950122 -0.0271922736872749 0.5474159088744459 0.8364187963950122 -0.009825431372019862 0.4178389509239254 0.9084679807176186 0.03669397673521557 0.6999623410633172 -0.7132364777298733 -0.03669397673521557 -0.6999623410633172 0.7132364777298733 -0.9111139540391022 0.1995854796515729 0.3606064323711994 0.9111139540391022 -0.1995854796515729 -0.3606064323711994 -0.6085378327787385 -0.4363385207717332 0.6627898621491521 0.6085378327787385 0.4363385207717332 -0.6627898621491521 -0.4290146282623736 0.5477739795014404 -0.7182549102637957 0.4290146282623736 -0.5477739795014404 0.7182549102637957 0.0355140718306879 -0.9496263193448361 0.3113657083071032 -0.0355140718306879 0.9496263193448361 -0.3113657083071032 0.02675587691421818 -0.5599249416657842 -0.8281112139991341 0.02589537248138592 -0.5533675459134304 -0.8325345571288905 0.02066161520126121 -0.7708648855079502 -0.6366635107716556 0.0193163073801767 -0.6584185702951814 -0.7524040580430462 -0.02589537248138592 0.5533675459134304 0.8325345571288905 -0.02066161520126121 0.7708648855079502 0.6366635107716556 -0.0193163073801767 0.6584185702951814 0.7524040580430462 -0.02675587691421818 0.5599249416657842 0.8281112139991341 0.01414311661247775 -0.8602383968027927 -0.5096958631563011 0.019948224836587 -0.9244137174900406 -0.380869199650106 -0.019948224836587 0.9244137174900406 0.380869199650106 -0.01414311661247775 0.8602383968027927 0.5096958631563011 -0.5897023076858039 0.8014515282654252 -0.09963250549419947 -0.4189594113912097 0.8690844326029823 -0.2629928908048341 -0.3869225765070412 0.8727213960493712 -0.2977386180306301 0.3869225765070412 -0.8727213960493712 0.2977386180306301 0.4189594113912097 -0.8690844326029823 0.2629928908048341 0.5897023076858039 -0.8014515282654252 0.09963250549419947 -0.9099990926414894 0.2258504072914317 0.3476970591160654 0.9099990926414894 -0.2258504072914317 -0.3476970591160654 0.03481463620808104 0.01941661477622277 -0.9992051521966502 -0.03481463620808104 -0.01941661477622277 0.9992051521966502 0.02635295136991371 0.002234022109095546 -0.9996502043711644 -0.02635295136991371 -0.002234022109095546 0.9996502043711644 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.03784136067587975 0.8144840404498097 -0.578950584484333 0.03784136067587975 -0.8144840404498097 0.578950584484333 -0.9173890060384352 0.2293469628645768 0.3252650953062846 0.9173890060384352 -0.2293469628645768 -0.3252650953062846 -0.6122597140083652 -0.4503628205385982 0.6498548857082733 0.6122597140083652 0.4503628205385982 -0.6498548857082733 -0.03958647210302838 -0.8552382005688831 0.5167209416252983 0.03958647210302838 0.8552382005688831 -0.5167209416252983 0.03026716317725075 -0.2976749896778023 -0.9541873502376365 -0.03026716317725075 0.2976749896778023 0.9541873502376365 0.02910907021181551 -0.7855610775535136 -0.6180990660600988 -0.02910907021181551 0.7855610775535136 0.6180990660600988 0.01961372260044477 -0.9291073014986491 -0.3692897564076902 -0.01961372260044477 0.9291073014986491 0.3692897564076902 -0.5991542260006512 0.7982237271597008 -0.06207330235162312 0.5991542260006512 -0.7982237271597008 0.06207330235162312 -0.9157317949075062 0.1970830215706734 0.3501336350653144 0.9157317949075062 -0.1970830215706734 -0.3501336350653144 0.0299077864524713 0.3064717907049849 -0.9514097780723052 -0.0299077864524713 -0.3064717907049849 0.9514097780723052 0.02136018720689605 0.2992869541934073 -0.9539240333758867 -0.02136018720689605 -0.2992869541934073 0.9539240333758867 -0.006913157180589681 0.1302289306279806 0.9914598498604414 -0.007408558792217734 0.4165322447531742 0.909090755831069 -0.005482260976492941 0.139386230751211 0.9902229160605989 0.005482260976492941 -0.139386230751211 -0.9902229160605989 0.007408558792217734 -0.4165322447531742 -0.909090755831069 0.006913157180589681 -0.1302289306279806 -0.9914598498604414 -0.003802609351618076 0.6663786935817081 0.7456037666900933 -0.003797720091156379 0.4255976902132539 0.9049045161823717 0.003797720091156379 -0.4255976902132539 -0.9049045161823717 0.003802609351618076 -0.6663786935817081 -0.7456037666900933 0.001295306138674836 0.8564789233090522 0.5161803716816183 -0.0008944920513999811 0.6733396999513402 0.7393327047773614 0.0008944920513999811 -0.6733396999513402 -0.7393327047773614 -0.001295306138674836 -0.8564789233090522 -0.5161803716816183 0.006332432417781015 0.9251165065025596 0.3796305436818457 0.002908326967066847 0.8606855222858298 0.5091286412703778 -0.002908326967066847 -0.8606855222858298 -0.5091286412703778 -0.006332432417781015 -0.9251165065025596 -0.3796305436818457 0.01231533713361633 0.9984524360191881 -0.05423159114975583 0.007293336385795456 0.9730925818604524 0.2302990107936251 -0.001404844418161865 0.99551776389769 0.09456430709471765 0.001404844418161865 -0.99551776389769 -0.09456430709471765 -0.007293336385795456 -0.9730925818604524 -0.2302990107936251 -0.01231533713361633 -0.9984524360191881 0.05423159114975583 0.01023761722016337 0.980868485680595 -0.1944021733219808 0.0120157990965055 0.998198666219562 -0.05877961661630734 -0.0120157990965055 -0.998198666219562 0.05877961661630734 -0.01023761722016337 -0.980868485680595 0.1944021733219808 0.01414019568378701 0.8726596648110707 -0.4881241279406847 0.02512467636456076 0.7906507610061087 -0.611751685537553 0.01646393589398393 0.9369218021430217 -0.3491510783084469 -0.01646393589398393 -0.9369218021430217 0.3491510783084469 -0.02512467636456076 -0.7906507610061087 0.611751685537553 -0.01414019568378701 -0.8726596648110707 0.4881241279406847 0.03469207648931452 0.5770147196282489 -0.8159966134495859 0.02402975912977263 0.7849144902682695 -0.6191379601050702 -0.02402975912977263 -0.7849144902682695 0.6191379601050702 -0.03469207648931452 -0.5770147196282489 0.8159966134495859 0.03508365640598449 0.3143465129616109 -0.9486597951015225 0.02921019489462125 0.5707659558659806 -0.8205930709789181 -0.02921019489462125 -0.5707659558659806 0.8205930709789181 -0.03508365640598449 -0.3143465129616109 0.9486597951015225 0.01492656118699344 -0.9952036424557336 -0.09667940739356572 -0.01492656118699344 0.9952036424557336 0.09667940739356572 0.01346271275209136 -0.9964377721902609 -0.08324975386068219 0.008347472633542526 -0.9795541238063974 0.2010075576552121 -0.008347472633542526 0.9795541238063974 -0.2010075576552121 -0.01346271275209136 0.9964377721902609 0.08324975386068219 0.008249685662450967 -0.976765905206645 0.2141502022233793 0.002143504963585591 -0.8767179422043012 0.4810000573841198 -0.002143504963585591 0.8767179422043012 -0.4810000573841198 -0.008249685662450967 0.976765905206645 -0.2141502022233793 0.003370248980950642 -0.8703013678452798 0.4925080411002865 0.002686763416736887 -0.7899672717419514 0.6131431243020837 -0.002686763416736887 0.7899672717419514 -0.6131431243020837 -0.003370248980950642 0.8703013678452798 -0.4925080411002865 -0.009335567978409306 -0.5787453233274817 0.8154549024299805 -0.006791809893397876 -0.4554923169053546 0.890213806092988 -0.0007244517714074711 -0.686530526938509 0.7271006194132722 0.0007244517714074711 0.686530526938509 -0.7271006194132722 0.006791809893397876 0.4554923169053546 -0.890213806092988 0.009335567978409306 0.5787453233274817 -0.8154549024299805 -0.9869176053607741 0.09681709921543918 -0.1289189261841074 -0.9999899824504387 -0.00260493943261591 0.003639957324477385 -0.9824989449431362 0.08503230673662772 -0.1657266725565704 0.9824989449431362 -0.08503230673662772 0.1657266725565704 0.9999899824504387 0.00260493943261591 -0.003639957324477385 0.9869176053607741 -0.09681709921543918 0.1289189261841074 -0.007381002033179414 -0.3156791974855449 0.9488372700752583 -0.003997307821499382 -0.4458837485294091 0.8950819539726755 0.003997307821499382 0.4458837485294091 -0.8950819539726755 0.007381002033179414 0.3156791974855449 -0.9488372700752583 -0.9841485037669431 0.06359518961047951 -0.1655517272386327 -0.9999905288897614 -0.001370765720624478 0.004130754424404623 0.9999905288897614 0.001370765720624478 -0.004130754424404623 0.9841485037669431 -0.06359518961047951 0.1655517272386327 -0.002427302614937988 -0.01243128957560056 0.9999197824033201 -0.004057949462573538 -0.1654053068756676 0.9862173277242321 0.004057949462573538 0.1654053068756676 -0.9862173277242321 0.002427302614937988 0.01243128957560056 -0.9999197824033201 -0.05001318370946404 0.8414267630942929 -0.5380517482583845 0.05001318370946404 -0.8414267630942929 0.5380517482583845 -0.9187981593551595 0.2316284903157012 0.3196219404853802 0.9187981593551595 -0.2316284903157012 -0.3196219404853802 -0.5116852732955495 -0.4542311857591191 0.7292819831699693 0.5116852732955495 0.4542311857591191 -0.7292819831699693 -0.05172784220055365 -0.8363317719908131 0.5457777913216892 0.05172784220055365 0.8363317719908131 -0.5457777913216892 -0.5143076157204272 0.8449925937235406 -0.1465441672818575 0.5143076157204272 -0.8449925937235406 0.1465441672818575 -0.9157810847001926 0.1934753844391117 0.3520117619078609 0.9157810847001926 -0.1934753844391117 -0.3520117619078609 0.03592728837289261 0.3424796949339312 0.9388380523328466 0.04335475963781485 0.2054908490064289 0.9776982539574081 0.03964917043178988 0.3525170978793918 0.9349650469331792 -0.03964917043178988 -0.3525170978793918 -0.9349650469331792 -0.04335475963781485 -0.2054908490064289 -0.9776982539574081 -0.03592728837289261 -0.3424796949339312 -0.9388380523328466 0.01644376297839757 0.9974451863900713 -0.06951764384949995 -0.01644376297839757 -0.9974451863900713 0.06951764384949995 0.03793714202236574 0.1449358727658069 -0.9887134903705868 0.02135092118153528 0.2802821764875909 -0.9596801757398549 0.03346756875724736 0.3104113722911479 -0.9500130008551491 -0.03346756875724736 -0.3104113722911479 0.9500130008551491 -0.02135092118153528 -0.2802821764875909 0.9596801757398549 -0.03793714202236574 -0.1449358727658069 0.9887134903705868 0.04357592730064158 -0.986621286913195 -0.1570973417013809 0.04731999989724039 -0.988143031769225 -0.1460622003656307 0.04741565844858901 -0.9527313725054269 -0.3000911314547839 -0.04741565844858901 0.9527313725054269 0.3000911314547839 -0.04731999989724039 0.988143031769225 0.1460622003656307 -0.04357592730064158 0.986621286913195 0.1570973417013809 -0.9612697098559012 0.1241480665562238 -0.2460646307048266 0.9612697098559012 -0.1241480665562238 0.2460646307048266 0.002788247194464847 0.7096494163407977 0.7045494528879771 0.02684474802398928 0.6624818840923926 0.7485967624515366 0.03145112195807651 0.7894354586032027 0.613027310670193 -0.03145112195807651 -0.7894354586032027 -0.613027310670193 -0.02684474802398928 -0.6624818840923926 -0.7485967624515366 -0.002788247194464847 -0.7096494163407977 -0.7045494528879771 -0.06757829711111801 0.7710133873258493 -0.6332231283867335 0.06757829711111801 -0.7710133873258493 0.6332231283867335 -0.9294521394256079 0.253452618746215 0.268105372135372 0.9294521394256079 -0.253452618746215 -0.268105372135372 -0.5121653214427434 -0.4705831108144322 0.7184971950729265 0.5121653214427434 0.4705831108144322 -0.7184971950729265 -0.06755689289069129 -0.8758167307604269 0.4778923731794361 0.06755689289069129 0.8758167307604269 -0.4778923731794361 0.01533915038481843 -0.931302781136795 -0.363922849395779 -0.01533915038481843 0.931302781136795 0.363922849395779 -0.5141693164024285 0.8420130928550114 -0.1632294873207583 0.5141693164024285 -0.8420130928550114 0.1632294873207583 -0.9325766854234757 0.1309140125917365 0.3363959677399454 0.9325766854234757 -0.1309140125917365 -0.3363959677399454 0.001200659249239651 -0.1460802454730157 0.9892720153223333 -0.001200659249239651 0.1460802454730157 -0.9892720153223333 -0.002061751646003162 0.149208950471754 0.9888035387675693 0.002061751646003162 -0.149208950471754 -0.9888035387675693 -0.0009318520237067135 0.433722340755988 0.9010460935939696 0.0009318520237067135 -0.433722340755988 -0.9010460935939696 0.001230385039251648 0.6798257005461618 0.7333726904034371 -0.001230385039251648 -0.6798257005461618 -0.7333726904034371 0.004958609525564488 0.865332610935552 0.5011735075231268 -0.004958609525564488 -0.865332610935552 -0.5011735075231268 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.03665747372773916 0.2635154343631972 0.9639584251783245 -0.03665747372773916 -0.2635154343631972 -0.9639584251783245 0.009900852030461732 0.9748308572254344 0.2227257796713161 -0.009900852030461732 -0.9748308572254344 -0.2227257796713161 0.02459906767420807 0.9291593642459279 -0.3688600841832339 -0.02459906767420807 -0.9291593642459279 0.3688600841832339 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.03526949973342622 0.2184273294063683 -0.9752156500779486 -0.03526949973342622 -0.2184273294063683 0.9752156500779486 0.01810657254151843 0.7819003011516978 -0.6231404906517333 -0.01810657254151843 -0.7819003011516978 0.6231404906517333 0.01159606897749572 -0.9972521189634576 -0.07316927228805119 -0.01159606897749572 0.9972521189634576 0.07316927228805119 0.007746355397098426 -0.9745611152693888 0.2239880054443695 -0.007746355397098426 0.9745611152693888 -0.2239880054443695 0.004188632105367766 -0.8653193803481177 0.5012033772382579 -0.004188632105367766 0.8653193803481177 -0.5012033772382579 0.03694298968752306 -0.9660546355743256 -0.2556827264370916 -0.03694298968752306 0.9660546355743256 0.2556827264370916 0.001214459778276763 -0.6793050578937298 0.7338550016232387 -0.001214459778276763 0.6793050578937298 -0.7338550016232387 -0.9165260464188996 0.2413126785897623 -0.3189799325781723 0.9165260464188996 -0.2413126785897623 0.3189799325781723 0.001434244776386382 -0.4349910787918278 0.9004336201594448 -0.001434244776386382 0.4349910787918278 -0.9004336201594448 0.03479758506284582 0.7257101728783496 0.6871199844675382 -0.03479758506284582 -0.7257101728783496 -0.6871199844675382 -0.9053555865328123 0.1174765612269161 -0.4080815108481708 0.9053555865328123 -0.1174765612269161 0.4080815108481708 -0.06837815441249286 0.7838010835826982 -0.61723600783957 0.06837815441249286 -0.7838010835826982 0.61723600783957 -0.925181050407382 0.2544784030417004 0.2815684043930342 0.925181050407382 -0.2544784030417004 -0.2815684043930342 -0.5094027305261349 -0.4031696580921826 0.7602388341346096 0.5094027305261349 0.4031696580921826 -0.7602388341346096 -0.06822779517691434 -0.8673864003091556 0.4929358990010996 0.06822779517691434 0.8673864003091556 -0.4929358990010996 -0.5108147009650829 0.8560080643809171 -0.07948921305931028 0.5108147009650829 -0.8560080643809171 0.07948921305931028 -0.9295497348399154 0.141402496183842 0.3405034868133092 0.9295497348399154 -0.141402496183842 -0.3405034868133092 0.01921047962226295 0.5651345907762262 -0.8247750310120148 -0.01921047962226295 -0.5651345907762262 0.8247750310120148 -0.9072210144294771 -0.4193680273961145 0.03287078604844312 -0.9243377794016469 -0.3811886557337647 0.0171720211599593 -0.924489198402029 -0.3808644361577947 0.0161865162458993 0.924489198402029 0.3808644361577947 -0.0161865162458993 0.9243377794016469 0.3811886557337647 -0.0171720211599593 0.9072210144294771 0.4193680273961145 -0.03287078604844312 -0.03780903634253117 0.08541542107879442 0.9956277831663706 0.03780903634253117 -0.08541542107879442 -0.9956277831663706 -0.915264571564772 -0.4027493562430763 -0.009149867984932962 0.915264571564772 0.4027493562430763 0.009149867984932962 -0.03805664037554967 -0.009784856047856541 -0.9992276761156334 0.03805664037554967 0.009784856047856541 0.9992276761156334 -0.03988346302587386 -0.9059913707647226 -0.4214130342988013 0.03988346302587386 0.9059913707647226 0.4214130342988013 -0.8756294668438924 0.3525945089564383 -0.3300759746610601 0.8756294668438924 -0.3525945089564383 0.3300759746610601 -0.706699211393621 -0.332866770111896 0.6243203808709985 -0.6992610303780938 -0.1874041802288657 0.6898649756490857 -0.7066995161370085 -0.3328394342728472 0.6243346097123314 0.7066995161370085 0.3328394342728472 -0.6243346097123314 0.6992610303780938 0.1874041802288657 -0.6898649756490857 0.706699211393621 0.332866770111896 -0.6243203808709985 -0.038009535614359 0.8723927326412684 0.4873255536467188 0.038009535614359 -0.8723927326412684 -0.4873255536467188 -0.6961182166882092 -0.4697752474880487 0.5428910067797866 0.6961182166882092 0.4697752474880487 -0.5428910067797866 -0.8876323827149847 0.1162542163379045 -0.4456385422507556 0.8876323827149847 -0.1162542163379045 0.4456385422507556 -0.06016248758640132 0.7467500003972328 -0.6623782242753371 0.06016248758640132 -0.7467500003972328 0.6623782242753371 -0.9245527864503199 0.237309528475381 0.298138110213608 0.9245527864503199 -0.237309528475381 -0.298138110213608 -0.5139497895077154 -0.4058857625891543 0.755719763928664 0.5139497895077154 0.4058857625891543 -0.755719763928664 -0.0600348953330893 -0.8956050067033663 0.4407805387153662 0.0600348953330893 0.8956050067033663 -0.4407805387153662 -0.515859789786745 0.8519771407680433 -0.08957471121854281 0.515859789786745 -0.8519771407680433 0.08957471121854281 -0.9272834517509151 0.1632925520749501 0.3368693256230941 0.9272834517509151 -0.1632925520749501 -0.3368693256230941 -0.9059645702483528 -0.4228100787491342 0.02144375813304393 0.9059645702483528 0.4228100787491342 -0.02144375813304393 -0.04998584997638523 0.03649578989508206 0.9980828984218056 0.04998584997638523 -0.03649578989508206 -0.9980828984218056 -0.9111165739877291 -0.4120009636975097 -0.01103605532726058 -0.9026800271055669 -0.4300978238059344 -0.01358788512213859 -0.9126672826667309 -0.4084995448882047 -0.01290554050999234 0.9126672826667309 0.4084995448882047 0.01290554050999234 0.9026800271055669 0.4300978238059344 0.01358788512213859 0.9111165739877291 0.4120009636975097 0.01103605532726058 -0.9164192555908047 -0.4001603245189633 -0.006889315152686308 0.9164192555908047 0.4001603245189633 0.006889315152686308 -0.9098768749122155 -0.4144813710644892 0.01814567553114639 -0.9100128209423325 -0.4141053938628353 0.01983402365341829 0.9100128209423325 0.4141053938628353 -0.01983402365341829 0.9098768749122155 0.4144813710644892 -0.01814567553114639 -0.05007447950133898 -0.04460336033844332 -0.9977490098963712 0.05007447950133898 0.04460336033844332 0.9977490098963712 -0.05223146845994098 -0.8838556721519534 -0.4648344054685892 0.05223146845994098 0.8838556721519534 0.4648344054685892 -0.9150871129800877 0.09156365276906278 -0.3927234054004866 -0.9134603460440244 0.100090271838512 -0.3944263349326765 -0.9055099122664467 0.08478975686936037 -0.415767357926577 0.9055099122664467 -0.08478975686936037 0.415767357926577 0.9134603460440244 -0.100090271838512 0.3944263349326765 0.9150871129800877 -0.09156365276906278 0.3927234054004866 -0.8628976978143381 0.3867850561445824 -0.3252766260430459 0.8628976978143381 -0.3867850561445824 0.3252766260430459 -0.9156800465471477 0.12306795282666 0.3826020535000676 -0.8250636447121634 0.1563131469686213 0.542988197163665 -0.9158353220314106 0.1680129671192036 0.3647153764230731 0.9158353220314106 -0.1680129671192036 -0.3647153764230731 0.8250636447121634 -0.1563131469686213 -0.542988197163665 0.9156800465471477 -0.12306795282666 -0.3826020535000676 -0.9301712002434255 0.04356903436083521 0.3645315863989973 0.9301712002434255 -0.04356903436083521 -0.3645315863989973 -0.9098752187950685 0.1899053550703858 -0.3688672421593123 -0.9102915714758219 0.1919571037046917 -0.3667720344265427 0.9102915714758219 -0.1919571037046917 0.3667720344265427 0.9098752187950685 -0.1899053550703858 0.3688672421593123 -0.05002206568014039 0.8883803733443121 0.4563749611905901 0.05002206568014039 -0.8883803733443121 -0.4563749611905901 -0.9152454586525087 -0.3912460761204535 0.09618866012325544 -0.9335057704990215 -0.3295072998576136 0.1413927713342278 -0.9161764556186254 -0.3981519670093227 0.04577896172588378 0.9161764556186254 0.3981519670093227 -0.04577896172588378 0.9335057704990215 0.3295072998576136 -0.1413927713342278 0.9152454586525087 0.3912460761204535 -0.09618866012325544 -0.8008752262028298 -0.5581038891156944 0.2170689314676397 0.8008752262028298 0.5581038891156944 -0.2170689314676397 -0.9078252336262972 0.2546053228708254 -0.3332108563015343 0.9078252336262972 -0.2546053228708254 0.3332108563015343 -0.06214391660331564 0.7497897154320584 -0.6587514829292707 0.06214391660331564 -0.7497897154320584 0.6587514829292707 -0.9105068842497451 0.232294596580093 0.3420766495005371 0.9105068842497451 -0.232294596580093 -0.3420766495005371 -0.5636529765645513 -0.1834260551652416 0.805388232032502 0.5636529765645513 0.1834260551652416 -0.805388232032502 -0.06204321152616367 -0.8915755561120776 0.4486019033028719 0.06204321152616367 0.8915755561120776 -0.4486019033028719 -0.563551722335448 0.8122020272639635 0.1507890021223632 0.563551722335448 -0.8122020272639635 -0.1507890021223632 -0.9128754411958339 0.2045282989941302 0.3533080861968483 0.9128754411958339 -0.2045282989941302 -0.3533080861968483 -0.8841694971092278 -0.4670196417475235 0.01170276051322128 0.8841694971092278 0.4670196417475235 -0.01170276051322128 -0.6099115313195107 0.7918454994605457 -0.03144247044315008 -0.6271806346804609 0.7782902294104336 -0.0301458170575845 -0.7948062792220184 0.5103440598305962 -0.328377707990168 0.7948062792220184 -0.5103440598305962 0.328377707990168 0.6271806346804609 -0.7782902294104336 0.0301458170575845 0.6099115313195107 -0.7918454994605457 0.03144247044315008 -0.06757420297446912 0.1542219217613901 0.9857227429356539 0.06757420297446912 -0.1542219217613901 -0.9857227429356539 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 -0.9173919056680412 -0.396652180679767 0.03254441544636197 0.9173919056680412 0.396652180679767 -0.03254441544636197 -0.7044687220678403 0.6666170076972114 0.2436094921732724 0.7044687220678403 -0.6666170076972114 -0.2436094921732724 -0.9056948139282527 -0.4239285587280207 -0.001217012017516861 0.9056948139282527 0.4239285587280207 0.001217012017516861 -0.9062955794800263 -0.4218840716820903 0.02534073155818777 0.9062955794800263 0.4218840716820903 -0.02534073155818777 -0.9178702577263617 -0.3968043330700363 -0.007778896977463935 0.9178702577263617 0.3968043330700363 0.007778896977463935 -0.0673402010633347 0.03284261300743482 -0.9971893802541189 0.0673402010633347 -0.03284261300743482 0.9971893802541189 -0.06783519718058229 -0.9323282921296917 -0.3551933863657993 0.06783519718058229 0.9323282921296917 0.3551933863657993 -0.9036091026635394 0.0556782963512844 -0.424724047940556 0.9036091026635394 -0.0556782963512844 0.424724047940556 -0.9151772240300315 0.1669447966678817 -0.3668515823629565 0.9151772240300315 -0.1669447966678817 0.3668515823629565 -0.6447186628852124 0.6879675290323077 0.3332244359657386 -0.6297975146368566 0.6855810967237255 0.3651488057933807 -0.5462375627474104 0.7832296524327782 0.2969441641012638 0.5462375627474104 -0.7832296524327782 -0.2969441641012638 0.6297975146368566 -0.6855810967237255 -0.3651488057933807 0.6447186628852124 -0.6879675290323077 -0.3332244359657386 -0.8004665242590809 0.1327927671656561 0.584482184954404 0.8004665242590809 -0.1327927671656561 -0.584482184954404 -0.9178727869669794 0.2036829255299642 -0.3406212160054408 0.9178727869669794 -0.2036829255299642 0.3406212160054408 -0.06731641938335971 0.8494783472765206 0.5233116062058579 0.06731641938335971 -0.8494783472765206 -0.5233116062058579 -0.7668641844162472 -0.5810340615428355 0.2726146400812705 0.7668641844162472 0.5810340615428355 -0.2726146400812705 -0.6476791120465277 -0.7033306111846984 -0.2929809194967823 -0.6450470615181747 -0.7070854542103706 -0.2897316842716416 -0.6233448385994473 -0.603445758421776 -0.4972870688387107 0.6233448385994473 0.603445758421776 0.4972870688387107 0.6450470615181747 0.7070854542103706 0.2897316842716416 0.6476791120465277 0.7033306111846984 0.2929809194967823 -0.0732053161087646 0.6786547872505393 -0.7308000146656684 0.0732053161087646 -0.6786547872505393 0.7308000146656684 -0.9271360714165975 0.212632426034943 0.3085549488773313 0.9271360714165975 -0.212632426034943 -0.3085549488773313 -0.5682440159721127 -0.2499810897182357 0.7839695103096603 0.5682440159721127 0.2499810897182357 -0.7839695103096603 -0.07326583168045271 -0.9382150080750226 0.3382080964893607 0.07326583168045271 0.9382150080750226 -0.3382080964893607 -0.5680807927105938 0.8189688158964524 0.08108200504714996 0.5680807927105938 -0.8189688158964524 -0.08108200504714996 -0.927548465775947 0.18590322006679 0.3241817953023973 0.927548465775947 -0.18590322006679 -0.3241817953023973 -0.8928491632893021 -0.4470013707692716 0.05486479876920774 0.8928491632893021 0.4470013707692716 -0.05486479876920774 -0.7930586724642184 0.5380222435700273 -0.2856396461508205 -0.6779678389035451 0.5914850813119577 -0.4364687938419465 0.6779678389035451 -0.5914850813119577 0.4364687938419465 0.7930586724642184 -0.5380222435700273 0.2856396461508205 -0.06837946245005622 0.133948004867257 0.9886264112935294 0.06837946245005622 -0.133948004867257 -0.9886264112935294 -0.9187989142657232 -0.3929531117095517 0.0373685314390171 0.9187989142657232 0.3929531117095517 -0.0373685314390171 -0.6084903667744845 -0.3361198159561551 -0.7188622558350478 -0.5626671069308074 -0.09424735772971241 -0.8212935908303943 -0.5792112105076253 -0.03535317024093707 -0.8144105395782932 0.5792112105076253 0.03535317024093707 0.8144105395782932 0.5626671069308074 0.09424735772971241 0.8212935908303943 0.6084903667744845 0.3361198159561551 0.7188622558350478 -0.5114901394861176 -0.3977120680449375 -0.7617105409142576 -0.6142586567780607 -0.3121905317741047 -0.7247229639274684 0.6142586567780607 0.3121905317741047 0.7247229639274684 0.5114901394861176 0.3977120680449375 0.7617105409142576 -0.7165913554401721 0.6650103775153866 0.2103759185488212 0.7165913554401721 -0.6650103775153866 -0.2103759185488212 -0.764937702624227 0.5192485317920021 0.3811184505318785 0.764937702624227 -0.5192485317920021 -0.3811184505318785 -0.5174518251755897 -0.2411286674177418 0.8210362807889765 -0.6030031272843839 -0.3014611009609044 0.7385854270784746 -0.5301106299440702 -0.2511652486673166 0.809875754595843 0.5301106299440702 0.2511652486673166 -0.809875754595843 0.6030031272843839 0.3014611009609044 -0.7385854270784746 0.5174518251755897 0.2411286674177418 -0.8210362807889765 -0.5145052688849753 -0.2999231163421164 0.803324624652595 -0.6060304150691775 -0.3080632070317224 0.7333649817685672 0.6060304150691775 0.3080632070317224 -0.7333649817685672 0.5145052688849753 0.2999231163421164 -0.803324624652595 -0.9180481665079123 -0.3962927934772661 -0.01181464385606148 0.9180481665079123 0.3962927934772661 0.01181464385606148 -0.06822609440622343 0.01557927206212744 -0.9975482375925926 0.06822609440622343 -0.01557927206212744 0.9975482375925926 -0.06836592527621122 -0.9248117108838933 -0.374231745945121 0.06836592527621122 0.9248117108838933 0.374231745945121 -0.9159377876348976 0.1653334364994017 -0.3656813147506822 0.9159377876348976 -0.1653334364994017 0.3656813147506822 -0.5557652605442751 0.7376308132429826 0.3834393805109877 -0.6049336713798291 0.7946676713190241 0.05058206590601672 0.6049336713798291 -0.7946676713190241 -0.05058206590601672 0.5557652605442751 -0.7376308132429826 -0.3834393805109877 -0.6114792617679662 0.7887888748458873 0.06249178623677078 -0.5113431291935486 0.8587529234400222 0.03273561836539834 0.5113431291935486 -0.8587529234400222 -0.03273561836539834 0.6114792617679662 -0.7887888748458873 -0.06249178623677078 -0.6084825682336931 -0.495113360886253 -0.6201707216788357 -0.6410831753865172 -0.6305734637185176 -0.4374808213972034 0.6410831753865172 0.6305734637185176 0.4374808213972034 0.6084825682336931 0.495113360886253 0.6201707216788357 -0.5145324763372529 -0.5486089202616341 -0.6590027188135252 -0.6086877370165386 -0.4987726994136522 -0.6170291995726814 0.6086877370165386 0.4987726994136522 0.6170291995726814 0.5145324763372529 0.5486089202616341 0.6590027188135252 -0.9180510116488734 0.2069327617052255 -0.3381732871525023 0.9180510116488734 -0.2069327617052255 0.3381732871525023 -0.06820506512298212 0.8583605711733054 0.5084930667635563 0.06820506512298212 -0.8583605711733054 -0.5084930667635563 -0.07788897801981856 0.7203251955069255 -0.6892495337836203 0.07788897801981856 -0.7203251955069255 0.6892495337836203 -0.9186236678224693 0.2137604419261941 0.3323206740242198 0.9186236678224693 -0.2137604419261941 -0.3323206740242198 -0.5912354405693278 -0.06373945870929254 0.8039763275235403 0.5912354405693278 0.06373945870929254 -0.8039763275235403 -0.07801011213032839 -0.9149104860515087 0.3960469983706556 0.07801011213032839 0.9149104860515087 -0.3960469983706556 -0.5911901739412696 0.7634359260444917 0.2601149074157052 0.5911901739412696 -0.7634359260444917 -0.2601149074157052 -0.918427191400784 0.2082707995037445 0.3363253903138127 0.918427191400784 -0.2082707995037445 -0.3363253903138127 -0.5552116476461365 0.1310993066410967 -0.8213117545221707 -0.5611802421407521 0.1223351114562133 -0.8186029906712061 0.5611802421407521 -0.1223351114562133 0.8186029906712061 0.5552116476461365 -0.1310993066410967 0.8213117545221707 -0.6408955186930352 0.6368247591987463 -0.4286107327058484 0.6408955186930352 -0.6368247591987463 0.4286107327058484 -0.06018780181180793 0.1916292067335681 0.9796201690654016 0.06018780181180793 -0.1916292067335681 -0.9796201690654016 -0.9294544655857993 -0.3596552207152826 0.08223453419858177 0.9294544655857993 0.3596552207152826 -0.08223453419858177 -0.5119734798882151 -0.3801411073322832 -0.7703089603576846 0.5119734798882151 0.3801411073322832 0.7703089603576846 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 -0.7827724052343109 0.4885261484066231 0.3854991101503113 0.7827724052343109 -0.4885261484066231 -0.3854991101503113 -0.6840994787240873 0.1363722874922993 0.7165266934410397 -0.6147039237146543 0.238512470860314 0.7518316882214503 -0.6653394530452826 0.165916713449703 0.7278702194893354 0.6653394530452826 -0.165916713449703 -0.7278702194893354 0.6147039237146543 -0.238512470860314 -0.7518316882214503 0.6840994787240873 -0.1363722874922993 -0.7165266934410397 -0.5846765150393855 0.2775554521153094 0.7623098738455811 0.5846765150393855 -0.2775554521153094 -0.7623098738455811 -0.5144696680899629 -0.2827869085697489 0.8095384641615049 0.5144696680899629 0.2827869085697489 -0.8095384641615049 -0.9325779507189076 -0.3562891568629708 -0.0579344675887886 0.9325779507189076 0.3562891568629708 0.0579344675887886 -0.06008517546283819 0.07478840775462761 -0.9953875957410397 0.06008517546283819 -0.07478840775462761 0.9953875957410397 -0.06016537746400757 -0.9456188928128914 -0.3196639437126669 0.06016537746400757 0.9456188928128914 0.3196639437126669 -0.9294575191574707 0.1069983269701304 -0.3530723411812842 0.9294575191574707 -0.1069983269701304 0.3530723411812842 -0.5118224780352834 0.8574987258211545 0.05228466498810563 0.5118224780352834 -0.8574987258211545 -0.05228466498810563 -0.514493135926281 -0.5625126092319087 -0.6472065957172033 0.514493135926281 0.5625126092319087 0.6472065957172033 -0.9325781432366856 0.2270966540840191 -0.280579964468348 0.9325781432366856 -0.2270966540840191 0.280579964468348 -0.06002763057924118 0.8270709642152402 0.5588830859125324 0.06002763057924118 -0.8270709642152402 -0.5588830859125324 -0.07605661316331486 0.6351470128865732 -0.7686375372146413 0.07605661316331486 -0.6351470128865732 0.7686375372146413 -0.9208305953623421 0.2088271071494026 0.3293360805685381 0.9208305953623421 -0.2088271071494026 -0.3293360805685381 -0.8621478316094056 0.2290208849793479 0.4519408707944841 0.8621478316094056 -0.2290208849793479 -0.4519408707944841 -0.6042033250166701 -0.04459964845335795 0.7955810539452516 0.6042033250166701 0.04459964845335795 -0.7955810539452516 -0.0760742450757196 -0.9574640025019078 0.27834401942414 0.0760742450757196 0.9574640025019078 -0.27834401942414 -0.6041792882639404 0.748119712716962 0.2743798153603302 0.6041792882639404 -0.748119712716962 -0.2743798153603302 -0.8666360269162206 0.3018712000249856 0.3972603371170386 0.8666360269162206 -0.3018712000249856 -0.3972603371170386 -0.06215953815997215 0.1869805446352334 0.9803950569763448 0.06215953815997215 -0.1869805446352334 -0.9803950569763448 -0.9251817572127729 -0.3717791800066462 0.07628209117657712 0.9251817572127729 0.3717791800066462 -0.07628209117657712 -0.5094391278008816 -0.4503793007937866 -0.7332327464604789 0.5094391278008816 0.4503793007937866 0.7332327464604789 -0.5107042903204709 -0.3659351517327707 0.7779926687151866 0.5107042903204709 0.3659351517327707 -0.7779926687151866 -0.9295512194985515 -0.3651508688837732 -0.05098404929172666 0.9295512194985515 0.3651508688837732 0.05098404929172666 -0.06207876760437363 0.06602698698797134 -0.9958848646314555 0.06207876760437363 -0.06602698698797134 0.9958848646314555 -0.06213739111210562 -0.9439802191053086 -0.3240991986470726 0.06213739111210562 0.9439802191053086 0.3240991986470726 -0.9251831321196651 0.1181898446877643 -0.3606484890498343 0.9251831321196651 -0.1181898446877643 0.3606484890498343 -0.5092947909307791 0.8601651410365301 -0.027106199962007 0.5092947909307791 -0.8601651410365301 0.027106199962007 -0.5105354677853689 -0.4940289674119409 -0.703767657320984 0.5105354677853689 0.4940289674119409 0.703767657320984 -0.9295504993104691 0.2254579596928901 -0.2917268887894581 0.9295504993104691 -0.2254579596928901 0.2917268887894581 -0.06203113682986364 0.8318660453007373 0.551498885528617 0.06203113682986364 -0.8318660453007373 -0.551498885528617 -0.07783629645161526 0.6386398399740993 -0.7655590543861087 0.07783629645161526 -0.6386398399740993 0.7655590543861087 -0.9138229107542849 0.2183939193754576 0.3423912729033732 0.9138229107542849 -0.2183939193754576 -0.3423912729033732 -0.4787989807562905 0.4668933018719641 0.7434797782682678 -0.5524074943628621 0.4050841393154985 0.7285278307976754 -0.5345884589721218 0.4034395796788172 0.7425979296243637 0.5345884589721218 -0.4034395796788172 -0.7425979296243637 0.5524074943628621 -0.4050841393154985 -0.7285278307976754 0.4787989807562905 -0.4668933018719641 -0.7434797782682678 -0.05182109757684491 -0.4514163579221916 -0.8908074122088315 -0.06712979634411644 -0.500579809610561 -0.8630836834589403 -0.06467178653120824 -0.4384108387102168 -0.8964449210789618 0.06467178653120824 0.4384108387102168 0.8964449210789618 0.06712979634411644 0.500579809610561 0.8630836834589403 0.05182109757684491 0.4514163579221916 0.8908074122088315 -0.07792118493082251 -0.9559677627777016 0.2829380240773106 0.07792118493082251 0.9559677627777016 -0.2829380240773106 -0.544217945097606 0.4868904901393766 0.6832016384974328 -0.5296654684248241 0.4971931921921262 0.687206971149242 0.5296654684248241 -0.4971931921921262 -0.687206971149242 0.544217945097606 -0.4868904901393766 -0.6832016384974328 -0.06556201067145182 -0.5654470917961071 -0.8221746828600607 -0.04893206091694585 -0.6042992393415967 -0.7952534707535631 -0.06331144630405373 -0.6168950586009265 -0.784494835827903 0.06331144630405373 0.6168950586009265 0.784494835827903 0.04893206091694585 0.6042992393415967 0.7952534707535631 0.06556201067145182 0.5654470917961071 0.8221746828600607 -0.07317435867671789 0.2852169995987944 0.9556656195407013 0.07317435867671789 -0.2852169995987944 -0.9556656195407013 -0.9245447371101613 -0.3773552231352665 0.05310428094265093 0.9245447371101613 0.3773552231352665 -0.05310428094265093 -0.5139838480450424 -0.4451092818304552 -0.7332791631958371 0.5139838480450424 0.4451092818304552 0.7332791631958371 -0.5157659772286117 -0.3552253929522392 0.7796155314867339 0.5157659772286117 0.3552253929522392 -0.7796155314867339 -0.9272834542399263 -0.373133423886244 -0.03027942324085647 0.9272834542399263 0.373133423886244 0.03027942324085647 -0.07322677161913004 0.1848207446832606 -0.980040372766839 0.07322677161913004 -0.1848207446832606 0.980040372766839 -0.07315269852634401 -0.9712587534489104 -0.2265063278303333 0.07315269852634401 0.9712587534489104 0.2265063278303333 -0.924551007271137 0.1411219268150242 -0.3539633268093474 0.924551007271137 -0.1411219268150242 0.3539633268093474 -0.5138680084800981 0.857573090590434 -0.02254027852243685 0.5138680084800981 -0.857573090590434 0.02254027852243685 -0.5156107881351871 -0.500749424973523 -0.6952665161988583 0.5156107881351871 0.500749424973523 0.6952665161988583 -0.9272779039266812 0.2114525434248893 -0.3089393318573824 0.9272779039266812 -0.2114525434248893 0.3089393318573824 -0.07323009189041933 0.7592000544660637 0.6467245402336659 0.07323009189041933 -0.7592000544660637 -0.6467245402336659 -0.07183856815325576 -0.5367001228199709 -0.8407093423358147 -0.07384419633644265 -0.4918662305097807 -0.8675336569560422 0.07384419633644265 0.4918662305097807 0.8675336569560422 0.07183856815325576 0.5367001228199709 0.8407093423358147 -0.4571428387213803 0.4708925370562133 0.7545068876759978 0.4571428387213803 -0.4708925370562133 -0.7545068876759978 -0.07317072936235344 -0.5741876618940569 -0.815447468138333 0.07317072936235344 0.5741876618940569 0.815447468138333 -0.07786128607335852 0.2282437525088427 0.9704856565512368 0.07786128607335852 -0.2282437525088427 -0.9704856565512368 -0.910518420051696 -0.4126184541394979 0.02649939716473525 0.910518420051696 0.4126184541394979 -0.02649939716473525 -0.5636615363401881 -0.6008612160141833 -0.5667905005736916 0.5636615363401881 0.6008612160141833 0.5667905005736916 -0.5636121577228427 -0.5422177340050004 0.6231703335344874 0.5636121577228427 0.5422177340050004 -0.6231703335344874 -0.9128840725037823 -0.4082071319792981 -0.003099608063125092 0.9128840725037823 0.4082071319792981 0.003099608063125092 -0.07794444694945403 0.123244223494892 -0.9893106309773917 0.07794444694945403 -0.123244223494892 0.9893106309773917 -0.07784980261668228 -0.9558510645399539 -0.2833516378113609 0.07784980261668228 0.9558510645399539 0.2833516378113609 -0.910506959134482 0.181741629865931 -0.3714122471612288 0.910506959134482 -0.181741629865931 0.3714122471612288 -0.5638170052827519 0.7901416633769365 -0.2403883032718469 0.5638170052827519 -0.7901416633769365 0.2403883032718469 -0.5636943070143379 -0.2718931151353536 -0.7799505511130938 0.5636943070143379 0.2718931151353536 0.7799505511130938 -0.9128734660900318 0.2052562609143245 -0.3528907795115115 0.9128734660900318 -0.2052562609143245 0.3528907795115115 -0.07796022575618454 0.7978022440562502 0.597857660801345 0.07796022575618454 -0.7978022440562502 -0.597857660801345 -0.07293523093475945 -0.536747093346532 -0.840584921273599 0.07293523093475945 0.536747093346532 0.840584921273599 -0.07604770112068858 0.3398450615732017 0.9374017715358579 0.07604770112068858 -0.3398450615732017 -0.9374017715358579 -0.9271339304211422 -0.3737861328003613 0.02658198615595467 0.9271339304211422 0.3737861328003613 -0.02658198615595467 -0.56821021807484 -0.5485574908562504 -0.6133692422194298 0.56821021807484 0.5485574908562504 0.6133692422194298 -0.5681978066790452 -0.4856242309667716 0.664319470422969 0.5681978066790452 0.4856242309667716 -0.664319470422969 -0.9275538218035446 -0.3736639910290091 -0.004373724489596332 0.9275538218035446 0.3736639910290091 0.004373724489596332 -0.07601198010694718 0.2461619642348556 -0.9662434818637893 0.07601198010694718 -0.2461619642348556 0.9662434818637893 -0.07603488379294941 -0.9824986161570616 -0.1700445991381432 0.07603488379294941 0.9824986161570616 0.1700445991381432 -0.9271175633615203 0.1624153764230984 -0.3377488256203726 0.9271175633615203 -0.1624153764230984 0.3377488256203726 -0.5684223245221804 0.8045495901676812 -0.1720349323417111 0.5684223245221804 -0.8045495901676812 0.1720349323417111 -0.5682562327497746 -0.3357303571020874 -0.7512456197949771 0.5682562327497746 0.3357303571020874 0.7512456197949771 -0.9275500865344358 0.1892090791949394 -0.3222588421132365 0.9275500865344358 -0.1892090791949394 0.3222588421132365 -0.07602359932507562 0.7168034810914563 0.6931184471941507 0.07602359932507562 -0.7168034810914563 -0.6931184471941507 -0.07788522860997994 0.33527590521265 0.9388950732367325 0.07788522860997994 -0.33527590521265 -0.9388950732367325 -0.8622039110363094 -0.5055471860195102 -0.0320383910558382 -0.9186365967429201 -0.3947997214296697 0.01549138740205839 0.9186365967429201 0.3947997214296697 -0.01549138740205839 0.8622039110363094 0.5055471860195102 0.0320383910558382 -0.5911920785065153 -0.6603884431093904 -0.4630108319669223 0.5911920785065153 0.6603884431093904 0.4630108319669223 -0.5913185191009809 -0.6117206410194161 0.5254905006934163 0.5913185191009809 0.6117206410194161 -0.5254905006934163 -0.9184398770765989 -0.3954642704709246 0.008729431620756456 0.9184398770765989 0.3954642704709246 -0.008729431620756456 -0.8666694425626617 -0.4954474410657432 0.05844579086240863 0.8666694425626617 0.4954474410657432 -0.05844579086240863 -0.07784647127831051 0.2414764141318304 -0.967279209084713 0.07784647127831051 -0.2414764141318304 0.967279209084713 -0.07789085419739079 -0.9815182421211756 -0.1747997574819787 0.07789085419739079 0.9815182421211756 0.1747997574819787 -0.8621876343713294 0.2786709173777909 -0.4230543735088806 -0.9186099994929518 0.1824781962483763 -0.3505101663653969 0.9186099994929518 -0.1824781962483763 0.3505101663653969 0.8621876343713294 -0.2786709173777909 0.4230543735088806 -0.5914357760694816 0.729508062189148 -0.3435428793995359 0.5914357760694816 -0.729508062189148 0.3435428793995359 -0.5912701432089158 -0.1528401862184598 -0.7918582545041852 0.5912701432089158 0.1528401862184598 0.7918582545041852 -0.9184311868293691 0.1886543416202624 -0.3476977055532891 0.9184311868293691 -0.1886543416202624 0.3476977055532891 -0.8666393501579606 0.1951110697023345 -0.45920355751823 0.8666393501579606 -0.1951110697023345 0.45920355751823 -0.07785123444427876 0.7200157100790545 0.6895770896243993 0.07785123444427876 -0.7200157100790545 -0.6895770896243993 -0.05175606910108979 0.9966603560649529 0.06316204524621295 -0.06710589855194701 0.997722592184132 0.006813767306884728 -0.06463126882157386 0.9949142282440756 0.07725592228437379 0.06463126882157386 -0.9949142282440756 -0.07725592228437379 0.06710589855194701 -0.997722592184132 -0.006813767306884728 0.05175606910108979 -0.9966603560649529 -0.06316204524621295 -0.9208481389957095 -0.3897131234716203 0.01274308840634989 0.9208481389957095 0.3897131234716203 -0.01274308840634989 -0.6041265859342664 -0.6628633493676761 -0.4423157788644598 0.6041265859342664 0.6628633493676761 0.4423157788644598 -0.6043510956270248 -0.616247919108277 0.504973519512789 0.6043510956270248 0.616247919108277 -0.504973519512789 -0.04887595123153411 0.9919269240416067 -0.1170133272433938 -0.06320711920580965 0.9890618334347577 -0.1332724642391598 -0.06544351105841843 0.9954089662035404 -0.06984366014138725 0.06544351105841843 -0.9954089662035404 0.06984366014138725 0.06320711920580965 -0.9890618334347577 0.1332724642391598 0.04887595123153411 -0.9919269240416067 0.1170133272433938 -0.05176292428173093 -0.5493551863579695 0.8339840999032322 -0.06715572110431041 -0.500971452014702 0.8628543987192979 -0.06467060858579891 -0.5607537460364631 0.8254531777703786 0.06467060858579891 0.5607537460364631 -0.8254531777703786 0.06715572110431041 0.500971452014702 -0.8628543987192979 0.05176292428173093 0.5493551863579695 -0.8339840999032322 -0.9208229918529777 0.1823261521974405 -0.3447349589174365 0.9208229918529777 -0.1823261521974405 0.3447349589174365 -0.6044052953115482 0.7127115897051575 -0.3560006023861583 0.6044052953115482 -0.7127115897051575 0.3560006023861583 -0.6042208852079725 -0.1329109324677061 -0.7856537442850122 0.6042208852079725 0.1329109324677061 0.7856537442850122 -0.06555032380382546 -0.4332602793100031 0.8988819084960116 -0.0489311245994604 -0.3905865829625489 0.9192648509842373 -0.06330197836798127 -0.3750046590734298 0.9248591055982096 0.06330197836798127 0.3750046590734298 -0.9248591055982096 0.0489311245994604 0.3905865829625489 -0.9192648509842373 0.06555032380382546 0.4332602793100031 -0.8988819084960116 -0.07380847313489657 0.9971350212817937 0.01655471615135637 0.07380847313489657 -0.9971350212817937 -0.01655471615135637 -0.9138485014307795 -0.4058014096885466 0.01435730920149108 0.9138485014307795 0.4058014096885466 -0.01435730920149108 -0.5345304218766152 -0.844640307144783 -0.02932540937096353 -0.4787759179973137 -0.8775837507625626 0.02490744353284692 -0.5523468059055555 -0.8333556620290644 -0.020768884660241 0.5523468059055555 0.8333556620290644 0.020768884660241 0.4787759179973137 0.8775837507625626 -0.02490744353284692 0.5345304218766152 0.844640307144783 0.02932540937096353 -0.529810937761632 -0.8443800785050153 0.07951511335591559 -0.5444019885151931 -0.8356723357134307 0.07265137454971396 0.5444019885151931 0.8356723357134307 -0.07265137454971396 0.529810937761632 0.8443800785050153 -0.07951511335591559 -0.0730429405716595 0.9940521145746529 -0.08077822938333205 0.0730429405716595 -0.9940521145746529 0.08077822938333205 -0.07388662353121546 -0.5091637543312346 0.8574922962560529 0.07388662353121546 0.5091637543312346 -0.8574922962560529 -0.9138168602334956 0.1889226119874796 -0.3595093776702133 0.9138168602334956 -0.1889226119874796 0.3595093776702133 -0.4788900951458034 0.4137789169757429 -0.7742423939811258 -0.5525632992352004 0.4314208972124874 -0.7131267838096413 -0.5347331070637321 0.444464319308261 -0.7186876742172578 0.5347331070637321 -0.444464319308261 0.7186876742172578 0.5525632992352004 -0.4314208972124874 0.7131267838096413 0.4788900951458034 -0.4137789169757429 0.7742423939811258 -0.5443231062547118 0.3515163285545688 -0.7616748825822854 -0.5297627038662381 0.3498802766270966 -0.7726158616153819 0.5297627038662381 -0.3498802766270966 0.7726158616153819 0.5443231062547118 -0.3515163285545688 0.7616748825822854 -0.0731648938415657 -0.4230767780001828 0.9031350608996067 0.0731648938415657 0.4230767780001828 -0.9031350608996067 -0.0717598100444269 0.9967833931070906 -0.03568468702823421 0.0717598100444269 -0.9967833931070906 0.03568468702823421 -0.4570938974721754 -0.8891267751684072 0.02277600870049867 0.4570938974721754 0.8891267751684072 -0.02277600870049867 -0.07186207300492192 -0.4636242428793894 0.8831129055097929 0.07186207300492192 0.4636242428793894 -0.8831129055097929 -0.4572184704652873 0.4213675234050111 -0.7831990043947393 0.4572184704652873 -0.4213675234050111 0.7831990043947393 -0.07284731910756336 0.9966994105687711 -0.03582670890139447 0.07284731910756336 -0.9966994105687711 0.03582670890139447 -0.07295841153948711 -0.4634759310171773 0.8831008614837808 0.07295841153948711 0.4634759310171773 -0.8831008614837808</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1000\" source=\"#ID798\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID796\">\r\n                    <float_array count=\"2470\" id=\"ID799\">-2.382152232341637 0.8114993214080721 -2.305498782632804 0.7612421416708729 -2.661799060038712 0.5143268679627622 -1.10929632536876 1.865939697634436 -0.7402787510683859 2.096312634686256 -1.041160221479432 1.808590267548293 4.117109534675268 -4.221737622712427 3.770492703260866 -4.471450631513128 2.972256478969288 -4.376182215124748 -2.64317861492822 0.5288504886875456 -2.741971876010438 0.5644427639446815 -2.388085444237092 0.8134970265397964 -0.5108777407253806 1.994641913414265 -0.4647338457287636 1.921831414400039 -0.8199817364353834 1.712364972440952 4.159072087260633 -3.60131408385592 4.008359773378214 -4.223632152308475 3.590480138856723 -4.394738788375328 3.720629425418393 -3.737994030932695 4.089733578634366 -4.1362612050151 2.944593614898622 -4.289383837459042 3.715949880857402 -4.664217122611951 3.577025552436587 -4.858740273202045 2.918110384210961 -4.566913844047221 -3.532893088158519 -1.405402268119589 -3.778377344265582 -1.567813990875131 -3.63466691595626 -1.375454603305033 2.166877960838995 -3.20534782375026 2.505112526826225 -2.980634682784841 2.016960844485938 -3.372595413195628 2.90664991550928 -2.831647031589939 3.161264493954209 -2.789679773232189 2.158320842907479 2.317355631430848 2.426208068189768 2.382798047632238 2.177397347012687 2.237394119727016 4.186501325658662 -3.604674619844945 3.619577955234709 -4.398837879978945 3.263520854441227 -3.993286695212771 4.264289486993383 -3.591368647410786 4.393196497476434 -4.169263296937372 4.118628753531486 -4.214430668958741 2.141709561156012 -2.539653586511744 1.338783932921017 -3.066679041718678 1.088541638290198 -2.918995386648729 3.705354160579695 -4.722111991503434 3.752219223354113 -4.925163319361463 3.043585516181242 -4.434309064416466 -4.720195001665112 -0.838111930340065 -4.87356633634843 -0.8206456622006494 -4.647535569853533 -0.6416093864536248 5.976463061569919 -4.01551000878934 5.700563982511904 -4.661067300428671 5.591129172591309 -4.47290649595115 0.4940113330114128 3.302791294675418 0.7020392817537015 3.483545504538939 0.733154928316176 3.383342872493777 2.984341750436177 -1.945595238278266 3.07355461487074 -2.178877951918392 2.134980860030076 -2.543645943407094 4.715175540128614 -4.237778325771608 4.486729766309145 -4.140997679661525 4.353781662995391 -3.563669890075839 6.229541255743985 -2.815692720273948 6.205863006664616 -3.061082790207338 5.39894081999101 -2.780519209470858 3.95954576161025 -4.766474747050036 4.226158437872415 -5.067116002014613 3.243896960758899 -4.281959803351813 -5.20917675816532 -4.076852570570276 -5.444027986460442 -4.257840651882353 -5.362925845386348 -4.061579228975656 -3.414236209071933 -5.48280054980703 -3.503674895768212 -5.500147149562402 -3.302965120206075 -5.295307391122558 7.153708221003003 -1.055334577185998 7.357365789459331 -1.181805828420435 7.060600724299492 -1.127963471288239 -6.376055494793524 -2.791910837103957 -6.376601944710836 -2.548300528389567 -5.546105656382263 -2.541558169230477 6.292020490288079 -3.896997050653707 6.001290330568972 -3.594786402053359 5.579123822736869 -2.942901892769273 -6.445697115556035 -0.5327398872694064 -5.639737196896117 -0.3708988937511936 -5.410310060843501 -1.264541462392171 -6.378040758730448 -0.5490869415448467 -6.402386873826202 0.3474497948727556 -5.548733127301645 -0.4984393686878871 6.249443067828077 -3.021812954622691 5.589949262777724 -3.009778769479917 5.436007331621839 -2.753141288256818 3.685386022701926 -5.416193428280835 3.550020822014475 -5.480747652159369 2.733685449622757 -4.60808068335111 -3.214384247080245 -6.200299681307078 -3.23901928547867 -5.834241632626324 -3.150145197377329 -5.815183648067049 7.37374899284945 -1.133457200799908 7.255757232167886 -1.180810893730796 7.077515231345002 -1.077833697990142 -5.813898093729755 -2.627781693529012 -6.473061319915687 -2.607393325339736 -5.64053701285209 -2.362387587081174 -4.1449948999066 -0.3925930562476963 -5.571323704244727 -0.4508006085162343 -5.590385402988608 0.4192953775659653 -6.420823099055467 0.4090219793829775 -5.571948609914557 -0.5184370324832719 -6.402434335445965 -0.5259414841779818 -6.412003022809788 0.3723260551637551 7.79264834779636 -3.094623924357429 7.386028045278803 -2.821643815884106 7.511011023866709 -2.787130807200926 5.288427740176394 -4.450421141627921 5.16365295085847 -4.520813777264999 4.528469987559812 -3.533326890439096 -6.177999987344328 -1.570835269398446 -6.43794403232774 -0.6842351375800343 -5.37737609444318 -1.393369944667684 -5.468981652152383 -0.9966139960495889 -5.627977588762684 -0.09354875387037062 -4.06048470052598 -0.8115314550383995 -5.604833719540404 -0.8427021686719978 -6.523407502400124 -0.04000140227339736 -5.698594924431132 0.04705198934153895 -3.819964906568851 -0.198740607318797 -3.710588442244218 0.7070679054892642 -3.595833115298375 -1.078161158264579 -3.273119380180543 1.535119347208355 -3.076513428396748 -0.1659543789840967 -3.030200242278591 -1.873660853038731 -2.887398122901175 -0.8793125957286936 -2.439402056737099 -1.517112239780935 -2.203293041006291 -2.500402028373014 -1.772319464308227 -2.022702851046091 -1.178273536083925 -2.907562735203924 -0.9454591957336178 -2.351161398673499 -0.0462380938019025 -3.05896025402176 -0.03227092295787773 -2.473295078857695 0.8861221859959634 -2.378246195955483 1.100337098236535 -2.939288573049616 1.728132329397168 -2.074478232231995 2.135972779385058 -2.5645770483233 2.418887774560047 -1.588964928439499 2.897061565363328 -0.9648552907429856 3.002871332391609 -1.96190235463934 3.120099824776935 -0.2576073983579654 3.397833450122788 1.436453299966811 3.584954115964931 -1.189073698497411 3.797178894091073 0.589535539530324 3.86146279790015 -0.3123520279787206 -2.989941374167471 0.5595534147310203 -2.635383615910281 1.232752438402079 -2.540424688596996 2.230643059343542 -2.044294447642872 1.793827010075304 -1.579665433403898 2.725371249155675 -1.269257263899759 2.192925190064263 -0.4762730165452944 2.975353590359535 -0.379127025517807 2.394587160073535 0.5470052852914087 2.380889252754579 0.6739441528367607 2.964104390912614 1.426866649410332 2.153052203845308 1.762515223752795 2.675938097440283 2.182281272233411 1.731316065892566 2.698888249206223 2.153148196856395 2.746116622930116 1.15315754419546 3.0682720466757 0.4699448618913633 6.262701037578077 -3.297688588377309 6.810870890825931 -4.291665963233803 5.603135835129864 -3.288385875698955 3.537805570138652 -5.322074800046389 4.499503752106183 -6.170792077931217 3.401754136409783 -5.385730003367606 -2.402367420971701 -6.32348935043586 -2.487130147304622 -6.36684873423582 -2.456301864786447 -5.979189118527012 -5.851137594154357 -2.991204346202717 -7.11732698224412 -3.953428325490446 -6.510171301073201 -2.96837143036549 -6.431600829084085 -0.5856926335526124 -6.465043856691065 0.3240294976779706 -5.60265637794168 -0.5278164021063335 -4.153220584432583 -0.5919371519429612 -5.633236098381424 0.2161519211681857 -4.209404235825325 0.3044258401130099 -5.686973105331986 0.2076154673473941 -4.263529414155157 0.3221991449134441 -4.215291073560992 -0.5744977462204292 -5.629668278170908 -0.6018165566198391 -6.481253406832044 0.2821448753630127 -5.65143262943119 0.3334005600536639 7.70924221545971 -3.086643914958204 7.611421202677152 -3.106627870969063 7.289855802678771 -2.825890216437976 5.307646526988149 -4.459574441591602 5.895028297840041 -5.457121340977217 5.18297450631685 -4.530079671339261 5.629008267869499 -0.7463477273334715 6.143014995752494 -1.761979428609921 5.332209067274681 -1.615896687539317 4.221778863882256 -0.1138895382488578 5.449746623983231 -1.157975509815105 4.036035568395636 -0.9993909140033963 -5.638210010572456 -0.5486783925207119 -4.250909299071609 -0.2815645921801652 -3.997216344816255 -1.156592358935419 -5.584920386969356 -0.7286636150463668 -5.649991922666122 0.162673834209167 -4.161558112449938 -0.6357893580252552 6.325862417864055 0.2471940347496744 6.275923150491728 -0.65523344044532 5.494720606752197 0.2501486147772298 6.324667251178918 0.3785027462624838 6.307487637225778 -0.5247153149898205 5.493856655715302 0.366706868280492 6.330840177740377 -0.4832391865050514 5.505412349689225 0.4046323204088624 6.335973878144486 0.4200649213385262 6.355104265392128 -0.4667206081220865 5.524514761868456 0.413796645671067 6.354965736662829 0.4299973635642851 6.348532651289016 -0.4826861760209525 5.518228264842925 0.4008358708994737 6.348686999878188 0.4271997584595754 6.402526849244486 -0.514599815300171 5.575015698521129 0.3688125470936636 6.405593025417301 0.3823184502673627 6.411353286003433 0.4000658934411254 6.402189221181026 -0.5113951445993928 5.580948395643242 0.4157367094855328 6.457616882721426 0.2866889367729694 6.428226229766665 -0.6163174962283112 5.626549839694851 0.2839681310038151 6.504640036469908 0.06882814165186642 6.425760748703323 -0.8323530921485491 5.679613144525984 0.09802792271163478 6.462225544659513 -0.479789751691096 6.259225536954721 -1.368874127389776 5.638390409749905 -0.3908745494751295 -5.574851926507346 -0.4467662664155951 -6.405189489514616 -0.4925506539050644 -6.409194594973165 0.4107466294511674 -5.552194299191942 -0.4361777819642201 -6.382694340672956 -0.479815042264443 -6.3822125066093 0.4234890959370029 -5.527660594977107 -0.4414161723271314 -6.358135509214947 -0.4841960030603822 -6.357692766381553 0.4191095339513883 -5.503241243690558 -0.4621172308995953 -6.333509171185731 -0.5054400229986481 -6.337686374565175 0.3978657857529473 -6.309573809879248 -0.5505412985441708 -6.324676198831939 0.3526571860783325 -5.479788392845236 -0.5041294043719613 2.727282558497929 2.374467822102313 2.682327380740597 2.134919811093426 1.745957532312295 2.657713232886528 -6.28355707143229 -0.6362917545517316 -6.324274572841182 0.2666680609225586 -5.455101643277436 -0.57908685677795 0.8867903543797634 3.118978236478919 1.753803744658647 2.655260171310598 0.6652336964723358 2.943428855169668 -6.107009504749997 -1.440571652735586 -6.327435422916969 -0.5524335438192431 -5.290951497203457 -1.319381353096898 7.047109981082493 -4.025925235254194 6.572423246359725 -4.03807808733024 5.762356183245927 -3.083708496260667 4.719319310056894 -6.012525550950048 4.559405230702663 -6.109249604868882 3.610847825014008 -5.236842748222333 -1.635076611744317 -7.643805512306598 -2.046393508680486 -6.553864915925065 -1.964009241795349 -6.507755706175733 -6.226933058893753 -4.35715210192923 -6.684777216062551 -4.368633898008876 -5.495336325949821 -3.347602026111755 -4.164155400215128 -0.4808138035478431 -5.59045265464766 -0.5707972914437972 -5.604000275338401 0.3645158178360241 8.498994210341262 -3.863426396329256 7.58708621916952 -3.010007229700875 7.684874037027289 -2.989922987339559 5.860507161178415 -5.472263804657364 5.717787806425276 -5.541268897230905 5.143033007068749 -4.539180625640339 5.615427661959771 -0.05307178236898648 5.490996361882291 -0.9480844056190318 4.192676241827535 0.04192978539679174 -6.371687425542625 0.05659531610126218 -5.545667306279297 0.1291291351249389 -5.462209449669895 -0.8043086080673315 5.523565805979221 0.4664539955697984 6.354207285310459 -0.4112716340542739 5.523758680554177 -0.4338833848854653 5.53167411224067 0.4777514955588634 6.366920291787105 -0.4012123226992183 5.536572228151663 -0.4226032985896472 6.384470114428415 -0.403345774636922 5.554125450147815 -0.4226259836262465 5.547326545969745 0.4777114329058925 6.394798530817934 -0.4242064713489063 5.564444714190893 -0.4525417513668846 5.559616742817855 0.4536184898915917 6.706382990873093 -1.992428992817538 6.734858187658725 -2.229716846200112 5.880914549031902 -2.06864522518943 6.426673737565221 -0.4286928413741457 5.59609063437345 -0.441977094805049 5.594342931635121 0.4536484752102395 4.127093708298099 0.349085374462541 5.554394599787321 0.3625400882458029 5.552652560288326 -0.5062900454127818 6.383108753397958 -0.5201741029379436 6.630766041321724 2.290072167503032 6.60870069498146 2.039406599150892 5.780362907360219 2.088063182125595 6.461347556712913 -0.5273102266094472 5.630277932583336 -0.5294891830228586 5.652179197504132 0.4063675696246454 6.471783918825218 -0.6694862709089748 5.646284167170914 -0.6502602675244906 5.689181062059775 0.241125792540077 5.705258546267622 0.04954383269713061 6.435385846454905 -0.8886697541752605 5.604943682381954 -0.8548758041057144 -5.61868898488491 -0.4874466767329562 -6.456279603494737 0.3681045028935301 -5.625878457091545 0.4128913173724724 -5.598883524092275 -0.4605082447537164 -6.428081916010963 0.3996480928002333 -5.597398384708466 0.4398433145490905 -5.576957820490299 -0.4488343226107577 -6.401896102512689 0.4147173528205499 -5.571119059021333 0.4515076979844473 -5.555720079221102 -0.4484087783848311 -6.379668149979191 0.417815089717694 -5.548918425932076 0.4519197748685152 -5.644588786272323 2.432043406180553 -6.475752441667305 2.404888014658125 -6.476678532968182 2.647031326878516 -5.537898422956329 -0.4559979435743079 -6.363430823466654 0.4123864931825314 -5.532783473477472 0.4443536015118346 2.52699327365733 4.053668724156345 3.232240892558104 3.344958568234572 2.254016958954333 3.634765079931456 -5.499906396557383 -0.4989705720211488 -6.344343569199598 0.3621523079421049 -5.513894893397796 0.3670495865317552 6.351232608300514 2.490855442909809 5.520765150887098 2.493018469052865 6.349136616735253 2.738226221440089 2.83617451174444 3.92667842082563 2.558079519991281 3.509863443645249 1.697980286874242 3.981481675466966 7.662203559623302 -4.913533654818638 6.581129811636943 -3.882599263004092 7.05576917080125 -3.869350706402243 4.858615578581932 -6.074245668090698 5.781796714671636 -6.755173925272217 4.699553073210266 -6.171834810212214 -2.923013648991004 -7.410697797244424 -3.004235976416077 -7.446203671646552 -3.154857143866117 -6.287097760729689 -7.233100912016699 -5.2780072099835 -6.696771126747163 -4.272424854255496 -6.238904897399809 -4.261501314141265 -4.160046578622444 -0.4737436785604704 -5.599138070426414 0.3723794843949643 -4.172281427259849 0.4236948597737338 8.583971388279348 -3.861854811376837 8.493484725290733 -3.878498459511783 7.688724458774837 -2.997587991844135 5.773769347551276 -5.42458368153758 6.194793007120643 -6.435297706577472 5.630635840262678 -5.49305586462806 5.637463441909986 0.2063136648478206 5.576712249359321 -0.7002834793214141 4.149493655589789 -0.666422043308793 -3.791997104759317 -3.160289595899267 -4.557148381589244 -2.4438330958985 -2.752395262503766 -2.388220319902878 5.508185884087253 0.3568838258145871 5.479408896688173 -0.5431689211380512 4.080557974305158 0.3597441476089266 5.506171941511711 0.4210506271797914 5.49610738001893 -0.4792775997923502 4.078734300599257 0.4094231397152907 5.509503751461832 -0.460178170981151 4.0852749331553 0.4248645746183525 5.512567720610957 0.4401719054329141 5.523730938822248 -0.4707721957735811 4.096473844284713 0.4192446804514229 5.523701160329052 0.4353960044653995 -3.68214331192589 0.7048003957772115 -3.797079964430929 -0.1886666454908832 -3.966759717564554 0.6230881827453207 6.770678563460123 -2.150790600524764 6.117129859104871 -2.221333120763166 5.914682744017741 -1.996607342708859 5.55221507049154 -0.4461036560030883 4.124268810346557 0.4384218376475834 5.551529312835765 0.4495228068059489 5.565864599723549 -0.4313945211553699 4.138560890324671 -0.4446638803693676 4.137603457175834 0.4528163016298624 5.634227758319667 -0.4402423970654657 4.205959402934985 -0.4768728165044885 4.213980714084771 0.4205838582382181 -3.798495665402174 -0.1820849155691501 -3.568804610354984 -1.073847359963925 -3.875394710153257 -1.003386691537358 6.123994606683545 2.05525332117598 6.776703735835856 1.98005265820314 5.916121464420085 1.806762106662963 5.597675479733299 0.443399893764163 5.585205845377178 -0.4925639279401325 4.169597344998032 0.4024386876104048 4.15762018592527 -0.4950097606756016 5.584202678227232 0.3648870756734438 5.572485063851977 -0.5270898869408937 4.156617820371098 0.3621291455754826 -4.124925005749004 -0.4221101842327787 -5.552090815762549 -0.4677962709606923 -5.55421954180395 0.4325579296179262 -4.111622469373085 -0.4214203977710727 -5.538876324918283 -0.4650816136418131 -5.538576477063474 0.4352706727699609 -4.097125150651432 -0.4279153426255751 -5.52435757429008 -0.4708482185904604 -5.52426233743118 0.4295055149755776 -4.082981753191275 -0.4413168658447663 -5.51008541062717 -0.4849546898017661 -5.512878698675422 0.4153870811823178 -5.631193550035248 2.461507415414935 -6.463048840774564 2.677056089199609 -5.803781728166912 2.695243922016638 -5.496456165566158 -0.5111077385403589 -5.505886766735717 0.3892222330192646 -4.069649252612988 -0.4640573414130001 3.834919411783258 4.229177482280971 4.067083141014313 3.636295497457961 3.395628482009644 4.365034469375767 -5.482838903136125 -0.5372022959242325 -5.506608144241801 0.3286859050130154 -4.056840720569126 -0.4789649353516526 5.627346059598288 2.772713745747252 6.28695098665998 2.780121525531526 5.472318711552627 2.507915073080861 2.539091054934751 4.89062216698243 2.915784678967103 4.664107656039868 1.77785141209766 4.72216774587029 7.719439946235701 -4.846904017109719 7.310729392674782 -4.86625049600592 6.619178588444171 -3.828609251683794 6.022785877259992 -6.533411281220287 5.850334017365131 -6.675404868943827 4.932253880902296 -5.959704110981211 -2.225179099355021 -8.573899165916442 -2.517246359618165 -7.605244271636148 -2.438202460806775 -7.566816113078535 -6.717869201020857 -5.349149792973891 -7.127119524533855 -5.359187381576786 -6.147305757602014 -4.334075845317214 9.271520465878172 -4.829384250182987 8.498392206892227 -3.953414187342754 8.588931033037188 -3.936947027258597 6.001688404292493 -6.520400303231552 5.785867199317528 -6.590653648012299 5.390870613633427 -5.57345836591487 5.612246399584024 0.2811336414350372 4.137508093891616 -0.6053915677220051 4.179845061663457 0.3098219691396784 -5.538764975333309 0.4681121719386963 -4.109915944167414 0.5066086495387171 -4.137244533226672 -0.3906263536147895 -4.093491571230447 -0.4693098312026066 -5.520719793072696 0.4014243121698805 -4.093491571230447 0.4281509816797937 5.522613030223019 -0.4088759348981764 4.095370697688034 -0.4307901038188899 4.095955679305225 0.4666987771532346 4.100600948168641 0.4727237170128614 5.530293461700541 -0.4036800185450093 4.103119696156001 -0.4247646836698221 5.540696074459932 -0.4062771507909478 4.113528349182373 -0.4254116217219571 4.109778224059697 0.4720632539261433 5.562829411054837 -0.4168563095352443 4.135579146547521 -0.4287439876988017 4.131128445010857 0.4687326012540565 -6.106218164610338 0.4067214157437564 -5.949686005033862 -0.4066665999772727 -6.57558798965443 -0.4291223668602024 7.484402007252639 -0.3666865768634973 8.588008637681035 -1.014951336896927 6.906160533801982 -0.6164503317486078 -5.968331417790047 -0.08485090619073749 -6.038886626027283 -0.9065050245338635 -6.594235457051168 -0.1072712048355581 7.785043341838376 -3.027241022869439 6.38760915225589 -3.073919155086647 6.094257506179066 -2.609111482345269 4.182569284383959 0.3628143594684092 5.590918326588575 -0.533762702622409 4.158247094811467 -0.515202285144675 -4.151049002528265 -0.4556168108391424 -5.582161926964881 0.3971661449070394 -4.154959419916142 0.4418540299037406 -4.138993010500824 -0.4477007573165332 -5.565399234233393 0.4095546653307514 -4.138039279917377 0.4497783237258486 -4.126058856890215 -0.4470074540046948 -5.550147546112627 0.4135444010196748 -4.122737751398939 0.4504695718699686 -4.11381972194354 -0.4511845102803854 -5.537457493840162 0.4119462391451804 -4.110066034056458 0.4463155858593719 -5.828619448587592 2.983631213287548 -6.487814456845412 2.963892194643452 -7.084231717134023 3.932564416781103 -4.103273851978412 -0.4587102997819708 -5.52807408050241 0.4063539597087571 -4.100749980947755 0.4387628393962917 4.717344599847353 4.192502098342859 4.633612095804903 3.613061858163787 4.427237314102075 4.211817097101426 0.3206106848921589 -1.391178060408406 0.6921164850603934 -1.628641759935543 0.2782028819448612 -1.450158226014998 6.293848033120097 3.193539879314641 5.634213361410922 3.188008916534419 6.848525411149121 4.203593104396327 -1.891328164057275 -0.1374743576887198 -1.948271184522626 -0.1883172081444611 -2.299859201895115 0.0619301615705932 2.155429516005429 5.433102250304442 2.326785986090503 5.245640623360807 1.568678405240158 5.068661018134691 8.319111193875182 -5.609547578366657 7.324212926387032 -4.723950566267607 7.732827786625975 -4.70339119690072 5.713279785731879 -6.432160030464202 5.953360540920912 -6.578961989440483 5.538615148466631 -6.572469865395896 -2.028798512837025 -8.548366861161911 -2.104055885263323 -8.590898403140145 -2.330512122076828 -7.585630805526254 -7.608945487818658 -6.255703576101399 -7.137958890888548 -5.260559550807522 -6.72869513150474 -5.250866900269577 9.27065934491648 -4.826824061750197 9.179300321773068 -4.839084543618871 8.496674351625121 -3.951322323121277 5.867141115348349 -6.389785434634255 5.741440448300319 -6.687316064812344 5.650766369438735 -6.458977061674541 -6.116633110672703 0.4110907662336733 -6.586162527374134 -0.4246975448627076 -6.656295097298122 -0.05912841987920928 -6.224683474972785 -4.744352959566725 -6.154981253152326 -4.374781149297583 -4.81651597652847 -3.918431791851718 -7.714038473572953 0.6023579286995218 -6.339258681834792 0.6682309068354281 -7.718550954367429 0.477881345093763 -6.574245482658096 -0.09795340618191402 -6.019037035461805 -0.8972475817193066 -6.610675455021291 -0.467456379308435 -6.219167844454492 -1.070784404659 -7.617857677143023 -1.06830930505799 -7.624303380680911 -0.9476220364064913 -8.259673190808709 -0.551958884871283 -8.650674722245444 -0.3398743600165811 -6.909048470343557 -0.0813386710929849 -6.262729427223396 4.280205518061553 -5.523929073475165 3.290676722131466 -6.715952600713422 4.289071664462673 3.937843837902142 5.147301601424823 4.069298934555739 5.075875895797951 3.463533200456307 4.110800280381099 5.209205622771145 4.035822782958834 5.450196430193508 4.151242919036542 5.102250521171852 3.458752088073406 4.095337276055221 1.204356443781205 4.389280951963332 1.1286483224619 4.099195002689461 1.148160626873494 2.771021747791493 0.9722150784720091 2.769151279432363 0.9159566178321216 2.351942138015295 1.100568588629236 2.935863018679035 5.626067172882261 3.069583945778339 5.566693212579978 2.195182696189024 4.692738226224547 7.015206002807851 4.001647704310436 5.735592185692652 3.036957278107067 6.54043165342027 4.011409472370985 -0.5745818156162452 2.549565507132114 -0.201766641564953 2.347215580046476 -0.6317786240502441 2.516375579235664 -1.343223786508591 3.410810264610257 -1.400727010858305 3.377949627684427 -1.605305603904998 3.543518012266425 2.41298121115136 5.483652071981339 2.402231215159181 5.271407892927533 1.807530471990459 4.915030062690574 8.280825905442994 -5.649319198347968 7.898642013392817 -5.666257972030044 7.295398628059252 -4.757193145759694 5.944142243046866 -6.818013508429276 5.833464914441211 -7.051644702807992 5.529399941378703 -6.811400320934341 -1.697471362572419 -8.866096477070775 -1.810456390209519 -8.644014698631873 -1.736609375029659 -8.599979835830487 -7.289404194507263 -6.205034285805037 -7.672080099481478 -6.212367473911156 -6.785103664943274 -5.211197734496072 9.400274494745993 -5.083337609184246 9.180531261399484 -4.878668450017517 9.271905004153444 -4.866476039442853 6.272982820837651 -6.366489343458639 6.467954122720688 -6.67559446441701 6.154288376155829 -6.665795398995026 -6.61782679821126 0.7707276170720391 -7.157860533619931 0.3007726256670714 -7.300822201226315 0.4995800430167435 2.513799392591445 0.5514798227418101 2.414069527238531 0.5491065533840862 2.4673256467482 0.9193765930242428 4.497717665920813 -5.731831628612675 4.516995633749293 -6.879723111970071 4.05665024727122 -5.593268903064636 -6.004154607457918 -0.8371542672269368 -6.924392869678563 -1.04217891225324 -7.379442888224687 -1.044659418331918 -7.537423955761589 0.6016595813773412 -7.542023281758183 0.4771849648315717 -8.968287821898736 0.2934255125263521 2.534015244132297 -0.9706957197685954 2.458215345371251 -0.6029203753848054 2.557945762132749 -0.6005614891247557 -6.885079482756589 -0.6997488815661535 -6.293570957011183 -1.129650712023979 -6.99273692576547 -0.9065747945953878 -7.154016454095761 -1.004976464628402 -6.227488975147699 -1.128661156671277 -7.63261541801149 -1.0054346037006 -7.553775809653298 -0.9472327983245749 -7.547280308312806 -1.067918414717907 -8.922697736279979 -0.9064193612649891 -5.05305560476592 6.622148164113315 -3.905101183939973 6.020618958475664 -3.98597483593536 5.652457902991198 -6.275449585183051 4.127744945274094 -6.72868968733474 4.136058323286965 -7.27772491667968 5.206817501283571 3.354175750142323 4.951616781581719 3.573350367991242 5.273079094114264 3.129344250468945 4.228303088262042 4.269826941252457 6.128012269342688 3.90441428202094 4.990208963003467 3.772065297827613 5.060605702879127 6.702412297663996 2.1096849018762 6.655360169729002 2.163960619423023 6.943140012061708 2.225444299620932 3.765924924014517 -0.3463911266747499 3.789307562308364 -0.4094590512181034 3.500449096548218 -0.3224776095588098 3.64298411173188 5.25514485092069 3.38025674050513 4.943435513391906 2.73421192946776 4.403165535243263 3.774958042568282 6.421429065416803 3.011909711981109 5.52641071277909 2.877940667869294 5.585437524330192 7.017936891579413 3.909965806713123 6.543176739322377 3.920145912335438 7.609975503683925 4.890018825072455 -2.761677657248522 2.029500599706688 -2.586835986024328 1.870394885037136 -2.844537059602854 2.008309631066081 -3.835270694369624 4.598089772890178 -3.918084073209415 4.576787760213856 -4.008092862297267 4.777051305618736 8.467885565626732 -5.943713672615953 7.899901978429571 -5.654845163920292 8.282079997379809 -5.637824583607729 6.042017955053143 -6.814426757901017 6.207313497316516 -6.865170711259076 5.932658345836569 -7.048441644263794 -0.654931246901786 -8.87572412908016 -0.7033889763933321 -8.94094689105154 -0.7708877180182611 -8.67837023956853 -7.828473878628092 -6.498814991450156 -7.675148319401016 -6.175515803589196 -7.29247008265804 -6.16825830814427 9.383696738578189 -5.089147503819769 9.288607905876326 -5.078632244589382 9.163513299032058 -4.884771330406955 6.149763548693514 -6.719783069680686 6.463426586427903 -6.72963564814617 6.156160333179555 -6.85925835793994 -6.416444883919922 0.4564335272708737 -7.099418415463823 0.185251862407488 -7.342427430768073 0.2680930777047664 -0.8733676025194243 2.955435193762439 -0.9486586336982406 2.928653260658535 -0.9387513316986113 3.177981314570622 0.2390899787757239 1.121124098115781 0.2049310777999552 0.7494616287782674 0.1623900218977226 1.096942491253779 2.697162291991673 -7.439733174679802 2.351259293116423 -7.267382833582784 2.561736891303922 -6.107532364065592 -7.483393821633138 0.4455058785349199 -8.914208763313722 0.1371312959481615 -8.930165451960262 0.295333508518245 -7.432231818739337 3.138655979150429 -6.977197707339149 3.142543371988218 -6.95826376736089 3.067299847819562 -9.538039950976902 1.753491054251887 -8.129971552498796 2.009779509810612 -8.076504999067801 1.942273857748956 1.586050509773324 -1.101728573334035 1.495417258704747 -1.082469132367868 1.514655812151018 -0.7334080930896799 0.848532342347732 -2.78422799511566 0.9386843079517104 -2.804837975377466 0.9056622836245004 -3.026816851248352 -6.87969655198374 -0.6882856501199133 -6.180492195800953 -0.9112870973468583 -7.107027252437868 -0.7876375390194846 -7.147035477462651 -3.156399070821825 -7.625633710012609 -3.157201018721693 -7.128542655161807 -3.081103406424559 -7.718161150097957 -2.869832060215034 -9.085934916881605 -2.809746725564581 -7.67646206602808 -2.797370727957003 -8.90510072222548 -0.8139328844854772 -7.529679053645937 -0.9754095865071504 -8.908472463734093 -0.9456976228573982 -7.210690829545285 4.875994604011638 -7.253841230344557 5.1963013655474 -5.881338388599651 4.50406112808743 -6.783802307654304 5.26301819230866 -6.201636592931429 4.184642820135692 -7.193159703222822 5.269845207239835 4.873549189960155 5.93692711853209 5.053724850986439 5.865516110681777 4.462075121711869 4.808897275595138 7.292904795002277 2.808409441747124 7.19840840418086 2.838397488863771 7.561292571124231 3.105880725196114 7.430419082646078 3.317686977760138 7.33108804176471 3.332484017562069 8.1446895956849 4.306100996550779 7.068893513549147 1.839229311548257 6.78298815180057 1.772553044467654 6.976466929022937 1.872974094695157 -3.45919853437108 5.75786510951576 -3.431496126799863 6.131233491670329 -3.375200879283819 5.745125750166509 -3.044170914533516 6.259261082509404 -2.872356450278772 7.328422963449643 -2.955184331484319 6.221493854929197 3.791337376614206 6.408479467987543 3.931373325290601 6.336109984127391 3.025786591428482 5.50585552532548 7.647720248807206 4.84458354354674 6.567221837176867 3.884141568478665 7.238755424174864 4.860237867715482 -3.769795641590861 4.853212271834425 -3.683295487647069 4.683780487940838 -3.854266820333741 4.863838823179988 8.540483215386344 -5.892575601653754 8.197397358396524 -5.907933248492452 7.967133376560895 -5.610343800351751 6.081375034645086 -6.819435075955772 6.197624860810667 -6.97081610700894 5.80543341433306 -7.001506192640144 2.8140929380626 -8.79297493691973 2.672106037527454 -8.709265195113094 2.694052004896493 -8.635718625076724 -7.360840524520197 -6.588309894264103 -7.704084751759124 -6.601281756698698 -7.172208132465931 -6.266624957468202 9.358294433600234 -5.114631927304724 9.405523130976883 -5.249161905572431 9.263260326210883 -5.103814835884413 6.407080260315937 -6.694157141549344 6.241312786510573 -6.960253543023304 6.099371398642951 -6.823128462645105 -3.130554944520676 5.227407523900158 -2.940368701141873 5.082412968960504 -3.00608556832405 5.019451911661345 1.443907975064636 3.009566474741562 1.392768651892923 2.763381990809926 1.353517222041405 2.969811712864057 4.650737616699059 -6.727729441427135 4.716744199031261 -7.743148165624424 4.266942852427738 -6.615506992460908 -9.071140312411432 0.2944633974503092 -9.055407814662802 0.1362472901876673 -10.28668002886894 -0.0937828797595812 -3.773360530426287 4.896600557490119 -3.750680886215156 4.97120033830512 -3.608858147557148 4.770238110183211 -7.53289520959112 2.701458828563071 -7.576834581716011 2.773091943295637 -7.100705157999414 2.711278583091485 -9.577442512528513 1.663494001273091 -9.62934706237974 1.724115776184242 -8.17428369246934 1.941646553319781 -7.81789872000735 -0.5108880977619668 -7.925738781038671 -0.7049677603238156 -7.780241514356955 -0.1627572382919025 -0.3664504784439115 -2.918283023253877 -0.3271898303935311 -3.163058982880862 -0.4003858537230914 -3.128404622530123 -3.148104590430492 -4.723003393556979 -3.334860453426127 -4.865370207353467 -3.210576798330826 -4.677163784487616 -1.395218845609698 -5.443644561343438 -1.443959236100936 -5.377229732235214 -1.316512064019561 -5.240797323619147 -7.787263952156327 -2.781924358475356 -7.744361347278708 -2.709899126802834 -7.287339521616378 -2.718342435752688 -9.076011327401556 -2.99138269813291 -9.03710292577769 -2.925003092659073 -7.666572568824681 -2.976800579108238 -8.848305698669181 -0.8140373333688989 -8.851696614398072 -0.9458017672404062 -10.16170857392661 -0.6825958909967832 -1.040226995247436 8.578003799303744 -0.3851475606342147 7.649532137868212 -0.6418995047070736 7.398626793913742 -6.791185263749208 5.136836418696446 -7.200547990069486 5.143462673449845 -7.687594056897973 6.085286508094633 5.328590197088473 6.927864112478795 5.116453585483766 5.909410591143172 4.936590354621746 5.981307350482459 7.40562559675408 3.198016750009801 7.037176307619113 2.935283787564428 7.306308382958497 3.212871115809425 8.280426782920902 4.256599975095995 7.473686813896915 3.279455971915816 8.188880842524677 4.269016917995517 -3.121678174578922 6.214017685437319 -3.032336604943796 6.176772711451529 -3.080035187647084 5.826761646029444 -4.064391166869241 7.039200860234 -3.978727878031649 7.010881474673525 -3.997509586052842 5.931604622387955 4.716810930553826 7.113391170709449 3.87935099306713 6.306692144878103 3.73907649699957 6.378775164524912 7.653443140774132 4.743071349325396 7.244516300415924 4.759328148477268 8.224676172670373 5.705182593954473 8.589069989065436 -5.401804206253233 8.685476913952527 -5.517917613663904 8.246228042817288 -5.420226833230213 5.950380016897553 -6.888351573934867 5.829734031808918 -7.151083490739215 5.716535945349822 -6.99827792502101 6.329976887835218 -7.444445810242726 6.079310741766163 -7.560349740341263 5.938075065571109 -7.477345904830089 3.648030716630628 -8.533174653926585 3.642055186490267 -8.611141909815 3.506912979032589 -8.46166022371338 -7.838113406866619 -6.259107765244684 -7.758917757279447 -6.135179534202703 -7.415617247831406 -6.123164672229621 9.338938362228362 -5.336702837402881 9.242747120781061 -5.317344943838871 9.199320618261513 -5.189777088698508 6.441712748022574 -6.609927054303896 6.586311701542256 -6.745322910101302 6.20428809670488 -6.752999988327257 7.45901239198993 -6.576650445976441 7.521171262621915 -6.706452308652097 7.313221789611619 -6.849888355574418 5.327297900583988 -7.497732947390289 4.96101672126361 -7.410250837308657 4.791985438184079 -6.393448434642259 -8.973048322673785 0.09368805104582501 -10.18786210624122 -0.2959617694932749 -10.24084246468124 -0.1040529529873537 -11.03574671084916 0.6911650590541538 -9.849740241730554 1.038480174062652 -9.791558687129761 0.9814944629179719 -9.461761610005713 -2.286137886242992 -10.75659909304071 -2.068782967820127 -9.415230739134167 -2.222866846366144 -10.09884371873968 -0.48395379180013 -8.789002283949557 -0.747684339765454 -10.13482258713969 -0.6655093740248087 0.2420699431879769 8.404827397964192 0.5215751719474426 8.610576067740357 0.7062362991890919 7.398958754048512 -7.355456083926312 6.045252120048752 -6.837541269088914 5.104195416427717 -7.738195418593551 6.050153291287474 4.849663849320372 7.057734058926635 5.087364117575771 6.997668551183808 4.669626389314941 6.035463120990829 8.291339532033625 4.326686009564462 8.19978347435528 4.33905670336054 8.887757765929553 5.204713154954328 -3.791426498015353 7.184865016877708 -3.646455252176806 8.220131701559021 -3.706736949528631 7.154787763625316 4.832422322582662 7.039874860515124 5.007217863813386 6.917949964255357 4.017462302655394 6.193364490230405 8.198275477145513 5.733581468844197 7.225753052870662 4.782860808236814 7.815867115999467 5.747013697197486 8.695492439150057 -5.521828640662377 8.354061003959405 -5.553084446659128 8.255934873121877 -5.425000924755263 6.32941090754643 -6.864572112469428 6.448048886577796 -6.99394840958314 6.214707203613981 -7.128945943891515 8.46005302508858 -5.928526389953852 8.268057903211902 -6.080553301519491 8.221420654770943 -6.011596916810401 -7.739636148797682 0.9160539968145308 -7.710056807611661 1.143598374101608 -7.400535590715782 0.8717983867746344 -7.476335612334193 -6.285611833348003 -7.820072536121256 -6.285705449040004 -7.397728585105807 -6.149469981422893 8.983551949191488 -5.392582583260899 8.802036041508512 -5.579571116364043 8.889699937979515 -5.367090655374562 6.596129007660912 -6.921729238484499 6.331806366037938 -7.059450696779978 6.214109891629436 -6.929543324702434 -7.840906910557184 0.2065396890655799 -7.823134473615471 0.4236551229774854 -7.479397580784825 0.4238032242109914 5.403250354818505 -7.456433614001966 5.44714017930667 -7.793709156066238 5.03613177516775 -7.371151395670309 -9.956211444287531 -0.09606984461399371 -9.901968525166041 -0.2877602649081492 -10.18932270967896 -0.3660431812972971 -10.96888940766614 0.6583064165969161 -11.03088046238132 0.7124922133221913 -9.785553559477243 0.9997840159759621 -10.75176751996626 -2.075844082053425 -10.70081004544833 -2.014953416345824 -9.410114233620595 -2.228385051922737 -9.882478990765385 -0.4894789985166593 -9.919087785409818 -0.6709566358517062 -10.17781002545755 -0.4324686368727615 1.973086817548392 8.775162110542233 2.073456556903941 8.439249232768111 1.760118758233272 8.266274949732306 -7.355893051787491 6.035139217269675 -7.738632574130896 6.040031310379674 -7.895675249693724 6.35572890440783 4.755953259092024 7.10117505962285 4.936890879330538 6.807500633840543 4.698653201530358 6.866233768884938 8.881865056477553 5.207681510575066 8.193911464926989 4.342014878462916 8.789778937523959 5.215777509063605 -3.567023200653953 8.239510501697062 -3.485281170383963 8.205188246932353 -3.636679076312206 7.174520399546183 5.002730093696144 6.988347316600743 4.784623973985226 6.821644505099476 4.608467887856551 6.942351551755317 8.200915224598788 5.694904571137292 7.818517792135292 5.708527979604562 8.382336284135629 6.009072709059925 -7.640754077580986 0.3502904432559122 -7.610227136120761 0.5768796973943583 -7.300328622433423 0.3133705363867954 8.752295864988689 -5.257974310796413 8.520711222363763 -5.352586884343154 8.683624809932937 -5.213540875446535 -7.383512819161629 1.615486151864548 -7.045255851850174 1.56780133338496 -7.092818134246431 1.331112866636004 9.216058004429662 -4.588944696320829 9.155802633392856 -4.807249290353734 9.080826027969591 -4.769648828027862 -7.563888096290102 0.9487953516270735 -7.527235853374553 1.196529730501106 -7.184763006546485 1.174210970859951 -7.630302431797364 0.1682635791268916 -7.260875675639328 0.3771226435993637 -7.287457386560325 0.1498170140715543 4.021944197128372 -8.321277962077289 3.710282400354488 -8.207401766278244 3.685928652310532 -7.859516517881581 -10.20681813314493 0.06374166861326873 -10.44103046175671 -0.2056412825270085 -10.62889198449577 -0.004829544958635267 -11.33757060876102 0.3299332866368258 -11.06989655349128 0.4434580411120462 -11.00590139692624 0.3907337674933596 -10.93675582579856 -1.489933784228467 -11.21906661463155 -1.401026336483101 -10.88077384336795 -1.431837684361402 -10.3823927298437 -0.5840073204946437 -10.12317404566467 -0.8221614784880638 -10.5596395438532 -0.7878020949513485 -1.814730889983079 8.61089390575034 -1.611430049953948 8.828839023972686 -1.615834864721014 8.293094617417673 -7.453867248912717 6.432445277851455 -7.260221681247103 6.119122849391917 -7.797266256922559 6.442545277235023 5.53582304901841 7.144123675288182 5.393343910433234 6.824179257647212 5.220278369457862 7.120775325574897 8.884875029733228 5.223710077424811 8.792789899193275 5.231813030241208 8.997431426691051 5.445946787423706 -3.218528724881931 8.353659643728127 -3.142359261060369 8.585258492464037 -3.138175189433178 8.317365019032891 4.814130817532872 7.434740768529738 4.939970439093995 7.208514868594181 4.54585703049935 7.161736605889143 8.434102477119943 5.975707014455302 7.865836740895702 5.680391139333189 8.090778324723388 5.987275507851667 -7.591005943910796 0.6062217419930539 -7.24953389326128 0.5767685969397471 -7.282057632106239 0.3420229973445143 -7.199326808919533 0.9181592597770775 -7.54050878292817 0.9496240426249764 -7.160381284168206 1.173992512444623 6.249641386265783 -7.083776125206647 6.29919748455012 -7.216898010070527 5.914689599860319 -7.02337559921768 -10.49291382516479 -0.2310377280508252 -10.63789637362116 -0.3114805503609948 -10.68063472916411 -0.03014462824183809 -11.23691440893257 0.3979838735056778 -11.32050148029596 0.4351794222741164 -10.98767111651761 0.4919174817930945 -11.1989547701045 -1.450640802191977 -11.12090449503825 -1.406631697688325 -10.86032803082546 -1.479091414228765 -10.59175004968914 -0.4865325643419837 -10.43811890949309 -0.5563633344249114 -10.61528799819944 -0.760199929410775 5.532248318194387 7.583289295059242 5.496535504559187 7.447443103446951 5.168886315289541 7.365943063405671 -7.487027993879361 6.003664093610519 -7.830448785404514 6.01329483810173 -7.911031530225858 6.136667593078347 5.52505120131981 7.196367035854346 5.209522134444327 7.172888476327961 5.196321233049179 7.312074496055821 8.736560394668635 5.275854911380717 8.846094317593119 5.475450592245355 8.940196896659442 5.490580774524839 -2.279150689010646 8.74370209437417 -2.219830157215937 8.684287937402377 -2.300373506391011 8.476309098196238 5.201938026693515 7.276423649238595 5.044873738304256 7.211527141739645 4.920373935155845 7.438211336220197 8.460523032565412 5.492339300060463 8.117312848289828 5.50583931127758 8.554216058595706 5.609838941235937 6.176397673910426 -7.292681087399546 5.838978350849863 -7.241079413747425 5.794782989367736 -7.095646520287728 -11.30737918634648 0.1715256504883076 -11.14133237321608 0.2182022158056376 -11.32324141032872 -0.05684265905028527 -10.55983482506775 -0.02988727853457548 -10.51661884714693 -0.3111780448464778 -10.74131848652431 -0.3051059973261299 -11.24791499099993 -0.3502225672437868 -11.4677873213602 -0.4112938962804223 -11.33513745992419 -0.3186119544810304 -11.25043997430787 -0.4183930563986958 -11.33426853498595 -0.4552433648619497 -11.47568516644927 -0.3709429057436157 -10.52085334959071 -0.486693300899215 -10.54454376524947 -0.7603525242860809 -10.74388029507606 -0.5088916691470116 -11.0734791832724 -0.9997547129525994 -11.24399792535239 -0.9644057792185449 -11.27212812476224 -0.7479573568234509 5.006846435673423 7.604819984842863 5.337233013825129 7.679442414591668 4.978979388225893 7.45691012177773 -7.472314108315947 6.027926149526729 -7.896230321513499 6.161101792884907 -7.552507478035663 6.163501045937264 6.612442373854851 7.225289807666986 6.568033924868935 7.091055228351658 6.381417688566287 7.364138822885103 5.229994844828195 7.390708196312395 5.437859442009398 7.127293216737903 5.108519115953327 7.241921539249105 8.863857021041271 5.57036678242239 8.769964914876876 5.554447965853877 8.899210574551541 5.707140730405462 0.5630702990475844 8.918172808578168 0.6831017678459112 9.02094398084264 0.6017656373906116 8.849027341067513 5.225877649618224 7.404059473402316 5.131383779189833 7.243594294828876 4.84918506126741 7.404696269567971 4.980384828495451 7.986939090479169 5.228726971077487 7.891158075813983 4.852034509448656 7.891839684728685 8.561642221226299 5.616449946382111 8.124451070387782 5.513201857738595 8.219528150327255 5.64268143251085 7.82095570648282 -0.3342272036161624 7.820002119320475 -0.5629349420333912 7.477964839792466 -0.3164301919684322 -10.50753475833932 -0.1035733729477003 -10.51385019564315 -0.3178100812963506 -10.73223469003857 -0.09750802350088886 -11.38964063218413 -0.3091237266096786 -11.4828768075653 -0.2822812359787225 -11.26210337181495 -0.2232559555111391 -11.25267877158462 -0.5413292099811872 -11.47856677714294 -0.4958093755231466 -11.38820264429764 -0.4634149773922885 -10.51035120217984 -0.4674430017563528 -10.48624088283821 -0.7019420723149915 -10.70926736066075 -0.7241433480761172 7.845644128403817 -0.02419302449264853 7.502764762946278 -0.0432567612130923 7.844049478789012 0.1933800494995118 -7.822783260867139 -0.2298481961284706 -7.845559445012757 -0.001841097336704264 -7.479089971007023 -0.2255670009436816 5.604855525251153 7.206321351226547 5.480262055549751 7.059138797071849 5.251847388980799 7.175966403540889 8.651500581638176 5.680456463118566 8.682652265325375 5.810220989327786 8.776750423011515 5.835196226157819 1.584619933842702 8.958069629267971 1.608273387713923 8.882207753686709 1.485772983708301 8.791928779812089 4.799109858124441 7.566151518812774 4.976298403093658 7.299798120732598 4.708393688786927 7.404342806766388 -7.761536119210644 -0.924080850109646 -7.793178801377531 -0.7079307177167631 -7.454962337104237 -0.6596704191253112 7.613136989127534 -0.7498145417369845 7.269619430338604 -0.742481892834188 7.271660093477241 -0.5028294652796737 -10.70221595034152 -0.4305822903290932 -10.90482643731967 -0.43775430480715 -10.92051144681378 -0.2102256539428505 -11.18280299208395 -0.1971672534214698 -11.28100018826619 -0.3873621256739218 -11.27725068815328 -0.173088120066662 -11.15625228072694 -0.4254444442964471 -11.24894199331346 -0.4534792626938192 -11.2630806435167 -0.2184774645733396 -10.70584857138288 -0.3670718909140796 -10.90502832334284 -0.6236457186092163 -10.90845917228694 -0.3742419134110793 7.278378418002919 0.1757309639274631 7.275205169583114 0.4039696451474449 7.618644319240165 0.413273990567097 -7.287293167286048 -0.2119090496941094 -7.662310025337017 0.002872670088507172 -7.319965044724375 0.02637050699736276 5.304261758068236 7.510718828934936 5.558892750505161 7.402139770442199 5.205967696573508 7.371192744173923 7.943854768287891 6.314353166684216 8.127594706888372 6.156102077184638 8.037753861832558 6.122809874252642 7.310957907657844 6.740480419146932 7.539061909339335 6.588340650501213 7.273791869601489 6.668048104795911 5.436421504585031 7.452357326752184 5.336979005721872 7.313335759549505 5.165539756279554 7.582007533895836 -7.056068249124015 -1.464908348649675 -7.392083045804741 -1.521561313377225 -7.110207297837602 -1.240657627793926 7.648649290072918 0.2807114310127205 7.649873525010325 0.05285049253222032 7.305131176915099 0.2880279903068188 -10.87205009150995 -0.5292217281837912 -10.96094106120326 -0.5307952075667954 -10.86392768529901 -0.3402247460209299 -10.87046564296891 -0.2533508204590864 -10.97483706903287 -0.04560951047551233 -10.88594628879937 -0.04402942136596071 7.65941400470839 -0.5257647217229292 7.315970564608313 -0.5349705400006876 7.659150054302678 -0.2763464000623481 -7.513933166500292 -1.170992836758235 -7.55519119575834 -0.9454712612601799 -7.172426749101089 -1.140875959246738 8.530400067812826 5.439495416581214 8.593907679644593 5.240374159134416 8.459571746985008 5.397204563665892 7.59007991289359 6.128803043075938 7.84955355450045 6.038053002042353 7.787513651940996 5.987941707509287 -7.631753046015854 -0.5387552600929779 -7.671599965303634 -0.2912972040263326 -7.332300693067998 -0.2484377953323516 7.635489710447182 0.04037490460496442 7.291975651081154 0.03940138049878873 7.290719076346226 0.2755267402021296 7.293684783939276 -0.5164621196727895 7.293339314235867 -0.2588010655243426 7.636853380435862 -0.2578290348497467 -7.539607897009619 -0.9469071451194763 -7.199692840819402 -0.9078650066005928 -7.156160674413737 -1.141481673185987 -7.262747511722701 -0.5487342049231557 -7.603196841502352 -0.5847805386810494 -7.305606594538739 -0.293280564857082</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1235\" source=\"#ID799\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID795\">\r\n                    <input semantic=\"POSITION\" source=\"#ID793\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID794\"/>\r\n                </vertices>\r\n                <triangles count=\"884\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID795\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID796\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 9 7 10 8 11 8 12 7 13 6 14 9 2 10 1 11 4 11 3 10 15 9 6 12 16 13 1 14 4 14 17 13 7 12 18 15 19 16 8 17 13 17 20 16 21 15 22 18 8 19 10 20 11 20 13 19 23 18 9 21 24 22 10 23 11 23 25 22 12 21 14 24 26 25 2 26 3 26 27 25 15 24 28 27 29 28 30 29 31 29 32 28 33 27 34 30 35 31 29 28 32 28 36 31 37 30 6 32 38 33 16 34 17 34 39 33 7 32 18 35 8 36 22 37 23 37 13 36 21 35 18 38 40 39 19 40 20 40 41 39 21 38 42 41 43 42 44 43 45 43 46 42 47 41 24 44 48 45 10 46 11 46 49 45 25 44 50 47 26 48 14 49 15 49 27 48 51 47 52 50 53 51 54 52 55 52 56 51 57 50 16 53 38 54 58 55 59 55 39 54 17 53 60 56 61 57 62 58 63 58 64 57 65 56 66 59 40 60 18 61 21 61 41 60 67 59 68 62 69 63 70 64 71 64 72 63 73 62 48 65 74 66 10 67 11 67 75 66 49 65 76 68 77 69 78 70 79 70 80 69 81 68 82 71 83 72 84 73 85 73 86 72 87 71 88 74 89 75 90 76 91 76 92 75 93 74 94 77 95 78 96 79 97 79 98 78 99 77 100 80 66 81 18 82 21 82 67 81 101 80 102 83 103 84 104 85 105 85 106 84 107 83 108 86 109 87 103 88 106 88 110 87 111 86 69 89 112 90 70 91 71 91 113 90 72 89 74 92 114 93 10 94 11 94 115 93 75 92 116 95 83 96 82 97 87 97 86 96 117 95 89 98 118 99 90 100 91 100 119 99 92 98 120 101 94 102 96 103 97 103 99 102 121 101 122 104 123 105 124 106 125 107 124 106 123 105 126 105 127 106 128 107 127 106 126 105 129 104 124 108 130 109 131 110 132 110 133 109 127 108 134 111 135 112 136 113 137 113 138 112 139 111 140 114 100 115 18 116 21 116 101 115 141 114 142 117 102 118 104 119 105 119 107 118 143 117 104 120 103 121 144 122 145 122 106 121 105 120 103 123 109 124 123 125 126 125 110 124 106 123 146 126 147 127 148 128 147 127 149 129 148 128 149 129 150 130 148 128 148 128 150 130 151 131 150 130 152 132 151 131 152 132 153 133 151 131 151 131 153 133 154 134 153 133 155 135 154 134 154 134 155 135 156 136 155 135 157 137 156 136 156 136 157 137 158 138 157 137 159 139 158 138 159 139 160 140 158 138 158 138 160 140 161 141 160 140 162 142 161 141 161 141 162 142 163 143 162 142 164 144 163 143 164 144 165 145 163 143 163 143 165 145 166 146 165 145 167 147 166 146 167 147 168 148 166 146 166 146 168 148 169 149 168 148 170 150 169 149 171 151 169 149 170 150 150 130 149 129 172 152 172 152 149 129 173 153 149 129 174 154 173 153 173 153 174 154 175 155 174 154 176 156 175 155 175 155 176 156 177 157 176 156 178 158 177 157 177 157 178 158 179 159 179 159 178 158 180 160 178 158 181 161 180 160 180 160 181 161 182 162 181 161 183 163 182 162 182 162 183 163 184 164 183 163 185 165 184 164 184 164 185 165 186 166 186 166 185 165 187 167 185 165 168 148 187 167 167 147 187 167 168 148 188 148 189 167 190 147 189 167 188 148 191 165 189 167 191 165 192 166 192 166 191 165 193 164 193 164 191 165 194 163 193 164 194 163 195 162 195 162 194 163 196 161 195 162 196 161 197 160 197 160 196 161 198 158 197 160 198 158 199 159 199 159 198 158 200 157 200 157 198 158 201 156 200 157 201 156 202 155 202 155 201 156 203 154 202 155 203 154 204 153 204 153 203 154 205 129 204 153 205 129 206 152 206 152 205 129 207 130 208 150 209 149 210 151 209 149 208 150 188 148 209 149 188 148 211 146 211 146 188 148 190 147 211 146 190 147 212 145 211 146 212 145 213 143 213 143 212 145 214 144 213 143 214 144 215 142 213 143 215 142 216 141 216 141 215 142 217 140 216 141 217 140 218 138 218 138 217 140 219 139 218 138 219 139 220 137 218 138 220 137 221 136 221 136 220 137 222 135 221 136 222 135 223 134 223 134 222 135 224 133 223 134 224 133 225 131 225 131 224 133 226 132 225 131 226 132 207 130 225 131 207 130 227 128 227 128 207 130 205 129 227 128 205 129 228 127 227 128 228 127 229 126 69 168 230 169 112 170 113 170 231 169 72 168 74 171 232 172 114 173 115 173 233 172 75 171 234 174 116 175 82 176 87 176 117 175 235 174 120 177 236 178 94 179 99 179 237 178 121 177 109 180 125 181 123 182 126 182 128 181 110 180 238 183 123 184 122 185 129 185 126 184 239 183 124 186 240 187 122 188 129 188 241 187 127 186 124 189 131 190 242 191 243 191 132 190 127 189 134 192 244 193 135 194 138 194 245 193 139 192 140 195 246 196 100 197 101 197 247 196 141 195 248 198 142 199 104 200 105 200 143 199 249 198 250 201 104 202 144 203 145 203 105 202 251 201 103 204 238 205 144 206 145 206 239 205 106 204 103 207 123 208 238 209 239 209 126 208 106 207 252 210 253 211 254 212 255 212 256 211 257 210 253 213 258 214 259 215 260 215 261 214 256 213 262 216 263 217 258 218 261 218 264 217 265 216 266 219 267 220 262 221 265 221 268 220 269 219 270 222 271 223 272 224 273 224 274 223 275 222 276 225 277 226 270 227 275 227 278 226 279 225 280 228 281 229 282 230 283 230 284 229 285 228 281 231 286 232 287 233 288 233 289 232 284 231 286 234 290 235 291 236 292 236 293 235 289 234 290 237 142 238 248 239 249 239 143 238 293 237 242 240 131 241 294 242 295 242 132 241 243 240 296 243 294 244 297 245 298 245 295 244 299 243 300 246 297 247 301 248 302 248 298 247 303 246 304 249 301 250 305 251 306 251 302 250 307 249 308 252 309 253 310 254 311 254 312 253 313 252 314 255 315 256 316 257 317 257 318 256 319 255 309 258 320 259 321 260 322 260 323 259 312 258 324 261 316 262 325 263 326 263 317 262 327 261 328 264 252 265 329 266 330 266 257 265 331 264 230 267 332 268 112 269 113 269 333 268 231 267 232 270 334 271 114 272 115 272 335 271 233 270 336 273 116 274 234 275 235 275 117 274 337 273 338 276 236 277 120 278 121 278 237 277 339 276 240 279 124 280 242 281 243 281 127 280 241 279 340 282 244 283 134 284 139 284 245 283 341 282 342 285 246 286 140 287 141 287 247 286 343 285 248 288 104 289 250 290 251 290 105 289 249 288 252 291 254 292 329 293 330 293 255 292 257 291 254 294 253 295 259 296 260 296 256 295 255 294 259 297 258 298 263 299 264 299 261 298 260 297 262 300 267 301 263 302 264 302 268 301 265 300 266 303 271 304 267 305 268 305 274 304 269 303 344 306 345 307 346 308 347 308 348 307 349 306 270 309 277 310 271 311 274 311 278 310 275 309 350 312 277 313 282 314 276 315 282 314 277 313 278 313 283 314 279 315 283 314 278 313 351 312 352 316 353 317 354 318 355 318 356 317 357 316 281 319 287 320 282 321 283 321 288 320 284 319 286 322 291 323 287 324 288 324 292 323 289 322 291 325 290 326 248 327 249 327 293 326 292 325 242 328 294 329 296 330 299 330 295 329 243 328 296 331 297 332 300 333 303 333 298 332 299 331 300 334 301 335 304 336 307 336 302 335 303 334 304 337 305 338 310 339 311 339 306 338 307 337 358 340 359 341 360 342 361 342 362 341 363 340 310 343 309 344 321 345 322 345 312 344 311 343 364 346 314 347 316 348 317 348 319 347 365 346 321 349 320 350 329 351 330 351 323 350 322 349 366 352 367 353 368 354 369 354 370 353 371 352 364 355 316 356 324 357 327 357 317 356 365 355 372 358 332 359 230 360 231 360 333 359 373 358 232 361 374 362 334 363 335 363 375 362 233 361 376 364 336 365 234 366 235 366 337 365 377 364 378 367 236 368 338 369 339 369 237 368 379 367 240 370 242 371 380 372 381 372 243 371 241 370 340 373 382 374 244 375 245 375 383 374 341 373 342 376 384 377 246 378 247 378 385 377 343 376 291 379 248 380 250 381 251 381 249 380 292 379 329 382 254 383 386 384 387 384 255 383 330 382 254 385 259 386 388 387 389 387 260 386 255 385 259 388 263 389 390 390 391 390 264 389 260 388 267 391 392 392 263 393 264 393 393 392 268 391 271 394 394 395 267 396 268 396 395 395 274 394 396 397 397 398 398 399 399 399 400 398 401 397 345 400 402 401 346 402 347 402 403 401 348 400 277 403 404 404 271 405 274 405 405 404 278 403 277 406 350 407 404 408 405 408 351 407 278 406 282 409 406 410 350 411 351 411 407 410 283 409 408 412 409 413 410 414 411 414 412 413 413 412 414 415 352 416 354 417 355 417 357 416 415 415 282 418 287 419 406 420 416 421 406 420 287 419 288 419 407 420 417 421 407 420 288 419 283 418 287 422 291 423 416 424 417 424 292 423 288 422 380 425 242 426 296 427 299 427 243 426 381 425 418 428 296 429 300 430 303 430 299 429 419 428 420 431 300 432 304 433 307 433 303 432 421 431 422 434 304 435 310 436 311 436 307 435 423 434 358 437 360 438 424 439 425 439 361 438 363 437 310 440 321 441 426 442 427 442 322 441 311 440 428 443 314 444 364 445 365 445 319 444 429 443 321 446 329 447 430 448 431 448 330 447 322 446 432 449 368 450 367 451 370 451 369 450 433 449 434 452 364 453 324 454 327 454 365 453 435 452 372 455 436 456 332 457 333 457 437 456 373 455 374 458 438 459 334 460 335 460 439 459 375 458 440 461 336 462 376 463 377 463 337 462 441 461 442 464 378 465 338 466 339 466 379 465 443 464 444 467 382 468 340 469 341 469 383 468 445 467 446 470 384 471 342 472 343 472 385 471 447 470 291 473 250 474 448 475 449 475 251 474 292 473 329 476 386 477 430 478 431 478 387 477 330 476 386 479 254 480 388 481 389 481 255 480 387 479 259 482 390 483 388 484 389 484 391 483 260 482 390 485 263 486 392 487 393 487 264 486 391 485 267 488 394 489 392 490 393 490 395 489 268 488 271 491 404 492 394 493 395 493 405 492 274 491 450 494 451 495 452 496 453 496 454 495 455 494 345 497 456 498 402 499 403 499 457 498 348 497 451 500 458 501 452 502 453 502 459 501 454 500 460 503 352 504 414 505 415 505 357 504 461 503 416 506 291 507 448 508 449 508 292 507 417 506 380 509 296 510 418 511 419 511 299 510 381 509 418 512 300 513 420 514 421 514 303 513 419 512 420 515 304 516 422 517 423 517 307 516 421 515 422 518 310 519 426 520 427 520 311 519 423 518 424 521 360 522 462 523 463 523 361 522 425 521 426 524 321 525 430 526 431 526 322 525 427 524 464 527 314 528 428 529 429 529 319 528 465 527 466 530 467 531 468 532 469 532 470 531 471 530 368 533 432 534 472 535 473 535 433 534 369 533 466 536 468 537 474 538 475 538 469 537 471 536 476 539 434 540 324 541 327 541 435 540 477 539 478 542 436 543 372 544 373 544 437 543 479 542 374 545 480 546 438 547 439 547 481 546 375 545 482 548 440 549 376 550 377 550 441 549 483 548 484 551 378 552 442 553 443 553 379 552 485 551 444 554 486 555 382 556 383 556 487 555 445 554 446 557 488 558 384 559 385 559 489 558 447 557 450 560 452 561 490 562 491 562 453 561 455 560 456 563 492 564 402 565 403 565 493 564 457 563 494 566 495 567 496 568 497 568 498 567 499 566 452 569 458 570 500 571 501 571 459 570 453 569 458 572 502 573 503 574 504 574 505 573 459 572 506 575 460 576 414 577 415 577 461 576 507 575 508 578 424 579 462 580 463 580 425 579 509 578 510 581 511 582 512 583 513 583 514 582 515 581 464 584 516 585 314 586 319 586 517 585 465 584 518 587 519 588 520 589 521 589 522 588 523 587 518 590 520 591 524 592 525 592 521 591 523 590 526 593 527 594 324 595 327 595 528 594 529 593 472 596 432 597 530 598 531 598 433 597 473 596 532 599 533 600 534 601 535 601 536 600 537 599 532 602 534 603 538 604 539 604 535 603 537 602 540 605 476 606 324 607 327 607 477 606 541 605 478 608 542 609 436 610 437 610 543 609 479 608 480 611 544 612 438 613 439 613 545 612 481 611 546 614 440 615 482 616 483 616 441 615 547 614 548 617 484 618 442 619 443 619 485 618 549 617 550 620 486 621 444 622 445 622 487 621 551 620 446 623 552 624 488 625 489 625 553 624 447 623 450 626 490 627 554 628 555 628 491 627 455 626 556 629 557 630 558 631 559 631 560 630 561 629 456 632 562 633 492 634 493 634 563 633 457 632 564 635 565 636 566 637 567 637 568 636 569 635 494 638 496 639 570 640 571 640 497 639 499 638 572 641 557 642 556 643 561 643 560 642 573 641 500 644 458 645 574 646 575 646 459 645 501 644 576 647 458 648 503 649 504 649 459 648 577 647 503 650 502 651 578 652 579 652 505 651 504 650 580 653 460 654 506 655 507 655 461 654 581 653 508 656 462 657 582 658 583 658 463 657 509 656 584 659 510 660 512 661 513 661 515 660 585 659 586 662 511 663 510 664 515 664 514 663 587 662 588 665 589 666 590 667 591 667 592 666 593 665 594 668 519 669 518 670 523 670 522 669 595 668 527 671 540 672 324 673 327 673 541 672 528 671 596 674 527 675 526 676 529 676 528 675 597 674 472 677 530 678 598 679 599 679 531 678 473 677 600 680 532 681 538 682 539 682 537 681 601 680 602 683 603 684 604 685 605 685 606 684 607 683 608 686 542 687 478 688 479 688 543 687 609 686 480 689 610 690 544 691 545 691 611 690 481 689 612 692 546 693 482 694 483 694 547 693 613 692 614 695 484 696 548 697 549 697 485 696 615 695 550 698 616 699 486 700 487 700 617 699 551 698 488 701 552 702 618 703 619 703 553 702 489 701 450 704 554 705 620 706 621 706 555 705 455 704 558 707 622 708 623 709 624 709 625 708 559 707 558 710 557 711 622 712 625 712 560 711 559 710 562 713 626 714 492 715 493 715 627 714 563 713 494 716 570 717 628 718 629 718 571 717 499 716 630 719 631 720 632 721 633 721 634 720 635 719 636 722 630 723 637 724 638 724 635 723 639 722 572 725 640 726 557 727 560 727 641 726 573 725 640 728 572 729 642 730 643 730 573 729 641 728 574 731 458 732 576 733 577 733 459 732 575 731 644 734 645 735 646 736 647 736 648 735 649 734 645 737 650 738 651 739 652 739 653 738 648 737 578 740 502 741 654 742 655 742 505 741 579 740 656 743 580 744 506 745 507 745 581 744 657 743 658 746 508 747 582 748 583 748 509 747 659 746 586 749 660 750 511 751 514 751 661 750 587 749 590 752 662 753 663 754 664 754 665 753 591 752 663 755 666 756 667 757 668 757 669 756 664 755 590 758 589 759 662 760 665 760 592 759 591 758 604 761 670 762 671 763 672 763 673 762 605 761 670 764 674 765 675 766 676 766 677 765 673 764 678 767 596 768 526 769 529 769 597 768 679 767 598 770 530 771 680 772 681 772 531 771 599 770 671 773 602 774 604 775 605 775 607 774 672 773 608 776 682 777 542 778 543 778 683 777 609 776 610 779 684 780 544 781 545 781 685 780 611 779 686 782 546 783 612 784 613 784 547 783 687 782 688 785 614 786 548 787 549 787 615 786 689 785 550 788 690 789 616 790 617 790 691 789 551 788 552 791 692 792 618 793 619 793 693 792 553 791 631 794 694 795 695 796 696 796 697 795 634 794 623 797 622 798 698 799 699 799 625 798 624 797 562 800 700 801 626 802 627 802 701 801 563 800 628 803 570 804 702 805 703 805 571 804 629 803 632 806 631 807 695 808 696 808 634 807 633 806 637 809 630 810 632 811 633 811 635 810 638 809 704 812 636 813 637 814 638 814 639 813 705 812 706 815 707 816 708 817 709 817 710 816 711 815 640 818 642 819 712 820 713 820 643 819 641 818 714 821 715 822 716 823 717 823 718 822 719 821 715 824 720 825 716 826 717 826 721 825 718 824 645 827 651 828 646 829 647 829 652 828 648 827 650 830 722 831 651 832 652 832 723 831 653 830 578 833 654 834 724 835 725 835 655 834 579 833 726 836 580 837 656 838 657 838 581 837 727 836 658 839 582 840 728 841 729 841 583 840 659 839 730 842 660 843 586 844 587 844 661 843 731 842 663 845 662 846 666 847 669 847 665 846 664 845 667 848 666 849 732 850 733 850 669 849 668 848 670 851 675 852 671 853 672 853 676 852 673 851 674 854 734 855 675 856 676 856 735 855 677 854 736 857 596 858 678 859 679 859 597 858 737 857 598 860 680 861 738 862 739 862 681 861 599 860 608 863 740 864 682 865 683 865 741 864 609 863 742 866 684 867 610 868 611 868 685 867 743 866 684 869 744 870 544 871 545 871 745 870 685 869 746 872 686 873 612 874 613 874 687 873 747 872 748 875 614 876 688 877 689 877 615 876 749 875 690 878 750 879 616 880 617 880 751 879 691 878 618 881 692 882 742 883 743 883 693 882 619 881 552 884 752 885 692 886 693 886 753 885 553 884 700 887 754 888 626 889 627 889 755 888 701 887 628 890 702 891 756 892 757 892 703 891 629 890 758 893 636 894 704 895 705 895 639 894 759 893 650 896 760 897 722 898 723 898 761 897 653 896 724 899 654 900 762 901 763 901 655 900 725 899 764 902 726 903 656 904 657 904 727 903 765 902 766 905 658 906 728 907 729 907 659 906 767 905 730 908 768 909 660 910 661 910 769 909 731 908 667 911 732 912 770 913 771 913 733 912 668 911 674 914 772 915 734 916 735 916 773 915 677 914 774 917 736 918 678 919 679 919 737 918 775 917 738 920 680 921 776 922 777 922 681 921 739 920 740 923 778 924 682 925 683 925 779 924 741 923 742 926 780 927 684 928 685 928 781 927 743 926 782 929 783 930 784 931 785 931 786 930 787 929 788 932 789 933 790 934 791 934 792 933 793 932 794 935 748 936 688 937 689 937 749 936 795 935 796 938 782 939 797 940 798 940 787 939 799 938 692 941 780 942 742 943 743 943 781 942 693 941 800 944 801 945 802 946 803 946 804 945 805 944 700 947 806 948 754 949 755 949 807 948 701 947 756 950 702 951 808 952 809 952 703 951 757 950 810 953 758 954 704 955 705 955 759 954 811 953 760 956 812 957 722 958 723 958 813 957 761 956 724 959 762 960 814 961 815 961 763 960 725 959 816 962 726 963 764 964 765 964 727 963 817 962 766 965 728 966 818 967 819 967 729 966 767 965 820 968 768 969 730 970 731 970 769 969 821 968 770 971 732 972 822 973 823 973 733 972 771 971 772 974 824 975 734 976 735 976 825 975 773 974 826 977 736 978 774 979 775 979 737 978 827 977 738 980 776 981 828 982 829 982 777 981 739 980 789 983 830 984 831 985 832 985 833 984 792 983 782 986 784 987 834 988 835 988 785 987 787 986 789 989 831 990 790 991 791 991 832 990 792 989 797 992 782 993 834 994 835 994 787 993 798 992 830 995 800 996 836 997 837 997 805 996 833 995 800 998 802 999 836 1000 837 1000 803 999 805 998 806 1001 838 1002 754 1003 755 1003 839 1002 807 1001 756 1004 808 1005 840 1006 841 1006 809 1005 757 1004 842 1007 758 1008 810 1009 811 1009 759 1008 843 1007 760 1010 844 1011 812 1012 813 1012 845 1011 761 1010 814 1013 762 1014 846 1015 847 1015 763 1014 815 1013 848 1016 816 1017 764 1018 765 1018 817 1017 849 1016 850 1019 766 1020 818 1021 819 1021 767 1020 851 1019 852 1022 768 1023 820 1024 821 1024 769 1023 853 1022 770 1025 822 1026 854 1027 855 1027 823 1026 771 1025 772 1028 856 1029 824 1030 825 1030 857 1029 773 1028 858 1031 826 1032 774 1033 775 1033 827 1032 859 1031 828 1034 776 1035 860 1036 861 1036 777 1035 829 1034 830 1037 862 1038 831 1039 832 1039 863 1038 833 1037 862 1040 830 1041 836 1042 837 1042 833 1041 863 1040 806 1043 864 1044 838 1045 839 1045 865 1044 807 1043 808 1046 866 1047 840 1048 841 1048 867 1047 809 1046 868 1049 842 1050 810 1051 811 1051 843 1050 869 1049 844 1052 870 1053 812 1054 813 1054 871 1053 845 1052 872 1055 814 1056 846 1057 847 1057 815 1056 873 1055 874 1058 816 1059 848 1060 849 1060 817 1059 875 1058 850 1061 818 1062 876 1063 877 1063 819 1062 851 1061 852 1064 820 1065 878 1066 879 1066 821 1065 853 1064 822 1067 880 1068 854 1069 855 1069 881 1068 823 1067 856 1070 882 1071 824 1072 825 1072 883 1071 857 1070 884 1073 826 1074 858 1075 859 1075 827 1074 885 1073 828 1076 860 1077 886 1078 887 1078 861 1077 829 1076 864 1079 888 1080 838 1081 839 1081 889 1080 865 1079 890 1082 840 1083 891 1084 892 1084 841 1083 893 1082 840 1085 866 1086 891 1087 892 1087 867 1086 841 1085 868 1088 894 1089 842 1090 843 1090 895 1089 869 1088 870 1091 844 1092 896 1093 897 1093 845 1092 871 1091 872 1094 846 1095 898 1096 899 1096 847 1095 873 1094 846 1097 900 1098 898 1099 899 1099 901 1098 847 1097 902 1100 874 1101 848 1102 849 1102 875 1101 903 1100 850 1103 876 1104 904 1105 905 1105 877 1104 851 1103 906 1106 852 1107 907 1108 908 1108 853 1107 909 1106 907 1109 852 1110 878 1111 879 1111 853 1110 908 1109 854 1112 880 1113 910 1114 911 1114 881 1113 855 1112 856 1115 912 1116 882 1117 883 1117 913 1116 857 1115 914 1118 884 1119 858 1120 859 1120 885 1119 915 1118 916 1121 914 1122 858 1123 859 1123 915 1122 917 1121 886 1124 860 1125 918 1126 919 1126 861 1125 887 1124 920 1127 921 1128 922 1129 923 1129 924 1128 925 1127 866 1130 926 1131 891 1132 892 1132 927 1131 867 1130 928 1133 894 1134 868 1135 869 1135 895 1134 929 1133 870 1136 896 1137 930 1138 931 1138 897 1137 871 1136 926 1139 872 1140 898 1141 899 1141 873 1140 927 1139 932 1142 933 1143 934 1144 935 1144 936 1143 937 1142 938 1145 939 1146 940 1147 941 1147 942 1146 943 1145 907 1148 878 1149 944 1150 945 1150 879 1149 908 1148 880 1151 946 1152 910 1153 911 1153 947 1152 881 1151 912 1154 948 1155 882 1156 883 1156 949 1155 913 1154 914 1157 944 1158 884 1159 885 1159 945 1158 915 1157 950 1160 951 1161 952 1162 953 1162 954 1161 955 1160 921 1163 956 1164 922 1165 923 1165 957 1164 924 1163 926 1166 958 1167 891 1168 892 1168 959 1167 927 1166 960 1169 961 1170 962 1171 963 1171 964 1170 965 1169 966 1172 967 1173 961 1174 964 1174 968 1173 969 1172 926 1175 898 1176 958 1177 959 1177 899 1176 927 1175 933 1178 970 1179 934 1180 935 1180 971 1179 936 1178 940 1181 939 1182 972 1183 973 1183 942 1182 941 1181 974 1184 907 1185 944 1186 945 1186 908 1185 975 1184 976 1187 977 1188 978 1189 979 1189 980 1188 981 1187 982 1190 976 1191 983 1192 984 1192 981 1191 985 1190 974 1193 944 1194 914 1195 915 1195 945 1194 975 1193 986 1196 950 1197 952 1198 953 1198 955 1197 987 1196 921 1199 988 1200 956 1201 957 1201 989 1200 924 1199 990 1202 961 1203 960 1204 965 1204 964 1203 991 1202 966 1205 961 1206 990 1207 991 1207 964 1206 969 1205 934 1208 970 1209 988 1210 989 1210 971 1209 935 1208 939 1211 992 1212 972 1213 973 1213 993 1212 942 1211 976 1214 978 1215 994 1216 995 1216 979 1215 981 1214 983 1217 976 1218 994 1219 995 1219 981 1218 984 1217 992 1220 950 1221 986 1222 987 1222 955 1221 993 1220 988 1223 996 1224 956 1225 957 1225 997 1224 989 1223 970 1226 996 1227 988 1228 989 1228 997 1227 971 1226 992 1229 998 1230 972 1231 973 1231 999 1230 993 1229 998 1232 992 1233 986 1234 987 1234 993 1233 999 1232</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID800\">\r\n            <mesh>\r\n                <source id=\"ID801\">\r\n                    <float_array count=\"864\" id=\"ID805\">-0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035627 -0.3378135984617037 -1.272300980758927</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"288\" source=\"#ID805\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID802\">\r\n                    <float_array count=\"864\" id=\"ID806\">-0.9999410267352775 -0.00282230173442009 -0.01048702362534358 -0.9999410261811262 -1.189599814927649e-005 -0.01086020341990315 -0.9999410269663441 -0.002736872445651152 -0.01050962029330042 -0.9999410263908806 7.648229374381802e-005 -0.01085992130776995 0.9999410261811262 1.189599814927649e-005 0.01086020341990315 0.9999410269663441 0.002736872445651152 0.01050962029330042 0.9999410263908806 -7.648229374381802e-005 0.01085992130776995 0.9999410267352775 0.00282230173442009 0.01048702362534358 -0.9999410251909873 0.002884647210172477 -0.01047019343041532 -0.9999410250023675 0.002799366906628021 -0.01049333417637169 0.9999410251909873 -0.002884647210172477 0.01047019343041532 0.9999410250023675 -0.002799366906628021 0.01049333417637169 9.286956521860817e-019 -0.2567189364859696 -0.9664861031848894 9.286956521859729e-019 -0.2567189364859594 -0.9664861031848921 -5.715048115234753e-019 0.002173823798311303 -0.9999976372422557 -5.715048115234815e-019 0.002173823798316985 -0.9999976372422557 -9.286956521859729e-019 0.2567189364859594 0.9664861031848921 5.715048115234753e-019 -0.002173823798311303 0.9999976372422557 5.715048115234815e-019 -0.002173823798316985 0.9999976372422557 -9.286956521860817e-019 0.2567189364859696 0.9664861031848894 -0.999941027016906 -0.005440356935925922 -0.009399202348336674 -0.999941027241365 -0.005363709391798363 -0.009443127715125572 0.999941027241365 0.005363709391798363 0.009443127715125572 0.999941027016906 0.005440356935925922 0.009399202348336674 0.0038266651399871 -0.2544110204982774 -0.9670886150105025 0.003828242018622541 0.004557013776478851 -0.999982288937403 0.004942785664726246 -0.2568034608485688 -0.9664510082596376 -0.004942785664726246 0.2568034608485688 0.9664510082596376 -0.003828242018622541 -0.004557013776478851 0.999982288937403 -0.0038266651399871 0.2544110204982774 0.9670886150105025 -0.9999410238180577 0.005496359094067572 -0.009366905700582823 -0.9999410236206152 0.005419907617564657 -0.009411369824492982 0.9999410238180577 -0.005496359094067572 0.009366905700582823 0.9999410236206152 -0.005419907617564657 0.009411369824492982 1.643076813689116e-018 0.2609179530237881 -0.9653609800431529 1.643076813688965e-018 0.26091795302378 -0.9653609800431552 -1.643076813688965e-018 -0.26091795302378 0.9653609800431552 -1.643076813689116e-018 -0.2609179530237881 0.9653609800431529 0.003826725799420876 0.2632158559531372 -0.9647293762213907 0.004944863497418337 0.002079709308106825 -0.9999856114635779 -0.004944863497418337 -0.002079709308106825 0.9999856114635779 -0.003826725799420876 -0.2632158559531372 0.9647293762213907 5.715048112519107e-019 -0.4981166872421416 -0.8671100079522289 5.715048112518241e-019 -0.4981166872421474 -0.8671100079522257 -5.715048112518241e-019 0.4981166872421474 0.8671100079522257 -5.715048112519107e-019 0.4981166872421416 0.8671100079522289 -0.999941027776978 -0.007687610089140697 -0.007670829123266627 -0.9999410279774628 -0.007624925862152798 -0.007733115347123785 0.9999410279774628 0.007624925862152798 0.007733115347123785 0.999941027776978 0.007687610089140697 0.007670829123266627 0.003830007769246236 -0.4960444625889477 -0.8682886744483829 0.004945237506788235 -0.498190537464372 -0.8670534775934884 -0.004945237506788235 0.498190537464372 0.8670534775934884 -0.003830007769246236 0.4960444625889477 0.8682886744483829 -0.9999410231812367 0.007733425532157156 -0.007625240245423564 -0.9999410229394634 0.007671116821697991 -0.00768795222977871 0.9999410231812367 -0.007733425532157156 0.007625240245423564 0.9999410229394634 -0.007671116821697991 0.00768795222977871 3.714782186172491e-018 0.5018825991966421 -0.8649357528878214 3.714782186172493e-018 0.5018825991966418 -0.8649357528878217 -3.714782186172493e-018 -0.5018825991966418 0.8649357528878217 -3.714782186172491e-018 -0.5018825991966421 0.8649357528878214 0.003821063636068529 0.5039417767426235 -0.8637291734833188 0.004941675560377144 0.2608252386265301 -0.9653733861765972 -0.004941675560377144 -0.2608252386265301 0.9653733861765972 -0.003821063636068529 -0.5039417767426235 0.8637291734833188 -1.143009550785445e-018 -0.7055662686997598 -0.7086439447798156 -1.143009550785445e-018 -0.7055662686997609 -0.7086439447798146 1.143009550785445e-018 0.7055662686997609 0.7086439447798146 1.143009550785445e-018 0.7055662686997598 0.7086439447798156 -0.9999410270511003 -0.009411083689174002 -0.005419771562170325 -0.9999410273711995 -0.009366649538182812 -0.005496149220936206 0.9999410273711995 0.009366649538182812 0.005496149220936206 0.9999410270511003 0.009411083689174002 0.005419771562170325 0.003831559424319163 -0.7038698595571158 -0.7103186186208439 0.004947190279231937 -0.705623059879875 -0.7085701254456779 -0.004947190279231937 0.705623059879875 0.7085701254456779 -0.003831559424319163 0.7038698595571158 0.7103186186208439 -0.9999410254789244 0.009443272316692088 -0.005363783376497059 -0.9999410251117098 0.009399334675645549 -0.00544047848980481 0.9999410254789244 -0.009443272316692088 0.005363783376497059 0.9999410251117098 -0.009399334675645549 0.00544047848980481 4.00053320143097e-018 0.7086421448071717 -0.7055680765192622 4.000533201430981e-018 0.7086421448071734 -0.7055680765192605 -4.000533201430981e-018 -0.7086421448071734 0.7055680765192605 -4.00053320143097e-018 -0.7086421448071717 0.7055680765192622 0.003824929807736708 0.7103168903995655 -0.7038716396652572 0.004938464558228079 0.5017959577429818 -0.8649719234522071 -0.004938464558228079 -0.5017959577429818 0.8649719234522071 -0.003824929807736708 -0.7103168903995655 0.7038716396652572 -4.572041747584274e-018 -0.864936467361332 -0.5018813678833869 -4.572041747584255e-018 -0.8649364673613317 -0.5018813678833874 4.572041747584274e-018 0.864936467361332 0.5018813678833869 4.572041747584255e-018 0.8649364673613317 0.5018813678833874 -0.9999410251383567 -0.01049332216834374 -0.002799363342558378 -0.9999410254124463 -0.01047018167537675 -0.00288461310922097 0.9999410254124463 0.01047018167537675 0.00288461310922097 0.9999410251383567 0.01049332216834374 0.002799363342558378 0.004949545639221747 -0.8649707823906792 -0.5017978154679645 0.003832821996489258 -0.8637292188850311 -0.5039416096332962 -0.003832821996489258 0.8637292188850311 0.5039416096332962 -0.004949545639221747 0.8649707823906792 0.5017978154679645 -0.9999410277040745 0.01050954553455601 -0.0027368899825801 -0.9999410274483728 0.01048696668360297 -0.002822260666456722 0.9999410277040745 -0.01050954553455601 0.0027368899825801 0.9999410274483728 -0.01048696668360297 0.002822260666456722 5.715048312027202e-019 0.8671086552386754 -0.4981190420072052 5.715048312025381e-019 0.8671086552386785 -0.4981190420071999 -5.715048312027202e-019 -0.8671086552386754 0.4981190420072052 -5.715048312025381e-019 -0.8671086552386785 0.4981190420071999 0.003820269720511365 0.8682920451375475 -0.4960386374972395 0.0049414496731202 0.7085678671176957 -0.7056253678570574 -0.0049414496731202 -0.7085678671176957 0.7056253678570574 -0.003820269720511365 -0.8682920451375475 0.4960386374972395 -7.429561417819622e-018 -0.9653613948153605 -0.2609164184181239 -7.429561417819627e-018 -0.9653613948153605 -0.2609164184181246 7.429561417819622e-018 0.9653613948153605 0.2609164184181239 7.429561417819627e-018 0.9653613948153605 0.2609164184181246 -0.9999410236950654 -0.0108604323189624 1.189578101152491e-005 -0.9999410239817562 -0.01086014318859406 -7.647378754804853e-005 0.9999410239817562 0.01086014318859406 7.647378754804853e-005 0.9999410236950654 0.0108604323189624 -1.189578101152491e-005 0.004947196804022776 -0.9653740421109739 -0.2608227061858341 0.003828924557667887 -0.9647294463450653 -0.2632155669626615 -0.003828924557667887 0.9647294463450653 0.2632155669626615 -0.004947196804022776 0.9653740421109739 0.2608227061858341 -0.9999410275599662 0.01085981393770593 7.644316398962921e-005 -0.9999410273536835 0.01086009544374367 -1.190852621266681e-005 0.9999410275599662 -0.01085981393770593 -7.644316398962921e-005 0.9999410273536835 -0.01086009544374367 1.190852621266681e-005 2.286020727136626e-018 0.9664860372523969 -0.2567191847060875 2.28602072713672e-018 0.9664860372523976 -0.2567191847060854 -2.286020727136626e-018 -0.9664860372523969 0.2567191847060875 -2.28602072713672e-018 -0.9664860372523976 0.2567191847060854 0.003827393334498319 0.9670875751500726 -0.2544149623167159 0.004937611921748164 0.8670557886269709 -0.4981865909445694 -0.004937611921748164 -0.8670557886269709 0.4981865909445694 -0.003827393334498319 -0.9670875751500726 0.2544149623167159 -5.143545129757725e-018 -0.9999976392143629 -0.002172916404493806 -5.14354512975772e-018 -0.9999976392143629 -0.002172916404493386 5.143545129757725e-018 0.9999976392143629 0.002172916404493806 5.14354512975772e-018 0.9999976392143629 0.002172916404493386 -0.999941022673983 -0.01048738397334414 0.002822401655441478 -0.999941022932187 -0.01050997881948693 0.002736969591659315 0.999941022673983 0.01048738397334414 -0.002822401655441478 0.999941022932187 0.01050997881948693 -0.002736969591659315 0.00494289717588586 -0.9999856224609727 -0.002079095680684648 0.003823753939118948 -0.9999822999605859 -0.004558362792749011 -0.003823753939118948 0.9999822999605859 0.004558362792749011 -0.00494289717588586 0.9999856224609727 0.002079095680684648 -0.9999410263259161 0.01047008550038063 0.002884645539441912 -0.9999410261363435 0.01049322892617458 0.002799356372282648 0.9999410261363435 -0.01049322892617458 -0.002799356372282648 0.9999410263259161 -0.01047008550038063 -0.002884645539441912 8.00106323387303e-018 0.9999976415480206 0.002171842166549161 8.001063233873028e-018 0.9999976415480205 0.002171842166550713 -8.00106323387303e-018 -0.9999976415480206 -0.002171842166549161 -8.001063233873028e-018 -0.9999976415480205 -0.002171842166550713 0.003820960518357111 0.9999823146921165 0.004557473391502327 0.004943655417316188 0.9664498920219311 -0.2568076449055063 -0.004943655417316188 -0.9664498920219311 0.2568076449055063 -0.003820960518357111 -0.9999823146921165 -0.004557473391502327 -6.858057229063156e-018 -0.966486022918216 0.2567192386708286 -6.858057229063177e-018 -0.9664860229182158 0.2567192386708294 6.858057229063156e-018 0.966486022918216 -0.2567192386708286 6.858057229063177e-018 0.9664860229182158 -0.2567192386708294 -0.9999410247043286 -0.009399388050470537 0.005440461150824826 -0.9999410247948612 -0.009443327762755185 0.005363813286095222 0.9999410247043286 0.009399388050470537 -0.005440461150824826 0.9999410247948612 0.009443327762755185 -0.005363813286095222 0.004936272458468085 -0.9664516804695458 0.2568010563292271 0.003820755532216115 -0.9670893318392673 0.2544083844330651 -0.003820755532216115 0.9670893318392673 -0.2544083844330651 -0.004936272458468085 0.9664516804695458 -0.2568010563292271 -0.9999410256117496 0.009366813524850533 0.005496189854195041 -0.9999410253685213 0.009411196694760312 0.005419885766598052 0.9999410253685213 -0.009411196694760312 -0.005419885766598052 0.9999410256117496 -0.009366813524850533 -0.005496189854195041 3.429033357918545e-018 0.965360504839634 0.2609197112058935 3.429033357918479e-018 0.9653605048396337 0.2609197112058954 -3.429033357918545e-018 -0.965360504839634 -0.2609197112058935 -3.429033357918479e-018 -0.9653605048396337 -0.2609197112058954 0.003817824858266475 0.9647289711546364 0.263217469838665 0.004934312890925137 0.9999856557972721 0.002083448102078534 -0.004934312890925137 -0.9999856557972721 -0.002083448102078534 -0.003817824858266475 -0.9647289711546364 -0.263217469838665 -9.144078984033087e-018 -0.867110662481631 0.4981155478507642 -9.144078984033078e-018 -0.8671106624816305 0.4981155478507653 9.144078984033087e-018 0.867110662481631 -0.4981155478507642 9.144078984033078e-018 0.8671106624816305 -0.4981155478507653 -0.9999410258568779 -0.007670953598774204 0.007687735634113518 -0.9999410261583621 -0.007733206562220277 0.007625071909699455 0.9999410258568779 0.007670953598774204 -0.007687735634113518 0.9999410261583621 0.007733206562220277 -0.007625071909699455 0.004943216518040933 -0.8670551900821601 0.4981875770852226 0.003833002046245444 -0.8682878081597345 0.4960459558311885 -0.003833002046245444 0.8682878081597345 -0.4960459558311885 -0.004943216518040933 0.8670551900821601 -0.4981875770852226 -0.9999410272625215 0.00762500257451162 0.007733132154028003 -0.9999410269360286 0.00768770199564354 0.007670846638225618 0.9999410269360286 -0.00768770199564354 -0.007670846638225618 0.9999410272625215 -0.00762500257451162 -0.007733132154028003 1.854995159308181e-033 0.8649358526966459 0.501882427187809 0 0.8649358526966459 0.5018824271878087 -1.854995159308181e-033 -0.8649358526966459 -0.501882427187809 -0 -0.8649358526966459 -0.5018824271878087 0.003824655911536794 0.8637325256144357 0.5039360040747896 0.00493577675738415 0.965373481876459 0.2608249961133392 -0.00493577675738415 -0.965373481876459 -0.2608249961133392 -0.003824655911536794 -0.8637325256144357 -0.5039360040747896 -4.000534401751088e-018 -0.7086423925289491 0.7055678277181058 -4.000534401751267e-018 -0.7086423925289535 0.7055678277181015 4.000534401751088e-018 0.7086423925289491 -0.7055678277181058 4.000534401751267e-018 0.7086423925289535 -0.7055678277181015 -0.9999410250620634 -0.005419835344405121 0.009411258293619431 -0.9999410252935886 -0.005496284586928853 0.009366791902600188 0.9999410250620634 0.005419835344405121 -0.009411258293619431 0.9999410252935886 0.005496284586928853 -0.009366791902600188 0.004956122332517188 -0.7085675751092042 0.7056255581789024 0.003839165997742563 -0.7103157740092257 0.7038726887712835 -0.003839165997742563 0.7103157740092257 -0.7038726887712835 -0.004956122332517188 0.7085675751092042 -0.7056255581789024 -0.9999410286150683 0.005363601809037949 0.00944304335864537 -0.9999410283762649 0.005440312684114939 0.009399083344507243 0.9999410283762649 -0.005440312684114939 -0.009399083344507243 0.9999410286150683 -0.005363601809037949 -0.00944304335864537 1.143010565603663e-018 0.7055700372479684 0.708640192578646 1.143010565603663e-018 0.7055700372479702 0.7086401925786443 -1.143010565603663e-018 -0.7055700372479684 -0.708640192578646 -1.143010565603663e-018 -0.7055700372479702 -0.7086401925786443 0.003828663124196161 0.7038699749626737 0.7103185198801497 0.004943198463052079 0.8649741663126888 0.5017920449754302 -0.004943198463052079 -0.8649741663126888 -0.5017920449754302 -0.003828663124196161 -0.7038699749626737 -0.7103185198801497 1.143009736610772e-018 -0.5018818905357437 0.8649361640908929 1.143009736610791e-018 -0.5018818905357418 0.864936164090894 -1.143009736610791e-018 0.5018818905357418 -0.864936164090894 -1.143009736610772e-018 0.5018818905357437 -0.8649361640908929 -0.9999410255099235 -0.002799393181743322 0.01049327880009495 -0.9999410257213326 -0.002884592461343174 0.01047015786420724 0.9999410255099235 0.002799393181743322 -0.01049327880009495 0.9999410257213326 0.002884592461343174 -0.01047015786420724 0.003824873531433713 -0.5039411440157595 0.863729525783712 0.004945242852861994 -0.5017941450757408 0.8649729363054273 -0.004945242852861994 0.5017941450757408 -0.8649729363054273 -0.003824873531433713 0.5039411440157595 -0.863729525783712 -0.9999410276338193 0.002736849005709989 0.0105095628901078 -0.9999410274584727 0.002822277484269053 0.01048696119453971 0.9999410274584727 -0.002822277484269053 -0.01048696119453971 0.9999410276338193 -0.002736849005709989 -0.0105095628901078 3.143276138552654e-018 0.4981161284324221 0.8671103289636764 3.143276138552537e-018 0.4981161284324288 0.8671103289636725 -3.143276138552537e-018 -0.4981161284324288 -0.8671103289636725 -3.143276138552654e-018 -0.4981161284324221 -0.8671103289636764 0.003832358652013756 0.4960426150147506 0.8682897195731909 0.004946838745694068 0.705624759428811 0.7085684354157024 -0.004946838745694068 -0.705624759428811 -0.7085684354157024 -0.003832358652013756 -0.4960426150147506 -0.8682897195731909 1.357324303737726e-018 -0.2609183436732318 0.9653608744582605 1.357324303737725e-018 -0.2609183436732317 0.9653608744582606 -1.357324303737726e-018 0.2609183436732318 -0.9653608744582605 -1.357324303737725e-018 0.2609183436732317 -0.9653608744582606 -0.999941026412113 -7.640534256199236e-005 0.01085991989442496 -0.999941026192585 1.181962340437762e-005 0.01086020244821933 0.999941026412113 7.640534256199236e-005 -0.01085991989442496 0.999941026192585 -1.181962340437762e-005 -0.01086020244821933 0.003825647232711771 -0.2632147699247492 0.9647296768093704 0.004940850776478425 -0.2608260194767013 0.9653731794272844 -0.004940850776478425 0.2608260194767013 -0.9653731794272844 -0.003825647232711771 0.2632147699247492 -0.9647296768093704 3.143278067595227e-018 0.2567179580818204 0.9664863630689782 3.143278067595215e-018 0.2567179580818195 0.9664863630689783 -3.143278067595227e-018 -0.2567179580818204 -0.9664863630689782 -3.143278067595215e-018 -0.2567179580818195 -0.9664863630689783 0.003832480658714482 0.2544130730309406 0.9670880520216109 0.004950182655957406 0.4981916449537949 0.8670528130338454 -0.004950182655957406 -0.4981916449537949 -0.8670528130338454 -0.003832480658714482 -0.2544130730309406 -0.9670880520216109 7.858190309334453e-019 -0.002175164586431004 0.9999976343267127 7.858190309334296e-019 -0.002175164586436765 0.9999976343267127 -7.858190309334453e-019 0.002175164586431004 -0.9999976343267127 -7.858190309334296e-019 0.002175164586436765 -0.9999976343267127 0.00382758993817654 -0.004556349394965424 0.999982294460985 0.004940921873113072 -0.002084718490196847 0.9999856205165454 -0.004940921873113072 0.002084718490196847 -0.9999856205165454 -0.00382758993817654 0.004556349394965424 -0.999982294460985 0.004946892765949841 0.2568047730411928 0.9664506385714813 -0.004946892765949841 -0.2568047730411928 -0.9664506385714813</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"288\" source=\"#ID806\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID804\">\r\n                    <float_array count=\"1344\" id=\"ID807\">-7.080247872229587 21.0145052715412 0.04500165965700093 21.74008679032289 -6.710953503131737 20.09757480725083 0.1000627746095763 20.77921931956998 0.02250082982850047 10.87004339516144 -3.355476751565869 10.04878740362542 0.05003138730478817 10.38960965978499 -3.540123936114794 10.5072526357706 0.1303669829364637 20.77914246233489 0.07534380260125198 21.74001127780054 6.933554213792702 20.05073484708986 7.196528629951274 20.99006307575776 0.03767190130062599 10.87000563890027 3.466777106896351 10.02536742354493 3.598264314975637 10.49503153787888 0.06518349146823182 10.38957123116744 -10.61044593144635 -2.826023622170461 -12.86224447874705 -2.82602362217035 -10.61044593144633 2.825940115185436 -12.86224447874711 2.825940115185495 -6.431122239373526 -1.413011811085175 -5.305222965723164 1.412970057592718 -6.431122239373552 1.412970057592747 -5.305222965723173 -1.41301181108523 -13.75322553755872 18.85673535189866 -7.109527114000408 21.00841184581578 -13.09484172604693 18.04624503956301 -6.740198911846502 20.0914898144459 -3.554763557000204 10.50420592290789 -6.547420863023467 9.023122519781506 -3.370099455923251 10.04574490722295 -6.876612768779358 9.42836767594933 -10.42638530473695 -2.905002536116535 -10.59673960971082 2.494519512677447 -4.327947130481451 -2.831682395143322 -2.163973565240725 -1.415841197571661 -5.298369804855411 1.247259756338724 -5.213192652368477 -1.452501268058267 6.962746893829194 20.04450223255975 7.225755851347815 20.9838244764124 13.29449402849827 17.95567810305388 13.85751213473528 18.80944566772061 3.612877925673907 10.4919122382062 6.647247014249137 8.977839051526939 6.928756067367642 9.404722833860303 3.481373446914597 10.02225111627987 10.61044593144633 -2.825992595741062 10.61044593144633 2.825981580630943 12.86224447874709 -2.825992595740977 12.86224447874711 2.825981580630883 5.305222965723164 1.412990790315471 6.431122239373543 -1.412996297870488 6.431122239373552 1.412990790315442 5.305222965723164 -1.412996297870531 10.59158413280459 2.507848288547653 10.43221711685011 -2.891879332533704 4.495704241856068 2.664961531154151 2.247852120928034 1.332480765577075 5.216108558425053 -1.445939666266852 5.295792066402295 1.253924144273827 -10.6104459314464 -2.825947916893278 -12.86224447874696 -2.825947916893363 -10.61044593144635 2.826018007123239 -12.86224447874705 2.826018007123342 -6.431122239373481 -1.412973958446681 -5.305222965723173 1.413009003561619 -6.431122239373526 1.413009003561671 -5.3052229657232 -1.412973958446639 -19.48876166620547 15.41386975725847 -13.77936642589772 18.84494910367416 -18.58612139372733 14.76504876496961 -13.1209585274604 18.03447090017816 -6.889683212948862 9.42247455183708 -9.293060696863666 7.382524382484806 -6.560479263730202 9.01723545008908 -9.744380833102735 7.706934878629236 -10.48787858864871 -2.764407581528367 -10.54092074314131 2.636624072452559 -4.388737822148864 -2.773106452524509 -2.194368911074432 -1.386553226262254 -5.270460371570657 1.31831203622628 -5.243939294324353 -1.382203790764184 -10.59227251636439 2.389322457437515 -4.496732087605833 2.554385096985135 -4.202713000993107 -2.847316927641705 -2.101356500496554 -1.423658463820853 -2.248366043802917 1.277192548492567 -5.296136258182196 1.194661228718757 -4.30720657991396 -2.74923276937071 -10.49869520647 2.632675389960963 -4.39962318408665 2.65699263316773 -2.199811592043325 1.328496316583865 -5.249347603234998 1.316337694980481 -2.15360328995698 -1.374616384685355 13.32051131828215 17.94377319846329 13.88355461244131 18.79753048361999 18.74912252010727 14.63692954201792 19.57388520321002 15.34696485517103 6.941777306220654 9.398765241809993 9.374561260053634 7.318464771008959 9.786942601605007 7.673482427585516 6.660255659141074 8.971886599231643 10.61044593144633 -2.825950054937781 10.61044593144633 2.826024849709162 12.86224447874698 -2.825950054937781 12.86224447874709 2.826024849709241 5.305222965723164 1.413012424854581 6.43112223937349 -1.41297502746889 6.431122239373543 1.41301242485462 5.305222965723164 -1.41297502746889 10.54035182778038 2.638199660780892 10.48866032343423 -2.762877897270078 4.442089363119534 2.720080828020509 2.221044681559767 1.360040414010254 5.244330161717117 -1.381438948635039 5.270175913890189 1.319099830390446 4.491944073349894 2.559656761580416 10.29981134249543 -3.080686268385806 4.208186488432563 -2.842408495161039 2.104093244216282 -1.421204247580519 5.149905671247714 -1.540343134192903 2.245972036674947 1.279828380790208 -10.61044593144626 -2.826007686664317 -12.86224447874695 -2.82600768666433 -10.6104459314464 2.825974081103952 -12.86224447874696 2.825974081103872 -6.431122239373472 -1.413003843332165 -5.3052229657232 1.412987040551976 -6.431122239373481 1.412987040551936 -5.305222965723129 -1.413003843332158 -23.89600667514926 10.92066306974483 -19.50998122430807 15.39728158332552 -22.81065927108942 10.47772735264272 -18.60732806298233 14.74847168761938 -9.754990612154034 7.698640791662758 -11.40532963554471 5.238863676321358 -9.303664031491167 7.374235843809688 -11.94800333757463 5.460331534872416 -10.50030773036436 -2.734916554904787 -10.52885884924632 2.666219038494773 -4.401245236452727 -2.76072003842497 -2.200622618226364 -1.380360019212485 -5.26442942462316 1.333109519247386 -5.250153865182178 -1.367458277452394 -4.32864380715561 -2.728077418327247 -10.47763817691943 2.68387523224497 -4.378491287508375 2.678448496215526 -2.189245643754187 1.339224248107763 -5.238819088459714 1.341937616122485 -2.164321903577805 -1.364038709163623 18.77018998656991 14.62024772013757 19.5949665952896 15.33027302281989 22.92595043396204 10.32077586296335 23.95620936789129 10.83867888613798 9.797483297644799 7.665136511409947 11.46297521698102 5.160387931481677 11.97810468394564 5.41933944306899 9.385094993284955 7.310123860068783 10.6104459314464 -2.825897195613247 10.61044593144633 2.826049461490449 12.86224447874695 -2.825897195613273 12.86224447874698 2.826049461490449 5.305222965723164 1.413024730745224 6.431122239373472 -1.412948597806637 6.43112223937349 1.413024730745224 5.3052229657232 -1.412948597806623 10.52887684445967 2.667030953698378 10.50094812248903 -2.734076931910342 4.430291040022829 2.732353085540517 2.215145520011415 1.366176542770259 5.250474061244517 -1.367038465955171 5.264438422229835 1.333515476849189 4.399105344315679 2.657705380890611 10.405646661895 -2.852414177822029 4.307926494970575 -2.748488817035858 2.153963247485287 -1.374244408517929 5.202823330947497 -1.426207088911014 2.199552672157839 1.328852690445306 -12.86224447874695 2.82589499537068 -10.61044593144626 2.825894995370698 -12.86224447874705 -2.82609222888195 -10.61044593144633 -2.826092228881945 -5.305222965723129 1.412947497685349 -6.431122239373526 -1.413046114440975 -5.305222965723164 -1.413046114440972 -6.431122239373472 1.41294749768534 -26.67466626827587 5.683381458330269 -23.91094160824194 10.90046653479481 -25.480634378765 5.476511141612718 -22.82558978287088 10.45753752207573 -11.95547080412097 5.450233267397406 -12.7403171893825 2.738255570806359 -11.41279489143544 5.228768761037864 -13.33733313413794 2.841690729165134 -4.407169166769916 -2.754967482411306 -10.5061668122532 -2.720959260215462 -10.52299040682837 2.680227784306265 -5.261495203414187 1.340113892153132 -5.253083406126599 -1.360479630107731 -2.203584583384958 -1.377483741205653 -4.36829736990867 2.688553868555497 -4.338942229388606 -2.718106829418196 -10.46739654333959 2.708275296133268 -5.233698271669796 1.354137648066634 -2.169471114694303 -1.359053414709098 -2.184148684954335 1.344276934277748 22.94070725863429 10.30051085556732 23.97097124693982 10.81840765627475 25.54024123667234 5.301444883669677 26.70589873035085 5.591928469817038 11.98548562346991 5.409203828137374 12.77012061833617 2.650722441834839 13.35294936517543 2.795964234908519 11.47035362931715 5.150255427783658 10.6104459314464 2.825978074745936 12.86224447874695 2.825978074745911 10.61044593144626 -2.826022509369519 12.86224447874705 -2.826022509369585 6.431122239373472 1.412989037372956 5.305222965723129 -1.41301125468476 6.431122239373526 -1.413011254684793 5.3052229657232 1.412989037372968 10.52299403178044 2.680668671248751 10.50650593923221 -2.720529992983924 4.424277996020746 2.737940602897313 2.212138998010373 1.368970301448656 5.253252969616103 -1.360264996491962 5.261497015890218 1.340334335624375 10.42739215514632 -2.802536852443821 4.328980138760369 -2.727871931832631 4.378331935230842 2.678689137250321 2.189165967615421 1.339344568625161 2.164490069380185 -1.363935965916316 5.21369607757316 -1.40126842622191 -10.61044593144633 2.826069973237937 -10.61044593144629 -2.825904747399156 -12.86224447874705 2.826069973237946 -12.86224447874705 -2.825904747399128 -5.305222965723146 -1.412952373699578 -6.431122239373526 1.413034986618973 -6.431122239373526 -1.412952373699564 -5.305222965723164 1.413034986618969 -27.63562791825015 0.05894696417114838 -26.68240515494901 5.660952007740802 -26.41417937681512 0.1022416071421344 -25.48837270451038 5.454083694207584 -13.34120257747451 2.830476003870401 -13.20708968840756 0.05112080357106722 -12.74418635225519 2.727041847103792 -13.81781395912508 0.02947348208557419 -4.411191943823121 -2.751040942821268 -10.51013701455871 -2.711656587826044 -10.51923878233571 2.689544116394612 -5.259619391167854 1.344772058197306 -5.255068507279354 -1.355828293913022 -2.20559597191156 -1.375520471410634 -4.361511748855548 2.695401719720111 -4.345629980062277 -2.711270388115964 -10.46055017487655 2.724534513404098 -5.230275087438276 1.362267256702049 -2.172814990031139 -1.355635194057982 -2.180755874427774 1.347700859860056 25.54779300121115 5.278981513532999 26.71345124453584 5.569463238081498 26.41427114481721 -0.07904357354193686 27.6356806405396 -0.03575631278366894 13.35672562226792 2.784731619040749 13.20713557240861 -0.03952178677096843 13.8178403202698 -0.01787815639183447 12.77389650060558 2.6394907567665 10.61044593144626 2.825904567781381 12.86224447874705 2.825904567781341 10.61044593144638 -2.826080473249799 12.86224447874712 -2.826080473249835 6.431122239373526 1.41295228389067 5.305222965723191 -1.4130402366249 6.431122239373561 -1.413040236624918 5.305222965723129 1.412952283890691 10.51942773562302 2.690148952244857 10.51058248831772 -2.711008433256825 4.420634634695935 2.742095775502585 2.210317317347967 1.371047887751293 5.255291244158862 -1.355504216628413 5.259713867811509 1.345074476122429 10.43808803086309 -2.778188160359191 4.339422289735736 -2.717691662957049 4.368439727116307 2.688941036790968 2.184219863558154 1.344470518395484 2.169711144867868 -1.358845831478525 5.219044015431544 -1.389094080179595 -10.61044593144629 2.825969956194813 -10.61044593144636 -2.825999911941941 -12.86224447874705 2.825969956194804 -12.86224447874705 -2.82599991194193 -5.305222965723181 -1.41299995597097 -6.431122239373525 1.412984978097402 -6.431122239373525 -1.412999955970965 -5.305222965723146 1.412984978097406 -27.63572438081653 0.03575277887220742 -26.41427583939755 0.07904742262653271 -26.71345594367574 -5.569460127254565 -25.54793886530002 -5.278983127411783 -13.20713791969877 0.03952371131326635 -13.35672797183787 -2.784730063627282 -12.77396943265001 -2.639491563705891 -13.81786219040827 0.01787638943610371 -4.414444895310771 -2.747727539370401 -10.51334257328524 -2.704033755330998 -10.51629208656035 2.697135660162628 -5.258146043280174 1.348567830081314 -5.256671286642618 -1.352016877665499 -2.207222447655385 -1.373863769685201 -4.356241648110164 2.700981605799032 -4.351142237181914 -2.705693483194667 -10.45521431322128 2.737626225312479 -5.227607156610642 1.36881311265624 -2.175571118590957 -1.352846741597333 -2.178120824055082 1.350490802899516 25.48830445552332 -5.454082925036311 26.41417720728785 -0.1022377360609355 26.68242100433726 -5.660947693454984 27.6355867030183 -0.05895047794281139 13.20708860364393 -0.05111886803046777 13.34121050216863 -2.830473846727492 13.81779335150915 -0.0294752389714057 12.74415222776166 -2.727041462518156 10.61044593144638 2.826052632890082 12.86224447874712 2.826052632890059 10.61044593144626 -2.82592204733246 12.86224447874695 -2.825922047332492 6.431122239373561 1.41302631644503 5.305222965723129 -1.41296102366623 6.431122239373472 -1.412961023666246 5.305222965723191 1.413026316445041 10.51606746666478 2.697041471798994 10.51330575549122 -2.704166435394285 4.417217997697089 2.744713837406366 2.208608998848545 1.372356918703183 5.256652877745612 -1.352083217697142 5.258033733332388 1.348520735899497 10.44465127714765 -2.762265554347846 4.345847193716227 -2.711126089156569 4.361514299577717 2.695541103625278 2.180757149788859 1.347770551812639 2.172923596858114 -1.355563044578285 5.222325638573823 -1.381132777173923 -10.61044593144636 2.826041266166125 -10.6104459314464 -2.825930766618026 -12.86224447874705 2.826041266166101 -12.86224447874691 -2.825930766618044 -5.3052229657232 -1.412965383309013 -6.431122239373526 1.41302063308305 -6.431122239373455 -1.412965383309022 -5.305222965723182 1.413020633083062 -26.70590282994665 -5.591927379275652 -25.54038650199819 -5.301448515743764 -23.97101290175442 -10.81841542886811 -22.94071136809923 -10.30052099361089 -12.77019325099909 -2.650724257871882 -11.98550645087721 -5.409207714434054 -11.47035568404961 -5.150260496805447 -13.35295141497332 -2.795963689637826 -4.417536498075453 -2.745135983150786 -10.51638582391865 -2.697463741985649 -10.51363540807846 2.703735574337612 -5.256817704039229 1.351867787168806 -5.258192911959323 -1.348731870992824 -2.208768249037727 -1.372567991575393 -4.351338578301006 2.705750945986859 -4.356258630087857 -2.700933213781691 -10.45023670146809 2.749406257350436 -5.225118350734043 1.374703128675218 -2.178129315043929 -1.350466606890846 -2.175669289150503 1.352875472993429 22.82558998950295 -10.45752259924669 25.48056850699846 -5.4765109888474 23.91084720343317 -10.90046224804534 26.67468449563205 -5.683377758338963 12.74028425349923 -2.7382554944237 11.95542360171659 -5.450231124022667 13.33734224781603 -2.841688879169482 11.41279499475147 -5.228761299623346 10.61044593144626 2.825827121602595 12.86224447874695 2.82582712160258 10.61044593144633 -2.826129032011907 12.86224447874705 -2.82612903201192 6.431122239373472 1.41291356080129 5.305222965723164 -1.413064516005953 6.431122239373526 -1.41306451600596 5.305222965723129 1.412913560801298 10.51353388990205 2.704223658516902 10.51647688693124 -2.696955842399996 4.4146364097076 2.747910046670556 2.2073182048538 1.373955023335278 5.258238443465622 -1.348477921199998 5.256766944951025 1.352111829258451 10.45043595056386 -2.749456155586584 4.351538024872898 -2.705808272904777 4.35645153003614 2.70087991621506 2.17822576501807 1.35043995810753 2.175769012436449 -1.352904136452389 5.225217975281929 -1.374728077793292 -12.86224447874691 2.825966664539562 -10.6104459314464 2.825966664539571 -12.86224447874705 -2.826015326484667 -10.61044593144629 -2.826015326484686 -5.3052229657232 1.412983332269786 -6.431122239373526 -1.413007663242334 -5.305222965723146 -1.413007663242343 -6.431122239373455 1.412983332269781 -23.95624398101459 -10.83868297384684 -22.92594750356043 -10.32078231370186 -19.59503874243783 -15.33026292526798 -18.77019605670036 -14.62023762439384 -11.46297375178022 -5.160391156850932 -9.797519371218915 -7.665131462633992 -9.385098028350182 -7.310118812196918 -11.97812199050729 -5.419341486923419 -4.420343528520512 -2.741685283211833 -10.519136567093 -2.689735512526468 -10.51025774098094 2.711469903985125 -5.25512887049047 1.355734951992562 -5.2595682835465 -1.344867756263234 -2.210171764260256 -1.370842641605917 -4.346160956957755 2.711090981816287 -4.361795749282214 -2.695581765113801 -10.44496489620798 2.762230408910285 -5.222482448103991 1.381115204455142 -2.180897874641107 -1.3477908825569 -2.173080478478878 1.355545490908144 18.60733076095817 -14.74847483060988 22.81066195964529 -10.47771276851302 19.50999293442922 -15.39728354324274 23.89591475193814 -10.92065912129808 11.40533097982264 -5.23885638425651 9.754996467214612 -7.698641771621368 11.94795737596907 -5.460329560649042 9.303665380479083 -7.374237415304939 10.61044593144633 2.826225508708167 12.86224447874705 2.826225508708164 10.61044593144644 -2.825782753959264 12.86224447874696 -2.825782753959264 6.431122239373526 1.413112754354082 5.305222965723218 -1.412891376979632 6.431122239373481 -1.412891376979632 5.305222965723164 1.413112754354084 10.51046993801221 2.711434912783619 10.51953671685669 -2.689732105727344 4.411525367456426 2.750835793495604 2.205762683728213 1.375417896747802 5.259768358428346 -1.344866052863672 5.255234969006104 1.355717456391809 10.4555289323171 -2.737359948082401 4.356556746050451 -2.700699764144963 4.351468090508527 2.705965589278195 2.175734045254263 1.352982794639098 2.178278373025226 -1.350349882072481 5.227764466158549 -1.3686799740412 -12.86224447874705 2.825979287301734 -10.61044593144629 2.825979287301716 -12.86224447874705 -2.825992100767848 -10.61044593144633 -2.825992100767798 -5.305222965723146 1.412989643650858 -6.431122239373526 -1.412996050383924 -5.305222965723164 -1.412996050383899 -6.431122239373526 1.412989643650867 -19.57395918633143 -15.34695536581981 -18.74913042428991 -14.63692005507998 -13.88360005709505 -18.79752453568512 -13.32055676393909 -17.94376725013277 -9.374565212144953 -7.31846002753999 -6.941800028547526 -9.398762267842558 -6.660278381969544 -8.971883625066383 -9.786979593165713 -7.673477682909906 -4.423865910935081 -2.737831791075885 -10.52258142340395 -2.680531625677441 -10.50600177760153 2.720649408174218 -5.253000888800764 1.360324704087109 -5.261290711701975 -1.34026581283872 -2.211932955467541 -1.368915895537943 -4.339133801438258 2.717625466155597 -4.368203459203839 -2.688987647016699 -10.43779947743348 2.778124667649001 -5.218899738716739 1.389062333824501 -2.184101729601919 -1.344493823508349 -2.169566900719129 1.358812733077798 13.12090955371273 -18.03447626008716 18.5861204811644 -14.76505058173662 13.77936550939809 -18.84494501053288 19.48876976388837 -15.41387039274213 9.2930602405822 -7.382525290868308 6.889682754699045 -9.422472505266441 9.744384881944184 -7.706935196371063 6.560454776856362 -9.01723813004358 10.61044593144644 2.825791620706781 12.86224447874696 2.825791620706781 10.61044593144629 -2.826150515554888 12.86224447874705 -2.826150515554875 6.431122239373481 1.412895810353391 5.305222965723146 -1.413075257777444 6.431122239373526 -1.413075257777438 5.305222965723218 1.412895810353391 10.50634358496391 2.720891158259654 10.52313453471532 -2.680309961522778 4.407346409174058 2.754875420631839 2.203673204587029 1.37743771031592 5.261567267357662 -1.340154980761389 5.253171792481954 1.360445579129827 10.46075794161088 -2.724776304844964 4.36172004203437 -2.695664125246008 4.345862822087661 2.711004199695371 2.17293141104383 1.355502099847685 2.180860021017185 -1.347832062623004 5.230378970805441 -1.362388152422482 -10.61044593144638 -2.825976183967614 -12.86224447874695 -2.825976183967639 -10.61044593144633 2.825990416027972 -12.86224447874705 2.825990416027897 -6.431122239373472 -1.412988091983819 -5.305222965723164 1.412995208013986 -6.431122239373526 1.412995208013948 -5.305222965723191 -1.412988091983807 -13.85755824385552 -18.80944035209259 -13.29454013808028 -17.95567278723111 -7.225792948281573 -20.98382388441372 -6.962728423460445 -20.04450400512787 -6.647270069040138 -8.977836393615556 -3.612896474140786 -10.49191194220686 -3.481364211730222 -10.02225200256394 -6.928779121927762 -9.404720176046295 -10.52875653309172 -2.667019882103738 -10.50077901065932 2.734066663135995 -4.430171035067845 -2.732341685834769 -2.215085517533923 -1.366170842917385 -5.25038950532966 1.367033331567997 -5.264378266545858 -1.333509941051869 -4.378004242621763 -2.678465056738759 -10.42692928344672 2.802797985646838 -4.328518097775763 2.728095874626715 -2.164259048887882 1.364047937313357 -5.21346464172336 1.401398992823419 -2.189002121310882 -1.339232528369379 6.740151636101647 -20.09147929057193 13.09479295026678 -18.04624987728669 7.109488848458013 -21.00842022412065 13.75322481972926 -18.85673073724269 6.547396475133392 -9.023124938643347 3.554744424229007 -10.50421011206032 6.876612409864629 -9.428365368621344 3.370075818050824 -10.04573964528597 10.61044593144629 -2.825941324107447 10.61044593144629 2.826043208161488 12.862244478747 -2.82594132410737 12.86224447874705 2.826043208161514 5.305222965723146 1.413021604080744 6.431122239373499 -1.412970662053685 6.431122239373526 1.413021604080757 5.305222965723146 -1.412970662053724 10.50036585142223 2.734971001562761 10.52890011716264 -2.666196886704789 4.401303486300014 2.760784370702243 2.200651743150007 1.380392185351122 5.264450058581321 -1.333098443352395 5.250182925711115 1.367485500781381 10.46744109647829 -2.708407758160335 4.368342022762667 -2.688678959368056 4.338997338335714 2.717948747950908 2.169498669167857 1.358974373975454 2.184171011381333 -1.344339479684028 5.233720548239147 -1.354203879080168 -10.61044593144638 2.825979469314233 -10.61044593144636 -2.826003796516174 -12.86224447874694 2.825979469314216 -12.86224447874705 -2.826003796516174 -5.305222965723181 -1.413001898258087 -6.431122239373472 1.412989734657108 -6.431122239373525 -1.413001898258087 -5.30522296572319 1.412989734657116 -6.933536276452181 -20.05073707708879 -0.1303295216944846 -20.7791541441071 -7.196566260968286 -20.990062942279 -0.07540959329038582 -21.74001114445558 -0.06516476084724229 -10.38957707205355 -3.598283130484143 -10.4950314711395 -0.03770479664519291 -10.87000557222779 -3.466768138226091 -10.0253685385444 -10.54034897368759 -2.638160548550109 -10.48865422912526 2.762966583080145 -4.442085949347874 -2.719981088299503 -2.221042974673937 -1.359990544149752 -5.24432711456263 1.381483291540072 -5.270174486843797 -1.319080274275055 -10.40551982253659 2.852631559912603 -4.307800004700079 2.748704857416722 -4.39903924405151 -2.657516153234907 -2.199519622025755 -1.328758076617453 -2.153900002350039 1.374352428708361 -5.202759911268297 1.426315779956301 -0.1000250353029242 -20.77923124592329 6.71090713895255 -20.09756546865577 -0.04506717194452021 -21.74008690407053 7.080210519352136 -21.01451483490556 3.355453569476275 -10.04878273432789 -0.0225335859722601 -10.87004345203527 3.540105259676068 -10.50725741745278 -0.05001251765146209 -10.38961562296164 10.61044593144629 2.82594632761644 12.862244478747 2.825946327616524 10.61044593144629 -2.826051856133897 12.86224447874703 -2.826051856133904 6.431122239373499 1.412973163808262 5.305222965723146 -1.413025928066949 6.431122239373517 -1.413025928066952 5.305222965723146 1.41297316380822 10.48777562266277 2.764482314003959 10.54086775703753 -2.636542126831748 4.388634374310819 2.773181238710972 2.19431718715541 1.386590619355486 5.270433878518763 -1.318271063415874 5.243887811331383 1.38224115700198 10.47753497153215 -2.683902847387294 4.378387600123009 -2.678476127130542 4.328497143600641 2.728049645213909 2.164248571800321 1.364024822606955 2.189193800061505 -1.339238063565271 5.238767485766075 -1.341951423693647 -10.61044593144636 2.826010708320168 -10.61044593144629 -2.825941511668355 -12.86224447874705 2.826010708320168 -12.86224447874705 -2.8259415116683 -5.305222965723146 -1.412970755834178 -6.431122239373526 1.413005354160084 -6.431122239373526 -1.41297075583415 -5.305222965723182 1.413005354160084 -10.59158817915015 -2.507978354408405 -10.4322800455154 2.891766839544133 -4.495704144051983 -2.664967449207419 -2.247852072025991 -1.332483724603709 -5.216140022757697 1.445883419772067 -5.295794089575077 -1.253989177204203 -4.491947727247955 -2.559759000559964 -10.30000224773623 3.080400759006474 -4.208366568860864 2.842306276570779 -2.104183284430432 1.421153138285389 -5.150001123868115 1.540200379503237 -2.245973863623977 -1.279879500279982 10.61044593144629 2.826039515876513 12.86224447874703 2.82603951587651 10.61044593144629 -2.825944977148527 12.86224447874705 -2.825944977148583 6.431122239373517 1.413019757938255 5.305222965723146 -1.412972488574264 6.431122239373526 -1.412972488574291 5.305222965723146 1.413019757938257 10.42605207004991 2.905243259815798 10.59673143731553 -2.494209468150155 4.32761740458788 2.831720453845512 2.16380870229394 1.415860226922756 5.298365718657763 -1.247104734075077 5.213026035024954 1.452621629907899 4.306952304418521 2.749261829601255 10.4985636977804 -2.632587427674483 4.399491681506321 -2.656972876258102 2.199745840753161 -1.328486438129051 5.249281848890198 -1.316293713837241 2.153476152209261 1.374630914800627 4.203006248744854 2.847276271266106 10.59228532888561 -2.389536449472878 4.496740578981384 -2.554476881970431 2.248370289490692 -1.277238440985215 5.296142664442805 -1.194768224736439 2.101503124372427 1.423638135633053</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"672\" source=\"#ID807\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID803\">\r\n                    <input semantic=\"POSITION\" source=\"#ID801\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID802\"/>\r\n                </vertices>\r\n                <triangles count=\"144\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID803\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID804\"/>\r\n                    <p>0 0 1 1 2 2 3 3 2 2 1 1 3 8 1 9 8 10 9 11 8 10 1 9 12 16 13 17 14 18 15 19 14 18 13 17 20 24 0 25 21 26 2 27 21 26 0 25 24 32 25 33 26 34 8 38 9 39 30 40 31 41 30 40 9 39 34 46 14 47 35 48 15 49 35 48 14 47 25 54 38 55 39 56 42 60 43 61 12 62 13 63 12 62 43 61 46 68 20 69 47 70 21 71 47 70 20 69 50 76 24 77 51 78 25 82 39 83 26 84 51 88 24 89 26 90 30 94 31 95 54 96 55 97 54 96 31 95 58 102 34 103 59 104 35 105 59 104 34 103 38 110 62 111 63 112 39 116 38 117 63 118 66 122 67 123 42 124 43 125 42 124 67 123 70 130 46 131 71 132 47 133 71 132 46 131 74 138 50 139 75 140 75 144 50 145 51 146 54 150 55 151 78 152 79 153 78 152 55 151 82 158 58 159 83 160 59 161 83 160 58 159 62 166 86 167 87 168 63 172 62 173 87 174 67 178 66 179 90 180 91 181 90 180 66 179 94 186 70 187 95 188 71 189 95 188 70 187 98 194 99 195 74 196 75 200 98 201 74 202 78 206 79 207 102 208 103 209 102 208 79 207 82 214 83 215 106 216 107 217 106 216 83 215 86 222 110 223 111 224 86 228 111 229 87 230 91 234 114 235 90 236 115 237 90 236 114 235 118 242 94 243 119 244 95 245 119 244 94 243 122 250 123 251 99 252 98 256 122 257 99 258 102 262 103 263 126 264 127 265 126 264 103 263 106 270 107 271 130 272 131 273 130 272 107 271 110 278 134 279 135 280 110 284 135 285 111 286 114 290 138 291 115 292 139 293 115 292 138 291 118 298 119 299 142 300 143 301 142 300 119 299 146 306 147 307 123 308 122 312 146 313 123 314 150 318 126 319 151 320 127 321 151 320 126 319 130 326 131 327 154 328 155 329 154 328 131 327 134 334 158 335 159 336 134 340 159 341 135 342 138 346 162 347 139 348 163 349 139 348 162 347 142 354 143 355 166 356 167 357 166 356 143 355 170 362 171 363 147 364 146 368 170 369 147 370 174 374 150 375 175 376 151 377 175 376 150 375 154 382 155 383 178 384 179 385 178 384 155 383 158 390 182 391 183 392 158 396 183 397 159 398 163 402 162 403 186 404 187 405 186 404 162 403 166 410 167 411 190 412 191 413 190 412 167 411 194 418 195 419 171 420 170 424 194 425 171 426 198 430 174 431 199 432 175 433 199 432 174 431 178 438 179 439 202 440 203 441 202 440 179 439 182 446 206 447 207 448 182 452 207 453 183 454 186 458 187 459 210 460 211 461 210 460 187 459 190 466 191 467 214 468 215 469 214 468 191 467 218 474 219 475 195 476 194 480 218 481 195 482 222 486 198 487 223 488 199 489 223 488 198 487 202 494 203 495 226 496 227 497 226 496 203 495 206 502 230 503 231 504 206 508 231 509 207 510 234 514 235 515 211 516 210 517 211 516 235 515 214 522 215 523 238 524 239 525 238 524 215 523 242 530 219 531 243 532 243 536 219 537 218 538 246 542 222 543 247 544 223 545 247 544 222 543 250 550 226 551 251 552 227 553 251 552 226 551 230 558 254 559 255 560 230 564 255 565 231 566 234 570 258 571 235 572 259 573 235 572 258 571 239 578 262 579 238 580 263 581 238 580 262 579 266 586 242 587 267 588 242 592 243 593 267 594 262 598 246 599 263 600 247 601 263 600 246 599 250 606 251 607 270 608 271 609 270 608 251 607 254 614 274 615 275 616 254 620 275 621 255 622 258 626 278 627 259 628 279 629 259 628 278 627 282 634 266 635 283 636 283 640 266 641 267 642 270 646 271 647 278 648 279 649 278 648 271 647 274 654 282 655 286 656 275 660 274 661 286 662 286 666 282 667 283 668</p>\r\n                </triangles>\r\n                <triangles count=\"144\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID803\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID804\"/>\r\n                    <p>4 4 5 5 6 6 5 5 4 4 7 7 4 12 10 13 11 14 10 13 4 12 6 15 16 20 17 21 18 22 17 21 16 20 19 23 7 28 22 29 5 30 22 29 7 28 23 31 27 35 28 36 29 37 11 42 32 43 33 44 32 43 11 42 10 45 17 50 36 51 18 52 36 51 17 50 37 53 40 57 41 58 28 59 44 64 19 65 16 66 19 65 44 64 45 67 23 72 48 73 22 74 48 73 23 72 49 75 52 79 29 80 53 81 27 85 40 86 28 87 27 91 29 92 52 93 33 98 56 99 57 100 56 99 33 98 32 101 37 106 60 107 36 108 60 107 37 106 61 109 64 113 65 114 41 115 64 119 41 120 40 121 68 126 45 127 44 128 45 127 68 126 69 129 49 134 72 135 48 136 72 135 49 134 73 137 76 141 53 142 77 143 52 147 53 148 76 149 57 154 80 155 81 156 80 155 57 154 56 157 61 162 84 163 60 164 84 163 61 162 85 165 88 169 89 170 65 171 88 175 65 176 64 177 69 182 92 183 93 184 92 183 69 182 68 185 73 190 96 191 72 192 96 191 73 190 97 193 77 197 100 198 101 199 77 203 101 204 76 205 81 210 104 211 105 212 104 211 81 210 80 213 84 218 108 219 109 220 108 219 84 218 85 221 112 225 113 226 89 227 88 231 112 232 89 233 116 238 92 239 117 240 92 239 116 238 93 241 97 246 120 247 96 248 120 247 97 246 121 249 100 253 124 254 125 255 100 259 125 260 101 261 105 266 128 267 129 268 128 267 105 266 104 269 109 274 132 275 133 276 132 275 109 274 108 277 136 281 137 282 113 283 112 287 136 288 113 289 140 294 117 295 141 296 117 295 140 294 116 297 120 302 144 303 145 304 144 303 120 302 121 305 124 309 148 310 149 311 124 315 149 316 125 317 128 322 152 323 129 324 152 323 128 322 153 325 133 330 156 331 157 332 156 331 133 330 132 333 160 337 161 338 137 339 136 343 160 344 137 345 164 350 141 351 165 352 141 351 164 350 140 353 145 358 168 359 169 360 168 359 145 358 144 361 148 365 172 366 173 367 148 371 173 372 149 373 153 378 176 379 152 380 176 379 153 378 177 381 157 386 180 387 181 388 180 387 157 386 156 389 184 393 185 394 161 395 160 399 184 400 161 401 164 406 188 407 189 408 188 407 164 406 165 409 169 414 192 415 193 416 192 415 169 414 168 417 172 421 196 422 197 423 172 427 197 428 173 429 177 434 200 435 176 436 200 435 177 434 201 437 181 442 204 443 205 444 204 443 181 442 180 445 208 449 209 450 185 451 184 455 208 456 185 457 189 462 212 463 213 464 212 463 189 462 188 465 193 470 216 471 217 472 216 471 193 470 192 473 196 477 220 478 221 479 196 483 221 484 197 485 201 490 224 491 200 492 224 491 201 490 225 493 205 498 228 499 229 500 228 499 205 498 204 501 232 505 233 506 209 507 208 511 232 512 209 513 236 518 213 519 212 520 213 519 236 518 237 521 217 526 240 527 241 528 240 527 217 526 216 529 244 533 220 534 245 535 221 539 220 540 244 541 225 546 248 547 224 548 248 547 225 546 249 549 228 554 252 555 229 556 252 555 228 554 253 557 256 561 257 562 233 563 232 567 256 568 233 569 260 574 236 575 261 576 236 575 260 574 237 577 264 582 240 583 265 584 240 583 264 582 241 585 268 589 245 590 269 591 268 595 244 596 245 597 249 602 265 603 248 604 265 603 249 602 264 605 252 610 272 611 273 612 272 611 252 610 253 613 276 617 277 618 257 619 256 623 276 624 257 625 280 630 261 631 281 632 261 631 280 630 260 633 284 637 269 638 285 639 268 643 269 644 284 645 273 650 280 651 281 652 280 651 273 650 272 653 287 657 285 658 277 659 287 663 277 664 276 665 284 669 285 670 287 671</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID808\">\r\n            <mesh>\r\n                <source id=\"ID809\">\r\n                    <float_array count=\"576\" id=\"ID813\">-0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID813\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID810\">\r\n                    <float_array count=\"576\" id=\"ID814\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762637497411e-018 0.2608439886717847 -0.9653809681021238 1.357324008988185e-018 0.002095735273219623 -0.999997803944421 1.428762637497407e-018 0.2608439886717864 -0.9653809681021234 1.357324008988168e-018 0.002095735273213525 -0.999997803944421 -1.357324008988185e-018 -0.002095735273219623 0.999997803944421 -1.428762637497407e-018 -0.2608439886717864 0.9653809681021234 -1.357324008988168e-018 -0.002095735273213525 0.999997803944421 -1.428762637497411e-018 -0.2608439886717847 0.9653809681021238 5.000666824631774e-019 -0.2567918074288629 -0.9664667441963111 5.000666824631841e-019 -0.2567918074288612 -0.9664667441963116 -5.000666824631841e-019 0.2567918074288612 0.9664667441963116 -5.000666824631774e-019 0.2567918074288629 0.9664667441963111 -2.286020591985056e-018 -0.4981832167412074 -0.8670717862768821 -2.286020591985096e-018 -0.4981832167412094 -0.867071786276881 2.286020591985056e-018 0.4981832167412074 0.8670717862768821 2.286020591985096e-018 0.4981832167412094 0.867071786276881 -6.858055771993708e-018 -0.7056226073428004 -0.7085878463583386 -6.858055771993613e-018 -0.7056226073427964 -0.7085878463583424 6.858055771993613e-018 0.7056226073427964 0.7085878463583424 6.858055771993708e-018 0.7056226073428004 0.7085878463583386 -8.001070223829628e-018 -0.8649741646300232 -0.5018163952309587 -8.001070223829614e-018 -0.8649741646300241 -0.5018163952309572 8.001070223829628e-018 0.8649741646300232 0.5018163952309587 8.001070223829614e-018 0.8649741646300241 0.5018163952309572 -5.715045332456655e-019 -0.9653796265175301 -0.2608489538121138 -5.715045332456722e-019 -0.96537962651753 -0.260848953812114 5.715045332456655e-019 0.9653796265175301 0.2608489538121138 5.715045332456722e-019 0.96537962651753 0.260848953812114 2.286022406958772e-018 -0.9999977996832321 -0.002097767550154592 2.286022406958698e-018 -0.9999977996832321 -0.002097767550151775 -2.286022406958772e-018 0.9999977996832321 0.002097767550154592 -2.286022406958698e-018 0.9999977996832321 0.002097767550151775 -5.1435407892633e-018 -0.9664655322690486 0.2567963686189982 -5.143540789263351e-018 -0.9664655322690482 0.2567963686189999 5.1435407892633e-018 0.9664655322690486 -0.2567963686189982 5.143540789263351e-018 0.9664655322690482 -0.2567963686189999 -8.001071306872786e-018 -0.8670714378610992 0.498183823147125 -8.001071306872821e-018 -0.8670714378611013 0.4981838231471211 8.001071306872786e-018 0.8670714378610992 -0.498183823147125 8.001071306872821e-018 0.8670714378611013 -0.4981838231471211 -5.715047892338878e-018 -0.708586537670636 0.7056239215275657 -5.715047892338916e-018 -0.7085865376706391 0.7056239215275628 5.715047892338878e-018 0.708586537670636 -0.7056239215275657 5.715047892338916e-018 0.7085865376706391 -0.7056239215275628 -3.714781434290872e-018 -0.5018152321358096 0.8649748394008253 -3.714781434290843e-018 -0.5018152321358057 0.8649748394008278 3.714781434290872e-018 0.5018152321358096 -0.8649748394008253 3.714781434290843e-018 0.5018152321358057 -0.8649748394008278 -1.357324087236548e-018 -0.2608455302381353 0.9653805515726874 -1.357324087236494e-018 -0.2608455302381308 0.9653805515726887 1.357324087236494e-018 0.2608455302381308 -0.9653805515726887 1.357324087236548e-018 0.2608455302381353 -0.9653805515726874 5.00066824341991e-019 -0.0020983946598471 0.9999977983675022 5.00066824342e-019 -0.002098394659843867 0.9999977983675022 -5.00066824342e-019 0.002098394659843867 -0.9999977983675022 -5.00066824341991e-019 0.0020983946598471 -0.9999977983675022 1.285886092699162e-018 0.2567924015669348 0.9664665863326504 1.285886092699151e-018 0.2567924015669318 0.966466586332651 -1.285886092699162e-018 -0.2567924015669348 -0.9664665863326504 -1.285886092699151e-018 -0.2567924015669318 -0.966466586332651 -2.000267021076344e-018 0.4981821975151394 0.8670723718807943 -2.000267021076362e-018 0.4981821975151401 0.867072371880794 2.000267021076344e-018 -0.4981821975151394 -0.8670723718807943 2.000267021076362e-018 -0.4981821975151401 -0.867072371880794 -4.00053674631458e-018 0.7056247595919819 0.7085857031091989 -4.000536746314618e-018 0.7056247595919799 0.7085857031092008 4.000536746314618e-018 -0.7056247595919799 -0.7085857031092008 4.00053674631458e-018 -0.7056247595919819 -0.7085857031091989 -1.21193073775685e-032 0.8649761689145231 0.5018129404568542 4.204657661605452e-033 0.8649761689145237 0.5018129404568533 -4.204657661605452e-033 -0.8649761689145237 -0.5018129404568533 1.21193073775685e-032 -0.8649761689145231 -0.5018129404568542 2.286019992337455e-018 0.9653804430920455 0.2608459317210175 2.286019992337455e-018 0.9653804430920453 0.2608459317210191 -2.286019992337455e-018 -0.9653804430920453 -0.2608459317210191 -2.286019992337455e-018 -0.9653804430920455 -0.2608459317210175 4.00053677349617e-018 0.9999978094868985 0.002093088962486192 4.000536773496116e-018 0.9999978094868985 0.002093088962490353 -4.000536773496116e-018 -0.9999978094868985 -0.002093088962490353 -4.00053677349617e-018 -0.9999978094868985 -0.002093088962486192 7.429555745771715e-018 0.9664663526289721 -0.2567932811349458 7.429555745771746e-018 0.9664663526289716 -0.256793281134948 -7.429555745771746e-018 -0.9664663526289716 0.256793281134948 -7.429555745771715e-018 -0.9664663526289721 0.2567932811349458 8.001073065904117e-018 0.8670738131462042 -0.4981796890240521 8.001073065904097e-018 0.8670738131462032 -0.498179689024054 -8.001073065904097e-018 -0.8670738131462032 0.498179689024054 -8.001073065904117e-018 -0.8670738131462042 0.4981796890240521 2.286020065195486e-018 0.7085865942299621 -0.7056238647307667 2.286020065195515e-018 0.7085865942299627 -0.705623864730766 -2.286020065195515e-018 -0.7085865942299627 0.705623864730766 -2.286020065195486e-018 -0.7085865942299621 0.7056238647307667 -5.715046975223761e-019 0.5018142835855971 -0.8649753897016226 -5.715046975224879e-019 0.5018142835856045 -0.8649753897016184 5.715046975223761e-019 -0.5018142835855971 0.8649753897016226 5.715046975224879e-019 -0.5018142835856045 0.8649753897016184</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID814\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID812\">\r\n                    <float_array count=\"576\" id=\"ID815\">-28.53282744922561 0.04706611174357161 -27.54503608652599 5.854853581020853 -27.57601917625835 -5.763931954550666 -27.52206684879615 0.04706611174358209 -26.59974397119644 -5.55814125129378 -24.74002718810177 -11.18212484729964 -23.86471360239281 -10.78458382163206 -20.21802346491327 -15.83825019581263 -19.50334285683298 -15.27606432043412 -14.3181898767466 -19.4150537567162 -13.81285613376801 -18.72650327226948 -7.442633762966584 -21.66874754397123 -7.181031656752985 -20.90077510041939 -0.05986734922203591 -21.65067841029053 -0.05986734922203147 -22.44576046162567 7.065417273707942 -20.92514846434208 7.327029141922628 -21.6931232707988 13.70921071502838 -18.77356879328679 14.21454295616055 -19.46214172533002 19.4187408495236 -15.34262380677985 20.13340493729391 -15.90483331120719 23.80482748009175 -10.8660993144682 24.68013205472282 -11.26361907399176 26.56880593685397 -5.64906110558527 27.52202780079212 -0.04706980378244907 27.54501506067751 -5.854844720127505 -26.5687879146979 5.649065240668816 -24.68017861195908 11.26362616270643 -23.80492209641044 10.86610404027797 -20.1333673911358 15.90482031523034 -19.41873183844568 15.34262262532737 -14.21458200416499 19.46211927773357 -13.70921071502846 18.77357233764413 -7.326991595764483 21.69310909336947 -7.065454819865953 20.9251390127225 0.05980164344524746 21.65067841029049 0.05980164344527855 22.44574392129143 7.180994110594869 20.90077510041938 7.442587205730431 21.66875226978101 13.81280957653182 18.72650799807924 14.31814331951038 19.41505375671623 19.50326776451671 15.27607259060124 20.2179874206012 15.8382655546944 23.86467605623466 10.78457791436985 24.73998964194365 11.18211185132277 26.59974397119641 5.558144204924854 27.57592606178605 5.763926047288433 28.53273433475351 -0.04706980378245257 13.78796303089303 2.881963023644217 13.77250753033876 -2.927422360063753 14.26636716737676 -0.02353490189122628 13.76101390039606 -0.02353490189122454 13.2998719855982 2.779072102462427 12.36999482097183 5.591055925661383 11.93233802811733 5.392288957184925 10.1089937103006 7.919132777347199 9.751633882258355 7.638036295300619 7.159071659755192 9.707526878358115 6.906404788265909 9.363253999039621 3.721293602865216 10.8343761348905 3.590497055297435 10.45038755020969 0.02990082172263927 11.22287196064572 0.02990082172262373 10.82533920514525 -3.663495797882241 10.84655454668474 -3.532727409932976 10.46256950636125 -6.854605357514229 9.386786168822065 -7.107291002082496 9.731059638866784 -9.709365919222838 7.671311312663686 -10.0666836955679 7.95241015761517 -11.90246104820522 5.433052020138987 -12.34008930597954 5.631813081353213 -13.28439395734895 2.824532620334408 -13.77251804326299 2.927426790510427 -13.76103342439808 0.02353305587179104 13.28440296842699 -2.824530552792635 12.34006602736141 -5.631809536995879 11.90241374004588 -5.433049657234099 10.06670246864696 -7.952416655603594 9.709370424761799 -7.671311903389926 7.107271478080275 -9.731070862665009 6.854605357514191 -9.386784396643396 3.663514570961314 -10.8465616353994 3.532708636853971 -10.46257423217104 -0.02993367461101574 -11.22288023081283 -0.02993367461101796 -10.82533920514526 -3.721316881483292 -10.83437377198561 -3.590515828376493 -10.4503875502097 -6.906428066884002 -9.363251636134741 -7.159094938373302 -9.707526878358099 -9.751671428416488 -7.638032160217059 -10.10901173245664 -7.919125097906314 -11.9323568011964 -5.39229191081603 -12.37001359405088 -5.591062423649821 -13.29987198559822 -2.77907062564689 -13.78800958812917 -2.881965977275333 -14.2664137246128 0.0235330558717858 12.86224447874696 -2.929792278906809 12.86224447874703 2.929743190342062 15.27491705001244 -2.92979227890684 15.2749170500126 2.929743190342119 6.431122239373517 1.464871595171031 7.637458525006222 -1.46489613945342 7.637458525006302 1.46487159517106 6.431122239373481 -1.464896139453405 -12.86224447874705 -2.92973185074145 -15.27491705001257 -2.929731850741423 -12.86224447874703 2.929750167992304 -15.2749170500126 2.929750167992251 -7.637458525006284 -1.464865925370711 -6.431122239373517 1.464875083996152 -7.637458525006302 1.464875083996125 -6.431122239373526 -1.464865925370725 -12.86224447874705 2.929721881732527 -12.86224447874709 -2.929852871110114 -15.27491705001257 2.929721881732551 -15.27491705001264 -2.929852871110166 -6.431122239373543 -1.464926435555057 -7.637458525006283 1.464860940866276 -7.637458525006319 -1.464926435555083 -6.431122239373525 1.464860940866263 -12.86224447874695 -2.929677555424782 -15.27491705001234 -2.929677555424733 -12.86224447874709 2.929823033031287 -15.27491705001264 2.929823033031245 -7.637458525006169 -1.464838777712367 -6.431122239373543 1.464911516515643 -7.63745852500632 1.464911516515623 -6.431122239373472 -1.464838777712391 -15.27491705001234 2.929697425929927 -12.86224447874695 2.929697425929892 -15.2749170500125 -2.929855373115951 -12.86224447874691 -2.929855373116002 -6.431122239373472 1.464848712964946 -7.637458525006249 -1.464927686557976 -6.431122239373455 -1.464927686558001 -7.637458525006169 1.464848712964963 -12.86224447874691 2.92974286903891 -12.86224447874709 -2.929773314130085 -15.2749170500125 2.929742869038943 -15.27491705001257 -2.929773314130076 -6.431122239373543 -1.464886657065043 -7.637458525006249 1.464871434519471 -7.637458525006284 -1.464886657065038 -6.431122239373455 1.464871434519455 -15.27491705001257 2.929540399646405 -12.86224447874709 2.929540399646413 -15.27491705001243 -2.930000664061414 -12.86224447874695 -2.930000664061421 -6.431122239373543 1.464770199823206 -7.637458525006213 -1.465000332030707 -6.431122239373472 -1.465000332030711 -7.637458525006284 1.464770199823202 -12.86224447874695 2.9299607810872 -12.86224447874695 -2.929581822242644 -15.27491705001243 2.929960781087207 -15.27491705001232 -2.929581822242648 -6.431122239373472 -1.464790911121322 -7.637458525006213 1.464980390543604 -7.63745852500616 -1.464790911121324 -6.431122239373472 1.4649803905436 -12.86224447874695 2.929734008047279 -12.86224447874698 -2.929795632432642 -15.27491705001232 2.929734008047276 -15.27491705001264 -2.929795632432599 -6.43112223937349 -1.464897816216321 -7.63745852500616 1.464867004023638 -7.63745852500632 -1.4648978162163 -6.431122239373472 1.46486700402364 -15.27491705001264 2.929854278460836 -12.86224447874698 2.929854278460752 -15.27491705001246 -2.929664031079308 -12.86224447874705 -2.929664031079275 -6.43112223937349 1.464927139230376 -7.637458525006231 -1.464832015539654 -6.431122239373526 -1.464832015539638 -7.63745852500632 1.464927139230418 -12.86224447874705 2.929799501924695 -12.86224447874709 -2.929746866326544 -15.27491705001246 2.929799501924643 -15.2749170500126 -2.929746866326596 -6.431122239373543 -1.464873433163272 -7.637458525006231 1.464899750962321 -7.637458525006302 -1.464873433163298 -6.431122239373526 1.464899750962348 -12.86224447874695 -2.929774255369613 -15.2749170500125 -2.92977425536968 -12.86224447874709 2.929742564000939 -15.2749170500126 2.929742564000883 -7.637458525006249 -1.46488712768484 -6.431122239373543 1.46487128200047 -7.637458525006302 1.464871282000442 -6.431122239373472 -1.464887127684806 -12.86224447874693 -2.929781790797601 -15.27491705001246 -2.929781790797626 -12.86224447874695 2.929741567953739 -15.2749170500125 2.92974156795366 -7.637458525006231 -1.464890895398813 -6.431122239373472 1.464870783976869 -7.637458525006249 1.46487078397683 -6.431122239373464 -1.4648908953988 12.86224447874693 -2.929772829085486 12.86224447874707 2.929790045178396 15.27491705001246 -2.929772829085463 15.27491705001257 2.929790045178342 6.431122239373535 1.464895022589198 7.637458525006231 -1.464886414542731 7.637458525006284 1.464895022589171 6.431122239373464 -1.464886414542743 12.86224447874707 -2.9297580530314 12.86224447874705 2.929757835224654 15.27491705001257 -2.929758053031452 15.2749170500126 2.929757835224672 6.431122239373526 1.464878917612327 7.637458525006284 -1.464879026515726 7.637458525006302 1.464878917612336 6.431122239373535 -1.4648790265157 12.86224447874705 2.929803538710713 15.2749170500125 2.929803538710692 12.86224447874705 -2.929750667340226 15.2749170500126 -2.929750667340216 7.637458525006249 1.464901769355346 6.431122239373526 -1.464875333670113 7.637458525006302 -1.464875333670108 6.431122239373526 1.464901769355357 12.86224447874705 2.929593042074726 15.27491705001246 2.929593042074761 12.86224447874705 -2.92993527925525 15.2749170500125 -2.929935279255278 7.637458525006231 1.464796521037381 6.431122239373526 -1.464967639627625 7.637458525006249 -1.464967639627639 6.431122239373526 1.464796521037363 12.86224447874696 2.929842954384198 15.27491705001232 2.929842954384168 12.86224447874705 -2.9296825896425 15.27491705001246 -2.929682589642478 7.63745852500616 1.464921477192084 6.431122239373526 -1.46484129482125 7.637458525006231 -1.464841294821239 6.431122239373481 1.464921477192099 15.2749170500125 2.929780138522509 15.27491705001232 -2.929740962824745 12.86224447874705 2.92978013852247 12.86224447874696 -2.929740962824737 7.63745852500616 -1.464870481412373 6.431122239373526 1.464890069261235 6.431122239373481 -1.464870481412369 7.637458525006249 1.464890069261254 15.27491705001248 2.92958429256624 15.2749170500125 -2.9299561138927 12.862244478747 2.929584292566244 12.86224447874705 -2.929956113892731 7.637458525006249 -1.46497805694635 6.431122239373499 1.464792146283122 6.431122239373526 -1.464978056946366 7.63745852500624 1.46479214628312 15.27491705001243 2.929938126060052 15.27491705001248 -2.929568316003488 12.86224447874695 2.929938126060063 12.862244478747 -2.929568316003465 7.63745852500624 -1.464784158001744 6.431122239373472 1.464969063030032 6.431122239373499 -1.464784158001733 7.637458525006213 1.464969063030026 15.27491705001244 2.929762392715948 15.27491705001243 -2.929777731100098 12.86224447874698 2.929762392715941 12.86224447874695 -2.929777731100067 7.637458525006213 -1.464888865550049 6.43112223937349 1.464881196357971 6.431122239373472 -1.464888865550033 7.637458525006222 1.464881196357974 12.86224447874698 -2.929833042641436 12.86224447874698 2.929710500811676 15.27491705001244 -2.929833042641431 15.27491705001246 2.929710500811587 6.43112223937349 1.464855250405838 7.637458525006222 -1.464916521320715 7.637458525006231 1.464855250405794 6.43112223937349 -1.464916521320718 12.86224447874696 2.929826448053173 15.27491705001244 2.92982644805314 12.86224447874698 -2.929692188965083 15.27491705001246 -2.929692188965185 7.637458525006222 1.46491322402657 6.43112223937349 -1.464846094482541 7.637458525006231 -1.464846094482593 6.431122239373481 1.464913224026587</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"288\" source=\"#ID815\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID811\">\r\n                    <input semantic=\"POSITION\" source=\"#ID809\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID810\"/>\r\n                </vertices>\r\n                <triangles count=\"96\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID811\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID812\"/>\r\n                    <p>0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 12 12 13 13 11 11 11 11 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 24 24 25 25 23 23 22 22 23 23 25 25 3 3 1 1 26 26 1 1 27 27 26 26 26 26 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 34 34 33 33 35 35 33 33 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 24 24 24 24 46 46 25 25 47 47 25 25 46 46 96 96 97 97 98 98 99 99 98 98 97 97 104 104 105 105 97 106 99 107 97 106 105 105 104 112 108 113 105 114 109 115 105 114 108 113 112 120 113 121 108 122 109 123 108 122 113 121 113 128 112 129 116 130 117 131 116 130 112 129 117 136 120 137 116 138 121 139 116 138 120 137 121 144 120 145 124 146 125 147 124 146 120 145 125 152 128 153 124 154 129 155 124 154 128 153 128 160 132 161 129 162 133 163 129 162 132 161 133 168 132 169 136 170 137 171 136 170 132 169 137 176 140 177 136 178 141 179 136 178 140 177 144 184 145 185 140 186 141 187 140 186 145 185 148 192 149 193 144 194 145 195 144 194 149 193 148 200 152 201 149 202 153 203 149 202 152 201 152 208 156 209 153 210 157 211 153 210 156 209 160 216 161 217 156 218 157 219 156 218 161 217 164 224 165 225 160 226 161 227 160 226 165 225 168 232 169 233 164 234 165 235 164 234 169 233 172 240 169 241 173 242 168 243 173 242 169 241 176 248 172 249 177 250 173 251 177 250 172 249 180 256 176 257 181 258 177 259 181 258 176 257 184 264 180 265 185 266 181 267 185 266 180 265 185 272 188 273 184 274 189 275 184 274 188 273 96 280 98 281 188 282 189 283 188 282 98 281</p>\r\n                </triangles>\r\n                <triangles count=\"96\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID811\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID812\"/>\r\n                    <p>48 48 49 49 50 50 49 49 48 48 51 51 51 51 48 48 52 52 52 52 48 48 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59 58 58 59 59 60 60 60 60 59 59 61 61 60 60 61 61 62 62 62 62 61 61 63 63 62 62 63 63 64 64 64 64 63 63 65 65 65 65 63 63 66 66 65 65 66 66 67 67 67 67 66 66 68 68 67 67 68 68 69 69 69 69 68 68 70 70 69 69 70 70 71 71 71 71 70 70 72 72 71 71 72 72 73 73 49 49 74 74 75 75 74 74 49 49 51 51 75 75 74 74 76 76 75 75 76 76 77 77 77 77 76 76 78 78 77 77 78 78 79 79 79 79 78 78 80 80 79 79 80 80 81 81 81 81 80 80 82 82 81 81 82 82 83 83 83 83 82 82 84 84 83 83 84 84 85 85 85 85 84 84 86 86 85 85 86 86 87 87 85 85 87 87 88 88 88 88 87 87 89 89 88 88 89 89 90 90 90 90 89 89 91 91 90 90 91 91 92 92 92 92 91 91 93 93 92 92 93 93 94 94 94 94 93 93 73 73 94 94 73 73 72 72 94 94 72 72 95 95 100 100 101 101 102 102 101 101 100 100 103 103 106 108 100 109 102 110 100 109 106 108 107 111 110 116 106 117 111 118 106 117 110 116 107 119 114 124 110 125 111 126 110 125 114 124 115 127 115 132 118 133 119 134 118 133 115 132 114 135 122 140 118 141 123 142 118 141 122 140 119 143 122 148 126 149 127 150 126 149 122 148 123 151 130 156 126 157 131 158 126 157 130 156 127 159 134 164 131 165 135 166 131 165 134 164 130 167 134 172 138 173 139 174 138 173 134 172 135 175 142 180 138 181 143 182 138 181 142 180 139 183 146 188 142 189 143 190 142 189 146 188 147 191 150 196 147 197 146 198 147 197 150 196 151 199 154 204 150 205 155 206 150 205 154 204 151 207 158 212 155 213 159 214 155 213 158 212 154 215 162 220 158 221 159 222 158 221 162 220 163 223 166 228 163 229 162 230 163 229 166 228 167 231 170 236 167 237 166 238 167 237 170 236 171 239 170 244 174 245 171 246 174 245 170 244 175 247 175 252 178 253 174 254 178 253 175 252 179 255 179 260 182 261 178 262 182 261 179 260 183 263 183 268 186 269 182 270 186 269 183 268 187 271 190 276 187 277 191 278 187 277 190 276 186 279 101 284 190 285 191 286 190 285 101 284 103 287</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID816\">\r\n            <mesh>\r\n                <source id=\"ID817\">\r\n                    <float_array count=\"576\" id=\"ID821\">-0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.8079789814554541 -1.288720216101408 0.7405885836107005</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID821\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID818\">\r\n                    <float_array count=\"576\" id=\"ID822\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762080881852e-018 0.5017398950377386 -0.8650185418403001 1.428762080882819e-018 0.5017398950377737 -0.8650185418402798 5.715050599695061e-019 0.7085275831213713 -0.7056831186560921 5.715050599694446e-019 0.7085275831213729 -0.7056831186560907 -1.428762080882819e-018 -0.5017398950377737 0.8650185418402798 -5.715050599695061e-019 -0.7085275831213713 0.7056831186560921 -5.715050599694446e-019 -0.7085275831213729 0.7056831186560907 -1.428762080881852e-018 -0.5017398950377386 0.8650185418403001 -9.286952941388763e-019 0.2607625543991116 -0.9654029677928541 -9.286952941388407e-019 0.2607625543991058 -0.9654029677928556 9.286952941388407e-019 -0.2607625543991058 0.9654029677928556 9.286952941388763e-019 -0.2607625543991116 0.9654029677928541 -7.14381254244789e-020 0.002012725556721015 -0.9999979744658651 -7.143812542448248e-020 0.002012725556727595 -0.9999979744658651 7.14381254244789e-020 -0.002012725556721015 0.9999979744658651 7.143812542448248e-020 -0.002012725556727595 0.9999979744658651 -8.572571838953487e-019 -0.2568741755083704 -0.9664448551039501 -8.572571838953785e-019 -0.2568741755083748 -0.9664448551039488 8.572571838953785e-019 0.2568741755083748 0.9664448551039488 8.572571838953487e-019 0.2568741755083704 0.9664448551039501 -2.000267235225424e-018 -0.4982546428953847 -0.8670307438800501 -2.000267235225416e-018 -0.4982546428953812 -0.8670307438800519 2.000267235225416e-018 0.4982546428953812 0.8670307438800519 2.000267235225424e-018 0.4982546428953847 0.8670307438800501 1.045111957692991e-006 -0.7056819897722565 -0.7085287074706123 1.045111957693077e-006 -0.7056819897722642 -0.7085287074706047 -1.045111957692991e-006 0.7056819897722565 0.7085287074706123 -1.045111957693077e-006 0.7056819897722642 0.7085287074706047 1.703558339410631e-006 -0.8650181793754788 -0.5017405199373778 1.703555472269594e-006 -0.8650186691821249 -0.5017396754926639 -1.703558339410631e-006 0.8650181793754788 0.5017405199373778 -1.703555472269594e-006 0.8650186691821249 0.5017396754926639 6.584446236329073e-007 -0.9654035292207907 -0.2607604758540074 6.584446236328554e-007 -0.9654035292207932 -0.2607604758539974 -6.584446236329073e-007 0.9654035292207907 0.2607604758540074 -6.584446236328554e-007 0.9654035292207932 0.2607604758539974 -6.286553020284208e-018 -0.999997973793477 -0.002013059596886011 -6.286553020284232e-018 -0.999997973793477 -0.002013059596885226 6.286553020284208e-018 0.999997973793477 0.002013059596886011 6.286553020284232e-018 0.999997973793477 0.002013059596885226 -8.001067536444891e-018 -0.9664454482419091 0.2568719439185513 -8.001067536444849e-018 -0.9664454482419086 0.2568719439185535 8.001067536444891e-018 0.9664454482419091 -0.2568719439185513 8.001067536444849e-018 0.9664454482419086 -0.2568719439185535 -6.858064911194342e-018 -0.8670284530084556 0.4982586293018563 -6.858064911194386e-018 -0.8670284530084529 0.4982586293018606 6.858064911194342e-018 0.8670284530084556 -0.4982586293018563 6.858064911194386e-018 0.8670284530084529 -0.4982586293018606 -1.714512912291224e-018 -0.7085272435711623 0.7056834595747947 -1.714512912290773e-018 -0.7085272435711557 0.7056834595748014 1.714512912291224e-018 0.7085272435711623 -0.7056834595747947 1.714512912290773e-018 0.7085272435711557 -0.7056834595748014 2.000267850227171e-018 -0.50174509130913 0.8650155278069827 2.000267850227025e-018 -0.5017450913091236 0.8650155278069864 -2.000267850227171e-018 0.50174509130913 -0.8650155278069827 -2.000267850227025e-018 0.5017450913091236 -0.8650155278069864 -9.286958702616151e-019 -0.260760369696751 0.9654035578946318 -9.286958702615267e-019 -0.2607603696967824 0.9654035578946233 9.286958702615267e-019 0.2607603696967824 -0.9654035578946233 9.286958702616151e-019 0.260760369696751 -0.9654035578946318 -9.286950770806969e-019 -0.002010277094332024 0.9999979793909607 -9.286950770806418e-019 -0.002010277094311723 0.9999979793909607 9.286950770806969e-019 0.002010277094332024 -0.9999979793909607 9.286950770806418e-019 0.002010277094311723 -0.9999979793909607 5.715048573591528e-019 0.2568730418156993 0.9664451564306947 5.715048573588878e-019 0.2568730418156698 0.9664451564307025 -5.715048573591528e-019 -0.2568730418156993 -0.9664451564306947 -5.715048573588878e-019 -0.2568730418156698 -0.9664451564307025 2.000267221612171e-018 0.4982543657066573 0.8670309031714246 2.000267221612142e-018 0.4982543657066462 0.8670309031714313 -2.000267221612142e-018 -0.4982543657066462 -0.8670309031714313 -2.000267221612171e-018 -0.4982543657066573 -0.8670309031714246 4.572040930296596e-018 0.7056830209675885 0.70852768041768 4.572040930296914e-018 0.7056830209676014 0.7085276804176672 -4.572040930296596e-018 -0.7056830209675885 -0.70852768041768 -4.572040930296914e-018 -0.7056830209676014 -0.7085276804176672 -1.143009385792095e-018 0.8650179182247008 0.5017409701730615 -1.14300938579175e-018 0.8650179182246978 0.5017409701730664 1.14300938579175e-018 -0.8650179182246978 -0.5017409701730664 1.143009385792095e-018 -0.8650179182247008 -0.5017409701730615 -2.857524059865316e-018 0.9654022143532302 0.2607653437899289 -2.857524059864703e-018 0.9654022143532335 0.2607653437899165 2.857524059864703e-018 -0.9654022143532335 -0.2607653437899165 2.857524059865316e-018 -0.9654022143532302 -0.2607653437899289 8.572576927432834e-018 0.9999979724130936 0.002013745192837834 8.572576927432837e-018 0.9999979724130936 0.002013745192837731 -8.572576927432837e-018 -0.9999979724130936 -0.002013745192837731 -8.572576927432834e-018 -0.9999979724130936 -0.002013745192837834 1.028708566471029e-017 0.9664447927409177 -0.2568744101384266 1.028708566471013e-017 0.9664447927409161 -0.2568744101384328 -1.028708566471013e-017 -0.9664447927409161 0.2568744101384328 -1.028708566471029e-017 -0.9664447927409177 0.2568744101384266 1.714514848941008e-018 0.8670306548123127 -0.4982547978853114 1.714514848940942e-018 0.8670306548123118 -0.4982547978853128 -1.714514848940942e-018 -0.8670306548123118 0.4982547978853128 -1.714514848941008e-018 -0.8670306548123127 0.4982547978853114</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID822\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID820\">\r\n                    <float_array count=\"576\" id=\"ID823\">-29.72717074101174 0.0470661117435751 -28.69876344623657 6.098035481956177 -28.72973752489099 -6.007128032915357 -28.53282744922561 0.0470661117435786 -27.57601917625835 -5.76393195455067 -25.77444337003271 -11.65193295607063 -24.74002718810198 -11.18212484729966 -21.06255070275907 -16.50266951408773 -20.21802346491317 -15.83825019581262 -14.91540807987584 -20.22880748247863 -14.31818987674653 -19.41505375671621 -7.751770807285503 -22.57637002932572 -7.442633762966477 -21.6687475439712 -0.05986734922217803 -23.38535305011864 -0.05986734922200039 -22.44576046162567 7.327029141922557 -21.6931232707988 7.636146662239294 -22.60070086096038 14.21454295616059 -19.46214172533004 14.81174313713382 -20.27586000751904 20.13340493729391 -15.90483331120722 20.97795770652724 -16.56924435931522 24.68013205472289 -11.26361907399176 25.71453772372937 -11.73342718276273 27.5450150606774 -5.854844720127502 28.53273433475355 -0.04706980378241763 28.69872439823219 -6.09804847793303 -27.54503608652592 5.854853581020838 -25.71460380496778 11.73344963035913 -24.68017861195898 11.26362616270643 -20.97801477668778 16.56924081495793 -20.13336739113572 15.90482031523034 -14.81179119621629 20.27586473332886 -14.21458200416507 19.46211927773357 -7.636156424240395 22.60071976419947 -7.326991595764447 21.69310909336947 0.05980164344520748 22.44574392129145 0.05980164344520748 23.38537904207242 7.442587205730467 21.66875226978099 7.751723499126264 22.57635112608661 14.31814331951052 19.41505375671623 14.91535251156158 20.22880748247864 20.2179874206012 15.8382655546944 21.062597259995 16.50268132861221 24.73998964194376 11.18211185132279 25.7744043220282 11.65192704880838 27.57592606178616 5.76392604728844 28.72971049165699 6.007126260736706 29.72717074101186 -0.04706980378243859 14.36485524582849 3.003563130368353 14.34936219911609 -3.049024238966515 14.86358537050593 -0.0235349018912193 14.26636716737677 -0.02353490189120882 13.78796303089308 2.88196302364422 12.8872021610141 5.825963524404191 12.36999482097188 5.591055925661395 10.5312986299975 8.251340664306103 10.1089937103006 7.919132777347201 7.45767625578079 10.11440374123932 7.159071659755262 9.707526878358113 3.875861749563132 11.28817556304331 3.721293602865234 10.83437613489049 0.02990082172260374 11.69268952103621 0.02990082172260374 11.22287196064572 -3.818078212120197 11.30035988209974 -3.663495797882224 10.84655454668473 -7.107291002082534 9.731059638866787 -7.405895598108147 10.13793236666443 -10.06668369556786 7.952410157615169 -10.48900738834389 8.284620407478963 -12.34008930597949 5.631813081353215 -12.85730190248389 5.866724815179567 -13.77251804326296 2.927426790510419 -14.34938172311829 3.049017740978088 -14.2664137246128 0.0235330558717893 13.7725075303387 -2.927422360063751 12.85726886186469 -5.866713591381362 12.34006602736145 -5.631809536995879 10.48897885326362 -8.28462217965761 10.06670246864696 -7.952416655603611 7.405871568566908 -10.13793000375952 7.107271478080293 -9.731070862665019 3.818073331119647 -11.30035043048019 3.663514570961278 -10.8465616353994 -0.02993367461108901 -11.69267652505932 -0.0299336746110002 -11.22288023081284 -3.721316881483239 -10.8343737719856 -3.875885403642752 -11.28818501466286 -7.159094938373267 -9.707526878358106 -7.45770403993792 -10.11440374123932 -10.10901173245659 -7.919125097906307 -10.53127535137954 -8.251334757043864 -12.37001359405099 -5.591062423649832 -12.88722168501636 -5.825966478035316 -13.78800958812917 -2.881965977275335 -14.3648687624455 -3.003564016457678 -14.86358537050587 0.02353305587178755 15.27491705001234 3.052369011605174 16.15957962910908 3.052369011605017 15.2749170500125 -3.052489088735269 16.15957962910919 -3.05248908873528 8.079789814554541 1.526184505802509 7.637458525006249 -1.526244544367635 8.079789814554594 -1.52624454436764 7.637458525006169 1.526184505802587 15.27491705001257 3.052393434432461 16.1595796291089 3.052393434432479 15.27491705001234 -3.05240474671089 16.15957962910908 -3.052404746711059 8.079789814554452 1.526196717216239 7.637458525006169 -1.526202373355445 8.079789814554541 -1.526202373355529 7.637458525006284 1.52619671721623 15.27491705001257 -3.052357776085104 15.27491705001246 3.052465505274848 16.1595796291089 -3.052357776085077 16.15957962910905 3.05246550527482 7.637458525006231 1.526232752637424 8.079789814554452 -1.526178888042539 8.079789814554523 1.52623275263741 7.637458525006284 -1.526178888042552 -15.27491705001257 -3.052373540330827 -16.15957962910892 -3.05237354033085 -15.27491705001246 3.052416952581463 -16.15957962910905 3.052416952581491 -8.079789814554461 -1.526186770165425 -7.637458525006231 1.526208476290732 -8.079789814554523 1.526208476290746 -7.637458525006284 -1.526186770165414 -15.27491705001257 -3.052465806413236 -16.1595796291089 -3.052465806413212 -15.27491705001257 3.052375467693421 -16.15957962910892 3.052375467693405 -8.079789814554452 -1.526232903206606 -7.637458525006284 1.526187733846711 -8.079789814554461 1.526187733846702 -7.637458525006284 -1.526232903206618 -15.27491705001257 3.052369534568098 -15.2749170500126 -3.052461191049092 -16.1595796291089 3.052369534568117 -16.15957962910917 -3.052461191049134 -7.637458525006302 -1.526230595524546 -8.079789814554452 1.526184767284059 -8.079789814554585 -1.526230595524567 -7.637458525006284 1.526184767284049 -15.27486216783468 3.05239166573236 -15.2748497760961 -3.052427910611382 -16.15952474692822 3.052390554465293 -16.15951235518956 -3.05243276531964 -7.637424888048051 -1.526213955305691 -8.079762373464108 1.526195277232647 -8.079756177594778 -1.52621638265982 -7.637431083917338 1.52619583286618 -16.15954325896589 3.052475085430112 -15.27488067987029 3.052479826373591 -16.15953903824096 -3.052340909406815 -15.27487645914545 -3.052340530900251 -7.637440339935146 1.526239913186796 -8.079769519120479 -1.526170454703408 -7.637438229572727 -1.526170265450126 -8.079771629482943 1.526237542715056 -16.15957962910889 3.052418165791704 -15.2749170500125 3.052418165791669 -16.15957962910889 -3.052394161251984 -15.2749170500123 -3.052394161251988 -7.637458525006249 1.526209082895835 -8.079789814554443 -1.526197080625992 -7.637458525006151 -1.526197080625994 -8.079789814554443 1.526209082895852 -16.15957962910888 3.052374063043219 -15.2749170500123 3.052374063043222 -16.15957962910892 -3.052455040458447 -15.27491705001232 -3.052455040458483 -7.63745852500615 1.526187031521611 -8.079789814554459 -1.526227520229223 -7.637458525006159 -1.526227520229242 -8.079789814554442 1.52618703152161 -16.15957962910892 3.05231841192716 -15.27491705001232 3.052318411927153 -16.15957962910915 -3.052488191674192 -15.27491705001257 -3.052488191674224 -7.63745852500616 1.526159205963577 -8.079789814554577 -1.526244095837096 -7.637458525006284 -1.526244095837112 -8.079789814554461 1.52615920596358 -15.27491705001257 3.052651720185259 -15.27491705001232 -3.052197806521551 -16.15957962910915 3.05265172018527 -16.1595796291089 -3.052197806521591 -7.63745852500616 -1.526098903260776 -8.079789814554577 1.526325860092635 -8.079789814554452 -1.526098903260796 -7.637458525006284 1.52632586009263 -15.27491705001232 3.05224551536068 -15.27491705001257 -3.0525561576722 -16.1595796291089 3.052245515360641 -16.15957962910915 -3.052556157672223 -7.637458525006284 -1.5262780788361 -8.079789814554452 1.526122757680321 -8.079789814554577 -1.526278078836111 -7.63745852500616 1.52612275768034 -15.27491705001248 -3.052423131493245 -16.15957962910908 -3.052423131493118 -15.27491705001257 3.052388317079474 -16.15957962910915 3.052388317079447 -8.079789814554541 -1.526211565746559 -7.637458525006284 1.526194158539737 -8.079789814554577 1.526194158539723 -7.63745852500624 -1.526211565746623 -15.27491705001248 3.052553877330089 -15.27491705001243 -3.052249109402259 -16.15957962910908 3.052553877330226 -16.15957962910915 -3.052249109402342 -7.637458525006213 -1.52612455470113 -8.079789814554541 1.526276938665113 -8.079789814554577 -1.526124554701171 -7.63745852500624 1.526276938665044 15.27491705001243 -3.052416690054004 15.27491705001246 3.052416535812357 16.15957962910915 -3.05241669005392 16.15957962910915 3.052416535812224 7.637458525006231 1.526208267906179 8.079789814554577 -1.52620834502696 8.079789814554577 1.526208267906112 7.637458525006213 -1.526208345027002 15.27491705001246 3.052438862169398 16.15957962910905 3.052438862169345 15.27491705001246 -3.052369155945408 16.15957962910915 -3.052369155945526 8.079789814554523 1.526219431084672 7.637458525006231 -1.526184577972704 8.079789814554577 -1.526184577972763 7.637458525006231 1.526219431084699 15.27491705001246 -3.052388094537107 15.27491705001264 3.05243197721078 16.15957962910905 -3.052388094537172 16.15957962910919 3.052431977210855 7.63745852500632 1.52621598860539 8.079789814554523 -1.526194047268586 8.079789814554594 1.526215988605428 7.637458525006231 -1.526194047268554 16.15957962910915 3.052318676844975 16.15957962910919 -3.052517161824061 15.27491705001257 3.052318676844949 15.27491705001264 -3.052517161824126 8.079789814554594 -1.526258580912031 7.637458525006284 1.526159338422474 7.63745852500632 -1.526258580912063 8.079789814554577 1.526159338422487 16.1595796291089 3.052433055023369 16.15957962910915 -3.052362761715934 15.27491705001246 3.05243305502342 15.27491705001257 -3.052362761715977 8.079789814554575 -1.526181380857967 7.63745852500623 1.52621652751171 7.637458525006283 -1.526181380857988 8.07978981455445 1.526216527511684 15.27491705001232 3.052501452363784 16.15957962910901 3.052501452363778 15.27491705001246 -3.052324167367494 16.1595796291089 -3.052324167367532 8.079789814554506 1.526250726181889 7.637458525006231 -1.526162083683747 8.079789814554452 -1.526162083683766 7.63745852500616 1.526250726181892 15.27491705001232 3.052376857360129 16.15957962910922 3.052376857360143 15.27491705001232 -3.052456883429417 16.15957962910901 -3.052456883429418 8.07978981455461 1.526188428680072 7.637458525006159 -1.526228441714708 8.079789814554504 -1.526228441714709 7.637458525006159 1.526188428680064 16.15957962910908 3.052455255490922 16.15957962910922 -3.052351123981224 15.2749170500125 3.052455255490937 15.27491705001232 -3.052351123981252 8.079789814554612 -1.526175561990612 7.637458525006249 1.526227627745469 7.63745852500616 -1.526175561990626 8.079789814554541 1.526227627745461 15.2749170500125 3.052429041414679 16.15957962910919 3.052429041414678 15.2749170500125 -3.052393678245672 16.15957962910908 -3.052393678245677 8.079789814554593 1.526214520707339 7.637458525006248 -1.526196839122836 8.079789814554539 -1.526196839122838 7.637458525006248 1.52621452070734</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"288\" source=\"#ID823\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID819\">\r\n                    <input semantic=\"POSITION\" source=\"#ID817\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID818\"/>\r\n                </vertices>\r\n                <triangles count=\"96\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID819\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID820\"/>\r\n                    <p>0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 14 14 15 15 13 13 13 13 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 24 24 25 25 23 23 22 22 23 23 25 25 3 3 1 1 26 26 1 1 27 27 26 26 26 26 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 34 34 33 33 35 35 33 33 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 24 24 24 24 46 46 25 25 47 47 25 25 46 46 96 96 97 97 98 98 99 99 98 98 97 97 104 104 105 105 96 106 97 107 96 106 105 105 104 112 108 113 105 114 109 115 105 114 108 113 112 120 113 121 108 122 109 123 108 122 113 121 116 128 117 129 112 130 113 131 112 130 117 129 116 136 120 137 117 138 121 139 117 138 120 137 120 144 124 145 121 146 125 147 121 146 124 145 125 152 124 153 128 154 129 155 128 154 124 153 128 160 129 161 132 162 133 163 132 162 129 161 132 168 133 169 136 170 137 171 136 170 133 169 136 176 137 177 140 178 141 179 140 178 137 177 141 184 144 185 140 186 145 187 140 186 144 185 144 192 148 193 145 194 149 195 145 194 148 193 152 200 153 201 148 202 149 203 148 202 153 201 152 208 156 209 153 210 157 211 153 210 156 209 156 216 160 217 157 218 161 219 157 218 160 217 164 224 165 225 160 226 161 227 160 226 165 225 164 232 168 233 165 234 169 235 165 234 168 233 172 240 169 241 173 242 168 243 173 242 169 241 176 248 172 249 177 250 173 251 177 250 172 249 180 256 181 257 177 258 176 259 177 258 181 257 184 264 185 265 180 266 181 267 180 266 185 265 188 272 185 273 189 274 184 275 189 274 185 273 98 280 99 281 189 282 188 283 189 282 99 281</p>\r\n                </triangles>\r\n                <triangles count=\"96\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID819\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID820\"/>\r\n                    <p>48 48 49 49 50 50 49 49 48 48 51 51 51 51 48 48 52 52 52 52 48 48 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59 58 58 59 59 60 60 60 60 59 59 61 61 60 60 61 61 62 62 62 62 61 61 63 63 62 62 63 63 64 64 64 64 63 63 65 65 65 65 63 63 66 66 65 65 66 66 67 67 67 67 66 66 68 68 67 67 68 68 69 69 69 69 68 68 70 70 69 69 70 70 71 71 71 71 70 70 72 72 71 71 72 72 73 73 49 49 74 74 75 75 74 74 49 49 51 51 75 75 74 74 76 76 75 75 76 76 77 77 77 77 76 76 78 78 77 77 78 78 79 79 79 79 78 78 80 80 79 79 80 80 81 81 81 81 80 80 82 82 81 81 82 82 83 83 83 83 82 82 84 84 83 83 84 84 85 85 83 83 85 85 86 86 86 86 85 85 87 87 86 86 87 87 88 88 88 88 87 87 89 89 88 88 89 89 90 90 90 90 89 89 91 91 90 90 91 91 92 92 92 92 91 91 93 93 92 92 93 93 94 94 94 94 93 93 73 73 94 94 73 73 72 72 94 94 72 72 95 95 100 100 101 101 102 102 101 101 100 100 103 103 106 108 103 109 100 110 103 109 106 108 107 111 110 116 106 117 111 118 106 117 110 116 107 119 114 124 110 125 111 126 110 125 114 124 115 127 118 132 115 133 114 134 115 133 118 132 119 135 122 140 118 141 123 142 118 141 122 140 119 143 126 148 123 149 127 150 123 149 126 148 122 151 126 156 130 157 131 158 130 157 126 156 127 159 131 164 134 165 135 166 134 165 131 164 130 167 135 172 138 173 139 174 138 173 135 172 134 175 139 180 142 181 143 182 142 181 139 180 138 183 146 188 142 189 147 190 142 189 146 188 143 191 150 196 147 197 151 198 147 197 150 196 146 199 154 204 150 205 151 206 150 205 154 204 155 207 158 212 154 213 159 214 154 213 158 212 155 215 162 220 159 221 163 222 159 221 162 220 158 223 166 228 162 229 163 230 162 229 166 228 167 231 170 236 166 237 171 238 166 237 170 236 167 239 171 244 174 245 170 246 174 245 171 244 175 247 175 252 178 253 174 254 178 253 175 252 179 255 182 260 178 261 179 262 178 261 182 260 183 263 186 268 183 269 182 270 183 269 186 268 187 271 186 276 190 277 187 278 190 277 186 276 191 279 102 284 190 285 191 286 190 285 102 284 101 287</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID824\">\r\n            <mesh>\r\n                <source id=\"ID825\">\r\n                    <float_array count=\"288\" id=\"ID829\">0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035627 -0.3578613696232667 1.324001740206996 0.8481914425151409 -0.35666972965487 1.31956378430982 0.848191442515148 0.680868640605695 1.185278447723705 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035609 0.6831636119784472 1.189256688460091 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151351 -0.6860480580346522 1.182286995116669 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035627 -0.6883468591155371 1.186265836591588 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151387 0.9644406560028058 0.9686694797989038 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151387 0.6860518126504815 -1.182286394378136 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035627 0.6883464085616424 -1.186264860391474 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151333 -0.6808676644055873 -1.185277922077488 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151351 -0.3508928026645748 -1.321112338057901 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461098018 -1.366914445870862 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035609 0.002993367461099794 -1.371508293416812 0.8481914425151387 0.002993367461098018 -1.366914445870862</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID829\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID826\">\r\n                    <float_array count=\"288\" id=\"ID830\">-0.004280981954898488 0.002184853357166072 -0.9999884497379504 -0.00428062881210491 -0.2567048492765375 -0.9664803653333486 -0.004280981952864871 0.002183299616824533 -0.999988453131486 -0.004280628810128404 -0.2567062461107217 -0.9664799943220406 0.00428062881210491 0.2567048492765375 0.9664803653333486 0.004280981952864871 -0.002183299616824533 0.999988453131486 0.004280628810128404 0.2567062461107217 0.9664799943220406 0.004280981954898488 -0.002184853357166072 0.9999884497379504 -0.00428163879072645 0.2609252439511864 -0.9653495142373459 -0.004281638786373565 0.2609241043035803 -0.9653498222730853 0.004281638786373565 -0.2609241043035803 0.9653498222730853 0.00428163879072645 -0.2609252439511864 0.9653495142373459 -0.00428036937316088 -0.4981009455189371 -0.867108486010355 -0.004280369372364794 -0.4981020763274863 -0.8671078364288279 0.004280369372364794 0.4981020763274863 0.8671078364288279 0.00428036937316088 0.4981009455189371 0.867108486010355 -0.004282256413127314 0.5018847979083912 -0.8649238763662763 -0.004282256411797012 0.5018836420376206 -0.864924547076262 0.004282256411797012 -0.5018836420376206 0.864924547076262 0.004282256413127314 -0.5018847979083912 0.8649238763662763 -0.004279848671315645 -0.7055541584054808 -0.708643078320874 -0.004279848666279009 -0.705555224291424 -0.7086420170794786 0.004279848666279009 0.705555224291424 0.7086420170794786 0.004279848671315645 0.7055541584054808 0.708643078320874 -0.004281892798924736 0.7086451305096495 -0.7055520848236652 -0.0042818928041386 0.7086441543526577 -0.7055530652586102 0.004281892798924736 -0.7086451305096495 0.7055520848236652 0.0042818928041386 -0.7086441543526577 0.7055530652586102 -0.004279390712496793 -0.8649233212950592 -0.5018857789328697 -0.004279390712642355 -0.8649226644398191 -0.5018869109206303 0.004279390712496793 0.8649233212950592 0.5018857789328697 0.004279390712642355 0.8649226644398191 0.5018869109206303 -0.004281359113397748 0.8671102266169878 -0.4980979069022258 -0.004281359112962919 0.8671110173025061 -0.4980965304403946 0.004281359113397748 -0.8671102266169878 0.4980979069022258 0.004281359112962919 -0.8671110173025061 0.4980965304403946 -0.004280028371695556 -0.965348902363104 -0.2609275341229588 -0.004280028364445989 -0.9653485192918171 -0.260928951360894 0.004280028371695556 0.965348902363104 0.2609275341229588 0.004280028364445989 0.9653485192918171 0.260928951360894 -0.004281468576927181 0.9664802791478765 -0.2567051597554433 -0.004281468578594852 0.9664806579291112 -0.2567037336614381 0.004281468576927181 -0.9664802791478765 0.2567051597554433 0.004281468578594852 -0.9664806579291112 0.2567037336614381 -0.004280447389466799 -0.9999884506049243 -0.002185503811303777 -0.00428044738673919 -0.9999884540002806 -0.002183949701340417 0.004280447389466799 0.9999884506049243 0.002185503811303777 0.00428044738673919 0.9999884540002806 0.002183949701340417 -0.004280716988099828 0.9999884543797312 0.002183247421708556 -0.004280716977420427 0.9999884509864663 0.002184801100054285 0.004280716988099828 -0.9999884543797312 -0.002183247421708556 0.004280716977420427 -0.9999884509864663 -0.002184801100054285 -0.004279849309618837 -0.9664798642304419 0.2567067488925707 -0.004279849305227373 -0.9664794597692433 0.256708271651063 0.004279849309618837 0.9664798642304419 -0.2567067488925707 0.004279849305227373 0.9664794597692433 -0.256708271651063 -0.004279550911469715 0.9653495572584627 0.2609251190377931 -0.004279550914307764 0.9653499365637356 0.2609237157108637 0.004279550911469715 -0.9653495572584627 -0.2609251190377931 0.004279550914307764 -0.9653499365637356 -0.2609237157108637 -0.004279366945403445 -0.8671083352607096 0.4981012165614008 -0.004279366943950962 -0.8671074945846607 0.4981026800306053 0.004279366945403445 0.8671083352607096 -0.4981012165614008 0.004279366943950962 0.8671074945846607 -0.4981026800306053 -0.004280137578717258 0.8649244175304505 0.5018838833653839 -0.004280137569418133 0.8649251493016499 0.5018826222613267 0.004280137578717258 -0.8649244175304505 -0.5018838833653839 0.004280137569418133 -0.8649251493016499 -0.5018826222613267 -0.004279503727668084 -0.7086453482994729 0.7055518805738978 -0.004279503731088207 -0.708644065358699 0.7055531691373169 0.004279503727668084 0.7086453482994729 -0.7055518805738978 0.004279503731088207 0.708644065358699 -0.7055531691373169 -0.004280820620104977 0.7055523445921659 0.7086448783525611 -0.004280820622493526 0.7055537732692776 0.7086434559073291 0.004280820620104977 -0.7055523445921659 -0.7086448783525611 0.004280820622493526 -0.7055537732692776 -0.7086434559073291 -0.004279856787992766 -0.5018869261655592 0.8649226532875417 -0.004279856789499468 -0.5018853069956759 0.8649235928379554 0.004279856789499468 0.5018853069956759 -0.8649235928379554 0.004279856787992766 0.5018869261655592 -0.8649226532875417 -0.004280325596508693 0.4981002179615462 0.8671089041633976 -0.004280325599923767 0.4981013730755701 0.8671082406210833 0.004280325599923767 -0.4981013730755701 -0.8671082406210833 0.004280325596508693 -0.4981002179615462 -0.8671089041633976 -0.004280271874951132 -0.2609268930036005 0.9653490745736302 -0.004280271879293935 -0.2609251102153328 0.965349556446656 0.004280271874951132 0.2609268930036005 -0.9653490745736302 0.004280271879293935 0.2609251102153328 -0.965349556446656 -0.004280237446015731 0.256704930550933 0.9664803454795375 -0.004280237443075813 0.2567064328691884 0.966479946450524 0.004280237443075813 -0.2567064328691884 -0.966479946450524 0.004280237446015731 -0.256704930550933 -0.9664803454795375 -0.004280534258190548 -0.002185305100490302 0.9999884506673475 -0.004280534257630148 -0.002183750939241975 0.9999884540624979 0.004280534257630148 0.002183750939241975 -0.9999884540624979 0.004280534258190548 0.002185305100490302 -0.9999884506673475</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID830\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID828\">\r\n                    <float_array count=\"384\" id=\"ID831\">16.95653956603488 2.371301515704383 16.72264492845211 -3.239903109249033 -4.493906290557893 2.933910303838056 -4.728586341386173 -2.696140844848241 8.361322464226053 -1.619951554624516 -2.246953145278947 1.466955151919028 -2.364293170693086 -1.348070422424121 8.478269783017442 1.185650757852192 -16.72708843421687 -3.225761471737048 -16.95324444480733 2.385627098572262 4.724869775837585 -2.700043436932254 4.497951786028732 2.930243137362552 -8.476622222403663 1.192813549286131 2.362434887918793 -1.350021718466127 2.248975893014366 1.465121568681276 -8.363544217108437 -1.612880735868524 16.81096911007859 -2.94358313064525 -4.650377267339515 -2.779097278612486 16.8845397929188 2.670381715873585 -4.576559850465017 2.853718301221435 -2.325188633669757 -1.389548639306243 8.442269896459401 1.335190857936793 -2.288279925232509 1.426859150610718 8.405484555039294 -1.471791565322625 -16.81138055951746 -2.942128119354722 -16.88407653528399 2.671868009696685 4.649988302077555 -2.779450835817336 4.577047968530231 2.853401927377038 -8.442038267641994 1.335934004848342 2.324994151038777 -1.389725417908668 2.288523984265115 1.426700963688519 -8.405690279758728 -1.471064059677361 16.82856995092033 -2.880655093693082 -4.633528105959257 -2.796443786905329 16.86821789600814 2.73349127372693 -4.593746885068567 2.836588465561602 -2.316764052979628 -1.398221893452664 8.434108948004072 1.366745636863465 -2.296873442534284 1.418294232780801 8.414284975460165 -1.440327546846541 -16.86799572512858 2.733954476238326 4.593973352083259 2.836523718218725 -16.82868561620813 -2.880198764756717 4.633415836383876 -2.796499481809613 2.296986676041629 1.418261859109362 -8.414342808104063 -1.440099382378358 2.316707918191938 -1.398249740904807 -8.433997862564288 1.366977238119163 -4.601950849363642 2.828377057234473 16.86025756741855 2.763878992145286 -4.625368403466258 -2.804667302171011 16.83691785074735 -2.850323934358243 8.430128783709277 1.381939496072643 -2.312684201733129 -1.402333651085505 8.418458925373676 -1.425161967179121 -2.300975424681821 1.414188528617236 4.602104112393668 2.82847806387397 4.625321723249752 -2.804583041773303 -16.86010532359727 2.764157331875902 -16.83696537367468 -2.850054064282261 2.312660861624876 -1.402291520886652 -8.430052661798635 1.382078665937951 -8.41848268683734 -1.42502703214113 2.301052056196834 1.414239031936985 -4.607345360204824 2.822837129837691 16.85496166571006 2.783686677685021 -4.620007726224934 -2.810278447092262 16.84234184440923 -2.830551225302984 8.42748083285503 1.391843338842511 -2.310003863112467 -1.405139223546131 8.421170922204613 -1.415275612651492 -2.303672680102412 1.411418564918846 4.60747210773349 2.823105087936984 4.619984400096286 -2.809976726827539 -16.85483529246015 2.784011826299676 -16.84236541118916 -2.830188792266932 2.309992200048143 -1.404988363413769 -8.427417646230072 1.392005913149838 -8.421182705594578 -1.415094396133466 2.303736053866745 1.411552543968492 16.85066790715681 2.799634925290195 16.84661280771467 -2.814593484597931 -4.611683716472709 2.81851480107025 -4.615752153365286 -2.814589810342543 8.423306403857335 -1.407296742298966 -2.305841858236355 1.409257400535125 -2.307876076682643 -1.407294905171272 8.425333953578404 1.399817462645097 4.611775836897464 2.818552915409719 4.615710287708393 -2.814561377896678 -16.85057595863294 2.799689708006414 -16.84665468625737 -2.814561337141796 2.307855143854197 -1.407280688948339 -8.425287979316471 1.399844854003207 -8.423327343128683 -1.407280668570898 2.305887918448732 1.409276457704859 16.84669296982185 2.814502371962669 16.85061274891556 -2.799737230245905 -4.615671991269269 2.81450515557137 -4.611738806717524 -2.818601982494837 8.425306374457781 -1.399868615122952 -2.307835995634635 1.407252577785685 -2.305869403358762 -1.409300991247418 8.423346484910923 1.407251185981335 -16.8466368184738 2.8146110332504 4.615728155487668 2.814609614993135 -16.85069104536705 -2.799615976508483 4.611660413818911 -2.818490959721189 2.307864077743834 1.407304807496568 -8.425345522683527 -1.399807988254242 2.305830206909456 -1.409245479860595 -8.423318409236899 1.4073055166252 16.84241677434491 2.830407356558213 16.85488174045585 -2.783822084320475 -4.619932794077956 2.810191868402641 -4.607425572770014 -2.822910867387297 8.427440870227924 -1.391911042160237 -2.309966397038978 1.405095934201321 -2.303712786385007 -1.411455433693649 8.421208387172452 1.415203678279107 -16.84234483497815 2.830335643376079 4.620004557216717 2.810058274546969 -16.85496420879204 -2.783885263391031 4.607342998617686 -2.823023215688412 2.310002278608359 1.405029137273484 -8.427482104396022 -1.391942631695516 2.303671499308843 -1.411511607844206 -8.421172417489073 1.41516782168804 16.83702861702645 2.850080276962824 16.86015697964571 -2.764128945178626 -4.625258428899851 2.804623625608292 -4.602052139363532 -2.828459741286155 8.430078489822854 -1.382064472589313 -2.312629214449926 1.402311812804146 -2.301026069681766 -1.414229870643077 8.418514308513226 1.425040138481412 -16.83687108925824 2.850382876463817 4.625415304190483 2.804724666538888 -16.86021964902263 -2.763862037364986 4.601989023202723 -2.828331854061645 2.312707652095241 1.402362333269444 -8.430109824511312 -1.381931018682493 2.300994511601362 -1.414165927030822 -8.418435544629118 1.425191438231908 16.86805470199861 -2.733989105220428 -4.593914234547086 -2.836549647844413 16.82876921869526 2.880127300163432 -4.633332011394352 2.796435274276993 -2.296957117273543 -1.418274823922207 8.414384609347628 1.440063650081716 -2.316666005697176 1.398217637138496 8.434027350999303 -1.366994552610214 -16.86820930785124 -2.733438833984344 -16.82855802294511 2.880666116932571 4.593755417573123 -2.836541457565994 4.633540441894999 2.796500506525937 -8.414279011472553 1.440333058466285 2.296877708786562 -1.418270728782997 2.316770220947499 1.398250253262969 -8.434104653925619 -1.366719416992172 16.81145811289813 2.942066762377245 16.88411675624425 -2.671921487800922 -4.649910896461154 2.779418514975413 -4.577007912454192 -2.853430276512045 8.442058378122125 -1.335960743900461 -2.324955448230577 1.389709257487706 -2.288503956227096 -1.426715138256022 8.405729056449063 1.471033381188622 -16.88454891053257 -2.670436317040372 -16.81098620107458 2.943539550568779 4.576551096657347 -2.853740970625229 4.650360429397084 2.779075221069198 -8.405493100537289 1.47176977528439 2.288275548328674 -1.426870485312614 2.325180214698542 1.389537610534599 -8.442274455266283 -1.335218158520186 16.95324496794547 -2.385640017490524 -4.497954252672803 -2.930183803648829 16.72711886388277 3.225770011282844 -4.724839231514265 2.700053591480886 -2.248977126336401 -1.465091901824415 8.363559431941386 1.612885005641422 -2.362419615757132 1.350026795740443 8.476622483972733 -1.192820008745262 -16.95654291422808 -2.371371245078102 -16.72266364813068 3.23986216331764 4.493904609166451 -2.933941311184089 4.728569530450034 2.696148379731193 -8.361331824065339 1.61993108165882 2.246952304583226 -1.466970655592045 2.364284765225017 1.348074189865597 -8.478271457114039 -1.185685622539051</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID831\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID827\">\r\n                    <input semantic=\"POSITION\" source=\"#ID825\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID826\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID827\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID828\"/>\r\n                    <p>0 0 1 1 2 2 3 3 2 2 1 1 8 8 0 9 9 10 2 11 9 10 0 9 12 16 13 17 1 18 3 19 1 18 13 17 16 24 8 25 17 26 9 27 17 26 8 25 20 32 21 33 12 34 13 35 12 34 21 33 16 40 17 41 24 42 25 43 24 42 17 41 21 48 20 49 28 50 29 51 28 50 20 49 25 56 32 57 24 58 33 59 24 58 32 57 28 64 29 65 36 66 37 67 36 66 29 65 32 72 40 73 33 74 41 75 33 74 40 73 37 80 44 81 36 82 45 83 36 82 44 81 40 88 48 89 41 90 49 91 41 90 48 89 44 96 52 97 45 98 53 99 45 98 52 97 49 104 48 105 56 106 57 107 56 106 48 105 52 112 60 113 53 114 61 115 53 114 60 113 56 120 57 121 64 122 65 123 64 122 57 121 60 128 68 129 61 130 69 131 61 130 68 129 64 136 65 137 72 138 73 139 72 138 65 137 76 144 77 145 68 146 69 147 68 146 77 145 80 152 72 153 81 154 73 155 81 154 72 153 76 160 84 161 77 162 85 163 77 162 84 161 88 168 80 169 89 170 81 171 89 170 80 169 92 176 93 177 84 178 85 179 84 178 93 177 92 184 88 185 93 186 89 187 93 186 88 185</p>\r\n                </triangles>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID827\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID828\"/>\r\n                    <p>4 4 5 5 6 6 5 5 4 4 7 7 7 12 10 13 5 14 10 13 7 12 11 15 14 20 4 21 6 22 4 21 14 20 15 23 11 28 18 29 10 30 18 29 11 28 19 31 22 36 15 37 14 38 15 37 22 36 23 39 18 44 26 45 27 46 26 45 18 44 19 47 23 52 30 53 31 54 30 53 23 52 22 55 34 60 26 61 35 62 26 61 34 60 27 63 31 68 38 69 39 70 38 69 31 68 30 71 42 76 35 77 43 78 35 77 42 76 34 79 46 84 38 85 47 86 38 85 46 84 39 87 50 92 43 93 51 94 43 93 50 92 42 95 54 100 47 101 55 102 47 101 54 100 46 103 50 108 58 109 59 110 58 109 50 108 51 111 62 116 55 117 63 118 55 117 62 116 54 119 59 124 66 125 67 126 66 125 59 124 58 127 70 132 63 133 71 134 63 133 70 132 62 135 67 140 74 141 75 142 74 141 67 140 66 143 78 148 70 149 71 150 70 149 78 148 79 151 74 156 82 157 75 158 82 157 74 156 83 159 86 164 78 165 87 166 78 165 86 164 79 167 83 172 90 173 82 174 90 173 83 172 91 175 94 180 86 181 87 182 86 181 94 180 95 183 91 188 94 189 90 190 94 189 91 188 95 191</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID832\">\r\n            <mesh>\r\n                <source id=\"ID833\">\r\n                    <float_array count=\"288\" id=\"ID837\">-0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID837\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID834\">\r\n                    <float_array count=\"288\" id=\"ID838\">-0.9082492736520922 -0.1075708369032307 -0.4043658887176134 -0.9082500329767456 0.0007516867371791146 -0.4184271890840621 -0.9082492745359263 -0.1074503430176522 -0.4043979217186361 -0.9082500344776737 0.0008765598473410654 -0.4184269428635523 0.9082500329767456 -0.0007516867371791146 0.4184271890840621 0.9082492745359263 0.1074503430176522 0.4043979217186361 0.9082500344776737 -0.0008765598473410654 0.4184269428635523 0.9082492736520922 0.1075708369032307 0.4043658887176134 -0.9082506050830315 0.1091435923435764 -0.4039412266860695 -0.9082506046354215 0.1090229161292429 -0.4039738146688064 0.9082506050830315 -0.1091435923435764 0.4039412266860695 0.9082506046354215 -0.1090229161292429 0.4039738146688064 -0.9082482405359982 -0.2085640638359936 -0.3627480735158756 -0.9082482427168129 -0.2084560405691885 -0.3628101552493231 0.9082482427168129 0.2084560405691885 0.3628101552493231 0.9082482405359982 0.2085640638359936 0.3627480735158756 -0.9082491615154812 0.2099738865158217 -0.3619315233409027 -0.9082491645414247 0.209866585626633 -0.3619937449006862 0.9082491615154812 -0.2099738865158217 0.3619315233409027 0.9082491645414247 -0.209866585626633 0.3619937449006862 -0.908246568910591 -0.2953461497473803 -0.2964098883160561 -0.9082465712478778 -0.2952584160994148 -0.2964972740834871 0.9082465712478778 0.2952584160994148 0.2964972740834871 0.908246568910591 0.2953461497473803 0.2964098883160561 -0.9082473909658394 0.2964969062159364 -0.295256263960858 -0.9082473912470552 0.2964072177461657 -0.2953463010787428 0.9082473909658394 -0.2964969062159364 0.295256263960858 0.9082473912470552 -0.2964072177461657 0.2953463010787428 -0.9082474712734822 -0.3619966089766116 -0.2098689734447648 -0.9082474673790382 -0.3619345433051908 -0.2099760090153772 0.9082474673790382 0.3619345433051908 0.2099760090153772 0.9082474712734822 0.3619966089766116 0.2098689734447648 -0.9082484639023035 0.3628095932970937 -0.2084560549149473 -0.908248460723703 0.3627472515016051 -0.2085645346674632 0.9082484639023035 -0.3628095932970937 0.2084560549149473 0.908248460723703 -0.3627472515016051 0.2085645346674632 -0.9082511440516279 -0.403972551902783 -0.1090231013962746 -0.9082511405035336 -0.4039399392223229 -0.1091439016853281 0.9082511405035336 0.4039399392223229 0.1091439016853281 0.9082511440516279 0.403972551902783 0.1090231013962746 -0.9082495969998886 0.4043972754492359 -0.1074500495987548 -0.908249596623721 0.404365212715167 -0.1075706511027334 0.9082495969998886 -0.4043972754492359 0.1074500495987548 0.908249596623721 -0.404365212715167 0.1075706511027334 -0.9082514553289773 -0.4184241025164883 -0.0007512163908289862 -0.9082514585655601 -0.4184238527729456 -0.0008760389129415635 0.9082514585655601 0.4184238527729456 0.0008760389129415635 0.9082514553289773 0.4184241025164883 0.0007512163908289862 -0.9082505851953316 0.4184257471815965 0.0008766914283048339 -0.9082505828752954 0.418425995279139 0.0007517854403690022 0.9082505851953316 -0.4184257471815965 -0.0008766914283048339 0.9082505828752954 -0.418425995279139 -0.0007517854403690022 -0.9082490302929679 -0.4043664017146101 0.1075709632580378 -0.9082490333533763 -0.4043984855098431 0.1074502597949525 0.9082490302929679 0.4043664017146101 -0.1075709632580378 0.9082490333533763 0.4043984855098431 -0.1074502597949525 -0.9082505682264853 0.4039407217202315 0.1091457679088157 -0.9082505698761868 0.4039735439268114 0.1090242089024017 0.9082505698761868 -0.4039735439268114 -0.1090242089024017 0.9082505682264853 -0.4039407217202315 -0.1091457679088157 -0.9082486494484744 -0.3627467689190975 0.2085645521505931 -0.9082486481231678 -0.3628091637581442 0.2084559998550159 0.9082486494484744 0.3627467689190975 -0.2085645521505931 0.9082486481231678 0.3628091637581442 -0.2084559998550159 -0.9082483661589828 0.3619328652568282 0.209975013790977 -0.9082483686281029 0.3619950655307562 0.2098677522054624 0.9082483686281029 -0.3619950655307562 -0.2098677522054624 0.9082483661589828 -0.3619328652568282 -0.209975013790977 -0.9082506197478876 -0.2964042575108705 0.2953393435643274 -0.9082506167666825 -0.2964919493568599 0.2952513185567682 0.9082506197478876 0.2964042575108705 -0.2953393435643274 0.9082506167666825 0.2964919493568599 -0.2952513185567682 -0.90824801524225 0.295256581095625 0.2964946780774259 -0.9082480131803266 0.2953441289205035 0.2964074764006107 0.9082480131803266 -0.2953441289205035 -0.2964074764006107 0.90824801524225 -0.295256581095625 -0.2964946780774259 -0.9082502482972585 -0.2098653041311184 0.3619917686770259 -0.9082502533146946 -0.2099721613881187 0.3619297843446915 0.9082502482972585 0.2098653041311184 -0.3619917686770259 0.9082502533146946 0.2099721613881187 -0.3619297843446915 -0.9082493159583445 0.2084540785156279 0.3628085958344974 -0.9082493143264231 0.2085638932647763 0.3627454830205625 0.9082493143264231 -0.2085638932647763 -0.3627454830205625 0.9082493159583445 -0.2084540785156279 -0.3628085958344974 -0.9082485879667209 -0.1090232989628911 0.4039782453792602 -0.9082485869772989 -0.1091444703673541 0.4039455270726108 0.9082485879667209 0.1090232989628911 -0.4039782453792602 0.9082485869772989 0.1091444703673541 -0.4039455270726108 -0.9082511981082746 0.1074499269831152 0.4043937120260486 -0.9082511946939681 0.107569634709001 0.4043618936368158 0.9082511946939681 -0.107569634709001 -0.4043618936368158 0.9082511981082746 -0.1074499269831152 -0.4043937120260486 -0.9082509090819749 -0.0008773896933384607 0.4184250426768125 -0.9082509125925561 -0.000752468406024658 0.4184252783545552 0.9082509090819749 0.0008773896933384607 -0.4184250426768125 0.9082509125925561 0.000752468406024658 -0.4184252783545552</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID838\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID836\">\r\n                    <float_array count=\"192\" id=\"ID839\">-0.4760628845307824 14.03057851338626 -4.293205956690974 12.84291939320605 -0.4520778451937232 13.27480097802665 -4.542699139165971 13.57301502275557 0.5509308441970694 14.02887609692691 4.364922551878471 12.82793928468497 4.615115580867611 13.5578951401443 0.5262263144851437 13.27311290434169 -5.460294461359973 13.36213689623786 -8.700673353099646 11.37978305347014 -5.167760694787276 12.6419962786728 -9.200497557095831 12.02549805985014 5.529599615995658 13.34448409699993 8.762464862805501 11.35038498428026 9.262826653654555 11.9958490506677 5.236482058585006 12.62448183080072 -9.850935596277633 11.70231789836429 -12.28897078609038 9.104402023815595 -9.321713719835559 11.07126571357382 -12.99216162462306 9.619703772942543 9.908805909503144 11.67203388437624 12.33621713888454 9.064756673517946 13.03968184989838 9.57981702183138 9.379208433918393 11.04116980481799 -13.3525193171996 9.309346053102276 -14.85691765236203 6.30484509550176 -12.63441802294289 8.80693061639283 -15.70518465917443 6.660142705593261 13.39616309803314 9.270430520945231 14.8880027823071 6.259267456761666 15.73641299818794 6.614399205461904 12.67792072561648 8.768150175948428 -15.85447136542427 6.437527688275801 -16.37252037394564 3.234169117888085 -15.00127260492471 6.089614567846071 -17.30591011175082 3.414281264193431 15.88339658588965 6.393267460950476 16.38777273810398 3.18595789568538 17.32115792288254 3.365996716390026 15.03012559609594 6.045417211916162 -17.34754144405634 3.280923251307002 -16.88054368036996 0.07271501916888513 -16.4134956469478 3.102928287245775 -17.84158673383741 0.07271931827509812 17.36184157354511 3.233666018167433 16.88077042213474 0.02413597414263838 17.84180938374336 0.0241319283408874 16.42781917250773 3.055684031940567 -16.88076908897763 -0.02413745264056083 -17.36185361655219 -3.23366717946566 -16.42782986626323 -3.055684287849731 -17.84181214267261 -0.02413337543565036 16.88054701756033 -0.07271698671732821 17.34751954079551 -3.280922069425896 17.84158597896712 -0.07272124314771755 16.4134818910754 -3.102935319425331 -16.3877919244592 -3.185951882083677 -15.88340587967561 -6.393257993900284 -15.03015255389675 -6.045413601251539 -17.3211786305619 -3.365991047406652 16.37250085551697 -3.234178633475433 15.85445263950981 -6.437525411168315 17.3058822788614 -3.414283177660608 15.00124014052953 -6.089609450990861 -14.8880059792257 -6.259281506746234 -13.39617422300147 -9.270432463617809 -12.67787981034289 -8.768156485934776 -15.73639731955359 -6.614409163697935 14.85687775431837 -6.30484505352637 13.35248086666035 -9.309357964262242 15.70515852596362 -6.660145524742545 12.63438003713352 -8.806939261801423 -12.33617009607184 -9.064760126010743 -9.908816153169438 -11.67204170025707 -9.379206298367013 -11.04117126199523 -13.03968789063718 -9.579816255505966 12.28893385344979 -9.104409654094303 9.850928337812352 -11.70231246863167 12.99212427033344 -9.61971454210361 9.321679514522458 -11.07126762305999 -8.762497622106514 -11.35038698937884 -5.529610632032458 -13.34446963758883 -5.236511265108912 -12.62449364339831 -9.262873717913241 -11.99585669306635 8.700643486461816 -11.37978310462293 5.460273663042221 -13.36213548128276 9.200495491064043 -12.02549128880329 5.167749101606612 -12.64198777028426 -0.5262691202224505 -13.27310290361913 -4.615130655374084 -13.55787759450954 -0.5509741484817764 -14.02888433511281 -4.364955882694339 -12.82794829884673 4.293193018885061 -12.84290598107812 0.4760213753747136 -14.03057938515311 4.542676807114459 -13.57300831123361 0.4520367491142101 -13.27478359432735</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID839\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID835\">\r\n                    <input semantic=\"POSITION\" source=\"#ID833\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID834\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID835\"/>\r\n                    <p>0 1 2 3 2 1 3 1 8 9 8 1 12 0 13 2 13 0 8 9 16 17 16 9 20 12 21 13 21 12 16 17 24 25 24 17 28 20 29 21 29 20 24 25 32 33 32 25 36 28 37 29 37 28 32 33 40 41 40 33 44 36 45 37 45 36 40 41 48 49 48 41 44 45 52 53 52 45 56 48 57 49 57 48 52 53 60 61 60 53 64 56 65 57 65 56 60 61 68 69 68 61 72 64 73 65 73 64 68 69 76 77 76 69 80 72 81 73 81 72 76 77 84 85 84 77 88 80 89 81 89 80 85 92 84 93 84 92 92 88 93 89 93 88</p>\r\n                </triangles>\r\n                <triangles count=\"48\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID835\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID836\"/>\r\n                    <p>4 0 5 1 6 2 5 1 4 0 7 3 4 4 10 5 11 6 10 5 4 4 6 7 7 8 14 9 5 10 14 9 7 8 15 11 11 12 18 13 19 14 18 13 11 12 10 15 15 16 22 17 14 18 22 17 15 16 23 19 19 20 26 21 27 22 26 21 19 20 18 23 23 24 30 25 22 26 30 25 23 24 31 27 27 28 34 29 35 30 34 29 27 28 26 31 31 32 38 33 30 34 38 33 31 32 39 35 35 36 42 37 43 38 42 37 35 36 34 39 39 40 46 41 38 42 46 41 39 40 47 43 43 44 50 45 51 46 50 45 43 44 42 47 46 48 54 49 55 50 54 49 46 48 47 51 50 52 58 53 51 54 58 53 50 52 59 55 55 56 62 57 63 58 62 57 55 56 54 59 59 60 66 61 58 62 66 61 59 60 67 63 63 64 70 65 71 66 70 65 63 64 62 67 67 68 74 69 66 70 74 69 67 68 75 71 71 72 78 73 79 74 78 73 71 72 70 75 75 76 82 77 74 78 82 77 75 76 83 79 79 80 86 81 87 82 86 81 79 80 78 83 83 84 90 85 82 86 90 85 83 84 91 87 94 88 86 89 95 90 86 89 94 88 87 91 91 92 95 93 90 94 95 93 91 92 94 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID840\">\r\n            <mesh>\r\n                <source id=\"ID841\">\r\n                    <float_array count=\"288\" id=\"ID845\">-0.848191442515148 1.821719920829072 0.002991490153192444 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.848191442515148 1.821719920829072 0.002991490153192444</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID845\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID842\">\r\n                    <float_array count=\"288\" id=\"ID846\">-1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID846\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID844\">\r\n                    <float_array count=\"96\" id=\"ID847\">17.60422062980293 3.686373823478347 17.58872307755159 -3.731830796992965 18.21721723044679 -0.02353490189120707 15.79154317552588 7.145053996837801 15.7615948579133 -7.185808789624735 15.73644944485523 -0.02353490189122628 15.20797224997292 3.181279569921278 12.90263363202708 10.11682099294002 13.64312346924178 6.169292423219798 11.14846360512272 8.736878630918373 9.134510958830333 12.39913428420196 7.894117304033426 10.70905592978288 4.743848953426131 13.83646333579298 4.101776983347349 11.95143942082804 0.0299008217226215 14.33087282880834 0.0299008217225882 12.37933786704789 -4.686070296983688 13.84864765484944 -4.043988564903902 11.96361546971739 -7.842317873281745 10.73258573666044 -9.082711528078582 12.42266290962708 -11.10619113654815 8.770154239007669 -12.86033863575761 10.15009660102933 -13.61319017009239 6.210048988185412 -15.76162339299344 7.185815878339411 -15.19252726234299 3.226739497067041 -15.73645395039408 0.02353305587178406 15.19249872726272 -3.226737724888358 12.86035665791355 -10.15009187521957 13.61317214793644 -6.210043671649416 11.106162601468 -8.770158964817435 9.082687498537359 -12.42266290962708 7.842322378820725 -10.73257746649335 4.686051523904595 -13.84865828792145 4.043974672825356 -11.9636131068125 -0.02993367461101796 -14.33087164735588 -0.02993367461098022 -12.37934495576256 -4.101781864347913 -11.95141933613647 -4.743844447887168 -13.83647042450765 -7.894159355730627 -10.70906301849755 -9.134543999449482 -12.39913428420196 -11.14849664574191 -8.7368715422037 -12.90268619664868 -10.11682217439248 -13.6431234692418 -6.169288878862472 -15.79154768106481 -7.14505990410002 -15.20798726843623 -3.181281342099942 -17.58874109970749 3.731832569171651 -17.60424916488311 -3.686367916216107 -18.21719920829072 0.02353305587178056</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID847\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID843\">\r\n                    <input semantic=\"POSITION\" source=\"#ID841\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID842\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID843\"/>\r\n                    <p>0 1 2 2 1 3 1 4 3 4 5 3 5 6 3 6 7 3 3 7 8 7 9 8 8 9 10 9 11 10 10 11 12 11 13 12 12 13 14 13 15 14 15 16 14 14 16 17 16 18 17 17 18 19 18 20 19 19 20 21 20 22 21 22 23 21 24 25 23 21 23 25 5 4 26 26 4 27 4 28 27 27 28 29 28 30 29 29 30 31 30 32 31 31 32 33 33 32 34 32 35 34 34 35 36 35 37 36 36 37 38 37 39 38 38 39 40 39 41 40 40 41 42 42 41 43 41 44 43 43 44 24 24 44 25 25 44 45 44 46 45 47 45 46</p>\r\n                </triangles>\r\n                <triangles count=\"48\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID843\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID844\"/>\r\n                    <p>48 0 49 1 50 2 49 1 48 0 51 3 49 1 51 3 52 4 52 4 51 3 53 5 53 5 51 3 54 6 54 6 51 3 55 7 54 6 55 7 56 8 56 8 55 7 57 9 57 9 55 7 58 10 57 9 58 10 59 11 59 11 58 10 60 12 59 11 60 12 61 13 61 13 60 12 62 14 61 13 62 14 63 15 63 15 62 14 64 16 63 15 64 16 65 17 65 17 64 16 66 18 66 18 64 16 67 19 66 18 67 19 68 20 68 20 67 19 69 21 68 20 69 21 70 22 70 22 69 21 71 23 70 22 71 23 72 24 72 24 71 23 73 25 52 4 74 26 75 27 74 26 52 4 53 5 75 27 74 26 76 28 75 27 76 28 77 29 75 27 77 29 78 30 78 30 77 29 79 31 78 30 79 31 80 32 80 32 79 31 81 33 80 32 81 33 82 34 82 34 81 33 83 35 82 34 83 35 84 36 82 34 84 36 85 37 85 37 84 36 86 38 85 37 86 38 87 39 87 39 86 38 88 40 87 39 88 40 89 41 89 41 88 40 90 42 89 41 90 42 91 43 91 43 90 42 92 44 91 43 92 44 73 25 91 43 73 25 71 23 91 43 71 23 93 45 91 43 93 45 94 46 94 46 93 45 95 47</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID848\">\r\n            <mesh>\r\n                <source id=\"ID849\">\r\n                    <float_array count=\"576\" id=\"ID853\">-0.8481914425151489 0.4686070296983689 1.760421312057132 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950957 0.4947663767580937 1.858045979055305 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151516 1.286033863575761 1.29026651708 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950979 -0.9639834939807769 1.663688891962011 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.7637458525006284 0.9616870958540129 -1.659710651225625 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 0.7557056430950926 -0.9588031003517052 -1.6666787676304 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006196 -0.956506702224935 -1.66269977597085 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.7637458525006284 0.4993573332498595 -1.852061121441011 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID853\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID850\">\r\n                    <float_array count=\"576\" id=\"ID854\">-0.7524585421170914 0.1693892527612725 0.6364852107032804 -0.7524585417620626 0.1695187983675101 0.6364507207391202 -0.752458751757041 -0.001116951969874288 0.6586384283675927 -0.7524587513418458 -0.0009841473680792699 0.6586386406695468 0.7524585417620626 -0.1695187983675101 -0.6364507207391202 0.752458751757041 0.001116951969874288 -0.6586384283675927 0.7524587513418458 0.0009841473680792699 -0.6586386406695468 0.7524585421170914 -0.1693892527612725 -0.6364852107032804 -0.7524565325827145 -0.1715493318107424 0.6359087932470239 -0.7524565358976068 -0.1714184440870872 0.6359440845009378 0.7524565325827145 0.1715493318107424 -0.6359087932470239 0.7524565358976068 0.1714184440870872 -0.6359440845009378 -0.003023523763771853 0.2573140904666033 0.9663230914923821 -0.003023428365700127 -0.001557416609379177 0.9999942166504876 -0.003023523763512286 0.2573134050059734 0.9663232740176982 -0.003023428365418651 -0.001558199390591175 0.9999942154310586 0.003023428365700127 0.001557416609379177 -0.9999942166504876 0.003023523763512286 -0.2573134050059734 -0.9663232740176982 0.003023428365418651 0.001558199390591175 -0.9999942154310586 0.003023523763771853 -0.2573140904666033 -0.9663230914923821 -0.7524589655183874 0.3284673404373135 0.5708894038927644 -0.752458965034369 0.3283526619799974 0.5709553706815058 0.752458965034369 -0.3283526619799974 -0.5709553706815058 0.7524589655183874 -0.3284673404373135 -0.5708894038927644 -0.7524536793556657 -0.3302908594592792 0.5698433193271392 -0.7524536801024093 -0.3301728027602695 0.5699117296720337 0.7524536793556657 0.3302908594592792 -0.5698433193271392 0.7524536801024093 0.3301728027602695 -0.5699117296720337 -0.003023637205282373 -0.2603221403258926 0.9655170847137802 -0.00302363720643009 -0.2603227088345894 0.9655169314326214 0.003023637205282373 0.2603221403258926 -0.9655170847137802 0.00302363720643009 0.2603227088345894 -0.9655169314326214 -0.003023769458048854 0.4986487925159631 0.8667988454887539 -0.003023769456780855 0.4986480616163927 0.8667992659575149 0.003023769458048854 -0.4986487925159631 -0.8667988454887539 0.003023769456780855 -0.4986480616163927 -0.8667992659575149 -0.7524604292449857 0.4650302144511048 0.4664227718154544 -0.7524604277183468 0.4649355000609762 0.4665171867155301 0.7524604277183468 -0.4649355000609762 -0.4665171867155301 0.7524604292449857 -0.4650302144511048 -0.4664227718154544 -0.7524523992911886 -0.4665217526188665 0.4649439118155596 -0.7524523999108818 -0.4664284121355344 0.4650375492592817 0.7524523992911886 0.4665217526188665 -0.4649439118155596 0.7524523999108818 0.4664284121355344 -0.4650375492592817 -0.003024220270688767 -0.5013448265809373 0.8652422891608365 -0.003024220271891797 -0.5013452460737722 0.8652420460951814 0.003024220271891797 0.5013452460737722 -0.8652420460951814 0.003024220270688767 0.5013448265809373 -0.8652422891608365 -0.003023789150446498 0.7060009776560012 0.7082044028724647 -0.003023789151712843 0.7060003159894974 0.7082050624797142 0.003023789150446498 -0.7060009776560012 -0.7082044028724647 0.003023789151712843 -0.7060003159894974 -0.7082050624797142 -0.7524618457279603 0.5699021833508379 0.3301706712226562 -0.7524618458997252 0.5698351311725082 0.3302863814128411 0.7524618458997252 -0.5698351311725082 -0.3302863814128411 0.7524618457279603 -0.5699021833508379 -0.3301706712226562 -0.7524479855813711 -0.5709672528893324 0.3283571609125437 -0.75244799164648 -0.5709000097533534 0.3284740457491269 0.7524479855813711 0.5709672528893324 -0.3283571609125437 0.75244799164648 0.5709000097533534 -0.3284740457491269 -0.003024450878027729 -0.7082033825184431 0.7060019983585898 -0.003024450877476187 -0.7082039104336583 0.7060014687968891 0.003024450878027729 0.7082033825184431 -0.7060019983585898 0.003024450877476187 0.7082039104336583 -0.7060014687968891 -0.003023198803451891 0.8652412822109276 0.5013465705746725 -0.003023198805660467 0.8652409285580689 0.5013471809205194 0.003023198803451891 -0.8652412822109276 -0.5013465705746725 0.003023198805660467 -0.8652409285580689 -0.5013471809205194 -0.7524650076588183 0.6359345265441972 0.1714167150485116 -0.7524650029900875 0.6358998698302749 0.1715452559092408 0.7524650029900875 -0.6358998698302749 -0.1715452559092408 0.7524650076588183 -0.6359345265441972 -0.1714167150485116 -0.7524485695931888 -0.6364956983395131 0.1693941442685062 -0.7524485617789981 -0.6364614586825991 0.1695227816204527 0.7524485695931888 0.6364956983395131 -0.1693941442685062 0.7524485617789981 0.6364614586825991 -0.1695227816204527 -0.003024642282712115 -0.8667991712589429 0.4986482209372369 -0.00302464228433073 -0.8667995384389017 0.4986475826685202 0.003024642282712115 0.8667991712589429 -0.4986482209372369 0.00302464228433073 0.8667995384389017 -0.4986475826685202 -0.003021941420137833 0.9655175454494209 0.2603204511738924 -0.003021941424746023 0.9655173587289867 0.2603211437110447 0.003021941420137833 -0.9655175454494209 -0.2603204511738924 0.003021941424746023 -0.9655173587289867 -0.2603211437110447 -0.7524649176522377 0.6586315962545964 0.0009839297400806876 -0.7524649227682221 0.6586313785893013 0.001116754659718303 0.7524649227682221 -0.6586313785893013 -0.001116754659718303 0.7524649176522377 -0.6586315962545964 -0.0009839297400806876 -0.7524562762274313 -0.6586412570388478 -0.001116643288669679 -0.7524562723022982 -0.6586414735750391 -0.0009836461920094291 0.7524562762274313 0.6586412570388478 0.001116643288669679 0.7524562723022982 0.6586414735750391 0.0009836461920094291 -0.00302424272530191 -0.966322583003932 0.2573159915989429 -0.003024242721690821 -0.9663227607441889 0.2573153241136048 0.00302424272530191 0.966322583003932 -0.2573159915989429 0.003024242721690821 0.9663227607441889 -0.2573153241136048 -0.003021067751355109 0.9999942264063256 0.001555732514273759 -0.003021067751511359 0.9999942251911452 0.001556513412098616 0.003021067751355109 -0.9999942264063256 -0.001555732514273759 0.003021067751511359 -0.9999942251911452 -0.001556513412098616 -0.7524581266761962 0.6364513097928596 -0.1695184292692185 -0.7524581327993718 0.6364858961559734 -0.1693884954139764 0.7524581266761962 -0.6364513097928596 0.1695184292692185 0.7524581327993718 -0.6364858961559734 0.1693884954139764 -0.7524554835789596 -0.6359095448500886 -0.171551146893593 -0.7524554877062412 -0.6359441915615974 -0.1714226479781157 0.7524554877062412 0.6359441915615974 0.1714226479781157 0.7524554835789596 0.6359095448500886 0.171551146893593 -0.003022939996113761 -0.9999942166299063 -0.001558377528098246 -0.003022939999784108 -0.9999942178488096 -0.001557595167271352 0.003022939996113761 0.9999942166299063 0.001558377528098246 0.003022939999784108 0.9999942178488096 0.001557595167271352 -0.003022243473153594 0.9663240542030337 -0.2573104900951403 -0.00302224347973812 0.966323868653908 -0.2573111869198347 0.003022243473153594 -0.9663240542030337 0.2573104900951403 0.00302224347973812 -0.966323868653908 0.2573111869198347 -0.752453954284854 0.5708942615132673 -0.3284703774350259 -0.7524539551700281 0.5709604990173309 -0.3283552251919589 0.752453954284854 -0.5708942615132673 0.3284703774350259 0.7524539551700281 -0.5709604990173309 0.3283552251919589 -0.7524527067090119 -0.5698454450886161 -0.3302894077593754 -0.75245270637364 -0.5699112482350072 -0.3301758528514779 0.75245270637364 0.5699112482350072 0.3301758528514779 0.7524527067090119 0.5698454450886161 0.3302894077593754 -0.003022956207305731 -0.9655159878608529 -0.2603262163533472 -0.003022956203584093 -0.9655161881351868 -0.2603254735608669 0.003022956207305731 0.9655159878608529 0.2603262163533472 0.003022956203584093 0.9655161881351868 0.2603254735608669 -0.003023860053777756 0.8667994464540276 -0.4986477473100291 -0.003023860056238176 0.866799054464471 -0.4986484287048933 0.003023860053777756 -0.8667994464540276 0.4986477473100291 0.003023860056238176 -0.866799054464471 0.4986484287048933 -0.7524520034872866 0.4664284183759522 -0.4650381844314248 -0.7524520059884629 0.4665225652234435 -0.4649437329626844 0.7524520034872866 -0.4664284183759522 0.4650381844314248 0.7524520059884629 -0.4665225652234435 0.4649437329626844 -0.7524541226695466 -0.4649429710307974 -0.4665199105790212 -0.7524541205941244 -0.4650354160681895 -0.4664277631136556 0.7524541205941244 0.4650354160681895 0.4664277631136556 0.7524541226695466 0.4649429710307974 0.4665199105790212 -0.003023625947355671 -0.8652411650582806 -0.5013467701847889 -0.003023625947147205 -0.8652415864938384 -0.5013460428563862 0.003023625947355671 0.8652411650582806 0.5013467701847889 0.003023625947147205 0.8652415864938384 0.5013460428563862 -0.003024498956473901 0.7082035258586333 -0.7060018543654559 -0.003024498957837877 0.7082029736233368 -0.7060024083224629 0.003024498956473901 -0.7082035258586333 0.7060018543654559 0.003024498957837877 -0.7082029736233368 0.7060024083224629 -0.7524548626014672 0.3301727897440394 -0.5699101759576202 -0.7524548560904877 0.3302906965735977 -0.5698418599074405 0.7524548626014672 -0.3301727897440394 0.5699101759576202 0.7524548560904877 -0.3302906965735977 0.5698418599074405 -0.7524550849804075 -0.3283542750975831 -0.5709595564593596 -0.7524550849515038 -0.3284703658453776 -0.5708927779294718 0.7524550849515038 0.3284703658453776 0.5708927779294718 0.7524550849804075 0.3283542750975831 0.5709595564593596 -0.003023436767652145 -0.7060015557338235 -0.7082038280972031 -0.003023436769444781 -0.7060023070751241 -0.7082030790915156 0.003023436767652145 0.7060015557338235 0.7082038280972031 0.003023436769444781 0.7060023070751241 0.7082030790915156 -0.003024066201718197 0.5013460802322781 -0.8652415632985611 -0.003024066204165313 0.5013465000752155 -0.86524132002923 0.003024066204165313 -0.5013465000752155 0.86524132002923 0.003024066201718197 -0.5013460802322781 0.8652415632985611 -0.7524593774133471 0.1714196849035536 -0.6359403879061972 -0.7524593773351924 0.171545207486858 -0.6359065397121069 0.7524593774133471 -0.1714196849035536 0.6359403879061972 0.7524593773351924 -0.171545207486858 0.6359065397121069 -0.7524551621628105 -0.169389900494532 -0.6364890341121294 -0.7524551617968616 -0.1695201961406735 -0.6364543444628897 0.7524551617968616 0.1695201961406735 0.6364543444628897 0.7524551621628105 0.169389900494532 0.6364890341121294 -0.00302345619967725 -0.4986502339698029 -0.8667980173457189 -0.003023456200964241 -0.498649628175152 -0.8667983658460503 0.003023456200964241 0.498649628175152 0.8667983658460503 0.00302345619967725 0.4986502339698029 0.8667980173457189 -0.00302317041934693 0.2603211190972351 -0.9655173615179473 -0.003023170420924781 0.260321986899808 -0.9655171275420972 0.003023170420924781 -0.260321986899808 0.9655171275420972 0.00302317041934693 -0.2603211190972351 0.9655173615179473 -0.7524572925624328 0.0009838075905523819 -0.6586403077494104 -0.7524572962038846 0.001116597773462055 -0.6586400918551432 0.7524572925624328 -0.0009838075905523819 0.6586403077494104 0.7524572962038846 -0.001116597773462055 0.6586400918551432 -0.003023757163787752 -0.2573148938061689 -0.9663228768471408 -0.003023757164135984 -0.257314121269845 -0.9663230825597305 0.003023757163787752 0.2573148938061689 0.9663228768471408 0.003023757164135984 0.257314121269845 0.9663230825597305 -0.003023376607918181 0.00155726701169435 -0.9999942170399491 -0.003023376605318863 0.001558049788827533 -0.9999942158206505 0.003023376607918181 -0.00155726701169435 0.9999942170399491 0.003023376605318863 -0.001558049788827533 0.9999942158206505</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID854\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID852\">\r\n                    <float_array count=\"384\" id=\"ID855\">-4.040246963321643 6.795564893228256 0.9890827628466336 6.463093582785248 0.8935679007835635 7.468892618247301 -3.696624459452266 5.823858262090928 -0.8551161998463231 7.471883329228509 3.729258442558688 5.811233706692518 4.07507250558566 6.782456078829257 -0.9529481975090883 6.466222128749999 -7.554321652554542 2.111785202383856 7.520717237189627 -2.106470744697186 7.63609149265897 1.831723202669839 -7.669972009859915 -1.835835337729923 -2.241789872750055 7.291664938508001 -5.90273736965205 4.562006538717816 -1.735763312451184 6.364938643819828 -6.629265165315137 5.393041111258648 2.27580128791188 7.285250498133096 5.926144752668277 4.543403046768413 6.654145913192843 5.373626057838043 1.768131448370683 6.359083708982839 7.668686127052055 -1.839057708593067 -7.634813705495054 1.834989415906823 -7.522186994038186 -2.10322894330467 7.555789239779621 2.108606428206098 7.598413731494718 1.926247716636706 -7.632211106838805 -1.930765085388588 7.562014832044193 -2.012872824046142 -7.595724971270944 2.017799588171895 -4.81941465461502 6.4734078982287 -7.324240456616781 3.029240377010939 -3.995200295744808 5.700833126747577 -8.324555039492182 3.660162647609309 4.845342759447187 6.461479132204169 7.337817537611757 3.009063783125704 8.338854610045059 3.639262429833399 4.020265958111306 5.689488510288188 -7.562169654384618 -2.01252978617579 7.595891934628797 2.017484888043871 -7.598253173295223 1.926593136966556 7.632062042614949 -1.931080970865312 7.590162806256027 1.94624081239991 -7.623955884291689 -1.950882992818789 7.570534444041288 -1.992951860281939 -7.604280525974141 1.99775209317084 -6.718836162952989 5.323810449893363 -8.053104492918207 1.49712621750965 -5.675786398794395 4.737275524689899 -9.221774272756345 1.91194394298594 6.737080334535841 5.309500309403943 8.058934044048545 1.477726111620418 9.227804990882156 1.892125520133433 5.693691067492606 4.723354330334615 7.623905935675444 -1.950977619621975 -7.590091221085666 1.946343936349168 -7.570585176680469 -1.992873761941959 7.604353213083794 1.997658685379888 7.586171209310034 1.955863353392116 -7.619941292962327 -1.960561098109789 7.574615404368769 -1.983378289115803 -7.608357971913602 1.988098722674424 -8.039325504952567 4.035248474488306 -8.274409480860204 0.07154880520611728 -6.858172886042456 3.642920142785312 -9.530272482541513 0.2746756156189894 8.051367441154209 4.019989372762995 8.274442799196638 0.05352251049803518 9.530305767400433 0.2564839307956014 6.870173671642146 3.627808949292373 7.619919383937229 -1.960542415976749 -7.586121691995373 1.955936271722545 -7.574637547254818 -1.98328952605131 7.608407674373749 1.988121343208024 7.583544916727871 1.962188646121968 -7.617277576123059 -1.966904209989248 7.577301328813645 -1.977040668559802 -7.611019100226375 1.981758278354976 -8.907815301433299 2.678985865460446 -8.123357840021573 -1.240750832424818 -7.650419727648758 2.481813686900803 -9.405511470881637 -1.240742243288395 8.915288502883657 2.663096804961726 8.119140709179817 -1.257537690235669 9.401272865435805 -1.257546018046028 7.657930885613808 2.465945293105961 7.617292804392591 -1.966902198835446 -7.583479377394854 1.962214253446523 -7.577286260901328 -1.977014389700738 7.611084735482613 1.981768564680788 7.581459565158655 1.967310797641272 -7.615123097651352 -1.971918595009516 7.579461129931657 -1.971921953343625 -7.613120069812265 1.976745737194301 -8.119346403993839 1.257431712139362 -8.915537713431498 -2.663206671196163 -7.658166793412561 -2.466041118855443 -9.40150003157304 1.257442113621577 8.123108074390222 1.240849617657296 8.907523179620583 -2.678883862796719 9.4052402334673 1.240842837764527 7.650148767210773 -2.481713396774992 7.613189535885248 1.976618480108285 -7.57943764585014 -1.972050019822055 7.615146667941806 -1.972047747371725 -7.581390237913452 1.967188101395981 7.581436772792678 -1.967275288237997 -7.615098313537803 1.971965794024384 -7.613142864168738 -1.976698898278629 7.579485914074268 1.97196708429726 -8.274749853594916 -0.05359064644060455 -8.051667980628185 -4.020064251666414 -6.870443660400792 -3.627887047345771 -9.530625737779101 -0.25656725043594 8.274163615890476 -0.07144692779477511 8.039062677012478 -4.035156716714083 9.530005361959193 -0.2745723376109419 6.857934007589495 -3.64281816651194 7.615146760673897 1.972057399417009 -7.581436910305003 -1.967173248538126 7.613142749986364 -1.976607435662339 -7.579437553117938 1.972059733917022 7.583505855838784 -1.96227509970517 -7.617263129816307 1.966838229966558 -7.611058272200855 -1.981825946153671 7.577315792308811 1.976949996703046 -8.058966808118642 -1.477763534671876 -6.737129216083037 -5.309523955305282 -5.693760167031574 -4.723377340212994 -9.227871799659241 -1.89215435520369 8.052840575659085 -1.49704295134452 6.718603029494449 -5.323738691458113 9.221486487586468 -1.911869754300307 5.67558565569558 -4.737197305973607 7.617293560270303 1.966914482853697 -7.58353067722906 -1.962188734427586 7.611033394817669 -1.981754273956296 -7.577285369609861 1.977050570888327 7.586122794998227 -1.955846374730674 -7.619918079974323 1.960632188041886 -7.608406550904774 -1.988032733024195 7.574638852779416 1.983381936755945 -7.337822183067741 -3.009007241083356 -4.845341235349157 -6.46142968527283 -4.020258889731459 -5.689438975694102 -8.338839386390088 -3.639205298984838 7.324198181243452 -3.029144275291806 4.819358432886512 -6.47331750582667 8.324474868783517 -3.660076593319374 3.995128624001985 -5.700755173353182 7.619942024878952 1.960505775974488 -7.586170583499415 -1.95591014113808 7.60835859070232 -1.988135387999505 -7.574614745364233 1.983312116988463 -7.623909739917847 1.950936307139087 7.590088410733276 -1.946377631840885 7.570581331427527 1.992838049551194 -7.604356035217696 -1.99769600445393 -5.926219203160268 -4.543505385850812 -2.275894023815066 -7.285346259589042 -1.768164791791738 -6.359189590593228 -6.654222092787895 -5.373730949672475 5.902663718800884 -4.56193950172254 2.241735351137526 -7.291601797073808 6.629208755942161 -5.392962666056423 1.735701167858861 -6.364888541509357 -7.590174738516678 -1.946265886184374 7.623938984367359 1.950861077277974 -7.570551389136386 1.992910516343811 7.604268587691806 -1.997775046101012 -7.632050366310129 1.931128964526406 7.59825903017894 -1.926544287206376 7.562181491525478 2.012562850542992 -7.59588595364065 -2.017442116402822 -3.729273224583506 -5.811255341959331 0.8550672826260229 -7.471889629038476 0.9528974804567071 -6.466230103660284 -4.075150813204585 -6.782473277036217 3.696609987697176 -5.823790531437526 -0.8935970025749593 -7.468813907025647 4.040236589761045 -6.795486286170825 -0.9891114730239413 -6.463016631894419 7.595726351403361 -2.01783708517383 -7.562012115608883 2.012838846303647 -7.598412396963864 -1.926287761518784 7.632213683143744 1.930717081479863 7.522201914891844 2.103271019508454 -7.555790432103792 -2.108548548224249 7.634813601656944 -1.834968467158941 -7.668671507496315 1.83911283206964 7.554320332815763 -2.111817851860591 -7.52070372868721 2.106484885781963 -7.636091856533377 -1.831723312270308 7.669984821502206 1.835824551549613</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID855\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID851\">\r\n                    <input semantic=\"POSITION\" source=\"#ID849\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID850\"/>\r\n                </vertices>\r\n                <triangles count=\"96\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID851\"/>\r\n                    <p>0 1 2 3 2 1 2 3 8 9 8 3 12 13 14 15 14 13 20 1 21 0 21 1 8 9 24 25 24 9 13 28 15 29 15 28 12 14 32 33 32 14 36 20 37 21 37 20 24 25 40 41 40 25 44 45 28 29 28 45 32 33 48 49 48 33 52 36 53 37 53 36 40 41 56 57 56 41 44 60 45 61 45 60 48 49 64 65 64 49 68 52 69 53 69 52 56 57 72 73 72 57 60 76 61 77 61 76 64 65 80 81 80 65 84 68 85 69 85 68 72 73 88 89 88 73 76 92 77 93 77 92 80 81 96 97 96 81 84 85 100 101 100 85 104 88 105 89 105 88 93 92 108 109 108 92 97 112 96 113 96 112 100 101 116 117 116 101 120 104 121 105 121 104 108 109 124 125 124 109 112 128 113 129 113 128 116 117 132 133 132 117 136 120 137 121 137 120 124 125 140 141 140 125 128 144 129 145 129 144 132 133 148 149 148 133 152 136 153 137 153 136 140 141 156 157 156 141 160 145 161 144 161 145 148 149 164 165 164 149 168 152 169 153 169 152 172 173 157 156 157 173 176 160 177 161 177 160 164 165 180 181 180 165 181 168 180 169 180 168 172 184 173 185 173 184 176 177 188 189 188 177 184 188 185 189 185 188</p>\r\n                </triangles>\r\n                <triangles count=\"96\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID851\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID852\"/>\r\n                    <p>4 0 5 1 6 2 5 1 4 0 7 3 6 4 10 5 11 6 10 5 6 4 5 7 16 8 17 9 18 10 17 9 16 8 19 11 4 12 22 13 7 14 22 13 4 12 23 15 11 16 26 17 27 18 26 17 11 16 10 19 30 20 18 21 31 22 18 21 30 20 16 23 17 24 34 25 35 26 34 25 17 24 19 27 23 28 38 29 22 30 38 29 23 28 39 31 27 32 42 33 43 34 42 33 27 32 26 35 46 36 30 37 31 38 30 37 46 36 47 39 35 40 50 41 51 42 50 41 35 40 34 43 39 44 54 45 38 46 54 45 39 44 55 47 43 48 58 49 59 50 58 49 43 48 42 51 62 52 46 53 63 54 46 53 62 52 47 55 51 56 66 57 67 58 66 57 51 56 50 59 55 60 70 61 54 62 70 61 55 60 71 63 59 64 74 65 75 66 74 65 59 64 58 67 78 68 63 69 79 70 63 69 78 68 62 71 67 72 82 73 83 74 82 73 67 72 66 75 71 76 86 77 70 78 86 77 71 76 87 79 75 80 90 81 91 82 90 81 75 80 74 83 94 84 79 85 95 86 79 85 94 84 78 87 83 88 98 89 99 90 98 89 83 88 82 91 86 92 102 93 103 94 102 93 86 92 87 95 90 96 106 97 91 98 106 97 90 96 107 99 94 100 110 101 111 102 110 101 94 100 95 103 114 104 98 105 115 106 98 105 114 104 99 107 103 108 118 109 119 110 118 109 103 108 102 111 107 112 122 113 106 114 122 113 107 112 123 115 111 116 126 117 127 118 126 117 111 116 110 119 130 120 115 121 131 122 115 121 130 120 114 123 119 124 134 125 135 126 134 125 119 124 118 127 123 128 138 129 122 130 138 129 123 128 139 131 127 132 142 133 143 134 142 133 127 132 126 135 146 136 131 137 147 138 131 137 146 136 130 139 135 140 150 141 151 142 150 141 135 140 134 143 139 144 154 145 138 146 154 145 139 144 155 147 143 148 158 149 159 150 158 149 143 148 142 151 147 152 162 153 146 154 162 153 147 152 163 155 151 156 166 157 167 158 166 157 151 156 150 159 155 160 170 161 154 162 170 161 155 160 171 163 174 164 159 165 158 166 159 165 174 164 175 167 163 168 178 169 162 170 178 169 163 168 179 171 167 172 182 173 183 174 182 173 167 172 166 175 171 176 182 177 170 178 182 177 171 176 183 179 186 180 174 181 187 182 174 181 186 180 175 183 178 184 190 185 191 186 190 185 178 184 179 187 190 188 187 189 191 190 187 189 190 188 186 191</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID856\">\r\n            <mesh>\r\n                <source id=\"ID857\">\r\n                    <float_array count=\"576\" id=\"ID861\">0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 0.9220519445225366 1.603022710678486 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151476 1.785497189630175 0.4815196415974014 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 0.4757403116530008 1.787046344116789 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.9220519445225366 1.603022710678486 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151387 1.309760632593005 -1.305527979088765 0.7557056430950975 1.361733376410932 -1.357502525122301 0.7557056430950975 1.361733376410932 -1.357502525122301 0.8481914425151387 1.309760632593005 -1.305527979088765 0.84819144251514 1.603025714371136 -0.9220525452610677 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.7557056430950979 1.858045828870668 -0.494764837365608 0.7557056430950979 1.858045828870668 -0.494764837365608 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.7557056430950908 1.922786669424786 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950926 1.856498927153553 0.500544129763853 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950908 1.663689943254438 0.9639850709194202 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.60003328556399 0.9272330890747753 0.7557056430950908 1.663689943254438 0.9639850709194202 0.7557056430950904 1.357503426230103 1.361732775672407 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151351 1.305526777611701 1.309757628900341 0.7557056430950904 1.357503426230103 1.361732775672407</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID861\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID858\">\r\n                    <float_array count=\"576\" id=\"ID862\">0.6221941321218698 0.2013597797845118 0.7565240915121251 0.6221918684034155 -0.001303781729081092 0.7828637040033659 0.6221941339063147 0.2014863019961419 0.7564904030062049 0.6221918691918711 -0.001174692367902513 0.7828639077191937 -0.6221918684034155 0.001303781729081092 -0.7828637040033659 -0.6221941339063147 -0.2014863019961419 -0.7564904030062049 -0.6221918691918711 0.001174692367902513 -0.7828639077191937 -0.6221941321218698 -0.2013597797845118 -0.7565240915121251 0.6221901218932683 -0.2038805206493446 0.7558519600544753 0.6221901229061849 -0.2037543408673254 0.755885983158643 -0.6221901218932683 0.2038805206493446 -0.7558519600544753 -0.6221901229061849 0.2037543408673254 -0.755885983158643 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 0.622195876340844 0.3903006052975382 0.678629301584322 0.6221958765038165 0.3904133786148501 0.6785644295571243 -0.622195876340844 -0.3903006052975382 -0.678629301584322 -0.6221958765038165 -0.3904133786148501 -0.6785644295571243 0.6221894242877948 -0.392561562997384 0.6773298602316846 0.6221894238249361 -0.3924488889485895 0.677395150885664 -0.6221894238249361 0.3924488889485895 -0.677395150885664 -0.6221894242877948 0.392561562997384 -0.6773298602316846 0.6221894259644839 -0.5544921390400044 0.5526470717925018 0.6221894262295475 -0.5543996744161857 0.5527398293007061 -0.6221894259644839 0.5544921390400044 -0.5526470717925018 -0.6221894262295475 0.5543996744161857 -0.5527398293007061 0.6221935983998548 -0.6785663445167995 0.3904136808557666 0.6221936044128955 -0.6786309659335652 0.3903013332077736 -0.6221935983998548 0.6785663445167995 -0.3904136808557666 -0.6221936044128955 0.6786309659335652 -0.3903013332077736 0.6222050039132737 -0.7564827860628643 0.2014813328719305 0.6222050124535287 -0.7565155769512322 0.2013581493455097 -0.6222050039132737 0.7564827860628643 -0.2014813328719305 -0.6222050124535287 0.7565155769512322 -0.2013581493455097 0.6222055415468412 -0.7828530407950558 -0.001174983547447636 0.6222055340692866 -0.7828528419120427 -0.001304332699868602 -0.6222055415468412 0.7828530407950558 0.001174983547447636 -0.6222055340692866 0.7828528419120427 0.001304332699868602 0.6221917009441136 -0.7558510087740555 -0.203879228494502 0.6221917107911614 -0.7558845909667217 -0.2037546567856542 -0.6221917009441136 0.7558510087740555 0.203879228494502 -0.6221917107911614 0.7558845909667217 0.2037546567856542 0.6221815841653294 -0.6773359418068746 -0.392563495834897 0.6221815865170676 -0.6773995833087608 -0.3924536634205645 -0.6221815841653294 0.6773359418068746 0.392563495834897 -0.6221815865170676 0.6773995833087608 0.3924536634205645 0.6221798007864562 -0.5526539130480859 -0.554496120713179 0.6221798004943125 -0.5527449429825729 -0.5544053786391775 -0.6221798007864562 0.5526539130480859 0.554496120713179 -0.6221798004943125 0.5527449429825729 0.5544053786391775 0.6221838439383094 -0.3903078065454426 -0.678636191557623 0.622183838657477 -0.3904185239302142 -0.6785725068742466 -0.6221838439383094 0.3903078065454426 0.678636191557623 -0.622183838657477 0.3904185239302142 0.6785725068742466 0.6221885190971537 -0.2013628297434559 -0.7565278960497087 0.6221885184214142 -0.201487412154011 -0.7564947258825042 -0.6221885184214142 0.201487412154011 0.7564947258825042 -0.6221885190971537 0.2013628297434559 0.7565278960497087 0.6221871363076309 0.00130441775786443 -0.7828674638197849 0.6221871383491345 0.001175274353274519 -0.7828676667247855 -0.6221871363076309 -0.00130441775786443 0.7828674638197849 -0.6221871383491345 -0.001175274353274519 0.7828676667247855 0.6221898070491942 0.2038792279466273 -0.7558525679098893 0.6221898011836357 0.2037549411636534 -0.7558860861627658 -0.6221898070491942 -0.2038792279466273 0.7558525679098893 -0.6221898011836357 -0.2037549411636534 0.7558860861627658 0.6221939030436636 0.3925585914201147 -0.6773274683028494 0.6221939035143759 0.3924479534520299 -0.6773915782328985 -0.6221939030436636 -0.3925585914201147 0.6773274683028494 -0.6221939035143759 -0.3924479534520299 0.6773915782328985 0.6221903859354878 0.5544908010891638 -0.5526473334387365 0.6221903896076413 0.5543987480332496 -0.5527396740410957 -0.6221903896076413 -0.5543987480332496 0.5527396740410957 -0.6221903859354878 -0.5544908010891638 0.5526473334387365 0.6221910202362403 0.6786331798213453 -0.3903016033568862 0.6221910156914612 0.678568769305014 -0.3904135823927066 -0.6221910156914612 -0.678568769305014 0.3904135823927066 -0.6221910202362403 -0.6786331798213453 0.3903016033568862 0.6221853387884145 0.7565314500689442 -0.2013593038658174 0.6221853496726847 0.7564982237091488 -0.2014840643266405 -0.6221853496726847 -0.7564982237091488 0.2014840643266405 -0.6221853387884145 -0.7565314500689442 0.2013593038658174 0.622179367250408 0.7828736406861537 0.00130295306474845 0.6221793638195623 0.7828738475245173 0.001173924718077005 -0.6221793638195623 -0.7828738475245173 -0.001173924718077005 -0.622179367250408 -0.7828736406861537 -0.00130295306474845 0.6221892329183988 0.7558531905054573 0.2038786718691672 0.622189223507684 0.7558868877678742 0.2037537313805625 -0.622189223507684 -0.7558868877678742 -0.2037537313805625 -0.6221892329183988 -0.7558531905054573 -0.2038786718691672 0.6221951326288879 0.6773907079233851 0.3924475070018612 0.6221951309101329 0.6773259154460521 0.3925593246082557 -0.6221951309101329 -0.6773259154460521 -0.3925593246082557 -0.6221951326288879 -0.6773907079233851 -0.3924475070018612 0.6221949093854745 0.55273621248258 0.5543971267468953 0.6221949112080535 0.5526439122938858 0.554489133050694 -0.6221949112080535 -0.5526439122938858 -0.554489133050694 -0.6221949093854745 -0.55273621248258 -0.5543971267468953</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"192\" source=\"#ID862\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID860\">\r\n                    <float_array count=\"288\" id=\"ID863\">3.325059649491211 3.216767926096336 -1.399394685447692 3.99758154621831 3.662193290876626 4.107473716139581 -1.250023878680641 4.919473912535772 1.372898142287666 4.002874476983909 -3.346531992851785 3.203384761442292 1.219983462261442 4.924407217212858 -3.68705615598036 4.093286913307604 13.66916248086444 0.02353305587179104 13.19564835602249 2.805823139428946 16.0003328556399 7.294233634054899 13.05526777611702 10.30342668068269 11.8228864714763 5.396912571325081 9.644406560028058 7.620199907751378 9.220519445225365 12.61044532400409 6.80868640605695 9.324190455426477 4.757403116530008 14.05809790705208 3.508941918724347 10.39274802981726 -0.02990082172258827 14.54770834023929 -0.02990082172260382 10.75306267042233 -3.5666972965487 10.38056843657058 -4.815191534973343 14.0459159509005 -6.860480580346522 9.300657694917794 -9.272324132439298 12.58691788003143 -9.686702307220683 7.586924890388302 -11.85278748092962 5.356150689823473 -13.09757328531092 10.27014516533118 -13.2110843325745 2.760368233456089 -13.66913394578432 -0.02353490189121231 -16.00031333163775 -7.294225363887784 -16.03022410309207 7.253473524731939 -17.85496739076283 -3.787953332447107 -17.87042739685603 3.742497540384916 -18.4927970204285 -0.02353490189122628 18.49288112382276 0.0235330558717858 17.87046043747516 -3.742493405301364 17.85497189630175 3.787954513899558 16.03025714371136 -7.2534800227204 13.21113689719592 -2.760366756640539 13.09760632593005 -10.27015343549829 11.8527964920076 -5.35615068982347 9.686716574760796 -7.58692666256699 9.272333143517251 -12.58691433567411 6.860518126504815 -9.300652969108006 4.815205427051927 -14.04592303961512 3.56674422924643 -10.38057079947547 0.02993367461101789 -14.54771542895396 0.02993367461098014 -10.75306030751745 -3.508928026645748 -10.39275039272216 -4.757417384070129 -14.05810026995697 -6.808676644055874 -9.324186320342909 -9.220524701687543 -12.61044414255163 -9.644378024947853 -7.620210540823365 -11.82288121501415 -5.396910799146412 -13.05527828904129 -10.30342549923025 -13.19562582832752 -2.805824911607605 0.5886060988810937 4.120513442521916 1.162658492477524 4.932771090314962 4.606236932793788 2.014872649270415 5.339868907720868 2.743315371972167 -4.617667416210899 1.999131421715409 -5.353301219116173 2.726315394172552 -0.611291521408307 4.117988780848812 -1.187571050858884 4.929264283026042 -2.139599332309027 3.788942846944112 -5.164343543501015 0.8290711333373181 -2.99636583736415 4.428807317739661 -6.141480814850693 1.351387648974424 -4.225021602925385 3.758142633215543 -3.20239465897159 3.292826485442597 -6.372640036501849 0.1891437608247533 -5.26773872097306 -0.1397922540547897 -5.060075937571718 3.054007997932716 -3.943277568442837 2.750953874283442 -6.301440743977258 -0.7720073775261384 -5.136984467603375 -0.9288234656837572 -5.642996750969768 2.338482509684357 -4.477181062845431 2.188046769828072 -6.045781765648268 -1.597450497087772 -4.864377425616241 -1.59744239333856 -4.868088702938565 1.588940824409902 -4.471180360231378 -2.195912950284375 -6.049493045559932 1.588934727628423 -5.636963394135375 -2.34637225796323 -5.138980702977859 0.9193062601172498 -3.935010939522044 -2.758405912819115 -6.303369004477561 0.7623055482335482 -5.051724644990093 -3.061634706345457 -5.267538473975297 0.1284836752139618 -3.190956910517112 -3.299940318090963 -6.372186186701201 -0.2009621428356244 -4.213235749099931 -3.765702618015408 -5.160082680879592 -0.8427219285103885 -2.123166668350666 -3.794862669340203 -6.13638914881693 -1.36597498609087 -2.978922285784557 -4.43555752449242 -0.5885197661079195 -4.120399914351149 -1.16256291986312 -4.932657257001637 -4.606122629645602 -2.014735477800759 -5.339735788379853 -2.743176144763794 -3.325063773367089 -3.216692463880472 1.399436221034114 -3.997516865119874 -3.662179849014553 -4.107398405247095 1.250064419912603 -4.919404685624561 -1.372895805521925 -4.00277042444336 3.346512787926854 -3.203272247311469 -1.21997784929461 -4.924298380406616 3.68705418545108 -4.093164790378991 0.6113642978876138 -4.118071356985403 4.617747902423629 -1.999222052002686 1.187652019463948 -4.929337193170962 5.353407928182614 -2.726409124851045 5.164438050886696 -0.8291264049415041 6.141565090651655 -1.351438121476672 2.139663964115627 -3.788989196166075 2.996454837881586 -4.42885565877945 5.267743730206006 0.1398428529100231 6.372654774740514 -0.1890906805768049 3.202401858901243 -3.292778259440419 4.225021696139704 -3.75808538423671 5.136887609411004 0.9287968784213682 6.301322821900057 0.7719723381833509 3.943189382779365 -2.750992348204655 5.059997234893208 -3.054044110362204 4.863551817964225 1.597558026222105 6.04489261921601 1.597565779340973 4.476345343562111 -2.187929742582891 5.642141342295993 -2.338367823715728 4.470751428024356 2.195852734366363 5.636555464348028 2.346311909831038 4.86769810624192 -1.589009864038318 6.049038901895399 -1.588997567746211 5.05203837862957 3.061732231587077 6.303703735283573 -0.7621972952458326 3.935311944199161 2.758511066035775 5.13929496892643 -0.9192004917269404 4.213545717048607 3.765827006196082 6.372547766122596 0.2010852094342388 3.191244841452139 3.300055229866782 5.267888059821077 -0.1283553981323895 2.123424527614135 3.795082979436403 2.979191962199724 4.435783737510645 5.160386065421639 0.8429754464373749 6.136714648690377 1.366238049433706</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"144\" source=\"#ID863\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID859\">\r\n                    <input semantic=\"POSITION\" source=\"#ID857\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID858\"/>\r\n                </vertices>\r\n                <triangles count=\"192\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID859\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID860\"/>\r\n                    <p>0 0 1 1 2 2 3 3 2 2 1 1 4 1 5 2 6 3 5 2 4 1 7 0 1 4 8 5 3 6 9 7 3 6 8 5 10 5 6 6 11 7 6 6 10 5 4 4 12 8 13 9 14 10 14 10 13 9 15 11 13 9 16 12 15 11 16 12 17 13 15 11 15 11 17 13 18 14 17 13 19 15 18 14 18 14 19 15 20 16 19 15 21 17 20 16 20 16 21 17 22 18 21 17 23 19 22 18 23 19 24 20 22 18 22 18 24 20 25 21 24 20 26 22 25 21 25 21 26 22 27 23 26 22 28 24 27 23 28 24 29 25 27 23 27 23 29 25 30 26 29 25 31 27 30 26 31 27 32 28 30 26 32 28 33 29 30 26 30 26 33 29 34 30 33 29 35 31 34 30 34 30 35 31 36 32 37 33 36 32 35 31 38 34 39 35 40 36 39 35 41 37 40 36 40 36 41 37 14 10 14 10 41 37 12 8 12 8 41 37 42 38 41 37 43 39 42 38 42 38 43 39 44 40 44 40 43 39 45 41 43 39 46 42 45 41 45 41 46 42 47 43 46 42 48 44 47 43 47 43 48 44 49 45 48 44 50 46 49 45 49 45 50 46 51 47 51 47 50 46 52 48 50 46 53 49 52 48 52 48 53 49 54 50 53 49 55 51 54 50 54 50 55 51 56 52 56 52 55 51 57 53 55 51 58 54 57 53 57 53 58 54 59 55 59 55 58 54 32 28 33 29 32 28 58 54 60 54 61 28 62 29 61 28 60 54 63 55 63 55 60 54 64 53 64 53 60 54 65 51 64 53 65 51 66 52 66 52 65 51 67 50 67 50 65 51 68 49 67 50 68 49 69 48 69 48 68 49 70 46 69 48 70 46 71 47 71 47 70 46 72 45 72 45 70 46 73 44 72 45 73 44 74 43 74 43 73 44 75 42 74 43 75 42 76 41 76 41 75 42 77 39 76 41 77 39 78 40 78 40 77 39 79 38 79 38 77 39 80 37 79 38 80 37 81 8 81 8 80 37 82 10 82 10 80 37 83 36 83 36 80 37 84 35 83 36 84 35 85 34 86 31 87 32 88 33 87 32 86 31 89 30 89 30 86 31 62 29 89 30 62 29 90 26 90 26 62 29 61 28 90 26 61 28 91 27 90 26 91 27 92 25 90 26 92 25 93 23 93 23 92 25 94 24 93 23 94 24 95 22 93 23 95 22 96 21 96 21 95 22 97 20 96 21 97 20 98 18 98 18 97 20 99 19 98 18 99 19 100 17 98 18 100 17 101 16 101 16 100 17 102 15 101 16 102 15 103 14 103 14 102 15 104 13 103 14 104 13 105 11 105 11 104 13 106 12 105 11 106 12 107 9 105 11 107 9 82 10 82 10 107 9 81 8 0 56 2 57 108 58 109 59 108 58 2 57 5 57 110 58 111 59 110 58 5 57 7 56 112 60 113 61 8 62 9 63 8 62 113 61 114 61 10 62 11 63 10 62 114 61 115 60 112 64 116 65 113 66 117 67 113 66 116 65 118 65 114 66 119 67 114 66 118 65 115 64 117 68 116 69 120 70 121 71 120 70 116 69 118 69 122 70 123 71 122 70 118 69 119 68 120 72 121 73 124 74 125 75 124 74 121 73 123 73 126 74 127 75 126 74 123 73 122 72 124 76 125 77 128 78 129 79 128 78 125 77 127 77 130 78 131 79 130 78 127 77 126 76 129 80 132 81 128 82 133 83 128 82 132 81 134 81 130 82 135 83 130 82 134 81 131 80 132 84 136 85 133 86 137 87 133 86 136 85 138 85 135 86 139 87 135 86 138 85 134 84 136 88 140 89 137 90 141 91 137 90 140 89 142 89 139 90 143 91 139 90 142 89 138 88 140 92 144 93 141 94 145 95 141 94 144 93 146 93 143 94 147 95 143 94 146 93 142 92 148 96 149 97 144 98 145 99 144 98 149 97 150 97 146 98 147 99 146 98 150 97 151 96 148 100 152 101 149 102 153 103 149 102 152 101 154 101 150 102 155 103 150 102 154 101 151 100 152 104 156 105 153 106 157 107 153 106 156 105 158 105 155 106 159 107 155 106 158 105 154 104 156 108 160 109 157 110 161 111 157 110 160 109 162 109 159 110 163 111 159 110 162 109 158 108 164 112 165 113 160 114 161 115 160 114 165 113 166 113 162 114 163 115 162 114 166 113 167 112 168 116 169 117 164 118 165 119 164 118 169 117 170 117 167 118 166 119 167 118 170 117 171 116 172 120 173 121 168 122 169 123 168 122 173 121 174 121 171 122 170 123 171 122 174 121 175 120 176 124 177 125 172 126 173 127 172 126 177 125 178 125 175 126 174 127 175 126 178 125 179 124 180 128 181 129 176 130 177 131 176 130 181 129 182 129 179 130 178 131 179 130 182 129 183 128 184 132 181 133 185 134 180 135 185 134 181 133 182 133 186 134 183 135 186 134 182 133 187 132 188 136 184 137 189 138 185 139 189 138 184 137 187 137 190 138 186 139 190 138 187 137 191 136 108 140 109 141 189 142 188 143 189 142 109 141 111 141 190 142 191 143 190 142 111 141 110 140</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID864\">\r\n            <mesh>\r\n                <source id=\"ID865\">\r\n                    <float_array count=\"90\" id=\"ID869\">-0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID869\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID866\">\r\n                    <float_array count=\"90\" id=\"ID870\">-0.914297075399253 0.215116645721763 0.3431991938361602 -0.913408876044686 0.2046884346174862 0.3518335826731535 -0.9015424253173537 0.203441541780783 0.381880602323241 0.9015424253173537 -0.203441541780783 -0.381880602323241 0.913408876044686 -0.2046884346174862 -0.3518335826731535 0.914297075399253 -0.215116645721763 -0.3431991938361602 -0.9136510681511446 0.2298793945988548 0.3352569009060609 0.9136510681511446 -0.2298793945988548 -0.3352569009060609 -0.9117782845679017 0.2541872650090479 0.3225665731250447 0.9117782845679017 -0.2541872650090479 -0.3225665731250447 -0.9120084709463099 0.1943087758477377 0.3612265889310024 0.9120084709463099 -0.1943087758477377 -0.3612265889310024 -0.9141809063392639 0.1816931123289236 0.3622994388857799 0.9141809063392639 -0.1816931123289236 -0.3622994388857799 -0.914761389475236 0.2626135214064524 0.306994688390269 0.914761389475236 -0.2626135214064524 -0.306994688390269 -0.9126379924856676 0.2390954511057188 0.3315497849980955 0.9126379924856676 -0.2390954511057188 -0.3315497849980955 -0.9141710218943564 0.2509149231036151 0.3183285159902191 0.9141710218943564 -0.2509149231036151 -0.3183285159902191 -0.9164054954864268 0.1852852093678754 0.3547821289633675 0.9164054954864268 -0.1852852093678754 -0.3547821289633675 -0.8960867889457255 0.2095902619358588 0.3912804477335874 0.8960867889457255 -0.2095902619358588 -0.3912804477335874 -0.907217225171867 0.2176423778275239 0.3599843076094281 0.907217225171867 -0.2176423778275239 -0.3599843076094281 -0.8562445711454921 0.1718809545737532 0.4871367075459286 0.8562445711454921 -0.1718809545737532 -0.4871367075459286 -0.8755394211216304 0.1676337555122239 0.4531331438714985 0.8755394211216304 -0.1676337555122239 -0.4531331438714985</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID870\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID868\">\r\n                    <float_array count=\"156\" id=\"ID871\">11.91024662259696 -14.00044492351452 11.48721830684091 -14.18013834552815 7.438147269351948 -8.945061733813203 3.719073634675974 -4.472530866906602 5.743609153420457 -7.090069172764073 5.955123311298482 -7.00022246175726 13.28861338462427 -13.18460323054936 12.88197936170507 -13.45581934143577 8.254929826970962 -8.487481463314271 4.127464913485481 -4.243740731657136 6.440989680852535 -6.727909670717886 6.644306692312134 -6.592301615274679 12.70973102284357 -13.55074890505256 12.39471472312215 -13.45941836602513 8.460166676803608 -8.414954825070682 4.230083338401804 -4.207477412535341 6.197357361561076 -6.729709183012567 6.354865511421787 -6.775374452526281 12.3713572617144 -13.48543642483197 12.38139310001852 -13.74944422881806 7.486582909888019 -8.962355583693171 3.74329145494401 -4.481177791846585 6.19069655000926 -6.874722114409029 6.185678630857198 -6.742718212415983 11.08396695669552 -14.10459549978603 10.65623561054411 -13.82917257110459 7.360925690233538 -8.961744858697601 3.680462845116769 -4.480872429348801 5.328117805272056 -6.914586285552295 5.54198347834776 -7.052297749893013 13.26768441638996 -12.36521479670056 13.46124800907294 -12.7724965200221 8.419948186108105 -8.356981608688461 4.209974093054052 -4.17849080434423 6.730624004536471 -6.386248260011051 6.633842208194981 -6.182607398350278 11.72036966567479 -13.33278326480139 9.876498001695808 -11.98045450806011 8.259253079178057 -8.537099214004153 4.129626539589029 -4.268549607002076 4.938249000847904 -5.990227254030056 5.860184832837393 -6.666391632400697 11.97966509082454 -10.58711210718703 13.15729410283716 -12.4439210471574 8.323250129800233 -8.425467281546748 4.161625064900116 -4.212733640773374 6.578647051418579 -6.221960523578701 5.989832545412269 -5.293556053593514 7.350777491034236 -8.872150234277518 8.850256094164777 -12.34833197236433 6.956289496105613 -10.6269661093069 3.478144748052807 -5.313483054653452 4.425128047082389 -6.174165986182165 3.675388745517118 -4.436075117138759 10.13372814794584 -9.101011452070644 11.57804377148073 -10.94931484447147 7.951820622852295 -8.756422366433158 3.975910311426147 -4.378211183216579 5.789021885740366 -5.474657422235735 5.066864073972921 -4.550505726035322 7.911156915166181 -8.818168903335222 7.554866048665636 -10.57803416141198 7.059350620025528 -10.00408034766921 3.529675310012764 -5.002040173834605 3.777433024332818 -5.28901708070599 3.955578457583091 -4.409084451667611 9.193989107545409 -9.508454846182369 9.68941088965202 -10.15601053307976 7.514844530510416 -9.783809952703798 3.757422265255208 -4.891904976351899 4.84470544482601 -5.078005266539878 4.596994553772705 -4.754227423091185 8.659595885478712 -9.110994827756787 9.051855465856226 -9.271744288876676 7.370703582872622 -9.539412442323325 3.685351791436311 -4.769706221161663 4.525927732928113 -4.635872144438338 4.329797942739356 -4.555497413878394</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"78\" source=\"#ID871\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID867\">\r\n                    <input semantic=\"POSITION\" source=\"#ID865\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID866\"/>\r\n                </vertices>\r\n                <triangles count=\"13\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID867\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID868\"/>\r\n                    <p>0 0 1 1 2 2 6 6 0 7 2 8 1 12 8 13 2 14 10 18 6 19 2 20 8 24 12 25 2 26 14 30 10 31 2 32 12 36 16 37 2 38 18 42 14 43 2 44 2 48 16 49 20 50 22 54 18 55 2 56 2 60 20 61 24 62 26 66 22 67 2 68 28 72 26 73 2 74</p>\r\n                </triangles>\r\n                <triangles count=\"13\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID867\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID868\"/>\r\n                    <p>3 3 4 4 5 5 3 9 5 10 7 11 3 15 9 16 4 17 3 21 7 22 11 23 3 27 13 28 9 29 3 33 11 34 15 35 3 39 17 40 13 41 3 45 15 46 19 47 21 51 17 52 3 53 3 57 19 58 23 59 25 63 21 64 3 65 3 69 23 70 27 71 3 75 27 76 29 77</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID872\">\r\n            <mesh>\r\n                <source id=\"ID873\">\r\n                    <float_array count=\"102\" id=\"ID877\">-0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"34\" source=\"#ID877\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID874\">\r\n                    <float_array count=\"102\" id=\"ID878\">-0.9134093689969149 -0.4070360955457695 -0.002222960079090378 -0.9119121534907809 -0.4102455541326406 0.01071492558113266 -0.9142974941597579 -0.4048897335756242 0.01115328732918963 0.9142974941597579 0.4048897335756242 -0.01115328732918963 0.9119121534907809 0.4102455541326406 -0.01071492558113266 0.9134093689969149 0.4070360955457695 0.002222960079090378 -0.9136502264216238 -0.4055454024125849 0.02786019277984999 0.9136502264216238 0.4055454024125849 -0.02786019277984999 -0.9117790669024211 -0.4069450223696586 0.05526917700770017 0.9117790669024211 0.4069450223696586 -0.05526917700770017 -0.9120015951730859 -0.4098723359248514 -0.01605486360118063 0.9120015951730859 0.4098723359248514 0.01605486360118063 -0.9141814459760682 -0.4043812773638791 -0.02735080164569932 0.9141814459760682 0.4043812773638791 0.02735080164569932 -0.9147624108846287 -0.3977990536394137 0.07046732970766671 0.9147624108846287 0.3977990536394137 -0.07046732970766671 -0.9126372670989114 -0.4070248176210724 0.03773614371876295 0.9126372670989114 0.4070248176210724 -0.03773614371876295 -0.9144871313551589 -0.4004184535448701 0.05812356360846403 0.9144871313551589 0.4004184535448701 -0.05812356360846403 -0.9204794639534302 -0.3894229249437765 -0.03267020000305571 0.9204794639534302 0.3894229249437765 0.03267020000305571 -0.9088875917936953 -0.4158717928127509 0.03120893183313543 0.9088875917936953 0.4158717928127509 -0.03120893183313543 -0.9109205019190907 -0.4117843417158877 -0.0256416672836413 0.9109205019190907 0.4117843417158877 0.0256416672836413 -0.9100402409371641 -0.4142768079748553 0.01419458520680808 0.9100402409371641 0.4142768079748553 -0.01419458520680808 -0.8630221137902762 -0.5042508634437252 0.03039568760896014 0.8630221137902762 0.5042508634437252 -0.03039568760896014 -0.9456945690175788 -0.3202907360795988 0.05545833131500434 0.9456945690175788 0.3202907360795988 -0.05545833131500434 -0.8815078276401288 -0.4717714966614515 0.01938052494116135 0.8815078276401288 0.4717714966614515 -0.01938052494116135</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"34\" source=\"#ID878\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID876\">\r\n                    <float_array count=\"180\" id=\"ID879\">-21.24412297407829 -0.125142413745954 -13.45535559221688 -0.2253901856971766 -21.27670996781477 -0.5024825625750654 -10.63835498390739 -0.2512412812875327 -6.727677796108438 -0.1126950928485883 -10.62206148703914 -0.06257120687297701 -13.42484942034366 -0.7580228247401991 -21.18446660970853 -1.451884809972818 -21.24619008053712 -1.035354676238285 -10.62309504026856 -0.5176773381191425 -10.59223330485427 -0.7259424049864089 -6.712424710171829 -0.3790114123700996 -20.98510383527625 -0.6124360400889033 -13.46874671677735 -0.8672629349756258 -21.25751011054963 -0.7668235939129079 -10.62875505527481 -0.3834117969564539 -6.734373358388677 -0.4336314674878129 -10.49255191763812 -0.3062180200444516 -13.50058237987369 -0.2330322036721792 -20.97141608118763 -1.060835085065468 -21.26028882019027 -0.9262762329989754 -10.63014441009513 -0.4631381164994877 -10.48570804059382 -0.5304175425327341 -6.750291189936846 -0.1165161018360896 -20.42396479385608 0.2036061404282778 -13.43154180529066 -0.1892618490922838 -20.9479230613187 0.06512407169546448 -10.47396153065935 0.03256203584773224 -6.71577090264533 -0.09463092454614187 -10.21198239692804 0.1018030702141389 -13.38256041331185 -0.8934496676200572 -20.31535974206487 -1.82375838440512 -20.85307675263828 -1.723023086473669 -10.42653837631914 -0.8615115432368344 -10.15767987103244 -0.9118791922025602 -6.691280206655926 -0.4467248338100286 -18.02003060176221 0.1220255335760297 -13.48055350387107 -0.7283738844541267 -20.47295909683744 -0.3353143390356228 -10.23647954841872 -0.1676571695178114 -6.740276751935537 -0.3641869422270633 -9.010015300881104 0.06101276678801487 -13.39863503439812 -0.8185917493552359 -17.71476096729495 -2.009425410882813 -20.33158400188232 -1.748210110450446 -10.16579200094116 -0.8741050552252229 -8.857380483647473 -1.004712705441407 -6.699317517199058 -0.409295874677618 -15.0082564826709 0.9665192416528483 -13.32897297677283 -0.2295582768528615 -17.86863127354823 0.6202423415971474 -8.934315636774112 0.3101211707985737 -6.664486488386415 -0.1147791384264307 -7.504128241335451 0.4832596208264242 -13.4529889311389 -0.693808394268258 -15.02644916115231 -1.943272607151886 -17.76961962851651 -1.883509276524634 -8.884809814258253 -0.9417546382623171 -7.513224580576157 -0.9716363035759428 -6.72649446556945 -0.346904197134129 -14.02614066497001 1.087155530817702 -13.21218803543074 -0.1228597901630481 -14.89071638258296 1.073873522804769 -7.445358191291481 0.5369367614023844 -6.60609401771537 -0.06142989508152404 -7.013070332485004 0.5435777654088512 -13.78397498742696 -0.4267008592463119 -14.44465413117839 -1.686613223182673 -15.35883216443236 -1.675075450976801 -7.679416082216179 -0.8375377254884004 -7.222327065589196 -0.8433066115913365 -6.891987493713481 -0.213350429623156 -14.69836427084818 0.4732769352801142 -14.30189428277912 -0.5868967377974099 -15.11723179364458 0.6225414511188454 -7.558615896822288 0.3112707255594227 -7.150947141389562 -0.293448368898705 -7.349182135424091 0.2366384676400571 -12.63674340539486 -0.8350418093976046 -12.92434911954095 -1.920022184078838 -13.29140723759785 -2.096895835997954 -6.645703618798926 -1.048447917998977 -6.462174559770474 -0.960011092039419 -6.318371702697432 -0.4175209046988023 -14.1800185543271 0.1536412372854066 -14.02024496794676 -0.5331294523352237 -14.41809006551084 0.5267253828811376 -7.209045032755421 0.2633626914405688 -7.010122483973378 -0.2665647261676118 -7.090009277163551 0.07682061864270329</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"90\" source=\"#ID879\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID875\">\r\n                    <input semantic=\"POSITION\" source=\"#ID873\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID874\"/>\r\n                </vertices>\r\n                <triangles count=\"15\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID875\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID876\"/>\r\n                    <p>0 0 1 1 2 2 1 6 6 7 2 8 8 12 1 13 0 14 1 18 10 19 6 20 12 24 1 25 8 26 1 30 14 31 10 32 16 36 1 37 12 38 1 42 18 43 14 44 20 48 1 49 16 50 1 54 22 55 18 56 24 60 1 61 20 62 1 66 26 67 22 68 28 72 1 73 24 74 1 78 30 79 26 80 32 84 1 85 28 86</p>\r\n                </triangles>\r\n                <triangles count=\"15\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID875\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID876\"/>\r\n                    <p>3 3 4 4 5 5 3 9 7 10 4 11 5 15 4 16 9 17 7 21 11 22 4 23 9 27 4 28 13 29 11 33 15 34 4 35 13 39 4 40 17 41 15 45 19 46 4 47 17 51 4 52 21 53 19 57 23 58 4 59 21 63 4 64 25 65 23 69 27 70 4 71 25 75 4 76 29 77 27 81 31 82 4 83 29 87 4 88 33 89</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID880\">\r\n            <mesh>\r\n                <source id=\"ID881\">\r\n                    <float_array count=\"108\" id=\"ID885\">-0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"36\" source=\"#ID885\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID882\">\r\n                    <float_array count=\"108\" id=\"ID886\">-0.9056830514341907 0.2001496463545517 -0.3737356410740096 -0.9047258764599201 0.221095053799041 -0.3641264418432539 -0.9105526100805975 0.1847929401693026 -0.369791175582917 0.9105526100805975 -0.1847929401693026 0.369791175582917 0.9047258764599201 -0.221095053799041 0.3641264418432539 0.9056830514341907 -0.2001496463545517 0.3737356410740096 -0.9051369888889698 0.176876174222501 -0.386577094946688 0.9051369888889698 -0.176876174222501 0.386577094946688 -0.904493813809657 0.1911218988267972 -0.3812654725632798 0.904493813809657 -0.1911218988267972 0.3812654725632798 -0.9048570575862879 0.1960303289645085 -0.3778965671481442 0.9048570575862879 -0.1960303289645085 0.3778965671481442 -0.9032828455301246 0.283194694223623 -0.3223055477874834 0.9032828455301246 -0.283194694223623 0.3223055477874834 -0.903932511685058 0.08979039239145804 -0.4181431570083751 0.903932511685058 -0.08979039239145804 0.4181431570083751 -0.9053391715144735 0.2442462075276558 -0.347425926824473 0.9053391715144735 -0.2442462075276558 0.347425926824473 -0.9034477096128234 0.08055611706507812 -0.4210616914405072 0.9034477096128234 -0.08055611706507812 0.4210616914405072 -0.9051167199063447 0.3004841266895872 -0.3007873217966073 0.9051167199063447 -0.3004841266895872 0.3007873217966073 -0.9038086622089847 0.07690250391578957 -0.4209701972913139 0.9038086622089847 -0.07690250391578957 0.4209701972913139 -0.8916242092027337 0.2877059539723708 -0.3496162948325602 0.8916242092027337 -0.2877059539723708 0.3496162948325602 -0.8974554480062785 0.08990498062023532 -0.4318458212180883 0.8974554480062785 -0.08990498062023532 0.4318458212180883 -0.8779052696244868 0.2831733692969536 -0.3861284507603243 0.8779052696244868 -0.2831733692969536 0.3861284507603243 -0.8787757289941988 0.135225059641794 -0.4576760878346039 0.8787757289941988 -0.135225059641794 0.4576760878346039 -0.9571766001854924 0.2406762368571569 -0.1608971878859901 0.9571766001854924 -0.2406762368571569 0.1608971878859901 -0.9663187840262552 -0.06408349179479717 -0.2492414767196787 0.9663187840262552 0.06408349179479717 0.2492414767196787</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"36\" source=\"#ID886\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID884\">\r\n                    <float_array count=\"192\" id=\"ID887\">11.23701380701663 14.38472431556303 11.62241699167023 14.15859673204485 7.247890561596551 9.017184793018476 3.623945280798275 4.508592396509238 5.811208495835114 7.079298366022423 5.618506903508315 7.192362157781517 9.610237607549587 15.07004322533177 10.09506839990886 14.89571032499116 6.312270124388578 9.4365141150515 3.156135062194289 4.71825705752575 5.047534199954431 7.447855162495579 4.805118803774794 7.535021612665886 10.70820329278883 14.61305107737053 10.73290706126174 14.34965055071956 6.493139303682451 9.389856794481524 3.246569651841226 4.694928397240762 5.366453530630868 7.174825275359781 5.354101646394414 7.306525538685265 10.07214180933752 14.65062086041686 10.37099973231822 14.77093216045764 6.929856889300352 9.19065053817757 3.464928444650176 4.595325269088785 5.185499866159109 7.385466080228818 5.036070904668759 7.32531043020843 12.31835537755474 13.50282029479082 12.17351499889409 13.08321338276301 7.821705813732769 8.685069065969902 3.910852906866384 4.342534532984951 6.086757499447046 6.541606691381505 6.159177688777371 6.751410147395411 7.77529816670016 15.01302132937492 8.151522194221171 15.33158858879169 5.370170743512229 9.751768766821881 2.685085371756115 4.87588438341094 4.075761097110585 7.665794294395843 3.88764908335008 7.506510664687459 11.45974683281593 13.49634638012442 10.6191642510143 11.62672481508899 7.211427886669418 9.036025413102365 3.605713943334709 4.518012706551183 5.309582125507149 5.813362407544494 5.729873416407967 6.748173190062207 6.043161989998992 13.39339577620473 7.610509003207477 15.06240894843653 5.235798096827196 9.792612949944351 2.617899048413598 4.896306474972175 3.805254501603738 7.531204474218267 3.021580994999496 6.696697888102364 11.46063465620553 10.99959879798778 10.22937862915607 8.939277822018701 7.980285588588723 8.469341774523125 3.990142794294362 4.234670887261562 5.114689314578033 4.46963891100935 5.730317328102766 5.499799398993892 6.007223952446729 13.40087908685941 5.204683511179758 9.799429035524494 4.605625825318914 11.54493689437456 2.302812912659457 5.772468447187281 2.602341755589879 4.899714517762247 3.003611976223365 6.700439543429704 10.08534950006962 9.25731378331802 9.603947610001866 8.670713562118595 7.838690672075432 8.780226490960692 3.919345336037716 4.390113245480346 4.801973805000933 4.335356781059297 5.042674750034811 4.62865689165901 4.507682296432314 11.54467298219238 5.113560001846171 9.800622461742714 4.061243782257101 10.93449054480636 2.030621891128551 5.46724527240318 2.556780000923085 4.900311230871357 2.253841148216157 5.772336491096191 9.671671521288179 9.065981605457438 9.276434081040812 8.875378320044581 7.906737286793971 9.178667328377136 3.953368643396986 4.589333664188568 4.638217040520406 4.43768916002229 4.835835760644089 4.532990802728719 6.191963544606201 9.949194390801255 5.184839687325803 10.74959644287122 5.196960240007307 11.11464310537072 2.598480120003654 5.557321552685361 2.592419843662901 5.374798221435611 3.0959817723031 4.974597195400627 8.493525136113068 7.344301545890064 7.961446468619004 7.383621000725571 7.116338653487188 7.625819840706948 3.558169326743594 3.812909920353474 3.980723234309502 3.691810500362786 4.246762568056534 3.672150772945032 3.248034811266818 8.626432983016079 2.510419584926491 9.040122526603774 2.15770661357887 9.356257960679804 1.078853306789435 4.678128980339902 1.255209792463246 4.520061263301887 1.624017405633409 4.313216491508039</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID887\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID883\">\r\n                    <input semantic=\"POSITION\" source=\"#ID881\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID882\"/>\r\n                </vertices>\r\n                <triangles count=\"16\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID883\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID884\"/>\r\n                    <p>0 0 1 1 2 2 6 6 0 7 2 8 1 12 8 13 2 14 10 18 6 19 2 20 8 24 12 25 2 26 14 30 10 31 2 32 12 36 16 37 2 38 18 42 14 43 2 44 16 48 20 49 2 50 18 54 2 55 22 56 20 60 24 61 2 62 22 66 2 67 26 68 24 72 28 73 2 74 2 78 30 79 26 80 28 84 32 85 2 86 2 90 34 91 30 92</p>\r\n                </triangles>\r\n                <triangles count=\"16\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID883\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID884\"/>\r\n                    <p>3 3 4 4 5 5 3 9 5 10 7 11 3 15 9 16 4 17 3 21 7 22 11 23 3 27 13 28 9 29 3 33 11 34 15 35 3 39 17 40 13 41 3 45 15 46 19 47 3 51 21 52 17 53 23 57 3 58 19 59 3 63 25 64 21 65 27 69 3 70 23 71 3 75 29 76 25 77 27 81 31 82 3 83 3 87 33 88 29 89 31 93 35 94 3 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID888\">\r\n            <mesh>\r\n                <source id=\"ID889\">\r\n                    <float_array count=\"180\" id=\"ID893\">-0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID893\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID890\">\r\n                    <float_array count=\"180\" id=\"ID894\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1339049186988217 0.7508247768900788 0.6467856114325872 -0.1366815993397975 0.7492072263892851 0.6480792176331454 -0.1357431839025557 0.7497550114468473 0.6476428111500465 0.1357431839025557 -0.7497550114468473 -0.6476428111500465 0.1366815993397975 -0.7492072263892851 -0.6480792176331454 0.1339049186988217 -0.7508247768900788 -0.6467856114325872 -0.1520463180641854 0.9134113510277387 -0.3775733319195171 -0.1334097867881871 0.9103994814047611 -0.3916307100408146 -0.1390632020355034 0.9113651292871443 -0.3873951818996452 0.1390632020355034 -0.9113651292871443 0.3873951818996452 0.1334097867881871 -0.9103994814047611 0.3916307100408146 0.1520463180641854 -0.9134113510277387 0.3775733319195171 -0.1567944187057105 0.08942895644361149 -0.9835740805918715 -0.1662539374228294 0.0953143051630216 -0.9814656445962314 -0.1620999136155048 0.09272970269960207 -0.9824076649961 0.1620999136155048 -0.09272970269960207 0.9824076649961 0.1662539374228294 -0.0953143051630216 0.9814656445962314 0.1567944187057105 -0.08942895644361149 0.9835740805918715 -0.1804827978264776 -0.7794077832683366 -0.5999578877466854 -0.1731947688567061 -0.7836915051681265 -0.5965158814046685 -0.1839627565907119 -0.7773362748139587 -0.6015862532055601 0.1839627565907119 0.7773362748139587 0.6015862532055601 0.1731947688567061 0.7836915051681265 0.5965158814046685 0.1804827978264776 0.7794077832683366 0.5999578877466854 -0.1498802405936568 -0.8314662140399025 0.5349764933057699 -0.159394116583764 -0.8338018904044722 0.5285526682899351 -0.1454069155601703 -0.830330389039357 0.5379667963220666 0.1454069155601703 0.830330389039357 -0.5379667963220666 0.159394116583764 0.8338018904044722 -0.5285526682899351 0.1498802405936568 0.8314662140399025 -0.5349764933057699 -0.1200646820303652 -0.1352334059142434 0.9835122765140153 -0.1169608422628643 -0.1329517455880777 0.9841971320432936 -0.1178688308120367 -0.1336192904808511 0.9839983861442035 0.1178688308120367 0.1336192904808511 -0.9839983861442035 0.1169608422628643 0.1329517455880777 -0.9841971320432936 0.1200646820303652 0.1352334059142434 -0.9835122765140153 -0.1149780011914516 -0.1314937652318465 0.9846265530378361 0.1149780011914516 0.1314937652318465 -0.9846265530378361 -0.1383533907224121 0.748228527281576 0.6488546911579324 0.1383533907224121 -0.748228527281576 -0.6488546911579324 -0.1218391275179259 0.9082828720398434 -0.4002217527380592 0.1218391275179259 -0.9082828720398434 0.4002217527380592 -0.171069294297384 0.09831063701288102 -0.9803419378965262 0.171069294297384 -0.09831063701288102 0.9803419378965262 -0.1903801350748161 -0.7734717985712226 -0.6045632977479636 0.1903801350748161 0.7734717985712226 0.6045632977479636 -0.1369570666554436 -0.8281195642851391 0.5435630130365088 0.1369570666554436 0.8281195642851391 -0.5435630130365088</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID894\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID892\">\r\n                    <float_array count=\"84\" id=\"ID895\">-3.22750530352778 -2.812409736805045 -2.951301684127827 -2.560178796236892 -3.07457980125035 -3.103438394186436 -2.586245081388976 -3.138366854245081 -2.556691561629541 -2.602862605502018 -2.334681128296288 -2.878373475755785 3.890396129634985 -3.830929293644298 3.841902111534349 -4.161649426798395 3.575431113631269 -3.789832146312027 3.887388388210999 -1.440193123441505 3.912498830598775 -1.754485825277173 3.566726244310392 -1.436325568056493 -0.4520798298547238 3.628218854229932 -0.02789107994044388 3.434714660158956 -0.6269127531905233 3.417011356515528 -4.616564961458593 -3.307009919642491 -4.930711116245211 -3.25041739217853 -4.876425679403012 -2.926478984311723 -4.513663973358447 -1.850958396857737 -4.836851909935116 -1.83958610627239 -4.878537780603065 -1.515035859425156 -5.046195202738853 -1.291777653134048 -5.308185798548161 -1.055748647629636 -4.790052294242987 -1.141577079945387 -5.313828097940997 -1.009515787560939 -5.090443691600591 -0.8300736736479857 -4.796520925120116 -1.098375304575961 3.816637853167348 -4.175572887189126 3.495993835408513 -4.170866329638131 3.552114816996843 -3.802895821126935 4.0296039108369 -1.697189035132493 3.713607575865441 -1.738790116719466 3.688828852934125 -1.375709284375783 -0.01104629650652111 3.368886973135145 -0.1460547981744018 3.138679991438502 -0.6101368924396966 3.352691153528167 -4.583199311398975 -2.874060766680606 -4.653434003548693 -3.245359532973397 -4.906343357164033 -2.861941179468713 -4.476160721886599 -1.758342063168315 -4.835281606577187 -1.418604677661858 -4.518465614885066 -1.386244061110217</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"42\" source=\"#ID895\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID891\">\r\n                    <input semantic=\"POSITION\" source=\"#ID889\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID890\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID891\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID892\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 43 24 48 25 44 26 45 26 49 25 46 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 25 33 54 34 26 35 27 35 55 34 28 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID896\">\r\n            <mesh>\r\n                <source id=\"ID897\">\r\n                    <float_array count=\"180\" id=\"ID901\">-0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID901\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID898\">\r\n                    <float_array count=\"180\" id=\"ID902\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1556107303666403 0.7682758938062599 0.6209166220926551 -0.1116879029147231 0.7955488162724242 0.5955064174885576 -0.1211700042938787 0.789903523489808 0.6011407935232872 0.1211700042938787 -0.789903523489808 -0.6011407935232872 0.1116879029147231 -0.7955488162724242 -0.5955064174885576 0.1556107303666403 -0.7682758938062599 -0.6209166220926551 -0.1244233597649755 0.7888847891485317 -0.60181360652188 -0.1090844255234062 0.783426245276965 -0.6118365029315144 -0.07906121212958679 0.7719592340661052 -0.6307362885364001 0.07906121212958679 -0.7719592340661052 0.6307362885364001 0.1090844255234062 -0.783426245276965 0.6118365029315144 0.1244233597649755 -0.7888847891485317 0.60181360652188 -0.2018053130177652 0.01921618423162401 -0.979237128534952 -0.1572201673390395 -0.01588452934778078 -0.9874358210584038 -0.1697468595286489 -0.006068861490700951 -0.9854690114865956 0.1697468595286489 0.006068861490700951 0.9854690114865956 0.1572201673390395 0.01588452934778078 0.9874358210584038 0.2018053130177652 -0.01921618423162401 0.979237128534952 -0.1301145213637191 -0.8486119901717154 -0.5127649573314177 -0.1086210651978576 -0.8602669808478003 -0.4981387215006411 -0.1343567494298995 -0.8462231442695603 -0.5156109521578944 0.1343567494298995 0.8462231442695603 0.5156109521578944 0.1086210651978576 0.8602669808478003 0.4981387215006411 0.1301145213637191 0.8486119901717154 0.5127649573314177 -0.1233984985839719 -0.8421416557768033 0.5249478470788555 -0.1395139141062699 -0.8459706197122566 0.5146548147587942 -0.1133150330807146 -0.8395891544271424 0.5312718278303796 0.1133150330807146 0.8395891544271424 -0.5312718278303796 0.1395139141062699 0.8459706197122566 -0.5146548147587942 0.1233984985839719 0.8421416557768033 -0.5249478470788555 -0.1131147639969138 0.1650111135103676 0.9797838448270062 -0.1302224134692138 0.1510864416931907 0.9799056128866409 -0.1260546410823167 0.1544903123830586 0.9799198798072183 0.1260546410823167 -0.1544903123830586 -0.9799198798072183 0.1302224134692138 -0.1510864416931907 -0.9799056128866409 0.1131147639969138 -0.1650111135103676 -0.9797838448270062 -0.1420492710714026 0.1413865864036689 0.9797100784278996 0.1420492710714026 -0.1413865864036689 -0.9797100784278996 -0.07903885031514943 0.8139813077432695 0.5754887407981291 0.07903885031514943 -0.8139813077432695 -0.5754887407981291 -0.1506678535050407 0.7975887197008246 -0.5840816998727005 0.1506678535050407 -0.7975887197008246 0.5840816998727005 -0.1263475132736118 -0.03992446121385578 -0.9911822956885165 0.1263475132736118 0.03992446121385578 0.9911822956885165 -0.1536418730879432 -0.8349919501480647 -0.5283773443496233 0.1536418730879432 0.8349919501480647 0.5283773443496233 -0.09890193715248216 -0.8357326912076589 0.5401567139953833 0.09890193715248216 0.8357326912076589 -0.5401567139953833</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID902\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID900\">\r\n                    <float_array count=\"84\" id=\"ID903\">2.1541310401361 -2.962968129024459 2.38695007375611 -2.736350782082216 2.418521699517856 -3.217524168002713 2.761839076668994 -2.686682816693547 2.821044674853094 -3.223738017132682 2.994709736256524 -2.987806394483918 4.862848037992812 -1.436471730911179 4.816630126722004 -1.72556996709557 4.546856623073591 -1.394885293464188 4.701232558523698 -3.464185464245616 4.356729313977708 -3.137265300856367 4.674295548158963 -3.13614816966916 2.832124689239227 2.605261509879871 3.232835120194977 2.574608855939533 2.790045554862084 2.35347060364349 -3.773819348498676 -1.514619174466891 -4.089461011924668 -1.478694176529454 -4.067706033708806 -1.206600595934767 -3.610399023948869 -4.057492832424999 -3.931153506527283 -4.05303378018515 -3.969045730769214 -3.701827264759665 5.255177150779224 -0.7332430780051124 5.043212311869807 -0.9815096230854541 5.001577739208429 -0.581536198764107 4.9024837554483 -1.297541471095555 4.850872795825993 -1.696794596249568 4.606137713813613 -1.534142956742709 4.665354963484203 -1.648431032989956 4.347788412930141 -1.649491048209251 4.37016457834615 -1.331467340770913 4.849233383170659 -3.32165800873397 4.536459444617076 -3.384541965459336 4.483803267194991 -3.009115504783515 1.340664256104527 3.565066468173025 1.452060210471746 3.329977995737437 1.04044806537555 3.226749937533368 -3.541497141569373 -0.9801162596498589 -3.57981940945645 -1.290193905695045 -3.862250629639993 -0.9756131540381329 -3.774866068728113 -4.012438122951902 -4.122520570283084 -3.650081136837909 -3.807240998867626 -3.6140169568218</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"42\" source=\"#ID903\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID899\">\r\n                    <input semantic=\"POSITION\" source=\"#ID897\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID898\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID899\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID900\"/>\r\n                    <p>0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 5 5 4 4 3 3 6 3 7 4 8 5 7 4 6 3 9 2 9 2 6 3 10 1 9 2 10 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 18 30 52 31 19 32 22 32 53 31 23 30 25 33 54 34 26 35 27 35 55 34 28 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID904\">\r\n            <mesh>\r\n                <source id=\"ID905\">\r\n                    <float_array count=\"180\" id=\"ID909\">-0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID909\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID906\">\r\n                    <float_array count=\"180\" id=\"ID910\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1162781854949556 0.9440221721569896 0.3087094460070827 -0.1346201936039555 0.9376228862790311 0.3205319431816625 -0.1281283390755502 0.939946060968536 0.3163613933391273 0.1281283390755502 -0.939946060968536 -0.3163613933391273 0.1346201936039555 -0.9376228862790311 -0.3205319431816625 0.1162781854949556 -0.9440221721569896 -0.3087094460070827 -0.1262440609561076 0.6903675011133202 -0.7123588635511321 -0.138001516637389 0.6955840009988096 -0.7050662940179939 -0.1649346685400534 0.70700699320098 -0.687704636220007 0.1649346685400534 -0.70700699320098 0.687704636220007 0.138001516637389 -0.6955840009988096 0.7050662940179939 0.1262440609561076 -0.6903675011133202 0.7123588635511321 -0.1349838365174811 -0.2465273866193998 -0.9596893307344993 -0.1249639091624064 -0.2537058685940289 -0.959175350834142 -0.1286676828647164 -0.2510584934495154 -0.9593822284434316 0.1286676828647164 0.2510584934495154 0.9593822284434316 0.1249639091624064 0.2537058685940289 0.959175350834142 0.1349838365174811 0.2465273866193998 0.9596893307344993 -0.137528258736553 -0.9661754887229821 -0.2181533933721836 -0.1258995814562067 -0.9694811380793162 -0.2103701934628239 -0.1434766227141468 -0.9644040248531957 -0.2221245947244455 0.1434766227141468 0.9644040248531957 0.2221245947244455 0.1258995814562067 0.9694811380793162 0.2103701934628239 0.137528258736553 0.9661754887229821 0.2181533933721836 -0.1239625549634292 -0.6332652192933885 0.7639426987675421 -0.1185484243271057 -0.6305364008267925 0.7670528784392604 -0.1200262461105332 -0.6312838785604785 0.7662077818152547 0.1200262461105332 0.6312838785604785 -0.7662077818152547 0.1185484243271057 0.6305364008267925 -0.7670528784392604 0.1239625549634292 0.6332652192933885 -0.7639426987675421 -0.1167974670152386 0.208822637995721 0.9709538905423534 -0.1045482762700885 0.2188615063811693 0.9701388039623601 -0.1074482883687536 0.2164917070285634 0.9703536500237859 0.1074482883687536 -0.2164917070285634 -0.9703536500237859 0.1045482762700885 -0.2188615063811693 -0.9701388039623601 0.1167974670152386 -0.208822637995721 -0.9709538905423534 -0.09592521523731801 0.2258827503490979 0.9694201030391322 0.09592521523731801 -0.2258827503490979 -0.9694201030391322 -0.1453360876391361 0.933647648128806 0.3273827893663605 0.1453360876391361 -0.933647648128806 -0.3273827893663605 -0.1018954951506087 0.6791262154425009 -0.7269146384320226 0.1018954951506087 -0.6791262154425009 0.7269146384320226 -0.1190712048485406 -0.2579031796181484 -0.9588055058867603 0.1190712048485406 0.2579031796181484 0.9588055058867603 -0.154126908222058 -0.9610952896026681 -0.2292176704913324 0.154126908222058 0.9610952896026681 0.2292176704913324 -0.115015487565636 -0.6287414646692523 0.7690615113406746 0.115015487565636 0.6287414646692523 -0.7690615113406746</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID910\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID908\">\r\n                    <float_array count=\"84\" id=\"ID911\">3.858881499525051 0.9609417295217747 3.993090241948528 1.28379398993862 4.139088478041265 0.7343252686688629 4.360066392024481 1.345881974146346 4.569212760641203 0.8212451680291688 4.659980598047449 1.15030729017397 4.932691922661467 2.050594508079105 4.916285000295099 1.711163197031581 4.615259486836989 2.070469394477851 5.301373169335704 -1.097168139238578 4.917103607755755 -0.805118177735519 5.237714155139309 -0.7850202068611257 -1.940032066892782 4.570920503433157 -1.733459754836062 4.880174696214064 -1.662795203246673 4.446608370819519 -3.534587250218728 1.624071027479026 -3.852408664159016 1.648173959859722 -3.840719447785261 1.984768461447111 -3.499512347452446 -2.523060644294281 -3.557127484714577 -2.219977571431748 -3.179303377019544 -2.513625773284166 6.036691952030751 1.558880138713572 5.857553404921535 1.299387320327408 5.765266348757652 1.69019121520112 5.53875939098732 2.16409055123303 5.68267868581342 1.783065168379234 5.379672069378961 1.860096852462629 5.018382483950596 1.712588065047657 4.697355198809692 1.697146151252073 4.72200273180184 2.074276447220133 5.042709028738651 -1.456450100848597 4.730220832293885 -1.507328388868188 4.680145291440302 -1.1477025667911 -2.043781256662477 4.349112368737373 -2.15044191010415 4.778099156923561 -1.849061549422705 4.695147414247404 -3.380644054737866 1.71494630994848 -3.683758735701449 2.077217382872447 -3.363423892743181 2.083472085264609 -3.620464559827389 -2.222019128872433 -3.308006398490402 -2.172864553124199 -3.246199033616235 -2.51847405722835</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"42\" source=\"#ID911\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID907\">\r\n                    <input semantic=\"POSITION\" source=\"#ID905\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID906\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID907\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID908\"/>\r\n                    <p>0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 5 5 4 4 3 3 6 3 7 4 8 5 7 4 6 3 9 2 9 2 6 3 10 1 9 2 10 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 18 30 52 31 19 32 22 32 53 31 23 30 26 33 25 34 54 35 55 35 28 34 27 33 30 36 32 37 56 38 57 38 33 37 35 36 37 39 58 40 38 41 39 41 59 40 40 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID912\">\r\n            <mesh>\r\n                <source id=\"ID913\">\r\n                    <float_array count=\"180\" id=\"ID917\">-0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID917\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID914\">\r\n                    <float_array count=\"180\" id=\"ID918\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1410029563660657 0.4807853474390595 0.8654268403417659 -0.1060549371234037 0.5081935363673253 0.8546880599998006 -0.1135576304247743 0.5024134134834092 0.8571379273630698 0.1135576304247743 -0.5024134134834092 -0.8571379273630698 0.1060549371234037 -0.5081935363673253 -0.8546880599998006 0.1410029563660657 -0.4807853474390595 -0.8654268403417659 -0.1067686555805312 0.994014375944963 0.02314896542551481 -0.0992313783360488 0.9949317552839722 0.01624610356613912 -0.1001724357446263 0.9948230072652543 0.01710752269338355 0.1001724357446263 -0.9948230072652543 -0.01710752269338355 0.0992313783360488 -0.9949317552839722 -0.01624610356613912 0.1067686555805312 -0.994014375944963 -0.02314896542551481 -0.09891909191161409 0.4687497692647048 -0.8777748384806138 -0.1287480142985737 0.4875078415387097 -0.8635739998705626 -0.1204055105956813 0.4823208077810515 -0.8676803278855798 0.1204055105956813 -0.4823208077810515 0.8676803278855798 0.1287480142985737 -0.4875078415387097 0.8635739998705626 0.09891909191161409 -0.4687497692647048 0.8777748384806138 -0.1646652191806799 -0.4577190077569442 -0.8737154431107287 -0.1437557280381843 -0.4742852702663527 -0.8685549913877557 -0.148440743472404 -0.4706111030796328 -0.869764643645355 0.148440743472404 0.4706111030796328 0.869764643645355 0.1437557280381843 0.4742852702663527 0.8685549913877557 0.1646652191806799 0.4577190077569442 0.8737154431107287 -0.09646331398013955 -0.9953169813336709 0.006239849741635174 -0.1039611698752289 -0.994581356731652 -1.567513741408958e-017 -0.09475985240703004 -0.9954707181582593 0.007656347776652718 0.09475985240703004 0.9954707181582593 -0.007656347776652718 0.1039611698752289 0.994581356731652 1.567513741408958e-017 0.09646331398013955 0.9953169813336709 -0.006239849741635174 -0.08050414354804245 -0.4417526345097378 0.8935175951123192 -0.1080393619639094 -0.4596758574940459 0.881490557126703 -0.1004692751834205 -0.4547958960035424 0.8849105139631087 0.1004692751834205 0.4547958960035424 -0.8849105139631087 0.1080393619639094 0.4596758574940459 -0.881490557126703 0.08050414354804245 0.4417526345097378 -0.8935175951123192 -0.1261670868981231 -0.4712139498534301 0.8729486122602924 0.1261670868981231 0.4712139498534301 -0.8729486122602924 -0.08066176544082679 0.5273398224729309 0.8458169963001376 0.08066176544082679 -0.5273398224729309 -0.8458169963001376 -0.09298631847472325 0.9956116753904154 0.01053263513122168 0.09298631847472325 -0.9956116753904154 -0.01053263513122168 -0.1480979007488019 0.499360107511594 -0.8536430722613565 0.1480979007488019 -0.499360107511594 0.8536430722613565 -0.128617271239178 -0.4860099095104769 -0.8644373692735674 0.128617271239178 0.4860099095104769 0.8644373692735674 -0.08787557746910753 -0.9960416408784326 0.01337656610159817 0.08787557746910753 0.9960416408784326 -0.01337656610159817</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID918\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID916\">\r\n                    <float_array count=\"84\" id=\"ID919\">-0.2925268116698577 3.596545335882117 0.027122406016975 3.736241749693183 -0.3004302779671875 3.329571050263488 0.04688576503043994 3.183664922406017 0.3783244763866356 3.599650192905323 0.3783244763866733 3.320256183830747 4.304771798895633 1.03172710660281 4.21481509604171 0.7529116011386672 4.000044726454139 1.10793485062912 4.421275731804731 3.581575744406544 4.420431663145973 3.314529897656492 4.10347570606989 3.588741106063421 4.319595171864108 2.43657218669946 4.391308998608645 2.132013168039903 4.004262736190113 2.404159357085891 -4.197876129968127 2.620891524746142 -4.085679924831708 2.901690795312082 -3.898880727774464 2.528130711158829 -4.096804965313124 3.297878293086227 -4.414531600177956 3.320256183830747 -4.41453160017797 3.599650192905323 -4.337741485997127 0.7903962326542223 -4.40070684784139 1.094589961698369 -4.021893908100886 0.8163003856027347 -3.915494554730933 0.7530582966662636 -4.318740986045711 1.009222180880419 -4.014861215834311 1.087495689805327 4.382412656505274 1.275732923953219 4.06494067866972 1.289160856444053 4.117569520822965 1.609168978682243 4.430786423268708 3.323457494963106 4.11338677832698 3.307928508737795 4.113749018618937 3.59761042930563 3.896458540050114 2.733419148329708 4.306625459163545 2.483105444542788 4.004673048262786 2.396474751015988 -4.232313562344972 2.697004915989215 -3.918374393230021 2.65249310587964 -4.010318426120987 2.335558842294007 -4.109867458805556 3.289422241500907 -4.427552647176091 3.591221143347064 -4.110337663997246 3.602853878806665</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"42\" source=\"#ID919\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID915\">\r\n                    <input semantic=\"POSITION\" source=\"#ID913\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID914\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID915\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID916\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 26 33 25 34 54 35 55 35 28 34 27 33 31 36 56 37 32 38 33 38 57 37 34 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID920\">\r\n            <mesh>\r\n                <source id=\"ID921\">\r\n                    <float_array count=\"180\" id=\"ID925\">-0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID925\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID922\">\r\n                    <float_array count=\"180\" id=\"ID926\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1094074020686247 0.4984230333416132 0.8600026163955198 -0.101645225647281 0.504024634304494 0.8576872484287816 -0.1038929795673725 0.5024082937966418 0.8583659797085161 0.1038929795673725 -0.5024082937966418 -0.8583659797085161 0.101645225647281 -0.504024634304494 -0.8576872484287816 0.1094074020686247 -0.4984230333416132 -0.8600026163955198 -0.1018222525483512 0.9769718064996613 -0.1875055150942714 -0.1087690994352792 0.9772346523405453 -0.1821584949237671 -0.1067289061750859 0.9771652234428873 -0.1837309627702476 0.1067289061750859 -0.9771652234428873 0.1837309627702476 0.1087690994352792 -0.9772346523405453 0.1821584949237671 0.1018222525483512 -0.9769718064996613 0.1875055150942714 -0.1433289414998819 0.3565134591932102 -0.9232307230278977 -0.1359909180218172 0.3518821215535716 -0.9261130831310727 -0.1384934920200037 0.3534641008466894 -0.9251392771257453 0.1384934920200037 -0.3534641008466894 0.9251392771257453 0.1359909180218172 -0.3518821215535716 0.9261130831310727 0.1433289414998819 -0.3565134591932102 0.9232307230278977 -0.1349675165566499 -0.6595557153030317 -0.7394389953780073 -0.1173622889185317 -0.6711286400381099 -0.731992104916713 -0.1222124372058731 -0.6679776222096131 -0.7340776637518621 0.1222124372058731 0.6679776222096131 0.7340776637518621 0.1173622889185317 0.6711286400381099 0.731992104916713 0.1349675165566499 0.6595557153030317 0.7394389953780073 -0.1058191295169145 -0.9701374026818134 0.2182561150255999 -0.1176512528335321 -0.9707395559761901 0.209339191671912 -0.1005580890291001 -0.9698016599802893 0.2221999348116262 0.1005580890291001 0.9698016599802893 -0.2221999348116262 0.1176512528335321 0.9707395559761901 -0.209339191671912 0.1058191295169145 0.9701374026818134 -0.2182561150255999 -0.08585473045780438 -0.2416308289560064 0.9665627283089551 -0.09548416722338041 -0.2496875094316789 0.9636072443913355 -0.09416004869071552 -0.2485813326810608 0.9640234469519244 0.09416004869071552 0.2485813326810608 -0.9640234469519244 0.09548416722338041 0.2496875094316789 -0.9636072443913355 0.08585473045780438 0.2416308289560064 -0.9665627283089551 -0.1032242823055442 -0.256142923912011 0.9611116220670267 0.1032242823055442 0.256142923912011 -0.9611116220670267 -0.09649147165714225 0.5077129698964091 0.8561056804486271 0.09649147165714225 -0.5077129698964091 -0.8561056804486271 -0.1131851789208752 0.9773627740502681 -0.1787487711102216 0.1131851789208752 -0.9773627740502681 0.1787487711102216 -0.1315202965520038 0.349049637920842 -0.9278290585351389 0.1315202965520038 -0.349049637920842 0.9278290585351389 -0.1057405989715317 -0.6785643004438799 -0.7268902364815817 0.1057405989715317 0.6785643004438799 0.7268902364815817 -0.08943516453163014 -0.968954655637462 0.2304956109423514 0.08943516453163014 0.968954655637462 -0.2304956109423514</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID926\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID924\">\r\n                    <float_array count=\"84\" id=\"ID927\">-4.51102072099726 1.290001193398601 -4.163760809506149 1.448324091080901 -4.43604104310682 0.9826730704162471 -4.037474306459234 0.861597233214203 -3.832275540913754 1.38313464652574 -3.745473328734743 1.066488851161099 3.48126989775373 -2.661916721724257 3.406816483430799 -2.972177582241644 3.171026590337021 -2.606554836662415 3.986386895219333 1.997404066098809 3.994159350684655 1.684526607744221 3.668382965150461 2.008969601292834 2.500220450372008 4.580014812517327 2.648891197907055 4.264915060407883 2.195936011940815 4.503074526773451 -5.196643413251278 -1.19861087185011 -5.138103206570871 -0.8942667761061519 -4.885016970408737 -1.255419445917819 -4.577487831674194 1.559607900813885 -4.89624123966273 1.566454220558648 -4.90668503084679 1.890274882143592 -5.502753935253568 1.960405471812763 -5.613737620860929 2.214624445873762 -5.196980618279403 2.02817604302201 -5.28394018282753 1.881208739224467 -5.709881774726242 2.054336581082488 -5.419548725810715 2.156634437970546 3.557132004722975 -2.881032731401244 3.240017181379571 -2.859050560085873 3.310138597047183 -2.520016467100998 3.938085392640403 1.658921497886375 3.620759139691174 1.628873567018144 3.611445236497108 1.98282659750306 2.320203332516909 4.476851663613845 2.766926089553627 4.231515357916557 2.474798949672067 4.128983753580942 -4.732582976568755 -1.343547542461741 -5.001424279837343 -0.9895101278624701 -4.68279295752764 -0.9992583488947533 -4.484848678126927 1.630913117934281 -4.811397957767102 1.963200932487673 -4.494532730293797 1.981060250884132</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"42\" source=\"#ID927\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID923\">\r\n                    <input semantic=\"POSITION\" source=\"#ID921\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID922\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID923\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID924\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 26 33 25 34 54 35 55 35 28 34 27 33 32 36 31 37 56 38 57 38 34 37 33 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID928\">\r\n            <mesh>\r\n                <source id=\"ID929\">\r\n                    <float_array count=\"240\" id=\"ID933\">-0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID933\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID930\">\r\n                    <float_array count=\"240\" id=\"ID934\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6729842940505703 0.1624422630054802 0.7215986773483681 -0.6631750828133616 0.3731148991519088 0.6488328610407705 -0.6659834446608215 0.3807686437826488 0.6414680750821734 0.6659834446608215 -0.3807686437826488 -0.6414680750821734 0.6631750828133616 -0.3731148991519088 -0.6488328610407705 0.6729842940505703 -0.1624422630054802 -0.7215986773483681 -0.6113335516860552 0.4667959055536873 0.6390405864585023 -0.6145137989325163 0.4655985671337754 0.6368600829102905 0.6145137989325163 -0.4655985671337754 -0.6368600829102905 0.6113335516860552 -0.4667959055536873 -0.6390405864585023 -0.6144500916695223 -0.7444263356970634 -0.2613054066948456 -0.6112712807697465 -0.7468583700018094 -0.2618205424796805 -0.6629988808447853 -0.7286899444755632 -0.1715909345471451 0.6629988808447853 0.7286899444755632 0.1715909345471451 0.6112712807697465 0.7468583700018094 0.2618205424796805 0.6144500916695223 0.7444263356970634 0.2613054066948456 -0.6658161315575506 -0.7238380484211855 -0.180962312693964 -0.6729924006868499 -0.7380291832850042 0.04893008519735241 0.6729924006868499 0.7380291832850042 -0.04893008519735241 0.6658161315575506 0.7238380484211855 0.180962312693964 -0.6701345713609732 -0.7408307531705968 0.04571051764672113 -0.6289565476282814 -0.7476459025257273 0.2131648789833918 0.6289565476282814 0.7476459025257273 -0.2131648789833918 0.6701345713609732 0.7408307531705968 -0.04571051764672113 -0.6253103361580007 -0.5580893712997171 0.545456906763728 -0.6194244385915946 -0.5603481644919415 0.5498393396493199 -0.6586335051836426 -0.4503276787562835 0.602832387646422 0.6586335051836426 0.4503276787562835 -0.602832387646422 0.6194244385915946 0.5603481644919415 -0.5498393396493199 0.6253103361580007 0.5580893712997171 -0.545456906763728 -0.6193457640666231 -0.3683472929438279 0.6933477455892423 -0.6252441215267333 -0.3647786176751771 0.6899321333169304 0.6252441215267333 0.3647786176751771 -0.6899321333169304 0.6193457640666231 0.3683472929438279 -0.6933477455892423 -0.6289128458978669 0.007652928515795015 0.7774381422015375 -0.6701201336408642 0.1663084455640048 0.7233813015438224 0.6701201336408642 -0.1663084455640048 -0.7233813015438224 0.6289128458978669 -0.007652928515795015 -0.7774381422015375 -0.622078851308744 -0.7522767596266303 0.2170197679476473 0.622078851308744 0.7522767596266303 -0.2170197679476473 -0.6633240955833247 -0.4478538037142369 0.5995232395139108 0.6633240955833247 0.4478538037142369 -0.5995232395139108 -0.6220261755595516 0.005266994658404282 0.7829787325885845 0.6220261755595516 -0.005266994658404282 -0.7829787325885845</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID934\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID932\">\r\n                    <float_array count=\"132\" id=\"ID935\">-5.438809568305453 -9.482737238346916 -4.541160899478318 -7.445155913627095 -5.145381836570095 -9.567177416708539 -4.190221839946828 -7.423786392543641 -4.338167595264546 -6.491496952334127 -4.22725624399334 -5.808877949883205 -4.020489550882155 -6.418076771645296 -10.25054723218782 -6.567089824067745 -7.923492667272267 -5.229891230022745 -10.06436935037758 -6.764499303685906 -7.849986300628801 -5.500677176589291 -6.745726004323971 -4.816560978528544 -6.74510123625174 -5.077039638609257 -6.05632672639457 -5.091645344449993 -5.944453442550639 -4.799730893098601 -5.184941219754366 -5.408638486833185 -4.986782358868105 -5.199964448886369 -4.55134529488531 -5.976060559444166 -4.269678334633769 -7.17228634502103 -5.336475990643389 -7.742358147485223 -5.505193325159312 -7.604034168790181 -3.661673248818458 -8.175413593687873 -5.511200601136377 -9.91390228982233 -5.689347174156868 -9.800731856029373 -6.397152300006442 -9.528426778102082 -6.619985055648084 -9.486958521750623 -6.015019925488002 -7.266096214065682 -5.79271183303645 -7.457467891379393 -6.028516018800286 -7.409110337784746 -5.916495195503265 -6.398410337512396 -5.673245435811727 -6.290409739551873 -5.918451089773818 -6.293838969348061 -6.058299012606727 -5.672970773922897 -5.831542273483992 -4.949930903754136 -6.048613951193245 -5.018529849581411 -6.611867500289026 -4.289528229207675 -6.506198159929273 -4.392862628766582 -7.32929965042728 -3.837447967747981 -7.208078507396563 -3.680070861867471 -5.811153776812445 -5.845724523787836 -6.612063954614971 -5.871073215402708 -6.660239379493177 -5.681909366053281 -4.387052615037615 -7.827415091763079 -4.202315597411297 -7.952433032619871 -6.31321530276293 -9.510799849948398 -4.446445643616539 -6.970949011293415 -4.332306682772676 -7.141703510882534 -5.571264021655384 -7.567302934022142 -5.799661110009105 -7.240732120036159 -6.473568664496056 -9.447001600170312 -6.035007605903449 -7.19101390246045 -5.796727443660892 -7.448951623798941 -5.918247615980235 -6.389731880133182 -5.673040901826159 -6.386349889532563 -5.664342994491257 -6.207430836053704 -6.041028142086967 -5.586805558446977 -5.819314759100421 -5.528107959488318 -6.42137595324032 -4.391696199990871 -5.81103562343381 -5.155932387550443 -6.610934274938454 -4.510184301514173 -5.87571544118804 -5.509489278649395 -5.907464823598496 -5.691800534694194 -6.752987524416816 -5.516952551322585 -6.431552494877005 -4.672209874291356 -7.16680172405666 -3.98054871024504 -6.262434736188439 -4.53591418972004</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID935\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID931\">\r\n                    <input semantic=\"POSITION\" source=\"#ID929\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID930\"/>\r\n                </vertices>\r\n                <triangles count=\"64\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID931\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID932\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 6 6 3 3 5 5 7 7 8 8 9 9 9 9 8 8 10 10 8 8 11 11 10 10 10 10 11 11 12 12 12 12 11 11 13 13 11 11 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 5 5 17 17 4 4 17 17 5 5 18 5 19 17 20 4 19 17 18 5 21 16 19 17 21 16 22 15 22 15 21 16 23 14 22 15 23 14 24 13 24 13 23 14 25 11 24 13 25 11 26 12 26 12 25 11 27 10 27 10 25 11 28 8 27 10 28 8 29 9 29 9 28 8 30 7 18 5 31 3 32 6 31 3 18 5 20 4 31 3 20 4 33 1 31 3 33 1 34 2 34 2 33 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 37 21 42 22 43 23 44 23 45 22 40 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 48 28 53 29 54 29 49 28 55 27 56 30 53 31 57 32 58 32 54 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 62 36 66 37 67 38 68 38 69 37 63 36 70 39 36 40 71 41 72 41 41 40 73 39 38 42 37 43 43 44 44 44 40 43 39 42 71 45 36 46 38 47 39 47 41 46 72 45 52 48 46 49 48 50 49 50 51 49 55 48 52 51 53 52 56 53 59 53 54 52 55 51 56 54 57 55 74 56 75 56 58 55 59 54 76 57 60 58 62 59 63 59 65 58 77 57 78 60 70 61 71 62 72 62 73 61 79 60 62 63 67 64 76 65 77 65 68 64 63 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID936\">\r\n            <mesh>\r\n                <source id=\"ID937\">\r\n                    <float_array count=\"300\" id=\"ID941\">-0.5150356702529333 0.418747608939894 -1.245344265937886 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID941\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID938\">\r\n                    <float_array count=\"300\" id=\"ID942\">-0.115277788968267 0.9330479626690824 0.3407822335886396 -0.1164463359679276 0.9328196483828717 0.3410099037132209 -0.1088396993734213 0.9391143652329044 0.3259112284863811 0.1088396993734213 -0.9391143652329044 -0.3259112284863811 0.1164463359679276 -0.9328196483828717 -0.3410099037132209 0.115277788968267 -0.9330479626690824 -0.3407822335886396 -0.110822325248955 0.938063640003709 0.3282605969796052 0.110822325248955 -0.938063640003709 -0.3282605969796052 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1169850955608708 0.9419046119998733 0.3148494708745472 0.1169850955608708 -0.9419046119998733 -0.3148494708745472 -0.5145250095588039 0.8558675183312584 0.05248624204499802 -0.4971810650748229 0.8663223338632058 0.04792287951357918 -0.5580107354442373 0.8289599112591531 0.03807209810606934 0.5580107354442373 -0.8289599112591531 -0.03807209810606934 0.4971810650748229 -0.8663223338632058 -0.04792287951357918 0.5145250095588039 -0.8558675183312584 -0.05248624204499802 -0.5582784877518608 0.8289230506726751 0.03480957019271046 -0.545158170653844 0.8382267271768401 0.01336124304687095 0.545158170653844 -0.8382267271768401 -0.01336124304687095 0.5582784877518608 -0.8289230506726751 -0.03480957019271046 -0.1365860819270675 0.9570595346721975 0.2556976521535723 -0.1321549003024238 0.9557169747171905 0.2629451398361978 -0.1318695905464307 0.9596171302456248 0.2484861654665474 0.1318695905464307 -0.9596171302456248 -0.2484861654665474 0.1321549003024238 -0.9557169747171905 -0.2629451398361978 0.1365860819270675 -0.9570595346721975 -0.2556976521535723 -0.1269044865420529 0.9532261396277257 0.2743267723462684 -0.1289657532660433 0.9574337946917685 0.2582409016144471 0.1289657532660433 -0.9574337946917685 -0.2582409016144471 0.1269044865420529 -0.9532261396277257 -0.2743267723462684 -0.1260690186249341 0.9534847853620122 0.2738126487693791 -0.1240825368586034 0.9470375050500011 0.2961815120418608 -0.1256954876265769 0.946399129432289 0.2975387910846624 0.1240825368586034 -0.9470375050500011 -0.2961815120418608 0.1256954876265769 -0.946399129432289 -0.2975387910846624 0.1260690186249341 -0.9534847853620122 -0.2738126487693791 -0.1211441855015404 0.9401500394776983 0.3184995911916539 0.1211441855015404 -0.9401500394776983 -0.3184995911916539 -0.6307694948426644 0.7463033893518946 0.2125114006772442 -0.6328306015520273 0.7446519113729666 0.2121767202779013 -0.5536072311495947 0.7950907964196508 0.2476886333032765 0.5536072311495947 -0.7950907964196508 -0.2476886333032765 0.6328306015520273 -0.7446519113729666 -0.2121767202779013 0.6307694948426644 -0.7463033893518946 -0.2125114006772442 -0.5497408771862887 0.7964870254649378 0.2517804325527812 -0.5039674104246305 0.8086833501771441 0.3033942787465886 0.5039674104246305 -0.8086833501771441 -0.3033942787465886 0.5497408771862887 -0.7964870254649378 -0.2517804325527812 -0.49850465150458 0.8115072862067282 0.3048754448322932 -0.4609956099973669 0.7886395059681967 0.4068547372089872 0.4609956099973669 -0.7886395059681967 -0.4068547372089872 0.49850465150458 -0.8115072862067282 -0.3048754448322932 -0.4573880925719646 0.794515332784318 0.399426487283961 -0.4569339343695998 0.6598239237892639 0.5965264195464085 0.4569339343695998 -0.6598239237892639 -0.5965264195464085 0.4573880925719646 -0.794515332784318 -0.399426487283961 -0.4542025713545716 0.645235326881341 0.6143056219173191 -0.4287005991166544 0.541309811422194 0.7233252963743838 0.4287005991166544 -0.541309811422194 -0.7233252963743838 0.4542025713545716 -0.645235326881341 -0.6143056219173191 -0.3523470247597167 0.9358104485918809 0.01050611484984737 -0.3063228392035632 0.9519258992836576 -0.001844032339199885 0.3063228392035632 -0.9519258992836576 0.001844032339199885 0.3523470247597167 -0.9358104485918809 -0.01050611484984737 -0.5412614551618135 0.8407681758003589 0.01203792828742119 0.5412614551618135 -0.8407681758003589 -0.01203792828742119 -0.4272410976619026 0.5422294182526325 0.7235000362474522 0.4272410976619026 -0.5422294182526325 -0.7235000362474522</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID942\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID940\">\r\n                    <float_array count=\"196\" id=\"ID943\">4.591982473100826 -10.49532155130045 3.596381102692845 -10.48973263072317 3.76825062863832 -7.313630254900839 4.788649302747732 -7.361376930524428 4.631787065582489 -10.48471036339275 3.796584343130128 -7.304870234576655 -0.7853905368619629 -4.383741487515724 -0.7842970050049303 -4.827816971326995 -1.146439087214903 -5.03998101979383 -4.18747608939894 -9.796708225378035 -2.830459374017382 -6.858879041460048 -3.334680812059787 -9.988933491671299 -2.433741973391066 -5.946419099073036 -2.261771182375565 -7.026766978130183 -2.160556126454998 -5.312462941343926 -1.883282441546899 -6.176047377569198 -1.75673311539269 -4.219410608791835 -1.55270259855911 -5.546970027708173 -1.390357703847656 -3.215229491993068 -1.233424149184261 -2.753147786843712 -0.7088761597558091 -3.338546544481618 -0.694556993678912 -2.849561690363584 4.796023997542307 -7.350374402013268 3.803908500346693 -7.294419494786282 3.846359672297336 -6.358789390875086 4.189805728167312 -4.506856094946615 4.017070421792077 -4.507227523838949 4.056342725136757 -3.460756783488558 4.041586134627782 -3.375623115899968 3.862151086380763 -3.39010326253353 3.870196798047121 -2.901029633565524 4.924433338735429 -3.053604799231155 4.902261330893889 -3.531575789521651 3.928024266704107 -3.013988383563838 4.914626931451051 -3.539105977826516 4.865011689683587 -4.583100420342436 3.919683204120139 -3.486961206510021 3.879494827284836 -4.562583285591289 4.875488640555209 -4.580879223037842 3.826540600621813 -5.700099691054323 4.822529489921589 -5.718396071753157 4.819555400866464 -5.742979411248102 4.783442973528894 -6.411767901669563 3.823573876076065 -5.724436591786642 4.801955210030906 -6.405668232595182 4.751878529572747 -7.369217884205696 3.807368354643659 -6.37459105667303 1.957060357039899 -10.75365200785607 1.765124464725816 -10.7423214537102 2.459913955440844 -7.711138893628805 3.112360206094057 -7.803950315529296 2.933665600069839 -7.795972115472037 3.149980037999058 -6.910862697284486 3.538235007196647 -6.973994288736734 3.368556206581121 -6.954419143262834 3.543814988888633 -6.287816333452746 3.730204477851461 -6.425917052375335 3.571658995865501 -6.383955407013207 3.78465959479941 -5.80854108379769 3.450220969145402 -5.87097057055601 3.291859972225696 -5.827754909589918 3.519029084241668 -5.520774225638371 4.81826881172313 -4.865116337961796 4.662517777683195 -4.824437088967236 4.662182803330457 -4.380360850124628 4.169439869693115 -5.006811491088558 4.017124258375433 -4.521314350847296 4.189859564349691 -4.520942806572722 4.004600561683029 -4.529075056857496 3.874875918312202 -3.482684764307377 4.054308477449268 -3.46818554239393 4.13083736103226 -2.887771090306144 4.12622640779107 -3.355828234508149 3.954605625143068 -2.881286514067027 4.918885407229313 -3.514893431760281 3.923906485213045 -3.463165909205145 3.943337637863319 -2.998836062633428 4.875812890540187 -4.576456053667682 3.879818224823473 -4.558188850263479 3.928797703118019 -3.481218209051338 4.803189826014569 -6.40130696790807 3.808597935928527 -6.370329666730073 3.841555000386308 -5.715504750840945 3.127530081582867 -7.698959191979644 2.529718595190085 -10.74144726110512 2.948827516519374 -7.691092086442025 3.575179329102383 -6.890866213050533 3.386085399216066 -7.765086638555999 3.405436347186381 -6.871638496491231 3.947379466551694 -6.267623306827016 3.799988017323743 -6.914572938978153 3.787685574673548 -6.22844919458952 3.926023634899166 -5.850225398106103 3.707505967984392 -6.43359348176798 3.764036350977447 -5.816332960126295 3.706070434976303 -5.556515053892731 3.494701207686569 -5.848193276457293 3.560052651719282 -5.497587420403937</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID943\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID939\">\r\n                    <input semantic=\"POSITION\" source=\"#ID937\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID938\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID939\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID940\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 8 6 9 7 10 8 11 9 12 10 13 11 12 10 14 12 13 11 13 11 14 12 15 13 14 12 16 14 15 13 15 13 16 14 17 15 16 14 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 20 18 21 19 19 17 19 17 21 19 10 8 10 8 21 19 8 6 8 6 21 19 22 20 23 21 22 20 21 19 24 19 25 20 26 21 25 20 24 19 27 6 27 6 24 19 28 8 28 8 24 19 29 17 29 17 24 19 30 18 29 17 30 18 31 16 29 17 31 16 32 15 32 15 31 16 33 14 32 15 33 14 34 13 34 13 33 14 35 12 34 13 35 12 36 11 36 11 35 12 37 10 36 11 37 10 38 9 28 8 39 7 27 6 6 22 2 23 40 24 41 24 3 23 7 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 44 29 49 30 50 30 45 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 58 38 63 39 64 40 63 39 58 38 61 38 65 39 66 40 65 39 61 38 67 37 64 41 68 42 63 43 65 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 72 51 77 52 78 52 73 51 79 50 80 53 77 54 81 55 82 55 78 54 83 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 92 62 93 63 43 64 46 64 94 63 95 62 92 65 43 66 42 67 47 67 46 66 95 65 42 68 44 69 48 70 51 70 45 69 47 68 96 71 48 72 49 73 50 73 51 72 97 71 53 74 59 75 54 76 55 76 60 75 56 74 58 77 62 78 59 79 60 79 67 78 61 77 68 80 40 81 63 82 65 82 41 81 69 80 76 83 70 84 72 85 73 85 75 84 79 83 80 86 76 87 77 88 78 88 79 87 83 86 84 89 80 90 81 91 82 91 83 90 87 89 88 92 84 93 85 94 86 94 87 93 91 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID944\">\r\n            <mesh>\r\n                <source id=\"ID945\">\r\n                    <float_array count=\"300\" id=\"ID949\">-0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID949\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID946\">\r\n                    <float_array count=\"300\" id=\"ID950\">-0.1152454256731035 -0.591455387657384 -0.7980595317847402 -0.10882822046992 -0.5789017034806163 -0.8081022436156152 -0.1164097430468417 -0.5916084081534543 -0.7977770760844811 0.1164097430468417 0.5916084081534543 0.7977770760844811 0.10882822046992 0.5789017034806163 0.8081022436156152 0.1152454256731035 0.591455387657384 0.7980595317847402 -0.1108221458520233 -0.5808630075720961 -0.8064221093342195 0.1108221458520233 0.5808630075720961 0.8064221093342195 -0.1170077107804017 -0.5691015957689537 -0.8138996064080387 0.1170077107804017 0.5691015957689537 0.8138996064080387 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211696670977339 -0.5721039063745667 -0.8111812572331694 0.1211696670977339 0.5721039063745667 0.8111812572331694 -0.1268981050915295 -0.533447946261532 -0.8362596244908234 -0.1321663082555465 -0.5232428882080906 -0.8418722865742495 -0.1289674607165914 -0.5192099234538959 -0.844860017673528 0.1289674607165914 0.5192099234538959 0.844860017673528 0.1321663082555465 0.5232428882080906 0.8418722865742495 0.1268981050915295 0.533447946261532 0.8362596244908234 -0.1366069441971335 -0.5166761365997606 -0.8452125843037756 -0.1318813258933644 -0.5104743797675104 -0.8497194969409517 0.1318813258933644 0.5104743797675104 0.8497194969409517 0.1366069441971335 0.5166761365997606 0.8452125843037756 -0.5582991414998946 -0.2685090417213844 -0.7849872375487035 -0.5451296895268838 -0.2505730592629967 -0.8000292266960662 -0.558031261867371 -0.2716463664879751 -0.78409780152261 0.558031261867371 0.2716463664879751 0.78409780152261 0.5451296895268838 0.2505730592629967 0.8000292266960662 0.5582991414998946 0.2685090417213844 0.7849872375487035 -0.497052555982873 -0.2917024651576237 -0.8172199388242178 -0.5143888624622276 -0.293110942014941 -0.8059094700063585 0.5143888624622276 0.293110942014941 0.8059094700063585 0.497052555982873 0.2917024651576237 0.8172199388242178 -0.306415783897025 -0.2682897565392926 -0.9133071629604461 -0.3523806686222084 -0.2755513168992308 -0.8943709164191694 0.3523806686222084 0.2755513168992308 0.8943709164191694 0.306415783897025 0.2682897565392926 0.9133071629604461 -0.456893286178551 -0.7592058438957603 -0.4635245534375617 -0.4541605104685136 -0.7721228532482589 -0.4444823171091813 -0.4286828954205195 -0.847176126038426 -0.3138846709293164 0.4286828954205195 0.847176126038426 0.3138846709293164 0.4541605104685136 0.7721228532482589 0.4444823171091813 0.456893286178551 0.7592058438957603 0.4635245534375617 -0.4610282434667641 -0.6138335702605229 -0.6408286094949022 -0.4574134951468932 -0.6083801890432725 -0.6485726173969845 0.4574134951468932 0.6083801890432725 0.6485726173969845 0.4610282434667641 0.6138335702605229 0.6408286094949022 -0.5040410792207913 -0.5203001144828611 -0.6893695535248579 -0.4985789755177557 -0.522521104138984 -0.69165793633923 0.4985789755177557 0.522521104138984 0.69165793633923 0.5040410792207913 0.5203001144828611 0.6893695535248579 -0.5497531637915774 -0.4673687586348154 -0.6923423303202705 -0.5536165038480039 -0.4630501931675085 -0.6921656487248167 0.5536165038480039 0.4630501931675085 0.6921656487248167 0.5497531637915774 0.4673687586348154 0.6923423303202705 -0.6307873335127643 -0.4154716222280389 -0.6553553776410614 -0.6328486545725545 -0.4146821088617343 -0.6538664458401979 0.6328486545725545 0.4146821088617343 0.6538664458401979 0.6307873335127643 0.4154716222280389 0.6553553776410614 -0.1256979469617381 -0.5537729312787706 -0.823125486613385 -0.1240913043504173 -0.5526586540230366 -0.8241175646217339 0.1240913043504173 0.5526586540230366 0.8241175646217339 0.1256979469617381 0.5537729312787706 0.823125486613385 -0.1260575905833764 -0.5330255257953374 -0.8366560061978389 0.1260575905833764 0.5330255257953374 0.8366560061978389 -0.5412201697451934 -0.2500231718377586 -0.8028506345548783 0.5412201697451934 0.2500231718377586 0.8028506345548783 -0.4272344532522728 -0.8476012840976981 -0.3147106371735229 0.4272344532522728 0.8476012840976981 0.3147106371735229</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID950\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID948\">\r\n                    <float_array count=\"196\" id=\"ID951\">-7.138963213337921 -9.590815887125158 -5.534782427677182 -6.599055031610398 -6.161466385372765 -9.739583828584451 -7.020912501436172 -9.64477766665155 -6.442251176197418 -6.552312786454574 -5.453974869115332 -6.64082692448904 -5.491014958906135 -6.614316476552948 -6.478772582362814 -6.522289149874103 -5.308720537271718 -5.689141638149316 -11.2782606739596 -5.320825261743578 -7.9717957997741 -3.671216674709287 -10.80202970911157 -5.90961685543797 -7.605823633967948 -4.052573869433889 -7.042161934252819 -3.144381333275127 -6.606115120661046 -3.494493541298796 -6.369100491594986 -2.716571791351699 -5.910816590358083 -3.108575940139804 -5.866347671529796 -2.26628703653867 -5.710456022755999 -1.932931811574967 -5.168852690973136 -1.807773613133746 -4.692973909088815 -2.493915854454659 -3.916435254479966 -1.453588938535106 -3.572826706871928 -1.932684592651026 -3.324449483955088 -1.304083515806536 -3.054065519073461 -1.683218989209923 -6.591891121267537 -6.452906138227753 -6.388217779204394 -5.501977139414676 -5.406867405753555 -5.632958163486499 -6.117810543867646 -3.561478629224226 -5.851698291102253 -2.537936179978868 -4.869366170504851 -2.672663225915323 -5.892517064855022 -2.454203569649013 -5.759915324541431 -1.987415610829698 -4.783295469245281 -2.147838056814312 -5.7562003319981 1.149012728635336 -5.145451942425918 1.261211835115473 -5.685275317190505 1.018545122632574 -7.036424047085478 0.1630502095845917 -7.130976261011481 0.2767553873179948 -5.946862418828762 0.7642798521704014 -7.689126942260445 -0.7059138880145554 -7.834279527146465 -0.6456774898488107 -7.281644872447997 -0.3986048403960985 -7.259177835029453 -2.856584011353963 -7.416547296366069 -2.811190375613943 -7.188071436753713 -2.505819076414183 -7.861456431581737 -3.261559665315641 -8.018917079536788 -3.217136703021234 -7.575012072795065 -2.706222549244504 -8.557885289507643 -3.223633364054006 -8.698178247785402 -3.146031785827807 -8.102290839309255 -2.644916224219954 -9.506351967249945 -3.371429820198309 -8.684971497927776 -2.754199168926557 -9.379701635931678 -3.470919080308647 -12.37770881846667 -4.872005277182687 -9.490624175621949 -2.809199905568493 -12.25623907044876 -4.989462679559276 -6.444857026542284 -5.458380516152987 -6.296049610050064 -4.799287875721132 -5.318589154545419 -4.950828734137319 -5.113185334491933 -3.759627421801614 -5.392057858255205 -4.876556620212218 -6.08813702729078 -3.598391158750079 -6.367006455932359 -4.715312852682593 -5.422269957287876 -5.619952481288294 -6.403242112042205 -5.487229736398297 -5.281056882911339 -4.974112230283341 -5.121764907583199 -3.747570384158296 -6.096300623064521 -3.58478531167352 -4.853940277352765 -2.690709885832792 -5.873559466293838 -2.478965772395742 -4.767264819600784 -2.166119404674233 -4.892686598708286 -2.620119059241625 -7.042920849049135 0.3363783258394972 -5.917332136334101 0.9220098715437491 -5.839645049230055 0.7939477636360648 -5.787526407421514 1.179018042887779 -5.271800528567625 1.412461230707683 -5.177910156173502 1.294964790723312 -7.650128474823353 -0.0521237149128579 -7.147894061445859 0.2311284178204125 -7.052366363064595 0.117928942085436 -7.169448987281526 -2.523237030315316 -7.397103799309265 -2.828987567036165 -7.330237832350131 -2.497391177424061 -7.584247127016653 -2.689362640162711 -8.030026041788469 -3.199266105371076 -7.737670076202681 -2.636262514374005 -8.584674860058595 -3.385887706682498 -8.170034062009835 -2.815279621232072 -8.015596352434937 -2.86584519018703 -9.418099806598537 -3.589866553505813 -8.7639835389675 -2.867638261066807 -8.626894580693087 -2.948706082022819 -12.16085591726943 -5.324233997524462 -9.566235995890917 -3.01950100195389 -9.444421399327453 -3.12265942849865</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID951\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID947\">\r\n                    <input semantic=\"POSITION\" source=\"#ID945\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID946\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID947\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID948\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 1 6 6 7 8 8 9 8 7 7 4 6 10 9 11 10 12 11 12 11 11 10 13 12 11 10 14 13 13 12 13 12 14 13 15 14 14 13 16 15 15 14 15 14 16 15 17 16 16 15 18 17 17 16 18 17 19 18 17 16 19 18 20 19 17 16 17 16 20 19 21 20 20 19 22 21 21 20 21 20 22 21 23 22 22 21 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 21 27 22 29 21 30 20 30 20 29 21 31 19 30 20 31 19 32 16 32 16 31 19 33 18 32 16 33 18 34 17 32 16 34 17 35 15 32 16 35 15 36 14 36 14 35 15 37 13 36 14 37 13 38 12 38 12 37 13 39 10 38 12 39 10 40 11 40 11 39 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 56 39 57 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 79 50 74 51 77 51 80 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 83 56 87 57 88 57 84 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 94 61 91 62 44 63 90 64 44 63 91 62 92 62 49 63 93 64 49 63 92 62 95 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 45 71 51 72 46 73 47 73 52 72 48 71 61 74 54 75 56 76 57 76 59 75 62 74 54 77 96 78 55 79 58 79 97 78 59 77 65 80 61 81 60 82 63 82 62 81 66 80 70 83 69 84 98 85 99 85 72 84 71 83 68 86 75 87 69 88 72 88 76 87 73 86 79 89 75 90 74 91 77 91 76 90 80 89 82 92 79 93 78 94 81 94 80 93 85 92 86 95 82 96 83 97 84 97 85 96 89 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID952\">\r\n            <mesh>\r\n                <source id=\"ID953\">\r\n                    <float_array count=\"240\" id=\"ID957\">-0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID957\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID954\">\r\n                    <float_array count=\"240\" id=\"ID958\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6630305151580132 0.7299655905773456 -0.1659541278256337 -0.6658436797422771 0.7251760043223742 -0.1754193743641215 -0.6729884580762607 0.7375072073159738 0.05629968430755275 0.6729884580762607 -0.7375072073159738 -0.05629968430755275 0.6658436797422771 -0.7251760043223742 0.1754193743641215 0.6630305151580132 -0.7299655905773456 0.1659541278256337 -0.6113107337789397 0.7482110703485606 -0.2578359574894776 -0.6144800241452068 0.7457833801420833 -0.257335286795953 0.6144800241452068 -0.7457833801420833 0.257335286795953 0.6113107337789397 -0.7482110703485606 0.2578359574894776 -0.6112832145498026 -0.4707347038740193 0.6361931076161541 -0.6630446878927789 -0.3784166032630609 0.645889012317143 -0.6144572319660114 -0.469525830568726 0.6340250819276909 0.6144572319660114 0.469525830568726 -0.6340250819276909 0.6630446878927789 0.3784166032630609 -0.645889012317143 0.6112832145498026 0.4707347038740193 -0.6361931076161541 -0.6729915547513984 -0.1696569719422396 0.71992977373122 -0.6658562154288208 -0.3859655043248172 0.6384873764187492 0.6658562154288208 0.3859655043248172 -0.6384873764187492 0.6729915547513984 0.1696569719422396 -0.71992977373122 -0.6289091309737778 -0.01542730369521124 0.7773257382066434 -0.6701267456751917 -0.1735325142790268 0.72167625097323 0.6701267456751917 0.1735325142790268 -0.72167625097323 0.6289091309737778 0.01542730369521124 -0.7773257382066434 -0.6193427745518753 0.3613913988662995 0.6970012800819265 -0.6586051859823896 0.4442906086005776 0.6073261595769036 -0.6252368259778801 0.3578597082949858 0.6935526949123143 0.6252368259778801 -0.3578597082949858 -0.6935526949123143 0.6586051859823896 -0.4442906086005776 -0.6073261595769036 0.6193427745518753 -0.3613913988662995 -0.6970012800819265 -0.6194223535536992 0.5548231614226238 0.5554162470319005 -0.6253034624160696 0.5526101220855131 0.5510150931318574 0.6253034624160696 -0.5526101220855131 -0.5510150931318574 0.6194223535536992 -0.5548231614226238 -0.5554162470319005 -0.67013650131323 0.7403345362785804 0.05312103162442063 -0.628982358135911 0.7454560785608687 0.2206273511839385 0.628982358135911 -0.7454560785608687 -0.2206273511839385 0.67013650131323 -0.7403345362785804 -0.05312103162442063 -0.6220189146899646 -0.01309573882381509 0.7828926946859175 0.6220189146899646 0.01309573882381509 -0.7828926946859175 -0.6632923012885572 0.441848588696277 0.6039976388351515 0.6632923012885572 -0.441848588696277 -0.6039976388351515 -0.6221076599331773 0.7500464868654583 0.2245268959239637 0.6221076599331773 -0.7500464868654583 -0.2245268959239637</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID958\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID956\">\r\n                    <float_array count=\"132\" id=\"ID959\">3.87764031107622 -6.480658898337778 4.092155780313024 -5.873100523294384 4.034559973661107 -7.487651576590498 4.194417247662015 -6.556555994075766 4.385226823545771 -7.511775063321221 4.975203874607814 -9.634970930132152 5.269730206931626 -9.552833993310438 4.414072035031004 -6.042836842313367 4.859378482153733 -5.270196480154701 5.05490498188978 -5.48043594259001 5.822099524111708 -4.877519494199655 5.930260994757609 -5.170298768740171 6.619185689247543 -5.161112975986945 6.623133292318746 -4.900658240318208 7.718649839306408 -5.593427100716775 7.795591679423524 -5.323227745288749 9.929583898964312 -6.871125386769826 10.11824808736943 -6.675185043266 5.925653000357565 -7.46826496498529 5.689472813873823 -7.515378658893742 5.822179128624093 -6.457005021127549 6.511257923774214 -9.533277001644295 6.288098685998339 -9.573629295500691 5.916109472248006 -7.310813277664289 5.366702388850225 -9.961973302364093 3.526461403957602 -8.209666149461569 5.546090981562797 -9.850025254076742 5.158417602448649 -7.80262028114791 4.100724298898611 -7.222142695431995 5.329292279186206 -7.665955408862323 6.437987728279937 -5.968028370914714 5.637638242695263 -5.933192605821058 6.489769452481003 -5.779453223070861 7.217578390551652 -3.945559541713974 6.386063448597975 -4.493172816030821 7.098762251858164 -3.787052743699775 6.517499784057383 -4.37952604699279 5.946010344400233 -5.104542875128599 5.729712477188441 -5.034440475430622 5.82171707979354 -6.36355039909147 5.576548159483153 -6.35877397416587 5.967022270105487 -5.74343876346228 6.355060939941811 -9.495860674564316 5.691826745769582 -7.287545814181028 5.927577537499342 -7.239119522850759 5.822211657743393 -6.448847275944787 5.691612126075604 -7.507383079612655 5.577040359522241 -6.444146991745441 4.251113033307034 -7.871692637448878 6.168526379568627 -9.569136817559707 4.064972331357362 -7.995403824306254 5.397026101555857 -7.63010449077775 4.164842777836451 -7.1925382682496 4.281639333974275 -7.022897481686874 6.578380074322135 -5.620264617403369 5.729387676422575 -5.784399080729091 5.701364756438144 -5.601711277529612 6.30564364571233 -4.770181180200111 6.13862237800544 -4.632304826311748 7.051363306255356 -4.085489202208199 5.955497993585017 -5.656571920937295 5.573646081394728 -6.275246632246977 5.734267381965052 -5.596749296751172 6.323365246363862 -4.479665053217046 6.511544613865906 -4.599494280401795 5.704254899531289 -5.239542710890913</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID959\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID955\">\r\n                    <input semantic=\"POSITION\" source=\"#ID953\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID954\"/>\r\n                </vertices>\r\n                <triangles count=\"64\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID955\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID956\"/>\r\n                    <p>0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 6 6 5 5 4 4 3 3 1 1 7 7 1 1 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 11 11 10 10 12 12 10 10 13 13 12 12 12 12 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 17 17 16 16 15 15 18 15 19 16 20 17 19 16 18 15 21 14 21 14 18 15 22 13 21 14 22 13 23 12 23 12 22 13 24 10 23 12 24 10 25 11 25 11 24 10 26 9 26 9 24 10 27 8 26 9 27 8 28 7 28 7 27 8 29 1 28 7 29 1 30 3 31 4 32 5 33 6 32 5 31 4 34 2 34 2 31 4 30 3 34 2 30 3 29 1 34 2 29 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 36 23 41 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 47 27 52 28 53 29 54 29 55 28 50 27 52 30 56 31 57 32 58 32 59 31 55 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 38 39 70 40 71 41 72 41 73 40 39 39 43 42 37 43 36 44 41 44 40 43 44 42 38 45 37 46 70 47 73 47 40 46 39 45 53 48 48 49 47 50 50 50 49 49 54 48 53 51 52 52 57 53 58 53 55 52 54 51 57 54 56 55 74 56 75 56 59 55 58 54 61 57 76 58 62 59 63 59 77 58 64 57 71 60 70 61 78 62 79 62 73 61 72 60 76 63 61 64 67 65 68 65 64 64 77 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID960\">\r\n            <mesh>\r\n                <source id=\"ID961\">\r\n                    <float_array count=\"300\" id=\"ID965\">-0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID965\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID962\">\r\n                    <float_array count=\"300\" id=\"ID966\">-0.108837402926013 0.5869636604169701 -0.8022643461317676 -0.1152524072062661 0.5994041612018266 -0.792105759458354 -0.1164164008736633 0.5995543045607452 -0.7918218596946564 0.1164164008736633 -0.5995543045607452 0.7918218596946564 0.1152524072062661 -0.5994041612018266 0.792105759458354 0.108837402926013 -0.5869636604169701 0.8022643461317676 -0.1108295971226472 0.5889064001271712 -0.8005660824010021 0.1108295971226472 -0.5889064001271712 0.8005660824010021 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.117010717209138 0.5772025840593379 -0.8081742813362881 0.117010717209138 -0.5772025840593379 0.8081742813362881 -0.5145432086037881 0.301138149130455 -0.8028456275137845 -0.4972069966061667 0.2998409485598932 -0.8141748019268212 -0.55805116068878 0.2794674820048999 -0.7813301661626451 0.55805116068878 -0.2794674820048999 0.7813301661626451 0.4972069966061667 -0.2998409485598932 0.8141748019268212 0.5145432086037881 -0.301138149130455 0.8028456275137845 -0.5451735392333464 0.2585521366823797 -0.7974563340627268 -0.5583170886261052 0.2763353231468237 -0.7822536786295161 0.5583170886261052 -0.2763353231468237 0.7822536786295161 0.5451735392333464 -0.2585521366823797 0.7974563340627268 -0.1366137379887484 0.525105648062938 -0.8400004434315159 -0.1321751191906274 0.5316379949383054 -0.8365947526759427 -0.1318899009461685 0.5189517552672971 -0.8445674216623568 0.1318899009461685 -0.5189517552672971 0.8445674216623568 0.1321751191906274 -0.5316379949383054 0.8365947526759427 0.1366137379887484 -0.525105648062938 0.8400004434315159 -0.1269133562014147 0.541783060402261 -0.8308815291477196 -0.1289772731066859 0.5276362262001799 -0.8396218647839013 0.1289772731066859 -0.5276362262001799 0.8396218647839013 0.1269133562014147 -0.541783060402261 0.8308815291477196 -0.1241088849423676 0.5608577831136058 -0.8185569814003505 -0.1260730475475516 0.541364594212308 -0.8312821198699127 -0.1257237932527103 0.5619705390732921 -0.8175467210036521 0.1260730475475516 -0.541364594212308 0.8312821198699127 0.1257237932527103 -0.5619705390732921 0.8175467210036521 0.1241088849423676 -0.5608577831136058 0.8185569814003505 -0.1211792230471033 0.5801840317827792 -0.8054204399976321 0.1211792230471033 -0.5801840317827792 0.8054204399976321 -0.5535170558317795 0.4699781182489695 -0.6875604971713225 -0.630745177755128 0.4220252385451681 -0.6511952232391957 -0.6328077900805511 0.4212204572764466 -0.6497134962313701 0.6328077900805511 -0.4212204572764466 0.6497134962313701 0.630745177755128 -0.4220252385451681 0.6511952232391957 0.5535170558317795 -0.4699781182489695 0.6875604971713225 -0.5040577082147066 0.5271615428562393 -0.6841246483812488 -0.5496579690091841 0.4742995180535889 -0.6876889444209731 0.5496579690091841 -0.4742995180535889 0.6876889444209731 0.5040577082147066 -0.5271615428562393 0.6841246483812488 -0.4986083373847545 0.5294053531974816 -0.6863815978712283 -0.4611603796146424 0.6201725230534618 -0.6345999889089049 0.4611603796146424 -0.6201725230534618 0.6345999889089049 0.4986083373847545 -0.5294053531974816 0.6863815978712283 -0.4575413346766589 0.6147893824288844 -0.6424094818065907 -0.4569158452101462 0.7637801850174524 -0.4559251466749819 0.4569158452101462 -0.7637801850174524 0.4559251466749819 0.4575413346766589 -0.6147893824288844 0.6424094818065907 -0.4541857773435357 0.7765036889450471 -0.4367577139714671 -0.4287765424434085 0.8502341030875822 -0.3053729631076245 0.4287765424434085 -0.8502341030875822 0.3053729631076245 0.4541857773435357 -0.7765036889450471 0.4367577139714671 -0.3524563901464338 0.2844550069979994 -0.8915491248600456 -0.3064595936731795 0.2773796356690582 -0.9105729268772327 0.3064595936731795 -0.2773796356690582 0.9105729268772327 0.3524563901464338 -0.2844550069979994 0.8915491248600456 -0.5412696949613353 0.2580312515619297 -0.8002793203212533 0.5412696949613353 -0.2580312515619297 0.8002793203212533 -0.427351177790763 0.8506607779687953 -0.3061816644842928 0.427351177790763 -0.8506607779687953 0.3061816644842928</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID966\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID964\">\r\n                    <float_array count=\"196\" id=\"ID967\">5.499103420584213 -6.600182416334707 7.091288569950677 -9.595896339223589 6.113201900217518 -9.742250853991777 6.408896219694804 -6.554535211264102 6.975901634042057 -9.648330521578423 5.420290547408211 -6.640748761512123 2.984224971584125 -1.734949918247632 3.259391378364231 -1.357956861170158 3.499790042667428 -1.988486954492802 3.849480692439346 -1.51211513898687 4.612728757974727 -2.558494340414665 5.097247661780172 -1.876136291272333 5.637283441458915 -2.005547866194009 5.788941760897649 -2.3401120123712 5.822719035721721 -3.182704696932027 6.285949643299203 -2.794328788599893 6.513094513763935 -3.57407440575762 6.953548495402975 -3.227415287865078 7.505618194240906 -4.139992194044065 7.876456342147549 -3.761524831997849 10.67805680033176 -6.022078132143546 11.16176846173632 -5.437065414091726 6.443502443529829 -6.524454426903926 5.455377910186199 -6.614016405360451 5.276829500861391 -5.688413843343613 7.093346623752447 0.1936633434774049 6.996622144483922 0.08107890823026182 5.918364098679632 0.6946835222532575 5.12457596617492 1.196888661312207 5.733164416645455 1.077643543196735 5.659837046645889 0.9479949494725006 5.735808099411976 -1.992899477220481 5.865618505324296 -2.460175025701383 4.758236997495068 -2.149699721033194 5.826602908377137 -2.54228182317705 6.087171796191482 -3.566690023565987 4.843545496099361 -2.673703235409213 5.35585679491965 -4.878577887491488 5.082764984602673 -3.760757070883378 6.331641412255999 -4.720481401818463 6.058548585046148 -3.602661679311559 6.264065004454752 -4.803501560120678 6.40989096811075 -5.463018791418008 5.285915461951562 -4.952279500389528 6.354500477194964 -5.5058065265386 6.554020323273361 -6.45725466293534 5.3725854730318 -5.6341428049648 9.41056898809822 -2.898791439095068 12.26851450157659 -4.986537430148319 12.14541253552307 -5.10293046955647 8.613182971989794 -2.826927959732564 9.42651991423803 -3.450700016896117 9.298610626780286 -3.549173966198144 8.629014812798161 -3.209905916204647 8.487838424714864 -3.286514222629172 8.038933125624038 -2.704561851470576 7.96324250441662 -3.265004189452493 7.805375665433106 -3.308562304365771 7.523789324761757 -2.751687845226335 7.377457688057052 -2.855312596780183 7.219812768339646 -2.90011231837174 7.150832450639896 -2.549082256247872 7.235310741891112 -0.4904196007434802 7.782229223622522 -0.7453506809080558 7.635697253095525 -0.8035006671235652 7.109563867316364 0.1488038753349426 7.606548193301278 -0.1401008424521096 7.011895007764506 0.03672512252392931 5.890502313623793 0.8526266988596412 7.005536879862811 0.2545755458081305 5.810559197299331 0.7254211548792295 5.254634222010645 1.345955951793201 5.765798087273703 1.106421549715725 5.158474751740419 1.229593571299443 5.847127653942131 -2.483938036577421 4.865427715803005 -2.621495704933041 4.742685627602766 -2.167049408315839 4.828626099140562 -2.691145961250775 6.066241502050971 -3.589285790193484 5.090846327701405 -3.748857617575201 6.368925063442006 -5.491049143458817 5.387368148386617 -5.621069559526315 5.249019993973442 -4.974806095254356 9.485908542837471 -3.105411685193395 12.04798571922787 -5.432569415147625 9.362675427690499 -3.207509091704578 8.693206550649377 -2.936984635025157 9.338158193561835 -3.664297378796833 8.55510598041441 -3.016987279469245 8.108248304215895 -2.870429459557781 8.516550120266997 -3.44382944239968 7.953234205976306 -2.919923603102037 7.973800953496667 -3.248171677254486 7.532549763138777 -2.735810750521659 7.686443725701371 -2.683559650169936 7.358713154635643 -2.872239896407073 7.132876063535401 -2.565649444134168 7.293828092787273 -2.540400614243558</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID967\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID963\">\r\n                    <input semantic=\"POSITION\" source=\"#ID961\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID962\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID963\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID964\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 9 7 10 8 9 7 11 9 10 8 10 8 11 9 12 10 11 9 13 11 12 10 13 11 14 12 12 10 14 12 15 13 12 10 12 10 15 13 16 14 15 13 17 15 16 14 16 14 17 15 18 16 17 15 19 17 18 16 18 16 19 17 20 18 19 17 21 19 20 18 20 18 21 19 22 20 23 21 22 20 21 19 24 19 25 20 26 21 25 20 24 19 27 18 27 18 24 19 28 17 27 18 28 17 29 16 29 16 28 17 30 15 29 16 30 15 31 14 31 14 30 15 32 13 31 14 32 13 33 10 33 10 32 13 34 12 33 10 34 12 35 11 33 10 35 11 36 9 33 10 36 9 37 8 37 8 36 9 38 7 37 8 38 7 39 6 6 22 0 23 40 24 41 24 5 23 7 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 44 30 45 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 63 38 64 39 58 40 64 39 63 38 65 38 66 39 61 40 66 39 65 38 67 37 64 41 68 42 62 43 67 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 77 51 70 52 75 52 78 51 79 50 80 53 76 54 81 55 82 55 79 54 83 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 43 62 92 63 93 64 94 64 95 63 46 62 42 65 92 66 43 67 46 67 95 66 47 65 49 68 42 69 44 70 45 70 47 69 50 68 96 71 49 72 48 73 51 73 50 72 97 71 53 74 59 75 54 76 55 76 60 75 56 74 59 77 58 78 63 79 65 79 61 78 60 77 68 80 40 81 62 82 67 82 41 81 69 80 77 83 71 84 70 85 75 85 74 84 78 83 80 86 77 87 76 88 79 88 78 87 83 86 84 89 80 90 81 91 82 91 83 90 87 89 84 92 85 93 88 94 91 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID968\">\r\n            <mesh>\r\n                <source id=\"ID969\">\r\n                    <float_array count=\"300\" id=\"ID973\">-0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID973\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID970\">\r\n                    <float_array count=\"300\" id=\"ID974\">-0.1164308334372561 -0.9361829241127744 0.3316706101311379 -0.115264363165527 -0.9364085327492276 0.3314410752735454 -0.1088358859381834 -0.9423316096583713 0.3164899482933284 0.1088358859381834 0.9423316096583713 -0.3164899482933284 0.115264363165527 0.9364085327492276 -0.3314410752735454 0.1164308334372561 0.9361829241127744 -0.3316706101311379 -0.1108265020245895 -0.9413013605670106 0.3188561353395736 0.1108265020245895 0.9413013605670106 -0.3188561353395736 -0.1170061438965575 -0.9450112108173462 0.3053905265721109 0.1170061438965575 0.9450112108173462 -0.3053905265721109 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211767870245431 -0.9432883615922447 0.3090683632645491 0.1211767870245431 0.9432883615922447 -0.3090683632645491 -0.1269172199874076 -0.9559205324775958 0.2647790680141043 -0.1321753098522585 -0.9582917932523017 0.2533900677823568 -0.1289832713335865 -0.9599617263082118 0.2486700620087674 0.1289832713335865 0.9599617263082118 -0.2486700620087674 0.1321753098522585 0.9582917932523017 -0.2533900677823568 0.1269172199874076 0.9559205324775958 -0.2647790680141043 -0.1366015841177712 -0.9595604633487854 0.2461376127177232 -0.1318905450426279 -0.9620432799504404 0.238909212109029 0.1318905450426279 0.9620432799504404 -0.238909212109029 0.1366015841177712 0.9595604633487854 -0.2461376127177232 -0.5579936818601086 -0.8293100066025989 0.02979872401626703 -0.5582559972072337 -0.8292442885329374 0.02653585343755587 -0.5450709898174925 -0.8383750888433897 0.004982616402794485 0.5450709898174925 0.8383750888433897 -0.004982616402794485 0.5582559972072337 0.8292442885329374 -0.02653585343755587 0.5579936818601086 0.8293100066025989 -0.02979872401626703 -0.4971056987735406 -0.8668022854730181 0.03923929338842273 -0.5144490778171239 -0.8563961092508181 0.04390729316607478 0.5144490778171239 0.8563961092508181 -0.04390729316607478 0.4971056987735406 0.8668022854730181 -0.03923929338842273 -0.3062977673774491 -0.9518676260712704 -0.01138859679831438 -0.352304512060553 -0.9358847587336349 0.001117654625490362 0.352304512060553 0.9358847587336349 -0.001117654625490362 0.3062977673774491 0.9518676260712704 0.01138859679831438 -0.4569466615946189 -0.6657511171996592 0.5898942264549963 -0.4542014913136462 -0.6513390540662555 0.6078309320333537 -0.4286372452159311 -0.5485409186912338 0.7178948199667378 0.4286372452159311 0.5485409186912338 -0.7178948199667378 0.4542014913136462 0.6513390540662555 -0.6078309320333537 0.4569466615946189 0.6657511171996592 -0.5898942264549963 -0.4610431429742561 -0.7926530874053718 0.3989239317754095 -0.4574340725793243 -0.7984546202919721 0.3914387417947999 0.4574340725793243 0.7984546202919721 -0.3914387417947999 0.4610431429742561 0.7926530874053718 -0.3989239317754095 -0.504011286993974 -0.8116541095840285 0.2952799163133784 -0.4985522816593612 -0.8144906939653281 0.2967330987539529 0.4985522816593612 0.8144906939653281 -0.2967330987539529 0.504011286993974 0.8116541095840285 -0.2952799163133784 -0.5535803758470984 -0.7975432953446792 0.2397362290679806 -0.5497181193307189 -0.7989775362978114 0.2438132190242709 0.5497181193307189 0.7989775362978114 -0.2438132190242709 0.5535803758470984 0.7975432953446792 -0.2397362290679806 -0.6327733709944583 -0.7467813291086449 0.2047327708380742 -0.6307130915381779 -0.7484351601869926 0.2050507428863028 0.6307130915381779 0.7484351601869926 -0.2050507428863028 0.6327733709944583 0.7467813291086449 -0.2047327708380742 -0.12572764539914 -0.9493235337335358 0.288057958546645 -0.1241102328803618 -0.949950385418969 0.2866895800979427 0.1241102328803618 0.949950385418969 -0.2866895800979427 0.12572764539914 0.9493235337335358 -0.288057958546645 -0.1260763385258006 -0.9561757449318785 0.2642587778445488 0.1260763385258006 0.9561757449318785 -0.2642587778445488 -0.5411572163250612 -0.8409136120021787 0.0036282735233317 0.5411572163250612 0.8409136120021787 -0.0036282735233317 -0.4271593597663426 -0.5494736951569242 0.7180623508405128 0.4271593597663426 0.5494736951569242 -0.7180623508405128</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID974\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID972\">\r\n                    <float_array count=\"196\" id=\"ID975\">-3.619923147946738 -10.4997124189645 -4.615531269323347 -10.50426780891869 -3.786473319759188 -7.323412140034409 -4.653673804142658 -10.49401698912256 -4.805676486616894 -7.37051953241552 -3.81352480912883 -7.314962732852594 -3.820425668882074 -7.305856672633955 -4.812624718306279 -7.36088743703495 -3.861453874929484 -6.370197921834446 0.6813313594591697 -4.417481111052449 1.034025889616375 -5.076538702772943 0.6745777442559287 -4.861532670451762 0.6181083223495576 -3.371747130340732 0.6099842723727789 -2.882667464664047 1.150057598209742 -2.790499405865308 1.301124565657046 -3.253791213680578 1.433822075213695 -5.58669282178515 1.654720203610757 -4.260796592547062 1.756362347080652 -6.218346919426859 2.044608896717736 -5.356969436367257 2.124028407813262 -7.071998294227972 2.309722319644435 -5.993056934305602 2.694805104503927 -6.908588653047397 3.159237001412372 -10.04246510191542 4.01444950041533 -9.85695107623112 -4.770302607309429 -7.378913320643741 -4.818761116653899 -6.415319624856644 -3.824119757917572 -6.385272312822708 -4.879652942044097 -4.594604717966694 -4.927413575326117 -3.550563414087187 -3.932374746135774 -3.499523185868613 -4.915571062373914 -3.5436583785342 -4.936862069573945 -3.065660927447276 -3.940378453159533 -3.027190444375211 -3.913500117488176 -3.40050299024049 -4.09282702520373 -3.385230939043493 -3.918064205042312 -2.911394748494002 -4.071526949273308 -4.517354419797227 -4.244247793447956 -4.516291113672466 -4.103959653848396 -3.470749325366316 -4.696140705790722 -4.841330176768042 -4.852048441064388 -4.881619431869657 -4.694071954369298 -4.397249817793164 -3.388429709736816 -5.80223159735321 -3.54728384340591 -5.844317579836226 -3.612092296619232 -5.493643733810828 -3.644650972120329 -6.376784300125662 -3.80351443586253 -6.41800547167999 -3.853333020430924 -5.800397365438651 -3.443345100842655 -6.955360092461058 -3.613167292398807 -6.974182995811063 -3.613854860136208 -6.28799614187596 -3.020090597742209 -7.800548950638829 -3.198837732959714 -7.807696212394419 -3.229723261065653 -6.914445467807718 -1.887081515124395 -10.7541844740011 -2.07909737595266 -10.76451173411055 -2.556309598949435 -7.719435323674952 -4.800992548081733 -6.42136775030822 -4.835935624615236 -5.752527526608549 -3.839915993991579 -5.735080854880583 -3.893651563408266 -4.575157380439522 -3.842653010323232 -5.712728447491024 -4.889675796800544 -4.592379227370737 -4.838679085328147 -5.729945936031485 -3.825258441823209 -6.381453665091004 -4.819904359823177 -6.41140743340478 -3.857120588539961 -5.72660297898442 -3.894002460961315 -4.571016362072552 -4.890027573496783 -4.588206715689682 -3.941118556409633 -3.493999293346616 -3.936315166081157 -3.477142797519195 -4.93138635985045 -3.527791052174538 -3.954943057750661 -3.012787565415254 -3.926614997645129 -3.491897394819695 -4.063770219756945 -4.537696388468241 -4.105939758987547 -3.476609754896952 -4.175804411867014 -3.36587945210828 -4.177193689864259 -2.897812676959156 -4.000934001956216 -2.89206782663573 -4.071675761691439 -4.531139361422384 -4.22716918693565 -5.016005951249156 -4.244396603139681 -4.53007578126498 -3.590817288257763 -5.821021844290655 -3.798853510505536 -5.527848467073778 -3.652170740556171 -5.469963595447143 -3.781669341089509 -6.425648218290957 -3.995755863268846 -5.841267620548126 -3.833509888572388 -5.808143101871867 -3.866956363979578 -6.914973573831331 -4.010205632191378 -6.267452237426695 -3.850258232861662 -6.228912249916991 -3.464546362080003 -7.768615286749084 -3.647638875630202 -6.893593195818973 -3.477759105263607 -6.875094619680589 -2.636818840382449 -10.75008068999862 -3.212070745508375 -7.704897883551319 -3.033317435407952 -7.697846838450428</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID975\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID971\">\r\n                    <input semantic=\"POSITION\" source=\"#ID969\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID970\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID971\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID972\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 2 6 6 7 8 8 9 8 7 7 3 6 10 9 11 10 12 11 13 12 14 13 10 9 10 9 14 13 11 10 14 13 15 14 11 10 15 14 16 15 11 10 11 10 16 15 17 16 16 15 18 17 17 16 17 16 18 17 19 18 18 17 20 19 19 18 19 18 20 19 21 20 20 19 22 21 21 20 22 21 23 22 21 20 21 20 23 22 24 23 25 24 24 23 23 22 26 22 27 23 28 24 27 23 26 22 29 20 29 20 26 22 30 21 29 20 30 21 31 19 29 20 31 19 32 18 32 18 31 19 33 17 32 18 33 17 34 16 34 16 33 17 35 15 34 16 35 15 36 10 36 10 35 15 37 14 36 10 37 14 38 13 36 10 38 13 39 9 39 9 38 13 40 12 41 11 36 10 39 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 54 39 59 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 79 50 74 51 77 51 80 50 81 49 82 52 83 53 78 54 81 54 84 53 85 52 86 55 87 56 82 57 85 57 88 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 94 61 91 62 44 63 90 64 44 63 91 62 92 62 49 63 93 64 49 63 92 62 95 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 54 74 61 75 55 76 58 76 62 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 60 80 65 81 61 82 62 82 66 81 63 80 69 83 98 84 70 85 71 85 99 84 72 83 75 86 69 87 68 88 73 88 72 87 76 86 79 89 75 90 74 91 77 91 76 90 80 89 83 92 79 93 78 94 81 94 80 93 84 92 87 95 83 96 82 97 85 97 84 96 88 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID976\">\r\n            <mesh>\r\n                <source id=\"ID977\">\r\n                    <float_array count=\"180\" id=\"ID981\">-0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803332 0.3212716622742917 -1.271187211522604</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID981\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID978\">\r\n                    <float_array count=\"180\" id=\"ID982\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID982\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID980\">\r\n                    <float_array count=\"120\" id=\"ID983\">-6.425433245485834 -20.00001212795564 -4.32388128207585 -14.06887039043778 -5.629060832817041 -20.16055024897072 -3.610391638133557 -14.29897361281646 -3.600610863927081 -12.38904113597162 -2.982122386725945 -11.16788361953795 -2.877321672698945 -12.67215376661415 -2.258842582037208 -11.4510186977769 -2.156041200933601 -10.13969745661595 -1.547887303772093 -10.63899816275007 -1.472992104737583 -9.736992302315027 -1.393422409009268 -8.766741022896534 -1.215528711540519 -6.648138052462246 -0.1147598324848787 -10.49443800458955 -1.198492142265195 -5.712091593480277 -0.08553014833978972 -5.880332193704978 1.02924344771786 -5.77682455434737 1.034377884849387 -6.712951942821705 1.185360373440858 -8.832837379884129 1.252530450429137 -9.803638625415397 1.315964684678752 -10.70622398827427 1.930445109493735 -10.2117235234207 2.016557223285633 -11.52379262397881 2.619482817920047 -12.7497492002406 2.743403913001568 -11.2463545094255 3.331770984800639 -14.38222820365034 3.34628257493822 -12.47232526311665 4.048226775239526 -14.15776759814488 5.275854736254216 -20.25943781854545 6.074311336163872 -20.10514721805505 2.024113387619763 -7.07888379907244 2.637927368127108 -10.12971890927273 3.037155668081936 -10.05257360902752 1.66588549240032 -7.191114101825169 1.67314128746911 -6.236162631558325 1.371701956500784 -5.623177254712751 1.309741408960023 -6.374874600120302 0.9652225547468674 -5.105861761710349 1.008278611642817 -5.761896311989403 0.657982342339376 -5.353111994137136 0.6262652252145684 -4.901819312707699 -0.05737991624243935 -5.247219002294777 0.592680186720429 -4.416418689942065 0.5171889424246934 -3.356475971410852 0.5146217238589301 -2.888412277173685 -0.04276507416989486 -2.940166096852489 -0.5992460711325975 -2.856045796740138 -0.6077643557702595 -3.324069026231123 -0.7739436518860465 -5.319499081375033 -0.7364960523687913 -4.868496151157514 -0.6967112045046342 -4.383370511448267 -1.0780206004668 -5.069848728307975 -1.129421291018604 -5.725509348888448 -1.491061193362973 -5.583941809768977 -1.438660836349472 -6.336076883307075 -1.805195819066778 -7.149486806408228 -1.80030543196354 -6.194520567985809 -2.161940641037925 -7.034435195218892 -2.814530416408521 -10.08027512448536 -3.212716622742917 -10.00000606397782</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID983\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID979\">\r\n                    <input semantic=\"POSITION\" source=\"#ID977\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID978\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID979\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID980\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 3 3 5 5 6 6 6 6 5 5 7 7 5 5 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 11 11 12 12 10 10 10 10 12 12 9 9 9 9 12 12 13 13 12 12 14 14 13 13 14 14 15 15 13 13 15 15 16 16 13 13 16 16 17 17 13 13 17 17 18 18 13 13 18 18 19 19 13 13 13 13 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 22 22 21 21 23 23 21 21 24 24 23 23 23 23 24 24 25 25 24 24 26 26 25 25 26 26 27 27 25 25 25 25 27 27 28 28 29 29 28 28 27 27</p>\r\n                </triangles>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID979\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID980\"/>\r\n                    <p>30 30 31 31 32 32 31 31 30 30 33 33 33 33 30 30 34 34 33 33 34 34 35 35 33 33 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 39 39 37 37 40 40 39 39 40 40 41 41 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 41 41 44 44 45 45 41 41 45 45 46 46 41 41 46 46 47 47 41 41 47 47 48 48 48 48 47 47 49 49 49 49 47 47 50 50 48 48 49 49 51 51 48 48 51 51 52 52 52 52 51 51 53 53 52 52 53 53 54 54 54 54 53 53 55 55 55 55 53 53 56 56 55 55 56 56 57 57 55 55 57 57 58 58 58 58 57 57 59 59</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID984\">\r\n            <mesh>\r\n                <source id=\"ID985\">\r\n                    <float_array count=\"240\" id=\"ID989\">-0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID989\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID986\">\r\n                    <float_array count=\"240\" id=\"ID990\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6658892428368299 -0.6885143064564592 -0.2872969997737087 -0.6729311871649365 -0.562029832840137 -0.4809221187868957 -0.6630779028754261 -0.686790694066647 -0.2977351797517055 0.6630779028754261 0.686790694066647 0.2977351797517055 0.6729311871649365 0.562029832840137 0.4809221187868957 0.6658892428368299 0.6885143064564592 0.2872969997737087 -0.6145076962834851 -0.7533304730451725 -0.23425091160954 -0.6113217468963009 -0.7555949016953774 -0.2352914497035711 0.6113217468963009 0.7555949016953774 0.2352914497035711 0.6145076962834851 0.7533304730451725 0.23425091160954 -0.6630217725658703 0.6867913760071885 -0.2978585821254177 -0.614536014802447 0.753238837863779 -0.234471191501963 -0.6113552837420216 0.7554994400131816 -0.2355107496070638 0.6113552837420216 -0.7554994400131816 0.2355107496070638 0.614536014802447 -0.753238837863779 0.234471191501963 0.6630217725658703 -0.6867913760071885 0.2978585821254177 -0.6729662109479289 0.5620113969532229 -0.480894654386046 -0.6658367060927759 0.6885118877851151 -0.2874245313088283 0.6658367060927759 -0.6885118877851151 0.2874245313088283 0.6729662109479289 -0.5620113969532229 0.480894654386046 -0.6289247236154029 0.4714099301382881 -0.6182445873538268 -0.6701069292073644 0.5661758691150767 -0.4800016548513805 0.6701069292073644 -0.5661758691150767 0.4800016548513805 0.6289247236154029 -0.4714099301382881 0.6182445873538268 -0.6193819127185333 0.1198559305827131 -0.7758869776593 -0.6586069297905275 -2.229606074873209e-006 -0.7524871507387512 -0.6252698128776827 0.1206693193046023 -0.7710230713036228 0.6252698128776827 -0.1206693193046023 0.7710230713036228 0.6586069297905275 2.229606074873209e-006 0.7524871507387512 0.6193819127185333 -0.1198559305827131 0.7758869776593 -0.6193686517759511 -0.1198585530154133 -0.7758971584342167 -0.6252581822364834 -0.120672201244489 -0.7710320521178985 0.6252581822364834 0.120672201244489 0.7710320521178985 0.6193686517759511 0.1198585530154133 0.7758971584342167 -0.67006535899179 -0.5661918537004904 -0.4800408310575318 -0.6288757300373609 -0.4714242768409007 -0.6182834846371121 0.6288757300373609 0.4714242768409007 0.6182834846371121 0.67006535899179 0.5661918537004904 0.4800408310575318 -0.6220449068117597 0.4728131159400871 -0.6241056731873016 0.6220449068117597 -0.4728131159400871 0.6241056731873016 -0.6632952763355497 -2.144258925662945e-006 -0.7483577863471115 0.6632952763355497 2.144258925662945e-006 0.7483577863471115 -0.6219938106167091 -0.472827546613443 -0.6241456646633203 0.6219938106167091 0.472827546613443 0.6241456646633203</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID990\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID988\">\r\n                    <float_array count=\"132\" id=\"ID991\">-3.156233308757805 10.08710982687471 -2.856924722266216 10.15761536438385 -2.299594243474685 7.925327132511855 -2.034706097497008 8.107661869668936 -1.670494283317261 7.039697384405096 -1.471814094024708 7.248080785050666 -1.04136616354108 6.648978065150011 -0.9088939309335409 6.935506865534769 0.03037484196966032 6.779216066056368 0.03037484196967586 6.518738882791184 0.9696623879520416 6.935506865534766 1.102106460940886 6.648978065149996 1.53253561834532 7.248080785050663 1.731248660526263 7.039697384405099 2.095474554515417 8.10766186966894 2.360348620683812 7.925327132511852 2.916716979171949 10.15761536438385 3.216081884900745 10.0871098268747 -1.168223810341762 8.705845242068937 -1.852121515551163 7.788450679867976 -1.40781128757764 8.740863958144171 -1.127976746028978 10.74215769727934 -1.891963265655392 8.548125708057006 -1.353723762346343 10.77235392063934 1.92977610017306 8.539773730394375 1.165152667342891 10.73392563091469 1.390907857481091 10.76412350460084 1.895306010249322 7.775979783153745 1.211452728307992 8.693382385382428 1.451024695764368 8.728401408360952 1.117617843992585 7.784976980384649 1.633385363252757 7.302298032340775 0.9074623347642705 7.685547256742304 -0.197239063084682 6.918126269644701 0.8549824061199894 6.711683130854517 -0.2901796556002942 6.749254765222319 -0.7953736304985473 6.718676308614904 0.2568369789646587 6.925123544849952 0.3497466618996286 6.756248688697456 -1.06798004515442 7.800983242129445 -0.8578410112294874 7.701550924618476 -1.583745696748875 7.318291702219283 -1.310273488089885 8.50145099047988 -1.55024617473669 8.534797514554935 -0.7399734769562733 10.71852904030233 -1.095319278789253 8.705805411636872 -1.566410502550131 7.70517274122652 -1.78574637488333 7.791442475072095 1.591962985362013 8.527737177369552 1.352006114122691 8.494388859175095 0.7810767299616233 10.71158619287857 1.829089859934408 7.779452862022374 1.609739214986294 7.693184525529069 1.138657808235052 8.693800988211841 1.799210093489108 7.202159495554009 1.642118984845298 7.065808738801556 1.08537548281971 7.599211858902786 -0.303908425543867 6.890972967685572 0.8413662356912078 6.855588981904453 0.8075133592585561 6.667004022123 -1.751077057674244 7.220075955278533 -1.037267018645942 7.617144552937642 -1.594006231623408 7.083719623542236 -0.7478615787589549 6.673632464807028 -0.7817156750263035 6.862217289076101 0.3635172617960516 6.897601249431154</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID991\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID987\">\r\n                    <input semantic=\"POSITION\" source=\"#ID985\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID986\"/>\r\n                </vertices>\r\n                <triangles count=\"64\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID987\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID988\"/>\r\n                    <p>0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 3 3 5 5 4 4 4 4 5 5 6 6 5 5 7 7 6 6 7 7 8 8 6 6 6 6 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 17 17 15 15 16 16 18 16 19 15 20 17 19 15 18 16 21 14 19 15 21 14 22 13 22 13 21 14 23 12 22 13 23 12 24 11 24 11 23 12 25 10 24 11 25 10 26 9 26 9 25 10 27 8 26 9 27 8 28 6 28 6 27 8 29 7 28 6 29 7 30 5 28 6 30 5 31 4 31 4 30 5 32 3 31 4 32 3 33 2 33 2 32 3 34 1 33 2 34 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 38 22 43 23 44 23 39 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 46 29 51 29 54 28 55 27 52 30 56 31 57 32 58 32 59 31 55 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 37 39 70 40 71 41 72 41 73 40 40 39 36 42 38 43 42 44 45 44 39 43 41 42 36 45 70 46 37 47 40 47 73 46 41 45 46 48 53 49 47 50 50 50 54 49 51 48 52 51 57 52 53 53 54 53 58 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 62 57 61 58 76 59 77 59 64 58 63 57 71 60 70 61 78 62 79 62 73 61 72 60 76 63 61 64 67 65 68 65 64 64 77 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID992\">\r\n            <mesh>\r\n                <source id=\"ID993\">\r\n                    <float_array count=\"300\" id=\"ID997\">-0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID997\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID994\">\r\n                    <float_array count=\"300\" id=\"ID998\">-0.1088414049293589 -0.947410974285598 0.3009418455054356 -0.1152736558224273 -0.9514554511327701 0.2853848432959771 -0.1164409580977757 -0.9514088463688938 0.2850661507936061 0.1164409580977757 0.9514088463688938 -0.2850661507936061 0.1152736558224273 0.9514554511327701 -0.2853848432959771 0.1088414049293589 0.947410974285598 -0.3009418455054356 -0.1108291057697727 -0.947976074128154 0.2984263262429192 0.1108291057697727 0.947976074128154 -0.2984263262429192 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170025511882888 -0.9430258041624864 0.3114686753096171 0.1170025511882888 0.9430258041624864 -0.3114686753096171 -0.5580530298785489 -0.6868819057170897 0.4655857208311168 -0.5144747560634457 -0.7170989215866322 0.4701966206096629 -0.4971366770465531 -0.7227409499224468 0.4801048256790497 0.4971366770465531 0.7227409499224468 -0.4801048256790497 0.5144747560634457 0.7170989215866322 -0.4701966206096629 0.5580530298785489 0.6868819057170897 -0.4655857208311168 -0.5451847648562986 -0.6795279363612947 0.4909331480692076 -0.5583224479878474 -0.6848994354787804 0.4681760431223551 0.5583224479878474 0.6848994354787804 -0.4681760431223551 0.5451847648562986 0.6795279363612947 -0.4909331480692076 -0.1319019164971365 -0.9175016921677499 0.375223305904228 -0.1366215138279231 -0.9197698814859678 0.3679102160455122 -0.132187031375201 -0.9230309666043481 0.3613037827447346 0.132187031375201 0.9230309666043481 -0.3613037827447346 0.1366215138279231 0.9197698814859678 -0.3679102160455122 0.1319019164971365 0.9175016921677499 -0.375223305904228 -0.1289849043901566 -0.9215886923010116 0.3661108802840657 -0.1268997631170716 -0.9278451148530309 0.3507134057377864 0.1268997631170716 0.9278451148530309 -0.3507134057377864 0.1289849043901566 0.9215886923010116 -0.3661108802840657 -0.1240889977263835 -0.935968365345372 0.3294922453047622 -0.1260530155511802 -0.927743067690427 0.3512882543194544 -0.1256997483470361 -0.9362686863122588 0.3280251824122791 0.1260530155511802 0.927743067690427 -0.3512882543194544 0.1256997483470361 0.9362686863122588 -0.3280251824122791 0.1240889977263835 0.935968365345372 -0.3294922453047622 -0.1211640169608956 -0.9438046778011408 0.3074931074911838 0.1211640169608956 0.9438046778011408 -0.3074931074911838 -0.5535665584026356 -0.7852409048141928 0.2774180722751294 -0.6307922097387901 -0.7250610588406663 0.2763831562988343 -0.6328548543715852 -0.7235364593406309 0.2756623392905591 0.6328548543715852 0.7235364593406309 -0.2756623392905591 0.6307922097387901 0.7250610588406663 -0.2763831562988343 0.5535665584026356 0.7852409048141928 -0.2774180722751294 -0.5040203107265815 -0.8294161793038206 0.2408989993423235 -0.5497036183937712 -0.7888062471367417 0.2749738831286428 0.5497036183937712 0.7888062471367417 -0.2749738831286428 0.5040203107265815 0.8294161793038206 -0.2408989993423235 -0.460851692936173 -0.8753739730121579 0.146068903229857 -0.4985502972453628 -0.8325691162757212 0.2414047798624232 0.4985502972453628 0.8325691162757212 -0.2414047798624232 0.460851692936173 0.8753739730121579 -0.146068903229857 -0.4569279317681941 -0.8856200811699702 -0.08302973562848467 -0.4572416734112509 -0.8756361354271367 0.1555358814881895 0.4572416734112509 0.8756361354271367 -0.1555358814881895 0.4569279317681941 0.8856200811699702 0.08302973562848467 -0.4286788938903839 -0.8665692927857499 -0.2555231236771386 -0.4542038175253678 -0.8845680751983658 -0.1060104357374351 0.4542038175253678 0.8845680751983658 0.1060104357374351 0.4286788938903839 0.8665692927857499 0.2555231236771386 -0.3064282572468343 -0.7615096868410569 0.5711433445361185 -0.3524105864353466 -0.7559917297368691 0.5516187842502752 0.3524105864353466 0.7559917297368691 -0.5516187842502752 0.3064282572468343 0.7615096868410569 -0.5711433445361185 -0.5412831574712219 -0.6807737084399571 0.4935176808736367 0.5412831574712219 0.6807737084399571 -0.4935176808736367 -0.4272120245077655 -0.8674148026834218 -0.2551106548179773 0.4272120245077655 0.8674148026834218 0.2551106548179773</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID998\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID996\">\r\n                    <float_array count=\"196\" id=\"ID999\">-4.476007576609035 7.062446497286024 -5.610078521260624 10.18451102473239 -4.616909317180718 10.23948786492563 -4.457317962308713 7.070081426959296 -5.451980479202522 7.070081426959295 -5.582273135016021 10.1941861999994 -2.915820564645328 4.577486397015233 -2.705824901930551 3.881759770422776 -3.044538181434562 4.237025474007779 -4.927754917204618 9.572531168459182 -4.098294577175903 9.820029505899221 -3.533778702362138 6.694277314763351 -3.189794693172454 5.834534961886438 -2.976053988909622 5.174927108690099 -2.950461588838496 6.827506162532062 -2.574112979026264 5.90973500068239 -2.310670360138509 5.273218044780612 -1.971952387364679 3.008396156954229 -1.802609827421979 4.207418866483767 -1.6114341764961 2.609907015700216 -1.33218931828335 3.230435375675426 -1.106382029703872 2.786350440244579 -4.414598464887224 6.126107772952492 -5.451980479202522 7.061712810444018 -4.457317962308713 7.061712810444016 -5.33596872995056 2.130714035845917 -5.924772333389478 3.074542164180131 -5.763048222846655 3.122267891642199 -4.987916614829788 1.512708834556799 -5.377440342691845 1.899378453086448 -5.218756704377096 1.966856877840273 -4.260154754836963 2.720485635982612 -5.257018934731138 2.688642967424494 -5.29019606874273 3.166224867289707 -4.288675503379187 3.206941579033968 -5.285625910594948 3.191125460069592 -5.351085900066831 4.23457763899701 -4.41979236804897 5.428040042772467 -4.351493664629199 4.291039244739512 -5.414233208841241 5.380670171341812 -5.345933874498217 4.243665053434983 -4.415291528805324 5.454552311874554 -5.409786663689427 5.40789315121728 -5.444478208186572 6.07674149299513 -4.438155718111392 6.116919218057375 -5.432744773063641 6.08583337300607 -5.479987793634328 7.049459215875197 -6.203185173507943 6.276398871968053 -7.302381745519437 9.220150285118146 -7.120928170141183 9.270667048401974 -6.05090352278245 5.589542698505411 -6.416833798944759 6.43548686015438 -6.246087340236969 6.477690060269889 -5.947800219407116 5.041376582275624 -6.225849311089496 5.691759027822195 -6.057282581899993 5.716607486391731 -5.942953322128933 5.176183896234631 -5.915069665924102 4.577268658835078 -6.110213799958335 5.176780817884009 -5.968821493453951 4.011867773493208 -6.078344164688114 4.355576795346951 -5.911078840908683 4.364150946875863 -5.914572748051512 3.883135267461919 -5.788129089640393 3.450333224929001 -6.077940492615052 3.895396330804702 -5.764906912468319 3.140463050621411 -5.926698155432084 3.092878339107605 -6.122288302219893 3.554007002763703 -5.25185851333697 2.085897937376482 -5.411299025384771 2.019532791723905 -5.870819298278879 3.017708812526331 -5.03425269375542 1.515196952579786 -5.20087948499223 1.469582089575572 -5.418215817904647 1.905293193501272 -4.257505459531929 2.720014403967389 -5.286018809997048 3.167931777298792 -4.289073233445126 3.18393522163202 -4.285980849598744 3.209841492506433 -5.34638380163261 4.238759873238242 -4.351952313245739 4.286247223369609 -4.405753380254583 5.457778096002004 -5.433512735694054 6.081425640721875 -4.438928614152006 6.112609013456504 -6.244958820165806 6.356114253185693 -6.415450211855801 6.313277663626342 -7.23775406617386 9.323170269276911 -6.058025690602193 5.628878803242282 -6.226509457877878 5.603684553087598 -6.408634890764557 6.478828975510515 -5.942758739870094 5.081091340191565 -6.110019128929388 5.081703461357701 -6.210238106228282 5.734211264659076 -5.91599523908132 4.575875699918768 -6.083282415819649 4.567569574095214 -6.111403487118982 5.175334618298088 -5.965547817296141 4.005385117475852 -6.129123088814952 4.015794026888997 -6.075915714967462 4.348926781517354</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID999\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID995\">\r\n                    <input semantic=\"POSITION\" source=\"#ID993\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID994\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID995\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID996\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 9 7 10 8 11 9 12 10 13 11 13 11 12 10 14 12 14 12 12 10 15 13 12 10 16 14 15 13 15 13 16 14 8 6 8 6 16 14 9 7 16 14 17 15 9 7 17 15 18 16 9 7 9 7 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 7 30 7 29 16 31 15 30 7 31 15 32 14 30 7 32 14 33 6 33 6 32 14 34 13 34 13 32 14 35 10 34 13 35 10 36 12 36 12 35 10 37 11 37 11 35 10 38 9 39 8 30 7 33 6 40 22 6 23 0 24 5 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 42 30 47 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 54 35 59 36 60 36 55 35 61 34 62 37 63 38 64 39 59 40 64 39 63 38 65 38 66 39 60 40 66 39 65 38 67 37 62 41 64 42 68 43 69 43 66 42 67 41 40 44 68 45 6 46 7 46 69 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 77 51 70 52 75 52 78 51 79 50 80 53 81 54 76 55 79 55 82 54 83 53 80 56 84 57 85 58 86 58 87 57 83 56 88 59 89 60 84 61 87 61 90 60 91 59 92 62 44 63 93 64 94 64 45 63 95 62 44 65 43 66 93 67 94 67 46 66 45 65 42 68 49 69 43 70 46 70 50 69 47 68 48 71 96 72 49 73 50 73 97 72 51 71 52 74 54 75 58 76 61 76 55 75 57 74 58 77 59 78 63 79 65 79 60 78 61 77 62 80 68 81 40 82 41 82 69 81 67 80 70 83 77 84 71 85 74 85 78 84 75 83 76 86 81 87 77 88 78 88 82 87 79 86 80 89 85 90 81 91 82 91 86 90 83 89 84 92 89 93 85 94 86 94 90 93 87 92 88 95 98 96 89 97 90 97 99 96 91 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1000\">\r\n            <mesh>\r\n                <source id=\"ID1001\">\r\n                    <float_array count=\"300\" id=\"ID1005\">-0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1005\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1002\">\r\n                    <float_array count=\"300\" id=\"ID1006\">-0.1152785401318226 0.9514539780096277 0.2853877816493387 -0.1088253784222441 0.9474097604849766 0.3009514624471104 -0.1164499499977552 0.9514072021990337 0.2850679651404685 0.1164499499977552 -0.9514072021990337 -0.2850679651404685 0.1088253784222441 -0.9474097604849766 -0.3009514624471104 0.1152785401318226 -0.9514539780096277 -0.2853877816493387 -0.1108158709414702 0.9479756505698795 0.2984325864815992 0.1108158709414702 -0.9479756505698795 -0.2984325864815992 -0.1170020873176061 0.9430265699053393 0.3114665311327904 0.1170020873176061 -0.9430265699053393 -0.3114665311327904 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211732142097103 0.9438073403036035 0.3074813108908012 0.1211732142097103 -0.9438073403036035 -0.3074813108908012 -0.1321716117428985 0.9230345567260386 0.3613002520603185 -0.1289786499144217 0.9215964103368728 0.3660936551218056 -0.1269033028027753 0.9278449706028746 0.3507125065701218 0.1269033028027753 -0.9278449706028746 -0.3507125065701218 0.1289786499144217 -0.9215964103368728 -0.3660936551218056 0.1321716117428985 -0.9230345567260386 -0.3613002520603185 -0.1365916059617619 0.9197763476074805 0.3679051556619317 -0.1318868020555722 0.9175152480092108 0.3751954705405586 0.1318868020555722 -0.9175152480092108 -0.3751954705405586 0.1365916059617619 -0.9197763476074805 -0.3679051556619317 -0.5582998943323946 0.6849160643720522 0.4681786120206002 -0.5451072798952581 0.6795683929083647 0.4909631888086266 -0.5580352589138925 0.686896283790861 0.4655858085500564 0.5580352589138925 -0.686896283790861 -0.4655858085500564 0.5451072798952581 -0.6795683929083647 -0.4909631888086266 0.5582998943323946 -0.6849160643720522 -0.4681786120206002 -0.5144099610105722 0.7171316315973716 0.4702176251222334 -0.497074599178697 0.7227721921072363 0.4801220690281148 0.497074599178697 -0.7227721921072363 -0.4801220690281148 0.5144099610105722 -0.7171316315973716 -0.4702176251222334 -0.3064402809272837 0.7615293823458688 0.5711106320575088 -0.352403313346486 0.7560131466980314 0.5515940778889484 0.352403313346486 -0.7560131466980314 -0.5515940778889484 0.3064402809272837 -0.7615293823458688 -0.5711106320575088 -0.4540888561829713 0.8846296580586545 -0.1059890502526975 -0.4286481079664477 0.8665788463267886 -0.2555423695509543 -0.4568215763294453 0.8856767481496878 -0.08301051250820768 0.4568215763294453 -0.8856767481496878 0.08301051250820768 0.4286481079664477 -0.8665788463267886 0.2555423695509543 0.4540888561829713 -0.8846296580586545 0.1059890502526975 -0.4610442893976508 0.8752815563959685 0.1460149315887465 -0.4574195148530338 0.8755517285042376 0.1554881286299919 0.4574195148530338 -0.8755517285042376 -0.1554881286299919 0.4610442893976508 -0.8752815563959685 -0.1460149315887465 -0.4986342763500318 0.8325237471962924 0.2413877975439595 -0.5040953384354201 0.8293748738257591 0.2408842220532205 0.5040953384354201 -0.8293748738257591 -0.2408842220532205 0.4986342763500318 -0.8325237471962924 -0.2413877975439595 -0.5497405090277223 0.7887818631232486 0.2749700804483234 -0.5535993933396806 0.7852192614320004 0.2774138121473434 0.5535993933396806 -0.7852192614320004 -0.2774138121473434 0.5497405090277223 -0.7887818631232486 -0.2749700804483234 -0.6307142225357303 0.7251185372018276 0.2764103407932322 -0.6327739567192011 0.7235964141618628 0.2756906765018007 0.6327739567192011 -0.7235964141618628 -0.2756906765018007 0.6307142225357303 -0.7251185372018276 -0.2764103407932322 -0.1257158798169777 0.9362722954747478 0.3280086984948568 -0.1241004601015495 0.9359706713431454 0.329481377604328 0.1241004601015495 -0.9359706713431454 -0.329481377604328 0.1257158798169777 -0.9362722954747478 -0.3280086984948568 -0.1260584581940911 0.9277432077180657 0.3512859314728144 0.1260584581940911 -0.9277432077180657 -0.3512859314728144 -0.5411915379110214 0.6808183023324969 0.4935566416355883 0.5411915379110214 -0.6808183023324969 -0.4935566416355883 -0.4272108780820152 0.8674072480996509 -0.2551382597584773 0.4272108780820152 -0.8674072480996509 0.2551382597584773</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1006\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1004\">\r\n                    <float_array count=\"196\" id=\"ID1007\">5.617378929991789 10.19781422708152 4.483294934126929 7.075747942042431 4.624208775236756 10.25279109822444 5.458721422938665 7.083520870205004 4.464061036837125 7.083520870205009 5.588996955066634 10.20763462219114 4.421346952999289 6.140815188881417 4.464061036837125 7.076423884248999 5.458721422938665 7.076423884248994 2.975650367709245 4.577486397015233 3.10435390468914 4.237025474007778 2.765668784803665 3.88175977042276 1.166188366418925 2.786350440244582 1.391990961728664 3.230435375675429 1.671278059369284 2.609907015700215 1.862425550676504 4.207418866483772 2.031777497158823 3.008396156954226 2.370486083393128 5.273218044780597 2.633905235931875 5.90973500068239 3.010244459204613 6.827506162532067 3.035846245815374 5.174927108690105 3.2495779390001 5.834534961886451 3.593575840268438 6.694277314763352 4.158114993700223 9.82002950589921 4.987579839267953 9.572531168459182 5.440259090957746 6.100053721609197 4.445669499516969 6.131139493031489 5.487502565849463 7.063677282062665 5.293941409287112 3.207493381871648 4.296992243910657 3.223309561720638 5.359399117465306 4.250949577599662 5.265793053665141 2.705818470045893 4.268933211202332 2.737661070040306 5.298962164022343 3.183399341581381 5.415796362687616 1.916808604102276 5.026294682284743 1.530141409702067 5.257114503965267 1.984286605816789 5.959649671694621 3.092759185175174 5.370891361201542 2.148913571710389 5.797934195308944 3.14048579679244 5.810472141374266 3.475336991400121 5.936906742911044 3.908127033707534 6.100274528703595 3.920387757089989 6.105118350408258 4.344603273888446 5.995585169795275 4.000895026903539 5.937866076838642 4.353177406087491 5.942823095099554 4.580127261937448 5.970701324597152 5.179040319610356 6.137981372295337 5.179637239087242 6.256494040726642 5.700328114675888 5.978424246796603 5.049948518067148 6.087918494432243 5.725176464399121 6.450770346717195 6.445144142728336 6.084814463887035 5.599199516900355 6.280019180205057 6.487347366001216 7.341713869329332 9.230007304171149 6.242625006838358 6.286231003209693 7.160276736564839 9.280524494546649 5.417699803672306 5.422201727503866 4.423201973780691 5.468860483384689 5.452393926001093 6.09104426690505 4.427849072468621 5.444266645087963 5.422292833750023 5.396900100893685 4.359547899167656 4.307272427779807 5.353987874597794 4.259895192131318 5.441051096828423 6.096071898312635 4.413290633479596 5.472425483488996 4.446466439651513 6.127255214550647 5.354449558780775 4.25527680367496 4.294045878582681 3.226357187596779 4.360018074793429 4.302764210820874 5.294372291942167 3.185641304488297 4.265866408531684 2.73773186676205 4.297427948320241 3.201644465293737 5.44874766786911 2.036131675611467 5.289309405852778 2.102497103108806 5.908260563923147 3.034311935547308 5.238326230219618 1.487875929105176 5.071713689974774 1.533491951675666 5.455634220373443 1.92359810915547 5.961466416325745 3.111003021527154 5.799683556714631 3.158588099668047 6.157026842955437 3.572135238052842 6.155552762072252 4.004986074229297 5.991977498616147 3.994577086405462 6.102338909262918 4.338121338358671 6.111197565143103 4.570475749670344 5.943923440480776 4.578781900045646 6.13932621225063 5.17824259034208 6.137747467825764 5.091185061900924 5.970467508847646 5.090572949560249 6.23799435261363 5.743683457483806 6.257702125498454 5.614333098042479 6.089209544512898 5.639527272863173 6.439857234582204 6.489474903673819 6.450219087665467 6.324748101400834 6.279722914979196 6.367584550843858 7.272565028641802 9.334630861843838</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID1007\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1003\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1001\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1002\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1003\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1004\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 1 7 6 8 7 8 4 7 9 6 10 9 11 10 12 11 13 12 14 13 15 14 14 13 16 15 15 14 15 14 16 15 17 16 16 15 18 17 17 16 18 17 19 18 17 16 17 16 19 18 12 11 12 11 19 18 10 9 19 18 20 19 10 9 10 9 20 19 21 20 21 20 20 19 22 21 22 21 20 19 23 22 20 19 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 19 27 22 29 19 30 21 30 21 29 19 31 20 31 20 29 19 32 9 32 9 29 19 33 18 32 9 33 18 34 11 34 11 33 18 35 16 35 16 33 18 36 17 35 16 36 17 37 15 35 16 37 15 38 14 38 14 37 15 39 13 38 14 39 13 40 12 34 11 41 10 32 9 42 25 8 26 6 27 7 27 9 26 43 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 44 33 49 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 56 38 61 39 62 39 57 38 63 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 78 49 74 50 79 51 80 51 77 50 81 49 82 52 79 53 83 54 84 54 80 53 85 52 86 55 83 56 87 57 88 57 84 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 90 62 94 63 46 64 94 63 90 62 93 62 95 63 47 64 95 63 93 62 92 61 42 65 91 66 8 67 9 67 92 66 43 65 46 68 45 69 94 70 95 70 48 69 47 68 44 71 51 72 45 73 48 73 52 72 49 71 54 74 56 75 60 76 63 76 57 75 59 74 96 77 55 78 54 79 59 79 58 78 97 77 60 80 61 81 65 82 66 82 62 81 63 80 98 83 69 84 68 85 73 85 72 84 99 83 68 86 70 87 75 88 76 88 71 87 73 86 75 89 74 90 78 91 81 91 77 90 76 89 78 92 79 93 82 94 85 94 80 93 81 92 82 95 83 96 86 97 89 97 84 96 85 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1008\">\r\n            <mesh>\r\n                <source id=\"ID1009\">\r\n                    <float_array count=\"240\" id=\"ID1013\">-0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID1013\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1010\">\r\n                    <float_array count=\"240\" id=\"ID1014\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.665978872098829 -0.4946710441241405 0.5583660985617809 -0.6729749463518688 -0.637361758729642 0.3753327991153409 -0.6631686390966892 -0.5040032000643614 0.5533426880727064 0.6631686390966892 0.5040032000643614 -0.5533426880727064 0.6729749463518688 0.637361758729642 -0.3753327991153409 0.665978872098829 0.4946710441241405 -0.5583660985617809 -0.6113023930812731 -0.4665479271234981 0.6392514496736599 -0.6144927450388785 -0.4648298128754873 0.6374416925152632 0.6144927450388785 0.4648298128754873 -0.6374416925152632 0.6113023930812731 0.4665479271234981 -0.6392514496736599 -0.6113024351803775 0.02089648161452121 -0.7911211473590341 -0.6629772102952537 -0.05946182801509716 -0.7462744197935675 -0.6144856224526448 0.02115082100305797 -0.788644446230291 0.6144856224526448 -0.02115082100305797 0.788644446230291 0.6629772102952537 0.05946182801509716 0.7462744197935675 0.6113024351803775 -0.02089648161452121 0.7911211473590341 -0.6729865574698508 -0.2722723663025976 -0.6877185848970954 -0.6657964087760006 -0.04905406275857674 -0.7445192012217402 0.6657964087760006 0.04905406275857674 0.7445192012217402 0.6729865574698508 0.2722723663025976 0.6877185848970954 -0.6289126479749136 -0.4316287370285187 -0.6466571847496542 -0.6701219898639051 -0.2700944235726152 -0.6913649695029515 0.6701219898639051 0.2700944235726152 0.6913649695029515 0.6289126479749136 0.4316287370285187 0.6466571847496542 -0.625235720980833 -0.6900477813844846 -0.3645742072828637 -0.6193536905515095 -0.6949069317223108 -0.3653838560261096 -0.6585492725804401 -0.7117353213657445 -0.2444293106486486 0.6585492725804401 0.7117353213657445 0.2444293106486486 0.6193536905515095 0.6949069317223108 0.3653838560261096 0.625235720980833 0.6900477813844846 0.3645742072828637 -0.6194174598878585 -0.7727236736317268 -0.1386367000298329 -0.6252889641002037 -0.7683994078132589 -0.1362940257191311 0.6252889641002037 0.7683994078132589 0.1362940257191311 0.6194174598878585 0.7727236736317268 0.1386367000298329 -0.6289491677379813 -0.7378166084535101 0.2450501921889897 -0.6701143216290043 -0.6378674916840043 0.3795679899576043 0.6701143216290043 0.6378674916840043 -0.3795679899576043 0.6289491677379813 0.7378166084535101 -0.2450501921889897 -0.6220235325541719 -0.4367230682693095 -0.6498920576451671 0.6220235325541719 0.4367230682693095 0.6498920576451671 -0.66322861238516 -0.7078364633944363 -0.2430953492004979 0.66322861238516 0.7078364633944363 0.2430953492004979 -0.6220739496306955 -0.7438120858740276 0.2444740928986038 0.6220739496306955 0.7438120858740276 -0.2444740928986038</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID1014\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1012\">\r\n                    <float_array count=\"132\" id=\"ID1015\">-13.1400950603756 1.173564403059267 -10.40627893432769 1.124434441577344 -13.15255137381423 0.9279589001163017 -10.27307042155825 0.8681266778283273 -9.189994418622993 1.264051624233875 -9.003990750986796 1.048556618282334 -8.631364655027486 1.58133806218634 -8.32989678897887 1.389732320018504 -8.138397114707948 2.229419222292963 -8.021211049481213 2.979020818746164 -7.899110943071706 3.579476892421579 -7.825205836228406 2.14481334522609 -7.633701656418383 2.984495669372309 -11.2648379224095 5.469276533528866 -11.08282841508071 5.669081998703718 -9.064802010625483 4.197342553950783 -8.759556250140577 4.335206239657886 -8.214175023921374 3.499343108218881 -9.293499526711592 4.817014898978647 -8.826029735810842 3.819095263127729 -9.479935146563065 4.69355806947108 -9.598333715416914 4.269996002902563 -11.4451814866472 6.004559867052301 -11.27238326129256 6.122746934237442 -12.99649077872279 3.548711561631994 -10.11869071105481 3.450892066657108 -13.01122109678588 3.368945949801105 -10.93441203049134 1.86609666716912 -9.691000544009365 2.135289745490901 -10.9099599054405 1.675370038626291 -9.373139815182823 0.7689770988787354 -9.807669465111511 0.1722143048301494 -9.948650378751601 0.3300733873617702 -8.577158506658666 0.2520704532656712 -8.784749024975916 0.3368814101118945 -8.44894854732777 1.148049050310268 -8.283231792898336 1.754479953103737 -8.163454103892477 2.60234989713821 -7.929857688637407 2.612187149318454 -8.393267123014773 3.395516742139427 -8.575064803892623 4.009635864995857 -8.347904821053195 4.082333036170931 -9.538143212337962 4.122019508445817 -9.712549747783164 3.988124977535597 -11.4967703490366 5.776114209361791 -8.635265013996062 3.840908182472945 -8.857708853722354 3.759685808930915 -9.336631246940229 4.75423905497862 -10.099789347737 3.347976657609713 -10.11874372708642 3.156863270877688 -12.99262703403099 3.273043651450185 -10.88782026707182 1.734216017891711 -9.664307303095521 2.186591215072741 -9.576302614795329 2.006517442139522 -9.715984028727405 -0.1838898453009026 -9.313113161111691 0.4264642055287746 -9.120028776210594 0.3225903730954203 -8.362142656158987 1.254366929361164 -8.748456669163948 0.4045346212719758 -8.597687662062889 1.298337143620016 -7.995450381775688 3.494271011514753 -8.229032362201163 3.484223882823618 -8.171197827192739 4.170460074055694 -8.20339914665017 1.799521614731336 -8.439711847109324 1.84086418270131 -8.079339290991934 2.696767466467675</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID1015\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1011\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1009\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1010\"/>\r\n                </vertices>\r\n                <triangles count=\"64\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1011\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1012\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 9 9 10 10 8 8 7 7 8 8 11 11 8 8 10 10 11 11 12 12 11 11 10 10 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 10 10 17 17 9 9 17 17 10 10 18 10 19 17 20 9 19 17 18 10 21 16 19 17 21 16 22 15 22 15 21 16 23 14 22 15 23 14 24 13 18 10 25 11 26 12 25 11 18 10 27 8 25 11 27 8 28 7 27 8 18 10 20 9 28 7 27 8 29 6 28 7 29 6 30 5 30 5 29 6 31 4 30 5 31 4 32 3 32 3 31 4 33 1 32 3 33 1 34 2 34 2 33 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 38 21 42 22 43 23 44 23 45 22 39 21 46 24 47 25 48 26 49 26 50 25 51 24 47 27 52 28 53 29 54 29 55 28 50 27 56 30 57 31 52 32 55 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 62 36 66 37 67 38 68 38 69 37 63 36 70 39 37 40 71 41 72 41 40 40 73 39 36 42 38 43 43 44 44 44 39 43 41 42 71 45 37 46 36 47 41 47 40 46 72 45 47 48 53 49 48 50 49 50 54 49 50 48 53 51 52 52 57 53 58 53 55 52 54 51 57 54 56 55 74 56 75 56 59 55 58 54 76 57 60 58 62 59 63 59 65 58 77 57 78 60 70 61 71 62 72 62 73 61 79 60 76 63 62 64 67 65 68 65 63 64 77 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1016\">\r\n            <mesh>\r\n                <source id=\"ID1017\">\r\n                    <float_array count=\"300\" id=\"ID1021\">-0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.36399123050046 -0.05397436236353959</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1021\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1018\">\r\n                    <float_array count=\"300\" id=\"ID1022\">-0.1088382594273443 -0.0230925907380549 0.9937912082212393 -0.1152576241861024 -0.03911071598773939 0.9925653791876389 -0.1164223673367788 -0.03939636620354328 0.9924181370338092 0.1164223673367788 0.03939636620354328 -0.9924181370338092 0.1152576241861024 0.03911071598773939 -0.9925653791876389 0.1088382594273443 0.0230925907380549 -0.9937912082212393 -0.1108273234566798 -0.02565555069468248 0.9935084786220906 0.1108273234566798 0.02565555069468248 -0.9935084786220906 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170010640450718 -0.01171259707753706 0.993062720114908 0.1170010640450718 0.01171259707753706 -0.993062720114908 -0.49707423312389 0.2193373097837861 0.8395286482908776 -0.3523453743815874 0.2761690730154793 0.8941942631563176 -0.3063605024253654 0.292841831319583 0.9057521208272551 0.3063605024253654 -0.292841831319583 -0.9057521208272551 0.3523453743815874 -0.2761690730154793 -0.8941942631563176 0.49707423312389 -0.2193373097837861 -0.8395286482908776 -0.514413700169338 0.2117991293092924 0.830975134346339 -0.5580248035340664 0.2172606952515568 0.8008783359159973 0.5580248035340664 -0.2172606952515568 -0.8008783359159973 0.514413700169338 -0.2117991293092924 -0.830975134346339 -0.545145087248696 0.2436486159674788 0.8021547143698301 -0.5582941772828572 0.2203572971939314 0.7998439055124711 0.5582941772828572 -0.2203572971939314 -0.7998439055124711 0.545145087248696 -0.2436486159674788 -0.8021547143698301 -0.1366090766113033 0.0492215304934492 0.9894014357798807 -0.1321734375085311 0.04191912395636385 0.9903398252437945 -0.131888714653345 0.05687624445573066 0.9896314767446013 0.131888714653345 -0.05687624445573066 -0.9896314767446013 0.1321734375085311 -0.04191912395636385 -0.9903398252437945 0.1366090766113033 -0.0492215304934492 -0.9894014357798807 -0.1269026228341467 0.03033545622924269 0.9914512012263529 -0.1289755249516954 0.04693082498186052 0.9905366281112257 0.1289755249516954 -0.04693082498186052 -0.9905366281112257 0.1269026228341467 -0.03033545622924269 -0.9914512012263529 -0.124092777366998 0.0076289036136885 0.992241292446045 -0.126060444224836 0.03090911601848133 0.9915409174354799 -0.1257051481658395 0.006141985696806098 0.9920486337555757 0.126060444224836 -0.03090911601848133 -0.9915409174354799 0.1257051481658395 -0.006141985696806098 -0.9920486337555757 0.124092777366998 -0.0076289036136885 -0.992241292446045 -0.121164189425585 -0.01572761942446628 0.9925078746227056 0.121164189425585 0.01572761942446628 -0.9925078746227056 -0.6307579737542808 0.02590113406437414 0.7755472324749624 -0.6328191074081528 0.02571473448560696 0.7738725539321597 -0.5535966397540385 0.007327883701034462 0.8327527019310723 0.5535966397540385 -0.007327883701034462 -0.8327527019310723 0.6328191074081528 -0.02571473448560696 -0.7738725539321597 0.6307579737542808 -0.02590113406437414 -0.7755472324749624 -0.5497328291718073 0.003855971050269636 0.8353316395408592 -0.50401691956796 -0.04154329558212729 0.8626940937443589 0.50401691956796 0.04154329558212729 -0.8626940937443589 0.5497328291718073 -0.003855971050269636 -0.8353316395408592 -0.4610763548051719 -0.1461813753387184 0.8752368825316127 -0.4985583850107261 -0.04209033687011798 0.8658336677894066 0.4985583850107261 0.04209033687011798 -0.8658336677894066 0.4610763548051719 0.1461813753387184 -0.8752368825316127 -0.4568954263623595 -0.3661495419449712 0.8106670600824024 -0.4574584754158474 -0.1372954494769191 0.8785679841783102 0.4574584754158474 0.1372954494769191 -0.8785679841783102 0.4568954263623595 0.3661495419449712 -0.8106670600824024 -0.4286977599895537 -0.5231200390841958 0.736589203890804 -0.4541605407154716 -0.3875438698506286 0.8022144053794031 0.4541605407154716 0.3875438698506286 -0.8022144053794031 0.4286977599895537 0.5231200390841958 -0.736589203890804 -0.4272529523562543 -0.5230063251151536 0.7375088464502692 0.4272529523562543 0.5230063251151536 -0.7375088464502692 -0.5412401970068317 0.2456900208751192 0.8041737764851509 0.5412401970068317 -0.2456900208751192 -0.8041737764851509</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1022\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1020\">\r\n                    <float_array count=\"196\" id=\"ID1023\">-9.982481491239387 -0.7801007211882352 -14.09510292357247 -0.5039355294692868 -13.80735445879598 0.2458649066213103 -10.34526016737302 -1.466008715794491 -14.09879580861296 -0.4405539083059194 -9.988301163081676 -0.7356641740735505 -13.10922761281063 -0.5571905098427091 -13.13740525360347 0.1403214759947992 -9.196091163788671 -0.4549016494423948 -9.166790892866176 0.02237652469014133 -8.050713318734761 -0.478223336087835 -7.941139361618053 0.004288303168351604 -7.188240519124049 -0.5334174714432312 -7.090320138584049 -0.006447222908070464 -6.450420964679379 -0.6826635284399174 -6.082881246769018 -0.8890069299183254 -5.643938497996714 0.02538830541298317 -5.545750788810404 -0.7523932208971403 -4.316527116072848 0.05807392568797635 -4.257382154934284 -0.4900517056751142 -3.709288218786411 0.08183865699999136 -3.661200976693986 -0.3512310434882693 -8.25892496550161 -2.716294787433218 -9.56365659142571 -3.414782035487321 -9.444849024834038 -2.637915891572029 -0.4501075387385644 -5.702039180101661 -0.760980155205736 -6.138226240003666 -0.8383862270638492 -6.024387405365547 -3.036946117474684 -5.046749768110493 -3.11972454521867 -4.927496814587837 -1.931797432665722 -4.455539334599414 -1.39198761903897 -4.060249812509751 -1.840201626763001 -4.405347099302408 -1.942059996843278 -4.288237917025894 -1.743825325723805 -4.738097079607221 -2.315112412340436 -4.901759201329516 -2.072054116570976 -3.996942288506867 -3.006142084263772 -4.677607628037944 -4.29745234114743 -4.921683762233218 -3.210764357994353 -3.909876114437887 -6.045846395112246 -4.351127992404424 -4.63326543236224 -4.104402683678466 -5.817027785622174 -5.11390335315071 -4.404478357282174 -4.86718369880627 -7.68254055900837 -3.291082013018551 -8.526584459177135 -3.206102051772249 -7.574657362153948 -2.511963867763529 -8.639203837906873 -3.01900298997022 -9.850251925139794 -2.869509604712622 -8.486035206263603 -2.245302060931764 -12.8594219210069 -3.959341569141119 -12.88930466061255 -3.809766395600264 -8.979394940552526 -3.648259713923244 -9.376131742660215 -3.534536530901836 -9.391545189087976 -3.394260442828891 -8.247053604057138 -3.436684447776327 -7.8341142891939 -3.053992018602209 -8.7058236215713 -3.078954991981029 -8.688221694559164 -2.944754120167723 -8.040918009984427 -1.609661502807112 -8.793910115866449 -1.430479012716069 -8.706594682299912 -1.318227486458866 -7.846467309198026 0.203731956450229 -8.204757539203133 0.4184993788204998 -8.080882217779717 0.5073250354274762 -7.973663933481603 0.1708422317066539 -8.193916486682584 0.4584273007660447 -7.836967917690922 0.2422817623004304 -3.102673325396043 -5.034591316029415 -3.657392430113825 -5.248806784060694 -3.184266115108013 -4.914833768129049 -2.162892915154069 -4.393783806136414 -3.394592342438381 -4.827589234947812 -2.258730892786211 -4.273571014922622 -1.124263670823358 -4.256400851632963 -1.64240444746631 -4.486484675650029 -1.204920604791744 -4.132968849313659 -1.707878264920318 -5.051978381616294 -2.106744346024158 -4.33304282629061 -1.573574662755514 -4.13323415933467 -3.055364651970826 -3.986730453637497 -4.102647352655998 -5.023934951648005 -4.376892342551905 -4.270486949557792 -8.304432996410977 -3.546277958346702 -8.22936812025759 -2.7654805562517 -7.39868796456141 -2.814896261844453 -8.85003260959982 -4.105813515261139 -12.75388280914387 -4.321676615539797 -8.87990583956584 -3.966989383531663 -8.18877059368268 -3.727801701899872 -9.315494873795004 -3.699917069303213 -8.187762571847973 -3.592890692650113 -7.860413932309075 -3.269408970252542 -8.686391782372066 -3.170572816674207 -7.814820248641656 -3.142791349253691 -8.113196821760255 -1.740424407903711 -8.789396298041625 -1.445615269068238 -8.035881586078531 -1.62343299194266</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID1023\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1019\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1017\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1018\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1019\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1020\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 9 7 10 8 9 7 11 9 10 8 10 8 11 9 12 10 11 9 13 11 12 10 12 10 13 11 14 12 13 11 15 13 14 12 14 12 15 13 16 14 16 14 15 13 17 15 15 13 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 15 30 15 29 16 31 13 30 15 31 13 32 14 32 14 31 13 33 12 33 12 31 13 34 11 33 12 34 11 35 10 35 10 34 11 36 9 35 10 36 9 37 8 37 8 36 9 38 7 37 8 38 7 39 6 40 22 6 23 0 24 5 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 42 29 49 30 50 30 47 29 51 28 52 31 53 32 49 33 50 33 54 32 55 31 56 34 57 35 58 36 59 36 60 35 61 34 57 37 62 38 63 39 64 39 65 38 60 37 66 40 67 41 68 42 62 43 68 42 67 41 69 41 70 42 65 43 70 42 69 41 71 40 68 44 72 45 66 46 71 46 73 45 70 44 72 47 6 48 40 49 41 49 7 48 73 47 74 50 75 51 76 52 77 52 78 51 79 50 80 53 76 54 81 55 82 55 77 54 83 53 84 56 85 57 81 58 82 58 86 57 87 56 88 59 89 60 84 61 87 61 90 60 91 59 92 62 93 63 88 64 91 64 94 63 95 62 96 65 93 66 92 67 95 67 94 66 97 65 48 68 43 69 42 70 47 70 46 69 51 68 53 71 48 72 49 73 50 73 51 72 54 71 98 74 53 75 52 76 55 76 54 75 99 74 57 77 63 78 58 79 59 79 64 78 60 77 63 80 62 81 67 82 69 82 65 81 64 80 72 83 40 84 66 85 71 85 41 84 73 83 80 86 74 87 76 88 77 88 79 87 83 86 85 89 80 90 81 91 82 91 83 90 86 89 89 92 85 93 84 94 87 94 86 93 90 92 93 95 89 96 88 97 91 97 90 96 94 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1024\">\r\n            <mesh>\r\n                <source id=\"ID1025\">\r\n                    <float_array count=\"300\" id=\"ID1029\">-0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1029\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1026\">\r\n                    <float_array count=\"300\" id=\"ID1030\">-0.1164251204271865 0.5786308311400867 -0.8072369866325796 -0.1152614763458105 0.5789463800012497 -0.8071777258782806 -0.1088481568860517 0.5923386087106918 -0.7983026063925831 0.1088481568860517 -0.5923386087106918 0.7983026063925831 0.1152614763458105 -0.5789463800012497 0.8071777258782806 0.1164251204271865 -0.5786308311400867 0.8072369866325796 -0.1108311632331452 0.590147562033904 -0.7996513667104105 0.1108311632331452 -0.590147562033904 0.7996513667104105 -0.1169877446230861 0.6008761854127825 -0.7907348970494391 0.1169877446230861 -0.6008761854127825 0.7907348970494391 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211500310125118 0.5973661817498072 -0.7927649808659082 0.1211500310125118 -0.5973661817498072 0.7927649808659082 -0.1268970330673193 0.6330602330777329 -0.763630725085285 -0.1321771951964776 0.641516467688795 -0.7556360306087073 -0.1289733966194932 0.6455983790150909 -0.7527075102438648 0.1289733966194932 -0.6455983790150909 0.7527075102438648 0.1321771951964776 -0.641516467688795 0.7556360306087073 0.1268970330673193 -0.6330602330777329 0.763630725085285 -0.1366192134527518 0.6467025975280807 -0.7504071833784541 -0.1318920760546484 0.6528924852832206 -0.7458792683368364 0.1318920760546484 -0.6528924852832206 0.7458792683368364 0.1366192134527518 -0.6467025975280807 0.7504071833784541 -0.5451959861481726 0.685035348561869 -0.4832058649360955 -0.5581385279990985 0.6633895104200506 -0.4983931590899352 -0.5584055108423882 0.6651998527735585 -0.4956737246726797 0.5584055108423882 -0.6651998527735585 0.4956737246726797 0.5581385279990985 -0.6633895104200506 0.4983931590899352 0.5451959861481726 -0.685035348561869 0.4832058649360955 -0.4970796441004287 0.6888461887919656 -0.5276388496005341 -0.5144129314214905 0.6776483658738426 -0.5255207210137955 0.5144129314214905 -0.6776483658738426 0.5255207210137955 0.4970796441004287 -0.6888461887919656 0.5276388496005341 -0.3065368645499978 0.7874550645024714 -0.5347426222597793 -0.3524751158962745 0.7672119047738485 -0.5358611628464889 0.3524751158962745 -0.7672119047738485 0.5358611628464889 0.3065368645499978 -0.7874550645024714 0.5347426222597793 -0.454140017835944 0.1871034341906217 -0.8710620810906903 -0.4286959899151095 0.03977866415051463 -0.9025726597394278 -0.4568675187823961 0.2091268429512146 -0.864602818546687 0.4568675187823961 -0.2091268429512146 0.864602818546687 0.4286959899151095 -0.03977866415051463 0.9025726597394278 0.454140017835944 -0.1871034341906217 0.8710620810906903 -0.4610330568129479 0.4223904034843316 -0.7804068602786966 -0.4574112545118764 0.4314471465815102 -0.7775784873262276 0.4574112545118764 -0.4314471465815102 0.7775784873262276 0.4610330568129479 -0.4223904034843316 0.7804068602786966 -0.4985686990456941 0.4987245144832661 -0.7090155929070352 -0.5040287169911085 0.4972319905766404 -0.7061978476287568 0.5040287169911085 -0.4972319905766404 0.7061978476287568 0.4985686990456941 -0.4987245144832661 0.7090155929070352 -0.5535723758972673 0.5174191484113569 -0.6525603799655021 -0.5497106232233426 0.5162657272219958 -0.6567251553057397 0.5497106232233426 -0.5162657272219958 0.6567251553057397 0.5535723758972673 -0.5174191484113569 0.6525603799655021 -0.6307511085987073 0.4969187375520394 -0.5960073886045282 -0.6328126226365115 0.4957425846370723 -0.5948003651724295 0.6328126226365115 -0.4957425846370723 0.5948003651724295 0.6307511085987073 -0.4969187375520394 0.5960073886045282 -0.1257030963027143 0.6143256787305055 -0.7789754116993772 -0.1240850473728673 0.6156224677283072 -0.7782106901389768 0.1240850473728673 -0.6156224677283072 0.7782106901389768 0.1257030963027143 -0.6143256787305055 0.7789754116993772 -0.1260524294574446 0.6335694907637545 -0.7633482071775848 0.1260524294574446 -0.6335694907637545 0.7633482071775848 -0.5412748879965412 0.687898621088518 -0.4835462570725241 0.5412748879965412 -0.687898621088518 0.4835462570725241 -0.4272470439601668 0.04043528853901111 -0.9032302867309456 0.4272470439601668 -0.04043528853901111 0.9032302867309456</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1030\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1028\">\r\n                    <float_array count=\"196\" id=\"ID1031\">1.998937623161384 10.76476841980763 2.986714499689779 10.86290628058702 2.646808655273745 7.626911531842514 3.137910672426441 10.83666032021479 3.73149548145001 7.745943970176235 2.753392543137154 7.603757279601984 2.820184296480023 7.581971421901169 3.799485555325677 7.718958628996464 2.986360958528956 6.654920534525154 -10.45577002727441 6.283216928777442 -9.888780236097874 6.819957862866433 -7.230760792342645 4.457246732780551 -6.88113622380909 4.847979343375632 -6.249633121797126 3.879151418789206 -5.959241747873955 4.31281594366269 -5.569883206520585 3.476406390468299 -5.235605254682731 3.939530432036485 -4.53685698336594 3.700681803303125 -4.453542058358801 2.75223422874128 -4.08577743896114 3.685864912838015 -3.76863480279438 3.318475734997433 -3.431737630961593 2.084911934129343 -2.971172988345912 1.772671627247351 -2.95700400690178 2.488800756097747 -2.594993336245468 2.091126521667093 3.625763036746231 7.771438100407487 3.81895079101609 6.819175129102827 2.835843568044133 6.696637019396241 4.147409147623762 5.020072757806616 4.353287423553801 3.987980441594453 3.373113844173326 3.843845654733742 4.329822052382522 3.988576604581577 4.425017633747888 3.516183683878827 3.441920088820501 3.382462419447546 2.288473777971453 3.838233246252393 2.056359603288195 4.291999654325147 2.230352107905733 4.329484501746936 2.335103140462541 4.369785709347631 1.846819489349988 5.343682783349156 2.009452657357155 5.389437917116684 3.432423115070612 5.067446679764254 3.317376742139041 5.502219060815397 3.459288365190417 5.567061823306501 -4.027123668961578 5.648598042583979 -3.625507904080766 5.488165434978679 -4.074900648768324 5.522217060790011 -1.028756012507091 6.944701516300213 -0.9192721422585309 7.044197939014103 -0.4737934490769319 6.534086009615941 -0.6357437305888969 7.514537810738175 -0.2529975353390784 6.897934716972006 -0.7779385115273918 7.439108605446435 -1.653891145271553 8.049854498656151 -1.497398853673659 8.118176192147216 -0.9697804840218809 7.326856963524517 -4.443807657891354 10.31154936901565 -2.240674467155615 7.779841628900575 -4.608304711025181 10.23293734499374 3.75622254964643 6.838662211659464 3.895902912319825 6.178304156875717 2.910250464513155 6.064224792957607 2.9733499521145 6.025115824772509 3.960090801378393 6.133215747935012 3.191931818886059 4.899905221596626 4.178668992404626 5.008016229071481 2.853014213669746 6.688899456137831 3.836421506115961 6.809938349919037 2.981756068882562 6.041430594450256 3.19913319123502 4.893302521149462 4.186013224173247 5.000603531797977 3.403561010679153 3.827721629442527 3.408140364595802 3.806695969447152 4.38943376548893 3.946035659923494 3.493767507501942 3.347032692092354 2.168577740868163 4.427932373500567 1.994848645956156 4.389698935824643 1.628068030784827 5.400671769098429 2.605226202472054 3.872011356930058 2.442902545374851 3.817638953721654 2.393635605078873 4.309488781848157 1.995011165963287 5.404459939837887 1.832450069184318 5.358546584306009 1.76553688369938 5.855830345560892 -3.982493890322007 5.661270718905809 -3.558007158969994 5.626281209275753 -3.582332382251634 5.498604840327278 -0.9689320567369109 7.039776299560601 -0.4026134045726859 6.625773062040189 -0.5199101826953312 6.531590478244566 -0.01524134949612947 7.554529442168967 0.4484293081867797 7.007795171809001 0.3219388629227055 6.921678714189059 -0.9145523620121765 8.201304268657363 -0.2892066006479271 7.463461634669913 -0.4343023409365476 7.391532441464667 -3.35620196045869 10.62525094866661 -1.205987261730729 8.052971772803227 -1.364385652116661 7.987424724987632</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID1031\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1027\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1025\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1026\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1027\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1028\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 2 6 6 7 8 8 9 8 7 7 3 6 10 9 11 10 12 11 11 10 13 12 12 11 12 11 13 12 14 13 13 12 15 14 14 13 14 13 15 14 16 15 15 14 17 16 16 15 17 16 18 17 16 15 16 15 18 17 19 18 18 17 20 19 19 18 20 19 21 20 19 18 19 18 21 20 22 21 22 21 21 20 23 22 21 20 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 20 27 22 29 20 30 21 30 21 29 20 31 18 31 18 29 20 32 19 31 18 32 19 33 17 31 18 33 17 34 15 34 15 33 17 35 16 34 15 35 16 36 14 34 15 36 14 37 13 37 13 36 14 38 12 37 13 38 12 39 11 39 11 38 12 40 10 39 11 40 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 55 37 60 38 61 39 62 39 63 38 58 37 60 40 64 41 65 42 66 42 67 41 63 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 70 48 71 48 76 47 77 46 78 49 74 50 79 51 80 51 77 50 81 49 82 52 83 53 79 54 80 54 84 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 90 62 94 63 44 64 94 63 90 62 93 62 95 63 49 64 95 63 93 62 92 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 56 74 55 75 61 76 62 76 58 75 57 74 96 77 54 78 56 79 57 79 59 78 97 77 61 80 60 81 65 82 66 82 63 81 62 80 68 83 98 84 69 85 72 85 99 84 73 83 75 86 68 87 70 88 71 88 73 87 76 86 78 89 75 90 74 91 77 91 76 90 81 89 83 92 78 93 79 94 80 94 81 93 84 92 86 95 83 96 82 97 85 97 84 96 89 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1032\">\r\n            <mesh>\r\n                <source id=\"ID1033\">\r\n                    <float_array count=\"180\" id=\"ID1037\">-0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.9795942854452735 0.8749769468548716</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1037\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1034\">\r\n                    <float_array count=\"180\" id=\"ID1038\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1038\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1036\">\r\n                    <float_array count=\"120\" id=\"ID1039\">-19.59188570890547 13.76630396384998 -19.04886463418979 14.25191163615645 -13.60830466398959 9.797102239768163 -13.18353596539283 10.30339123710937 -11.80775011326652 8.729689492795748 -11.41290570274134 9.284142171201117 -10.42232541141175 7.994811895109255 -10.02743369272711 8.549250986811536 -9.003512412931656 7.511347968262671 -8.858556458189856 8.193395738456855 -8.150745295211088 7.481316037858777 -7.717772010128141 8.570258983447072 -7.390247861223824 6.714910200247886 -6.853807126191143 9.252082277676843 -6.540672166948984 11.6205228613906 -6.227565367325356 8.494179944032663 -5.726108265179133 5.043303854792981 -5.553161274050962 7.679445612741617 -5.041763826525845 4.277439417764588 -4.306234587730349 4.811018489749948 -4.083905012052296 5.898375335431962 -3.385471377541194 5.140468275977997 -10.82793655825754 18.80162710738276 -10.06778605077227 19.04794340165244 -7.985814033393162 13.15527448152569 -7.335486789514798 11.50684232576269 -7.239162120697529 13.30684774139463 -6.901978847139394 10.23735513419642 -6.107060972638583 10.3510451214439 -5.98671614912405 9.138399969870253 -3.053530486319291 5.175522560721952 -3.113782683662678 4.247089972016331 -2.993358074562025 4.569199984935127 -3.270336083474492 5.8102614306953 -3.450989423569697 5.118677567098211 -3.426903563095571 4.626041138838422 -3.619581060348764 6.653423870697313 -3.667743394757399 5.753421162881343 -5.033893025386136 9.52397170082622 -3.992907016696581 6.577637240762844 -5.413968279128769 9.400813553691382 -2.041952506026148 2.949187667715981 -2.153117293865174 2.405509244874974 -1.692735688770597 2.570234137988999 -2.776580637025481 3.839722806370808 -2.520881913262922 2.138719708882294 -2.863054132589566 2.521651927396491 -3.695123930611912 3.357455100123943 -3.858886005064071 4.285129491723536 -4.075372647605544 3.740658018929389 -4.429278229094928 4.096697869228428 -4.501756206465828 3.755673984131335 -5.013716846363556 4.274625493405768 -5.211162705705876 3.997405947554627 -5.706452851370669 4.642071085600558 -5.903875056633261 4.364844746397874 -6.591767982696415 5.151695618554686 -6.804152331994795 4.898551119884082 -9.524432317094897 7.125955818078223 -9.795942854452735 6.88315198192499</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1039\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1035\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1033\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1034\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1035\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1036\"/>\r\n                    <p>0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 3 3 5 5 4 4 4 4 5 5 6 6 5 5 7 7 6 6 6 6 7 7 8 8 7 7 9 9 8 8 8 8 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 11 11 13 13 12 12 14 14 15 15 13 13 13 13 15 15 12 12 12 12 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 18 18 17 17 19 19 17 17 20 20 19 19 21 21 19 19 20 20 22 22 23 23 24 24 24 24 23 23 25 25 23 23 26 26 25 25 25 25 26 26 27 27 26 26 14 14 27 27 13 13 27 27 14 14 14 14 28 28 15 15 29 29 15 15 28 28</p>\r\n                </triangles>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1035\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1036\"/>\r\n                    <p>30 30 31 31 32 32 31 31 30 30 33 33 33 33 34 34 35 35 34 34 33 33 36 36 34 34 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 39 39 38 38 40 40 41 41 42 42 43 43 42 42 41 41 44 44 42 42 44 44 45 45 45 45 44 44 46 46 46 46 44 44 31 31 46 46 31 31 47 47 47 47 31 31 35 35 35 35 31 31 33 33 47 47 35 35 48 48 47 47 48 48 49 49 49 49 48 48 50 50 49 49 50 50 51 51 51 51 50 50 52 52 51 51 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 55 55 54 54 56 56 55 55 56 56 57 57 57 57 56 56 58 58 57 57 58 58 59 59</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1040\">\r\n            <mesh>\r\n                <source id=\"ID1041\">\r\n                    <float_array count=\"240\" id=\"ID1045\">-0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID1045\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1042\">\r\n                    <float_array count=\"240\" id=\"ID1046\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.672990936518585 0.2791484701318099 -0.6849520647365829 -0.6630700206644244 0.06601587505827476 -0.7456406989538392 -0.6658812119562829 0.05557583132515614 -0.7439849047770725 0.6658812119562829 -0.05557583132515614 0.7439849047770725 0.6630700206644244 -0.06601587505827476 0.7456406989538392 0.672990936518585 -0.2791484701318099 0.6849520647365829 -0.6113304972219287 -0.01491894967988539 -0.791234761690131 -0.6145075341081261 -0.01519103171901108 -0.7887646816888181 0.6145075341081261 0.01519103171901108 0.7887646816888181 0.6113304972219287 0.01491894967988539 0.791234761690131 -0.6113858088080906 0.4608262320043037 0.643309083322156 -0.6630483910174163 0.498855229375798 0.5581310699948852 -0.6145579693011508 0.4591343117628982 0.6414937148019891 0.6145579693011508 -0.4591343117628982 -0.6414937148019891 0.6630483910174163 -0.498855229375798 -0.5581310699948852 0.6113858088080906 -0.4608262320043037 -0.643309083322156 -0.6658642050055886 0.4894684515523368 0.563067931449868 -0.6730103961097779 0.633535161008159 0.3816938648898171 0.6730103961097779 -0.633535161008159 -0.3816938648898171 0.6658642050055886 -0.4894684515523368 -0.563067931449868 -0.6288817366873886 0.7353849506127249 0.2524217416812069 -0.6701444240931888 0.6340128793903517 0.3859198357482596 0.6701444240931888 -0.6340128793903517 -0.3859198357482596 0.6288817366873886 -0.7353849506127249 -0.2524217416812069 -0.6193201491348418 0.7741457966357958 -0.1309230248150662 -0.658578304891523 0.7141210938325098 -0.2372881785291209 -0.6252123795686114 0.7697839976649213 -0.1286160074530658 0.6252123795686114 -0.7697839976649213 0.1286160074530658 0.658578304891523 -0.7141210938325098 0.2372881785291209 0.6193201491348418 -0.7741457966357958 0.1309230248150662 -0.6193894345161001 0.698494696426414 -0.3584158024892286 -0.6252712636549731 0.6936274305614512 -0.3576546300833142 0.6252712636549731 -0.6936274305614512 0.3576546300833142 0.6193894345161001 -0.698494696426414 0.3584158024892286 -0.6701291299022093 0.2769832769238545 -0.6886270496872973 -0.6289250440898284 0.438067046954839 -0.6423009818526467 0.6289250440898284 -0.438067046954839 0.6423009818526467 0.6701291299022093 -0.2769832769238545 0.6886270496872973 -0.6219814506780375 0.7414065190456863 0.2519036492967151 0.6219814506780375 -0.7414065190456863 -0.2519036492967151 -0.6632653245983359 0.7102034419860702 -0.2359876695435651 0.6632653245983359 -0.7102034419860702 0.2359876695435651 -0.6220409688791525 0.4431898766144704 -0.6454825840426184 0.6220409688791525 -0.4431898766144704 0.6454825840426184</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID1046\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1044\">\r\n                    <float_array count=\"132\" id=\"ID1047\">7.685815723975792 2.874023367856466 7.958813840120982 3.46689333538805 7.866647783783838 2.032874418182379 8.073268797801365 2.865498302382628 8.18085731407338 2.115010321233234 8.36173593111768 1.273861371559148 8.665601494827795 1.463091360543377 9.031436992618183 0.9274041343529934 9.220172518723757 1.141427050559116 10.29819330692128 0.7370029567927344 10.43461727267754 0.9922419491244857 13.17319575342934 1.025474877244218 13.18256427081902 0.7797863034262775 8.272822123002557 3.384285294404218 8.828758325209945 4.21581308609941 9.132267951340403 4.075553710198706 11.17320201782601 5.536950720255618 11.35265838639835 5.335723967790457 9.743740101464573 1.988437824085204 10.9820680884364 1.705023222924476 10.95406190306286 1.514596294059031 10.18916535332233 3.309702731294755 13.07267779495826 3.379665889560748 13.08422968449263 3.199757330669627 11.53679451320826 5.887322116789082 9.664606296230362 4.161713060886227 11.36545721424794 6.006842844578951 9.357925723043625 4.713345186989823 9.54294143455537 4.58860161283133 8.87938669524374 3.718691191733911 8.621195066914398 3.915152656841173 8.433829724268323 3.302053148008258 8.394680517829666 3.989110993373233 8.192850961276159 2.510608965499221 8.30581624406488 1.662156996532964 7.959361423291862 2.521603384444761 8.797428992253618 0.2377375302496965 8.589066946989393 0.1540948178637264 8.468953380353767 1.050766553539041 9.9650088203073 0.2013483060752452 9.821862682408826 0.04469772784885676 9.395660232283182 0.6451734807435667 10.18010204372508 3.02003618013284 10.16431663537896 3.21133071886602 13.05993379571968 3.110797586965738 9.717512492742973 2.041116121749284 10.93264464736882 1.574955679289271 9.626254877814432 1.862045396082188 11.58740893055048 5.655514610796291 9.776872146541788 3.876144995495381 9.604226472762715 4.0114184348044 9.401641036197944 4.648499728985229 8.911424637990344 3.657371138622741 8.689895478581324 3.740148740343702 8.267186516090369 3.395002083835391 8.033717664007693 3.406265074033831 8.215118084369612 4.081528994233212 8.464930288377673 1.745696425622322 8.228261606106596 1.705594495213734 8.111839397566158 2.603469864687234 9.330301350185701 0.305373195999198 9.724851614784443 -0.308343230978199 9.135802437258771 0.2031367210126086 8.762482845796232 0.3028705175705735 8.384287130441004 1.154964469876548 8.620257114820655 1.19753825098844</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID1047\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1043\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1041\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1042\"/>\r\n                </vertices>\r\n                <triangles count=\"64\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1043\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1044\"/>\r\n                    <p>0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 10 10 11 11 9 9 12 12 9 9 11 11 3 3 1 1 13 13 1 1 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 17 17 15 15 16 16 18 16 19 15 20 17 19 15 18 16 21 14 19 15 21 14 22 13 22 13 21 14 23 1 22 13 23 1 24 3 25 11 26 9 27 12 26 9 25 11 28 10 26 9 28 10 29 8 26 9 29 8 30 7 30 7 29 8 31 6 30 7 31 6 32 5 32 5 31 6 33 4 32 5 33 4 34 2 34 2 33 4 24 3 34 2 24 3 23 1 34 2 23 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 37 21 42 22 43 23 44 23 45 22 40 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 47 28 53 29 54 29 50 28 55 27 53 30 56 31 57 32 58 32 59 31 54 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 36 39 70 40 71 41 72 41 73 40 41 39 38 42 37 43 43 44 44 44 40 43 39 42 36 45 38 46 70 47 73 47 39 46 41 45 48 48 47 49 52 50 55 50 50 49 49 48 52 51 53 52 57 53 58 53 54 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 61 57 76 58 62 59 63 59 77 58 64 57 71 60 70 61 78 62 79 62 73 61 72 60 67 63 76 64 61 65 64 65 77 64 68 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1048\">\r\n            <mesh>\r\n                <source id=\"ID1049\">\r\n                    <float_array count=\"300\" id=\"ID1053\">-0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1053\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1050\">\r\n                    <float_array count=\"300\" id=\"ID1054\">-0.1152698562505582 -0.5708457404589754 -0.8129255813663509 -0.1164339797874606 -0.5705294778991202 -0.8129816991784074 -0.1088540514781176 -0.584331089942785 -0.8041815546274835 0.1088540514781176 0.584331089942785 0.8041815546274835 0.1164339797874606 0.5705294778991202 0.8129816991784074 0.1152698562505582 0.5708457404589754 0.8129255813663509 -0.1108435503727157 -0.5821217352458851 -0.8055110133915557 0.1108435503727157 0.5821217352458851 0.8055110133915557 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170176206764311 -0.5929274844702175 -0.7967081489548396 0.1170176206764311 0.5929274844702175 0.7967081489548396 -0.4970751144160029 -0.683545041602595 -0.5344927564792851 -0.5581062161838647 -0.6583968034238775 -0.505006040259074 -0.5144163086132454 -0.6723630224863056 -0.5322629307267247 0.5144163086132454 0.6723630224863056 0.5322629307267247 0.5581062161838647 0.6583968034238775 0.505006040259074 0.4970751144160029 0.683545041602595 0.5344927564792851 -0.5452373970371485 -0.6801451362856548 -0.4900191572368603 -0.5583798869887992 -0.6602297154995238 -0.5023033192980051 0.5583798869887992 0.6602297154995238 0.5023033192980051 0.5452373970371485 0.6801451362856548 0.4900191572368603 -0.1366232935947715 -0.6391496733784974 -0.7568498996944356 -0.1321750213771143 -0.6339255398774245 -0.7620158617870596 -0.1318903393557705 -0.6453922059420187 -0.7523787868447079 0.1318903393557705 0.6453922059420187 0.7523787868447079 0.1321750213771143 0.6339255398774245 0.7620158617870596 0.1366232935947715 0.6391496733784974 0.7568498996944356 -0.1269071717687836 -0.6253899701404045 -0.7699233435878096 -0.1289732790216521 -0.6380369665418767 -0.7591276062852959 0.1289732790216521 0.6380369665418767 0.7591276062852959 0.1269071717687836 0.6253899701404045 0.7699233435878096 -0.1260674500275698 -0.6258988106438125 -0.7696477615625263 -0.1241010714283334 -0.6078068716321187 -0.7843275660507647 -0.1257095939325673 -0.6065122404802681 -0.7850732450803013 0.1241010714283334 0.6078068716321187 0.7843275660507647 0.1257095939325673 0.6065122404802681 0.7850732450803013 0.1260674500275698 0.6258988106438125 0.7696477615625263 -0.1211769958232875 -0.5894025390301889 -0.7986994319942953 0.1211769958232875 0.5894025390301889 0.7986994319942953 -0.630695063396688 -0.4909614247884672 -0.6009830416714983 -0.6327553060025942 -0.489798292648837 -0.5997652501136153 -0.5535679708898417 -0.5108673680079583 -0.6577058870874768 0.5535679708898417 0.5108673680079583 0.6577058870874768 0.6327553060025942 0.489798292648837 0.5997652501136153 0.630695063396688 0.4909614247884672 0.6009830416714983 -0.5497067787296889 -0.5096714306261669 -0.6618591165966555 -0.5040208671260086 -0.4901460352175064 -0.7111398102076026 0.5040208671260086 0.4901460352175064 0.7111398102076026 0.5497067787296889 0.5096714306261669 0.6618591165966555 -0.4609719154458496 -0.4145896076660237 -0.7846147783374444 -0.4985571397014289 -0.4916144428633812 -0.7139720008661804 0.4985571397014289 0.4916144428633812 0.7139720008661804 0.4609719154458496 0.4145896076660237 0.7846147783374444 -0.4573491576022501 -0.4236797699590816 -0.7818741590357953 -0.4568505475577015 -0.2004861491589987 -0.8666561493416083 0.4568505475577015 0.2004861491589987 0.8666561493416083 0.4573491576022501 0.4236797699590816 0.7818741590357953 -0.4541268962482883 -0.1783764702348078 -0.8728978158813705 -0.4286900949630499 -0.03074629865061099 -0.9029282737847225 0.4286900949630499 0.03074629865061099 0.9029282737847225 0.4541268962482883 0.1783764702348078 0.8728978158813705 -0.3063976859348787 -0.7821413631807209 -0.5425636792631395 -0.3523735052985816 -0.7618774628075067 -0.5434847232715808 0.3523735052985816 0.7618774628075067 0.5434847232715808 0.3063976859348787 0.7821413631807209 0.5425636792631395 -0.5413340802838006 -0.6829922424325828 -0.4903865927002937 0.5413340802838006 0.6829922424325828 0.4903865927002937 -0.4272481797681519 -0.03139308917336886 -0.9035892135461523 0.4272481797681519 0.03139308917336886 0.9035892135461523</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1054\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1052\">\r\n                    <float_array count=\"196\" id=\"ID1055\">-2.935981608932602 10.85663512075862 -1.948631865258435 10.75586386611057 -2.610060487118674 7.619753708788435 -3.69679133168683 7.740997122795123 -3.090772258404805 10.83022540427713 -2.719262994468259 7.596384747860257 2.640320935711225 2.025948153228608 3.007344018484941 2.420750867493745 3.012389283490861 1.704548783954941 3.476915045794671 2.013146968314747 3.829487363207134 3.243997859007959 4.151239165752258 3.608874678226097 4.50713919916442 2.672402010274958 4.602543987106065 3.620146029906336 5.304258404919437 3.853486727345086 5.632646490923408 3.387754924869541 6.032602059962001 4.221058734951406 6.317450494552758 3.785131728647392 6.961259725370663 4.748945569060884 7.305900416866997 4.355477009968277 9.993834386692768 6.697166556715506 10.55396224199972 6.155992813056084 -2.958384683729662 6.646322239064626 -3.767581555079931 7.71218000849874 -2.788788460198426 7.572962376067476 -1.787116026856405 5.322273542286981 -2.284182369127702 4.351127936247142 -1.949330144772716 5.368941012682137 -2.004373405150739 4.27027736655339 -2.240688841859411 3.817870637244726 -2.178006254645743 4.308764307005029 -4.406878702077174 3.508993181485741 -4.309776294106773 3.981152767028634 -3.424324889167503 3.37281876876143 -4.33348685434635 3.981344992154811 -4.123486029284101 5.012918456920043 -3.353896149640327 3.834780310909004 -3.168915308745923 4.890452789232343 -4.15522701980411 5.000954905113102 -2.945912001956207 6.015132060051506 -3.932224531327764 6.125626458280218 -3.865167419372976 6.173403206929011 -3.722631041023821 6.8333627787756 -2.880014071898048 6.056684529967771 -3.786233442174673 6.814013616893653 -3.589002991997068 7.76577639285253 -2.803637068433257 6.688943611917154 4.58673566867724 10.24664292795459 4.750224669518837 10.16676035099951 2.352155135876836 7.732019785561647 1.615439914209591 8.079710179245698 1.771051416478688 8.010154330456691 1.077703269353097 7.292616194349058 0.3595836739408692 6.872236538923343 0.7506151581350007 7.485622764389828 0.8917779093368455 7.409005396259467 1.05683395826347 7.015137815428471 1.164565261957301 6.91447012137925 0.6025386688846102 6.509881421450357 4.209437347221686 5.555948874626798 4.253535901802713 5.428742796817378 3.803209898733897 5.402796817356368 -3.281343791480293 5.483076573831793 -3.398703655180526 5.048706996552484 -3.4228971200836 5.548400610587399 -1.772317777748014 5.337234730377968 -1.934455908459623 5.38406533167012 -1.700902869676162 5.834124829345437 -1.940368773200062 4.369112149830636 -2.113718735031875 4.408380312461595 -1.563862617851588 5.377877017135567 -2.396266153697702 3.797994575249178 -2.558103344791782 3.853272065013154 -2.342549230029242 4.289545610607819 -4.371090681150245 3.937463004736838 -3.390320269200981 3.795864862738408 -3.477653760136398 3.336397819512019 -4.162826579523441 4.993184227830971 -3.176364284525369 4.883517101095137 -3.384938017023071 3.81842371163158 -2.952987580260624 6.033504265500596 -3.804473587643869 6.804173406389755 -2.821558507236654 6.680662886123442 1.315460912566759 8.016050776524924 3.496248995700073 10.57238716409893 1.47307452581419 7.94934296837219 0.3940072705090324 7.436216706816778 1.02837778858371 8.169264935007575 0.538204523295595 7.363180085962341 -0.3470360049582089 6.989381151517559 0.1235323511647279 7.532459053158027 -0.2216517634023708 6.902275859416785 0.5338562939897318 6.602089407485308 1.107371202240202 7.009909940338497 0.6495041291754328 6.506652750037433 3.74214220390277 5.54151624829845 4.167566621199896 5.568730472320866 3.762660802913122 5.413427654679166</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID1055\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1051\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1049\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1050\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1051\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1052\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 8 6 9 7 10 8 10 8 9 7 11 9 9 7 12 10 11 9 12 10 13 11 11 9 11 9 13 11 14 12 13 11 15 13 14 12 15 13 16 14 14 12 14 12 16 14 17 15 16 14 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 15 30 15 29 16 31 14 30 15 31 14 32 12 32 12 31 14 33 13 32 12 33 13 34 11 32 12 34 11 35 9 35 9 34 11 36 10 35 9 36 10 37 7 35 9 37 7 38 8 38 8 37 7 39 6 40 22 6 23 2 24 3 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 43 28 48 29 49 30 50 30 51 29 46 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 58 38 63 39 64 40 63 39 58 38 61 38 65 39 66 40 65 39 61 38 67 37 64 41 68 42 63 43 65 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 72 51 77 52 78 52 73 51 79 50 80 53 81 54 77 55 78 55 82 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 92 62 42 63 93 64 94 64 47 63 95 62 42 65 44 66 93 67 94 67 45 66 47 65 43 68 49 69 44 70 45 70 50 69 46 68 48 71 96 72 49 73 50 73 97 72 51 71 53 74 59 75 54 76 55 76 60 75 56 74 58 77 62 78 59 79 60 79 67 78 61 77 63 80 68 81 40 82 41 82 69 81 65 80 76 83 70 84 72 85 73 85 75 84 79 83 81 86 76 87 77 88 78 88 79 87 82 86 84 89 81 90 80 91 83 91 82 90 87 89 88 92 84 93 85 94 86 94 87 93 91 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1056\">\r\n            <mesh>\r\n                <source id=\"ID1057\">\r\n                    <float_array count=\"180\" id=\"ID1061\">-0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.5298591187803385 -0.1752551412025126 0.3267246785579244</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1061\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1058\">\r\n                    <float_array count=\"180\" id=\"ID1062\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1062\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1060\">\r\n                    <float_array count=\"120\" id=\"ID1063\">3.505102824050252 5.140468275978011 4.203545845101182 5.898375335431982 4.414968261826749 4.748609150477415 5.133601729440363 4.148245525455751 5.672811493639108 7.679445612741619 5.827651849983826 4.90867469051484 6.34719681383455 8.494179944032666 6.660275453839438 11.62052286139061 6.973438948161821 9.252082277676829 7.512957717242513 6.567116406747775 7.849390818560094 8.493335205535086 8.283114275883213 7.327495655441081 8.999992836063413 8.033974680727708 9.136256855185536 7.350812800878698 10.17331027926723 8.380616962922931 10.56113355821253 7.823090735984151 11.56802765527242 9.104569669858437 11.95582315006028 8.547050531634294 13.3515820564935 10.10985633078179 13.76983724756887 9.60023445609569 19.2668110713613 14.01201653592069 19.80366406321081 13.52217335660197 6.106319436014469 9.138399969870267 6.226729965305786 10.35104512144388 7.021610669109959 10.23735513419643 7.358775169589009 13.30684774139464 7.455165168721541 11.50684232576267 8.105455617364823 13.15527448152571 10.18738032658465 19.04794340165245 10.94755861822705 18.80162710738278 5.093690163292324 9.523971700826227 4.052727808682412 6.577637240762856 5.473779309113525 9.400813553691391 3.679387584794505 6.65342387069732 3.72758258436077 5.753421162881336 3.51080533455498 5.118677567098216 3.330137726919719 5.810261430695305 3.48671947408091 4.626041138838414 3.113364982652893 5.175522560721941 3.173598406917275 4.247089972016333 3.053159718007235 4.569199984935134 9.633405535680648 7.006008267960344 6.884918623784433 4.800117228047845 9.901832031605407 6.761086678300985 6.675791028246748 5.054928165390897 5.977911575030141 4.273525265817147 5.784013827636212 4.552284834929218 5.280566779106266 3.911545367992075 5.086655139633613 4.190308481461465 4.568128427592768 3.675406400439349 4.499996418031707 4.016987340363854 4.141557137941606 3.66374782772054 3.924695409280047 4.246667602767543 3.756478858621256 3.283558203373887 2.913825924991913 2.45433734525742 2.836405746819554 3.839722806370809 2.566800864720181 2.074122762727876 2.101772922550591 2.949187667715991 2.207484130913374 2.374304575238707 1.752551412025126 2.570234137989006</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1063\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1059\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1057\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1058\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1059\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1060\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 7 7 8 8 6 6 6 6 8 8 5 5 5 5 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 18 18 17 17 17 17 18 18 19 19 18 18 20 20 19 19 21 21 19 19 20 20 22 22 23 23 6 6 7 7 6 6 23 23 8 8 7 7 24 24 7 7 25 25 24 24 24 24 25 25 26 26 26 26 25 25 27 27 25 25 28 28 27 27 29 29 27 27 28 28</p>\r\n                </triangles>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1059\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1060\"/>\r\n                    <p>30 30 31 31 32 32 31 31 30 30 33 33 31 31 33 33 34 34 34 34 33 33 35 35 35 35 33 33 36 36 35 35 36 36 37 37 38 38 39 39 36 36 39 39 38 38 40 40 41 41 42 42 43 43 42 42 41 41 44 44 42 42 44 44 45 45 45 45 44 44 46 46 45 45 46 46 47 47 47 47 46 46 48 48 47 47 48 48 49 49 49 49 48 48 50 50 49 49 50 50 51 51 51 51 50 50 52 52 51 51 52 52 53 53 53 53 52 52 37 37 53 53 37 37 54 54 54 54 37 37 39 39 39 39 37 37 36 36 54 54 39 39 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1064\">\r\n            <mesh>\r\n                <source id=\"ID1065\">\r\n                    <float_array count=\"300\" id=\"ID1069\">-0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1069\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1066\">\r\n                    <float_array count=\"300\" id=\"ID1070\">-0.1164175568789908 0.02947304770899976 0.9927629585702068 -0.1152536654891546 0.0291861515433436 0.9929072268592888 -0.1088387569614722 0.01315362923910896 0.9939723874539582 0.1088387569614722 -0.01315362923910896 -0.9939723874539582 0.1152536654891546 -0.0291861515433436 -0.9929072268592888 0.1164175568789908 -0.02947304770899976 -0.9927629585702068 -0.1108275343076859 0.0157188274115992 0.9937153395737044 0.1108275343076859 -0.0157188274115992 -0.9937153395737044 -0.1169992818606147 0.001779387199382528 0.9931304052466096 0.1169992818606147 -0.001779387199382528 -0.9931304052466096 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211613462438688 0.005798762209368286 0.9926158887168858 0.1211613462438688 -0.005798762209368286 -0.9926158887168858 -0.1269009350449967 -0.04024779597736024 0.9910985155894797 -0.1321721693293524 -0.05182041772276032 0.9898712855527286 -0.1289723073749611 -0.05683794718569368 0.990017975437868 0.1289723073749611 0.05683794718569368 -0.990017975437868 0.1321721693293524 0.05182041772276032 -0.9898712855527286 0.1269009350449967 0.04024779597736024 -0.9910985155894797 -0.1366133769342704 -0.05910629755485246 0.9888595607223364 -0.1318875386354734 -0.06677197077271543 0.9890132360447983 0.1318875386354734 0.06677197077271543 -0.9890132360447983 0.1366133769342704 0.05910629755485246 -0.9888595607223364 -0.5582945311177081 -0.2283387439749839 0.7976018019814056 -0.5451251899441658 -0.2516490044651679 0.7996945078215975 -0.558028898390844 -0.2252503846026686 0.7986651443484001 0.558028898390844 0.2252503846026686 -0.7986651443484001 0.5451251899441658 0.2516490044651679 -0.7996945078215975 0.5582945311177081 0.2283387439749839 -0.7976018019814056 -0.4971178181320478 -0.2277136551304314 0.8372695898948984 -0.5144576180718076 -0.2200898906441139 0.8287905641621072 0.5144576180718076 0.2200898906441139 -0.8287905641621072 0.4971178181320478 0.2277136551304314 -0.8372695898948984 -0.306373651989246 -0.301890195052002 0.9027721171470885 -0.3523674383661242 -0.2850989537794993 0.8913785811500805 0.3523674383661242 0.2850989537794993 -0.8913785811500805 0.306373651989246 0.301890195052002 -0.9027721171470885 -0.4541867966104732 0.3794965782313983 0.8060376547627145 -0.4287165572106656 0.5157236689642438 0.7417757146493089 -0.4569170898122744 0.3580322882283826 0.8142724689091671 0.4569170898122744 -0.3580322882283826 -0.8142724689091671 0.4287165572106656 -0.5157236689642438 -0.7417757146493089 0.4541867966104732 -0.3794965782313983 -0.8060376547627145 -0.4574434326879626 0.128523092512843 0.8799018812240311 -0.4610519398068395 0.1374069943415377 0.8766700785964896 0.4610519398068395 -0.1374069943415377 -0.8766700785964896 0.4574434326879626 -0.128523092512843 -0.8799018812240311 -0.5040157149677988 0.03292087746401979 0.8630668426561742 -0.4985584274964397 0.03343317632154487 0.8662111273201989 0.4985584274964397 -0.03343317632154487 -0.8662111273201989 0.5040157149677988 -0.03292087746401979 -0.8630668426561742 -0.5497125255609511 -0.01221039753376431 0.8352646559225813 -0.5535759670464742 -0.01565705409007048 0.8326514909407067 0.5535759670464742 0.01565705409007048 -0.8326514909407067 0.5497125255609511 0.01221039753376431 -0.8352646559225813 -0.6328213274262273 -0.03345237151289191 0.7735748873862641 -0.6307597955618702 -0.0336555489308815 0.7752479502255447 0.6307597955618702 0.0336555489308815 -0.7752479502255447 0.6328213274262273 0.03345237151289191 -0.7735748873862641 -0.1257023489127471 -0.01606129966648226 0.9919379789739081 -0.1240902978453498 -0.0175498111580307 0.9921157201198707 0.1240902978453498 0.0175498111580307 -0.9921157201198707 0.1257023489127471 0.01606129966648226 -0.9919379789739081 -0.1260595472930294 -0.0408216577978071 0.9911824165061218 0.1260595472930294 0.0408216577978071 -0.9911824165061218 -0.5412148349373932 -0.2537132226334566 0.8016957671739552 0.5412148349373932 0.2537132226334566 -0.8016957671739552 -0.4272661229037248 0.5156003108204946 0.7426977714391153 0.4272661229037248 -0.5156003108204946 -0.7426977714391153</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1070\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1068\">\r\n                    <float_array count=\"196\" id=\"ID1071\">13.80728166277617 -0.6130167098138849 14.0190207913705 -1.378322775502937 9.891501356083198 -1.398559899101458 14.01980057287232 -1.374692521388983 10.16976395576887 -2.147763991652776 9.892292853868527 -1.396358040448894 9.13990034236501 -4.10109427719969 7.922917617543023 -3.31064759363729 9.112972347923334 -3.318913266075672 3.675384037947553 -0.4246823111445474 3.728999951832195 0.007992341182690677 4.269814814293227 -0.5681835556315917 4.335914825773608 -0.02054527340170165 5.554770877852206 -0.8406449125250893 5.66281971002354 -0.06367290266154251 6.090137041837841 -0.981480541855419 6.460281336741163 -0.7780344309739375 7.108731272710429 -0.10688175677692 7.199978199095067 -0.6346024122160491 7.959654123141069 -0.1028398972043406 8.06307501585481 -0.5861914753075564 9.185461095484014 -0.09440081931622046 9.208683394319904 -0.571882978597314 13.12035929778858 -0.7049523672064595 13.15740834483686 -0.007683132925823285 9.534613588802479 -3.503157893577027 8.312030923974277 -3.573561015301703 8.240503349031185 -2.792558387712522 3.858647062123191 -5.16058960318777 2.592754049921546 -4.844748037579367 2.866400881466295 -4.09043929177291 1.934313392358909 -5.019461920039144 1.377297237169688 -4.827743230540988 1.764387869163704 -4.104380020650059 1.773090404879941 -4.458637017925284 1.33150791732068 -4.108270374199182 1.877196734483731 -4.342754535484429 3.033601055682589 -4.996987230377251 2.948315257028529 -5.11514745525924 1.855718646494166 -4.509721762035793 0.7230910765086479 -6.063201128471859 0.643265683683088 -6.176002351858831 0.3417500518942679 -5.735767157626841 8.221633022424319 0.3354410191769293 7.860758236876446 0.1233516168670555 8.098827313590068 0.4251827631843959 8.777424033680292 -1.570199514101096 8.020550205059355 -1.738846683847045 8.692700701586954 -1.456731561340594 8.631777309452774 -3.099303113019177 8.646044617348052 -3.233748210890571 7.775142777459928 -3.195329571672053 9.311692834307262 -3.69237575750201 8.185074552308338 -3.578387594753834 9.330348977001862 -3.552345717479117 12.83018579927031 -3.998070213710835 12.79728635458154 -4.147255281525537 8.92396389964752 -3.788083846687805 8.196485417401426 -3.731313273001689 7.346533038834244 -3.763528691237196 7.317289624280975 -2.980140061228889 5.636561508752498 -4.702312727263123 5.336390733417921 -5.449619584766261 4.251179605034944 -4.373769397749731 3.951018182975293 -5.121079041999575 7.9264042430006 -3.301158048278965 7.918442027052564 -4.084159963801527 7.093366192879808 -3.295908493898871 3.990976447294812 -4.518942246687931 3.648222878151388 -5.254826617090851 2.698973295573131 -4.160805864112061 1.781220271575089 -4.440238296359105 1.327014570610913 -5.138559858782626 1.264659737377111 -4.215067749817517 3.314877001865865 -4.899940379907601 2.092057563700482 -4.450888635141769 2.190316269496892 -4.331888373982719 1.572352064691836 -4.537480266369492 1.05871830345268 -4.301210512261891 1.141746521037105 -4.178758122598253 3.563681401541414 -5.3253843708294 3.013530619634568 -5.103953439875546 3.097661168592327 -4.985281801077196 8.21113041698956 0.3759870027255349 7.987420609990448 0.09004473225368445 7.851589781199859 0.1624999726829313 8.772747345371998 -1.584925376850224 8.090091306673514 -1.870291468803673 8.015398979144715 -1.752248997002818 8.614935622004783 -3.33792690271419 7.786369406217942 -3.422538761892946 7.744361237538513 -3.295161361764044 9.238931812302894 -3.867268169121407 8.111754056698198 -3.877517115416049 8.114139814095902 -3.742617406280015 12.67194791268335 -4.5269585570712 8.773640424439241 -4.255971035984555 8.806680473794703 -4.11759385727599</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"98\" source=\"#ID1071\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1067\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1065\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1066\"/>\r\n                </vertices>\r\n                <triangles count=\"84\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1067\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1068\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 6 6 8 7 2 8 3 8 9 7 7 6 10 9 11 10 12 11 11 10 13 12 12 11 12 11 13 12 14 13 13 12 15 14 14 13 14 13 15 14 16 15 16 15 15 14 17 16 15 14 18 17 17 16 17 16 18 17 19 18 18 17 20 19 19 18 19 18 20 19 21 20 20 19 22 21 21 20 21 20 22 21 23 22 23 22 22 21 24 23 25 24 24 23 22 21 26 21 27 23 28 24 27 23 26 21 29 22 29 22 26 21 30 20 30 20 26 21 31 19 30 20 31 19 32 18 32 18 31 19 33 17 32 18 33 17 34 16 34 16 33 17 35 14 34 16 35 14 36 15 36 15 35 14 37 13 37 13 35 14 38 12 37 13 38 12 39 11 39 11 38 12 40 10 39 11 40 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 56 39 57 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 70 47 75 48 76 48 71 47 77 46 78 49 79 50 75 51 76 51 80 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 87 56 83 57 84 57 88 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 90 62 94 63 44 64 94 63 90 62 93 62 95 63 49 64 95 63 93 62 92 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 61 74 54 75 56 76 57 76 59 75 62 74 54 77 96 78 55 79 58 79 97 78 59 77 65 80 61 81 60 82 63 82 62 81 66 80 68 83 98 84 69 85 72 85 99 84 73 83 74 86 68 87 70 88 71 88 73 87 77 86 79 89 74 90 75 91 76 91 77 90 80 89 82 92 79 93 78 94 81 94 80 93 85 92 87 95 82 96 83 97 84 97 85 96 88 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1072\">\r\n            <mesh>\r\n                <source id=\"ID1073\">\r\n                    <float_array count=\"180\" id=\"ID1077\">-0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803385 -0.3295252840429122 -0.163752049627818</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1077\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1074\">\r\n                    <float_array count=\"180\" id=\"ID1078\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1078\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1076\">\r\n                    <float_array count=\"60\" id=\"ID1079\">9.186441801135759 -0.6488213400628682 13.06654213649594 -1.122084458825146 13.09524992904242 -0.79949167490136 9.21274739048158 -0.9514208473190707 8.115944512114693 -0.9685740599925033 8.059207761561993 -0.6539708482222155 7.281870875630058 -1.006895651470734 7.225110846459248 -0.6922914059295819 6.679996197963138 -1.144255152347283 6.474741113180418 -0.8385239100247427 6.348834577254241 -1.615424885060101 6.124135088072079 -1.029998510971301 6.237853014667429 -2.141924398637036 8.159474776988487 -3.454130399997072 11.21097795849668 -5.348585849823603 11.42530494601942 -5.07263695607616 7.915026008602089 -3.68870217088264 7.278421134616336 -2.939943688429858 7.000331008498487 -3.170403709446711 6.627065876926979 -2.5283351085099 6.348994523888187 -2.758800446062714 5.845294038790562 -2.297413730313628 5.526358198109146 -0.9067158682851475 5.700755221866416 -1.981511659262586 5.122854141660617 -1.809345535610677 4.220446497283755 -0.6391021215311316 3.861528503676829 -1.431814179263339 3.653175485382575 -0.4978760590883997 3.553954881384697 -0.9130679473510686 3.295252840429122 -1.288182790405501</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID1079\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1075\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1073\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1074\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1075\"/>\r\n                    <p>0 1 2 1 3 2 3 4 2 2 4 5 4 6 5 5 6 7 7 6 8 6 9 8 9 10 8 8 10 11 10 12 11 11 12 13 12 14 13 13 14 15 14 16 15 15 16 17 18 17 16 10 9 19 9 20 19 19 20 21 20 22 21 21 22 23 22 24 23 23 24 25 24 26 25 25 26 27 27 26 28 29 28 26</p>\r\n                </triangles>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1075\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1076\"/>\r\n                    <p>30 0 31 1 32 2 31 1 30 0 33 3 33 3 30 0 34 4 34 4 30 0 35 5 34 4 35 5 36 6 36 6 35 5 37 7 36 6 37 7 38 8 38 8 37 7 39 9 38 8 39 9 40 10 40 10 39 9 41 11 40 10 41 11 42 12 43 13 44 14 45 15 44 14 43 13 46 16 46 16 43 13 47 17 46 16 47 17 48 18 48 18 47 17 49 19 48 18 49 19 50 20 50 20 49 19 42 12 50 20 42 12 51 21 51 21 42 12 41 11 51 21 41 11 52 22 51 21 52 22 53 23 53 23 52 22 54 24 54 24 52 22 55 25 54 24 55 25 56 26 56 26 55 25 57 27 56 26 57 27 58 28 56 26 58 28 59 29</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1080\">\r\n            <mesh>\r\n                <source id=\"ID1081\">\r\n                    <float_array count=\"174\" id=\"ID1085\">-0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.5014927709964905 -1.221254125201766</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1085\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1082\">\r\n                    <float_array count=\"174\" id=\"ID1086\">-0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1086\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1084\">\r\n                    <float_array count=\"116\" id=\"ID1087\">-10.02986884390828 -19.21441079518665 -8.078369726216202 -14.94382291552136 -8.616810169633229 -19.58292117139953 -7.710539025580329 -12.82943654886498 -6.957166350571083 -4.013129460871145 -6.563991993162109 -5.617669476879784 -6.191243496727681 -6.283137334198752 -5.841838948681586 -13.61146945795768 -5.12072743462904 -6.367588736361021 -5.093403218011745 -11.83399197753575 -4.569559219049879 -10.58978432392038 -4.532998647519656 -5.776067396796974 -3.761988289242532 -8.403663709214172 -20.67270284231222 -12.96009691898834 -21.52269079340287 -11.99864627882594 -16.05001083580809 -10.25921156711687 -15.03078282578663 -8.21146679775252 -13.57695803480326 -9.381946502322247 -13.07634609667806 -7.142739684942715 -11.82235097061978 -9.37266146756806 -11.70834131037578 -6.394627456981616 -9.781350822898569 -10.19751021323684 -9.272628914606271 -5.165311420703098 -8.196902947598092 -11.50317111573932 -5.946686595406146 -5.057682875228573 -5.942143510265987 -3.537919751528921 -5.054129935863941 -5.15141281351586 -3.014275322117851 -6.330159141483323 -2.722917134621747 -5.429709253919597 -2.971071755132994 -1.768959875764461 -1.507137661058926 -3.165079570741662 -1.361458567310874 -2.714854626959799 -2.266499323759828 -2.888033698398487 -1.880994144621266 -4.201831854607086 -2.52706496793197 -2.57570640675793 -2.973343297703073 -2.528841437614287 -3.478583175285542 -2.006564730435573 -3.281995996581054 -2.808834738439892 -4.636314457303135 -2.582655710351549 -3.855269512790164 -6.414718274432491 -4.098451473799046 -5.751585557869662 -4.890675411449284 -5.098755106618421 -5.854170655187891 -3.197313728490808 -5.911175485309891 -4.68633073378403 -6.53817304833903 -3.571369842471357 -6.788479017401629 -4.690973251161124 -7.515391412893316 -4.10573339887626 -8.025005417904044 -5.129605783558433 -10.76134539670144 -5.999323139412972 -10.33635142115611 -6.480048459494169 -2.284779609524939 -5.294892161960191 -2.56036371731452 -3.18379436818051 -2.546701609005873 -5.916995988767874 -2.920919474340793 -6.805734728978842 -3.095621748363841 -3.141568667099376 -4.308405084816615 -9.791460585699765 -4.039184863108101 -7.471911457760681 -5.014934421954141 -9.607205397593324</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1087\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1083\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1081\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1082\"/>\r\n                </vertices>\r\n                <triangles count=\"29\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1083\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1084\"/>\r\n                    <p>0 0 1 1 2 2 1 1 3 3 2 2 4 4 5 5 3 3 3 3 5 5 2 2 5 5 6 6 2 2 2 2 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 9 9 8 8 10 10 8 8 11 11 10 10 12 12 10 10 11 11 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 18 18 17 17 17 17 18 18 19 19 18 18 20 20 19 19 19 19 20 20 21 21 20 20 22 22 21 21 21 21 22 22 23 23 23 23 22 22 3 3 4 4 3 3 22 22 5 5 4 4 24 24 4 4 25 25 24 24 24 24 25 25 26 26 26 26 25 25 11 11 12 12 11 11 27 27 11 11 25 25 27 27 28 28 27 27 25 25</p>\r\n                </triangles>\r\n                <triangles count=\"29\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1083\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1084\"/>\r\n                    <p>29 29 30 30 31 31 30 30 29 29 32 32 30 30 32 32 33 33 32 32 29 29 34 34 34 34 29 29 35 35 35 35 29 29 36 36 35 35 36 36 37 37 38 38 39 39 36 36 39 39 38 38 40 40 40 40 38 38 41 41 41 41 38 38 42 42 41 41 42 42 43 43 43 43 42 42 44 44 43 43 44 44 45 45 45 45 44 44 46 46 45 45 46 46 47 47 47 47 46 46 48 48 47 47 48 48 49 49 32 32 50 50 33 33 50 50 32 32 51 51 50 50 51 51 52 52 52 52 51 51 53 53 53 53 51 51 54 54 53 53 54 54 55 55 55 55 54 54 37 37 55 55 37 37 39 39 39 39 37 37 36 36 55 55 39 39 56 56 55 55 56 56 57 57</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1088\">\r\n            <mesh>\r\n                <source id=\"ID1089\">\r\n                    <float_array count=\"174\" id=\"ID1093\">-0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1093\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1090\">\r\n                    <float_array count=\"174\" id=\"ID1094\">-0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1094\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1092\">\r\n                    <float_array count=\"116\" id=\"ID1095\">3.55839236819476 -8.488419045241628 4.245346264840824 -5.927683489544283 4.338197914026393 -10.68076768650679 4.812696874597001 -6.53714695665132 4.846150501537627 -11.92903008491025 5.571861419967594 -13.71230731538016 5.676042622384449 -6.509790425305303 6.099572673222684 -5.983272599215604 6.809176289792611 -4.123239947803949 7.424943045986368 -12.95197178042472 7.765917730597559 -15.06914637484883 8.270848227836648 -19.70532053592662 9.688516068491094 -19.34793117157087 2.837121282969626 -6.409136584333087 2.557177127561046 -5.506438392768292 4.71279593362039 -5.407517741830074 5.548610961513447 -5.312678419743834 5.800264086731488 -3.640068430440598 7.928136657948257 -11.62962404360425 9.109835905503532 -5.293563109915906 9.529151400085357 -10.33648417410537 11.52980744991694 -6.541998000371912 11.5805232985438 -9.527731536536132 12.88835961543644 -7.300830137085 13.33494263193682 -9.550817708016966 14.82902591557052 -8.384892502619829 15.79670305040769 -10.44749344574282 20.41029086447709 -13.17764101175096 21.27248131697755 -12.2229423723072 7.414512957785258 -4.192446251309915 10.20514543223855 -6.588820505875478 10.63624065848878 -6.111471186153602 7.898351525203847 -5.223746722871408 6.667471315968408 -4.775408854008483 6.444179807718218 -3.6504150685425 5.790261649271899 -4.763865768268066 5.764903724958471 -3.270999000185956 4.764575700042679 -5.168242087052686 4.554917952751766 -2.646781554957953 3.964068328974129 -5.814812021802124 3.404588144896306 -2.061619973901975 3.712471522993184 -6.475985890212362 2.900132043365744 -1.820034215220299 3.049786336611342 -2.991636299607802 2.774305480756723 -2.656339209871917 1.278588563780523 -2.753219196384146 2.356397966810195 -2.703758870915037 2.122673132420412 -2.963841744772142 1.77919618409738 -4.244209522620814 1.418560641484813 -3.204568292166544 3.88295886529878 -7.534573187424415 4.135424113918324 -9.85266026796331 4.844258034245547 -9.673965585785433 2.785930709983797 -6.856153657690079 2.838021311192224 -3.254895212652651 2.406348437298501 -3.26857347832566 2.423075250768814 -5.964515042455125 2.169098957013197 -5.340383843253396</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1095\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1091\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1089\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1090\"/>\r\n                </vertices>\r\n                <triangles count=\"29\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1091\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1092\"/>\r\n                    <p>0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 4 4 3 3 5 5 3 3 6 6 5 5 6 6 7 7 5 5 7 7 8 8 5 5 8 8 9 9 5 5 9 9 10 10 5 5 5 5 10 10 11 11 12 12 11 11 10 10 13 13 14 14 0 0 0 0 14 14 1 1 1 1 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 7 7 8 8 7 7 17 17 9 9 8 8 18 18 8 8 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 22 22 23 23 24 24 23 23 25 25 24 24 24 24 25 25 26 26 26 26 25 25 27 27 28 28 27 27 25 25</p>\r\n                </triangles>\r\n                <triangles count=\"29\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1091\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1092\"/>\r\n                    <p>29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 33 33 29 29 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 39 39 38 38 40 40 39 39 40 40 41 41 42 42 43 43 40 40 43 43 42 42 44 44 44 44 42 42 45 45 44 44 45 45 46 46 46 46 45 45 47 47 47 47 45 45 48 48 48 48 45 45 49 49 50 50 51 51 52 52 51 51 50 50 53 53 53 53 50 50 41 41 53 53 41 41 40 40 53 53 40 40 43 43 53 53 43 43 54 54 53 53 54 54 55 55 53 53 55 55 56 56 56 56 55 55 57 57 57 57 55 55 47 47 57 57 47 47 48 48</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1096\">\r\n            <mesh>\r\n                <source id=\"ID1097\">\r\n                    <float_array count=\"174\" id=\"ID1101\">-0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4161909408446167 -0.00511566405237196 0.3989672790630737</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1101\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1098\">\r\n                    <float_array count=\"174\" id=\"ID1102\">-0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1102\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1100\">\r\n                    <float_array count=\"116\" id=\"ID1103\">-0.6603042760459281 6.628102364821207 0.1023145158150442 6.277101703712805 -1.949292046070537 5.631935926043967 0.8227126529265449 6.595773100139321 2.068972894939293 5.631935926042748 -7.994833638526947 19.7454669910059 -6.582432022018011 20.11553924734553 -5.675109960996605 13.65502883901048 -4.922422127911656 11.87869973036458 -4.914377863521055 15.78554439443209 -4.395536890136512 10.63526002083815 -3.600572082937799 13.91843838724053 -3.379425211242822 8.503668162239411 -2.400906623229417 6.490504505914989 -2.201940144480685 13.08490005885077 -0.6525134482231259 7.207434068793488 0.04362987063896788 7.548865554982541 0.06075091877033985 12.78483712999241 0.8120119978442776 7.222580289126928 2.323357503165463 13.08490005884943 2.520531152860973 6.490504505913559 3.499059127413852 8.503668162237371 3.72203637432034 13.91843838723838 4.515123873609423 10.63526002083553 5.035936020298975 15.78554439442911 5.041999724845416 11.87869973036162 5.794715717549207 13.65502883900708 6.702103108885646 20.11553924734162 8.114458168158471 19.74546699100114 3.351051554442823 10.05776962367081 2.897357858774603 6.827514419503538 4.057229084079236 9.872733495500569 2.517968010149487 7.892772197214557 2.520999862422708 5.939349865180811 2.257561936804712 5.317630010417767 1.86101818716017 6.959219193619191 1.749529563706926 4.251834081118686 1.161678751582732 6.542450029424717 1.260265576430486 3.245252252956779 1.034486447469647 2.815967963021374 0.03037545938516992 6.392418564996206 0.4060059989221388 3.611290144563464 0.4113563264632725 3.297886550069661 0.02181493531948394 3.774432777491271 -1.100970072240343 6.542450029425386 -0.3262567241115629 3.603717034396744 -0.3301521380229641 3.314051182410604 -0.9746460230352685 2.815967963021984 -1.200453311614709 3.245252252957494 -1.8002860414689 6.959219193620267 -1.689712605621411 4.251834081119705 -2.197768445068256 5.317630010419073 -2.457188931760527 7.892772197216043 -2.461211063955828 5.939349865182291 -3.291216011009006 10.05776962367277 -2.837554980498303 6.82751441950524 -3.997416819263473 9.872733495502947 0.05115725790752209 3.138550851856402</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1103\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1099\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1097\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1098\"/>\r\n                </vertices>\r\n                <triangles count=\"29\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1099\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1100\"/>\r\n                    <p>0 0 1 1 2 2 3 3 4 4 1 1 2 2 1 1 4 4 5 5 6 6 7 7 7 7 6 6 8 8 6 6 9 9 8 8 8 8 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 12 12 11 11 13 13 11 11 14 14 13 13 13 13 14 14 2 2 2 2 14 14 0 0 0 0 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 18 18 3 3 18 18 4 4 18 18 17 17 4 4 17 17 19 19 4 4 4 4 19 19 20 20 20 20 19 19 21 21 19 19 22 22 21 21 21 21 22 22 23 23 22 22 24 24 23 23 23 23 24 24 25 25 25 25 24 24 26 26 24 24 27 27 26 26 28 28 26 26 27 27</p>\r\n                </triangles>\r\n                <triangles count=\"29\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1099\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1100\"/>\r\n                    <p>29 29 30 30 31 31 30 30 29 29 32 32 30 30 32 32 33 33 33 33 32 32 34 34 34 34 32 32 35 35 34 34 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 39 39 37 37 40 40 39 39 40 40 41 41 39 39 41 41 42 42 41 41 40 40 43 43 43 43 40 40 44 44 43 43 44 44 45 45 45 45 44 44 46 46 46 46 44 44 47 47 47 47 44 44 48 48 48 48 44 44 49 49 48 48 49 49 50 50 50 50 49 49 51 51 51 51 49 49 52 52 51 51 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 55 55 54 54 56 56 39 39 57 57 47 47 57 57 39 39 42 42 47 47 57 57 46 46</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1104\">\r\n            <mesh>\r\n                <source id=\"ID1105\">\r\n                    <float_array count=\"174\" id=\"ID1109\">-0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086244 1.316109687941657 0.1039835031210425</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1109\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1106\">\r\n                    <float_array count=\"174\" id=\"ID1110\">-0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1110\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1108\">\r\n                    <float_array count=\"116\" id=\"ID1111\">-26.32221346343603 1.636013390160535 -20.57025466836452 1.480585937066035 -26.33609653088566 0.4649613457242628 -18.26023629726925 0.2127637073613848 -17.89873287521094 1.85170038214918 -16.44238348055336 2.621577179361666 -15.88012976177167 0.1958135568310805 -15.34672951463004 4.207573708536487 -14.97250845787214 5.988482126861165 -14.53491699533404 8.746494248780024 -14.21409408474354 0.1839639580231964 -12.6437260187638 7.60952939642481 -11.32126622418493 0.2476387067093099 -11.31992357356801 6.813667586479245 -9.093473939508872 2.602729468533396 -8.931546370346142 1.906224412462378 -8.583146557493567 0.3217766936036152 -8.054646834917762 1.646710999030179 -7.410646117683638 2.119594723555238 -7.40422572564607 0.3789239175328026 -22.00748405742919 11.51994145614131 -21.10379608906077 12.45059281253822 -17.33840302157449 8.883806786916869 -15.52040002022607 7.299823452712065 -9.087203731092407 5.365323263029861 -8.3423442719905 2.953155647545233 -7.616745992036167 2.801032421564928 -6.984665430113307 3.983443023641084 -6.09915843792158 3.36857647914322 -3.492332715056654 1.991721511820542 -3.702112862823035 0.1894619587664013 -3.04957921896079 1.68428823957161 -3.705323058841819 1.059797361777619 -3.808372996018083 1.400516210782464 -4.543601865546203 2.682661631514931 -4.17117213599525 1.476577823772616 -4.546736969754436 1.301364734266698 -5.659961786784004 3.406833793239623 -7.267458497667017 4.373247124390012 -7.760200010113037 3.649911726356033 -7.486254228936068 2.994241063430582 -10.55189804453039 6.225296406269112 -8.669201510787243 4.441903393458435 -11.00374202871459 5.759970728070657 -4.291573278746784 0.1608883468018076 -4.027323417458881 0.8233554995150897 -4.465773185173071 0.953112206231189 -5.660633112092466 0.123819353354655 -6.321863009381899 3.804764698212405 -7.107047042371768 0.09198197901159821 -7.940064880885833 0.09790677841554024 -7.673364757315019 2.103786854268244 -8.22119174027668 1.310788589680833 -9.130118148634626 0.1063818536806924 -8.949366437605471 0.9258501910745902 -10.28512733418226 0.7402929685330173 -13.16804826544283 0.2324806728621314 -13.16110673171801 0.8180066950802676</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1111\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1107\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1105\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1106\"/>\r\n                </vertices>\r\n                <triangles count=\"29\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1107\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1108\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 3 3 5 5 6 6 5 5 7 7 6 6 7 7 8 8 6 6 8 8 9 9 6 6 6 6 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 11 11 13 13 12 12 13 13 14 14 12 12 14 14 15 15 12 12 12 12 15 15 16 16 15 15 17 17 16 16 17 17 18 18 16 16 19 19 16 16 18 18 20 20 21 21 22 22 22 22 21 21 23 23 21 21 9 9 23 23 8 8 23 23 9 9 13 13 24 24 14 14 14 14 24 24 25 25 25 25 24 24 26 26 24 24 27 27 26 26 26 26 27 27 18 18 18 18 27 27 19 19 28 28 19 19 27 27</p>\r\n                </triangles>\r\n                <triangles count=\"29\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1107\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1108\"/>\r\n                    <p>29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 33 33 29 29 34 34 33 33 34 34 35 35 35 35 34 34 36 36 36 36 34 34 37 37 38 38 39 39 40 40 39 39 38 38 41 41 39 39 41 41 42 42 42 42 41 41 43 43 32 32 44 44 30 30 44 44 32 32 45 45 44 44 45 45 46 46 44 44 46 46 47 47 47 47 46 46 36 36 47 47 36 36 37 37 47 47 37 37 48 48 47 47 48 48 49 49 49 49 48 48 38 38 49 49 38 38 50 50 50 50 38 38 40 40 50 50 40 40 51 51 50 50 51 51 52 52 50 50 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 53 53 55 55 56 56 56 56 55 55 57 57</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1112\">\r\n            <mesh>\r\n                <source id=\"ID1113\">\r\n                    <float_array count=\"174\" id=\"ID1117\">-0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086244 -0.7820770884023743 0.4497980564798922</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1117\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1114\">\r\n                    <float_array count=\"174\" id=\"ID1118\">-0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1118\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1116\">\r\n                    <float_array count=\"116\" id=\"ID1119\">15.07707401407439 5.769850515057511 14.68308415411048 8.542387413325084 15.64156248019065 7.076826964854104 17.47963465401062 8.646417845385683 21.29872623692821 12.19463380149279 22.19043848268239 11.25691735948019 7.606327939590292 1.892705793038809 8.27845148027766 1.398775674567985 7.446428614955478 0.2313362901843486 8.624532442400788 0.1649128185498039 9.207521402500165 1.59536744141203 9.425026296851021 2.312795134179659 11.36156327050402 0.06924101484297966 6.179339266233333 3.231097654269962 7.072628075169551 3.838965865215587 7.924071315350075 2.605400439849607 8.738063013666524 2.754604887566969 9.192662885861024 5.204233701788687 11.44368572952684 6.634956071308992 12.77760761527535 7.420370888018093 14.25340591987107 -0.01718592348860902 15.42855411374404 3.986084458633338 15.91953471137129 -0.01844121671260754 16.50403527979898 2.391555627588657 17.95056710501454 1.610244438259214 18.29973586318679 -0.02022262547900209 20.61719888652537 1.218148136177216 26.37837451250605 0.1684497917821321 26.37941679385733 1.339544146984344 10.30859944326268 0.609074068088608 13.18918725625302 0.08422489589106605 13.18970839692866 0.6697720734921721 9.149867931593397 -0.01011131273950105 8.975283552507268 0.8051222191296068 7.959767355685644 -0.009220608356303768 8.252017639899492 1.195777813794329 7.714277056872022 1.993042229316669 7.126702959935534 -0.00859296174430451 7.538537007037196 2.884925257528756 7.34154207705524 4.271193706662542 6.388803807637676 3.710185444009047 5.680781635252012 0.03462050742148983 5.721842864763418 3.317478035654496 4.596331442930512 2.602116850894344 4.712513148425511 1.156397567089829 4.369031506833262 1.377302443783485 3.536314037584776 1.919482932607794 3.962035657675037 1.302700219924803 3.803163969795146 0.9463528965194042 3.723214307477739 0.1156681450921743 3.089669633116666 1.615548827134981 4.603760701250082 0.797683720706015 4.312266221200394 0.08245640927490194 4.13922574013883 0.6993878372839926 10.64936311846411 6.097316900746395 8.739817327005309 4.323208922692841 11.09521924134119 5.628458679740094 7.820781240095327 3.538413482427052</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1119\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1115\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1113\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1114\"/>\r\n                </vertices>\r\n                <triangles count=\"29\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1115\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1116\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 6 7 7 8 8 8 8 7 7 9 9 7 7 10 10 9 9 11 11 12 12 10 10 9 9 10 10 12 12 13 13 14 14 8 8 8 8 14 14 6 6 6 6 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 11 11 11 11 17 17 12 12 17 17 18 18 12 12 18 18 19 19 12 12 12 12 19 19 20 20 19 19 1 1 20 20 1 1 0 0 20 20 0 0 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 23 23 24 24 22 22 22 22 24 24 25 25 24 24 26 26 25 25 25 25 26 26 27 27 28 28 27 27 26 26</p>\r\n                </triangles>\r\n                <triangles count=\"29\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1115\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1116\"/>\r\n                    <p>29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 32 32 33 33 34 34 34 34 33 33 35 35 34 34 35 35 36 36 34 34 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 37 37 40 40 41 41 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 44 44 43 43 45 45 45 45 43 43 46 46 45 45 46 46 47 47 47 47 46 46 48 48 48 48 46 46 49 49 49 49 46 46 50 50 41 41 51 51 52 52 51 51 41 41 44 44 52 52 51 51 53 53 52 52 53 53 49 49 49 49 53 53 48 48 54 54 55 55 56 56 55 55 54 54 39 39 55 55 39 39 57 57 57 57 39 39 38 38</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1120\">\r\n            <mesh>\r\n                <source id=\"ID1121\">\r\n                    <float_array count=\"180\" id=\"ID1125\">-0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.529859118780335 1.153719775386548 -0.6297892700755456</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1125\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1122\">\r\n                    <float_array count=\"180\" id=\"ID1126\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1126\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1124\">\r\n                    <float_array count=\"120\" id=\"ID1127\">-23.07439550773097 -9.908684515855253 -16.5018368904839 -6.72319749841732 -22.65270559410508 -10.46391163633777 -16.01893622609624 -7.196171309012338 -14.72672962393063 -5.708741585074908 -14.17645312960758 -6.174030638247034 -13.4136083098111 -4.895822555464352 -12.86330478225409 -5.361104519921764 -12.62543034616549 -4.129144983791254 -11.84430204918045 -4.446292896444675 -12.23498784722559 -1.874505443854724 -11.54718953748084 -3.816798493870874 -11.03641160156596 -1.637361946361363 -10.38703202271997 -3.481579675358059 -8.417877199601666 -1.122717643494433 -7.854985196129549 -2.746417347632534 -7.2798246100092 -0.8491966345196895 -7.159292431165309 -1.69744618722385 -6.718791141366869 -2.468068923971035 -26.12148100826749 -1.949461217357851 -26.17068750133516 -1.303845305457521 -18.40995067147561 -1.668797885313605 -18.34966205435873 -1.064030839351062 -16.21682400372031 -1.72034805212735 -16.09538020415581 -1.092060798588364 -14.54974604533614 -1.810114365788693 -14.42832176977398 -1.181805033857142 -13.34961163411208 -2.09427775069872 -12.93127233964243 -1.486071496671276 -12.76666998217039 -3.058117583065982 -6.465636169821214 -0.7430357483356379 -6.312715173082745 -2.064572491895627 -6.117493923612793 -0.937252721927362 -6.383334991085194 -1.529058791532991 -6.674805817056042 -1.04713887534936 -7.214160884886991 -0.5909025169285711 -7.274873022668071 -0.9050571828943463 -8.047690102077906 -0.5460303992941817 -8.108412001860152 -0.860174026063675 -9.174831027179364 -0.5320154196755311 -9.204975335737807 -0.8343989426568027 -13.08534375066758 -0.6519226527287603 -13.06074050413374 -0.9747306086789257 -3.579646215582655 -0.8487230936119248 -3.927492598064775 -1.373208673816267 -3.359395570683434 -1.234034461985518 -3.6399123050046 -0.4245983172598448 -4.208938599800833 -0.5613588217472164 -5.193516011359987 -1.74078983767903 -5.518205800782978 -0.8186809731806815 -5.77359476874042 -1.908399246935437 -5.922151024590223 -2.223146448222337 -6.431652391127047 -2.680552259960882 -6.70680415490555 -2.447911277732176 -7.088226564803792 -3.087015319123517 -7.363364811965314 -2.854370792537454 -8.009468113048119 -3.598085654506169 -8.250918445241952 -3.36159874920866 -11.32635279705254 -5.231955818168884 -11.53719775386548 -4.954342257927626</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1127\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1123\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1121\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1122\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1123\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1124\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 16 16 17 17 15 15 18 18 15 15 17 17 19 19 20 20 21 21 20 20 22 22 21 21 21 21 22 22 23 23 22 22 24 24 23 23 23 23 24 24 25 25 24 24 26 26 25 25 25 25 26 26 27 27 26 26 28 28 27 27 27 27 28 28 29 29 29 29 28 28 8 8 10 10 8 8 28 28</p>\r\n                </triangles>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1123\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1124\"/>\r\n                    <p>30 30 31 31 32 32 31 31 30 30 33 33 33 33 30 30 34 34 34 34 30 30 35 35 34 34 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 38 38 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 43 43 44 44 45 45 44 44 43 43 46 46 44 44 46 46 47 47 44 44 47 47 48 48 48 48 47 47 49 49 48 48 49 49 50 50 50 50 49 49 32 32 50 50 32 32 51 51 51 51 32 32 31 31 51 51 31 31 52 52 52 52 31 31 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1128\">\r\n            <mesh>\r\n                <source id=\"ID1129\">\r\n                    <float_array count=\"288\" id=\"ID1133\">-0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.270754829964972 0.3435938670600639</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID1133\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1130\">\r\n                    <float_array count=\"288\" id=\"ID1134\">1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"96\" source=\"#ID1134\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1132\">\r\n                    <float_array count=\"96\" id=\"ID1135\">13.16380470834466 0.02353305587178231 12.70754829964972 2.702938420872503 13.24002340945525 2.815181424239013 11.86263358545151 5.414979342100926 11.38526271924082 5.198144421396179 9.676888492394975 7.645755905570645 9.287065505064954 7.339104016431012 6.831636119784472 9.35548594921938 6.556009772566611 8.979915213203102 3.520825277789115 10.42765758663682 3.378140490156039 10.00875944513644 -0.02990082172260377 10.7891985748789 -0.02990082172267482 10.35552991492187 -3.435919522059974 9.9965833962471 -3.578613696232667 10.41548035629503 -6.607781419161219 8.956387769230418 -6.883468591155371 9.331957914520494 -9.329352241179443 7.305826045436834 -9.719207518205637 7.612483251112464 -11.415120926074 5.157382539894559 -11.89256237906191 5.374217460599315 -12.72297526512372 2.657477016911196 -13.25547891000948 2.769721792456383 -13.16378218064985 -0.02353490189121056 -13.23998135775804 -2.815179652060345 -13.71506791570486 -0.02353490189120707 13.71509494893863 0.02353305587177882 13.25550293955077 -2.769719724914605 12.72300830574298 -2.657477903000535 11.89255787352293 -5.374217460599311 11.41515847223228 -5.15738785643058 9.719179734048568 -7.612483251112466 9.329413065955807 -7.305833134151492 6.883464085616424 -9.331950235079592 6.607832481936404 -8.956385406325536 3.578613696232724 -10.41547563048526 3.435947306217084 -9.996572763175115 0.02993367461107122 -10.35552755201697 0.02993367461099795 -10.78919857487892 -3.378135984617037 -10.00876771530356 -3.520815891249638 -10.42765167937458 -6.556009772566556 -8.979918166834205 -6.831627108706453 -9.35548004195716 -9.287060999525936 -7.339102244252365 -9.676892997933901 -7.645755905570643 -11.3852296786218 -5.19814619357484 -11.86264785299155 -5.414977569922251 -12.70747921471866 -2.702930446068514</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID1135\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1131\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1129\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1130\"/>\r\n                </vertices>\r\n                <triangles count=\"96\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1131\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1132\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 12 12 13 13 11 11 11 11 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 23 23 24 24 22 22 25 25 22 22 24 24 26 26 27 27 2 2 2 2 27 27 0 0 0 0 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 33 33 35 35 34 34 34 34 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 47 47 46 46 24 24 47 47 23 23 47 47 24 24 48 24 49 47 50 23 49 47 48 24 51 46 49 47 51 46 52 45 52 45 51 46 53 44 52 45 53 44 54 43 54 43 53 44 55 42 54 43 55 42 56 41 56 41 55 42 57 40 56 41 57 40 58 39 58 39 57 40 59 38 58 39 59 38 60 37 60 37 59 38 61 35 60 37 61 35 62 36 62 36 61 35 63 34 63 34 61 35 64 33 63 34 64 33 65 32 65 32 64 33 66 31 65 32 66 31 67 30 67 30 66 31 68 29 67 30 68 29 69 28 69 28 68 29 70 27 69 28 70 27 71 0 71 0 70 27 72 2 72 2 70 27 73 26 48 24 74 22 75 25 74 22 48 24 50 23 74 22 50 23 76 21 74 22 76 21 77 20 77 20 76 21 78 19 77 20 78 19 79 18 79 18 78 19 80 17 79 18 80 17 81 16 81 16 80 17 82 15 81 16 82 15 83 14 83 14 82 15 84 13 83 14 84 13 85 11 85 11 84 13 86 12 85 11 86 12 87 10 85 11 87 10 88 9 88 9 87 10 89 8 88 9 89 8 90 7 90 7 89 8 91 6 90 7 91 6 92 5 92 5 91 6 93 4 92 5 93 4 94 3 94 3 93 4 95 1 94 3 95 1 72 2 72 2 95 1 71 0</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1136\">\r\n            <mesh>\r\n                <source id=\"ID1137\">\r\n                    <float_array count=\"6\" id=\"ID1139\">-0.4478128033659967 0.2778640982455765 -0.362934906886154 -0.4478128033659949 0.307457980125035 -0.3945048806169198</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1139\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1138\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1137\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1138\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1140\">\r\n            <mesh>\r\n                <source id=\"ID1141\">\r\n                    <float_array count=\"6\" id=\"ID1143\">-0.4478128033659896 -0.2592153908032857 -0.3790163769896233 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1143\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1142\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1141\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1142\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1144\">\r\n            <mesh>\r\n                <source id=\"ID1145\">\r\n                    <float_array count=\"6\" id=\"ID1147\">-0.4478128033659967 -0.4253519781642065 0.1347814339741829 -0.4478128033659914 -0.4139088478041265 0.0933464324579063</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1147\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1146\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1145\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1146\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1148\">\r\n            <mesh>\r\n                <source id=\"ID1149\">\r\n                    <float_array count=\"6\" id=\"ID1151\">-0.4478128033659932 -0.003894005930508371 0.4410080127493087 -0.4478128033659967 0.03004302779671875 0.423250557236884</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1151\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1150\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1149\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1150\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1152\">\r\n            <mesh>\r\n                <source id=\"ID1153\">\r\n                    <float_array count=\"6\" id=\"ID1155\">-0.4478128033659976 0.4132203263553758 0.1481986756257214 -0.4478128033659941 0.443604104310682 0.1249160682732518</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1155\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1154\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1153\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1154\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1156\">\r\n            <mesh>\r\n                <source id=\"ID1157\">\r\n                    <float_array count=\"6\" id=\"ID1159\">-0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.005569503239401641 -0.6325761712128029</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1159\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1158\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1157\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1158\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1160\">\r\n            <mesh>\r\n                <source id=\"ID1161\">\r\n                    <float_array count=\"6\" id=\"ID1163\">-0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803314 -0.6020747235977453 -0.1948699676140677</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1163\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1162\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1161\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1162\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1164\">\r\n            <mesh>\r\n                <source id=\"ID1165\">\r\n                    <float_array count=\"6\" id=\"ID1167\">-0.5298591187803314 0.005242382336229534 -0.5675233220841833 -0.529859118780335 -0.05171889424246934 -0.426670674331888</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1167\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1166\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1165\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1166\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1168\">\r\n            <mesh>\r\n                <source id=\"ID1169\">\r\n                    <float_array count=\"6\" id=\"ID1171\">-0.5298591187803421 0.004574999374554745 -0.4344675846323871 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1171\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1170\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1169\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1170\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1172\">\r\n            <mesh>\r\n                <source id=\"ID1173\">\r\n                    <float_array count=\"6\" id=\"ID1175\">-0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.365877924949132 0.5166904045363489</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1175\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1174\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1173\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1174\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1176\">\r\n            <mesh>\r\n                <source id=\"ID1177\">\r\n                    <float_array count=\"6\" id=\"ID1179\">-0.5298591187803314 -0.3342368387947641 0.459116412202264 -0.5298591187803323 -0.2836405746819554 0.488100356742052</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1179\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1178\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1177\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1178\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1180\">\r\n            <mesh>\r\n                <source id=\"ID1181\">\r\n                    <float_array count=\"6\" id=\"ID1183\">-0.5298591187803341 0.328054863850014 0.4637080820710361 -0.5298591187803368 0.2863054132589566 0.3205489738215878</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1183\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1182\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1181\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1182\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1184\">\r\n            <mesh>\r\n                <source id=\"ID1185\">\r\n                    <float_array count=\"6\" id=\"ID1187\">-0.5298591187803421 0.2506140352906494 0.3552348656737639 -0.5298591187803332 0.2520881913262922 0.2718711494341899</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1187\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1186\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1185\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1186\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1188\">\r\n            <mesh>\r\n                <source id=\"ID1189\">\r\n                    <float_array count=\"6\" id=\"ID1191\">-0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.3723203951393453 0.5119000403984736</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1191\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1190\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1189\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1190\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1192\">\r\n            <mesh>\r\n                <source id=\"ID1193\">\r\n                    <float_array count=\"6\" id=\"ID1195\">-0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2562910144078499 0.3510828613173088</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1195\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1194\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1193\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1194\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1196\">\r\n            <mesh>\r\n                <source id=\"ID1197\">\r\n                    <float_array count=\"6\" id=\"ID1199\">-0.5298591187803385 -0.540087405646254 -0.1750670537230961 -0.529859118780335 -0.4220446497283755 -0.0812417951098896</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1199\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1198\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1197\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1198\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1200\">\r\n            <mesh>\r\n                <source id=\"ID1201\">\r\n                    <float_array count=\"6\" id=\"ID1203\">-0.529859118780335 -0.4132513394820253 -0.1345502998244115 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1203\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1202\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1201\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1202\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1204\">\r\n            <mesh>\r\n                <source id=\"ID1205\">\r\n                    <float_array count=\"6\" id=\"ID1207\">-0.5298591187803394 0.5432375283177788 -0.1650388315610469 -0.5298591187803332 0.5193516011359987 -0.221286843772758</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1207\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1206\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1205\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1206\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1208\">\r\n            <mesh>\r\n                <source id=\"ID1209\">\r\n                    <float_array count=\"6\" id=\"ID1211\">-0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.6054177208838552 -0.184220112484069</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1211\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1210\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1209\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1210\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1212\">\r\n            <mesh>\r\n                <source id=\"ID1213\">\r\n                    <float_array count=\"6\" id=\"ID1215\">-0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.4160034728768081 -0.1257918324128582</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1215\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1214\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1213\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1214\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1216\">\r\n            <mesh>\r\n                <source id=\"ID1217\">\r\n                    <float_array count=\"6\" id=\"ID1219\">0.4736113844101926 1.42012168249506 1.065790132799686 0.8846653631423393 1.420121682495051 1.065790132799686</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2\" source=\"#ID1219\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1218\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1217\"/>\r\n                </vertices>\r\n                <lines count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1218\"/>\r\n                    <p>1 0</p>\r\n                </lines>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1222\">\r\n            <mesh>\r\n                <source id=\"ID1228\">\r\n                    <float_array count=\"1008\" id=\"ID1232\">-0.3969897627830505 0.2017256319522858 0.5573908686637878 -0.3969897627830505 0.216172605752945 0.555826723575592 -0.3344528675079346 0.2122509032487869 0.5473707914352417 -0.3344528675079346 0.2122509032487869 0.5473707914352417 -0.3969897627830505 0.216172605752945 0.555826723575592 -0.3969897627830505 0.2017256319522858 0.5573908686637878 -0.4577676355838776 0.1979141235351563 0.5491738319396973 -0.4577676355838776 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.2218439280986786 0.535342276096344 -0.3362122476100922 0.2218439280986786 0.535342276096344 -0.4535223543643951 0.1872304528951645 0.5396941304206848 -0.4535223543643951 0.1872304528951645 0.5396941304206848 -0.4595263302326202 0.2122509032487869 0.5473707914352417 -0.4595263302326202 0.2122509032487869 0.5473707914352417 -0.3969897627830505 0.190775528550148 0.5473343729972839 -0.3969897627830505 0.190775528550148 0.5473343729972839 -0.2774728834629059 0.2008335143327713 0.5227594971656799 -0.2774728834629059 0.2008335143327713 0.5227594971656799 -0.2808338701725006 0.2107474654912949 0.5114217400550842 -0.2808338701725006 0.2107474654912949 0.5114217400550842 -0.3969897627830505 0.2256553471088409 0.5435583591461182 -0.3969897627830505 0.2256553471088409 0.5435583591461182 -0.5050317049026489 0.1769081056118012 0.5174409151077271 -0.5050317049026489 0.1769081056118012 0.5174409151077271 -0.513146698474884 0.1868172287940979 0.5252532958984375 -0.513146698474884 0.1868172287940979 0.5252532958984375 -0.3404567539691925 0.1872304528951645 0.5396941304206848 -0.3404567539691925 0.1872304528951645 0.5396941304206848 -0.2808338701725006 0.1868172287940979 0.5252532958984375 -0.2808338701725006 0.1868172287940979 0.5252532958984375 -0.2889475822448731 0.2107493579387665 0.4978778660297394 -0.2889475822448731 0.2107493579387665 0.4978778660297394 -0.3404567539691925 0.2210730165243149 0.5201323628425598 -0.3404567539691925 0.2210730165243149 0.5201323628425598 -0.4969178736209869 0.1769112795591354 0.5039008259773254 -0.4969178736209869 0.1769112795591354 0.5039008259773254 -0.449276864528656 0.1864599287509918 0.5244837999343872 -0.449276864528656 0.1864599287509918 0.5244837999343872 -0.5165071487426758 0.2008335143327713 0.5227594971656799 -0.5165071487426758 0.2008335143327713 0.5227594971656799 -0.4577676355838776 0.2218439280986786 0.535342276096344 -0.4577676355838776 0.2218439280986786 0.535342276096344 -0.3969897627830505 0.1897388398647308 0.531552791595459 -0.3969897627830505 0.1897388398647308 0.531552791595459 -0.2311128377914429 0.1829331666231155 0.4841702878475189 -0.2311128377914429 0.1829331666231155 0.4841702878475189 -0.2357764393091202 0.1933503299951553 0.4739169776439667 -0.2357764393091202 0.1933503299951553 0.4739169776439667 -0.2470376193523407 0.1945692449808121 0.4629979431629181 -0.2470376193523407 0.1945692449808121 0.4629979431629181 -0.3969897627830505 0.2246185094118118 0.5277756452560425 -0.3969897627830505 0.2246185094118118 0.5277756452560425 -0.5356808304786682 0.1619468927383423 0.4716387093067169 -0.5356808304786682 0.1619468927383423 0.4716387093067169 -0.546941876411438 0.1607280522584915 0.4825592339038849 -0.546941876411438 0.1607280522584915 0.4825592339038849 -0.5582029819488525 0.1694204658269882 0.4877499043941498 -0.5582029819488525 0.1694204658269882 0.4877499043941498 -0.3447033762931824 0.1864599287509918 0.5244837999343872 -0.3447033762931824 0.1864599287509918 0.5244837999343872 -0.2889475822448731 0.1769081056118012 0.5174409151077271 -0.2889475822448731 0.1769081056118012 0.5174409151077271 -0.2357764393091202 0.1694204658269882 0.4877499043941498 -0.2357764393091202 0.1694204658269882 0.4877499043941498 -0.2582992911338806 0.1858771443367004 0.4578079283237457 -0.2582992911338806 0.1858771443367004 0.4578079283237457 -0.2970618903636932 0.2008417099714279 0.490065723657608 -0.2970618903636932 0.2008417099714279 0.490065723657608 -0.3447033762931824 0.2103893458843231 0.5106498599052429 -0.3447033762931824 0.2103893458843231 0.5106498599052429 -0.5310156345367432 0.1723641604185104 0.4613868892192841 -0.5310156345367432 0.1723641604185104 0.4613868892192841 -0.4935570359230042 0.1868250817060471 0.4925611317157745 -0.4935570359230042 0.1868250817060471 0.4925611317157745 -0.4475182890892029 0.1960520446300507 0.5124538540840149 -0.4475182890892029 0.1960520446300507 0.5124538540840149 -0.5628681778907776 0.1829331666231155 0.4841702878475189 -0.5628681778907776 0.1829331666231155 0.4841702878475189 -0.513146698474884 0.2107474654912949 0.5114217400550842 -0.513146698474884 0.2107474654912949 0.5114217400550842 -0.4535223543643951 0.2210730165243149 0.5201323628425598 -0.4535223543643951 0.2210730165243149 0.5201323628425598 -0.3969897627830505 0.1992211937904358 0.5192845463752747 -0.3969897627830505 0.1992211937904358 0.5192845463752747 -0.1994902491569519 0.160144031047821 0.4350440502166748 -0.1994902491569519 0.160144031047821 0.4350440502166748 -0.2050454169511795 0.1712013632059097 0.4261728525161743 -0.2050454169511795 0.1712013632059097 0.4261728525161743 -0.2184522151947022 0.1739687025547028 0.4185889363288879 -0.2184522151947022 0.1739687025547028 0.4185889363288879 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.3969897627830505 0.2136686891317368 0.5177204012870789 -0.3969897627830505 0.2136686891317368 0.5177204012870789 -0.5565645694732666 0.1539511382579804 0.4216945171356201 -0.5565645694732666 0.1539511382579804 0.4216945171356201 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5755271911621094 0.1401268541812897 0.4381494522094727 -0.5755271911621094 0.1401268541812897 0.4381494522094727 -0.5889348983764648 0.1472729295492172 0.4400050044059753 -0.5889348983764648 0.1472729295492172 0.4400050044059753 -0.3464618027210236 0.1960520446300507 0.5124538540840149 -0.3464618027210236 0.1960520446300507 0.5124538540840149 -0.2970618903636932 0.1769112795591354 0.5039008259773254 -0.2970618903636932 0.1769112795591354 0.5039008259773254 -0.2470376193523407 0.1607280522584915 0.4825592339038849 -0.2470376193523407 0.1607280522584915 0.4825592339038849 -0.2050454169511795 0.1472729295492172 0.4400050044059753 -0.2050454169511795 0.1472729295492172 0.4400050044059753 -0.2374149113893509 0.1539511382579804 0.4216945171356201 -0.2374149113893509 0.1539511382579804 0.4216945171356201 -0.2629641890525818 0.1723641604185104 0.4613868892192841 -0.2629641890525818 0.1723641604185104 0.4613868892192841 -0.3004229962825775 0.1868250817060471 0.4925611317157745 -0.3004229962825775 0.1868250817060471 0.4925611317157745 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5356808304786682 0.1858771443367004 0.4578079283237457 -0.5356808304786682 0.1858771443367004 0.4578079283237457 -0.4969178736209869 0.2008417099714279 0.490065723657608 -0.4969178736209869 0.2008417099714279 0.490065723657608 -0.449276864528656 0.2103893458843231 0.5106498599052429 -0.449276864528656 0.2103893458843231 0.5106498599052429 -0.5944892168045044 0.160144031047821 0.4350440502166748 -0.5944892168045044 0.160144031047821 0.4350440502166748 -0.5582029819488525 0.1933503299951553 0.4739169776439667 -0.5582029819488525 0.1933503299951553 0.4739169776439667 -0.5050317049026489 0.2107493579387665 0.4978778660297394 -0.5050317049026489 0.2107493579387665 0.4978778660297394 -0.1854178756475449 0.1344887018203735 0.379740834236145 -0.1854178756475449 0.1344887018203735 0.379740834236145 -0.1913672238588333 0.1462691277265549 0.3724253475666046 -0.1913672238588333 0.1462691277265549 0.3724253475666046 -0.205731064081192 0.1507763862609863 0.3685949742794037 -0.205731064081192 0.1507763862609863 0.3685949742794037 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2260439544916153 0.1332219839096069 0.3770101070404053 -0.2260439544916153 0.1332219839096069 0.3770101070404053 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5679354667663574 0.1332219839096069 0.3770102262496948 -0.5679354667663574 0.1332219839096069 0.3770102262496948 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5882483720779419 0.1169347614049912 0.3881564140319824 -0.5882483720779419 0.1169347614049912 0.3881564140319824 -0.602612316608429 0.1223383918404579 0.3862566649913788 -0.602612316608429 0.1223383918404579 0.3862566649913788 -0.2582992911338806 0.1619468927383423 0.4716387093067169 -0.2582992911338806 0.1619468927383423 0.4716387093067169 -0.2184522151947022 0.1401268541812897 0.4381494522094727 -0.2184522151947022 0.1401268541812897 0.4381494522094727 -0.1913672238588333 0.1223383918404579 0.3862566649913788 -0.1913672238588333 0.1223383918404579 0.3862566649913788 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.5882483720779419 0.1507763862609863 0.3685950040817261 -0.5882483720779419 0.1507763862609863 0.3685950040817261 -0.5755271911621094 0.1739687025547028 0.4185889363288879 -0.5755271911621094 0.1739687025547028 0.4185889363288879 -0.546941876411438 0.1945692449808121 0.4629979431629181 -0.546941876411438 0.1945692449808121 0.4629979431629181 -0.6085617542266846 0.1344887018203735 0.379740834236145 -0.6085617542266846 0.1344887018203735 0.379740834236145 -0.5889348983764648 0.1712013632059097 0.4261728525161743 -0.5889348983764648 0.1712013632059097 0.4261728525161743 -0.1901445388793945 0.108248382806778 0.3231741487979889 -0.1901445388793945 0.108248382806778 0.3231741487979889 -0.1959603577852249 0.1207654625177383 0.3174494504928589 -0.1959603577852249 0.1207654625177383 0.3174494504928589 -0.2100040912628174 0.1270548850297928 0.3174593448638916 -0.2100040912628174 0.1270548850297928 0.3174593448638916 -0.2240462750196457 0.1234327480196953 0.323198676109314 -0.2240462750196457 0.1234327480196953 0.323198676109314 -0.2298634797334671 0.1120201274752617 0.3313052952289581 -0.2298634797334671 0.1120201274752617 0.3313052952289581 -0.2240462750196457 0.09950244426727295 0.3370305299758911 -0.2240462750196457 0.09950244426727295 0.3370305299758911 -0.5839760303497315 0.1270548850297928 0.3174594044685364 -0.5839760303497315 0.1270548850297928 0.3174594044685364 -0.5699338316917419 0.1234327480196953 0.323198676109314 -0.5699338316917419 0.1234327480196953 0.323198676109314 -0.5641167759895325 0.1120201274752617 0.3313052952289581 -0.5641167759895325 0.1120201274752617 0.3313052952289581 -0.5699338316917419 0.09950244426727295 0.3370305597782135 -0.5699338316917419 0.09950244426727295 0.3370305597782135 -0.5839760303497315 0.09321287274360657 0.3370204567909241 -0.5839760303497315 0.09321287274360657 0.3370204567909241 -0.5980189442634583 0.09683530032634735 0.3312812447547913 -0.5980189442634583 0.09683530032634735 0.3312812447547913 -0.205731064081192 0.1169347614049912 0.3881563544273377 -0.205731064081192 0.1169347614049912 0.3881563544273377 -0.1959603577852249 0.09683530032634735 0.3312811255455017 -0.1959603577852249 0.09683530032634735 0.3312811255455017 -0.2100040912628174 0.09321287274360657 0.3370203971862793 -0.2100040912628174 0.09321287274360657 0.3370203971862793 -0.5980189442634583 0.1207654625177383 0.3174495100975037 -0.5980189442634583 0.1207654625177383 0.3174495100975037 -0.602612316608429 0.1462691277265549 0.372425377368927 -0.602612316608429 0.1462691277265549 0.372425377368927 -0.6038353443145752 0.108248382806778 0.3231741487979889 -0.6038353443145752 0.108248382806778 0.3231741487979889 -0.2132495641708374 0.08375199884176254 0.2703697681427002 -0.2132495641708374 0.08375199884176254 0.2703697681427002 -0.2184157222509384 0.09695863723754883 0.2661298215389252 -0.2184157222509384 0.09695863723754883 0.2661298215389252 -0.2308897227048874 0.1049110144376755 0.2697240114212036 -0.2308897227048874 0.1049110144376755 0.2697240114212036 -0.2433643490076065 0.1029518842697144 0.2790485918521881 -0.2433643490076065 0.1029518842697144 0.2790485918521881 -0.2485314607620239 0.09222786128520966 0.2886408567428589 -0.2485314607620239 0.09222786128520966 0.2886408567428589 -0.2433643490076065 0.0790218710899353 0.2928808033466339 -0.2433643490076065 0.0790218710899353 0.2928808033466339 -0.2308897227048874 0.07106951624155045 0.2892857789993286 -0.2308897227048874 0.07106951624155045 0.2892857789993286 -0.5755632519721985 0.09695863723754883 0.2661299407482147 -0.5755632519721985 0.09695863723754883 0.2661299407482147 -0.5630897283554077 0.1049110144376755 0.2697240114212036 -0.5630897283554077 0.1049110144376755 0.2697240114212036 -0.550615668296814 0.1029518842697144 0.2790486514568329 -0.550615668296814 0.1029518842697144 0.2790486514568329 -0.5454484224319458 0.09222786128520966 0.2886409163475037 -0.5454484224319458 0.09222786128520966 0.2886409163475037 -0.550615668296814 0.0790218710899353 0.2928808629512787 -0.550615668296814 0.0790218710899353 0.2928808629512787 -0.5630897283554077 0.07106951624155045 0.2892858386039734 -0.5630897283554077 0.07106951624155045 0.2892858386039734 -0.5755632519721985 0.07302837073802948 0.2799610495567322 -0.5755632519721985 0.07302837073802948 0.2799610495567322 -0.2184157222509384 0.07302837073802948 0.2799609899520874 -0.2184157222509384 0.07302837073802948 0.2799609899520874 -0.5807303786277771 0.08375222980976105 0.2703697681427002 -0.5807303786277771 0.08375222980976105 0.2703697681427002 -0.2526813745498657 0.0631781592965126 0.2260204702615738 -0.2526813745498657 0.0631781592965126 0.2260204702615738 -0.2567388117313385 0.07696282863616943 0.2230269759893417 -0.2567388117313385 0.07696282863616943 0.2230269759893417 -0.2665359377861023 0.08631247282028198 0.2296321243047714 -0.2665359377861023 0.08631247282028198 0.2296321243047714 -0.2763324975967407 0.08574993163347244 0.2419681996107101 -0.2763324975967407 0.08574993163347244 0.2419681996107101 -0.2803907990455627 0.07560457289218903 0.2528066337108612 -0.2803907990455627 0.07560457289218903 0.2528066337108612 -0.2763324975967407 0.06182022392749786 0.255800187587738 -0.2763324975967407 0.06182022392749786 0.255800187587738 -0.2665359377861023 0.05247067660093308 0.2491944879293442 -0.2665359377861023 0.05247067660093308 0.2491944879293442 -0.2567388117313385 0.05303321778774262 0.2368583828210831 -0.2567388117313385 0.05303321778774262 0.2368583828210831 -0.5412995219230652 0.0631781592965126 0.2260205298662186 -0.5412995219230652 0.0631781592965126 0.2260205298662186 -0.5372412204742432 0.07696282863616943 0.2230269759893417 -0.5372412204742432 0.07696282863616943 0.2230269759893417 -0.5274438858032227 0.08631247282028198 0.229632243514061 -0.5274438858032227 0.08631247282028198 0.229632243514061 -0.5176466703414917 0.08574993163347244 0.2419681996107101 -0.5176466703414917 0.08574993163347244 0.2419681996107101 -0.5135881304740906 0.07560480386018753 0.252806693315506 -0.5135881304740906 0.07560480386018753 0.252806693315506 -0.5176466703414917 0.06182022392749786 0.2558001279830933 -0.5176466703414917 0.06182022392749786 0.2558001279830933 -0.5274438858032227 0.05247067660093308 0.249194547533989 -0.5274438858032227 0.05247067660093308 0.249194547533989 -0.5372412204742432 0.05303321778774262 0.2368584722280502 -0.5372412204742432 0.05303321778774262 0.2368584722280502 -0.3049343228340149 0.04835595190525055 0.1940678507089615 -0.3049343228340149 0.04835595190525055 0.1940678507089615 -0.3075232207775116 0.06255754083395004 0.1919737458229065 -0.3075232207775116 0.06255754083395004 0.1919737458229065 -0.3137733042240143 0.07291240990161896 0.2007463872432709 -0.3137733042240143 0.07291240990161896 0.2007463872432709 -0.3200229704380035 0.07335587590932846 0.2152515798807144 -0.3200229704380035 0.07335587590932846 0.2152515798807144 -0.3226109147071838 0.06362755596637726 0.2269887775182724 -0.3226109147071838 0.06362755596637726 0.2269887775182724 -0.3200229704380035 0.04942680522799492 0.2290833741426468 -0.3200229704380035 0.04942680522799492 0.2290833741426468 -0.3137733042240143 0.03907079249620438 0.2203076630830765 -0.3137733042240143 0.03907079249620438 0.2203076630830765 -0.3075232207775116 0.03862743079662323 0.2058039754629135 -0.3075232207775116 0.03862743079662323 0.2058039754629135 -0.4864564538002014 0.03862784057855606 0.2058040350675583 -0.4864564538002014 0.03862784057855606 0.2058040350675583 -0.4890454411506653 0.04835615679621697 0.1940679997205734 -0.4890454411506653 0.04835615679621697 0.1940679997205734 -0.4864564538002014 0.06255754083395004 0.1919737756252289 -0.4864564538002014 0.06255754083395004 0.1919737756252289 -0.4802065193653107 0.07291240990161896 0.2007464468479157 -0.4802065193653107 0.07291240990161896 0.2007464468479157 -0.4739566445350647 0.07335587590932846 0.2152516394853592 -0.4739566445350647 0.07335587590932846 0.2152516394853592 -0.4713678061962128 0.06362777203321457 0.2269886881113052 -0.4713678061962128 0.06362777203321457 0.2269886881113052 -0.4739566445350647 0.04942680522799492 0.2290834337472916 -0.4739566445350647 0.04942680522799492 0.2290834337472916 -0.4802065193653107 0.03907079249620438 0.2203076630830765 -0.4802065193653107 0.03907079249620438 0.2203076630830765 -0.365368127822876 0.04060065001249313 0.1773498803377152 -0.365368127822876 0.04060065001249313 0.1773498803377152 -0.3662575781345367 0.05502000823616982 0.1757262051105499 -0.3662575781345367 0.05502000823616982 0.1757262051105499 -0.3684046268463135 0.06590185314416885 0.185634508728981 -0.3684046268463135 0.06590185314416885 0.185634508728981 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3714402318000794 0.05736114829778671 0.2134792059659958 -0.3714402318000794 0.05736114829778671 0.2134792059659958 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3684046268463135 0.03205951303243637 0.2051951140165329 -0.3684046268463135 0.03205951303243637 0.2051951140165329 -0.3662575781345367 0.03109009563922882 0.1895565390586853 -0.3662575781345367 0.03109009563922882 0.1895565390586853 -0.4255755841732025 0.03205951303243637 0.2051951140165329 -0.4255755841732025 0.03205951303243637 0.2051951140165329 -0.4277224540710449 0.03109009563922882 0.1895565390586853 -0.4277224540710449 0.03109009563922882 0.1895565390586853 -0.4286115169525147 0.04060065001249313 0.1773498803377152 -0.4286115169525147 0.04060065001249313 0.1773498803377152 -0.4277224540710449 0.05502000823616982 0.1757262051105499 -0.4277224540710449 0.05502000823616982 0.1757262051105499 -0.4255755841732025 0.06590185314416885 0.185634508728981 -0.4255755841732025 0.06590185314416885 0.185634508728981 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4225397408008575 0.05736114829778671 0.2134792059659958 -0.4225397408008575 0.05736114829778671 0.2134792059659958 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.4233378767967224 0.04165389388799667 0.2158837467432022</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"336\" source=\"#ID1232\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1229\">\r\n                    <float_array count=\"1008\" id=\"ID1233\">1.100715383596115e-005 -0.2879526679489293 0.9576446422864466 -5.00212074441366e-007 0.4861331523678775 0.8738847510791226 0.2915133493835332 0.4649853603216409 0.8359477147631591 -0.2915133493835332 -0.4649853603216409 -0.8359477147631591 5.00212074441366e-007 -0.4861331523678775 -0.8738847510791226 -1.100715383596115e-005 0.2879526679489293 -0.9576446422864466 -0.2165908462952944 -0.3036360506308182 0.9278434965329054 0.2165908462952944 0.3036360506308182 -0.9278434965329054 0.2165672156771486 -0.3036348934200792 0.9278493911145411 -0.2165672156771486 0.3036348934200792 -0.9278493911145411 0.2012191114973859 0.935966109203319 0.2889261351816466 -0.2012191114973859 -0.935966109203319 -0.2889261351816466 -0.01338570612357837 -0.8872174650094622 0.4611572320302012 0.01338570612357837 0.8872174650094622 -0.4611572320302012 -0.2915081904689192 0.4649882673554808 0.8359478967682641 0.2915081904689192 -0.4649882673554808 -0.8359478967682641 9.286556119569346e-006 -0.886195944691421 0.4633106382614584 -9.286556119569346e-006 0.886195944691421 -0.4633106382614584 0.5586933627804324 0.4030607494604687 0.7248474036853946 -0.5586933627804324 -0.4030607494604687 -0.7248474036853946 0.3872031794044685 0.8971003565986427 0.2128018986044513 -0.3872031794044685 -0.8971003565986427 -0.2128018986044513 -4.215760203857162e-006 0.9491698563782013 0.3147643304525022 4.215760203857162e-006 -0.9491698563782013 -0.3147643304525022 -0.02489908720408136 -0.8902586988205591 0.4547741028584725 0.02489908720408136 0.8902586988205591 -0.4547741028584725 -0.4127100464423818 -0.3494503553924499 0.8411628062875923 0.4127100464423818 0.3494503553924499 -0.8411628062875923 0.01337168713847178 -0.8872144590180767 0.4611634218932942 -0.01337168713847178 0.8872144590180767 -0.4611634218932942 0.4127213451782525 -0.3494520919706329 0.8411565411096807 -0.4127213451782525 0.3494520919706329 -0.8411565411096807 0.01371745529342166 0.9156097785848437 -0.4018340015231245 -0.01371745529342166 -0.9156097785848437 0.4018340015231245 0.006620618646293013 0.9162693618435276 -0.4005079574185703 -0.006620618646293013 -0.9162693618435276 0.4005079574185703 0.363455227687781 -0.9155786834854502 -0.1720929162210725 -0.363455227687781 0.9155786834854502 0.1720929162210725 0.1887453159836821 -0.9514474668815823 -0.2431520583068137 -0.1887453159836821 0.9514474668815823 0.2431520583068137 -0.5586849146318411 0.4030614471027265 0.7248535272882849 0.5586849146318411 -0.4030614471027265 -0.7248535272882849 -0.2012099022502427 0.9359642253928665 0.2889386509644896 0.2012099022502427 -0.9359642253928665 -0.2889386509644896 -5.812806568932802e-007 -0.9636132872443618 -0.2673002668269849 5.812806568932802e-007 0.9636132872443618 0.2673002668269849 0.7781572839386454 0.3051784083299842 0.5489420557239244 -0.7781572839386454 -0.3051784083299842 -0.5489420557239244 0.5429990370358453 0.8347584459073265 0.09127093055584411 -0.5429990370358453 -0.8347584459073265 -0.09127093055584411 0.0216401567875206 0.9177460426900622 -0.3965777411062578 -0.0216401567875206 -0.9177460426900622 0.3965777411062578 -2.059688964850534e-006 0.9164211759940478 -0.4002152273283016 2.059688964850534e-006 -0.9164211759940478 0.4002152273283016 0.5222649138591139 -0.8510833480847447 -0.05381908922114634 -0.5222649138591139 0.8510833480847447 0.05381908922114634 -0.03319586646515618 -0.8907586118954389 0.453262760199576 0.03319586646515618 0.8907586118954389 -0.453262760199576 -0.5698524653192305 -0.4205778588907226 0.7059620615730641 0.5698524653192305 0.4205778588907226 -0.7059620615730641 -0.1887331923837483 -0.9514500233658778 -0.2431514654072841 0.1887331923837483 0.9514500233658778 0.2431514654072841 0.02490777566955089 -0.8902587869583333 0.4547734545404692 -0.02490777566955089 0.8902587869583333 -0.4547734545404692 0.5698689534768392 -0.4205476238758168 0.7059667640304439 -0.5698689534768392 0.4205476238758168 -0.7059667640304439 -0.5544686309274808 0.4664188183525423 -0.6892155128869512 0.5544686309274808 -0.4664188183525423 0.6892155128869512 -0.3952795905222943 0.3983177432788594 -0.827705878138946 0.3952795905222943 -0.3983177432788594 0.827705878138946 -0.207927917002811 0.3537115165398592 -0.911950735729702 0.207927917002811 -0.3537115165398592 0.911950735729702 0.7794515084571977 -0.3099762539564684 -0.5443988133224705 -0.7794515084571977 0.3099762539564684 0.5443988133224705 0.5575192502637445 -0.4076386593834047 -0.7231894696146043 -0.5575192502637445 0.4076386593834047 0.7231894696146043 0.2907385042740951 -0.4698676619789975 -0.8334839544699421 -0.2907385042740951 0.4698676619789975 0.8334839544699421 -0.7781654779003928 0.3051658714372215 0.5489374098328645 0.7781654779003928 -0.3051658714372215 -0.5489374098328645 -0.3872146420584227 0.8970965729133288 0.2127969920904148 0.3872146420584227 -0.8970965729133288 -0.2127969920904148 -0.00660748602147272 0.916263273565502 -0.4005221025655215 0.00660748602147272 -0.916263273565502 0.4005221025655215 8.541388568576863e-006 -0.4910278000528664 -0.8711439028669642 -8.541388568576863e-006 0.4910278000528664 0.8711439028669642 0.9293599606018972 0.179336702210366 0.3226893411167321 -0.9293599606018972 -0.179336702210366 -0.3226893411167321 0.6544140873167479 0.7531369058381351 -0.06728300963800632 -0.6544140873167479 -0.7531369058381351 0.06728300963800632 0.08491776977295618 0.9176703790828461 -0.3881623986564549 -0.08491776977295618 -0.9176703790828461 0.3881623986564549 -0.6089327437528342 0.5904872166633667 -0.5296468262368759 0.6089327437528342 -0.5904872166633667 0.5296468262368759 2.974362482897488e-006 0.3383138927599808 -0.9410333203222624 -2.974362482897488e-006 -0.3383138927599808 0.9410333203222624 0.930509737814023 -0.1808882794953763 -0.3184824299305707 -0.930509737814023 0.1808882794953763 0.3184824299305707 0.5871771771243384 -0.8010775837051904 0.116179462683157 -0.5871771771243384 0.8010775837051904 -0.116179462683157 -0.09343537945941918 -0.8868205441743211 0.4525694999617577 0.09343537945941918 0.8868205441743211 -0.4525694999617577 -0.6732692549969293 -0.5099273050840194 0.5354275430024397 0.6732692549969293 0.5099273050840194 -0.5354275430024397 -0.290749099116707 -0.4698652454584595 -0.833481620956986 0.290749099116707 0.4698652454584595 0.833481620956986 -0.3634643232123655 -0.9155783093509572 -0.1720756961276642 0.3634643232123655 0.9155783093509572 0.1720756961276642 0.03305816323114872 -0.894752363067841 0.4453373627131425 -0.03305816323114872 0.894752363067841 -0.4453373627131425 0.673259410583817 -0.5099398597757813 0.5354279647834881 -0.673259410583817 0.5099398597757813 -0.5354279647834881 -0.9303034464617545 -0.1771334335109996 -0.3211841282410853 0.9303034464617545 0.1771334335109996 0.3211841282410853 -0.7795733875872093 -0.3052459198546588 -0.5468914533779863 0.7795733875872093 0.3052459198546588 0.5468914533779863 -0.557525300036653 -0.4076416721374287 -0.7231831074880283 0.557525300036653 0.4076416721374287 0.7231831074880283 0.6083105377611066 0.5964914058014206 -0.5235993625414743 -0.6083105377611066 -0.5964914058014206 0.5235993625414743 0.5460609384515709 0.4719230165382369 -0.6921749186143923 -0.5460609384515709 -0.4719230165382369 0.6921749186143923 0.3952953118344753 0.3983059077837897 -0.8277040656334943 -0.3952953118344753 -0.3983059077837897 0.8277040656334943 0.2079168365125522 0.3537163887637413 -0.9119513722861271 -0.2079168365125522 -0.3537163887637413 0.9119513722861271 -0.9293620016168114 0.1793367018887206 0.3226834630198296 0.9293620016168114 -0.1793367018887206 -0.3226834630198296 -0.5429698145779854 0.8347806377526564 0.09124180670293802 0.5429698145779854 -0.8347806377526564 -0.09124180670293802 -0.0137147172176815 0.915604316800109 -0.4018465398490383 0.0137147172176815 -0.915604316800109 0.4018465398490383 0.9971363129691673 0.03671384203629936 0.06611555914600223 -0.9971363129691673 -0.03671384203629936 -0.06611555914600223 0.7098166461020702 0.6583800844002149 -0.250391679936803 -0.7098166461020702 -0.6583800844002149 0.250391679936803 0.09262093803667669 0.9028998927923957 -0.419753672327815 -0.09262093803667669 -0.9028998927923957 0.419753672327815 -0.6320131605804139 0.6764909543610331 -0.3780467610241551 0.6320131605804139 -0.6764909543610331 0.3780467610241551 -0.9968574878858364 -0.04248596266388211 -0.06685874529530655 0.9968574878858364 0.04248596266388211 0.06685874529530655 0.6377644486983164 0.6763436168742892 -0.3685319794670977 -0.6377644486983164 -0.6763436168742892 0.3685319794670977 0.9967452301006394 -0.03912097567410024 -0.07048755587995632 -0.9967452301006394 0.03912097567410024 0.07048755587995632 0.6293091094626061 -0.7298048971572618 0.2671232989326467 -0.6293091094626061 0.7298048971572618 -0.2671232989326467 -0.0878470981311025 -0.9032670839852487 0.4199898359945516 0.0878470981311025 0.9032670839852487 -0.4199898359945516 -0.7139595591759941 -0.6085786298290158 0.3462568398987349 0.7139595591759941 0.6085786298290158 -0.3462568398987349 -0.5124184657129083 -0.8570967194989182 -0.05303328596854585 0.5124184657129083 0.8570967194989182 0.05303328596854585 0.08429227443152722 -0.8856210560847648 0.4566948187690176 -0.08429227443152722 0.8856210560847648 -0.4566948187690176 0.7139661310468548 -0.6085710049990598 0.34625669032153 -0.7139661310468548 0.6085710049990598 -0.34625669032153 -0.6384249373570429 -0.7202899272963328 0.2712858639813348 0.6384249373570429 0.7202899272963328 -0.2712858639813348 -0.5817646013022528 -0.8027559971512503 0.1308921606106814 0.5817646013022528 0.8027559971512503 -0.1308921606106814 -0.0975350277309561 0.9057875738450613 -0.4123539613407385 0.0975350277309561 -0.9057875738450613 0.4123539613407385 -0.07861868255715707 0.9197678292123763 -0.3845077932876396 0.07861868255715707 -0.9197678292123763 0.3845077932876396 -0.02133435285472708 0.9141485480559647 -0.4048175854325521 0.02133435285472708 -0.9141485480559647 0.4048175854325521 -0.9971359471075431 0.03672338310102496 0.06611577814378743 0.9971359471075431 -0.03672338310102496 -0.06611577814378743 -0.6544282329626999 0.753125001996044 -0.06727866875746516 0.6544282329626999 -0.753125001996044 0.06727866875746516 0.9743393554807079 -0.1093163319607265 -0.1967555842361046 -0.9743393554807079 0.1093163319607265 0.1967555842361046 0.701768580865077 0.5586859060907931 -0.4420304483246886 -0.701768580865077 -0.5586859060907931 0.4420304483246886 0.03706289722461273 0.9026851440191707 -0.4287025453813015 -0.03706289722461273 -0.9026851440191707 0.4287025453813015 -0.6503264580190576 0.7378384316224732 -0.1807482968696412 0.6503264580190576 -0.7378384316224732 0.1807482968696412 -0.9751811664482191 0.1061087405855619 0.1943260861954379 0.9751811664482191 -0.1061087405855619 -0.1943260861954379 -0.6723224793925161 -0.6002392068805169 0.4332382464960218 0.6723224793925161 0.6002392068805169 -0.4332382464960218 -0.04106258774338166 0.8990879536256117 -0.4358379464125708 0.04106258774338166 -0.8990879536256117 0.4358379464125708 0.6586147483838466 0.7298865062220813 -0.1830090195761027 -0.6586147483838466 -0.7298865062220813 0.1830090195761027 0.9748193469988046 0.111417186237971 0.1931669001864392 -0.9748193469988046 -0.111417186237971 -0.1931669001864392 0.6651896065333129 -0.6032270776840166 0.440045315971955 -0.6651896065333129 0.6032270776840166 -0.440045315971955 -0.03185468267752745 -0.9097173842164842 0.4140042995499341 0.03185468267752745 0.9097173842164842 -0.4140042995499341 -0.6897283700466407 -0.7069106424900996 0.1566911582924795 0.6897283700466407 0.7069106424900996 -0.1566911582924795 0.09347567343550103 -0.9000933710169554 0.4255516677527101 -0.09347567343550103 0.9000933710169554 -0.4255516677527101 0.6897375445398015 -0.7069016727983516 0.1566912398543636 -0.6897375445398015 0.7069016727983516 -0.1566912398543636 0.03593812209819782 -0.9127512269897633 0.4069319955579026 -0.03593812209819782 0.9127512269897633 -0.4069319955579026 -0.7017590213569223 0.5586946081510511 -0.4420346262083076 0.7017590213569223 -0.5586946081510511 0.4420346262083076 -0.709818748063382 0.6583775987073595 -0.2503922571048552 0.709818748063382 -0.6583775987073595 0.2503922571048552 -0.974338443766663 -0.1093171781621164 -0.1967596288800864 0.974338443766663 0.1093171781621164 0.1967596288800864 0.8633889564679328 -0.2451083098381773 -0.4410004833302183 -0.8633889564679328 0.2451083098381773 0.4410004833302183 0.6290046103695766 0.4634642747900084 -0.6241426648829487 -0.6290046103695766 -0.4634642747900084 0.6241426648829487 0.03554156252135575 0.8973259468323727 -0.4399351571253733 -0.03554156252135575 -0.8973259468323727 0.4399351571253733 -0.5694245203325242 0.8219547043962799 -0.01209047413871957 0.5694245203325242 -0.8219547043962799 0.01209047413871957 -0.8627114190412447 0.2482474767330248 0.4405703096572987 0.8627114190412447 -0.2482474767330248 -0.4405703096572987 -0.5992748592906593 -0.5084212250092343 0.6183668013260982 0.5992748592906593 0.5084212250092343 -0.6183668013260982 0.02512503278738687 -0.9129947515708048 0.4071969011812309 -0.02512503278738687 0.9129947515708048 -0.4071969011812309 -0.6289899427792813 0.4634856608255055 -0.6241415657458338 0.6289899427792813 -0.4634856608255055 0.6241415657458338 -0.03554759284476012 0.8973269535253716 -0.439932616567377 0.03554759284476012 -0.8973269535253716 0.439932616567377 0.5694218016437607 0.8219566749752858 -0.01208454700623923 -0.5694218016437607 -0.8219566749752858 0.01208454700623923 0.8627077507767076 0.248248209645723 0.4405770797005759 -0.8627077507767076 -0.248248209645723 -0.4405770797005759 0.5992774056691878 -0.5084208416781608 0.6183646487321849 -0.5992774056691878 0.5084208416781608 -0.6183646487321849 -0.02512235848010955 -0.9129943206482132 0.407198032373076 0.02512235848010955 0.9129943206482132 -0.407198032373076 -0.6050543403621613 -0.7960244965541471 -0.01594509625641305 0.6050543403621613 0.7960244965541471 0.01594509625641305 0.605062878180421 -0.7960177516385063 -0.01595783583078501 -0.605062878180421 0.7960177516385063 0.01595783583078501 -0.8633931629464862 -0.2450969105560301 -0.4409985834593485 0.8633931629464862 0.2450969105560301 0.4409985834593485 0.6757257263860772 -0.3582131733021387 -0.6442655238120539 -0.6757257263860772 0.3582131733021387 0.6442655238120539 0.497191645673142 0.3821475813859728 -0.7789503793655177 -0.497191645673142 -0.3821475813859728 0.7789503793655177 0.02947926195039484 0.8923438960447034 -0.4503924336693717 -0.02947926195039484 -0.8923438960447034 0.4503924336693717 -0.4412794085392349 0.8892751887941607 0.1202585639128165 0.4412794085392349 -0.8892751887941607 -0.1202585639128165 -0.6746014688802863 0.3624176619489304 0.6430912038677179 0.6746014688802863 -0.3624176619489304 -0.6430912038677179 -0.4754566145998638 -0.4300698529820409 0.7674509294992365 0.4754566145998638 0.4300698529820409 -0.7674509294992365 0.01748884856509388 -0.9150062616010659 0.4030603942422384 -0.01748884856509388 0.9150062616010659 -0.4030603942422384 0.4697897548825131 -0.8686441130557135 -0.1573371890592981 -0.4697897548825131 0.8686441130557135 0.1573371890592981 -0.675734036367169 -0.3582105659598173 -0.6442582576340646 0.675734036367169 0.3582105659598173 0.6442582576340646 -0.4971853572315199 0.3821684436042292 -0.7789441579906016 0.4971853572315199 -0.3821684436042292 0.7789441579906016 -0.02948069239466262 0.8923420790190162 -0.4503959400216118 0.02948069239466262 -0.8923420790190162 0.4503959400216118 0.4412707421759817 0.8892806518473205 0.1202499661100279 -0.4412707421759817 -0.8892806518473205 -0.1202499661100279 0.6745953782164265 0.3624208822881841 0.6430957780692472 -0.6745953782164265 -0.3624208822881841 -0.6430957780692472 0.475445493356882 -0.4300732761216662 0.7674559010214257 -0.475445493356882 0.4300732761216662 -0.7674559010214257 -0.01749034331298835 -0.9150054223823763 0.4030622345266829 0.01749034331298835 0.9150054223823763 -0.4030622345266829 -0.4697815306159824 -0.8686507780892173 -0.1573249478534862 0.4697815306159824 0.8686507780892173 0.1573249478534862 0.4296030359012069 -0.4388818302217858 -0.7891919732521624 -0.4296030359012069 0.4388818302217858 0.7891919732521624 0.3183998410294463 0.3229962732788499 -0.8912322641603577 -0.3183998410294463 -0.3229962732788499 0.8912322641603577 0.03038741195228124 0.8869362814384787 -0.4608911345024181 -0.03038741195228124 -0.8869362814384787 0.4608911345024181 -0.2670054108262962 0.9367771694262486 0.226178348723361 0.2670054108262962 -0.9367771694262486 -0.226178348723361 -0.4259850899852302 0.4459367148158626 0.7871957504264814 0.4259850899852302 -0.4459367148158626 -0.7871957504264814 -0.3010341479674957 -0.3735542393901423 0.8774027991698773 0.3010341479674957 0.3735542393901423 -0.8774027991698773 0.01009041759120744 -0.9160154494001691 0.4010160594453058 -0.01009041759120744 0.9160154494001691 -0.4010160594453058 0.2970481968236596 -0.9196343318873466 -0.256972886464557 -0.2970481968236596 0.9196343318873466 0.256972886464557 -0.2970484422515409 -0.9196320989134578 -0.2569805938275515 0.2970484422515409 0.9196320989134578 0.2569805938275515 -0.4295979640396049 -0.4388908348945468 -0.7891897264527675 0.4295979640396049 0.4388908348945468 0.7891897264527675 -0.3183968437424108 0.3229971010153391 -0.8912330349748924 0.3183968437424108 -0.3229971010153391 0.8912330349748924 -0.01947852840250339 0.8885028919470697 -0.4584574112531792 0.01947852840250339 -0.8885028919470697 0.4584574112531792 0.2702220342571353 0.9389866831721295 0.2128005193305185 -0.2702220342571353 -0.9389866831721295 -0.2128005193305185 0.4240429041274266 0.4414033343789021 0.7907911935892845 -0.4240429041274266 -0.4414033343789021 -0.7907911935892845 0.2983027650498462 -0.3667050530799812 0.881216695489381 -0.2983027650498462 0.3667050530799812 -0.881216695489381 -0.01622450498842495 -0.9165547656188361 0.3995799382592689 0.01622450498842495 0.9165547656188361 -0.3995799382592689 0.1472679733307151 -0.4807855014462627 -0.8643826962810682 -0.1472679733307151 0.4807855014462627 0.8643826962810682 0.1095684548527651 0.2918769691750159 -0.9501592437935783 -0.1095684548527651 -0.2918769691750159 0.9501592437935783 0.01814557456022227 0.8484106733494172 -0.5290274732664344 -0.01814557456022227 -0.8484106733494172 0.5290274732664344 -0.08166489083295546 0.9750941196064656 0.2062093681531785 0.08166489083295546 -0.9750941196064656 -0.2062093681531785 -0.1423373977113889 0.4764771508096741 0.8675883758840045 0.1423373977113889 -0.4764771508096741 -0.8675883758840045 -0.09161509243024273 -0.3783895678159515 0.9211015198158428 0.09161509243024273 0.3783895678159515 -0.9211015198158428 0.01429840890886133 -0.9315300536387764 0.3633831513298508 -0.01429840890886133 0.9315300536387764 -0.3633831513298508 0.1015501957394042 -0.9458455719011187 -0.3083240371108524 -0.1015501957394042 0.9458455719011187 0.3083240371108524 -0.009943928546088702 -0.9334025049453157 0.3586932980233676 0.009943928546088702 0.9334025049453157 -0.3586932980233676 -0.1015534747776958 -0.9458444330921899 -0.3083264506153984 0.1015534747776958 0.9458444330921899 0.3083264506153984 -0.147266657557691 -0.4807868808128261 -0.8643821532227857 0.147266657557691 0.4807868808128261 0.8643821532227857 -0.1095691102264438 0.291874995190177 -0.9501597745994721 0.1095691102264438 -0.291874995190177 0.9501597745994721 -0.02566642895233784 0.8527891332854933 -0.5216243174690112 0.02566642895233784 -0.8527891332854933 0.5216243174690112 0.06924176205058456 0.9778832794164339 0.1973572147804362 -0.06924176205058456 -0.9778832794164339 -0.1973572147804362 0.1449489124022483 0.4719675827323842 0.8696185449052678 -0.1449489124022483 -0.4719675827323842 -0.8696185449052678 0.09738220292944767 -0.3725574388083665 0.9228855082517864 -0.09738220292944767 0.3725574388083665 -0.9228855082517864</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"336\" source=\"#ID1233\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1231\">\r\n                    <float_array count=\"2004\" id=\"ID1234\">8.02231418666651 5.767267780802827 8.252088057911237 5.589311019664747 7.431385573142238 4.627258133742329 1.606075704142272 -6.664116171898536 2.403748798413335 -7.599058137546133 1.376311979132671 -6.842086032861725 7.225737949685353 4.830108071600177 8.023678022363086 5.764812889299482 7.43235358172829 4.625008508021419 7.363995635106627 6.533390653799618 7.297642829302479 6.835913372468743 8.544185864865252 7.048583972946593 -9.353644995208162 9.496317571299793 -9.456248184920225 9.776109948263965 -8.251432643860941 10.01863490878347 2.406236697679825 -7.597681970312806 2.199605115929212 -7.802763113320637 1.378608390915007 -6.840969840094465 -7.590335541155204 10.70602694802739 -7.571895639415195 11.00280147164252 -6.367080428351595 10.76031072335507 4.966023898041894 10.00672256238572 5.243664226169317 9.91913432926051 4.839027801587744 8.723565081277133 8.007737987502445 8.528718158347967 6.920853200511596 7.959932833629308 7.888919430143502 8.814733613483142 8.575346384537509 6.74049066075222 7.363867878052579 6.533863598668274 8.544070322159202 7.049028936628958 -10.6474920219949 8.111744241615781 -9.826387542111165 9.005408973160634 -9.693951711360347 8.738440923612204 -8.23270430587667 9.723159798408275 -9.353379702169475 9.497690138106181 -8.251133017061301 10.01993501712986 -2.076341590827678 -5.446531966539086 -2.747292704012422 -4.372146411011835 -2.469653090599756 -4.284561418814406 8.36450869076322 5.248636055142397 7.086689606986296 5.152756972189283 7.117970209082349 5.461294787847897 -6.469701209238219 10.47974138353815 -7.590377992084248 10.70524599506641 -6.367123258373397 10.75953831236817 4.571922371945806 8.84539763252314 4.96501638536636 10.00742870724498 4.838216032068572 8.724251868207164 6.920818075007783 7.960006058168995 6.770569825654725 8.229591706489064 7.888897956771724 8.814791376665028 6.369864240073535 10.21852039588463 6.209602950654397 10.49059365702833 7.338289473943722 10.97111630784981 7.036948750544099 10.6454234430234 6.953010084715945 10.9502757685996 8.170900501940615 11.11495073965689 -9.258150899043443 10.5071703098472 -9.418417710349523 10.77916637951357 -8.368582196735387 11.22619350350597 -10.64730331774392 8.113789988750014 -10.85135259844804 8.333778046742935 -9.826089290604813 9.007354055240066 -8.772087774188769 10.74251265572863 -8.856046438867478 11.04737288696119 -7.723218056485544 11.20050605659699 -2.077924500427836 -5.446783367694267 -2.34421369354931 -5.567932998300748 -2.748731068066101 -4.372307557346347 8.298218277099975 4.945222462917677 7.086734774222069 5.151862307460801 8.364553402206269 5.247747464753283 -7.000573116885825 10.99152509365734 -8.132295327164709 10.82834839739508 -8.13340981920302 11.14465832752162 -5.747197968884668 11.34771865661842 -5.614785283970845 11.61469325889407 -4.589597508688529 10.94102483346657 3.600188297201517 11.08574969555976 3.882049501761424 11.00737322589368 3.546444374582394 9.794570462850089 6.99670435438618 9.55955763258903 6.092887770699351 8.735608954423846 6.814469531908987 9.808638799461429 6.647959731086218 10.23822650913605 5.755524825279502 9.532889735268309 6.490809983562573 10.51210877794677 7.41997173218677 10.66527665403989 6.370133579721438 10.2182263388499 7.338564645077707 10.97081474691645 8.169805699052926 10.79857588292758 7.036968516098395 10.64538167454566 8.170920417540495 11.11490860880507 -8.740919240116529 10.83978666178993 -9.566338625551969 10.18739078053096 -8.898077287828695 11.11359071720087 -8.28684292727478 10.92038831944528 -9.257843112603737 10.50691625709059 -8.368270315967777 11.22593438525606 -10.70207184086822 7.859646832739864 -11.38157048740469 6.947354717371921 -10.92180453057965 8.063971084084493 -7.724344382085194 10.8842171823605 -8.772099555649737 10.74253351947274 -7.723229921896868 11.20052711259926 -3.655488084653787 -2.338871853116272 -4.263545100703079 -1.238570008658045 -3.981686478920031 -1.160193451602171 7.361321654529953 4.312137890551743 6.124180677253954 4.611336636689946 6.242986094475011 4.897355864011173 8.90362543194138 11.00610886361448 7.686842502579204 10.85445098157452 7.685727858736397 11.17078370771504 -7.084553032983659 10.68665734821619 -8.132293932533601 10.82834098437742 -7.000571717824942 10.99151764991668 -4.794009342179233 10.72139473624548 -5.747598954692891 11.3480105177875 -4.589976545268181 10.9413791756188 3.274668987659907 9.906720870699749 3.600953888569323 11.08539287268543 3.547076298694634 9.794219210659854 6.09288381772793 8.735612996503775 5.884514685839049 8.960870719261866 6.814458782371375 9.808647412005715 5.755658541536009 9.532800255145016 5.531478612772006 9.75360210527751 6.490951328416285 10.51201356954455 3.605290948896335 10.38141642767636 3.33455265833195 10.51716039845814 4.014028828894553 11.42943895203155 5.589979773123033 11.53341126438089 4.840404163330653 10.68682665382721 4.636374353864254 10.90679269216684 7.533368318126436 10.93688718677573 6.515314143438632 10.43149938548117 6.412693034774826 10.71133130046171 -5.623218934403118 4.408422528738681 -5.831607429130463 4.633650344396608 -5.054071071988054 5.342434346091068 -9.566143887607765 10.18733400003877 -9.790321147955863 10.40816513457345 -8.897877965835795 11.1135306292603 -7.080356331707753 4.053971967280779 -7.23060879446113 4.323584921403613 -6.295565336252739 4.812966406053784 -11.38154062340129 6.946934657969052 -11.65227155783105 7.082692552127814 -10.92180663684189 8.063564187879415 -8.181179189229288 4.911309043923017 -8.247506721794631 5.213846656682764 -7.20526833652511 5.391622673994847 -3.655653795968758 -2.338906340375719 -3.928071478759999 -2.451409328531153 -4.263698117344093 -1.238597480587634 7.36141480199807 4.312676224611774 7.211174320131137 4.043088922317519 6.124272005539162 4.611867448607266 8.819661913325041 10.7013222488483 7.686833079872884 10.85451661169397 8.903615990191723 11.00617464652251 -7.414680419786158 6.801473658954425 -8.488180523016553 6.670718688023931 -8.456904346591537 6.979250293358286 -6.263600740604844 10.54523868733316 -7.394884629014753 10.68671664530804 -7.31343401982421 10.99226281712368 -3.292621517860952 10.54167626392773 -4.242831137437234 11.31821873024799 -4.023119003917025 11.52254472997818 2.551809972545656 9.664317185975541 2.6236274458066 10.95547984480436 2.905003578692951 10.86778812080018 5.193624988674518 8.580056277800161 5.692767334986558 9.773034138616049 5.915652172224851 9.562128742488907 5.937110580194192 9.489415672846647 5.262547314077408 8.578135569452515 5.716187416262216 9.713476051139757 3.176137914244959 10.68649459689848 2.834873189666084 9.69182847940672 2.899293108193951 10.80930583801228 4.234461290235831 11.22486887962152 3.605942037354565 10.38119795908854 4.014763754588621 11.42918778233066 5.589504880842169 11.53356933265291 5.721950122961196 11.26655762799355 4.839977335964876 10.6869421673126 7.533143785096657 10.93687425265906 7.551591709610324 10.64012137186822 6.515105828923725 10.43145378207258 -4.162820841888336 5.683229236242456 -3.785455540905263 6.710550714605108 -3.562552804087732 6.499677047211517 -4.872389408174831 5.093837840595416 -5.623779512367979 4.40896397538488 -5.054609188486499 5.342962105285681 -8.887746741103829 10.83526687679533 -9.525692247198936 10.01031531247674 -9.107133392035042 11.0608579480509 -6.176474298564618 4.526406989595827 -7.080055569335768 4.053426788815008 -6.295280344376946 4.812437533749789 -11.31857231475265 7.207002239849808 -11.68082557747522 6.132629915955798 -11.5941746043776 7.332576212619316 -7.173977897034508 5.083030682715448 -8.181164024524115 4.911246986479281 -7.205253998235585 5.391562295675325 -5.064701339923504 1.894592448432216 -4.721524901407358 0.7249575728427193 -5.346087968207796 1.806900478081168 5.956868974092837 4.582459303872925 4.844680692420677 5.181156372358337 5.026908626978211 5.430239683354471 9.472188816692448 10.72397226626382 8.262063269598878 10.89895199625093 8.343486758075576 11.20449002484071 8.289909445598125 9.953360197058817 9.410573323369611 9.727789472525593 8.27146697812546 9.656606977076205 -7.481007247740252 6.498971555125469 -8.488182100825481 6.670754732288192 -7.414681949864845 6.801509311352131 -6.26357202431161 10.54538716088015 -6.423847746747091 10.27339065209758 -7.394855765646165 10.68686629489177 -3.292568142589447 10.54167249367159 -3.563299937621667 10.40591384363897 -4.242772177916078 11.31822179306155 2.551014626765364 9.664570003049022 2.279565712514537 9.786101771501294 2.622698378662749 10.9557400928255 5.193794640470326 8.579934506661576 4.950006967750503 8.762408130938974 5.692974766025896 9.772896559926084 5.262729318767912 8.578022902558102 4.991162906919249 8.733644753001784 5.716394133052781 9.71335350989146 3.628339580450876 9.410096179628415 3.343259316224513 9.476119751452627 3.791720391302833 10.51744087914368 -2.543497724329717 9.820157007470904 -2.848652052517384 9.677531866782541 -3.132722358266544 10.69001710564758 -3.873097941905428 10.89286343072251 -3.320076696099827 9.991416069596967 -3.592497529002921 9.878920394021563 -5.238846009887677 9.80758299599721 -4.634251248975909 8.929086183173229 -4.900537747090571 8.8078942451424 -8.214277558189956 5.481786058120083 -7.321064523486167 4.882925935033296 -7.527661981317388 4.677793400510733 4.377614265992437 0.7281219543282957 4.073595089472888 0.8692070938502872 4.394109549297308 1.830549502300379 -3.537676791819183 5.376926876400024 -3.811855606249014 5.583853884632541 -3.17471002551291 6.409423422083563 3.97394736107426 -2.367570675376053 3.701523387203382 -2.255077662628404 3.972653577627958 -1.275216590961533 -10.36711544436186 9.788610904639777 -10.63722024298047 9.923741161134938 -9.99021332211368 10.85480794770453 2.405243483742395 -5.482637948843198 2.138955835681639 -5.361451513027145 2.46589077455381 -4.395385817039694 -11.68072628394697 6.132280067793281 -11.98353862516836 6.177170132947989 -11.5941092281414 7.332228813223198 -2.108601609355256 -7.748206068148464 -2.315165169803018 -7.543038888934133 -1.651511075343576 -6.766188339209613 -4.721607784662597 0.7249281405996211 -4.993049772383447 0.6033964299868833 -5.346166221861001 1.806873718311953 5.957238957132517 4.583363214343673 5.748849837769354 4.358110775196654 4.845041714752265 5.18204363639175 9.472304078310044 10.72461316264121 9.31201810079169 10.45253915697316 8.262178858055076 10.89959515296517 9.410594163350751 9.728071431052994 9.307990612543218 9.448239951301609 8.271487518594194 9.656893728748518 -8.212551034223413 5.484377895292075 -7.982782368570982 5.662358312422271 -7.319611670762221 4.885109787038521 -6.901073416418869 8.239933947756155 -7.954920374718853 8.443296667457076 -7.836119496150149 8.729328991386085 -5.586655222954788 9.822978924250215 -6.636258537640909 10.25454365534416 -6.479091496931305 10.52834820115506 -2.602420738045671 9.709493464092688 -3.267466644683721 10.73896569644136 -2.991862575009607 10.86453843503981 1.578587327183264 8.616623560601905 1.717743461392392 9.90224185360913 1.995689528240346 9.796409591444695 4.352990694981493 7.476449471708879 4.67407626424998 8.728944349425365 4.921550948121843 8.551503278166209 5.36216474635061 8.436915836161079 4.950843260216593 7.383133306463973 5.093068539573298 8.596771107822468 3.539780496745524 9.457279058321062 3.431838494209256 8.415414457869801 3.254074064554408 9.520538078961783 -1.911819010740019 9.727529858260962 -1.560214478487912 8.779557572046723 -2.224358608507 9.601911011762139 -2.597596011191904 10.8406810002062 -2.312286468233244 9.868305447743705 -2.878987540687646 10.75300435365292 -3.873742899600679 10.89269934021582 -3.591884319513478 10.9711322781505 -3.320647345935045 9.991297569800498 -5.239716594033536 9.807178809229182 -4.962070710154135 9.894783771798668 -4.635008456639771 8.928760034592838 5.337713155207496 3.462758609268935 5.393465189571801 4.573231349241489 5.70505027354063 4.449750938917815 5.129220193628463 0.9198204399797194 5.102133984892365 2.022038626272866 5.383840597970641 1.935373272153651 -2.227268869578842 7.054369051497821 -2.034900411214426 8.149204375606008 -1.755890989466358 7.948838331591519 4.252846068985002 -1.354174780213079 3.972139728465299 -2.368093965309794 3.970989358694878 -1.275739720450518 -10.19313023741471 10.03250173789567 -10.53232842096415 9.035484642111983 -10.46177202297931 10.17051760475854 2.742152961264321 -4.483278004021566 2.403715482025087 -5.482913926852961 2.46450769472513 -4.39566988852989 -11.64163930689924 6.726216799847979 -11.68206775371864 5.595744450929492 -11.94487170416447 6.7681756510519 -1.415135332853638 -6.94608800957697 -2.101288255754695 -7.750494143941382 -1.644927001856219 -6.768137293212735 -6.040314688080228 4.585570830692188 -5.634910717157917 3.438957385634206 -6.318254047018166 4.479738783865751 3.772799252705641 6.794011187827457 4.515734982915213 5.783518579648719 3.549899250107047 6.583107714048141 9.845815772556408 10.33921330332771 8.72919618033063 10.82374885991195 8.88637049790432 11.09763221655218 9.851713168959194 8.925334765489707 10.80529367403964 8.298672400676939 9.719293013185254 8.658317822126612 -6.901067860907201 8.240207827987678 -7.051326483111327 7.970596969093 -7.95491621140005 8.443563333066301 -5.586682549038167 9.82295175808374 -5.81087235396957 9.60212059242105 -6.636286790182588 10.25451423594288 -2.602139271092833 9.709540968608463 -2.904935435372564 9.664650374919933 -3.267147498582656 10.73903754096013 1.57906352729198 8.616547117844673 1.312847838604522 8.755549052967469 1.718269194621227 9.902160048390355 4.352689875045941 7.476531527549001 4.088748369108377 7.622855452442973 4.673772905118243 8.729027056202934 4.950684882683941 7.383317938390422 4.650677824799282 7.464055681726327 5.092860829896539 8.596961519928501 3.485437118801275 8.39470371481638 3.18930951732058 8.376616343648747 3.314412612124502 9.500890420785105 -1.598690305595134 8.762447828867947 -1.899933665045985 8.601317540266477 -2.264923659557595 9.583109588253944 -4.014504204957136 7.810915601141399 -4.31044475881743 7.646321463655264 -4.782135122017676 8.540628683683423 -4.944918115545426 8.916342100839811 -5.221899578824482 8.710983236931227 -5.814321154642443 9.53314649738221 -6.010383345488194 9.011817357987011 -6.218766714484236 8.786587269027372 -6.970145529470814 9.471478083619513 12.1442212012655 6.488431451935157 11.84971286259486 6.50445092814584 11.72931439275864 7.550679691730608 5.436096370687942 3.474098083261125 5.135131007202009 3.637393151327177 5.488416272723167 4.584737819363221 12.01932916880682 7.491045479827514 11.7289601973689 7.428774637327286 11.31174713342957 8.389041456769789 -2.39134695514438 7.08531697164199 -2.688828499347872 7.248095610817745 -2.198341011465316 8.180040094807449 11.6103318338582 7.058012136265086 11.33960582649887 6.922264435752206 10.7111442100928 7.765984863512145 -10.45780460366582 9.087031108132035 -10.74805210172731 9.151539204082358 -10.38147545947754 10.22169048139711 10.80522796946904 8.299426142429587 10.60120330713986 8.07946236572252 9.719217761431199 8.659042733514418 -11.68216800417867 5.595901151841711 -11.98844735752957 5.552942729837733 -11.9449518098545 6.768336867292641 -5.634496435233625 3.439184867669541 -5.900713396455597 3.30018383903054 -6.317853489068273 4.47995725505486 4.515824471600816 5.783647666803651 4.272044803960049 5.601173690129581 3.549987279452767 6.58323503844122 9.845588602994498 10.33886278974944 9.621409732253103 10.11806138536246 8.728966521278007 10.82339260922394 -6.010423861258278 9.011941989207395 -6.970193554858753 9.471587034582777 -6.787968605968723 9.720708966139664 -5.042628918682938 8.816203776538053 -5.938130179876525 9.503409018794248 -5.717198770774001 9.727500037880455 -2.4771281657538 8.609333718139764 -2.823820427044403 9.782772886274298 -2.520604148431285 9.824732043656677 0.4940333704000091 6.884722314694114 0.7434816770441161 8.153401315576275 1.01370411297787 8.02235870422696 3.579048963009202 5.527249581922334 3.767987851475939 6.806380999142068 4.029731018408183 6.656160081433367 4.987430164885366 7.149493275445536 4.871659888438184 6.024804147658597 4.688389354051153 7.233739411470873 3.692162256277692 7.359146195942491 3.197147972982466 8.365396172811582 3.493291293792061 8.383224321743267 -0.9252138314459013 7.941778656958044 -0.5010888893011865 7.024536617868603 -1.230796721377351 7.78903825988127 -3.583457915889256 6.865153699605307 -3.221365219127212 5.881871791901279 -3.87761673597965 6.697396046793376 -4.507248736247584 8.731902211037241 -4.021559745944325 7.803848348223497 -4.789252495370334 8.533496379906529 -5.655596031237238 9.703362544822191 -5.005465970002792 8.882122257586087 -5.879015884294735 9.493039482114664 12.14478024890936 6.736805458154219 11.94023890165135 5.624830788396087 11.85024427758389 6.752308579129163 12.14283763709443 6.442043886399361 11.73125571185489 7.505584812508928 12.02185570015984 7.566768504754241 6.268038727420731 5.474776872629459 6.437817250366501 6.556154450177642 6.743247791385032 6.401371977377769 11.94837906263659 6.158904965374388 11.31052831244434 7.107701851895589 11.58612788215819 7.233260150820028 -1.161015913433849 8.890149066805394 -1.073395569348677 9.991665786302482 -0.7779209136219883 9.825272029397965 11.61033482922322 7.05916121664057 10.71110780030712 7.767083893015066 10.93080057539455 7.97140033992074 -10.40959229367743 9.199877177991784 -10.44082428807349 8.154377363048935 -10.6996207909959 9.265362865873017 -11.4592516894927 5.204423171008229 -12.03267423410591 6.2623036348526 -11.72610224262008 6.303121306840652 -6.991555867399386 6.618692905334878 -6.486489299443168 5.513057706673341 -7.261779009522398 6.487650126571119 2.594874711865614 8.532891592041368 3.179902013339848 7.426720616761154 2.34740764779583 8.355450529378375 10.02678762383469 9.888296594928445 9.080636181045295 10.64395596575919 9.301557082651641 10.86801707684183 -4.908080489198695 8.827277128001134 -5.171691680823249 8.688617412622387 -5.785647758998728 9.537241381157172 -2.477356966879039 8.609267980107019 -2.783634433798757 8.65222484643942 -2.824082129607023 9.782697427019917 0.4942974535608793 6.884675877025379 0.2386820867089246 7.047718489624774 0.7437538596373056 8.153353285366208 3.579019696709793 5.527247574791911 3.304264902654809 5.644802179261861 3.767961516094372 6.806378559086036 4.871671759983433 6.024758632758172 4.563916490311018 6.02454101335168 4.688411113318542 7.233695395474622 3.131865063576585 7.495146351122008 2.845350157739452 7.371832530066978 2.578489150401894 8.470519743897006 -0.2995594809006691 7.190644557877686 -0.5550029855080121 7.02733308637674 -1.026197123972311 7.958064922804658 -3.364466087299869 5.756434020851 -3.63924298866122 5.638867507453358 -4.01388909856642 6.577406380998356 -4.595208407807088 6.220843177572365 -4.902936610581055 6.221062566755599 -4.996186739518726 7.264738208188124 -4.5801979245055 7.680872387890022 -4.872535989311253 7.618357848562964 -5.208623099405675 8.610438098348078 9.930435795209954 8.723360458360926 9.622695485060167 8.723578076682632 9.506893312035652 9.848262337106252 11.68679383842413 4.820806528320301 11.4010933228296 4.945995181335735 11.6709817879123 5.951759745750621 10.04349825550007 9.365039409526721 9.743489424522231 9.284300831811486 9.332208169824803 10.33809864246232 6.754756775286062 5.428533295660523 6.499138699141653 5.591569262435212 6.91902076309531 6.510762270686894 10.0264207380193 9.888097497687822 9.754836146645381 9.732476048171769 9.080260517751327 10.6437458782189 -1.695201464579465 8.909158721601118 -1.970122869278565 9.026384550142128 -1.618544575515055 10.01149266800221 -9.591302846728635 8.822595493203158 -9.899031319075601 8.822373286436831 -9.78321586192828 9.947065951688893 -11.45924781968514 5.204421096615239 -11.74577848271567 5.081109433850616 -12.0326708752261 6.262301283511819 -6.486248434573849 5.513244118226436 -6.741869014961592 5.350199016100515 -7.261540555938209 6.487834619938462 3.179105813721875 7.425997878045219 2.915163522363724 7.279674511815227 2.346612301949778 8.3547285559653 -4.571867659767827 7.685001879234275 -5.19800283550379 8.616111621538478 -4.935183100948795 8.756265694426407 -2.540742087517667 8.566909293518494 -2.827630048306525 7.385714519013615 -2.847312146644797 8.607725686728166 -0.8141520036824412 4.787247278753537 -0.4098877686924643 6.015532093705279 -0.1545507334713725 5.852053936942369 2.825907391035651 2.91447464078058 2.925963511056933 4.203776059192933 3.195347959271043 4.074387879869384 5.072049316640039 4.636612424534547 4.563860349506689 5.750794012321112 4.871615609433643 5.751025002883836 3.819561550989884 6.356088346280721 3.024697696615445 7.153515715233586 3.312968409168299 7.272667240672091 0.5078875531633522 5.922246885641981 1.040830647940628 5.061918861623786 0.2525454068644117 5.758776982927945 -2.899864803665365 4.123037899357319 -2.582070981663241 3.125168581569071 -3.169270650466771 3.993636507156769 -4.595210131123386 5.767368898608199 -4.795624677444554 4.652969215294837 -4.902938321178672 5.767605456015868 -4.551751286835951 6.370503943752767 -4.892659326416026 7.43553078191047 -4.600764251184403 7.500082132145554 9.931094966858455 9.09603213633477 9.715593417550867 7.897930479543868 9.62335466645721 9.096263129355123 9.930735827967505 8.723240740338639 9.507213151533417 9.848150076420589 9.806255898006034 9.932396455442374 11.8210066322793 5.641957047386217 11.27328617849653 4.65094501386657 11.53273560497294 5.761107365348592 10.04286228329696 9.365040585658122 9.331545345119851 10.3380801892938 9.600660148426115 10.49793464954639 7.535739623001351 6.593692710145172 7.831890891357638 7.647449006016194 8.087231527084098 7.48397886482603 -0.5241565780873642 10.2562204738642 -0.4864394008526751 11.34992170397917 -0.217035001175078 11.22051945101113 -9.406536758183124 8.082332868907633 -9.899645775372855 9.112810577833072 -9.591917313190002 9.113046440972934 -11.03306145856628 4.858172341658545 -11.86906432189366 5.730018181815798 -11.58077780285274 5.849167122095434 -7.929185938596586 7.741276002141859 -7.288134711684656 6.706399437704047 -8.184528376761124 7.577795649447086 1.501843717442459 10.20233969252613 1.965537662966534 9.040762659994472 1.240099738841787 10.05211935322896 -2.827699190618862 7.385692878294297 -3.114245837009395 7.509005844610631 -2.847390549560736 8.607703896819539 -0.8142387846834531 4.787281714610788 -1.051017422478481 4.980689694303933 -0.4099715308854265 6.015565535980942 2.825863560250873 2.914464272130583 2.545775655456215 3.010294430635846 2.925926509520307 4.203765160541554 5.072050792302683 4.636426793683894 4.779368647532038 4.552517088168444 4.563890708589148 5.750621555024526 3.819606376355887 6.356099602651848 3.57245010124174 6.162515789484883 3.024745146625805 7.153529587802932 1.040750145448171 5.061814419743752 0.8039557843155296 4.868386050648546 0.2524662820454121 5.758674099467705 -2.582061023304272 3.125174822309014 -2.862143473626441 3.02934388643336 -3.16926160391908 3.993642131390482 -4.795648217881778 4.653056670178607 -5.088339457465029 4.736985317881022 -4.902938859512489 5.767695125229697 -3.565535127923351 6.176115265244123 -3.812677839446398 6.369703167130202 -3.264977022005007 7.360700876068053 0.8403367238430468 10.23718379894077 0.5602462057335531 10.14135523217399 0.1908371556963209 11.30127999331571 9.715279811570234 7.898164399687699 9.422605508712325 7.982071061332078 9.623011104925984 9.096494743366428 1.965753936980625 9.040883578076532 1.690994369615404 8.923329790133387 1.240320107445503 10.05224320831427 11.27329027881219 4.650949558498282 11.02614506513587 4.844534047078025 11.53273910555405 5.761112050140519 7.535684312874684 6.593713095228133 7.29888869613132 6.787141360236949 7.831834683618196 7.647469643366902 -0.5243639138978562 10.25621995077311 -0.8044472733028646 10.35205112217272 -0.4866562948651038 11.34992151046864 -9.406679726772429 8.082195684650662 -9.699361351824194 7.998267172378847 -9.899801537804553 9.112667271309139 -11.03307087735487 4.858169344732327 -11.28020427240938 4.664581839190625 -11.86907291533646 5.730015976303339 -7.288344436481048 6.706182540603755 -7.525136251228246 6.512774038618834 -8.184740686029647 7.577576093726885 -2.9766841745925 7.241548697681889 -3.565543648095952 6.176113404817853 -3.264986470492337 7.360699251177363 -2.447883322974987 2.751568552554161 -1.842477514017635 3.89427599955851 -1.614034516523058 3.69108995963267 2.003331820157259 -0.1121430521644828 2.058836564324649 1.179529586358521 2.331326469065933 1.063849400045171 5.590202303166725 3.422160988082945 4.776235014799291 4.339683957172108 5.06699202493466 4.430039021249202 4.792858524577 5.351708305204213 3.811958992720328 5.9163916658123 4.062104287424121 6.106097355200138 1.961101285046039 3.826234095799287 2.634831518947544 3.067113124415407 1.732641496307822 3.623029203228422 -2.020157793277054 1.09577077218773 -1.738045133809642 0.08407938248913949 -2.292642079395596 0.9800899134956276 -4.815052538517008 4.360912519372523 -5.338295125527744 3.35305854322367 -5.105817903968173 4.45128774765985 -3.757921129518451 5.992529127627781 -4.607363580042399 5.115621178425016 -4.00805316343177 6.182238803780592 -0.6027579114285769 11.93512829791986 -0.2653383113282294 10.72511841245179 -0.8752508527681888 11.81945025564948 0.4600121899457396 11.43059484807465 0.8401312322340304 10.23711634359213 0.1906229618076444 11.30120722624912 9.961904685985054 7.921317673188637 9.399438483820717 6.837739257140222 9.671155628119442 8.011670098567954 11.38672699552658 5.073226793175415 10.59662327021988 4.257574427615073 11.13659264145704 5.26293318678408 8.209859950819201 6.723645760614549 8.678594971015968 7.712374678279593 8.907055491034399 7.509169243790011 0.5636269487086308 10.7579458860558 0.5637591081185163 11.85131753997724 0.8362441670383727 11.73563610545614 -9.148746431801881 7.100180552171004 -9.923439640128624 7.94197383515283 -9.632683886221651 8.032348723175383 -10.40054945299948 4.523433465522471 -11.44077742670279 5.149367724775502 -11.19065494879698 5.339077459104777 -8.796927104377645 7.780796373855483 -7.986534988438879 6.86769660754922 -9.025385134024679 7.577611382133364 -2.447892436598347 2.751575933223066 -2.652886586709821 2.981172518037141 -1.842485880906245 3.894282984607421 2.003168542977567 -0.1121808863049317 1.721200557589594 -0.03050824392382967 2.058702137872348 1.179490512144429 5.590195069697714 3.422055694461649 5.338722500134333 3.256005850783021 4.776238298562009 4.339587993653761 4.792795272598981 5.351648803674095 4.602007058565834 5.100676746162371 3.811893721850205 5.91632865729288 2.634784447227349 3.067013910342503 2.42977377423855 2.837408746390241 1.732596091264525 3.622932693977843 -1.737830524364876 0.08416656496258945 -2.019797238494305 0.002493112357009886 -2.292451735554148 0.9801620760153762 -5.338230787118782 3.352811588678597 -5.589690939112673 3.518873465351141 -5.105795936552603 4.451049761509455 -4.607296183997103 5.115620237273077 -4.798095314695769 5.366593423150325 -4.007980502882582 6.182234904595543 -7.986555889325445 6.867667979007165 -8.191559998099267 6.638073613249739 -9.025406708161478 7.577581768393026 -0.2658513924094679 10.72501539099795 -0.5478243079042257 10.64334171938851 -0.8757989830207733 11.81932769923068 9.399457966750671 6.837717751034001 9.147982137033422 7.003769477635871 9.671177663608312 8.011648001645453 10.59660707242216 4.257565553010063 10.40580607527824 4.508535786249877 11.13657856985533 5.262923170214947 8.209868148312985 6.723639797819137 8.004859697248556 6.953245674626219 8.678603577310881 7.712368521680295 0.5639647615244471 10.75793337704772 0.2819922366942799 10.83960535262652 0.5641211542755882 11.85130502777144 -9.148596913292062 7.10036550451596 -9.400067489701645 6.934305838027768 -9.923274874606658 7.942172818902312 -10.40053026270629 4.523460414640201 -10.59133362882067 4.272487777171353 -11.44075930953975 5.149392890475632 -3.424488619818151 2.051510872033782 -4.451447721073044 1.320914993730629 -3.607048434730841 2.29931948229028 1.25371906925343 -2.068980133225255 0.9100342911362658 -3.244662667896889 0.9829208397823459 -1.955645742096218 6.427844467605201 2.657369518137107 5.360460969395073 3.26317312659965 5.602447748904911 3.442765449294591 5.963050307158162 4.598401472884455 4.862897871431918 4.888020304292075 5.05696668467419 5.136464285890265 4.566975869361551 1.677618748944787 3.554610122510936 2.020117489460222 3.737188382645553 2.26793412788283 -0.6344515222543741 -3.052113042568756 -1.200876406250898 -2.153962787728282 -0.930079256085121 -2.040628396656744 -5.404912574038195 3.292132349355072 -6.230314461078931 2.506727066998844 -5.646887013182357 3.471735037880793 -4.807767079003931 4.950234886829042 -5.860966101770035 4.324810658490876 -5.001847324719297 5.198679461186795 -8.424882873013623 5.988174923117744 -9.605562586612063 6.45041964919662 -9.422991708989319 6.698226291653528 -2.128911530962449 11.39370619047285 -1.858108794091689 11.50704281919493 -1.504539573232881 10.29731278098825 9.827835858960567 6.402761707059793 8.940439791553009 5.558433182247473 9.585846775178787 6.582357230862296 10.67860142778535 4.504886653852445 9.698961064470598 3.923137010221114 10.48451955824054 4.753328410402241 9.475381065925804 6.418838346460516 8.616699388997306 5.807979933582672 9.292803232787765 6.666654121823592 1.804515688494758 11.42193482798765 2.075320240595833 11.30860473085816 1.789653651069088 10.33114660586087 -8.777986349147227 5.884762204148979 -9.783395815642388 6.431566205911736 -9.541410130717059 6.611166294790215 -9.560048236954533 4.233786674396139 -10.73377188997996 4.567113960877165 -10.53968755340356 4.815558038235333 -4.451445388161562 1.32091150302849 -4.605144881901487 1.589257774717442 -3.607046360323376 2.299316214686616 0.911036215103248 -3.244569414619009 0.6302815542887075 -3.165285501969137 0.983746179428347 -1.95554251611689 6.427837637908099 2.657239812949093 6.247832911031965 2.418709446125305 5.360460556278488 3.263054726837308 5.963041769819713 4.598377594103866 5.842530324928217 4.30624879890488 4.862889228392628 4.887996023993652 4.566949491164673 1.677515046485934 4.413267843553816 1.409146381545383 3.554584669588645 2.020016521937351 -0.6343308283330909 -3.052077616634356 -0.9150620653111302 -3.131377159015987 -1.200769992778023 -2.153936368019525 -6.230355841487682 2.506952398274932 -6.410349313279072 2.745551901517965 -5.646903438454379 3.471945281263957 -5.860956446689808 4.324806852545208 -5.981476839089077 4.616905572027501 -5.0018371782836 5.198675172178971 -9.560036157906882 4.233835501329801 -9.680555144833743 3.941738909819654 -10.73376020318313 4.567161406600481 -8.424843361141196 5.988249141808261 -8.578539572529392 5.719905180363528 -9.605521278105222 6.450498456879819 -2.128002541521889 11.39390767417695 -1.503710088307944 10.29746899243481 -1.784459266712324 10.21817791926077 8.940289758199278 5.558664658271775 8.760286641389778 5.797195116769234 9.585670957141998 6.582604959215122 9.698953334175988 3.923134326470514 9.578437925476589 4.215263271704036 10.48451321445017 4.75332441468671 8.616695792321206 5.807984438043635 8.463004396435052 6.076345229884326 9.292799280948527 6.666658905933183 1.508981687625615 10.41044201964916 1.804587711918147 11.42192402718496 1.789719178778943 10.33113589358192 -8.778070540410155 5.884638780422247 -8.958068784782792 5.646039814873298 -9.78348840858556 6.431427333718194 -5.470301552639625 1.49112445145663 -6.665204895598771 1.080079427803008 -5.581515389563202 1.779680751651247 -0.7296916084496221 -4.847825225879011 -1.239323924915554 -5.965180848058259 -0.983402713437965 -4.703812054329481 6.429372105238576 3.070798693737436 7.484425162189432 2.632960455440022 6.272223592574061 2.816627919331381 7.309598879931788 4.100114165975394 6.172386671636989 4.114089657735745 6.296584270959485 4.404670451417599 6.673165340113267 1.46069710806245 5.596511227521427 1.504273208093048 5.707708117320678 1.792847359453377 1.671539516001294 -5.76057523486305 0.9391731330657233 -4.970479558128506 1.189951666304455 -4.821454150550515 -7.373905047151883 2.420445369343553 -6.47597200022688 3.112499440921925 -6.318837669790733 2.858262985955836 -6.033213721615906 4.212408827890807 -7.217274505620218 3.886515904012549 -6.15656019014606 4.503325440700059 -8.531387785648066 4.071560705961415 -9.756070774288414 4.083774492867834 -9.632726737808362 4.374689417968849 -8.30493748442003 4.330441993887243 -9.577449855087568 4.441364589949741 -9.466235265510377 4.729916703274379 -4.223502876719913 9.587379479106971 -3.969797935985473 9.731396764551324 -3.445407544471821 8.581711696651405 9.236966853624979 4.947401304070755 9.394113356902082 4.693230341527976 8.259831785298545 4.22248881572931 9.704809832242122 4.035789645949894 8.603472821994846 3.73267274812119 9.581467689801546 4.326736376942702 9.490922071357993 4.298600231082052 8.499707389419065 3.92265445724289 9.384156338551122 4.58884088651304 3.896539175924027 9.654215450822882 4.150228742439791 9.510185577491333 3.726479854733768 8.581304777485496 -9.423216318515408 4.472155017098237 -9.27255740290623 4.730284297664632 -8.288675878665934 4.342030565834466 -6.66522566276802 1.08014405010757 -6.742837437992399 1.380267567573475 -5.581533433821307 1.779741156120973 -1.238853797483174 -5.965278003164967 -1.507311542582164 -5.853615238692918 -0.9830102772306847 -4.703893449025443 7.484424883292007 2.633010383882151 7.406514263464952 2.345939879885023 6.272222931238717 2.816675323673188 7.313853897789303 4.322100817522392 7.275717967010026 4.025212024150625 6.17664659304196 4.336469780392419 6.661012628610327 1.088548563306246 6.56636052877616 0.7409570961453518 5.584453830074927 1.134419119775722 2.351564991295644 -5.401406404498824 2.074093047184209 -5.557442487260533 1.55075082268886 -4.68077587183498 -7.395552620997582 3.131023308700499 -7.452434806027009 3.415760819294903 -6.457330494885647 3.767389427237792 -7.217251753191022 3.88649397765239 -7.257883350292583 4.200173622039879 -6.156536674490829 4.50330220183436 -8.318962544481733 4.428387293992502 -8.385053749840118 4.14527160788125 -9.454913042633246 4.545565996067015 -8.531387766736476 4.071564738885102 -8.572015826007476 3.75788512580678 -9.756070755442112 4.083778519245252 -8.304936126238683 4.330442324466572 -8.382542219297406 4.030317796828685 -9.57744845601994 4.441365389578568 -4.223053139952752 9.587572180154115 -3.445006685817724 8.581866582107013 -3.713464068600874 8.470204180724483 9.236995531655577 4.947344928234697 8.259855461770449 4.22243918171893 8.181948701807347 4.50951019832294 8.521518244742271 3.901937992931166 8.477299227918195 4.198338886371126 9.490271124852209 4.51095639480711 8.423503269721058 4.130100135004379 8.325702677385262 4.476698785747071 9.285303626375194 4.82533710714792 4.484670822436756 8.19170513651676 5.071017670644485 9.072023935372219 4.759512355616062 8.031340542406799 -7.30736255645752 2.298931442533629 -8.572230339050293 2.298931442533629 -7.325151562690735 2.608416926275309 -7.325151562690734 -0.7002259076981166 -8.554449081420897 -0.7002259076981166 -7.307362556457519 -0.4100161815854154 7.36809253692627 3.474163313404961 8.51151168346405 3.474163313404961 7.325151562690735 3.179824033527633 8.466757535934448 4.213194162628142 7.36809253692627 3.916873597429247 7.410417795181274 4.213194162628142 8.450794816017149 2.424425283844014 7.410417795181274 2.064646501630932 7.428804636001586 2.424425283844014 8.466757535934448 -0.1701258822565584 7.428804636001587 -0.4879306383211063 7.410417795181274 -0.1701258822565584 -7.36809253692627 3.482318071436428 -8.51151168346405 3.482318071436428 -7.410417795181274 3.769580330403504 -7.325151562690735 3.822338718081032 -8.554449081420898 3.822338718081032 -7.36809253692627 4.135710571823177 -8.466757535934448 3.769580330403504 -8.51151168346405 4.135710571823177 -7.325151562690735 2.608416926275308 -8.572230339050293 2.298931442533628 -8.554449081420898 2.608416926275308 -8.554449081420898 -0.7002259076981161 -8.572230339050293 -0.4100161815854152 -7.30736255645752 -0.4100161815854152 8.51151168346405 3.474163313404961 8.554449081420898 3.179824033527634 7.325151562690735 3.179824033527634 8.51151168346405 3.916873597429247 8.466757535934448 2.064646501630932 7.410417795181274 2.064646501630932 8.450794816017151 2.424425283844015 8.466757535934448 -0.1701258822565581 8.450794816017151 -0.4879306383211062 7.428804636001587 -0.4879306383211062</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1002\" source=\"#ID1234\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1230\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1228\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1229\"/>\r\n                </vertices>\r\n                <triangles count=\"336\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1230\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1231\"/>\r\n                    <p>0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 10 9 2 10 1 11 12 12 6 13 0 14 6 15 14 16 1 17 16 18 0 19 8 20 8 21 2 22 18 23 10 24 20 25 2 26 22 27 10 28 1 29 24 30 6 31 12 32 16 33 12 34 0 35 26 36 14 37 6 38 14 39 22 40 1 41 28 42 16 43 8 44 30 45 8 46 18 47 20 48 18 49 2 50 32 51 20 52 10 53 34 54 10 55 22 56 36 57 24 58 12 59 24 60 26 61 6 62 38 63 12 64 16 65 26 66 40 67 14 68 42 69 22 70 14 71 28 72 44 73 16 74 28 75 8 76 30 77 30 78 18 79 46 80 20 81 48 82 18 83 32 84 50 85 20 86 34 87 32 88 10 89 52 90 34 91 22 92 36 93 54 94 24 95 38 96 36 97 12 98 24 99 56 100 26 101 44 102 38 103 16 104 58 105 40 106 26 107 40 108 42 109 14 110 42 111 52 112 22 113 60 114 44 115 28 116 62 117 28 118 30 119 64 120 30 121 46 122 48 123 46 124 18 125 50 126 48 127 20 128 66 129 50 130 32 131 34 132 68 133 32 134 52 135 70 136 34 137 72 138 54 139 36 140 54 141 56 142 24 143 74 144 36 145 38 146 56 147 58 148 26 149 76 150 38 151 44 152 58 153 78 154 40 155 40 156 80 157 42 158 82 159 52 160 42 161 60 162 84 163 44 164 62 165 60 166 28 167 64 168 62 169 30 170 86 171 64 172 46 173 88 174 46 175 48 176 50 177 90 178 48 179 66 180 92 181 50 182 68 183 66 184 32 185 34 186 70 187 68 188 52 189 94 190 70 191 96 192 54 193 72 194 74 195 72 196 36 197 54 198 98 199 56 200 76 201 74 202 38 203 56 204 100 205 58 206 84 207 76 208 44 209 58 210 102 211 78 212 78 213 80 214 40 215 80 216 82 217 42 218 52 219 82 220 94 221 104 222 84 223 60 224 62 225 106 226 60 227 64 228 108 229 62 230 86 231 110 232 64 233 88 234 86 235 46 236 90 237 88 238 48 239 92 240 90 241 50 242 112 243 92 244 66 245 68 246 114 247 66 248 70 249 116 250 68 251 94 252 104 253 70 254 118 255 96 256 72 257 96 258 98 259 54 260 120 261 72 262 74 263 98 264 100 265 56 266 122 267 74 268 76 269 100 270 102 271 58 272 124 273 76 274 84 275 102 276 126 277 78 278 78 279 128 280 80 281 80 282 130 283 82 284 82 285 124 286 94 287 94 288 84 289 104 290 106 291 104 292 60 293 108 294 106 295 62 296 110 297 108 298 64 299 132 300 110 301 86 302 134 303 86 304 88 305 90 306 136 307 88 308 92 309 138 310 90 311 112 312 140 313 92 314 114 315 112 316 66 317 68 318 116 319 114 320 70 321 104 322 116 323 142 324 96 325 118 326 118 327 72 328 120 329 144 330 98 331 96 332 122 333 120 334 74 335 98 336 146 337 100 338 124 339 122 340 76 341 100 342 148 343 102 344 94 345 124 346 84 347 102 348 150 349 126 350 78 351 126 352 128 353 128 354 130 355 80 356 82 357 130 358 124 359 106 360 116 361 104 362 108 363 152 364 106 365 110 366 154 367 108 368 132 369 156 370 110 371 134 372 132 373 86 374 136 375 134 376 88 377 138 378 136 379 90 380 140 381 138 382 92 383 158 384 140 385 112 386 160 387 112 388 114 389 152 390 114 391 116 392 162 393 142 394 118 395 142 396 144 397 96 398 164 399 118 400 120 401 144 402 146 403 98 404 166 405 120 406 122 407 146 408 148 409 100 410 130 411 122 412 124 413 148 414 150 415 102 416 150 417 168 418 126 419 126 420 170 421 128 422 128 423 166 424 130 425 152 426 116 427 106 428 154 429 152 430 108 431 156 432 154 433 110 434 172 435 156 436 132 437 174 438 132 439 134 440 136 441 176 442 134 443 178 444 136 445 138 446 140 447 180 448 138 449 158 450 182 451 140 452 160 453 158 454 112 455 152 456 160 457 114 458 162 459 184 460 142 461 162 462 118 463 164 464 186 465 144 466 142 467 164 468 120 469 166 470 188 471 146 472 144 473 166 474 122 475 130 476 146 477 190 478 148 479 192 480 150 481 148 482 150 483 194 484 168 485 126 486 168 487 170 488 170 489 166 490 128 491 154 492 160 493 152 494 156 495 196 496 154 497 172 498 198 499 156 500 174 501 172 502 132 503 176 504 174 505 134 506 178 507 176 508 136 509 180 510 178 511 138 512 182 513 180 514 140 515 200 516 182 517 158 518 196 519 158 520 160 521 202 522 184 523 162 524 184 525 186 526 142 527 204 528 162 529 164 530 186 531 188 532 144 533 170 534 164 535 166 536 188 537 190 538 146 539 190 540 192 541 148 542 192 543 194 544 150 545 194 546 206 547 168 548 168 549 204 550 170 551 196 552 160 553 154 554 156 555 198 556 196 557 208 558 198 559 172 560 210 561 172 562 174 563 212 564 174 565 176 566 214 567 176 568 178 569 180 570 216 571 178 572 182 573 218 574 180 575 200 576 220 577 182 578 200 579 158 580 196 581 202 582 222 583 184 584 202 585 162 586 204 587 184 588 224 589 186 590 204 591 164 592 170 593 226 594 188 595 186 596 228 597 190 598 188 599 230 600 192 601 190 602 232 603 194 604 192 605 194 606 234 607 206 608 168 609 206 610 204 611 198 612 200 613 196 614 208 615 236 616 198 617 210 618 208 619 172 620 212 621 210 622 174 623 214 624 212 625 176 626 216 627 214 628 178 629 218 630 216 631 180 632 220 633 218 634 182 635 236 636 220 637 200 638 238 639 222 640 202 641 222 642 224 643 184 644 206 645 202 646 204 647 224 648 226 649 186 650 226 651 228 652 188 653 228 654 230 655 190 656 230 657 232 658 192 659 232 660 234 661 194 662 234 663 238 664 206 665 198 666 236 667 200 668 240 669 236 670 208 671 242 672 208 673 210 674 244 675 210 676 212 677 246 678 212 679 214 680 216 681 248 682 214 683 218 684 250 685 216 686 220 687 252 688 218 689 236 690 254 691 220 692 238 693 256 694 222 695 206 696 238 697 202 698 222 699 258 700 224 701 224 702 260 703 226 704 262 705 228 706 226 707 264 708 230 709 228 710 266 711 232 712 230 713 268 714 234 715 232 716 234 717 270 718 238 719 240 720 254 721 236 722 242 723 240 724 208 725 244 726 242 727 210 728 246 729 244 730 212 731 248 732 246 733 214 734 250 735 248 736 216 737 252 738 250 739 218 740 254 741 252 742 220 743 270 744 256 745 238 746 256 747 258 748 222 749 258 750 260 751 224 752 260 753 262 754 226 755 262 756 264 757 228 758 264 759 266 760 230 761 266 762 268 763 232 764 268 765 270 766 234 767 240 768 272 769 254 770 242 771 274 772 240 773 276 774 242 775 244 776 278 777 244 778 246 779 280 780 246 781 248 782 282 783 248 784 250 785 252 786 284 787 250 788 254 789 286 790 252 791 288 792 256 793 270 794 258 795 256 796 290 797 258 798 292 799 260 800 260 801 294 802 262 803 262 804 296 805 264 806 266 807 264 808 298 809 300 810 268 811 266 812 302 813 270 814 268 815 272 816 286 817 254 818 274 819 272 820 240 821 276 822 274 823 242 824 278 825 276 826 244 827 280 828 278 829 246 830 282 831 280 832 248 833 284 834 282 835 250 836 286 837 284 838 252 839 302 840 288 841 270 842 288 843 290 844 256 845 258 846 290 847 292 848 292 849 294 850 260 851 294 852 296 853 262 854 296 855 298 856 264 857 300 858 266 859 298 860 300 861 302 862 268 863 272 864 304 865 286 866 274 867 306 868 272 869 276 870 308 871 274 872 310 873 276 874 278 875 312 876 278 877 280 878 314 879 280 880 282 881 316 882 282 883 284 884 286 885 318 886 284 887 320 888 288 889 302 890 322 891 290 892 288 893 292 894 290 895 324 896 294 897 292 898 326 899 294 900 328 901 296 902 296 903 330 904 298 905 300 906 298 907 332 908 302 909 300 910 334 911 304 912 318 913 286 914 306 915 304 916 272 917 308 918 306 919 274 920 310 921 308 922 276 923 312 924 310 925 278 926 314 927 312 928 280 929 316 930 314 931 282 932 318 933 316 934 284 935 334 936 320 937 302 938 320 939 322 940 288 941 322 942 324 943 290 944 292 945 324 946 326 947 294 948 326 949 328 950 328 951 330 952 296 953 330 954 332 955 298 956 334 957 300 958 332 959 304 960 324 961 318 962 306 963 326 964 304 965 308 966 328 967 306 968 330 969 308 970 310 971 332 972 310 973 312 974 334 975 312 976 314 977 316 978 320 979 314 980 318 981 322 982 316 983 314 980 320 979 334 984 316 983 322 982 320 985 318 986 324 987 322 988 326 989 324 990 304 991 328 992 326 993 306 994 328 995 308 970 330 969 330 996 310 997 332 998 334 999 332 1000 312 1001</p>\r\n                </triangles>\r\n                <triangles count=\"336\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1230\"/>\r\n                    <p>3 4 5 4 7 5 3 5 9 4 3 11 5 7 13 4 15 7 9 5 17 19 3 9 3 21 11 4 11 23 13 7 25 5 13 17 7 15 27 4 23 15 9 17 29 19 9 31 3 19 21 11 21 33 23 11 35 13 25 37 7 27 25 17 13 39 15 41 27 15 23 43 17 45 29 31 9 29 47 19 31 19 49 21 21 51 33 11 33 35 23 35 53 25 55 37 13 37 39 27 57 25 17 39 45 27 41 59 15 43 41 23 53 43 29 45 61 31 29 63 47 31 65 19 47 49 21 49 51 33 51 67 33 69 35 35 71 53 37 55 73 25 57 55 39 37 75 27 59 57 45 39 77 41 79 59 43 81 41 43 53 83 45 85 61 29 61 63 31 63 65 47 65 87 49 47 89 49 91 51 51 93 67 33 67 69 69 71 35 71 95 53 73 55 97 37 73 75 57 99 55 39 75 77 59 101 57 45 77 85 79 103 59 41 81 79 43 83 81 95 83 53 61 85 105 61 107 63 63 109 65 65 111 87 47 87 89 49 89 91 51 91 93 67 93 113 67 115 69 69 117 71 71 105 95 73 97 119 55 99 97 75 73 121 57 101 99 77 75 123 59 103 101 85 77 125 79 127 103 81 129 79 83 131 81 95 125 83 105 85 95 61 105 107 63 107 109 65 109 111 87 111 133 89 87 135 89 137 91 91 139 93 93 141 113 67 113 115 115 117 69 117 105 71 119 97 143 121 73 119 97 99 145 75 121 123 101 147 99 77 123 125 103 149 101 85 125 95 127 151 103 129 127 79 81 131 129 125 131 83 105 117 107 107 153 109 109 155 111 111 157 133 87 133 135 89 135 137 91 137 139 93 139 141 113 141 159 115 113 161 117 115 153 119 143 163 97 145 143 121 119 165 99 147 145 123 121 167 101 149 147 125 123 131 103 151 149 127 169 151 129 171 127 131 167 129 107 117 153 109 153 155 111 155 157 133 157 173 135 133 175 135 177 137 139 137 179 139 181 141 141 183 159 113 159 161 115 161 153 143 185 163 165 119 163 143 145 187 167 121 165 145 147 189 131 123 167 149 191 147 149 151 193 169 195 151 171 169 127 129 167 171 153 161 155 155 197 157 157 199 173 133 173 175 135 175 177 137 177 179 139 179 181 141 181 183 159 183 201 161 159 197 163 185 203 143 187 185 165 163 205 145 189 187 167 165 171 147 191 189 149 193 191 151 195 193 169 207 195 171 205 169 155 161 197 197 199 157 173 199 209 175 173 211 177 175 213 179 177 215 179 217 181 181 219 183 183 221 201 197 159 201 185 223 203 205 163 203 187 225 185 171 165 205 187 189 227 189 191 229 191 193 231 193 195 233 207 235 195 205 207 169 197 201 199 199 237 209 173 209 211 175 211 213 177 213 215 179 215 217 181 217 219 183 219 221 201 221 237 203 223 239 185 225 223 205 203 207 187 227 225 189 229 227 191 231 229 193 233 231 195 235 233 207 239 235 201 237 199 209 237 241 211 209 243 213 211 245 215 213 247 215 249 217 217 251 219 219 253 221 221 255 237 223 257 239 203 239 207 225 259 223 227 261 225 227 229 263 229 231 265 231 233 267 233 235 269 239 271 235 237 255 241 209 241 243 211 243 245 213 245 247 215 247 249 217 249 251 219 251 253 221 253 255 239 257 271 223 259 257 225 261 259 227 263 261 229 265 263 231 267 265 233 269 267 235 271 269 255 273 241 241 275 243 245 243 277 247 245 279 249 247 281 251 249 283 251 285 253 253 287 255 271 257 289 291 257 259 261 293 259 263 295 261 265 297 263 299 265 267 267 269 301 269 271 303 255 287 273 241 273 275 243 275 277 245 277 279 247 279 281 249 281 283 251 283 285 253 285 287 271 289 303 257 291 289 293 291 259 261 295 293 263 297 295 265 299 297 299 267 301 269 303 301 287 305 273 273 307 275 275 309 277 279 277 311 281 279 313 283 281 315 285 283 317 285 319 287 303 289 321 289 291 323 325 291 293 327 293 295 297 329 295 299 331 297 333 299 301 335 301 303 287 319 305 273 305 307 275 307 309 277 309 311 279 311 313 281 313 315 283 315 317 285 317 319 303 321 335 289 323 321 291 325 323 327 325 293 329 327 295 297 331 329 299 333 331 333 301 335 319 325 305 305 327 307 307 329 309 311 309 331 313 311 333 315 313 335 315 321 317 317 323 319 335 321 315 321 323 317 323 325 319 305 325 327 307 327 329 331 309 329 333 311 331 313 333 335</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1235\">\r\n            <mesh>\r\n                <source id=\"ID1236\">\r\n                    <float_array count=\"474\" id=\"ID1240\">-0.2632333636283875 0.1463004350662231 0.4053278565406799 -0.2554321587085724 0.1350731551647186 0.3807511031627655 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2554321587085724 0.1350731551647186 0.3807511031627655 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2632333636283875 0.1463004350662231 0.4053278565406799 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.3599225878715515 0.1203248128294945 0.3703152239322662 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3599225878715515 0.1203248128294945 0.3703152239322662 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.3616665303707123 0.1178532540798187 0.3428008258342743 -0.3616665303707123 0.1178532540798187 0.3428008258342743 -0.3599225878715515 0.2193765044212341 0.3321252465248108 -0.3599225878715515 0.2193765044212341 0.3321252465248108 -0.3686836659908295 0.1289883852005005 0.3880452811717987 -0.3686836659908295 0.1289883852005005 0.3880452811717987 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.3685232102870941 0.112412266433239 0.3536622524261475 -0.3685232102870941 0.112412266433239 0.3536622524261475 -0.3686836659908295 0.2251724451780319 0.3510836064815521 -0.3686836659908295 0.2251724451780319 0.3510836064815521 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.3948188722133637 0.1214067563414574 0.3719117343425751 -0.3948188722133637 0.1214067563414574 0.3719117343425751 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.3685232102870941 0.213781014084816 0.3145064115524292 -0.3685232102870941 0.213781014084816 0.3145064115524292 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.331480085849762 0.3918247520923615 0.2766976058483124 -0.331480085849762 0.3918247520923615 0.2766976058483124 -0.380407452583313 0.1333868056535721 0.3983803391456604 -0.380407452583313 0.1333868056535721 0.3983803391456604 -0.3475818336009979 0.391990065574646 0.2504473626613617 -0.3475818336009979 0.391990065574646 0.2504473626613617 -0.3847377300262451 0.1070445701479912 0.3405502736568451 -0.3847377300262451 0.1070445701479912 0.3405502736568451 -0.3477009534835815 0.3914711475372315 0.3060665428638458 -0.3477009534835815 0.3914711475372315 0.3060665428638458 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.406432032585144 0.1333922743797302 0.3976973593235016 -0.406432032585144 0.1333922743797302 0.3976973593235016 -0.377187043428421 0.3922291398048401 0.2198213487863541 -0.377187043428421 0.3922291398048401 0.2198213487863541 -0.3847377300262451 0.2087883651256561 0.3013535141944885 -0.3847377300262451 0.2087883651256561 0.3013535141944885 -0.4076659083366394 0.1068173423409462 0.3408112823963165 -0.4076659083366394 0.1068173423409462 0.3408112823963165 -0.4203027784824371 0.1285581141710281 0.3884540498256683 -0.4203027784824371 0.1285581141710281 0.3884540498256683 -0.4076659083366394 0.2091143876314163 0.301336407661438 -0.4076659083366394 0.2091143876314163 0.301336407661438 -0.4257177710533142 0.1123063191771507 0.352569580078125 -0.4257177710533142 0.1123063191771507 0.352569580078125 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.4285887479782105 0.1201155632734299 0.3699979782104492 -0.4285887479782105 0.1201155632734299 0.3699979782104492 -0.4184880256652832 0.3922127485275269 0.2197222262620926 -0.4184880256652832 0.3922127485275269 0.2197222262620926 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.3817976415157318 0.07198629528284073 0.2429685145616531 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4114072024822235 0.07156319916248322 0.2420414835214615 -0.3817976415157318 0.07198629528284073 0.2429685145616531 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4114072024822235 0.07156319916248322 0.2420414835214615 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.4257177710533142 0.2131323367357254 0.3136953711509705 -0.4257177710533142 0.2131323367357254 0.3136953711509705 -0.449212372303009 0.3919951915740967 0.2502450942993164 -0.449212372303009 0.3919951915740967 0.2502450942993164 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4313807189464569 0.1182028353214264 0.3435654938220978 -0.4313807189464569 0.1182028353214264 0.3435654938220978 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4203027784824371 0.2257343530654907 0.3509951531887054 -0.4203027784824371 0.2257343530654907 0.3509951531887054 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4393015503883362 0.3914935886859894 0.3062659204006195 -0.4393015503883362 0.3914935886859894 0.3062659204006195 -0.4285887479782105 0.2193097323179245 0.331741213798523 -0.4285887479782105 0.2193097323179245 0.331741213798523 -0.5296262502670288 0.1466700881719589 0.4061391949653626 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.5353522300720215 0.135115921497345 0.3808478713035584 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.5353522300720215 0.135115921497345 0.3808478713035584 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.5296262502670288 0.1466700881719589 0.4061391949653626 -0.455159991979599 0.3916418254375458 0.2787977755069733 -0.455159991979599 0.3916418254375458 0.2787977755069733 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5619023442268372 0.1410554200410843 0.431704044342041</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"158\" source=\"#ID1240\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1237\">\r\n                    <float_array count=\"474\" id=\"ID1241\">7.154997292855769e-005 -0.9095757112452636 0.4155382297614439 6.852755594235001e-005 -0.909576342414341 0.4155368486959054 0.0001263487641218279 -0.9095642658499487 0.4155632687387494 0.0001263487641218279 -0.9095642658499487 0.4155632687387494 -6.852755594235001e-005 0.909576342414341 -0.4155368486959054 -0.0001263487641218279 0.9095642658499487 -0.4155632687387494 -0.0001263487641218279 0.9095642658499487 -0.4155632687387494 -7.154997292855769e-005 0.9095757112452636 -0.4155382297614439 0.9447151072035335 -0.3209045653834627 0.06733220728200723 0.4384268685113827 -0.8133494384010177 0.3824193666906158 0.7939855858878951 -0.1106473800233164 0.5977826082249566 -0.7939855858878951 0.1106473800233164 -0.5977826082249566 -0.4384268685113827 0.8133494384010177 -0.3824193666906158 -0.9447151072035335 0.3209045653834627 -0.06733220728200723 3.04203672274447e-005 -0.9095842994173099 0.4155194355600263 3.04203672274447e-005 -0.9095842994173099 0.4155194355600263 -3.04203672274447e-005 0.9095842994173099 -0.4155194355600263 -3.04203672274447e-005 0.9095842994173099 -0.4155194355600263 0.7459218330116282 -0.529476007767462 -0.4040492250149765 -0.7459218330116282 0.529476007767462 0.4040492250149765 0.9995435931490206 -0.02557286258534972 -0.01608210477319518 -0.9995435931490206 0.02557286258534972 0.01608210477319518 0.3268345149983279 -0.7222415736188392 0.609545986076843 -0.3268345149983279 0.7222415736188392 -0.609545986076843 -0.5591657910973846 -0.7999263466458474 0.2178335557444341 -0.525736770613326 -0.8229577751390799 0.2152704075417861 -0.5429581458881555 -0.8113378986682585 0.2166270204712956 0.5429581458881555 0.8113378986682585 -0.2166270204712956 0.525736770613326 0.8229577751390799 -0.2152704075417861 0.5591657910973846 0.7999263466458474 -0.2178335557444341 0.3232419702666449 -0.931578117861167 0.1663635746802267 -0.3232419702666449 0.931578117861167 -0.1663635746802267 0.8161955627422841 0.1770353984243641 0.5499847916665811 -0.8161955627422841 -0.1770353984243641 -0.5499847916665811 0.367804967138664 0.05323771252511472 0.9283777529180778 -0.367804967138664 -0.05323771252511472 -0.9283777529180778 0.001422634435665874 -0.9075303617627482 0.4199840694479229 -0.001422634435665874 0.9075303617627482 -0.4199840694479229 -0.5742241777860956 -0.7888937276389303 0.2188910234290935 0.5742241777860956 0.7888937276389303 -0.2188910234290935 0.7961764647920196 -0.2076752187963572 -0.5683080506285011 -0.7961764647920196 0.2076752187963572 0.5683080506285011 0.3256245194348662 -0.653574442369451 -0.6832343087289117 -0.3256245194348662 0.653574442369451 0.6832343087289117 0.974033649817812 -0.1940885357400465 -0.1165679600785597 -0.974033649817812 0.1940885357400465 0.1165679600785597 0.1616895397440462 -0.6332904620999461 0.7568353079439377 -0.1616895397440462 0.6332904620999461 -0.7568353079439377 0.7462209594081926 -0.3077281488075161 -0.590303029105743 -0.7462209594081926 0.3077281488075161 0.590303029105743 0.1363240481501958 -0.9903877858573049 0.02340486104654377 -0.1363240481501958 0.9903877858573049 -0.02340486104654377 0.8043460974294051 0.05891508458270945 0.5912329222554325 -0.8043460974294051 -0.05891508458270945 -0.5912329222554325 0.3600849068814223 0.2993654758240678 0.8835831436377829 -0.3600849068814223 -0.2993654758240678 -0.8835831436377829 -0.3440377057128069 0.03357744818432158 0.9383552696187609 0.3440377057128069 -0.03357744818432158 -0.9383552696187609 -0.1305064306091962 -0.6524378774858333 0.7465205205427564 0.1305064306091962 0.6524378774858333 -0.7465205205427564 0.334771657383111 -0.3926254953009006 -0.8566056022772017 -0.334771657383111 0.3926254953009006 0.8566056022772017 0.3459775000900096 -0.3151107792028358 -0.8837447404435566 -0.3459775000900096 0.3151107792028358 0.8837447404435566 -0.1260648181863209 -0.9917475145758299 0.02333514406028312 0.1260648181863209 0.9917475145758299 -0.02333514406028312 -0.3146699866686367 -0.7026366235699806 0.6381885103228808 0.3146699866686367 0.7026366235699806 -0.6381885103228808 -0.3091364483100864 -0.3196699407816844 -0.8956817433033117 0.3091364483100864 0.3196699407816844 0.8956817433033117 -0.4045527655689166 -0.9035508367343974 0.1411840830515661 0.4045527655689166 0.9035508367343974 -0.1411840830515661 -0.3085605894463301 -0.6493048447907174 -0.6951212708382872 0.3085605894463301 0.6493048447907174 0.6951212708382872 0.4043726751136649 0.1731169967969206 0.8980608248005439 -0.4043726751136649 -0.1731169967969206 -0.8980608248005439 -0.7740390339621123 -0.09553922007584777 0.6258880341804747 0.7740390339621123 0.09553922007584777 -0.6258880341804747 -0.4056396103659939 -0.8085508928082049 0.4262651290466761 0.4056396103659939 0.8085508928082049 -0.4262651290466761 -0.3279646841002163 -0.4003026479086039 -0.8556850799566426 0.3279646841002163 0.4003026479086039 0.8556850799566426 -2.754448984373484e-005 -0.9090599037003082 0.4166654422023591 -1.434938109444597e-005 -0.9093464648875964 0.4160396694914158 -2.754448984373484e-005 -0.9090599037003082 0.4166654422023591 -1.363567733812147e-005 -0.9093619522663444 0.4160058167675192 1.434938109444597e-005 0.9093464648875964 -0.4160396694914158 2.754448984373484e-005 0.9090599037003082 -0.4166654422023591 1.363567733812147e-005 0.9093619522663444 -0.4160058167675192 2.754448984373484e-005 0.9090599037003082 -0.4166654422023591 -0.3299024776612259 0.3083376942217712 0.8922400022163241 0.3299024776612259 -0.3083376942217712 -0.8922400022163241 -0.8455678684091331 -0.1881845255135273 -0.4996014053936233 0.8455678684091331 0.1881845255135273 0.4996014053936233 -0.8183546287287127 -0.2907122829469654 -0.4957641275667838 0.8183546287287127 0.2907122829469654 0.4957641275667838 -0.9458502421880254 -0.2838528046477783 0.1574639788854709 0.9458502421880254 0.2838528046477783 -0.1574639788854709 -0.7896396980138031 -0.4780241226557592 -0.3846584010259772 0.7896396980138031 0.4780241226557592 0.3846584010259772 -3.728876776365491e-006 -0.9095767996909002 0.4155358533871124 -3.728876776365491e-006 -0.9095767996909002 0.4155358533871124 3.728876776365491e-006 0.9095767996909002 -0.4155358533871124 3.728876776365491e-006 0.9095767996909002 -0.4155358533871124 -0.7919122321604043 0.1926328944419546 0.5794545577814024 0.7919122321604043 -0.1926328944419546 -0.5794545577814024 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 0 0.9928578450812609 0.1193033924940749 0 0.9928578450812609 0.1193033924940749 0 0.9928578450812609 0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0.7816935535743665 0.06795371568789234 0.6199495792598683 0.7816935535743665 -0.06795371568789234 -0.6199495792598683 -0.9929097945071276 0.02385699098022405 0.1164516378295436 0.9929097945071276 -0.02385699098022405 -0.1164516378295436 -5.859460411438772e-005 -0.9095740687183863 0.4155418271146151 -0.0001156458150618025 -0.9095662717086603 0.4155588815030348 -5.978439340967497e-005 -0.9095739061471146 0.4155421827950879 -0.0001156458150618025 -0.9095662717086603 0.4155588815030348 0.0001156458150618025 0.9095662717086603 -0.4155588815030348 5.978439340967497e-005 0.9095739061471146 -0.4155421827950879 0.0001156458150618025 0.9095662717086603 -0.4155588815030348 5.859460411438772e-005 0.9095740687183863 -0.4155418271146151 -0.9890238215101863 -0.1175613266145401 0.08950539073160209 0.9890238215101863 0.1175613266145401 -0.08950539073160209 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 -0.3463720517402847 0.1847738626352813 0.9197200777737015 0.3463720517402847 -0.1847738626352813 -0.9197200777737015 -1.483031748329013e-005 -0.9095800476225388 0.4155287435870616 -1.483031748329013e-005 -0.9095800476225388 0.4155287435870616 1.483031748329013e-005 0.9095800476225388 -0.4155287435870616 1.483031748329013e-005 0.9095800476225388 -0.4155287435870616 0.5807092003594135 -0.7878595155234006 0.2050712276677619 0.5777978740210455 -0.7889102339766428 0.2092134305050199 0.5752096050775968 -0.7898221279238338 0.21287300549469 -0.5752096050775968 0.7898221279238338 -0.21287300549469 -0.5777978740210455 0.7889102339766428 -0.2092134305050199 -0.5807092003594135 0.7878595155234006 -0.2050712276677619 0.5729543618345776 -0.7905998681501759 0.2160443189154868 -0.5729543618345776 0.7905998681501759 -0.2160443189154868</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"158\" source=\"#ID1241\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1239\">\r\n                    <float_array count=\"488\" id=\"ID1242\">-2.63213038303705 3.378607622204579 -2.554133930553064 3.166048461566486 -3.587391906179787 3.213099664198045 -3.50313724758169 3.025141641425929 -1.045319997864637 3.894876806025977 -1.160862126351026 3.94820031540899 -1.015187397600491 4.092764163498988 -2.632284705724435 3.378530270152548 -2.53997460493407 3.46794460018157 -2.554276411449781 3.165973798754651 -2.417760943946474 3.122053832822153 -1.968270958422909 2.944184880112239 -2.117713939615053 2.773720815463494 -2.088736626084283 2.990275045555151 1.962256326470615 3.443412943408657 2.076606523626401 3.621259255608264 2.880180304337664 3.178785496016955 -1.610510223683513 3.934838441292375 -1.608181009007588 4.104677324854946 -1.477774829738932 4.086917556437528 -2.752215170559102 2.855029146521831 -2.953567051477624 3.177199976881162 -2.712584059120986 3.305623980831408 0.9262408536690879 1.135273511479787 1.031456717394809 1.325083520305112 1.940257989943857 1.041639633748331 -1.991581193229378 2.765433417334989 -2.079062651350002 2.850908629070537 -1.962284483885672 2.9819610514638 3.0451415689917 3.243791996790366 2.251318087510055 3.697026584523082 3.123671631587728 3.402710175634945 -1.373648664845498 4.173606268015004 -1.299628758783695 4.338301173687359 -1.244354189338972 4.151378445934692 -3.609732514477293 3.023515457575924 -3.958777436169807 3.037469723625358 -3.698106505987994 3.178484654265517 -2.483947490368943 2.900519119337377 -2.736047809243717 2.823433714152102 -2.703970739913745 3.274400369748774 1.889351512430463 0.9735185433538492 0.9367106543766401 1.219089245779115 1.950873127176101 1.12643457960694 -3.6099706886097 3.024834741402522 -3.695257113375188 2.879532741405246 -3.959017175547804 3.038764757168724 -2.715953227610941 2.311948976600159 -2.917988703346826 2.195736082177195 -2.801558566947437 2.398591749173 2.139780247186715 3.575680708223637 2.196425072156733 3.740258156433743 3.868317254469622 3.09451357754042 2.770953920766503 3.679310685817001 2.910212431396204 3.836884914240899 3.606214276684401 3.324599139223731 -1.388274266682096 4.303677939285445 -1.272571655037253 4.344387171593602 -1.347709011128989 4.180005708010928 -3.665593177900184 3.220691373475351 -3.928131927426224 3.081837356524855 -3.78210775391995 3.309640463856862 1.130311605295193 1.126377820761716 1.206299475270031 1.275214239361596 2.907066575813981 0.5852342416995015 1.075584867740999 -0.8051297767572097 0.05284343010698259 -0.6419163210803518 0.1694911801936667 -0.4677180556519611 -3.718476757910115 2.863521288867862 -3.87887026624569 2.750507641232472 -3.984108898022294 3.020815664882268 -2.965268422994861 2.222128669978276 -3.0176028482097 2.320260662551189 -2.848097127192144 2.42472007513564 0.8346455045968398 0.6332092869589715 2.552734102432543 0.129416192031585 2.499370292160392 -0.1091776051487044 2.337403123774756 3.799527166530098 3.995023245851485 3.394946101639595 3.994761601601176 3.130999170019357 3.658828574919182 3.277701144631026 2.97219994711978 3.797755710265468 3.745284641653469 3.385474241904113 -3.80407452583313 1.900967347094276 -4.117704927921295 1.994636624096851 -3.76063346862793 1.994636624096851 -3.962779579329583 3.041395312246116 -4.080372196636212 3.264611387099298 -3.820145293746886 3.270523676416271 0.3801030424848884 -0.3465349114581305 2.08373234170659 -1.017605435598144 1.960784316884723 -1.338437785425406 1.011564768524706 -0.8679895976751437 0.07835258162855172 -0.55549004156412 1.102073393762526 -0.7148585526376634 -3.830687475043129 2.804184661643422 -4.059977335877058 2.806447143685902 -3.929307467255845 3.076032806541181 -3.840650724818295 2.282253252091462 -3.801559492599367 2.180375066078454 -4.06994220151686 2.284412015148941 2.806324945484714 3.776306591838458 2.862592946750355 3.895811282485938 4.41521860624963 3.264266924492304 -4.148633308407015 1.858109092092074 -4.209966339227252 1.950404146035647 -3.889037958600043 1.873540194319601 -3.91024878588611 3.091265282919711 -4.162843133981847 3.235502402638323 -4.022756456893595 3.316097428165297 1.804807190581595 -1.483917399848166 0.1327346838318974 -0.6080369253746125 0.250299370182768 -0.4667385074936911 -3.871135737455754 -0.922493003367199 -4.100439852056908 -0.9230012540089677 -3.821057423243681 -0.1255950877840216 -4.075401395101349 2.78586827125366 -4.255855413971 2.88801979264803 -3.946759728136424 3.056056913209712 -3.80853533744812 2.166517314017002 -4.106560349464417 2.166517314017002 -4.076659083366394 2.27096666118209 2.884313037022852 3.883343937946692 4.464238345634785 3.45766940877569 4.433186107104556 3.24612279044892 -4.116867083721242 0.8355899834767357 -4.027425087298078 1.009292965064785 -3.911392188290299 0.9591490281471551 -3.932537492759314 3.075582033218262 -4.27037241076195 3.059062345964517 -4.186452856359546 3.218376547966553 -3.654507412820775 0.1045054500660082 -3.789056795842323 0.09287938346886765 -3.604199663229611 0.2351718893821941 -4.162080062192815 -2.134557563507187 -3.835212772701145 -0.5537914285606398 -3.749076225537093 -2.132638084670926 -4.076659083366395 -0.9609096291555792 -4.106560349464417 -0.1611151102336025 -3.808535337448121 -0.1611151102336027 -4.23375680939343 -2.075608589924791 -4.102573149155481 -0.4997027753894155 -3.873268508805136 -0.4993724616566957 -4.242544917072 2.909227215851943 -4.270258826944595 3.059580446390041 -3.932423128148093 3.076090249226915 -4.153657258174265 2.738967934813566 -4.198452213939097 2.63786798315234 -4.340722410538401 2.833473573004768 -3.808568989192585 2.711296288180668 -3.817998225232173 1.973450218548164 -4.106594001072074 2.711293328307002 -4.114093706563162 1.965431016429906 0.732578898063736 0.1227938792054498 0.8775865696850392 -0.0259031933701444 -0.02550715650289914 -0.3041852114695976 -3.776598173440457 1.620656936664281 -3.769765041652121 1.448290098568495 -3.911604173469502 1.612976061742652 -3.385369088698196 3.594503282257561 -2.370403948015334 3.77963298969028 -3.289356085657654 3.436664800728592 -5.394351889746344 2.310255168302022 -5.531872946933133 2.633321255562824 -3.713732337249778 3.174091889593237 -3.889304833134624 2.365421909394091 -4.089795617994382 2.466351634785759 -3.963381092801987 2.505727375327931 -4.121228868352374 2.707894396648292 -4.336747437386265 2.83253564941946 -4.258426856026714 2.905729610370996 -4.114074958573479 1.96581464507311 -3.817979366256187 1.973831313140475 -4.199585029464345 1.853778971787298 -3.740375050887728 1.853779587175583 1.056613651199812 -0.3380899033010843 0.2599314411611681 -0.7503730004179626 0.1637812586082857 -0.6361592099273964 -3.625609780677588 1.470019006260463 -3.749122315784419 1.425305607118445 -3.773776743402028 1.631220182217955 -5.648011933897507 2.435838676545936 -3.984133733066641 3.177350696966402 -3.858569836676477 3.032917600025752 -3.319925345597347 3.645233257028249 -2.432301748736574 4.002032074398338 -2.301567409380017 3.818449438756614 -3.644154888198931 2.686037288831495 -3.725814568994564 2.615137532808995 -3.846415389615387 2.784757725480801 -4.233378767967224 1.105920625207006 -4.19958233833313 1.321346009862422 -3.740372359752655 1.321346009862422 3.740372359752655 1.72767490928385 4.233378767967224 1.497410698066083 4.19958233833313 1.72767490928385 -1.229035429433876 -1.135141619079729 -2.798357227829818 -1.702964175906817 -1.288276156667242 -1.006323504849119 -0.2856228011415883 1.764231067308358 -1.074809300350776 1.300467174443276 -1.157417466045279 1.46022175021733 -5.296448941949752 3.385283044686555 -4.297830011210234 3.225214911140218 -5.353694049117336 3.166543500717179 -4.386127765099642 3.030401783887719 -0.4408526238691178 1.958105914965327 -0.3215888104597184 1.773783870337314 -1.236038297165288 1.500727647207349 -4.754764565415463 2.731318227310149 -2.946988463528547 3.011638785558609 -4.746216689148262 2.501964216298292 -1.455300936847106 3.769211273504801 -1.355374774016136 3.591468562779232 -2.30160619104441 3.344906032491399 -4.233378767967224 1.105920625207006 -3.740372359752655 1.321346009862423 -3.705208897590637 1.105920625207006 3.705208897590637 1.497410698066083 -2.90680081264382 -1.56447180063519 -2.954947297464281 -1.326590688235755 -1.382410700753786 -0.887391473981207 -2.251513409819251 1.229897929918368 -2.187152370213687 1.065030952520911 -3.908840734075562 0.8468919766099712 -5.296286415903058 3.38548417288662 -5.353544330087429 3.166746703318761 -5.421686338526626 3.465686649193497 -5.519764233846809 3.147562017189221 -1.076216311928042 3.430300695985917 -1.933439566116338 3.019782772118031 -1.993828948218517 3.163892373159887 -2.931510696520517 2.881073904661668 -2.865565543124608 2.738479308013299 -4.67447627507849 2.462725569490671 -3.811898130570406 0.3234380588460911 -2.093010548006573 0.5548424321950821 -3.809698603504408 0.07393165446856226 -3.64755428466631 3.617721750936123 -3.910352172916965 3.670072295123552 -3.468904282222147 3.913365430898217 -3.504503565450099 3.939119908911015 -3.945426023973666 3.695237842850044 -3.722119223755929 4.070378628286982</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"244\" source=\"#ID1242\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1238\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1236\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1237\"/>\r\n                </vertices>\r\n                <triangles count=\"86\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1238\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1239\"/>\r\n                    <p>0 0 1 1 2 2 3 3 2 2 1 1 8 4 9 5 10 6 0 7 14 8 1 9 15 10 1 9 14 8 8 11 18 12 9 13 8 14 10 15 20 16 9 17 22 18 10 19 24 20 25 21 26 22 18 23 8 24 20 25 18 26 30 27 9 28 20 29 10 30 32 31 22 32 34 33 10 34 9 35 36 36 22 37 38 38 24 39 26 40 40 41 18 42 20 43 9 44 30 45 36 46 18 47 42 48 30 49 20 50 32 51 44 52 10 53 34 54 32 55 46 56 34 57 22 58 22 59 36 60 46 61 40 62 20 63 48 64 40 65 42 66 18 67 30 68 50 69 36 70 42 71 50 72 30 73 20 74 44 75 48 76 32 77 52 78 44 79 32 80 34 81 54 82 46 83 56 84 34 85 36 86 58 87 46 88 40 89 48 90 60 91 62 92 42 93 40 94 50 95 64 96 36 97 50 98 42 99 64 100 32 101 54 102 52 103 58 104 56 105 46 106 36 107 66 108 58 109 60 110 62 111 40 112 62 113 68 114 42 115 64 116 70 117 36 118 42 119 72 120 64 121 54 122 74 123 52 124 76 125 56 126 58 127 36 128 78 129 66 130 66 131 76 132 58 133 80 134 62 135 60 136 68 137 72 138 42 139 80 140 68 141 62 142 70 143 78 144 36 145 64 146 72 147 70 148 82 149 83 150 84 151 85 152 84 151 83 150 56 153 76 154 90 155 66 156 78 157 76 158 92 159 72 160 68 161 80 162 94 163 68 164 70 165 96 166 78 167 72 168 98 169 70 170 85 171 83 172 100 173 101 174 100 173 83 172 76 175 104 176 90 177 78 178 96 179 76 180 94 181 92 182 68 183 92 184 98 185 72 186 70 187 98 188 96 189 106 190 107 191 108 192 115 193 116 194 117 195 104 196 118 197 90 198 76 199 120 200 104 201 122 202 123 203 124 204 125 205 124 204 123 203 76 206 96 207 120 208 130 209 92 210 94 211 96 212 98 213 92 214 132 215 133 216 134 217 141 193 142 218 143 194 118 219 144 220 90 221 104 222 120 223 118 224 122 225 124 226 146 227 147 228 146 227 124 226 96 229 92 230 120 231 120 232 92 233 130 234 118 235 120 236 130 237 150 238 151 239 152 240 152 241 151 242 156 243</p>\r\n                </triangles>\r\n                <triangles count=\"86\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1238\"/>\r\n                    <p>4 5 6 5 4 7 11 12 13 16 4 17 4 16 7 12 19 13 21 11 13 11 23 12 27 28 29 21 13 19 12 31 19 33 11 21 11 35 23 23 37 12 27 29 39 21 19 41 37 31 12 31 43 19 45 33 21 33 35 11 23 35 47 47 37 23 49 21 41 19 43 41 37 51 31 31 51 43 49 45 21 45 53 33 55 35 33 35 57 47 47 59 37 61 49 41 41 43 63 37 65 51 65 43 51 53 55 33 47 57 59 59 67 37 41 63 61 43 69 63 37 71 65 65 73 43 53 75 55 59 57 77 67 79 37 59 77 67 61 63 81 43 73 69 63 69 81 37 79 71 71 73 65 86 87 88 87 86 89 91 77 57 77 79 67 69 73 93 69 95 81 79 97 71 71 99 73 86 102 103 102 86 88 91 105 77 77 97 79 69 93 95 73 99 93 97 99 71 109 110 111 112 113 114 91 119 105 105 121 77 126 127 128 127 126 129 121 97 77 95 93 131 93 99 97 135 136 137 138 139 140 91 145 119 119 121 105 127 148 149 148 127 129 121 93 97 131 93 121 131 121 119 153 154 155 157 154 153</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1243\">\r\n            <mesh>\r\n                <source id=\"ID1244\">\r\n                    <float_array count=\"36\" id=\"ID1247\">-0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.367525190114975 0.391314297914505 0.3244994282722473</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"12\" source=\"#ID1247\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1245\">\r\n                    <float_array count=\"36\" id=\"ID1248\">-0.3440377057128069 0.03357744818432158 0.9383552696187609 -0.3299024776612259 0.3083376942217712 0.8922400022163241 0.3600849068814223 0.2993654758240678 0.8835831436377829 -0.3600849068814223 -0.2993654758240678 -0.8835831436377829 0.3299024776612259 -0.3083376942217712 -0.8922400022163241 0.3440377057128069 -0.03357744818432158 -0.9383552696187609 -0.3463720517402847 0.1847738626352813 0.9197200777737015 0.3463720517402847 -0.1847738626352813 -0.9197200777737015 0.367804967138664 0.05323771252511472 0.9283777529180778 -0.367804967138664 -0.05323771252511472 -0.9283777529180778 0.4043726751136649 0.1731169967969206 0.8980608248005439 -0.4043726751136649 -0.1731169967969206 -0.8980608248005439</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"12\" source=\"#ID1248\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1246\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1244\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1245\"/>\r\n                </vertices>\r\n                <triangles count=\"8\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1246\"/>\r\n                    <p>0 1 2 3 4 5 1 6 2 3 7 4 0 2 8 9 3 5 2 6 10 11 7 3</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1249\">\r\n            <mesh>\r\n                <source id=\"ID1250\">\r\n                    <float_array count=\"24\" id=\"ID1253\">-0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5519742369651794 0.1341030150651932 0.3786295652389526</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" source=\"#ID1253\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1251\">\r\n                    <float_array count=\"24\" id=\"ID1254\">0.5855516228701534 0.6673756912043336 -0.4601510444882938 0.5847287981283337 0.6684276671237125 -0.4596701931417198 0.5840114434190137 0.66934247689241 -0.4592507839766566 -0.5840114434190137 -0.66934247689241 0.4592507839766566 -0.5847287981283337 -0.6684276671237125 0.4596701931417198 -0.5855516228701534 -0.6673756912043336 0.4601510444882938 0.5865086810349907 0.6661485009135626 -0.4607100409164197 -0.5865086810349907 -0.6661485009135626 0.4607100409164197</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" source=\"#ID1254\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1252\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1250\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1251\"/>\r\n                </vertices>\r\n                <triangles count=\"4\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1252\"/>\r\n                    <p>0 1 2 3 4 5 0 6 1 4 7 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1255\">\r\n            <mesh>\r\n                <source id=\"ID1256\">\r\n                    <float_array count=\"24\" id=\"ID1259\">-0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2540025115013123 0.1510234326124191 0.4156664907932282</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" source=\"#ID1259\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1257\">\r\n                    <float_array count=\"24\" id=\"ID1260\">-0.5664893720279264 0.680870144856998 -0.46422584721428 -0.5784378393100765 0.6758352019951724 -0.456789279425902 -0.5524855132419443 0.6865142307862299 -0.4727134106261178 0.5524855132419443 -0.6865142307862299 0.4727134106261178 0.5784378393100765 -0.6758352019951724 0.456789279425902 0.5664893720279264 -0.680870144856998 0.46422584721428 -0.5389551592185798 0.691712799742818 -0.4806877770690945 0.5389551592185798 -0.691712799742818 0.4806877770690945</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" source=\"#ID1260\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1258\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1256\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1257\"/>\r\n                </vertices>\r\n                <triangles count=\"4\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1258\"/>\r\n                    <p>0 1 2 3 4 5 6 0 2 3 5 7</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1261\">\r\n            <mesh>\r\n                <source id=\"ID1262\">\r\n                    <float_array count=\"144\" id=\"ID1265\">-0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.5398718118667603 0.5160609483718872 -0.2822246551513672 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5398718118667603 0.5160609483718872 -0.2822246551513672 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4597278535366058 0.5886020064353943 -0.2516790628433228 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4597278535366058 0.5886020064353943 -0.2516790628433228 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5398718118667603 0.5885813236236572 -0.2513153851032257 -0.5398718118667603 0.5885813236236572 -0.2513153851032257 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4733552634716034 0.6066198348999023 -0.2439994066953659 -0.4733552634716034 0.6066198348999023 -0.2439994066953659 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5270576477050781 0.606323778629303 -0.2437526285648346 -0.5270576477050781 0.606323778629303 -0.2437526285648346 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5270576477050781 0.4954752027988434 -0.2909989953041077 -0.5270576477050781 0.4954752027988434 -0.2909989953041077 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4597278535366058 0.5160419344902039 -0.2826054692268372 -0.4597278535366058 0.5160419344902039 -0.2826054692268372 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4733411073684692 0.4960610568523407 -0.2911213934421539 -0.4733411073684692 0.4960610568523407 -0.2911213934421539</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID1265\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1263\">\r\n                    <float_array count=\"144\" id=\"ID1266\">1.018605038254633e-017 -0.3920865992729213 0.9199283117018389 -1.492644435246423e-006 -0.3920905111252245 0.9199266444034179 1.263479483478821e-017 -0.392094972052365 0.9199247430585043 -1.263479483478821e-017 0.392094972052365 -0.9199247430585043 1.492644435246423e-006 0.3920905111252245 -0.9199266444034179 -1.018605038254633e-017 0.3920865992729213 -0.9199283117018389 -7.160122051603417e-007 -0.3920995868816517 0.9199227760886918 7.160122051603417e-007 0.3920995868816517 -0.9199227760886918 -0.9657779994111223 -0.2556768389188145 -0.04361433129067741 -0.961816197635081 -0.2697193962519665 -0.04648708694110092 -0.952955038844713 0.2700497766246847 0.137658316441213 0.952955038844713 -0.2700497766246847 -0.137658316441213 0.961816197635081 0.2697193962519665 0.04648708694110092 0.9657779994111223 0.2556768389188145 0.04361433129067741 4.226078624807187e-017 -0.3920867037195872 0.9199282671851697 -4.226078624807187e-017 0.3920867037195872 -0.9199282671851697 0.9556301563420309 0.2865716167704185 0.06817413550089126 0.9464262773971828 0.3144432018787364 0.07350356620164039 0.4461077867563716 0.8529219849936016 0.2711308357784226 -0.4461077867563716 -0.8529219849936016 -0.2711308357784226 -0.9464262773971828 -0.3144432018787364 -0.07350356620164039 -0.9556301563420309 -0.2865716167704185 -0.06817413550089126 -5.489730722854122e-006 -0.392084984740443 0.9199289998206108 5.489730722854122e-006 0.392084984740443 -0.9199289998206108 -0.9617606342588828 0.2423096741065457 0.1276812602707654 0.9617606342588828 -0.2423096741065457 -0.1276812602707654 -0.4995310403535877 -0.8292392942562499 -0.2506609913501879 0.4995310403535877 0.8292392942562499 0.2506609913501879 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9634604031238594 -0.2417599937723264 -0.1153089633272929 -0.9634604031238594 0.2417599937723264 0.1153089633272929 0.4722805523885353 0.8390374649568232 0.2701244384249742 -0.4722805523885353 -0.8390374649568232 -0.2701244384249742 -0.4554289994794556 0.8379380261111193 0.3007395731029473 -0.4946133559482358 0.8179775718930541 0.2937180961356777 0.4946133559482358 -0.8179775718930541 -0.2937180961356777 0.4554289994794556 -0.8379380261111193 -0.3007395731029473 -0.496138447156815 -0.8307139620940133 -0.2525093155408146 0.496138447156815 0.8307139620940133 0.2525093155408146 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9563447960919848 -0.2662293121312899 -0.1205262807435803 -0.9563447960919848 0.2662293121312899 0.1205262807435803 0.4944995435269457 -0.8167100971460085 -0.2974135482310776 -0.4944995435269457 0.8167100971460085 0.2974135482310776 0.4800780324579885 -0.8242189406550274 -0.3003135371853403 -0.4800780324579885 0.8242189406550274 0.3003135371853403</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID1266\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1264\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1262\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1263\"/>\r\n                </vertices>\r\n                <triangles count=\"44\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1264\"/>\r\n                    <p>0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 0 2 3 5 15 16 17 18 19 20 21 1 22 6 7 23 4 10 9 24 25 12 11 8 26 9 12 27 13 28 0 14 15 5 29 30 17 16 21 20 31 16 18 32 33 19 21 34 35 18 19 36 37 10 24 34 37 25 11 26 38 9 12 39 27 40 28 14 15 29 41 42 30 16 21 31 43 35 32 18 19 33 36 34 24 35 36 25 37 44 38 26 27 39 45 44 30 42 43 31 45 46 38 44 45 39 47 46 44 42 43 45 47</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1267\">\r\n            <mesh>\r\n                <source id=\"ID1268\">\r\n                    <float_array count=\"150\" id=\"ID1271\">-0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.4343203604221344 0.5160609483718872 -0.2822246551513672 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4343203604221344 0.5160609483718872 -0.2822246551513672 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.354176789522171 0.5886020064353943 -0.2516790628433228 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.354176789522171 0.5886020064353943 -0.2516790628433228 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4343203604221344 0.5885813236236572 -0.2513153851032257 -0.4343203604221344 0.5885813236236572 -0.2513153851032257 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3678038418292999 0.6066198348999023 -0.2439994066953659 -0.3678038418292999 0.6066198348999023 -0.2439994066953659 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4215061962604523 0.606323778629303 -0.2437526285648346 -0.4215061962604523 0.606323778629303 -0.2437526285648346 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4215061962604523 0.4954752027988434 -0.2909989953041077 -0.4215061962604523 0.4954752027988434 -0.2909989953041077 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.354176789522171 0.5160419344902039 -0.2826054692268372 -0.354176789522171 0.5160419344902039 -0.2826054692268372 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.3677899539470673 0.4960610568523407 -0.2911213934421539 -0.3677899539470673 0.4960610568523407 -0.2911213934421539</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"50\" source=\"#ID1271\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1269\">\r\n                    <float_array count=\"150\" id=\"ID1272\">1.577987075014722e-017 -0.3920865992778976 0.919928311699718 -1.49264799376819e-006 -0.3920905111273643 0.9199266444025057 9.377758992654222e-018 -0.3920949720469876 0.9199247430607962 -9.377758992654222e-018 0.3920949720469876 -0.9199247430607962 1.49264799376819e-006 0.3920905111273643 -0.9199266444025057 -1.577987075014722e-017 0.3920865992778976 -0.919928311699718 -7.160187554859395e-007 -0.3920995868705536 0.9199227760934221 7.160187554859395e-007 0.3920995868705536 -0.9199227760934221 -0.9657782097535681 -0.2556749505845612 -0.04362074287280278 -0.9618163096584675 -0.2697179776438742 -0.04649299958773773 -0.9529549464436813 0.2700530802757604 0.1376524750307613 0.9529549464436813 -0.2700530802757604 -0.1376524750307613 0.9618163096584675 0.2697179776438742 0.04649299958773773 0.9657782097535681 0.2556749505845612 0.04362074287280278 4.398390274986898e-017 -0.3920867037122621 0.9199282671882916 -4.398390274986898e-017 0.3920867037122621 -0.9199282671882916 0.9556306576448407 0.2865699003687983 0.06817432340629723 0.9464258468055602 0.3144451341472773 0.07350084427732247 0.4461060594785385 0.8529213522706366 0.2711356681393269 -0.4461060594785385 -0.8529213522706366 -0.2711356681393269 -0.9464258468055602 -0.3144451341472773 -0.07350084427732247 -0.9556306576448407 -0.2865699003687983 -0.06817432340629723 -5.489764998567177e-006 -0.3920849847041301 0.9199289998360877 5.489764998567177e-006 0.3920849847041301 -0.9199289998360877 -0.9617605142813323 0.2423129442383939 0.127675957892739 0.9617605142813323 -0.2423129442383939 -0.127675957892739 -0.4995316796696845 -0.8292382630216973 -0.2506631288146341 0.4995316796696845 0.8292382630216973 0.2506631288146341 1.401435880184439e-017 -0.3920801801035452 0.9199310476171416 -1.401435880184439e-017 0.3920801801035452 -0.9199310476171416 0.9634607759132623 -0.2417572975523022 -0.1153115014073698 -0.9634607759132623 0.2417572975523022 0.1153115014073698 0.4722914400859864 0.8390289711358017 0.2701317849056331 -0.4722914400859864 -0.8390289711358017 -0.2701317849056331 -0.4554294014629058 0.8379385721984621 0.3007374428054177 -0.4946125368993921 0.8179786090951815 0.2937165868735704 0.4946125368993921 -0.8179786090951815 -0.2937165868735704 0.4554294014629058 -0.8379385721984621 -0.3007374428054177 -0.496137727824831 -0.8307138391627682 -0.2525111333234005 0.496137727824831 0.8307138391627682 0.2525111333234005 0 -0.3920801801035452 0.9199310476171416 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9563451698804476 -0.266226810714687 -0.120528840129754 -0.9563451698804476 0.266226810714687 0.120528840129754 0.4945017044715873 -0.8167083583261001 -0.2974147301580424 -0.4945017044715873 0.8167083583261001 0.2974147301580424 0.4800785693254803 -0.8242181053042629 -0.3003149715932439 -0.4800785693254803 0.8242181053042629 0.3003149715932439</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"50\" source=\"#ID1272\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1270\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1268\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1269\"/>\r\n                </vertices>\r\n                <triangles count=\"44\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1270\"/>\r\n                    <p>0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 0 2 3 5 15 16 17 18 19 20 21 1 22 6 7 23 4 10 9 24 25 12 11 8 26 9 12 27 13 28 0 14 15 5 29 30 17 16 21 20 31 16 18 32 33 19 21 34 35 18 19 36 37 10 24 34 37 25 11 26 38 9 12 39 27 40 41 14 15 42 43 44 30 16 21 31 45 35 32 18 19 33 36 34 24 35 36 25 37 46 38 26 27 39 47 46 30 44 45 31 47 48 38 46 47 39 49 48 46 44 45 47 49</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1273\">\r\n            <mesh>\r\n                <source id=\"ID1274\">\r\n                    <float_array count=\"246\" id=\"ID1277\">-0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3090353906154633 0.5463404059410095 -0.2693190574645996 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3090353906154633 0.5463404059410095 -0.2693190574645996 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.6342289447784424 -0.232231467962265 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2288918197154999 0.6342289447784424 -0.232231467962265 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.3090353906154633 0.6342087984085083 -0.2318678945302963 -0.3090353906154633 0.6342087984085083 -0.2318678945302963 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2425188422203064 0.6522464156150818 -0.2245520353317261 -0.2425188422203064 0.6522464156150818 -0.2245520353317261 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.2962212562561035 0.6519521474838257 -0.2243053764104843 -0.2962212562561035 0.6519521474838257 -0.2243053764104843 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.3262083530426025 0.5177374482154846 -0.2815103232860565 -0.3262083530426025 0.5177374482154846 -0.2815103232860565 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.2288918197154999 0.5177167654037476 -0.2818911969661713 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5177167654037476 -0.2818911969661713 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.2425051629543304 0.4977369606494904 -0.2904066741466522 -0.2425051629543304 0.4977369606494904 -0.2904066741466522</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"82\" source=\"#ID1277\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1275\">\r\n                    <float_array count=\"246\" id=\"ID1278\">4.719033471891902e-017 -0.3920905752870032 0.9199266170576362 -2.884976234942127e-006 -0.3920858289120519 0.9199286400357509 3.370173609169518e-018 -0.3920945522236592 0.9199249219999034 -3.370173609169518e-018 0.3920945522236592 -0.9199249219999034 2.884976234942127e-006 0.3920858289120519 -0.9199286400357509 -4.719033471891902e-017 0.3920905752870032 -0.9199266170576362 -1.383915055981403e-006 -0.3920969058693643 0.9199239188138092 1.383915055981403e-006 0.3920969058693643 -0.9199239188138092 -0.9706832903972148 0.2078131408484302 0.1207793369510993 -0.9650271046384095 0.2288071805736214 0.1279451500884601 -0.9529537582915173 0.2700616675338173 0.1376438530662601 0.9529537582915173 -0.2700616675338173 -0.1376438530662601 0.9650271046384095 -0.2288071805736214 -0.1279451500884601 0.9706832903972148 -0.2078131408484302 -0.1207793369510993 -4.719033471891901e-017 -0.3920905752870033 0.9199266170576362 -4.719033471891901e-017 -0.3920905752870033 0.9199266170576362 4.719033471891901e-017 0.3920905752870033 -0.9199266170576362 4.719033471891901e-017 0.3920905752870033 -0.9199266170576362 0.95563218680553 0.2865661400237065 0.06816869467133878 0.9464256864674265 0.3144455718013523 0.07350103651773379 0.4461113649611553 0.8529273245609877 0.2711081501352002 -0.4461113649611553 -0.8529273245609877 -0.2711081501352002 -0.9464256864674265 -0.3144455718013523 -0.07350103651773379 -0.95563218680553 -0.2865661400237065 -0.06816869467133878 -1.061068912738696e-005 -0.3920686822882367 0.9199359479095156 1.061068912738696e-005 0.3920686822882367 -0.9199359479095156 -0.9617597641238146 0.2423166136760486 0.1276746445034306 0.9617597641238146 -0.2423166136760486 -0.1276746445034306 -0.993909052903077 0.07939780418357825 0.07642501716149437 0.993909052903077 -0.07939780418357825 -0.07642501716149437 0 -0.3920945895234322 0.919924906101825 0 -0.3920898773552489 0.9199269145293805 0 -0.3920898773552489 0.9199269145293805 -0 0.3920898773552489 -0.9199269145293805 -0 0.3920898773552489 -0.9199269145293805 -0 0.3920945895234322 -0.919924906101825 0.9995077430572552 0.01230109785848254 -0.02886095216842587 -0.9995077430572552 -0.01230109785848254 0.02886095216842587 0.4723017897819827 0.83903742859678 0.2700874169272593 -0.4723017897819827 -0.83903742859678 -0.2700874169272593 -0.4554410407912898 0.8379186725669763 0.3007752591662806 -0.494612554153276 0.8179656278243028 0.2937527071738518 0.494612554153276 -0.8179656278243028 -0.2937527071738518 0.4554410407912898 -0.8379186725669763 -0.3007752591662806 -0.9966295060997636 0.04754817778887997 0.06684907149914918 0.9966295060997636 -0.04754817778887997 -0.06684907149914918 -9.303577740844134e-018 -0.3920932922423561 0.9199254590338015 0 -0.392089877355249 0.9199269145293805 -0 0.392089877355249 -0.9199269145293805 9.303577740844134e-018 0.3920932922423561 -0.9199254590338015 0.999507737305549 0.01230113833683166 -0.0288611341073107 0.999507737305549 0.01230113833683166 -0.0288611341073107 -0.999507737305549 -0.01230113833683166 0.0288611341073107 -0.999507737305549 -0.01230113833683166 0.0288611341073107 -0.9439128184700081 -0.3237861883456118 -0.06473866977800677 0.9439128184700081 0.3237861883456118 0.06473866977800677 0.963462018835475 -0.2417599248694221 -0.1152956069787658 0.9995077372826678 0.0123011480951978 -0.02886113074051997 0.9995077372826678 0.0123011480951978 -0.02886113074051997 -0.9995077372826678 -0.0123011480951978 0.02886113074051997 -0.9995077372826678 -0.0123011480951978 0.02886113074051997 -0.963462018835475 0.2417599248694221 0.1152956069787658 0 -0.392098647750297 0.9199231763752823 -0 0.392098647750297 -0.9199231763752823 -0.9443667124121585 -0.3230491775558667 -0.06173120255049157 0.9443667124121585 0.3230491775558667 0.06173120255049157 0.9563417668586146 -0.2662410739890978 -0.1205243356458564 0.9995077430203615 0.01230117529490369 -0.02886092044109709 -0.9995077430203615 -0.01230117529490369 0.02886092044109709 -0.9563417668586146 0.2662410739890978 0.1205243356458564 -3.14513905962739e-017 -0.3920986477502967 0.9199231763752823 -3.14513905962739e-017 -0.3920986477502967 0.9199231763752823 3.14513905962739e-017 0.3920986477502967 -0.9199231763752823 3.14513905962739e-017 0.3920986477502967 -0.9199231763752823 0.4937060730407563 -0.8168181655729783 -0.2984332384850423 0.0009918824747248147 -0.9489850171414499 -0.3153196051789331 -6.163859535989389e-018 -0.9503574393807658 -0.3111603082233241 6.163859535989389e-018 0.9503574393807658 0.3111603082233241 -0.0009918824747248147 0.9489850171414499 0.3153196051789331 -0.4937060730407563 0.8168181655729783 0.2984332384850423 0.478545962683365 -0.8250059356649211 -0.3005976841512581 -0.478545962683365 0.8250059356649211 0.3005976841512581</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"82\" source=\"#ID1278\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1276\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1274\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1275\"/>\r\n                </vertices>\r\n                <triangles count=\"56\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1276\"/>\r\n                    <p>0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 15 2 3 16 17 18 19 20 21 22 23 1 24 6 7 25 4 10 9 26 27 12 11 8 28 9 12 29 13 30 31 32 33 34 35 36 19 18 23 22 37 18 20 38 39 21 23 40 41 20 21 42 43 10 26 40 43 27 11 28 44 9 12 45 29 46 30 47 48 35 49 50 51 18 23 52 53 41 38 20 21 39 42 40 26 41 42 27 43 28 54 44 45 55 29 56 57 58 59 60 61 62 30 46 49 35 63 54 64 44 45 65 55 66 56 67 68 61 69 70 71 46 49 72 73 74 75 76 77 78 79 74 56 66 69 61 79 80 75 74 79 78 81 80 74 66 69 79 81</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1279\">\r\n            <mesh>\r\n                <source id=\"ID1280\">\r\n                    <float_array count=\"96\" id=\"ID1284\">-0.04600401967763901 0.08707708120346069 -0.01083299890160561 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04600401967763901 0.08707708120346069 -0.01083299890160561 -0.0460008941590786 -0.02191586047410965 -0.01119139418005943 -0.0460008941590786 -0.02191586047410965 -0.01119139418005943 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.04103969037532806 0.08707645535469055 -0.01081464067101479 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 0.04103180021047592 -0.02191830426454544 -0.01120293512940407 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 0.04103180021047592 -0.02191830426454544 -0.01120293512940407 -0.03807717561721802 0.08011185377836227 -0.004252579063177109 -0.03807717561721802 0.08011185377836227 -0.004252579063177109 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.03397076576948166 0.08009880036115646 -0.004249315708875656 0.03397076576948166 0.08009880036115646 -0.004249315708875656 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.03397389501333237 -0.01386075466871262 -0.004252579063177109 0.03397389501333237 -0.01386075466871262 -0.004252579063177109 -0.03824574872851372 -0.01380164921283722 -0.004176754504442215 -0.03824574872851372 -0.01380164921283722 -0.004176754504442215 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.04096663743257523 -0.02193134278059006 -0.01722836121916771</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1284\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1281\">\r\n                    <float_array count=\"96\" id=\"ID1285\">-0.6486441876550205 0.6402461338216394 0.4115162280491523 -0.999996480949607 -2.046947438069042e-005 -0.002652860607489197 -0.9999970690292698 -3.40381449223314e-005 -0.002420903607070828 0.9999970690292698 3.40381449223314e-005 0.002420903607070828 0.999996480949607 2.046947438069042e-005 0.002652860607489197 0.6486441876550205 -0.6402461338216394 -0.4115162280491523 -0.6446719316482925 -0.644822687491583 0.4106114979405608 0.6446719316482925 0.644822687491583 -0.4106114979405608 7.611822237619043e-006 0.9999890564764319 0.004678340457441075 0.6505553393427764 0.6452539138369123 0.4005310688707574 -0.6505553393427764 -0.6452539138369123 -0.4005310688707574 -7.611822237619043e-006 -0.9999890564764319 -0.004678340457441075 0.646379155313016 -0.6486622084704848 0.4017851750363935 -2.514981772618891e-005 -0.9999956140211347 0.002961639069878762 2.514981772618891e-005 0.9999956140211347 -0.002961639069878762 -0.646379155313016 0.6486622084704848 -0.4017851750363935 -0.2617607029099485 0.2921712109796223 0.9198463555870572 0.2617607029099485 -0.2921712109796223 -0.9198463555870572 3.539189288607463e-005 0.9999906878303608 0.004315437402608491 -3.539189288607463e-005 -0.9999906878303608 -0.004315437402608491 0.2865456530664451 0.2878643484044356 0.9137974095095774 -0.2865456530664451 -0.2878643484044356 -0.9137974095095774 2.99402056733925e-005 -0.9999976589943478 0.002163587162167933 -2.99402056733925e-005 0.9999976589943478 -0.002163587162167933 0.3011043870364404 -0.2680404608962498 0.9151450483010523 -0.3011043870364404 0.2680404608962498 -0.9151450483010523 -0.2822290812437018 -0.2697570257358308 0.9206399365476681 0.2822290812437018 0.2697570257358308 -0.9206399365476681 0.9999419530695684 -3.618336592114948e-005 -0.01077446899763445 0.9999520259284223 -9.383437398849214e-005 -0.009794745364441736 -0.9999520259284223 9.383437398849214e-005 0.009794745364441736 -0.9999419530695684 3.618336592114948e-005 0.01077446899763445</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1285\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1283\">\r\n                    <float_array count=\"108\" id=\"ID1286\">-0.8707864704909432 -0.08434327720870816 0.2193234052329562 -0.1345068892009654 -0.8710984953321045 -0.1366050456523515 0.219149440263566 -0.08707526051738947 0.2193298965176322 -0.1344195170941046 -0.8707799769185171 -0.08425587433581898 0.460045595066703 -0.08843597314605903 0.4598847762189375 -0.1406981648935765 -0.41039150548504 -0.08829155347246408 0.4103240692412902 -0.08864631410412539 -0.4598426450664129 -0.1358998265072047 -0.460002874797282 -0.08855552489452194 0.2173279417038078 -0.3349111044485853 -0.8725929847974866 -0.3305062472124367 -0.8026261008891247 -0.2496295959706924 0.4599102052639029 -0.140437032640179 -0.4097160864162608 -0.1402346022057112 -0.4103660852034731 -0.08803051127773137 -0.3398813958454692 -0.4817281392132452 0.4598513028877966 -0.5572988052567657 -0.4105857758064011 -0.5570880807014496 0.4096598078376315 -0.1359027548422077 -0.4598552837208138 -0.1357560359272202 0.410311439520114 -0.0885026253266744 -0.4600364788878897 -0.1880195805409327 0.3397215291036052 -0.1044438552799327 0.4102904548644768 -0.188158587445632 0.139042925418609 -0.244706074045336 0.220392977764265 -0.3268400886053832 -0.8000932453864994 -0.2455938994646215 0.3808784947774433 -0.4810168158123215 0.4601562152297449 -0.556389830578105 -0.3396009300866689 -0.4809794369128 -0.2192749842084334 -0.1323665538265052 0.870803060896964 -0.08190953177439291 0.8710894002196447 -0.1341156409114885 -0.2175838531507747 -0.2966763144834158 0.8023045473003625 -0.2164605455912662 0.8723557892252097 -0.292197015768231 -0.219299554992477 -0.1320367727938727 -0.2191691477657872 -0.08463398247406859 0.8707784504735122 -0.08157922078266909 -0.1386068791570084 -0.2139009042944786 0.8009886710783843 -0.2138643169869433 -0.2191822364392242 -0.2918252702643436 -0.4600956096947584 -0.1878844921633072 -0.3825120598021665 -0.1035254300397508 0.3396840872636271 -0.1044373070507742 0.1231824674503541 0.3047815613493842 0.8674396054230038 -0.1457932893168431 -0.3167144351205317 -0.145793289316843 -0.3807736822210102 0.6302120878700486 0.3397057323850419 0.6301094009879676 0.3397370233452011 -0.1090390990261831</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"54\" source=\"#ID1286\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1282\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1280\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1281\"/>\r\n                </vertices>\r\n                <triangles count=\"18\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1282\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1283\"/>\r\n                    <p>0 0 1 1 2 2 6 3 1 4 0 5 0 6 8 7 9 8 12 9 13 10 6 11 6 12 0 13 16 14 8 15 18 16 9 17 20 18 0 19 9 20 22 21 13 22 12 23 6 24 24 25 12 26 26 27 6 28 16 29 16 30 0 31 20 32 28 33 9 34 29 35 12 36 20 37 9 38 28 39 12 40 9 41 24 42 20 43 12 44 6 45 26 46 24 47 26 48 16 49 24 50 16 51 20 52 24 53</p>\r\n                </triangles>\r\n                <triangles count=\"18\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1282\"/>\r\n                    <p>3 4 5 5 4 7 10 11 5 7 14 15 17 5 7 10 19 11 10 5 21 15 14 23 15 25 7 17 7 27 21 5 17 30 10 31 10 21 15 10 15 31 15 21 25 25 27 7 25 17 27 25 21 17</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1287\">\r\n            <mesh>\r\n                <source id=\"ID1288\">\r\n                    <float_array count=\"270\" id=\"ID1292\">0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03052753955125809 0.03227363899350166 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.007473953068256378 0.03052753955125809 0.03227363899350166 0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.004581844434142113 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03819084912538528 -0.00840609148144722 -0.002400107681751251 0.03819084912538528 -0.00840609148144722 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.004581844434142113 0.03738900274038315 0.03356627002358437 0.004581844434142113 0.03738900274038315 0.03356627002358437 0.004581844434142113 0.0236658900976181 0.03098114207386971 0.004581844434142113 0.0236658900976181 0.03098114207386971 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.007473953068256378 0.0236976221203804 0.06852835416793823 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.004581844434142113 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 0.004581844434142113 0.03055736422538757 0.06982077658176422 0.004581844434142113 0.03055736422538757 0.06982077658176422 -0.002400107681751251 0.04023017734289169 0.03410175070166588 -0.002400107681751251 0.04023017734289169 0.03410175070166588 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.002400107681751251 0.0208236575126648 0.03044562414288521 -0.002400107681751251 0.0208236575126648 0.03044562414288521 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.002400107681751251 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.03055736422538757 0.06982077658176422 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.03055736422538757 0.06982077658176422 -0.002400107681751251 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.03738900274038315 0.03356627002358437 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.009382165037095547 0.03738900274038315 0.03356627002358437 -0.009382165037095547 0.0236658900976181 0.03098114207386971 -0.009382165037095547 0.0236658900976181 0.03098114207386971 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.01227427553385496 0.03052753955125809 0.03227363899350166 -0.01227427553385496 0.03052753955125809 0.03227363899350166 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.01227427553385496 0.0236976221203804 0.06852835416793823</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"90\" source=\"#ID1292\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1289\">\r\n                    <float_array count=\"270\" id=\"ID1293\">0.9999999999843209 5.59463077948367e-006 -2.416152423186181e-007 0.9999999999777997 6.557605099620334e-006 -1.182487493608621e-006 0.7071262376961327 0.6948662526521028 0.1308945181699234 -0.7071262376961327 -0.6948662526521028 -0.1308945181699234 -0.9999999999777997 -6.557605099620334e-006 1.182487493608621e-006 -0.9999999999843209 -5.59463077948367e-006 2.416152423186181e-007 1.092972036851802e-005 0.1851295783395137 -0.9827141187061349 2.740400571134737e-011 0.1851357863769715 -0.9827129492392885 0 0.185136694083701 -0.9827127782336801 -0 -0.185136694083701 0.9827127782336801 -2.740400571134737e-011 -0.1851357863769715 0.9827129492392885 -1.092972036851802e-005 -0.1851295783395137 0.9827141187061349 0.7070687980160841 0.6949183363800148 0.1309283034142069 -0.7070687980160841 -0.6949183363800148 -0.1309283034142069 0.7071193471183617 -0.6948704469520933 -0.1309094759117928 -0.7071193471183617 0.6948704469520933 0.1309094759117928 1.152910625477662e-010 0.1851188374083177 -0.9827161421471579 -1.152910625477662e-010 -0.1851188374083177 0.9827161421471579 9.082784110290093e-006 0.1851419944086071 -0.9827117796301753 -9.082784110290093e-006 -0.1851419944086071 0.9827117796301753 0.9999999981982459 5.683518537357934e-005 1.932019074476484e-005 -0.9999999981982459 -5.683518537357934e-005 -1.932019074476484e-005 -7.322717337165324e-006 0.9827132657669674 0.1851341060744877 7.322717337165324e-006 -0.9827132657669674 -0.1851341060744877 0.7071207355928849 -0.6948684197189324 -0.1309127364769786 -0.7071207355928849 0.6948684197189324 0.1309127364769786 0.7070877969633483 -0.6949008947275105 -0.1309182718050604 -0.7070877969633483 0.6949008947275105 0.1309182718050604 -1.092945993357549e-005 0.1851295784335574 -0.9827141186884213 1.092945993357549e-005 -0.1851295784335574 0.9827141186884213 9.582577601239217e-011 0.1851509204028663 -0.9827100979810738 -9.582577601239217e-011 -0.1851509204028663 0.9827100979810738 0.707133719216717 0.6948560980324883 0.1309080065305341 -0.707133719216717 -0.6948560980324883 -0.1309080065305341 6.699664853351547e-006 0.9827125128654742 0.1851381025416967 -6.699664853351547e-006 -0.9827125128654742 -0.1851381025416967 3.679930986933653e-006 -0.9827113486993524 -0.185144281909969 -3.679930986933653e-006 0.9827113486993524 0.185144281909969 9.809428192896419e-007 -0.982711713156937 -0.1851423474605306 -9.809428192896419e-007 0.982711713156937 0.1851423474605306 2.07520584667854e-018 0.1851366940837009 -0.9827127782336801 -2.07520584667854e-018 -0.1851366940837009 0.9827127782336801 -0.7071163400283342 0.6948735133440726 0.1309094424317747 0.7071163400283342 -0.6948735133440726 -0.1309094424317747 -1.718584229658197e-006 -0.9827120775996558 -0.1851404130297176 1.718584229658197e-006 0.9827120775996558 0.1851404130297176 -9.08256768208233e-006 0.1851419943304572 -0.9827117796449008 9.08256768208233e-006 -0.1851419943304572 0.9827117796449008 -2.079226534932906e-011 -0.185132285854762 0.9827136087050951 -1.544303238000122e-005 -0.1851341913731198 0.9827132496034303 -2.077496026233396e-018 -0.1851400068869456 0.9827121541173194 2.077496026233396e-018 0.1851400068869456 -0.9827121541173194 1.544303238000122e-005 0.1851341913731198 -0.9827132496034303 2.079226534932906e-011 0.185132285854762 -0.9827136087050951 4.149734441407028e-018 -0.1851306440014455 0.9827139180105317 -4.149734441407028e-018 0.1851306440014455 -0.9827139180105317 5.306861256704692e-007 -0.1851301225601347 0.9827140162430716 5.306861256704692e-007 -0.1851301225601347 0.9827140162430716 -5.306861256704692e-007 0.1851301225601347 -0.9827140162430716 -5.306861256704692e-007 0.1851301225601347 -0.9827140162430716 -0.7070712434321569 0.6949188944884924 0.1309121338692294 -0.999999999992516 3.673648708004297e-006 -1.21340366347125e-006 0.999999999992516 -3.673648708004297e-006 1.21340366347125e-006 0.7070712434321569 -0.6949188944884924 -0.1309121338692294 -0.7071171656275636 -0.6948719811382966 -0.1309131158584951 0.7071171656275636 0.6948719811382966 0.1309131158584951 -0.7070833248779243 -0.6949067594280631 -0.1309112958486298 0.7070833248779243 0.6949067594280631 0.1309112958486298 -1.628881000492389e-010 -0.1851190103732217 0.9827161095649339 1.628881000492389e-010 0.1851190103732217 -0.9827161095649339 2.072275978801209e-005 0.9827117597734726 0.1851420988686585 -2.072275978801209e-005 -0.9827117597734726 -0.1851420988686585 -5.306781267168944e-007 -0.1851301225601347 0.9827140162430716 -5.306781267168944e-007 -0.1851301225601347 0.9827140162430716 5.306781267168944e-007 0.1851301225601347 -0.9827140162430716 5.306781267168944e-007 0.1851301225601347 -0.9827140162430716 -0.7071208444863583 -0.6948680619418981 -0.1309140473211718 0.7071208444863583 0.6948680619418981 0.1309140473211718 -0.9999999999686882 6.26256998439923e-006 4.837770999284142e-006 0.9999999999686882 -6.26256998439923e-006 -4.837770999284142e-006 1.544266439301172e-005 -0.185134191506031 0.9827132495783969 -1.544266439301172e-005 0.185134191506031 -0.9827132495783969 0 -0.1851306440014456 0.9827139180105317 2.076191813833597e-018 -0.1851400068869453 0.9827121541173194 -2.076191813833597e-018 0.1851400068869453 -0.9827121541173194 -0 0.1851306440014456 -0.9827139180105317 -0.7071485051525848 0.6948381123294621 0.1309236010614372 0.7071485051525848 -0.6948381123294621 -0.1309236010614372 -0.999999998002033 6.258929378344746e-005 8.860817899594689e-006 0.999999998002033 -6.258929378344746e-005 -8.860817899594689e-006</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"90\" source=\"#ID1293\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1291\">\r\n                    <float_array count=\"288\" id=\"ID1294\">0.6510872705125546 -0.1556902917672408 0.5091323331628461 0.4859498357783174 0.7999895375563727 -0.1353021326776318 -0.09163688868284226 0.6758417122097311 0.04800215363502502 0.5659956989651277 -0.1494790613651276 0.5659956989651277 0.5091398819643883 0.4859528635768757 0.6580499782604877 0.5063414818440127 0.7999982320181107 -0.1352987729461431 0.4729394207015694 0.4809972847452069 0.6218529516300301 0.5013837912807035 0.7638095683241661 -0.1402561063415956 0.04811526319480644 0.7213531073913666 0.04809234652788788 0.5659965854206529 -0.09153049147923925 0.6758553449678909 0.04800215363502502 0.565997478692822 -0.09163688868284226 0.4561468467564381 -0.1494790613651276 0.565997478692822 0.5091402582228589 0.485950990043552 0.3826219470117034 1.057795420483731 0.658050352644889 0.506339616781079 0.4163477624840881 -0.2182112697822676 0.2655901037478704 -0.2267597005850756 0.2060534626632536 0.4228385905839157 0.4729395515342789 0.4809964563939979 0.3464105655850779 1.052837079788438 0.621853079895568 0.5013829745340264 0.6148997267801072 -0.1606454691514448 0.4729381179354542 0.4809963655769018 0.763807486615806 -0.1402572512020607 0.04788904511082719 0.7213618711601205 0.1875369044727172 0.6758641087366354 0.04791196143232645 0.5660053491893753 0.04807709459996988 0.5659894528942754 0.0480580547087076 0.4106440228522598 -0.09157541091939606 0.4561494129102339 0.3825954800209273 1.057783002296572 0.5314738466463114 1.078168385901833 0.6580197401679548 0.5063259172927894 0.3464117597140501 1.052838829051515 0.4953354491949941 1.07322932668225 0.6218556839459112 0.5013851596091921 0.4161977624350172 -0.2182497707848508 0.2059276593544127 0.4228050014573921 0.3566741815061503 0.4313559367715039 0.2682872546432723 0.4263529644979455 0.06447197816393442 0.9967390040575556 0.215225639192149 1.005288852695318 0.3278292532561891 -0.2232425473342045 0.1175387683668979 0.417807654733203 0.2682932696752419 0.4263591477695988 0.1876433007419109 0.6758417122097311 0.2454855106770992 0.5659956989651277 0.04800215363502501 0.5659956989651277 -0.1771212857929688 -0.2317991959130784 -0.3278808897344198 -0.223250717587511 -0.2683332221435008 0.4263536238589009 0.3277879802678649 -0.2232535352137678 0.1770382567541186 -0.2318049380274199 0.1175081133203516 0.4177988223024968 0.04792721333757736 0.5659967346302373 0.1875818234430332 0.4561566946461803 0.04794625294185437 0.4106513045881997 -0.04800215363502504 0.5660205297415833 0.09163688868284223 0.6758459780352492 0.1494790613651275 0.5660205297415833 0.3566755498470675 0.4313391620893886 0.205929031215576 0.4227881883703239 0.1528723625255549 1.001728466640204 0.09163688868284226 0.4561372364875994 -0.04800215363502502 0.5660016543558335 0.1494790613651276 0.5660016543558335 -0.04800135138284162 0.4106342368739969 -0.0480007950229394 0.5660012351480476 0.09163785387650254 0.4561365078338856 0.268293561735544 0.4263552504214559 0.1175390617829038 0.417803742594852 0.06447633242992115 0.9967408581486913 0.2454855106770992 0.5659974786928219 0.1876433007419109 0.4561468467564381 0.04800215363502505 0.5659974786928219 -0.6218441919080547 0.501383848524292 -0.6148889278733198 -0.1606447289196409 -0.7637912106097812 -0.140256575350682 -0.1174492761242781 0.417809338909525 -0.1769603112941838 -0.2317904042619489 -0.2681977522331389 0.4263602278180171 -0.2060029524054107 0.4228198476894341 -0.2655432373483784 -0.2267833374526798 -0.3567594013726532 0.4313713619072311 -0.2655036338905208 -0.226783065550902 -0.4162553089038189 -0.218231682781948 -0.3567309898836858 0.431370673836562 -0.04808123348330946 0.5659837339676254 -0.04811361390934024 0.7213334608495877 0.09153491548227659 0.6758271926694005 0.3568779477726087 0.4314031715482364 0.1530400304974734 1.001784796028239 0.3038042615818714 1.010334821786139 -0.04800295587472177 0.4106340241257506 -0.1876442659206286 0.4561362950856394 -0.04800351222623805 0.5660010223998012 -0.1529369738513216 1.001757681771448 -0.2059970122914718 0.4228204135917049 -0.3036925848774558 1.010307526190229 -0.6580482066325464 0.5063387778905422 -0.6510962043071398 -0.1556894494846782 -0.8000039794399367 -0.1353012352707589 -0.6218541365516803 0.5013845337171072 -0.4729440270315344 0.4809959098166953 -0.6149001735083197 -0.1606440521845235 -0.1174492839826364 0.4178092431173398 -0.2681977600723241 0.4263601322350106 -0.2151605257598007 1.005293849772534 -0.2060029338035077 0.4228201003191478 -0.3567593828654816 0.4313716135034493 -0.3036964347252453 1.010307426110565 -0.6580482484236974 0.5063393173290812 -0.5091347038764172 0.4859528069456206 -0.6510971306454888 -0.1556889157940269 -0.04792307364234808 0.5659961173990309 -0.1875413277420207 0.6758395761008507 -0.04789069370438232 0.7213458442810562 -0.1876433007419109 0.4561372364875994 -0.2454855106770992 0.5660016543558336 -0.04800215363502502 0.5660016543558336 -0.4953053611168168 1.073218739524393 -0.4729455980262873 0.4809882274780117 -0.6218557012413173 0.5013768798761702 -0.06457727243628572 0.9967267806838426 -0.117669046741589 0.4177884940441474 -0.2153434451407594 1.005276892152473 -0.3826043543167069 1.057794075527375 -0.5091348448501433 0.4859536581559255 -0.5315280563267647 1.078184581926353 -0.5315295409942268 1.078183713276601 -0.5091347033733921 0.4859528275585371 -0.6580482481193694 0.5063393370438158 -0.2454855106770992 0.5660205297415832 -0.1876433007419109 0.675845978035249 -0.04800215363502502 0.5660205297415832 -0.3463907463326202 1.052831956001588 -0.4729045888168348 0.4809869137284013 -0.4952691330856551 1.073217314052622</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"144\" source=\"#ID1294\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1290\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1288\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1289\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1290\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1291\"/>\r\n                    <p>0 0 1 1 2 2 6 3 7 4 8 5 1 6 12 7 2 8 14 9 1 10 0 11 16 12 7 13 6 14 7 15 18 16 8 17 1 18 20 19 12 20 22 21 2 22 12 23 14 24 24 25 1 26 26 27 14 28 0 29 16 30 28 31 7 32 7 33 30 34 18 35 20 36 32 37 12 38 24 39 20 40 1 41 22 42 12 43 34 44 14 45 36 46 24 47 26 48 38 49 14 50 28 51 40 52 7 53 42 54 22 55 34 56 26 57 44 58 38 59 7 60 46 61 30 62 48 63 49 64 50 65 34 66 12 67 32 68 54 69 48 70 50 71 56 72 48 73 57 74 14 75 38 76 36 77 40 78 46 79 7 80 60 81 61 82 42 83 60 84 42 85 34 86 38 87 44 88 64 89 44 90 66 91 64 92 48 93 68 94 49 95 34 96 32 97 70 98 72 99 73 100 48 101 36 102 38 103 76 104 78 105 66 106 61 107 60 108 78 109 61 110 60 111 34 112 70 113 38 114 64 115 76 116 78 117 64 118 66 119 48 120 80 121 68 122 82 123 83 124 48 125 86 126 78 127 60 128 86 129 60 130 70 131 76 132 64 133 88 134 88 135 64 136 78 137 83 138 80 139 48 140 88 141 78 142 86 143</p>\r\n                </triangles>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1290\"/>\r\n                    <p>3 4 5 9 10 11 3 13 4 5 4 15 11 10 17 9 19 10 13 21 4 13 3 23 4 25 15 5 15 27 10 29 17 19 31 10 13 33 21 4 21 25 35 13 23 25 37 15 15 39 27 10 41 29 35 23 43 39 45 27 31 47 10 51 52 53 33 13 35 51 53 55 58 53 59 37 39 15 10 47 41 43 62 63 35 43 63 65 45 39 65 67 45 52 69 53 71 33 35 53 74 75 77 39 37 62 67 79 62 79 63 71 35 63 77 65 39 67 65 79 69 81 53 53 84 85 63 79 87 71 63 87 89 65 77 79 65 89 53 81 84 87 79 89</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1295\">\r\n            <mesh>\r\n                <source id=\"ID1296\">\r\n                    <float_array count=\"396\" id=\"ID1300\">0.00151330791413784 0.02864761650562286 0.06481364369392395 0.003007436171174049 0.02510105818510056 0.0641457736492157 0.0124336164444685 0.02437891811132431 0.06798277795314789 0.0124336164444685 0.02437891811132431 0.06798277795314789 0.003007436171174049 0.02510105818510056 0.0641457736492157 0.00151330791413784 0.02864761650562286 0.06481364369392395 -0.002093736082315445 0.02519572526216507 0.06365212798118591 -0.002093736082315445 0.02519572526216507 0.06365212798118591 0.008178489282727242 0.03447502106428146 0.06988455355167389 0.008178489282727242 0.03447502106428146 0.06988455355167389 0.008178489282727242 0.01428460329771042 0.0660809725522995 0.008178489282727242 0.01428460329771042 0.0660809725522995 -0.002093736082315445 0.03011453151702881 0.06509023904800415 -0.002093736082315445 0.03011453151702881 0.06509023904800415 0.00151330791413784 0.02155684679746628 0.06347811222076416 0.00151330791413784 0.02155684679746628 0.06347811222076416 0.01964792050421238 0.02304359525442123 0.07507239282131195 0.01964792050421238 0.02304359525442123 0.07507239282131195 0.0132798757404089 0.007935501635074616 0.0722261369228363 0.0132798757404089 0.007935501635074616 0.0722261369228363 -0.005700994282960892 0.02864761650562286 0.06481364369392395 -0.005700994282960892 0.02864761650562286 0.06481364369392395 -0.002093736082315445 0.02008949965238571 0.06320127844810486 -0.002093736082315445 0.02008949965238571 0.06320127844810486 0.0132798757404089 0.03815094381570816 0.07791852951049805 0.0132798757404089 0.03815094381570816 0.07791852951049805 -0.002093736082315445 0.03865481913089752 0.07067219913005829 -0.002093736082315445 0.03865481913089752 0.07067219913005829 -0.002093736082315445 0.001676708459854126 0.07104742527008057 -0.002093736082315445 0.001676708459854126 0.07104742527008057 -0.002093736082315445 0.01010248810052872 0.06529328227043152 -0.002093736082315445 0.01010248810052872 0.06529328227043152 -0.007195173762738705 0.02510105818510056 0.0641457736492157 -0.007195173762738705 0.02510105818510056 0.0641457736492157 -0.005700994282960892 0.02155684679746628 0.06347811222076416 -0.005700994282960892 0.02155684679746628 0.06347811222076416 0.02355220727622509 0.02117396146059036 0.08431173861026764 0.02355220727622509 0.02117396146059036 0.08431173861026764 0.01604082249104977 0.007562488317489624 0.08174745738506317 0.01604082249104977 0.007562488317489624 0.08174745738506317 -0.002093736082315445 0.001921959221363068 0.08068540692329407 -0.002093736082315445 0.001921959221363068 0.08068540692329407 -0.01236628275364637 0.03447502106428146 0.06988455355167389 -0.01236628275364637 0.03447502106428146 0.06988455355167389 -0.01236628275364637 0.01428460329771042 0.0660809725522995 -0.01236628275364637 0.01428460329771042 0.0660809725522995 0.01604076288640499 0.03478480130434036 0.0868762880563736 0.01604076288640499 0.03478480130434036 0.0868762880563736 -0.002093736082315445 0.04440972954034805 0.07909753918647766 -0.002093736082315445 0.04440972954034805 0.07909753918647766 -0.020228561013937 0.007562488317489624 0.08174745738506317 -0.020228561013937 0.007562488317489624 0.08174745738506317 -0.01746771670877934 0.007935501635074616 0.0722261369228363 -0.01746771670877934 0.007935501635074616 0.0722261369228363 -0.01662124134600163 0.02437891811132431 0.06798277795314789 -0.01662124134600163 0.02437891811132431 0.06798277795314789 0.02355220727622509 0.01847297698259354 0.0950017124414444 0.02355220727622509 0.01847297698259354 0.0950017124414444 0.01604082249104977 0.0006505176424980164 0.09164398908615112 0.01604082249104977 0.0006505176424980164 0.09164398908615112 -0.002093736082315445 -0.006729543209075928 0.0902535617351532 -0.002093736082315445 -0.006729543209075928 0.0902535617351532 -0.020228561013937 0.0006505176424980164 0.09164398908615112 -0.020228561013937 0.0006505176424980164 0.09164398908615112 -0.01746771670877934 0.03815094381570816 0.07791852951049805 -0.01746771670877934 0.03815094381570816 0.07791852951049805 -0.02383571118116379 0.02304359525442123 0.07507239282131195 -0.02383571118116379 0.02304359525442123 0.07507239282131195 0.01604076288640499 0.03629373759031296 0.0983588844537735 0.01604076288640499 0.03629373759031296 0.0983588844537735 -0.002093736082315445 0.04042350500822067 0.08793878555297852 -0.002093736082315445 0.04042350500822067 0.08793878555297852 -0.02773984149098396 0.01847297698259354 0.0950017124414444 -0.02773984149098396 0.01847297698259354 0.0950017124414444 -0.02773984149098396 0.02117396146059036 0.08431173861026764 -0.02773984149098396 0.02117396146059036 0.08431173861026764 0.01964792050421238 0.01672781258821487 0.1042646914720535 0.01964792050421238 0.01672781258821487 0.1042646914720535 0.0132798757404089 0.001620359718799591 0.1014187186956406 0.0132798757404089 0.001620359718799591 0.1014187186956406 -0.002093736082315445 -0.004638850688934326 0.1002393662929535 -0.002093736082315445 -0.004638850688934326 0.1002393662929535 -0.01746771670877934 0.001620359718799591 0.1014187186956406 -0.01746771670877934 0.001620359718799591 0.1014187186956406 -0.02383571118116379 0.01672781258821487 0.1042646914720535 -0.02383571118116379 0.01672781258821487 0.1042646914720535 -0.020228561013937 0.03478480130434036 0.0868762880563736 -0.020228561013937 0.03478480130434036 0.0868762880563736 0.0132798757404089 0.03183591365814209 0.1071109622716904 0.0132798757404089 0.03183591365814209 0.1071109622716904 -0.002093736082315445 0.04367602616548538 0.0997496098279953 -0.002093736082315445 0.04367602616548538 0.0997496098279953 -0.01746771670877934 0.03183591365814209 0.1071109622716904 -0.01746771670877934 0.03183591365814209 0.1071109622716904 -0.020228561013937 0.03629373759031296 0.0983588844537735 -0.020228561013937 0.03629373759031296 0.0983588844537735 0.0124336164444685 0.01539282500743866 0.1113545000553131 0.0124336164444685 0.01539282500743866 0.1113545000553131 0.008178489282727242 0.005297861993312836 0.1094527095556259 0.008178489282727242 0.005297861993312836 0.1094527095556259 -0.002093736082315445 0.001115962862968445 0.108664870262146 -0.002093736082315445 0.001115962862968445 0.108664870262146 -0.01236628275364637 0.005297861993312836 0.1094527095556259 -0.01236628275364637 0.005297861993312836 0.1094527095556259 -0.01662124134600163 0.01539282500743866 0.1113545000553131 -0.01662124134600163 0.01539282500743866 0.1113545000553131 -0.01236628275364637 0.02548617869615555 0.113256186246872 -0.01236628275364637 0.02548617869615555 0.113256186246872 0.008178489282727242 0.02548617869615555 0.113256186246872 0.008178489282727242 0.02548617869615555 0.113256186246872 -0.002093736082315445 0.03809449821710587 0.1082897335290909 -0.002093736082315445 0.03809449821710587 0.1082897335290909 -0.002093736082315445 0.02966859936714172 0.1140438467264175 -0.002093736082315445 0.02966859936714172 0.1140438467264175 0.003007436171174049 0.0146685466170311 0.1151914745569229 0.003007436171174049 0.0146685466170311 0.1151914745569229 0.00151330791413784 0.01112633943557739 0.114523395895958 0.00151330791413784 0.01112633943557739 0.114523395895958 -0.002093736082315445 0.009656563401222229 0.1142469793558121 -0.002093736082315445 0.009656563401222229 0.1142469793558121 -0.005700994282960892 0.01112633943557739 0.114523395895958 -0.005700994282960892 0.01112633943557739 0.114523395895958 -0.007195173762738705 0.0146685466170311 0.1151914745569229 -0.007195173762738705 0.0146685466170311 0.1151914745569229 -0.005700994282960892 0.01821445673704147 0.1158591508865356 -0.005700994282960892 0.01821445673704147 0.1158591508865356 -0.002093736082315445 0.01968275755643845 0.116135448217392 -0.002093736082315445 0.01968275755643845 0.116135448217392 0.00151330791413784 0.01821445673704147 0.1158591508865356 0.00151330791413784 0.01821445673704147 0.1158591508865356 -0.002093736082315445 0.01457632333040237 0.1156851947307587 -0.002093736082315445 0.01457632333040237 0.1156851947307587</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"132\" source=\"#ID1300\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1297\">\r\n                    <float_array count=\"396\" id=\"ID1301\">0.1956903806374744 0.3702693627518756 -0.9080781210519722 0.2767978448031712 0.1778221379204244 -0.9443316368616107 0.5872577302173264 0.1498232412232817 -0.7954126945739199 -0.5872577302173264 -0.1498232412232817 0.7954126945739199 -0.2767978448031712 -0.1778221379204244 0.9443316368616107 -0.1956903806374744 -0.3702693627518756 0.9080781210519722 2.4069769204625e-006 0.1851429709867631 -0.982711595682274 -2.4069769204625e-006 -0.1851429709867631 0.982711595682274 0.41523124678526 0.5579861698652578 -0.7184945691738096 -0.41523124678526 -0.5579861698652578 0.7184945691738096 0.4152520124328477 -0.2582140384559897 -0.8722908210652679 -0.4152520124328477 0.2582140384559897 0.8722908210652679 3.092309193832321e-005 0.4499216971921687 -0.8930680071749748 -3.092309193832321e-005 -0.4499216971921687 0.8930680071749748 0.195734922284424 -0.01445646791097698 -0.980550279554215 -0.195734922284424 0.01445646791097698 0.980550279554215 0.8528754350002218 0.07814618017484649 -0.5162331516836778 -0.8528754350002218 -0.07814618017484649 0.5162331516836778 0.6090890771932528 -0.620433230571093 -0.4940375516567427 -0.6090890771932528 0.620433230571093 0.4940375516567427 -0.1957192350159142 0.370234229083485 -0.9080862275465601 0.1957192350159142 -0.370234229083485 0.9080862275465601 2.257090650783234e-006 -0.0940749441470593 -0.9955651183516993 -2.257090650783234e-006 0.0940749441470593 0.9955651183516993 0.606843164777356 0.753827945089025 -0.2519619069737745 -0.606843164777356 -0.753827945089025 0.2519619069737745 4.52876460394671e-005 0.7269386552422567 -0.6867024024012211 -4.52876460394671e-005 -0.7269386552422567 0.6867024024012211 0.01668560911036096 -0.897510430114174 -0.4406774537968637 -0.01668560911036096 0.897510430114174 0.4406774537968637 7.089180052383154e-006 -0.4272513667247607 -0.9041328827011919 -7.089180052383154e-006 0.4272513667247607 0.9041328827011919 -0.2768174520306065 0.1778350597500305 -0.9443234561181808 0.2768174520306065 -0.1778350597500305 0.9443234561181808 -0.1957398696738184 -0.0144574372588037 -0.9805492776643019 0.1957398696738184 0.0144574372588037 0.9805492776643019 0.9825994497321882 0.04768106420081351 -0.1795127781041752 -0.9825994497321882 -0.04768106420081351 0.1795127781041752 0.6916137433321561 -0.6245883168010983 -0.3627118202508069 -0.6916137433321561 0.6245883168010983 0.3627118202508069 -8.052169911274337e-006 -0.9324818027209991 -0.3612169535464225 8.052169911274337e-006 0.9324818027209991 0.3612169535464225 -0.4152638558557382 0.5579383902303894 -0.7185128271137172 0.4152638558557382 -0.5579383902303894 0.7185128271137172 -0.4152548156556983 -0.2582057259968227 -0.8722919471926848 0.4152548156556983 0.2582057259968227 0.8722919471926848 0.7021791044699796 0.7119894581709351 0.003939124166071239 -0.7021791044699796 -0.7119894581709351 -0.003939124166071239 -0.01649914634204176 0.9972916561361611 -0.07167378022106048 0.01649914634204176 -0.9972916561361611 0.07167378022106048 -0.7034998926438633 -0.6446120515784689 -0.2992711212427118 0.7034998926438633 0.6446120515784689 0.2992711212427118 -0.6053376996549881 -0.6041444851763438 -0.5182429067603512 0.6053376996549881 0.6041444851763438 0.5182429067603512 -0.5872558020230481 0.1498361060737085 -0.7954116948517509 0.5872558020230481 -0.1498361060737085 0.7954116948517509 0.9849598354450867 -0.02379272750458698 0.1711374555083724 -0.9849598354450867 0.02379272750458698 -0.1711374555083724 0.6738930300558093 -0.7322553035040448 -0.09833796079032518 -0.6738930300558093 0.7322553035040448 0.09833796079032518 -0.01089455672182331 -0.9695025713242476 -0.2448388711571495 0.01089455672182331 0.9695025713242476 0.2448388711571495 -0.6732345283280943 -0.7291622953401415 -0.1227909480423722 0.6732345283280943 0.7291622953401415 0.1227909480423722 -0.6102173515399514 0.7601218285598231 -0.2232702166130507 0.6102173515399514 -0.7601218285598231 0.2232702166130507 -0.8531517942983409 0.1190310212392098 -0.5079012028616121 0.8531517942983409 -0.1190310212392098 0.5079012028616121 0.6768015028084661 0.7109748341810475 0.1909306443644764 -0.6768015028084661 -0.7109748341810475 -0.1909306443644764 0.0002619427007181099 0.9976283903600751 0.068829689332344 -0.0002619427007181099 -0.9976283903600751 -0.068829689332344 -0.9851563358757249 -0.05627531599207819 0.1621730023583073 0.9851563358757249 0.05627531599207819 -0.1621730023583073 -0.9822286559208107 0.03686212846388164 -0.184032744295982 0.9822286559208107 -0.03686212846388164 0.184032744295982 0.8451646013890729 -0.0989653286562158 0.5252643718003502 -0.8451646013890729 0.0989653286562158 -0.5252643718003502 0.5976308884055098 -0.6861926602264394 0.4147010420471637 -0.5976308884055098 0.6861926602264394 -0.4147010420471637 -2.769287440755231e-005 -0.9295143678751611 0.3687858987905372 2.769287440755231e-005 0.9295143678751611 -0.3687858987905372 -0.5976089936893609 -0.6862253529501121 0.4146784967056808 0.5976089936893609 0.6862253529501121 -0.4146784967056808 -0.8451601416135406 -0.09895473138994973 0.5252735441304108 0.8451601416135406 0.09895473138994973 -0.5252735441304108 -0.6943501393017593 0.7169794268532971 -0.06179308635070134 0.6943501393017593 -0.7169794268532971 0.06179308635070134 0.5976185875585842 0.4883301075234018 0.6359133037534798 -0.5976185875585842 -0.4883301075234018 -0.6359133037534798 0.01187222206486697 0.9858258610195975 0.1673511938655115 -0.01187222206486697 -0.9858258610195975 -0.1673511938655115 -0.5976220854673472 0.4883263199428125 0.635912925024149 0.5976220854673472 -0.4883263199428125 -0.635912925024149 -0.6763329695767453 0.7043165012944799 0.2156663633203012 0.6763329695767453 -0.7043165012944799 -0.2156663633203012 0.5872548942566114 -0.1498419288211753 0.7954112681743992 -0.5872548942566114 0.1498419288211753 -0.7954112681743992 0.4152537891845273 -0.5579015597107579 0.7185472428728649 -0.4152537891845273 0.5579015597107579 -0.7185472428728649 5.672463972588586e-008 -0.7269265674754418 0.6867151996995324 -5.672463972588586e-008 0.7269265674754418 -0.6867151996995324 -0.4152446317486396 -0.5579093061341975 0.7185465203678847 0.4152446317486396 0.5579093061341975 -0.7185465203678847 -0.5872665062521697 -0.1498228226207654 0.7954062939506557 0.5872665062521697 0.1498228226207654 -0.7954062939506557 -0.4152537205038676 0.2581954684019092 0.8722955048058053 0.4152537205038676 -0.2581954684019092 -0.8722955048058053 0.4152483299874877 0.2582110277020007 0.872293465306074 -0.4152483299874877 -0.2582110277020007 -0.872293465306074 6.775138903465313e-006 0.7315970759914494 0.6817372795695269 -6.775138903465313e-006 -0.7315970759914494 -0.6817372795695269 8.512239439668168e-006 0.4272458985545937 0.9041354666728984 -8.512239439668168e-006 -0.4272458985545937 -0.9041354666728984 0.2767973318869605 -0.1780315720475731 0.9442923257204464 -0.2767973318869605 0.1780315720475731 -0.9442923257204464 0.1957835389452804 -0.3702209790276415 0.9080777679064038 -0.1957835389452804 0.3702209790276415 -0.9080777679064038 -5.137564631330466e-005 -0.4499066475089857 0.8930755880034837 5.137564631330466e-005 0.4499066475089857 -0.8930755880034837 -0.1956889170168902 -0.3703019887117289 0.9080651325278903 0.1956889170168902 0.3703019887117289 -0.9080651325278903 -0.2767603498626814 -0.1779618944664103 0.9443162991613628 0.2767603498626814 0.1779618944664103 -0.9443162991613628 -0.1956928545008283 0.0145078660224017 0.9805579169640077 0.1956928545008283 -0.0145078660224017 -0.9805579169640077 -1.827556367716609e-005 0.09414657368914475 0.9955583470237183 1.827556367716609e-005 -0.09414657368914475 -0.9955583470237183 0.1956948075932166 0.01448265239006214 0.9805578999022968 -0.1956948075932166 -0.01448265239006214 -0.9805578999022968 2.405554025817842e-006 -0.1851566190805033 0.9827090242818015 -2.405554025817842e-006 0.1851566190805033 -0.9827090242818015</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"132\" source=\"#ID1301\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1299\">\r\n                    <float_array count=\"768\" id=\"ID1302\">0.2080582420229697 0.3882045639627037 0.171383566938535 0.3776320810910839 0.1046905764235344 0.4383724341029862 0.1010017631055067 0.3294286417634476 0.1202050940286545 0.2920410646281706 0.07309387706344146 0.307930832875431 0.2090662446480763 0.4685215090185798 0.2080315582321686 0.3882634996152287 0.1046564174161391 0.4384218369377809 0.2496123824858481 0.2200480093324486 0.1394726711780237 0.2602934649331121 0.2386395607208875 0.2998444509836821 0.06376238275677403 0.3676674803682631 0.05673238008998306 0.3277340851400835 0.02596570958586805 0.3599869945924319 0.1589088718957364 0.2396154021835559 0.1086236296223543 0.2317627961669785 0.1161818469373493 0.2618915737983167 0.1464213323988043 0.533592116390885 0.09817371566666291 0.604310598754456 0.2549750272269263 0.5525622137268859 0.103825972067229 0.4724434417343824 0.06509943028128994 0.4685762677249725 0.01727397236375587 0.5394743884514127 0.2649373005417774 0.4105097867300601 0.1571726437905581 0.388986221498794 0.1062425157039879 0.4585337399394807 0.2496140858291876 0.2200245139129967 0.2147949831452184 0.206138284531609 0.1394763887758067 0.2602733806614553 -0.02231501358307491 0.3721826220829955 0.01548370099147176 0.3645021277390662 -0.01528541984169108 0.3322491823064301 0.1247570099462456 0.2206571694598572 0.1033248141235846 0.1840256789465968 0.07674430986559575 0.2065184020678076 0.254964509120884 0.552582383197711 0.09816146859795036 0.6043275260536403 0.2605997383241684 0.6327157898210546 0.2649362945355829 0.4105211844224449 0.1062408657725533 0.4585438208054554 0.2675298292567629 0.4907552629770638 0.1276331686020876 0.5504554024377412 0.1038775357813703 0.4724001927331763 0.01733835202234516 0.5394413787095309 0.1384203174032103 0.2614922151725247 -0.01085229198658636 0.3255561382136697 0.1544275092811839 0.340760731290634 0.1438308082842277 0.005171244455458367 0.0452312589261509 0.06095763251281533 0.1520765339589031 0.08516605074963499 -0.06263340927464314 0.3422366332281409 -0.03472552967862196 0.3207385988470679 -0.08183952982352577 0.3048486639301516 -0.08732518098070186 0.5580348656151252 -0.02485981102038577 0.4761082008774138 -0.06358822450061247 0.4799761398409971 0.10631886024611 -0.003338514110620998 0.04523073783769346 0.06095640886336243 0.1438299019628124 0.005169599450056709 -0.08674402536572262 0.2344196707044798 -0.03872978573575731 0.2202807567916615 -0.06531287802638468 0.1977878005772124 0.1221074455191948 0.6280235097575183 0.08829727228098044 0.703753494718967 0.285842149394967 0.6513517727745747 0.1489079664835728 0.6196372241314372 0.03812327434693984 0.6122692549671323 0.002326090532160327 0.6874224568079909 0.1200074108369201 0.5674038945552706 0.1259503105362105 0.6453054766934032 0.2837585702440268 0.590691403734369 0.1528789556923448 0.5684602092775959 -0.01310889317377053 0.5591850992389119 -0.01218794922812959 0.6350249708269947 0.02798624290204783 0.2513443940562198 -0.01085177440272786 0.3255667206167832 0.1384221967330916 0.2615047611748251 -0.08153584686102669 0.2801217377832773 -0.07397905136523253 0.2499925822418439 -0.1242658053286974 0.2578452867549194 -0.1819365595642197 0.4902346623673546 -0.1442088430693662 0.3994057130453525 -0.1808846373144836 0.4099762411847058 0.02288594704291429 0.5470312648394177 -0.02492679807781306 0.4761272149880436 -0.08741198483382286 0.5580445273350287 -0.1394450479261169 0.01613795932540049 -0.1852058514391318 0.1046420371559939 -0.07835760972878399 0.08043328459741525 -0.1769541244099746 0.02464457027635999 -0.185204818429171 0.1046396117936526 -0.139441008528674 0.0161364959594385 0.06741342792232763 0.6808947856999051 0.2228588296250281 0.7011366573705343 0.2657729754807748 0.630433478214673 0.1352566951232709 0.6206283495429738 0.2902567707110412 0.6429042249500787 0.2911088085944585 0.5626421563380348 0.1489626486947834 0.6196133995722869 0.002387909799050052 0.6874081822758681 0.1682023498449169 0.6984386902146473 0.1506261487647364 0.5603116479083441 -0.01411168737255509 0.6273789999156675 0.1757988307631528 0.6357992196468209 -0.02568429657156245 0.6347703883653577 -0.02495908944858601 0.5589292021810814 -0.2156018516536662 0.643127653372318 -0.06514438190551528 0.2633726167132439 -0.1915922019484218 0.352800069700637 -0.02630892620494943 0.3375957727410948 -0.2479516845314106 0.2505007583338688 -0.2369886348386537 0.3302972074025672 -0.2131316044867787 0.2366157045391757 -0.181867065913399 0.4902492869963763 -0.07745886651356443 0.4601475953214236 -0.144161252169029 0.3994147093794894 0.001359886543496893 0.6182124634845919 -0.1094276578114278 0.6255816144805028 -0.1286571737077494 0.7044084431602284 -0.1755853420183451 0.2735265650159313 -0.1915919410095564 0.3527953443888429 -0.06514645085925339 0.2633658527220589 -0.236965033320896 0.3303158736430435 -0.1377995039188114 0.2907638994653895 -0.213122803815267 0.2366320389842904 0.07756392616899793 0.6304498435742529 0.05366712537029805 0.7151253977820606 0.2329941519881805 0.6507637048681906 0.1932670534730516 0.5379296285845305 0.02730019389423506 0.5284229376606484 -0.01129022340284161 0.6006518969316107 0.138284401693455 0.6404778035460549 0.07615862066183092 0.7218970631011209 0.2935508929381908 0.6615742729914216 0.176599968659267 0.4818190296465187 -0.01310071310947299 0.470855685318903 -0.04269214992280118 0.5696259222882558 -0.0261304068675559 0.5251982967325118 -0.2159192031756957 0.5352032708817965 -0.1929730855310471 0.628432874748292 -0.02579307327864677 0.5520117546201454 -0.1917753686403668 0.5613856719066962 -0.2157922616770364 0.6371056923739527 -0.125094583659455 0.551031642965349 -0.233647954502779 0.570000547687834 -0.2392878783191334 0.6501339370444887 0.03707694644989035 0.6933791868335899 0.001287706720952842 0.6182234440958171 -0.1287410399310728 0.7044085138252826 -0.2766006809446024 0.5138713407498793 -0.1153121323528152 0.4816592282457536 -0.1662437506292764 0.4121121695409867 -0.2740092436721249 0.4336369129846999 -0.2766035107276342 0.513871899331205 -0.1662451406294676 0.4121136944166516 0.2556632473040211 0.6941827097584667 0.07613108897525486 0.7581895240206594 0.2695143022305876 0.7846351439976531 0.06590489319615893 0.7285601847238541 0.259285526863961 0.7550914667326976 0.2843435659551222 0.6706239033359103 0.1617965981833127 0.4442247481849591 -0.04080049484237337 0.5107678252204927 0.1490544489404103 0.5198569286160608 0.1773340919812732 0.5423554378049972 -0.04716662747071239 0.6215991558867381 0.1484220901923369 0.6345525160244437 0.01003422637323316 0.5847062943806605 -0.02716728418582717 0.4875414780077202 -0.1854264661766825 0.5988261138125302 -0.07669825523228402 0.7353170697687607 -0.1414713327027521 0.655184667415497 -0.2699311341538568 0.7625046186014222 -0.157344457189635 0.6507872178140571 -0.1484700983558898 0.5730585792750997 -0.3126460023175801 0.6717210882007215 -0.07681739075579377 0.6217440960200278 -0.1250691239449588 0.5510263051573182 -0.2392550393970368 0.6501338608937675 0.005646298457818357 0.4408160893341088 -0.1602739329270165 0.4508488223597982 -0.1441685953371539 0.5260830347811247 -0.2878860286894726 0.6668763501632932 -0.1300129888345546 0.5620410501109798 -0.2934317215176717 0.5867306020968504 0.1015232348939078 0.5866750997084917 0.09720003321684195 0.6668629984245904 0.2942986226919566 0.6157375177931697 0.1373413603375052 0.7237529430955545 -0.05256313650851326 0.7153287971421402 -0.0481843548750184 0.8063700168014226 0.07570508625083916 0.6592520854617144 0.07241333498619998 0.7394768146881223 0.268853543301056 0.6868101313368737 0.1517674658002891 0.6997244517686309 -0.04400127574436411 0.6885804100920228 -0.03638949172855385 0.7686149563678284 0.004998956006142696 0.6862408483747942 -0.1907722065023648 0.6973853942935883 -0.1685891660654876 0.7757317551434142 -0.2543749297989185 0.7544038215594972 -0.09393675393800623 0.6508236897929691 -0.2870849600325312 0.6783810647268174 -0.2927235876658776 0.7568772729065211 -0.1611857191789751 0.6518900510986958 -0.3166207076123774 0.672201774437577 -0.2347778985046108 0.710483796899215 -0.1128779830293311 0.6168726118426419 -0.2767838310329202 0.6394439938315563 0.0841389162801193 0.5829415879532797 0.04743476569016653 0.5101068455946162 -0.105753089981269 0.5915806611126669 -0.03673915749690032 0.7102227954984445 -0.0730018702055297 0.6351987822433595 -0.1920594005484161 0.7310470828487421 0.0972006896596182 0.6668669704030218 0.2606319063263749 0.6915065253920528 0.2942993536290568 0.6157416674978724 0.07241670287206464 0.7395035949661424 0.2361453857394986 0.7628609343992937 0.2688574826135216 0.6868382306077284 0.1650885440251674 0.7423708403751169 -0.0189626455091732 0.8270042884992223 0.1768001133898592 0.8382999474881305 0.1517608075590242 0.6996736720411803 -0.03639401679218882 0.7685677820582493 0.1295796612097496 0.7780205881684124 -0.002604180917756822 0.7663214238895806 0.005010321853939543 0.6862870376575062 -0.1685813223016391 0.7757737164068272 -0.09065528838327473 0.7310249783205859 -0.09394779220725852 0.6508004863863935 -0.2543836567215877 0.754382833644238 -0.08406438233962031 0.6538138320318847 -0.08838826351847956 0.5736264274176743 -0.247495419168689 0.6784533208505356 -0.06783662193725235 0.7199435960856713 -0.09289436582891378 0.6354759784948433 -0.2612011993119516 0.7464705386397327 0.09567019989317839 0.7392873824859151 -0.09422137123556697 0.7479323725353121 -0.1034184211764667 0.8440309126814857 -0.0476654507798161 0.6794313502269357 -0.2031153618598148 0.6996480116237488 -0.2162479199072611 0.7901667433545733 0.1233343970809288 0.5214166957459726 0.2820263719437469 0.4733929648057076 0.1207371656860335 0.4411819771735436 0.2006501146604302 0.5183762525620003 0.005029331790608622 0.5056491440348117 0.01160227546055524 0.5857430621380582 0.08161017703864065 0.5779366673242971 0.08725860645803901 0.6580740760745135 0.2440492058866474 0.6063246612429023 0.1305743452376824 0.6584494751579818 -0.03524161102812632 0.6474158926183059 -0.01600154488583202 0.7262417747470411 -0.004223759032836607 0.6414631458429357 -0.1700431486384346 0.6524965984240604 -0.1342590765612526 0.7276587441820807 -0.2171399658048231 0.6596095700459324 -0.102949530992559 0.5605012715081108 -0.2653882882540545 0.5888895289933324 -0.1116692834863443 0.418030489126575 -0.2729578219881398 0.450242930628122 -0.2220198422858973 0.5197910101150416 -0.2474956980842612 0.678452789270064 -0.08838860081279965 0.5736258410028052 -0.2811633898565886 0.6026880952129459 0.05409249544158197 0.8073395572925669 0.05966025944387264 0.7163385405005769 -0.1416985174983493 0.8183612303317118 0.1233291602950166 0.5213706510168323 0.2310849248397054 0.5428932217507596 0.282019649796565 0.4733438827122014 0.08725861575139056 0.6580743091594025 0.1958017724451708 0.6770442728344743 0.2440492238456599 0.6063249105757141 0.2006513188047662 0.5183804059416854 0.01160334398944389 0.585746980003428 0.1774426994942418 0.5965343702039254 0.1305748135810249 0.658460743190107 -0.01600182655903531 0.7262520392295695 0.09479064695705169 0.7336226615917477 -0.02346344094958563 0.7202787574019434 -0.004224923338314924 0.6414526413781714 -0.1342588794123853 0.7276495107459581 -0.1085966439099987 0.640643569267857 -0.1029476864153791 0.5605059964387001 -0.2171391271351572 0.6596135777394324 -0.1142545077211706 0.4982870351788154 -0.1116541954595357 0.4180514559230356 -0.2220099714195967 0.5198084756169563 -0.007739909084885002 0.3667732939438934 0.00826160109455059 0.2875004536900948 -0.1181799302189235 0.3769340437589404 0.02648622302457283 0.57874511957447 0.03305907657106505 0.4986512882814798 -0.1393565486291509 0.5895325357957912 0.03305971296194421 0.4986526400923563 -0.1625640946810289 0.5113797199135576 -0.1393560029338519 0.5895337811261071 0.1477670252786445 0.3251474826058816 0.2579173242316524 0.284900112650938 0.1587588837187196 0.2453515516988695 0.04489251775895983 0.3788118852243066 0.1941670260061251 0.3147455280013232 0.02888817239001664 0.2995395883191777 0.09340040653540357 0.408957019524095 0.09443325949047135 0.4892189907694559 0.1977978177184108 0.4390597401728739 -0.01700424292782076 0.4916737909751708 0.006765468393145828 0.5697291266390435 0.09329828349014012 0.5026902472052257 -0.1335211427572895 0.4950467490333376 -0.08572101886471382 0.5659605325024991 -0.02321586824066765 0.4840287800018171 -0.1205927518739747 0.387292188398676 -0.2249920317252153 0.4173894234732767 -0.1582728790865721 0.4781123703852491 -0.1604314491502845 0.2148771169737214 -0.2595886569148715 0.2544264682782443 -0.1842723229005086 0.3085603014123665 -0.1038340372901505 0.1056829109646204 -0.05806716518954648 0.01718763258847805 -0.1649164670862111 0.04139669522916714 -0.1181642265434135 0.3769626624200317 0.008282488544084487 0.2875336079700712 -0.1569998946990238 0.3027388807033044 0.1477661879727247 0.3251199328738696 0.1826025400776905 0.3390062713382762 0.2579148488932883 0.2848697887431579 0.09441109444261013 0.4894653628017057 0.1310455411064328 0.500034700779838 0.1977958265194056 0.4393318484204865 0.155341211678657 0.3890139057296106 0.1941814072320926 0.3147915900584225 0.04490407271647314 0.3788538718982092 0.006801692781106001 0.5695807395810987 0.04553908455198724 0.573447099210587 0.09330861190876177 0.5025211808494376 -0.02321802396029496 0.4841270912619529 -0.08576115238161489 0.566040906577534 -0.04702152290862134 0.5621760547641354 -0.120633676237802 0.3872629880546628 -0.1582450040765638 0.4781008164818528 -0.1216129381345534 0.4675259254091417 -0.1494293674300025 0.2946669358965301 -0.1604129358621988 0.2148711223650165 -0.1842665688488493 0.3085522968429815 -0.06623956381366637 0.09719929106545393 -0.05794927563359222 0.0172095069455723 -0.1037623795280825 0.1056899803016136 0.1369209661971957 0.125083638802776 0.1979812565786531 0.06078440868974403 0.09940135812491932 0.1165898096804462 0.06457760427489892 0.2611078435790685 0.1148573908294561 0.2689606230022873 0.1072944986554617 0.23882018376842 0.09944066821653162 0.1166923458920594 0.1980381408147453 0.06090616171214715 0.09119066960290964 0.0367005362591048 0.05839749350901192 0.2935323672363474 0.03914909840766832 0.330895245008053 0.08626643021294608 0.3150174476167217 -0.006831296614083174 0.3289837123361127 0.0002444636612285904 0.3689196089610778 0.03097801309104284 0.3366591568939948 -0.03460728754184527 0.324440008484787 -0.07241863793649281 0.3321154617135932 -0.04168263633880348 0.3643759502252016 -0.09677293437997288 0.2807476421119609 -0.1246418658234179 0.3022329471600883 -0.07752175078445497 0.3181109105842664 -0.141934830421964 0.2205948741971674 -0.1494963004299555 0.2507356913852268 -0.0992150020156706 0.2428828134899558 -0.08010388262469373 0.1847174117292542 -0.1281037157479544 0.1988746742058536 -0.1015066903322446 0.2213608795203222 0.04208799284752866 0.1984597971967464 0.06349184826195159 0.235102886276443 0.09008628595217623 0.2126169133576009</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"384\" source=\"#ID1302\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1298\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1296\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1297\"/>\r\n                </vertices>\r\n                <triangles count=\"128\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1298\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1299\"/>\r\n                    <p>0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 1 9 10 10 2 11 12 12 6 13 0 14 6 15 14 16 1 17 2 18 16 19 8 20 12 21 0 22 8 23 2 24 10 25 18 26 1 27 14 28 10 29 12 30 20 31 6 32 6 33 22 34 14 35 8 36 16 37 24 38 2 39 18 40 16 41 26 42 12 43 8 44 10 45 28 46 18 47 14 48 30 49 10 50 20 51 32 52 6 53 26 54 20 55 12 56 22 57 30 58 14 59 6 60 34 61 22 62 16 63 36 64 24 65 26 66 8 67 24 68 18 69 38 70 16 71 18 72 28 73 40 74 30 75 28 76 10 77 32 78 34 79 6 80 42 81 32 82 20 83 42 84 20 85 26 86 22 87 44 88 30 89 34 90 44 91 22 92 36 93 46 94 24 95 38 96 36 97 16 98 26 99 24 100 48 101 18 102 40 103 38 104 40 105 28 106 50 107 30 108 52 109 28 110 32 111 54 112 34 113 42 114 54 115 32 116 42 117 26 118 48 119 44 120 52 121 30 122 54 123 44 124 34 125 36 126 56 127 46 128 48 129 24 130 46 131 38 132 58 133 36 134 38 135 40 136 60 137 40 138 50 139 62 140 28 141 52 142 50 143 54 144 42 145 64 146 64 147 42 148 48 149 66 150 52 151 44 152 54 153 66 154 44 155 46 156 56 157 68 158 58 159 56 160 36 161 48 162 46 163 70 164 38 165 60 166 58 167 60 168 40 169 62 170 62 171 50 172 72 173 50 174 52 175 74 176 66 177 54 178 64 179 64 180 48 181 70 182 74 183 52 184 66 185 56 186 76 187 68 188 70 189 46 190 68 191 58 192 78 193 56 194 58 195 60 196 80 197 60 198 62 199 82 200 84 201 62 202 72 203 72 204 50 205 74 206 86 207 66 208 64 209 86 210 64 211 70 212 74 213 66 214 86 215 76 216 88 217 68 218 78 219 76 220 56 221 70 222 68 223 90 224 58 225 80 226 78 227 80 228 60 229 82 230 82 231 62 232 84 233 84 234 72 235 92 236 72 237 74 238 94 239 86 240 70 241 90 242 74 243 86 244 94 245 96 246 88 247 76 248 90 249 68 250 88 251 78 252 98 253 76 254 78 255 80 256 100 257 80 258 82 259 102 260 104 261 82 262 84 263 84 264 92 265 106 266 92 267 72 268 94 269 94 270 86 271 90 272 96 273 108 274 88 275 98 276 96 277 76 278 90 279 88 280 110 281 78 282 100 283 98 284 100 285 80 286 102 287 102 288 82 289 104 290 104 291 84 292 106 293 106 294 92 295 112 296 92 297 94 298 110 299 94 300 90 301 110 302 114 303 108 304 96 305 108 306 110 307 88 308 98 309 116 310 96 311 100 312 118 313 98 314 102 315 120 316 100 317 102 318 104 319 122 320 104 321 106 322 124 323 126 324 106 325 112 326 112 327 92 328 110 329 114 330 128 331 108 332 116 333 114 334 96 335 112 336 110 337 108 338 118 339 116 340 98 341 100 342 120 343 118 344 102 345 122 346 120 347 122 348 104 349 124 350 124 351 106 352 126 353 126 354 112 355 128 356 130 357 128 358 114 359 128 360 112 361 108 362 116 363 130 364 114 365 118 366 130 367 116 368 118 369 120 370 130 371 120 372 122 373 130 374 122 375 124 376 130 377 130 378 124 379 126 380 130 381 126 382 128 383</p>\r\n                </triangles>\r\n                <triangles count=\"128\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1298\"/>\r\n                    <p>3 4 5 4 7 5 3 5 9 3 11 4 5 7 13 4 15 7 9 17 3 9 5 13 19 11 3 11 15 4 7 21 13 15 23 7 25 17 9 17 19 3 9 13 27 19 29 11 11 31 15 7 33 21 13 21 27 15 31 23 23 35 7 25 37 17 25 9 27 17 39 19 41 29 19 11 29 31 7 35 33 21 33 43 27 21 43 31 45 23 23 45 35 25 47 37 17 37 39 49 25 27 39 41 19 51 29 41 29 53 31 35 55 33 33 55 43 49 27 43 31 53 45 35 45 55 47 57 37 47 25 49 37 59 39 61 41 39 63 51 41 51 53 29 65 43 55 49 43 65 45 53 67 45 67 55 69 57 47 37 57 59 71 47 49 59 61 39 63 41 61 73 51 63 75 53 51 65 55 67 71 49 65 67 53 75 69 77 57 69 47 71 57 79 59 81 61 59 83 63 61 73 63 85 75 51 73 65 67 87 71 65 87 87 67 75 69 89 77 57 77 79 91 69 71 79 81 59 83 61 81 85 63 83 93 73 85 95 75 73 91 71 87 95 87 75 77 89 97 89 69 91 77 99 79 101 81 79 103 83 81 85 83 105 107 93 85 95 73 93 91 87 95 89 109 97 77 97 99 111 89 91 99 101 79 103 81 101 105 83 103 107 85 105 113 93 107 111 95 93 111 91 95 97 109 115 89 111 109 97 117 99 99 119 101 101 121 103 123 105 103 125 107 105 113 107 127 111 93 113 109 129 115 97 115 117 109 111 113 99 117 119 119 121 101 121 123 103 125 105 123 127 107 125 129 113 127 115 129 131 109 113 129 115 131 117 117 131 119 131 121 119 131 123 121 131 125 123 127 125 131 129 127 131</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1303\">\r\n            <mesh>\r\n                <source id=\"ID1306\">\r\n                    <float_array count=\"522\" id=\"ID1309\">0.5757430791854858 -0.2640672326087952 -0.04370040446519852 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5220236778259277 0.04897113516926765 -0.04865696281194687 0.5220236778259277 0.04897113516926765 -0.04865696281194687 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5757430791854858 -0.2640672326087952 -0.04370040446519852 0.5596339106559753 -0.4551787674427033 -0.0152185931801796 0.5596339106559753 -0.4551787674427033 -0.0152185931801796 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.1914478987455368 0.04898110404610634 -0.04865696281194687 0.1914478987455368 0.04898110404610634 -0.04865696281194687 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5609543919563294 -0.5950192809104919 0.115213468670845 0.5609543919563294 -0.5950192809104919 0.115213468670845 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.574457585811615 -0.06990624219179153 -0.2623734772205353 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.574457585811615 -0.06990624219179153 -0.2623734772205353 0.1425719261169434 -0.2640497386455536 -0.04370040446519852 0.1425719261169434 -0.2640497386455536 -0.04370040446519852 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.1586782038211823 -0.4551669061183929 -0.0152185931801796 0.1586782038211823 -0.4551669061183929 -0.0152185931801796 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5491922497749329 -0.6375892162322998 0.3780633807182312 0.5491922497749329 -0.6375892162322998 0.3780633807182312 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.1438722163438797 -0.06989359110593796 -0.2623734772205353 0.1438722163438797 -0.06989359110593796 -0.2623734772205353 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.1573539972305298 -0.595005989074707 0.1152148991823196 0.1573539972305298 -0.595005989074707 0.1152148991823196 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5184099674224854 -0.8335617780685425 0.3569554090499878 0.5184099674224854 -0.8335617780685425 0.3569554090499878 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1950476169586182 -0.8335521221160889 0.3569565713405609 0.1950476169586182 -0.8335521221160889 0.3569565713405609 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.2369584441184998 -0.8251082301139832 0.4601387679576874 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.2369584441184998 -0.8251082301139832 0.4601387679576874 0.3958669900894165 -0.85288006067276 0.4996026456356049 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.3958669900894165 -0.85288006067276 0.4996026456356049 0.4764984846115112 -0.8251250982284546 0.4601365625858307 0.4764984846115112 -0.8251250982284546 0.4601365625858307 0.4596176445484161 -0.8469366431236267 0.4531694352626801 0.4596176445484161 -0.8469366431236267 0.4531694352626801 0.3175884783267975 -0.8528740406036377 0.4996022284030914 0.3175884783267975 -0.8528740406036377 0.4996022284030914 0.2538373470306397 -0.8469233512878418 0.4531687796115875 0.2538373470306397 -0.8469233512878418 0.4531687796115875</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"174\" source=\"#ID1309\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1307\">\r\n                    <float_array count=\"522\" id=\"ID1310\">-0.5623456695593759 -0.02902424062761077 0.8263927282979973 -0.6776788756103134 -0.06952626265423349 0.7320638225953225 -0.08364715755509074 0.3839984169292143 0.9195370404876635 0.08364715755509074 -0.3839984169292143 -0.9195370404876635 0.6776788756103134 0.06952626265423349 -0.7320638225953225 0.5623456695593759 0.02902424062761077 -0.8263927282979973 -0.6954869493704354 0.3760430533359256 0.6122822268310583 0.6954869493704354 -0.3760430533359256 -0.6122822268310583 -0.3204674790414629 -0.04817752523915629 0.9460335728390615 0.3204674790414629 0.04817752523915629 -0.9460335728390615 0.6878997258483419 -0.0773037578987384 0.7216772798089942 -0.6878997258483419 0.0773037578987384 -0.7216772798089942 -0.9200618122166246 0.3674044358970494 0.1360155953699105 0.9200618122166246 -0.3674044358970494 -0.1360155953699105 -0.07128196911654768 -0.02119409286438933 0.9972310120060061 0.07128196911654768 0.02119409286438933 -0.9972310120060061 -0.278925631441701 0.0822711107392837 0.9567820841040937 0.278925631441701 -0.0822711107392837 -0.9567820841040937 0.08407854415395319 0.387336020948779 0.9180967298103827 -0.08407854415395319 -0.387336020948779 -0.9180967298103827 2.255743400527115e-005 0.8234880555100644 0.5673336072571545 2.140412797513351e-005 0.8234874830219355 0.5673344382708149 3.033972759434882e-005 0.9277932590582046 0.373094716560897 -3.033972759434882e-005 -0.9277932590582046 -0.373094716560897 -2.140412797513351e-005 -0.8234874830219355 -0.5673344382708149 -2.255743400527115e-005 -0.8234880555100644 -0.5673336072571545 -0.6145553697712602 0.7034281203016348 0.3570862319583578 0.6145553697712602 -0.7034281203016348 -0.3570862319583578 -0.05429496829919668 0.4036684937205148 0.9132928356199889 0.05429496829919668 -0.4036684937205148 -0.9132928356199889 0.9726035301304553 -0.1616463061327001 -0.1670713766371429 0.9746476165022039 -0.06780241782248969 -0.2132248948504782 0.9720490564290999 0.04311552109500944 -0.2307849296119713 -0.9720490564290999 -0.04311552109500944 0.2307849296119713 -0.9746476165022039 0.06780241782248969 0.2132248948504782 -0.9726035301304553 0.1616463061327001 0.1670713766371429 0.0336392230587115 0.7307994210963498 0.6817628684500544 -0.0336392230587115 -0.7307994210963498 -0.6817628684500544 0.7374793544197982 0.4572059492354973 -0.4970783859596251 0.8838275377583784 0.3740634335566644 -0.2809367031481668 -0.8838275377583784 -0.3740634335566644 0.2809367031481668 -0.7374793544197982 -0.4572059492354973 0.4970783859596251 0.5785150252202893 -0.02554248858252377 0.8152717012575499 -0.5785150252202893 0.02554248858252377 -0.8152717012575499 2.595741966724495e-005 0.9277954126478304 0.3730893614080339 -2.595741966724495e-005 -0.9277954126478304 -0.3730893614080339 -0.04629672257949584 0.8986462600662638 0.4362241542456291 0.04629672257949584 -0.8986462600662638 -0.4362241542456291 -0.904333663484486 0.4260001815927788 0.02654186074200746 0.904333663484486 -0.4260001815927788 -0.02654186074200746 0.9834693286842997 -0.1261076284381207 -0.1299420855110674 -0.9834693286842997 0.1261076284381207 0.1299420855110674 0.3527001788631265 0.7653825052469869 -0.5383235128542731 -0.3527001788631265 -0.7653825052469869 0.5383235128542731 -0.03456069332299173 0.7307200114792106 0.6818018944685153 0.03456069332299173 -0.7307200114792106 -0.6818018944685153 0.3308857098890422 -0.04606984733465251 0.94254560428543 -0.3308857098890422 0.04606984733465251 -0.94254560428543 0.7083231229345967 0.370005918120624 0.6011438879934609 -0.7083231229345967 -0.370005918120624 -0.6011438879934609 0.9329916499520448 0.3380979339269275 0.1233546439908304 -0.9329916499520448 -0.3380979339269275 -0.1233546439908304 4.175137933241703e-005 0.9624971715928647 0.2712917118759023 -4.175137933241703e-005 -0.9624971715928647 -0.2712917118759023 -0.06316387502239948 0.9659005428502105 0.251090553812411 0.06316387502239948 -0.9659005428502105 -0.251090553812411 -0.5338774675678342 0.7433939804543349 0.4029146801093459 0.5338774675678342 -0.7433939804543349 -0.4029146801093459 0.9282916758272926 -0.3528729355165036 -0.1172828033844797 -0.9282916758272926 0.3528729355165036 0.1172828033844797 -0.7371727916115995 0.4555778108195047 -0.4990241813744788 0.7371727916115995 -0.4555778108195047 0.4990241813744788 0.2927453765890279 0.08075837779410651 0.9527739652728829 -0.2927453765890279 -0.08075837779410651 -0.9527739652728829 -0.3690024290606827 0.7579722564310877 -0.5378803452702854 0.3690024290606827 -0.7579722564310877 0.5378803452702854 0.07128622684052716 -0.02118911041509052 0.9972308135344886 -0.07128622684052716 0.02118911041509052 -0.9972308135344886 0.6341081704417082 0.6888848242950419 0.351204394954076 -0.6341081704417082 -0.6888848242950419 -0.351204394954076 0.9204352528465152 0.3903257781933799 0.02108867456964116 0.9181639455430147 0.3957148118369558 0.01961521852354617 -0.9181639455430147 -0.3957148118369558 -0.01961521852354617 -0.9204352528465152 -0.3903257781933799 -0.02108867456964116 5.178125723876811e-005 0.9624944681935413 0.271301301168154 -5.178125723876811e-005 -0.9624944681935413 -0.271301301168154 -0.06528031215682842 0.9705532911741637 0.2318723567735187 0.06528031215682842 -0.9705532911741637 -0.2318723567735187 -0.8071345011136001 0.5825913322456345 -0.09550516585167916 0.8071345011136001 -0.5825913322456345 0.09550516585167916 -0.06764256345976379 0.8384986448583431 0.540688918121422 0.06764256345976379 -0.8384986448583431 -0.540688918121422 0.593262699854513 -0.8040659702966354 -0.03895233461892018 -0.593262699854513 0.8040659702966354 0.03895233461892018 -0.8897101437617623 0.3619257650191408 -0.2782545609738211 0.8897101437617623 -0.3619257650191408 0.2782545609738211 -0.9720327846987922 0.04319680535765318 -0.2308382582623698 0.9720327846987922 -0.04319680535765318 0.2308382582623698 -0.9746323213825966 -0.06775027945219549 -0.2133113633881711 0.9746323213825966 0.06775027945219549 0.2133113633881711 0.05226532367732852 0.4064698286281858 0.9121680844865584 -0.05226532367732852 -0.4064698286281858 -0.9121680844865584 0.9142349564372279 0.4047881480732629 0.01791646191741633 -0.9142349564372279 -0.4047881480732629 -0.01791646191741633 0.07205264813033455 0.7714983133929116 0.6321382509620019 0.079094426078098 0.6673578487483389 0.7405252011088925 0.08490175081320314 0.4049533256248704 0.9103870038473806 -0.08490175081320314 -0.4049533256248704 -0.9103870038473806 -0.079094426078098 -0.6673578487483389 -0.7405252011088925 -0.07205264813033455 -0.7714983133929116 -0.6321382509620019 5.013457659817343e-005 0.8714767518656733 0.4904368139161049 -5.013457659817343e-005 -0.8714767518656733 -0.4904368139161049 0.9447989913515391 -0.3276488849487459 -0.001036403858430049 -0.9447989913515391 0.3276488849487459 0.001036403858430049 -0.7920052855989604 0.6051280337239494 0.08091780017212312 0.7920052855989604 -0.6051280337239494 -0.08091780017212312 -3.138986537923502e-005 -0.9199607579002272 -0.3920104627918951 -3.138986537923502e-005 -0.9199607579002272 -0.3920104627918951 3.138986537923502e-005 0.9199607579002272 0.3920104627918951 3.138986537923502e-005 0.9199607579002272 0.3920104627918951 -0.9732157750163402 -0.1580442816411232 -0.1669522695260109 0.9732157750163402 0.1580442816411232 0.1669522695260109 -0.9834711209303843 -0.126096114110478 -0.1299396948671616 0.9834711209303843 0.126096114110478 0.1299396948671616 0.0437178963006298 0.8972403367035504 0.4393728755113896 -0.0437178963006298 -0.8972403367035504 -0.4393728755113896 0.06426418018846064 0.9662185317857469 0.2495833808139088 -0.06426418018846064 -0.9662185317857469 -0.2495833808139088 0.06429709081035219 0.9708344238347439 0.2309684082527008 -0.06429709081035219 -0.9708344238347439 -0.2309684082527008 0.7196572827450084 0.6620618477432274 -0.2092068477724722 0.7747789695478524 0.623234240124659 -0.1062856071281851 0.8171431206070383 0.5764162239823395 -0.004632188956936927 -0.8171431206070383 -0.5764162239823395 0.004632188956936927 -0.7747789695478524 -0.623234240124659 0.1062856071281851 -0.7196572827450084 -0.6620618477432274 0.2092068477724722 0.6594272425643234 0.6888982854805503 -0.3009565816292633 -0.6594272425643234 -0.6888982854805503 0.3009565816292633 6.682663927711848e-005 0.8714617897975016 0.4904633976731961 -6.682663927711848e-005 -0.8714617897975016 -0.4904633976731961 0.9335593015579758 -0.3287625002337843 0.1427664138185698 -0.9335593015579758 0.3287625002337843 -0.1427664138185698 -0.6594020609505565 0.6888906318398524 -0.3010292666460313 0.6594020609505565 -0.6888906318398524 0.3010292666460313 0.8221498543273054 -0.3070330188316616 0.4793749496758327 -0.8221498543273054 0.3070330188316616 -0.4793749496758327 -3.066908308931682e-005 -0.9199606115312351 -0.392010806344013 -0.6076623147201187 -0.7932324038290286 -0.03910070056416476 0.6076623147201187 0.7932324038290286 0.03910070056416476 3.066908308931682e-005 0.9199606115312351 0.392010806344013 -0.9333115515423831 -0.3394665247283948 -0.1170129323894408 0.9333115515423831 0.3394665247283948 0.1170129323894408 -0.7396363893425982 -0.6554726337331369 -0.1526225343361504 -0.8661412983354875 -0.2914642771454225 0.4060145643518379 -0.937612648422409 -0.3458272918389665 0.03586092215270673 0.937612648422409 0.3458272918389665 -0.03586092215270673 0.8661412983354875 0.2914642771454225 -0.4060145643518379 0.7396363893425982 0.6554726337331369 0.1526225343361504 -0.6855657172326377 -0.4195975644837834 0.5949264922951209 -0.3246046366813378 -0.2814634871269046 0.9030006286040668 0.3246046366813378 0.2814634871269046 -0.9030006286040668 0.6855657172326377 0.4195975644837834 -0.5949264922951209 0.1775861564188749 -0.8016171053217112 0.57085302268098 0.3245515382109805 -0.2814412062072947 0.9030266587944508 -0.3245515382109805 0.2814412062072947 -0.9030266587944508 -0.1775861564188749 0.8016171053217112 -0.57085302268098 0.6855528672262897 -0.4196299680603711 0.5949184449514615 -0.6855528672262897 0.4196299680603711 -0.5949184449514615 0.3674568997501367 -0.8965543114883223 0.2473171918361488 -0.3674568997501367 0.8965543114883223 -0.2473171918361488 -0.1776701550306539 -0.8016016592896061 0.5708485752242301 0.1776701550306539 0.8016016592896061 -0.5708485752242301 -0.3675430122840427 -0.8965104567949764 0.2473482059333262 0.3675430122840427 0.8965104567949764 -0.2473482059333262</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"174\" source=\"#ID1310\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1308\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1306\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1307\"/>\r\n                </vertices>\r\n                <triangles count=\"94\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1308\"/>\r\n                    <p>0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 14 0 8 2 16 8 10 18 2 20 21 22 26 12 6 28 6 14 30 31 32 2 36 16 38 32 39 18 36 2 10 42 18 20 22 44 26 6 46 48 12 26 30 50 31 46 6 28 30 32 38 38 39 52 54 36 18 42 56 18 10 58 42 10 60 58 44 22 62 26 46 64 66 12 48 30 68 50 70 38 52 54 18 72 74 70 52 56 72 18 76 56 42 76 42 58 60 78 58 60 80 81 22 84 62 64 46 86 88 12 66 66 64 90 92 68 30 94 70 74 96 70 94 96 98 70 100 76 58 78 100 58 60 102 78 60 81 102 104 105 106 62 84 110 92 112 68 64 86 90 114 88 66 114 66 90 116 117 92 98 120 70 122 120 98 124 100 78 124 78 126 128 126 105 130 131 132 128 105 104 131 130 136 84 138 110 92 140 112 88 114 142 92 144 140 92 146 147 150 120 122 124 126 128 152 153 154 158 153 159 162 159 163 166 163 144 92 166 144 92 147 168 150 147 120 154 147 150 153 147 154 158 159 170 158 147 153 170 159 162 162 163 166 92 168 166 147 172 168 172 158 170 172 147 158 172 170 162 168 162 166 168 172 162</p>\r\n                </triangles>\r\n                <triangles count=\"94\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1308\"/>\r\n                    <p>3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 15 9 17 3 3 19 11 23 24 25 7 13 27 15 7 29 33 34 35 17 37 3 40 33 41 3 37 19 19 43 11 45 23 25 47 7 27 27 13 49 34 51 35 29 7 47 41 33 35 53 40 41 19 37 55 19 57 43 43 59 11 59 61 11 63 23 45 65 47 27 49 13 67 51 69 35 53 41 71 73 19 55 53 71 75 19 73 57 43 57 77 59 43 77 59 79 61 82 83 61 63 85 23 87 47 65 67 13 89 91 65 67 35 69 93 75 71 95 95 71 97 71 99 97 59 77 101 59 101 79 79 103 61 103 82 61 107 108 109 111 85 63 69 113 93 91 87 65 67 89 115 91 67 115 93 118 119 71 121 99 99 121 123 79 101 125 127 79 125 108 127 129 133 134 135 109 108 129 137 135 134 111 139 85 113 141 93 143 115 89 141 145 93 148 149 93 123 121 151 129 127 125 155 156 157 160 156 161 164 160 165 145 164 167 145 167 93 169 148 93 121 148 151 151 148 155 155 148 156 171 160 161 156 148 161 165 160 171 167 164 165 167 169 93 169 173 148 171 161 173 161 148 173 165 171 173 167 165 169 165 173 169</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1311\">\r\n            <mesh>\r\n                <source id=\"ID1312\">\r\n                    <float_array count=\"522\" id=\"ID1315\">-0.1579605340957642 -0.2640672326087952 -0.04370040446519852 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.2116810828447342 0.04897113516926765 -0.04865696281194687 -0.2116810828447342 0.04897113516926765 -0.04865696281194687 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.1579605340957642 -0.2640672326087952 -0.04370040446519852 -0.1740687191486359 -0.4551787674427033 -0.0152185931801796 -0.1740687191486359 -0.4551787674427033 -0.0152185931801796 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.5422577261924744 0.04898110404610634 -0.04865696281194687 -0.5422577261924744 0.04898110404610634 -0.04865696281194687 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.172749400138855 -0.5950192809104919 0.115213468670845 -0.172749400138855 -0.5950192809104919 0.115213468670845 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.1592455804347992 -0.06990624219179153 -0.2623733282089233 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1592455804347992 -0.06990624219179153 -0.2623733282089233 -0.591135561466217 -0.2640497386455536 -0.04370040446519852 -0.591135561466217 -0.2640497386455536 -0.04370040446519852 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.5750284194946289 -0.4551669061183929 -0.0152185931801796 -0.5750284194946289 -0.4551669061183929 -0.0152185931801796 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1845105141401291 -0.6375892162322998 0.3780633807182312 -0.1845105141401291 -0.6375892162322998 0.3780633807182312 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.5898348093032837 -0.06989359110593796 -0.2623733282089233 -0.5898348093032837 -0.06989359110593796 -0.2623733282089233 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.5763527154922485 -0.595005989074707 0.1152148991823196 -0.5763527154922485 -0.595005989074707 0.1152148991823196 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.2152939885854721 -0.8335617780685425 0.3569554090499878 -0.2152939885854721 -0.8335617780685425 0.3569554090499878 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5386579036712647 -0.8335521221160889 0.3569565713405609 -0.5386579036712647 -0.8335521221160889 0.3569565713405609 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.4967458844184876 -0.8251082301139832 0.4601387679576874 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4967458844184876 -0.8251082301139832 0.4601387679576874 -0.3378376364707947 -0.85288006067276 0.4996026456356049 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.3378376364707947 -0.85288006067276 0.4996026456356049 -0.2572067081928253 -0.8251250982284546 0.4601365625858307 -0.2572067081928253 -0.8251250982284546 0.4601365625858307 -0.27408766746521 -0.8469366431236267 0.4531694352626801 -0.27408766746521 -0.8469366431236267 0.4531694352626801 -0.4161160886287689 -0.8528740406036377 0.4996022284030914 -0.4161160886287689 -0.8528740406036377 0.4996022284030914 -0.4798671901226044 -0.8469233512878418 0.4531687796115875 -0.4798671901226044 -0.8469233512878418 0.4531687796115875</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"174\" source=\"#ID1315\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1313\">\r\n                    <float_array count=\"522\" id=\"ID1316\">-0.5623413782526318 -0.02902591286613609 0.8263955897070229 -0.677675404794203 -0.06952438551774405 0.7320672138235622 -0.08364765397423228 0.3839963828085615 0.9195378447755958 0.08364765397423228 -0.3839963828085615 -0.9195378447755958 0.677675404794203 0.06952438551774405 -0.7320672138235622 0.5623413782526318 0.02902591286613609 -0.8263955897070229 -0.695482362370099 0.3760445437328366 0.6122865217860584 0.695482362370099 -0.3760445437328366 -0.6122865217860584 -0.3204593099152888 -0.0481776503756154 0.9460363337065347 0.3204593099152888 0.0481776503756154 -0.9460363337065347 0.6878959204722767 -0.07730026101703819 0.7216812816225021 -0.6878959204722767 0.07730026101703819 -0.7216812816225021 -0.9200589462427619 0.3674108354986236 0.1360176951608199 0.9200589462427619 -0.3674108354986236 -0.1360176951608199 -0.07128014245902452 -0.02119425833209892 0.9972311390569257 0.07128014245902452 0.02119425833209892 -0.9972311390569257 -0.2789192657441723 0.08227147538685829 0.9567839084842519 0.2789192657441723 -0.08227147538685829 -0.9567839084842519 0.08407837059411352 0.3873346347619575 0.9180973305222382 -0.08407837059411352 -0.3873346347619575 -0.9180973305222382 2.255739283483661e-005 0.8234880555114981 0.5673336072550753 2.140409195340843e-005 0.8234874830248066 0.5673344382666489 3.033968594614084e-005 0.9277932184238439 0.3730948176083784 -3.033968594614084e-005 -0.9277932184238439 -0.3730948176083784 -2.140409195340843e-005 -0.8234874830248066 -0.5673344382666489 -2.255739283483661e-005 -0.8234880555114981 -0.5673336072550753 -0.6145538793548455 0.7034298561426827 0.3570853775457554 0.6145538793548455 -0.7034298561426827 -0.3570853775457554 -0.05429544957895544 0.403668201025771 0.9132929363767339 0.05429544957895544 -0.403668201025771 -0.9132929363767339 0.9726028806148421 -0.1616484893202991 -0.1670730454626849 0.9746474771901317 -0.06780566333342517 -0.2132244995933303 0.9720479865498597 0.04311735512513346 -0.230789093181148 -0.9720479865498597 -0.04311735512513346 0.230789093181148 -0.9746474771901317 0.06780566333342517 0.2132244995933303 -0.9726028806148421 0.1616484893202991 0.1670730454626849 0.03363914623609972 0.7307988193148688 0.6817635173053045 -0.03363914623609972 -0.7307988193148688 -0.6817635173053045 0.7374772903514135 0.4572062697034959 -0.4970811534948304 0.8838245448984975 0.374067643048655 -0.2809405137373174 -0.8838245448984975 -0.374067643048655 0.2809405137373174 -0.7374772903514135 -0.4572062697034959 0.4970811534948304 0.5785078095990561 -0.02554278550114724 0.8152768120962013 -0.5785078095990561 0.02554278550114724 -0.8152768120962013 2.595736406077767e-005 0.9277954038468378 0.3730893832942695 -2.595736406077767e-005 -0.9277954038468378 -0.3730893832942695 -0.04629593633056625 0.8986463460660794 0.4362240605255061 0.04629593633056625 -0.8986463460660794 -0.4362240605255061 -0.9043343512161365 0.4259983832059894 0.02654729207230666 0.9043343512161365 -0.4259983832059894 -0.02654729207230666 0.9834689833887162 -0.1261096567901756 -0.1299427303723811 -0.9834689833887162 0.1261096567901756 0.1299427303723811 0.3526969098823379 0.7653832506285668 -0.5383245948465466 -0.3526969098823379 -0.7653832506285668 0.5383245948465466 -0.03456054493227085 0.7307198857760062 0.681802036712626 0.03456054493227085 -0.7307198857760062 -0.681802036712626 0.3308812010916427 -0.04607141258674735 0.9425471106031853 -0.3308812010916427 0.04607141258674735 -0.9425471106031853 0.7083195658882379 0.3700095213471906 0.6011458614116222 -0.7083195658882379 -0.3700095213471906 -0.6011458614116222 0.9329876653634008 0.3381076251655933 0.1233582185532577 -0.9329876653634008 -0.3381076251655933 -0.1233582185532577 4.175134927565876e-005 0.9624972903196903 0.2712912906528304 -4.175134927565876e-005 -0.9624972903196903 -0.2712912906528304 -0.0631634402754065 0.965900669977191 0.2510901741410616 0.0631634402754065 -0.965900669977191 -0.2510901741410616 -0.533871373943583 0.7433977055760073 0.4029158813299858 0.533871373943583 -0.7433977055760073 -0.4029158813299858 0.9282903521594874 -0.3528761504278969 -0.1172836073234571 -0.9282903521594874 0.3528761504278969 0.1172836073234571 -0.7371721457438576 0.4555775508361483 -0.4990253728153849 0.7371721457438576 -0.4555775508361483 0.4990253728153849 0.292743715322472 0.08075455144167999 0.9527748000239347 -0.292743715322472 -0.08075455144167999 -0.9527748000239347 -0.368999017402634 0.7579737893133243 -0.5378805256466265 0.368999017402634 -0.7579737893133243 0.5378805256466265 0.07128671084572642 -0.02118923355026286 0.9972307763192781 -0.07128671084572642 0.02118923355026286 -0.9972307763192781 0.6341018364624005 0.6888896156433952 0.3512064328193694 -0.6341018364624005 -0.6888896156433952 -0.3512064328193694 0.9204315623145812 0.3903344223627087 0.02108975613680669 0.9181604324338736 0.3957229027240721 0.01961643628381157 -0.9181604324338736 -0.3957229027240721 -0.01961643628381157 -0.9204315623145812 -0.3903344223627087 -0.02108975613680669 5.178130880145423e-005 0.9624944376759281 0.2713014094353274 -5.178130880145423e-005 -0.9624944376759281 -0.2713014094353274 -0.06527977768556016 0.9705533066587464 0.2318724424313881 0.06527977768556016 -0.9705533066587464 -0.2318724424313881 -0.8071252456732988 0.5826058726144744 -0.09549468567383179 0.8071252456732988 -0.5826058726144744 0.09549468567383179 -0.06764276738943618 0.8384989893984246 0.5406883582968282 0.06764276738943618 -0.8384989893984246 -0.5406883582968282 0.5932608855457696 -0.8040674217601206 -0.03895000571863708 -0.5932608855457696 0.8040674217601206 0.03895000571863708 -0.889706350667824 0.3619341275934684 -0.2782558119150394 0.889706350667824 -0.3619341275934684 0.2782558119150394 -0.9720318059751443 0.04320074092632786 -0.23084164302854 0.9720318059751443 -0.04320074092632786 0.23084164302854 -0.9746315500638775 -0.0677533314633561 -0.2133139181949928 0.9746315500638775 0.0677533314633561 0.2133139181949928 0.05226561043417893 0.4064695056671582 0.9121682119700502 -0.05226561043417893 -0.4064695056671582 -0.9121682119700502 0.9142315574047728 0.404795774692041 0.01791759572917519 -0.9142315574047728 -0.404795774692041 -0.01791759572917519 0.07205190362702056 0.7714993399204356 0.6321370829860044 0.07909377644207545 0.6673572130602039 0.7405258433739153 0.08490095446075462 0.4049538320230013 0.9103868528606617 -0.08490095446075462 -0.4049538320230013 -0.9103868528606617 -0.07909377644207545 -0.6673572130602039 -0.7405258433739153 -0.07205190362702056 -0.7714993399204356 -0.6321370829860044 5.013466762419966e-005 0.8714767519895718 0.4904368136959355 -5.013466762419966e-005 -0.8714767519895718 -0.4904368136959355 0.9447976547977393 -0.3276527353948617 -0.001037534075002607 -0.9447976547977393 0.3276527353948617 0.001037534075002607 -0.7919943496495504 0.6051402722477143 0.08093331222153129 0.7919943496495504 -0.6051402722477143 -0.08093331222153129 -3.138965815380397e-005 -0.9199607238787885 -0.3920105426325991 -3.138965815380397e-005 -0.9199607238787885 -0.3920105426325991 3.138965815380397e-005 0.9199607238787885 0.3920105426325991 3.138965815380397e-005 0.9199607238787885 0.3920105426325991 -0.9732150206109642 -0.1580472657677843 -0.1669538422454788 0.9732150206109642 0.1580472657677843 0.1669538422454788 -0.9834706541117561 -0.1260987934752365 -0.1299406279232339 0.9834706541117561 0.1260987934752365 0.1299406279232339 0.04371821291222033 0.8972403291110204 0.4393728595128624 -0.04371821291222033 -0.8972403291110204 -0.4393728595128624 0.06426401791437653 0.9662185050152043 0.2495835262345739 -0.06426401791437653 -0.9662185050152043 -0.2495835262345739 0.06429683232106599 0.9708344231682075 0.2309684830125767 -0.06429683232106599 -0.9708344231682075 -0.2309684830125767 0.7196515342741144 0.6620689141402413 -0.2092042593879843 0.774773632654447 0.6232414768956255 -0.1062820757248923 0.8171375224633035 0.5764241827179299 -0.004629358540970275 -0.8171375224633035 -0.5764241827179299 0.004629358540970275 -0.774773632654447 -0.6232414768956255 0.1062820757248923 -0.7196515342741144 -0.6620689141402413 0.2092042593879843 0.6594220440648094 0.6889046228283825 -0.3009534655840876 -0.6594220440648094 -0.6889046228283825 0.3009534655840876 6.682698108115185e-005 0.8714617897650312 0.4904633977308434 -6.682698108115185e-005 -0.8714617897650312 -0.4904633977308434 0.9335580875933367 -0.3287665807871548 0.1427649552467095 -0.9335580875933367 0.3287665807871548 -0.1427649552467095 -0.6593962739985512 0.6889030861991201 -0.3010134409991609 0.6593962739985512 -0.6889030861991201 0.3010134409991609 0.8221468749188605 -0.3070399146782842 0.4793756427432495 -0.8221468749188605 0.3070399146782842 -0.4793756427432495 -3.066889184531668e-005 -0.9199605775121815 -0.3920108861790355 -0.6076610753347634 -0.7932334874382245 -0.03909797858701984 0.6076610753347634 0.7932334874382245 0.03909797858701984 3.066889184531668e-005 0.9199605775121815 0.3920108861790355 -0.9333101311172105 -0.3394700156761205 -0.1170141342352701 0.9333101311172105 0.3394700156761205 0.1170141342352701 -0.7396277501350566 -0.6554808718826581 -0.1526290202618907 -0.8661382076886683 -0.2914696843078111 0.4060172758779682 -0.937610986303589 -0.3458318488782075 0.0358604331302899 0.937610986303589 0.3458318488782075 -0.0358604331302899 0.8661382076886683 0.2914696843078111 -0.4060172758779682 0.7396277501350566 0.6554808718826581 0.1526290202618907 -0.6855618799634182 -0.4195984413714799 0.5949302956982847 -0.3246028309346458 -0.2814634160625591 0.903001299870387 0.3246028309346458 0.2814634160625591 -0.903001299870387 0.6855618799634182 0.4195984413714799 -0.5949302956982847 0.1775873766266002 -0.8016168874161663 0.5708529490789194 0.3245524342354843 -0.2814434746436617 0.9030256297649164 -0.3245524342354843 0.2814434746436617 -0.9030256297649164 -0.1775873766266002 0.8016168874161663 -0.5708529490789194 0.6855484573798776 -0.4196354047042378 0.5949196918095591 -0.6855484573798776 0.4196354047042378 -0.5949196918095591 0.3674545694908423 -0.8965556991366327 0.2473156236591688 -0.3674545694908423 0.8965556991366327 -0.2473156236591688 -0.1776713711439905 -0.8016010428185574 0.5708490623869115 0.1776713711439905 0.8016010428185574 -0.5708490623869115 -0.3675432537537296 -0.8965097759246182 0.2473503149213933 0.3675432537537296 0.8965097759246182 -0.2473503149213933</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"174\" source=\"#ID1316\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1314\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1312\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1313\"/>\r\n                </vertices>\r\n                <triangles count=\"94\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1314\"/>\r\n                    <p>0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 14 0 8 2 16 8 10 18 2 20 21 22 26 12 6 28 6 14 30 31 32 2 36 16 38 32 39 18 36 2 10 42 18 20 22 44 26 6 46 48 12 26 30 50 31 46 6 28 30 32 38 38 39 52 54 36 18 42 56 18 10 58 42 10 60 58 44 22 62 26 46 64 66 12 48 30 68 50 70 38 52 54 18 72 74 70 52 56 72 18 76 56 42 76 42 58 60 78 58 60 80 81 22 84 62 64 46 86 88 12 66 66 64 90 92 68 30 94 70 74 96 70 94 96 98 70 100 76 58 78 100 58 60 102 78 60 81 102 104 105 106 62 84 110 92 112 68 64 86 90 114 88 66 114 66 90 116 117 92 98 120 70 122 120 98 124 100 78 124 78 126 128 126 105 130 131 132 128 105 104 131 130 136 84 138 110 92 140 112 88 114 142 92 144 140 92 146 147 150 120 122 124 126 128 152 153 154 158 153 159 162 159 163 166 163 144 92 166 144 92 147 168 150 147 120 154 147 150 153 147 154 158 159 170 158 147 153 170 159 162 162 163 166 92 168 166 147 172 168 172 158 170 172 147 158 172 170 162 168 162 166 168 172 162</p>\r\n                </triangles>\r\n                <triangles count=\"94\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1314\"/>\r\n                    <p>3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 15 9 17 3 3 19 11 23 24 25 7 13 27 15 7 29 33 34 35 17 37 3 40 33 41 3 37 19 19 43 11 45 23 25 47 7 27 27 13 49 34 51 35 29 7 47 41 33 35 53 40 41 19 37 55 19 57 43 43 59 11 59 61 11 63 23 45 65 47 27 49 13 67 51 69 35 53 41 71 73 19 55 53 71 75 19 73 57 43 57 77 59 43 77 59 79 61 82 83 61 63 85 23 87 47 65 67 13 89 91 65 67 35 69 93 75 71 95 95 71 97 71 99 97 59 77 101 59 101 79 79 103 61 103 82 61 107 108 109 111 85 63 69 113 93 91 87 65 67 89 115 91 67 115 93 118 119 71 121 99 99 121 123 79 101 125 127 79 125 108 127 129 133 134 135 109 108 129 137 135 134 111 139 85 113 141 93 143 115 89 141 145 93 148 149 93 123 121 151 129 127 125 155 156 157 160 156 161 164 160 165 145 164 167 145 167 93 169 148 93 121 148 151 151 148 155 155 148 156 171 160 161 156 148 161 165 160 171 167 164 165 167 169 93 169 173 148 171 161 173 161 148 173 165 171 173 167 165 169 165 173 169</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1317\">\r\n            <mesh>\r\n                <source id=\"ID1318\">\r\n                    <float_array count=\"192\" id=\"ID1321\">0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.082414269447327 0.1612508594989777</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"64\" source=\"#ID1321\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1319\">\r\n                    <float_array count=\"192\" id=\"ID1322\">-1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 -1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 -1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.0799147073227571 -0.9968017052320478 0 -0.0799147073227571 -0.9968017052320478 0 -0.0799147073227571 -0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1 0 0 -1 -0 -0 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 -1 0 0 1 -0 -0 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"64\" source=\"#ID1322\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1320\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1318\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1319\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1320\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 38 40 41 43 57 58 59 60 61 62 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1323\">\r\n            <mesh>\r\n                <source id=\"ID1324\">\r\n                    <float_array count=\"966\" id=\"ID1327\">0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1117984429001808 1.667413234710693 0.115709200501442 0.1117984429001808 1.667413234710693 0.115709200501442 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1117984429001808 1.667413234710693 0.115709200501442 0.1117984429001808 1.667413234710693 0.115709200501442 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.09066395461559296 1.60400927066803 0.1203010678291321 0.1119078770279884 1.560610055923462 0.1241858452558518 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1115833297371864 1.673897385597229 0.2029488384723663 0.1115833297371864 1.673897385597229 0.2029488384723663 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.09066395461559296 1.60400927066803 0.1203010678291321 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09044858813285828 1.561036467552185 0.124122679233551 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1115833297371864 1.673897385597229 0.2029488384723663 0.1115833297371864 1.673897385597229 0.2029488384723663 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.07645327597856522 1.567093849182129 0.2114255875349045 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.1116053834557533 1.522350549697876 0.1273301094770432 0.1116053834557533 1.522350549697876 0.1273301094770432 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.05172950774431229 1.567497491836548 0.2110787779092789 -0.05172950774431229 1.567497491836548 0.2110787779092789 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.08998314291238785 1.525822281837463 0.126566618680954 0.1116053834557533 1.522350549697876 0.1273301094770432 0.1116053834557533 1.522350549697876 0.1273301094770432 -0.05172950774431229 1.567497491836548 0.2110787779092789 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.05172950774431229 1.567497491836548 0.2110787779092789 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1075886934995651 1.45469856262207 0.2205129116773605 -0.08888807147741318 1.61049234867096 0.2075405865907669 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.1117819771170616 1.44821560382843 0.1332732439041138 0.1117819771170616 1.44821560382843 0.1332732439041138 -0.09107325971126556 1.454367280006409 0.2200525850057602 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09107325971126556 1.454367280006409 0.2200525850057602 0.1117819771170616 1.44821560382843 0.1332732439041138 0.1117819771170616 1.44821560382843 0.1332732439041138 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09107325971126556 1.454367280006409 0.2200525850057602 -0.09107325971126556 1.454367280006409 0.2200525850057602 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.05548623204231262 1.409258842468262 0.2237561196088791 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.05548623204231262 1.409258842468262 0.2237561196088791 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09051128476858139 1.402777671813965 0.1365166902542114 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1079739183187485 1.36528754234314 0.227682426571846 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1079739183187485 1.36528754234314 0.227682426571846 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.09036904573440552 1.244997978210449 0.1491470038890839 0.08007287234067917 1.249786019325256 0.2368745058774948 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.08007287234067917 1.249786019325256 0.2368745058774948 0.08007287234067917 1.249786019325256 0.2368745058774948 0.08007287234067917 1.249786019325256 0.2368745058774948 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.06330171227455139 1.251481771469116 0.2363867312669754 0.1115483716130257 1.243325471878052 0.1499182283878326 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1120293214917183 1.201940059661865 0.1530233770608902 -0.08816695958375931 1.208342671394348 0.2397843152284622 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09032661467790604 1.131766676902771 0.1581645011901856 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09032661467790604 1.131766676902771 0.1581645011901856 0.1115765795111656 1.083741784095764 0.1624274700880051 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1092481017112732 1.136982560157776 0.2459899932146072 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.09032661467790604 1.131766676902771 0.1581645011901856 -0.09032661467790604 1.131766676902771 0.1581645011901856 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1117357686161995 1.130521655082703 0.1590335518121719 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.09047000855207443 1.083552598953247 0.162391409277916 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1115765795111656 1.083741784095764 0.1624274700880051 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 0.1115765795111656 1.083741784095764 0.1624274700880051 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.08826761692762375 1.138250350952148 0.245403990149498 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.05714914947748184 1.090012192726135 0.2493478506803513</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"322\" source=\"#ID1327\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1325\">\r\n                    <float_array count=\"966\" id=\"ID1328\">-0.0024166884015165 0.07992091046628912 0.9967982783328879 -0.0024166884015165 0.07992091046628912 0.9967982783328879 -0.0024166884015165 0.07992091046628912 0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 -0.003110631363261071 0.07783347408664396 0.9969615209646388 -0.003110631363261071 0.07783347408664396 0.9969615209646388 -0.003110631363261071 0.07783347408664396 0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.9836178943881302 -0.1019900524990053 0.1486400586339742 0.9383821690531233 -0.3444700849915576 0.02791532462760632 0.999993085877236 -0.00259857559576065 0.002660000488053514 -0.999993085877236 0.00259857559576065 -0.002660000488053514 -0.9383821690531233 0.3444700849915576 -0.02791532462760632 -0.9836178943881302 0.1019900524990053 -0.1486400586339742 -0.001995957895499944 0.07990977967405556 0.9968001019585238 -0.001995957895499944 0.07990977967405556 0.9968001019585238 -0.001995957895499944 0.07990977967405556 0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.9610347439268059 0.1218714046724881 0.2481120345503079 0.9654052662832268 0.0893224290906193 0.2449779081753355 -0.9654052662832268 -0.0893224290906193 -0.2449779081753355 -0.9610347439268059 -0.1218714046724881 -0.2481120345503079 0.9999930844790407 -0.002600124498239249 0.00265901235195945 -0.9999930844790407 0.002600124498239249 -0.00265901235195945 -0.9997677002701824 -0.001962063264229214 0.02146382547958299 -0.9997146380314173 -0.002416057679974692 0.02376563003581787 -0.9997652412158105 7.096798190734332e-007 0.02166708231831937 0.9997652412158105 -7.096798190734332e-007 -0.02166708231831937 0.9997146380314173 0.002416057679974692 -0.02376563003581787 0.9997677002701824 0.001962063264229214 -0.02146382547958299 -0.0001447480486744699 0.07898002261828373 0.9968761884382722 -0.0001242652016906591 0.08858072054682997 0.9960689938480989 -0.001884638334509741 0.08147407185733846 0.9966736796732084 0.001884638334509741 -0.08147407185733846 -0.9966736796732084 0.0001242652016906591 -0.08858072054682997 -0.9960689938480989 0.0001447480486744699 -0.07898002261828373 -0.9968761884382722 0.9559355522797811 0.2607780009126028 0.1348408474000981 -0.9559355522797811 -0.2607780009126028 -0.1348408474000981 -0.002445224016861097 0.07991358786941463 0.9967987958225796 -0.002445224016861097 0.07991358786941463 0.9967987958225796 -0.002445224016861097 0.07991358786941463 0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 -0.00244232132186794 0.07992222073353468 0.9967981108025743 -0.00244232132186794 0.07992222073353468 0.9967981108025743 -0.00244232132186794 0.07992222073353468 0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 -0.9569652647069851 -0.2408069165882212 0.1619552748988548 0.9569652647069851 0.2408069165882212 -0.1619552748988548 -0.9539867307263839 -0.1064385090943651 0.2803215321372131 0.9539867307263839 0.1064385090943651 -0.2803215321372131 -0.001398335844479897 0.07526812206716654 0.9971623511030429 0.001398335844479897 -0.07526812206716654 -0.9971623511030429 -0.002443871020245489 0.07991829436837256 0.9967984218083847 -0.002444424462418968 0.07991536596824644 0.9967986552314407 -0.002444424462418968 0.07991536596824644 0.9967986552314407 0.002444424462418968 -0.07991536596824644 -0.9967986552314407 0.002444424462418968 -0.07991536596824644 -0.9967986552314407 0.002443871020245489 -0.07991829436837256 -0.9967984218083847 0.9989575248213486 6.802289991542292e-005 0.04564930421912409 -0.9989575248213486 -6.802289991542292e-005 -0.04564930421912409 -0.002444750279150375 0.0799185331884759 0.996798400504874 -0.002444750279150375 0.0799185331884759 0.996798400504874 -0.002444750279150375 0.0799185331884759 0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 -0.9616780887009002 -0.0003991166626293087 0.2741807696000454 0.9616780887009002 0.0003991166626293087 -0.2741807696000454 -0.9791900689292776 0.1393278140334234 0.1475620857366297 0.9791900689292776 -0.1393278140334234 -0.1475620857366297 -0.002381608891005497 0.08090506957136846 0.9967189662370946 0.002381608891005497 -0.08090506957136846 -0.9967189662370946 -0.002445265856695502 0.07991799161119449 0.9967984426611648 -0.002444579976353827 0.07991582004189891 0.9967986184459579 0.002444579976353827 -0.07991582004189891 -0.9967986184459579 0.002445265856695502 -0.07991799161119449 -0.9967984426611648 -0.002443667558720246 0.07991812532567823 0.9967984358601753 -0.002444421147860942 0.07991555159334562 0.9967986403576118 0.002444421147860942 -0.07991555159334562 -0.9967986403576118 0.002443667558720246 -0.07991812532567823 -0.9967984358601753 0.9510292064959941 -0.3017074737471085 0.06720155263636195 -0.9510292064959941 0.3017074737471085 -0.06720155263636195 -0.002445270659689314 0.0799165646360902 0.9967985570556203 -0.002445270659689314 0.0799165646360902 0.9967985570556203 0.002445270659689314 -0.0799165646360902 -0.9967985570556203 0.002445270659689314 -0.0799165646360902 -0.9967985570556203 -0.9137266110828168 0.4050395357152827 -0.0323520433150555 0.9137266110828168 -0.4050395357152827 0.0323520433150555 -0.002394921818000142 0.07906623005156864 0.9968664883598597 0.002394921818000142 -0.07906623005156864 -0.9968664883598597 -0.002443729418870228 0.07991713631775732 0.9967985150015506 -0.002442987674479496 0.07991918003998787 0.9967983529646096 0.002442987674479496 -0.07991918003998787 -0.9967983529646096 0.002443729418870228 -0.07991713631775732 -0.9967985150015506 0.9802656257872744 -0.09160270883204402 0.1751806114686077 -0.9802656257872744 0.09160270883204402 -0.1751806114686077 -0.9999953927080971 0.001598781537811305 -0.00258039922741558 0.9999953927080971 -0.001598781537811305 0.00258039922741558 -0.002043259112987656 0.08061333388167614 0.9967433548776127 0.002043259112987656 -0.08061333388167614 -0.9967433548776127 -0.9667576730943045 -0.2181100199662426 0.1334451973793394 0.9667576730943045 0.2181100199662426 -0.1334451973793394 -0.002443338460478632 0.0799196743506909 0.9967983124729131 0.002443338460478632 -0.0799196743506909 -0.9967983124729131 0.9584067278384761 0.1063003813176155 0.2648712384644182 -0.9584067278384761 -0.1063003813176155 -0.2648712384644182 -0.002278182316047894 0.07872327552518302 0.9968939039716919 0.002278182316047894 -0.07872327552518302 -0.9968939039716919 -0.9623422278865017 -0.1024231927397928 0.2518073192252984 0.9623422278865017 0.1024231927397928 -0.2518073192252984 -0.002445857659568367 0.07991052514313757 0.9967990398027363 0.002445857659568367 -0.07991052514313757 -0.9967990398027363 0.9578191650142742 0.1254879398364993 0.2585250937277644 -0.9578191650142742 -0.1254879398364993 -0.2585250937277644 -0.001577468944671645 0.08182061186603903 0.9966458242854357 0.001577468944671645 -0.08182061186603903 -0.9966458242854357 -0.9669997358230092 -0.04406785290913275 0.2509373134035851 0.9669997358230092 0.04406785290913275 -0.2509373134035851 -0.002445817810539561 0.07992501388276625 0.9967978782737639 -0.002445817810539561 0.07992501388276625 0.9967978782737639 -0.002445817810539561 0.07992501388276625 0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.9610764950953273 0.2399997840510825 0.1368651680695834 -0.9610764950953273 -0.2399997840510825 -0.1368651680695834 -0.00158449559484253 0.07788846641257956 0.9969608197785942 -0.00158449559484253 0.07788846641257956 0.9969608197785942 -0.00158449559484253 0.07788846641257956 0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 -0.9840427171014795 0.124301408755054 0.1273149272514676 0.9840427171014795 -0.124301408755054 -0.1273149272514676 -0.9403492166118542 0.3390969407785543 -0.02750664596234511 0.9403492166118542 -0.3390969407785543 0.02750664596234511 -0.00244355684856112 0.07991609501014736 0.9967985989096581 -0.00244355684856112 0.07991609501014736 0.9967985989096581 -0.00244355684856112 0.07991609501014736 0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.9989802704922386 0.009779687184768413 0.0440769427912357 -0.9989802704922386 -0.009779687184768413 -0.0440769427912357 -0.002381196982845648 0.0817170499956124 0.9966527246944864 -0.002381196982845648 0.0817170499956124 0.9966527246944864 -0.002381196982845648 0.0817170499956124 0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 -0.9999969486514102 0.000139643403180076 -0.002466411885425263 0.9999969486514102 -0.000139643403180076 0.002466411885425263 -0.002443516755476382 0.07992008569338822 0.9967982790558114 -0.002443516755476382 0.07992008569338822 0.9967982790558114 -0.002443516755476382 0.07992008569338822 0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.9504660443541458 -0.30389861198688 0.06526815580534208 -0.9504660443541458 0.30389861198688 -0.06526815580534208 -0.002398955504286184 0.07991844676457421 0.9967985186983508 -0.002398955504286184 0.07991844676457421 0.9967985186983508 -0.002398955504286184 0.07991844676457421 0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 -0.968220462326018 -0.2223397110796081 0.1145172004994391 0.968220462326018 0.2223397110796081 -0.1145172004994391 -0.002443761099980847 0.07992071991256082 0.9967982276069437 -0.002443761099980847 0.07992071991256082 0.9967982276069437 -0.002443761099980847 0.07992071991256082 0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.9833765888465397 -0.08333360548540723 0.1613257409880592 -0.9833765888465397 0.08333360548540723 -0.1613257409880592 -0.003795766429472628 0.08361081189266659 0.996491256505476 -0.003795766429472628 0.08361081189266659 0.996491256505476 -0.003795766429472628 0.08361081189266659 0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 -0.9784827002644059 -0.0745133946312441 0.1924041561500301 0.9784827002644059 0.0745133946312441 -0.1924041561500301 -0.002444991716577943 0.07991751699015108 0.9967984813860998 -0.002445551076435985 0.07990965451043451 0.9967991103507042 -0.002443767676182471 0.07991733785490238 0.9967984987497376 0.002443767676182471 -0.07991733785490238 -0.9967984987497376 0.002445551076435985 -0.07990965451043451 -0.9967991103507042 0.002444991716577943 -0.07991751699015108 -0.9967984813860998 0.9693050042447923 0.08319554462812245 0.2313575373745867 -0.9693050042447923 -0.08319554462812245 -0.2313575373745867 -0.003456718727903946 0.07669146954277205 0.9970488802435948 -0.003213004740076926 0.08123887225724388 0.9966894813505917 -0.00380606245701583 0.07821620482660538 0.9969291545496579 0.00380606245701583 -0.07821620482660538 -0.9969291545496579 0.003213004740076926 -0.08123887225724388 -0.9966894813505917 0.003456718727903946 -0.07669146954277205 -0.9970488802435948 -0.9739892050184895 -0.0922701735317274 0.2069571056617187 0.9739892050184895 0.0922701735317274 -0.2069571056617187 -0.002809236550367398 0.07987191534697595 0.9968011764282834 0.002809236550367398 -0.07987191534697595 -0.9968011764282834 -0.002446251211139701 0.07991196601776093 0.996798923325155 0.002446251211139701 -0.07991196601776093 -0.996798923325155 0.9685060428241819 0.1121048662211712 0.2223253111604196 -0.9685060428241819 -0.1121048662211712 -0.2223253111604196 -0.9609854155315478 0.1850092940482606 0.2056175874078444 0.9609854155315478 -0.1850092940482606 -0.2056175874078444 -0.002730819450908612 0.0795900882636436 0.996823936548131 0.002730819450908612 -0.0795900882636436 -0.996823936548131 -0.002446316978625154 0.07991709286511523 0.9967985121383503 0.002446316978625154 -0.07991709286511523 -0.9967985121383503 0.9665484020399958 0.2298013491319769 0.1139101683391513 -0.9665484020399958 -0.2298013491319769 -0.1139101683391513 -0.8667040419528477 0.4987022577925894 -0.01096183083112856 0.8667040419528477 -0.4987022577925894 0.01096183083112856 -0.002935468462640064 0.07965440775023729 0.9968182173048723 0.002935468462640064 -0.07965440775023729 -0.9968182173048723 0.9995874389300169 0.005994783610162951 0.02808940196580926 -0.9995874389300169 -0.005994783610162951 -0.02808940196580926 -0.002445480732065667 0.07991923298229058 0.9967983426067238 -0.002446450689720361 0.07991678813471327 0.9967985362415288 0.002446450689720361 -0.07991678813471327 -0.9967985362415288 0.002445480732065667 -0.07991923298229058 -0.9967983426067238 -0.9996776451341545 0.001994494988195014 0.02531062640026721 -0.9995283515176999 -0.004230687603517372 0.03041670256143396 -0.9996516075833083 6.011857201776541e-005 0.02639431457463623 0.9996516075833083 -6.011857201776541e-005 -0.02639431457463623 0.9995283515176999 0.004230687603517372 -0.03041670256143396 0.9996776451341545 -0.001994494988195014 -0.02531062640026721 -0.5499063532088864 -0.8312969104678514 -0.08092248974857767 -0.5053849952022258 -0.8592625535158552 0.07908141848663544 -0.5211302495544821 -0.8530062356488047 0.02834827937528588 0.5211302495544821 0.8530062356488047 -0.02834827937528588 0.5053849952022258 0.8592625535158552 -0.07908141848663544 0.5499063532088864 0.8312969104678514 0.08092248974857767 -0.003264430936771524 0.07768920491457423 0.996972281926835 0.003264430936771524 -0.07768920491457423 -0.996972281926835 0.9600985396372078 -0.2755269031283226 0.04791367069028046 -0.9600985396372078 0.2755269031283226 -0.04791367069028046 -0.002445359849831862 0.07991908453884576 0.9967983548048611 -0.0024464506121011 0.07991642136050764 0.9967985656472086 0.0024464506121011 -0.07991642136050764 -0.9967985656472086 0.002445359849831862 -0.07991908453884576 -0.9967983548048611 -0.9724788741558994 -0.1821300782318736 0.1453047622197095 0.9724788741558994 0.1821300782318736 -0.1453047622197095 -0.002295832167474499 0.08251084577785184 0.9965875222396087 0.002295832167474499 -0.08251084577785184 -0.9965875222396087 -0.5630349425936618 -0.8140319658878363 -0.142631034250392 0.5630349425936618 0.8140319658878363 0.142631034250392 0.9856814792948521 -0.08674609407977396 0.14459300307074 -0.9856814792948521 0.08674609407977396 -0.14459300307074 -0.002444373616892614 0.0799221279444856 0.9967981132117207 0.002444373616892614 -0.0799221279444856 -0.9967981132117207 -0.9728132926628291 -0.180687705249497 0.1448663204135999 0.9728132926628291 0.180687705249497 -0.1448663204135999 -0.003308252190807438 0.07460958167797054 0.9972073334012742 0.003308252190807438 -0.07460958167797054 -0.9972073334012742 0.9409405930065078 0.02131297530999618 0.3379002182834409 0.9174339737188549 -0.365243963553171 0.1578345683125247 -0.9174339737188549 0.365243963553171 -0.1578345683125247 -0.9409405930065078 -0.02131297530999618 -0.3379002182834409 -0.002444379353908034 0.07992126607955948 0.9967981823006173 -0.002444379353908034 0.07992126607955948 0.9967981823006173 0.002444379353908034 -0.07992126607955948 -0.9967981823006173 0.002444379353908034 -0.07992126607955948 -0.9967981823006173 -0.8017203786756358 -0.4891027836453612 0.3435446134733509 0.8017203786756358 0.4891027836453612 -0.3435446134733509 -0.0002595716808050765 0.08733536323079442 0.9961789332001998 0.0002595716808050765 -0.08733536323079442 -0.9961789332001998 -0.002445010281564422 0.07991906958635045 0.9967983568611936 -0.002444552802717854 0.0799211787639864 0.9967981888760481 -0.002444462435903807 0.07992097684034019 0.996798205287452 0.002444462435903807 -0.07992097684034019 -0.996798205287452 0.002444552802717854 -0.0799211787639864 -0.9967981888760481 0.002445010281564422 -0.07991906958635045 -0.9967983568611936</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"322\" source=\"#ID1328\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1326\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1324\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1325\"/>\r\n                </vertices>\r\n                <triangles count=\"204\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1326\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 18 19 20 21 22 23 24 25 12 17 26 27 14 13 28 29 16 15 12 25 13 16 26 17 30 31 32 33 34 35 36 37 38 39 40 41 24 42 25 26 43 27 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 30 32 33 35 63 64 30 62 63 35 65 66 36 38 39 41 67 68 69 70 71 72 73 74 42 24 27 43 75 76 77 78 79 80 81 82 83 84 85 86 87 88 64 62 63 65 89 90 64 88 89 65 91 92 66 38 39 67 93 68 94 95 96 97 73 98 68 99 100 73 101 74 102 42 43 103 75 94 104 105 106 107 97 90 88 108 109 89 91 66 92 110 111 93 67 112 113 98 101 114 115 116 102 74 75 103 117 118 90 108 109 91 119 120 66 110 111 67 121 122 118 108 109 119 123 124 112 98 101 115 125 116 126 102 103 127 117 128 120 110 111 121 129 130 118 122 123 119 131 132 112 124 125 115 133 134 126 116 117 127 135 136 120 128 129 121 137 138 130 122 123 131 139 140 141 142 143 144 145 140 141 142 143 144 145 134 146 126 127 147 135 148 149 150 151 152 153 148 149 150 151 152 153 154 130 138 139 131 155 156 154 138 139 155 157 158 159 160 161 162 163 164 165 166 167 168 169 170 146 134 135 147 171 172 173 174 175 176 177 178 179 180 181 182 183 184 154 156 157 155 185 186 187 188 189 190 191 192 193 194 195 196 197 170 198 146 147 199 171 200 201 202 203 204 205 200 201 202 203 204 205 206 184 156 157 185 207 208 209 210 211 212 213 214 215 216 217 218 219 220 198 170 171 199 221 222 223 224 225 226 227 222 223 224 225 226 227 228 184 206 207 185 229 230 231 232 233 234 235 220 236 198 199 237 221 238 239 240 241 242 243 244 228 206 207 229 245 246 239 238 243 242 247 248 231 230 235 234 249 250 236 220 221 237 251 252 228 244 245 229 253 246 238 254 255 243 247 248 230 256 257 235 249 250 258 236 237 259 251 260 252 244 245 253 261 262 246 254 255 247 263 264 258 250 251 259 265 266 248 267 268 249 269 270 271 272 273 274 275 276 277 278 279 280 281 282 262 254 255 263 283 264 284 258 259 285 265 286 266 287 288 269 289 290 270 272 273 275 291 292 262 282 283 263 293 276 278 294 295 279 281 296 284 264 265 285 297 298 266 286 289 269 299 300 270 290 291 275 301 302 292 282 283 293 303 304 305 296 297 306 307 296 305 284 285 306 297 308 309 286 289 310 311 312 300 290 291 301 313 314 292 302 303 293 315 316 317 318 319 320 321</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1329\">\r\n            <mesh>\r\n                <source id=\"ID1330\">\r\n                    <float_array count=\"192\" id=\"ID1333\">0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.062657833099365 0.1071692258119583</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"64\" source=\"#ID1333\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1331\">\r\n                    <float_array count=\"192\" id=\"ID1334\">0 -0.07991391507360633 -0.9968017687472311 0 -0.07991391507360633 -0.9968017687472311 0 -0.07991391507360633 -0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 1 0 0 -1 -0 -0 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 1.147561669525629e-017 0.07991600494652802 0.996801601199249 1.147561669525629e-017 0.07991600494652802 0.996801601199249 1.147561669525629e-017 0.07991600494652802 0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1 0 0 1 -0 -0 5.737808347628146e-018 0.07991600494652806 0.996801601199249 5.737808347628146e-018 0.07991600494652806 0.996801601199249 5.737808347628146e-018 0.07991600494652806 0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"64\" source=\"#ID1334\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1332\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1330\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1331\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1332\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 38 40 41 43 57 58 59 60 61 62 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1335\">\r\n            <mesh>\r\n                <source id=\"ID1336\">\r\n                    <float_array count=\"282\" id=\"ID1339\">0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.0440603718161583 1.045381546020508 0.2065596729516983 0.0440603718161583 1.045381546020508 0.2065596729516983 0.07561483234167099 1.003175139427185 0.2072263807058334 0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.06279636174440384 1.001669645309448 0.1831667721271515 0.002107266336679459 0.9911500215530396 0.2126912921667099 0.002107266336679459 0.9911500215530396 0.2126912921667099 0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.03254434466362 1.04327380657196 0.1803381443023682 0.03254434466362 1.04327380657196 0.1803381443023682 0.03597279638051987 1.047588586807251 0.2340257316827774 0.03597279638051987 1.047588586807251 0.2340257316827774 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03010775707662106 1.00167453289032 0.1743656992912293 0.0719255730509758 1.00575578212738 0.235799714922905 0.0719255730509758 1.00575578212738 0.235799714922905 0.04405999183654785 1.087227463722229 0.2031978219747543 0.04405999183654785 1.087227463722229 0.2031978219747543 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03597242385149002 1.089434146881104 0.2306637018918991 0.03597242385149002 1.089434146881104 0.2306637018918991 0.0719255730509758 1.00575578212738 0.235799714922905 0.0719255730509758 1.00575578212738 0.235799714922905 -0.02109381183981895 1.000947713851929 0.1777425706386566 -0.02109381183981895 1.000947713851929 0.1777425706386566 0.04016397893428803 1.007267832756043 0.2528495788574219 0.04016397893428803 1.007267832756043 0.2528495788574219 0.03254392743110657 1.085119843482971 0.1769760102033615 0.03254392743110657 1.085119843482971 0.1769760102033615 0.006812980398535729 1.042252779006958 0.1676288843154907 0.006812980398535729 1.042252779006958 0.1676288843154907 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206574775278568 1.048860192298889 0.2498844712972641 0.01206574775278568 1.048860192298889 0.2498844712972641 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.02109381183981895 1.000947713851929 0.1777425706386566 -0.02109381183981895 1.000947713851929 0.1777425706386566 0.04016397893428803 1.007267832756043 0.2528495788574219 0.04016397893428803 1.007267832756043 0.2528495788574219 -0.0164741575717926 1.006759405136108 0.2500763237476349 -0.0164741575717926 1.006759405136108 0.2500763237476349 0.03254392743110657 1.085119843482971 0.1769760102033615 0.04405999183654785 1.087227463722229 0.2031978219747543 0.002163510769605637 1.087440609931946 0.2058562785387039 0.002163510769605637 1.087440609931946 0.2058562785387039 0.04405999183654785 1.087227463722229 0.2031978219747543 0.03254392743110657 1.085119843482971 0.1769760102033615 0.03597242385149002 1.089434146881104 0.2306637018918991 0.03597242385149002 1.089434146881104 0.2306637018918991 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206542737782002 1.090707302093506 0.2465221434831619 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.02109413221478462 1.042794585227966 0.1743806302547455 -0.02109413221478462 1.042794585227966 0.1743806302547455 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.0164746418595314 1.048605918884277 0.2467141896486282 -0.0164746418595314 1.048605918884277 0.2467141896486282 -0.0164741575717926 1.006759405136108 0.2500763237476349 -0.0164741575717926 1.006759405136108 0.2500763237476349 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03811760619282723 1.044645190238953 0.1974330991506577 -0.03811760619282723 1.044645190238953 0.1974330991506577 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03629376366734505 1.046942353248596 0.2259997576475143 -0.03629376366734505 1.046942353248596 0.2259997576475143 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"94\" source=\"#ID1339\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1337\">\r\n                    <float_array count=\"282\" id=\"ID1340\">0.6276871539837947 0.4309998440177499 -0.6482653555299707 0.7756951975660233 0.6093867961617383 -0.1641483875544934 0.9404190385916551 0.327759812088853 -0.09047395997648566 -0.9404190385916551 -0.327759812088853 0.09047395997648566 -0.7756951975660233 -0.6093867961617383 0.1641483875544934 -0.6276871539837947 -0.4309998440177499 0.6482653555299707 0.1648427918008577 -0.9850664580310059 0.04970842236027692 0.129387054397268 -0.9878566338463108 -0.08601314504326615 -0.05568244469267168 -0.9964744984836782 0.06275379848861432 0.05568244469267168 0.9964744984836782 -0.06275379848861432 -0.129387054397268 0.9878566338463108 0.08601314504326615 -0.1648427918008577 0.9850664580310059 -0.04970842236027692 0.6563058127916149 0.128948669986271 -0.7433941892459947 -0.6563058127916149 -0.128948669986271 0.7433941892459947 0.7479255132941836 0.3269821441431697 0.5776591589987712 -0.7479255132941836 -0.3269821441431697 -0.5776591589987712 0.03982993058637029 -0.9705873949438616 -0.2374314330613652 -0.03982993058637029 0.9705873949438616 0.2374314330613652 0.1452430843573787 -0.9735269213220822 0.1764930024321196 -0.1452430843573787 0.9735269213220822 -0.1764930024321196 0.997980356608158 -0.00507857796887716 -0.06331994843702948 -0.997980356608158 0.00507857796887716 0.06331994843702948 0.1918851097947965 0.01069227642552562 -0.9813591492740459 -0.1918851097947965 -0.01069227642552562 0.9813591492740459 0.8053359431313069 0.04748302428073999 0.5909140217544032 -0.8053359431313069 -0.04748302428073999 -0.5909140217544032 0.715602061077506 0.6137473135264319 0.3335085086181657 -0.715602061077506 -0.6137473135264319 -0.3335085086181657 -0.1366997851774793 -0.9737080860083718 -0.1822244000520906 0.1366997851774793 0.9737080860083718 0.1822244000520906 0.07059561893914663 -0.9470573698230294 0.3132069553034937 -0.07059561893914663 0.9470573698230294 -0.3132069553034937 0.7236637528950451 -0.05526205440008075 -0.687936681744288 -0.7236637528950451 0.05526205440008075 0.687936681744288 0.08437475756259349 -0.0702733835124722 -0.9939529927798209 -0.08437475756259349 0.0702733835124722 0.9939529927798209 0.2358549030278205 0.07783122909426544 0.968666487752835 -0.2358549030278205 -0.07783122909426544 -0.968666487752835 0.1654666873681945 0.1148860508075438 0.9795008783565447 -0.1654666873681945 -0.1148860508075438 -0.9795008783565447 -0.2772541405953719 -0.9607904196022034 -0.003451249533688699 0.2772541405953719 0.9607904196022034 0.003451249533688699 -0.5103626176939258 -0.1084744471579512 -0.8530904364569917 0.5103626176939258 0.1084744471579512 0.8530904364569917 0.2995652230669426 0.2766979128121305 0.913071159425301 -0.2995652230669426 -0.2766979128121305 -0.913071159425301 -0.1158973363211239 -0.9357427097883285 0.333096665416609 0.1158973363211239 0.9357427097883285 -0.333096665416609 1.970778470046658e-005 0.9967884877806362 -0.08007939959562506 -1.150195081025581e-005 0.9967868070093873 -0.08010031984790116 -7.282118987466312e-007 0.9967885040606478 -0.08007919937165804 7.282118987466312e-007 -0.9967885040606478 0.08007919937165804 1.150195081025581e-005 -0.9967868070093873 0.08010031984790116 -1.970778470046658e-005 -0.9967884877806362 0.08007939959562506 -1.889549755688283e-005 0.9967887057027286 -0.08007668715949433 1.889549755688283e-005 -0.9967887057027286 0.08007668715949433 2.329386935487206e-005 0.9967886177533125 -0.08007778078116733 -2.329386935487206e-005 -0.9967886177533125 0.08007778078116733 -0.2605487185606611 -0.9462888235931847 0.1914466703785265 0.2605487185606611 0.9462888235931847 -0.1914466703785265 -0.9595220654229494 -0.02256570486844812 -0.2807279731880444 -0.5540160790910454 -0.06667433737339892 -0.8298317400801218 0.5540160790910454 0.06667433737339892 0.8298317400801218 0.9595220654229494 0.02256570486844812 0.2807279731880444 -0.4357782588810896 0.063090866032614 0.8978401036430822 0.4357782588810896 -0.063090866032614 -0.8978401036430822 -0.4168015697498971 0.07279112339523536 0.9060783099759541 0.4168015697498971 -0.07279112339523536 -0.9060783099759541 1.845361895121706e-005 0.9967908784027425 -0.08004963705447339 -1.845361895121706e-005 -0.9967908784027425 0.08004963705447339 0.1107318538263125 -0.07958489032305821 -0.9906587211449031 -0.1107318538263125 0.07958489032305821 0.9906587211449031 7.579804948945358e-006 0.9967850151258243 -0.08012261580325931 -7.579804948945358e-006 -0.9967850151258243 0.08012261580325931 -0.4439788070510328 0.07175525117515293 0.8931595617907993 0.4439788070510328 -0.07175525117515293 -0.8931595617907993 -0.9160709345376484 0.03210037665102224 0.3997294193753845 -0.9595223797540715 -0.02256522993427959 -0.2807269369852064 0.9595223797540715 0.02256522993427959 0.2807269369852064 0.9160709345376484 -0.03210037665102224 -0.3997294193753845 -0.9160688904640111 0.03210634924118765 0.3997336241329201 0.9160688904640111 -0.03210634924118765 -0.3997336241329201 -7.835666853594533e-006 0.9967902102202908 -0.08005795867739281 7.835666853594533e-006 -0.9967902102202908 0.08005795867739281 -3.309266463157973e-005 0.9967870438756097 -0.08009736616518035 3.309266463157973e-005 -0.9967870438756097 0.08009736616518035 -0.5540120246036621 -0.06667498928042141 -0.8298343945625578 0.5540120246036621 0.06667498928042141 0.8298343945625578 -0.9160696316409548 0.03210638439341102 0.3997319227512211 0.9160696316409548 -0.03210638439341102 -0.3997319227512211 -4.263568844941531e-006 0.9967907668418901 -0.08005102822936799 4.263568844941531e-006 -0.9967907668418901 0.08005102822936799 -0.9595207149823204 -0.02256288350226006 -0.2807328156947099 0.9595207149823204 0.02256288350226006 0.2807328156947099</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"94\" source=\"#ID1340\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1338\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1336\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1337\"/>\r\n                </vertices>\r\n                <triangles count=\"108\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1338\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 7 16 8 9 17 10 6 8 18 19 9 11 12 2 20 21 3 13 12 22 0 5 23 13 2 14 24 25 15 3 1 26 14 15 27 4 16 28 8 9 29 17 18 8 30 31 9 19 32 12 20 21 13 33 20 2 24 25 3 21 34 22 12 13 23 35 36 24 14 15 25 37 38 14 26 27 15 39 28 40 8 9 41 29 34 42 22 23 43 35 44 38 26 27 39 45 8 46 30 31 47 9 48 49 50 51 52 53 32 34 12 13 35 33 50 49 54 55 52 51 50 54 56 57 55 51 38 36 14 15 37 39 8 40 58 59 41 9 60 42 61 62 43 63 61 42 34 35 43 62 64 38 44 45 39 65 66 64 44 45 65 67 8 58 46 47 59 9 68 48 50 51 53 69 70 34 32 33 35 71 72 50 56 57 51 73 74 36 38 39 37 75 76 60 77 78 63 79 60 61 77 78 62 63 70 61 34 35 62 71 64 74 38 39 75 65 66 80 64 65 81 67 66 76 80 81 79 67 82 68 50 51 69 83 84 50 72 73 51 85 76 77 80 81 78 79 77 61 86 87 62 78 86 61 70 71 62 87 64 88 74 75 89 65 64 80 88 89 81 65 90 82 50 51 83 91 90 50 84 85 51 91 80 77 92 93 78 81 77 86 92 93 87 78 80 92 88 89 93 81</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1341\">\r\n            <mesh>\r\n                <source id=\"ID1342\">\r\n                    <float_array count=\"438\" id=\"ID1345\">-0.2801137268543243 1.370505452156067 0.08972623944282532 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2717342674732208 1.375396370887756 0.1507259011268616 -0.2717342674732208 1.375396370887756 0.1507259011268616 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"146\" source=\"#ID1345\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1343\">\r\n                    <float_array count=\"438\" id=\"ID1346\">-0.1356700480673765 -0.07917526411310574 -0.987585396616422 -0.1356717587444433 -0.07918105062319039 -0.9875846976849111 -0.131471833847658 -0.3228375455041391 -0.9372785477741379 0.131471833847658 0.3228375455041391 0.9372785477741379 0.1356717587444433 0.07918105062319039 0.9875846976849111 0.1356700480673765 0.07917526411310574 0.987585396616422 0.9907549594614613 -0.01084161144827005 -0.1352296926112117 0.9907553066324637 -0.01084267929951237 -0.1352270634348798 0.9907545025340931 -0.01084171762083586 -0.1352330317172986 -0.9907545025340931 0.01084171762083586 0.1352330317172986 -0.9907553066324637 0.01084267929951237 0.1352270634348798 -0.9907549594614613 0.01084161144827005 0.1352296926112117 -0.1314728281855081 -0.3228414075762337 -0.9372770780314113 0.1314728281855081 0.3228414075762337 0.9372770780314113 -0.1314692192096207 0.1693882077956309 -0.9767412551234831 0.1314692192096207 -0.1693882077956309 0.9767412551234831 0.9907553387548729 -0.01084410526579882 -0.1352267137428888 -0.9907553387548729 0.01084410526579882 0.1352267137428888 0.9907553433962273 -0.0108397264534755 -0.1352270308120293 -0.9907553433962273 0.0108397264534755 0.1352270308120293 -0.9907545485809562 0.01084668739650943 0.135232295841888 -0.9907535624333586 0.01084306642662415 0.1352398108401405 -0.9907537588504309 0.01084231220904852 0.1352384323692929 0.9907537588504309 -0.01084231220904852 -0.1352384323692929 0.9907535624333586 -0.01084306642662415 -0.1352398108401405 0.9907545485809562 -0.01084668739650943 -0.135232295841888 -0.1152753808899663 -0.5929332692716832 -0.7969577935822366 0.1152753808899663 0.5929332692716832 0.7969577935822366 -0.9907546911898524 0.01083669708757584 0.1352320519756046 0.9907546911898524 -0.01083669708757584 -0.1352320519756046 -0.1314704096508954 0.1693831609902619 -0.9767419701022235 0.1314704096508954 -0.1693831609902619 0.9767419701022235 0.9907552515571781 -0.01084377265302208 -0.1352273792784672 0.9907545280392873 -0.01084287687524467 -0.1352327519157898 -0.9907545280392873 0.01084287687524467 0.1352327519157898 -0.9907552515571781 0.01084377265302208 0.1352273792784672 0.9907553910903142 -0.01083804725477862 -0.1352268159692522 -0.9907553910903142 0.01083804725477862 0.1352268159692522 -0.990752856690359 0.0108439365066572 0.1352449111831305 0.990752856690359 -0.0108439365066572 -0.1352449111831305 -0.1152730989501126 -0.5929230807293835 -0.7969657037770286 0.1152730989501126 0.5929230807293835 0.7969657037770286 -0.9907528892232725 0.01084143558253761 0.1352448733603154 0.9907528892232725 -0.01084143558253761 -0.1352448733603154 -0.11527371476005 0.4583767681188761 -0.8812506505724197 0.11527371476005 -0.4583767681188761 0.8812506505724197 0.990754380856577 -0.01084218444689922 -0.1352338857310568 -0.990754380856577 0.01084218444689922 0.1352338857310568 -0.07441361952230829 -0.8769020836287289 -0.4748740348315358 0.07441361952230829 0.8769020836287289 0.4748740348315358 -0.1152751037892964 0.4583732049641491 -0.8812523222194998 0.1152751037892964 -0.4583732049641491 0.8812523222194998 0.9907553006407596 -0.01083849785456402 -0.1352274425421666 0.9907544045609922 -0.0108406531823145 -0.1352338348253676 -0.9907544045609922 0.0108406531823145 0.1352338348253676 -0.9907553006407596 0.01083849785456402 0.1352274425421666 -0.9907530489548243 0.01084127892656997 0.1352437157799057 0.9907530489548243 -0.01084127892656997 -0.1352437157799057 -0.9907530808765145 0.01084411850094725 0.1352432542777355 0.9907530808765145 -0.01084411850094725 -0.1352432542777355 0.9907542375847659 -0.01084303923369326 -0.1352348668354655 -0.9907542375847659 0.01084303923369326 0.1352348668354655 -0.07441248060794727 -0.8769001220509307 -0.4748778355291333 3.192874926016029e-006 -0.9968024692705665 0.07990517659017407 -3.192874926016029e-006 0.9968024692705665 -0.07990517659017407 0.07441248060794727 0.8769001220509307 0.4748778355291333 -0.0744176951841353 0.7900494079782563 -0.6085096051803028 0.0744176951841353 -0.7900494079782563 0.6085096051803028 -0.07441523278592301 0.7900546838570458 -0.608503056397386 0.07441523278592301 -0.7900546838570458 0.608503056397386 0.9907543028327227 -0.01084167648458662 -0.1352344980744529 -0.9907543028327227 0.01084167648458662 0.1352344980744529 -0.9907538262053057 0.0108422411242947 0.1352379446270524 -0.9907538262053057 0.0108422411242947 0.1352379446270524 0.9907538262053057 -0.0108422411242947 -0.1352379446270524 0.9907538262053057 -0.0108422411242947 -0.1352379446270524 -0.9907539146927812 0.01084211309693643 0.1352373066299488 0.9907539146927812 -0.01084211309693643 -0.1352373066299488 0.9907538401461802 -0.0108431721144034 -0.1352377678538621 -0.9907538401461802 0.0108431721144034 0.1352377678538621 2.928640909464708e-006 -0.9968023333952469 0.07990687160197312 0.07441770000105559 -0.7900488052496225 0.6085103871341859 -0.07441770000105559 0.7900488052496225 -0.6085103871341859 -2.928640909464708e-006 0.9968023333952469 -0.07990687160197312 -1.162098143399065e-006 0.9968021881199078 -0.07990868387111294 1.162098143399065e-006 -0.9968021881199078 0.07990868387111294 5.807865462094241e-006 0.9968037713732912 -0.07988893128745632 -5.807865462094241e-006 -0.9968037713732912 0.07988893128745632 0.9907543186649002 -0.01084091741884598 -0.1352344429365815 -0.9907543186649002 0.01084091741884598 0.1352344429365815 -0.9907542998263837 0.01084096646404351 0.1352345770195546 -0.9907537518170448 0.01084228453618815 0.1352384861142942 -0.9907537518170448 0.01084228453618815 0.1352384861142942 0.9907537518170448 -0.01084228453618815 -0.1352384861142942 0.9907537518170448 -0.01084228453618815 -0.1352384861142942 0.9907542998263837 -0.01084096646404351 -0.1352345770195546 -0.9907543337021733 0.01084276611543772 0.1352341845589668 -0.9907538409807305 0.01084215611410985 0.1352378431975552 -0.9907538409807305 0.01084215611410985 0.1352378431975552 0.9907538409807305 -0.01084215611410985 -0.1352378431975552 0.9907538409807305 -0.01084215611410985 -0.1352378431975552 0.9907543337021733 -0.01084276611543772 -0.1352341845589668 0.9907541247954318 -0.0108440271202516 -0.1352356139360237 -0.9907541247954318 0.0108440271202516 0.1352356139360237 0.07441831678586862 -0.7900528107385049 0.6085051112118504 0.11527576302403 -0.4583805966872975 0.881248391226801 -0.11527576302403 0.4583805966872975 -0.881248391226801 -0.07441831678586862 0.7900528107385049 -0.6085051112118504 0.07441513256072134 0.8769111714498417 0.474857015776788 -0.07441513256072134 -0.8769111714498417 -0.474857015776788 0.07442050729758486 0.876903121439521 0.4748710390234334 -0.07442050729758486 -0.876903121439521 -0.4748710390234334 0.9907539142897456 -0.0108411707924452 -0.1352373851248114 -0.9907539142897456 0.0108411707924452 0.1352373851248114 -0.9907541204724976 0.01084425063052422 0.1352356276837962 0.9907541204724976 -0.01084425063052422 -0.1352356276837962 -0.9907540773735396 0.01083963900090975 0.1352363131486376 0.9907540773735396 -0.01083963900090975 -0.1352363131486376 0.9907535193266759 -0.01084215616411869 -0.1352401996135736 -0.9907535193266759 0.01084215616411869 0.1352401996135736 0.1152759311751334 -0.4583833867458709 0.8812469179787758 0.1314739000021054 -0.1693891771649449 0.9767404569677756 -0.1314739000021054 0.1693891771649449 -0.9767404569677756 -0.1152759311751334 0.4583833867458709 -0.8812469179787758 0.1152753987928035 0.5929345763565147 0.7969568185253705 -0.1152753987928035 -0.5929345763565147 -0.7969568185253705 0.1152756976317288 0.5929321630903564 0.7969585707604311 -0.1152756976317288 -0.5929321630903564 -0.7969585707604311 0.9907541370054225 -0.0108397014107838 -0.1352358712766903 -0.9907541370054225 0.0108397014107838 0.1352358712766903 -0.9907528498073734 0.01084446748582026 0.1352449190303184 0.9907528498073734 -0.01084446748582026 -0.1352449190303184 -0.9907528440645809 0.01084106895587919 0.135245233564213 0.9907528440645809 -0.01084106895587919 -0.135245233564213 0.1314730277390396 -0.1693844129615158 0.9767414005881046 0.1356732411329711 0.07917733423144563 0.987584791997364 -0.1356732411329711 -0.07917733423144563 -0.987584791997364 -0.1314730277390396 0.1693844129615158 -0.9767414005881046 0.131473404914537 0.3228332179285216 0.937279817985053 -0.131473404914537 -0.3228332179285216 -0.937279817985053 0.1314713272349154 0.322840250832319 0.9372776870050918 -0.1314713272349154 -0.322840250832319 -0.9372776870050918 -0.9907544778676863 0.01084184676513502 0.1352332020764488 0.9907544778676863 -0.01084184676513502 -0.1352332020764488 0.1356735801070929 0.07917500836808616 0.987584931897423 -0.1356735801070929 -0.07917500836808616 -0.987584931897423</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"146\" source=\"#ID1346\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1344\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1342\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1343\"/>\r\n                </vertices>\r\n                <triangles count=\"128\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1344\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 14 0 30 31 5 15 32 33 8 9 34 35 18 8 36 37 9 19 38 20 22 23 25 39 12 40 26 27 41 13 22 28 42 43 29 23 44 14 30 31 15 45 33 46 8 9 47 34 26 40 48 49 41 27 44 30 50 51 31 45 52 8 53 54 9 55 56 38 22 23 39 57 22 42 58 59 43 23 46 60 8 9 61 47 48 62 63 64 65 49 48 40 62 65 41 49 66 44 50 51 45 67 66 50 68 69 51 67 53 8 70 71 9 54 72 56 73 74 57 75 22 58 76 77 59 23 60 78 8 9 79 61 63 80 81 82 83 64 63 62 80 83 65 64 66 68 84 85 69 67 68 86 84 85 87 69 8 88 70 71 89 9 90 91 92 93 94 95 96 97 98 99 100 101 78 102 8 9 103 79 81 104 105 106 107 82 81 80 104 107 83 82 84 86 108 109 87 85 86 110 108 109 111 87 8 112 88 89 113 9 114 90 22 23 95 115 116 22 96 101 23 117 8 102 118 119 103 9 105 120 121 122 123 106 104 120 105 106 123 107 108 110 124 125 111 109 110 126 124 125 127 111 8 128 112 113 129 9 130 114 22 23 115 131 132 22 116 117 23 133 8 118 128 129 119 9 121 134 135 136 137 122 120 134 121 122 137 123 138 124 126 127 125 139 138 126 140 141 127 139 130 22 142 143 23 131 142 22 132 133 23 143 144 140 135 136 141 145 134 144 135 136 145 137 144 138 140 141 139 145</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1347\">\r\n            <mesh>\r\n                <source id=\"ID1348\">\r\n                    <float_array count=\"204\" id=\"ID1351\">-0.211421862244606 1.405271649360657 0.100438803434372 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.405271649360657 0.100438803434372 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.405271649360657 0.100438803434372 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.211421862244606 1.405271649360657 0.100438803434372 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.341523766517639 0.187200739979744</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"68\" source=\"#ID1351\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1349\">\r\n                    <float_array count=\"204\" id=\"ID1352\">-0.1692952967771664 -0.07876468768567274 -0.9824129612657346 -0.1692952967771664 -0.07876468768567274 -0.9824129612657346 -0.1692952967771664 -0.07876468768567274 -0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 -3.607747919905091e-006 0.9968011265815032 -0.07992192460664423 2.292340680649794e-006 0.9968014598728446 -0.07991776767472422 2.292364934457254e-006 0.9968014598742147 -0.07991776765763606 -2.292364934457254e-006 -0.9968014598742147 0.07991776765763606 -2.292340680649794e-006 -0.9968014598728446 0.07991776767472422 3.607747919905091e-006 -0.9968011265815032 0.07992192460664423 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -0.985566788375241 0.01352899279242671 0.1687455836629085 -0.985566788375241 0.01352899279242671 0.1687455836629085 -0.985566788375241 0.01352899279242671 0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 8.192430132416068e-006 0.9968017931121987 -0.07991361073803248 -8.192430132416068e-006 -0.9968017931121987 0.07991361073803248 0.169292302696274 0.07876082619117925 0.9824137868054765 0.169292302696274 0.07876082619117925 0.9824137868054765 0.169292302696274 0.07876082619117925 0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.9855666474151553 0.01352822838162632 0.1687464682288358 -0.9855666474151553 0.01352822838162632 0.1687464682288358 -0.9855666474151553 0.01352822838162632 0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.1692940095783117 0.07875907644888579 0.9824136329458265 0.1692940095783117 0.07875907644888579 0.9824136329458265 0.1692940095783117 0.07875907644888579 0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"68\" source=\"#ID1352\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1350\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1348\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1349\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1350\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 19 48 20 21 49 22 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1353\">\r\n            <mesh>\r\n                <source id=\"ID1354\">\r\n                    <float_array count=\"450\" id=\"ID1357\">-0.2801137268543243 1.601384282112122 0.07121631503105164 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"150\" source=\"#ID1357\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1355\">\r\n                    <float_array count=\"450\" id=\"ID1358\">-0.1356692217318193 -0.0791759307796135 -0.9875854566870982 -0.1356698493860474 -0.07917859868270143 -0.9875851565704148 -0.1314681476065477 -0.3228358283250789 -0.9372796563003826 0.1314681476065477 0.3228358283250789 0.9372796563003826 0.1356698493860474 0.07917859868270143 0.9875851565704148 0.1356692217318193 0.0791759307796135 0.9875854566870982 0.990755038883388 -0.01084157807576591 -0.1352291134038946 0.9907553094818479 -0.01084286333397569 -0.1352270278023179 0.9907545150269511 -0.01084163096386696 -0.1352329471384623 -0.9907545150269511 0.01084163096386696 0.1352329471384623 -0.9907553094818479 0.01084286333397569 0.1352270278023179 -0.990755038883388 0.01084157807576591 0.1352291134038946 -0.1314688471447525 -0.3228407589476306 -0.9372778598646976 0.1314688471447525 0.3228407589476306 0.9372778598646976 -0.1314702534478887 0.1693883395937448 -0.9767410930579414 0.1314702534478887 -0.1693883395937448 0.9767410930579414 0.9907553225442187 -0.01084392916864213 -0.135226846633672 -0.9907553225442187 0.01084392916864213 0.135226846633672 0.9907553502238049 -0.01083952063097537 -0.135226997287511 -0.9907553502238049 0.01083952063097537 0.135226997287511 -0.990754664616892 0.01084708955208488 0.1352314134663949 -0.9907537198654387 0.01084286954524533 0.1352386732884534 -0.9907537742528971 0.01084220172669491 0.1352383283886532 0.9907537742528971 -0.01084220172669491 -0.1352383283886532 0.9907537198654387 -0.01084286954524533 -0.1352386732884534 0.990754664616892 -0.01084708955208488 -0.1352314134663949 -0.115269717371056 -0.5929125925150331 -0.7969739957453436 0.115269717371056 0.5929125925150331 0.7969739957453436 -0.9907547608051255 0.01083646901163245 0.1352315602266675 0.9907547608051255 -0.01083646901163245 -0.1352315602266675 -0.1314706361830664 0.1693873924460705 -0.9767412057970836 0.1314706361830664 -0.1693873924460705 0.9767412057970836 0.9907552486948316 -0.01084364746921769 -0.135227410288026 0.9907544686782243 -0.01084268175388495 -0.1352332024560302 -0.9907544686782243 0.01084268175388495 0.1352332024560302 -0.9907552486948316 0.01084364746921769 0.135227410288026 0.9907553600312666 -0.01083830286003287 -0.1352270230406248 -0.9907553600312666 0.01083830286003287 0.1352270230406248 -0.9907528949808248 0.0108438867540005 0.1352446346705895 0.9907528949808248 -0.0108438867540005 -0.1352446346705895 -0.1152728223332582 -0.5929306852146626 -0.7969600861788473 0.1152728223332582 0.5929306852146626 0.7969600861788473 -0.9907530246285961 0.01084120938957167 0.1352438995602404 0.9907530246285961 -0.01084120938957167 -0.1352438995602404 -0.1152763180923769 0.4583634432222098 -0.8812572407671583 0.1152763180923769 -0.4583634432222098 0.8812572407671583 0.9907543117722588 -0.01084193425789373 -0.1352344119158477 -0.9907543117722588 0.01084193425789373 0.1352344119158477 -0.07441634651649491 -0.8769018501917213 -0.4748740385633572 0.07441634651649491 0.8769018501917213 0.4748740385633572 -0.1152716199714295 0.4583767549267875 -0.8812509314445858 0.1152716199714295 -0.4583767549267875 0.8812509314445858 0.9907552724987844 -0.01083873891871537 -0.1352276294050575 0.9907544579576236 -0.0108406981143271 -0.1352334400268269 -0.9907544579576236 0.0108406981143271 0.1352334400268269 -0.9907552724987844 0.01083873891871537 0.1352276294050575 -0.9907530102878968 0.0108410673081059 0.1352440160047461 0.9907530102878968 -0.0108410673081059 -0.1352440160047461 -0.9907531370540285 0.01084393251738769 0.1352428576493415 0.9907531370540285 -0.01084393251738769 -0.1352428576493415 0.990754216923581 -0.01084271563818988 -0.1352350441480726 0.9907546154829099 -0.01084175701065832 -0.1352322010625927 -0.9907546154829099 0.01084175701065832 0.1352322010625927 -0.990754216923581 0.01084271563818988 0.1352350441480726 -0.07441916213512102 -0.8769111782314245 -0.4748563717587472 -4.235417158476926e-006 -0.9968004622671232 0.07993020959631503 4.235417158476926e-006 0.9968004622671232 -0.07993020959631503 0.07441916213512102 0.8769111782314245 0.4748563717587472 -0.07441374131601436 0.7900357613279838 -0.6085278062063114 0.07441374131601436 -0.7900357613279838 0.6085278062063114 -0.07441502969023559 0.7900314892178472 -0.6085331949864627 0.07441502969023559 -0.7900314892178472 0.6085331949864627 0.9907543765916157 -0.01084162177413705 -0.1352339620874339 -0.9907543765916157 0.01084162177413705 0.1352339620874339 -0.9907537574304999 0.0108419922220309 0.1352384684252361 -0.9907537574304999 0.0108419922220309 0.1352384684252361 0.9907537574304999 -0.0108419922220309 -0.1352384684252361 0.9907537574304999 -0.0108419922220309 -0.1352384684252361 -0.9907538895728028 0.0108421226586768 0.1352374898932132 -0.9907538895728028 0.0108421226586768 0.1352374898932132 0.9907538895728028 -0.0108421226586768 -0.1352374898932132 0.9907538895728028 -0.0108421226586768 -0.1352374898932132 0.9907538673674123 -0.0108427181255508 -0.1352376048300391 -0.9907538673674123 0.0108427181255508 0.1352376048300391 -2.57462444777998e-006 -0.9968024550084911 0.07990535452906993 0.07441418381058321 -0.7900491071668576 0.6085104251470602 -0.07441418381058321 0.7900491071668576 -0.6085104251470602 2.57462444777998e-006 0.9968024550084911 -0.07990535452906993 1.067839092478683e-006 0.9968001981039093 -0.07993350398216555 -1.067839092478683e-006 -0.9968001981039093 0.07993350398216555 -1.347711116124554e-006 0.9967996693632567 -0.0799400972946978 1.347711116124554e-006 -0.9967996693632567 0.0799400972946978 0.9907542594744274 -0.01084074886987405 -0.135234890088392 -0.9907542594744274 0.01084074886987405 0.135234890088392 -0.990754285377745 0.01084072616952699 0.1352347021357721 -0.9907537594868053 0.01084199102203542 0.1352384534569954 -0.9907537594868053 0.01084199102203542 0.1352384534569954 0.9907537594868053 -0.01084199102203542 -0.1352384534569954 0.9907537594868053 -0.01084199102203542 -0.1352384534569954 0.990754285377745 -0.01084072616952699 -0.1352347021357721 -0.9907542347739401 0.01084268184047282 0.1352349160831287 -0.9907538171999085 0.01084216489426355 0.1352380167120766 -0.9907538171999085 0.01084216489426355 0.1352380167120766 0.9907538171999085 -0.01084216489426355 -0.1352380167120766 0.9907538171999085 -0.01084216489426355 -0.1352380167120766 0.9907542347739401 -0.01084268184047282 -0.1352349160831287 0.9907541447492104 -0.01084372969831687 -0.1352354916007271 -0.9907541447492104 0.01084372969831687 0.1352354916007271 0.07441486581928107 -0.790057000203266 0.6085000938166855 0.115274064337515 -0.458377227782483 0.8812503657539986 -0.115274064337515 0.458377227782483 -0.8812503657539986 -0.07441486581928107 0.790057000203266 -0.6085000938166855 0.07442034387648687 0.8768891770633528 0.4748968135989771 -0.07442034387648687 -0.8768891770633528 -0.4748968135989771 0.07441722469855183 0.8768924517460316 0.474891255698606 -0.07441722469855183 -0.8768924517460316 -0.474891255698606 0.9907538211855245 -0.01084133154978273 -0.1352380543209258 -0.9907538211855245 0.01084133154978273 0.1352380543209258 -0.9907540170982758 0.01084435679705766 0.1352363765016191 0.9907540170982758 -0.01084435679705766 -0.1352363765016191 -0.9907539455884662 0.01083975691409952 0.1352372691639772 0.9907539455884662 -0.01083975691409952 -0.1352372691639772 0.9907535072974634 -0.0108417617890564 -0.1352403193544176 -0.9907535072974634 0.0108417617890564 0.1352403193544176 0.1152751208156897 -0.4583785629178389 0.8812495330939499 0.1314731089687768 -0.1693813640998348 0.9767419183764785 -0.1314731089687768 0.1693813640998348 -0.9767419183764785 -0.1152751208156897 0.4583785629178389 -0.8812495330939499 0.1152735228554939 0.5929025989580536 0.7969808799947897 -0.1152735228554939 -0.5929025989580536 -0.7969808799947897 0.115268135674773 0.5929178457434806 0.7969703163211114 -0.115268135674773 -0.5929178457434806 -0.7969703163211114 0.9907542573323389 -0.01084017946061422 -0.1352349514256858 -0.9907542573323389 0.01084017946061422 0.1352349514256858 -0.990752711050512 0.01084431889758902 0.1352459474206457 0.990752711050512 -0.01084431889758902 -0.1352459474206457 -0.9907528726464318 0.01084160231982215 0.1352449814299302 0.9907528726464318 -0.01084160231982215 -0.1352449814299302 0.1314753993869377 -0.1693935009502534 0.9767395052888265 0.135673890395719 0.07916904731405634 0.9875853671517592 -0.135673890395719 -0.07916904731405634 -0.9875853671517592 -0.1314753993869377 0.1693935009502534 -0.9767395052888265 0.1314685987065968 0.322842898002442 0.9372771579226225 -0.1314685987065968 -0.322842898002442 -0.9372771579226225 0.1314699454240871 0.3228410598408602 0.9372776021707856 -0.1314699454240871 -0.3228410598408602 -0.9372776021707856 -0.9907544541490362 0.01084113343017222 0.1352334330326444 0.9907544541490362 -0.01084113343017222 -0.1352334330326444 0.1356723079532084 0.07917457048518277 0.9875851417691218 -0.1356723079532084 -0.07917457048518277 -0.9875851417691218</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"150\" source=\"#ID1358\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1356\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1354\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1355\"/>\r\n                </vertices>\r\n                <triangles count=\"128\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1356\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 14 0 30 31 5 15 32 33 8 9 34 35 18 8 36 37 9 19 38 20 22 23 25 39 12 40 26 27 41 13 22 28 42 43 29 23 44 14 30 31 15 45 33 46 8 9 47 34 26 40 48 49 41 27 44 30 50 51 31 45 52 8 53 54 9 55 56 38 22 23 39 57 22 42 58 59 43 23 46 60 61 62 63 47 48 64 65 66 67 49 48 40 64 67 41 49 68 44 50 51 45 69 68 50 70 71 51 69 53 8 72 73 9 54 74 56 75 76 57 77 78 58 79 80 59 81 60 82 8 9 83 63 65 84 85 86 87 66 65 64 84 87 67 66 68 70 88 89 71 69 70 90 88 89 91 71 8 92 72 73 93 9 94 95 96 97 98 99 100 101 102 103 104 105 82 106 8 9 107 83 85 108 109 110 111 86 85 84 108 111 87 86 88 90 112 113 91 89 90 114 112 113 115 91 8 116 92 93 117 9 118 94 22 23 99 119 120 22 100 105 23 121 8 106 122 123 107 9 109 124 125 126 127 110 108 124 109 110 127 111 112 114 128 129 115 113 114 130 128 129 131 115 8 132 116 117 133 9 134 118 22 23 119 135 136 22 120 121 23 137 8 122 132 133 123 9 125 138 139 140 141 126 124 138 125 126 141 127 142 128 130 131 129 143 142 130 144 145 131 143 134 22 146 147 23 135 146 22 136 137 23 147 148 144 139 140 145 149 138 148 139 140 149 141 148 142 144 145 143 149</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1359\">\r\n            <mesh>\r\n                <source id=\"ID1360\">\r\n                    <float_array count=\"168\" id=\"ID1363\">-0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"56\" source=\"#ID1363\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1361\">\r\n                    <float_array count=\"168\" id=\"ID1364\">-0.1692923417467978 -0.07875995462953699 -0.9824138499495204 -0.1692938326651547 -0.07876144204660998 -0.9824134737819312 -0.1692938326907131 -0.07876144207210842 -0.9824134737754826 0.1692938326907131 0.07876144207210842 0.9824134737754826 0.1692938326651547 0.07876144204660998 0.9824134737819312 0.1692923417467978 0.07875995462953699 0.9824138499495204 0.985565970216552 -0.01352869035001519 -0.1687503863359133 0.985565970216552 -0.01352869035001519 -0.1687503863359133 0.985565970216552 -0.01352869035001519 -0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.1692953236140108 -0.0787629294945232 -0.9824130976019551 0.1692953236140108 0.0787629294945232 0.9824130976019551 4.192985630659793e-006 0.996801436518354 -0.07991805889387653 1.096906230813379e-005 0.9968018192187224 -0.07991328476495892 1.09690889451969e-005 0.9968018192202266 -0.07991328474619158 -1.09690889451969e-005 -0.9968018192202266 0.07991328474619158 -1.096906230813379e-005 -0.9968018192187224 0.07991328476495892 -4.192985630659793e-006 -0.996801436518354 0.07991805889387653 9.582506172782085e-007 -0.996801371888121 0.07991886511357456 -5.671514406445729e-006 -0.9968017463641189 0.07991419406636696 -5.671498187858583e-006 -0.996801746363203 0.07991419407779388 5.671498187858583e-006 0.996801746363203 -0.07991419407779388 5.671514406445729e-006 0.9968017463641189 -0.07991419406636696 -9.582506172782085e-007 0.996801371888121 -0.07991886511357456 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -1.230130500121009e-005 -0.9968021207758588 0.07990952299587543 1.230130500121009e-005 0.9968021207758588 -0.07990952299587543 -0.985566806953075 0.01352881908006203 0.1687454890852473 -0.985566806953075 0.01352881908006203 0.1687454890852473 -0.985566806953075 0.01352881908006203 0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 1.774514664156804e-005 0.9968022018508893 -0.07990851062514436 -1.774514664156804e-005 -0.9968022018508893 0.07990851062514436 0.1692896681507659 0.07876208895893308 0.9824141395563425 0.1692914505875623 0.07876026173301266 0.9824139788957129 0.1692914506032995 0.07876026171688015 0.9824139788942946 -0.1692914506032995 -0.07876026171688015 -0.9824139788942946 -0.1692914505875623 -0.07876026173301266 -0.9824139788957129 -0.1692896681507659 -0.07876208895893308 -0.9824141395563425 -0.985566674990484 0.01352810345769673 0.1687463171895607 -0.985566674990484 0.01352810345769673 0.1687463171895607 -0.985566674990484 0.01352810345769673 0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.1692932330193621 0.07875843451056407 0.9824138182290074 -0.1692932330193621 -0.07875843451056407 -0.9824138182290074</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"56\" source=\"#ID1364\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1362\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1360\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1361\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1362\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 21 32 22 23 33 24 34 35 36 37 38 39 15 40 16 17 41 18 42 43 44 45 46 47 48 49 50 51 52 53 43 54 44 45 55 46</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1365\">\r\n            <mesh>\r\n                <source id=\"ID1366\">\r\n                    <float_array count=\"240\" id=\"ID1369\">-0.1229010000824928 1.402469992637634 0.07537984848022461 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1123381182551384 1.404854774475098 0.1051209568977356 -0.1123381182551384 1.404854774475098 0.1051209568977356 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.2154930233955383 1.407772421836853 0.1415231823921204 -0.2154930233955383 1.407772421836853 0.1415231823921204 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.420804738998413 0.1686054915189743</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID1369\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1367\">\r\n                    <float_array count=\"240\" id=\"ID1370\">-0.3337266271680724 -0.07532520667226132 -0.9396556026325833 -0.3337254443835178 -0.07531800304052706 -0.939656600141249 -0.2556522031940139 -0.6984222253960624 -0.6684671615531003 0.2556522031940139 0.6984222253960624 0.6684671615531003 0.3337254443835178 0.07531800304052706 0.939656600141249 0.3337266271680724 0.07532520667226132 0.9396556026325833 0.9426693299249394 -0.02667009523577694 -0.3326608489723134 0.9426698480710878 -0.02666549239372739 -0.3326597496737959 0.942668346931451 -0.02667054805145014 -0.3326635981891633 -0.942668346931451 0.02667054805145014 0.3326635981891633 -0.9426698480710878 0.02666549239372739 0.3326597496737959 -0.9426693299249394 0.02667009523577694 0.3326608489723134 -0.2556517063393704 -0.6984267968755661 -0.6684625752066491 0.2556517063393704 0.6984267968755661 0.6684625752066491 -0.255639269038604 0.5830513834916339 -0.7711677173831254 0.255639269038604 -0.5830513834916339 0.7711677173831254 0.94266992556121 -0.02666708717482581 -0.3326594022480552 -0.94266992556121 0.02666708717482581 0.3326594022480552 0.9426698844777661 -0.02667432654829168 -0.3326589382563925 -0.9426698844777661 0.02667432654829168 0.3326589382563925 -0.9426692985040845 0.02667097289356337 0.3326608676456075 -0.9426700925419396 0.02667093112104283 0.3326586209015298 -0.9426726158260356 0.02666887460036563 0.3326516353473254 0.9426726158260356 -0.02666887460036563 -0.3326516353473254 0.9426700925419396 -0.02667093112104283 -0.3326586209015298 0.9426692985040845 -0.02667097289356337 -0.3326608676456075 -0.05795608011964645 -0.9947370444312012 -0.08449440936206237 0.05795608011964645 0.9947370444312012 0.08449440936206237 -0.9426700925637542 0.02666824235994739 0.3326588364004093 0.9426700925637542 -0.02666824235994739 -0.3326588364004093 -0.2556454488961971 0.5830389603010273 -0.7711750613380591 0.2556454488961971 -0.5830389603010273 0.7711750613380591 0.9426676632894262 -0.02667050683223612 -0.3326655387228512 -0.9426676632894262 0.02667050683223612 0.3326655387228512 0.942669672464622 -0.02667280394461036 -0.3326596611330787 -0.942669672464622 0.02667280394461036 0.3326596611330787 -0.9426708263224173 0.02666902468531293 0.3326566943906968 0.9426708263224173 -0.02666902468531293 -0.3326566943906968 -0.05795410471479303 -0.9947383245080389 -0.08448069307034842 0.05795410471479303 0.9947383245080389 0.08448069307034842 -0.9426700638303835 0.02666835112717045 0.3326589091038728 -0.9426711799215867 0.02666751137953105 0.3326558136904663 0.9426711799215867 -0.02666751137953105 -0.3326558136904663 0.9426700638303835 -0.02666835112717045 -0.3326589091038728 -0.05795203583627952 0.968575292156016 -0.2418748952812563 0.05795203583627952 -0.968575292156016 0.2418748952812563 0.942665841501148 -0.02667405932079358 -0.3326704162174381 -0.942665841501148 0.02667405932079358 0.3326704162174381 0.1668648430655019 -0.8255867437633917 0.5390386374564307 -0.1668648430655019 0.8255867437633917 -0.5390386374564307 -0.05795097760768985 0.9685756112144538 -0.2418738711702036 0.05795097760768985 -0.9685756112144538 0.2418738711702036 0.942667165956151 -0.02667077309447859 -0.3326669266559897 -0.942667165956151 0.02667077309447859 0.3326669266559897 -0.9426750123298155 0.02666608750429935 0.3326450674610936 0.9426750123298155 -0.02666608750429935 -0.3326450674610936 -0.9426743676767683 0.02666977656740232 0.3326465985742982 0.9426743676767683 -0.02666977656740232 -0.3326465985742982 0.9426659987069123 -0.02667273395274511 -0.3326700770213422 0.9426657124675998 -0.02667044983034913 -0.332671071245757 -0.9426657124675998 0.02667044983034913 0.332671071245757 -0.9426659987069123 0.02667273395274511 0.3326700770213422 0.1668651044540556 -0.8255855666711214 0.5390403593608371 0.3136006934420363 -0.270121277291786 0.9103236241177795 -0.3136006934420363 0.270121277291786 -0.9103236241177795 -0.1668651044540556 0.8255855666711214 -0.5390403593608371 0.1668518724339733 0.9009418074566474 0.4005799698462547 -0.1668518724339733 -0.9009418074566474 -0.4005799698462547 0.1668533512389299 0.9009402941734973 0.4005827573859245 -0.1668533512389299 -0.9009402941734973 -0.4005827573859245 -0.9426764526599932 0.02666602774790375 0.3326409905055594 0.9426764526599932 -0.02666602774790375 -0.3326409905055594 -0.9426762338578055 0.02667124274608742 0.3326411924732764 0.9426762338578055 -0.02667124274608742 -0.3326411924732764 0.3136004230653525 -0.270117527812872 0.9103248298390494 0.3135922239403754 0.4117529551857169 0.8556397729067756 -0.3135922239403754 -0.4117529551857169 -0.8556397729067756 -0.3136004230653525 0.270117527812872 -0.9103248298390494 0.3135992515083158 0.4117307509759519 0.8556478821070047 -0.3135992515083158 -0.4117307509759519 -0.8556478821070047</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID1370\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1368\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1366\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1367\"/>\r\n                </vertices>\r\n                <triangles count=\"72\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1368\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 21 28 29 24 23 14 0 30 31 5 15 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 22 40 41 42 43 23 14 30 44 45 31 15 32 46 8 9 47 33 48 26 38 39 27 49 30 50 44 45 51 31 8 52 34 35 53 9 54 36 22 23 37 55 56 22 41 42 23 57 8 58 59 60 61 9 48 62 63 64 65 49 48 38 62 65 39 49 44 50 66 67 51 45 50 68 66 67 69 51 8 59 52 53 60 9 70 54 22 23 55 71 72 22 56 57 23 73 63 74 75 76 77 64 62 74 63 64 77 65 66 68 78 79 69 67 68 75 78 79 76 69 70 22 72 73 23 71 74 78 75 76 79 77</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1371\">\r\n            <mesh>\r\n                <source id=\"ID1372\">\r\n                    <float_array count=\"246\" id=\"ID1375\">-0.121831588447094 1.560251235961914 0.06273014843463898 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.2144237756729126 1.565554141998291 0.1288736164569855 -0.2144237756729126 1.565554141998291 0.1288736164569855 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2044984251260757 1.578587532043457 0.1559560894966126</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"82\" source=\"#ID1375\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1373\">\r\n                    <float_array count=\"246\" id=\"ID1376\">-0.3337284789644306 -0.07535968965900289 -0.9396521800658937 -0.3337242968039064 -0.07533479758929397 -0.939655661396726 -0.2556476260153263 -0.6984382220308391 -0.6684521982304555 0.2556476260153263 0.6984382220308391 0.6684521982304555 0.3337242968039064 0.07533479758929397 0.939655661396726 0.3337284789644306 0.07535968965900289 0.9396521800658937 0.9426694128352491 -0.02666973091874628 -0.3326606432350672 0.9426694127314597 -0.02667813209137133 -0.3326599698921414 0.942668926506434 -0.02666950286440723 -0.3326620396380881 -0.942668926506434 0.02666950286440723 0.3326620396380881 -0.9426694127314597 0.02667813209137133 0.3326599698921414 -0.9426694128352491 0.02666973091874628 0.3326606432350672 -0.255646262106825 -0.6984564686954649 -0.6684336541559452 0.255646262106825 0.6984564686954649 0.6684336541559452 -0.2556503053192089 0.583016594440822 -0.7711903604148728 0.2556503053192089 -0.583016594440822 0.7711903604148728 0.9426699931672807 -0.02668006749924834 -0.3326581698684618 0.942669259790379 -0.02667984675927415 -0.3326602657714937 -0.942669259790379 0.02667984675927415 0.3326602657714937 -0.9426699931672807 0.02668006749924834 0.3326581698684618 0.9426697523001979 -0.02666004568836103 -0.3326604576173405 -0.9426697523001979 0.02666004568836103 0.3326604576173405 -0.9426707722604234 0.02666917946059317 0.3326568351812961 -0.94267117412886 0.02666943846076941 0.3326556756147475 -0.9426731217563237 0.02666860222138295 0.3326502234686538 0.9426731217563237 -0.02666860222138295 -0.3326502234686538 0.94267117412886 -0.02666943846076941 -0.3326556756147475 0.9426707722604234 -0.02666917946059317 -0.3326568351812961 -0.05795423941257186 -0.994738707658848 -0.08447608903894131 0.05795423941257186 0.994738707658848 0.08447608903894131 -0.9426708768647963 0.02666948294379122 0.3326565144266181 0.9426708768647963 -0.02666948294379122 -0.3326565144266181 -0.255652140417525 0.583012347109947 -0.7711929630237095 0.255652140417525 -0.583012347109947 0.7711929630237095 0.9426680003299808 -0.02668065199421859 -0.332663770138918 -0.9426680003299808 0.02668065199421859 0.332663770138918 0.9426695663783524 -0.02665915632357748 -0.3326610557431757 -0.9426695663783524 0.02665915632357748 0.3326610557431757 -0.9426733099111155 0.02666872421876396 0.3326496804894987 0.9426733099111155 -0.02666872421876396 -0.3326496804894987 -0.0579498436027994 -0.994741411996432 -0.08444725505163428 0.0579498436027994 0.994741411996432 0.08444725505163428 -0.9426731236378981 0.0266686940813683 0.3326502107721603 0.9426731236378981 -0.0266686940813683 -0.3326502107721603 -0.05795127045210659 0.9685752051750813 -0.241875426972307 0.05795127045210659 -0.9685752051750813 0.241875426972307 0.9426682123690319 -0.02667545368174198 -0.3326635861645327 -0.9426682123690319 0.02667545368174198 0.3326635861645327 0.1668598278491472 -0.8255880097559711 0.5390382509593614 -0.1668598278491472 0.8255880097559711 -0.5390382509593614 -0.05795438103376407 0.9685733722687513 -0.2418820213470451 0.05795438103376407 -0.9685733722687513 0.2418820213470451 0.9426682383299377 -0.02665834859776295 -0.3326648837703971 -0.9426682383299377 0.02665834859776295 0.3326648837703971 -0.942674597705025 0.02667283037220496 0.332645701853496 0.942674597705025 -0.02667283037220496 -0.332645701853496 -0.9426756674865577 0.02666678017256694 0.3326431552940793 0.9426756674865577 -0.02666678017256694 -0.3326431552940793 0.9426689503533277 -0.02666923001243467 -0.3326619939372389 0.9426681929053484 -0.02666318732849757 -0.3326646246988855 -0.9426681929053484 0.02666318732849757 0.3326646246988855 -0.9426689503533277 0.02666923001243467 0.3326619939372389 0.1668582087259924 -0.8255983909538566 0.53902285205282 0.3135987183210398 -0.2701335159881868 0.9103206728440595 -0.3135987183210398 0.2701335159881868 -0.9103206728440595 -0.1668582087259924 0.8255983909538566 -0.53902285205282 0.1668622050623149 0.9009256888053704 0.4006119166628858 -0.1668622050623149 -0.9009256888053704 -0.4006119166628858 0.1668585745490759 0.9009288777610089 0.4006062572099185 -0.1668585745490759 -0.9009288777610089 -0.4006062572099185 -0.9426738098360217 0.02666876774876723 0.3326482602930651 0.9426738098360217 -0.02666876774876723 -0.3326482602930651 -0.9426749672617724 0.0266638276274031 0.3326453763308198 -0.9426752609315559 0.02666617088208003 0.3326443562697421 0.9426752609315559 -0.02666617088208003 -0.3326443562697421 0.9426749672617724 -0.0266638276274031 -0.3326453763308198 0.3135995234629018 -0.2701506651186825 0.9103153063745411 0.3135975129665967 0.4117207496375949 0.8556533317757969 -0.3135975129665967 -0.4117207496375949 -0.8556533317757969 -0.3135995234629018 0.2701506651186825 -0.9103153063745411 0.3136011967334145 0.41170988785074 0.8556572080297702 -0.3136011967334145 -0.41170988785074 -0.8556572080297702</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"82\" source=\"#ID1376\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1374\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1372\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1373\"/>\r\n                </vertices>\r\n                <triangles count=\"72\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1374\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 16 17 8 9 18 19 6 8 20 21 9 11 22 23 24 25 26 27 28 2 12 13 3 29 24 23 30 31 26 25 14 0 32 33 5 15 17 34 8 9 35 18 20 8 36 37 9 21 38 22 24 25 27 39 28 12 40 41 13 29 24 30 42 43 31 25 14 32 44 45 33 15 34 46 8 9 47 35 48 28 40 41 29 49 32 50 44 45 51 33 8 52 36 37 53 9 54 38 24 25 39 55 56 24 42 43 25 57 58 46 59 60 47 61 48 62 63 64 65 49 48 40 62 65 41 49 44 50 66 67 51 45 50 68 66 67 69 51 8 59 52 53 60 9 70 54 24 25 55 71 72 24 73 74 25 75 63 76 77 78 79 64 62 76 63 64 79 65 66 68 80 81 69 67 68 77 80 81 78 69 70 24 72 75 25 71 76 80 77 78 81 79</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1377\">\r\n            <mesh>\r\n                <source id=\"ID1378\">\r\n                    <float_array count=\"240\" id=\"ID1381\">-0.121831588447094 1.632965445518494 0.05580605939030647 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.1112687066197395 1.635351061820984 0.08554725348949432 -0.1112687066197395 1.635351061820984 0.08554725348949432 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2144237756729126 1.63826847076416 0.1219496876001358 -0.2144237756729126 1.63826847076416 0.1219496876001358 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.651299953460693 0.1490315943956375</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID1381\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1379\">\r\n                    <float_array count=\"240\" id=\"ID1382\">-0.333730378141187 -0.07535403620761856 -0.9396519589363719 -0.333726883852007 -0.07533113375164462 -0.9396550363203088 -0.2556565374133898 -0.6984324284783076 -0.6684548434469525 0.2556565374133898 0.6984324284783076 0.6684548434469525 0.333726883852007 0.07533113375164462 0.9396550363203088 0.333730378141187 0.07535403620761856 0.9396519589363719 0.9426698651042278 -0.02666926967659147 -0.3326593986035781 0.9426706627335539 -0.02667644281289909 -0.3326565631703853 0.9426693154071472 -0.02667025725170954 -0.3326608771225557 -0.9426693154071472 0.02667025725170954 0.3326608771225557 -0.9426706627335539 0.02667644281289909 0.3326565631703853 -0.9426698651042278 0.02666926967659147 0.3326593986035781 -0.2556565162415049 -0.6984283547388395 -0.6684591079490616 0.2556565162415049 0.6984283547388395 0.6684591079490616 -0.2556544916264227 0.5830074241203893 -0.7711959052872001 0.2556544916264227 -0.5830074241203893 0.7711959052872001 0.9426701864689276 -0.02667871855776842 -0.3326577302855785 -0.9426701864689276 0.02667871855776842 0.3326577302855785 0.9426703818063023 -0.0266627993108055 -0.3326584530687176 -0.9426703818063023 0.0266627993108055 0.3326584530687176 -0.942670682789034 0.02666641547402317 0.3326573102996888 -0.9426715774722685 0.02666939845816986 0.3326545358353379 -0.9426726866031083 0.02666879491651253 0.3326514411665441 0.9426726866031083 -0.02666879491651253 -0.3326514411665441 0.9426715774722685 -0.02666939845816986 -0.3326545358353379 0.942670682789034 -0.02666641547402317 -0.3326573102996888 -0.05795034002025325 -0.9947409900488647 -0.08445188457424339 0.05795034002025325 0.9947409900488647 0.08445188457424339 -0.9426715774692825 0.0266696397275071 0.332654516500798 -0.9426706530564586 0.02667313881978869 0.3326568555307563 0.9426706530564586 -0.02667313881978869 -0.3326568555307563 0.9426715774692825 -0.0266696397275071 -0.332654516500798 -0.2556600729310317 0.5829964967063355 -0.7712023158270722 0.2556600729310317 -0.5829964967063355 0.7712023158270722 0.9426679717584315 -0.02668017002983864 -0.3326638897566493 -0.9426679717584315 0.02668017002983864 0.3326638897566493 0.9426693238288924 -0.02666202804200823 -0.3326615129116476 -0.9426693238288924 0.02666202804200823 0.3326615129116476 -0.9426725348063688 0.02666425905578586 0.3326522349402474 0.9426725348063688 -0.02666425905578586 -0.3326522349402474 -0.05795252513498193 -0.9947392447197427 -0.08447094083100366 0.05795252513498193 0.9947392447197427 0.08447094083100366 -0.9426734261757909 0.02667385572371525 0.3326489395786893 0.9426734261757909 -0.02667385572371525 -0.3326489395786893 -0.05796483274626623 0.96857007026727 -0.241892738930198 0.05796483274626623 -0.96857007026727 0.241892738930198 0.9426680303599566 -0.02667357815985674 -0.3326642523106893 -0.9426680303599566 0.02667357815985674 0.3326642523106893 0.1668674553623587 -0.8255766404347668 0.5390533026606321 -0.1668674553623587 0.8255766404347668 -0.5390533026606321 -0.05796124807593681 0.9685715880919653 -0.2418875202702447 0.05796124807593681 -0.9685715880919653 0.2418875202702447 0.9426683879472891 -0.02666417007570079 -0.3326639932409778 -0.9426683879472891 0.02666417007570079 0.3326639932409778 -0.9426744820301379 0.02666664481774934 0.3326465255844037 0.9426744820301379 -0.02666664481774934 -0.3326465255844037 -0.9426746561069067 0.02666737641715492 0.3326459736247396 0.9426746561069067 -0.02666737641715492 -0.3326459736247396 0.9426690297862003 -0.02666515139479778 -0.3326620958014853 -0.9426690297862003 0.02666515139479778 0.3326620958014853 0.1668667127256855 -0.8255788199028996 0.5390501946125792 0.3135970278251287 -0.2701501860406067 0.9103163082805179 -0.3135970278251287 0.2701501860406067 -0.9103163082805179 -0.1668667127256855 0.8255788199028996 -0.5390501946125792 0.1668686049155389 0.9009099015269486 0.4006447528974333 -0.1668686049155389 -0.9009099015269486 -0.4006447528974333 0.1668609828112135 0.9009170600359566 0.4006318301775889 -0.1668609828112135 -0.9009170600359566 -0.4006318301775889 0.9426690267813482 -0.02666512741588473 -0.332662106238448 -0.9426690267813482 0.02666512741588473 0.332662106238448 -0.9426734572124721 0.02667010445225194 0.3326491524047397 0.9426734572124721 -0.02667010445225194 -0.3326491524047397 -0.942672710193572 0.026667841495269 0.3326514507503151 0.942672710193572 -0.026667841495269 -0.3326514507503151 0.3135950812842684 -0.270120249285133 0.9103258624912568 0.313594948705331 0.411703538656981 0.8556625528815787 -0.313594948705331 -0.411703538656981 -0.8556625528815787 -0.3135950812842684 0.270120249285133 -0.9103258624912568 0.3135997197807662 0.4116882149507133 0.8556681771715717 -0.3135997197807662 -0.4116882149507133 -0.8556681771715717</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"80\" source=\"#ID1382\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1380\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1378\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1379\"/>\r\n                </vertices>\r\n                <triangles count=\"72\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1380\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 28 29 30 31 23 14 0 32 33 5 15 16 34 8 9 35 17 18 8 36 37 9 19 38 20 22 23 25 39 26 12 40 41 13 27 22 29 42 43 30 23 14 32 44 45 33 15 34 46 8 9 47 35 48 26 40 41 27 49 32 50 44 45 51 33 8 52 36 37 53 9 54 38 22 23 39 55 56 22 42 43 23 57 8 46 58 59 47 9 48 60 61 62 63 49 48 40 60 63 41 49 44 50 64 65 51 45 50 66 64 65 67 51 8 68 52 53 69 9 70 54 22 23 55 71 72 22 56 57 23 73 61 74 75 76 77 62 60 74 61 62 77 63 64 66 78 79 67 65 66 75 78 79 76 67 70 22 72 73 23 71 74 78 75 76 79 77</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1383\">\r\n            <mesh>\r\n                <source id=\"ID1384\">\r\n                    <float_array count=\"246\" id=\"ID1387\">-0.1239700987935066 1.32936418056488 0.08014623820781708 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1134073734283447 1.331748962402344 0.1098872125148773 -0.1134073734283447 1.331748962402344 0.1098872125148773 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.32611608505249 0.1751019805669785</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"82\" source=\"#ID1387\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1385\">\r\n                    <float_array count=\"246\" id=\"ID1388\">-0.3337276167891264 -0.075333276831864 -0.939654604199875 -0.3337309577305596 -0.07535292865709133 -0.9396518419047784 -0.2556555199327572 -0.6984359506995821 -0.6684515523942498 0.2556555199327572 0.6984359506995821 0.6684515523942498 0.3337309577305596 0.07535292865709133 0.9396518419047784 0.3337276167891264 0.075333276831864 0.939654604199875 0.9426704146675395 -0.02666821468598398 -0.3326579258577669 0.9426719908397363 -0.02667014439399164 -0.332653304634498 0.9426704041214337 -0.02666958664825751 -0.3326578457537778 -0.9426704041214337 0.02666958664825751 0.3326578457537778 -0.9426719908397363 0.02667014439399164 0.332653304634498 -0.9426704146675395 0.02666821468598398 0.3326579258577669 -0.2556553714157113 -0.6984335117424741 -0.6684541575466264 0.2556553714157113 0.6984335117424741 0.6684541575466264 -0.255661960777685 0.5829995249413289 -0.7711994007579975 0.255661960777685 -0.5829995249413289 0.7711994007579975 0.9426702483678892 -0.02667440003294516 -0.3326579011911561 -0.9426702483678892 0.02667440003294516 0.3326579011911561 0.9426715215503717 -0.02666734987902996 -0.3326548585370981 -0.9426715215503717 0.02666734987902996 0.3326548585370981 -0.9426736657977303 0.02667311100922879 0.3326483202431038 -0.9426761082832638 0.02667120236097125 0.3326415515784829 -0.9426735152706354 0.02666898903716784 0.3326490773037535 0.9426735152706354 -0.02666898903716784 -0.3326490773037535 0.9426761082832638 -0.02667120236097125 -0.3326415515784829 0.9426736657977303 -0.02667311100922879 -0.3326483202431038 -0.05796044901938876 -0.9947380448489566 -0.08447963351924584 0.05796044901938876 0.9947380448489566 0.08447963351924584 -0.942674955676002 0.02666551330546385 0.3326452740403869 0.942674955676002 -0.02666551330546385 -0.3326452740403869 -0.2556428475158868 0.5830371083732807 -0.7711773238196857 0.2556428475158868 -0.5830371083732807 0.7711773238196857 0.9426693620251326 -0.02666865831024714 -0.3326608732073263 -0.9426693620251326 0.02666865831024714 0.3326608732073263 0.9426698305620523 -0.02666526531686748 -0.3326598174918229 -0.9426698305620523 0.02666526531686748 0.3326598174918229 -0.9426728524084502 0.02666545790151182 0.3326512388178031 0.9426728524084502 -0.02666545790151182 -0.3326512388178031 -0.05796238945661559 -0.9947363993485305 -0.0844976758236609 0.05796238945661559 0.9947363993485305 0.0844976758236609 -0.9426738031800903 0.02666987603224691 0.3326481903008177 -0.9426738031800903 0.02666987603224691 0.3326481903008177 0.9426738031800903 -0.02666987603224691 -0.3326481903008177 0.9426738031800903 -0.02666987603224691 -0.3326481903008177 -0.05794658213933268 0.9685775282560405 -0.241867247422607 0.05794658213933268 -0.9685775282560405 0.241867247422607 0.9426711761204227 -0.02666912724864952 -0.3326556949212423 -0.9426711761204227 0.02666912724864952 0.3326556949212423 0.1668609813859133 -0.8255905717489268 0.5390339699223137 -0.1668609813859133 0.8255905717489268 -0.5390339699223137 -0.05793367877946438 0.9685830448084376 -0.2418482461641892 0.05793367877946438 -0.9685830448084376 0.2418482461641892 0.9426686652623827 -0.02666981781125841 -0.332662754678597 -0.9426686652623827 0.02666981781125841 0.332662754678597 -0.9426734123039166 0.0266680332057299 0.3326494457236154 0.9426734123039166 -0.0266680332057299 -0.3326494457236154 -0.9426726990613483 0.02666801150120607 0.3326514686679803 -0.9426738963327904 0.02666980594554911 0.3326479319394343 0.9426738963327904 -0.02666980594554911 -0.3326479319394343 0.9426726990613483 -0.02666801150120607 -0.3326514686679803 0.942670427945132 -0.02667330231420939 -0.3326574803328437 -0.942670427945132 0.02667330231420939 0.3326574803328437 0.1668612428472993 -0.8255908640540989 0.5390334412871441 0.3135988286385334 -0.2701201898894522 0.9103245891936711 -0.3135988286385334 0.2701201898894522 -0.9103245891936711 -0.1668612428472993 0.8255908640540989 -0.5390334412871441 0.1668796441514547 0.9009087185794509 0.4006428149304759 -0.1668796441514547 -0.9009087185794509 -0.4006428149304759 0.1668653875440422 0.9009213997699368 0.4006202364788306 -0.1668653875440422 -0.9009213997699368 -0.4006202364788306 -0.9426723431580075 0.02667011828838743 0.3326523083272915 0.9426723431580075 -0.02667011828838743 -0.3326523083272915 -0.9426718367008743 0.02666889046501486 0.3326538419624301 0.9426718367008743 -0.02666889046501486 -0.3326538419624301 0.3135988204463492 -0.2701250551890383 0.9103231483235926 0.3135955801410653 0.4117195158224673 0.8556546338371001 -0.3135955801410653 -0.4117195158224673 -0.8556546338371001 -0.3135988204463492 0.2701250551890383 -0.9103231483235926 0.3136012111030773 0.4117025885446904 0.8556607148749348 -0.3136012111030773 -0.4117025885446904 -0.8556607148749348 -0.9426721716935939 0.02667156403007993 0.3326526783097842 0.9426721716935939 -0.02667156403007993 -0.3326526783097842</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"82\" source=\"#ID1388\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1386\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1384\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1385\"/>\r\n                </vertices>\r\n                <triangles count=\"72\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1386\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 21 28 29 24 23 14 0 30 31 5 15 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 40 28 41 42 29 43 14 30 44 45 31 15 32 46 8 9 47 33 48 26 38 39 27 49 30 50 44 45 51 31 8 52 34 35 53 9 54 36 22 23 37 55 56 22 57 58 23 59 8 46 60 61 47 9 48 62 63 64 65 49 48 38 62 65 39 49 44 50 66 67 51 45 50 68 66 67 69 51 8 60 52 53 61 9 70 54 22 23 55 71 72 22 56 59 23 73 63 74 75 76 77 64 62 74 63 64 77 65 66 68 78 79 69 67 68 75 78 79 76 69 80 22 72 73 23 81 74 78 75 76 79 77</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1389\">\r\n            <mesh>\r\n                <source id=\"ID1390\">\r\n                    <float_array count=\"144\" id=\"ID1393\">-0.1687647700309753 1.267630815505981 0.05896011367440224 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.2957886457443237 1.262829661369324 0.1834776252508164</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID1393\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1391\">\r\n                    <float_array count=\"144\" id=\"ID1394\">-0.01079581468578262 -0.1023463330354198 -0.9946902424873149 -0.004458380291245571 -0.09581628524271313 -0.9953890507371808 -0.004460959319859007 -0.09581894420101469 -0.995388783227011 0.004460959319859007 0.09581894420101469 0.995388783227011 0.004458380291245571 0.09581628524271313 0.9953890507371808 0.01079581468578262 0.1023463330354198 0.9946902424873149 0.9006312732702783 0.184235557488107 0.3935995032575677 0.9140735431317246 0.1655938409318771 0.3702002668719231 0.9216773985449562 0.1543073910567798 0.3559494375282138 -0.9216773985449562 -0.1543073910567798 -0.3559494375282138 -0.9140735431317246 -0.1655938409318771 -0.3702002668719231 -0.9006312732702783 -0.184235557488107 -0.3935995032575677 0.0008007850258315159 -0.09039150978887539 -0.9959059863769422 -0.0008007850258315159 0.09039150978887539 0.9959059863769422 -0.01075649788807149 0.9995620510894315 0.02756816597223926 -0.006716028346641294 0.999475288903926 0.03168661915794756 -0.006315207491680864 0.999464867974066 0.03209510616776137 0.006315207491680864 -0.999464867974066 -0.03209510616776137 0.006716028346641294 -0.999475288903926 -0.03168661915794756 0.01075649788807149 -0.9995620510894315 -0.02756816597223926 -1.157259076034438e-020 -0.9999999979197582 -6.450181205663836e-005 0.004671067444897015 -0.9999665336340035 0.006716601887925604 0.006204736968704651 -0.9999407596261793 0.008943068677412352 -0.006204736968704651 0.9999407596261793 -0.008943068677412352 -0.004671067444897015 0.9999665336340035 -0.006716601887925604 1.157259076034438e-020 0.9999999979197582 6.450181205663836e-005 0.9338681191719526 0.1348394762169404 0.3312229636480253 -0.9338681191719526 -0.1348394762169404 -0.3312229636480253 0.00897295824350252 -0.9998757315918625 0.01296176662334557 -0.00897295824350252 0.9998757315918625 -0.01296176662334557 -0.9339444544418049 0.1407940027916114 0.3285191087217226 -0.9294909902303715 0.1299033390301004 0.3452124296565728 -0.9399623412950603 0.1572199293011113 0.3029070662392382 0.9399623412950603 -0.1572199293011113 -0.3029070662392382 0.9294909902303715 -0.1299033390301004 -0.3452124296565728 0.9339444544418049 -0.1407940027916114 -0.3285191087217226 1.172950410623281e-017 0.9992574657191585 0.03852943296396869 -1.172950410623281e-017 -0.9992574657191585 -0.03852943296396869 0 0.07991461157145938 0.9968017129085318 0 0.07991461157145938 0.9968017129085318 0 0.07991461157145938 0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0.9218001741158475 0.1128702562766233 0.3708702525790428 0.9218001741158475 -0.1128702562766233 -0.3708702525790428 0 0.07991461157145938 0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID1394\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1392\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1390\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1391\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1392\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 7 26 8 9 27 10 21 28 22 23 29 24 30 31 32 33 34 35 16 15 36 37 18 17 38 39 40 41 42 43 44 31 30 35 34 45 38 46 39 42 47 43</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1395\">\r\n            <mesh>\r\n                <source id=\"ID1396\">\r\n                    <float_array count=\"228\" id=\"ID1399\">-0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3322747349739075 0.9441547989845276 0.1811926662921906 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3322747349739075 0.9441547989845276 0.1811926662921906 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3322747349739075 1.074667453765869 0.1964417695999146 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3322747349739075 1.074667453765869 0.1964417695999146 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 1.075878262519836 0.1860643476247788</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"76\" source=\"#ID1399\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1397\">\r\n                    <float_array count=\"228\" id=\"ID1400\">-0.7660484854148862 -0.0745931702744352 0.6384399556277536 -0.999999999880804 9.129351145749808e-007 -1.541294222891259e-005 -0.999999999994756 1.099899772535657e-006 -3.046035710492433e-006 0.999999999994756 -1.099899772535657e-006 3.046035710492433e-006 0.999999999880804 -9.129351145749808e-007 1.541294222891259e-005 0.7660484854148862 0.0745931702744352 -0.6384399556277536 -1.162476943371287e-005 -0.9932434439682124 -0.1160493898261838 3.427597121637712e-022 -0.9932460392063136 -0.1160271761311556 2.37112327817461e-005 -0.9932400230976206 -0.1160786627887123 -2.37112327817461e-005 0.9932400230976206 0.1160786627887123 -3.427597121637712e-022 0.9932460392063136 0.1160271761311556 1.162476943371287e-005 0.9932434439682124 0.1160493898261838 -0.766051153372814 -0.07459198157284841 0.6384368932801559 0.766051153372814 0.07459198157284841 -0.6384368932801559 -0.7660502336723536 0.0745925132308464 -0.6384379346972096 0.7660502336723536 -0.0745925132308464 0.6384379346972096 1.522862207152876e-005 -0.9932426439875201 -0.1160562360787638 -1.522862207152876e-005 0.9932426439875201 0.1160562360787638 5.612146763604787e-005 -0.9932475702882814 -0.1160140550399245 -5.612146763604787e-005 0.9932475702882814 0.1160140550399245 -3.471916287413821e-018 0.993242000120007 0.1160617473485916 1.585121066035665e-005 0.9932438862712563 0.1160456036802376 8.070319983265988e-006 0.9932398287754397 0.1160803276572105 -8.070319983265988e-006 -0.9932398287754397 -0.1160803276572105 -1.585121066035665e-005 -0.9932438862712563 -0.1160456036802376 3.471916287413821e-018 -0.993242000120007 -0.1160617473485916 -0.1736487374015801 -0.1142829697488939 0.9781541385815481 0.1736487374015801 0.1142829697488939 -0.9781541385815481 2.222021911968254e-005 0.9932461275554015 0.1160264176920982 -2.222021911968254e-005 -0.9932461275554015 -0.1160264176920982 -0.7660486120073445 0.07459292706600855 -0.6384398321481405 0.7660486120073445 -0.07459292706600855 0.6384398321481405 -4.106049424604954e-005 -0.9932435989717825 -0.1160480564922013 4.106049424604954e-005 0.9932435989717825 0.1160480564922013 3.396163110747765e-005 -0.9932414115337033 -0.1160667793175307 -3.396163110747765e-005 0.9932414115337033 0.1160667793175307 6.647656232279825e-006 0.9932389066328453 0.1160882177768221 -6.647656232279825e-006 -0.9932389066328453 -0.1160882177768221 -0.1736515678230348 -0.1142833672265894 0.9781535896616412 0.1736515678230348 0.1142833672265894 -0.9781535896616412 2.504259532865034e-005 0.9932488028377058 0.1160035130258264 -2.504259532865034e-005 -0.9932488028377058 -0.1160035130258264 -0.1736579387619272 0.114283511484801 -0.9781524417531564 0.1736579387619272 -0.114283511484801 0.9781524417531564 -6.420171219164083e-005 -0.9932449077149694 -0.1160368440471479 6.420171219164083e-005 0.9932449077149694 0.1160368440471479 0.4999990993658716 -0.1004992050061297 0.8601748720036253 -0.4999990993658716 0.1004992050061297 -0.8601748720036253 -0.1736658952266699 0.1142845472302315 -0.9781509081422458 0.1736658952266699 -0.1142845472302315 0.9781509081422458 -5.946023309051964e-005 -0.9932419979460728 -0.1160617507216493 5.946023309051964e-005 0.9932419979460728 0.1160617507216493 -4.466557373368193e-006 0.9932389923049177 0.116087484877405 4.466557373368193e-006 -0.9932389923049177 -0.116087484877405 2.894799536756943e-005 0.993246845080762 0.1160202736556259 -2.894799536756943e-005 -0.993246845080762 -0.1160202736556259 -6.892321585256021e-005 -0.9932427930824257 -0.1160549406075073 6.892321585256021e-005 0.9932427930824257 0.1160549406075073 0.9396912244112444 -0.03969080372930595 0.3397131773479175 0.4999973724122661 -0.1004992598769736 0.8601758694272993 -0.4999973724122661 0.1004992598769736 -0.8601758694272993 -0.9396912244112444 0.03969080372930595 -0.3397131773479175 0.4999924063535025 0.100500966161157 -0.8601785566901258 -0.4999924063535025 -0.100500966161157 0.8601785566901258 0.5000055265544119 0.1005000820859015 -0.8601710335251777 -0.5000055265544119 -0.1005000820859015 0.8601710335251777 1.351536742928827e-005 0.9932451346926782 0.1160349181352688 -1.351536742928827e-005 -0.9932451346926782 -0.1160349181352688 4.268433620980341e-005 0.9932483331576502 0.1160075293142519 -4.268433620980341e-005 -0.9932483331576502 -0.1160075293142519 0.9396938380138644 0.03969024141156683 -0.3397060133931466 0.9396891726750086 -0.03969085591167384 0.3397188465692719 -0.9396891726750086 0.03969085591167384 -0.3397188465692719 -0.9396938380138644 -0.03969024141156683 0.3397060133931466 0.9396930255132888 0.03969063850974941 -0.339708214525893 -0.9396930255132888 -0.03969063850974941 0.339708214525893</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"76\" source=\"#ID1400\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1398\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1396\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1397\"/>\r\n                </vertices>\r\n                <triangles count=\"72\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1398\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 6 8 16 17 9 11 6 18 7 10 19 11 20 21 22 23 24 25 0 12 26 27 13 5 20 28 21 24 29 25 1 30 14 15 31 4 32 6 16 17 11 33 34 18 6 11 19 35 22 21 36 37 24 23 26 12 38 39 13 27 28 40 21 24 41 29 14 30 42 43 31 15 44 6 32 33 11 45 26 38 46 47 39 27 42 30 48 49 31 43 50 34 6 11 35 51 21 52 36 37 53 24 40 54 21 24 55 41 56 6 44 45 11 57 58 46 59 60 47 61 46 38 59 60 39 47 42 48 62 63 49 43 62 48 64 65 49 63 56 50 6 11 51 57 21 66 52 53 67 24 54 68 21 24 69 55 70 58 71 72 61 73 58 59 71 72 60 61 64 74 62 63 75 65 64 70 74 75 73 65 21 68 66 67 69 24 70 71 74 75 72 73</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1401\">\r\n            <mesh>\r\n                <source id=\"ID1402\">\r\n                    <float_array count=\"180\" id=\"ID1405\">-0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8554512858390808 0.2614400088787079</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1405\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1403\">\r\n                    <float_array count=\"180\" id=\"ID1406\">0 -0.4786973748340194 -0.877979967497561 0 -0.4786973748340194 -0.877979967497561 0 -0.4786973748340194 -0.877979967497561 -0 0.4786973748340194 0.877979967497561 -0 0.4786973748340194 0.877979967497561 -0 0.4786973748340194 0.877979967497561 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 0 -0.9968021350235882 0.07990934621442103 0 -0.9968021350235882 0.07990934621442103 0 -0.9968021350235882 0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 1 0 0 -1 -0 -0 0 -0.9968021350235882 0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.9968010375962467 -0.07992303452100592 0 0.9968010375962467 -0.07992303452100592 0 0.9968010375962467 -0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 0 0.4786932702954678 0.877982205385639 0 0.4786932702954678 0.877982205385639 0 0.4786932702954678 0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -1 0 0 1 -0 -0 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1406\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1404\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1402\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1403\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1404\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 25 32 26 27 33 28 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 34 36 37 39 53 54 55 56 57 58 59</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1407\">\r\n            <mesh>\r\n                <source id=\"ID1408\">\r\n                    <float_array count=\"132\" id=\"ID1411\">0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.6798586249351502 0.2174845784902573 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.8228713870048523 0.2210390418767929 0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.1889988780021668 0.6943401694297791 0.2454363852739334 -0.1889988780021668 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.02375267259776592 0.8228713870048523 0.2210390418767929 0.02375267259776592 0.8228713870048523 0.2210390418767929 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.6798586249351502 0.2174845784902573 0.02375267259776592 0.8228713870048523 0.2210390418767929 0.02375267259776592 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.6943401694297791 0.2454363852739334 -0.1889988780021668 0.6943401694297791 0.2454363852739334</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"44\" source=\"#ID1411\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1409\">\r\n                    <float_array count=\"132\" id=\"ID1412\">0.001387337141682634 -0.2220524090996359 -0.9750337444974421 0.001387337141682634 -0.2220524090996359 -0.9750337444974421 0.001387337141682634 -0.2220524090996359 -0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 0.5871770811767491 0.1797423846289223 0.7892501191058904 0.3330322933170721 0.1873578318890383 0.9241139185391649 0.644964467798049 0.1429182379491617 0.7507297866339702 -0.644964467798049 -0.1429182379491617 -0.7507297866339702 -0.3330322933170721 -0.1873578318890383 -0.9241139185391649 -0.5871770811767491 -0.1797423846289223 -0.7892501191058904 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 3.614714750383517e-005 0.9997049233532446 -0.02429125185467766 6.972200714376944e-006 0.9996998649392079 -0.02449857122197072 3.414267295072655e-005 0.9997045772159082 -0.02430549583613239 -3.414267295072655e-005 -0.9997045772159082 0.02430549583613239 -6.972200714376944e-006 -0.9996998649392079 0.02449857122197072 -3.614714750383517e-005 -0.9997049233532446 0.02429125185467766 -1.667872850933478e-017 -0.8849633272774763 0.4656607234607388 -0.0001258651819107453 -0.8854385084749843 0.4647565296663953 -0.0006245036285647431 -0.8873118148838094 0.4611695492579906 0.0006245036285647431 0.8873118148838094 -0.4611695492579906 0.0001258651819107453 0.8854385084749843 -0.4647565296663953 1.667872850933478e-017 0.8849633272774763 -0.4656607234607388 0.3689954470602589 0.1683477590433835 0.9140576524890925 -0.3689954470602589 -0.1683477590433835 -0.9140576524890925 -0.0006556404756979402 -0.8874283031096446 0.4609453080089909 0.0006556404756979402 0.8874283031096446 -0.4609453080089909 -0.5324369513931456 0.1663152504389824 0.829969957445805 -0.5742615086464369 0.1817890206747265 0.7982333441101306 -0.3017067920176465 0.1897741692638221 0.9343226296791952 0.3017067920176465 -0.1897741692638221 -0.9343226296791952 0.5742615086464369 -0.1817890206747265 -0.7982333441101306 0.5324369513931456 -0.1663152504389824 -0.829969957445805 6.960335564674304e-019 0.9996986495932743 -0.02454811604551317 -6.960335564674304e-019 -0.9996986495932743 0.02454811604551317 -0.2795365000399969 0.1790523481666212 0.9432918963721716 0.2795365000399969 -0.1790523481666212 -0.9432918963721716</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"44\" source=\"#ID1412\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1410\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1408\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1409\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1410\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 7 30 8 9 31 10 25 32 26 27 33 28 34 35 36 37 38 39 20 19 40 41 22 21 7 42 30 31 43 10 42 34 36 37 39 43 42 36 30 31 37 43</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1413\">\r\n            <mesh>\r\n                <source id=\"ID1414\">\r\n                    <float_array count=\"168\" id=\"ID1417\">0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.01764903031289578 0.6965709924697876 0.2436218112707138 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.0158530380576849 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.7263770699501038 0.3404266238212585</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"56\" source=\"#ID1417\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1415\">\r\n                    <float_array count=\"168\" id=\"ID1418\">-9.169722976373865e-018 -0.1821198965755864 -0.983276331084654 -0.005848219727591161 -0.1918366380413361 -0.9814094469848022 -0.003043484746153533 -0.1871796094987132 -0.9823209918293049 0.003043484746153533 0.1871796094987132 0.9823209918293049 0.005848219727591161 0.1918366380413361 0.9814094469848022 9.169722976373865e-018 0.1821198965755864 0.983276331084654 0.9814788691163255 0.04935029315769431 0.1851047758524577 0.9843960977963142 0.03227702870119385 0.1729812592786051 0.9845849359046324 0.03107424619155901 0.1721246502198257 -0.9845849359046324 -0.03107424619155901 -0.1721246502198257 -0.9843960977963142 -0.03227702870119385 -0.1729812592786051 -0.9814788691163255 -0.04935029315769431 -0.1851047758524577 -0.008858386551980338 -0.1968286115952417 -0.9803978920036421 0.008858386551980338 0.1968286115952417 0.9803978920036421 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 1.572333825322655e-017 -0.9557235430893282 0.2942660517028448 0.0006579533516455556 -0.9553377050857177 0.2955155433119237 0.001385184622082391 -0.9549088580608247 0.2968958640003838 -0.001385184622082391 0.9549088580608247 -0.2968958640003838 -0.0006579533516455556 0.9553377050857177 -0.2955155433119237 -1.572333825322655e-017 0.9557235430893282 -0.2942660517028448 0.9873699300492289 0.01134341927737611 0.1580251501302195 -0.9873699300492289 -0.01134341927737611 -0.1580251501302195 0.001969717348993657 -0.954562346254986 0.2980047773538896 -0.001969717348993657 0.954562346254986 -0.2980047773538896 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.9968014312424773 -0.07991812480876104 0 0.9968014312424773 -0.07991812480876104 0 0.9968014312424773 -0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 0 0.1862758884093816 0.9824974775526376 0 0.1862758884093816 0.9824974775526376 0 0.1862758884093816 0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -1 0 0 1 -0 -0 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"56\" source=\"#ID1418\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1416\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1414\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1415\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1416\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 8 7 26 27 10 9 21 28 22 23 29 24 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 30 32 33 35 49 50 51 52 53 54 55</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1419\">\r\n            <mesh>\r\n                <source id=\"ID1420\">\r\n                    <float_array count=\"156\" id=\"ID1423\">0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.2837311029434204 1.419497728347778 -0.1022137701511383 0.2837311029434204 1.419497728347778 -0.1022137701511383 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1487234085798264 1.461263656616211 -0.04204044118523598 0.1487234085798264 1.461263656616211 -0.04204044118523598 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.2972021996974945 1.449135422706604 -0.1123467683792114 0.2972021996974945 1.449135422706604 -0.1123467683792114 0.3032180666923523 1.409106135368347 -0.07835546880960465 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.3032180666923523 1.409106135368347 -0.07835546880960465 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.316688597202301 1.438741087913513 -0.08848993480205536 0.316688597202301 1.438741087913513 -0.08848993480205536 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"52\" source=\"#ID1423\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1421\">\r\n                    <float_array count=\"156\" id=\"ID1424\">-0.2117507404386459 0.321455254932216 -0.9229453629550066 -0.2600110696684296 0.01043847675148996 -0.9655492125484789 0.007326895033529043 -0.6541949177868747 -0.756290503808551 -0.007326895033529043 0.6541949177868747 0.756290503808551 0.2600110696684296 -0.01043847675148996 0.9655492125484789 0.2117507404386459 -0.321455254932216 0.9229453629550066 -0.5340335661942859 0.5457193397975845 0.6457542507399403 -0.8707103579114028 0.4699527830000934 0.1449408651011291 -0.7822641140321018 0.4093452656265391 0.4695735399345974 0.7822641140321018 -0.4093452656265391 -0.4695735399345974 0.8707103579114028 -0.4699527830000934 -0.1449408651011291 0.5340335661942859 -0.5457193397975845 -0.6457542507399403 0.1465548072432481 0.04878246053037574 -0.9879989676201573 -0.1465548072432481 -0.04878246053037574 0.9879989676201573 0.3202308478076849 -0.9465922625117664 -0.03762037566567392 -0.1790162912968978 -0.9771273884804481 -0.1147834227215927 0.1790162912968978 0.9771273884804481 0.1147834227215927 -0.3202308478076849 0.9465922625117664 0.03762037566567392 -0.9573953783632936 0.2484317593297414 0.1472268672659153 0.9573953783632936 -0.2484317593297414 -0.1472268672659153 -0.6678373175942008 0.2933145627367843 0.6840759347580586 0.6678373175942008 -0.2933145627367843 -0.6840759347580586 0.5620522173348252 -0.4846545636370911 -0.6702292584890242 -0.5620522173348252 0.4846545636370911 0.6702292584890242 -0.1052168161437504 0.6907663114035757 -0.715381943181732 0.1052168161437504 -0.6907663114035757 0.715381943181732 -0.0793312004268637 -0.9684364386380066 0.2362994391803917 0.0793312004268637 0.9684364386380066 -0.2362994391803917 -0.8727059715511012 0.2560767326326131 0.4157030120449623 0.8727059715511012 -0.2560767326326131 -0.4157030120449623 -0.8484371084385745 0.2185231540830602 0.482081014098234 0.8484371084385745 -0.2185231540830602 -0.482081014098234 0.5620589706866968 -0.4846631741876052 -0.6702173685133847 -0.5620589706866968 0.4846631741876052 0.6702173685133847 -0.1052741459759133 0.6906784752780507 -0.7154583132346911 0.1052741459759133 -0.6906784752780507 0.7154583132346911 0.5620476210655032 -0.4846406454961437 -0.6702431770541867 -0.5620476210655032 0.4846406454961437 0.6702431770541867 0.2437385669028079 -0.08741448486360912 0.9658934821398245 -0.2437385669028079 0.08741448486360912 -0.9658934821398245 0.2162155226341925 0.8876420744044321 0.406623161562422 0.1694938574646845 0.9428451667909947 0.2869056007480554 0.2541860079556013 0.660310801664626 0.7066676153359613 -0.2541860079556013 -0.660310801664626 -0.7066676153359613 -0.1694938574646845 -0.9428451667909947 -0.2869056007480554 -0.2162155226341925 -0.8876420744044321 -0.406623161562422 0.2050441197686757 -0.270224688595742 0.9407101182732243 -0.2050441197686757 0.270224688595742 -0.9407101182732243 0.5620695889105933 -0.4846418345315089 -0.6702238950110704 -0.5620695889105933 0.4846418345315089 0.6702238950110704 0.2529610287947978 0.6542028453927553 0.7127617799735758 -0.2529610287947978 -0.6542028453927553 -0.7127617799735758</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"52\" source=\"#ID1424\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1422\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1420\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1421\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1422\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 8 7 18 19 10 9 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 28 8 18 19 9 29 30 20 8 9 21 31 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 40 41 42 43 44 45 26 46 38 39 47 27 32 22 48 49 23 33 22 36 48 49 37 23 46 42 50 51 43 47 41 50 42 43 51 44 38 46 50 51 47 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1425\">\r\n            <mesh>\r\n                <source id=\"ID1426\">\r\n                    <float_array count=\"144\" id=\"ID1429\">0.1553212702274323 1.314650535583496 -0.05614136904478073 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3060109317302704 1.261957168579102 -0.09241525828838348 0.3060109317302704 1.261957168579102 -0.09241525828838348 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1553212702274323 1.314650535583496 -0.05614136904478073 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1456548571586609 1.300154447555542 -0.03195736929774284 0.1456548571586609 1.300154447555542 -0.03195736929774284 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3194818496704102 1.291594505310059 -0.1025481522083283 0.3194818496704102 1.291594505310059 -0.1025481522083283 0.3254974186420441 1.251564621925354 -0.06855690479278565 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3254974186420441 1.251564621925354 -0.06855690479278565 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.3389680683612824 1.281198859214783 -0.07869188487529755 0.3389680683612824 1.281198859214783 -0.07869188487529755 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID1429\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1427\">\r\n                    <float_array count=\"144\" id=\"ID1430\">-0.5270872587659297 0.4829598615392093 -0.6992344340696084 -0.2373091719483964 -0.009947946585583324 -0.97138323810322 0.0302289803388917 -0.6523592771410928 -0.7573067953449394 -0.0302289803388917 0.6523592771410928 0.7573067953449394 0.2373091719483964 0.009947946585583324 0.97138323810322 0.5270872587659297 -0.4829598615392093 0.6992344340696084 -0.5821281597074549 0.5128590065675404 0.6309535997663915 -0.7838480433492671 0.4685158370778919 0.4075231960818029 0.7838480433492671 -0.4685158370778919 -0.4075231960818029 0.5821281597074549 -0.5128590065675404 -0.6309535997663915 0.1563350658793139 0.05170904550473698 -0.9863495941041895 -0.1563350658793139 -0.05170904550473698 0.9863495941041895 0.3285388353453203 -0.9437967567357263 -0.03619275680388343 -0.1506281647881631 -0.9803261545184075 -0.1275609138400202 0.1506281647881631 0.9803261545184075 0.1275609138400202 -0.3285388353453203 0.9437967567357263 0.03619275680388343 -0.6094776194613598 0.704008224981229 -0.3645674841980472 0.6094776194613598 -0.704008224981229 0.3645674841980472 -0.8193965941596137 0.04187406713262325 0.5716955343374633 0.8193965941596137 -0.04187406713262325 -0.5716955343374633 0.5620468045841043 -0.4846723610466129 -0.6702209276755684 -0.5620468045841043 0.4846723610466129 0.6702209276755684 -0.04262652272856061 -0.9574414427167757 0.2854625427766147 0.04262652272856061 0.9574414427167757 -0.2854625427766147 -0.8189515769899407 0.46942592209402 0.3300872887765723 0.8189515769899407 -0.46942592209402 -0.3300872887765723 -0.943859419131144 0.09540917204895222 0.3162696425620914 0.943859419131144 -0.09540917204895222 -0.3162696425620914 0.5620475949657969 -0.4846744725247572 -0.6702187379326335 -0.5620475949657969 0.4846744725247572 0.6702187379326335 -0.1052551056785802 0.6906696782463675 -0.7154696068175436 0.1052551056785802 -0.6906696782463675 0.7154696068175436 0.5620622113175559 -0.4846776506083926 -0.6702041820292888 -0.5620622113175559 0.4846776506083926 0.6702041820292888 0.2169583513266659 -0.05765775487784369 0.9744766067443905 -0.2169583513266659 0.05765775487784369 -0.9744766067443905 0.2033241252333373 0.8550932664263433 0.4769431892903231 0.1441081999331713 0.9399395443921297 0.3094292804502138 0.232953018600208 0.5645718045526801 0.7918279918196762 -0.232953018600208 -0.5645718045526801 -0.7918279918196762 -0.1441081999331713 -0.9399395443921297 -0.3094292804502138 -0.2033241252333373 -0.8550932664263433 -0.4769431892903231 0.189215187049918 -0.2702283709857141 0.9440202542869892 -0.189215187049918 0.2702283709857141 -0.9440202542869892 0.5620737986969204 -0.484671044609835 -0.6701992415209267 -0.5620737986969204 0.484671044609835 0.6701992415209267 0.2152998076267679 0.6552577786690892 0.7240740544512888 -0.2152998076267679 -0.6552577786690892 -0.7240740544512888</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID1430\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1428\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1426\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1427\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1428\"/>\r\n                    <p>0 1 2 3 4 5 6 0 7 8 5 9 0 2 10 11 3 5 12 2 13 14 3 15 7 0 16 17 5 8 6 7 18 19 8 9 10 2 20 21 3 11 16 0 10 11 5 17 2 12 20 21 15 3 12 13 22 23 14 15 24 7 16 17 8 25 26 18 7 8 19 27 10 20 28 29 21 11 16 10 30 31 11 17 20 12 32 33 15 21 12 22 34 35 23 15 26 7 24 25 8 27 36 37 38 39 40 41 22 42 34 35 43 23 28 20 44 45 21 29 20 32 44 45 33 21 42 38 46 47 39 43 37 46 38 39 47 40 34 42 46 47 43 35</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1431\">\r\n            <mesh>\r\n                <source id=\"ID1432\">\r\n                    <float_array count=\"138\" id=\"ID1435\">0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.3287272155284882 1.101558089256287 -0.07955601811408997 0.3287272155284882 1.101558089256287 -0.07955601811408997 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.1151409223675728 1.132263422012329 -0.01849719509482384 0.1151409223675728 1.132263422012329 -0.01849719509482384 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.342198371887207 1.131192564964294 -0.08968864381313324 0.342198371887207 1.131192564964294 -0.08968864381313324 0.3482146561145783 1.091163873672485 -0.05569736659526825 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.3482146561145783 1.091163873672485 -0.05569736659526825 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.105472669005394 1.10316526889801 -0.008405376225709915 0.105472669005394 1.10316526889801 -0.008405376225709915 0.3616852462291718 1.12079918384552 -0.06583249568939209 0.3616852462291718 1.12079918384552 -0.06583249568939209 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.105472669005394 1.10316526889801 -0.008405376225709915 0.105472669005394 1.10316526889801 -0.008405376225709915 0.1518978178501129 1.152041435241699 -0.004814382642507553 0.1518978178501129 1.152041435241699 -0.004814382642507553 0.1460323482751846 1.123474359512329 0.005232919007539749 0.1460323482751846 1.123474359512329 0.005232919007539749 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"46\" source=\"#ID1435\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1433\">\r\n                    <float_array count=\"138\" id=\"ID1436\">-0.1526069341708608 0.2014247147177761 -0.9675428713725471 -0.154409281518514 0.06995639787526577 -0.9855272072232476 0.09500311225222836 -0.6364217107878273 -0.7654683629649796 -0.09500311225222836 0.6364217107878273 0.7654683629649796 0.154409281518514 -0.06995639787526577 0.9855272072232476 0.1526069341708608 -0.2014247147177761 0.9675428713725471 -0.2900583322876976 0.6155294324973895 0.7327957980228336 -0.4305008441564028 0.7745127584729289 0.4634641411622686 -0.4376760788393953 0.6090235893184742 0.6614604430088121 0.4376760788393953 -0.6090235893184742 -0.6614604430088121 0.4305008441564028 -0.7745127584729289 -0.4634641411622686 0.2900583322876976 -0.6155294324973895 -0.7327957980228336 0.177896048170807 0.05895478953893228 -0.9822816952563201 -0.177896048170807 -0.05895478953893228 0.9822816952563201 0.3543751582787857 -0.934605232097684 -0.03051732836471479 -0.04369649900807408 -0.9987996309860718 -0.02213398103650087 0.04369649900807408 0.9987996309860718 0.02213398103650087 -0.3543751582787857 0.934605232097684 0.03051732836471479 -0.2117804347327577 0.8531466670474889 0.4767492128679035 0.2117804347327577 -0.8531466670474889 -0.4767492128679035 -0.3287200085374632 0.4051046469262522 0.8531315144957938 0.3287200085374632 -0.4051046469262522 -0.8531315144957938 0.5620632890462979 -0.4846637448481013 -0.6702133343468127 -0.5620632890462979 0.4846637448481013 0.6702133343468127 -0.1052500340877712 0.6906722531251714 -0.7154678672641575 0.1052500340877712 -0.6906722531251714 0.7154678672641575 -0.008154407886818508 -0.97842746915962 0.2064296326255428 0.008154407886818508 0.97842746915962 -0.2064296326255428 -0.1491645848139461 0.6469968928687555 0.7477599529631548 0.1491645848139461 -0.6469968928687555 -0.7477599529631548 -0.1013988600854753 -0.1025717765919676 0.9895439868040904 0.1013988600854753 0.1025717765919676 -0.9895439868040904 0.5620712952768785 -0.4846411792026707 -0.6702229378697933 -0.5620712952768785 0.4846411792026707 0.6702229378697933 -0.1052822686682469 0.6906021664222173 -0.7155307761634067 0.1052822686682469 -0.6906021664222173 0.7155307761634067 0.562089467608081 -0.484678935656285 -0.6701803934278854 -0.562089467608081 0.484678935656285 0.6701803934278854 0.1948791177058165 -0.03431924276733405 0.9802266671837078 -0.1948791177058165 0.03431924276733405 -0.9802266671837078 0.1115421042893579 0.9377788356412317 0.3288300691756725 -0.1115421042893579 -0.9377788356412317 -0.3288300691756725 0.5620918735784156 -0.4846569278382608 -0.6701942911988175 -0.5620918735784156 0.4846569278382608 0.6701942911988175 0.1788184282318766 0.6574281446431123 0.7319919428216382 -0.1788184282318766 -0.6574281446431123 -0.7319919428216382</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"46\" source=\"#ID1436\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1434\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1432\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1433\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1434\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 7 18 8 9 19 10 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 8 18 28 29 19 9 20 8 30 31 9 21 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 18 40 28 29 41 19 26 30 38 39 31 27 32 22 42 43 23 33 22 36 42 43 37 23 30 28 44 45 29 31 40 44 28 29 45 41 38 30 44 45 31 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1437\">\r\n            <mesh>\r\n                <source id=\"ID1438\">\r\n                    <float_array count=\"162\" id=\"ID1441\">0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.2623249590396881 1.570870399475098 -0.1115184426307678 0.2623249590396881 1.570870399475098 -0.1115184426307678 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1539330631494522 1.616379618644714 -0.05164474248886108 0.1539330631494522 1.616379618644714 -0.05164474248886108 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.275795191526413 1.600508689880371 -0.1216493099927902 0.275795191526413 1.600508689880371 -0.1216493099927902 0.2818127274513245 1.560474872589111 -0.08765904605388641 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.2818127274513245 1.560474872589111 -0.08765904605388641 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.2952823638916016 1.590112090110779 -0.09779312461614609 0.2952823638916016 1.590112090110779 -0.09779312461614609 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.160272628068924 1.631876587867737 -0.03761931881308556 0.160272628068924 1.631876587867737 -0.03761931881308556 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.160272628068924 1.631876587867737 -0.03761931881308556 0.160272628068924 1.631876587867737 -0.03761931881308556 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"54\" source=\"#ID1441\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1439\">\r\n                    <float_array count=\"162\" id=\"ID1442\">-0.2612649648831572 0.2154767763815477 -0.9409093351459635 -0.3120238526800682 -0.07529301042391109 -0.9470860984831274 -0.01732523752695652 -0.6643846957284765 -0.7471899438739886 0.01732523752695652 0.6643846957284765 0.7471899438739886 0.3120238526800682 0.07529301042391109 0.9470860984831274 0.2612649648831572 -0.2154767763815477 0.9409093351459635 -0.5116776227184808 0.4929719940946034 0.7036793470378068 -0.61982026767674 0.4991510477646793 0.6055337045058326 -0.8170728539503203 0.3730756256143977 0.439552646346151 0.8170728539503203 -0.3730756256143977 -0.439552646346151 0.61982026767674 -0.4991510477646793 -0.6055337045058326 0.5116776227184808 -0.4929719940946034 -0.7036793470378068 0.1410729471083749 0.04728219640286073 -0.9888694643366631 -0.1410729471083749 -0.04728219640286073 0.9888694643366631 0.3067464724749431 -0.9509680058590948 -0.03957844686891629 -0.222264189367348 -0.9710011656212904 -0.08806455863155831 0.222264189367348 0.9710011656212904 0.08806455863155831 -0.3067464724749431 0.9509680058590948 0.03957844686891629 -0.8461142536324233 0.3228838989908336 0.4240715241236134 0.8461142536324233 -0.3228838989908336 -0.4240715241236134 -0.7522535916241838 0.3506204932206724 0.5578349250649412 0.7522535916241838 -0.3506204932206724 -0.5578349250649412 0.5620416863427057 -0.4846401836812222 -0.6702484876331157 -0.5620416863427057 0.4846401836812222 0.6702484876331157 -0.1052279702985872 0.6907230101808186 -0.7154221113954954 0.1052279702985872 -0.6907230101808186 0.7154221113954954 -0.08911847962830034 -0.9484448676391016 0.3041549434709021 0.08911847962830034 0.9484448676391016 -0.3041549434709021 -0.9555879694916472 0.2506915569620883 0.1549366832959687 0.9555879694916472 -0.2506915569620883 -0.1549366832959687 -0.9556014649654541 0.2506460825295659 0.1549270198140411 0.9556014649654541 -0.2506460825295659 -0.1549270198140411 0.5620181180033185 -0.4846701760122687 -0.6702465632289694 -0.5620181180033185 0.4846701760122687 0.6702465632289694 -0.1052660889666847 0.6906765086185261 -0.7154613972508797 0.1052660889666847 -0.6906765086185261 0.7154613972508797 0.5620558193373243 -0.4846561231327442 -0.6702251101376221 -0.5620558193373243 0.4846561231327442 0.6702251101376221 0.2614239168632214 -0.107974508427586 0.9591658048646816 -0.2614239168632214 0.107974508427586 -0.9591658048646816 0.2835840095916742 0.8451598330638175 0.4530838400113706 0.2044205305712835 0.9410969837991859 0.2693486843573391 0.3059738327077238 0.5779843669752629 0.7565144316074548 -0.3059738327077238 -0.5779843669752629 -0.7565144316074548 -0.2044205305712835 -0.9410969837991859 -0.2693486843573391 -0.2835840095916742 -0.8451598330638175 -0.4530838400113706 0.2225006061998179 -0.2761711370454932 0.9349989215521658 -0.2225006061998179 0.2761711370454932 -0.9349989215521658 0.562042227331252 -0.4846734199866424 -0.6702240003573262 -0.562042227331252 0.4846734199866424 0.6702240003573262 0.5620425693420601 -0.4846750527563176 -0.6702225328076016 -0.5620425693420601 0.4846750527563176 0.6702225328076016 0.2889663716664621 0.6493798714439022 0.7034232144373833 -0.2889663716664621 -0.6493798714439022 -0.7034232144373833</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"54\" source=\"#ID1442\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1440\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1438\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1439\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1440\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 8 7 18 19 10 9 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 28 8 18 19 9 29 30 20 8 9 21 31 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 40 41 42 43 44 45 26 46 38 39 47 27 32 22 48 49 23 33 22 36 50 51 37 23 46 42 52 53 43 47 41 52 42 43 53 44 38 46 52 53 47 39</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1443\">\r\n            <mesh>\r\n                <source id=\"ID1444\">\r\n                    <float_array count=\"210\" id=\"ID1447\">0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3140751421451569 1.607973217964172 -0.1055402606725693 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3140751421451569 1.607973217964172 -0.1055402606725693 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.339216023683548 1.609411358833313 -0.1320241838693619 0.339216023683548 1.609411358833313 -0.1320241838693619 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4216348826885223 0.8485112190246582 -0.04465353116393089 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4216348826885223 0.8485112190246582 -0.04465353116393089 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.339216023683548 1.609411358833313 -0.1320241838693619 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.339216023683548 1.609411358833313 -0.1320241838693619 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2889344394207001 1.602334499359131 -0.131456732749939 0.2889344394207001 1.602334499359131 -0.131456732749939 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2889344394207001 1.602334499359131 -0.131456732749939 0.2889344394207001 1.602334499359131 -0.131456732749939 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"70\" source=\"#ID1447\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1445\">\r\n                    <float_array count=\"210\" id=\"ID1448\">0.7121836708119679 0.1557404146299578 0.6844993369461211 0.3868375999335935 0.1280001794504949 0.9132210166976327 0.7121878203325724 0.1557409396922177 0.6844949001079004 -0.7121878203325724 -0.1557409396922177 -0.6844949001079004 -0.3868375999335935 -0.1280001794504949 -0.9132210166976327 -0.7121836708119679 -0.1557404146299578 -0.6844993369461211 -0.1397991539385844 0.9870137805752409 -0.07912012078242896 -0.1397854057744817 0.9870158887178813 -0.07911811266021804 -0.1397921558860157 0.9870139522999297 -0.07913034258747995 0.1397921558860157 -0.9870139522999297 0.07913034258747995 0.1397854057744817 -0.9870158887178813 0.07911811266021804 0.1397991539385844 -0.9870137805752409 0.07912012078242896 0.7121835415319054 0.1557403982713827 0.6844994751768214 0.3868305965648333 0.1279992383157068 0.9132241151830661 -0.3868305965648333 -0.1279992383157068 -0.9132241151830661 -0.7121835415319054 -0.1557403982713827 -0.6844994751768214 0.3868164037145685 -0.0191313024773292 -0.9219582762158214 0.7121601037797707 0.0446929504145383 -0.7005929822426357 0.7121674042622895 0.04469407932465986 -0.7005854891300802 -0.7121674042622895 -0.04469407932465986 0.7005854891300802 -0.7121601037797707 -0.0446929504145383 0.7005929822426357 -0.3868164037145685 0.0191313024773292 0.9219582762158214 -0.1397999796143324 0.9870142551838378 -0.07911274084321916 0.1397999796143324 -0.9870142551838378 0.07911274084321916 -0.1397936820510165 0.9870155914581198 -0.07910719737923563 0.1397936820510165 -0.9870155914581198 0.07910719737923563 0.1398000093145633 -0.9870133953731055 0.07912341467417676 0.1397920699189058 -0.9870142472339551 0.07912681558723841 0.1397945789315667 -0.9870143200804079 0.07912147406081613 -0.1397945789315667 0.9870143200804079 -0.07912147406081613 -0.1397920699189058 0.9870142472339551 -0.07912681558723841 -0.1398000093145633 0.9870133953731055 -0.07912341467417676 -0.3868504373152667 0.01912515861491171 0.9219441238258104 0.3868504373152667 -0.01912515861491171 -0.9219441238258104 0.139796916829866 -0.9870134878570978 0.07912772480635578 -0.139796916829866 0.9870134878570978 -0.07912772480635578 0.3868216047912728 -0.01913054427063408 -0.9219561097702068 0.7121676317021652 0.04469411449494164 -0.7005852556864456 -0.7121676317021652 -0.04469411449494164 0.7005852556864456 -0.3868216047912728 0.01913054427063408 0.9219561097702068 -0.139797317906358 0.9870138655822434 -0.07912230440644323 0.139797317906358 -0.9870138655822434 0.07912230440644323 -0.1398015061678415 0.9870126308571869 -0.07913030646710245 0.1398015061678415 -0.9870126308571869 0.07913030646710245 0.1397897769542053 -0.987013750024252 0.07913706794010708 -0.1397897769542053 0.987013750024252 -0.07913706794010708 -0.3868511661520297 0.01912511454953269 0.9219438189175532 0.3868511661520297 -0.01912511454953269 -0.9219438189175532 0.1397921147097734 -0.9870147120373068 0.07912093835946439 -0.1397921147097734 0.9870147120373068 -0.07912093835946439 -0.3868356486941172 -0.1280000544911218 -0.9132218607488934 0.3868356486941172 0.1280000544911218 0.9132218607488934 -0.7122127191321335 -0.0447050027962357 0.7005387251475835 0.7122127191321335 0.0447050027962357 -0.7005387251475835 -0.3868353003950386 -0.1279997158045518 -0.9132220557576531 0.3868353003950386 0.1279997158045518 0.9132220557576531 0.1397926979644894 -0.9870138933571084 0.07913012015567621 -0.1397926979644894 0.9870138933571084 -0.07913012015567621 0.1397926979655048 -0.9870146754240228 0.07912036459178133 -0.1397926979655048 0.9870146754240228 -0.07912036459178133 -0.7121911290598167 -0.1557408636965086 -0.6844914747924689 -0.7121862825202999 -0.1557409163686991 -0.6844965054392562 0.7121862825202999 0.1557409163686991 0.6844965054392562 0.7121911290598167 0.1557408636965086 0.6844914747924689 -0.7122094375937212 -0.04470403383812917 0.7005421231882025 -0.7122126199852392 -0.04470497352052413 0.7005388278149118 0.7122126199852392 0.04470497352052413 -0.7005388278149118 0.7122094375937212 0.04470403383812917 -0.7005421231882025 -0.7121861315320546 -0.1557409180095111 -0.6844966621620312 0.7121861315320546 0.1557409180095111 0.6844966621620312</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"70\" source=\"#ID1448\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1446\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1444\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1445\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1446\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 1 4 14 15 16 17 18 19 20 21 6 8 22 23 9 11 24 7 6 11 10 25 26 27 28 29 30 31 32 1 13 14 4 33 26 34 27 30 35 31 36 16 37 38 21 39 40 6 22 23 11 41 42 24 6 11 25 43 28 27 44 45 30 29 46 32 13 14 33 47 34 48 27 30 49 35 36 50 16 21 51 39 42 6 40 41 11 43 46 52 32 33 53 47 36 54 50 51 55 39 27 56 44 45 57 30 27 58 56 57 59 30 60 61 54 55 62 63 46 64 65 66 67 47 68 50 54 55 51 69</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1449\">\r\n            <mesh>\r\n                <source id=\"ID1450\">\r\n                    <float_array count=\"228\" id=\"ID1453\">0.4633594453334808 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.988379180431366 0.1358994990587235 0.4633594453334808 0.988379180431366 0.1358994990587235 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 1.00645387172699 0.1104805320501328 0.3092793822288513 1.00645387172699 0.1104805320501328 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.988379180431366 0.1358994990587235 0.3092793822288513 0.988379180431366 0.1358994990587235 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.3092793822288513 1.00645387172699 0.1104805320501328 0.3092793822288513 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.018564820289612 0.1280457824468613 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 1.016549944877625 0.1492861360311508 0.3092793822288513 1.016549944877625 0.1492861360311508 0.4633594453334808 1.001353979110718 0.1642626523971558 0.4633594453334808 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 1.016549944877625 0.1492861360311508 0.3092793822288513 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.4633594453334808 1.001353979110718 0.1642626523971558 0.4633594453334808 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 1.001353979110718 0.1642626523971558</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"76\" source=\"#ID1453\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1451\">\r\n                    <float_array count=\"228\" id=\"ID1454\">-1.776339763670333e-019 -0.07991900300950217 -0.9968013608327225 -2.027870309745611e-018 -0.07991900300950217 -0.9968013608327225 0 -0.7019467038801081 -0.7122294748968564 -0 0.7019467038801081 0.7122294748968564 2.027870309745611e-018 0.07991900300950217 0.9968013608327225 1.776339763670333e-019 0.07991900300950217 0.9968013608327225 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.7019467038801081 -0.7122294748968564 -0 0.7019467038801081 0.7122294748968564 2.898738914260018e-018 0.5795037448550457 -0.8149695759345732 -2.898738914260018e-018 -0.5795037448550457 0.8149695759345732 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 -0.9955340971290169 -0.09440265596641433 -0 0.9955340971290169 0.09440265596641433 -1 0 0 1 -0 -0 4.748950731204071e-018 0.5795037448550459 -0.8149695759345731 -4.748950731204071e-018 -0.5795037448550459 0.8149695759345731 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 1.843061888750653e-018 -0.995534097129017 -0.09440265596641415 -1.843061888750653e-018 0.995534097129017 0.09440265596641415 -1 0 0 1 -0 -0 5.730896300542484e-018 0.9677823485561018 -0.2517882559279441 -5.730896300542484e-018 -0.9677823485561018 0.2517882559279441 1 0 0 -1 -0 -0 -4.62053728699901e-018 -0.8232985997773137 0.5676085055781978 4.62053728699901e-018 0.8232985997773137 -0.5676085055781978 4.835062976132084e-018 0.9677823485561018 -0.251788255927944 -4.835062976132084e-018 -0.9677823485561018 0.251788255927944 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -2.777492070114276e-018 -0.8232985997773136 0.567608505578198 -5.287825904614969e-018 -0.2658319714319039 0.964019378936247 5.287825904614969e-018 0.2658319714319039 -0.964019378936247 2.777492070114276e-018 0.8232985997773136 -0.567608505578198 8.958142244258213e-019 0.9032019239526054 0.4292158950555213 -8.958142244258213e-019 -0.9032019239526054 -0.4292158950555213 0 0.9032019239526051 0.4292158950555214 -0 -0.9032019239526051 -0.4292158950555214 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 -4.393083191022361e-018 -0.2658319714319036 0.9640193789362471 -4.044203278242868e-019 0.4160212955636348 0.9093548711243343 4.044203278242868e-019 -0.4160212955636348 -0.9093548711243343 4.393083191022361e-018 0.2658319714319036 -0.9640193789362471 4.903180125159446e-019 0.4160212955636352 0.9093548711243343 -4.903180125159446e-019 -0.4160212955636352 -0.9093548711243343</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"76\" source=\"#ID1454\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1452\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1450\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1451\"/>\r\n                </vertices>\r\n                <triangles count=\"72\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1452\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 30 14 0 5 15 31 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 22 28 40 41 29 23 14 30 42 43 31 15 32 44 8 9 45 33 26 38 46 47 39 27 42 30 48 49 31 43 8 50 34 35 51 9 52 36 22 23 37 53 54 22 40 41 23 55 8 44 56 57 45 9 46 58 59 60 61 47 46 38 58 61 39 47 42 48 62 63 49 43 62 48 64 65 49 63 8 56 50 51 57 9 66 52 22 23 53 67 68 22 54 55 23 69 59 70 71 72 73 60 58 70 59 60 73 61 74 62 64 65 63 75 71 74 64 65 75 72 66 22 68 69 23 67 70 74 71 72 75 73</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1455\">\r\n            <mesh>\r\n                <source id=\"ID1456\">\r\n                    <float_array count=\"888\" id=\"ID1460\">-0.001449317671358585 0.240059107542038 0.2575531899929047 -0.001449317671358585 0.1619613170623779 0.1178073287010193 -0.1529100686311722 0.240059107542038 0.2577010691165924 -0.1529100686311722 0.240059107542038 0.2577010691165924 -0.001449317671358585 0.1619613170623779 0.1178073287010193 -0.001449317671358585 0.240059107542038 0.2575531899929047 0.1500110626220703 0.240059107542038 0.2577010691165924 0.1500110626220703 0.240059107542038 0.2577010691165924 -0.1523515284061432 0.2470187544822693 0.3542184829711914 -0.1523515284061432 0.2470187544822693 0.3542184829711914 -0.1529100686311722 0.1619613170623779 0.1178135275840759 -0.1529100686311722 0.1619613170623779 0.1178135275840759 0.1500110626220703 0.1619613170623779 0.1178135275840759 0.1500110626220703 0.1619613170623779 0.1178135275840759 0.1494526416063309 0.2470187544822693 0.3542184829711914 0.1494526416063309 0.2470187544822693 0.3542184829711914 -0.001449317671358585 0.2470187544822693 0.3542184829711914 -0.001449317671358585 0.2470187544822693 0.3542184829711914 -0.1628827601671219 0.2536900639533997 0.3536399900913239 -0.1628827601671219 0.2536900639533997 0.3536399900913239 -0.1630400717258453 0.1643714010715485 0.1090982854366303 -0.1630400717258453 0.1643714010715485 0.1090982854366303 -0.001449317671358585 0.1496018767356873 0.01143438369035721 -0.001449317671358585 0.1496018767356873 0.01143438369035721 0.1601412743330002 0.1643714010715485 0.1090982854366303 0.1601412743330002 0.1643714010715485 0.1090982854366303 0.1599837839603424 0.2536900639533997 0.3536399900913239 0.1599837839603424 0.2536900639533997 0.3536399900913239 -0.001449264585971832 0.261539101600647 0.4428333342075348 -0.001449264585971832 0.261539101600647 0.4428333342075348 -0.1540883034467697 0.261539101600647 0.4380881488323212 -0.1540883034467697 0.261539101600647 0.4380881488323212 -0.1634102165699005 0.2467786967754364 0.2577041983604431 -0.1634102165699005 0.2467786967754364 0.2577041983604431 -0.09997250139713287 0.1520867645740509 -0.001049425452947617 -0.09997250139713287 0.1520867645740509 -0.001049425452947617 -0.09253218770027161 0.1496018767356873 0.01143438369035721 -0.09253218770027161 0.1496018767356873 0.01143438369035721 0.08963353931903839 0.1496018767356873 0.01143438369035721 0.08963353931903839 0.1496018767356873 0.01143438369035721 0.09707370400428772 0.1520867645740509 -0.001049425452947617 0.09707370400428772 0.1520867645740509 -0.001049425452947617 0.1605114936828613 0.2467786967754364 0.2577041983604431 0.1605114936828613 0.2467786967754364 0.2577041983604431 0.1511895954608917 0.261539101600647 0.4380881488323212 0.1511895954608917 0.261539101600647 0.4380881488323212 -0.163021519780159 0.2689068913459778 0.4383325576782227 -0.163021519780159 0.2689068913459778 0.4383325576782227 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1630400717258453 0.3184337615966797 0.1096392124891281 -0.1630400717258453 0.3184337615966797 0.1096392124891281 -0.1097900420427322 0.3173555135726929 -0.0002152398228645325 -0.1097900420427322 0.3173555135726929 -0.0002152398228645325 -0.001449317671358585 0.1354821473360062 -0.008116859942674637 -0.001449317671358585 0.1354821473360062 -0.008116859942674637 0.1068910136818886 0.3173555135726929 -0.0002152398228645325 0.1068910136818886 0.3173555135726929 -0.0002152398228645325 0.1601412743330002 0.3184337615966797 0.1096392124891281 0.1601412743330002 0.3184337615966797 0.1096392124891281 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1601225733757019 0.2689068913459778 0.4383325576782227 0.1601225733757019 0.2689068913459778 0.4383325576782227 -0.001449317671358585 0.2768021523952484 0.4565147459506989 -0.001449317671358585 0.2768021523952484 0.4565147459506989 -0.1456240266561508 0.2768021523952484 0.4514736533164978 -0.1456240266561508 0.2768021523952484 0.4514736533164978 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.09238605946302414 0.1354821473360062 -0.008116859942674637 -0.09238605946302414 0.1354821473360062 -0.008116859942674637 -0.1097748056054115 0.3184337615966797 -0.02075992710888386 -0.1097748056054115 0.3184337615966797 -0.02075992710888386 0.08948712050914764 0.1354821473360062 -0.008116859942674637 0.08948712050914764 0.1354821473360062 -0.008116859942674637 0.1068758368492127 0.3184337615966797 -0.02075992710888386 0.1068758368492127 0.3184337615966797 -0.02075992710888386 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1427254229784012 0.2768021523952484 0.4514736533164978 0.1427254229784012 0.2768021523952484 0.4514736533164978 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.354182094335556 0.298282265663147 0.3550088405609131 -0.354182094335556 0.298282265663147 0.3550088405609131 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.3544719517230988 0.298282265663147 0.2575727701187134 -0.3544719517230988 0.298282265663147 0.2575727701187134 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1696929037570953 0.4537642896175385 0.1070729941129684 -0.1696929037570953 0.4537642896175385 0.1070729941129684 -0.09995711594820023 0.1357338577508926 -0.01938049495220184 -0.09995711594820023 0.1357338577508926 -0.01938049495220184 -0.1371392905712128 0.4597870707511902 -0.02026660554111004 -0.1371392905712128 0.4597870707511902 -0.02026660554111004 -0.001449317671358585 0.04650413244962692 -0.01317102089524269 -0.001449317671358585 0.04650413244962692 -0.01317102089524269 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.09705853462219238 0.1357338577508926 -0.01938049495220184 0.09705853462219238 0.1357338577508926 -0.01938049495220184 0.1342403590679169 0.4597870707511902 -0.02026660554111004 0.1342403590679169 0.4597870707511902 -0.02026660554111004 0.1667940318584442 0.4537642896175385 0.1070729941129684 0.1667940318584442 0.4537642896175385 0.1070729941129684 0.170243501663208 0.4526919424533844 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.3515732288360596 0.298282265663147 0.2575727701187134 0.3515732288360596 0.298282265663147 0.2575727701187134 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.3512834012508392 0.298282265663147 0.3550088405609131 0.3512834012508392 0.298282265663147 0.3550088405609131 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1599837839603424 0.3077715933322907 0.438141942024231 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.09300129115581513 0.0464128889143467 -0.01317102089524269 -0.09300129115581513 0.0464128889143467 -0.01317102089524269 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.3181760609149933 -0.273921549320221 -0.1097748056054115 0.3181760609149933 -0.273921549320221 0.09010248631238937 0.0464128889143467 -0.01317102089524269 0.09010248631238937 0.0464128889143467 -0.01317102089524269 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.1427799314260483 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5756529569625855 0.2870831191539764 0.3586305379867554 -0.5756529569625855 0.2870831191539764 0.3586305379867554 -0.603806734085083 0.2870831191539764 0.2575727701187134 -0.603806734085083 0.2870831191539764 0.2575727701187134 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.09995711594820023 0.04646233096718788 -0.02443481422960758 -0.09995711594820023 0.04646233096718788 -0.02443481422960758 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.09995711594820023 0.1377387195825577 -0.2734987437725067 -0.09995711594820023 0.1377387195825577 -0.2734987437725067 -0.001449317671358585 -0.3543172776699066 -0.08908890932798386 -0.001449317671358585 -0.3543172776699066 -0.08908890932798386 0.09705853462219238 0.04646233096718788 -0.02443481422960758 0.09705853462219238 0.04646233096718788 -0.02443481422960758 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.09705853462219238 0.1377387195825577 -0.2734987437725067 0.09705853462219238 0.1377387195825577 -0.2734987437725067 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.57275390625 0.2870831191539764 0.3586305379867554 0.57275390625 0.2870831191539764 0.3586305379867554 0.600908100605011 0.2870831191539764 0.2575727701187134 0.600908100605011 0.2870831191539764 0.2575727701187134 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.1427799314260483 0.3090838491916657 0.4529981315135956 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.09210735559463501 -0.3543172776699066 -0.08908890932798386 -0.09210735559463501 -0.3543172776699066 -0.08908890932798386 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 0.08920849859714508 -0.3543172776699066 -0.08908890932798386 0.08920849859714508 -0.3543172776699066 -0.08908890932798386 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.5986962914466858 0.2943861186504364 0.2461786717176437 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.1048265770077705 0.04720093682408333 -0.2734573781490326 -0.1048265770077705 0.04720093682408333 -0.2734573781490326 -0.1013187915086746 -0.3543172776699066 -0.09922146797180176 -0.1013187915086746 -0.3543172776699066 -0.09922146797180176 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 0.09842002391815186 -0.3543172776699066 -0.09922146797180176 0.09842002391815186 -0.3543172776699066 -0.09922146797180176 0.1019275709986687 0.04720093682408333 -0.2734573781490326 0.1019275709986687 0.04720093682408333 -0.2734573781490326 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6997751593589783 0.2703775763511658 0.354082316160202 0.6997751593589783 0.2703775763511658 0.354082316160202 0.7538297772407532 0.2898140251636505 0.2332167774438858 0.7538297772407532 0.2898140251636505 0.2332167774438858 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.09248960018157959 -0.7727522850036621 -0.08908890932798386 -0.09248960018157959 -0.7727522850036621 -0.08908890932798386 0.08959063142538071 -0.7727522850036621 -0.08908890932798386 0.08959063142538071 -0.7727522850036621 -0.08908890932798386 0.7403134107589722 0.280442476272583 0.2985353469848633 0.7403134107589722 0.280442476272583 0.2985353469848633 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.6621055603027344 0.3010430932044983 0.2265639156103134 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.1043468117713928 -0.3548235893249512 -0.273533433675766 -0.1043468117713928 -0.3548235893249512 -0.273533433675766 -0.1016295403242111 -0.7727522850036621 -0.09962338954210281 -0.1016295403242111 -0.7727522850036621 -0.09962338954210281 0.09873109310865402 -0.7727522850036621 -0.09962338954210281 0.09873109310865402 -0.7727522850036621 -0.09962338954210281 0.1014480292797089 -0.3548235893249512 -0.273533433675766 0.1014480292797089 -0.3548235893249512 -0.273533433675766 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.6748431324958801 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.1036523431539536 -0.6999796628952026 -0.273533433675766 -0.1036523431539536 -0.6999796628952026 -0.273533433675766 0.100753627717495 -0.6999796628952026 -0.273533433675766 0.100753627717495 -0.6999796628952026 -0.273533433675766 0.6823241114616394 0.310824066400528 0.0157061405479908 0.6823241114616394 0.310824066400528 0.0157061405479908 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.8011427521705627 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"296\" source=\"#ID1460\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1457\">\r\n                    <float_array count=\"888\" id=\"ID1461\">-3.234952956545837e-010 -0.9579877817902355 0.2868090130045148 -6.217357242973127e-011 -0.9515595232544742 0.3074645893492739 -0.2812065349451302 -0.9162931207527727 0.2851838031258053 0.2812065349451302 0.9162931207527727 -0.2851838031258053 6.217357242973127e-011 0.9515595232544742 -0.3074645893492739 3.234952956545837e-010 0.9579877817902355 -0.2868090130045148 0.2812005918009352 -0.916294768072033 0.2851843704949887 -0.2812005918009352 0.916294768072033 -0.2851843704949887 -0.2756918473565419 -0.9544959188559045 0.1137169564689446 0.2756918473565419 0.9544959188559045 -0.1137169564689446 -0.2442800039146172 -0.9227793826871448 0.2980025009542817 0.2442800039146172 0.9227793826871448 -0.2980025009542817 0.2442758821752764 -0.9227803713982717 0.2980028180228472 -0.2442758821752764 0.9227803713982717 -0.2980028180228472 0.2756935896854381 -0.9544954774242553 0.1137164376112813 -0.2756935896854381 0.9544954774242553 -0.1137164376112813 1.490483751561444e-018 -0.9931464214067424 0.1168767968716687 -1.490483751561444e-018 0.9931464214067424 -0.1168767968716687 -0.8704887825702192 -0.4886119739719802 0.05922514930857357 0.8704887825702192 0.4886119739719802 -0.05922514930857357 -0.8046057671952051 -0.5876209018924398 -0.0855057603634472 0.8046057671952051 0.5876209018924398 0.0855057603634472 -9.200784490519991e-013 -0.9321223686831632 0.3621434657708033 9.200784490519991e-013 0.9321223686831632 -0.3621434657708033 0.804604821940701 -0.5876223945276238 -0.08550439731028192 -0.804604821940701 0.5876223945276238 0.08550439731028192 0.8704895216285693 -0.4886106534106326 0.05922518137160225 -0.8704895216285693 0.4886106534106326 -0.05922518137160225 2.974499319537437e-008 -0.8735363385033532 0.4867589396345526 -2.974499319537437e-008 0.8735363385033532 -0.4867589396345526 -0.3116860285389407 -0.8228945555233569 0.4750751204847921 0.3116860285389407 0.8228945555233569 -0.4750751204847921 -0.9015170437079738 -0.4167464578187631 0.1165736239444807 0.9015170437079738 0.4167464578187631 -0.1165736239444807 -0.9185766413583475 -0.3939973318069229 0.03135373151386103 0.9185766413583475 0.3939973318069229 -0.03135373151386103 -0.2086040935063664 -0.949799062777097 0.2331653330152989 0.2086040935063664 0.949799062777097 -0.2331653330152989 0.2086063702315061 -0.9497992489494362 0.2331625377154804 -0.2086063702315061 0.9497992489494362 -0.2331625377154804 0.9185766708178467 -0.3939969993628236 0.03135704581577447 -0.9185766708178467 0.3939969993628236 -0.03135704581577447 0.9015146128661709 -0.4167510528800471 0.1165759954370121 -0.9015146128661709 0.4167510528800471 -0.1165759954370121 0.3116915687490797 -0.8228931038431774 0.4750740001495339 -0.3116915687490797 0.8228931038431774 -0.4750740001495339 -0.8174019137252895 -0.3563103952147633 0.4526555132770762 0.8174019137252895 0.3563103952147633 -0.4526555132770762 -0.9999820905342003 1.551754390397572e-005 0.005984845031944604 0.9999820905342003 -1.551754390397572e-005 -0.005984845031944604 -0.9733205705292534 -0.02918463832305922 -0.2275858604363652 0.9733205705292534 0.02918463832305922 0.2275858604363652 -0.9708137837163441 -0.09990252189294425 -0.2180368855624793 0.9708137837163441 0.09990252189294425 0.2180368855624793 -4.973308797008195e-005 -0.4802883840395421 0.8771106348023067 4.973308797008195e-005 0.4802883840395421 -0.8771106348023067 0.9708140150792235 -0.09990213515044862 -0.2180360326141954 -0.9708140150792235 0.09990213515044862 0.2180360326141954 0.9733203282558441 -0.02918431405002838 -0.2275869381519185 -0.9733203282558441 0.02918431405002838 0.2275869381519185 0.999982070663732 1.552603589011465e-005 0.005988164160817121 -0.999982070663732 -1.552603589011465e-005 -0.005988164160817121 0.8174051349614597 -0.3563064286015123 0.4526528186986943 -0.8174051349614597 0.3563064286015123 -0.4526528186986943 -1.533467956234012e-008 -0.3933849529556973 0.9193738514815634 1.533467956234012e-008 0.3933849529556973 -0.9193738514815634 -0.2774641446396492 -0.2995144511443457 0.9128552689200458 0.2774641446396492 0.2995144511443457 -0.9128552689200458 -0.9999975879857992 0.0004976203717153804 0.002139251399367902 0.9999975879857992 -0.0004976203717153804 -0.002139251399367902 -0.9996865263546504 -0.02493816425449222 -0.00222193352487478 0.9996865263546504 0.02493816425449222 0.00222193352487478 -0.5031715502941616 -0.4429180687134052 0.7420525421974897 0.5031715502941616 0.4429180687134052 -0.7420525421974897 -0.9938297139390042 -0.1089172766501073 -0.02096488824298363 0.9938297139390042 0.1089172766501073 0.02096488824298363 0.5031644996780427 -0.4429142935026257 0.742059576364873 -0.5031644996780427 0.4429142935026257 -0.742059576364873 0.9938298285119792 -0.1089165278974066 -0.02096334683736273 -0.9938298285119792 0.1089165278974066 0.02096334683736273 0.9996865289447992 -0.02493807414508746 -0.002221779519478998 -0.9996865289447992 0.02493807414508746 0.002221779519478998 0.9999975853886962 0.0004977304266776404 0.00214043948749002 -0.9999975853886962 -0.0004977304266776404 -0.00214043948749002 0.2774684575642872 -0.2995131211223426 0.912854394376479 -0.2774684575642872 0.2995131211223426 -0.912854394376479 -0.8994705543474922 -0.009788394691910805 0.4368717308217256 0.8994705543474922 0.009788394691910805 -0.4368717308217256 0.04493718847070125 -0.9989737508561716 0.00566517366904504 0.04076621903261399 -0.9683858721428929 -0.2461034701499217 0.0468698340447171 -0.9989001860101959 -0.00127947075645433 -0.0468698340447171 0.9989001860101959 0.00127947075645433 -0.04076621903261399 0.9683858721428929 0.2461034701499217 -0.04493718847070125 0.9989737508561716 -0.00566517366904504 0.02366492200974112 -0.5517765660279215 -0.8336561597257634 0.04462576523667903 -0.9752630527249254 -0.2164960024266041 -0.04462576523667903 0.9752630527249254 0.2164960024266041 -0.02366492200974112 0.5517765660279215 0.8336561597257634 -0.9990570470692374 -0.0375993076012986 -0.02170964691556774 0.9990570470692374 0.0375993076012986 0.02170964691556774 -0.9851454615818815 -0.06161690562177455 -0.1602865448695515 0.9851454615818815 0.06161690562177455 0.1602865448695515 -0.9690913892938591 -0.1070782175622976 0.2222524117308507 0.9690913892938591 0.1070782175622976 -0.2222524117308507 -0.9763006140656918 -0.175860789299445 -0.1261352201485753 0.9763006140656918 0.175860789299445 0.1261352201485753 9.869805431426705e-007 -0.1216014839457632 0.9925790039594904 -9.869805431426705e-007 0.1216014839457632 -0.9925790039594904 -1.837198440433751e-005 -0.05666264686922608 0.9983933814445304 1.837198440433751e-005 0.05666264686922608 -0.9983933814445304 0.9690892642041279 -0.1070789280220219 0.2222613353193871 -0.9690892642041279 0.1070789280220219 -0.2222613353193871 0.9763005019376909 -0.1758613568419084 -0.1261352967489112 -0.9763005019376909 0.1758613568419084 0.1261352967489112 0.985145322931821 -0.06161747969626393 -0.1602871763474503 -0.985145322931821 0.06161747969626393 0.1602871763474503 0.9990570199402463 -0.0375998952982182 -0.02170987751410551 -0.9990570199402463 0.0375998952982182 0.02170987751410551 -0.02366493571792748 -0.5517768020638852 -0.8336560031101667 -0.04076619997730011 -0.9683859664691773 -0.2461031021441385 -0.04462578548346446 -0.975263111227018 -0.2164957347149845 0.04462578548346446 0.975263111227018 0.2164957347149845 0.04076619997730011 0.9683859664691773 0.2461031021441385 0.02366493571792748 0.5517768020638852 0.8336560031101667 -0.04493713660936019 -0.9989737535032993 0.005665118258344553 -0.04686985171654567 -0.9989001851420066 -0.001279501205082898 0.04686985171654567 0.9989001851420066 0.001279501205082898 0.04493713660936019 0.9989737535032993 -0.005665118258344553 0.8994719120219989 -0.009786118546536363 0.4368689865019977 -0.8994719120219989 0.009786118546536363 -0.4368689865019977 7.367702913516951e-009 -0.02830913765764351 0.9995992160486525 -7.367702913516951e-009 0.02830913765764351 -0.9995992160486525 -0.1992518788334495 -0.01139878853772022 0.9798820114693465 0.1992518788334495 0.01139878853772022 -0.9798820114693465 0.05313815940111782 -0.9984565021845745 0.01615392400645438 0.04894046550362478 -0.9988003242091736 0.001656259622829284 -0.04894046550362478 0.9988003242091736 -0.001656259622829284 -0.05313815940111782 0.9984565021845745 -0.01615392400645438 0.02541770183677723 -0.5744325664555302 -0.818157177459594 -0.02541770183677723 0.5744325664555302 0.818157177459594 -0.4776759646854844 -0.1060206642515086 0.8721154118082427 0.4776759646854844 0.1060206642515086 -0.8721154118082427 -0.948167466935901 -0.3110276407063832 -0.06511728926312721 0.948167466935901 0.3110276407063832 0.06511728926312721 -0.9996321410519423 -0.02712136582566339 -0.0001187082981316481 0.9996321410519423 0.02712136582566339 0.0001187082981316481 0.4777126476003307 -0.1060674432822479 0.8720896305989708 -0.4777126476003307 0.1060674432822479 -0.8720896305989708 0.9481669711281279 -0.3110291485060471 -0.06511730677258731 -0.9481669711281279 0.3110291485060471 0.06511730677258731 0.9996321700259963 -0.02712029790701727 -0.0001187036323516585 -0.9996321700259963 0.02712029790701727 0.0001187036323516585 -0.02541772641987503 -0.5744328089866907 -0.8181570064133806 0.02541772641987503 0.5744328089866907 0.8181570064133806 -0.04894045645718776 -0.9988003246976386 0.001656232367120277 0.04894045645718776 0.9988003246976386 -0.001656232367120277 -0.05313800065321193 -0.9984564967070155 0.01615478474424408 0.05313800065321193 0.9984564967070155 -0.01615478474424408 0.1992520465395727 -0.01139743910568457 0.9798819930642794 -0.1992520465395727 0.01139743910568457 -0.9798819930642794 0.05698037502494026 -0.9982593360277356 0.01521627074816993 0.06301398155012374 -0.9978973057251951 0.01517251975109406 -0.06301398155012374 0.9978973057251951 -0.01517251975109406 -0.05698037502494026 0.9982593360277356 -0.01521627074816993 0.07220965848694676 -0.9972581577389953 -0.01618431475916849 -0.07220965848694676 0.9972581577389953 0.01618431475916849 0.08464117416450329 -0.9962514551856712 -0.01785804234755087 -0.08464117416450329 0.9962514551856712 0.01785804234755087 0.05804349935847929 -0.9543882301332066 -0.2928720853298034 -0.05804349935847929 0.9543882301332066 0.2928720853298034 -0.9997155845505343 -0.02376206962614927 -0.002028313059047507 0.9997155845505343 0.02376206962614927 0.002028313059047507 -0.9947201077769768 -0.08705250788645738 -0.0543485791427706 0.9947201077769768 0.08705250788645738 0.0543485791427706 -0.9567690259522409 -0.03346676688157008 0.2889169543188745 0.9567690259522409 0.03346676688157008 -0.2889169543188745 -0.9596228460909934 -0.2794338093639866 0.03226049355717801 0.9596228460909934 0.2794338093639866 -0.03226049355717801 -0.9999512956216323 -0.006497377633779611 0.007429028772524331 0.9999512956216323 0.006497377633779611 -0.007429028772524331 -3.901761616862526e-013 -0.09347540603174656 0.9956215889921231 3.901761616862526e-013 0.09347540603174656 -0.9956215889921231 0.9567670008545158 -0.03346797143143741 0.2889235209603388 -0.9567670008545158 0.03346797143143741 -0.2889235209603388 0.9947199598846177 -0.08705306808189042 -0.05435038863407004 -0.9947199598846177 0.08705306808189042 0.05435038863407004 0.9596226115168612 -0.2794344652553429 0.03226178998474629 -0.9596226115168612 0.2794344652553429 -0.03226178998474629 0.9999512957144556 -0.006498115259404758 0.007428371090393464 -0.9999512957144556 0.006498115259404758 -0.007428371090393464 0.9997155503841998 -0.02376330161955009 -0.00203071813770353 -0.9997155503841998 0.02376330161955009 0.00203071813770353 -0.08464106271132993 -0.9962514626526612 -0.01785815403477691 0.08464106271132993 0.9962514626526612 0.01785815403477691 -0.05804348823879056 -0.9543881044087331 -0.2928724972341693 0.05804348823879056 0.9543881044087331 0.2928724972341693 -0.07220971410323639 -0.9972581543863262 -0.01618427320294488 0.07220971410323639 0.9972581543863262 0.01618427320294488 -0.05697975250352784 -0.9982593489102732 0.01521775666365164 0.05697975250352784 0.9982593489102732 -0.01521775666365164 -0.06301300009297557 -0.9978973426808896 0.01517416520609868 0.06301300009297557 0.9978973426808896 -0.01517416520609868 0.1159152314789492 -0.5849783904363448 -0.8027228300189829 -0.1159152314789492 0.5849783904363448 0.8027228300189829 -0.9901595337418041 -0.1398104911772548 0.006092971113353422 0.9901595337418041 0.1398104911772548 -0.006092971113353422 -0.4132302658222034 -0.0853117835344339 0.906621556658943 0.4132302658222034 0.0853117835344339 -0.906621556658943 -0.9921051517240733 -0.1036476073615039 0.07060128476726806 0.9921051517240733 0.1036476073615039 -0.07060128476726806 0.4132279345911737 -0.08531204065782463 0.9066225950153186 -0.4132279345911737 0.08531204065782463 -0.9066225950153186 0.9901595172279322 -0.1398106134766217 0.006092848450349776 -0.9901595172279322 0.1398106134766217 -0.006092848450349776 0.9921051154436165 -0.1036470165708205 0.07060266189440977 -0.9921051154436165 0.1036470165708205 -0.07060266189440977 -0.1159164628534591 -0.5849792717652266 -0.8027220099415288 0.1159164628534591 0.5849792717652266 0.8027220099415288 0.1250974713162175 -0.9921180956036373 0.007232361032191726 -0.1250974713162175 0.9921180956036373 -0.007232361032191726 0.06485830889529796 -0.9936291449251408 -0.09216573182357687 -0.06485830889529796 0.9936291449251408 0.09216573182357687 -0.3954628486908789 -0.9144944149380586 -0.0854932766502305 0.3954628486908789 0.9144944149380586 0.0854932766502305 -0.9994575407345154 0.02665766213240324 0.0193389068602394 0.9994575407345154 -0.02665766213240324 -0.0193389068602394 -0.9362204999204865 -0.02944462073358915 0.3501773691124108 0.9362204999204865 0.02944462073358915 -0.3501773691124108 0 0 1 -0 -0 -1 0.9362197042172463 -0.02944465744666143 0.3501794933790681 -0.9362197042172463 0.02944465744666143 -0.3501794933790681 0.9994576316254423 0.02665534148774293 0.01933740819844515 -0.9994576316254423 -0.02665534148774293 -0.01933740819844515 -0.1250972968983719 -0.9921181191248688 0.007232151329507097 0.1250972968983719 0.9921181191248688 -0.007232151329507097 -0.06485814056062322 -0.9936291286457055 -0.09216602578930233 0.06485814056062322 0.9936291286457055 0.09216602578930233 0.3954580285428707 -0.9144961465914285 -0.08549704983456716 -0.3954580285428707 0.9144961465914285 0.08549704983456716 -0.100695794754597 -0.9856927002483367 -0.1351675167926194 0.100695794754597 0.9856927002483367 0.1351675167926194 0.3120306604070797 -0.7954287677809169 -0.5195478248943536 -0.3120306604070797 0.7954287677809169 0.5195478248943536 -0.4151053597124028 -2.915928035469865e-005 0.9097733451183172 0.4151053597124028 2.915928035469865e-005 -0.9097733451183172 0.4150926689286753 -2.886845055806662e-005 0.9097791354874445 -0.4150926689286753 2.886845055806662e-005 -0.9097791354874445 0.1006962484761042 -0.9856925593885402 -0.1351682059839063 -0.1006962484761042 0.9856925593885402 0.1351682059839063 -0.3120320962622111 -0.7954273829439994 -0.5195490827295054 0.3120320962622111 0.7954273829439994 0.5195490827295054 0.01779273758949539 -0.9952231201370434 -0.0959914560456267 -0.01779273758949539 0.9952231201370434 0.0959914560456267 -0.9998629779706079 -0.0005771715810145362 0.01654364399743302 0.9998629779706079 0.0005771715810145362 -0.01654364399743302 -0.9145873298303341 -0.0005385388398137522 0.404388088461737 0.9145873298303341 0.0005385388398137522 -0.404388088461737 0.9145808842121449 -0.0005380349770274592 0.4044026665986449 -0.9145808842121449 0.0005380349770274592 -0.4044026665986449 0.9998629826075197 -0.0005765823352515847 0.01654338429721482 -0.9998629826075197 0.0005765823352515847 -0.01654338429721482 -0.01779270708697304 -0.9952231309454234 -0.09599134963998564 0.01779270708697304 0.9952231309454234 0.09599134963998564 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 -0.5805296449644594 0.7970800414865904 0.1662790990508843 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 0.5805288259387089 0.79708037182807 0.1662803749714611 -0.01939252250667103 -0.9996859402873071 -0.01587296011180408 0.01939252250667103 0.9996859402873071 0.01587296011180408 -0.9999397759429392 -0.002011921118868233 0.01078872840496727 0.9999397759429392 0.002011921118868233 -0.01078872840496727 0.9999397920931323 -0.002011726887975461 0.01078726766476841 -0.9999397920931323 0.002011726887975461 -0.01078726766476841 0.01939245868370844 -0.9996859421610532 -0.0158729200769155 -0.01939245868370844 0.9996859421610532 0.0158729200769155 -0.02872498908936132 -0.9993173359750012 -0.02323224099484929 0.02872498908936132 0.9993173359750012 0.02323224099484929 0.02872489305492778 -0.999317340439856 -0.0232321676818156 -0.02872489305492778 0.999317340439856 0.0232321676818156 -0.0338039231267008 -0.9985855403020367 -0.04103917008095537 0.0338039231267008 0.9985855403020367 0.04103917008095537 0.03380383430301043 -0.9985855458828281 -0.04103910745019926 -0.03380383430301043 0.9985855458828281 0.04103910745019926 -0.03095060591091806 -0.9988632126208304 -0.03625386140179363 0.03095060591091806 0.9988632126208304 0.03625386140179363 0.03095052874497888 -0.9988632158995391 -0.03625383694503856 -0.03095052874497888 0.9988632158995391 0.03625383694503856 -0.02363192930817951 -0.9986858878964992 -0.0454755894250371 0.02363192930817951 0.9986858878964992 0.0454755894250371 0.02363189189260647 -0.9986858900590736 -0.04547556137633117 -0.02363189189260647 0.9986858900590736 0.04547556137633117 -0.01337538710735877 -0.9993032316896482 -0.03484465747218112 0.01337538710735877 0.9993032316896482 0.03484465747218112 0.01337535277071187 -0.9993032331787931 -0.03484462794563845 -0.01337535277071187 0.9993032331787931 0.03484462794563845</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"296\" source=\"#ID1461\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1459\">\r\n                    <float_array count=\"1204\" id=\"ID1462\">-0.02636663033366615 6.838755345493062 -0.02721889647085817 3.636995278897075 -3.055581198595796 6.842143449215987 -0.03075380607900271 3.636979847311833 -0.03160607430193035 6.838739913907263 2.997601080631402 6.84212801763019 -0.02864833987362354 5.483028193469725 -3.057863351562802 5.485993454889168 -3.046682747609613 7.421353608982838 -0.0289123393400924 3.636263891157869 -3.058127357745602 3.636405881443521 -3.058091668136631 6.840639902274836 3.000147237397563 3.636405235727331 -0.02906036768025068 3.63626324544168 3.00011154770125 6.840639256558645 2.9998832306968 5.48599316172996 -0.02932436766466735 5.483027900310498 2.988705010905401 7.421353315835564 -0.02898635342717174 7.420855085281451 -0.02898635342717174 5.482544939601901 -3.047030568122864 7.420855085281451 -5.159912367381772 5.296856146763377 -5.474658075878946 7.219549253258736 -5.225329501062905 7.231142715651031 -4.373547947010668 2.495708889645916 -4.566221446976303 2.304321095525766 -5.284730168103733 5.567656581500462 -0.02897094982604534 2.714251480314225 -0.02897212529120171 0.5724803258323166 -3.058185968988067 2.714376292021933 -0.02900058159730653 0.5724802940152011 -0.0290017570653396 2.714251448497109 3.000205848768988 2.714376260204818 4.51912475598531 2.318306065720881 4.326447095963328 2.509694088595111 5.23761693820873 5.581645452160142 5.425781084175483 7.221534450837133 5.111034404777476 5.298841441446934 5.176454019892085 7.233127912643904 2.989052832126617 7.420855085281451 -0.02898635342717165 5.482544939601901 -0.02898635342717165 7.420855085281451 -0.02898635342717178 7.790007593915478 -3.047030568122864 7.790007593915478 -0.02898529171943672 9.585939924497836 -5.233578201713131 7.355735839827242 -5.482903018040604 7.344061827949919 -5.41974110645347 9.048229402814595 -5.16381046254205 5.295773823995131 -5.413134337179937 5.295836535495962 -5.478754947755846 7.218434380103668 -5.163568618199661 5.683786140393082 -4.518427213087274 2.405157487470111 -5.412892491165275 5.683855181014641 -2.615203760778698 -0.06186090152526974 -3.899768724483668 2.141380444338674 -3.691532640562677 2.315708005786755 -0.02898635342717171 0.5724606318597649 -1.850643754005432 0.5724606318597649 -3.058201372623444 2.714354935577812 1.792670786380768 0.572460631859765 -0.02898635342717171 0.572460631859765 3.000221252441406 2.714354935577812 3.843183514386036 2.141180313622572 2.558618446146386 -0.06206097129407832 3.6349433670269 2.315507870248307 4.469578241634467 2.418372813017507 5.114699187858625 5.697005749432438 5.36402783025949 5.6970747901442 5.364272833238893 5.297829338659803 5.114944189165764 5.297766627151653 5.429887681453169 7.220427407740841 5.434128262689799 7.348232666916337 5.184804956831304 7.359906676366162 5.370971728479812 9.052399887415888 2.989052832126617 7.790007593915478 -0.02898635342717164 7.790007593915478 -0.02898529171943657 9.585939924497836 -3.073559076940085 7.820103220942611 -3.109856074710857 9.522417415152312 -0.05711945621795228 9.618731098239561 -5.699618030456981 8.965286654319527 -5.736105240871591 7.260339372503561 -5.93120865529341 8.970221092247884 -5.073759430605529 7.054785231902612 -4.935531951542906 5.136040407634792 -6.127173639791447 5.133255636556745 -4.935545297933068 5.162224262445908 -3.287399448785889 2.190096748478799 -6.368646659170224 2.200915323218838 -2.568644366127439 0.1413895475487604 -2.725268582380571 -0.1084508522356947 -3.798823731668918 2.270371778376013 -3.466273929253212 3.41033496303592 -3.149763314163041 0.8796827536958151 -6.460951685521415 0.8988482333115089 -0.02898635342717163 1.937154820393069 -0.02898635342717164 1.454819714509872 -1.850643754005432 1.937154820393069 1.792670786380768 1.937154820393069 -0.02898635342717174 1.454819714509872 -0.02898635342717175 1.937154820393069 2.669317919921736 -0.1090026243704966 2.512696550149399 0.140837784823799 3.742868755891826 2.269820095835775 3.146487813238784 0.8511975929225955 3.462996692318609 3.381850019386242 6.457675910666511 0.8703630741826385 3.287399951146515 2.189953668002609 4.935545800267551 5.162081185696131 6.368647161530801 2.200772242756213 4.935532676480418 5.136350543601128 5.073760155673227 7.055095395720951 6.127174364728862 5.133565772482659 3.051882784571162 9.522470531624158 3.015582208849378 7.820156340730565 -0.0008502575972435707 9.618784214523791 5.691293807880778 7.265349514273309 5.65481379488936 8.970296396698309 5.886400741133047 8.975230833470755 -3.261216748434335 9.662302326147335 -0.2208518809264089 10.214249374523 -0.2102702694532389 9.804438774077401 -5.647174495173614 7.133758925437891 -5.878680504139493 7.141729747383367 -5.701452783863372 7.570295796680164 -5.378161089582958 8.77197701868781 -5.073824521938459 7.078123397081378 -6.12567424477393 7.073539197708593 -6.125572868107976 7.050180529447786 -5.073723145548264 7.05476479209345 -6.12713723702111 5.13323513221534 -6.127167100909393 5.130431462038796 -4.935525412693865 5.133216247242905 -6.253308388634133 4.896900817283603 -6.258978668700247 4.928608914566635 -4.94119507295335 5.164920888226908 -6.374281494973109 2.203604719333665 -3.281873387043052 3.388242983490191 -6.343363832797683 0.9586469866169477 -6.363116134675763 3.400265596412329 -3.516931398666756 0.2462875400800124 -3.279106132294992 -0.1733490150808107 -3.640044025700155 -0.02165769974764224 -6.466114527036964 0.002688284437034642 -3.15491272167495 -0.0139955519073096 -6.487623499595503 -0.4082085088720726 -0.02898635342717157 1.454819714509872 -1.847721189260483 1.454819714509872 -1.850643754005432 1.937154820393069 1.789742410182953 1.454819714509872 -0.02898635342717174 1.454819714509872 1.792670786380768 1.937154820393069 3.247335937252875 -0.1557451567850106 3.485164049653188 0.2638898259161639 3.608275259725327 -0.004054409868652941 3.151473509965481 -0.01422365240314152 6.462675041408438 0.002460183750547187 6.484184086812314 -0.4084366048630124 6.343462499663039 0.9333591743451106 3.281972038222571 3.362957176328559 6.363214785816568 3.374979799172784 4.941097925178682 5.164730528058628 6.258881521802579 4.928418553681022 6.374184336321573 2.203414350176213 4.935526244668555 5.133572133463288 6.127167932883925 5.130787348191338 6.253309220582092 4.897256697747134 5.07372449927955 7.055075300019057 6.12557422183897 7.050491037306701 6.127138590509018 5.133545612186522 0.1523347741752135 9.805934192734966 0.1629142784383076 10.21574484758487 3.203277673848404 9.663797725935616 5.073824113164295 7.078029599300062 5.378160680817295 8.771883221881627 6.125673835999754 7.073445399924637 5.601492339008226 7.161883139375415 5.655776694769287 7.598418447210583 5.832994668995053 7.169853932774302 -3.29229548917307 9.577208045340949 -3.135585968901885 9.988246606589721 -0.2544853944912711 10.14304715713552 -5.345153759990367 2.659266773740501 -6.12243651836439 2.652960177864921 -5.506542168678719 3.09404522880144 -5.366463836624983 8.76685689293635 -6.113982155565933 7.068421344626113 -6.143762830504425 8.763044579849012 -2.998909066793914 7.061671293003088 -3.009383622791294 5.144753875142473 -6.828240068496953 7.093632513089244 -3.006583778138543 1.558678636976905 -3.002738232531304 1.293285723944899 -6.831232731187104 1.55885611133052 -6.46510561082901 4.935179111872872 -6.579529808405709 2.210137881213651 -9.272240772076914 4.681736501928362 -6.547779309438316 3.229453125679772 -6.464223432163376 0.7891846968995643 -9.257544872562866 3.172448047115339 -3.277546589312663 -0.08843876873491094 -3.371355981309236 -0.3431960830523758 -3.634946533166137 0.07141021680080344 -6.648717845179229 0.00585761924331976 -6.669831971640257 -0.4050596526205177 -9.549385618892208 -0.3951926563523799 -3.14399619025572 -0.1065724795831643 -2.817386681209193 -0.4735937208030097 -6.476656430358466 -0.5012124531603661 -0.02898635342717163 0.913646990879659 -1.847721189260483 2.696075859143994 -0.02898635342717148 2.696075859143994 1.781119207154543 2.701809827268504 0.8152532076377372 1.729123404493221 -0.03760036592324648 2.696037187182018 -0.03194300973043898 0.9136173373610622 3.33699263842763 -0.321367168751961 3.243177321967573 -0.06660778468474321 3.600577886942102 0.09324249952771058 6.658814698157106 -0.4056713099979922 6.637700346328465 0.005245949403433635 9.538368487016358 -0.3958043140291034 2.814292429173244 -0.4709099327871273 3.140901745352777 -0.1038885235339979 6.473561762450731 -0.498528677789164 6.46084564322932 0.7640001628475446 6.544401249173743 3.204270616938121 9.254166738134776 3.147265491062098 6.575504533891243 2.209782281736347 6.461080479726541 4.934823526191813 9.268215374267234 4.681380914964183 2.944816367723171 1.294447701317205 2.948661020057206 1.55984063228462 6.773309973105766 1.560018106650228 2.95146016768939 5.144755718026892 2.940980549594411 7.061673136108093 6.770317208793428 7.093634356197926 0.196560697793166 10.14483968800053 3.077661907383472 9.990039162658695 3.23436934961255 9.579000668333457 6.114186672050714 7.068417750818075 5.366668350899943 8.766853299129746 6.143967346907679 8.763040986042407 5.507121974816171 3.14030772055557 6.123016175449285 2.699228291979475 5.345733414294688 2.705534807467032 -2.124944464071637 5.929230350296569 -4.793328873308041 4.831765829292571 -2.424087179380182 6.662759231684621 -6.329741855409807 3.517445271705451 -6.336494444822557 3.972765392797835 -5.691831002047781 3.926042402504652 -2.94268139914473 8.872257638594711 -2.944185181676458 7.177373413464506 -6.790849362496888 8.959695619745167 -2.998922106546994 7.060106920966361 -6.828253108172078 7.092068150392605 -6.845712750985853 8.842156164075469 -3.006445803952361 5.150512521979542 -6.831094757930405 5.150668686150087 -6.825302785272073 7.099390110382316 -2.972522825755776 1.776907481445139 -6.805192167810611 1.776907481445138 -6.801570916553547 2.03437296505763 -9.214528240608519 4.745969262161818 -6.522646409043738 2.27346763816126 -9.232525146047564 2.222123536139848 -9.604528261047836 2.393860449313284 -6.677475086746783 0.1768921183055275 -9.57627511056608 -0.2374426242850861 -2.765936644393134 -1.116894091628714 -0.9858012394810384 -1.238632662674646 -2.775689648758619 -1.388199031006643 -9.549072857123221 -0.3020218693831952 -6.669519401796959 -0.3119447185681393 -9.461015396905538 -5.376912490753298 -2.818037903687294 -0.3877109797521869 -6.472161291438469 -5.478532074706668 -6.477307879814198 -0.4152996229269818 -1.859099769337564 0.9136935523578336 -1.845019758784917 2.697931230696875 -0.02805939028729755 0.9136935523578337 1.796439903317344 2.691611429166005 1.804340486741244 0.9073356961307943 0.8250993973108234 1.724391901254001 -0.02668547621783949 0.9136798124634822 0.9839940938471216 -1.206368748089032 2.764129395093635 -1.084628390063306 2.773882667123692 -1.355937311880331 6.664504339654775 0.1626841406920702 9.591558611604032 2.379652713535864 9.563304722542457 -0.2516506470958837 6.658520920728246 -0.3180065740152979 9.538074517660286 -0.3080837246826926 9.450016779080851 -5.382974421571861 6.469046392546575 -5.478528909275005 2.814923421156487 -0.3877078143211198 6.474192981507066 -0.4152964574959116 6.51976775696096 2.27186243653367 9.211649476928296 4.744364060265751 9.229646420799721 2.220518334517832 6.773172053771983 5.150669074791106 2.948523099793939 5.150512910620561 6.76738067662801 7.099390499020172 6.747277703375682 1.778054512055766 2.91461282674071 1.778054512055766 6.743660030372366 2.035519925276201 6.770330240658309 7.092070927097284 2.940993581537236 7.060109697668658 6.787787501226327 8.842158940910547 2.07129614789165 5.951108811215057 2.370438806936668 6.684637715548111 4.739681227361353 4.853644255882038 2.886279891113184 7.177322034931364 2.884776109860868 8.872206260062704 6.732947347352482 8.959644241213219 5.688532992642515 3.969893912367153 6.333196440557649 4.016616713248672 6.326440875495734 3.561298437991529 -5.934439181466193 2.564486783206475 -6.382239992335672 3.030585942245407 -4.400330850436354 5.135936699598823 -2.863256667798199 8.858152859487548 -2.861252783238947 9.133225387838984 -2.51820719905027 9.155310854924538 -2.943009276547118 8.858157393776786 -6.791177314412912 8.945592095501487 -2.941058130282403 9.133230301267204 -6.751782475507639 7.092730904472949 -10.87570375166805 8.415305835162611 -6.769268352832716 8.842818656232213 -6.77333752277042 7.099227913273971 -6.779127273668858 5.150506482439512 -11.20841424702214 7.171661862608203 -6.814614871242686 2.040519201239409 -6.818460430289814 1.783056970246015 -11.80633820404197 2.04051920123941 -9.09171907599913 4.75479704864049 -9.112398907492434 2.230971879985942 -12.78866513764523 4.063980984403791 -9.173804071530416 2.850006625405597 -9.27450811171625 0.220479519264528 -14.21774104770318 2.814837196482078 -0.9926681972144869 -1.18325607489457 -0.9985162440230233 -1.447962315251344 -2.782857030104402 -1.329182627647969 -6.368675231933594 -0.4151985421776772 -6.363521218299866 -5.478430986404419 -9.211796522140503 -5.451368689537048 -9.184447614364222 -0.6590180415941973 -8.896168158166821 -5.726479328106876 -11.23707257527814 -5.726479328106876 -2.819283219477624 -0.3868174287271915 -2.859321231360607 -5.469182872040909 -6.473405966243857 -5.477638983772041 -0.03604880720977874 -7.294108674436618 -1.859099769337564 0.8648414790412329 -0.02805939028729712 0.864841479041232 -0.02192385777758977 -7.294165442551623 -0.02991328949181006 0.8647847109117424 1.801123699545969 0.8647847109117429 0.9964932391849524 -1.417559054370042 0.9906448802719919 -1.15285047148747 2.780833955293622 -1.298778315622266 9.27275597825315 0.2060561641657651 9.172052478769913 2.835583586177344 14.21598956540136 2.800414153029118 6.363521218299866 -5.478430986404419 6.368675231933594 -0.4151985421776772 9.211796522140503 -5.451368689537048 8.864198284825417 -5.730925506599281 9.15247965980455 -0.6634642487763759 11.20510771234817 -5.730925506599281 2.856167736454677 -5.469207712156813 2.816129719907828 -0.3868422688798363 6.470252050363343 -5.477663823887884 9.111763185916413 2.229381236623932 9.091083522079005 4.753206406652221 12.78802963708831 4.062390342039505 6.721226272527701 5.150507018182688 6.715437116939103 7.099228449012697 11.15050669776064 7.171662398346762 11.74842402563137 2.041615635174673 6.760540894601352 1.784153471565902 6.756698906493762 2.041615635174672 10.81780787399817 8.415309040742367 6.693892549552362 7.092734109939539 6.711376046269765 8.842821861848547 5.89261878482687 2.604508803106154 4.358522115839356 5.175966387100329 6.340418136713105 3.070609351969068 6.733274958915194 8.945555555684942 2.885103646949781 8.858120852209627 2.88315964419209 9.13319376520754 2.80340188434552 9.133180134758289 2.805398626466703 8.858107599537522 2.460351541592808 9.15526560239538 -6.77460312273808 7.021203173047983 -11.20967975574413 7.093642709070672 -10.89849197034851 8.343879214946197 -6.814614871242685 5.072583397887066 -11.80633820404197 5.072583397887066 -11.24382979373957 7.093896667381135 -6.869369183801485 0.7670959441529462 -11.80662675423104 0.7739615289177348 -11.85622182531548 1.043704364313447 -12.84480794438212 3.950526219131178 -9.168223069684583 2.118156324435814 -14.2121676338043 2.084092525164981 -14.48303158559042 2.144125741160916 -9.49824297019198 -0.3694625458418844 -15.5213641316082 -1.618177852494305 -2.714677155017853 -0.3876098990440369 -0.9292466193437576 -0.4886962845921516 -2.754774391651154 -5.469974875450134 -1.141758391497902 -1.132155274230674 6.818692493820374 -2.91283442237678 -1.159196012549074 -1.396351267211961 -9.355459686440179 -0.6597511565328875 -11.36906450694955 -5.742843595913961 -14.57962206144768 -4.68136921340893 -1.8421471118927 -7.294158452063673 -1.860025823116302 0.8630026274965318 -0.0289863534271717 -7.294158452063673 1.784169971942906 -7.294158452063673 -0.02898635342716709 -7.294158452063674 1.802049726247787 0.8630026274965329 -6.825540455410093 -2.882790235124071 1.134906988487327 -1.102095691848085 1.152345667236225 -1.366293968975637 0.9292466193437576 -0.4886962845921516 2.714677155017853 -0.3876098990440369 2.754774391651154 -5.469974875450134 9.489753801293103 -0.3709603909915806 14.47454318235925 2.142627979824022 15.51287503815869 -1.619675739281022 9.166575014905702 2.11859637962785 12.84316013339381 3.950966229592697 14.21051968951901 2.084532581188558 11.36526920227416 -5.735877480657661 9.351664591353453 -0.652783738407381 14.57581694983691 -4.674402826081583 11.15177162177318 7.09367909750699 6.716702132197051 7.021239561509185 10.8405850282281 8.343915602953048 11.74842402563136 5.072614769542129 6.75669890649376 5.072614769542129 11.18590727867735 7.093928043603475 11.74869750490922 0.77510221082015 6.811431000110176 0.7682366242140287 11.79828899240948 1.044845118560229 -10.80496632019039 6.977662048894169 -12.46155548835796 7.657098334252402 -10.49529891741161 8.228276001342932 -11.21487106341044 4.881022912592136 -13.21899380723216 6.8125123245248 -10.65669909416979 6.903537955267404 -11.51251320636103 0.5578575936245883 -14.61233982042884 0.2524251237269393 -11.5684994504771 0.8263467159237325 -9.481788910771552 -0.4489778016980909 -14.72705052423376 -4.443037756452817 -15.50488449584283 -1.697816468325149 -0.8205209546146492 -0.5288734822450359 -0.8300404743074754 -5.510289665520177 -2.643413216704172 -5.511117138271891 6.688313272222799 -3.315611715802851 6.658101382735414 -3.587815610413396 -1.244508051282861 -1.578725988619197 -0.02898635342717171 -15.45504570007324 -1.8421471118927 -7.086345553398132 -0.02898635342717171 -7.086345553398132 1.784169971942902 -7.086345553398132 -6.667602453628678 -3.549646618820059 -6.697815009734231 -3.277441587974647 1.235004835475794 -1.540548610673851 0.8331646414142193 -5.5091467110538 0.8236442068899232 -0.5277306955751653 2.646536927669105 -5.509974183777642 14.71921589675338 -4.441333888747046 9.473963539051594 -0.4472738422507893 15.49705920225716 -1.696112537563038 12.40393384027185 7.657276229073564 10.74734348798995 6.977839945846476 10.43767726880506 8.228453894372517 13.1615240929437 6.812788755903888 11.15740491040168 4.881299309953024 10.59922465227442 6.903814388249673 14.55454565970635 0.2549110852172093 11.45473337963093 0.5603437143635875 11.51071612648785 0.8288329766496544 -10.67083552423818 7.305298660398512 -13.23313184952681 7.214318423797966 -12.32748189269051 7.984595464340071 -12.10251372621878 4.076419314872052 -14.88997705397223 4.908523114067743 -14.07829490287512 6.03689070274844 -12.04632824074949 4.268192840440507 -15.10444972929663 3.776010808033947 -14.83508302186561 5.095958089172433 -12.78301536129654 0.2962467436444843 -14.62950192805164 0.4509841625962124 -11.52928819755993 0.7524619498734347 -0.9297487410889054 -0.5276811829171171 7.085836338187223 -2.023700170738353 -0.9445453203016435 -5.509084486554984 7.088025415829121 -2.553216429840028 15.45672905434624 -2.553216429840028 7.088193710545637 -2.827091748524344 -1.849792003631592 -15.45504570007324 1.791812628507614 -15.45504570007324 -7.088140225495319 -2.788095125751982 -15.45667561482647 -2.514218604200972 -7.087971978350901 -2.514218604200972 -7.085850612107634 -2.022563490992714 0.9297344638217198 -0.5265445530501437 0.9445310551610517 -5.507947690603388 13.17564725650051 7.21417585087989 10.61334620353099 7.305156086916923 12.26999375690795 7.984452886651061 14.83200498227364 4.908476323045658 12.04454165399633 4.076372525604834 14.02031925564632 6.036843909346684 14.57169925216748 0.4533441194975119 12.72520792726563 0.2986069485387188 11.47149979120349 0.7548214236054923 15.04646703475571 3.776053864359719 11.98835627572861 4.268235893980133 14.77711105823558 5.096001138026241 -12.6266160603829 2.297591583870821 -15.12178814565102 0.7325988359478599 -14.47438377006741 2.436194618030055 7.08391559836993 -2.019479612635523 7.093969354055942 -5.506245102356618 -0.9465268942683268 -5.50472376224181 15.4548777945726 -2.559000053247869 15.45486120822411 -2.837936446359119 7.086161659917741 -2.827294198155631 -15.45486788703943 -2.799944950337141 -15.45488434305973 -2.521001721354575 -7.086168334303783 -2.789302441324948 -7.094039863961248 -5.505237706008601 -7.083986074240761 -2.018472221561888 0.9464563790294733 -5.503716365896093 15.06409865668014 0.7342359878714846 12.56892409316339 2.29922863371934 14.41669653760615 2.437831658838328 -13.46262675968666 2.193185871354747 -15.7924982468157 2.177528096152326 -13.26693739714533 3.692991203840863 15.45651721013149 -2.02727151420398 7.097984951813347 -5.505997022377133 7.087814756859743 -2.019231870341796 -7.097944413422521 -5.504989922836323 -15.45647663035068 -2.026264419961787 -7.087774172317961 -2.01822477611185 15.7345131545799 2.177569303028596 13.40465358825945 2.193227078345851 13.20894992640147 3.693032421831513 -13.67575051186454 0.3119285146293583 -15.79802331059779 3.026710069019142 -13.46815091855662 3.042232609582492 15.45092476634052 -2.014616342788127 13.99539387109469 -5.493019668618155 7.092258426701513 -5.493019668618155 -13.99551091456761 -5.49239127305972 -15.45104179173041 -2.01398800205036 -7.092375472872663 -5.49239127305972 15.74003799321126 3.026710239021875 13.61776877069671 0.3119286846437253 13.41017752197328 3.042232779585159 -13.86518791625325 0.1692229827221521 -16.18437295613618 0.2123764109855858 -15.98639586710108 2.88483664257106 16.12642020221242 0.2123388549923344 13.80722562885067 0.169185426859677 15.92843001220545 2.884799078478925 -13.86446578634248 0.2080251464501503 -13.87008147872469 -2.473959308767584 -16.18365094042712 0.2511724367599241 13.81212377347374 -2.47398692214609 13.8065033197383 0.2079975307914403 16.12569800729954 0.2511448210645306 -13.92494684437629 -2.517198155654229 -16.24051475529805 -2.526288577242352 -16.23794953086601 0.2084146666107355 16.18257905510459 -2.526342953705542 13.8670063789047 -2.517252532117403 16.18001383595163 0.2083602901524978 -13.52001637528098 -5.33607329619298 -16.23979030598128 -2.707268479957214 -13.92422244310166 -2.698165829005447 16.18185434755122 -2.707388557209061 13.46207921431993 -5.336193364330121 13.86628171939325 -2.698285906288855 -13.3838787709003 -5.214761861270069 -15.70455385173568 -5.214761861270069 -16.10638680846293 -2.588788711866555 15.64659092828793 -5.214788734311799 13.32590988752191 -5.214788734311799 16.04841912021596 -2.588815587613281</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"602\" source=\"#ID1462\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1458\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1456\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1457\"/>\r\n                </vertices>\r\n                <triangles count=\"204\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1458\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1459\"/>\r\n                    <p>0 0 1 1 2 2 1 3 0 4 6 5 0 6 2 7 8 8 1 9 10 10 2 11 12 12 1 13 6 14 6 15 0 16 14 17 16 18 0 19 8 20 2 21 18 22 8 23 10 24 20 25 2 26 1 27 22 28 10 29 22 30 1 31 12 32 24 33 12 34 6 35 26 36 6 37 14 38 14 39 0 40 16 41 16 42 8 43 28 44 8 45 18 46 30 47 2 48 32 49 18 50 2 51 20 52 32 53 34 54 20 55 10 56 22 57 36 58 10 59 38 60 22 61 12 62 24 63 40 64 12 65 24 66 6 67 42 68 42 69 6 70 26 71 26 72 14 73 44 74 14 75 16 76 28 77 8 78 30 79 28 80 30 81 18 82 46 83 18 84 32 85 48 86 32 87 20 88 50 89 36 90 34 91 10 92 20 93 34 94 52 95 22 96 54 97 36 98 38 99 54 100 22 101 40 102 38 103 12 104 40 105 24 106 56 107 24 108 42 109 58 110 42 111 26 112 60 113 44 114 14 115 28 116 26 117 44 118 62 119 30 120 64 121 28 122 30 123 46 124 66 125 46 126 18 127 68 128 68 129 18 130 48 131 48 132 32 133 70 134 70 135 32 136 50 137 20 138 52 139 50 140 36 141 72 142 34 143 52 144 34 145 74 146 54 147 72 148 36 149 76 150 54 151 38 152 76 153 38 154 40 155 40 156 56 157 78 158 56 159 24 160 58 161 42 162 80 163 58 164 42 165 60 166 80 167 26 168 82 169 60 170 28 171 64 172 44 173 26 174 62 175 82 176 44 177 84 178 62 179 30 180 66 181 64 182 46 183 86 184 66 185 46 186 68 187 86 188 88 189 89 190 90 191 89 192 94 193 95 194 70 195 50 196 98 197 50 198 52 199 100 200 72 201 102 202 34 203 52 204 74 205 104 206 34 207 102 208 74 209 106 210 72 211 54 212 76 213 108 214 54 215 106 216 54 215 108 214 110 217 76 218 40 219 78 220 56 221 112 222 110 223 40 224 78 225 56 226 58 227 114 228 58 229 80 230 116 231 118 232 119 233 120 234 119 235 124 236 125 237 64 238 84 239 44 240 82 241 62 242 128 243 84 244 128 245 62 246 64 247 66 248 130 249 86 250 132 251 66 252 134 253 88 254 135 255 88 256 90 257 135 258 89 259 95 260 90 261 94 262 138 263 95 264 98 265 50 266 100 267 100 268 52 269 104 270 72 271 140 272 102 273 104 274 74 275 142 276 102 277 144 278 74 279 140 280 72 281 106 282 76 283 146 284 108 285 106 286 108 285 146 284 146 287 76 288 110 289 56 290 114 291 112 292 78 293 112 294 148 295 150 296 110 297 78 298 58 299 116 300 114 301 120 302 119 303 125 304 152 305 118 306 120 307 125 308 124 309 154 310 64 311 130 312 84 313 124 314 156 315 154 316 84 317 158 318 128 319 66 320 132 321 130 322 134 323 160 324 161 325 134 326 135 327 160 328 90 329 164 330 135 331 90 332 95 333 166 334 95 335 138 336 168 337 98 338 100 339 170 340 100 341 104 342 172 343 140 344 174 345 102 346 74 347 144 348 142 349 104 350 142 351 176 352 102 353 178 354 144 355 180 356 140 357 106 358 180 359 106 360 146 361 182 362 146 363 110 364 112 365 114 366 184 367 150 368 78 369 148 370 148 371 112 372 186 373 188 374 110 375 150 376 114 377 116 378 190 379 120 380 125 381 192 382 194 383 152 384 120 385 196 386 125 387 154 388 84 389 130 390 158 391 154 392 156 393 198 394 198 395 156 396 200 397 90 398 166 399 164 400 95 401 168 402 166 403 138 404 202 405 168 406 170 407 100 408 172 409 172 410 104 411 204 412 102 413 174 414 178 415 140 416 206 417 174 418 104 419 176 420 208 421 206 422 140 423 180 424 210 425 180 426 146 427 210 428 146 429 182 430 182 431 110 432 188 433 112 434 184 435 212 436 114 437 190 438 184 439 186 440 112 441 214 442 192 443 125 444 196 445 194 446 120 447 192 448 216 449 152 450 194 451 166 452 218 453 164 454 168 455 220 456 166 457 202 458 222 459 168 460 104 461 208 462 204 463 174 464 224 465 178 466 206 467 226 468 174 469 228 470 206 471 180 472 228 470 180 472 210 473 230 474 210 475 182 476 232 477 182 478 188 479 214 480 112 481 212 482 234 483 192 484 196 485 236 486 194 487 192 488 238 489 216 490 194 491 166 492 220 493 218 494 168 495 240 496 220 497 168 498 222 499 240 500 242 501 222 502 202 503 174 504 226 505 224 506 206 507 244 508 226 509 244 510 206 471 228 470 228 470 210 473 246 511 230 512 246 513 210 514 230 515 182 516 232 517 236 518 192 519 234 520 248 521 194 522 236 523 238 524 250 525 216 526 238 527 194 528 248 529 242 530 252 531 222 532 226 533 254 534 224 535 244 536 256 537 226 538 258 539 246 540 230 541 260 542 230 543 232 544 262 545 250 546 238 547 264 548 252 549 242 550 256 551 254 552 226 553 260 554 258 555 230 556 262 557 266 558 250 559 268 560 252 561 264 562 256 563 270 564 254 565 272 566 258 567 260 568 262 569 274 570 266 571 268 572 276 573 252 574 278 575 274 576 262 577 268 578 280 579 276 580 282 581 274 582 278 583 280 584 284 585 276 586 286 587 282 588 278 589 288 590 284 591 280 592 286 593 290 594 282 595 288 596 292 597 284 598 294 599 290 600 286 601</p>\r\n                </triangles>\r\n                <triangles count=\"204\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1458\"/>\r\n                    <p>3 4 5 7 5 4 9 3 5 3 11 4 7 4 13 15 5 7 9 5 17 9 19 3 3 21 11 11 23 4 13 4 23 7 13 25 15 7 27 17 5 15 29 9 17 31 19 9 19 33 3 33 21 3 11 21 35 11 37 23 13 23 39 13 41 25 43 7 25 27 7 43 45 15 27 29 17 15 29 31 9 47 19 31 49 33 19 51 21 33 11 35 37 53 35 21 37 55 23 23 55 39 13 39 41 57 25 41 59 43 25 61 27 43 29 15 45 63 45 27 29 65 31 67 47 31 69 19 47 49 19 69 71 33 49 51 33 71 51 53 21 35 73 37 75 35 53 37 73 55 39 55 77 41 39 77 79 57 41 59 25 57 59 81 43 81 61 43 61 83 27 45 65 29 83 63 27 63 85 45 65 67 31 67 87 47 87 69 47 91 92 93 96 97 92 99 51 71 101 53 51 35 103 73 105 75 53 75 103 35 55 73 107 109 55 107 55 109 77 41 77 111 113 57 79 79 41 111 115 59 57 117 81 59 121 122 123 126 127 122 45 85 65 129 63 83 63 129 85 131 67 65 67 133 87 136 93 137 136 91 93 91 96 92 96 139 97 101 51 99 105 53 101 103 141 73 143 75 105 75 145 103 107 73 141 147 109 107 109 147 77 111 77 147 113 115 57 149 113 79 79 111 151 115 117 59 126 122 121 121 123 153 155 127 126 85 131 65 155 157 127 129 159 85 131 133 67 162 163 137 163 136 137 136 165 91 167 96 91 169 139 96 171 101 99 173 105 101 103 175 141 143 145 75 177 143 105 145 179 103 107 141 181 147 107 181 111 147 183 185 115 113 149 79 151 187 113 149 151 111 189 191 117 115 193 126 121 121 153 195 155 126 197 159 131 85 199 157 155 201 157 199 165 167 91 167 169 96 169 203 139 173 101 171 205 105 173 179 175 103 175 207 141 209 177 105 181 141 207 147 181 211 183 147 211 189 111 183 213 185 113 185 191 115 215 113 187 197 126 193 193 121 195 195 153 217 165 219 167 167 221 169 169 223 203 205 209 105 179 225 175 175 227 207 181 207 229 211 181 229 183 211 231 189 183 233 213 113 215 197 193 235 193 195 237 195 217 239 219 221 167 221 241 169 241 223 169 203 223 243 225 227 175 227 245 207 229 207 245 247 211 229 211 247 231 233 183 231 235 193 237 237 195 249 217 251 239 249 195 239 223 253 243 225 255 227 227 257 245 231 247 259 233 231 261 239 251 263 243 253 265 227 255 257 231 259 261 251 267 263 265 253 269 255 271 257 261 259 273 267 275 263 253 277 269 263 275 279 277 281 269 279 275 283 277 285 281 279 283 287 281 285 289 283 291 287 285 293 289 287 291 295</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1463\">\r\n            <mesh>\r\n                <source id=\"ID1464\">\r\n                    <float_array count=\"24\" id=\"ID1467\">-0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7728267908096314 0.3120907545089722 0.236614540219307 -0.7728267908096314 0.3120907545089722 0.236614540219307 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" source=\"#ID1467\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1465\">\r\n                    <float_array count=\"24\" id=\"ID1468\">-0.100695794754597 -0.9856927002483367 -0.1351675167926194 -0.3954628486908789 -0.9144944149380586 -0.0854932766502305 -0.7920645011639883 -0.5938971135727662 0.1411383877114198 0.7920645011639883 0.5938971135727662 -0.1411383877114198 0.3954628486908789 0.9144944149380586 0.0854932766502305 0.100695794754597 0.9856927002483367 0.1351675167926194 -0.7834146661868462 -0.5940033022008459 0.1828155840672318 0.7834146661868462 0.5940033022008459 -0.1828155840672318</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" source=\"#ID1468\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1466\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1464\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1465\"/>\r\n                </vertices>\r\n                <triangles count=\"4\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1466\"/>\r\n                    <p>0 1 2 3 4 5 1 6 2 3 7 4</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1469\">\r\n            <mesh>\r\n                <source id=\"ID1470\">\r\n                    <float_array count=\"78\" id=\"ID1473\">-0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.3545526266098023 0.4489807486534119 0.2332167774438858 -0.3545526266098023 0.4489807486534119 0.2332167774438858 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.5312814712524414 0.4448592662811279 0.2332167774438858 -0.5312814712524414 0.4448592662811279 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.5847116112709045 0.447659969329834 0.2332167774438858 -0.5847116112709045 0.447659969329834 0.2332167774438858 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5898233652114868 0.6375383734703064 0.1986889690160751</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID1473\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1471\">\r\n                    <float_array count=\"78\" id=\"ID1474\">0.1159152314789492 -0.5849783904363448 -0.8027228300189829 0.02541770183677723 -0.5744325664555302 -0.818157177459594 0.002455958872292993 -0.134052915566394 -0.990971131816748 -0.002455958872292993 0.134052915566394 0.990971131816748 -0.02541770183677723 0.5744325664555302 0.818157177459594 -0.1159152314789492 0.5849783904363448 0.8027228300189829 0.01360116452442704 -0.1197858586092047 -0.9927065812216794 -0.01360116452442704 0.1197858586092047 0.9927065812216794 0.003485675612845834 -0.1357584235591588 -0.990735837899414 -0.003485675612845834 0.1357584235591588 0.990735837899414 0.3120306604070797 -0.7954287677809169 -0.5195478248943536 -0.3120306604070797 0.7954287677809169 0.5195478248943536 0.001228544436429594 -0.530792278723088 -0.8475010604869587 -0.001228544436429594 0.530792278723088 0.8475010604869587 0.0009837850219002171 -0.5287955729337499 -0.8487486519651727 -0.0009837850219002171 0.5287955729337499 0.8487486519651727 0.02366492200974112 -0.5517765660279215 -0.8336561597257634 -0.02366492200974112 0.5517765660279215 0.8336561597257634 0.3639947690900174 -0.1116367124113476 -0.9246864617355932 -0.3639947690900174 0.1116367124113476 0.9246864617355932 -0.002892945757292406 -0.5261264371370477 -0.8504014363877342 0.002892945757292406 0.5261264371370477 0.8504014363877342 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 -0.5805296449644594 0.7970800414865904 0.1662790990508843 0.5344913977113528 -0.4762571258614551 -0.6982106385889222 -0.5344913977113528 0.4762571258614551 0.6982106385889222</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID1474\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1472\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1470\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1471\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1472\"/>\r\n                    <p>0 1 2 3 4 5 6 0 2 3 5 7 2 1 8 9 4 3 10 0 6 7 5 11 12 6 2 3 7 13 14 2 8 9 3 15 8 1 16 17 4 9 18 10 6 7 11 19 20 6 12 13 7 21 12 2 14 15 3 13 22 10 18 19 11 23 20 18 6 7 19 21 22 18 24 25 19 23 24 18 20 21 19 25</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1475\">\r\n            <mesh>\r\n                <source id=\"ID1476\">\r\n                    <float_array count=\"198\" id=\"ID1479\">-0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5370995402336121 0.7065956592559815 0.1053698509931564 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5370995402336121 0.7065956592559815 0.1053698509931564 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.3720340728759766 0.7059378027915955 0.1053698509931564 -0.3720340728759766 0.7059378027915955 0.1053698509931564 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5370995402336121 0.7579361200332642 -0.08268103003501892 -0.5370995402336121 0.7579361200332642 -0.08268103003501892 -0.374770998954773 0.7579371929168701 -0.08268103003501892 -0.374770998954773 0.7579371929168701 -0.08268103003501892 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.5373399257659912 0.7229641675949097 -0.2198816239833832 -0.5373399257659912 0.7229641675949097 -0.2198816239833832 -0.3733293414115906 0.7212921380996704 -0.2198816239833832 -0.3733293414115906 0.7212921380996704 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.3628515005111694 0.5584809184074402 -0.2725684344768524 -0.3628515005111694 0.5584809184074402 -0.2725684344768524 -0.5319955945014954 0.5639436841011047 -0.2725684344768524 -0.5319955945014954 0.5639436841011047 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.5847000479698181 0.5650895833969116 -0.2725684344768524 -0.5847000479698181 0.5650895833969116 -0.2725684344768524 -0.5855176448822022 0.4595295786857605 -0.2725684344768524 -0.5855176448822022 0.4595295786857605 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.3558951914310455 0.4595295786857605 -0.2725684344768524 -0.3558951914310455 0.4595295786857605 -0.2725684344768524 -0.5304210782051086 0.4595295786857605 -0.2725684344768524 -0.5304210782051086 0.4595295786857605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.1097748056054115 0.3181760609149933 -0.273921549320221 -0.1097748056054115 0.3181760609149933 -0.273921549320221</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID1479\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1477\">\r\n                    <float_array count=\"198\" id=\"ID1480\">-0.002892945757292406 -0.5261264371370477 -0.8504014363877342 0.008706503524001734 -0.8994941718400871 -0.4368460044708004 0.5344913977113528 -0.4762571258614551 -0.6982106385889222 -0.5344913977113528 0.4762571258614551 0.6982106385889222 -0.008706503524001734 0.8994941718400871 0.4368460044708004 0.002892945757292406 0.5261264371370477 0.8504014363877342 0.02363037582786412 -0.902347833097122 -0.4303603065376295 -0.02363037582786412 0.902347833097122 0.4303603065376295 -0.001023532765410392 -0.8995423755520391 -0.4368323098934793 0.001023532765410392 0.8995423755520391 0.4368323098934793 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 0.9696804631133598 -0.2296304749271341 -0.08360409344642968 -0.9696804631133598 0.2296304749271341 0.08360409344642968 -0.5805296449644594 0.7970800414865904 0.1662790990508843 -0.0005890438034978813 -0.9999601116063219 -0.008912251324439506 0.0005890438034978813 0.9999601116063219 0.008912251324439506 -0.002310012349595028 -0.9999946975497346 -0.002295368240525906 0.002310012349595028 0.9999946975497346 0.002295368240525906 0.001228544436429594 -0.530792278723088 -0.8475010604869587 -0.001228544436429594 0.530792278723088 0.8475010604869587 0.9738575501752567 -0.2231741112042929 -0.04236493898049872 -0.9738575501752567 0.2231741112042929 0.04236493898049872 0.004762179403278648 -0.9999158367782302 -0.01206818161209902 -0.004762179403278648 0.9999158367782302 0.01206818161209902 -0.0001054259024026388 -0.9999945805237475 0.00329056355564671 0.0001054259024026388 0.9999945805237475 -0.00329056355564671 -0.0002528615801463851 -0.8990032443558421 -0.4379418942036619 0.0002528615801463851 0.8990032443558421 0.4379418942036619 0.9735632488975363 -0.2269778489099383 0.02560579036645414 -0.9735632488975363 0.2269778489099383 -0.02560579036645414 0.01015304597198024 -0.7326994030879146 0.6804766714385618 -0.01015304597198024 0.7326994030879146 -0.6804766714385618 -0.006235246769021037 -0.7266493421561909 0.6869802437055265 0.006235246769021037 0.7266493421561909 -0.6869802437055265 -0.004959970467436007 -0.7176069837348265 0.6964306251077467 0.004959970467436007 0.7176069837348265 -0.6964306251077467 0.0009837850219002171 -0.5287955729337499 -0.8487486519651727 -0.0009837850219002171 0.5287955729337499 0.8487486519651727 0.9570454198941 -0.2670495177232334 0.1129097840911679 -0.9570454198941 0.2670495177232334 -0.1129097840911679 0.0324233640709075 -0.720253582420105 0.692952741875902 -0.0324233640709075 0.720253582420105 -0.692952741875902 0.9623630987746608 -0.206648239703785 0.1765043091376513 -0.9623630987746608 0.206648239703785 -0.1765043091376513 -0.001696972163550282 -0.1552309794340162 0.9878767449988041 0.001696972163550282 0.1552309794340162 -0.9878767449988041 -0.003501671595040209 -0.161037683266441 0.9869420463554169 0.003501671595040209 0.161037683266441 -0.9869420463554169 -0.0009664958691925261 -0.1310146610866349 0.9913799596855328 0.0009664958691925261 0.1310146610866349 -0.9913799596855328 0.5189876165657845 -0.1695060220436144 0.8378063990817426 -0.5189876165657845 0.1695060220436144 -0.8378063990817426 0.4533044710605235 -0.06671512823443905 0.8888555271703055 -0.4533044710605235 0.06671512823443905 -0.8888555271703055 2.506645839339887e-005 -0.005818798789160718 0.9999830703328551 -2.506645839339887e-005 0.005818798789160718 -0.9999830703328551 0.0008486584163376593 -0.002669914770303769 0.9999960756593056 -0.0008486584163376593 0.002669914770303769 -0.9999960756593056 0 0 1 -0 -0 -1 0.8647397467261543 -0.493715428752364 0.09203393854364951 -0.8647397467261543 0.493715428752364 -0.09203393854364951 0.0009780771413953171 -0.002169760516917563 0.9999971677481916 -0.0009780771413953171 0.002169760516917563 -0.9999971677481916 0.0008261095942327029 -0.008133842201674421 0.9999665785184907 -0.0008261095942327029 0.008133842201674421 -0.9999665785184907</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID1480\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1478\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1476\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1477\"/>\r\n                </vertices>\r\n                <triangles count=\"42\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1478\"/>\r\n                    <p>0 1 2 1 6 2 8 1 0 10 2 11 14 6 1 8 16 1 18 8 0 20 10 11 14 22 6 16 14 1 24 16 8 26 8 18 20 11 28 30 22 14 16 32 14 24 34 16 26 24 8 36 26 18 38 20 28 32 30 14 30 40 22 34 32 16 42 38 28 30 32 44 40 30 46 32 34 48 50 38 42 44 32 48 46 30 44 50 40 46 52 38 50 44 48 54 46 44 56 50 46 58 60 38 52 52 50 58 56 44 54 58 46 56 62 52 58 64 56 54 62 58 56 62 56 64</p>\r\n                </triangles>\r\n                <triangles count=\"42\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1478\"/>\r\n                    <p>3 4 5 3 7 4 5 4 9 12 3 13 4 7 15 4 17 9 5 9 19 12 13 21 7 23 15 4 15 17 9 17 25 19 9 27 29 12 21 15 23 31 15 33 17 17 35 25 9 25 27 19 27 37 29 21 39 15 31 33 23 41 31 17 33 35 29 39 43 45 33 31 47 31 41 49 35 33 43 39 51 49 33 45 45 31 47 47 41 51 51 39 53 55 49 45 57 45 47 59 47 51 53 39 61 59 51 53 55 45 57 57 47 59 59 53 63 55 57 65 57 59 63 65 57 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1481\">\r\n            <mesh>\r\n                <source id=\"ID1482\">\r\n                    <float_array count=\"3072\" id=\"ID1485\">-0.7704972624778748 0.4213694334030151 -0.2747071981430054 -0.7704972624778748 0.3214001655578613 -0.2747071981430054 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7704972624778748 0.3214001655578613 -0.2747071981430054 -0.7704972624778748 0.4213694334030151 -0.2747071981430054 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7711951732635498 0.8992693424224854 -0.2752210795879364 -0.7711951732635498 0.8992693424224854 -0.2752210795879364 -0.7704972624778748 -0.4633741080760956 -0.2747071981430054 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7704972624778748 -0.4633741080760956 -0.2747071981430054 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.7809916734695435 0.9031000733375549 -0.2496751993894577 -0.7809916734695435 0.9031000733375549 -0.2496751993894577 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8140090107917786 -0.7940167188644409 -0.08648346364498138 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.8140090107917786 -0.7940167188644409 -0.08648346364498138 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8207589983940125 -0.8301818370819092 -0.02805159240961075 -0.8207589983940125 -0.8301818370819092 -0.02805159240961075 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.7726795077323914 0.312279224395752 0.2324964851140976 -0.7726795077323914 0.312279224395752 0.2324964851140976 -0.8207589983940125 -0.8697569370269775 0.02455062046647072 -0.8207589983940125 -0.8697569370269775 0.02455062046647072 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.8194112181663513 -0.9438937306404114 0.07964269816875458 -0.8194112181663513 -0.9438937306404114 0.07964269816875458 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7497841715812683 0.2803181707859039 0.2984566986560822 -0.7497841715812683 0.2803181707859039 0.2984566986560822 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7746564745903015 -0.8304092884063721 0.2270265072584152 -0.7746564745903015 -0.8304092884063721 0.2270265072584152 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.8160943388938904 -1.033355116844177 0.1124019175767899 -0.8160943388938904 -1.033355116844177 0.1124019175767899 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7746564745903015 -1.029682159423828 0.2270265072584152 -0.7746564745903015 -1.029682159423828 0.2270265072584152 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.8116487264633179 -1.128642797470093 0.1301879435777664 -0.8116487264633179 -1.128642797470093 0.1301879435777664 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7481676936149597 -1.030174612998962 0.297200620174408 -0.7481676936149597 -1.030174612998962 0.297200620174408 -0.7481676936149597 -0.8389725685119629 0.2947215437889099 -0.7481676936149597 -0.8389725685119629 0.2947215437889099 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7746564745903015 -1.188867688179016 0.2275206297636032 -0.7746564745903015 -1.188867688179016 0.2275206297636032 -0.7211520075798035 -0.8380235433578491 0.3453765213489533 -0.7211520075798035 -0.8380235433578491 0.3453765213489533 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.8134415149688721 -1.233547210693359 0.1249729543924332 -0.8134415149688721 -1.233547210693359 0.1249729543924332 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.7181724905967712 -1.030174612998962 0.3453765213489533 -0.7181724905967712 -1.030174612998962 0.3453765213489533 -0.7464496493339539 -1.17504346370697 0.2979675829410553 -0.7464496493339539 -1.17504346370697 0.2979675829410553 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.7746564745903015 -1.300840497016907 0.2215401381254196 -0.7746564745903015 -1.300840497016907 0.2215401381254196 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.818085253238678 -1.344445824623108 0.08846646547317505 -0.818085253238678 -1.344445824623108 0.08846646547317505 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7163878679275513 -1.179451704025269 0.3430816829204559 -0.7163878679275513 -1.179451704025269 0.3430816829204559 -0.7474802732467651 -1.294782400131226 0.2903444766998291 -0.7474802732467651 -1.294782400131226 0.2903444766998291 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7786112427711487 -1.4743812084198 0.2122804075479507 -0.7786112427711487 -1.4743812084198 0.2122804075479507 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.8198900818824768 -1.411396861076355 0.03317912295460701 -0.8198900818824768 -1.411396861076355 0.03317912295460701 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.6794602870941162 -1.172713875770569 0.3437448143959045 -0.6794602870941162 -1.172713875770569 0.3437448143959045 -0.7141572833061218 -1.303147315979004 0.3360871374607086 -0.7141572833061218 -1.303147315979004 0.3360871374607086 -0.7498881816864014 -1.477022528648377 0.2740126550197601 -0.7498881816864014 -1.477022528648377 0.2740126550197601 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.7819064259529114 -1.59941303730011 0.1968471556901932 -0.7819064259529114 -1.59941303730011 0.1968471556901932 -0.6524924635887146 -1.173845291137695 0.3425645530223846 -0.6524924635887146 -1.173845291137695 0.3425645530223846 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1598972976207733 0.3079861700534821 0.4518939852714539 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.604820966720581 0.05439910665154457 -0.8011427521705627 -1.604820966720581 0.05439910665154457 -0.6765456199645996 -1.305132031440735 0.3258563876152039 -0.6765456199645996 -1.305132031440735 0.3258563876152039 -0.6524924635887146 -1.303990125656128 0.3261548578739166 -0.6524924635887146 -1.303990125656128 0.3261548578739166 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.71500164270401 -1.478913545608521 0.3202499747276306 -0.71500164270401 -1.478913545608521 0.3202499747276306 -0.7503867149353027 -1.605847239494324 0.2616663873195648 -0.7503867149353027 -1.605847239494324 0.2616663873195648 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3520008623600006 0.4234864413738251 0.4407898485660553 -0.8153771162033081 -1.476347208023071 -0.05023443698883057 -0.8153771162033081 -1.476347208023071 -0.05023443698883057 -0.8011427521705627 -1.597437262535095 -0.02763602323830128 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.597437262535095 -0.02763602323830128 -0.7843642234802246 -1.743004322052002 0.1827057152986527 -0.7843642234802246 -1.743004322052002 0.1827057152986527 -0.6225963234901428 -1.305356502532959 0.3261548578739166 -0.6225963234901428 -1.305356502532959 0.3261548578739166 -0.6213556528091431 -1.173213005065918 0.3425645530223846 -0.6213556528091431 -1.173213005065918 0.3425645530223846 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.5571752190589905 0.2870903313159943 0.4211375415325165 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.597437262535095 -0.09717599302530289 -0.8011427521705627 -1.597437262535095 -0.09717599302530289 -0.8011427521705627 -1.746039509773254 0.05331587418913841 -0.8011427521705627 -1.746039509773254 0.05331587418913841 -0.6745424270629883 -1.473710179328919 0.3142852187156677 -0.6745424270629883 -1.473710179328919 0.3142852187156677 -0.6521297693252564 -1.473981022834778 0.2955112159252167 -0.6521297693252564 -1.473981022834778 0.2955112159252167 -0.6222109794616699 -1.473212003707886 0.2955112159252167 -0.6222109794616699 -1.473212003707886 0.2955112159252167 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.7156392335891724 -1.612327575683594 0.3050930202007294 -0.7156392335891724 -1.612327575683594 0.3050930202007294 -0.7640226483345032 -1.752110004425049 0.2460802644491196 -0.7640226483345032 -1.752110004425049 0.2460802644491196 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5573503971099854 0.4234864413738251 0.4212178885936737 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.731833338737488 -0.09522708505392075 -0.8011427521705627 -1.731833338737488 -0.09522708505392075 -0.8011427521705627 -1.739925384521484 -0.0306595154106617 -0.8011427521705627 -1.739925384521484 -0.0306595154106617 -0.7859653830528259 -1.849237442016602 0.1747838407754898 -0.7859653830528259 -1.849237442016602 0.1747838407754898 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.4741233587265015 -1.305356502532959 0.3261548578739166 -0.4741233587265015 -1.305356502532959 0.3261548578739166 -0.513939380645752 -1.173213005065918 0.3425645530223846 -0.513939380645752 -1.173213005065918 0.3425645530223846 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6549683213233948 0.2769641578197479 0.3925894796848297 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.7960734963417053 -1.730340600013733 -0.1583104282617569 -0.7960734963417053 -1.730340600013733 -0.1583104282617569 -0.8011427521705627 -1.85834276676178 0.05595642700791359 -0.8011427521705627 -1.85834276676178 0.05595642700791359 -0.6725387573242188 -1.600142955780029 0.2973578274250031 -0.6725387573242188 -1.600142955780029 0.2973578274250031 -0.6505559682846069 -1.602483987808228 0.2705280482769013 -0.6505559682846069 -1.602483987808228 0.2705280482769013 -0.6175405383110046 -1.602517247200012 0.2705280482769013 -0.6175405383110046 -1.602517247200012 0.2705280482769013 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.7154456973075867 -1.752095222473145 0.2910460829734802 -0.7154456973075867 -1.752095222473145 0.2910460829734802 -0.7698361277580261 -1.831026315689087 0.2328774482011795 -0.7698361277580261 -1.831026315689087 0.2328774482011795 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 -0.8006090521812439 -1.604159355163574 -0.155659943819046 -0.8006090521812439 -1.604159355163574 -0.155659943819046 -0.8011427521705627 -1.861560702323914 -0.0306595154106617 -0.8011427521705627 -1.861560702323914 -0.0306595154106617 -0.8011427521705627 -1.859525799751282 -0.0991249606013298 -0.8011427521705627 -1.859525799751282 -0.0991249606013298 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2030248194932938 -1.17602002620697 0.3425645530223846 -0.2030248194932938 -1.17602002620697 0.3425645530223846 0.6997751593589783 0.2703775763511658 0.354082316160202 0.6997751593589783 0.2703775763511658 0.354082316160202 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7820540070533752 -1.731492161750794 -0.2158130407333374 -0.7820540070533752 -1.731492161750794 -0.2158130407333374 -0.7960734963417053 -1.858019590377808 -0.1583313196897507 -0.7960734963417053 -1.858019590377808 -0.1583313196897507 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.6705343127250671 -1.744048237800598 0.2750363051891327 -0.6705343127250671 -1.744048237800598 0.2750363051891327 -0.6491485834121704 -1.744982481002808 0.2377863973379135 -0.6491485834121704 -1.744982481002808 0.2377863973379135 -0.6203603148460388 -1.742636442184448 0.2377863973379135 -0.6203603148460388 -1.742636442184448 0.2377863973379135 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7660660147666931 -1.904120802879334 0.2353758960962296 0.6885963678359985 0.4193951189517975 0.3593906462192535 0.6885963678359985 0.4193951189517975 0.3593906462192535 -0.7805264592170715 -1.615131855010986 -0.2230612486600876 -0.7805264592170715 -1.615131855010986 -0.2230612486600876 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7879398465156555 -1.996179938316345 -0.0991249606013298 -0.7879398465156555 -1.996179938316345 -0.0991249606013298 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449317671358585 -1.17882776260376 0.3425645530223846 -0.001449317671358585 -1.17882776260376 0.3425645530223846 0.7468852996826172 0.2803181707859039 0.2984566986560822 0.7468852996826172 0.2803181707859039 0.2984566986560822 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7820540070533752 -1.859680533409119 -0.2195352166891098 -0.7820540070533752 -1.859680533409119 -0.2195352166891098 -0.764397144317627 -1.623394966125488 -0.2698330581188202 -0.764397144317627 -1.623394966125488 -0.2698330581188202 -0.7849075794219971 -1.98232901096344 -0.1583313196897507 -0.7849075794219971 -1.98232901096344 -0.1583313196897507 -0.6673435568809509 -1.82667601108551 0.2628661394119263 -0.6673435568809509 -1.82667601108551 0.2628661394119263 -0.6485981941223145 -1.828809261322022 0.2115316838026047 -0.6485981941223145 -1.828809261322022 0.2115316838026047 -0.6190515756607056 -1.828675627708435 0.2114831358194351 -0.6190515756607056 -1.828675627708435 0.2114831358194351 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 0.7468852996826172 0.4189915955066681 0.2977039515972138 0.7468852996826172 0.4189915955066681 0.2977039515972138 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7655863761901856 -1.73902428150177 -0.2654593288898468 -0.7655863761901856 -1.73902428150177 -0.2654593288898468 -0.7655726671218872 -2.044322729110718 -0.09895889461040497 -0.7655726671218872 -2.044322729110718 -0.09895889461040497 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.6603543758392334 -1.904120802879334 0.2353758960962296 0.2001260668039322 -1.17602002620697 0.3425645530223846 0.2001260668039322 -1.17602002620697 0.3425645530223846 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 0.7697807550430298 0.312279224395752 0.2324964851140976 0.7697807550430298 0.312279224395752 0.2324964851140976 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7572376728057861 -1.859680533409119 -0.2654593288898468 -0.7572376728057861 -1.859680533409119 -0.2654593288898468 -0.7723438739776611 -1.952685952186585 -0.2173483222723007 -0.7723438739776611 -1.952685952186585 -0.2173483222723007 -0.7361075282096863 -1.634256482124329 -0.3076135516166687 -0.7361075282096863 -1.634256482124329 -0.3076135516166687 -0.7605022788047791 -2.023205518722534 -0.1581518948078156 -0.7605022788047791 -2.023205518722534 -0.1581518948078156 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.7695745229721069 0.423301488161087 0.2328356057405472 0.7695745229721069 0.423301488161087 0.2328356057405472 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7277590036392212 -1.743023633956909 -0.3158882260322571 -0.7277590036392212 -1.743023633956909 -0.3158882260322571 -0.7142770290374756 -2.065832376480103 -0.09944543987512589 -0.7142770290374756 -2.065832376480103 -0.09944543987512589 0.5110407471656799 -1.173213005065918 0.3425645530223846 0.5110407471656799 -1.173213005065918 0.3425645530223846 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011 -0.7003812193870544 -1.598517417907715 -0.3394664824008942 -0.7003812193870544 -1.598517417907715 -0.3394664824008942 -0.7305502891540527 -1.908180832862854 -0.2644224464893341 -0.7305502891540527 -1.908180832862854 -0.2644224464893341 -0.7482796907424927 -1.984729170799255 -0.2173768430948257 -0.7482796907424927 -1.984729170799255 -0.2173768430948257 -0.6821182370185852 -1.645132303237915 -0.3384934365749359 -0.6821182370185852 -1.645132303237915 -0.3384934365749359 -0.7097958326339722 -2.044126987457275 -0.1583652049303055 -0.7097958326339722 -2.044126987457275 -0.1583652049303055 -0.4238884449005127 -1.952623009681702 0.1164684295654297 -0.4238884449005127 -1.952623009681702 0.1164684295654297 0.4712246954441071 -1.305356502532959 0.3261548578739166 0.4712246954441071 -1.305356502532959 0.3261548578739166 0.7870740294456482 0.4261996150016785 0.1537329405546188 0.7870740294456482 0.4261996150016785 0.1537329405546188 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6998868584632874 -1.74457848072052 -0.3189045786857605 -0.6998868584632874 -1.74457848072052 -0.3189045786857605 -0.666880190372467 -2.044580698013306 -0.09905537962913513 -0.666880190372467 -2.044580698013306 -0.09905537962913513 -0.3737652599811554 -1.973503470420837 0.07559454441070557 -0.3737652599811554 -1.973503470420837 0.07559454441070557 0.6184563636779785 -1.173213005065918 0.3425645530223846 0.6184563636779785 -1.173213005065918 0.3425645530223846 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.619949996471405 -1.078431725502014 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.7982441186904907 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 -0.425421267747879 -1.598517417907715 -0.3394664824008942 -0.425421267747879 -1.598517417907715 -0.3394664824008942 -0.6535030603408814 -1.644188165664673 -0.3349318206310272 -0.6535030603408814 -1.644188165664673 -0.3349318206310272 -0.6806384921073914 -1.948326945304871 -0.2634786665439606 -0.6806384921073914 -1.948326945304871 -0.2634786665439606 -0.6979761719703674 -2.006107807159424 -0.2173768430948257 -0.6979761719703674 -2.006107807159424 -0.2173768430948257 -0.6668106913566589 -1.748111844062805 -0.3100372552871704 -0.6668106913566589 -1.748111844062805 -0.3100372552871704 -0.6619876027107239 -2.02424168586731 -0.1575844436883926 -0.6619876027107239 -2.02424168586731 -0.1575844436883926 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.6040789484977722 -1.973503470420837 0.07559454441070557 -0.6040789484977722 -1.973503470420837 0.07559454441070557 0.6196975111961365 -1.305356502532959 0.3261548578739166 0.6196975111961365 -1.305356502532959 0.3261548578739166 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.7982441186904907 0.4255830943584442 0.01974329724907875 0.7982441186904907 0.4255830943584442 0.01974329724907875 -0.001449264585971832 -1.553421497344971 -0.3157995939254761 -0.001449264585971832 -1.553421497344971 -0.3157995939254761 -0.6268174052238464 -1.647485733032227 -0.3367124497890472 -0.6268174052238464 -1.647485733032227 -0.3367124497890472 -0.6384567618370056 -1.997578978538513 -0.09881686419248581 -0.6384567618370056 -1.997578978538513 -0.09881686419248581 -0.6342340707778931 -1.982501149177551 -0.1579913049936295 -0.6342340707778931 -1.982501149177551 -0.1579913049936295 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.3774064481258392 -2.007932424545288 -0.03081386722624302 -0.3774064481258392 -2.007932424545288 -0.03081386722624302 0.6495939493179321 -1.173845291137695 0.3425645530223846 0.6495939493179321 -1.173845291137695 0.3425645530223846 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.7982441186904907 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 -0.001449264585971832 -1.33904230594635 -0.2504197061061859 -0.001449264585971832 -1.33904230594635 -0.2504197061061859 -0.001449317671358585 -1.642231822013855 -0.3354183435440064 -0.001449317671358585 -1.642231822013855 -0.3354183435440064 -0.6034112572669983 -1.647485733032227 -0.3367124497890472 -0.6034112572669983 -1.647485733032227 -0.3367124497890472 -0.6429769396781921 -1.748111844062805 -0.3091297447681427 -0.6429769396781921 -1.748111844062805 -0.3091297447681427 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6601085662841797 -1.986837506294251 -0.216516375541687 -0.6601085662841797 -1.986837506294251 -0.216516375541687 -0.6524618268013001 -1.911460518836975 -0.2634730935096741 -0.6524618268013001 -1.911460518836975 -0.2634730935096741 -0.6338272094726563 -1.951573252677918 -0.2168276309967041 -0.6338272094726563 -1.951573252677918 -0.2168276309967041 -0.1949691921472549 -2.007932424545288 -0.03081386722624302 -0.1949691921472549 -2.007932424545288 -0.03081386722624302 -0.6168754100799561 -2.006487607955933 -0.03038886189460754 -0.6168754100799561 -2.006487607955933 -0.03038886189460754 0.6495939493179321 -1.303990125656128 0.3261548578739166 0.6495939493179321 -1.303990125656128 0.3261548578739166 0.6193124651908875 -1.473212003707886 0.2955112159252167 0.6193124651908875 -1.473212003707886 0.2955112159252167 0.7970438599586487 0.4232206344604492 -0.1200132966041565 0.7970438599586487 0.4232206344604492 -0.1200132966041565 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4225226640701294 -1.598517417907715 -0.3394666016101837 0.4225226640701294 -1.598517417907715 -0.3394666016101837 -0.1931811571121216 -1.642231822013855 -0.3354183435440064 -0.1931811571121216 -1.642231822013855 -0.3354183435440064 -0.3914590775966644 -1.642231822013855 -0.3383925259113312 -0.3914590775966644 -1.642231822013855 -0.3383925259113312 -0.6225053668022156 -1.746745824813843 -0.3130424916744232 -0.6225053668022156 -1.746745824813843 -0.3130424916744232 -0.6155943870544434 -1.99778163433075 -0.09729073196649551 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6155943870544434 -1.99778163433075 -0.09729073196649551 -0.613030731678009 -1.981651902198792 -0.1575021743774414 -0.613030731678009 -1.981651902198792 -0.1575021743774414 -0.6093374490737915 -1.951626658439636 -0.2170951366424561 -0.6093374490737915 -1.951626658439636 -0.2170951366424561 -0.001449264585971832 -2.007932424545288 -0.03081386722624302 -0.001449264585971832 -2.007932424545288 -0.03081386722624302 -0.1945523172616959 -1.99778163433075 -0.09787315130233765 -0.1945523172616959 -1.99778163433075 -0.09787315130233765 -0.4005182683467865 -1.99778163433075 -0.09787315130233765 -0.4005182683467865 -1.99778163433075 -0.09787315130233765 0.6765615344047546 -1.172713875770569 0.3437448143959045 0.6765615344047546 -1.172713875770569 0.3437448143959045 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.1902825087308884 -1.642231822013855 -0.3354183435440064 0.1902825087308884 -1.642231822013855 -0.3354183435440064 -0.1965046674013138 -1.744363188743591 -0.3111516833305359 -0.1965046674013138 -1.744363188743591 -0.3111516833305359 -0.6007706522941589 -1.744363188743591 -0.3092606365680695 -0.6007706522941589 -1.744363188743591 -0.3092606365680695 -0.6303516626358032 -1.911460518836975 -0.261831134557724 -0.6303516626358032 -1.911460518836975 -0.261831134557724 -0.6051907539367676 -1.911460518836975 -0.2640201151371002 -0.6051907539367676 -1.911460518836975 -0.2640201151371002 -0.001449317671358585 -1.99778163433075 -0.09787315130233765 -0.001449317671358585 -1.99778163433075 -0.09787315130233765 -0.001449317671358585 -1.975146889686585 0.06838828325271606 -0.001449317671358585 -1.975146889686585 0.06838828325271606 0.6736465096473694 -1.305132031440735 0.3258563876152039 0.6736465096473694 -1.305132031440735 0.3258563876152039 0.6492306590080261 -1.473981022834778 0.2955112159252167 0.6492306590080261 -1.473981022834778 0.2955112159252167 0.614641547203064 -1.602517247200012 0.2705280482769013 0.614641547203064 -1.602517247200012 0.2705280482769013 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.7780932784080505 0.4214316308498383 -0.2512775957584381 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 0.6974818110466003 -1.598517417907715 -0.3394666016101837 0.6974818110466003 -1.598517417907715 -0.3394666016101837 0.1936057955026627 -1.744363188743591 -0.3111516833305359 0.1936057955026627 -1.744363188743591 -0.3111516833305359 0.3885605037212372 -1.642231822013855 -0.3383925259113312 0.3885605037212372 -1.642231822013855 -0.3383925259113312 -0.001449317671358585 -1.744363188743591 -0.3139945566654205 -0.001449317671358585 -1.744363188743591 -0.3139945566654205 -0.3942905366420746 -1.744363188743591 -0.3111516833305359 -0.3942905366420746 -1.744363188743591 -0.3111516833305359 -0.4007205367088318 -1.982554078102112 -0.1579129248857498 -0.4007205367088318 -1.982554078102112 -0.1579129248857498 -0.3937298357486725 -1.951626658439636 -0.2179252803325653 -0.3937298357486725 -1.951626658439636 -0.2179252803325653 -0.3913251757621765 -1.911460518836975 -0.2640201151371002 -0.3913251757621765 -1.911460518836975 -0.2640201151371002 0.192070484161377 -2.007932424545288 -0.03081386722624302 0.192070484161377 -2.007932424545288 -0.03081386722624302 0.1927159428596497 -1.975192189216614 0.06858637928962708 0.1927159428596497 -1.975192189216614 0.06858637928962708 -0.1971269398927689 -1.982554078102112 -0.1579129248857498 -0.1971269398927689 -1.982554078102112 -0.1579129248857498 -0.001449317671358585 -1.982554078102112 -0.1579129248857498 -0.001449317671358585 -1.982554078102112 -0.1579129248857498 0.7112580537796021 -1.303147315979004 0.3360871374607086 0.7112580537796021 -1.303147315979004 0.3360871374607086 0.7134889364242554 -1.179451704025269 0.3430816829204559 0.7134889364242554 -1.179451704025269 0.3430816829204559 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.7675982117652893 0.4213694334030151 -0.2747071981430054 0.7675982117652893 0.4213694334030151 -0.2747071981430054 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.623918354511261 -1.647485733032227 -0.3367124497890472 0.623918354511261 -1.647485733032227 -0.3367124497890472 0.3913919627666473 -1.744363188743591 -0.3111516833305359 0.3913919627666473 -1.744363188743591 -0.3111516833305359 0.600512683391571 -1.647485733032227 -0.3367124497890472 0.600512683391571 -1.647485733032227 -0.3367124497890472 -0.1950719803571701 -1.911460518836975 -0.2640201151371002 -0.1950719803571701 -1.911460518836975 -0.2640201151371002 0.1916532665491104 -1.99778163433075 -0.09787315130233765 0.1916532665491104 -1.99778163433075 -0.09787315130233765 0.6716429591178894 -1.473710179328919 0.3142852187156677 0.6716429591178894 -1.473710179328919 0.3142852187156677 0.7121022939682007 -1.478913545608521 0.3202499747276306 0.7121022939682007 -1.478913545608521 0.3202499747276306 0.7152735590934753 -1.030174612998962 0.3453765213489533 0.7152735590934753 -1.030174612998962 0.3453765213489533 0.6476567387580872 -1.602483987808228 0.2705280482769013 0.6476567387580872 -1.602483987808228 0.2705280482769013 0.6174612641334534 -1.742636442184448 0.2377863973379135 0.6174612641334534 -1.742636442184448 0.2377863973379135 0.7675982117652893 0.3214001655578613 -0.2747071981430054 0.7675982117652893 0.3214001655578613 -0.2747071981430054 0.7682967782020569 0.8992693424224854 -0.2752210795879364 0.7682967782020569 0.8992693424224854 -0.2752210795879364 0.7332086563110352 -1.634256482124329 -0.3076135516166687 0.7332086563110352 -1.634256482124329 -0.3076135516166687 0.6506040692329407 -1.644188165664673 -0.3349318206310272 0.6506040692329407 -1.644188165664673 -0.3349318206310272 0.1921732872724533 -1.911460518836975 -0.264020174741745 0.1921732872724533 -1.911460518836975 -0.264020174741745 0.388426661491394 -1.911460518836975 -0.264020174741745 0.388426661491394 -1.911460518836975 -0.264020174741745 0.5978718400001526 -1.744363188743591 -0.3092606365680695 0.5978718400001526 -1.744363188743591 -0.3092606365680695 -0.001449264585971832 -1.911460518836975 -0.264020174741745 -0.001449264585971832 -1.911460518836975 -0.264020174741745 -0.198796808719635 -1.951626658439636 -0.2179252803325653 -0.198796808719635 -1.951626658439636 -0.2179252803325653 0.3745077848434448 -2.007932424545288 -0.03081386722624302 0.3745077848434448 -2.007932424545288 -0.03081386722624302 0.37086620926857 -1.973503470420837 0.07559454441070557 0.37086620926857 -1.973503470420837 0.07559454441070557 -0.001449264585971832 -1.951626658439636 -0.2179252803325653 -0.001449264585971832 -1.951626658439636 -0.2179252803325653 0.1942282319068909 -1.982554078102112 -0.1579129248857498 0.1942282319068909 -1.982554078102112 -0.1579129248857498 0.7445815801620483 -1.294782400131226 0.2903444766998291 0.7445815801620483 -1.294782400131226 0.2903444766998291 0.746989369392395 -1.477022528648377 0.2740126550197601 0.746989369392395 -1.477022528648377 0.2740126550197601 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.7435510754585266 -1.17504346370697 0.2979675829410553 0.7435510754585266 -1.17504346370697 0.2979675829410553 0.5079431533813477 -1.828675627708435 0.210712805390358 0.5079431533813477 -1.828675627708435 0.210712805390358 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7780932784080505 0.9031000733375549 -0.2496751993894577 0.7780932784080505 0.9031000733375549 -0.2496751993894577 0.7614982724189758 -1.623395562171936 -0.2698330581188202 0.7614982724189758 -1.623395562171936 -0.2698330581188202 0.6792197823524475 -1.645132303237915 -0.3384934961795807 0.6792197823524475 -1.645132303237915 -0.3384934961795807 0.6400778889656067 -1.748111844062805 -0.3091297447681427 0.6400778889656067 -1.748111844062805 -0.3091297447681427 0.6196064352989197 -1.746745824813843 -0.313042551279068 0.6196064352989197 -1.746745824813843 -0.313042551279068 0.6022922396659851 -1.911460518836975 -0.264020174741745 0.6022922396659851 -1.911460518836975 -0.264020174741745 0.3976193964481354 -1.99778163433075 -0.09787315130233765 0.3976193964481354 -1.99778163433075 -0.09787315130233765 0.351957768201828 -1.969097256660461 0.0834038257598877 0.351957768201828 -1.969097256660461 0.0834038257598877 0.7127406597137451 -1.612327575683594 0.3050930202007294 0.7127406597137451 -1.612327575683594 0.3050930202007294 0.6696393489837647 -1.600142955780029 0.2973578274250031 0.6696393489837647 -1.600142955780029 0.2973578274250031 0.7474879622459412 -1.605847239494324 0.2616663873195648 0.7474879622459412 -1.605847239494324 0.2616663873195648 0.7182532548904419 -0.8380235433578491 0.3453765213489533 0.7182532548904419 -0.8380235433578491 0.3453765213489533 0.7452688217163086 -1.030174612998962 0.297200620174408 0.7452688217163086 -1.030174612998962 0.297200620174408 0.6462497711181641 -1.744982481002808 0.2377863973379135 0.6462497711181641 -1.744982481002808 0.2377863973379135 0.6161529421806335 -1.828675627708435 0.2114831358194351 0.6161529421806335 -1.828675627708435 0.2114831358194351 0.7675982117652893 -0.4633741080760956 -0.2747071981430054 0.7675982117652893 -0.4633741080760956 -0.2747071981430054 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.7626872658729553 -1.73902428150177 -0.2654593288898468 0.7626872658729553 -1.73902428150177 -0.2654593288898468 0.7248597741127014 -1.743023633956909 -0.3158882260322571 0.7248597741127014 -1.743023633956909 -0.3158882260322571 0.6639117002487183 -1.748111844062805 -0.3100373148918152 0.6639117002487183 -1.748111844062805 -0.3100373148918152 0.3908311724662781 -1.951626658439636 -0.2179252803325653 0.3908311724662781 -1.951626658439636 -0.2179252803325653 0.1958980262279511 -1.951626658439636 -0.2179252803325653 0.1958980262279511 -1.951626658439636 -0.2179252803325653 0.6064390540122986 -1.951626658439636 -0.2170951366424561 0.6064390540122986 -1.951626658439636 -0.2170951366424561 0.6274524927139282 -1.911460518836975 -0.2618311941623688 0.6274524927139282 -1.911460518836975 -0.2618311941623688 0.613976776599884 -2.00648832321167 -0.03038886189460754 0.613976776599884 -2.00648832321167 -0.03038886189460754 0.6011803150177002 -1.973503470420837 0.07559454441070557 0.6011803150177002 -1.973503470420837 0.07559454441070557 0.4209894239902496 -1.952623009681702 0.1164684295654297 0.4209894239902496 -1.952623009681702 0.1164684295654297 0.3978218138217926 -1.982554078102112 -0.1579129248857498 0.3978218138217926 -1.982554078102112 -0.1579129248857498 0.7757121920585632 -1.4743812084198 0.2122804075479507 0.7757121920585632 -1.4743812084198 0.2122804075479507 0.7717577815055847 -1.300840497016907 0.2215401381254196 0.7717577815055847 -1.300840497016907 0.2215401381254196 0.7790074944496155 -1.59941303730011 0.1968471556901932 0.7790074944496155 -1.59941303730011 0.1968471556901932 0.7452688217163086 -0.8389725685119629 0.2947215437889099 0.7452688217163086 -0.8389725685119629 0.2947215437889099 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7717577815055847 -1.188867688179016 0.2275206297636032 0.7717577815055847 -1.188867688179016 0.2275206297636032 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7776272892951965 -1.615131855010986 -0.2230612486600876 0.7776272892951965 -1.615131855010986 -0.2230612486600876 0.7791553735733032 -1.731492877006531 -0.2158130407333374 0.7791553735733032 -1.731492877006531 -0.2158130407333374 0.6969878077507019 -1.74457848072052 -0.3189046382904053 0.6969878077507019 -1.74457848072052 -0.3189046382904053 0.6495630145072937 -1.911460518836975 -0.2634732127189636 0.6495630145072937 -1.911460518836975 -0.2634732127189636 0.6309284567832947 -1.951574444770813 -0.2168276309967041 0.6309284567832947 -1.951574444770813 -0.2168276309967041 0.6126948595046997 -1.99778163433075 -0.09729073196649551 0.6126948595046997 -1.99778163433075 -0.09729073196649551 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7125467658042908 -1.752095222473145 0.2910460829734802 0.7125467658042908 -1.752095222473145 0.2910460829734802 0.7611239552497864 -1.752110004425049 0.2460802644491196 0.7611239552497864 -1.752110004425049 0.2460802644491196 0.6676357984542847 -1.744048237800598 0.2750363051891327 0.6676357984542847 -1.744048237800598 0.2750363051891327 0.7814652919769287 -1.743004322052002 0.1827057152986527 0.7814652919769287 -1.743004322052002 0.1827057152986527 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.7717577815055847 -1.029682159423828 0.2270265072584152 0.7717577815055847 -1.029682159423828 0.2270265072584152 0.7717577815055847 -0.8304092884063721 0.2270265072584152 0.7717577815055847 -0.8304092884063721 0.2270265072584152 0.6456993222236633 -1.828809261322022 0.2115316838026047 0.6456993222236633 -1.828809261322022 0.2115316838026047 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7791553735733032 -1.859680533409119 -0.2195352166891098 0.7791553735733032 -1.859680533409119 -0.2195352166891098 0.7543383836746216 -1.859680533409119 -0.2654593288898468 0.7543383836746216 -1.859680533409119 -0.2654593288898468 0.7276512980461121 -1.908180832862854 -0.2644224464893341 0.7276512980461121 -1.908180832862854 -0.2644224464893341 0.6777392029762268 -1.948328375816345 -0.2634787857532501 0.6777392029762268 -1.948328375816345 -0.2634787857532501 0.6101319193840027 -1.981651902198792 -0.1575021743774414 0.6101319193840027 -1.981651902198792 -0.1575021743774414 0.6313349008560181 -1.982501864433289 -0.1579913049936295 0.6313349008560181 -1.982501864433289 -0.1579913049936295 0.6572094559669495 -1.986838221549988 -0.216516375541687 0.6572094559669495 -1.986838221549988 -0.216516375541687 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.604820966720581 0.05439910665154457 0.7982441186904907 -1.604820966720581 0.05439910665154457 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.7977098822593689 -1.604159355163574 -0.155659943819046 0.7977098822593689 -1.604159355163574 -0.155659943819046 0.7931743264198303 -1.858019590377808 -0.1583313196897507 0.7931743264198303 -1.858019590377808 -0.1583313196897507 0.6590888500213623 -2.02424168586731 -0.1575844436883926 0.6590888500213623 -2.02424168586731 -0.1575844436883926 0.6355575323104858 -1.997578978538513 -0.09881686419248581 0.6355575323104858 -1.997578978538513 -0.09881686419248581 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7669368982315064 -1.831026315689087 0.2328774482011795 0.7669368982315064 -1.831026315689087 0.2328774482011795 0.7830662131309509 -1.849237442016602 0.1747838407754898 0.7830662131309509 -1.849237442016602 0.1747838407754898 0.6644447445869446 -1.82667601108551 0.2628661394119263 0.6644447445869446 -1.82667601108551 0.2628661394119263 0.7982441186904907 -1.746039509773254 0.05331587418913841 0.7982441186904907 -1.746039509773254 0.05331587418913841 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7931743264198303 -1.730340600013733 -0.1583104282617569 0.7931743264198303 -1.730340600013733 -0.1583104282617569 0.7820088863372803 -1.98232901096344 -0.1583313196897507 0.7820088863372803 -1.98232901096344 -0.1583313196897507 0.7694445252418518 -1.952685952186585 -0.2173483222723007 0.7694445252418518 -1.952685952186585 -0.2173483222723007 0.7453804016113281 -1.984729170799255 -0.2173768430948257 0.7453804016113281 -1.984729170799255 -0.2173768430948257 0.6950770616531372 -2.006107807159424 -0.2173768430948257 0.6950770616531372 -2.006107807159424 -0.2173768430948257 0.6639816164970398 -2.044581174850464 -0.09905537962913513 0.6639816164970398 -2.044581174850464 -0.09905537962913513 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7117041945457459 -1.817547917366028 0.285483330488205 0.8151856660842896 -1.344445824623108 0.08846646547317505 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.8151856660842896 -1.344445824623108 0.08846646547317505 0.8169910311698914 -1.411396861076355 0.03317912295460701 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.8169910311698914 -1.411396861076355 0.03317912295460701 0.7982441186904907 -1.597437262535095 -0.02763602323830128 0.7982441186904907 -1.597437262535095 -0.02763602323830128 0.8105422854423523 -1.233547210693359 0.1249729543924332 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.8105422854423523 -1.233547210693359 0.1249729543924332 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.8087496757507324 -1.128642797470093 0.1301879435777664 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.8087496757507324 -1.128642797470093 0.1301879435777664 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.8111097812652588 -0.7940167188644409 -0.08648346364498138 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.8111097812652588 -0.7940167188644409 -0.08648346364498138 0.7982441186904907 -1.597437262535095 -0.09717599302530289 0.7982441186904907 -1.597437262535095 -0.09717599302530289 0.7982441186904907 -1.859525799751282 -0.0991249606013298 0.7982441186904907 -1.859525799751282 -0.0991249606013298 0.7850413918495178 -1.996179938316345 -0.0991249606013298 0.7850413918495178 -1.996179938316345 -0.0991249606013298 0.7068971991539002 -2.044126987457275 -0.1583652049303055 0.7068971991539002 -2.044126987457275 -0.1583652049303055 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7982441186904907 -1.85834276676178 0.05595642700791359 0.7982441186904907 -1.85834276676178 0.05595642700791359 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.739925384521484 -0.0306595154106617 0.7982441186904907 -1.739925384521484 -0.0306595154106617 0.8131956458091736 -1.033355116844177 0.1124019175767899 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.8131956458091736 -1.033355116844177 0.1124019175767899 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.8178597688674927 -0.8301818370819092 -0.02805159240961075 0.8178597688674927 -0.8301818370819092 -0.02805159240961075 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.731833338737488 -0.09522708505392075 0.7982441186904907 -1.731833338737488 -0.09522708505392075 0.7626733183860779 -2.044323444366455 -0.09895889461040497 0.7626733183860779 -2.044323444366455 -0.09895889461040497 0.7576038241386414 -2.023205518722534 -0.1581518948078156 0.7576038241386414 -2.023205518722534 -0.1581518948078156 0.7113782167434692 -2.065833806991577 -0.09944543987512589 0.7113782167434692 -2.065833806991577 -0.09944543987512589 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.8124783635139465 -1.476347923278809 -0.05023443698883057 0.8124783635139465 -1.476347923278809 -0.05023443698883057 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.8165122270584106 -0.9438937306404114 0.07964269816875458 0.8165122270584106 -0.9438937306404114 0.07964269816875458 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -1.861560702323914 -0.0306595154106617 0.7982441186904907 -1.861560702323914 -0.0306595154106617 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.8178598284721375 -0.8697569370269775 0.02455062046647072 0.8178598284721375 -0.8697569370269775 0.02455062046647072 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1024\" source=\"#ID1485\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1483\">\r\n                    <float_array count=\"3072\" id=\"ID1486\">-0.9771900185215559 -0.001586737603416483 -0.2123608955660601 -0.9790417160505522 3.292227695633877e-018 -0.2036598100578263 -0.9999689324618893 1.894445986804272e-005 -0.007882496567513529 0.9999689324618893 -1.894445986804272e-005 0.007882496567513529 0.9790417160505522 -3.292227695633877e-018 0.2036598100578263 0.9771900185215559 0.001586737603416483 0.2123608955660601 -0.9502911551307772 0.0007757361223652627 -0.3113617168402076 0.9502911551307772 -0.0007757361223652627 0.3113617168402076 -0.9999188006678761 -0.0001738576127736409 -0.01274212872509091 0.9999188006678761 0.0001738576127736409 0.01274212872509091 -0.9999689326413301 -8.358683530417662e-019 -0.007882496568928017 0.9999689326413301 8.358683530417662e-019 0.007882496568928017 -0.9432849430408019 0.01059441770911542 -0.3318151210326555 0.9432849430408019 -0.01059441770911542 0.3318151210326555 -0.9472204709051849 -0.002797125391854481 -0.3205706717522704 0.9472204709051849 0.002797125391854481 0.3205706717522704 -0.9822519876469651 -0.005061664463367821 -0.1874977661638847 0.9822519876469651 0.005061664463367821 0.1874977661638847 -0.9790417160505522 -1.045811182739211e-019 -0.2036598100578265 -0.9999689326413301 2.170208064185533e-019 -0.007882496568928015 0.9999689326413301 -2.170208064185533e-019 0.007882496568928015 0.9790417160505522 1.045811182739211e-019 0.2036598100578265 -0.9968881233310588 0.008087498311279936 -0.07841340403620074 0.9968881233310588 -0.008087498311279936 0.07841340403620074 -0.9989409175778646 -0.0347494603399221 -0.0301582193568878 0.9989409175778646 0.0347494603399221 0.0301582193568878 -0.9999689326413301 0 -0.007882496568928017 -0.9999689326413301 0 -0.007882496568928017 0.9999689326413301 -0 0.007882496568928017 0.9999689326413301 -0 0.007882496568928017 -0.8994369480327905 7.741777964543919e-018 -0.4370505422871128 0.8994369480327905 -7.741777964543919e-018 0.4370505422871128 -0.9970361569647415 0.007947672178051453 -0.07652278230651169 0.9970361569647415 -0.007947672178051453 0.07652278230651169 -0.9639392879483925 -0.000743497724044367 -0.266121206146148 0.9639392879483925 0.000743497724044367 0.266121206146148 -0.9974070143424252 -0.06128363998301194 -0.03773013664117783 0.9974070143424252 0.06128363998301194 0.03773013664117783 -0.9781157939340335 1.481576469783222e-018 -0.2080612738036459 -0.9999689326413301 3.8116225473858e-019 -0.007882496568928013 0.9999689326413301 -3.8116225473858e-019 0.007882496568928013 0.9781157939340335 -1.481576469783222e-018 0.2080612738036459 -0.9663092415749675 0.004883560455926994 -0.2573375224954274 0.9663092415749675 -0.004883560455926994 0.2573375224954274 -0.9991782421800318 0.001610189992179519 0.04049997089148081 0.9991782421800318 -0.001610189992179519 -0.04049997089148081 -0.9790874310059494 0.0008247154921036521 -0.2034382517879249 0.9790874310059494 -0.0008247154921036521 0.2034382517879249 -0.9852274316154588 -0.004011911017639334 -0.1712040086049179 0.9852274316154588 0.004011911017639334 0.1712040086049179 -0.9999689326413301 0 -0.007882496568928019 -0.9999689326413301 0 -0.007882496568928019 0.9999689326413301 -0 0.007882496568928019 0.9999689326413301 -0 0.007882496568928019 -0.9971892225895257 0.02017482648119507 -0.07215698668702252 0.9971892225895257 -0.02017482648119507 0.07215698668702252 -0.9992120642586049 0.001957573758255666 0.03964112189430344 0.9992120642586049 -0.001957573758255666 -0.03964112189430344 -0.9856172416564362 0.002474734662910435 -0.1689749349397905 0.9856172416564362 -0.002474734662910435 0.1689749349397905 -0.9663855598534248 -0.001290974715952425 -0.2570939188138557 0.9663855598534248 0.001290974715952425 0.2570939188138557 -0.9999575158879286 -0.001434488811743013 -0.009105419325431454 0.9999575158879286 0.001434488811743013 0.009105419325431454 -0.9890265936715046 0.006176024749959835 0.1476084473491557 0.9890265936715046 -0.006176024749959835 -0.1476084473491557 -0.984522798150021 -0.0004074915144433557 -0.1752560808460546 0.984522798150021 0.0004074915144433557 0.1752560808460546 -0.9996823142354346 0.002893836478710463 0.02503789758186764 0.9996823142354346 -0.002893836478710463 -0.02503789758186764 -0.8613334865459467 0.4933852669413169 0.1211429045377775 -0.8645448626999024 0.4903430408955166 0.1101175854463976 -0.8544213626011464 0.5186865821214917 0.03046907707701686 0.8544213626011464 -0.5186865821214917 -0.03046907707701686 0.8645448626999024 -0.4903430408955166 -0.1101175854463976 0.8613334865459467 -0.4933852669413169 -0.1211429045377775 -0.9891518293142284 0.006988410326678562 0.1467304354434402 0.9891518293142284 -0.006988410326678562 -0.1467304354434402 -0.9837721987850511 -0.003801302179372787 -0.1793817465612573 0.9837721987850511 0.003801302179372787 0.1793817465612573 -1 0 0 1 -0 -0 -0.850767997898328 0.4522143794921146 0.2677610291521756 0.850767997898328 -0.4522143794921146 -0.2677610291521756 -0.9618276394508243 0.002839871854348845 0.2736412379673534 0.9618276394508243 -0.002839871854348845 -0.2736412379673534 -0.8572897278184025 0.4462273448013313 0.2567790476822494 0.8572897278184025 -0.4462273448013313 -0.2567790476822494 -0.9982061105512535 0.003222709143129392 0.05978440435361971 0.9982061105512535 -0.003222709143129392 -0.05978440435361971 -0.9591399644253476 0.0013276724258438 0.2829289061373419 0.9591399644253476 -0.0013276724258438 -0.2829289061373419 -0.8876118350170518 0.3295661439206302 0.3217629362107274 0.8876118350170518 -0.3295661439206302 -0.3217629362107274 -0.8977361771613399 0.3250774706096561 0.2973119478221008 0.8977361771613399 -0.3250774706096561 -0.2973119478221008 -0.9902348384620743 0.004109082403179794 0.1393487715690145 0.9902348384620743 -0.004109082403179794 -0.1393487715690145 -0.8566503694453361 0.002446876006654095 0.5158916139335636 0.8566503694453361 -0.002446876006654095 -0.5158916139335636 -0.9020856819345563 0.1863441929453943 0.3892521858695155 0.9020856819345563 -0.1863441929453943 -0.3892521858695155 -0.9867764024740569 0.004515207692181317 0.1620245179590255 0.9867764024740569 -0.004515207692181317 -0.1620245179590255 -0.8425063325319582 0.01555040831455135 0.5384619433579316 0.8425063325319582 -0.01555040831455135 -0.5384619433579316 -0.906121976113601 0.1894976602978684 0.3781978333433655 0.906121976113601 -0.1894976602978684 -0.3781978333433655 -0.9598789165785798 -0.003077378431222278 0.280397923048518 0.9598789165785798 0.003077378431222278 -0.280397923048518 -0.6347609883576616 0.01155324137621323 0.7726221652741446 0.6347609883576616 -0.01155324137621323 -0.7726221652741446 -0.8966819075516134 0.07771590752586575 0.435800177130564 0.8966819075516134 -0.07771590752586575 -0.435800177130564 -0.9785891255823827 0.003221788367465404 0.2057983075042719 0.9785891255823827 -0.003221788367465404 -0.2057983075042719 -0.9607776263730951 0.00201443888784302 0.277312629890614 0.9607776263730951 -0.00201443888784302 -0.277312629890614 -0.6983489367023467 0.04961210116549678 0.7140359949082725 0.6983489367023467 -0.04961210116549678 -0.7140359949082725 -0.900604689928327 0.09010029011729324 0.425197754227232 0.900604689928327 -0.09010029011729324 -0.425197754227232 -0.9588346583016721 0.0008326970514992843 0.2839637382750413 0.9588346583016721 -0.0008326970514992843 -0.2839637382750413 -0.9164147169425765 -0.00910325530792762 0.4001264766468924 0.9164147169425765 0.00910325530792762 -0.4001264766468924 -0.4464505246919321 0.03803327876922855 0.8939996637070737 0.4464505246919321 -0.03803327876922855 -0.8939996637070737 -0.8969034603948126 0.0200156497148593 0.4417731957671298 0.8969034603948126 -0.0200156497148593 -0.4417731957671298 -0.9765428707314156 0.0004992186759849619 0.2153224846697605 0.9765428707314156 -0.0004992186759849619 -0.2153224846697605 -0.895520692734899 -0.0002651310475007681 0.445019795727262 0.895520692734899 0.0002651310475007681 -0.445019795727262 -0.9072315228553386 -0.007386263429703882 0.4205667688371613 0.9072315228553386 0.007386263429703882 -0.4205667688371613 -0.5151201333405083 0.05762348945996668 0.8551788010057979 0.5151201333405083 -0.05762348945996668 -0.8551788010057979 -0.8963849877349819 0.01799898941747728 0.4429108151121465 0.8963849877349819 -0.01799898941747728 -0.4429108151121465 -0.9550607048378887 -0.008595199200161906 0.296285626761179 0.9550607048378887 0.008595199200161906 -0.296285626761179 -0.6083268790154661 -0.01773804223761951 0.7934883553807698 0.6083268790154661 0.01773804223761951 -0.7934883553807698 -0.206533912779653 0.01312869502328621 0.9783513582751915 0.206533912779653 -0.01312869502328621 -0.9783513582751915 -0.8950561340727541 -0.05500856952533083 0.4425478213001536 0.8950561340727541 0.05500856952533083 -0.4425478213001536 -0.974817159690307 -0.01264423724930605 0.2226468693642596 0.974817159690307 0.01264423724930605 -0.2226468693642596 -0.4492757287568513 -0.01816108521842438 0.8932085392189718 0.4492757287568513 0.01816108521842438 -0.8932085392189718 -0.8847410800965309 -0.01757427319378755 0.4657513994732964 0.8847410800965309 0.01757427319378755 -0.4657513994732964 -0.5575023998409231 0.02727996565469962 0.8297269898258644 0.5575023998409231 -0.02727996565469962 -0.8297269898258644 -0.1934309920620744 0.00141326582144325 0.9811128650617114 0.1934309920620744 -0.00141326582144325 -0.9811128650617114 -0.8919664970414266 -0.06944743650307948 0.4467357403642531 0.8919664970414266 0.06944743650307948 -0.4467357403642531 -0.9558315403963276 -0.00754370464283368 0.2938182412714452 0.9558315403963276 0.00754370464283368 -0.2938182412714452 -0.2476666920797232 -0.02438408932794591 0.9685383966688849 0.2476666920797232 0.02438408932794591 -0.9685383966688849 -0.07432341848991311 0.01114049535973943 0.9971719605098774 0.07432341848991311 -0.01114049535973943 -0.9971719605098774 -0.8879690242672579 -0.2040393937551356 0.4121637268585031 0.8879690242672579 0.2040393937551356 -0.4121637268585031 -0.984245975666149 -0.01640619454133032 0.1760417455198129 0.984245975666149 0.01640619454133032 -0.1760417455198129 -0.470586420836446 -0.03092208977332432 0.8818119101534031 0.470586420836446 0.03092208977332432 -0.8818119101534031 -0.8765304281839281 -0.02677057613336905 0.4806014406149725 0.8765304281839281 0.02677057613336905 -0.4806014406149725 -0.1228183054958481 -0.111129705670554 0.9861875340688021 0.1228183054958481 0.111129705670554 -0.9861875340688021 -0.1422524387013631 0.08650520172209436 0.9860431500489898 0.1422524387013631 -0.08650520172209436 -0.9860431500489898 -0.07722944505424488 0.01429695874918533 0.9969108334184845 0.07722944505424488 -0.01429695874918533 -0.9969108334184845 -0.8856001506157596 -0.207145051657605 0.4156961640466651 0.8856001506157596 0.207145051657605 -0.4156961640466651 -0.9565582953355224 -0.01332882085912952 0.2912362789202348 0.9565582953355224 0.01332882085912952 -0.2912362789202348 -0.3283505887844118 0.3306960167614941 0.8847745675272385 0.3283505887844118 -0.3306960167614941 -0.8847745675272385 9.355723527338429e-009 0.0186001828842623 0.9998270016341188 -9.355723527338429e-009 -0.0186001828842623 -0.9998270016341188 -0.8949706469360677 -0.3243746580670968 0.3062819327461068 0.8949706469360677 0.3243746580670968 -0.3062819327461068 -0.9951376548752913 -0.01258038220657256 0.09768716309138305 0.9951376548752913 0.01258038220657256 -0.09768716309138305 0.02441341528062479 -0.04018947456705912 0.9988937837870248 -0.02441341528062479 0.04018947456705912 -0.9988937837870248 -0.3415286992173654 -0.08847586848124532 0.9356976906604951 0.3415286992173654 0.08847586848124532 -0.9356976906604951 -0.8571769674024923 -0.04022818316830723 0.5134484782659736 0.8571769674024923 0.04022818316830723 -0.5134484782659736 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 7.367702913516951e-009 -0.02830913765764351 0.9995992160486525 -0.1992518788334495 -0.01139878853772022 0.9798820114693465 -0.05013526873064869 0.01986799350556079 0.9985448000282053 0.05013526873064869 -0.01986799350556079 -0.9985448000282053 0.1992518788334495 0.01139878853772022 -0.9798820114693465 -7.367702913516951e-009 0.02830913765764351 -0.9995992160486525 -0.8971048502216629 -0.321983413427523 0.3025385416543298 0.8971048502216629 0.321983413427523 -0.3025385416543298 -0.9578180503286586 -0.01408032653443589 0.2870301845961338 0.9578180503286586 0.01408032653443589 -0.2870301845961338 0.02350686145086761 -0.05281539590359781 0.9983275822195219 -0.02350686145086761 0.05281539590359781 -0.9983275822195219 0.05013529181632081 0.01986798553163498 0.9985447990277688 0.1992520465395727 -0.01139743910568457 0.9798819930642794 0.07722949104593611 0.01429697516615458 0.996910829620124 -0.1992520465395727 0.01139743910568457 -0.9798819930642794 -0.07722949104593611 -0.01429697516615458 -0.996910829620124 -0.05013529181632081 -0.01986798553163498 -0.9985447990277688 -0.873379065742168 -0.435637042386647 0.2177828616396445 0.873379065742168 0.435637042386647 -0.2177828616396445 -0.9978102123183206 -0.0002979809767365266 0.06614144994332498 0.9978102123183206 0.0002979809767365266 -0.06614144994332498 0.1392324360751088 -0.1282270959827192 0.9819226754691173 -0.1392324360751088 0.1282270959827192 -0.9819226754691173 -0.004151361905557766 -0.1530036777795603 0.988216899663357 0.004151361905557766 0.1530036777795603 -0.988216899663357 -0.1091464427993047 -0.1854747968576843 0.9765685607036809 0.1091464427993047 0.1854747968576843 -0.9765685607036809 -0.3680833179199177 -0.08538772445546562 0.9258637089665964 0.3680833179199177 0.08538772445546562 -0.9258637089665964 -0.8512027761381504 -0.02536012167907416 0.5242239007553247 0.8512027761381504 0.02536012167907416 -0.5242239007553247 0.07432345455429569 0.01114044357539076 0.997171958400385 -0.07432345455429569 -0.01114044357539076 -0.997171958400385 -0.8574598469235982 -0.4841012329394283 0.1743806387770306 0.8574598469235982 0.4841012329394283 -0.1743806387770306 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 -0.9733832727178078 0.007736198347291853 0.229052735474391 0.9733832727178078 -0.007736198347291853 -0.229052735474391 -0.003101175158944016 -0.1523881894354768 0.9883158515541531 0.003101175158944016 0.1523881894354768 -0.9883158515541531 0.001450612072996214 -0.04482941980428752 0.9989936030048563 -0.001450612072996214 0.04482941980428752 -0.9989936030048563 0.1934307639629917 0.001412657525049151 0.9811129109085307 -0.1934307639629917 -0.001412657525049151 -0.9811129109085307 -0.8682198219329231 -0.4898573784628851 0.07895625097630328 0.8682198219329231 0.4898573784628851 -0.07895625097630328 -0.9999426757569431 -0.005924605813726535 -0.008918758097251045 0.9999426757569431 0.005924605813726535 0.008918758097251045 -0.9979816137896427 0.0007788093903403534 0.06349875584414082 0.9979816137896427 -0.0007788093903403534 -0.06349875584414082 0.4190664890064954 -0.09024923546223157 0.9034591043817376 -0.4190664890064954 0.09024923546223157 -0.9034591043817376 0.3293576436016264 -0.1512844787638046 0.932006732318146 -0.3293576436016264 0.1512844787638046 -0.932006732318146 0.003468750218861239 -0.1849306565179608 0.9827454502829077 -0.003468750218861239 0.1849306565179608 -0.9827454502829077 -0.0771747638042234 -0.2197377985821765 0.9725015967627102 0.0771747638042234 0.2197377985821765 -0.9725015967627102 -0.3332161310673002 -0.08667606909295655 0.9388579599934874 0.3332161310673002 0.08667606909295655 -0.9388579599934874 -0.8471829494023482 -0.01871022510968509 0.5309717296789758 0.8471829494023482 0.01871022510968509 -0.5309717296789758 0.206534672424648 0.01312835379791649 0.9783512024896787 -0.206534672424648 -0.01312835379791649 -0.9783512024896787 -0.8751933954880818 -0.4789510829348484 0.06813501779245279 0.8751933954880818 0.4789510829348484 -0.06813501779245279 -0.9999943641874873 0.0002114853066728545 -0.003350651761670484 0.9999943641874873 -0.0002114853066728545 0.003350651761670484 -0.9992194764740899 0.0003249760845030904 -0.03950104081401198 0.9992194764740899 -0.0003249760845030904 0.03950104081401198 -1 0 0 1 -0 -0 -0.9765685441597449 -0.04566527106811754 0.2103058762279164 0.9765685441597449 0.04566527106811754 -0.2103058762279164 0.003607103899563249 -0.1873518661177469 0.9822862449732541 -0.003607103899563249 0.1873518661177469 -0.9822862449732541 0.00602688632923911 -0.1563124366892208 0.9876892723814776 -0.00602688632923911 0.1563124366892208 -0.9876892723814776 0.001251671320043853 -0.04183185705672599 0.9991238807345625 -0.001251671320043853 0.04183185705672599 -0.9991238807345625 0.5151195527131143 0.05762274208745132 0.8551792011075597 -0.5151195527131143 -0.05762274208745132 -0.8551792011075597 -0.9903947707187708 -0.004947155871302164 -0.1381800411843137 0.9903947707187708 0.004947155871302164 0.1381800411843137 -0.9878663656498398 -0.009852017467930564 -0.1549934881522087 0.9878663656498398 0.009852017467930564 0.1549934881522087 -0.996482872850571 -0.05726756133441097 0.06117442712671616 0.996482872850571 0.05726756133441097 -0.06117442712671616 0.526348044934525 -0.1131629593586895 0.8427050968297194 -0.526348044934525 0.1131629593586895 -0.8427050968297194 0.4173686971612756 -0.1778874320780186 0.8911562332939087 -0.4173686971612756 0.1778874320780186 -0.8911562332939087 0.005222164543497156 -0.2092035110452315 0.9778581798828645 -0.005222164543497156 0.2092035110452315 -0.9778581798828645 0.007545316719704674 -0.2110414645011939 0.9774479875966754 -0.007545316719704674 0.2110414645011939 -0.9774479875966754 -0.01969785890737417 -0.2616664220722393 0.9649573451269117 0.01969785890737417 0.2616664220722393 -0.9649573451269117 -0.2014758556225803 -0.1015170915729863 0.9742185379675912 0.2014758556225803 0.1015170915729863 -0.9742185379675912 -0.868201468219757 -0.02383906889302845 0.4956388900957751 0.868201468219757 0.02383906889302845 -0.4956388900957751 0.4464522679055878 0.03803370703448546 0.8939987749494807 -0.4464522679055878 -0.03803370703448546 -0.8939987749494807 -0.9898172877087869 -0.01510264998941633 -0.1415402660592297 0.9898172877087869 0.01510264998941633 0.1415402660592297 -0.9981408894568261 -0.06091817756761343 0.001934020728103332 0.9981408894568261 0.06091817756761343 -0.001934020728103332 -0.9978372472000537 -0.05127472324472305 -0.04113065591983561 0.9978372472000537 0.05127472324472305 0.04113065591983561 -0.986834032541885 -0.03790333343156378 0.1572320881114841 0.986834032541885 0.03790333343156378 -0.1572320881114841 0.02477291592964374 -0.1906352083191541 0.9813483173600776 -0.02477291592964374 0.1906352083191541 -0.9813483173600776 -0.002328718950658374 -0.1360208146346536 0.990703242678742 0.002328718950658374 0.1360208146346536 -0.990703242678742 -0.001031618229602105 -0.04511816296389461 0.9989811245136676 0.001031618229602105 0.04511816296389461 -0.9989811245136676 0.6983491129304112 0.04961305488200415 0.7140357562857639 -0.6983491129304112 -0.04961305488200415 -0.7140357562857639 -0.9509233179690119 -0.008522740260876977 -0.3093092404718151 0.9509233179690119 0.008522740260876977 0.3093092404718151 -0.9603612407120864 -0.004049774339899059 -0.2787290560127123 0.9603612407120864 0.004049774339899059 0.2787290560127123 -0.9870724976498742 -0.04346784834016133 -0.1542673994851666 0.9870724976498742 0.04346784834016133 0.1542673994851666 -0.9981388138662855 -0.05180664955192778 0.03217109441421623 0.9981388138662855 0.05180664955192778 -0.03217109441421623 0.6592718697604481 -0.1055100362959731 0.7444650656568009 -0.6592718697604481 0.1055100362959731 -0.7444650656568009 0.5028544664240005 -0.2156034093731595 0.8370499121701784 -0.5028544664240005 0.2156034093731595 -0.8370499121701784 0.01543515840224038 -0.257605509409122 0.9661268847346939 -0.01543515840224038 0.257605509409122 -0.9661268847346939 0.01238193944210214 -0.2569872685258789 0.9663354652455121 -0.01238193944210214 0.2569872685258789 -0.9663354652455121 0.005615760653294178 -0.2129790952388896 0.9770406174891138 -0.005615760653294178 0.2129790952388896 -0.9770406174891138 -0.005662748884652038 -0.3003436078411413 0.9538142641542096 0.005662748884652038 0.3003436078411413 -0.9538142641542096 -0.6724794224102589 -0.05649842023248849 0.737956201238256 0.6724794224102589 0.05649842023248849 -0.737956201238256 -0.8365327615396679 -0.08000809676405099 0.5420439496231012 0.8365327615396679 0.08000809676405099 -0.5420439496231012 0.6347615283535828 0.01155433665977158 0.772621705252044 -0.6347615283535828 -0.01155433665977158 -0.772621705252044 -0.9519190478961309 -0.005574400389519616 -0.3062989590462578 0.9519190478961309 0.005574400389519616 0.3062989590462578 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 -0.964539282200069 -0.2580563926064153 -0.05541544304559113 0.964539282200069 0.2580563926064153 0.05541544304559113 0.442655489608497 -0.1319682527915336 0.8869275606128225 -0.442655489608497 0.1319682527915336 -0.8869275606128225 2.605657906526417e-009 -0.1300025924816046 0.9915136539392998 -2.605657906526417e-009 0.1300025924816046 -0.9915136539392998 -7.067358788118902e-011 -0.04362721548871919 0.9990478797678822 7.067358788118902e-011 0.04362721548871919 -0.9990478797678822 0.8425057926680641 0.01555117100145642 0.5384627660305216 -0.8425057926680641 -0.01555117100145642 -0.5384627660305216 -0.9015863992712774 -0.01219373558413136 -0.4324271932494034 0.9015863992712774 0.01219373558413136 0.4324271932494034 -0.9371645856471843 -0.05885413476929844 -0.3438876709469223 0.9371645856471843 0.05885413476929844 0.3438876709469223 -0.8891099819974205 -0.01775480320450284 -0.4573491083141148 0.8891099819974205 0.01775480320450284 0.4573491083141148 -0.9238625911297171 -0.298752180278987 -0.239217573538477 0.9238625911297171 0.298752180278987 0.239217573538477 0.714460437130116 -0.1454390921233625 0.684392982326803 -0.714460437130116 0.1454390921233625 -0.684392982326803 0.5669657547679409 -0.2605372480570189 0.7814538855846162 -0.5669657547679409 0.2605372480570189 -0.7814538855846162 0.005018164881382924 -0.3337214114980939 0.9426583885633985 -0.005018164881382924 0.3337214114980939 -0.9426583885633985 0.008334074846322034 -0.3314169967032203 0.9434475700814931 -0.008334074846322034 0.3314169967032203 -0.9434475700814931 -1.07869099120766e-009 -0.2576574119967494 0.9662363365363245 1.07869099120766e-009 0.2576574119967494 -0.9662363365363245 -0.6255914375192391 -0.09499054398525243 0.7743462725783586 0.6255914375192391 0.09499054398525243 -0.7743462725783586 0.8566494289754592 0.002447052947409265 0.515893174763819 -0.8566494289754592 -0.002447052947409265 -0.515893174763819 -0.9224100075395584 -0.3862095043714823 -0.001413054848939107 0.9224100075395584 0.3862095043714823 0.001413054848939107 -0.8828076860501695 -0.01967706819265308 -0.4693222799293541 0.8828076860501695 0.01967706819265308 0.4693222799293541 -0.6615076437520473 -0.7266804356183233 -0.1853191348651796 0.6615076437520473 0.7266804356183233 0.1853191348651796 0.8505881097345353 -0.07656512545695393 0.5202284586044782 -0.8505881097345353 0.07656512545695393 -0.5202284586044782 0.001031618759408731 -0.04511816235489764 0.9989811245406254 -0.001031618759408731 0.04511816235489764 -0.9989811245406254 0.005662748672241021 -0.3003435921545434 0.9538142690949744 -0.005662748672241021 0.3003435921545434 -0.9538142690949744 0.6341513258495346 -0.07317274126097195 0.7697388166512276 -0.6341513258495346 0.07317274126097195 -0.7697388166512276 0.9591405385262183 0.001327998537806206 0.282926958375337 -0.9591405385262183 -0.001327998537806206 -0.282926958375337 -0.4469774344299156 0.513470208436643 -0.7325022308215047 0.4469774344299156 -0.513470208436643 0.7325022308215047 -0.6952119327195182 -0.184416700421677 -0.6947451685402165 0.6952119327195182 0.184416700421677 0.6947451685402165 -0.7722612531751347 -0.3004697649391121 -0.5597593029167134 0.7722612531751347 0.3004697649391121 0.5597593029167134 -0.6908010466491781 -0.05284287290219791 -0.7211113261708225 0.6908010466491781 0.05284287290219791 0.7211113261708225 -0.5948201101151525 -0.6913376571153824 -0.4101722570540478 0.5948201101151525 0.6913376571153824 0.4101722570540478 0.9845608053297705 0.005789609544017289 0.1749471378151744 -0.9845608053297705 -0.005789609544017289 -0.1749471378151744 0.003174899820202929 -0.6896700314217814 0.724116819145786 -0.003174899820202929 0.6896700314217814 -0.724116819145786 0.004057326653133169 -0.789447614806144 0.6138045304307553 -0.004057326653133169 0.789447614806144 -0.6138045304307553 0.002328722508645825 -0.1360208178701879 0.9907032422261487 -0.002328722508645825 0.1360208178701879 -0.9907032422261487 0.9618278313538345 0.002838815778547771 0.2736405744003531 -0.9618278313538345 -0.002838815778547771 -0.2736405744003531 -0.03258879221096398 -0.992925889807309 -0.1141759518138322 -0.03507863000728281 -0.9993638928866502 -0.006426454018542583 0.03507863000728281 0.9993638928866502 0.006426454018542583 0.03258879221096398 0.992925889807309 0.1141759518138322 -0.4888251582665992 -0.1400022890829338 -0.8610745169247391 0.4888251582665992 0.1400022890829338 0.8610745169247391 -0.03524828916784289 -0.9772415642552044 -0.2091805038783054 0.03524828916784289 0.9772415642552044 0.2091805038783054 -0.001251671724717876 -0.04183185849651849 0.9991238806737735 0.001251671724717876 0.04183185849651849 -0.9991238806737735 0.01969778337526758 -0.2616666146433107 0.9649572944494539 -0.01969778337526758 0.2616666146433107 -0.9649572944494539 0.9891517491442294 0.006985270438849279 0.1467311254022397 -0.9891517491442294 -0.006985270438849279 -0.1467311254022397 -0.2711734956875576 0.1051523120706788 -0.9567695263242767 0.2711734956875576 -0.1051523120706788 0.9567695263242767 -0.385463035904434 -0.3423335113386137 -0.8568698938379807 0.385463035904434 0.3423335113386137 0.8568698938379807 -0.4541983832729183 -0.5664546984294635 -0.6876284630957713 0.4541983832729183 0.5664546984294635 0.6876284630957713 -0.1226959874954221 -0.105219651549913 -0.9868508091805155 0.1226959874954221 0.105219651549913 0.9868508091805155 0.00342297481961079 -0.9004525847666326 -0.4349407153055167 -0.00342297481961079 0.9004525847666326 0.4349407153055167 0.03166910955675777 -0.8815383232987408 0.4710490972876683 -0.03166910955675777 0.8815383232987408 -0.4710490972876683 -0.006026882282988452 -0.1563124458061748 0.9876892709633118 0.006026882282988452 0.1563124458061748 -0.9876892709633118 0.9890263553172155 0.006172431079916526 0.1476101947106241 -0.9890263553172155 -0.006172431079916526 -0.1476101947106241 -0.1337631166327554 0.5108285547050319 -0.8492123505500023 0.1337631166327554 -0.5108285547050319 0.8492123505500023 0.5488649620174 -0.8350332471836223 -0.03829790552515543 -0.5488649620174 0.8350332471836223 0.03829790552515543 0.03815920939920633 -0.2349458118875155 -0.9712591519334805 -0.03815920939920633 0.2349458118875155 0.9712591519334805 0.6394382168331546 -0.7392226720858357 -0.2113494923758103 -0.6394382168331546 0.7392226720858357 0.2113494923758103 0.007514645778823581 -0.921398025935363 0.3885475619550775 -0.007514645778823581 0.921398025935363 -0.3885475619550775 -0.00145059792117709 -0.04482942654834016 0.9989936027227692 0.00145059792117709 0.04482942654834016 -0.9989936027227692 -0.005615740926310768 -0.2129790948974011 0.9770406176769378 0.005615740926310768 0.2129790948974011 -0.9770406176769378 0.07717520035315093 -0.2197372978899333 0.9725016752512469 -0.07717520035315093 0.2197372978899333 -0.9725016752512469 0.9992120137663731 0.001956494929291655 0.03964244786262546 -0.9992120137663731 -0.001956494929291655 -0.03964244786262546 0.00051765045677645 0.2244249960784471 -0.9744912278585137 -0.00051765045677645 -0.2244249960784471 0.9744912278585137 -0.009337471849616528 -0.1906882854260363 -0.9816062293102749 0.009337471849616528 0.1906882854260363 0.9816062293102749 0.1248461329420074 -0.4911711065753458 -0.8620698273080766 -0.1248461329420074 0.4911711065753458 0.8620698273080766 0.02873404700195586 -0.7438727809243705 -0.6677032576996559 -0.02873404700195586 0.7438727809243705 0.6677032576996559 0.1375879447662982 -0.2442634976772494 -0.9598983806411293 -0.1375879447662982 0.2442634976772494 0.9598983806411293 0.6109216499255123 -0.7321214414072957 -0.3012854670972261 -0.6109216499255123 0.7321214414072957 0.3012854670972261 0.01095452666231913 -0.881965730537646 0.4711862142537712 -0.01095452666231913 0.881965730537646 -0.4711862142537712 0.002759994826984163 -0.9365555159321531 0.3505084136017472 -0.002759994826984163 0.9365555159321531 -0.3505084136017472 0.003101137519958726 -0.1523881820302551 0.9883158528140668 -0.003101137519958726 0.1523881820302551 -0.9883158528140668 -0.02477283165215043 -0.1906352669757192 0.9813483080930188 0.02477283165215043 0.1906352669757192 -0.9813483080930188 0.9991782585581174 0.001611336279199616 0.04049952123375587 -0.9991782585581174 -0.001611336279199616 -0.04049952123375587 -1.02530016735507e-007 0.2636233694851336 -0.9646256885762965 1.02530016735507e-007 -0.2636233694851336 0.9646256885762965 -0.0351849297132265 -0.1621484141288771 -0.9861388910881496 0.0351849297132265 0.1621484141288771 0.9861388910881496 0.5143809167910157 -0.8427232925643818 -0.1588386747951559 -0.5143809167910157 0.8427232925643818 0.1588386747951559 0.4862319033164969 -0.8180756479873211 -0.3071331476206068 -0.4862319033164969 0.8180756479873211 0.3071331476206068 0.001922941174372306 -0.9487328369278876 0.3160732611784843 -0.001922941174372306 0.9487328369278876 -0.3160732611784843 0.01058462495978283 -0.9372415837114693 0.3485199843287005 -0.01058462495978283 0.9372415837114693 -0.3485199843287005 -0.001655665923785194 -0.9967332534053051 0.08074701434991111 0.001655665923785194 0.9967332534053051 -0.08074701434991111 -0.02350702559942529 -0.05281540246072417 0.9983275780075294 0.02350702559942529 0.05281540246072417 -0.9983275780075294 -0.003607093997184266 -0.1873518799749329 0.9822862423666299 0.003607093997184266 0.1873518799749329 -0.9822862423666299 0.1091488696533336 -0.1854757037912854 0.9765681172127867 -0.1091488696533336 0.1854757037912854 -0.9765681172127867 0.9970360989926174 0.007952043551113014 -0.07652308350390141 -0.9970360989926174 -0.007952043551113014 0.07652308350390141 -2.171072517093037e-008 0.2472169324000076 -0.9689601582803751 2.171072517093037e-008 -0.2472169324000076 0.9689601582803751 -5.84617728037201e-008 -0.008881558328595218 -0.9999605581829977 5.84617728037201e-008 0.008881558328595218 0.9999605581829977 0.006159025862486746 -0.1559530855423624 -0.9877452614466149 -0.006159025862486746 0.1559530855423624 0.9877452614466149 -0.06704875134860357 -0.2521927092765705 -0.9653513880087066 0.06704875134860357 0.2521927092765705 0.9653513880087066 0.9554196933123231 -0.280007949107208 -0.09364164707949933 -0.9554196933123231 0.280007949107208 0.09364164707949933 0.5580519801572651 -0.6424666100918869 -0.5251805807144766 -0.5580519801572651 0.6424666100918869 0.5251805807144766 0.2213501855596587 -0.3636856818823712 -0.9048407706035683 -0.2213501855596587 0.3636856818823712 0.9048407706035683 0.4176489384104904 -0.7475845573333596 -0.5164171703974174 -0.4176489384104904 0.7475845573333596 0.5164171703974174 0.000543654461523819 -0.9965146488499961 0.08341617988852952 -0.000543654461523819 0.9965146488499961 -0.08341617988852952 0.01776409704298866 -0.9960145399706042 0.0874040789860125 -0.01776409704298866 0.9960145399706042 -0.0874040789860125 0.004151389166419962 -0.1530036796870666 0.9882168992535022 -0.004151389166419962 0.1530036796870666 -0.9882168992535022 -0.003468795617832963 -0.1849306395670129 0.9827454533124522 0.003468795617832963 0.1849306395670129 -0.9827454533124522 0.9968880601904836 0.008091956229407032 -0.07841374684349815 -0.9968880601904836 -0.008091956229407032 0.07841374684349815 -0.001043001060514516 0.2456279899096795 -0.9693636070751357 0.001043001060514516 -0.2456279899096795 0.9693636070751357 0.1337633194460965 0.5108296595896843 -0.8492116539792946 -0.1337633194460965 -0.5108296595896843 0.8492116539792946 -0.0005177218023518647 0.2244242470440256 -0.97449140032268 0.0005177218023518647 -0.2244242470440256 0.97449140032268 0.001565852237767074 -0.1619392335587709 -0.9867994896336172 -0.001565852237767074 0.1619392335587709 0.9867994896336172 0.00641168821081358 -0.1389593965367389 -0.9902773229598024 -0.00641168821081358 0.1389593965367389 0.9902773229598024 0.01706464709692535 -0.2680552022445862 -0.9632524105181733 -0.01706464709692535 0.2680552022445862 0.9632524105181733 0.003679893357355509 -0.9807448154713261 -0.1952589698605237 0.03520220708547025 -0.9955675555630086 0.08721265347762125 -0.03520220708547025 0.9955675555630086 -0.08721265347762125 -0.003679893357355509 0.9807448154713261 0.1952589698605237 0.01913276905228145 -0.9353993121726628 -0.3530751533814035 -0.01913276905228145 0.9353993121726628 0.3530751533814035 -0.001994112838259068 -0.8302319855317633 -0.5574144541667129 0.001994112838259068 0.8302319855317633 0.5574144541667129 -1.364018447764835e-010 -0.9964469582527105 0.08422267740294874 1.364018447764835e-010 0.9964469582527105 -0.08422267740294874 5.41970020038079e-019 -0.9802037300795121 -0.1979915340064092 -5.41970020038079e-019 0.9802037300795121 0.1979915340064092 -0.001766313770587881 -0.9804977542855673 -0.1965223498145266 0.001766313770587881 0.9804977542855673 0.1965223498145266 -0.02441358428433715 -0.04018937462395292 0.9988937836775875 0.02441358428433715 0.04018937462395292 -0.9988937836775875 0.1228143137468341 -0.1111288314674064 0.9861881296971603 -0.1228143137468341 0.1111288314674064 -0.9861881296971603 -0.007545313160508039 -0.2110414854128979 0.9774479831090899 0.007545313160508039 0.2110414854128979 -0.9774479831090899 0.9502869607144168 0.0007765411933242198 -0.311374516105496 -0.9502869607144168 -0.0007765411933242198 0.311374516105496 2.537875881418471e-010 -0.2697717871999729 -0.9629242871747148 -2.537875881418471e-010 0.2697717871999729 0.9629242871747148 0.001043003155523745 0.2456281415727075 -0.9693635686428263 -0.001043003155523745 -0.2456281415727075 0.9693635686428263 -0.001565851058636335 -0.1619405677985199 -0.9867992706784673 0.001565851058636335 0.1619405677985199 0.9867992706784673 -0.004611174646379514 -0.2494173833582457 -0.9683851020885783 0.004611174646379514 0.2494173833582457 0.9683851020885783 0.0866390342236773 -0.2729801568117363 -0.9581103859868279 -0.0866390342236773 0.2729801568117363 0.9581103859868279 0.04754809025452786 -0.4924470298485574 -0.869042635263933 -0.04754809025452786 0.4924470298485574 0.869042635263933 -0.0349422049523222 -0.5274602944483731 -0.8488608131451854 0.0349422049523222 0.5274602944483731 0.8488608131451854 -3.75971853423118e-018 -0.980203730079512 -0.1979915340064091 3.75971853423118e-018 0.980203730079512 0.1979915340064091 -1.339987576635483e-010 -0.9494894852049263 0.3137988487634778 1.339987576635483e-010 0.9494894852049263 -0.3137988487634778 -0.1392326954818779 -0.1282268657791879 0.9819226687480521 0.1392326954818779 0.1282268657791879 -0.9819226687480521 -0.3293614164730073 -0.1512838249825715 0.9320055051540935 0.3293614164730073 0.1512838249825715 -0.9320055051540935 -0.005222168794586046 -0.2092035074705264 0.9778581806249362 0.005222168794586046 0.2092035074705264 -0.9778581806249362 0.9472163939976568 -0.002797653202538041 -0.3205827133184727 -0.9472163939976568 0.002797653202538041 0.3205827133184727 0.0005327402026250499 -0.2855058741792734 -0.958376811070158 -0.0005327402026250499 0.2855058741792734 0.958376811070158 0.2711703080685523 0.1051545366733732 -0.956770185279106 -0.2711703080685523 -0.1051545366733732 0.956770185279106 0.004611184001270919 -0.2494172177081709 -0.9683851447088711 -0.004611184001270919 0.2494172177081709 0.9683851447088711 -0.00641169077383815 -0.138960756374078 -0.9902771321248233 0.00641169077383815 0.138960756374078 0.9902771321248233 -3.265894096845424e-008 -0.2425354887703818 -0.9701425342118091 3.265894096845424e-008 0.2425354887703818 0.9701425342118091 -0.0007672322097599292 -0.2614437891938212 -0.9652183983154864 0.0007672322097599292 0.2614437891938212 0.9652183983154864 -0.001596423311002504 -0.9348817568566014 -0.3549557044608905 0.001596423311002504 0.9348817568566014 0.3549557044608905 -0.001610422576868236 -0.8275150490717169 -0.561441225863365 0.001610422576868236 0.8275150490717169 0.561441225863365 -0.0005274653425915593 -0.5352782164951003 -0.8446756494217983 0.0005274653425915593 0.5352782164951003 0.8446756494217983 -0.0005436553252101591 -0.996514648972146 0.08341617842366074 0.0005436553252101591 0.996514648972146 -0.08341617842366074 -0.001922888543134675 -0.9487332505075247 0.3160720200857349 0.001922888543134675 0.9487332505075247 -0.3160720200857349 -7.396599460252093e-018 -0.9351479406582195 -0.3542574333485339 7.396599460252093e-018 0.9351479406582195 0.3542574333485339 -2.293528301419984e-018 -0.9351479406582196 -0.3542574333485339 2.293528301419984e-018 0.9351479406582196 0.3542574333485339 0.3415245336174704 -0.08847644274145106 0.9356991567898243 -0.3415245336174704 0.08847644274145106 -0.9356991567898243 0.4705842001746854 -0.03092247994198945 0.8818130815429019 -0.4705842001746854 0.03092247994198945 -0.8818130815429019 -0.01238196350419059 -0.2569854266098262 0.9663359547745009 0.01238196350419059 0.2569854266098262 -0.9663359547745009 0.9771876480280277 -0.001587207294657635 -0.2123717997156287 -0.9771876480280277 0.001587207294657635 0.2123717997156287 -0.000532740161792093 -0.2855057619596127 -0.9583768445010455 0.000532740161792093 0.2855057619596127 0.9583768445010455 0.4469772352428111 0.5134695466944448 -0.7325028162349238 -0.4469772352428111 -0.5134695466944448 0.7325028162349238 0.03518499885919119 -0.1621494165226706 -0.986138723799363 -0.03518499885919119 0.1621494165226706 0.986138723799363 0.0007672363316913843 -0.2614436288699845 -0.9652184417382965 -0.0007672363316913843 0.2614436288699845 0.9652184417382965 -0.006159121280631435 -0.1559541201625387 -0.9877450974970105 0.006159121280631435 0.1559541201625387 0.9877450974970105 -0.001969321035844544 -0.5365270886895071 -0.843880800159015 0.001969321035844544 0.5365270886895071 0.843880800159015 -8.837531091392778e-019 -0.9802037300795119 -0.1979915340064091 8.837531091392778e-019 0.9802037300795119 0.1979915340064091 -0.4190697444091525 -0.09024864078020417 0.9034576537714277 0.4190697444091525 0.09024864078020417 -0.9034576537714277 0.3680797257813653 -0.08538783222646242 0.9258651270980997 -0.3680797257813653 0.08538783222646242 -0.9258651270980997 0.4492746531252486 -0.01816073048124067 0.8932090874636104 -0.4492746531252486 0.01816073048124067 -0.8932090874636104 -0.4173701553929433 -0.1778880338757434 0.891155430209059 0.4173701553929433 0.1778880338757434 -0.891155430209059 -0.01543465121279611 -0.2576051549014911 0.9661269873624885 0.01543465121279611 0.2576051549014911 -0.9661269873624885 0.979039599996785 3.723198623051503e-018 -0.2036699821724724 -0.979039599996785 -3.723198623051503e-018 0.2036699821724724 0.9822516255750345 -0.00506035999292398 -0.1874996981649415 -0.9822516255750345 0.00506035999292398 0.1874996981649415 0.6908014509118093 -0.05284299212726929 -0.7211109301634363 -0.6908014509118093 0.05284299212726929 0.7211109301634363 0.009337283033500718 -0.1906891812700813 -0.9816060570779391 -0.009337283033500718 0.1906891812700813 0.9816060570779391 0.001969230634495697 -0.536527240943499 -0.8438807035690913 -0.001969230634495697 0.536527240943499 0.8438807035690913 0.0005274653854330695 -0.5352783480696075 -0.8446755660418618 -0.0005274653854330695 0.5352783480696075 0.8446755660418618 -0.08664067818260744 -0.2729798777103628 -0.9581103168473312 0.08664067818260744 0.2729798777103628 0.9581103168473312 -8.682525665784773e-008 -0.541578389631433 -0.8406502530090716 8.682525665784773e-008 0.541578389631433 0.8406502530090716 -3.921503028202469e-008 -0.8274109878084094 -0.5615968814495951 3.921503028202469e-008 0.8274109878084094 0.5615968814495951 0.001654855532108666 -0.9967332357435745 0.08074724897673978 -0.001654855532108666 0.9967332357435745 -0.08074724897673978 -0.007507578153535655 -0.9214029086402269 0.3885361195816913 0.007507578153535655 0.9214029086402269 -0.3885361195816913 1.166034280447703e-017 -0.8274111517833948 -0.5615966398621667 -1.166034280447703e-017 0.8274111517833948 0.5615966398621667 6.519206129915245e-018 -0.9351479406582196 -0.354257433348534 -6.519206129915245e-018 0.9351479406582196 0.354257433348534 0.8765287252543467 -0.02677196831588556 0.480604468889422 -0.8765287252543467 0.02677196831588556 -0.480604468889422 0.8571758297539573 -0.04022835732976661 0.5134503638640867 -0.8571758297539573 0.04022835732976661 -0.5134503638640867 0.2476665877536164 -0.02438400563172669 0.9685384254534418 -0.2476665877536164 0.02438400563172669 -0.9685384254534418 0.884740255987156 -0.01757400060212124 0.4657529752332437 -0.884740255987156 0.01757400060212124 -0.4657529752332437 -0.008331180739317903 -0.3314190500550238 0.9434468743326858 0.008331180739317903 0.3314190500550238 -0.9434468743326858 0.9432798258574218 0.01059364971511918 -0.3318296923364535 -0.9432798258574218 -0.01059364971511918 0.3318296923364535 0.9999689460896092 1.894030449980373e-005 -0.007880767583261984 -0.9999689460896092 -1.894030449980373e-005 0.007880767583261984 0.99991876650967 -0.0001743193360556289 -0.01274480264849827 -0.99991876650967 0.0001743193360556289 0.01274480264849827 0.963940371883855 -0.0007430628977369711 -0.2661172811185801 -0.963940371883855 0.0007430628977369711 0.2661172811185801 0.8891107244168913 -0.01775462431207951 -0.457347671954726 -0.8891107244168913 0.01775462431207951 0.457347671954726 0.1227000911442241 -0.1052200392904613 -0.9868502576201279 -0.1227000911442241 0.1052200392904613 0.9868502576201279 0.0670495281157894 -0.2521921100028625 -0.9653514906145605 -0.0670495281157894 0.2521921100028625 0.9653514906145605 -0.0170646773798094 -0.2680546801232958 -0.9632525552781683 0.0170646773798094 0.2680546801232958 0.9632525552781683 0.03494104891599838 -0.5274582057490552 -0.8488621585915097 -0.03494104891599838 0.5274582057490552 0.8488621585915097 0.001765561878675717 -0.980497605028382 -0.1965231012498518 -0.001765561878675717 0.980497605028382 0.1965231012498518 -0.01094685603328983 -0.8819912528699143 0.471138616761506 0.01094685603328983 0.8819912528699143 -0.471138616761506 0.3332198513983277 -0.08667457196835998 0.9388567777931722 -0.3332198513983277 0.08667457196835998 -0.9388567777931722 -0.5263482937354177 -0.1131636951629167 0.8427048426221894 0.5263482937354177 0.1131636951629167 -0.8427048426221894 0.8512036730938258 -0.0253588199466456 0.5242225073024747 -0.8512036730938258 0.0253588199466456 -0.5242225073024747 0.6083282053285112 -0.01773846461560139 0.793487329120556 -0.6083282053285112 0.01773846461560139 -0.793487329120556 0.8955201128425246 -0.0002645525043728441 0.4450209629966709 -0.8955201128425246 0.0002645525043728441 -0.4450209629966709 -0.5028522588127636 -0.2156046685228307 0.8370509140536563 0.5028522588127636 0.2156046685228307 -0.8370509140536563 -0.00501692700507513 -0.3337218280837456 0.9426582476719061 0.00501692700507513 0.3337218280837456 -0.9426582476719061 0.979039599996785 1.8305164934997e-018 -0.2036699821724724 -0.979039599996785 -1.8305164934997e-018 0.2036699821724724 0.9999689462689712 -1.671736728866068e-018 -0.007880767584675541 -0.9999689462689712 1.671736728866068e-018 0.007880767584675541 0.9989411528411329 -0.03474272973627807 -0.03015818116034828 -0.9989411528411329 0.03474272973627807 0.03015818116034828 0.9852263379833788 -0.004009932625759784 -0.1712103483560439 -0.9852263379833788 0.004009932625759784 0.1712103483560439 0.9790951786464889 0.000824466295486361 -0.2034009621573309 -0.9790951786464889 -0.000824466295486361 0.2034009621573309 0.9015877380131129 -0.01219416928485135 -0.4324243898068783 -0.9015877380131129 0.01219416928485135 0.4324243898068783 0.882805259821104 -0.01967849854219704 -0.4693267837310353 -0.882805259821104 0.01967849854219704 0.4693267837310353 0.4888256144894809 -0.1400032866549034 -0.8610740957343952 -0.4888256144894809 0.1400032866549034 0.8610740957343952 -0.1375895520841367 -0.2442624196218493 -0.9598984245834381 0.1375895520841367 0.2442624196218493 0.9598984245834381 0.001610421043702095 -0.8275152308916418 -0.561440957881071 -0.001610421043702095 0.8275152308916418 0.561440957881071 3.826848737184621e-018 -0.8274111517833948 -0.5615966398621665 -3.826848737184621e-018 0.8274111517833948 0.5615966398621665 0.001974657072815 -0.8302327332466417 -0.5574134097555021 -0.001974657072815 0.8302327332466417 0.5574134097555021 -0.04754584098955737 -0.4924427086165555 -0.8690452069570294 0.04754584098955737 0.4924427086165555 0.8690452069570294 -0.01775173400364818 -0.9960150402472624 0.08740088981874049 0.01775173400364818 0.9960150402472624 -0.08740088981874049 -0.002760499121996385 -0.9365546305067288 0.350510775470601 0.002760499121996385 0.9365546305067288 -0.350510775470601 -0.03166756980589452 -0.8815390907118107 0.4710477646370724 0.03166756980589452 0.8815390907118107 -0.4710477646370724 0.001596424580051864 -0.9348817574377485 -0.3549557029245579 -0.001596424580051864 0.9348817574377485 0.3549557029245579 0.956558491032075 -0.0133283327265745 0.2912356584986964 -0.956558491032075 0.0133283327265745 -0.2912356584986964 0.9558326378297177 -0.007543621672339141 0.2938146732747506 -0.9558326378297177 0.007543621672339141 -0.2938146732747506 0.9578180647728783 -0.01408003476693324 0.2870301507084225 -0.9578180647728783 0.01408003476693324 -0.2870301507084225 0.9072313656561679 -0.007386427186210549 0.4205671050653715 -0.9072313656561679 0.007386427186210549 -0.4205671050653715 0.5575043664877837 0.02727866862154784 0.829725711054738 -0.5575043664877837 -0.02727866862154784 -0.829725711054738 0.955061983574575 -0.008595504674960005 0.2962814959290931 -0.955061983574575 0.008595504674960005 -0.2962814959290931 -0.004056581686613388 -0.7894483875484434 0.6138035414871621 0.004056581686613388 0.7894483875484434 -0.6138035414871621 0.8994373316751744 4.749529601802568e-018 -0.4370497527616764 -0.8994373316751744 -4.749529601802568e-018 0.4370497527616764 0.9999689462689712 2.170208093761268e-019 -0.007880767584675538 -0.9999689462689712 -2.170208093761268e-019 0.007880767584675538 0.997407803994539 -0.06127178855395159 -0.03772850988564364 -0.997407803994539 0.06127178855395159 0.03772850988564364 0.9663855875540297 -0.001291832929411919 -0.2570938103796652 -0.9663855875540297 0.001291832929411919 0.2570938103796652 0.9856181589139861 0.002472889974129722 -0.1689696115701884 -0.9856181589139861 -0.002472889974129722 0.1689696115701884 0.9519198641335414 -0.005572174531889075 -0.3062964628247709 -0.9519198641335414 0.005572174531889075 0.3062964628247709 0.9603614077941031 -0.004049466913913244 -0.2787284847973766 -0.9603614077941031 0.004049466913913244 0.2787284847973766 -0.03815805929900767 -0.2349450670776329 -0.9712593772862224 0.03815805929900767 0.2349450670776329 0.9712593772862224 -0.2213583936854587 -0.3636822296313745 -0.9048401501897149 0.2213583936854587 0.3636822296313745 0.9048401501897149 -0.4176656747506726 -0.7475790938819354 -0.5164115437572342 0.4176656747506726 0.7475790938819354 0.5164115437572342 -0.003678226109313476 -0.9807441849824888 -0.1952621680605918 0.003678226109313476 0.9807441849824888 0.1952621680605918 -0.003174899851690268 -0.6896701426261755 0.7241167132313149 0.003174899851690268 0.6896701426261755 -0.7241167132313149 0.2014731996283661 -0.101518830700172 0.9742189060189594 -0.2014731996283661 0.101518830700172 -0.9742189060189594 0.8471832164661007 -0.01871259358130396 0.530971220104831 -0.8471832164661007 0.01871259358130396 -0.530971220104831 -0.6592700716512461 -0.1055123068662708 0.7444663361930605 0.6592700716512461 0.1055123068662708 -0.7444663361930605 0.9733834031071185 0.007735325110119988 0.2290522108626014 -0.9733834031071185 -0.007735325110119988 -0.2290522108626014 0.9164151976740033 -0.009103539561407248 0.4001253691526837 -0.9164151976740033 0.009103539561407248 -0.4001253691526837 0.1422539534903038 0.08650680782154999 0.9860427906114946 -0.1422539534903038 -0.08650680782154999 -0.9860427906114946 0.9588345703509946 0.0008323912160688985 0.2839640361466345 -0.9588345703509946 -0.0008323912160688985 -0.2839640361466345 0.9598790634568707 -0.003077495641744351 0.2803974189569793 -0.9598790634568707 0.003077495641744351 -0.2803974189569793 -0.5669650605659093 -0.2605368662497732 0.7814545165409452 0.5669650605659093 0.2605368662497732 -0.7814545165409452 0.9781135818534934 1.34430433349115e-018 -0.2080716727325698 -0.9781135818534934 -1.34430433349115e-018 0.2080716727325698 0.9663115335897946 0.004882744349163951 -0.2573289312513458 -0.9663115335897946 -0.004882744349163951 0.2573289312513458 0.9999689462689712 -2.170208093761268e-019 -0.007880767584675541 0.9999689462689712 -2.170208093761268e-019 -0.007880767584675541 -0.9999689462689712 2.170208093761268e-019 0.007880767584675541 -0.9999689462689712 2.170208093761268e-019 0.007880767584675541 0.9845241791459773 -0.0004086970412225588 -0.1752483199453504 -0.9845241791459773 0.0004086970412225588 0.1752483199453504 0.9509242474571021 -0.008522673049577493 -0.3093063847421095 -0.9509242474571021 0.008522673049577493 0.3093063847421095 0.9371635595269554 -0.05885583532215234 -0.3438901762820491 -0.9371635595269554 0.05885583532215234 0.3438901762820491 0.695209612036329 -0.184417268281811 -0.694747340039364 -0.695209612036329 0.184417268281811 0.694747340039364 0.3854694816538004 -0.3423323407385548 -0.8568674618621087 -0.3854694816538004 0.3423323407385548 0.8568674618621087 -0.1248496818334184 -0.4911743379772181 -0.862067472219394 0.1248496818334184 0.4911743379772181 0.862067472219394 -0.01914711607387571 -0.9353999608355318 -0.3530726571329746 0.01914711607387571 0.9353999608355318 0.3530726571329746 -0.4862404515351986 -0.8180727855420281 -0.3071272388544412 0.4862404515351986 0.8180727855420281 0.3071272388544412 -0.5580514886342289 -0.6424719998950559 -0.5251745094575406 0.5580514886342289 0.6424719998950559 0.5251745094575406 -0.03517707448840293 -0.9955686973253226 0.08720976055693352 0.03517707448840293 0.9955686973253226 -0.08720976055693352 -0.01058259043784989 -0.9372406732639375 0.3485224944811823 0.01058259043784989 0.9372406732639375 -0.3485224944811823 0.9842462036749082 -0.01640469791371886 0.1760406101951788 -0.9842462036749082 0.01640469791371886 -0.1760406101951788 0.9951374926014686 -0.01257896904630131 0.09768899813486875 -0.9951374926014686 0.01257896904630131 -0.09768899813486875 0.9748192624683028 -0.01264279127167541 0.222637744665219 -0.9748192624683028 0.01264279127167541 -0.222637744665219 0.9978101430840221 -0.0002980269199170782 0.06614249419698789 -0.9978101430840221 0.0002980269199170782 -0.06614249419698789 0.3283493187707493 0.3306983436379725 0.8847741691402875 -0.3283493187707493 -0.3306983436379725 -0.8847741691402875 0.9765438230670186 0.0004985906997081331 0.2153181669923967 -0.9765438230670186 -0.0004985906997081331 -0.2153181669923967 0.9999689462689712 3.811622599330838e-019 -0.007880767584675538 -0.9999689462689712 -3.811622599330838e-019 0.007880767584675538 0.9971892143428791 0.02017313827773756 -0.07215757264666442 -0.9971892143428791 -0.02017313827773756 0.07215757264666442 0.9837731791909455 -0.003803803578565293 -0.1793763166721725 -0.9837731791909455 0.003803803578565293 0.1793763166721725 0.9898167070083889 -0.0151019980822362 -0.1415443965015694 -0.9898167070083889 0.0151019980822362 0.1415443965015694 0.9870725569722861 -0.04346651375319539 -0.1542673959537012 -0.9870725569722861 0.04346651375319539 0.1542673959537012 -0.6109158080307132 -0.7321255433242386 -0.3012873450883211 0.6109158080307132 0.7321255433242386 0.3012873450883211 -0.5143786487068958 -0.8427253558269834 -0.1588350729554152 0.5143786487068958 0.8427253558269834 0.1588350729554152 -0.4426563640097903 -0.1319682946309932 0.8869271179831065 0.4426563640097903 0.1319682946309932 -0.8869271179831065 0.8682017986762796 -0.02384011395508521 0.4956382609745554 -0.8682017986762796 0.02384011395508521 -0.4956382609745554 0.9765681864789892 -0.04566472509215266 0.2103076556842293 -0.9765681864789892 0.04566472509215266 -0.2103076556842293 -0.7144594929188609 -0.1454395098621124 0.684393879245857 0.7144594929188609 0.1454395098621124 -0.684393879245857 0.9979815238056222 0.0007785418897066691 0.06350017334727653 -0.9979815238056222 -0.0007785418897066691 -0.06350017334727653 0.9607774046779956 0.002014716084005299 0.2773133959608085 -0.9607774046779956 -0.002014716084005299 -0.2773133959608085 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 0.9785895810056572 0.003221874091712548 0.2057961405724349 -0.9785895810056572 -0.003221874091712548 -0.2057961405724349 -0.9845592136282013 0.005778961781360174 0.1749564473248911 0.9845592136282013 -0.005778961781360174 -0.1749564473248911 0.9999689462689712 -3.81162259933084e-019 -0.007880767584675541 0.9999689462689712 -3.81162259933084e-019 -0.007880767584675541 -0.9999689462689712 3.81162259933084e-019 0.007880767584675541 -0.9999689462689712 3.81162259933084e-019 0.007880767584675541 0.9999574977946593 -0.001434794235076954 -0.009107358000382792 -0.9999574977946593 0.001434794235076954 0.009107358000382792 0.990394137619684 -0.004947048548015723 -0.1381845826394031 -0.990394137619684 0.004947048548015723 0.1381845826394031 0.9878664051229494 -0.009852100486114623 -0.1549932312892155 -0.9878664051229494 0.009852100486114623 0.1549932312892155 0.9238623772605025 -0.2987503600454748 -0.2392206727172045 -0.9238623772605025 0.2987503600454748 0.2392206727172045 0.7722566517449084 -0.3004713563895385 -0.559764796879166 -0.7722566517449084 0.3004713563895385 0.559764796879166 0.4541969113379238 -0.5664532909165588 -0.6876305948260959 -0.4541969113379238 0.5664532909165588 0.6876305948260959 -0.02872876545232268 -0.7438757857110302 -0.6677001373883212 0.02872876545232268 0.7438757857110302 0.6677001373883212 -0.6394400882197744 -0.7392207940664073 -0.2113503990942941 0.6394400882197744 0.7392207940664073 0.2113503990942941 -0.9554201128959187 -0.2800080264120052 -0.09363713482803654 -0.5488772901889137 -0.8350252574485036 -0.03829542711519779 0.5488772901889137 0.8350252574485036 0.03829542711519779 0.9554201128959187 0.2800080264120052 0.09363713482803654 0.6724831580142987 -0.05649631950853753 0.7379529578971176 -0.6724831580142987 0.05649631950853753 -0.7379529578971176 0.8879735761679941 -0.2040308333966141 0.412158157811909 0.8856056710704745 -0.2071367107747284 0.415688559401436 0.8919673020626285 -0.06944885009471929 0.4467339132768373 -0.8919673020626285 0.06944885009471929 -0.4467339132768373 -0.8856056710704745 0.2071367107747284 -0.415688559401436 -0.8879735761679941 0.2040308333966141 -0.412158157811909 0.8949774379466016 -0.3243624985815883 0.3062749664606072 0.8971127254100035 -0.3219710774562727 0.3025283179953283 -0.8971127254100035 0.3219710774562727 -0.3025283179953283 -0.8949774379466016 0.3243624985815883 -0.3062749664606072 1 0 0 -1 -0 -0 0.8950565235662222 -0.05501086320564266 0.4425467484355961 0.8963859747980307 0.01799744263674584 0.4429088802947186 -0.8963859747980307 -0.01799744263674584 -0.4429088802947186 -0.8950565235662222 0.05501086320564266 -0.4425467484355961 0.9902347700892529 0.004108876318823506 0.1393492635132362 -0.9902347700892529 -0.004108876318823506 -0.1393492635132362 0.9867767988482539 0.00451540126637684 0.1620220985118897 -0.9867767988482539 -0.00451540126637684 -0.1620220985118897 0.896904250736173 0.02001407858138542 0.441771662366343 0.9006047635162565 0.0901014076929148 0.4251973615435342 -0.9006047635162565 -0.0901014076929148 -0.4251973615435342 -0.896904250736173 -0.02001407858138542 -0.441771662366343 -0.8505869295512368 -0.07656434047780775 0.5202305037613593 0.8505869295512368 0.07656434047780775 -0.5202305037613593 0.9996823061849715 0.002893873138954182 0.02503821477167236 -0.9996823061849715 -0.002893873138954182 -0.02503821477167236 0.8645545832379741 0.4903277633869822 0.110109295947855 0.8613428925296286 0.4933706707004632 0.1211354728445291 0.8544312098838555 0.5186707182013584 0.03046298831202012 -0.8544312098838555 -0.5186707182013584 -0.03046298831202012 -0.8613428925296286 -0.4933706707004632 -0.1211354728445291 -0.8645545832379741 -0.4903277633869822 -0.110109295947855 0.9999426356173807 -0.005924578645249221 -0.008923275320326694 -0.9999426356173807 0.005924578645249221 0.008923275320326694 0.9978370846623687 -0.0512747743709475 -0.04113453519505445 -0.9978370846623687 0.0512747743709475 0.04113453519505445 0.9645386096877072 -0.258059021394777 -0.0554149068254659 -0.9645386096877072 0.258059021394777 0.0554149068254659 -0.003424724626311721 -0.9004485623674271 -0.434949028958185 0.003424724626311721 0.9004485623674271 0.434949028958185 0.8365363380127288 -0.08000022603088255 0.5420395917451615 -0.8365363380127288 0.08000022603088255 -0.5420395917451615 0.9868338077903163 -0.03790197884639443 0.1572338252463278 -0.9868338077903163 0.03790197884639443 -0.1572338252463278 0.9964827847970811 -0.05726715295511971 0.0611762437182037 -0.9964827847970811 0.05726715295511971 -0.0611762437182037 0.873378472098167 -0.4356367472142845 0.2177858327624385 -0.873378472098167 0.4356367472142845 -0.2177858327624385 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 0.8966813609712228 0.07771580569472812 0.4358013199062331 0.9061208994149789 0.1894983809113076 0.3782000519240881 -0.9061208994149789 -0.1894983809113076 -0.3782000519240881 -0.8966813609712228 -0.07771580569472812 -0.4358013199062331 1 0 0 -1 -0 -0 0.8507754953433536 0.4522042923304711 0.2677542427696876 -0.8507754953433536 -0.4522042923304711 -0.2677542427696876 0.9999943528527163 0.0002116978693424881 -0.003354019482552267 -0.9999943528527163 -0.0002116978693424881 0.003354019482552267 0.9992193119948976 0.0003250103045750034 -0.03950520098348688 -0.9992193119948976 -0.0003250103045750034 0.03950520098348688 0.6615091298782606 -0.7266790865525058 -0.1853191200468062 -0.6615091298782606 0.7266790865525058 0.1853191200468062 0.594824018870023 -0.6913328274830446 -0.4101747288895473 -0.594824018870023 0.6913328274830446 0.4101747288895473 0.03524428480282053 -0.9772404059165154 -0.2091865899929102 -0.03524428480282053 0.9772404059165154 0.2091865899929102 -0.6341573082842825 -0.07317161945134183 0.7697339946088529 0.6341573082842825 0.07317161945134183 -0.7697339946088529 0.625589589694931 -0.09499442026280379 0.7743472899056741 -0.625589589694931 0.09499442026280379 -0.7743472899056741 0.8574560540041059 -0.4841070563899792 0.1743831224778856 -0.8574560540041059 0.4841070563899792 -0.1743831224778856 0.9982059251327112 0.003221613185180923 0.05978755922792781 -0.9982059251327112 -0.003221613185180923 -0.05978755922792781 0.9020852017429797 0.1863446310950731 0.3892530889516085 -0.9020852017429797 -0.1863446310950731 -0.3892530889516085 0.8572964449490628 0.4462177410166214 0.2567733106841953 -0.8572964449490628 -0.4462177410166214 -0.2567733106841953 0.8751946504592248 -0.478949811212292 0.06812783680159866 0.8682201907639653 -0.4898576719033636 0.07895037445889835 -0.8682201907639653 0.4898576719033636 -0.07895037445889835 -0.8751946504592248 0.478949811212292 -0.06812783680159866 0.9981408261253131 -0.06091922746013796 0.001933635833697217 -0.9981408261253131 0.06091922746013796 -0.001933635833697217 0.9763108033078525 -0.2123747784436454 -0.04140252196893392 -0.9763108033078525 0.2123747784436454 0.04140252196893392 0.9224089668347014 -0.3862119958074538 -0.001411452217341778 -0.9224089668347014 0.3862119958074538 0.001411452217341778 0.0350836217122919 -0.9993641268128589 -0.006362509498693735 -0.0350836217122919 0.9993641268128589 0.006362509498693735 0.9981387801496015 -0.05180774196831358 0.03217038130968378 -0.9981387801496015 0.05180774196831358 -0.03217038130968378 0.8977399542408993 0.3250712691215336 0.2973073234067127 -0.8977399542408993 -0.3250712691215336 -0.2973073234067127 0.8876171555381039 0.3295593733851059 0.3217551935998261 -0.8876171555381039 -0.3295593733851059 -0.3217551935998261 0.03260687053562721 -0.9929270011109181 -0.114161124988988 -0.03260687053562721 0.9929270011109181 0.114161124988988</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1024\" source=\"#ID1486\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1484\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1482\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1483\"/>\r\n                </vertices>\r\n                <triangles count=\"748\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1484\"/>\r\n                    <p>0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 16 0 8 1 18 19 12 18 1 6 14 22 14 0 16 16 8 24 18 26 27 30 18 12 32 6 22 14 16 34 16 24 36 18 38 39 30 38 18 42 30 12 32 22 44 46 14 34 34 16 48 48 16 36 38 50 51 54 42 12 56 32 44 58 46 34 34 48 60 62 42 54 56 44 64 66 58 34 66 34 60 68 62 54 70 71 72 76 56 64 66 60 78 80 62 68 82 71 70 84 76 64 86 82 70 88 80 68 90 76 84 92 82 86 94 92 86 96 88 68 98 90 84 100 92 94 102 88 96 104 90 98 106 100 94 108 102 96 104 98 110 112 100 106 114 102 108 116 108 96 118 104 110 120 112 106 122 114 108 124 108 116 118 110 126 128 112 120 122 130 114 132 122 108 134 108 124 136 118 126 138 128 120 140 130 122 134 132 108 132 140 122 142 134 124 136 126 144 146 128 138 140 148 130 150 132 134 152 140 132 150 134 142 142 124 154 136 144 156 158 146 138 160 148 140 150 152 132 160 140 152 150 142 162 142 154 162 156 144 164 158 166 146 160 168 148 170 152 150 172 160 152 150 162 174 154 176 162 178 156 164 180 166 158 182 168 160 170 150 174 170 172 152 182 160 172 176 154 184 178 164 186 180 188 166 182 190 168 170 174 192 194 172 170 196 182 172 198 176 184 200 201 186 201 202 186 178 186 202 206 188 180 182 208 190 194 170 192 192 174 210 194 196 172 196 208 182 212 213 214 214 213 186 200 186 213 206 218 188 208 220 190 194 192 222 224 192 210 174 226 210 228 196 194 230 208 196 186 232 214 218 234 188 236 237 190 220 236 190 240 220 208 228 194 222 222 192 224 224 210 242 210 226 244 228 230 196 230 240 208 214 232 246 218 248 234 236 250 237 220 252 236 240 252 220 228 222 254 222 224 256 224 242 258 242 210 244 226 260 244 262 230 228 264 240 230 246 232 266 248 268 234 250 270 237 236 272 250 252 274 236 276 252 240 262 228 254 254 222 256 256 224 258 258 242 278 242 244 280 244 260 282 262 264 230 264 276 240 246 266 284 250 286 270 274 272 236 272 288 250 252 290 274 276 290 252 262 254 292 254 256 294 256 258 296 298 258 278 278 242 280 244 282 280 260 300 282 264 262 302 304 276 264 266 306 284 250 308 286 274 310 272 288 308 250 272 312 288 290 310 274 314 290 276 302 262 292 294 292 254 294 256 296 296 258 298 278 280 316 280 282 318 282 300 320 304 264 302 314 276 304 284 306 322 308 324 286 310 312 272 288 326 308 312 328 288 330 310 290 314 330 290 302 292 332 294 334 292 336 294 296 338 296 298 316 280 340 340 280 318 318 282 320 320 300 342 304 302 344 346 314 304 306 348 322 308 350 324 310 352 312 328 326 288 326 350 308 312 354 328 330 352 310 356 302 332 334 332 292 334 294 336 336 296 338 318 320 358 320 342 360 346 304 344 362 322 348 350 364 324 352 354 312 328 366 326 326 368 350 354 370 328 356 332 372 334 374 332 334 336 376 336 338 378 320 360 358 360 342 380 346 344 382 384 362 348 350 368 364 352 386 354 366 388 326 370 366 328 326 388 368 354 390 370 356 372 392 374 372 332 374 334 376 376 336 378 358 360 394 360 380 396 398 356 392 400 362 384 368 402 364 386 390 354 366 404 388 370 406 366 388 408 368 390 410 370 412 392 372 374 412 372 414 374 376 376 378 416 358 394 418 360 396 394 400 384 420 368 408 402 390 422 423 404 426 388 366 406 404 370 410 406 388 426 408 428 410 390 414 376 416 418 394 430 394 396 432 434 400 420 402 408 436 428 390 423 404 438 426 404 406 440 410 440 406 408 426 442 444 410 428 446 414 416 448 418 430 430 394 432 434 420 450 402 436 452 436 408 442 454 428 423 426 438 456 404 440 438 444 440 410 426 456 442 444 428 458 446 460 414 448 430 462 464 418 448 430 432 466 468 434 450 452 436 470 436 442 472 458 428 454 456 438 474 438 440 476 476 440 444 442 456 478 480 444 458 482 460 446 460 484 414 448 462 486 462 430 466 488 464 448 490 468 450 452 470 492 436 494 470 436 472 494 442 478 472 458 454 496 438 476 474 456 474 478 476 444 480 480 458 498 500 460 482 484 502 414 460 504 484 486 462 506 508 448 486 462 466 510 488 448 508 512 468 490 514 452 492 470 516 492 494 518 470 472 520 494 472 478 520 454 522 496 458 496 498 474 476 524 478 474 526 524 476 480 480 498 528 500 530 460 532 502 484 530 504 460 504 532 484 534 486 506 506 462 510 536 508 486 538 512 490 540 452 514 514 492 542 492 516 544 470 546 516 470 518 548 494 550 518 494 520 550 478 526 520 552 496 553 556 498 496 474 524 526 524 480 528 558 528 498 560 530 500 532 553 502 530 562 504 504 564 532 534 506 566 536 486 534 506 510 568 570 508 536 572 512 538 574 540 514 514 542 576 492 544 542 516 578 544 546 580 516 470 548 546 518 582 548 518 550 582 520 526 550 556 496 552 552 553 532 558 498 556 526 524 584 524 528 584 558 586 528 560 588 530 590 560 500 562 564 504 588 562 530 564 552 532 592 534 566 566 506 568 594 536 534 596 570 536 598 572 538 600 540 574 574 514 576 542 544 602 578 516 604 578 606 544 516 580 608 610 580 546 548 610 546 582 610 548 550 584 582 526 584 550 612 556 552 614 558 556 586 584 528 616 586 558 618 588 560 560 590 620 562 622 564 588 624 562 564 612 552 594 534 592 592 566 626 566 568 628 596 536 594 630 570 596 632 572 598 574 576 634 542 602 636 544 638 602 516 608 604 578 604 640 544 606 642 606 578 640 580 644 608 610 616 580 582 586 610 584 586 582 612 614 556 614 616 558 610 586 616 646 588 618 618 560 620 624 622 562 622 612 564 646 624 588 648 594 592 626 566 628 592 626 650 628 568 652 654 596 594 630 596 656 658 572 632 632 598 660 636 602 662 638 664 602 544 642 638 608 666 604 604 668 640 606 670 642 606 640 670 580 616 644 608 644 672 674 614 612 644 616 614 676 646 618 618 620 678 624 680 622 622 674 612 682 624 646 648 592 650 654 594 648 684 626 628 686 650 626 568 688 652 690 628 652 656 596 654 692 630 656 658 694 572 696 658 632 632 660 698 660 598 700 662 702 636 602 704 662 638 706 664 664 704 602 642 708 638 604 666 668 608 672 666 640 668 710 642 670 708 670 640 710 672 644 674 674 644 614 712 646 676 676 618 678 678 620 714 680 674 622 682 680 624 712 682 646 648 650 716 718 654 648 686 626 684 684 628 690 720 650 686 652 688 722 724 690 652 726 656 654 728 692 656 730 694 658 732 658 696 696 632 698 698 660 734 660 700 736 598 738 700 636 702 740 662 742 702 704 744 662 638 708 706 664 706 746 664 746 704 668 666 748 666 672 750 710 668 752 708 670 754 670 710 754 680 672 674 712 676 756 758 676 678 678 714 760 750 680 682 762 682 712 718 648 716 720 716 650 726 654 718 764 686 684 766 684 690 768 720 686 770 652 722 722 688 772 774 690 724 724 652 770 728 656 726 776 692 728 730 778 694 780 730 658 734 660 782 660 736 782 736 700 784 738 786 700 702 788 740 742 790 702 744 742 662 704 792 744 706 708 794 706 794 746 704 746 792 668 748 752 748 666 750 750 672 680 710 752 796 708 754 794 754 710 796 798 712 756 756 676 758 758 678 800 678 760 800 762 750 682 762 712 798 802 718 716 804 716 720 806 726 718 766 764 684 768 686 764 774 766 690 808 720 768 770 722 810 810 722 772 688 812 772 774 724 814 724 770 816 818 728 726 776 728 800 820 778 730 778 822 694 824 730 825 700 828 784 786 828 700 740 788 830 702 790 788 742 832 790 744 834 742 744 792 836 746 794 838 746 838 792 752 748 840 748 750 762 796 752 842 794 754 844 796 844 754 846 798 756 848 756 758 848 758 800 800 760 776 840 762 798 806 718 802 802 716 804 808 804 720 818 726 806 850 764 766 768 764 852 854 766 774 856 808 768 816 770 810 812 858 772 814 724 816 860 774 814 800 728 818 862 820 730 822 864 694 784 828 866 788 868 830 788 790 868 832 870 790 834 832 742 744 836 834 792 838 836 794 844 838 748 762 840 842 752 840 842 872 796 872 844 796 874 798 846 846 756 848 874 840 798 876 806 802 802 804 878 880 804 808 882 818 806 850 766 854 852 764 850 856 768 852 854 774 860 884 808 856 816 810 886 888 858 812 890 814 816 860 814 890 892 818 882 894 820 895 822 898 864 830 868 900 790 902 868 790 870 902 832 904 870 834 906 832 836 908 834 838 910 836 838 844 910 842 840 874 912 872 842 910 844 872 914 915 874 882 806 876 918 802 878 880 878 804 884 880 808 920 921 922 926 927 921 930 856 852 932 922 933 884 856 930 816 886 936 938 890 816 940 933 941 944 892 882 898 946 864 948 949 950 868 954 900 868 902 954 870 956 902 904 958 870 906 904 832 834 908 906 836 910 908 874 912 842 960 872 912 960 910 872 915 912 874 944 882 876 962 918 878 880 964 878 966 880 884 920 922 932 926 921 920 968 927 926 970 930 852 940 932 933 972 884 930 938 816 936 974 941 975 974 940 941 898 978 946 948 980 949 900 954 982 902 984 954 956 984 902 958 956 870 986 958 904 988 904 906 908 988 906 908 910 960 990 960 912 990 912 915 992 944 876 964 962 878 994 918 962 966 964 880 966 884 972 996 968 926 954 930 970 984 972 930 998 938 936 1000 974 975 980 1002 949 978 998 946 1004 1005 996 982 954 970 954 984 930 956 1008 984 958 1010 956 986 1012 958 988 986 904 908 960 988 988 960 990 990 915 1014 1016 964 966 1008 966 972 1005 968 996 1008 972 984 1000 975 1018 998 936 946 980 1020 1002 1020 1018 1002 1010 1008 956 1012 1010 958 1022 986 1014 988 990 986 986 990 1014 1008 1016 966 1020 1000 1018 1010 1016 1008</p>\r\n                </triangles>\r\n                <triangles count=\"748\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1484\"/>\r\n                    <p>3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 17 20 21 4 4 21 13 23 15 7 17 5 15 25 9 17 28 29 21 13 21 31 23 7 33 35 17 15 37 25 17 40 41 21 21 41 31 13 31 43 45 23 33 35 15 47 49 17 35 37 17 49 52 53 41 13 43 55 45 33 57 35 47 59 61 49 35 55 43 63 65 45 57 35 59 67 61 35 67 55 63 69 73 74 75 65 57 77 79 61 67 69 63 81 75 74 83 65 77 85 75 83 87 69 81 89 85 77 91 87 83 93 87 93 95 69 89 97 85 91 99 95 93 101 97 89 103 99 91 105 95 101 107 97 103 109 111 99 105 107 101 113 109 103 115 97 109 117 111 105 119 107 113 121 109 115 123 117 109 125 127 111 119 121 113 129 115 131 123 109 123 133 125 109 135 127 119 137 121 129 139 123 131 141 109 133 135 123 141 133 125 135 143 145 127 137 139 129 147 131 149 141 135 133 151 133 141 153 143 135 151 155 125 143 157 145 137 139 147 159 141 149 161 133 153 151 153 141 161 163 143 151 163 155 143 165 145 157 147 167 159 149 169 161 151 153 171 153 161 173 175 163 151 163 177 155 165 157 179 159 167 181 161 169 183 175 151 171 153 173 171 173 161 183 185 155 177 187 165 179 167 189 181 169 191 183 193 175 171 171 173 195 173 183 197 185 177 199 203 187 179 187 203 204 187 204 205 181 189 207 191 209 183 193 171 195 211 175 193 173 197 195 183 209 197 215 187 205 187 215 216 216 215 217 189 219 207 191 221 209 223 193 195 211 193 225 211 227 175 195 197 229 197 209 231 216 233 187 189 235 219 191 238 239 191 239 221 209 221 241 223 195 229 225 193 223 243 211 225 245 227 211 197 231 229 209 241 231 247 233 216 235 249 219 238 251 239 239 253 221 221 253 241 255 223 229 257 225 223 259 243 225 245 211 243 245 261 227 229 231 263 231 241 265 267 233 247 235 269 249 238 271 251 251 273 239 239 275 253 241 253 277 255 229 263 257 223 255 259 225 257 279 243 259 281 245 243 283 261 245 231 265 263 241 277 265 285 267 247 271 287 251 239 273 275 251 289 273 275 291 253 253 291 277 293 255 263 295 257 255 297 259 257 279 259 299 281 243 279 281 283 245 283 301 261 303 263 265 265 277 305 285 307 267 287 309 251 273 311 275 251 309 289 289 313 273 275 311 291 277 291 315 293 263 303 255 293 295 297 257 295 299 259 297 317 281 279 319 283 281 321 301 283 303 265 305 305 277 315 323 307 285 287 325 309 273 313 311 309 327 289 289 329 313 291 311 331 291 331 315 333 293 303 293 335 295 297 295 337 299 297 339 341 281 317 319 281 341 321 283 319 343 301 321 345 303 305 305 315 347 323 349 307 325 351 309 313 353 311 289 327 329 309 351 327 329 355 313 311 353 331 333 303 357 293 333 335 337 295 335 339 297 337 359 321 319 361 343 321 345 305 347 349 323 363 325 365 351 313 355 353 327 367 329 351 369 327 329 371 355 373 333 357 333 375 335 377 337 335 379 339 337 359 361 321 381 343 361 383 345 347 349 363 385 365 369 351 355 387 353 327 389 367 329 367 371 369 389 327 371 391 355 393 373 357 333 373 375 377 335 375 379 337 377 395 361 359 397 381 361 393 357 399 385 363 401 365 403 369 355 391 387 389 405 367 367 407 371 369 409 389 371 411 391 373 393 413 373 413 375 377 375 415 417 379 377 419 395 359 395 397 361 421 385 401 403 409 369 424 425 391 389 427 405 405 407 367 407 411 371 409 427 389 391 411 429 417 377 415 431 395 419 433 397 395 421 401 435 437 409 403 424 391 429 427 439 405 441 407 405 407 441 411 443 427 409 429 411 445 417 415 447 431 419 449 433 395 431 451 421 435 453 437 403 443 409 437 424 429 455 457 439 427 439 441 405 411 441 445 443 457 427 459 429 445 415 461 447 463 431 449 449 419 465 467 433 431 451 435 469 471 437 453 473 443 437 455 429 459 475 439 457 477 441 439 445 441 477 479 457 443 459 445 481 447 461 483 415 485 461 487 463 449 467 431 463 449 465 489 451 469 491 493 471 453 471 495 437 495 473 437 473 479 443 497 455 459 475 477 439 479 475 457 481 445 477 499 459 481 483 461 501 415 503 485 485 505 461 507 463 487 487 449 509 511 467 463 509 449 489 491 469 513 493 453 515 493 517 471 471 519 495 495 521 473 521 479 473 497 523 455 499 497 459 525 477 475 527 475 479 481 477 525 529 499 481 461 531 501 485 503 533 461 505 531 485 533 505 507 487 535 511 463 507 487 509 537 491 513 539 515 453 541 543 493 515 545 517 493 517 547 471 549 519 471 519 551 495 551 521 495 521 527 479 554 497 555 497 499 557 527 525 475 529 481 525 499 529 559 501 531 561 503 554 533 505 563 531 533 565 505 567 507 535 535 487 537 569 511 507 537 509 571 539 513 573 515 541 575 577 543 515 543 545 493 545 579 517 517 581 547 547 549 471 549 583 519 583 551 519 551 527 521 555 497 557 533 554 555 557 499 559 585 525 527 585 529 525 529 587 559 531 589 561 501 561 591 505 565 563 531 563 589 533 555 565 567 535 593 569 507 567 535 537 595 537 571 597 539 573 599 575 541 601 577 515 575 603 545 543 605 517 579 545 607 579 609 581 517 547 581 611 547 611 549 549 611 583 583 585 551 551 585 527 555 557 613 557 559 615 529 585 587 559 587 617 561 589 619 621 591 561 565 623 563 563 625 589 555 613 565 593 535 595 627 567 593 629 569 567 595 537 597 597 571 631 599 573 633 635 577 575 637 603 543 603 639 545 605 609 517 641 605 579 643 607 545 641 579 607 609 645 581 581 617 611 611 587 583 583 587 585 557 615 613 559 617 615 617 587 611 619 589 647 621 561 619 563 623 625 565 613 623 589 625 647 593 595 649 629 567 627 651 627 593 653 569 629 595 597 655 657 597 631 633 573 659 661 599 633 663 603 637 603 665 639 639 643 545 605 667 609 641 669 605 643 671 607 671 641 607 645 617 581 673 645 609 613 615 675 615 617 645 619 647 677 679 621 619 623 681 625 613 675 623 647 625 683 651 593 649 649 595 655 629 627 685 627 651 687 653 689 569 653 629 691 655 597 657 657 631 693 573 695 659 633 659 697 699 661 633 701 599 661 637 703 663 663 705 603 665 707 639 603 705 665 639 709 643 669 667 605 667 673 609 711 669 641 709 671 643 711 641 671 675 645 673 615 645 675 677 647 713 679 619 677 715 621 679 623 675 681 625 681 683 647 683 713 717 651 649 649 655 719 685 627 687 691 629 685 687 651 721 723 689 653 653 691 725 655 657 727 657 693 729 659 695 731 697 659 733 699 633 697 735 661 699 737 701 661 701 739 599 741 703 637 703 743 663 663 745 705 707 709 639 747 707 665 705 747 665 749 667 669 751 673 667 753 669 711 755 671 709 755 711 671 675 673 681 757 677 713 679 677 759 761 715 679 683 681 751 713 683 763 717 649 719 651 717 721 719 655 727 685 687 765 691 685 767 687 721 769 723 653 771 773 689 723 725 691 775 771 653 725 727 657 729 729 693 777 695 779 731 659 731 781 783 661 735 783 737 661 785 701 737 701 787 739 741 789 703 703 791 743 663 743 745 745 793 705 795 709 707 747 795 707 793 747 705 753 749 669 751 667 749 681 673 751 797 753 711 795 755 709 797 711 755 757 713 799 759 677 757 801 679 759 801 761 679 683 751 763 799 713 763 717 719 803 721 717 805 719 727 807 685 765 767 765 687 769 691 767 775 769 721 809 811 723 771 773 723 811 773 813 689 815 725 775 817 771 725 727 729 819 801 729 777 731 779 821 695 823 779 826 731 827 785 829 701 701 829 787 831 789 741 789 791 703 791 833 743 743 835 745 837 793 745 839 795 747 793 839 747 841 749 753 763 751 749 843 753 797 845 755 795 755 845 797 757 799 847 759 757 849 801 759 849 777 761 801 799 763 841 803 719 807 805 717 803 721 805 809 807 727 819 767 765 851 853 765 769 775 767 855 769 809 857 811 771 817 773 859 813 817 725 815 815 775 861 819 729 801 731 821 863 695 865 823 867 829 785 831 869 789 869 791 789 791 871 833 743 833 835 835 837 745 837 839 793 839 845 795 841 763 749 841 753 843 797 873 843 797 845 873 847 799 875 849 757 847 799 841 875 803 807 877 879 805 803 809 805 881 807 819 883 855 767 851 851 765 853 853 769 857 861 775 855 857 809 885 887 811 817 813 859 889 817 815 891 891 815 861 883 819 893 896 821 897 865 899 823 901 869 831 869 903 791 903 871 791 871 905 833 833 907 835 835 909 837 837 911 839 911 845 839 875 841 843 843 873 913 873 845 911 875 916 917 877 807 883 879 803 919 805 879 881 809 881 885 923 924 925 924 928 929 853 857 931 934 923 935 931 857 885 937 887 817 817 891 939 942 934 943 883 893 945 865 947 899 951 952 953 901 955 869 955 903 869 903 957 871 871 959 905 833 905 907 907 909 835 909 911 837 843 913 875 913 873 961 873 911 961 875 913 916 877 883 945 879 919 963 879 965 881 885 881 967 935 923 925 925 924 929 929 928 969 853 931 971 934 935 943 931 885 973 937 817 939 976 942 977 942 943 977 947 979 899 952 981 953 983 955 901 955 985 903 903 985 957 871 957 959 905 959 987 907 905 989 907 989 909 961 911 909 913 961 991 916 913 991 877 945 993 879 963 965 963 919 995 881 965 967 973 885 967 929 969 997 971 931 955 931 973 985 937 939 999 976 977 1001 952 1003 981 947 999 979 997 1006 1007 971 955 983 931 985 955 985 1009 957 957 1011 959 959 1013 987 905 987 989 989 961 909 991 961 989 1015 916 991 967 965 1017 973 967 1009 997 969 1006 985 973 1009 1019 976 1001 947 937 999 1003 1021 981 1003 1019 1021 957 1009 1011 959 1011 1013 1015 987 1023 987 991 989 1015 991 987 967 1017 1009 1019 1001 1021 1009 1017 1011</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1487\">\r\n            <mesh>\r\n                <source id=\"ID1488\">\r\n                    <float_array count=\"3360\" id=\"ID1491\">-0.4284909069538117 1.845905065536499 -0.3419413566589356 -0.4284909069538117 1.778753757476807 -0.3575156927108765 -0.2499992847442627 1.845905065536499 -0.3415195643901825 -0.2499992847442627 1.845905065536499 -0.3415195643901825 -0.4284909069538117 1.778753757476807 -0.3575156927108765 -0.4284909069538117 1.845905065536499 -0.3419413566589356 -0.492791086435318 1.735238432884216 -0.341511458158493 -0.492791086435318 1.735238432884216 -0.341511458158493 -0.2530297040939331 1.885210990905762 -0.2984420955181122 -0.2530297040939331 1.885210990905762 -0.2984420955181122 -0.2518970370292664 1.778753757476807 -0.3580342233181 -0.2518970370292664 1.778753757476807 -0.3580342233181 -0.5439662933349609 1.630160927772522 -0.3612952828407288 -0.5439662933349609 1.630160927772522 -0.3612952828407288 -0.4274950623512268 1.892464756965637 -0.2981753945350647 -0.4274950623512268 1.892464756965637 -0.2981753945350647 -0.001449317671358585 1.893650889396668 -0.2984420955181122 -0.001449317671358585 1.893650889396668 -0.2984420955181122 -0.001449317671358585 1.840989470481873 -0.3415195643901825 -0.001449317671358585 1.840989470481873 -0.3415195643901825 -0.5402756929397583 1.730631828308106 -0.05429454147815704 -0.5402756929397583 1.730631828308106 -0.05429454147815704 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.001449317671358585 1.903719186782837 -0.2660267651081085 -0.001449317671358585 1.903719186782837 -0.2660267651081085 -0.2510687708854675 1.897168397903442 -0.2660267651081085 -0.2510687708854675 1.897168397903442 -0.2660267651081085 -0.001449317671358585 1.790218114852905 -0.3580342829227448 -0.001449317671358585 1.790218114852905 -0.3580342829227448 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4942575693130493 1.810338735580444 -0.1560795605182648 -0.4942575693130493 1.810338735580444 -0.1560795605182648 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.4262329339981079 1.900443553924561 -0.2676746845245361 0.2471002340316773 1.845904111862183 -0.3415195643901825 0.2471002340316773 1.845904111862183 -0.3415195643901825 0.2501309812068939 1.885210514068604 -0.2984420955181122 0.2501309812068939 1.885210514068604 -0.2984420955181122 0.2489985525608063 1.778753399848938 -0.3580342829227448 0.2489985525608063 1.778753399848938 -0.3580342829227448 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.5022329092025757 1.826841831207275 0.03412822261452675 -0.5022329092025757 1.826841831207275 0.03412822261452675 -0.5121397972106934 1.815709233283997 -0.1209307163953781 -0.5121397972106934 1.815709233283997 -0.1209307163953781 -0.4660681784152985 1.811052560806274 -0.1879515945911408 -0.4660681784152985 1.811052560806274 -0.1879515945911408 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.253710150718689 1.913546323776245 -0.1969181150197983 0.248169869184494 1.897167801856995 -0.2660267651081085 0.248169869184494 1.897167801856995 -0.2660267651081085 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.001449317671358585 1.915921688079834 -0.1955144852399826 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 -0.001449264585971832 1.536692500114441 -0.3334604203701019 -0.001449264585971832 1.536692500114441 -0.3334604203701019 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.4583899974822998 1.827001571655273 0.05228543654084206 -0.4583899974822998 1.827001571655273 0.05228543654084206 -0.5234936475753784 1.823414206504822 0.00754820927977562 -0.5234936475753784 1.823414206504822 0.00754820927977562 -0.5227372050285339 1.817952036857605 -0.07677430659532547 -0.5227372050285339 1.817952036857605 -0.07677430659532547 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4287169277667999 1.813359618186951 -0.1959136426448822 0.425592303276062 1.778753399848938 -0.3575156927108765 0.425592303276062 1.778753399848938 -0.3575156927108765 0.425592303276062 1.845904111862183 -0.3419413566589356 0.425592303276062 1.845904111862183 -0.3419413566589356 0.424596518278122 1.892464280128479 -0.2981753945350647 0.424596518278122 1.892464280128479 -0.2981753945350647 0.5410676598548889 1.630160927772522 -0.3612952828407288 0.5410676598548889 1.630160927772522 -0.3612952828407288 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.5042721629142761 1.629883885383606 0.1692219376564026 -0.5042721629142761 1.629883885383606 0.1692219376564026 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.531063973903656 1.821377754211426 -0.03405506536364555 -0.531063973903656 1.821377754211426 -0.03405506536364555 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.5112505555152893 1.913546323776245 -0.1217374056577683 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.5500150322914124 1.538213133811951 -0.362256646156311 0.5500150322914124 1.538213133811951 -0.362256646156311 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4982104897499085 1.831614017486572 0.1618779003620148 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4982104897499085 1.831614017486572 0.1618779003620148 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.4839866459369659 1.627110838890076 0.1684880554676056 -0.4839866459369659 1.627110838890076 0.1684880554676056 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.5210548639297485 1.913546323776245 -0.07925551384687424 0.4898924827575684 1.735237956047058 -0.341511458158493 0.4898924827575684 1.735237956047058 -0.341511458158493 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.5500150322914124 1.538213133811951 -0.362256646156311 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5500150322914124 1.538213133811951 -0.362256646156311 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.1436953097581863 1.441868185997009 -0.2887334525585175 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.5120450258255005 1.535624384880066 0.1684880554676056 -0.5120450258255005 1.535624384880066 0.1684880554676056 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.3280232548713684 1.530326366424561 -0.02723223529756069 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.3280232548713684 1.530326366424561 -0.02723223529756069 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.3179892599582672 1.440020799636841 -0.02723223529756069 -0.3179892599582672 1.440020799636841 -0.02723223529756069 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.4811488389968872 1.900608420372009 0.1218080669641495 -0.4811488389968872 1.900608420372009 0.1218080669641495 -0.3965325653553009 1.825424194335938 0.07977844774723053 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3965325653553009 1.825424194335938 0.07977844774723053 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3392848372459412 1.63602614402771 -0.02723223529756069 -0.3392848372459412 1.63602614402771 -0.02723223529756069 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 0.5373769402503967 1.730631828308106 -0.05429454147815704 0.5373769402503967 1.730631828308106 -0.05429454147815704 0.425817996263504 1.813359618186951 -0.1959136426448822 0.425817996263504 1.813359618186951 -0.1959136426448822 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5607179403305054 1.441428422927856 -0.371430516242981 0.5607179403305054 1.441428422927856 -0.371430516242981 0.174921989440918 1.441850662231445 -0.06437790393829346 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.174921989440918 1.441850662231445 -0.06437790393829346 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.146251991391182 1.636475563049316 -0.2887333929538727 -0.146251991391182 1.636475563049316 -0.2887333929538727 -0.3129720091819763 1.329645752906799 -0.02723223529756069 -0.3129720091819763 1.329645752906799 -0.02723223529756069 -0.001449264585971832 1.800307512283325 -0.2640757858753204 -0.001449264585971832 1.800307512283325 -0.2640757858753204 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.4740534126758575 1.535303473472595 0.1684880554676056 -0.4740534126758575 1.535303473472595 0.1684880554676056 0.4913583993911743 1.810338258743286 -0.1560795605182648 0.4913583993911743 1.810338258743286 -0.1560795605182648 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.425817996263504 1.813359618186951 -0.1959136426448822 0.463169276714325 1.811052083969116 -0.1879515945911408 0.463169276714325 1.811052083969116 -0.1879515945911408 0.425817996263504 1.813359618186951 -0.1959136426448822 0.5607179403305054 1.441428422927856 -0.371430516242981 0.5607179403305054 1.441428422927856 -0.371430516242981 0.501373291015625 1.629883170127869 0.1692219376564026 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5520590543746948 1.631603479385376 0.1968967169523239 0.501373291015625 1.629883170127869 0.1692219376564026 0.4799154102802277 1.733479738235474 0.1646009534597397 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4799154102802277 1.733479738235474 0.1646009534597397 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.332428932189941 -0.06246279180049896 0.174921989440918 1.332428932189941 -0.06246279180049896 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5218863487243652 1.436050415039063 0.1684880554676056 -0.5218863487243652 1.436050415039063 0.1684880554676056 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.4668075442314148 1.436590313911438 0.1684880554676056 -0.4668075442314148 1.436590313911438 0.1684880554676056 -0.001449264585971832 1.825429081916809 0.07037267088890076 -0.001449264585971832 1.825429081916809 0.07037267088890076 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 0.499333918094635 1.826841831207275 0.03412822261452675 0.499333918094635 1.826841831207275 0.03412822261452675 0.5092408657073975 1.815709233283997 -0.1209307163953781 0.5092408657073975 1.815709233283997 -0.1209307163953781 0.425817996263504 1.813359618186951 -0.1959136426448822 0.425817996263504 1.813359618186951 -0.1959136426448822 0.57486492395401 1.437644124031067 0.2137537151575089 0.57486492395401 1.437644124031067 0.2137537151575089 0.5091465711593628 1.535624027252197 0.1684880554676056 0.5091465711593628 1.535624027252197 0.1684880554676056 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.174921989440918 1.635286450386047 -0.06640081107616425 0.174921989440918 1.635286450386047 -0.06640081107616425 0.174921989440918 1.441850662231445 -0.06437790393829346 0.174921989440918 1.537016987800598 -0.06437790393829346 0.3251246511936188 1.530326366424561 -0.02723223529756069 0.3251246511936188 1.530326366424561 -0.02723223529756069 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.441850662231445 -0.06437790393829346 0.174921989440918 1.332428932189941 -0.06246279180049896 0.31509068608284 1.440020322799683 -0.02723223529756069 0.31509068608284 1.440020322799683 -0.02723223529756069 0.174921989440918 1.332428932189941 -0.06246279180049896 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.3129720091819763 1.236830115318298 -0.02777358889579773 -0.3129720091819763 1.236830115318298 -0.02777358889579773 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.4615717530250549 1.331655025482178 0.1681370437145233 -0.4615717530250549 1.331655025482178 0.1681370437145233 0.3936337828636169 1.825424194335938 0.07977844774723053 0.3936337828636169 1.825424194335938 0.07977844774723053 -0.001449317671358585 1.738980174064636 -0.3044333755970001 -0.001449317671358585 1.738980174064636 -0.3044333755970001 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.001449317671358585 1.847941994667053 0.08541373908519745 0.4554912447929382 1.827001571655273 0.05228543654084206 0.4554912447929382 1.827001571655273 0.05228543654084206 0.5205953121185303 1.823413729667664 0.00754820927977562 0.5205953121185303 1.823413729667664 0.00754820927977562 0.5198380947113037 1.817951560020447 -0.07677430659532547 0.5198380947113037 1.817951560020447 -0.07677430659532547 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.57486492395401 1.437644124031067 0.2137537151575089 0.57486492395401 1.437644124031067 0.2137537151575089 0.4810881018638611 1.627110362052918 0.1684880554676056 0.4810881018638611 1.627110362052918 0.1684880554676056 0.4953119158744812 1.831613540649414 0.1618779003620148 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4953119158744812 1.831613540649414 0.1618779003620148 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.174921989440918 1.238158345222473 -0.06665239483118057 0.174921989440918 1.238158345222473 -0.06665239483118057 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.174921989440918 1.635286450386047 -0.06640081107616425 0.3363863527774811 1.636025667190552 -0.02723223529756069 0.3363863527774811 1.636025667190552 -0.02723223529756069 0.174921989440918 1.635286450386047 -0.06640081107616425 0.1433530896902084 1.636475563049316 -0.2887334525585175 0.1433530896902084 1.636475563049316 -0.2887334525585175 0.3100736141204834 1.329645752906799 -0.02723223529756069 0.3100736141204834 1.329645752906799 -0.02723223529756069 -0.59349524974823 1.231308460235596 0.211546465754509 -0.59349524974823 1.231308460235596 0.211546465754509 -0.5315014719963074 1.332691550254822 0.1684880554676056 -0.5315014719963074 1.332691550254822 0.1684880554676056 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 0.391455739736557 1.843269467353821 0.09250524640083313 0.391455739736557 1.843269467353821 0.09250524640083313 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.4959137439727783 1.913545846939087 0.03620735183358192 0.4959137439727783 1.913545846939087 0.03620735183358192 0.528164803981781 1.821377277374268 -0.03405506536364555 0.528164803981781 1.821377277374268 -0.03405506536364555 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5189875960350037 1.436050415039063 0.1684880554676056 0.5189875960350037 1.436050415039063 0.1684880554676056 0.4711544513702393 1.535303473472595 0.1684880554676056 0.4711544513702393 1.535303473472595 0.1684880554676056 0.47825026512146 1.900608062744141 0.1218080669641495 0.47825026512146 1.900608062744141 0.1218080669641495 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.4799154102802277 1.733479738235474 0.1646009534597397 0.4799154102802277 1.733479738235474 0.1646009534597397 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.174921989440918 1.238158345222473 -0.06665239483118057 0.174921989440918 1.238158345222473 -0.06665239483118057 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.4639089703559876 1.436590313911438 0.1684880554676056 0.4639089703559876 1.436590313911438 0.1684880554676056 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.59349524974823 1.231308460235596 0.211546465754509 -0.59349524974823 1.231308460235596 0.211546465754509 -0.4589178562164307 1.23185932636261 0.1681370437145233 -0.4589178562164307 1.23185932636261 0.1681370437145233 -0.3018067181110382 1.0907301902771 -0.02723223529756069 -0.3018067181110382 1.0907301902771 -0.02723223529756069 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.002916331402957439 1.098329663276672 -0.2887333929538727 -0.002916331402957439 1.098329663276672 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.536308765411377 1.230878353118897 0.1681370437145233 -0.536308765411377 1.230878353118897 0.1681370437145233 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5822999477386475 1.338033080101013 0.2104835957288742 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.097799062728882 -0.06455764919519424 0.174921989440918 1.097799062728882 -0.06455764919519424 0.3100736141204834 1.236830115318298 -0.02777358889579773 0.3100736141204834 1.236830115318298 -0.02777358889579773 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.4586731791496277 1.331655025482178 0.1681370437145233 0.4586731791496277 1.331655025482178 0.1681370437145233 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.001449264585971832 0.9224953055381775 -0.4125895202159882 -0.001449264585971832 0.9224953055381775 -0.4125895202159882 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.5905963182449341 1.231308460235596 0.211546465754509 0.5905963182449341 1.231308460235596 0.211546465754509 0.5286024808883667 1.332691550254822 0.1684880554676056 0.5286024808883667 1.332691550254822 0.1684880554676056 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.174921989440918 1.097799062728882 -0.06455764919519424 0.174921989440918 1.097799062728882 -0.06455764919519424 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.4476439952850342 1.085452318191528 0.1687992811203003 -0.4476439952850342 1.085452318191528 0.1687992811203003 -0.5506917834281921 1.079741597175598 0.1681370437145233 -0.5506917834281921 1.079741597175598 0.1681370437145233 -0.2962236702442169 0.9798537492752075 -0.02685293555259705 -0.2962236702442169 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.406062126159668 0.9056558609008789 -0.4102611839771271 -0.406062126159668 0.9056558609008789 -0.4102611839771271 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.1434928178787231 1.029773592948914 -0.290567547082901 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.5905963182449341 1.231308460235596 0.211546465754509 0.5905963182449341 1.231308460235596 0.211546465754509 0.174921989440918 1.021738171577454 -0.06246279180049896 0.174921989440918 1.021738171577454 -0.06246279180049896 0.2989078760147095 1.0907301902771 -0.02723223529756069 0.2989078760147095 1.0907301902771 -0.02723223529756069 0.4560191333293915 1.23185932636261 0.1681370437145233 0.4560191333293915 1.23185932636261 0.1681370437145233 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 1.764297485351563e-005 1.098328948020935 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 1.764297485351563e-005 1.098328948020935 -0.2887334525585175 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.5334103107452393 1.230877995491028 0.1681370437145233 0.5334103107452393 1.230877995491028 0.1681370437145233 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.001449264585971832 0.4225348234176636 -0.4125895202159882 -0.001449264585971832 0.4225348234176636 -0.4125895202159882 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.4369345605373383 0.8832268714904785 0.1687992811203003 -0.4369345605373383 0.8832268714904785 0.1687992811203003 -0.001449264585971832 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 0.9798537492752075 -0.02685293555259705 0.59018474817276 1.083053469657898 0.2102400213479996 0.59018474817276 1.083053469657898 0.2102400213479996 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.174921989440918 1.021738171577454 -0.06246279180049896 0.174921989440918 1.021738171577454 -0.06246279180049896 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.2021754086017609 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.5537700057029724 0.8805091977119446 0.1687992811203003 -0.5537700057029724 0.8805091977119446 0.1687992811203003 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.4031637907028198 0.9056558609008789 -0.4102611839771271 0.4031637907028198 0.9056558609008789 -0.4102611839771271 -0.3065129816532135 0.8859434127807617 0.1687992811203003 -0.3065129816532135 0.8859434127807617 0.1687992811203003 0.6102513670921326 0.878864586353302 -0.178733304142952 0.6102513670921326 0.878864586353302 -0.178733304142952 0.59018474817276 1.083053469657898 0.2102400213479996 0.59018474817276 1.083053469657898 0.2102400213479996 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.2933250367641449 0.9798537492752075 -0.02685293555259705 0.2933250367641449 0.9798537492752075 -0.02685293555259705 0.4447450339794159 1.085452318191528 0.1687992811203003 0.4447450339794159 1.085452318191528 0.1687992811203003 0.5477932691574097 1.079741597175598 0.1681370437145233 0.5477932691574097 1.079741597175598 0.1681370437145233 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.7692805528640747 0.9785095453262329 -0.3779011070728302 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7665115594863892 0.9050183892250061 -0.4102611839771271 -0.4568682312965393 0.7821235656738281 0.1939517259597778 -0.4568682312965393 0.7821235656738281 0.1939517259597778 0.3036143779754639 0.8859434127807617 0.1687992811203003 0.3036143779754639 0.8859434127807617 0.1687992811203003 -0.001449317671358585 0.8832268714904785 0.1687992811203003 -0.001449317671358585 0.8832268714904785 0.1687992811203003 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.6102513670921326 0.878864586353302 -0.178733304142952 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.6102513670921326 0.878864586353302 -0.178733304142952 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.4340358078479767 0.8832268714904785 0.1687992811203003 0.4340358078479767 0.8832268714904785 0.1687992811203003 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.5659343004226685 0.7770506739616394 0.1939517259597778 -0.5659343004226685 0.7770506739616394 0.1939517259597778 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 -0.3224376142024994 0.7821235656738281 0.1939517259597778 -0.3224376142024994 0.7821235656738281 0.1939517259597778 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.5508714914321899 0.8805091977119446 0.1687992811203003 0.5508714914321899 0.8805091977119446 0.1687992811203003 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.001449264585971832 -0.4657838642597199 -0.401268482208252 -0.001449264585971832 -0.4657838642597199 -0.401268482208252 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 -0.4873052835464478 0.6395153403282166 0.2242447286844254 -0.4873052835464478 0.6395153403282166 0.2242447286844254 -0.5904378294944763 0.6395494937896729 0.2237000018358231 -0.5904378294944763 0.6395494937896729 0.2237000018358231 0.3195390701293945 0.7821230292320252 0.1939517259597778 0.3195390701293945 0.7821230292320252 0.1939517259597778 0.4539692401885986 0.7821230292320252 0.1939517259597778 0.4539692401885986 0.7821230292320252 0.1939517259597778 -0.001449317671358585 0.7846598029136658 0.1939517259597778 -0.001449317671358585 0.7846598029136658 0.1939517259597778 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.620998740196228 0.7615718245506287 -0.2084415704011917 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.3351199328899384 0.6414915919303894 0.2242447286844254 -0.3351199328899384 0.6414915919303894 0.2242447286844254 -0.5904378294944763 0.6395494937896729 0.2237000018358231 -0.5904378294944763 0.6395494937896729 0.2237000018358231 0.5630353093147278 0.7770506739616394 0.1939517259597778 0.5630353093147278 0.7770506739616394 0.1939517259597778 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7813732028007507 0.6196871995925903 -0.2350356727838516 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 0.3322211503982544 0.6414915919303894 0.2242447286844254 0.3322211503982544 0.6414915919303894 0.2242447286844254 0.484406590461731 0.6395153403282166 0.2242447286844254 0.484406590461731 0.6395153403282166 0.2242447286844254 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.5875386595726013 0.6395494937896729 0.2237000018358231 -0.001449317671358585 0.64403235912323 0.2242447286844254 -0.001449317671358585 0.64403235912323 0.2242447286844254 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6330281496047974 0.6197859644889832 -0.2311255186796188 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.001449264585971832 -0.7595747113227844 -0.3996257781982422 -0.001449264585971832 -0.7595747113227844 -0.3996257781982422 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4915523529052734 -0.7594550848007202 -0.401268482208252 -0.3487512469291687 0.4234864413738251 0.2671858966350555 -0.3487512469291687 0.4234864413738251 0.2671858966350555 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.7780932784080505 0.4214316308498383 -0.2512775957584381 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 -0.3487512469291687 0.4234864413738251 0.2671858966350555 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.3487512469291687 0.4234864413738251 0.2671858966350555 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 -0.001449264585971832 0.4234864413738251 0.2770070433616638 -0.001449264585971832 0.4234864413738251 0.2770070433616638 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.6541249752044678 0.4215267300605774 -0.2490309327840805 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.4983565807342529 -1.144771337509155 -0.05335938557982445 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4983565807342529 -1.144771337509155 -0.05335938557982445 -0.001449264585971832 -0.994135320186615 -0.3598018288612366 -0.001449264585971832 -0.994135320186615 -0.3598018288612366 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.354899525642395 0.4234864413738251 0.4407898485660553 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 -0.001449264585971832 0.4234864413738251 0.2770070433616638 -0.001449264585971832 0.4234864413738251 0.2770070433616638 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.6541249752044678 0.4215267300605774 -0.2490309327840805 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4954578280448914 -1.144771337509155 -0.05335938557982445 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4954578280448914 -1.144771337509155 -0.05335938557982445 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6173088550567627 0.4206523001194 0.2673260569572449 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.001449317671358585 0.4255315661430359 0.4577548205852509 0.7970438599586487 0.4232206344604492 -0.1200132966041565 0.7970438599586487 0.4232206344604492 -0.1200132966041565 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.6885963678359985 0.4193951189517975 0.3593906462192535 0.6885963678359985 0.4193951189517975 0.3593906462192535 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.7982441186904907 0.4255830943584442 0.01974329724907875 0.7982441186904907 0.4255830943584442 0.01974329724907875 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.4872207045555115 -1.537930369377136 -0.2763937413692474 -0.4872207045555115 -1.537930369377136 -0.2763937413692474 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7870740294456482 0.4261996150016785 0.1537329405546188 0.7870740294456482 0.4261996150016785 0.1537329405546188 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 0.4843221306800842 -1.537930369377136 -0.2763938009738922 0.4843221306800842 -1.537930369377136 -0.2763938009738922 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.7695745229721069 0.423301488161087 0.2328356057405472 0.7695745229721069 0.423301488161087 0.2328356057405472 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.7468852996826172 0.4189915955066681 0.2977039515972138 0.7468852996826172 0.4189915955066681 0.2977039515972138 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5133307576179504 -1.001767039299011 0.1643165051937103 -0.5133307576179504 -1.001767039299011 0.1643165051937103 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5133307576179504 -1.001767039299011 0.1643165051937103 -0.5133307576179504 -1.001767039299011 0.1643165051937103 0.523284912109375 -1.491312742233276 -0.023659847676754 0.523284912109375 -1.491312742233276 -0.023659847676754 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5104317665100098 -1.001767039299011 0.1643165051937103 0.5104317665100098 -1.001767039299011 0.1643165051937103 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.5102030634880066 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.491312742233276 -0.023659847676754 0.523284912109375 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.440359592437744 0.05794682726264 0.523284912109375 -1.440359592437744 0.05794682726264 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5104317665100098 -1.001767039299011 0.1643165051937103 0.5104317665100098 -1.001767039299011 0.1643165051937103 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.523284912109375 -1.440359592437744 0.05794682726264 0.523284912109375 -1.440359592437744 0.05794682726264 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7923230528831482 -1.368424773216248 0.1249729543924332</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1120\" source=\"#ID1491\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1489\">\r\n                    <float_array count=\"3360\" id=\"ID1492\">-0.3624737800293703 0.4859647467451019 -0.7952678943049244 -0.1545443154350269 0.1639940879950334 -0.9742802439079815 -0.003853141030227453 0.5060249083727283 -0.8625102581480253 0.003853141030227453 -0.5060249083727283 0.8625102581480253 0.1545443154350269 -0.1639940879950334 0.9742802439079815 0.3624737800293703 -0.4859647467451019 0.7952678943049244 -0.7324920660122415 0.457917387625513 -0.5037529546705845 0.7324920660122415 -0.457917387625513 0.5037529546705845 -0.0004069113151989066 0.8510737583644934 -0.5250459906013161 0.0004069113151989066 -0.8510737583644934 0.5250459906013161 0.03299238499774464 0.01579987216850699 -0.9993307093107963 -0.03299238499774464 -0.01579987216850699 0.9993307093107963 -0.6599367575566504 0.1574799509539804 -0.7346315682525131 0.6599367575566504 -0.1574799509539804 0.7346315682525131 -0.4825950502217278 0.7718517995669966 -0.41394059598773 0.4825950502217278 -0.7718517995669966 0.41394059598773 1.071540052998343e-006 0.8368601856344831 -0.5474166874499445 -1.071540052998343e-006 -0.8368601856344831 0.5474166874499445 6.813683993455388e-007 0.4721141919303452 -0.8815374012357574 -6.813683993455388e-007 -0.4721141919303452 0.8815374012357574 -0.9974871553865196 0.06924404581483046 -0.01498789371802915 0.9974871553865196 -0.06924404581483046 0.01498789371802915 -0.9711284224999425 0.2245742194279648 0.08047364152996804 0.9711284224999425 -0.2245742194279648 -0.08047364152996804 1.061019862232905e-006 0.9717634124067937 -0.2359573484898874 -1.061019862232905e-006 -0.9717634124067937 0.2359573484898874 0.004512754540973932 0.9589012500145845 -0.2837041201091738 -0.004512754540973932 -0.9589012500145845 0.2837041201091738 -7.330408345447807e-008 0.05702732137435288 -0.998372618122543 7.330408345447807e-008 -0.05702732137435288 0.998372618122543 0.03150240910259435 -0.120950970924864 -0.9921584857536954 -0.03150240910259435 0.120950970924864 0.9921584857536954 -0.9385416613712174 0.3443531983703549 0.02367328964597491 0.9385416613712174 -0.3443531983703549 -0.02367328964597491 -0.8761981556018987 0.2259556718250015 -0.425700395219388 0.8761981556018987 -0.2259556718250015 0.425700395219388 -0.9664102261534006 0.1792971905669148 0.1841298244200134 0.9664102261534006 -0.1792971905669148 -0.1841298244200134 0.009571043662882323 0.9761844930476938 -0.2167307792087227 -0.009571043662882323 -0.9761844930476938 0.2167307792087227 0.003853817547659413 0.5060234076335159 -0.862511135590303 -0.003853817547659413 -0.5060234076335159 0.862511135590303 0.0004077021893716645 0.851072916055885 -0.5250473553262195 -0.0004077021893716645 -0.851072916055885 0.5250473553262195 -0.03299219064653936 0.01580101445099036 -0.9993306976665243 0.03299219064653936 -0.01580101445099036 0.9993306976665243 0.1854924483388497 0.0297144551440979 -0.9821963157967701 -0.1854924483388497 -0.0297144551440979 0.9821963157967701 -0.9827438492098397 0.1835206260197056 -0.02312372516623031 0.9827438492098397 -0.1835206260197056 0.02312372516623031 -0.7396135861098553 0.2706010337434902 0.6162360130491191 0.7396135861098553 -0.2706010337434902 -0.6162360130491191 -0.929203404900106 0.004851496540596717 -0.3695368659597662 0.929203404900106 -0.004851496540596717 0.3695368659597662 -0.4572957004858343 0.5678939809349656 -0.684380792201978 0.4572957004858343 -0.5678939809349656 0.684380792201978 -0.9996755617097963 0.02513946843080167 -0.004096150292636169 0.9996755617097963 -0.02513946843080167 0.004096150292636169 -0.1444513541761632 0.8970155625046075 -0.4177282452758196 0.1444513541761632 -0.8970155625046075 0.4177282452758196 -0.0003142089705117116 0.844635117266066 -0.5353423390258441 0.0003142089705117116 -0.844635117266066 0.5353423390258441 -0.004511777179443033 0.9589014785861503 -0.2837033630959952 0.004511777179443033 -0.9589014785861503 0.2837033630959952 9.386065420688752e-007 0.8779194969412163 -0.4788082673571967 -9.386065420688752e-007 -0.8779194969412163 0.4788082673571967 -0.03150232463048155 -0.1209510078656186 -0.9921584839324648 0.03150232463048155 0.1209510078656186 0.9921584839324648 1.421110156752401e-007 -0.09647637482302918 -0.9953352747195219 -1.421110156752401e-007 0.09647637482302918 0.9953352747195219 -0.9939519189231681 0.1071781674738492 -0.02392536908596283 0.9939519189231681 -0.1071781674738492 0.02392536908596283 0.1874073137697865 0.004104856223899814 -0.9822737138399735 -0.1874073137697865 -0.004104856223899814 0.9822737138399735 0.4766670216020972 -0.03148357499934053 0.8785199684823598 0.4740065005530203 0.06433251425393863 0.8781680733454425 0.6770012810427748 0.06137130979137885 0.7334185897568538 -0.6770012810427748 -0.06137130979137885 -0.7334185897568538 -0.4740065005530203 -0.06433251425393863 -0.8781680733454425 -0.4766670216020972 0.03148357499934053 -0.8785199684823598 -0.75716505701647 0.4316397027746605 0.4902940377180294 0.75716505701647 -0.4316397027746605 -0.4902940377180294 -0.8837170001912241 -0.08811553730210767 0.4596519505658436 0.8837170001912241 0.08811553730210767 -0.4596519505658436 -0.9732376766669912 0.0742968484610015 -0.2174589686000547 0.9732376766669912 -0.0742968484610015 0.2174589686000547 -0.7577190848040959 0.3973032107154196 -0.5176987031844511 0.7577190848040959 -0.3973032107154196 0.5176987031844511 -0.457138707571557 0.3553778220514752 -0.8153102511521345 0.457138707571557 -0.3553778220514752 0.8153102511521345 -0.2089924216546803 0.008762989339713465 -0.9778779973538337 -0.1006180874477454 0.6177155415554498 -0.779938145111018 0.1006180874477454 -0.6177155415554498 0.779938145111018 0.2089924216546803 -0.008762989339713465 0.9778779973538337 0.1545449189804481 0.1639953826160094 -0.9742799302551375 -0.1545449189804481 -0.1639953826160094 0.9742799302551375 0.3624719227926648 0.4859633171358438 -0.7952696143983599 -0.3624719227926648 -0.4859633171358438 0.7952696143983599 0.4825976504425874 0.7718509711554245 -0.4139391091860277 -0.4825976504425874 -0.7718509711554245 0.4139391091860277 0.6599378617402222 0.1574791258733538 -0.7346307532059271 -0.6599378617402222 -0.1574791258733538 0.7346307532059271 -0.9930809860323686 0.1146799591334536 -0.02527176594795086 0.9930809860323686 -0.1146799591334536 0.02527176594795086 0.1977659800341587 0.0464019048807483 -0.9791503870011831 -0.1977659800341587 -0.0464019048807483 0.9791503870011831 0.9907202004319288 -0.004481338298964892 0.1358432996624015 0.9903889769166423 0.0008426209381802807 0.1383074994060737 0.9902665732855567 -0.0009229499262855498 0.1391806811188776 -0.9902665732855567 0.0009229499262855498 -0.1391806811188776 -0.9903889769166423 -0.0008426209381802807 -0.1383074994060737 -0.9907202004319288 0.004481338298964892 -0.1358432996624015 0.9506355888777646 -0.03521948841048554 0.3083043379440672 -0.9506355888777646 0.03521948841048554 -0.3083043379440672 0.2785982112331046 -0.01731088269238537 0.9602517222260656 -0.2785982112331046 0.01731088269238537 -0.9602517222260656 -0.9385111508363014 0.3147102088340285 -0.1419658557948474 0.9385111508363014 -0.3147102088340285 0.1419658557948474 -0.5374118567073094 0.4163750394213115 0.7333623407411262 0.5374118567073094 -0.4163750394213115 -0.7333623407411262 -0.9984558984029656 0.05542846701277118 0.00367477740021313 0.9984558984029656 -0.05542846701277118 -0.00367477740021313 -0.8244249006574319 0.4220939913763589 0.3770414375369871 0.8244249006574319 -0.4220939913763589 -0.3770414375369871 -0.8609538082186087 0.3950426369975656 -0.3204681810537273 0.8609538082186087 -0.3950426369975656 0.3204681810537273 -0.00957148868517114 0.9761843977801478 -0.2167311886530402 0.00957148868517114 -0.9761843977801478 0.2167311886530402 0.0003145381297959222 0.8446308682000966 -0.5353490427275611 -0.0003145381297959222 -0.8446308682000966 0.5353490427275611 -0.185492318012902 0.029714409387343 -0.9821963417937178 0.185492318012902 -0.029714409387343 0.9821963417937178 -0.9948953864089095 0.09776053599842396 -0.02502094529723696 0.9948953864089095 -0.09776053599842396 0.02502094529723696 0.5153709162730268 0.007115690917785558 0.8569376789490958 -0.5153709162730268 -0.007115690917785558 -0.8569376789490958 0.1990967315569903 0.004305444266122145 -0.9799703845693475 -0.1990967315569903 -0.004305444266122145 0.9799703845693475 0.9902788853317449 0.001416575145139241 0.1390889017174802 -0.9902788853317449 -0.001416575145139241 -0.1390889017174802 0.9909381866633921 -0.00339928129879528 0.1342756683056169 -0.9909381866633921 0.00339928129879528 -0.1342756683056169 0.7837827076589627 -0.0777275116834283 0.6161518490618102 0.7789570757840516 -0.0003647030452540897 0.627077141249502 0.807881193541539 0.1421292548319688 0.5719503929912172 -0.807881193541539 -0.1421292548319688 -0.5719503929912172 -0.7789570757840516 0.0003647030452540897 -0.627077141249502 -0.7837827076589627 0.0777275116834283 -0.6161518490618102 0.97886734548447 -0.09340764649124664 0.1819168258329987 -0.97886734548447 0.09340764649124664 -0.1819168258329987 0.4487402694777954 0.03338026433872194 0.8930385929519914 -0.4487402694777954 -0.03338026433872194 -0.8930385929519914 -0.9947296916848576 0.03826608924145202 -0.09512385029377941 0.9947296916848576 -0.03826608924145202 0.09512385029377941 -0.1102595056986163 0.6041944645946928 0.7891716482212404 0.1102595056986163 -0.6041944645946928 -0.7891716482212404 -0.904888817089381 0.4255285472945364 0.01008385561096054 0.904888817089381 -0.4255285472945364 -0.01008385561096054 -0.8988689238162904 0.3942461495617065 -0.1913233685494596 0.8988689238162904 -0.3942461495617065 0.1913233685494596 0.732492058088297 0.4579188953728411 -0.5037515956283295 -0.732492058088297 -0.4579188953728411 0.5037515956283295 0.9711282967358724 0.2245734737144611 0.08047724015337268 -0.9711282967358724 -0.2245734737144611 -0.08047724015337268 0.9939518227067535 0.1071790024554668 -0.0239256258136243 0.9827435946668154 0.1835219798413784 -0.02312379848656081 -0.9827435946668154 -0.1835219798413784 0.02312379848656081 -0.9939518227067535 -0.1071790024554668 0.0239256258136243 -0.187407160819612 0.004104808380183385 -0.9822737432211522 0.187407160819612 -0.004104808380183385 0.9822737432211522 -0.9962646189382179 0.08335278637210813 -0.02256373319938482 0.9962646189382179 -0.08335278637210813 0.02256373319938482 0.282762654895606 -0.01355152068251251 0.9590941753986312 -0.282762654895606 0.01355152068251251 -0.9590941753986312 0.9905045084774971 0.00430583151241134 0.1374128032635193 -0.9905045084774971 -0.00430583151241134 -0.1374128032635193 0.2033008390474977 0.02159626358807922 -0.9788781181748919 -0.2033008390474977 -0.02159626358807922 0.9788781181748919 0.9901476793937345 0.0009945214277502505 0.1400235120197049 -0.9901476793937345 -0.0009945214277502505 -0.1400235120197049 0.2505953805537095 0.01319931024358321 0.9680019284351841 0.5544622414410764 0.05792895198666866 0.8301902549041778 0.2384622152970593 0.01130057266012134 0.9710860255060683 -0.2384622152970593 -0.01130057266012134 -0.9710860255060683 -0.5544622414410764 -0.05792895198666866 -0.8301902549041778 -0.2505953805537095 -0.01319931024358321 -0.9680019284351841 0.2536853763433732 -0.01385342089267899 0.9671875787866031 0.5517721355645144 0.04180008004943988 0.8329467352252697 -0.5517721355645144 -0.04180008004943988 -0.8329467352252697 -0.2536853763433732 0.01385342089267899 -0.9671875787866031 0.8556501718362605 0.2205237944821925 0.4682222116727841 -0.8556501718362605 -0.2205237944821925 -0.4682222116727841 0.01092354614888393 -0.9096493391911312 0.415233375162295 -0.0210116343912583 -0.9819081657303571 0.1881883771444284 -0.05251364681989335 -0.965692631172645 0.2543227457317366 0.05251364681989335 0.965692631172645 -0.2543227457317366 0.0210116343912583 0.9819081657303571 -0.1881883771444284 -0.01092354614888393 0.9096493391911312 -0.415233375162295 0.199686066098458 0.9695763853543423 0.1415878101014707 0.1705977330597303 0.9606879073294415 0.2190323222400281 0.2344657761266083 0.9511198135383904 0.2009898010348905 -0.2344657761266083 -0.9511198135383904 -0.2009898010348905 -0.1705977330597303 -0.9606879073294415 -0.2190323222400281 -0.199686066098458 -0.9695763853543423 -0.1415878101014707 0.5595943241498509 0.03064844215397503 0.8281997738304483 -0.5595943241498509 -0.03064844215397503 -0.8281997738304483 0.8927890657270788 0.2334357383356926 0.385273202008445 -0.8927890657270788 -0.2334357383356926 -0.385273202008445 0.9974870555249193 0.06924543025848322 -0.01498814359899946 -0.9974870555249193 -0.06924543025848322 0.01498814359899946 0.9664101543029536 0.1792973560538182 0.1841300403851904 -0.9664101543029536 -0.1792973560538182 -0.1841300403851904 0.1006180685619479 0.6177085888725438 -0.7799436540622367 -0.1006180685619479 -0.6177085888725438 0.7799436540622367 0.9930807542926085 0.1146818707139896 -0.02527219783010267 -0.9930807542926085 -0.1146818707139896 0.02527219783010267 0.9385419000274274 0.3443525048755634 0.02367391557878455 -0.9385419000274274 -0.3443525048755634 -0.02367391557878455 -0.1977659061729414 0.04640222383028751 -0.9791503868043964 0.1977659061729414 -0.04640222383028751 0.9791503868043964 -0.9903888581766679 0.0008425838663977495 0.1383083498995786 -0.9907200813861874 -0.004481335275896335 0.1358441679730533 -0.9902664316060748 -0.0009233398319787592 0.1391816865745136 0.9902664316060748 0.0009233398319787592 -0.1391816865745136 0.9907200813861874 0.004481335275896335 -0.1358441679730533 0.9903888581766679 -0.0008425838663977495 -0.1383083498995786 -0.9956332832031598 0.09060838061056614 -0.02246078229331045 0.9956332832031598 -0.09060838061056614 0.02246078229331045 0.609302980938861 -0.04851120027734063 0.7914521721915162 -0.609302980938861 0.04851120027734063 -0.7914521721915162 0.9900164870656073 0.002237715452367364 0.1409338425213349 -0.9900164870656073 -0.002237715452367364 -0.1409338425213349 0.2037279884680405 0.003408292205479992 -0.9790215984640012 -0.2037279884680405 -0.003408292205479992 0.9790215984640012 0.2354288757230134 0.01033069315864383 0.9718366741663231 -0.2354288757230134 -0.01033069315864383 -0.9718366741663231 0.9899604319430478 -0.002011784228226916 0.1413304493425017 -0.9899604319430478 0.002011784228226916 -0.1413304493425017 0.5547653430423216 0.006299757779836354 0.8319830089677616 -0.5547653430423216 -0.006299757779836354 -0.8319830089677616 -4.394328509024803e-007 -0.8604107253640477 0.5096012006248809 4.394328509024803e-007 0.8604107253640477 -0.5096012006248809 0.1724366937858562 -0.5852573613334642 0.7923000742403056 -0.1724366937858562 0.5852573613334642 -0.7923000742403056 0.1714073010240002 0.9747916390754533 0.1428313605069244 -0.1714073010240002 -0.9747916390754533 -0.1428313605069244 0.5503810947730992 0.001214969156718686 0.8349126746949726 -0.5503810947730992 -0.001214969156718686 -0.8349126746949726 0.450037116531388 0.04310610239371941 0.8919688658695077 -0.450037116531388 -0.04310610239371941 -0.8919688658695077 0.8761978087912092 0.2259548846055289 -0.4257015268851939 -0.8761978087912092 -0.2259548846055289 0.4257015268851939 0.9996755819224945 0.02513868544375044 -0.004096022715052424 -0.9996755819224945 -0.02513868544375044 0.004096022715052424 0.1444621315590783 0.897014967628634 -0.4177257957028849 0.4573000724444853 0.5678945186820267 -0.6843774246665197 -0.4573000724444853 -0.5678945186820267 0.6843774246665197 -0.1444621315590783 -0.897014967628634 0.4177257957028849 0.9948955834759435 0.09775843681465128 -0.02502131114905634 -0.9948955834759435 -0.09775843681465128 0.02502131114905634 -0.2785981445243947 -0.01731150240502203 0.9602517304082537 -0.4766671925824109 -0.03148473006323069 0.8785198343170451 -0.515371312570275 0.00711481025181893 0.8569374479241017 0.515371312570275 -0.00711481025181893 -0.8569374479241017 0.4766671925824109 0.03148473006323069 -0.8785198343170451 0.2785981445243947 0.01731150240502203 -0.9602517304082537 -0.6770023525194214 0.06137146879587433 0.7334175873954796 -0.4740073313116037 0.06433442568254497 0.8781674848996339 0.4740073313116037 -0.06433442568254497 -0.8781674848996339 0.6770023525194214 -0.06137146879587433 -0.7334175873954796 -0.1990967204008648 0.004305648388343431 -0.9799703859390732 0.1990967204008648 -0.004305648388343431 0.9799703859390732 -0.990278754510625 0.001416584633724603 0.139089833031969 0.990278754510625 -0.001416584633724603 -0.139089833031969 -0.9909380630799358 -0.003399242763365023 0.1342765813089576 0.9909380630799358 0.003399242763365023 -0.1342765813089576 -0.9968199301215862 0.07708524078587133 -0.0201963502985076 0.9968199301215862 -0.07708524078587133 0.0201963502985076 0.3314473236246197 -0.03404005513124647 0.942859452044014 -0.3314473236246197 0.03404005513124647 -0.942859452044014 0.2690640104709645 -0.007413334523900739 0.9630937652900248 -0.2690640104709645 0.007413334523900739 -0.9630937652900248 0.9892307285286091 0.01363532297325122 0.1457279784467367 -0.9892307285286091 -0.01363532297325122 -0.1457279784467367 0.2193871989700671 0.04480102687666464 -0.9746087034902083 -0.2193871989700671 -0.04480102687666464 0.9746087034902083 0.9899973159602924 -0.001154469275832887 0.1410814714698849 -0.9899973159602924 0.001154469275832887 -0.1410814714698849 0.4465459218696992 0.02656812732855649 0.8943661857828673 -0.4465459218696992 -0.02656812732855649 -0.8943661857828673 -1.148944981636436e-008 -0.8668010893336193 0.4986540599755013 1.148944981636436e-008 0.8668010893336193 -0.4986540599755013 -0.001024137529105541 -0.5316213354677284 0.8469815268456746 0.001024137529105541 0.5316213354677284 -0.8469815268456746 0.2602016548448433 0.9646775598081155 0.04113762777147901 -0.2602016548448433 -0.9646775598081155 -0.04113762777147901 0.2346650363901175 0 0.972076293660135 -0.2346650363901175 -0 -0.972076293660135 0.7396104306978107 0.2705991214933103 0.6162406398883861 -0.7396104306978107 -0.2705991214933103 -0.6162406398883861 0.9292033977608823 0.004849915305961162 -0.3695369046673911 -0.9292033977608823 -0.004849915305961162 0.3695369046673911 0.2089923606738436 0.00876284107834017 -0.9778780117152702 -0.2089923606738436 -0.00876284107834017 0.9778780117152702 0.9962647277989406 0.0833513433905458 -0.02256425710485266 -0.9962647277989406 -0.0833513433905458 0.02256425710485266 -0.2827633455471794 -0.0135519361059265 0.9590939659088401 0.2827633455471794 0.0135519361059265 -0.9590939659088401 -0.9506354482239151 -0.03521547083878675 0.3083052305649686 0.9506354482239151 0.03521547083878675 -0.3083052305649686 -0.9905043599947265 0.004306145735177295 0.1374138637123065 0.9905043599947265 -0.004306145735177295 -0.1374138637123065 -0.203300842541363 0.02159634962472388 -0.9788781155510927 0.203300842541363 -0.02159634962472388 0.9788781155510927 -0.9901475184290349 0.0009944306250129018 0.1400246508888931 0.9901475184290349 -0.0009944306250129018 -0.1400246508888931 -0.2505953057574743 0.01319924367291896 0.9680019487060865 -0.2384621371886398 0.01130063956788524 0.9710860439079448 -0.5544623521168383 0.05792931606360777 0.8301901555821206 0.5544623521168383 -0.05792931606360777 -0.8301901555821206 0.2384621371886398 -0.01130063956788524 -0.9710860439079448 0.2505953057574743 -0.01319924367291896 -0.9680019487060865 -0.2536850281599741 -0.0138535557623779 0.9671876681803858 -0.551772243987951 0.04179930726748266 0.8329467021823543 0.551772243987951 -0.04179930726748266 -0.8329467021823543 0.2536850281599741 0.0138535557623779 -0.9671876681803858 -0.9959826638017204 0.08218396933776975 -0.03555739853135363 0.9959826638017204 -0.08218396933776975 0.03555739853135363 0.6153083634408196 -0.05148481002412313 0.7866034148264042 -0.6153083634408196 0.05148481002412313 -0.7866034148264042 0.5727285138006848 0.02121515963538596 0.8194705403376649 -0.5727285138006848 -0.02121515963538596 -0.8194705403376649 0.9893888310005082 0.00274175030615532 0.1452660452298001 -0.9893888310005082 -0.00274175030615532 -0.1452660452298001 0.2097557314495232 0.01720629354741938 -0.9776024123264199 -0.2097557314495232 -0.01720629354741938 0.9776024123264199 0.9897895976065745 -0.004342237901327167 0.1424699878564741 -0.9897895976065745 0.004342237901327167 -0.1424699878564741 0.4503054884335412 0.01362090150421649 0.892770652591606 -0.4503054884335412 -0.01362090150421649 -0.892770652591606 -0.01092992491029081 -0.9096482954439253 0.415235493831412 0.01092992491029081 0.9096482954439253 -0.415235493831412 -6.080638707766665e-007 -0.549717805339878 0.8353504261637377 6.080638707766665e-007 0.549717805339878 -0.8353504261637377 3.440188208490243e-008 -0.5555299093164049 0.8314965543253354 -3.440188208490243e-008 0.5555299093164049 -0.8314965543253354 0.7571660530837381 0.4316386416869186 0.4902934336295622 -0.7571660530837381 -0.4316386416869186 -0.4902934336295622 0.8837149458269733 -0.08812159394410893 0.4596547391279451 -0.8837149458269733 0.08812159394410893 -0.4596547391279451 0.9732381178375368 0.07429979006275535 -0.2174559890752135 -0.9732381178375368 -0.07429979006275535 0.2174559890752135 0.7577242285038515 0.3972933108754175 -0.5176987721367438 -0.7577242285038515 -0.3972933108754175 0.5176987721367438 0.4571384098397874 0.3553681588594452 -0.8153146300159212 -0.4571384098397874 -0.3553681588594452 0.8153146300159212 0.9956332479540522 0.09060858342719801 -0.02246152661288552 -0.9956332479540522 -0.09060858342719801 0.02246152661288552 -0.60930239163265 -0.04851017134711085 0.7914526889376313 0.60930239163265 0.04851017134711085 -0.7914526889376313 -0.4487398167543257 0.03338053044725342 0.8930388104927769 0.4487398167543257 -0.03338053044725342 -0.8930388104927769 -0.7789583409897993 -0.000363824971310878 0.6270755701140092 -0.7837836806675312 -0.07772604490380559 0.6161507963663354 -0.8078824561640882 0.1421267736203982 0.5719492261053741 0.8078824561640882 -0.1421267736203982 -0.5719492261053741 0.7837836806675312 0.07772604490380559 -0.6161507963663354 0.7789583409897993 0.000363824971310878 -0.6270755701140092 0.9385102612342132 0.3147124102554416 -0.1419668566578107 -0.9385102612342132 -0.3147124102554416 0.1419668566578107 -0.9788676032683243 -0.09340394251875722 0.1819173405524587 0.9788676032683243 0.09340394251875722 -0.1819173405524587 -0.9900163262707898 0.002237773630536223 0.1409349711266421 0.9900163262707898 -0.002237773630536223 -0.1409349711266421 -0.2037279640935901 0.003408228659399518 -0.9790216037573869 0.2037279640935901 -0.003408228659399518 0.9790216037573869 -0.2354286825828318 0.01033067541157402 0.9718367211434505 -0.5595946128675985 0.03064871190227865 0.8281995687684784 0.5595946128675985 -0.03064871190227865 -0.8281995687684784 0.2354286825828318 -0.01033067541157402 -0.9718367211434505 -0.9899603075635177 -0.002011262428334605 0.1413313279927344 0.9899603075635177 0.002011262428334605 -0.1413313279927344 -0.5547654368374926 0.006299470406166929 0.8319829486011763 0.5547654368374926 -0.006299470406166929 -0.8319829486011763 -0.9985425728218029 0.05396971174717015 2.182525293931658e-005 0.9985425728218029 -0.05396971174717015 -2.182525293931658e-005 0.328951013776384 -0.02646334594056419 0.9439761235630481 -0.328951013776384 0.02646334594056419 -0.9439761235630481 0.2841570197766841 0.02309268086450633 0.9584996172154285 -0.2841570197766841 -0.02309268086450633 -0.9584996172154285 0.9891669386176245 0.007070011516571865 0.1466246312288359 -0.9891669386176245 -0.007070011516571865 -0.1466246312288359 0.147731337883644 0.5587010131958488 -0.8161057711234742 -0.147731337883644 -0.5587010131958488 0.8161057711234742 -0.1724417686133558 -0.5852546171744093 0.7923009967894356 0.1724417686133558 0.5852546171744093 -0.7923009967894356 0.02100936362367406 -0.9819079119043689 0.1881899550447116 -0.02100936362367406 0.9819079119043689 -0.1881899550447116 0.001023400392436381 -0.5316206646494037 0.8469819487860194 -0.001023400392436381 0.5316206646494037 -0.8469819487860194 0.5374137069235633 0.4163662298492717 0.7333659865659014 -0.5374137069235633 -0.4163662298492717 -0.7333659865659014 0.9984558285342023 0.05543043573489472 0.003664049715707952 -0.9984558285342023 -0.05543043573489472 -0.003664049715707952 0.8244304220700673 0.42208399743857 0.3770405525558863 -0.8244304220700673 -0.42208399743857 -0.3770405525558863 0.8609593490701201 0.3950356538503604 -0.3204619032518112 -0.8609593490701201 -0.3950356538503604 0.3204619032518112 0.9968199900682904 0.0770843016658484 -0.02019697593557614 -0.9968199900682904 -0.0770843016658484 0.02019697593557614 -0.3314467288794468 -0.03403931238868394 0.9428596879319956 0.3314467288794468 0.03403931238868394 -0.9428596879319956 -0.4500384764145335 0.04310675662060656 0.8919681481309393 0.4500384764145335 -0.04310675662060656 -0.8919681481309393 -0.8556511006454337 0.2205202335716528 0.4682221914324025 0.8556511006454337 -0.2205202335716528 -0.4682221914324025 0.9947292441872121 0.03826670708435793 -0.0951282812188765 -0.9947292441872121 -0.03826670708435793 0.0951282812188765 0.05250119610140889 -0.9656931304469213 0.2543234205014291 -0.05250119610140889 0.9656931304469213 -0.2543234205014291 -0.1705956336861564 0.9606885189129935 0.2190312749266132 -0.1996848346137059 0.9695768355687583 0.1415864638790379 -0.2344624242422771 0.9511207570385238 0.2009892463513906 0.2344624242422771 -0.9511207570385238 -0.2009892463513906 0.1996848346137059 -0.9695768355687583 -0.1415864638790379 0.1705956336861564 -0.9606885189129935 -0.2190312749266132 -0.9892305482017425 0.01363551190350415 0.1457291848587969 0.9892305482017425 -0.01363551190350415 -0.1457291848587969 -0.2690636223426728 -0.007413233922668227 0.9630938744975213 0.2690636223426728 0.007413233922668227 -0.9630938744975213 -0.2193871688498107 0.04480051646010619 -0.9746087337331696 0.2193871688498107 -0.04480051646010619 0.9746087337331696 -0.5503813245396799 0.001214963109203446 0.834912523239765 0.5503813245396799 -0.001214963109203446 -0.834912523239765 -0.9899971732306971 -0.001153879037670049 0.1410824778574415 0.9899971732306971 0.001153879037670049 -0.1410824778574415 -0.4465456466954729 0.02656714329178133 0.8943663524052299 0.4465456466954729 -0.02656714329178133 -0.8943663524052299 -0.9983834563885684 0.05683670962253818 -0.0002498977763939091 0.9983834563885684 -0.05683670962253818 0.0002498977763939091 0.6061218733991877 -0.01969442439617812 0.7951279169006473 -0.6061218733991877 0.01969442439617812 -0.7951279169006473 0.4419258402810651 0.0239470611798888 0.8967318941315297 -0.4419258402810651 -0.0239470611798888 -0.8967318941315297 0.570230995658594 0.03991175871994512 0.8205142674604075 -0.570230995658594 -0.03991175871994512 -0.8205142674604075 0.9479143263943628 -0.2903074595404179 0.131072532406718 -0.9479143263943628 0.2903074595404179 -0.131072532406718 0.06336221035526715 0.329066082673738 -0.9421787216513943 -0.06336221035526715 -0.329066082673738 0.9421787216513943 0.9885657644415824 -0.03036804094180219 0.1477007497048907 -0.9885657644415824 0.03036804094180219 -0.1477007497048907 -0.001802792156686485 -0.02305023658463695 0.9997326825376031 -0.0008256944294643935 -0.02505255330090537 0.9996857945383711 -0.002734208924138677 -0.02114140788636196 0.9997727566673047 0.002734208924138677 0.02114140788636196 -0.9997727566673047 0.0008256944294643935 0.02505255330090537 -0.9996857945383711 0.001802792156686485 0.02305023658463695 -0.9997326825376031 0.3220491945008595 -0.01398584764411414 0.9466196239181941 -0.3220491945008595 0.01398584764411414 -0.9466196239181941 0.1102607918778887 0.6041870483927864 0.7891771463549068 -0.1102607918778887 -0.6041870483927864 -0.7891771463549068 0.904891680280896 0.4255225800980013 0.01007872934236248 -0.904891680280896 -0.4255225800980013 -0.01007872934236248 0.8988743871289552 0.3942317592744247 -0.1913273533578971 -0.8988743871289552 -0.3942317592744247 0.1913273533578971 0.9959824002825762 0.08218668947580367 -0.0355584926616104 -0.9959824002825762 -0.08218668947580367 0.0355584926616104 -0.6153067761488915 -0.05148347473506788 0.7866047438545368 0.6153067761488915 0.05148347473506788 -0.7866047438545368 -0.8927893756465019 0.2334317597510517 0.3852748944224846 0.8927893756465019 -0.2334317597510517 -0.3852748944224846 -0.1714068147238466 0.9747919519341297 0.1428298089009226 0.1714068147238466 -0.9747919519341297 -0.1428298089009226 -0.9893886561191522 0.002741776618111332 0.1452672358232045 0.9893886561191522 -0.002741776618111332 -0.1452672358232045 -0.5727289759413263 0.02121602657569409 0.8194701949024987 0.5727289759413263 -0.02121602657569409 -0.8194701949024987 -0.2097555208802006 0.0172061271122594 -0.9776024604357706 0.2097555208802006 -0.0172061271122594 0.9776024604357706 -0.2346648726773565 3.783173416404959e-017 0.972076333181361 0.2346648726773565 -3.783173416404959e-017 -0.972076333181361 -0.989789563809418 -0.004340030956380254 0.1424702899037547 0.989789563809418 0.004340030956380254 -0.1424702899037547 -0.4503056651465148 0.01362115755138225 0.8927705595526296 0.4503056651465148 -0.01362115755138225 -0.8927705595526296 -0.9989954996840046 -0.000137660845391611 0.04481040794946183 0.9989954996840046 0.000137660845391611 -0.04481040794946183 -0.9972216916799506 0.07119311484437237 -0.02191889690960671 0.9972216916799506 -0.07119311484437237 0.02191889690960671 0.2214779324102707 0.196197245236413 0.9552246680320364 -0.2214779324102707 -0.196197245236413 -0.9552246680320364 1.780389104542476e-007 0.4337085547787001 -0.9010532112543296 -1.780389104542476e-007 -0.4337085547787001 0.9010532112543296 -0.9865277944392574 0.05217622602417737 -0.1550501603891077 -0.9736896225321698 0.05084994715485541 -0.2221323971137686 0.9736896225321698 -0.05084994715485541 0.2221323971137686 0.9865277944392574 -0.05217622602417737 0.1550501603891077 0.8744760066387074 -0.4712393770442262 0.1150007101551506 -0.8744760066387074 0.4712393770442262 -0.1150007101551506 -0.003554629011209123 -0.01945995380215752 0.9998043182596337 0.003554629011209123 0.01945995380215752 -0.9998043182596337 -0.2602011346471293 0.9646777618329538 0.04113618058727868 0.2602011346471293 -0.9646777618329538 -0.04113618058727868 0.9985425731774548 0.05396970529110465 2.151600848150853e-005 -0.9985425731774548 -0.05396970529110465 -2.151600848150853e-005 -0.3289498256034926 -0.02646299455308964 0.9439765474601131 0.3289498256034926 0.02646299455308964 -0.9439765474601131 -0.9891667803014308 0.007069732576932015 0.1466257127157151 0.9891667803014308 -0.007069732576932015 -0.1466257127157151 -0.2841572966473706 0.02309293508627453 0.9584995290093571 0.2841572966473706 -0.02309293508627453 -0.9584995290093571 -0.1477311316684 0.5587017574653437 -0.8161052989296846 0.1477311316684 -0.5587017574653437 0.8161052989296846 -0.9973266047647974 0.05600939024017728 0.04693177637001751 0.9973266047647974 -0.05600939024017728 -0.04693177637001751 0.6914289920974853 0.004286087141038797 0.7224317118898334 -0.6914289920974853 -0.004286087141038797 -0.7224317118898334 -0.001583130968168075 0.9869731748496333 -0.1608771140453886 -0.001126925678352958 0.9966247613602267 -0.08208419508155551 -0.005838407715201528 0.9856277375830695 -0.1688309092027607 0.005838407715201528 -0.9856277375830695 0.1688309092027607 0.001126925678352958 -0.9966247613602267 0.08208419508155551 0.001583130968168075 -0.9869731748496333 0.1608771140453886 -0.9968756305926255 0.07737442659515952 -0.01588002643654866 0.9968756305926255 -0.07737442659515952 0.01588002643654866 0.447907665072911 0.03186390273533372 0.8935118439457903 -0.447907665072911 -0.03186390273533372 -0.8935118439457903 0.3961548121424567 -0.003715527347467818 0.9181762138461795 -0.3961548121424567 0.003715527347467818 -0.9181762138461795 0.402695768400104 0.4873827922562387 0.7747865073200242 -0.402695768400104 -0.4873827922562387 -0.7747865073200242 8.132231258095106e-007 0.8321193877225259 -0.5545965421598185 -8.132231258095106e-007 -0.8321193877225259 0.5545965421598185 -0.003655777851620025 0.009903831423077426 -0.9999442731529806 0.003655777851620025 -0.009903831423077426 0.9999442731529806 -0.0128535655306012 0.9750745821463159 -0.2215047293069336 0.0005688769515589375 0.9848479174845526 -0.1734193063224333 -0.0005688769515589375 -0.9848479174845526 0.1734193063224333 0.0128535655306012 -0.9750745821463159 0.2215047293069336 0.01108124840155184 0.8707973362884408 0.4915172479647275 -0.01108124840155184 -0.8707973362884408 -0.4915172479647275 0.1752279006153873 0.9590644972035478 0.2224645433538342 5.430323419212678e-007 0.9853891688670527 0.1703178965323498 -5.430323419212678e-007 -0.9853891688670527 -0.1703178965323498 -0.1752279006153873 -0.9590644972035478 -0.2224645433538342 0.998383435854744 0.05683706859506152 -0.0002502886265367268 -0.998383435854744 -0.05683706859506152 0.0002502886265367268 -0.6061240476733609 -0.01969603041895944 0.7951262196769748 0.6061240476733609 0.01969603041895944 -0.7951262196769748 -0.9479154558277739 -0.2903029525775037 0.1310743465656306 0.9479154558277739 0.2903029525775037 -0.1310743465656306 -0.5702310738101326 0.03991203788247619 0.8205141995684235 0.5702310738101326 -0.03991203788247619 -0.8205141995684235 -0.4419261685556237 0.0239478688565466 0.8967317107825372 0.4419261685556237 -0.0239478688565466 -0.8967317107825372 -0.06336302353539842 0.3290683811726526 -0.9421778641853471 0.06336302353539842 -0.3290683811726526 0.9421778641853471 -0.9885656140756707 -0.03036796316458268 0.1477017720964342 0.9885656140756707 0.03036796316458268 -0.1477017720964342 0.001802970942108782 -0.02304999440336087 0.9997326877989871 0.002734444657222303 -0.02114104111121133 0.9997727637784253 0.0008258177220701067 -0.02505243310216891 0.9996857974487541 -0.0008258177220701067 0.02505243310216891 -0.9996857974487541 -0.002734444657222303 0.02114104111121133 -0.9997727637784253 -0.001802970942108782 0.02304999440336087 -0.9997326877989871 -0.322051282173163 -0.01398702650755865 0.9466188962513364 0.322051282173163 0.01398702650755865 -0.9466188962513364 -0.9969246471896264 0.06302065782301529 0.04657944303438513 0.9969246471896264 -0.06302065782301529 -0.04657944303438513 -0.00212881274995628 -0.2683718283930491 0.9633130487444087 -0.001005174475925616 -0.2694076348507848 0.9630257088512118 -0.001639758244104681 -0.2716436840334383 0.9623964983922387 0.001639758244104681 0.2716436840334383 -0.9623964983922387 0.001005174475925616 0.2694076348507848 -0.9630257088512118 0.00212881274995628 0.2683718283930491 -0.9633130487444087 0.001038111635286944 0.9956823341796562 -0.09282031957919484 -0.001038111635286944 -0.9956823341796562 0.09282031957919484 -0.01055405555417334 -0.2587200214695265 0.9658946952966286 0.01055405555417334 0.2587200214695265 -0.9658946952966286 0.001393652670393064 0.9997215447667671 0.02355611728157328 -0.001393652670393064 -0.9997215447667671 -0.02355611728157328 -2.184619363978431e-010 -0.004499848741330991 -0.9999898756294011 2.184619363978431e-010 0.004499848741330991 0.9999898756294011 -0.004163240460725096 0.03105645564005462 -0.9995089614365362 0.004163240460725096 -0.03105645564005462 0.9995089614365362 -0.02234166972565267 0.5339027079899825 -0.8452507013867739 0.02234166972565267 -0.5339027079899825 0.8452507013867739 0.0009277835913001386 0.9998004819989514 0.01995333085657497 -0.0009277835913001386 -0.9998004819989514 -0.01995333085657497 0.1556278945893801 0.2809026446796918 0.9470341401647734 -0.1556278945893801 -0.2809026446796918 -0.9470341401647734 -3.541958887443474e-010 0.9631080259860416 0.2691150874277956 3.541958887443474e-010 -0.9631080259860416 -0.2691150874277956 0.9989955276880921 -0.0001368748650612091 0.04480978603454567 -0.9989955276880921 0.0001368748650612091 -0.04480978603454567 0.9972216595772164 0.07119431950687306 -0.02191644451127155 -0.9972216595772164 -0.07119431950687306 0.02191644451127155 -0.2214778855070592 0.1961979907061468 0.9552245257918122 0.2214778855070592 -0.1961979907061468 -0.9552245257918122 0.9736909147966711 0.05084773715865913 -0.2221272384654028 0.9865278216836982 0.05217386120331387 -0.1550507828137432 -0.9865278216836982 -0.05217386120331387 0.1550507828137432 -0.9736909147966711 -0.05084773715865913 0.2221272384654028 -0.8744793070848513 -0.4712326775356765 0.1150030656241631 0.8744793070848513 0.4712326775356765 -0.1150030656241631 0.003554918847038024 -0.01945946918911573 0.9998043266614068 -0.003554918847038024 0.01945946918911573 -0.9998043266614068 -0.9956402565366229 0.08230549210112352 0.04388946950784167 0.9956402565366229 -0.08230549210112352 -0.04388946950784167 0.8246343825300643 -0.01411444302695114 0.5654899801475696 -0.8246343825300643 0.01411444302695114 -0.5654899801475696 -0.01087594253182367 -0.2146052472578675 0.976640313382278 0.01087594253182367 0.2146052472578675 -0.976640313382278 0.4401942536872691 0.07256629869602126 0.8949654469946131 -0.4401942536872691 -0.07256629869602126 -0.8949654469946131 -0.175225918065263 0.9590652604319062 0.2224628145800227 -0.01108109537805878 0.8707975440991215 0.4915168832463043 0.01108109537805878 -0.8707975440991215 -0.4915168832463043 0.175225918065263 -0.9590652604319062 -0.2224628145800227 0.003655776094791184 0.009903878800838617 -0.9999442726901551 -0.003655776094791184 -0.009903878800838617 0.9999442726901551 -0.005741523756654533 0.633379681744303 0.7738198845070068 0.005741523756654533 -0.633379681744303 -0.7738198845070068 0.997326663603473 0.05600807958972717 0.04693209015413619 -0.997326663603473 -0.05600807958972717 -0.04693209015413619 -0.6914294736212706 0.004286908751857613 0.722431246155069 0.6914294736212706 -0.004286908751857613 -0.722431246155069 0.001126942549455734 0.9966247498934016 -0.08208433407420153 0.001583162336782136 0.9869731804581573 -0.160877079328676 0.005838414458393801 0.9856277529672934 -0.1688308191570955 -0.005838414458393801 -0.9856277529672934 0.1688308191570955 -0.001583162336782136 -0.9869731804581573 0.160877079328676 -0.001126942549455734 -0.9966247498934016 0.08208433407420153 0.9968755542992248 0.07737574505142088 -0.01587839155427141 -0.9968755542992248 -0.07737574505142088 0.01587839155427141 -0.4026962970868477 0.4873823656380145 0.7747865009004961 0.4026962970868477 -0.4873823656380145 -0.7747865009004961 -0.4479081988270762 0.03186402010616231 0.8935115721948757 0.4479081988270762 -0.03186402010616231 -0.8935115721948757 -0.3961550658726484 -0.00371524072142496 0.9181761055319505 0.3961550658726484 0.00371524072142496 -0.9181761055319505 0.01285199485402978 0.9750752153123479 -0.2215020332002622 -0.0005698567566058358 0.9848490615899062 -0.1734128056077704 0.0005698567566058358 -0.9848490615899062 0.1734128056077704 -0.01285199485402978 -0.9750752153123479 0.2215020332002622 -0.9932673995775939 0.1101566052120566 0.03585240946602527 0.9932673995775939 -0.1101566052120566 -0.03585240946602527 -0.01947042315387116 -0.2047452333996747 0.9786216286299428 0.01947042315387116 0.2047452333996747 -0.9786216286299428 -3.649169004302243e-006 0.002404705578097014 -0.9999971086847034 3.649169004302243e-006 -0.002404705578097014 0.9999971086847034 0.004163232182903801 0.03105646358866811 -0.9995089612240387 -0.004163232182903801 -0.03105646358866811 0.9995089612240387 -0.005539235710457793 0.2257622422815508 0.9741666832876962 0.005539235710457793 -0.2257622422815508 -0.9741666832876962 0.005741541568387194 0.6333792388219084 0.7738202469112567 -0.005741541568387194 -0.6333792388219084 -0.7738202469112567 9.129794179690531e-008 0.6271054976389598 0.7789343328105293 -9.129794179690531e-008 -0.6271054976389598 -0.7789343328105293 0.9969248065263503 0.0630173633110655 0.04658049005452914 -0.9969248065263503 -0.0630173633110655 -0.04658049005452914 0.002128530445273913 -0.2683715989666407 0.9633131132846848 0.001639764983917454 -0.2716436780894816 0.9623965000584819 0.001005197093830429 -0.2694069088834613 0.9630259119175667 -0.001005197093830429 0.2694069088834613 -0.9630259119175667 -0.001639764983917454 0.2716436780894816 -0.9623965000584819 -0.002128530445273913 0.2683715989666407 -0.9633131132846848 -0.001037056060731555 0.9956816563005005 -0.09282760269132624 0.001037056060731555 -0.9956816563005005 0.09282760269132624 0.01055406525834097 -0.2587200319160666 0.9658946923924329 -0.01055406525834097 0.2587200319160666 -0.9658946923924329 -0.001392086521481292 0.9997216255719778 0.0235527802783202 0.001392086521481292 -0.9997216255719778 -0.0235527802783202 -0.0009266258992287946 0.9998006871929479 0.01994310038464602 0.0009266258992287946 -0.9998006871929479 -0.01994310038464602 0.02234158084566133 0.5339013868798324 -0.8452515382139852 -0.02234158084566133 -0.5339013868798324 0.8452515382139852 -0.1556280380849506 0.2809020143766772 0.9470343035397156 0.1556280380849506 -0.2809020143766772 -0.9470343035397156 -0.9949922403436752 0.09349449262480997 0.03534432775854178 0.9949922403436752 -0.09349449262480997 -0.03534432775854178 0.771127959994469 0.08874154827928825 0.6304653891561086 -0.771127959994469 -0.08874154827928825 -0.6304653891561086 -0.02384731832305925 -0.1218724595508653 0.9922592448608485 0.02384731832305925 0.1218724595508653 -0.9922592448608485 0.4249547264085437 0.1646834045613325 0.8901083399031425 -0.4249547264085437 -0.1646834045613325 -0.8901083399031425 0.004123423268501376 -0.003767271156499045 -0.9999844024026487 -0.004123423268501376 0.003767271156499045 0.9999844024026487 3.649170348330782e-006 0.002404705577239728 -0.9999971086847054 -3.649170348330782e-006 -0.002404705577239728 0.9999971086847054 -0.0004978541198465981 0.2232745900914064 0.9747554614162414 0.0004978541198465981 -0.2232745900914064 -0.9747554614162414 0.995640216310576 0.08230536122088525 0.04389062746565749 -0.995640216310576 -0.08230536122088525 -0.04389062746565749 -0.8246374845250392 -0.01411276082802709 0.5654854985744786 0.8246374845250392 0.01411276082802709 -0.5654854985744786 0.01087546504665527 -0.2146050196655245 0.9766403687101916 -0.01087546504665527 0.2146050196655245 -0.9766403687101916 -0.4401972825385715 0.07256682050643808 0.894963914919056 0.4401972825385715 -0.07256682050643808 -0.894963914919056 -0.9938736768183237 0.1060759675041956 0.0310323000384265 0.9938736768183237 -0.1060759675041956 -0.0310323000384265 -0.02469285204551572 -0.1223257360684622 0.9921827842455073 0.02469285204551572 0.1223257360684622 -0.9921827842455073 -1.975234189968038e-009 -0.0092096358929908 -0.9999575904040723 1.975234189968038e-009 0.0092096358929908 0.9999575904040723 -0.004123424047886496 -0.003767272097554435 -0.9999844023958895 0.004123424047886496 0.003767272097554435 0.9999844023958895 -0.003656799258033165 0.2025676661135156 0.979261440303104 0.003656799258033165 -0.2025676661135156 -0.979261440303104 -0.005991095453674735 0.2026514220813025 0.9792326117443653 0.005991095453674735 -0.2026514220813025 -0.9792326117443653 0.0004979735973291479 0.2232744541324763 0.97475549249755 -0.0004979735973291479 -0.2232744541324763 -0.97475549249755 0.005538729495513114 0.2257617772353544 0.9741667939398827 -0.005538729495513114 -0.2257617772353544 -0.9741667939398827 1.270040682074497e-007 0.229068254948915 0.973410362886405 -1.270040682074497e-007 -0.229068254948915 -0.973410362886405 0.9932672326084836 0.1101579073625746 0.03585303434555028 -0.9932672326084836 -0.1101579073625746 -0.03585303434555028 0.01946975905828728 -0.204745561519798 0.9786215731937217 -0.01946975905828728 0.204745561519798 -0.9786215731937217 -0.9939120391092525 0.1054061652209854 0.03206865833012031 0.9939120391092525 -0.1054061652209854 -0.03206865833012031 0.9242746092440277 -0.03269483896492043 0.3803255108612332 -0.9242746092440277 0.03269483896492043 -0.3803255108612332 -0.02133260597046953 -0.08559868170729368 0.9961012928475107 0.02133260597046953 0.08559868170729368 -0.9961012928475107 0.02101322130799316 -0.00641634108519356 -0.999758608413721 -0.02101322130799316 0.00641634108519356 0.999758608413721 -0.001748214336487093 0.2024396979067454 0.9792931698209986 0.001748214336487093 -0.2024396979067454 -0.9792931698209986 0.9166413971056587 -0.0669061911394007 0.3940712000380186 -0.9166413971056587 0.0669061911394007 -0.3940712000380186 -0.4249567961679917 0.1646831342390139 0.8901074017711855 0.4249567961679917 -0.1646831342390139 -0.8901074017711855 0.994992237216198 0.09349442076486945 0.03534460588755371 -0.994992237216198 -0.09349442076486945 -0.03534460588755371 -0.7711318273143256 0.08873899184190973 0.6304610188027099 0.7711318273143256 -0.08873899184190973 -0.6304610188027099 0.02384718136722833 -0.1218726623496858 0.9922592232439254 -0.02384718136722833 0.1218726623496858 -0.9922592232439254 -0.9931293348599229 0.1133726637291741 0.02899591970672322 0.9931293348599229 -0.1133726637291741 -0.02899591970672322 -0.01798191713551359 -0.08803433048368339 0.9959551231418118 0.01798191713551359 0.08803433048368339 -0.9959551231418118 0.01427091325176062 -0.06851877216335224 -0.997547752689658 -0.01427091325176062 0.06851877216335224 0.997547752689658 -0.02101322846933548 -0.006416343807304026 -0.9997586082457315 0.02101322846933548 0.006416343807304026 0.9997586082457315 -0.003101143724149982 0.1954095786057839 0.980716819217817 0.003101143724149982 -0.1954095786057839 -0.980716819217817 -0.005416480598996744 0.1962979641407612 0.9805293320508637 0.005416480598996744 -0.1962979641407612 -0.9805293320508637 0.9817272518583401 -0.02642165932822021 0.1884502557096029 -0.9817272518583401 0.02642165932822021 -0.1884502557096029 0.001748277811602291 0.2024400378841402 0.9792930994274193 -0.001748277811602291 -0.2024400378841402 -0.9792930994274193 0.003656811932388367 0.2025680473072131 0.979261361402886 -0.003656811932388367 -0.2025680473072131 -0.979261361402886 0.005990923095397907 0.2026516007718099 0.9792325758189869 -0.005990923095397907 -0.2026516007718099 -0.9792325758189869 -2.83832460254903e-009 0.2145028510253935 0.9767233625249155 2.83832460254903e-009 -0.2145028510253935 -0.9767233625249155 0.9938735231494315 0.1060775467690079 0.03103182324655636 -0.9938735231494315 -0.1060775467690079 -0.03103182324655636 0.02469291859595026 -0.1223257281918692 0.9921827835603391 -0.02469291859595026 0.1223257281918692 -0.9921827835603391 0.00748251340675228 0.9999710413922299 -0.001388657645822813 -0.0007751097969328722 0.9999996026545626 0.000440335690215953 -0.03029640124837576 0.9994606427639767 0.01267089725377578 0.03029640124837576 -0.9994606427639767 -0.01267089725377578 0.0007751097969328722 -0.9999996026545626 -0.000440335690215953 -0.00748251340675228 -0.9999710413922299 0.001388657645822813 0.989503388961654 -0.02233416760546805 0.1427733455192977 -0.989503388961654 0.02233416760546805 -0.1427733455192977 -3.404876009399591e-010 -0.08815295950554364 -0.9961069499458449 3.404876009399591e-010 0.08815295950554364 0.9961069499458449 0.0411386407770415 -3.064684165570203e-018 -0.9991534477921885 -0.0411386407770415 3.064684165570203e-018 0.9991534477921885 -0.01427092404631581 -0.0685187381006679 -0.9975477548749014 0.01427092404631581 0.0685187381006679 0.9975477548749014 -0.004907800722363624 0.2005341877099537 0.9796744117570789 0.004907800722363624 -0.2005341877099537 -0.9796744117570789 -0.9242723716676167 -0.03269417253723511 0.3803310059067297 -0.9166378344760666 -0.06690351820570036 0.3940799406957 0.9166378344760666 0.06690351820570036 -0.3940799406957 0.9242723716676167 0.03269417253723511 -0.3803310059067297 0.9939122830165466 0.1054039787532497 0.03206828545183944 -0.9939122830165466 -0.1054039787532497 -0.03206828545183944 0.02133270175206617 -0.08559872865015414 0.9961012867622624 -0.02133270175206617 0.08559872865015414 -0.9961012867622624 0.04084427492219095 0.9991334508123856 -0.00800579001814427 -0.04084427492219095 -0.9991334508123856 0.00800579001814427 -0.02589161929896242 0.9996281125004789 -0.008559249313332249 -0.01033024795755935 0.9999409324432032 -0.003378994192503816 -0.02567501078340835 0.9996355603729615 -0.008339080231465297 0.02567501078340835 -0.9996355603729615 0.008339080231465297 0.01033024795755935 -0.9999409324432032 0.003378994192503816 0.02589161929896242 -0.9996281125004789 0.008559249313332249 0.001654889868512676 -0.4444033375107274 -0.8958252814856531 -0.001654889868512676 0.4444033375107274 0.8958252814856531 0 -1 0 0 -1 0 0 -0.9990387165311067 -0.04383654721666857 -0 0.9990387165311067 0.04383654721666857 -0 1 -0 -0 1 -0 -0.041138663034018 -6.129374969030033e-018 -0.9991534468757908 0.041138663034018 6.129374969030033e-018 0.9991534468757908 0 1 0 -0.01356751355233308 0.9998984483959967 -0.004360673260583247 0.01356751355233308 -0.9998984483959967 0.004360673260583247 -0 -1 -0 0.004907790606368402 0.2005341840537439 0.9796744125561631 -0.004907790606368402 -0.2005341840537439 -0.9796744125561631 0.00310114401148762 0.1954095771429339 0.9807168195083839 -0.00310114401148762 -0.1954095771429339 -0.9807168195083839 0.00541648995331054 0.1962979667575549 0.9805293314753187 -0.00541648995331054 -0.1962979667575549 -0.9805293314753187 -0.9817269690373728 -0.02642036875922447 0.1884519099911692 0.9817269690373728 0.02642036875922447 -0.1884519099911692 -4.734138847979123e-009 0.2326694570985017 0.9725558717798625 4.734138847979123e-009 -0.2326694570985017 -0.9725558717798625 0.9931295480912079 0.1133709359390444 0.02899537191446477 -0.9931295480912079 -0.1133709359390444 -0.02899537191446477 0.0179820440594617 -0.08803435978545028 0.9959551182601603 -0.0179820440594617 0.08803435978545028 -0.9959551182601603 -0.03887165794655145 0.9989838002767033 0.02281142242829177 0.03887165794655145 -0.9989838002767033 -0.02281142242829177 -0.9973482542834168 -0.01150372475800906 -0.0718618396265561 -0.9976513058438805 -0.04571807180863672 -0.05100715496967237 -0.999705072602087 -0.009892700087384557 -0.02217887054467122 0.999705072602087 0.009892700087384557 0.02217887054467122 0.9976513058438805 0.04571807180863672 0.05100715496967237 0.9973482542834168 0.01150372475800906 0.0718618396265561 2.961086036837299e-010 -0.4429273754907279 -0.8965574939962833 -2.961086036837299e-010 0.4429273754907279 0.8965574939962833 -0.001654890613376401 -0.4444033561486889 -0.8958252722383084 0.001654890613376401 0.4444033561486889 0.8958252722383084 -3.394031304407869e-019 -0.9994409791871446 -0.03343245610842094 3.394031304407869e-019 0.9994409791871446 0.03343245610842094 0 -1 0 0 -1 0 -4.805460757006482e-019 -0.9990387077873204 -0.04383674648786176 4.805460757006482e-019 0.9990387077873204 0.04383674648786176 -0 1 -0 -0 1 -0 -0.0008164578700198733 0.9999981144611564 -0.00176195081614317 0.0008164578700198733 -0.9999981144611564 0.00176195081614317 -0.9895034220085447 -0.02233271772348092 0.1427733432839038 0.9895034220085447 0.02233271772348092 -0.1427733432839038 9.255161719245658e-010 0.9999676468122628 -0.008043962254118291 -9.255161719245658e-010 -0.9999676468122628 0.008043962254118291 0.0007751050476572073 0.9999996026584948 0.0004403351199602355 -0.007482544509399058 0.9999710411432887 -0.001388669317023434 0.03029662795841154 0.9994606353720725 0.01267093824475535 -0.03029662795841154 -0.9994606353720725 -0.01267093824475535 0.007482544509399058 -0.9999710411432887 0.001388669317023434 -0.0007751050476572073 -0.9999996026584948 -0.0004403351199602355 0.1045832752325765 0.9943930580433587 -0.01564559544423735 -0.1045832752325765 -0.9943930580433587 0.01564559544423735 -0.9908954987600042 -0.08453192428526146 -0.1047877107002216 0.9908954987600042 0.08453192428526146 0.1047877107002216 -0.987600324858768 -0.072703700674905 -0.1391393914282716 0.987600324858768 0.072703700674905 0.1391393914282716 0.0005327402026250499 -0.2855058741792734 -0.958376811070158 -0.0005327402026250499 0.2855058741792734 0.958376811070158 0.9976185190063851 -0.04573625020724208 -0.05162834446781926 0.9932415657032433 -0.09013428504885948 -0.07312320300766836 0.9997023733211127 -0.009759694602735259 -0.02235873738375898 0.9973354014790976 -0.01165276589655645 -0.07201603990422566 -0.9932415657032433 0.09013428504885948 0.07312320300766836 -0.9997023733211127 0.009759694602735259 0.02235873738375898 -0.9973354014790976 0.01165276589655645 0.07201603990422566 -0.9976185190063851 0.04573625020724208 0.05162834446781926 1.410291816654595e-018 -0.9999323261610292 0.0116337052650082 -1.410291816654595e-018 0.9999323261610292 -0.0116337052650082 3.123119780309943e-019 -0.9994409852759545 -0.03343227408701486 -3.123119780309943e-019 0.9994409852759545 0.03343227408701486 0 1 0 0.0008164581756783618 0.9999981144609226 -0.001761950807225865 -0.0008164581756783618 -0.9999981144609226 0.001761950807225865 -0 -1 -0 0.01033025013843936 0.9999409323895296 -0.003379003408602833 0.01356758032274603 0.9998984472588524 -0.004360726260850447 -0.01356758032274603 -0.9998984472588524 0.004360726260850447 -0.01033025013843936 -0.9999409323895296 0.003379003408602833 0.02589163339415156 0.9996281121180106 -0.008559251343714632 0.02567508100579211 0.9996355580756299 -0.008339139414213367 -0.02567508100579211 -0.9996355580756299 0.008339139414213367 -0.02589163339415156 -0.9996281121180106 0.008559251343714632 -7.364137691395697e-010 0.9999359938074939 -0.01131407478406496 7.364137691395697e-010 -0.9999359938074939 0.01131407478406496 -0.04084474853355217 0.9991334304944088 -0.008005909423994038 0.04084474853355217 -0.9991334304944088 0.008005909423994038 0.08663380591301835 0.9962037664858618 -0.008522869963094761 -0.08663380591301835 -0.9962037664858618 0.008522869963094761 -0.9967825298993301 -0.0447105348500445 -0.06652485370832326 0.9967825298993301 0.0447105348500445 0.06652485370832326 -0.8783033298547853 -0.2320437595006832 -0.4180178877067167 0.8783033298547853 0.2320437595006832 0.4180178877067167 -0.000532740161792093 -0.2855057619596127 -0.9583768445010455 0.000532740161792093 0.2855057619596127 0.9583768445010455 2.537875881418471e-010 -0.2697717871999729 -0.9629242871747148 -2.537875881418471e-010 0.2697717871999729 0.9629242871747148 0.990690887480761 -0.08575286944409223 -0.1057261124069503 -0.990690887480761 0.08575286944409223 0.1057261124069503 0.9875995101078402 -0.07270673036156833 -0.1391435912821163 -0.9875995101078402 0.07270673036156833 0.1391435912821163 -4.820625318444053e-019 -0.9995796764235522 -0.02899086892431474 4.820625318444053e-019 0.9995796764235522 0.02899086892431474 -2.652849202070998e-019 -0.9999323232579478 0.01163395478601814 2.652849202070998e-019 0.9999323232579478 -0.01163395478601814 0.03887190050625438 0.9989837896533671 0.02281147432387656 -0.03887190050625438 -0.9989837896533671 -0.02281147432387656 -0.02212740826631281 0.9987424994696821 0.04498663753236129 0.02212740826631281 -0.9987424994696821 -0.04498663753236129 -0.1337631166327554 0.5108285547050319 -0.8492123505500023 0.1337631166327554 -0.5108285547050319 0.8492123505500023 -0.9323640263889717 -0.1914068041724176 -0.3066932630695479 0.9323640263889717 0.1914068041724176 0.3066932630695479 0.9967824449025985 -0.04470756018247908 -0.06652812635666128 -0.9967824449025985 0.04470756018247908 0.06652812635666128 0.878304663953519 -0.2320436175285829 -0.4180151634112627 -0.878304663953519 0.2320436175285829 0.4180151634112627 -3.173857528627368e-018 -0.999448507723101 -0.0332066320193234 3.173857528627368e-018 0.999448507723101 0.0332066320193234 5.592757879193317e-019 -0.9995796950832848 -0.02899022554598833 -5.592757879193317e-019 0.9995796950832848 0.02899022554598833 -0.1045815532024361 0.9943932453543304 -0.01564520129139864 0.1045815532024361 -0.9943932453543304 0.01564520129139864 -0.1210075744333001 0.9867713021129483 0.1078868122436016 0.1210075744333001 -0.9867713021129483 -0.1078868122436016 -0.462088132140393 0.7429386187509101 -0.4842693123701861 0.462088132140393 -0.7429386187509101 0.4842693123701861 -8.717775860082275e-019 -0.9999830350033698 -0.005824921068072554 8.717775860082275e-019 0.9999830350033698 0.005824921068072554 -0.9965103101143514 -0.07678665601015007 -0.03272630890549316 0.9965103101143514 0.07678665601015007 0.03272630890549316 0.1337633194460965 0.5108296595896843 -0.8492116539792946 -0.1337633194460965 -0.5108296595896843 0.8492116539792946 0.9323701490761447 -0.1913997652358318 -0.3066790422891596 -0.9323701490761447 0.1913997652358318 0.3066790422891596 7.973626678796302e-018 -0.9994485322936126 -0.03320589249129963 -7.973626678796302e-018 0.9994485322936126 0.03320589249129963 -0.08663352748993097 0.9962037903422601 -0.008522911613152079 0.08663352748993097 -0.9962037903422601 0.008522911613152079 -0.4469774344299156 0.513470208436643 -0.7325022308215047 0.4469774344299156 -0.513470208436643 0.7325022308215047 -0.9256712522559258 0.167853255079391 -0.3390545936957635 0.9256712522559258 -0.167853255079391 0.3390545936957635 -2.319304073202425e-018 -0.9649737693459085 -0.2623463826210484 2.319304073202425e-018 0.9649737693459085 0.2623463826210484 -0.9963121731378012 -0.07650231110023816 -0.03885164158377934 0.9963121731378012 0.07650231110023816 0.03885164158377934 0 -0.9656326893104121 -0.259910579498298 -0 0.9656326893104121 0.259910579498298 0.4620909004634785 0.7429386393024869 -0.4842666393013472 -0.4620909004634785 -0.7429386393024869 0.4842666393013472 3.720313159902421e-018 -0.9999830322203812 -0.005825398813118429 -3.720313159902421e-018 0.9999830322203812 0.005825398813118429 0.996510362992616 -0.07678573609388789 -0.03272685717945185 -0.996510362992616 0.07678573609388789 0.03272685717945185 0.02212732636862875 0.9987425008261646 0.04498664769990116 -0.02212732636862875 -0.9987425008261646 -0.04498664769990116 5.197460848859656e-018 0.9771494445064004 -0.2125534358716255 -5.197460848859656e-018 -0.9771494445064004 0.2125534358716255 -8.475559142478103e-019 0.9884947513402278 -0.1512551704002918 8.475559142478103e-019 -0.9884947513402278 0.1512551704002918 -0.9692342821730617 0.1297429946546814 -0.2091689785759472 0.9692342821730617 -0.1297429946546814 0.2091689785759472 -4.134891109695223e-018 -0.8867350737852805 -0.4622779563412182 -4.134891109695223e-018 -0.8867350737852805 -0.4622779563412182 4.134891109695223e-018 0.8867350737852805 0.4622779563412182 4.134891109695223e-018 0.8867350737852805 0.4622779563412182 -0.9962900253079109 -0.08038413385825094 -0.03073396322996985 0.9962900253079109 0.08038413385825094 0.03073396322996985 0.9256731243617642 0.1678507207473665 -0.3390507371750123 -0.9256731243617642 -0.1678507207473665 0.3390507371750123 0.4469772352428111 0.5134695466944448 -0.7325028162349238 -0.4469772352428111 -0.5134695466944448 0.7325028162349238 5.661456373090657e-018 -0.9649736978135386 -0.2623466457343516 -5.661456373090657e-018 0.9649736978135386 0.2623466457343516 0.9963122674049834 -0.07650133516965876 -0.03885114587242723 -0.9963122674049834 0.07650133516965876 0.03885114587242723 -2.234569429237177e-018 -0.9656327065041755 -0.2599105156191658 2.234569429237177e-018 0.9656327065041755 0.2599105156191658 0.1210067927792891 0.9867714148828135 0.1078866575227938 -0.1210067927792891 -0.9867714148828135 -0.1078866575227938 0 0.9866422485374621 -0.1629020362087006 -0 -0.9866422485374621 0.1629020362087006 -0.9967221314255439 0.07840569708791045 -0.01993838987179611 0.9967221314255439 -0.07840569708791045 0.01993838987179611 0 0.9851390618417552 -0.1717586353973112 -0 -0.9851390618417552 0.1717586353973112 2.166155574562098e-017 -0.7895706811088429 -0.6136596284043119 -2.166155574562098e-017 0.7895706811088429 0.6136596284043119 8.914895848239008e-018 -0.7865841596254477 -0.6174830846479343 -8.914895848239008e-018 0.7865841596254477 0.6174830846479343 -0.9962003996229454 -0.08647837290293989 -0.01030799743615296 0.9962003996229454 0.08647837290293989 0.01030799743615296 -1.677845589769437e-018 0.9771494362869531 -0.2125534736580186 1.971565419576037e-019 0.9884947661902032 -0.1512550733515274 -1.971565419576037e-019 -0.9884947661902032 0.1512550733515274 1.677845589769437e-018 -0.9771494362869531 0.2125534736580186 0.9692337674164756 0.1297439298009559 -0.2091707837616668 -0.9692337674164756 -0.1297439298009559 0.2091707837616668 -1.128780193505647e-018 -0.8867350737852805 -0.4622779563412182 -1.021695108512319e-017 -0.8867350737852805 -0.4622779563412181 1.021695108512319e-017 0.8867350737852805 0.4622779563412181 1.128780193505647e-018 0.8867350737852805 0.4622779563412182 0.9962901134102942 -0.08038250755747767 -0.03073536073767557 -0.9962901134102942 0.08038250755747767 0.03073536073767557 -0.9965359278681637 0.0774194785836184 -0.03037052524699822 0.9965359278681637 -0.0774194785836184 0.03037052524699822 0 0.9856521593871221 -0.1687892789708608 -3.533073050874074e-018 0.9801115654826196 -0.1984472705965206 3.533073050874074e-018 -0.9801115654826196 0.1984472705965206 -0 -0.9856521593871221 0.1687892789708608 2.342884402904967e-017 -0.5793540694270123 -0.8150759855610766 -2.342884402904967e-017 0.5793540694270123 0.8150759855610766 1.489903192868899e-017 -0.5683954036936462 -0.8227555317710948 -1.489903192868899e-017 0.5683954036936462 0.8227555317710948 -0.9973577217584451 -0.06876329520585735 -0.02343467689634523 0.9973577217584451 0.06876329520585735 0.02343467689634523 1.257941559232004e-018 0.9866422701885081 -0.1629019050756211 -1.257941559232004e-018 -0.9866422701885081 0.1629019050756211 0.9967223493904013 0.07840420476392516 -0.01993336150816342 -0.9967223493904013 -0.07840420476392516 0.01993336150816342 0 0.9851390633231312 -0.1717586269007288 -0 -0.9851390633231312 0.1717586269007288 -1.793119758484267e-017 -0.7895708206534031 -0.6136594488580058 1.793119758484267e-017 0.7895708206534031 0.6136594488580058 -2.200042870792001e-017 -0.7865842902176107 -0.6174829182923667 2.200042870792001e-017 0.7865842902176107 0.6174829182923667 0.9962004199280746 -0.08647795103243808 -0.01030957420843498 -0.9962004199280746 0.08647795103243808 0.01030957420843498 -3.550744942707794e-018 0.9800675422696868 -0.1986645730608647 5.086179847342662e-018 0.9205827353896554 -0.3905475992788838 -5.086179847342662e-018 -0.9205827353896554 0.3905475992788838 3.550744942707794e-018 -0.9800675422696868 0.1986645730608647 -0.9961397036751403 0.08149595572681781 -0.03262054509318518 0.9961397036751403 -0.08149595572681781 0.03262054509318518 1.727393988152528e-018 -0.3156358666850648 -0.9488803927060397 -1.727393988152528e-018 0.3156358666850648 0.9488803927060397 -0.999042756123289 -0.01552591487896637 -0.04089642288457383 0.999042756123289 0.01552591487896637 0.04089642288457383 7.537306358416392e-018 -0.3069588727487859 -0.9517227802468504 -7.537306358416392e-018 0.3069588727487859 0.9517227802468504 0.9965360246287977 0.07741852079323409 -0.03036979182048899 -0.9965360246287977 -0.07741852079323409 0.03036979182048899 0 0.9856521659491153 -0.168789240651819 0 0.9801115435030257 -0.1984473791515443 -0 -0.9801115435030257 0.1984473791515443 -0 -0.9856521659491153 0.168789240651819 -1.83948316947542e-017 -0.579354092442289 -0.8150759692018723 1.83948316947542e-017 0.579354092442289 0.8150759692018723 -2.337933897370917e-017 -0.5683954594514145 -0.8227554932511939 2.337933897370917e-017 0.5683954594514145 0.8227554932511939 0.9973577533466965 -0.068763183598015 -0.02343365999360792 -0.9973577533466965 0.068763183598015 0.02343365999360792 -8.536066060444724e-018 0.9205827353896554 -0.3905475992788838 8.536066060444724e-018 -0.9205827353896554 0.3905475992788838 -0.9958122648008684 0.0910603185000064 -0.008121063159624241 0.9958122648008684 -0.0910603185000064 0.008121063159624241 -1.469169304093626e-017 0.770026188855712 -0.6380122792520121 1.469169304093626e-017 -0.770026188855712 0.6380122792520121 3.962650399660909e-018 -0.06049888400598817 -0.9981682648902588 -3.056940938661591e-019 -0.05846806307024186 -0.9982892795181236 3.056940938661591e-019 0.05846806307024186 0.9982892795181236 -3.962650399660909e-018 0.06049888400598817 0.9981682648902588 -0.9979843206367407 0.05931566859490737 -0.02255985865119938 0.9979843206367407 -0.05931566859490737 0.02255985865119938 0 0.9800675200453534 -0.1986646826996457 0 0.920584787765236 -0.3905427614682356 -0 -0.920584787765236 0.3905427614682356 -0 -0.9800675200453534 0.1986646826996457 0.9961398268241957 0.08149416357364148 -0.0326212617489593 -0.9961398268241957 -0.08149416357364148 0.0326212617489593 -1.727394869965462e-018 -0.3156357440700538 -0.9488804334927259 1.727394869965462e-018 0.3156357440700538 0.9488804334927259 0.9990426691746329 -0.01552723854632595 -0.04089804434872643 -0.9990426691746329 0.01552723854632595 0.04089804434872643 2.287870097440066e-018 -0.3069588983703188 -0.9517227719831444 -2.287870097440066e-018 0.3069588983703188 0.9517227719831444 -1.299528321634852e-017 0.773243148676752 -0.6341096380157475 -3.446381906211511e-017 0.5575799631598709 -0.8301232346360611 3.446381906211511e-017 -0.5575799631598709 0.8301232346360611 1.299528321634852e-017 -0.773243148676752 0.6341096380157475 1.226597955325728e-017 0.2590089053646115 -0.9658749333851801 -1.226597955325728e-017 -0.2590089053646115 0.9658749333851801 -1.310032251613415e-017 0.247952238821439 -0.9687722576867258 1.310032251613415e-017 -0.247952238821439 0.9687722576867258 -6.811152637076217e-018 0.920584787765236 -0.3905427614682356 6.811152637076217e-018 -0.920584787765236 0.3905427614682356 0.9958123003023679 0.09105983567328287 -0.008122123716212848 -0.9958123003023679 -0.09105983567328287 0.008122123716212848 1.771824390044765e-017 0.7700293506231545 -0.6380084632502011 -1.771824390044765e-017 -0.7700293506231545 0.6380084632502011 1.378782026995277e-017 -0.05846796210489705 -0.9982892854314825 1.578927059184854e-018 -0.06049903045249035 -0.9981682560141394 -1.578927059184854e-018 0.06049903045249035 0.9981682560141394 -1.378782026995277e-017 0.05846796210489705 0.9982892854314825 0.9979844310784948 0.05931458544750328 -0.02255782077515118 -0.9979844310784948 -0.05931458544750328 0.02255782077515118 1.555532412505964e-018 0.5688883171801603 -0.8224147874253753 -1.555532412505964e-018 -0.5688883171801603 0.8224147874253753 1.223150988481862e-017 0.5575780441067687 -0.8301245236288773 -1.191923178912958e-017 0.7732464394526523 -0.6341056251712294 1.191923178912958e-017 -0.7732464394526523 0.6341056251712294 -1.223150988481862e-017 -0.5575780441067687 0.8301245236288773 -2.087010853048018e-017 0.2590068889601615 -0.9658754741016975 2.087010853048018e-017 -0.2590068889601615 0.9658754741016975 -3.148965933286888e-018 0.2479506096265221 -0.9687726746692622 3.148965933286888e-018 -0.2479506096265221 0.9687726746692622 -2.338814768352773e-017 0.5688867081291823 -0.8224159004505826 2.338814768352773e-017 -0.5688867081291823 0.8224159004505826</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1120\" source=\"#ID1492\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1490\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1488\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1489\"/>\r\n                </vertices>\r\n                <triangles count=\"1256\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1490\"/>\r\n                    <p>0 1 2 3 4 5 0 6 1 4 7 5 0 2 8 9 3 5 1 10 2 3 11 4 6 12 1 4 13 7 6 0 14 15 5 7 8 2 16 17 3 9 14 0 8 9 5 15 2 10 18 19 11 3 1 12 10 11 13 4 20 12 6 7 13 21 6 14 22 23 15 7 16 2 18 19 3 17 8 16 24 25 17 9 14 8 26 27 9 15 18 10 28 29 11 19 10 12 30 31 13 11 12 20 32 33 21 13 20 6 34 35 7 21 36 6 22 23 7 37 38 14 26 27 15 39 16 18 40 41 19 17 16 42 24 25 43 17 26 8 24 25 9 27 18 28 44 45 29 19 10 30 28 29 31 11 12 46 30 31 47 13 48 12 32 33 13 49 32 20 50 51 21 33 20 34 52 53 35 21 6 54 34 35 55 7 36 22 56 57 23 37 6 58 54 55 59 7 38 26 60 61 27 39 40 18 44 45 19 41 16 40 42 43 41 17 24 42 62 63 43 25 26 24 64 65 25 27 28 66 44 45 67 29 28 30 68 69 31 29 70 12 48 49 13 71 46 72 30 31 73 47 74 75 76 77 78 79 50 80 32 33 81 51 20 82 50 51 83 21 20 52 84 85 53 21 52 34 86 87 35 53 34 54 88 89 55 35 54 90 91 92 93 55 38 60 91 92 61 39 60 26 64 65 27 61 40 44 94 95 45 41 40 96 42 43 97 41 42 98 62 63 99 43 24 62 64 65 63 25 44 66 100 101 67 45 28 68 66 67 69 29 102 70 48 49 71 103 46 104 72 73 105 47 106 107 108 109 110 111 76 75 112 113 78 77 114 74 76 77 79 115 32 80 116 117 81 33 50 118 80 81 119 51 20 120 82 83 121 21 50 82 122 123 83 51 20 84 120 121 85 21 84 52 124 125 53 85 124 52 86 87 53 125 86 34 88 89 35 87 88 54 91 92 55 89 96 40 94 95 41 97 94 44 100 101 45 95 98 42 96 97 43 99 98 126 62 63 127 99 62 128 64 65 129 63 100 66 130 131 67 101 102 132 70 71 133 103 134 74 114 115 79 135 104 136 72 73 137 105 107 138 108 109 139 110 140 107 106 111 110 141 142 143 144 145 146 147 148 76 112 113 77 149 150 114 76 77 115 151 116 80 152 153 81 117 80 118 154 155 119 81 118 50 122 123 51 119 82 120 156 157 121 83 122 82 156 157 83 123 120 84 158 159 85 121 158 84 124 125 85 159 96 94 160 161 95 97 160 94 100 101 95 161 96 160 98 99 161 97 98 160 162 163 161 99 62 126 128 129 127 63 100 164 165 166 167 101 66 168 130 131 169 67 170 132 102 103 133 171 172 134 114 115 135 173 174 140 106 111 141 175 104 176 136 137 177 105 108 138 178 179 139 109 180 181 182 183 184 185 186 187 180 185 188 189 144 143 190 191 146 145 192 193 194 195 196 197 198 199 200 201 202 203 172 114 150 151 115 173 204 150 76 77 151 205 144 190 206 207 191 145 156 120 158 159 121 157 100 208 160 161 209 101 160 210 162 163 211 161 128 126 212 213 127 129 164 214 165 166 215 167 100 165 216 217 166 101 130 168 218 219 169 131 220 221 222 223 224 225 170 226 132 133 227 171 228 134 172 173 135 229 230 140 174 175 141 231 136 176 232 233 177 137 182 204 234 235 205 183 108 178 236 237 179 109 181 204 182 183 205 184 187 181 180 185 184 188 238 187 186 189 188 239 240 193 192 197 196 241 192 194 242 243 195 197 198 244 199 202 245 203 204 76 246 247 77 205 172 150 248 249 151 173 181 150 204 205 151 184 208 100 216 217 101 209 160 208 250 251 209 161 162 210 252 253 211 163 254 160 255 256 161 257 258 214 164 167 215 259 260 261 262 263 264 265 266 267 261 264 268 269 168 270 218 219 271 169 272 220 222 223 225 273 220 274 221 224 275 225 276 226 170 171 227 277 278 228 172 173 229 279 280 238 186 189 239 281 282 230 174 175 231 283 176 284 232 233 285 177 204 246 234 235 247 205 236 178 286 287 179 237 181 187 248 249 188 184 238 288 187 188 289 239 290 240 192 197 241 291 292 193 240 241 196 293 192 242 290 291 243 197 198 294 244 245 295 203 234 246 296 297 247 235 278 172 248 249 173 279 181 248 150 151 249 184 208 216 298 299 217 209 250 208 300 301 209 251 255 160 250 251 161 256 212 302 255 256 303 213 258 304 214 215 305 259 260 266 261 264 269 265 306 260 262 263 265 307 266 308 267 268 309 269 274 310 221 224 311 275 218 270 312 313 271 219 272 222 314 315 223 273 316 317 318 319 320 321 322 316 323 324 321 325 326 226 276 277 227 327 328 228 278 279 229 329 330 238 280 281 239 331 332 230 282 283 231 333 232 284 334 335 285 233 236 286 336 337 287 237 187 288 248 249 289 188 238 338 288 289 339 239 240 290 340 341 291 241 342 292 240 241 293 343 242 344 290 291 345 243 278 248 288 289 249 279 346 298 216 217 299 347 348 208 298 299 209 349 300 208 350 351 209 301 250 300 352 353 301 251 255 250 354 355 251 256 354 212 255 256 213 355 356 304 258 259 305 357 306 262 358 359 263 307 360 266 260 265 269 361 360 260 306 307 265 361 362 363 364 365 366 367 346 216 368 369 217 347 266 370 308 309 371 269 274 372 310 311 373 275 270 374 312 313 375 271 317 376 377 378 379 320 314 222 380 381 223 315 318 317 377 378 320 319 323 316 318 319 321 324 382 322 323 324 325 383 384 326 276 277 327 385 386 328 278 279 329 387 238 330 338 339 331 239 388 330 280 281 331 389 390 332 282 283 333 391 334 284 392 393 285 335 386 288 338 339 289 387 290 394 340 341 395 291 396 240 340 341 241 397 342 240 398 399 241 343 290 344 394 395 345 291 386 278 288 289 279 387 346 400 298 299 401 347 402 208 348 349 209 403 348 298 404 405 299 349 350 208 402 403 209 351 300 350 406 407 351 301 352 300 406 407 301 353 354 250 352 353 251 355 356 408 304 305 409 357 410 306 358 359 307 411 360 377 266 269 378 361 412 360 306 307 361 413 362 364 414 415 365 367 346 368 416 417 369 347 396 340 418 419 341 397 420 421 422 423 424 425 372 426 310 311 427 373 428 322 382 383 325 429 312 374 430 431 375 313 377 376 432 433 379 378 314 380 434 435 381 315 360 318 377 378 319 361 323 318 412 413 319 324 436 382 323 324 383 437 384 438 326 327 439 385 440 328 386 387 329 441 330 442 338 339 443 331 444 330 388 389 331 445 446 332 390 391 333 447 284 448 392 393 449 285 450 446 390 391 447 451 452 453 454 455 456 457 458 386 338 339 387 459 340 394 418 419 395 341 398 240 396 397 241 399 346 460 400 401 461 347 404 298 400 401 299 405 402 348 462 463 349 403 462 348 404 405 349 463 350 402 464 465 403 351 406 350 464 465 351 407 356 466 408 409 467 357 410 358 468 469 359 411 412 306 410 411 307 413 266 377 432 433 378 269 412 318 360 361 319 413 414 364 470 471 365 415 472 421 420 425 424 473 372 474 426 427 475 373 476 428 382 383 429 477 374 478 430 431 479 375 376 480 432 433 481 379 434 380 482 483 381 435 436 323 412 413 324 437 484 382 436 437 383 485 486 438 384 385 439 487 438 488 326 327 489 439 458 440 386 387 441 459 444 442 330 331 443 445 458 338 442 443 339 459 490 444 388 389 445 491 448 492 392 393 493 449 494 495 326 327 496 497 498 446 450 451 447 499 452 454 500 501 455 457 502 421 472 473 424 503 464 402 462 463 403 465 466 504 408 409 505 467 506 410 468 469 411 507 436 412 410 411 413 437 474 508 426 427 509 475 510 428 476 477 429 511 476 382 484 485 383 477 478 512 430 431 513 479 484 436 506 507 437 485 514 438 486 487 439 515 516 440 458 459 441 517 518 519 520 521 522 523 488 524 326 327 525 489 444 526 442 443 527 445 528 458 442 443 459 529 530 444 490 491 445 531 492 532 392 393 533 493 448 534 492 493 535 449 536 448 537 538 449 539 524 494 326 327 497 525 540 530 490 491 531 541 542 543 540 541 544 545 546 504 466 467 505 547 506 468 548 549 469 507 436 410 506 507 411 437 474 550 508 509 551 475 552 510 476 477 511 553 554 476 484 485 477 555 430 512 556 557 513 431 550 558 508 509 559 551 560 561 562 563 564 565 484 506 566 567 507 485 568 514 486 487 515 569 570 571 572 573 574 575 528 516 458 459 517 529 576 519 518 523 522 577 571 578 572 573 579 574 580 519 576 577 522 581 528 442 526 527 443 529 530 526 444 445 527 531 532 492 512 513 493 533 492 534 582 583 535 493 448 584 534 535 585 449 586 448 536 539 449 587 536 537 588 589 538 539 588 537 580 581 538 589 530 540 590 591 541 531 540 543 592 593 544 541 546 594 504 505 595 547 596 546 466 467 547 597 566 506 548 549 507 567 598 510 552 553 511 599 554 552 476 477 553 555 554 484 566 567 485 555 600 601 466 467 602 603 492 556 512 513 557 493 550 604 558 559 605 551 606 561 560 565 564 607 608 514 568 569 515 609 610 516 528 529 517 611 612 571 570 575 574 613 588 580 576 577 581 589 614 528 526 527 529 615 530 590 526 527 591 531 543 616 617 618 619 544 534 584 582 583 585 535 492 582 620 621 583 493 586 584 448 449 585 587 590 540 622 623 541 591 592 543 617 618 544 593 540 592 622 623 593 541 546 624 594 595 625 547 626 566 548 549 567 627 628 629 630 631 632 633 634 596 466 467 597 635 636 598 552 553 599 637 638 552 554 555 553 639 554 566 640 641 567 555 601 634 466 467 635 602 556 642 643 644 645 557 492 620 556 557 621 493 617 598 636 637 599 618 646 608 568 569 609 647 648 612 570 575 613 649 614 610 528 529 611 615 614 526 590 591 527 615 584 650 582 583 651 585 620 582 652 653 583 621 654 590 622 623 591 655 592 617 656 657 618 593 622 592 658 659 593 623 624 660 594 595 661 625 662 663 664 665 666 667 640 566 626 627 567 641 628 668 629 632 669 633 664 663 670 671 666 665 628 672 668 669 673 633 638 636 552 553 637 639 638 554 640 641 555 639 643 674 672 673 675 644 556 676 642 645 677 557 643 642 674 675 645 644 556 620 652 653 621 557 617 636 678 679 637 618 680 608 646 647 609 681 614 682 610 611 683 615 684 612 648 649 613 685 686 614 590 591 615 687 650 688 582 583 689 651 652 582 690 691 583 653 692 654 622 623 655 693 654 686 590 591 687 655 658 592 656 657 593 659 656 617 678 679 618 657 692 622 658 659 623 693 624 694 660 661 695 625 696 640 626 627 641 697 698 662 664 665 667 699 672 674 668 669 675 673 678 636 638 639 637 679 638 640 700 701 641 639 676 556 652 653 557 677 702 680 646 647 681 703 704 684 648 649 685 705 686 682 614 615 683 687 582 688 706 707 689 583 690 582 708 709 583 691 710 654 692 693 655 711 712 686 654 655 687 713 658 656 714 715 657 659 656 678 716 717 679 657 718 692 658 659 693 719 694 720 660 661 721 695 722 662 698 699 667 723 696 700 640 641 701 697 678 638 700 701 639 679 724 680 702 703 681 725 726 682 686 687 683 727 728 684 704 705 685 729 688 730 706 707 731 689 582 706 708 709 707 583 732 710 692 693 711 733 710 712 654 655 713 711 734 726 686 687 727 735 718 658 714 715 659 719 714 656 716 717 657 715 716 678 736 737 679 717 732 692 718 719 693 733 694 738 720 721 739 695 740 700 696 697 701 741 742 722 698 699 723 743 678 700 736 737 701 679 744 724 702 703 725 745 746 728 704 705 729 747 730 748 706 707 749 731 708 706 750 751 707 709 752 710 732 733 711 753 754 712 710 711 713 755 756 726 734 735 727 757 718 714 758 759 715 719 714 716 760 761 717 715 716 736 762 763 737 717 764 732 718 719 733 765 738 766 720 721 767 739 768 722 742 743 723 769 740 736 700 701 737 741 770 771 772 773 774 775 756 776 726 727 777 757 706 748 778 779 749 707 730 780 748 749 781 731 706 782 750 751 783 707 784 752 732 733 753 785 752 754 710 711 755 753 764 718 758 759 719 765 758 714 760 761 715 759 760 716 762 763 717 761 786 787 736 737 788 789 784 732 764 765 733 785 738 790 766 767 791 739 740 786 736 737 789 741 792 768 742 743 769 793 794 770 772 773 775 795 796 797 798 799 800 801 748 802 778 779 803 749 706 778 782 783 779 707 804 805 806 807 808 809 750 782 810 811 783 751 797 812 813 814 815 800 764 758 816 817 759 765 758 760 818 819 761 759 760 762 820 821 763 761 786 822 787 788 823 789 784 764 824 825 765 785 790 826 766 767 827 791 828 768 792 793 769 829 830 794 772 773 795 831 798 797 813 814 800 799 832 833 834 835 836 837 778 802 838 839 803 779 778 840 782 783 841 779 842 804 806 807 809 843 844 845 846 847 848 849 813 812 850 851 815 814 824 764 816 817 765 825 816 758 818 819 759 817 818 760 820 821 761 819 852 822 786 789 823 853 812 854 850 851 855 815 856 857 858 859 860 861 862 794 830 831 795 863 832 864 833 836 865 837 866 832 834 835 837 867 778 838 840 841 839 779 802 868 838 839 869 803 870 871 872 873 872 871 874 875 876 875 874 877 842 806 878 879 807 843 846 845 880 881 848 847 854 882 883 884 885 855 882 886 887 888 889 885 886 890 891 892 893 889 850 854 894 895 855 851 857 896 858 859 897 860 898 862 830 831 863 899 900 864 832 837 865 901 902 832 866 867 837 903 838 904 840 841 905 839 838 868 906 907 869 839 870 908 871 873 871 908 909 874 876 874 909 877 872 873 910 911 876 875 912 842 878 879 843 913 846 880 914 915 881 847 854 883 894 895 884 855 882 887 883 884 888 885 886 891 887 888 892 889 896 916 858 859 917 897 918 898 830 831 899 919 920 900 832 837 901 921 832 902 922 923 903 837 838 906 904 905 907 839 908 924 873 876 925 909 873 926 910 911 927 876 912 878 928 929 879 913 914 880 930 931 881 915 896 932 916 917 933 897 934 918 830 831 919 935 936 920 832 837 921 937 938 912 928 929 913 939 940 832 922 923 837 941 924 942 873 876 943 925 926 873 944 945 876 927 914 930 946 947 931 915 932 948 916 917 949 933 950 920 936 937 921 951 952 936 832 837 937 953 938 928 954 955 929 939 956 832 940 941 837 957 958 938 954 955 939 959 942 960 873 876 961 943 946 930 962 963 931 947 873 964 944 945 965 876 948 966 916 917 967 949 968 950 936 937 951 969 968 936 970 971 937 969 972 952 832 837 953 973 974 958 975 976 959 977 978 832 956 957 837 979 958 954 975 976 955 959 960 980 873 876 981 961 942 982 960 961 983 943 946 962 984 985 963 947 873 986 964 965 987 876 984 962 988 989 963 985 966 990 916 917 991 967 992 968 970 971 969 993 994 972 832 837 973 995 992 970 996 997 971 993 974 975 998 999 976 977 1000 974 998 999 977 1001 1002 832 978 979 837 1003 960 1004 1005 1006 1007 961 980 1008 873 876 1009 981 960 982 1004 1007 983 961 1010 988 1011 1012 989 1013 873 1014 986 987 1015 876 984 988 1010 1013 989 985 1016 994 832 837 995 1017 1018 996 1019 1020 997 1021 1018 992 996 997 993 1021 998 1022 1000 1001 1023 999 1000 1022 1024 1025 1023 1001 1026 832 1002 1003 837 1027 1005 1004 1028 1029 1007 1006 1008 1030 873 876 1031 1009 1005 1028 1032 1033 1029 1006 1010 1011 1034 1035 1012 1013 1034 1011 1036 1037 1012 1035 873 1038 1014 1015 1039 876 1040 1019 1041 1042 1020 1043 1044 1016 832 837 1017 1045 1040 1018 1019 1020 1021 1043 1022 1046 1024 1025 1047 1023 1048 832 1026 1027 837 1049 1024 1046 1050 1051 1047 1025 1030 1052 873 876 1053 1031 1032 1054 1055 1056 1057 1033 1032 1028 1054 1057 1029 1033 1036 1058 1034 1035 1059 1037 1036 1060 1058 1059 1061 1037 873 1062 1038 1039 1063 876 1064 1040 1041 1042 1043 1065 1066 1044 832 837 1045 1067 1064 1041 1068 1069 1042 1065 1050 1070 1071 1072 1073 1051 1074 832 1048 1049 837 1075 1046 1070 1050 1051 1073 1047 1055 1076 1077 1078 1079 1056 1052 1080 873 876 1081 1053 1055 1054 1076 1079 1057 1056 1060 1082 1058 1059 1083 1061 873 1084 1062 1063 1085 876 1060 1086 1082 1083 1087 1061 1074 1066 832 837 1067 1075 1088 1068 1089 1090 1069 1091 1088 1064 1068 1069 1065 1091 1070 1092 1071 1072 1093 1073 1092 1094 1071 1072 1095 1093 1077 1076 1096 1097 1079 1078 1080 1098 873 876 1099 1081 1077 1096 1100 1101 1097 1078 1086 1102 1103 1104 1105 1087 873 1106 1084 1085 1107 876 1086 1103 1082 1083 1104 1087 1108 1089 1094 1095 1090 1109 1108 1088 1089 1090 1091 1109 1092 1108 1094 1095 1109 1093 1098 1106 873 876 1107 1099 1110 1100 1111 1112 1101 1113 1100 1096 1111 1112 1097 1101 1103 1102 1114 1115 1105 1104 1102 1116 1114 1115 1117 1105 1116 1110 1118 1119 1113 1117 1118 1110 1111 1112 1113 1119 1114 1116 1118 1119 1117 1115</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1493\">\r\n            <mesh>\r\n                <source id=\"ID1494\">\r\n                    <float_array count=\"438\" id=\"ID1497\">-0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.2027863264083862 -1.073487997055054 0.3571899831295013 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.2027863264083862 -1.073487997055054 0.3571899831295013 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.001449317671358585 -1.071282982826233 0.3571899831295013 -0.001449317671358585 -1.071282982826233 0.3571899831295013 -0.5202267169952393 -1.066875219345093 0.3566815555095673 -0.5202267169952393 -1.066875219345093 0.3566815555095673 0.1998874694108963 -1.073487997055054 0.3571899831295013 0.1998874694108963 -1.073487997055054 0.3571899831295013 -0.2034463435411453 -1.0250403881073 0.4070454835891724 -0.2034463435411453 -1.0250403881073 0.4070454835891724 -0.5110751390457153 -1.023176193237305 0.4070454835891724 -0.5110751390457153 -1.023176193237305 0.4070454835891724 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.5227118730545044 -1.09248673915863 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.2005475461483002 -1.0250403881073 0.4070454835891724 0.2005475461483002 -1.0250403881073 0.4070454835891724 -0.001449264585971832 -1.0250403881073 0.4070454835891724 -0.001449264585971832 -1.0250403881073 0.4070454835891724 -0.5803182721138001 -1.014520287513733 0.4069845676422119 -0.5803182721138001 -1.014520287513733 0.4069845676422119 -0.6076786518096924 -1.055238604545593 0.3565012812614441 -0.6076786518096924 -1.055238604545593 0.3565012812614441 0.5173282623291016 -1.066875219345093 0.3566815555095673 0.5173282623291016 -1.066875219345093 0.3566815555095673 0.5081762075424194 -1.023176193237305 0.4070454835891724 0.5081762075424194 -1.023176193237305 0.4070454835891724 -0.2034463435411453 -0.9802029728889465 0.4227888584136963 -0.2034463435411453 -0.9802029728889465 0.4227888584136963 -0.5032289624214172 -0.9798094630241394 0.4227888584136963 -0.5032289624214172 -0.9798094630241394 0.4227888584136963 -0.5651706457138062 -0.9790123105049133 0.4227888584136963 -0.5651706457138062 -0.9790123105049133 0.4227888584136963 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.6228487491607666 -1.078431725502014 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5003302693367004 -0.9798094630241394 0.4227888584136963 0.5003302693367004 -0.9798094630241394 0.4227888584136963 0.2005475461483002 -0.9802029728889465 0.4227888584136963 0.2005475461483002 -0.9802029728889465 0.4227888584136963 -0.001449264585971832 -0.9774380326271057 0.4227888584136963 -0.001449264585971832 -0.9774380326271057 0.4227888584136963 -0.5889738202095032 -0.9703580737113953 0.4228299856185913 -0.5889738202095032 -0.9703580737113953 0.4228299856185913 -0.6072395443916321 -1.003041625022888 0.4070454835891724 -0.6072395443916321 -1.003041625022888 0.4070454835891724 -0.6396746635437012 -1.03993558883667 0.3565011620521545 -0.6396746635437012 -1.03993558883667 0.3565011620521545 0.6047801375389099 -1.055238604545593 0.3565012812614441 0.6047801375389099 -1.055238604545593 0.3565012812614441 0.5774192214012146 -1.014520287513733 0.4069845676422119 0.5774192214012146 -1.014520287513733 0.4069845676422119 0.5622721910476685 -0.9790123105049133 0.4227888584136963 0.5622721910476685 -0.9790123105049133 0.4227888584136963 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.6555055379867554 -1.058401465415955 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.2032903134822846 -0.9188514351844788 0.4277473092079163 0.2032903134822846 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.6052019596099854 -0.9562928080558777 0.4228299856185913 -0.6052019596099854 -0.9562928080558777 0.4228299856185913 -0.6279228329658508 -0.9917994141578674 0.4070454835891724 -0.6279228329658508 -0.9917994141578674 0.4070454835891724 -0.6603804230690002 -1.012173652648926 0.3565012216567993 -0.6603804230690002 -1.012173652648926 0.3565012216567993 0.636775553226471 -1.03993558883667 0.3565011620521545 0.636775553226471 -1.03993558883667 0.3565011620521545 0.6043407917022705 -1.003041625022888 0.4070454835891724 0.6043407917022705 -1.003041625022888 0.4070454835891724 0.5860748887062073 -0.9703580737113953 0.4228299856185913 0.5860748887062073 -0.9703580737113953 0.4228299856185913 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.683056652545929 -1.024173378944397 0.3421223759651184 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.6526064276695252 -1.058401465415955 0.3392031490802765 -0.6355372071266174 -0.8487778306007385 0.4070375561714172 -0.6355372071266174 -0.8487778306007385 0.4070375561714172 -0.6531206369400024 -0.8487778306007385 0.3929504156112671 -0.6531206369400024 -0.8487778306007385 0.3929504156112671 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.6910825967788696 -0.8380230665206909 0.352030873298645 0.6574813723564148 -1.012173652648926 0.3565012216567993 0.6574813723564148 -1.012173652648926 0.3565012216567993 0.6250237822532654 -0.9917994141578674 0.4070454835891724 0.6250237822532654 -0.9917994141578674 0.4070454835891724 0.602303683757782 -0.9562928080558777 0.4228299856185913 0.602303683757782 -0.9562928080558777 0.4228299856185913 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6718029379844666 -0.8377653956413269 0.3578441739082336 -0.6718029379844666 -0.8377653956413269 0.3578441739082336 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6502217650413513 -0.8487778306007385 0.3929504156112671 0.6502217650413513 -0.8487778306007385 0.3929504156112671 0.6326382160186768 -0.8487778306007385 0.4070375561714172 0.6326382160186768 -0.8487778306007385 0.4070375561714172 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 0.6689043045043945 -0.8377653956413269 0.3578441739082336 0.6689043045043945 -0.8377653956413269 0.3578441739082336 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"146\" source=\"#ID1497\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1495\">\r\n                    <float_array count=\"438\" id=\"ID1498\">-0.005662748884652038 -0.3003436078411413 0.9538142641542096 -0.004958250870822625 -0.663702973508031 0.7479797983267328 -1.07869099120766e-009 -0.2576574119967494 0.9662363365363245 1.07869099120766e-009 0.2576574119967494 -0.9662363365363245 0.004958250870822625 0.663702973508031 -0.7479797983267328 0.005662748884652038 0.3003436078411413 -0.9538142641542096 -2.372597894113113e-009 -0.6365373962141622 0.7712458383815724 2.372597894113113e-009 0.6365373962141622 -0.7712458383815724 -0.05062296754243888 -0.658588521188452 0.7507985581472603 0.05062296754243888 0.658588521188452 -0.7507985581472603 0.004958239794221573 -0.6637029536472272 0.7479798160231928 -0.004958239794221573 0.6637029536472272 -0.7479798160231928 0.0003101519018471342 -0.5400639855969268 0.8416239036927126 -0.0003101519018471342 0.5400639855969268 -0.8416239036927126 -0.03373737267444298 -0.571531831791014 0.8198860621663439 0.03373737267444298 0.571531831791014 -0.8198860621663439 -0.01969785890737417 -0.2616664220722393 0.9649573451269117 0.01969785890737417 0.2616664220722393 -0.9649573451269117 0.005662748672241021 -0.3003435921545434 0.9538142690949744 -0.005662748672241021 0.3003435921545434 -0.9538142690949744 -0.0003101511477583259 -0.5400639863074525 0.8416239032370512 0.0003101511477583259 0.5400639863074525 -0.8416239032370512 -1.047140219661615e-009 -0.5417635515779979 0.8405309358861184 1.047140219661615e-009 0.5417635515779979 -0.8405309358861184 -0.1456617391791251 -0.5690161591534998 0.8093227220098986 0.1456617391791251 0.5690161591534998 -0.8093227220098986 -0.1803519318601171 -0.6134749525573249 0.7688443686853091 0.1803519318601171 0.6134749525573249 -0.7688443686853091 0.05062320118724138 -0.6585884825921694 0.750798576249649 -0.05062320118724138 0.6585884825921694 -0.750798576249649 0.03373728297714376 -0.571531725438843 0.8198861399939744 -0.03373728297714376 0.571531725438843 -0.8198861399939744 -0.001154009035315631 -0.2065151984626948 0.9784427122049916 0.001154009035315631 0.2065151984626948 -0.9784427122049916 -0.001686019370673894 -0.1977884537775508 0.9802432784217228 0.001686019370673894 0.1977884537775508 -0.9802432784217228 -0.04843642768347421 -0.2158089521412255 0.975233514933203 0.04843642768347421 0.2158089521412255 -0.975233514933203 -0.0771747638042234 -0.2197377985821765 0.9725015967627102 0.0771747638042234 0.2197377985821765 -0.9725015967627102 0.01969778337526758 -0.2616666146433107 0.9649572944494539 -0.01969778337526758 0.2616666146433107 -0.9649572944494539 0.001686017598503319 -0.1977884587910386 0.9802432774131753 -0.001686017598503319 0.1977884587910386 -0.9802432774131753 0.001154004466121158 -0.2065152029394589 0.9784427112654918 -0.001154004466121158 0.2065152029394589 -0.9784427112654918 -1.213845109435125e-009 -0.183784508905539 0.9829665580712041 1.213845109435125e-009 0.183784508905539 -0.9829665580712041 -0.1145861315951627 -0.1902762129514024 0.9750205029797725 0.1145861315951627 0.1902762129514024 -0.9750205029797725 -0.2521009452976371 -0.5079576817782719 0.8236650453324347 0.2521009452976371 0.5079576817782719 -0.8236650453324347 -0.4123732310645685 -0.5040732699400515 0.7588533829622899 0.4123732310645685 0.5040732699400515 -0.7588533829622899 0.1803539988353248 -0.6134741762408932 0.7688445032577559 -0.1803539988353248 0.6134741762408932 -0.7688445032577559 0.1456605441840856 -0.569016061049941 0.8093230060582769 -0.1456605441840856 0.569016061049941 -0.8093230060582769 0.04843747151955567 -0.2158095166861311 0.9752333381609197 -0.04843747151955567 0.2158095166861311 -0.9752333381609197 0.009401250144782504 0.3008855372065615 0.9536139208273095 -0.009401250144782504 -0.3008855372065615 -0.9536139208273095 0.05052979851625714 0.2432052738812564 0.9686578003703111 -0.05052979851625714 -0.2432052738812564 -0.9686578003703111 0.1138664131417217 0.232912953725105 0.9658084675261892 -0.1138664131417217 -0.232912953725105 -0.9658084675261892 -0.1091464427993047 -0.1854747968576843 0.9765685607036809 0.1091464427993047 0.1854747968576843 -0.9765685607036809 0.07717520035315093 -0.2197372978899333 0.9725016752512469 -0.07717520035315093 0.2197372978899333 -0.9725016752512469 -0.05052997868541467 0.2432047259207096 0.9686579285505717 0.05052997868541467 -0.2432047259207096 -0.9686579285505717 -0.009401248097297095 0.3008855179818873 0.9536139269132895 0.009401248097297095 -0.3008855179818873 -0.9536139269132895 1.715447736761821e-009 0.2481218125350861 0.9687288403595217 -1.715447736761821e-009 -0.2481218125350861 -0.9687288403595217 -0.2784405634250393 -0.0765847600931651 0.9573952303834706 0.2784405634250393 0.0765847600931651 -0.9573952303834706 -0.5315739033317701 -0.3193684087267559 0.7844953822706452 0.5315739033317701 0.3193684087267559 -0.7844953822706452 -0.5943067986228019 -0.2534906281099632 0.7632443452598471 0.5943067986228019 0.2534906281099632 -0.7632443452598471 0.4123749716343679 -0.5040727249996686 0.7588527990862015 -0.4123749716343679 0.5040727249996686 -0.7588527990862015 0.2521017102364427 -0.5079580221528142 0.8236646012950064 -0.2521017102364427 0.5079580221528142 -0.8236646012950064 0.1145832480102491 -0.1902760513495413 0.9750208733961794 -0.1145832480102491 0.1902760513495413 -0.9750208733961794 -0.1138663683946042 0.2329141275011871 0.9658081897348899 0.1138663683946042 -0.2329141275011871 -0.9658081897348899 0.1030468669472135 0.2216429896176415 0.9696678443496605 -0.1030468669472135 -0.2216429896176415 -0.9696678443496605 -0.1228183054958481 -0.111129705670554 0.9861875340688021 0.1228183054958481 0.111129705670554 -0.9861875340688021 0.1091488696533336 -0.1854757037912854 0.9765681172127867 -0.1091488696533336 0.1854757037912854 -0.9765681172127867 -0.4531054072318778 0.04326566030068675 0.8904064086561708 0.4531054072318778 -0.04326566030068675 -0.8904064086561708 -0.76979622301074 -0.018849408134265 0.6380113438265709 0.76979622301074 0.018849408134265 -0.6380113438265709 -0.2476666920797232 -0.02438408932794591 0.9685383966688849 0.2476666920797232 0.02438408932794591 -0.9685383966688849 0.5943031912732282 -0.2534917515070076 0.7632467810350505 -0.5943031912732282 0.2534917515070076 -0.7632467810350505 0.5315755300349619 -0.3193689405572947 0.784494063505493 -0.5315755300349619 0.3193689405572947 -0.784494063505493 0.2784462538371627 -0.07658606360023611 0.9573934711424926 -0.2784462538371627 0.07658606360023611 -0.9573934711424926 0.1114224209044949 0.1676835182573328 0.979524007783691 -0.1114224209044949 -0.1676835182573328 -0.979524007783691 -0.6323090853057036 -0.03335460635571474 0.7739978623192184 0.6323090853057036 0.03335460635571474 -0.7739978623192184 0.1228143137468341 -0.1111288314674064 0.9861881296971603 -0.1228143137468341 0.1111288314674064 -0.9861881296971603 -0.1030444216764338 0.2216419275986339 0.9696683469577272 0.1030444216764338 -0.2216419275986339 -0.9696683469577272 -0.5736763948085086 0.3276465503718861 0.7506950992706128 0.5736763948085086 -0.3276465503718861 -0.7506950992706128 -0.2441943401385535 0.4431550853429167 0.8625443145595528 0.2441943401385535 -0.4431550853429167 -0.8625443145595528 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 -0.1422524387013631 0.08650520172209436 0.9860431500489898 0.1422524387013631 -0.08650520172209436 -0.9860431500489898 0.2476665877536164 -0.02438400563172669 0.9685384254534418 -0.2476665877536164 0.02438400563172669 -0.9685384254534418 0.7697936430402944 -0.01885005181698557 0.63801443767461 -0.7697936430402944 0.01885005181698557 -0.63801443767461 0.4531049316146203 0.04326603676424462 0.8904066323928778 -0.4531049316146203 -0.04326603676424462 -0.8904066323928778 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 0.6323069370255796 -0.03335520396877564 0.7739995915745248 -0.6323069370255796 0.03335520396877564 -0.7739995915745248 -0.1114237979693154 0.1676831763354625 0.9795239096725221 0.1114237979693154 -0.1676831763354625 -0.9795239096725221 0.1422539534903038 0.08650680782154999 0.9860427906114946 -0.1422539534903038 -0.08650680782154999 -0.9860427906114946 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 0.5736724490507156 0.3276483942267879 0.7506973098131908 -0.5736724490507156 -0.3276483942267879 -0.7506973098131908 0.2441976709347891 0.4431556628268767 0.8625430748748124 -0.2441976709347891 -0.4431556628268767 -0.8625430748748124 -0.1983818612641697 0.4627947061566479 0.8639824634069522 0.1983818612641697 -0.4627947061566479 -0.8639824634069522</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"146\" source=\"#ID1498\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1496\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1494\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1495\"/>\r\n                </vertices>\r\n                <triangles count=\"220\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1496\"/>\r\n                    <p>0 1 2 3 4 5 2 1 6 7 4 3 8 1 0 5 4 9 2 6 10 11 7 3 6 1 12 13 4 7 1 8 14 15 9 4 16 8 0 5 9 17 18 2 10 11 3 19 10 6 20 21 7 11 22 6 12 13 7 23 12 1 14 15 4 13 8 24 14 15 25 9 16 26 8 9 27 17 18 10 28 29 11 19 30 10 20 21 11 31 20 6 22 23 7 21 12 32 22 23 33 13 14 34 12 13 35 15 24 36 14 15 37 25 8 26 24 25 27 9 38 26 16 17 27 39 18 28 40 41 29 19 28 10 30 31 11 29 20 42 30 31 43 21 20 22 44 45 23 21 22 32 46 47 33 23 12 34 32 33 35 13 14 36 34 35 37 15 24 48 36 37 49 25 26 50 24 25 51 27 38 52 26 27 53 39 40 28 54 55 29 41 56 28 30 31 29 57 30 42 58 59 43 31 20 44 42 43 45 21 22 46 44 45 47 23 32 60 46 47 61 33 34 62 32 33 63 35 36 62 34 35 63 37 50 48 24 25 49 51 36 48 64 65 49 37 26 52 50 51 53 27 66 52 38 39 53 67 40 54 68 69 55 41 54 28 56 57 29 55 30 58 56 57 59 31 42 70 58 59 71 43 42 44 70 71 45 43 44 46 72 73 47 45 62 60 32 33 61 63 46 60 74 75 61 47 36 64 62 63 65 37 50 76 48 49 77 51 48 76 64 65 77 49 52 78 50 51 79 53 66 80 52 53 81 67 68 54 82 83 55 69 56 84 54 55 85 57 56 58 86 87 59 57 70 88 58 59 89 71 44 72 70 71 73 45 46 74 72 73 75 47 50 78 76 77 79 51 76 90 64 65 91 77 52 80 78 79 81 53 92 80 66 67 81 93 68 82 94 95 83 69 54 84 82 83 85 55 56 86 84 85 87 57 58 88 86 87 89 59 78 96 76 77 97 79 76 96 90 91 97 77 78 80 98 99 81 79 92 100 80 81 101 93 94 82 102 103 83 95 84 104 82 83 105 85 86 106 84 85 107 87 86 88 106 107 89 87 98 96 78 79 97 99 96 108 90 91 109 97 98 80 110 111 81 99 100 110 80 81 111 101 94 102 112 113 103 95 102 82 104 105 83 103 84 106 104 105 107 85 88 114 106 107 115 89 98 116 96 97 117 99 96 118 108 109 119 97 98 110 120 121 111 99 100 122 110 111 123 101 112 102 124 125 103 113 102 104 126 127 105 103 104 106 128 129 107 105 106 114 128 129 115 107 116 98 120 121 99 117 116 118 96 97 119 117 118 130 108 109 131 119 122 120 110 111 121 123 102 132 124 125 133 103 102 126 132 133 127 103 104 128 126 127 129 105 114 134 128 129 135 115 124 132 136 137 133 125 132 126 138 139 127 133 126 128 140 141 129 127 128 134 142 143 135 129 132 138 136 137 139 133 138 126 140 141 127 139 128 142 140 141 143 129 134 144 142 143 145 135</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1499\">\r\n            <mesh>\r\n                <source id=\"ID1500\">\r\n                    <float_array count=\"768\" id=\"ID1503\">-0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9008265137672424 0.407900333404541 -0.001449264585971832 -0.9008265137672424 0.407900333404541 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 0.2032903134822846 -0.9188514351844788 0.4277473092079163 0.2032903134822846 -0.9188514351844788 0.4277473092079163 -0.2058618664741516 -0.8905866146087647 0.4041489362716675 -0.2058618664741516 -0.8905866146087647 0.4041489362716675 0.2029633522033691 -0.8905866146087647 0.4041489362716675 0.2029633522033691 -0.8905866146087647 0.4041489362716675 -0.001449264585971832 -0.8642953038215637 0.2873175442218781 -0.001449264585971832 -0.8642953038215637 0.2873175442218781 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 -0.2091975510120392 -0.8604845404624939 0.28980353474617 -0.2091975510120392 -0.8604845404624939 0.28980353474617 -0.5089024901390076 -0.88034588098526 0.4033911228179932 -0.5089024901390076 -0.88034588098526 0.4033911228179932 0.5060030221939087 -0.88034588098526 0.4033911228179932 0.5060030221939087 -0.88034588098526 0.4033911228179932 0.2062989473342896 -0.8604845404624939 0.28980353474617 0.2062989473342896 -0.8604845404624939 0.28980353474617 -0.2169111371040344 -0.850664496421814 0.2308530360460281 -0.2169111371040344 -0.850664496421814 0.2308530360460281 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.5592859983444214 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.2140122205018997 -0.850664496421814 0.2308530360460281 0.2140122205018997 -0.850664496421814 0.2308530360460281 -0.001449264585971832 -0.8544549345970154 0.226887509226799 -0.001449264585971832 -0.8544549345970154 0.226887509226799 -0.4991267025470734 -0.8247990608215332 0.2303560227155685 -0.4991267025470734 -0.8247990608215332 0.2303560227155685 -0.4822732210159302 -0.8412036895751953 0.3024190962314606 -0.4822732210159302 -0.8412036895751953 0.3024190962314606 -0.5360015034675598 -0.8629845380783081 0.4011168479919434 -0.5360015034675598 -0.8629845380783081 0.4011168479919434 0.5331027507781982 -0.8629845380783081 0.4011168479919434 0.5331027507781982 -0.8629845380783081 0.4011168479919434 0.4793746471405029 -0.8412036895751953 0.3024190962314606 0.4793746471405029 -0.8412036895751953 0.3024190962314606 0.4962282776832581 -0.8247990608215332 0.2303560227155685 0.4962282776832581 -0.8247990608215332 0.2303560227155685 -0.2233303785324097 -0.8408377170562744 0.155529111623764 -0.2233303785324097 -0.8408377170562744 0.155529111623764 -0.5103840827941895 -0.8105360865592957 0.1526265740394592 -0.5103840827941895 -0.8105360865592957 0.1526265740394592 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5074851512908936 -0.8105360865592957 0.1526265740394592 0.5074851512908936 -0.8105360865592957 0.1526265740394592 0.2204316407442093 -0.8408377170562744 0.155529111623764 0.2204316407442093 -0.8408377170562744 0.155529111623764 -0.001449264585971832 -0.8478066325187683 0.1633798182010651 -0.001449264585971832 -0.8478066325187683 0.1633798182010651 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5080633759498596 -0.8316804766654968 0.2988536059856415 0.5080633759498596 -0.8316804766654968 0.2988536059856415 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.5774928331375122 -0.7780205607414246 0.1524880826473236 -0.2308849394321442 -0.8047881722450256 0.0218891017138958 -0.2308849394321442 -0.8047881722450256 0.0218891017138958 -0.5296268463134766 -0.7695713043212891 0.02064040675759316 -0.5296268463134766 -0.7695713043212891 0.02064040675759316 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5267279148101807 -0.7695713043212891 0.02064040675759316 0.5267279148101807 -0.7695713043212891 0.02064040675759316 0.2279863953590393 -0.8047881722450256 0.0218891017138958 0.2279863953590393 -0.8047881722450256 0.0218891017138958 -0.001449264585971832 -0.811660647392273 0.02170788124203682 -0.001449264585971832 -0.811660647392273 0.02170788124203682 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5562193989753723 -0.8102383017539978 0.2943964898586273 -0.2359215766191483 -0.7559671401977539 -0.10956010222435 -0.2359215766191483 -0.7559671401977539 -0.10956010222435 -0.5445342063903809 -0.7176461219787598 -0.1151830404996872 -0.5445342063903809 -0.7176461219787598 -0.1151830404996872 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5416357517242432 -0.7176461219787598 -0.1151830404996872 0.5416357517242432 -0.7176461219787598 -0.1151830404996872 0.2330227941274643 -0.7559671401977539 -0.10956010222435 0.2330227941274643 -0.7559671401977539 -0.10956010222435 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449264585971832 -0.7628392577171326 -0.1150786280632019 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449264585971832 -0.7628392577171326 -0.1150786280632019 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.596644401550293 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 -0.2399774938821793 -0.6989214420318604 -0.2486914843320847 -0.2399774938821793 -0.6989214420318604 -0.2486914843320847 -0.5503517985343933 -0.6690559387207031 -0.2467941492795944 -0.5503517985343933 -0.6690559387207031 -0.2467941492795944 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.5474526286125183 -0.6690559387207031 -0.2467941492795944 0.5474526286125183 -0.6690559387207031 -0.2467941492795944 0.2370787858963013 -0.6989214420318604 -0.2486914843320847 0.2370787858963013 -0.6989214420318604 -0.2486914843320847 -0.001449264585971832 -0.7057934999465942 -0.2469800859689713 -0.001449264585971832 -0.7057934999465942 -0.2469800859689713 0.6237722635269165 -0.666684091091156 0.3805446624755859 0.6237722635269165 -0.666684091091156 0.3805446624755859 -0.2416535615921021 -0.6776809096336365 -0.2738118767738342 -0.2416535615921021 -0.6776809096336365 -0.2738118767738342 -0.5451606512069702 -0.6392850279808044 -0.2739138007164002 -0.5451606512069702 -0.6392850279808044 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5422620177268982 -0.6392850279808044 -0.2739138603210449 0.5422620177268982 -0.6392850279808044 -0.2739138603210449 0.2387548983097076 -0.6776809096336365 -0.2738119065761566 0.2387548983097076 -0.6776809096336365 -0.2738119065761566 -0.001449264585971832 -0.684722900390625 -0.2738119065761566 -0.001449264585971832 -0.684722900390625 -0.2738119065761566 0.6344869732856751 -0.6666867136955261 0.380647212266922 0.6344869732856751 -0.6666867136955261 0.380647212266922 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.6099106073379517 -0.6618664264678955 0.2912401556968689 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.4858808219432831 -0.459694117307663 -0.2738118767738342 -0.4858808219432831 -0.459694117307663 -0.2738118767738342 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.4829820096492767 -0.459694117307663 -0.2738119065761566 0.4829820096492767 -0.459694117307663 -0.2738119065761566 0.08564969897270203 -0.4586217701435089 -0.2738119065761566 0.08564969897270203 -0.4586217701435089 -0.2738119065761566 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 -0.08879685401916504 -0.07529165595769882 -0.2738118767738342 -0.08879685401916504 -0.07529165595769882 -0.2738118767738342 -0.4861236810684204 -0.07529165595769882 -0.2738118767738342 -0.4861236810684204 -0.07529165595769882 -0.2738118767738342 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.4832248687744141 -0.07529165595769882 -0.2738119065761566 0.4832248687744141 -0.07529165595769882 -0.2738119065761566 0.0858980268239975 -0.07529165595769882 -0.2738119065761566 0.0858980268239975 -0.07529165595769882 -0.2738119065761566 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 0.6728364825248718 -0.6232461929321289 0.151445209980011 0.6728364825248718 -0.6232461929321289 0.151445209980011 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 -0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 -0.1051686182618141 0.3285070955753326 -0.2738118767738342 -0.1051686182618141 0.3285070955753326 -0.2738118767738342 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.6822202205657959 -0.5696841478347778 0.01786315068602562 0.6822202205657959 -0.5696841478347778 0.01786315068602562 0.1022694855928421 0.3285070955753326 -0.2738119065761566 0.1022694855928421 0.3285070955753326 -0.2738119065761566 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.6822202205657959 -0.5125510692596436 -0.1188254952430725 0.6822202205657959 -0.5125510692596436 -0.1188254952430725 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"256\" source=\"#ID1503\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1501\">\r\n                    <float_array count=\"768\" id=\"ID1504\">1.715447736761821e-009 0.2481218125350861 0.9687288403595217 0.009401250144782504 0.3008855372065615 0.9536139208273095 2.035422321482497e-009 0.7939846868735797 0.6079377575132702 -2.035422321482497e-009 -0.7939846868735797 -0.6079377575132702 -0.009401250144782504 -0.3008855372065615 -0.9536139208273095 -1.715447736761821e-009 -0.2481218125350861 -0.9687288403595217 -0.009401248097297095 0.3008855179818873 0.9536139269132895 0.009401248097297095 -0.3008855179818873 -0.9536139269132895 0.02583369656101249 0.8431526023843547 0.5370533578840037 -0.02583369656101249 -0.8431526023843547 -0.5370533578840037 -0.02583373351476824 0.843152589493277 0.5370533763449116 0.02583373351476824 -0.843152589493277 -0.5370533763449116 -8.169983004136007e-009 0.9756019101559423 0.219547063064111 8.169983004136007e-009 -0.9756019101559423 -0.219547063064111 0.05052979851625714 0.2432052738812564 0.9686578003703111 -0.05052979851625714 -0.2432052738812564 -0.9686578003703111 -0.05052997868541467 0.2432047259207096 0.9686579285505717 0.05052997868541467 -0.2432047259207096 -0.9686579285505717 0.04201646249544194 0.9757956725274732 0.2146099307022518 -0.04201646249544194 -0.9757956725274732 -0.2146099307022518 0.2080929561113531 0.742062843676496 0.6372127255882378 -0.2080929561113531 -0.742062843676496 -0.6372127255882378 -0.208089506830558 0.7420653365720928 0.6372109489055893 0.208089506830558 -0.7420653365720928 -0.6372109489055893 -0.04201651599233937 0.975795648809786 0.2146100280689472 0.04201651599233937 -0.975795648809786 -0.2146100280689472 0.05801343365966621 0.9880929435038131 0.1425018474020108 -0.05801343365966621 -0.9880929435038131 -0.1425018474020108 0.1138664131417217 0.232912953725105 0.9658084675261892 -0.1138664131417217 -0.232912953725105 -0.9658084675261892 -0.1138663683946042 0.2329141275011871 0.9658081897348899 0.1138663683946042 -0.2329141275011871 -0.9658081897348899 -0.05801332090299661 0.9880929317009803 0.142501975145496 0.05801332090299661 -0.9880929317009803 -0.142501975145496 -1.571396074608873e-008 0.9908900542609914 0.134673309778327 1.571396074608873e-008 -0.9908900542609914 -0.134673309778327 0.227388534602158 0.9595246946824242 0.1661529856068916 -0.227388534602158 -0.9595246946824242 -0.1661529856068916 0.1755717558524631 0.9424091495213978 0.2846744692543377 -0.1755717558524631 -0.9424091495213978 -0.2846744692543377 0.4545401320225986 0.6272147484516137 0.6324515220201922 -0.4545401320225986 -0.6272147484516137 -0.6324515220201922 -0.4545377758904722 0.6272169812874293 0.6324510010057913 0.4545377758904722 -0.6272169812874293 -0.6324510010057913 -0.1755711219142102 0.9424094696764631 0.2846738003644047 0.1755711219142102 -0.9424094696764631 -0.2846738003644047 -0.2273888042380214 0.9595245256886391 0.1661535925256964 0.2273888042380214 -0.9595245256886391 -0.1661535925256964 0.0638410034790694 0.9793792180325037 0.1916785683398832 -0.0638410034790694 -0.9793792180325037 -0.1916785683398832 0.2571540481453198 0.9471230925857829 0.1919105078238738 -0.2571540481453198 -0.9471230925857829 -0.1919105078238738 0.1030468669472135 0.2216429896176415 0.9696678443496605 -0.1030468669472135 -0.2216429896176415 -0.9696678443496605 -0.1030444216764338 0.2216419275986339 0.9696683469577272 0.1030444216764338 -0.2216419275986339 -0.9696683469577272 -0.257153388496056 0.947123103862737 0.1919113360758331 0.257153388496056 -0.947123103862737 -0.1919113360758331 -0.06384107734919033 0.9793792351847296 0.1916784560973631 0.06384107734919033 -0.9793792351847296 -0.1916784560973631 -8.739514482084267e-009 0.984322838181471 0.1763761611850463 8.739514482084267e-009 -0.984322838181471 -0.1763761611850463 0.345541571839725 0.9120028016585794 0.2210246861720067 -0.345541571839725 -0.9120028016585794 -0.2210246861720067 0.7923653450499429 0.6086502283222469 0.04125602413176856 -0.7923653450499429 -0.6086502283222469 -0.04125602413176856 0.6550020983156387 0.4876283129803074 0.5772268874386309 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.6550028074066617 0.4876263453328185 0.57722774502509 0.6550028074066617 -0.4876263453328185 -0.57722774502509 -0.345541217123833 0.9120031117774368 0.221023961092123 0.345541217123833 -0.9120031117774368 -0.221023961092123 -0.7923653544809333 0.608650103731723 0.0412576810505382 0.7923653544809333 -0.608650103731723 -0.0412576810505382 0.06889339436928037 0.9515744320927353 0.2995993998653323 -0.06889339436928037 -0.9515744320927353 -0.2995993998653323 0.2570777685290928 0.922056222251064 0.289349864240851 -0.2570777685290928 -0.922056222251064 -0.289349864240851 0.7244552439627415 0.6850948378838646 0.07622114273458253 -0.7244552439627415 -0.6850948378838646 -0.07622114273458253 0.7968674597543884 0.5870317053962028 0.1428146646679311 -0.7968674597543884 -0.5870317053962028 -0.1428146646679311 0.1114224209044949 0.1676835182573328 0.979524007783691 -0.1114224209044949 -0.1676835182573328 -0.979524007783691 -0.1114237979693154 0.1676831763354625 0.9795239096725221 0.1114237979693154 -0.1676831763354625 -0.9795239096725221 -0.7244565686574949 0.6850933441356621 0.07622197812982619 0.7244565686574949 -0.6850933441356621 -0.07622197812982619 -0.7968685932815799 0.5870304906792523 0.1428133329010719 0.7968685932815799 -0.5870304906792523 -0.1428133329010719 -0.2570767790947514 0.9220564773034056 0.2893499305565886 0.2570767790947514 -0.9220564773034056 -0.2893499305565886 -0.06889346903278142 0.9515744364678358 0.2995993688003195 0.06889346903278142 -0.9515744364678358 -0.2995993688003195 -1.062354948045608e-008 0.9560443774783194 0.2932220119501479 1.062354948045608e-008 -0.9560443774783194 -0.2932220119501479 0.7476117988063761 0.6572838630161918 0.09515525053304569 -0.7476117988063761 -0.6572838630161918 -0.09515525053304569 0.8216288131614381 0.2706515877970226 0.5016710191010413 -0.8216288131614381 -0.2706515877970226 -0.5016710191010413 -0.8216292782168875 0.2706545588897141 0.5016686545211001 0.8216292782168875 -0.2706545588897141 -0.5016686545211001 -0.7476141706463564 0.6572814401000713 0.09515335174725628 0.7476141706463564 -0.6572814401000713 -0.09515335174725628 0.0686384617992974 0.9314733218746919 0.3572761007925849 -0.0686384617992974 -0.9314733218746919 -0.3572761007925849 0.3044284030251505 0.8973732926014187 0.3194440814246603 -0.3044284030251505 -0.8973732926014187 -0.3194440814246603 0.8188535649683953 0.5430980693366506 0.1858045376769702 -0.8188535649683953 -0.5430980693366506 -0.1858045376769702 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 -0.1983818612641697 0.4627947061566479 0.8639824634069522 0.1983818612641697 -0.4627947061566479 -0.8639824634069522 -0.8188546049565538 0.5430968997890379 0.1858033728999071 0.8188546049565538 -0.5430968997890379 -0.1858033728999071 -0.3044293230567004 0.8973731718340767 0.3194435438942034 0.3044293230567004 -0.8973731718340767 -0.3194435438942034 -0.06863843041400655 0.9314732955013412 0.3572761755815422 0.06863843041400655 -0.9314732955013412 -0.3572761755815422 1.116069999838444e-008 0.9423171754854557 0.3347212882162006 -3.747649454434864e-008 0.9318290390368441 0.3628975640696287 -1.116069999838444e-008 -0.9423171754854557 -0.3347212882162006 3.747649454434864e-008 -0.9318290390368441 -0.3628975640696287 0.7753776474116275 0.4751149390666444 0.4159991569343728 -0.7753776474116275 -0.4751149390666444 -0.4159991569343728 -0.7753733229355523 0.4751248107874208 0.4159959425933109 0.7753733229355523 -0.4751248107874208 -0.4159959425933109 0.05864831235288941 0.8527161846489071 0.5190717521653139 -0.05864831235288941 -0.8527161846489071 -0.5190717521653139 0.3054264818168302 0.7913895422415095 0.5295443858976955 -0.3054264818168302 -0.7913895422415095 -0.5295443858976955 0.7904399506188402 0.4467527980245364 0.4190663693532726 -0.7904399506188402 -0.4467527980245364 -0.4190663693532726 -0.3839601059320404 0.8794258325261762 0.2813980137426312 0.3839601059320404 -0.8794258325261762 -0.2813980137426312 -0.7904401366226477 0.4467532877527571 0.4190654964299407 0.7904401366226477 -0.4467532877527571 -0.4190654964299407 -0.3054229704142912 0.7913907101155595 0.5295446658083733 0.3054229704142912 -0.7913907101155595 -0.5295446658083733 -0.05864834861013611 0.8527163737529747 0.5190714374138505 0.05864834861013611 -0.8527163737529747 -0.5190714374138505 9.520451530020358e-009 0.8593676434638604 0.5113582436681463 -9.520451530020358e-009 -0.8593676434638604 -0.5113582436681463 -0.08976430741077263 0.8138330291007455 0.5741238279846687 0.08976430741077263 -0.8138330291007455 -0.5741238279846687 0.03370352932777578 0.4328829088361045 0.9008198817457596 -0.03370352932777578 -0.4328829088361045 -0.9008198817457596 0.165091213986121 0.3819560318732822 0.9093153912588333 -0.165091213986121 -0.3819560318732822 -0.9093153912588333 0.4644031292697052 0.1881536417132338 0.8654062286779275 -0.4644031292697052 -0.1881536417132338 -0.8654062286779275 0.2441976709347891 0.4431556628268767 0.8625430748748124 -0.2441976709347891 -0.4431556628268767 -0.8625430748748124 0.2331018669884867 0.8320242126565701 0.5033877522940903 -0.2331018669884867 -0.8320242126565701 -0.5033877522940903 -0.4644038303505231 0.1881541816406321 0.8654057350670302 0.4644038303505231 -0.1881541816406321 -0.8654057350670302 -0.165092715159511 0.3819576415429155 0.9093144425710142 0.165092715159511 -0.3819576415429155 -0.9093144425710142 -0.03370352026973898 0.4328831985936684 0.9008197428435624 0.03370352026973898 -0.4328831985936684 -0.9008197428435624 4.846721671527672e-008 0.5015666720711498 0.8651189938196187 -4.846721671527672e-008 -0.5015666720711498 -0.8651189938196187 0.09447211453588736 0.7839513607472624 0.6135921149734847 -0.09447211453588736 -0.7839513607472624 -0.6135921149734847 -0.4543309600657438 0.8834859794272519 0.1141748785031492 0.4543309600657438 -0.8834859794272519 -0.1141748785031492 1.215795615369895e-007 -8.497444814096651e-008 0.9999999999999891 -1.215795615369895e-007 8.497444814096651e-008 -0.9999999999999891 -0.0002808496167795781 -0.0001564916449623308 0.9999999483169277 0.0002808496167795781 0.0001564916449623308 -0.9999999483169277 0.5736724490507156 0.3276483942267879 0.7506973098131908 -0.5736724490507156 -0.3276483942267879 -0.7506973098131908 -0.355210421201735 0.9270152150350377 0.1202844452255927 0.355210421201735 -0.9270152150350377 -0.1202844452255927 0.0002807284206540641 -0.0001565349119740308 0.9999999483441864 -0.0002807284206540641 0.0001565349119740308 -0.9999999483441864 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 0.2818142223592027 0.1785573489795022 0.9427078111490802 -0.2818142223592027 -0.1785573489795022 -0.9427078111490802 -0.03348084013298106 0.9726744552437342 0.2297464634337051 0.03348084013298106 -0.9726744552437342 -0.2297464634337051 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 -0.2818180752902821 0.1785579729115788 0.9427065411618766 0.2818180752902821 -0.1785579729115788 -0.9427065411618766 0.001011990533916156 -0.0008954261137955052 0.9999990870432002 -0.001011990533916156 0.0008954261137955052 -0.9999990870432002 0.002221217822754517 -0.002345727983024854 0.9999947818621923 -0.002221217822754517 0.002345727983024854 -0.9999947818621923 -0.4390785855880069 0.8722665560520438 0.2153161649090516 0.4390785855880069 -0.8722665560520438 -0.2153161649090516 0.3283493187707493 0.3306983436379725 0.8847741691402875 -0.3283493187707493 -0.3306983436379725 -0.8847741691402875 -0.002221262159606195 -0.002345712392918114 0.9999947818002793 0.002221262159606195 0.002345712392918114 -0.9999947818002793 -0.001011990290598944 -0.0008954263256683121 0.9999990870432569 0.001011990290598944 0.0008954263256683121 -0.9999990870432569 0.1362496104767762 0.3488194948181901 0.9272329824158057 -0.1362496104767762 -0.3488194948181901 -0.9272329824158057 -0.008441607087187315 0.9540781587225472 0.2994388189904235 0.008441607087187315 -0.9540781587225472 -0.2994388189904235 -0.136250489327595 0.3488184035330123 0.9272332638094212 0.136250489327595 -0.3488184035330123 -0.9272332638094212 0.4374558677757206 -0.004190114349567642 0.8992301188741004 -0.4374558677757206 0.004190114349567642 -0.8992301188741004 0.4245302778687223 0.4022424278976751 0.8111566262884677 -0.4245302778687223 -0.4022424278976751 -0.8111566262884677 -0.01296507097444566 0.9520060979013328 0.3058043434833871 0.01296507097444566 -0.9520060979013328 -0.3058043434833871 -0.3813913782069187 0.8843791144645131 0.2690988638556295 0.3813913782069187 -0.8843791144645131 -0.2690988638556295 -0.4374569246052411 -0.004190067454014929 0.899229604967305 0.4374569246052411 0.004190067454014929 -0.899229604967305 -0.4245302747465338 0.4022424534965067 0.8111566152283682 0.4245302747465338 -0.4022424534965067 -0.8111566152283682 0.003439997739732104 0.0001394725262926738 0.9999940734639207 -0.003439997739732104 -0.0001394725262926738 -0.9999940734639207 -0.01478300939640896 0.9790725836662425 0.202973738563131 0.01478300939640896 -0.9790725836662425 -0.202973738563131 -0.01238376079733685 0.9254422777560835 0.378686193318619 0.01238376079733685 -0.9254422777560835 -0.378686193318619 0.002610959995311266 0.9247620000521626 0.3805370233596553 -0.002610959995311266 -0.9247620000521626 -0.3805370233596553 -0.003439994610727402 0.0001394697970728227 0.9999940734750652 0.003439994610727402 -0.0001394697970728227 -0.9999940734750652 -0.008243773311861815 0.9182764608397499 0.3958539903413963 0.008243773311861815 -0.9182764608397499 -0.3958539903413963 0.809062268051393 -0.005296295934975697 0.5876990689671925 -0.809062268051393 0.005296295934975697 -0.5876990689671925 -0.384970124415974 0.9206201242962624 0.06524254783409289 0.384970124415974 -0.9206201242962624 -0.06524254783409289 -0.3135274238242752 0.882947604923759 0.3494339443578869 0.3135274238242752 -0.882947604923759 -0.3494339443578869 -0.2493540230310667 0.8484132149469607 0.4669235353905227 0.2493540230310667 -0.8484132149469607 -0.4669235353905227 0.8895615761176244 0 0.4568152824666966 -0.8895615761176244 -0 -0.4568152824666966 -0.0175951655914716 0.9948258934248654 0.1000592420480349 0.0175951655914716 -0.9948258934248654 -0.1000592420480349 -0.01241268125867795 0.9276093213098375 0.3733455133828087 0.01241268125867795 -0.9276093213098375 -0.3733455133828087 -0.001902567885113303 0.9285006741488983 0.371325838503711 0.001902567885113303 -0.9285006741488983 -0.371325838503711 -0.2820162498870407 0.8935441405364961 0.3493504024794374 0.2820162498870407 -0.8935441405364961 -0.3493504024794374 -0.2771330402511802 0.960779697982544 0.009982481941339451 0.2771330402511802 -0.960779697982544 -0.009982481941339451 -0.0170119865673869 0.999555120818576 -0.02449801539702913 0.0170119865673869 -0.999555120818576 0.02449801539702913 -0.01248522173395713 0.9329216369708445 0.3598629440632834 0.01248522173395713 -0.9329216369708445 -0.3598629440632834</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"256\" source=\"#ID1504\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1502\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1500\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1501\"/>\r\n                </vertices>\r\n                <triangles count=\"179\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1502\"/>\r\n                    <p>0 1 2 0 2 6 1 8 2 2 10 6 8 12 2 1 14 8 6 10 16 12 10 2 18 12 8 14 20 8 10 22 16 12 24 10 26 12 18 20 18 8 14 28 20 16 22 30 24 22 10 12 32 24 26 34 12 36 26 18 38 18 20 28 40 20 22 42 30 24 44 22 32 46 24 34 32 12 48 34 26 36 18 38 36 50 26 40 38 20 28 52 40 30 42 54 44 42 22 24 46 44 56 46 32 34 58 32 48 60 34 50 48 26 62 36 38 64 50 36 62 38 40 52 66 40 42 68 54 44 70 42 46 70 44 56 72 46 58 56 32 60 58 34 48 74 60 50 76 48 78 36 62 78 64 36 64 80 50 52 82 66 54 68 84 68 42 70 46 86 70 72 86 46 88 72 56 90 56 58 92 58 60 74 94 60 76 74 48 80 76 50 96 78 62 82 98 66 68 100 84 70 102 68 86 102 70 90 88 56 92 90 58 94 92 60 104 94 74 76 106 74 80 108 76 96 62 66 82 110 98 84 100 112 114 88 90 116 90 92 94 118 92 94 104 120 121 120 104 106 104 74 108 106 76 110 124 98 100 126 112 116 114 90 118 116 92 94 120 118 121 118 120 128 121 104 106 130 104 108 132 106 126 134 112 136 114 116 138 116 118 121 140 118 128 142 121 130 128 104 132 130 106 134 144 112 138 136 116 140 138 118 142 140 121 128 146 142 130 148 128 132 150 130 144 152 112 134 154 144 138 156 136 140 158 138 160 140 142 146 162 142 148 146 128 130 150 148 144 164 152 134 166 154 144 154 164 138 158 156 160 158 140 162 160 142 146 168 162 148 170 146 148 150 170 164 172 152 166 174 154 164 154 172 158 176 156 160 176 158 162 178 160 146 170 180 150 182 170 166 184 174 186 172 154 156 176 188 160 178 176 170 190 180 182 192 170 194 184 166 154 196 186 176 198 188 178 200 176 170 192 190 182 202 192 194 204 184 176 200 198 188 198 206 192 208 190 202 210 192 204 212 184 214 204 194 198 200 216 206 198 218 208 220 190 210 208 192 184 212 222 204 224 212 214 226 204 198 216 218 200 228 216 206 218 230 210 232 208 184 222 234 226 224 204 236 226 214 206 230 238 210 240 232 234 222 242 226 244 224 246 226 236 238 230 248 234 242 250 246 244 226 248 246 236 230 246 248 250 242 252 246 254 244 230 254 246</p>\r\n                </triangles>\r\n                <triangles count=\"179\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1502\"/>\r\n                    <p>3 4 5 7 3 5 3 9 4 7 11 3 3 13 9 9 15 4 17 11 7 3 11 13 9 13 19 9 21 15 17 23 11 11 25 13 19 13 27 9 19 21 21 29 15 31 23 17 11 23 25 25 33 13 13 35 27 19 27 37 21 19 39 21 41 29 31 43 23 23 45 25 25 47 33 13 33 35 27 35 49 39 19 37 27 51 37 21 39 41 41 53 29 55 43 31 23 43 45 45 47 25 33 47 57 33 59 35 35 61 49 27 49 51 39 37 63 37 51 65 41 39 63 41 67 53 55 69 43 43 71 45 45 71 47 47 73 57 33 57 59 35 59 61 61 75 49 49 77 51 63 37 79 37 65 79 51 81 65 67 83 53 85 69 55 71 43 69 71 87 47 47 87 73 57 73 89 59 57 91 61 59 93 61 95 75 49 75 77 51 77 81 63 79 97 67 99 83 85 101 69 69 103 71 71 103 87 57 89 91 59 91 93 61 93 95 75 95 105 75 107 77 77 109 81 67 63 97 99 111 83 113 101 85 91 89 115 93 91 117 93 119 95 105 122 123 122 105 95 75 105 107 77 107 109 99 125 111 113 127 101 91 115 117 93 117 119 122 119 123 119 122 95 105 123 129 105 131 107 107 133 109 113 135 127 117 115 137 119 117 139 119 141 123 123 143 129 105 129 131 107 131 133 113 145 135 117 137 139 119 139 141 123 141 143 143 147 129 129 149 131 131 151 133 113 153 145 145 155 135 137 157 139 139 159 141 143 141 161 143 163 147 129 147 149 149 151 131 153 165 145 155 167 135 165 155 145 157 159 139 141 159 161 143 161 163 163 169 147 147 171 149 171 151 149 153 173 165 155 175 167 173 155 165 157 177 159 159 177 161 161 179 163 181 171 147 171 183 151 175 185 167 155 173 187 189 177 157 177 179 161 181 191 171 171 193 183 167 185 195 187 197 155 189 199 177 177 201 179 191 193 171 193 203 183 185 205 195 199 201 177 207 199 189 191 209 193 193 211 203 185 213 205 195 205 215 217 201 199 219 199 207 191 221 209 193 209 211 223 213 185 213 225 205 205 227 215 219 217 199 217 229 201 231 219 207 209 233 211 235 223 185 205 225 227 215 227 237 239 231 207 233 241 211 243 223 235 225 245 227 237 227 247 249 231 239 251 243 235 227 245 247 237 247 249 249 247 231 253 243 251 245 255 247 247 255 231</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1505\">\r\n            <mesh>\r\n                <source id=\"ID1506\">\r\n                    <float_array count=\"18\" id=\"ID1509\">-0.5360015034675598 -0.8629845380783081 0.4011168479919434 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5360015034675598 -0.8629845380783081 0.4011168479919434</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1509\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1507\">\r\n                    <float_array count=\"18\" id=\"ID1510\">0.4545401320225986 0.6272147484516137 0.6324515220201922 0.6550020983156387 0.4876283129803074 0.5772268874386309 0.345541571839725 0.9120028016585794 0.2210246861720067 -0.345541571839725 -0.9120028016585794 -0.2210246861720067 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.4545401320225986 -0.6272147484516137 -0.6324515220201922</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1510\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1508\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1506\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1507\"/>\r\n                </vertices>\r\n                <triangles count=\"2\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1508\"/>\r\n                    <p>0 1 2 3 4 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1511\">\r\n            <mesh>\r\n                <source id=\"ID1512\">\r\n                    <float_array count=\"324\" id=\"ID1515\">-0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5942209959030151 -0.7019175291061401 0.2899888455867767 -0.5942209959030151 -0.7019175291061401 0.2899888455867767 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.6056320667266846 -0.6565739512443543 0.2298039048910141 -0.6056320667266846 -0.6565739512443543 0.2298039048910141 -0.6020826697349548 -0.6751006841659546 0.2901735305786133 -0.6020826697349548 -0.6751006841659546 0.2901735305786133 -0.6089040040969849 -0.6353139281272888 0.1513132899999619 -0.6089040040969849 -0.6353139281272888 0.1513132899999619 -0.6128094792366028 -0.6618664264678955 0.2912401556968689 -0.6128094792366028 -0.6618664264678955 0.2912401556968689 -0.6167487502098084 -0.6420672535896301 0.2305959314107895 -0.6167487502098084 -0.6420672535896301 0.2305959314107895 -0.6211212873458862 -0.623186469078064 0.1507736295461655 -0.6211212873458862 -0.623186469078064 0.1507736295461655 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.6087551116943359 -0.6622411012649536 0.3692092895507813 -0.6087551116943359 -0.6622411012649536 0.3692092895507813 -0.6310858130455017 -0.5694386959075928 0.02023929730057716 -0.6310858130455017 -0.5694386959075928 0.02023929730057716 -0.6167565584182739 -0.5806991457939148 0.01851669326424599 -0.6167565584182739 -0.5806991457939148 0.01851669326424599 -0.663953423500061 -0.6420672535896301 0.2324964851140976 -0.663953423500061 -0.6420672535896301 0.2324964851140976 -0.652129054069519 -0.6622440814971924 0.3726666569709778 -0.652129054069519 -0.6622440814971924 0.3726666569709778 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6851193904876709 -0.5696841478347778 0.01786315068602562 -0.6851193904876709 -0.5696841478347778 0.01786315068602562 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.654255211353302 -0.6612551212310791 0.2933478653430939 -0.654255211353302 -0.6612551212310791 0.2933478653430939 -0.6266710758209229 -0.666684091091156 0.3805446624755859 -0.6266710758209229 -0.666684091091156 0.3805446624755859 -0.6365204453468323 -0.5123711824417114 -0.1182090491056442 -0.6365204453468323 -0.5123711824417114 -0.1182090491056442 -0.6851193904876709 -0.5125510692596436 -0.1188254952430725 -0.6851193904876709 -0.5125510692596436 -0.1188254952430725 -0.6213362812995911 -0.523088812828064 -0.1182090491056442 -0.6213362812995911 -0.523088812828064 -0.1182090491056442 -0.662648618221283 -0.6536641716957092 0.2969664335250855 -0.662648618221283 -0.6536641716957092 0.2969664335250855 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.637385904788971 -0.6666867136955261 0.380647212266922 -0.637385904788971 -0.6666867136955261 0.380647212266922 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.6374267935752869 -0.4625494778156281 -0.2498909682035446 -0.6374267935752869 -0.4625494778156281 -0.2498909682035446 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6226447820663452 -0.4733588397502899 -0.2504602670669556 -0.6226447820663452 -0.4733588397502899 -0.2504602670669556 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"108\" source=\"#ID1515\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1513\">\r\n                    <float_array count=\"324\" id=\"ID1516\">0.7476117988063761 0.6572838630161918 0.09515525053304569 0.6550020983156387 0.4876283129803074 0.5772268874386309 0.8216288131614381 0.2706515877970226 0.5016710191010413 -0.8216288131614381 -0.2706515877970226 -0.5016710191010413 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.7476117988063761 -0.6572838630161918 -0.09515525053304569 0.9584177845989502 0.2850008742348596 -0.01448626417700434 -0.9584177845989502 -0.2850008742348596 0.01448626417700434 0.7244552439627415 0.6850948378838646 0.07622114273458253 -0.7244552439627415 -0.6850948378838646 -0.07622114273458253 0.7753776474116275 0.4751149390666444 0.4159991569343728 -0.7753776474116275 -0.4751149390666444 -0.4159991569343728 0.8881477781735072 0.4524796353460257 0.08034739399999649 -0.8881477781735072 -0.4524796353460257 -0.08034739399999649 0.8941930136861405 0.4475389692309519 0.01130156159982143 -0.8941930136861405 -0.4475389692309519 -0.01130156159982143 0.8752548469912496 0.4733750407807403 0.09922209221820005 -0.8752548469912496 -0.4733750407807403 -0.09922209221820005 0.4543224241270784 0.8834901017645209 0.11417694609426 -0.4543224241270784 -0.8834901017645209 -0.11417694609426 0.4390754791618005 0.8722680660772021 0.2153163823325404 -0.4390754791618005 -0.8722680660772021 -0.2153163823325404 0.3813948965532262 0.8843778726692496 0.269097958402078 -0.3813948965532262 -0.8843778726692496 -0.269097958402078 0.7923653450499429 0.6086502283222469 0.04125602413176856 -0.7923653450499429 -0.6086502283222469 -0.04125602413176856 0.383967075534481 0.8794224081425625 0.2813992056887057 -0.383967075534481 -0.8794224081425625 -0.2813992056887057 0.3135360072946354 0.8829453143304613 0.3494320306320262 -0.3135360072946354 -0.8829453143304613 -0.3494320306320262 0.8653510967847383 0.4780680927149463 0.1503940757521522 -0.8653510967847383 -0.4780680927149463 -0.1503940757521522 0.03348087307887111 0.9726744395591567 0.2297465250360863 -0.03348087307887111 -0.9726744395591567 -0.2297465250360863 -0.2331067307112813 0.8320228762697379 0.503387708889411 0.2331067307112813 -0.8320228762697379 -0.503387708889411 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 0.008441628187206814 0.9540781631986869 0.2994388041336138 -0.008441628187206814 -0.9540781631986869 -0.2994388041336138 -0.002610862372902 0.9247620023780555 0.3805370183771865 0.002610862372902 -0.9247620023780555 -0.3805370183771865 0.7968674597543884 0.5870317053962028 0.1428146646679311 -0.7968674597543884 -0.5870317053962028 -0.1428146646679311 0.3552230113875264 0.9270105580432917 0.1202831553337471 -0.3552230113875264 -0.9270105580432917 -0.1202831553337471 0.08976514704597118 0.8138320965427058 0.5741250186263609 -0.08976514704597118 -0.8138320965427058 -0.5741250186263609 0.2820189569398525 0.8935433688248957 0.3493501910055495 -0.2820189569398525 -0.8935433688248957 -0.3493501910055495 0.001902625878580924 0.9285006704963633 0.3713258473397318 -0.001902625878580924 -0.9285006704963633 -0.3713258473397318 0.8445678230404525 0.5026257642637024 0.1845874681094032 -0.8445678230404525 -0.5026257642637024 -0.1845874681094032 0.3849831700521143 0.9206148005691767 0.06524069090375866 -0.3849831700521143 -0.9206148005691767 -0.06524069090375866 0.01296510866664954 0.9520061052465042 0.3058043190189504 -0.01296510866664954 -0.9520061052465042 -0.3058043190189504 -0.09447285823394672 0.7839505576979712 0.6135930264777693 0.09447285823394672 -0.7839505576979712 -0.6135930264777693 -0.2441943401385535 0.4431550853429167 0.8625443145595528 0.2441943401385535 -0.4431550853429167 -0.8625443145595528 0.01238381535827511 0.9254422776884952 0.378686191699542 -0.01238381535827511 -0.9254422776884952 -0.378686191699542 0.01241273853124808 0.9276093124790017 0.3733455334196308 -0.01241273853124808 -0.9276093124790017 -0.3733455334196308 0.8188535649683953 0.5430980693366506 0.1858045376769702 -0.8188535649683953 -0.5430980693366506 -0.1858045376769702 0.01478301714399302 0.9790725865523251 0.2029737240774287 -0.01478301714399302 -0.9790725865523251 -0.2029737240774287 -0.5736763948085086 0.3276465503718861 0.7506950992706128 0.5736763948085086 -0.3276465503718861 -0.7506950992706128 0.2771369959745497 0.9607785545357305 0.009982715383835508 -0.2771369959745497 -0.9607785545357305 -0.009982715383835508 0.2493525773637736 0.8484138635542167 0.4669231288885251 -0.2493525773637736 -0.8484138635542167 -0.4669231288885251 0.008243433979804274 0.9182764917626426 0.3958539256750068 -0.008243433979804274 -0.9182764917626426 -0.3958539256750068 0.01248526471267345 0.9329216223065805 0.3598629805883239 -0.01248526471267345 -0.9329216223065805 -0.3598629805883239 0.7773720159345992 0.4537323794727712 0.4356830001959617 -0.7773720159345992 -0.4537323794727712 -0.4356830001959617 0.0175951555574402 0.9948258762089856 0.1000594149789708 -0.0175951555574402 -0.9948258762089856 -0.1000594149789708 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 -0.3283505887844118 0.3306960167614941 0.8847745675272385 0.3283505887844118 -0.3306960167614941 -0.8847745675272385 0.7904399506188402 0.4467527980245364 0.4190663693532726 -0.7904399506188402 -0.4467527980245364 -0.4190663693532726 0.01701204558444335 0.9995551163423349 -0.02449815705097821 -0.01701204558444335 -0.9995551163423349 0.02449815705097821 0.1362496104767762 0.3488194948181901 0.9272329824158057 -0.1362496104767762 -0.3488194948181901 -0.9272329824158057 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 0.2818142223592027 0.1785573489795022 0.9427078111490802 -0.2818142223592027 -0.1785573489795022 -0.9427078111490802 0.4245302778687223 0.4022424278976751 0.8111566262884677 -0.4245302778687223 -0.4022424278976751 -0.8111566262884677 0 0 1 -0 -0 -1 0.4644031292697052 0.1881536417132338 0.8654062286779275 -0.4644031292697052 -0.1881536417132338 -0.8654062286779275</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"108\" source=\"#ID1516\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1514\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1512\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1513\"/>\r\n                </vertices>\r\n                <triangles count=\"144\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1514\"/>\r\n                    <p>0 1 2 3 4 5 0 2 6 7 3 5 8 0 6 7 5 9 6 2 10 11 3 7 8 6 12 13 7 9 14 6 10 11 7 15 6 14 12 13 15 7 8 12 16 17 13 9 14 10 18 19 11 15 12 14 20 21 15 13 22 16 12 13 17 23 24 8 16 17 9 25 14 18 20 21 19 15 10 26 18 19 27 11 12 20 22 23 21 13 22 28 16 17 29 23 24 16 30 31 17 25 32 20 18 19 21 33 18 26 34 35 27 19 36 26 10 11 27 37 38 22 20 21 23 39 28 30 16 17 31 29 40 28 22 23 29 41 42 24 30 31 25 43 32 18 44 45 19 33 38 20 32 33 21 39 34 26 46 47 27 35 44 18 34 35 19 45 46 26 36 37 27 47 40 22 38 39 23 41 48 30 28 29 31 49 40 50 28 29 51 41 42 30 52 53 31 43 32 44 54 55 45 33 56 38 32 33 39 57 34 46 58 59 47 35 54 44 34 35 45 55 60 46 36 37 47 61 62 40 38 39 41 63 48 52 30 31 53 49 50 48 28 29 49 51 64 50 40 41 51 65 66 42 52 53 43 67 68 32 54 55 33 69 56 62 38 39 63 57 68 56 32 33 57 69 58 46 60 61 47 59 70 34 58 59 35 71 72 54 34 35 55 73 62 64 40 41 65 63 48 74 52 53 75 49 50 76 48 49 77 51 78 50 64 65 51 79 66 52 80 81 53 67 82 68 54 55 69 83 70 58 60 61 59 71 70 84 34 35 85 71 84 86 34 35 87 85 82 54 72 73 55 83 76 74 48 49 75 77 74 80 52 53 81 75 78 76 50 51 77 79 88 66 80 81 67 89 82 72 90 91 73 83 76 92 74 75 93 77 92 80 74 75 81 93 94 95 96 97 98 99 88 80 100 101 81 89 102 92 76 77 93 103 92 100 80 81 101 93 95 104 96 97 105 98 106 88 100 101 89 107</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1517\">\r\n            <mesh>\r\n                <source id=\"ID1518\">\r\n                    <float_array count=\"534\" id=\"ID1521\">-0.3606338500976563 -1.926416754722595 -0.09349501132965088 -0.3624692857265472 -1.826847672462463 -0.1463934928178787 -0.2926522493362427 -1.851223945617676 -0.1463934928178787 -0.2926522493362427 -1.851223945617676 -0.1463934928178787 -0.3624692857265472 -1.826847672462463 -0.1463934928178787 -0.3606338500976563 -1.926416754722595 -0.09349501132965088 -0.001449317671358585 -1.628891706466675 -0.1275773644447327 -0.001449317671358585 -1.628891706466675 -0.1275773644447327 -0.4921964704990387 -1.894847393035889 -0.09349501132965088 -0.4921964704990387 -1.894847393035889 -0.09349501132965088 -0.235410675406456 -1.933972954750061 -0.09592393785715103 -0.235410675406456 -1.933972954750061 -0.09592393785715103 -0.3976570665836334 -1.780892610549927 -0.1463934928178787 -0.3976570665836334 -1.780892610549927 -0.1463934928178787 -0.1878064125776291 -1.864198327064514 -0.1463934928178787 -0.1878064125776291 -1.864198327064514 -0.1463934928178787 -0.4105052947998047 -1.968539357185364 -0.01854868978261948 -0.4105052947998047 -1.968539357185364 -0.01854868978261948 -0.2646690011024475 -1.9807208776474 -0.01785293966531754 -0.2646690011024475 -1.9807208776474 -0.01785293966531754 -0.4050852954387665 -1.714909911155701 -0.1463934928178787 -0.4050852954387665 -1.714909911155701 -0.1463934928178787 -0.001449264585971832 -1.864198327064514 -0.1463934928178787 -0.001449264585971832 -1.864198327064514 -0.1463934928178787 -0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.5109597444534302 -1.817365527153015 -0.09349501132965088 -0.5109597444534302 -1.817365527153015 -0.09349501132965088 -0.001366172917187214 -1.941106200218201 -0.09592393785715103 -0.001366172917187214 -1.941106200218201 -0.09592393785715103 -0.4193870723247528 -1.601637005805969 -0.1275773644447327 -0.4193870723247528 -1.601637005805969 -0.1275773644447327 0.1849076002836227 -1.864198327064514 -0.1463934928178787 0.1849076002836227 -1.864198327064514 -0.1463934928178787 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.001449317671358585 -1.9807208776474 -0.01785293966531754 -0.001449317671358585 -1.9807208776474 -0.01785293966531754 -0.3988296985626221 -1.515700936317444 -0.1028623208403587 -0.3988296985626221 -1.515700936317444 -0.1028623208403587 -0.4935618042945862 -1.730852842330933 -0.09349501132965088 -0.4935618042945862 -1.730852842330933 -0.09349501132965088 0.2897535860538483 -1.851223945617676 -0.1463934928178787 0.2897535860538483 -1.851223945617676 -0.1463934928178787 0.2325120717287064 -1.933972954750061 -0.09592393785715103 0.2325120717287064 -1.933972954750061 -0.09592393785715103 -0.5515520572662354 -1.828812718391419 -0.01854868978261948 -0.5515520572662354 -1.828812718391419 -0.01854868978261948 -0.001449317671358585 -1.975146889686585 0.06838828325271606 -0.001449317671358585 -1.975146889686585 0.06838828325271606 0.2617702782154083 -1.9807208776474 -0.01785293966531754 0.2617702782154083 -1.9807208776474 -0.01785293966531754 -0.3782610595226288 -1.453732490539551 -0.08835642039775848 -0.3782610595226288 -1.453732490539551 -0.08835642039775848 -0.4942137002944946 -1.606165766716003 -0.07467878609895706 -0.4942137002944946 -1.606165766716003 -0.07467878609895706 0.35957071185112 -1.826847672462463 -0.1463934928178787 0.35957071185112 -1.826847672462463 -0.1463934928178787 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.317712277173996 -1.412886142730713 -0.08004907518625259 -0.317712277173996 -1.412886142730713 -0.08004907518625259 -0.5008955001831055 -1.484931826591492 -0.05118564888834953 -0.5008955001831055 -1.484931826591492 -0.05118564888834953 -0.541976809501648 -1.741774439811707 -0.01074292883276939 -0.541976809501648 -1.741774439811707 -0.01074292883276939 0.3947583734989166 -1.780892610549927 -0.1463934928178787 0.3947583734989166 -1.780892610549927 -0.1463934928178787 0.3577354252338409 -1.926417708396912 -0.09349501132965088 0.3577354252338409 -1.926417708396912 -0.09349501132965088 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.5108418464660645 -1.82867443561554 0.210712805390358 0.1927159428596497 -1.975192189216614 0.06858637928962708 0.1927159428596497 -1.975192189216614 0.06858637928962708 -0.1767936646938324 -1.406760692596436 -0.08004907518625259 -0.1767936646938324 -1.406760692596436 -0.08004907518625259 -0.4652675688266754 -1.396878957748413 -0.0271506030112505 -0.4652675688266754 -1.396878957748413 -0.0271506030112505 -0.5288583636283875 -1.602755665779114 0.02520615234971046 -0.5288583636283875 -1.602755665779114 0.02520615234971046 0.4021864235401154 -1.714909911155701 -0.1463934928178787 0.4021864235401154 -1.714909911155701 -0.1463934928178787 0.4892977476119995 -1.894847393035889 -0.09349501132965088 0.4892977476119995 -1.894847393035889 -0.09349501132965088 0.4076065123081207 -1.968539357185364 -0.01854868978261948 0.4076065123081207 -1.968539357185364 -0.01854868978261948 -0.001449264585971832 -1.40310525894165 -0.08004907518625259 -0.001449264585971832 -1.40310525894165 -0.08004907518625259 -0.3848465085029602 -1.370032668113709 -0.0271506030112505 -0.3848465085029602 -1.370032668113709 -0.0271506030112505 -0.5189878940582275 -1.473042607307434 0.0858701765537262 -0.5189878940582275 -1.473042607307434 0.0858701765537262 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.5151616930961609 -1.741188645362854 0.2367520481348038 0.4164886176586151 -1.601638078689575 -0.1275773644447327 0.4164886176586151 -1.601638078689575 -0.1275773644447327 0.5080612301826477 -1.81736695766449 -0.09349501132965088 0.5080612301826477 -1.81736695766449 -0.09349501132965088 0.351957768201828 -1.969097256660461 0.0834038257598877 0.351957768201828 -1.969097256660461 0.0834038257598877 0.1738950163125992 -1.406760692596436 -0.08004907518625259 0.1738950163125992 -1.406760692596436 -0.08004907518625259 -0.2127160131931305 -1.348718166351318 -0.0271506030112505 -0.2127160131931305 -1.348718166351318 -0.0271506030112505 -0.5000548958778381 -1.364248633384705 0.1308065205812454 -0.5000548958778381 -1.364248633384705 0.1308065205812454 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5150116086006165 -1.602635979652405 0.2695119678974152 0.3959312736988068 -1.515700936317444 -0.1028623208403587 0.3959312736988068 -1.515700936317444 -0.1028623208403587 0.4906633496284485 -1.730852842330933 -0.09349501132965088 0.4906633496284485 -1.730852842330933 -0.09349501132965088 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.314813494682312 -1.412886142730713 -0.08004907518625259 0.314813494682312 -1.412886142730713 -0.08004907518625259 0.2098170965909958 -1.348718166351318 -0.0271506030112505 0.2098170965909958 -1.348718166351318 -0.0271506030112505 -0.001449264585971832 -1.346470355987549 -0.0247164648026228 -0.001449264585971832 -1.346470355987549 -0.0247164648026228 -0.4503773152828217 -1.332709312438965 0.1465340554714203 -0.4503773152828217 -1.332709312438965 0.1465340554714203 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.5091840028762817 -1.473127722740173 0.2953929603099823 0.3753623962402344 -1.453732490539551 -0.08835642039775848 0.3753623962402344 -1.453732490539551 -0.08835642039775848 0.4913150072097778 -1.606165766716003 -0.07467878609895706 0.4913150072097778 -1.606165766716003 -0.07467878609895706 0.5486531853675842 -1.828812718391419 -0.01854868978261948 0.5486531853675842 -1.828812718391419 -0.01854868978261948 0.3819479644298554 -1.370032668113709 -0.0271506030112505 0.3819479644298554 -1.370032668113709 -0.0271506030112505 -0.2346685528755188 -1.304289698600769 0.1577682644128799 -0.2346685528755188 -1.304289698600769 0.1577682644128799 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.4488465189933777 -1.36491858959198 0.3139463365077972 0.4979969263076782 -1.484931826591492 -0.05118564888834953 0.4979969263076782 -1.484931826591492 -0.05118564888834953 0.5390774607658386 -1.741774439811707 -0.01074292883276939 0.5390774607658386 -1.741774439811707 -0.01074292883276939 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.4623689949512482 -1.396880269050598 -0.0271506030112505 0.4623689949512482 -1.396880269050598 -0.0271506030112505 0.4474785029888153 -1.332709312438965 0.1465340554714203 0.4474785029888153 -1.332709312438965 0.1465340554714203 0.2317695468664169 -1.304289698600769 0.1577682644128799 0.2317695468664169 -1.304289698600769 0.1577682644128799 -0.001449317671358585 -1.30136251449585 0.1578548401594162 -0.001449317671358585 -1.30136251449585 0.1578548401594162 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.3898182511329651 -1.332667946815491 0.3197168409824371 0.5259599089622498 -1.60275661945343 0.02520615234971046 0.5259599089622498 -1.60275661945343 0.02520615234971046 0.5079431533813477 -1.828675627708435 0.210712805390358 0.5079431533813477 -1.828675627708435 0.210712805390358 0.4971560835838318 -1.364249706268311 0.1308065205812454 0.4971560835838318 -1.364249706268311 0.1308065205812454 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2033214420080185 -1.304823517799377 0.3252071440219879 0.5160892605781555 -1.473042607307434 0.0858701765537262 0.5160892605781555 -1.473042607307434 0.0858701765537262 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.2004226595163345 -1.304823517799377 0.3252071440219879 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449264585971832 -1.302743792533875 0.3265746533870697 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.5062857866287231 -1.473127722740173 0.2953929603099823</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"178\" source=\"#ID1521\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1519\">\r\n                    <float_array count=\"534\" id=\"ID1522\">0.1102844365530712 0.6884343880834366 0.7168650056728645 0.1033700632704769 0.2084592851432369 0.9725530095871527 0.04521304169707321 0.259030171588043 0.9648104223460522 -0.04521304169707321 -0.259030171588043 -0.9648104223460522 -0.1033700632704769 -0.2084592851432369 -0.9725530095871527 -0.1102844365530712 -0.6884343880834366 -0.7168650056728645 -4.307140260861875e-008 -0.1462111153925923 0.98925341027244 4.307140260861875e-008 0.1462111153925923 -0.98925341027244 0.5321740367225489 0.4647669008979348 0.7076598918040757 -0.5321740367225489 -0.4647669008979348 -0.7076598918040757 0.0413459562307197 0.7207422630431816 0.6919690037615563 -0.0413459562307197 -0.7207422630431816 -0.6919690037615563 0.1961331907637079 0.06135705273615555 0.9786557533476109 -0.1961331907637079 -0.06135705273615555 -0.9786557533476109 0.01033695112433616 0.2777725719850512 0.9605912479792135 -0.01033695112433616 -0.2777725719850512 -0.9605912479792135 0.2164019946925166 0.9532943408112349 0.2107132565131422 -0.2164019946925166 -0.9532943408112349 -0.2107132565131422 0.05566140920335683 0.9755575218522317 0.2125778188876468 -0.05566140920335683 -0.9755575218522317 -0.2125778188876468 0.234471846381218 -0.0643979059398732 0.9699875581496608 -0.234471846381218 0.0643979059398732 -0.9699875581496608 5.093929862705434e-006 0.2528021849297338 0.9675179870518195 -5.093929862705434e-006 -0.2528021849297338 -0.9675179870518195 0.7043444308093231 0.6885011446313276 0.1728152094847037 -0.7043444308093231 -0.6885011446313276 -0.1728152094847037 0.716448435581581 0.0321284880729666 0.69689984890718 -0.716448435581581 -0.0321284880729666 -0.69689984890718 -5.784214901150153e-006 0.7419429016926926 0.6704630717603842 5.784214901150153e-006 -0.7419429016926926 -0.6704630717603842 0.3123301514282754 -0.232653174309777 0.9210441775465361 -0.3123301514282754 0.232653174309777 -0.9210441775465361 -0.01033691087861853 0.277772542345011 0.9605912569832584 0.01033691087861853 -0.277772542345011 -0.9605912569832584 0.1493590760120027 0.9875730596760047 -0.04890110648048201 -0.1493590760120027 -0.9875730596760047 0.04890110648048201 0.01854079080984633 0.9975812603195948 -0.06699155271610174 -0.01854079080984633 -0.9975812603195948 0.06699155271610174 2.790039622087009e-018 0.9795646181507258 0.2011297065756883 -2.790039622087009e-018 -0.9795646181507258 -0.2011297065756883 0.2153401244752097 -0.2706544164613817 0.9382829091702301 -0.2153401244752097 0.2706544164613817 -0.9382829091702301 0.7095592943048024 -0.1085354821195478 0.6962367822707647 -0.7095592943048024 0.1085354821195478 -0.6962367822707647 -0.04521192352943625 0.2590288814080347 0.9648108211288216 0.04521192352943625 -0.2590288814080347 -0.9648108211288216 -0.0413438662129717 0.7207413543092698 0.6919700751586035 0.0413438662129717 -0.7207413543092698 -0.6919700751586035 0.9805421601871839 0.1026497737848967 0.1673322922730709 -0.9805421601871839 -0.1026497737848967 -0.1673322922730709 4.377473158451889e-011 0.9979296639472881 -0.06431474025487947 -4.377473158451889e-011 -0.9979296639472881 0.06431474025487947 -0.05565935011423944 0.9755584605081817 0.2125740503348586 0.05565935011423944 -0.9755584605081817 -0.2125740503348586 0.1816563073119213 -0.3539460384193683 0.9174547334343161 -0.1816563073119213 0.3539460384193683 -0.9174547334343161 0.7610440641787706 -0.1404914023157347 0.6333041119822434 -0.7610440641787706 0.1404914023157347 -0.6333041119822434 -0.1033703901796722 0.2084578250215096 0.9725532878055599 0.1033703901796722 -0.2084578250215096 -0.9725532878055599 0.747043425910407 0.6504555146670747 -0.1372360857909948 -0.747043425910407 -0.6504555146670747 0.1372360857909948 0.06541783064119561 -0.5082262244283293 0.8587354727956247 -0.06541783064119561 0.5082262244283293 -0.8587354727956247 0.7656897381547677 -0.274108269361712 0.5818796108749732 -0.7656897381547677 0.274108269361712 -0.5818796108749732 0.9780136521515699 -0.09947584929131725 0.1832862559302234 -0.9780136521515699 0.09947584929131725 -0.1832862559302234 -0.1961330129413249 0.06135674483668833 0.9786558082889019 0.1961330129413249 -0.06135674483668833 -0.9786558082889019 -0.1102849643238392 0.6884360637011642 0.7168633153117381 0.1102849643238392 -0.6884360637011642 -0.7168633153117381 0.9753070585279619 0.1705312787247317 -0.1403396756517649 -0.9753070585279619 -0.1705312787247317 0.1403396756517649 -0.01854023728564532 0.9975813585017789 -0.06699024385040971 0.01854023728564532 -0.9975813585017789 0.06699024385040971 0.02138505679844553 -0.4553018746991844 0.8900802673024132 -0.02138505679844553 0.4553018746991844 -0.8900802673024132 0.5689659860680157 -0.6358120761339294 0.5215560473620385 -0.5689659860680157 0.6358120761339294 -0.5215560473620385 0.990482205730385 -0.08332503075027384 0.1095533631703609 -0.990482205730385 0.08332503075027384 -0.1095533631703609 -0.2344705609306409 -0.06439821856471613 0.9699878481210792 0.2344705609306409 0.06439821856471613 -0.9699878481210792 -0.5321715949501727 0.4647679909086325 0.7076610121766936 0.5321715949501727 -0.4647679909086325 -0.7076610121766936 -0.216402336378506 0.9532941923770181 0.2107135771377177 0.216402336378506 -0.9532941923770181 -0.2107135771377177 -2.812811688057497e-009 -0.469904473165833 0.8827172741590259 2.812811688057497e-009 0.469904473165833 -0.8827172741590259 0.1938866687187758 -0.8326174796938357 0.5188025560860518 -0.1938866687187758 0.8326174796938357 -0.5188025560860518 0.9825476572045379 -0.171768516677661 0.07138401782073113 -0.9825476572045379 0.171768516677661 -0.07138401782073113 0.9958208103188742 0.02618308965014393 -0.08749491157909338 -0.9958208103188742 -0.02618308965014393 0.08749491157909338 -0.3123299092873392 -0.2326510344493272 0.9210448001776137 0.3123299092873392 0.2326510344493272 -0.9210448001776137 -0.7164482581224304 0.03213212483050044 0.6968998636728325 0.7164482581224304 -0.03213212483050044 -0.6968998636728325 -0.149357994953947 0.9875735034865902 -0.04889544513099698 0.149357994953947 -0.9875735034865902 0.04889544513099698 -0.0213850771991602 -0.4553019057041807 0.89008025095231 0.0213850771991602 0.4553019057041807 -0.89008025095231 0.05873867013076143 -0.8544479039721123 0.5162059163056284 -0.05873867013076143 0.8544479039721123 -0.5162059163056284 0.7955663513823786 -0.6002896085858349 0.08201564711684241 -0.7955663513823786 0.6002896085858349 -0.08201564711684241 0.9984411485218635 -0.01772472490393671 -0.05292548597246906 -0.9984411485218635 0.01772472490393671 0.05292548597246906 -0.2153405394920977 -0.2706533764593418 0.9382831139173347 0.2153405394920977 0.2706533764593418 -0.9382831139173347 -0.7095609051348071 -0.1085351406263525 0.6962351938486673 0.7095609051348071 0.1085351406263525 -0.6962351938486673 -0.7043453961272412 0.6885000654906582 0.1728155744535739 0.7043453961272412 -0.6885000654906582 -0.1728155744535739 -0.06541868829408093 -0.5082262645592816 0.8587353837090919 0.06541868829408093 0.5082262645592816 -0.8587353837090919 -0.05873856335209898 -0.8544479846210449 0.5162057949620151 0.05873856335209898 0.8544479846210449 -0.5162057949620151 -4.505566842810803e-009 -0.8699258848861241 0.4931824761739755 4.505566842810803e-009 0.8699258848861241 -0.4931824761739755 0.3623917214846428 -0.9289771709492192 0.0753236752593929 -0.3623917214846428 0.9289771709492192 -0.0753236752593929 0.9687409037377627 -0.2150856712682755 -0.1236091236131779 -0.9687409037377627 0.2150856712682755 0.1236091236131779 -0.1816568763454598 -0.3539484409708389 0.9174536938781831 0.1816568763454598 0.3539484409708389 -0.9174536938781831 -0.7610442542995036 -0.1404904499567133 0.6333040947828087 0.7610442542995036 0.1404904499567133 -0.6333040947828087 -0.9805431581954143 0.1026452389617377 0.1673292258831386 0.9805431581954143 -0.1026452389617377 -0.1673292258831386 -0.1938926420317465 -0.8326148238787625 0.5188045859697908 0.1938926420317465 0.8326148238787625 -0.5188045859697908 0.07586902325831367 -0.9913590887010482 0.1070095722805057 -0.07586902325831367 0.9913590887010482 -0.1070095722805057 0.6730663500074919 -0.7101697307652958 -0.2064961064822766 -0.6730663500074919 0.7101697307652958 0.2064961064822766 -0.7656894567676184 -0.2741104707790182 0.5818789441148515 0.7656894567676184 0.2741104707790182 -0.5818789441148515 -0.9780139960392903 -0.09947648931692157 0.1832840735700717 0.9780139960392903 0.09947648931692157 -0.1832840735700717 -0.747044926563488 0.6504540070975241 -0.1372350623803081 0.747044926563488 -0.6504540070975241 0.1372350623803081 -0.5689687714554724 -0.6358099364793625 0.5215556171517662 0.5689687714554724 0.6358099364793625 -0.5215556171517662 -0.3623985485590152 -0.9289743956436117 0.07532505719151701 0.3623985485590152 0.9289743956436117 -0.07532505719151701 -0.07586897640646192 -0.9913590911749723 0.1070095825791727 0.07586897640646192 0.9913590911749723 -0.1070095825791727 -6.861687268936658e-009 -0.993110212151613 0.1171840711025953 6.861687268936658e-009 0.993110212151613 -0.1171840711025953 0.2765227344053635 -0.9567016942412029 -0.09086828705875856 -0.2765227344053635 0.9567016942412029 0.09086828705875856 -0.9904823390352332 -0.08332329393080694 0.1095534789398025 0.9904823390352332 0.08332329393080694 -0.1095534789398025 -0.9753074974216965 0.1705307485558667 -0.1403372697112316 0.9753074974216965 -0.1705307485558667 0.1403372697112316 -0.7955693304830882 -0.6002854616638265 0.08201710132489212 0.7955693304830882 0.6002854616638265 -0.08201710132489212 0.0714146009854829 -0.997297786611956 -0.01723599677934504 -0.0714146009854829 0.997297786611956 0.01723599677934504 -0.9825473850294997 -0.1717699905701884 0.07138421752186797 0.9825473850294997 0.1717699905701884 -0.07138421752186797 -0.9958208935248408 0.02618264676288238 -0.08749409710304948 0.9958208935248408 -0.02618264676288238 0.08749409710304948 -0.6730654741557118 -0.7101711958038869 -0.2064939227919899 0.6730654741557118 0.7101711958038869 0.2064939227919899 -0.2765217054096677 -0.9567020119458887 -0.09086807346927529 0.2765217054096677 0.9567020119458887 0.09086807346927529 -0.07141472484110054 -0.9972977789648503 -0.0172359260745187 0.07141472484110054 0.9972977789648503 0.0172359260745187 -8.531464836120813e-009 -0.9999664897077552 -0.008186541488936034 8.531464836120813e-009 0.9999664897077552 0.008186541488936034 -0.9984411168865852 -0.0177237495391565 -0.05292640940533804 0.9984411168865852 0.0177237495391565 0.05292640940533804 -0.9687413035679741 -0.2150852523239042 -0.1236067190495125 0.9687413035679741 0.2150852523239042 0.1236067190495125</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"178\" source=\"#ID1522\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1520\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1518\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1519\"/>\r\n                </vertices>\r\n                <triangles count=\"304\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1520\"/>\r\n                    <p>0 1 2 3 4 5 2 1 6 7 4 3 8 1 0 5 4 9 0 2 10 11 3 5 1 12 6 7 13 4 14 2 6 7 3 15 8 0 16 17 5 9 8 12 1 4 13 9 10 2 14 15 3 11 0 10 18 19 11 5 12 20 6 7 21 13 14 6 22 23 7 15 24 8 16 17 9 25 16 0 18 19 5 17 8 26 12 13 27 9 10 14 22 23 15 11 10 28 18 19 29 11 20 30 6 7 31 21 26 20 12 13 21 27 22 6 32 33 7 23 24 16 34 35 17 25 8 24 26 27 25 9 16 18 36 37 19 17 10 22 28 29 23 11 18 28 38 39 29 19 30 40 6 7 41 31 42 30 20 21 31 43 26 42 20 21 43 27 32 6 44 45 7 33 22 32 46 47 33 23 16 36 34 35 37 17 24 48 26 27 49 25 18 50 36 37 51 19 28 22 46 47 23 29 18 38 50 51 39 19 38 28 52 53 29 39 40 54 6 7 55 41 30 56 40 41 57 31 42 56 30 31 57 43 26 48 42 43 49 27 44 6 58 59 7 45 46 32 44 45 33 47 24 60 48 49 61 25 28 46 52 53 47 29 38 52 50 51 53 39 54 62 6 7 63 55 40 64 54 55 65 41 56 64 40 41 65 57 42 66 56 57 67 43 48 66 42 43 67 49 58 6 68 69 7 59 70 44 58 59 45 71 46 44 70 71 45 47 48 60 72 73 61 49 46 70 52 53 71 47 50 52 74 75 53 51 62 76 6 7 77 63 54 78 62 63 79 55 64 78 54 55 79 65 56 80 64 65 81 57 56 66 80 81 67 57 48 72 66 67 73 49 68 6 82 83 7 69 58 68 84 85 69 59 70 58 84 85 59 71 70 86 52 53 87 71 52 86 74 75 87 53 6 76 88 89 77 7 76 62 90 91 63 77 78 90 62 63 91 79 64 92 78 79 93 65 64 80 92 93 81 65 66 94 80 81 95 67 66 72 94 95 73 67 82 6 96 97 7 83 68 82 98 99 83 69 84 68 98 99 69 85 70 84 86 87 85 71 74 86 100 101 87 75 6 88 102 103 89 7 76 104 88 89 105 77 90 104 76 77 105 91 90 78 106 107 79 91 78 92 106 107 93 79 80 108 92 93 109 81 80 94 108 109 95 81 6 110 96 97 111 7 82 96 112 113 97 83 82 112 98 99 113 83 114 84 98 99 85 115 86 84 114 115 85 87 86 114 100 101 115 87 6 102 116 117 103 7 102 88 118 119 89 103 88 104 120 121 105 89 104 90 122 123 91 105 90 106 122 123 107 91 92 124 106 107 125 93 108 124 92 93 125 109 6 126 110 111 127 7 96 110 128 129 111 97 112 96 128 129 97 113 130 98 112 113 99 131 130 114 98 99 115 131 6 116 126 127 117 7 116 102 132 133 103 117 102 118 132 133 119 103 88 120 118 119 121 89 120 104 134 135 105 121 104 122 134 135 123 105 122 106 136 137 107 123 124 136 106 107 137 125 110 126 138 139 127 111 128 110 138 139 111 129 140 112 128 129 113 141 140 130 112 113 131 141 142 114 130 131 115 143 126 116 144 145 117 127 116 132 144 145 133 117 132 118 146 147 119 133 118 120 148 149 121 119 120 134 150 151 135 121 134 122 152 153 123 135 122 136 152 153 137 123 126 144 138 139 145 127 154 128 138 139 129 155 140 128 154 155 129 141 156 130 140 141 131 157 142 130 156 157 131 143 144 132 158 159 133 145 158 132 146 147 133 159 146 118 148 149 119 147 148 120 150 151 121 149 150 134 160 161 135 151 134 152 160 161 153 135 162 138 144 145 139 163 154 138 162 163 139 155 164 140 154 155 141 165 156 140 164 165 141 157 162 144 158 159 145 163 158 146 166 167 147 159 146 148 168 169 149 147 148 150 170 171 151 149 150 160 172 173 161 151 174 154 162 163 155 175 164 154 174 175 155 165 176 162 158 159 163 177 166 176 158 159 177 167 166 146 168 169 147 167 168 148 170 171 149 169 170 150 172 173 151 171 176 174 162 163 175 177</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1523\">\r\n            <mesh>\r\n                <source id=\"ID1524\">\r\n                    <float_array count=\"18\" id=\"ID1527\">-0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.5167703032493591 -1.931200861930847 -0.01854868978261948</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1527\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1525\">\r\n                    <float_array count=\"18\" id=\"ID1528\">0.7043444308093231 0.6885011446313276 0.1728152094847037 0.1493590760120027 0.9875730596760047 -0.04890110648048201 0.747043425910407 0.6504555146670747 -0.1372360857909948 -0.747043425910407 -0.6504555146670747 0.1372360857909948 -0.1493590760120027 -0.9875730596760047 0.04890110648048201 -0.7043444308093231 -0.6885011446313276 -0.1728152094847037</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1528\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1526\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1524\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1525\"/>\r\n                </vertices>\r\n                <triangles count=\"1\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1526\"/>\r\n                    <p>0 1 2</p>\r\n                </triangles>\r\n                <triangles count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1526\"/>\r\n                    <p>3 4 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1529\">\r\n            <mesh>\r\n                <source id=\"ID1530\">\r\n                    <float_array count=\"606\" id=\"ID1534\">-0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.2516766786575317 1.928897380828857 -0.1850217580795288 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.2508114874362946 1.913545846939087 -0.1969181150197983 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.001449317671358585 1.913302659988403 -0.1713338941335678 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.2487779557704926 1.928897380828857 -0.1850217580795288 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.2549293041229248 1.913302659988403 -0.1713338941335678 -0.2549293041229248 1.913302659988403 -0.1713338941335678 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.4201467633247376 1.927762508392334 -0.1845976114273071 0.25203076004982 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4172481298446655 1.927762508392334 -0.1845976114273071 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.4117976725101471 1.911528825759888 -0.1705324798822403 -0.4117976725101471 1.911528825759888 -0.1705324798822403 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.4610534906387329 1.913545846939087 -0.1884861141443253 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.45652174949646 1.927762508392334 -0.1764486581087112 0.408898800611496 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4536233246326447 1.927762508392334 -0.1764486581087112 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4486589431762695 1.911528825759888 -0.1648858040571213 -0.4486589431762695 1.911528825759888 -0.1648858040571213 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4900375604629517 1.913545846939087 -0.156715527176857 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4769005477428436 1.927762508392334 -0.1519266217947006 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.4740022420883179 1.927762508392334 -0.1519266217947006 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4662005603313446 1.911528825759888 -0.1489890366792679 -0.4662005603313446 1.911528825759888 -0.1489890366792679 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5083516836166382 1.913545846939087 -0.1217374056577683 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4958158433437347 1.927762508392334 -0.1193308234214783 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.492917001247406 1.927762508392334 -0.1193308234214783 0.492917001247406 1.927762508392334 -0.1193308234214783 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.4822799563407898 1.911528825759888 -0.1171957403421402 -0.4822799563407898 1.911528825759888 -0.1171957403421402 0.492917001247406 1.927762508392334 -0.1193308234214783 0.492917001247406 1.927762508392334 -0.1193308234214783 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5181557536125183 1.913545846939087 -0.07925551384687424 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.5063496232032776 1.927762508392334 -0.07853657007217407 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5034509897232056 1.927762508392334 -0.07853657007217407 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.4914830029010773 1.911528825759888 -0.0755583867430687 -0.4914830029010773 1.911528825759888 -0.0755583867430687 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5266676545143127 1.913545846939087 -0.03383167833089829 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.5109774470329285 1.927762508392334 -0.0344013050198555 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5080784559249878 1.927762508392334 -0.0344013050198555 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.4949836730957031 1.911528825759888 -0.03233586996793747 -0.4949836730957031 1.911528825759888 -0.03233586996793747 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5185676217079163 1.913545846939087 0.008449893444776535 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.502662718296051 1.927762508392334 0.00562204048037529 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4997647404670715 1.927762508392334 0.00562204048037529 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4959137439727783 1.913545846939087 0.03620735183358192 0.4959137439727783 1.913545846939087 0.03620735183358192 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4801041185855866 1.927762508392334 0.02575856074690819 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4772054851055145 1.927762508392334 0.02575856074690819 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4692228436470032 1.911528825759888 0.009228713810443878 -0.4692228436470032 1.911528825759888 0.009228713810443878 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 -0.3920661807060242 1.913546323776245 0.05386548116803169 -0.3920661807060242 1.913546323776245 0.05386548116803169 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4434280395507813 1.923323154449463 0.0383446104824543 0.4663237631320953 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 0.440529465675354 1.923323154449463 0.0383446104824543 0.440529465675354 1.923323154449463 0.0383446104824543 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.4382359385490418 1.911528825759888 0.01968160644173622 -0.4382359385490418 1.911528825759888 0.01968160644173622 0.440529465675354 1.923323154449463 0.0383446104824543 0.440529465675354 1.923323154449463 0.0383446104824543 0.3891672492027283 1.913545846939087 0.05386548116803169 0.3891672492027283 1.913545846939087 0.05386548116803169 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.001449317671358585 1.913545846939087 0.05373930558562279 -0.001449317671358585 1.913545846939087 0.05373930558562279 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.3894325792789459 1.927762508392334 0.03898162022233009 0.4353374838829041 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 0.3865337669849396 1.927762508392334 0.03898162022233009 0.3865337669849396 1.927762508392334 0.03898162022233009 0.391455739736557 1.843269467353821 0.09250524640083313 0.391455739736557 1.843269467353821 0.09250524640083313 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.3876460790634155 1.911528825759888 0.01913142576813698 -0.3876460790634155 1.911528825759888 0.01913142576813698 0.3865337669849396 1.927762508392334 0.03898162022233009 0.3865337669849396 1.927762508392334 0.03898162022233009 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.001449317671358585 1.928503632545471 0.03217223659157753 0.3847475349903107 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.911528825759888 0.01366442814469338</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"202\" source=\"#ID1534\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1531\">\r\n                    <float_array count=\"606\" id=\"ID1535\">6.128600361442149e-007 0.6840769881677191 -0.7294098122859376 -0.0003142089705117116 0.844635117266066 -0.5353423390258441 9.386065420688752e-007 0.8779194969412163 -0.4788082673571967 -9.386065420688752e-007 -0.8779194969412163 0.4788082673571967 0.0003142089705117116 -0.844635117266066 0.5353423390258441 -6.128600361442149e-007 -0.6840769881677191 0.7294098122859376 -0.001925969402956692 0.6114911657791373 -0.791248914574883 0.001925969402956692 -0.6114911657791373 0.791248914574883 0.0003145381297959222 0.8446308682000966 -0.5353490427275611 -0.0003145381297959222 -0.8446308682000966 0.5353490427275611 -0.1006180874477454 0.6177155415554498 -0.779938145111018 0.1006180874477454 -0.6177155415554498 0.779938145111018 4.969367531929439e-010 0.894881490157497 0.4463038410920274 -0.001291978520968337 0.6585055303928173 0.7525747784995027 1.001052099419736e-009 0.6063749440270834 0.7951788649455865 -1.001052099419736e-009 -0.6063749440270834 -0.7951788649455865 0.001291978520968337 -0.6585055303928173 -0.7525747784995027 -4.969367531929439e-010 -0.894881490157497 -0.4463038410920274 0.001925917791914164 0.6114792511770825 -0.7912581223725752 -0.001925917791914164 -0.6114792511770825 0.7912581223725752 -0.06164021264500252 0.6013047843270357 -0.7966385884016014 0.06164021264500252 -0.6013047843270357 0.7966385884016014 -0.002644288432719418 0.9089634573760564 0.4168674140463013 0.002644288432719418 -0.9089634573760564 -0.4168674140463013 0.001291971215169704 0.6585055365302968 0.7525747731417293 -0.001291971215169704 -0.6585055365302968 -0.7525747731417293 0.1006180685619479 0.6177085888725438 -0.7799436540622367 -0.1006180685619479 -0.6177085888725438 0.7799436540622367 -0.457138707571557 0.3553778220514752 -0.8153102511521345 0.457138707571557 -0.3553778220514752 0.8153102511521345 0.09331129554943694 0.6791844739812039 0.7280119864574765 -0.09331129554943694 -0.6791844739812039 -0.7280119864574765 0.002644295945974327 0.9089634594849646 0.4168674094002494 -0.002644295945974327 -0.9089634594849646 -0.4168674094002494 0.06164146348256043 0.6012926394439115 -0.7966476584603147 -0.06164146348256043 -0.6012926394439115 0.7966476584603147 -0.3534342557912457 0.7119731748590228 -0.6067770802481349 0.3534342557912457 -0.7119731748590228 0.6067770802481349 0.02924273660338733 0.9041888065487982 0.4261308067575084 -0.02924273660338733 -0.9041888065487982 -0.4261308067575084 -0.09331117542665858 0.6791852066164548 0.7280113183556001 0.09331117542665858 -0.6791852066164548 -0.7280113183556001 0.4571384098397874 0.3553681588594452 -0.8153146300159212 -0.4571384098397874 -0.3553681588594452 0.8153146300159212 -0.7577190848040959 0.3973032107154196 -0.5176987031844511 0.7577190848040959 -0.3973032107154196 0.5176987031844511 0.3817826116955557 0.6639727354523177 0.6429480880933445 -0.3817826116955557 -0.6639727354523177 -0.6429480880933445 -0.02924227528812681 0.9041889475495584 0.4261305392308737 0.02924227528812681 -0.9041889475495584 -0.4261305392308737 0.3534405366926419 0.7119593419342024 -0.606789652560947 -0.3534405366926419 -0.7119593419342024 0.606789652560947 -0.5510939953671437 0.7400984093180693 -0.385421526118018 0.5510939953671437 -0.7400984093180693 0.385421526118018 0.2241640399453825 0.8706733606552441 0.4378108978093943 -0.2241640399453825 -0.8706733606552441 -0.4378108978093943 -0.3817811736126304 0.6639780421091951 0.642943461800338 0.3817811736126304 -0.6639780421091951 -0.642943461800338 0.7577242285038515 0.3972933108754175 -0.5176987721367438 -0.7577242285038515 -0.3972933108754175 0.5176987721367438 -0.8609538082186087 0.3950426369975656 -0.3204681810537273 0.8609538082186087 -0.3950426369975656 0.3204681810537273 0.6673193653866828 0.5618732751990277 0.4888591690835232 -0.6673193653866828 -0.5618732751990277 -0.4888591690835232 -0.2241599652446266 0.8706753570527359 0.4378090138435005 0.2241599652446266 -0.8706753570527359 -0.4378090138435005 0.5511053480631766 0.7400875112290761 -0.38542621999407 -0.5511053480631766 -0.7400875112290761 0.38542621999407 -0.6339896614048989 0.7262465481499139 -0.2657499962973408 0.6339896614048989 -0.7262465481499139 0.2657499962973408 0.3998168551749346 0.8534018871285293 0.3344423737559136 -0.3998168551749346 -0.8534018871285293 -0.3344423737559136 -0.66731407538091 0.5618897450471379 0.4888474600623219 0.66731407538091 -0.5618897450471379 -0.4888474600623219 0.8609593490701201 0.3950356538503604 -0.3204619032518112 -0.8609593490701201 -0.3950356538503604 0.3204619032518112 -0.8988689238162904 0.3942461495617065 -0.1913233685494596 0.8988689238162904 -0.3942461495617065 0.1913233685494596 0.7283537775783645 0.6275371629439781 0.2751324841082005 -0.7283537775783645 -0.6275371629439781 -0.2751324841082005 -0.3998115996034019 0.8534065930400281 0.3344366483781063 0.3998115996034019 -0.8534065930400281 -0.3344366483781063 0.6340044397489889 0.7262338056222191 -0.2657495624644367 -0.6340044397489889 -0.7262338056222191 0.2657495624644367 -0.6726026519052687 0.725781149555615 -0.1443862721997141 0.6726026519052687 -0.725781149555615 0.1443862721997141 0.4201432233616178 0.8931283013615952 0.1606284818152159 -0.4201432233616178 -0.8931283013615952 -0.1606284818152159 -0.728355216334616 0.6275344039178031 0.2751349682204766 0.728355216334616 -0.6275344039178031 -0.2751349682204766 0.8988743871289552 0.3942317592744247 -0.1913273533578971 -0.8988743871289552 -0.3942317592744247 0.1913273533578971 -0.904888817089381 0.4255285472945364 0.01008385561096054 0.904888817089381 -0.4255285472945364 -0.01008385561096054 0.7259477785303447 0.6767357693169247 0.1225908698634929 -0.7259477785303447 -0.6767357693169247 -0.1225908698634929 -0.4201461494678589 0.8931264266291222 0.1606312520776282 0.4201461494678589 -0.8931264266291222 -0.1606312520776282 0.6726225954035205 0.7257611192617377 -0.1443940508489927 -0.6726225954035205 -0.7257611192617377 0.1443940508489927 -0.6045394279521578 0.7960919868723888 0.02774217887711796 0.6045394279521578 -0.7960919868723888 -0.02774217887711796 0.4055797586912695 0.9118155828195894 0.06401095427584386 -0.4055797586912695 -0.9118155828195894 -0.06401095427584386 -0.7259411183171096 0.6767440188828733 0.122584769212008 0.7259411183171096 -0.6767440188828733 -0.122584769212008 0.904891680280896 0.4255225800980013 0.01007872934236248 -0.904891680280896 -0.4255225800980013 -0.01007872934236248 -0.8244249006574319 0.4220939913763589 0.3770414375369871 0.8244249006574319 -0.4220939913763589 -0.3770414375369871 0.7178561239409382 0.6953700531279656 -0.03380938528430715 -0.7178561239409382 -0.6953700531279656 0.03380938528430715 -0.4055734414635172 0.9118187127533433 0.06400639540135789 0.4055734414635172 -0.9118187127533433 -0.06400639540135789 0.6045479253195766 0.7960855311013991 0.02774226311603459 -0.6045479253195766 -0.7960855311013991 -0.02774226311603459 -0.520461789693991 0.7996555798249611 0.2994502949127498 0.520461789693991 -0.7996555798249611 -0.2994502949127498 0.4169491499270961 0.9082925536082132 -0.0340300372456919 -0.4169491499270961 -0.9082925536082132 0.0340300372456919 -0.7178499013754158 0.6953767735306654 -0.03380328281968029 0.7178499013754158 -0.6953767735306654 0.03380328281968029 0.8244304220700673 0.42208399743857 0.3770405525558863 -0.8244304220700673 -0.42208399743857 -0.3770405525558863 -0.5374118567073094 0.4163750394213115 0.7333623407411262 0.5374118567073094 -0.4163750394213115 -0.7333623407411262 0.6153207668073935 0.7069640641929612 -0.3486863431156029 -0.6153207668073935 -0.7069640641929612 0.3486863431156029 -0.4169425741389288 0.9082957376618707 -0.03402561998968118 0.4169425741389288 -0.9082957376618707 0.03402561998968118 0.5204810111627883 0.7996418884984935 0.2994534474296871 -0.5204810111627883 -0.7996418884984935 -0.2994534474296871 -0.2699000820828266 0.8084765996171364 0.5229909497909081 0.2699000820828266 -0.8084765996171364 -0.5229909497909081 0.3563384704058399 0.8984507696935942 -0.2565328613371287 -0.3563384704058399 -0.8984507696935942 0.2565328613371287 -0.6153069154673361 0.7069814264632994 -0.3486755833349832 0.6153069154673361 -0.7069814264632994 0.3486755833349832 0.5374137069235633 0.4163662298492717 0.7333659865659014 -0.5374137069235633 -0.4163662298492717 -0.7333659865659014 -0.1102595056986163 0.6041944645946928 0.7891716482212404 0.1102595056986163 -0.6041944645946928 -0.7891716482212404 0.3497908904793823 0.7485760896646085 -0.563276282937676 -0.3497908904793823 -0.7485760896646085 0.563276282937676 -0.3563267758811212 0.8984562983297307 -0.2565297424896443 0.3563267758811212 -0.8984562983297307 0.2565297424896443 0.2699024119542983 0.8084670402013563 0.5230045247694426 -0.2699024119542983 -0.8084670402013563 -0.5230045247694426 -0.03236051657316586 0.8431449359226038 0.5367116674669802 0.03236051657316586 -0.8431449359226038 -0.5367116674669802 0.15167984215981 0.9399767739299777 -0.3056744836497922 -0.15167984215981 -0.9399767739299777 0.3056744836497922 -0.3497863484367549 0.7485814332558655 -0.5632720019953729 0.3497863484367549 -0.7485814332558655 0.5632720019953729 0.1102607918778887 0.6041870483927864 0.7891771463549068 -0.1102607918778887 -0.6041870483927864 -0.7891771463549068 -0.01255478291219509 0.6182595626877923 0.7858737115918354 0.01255478291219509 -0.6182595626877923 -0.7858737115918354 0.0871192663472851 0.8369719858849694 -0.5402667195699559 -0.0871192663472851 -0.8369719858849694 0.5402667195699559 -0.1516789233016182 0.9399777592119516 -0.3056719097544625 0.1516789233016182 -0.9399777592119516 0.3056719097544625 0.03236331531330518 0.8431339299655836 0.5367287880882876 -0.03236331531330518 -0.8431339299655836 -0.5367287880882876 0.09431746603273164 0.5380671052349956 0.8376085039355778 -0.09431746603273164 -0.5380671052349956 -0.8376085039355778 -0.03019305672699172 0.7278128100128949 0.6851108617637107 0.03019305672699172 -0.7278128100128949 -0.6851108617637107 0.03067908811827804 0.9512473880934572 -0.3068993323511907 -0.03067908811827804 -0.9512473880934572 0.3068993323511907 -0.08712026188797994 0.8369724020630891 -0.5402659142989795 0.08712026188797994 -0.8369724020630891 0.5402659142989795 0.01255462315995493 0.6182537225919658 0.7858783086066747 -0.01255462315995493 -0.6182537225919658 -0.7858783086066747 2.380743700391382e-007 0.4408306292320842 0.8975903053903757 -2.380743700391382e-007 -0.4408306292320842 -0.8975903053903757 0.2553438641265905 0.6261687724546333 0.7366900158516871 -0.2553438641265905 -0.6261687724546333 -0.7366900158516871 1.437911629610173e-007 0.6476662694700774 0.7619241454309559 -1.437911629610173e-007 -0.6476662694700774 -0.7619241454309559 -0.01722143407120868 0.7827482930805981 -0.6221000979649022 0.01722143407120868 -0.7827482930805981 0.6221000979649022 -0.03068035818936333 0.9512472595490038 -0.3068996038151283 0.03068035818936333 -0.9512472595490038 0.3068996038151283 0.03019317537246524 0.7278014255281793 0.6851229503965529 -0.03019317537246524 -0.7278014255281793 -0.6851229503965529 -0.09431575631846477 0.5380684094560438 0.8376078586400196 0.09431575631846477 -0.5380684094560438 -0.8376078586400196 -1.903637264665041e-009 0.8217151404454917 0.5698984365329017 1.903637264665041e-009 -0.8217151404454917 -0.5698984365329017 -0.006609870843098183 0.9419276296900147 -0.3357508749564002 0.006609870843098183 -0.9419276296900147 0.3357508749564002 0.01722136611832838 0.7827483236145768 -0.6221000614270894 -0.01722136611832838 -0.7827483236145768 0.6221000614270894 -0.2553377958902426 0.6261678416535161 0.7366929102881947 0.2553377958902426 -0.6261678416535161 -0.7366929102881947 -9.862734229464834e-010 0.7385473108944132 -0.6742016534914694 9.862734229464834e-010 -0.7385473108944132 0.6742016534914694 0.006609858237680783 0.9419276456734308 -0.3357508303641045 -0.006609858237680783 -0.9419276456734308 0.3357508303641045 -5.914188849881876e-010 0.9347435500271971 -0.3553230863348913 5.914188849881876e-010 -0.9347435500271971 0.3553230863348913</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"202\" source=\"#ID1535\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1533\">\r\n                    <float_array count=\"624\" id=\"ID1536\">-0.05380870815511803 10.02615970184128 2.469327384643551 9.869515624641515 -0.0533492419844185 9.885573640941855 2.695509980669273 11.09340950000694 2.714420445137348 10.94051719289138 0.1933439381652574 11.11649030137573 0.08283134771281404 10.02610094892601 0.08237163622220682 9.885514888522888 -2.440304755920862 9.869456872279237 3.917851124051062 10.98062779597724 2.192658991959701 10.96319908686411 2.169567624052186 11.11573559076327 -0.1655737740176625 -12.78515855351413 2.335121354259058 -12.96272995353259 -0.1670414371732786 -12.93943206437335 -2.666529615291092 11.09373316119279 -0.1643644549579891 11.11681441138162 -2.685440586750941 10.94083788099445 4.002737599078533 11.57203397921939 4.065199224210197 11.4226589805636 2.318009211600533 11.56625389074455 2.549293041229248 -12.20109509134276 2.516766786575317 -12.36432661201445 0.01449317671358563 -12.20109509134276 0.1945589067152743 -12.78498790905135 0.1960265703843204 -12.93926141990754 -2.30613534556603 -12.96255930906632 -2.140578639992576 11.11556974847594 -2.163670740596903 10.96303029430335 -3.888861079008852 10.98045934051256 0.6315873549859696 11.27431109715125 0.2651173038680699 11.18407150777661 0.1737275907395747 11.32392373563129 2.475224153187638 -12.20323771530714 4.126826737481165 -12.36133839440843 2.44209458583373 -12.36639413197201 0.01449317671358574 -12.20109509134276 -2.487779557704926 -12.36432661201445 -2.5203076004982 -12.20109509134276 -3.973750784243558 11.57198732316051 -2.289021503369634 11.56620711579573 -4.036210388611464 11.42260925202844 0.08228287036970761 10.1013326287451 0.1868423606318254 9.966703678166272 -0.2720222552018592 10.01019335227733 4.014792876585607 -12.2685279360334 4.09740678853818 -12.43776498794701 2.446036325079714 -12.2781708593734 -2.446238966445645 -12.20317121662351 -2.413107611266176 -12.36632762923594 -4.097840656967279 -12.36127189179793 -0.1452202178875478 11.32042239558104 -0.236609804368596 11.18056739333164 -0.6030812903635374 11.27080877288327 -8.022286860006334 5.593261486731232 -8.167981207212625 5.701679535064567 -7.792875250136092 5.879410405840596 8.739995187286191 -10.84044096350622 8.385363300433259 -10.93079034335959 8.267845782222405 -10.77484689111856 -3.985804373263655 -12.26843523952335 -2.417051099865585 -12.2780781633298 -4.068420667613448 -12.43767229962311 -0.0539118208473538 10.09787861455891 0.3003947571417248 10.00673767966941 -0.1584712148151629 9.963247214195681 -7.061976761004196 5.184606121782157 -7.44117463541251 5.012332592839834 -7.275030817548849 5.226414065630704 8.058384143284908 -11.8030467490348 8.16659818377264 -11.94851691915868 7.69657085052069 -11.87408655367555 -8.23955135980237 -10.77842060139959 -8.357070947486893 -10.93436387847232 -8.711705015920382 -10.84401460010668 8.191255306804186 5.695031534054818 8.045558458843509 5.586612580813333 7.816147521064625 5.872763888256488 -7.730668185584237 3.167776477787669 -7.944421259824952 3.207314744907487 -7.585321762754447 3.456563622575323 16.46611971504321 -5.474538374457483 16.2980198494438 -5.370032995525104 16.61541297319499 -5.252907565510547 -8.029911154756903 -11.80643646820372 -7.668097493578577 -11.87747606863542 -8.138129135209356 -11.95190622016309 7.465085244636752 5.006713775956396 7.085885088693217 5.178988191552556 7.298942258767398 5.22079635057736 -8.441671786793989 4.045887376002375 -8.795823948881619 3.792295743166499 -8.651318680868776 4.066102843541724 17.53888569422124 -5.401548196061816 17.73175217697868 -5.431685628113611 17.42459909925773 -5.564637171484631 -16.27663497001927 -5.377734917012615 -16.44473700847936 -5.482240075722087 -16.59403301421012 -5.260609733815044 7.967753567962989 3.203040242451181 7.753997314570496 3.163502001417317 7.608657415129363 3.452288955673404 -8.893471066252115 1.163615445163711 -9.10327908769538 1.182768515764871 -8.820198992148935 1.501712627489478 18.21313751638797 -3.692606818175909 18.01918197613998 -3.667159552472572 18.32798399354051 -3.410240891940054 -17.51982134757863 -5.41278623894306 -17.40553230134771 -5.575873952955945 -17.71269103070093 -5.44292343789721 8.818296075081838 3.787063216178194 8.464147260825534 4.040654650115789 8.673797171430994 4.060870101799641 -9.44481667624879 1.794327895487298 -9.725538419038109 1.474096433930082 -9.64934725501584 1.800072789742478 17.32529019022485 -3.678105730668172 17.43287758364442 -3.410915674581981 17.64409043916598 -3.428858858631469 -18.31022646007288 -3.417863523895226 -18.00142150737727 -3.674780213682573 -18.19538021287728 -3.700227284187649 9.125261741698838 1.180443847057856 8.915450708245798 1.16129077824844 8.842181588537358 1.499387928945664 -9.474646054522664 1.143525837893942 -9.679178527573013 1.149228844032068 -9.413183324947861 1.503849442994916 17.80951438488398 -2.260050022788326 17.59819015422691 -2.242937601662701 17.87855371886245 -1.933089236309175 -17.41354326494719 -3.416890403162804 -17.3059550593323 -3.684081144780982 -17.62475477720695 -3.434833633249285 9.747071760034585 1.47141517142829 9.466350995741708 1.791647165612336 9.67088146016896 1.797392069422744 -7.717269545573585 0.3042754695831612 -7.680552920451054 0.6521793938305373 -7.446535059711652 0.6566695755527798 17.14807018289559 -2.117295267826407 17.21167733516982 -1.785595462078189 17.43175062511593 -1.809320861181577 -17.85961717355434 -1.936399726504026 -17.57925413269361 -2.24624838514796 -17.79057702499381 -2.263360822471536 9.700676675036 1.147325899379445 9.496144316272888 1.141622884759032 9.434680060174202 1.501947025782269 -7.365922553757773 -1.934956066044626 -7.599939764880167 -1.939467151009083 -7.430403382971643 -1.600112621366761 17.53937998476847 -1.184786782725471 17.31926709982417 -1.16128979106497 17.57098702004867 -0.8365725056749495 -17.19151097042277 -1.788152872528991 -17.12790601969691 -2.119852171994886 -17.41158728655829 -1.811878235419665 7.703677431307231 0.6512296301189862 7.740391028713226 0.3033258025207887 7.469653833058668 0.6557198105938373 -7.277169507095795 -2.049438454343182 -7.344226170140487 -1.732221820826337 -7.108525561792963 -1.709808851939396 17.01432816492904 -1.044346485594764 17.03902608469128 -0.703769713619851 17.26691184597801 -0.7200445457025309 -17.551056120922 -0.8378084385110383 -17.29933515195096 -1.162525552957664 -17.51945105836678 -1.186022532248465 7.62314572605751 -1.937863479616851 7.3891227774384 -1.933352394983213 7.453602315184695 -1.598508974861046 -6.362828502231192 -6.069120517714572 -6.598201956491736 -6.093568700597403 -6.550735961317874 -5.829143606752477 17.45140341847328 0.8585311205752961 17.22353562204133 0.8749608794588334 17.3938590916468 1.176901778452265 -17.01849989635089 -0.7046791388334163 -16.99380285037305 -1.045255855238144 -17.24638733125057 -0.7209539682606144 7.368170362462248 -1.730417311119357 7.301123392545696 -2.047633569055367 7.132471153464324 -1.708004368769112 -3.609431739334912 -6.566014062281595 -3.813794288459234 -6.390686311648089 -3.584116150451824 -6.299709170919823 16.79275177785766 1.111610850259286 16.73653810964288 1.365447152584783 16.9604724151008 1.414452080066858 -17.37371202841378 1.17921589028315 -17.2033804271112 0.8772758598705845 -17.43124990248817 0.8608461482498537 6.622757713056812 -6.088408624530629 6.387385689375017 -6.063960291505319 6.575288669845557 -5.82398190678425 -1.070664898439768 -9.10248158322648 -1.292130162331143 -9.205290982842362 -1.485995838992753 -8.92873692126939 15.39845217984451 5.505958467381132 15.17795653455731 5.44810323459475 15.2159568444035 5.695629069246537 -16.71527400723095 1.368069988257085 -16.77148802860013 1.114234073532352 -16.93921574627554 1.417074840910039 3.840162049355425 -6.386761718092833 3.6357940925184 -6.562090788560848 3.610479456259792 -6.29578389250567 3.336803069423739 -7.463342982331089 2.97442271292554 -7.349328937631624 3.099283388677669 -7.20872904478977 11.51826065585274 7.035744374802508 11.35088847557238 7.12821780049199 11.51148367367722 7.285011787033255 -15.15416185348659 5.455622738459792 -15.37466508242597 5.513477827337386 -15.19216085011591 5.703147957417179 1.319874456606009 -9.201299470312357 1.098404946621058 -9.098488965808315 1.51373869210039 -8.92474243662488 4.552118182182312 -7.664626745175032 4.434280395507813 -7.808928913568809 3.920661807060242 -7.664626745175032 11.24483992100088 7.480637013323874 11.08608965271641 7.322684619291019 10.88574069705672 7.600904109249646 -11.32383549790549 7.132850771450945 -11.49120822426326 7.04037759881887 -11.48443440188923 7.289644328918891 -2.945349655131783 -7.348738723830701 -3.307728792902329 -7.462753979116228 -3.070209379436171 -7.208137338117762 3.943541049957273 -12.35581500746084 4.55211818218231 -12.98671323878099 3.92066180706024 -12.98671323878099 2.628585590388074 -10.28710414578369 2.08684181598452 -10.28024522552557 2.126269005759161 -10.11998517144959 8.262191974363937 6.995507731040081 7.958045262470991 7.090038433186434 8.031569136812552 7.258817252443395 -11.05889938787842 7.327172846147806 -11.2176536103565 7.485124686592735 -10.85855476705862 7.60539136100915 -3.891672492027283 -7.664909854313903 -4.40529465675354 -7.809214022037327 -4.523130357265472 -7.664909854313903 4.328884036974373 -12.29754953042057 4.320734485693432 -12.92867187812786 0.4016776935553612 -12.41337861786099 11.24639974346111 -8.218459380038901 11.44064970086064 -8.985911243392785 10.61176139123148 -8.53641050438708 3.900297128442823 -10.25243517339981 0.02042066034977062 -10.09188964063419 3.92658910476724 -10.09051700491245 2.992779383146418 8.625072438692831 2.94976641275648 8.449896296879995 2.451018764299815 8.631051589117122 -7.929664764260844 7.092175497915052 -8.233805105814426 6.997644807516901 -8.003187874585274 7.260954296196313 -2.057979506169385 -10.2789983789781 -2.599725654599161 -10.2858574109507 -2.097405948464584 -10.11873571467056 -3.914557397365568 -12.35579316755734 -3.891672492027281 -12.986688111843 -4.523130357265471 -12.986688111843 0.02687899325162695 -12.79901199847697 3.933486458816073 -13.36981634318971 0.02731870266585258 -13.37209924485815 4.091938431373729 -8.371881898406425 0.2123861419828262 -8.43707022536165 0.2108512462680907 -8.230602030692712 4.212015702232384 9.663859545268688 3.706137154243328 9.658266304365233 3.72255627737955 9.860067139782384 -2.920868219725448 8.44896669889777 -2.963880040260758 8.624142796778127 -2.422117045149522 8.630121945702905 0.008588849727731681 -10.09208049180067 -3.871285678251858 -10.2526285762621 -3.897576633068511 -10.09070783426238 -0.3726934217549541 -12.41377619472284 -4.291747019996334 -12.92906683723967 -4.299902495320053 -12.29794769570773 -10.58480197896604 -8.542838562289346 -11.41368134563579 -8.992341397305667 -11.21943894774718 -8.224885955343089 0.002129902643298674 -12.79902576207975 0.001690993740716476 -13.37211300884068 -3.904473800800141 -13.36983010717072 -0.1834014049554984 -8.437203570058866 -4.062951924705676 -8.372015243104659 -0.1818665085408016 -8.230735375393149 3.564617618765245 9.675722731788627 -0.29960241337697 9.808336336221796 3.579836285876353 9.877581793384563 -3.677153188720006 9.658136852898412 -4.183032630820126 9.663730093468221 -3.693569632525103 9.859937676277907 0.3285849908930763 9.808099469443674 -3.535635954205661 9.675485879299483 -3.550851938882881 9.877344919145314 3.627972635438376 10.3005003741877 -0.2336695137521053 10.24214598982511 -0.2358732435270384 10.43969715816428 0.2626533657364339 10.24194590423555 -3.598989696227069 10.30030028859921 0.264857094990649 10.43949707257832</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"312\" source=\"#ID1536\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1532\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1530\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1531\"/>\r\n                </vertices>\r\n                <triangles count=\"104\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1532\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1533\"/>\r\n                    <p>0 0 1 1 2 2 6 3 1 4 0 5 0 6 2 7 8 8 10 9 1 10 6 11 12 12 13 13 14 14 18 15 0 16 8 17 20 18 10 19 6 20 22 21 13 22 12 23 12 24 14 25 24 26 18 27 8 28 26 29 28 30 10 31 20 32 22 33 30 34 13 35 12 36 24 37 32 38 34 39 18 40 26 41 36 42 28 43 20 44 38 45 30 46 22 47 32 48 24 49 40 50 34 51 26 52 42 53 28 54 36 55 44 56 46 57 30 58 38 59 48 60 32 61 40 62 50 63 34 64 42 65 44 66 36 67 52 68 54 69 46 70 38 71 48 72 40 73 56 74 50 75 42 76 58 77 44 78 52 79 60 80 46 81 54 82 62 83 64 84 48 85 56 86 50 87 58 88 66 89 60 90 52 91 68 92 70 93 62 94 54 95 64 96 56 97 72 98 66 99 58 100 74 101 60 102 68 103 76 104 62 105 70 106 78 107 80 108 64 109 72 110 66 111 74 112 82 113 76 114 68 115 84 116 70 117 86 118 78 119 88 120 80 121 72 122 82 123 74 124 90 125 76 126 84 127 92 128 78 129 86 130 94 131 96 132 80 133 88 134 82 135 90 136 98 137 84 138 100 139 92 140 86 141 102 142 94 143 104 144 96 145 88 146 98 147 90 148 106 149 92 150 100 151 108 152 94 153 102 154 110 155 112 156 96 157 104 158 114 159 98 160 106 161 100 162 116 163 108 164 102 165 118 166 110 167 120 168 112 169 104 170 114 171 106 172 122 173 108 174 116 175 124 176 110 177 118 178 126 179 128 180 112 181 120 182 130 183 114 184 122 185 116 186 132 187 124 188 118 189 134 190 126 191 136 192 128 193 120 194 130 195 122 196 138 197 124 198 132 199 140 200 126 201 134 202 142 203 144 204 128 205 136 206 146 207 130 208 138 209 132 210 148 211 140 212 134 213 150 214 142 215 144 216 136 217 152 218 146 219 138 220 154 221 140 222 148 223 156 224 142 225 150 226 158 227 160 228 144 229 152 230 162 231 146 232 154 233 164 234 140 235 156 236 148 237 166 238 156 239 150 240 168 241 158 242 160 243 152 244 170 245 172 246 162 247 154 248 164 249 156 250 174 251 176 252 140 253 164 254 166 255 178 256 156 257 158 258 168 259 180 260 182 261 160 262 170 263 184 264 162 265 172 266 186 267 172 268 154 269 174 270 156 271 178 272 166 273 188 274 178 275 168 276 190 277 180 278 182 279 170 280 192 281 178 282 184 283 172 284 174 285 172 286 186 287 186 288 154 289 194 290 174 291 178 292 172 293 188 294 184 295 178 296 190 297 196 298 180 299 198 300 182 301 192 302 196 303 198 304 192 305 190 306 200 307 196 308 200 309 198 310 196 311</p>\r\n                </triangles>\r\n                <triangles count=\"104\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1532\"/>\r\n                    <p>3 4 5 5 4 7 9 3 5 7 4 11 15 16 17 9 5 19 7 11 21 17 16 23 25 15 17 27 9 19 21 11 29 16 31 23 33 25 17 27 19 35 21 29 37 23 31 39 41 25 33 43 27 35 45 37 29 39 31 47 41 33 49 43 35 51 53 37 45 39 47 55 57 41 49 59 43 51 61 53 45 63 55 47 57 49 65 67 59 51 69 53 61 55 63 71 73 57 65 75 59 67 77 69 61 79 71 63 73 65 81 83 75 67 85 69 77 79 87 71 73 81 89 91 75 83 93 85 77 95 87 79 89 81 97 99 91 83 93 101 85 95 103 87 89 97 105 107 91 99 109 101 93 111 103 95 105 97 113 107 99 115 109 117 101 111 119 103 105 113 121 123 107 115 125 117 109 127 119 111 121 113 129 123 115 131 125 133 117 127 135 119 121 129 137 139 123 131 141 133 125 143 135 127 137 129 145 139 131 147 141 149 133 143 151 135 153 137 145 155 139 147 157 149 141 159 151 143 153 145 161 155 147 163 157 141 165 157 167 149 159 169 151 171 153 161 155 163 173 175 157 165 165 141 177 157 179 167 181 169 159 171 161 183 173 163 185 155 173 187 179 157 175 179 189 167 181 191 169 193 171 183 173 185 179 187 173 175 195 155 187 173 179 175 179 185 189 181 197 191 193 183 199 193 199 197 197 201 191 197 199 201</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1537\">\r\n            <mesh>\r\n                <source id=\"ID1543\">\r\n                    <float_array count=\"144\" id=\"ID1547\">-0.2549293041229248 1.913302659988403 -0.1713338941335678 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.2549293041229248 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 -0.3876460790634155 1.911528825759888 0.01913142576813698 -0.3876460790634155 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 -0.4117976725101471 1.911528825759888 -0.1705324798822403 -0.4117976725101471 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 -0.4382359385490418 1.911528825759888 0.01968160644173622 -0.4382359385490418 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 -0.4486589431762695 1.911528825759888 -0.1648858040571213 -0.4486589431762695 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 -0.4662005603313446 1.911528825759888 -0.1489890366792679 -0.4662005603313446 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 -0.4692228436470032 1.911528825759888 0.009228713810443878 -0.4692228436470032 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 -0.4822799563407898 1.911528825759888 -0.1171957403421402 -0.4822799563407898 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 -0.4914830029010773 1.911528825759888 -0.0755583867430687 -0.4914830029010773 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 -0.4949836730957031 1.911528825759888 -0.03233586996793747 -0.4949836730957031 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID1547\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1544\">\r\n                    <float_array count=\"144\" id=\"ID1548\">-0.002644288432719418 0.9089634573760564 0.4168674140463013 4.969367531929439e-010 0.894881490157497 0.4463038410920274 -5.914188849881876e-010 0.9347435500271971 -0.3553230863348913 5.914188849881876e-010 -0.9347435500271971 0.3553230863348913 -4.969367531929439e-010 -0.894881490157497 -0.4463038410920274 0.002644288432719418 -0.9089634573760564 -0.4168674140463013 0.002644295945974327 0.9089634594849646 0.4168674094002494 -0.002644295945974327 -0.9089634594849646 -0.4168674094002494 -0.006609870843098183 0.9419276296900147 -0.3357508749564002 0.006609870843098183 -0.9419276296900147 0.3357508749564002 0.006609858237680783 0.9419276456734308 -0.3357508303641045 -0.006609858237680783 -0.9419276456734308 0.3357508303641045 0.02924273660338733 0.9041888065487982 0.4261308067575084 -0.02924273660338733 -0.9041888065487982 -0.4261308067575084 -0.02924227528812681 0.9041889475495584 0.4261305392308737 0.02924227528812681 -0.9041889475495584 -0.4261305392308737 0.03067908811827804 0.9512473880934572 -0.3068993323511907 -0.03067908811827804 -0.9512473880934572 0.3068993323511907 -0.03068035818936333 0.9512472595490038 -0.3068996038151283 0.03068035818936333 -0.9512472595490038 0.3068996038151283 0.2241640399453825 0.8706733606552441 0.4378108978093943 -0.2241640399453825 -0.8706733606552441 -0.4378108978093943 -0.2241599652446266 0.8706753570527359 0.4378090138435005 0.2241599652446266 -0.8706753570527359 -0.4378090138435005 0.3998168551749346 0.8534018871285293 0.3344423737559136 -0.3998168551749346 -0.8534018871285293 -0.3344423737559136 -0.3998115996034019 0.8534065930400281 0.3344366483781063 0.3998115996034019 -0.8534065930400281 -0.3344366483781063 0.15167984215981 0.9399767739299777 -0.3056744836497922 -0.15167984215981 -0.9399767739299777 0.3056744836497922 -0.1516789233016182 0.9399777592119516 -0.3056719097544625 0.1516789233016182 -0.9399777592119516 0.3056719097544625 0.4201432233616178 0.8931283013615952 0.1606284818152159 -0.4201432233616178 -0.8931283013615952 -0.1606284818152159 -0.4201461494678589 0.8931264266291222 0.1606312520776282 0.4201461494678589 -0.8931264266291222 -0.1606312520776282 0.3563384704058399 0.8984507696935942 -0.2565328613371287 -0.3563384704058399 -0.8984507696935942 0.2565328613371287 -0.3563267758811212 0.8984562983297307 -0.2565297424896443 0.3563267758811212 -0.8984562983297307 0.2565297424896443 0.4055797586912695 0.9118155828195894 0.06401095427584386 -0.4055797586912695 -0.9118155828195894 -0.06401095427584386 -0.4055734414635172 0.9118187127533433 0.06400639540135789 0.4055734414635172 -0.9118187127533433 -0.06400639540135789 0.4169491499270961 0.9082925536082132 -0.0340300372456919 -0.4169491499270961 -0.9082925536082132 0.0340300372456919 -0.4169425741389288 0.9082957376618707 -0.03402561998968118 0.4169425741389288 -0.9082957376618707 0.03402561998968118</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID1548\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1546\">\r\n                    <float_array count=\"76\" id=\"ID1549\">5.098586082458496 -3.793412971426244 0.02898635342717173 -3.793412971426244 0.02898635342717173 -0.09327644780219568 0.02898635342717169 -3.793412971426244 -5.040615200996399 -3.793412971426244 0.02898635342717169 -0.09327644780219568 5.10368117777181 -3.786432228989693 0.03407676994508434 -0.08630211584569986 7.758011929317281 0.02304267326305717 0.02389593761035827 -0.08630218760122092 -5.045710295607492 -3.786432300744443 -7.700041047154103 0.02304260150751324 7.803433022620331 -3.465786126433319 4.665865079960936 -3.481814428052453 7.320431992283355 0.3274959133999949 -4.607896991491319 -3.481812852925806 -7.74545837805893 -3.465784551307054 -7.262463903943627 0.3274974884361274 8.235953450202942 -3.410649597644806 7.752921581268311 0.3826285153627396 8.764718770980835 0.3936321288347244 -7.694950699806213 0.3826285153627396 -8.177976012229919 -3.410649597644806 -8.706749677658081 0.3936321288347244 8.973178863525391 -3.297716081142426 -8.915202021598816 -3.297716081142426 9.324011206626892 -2.979780733585358 -9.26603376865387 -2.979780733585358 9.384456872940064 0.1845742762088776 -9.326475262641907 0.1845742762088776 9.645599126815796 -2.343914806842804 -9.587626457214356 -2.343914806842804 9.744054079055786 -0.0104040652513504 -9.686073064804077 -0.0104040652513504 9.829660058021545 -1.511167734861374 -9.771678447723389 -1.511167734861374 9.899673461914063 -0.6467173993587494 -9.841688871383667 -0.6467173993587494</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"38\" source=\"#ID1549\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1545\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1543\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1544\"/>\r\n                </vertices>\r\n                <triangles count=\"44\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1545\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1546\"/>\r\n                    <p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 0 6 2 7 8 8 9 8 3 7 5 6 2 9 6 10 10 11 11 11 7 10 3 9 12 12 0 13 8 14 9 14 5 13 13 12 6 15 14 16 10 17 11 17 15 16 7 15 12 18 8 19 16 20 17 20 9 19 13 18 10 21 14 22 18 23 19 23 15 22 11 21 20 24 12 18 16 20 17 20 13 18 21 24 14 22 22 25 18 23 19 23 23 25 15 22 24 26 20 24 16 20 17 20 21 24 25 26 22 25 26 27 18 23 19 23 27 27 23 25 28 28 24 26 16 20 17 20 25 26 29 28 26 27 30 29 18 23 19 23 31 29 27 27 32 30 24 26 28 28 29 28 25 26 33 30 26 27 34 31 30 29 31 29 35 31 27 27 36 32 32 30 28 28 29 28 33 30 37 32 34 31 38 33 30 29 31 29 39 33 35 31 40 34 32 30 36 32 37 32 33 30 41 34 34 31 42 35 38 33 39 33 43 35 35 31 44 36 40 34 36 32 37 32 41 34 45 36 42 35 46 37 38 33 39 33 47 37 43 35</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1550\">\r\n            <mesh>\r\n                <source id=\"ID1553\">\r\n                    <float_array count=\"90\" id=\"ID1556\">-0.75937420129776 -2.059271097183228 0.09401828050613403 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.75937420129776 -2.059271097183228 0.09401828050613403 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7132100462913513 -2.062207937240601 0.09551356732845306 -0.7132100462913513 -2.062207937240601 0.09551356732845306 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.6684518456459045 -2.059271097183228 0.09401828050613403 -0.6684518456459045 -2.059271097183228 0.09401828050613403 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID1556\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1554\">\r\n                    <float_array count=\"90\" id=\"ID1557\">-0.5561338226597609 -0.8009804129341711 0.2216879549945059 -0.9436279770637638 -0.294802001739216 -0.1505258139758768 -0.9853335926304631 -0.1499911356522045 0.08136565897052001 0.9853335926304631 0.1499911356522045 -0.08136565897052001 0.9436279770637638 0.294802001739216 0.1505258139758768 0.5561338226597609 0.8009804129341711 -0.2216879549945059 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 0.5592988209446661 0.8285232037662215 -0.02709482812018735 -0.5933286735546096 -0.641507705513458 0.4862396003050205 0.5933286735546096 0.641507705513458 -0.4862396003050205 0.00102079149857841 -0.9650401052263313 0.2621002733487091 -0.00102079149857841 0.9650401052263313 -0.2621002733487091 -0.0001897054169267276 -0.8685858618862585 0.4955386609974646 0.0001897054169267276 0.8685858618862585 -0.4955386609974646 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 0.0003259087856735385 -0.9990110688943522 0.04446097176206857 -0.0003259087856735385 0.9990110688943522 -0.04446097176206857 0.5519712570922619 -0.8023479070624949 0.2270805305974565 -0.5519712570922619 0.8023479070624949 -0.2270805305974565 0.537584015006585 -0.8419809394557429 0.04551400226989654 -0.537584015006585 0.8419809394557429 -0.04551400226989654 0.5697731445095979 -0.6724564716572923 0.4723990447935624 -0.5697731445095979 0.6724564716572923 -0.4723990447935624 0.9834002721368989 -0.1574388066126764 0.09020491634855526 -0.9834002721368989 0.1574388066126764 -0.09020491634855526 0.9534207476003748 -0.2793935727768806 -0.1137018449107683 -0.9534207476003748 0.2793935727768806 0.1137018449107683 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID1557\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1555\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1553\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1554\"/>\r\n                </vertices>\r\n                <triangles count=\"16\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1555\"/>\r\n                    <p>0 1 2 0 6 1 8 0 2 6 0 10 12 0 8 8 2 14 10 0 12 16 6 10 18 10 12 20 16 10 18 12 22 18 20 10 18 22 24 20 18 26 26 18 24 24 22 28</p>\r\n                </triangles>\r\n                <triangles count=\"16\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1555\"/>\r\n                    <p>3 4 5 4 7 5 3 5 9 11 5 7 9 5 13 15 3 9 13 5 11 11 7 17 13 11 19 11 17 21 23 13 19 11 21 19 25 23 19 27 19 21 25 19 27 29 23 25</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1558\">\r\n            <mesh>\r\n                <source id=\"ID1559\">\r\n                    <float_array count=\"114\" id=\"ID1562\">-0.7442749738693237 -1.974473595619202 0.2335336655378342 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7442749738693237 -1.974473595619202 0.2335336655378342 -0.7132100462913513 -1.981115937232971 0.2377601712942123 -0.7132100462913513 -1.981115937232971 0.2377601712942123 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.732620894908905 -1.956179261207581 0.2581743896007538 -0.732620894908905 -1.956179261207581 0.2581743896007538 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.7132100462913513 -1.961442589759827 0.2600972652435303 -0.7132100462913513 -1.961442589759827 0.2600972652435303 -0.7190929651260376 -1.930104374885559 0.2703545987606049 -0.7190929651260376 -1.930104374885559 0.2703545987606049 -0.6792644262313843 -1.974473595619202 0.2335336655378342 -0.6792644262313843 -1.974473595619202 0.2335336655378342 -0.6959635019302368 -1.956179261207581 0.2581743896007538 -0.6959635019302368 -1.956179261207581 0.2581743896007538 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.7073091864585877 -1.930104374885559 0.2703545987606049 -0.7073091864585877 -1.930104374885559 0.2703545987606049 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"38\" source=\"#ID1562\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1560\">\r\n                    <float_array count=\"114\" id=\"ID1563\">-0.6038443360950649 -0.5112675941819026 0.6115369693692765 -0.5933286735546096 -0.641507705513458 0.4862396003050205 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 0.5933286735546096 0.641507705513458 -0.4862396003050205 0.6038443360950649 0.5112675941819026 -0.6115369693692765 -0.002391138459624213 -0.7580277718353075 0.6522178927193474 0.002391138459624213 0.7580277718353075 -0.6522178927193474 -0.8510242709127007 -0.1534738216882031 0.5021986423457593 0.8510242709127007 0.1534738216882031 -0.5021986423457593 -0.0001897054169267276 -0.8685858618862585 0.4955386609974646 0.0001897054169267276 0.8685858618862585 -0.4955386609974646 -0.4816332037904218 -0.4003286159953588 0.7795937764129565 0.4816332037904218 0.4003286159953588 -0.7795937764129565 0.5697731445095979 -0.6724564716572923 0.4723990447935624 -0.5697731445095979 0.6724564716572923 -0.4723990447935624 0.01324367386319167 -0.5911598887815612 0.8064456528485832 -0.01324367386319167 0.5911598887815612 -0.8064456528485832 -0.5934713821303773 -0.1497793578805715 0.7907957147994312 0.5934713821303773 0.1497793578805715 -0.7907957147994312 0.6132460904981805 -0.4994353159705884 0.6119588202240867 -0.6132460904981805 0.4994353159705884 -0.6119588202240867 0.4595277406161648 -0.4008535545887295 0.7925595771787654 -0.4595277406161648 0.4008535545887295 -0.7925595771787654 -0.6121179836118351 -0.1235081349179034 0.7810616587364163 0.6121179836118351 0.1235081349179034 -0.7810616587364163 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937 0.5987942084567582 -0.1559010396415385 0.7855828166128199 -0.5987942084567582 0.1559010396415385 -0.7855828166128199 -0.6312255978924052 -0.232565300120417 0.7399105525300177 0.6312255978924052 0.232565300120417 -0.7399105525300177 0.8533897397826985 -0.1412687265943303 0.5017659802338482 -0.8533897397826985 0.1412687265943303 -0.5017659802338482 0.6300652721750066 -0.2328232920063185 0.7408178369196948 -0.6300652721750066 0.2328232920063185 -0.7408178369196948 0.6120888028889895 -0.123428166670594 0.7810971674831884 -0.6120888028889895 0.123428166670594 -0.7810971674831884</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"38\" source=\"#ID1563\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1561\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1559\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1560\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1561\"/>\r\n                    <p>0 1 2 1 0 6 0 2 8 10 1 6 6 0 12 12 0 8 14 10 6 6 12 16 12 8 18 20 14 6 22 6 16 12 18 16 18 8 24 14 20 26 20 6 22 16 28 22 16 18 30 30 18 24 26 20 32 20 22 32 22 28 32 16 34 28 34 36 28 28 36 32</p>\r\n                </triangles>\r\n                <triangles count=\"24\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1561\"/>\r\n                    <p>3 4 5 7 5 4 9 3 5 7 4 11 13 5 7 9 5 13 7 11 15 17 13 7 19 9 13 7 15 21 17 7 23 17 19 13 25 9 19 27 21 15 23 7 21 23 29 17 31 19 17 25 19 31 33 21 27 33 23 21 33 29 23 29 35 17 29 37 35 33 37 29</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1564\">\r\n            <mesh>\r\n                <source id=\"ID1565\">\r\n                    <float_array count=\"162\" id=\"ID1569\">-0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7841270565986633 -2.018415689468384 -0.01978804916143417</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"54\" source=\"#ID1569\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1566\">\r\n                    <float_array count=\"162\" id=\"ID1570\">-0.03507863000728281 -0.9993638928866502 -0.006426454018542583 -0.03258879221096398 -0.992925889807309 -0.1141759518138322 0.0003259087856735385 -0.9990110688943522 0.04446097176206857 -0.0003259087856735385 0.9990110688943522 -0.04446097176206857 0.03258879221096398 0.992925889807309 0.1141759518138322 0.03507863000728281 0.9993638928866502 0.006426454018542583 0.537584015006585 -0.8419809394557429 0.04551400226989654 -0.537584015006585 0.8419809394557429 -0.04551400226989654 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 0.5592988209446661 0.8285232037662215 -0.02709482812018735 0.5488649620174 -0.8350332471836223 -0.03829790552515543 -0.5488649620174 0.8350332471836223 0.03829790552515543 -0.9224100075395584 -0.3862095043714823 -0.001413054848939107 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 0.9224100075395584 0.3862095043714823 0.001413054848939107 0.9534207476003748 -0.2793935727768806 -0.1137018449107683 -0.9534207476003748 0.2793935727768806 0.1137018449107683 0.9554196933123231 -0.280007949107208 -0.09364164707949933 -0.9554196933123231 0.280007949107208 0.09364164707949933 0.9834002721368989 -0.1574388066126764 0.09020491634855526 -0.9834002721368989 0.1574388066126764 -0.09020491634855526 0.9999030608777266 0.0091911144929521 0.01045907556770696 -0.9999030608777266 -0.0091911144929521 -0.01045907556770696 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937 0.9845608053297705 0.005789609544017289 0.1749471378151744 -0.9845608053297705 -0.005789609544017289 -0.1749471378151744 0.8533897397826985 -0.1412687265943303 0.5017659802338482 -0.8533897397826985 0.1412687265943303 -0.5017659802338482 0.8505881097345353 -0.07656512545695393 0.5202284586044782 -0.8505881097345353 0.07656512545695393 -0.5202284586044782 0.6120888028889895 -0.123428166670594 0.7810971674831884 -0.6120888028889895 0.123428166670594 -0.7810971674831884 0.6341513258495346 -0.07317274126097195 0.7697388166512276 -0.6341513258495346 0.07317274126097195 -0.7697388166512276 -0.6121179836118351 -0.1235081349179034 0.7810616587364163 -0.8510242709127007 -0.1534738216882031 0.5021986423457593 -0.6255914375192391 -0.09499054398525243 0.7743462725783586 0.6255914375192391 0.09499054398525243 -0.7743462725783586 0.8510242709127007 0.1534738216882031 -0.5021986423457593 0.6121179836118351 0.1235081349179034 -0.7810616587364163 -0.8365327615396679 -0.08000809676405099 0.5420439496231012 0.8365327615396679 0.08000809676405099 -0.5420439496231012 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 -0.986834032541885 -0.03790333343156378 0.1572320881114841 0.986834032541885 0.03790333343156378 -0.1572320881114841 -0.9853335926304631 -0.1499911356522045 0.08136565897052001 0.9853335926304631 0.1499911356522045 -0.08136565897052001 -0.9981388138662855 -0.05180664955192778 0.03217109441421623 0.9981388138662855 0.05180664955192778 -0.03217109441421623 -0.9436279770637638 -0.294802001739216 -0.1505258139758768 0.9436279770637638 0.294802001739216 0.1505258139758768</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"54\" source=\"#ID1570\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1568\">\r\n                    <float_array count=\"138\" id=\"ID1571\">-6.306092317982453 -1.271501018627536 -6.784815808535565 -1.286086166393232 -6.306369069507085 -1.185650880848618 -7.489267850228599 -1.171509235018648 -7.960392566110251 -1.242774628416125 -7.960111184225731 -1.156924499951786 -6.784817513680201 -1.286081136919438 -6.785094264637429 -1.200230589696816 -6.306370773987924 -1.185645853331707 -7.489550428628045 -1.257354880306367 -7.960393762555639 -1.242769734407629 -7.489269046334202 -1.171504342400244 16.22989170620917 -0.4325477354765682 16.23634433632682 -0.5182483619599257 15.62580784216991 -0.5234426142540005 -21.35518248273874 -0.3254202931075205 -21.34902642173081 -0.2397061667655785 -20.84021281446976 -0.2449004456687551 -21.59802244816052 0.3505792080735636 -21.08461437258555 0.4370503163289707 -20.98446818310251 0.345000167392186 -20.16364743902301 -0.3092719751842178 -20.2725391110552 -0.2235871018883999 -19.94171877301929 0.5993853514445762 -20.16364623668031 -0.3092722004508784 -19.94171757385895 0.5993851266589149 -19.83282590152668 0.5137016747808543 -19.38718969248185 0.8819730681369841 -19.49594649604843 0.9677624583550557 -19.12270220684322 1.627962861283831 -19.54988191260408 0.8983130588275439 -19.28656884661604 1.644559913419114 -19.12893707137241 1.652943780736948 -19.19823782851327 2.393227254796936 -19.35585556866196 2.384681651035667 -19.05768570728569 2.898233168553988 -19.58089838569085 2.25643435415043 -19.44853918039593 2.76280839742426 -19.30240151704015 2.785425753413094 -20.21626233545632 2.216000657861116 -20.04819653781429 2.804765886351715 -20.0743637675117 2.251597876075918 -20.04811880715953 2.805177302875323 -19.90621096466235 2.840771842231666 -20.07430436054864 2.252009829195494 16.58836098419017 -5.730743485420502 16.75644603800339 -6.319506967773847 16.44645311290055 -5.69514901710096 16.75599268744965 -6.319961358425972 16.61409424247359 -6.284363836867083 16.44602310623511 -5.695596235526827 18.82129313582166 0.2435889040443392 19.11037059099694 -0.2731696219641182 18.67517545389078 0.2662860105638668 19.58954765192474 0.1591349106955591 19.43201586527058 0.1502098457519561 19.14581736895401 0.6942703692766635 19.52270398761788 0.8858351267101063 19.89352402824985 0.2247900018658341 19.36515905154538 0.8770548724480094 20.19502555639999 0.4151013409679305 20.08623901514947 0.3293352869389188 19.66464977633564 1.06635550902239 19.74101486272088 0.7572303592065931 20.07183513911413 -0.06574207473235705 19.63212318776349 0.6715469093930906 20.07183384833129 -0.06574251590433804 19.96294217361733 -0.1514273870910756 19.63212189488597 0.6715464674480196</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"69\" source=\"#ID1571\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1567\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1565\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1566\"/>\r\n                </vertices>\r\n                <triangles count=\"23\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1567\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1568\"/>\r\n                    <p>0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 2 8 10 9 0 10 6 11 8 12 12 13 13 14 10 15 6 16 16 17 10 18 16 19 18 20 18 21 16 22 20 23 18 24 20 25 22 26 22 27 20 28 24 29 22 30 24 31 26 32 26 33 24 34 28 35 26 36 28 37 30 38 28 39 32 40 30 41 32 42 34 43 30 44 36 45 37 46 38 47 37 48 42 49 38 50 37 51 44 52 42 53 44 54 46 55 42 56 44 57 48 58 46 59 48 60 50 61 46 62 48 63 52 64 50 65 52 66 13 67 50 68</p>\r\n                </triangles>\r\n                <triangles count=\"23\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1567\"/>\r\n                    <p>3 4 5 3 5 7 3 9 4 7 5 11 14 15 9 17 7 11 19 17 11 21 17 19 23 21 19 25 21 23 27 25 23 29 25 27 31 29 27 31 33 29 31 35 33 39 40 41 39 43 40 43 45 40 43 47 45 47 49 45 47 51 49 51 53 49 51 14 53</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1572\">\r\n            <mesh>\r\n                <source id=\"ID1573\">\r\n                    <float_array count=\"18\" id=\"ID1576\">-0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7841270565986633 -2.018415689468384 -0.01978804916143417</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1576\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1574\">\r\n                    <float_array count=\"18\" id=\"ID1577\">-0.9436279770637638 -0.294802001739216 -0.1505258139758768 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 0.5592988209446661 0.8285232037662215 -0.02709482812018735 0.9436279770637638 0.294802001739216 0.1505258139758768</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1577\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1575\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1573\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1574\"/>\r\n                </vertices>\r\n                <triangles count=\"2\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1575\"/>\r\n                    <p>0 1 2 3 4 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1578\">\r\n            <mesh>\r\n                <source id=\"ID1579\">\r\n                    <float_array count=\"18\" id=\"ID1582\">-0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6489370465278626 0.3227427005767822 -0.2719404995441437</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1582\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1580\">\r\n                    <float_array count=\"18\" id=\"ID1583\">0.158445906171609 -0.9873674686534116 0.0006137282883339717 0.158445906171609 -0.9873674686534116 0.0006137282883339717 0.158445906171609 -0.9873674686534116 0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1583\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1581\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1579\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1580\"/>\r\n                </vertices>\r\n                <triangles count=\"2\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1581\"/>\r\n                    <p>0 1 2 3 4 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1584\">\r\n            <mesh>\r\n                <source id=\"ID1585\">\r\n                    <float_array count=\"24\" id=\"ID1588\">0.7538297772407532 0.2898140251636505 0.2332167774438858 0.7403134107589722 0.280442476272583 0.2985353469848633 0.769927978515625 0.3120907545089722 0.236614540219307 0.769927978515625 0.3120907545089722 0.236614540219307 0.7403134107589722 0.280442476272583 0.2985353469848633 0.7538297772407532 0.2898140251636505 0.2332167774438858 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" source=\"#ID1588\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1586\">\r\n                    <float_array count=\"24\" id=\"ID1589\">0.3954580285428707 -0.9144961465914285 -0.08549704983456716 0.1006962484761042 -0.9856925593885402 -0.1351682059839063 0.7920595892200424 -0.5939052573171069 0.1411316848042239 -0.7920595892200424 0.5939052573171069 -0.1411316848042239 -0.1006962484761042 0.9856925593885402 0.1351682059839063 -0.3954580285428707 0.9144961465914285 0.08549704983456716 0.7834096988866806 -0.5940114822015261 0.1828102915675878 -0.7834096988866806 0.5940114822015261 -0.1828102915675878</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" source=\"#ID1589\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1587\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1585\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1586\"/>\r\n                </vertices>\r\n                <triangles count=\"4\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1587\"/>\r\n                    <p>0 1 2 3 4 5 6 0 2 3 5 7</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1590\">\r\n            <mesh>\r\n                <source id=\"ID1591\">\r\n                    <float_array count=\"78\" id=\"ID1594\">0.3516539335250855 0.4489807486534119 0.2332167774438858 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3516539335250855 0.4489807486534119 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.5283824801445007 0.4448592662811279 0.2332167774438858 0.5283824801445007 0.4448592662811279 0.2332167774438858 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5818127393722534 0.447659969329834 0.2332167774438858 0.5818127393722534 0.447659969329834 0.2332167774438858 0.6719444394111633 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 0.5869252681732178 0.6375383734703064 0.1986889690160751 0.5869252681732178 0.6375383734703064 0.1986889690160751</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID1594\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1592\">\r\n                    <float_array count=\"78\" id=\"ID1595\">-0.002455960715664099 -0.1340529164618239 -0.9909711316910512 -0.02541772641987503 -0.5744328089866907 -0.8181570064133806 -0.1159164628534591 -0.5849792717652266 -0.8027220099415288 0.1159164628534591 0.5849792717652266 0.8027220099415288 0.02541772641987503 0.5744328089866907 0.8181570064133806 0.002455960715664099 0.1340529164618239 0.9909711316910512 -0.003485674259203649 -0.135758403562462 -0.9907358406442811 0.003485674259203649 0.135758403562462 0.9907358406442811 -0.01360116989091377 -0.1197858847249975 -0.992706577996866 0.01360116989091377 0.1197858847249975 0.992706577996866 -0.0009837846824466707 -0.5287955557962981 -0.8487486626427067 0.0009837846824466707 0.5287955557962981 0.8487486626427067 -0.02366493571792748 -0.5517768020638852 -0.8336560031101667 0.02366493571792748 0.5517768020638852 0.8336560031101667 -0.001228812053990985 -0.5307931439620783 -0.8475005181967668 0.001228812053990985 0.5307931439620783 0.8475005181967668 -0.3120320962622111 -0.7954273829439994 -0.5195490827295054 0.3120320962622111 0.7954273829439994 0.5195490827295054 0.002893224898524778 -0.5261266435823435 -0.8504013077144604 -0.002893224898524778 0.5261266435823435 0.8504013077144604 -0.3639931181795807 -0.1116354944085396 -0.9246872586480613 0.3639931181795807 0.1116354944085396 0.9246872586480613 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 0.5805288259387089 0.79708037182807 0.1662803749714611 -0.534492854911476 -0.4762568934147193 -0.6982096816311992 0.534492854911476 0.4762568934147193 0.6982096816311992</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"26\" source=\"#ID1595\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1593\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1591\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1592\"/>\r\n                </vertices>\r\n                <triangles count=\"28\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1593\"/>\r\n                    <p>0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 10 6 0 5 7 11 6 12 1 4 13 7 14 0 8 9 5 15 8 2 16 17 3 9 10 0 14 15 5 11 14 8 18 19 9 15 20 8 16 17 9 21 18 8 20 21 9 19 16 22 20 21 23 17 18 20 24 25 21 19 20 22 24 25 23 21</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1596\">\r\n            <mesh>\r\n                <source id=\"ID1597\">\r\n                    <float_array count=\"198\" id=\"ID1600\">0.5869252681732178 0.6375383734703064 0.1986889690160751 0.534200131893158 0.7065956592559815 0.1053698509931564 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.534200131893158 0.7065956592559815 0.1053698509931564 0.5869252681732178 0.6375383734703064 0.1986889690160751 0.3691354095935822 0.7059374451637268 0.1053698509931564 0.3691354095935822 0.7059374451637268 0.1053698509931564 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3718721866607666 0.7579371929168701 -0.08268103003501892 0.3718721866607666 0.7579371929168701 -0.08268103003501892 0.534200131893158 0.7579361200332642 -0.08268103003501892 0.534200131893158 0.7579361200332642 -0.08268103003501892 0.6719444394111633 0.310824066400528 0.1522213369607925 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.6719444394111633 0.310824066400528 0.1522213369607925 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.6823241114616394 0.310824066400528 0.0157061405479908 0.6823241114616394 0.310824066400528 0.0157061405479908 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.3704305589199066 0.7212921380996704 -0.2198816239833832 0.3704305589199066 0.7212921380996704 -0.2198816239833832 0.5344406366348267 0.7229641675949097 -0.2198816239833832 0.5344406366348267 0.7229641675949097 -0.2198816239833832 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.359952837228775 0.5584809184074402 -0.2725684344768524 0.359952837228775 0.5584809184074402 -0.2725684344768524 0.5290966629981995 0.5639436841011047 -0.2725684344768524 0.5290966629981995 0.5639436841011047 -0.2725684344768524 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5818012356758118 0.5650895833969116 -0.2725684344768524 0.5818012356758118 0.5650895833969116 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.352996438741684 0.4595295786857605 -0.2725684344768524 0.352996438741684 0.4595295786857605 -0.2725684344768524 0.5275225043296814 0.4595295786857605 -0.2725684344768524 0.5275225043296814 0.4595295786857605 -0.2725684344768524 0.5826190710067749 0.4595295786857605 -0.2725684344768524 0.5826190710067749 0.4595295786857605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID1600\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1598\">\r\n                    <float_array count=\"198\" id=\"ID1601\">-0.534492854911476 -0.4762568934147193 -0.6982096816311992 -0.008708290630548747 -0.8994943682349239 -0.4368455644595113 0.002893224898524778 -0.5261266435823435 -0.8504013077144604 -0.002893224898524778 0.5261266435823435 0.8504013077144604 0.008708290630548747 0.8994943682349239 0.4368455644595113 0.534492854911476 0.4762568934147193 0.6982096816311992 0.001023643364597451 -0.8995424763256171 -0.4368321021173226 -0.001023643364597451 0.8995424763256171 0.4368321021173226 -0.0236357229016307 -0.9023480103169261 -0.4303596413233958 0.0236357229016307 0.9023480103169261 0.4303596413233958 -0.001228812053990985 -0.5307931439620783 -0.8475005181967668 0.001228812053990985 0.5307931439620783 0.8475005181967668 0.002310619850038598 -0.9999946954244299 -0.002295682667614813 -0.002310619850038598 0.9999946954244299 0.002295682667614813 0.0005887579113936776 -0.9999601086645632 -0.008912600275817318 -0.0005887579113936776 0.9999601086645632 0.008912600275817318 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 -0.9696809579224759 -0.2296289695838888 -0.08360248902031012 0.9696809579224759 0.2296289695838888 0.08360248902031012 0.5805288259387089 0.79708037182807 0.1662803749714611 0.0002517151608787327 -0.8990035483622607 -0.4379412708018532 -0.0002517151608787327 0.8990035483622607 0.4379412708018532 0.0001049664590907936 -0.9999945765291868 0.003291791951931407 -0.0001049664590907936 0.9999945765291868 -0.003291791951931407 -0.004762183782822505 -0.99991582039779 -0.01206953701817792 0.004762183782822505 0.99991582039779 0.01206953701817792 -0.9738578787136809 -0.22317279432954 -0.04236432388737434 0.9738578787136809 0.22317279432954 0.04236432388737434 -0.0009837846824466707 -0.5287955557962981 -0.8487486626427067 0.0009837846824466707 0.5287955557962981 0.8487486626427067 0.004960938197936508 -0.7176065544393218 0.6964310605637294 -0.004960938197936508 0.7176065544393218 -0.6964310605637294 0.006236033036651492 -0.7266495822650051 0.6869799825948784 -0.006236033036651492 0.7266495822650051 -0.6869799825948784 -0.01015286975425089 -0.7326993687073732 0.6804767110868452 0.01015286975425089 0.7326993687073732 -0.6804767110868452 -0.9735634800605109 -0.2269766006540034 0.02560806607341277 0.9735634800605109 0.2269766006540034 -0.02560806607341277 -0.03242314820124487 -0.720253991249472 0.692952327039837 0.03242314820124487 0.720253991249472 -0.692952327039837 -0.9570457757608381 -0.2670484824654185 0.1129092162369959 0.9570457757608381 0.2670484824654185 -0.1129092162369959 0.0009666724662604464 -0.131014841647294 0.991379935651553 -0.0009666724662604464 0.131014841647294 -0.991379935651553 0.001696977507081195 -0.155230976216615 0.9878767454951943 -0.001696977507081195 0.155230976216615 -0.9878767454951943 0.00350166923253529 -0.1610376828668566 0.9869420464289985 -0.00350166923253529 0.1610376828668566 -0.9869420464289985 -0.9623626947490217 -0.206647714191229 0.1765071272638618 0.9623626947490217 0.206647714191229 -0.1765071272638618 -0.5189880486035221 -0.1695065661790611 0.8378060213610854 0.5189880486035221 0.1695065661790611 -0.8378060213610854 -2.50664681986786e-005 -0.005818806173580303 0.9999830702898858 2.50664681986786e-005 0.005818806173580303 -0.9999830702898858 -0.0008486584844322239 -0.002669912908706293 0.9999960756642182 0.0008486584844322239 0.002669912908706293 -0.9999960756642182 0 0 1 -0 -0 -1 -0.4533059364850565 -0.06671574964729424 0.8888547331799531 0.4533059364850565 0.06671574964729424 -0.8888547331799531 -0.8647407894750915 -0.4937134355135344 0.09203483368496382 0.8647407894750915 0.4937134355135344 -0.09203483368496382 -0.0008261090318084516 -0.008133841918222379 0.9999665785212609 0.0008261090318084516 0.008133841918222379 -0.9999665785212609 -0.0009780757563540878 -0.002169755771291285 0.999997167759843 0.0009780757563540878 0.002169755771291285 -0.999997167759843</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"66\" source=\"#ID1601\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1599\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1597\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1598\"/>\r\n                </vertices>\r\n                <triangles count=\"42\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1599\"/>\r\n                    <p>0 1 2 1 6 2 8 1 0 2 6 10 1 12 6 8 14 1 0 16 17 6 20 10 12 22 6 14 12 1 24 14 8 16 26 17 10 20 28 6 22 20 12 30 22 14 32 12 24 34 14 17 26 36 32 30 12 34 32 14 38 34 24 26 40 36 42 30 32 44 32 34 46 34 38 40 48 36 44 42 32 46 44 34 46 38 50 40 50 48 52 42 44 54 44 46 56 46 50 40 58 50 54 52 44 56 54 46 56 50 58 40 60 58 62 52 54 54 56 64 56 58 64 62 54 64</p>\r\n                </triangles>\r\n                <triangles count=\"42\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1599\"/>\r\n                    <p>3 4 5 3 7 4 5 4 9 11 7 3 7 13 4 4 15 9 18 19 5 11 21 7 7 23 13 4 13 15 9 15 25 18 27 19 29 21 11 21 23 7 23 31 13 13 33 15 15 35 25 37 27 18 13 31 33 15 33 35 25 35 39 37 41 27 33 31 43 35 33 45 39 35 47 37 49 41 33 43 45 35 45 47 51 39 47 49 51 41 45 43 53 47 45 55 51 47 57 51 59 41 45 53 55 47 55 57 59 51 57 59 61 41 55 53 63 65 57 55 65 59 57 65 55 63</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1602\">\r\n            <mesh>\r\n                <source id=\"ID1603\">\r\n                    <float_array count=\"156\" id=\"ID1606\">0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5913218855857849 -0.7019175291061401 0.2899888455867767 0.5913218855857849 -0.7019175291061401 0.2899888455867767 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5991842150688171 -0.6751006841659546 0.2901735305786133 0.5991842150688171 -0.6751006841659546 0.2901735305786133 0.6027332544326782 -0.6565739512443543 0.2298039048910141 0.6027332544326782 -0.6565739512443543 0.2298039048910141 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.606005072593689 -0.6353139281272888 0.1513132899999619 0.606005072593689 -0.6353139281272888 0.1513132899999619 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6138572096824646 -0.5806991457939148 0.01851669326424599 0.6138572096824646 -0.5806991457939148 0.01851669326424599 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6184371709823608 -0.523088812828064 -0.1182090491056442 0.6184371709823608 -0.523088812828064 -0.1182090491056442 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6197459101676941 -0.4733588397502899 -0.2504602670669556 0.6197459101676941 -0.4733588397502899 -0.2504602670669556 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5905120968818665 -0.6027178764343262 -0.2739138007164002</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"52\" source=\"#ID1606\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1604\">\r\n                    <float_array count=\"156\" id=\"ID1607\">-0.6550028074066617 0.4876263453328185 0.57722774502509 -0.7476141706463564 0.6572814401000713 0.09515335174725628 -0.8216292782168875 0.2706545588897141 0.5016686545211001 0.8216292782168875 -0.2706545588897141 -0.5016686545211001 0.7476141706463564 -0.6572814401000713 -0.09515335174725628 0.6550028074066617 -0.4876263453328185 -0.57722774502509 -0.9584160287978759 0.2850066878088134 -0.01448805188969848 0.9584160287978759 -0.2850066878088134 0.01448805188969848 -0.7753733229355523 0.4751248107874208 0.4159959425933109 0.7753733229355523 -0.4751248107874208 -0.4159959425933109 -0.7244565686574949 0.6850933441356621 0.07622197812982619 0.7244565686574949 -0.6850933441356621 -0.07622197812982619 -0.8941909770901743 0.4475430250016918 0.01130209108326358 0.8941909770901743 -0.4475430250016918 -0.01130209108326358 -0.8881486012223843 0.4524779345091655 0.08034787445254196 0.8881486012223843 -0.4524779345091655 -0.08034787445254196 -0.4543309600657438 0.8834859794272519 0.1141748785031492 0.4543309600657438 -0.8834859794272519 -0.1141748785031492 -0.8752530071759646 0.4733778114794652 0.09922510281346596 0.8752530071759646 -0.4733778114794652 -0.09922510281346596 -0.3839601059320404 0.8794258325261762 0.2813980137426312 0.3839601059320404 -0.8794258325261762 -0.2813980137426312 -0.4390785855880069 0.8722665560520438 0.2153161649090516 0.4390785855880069 -0.8722665560520438 -0.2153161649090516 -0.3813913782069187 0.8843791144645131 0.2690988638556295 0.3813913782069187 -0.8843791144645131 -0.2690988638556295 -0.7923653544809333 0.608650103731723 0.0412576810505382 0.7923653544809333 -0.608650103731723 -0.0412576810505382 -0.3135274238242752 0.882947604923759 0.3494339443578869 0.3135274238242752 -0.882947604923759 -0.3494339443578869 -0.8653479516275449 0.4780730382160567 0.1503964519025673 0.8653479516275449 -0.4780730382160567 -0.1503964519025673 -0.7968685932815799 0.5870304906792523 0.1428133329010719 0.7968685932815799 -0.5870304906792523 -0.1428133329010719 -0.2820162498870407 0.8935441405364961 0.3493504024794374 0.2820162498870407 -0.8935441405364961 -0.3493504024794374 -0.8445674453171055 0.5026266180178239 0.1845868716092845 0.8445674453171055 -0.5026266180178239 -0.1845868716092845 -0.8188546049565538 0.5430968997890379 0.1858033728999071 0.8188546049565538 -0.5430968997890379 -0.1858033728999071 -0.2493540230310667 0.8484132149469607 0.4669235353905227 0.2493540230310667 -0.8484132149469607 -0.4669235353905227 -0.7773761696034033 0.4537299634695453 0.4356781050072014 0.7773761696034033 -0.4537299634695453 -0.4356781050072014 -0.7904401366226477 0.4467532877527571 0.4190654964299407 0.7904401366226477 -0.4467532877527571 -0.4190654964299407 -0.136250489327595 0.3488184035330123 0.9272332638094212 0.136250489327595 -0.3488184035330123 -0.9272332638094212 -0.2818180752902821 0.1785579729115788 0.9427065411618766 0.2818180752902821 -0.1785579729115788 -0.9427065411618766 -0.4644038303505231 0.1881541816406321 0.8654057350670302 0.4644038303505231 -0.1881541816406321 -0.8654057350670302</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"52\" source=\"#ID1607\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1605\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1603\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1604\"/>\r\n                </vertices>\r\n                <triangles count=\"62\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1605\"/>\r\n                    <p>0 1 2 3 4 5 2 1 6 7 4 3 2 6 8 9 7 3 1 10 6 7 11 4 6 12 8 9 13 7 6 10 14 15 11 7 8 12 16 17 13 9 12 6 14 15 7 13 14 10 18 19 11 15 20 8 16 17 9 21 16 12 22 23 13 17 12 14 22 23 15 13 18 24 14 15 25 19 10 26 18 19 27 11 22 14 24 25 15 23 28 24 18 19 25 29 18 26 30 31 27 19 30 28 18 19 29 31 26 32 30 31 33 27 30 34 28 29 35 31 30 32 36 37 33 31 36 34 30 31 35 37 32 38 36 37 39 33 36 40 34 35 41 37 36 38 42 43 39 37 42 40 36 37 41 43 38 44 42 43 45 39 42 46 40 41 47 43 42 44 48 49 45 43 48 46 42 43 47 49 44 50 48 49 51 45</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1608\">\r\n            <mesh>\r\n                <source id=\"ID1609\">\r\n                    <float_array count=\"30\" id=\"ID1612\">0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6610545516014099 -0.6420672535896301 0.2324964851140976</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"10\" source=\"#ID1612\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1610\">\r\n                    <float_array count=\"30\" id=\"ID1613\">-0.384970124415974 0.9206201242962624 0.06524254783409289 -0.2771330402511802 0.960779697982544 0.009982481941339451 0.2331018669884867 0.8320242126565701 0.5033877522940903 -0.2331018669884867 -0.8320242126565701 -0.5033877522940903 0.2771330402511802 -0.960779697982544 -0.009982481941339451 0.384970124415974 -0.9206201242962624 -0.06524254783409289 -0.355210421201735 0.9270152150350377 0.1202844452255927 0.355210421201735 -0.9270152150350377 -0.1202844452255927 -0.03348084013298106 0.9726744552437342 0.2297464634337051 0.03348084013298106 -0.9726744552437342 -0.2297464634337051</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"10\" source=\"#ID1613\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1611\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1609\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1610\"/>\r\n                </vertices>\r\n                <triangles count=\"6\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1611\"/>\r\n                    <p>0 1 2 3 4 5 6 0 2 3 5 7 6 8 0 5 9 7</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1614\">\r\n            <mesh>\r\n                <source id=\"ID1615\">\r\n                    <float_array count=\"66\" id=\"ID1618\">0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6621965765953064 0.320149302482605 -0.2725684344768524</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"22\" source=\"#ID1618\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1616\">\r\n                    <float_array count=\"66\" id=\"ID1619\">-0.8895615761176244 0 0.4568152824666966 -0.4245302747465338 0.4022424534965067 0.8111566152283682 -0.8090636576108965 -0.00529621518445905 0.5876971567380582 0.8090636576108965 0.00529621518445905 -0.5876971567380582 0.4245302747465338 -0.4022424534965067 -0.8111566152283682 0.8895615761176244 -0 -0.4568152824666966 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.4374569246052411 -0.004190067454014929 0.899229604967305 0.4374569246052411 0.004190067454014929 -0.899229604967305 0 0 1 -0 -0 -1 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"22\" source=\"#ID1619\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1617\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1615\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1616\"/>\r\n                </vertices>\r\n                <triangles count=\"10\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1617\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 8 7 14 15 10 9 16 17 18 19 20 21</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1620\">\r\n            <mesh>\r\n                <source id=\"ID1621\">\r\n                    <float_array count=\"18\" id=\"ID1624\">0.351957768201828 -1.969097256660461 0.0834038257598877 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.351957768201828 -1.969097256660461 0.0834038257598877</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1624\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1622\">\r\n                    <float_array count=\"18\" id=\"ID1625\">-0.149357994953947 0.9875735034865902 -0.04889544513099698 -0.7043453961272412 0.6885000654906582 0.1728155744535739 -0.747044926563488 0.6504540070975241 -0.1372350623803081 0.747044926563488 -0.6504540070975241 0.1372350623803081 0.7043453961272412 -0.6885000654906582 -0.1728155744535739 0.149357994953947 -0.9875735034865902 0.04889544513099698</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1625\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1623\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1621\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1622\"/>\r\n                </vertices>\r\n                <triangles count=\"1\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1623\"/>\r\n                    <p>0 1 2</p>\r\n                </triangles>\r\n                <triangles count=\"1\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1623\"/>\r\n                    <p>3 4 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1626\">\r\n            <mesh>\r\n                <source id=\"ID1627\">\r\n                    <float_array count=\"90\" id=\"ID1630\">0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.756475567817688 -2.059271097183228 0.09401828050613403 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.756475567817688 -2.059271097183228 0.09401828050613403 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.756475567817688 -2.010841131210327 0.1919151991605759 0.756475567817688 -2.010841131210327 0.1919151991605759 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.062207937240601 0.09551356732845306 0.7103111147880554 -2.062207937240601 0.09551356732845306 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.6655531525611877 -2.059271097183228 0.09401828050613403 0.6655531525611877 -2.059271097183228 0.09401828050613403 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID1630\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1628\">\r\n                    <float_array count=\"90\" id=\"ID1631\">0.943627143899562 -0.2948034789954753 -0.1505281437742455 0.5561347809388669 -0.800980889787665 0.2216838280638415 0.9853337997491376 -0.1499904908385696 0.08136433942416936 -0.9853337997491376 0.1499904908385696 -0.08136433942416936 -0.5561347809388669 0.800980889787665 -0.2216838280638415 -0.943627143899562 0.2948034789954753 0.1505281437742455 0.5933281384221253 -0.6415076825928938 0.4862402835335944 -0.5933281384221253 0.6415076825928938 -0.4862402835335944 0.5592979853536424 -0.8285238041283055 0.0270937183147329 -0.5592979853536424 0.8285238041283055 -0.0270937183147329 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 0.0001897390297503977 -0.8685842107168599 0.4955415551620975 -0.0001897390297503977 0.8685842107168599 -0.4955415551620975 -0.001021169911253755 -0.9650411311786424 0.2620964943402691 0.001021169911253755 0.9650411311786424 -0.2620964943402691 -0.000319951151868398 -0.9990084344300625 0.04452017035969026 0.000319951151868398 0.9990084344300625 -0.04452017035969026 -0.5519720940320964 -0.8023482870868035 0.2270771534494271 0.5519720940320964 0.8023482870868035 -0.2270771534494271 -0.5375902063391951 -0.8419767167272813 0.04551899095244997 0.5375902063391951 0.8419767167272813 -0.04551899095244997 -0.5697713573672883 -0.6724576161103255 0.4723995711884758 0.5697713573672883 0.6724576161103255 -0.4723995711884758 -0.9834003406516149 -0.1574389615609065 0.09020389896734656 0.9834003406516149 0.1574389615609065 -0.09020389896734656 -0.9534206114498375 -0.279393753748928 -0.1137025418744073 0.9534206114498375 0.279393753748928 0.1137025418744073 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID1631\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1629\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1627\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1628\"/>\r\n                </vertices>\r\n                <triangles count=\"16\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1629\"/>\r\n                    <p>0 1 2 1 6 2 8 1 0 2 6 10 1 12 6 1 8 14 1 14 12 8 16 14 14 18 12 16 20 14 12 18 22 20 18 14 22 18 24 18 20 26 18 26 24 22 24 28</p>\r\n                </triangles>\r\n                <triangles count=\"16\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1629\"/>\r\n                    <p>3 4 5 3 7 4 5 4 9 11 7 3 7 13 4 15 9 4 13 15 4 15 17 9 13 19 15 15 21 17 23 19 13 15 19 21 25 19 23 27 21 19 25 27 19 29 25 23</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1632\">\r\n            <mesh>\r\n                <source id=\"ID1633\">\r\n                    <float_array count=\"114\" id=\"ID1636\">0.756475567817688 -2.010841131210327 0.1919151991605759 0.7413764595985413 -1.974473595619202 0.2335336655378342 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7413764595985413 -1.974473595619202 0.2335336655378342 0.756475567817688 -2.010841131210327 0.1919151991605759 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7103111147880554 -1.981115937232971 0.2377601712942123 0.7103111147880554 -1.981115937232971 0.2377601712942123 0.7297222018241882 -1.956180214881897 0.2581743896007538 0.7297222018241882 -1.956180214881897 0.2581743896007538 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7161936759948731 -1.930104374885559 0.2703545987606049 0.7161936759948731 -1.930104374885559 0.2703545987606049 0.7103111147880554 -1.961444020271301 0.2600972652435303 0.7103111147880554 -1.961444020271301 0.2600972652435303 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.6930640935897827 -1.956180214881897 0.2581743896007538 0.6930640935897827 -1.956180214881897 0.2581743896007538 0.6763654351234436 -1.974473595619202 0.2335336655378342 0.6763654351234436 -1.974473595619202 0.2335336655378342 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7044104337692261 -1.930104374885559 0.2703545987606049 0.7044104337692261 -1.930104374885559 0.2703545987606049 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.91874897480011 0.2325675636529923</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"38\" source=\"#ID1636\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1634\">\r\n                    <float_array count=\"114\" id=\"ID1637\">0.5933281384221253 -0.6415076825928938 0.4862402835335944 0.6038475476821412 -0.5112670930340427 0.6115342171447025 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 -0.6038475476821412 0.5112670930340427 -0.6115342171447025 -0.5933281384221253 0.6415076825928938 -0.4862402835335944 0.8510247683157842 -0.1534714959402908 0.5021985101998162 -0.8510247683157842 0.1534714959402908 -0.5021985101998162 0.002390214720458501 -0.7580324268348783 0.6522124858820286 -0.002390214720458501 0.7580324268348783 -0.6522124858820286 0.4816343039379686 -0.4003304091070729 0.7795921759576298 -0.4816343039379686 0.4003304091070729 -0.7795921759576298 0.0001897390297503977 -0.8685842107168599 0.4955415551620975 -0.0001897390297503977 0.8685842107168599 -0.4955415551620975 0.593480914577841 -0.1497719923081683 0.7907899558997266 -0.593480914577841 0.1497719923081683 -0.7907899558997266 -0.01324242902615902 -0.5911708723841617 0.8064376217154284 0.01324242902615902 0.5911708723841617 -0.8064376217154284 -0.5697713573672883 -0.6724576161103255 0.4723995711884758 0.5697713573672883 0.6724576161103255 -0.4723995711884758 0.6121141719640919 -0.1235155841382136 0.7810634679433613 -0.6121141719640919 0.1235155841382136 -0.7810634679433613 -0.4595343448738955 -0.4008536781948491 0.7925556854625295 0.4595343448738955 0.4008536781948491 -0.7925556854625295 -0.6132519451184463 -0.499434195720541 0.6119538675042576 0.6132519451184463 0.499434195720541 -0.6119538675042576 0.6312475923018771 -0.2325527198214028 0.7398957424642685 -0.6312475923018771 0.2325527198214028 -0.7398957424642685 -0.5988004092927477 -0.1558923629322883 0.7855798119925344 0.5988004092927477 0.1558923629322883 -0.7855798119925344 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482 -0.630075658131957 -0.2328132967471215 0.7408121448027956 -0.6120926070614714 -0.1234322633736009 0.781093539045844 0.6120926070614714 0.1234322633736009 -0.781093539045844 0.630075658131957 0.2328132967471215 -0.7408121448027956 -0.8533897187137808 -0.1412637953393277 0.5017674044016239 0.8533897187137808 0.1412637953393277 -0.5017674044016239</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"38\" source=\"#ID1637\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1635\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1633\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1634\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1635\"/>\r\n                    <p>0 1 2 2 1 6 8 1 0 1 10 6 1 8 10 0 12 8 10 14 6 10 8 16 12 18 8 14 20 6 16 14 10 8 22 16 18 24 8 26 20 14 16 26 14 8 24 22 22 28 16 24 18 30 32 28 33 16 28 32 22 24 36 22 36 28 24 30 36 28 36 33</p>\r\n                </triangles>\r\n                <triangles count=\"24\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1635\"/>\r\n                    <p>3 4 5 7 4 3 5 4 9 7 11 4 11 9 4 9 13 5 7 15 11 17 9 11 9 19 13 7 21 15 11 15 17 17 23 9 9 25 19 15 21 27 15 27 17 23 25 9 17 29 23 31 19 25 34 29 35 35 29 17 37 25 23 29 37 23 37 31 25 34 37 29</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1638\">\r\n            <mesh>\r\n                <source id=\"ID1639\">\r\n                    <float_array count=\"162\" id=\"ID1643\">0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7769084572792053 -1.932552456855774 0.167515367269516 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"54\" source=\"#ID1643\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1640\">\r\n                    <float_array count=\"162\" id=\"ID1644\">0.03260687053562721 -0.9929270011109181 -0.114161124988988 0.0350836217122919 -0.9993641268128589 -0.006362509498693735 -0.000319951151868398 -0.9990084344300625 0.04452017035969026 0.000319951151868398 0.9990084344300625 -0.04452017035969026 -0.0350836217122919 0.9993641268128589 0.006362509498693735 -0.03260687053562721 0.9929270011109181 0.114161124988988 -0.5375902063391951 -0.8419767167272813 0.04551899095244997 0.5375902063391951 0.8419767167272813 -0.04551899095244997 0.5592979853536424 -0.8285238041283055 0.0270937183147329 -0.5592979853536424 0.8285238041283055 -0.0270937183147329 -0.5488772901889137 -0.8350252574485036 -0.03829542711519779 0.5488772901889137 0.8350252574485036 0.03829542711519779 0.9224089668347014 -0.3862119958074538 -0.001411452217341778 0.9763108033078525 -0.2123747784436454 -0.04140252196893392 -0.9763108033078525 0.2123747784436454 0.04140252196893392 -0.9224089668347014 0.3862119958074538 0.001411452217341778 -0.9534206114498375 -0.279393753748928 -0.1137025418744073 0.9534206114498375 0.279393753748928 0.1137025418744073 0.943627143899562 -0.2948034789954753 -0.1505281437742455 -0.943627143899562 0.2948034789954753 0.1505281437742455 -0.9554201128959187 -0.2800080264120052 -0.09363713482803654 0.9554201128959187 0.2800080264120052 0.09363713482803654 0.9981387801496015 -0.05180774196831358 0.03217038130968378 -0.9981387801496015 0.05180774196831358 -0.03217038130968378 -0.9834003406516149 -0.1574389615609065 0.09020389896734656 0.9834003406516149 0.1574389615609065 -0.09020389896734656 0.9853337997491376 -0.1499904908385696 0.08136433942416936 -0.9853337997491376 0.1499904908385696 -0.08136433942416936 -0.9999030821333683 0.009189671904800476 0.01045831107171379 0.9999030821333683 -0.009189671904800476 -0.01045831107171379 0.9868338077903163 -0.03790197884639443 0.1572338252463278 -0.9868338077903163 0.03790197884639443 -0.1572338252463278 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 -0.9845592136282013 0.005778961781360174 0.1749564473248911 0.9845592136282013 -0.005778961781360174 -0.1749564473248911 0.8365363380127288 -0.08000022603088255 0.5420395917451615 -0.8365363380127288 0.08000022603088255 -0.5420395917451615 -0.8533897187137808 -0.1412637953393277 0.5017674044016239 0.8533897187137808 0.1412637953393277 -0.5017674044016239 0.8510247683157842 -0.1534714959402908 0.5021985101998162 -0.8510247683157842 0.1534714959402908 -0.5021985101998162 -0.8505869295512368 -0.07656434047780775 0.5202305037613593 0.8505869295512368 0.07656434047780775 -0.5202305037613593 0.625589589694931 -0.09499442026280379 0.7743472899056741 -0.625589589694931 0.09499442026280379 -0.7743472899056741 -0.6120926070614714 -0.1234322633736009 0.781093539045844 0.6120926070614714 0.1234322633736009 -0.781093539045844 0.6121141719640919 -0.1235155841382136 0.7810634679433613 -0.6121141719640919 0.1235155841382136 -0.7810634679433613 -0.6341573082842825 -0.07317161945134183 0.7697339946088529 0.6341573082842825 0.07317161945134183 -0.7697339946088529</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"54\" source=\"#ID1644\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1642\">\r\n                    <float_array count=\"144\" id=\"ID1645\">6.755113598492128 -1.28818411616344 6.276391367870363 -1.273598846461514 6.276668932229784 -1.187747990949572 7.931538674230804 -1.244918489932155 7.460416922470831 -1.173652500424159 7.93125667663631 -1.159067643361002 6.756122927852144 -1.200172844248997 6.755846175862104 -1.286023391469558 6.277401224106905 -1.185588107884238 7.932052753930135 -1.242815736372001 7.461212451825801 -1.257400882197142 7.460930856031394 -1.171550344724229 -16.24728231087358 -0.5177389912904121 -16.24082968313403 -0.4320383646962481 -15.63674559141635 -0.522933243591203 21.33544447558737 -0.2403093091453216 21.34160053997291 -0.3260234353371425 20.8266311479033 -0.245503588039401 -14.79313507739231 5.22963607387074 -14.28798007840902 5.22391645303245 -14.19140803992131 5.129532450942014 21.07322891855065 0.4447104957203296 21.58663672369534 0.3582394118802513 20.97308269046432 0.3526603727741297 -19.9633255362985 -0.1517282072863839 -20.07221720636866 -0.06604333244753349 -19.63250515425505 0.6712456823300048 20.27214182428386 -0.2232742610814208 20.16325015490548 -0.3089591364643262 19.94132142720788 0.5996982122972813 -20.07221849283267 -0.06604289288495532 -19.74139811312834 0.7569295761315995 -19.63250644281464 0.671246122666006 19.94132023358347 0.5996979883382857 20.16324895809792 -0.3089593609044395 19.83242856390492 0.514014534373161 -20.08491412531244 0.3303765089605132 -20.19370065774289 0.4161425699128248 -19.6633247007291 1.067396790538526 19.49744157309759 0.9665899046439173 19.38868477230044 0.8808005122531655 19.12419723176296 1.626790324292759 -19.89337726924902 0.2264197868138914 -19.52255720459599 0.887465042970309 -19.36501226868057 0.8786847869640739 19.28749393754247 1.64325076531458 19.55080638375404 0.8970037444619536 19.12986222150346 1.651634634500309 -19.43161350839342 0.1546049060511749 -19.58914529491563 0.1635299724358948 -19.14541499575194 0.6986655174245279 19.35649336917293 2.380108223234186 19.1988756900863 2.388653849969002 19.05833933438694 2.89366112135713 -19.11172399431847 -0.2679135574191213 -18.82266012345276 0.2488447054826669 -18.6765281188492 0.2715418004460036 19.44731916119307 2.757970496121026 19.5796641290889 2.25159550389601 19.30116719062189 2.780587894495063 -16.76336612554423 -6.302297048279994 -16.45337271801021 -5.677936043669404 -16.62145283987993 -6.266699761521001 20.20919753439371 2.199007422694983 20.06728409754036 2.234604336452552 20.04109973271386 2.787767615572082 -16.59522296582594 -5.713583036091153 -16.45332255721194 -5.677988345851003 -16.76331323493317 -6.30235018920447 20.041108713796 2.787719521374515 20.06729093591975 2.234556179490449 19.8992081362568 2.823313794863152</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"72\" source=\"#ID1645\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1641\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1639\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1640\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1641\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1642\"/>\r\n                    <p>0 0 1 1 2 2 1 3 6 4 2 5 8 6 0 7 2 8 1 9 10 10 6 11 12 12 8 13 13 14 6 15 10 16 16 17 8 18 18 19 13 20 16 21 10 22 20 23 13 24 18 25 22 26 16 27 20 28 24 29 18 30 26 31 22 32 24 33 20 34 28 35 22 36 26 37 30 38 24 39 28 40 32 41 26 42 34 43 30 44 32 45 28 46 36 47 30 48 34 49 38 50 32 51 36 52 40 53 34 54 42 55 38 56 40 57 36 58 44 59 42 60 46 61 38 62 40 63 44 64 48 65 50 66 46 67 42 68 48 69 44 70 52 71</p>\r\n                </triangles>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1641\"/>\r\n                    <p>3 4 5 3 7 4 3 5 9 7 11 4 14 9 15 17 11 7 14 19 9 21 11 17 23 19 14 25 21 17 23 27 19 29 21 25 31 27 23 33 29 25 31 35 27 37 29 33 39 35 31 41 37 33 39 43 35 45 37 41 39 47 43 49 45 41 43 47 51 53 45 49</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1646\">\r\n            <mesh>\r\n                <source id=\"ID1647\">\r\n                    <float_array count=\"216\" id=\"ID1651\">0.006833886727690697 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.1739678084850311 -0.02579164505004883 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 -0.003804403357207775 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.003717809915542603 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"72\" source=\"#ID1651\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1648\">\r\n                    <float_array count=\"216\" id=\"ID1652\">0.9998049716621695 0.003265724132970699 -0.01947700401745051 0.6962336060517574 -0.1186870162805717 0.7079351368385252 0.9998049107848057 -0.003265929304979619 0.01948009436223057 -0.9998049107848057 0.003265929304979619 -0.01948009436223057 -0.6962336060517574 0.1186870162805717 -0.7079351368385252 -0.9998049716621695 -0.003265724132970699 0.01947700401745051 2.619829425874514e-011 0.9963636286193238 0.08520281429937872 -4.558107797513391e-018 0.9963634276886537 0.08520516395452349 -1.705110882004213e-005 0.9963684474014146 0.08514644286260223 1.705110882004213e-005 -0.9963684474014146 -0.08514644286260223 4.558107797513391e-018 -0.9963634276886537 -0.08520516395452349 -2.619829425874514e-011 -0.9963636286193238 -0.08520281429937872 0.7159194915021295 -0.1154425096916523 0.6885726603949834 -0.7159194915021295 0.1154425096916523 -0.6885726603949834 0.6962354344651125 0.118687547969271 -0.707933249503241 -0.6962354344651125 -0.118687547969271 0.707933249503241 8.864681295471469e-011 0.9963669954613724 0.08516343320508928 -8.864681295471469e-011 -0.9963669954613724 -0.08516343320508928 -2.176765036235961e-005 0.9963588062953948 0.08525918509923451 2.176765036235961e-005 -0.9963588062953948 -0.08525918509923451 6.96112966911225e-024 -0.9963651261403207 -0.08518530044193647 1.566060733247115e-011 -0.9963648425785238 -0.08518861704167753 -8.274059926537097e-006 -0.9963661779121036 -0.08517299715500586 8.274059926537097e-006 0.9963661779121036 0.08517299715500586 -1.566060733247115e-011 0.9963648425785238 0.08518861704167753 -6.96112966911225e-024 0.9963651261403207 0.08518530044193647 -2.471863667802537e-006 -0.1653464355874766 0.9862355480474259 2.471863667802537e-006 0.1653464355874766 -0.9862355480474259 -1.493160568799804e-005 -0.9963635068379099 -0.08520423709364172 3.03852199377559e-018 -0.9963647790799293 -0.08518935971706705 -3.03852199377559e-018 0.9963647790799293 0.08518935971706705 1.493160568799804e-005 0.9963635068379099 0.08520423709364172 0.7159269080944584 0.1154408704105128 -0.6885652240021801 -0.7159269080944584 -0.1154408704105128 0.6885652240021801 1.705156827135167e-005 0.9963684473730702 0.08514644319419053 -1.705156827135167e-005 -0.9963684473730702 -0.08514644319419053 1.131742397740694e-010 0.99636066224498 0.08523749603751304 -1.131742397740694e-010 -0.99636066224498 -0.08523749603751304 4.302158584745926e-011 -0.9963668826780806 -0.08516475269948359 -4.302158584745926e-011 0.9963668826780806 0.08516475269948359 -2.593857004538737e-006 -0.1653464337092199 0.98623554836201 2.593857004538737e-006 0.1653464337092199 -0.98623554836201 7.76297641547973e-011 -0.9963622345947807 -0.08521911448316716 -7.76297641547973e-011 0.9963622345947807 0.08521911448316716 -1.559712169649621e-006 0.1653464004706182 -0.9862355539367748 1.559712169649621e-006 -0.1653464004706182 0.9862355539367748 0 0.9963634276886574 0.08520516395448119 -0 -0.9963634276886574 -0.08520516395448119 -0.6962457922026375 -0.1186868026290101 0.7079231877271882 0.6962457922026375 0.1186868026290101 -0.7079231877271882 -1.627571474248932e-006 0.1653464000348263 -0.9862355540097275 1.627571474248932e-006 -0.1653464000348263 0.9862355540097275 2.176823690354987e-005 0.9963588063316035 0.08525918467594232 -2.176823690354987e-005 -0.9963588063316035 -0.08525918467594232 8.274282878190502e-006 -0.9963661779258559 -0.08517299699410662 -8.274282878190502e-006 0.9963661779258559 0.08517299699410662 1.493200802520914e-005 -0.9963635068130742 -0.08520423738399643 -1.493200802520914e-005 0.9963635068130742 0.08520423738399643 -0.7159325878051063 -0.1154387083727279 0.6885596810211297 -0.9998049490353376 -0.003265232502298848 0.01947824789738779 0.9998049490353376 0.003265232502298848 -0.01947824789738779 0.7159325878051063 0.1154387083727279 -0.6885596810211297 -0.6962484674923013 0.1186859181289345 -0.7079207048480173 0.6962484674923013 -0.1186859181289345 0.7079207048480173 -0.7159407679065135 0.1154380930984608 -0.6885512787811979 0.7159407679065135 -0.1154380930984608 0.6885512787811979 0 -0.9963651261403206 -0.08518530044193662 -0 0.9963651261403206 0.08518530044193662 0 -0.9963647790799293 -0.08518935971706705 -0 0.9963647790799293 0.08518935971706705 -0.999805002135868 0.003265123499963573 -0.01947554036804029 0.999805002135868 -0.003265123499963573 0.01947554036804029</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"72\" source=\"#ID1652\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1650\">\r\n                    <float_array count=\"190\" id=\"ID1653\">-3.78385647797872 -0.5368291555505009 -1.739423843074547 -0.1799178917846214 -1.730899181380262 -0.2436144662387565 0.03804403357207777 -0.08565411079277659 -0.06833886727690695 -0.08565411079277659 -0.03717809915542601 -0.02648206485871089 -3.783857775120314 -0.5368237240548432 -3.792386478312588 -0.4731251089819596 -1.739424462173343 -0.1799148638363466 -3.784698469383545 -0.5599226070787846 -3.793227792223549 -0.4962241689968014 -1.740270053687452 -0.2030113945499858 0.03810357741858603 -0.08560710535715624 -0.03711833609852653 -0.02643488697022119 0.03810388751150448 -0.001919473357293152 0.03804403357207775 -0.08544425710045202 -0.03717809915542603 -0.1446184544504857 -0.06833886727690697 -0.08544425710045202 0.06833886727690698 -0.2181024719236225 -0.03804403357207774 -0.2181024719236225 0.03717809915542604 -0.1589278689549507 -3.517503574711176 -1.209469476160321 -1.637576351005736 -0.4899506188661591 -1.60714885377694 -0.5493620486491635 0.06833886727690695 -0.2180778897768378 0.03717809915542601 -0.2772523574934656 -0.03804403357207777 -0.2180778897768378 -3.784698522544912 -0.5599223776129466 -1.740270065876921 -0.2030113103218567 -1.731733911942559 -0.2667089309541987 0.1132058439606109 -0.02643471249641912 0.03798448923867157 -0.08560693088335417 0.03798417914344956 -0.001919298883491098 0.03811965220128281 -0.1691909148496111 -0.03710236454502762 -0.1446784631501363 0.03812004841057926 -0.08550448624906966 0.03724127751810454 -0.1589778357249278 -0.03798096162057727 -0.2181523549831544 -0.03798081115040063 -0.1344687724317231 -3.547781940744175 -1.150334764731821 -1.637511752180902 -0.4900819857319114 -3.517351359849356 -1.209742491236282 0.03729172604245902 -0.2771623376993361 -0.03793048631065454 -0.3016756919196557 -0.03793021458618022 -0.2179877188646143 -1.622869320241991 -0.5449599752267526 -3.502771782515439 -1.264521850803344 -3.533202545114582 -1.205112314602253 0.144423209130764 -0.08565411079277664 0.03804403357207775 -0.08565411079277664 0.1132656075060368 -0.02648206485871096 3.519634907072213 -1.200727860576276 1.578861299940099 -0.600021575930721 1.609289010118138 -0.5406106514737369 -1.592426711040016 -0.6043974690281462 -3.502736577798566 -1.264582249258277 -1.622854449132616 -0.5449874998115688 0.1131898722603979 -0.1446782402197432 0.03796841430849378 -0.169190691919218 0.03796801809625403 -0.08550426331867661 -0.03810710598162181 -0.2181524396493085 -0.1133287863275493 -0.1589779203910819 -0.03810725645291624 -0.1344688570978772 -0.03815758164282528 -0.3016758448048321 -0.1133792352029856 -0.2771624905845126 -0.03815785336931814 -0.2179878717497908 0.144423209130764 -0.08544425710045202 0.1132656075060368 -0.1446184544504857 1.734209016599792 -0.2025127584334603 3.787171555676506 -0.4957207377102524 1.725684806598952 -0.2662084117049909 3.489078071152921 -1.26036719741202 1.578795133082179 -0.6001312260728746 3.519507670502645 -1.200959597629099 1.620728963620361 -0.5537166486525158 3.561488423218359 -1.154458092708701 3.531057906240408 -1.213867268921171 1.65114379992236 -0.4943292451528582 3.561461871548045 -1.15450872025842 1.620716584679031 -0.5537389422427166 -0.03804403357207775 -0.2181024719236225 -0.144423209130764 -0.2181024719236225 -0.1132656075060368 -0.1589278689549507 -0.03804403357207775 -0.2180778897768378 -0.1132656075060368 -0.2772523574934656 -0.144423209130764 -0.2180778897768378 1.74548602931454 -0.1804100699957148 3.798444775978536 -0.473618476292029 1.736950304149554 -0.2441067676099537 3.787172504572145 -0.4957159662352187 3.778644209862403 -0.5594136565925029 1.725685475162031 -0.2662051984582139 3.798444758146664 -0.4736185545995512 3.789915866690295 -0.5373160698634416 1.736950303257186 -0.2441067517590004</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"95\" source=\"#ID1653\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1649\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1647\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1648\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1649\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1650\"/>\r\n                    <p>0 0 1 1 2 2 6 3 7 4 8 5 0 6 12 7 1 8 14 9 0 10 2 11 6 12 8 13 16 14 6 15 18 16 7 17 20 18 21 19 22 20 12 21 26 22 1 23 20 24 28 25 29 26 14 27 2 28 32 29 34 30 6 31 16 32 36 33 18 34 6 35 22 36 21 37 38 38 40 39 26 40 12 41 28 42 42 43 21 44 32 45 44 46 14 47 46 48 6 49 34 50 40 51 48 52 26 53 50 54 44 55 32 56 52 57 36 58 6 59 21 60 54 61 38 62 42 63 56 64 21 65 46 66 52 67 6 15 48 68 58 69 59 70 58 71 48 72 40 73 50 74 62 75 44 76 64 77 62 78 50 79 21 80 66 81 54 82 68 83 56 84 66 85 59 86 70 87 64 88 58 89 70 90 59 91 70 92 62 93 64 94</p>\r\n                </triangles>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1649\"/>\r\n                    <p>3 4 5 9 10 11 4 13 5 3 5 15 17 9 11 10 19 11 23 24 25 4 27 13 30 31 25 33 3 15 17 11 35 11 19 37 39 24 23 13 27 41 24 43 31 15 45 33 35 11 47 27 49 41 33 45 51 11 37 53 39 55 24 24 57 43 11 53 47 60 61 49 41 49 61 45 63 51 51 63 65 55 67 24 67 57 69 65 71 60 60 71 61 65 63 71</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1654\">\r\n            <mesh>\r\n                <source id=\"ID1655\">\r\n                    <float_array count=\"144\" id=\"ID1659\">0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID1659\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1656\">\r\n                    <float_array count=\"144\" id=\"ID1660\">-0.0006593742600013772 -0.9466403948768872 0.3222910610192537 -0.002128573944177214 -0.9461004970595006 0.3238662048388656 -0.01833442080583775 -0.9398353448568709 0.3411354182307682 0.01833442080583775 0.9398353448568709 -0.3411354182307682 0.002128573944177214 0.9461004970595006 -0.3238662048388656 0.0006593742600013772 0.9466403948768872 -0.3222910610192537 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.01522418468072721 -0.9521791109850349 0.305160883477152 -0.01522418468072721 0.9521791109850349 -0.305160883477152 0.02689478553277844 -0.1144978889026558 0.9930593657722489 0.0210125908849934 -0.1114018274912128 0.9935532717755591 0.01363640320789622 -0.1075131122113731 0.9941101444056268 -0.01363640320789622 0.1075131122113731 -0.9941101444056268 -0.0210125908849934 0.1114018274912128 -0.9935532717755591 -0.02689478553277844 0.1144978889026558 -0.9930593657722489 0.03896795812420601 -0.07191116297063634 -0.996649528610655 -0.04549002213706894 -0.03999100863499665 -0.9981640031148813 0.01346607256353736 -0.06232216632515028 -0.9979652361050727 -0.01346607256353736 0.06232216632515028 0.9979652361050727 0.04549002213706894 0.03999100863499665 0.9981640031148813 -0.03896795812420601 0.07191116297063634 0.996649528610655 -1 0 0 1 -0 -0 -0.07063030013069079 -0.03039912455602881 -0.9970392439265747 0.07063030013069079 0.03039912455602881 0.9970392439265747 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0.007591344819378201 -0.1043209431433819 0.9945147119603152 -0.007591344819378201 0.1043209431433819 -0.9945147119603152 -0.02847752976912464 0.9412040415617694 0.3366362761884698 -0.01944613168993581 0.9390402948574675 0.3432567152967266 -0.01571426971207608 0.938110735387483 0.3459787708489812 0.01571426971207608 -0.938110735387483 -0.3459787708489812 0.01944613168993581 -0.9390402948574675 -0.3432567152967266 0.02847752976912464 -0.9412040415617694 -0.3366362761884698 1 0 0 -1 -0 -0 -0.006449925473110886 0.9357134779221441 0.3527019785828205 0.006449925473110886 -0.9357134779221441 -0.3527019785828205</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"48\" source=\"#ID1660\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1658\">\r\n                    <float_array count=\"64\" id=\"ID1661\">0.5962178185185005 -3.153222447198755 -0.3076784558028441 -3.788853636176019 -0.3132526899849421 -3.129932065461746 9.122759699821472 -0.7230144093434017 9.408553242683411 -1.342410018046697 7.024862170219421 -1.477709011236827 0.2672582030481958 -3.587867602238631 -0.6416294861636938 -3.53482038775765 0.2714787355169092 -2.907390154659175 -1.685713180447373 -7.121351341609589 -2.564360875834735 -6.935206370602908 -1.290641924854021 -5.788995093053979 -3.77882935994712 4.538055591439239 -4.914503516199181 6.192265767175461 -2.972304828267201 4.869390074315862 7.431445717811585 -0.5834498077630997 6.603824181796629 1.760979977168799 8.447879157900552 3.168090786832034 8.812832047182409 2.511125951417969 -9.414598345756531 -1.39292692343394 -9.150596261024475 -0.7449076980352403 -7.422901391983032 -0.5882037063439688 -1.152089188980093 -7.16611278359242 -1.029338308238922 -5.831802174445271 -0.1220151584815939 -5.87725193204454 0.703505908083516 0.4640800664009921 -0.2056379982005104 0.4928598836778991 0.7158020717300879 1.413768038128628 -7.009677290916443 -1.450608934958776 -0.3694934503598784 0.5882635765330485 -0.3666451411266298 1.509896919897033 0.5424926673391237 1.514977305889284</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1661\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1657\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1655\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1656\"/>\r\n                </vertices>\r\n                <triangles count=\"12\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1657\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1658\"/>\r\n                    <p>0 0 1 1 2 2 6 3 7 4 8 5 12 6 1 7 0 8 14 9 15 10 16 11 20 12 21 13 22 14 26 15 6 3 8 5 22 16 21 17 28 18 30 19 31 20 32 21 15 22 36 23 16 24 38 25 39 26 40 27 30 19 32 21 44 28 39 29 46 30 40 31</p>\r\n                </triangles>\r\n                <triangles count=\"12\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1657\"/>\r\n                    <p>3 4 5 9 10 11 5 4 13 17 18 19 23 24 25 9 11 27 29 24 23 33 34 35 17 37 18 41 42 43 45 33 35 41 47 42</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1662\">\r\n            <mesh>\r\n                <source id=\"ID1663\">\r\n                    <float_array count=\"30\" id=\"ID1666\">0.5354120135307312 -1.17527174949646 -0.07834970951080322 0.562521755695343 -1.151860475540161 -0.07491381466388702 0.5547160506248474 -1.150959491729736 -0.06465452164411545 0.5547160506248474 -1.150959491729736 -0.06465452164411545 0.562521755695343 -1.151860475540161 -0.07491381466388702 0.5354120135307312 -1.17527174949646 -0.07834970951080322 0.5319939255714417 -1.170861482620239 -0.06753732264041901 0.5319939255714417 -1.170861482620239 -0.06753732264041901 0.4903435707092285 -1.175581336021423 -0.08379843086004257 0.4903435707092285 -1.175581336021423 -0.08379843086004257</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"10\" source=\"#ID1666\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1664\">\r\n                    <float_array count=\"30\" id=\"ID1667\">-0.2763363380720035 0.8551502778352715 -0.4385843483062444 -0.5409053186076919 0.695722716937777 -0.4726429280531225 -0.5430156278659727 0.6958912225936584 -0.4699674820776719 0.5430156278659727 -0.6958912225936584 0.4699674820776719 0.5409053186076919 -0.695722716937777 0.4726429280531225 0.2763363380720035 -0.8551502778352715 0.4385843483062444 -0.2920370970250125 0.849742049015813 -0.4389222984716212 0.2920370970250125 -0.849742049015813 0.4389222984716212 0.03799590451241128 0.9294106667549519 -0.3670859896024359 -0.03799590451241128 -0.9294106667549519 0.3670859896024359</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"10\" source=\"#ID1667\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1665\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1663\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1664\"/>\r\n                </vertices>\r\n                <triangles count=\"6\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1665\"/>\r\n                    <p>0 1 2 3 4 5 6 0 2 3 5 7 8 0 6 7 5 9</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1668\">\r\n            <mesh>\r\n                <source id=\"ID1669\">\r\n                    <float_array count=\"18\" id=\"ID1672\">0.5576969385147095 -1.15022337436676 -0.1041795313358307 0.5330261588096619 -1.171381711959839 -0.1073039323091507 0.5314076542854309 -1.169530868530273 -0.09279186278581619 0.5314076542854309 -1.169530868530273 -0.09279186278581619 0.5330261588096619 -1.171381711959839 -0.1073039323091507 0.5576969385147095 -1.15022337436676 -0.1041795313358307</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1672\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1670\">\r\n                    <float_array count=\"18\" id=\"ID1673\">0.6295919600173455 -0.7587678132981195 0.1669891295393434 0.6295919600173455 -0.7587678132981195 0.1669891295393434 0.6295919600173455 -0.7587678132981195 0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1673\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1671\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1669\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1670\"/>\r\n                </vertices>\r\n                <triangles count=\"2\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1671\"/>\r\n                    <p>0 1 2 3 4 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1674\">\r\n            <mesh>\r\n                <source id=\"ID1675\">\r\n                    <float_array count=\"4554\" id=\"ID1679\">0.4636488556861877 -1.158051013946533 -0.2167745679616928 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4636488556861877 -1.158051013946533 -0.2167745679616928 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4745834171772003 -1.166073203086853 -0.2129503935575485 0.4745834171772003 -1.166073203086853 -0.2129503935575485 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4532370567321777 -1.161874890327454 -0.2219637185335159 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4532370567321777 -1.161874890327454 -0.2219637185335159 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4667462110519409 -1.171931743621826 -0.2178431153297424 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4667462110519409 -1.171931743621826 -0.2178431153297424 0.4605698585510254 -1.126953125 -0.2246965765953064 0.4605698585510254 -1.126953125 -0.2246965765953064 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4839742183685303 -1.178971529006958 -0.21320441365242 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839742183685303 -1.178971529006958 -0.21320441365242 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4885714054107666 -1.171796083450317 -0.2086967974901199 0.4885714054107666 -1.171796083450317 -0.2086967974901199 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.5035322308540344 -1.182219982147217 -0.2082613259553909 0.5035322308540344 -1.182219982147217 -0.2082613259553909 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4692953824996948 -1.117928266525269 -0.2261810004711151 0.4692953824996948 -1.117928266525269 -0.2261810004711151 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.5044348835945129 -1.174407243728638 -0.2041947245597839 0.5044348835945129 -1.174407243728638 -0.2041947245597839 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5234974026679993 -1.181341052055359 -0.2032404690980911 0.5234974026679993 -1.181341052055359 -0.2032404690980911 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.481840968132019 -1.111177086830139 -0.2272232472896576 0.481840968132019 -1.111177086830139 -0.2272232472896576 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5206239223480225 -1.173695206642151 -0.1996323019266129 0.5206239223480225 -1.173695206642151 -0.1996323019266129 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.5355482697486877 -1.169721484184265 -0.1951994001865387 0.5355482697486877 -1.169721484184265 -0.1951994001865387 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5419154763221741 -1.176581740379334 -0.1983370929956436 0.5419154763221741 -1.176581740379334 -0.1983370929956436 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.49695885181427 -1.107329487800598 -0.2279713302850723 0.49695885181427 -1.107329487800598 -0.2279713302850723 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4944649934768677 -1.099338173866272 -0.232122465968132 0.4944649934768677 -1.099338173866272 -0.232122465968132 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5477467775344849 -1.16288423538208 -0.1910746395587921 0.5477467775344849 -1.16288423538208 -0.1910746395587921 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5569940805435181 -1.168012976646423 -0.1938970983028412 0.5569940805435181 -1.168012976646423 -0.1938970983028412 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5131818056106567 -1.106769561767578 -0.2286092787981033 0.5131818056106567 -1.106769561767578 -0.2286092787981033 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5144700407981873 -1.09870171546936 -0.2323014289140701 0.5144700407981873 -1.09870171546936 -0.2323014289140701 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5560302138328552 -1.153861403465271 -0.1874096095561981 0.5560302138328552 -1.153861403465271 -0.1874096095561981 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5289202332496643 -1.109543561935425 -0.2293297797441483 0.5289202332496643 -1.109543561935425 -0.2293297797441483 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5338693857192993 -1.102164149284363 -0.232584223151207 0.5338693857192993 -1.102164149284363 -0.232584223151207 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5716711282730103 -1.144144535064697 -0.1867542266845703 0.5716711282730103 -1.144144535064697 -0.1867542266845703 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5426270365715027 -1.115358591079712 -0.2303158938884735 0.5426270365715027 -1.115358591079712 -0.2303158938884735 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5507592558860779 -1.10938823223114 -0.233196958899498 0.5507592558860779 -1.10938823223114 -0.233196958899498 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5698375701904297 -1.131062269210815 -0.1842824816703796 0.5698375701904297 -1.131062269210815 -0.1842824816703796 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5580675601959229 -1.132967352867127 -0.1818155646324158 0.5580675601959229 -1.132967352867127 -0.1818155646324158 0.5529654026031494 -1.12365186214447 -0.2317251414060593 0.5529654026031494 -1.12365186214447 -0.2317251414060593 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5634716749191284 -1.119650483131409 -0.234331026673317 0.5634716749191284 -1.119650483131409 -0.234331026673317 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5516188144683838 -1.123155951499939 -0.1799236834049225 0.5516188144683838 -1.123155951499939 -0.1799236834049225 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5619267821311951 -1.118939995765686 -0.1825531870126724 0.5619267821311951 -1.118939995765686 -0.1825531870126724 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5707834362983704 -1.131942868232727 -0.2361352443695068 0.5707834362983704 -1.131942868232727 -0.2361352443695068 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5408812165260315 -1.115089893341065 -0.1785658150911331 0.5408812165260315 -1.115089893341065 -0.1785658150911331 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5485350489616394 -1.108938336372376 -0.1814902722835541 0.5485350489616394 -1.108938336372376 -0.1814902722835541 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.5719619989395142 -1.145043611526489 -0.2386840134859085 0.5719619989395142 -1.145043611526489 -0.2386840134859085 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5268968939781189 -1.109560012817383 -0.1776151955127716 0.5268968939781189 -1.109560012817383 -0.1776151955127716 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5314382910728455 -1.10209047794342 -0.1809175610542297 0.5314382910728455 -1.10209047794342 -0.1809175610542297 0.5558396577835083 -1.154414772987366 -0.2393956333398819 0.5558396577835083 -1.154414772987366 -0.2393956333398819 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5667877793312073 -1.157662510871887 -0.2419774681329727 0.5667877793312073 -1.157662510871887 -0.2419774681329727 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5119343400001526 -1.099033117294312 -0.180652067065239 0.5119343400001526 -1.099033117294312 -0.180652067065239 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5110345482826233 -1.107124924659729 -0.1769119054079056 0.5110345482826233 -1.107124924659729 -0.1769119054079056 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5473005175590515 -1.163247227668762 -0.2431076467037201 0.5473005175590515 -1.163247227668762 -0.2431076467037201 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5560925006866455 -1.168561935424805 -0.2459687143564224 0.5560925006866455 -1.168561935424805 -0.2459687143564224 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4919718503952026 -1.100103139877319 -0.1804688721895218 0.4919718503952026 -1.100103139877319 -0.1804688721895218 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.494856595993042 -1.108041167259216 -0.1762722134590149 0.494856595993042 -1.108041167259216 -0.1762722134590149 0.5345627069473267 -1.169810295104981 -0.2472778558731079 0.5345627069473267 -1.169810295104981 -0.2472778558731079 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5405961871147156 -1.176667809486389 -0.2504985928535461 0.5405961871147156 -1.176667809486389 -0.2504985928535461 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.4799317121505737 -1.112206339836121 -0.1754997223615646 0.4799317121505737 -1.112206339836121 -0.1754997223615646 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.5194347500801086 -1.173466086387634 -0.251732736825943 0.5194347500801086 -1.173466086387634 -0.251732736825943 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5219248533248901 -1.18116819858551 -0.2553885877132416 0.5219248533248901 -1.18116819858551 -0.2553885877132416 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4677366316318512 -1.119231224060059 -0.1744198352098465 0.4677366316318512 -1.119231224060059 -0.1744198352098465 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.5032081604003906 -1.173833608627319 -0.2562981843948364 0.5032081604003906 -1.173833608627319 -0.2562981843948364 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5019099116325378 -1.181609272956848 -0.2604122757911682 0.5019099116325378 -1.181609272956848 -0.2604122757911682 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4594584703445435 -1.128440141677856 -0.172881230711937 0.4594584703445435 -1.128440141677856 -0.172881230711937 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4870093464851379 -1.170987844467163 -0.2608384788036346 0.4870093464851379 -1.170987844467163 -0.2608384788036346 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4819841086864471 -1.178058624267578 -0.2653992772102356 0.4819841086864471 -1.178058624267578 -0.2653992772102356 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4729524850845337 -1.164982080459595 -0.2651008367538452 0.4729524850845337 -1.164982080459595 -0.2651008367538452 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4647094905376434 -1.170600295066834 -0.2700395882129669 0.4647094905376434 -1.170600295066834 -0.2700395882129669 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.4627623558044434 -1.156416177749634 -0.2688753008842468 0.4627623558044434 -1.156416177749634 -0.2688753008842468 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4649145305156708 -1.160146474838257 -0.1646309047937393 0.4649145305156708 -1.160146474838257 -0.1646309047937393 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4546861052513123 -1.164170503616333 -0.1697998344898224 0.4546861052513123 -1.164170503616333 -0.1697998344898224 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.47580885887146 -1.168325185775757 -0.1607684940099716 0.47580885887146 -1.168325185775757 -0.1607684940099716 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4680851995944977 -1.174239277839661 -0.1656459718942642 0.4680851995944977 -1.174239277839661 -0.1656459718942642 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4899028539657593 -1.173924684524536 -0.1565033048391342 0.4899028539657593 -1.173924684524536 -0.1565033048391342 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4854431748390198 -1.181017994880676 -0.1610624641180039 0.4854431748390198 -1.181017994880676 -0.1610624641180039 0.4604437947273254 -1.125065088272095 -0.276747465133667 0.4604437947273254 -1.125065088272095 -0.276747465133667 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.5050500631332398 -1.184240102767944 -0.1560435742139816 0.5050500631332398 -1.184240102767944 -0.1560435742139816 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5058070421218872 -1.176416993141174 -0.1519948393106461 0.5058070421218872 -1.176416993141174 -0.1519948393106461 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.469342440366745 -1.116126656532288 -0.2782136499881744 0.469342440366745 -1.116126656532288 -0.2782136499881744 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5249907970428467 -1.183200836181641 -0.151024729013443 0.5249907970428467 -1.183200836181641 -0.151024729013443 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.521974503993988 -1.175574421882629 -0.1474335044622421 0.521974503993988 -1.175574421882629 -0.1474335044622421 0.4820057153701782 -1.109466791152954 -0.2792381644248962 0.4820057153701782 -1.109466791152954 -0.2792381644248962 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.5368162989616394 -1.171478390693665 -0.1430082470178604 0.5368162989616394 -1.171478390693665 -0.1430082470178604 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5433157086372376 -1.178148150444031 -0.1461730748414993 0.5433157086372376 -1.178148150444031 -0.1461730748414993 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.4971978068351746 -1.105741739273071 -0.2799796760082245 0.4971978068351746 -1.105741739273071 -0.2799796760082245 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4948467612266541 -1.097743153572083 -0.2841138243675232 0.4948467612266541 -1.097743153572083 -0.2841138243675232 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5488884449005127 -1.164548993110657 -0.1389009952545166 0.5488884449005127 -1.164548993110657 -0.1389009952545166 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5582281947135925 -1.169593691825867 -0.1417096853256226 0.5582281947135925 -1.169593691825867 -0.1417096853256226 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5134349465370178 -1.10530686378479 -0.2806179523468018 0.5134349465370178 -1.10530686378479 -0.2806179523468018 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5148717761039734 -1.097256898880005 -0.2842935025691986 0.5148717761039734 -1.097256898880005 -0.2842935025691986 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5570006370544434 -1.155444264411926 -0.1352554857730866 0.5570006370544434 -1.155444264411926 -0.1352554857730866 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5291153788566589 -1.108209729194641 -0.2813448011875153 0.5291153788566589 -1.108209729194641 -0.2813448011875153 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5342056155204773 -1.100881338119507 -0.2845841646194458 0.5342056155204773 -1.100881338119507 -0.2845841646194458 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5724602341651917 -1.145607948303223 -0.1346215158700943 0.5724602341651917 -1.145607948303223 -0.1346215158700943 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5427180528640747 -1.114132642745972 -0.2823444902896881 0.5427180528640747 -1.114132642745972 -0.2823444902896881 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5509542226791382 -1.108233690261841 -0.2852115333080292 0.5509542226791382 -1.108233690261841 -0.2852115333080292 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5703842043876648 -1.132545948028565 -0.1321807950735092 0.5703842043876648 -1.132545948028565 -0.1321807950735092 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5586453080177307 -1.134552240371704 -0.12970831990242 0.5586453080177307 -1.134552240371704 -0.12970831990242 0.552798330783844 -1.122508764266968 -0.2837682664394379 0.552798330783844 -1.122508764266968 -0.2837682664394379 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5634849667549133 -1.118594884872437 -0.2863717079162598 0.5634849667549133 -1.118594884872437 -0.2863717079162598 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5520180463790894 -1.124776363372803 -0.1278393864631653 0.5520180463790894 -1.124776363372803 -0.1278393864631653 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5622471570968628 -1.120481729507446 -0.1304780244827271 0.5622471570968628 -1.120481729507446 -0.1304780244827271 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5705611705780029 -1.130938291549683 -0.2882024645805359 0.5705611705780029 -1.130938291549683 -0.2882024645805359 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5411297678947449 -1.116797208786011 -0.1264989823102951 0.5411297678947449 -1.116797208786011 -0.1264989823102951 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.548848032951355 -1.110594391822815 -0.1294268220663071 0.548848032951355 -1.110594391822815 -0.1294268220663071 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5715000629425049 -1.144049525260925 -0.2907814383506775 0.5715000629425049 -1.144049525260925 -0.2907814383506775 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5270463824272156 -1.111389398574829 -0.1255616396665573 0.5270463824272156 -1.111389398574829 -0.1255616396665573 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5314984917640686 -1.103869557380676 -0.1288754492998123 0.5314984917640686 -1.103869557380676 -0.1288754492998123 0.5552088022232056 -1.153280735015869 -0.2915137708187103 0.5552088022232056 -1.153280735015869 -0.2915137708187103 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5118945837020874 -1.100982189178467 -0.1286222636699677 0.5118945837020874 -1.100982189178467 -0.1286222636699677 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5111450552940369 -1.109081149101257 -0.1248650401830673 0.5111450552940369 -1.109081149101257 -0.1248650401830673 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5463075637817383 -1.162050008773804 -0.2952521145343781 0.5463075637817383 -1.162050008773804 -0.2952521145343781 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5551921725273132 -1.167435169219971 -0.2981182038784027 0.5551921725273132 -1.167435169219971 -0.2981182038784027 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4919535517692566 -1.102204203605652 -0.1284358650445938 0.4919535517692566 -1.102204203605652 -0.1284358650445938 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.4949806928634644 -1.110114693641663 -0.1242219507694244 0.4949806928634644 -1.110114693641663 -0.1242219507694244 0.5336343050003052 -1.168520212173462 -0.2994299232959747 0.5336343050003052 -1.168520212173462 -0.2994299232959747 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5396984219551086 -1.17541229724884 -0.3026644587516785 0.5396984219551086 -1.17541229724884 -0.3026644587516785 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.480143129825592 -1.114396691322327 -0.1234430968761444 0.480143129825592 -1.114396691322327 -0.1234430968761444 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.5184391140937805 -1.17204761505127 -0.3038930296897888 0.5184391140937805 -1.17204761505127 -0.3038930296897888 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5207850933074951 -1.179760098457336 -0.3075655698776245 0.5207850933074951 -1.179760098457336 -0.3075655698776245 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4683116972446442 -1.121699452400208 -0.1222783178091049 0.4683116972446442 -1.121699452400208 -0.1222783178091049 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.461048811674118 -1.131386756896973 -0.1205792278051376 0.461048811674118 -1.131386756896973 -0.1205792278051376 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4607804119586945 -1.152724027633667 -0.1155533939599991 0.4607804119586945 -1.152724027633667 -0.1155533939599991 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4680401384830475 -1.162484645843506 -0.1121409386396408 0.4680401384830475 -1.162484645843506 -0.1121409386396408 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4580906927585602 -1.166784763336182 -0.1172759383916855 0.4580906927585602 -1.166784763336182 -0.1172759383916855 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4794342219829559 -1.170353889465332 -0.1082139611244202 0.4794342219829559 -1.170353889465332 -0.1082139611244202 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4721178412437439 -1.176489114761353 -0.1130447238683701 0.4721178412437439 -1.176489114761353 -0.1130447238683701 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4938605427742004 -1.175561666488648 -0.1039053350687027 0.4938605427742004 -1.175561666488648 -0.1039053350687027 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4898883104324341 -1.182911038398743 -0.1083405017852783 0.4898883104324341 -1.182911038398743 -0.1083405017852783 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.5096529722213745 -1.185441017150879 -0.1033653542399406 0.5096529722213745 -1.185441017150879 -0.1033653542399406 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098979473114014 -1.177605509757996 -0.0993800014257431 0.5098979473114014 -1.177605509757996 -0.0993800014257431 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5294449925422669 -1.183813214302063 -0.09840545058250427 0.5294449925422669 -1.183813214302063 -0.09840545058250427 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5259718894958496 -1.176306962966919 -0.0948249101638794 0.5259718894958496 -1.176306962966919 -0.0948249101638794 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5405214428901672 -1.171802759170532 -0.09043388068675995 0.5405214428901672 -1.171802759170532 -0.09043388068675995 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5474494099617004 -1.178286552429199 -0.093544140458107 0.5474494099617004 -1.178286552429199 -0.093544140458107 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5521175265312195 -1.164524674415588 -0.08638119697570801 0.5521175265312195 -1.164524674415588 -0.08638119697570801 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5617793798446655 -1.169313788414002 -0.08915026485919952 0.5617793798446655 -1.169313788414002 -0.08915026485919952 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5596198439598084 -1.155208110809326 -0.08280808478593826 0.5596198439598084 -1.155208110809326 -0.08280808478593826 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5744172930717468 -1.144819259643555 -0.08224614709615707 0.5744172930717468 -1.144819259643555 -0.08224614709615707 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5714950561523438 -1.131919503211975 -0.07991252094507217 0.5714950561523438 -1.131919503211975 -0.07991252094507217 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.559681236743927 -1.134244561195374 -0.07743934541940689 0.559681236743927 -1.134244561195374 -0.07743934541940689 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5526447892189026 -1.124674439430237 -0.07563516497612 0.5526447892189026 -1.124674439430237 -0.07563516497612 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5625854730606079 -1.12008547782898 -0.07830538600683212 0.5625854730606079 -1.12008547782898 -0.07830538600683212 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5412472486495972 -1.116996884346008 -0.07435604929924011 0.5412472486495972 -1.116996884346008 -0.07435604929924011 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5485594868659973 -1.110581040382385 -0.07733217626810074 0.5485594868659973 -1.110581040382385 -0.07733217626810074 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5268322229385376 -1.111981153488159 -0.07346238195896149 0.5268322229385376 -1.111981153488159 -0.07346238195896149 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5307966470718384 -1.104349851608276 -0.0768328532576561 0.5307966470718384 -1.104349851608276 -0.0768328532576561 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5110327005386353 -1.102004647254944 -0.07660330086946487 0.5110327005386353 -1.102004647254944 -0.07660330086946487 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5107991099357605 -1.110127329826355 -0.07278375327587128 0.5107991099357605 -1.110127329826355 -0.07278375327587128 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5108838081359863 -1.106828689575195 -0.07990724593400955</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1518\" source=\"#ID1679\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1676\">\r\n                    <float_array count=\"4554\" id=\"ID1680\">0.7116708837850373 0.7019521713401213 0.02806603505151321 0.5353173971062792 0.682865854756012 0.4971212213974565 0.737245834253374 0.3797311575543762 0.558813768493995 -0.737245834253374 -0.3797311575543762 -0.558813768493995 -0.5353173971062792 -0.682865854756012 -0.4971212213974565 -0.7116708837850373 -0.7019521713401213 -0.02806603505151321 0.7293853031182515 0.4062619024414093 0.5504074365593031 -0.7293853031182515 -0.4062619024414093 -0.5504074365593031 0.3217641207685286 0.832196716188115 0.4515711197051622 -0.3217641207685286 -0.832196716188115 -0.4515711197051622 0.8551425374279981 0.1137214122970094 -0.5057654407592304 0.8413495777315172 0.1893711133358783 -0.5062306485041452 -0.8413495777315172 -0.1893711133358783 0.5062306485041452 -0.8551425374279981 -0.1137214122970094 0.5057654407592304 -0.3800054119371152 -0.01453889161881108 0.9248699949338827 -0.3750179728961746 0.09078606260087684 0.9225613317510514 -0.379253227111593 -0.05515227528217267 0.9236477771621829 0.379253227111593 0.05515227528217267 -0.9236477771621829 0.3750179728961746 -0.09078606260087684 -0.9225613317510514 0.3800054119371152 0.01453889161881108 -0.9248699949338827 0.8189175815511282 -0.02914902590783115 0.5731704187369371 -0.8189175815511282 0.02914902590783115 -0.5731704187369371 -0.3666652985344028 -0.1470296851004238 0.9186614341257324 -0.3567323136201435 -0.1797042290898553 0.9167597539521685 0.3567323136201435 0.1797042290898553 -0.9167597539521685 0.3666652985344028 0.1470296851004238 -0.9186614341257324 0.4686066523877808 0.8829418569476178 0.02866151754199518 -0.4686066523877808 -0.8829418569476178 -0.02866151754199518 0.7524101408696786 0.4659479230344618 -0.465587277464002 -0.7524101408696786 -0.4659479230344618 0.465587277464002 0.8259665881004755 -0.2402942949423648 -0.5099390622023489 -0.8259665881004755 0.2402942949423648 0.5099390622023489 -0.362814134912121 0.111554295612124 0.925160279431868 0.362814134912121 -0.111554295612124 -0.925160279431868 0.8229490491338481 0.02578359544042075 0.5675297954608728 -0.8229490491338481 -0.02578359544042075 -0.5675297954608728 0.8318497362912086 -0.2056747177206577 -0.5154841672862265 -0.8318497362912086 0.2056747177206577 0.5154841672862265 -0.3282798987083118 -0.2624462240004592 0.9073887191341764 0.3282798987083118 0.2624462240004592 -0.9073887191341764 0.122880769654211 0.895041873632129 0.4287194431026854 -0.122880769654211 -0.895041873632129 -0.4287194431026854 -0.2545333500310454 -0.3210229160174924 -0.9122264308348006 -0.2471679512239378 -0.2985262902585059 -0.9218405816149861 -0.152416296237888 -0.4664354693319945 -0.8713249827648502 0.152416296237888 0.4664354693319945 0.8713249827648502 0.2471679512239378 0.2985262902585059 0.9218405816149861 0.2545333500310454 0.3210229160174924 0.9122264308348006 -0.3131325503241589 -0.1234551955288698 -0.9416511140674219 -0.2995098322824998 -0.1347925511896848 -0.9445235987045982 0.2995098322824998 0.1347925511896848 0.9445235987045982 0.3131325503241589 0.1234551955288698 0.9416511140674219 -0.7112062640457456 -0.7025334994503608 -0.02514621506555601 -0.5589728191536472 -0.6498545269164316 -0.5150130884682884 -0.9359964274276729 -0.3517817543255671 -0.01266037780873084 0.9359964274276729 0.3517817543255671 0.01266037780873084 0.5589728191536472 0.6498545269164316 0.5150130884682884 0.7112062640457456 0.7025334994503608 0.02514621506555601 -0.332993880196678 0.2202540363226734 0.9168441717299244 0.332993880196678 -0.2202540363226734 -0.9168441717299244 -0.328938048740701 -0.8033638405159231 -0.4963932914959336 -0.466090014478561 -0.8841596436575528 -0.03196596519306006 0.466090014478561 0.8841596436575528 0.03196596519306006 0.328938048740701 0.8033638405159231 0.4963932914959336 0.8306556856039417 -0.5565983328246119 0.0144716229465927 -0.8306556856039417 0.5565983328246119 -0.0144716229465927 0.6945338870796753 -0.5290705524739058 -0.4875520794776212 -0.6945338870796753 0.5290705524739058 0.4875520794776212 -0.1306456276842966 -0.866194015653377 -0.4823273237265885 -0.2464385877352586 -0.9684724233977866 -0.0364580250846064 0.2464385877352586 0.9684724233977866 0.0364580250846064 0.1306456276842966 0.866194015653377 0.4823273237265885 -0.3138510212708438 -0.2841832337118347 0.9059455977730303 0.3138510212708438 0.2841832337118347 -0.9059455977730303 0.2540901770460554 0.9666107038501276 0.03319531790878375 -0.2540901770460554 -0.9666107038501276 -0.03319531790878375 0.5643088165704985 0.7140801601412177 -0.4143007173943784 -0.5643088165704985 -0.7140801601412177 0.4143007173943784 -0.3139222174966849 0.05128821237034839 -0.9480624244393497 0.3139222174966849 -0.05128821237034839 0.9480624244393497 -0.9597648161928933 -0.2806352262868117 -0.00976562159678172 0.9597648161928933 0.2806352262868117 0.00976562159678172 -0.322037179718785 0.2144970607378 0.9221079469420136 0.322037179718785 -0.2144970607378 -0.9221079469420136 0.7616350347395199 -0.3651610676273299 0.5353218364186153 -0.7616350347395199 0.3651610676273299 -0.5353218364186153 -0.31677346396858 0.09264401157420453 -0.9439659208068825 0.31677346396858 -0.09264401157420453 0.9439659208068825 0.06287306268676872 -0.8760278543005509 -0.4781445142192458 -0.06287306268676872 0.8760278543005509 0.4781445142192458 -0.2570814061046293 -0.3475596914782427 0.9017269051629854 0.2570814061046293 0.3475596914782427 -0.9017269051629854 -0.07307391728897358 0.9059654040739069 0.4169974690969323 0.07307391728897358 -0.9059654040739069 -0.4169974690969323 -0.03938863183529962 -0.538048317326203 -0.8419931970655016 0.03938863183529962 0.538048317326203 0.8419931970655016 -0.9931138443770341 0.1171074856303961 0.003275502403372714 -0.9848207832588084 0.1734761948025066 0.005833926495086407 0.9848207832588084 -0.1734761948025066 -0.005833926495086407 0.9931138443770341 -0.1171074856303961 -0.003275502403372714 -0.8474248755763526 0.5305787100121511 0.01890271769469281 -0.8283161743331357 0.5598719726514161 0.02087317842424748 0.8283161743331357 -0.5598719726514161 -0.02087317842424748 0.8474248755763526 -0.5305787100121511 -0.01890271769469281 -0.2700042395207376 0.3208992526405757 0.9078113131568413 0.2700042395207376 -0.3208992526405757 -0.9078113131568413 0.07034711482529543 -0.5595881892235496 -0.8257798386478478 -0.07034711482529543 0.5595881892235496 0.8257798386478478 0.587272046502337 -0.8093880343899205 -0.001597868385652056 -0.587272046502337 0.8093880343899205 0.001597868385652056 0.5099095310147842 -0.7296686651050987 -0.4556049926680197 -0.5099095310147842 0.7296686651050987 0.4556049926680197 -0.2828630320997383 0.2426507848307525 -0.9279596444309216 0.2828630320997383 -0.2426507848307525 0.9279596444309216 0.1787474381172575 -0.5392555554077365 -0.8229537042436902 -0.1787474381172575 0.5392555554077365 0.8229537042436902 -0.03438013672743311 -0.9987521835622533 -0.0362226728477399 0.03438013672743311 0.9987521835622533 0.0362226728477399 -0.2512280346402211 -0.3570550449326406 0.8996644760681405 0.2512280346402211 0.3570550449326406 -0.8996644760681405 0.04869907658823495 0.9982759987746035 0.03276324480299457 -0.04869907658823495 -0.9982759987746035 -0.03276324480299457 0.3711498313041716 0.8484665325741075 -0.3772960983426096 -0.3711498313041716 -0.8484665325741075 0.3772960983426096 -0.6057320559409027 0.795127545577512 0.02934046130327287 0.6057320559409027 -0.795127545577512 -0.02934046130327287 -0.2698658743382608 0.2961595472264194 0.9162215520573003 0.2698658743382608 -0.2961595472264194 -0.9162215520573003 0.5816068301066244 -0.663602821211347 0.470494198533484 -0.5816068301066244 0.663602821211347 -0.470494198533484 -0.2686309993082194 0.2880621993603541 -0.9191613326888503 0.2686309993082194 -0.2880621993603541 0.9191613326888503 -0.5932621022767013 0.804464749553707 0.0296064980657997 0.5932621022767013 -0.804464749553707 -0.0296064980657997 0.2823812218328424 -0.4806794641766704 -0.830185580623405 -0.2823812218328424 0.4806794641766704 0.830185580623405 0.2505482073841761 -0.8378586389163725 -0.4849932957987971 -0.2505482073841761 0.8378586389163725 0.4849932957987971 -0.1747254219544659 -0.3953249454357398 0.9017700452105643 0.1747254219544659 0.3953249454357398 -0.9017700452105643 -0.269787438181167 0.8647912808873121 0.423498262925511 0.269787438181167 -0.8647912808873121 -0.423498262925511 -0.2021770691781843 0.3530693316193985 0.9134913681958636 -0.1918981575903566 0.3817008057313711 0.9041457802906834 0.1918981575903566 -0.3817008057313711 -0.9041457802906834 0.2021770691781843 -0.3530693316193985 -0.9134913681958636 0.1692723764072049 0.9176857401311533 -0.3594436603216075 -0.1692723764072049 -0.9176857401311533 0.3594436603216075 0.350213950657196 -0.9365358264104842 -0.0158377591442387 -0.350213950657196 0.9365358264104842 0.0158377591442387 0.3115077194688655 -0.8473674173878394 -0.4300365108461951 -0.3115077194688655 0.8473674173878394 0.4300365108461951 -0.2053704330187628 0.4066247173330662 -0.8902130781422446 0.2053704330187628 -0.4066247173330662 0.8902130781422446 -0.3625291776399519 0.9313584765223022 0.03382282616453856 0.3625291776399519 -0.9313584765223022 -0.03382282616453856 -0.03190857183921407 0.93184815621673 -0.3614427434583004 -0.1549911753047212 0.9873781432922444 0.03259045452922111 0.1549911753047212 -0.9873781432922444 -0.03259045452922111 0.03190857183921407 -0.93184815621673 0.3614427434583004 0.1733093536903892 -0.9842603919487195 -0.03457381616733454 -0.1733093536903892 0.9842603919487195 0.03457381616733454 -0.1804048848422663 -0.4056306790331152 0.8960568228366898 0.1804048848422663 0.4056306790331152 -0.8960568228366898 -0.108805433348809 0.4031123833662217 0.9086593333315748 0.108805433348809 -0.4031123833662217 -0.9086593333315748 0.3631414463665614 -0.8364782339863709 0.4104052314455118 -0.3631414463665614 0.8364782339863709 -0.4104052314455118 -0.1858169195835328 0.4347471399737442 -0.8811736472915747 0.1858169195835328 -0.4347471399737442 0.8811736472915747 -0.3566777150334399 0.933613505802546 0.03386486943136579 0.3566777150334399 -0.933613505802546 -0.03386486943136579 -0.1232384028517292 0.3821397865521475 0.9158501403594552 0.1232384028517292 -0.3821397865521475 -0.9158501403594552 -0.3718386216031298 0.9277963706743407 0.03049482001596008 0.3718386216031298 -0.9277963706743407 -0.03049482001596008 0.3769085707966882 -0.3788840177068252 -0.8452140737034208 -0.3769085707966882 0.3788840177068252 0.8452140737034208 0.4429179332453602 -0.7517449794132562 -0.4885726049796708 -0.4429179332453602 0.7517449794132562 0.4885726049796708 -0.08868578433421416 -0.404843097298547 0.9100752156974414 0.08868578433421416 0.404843097298547 -0.9100752156974414 -0.4722049908017236 0.7597220128569533 0.4470401658045096 0.4722049908017236 -0.7597220128569533 -0.4470401658045096 0.1349569415431963 -0.9904765886164998 -0.02725346458576107 -0.1349569415431963 0.9904765886164998 0.02725346458576107 0.1148517625882883 -0.9010483209033618 -0.4182355747991743 -0.1148517625882883 0.9010483209033618 0.4182355747991743 -0.1350424427577856 0.8787885333691383 -0.4577054208472182 0.1350424427577856 -0.8787885333691383 0.4577054208472182 -0.1391785592704044 0.989617306401859 0.03587360463270809 0.1391785592704044 -0.989617306401859 -0.03587360463270809 -0.02950439234126823 0.3883875311015432 0.9210236785867235 0.02950439234126823 -0.3883875311015432 -0.9210236785867235 -0.2379891605344312 0.891093379186692 -0.3864113728111002 0.2379891605344312 -0.891093379186692 0.3864113728111002 0.4018188507707239 -0.9154802688229474 -0.0209162272209588 -0.4018188507707239 0.9154802688229474 0.0209162272209588 -0.100085503680128 -0.4247726450810115 0.8997505720720472 0.100085503680128 0.4247726450810115 -0.8997505720720472 0.149269000632694 -0.9164617465126577 0.3712366261955926 -0.149269000632694 0.9164617465126577 -0.3712366261955926 -0.08635669052636709 0.5298659996736879 -0.8436732450369257 0.08635669052636709 -0.5298659996736879 0.8436732450369257 -0.03900572845106688 0.3769642007921201 0.9254061510867322 0.03900572845106688 -0.3769642007921201 -0.9254061510867322 -0.667625789639097 0.5691203515451191 0.4799769061797995 0.667625789639097 -0.5691203515451191 -0.4799769061797995 -0.6097550454350776 0.7922787176737801 0.022208513855214 0.6097550454350776 -0.7922787176737801 -0.022208513855214 0.4545986938444905 -0.2369848167058383 -0.8585908363159855 -0.4545986938444905 0.2369848167058383 0.8585908363159855 0.6358716013457333 -0.5907649801212694 -0.4966528413935922 -0.6358716013457333 0.5907649801212694 0.4966528413935922 -0.007502297839772759 -0.3776969063399905 0.925898894301275 0.007502297839772759 0.3776969063399905 -0.925898894301275 -0.06862623427926712 -0.9970195165030676 -0.03524944936642797 0.06862623427926712 0.9970195165030676 0.03524944936642797 -0.08052297485908085 -0.9028420140569938 -0.4223651834294049 0.08052297485908085 0.9028420140569938 0.4223651834294049 0.05900428262862644 0.89880510324023 -0.4343591613179128 -0.05900428262862644 -0.89880510324023 0.4343591613179128 0.07261340932901327 0.9967048932856687 0.03614759308751523 -0.07261340932901327 -0.9967048932856687 -0.03614759308751523 0.04179663426654825 0.3419041216917153 0.938804885444364 -0.04179663426654825 -0.3419041216917153 -0.938804885444364 -0.015040960508501 -0.4057912697378742 0.9138420076312457 0.015040960508501 0.4057912697378742 -0.9138420076312457 -0.4517263098586344 0.7788118881748393 -0.435195799404179 0.4517263098586344 -0.7788118881748393 0.435195799404179 0.6413006735416574 -0.7670395894745782 -0.01958862664117091 -0.6413006735416574 0.7670395894745782 0.01958862664117091 -0.054347935502678 -0.9322939027710796 0.3575952750840892 0.054347935502678 0.9322939027710796 -0.3575952750840892 0.02122241934069372 0.5779986549452476 -0.815761707730151 -0.02122241934069372 -0.5779986549452476 0.815761707730151 0.0435010045089644 0.3322311570815762 0.9421943116316018 -0.0435010045089644 -0.3322311570815762 -0.9421943116316018 0.06238736218192513 -0.3162640646319618 0.9466175882913077 -0.06238736218192513 0.3162640646319618 -0.9466175882913077 -0.8151742883947546 0.2813160644072832 0.5063123062364794 0.8151742883947546 -0.2813160644072832 -0.5063123062364794 -0.8495097889871003 0.5275543050046959 0.004424215874554589 0.8495097889871003 -0.5275543050046959 -0.004424215874554589 0.4986818555958908 -0.0546081901313145 -0.8650632072109072 -0.4986818555958908 0.0546081901313145 0.8650632072109072 0.8439535395437307 -0.5361077387325823 -0.01819108470228664 -0.8439535395437307 0.5361077387325823 0.01819108470228664 -0.2769446260576919 -0.9598235560561156 -0.04517095679259156 0.2769446260576919 0.9598235560561156 0.04517095679259156 -0.2862441926806097 -0.8449631923969382 -0.4517759020255516 0.2862441926806097 0.8449631923969382 0.4517759020255516 0.2515240060345187 0.8702968979477529 -0.4234607228667922 -0.2515240060345187 -0.8702968979477529 0.4234607228667922 0.285022113988306 0.9578448162586878 0.035995867873935 -0.285022113988306 -0.9578448162586878 -0.035995867873935 0.1022641569809444 0.2645290245048019 0.9589402678955111 -0.1022641569809444 -0.2645290245048019 -0.9589402678955111 0.8727466539507099 -0.4878051827691275 -0.01895736483317585 -0.8727466539507099 0.4878051827691275 0.01895736483317585 0.06497119151503472 -0.3441637413544276 0.9366589899264509 -0.06497119151503472 0.3441637413544276 -0.9366589899264509 -0.6577171642732842 0.5643165632134004 -0.4989538538816246 0.6577171642732842 -0.5643165632134004 0.4989538538816246 0.4964578187488516 -0.01406200872446651 -0.8679469419922888 -0.4964578187488516 0.01406200872446651 0.8679469419922888 -0.2544265746159438 -0.8958214392384447 0.3643776435649682 0.2544265746159438 0.8958214392384447 -0.3643776435649682 0.1346525740323371 0.5836816827901039 -0.8007398937743633 -0.1346525740323371 -0.5836816827901039 0.8007398937743633 0.1124481173905443 0.2448637316454644 0.9630146280404989 -0.1124481173905443 -0.2448637316454644 -0.9630146280404989 0.8819697538892645 0.007598171866789702 -0.471244757009341 -0.8819697538892645 -0.007598171866789702 0.471244757009341 0.1171398320703514 -0.2299441770171356 0.9661283223249602 -0.1171398320703514 0.2299441770171356 -0.9661283223249602 -0.8597805182002386 -0.06612450851032715 0.5063645029991706 0.8597805182002386 0.06612450851032715 -0.5063645029991706 -0.8025564832620339 0.1985573670928974 -0.5625638302870289 0.8025564832620339 -0.1985573670928974 0.5625638302870289 0.4943676037891732 0.1453010501104848 -0.857022915189869 -0.4943676037891732 -0.1453010501104848 0.857022915189869 -0.5011081975069153 -0.8640068972210966 -0.04881245687059649 0.5011081975069153 0.8640068972210966 0.04881245687059649 -0.4953971625889056 -0.7179255223596246 -0.4890445742910574 0.4953971625889056 0.7179255223596246 0.4890445742910574 0.4523361541883907 0.78269789407462 -0.4275231107498302 -0.4523361541883907 -0.78269789407462 0.4275231107498302 0.5160103324743733 0.8561743149607777 0.02643632313938037 -0.5160103324743733 -0.8561743149607777 -0.02643632313938037 0.1456798900475802 0.1553296146775426 0.977061963459765 -0.1456798900475802 -0.1553296146775426 -0.977061963459765 0.9975819344811169 -0.06940501209422294 -0.003637072052292452 -0.9975819344811169 0.06940501209422294 0.003637072052292452 0.1299031228142292 -0.2399521483669082 0.9620541279872025 -0.1299031228142292 0.2399521483669082 -0.9620541279872025 -0.8574309484630749 -0.02498433355687328 0.5139921708493532 0.8574309484630749 0.02498433355687328 -0.5139921708493532 -0.7991850679086362 0.2325782180646128 -0.5542658204451704 0.7991850679086362 -0.2325782180646128 0.5542658204451704 -0.4545593221843078 -0.8001107826523628 0.3914058738685027 0.4545593221843078 0.8001107826523628 -0.3914058738685027 0.248556603048201 0.5432161265870228 -0.801957514396449 -0.248556603048201 -0.5432161265870228 0.801957514396449 0.1547328152558442 0.122294846017621 0.9803579583603773 -0.1547328152558442 -0.122294846017621 -0.9803579583603773 0.4386407978618918 0.3279107683376264 -0.8367011285156191 -0.4386407978618918 -0.3279107683376264 0.8367011285156191 0.8139565735366405 0.3698909682614625 -0.4479457199204939 -0.8139565735366405 -0.3698909682614625 0.4479457199204939 0.1540882353378779 -0.1214346133398591 0.9805663926595983 -0.1540882353378779 0.1214346133398591 -0.9805663926595983 -0.7859346199362765 -0.3952550220605985 0.4754789592836855 0.7859346199362765 0.3952550220605985 -0.4754789592836855 -0.9306770059150464 -0.363141929097298 -0.04436496356921191 0.9306770059150464 0.363141929097298 0.04436496356921191 -0.7418398379539286 -0.6686780926148429 -0.05043077712532803 0.7418398379539286 0.6686780926148429 0.05043077712532803 -0.6931837386825032 -0.4794121952214146 -0.538200939704802 0.6931837386825032 0.4794121952214146 0.538200939704802 0.6572311903075883 0.6158016613381416 -0.4345520410492345 -0.6572311903075883 -0.6158016613381416 0.4345520410492345 0.751979601982272 0.6588136627921902 0.02216384264791805 -0.751979601982272 -0.6588136627921902 -0.02216384264791805 0.1709113901269176 0.02371991789714821 0.9850008437660535 -0.1709113901269176 -0.02371991789714821 -0.9850008437660535 -0.806985682832787 -0.1634898584380173 -0.5674902412295894 0.806985682832787 0.1634898584380173 0.5674902412295894 0.9307984716769429 0.3653080137814092 0.01281640319859835 -0.9307984716769429 -0.3653080137814092 -0.01281640319859835 0.1665332574936393 -0.1041946282880731 0.9805152490320931 -0.1665332574936393 0.1041946282880731 -0.9805152490320931 -0.6462181275664664 -0.6271355390768563 0.4348599167907648 0.6462181275664664 0.6271355390768563 -0.4348599167907648 0.3568816664825016 0.4535565930443404 -0.8166528595643825 -0.3568816664825016 -0.4535565930443404 0.8166528595643825 0.1682901928002351 -0.008553425957378354 0.985700385467943 -0.1682901928002351 0.008553425957378354 -0.985700385467943 -0.7170554180673224 -0.6951505316171346 -0.05096337717138435 0.7170554180673224 0.6951505316171346 0.05096337717138435 0.3464688034355574 0.4660440007429664 -0.8141021788555926 -0.3464688034355574 -0.4660440007429664 0.8141021788555926 0.6355101789920478 0.6397366600929556 -0.4322774781672137 -0.6355101789920478 -0.6397366600929556 0.4322774781672137 0.1685699882457755 0.005747924127919781 0.9856729277153952 -0.1685699882457755 -0.005747924127919781 -0.9856729277153952 -0.6279723658398444 -0.6490434333612153 0.4294104439253827 0.6279723658398444 0.6490434333612153 -0.4294104439253827 -0.7973251583280008 -0.3587315378057597 0.4853702459779992 0.7973251583280008 0.3587315378057597 -0.4853702459779992 -0.8133914914443122 -0.1226105341873485 -0.5686483434885663 0.8133914914443122 0.1226105341873485 0.5686483434885663 0.8277403482845291 0.3350766609950497 -0.450077267897652 -0.8277403482845291 -0.3350766609950497 0.450077267897652 0.9459914682312661 0.3239907301155634 0.01140827913568343 -0.9459914682312661 -0.3239907301155634 -0.01140827913568343 0.1643055508453276 -0.1191819882641469 0.9791829959894208 -0.1643055508453276 0.1191819882641469 -0.9791829959894208 -0.6747092881545888 -0.509981513077707 -0.5335599617633439 0.6747092881545888 0.509981513077707 0.5335599617633439 0.7259849856952051 0.6873476337686363 0.02233899948049431 -0.7259849856952051 -0.6873476337686363 -0.02233899948049431 0.1700273526739748 0.03942770412635237 0.9846502706494346 -0.1700273526739748 -0.03942770412635237 -0.9846502706494346 -0.7985791720875104 -0.363552001419785 0.4796886992328414 0.7985791720875104 0.363552001419785 -0.4796886992328414 -0.8005820443769667 -0.1773037046999857 -0.5723912879498229 0.8005820443769667 0.1773037046999857 0.5723912879498229 0.4462219555270105 0.310754437046979 -0.8392363470806455 -0.4462219555270105 -0.310754437046979 0.8392363470806455 0.1512091593896242 -0.1336481090587945 0.9794253279661964 -0.1512091593896242 0.1336481090587945 -0.9794253279661964 -0.4336952871383574 -0.8129939531323626 0.3885218527756087 0.4336952871383574 0.8129939531323626 -0.3885218527756087 -0.476892863167146 -0.8776635498063434 -0.04774819788819028 0.476892863167146 0.8776635498063434 0.04774819788819028 0.2380035050945923 0.552747386812773 -0.7986392539403127 -0.2380035050945923 -0.552747386812773 0.7986392539403127 0.4293210067423389 0.7959884213628337 -0.4267152519257412 -0.4293210067423389 -0.7959884213628337 0.4267152519257412 0.1533393076810733 0.1385717365111475 0.9784093880171909 -0.1533393076810733 -0.1385717365111475 -0.9784093880171909 -0.8569261781032325 0.01555967142405624 0.5152042526091591 0.8569261781032325 -0.01555967142405624 -0.5152042526091591 -0.7895538112070181 0.2718086027881717 -0.5502043826241432 0.7895538112070181 -0.2718086027881717 0.5502043826241432 0.8795771108593874 -0.03296431319738044 -0.474612958217196 -0.8795771108593874 0.03296431319738044 0.474612958217196 0.9931770550638256 -0.1165144114890372 -0.004871263707719249 -0.9931770550638256 0.1165144114890372 0.004871263707719249 0.1241152025120477 -0.2522053788639627 0.9596811258837378 -0.1241152025120477 0.2522053788639627 -0.9596811258837378 0.1440231793131058 0.1695717310208471 0.974937306630092 -0.1440231793131058 -0.1695717310208471 -0.974937306630092 -0.4731693583086877 -0.7368229619348619 -0.482910634717524 0.4731693583086877 0.7368229619348619 0.482910634717524 0.4914126934498371 0.8706243101949823 0.02295376252136903 -0.4914126934498371 -0.8706243101949823 -0.02295376252136903 -0.860938007212393 -0.02971517484011645 0.5078412705968026 0.860938007212393 0.02971517484011645 -0.5078412705968026 -0.7938388756252783 0.2406792724284641 -0.5584741062657237 0.7938388756252783 -0.2406792724284641 0.5584741062657237 0.4981231555934732 0.1224106765943749 -0.8584223599821407 -0.4981231555934732 -0.1224106765943749 0.8584223599821407 0.1121129923186101 -0.2398355057457572 0.9643182084442065 -0.1121129923186101 0.2398355057457572 -0.9643182084442065 0.1062857836713503 0.2553732186660098 0.9609827529032606 -0.1062857836713503 -0.2553732186660098 -0.9609827529032606 -0.2334720756407013 -0.9021215824597253 0.3628600837187571 0.2334720756407013 0.9021215824597253 -0.3628600837187571 -0.2546686456171097 -0.9661263003323787 -0.0417594629469482 0.2546686456171097 0.9661263003323787 0.0417594629469482 0.122600930984431 0.5856207422677188 -0.8012598566929189 -0.122600930984431 -0.5856207422677188 0.8012598566929189 0.2322407150442801 0.8745496591760359 -0.4257078151864269 -0.2322407150442801 -0.8745496591760359 0.4257078151864269 -0.8298561313882098 0.5579087855247387 0.008751470259655452 0.8298561313882098 -0.5579087855247387 -0.008751470259655452 -0.6382078320153407 0.5920859297022119 -0.4920620032099067 0.6382078320153407 -0.5920859297022119 0.4920620032099067 0.7845392952351216 -0.3705904072518202 -0.4971527373804845 -0.7845392952351216 0.3705904072518202 0.4971527373804845 0.8531057511976792 -0.5209817000929371 -0.02808283179661205 -0.8531057511976792 0.5209817000929371 0.02808283179661205 0.05742405221231209 -0.353113506087878 0.9338165398223807 -0.05742405221231209 0.353113506087878 -0.9338165398223807 0.2641960348307784 0.9638996132824373 0.03313594262521669 -0.2641960348307784 -0.9638996132824373 -0.03313594262521669 0.09615837488984069 0.2735020116739096 0.9570528807484307 -0.09615837488984069 -0.2735020116739096 -0.9570528807484307 -0.2628332742021519 -0.8574239266200959 -0.4424283897214923 0.2628332742021519 0.8574239266200959 0.4424283897214923 -0.8054615164145194 0.3138603555421823 0.5027160458888875 0.8054615164145194 -0.3138603555421823 -0.5027160458888875 0.5011963936528531 -0.07682531249453754 -0.8619164961581204 -0.5011963936528531 0.07682531249453754 0.8619164961581204 0.05593817161375906 -0.3240685888605996 0.9443783514409938 -0.05593817161375906 0.3240685888605996 -0.9443783514409938 0.03897668307371886 0.899180937822316 -0.4358376523816537 -0.03897668307371886 -0.899180937822316 0.4358376523816537 0.03524796927851993 0.3387274965168724 0.9402240497696029 -0.03524796927851993 -0.3387274965168724 -0.9402240497696029 -0.03380508164456341 -0.9335848275237068 0.356758442468479 0.03380508164456341 0.9335848275237068 -0.356758442468479 -0.04789256857390976 -0.9982543317458711 -0.03456285616087879 0.04789256857390976 0.9982543317458711 0.03456285616087879 0.00988376543882104 0.5750260384461712 -0.8180754037921276 -0.00988376543882104 -0.5750260384461712 0.8180754037921276 -0.5854676341618266 0.8104246664582965 0.0209644781693344 0.5854676341618266 -0.8104246664582965 -0.0209644781693344 -0.4340338561009833 0.7959874828626293 -0.4219224323073219 0.4340338561009833 -0.7959874828626293 0.4219224323073219 0.6153551915075027 -0.6092477810503327 -0.5001551055122906 -0.6153551915075027 0.6092477810503327 0.5001551055122906 0.6198722765427641 -0.7840918033200787 -0.03095811266789722 -0.6198722765427641 0.7840918033200787 0.03095811266789722 -0.0240890152515117 -0.4096357119910222 0.9119310844607836 0.0240890152515117 0.4096357119910222 -0.9119310844607836 0.05032314782727924 0.9980454334989849 0.03705257703017323 -0.05032314782727924 -0.9980454334989849 -0.03705257703017323 0.03482642477584477 0.3480616475002124 0.9368245351594772 -0.03482642477584477 -0.3480616475002124 -0.9368245351594772 -0.06078781811973539 -0.9051555509277223 -0.4207116230780575 0.06078781811973539 0.9051555509277223 0.4207116230780575 -0.648244348193578 0.6028199139261126 0.4651746085172723 0.648244348193578 -0.6028199139261126 -0.4651746085172723 0.4478888839578471 -0.254166375648369 -0.8572018438598732 -0.4478888839578471 0.254166375648369 0.8572018438598732 -0.01559188035809234 -0.3809853597316547 0.9244495924262397 0.01559188035809234 0.3809853597316547 -0.9244495924262397 -0.09714637419523878 0.5223268542527806 -0.8471937436661776 0.09714637419523878 -0.5223268542527806 0.8471937436661776 -0.1553367019142123 0.8736819979580711 -0.4610317510567014 0.1553367019142123 -0.8736819979580711 0.4610317510567014 -0.04773954315524366 0.3792351705057024 0.9240679744860978 0.04773954315524366 -0.3792351705057024 -0.9240679744860978 0.1710113448355263 -0.9112302410561427 0.374719318587004 -0.1710113448355263 0.9112302410561427 -0.374719318587004 0.1565670680249241 -0.9873307068236811 -0.02578426987775575 -0.1565670680249241 0.9873307068236811 0.02578426987775575 -0.3468667454040835 0.9373968143656501 0.03115563111076062 0.3468667454040835 -0.9373968143656501 -0.03115563111076062 -0.2151392028201705 0.8989116209247668 -0.3816713523128371 0.2151392028201705 -0.8989116209247668 0.3816713523128371 0.4229025381987818 -0.7599193955709881 -0.4936354478965752 -0.4229025381987818 0.7599193955709881 0.4936354478965752 0.3770488932395795 -0.9255375705175457 -0.03484734806678229 -0.3770488932395795 0.9255375705175457 0.03484734806678229 -0.1086298674624796 -0.4243898270490075 0.8989398348011938 0.1086298674624796 0.4243898270490075 -0.8989398348011938 0.1350396414025762 -0.898050863893943 -0.4186513359696902 -0.1350396414025762 0.898050863893943 0.4186513359696902 -0.161212579139658 0.9862882694139366 0.03529807280293992 0.161212579139658 -0.9862882694139366 -0.03529807280293992 -0.03730059635445455 0.3914554395165683 0.9194407563211957 0.03730059635445455 -0.3914554395165683 -0.9194407563211957 -0.4512943497619424 0.7735069445809086 0.4449948500354278 0.4512943497619424 -0.7735069445809086 -0.4449948500354278 0.3680389534659732 -0.3929713986181781 -0.842686660983633 -0.3680389534659732 0.3929713986181781 0.842686660983633 -0.09727941991731651 -0.4055490045254993 0.9088821262347099 0.09727941991731651 0.4055490045254993 -0.9088821262347099 0.3736525375605955 -0.9274559743706151 -0.01446363643004581 -0.3736525375605955 0.9274559743706151 0.01446363643004581 -0.1954342410551409 0.4220188002486209 -0.8852714779433005 0.1954342410551409 -0.4220188002486209 0.8852714779433005 -0.3804029272399221 0.9242065059515137 0.03370381735343186 0.3804029272399221 -0.9242065059515137 -0.03370381735343186 -0.1318258194384319 0.380539017198842 0.9153207141317874 0.1318258194384319 -0.380539017198842 -0.9153207141317874 0.3857828423291087 -0.8237000262929853 0.4155597011855332 -0.3857828423291087 0.8237000262929853 -0.4155597011855332 -0.1338340648369891 0.990448749506782 0.03316199164194668 0.1338340648369891 -0.990448749506782 -0.03316199164194668 -0.01119721103801772 0.9329614249593895 -0.3598021706475875 0.01119721103801772 -0.9329614249593895 0.3598021706475875 0.2325288884947923 -0.8440977660700394 -0.4831451928053774 -0.2325288884947923 0.8440977660700394 0.4831451928053774 0.1545306786828613 -0.9873150556191783 -0.03645888497352928 -0.1545306786828613 0.9873150556191783 0.03645888497352928 -0.188385323455448 -0.4022629462123833 0.8959327497145752 0.188385323455448 0.4022629462123833 -0.8959327497145752 0.3322826921166519 -0.8385561379056643 -0.431754346938681 -0.3322826921166519 0.8385561379056643 0.431754346938681 -0.2152423523879837 0.391658948099139 -0.8945803474883423 0.2152423523879837 -0.391658948099139 0.8945803474883423 -0.3868290367640545 0.9215290834905184 0.03387395160472276 0.3868290367640545 -0.9215290834905184 -0.03387395160472276 -0.1173952291246271 0.4026765469559839 0.9077829909787811 0.1173952291246271 -0.4026765469559839 -0.9077829909787811 -0.2489266544343785 0.8717552409187929 0.4219932708500514 0.2489266544343785 -0.8717552409187929 -0.4219932708500514 0.2718519283454329 -0.4882152724018878 -0.8293023434480454 -0.2718519283454329 0.4882152724018878 0.8293023434480454 -0.1836666092848303 -0.3924574694225748 0.9012456442769875 0.1836666092848303 0.3924574694225748 -0.9012456442769875 0.6033474415446439 -0.6384829790022293 0.4778193699568609 -0.6033474415446439 0.6384829790022293 -0.4778193699568609 0.6131352150534856 -0.7899777710976196 0.0005737882476074437 -0.6131352150534856 0.7899777710976196 -0.0005737882476074437 -0.2753808237963566 0.2694940130538956 -0.9227883716288078 0.2753808237963566 -0.2694940130538956 0.9227883716288078 -0.6186543257883074 0.7850985118013816 0.02978509611652962 0.6186543257883074 -0.7850985118013816 -0.02978509611652962 -0.2101296655536507 0.3486871822500865 0.9133798621541893 0.2101296655536507 -0.3486871822500865 -0.9133798621541893 0.06461220227132994 0.9973959955887958 0.03203890293196258 -0.06461220227132994 -0.9973959955887958 -0.03203890293196258 0.1834471411803039 0.9148563256495362 -0.3597013341812944 -0.1834471411803039 -0.9148563256495362 0.3597013341812944 0.04706446276303368 -0.8766449495836062 -0.4788304174907683 -0.04706446276303368 0.8766449495836062 0.4788304174907683 -0.05240410698773285 -0.9979334573656791 -0.03718365556263761 0.05240410698773285 0.9979334573656791 0.03718365556263761 -0.2558783423962933 -0.3504893468067221 0.900934787688611 0.2558783423962933 0.3504893468067221 -0.900934787688611 -0.2006920968280758 0.3777441372672295 0.9038982514813195 0.2006920968280758 -0.3777441372672295 -0.9038982514813195 0.530521993908302 -0.7131828725865238 -0.4581665682137816 -0.530521993908302 0.7131828725865238 0.4581665682137816 -0.2881229732548578 0.2233331766299601 -0.9311860418300691 0.2881229732548578 -0.2233331766299601 0.9311860418300691 -0.6320293355882027 0.7743886006494227 0.02934645021402401 0.6320293355882027 -0.7743886006494227 -0.02934645021402401 -0.05526060814531907 0.9079152834422599 0.4154950099331765 0.05526060814531907 -0.9079152834422599 -0.4154950099331765 0.169324867786248 -0.5435456118555541 -0.822123626337147 -0.169324867786248 0.5435456118555541 0.822123626337147 -0.262425063392403 -0.3400792848199952 0.9030388508474119 0.262425063392403 0.3400792848199952 -0.9030388508474119 -0.2785256252605083 0.2831471851144514 0.917742419001653 0.2785256252605083 -0.2831471851144514 -0.917742419001653 0.7799928739812686 -0.3127646575647681 0.5420234178675621 -0.7799928739812686 0.3127646575647681 -0.5420234178675621 0.8613617624052101 -0.5077492879164336 0.0157027031604448 -0.8613617624052101 0.5077492879164336 -0.0157027031604448 -0.3203826022531021 0.06507348339724793 -0.9450504906787143 0.3203826022531021 -0.06507348339724793 0.9450504906787143 -0.8569955182629497 0.514965341673612 0.01921922350664027 0.8569955182629497 -0.514965341673612 -0.01921922350664027 0.2668604861589438 0.9632172055238382 0.03159265594818225 -0.2668604861589438 -0.9632172055238382 -0.03159265594818225 0.3848259988989242 0.8411153441483907 -0.3800446400221686 -0.3848259988989242 -0.8411153441483907 0.3800446400221686 -0.1463452204061559 -0.8637105572618807 -0.4822728996518934 0.1463452204061559 0.8637105572618807 0.4822728996518934 -0.2614906007336944 -0.964583089536215 -0.03467173356931733 0.2614906007336944 0.964583089536215 0.03467173356931733 -0.3128205817555215 -0.2727530831994496 0.9098071439790585 0.3128205817555215 0.2727530831994496 -0.9098071439790585 -0.877251335563384 0.4797023225995196 0.01777008567467638 0.877251335563384 -0.4797023225995196 -0.01777008567467638 -0.2802057379684856 0.3069626073985923 0.9095376309249628 0.2802057379684856 -0.3069626073985923 -0.9095376309249628 0.7175372919484939 -0.4930483606966952 -0.4919792156966829 -0.7175372919484939 0.4930483606966952 0.4919792156966829 -0.3153542051832245 0.02589270463782779 -0.9486207319681534 0.3153542051832245 -0.02589270463782779 0.9486207319681534 0.139251626078047 0.8939704795085888 0.4259410362970489 -0.139251626078047 -0.8939704795085888 -0.4259410362970489 0.06132171006327589 -0.5593056598669248 -0.8266902846385335 -0.06132171006327589 0.5593056598669248 0.8266902846385335 -0.3280033984977638 -0.249834438430717 0.9110414501810141 0.3280033984977638 0.249834438430717 -0.9110414501810141 -0.9954158731747244 0.09554874053023407 0.004204475578096453 0.9954158731747244 -0.09554874053023407 -0.004204475578096453 -0.3316173720207138 0.1947632518625393 0.9230911083408855 0.3316173720207138 -0.1947632518625393 -0.9230911083408855 0.817575153764345 0.09709929153633617 0.5675760702587355 -0.817575153764345 -0.09709929153633617 -0.5675760702587355 0.8458775383286142 -0.1331990427620946 -0.5164776908622341 -0.8458775383286142 0.1331990427620946 0.5164776908622341 -0.3083759824560517 -0.1573796570753727 -0.9381555825038312 0.3083759824560517 0.1573796570753727 0.9381555825038312 0.4990163719993245 0.8660150067876759 0.03163334467257348 -0.4990163719993245 -0.8660150067876759 -0.03163334467257348 0.5956789501138251 0.6858391035791073 -0.4180805094633062 -0.5956789501138251 -0.6858391035791073 0.4180805094633062 -0.3620953882820228 -0.7880951880868865 -0.4977880114056444 0.3620953882820228 0.7880951880868865 0.4977880114056444 -0.4980481988525364 -0.8665885920918063 -0.03118018082188514 0.4980481988525364 0.8665885920918063 0.03118018082188514 -0.3599611320206116 -0.1644710035956224 0.9183557439307976 0.3599611320206116 0.1644710035956224 -0.9183557439307976 -0.2943256424314859 -0.1612840048859618 -0.9419978163325211 0.2943256424314859 0.1612840048859618 0.9419978163325211 -0.9995122683368192 0.0311708959594342 0.001897548226659741 0.9995122683368192 -0.0311708959594342 -0.001897548226659741 -0.3430764110087483 0.1961104572649701 0.9186072418398849 0.3430764110087483 -0.1961104572649701 -0.9186072418398849 0.8174352215529376 0.0463851767321013 0.5741498706298134 -0.8174352215529376 -0.0463851767321013 -0.5741498706298134 0.8407491762812339 -0.1769459966637989 -0.5116941829326203 -0.8407491762812339 0.1769459966637989 0.5116941829326203 0.351330893026568 0.8170314435160931 0.4571938581293095 -0.351330893026568 -0.8170314435160931 -0.4571938581293095 -0.05311202123594302 -0.5295486039395305 -0.8466152545672248 0.05311202123594302 0.5295486039395305 0.8466152545672248 -0.37190415890185 -0.1265488341316491 0.9196046374238375 0.37190415890185 0.1265488341316491 -0.9196046374238375 -0.2430519777419506 -0.3409754151362031 -0.908108750309356 0.2430519777419506 0.3409754151362031 0.908108750309356 -0.9393301647007613 -0.342807994740731 -0.01189623575252639 0.9393301647007613 0.342807994740731 0.01189623575252639 -0.3671425430842894 0.09387747790844114 0.9254152431201633 0.3671425430842894 -0.09387747790844114 -0.9254152431201633 0.7105810854744179 0.4478938837629632 0.5426468371360209 -0.7105810854744179 -0.4478938837629632 -0.5426468371360209 0.832248097536002 0.2410706283649829 -0.499247490016142 -0.832248097536002 -0.2410706283649829 0.499247490016142 0.7492661764034824 0.6617274221376309 0.02677714863071222 -0.7492661764034824 -0.6617274221376309 -0.02677714863071222 0.771790659619931 0.4268693530229965 -0.4712979240068435 -0.771790659619931 -0.4268693530229965 0.4712979240068435 -0.1704960135927644 -0.4188404448990791 -0.8919101922647355 0.1704960135927644 0.4188404448990791 0.8919101922647355 -0.7457577804628064 -0.6658070536922155 -0.02337306425952852 0.7457577804628064 0.6658070536922155 0.02337306425952852 -0.3832894174236852 -0.03328216608980961 0.9230284502177506 0.3832894174236852 0.03328216608980961 -0.9230284502177506 0.8487181325949951 0.1690921359116911 -0.5010842054757729 -0.8487181325949951 -0.1690921359116911 0.5010842054757729 -0.2376092621617667 -0.3172641265836313 -0.918087856644486 0.2376092621617667 0.3172641265836313 0.918087856644486 -0.9142861257012683 -0.4047971558969609 -0.01483721429029009 0.9142861257012683 0.4047971558969609 0.01483721429029009 -0.3773104254029742 0.07298334062249158 0.9232065179979007 0.3773104254029742 -0.07298334062249158 -0.9232065179979007 0.7162880539923326 0.4292135047673638 0.5501883232432265 -0.7162880539923326 -0.4292135047673638 -0.5501883232432265 0.5634627908216059 0.6543478710563656 0.5043198855920013 -0.5634627908216059 -0.6543478710563656 -0.5043198855920013 -0.1654917863658059 -0.4500086473228867 -0.877556087085082 0.1654917863658059 0.4500086473228867 0.877556087085082 -0.7849727204841929 -0.6191489520560974 -0.02173483985406269 0.7849727204841929 0.6191489520560974 0.02173483985406269 -0.3812090940806548 0.001936728282550633 0.9244868174688949 0.3812090940806548 -0.001936728282550633 -0.9244868174688949 0.7062604362073617 0.7074454334915477 0.02677974757430267 -0.7062604362073617 -0.7074454334915477 -0.02677974757430267 -0.1468902033780271 -0.4681736318872253 -0.8713419068064423 0.1468902033780271 0.4681736318872253 0.8713419068064423 -0.5453491082515233 -0.6597150224060673 -0.5170787554532 0.5453491082515233 0.6597150224060673 0.5170787554532 -0.3800962827451415 -0.01950687838726434 0.9247412057105005 0.3800962827451415 0.01950687838726434 -0.9247412057105005 0.5268268176928848 0.690872562717454 0.4951248390495125 -0.5268268176928848 -0.690872562717454 -0.4951248390495125 0.7478602442038386 0.3581124738567753 0.5589816734093839 -0.7478602442038386 -0.3581124738567753 -0.5589816734093839 0.8574544598189914 0.09220009470449439 -0.5062321521525515 -0.8574544598189914 -0.09220009470449439 0.5062321521525515 -0.2503197381908354 -0.2899055413683712 -0.9237395768050555 0.2503197381908354 0.2899055413683712 0.9237395768050555 -0.9458652848475723 -0.3243628032144416 -0.01129755774892723 0.9458652848475723 0.3243628032144416 0.01129755774892723 -0.3740395889501752 0.1012831300126014 0.9218655614962708 0.3740395889501752 -0.1012831300126014 -0.9218655614962708 0.7456116067161954 0.4793411569132378 -0.4629204977306279 -0.7456116067161954 -0.4793411569132378 0.4629204977306279 -0.7019985273356816 -0.7116016075999861 -0.0286569307437078 0.7019985273356816 0.7116016075999861 0.0286569307437078 -0.3797481066952388 -0.05574983828455482 0.9234085395926482 0.3797481066952388 0.05574983828455482 -0.9234085395926482 0.7412720626271601 0.3839166967398176 0.5505667072506862 -0.7412720626271601 -0.3839166967398176 -0.5505667072506862 0.8464349456429571 0.1647903424594057 -0.5063516819627598 -0.8464349456429571 -0.1647903424594057 0.5063516819627598 -0.2583514331959643 -0.3088208194943954 -0.9153601686835632 0.2583514331959643 0.3088208194943954 0.9153601686835632 -0.9667079460379267 -0.2557261280812135 -0.008938371424594471 0.9667079460379267 0.2557261280812135 0.008938371424594471 -0.3620990946634469 0.1188843009914378 0.9245273217280761 0.3620990946634469 -0.1188843009914378 -0.9245273217280761 0.319761704224191 0.8329906729542334 0.4515296128526839 -0.319761704224191 -0.8329906729542334 -0.4515296128526839 0.4674235674928223 0.8835645762532153 0.02878972286700408 -0.4674235674928223 -0.8835645762532153 -0.02878972286700408 -0.03702291901141228 -0.5386610444372147 -0.8417087279300859 0.03702291901141228 0.5386610444372147 0.8417087279300859 -0.3259297431167805 -0.8059261183550209 -0.4942194798923228 0.3259297431167805 0.8059261183550209 0.4942194798923228 -0.3683647448944613 -0.1472065661969778 0.9179529626224501 0.3683647448944613 0.1472065661969778 -0.9179529626224501 0.8188414523304987 -0.04539498950297801 0.5722219594469477 -0.8188414523304987 0.04539498950297801 -0.5722219594469477 0.8222351799247571 -0.2531189896746004 -0.5097647358931486 -0.8222351799247571 0.2531189896746004 0.5097647358931486 -0.3007669408721845 -0.1278712170447151 -0.9450863448013052 0.3007669408721845 0.1278712170447151 0.9450863448013052 -0.9912196725870244 0.1321124366424652 0.005464866042518272 0.9912196725870244 -0.1321124366424652 -0.005464866042518272 -0.3334531898166117 0.2261849219163817 0.9152318565799635 0.3334531898166117 -0.2261849219163817 -0.9152318565799635 -0.3572509335391731 -0.1813572351176351 0.916232134208289 0.3572509335391731 0.1813572351176351 -0.916232134208289 0.5652910635408757 0.7136397675557669 -0.4137200691817796 -0.5652910635408757 -0.7136397675557669 0.4137200691817796 -0.4590092833981768 -0.8877795503597669 -0.03402863084671884 0.4590092833981768 0.8877795503597669 0.03402863084671884 0.8236552113892361 0.0100891157115191 0.5670011485839446 -0.8236552113892361 -0.0100891157115191 -0.5670011485839446 0.8284238845313932 -0.2197766705392278 -0.5151816015975425 -0.8284238845313932 0.2197766705392278 0.5151816015975425 -0.3143545530052891 -0.1151609002877546 -0.9422946365387838 0.3143545530052891 0.1151609002877546 0.9422946365387838 -0.9814011140988709 0.1918121627780759 0.007742574241940405 0.9814011140988709 -0.1918121627780759 -0.007742574241940405 -0.3228697798530805 0.2179416238368772 0.9210084439661607 0.3228697798530805 -0.2179416238368772 -0.9210084439661607 -0.3242603454229419 -0.26278932832013 0.9087337328982836 0.3242603454229419 0.26278932832013 -0.9087337328982836 0.117408333593584 0.8977407286122229 0.4245902346893686 -0.117408333593584 -0.8977407286122229 -0.4245902346893686 0.2470104206640791 0.9685291661992058 0.0306121920944245 -0.2470104206640791 -0.9685291661992058 -0.0306121920944245 0.07434944066558483 -0.5619908898762065 -0.8237951203842275 -0.07434944066558483 0.5619908898762065 0.8237951203842275 -0.1220431256235842 -0.8647778253340694 -0.487098335347703 0.1220431256235842 0.8647778253340694 0.487098335347703 0.8216033761799422 -0.569899124762224 0.01352330747160687 -0.8216033761799422 0.569899124762224 -0.01352330747160687 0.6878039565639096 -0.5387580380347037 -0.4864827785112528 -0.6878039565639096 0.5387580380347037 0.4864827785112528 -0.3137263906325912 0.05871167165584165 -0.9476965186345381 0.3137263906325912 -0.05871167165584165 0.9476965186345381 -0.8392362141851329 0.5433656482746885 0.02088897018124987 0.8392362141851329 -0.5433656482746885 -0.02088897018124987 -0.2680687356060446 0.3235076137467493 0.9074590772252271 0.2680687356060446 -0.3235076137467493 -0.9074590772252271 -0.2377803173828305 -0.9701737056791269 -0.04715401864265265 0.2377803173828305 0.9701737056791269 0.04715401864265265 -0.3107264998112969 -0.2832606490249422 0.907310557102136 0.3107264998112969 0.2832606490249422 -0.907310557102136 0.3634875532057154 0.8517395637612272 -0.3773811259037166 -0.3634875532057154 -0.8517395637612272 0.3773811259037166 0.7564741380647571 -0.3790849739850686 0.5329554023911599 -0.7564741380647571 0.3790849739850686 -0.5329554023911599 -0.3158301950430751 0.1010014341521823 -0.9434246118255849 0.3158301950430751 -0.1010014341521823 0.9434246118255849 -0.8201546778133422 0.5717219841423917 0.02191523007362344 0.8201546778133422 -0.5717219841423917 -0.02191523007362344 -0.2680279304866537 0.2977166802809032 0.9162564088515616 0.2680279304866537 -0.2977166802809032 -0.9162564088515616 0.06943503471947671 -0.8752562718779137 -0.4786493857636093 -0.06943503471947671 0.8752562718779137 0.4786493857636093 -0.2548440377212501 -0.3496896180200109 0.9015385113720594 0.2548440377212501 0.3496896180200109 -0.9015385113720594 -0.07988208919618244 0.9055631098653776 0.4166224980442116 0.07988208919618244 -0.9055631098653776 -0.4166224980442116 0.04085328202072017 0.9986139180224687 0.03318511835069635 -0.04085328202072017 -0.9986139180224687 -0.03318511835069635 0.1825432294880344 -0.537504617058687 -0.8232659084455477 -0.1825432294880344 0.537504617058687 0.8232659084455477 0.5778141449209872 -0.8161653615313131 -0.00221733301270339 -0.5778141449209872 0.8161653615313131 0.00221733301270339 0.5021146877112246 -0.7356145625900777 -0.4546999622719005 -0.5021146877112246 0.7356145625900777 0.4546999622719005 -0.2805128566256279 0.2496901615118323 -0.9268049204184908 0.2805128566256279 -0.2496901615118323 0.9268049204184908 -0.5959281025117016 0.8024830981153345 0.02984248441429266 0.5959281025117016 -0.8024830981153345 -0.02984248441429266 -0.1886773154703058 0.3827046229957719 0.9043992714308115 0.1886773154703058 -0.3827046229957719 -0.9043992714308115 -0.02640921272806773 -0.9989879478236353 -0.0364092513821016 0.02640921272806773 0.9989879478236353 0.0364092513821016 -0.2495445260554905 -0.3595971644574081 0.8991203528059704 0.2495445260554905 0.3595971644574081 -0.8991203528059704 0.1610895679762224 0.919489204049207 -0.3585941364916466 -0.1610895679762224 -0.919489204049207 0.3585941364916466 0.5735083298594795 -0.6719851894797322 0.4685339909778998 -0.5735083298594795 0.6719851894797322 -0.4685339909778998 -0.2658005393205428 0.2945847544311872 -0.9179160613877642 0.2658005393205428 -0.2945847544311872 0.9179160613877642 -0.5837520942757996 0.8113702867369903 0.0301952020849721 0.5837520942757996 -0.8113702867369903 -0.0301952020849721 -0.1992068250247359 0.3545104032779222 0.9135858004759538 0.1992068250247359 -0.3545104032779222 -0.9135858004759538 0.2861913866710729 -0.4776759500918658 -0.830614337041639 -0.2861913866710729 0.4776759500918658 0.830614337041639 0.2596318044898602 -0.8356783259833757 -0.4839763027039257 -0.2596318044898602 0.8356783259833757 0.4839763027039257 -0.1711688674842123 -0.3974652104131658 0.9015113007141897 0.1711688674842123 0.3974652104131658 -0.9015113007141897 -0.2759588185517231 0.8621143631909254 0.4249771232001111 0.2759588185517231 -0.8621143631909254 -0.4249771232001111 -0.1627320990026209 0.9861135152307041 0.03314210363789748 0.1627320990026209 -0.9861135152307041 -0.03314210363789748 0.3417012434807117 -0.939666226372916 -0.01635980494440938 -0.3417012434807117 0.939666226372916 0.01635980494440938 0.3037790949308605 -0.8502658120976109 -0.4298445187052845 -0.3037790949308605 0.8502658120976109 0.4298445187052845 -0.2017856073853346 0.4122559507173126 -0.8884411065176443 0.2017856073853346 -0.4122559507173126 0.8884411065176443 -0.353383081220885 0.9348236989469535 0.03500071133518485 0.353383081220885 -0.9348236989469535 -0.03500071133518485 -0.1058642773528767 0.4039725874490634 0.9086247318724392 0.1058642773528767 -0.4039725874490634 -0.9086247318724392 -0.03908713698263171 0.9310460057487885 -0.3628023303421956 0.03908713698263171 -0.9310460057487885 0.3628023303421956 0.1852977366561001 -0.9820238636952331 -0.03597054243701098 -0.1852977366561001 0.9820238636952331 0.03597054243701098 -0.1773562520115273 -0.4078832717296075 0.8956427839912378 0.1773562520115273 0.4078832717296075 -0.8956427839912378 0.3549033669302498 -0.8408083423102349 0.4087602373556992 -0.3549033669302498 0.8408083423102349 -0.4087602373556992 -0.1821962809216112 0.4398357752132144 -0.8794026416044724 0.1821962809216112 -0.4398357752132144 0.8794026416044724 -0.3477733437344215 0.9369257507071379 0.03498341106361896 0.3477733437344215 -0.9369257507071379 -0.03498341106361896 -0.1202939555411783 0.3835446138356098 0.9156543526123544 0.1202939555411783 -0.3835446138356098 -0.9156543526123544 -0.3816928160809102 0.9236570684072814 0.03417914764138207 0.3816928160809102 -0.9236570684072814 -0.03417914764138207 0.3808577460685767 -0.3762245883194242 -0.8446315388401284 -0.3808577460685767 0.3762245883194242 0.8446315388401284 0.4502494234029147 -0.7431755873906194 -0.4949398984037865 -0.4502494234029147 0.7431755873906194 0.4949398984037865 -0.08540093500703064 -0.4049584619435693 0.9103380275481322 0.08540093500703064 0.4049584619435693 -0.9103380275481322 -0.4839614745690746 0.7462630882213914 0.4570259229969331 0.4839614745690746 -0.7462630882213914 -0.4570259229969331 0.1272613134699524 -0.9915110894095429 -0.02665178552750414 -0.1272613134699524 0.9915110894095429 0.02665178552750414 0.1074872954876126 -0.9023021340846562 -0.4174893293666727 -0.1074872954876126 0.9023021340846562 0.4174893293666727 -0.1272965915932204 0.8805005225712929 -0.4566337783393045 0.1272965915932204 -0.8805005225712929 0.4566337783393045 -0.1306424101633403 0.9907860809176877 0.03571417822774105 0.1306424101633403 -0.9907860809176877 -0.03571417822774105 -0.02654519648341589 0.3880500181022754 0.9212559557443742 0.02654519648341589 -0.3880500181022754 -0.9212559557443742 -0.2461620453906043 0.8881319108602231 -0.3881055994454122 0.2461620453906043 -0.8881319108602231 0.3881055994454122 0.4100579418481921 -0.9114198883774879 -0.03415071591039503 -0.4100579418481921 0.9114198883774879 0.03415071591039503 -0.09587537643338889 -0.4238610962026208 0.9006384864748278 0.09587537643338889 0.4238610962026208 -0.9006384864748278 0.1414243282584529 -0.9177596944437224 0.3711014721490754 -0.1414243282584529 0.9177596944437224 -0.3711014721490754 -0.08231361666613409 0.5327125572456595 -0.8422836813474013 0.08231361666613409 -0.5327125572456595 0.8422836813474013 -0.0357738988202156 0.3767866784866152 0.9256090033476472 0.0357738988202156 -0.3767866784866152 -0.9256090033476472 -0.6747147755791466 0.5584902983883989 0.4825438407245698 0.6747147755791466 -0.5584902983883989 -0.4825438407245698 -0.6195773714114743 0.7846165788034097 0.02237644077329868 0.6195773714114743 -0.7846165788034097 -0.02237644077329868 0.4569721173514396 -0.2307612450082885 -0.8590260367215694 -0.4569721173514396 0.2307612450082885 0.8590260367215694 0.6402024441693123 -0.5821756253416732 -0.501210905445672 -0.6402024441693123 0.5821756253416732 0.501210905445672 -0.004103715279616589 -0.3751858317991564 0.9269405326870106 0.004103715279616589 0.3751858317991564 -0.9269405326870106 -0.07705662111402463 -0.996390105839737 -0.03562350526221716 0.07705662111402463 0.996390105839737 0.03562350526221716 -0.08906834893946965 -0.901889651168439 -0.4226841448794457 0.08906834893946965 0.901889651168439 0.4226841448794457 0.06621860718030846 0.8987904080853973 -0.4333484722446644 -0.06621860718030846 -0.8987904080853973 0.4333484722446644 0.08027133921803603 0.9960947495142613 0.03676631733345015 -0.08027133921803603 -0.9960947495142613 -0.03676631733345015 0.04440000070647108 0.339511262952567 0.9395534802583716 -0.04440000070647108 -0.339511262952567 -0.9395534802583716 -0.01160310818029262 -0.4044697119215308 0.9144777854156274 0.01160310818029262 0.4044697119215308 -0.9144777854156274 -0.4608981076396527 0.7725726231779423 -0.4366972364123002 0.4608981076396527 -0.7725726231779423 0.4366972364123002 0.6528599392294456 -0.7569500091748925 -0.02829458180384909 -0.6528599392294456 0.7569500091748925 0.02829458180384909 -0.06266948071216899 -0.9322056042347686 0.3564621264882947 0.06266948071216899 0.9322056042347686 -0.3564621264882947 0.02541222647829463 0.5792942106514886 -0.8147223062191711 -0.02541222647829463 -0.5792942106514886 0.8147223062191711 0.04651274091202064 0.3295208045599909 0.9430019110770601 -0.04651274091202064 -0.3295208045599909 -0.9430019110770601 0.06468452150063614 -0.3132026605496621 0.9474808737398591 -0.06468452150063614 0.3132026605496621 -0.9474808737398591 -0.8189912238312458 0.2678190603133242 0.5074705175872646 0.8189912238312458 -0.2678190603133242 -0.5074705175872646 -0.8580826706007079 0.5134990070261529 0.003591684550717541 0.8580826706007079 -0.5134990070261529 -0.003591684550717541 0.4994221860388733 -0.04701482210331644 -0.8650821270808609 -0.4994221860388733 0.04701482210331644 0.8650821270808609 0.8539350250635807 -0.5200075136972855 -0.01967634793423746 -0.8539350250635807 0.5200075136972855 0.01967634793423746 -0.2852383295094946 -0.9574724353983852 -0.04342385094528022 0.2852383295094946 0.9574724353983852 0.04342385094528022 -0.2923937270020495 -0.8450148886231683 -0.4477228455361924 0.2923937270020495 0.8450148886231683 0.4477228455361924 0.2599973302445103 0.8674538926089805 -0.4241758272971886 -0.2599973302445103 -0.8674538926089805 0.4241758272971886 0.2946043865131284 0.9549829925430863 0.03486745474901904 -0.2946043865131284 -0.9549829925430863 -0.03486745474901904 0.1034208991949439 0.260849244371909 0.9598238324402627 -0.1034208991949439 -0.260849244371909 -0.9598238324402627 0.8820023309921814 -0.4709110062872414 -0.01774013195824339 -0.8820023309921814 0.4709110062872414 0.01774013195824339 0.06788770271577643 -0.3406675967151395 0.9377296243418493 -0.06788770271577643 0.3406675967151395 -0.9377296243418493 -0.663998397715294 0.5539954384782575 -0.5021903841938887 0.663998397715294 -0.5539954384782575 0.5021903841938887 0.4964854153761558 -0.007182893173776466 -0.8680153445443347 -0.4964854153761558 0.007182893173776466 0.8680153445443347 -0.2615383452944082 -0.8933672340881239 0.3653664995568126 0.2615383452944082 0.8933672340881239 -0.3653664995568126 0.138234137089511 0.58318797932163 -0.8004892904454577 -0.138234137089511 -0.58318797932163 0.8004892904454577 0.1141353834988266 0.2414910802766948 0.9636675632085843 -0.1141353834988266 -0.2414910802766948 -0.9636675632085843 0.8822869759273295 0.02221257835460109 -0.4701875088428538 -0.8822869759273295 -0.02221257835460109 0.4701875088428538 0.1188090796556892 -0.2260232352277939 0.9668494710804414 -0.1188090796556892 0.2260232352277939 -0.9668494710804414 -0.8587355829409947 -0.08016053196359224 0.5061101537277273 0.8587355829409947 0.08016053196359224 -0.5061101537277273 -0.8050817861859301 0.1826543429245913 -0.5643409506339746 0.8050817861859301 -0.1826543429245913 0.5643409506339746 0.4926074062465193 0.1528286611391779 -0.8567271115387227 -0.4926074062465193 -0.1528286611391779 0.8567271115387227 -0.5097963798255546 -0.8590980614326789 -0.04536708012834995 0.5097963798255546 0.8590980614326789 0.04536708012834995 -0.5032437954977744 -0.7119934393276318 -0.489705038413333 0.5032437954977744 0.7119934393276318 0.489705038413333 0.4603550888754805 0.778908558202372 -0.4258810281117847 -0.4603550888754805 -0.778908558202372 0.4258810281117847 0.5234788386839879 0.8515032728047226 0.03020069292101319 -0.5234788386839879 -0.8515032728047226 -0.03020069292101319 0.1518556239521084 0.1545007228608813 0.976252731678422 -0.1518556239521084 -0.1545007228608813 -0.976252731678422 0.9986607577249228 -0.05168645363632656 -0.00228067770253558 -0.9986607577249228 0.05168645363632656 0.00228067770253558 0.1318177949197178 -0.2349826358603667 0.9630198491135152 -0.1318177949197178 0.2349826358603667 -0.9630198491135152 -0.8570263845191761 -0.04026866888180463 0.5136966133278249 0.8570263845191761 0.04026866888180463 -0.5136966133278249 -0.8020591645631245 0.2179712583136024 -0.5560482237085983 0.8020591645631245 -0.2179712583136024 0.5560482237085983 -0.4616293207635678 -0.7910058913438179 0.4015072229371958 0.4616293207635678 0.7910058913438179 -0.4015072229371958 0.252555832078979 0.5415387773077612 -0.8018424435978114 -0.252555832078979 -0.5415387773077612 0.8018424435978114 0.1597918980779847 0.1228009126198238 0.9794827640996923 -0.1597918980779847 -0.1228009126198238 -0.9794827640996923 0.43533046034932 0.3341460369124196 -0.8359628079692141 -0.43533046034932 -0.3341460369124196 0.8359628079692141 0.8085218084328519 0.3823038566077889 -0.4473658977965149 -0.8085218084328519 -0.3823038566077889 0.4473658977965149 0.1551443768086196 -0.1168564902557366 0.9809560556058442 -0.1551443768086196 0.1168564902557366 -0.9809560556058442 -0.7805802054304413 -0.4068145480406504 0.4745486975987306 0.7805802054304413 0.4068145480406504 -0.4745486975987306 -0.9244807062414688 -0.3785924093579286 -0.04475724928805827 0.9244807062414688 0.3785924093579286 0.04475724928805827 -0.7501932453694553 -0.6593635372132038 -0.04949566037276468 0.7501932453694553 0.6593635372132038 0.04949566037276468 -0.697842370438045 -0.4623248219804261 -0.5470573873024455 0.697842370438045 0.4623248219804261 0.5470573873024455 0.664914727913751 0.6072439449909418 -0.4349059621058563 -0.664914727913751 -0.6072439449909418 0.4349059621058563 0.7604819999119626 0.6489570574122129 0.02284437446689475 -0.7604819999119626 -0.6489570574122129 -0.02284437446689475 0.1719287864699752 0.01941246406533368 0.9849180923416291 -0.1719287864699752 -0.01941246406533368 -0.9849180923416291 -0.8041096581556844 -0.1784964749614651 -0.5670508496484942 0.8041096581556844 0.1784964749614651 0.5670508496484942 0.9246610726829869 0.3805584205546403 0.01331124373247689 -0.9246610726829869 -0.3805584205546403 -0.01331124373247689 0.1673333523979098 -0.09873223940876282 0.9809441849955621 -0.1673333523979098 0.09873223940876282 -0.9809441849955621 -0.6515875564377071 -0.6172434749691158 0.4409582167321395 0.6515875564377071 0.6172434749691158 -0.4409582167321395 0.3609516342520132 0.4491983126357995 -0.8172727779976226 -0.3609516342520132 -0.4491983126357995 0.8172727779976226 0.1680765945439185 -0.01327555933124413 0.985684542787885 -0.1680765945439185 0.01327555933124413 -0.985684542787885 -0.7077230417893935 -0.7046661999761413 -0.05073108249932461 0.7077230417893935 0.7046661999761413 0.05073108249932461 0.3422843836739553 0.4701521679440835 -0.8135098891042559 -0.3422843836739553 -0.4701521679440835 0.8135098891042559 0.6285613170124984 0.6463117594752375 -0.4326566540798099 -0.6285613170124984 -0.6463117594752375 0.4326566540798099 0.1684890695428452 0.01078571029425203 0.985644510915591 -0.1684890695428452 -0.01078571029425203 -0.985644510915591 -0.6208654125576584 -0.6569322432545512 0.4277454468046993 0.6208654125576584 0.6569322432545512 -0.4277454468046993 -0.8016865899686199 -0.3477296061211744 0.4861920736615304 0.8016865899686199 0.3477296061211744 -0.4861920736615304 -0.8149279964462595 -0.108071750513553 -0.5693969242532153 0.8149279964462595 0.108071750513553 0.5693969242532153 0.8324412887316971 0.3218681243093255 -0.4510459082713287 -0.8324412887316971 -0.3218681243093255 0.4510459082713287 0.9513162046913369 0.3080467120941872 0.01023239266405334 -0.9513162046913369 -0.3080467120941872 -0.01023239266405334 0.1634427347217502 -0.1247272176778069 0.9786365993753906 -0.1634427347217502 0.1247272176778069 -0.9786365993753906 -0.6678615635047543 -0.5214529767142511 -0.5310816557449818 0.6678615635047543 0.5214529767142511 0.5310816557449818 0.7182704099668077 0.6953221181158507 0.02479456039136455 -0.7182704099668077 -0.6953221181158507 -0.02479456039136455 0.1693906938899092 0.04483850883956429 0.9845284662967035 -0.1693906938899092 -0.04483850883956429 -0.9845284662967035 -0.8048827537658515 -0.3506513833950874 0.4787560548060056 0.8048827537658515 0.3506513833950874 -0.4787560548060056 -0.8033590027119337 -0.1702033941689896 -0.5706532374174729 0.8033590027119337 0.1702033941689896 0.5706532374174729 0.4492489151208772 0.3040901989692398 -0.8400622376666881 -0.4492489151208772 -0.3040901989692398 0.8400622376666881 0.1500447169283141 -0.138173474524132 0.9789763397855082 -0.1500447169283141 0.138173474524132 -0.9789763397855082 -0.4259168336932312 -0.8178708918854935 0.3868876516292036 0.4259168336932312 0.8178708918854935 -0.3868876516292036 -0.4675528058744584 -0.8826984411395502 -0.04730576845088733 0.4675528058744584 0.8826984411395502 0.04730576845088733 0.2320331210174481 0.552451721304366 -0.8005983552186111 -0.2320331210174481 -0.552451721304366 0.8005983552186111 0.423552817016082 0.800072550116941 -0.424837528647266 -0.423552817016082 -0.800072550116941 0.424837528647266 0.1520176940995982 0.1435779793503188 0.9778936468381009 -0.1520176940995982 -0.1435779793503188 -0.9778936468381009 -0.8563320272399652 0.03082560515181998 0.5155048410928027 0.8563320272399652 -0.03082560515181998 -0.5155048410928027 -0.7854929334559505 0.2863061653322473 -0.548661672785251 0.7854929334559505 -0.2863061653322473 0.548661672785251 0.8789014297648528 -0.04562048212722426 -0.4748168577122944 -0.8789014297648528 0.04562048212722426 0.4748168577122944 0.990959560209696 -0.1340304237963209 -0.005915701647684131 -0.990959560209696 0.1340304237963209 0.005915701647684131 0.1214820122370588 -0.2566134302884692 0.9588491372986786 -0.1214820122370588 0.2566134302884692 -0.9588491372986786 0.1424440772897258 0.1742521583025163 0.9743438151761387 -0.1424440772897258 -0.1742521583025163 -0.9743438151761387 -0.4649789463636549 -0.7434132489006698 -0.4807611889467537 0.4649789463636549 0.7434132489006698 0.4807611889467537 0.4806943639689125 0.8763139387563154 0.03173025669476218 -0.4806943639689125 -0.8763139387563154 -0.03173025669476218 -0.860825508538414 -0.01637030433322081 0.5086368616071968 0.860825508538414 0.01637030433322081 -0.5086368616071968 -0.7900884051782785 0.2562287310294556 -0.5568726509695724 0.7900884051782785 -0.2562287310294556 0.5568726509695724 0.4980018128158077 0.116895785697058 -0.8592610602828669 -0.4980018128158077 -0.116895785697058 0.8592610602828669 0.1096753208974513 -0.2434453283727799 0.9636937771302202 -0.1096753208974513 0.2434453283727799 -0.9636937771302202 0.1039430968539143 0.2597255547324514 0.9600721164763293 -0.1039430968539143 -0.2597255547324514 -0.9600721164763293 -0.2255378127122263 -0.9042298971151196 0.3626306498355663 0.2255378127122263 0.9042298971151196 -0.3626306498355663 -0.2462918182893521 -0.96830953209926 -0.04143658153657273 0.2462918182893521 0.96830953209926 0.04143658153657273 0.1176930609954982 0.5855060654368791 -0.8020791673707371 -0.1176930609954982 -0.5855060654368791 0.8020791673707371 0.2245571584220953 0.8769448063270271 -0.4249022114056911 -0.2245571584220953 -0.8769448063270271 0.4249022114056911 -0.8181617821641836 0.5749329272460735 0.007964130472813039 0.8181617821641836 -0.5749329272460735 -0.007964130472813039 -0.6304609217472185 0.6022863710895903 -0.4896633061087792 0.6304609217472185 -0.6022863710895903 0.4896633061087792 0.4950013122049483 -0.03894530890403111 -0.8680189881735012 -0.4950013122049483 0.03894530890403111 0.8680189881735012 0.8451068423974378 -0.5342149866024907 -0.0202181359757254 -0.8451068423974378 0.5342149866024907 0.0202181359757254 0.05381813097046343 -0.3554000960565684 0.9331636407950258 -0.05381813097046343 0.3554000960565684 -0.9331636407950258 0.2549211886610694 0.9663190211123204 0.03525247520606934 -0.2549211886610694 -0.9663190211123204 -0.03525247520606934 0.09422609105449224 0.2772421142827128 0.9561685279450699 -0.09422609105449224 -0.2772421142827128 -0.9561685279450699 -0.2549063720897547 -0.8600353702113481 -0.4419976283346649 0.2549063720897547 0.8600353702113481 0.4419976283346649 -0.7992910972255116 0.3271170577276409 0.5041112698994628 0.7992910972255116 -0.3271170577276409 -0.5041112698994628 0.4949280783144888 -0.08220662998103046 -0.8650365699108271 -0.4949280783144888 0.08220662998103046 0.8650365699108271 0.8144052318136436 -0.5798883687887207 -0.02176231003644295 -0.8144052318136436 0.5798883687887207 0.02176231003644295 0.05283031180687196 -0.3265213348335798 0.9437122315901633 -0.05283031180687196 0.3265213348335798 -0.9437122315901633 0.03142046943407338 0.8992579101895374 -0.4362888550743516 -0.03142046943407338 -0.8992579101895374 0.4362888550743516 0.03222159564070842 0.3414367672048336 0.9393522783147328 -0.03222159564070842 -0.3414367672048336 -0.9393522783147328 -0.02592514452303629 -0.9334526254606158 0.3577626069087477 0.02592514452303629 0.9334526254606158 -0.3577626069087477 -0.0404770076713309 -0.9985696498028432 -0.0349323108683382 0.0404770076713309 0.9985696498028432 0.0349323108683382 0.005341845474849757 0.5749862201913398 -0.81814565407206 -0.005341845474849757 -0.5749862201913398 0.81814565407206 -0.574906489257205 0.8178669076457746 0.02400520751614118 0.574906489257205 -0.8178669076457746 -0.02400520751614118 -0.421387756392962 0.8001699473257764 -0.4268025470387568 0.421387756392962 -0.8001699473257764 0.4268025470387568 0.6075099102665565 -0.6169939087150959 -0.5002501629548846 -0.6075099102665565 0.6169939087150959 0.5002501629548846 0.6082797322516791 -0.7931780715012599 -0.02939922144152161 -0.6082797322516791 0.7931780715012599 0.02939922144152161 -0.02730706582291779 -0.4112336310983517 0.9111208618014449 0.02730706582291779 0.4112336310983517 -0.9111208618014449 0.04234098605252406 0.9984387177568578 0.03643305894571202 -0.04234098605252406 -0.9984387177568578 -0.03643305894571202 0.03222062748171443 0.3506876557753391 0.9359380317368676 -0.03222062748171443 -0.3506876557753391 -0.9359380317368676 -0.05359885155536436 -0.905109373875957 -0.4217868945733366 0.05359885155536436 0.905109373875957 0.4217868945733366 -0.6412398403612154 0.6027366805185808 0.4748894198557863 0.6412398403612154 -0.6027366805185808 -0.4748894198557863 0.4462003108871671 -0.2575534308846376 -0.8570714747346032 -0.4462003108871671 0.2575534308846376 0.8570714747346032 -0.01844543975861133 -0.3829315652906932 0.923592541143621 0.01844543975861133 0.3829315652906932 -0.923592541143621 -0.1011384811445885 0.5194155014906922 -0.8485154945214249 0.1011384811445885 -0.5194155014906922 0.8485154945214249 -0.1630305828156131 0.871816205858354 -0.4619064107257507 0.1630305828156131 -0.871816205858354 0.4619064107257507 -0.05106358717678178 0.3804744010172239 0.9233806042121655 0.05106358717678178 -0.3804744010172239 -0.9233806042121655 0.178902982933125 -0.909502291302828 0.3752323344443225 -0.178902982933125 0.909502291302828 -0.3752323344443225 0.1644525628000263 -0.9860484084502497 -0.02576607811121025 -0.1644525628000263 0.9860484084502497 0.02576607811121025 -0.3395235070082521 0.940104617936637 0.03044824334878762 0.3395235070082521 -0.940104617936637 -0.03044824334878762 -0.2081541630010026 0.9007482565618307 -0.381214405192373 0.2081541630010026 -0.9007482565618307 0.381214405192373 0.4170563673189221 -0.7630525398774261 -0.4937760705677763 -0.4170563673189221 0.7630525398774261 0.4937760705677763 0.36720841985559 -0.9296698343243465 -0.02952923186442408 -0.36720841985559 0.9296698343243465 0.02952923186442408 -0.1118294411162269 -0.4246407291739832 0.8984288659800619 0.1118294411162269 0.4246407291739832 -0.8984288659800619 0.1429901777364974 -0.8969709229870444 -0.4183263945612977 -0.1429901777364974 0.8969709229870444 0.4183263945612977 -0.1697446487579901 0.9848270794668116 0.03608847138488001 0.1697446487579901 -0.9848270794668116 -0.03608847138488001 -0.04028722686337445 0.392989375681737 0.9186600513535665 0.04028722686337445 -0.392989375681737 -0.9186600513535665 -0.4425101174830575 0.7807516343174299 0.441148140011712 0.4425101174830575 -0.7807516343174299 -0.441148140011712 0.3615447145108744 -0.3924531599859243 -0.8457339632687769 -0.3615447145108744 0.3924531599859243 0.8457339632687769 -0.1003791110580368 -0.4059871763102075 0.9083492977565748 0.1003791110580368 0.4059871763102075 -0.9083492977565748 0.3904613070520585 -0.9205045247519884 -0.01453917488421713 -0.3904613070520585 0.9205045247519884 0.01453917488421713 -0.2027938743593213 0.4136934196415589 -0.8875428998463166 0.2027938743593213 -0.4136934196415589 0.8875428998463166 -0.3965966468495452 0.9173871351526347 0.03334582378857478 0.3965966468495452 -0.9173871351526347 -0.03334582378857478 -0.1368383598079337 0.3784286616007553 0.915459999871177 0.1368383598079337 -0.3784286616007553 -0.915459999871177 0.4037435534212635 -0.8135795210505415 0.4184250303195815 -0.4037435534212635 0.8135795210505415 -0.4184250303195815 -0.2130408944280989 0.9762376935143398 -0.03966790973920272 0.2130408944280989 -0.9762376935143398 0.03966790973920272 -0.1082278509567285 0.9240489369501362 -0.3666337333069769 0.1082278509567285 -0.9240489369501362 0.3666337333069769 0.3281946322400866 -0.7677392652593321 -0.5503314491720924 -0.3281946322400866 0.7677392652593321 0.5503314491720924 0.2328783177023817 -0.9718833678048814 -0.03479092594844219 -0.2328783177023817 0.9718833678048814 0.03479092594844219 -0.1473896970475713 -0.3971277019566815 0.9058509069062251 0.1473896970475713 0.3971277019566815 -0.9058509069062251 0.3468643571967391 -0.8319756076699162 -0.4330146717476977 -0.3468643571967391 0.8319756076699162 0.4330146717476977 -0.2233698916078353 0.3809815401075 -0.8971950499308505 0.2233698916078353 -0.3809815401075 0.8971950499308505 -0.4038432049329347 0.9142219902761136 0.03329892378256747 0.4038432049329347 -0.9142219902761136 -0.03329892378256747 -0.1223518925781642 0.4012286904715316 0.9077695480269434 0.1223518925781642 -0.4012286904715316 -0.9077695480269434 -0.3151267980724777 0.8509676693573339 0.4201774944533978 0.3151267980724777 -0.8509676693573339 -0.4201774944533978 0.3363313341491097 -0.4604980154032345 -0.8214759956804354 -0.3363313341491097 0.4604980154032345 0.8214759956804354 -0.1477826541164828 -0.3878707196895589 0.9097893118463153 0.1477826541164828 0.3878707196895589 -0.9097893118463153 0.6420208181518405 -0.5915231226189216 0.4877598430240047 -0.6420208181518405 0.5915231226189216 -0.4877598430240047 0.65653122842572 -0.7542974888116372 0.001429851136826754 -0.65653122842572 0.7542974888116372 -0.001429851136826754 -0.2874144392910325 0.2414427372665864 -0.9268755821081055 0.2874144392910325 -0.2414427372665864 0.9268755821081055 -0.6582580876005819 0.7522645242817573 0.02818466986796277 0.6582580876005819 -0.7522645242817573 -0.02818466986796277 -0.2201120227169055 0.3382984877345638 0.9149343313331178 0.2201120227169055 -0.3382984877345638 -0.9149343313331178 -0.2116578245121082 0.3682512626748039 0.9053131904822851 0.2116578245121082 -0.3682512626748039 -0.9053131904822851 0.5633763436292277 -0.6828683868338715 -0.4650783393170105 -0.5633763436292277 0.6828683868338715 0.4650783393170105 -0.2983763754703027 0.1912008658930078 -0.9351009397080986 0.2983763754703027 -0.1912008658930078 0.9351009397080986 -0.6749332731683019 0.7373564838805623 0.02775774575891243 0.6749332731683019 -0.7373564838805623 -0.02775774575891243 -0.2877855553736377 0.2722912126200352 0.918170446947732 0.2877855553736377 -0.2722912126200352 -0.918170446947732 0.7965483089217491 -0.25331969064047 0.5489443741288532 -0.7965483089217491 0.25331969064047 -0.5489443741288532 0.8952256744516675 -0.4451837288087445 0.01955605805113435 -0.8952256744516675 0.4451837288087445 -0.01955605805113435 -0.3232824650890451 0.02811582924454463 -0.9458847434607676 0.3232824650890451 -0.02811582924454463 0.9458847434607676 -0.8886118728611181 0.4583255718674542 0.01751027077537788 0.8886118728611181 -0.4583255718674542 -0.01751027077537788 -0.9067575697746833 0.4213139181950124 0.01689058884340025 0.9067575697746833 -0.4213139181950124 -0.01689058884340025 -0.2922720892736487 0.2931609731637135 0.9102931778527843 0.2922720892736487 -0.2931609731637135 -0.9102931778527843 0.7420188942410478 -0.4512429732643064 -0.4957698454614613 -0.7420188942410478 0.4512429732643064 0.4957698454614613 -0.3148535364835675 -0.004871793888643465 -0.9491277659978646 0.3148535364835675 0.004871793888643465 0.9491277659978646 -0.9986403082252574 0.05205747715350662 0.002748428673804703 0.9986403082252574 -0.05205747715350662 -0.002748428673804703 -0.3382050028932526 0.1884684216310399 0.9220070661691697 0.3382050028932526 -0.1884684216310399 -0.9220070661691697 0.8102448085935331 0.1385233204286664 0.5694862946943025 -0.8102448085935331 -0.1385233204286664 -0.5694862946943025 0.850292163442842 -0.1027524680073306 -0.5161832689133712 -0.850292163442842 0.1027524680073306 0.5161832689133712 -0.3038564751406507 -0.1820363668605298 -0.9351652279973406 0.3038564751406507 0.1820363668605298 0.9351652279973406 -0.2901697835728679 -0.1816600180615158 -0.9395749754751691 0.2901697835728679 0.1816600180615158 0.9395749754751691 -0.9998129191060721 -0.01934078147536413 0.0002469018372241945 0.9998129191060721 0.01934078147536413 -0.0002469018372241945 -0.3506145778820866 0.1891215684172913 0.9172254085752041 0.3506145778820866 -0.1891215684172913 -0.9172254085752041 0.8136157480820356 0.08554507510620872 0.5750751729973943 -0.8136157480820356 -0.08554507510620872 -0.5750751729973943 0.8477309982821077 -0.1457122358244851 -0.5100197044062617 -0.8477309982821077 0.1457122358244851 0.5100197044062617 -0.2332418363908272 -0.3605133273120471 -0.9031214683459979 0.2332418363908272 0.3605133273120471 0.9031214683459979 -0.9227566296420373 -0.3850317492158972 -0.01645462085294679 0.9227566296420373 0.3850317492158972 0.01645462085294679 -0.3711117305023067 0.08354994880662744 0.924821869085065 0.3711117305023067 -0.08354994880662744 -0.924821869085065 0.6915525193962799 0.4814310474029508 0.5384972233105345 -0.6915525193962799 -0.4814310474029508 -0.5384972233105345 0.8981535665174812 0.4388266490999631 0.02741063646882945 -0.8981535665174812 -0.4388266490999631 -0.02741063646882945 0.8429352430834632 0.2038986239245007 -0.4978810371258556 -0.8429352430834632 -0.2038986239245007 0.4978810371258556 -0.2289950518611368 -0.3335850885685384 -0.9144846936432756 0.2289950518611368 0.3335850885685384 0.9144846936432756 -0.8927785079939059 -0.4501277377975449 -0.01820866083598725 0.8927785079939059 0.4501277377975449 0.01820866083598725 -0.3806718630014748 0.05862662374499314 0.9228498532845144 0.3806718630014748 -0.05862662374499314 -0.9228498532845144 0.6731402347726009 0.739007696052626 0.02738338009226562 -0.6731402347726009 -0.739007696052626 -0.02738338009226562 -0.1328738513841334 -0.4812144041162298 -0.8664740255134076 0.1328738513841334 0.4812144041162298 0.8664740255134076 -0.5162158849207206 -0.6859595176090008 -0.5128164392422929 0.5162158849207206 0.6859595176090008 0.5128164392422929 -0.3820861233216923 -0.03800548351507161 0.9233448855047532 0.3820861233216923 0.03800548351507161 -0.9233448855047532 0.4981736372697926 0.7158538915589526 0.489260904905847 -0.4981736372697926 -0.7158538915589526 -0.489260904905847 0.7240770488769371 0.517255732976564 -0.4562443796832387 -0.7240770488769371 -0.517255732976564 0.4562443796832387 -0.6700269848456324 -0.7418464818371532 -0.02697474679230343 0.6700269848456324 0.7418464818371532 0.02697474679230343 -0.3799114723477743 -0.07529745765768819 0.9219531257329924 0.3799114723477743 0.07529745765768819 -0.9219531257329924 0.2919749971374274 0.8457010469135147 0.4466993847051776 -0.2919749971374274 -0.8457010469135147 -0.4466993847051776 0.4366617916404663 0.8991652104182367 0.02878200991706404 -0.4366617916404663 -0.8991652104182367 -0.02878200991706404 -0.02177044887002021 -0.544129826311796 -0.8387185342377337 0.02177044887002021 0.544129826311796 0.8387185342377337 -0.2991009114274306 -0.8171307614867489 -0.492783891188994 0.2991009114274306 0.8171307614867489 0.492783891188994 -0.3640544368667302 -0.1638864704625395 0.9168454568775367 0.3640544368667302 0.1638864704625395 -0.9168454568775367 -0.3516856267179471 -0.196019897617879 0.9153651837916281 0.3516856267179471 0.196019897617879 -0.9153651837916281 0.5385161458900962 0.7373175566309818 -0.4078764289578351 -0.5385161458900962 -0.7373175566309818 0.4078764289578351 -0.4313189614731646 -0.9015982752540596 -0.03293180123551914 0.4313189614731646 0.9015982752540596 0.03293180123551914 -0.3161452063528133 -0.2763503626536033 0.9075696587928439 0.3161452063528133 0.2763503626536033 -0.9075696587928439 0.09038315820220927 0.9018744521072597 0.4224374005099746 -0.09038315820220927 -0.9018744521072597 -0.4224374005099746 0.2181619494371877 0.9753973184674988 0.03170859416906728 -0.2181619494371877 -0.9753973184674988 -0.03170859416906728 0.08967458377019724 -0.5583310478931445 -0.8247574855581399 -0.08967458377019724 0.5583310478931445 0.8247574855581399 -0.09608809114761942 -0.8715032637221102 -0.4808837074192855 0.09608809114761942 0.8715032637221102 0.4808837074192855 -0.2086381313968603 -0.9773338619956301 -0.03589780388732829 0.2086381313968603 0.9773338619956301 0.03589780388732829 -0.3037588754766067 -0.2968283103013384 0.9053306024722899 0.3037588754766067 0.2968283103013384 -0.9053306024722899 0.3354134538968336 0.865290934758583 -0.3725176682650289 -0.3354134538968336 -0.865290934758583 0.3725176682650289 0.09634526151574765 -0.8729893959564508 -0.4781287537170853 -0.09634526151574765 0.8729893959564508 0.4781287537170853 -0.2454519458640523 -0.3778207053344043 0.8927512850128885 0.2454519458640523 0.3778207053344043 -0.8927512850128885 -0.1068596453381972 0.9026835445539788 0.4168254245960288 0.1068596453381972 -0.9026835445539788 -0.4168254245960288 0.01341617214996129 0.9993634397870952 0.0330563389041718 -0.01341617214996129 -0.9993634397870952 -0.0330563389041718 0.1974038384609054 -0.5321711683649947 -0.8233016288833256 -0.1974038384609054 0.5321711683649947 0.8233016288833256 0.003027027676952878 -0.9993161318622146 -0.03685248571513117 -0.003027027676952878 0.9993161318622146 0.03685248571513117 -0.2410784854031796 -0.3871111001126082 0.8899585159125762 0.2410784854031796 0.3871111001126082 -0.8899585159125762 0.1343276141167968 0.9239282355531835 -0.3582076320142694 -0.1343276141167968 -0.9239282355531835 0.3582076320142694 0.2993722838353061 -0.4646129549562232 -0.8333732883636714 -0.2993722838353061 0.4646129549562232 0.8333732883636714 0.2850152925201461 -0.8250136651719049 -0.4879741133597926 -0.2850152925201461 0.8250136651719049 0.4879741133597926 -0.1571424745819219 -0.4017635371120054 0.9021597989987807 0.1571424745819219 0.4017635371120054 -0.9021597989987807 -0.3048747392502304 0.8512690426142484 0.4270742446621255 0.3048747392502304 -0.8512690426142484 -0.4270742446621255 -0.191661035085276 0.980913794752465 0.03277460746308981 0.191661035085276 -0.980913794752465 -0.03277460746308981 -0.06722178414629125 0.9289421994874978 -0.3640709020884793 0.06722178414629125 -0.9289421994874978 0.3640709020884793 0.2140686791785048 -0.9760684691549257 -0.03827458838877772 -0.2140686791785048 0.9760684691549257 0.03827458838877772 -0.1633917211133873 -0.4107405372276532 0.8969923949229134 0.1633917211133873 0.4107405372276532 -0.8969923949229134 -0.4114640890829475 0.9109562830814607 0.02925668657845718 0.4114640890829475 -0.9109562830814607 -0.02925668657845718 0.392675059128166 -0.358586445760263 -0.8468896379432878 -0.392675059128166 0.358586445760263 0.8468896379432878 0.4758242106397891 -0.7262213496936595 -0.4961792738699808 -0.4758242106397891 0.7262213496936595 0.4961792738699808 -0.07402654048899283 -0.4019009932307778 0.9126859607462723 0.07402654048899283 0.4019009932307778 -0.9126859607462723 -0.5074201901332889 0.7336684332419206 0.4519462143988402 0.5074201901332889 -0.7336684332419206 -0.4519462143988402 -0.2747979300910873 0.8774232036407563 -0.3932106551588422 0.2747979300910873 -0.8774232036407563 0.3932106551588422 0.4416148108064678 -0.8965736984884186 -0.03364464378123158 -0.4416148108064678 0.8965736984884186 0.03364464378123158 -0.08548628211920895 -0.423666707208808 0.9017752584609322 0.08548628211920895 0.423666707208808 -0.9017752584609322 -0.6983849305252001 0.5260925321892732 0.4852681077404427 0.6983849305252001 -0.5260925321892732 -0.4852681077404427 -0.652935709757424 0.7571546896547233 0.01979229287951628 0.652935709757424 -0.7571546896547233 -0.01979229287951628 0.4651313472448723 -0.2078324456462522 -0.8604989856745141 -0.4651313472448723 0.2078324456462522 0.8604989856745141 0.6654114949270703 -0.5535400797209197 -0.500820249751824 -0.6654114949270703 0.5535400797209197 0.500820249751824 0.005395287547259124 -0.3680561013165262 0.9297879312810859 -0.005395287547259124 0.3680561013165262 -0.9297879312810859 -0.000867225763679104 -0.3981886224855724 0.917303149914202 0.000867225763679104 0.3981886224855724 -0.917303149914202 -0.4894566363220897 0.7496441153331802 -0.4454951195092927 0.4894566363220897 -0.7496441153331802 0.4454951195092927 0.6864967735788914 -0.7266359314524244 -0.02687755546994618 -0.6864967735788914 0.7266359314524244 0.02687755546994618 0.0725868616834736 -0.3044345845642266 0.949763513319053 -0.0725868616834736 0.3044345845642266 -0.949763513319053 -0.8316075752541561 0.2226775441602132 0.5087666971281429 0.8316075752541561 -0.2226775441602132 -0.5087666971281429 -0.8847522436102832 0.4660615723940678 -0.0002795785034157092 0.8847522436102832 -0.4660615723940678 0.0002795785034157092 0.5016079384743974 -0.02021602861251859 -0.864858825616414 -0.5016079384743974 0.02021602861251859 0.864858825616414 0.8822555810296323 -0.4704188499675612 -0.01819877296036858 -0.8822555810296323 0.4704188499675612 0.01819877296036858 0.9073054664746716 -0.4200752144590276 -0.01826484881898978 -0.9073054664746716 0.4200752144590276 0.01826484881898978 0.07682261342699291 -0.3297455999359967 0.9409389594384412 -0.07682261342699291 0.3297455999359967 -0.9409389594384412 -0.6901848685364405 0.5152374056275222 -0.5081094991097458 0.6901848685364405 -0.5152374056275222 0.5081094991097458 0.4967362894971037 0.01610327605483461 -0.8677521208253837 -0.4967362894971037 -0.01610327605483461 0.8677521208253837 0.881137121676604 0.07683693444745683 -0.466576315631416 -0.881137121676604 -0.07683693444745683 0.466576315631416 0.121346200908773 -0.213182952753967 0.9694473313079507 -0.121346200908773 0.213182952753967 -0.9694473313079507 -0.8530883309270968 -0.1294128720969493 0.5054627663553852 0.8530883309270968 0.1294128720969493 -0.5054627663553852 -0.8141432837357056 0.1226372975117968 -0.5675656850154398 0.8141432837357056 -0.1226372975117968 0.5675656850154398 0.4880880001696214 0.1805403350483941 -0.8539176140067805 -0.4880880001696214 -0.1805403350483941 0.8539176140067805 0.9999911939194426 0.00358340787864473 -0.002184324047165417 -0.9999911939194426 -0.00358340787864473 0.002184324047165417 0.1346498631346914 -0.2158552630592423 0.9670966444815297 -0.1346498631346914 0.2158552630592423 -0.9670966444815297 -0.852543754197059 -0.09185104189736706 0.5145216548231503 0.852543754197059 0.09185104189736706 -0.5145216548231503 -0.8136703326963612 0.1551561998301619 -0.5602384700679308 0.8136703326963612 -0.1551561998301619 0.5602384700679308 0.4242136223232629 0.3566618937050531 -0.8323671643055735 -0.4242136223232629 -0.3566618937050531 0.8323671643055735 0.7885484681636336 0.4252011479454887 -0.4442919053309724 -0.7885484681636336 -0.4252011479454887 0.4442919053309724 0.1578814167796198 -0.1001769572785845 0.9823634945711617 -0.1578814167796198 0.1001769572785845 -0.9823634945711617 -0.7547596030705374 -0.4463957743418704 0.4806961142161715 0.7547596030705374 0.4463957743418704 -0.4806961142161715 -0.9002422811471575 -0.432446934138268 -0.05053201351000254 0.9002422811471575 0.432446934138268 0.05053201351000254 -0.784429404362836 -0.2204048515778357 -0.5797346039110642 0.784429404362836 0.2204048515778357 0.5797346039110642 0.9025741462529998 0.4302707163807931 0.01506722073999456 -0.9025741462529998 -0.4302707163807931 -0.01506722073999456 0.1694471870219152 -0.07902390383136461 0.9823659569801935 -0.1694471870219152 0.07902390383136461 -0.9823659569801935 -0.6778132556286053 -0.7334246779500521 -0.05155028872871112 0.6778132556286053 0.7334246779500521 0.05155028872871112 0.3277239054474204 0.4836963039014177 -0.8115632614839077 -0.3277239054474204 -0.4836963039014177 0.8115632614839077 0.6008326756885273 0.6729871147698903 -0.4313796925895602 -0.6008326756885273 -0.6729871147698903 0.4313796925895602 0.1681094028706255 0.02892216114368819 0.985343969008417 -0.1681094028706255 -0.02892216114368819 -0.985343969008417 -0.5960298095862601 -0.6811322263594015 0.4252144827016733 0.5960298095862601 0.6811322263594015 -0.4252144827016733 -0.6424561725011055 -0.5590930582546198 -0.524084934554244 0.6424561725011055 0.5590930582546198 0.524084934554244 0.6860325639933897 0.7271010793847965 0.02614080140545522 -0.6860325639933897 -0.7271010793847965 -0.02614080140545522 0.1672300435761301 0.06358661083851493 0.9838652628523872 -0.1672300435761301 -0.06358661083851493 -0.9838652628523872 -0.3992045197284531 -0.8338741797123846 0.381168734076357 0.3992045197284531 0.8338741797123846 -0.381168734076357 -0.4366474483440545 -0.8983639980873879 -0.04776120596331298 0.4366474483440545 0.8983639980873879 0.04776120596331298 0.21652768302515 0.5604449753332692 -0.799385509067716 -0.21652768302515 -0.5604449753332692 0.799385509067716 0.3958710000720266 0.8145634474200975 -0.4239959214769163 -0.3958710000720266 -0.8145634474200975 0.4239959214769163 0.1470166178175257 0.1606718982912375 0.9759972618737133 -0.1470166178175257 -0.1606718982912375 -0.9759972618737133 0.1367856755483046 0.1896587772198493 0.9722752836456687 -0.1367856755483046 -0.1896587772198493 -0.9722752836456687 -0.4363458210862009 -0.7642315505540981 -0.4749236376074457 0.4363458210862009 0.7642315505540981 0.4749236376074457 0.4488835511081195 0.8930107740742522 0.03217631010338277 -0.4488835511081195 -0.8930107740742522 -0.03217631010338277 0.09538016543152474 0.2729069538911774 0.9573005894493608 -0.09538016543152474 -0.2729069538911774 -0.9573005894493608 -0.1991257440922289 -0.911641678242569 0.3595252265568972 0.1991257440922289 0.911641678242569 -0.3595252265568972 -0.21763138543582 -0.9751835671834637 -0.0406643623904359 0.21763138543582 0.9751835671834637 0.0406643623904359 0.1020096596484588 0.5870233287360724 -0.8031174514714685 -0.1020096596484588 -0.5870233287360724 0.8031174514714685 0.1981179938194849 0.882839950676482 -0.4258437295704719 -0.1981179938194849 -0.882839950676482 0.4258437295704719 0.2257180373774269 0.9735631159368801 0.03501752261020089 -0.2257180373774269 -0.9735631159368801 -0.03501752261020089 0.08665528999423607 0.2887177158272826 0.9534846308585636 -0.08665528999423607 -0.2887177158272826 -0.9534846308585636 -0.22658225065359 -0.8704022707202611 -0.4371045307632571 0.22658225065359 0.8704022707202611 0.4371045307632571 0.1011007468646662 0.8940055806808013 -0.4365004704407433 -0.1011007468646662 -0.8940055806808013 0.4365004704407433 0.06443326429145652 0.3425219535590591 0.9372977466007442 -0.06443326429145652 -0.3425219535590591 -0.9372977466007442 -0.09417717869610834 -0.929341111713472 0.357009463588865 0.09417717869610834 0.929341111713472 -0.357009463588865 -0.1141361063721672 -0.9931842134820167 -0.02362344835770253 0.1141361063721672 0.9931842134820167 0.02362344835770253 0.05548436446878843 0.5705421072592388 -0.819391963069984 -0.05548436446878843 -0.5705421072592388 0.819391963069984 0.1183676936289435 0.9923371121115479 0.03544213637857988 -0.1183676936289435 -0.9923371121115479 -0.03544213637857988 0.06845085986894042 0.3516465771793187 0.9336268872206244 -0.06845085986894042 -0.3516465771793187 -0.9336268872206244 -0.1175175581890131 -0.9006103052869663 -0.4184384082851493 0.1175175581890131 0.9006103052869663 0.4184384082851493</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1518\" source=\"#ID1680\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1678\">\r\n                    <float_array count=\"5340\" id=\"ID1681\">-11.74144888926981 0.2995156568493015 -11.72844578741597 0.3612383321323039 -11.62607680371758 0.2695236410015677 -11.78256668186463 0.262761006242173 -11.65678044938733 0.2324514479488458 -11.67940949101347 0.1715944909997955 -9.580882603731697 1.421600639414946 -9.607195934743855 1.36255963073953 -9.727642328860437 1.456478716738787 -12.34296233652733 -1.662321588895963 -12.47259485116248 -1.563632893161546 -12.35690281990772 -1.592852254899214 11.25359972635966 3.202696558467046 11.12205437894896 3.192040233868029 11.22505410564551 3.256420738249801 -12.2778256741957 -2.055348678266946 -12.27481420880708 -1.991985827857275 -12.17174214833166 -2.08069444679817 12.57910007025483 0.03536161511213354 12.43937175444395 0.008946513143718278 12.55876004226043 0.08460807200294225 -9.467294573785217 1.521881094364595 -9.601346415461196 1.556031399693923 -9.586767854433372 1.616566234433712 -12.462725789786 -1.723326776848073 -12.46730567443074 -1.654941739996449 -12.33663307886079 -1.752777897535181 -11.28869336132121 0.4398648638747889 -11.28298616308152 0.5100510143314823 -11.17184969501088 0.4156940846380962 11.07615252924521 3.347637650004606 11.0612927033548 3.408852629792498 11.19269111039786 3.420577286670575 12.41561520551233 0.2612536600144755 12.41016093304932 0.3193238275237464 12.54904096458563 0.3483757592762649 -12.13571358259024 -2.203830549269758 -12.24023606917502 -2.116178483286911 -12.1236442051423 -2.141281075889086 -11.21175291259949 0.6206576612046281 -11.10526099853357 0.5963948490635626 -11.10146977004413 0.5256831566832035 12.42295638218037 -2.240499018688151 12.41762828509784 -2.188888247691884 12.57370146367941 -2.147123103745953 -7.586069925680303 1.949817941538308 -7.60819537041221 1.890715946886392 -7.749304143157143 1.988341492969443 -11.38058480781225 -3.271030873764528 -11.36067456409951 -3.337695502945139 -11.51496513825033 -3.237689075113913 9.522000295042211 4.628290408179952 9.462781273686264 4.668011820203072 9.633060442370404 4.683730091613124 11.76523208046429 1.72660165246162 11.71574001668296 1.774431773310611 11.86479566838173 1.780438597084393 12.26293617741474 -1.640409236288337 12.2600949049113 -1.712061773181668 12.11792521977338 -1.667086849452554 8.582894749084975 5.650800462674184 8.442122972975994 5.654527718153445 8.544366554184844 5.705255006519111 10.69429534297361 -1.561597904695199 10.52788443167712 -1.522357153209414 10.69630887454192 -1.489913897716416 -9.900225467786489 -4.636824579757597 -9.910425623077938 -4.574069523589055 -9.789317732973457 -4.656192700655551 -8.116123295485657 1.988761401734192 -8.101080489202101 2.058539639742051 -7.994956948560539 1.970766669297734 8.867639124559188 -1.423482573657848 8.682830784924246 -1.388297678149426 8.869004640289541 -1.35179908183861 12.4814838856345 -2.535243935387405 12.32361028046125 -2.572587378820387 12.46077931862412 -2.493028243144972 -7.467743502836397 2.038189770179729 -7.617401495150659 2.075532089734611 -7.608093276448374 2.136490070290303 -11.32310925696379 -3.341949109365313 -11.47003562461896 -3.307732454895078 -11.47779287200183 -3.242319126658382 9.345263057604573 4.996263702353766 9.470591739150775 5.05977166077629 9.51526332418165 5.013750705311483 11.69207919916437 1.956179677677225 11.80411877732831 2.016810328045327 11.84108299496973 1.962935924976196 11.53250658600702 -3.2937293863427 11.65661798818057 -3.244338195426174 11.66710759314982 -3.305456648502024 12.11873944609426 -1.665530933477226 12.26090874005484 -1.710506622428359 12.11573781677575 -1.737184806741658 10.69481208164027 -1.560248948535748 10.52640090788366 -1.59267802114744 10.5284012816735 -1.521007904880169 8.618093920705027 5.813962404226531 8.500860657116686 5.757708680955643 8.477340463340058 5.818095675446084 8.863835676057466 -1.43583079714488 8.67773387194017 -1.472342261358682 8.679026700309082 -1.400647969371447 -9.651361284927219 -4.665461375826346 -9.773549465450035 -4.584334530269455 -9.652501269993472 -4.603005449856767 -7.989509410617246 2.167613199549099 -7.878378916217077 2.149052074777905 -7.884060026655901 2.079338842195392 11.58286659727549 -3.207762407974214 11.717654063922 -3.218079582774465 11.60866230772046 -3.263443251872617 6.8024959949886 -1.315169183001223 6.604245192873673 -1.354082244872524 6.604863575770278 -1.282392355259058 11.56007032580767 -4.512516076480284 11.55093439552774 -4.467841717403029 11.72558156553137 -4.418324245411744 -5.32706318121881 2.330758983969183 -5.343308444112894 2.270707543166831 -5.500806707047188 2.370979239898025 -9.826589170379434 -3.974607359006392 -9.81029134104285 -4.039041553451645 -9.976624520188517 -3.938214189792536 6.876764242952964 5.946212405802218 6.819011396469598 5.982111922878704 7.011396664271641 6.003770116684303 11.71583660752506 -1.725252336186162 11.84708922395542 -1.776039007761535 11.71371726709966 -1.796926660236255 8.785357077343116 -1.645965651398126 8.920027470748808 -1.702637621248604 8.78224832741803 -1.717616460982631 11.84807912321745 -1.708398896539467 11.84459315430042 -1.780039199584147 11.71334063005863 -1.729252380568548 6.647801241743226 6.377228777611297 6.799473637701535 6.443314285184105 6.839782541090891 6.40100200948506 5.442131985907679 7.094449136178818 5.485940593849181 7.041522291144609 5.328097840241385 7.057449095653953 4.42124092548154 6.964040605521635 4.592010374627861 7.032737066621546 4.621381257541662 6.990114533605977 -5.658289412791666 -5.80177853690927 -5.677452900271285 -5.74116267308825 -5.533056881975005 -5.815300248078828 -4.171628216484647 2.511730079263448 -4.308183490024966 2.524016656431328 -4.287791378959351 2.592006132494689 7.243050797876385 -7.790876490447768 7.224362489216523 -7.848287411221677 7.092176616415644 -7.819598782151662 2.096998671710746 7.340669616702345 2.280459009696378 7.411437032476648 2.297043273553935 7.366325298233281 6.797944273614725 -1.332168338789559 6.6003112185224 -1.299393883842578 6.79851282549804 -1.260482466016632 11.53173238421809 -4.690202647446402 11.35516371564881 -4.735306374773988 11.50440471180585 -4.654589799965487 -5.259056507240328 2.356389715352195 -5.418447200525968 2.395472743371997 -5.416163797169103 2.457040261511123 -9.733313145750167 -4.008711148135379 -9.896791658206171 -3.971258390226221 -9.900126551066935 -3.908375954930581 8.902223862974255 -1.659890107778779 8.90028411629473 -1.731567578837551 8.765611732637771 -1.674898535885492 4.886278355500735 -1.510110149169463 4.883899426680693 -1.581778252261581 4.731457784751854 -1.519715201032139 4.628567068798929 6.584826676335769 4.579836239075592 6.621244609343353 4.780336367366727 6.645547777093944 5.628892475123588 7.188550491108445 5.500078713141996 7.149740799693046 5.471304793045595 7.205970412741817 2.299889899483088 6.950322569585003 2.262372408423257 6.988786366947189 2.462758520709198 7.012736027295794 -5.377745294550071 -5.720513876955472 -5.522807977343678 -5.647186116354863 -5.38631330642562 -5.659668017166704 -4.060375952524813 2.671271332259083 -4.069921487613713 2.603857562684286 -4.185656402419397 2.684515495011054 7.396324549621735 -7.608717857458358 7.529531508741336 -7.634317416186927 7.397141033844306 -7.663371343043143 4.73128336449428 -1.519980003883965 4.883725038692171 -1.582043006063475 4.728976788938931 -1.591648050335046 -0.2623939151831403 7.192021975820668 -0.2882031907343582 7.234366400791881 -0.09856620857761261 7.255684692062035 4.600984050270906 -1.25497677049042 4.401147185348393 -1.294499925841812 4.401034565651177 -1.222812712557103 10.34843091374799 -6.102023026030048 10.32865731907952 -6.063442410896943 10.51594670131318 -6.007619749890765 -3.024566038011676 2.614173059664148 -3.033320735940625 2.552965586811446 -3.199731901498446 2.655063304862684 -7.869327831525308 -4.396665505132675 -7.859232112623701 -4.459099537014789 -8.029118937316149 -4.358607758926194 2.80338546977934 7.817560174019732 2.651174619007168 7.793309069816327 2.625530491847687 7.844952543933458 2.501163748330692 7.639824342170074 2.545905629507471 7.590475487409764 2.367395524972351 7.61508978971215 -7.789523853502827 -4.41638889590269 -7.963648209580031 -4.377043011570966 -7.959731909486614 -4.316234069489483 -1.452510394040529 -5.753264390215425 -1.594887257913027 -5.744142072134474 -1.615132328423253 -5.685031944660874 -0.6805255439388658 2.446925120460911 -0.8355996490348416 2.454796094465432 -0.8154635459344278 2.520751271812972 2.206032798767428 -9.232251956037208 2.177164481613696 -9.281967985823835 2.030900249366722 -9.245132810952153 1.18078117221213 -1.512357968187159 1.006539800950368 -1.445972828189044 1.182269970665983 -1.440676522659683 -5.699138178084543 -4.723544166976328 -5.874720303201966 -4.68374440348691 -5.862301994908608 -4.624578427908912 -0.2472358015268761 7.56848280017925 -0.4366062880899663 7.545745711628018 -0.2519689592964963 7.617707515150494 4.603779124356972 -1.244203004424983 4.40382998669326 -1.212037611753788 4.603675541672037 -1.172513637404377 9.996371707486201 -6.299288350336639 10.14814460439911 -6.219257254932239 10.18623724756709 -6.249139634979684 -2.924899355663001 2.658345360810463 -3.085560799920206 2.697903569888154 -3.090838590846902 2.76091732316388 -0.2425418896444004 7.759050048208717 -0.2033617495848006 7.71296278464953 -0.3965134596743597 7.743115340900113 -5.797455951671555 -4.72888951395918 -5.795755319060717 -4.789761749946327 -5.958540525269064 -4.690410918465032 -1.346012285661594 -5.572166732864312 -1.33801683863705 -5.632068485196453 -1.500993267249134 -5.564361484786845 -0.5873198502714261 2.598794170090538 -0.5950487446150343 2.533777516879111 -0.7296950531256075 2.607932517163409 2.39871123418593 -9.091707786376636 2.546232638608836 -9.125297466938982 2.392123971019934 -9.141003364633905 1.178743975734375 -1.515679005070357 1.002977098907413 -1.520986627162868 1.004502142666655 -1.44929461518139 0.124197980807792 8.013735527304492 -0.0508325942405391 8.000322499871041 -0.06794789182396233 8.047632544815455 -3.462659446866571 -5.088523691965518 -3.469555344496901 -5.148244870947446 -3.616068461591926 -5.050932896824789 -3.190935871667016 7.152346912506171 -3.2075366039817 7.19995355679202 -3.036510958986105 7.21606128078029 2.184128383719081 -1.195890384387676 1.993906149719048 -1.23448887110764 1.993099842741572 -1.162802263894674 8.85340002942193 -7.37705073251813 8.820881506475359 -7.343338260105415 9.010989805826339 -7.284395031560132 -0.3721558219405674 2.922912716702614 -0.3741360009975697 2.859781547657486 -0.5389588898993131 2.962843513785378 1.841010860811883 -5.339151004110392 1.685044987527295 -5.33275759033376 1.669306136396076 -5.273812819038381 2.284246773658898 2.199535898117158 2.114348079412392 2.204579909077931 2.130035244899707 2.268703560682782 -1.574382956317714 -9.07560624458185 -1.598843878068589 -9.12128588575635 -1.766745344757587 -9.080675506967056 -1.929664949831288 -1.494754635054952 -2.12136419378335 -1.425536299440526 -1.928892107442987 -1.423055163383718 -2.789005220763803 7.608930183053209 -2.759875383825831 7.565405457637623 -2.958477020432813 7.598235637733082 -0.2305862254098634 2.984710626421055 -0.3835328563344093 3.023449877844294 -0.3947774450083669 3.088394675990279 -3.360529271533014 -5.074723276154611 -3.527773611387869 -5.03589488259901 -3.507442583608847 -4.977785405454979 -3.164103394036962 7.498919628037291 -3.334948320080214 7.481665859646864 -3.161665334791502 7.554469576134271 2.141946816386589 -1.347016227446665 1.950914292275701 -1.313942341068258 2.141550528157461 -1.275684769070103 8.367545931313082 -7.521889161878075 8.510904523052702 -7.443822241932844 8.560669073191862 -7.469360101513356 1.935564192398618 -5.150695691254837 1.937625305694038 -5.210663637304537 1.765664580042745 -5.145743430516593 2.352257450953568 2.340008797729845 2.35030451613772 2.277053980511773 2.196298392948655 2.346504281828393 -1.436569806362055 -8.957979159587007 -1.267486835270482 -8.995433275758586 -1.437147823229758 -9.004116153599394 -1.929011731256789 -1.493625859443813 -2.121456364780773 -1.496098091524942 -2.120710804885195 -1.424407231915603 -2.396398774805084 7.919002447977963 -2.588716161691157 7.912445480916588 -2.593738818145487 7.956244148618748 2.84725765789131 3.15343715271799 2.849139194257781 3.087909424565146 2.696417707258635 3.191008792351492 -0.653755907212582 -5.529349150344372 -0.6675606502791859 -5.588633021257145 -0.7923726897496097 -5.493801660748249 -6.51669874472976 6.504786669363671 -6.531014767564402 6.559216844638987 -6.379514552670415 6.56676647444814 -0.9922128335761016 -1.328294778651259 -1.165643109812238 -1.363229300725369 -1.166513227596551 -1.291900445344396 7.108951019253105 -8.425929485828988 7.06372407601108 -8.395615705091698 7.24391227245696 -8.335699164961863 4.573621223592019 -4.916651511719975 4.411314280187598 -4.911262491498004 4.403269182855177 -4.851607402140906 4.904112069894061 1.918793779259097 4.727402268474455 1.922791412813862 4.736237152207083 1.985380271621021 -4.437798329623791 -8.397316982537653 -4.451040071313446 -8.442264935614094 -4.637930829928404 -8.399912369502895 -4.597358119168579 -1.507892447416386 -4.797520813419397 -1.437615233207941 -4.597312546022032 -1.436199197686443 -5.25814206742687 7.196860485896443 -5.241338446088387 7.154917703844793 -5.434563461629423 7.187607580935707 6.497323518171333 -8.52474281684847 6.622369366610961 -8.44848361847532 6.680889858458037 -8.471549336480635 3.015012548645007 3.202968935163313 2.876850300405353 3.23959512920371 2.863088353439498 3.306794710839682 -0.5529586887712751 -5.517447700459916 -0.7041704637670615 -5.480869536733048 -0.6782037517688422 -5.422970305899322 -6.431651721616982 6.769318716729861 -6.583112641813516 6.761295992214714 -6.426791496494857 6.829938492278095 -0.9795284992144193 -1.290583599234043 -1.153827927395088 -1.254186403510166 -0.9824627614352688 -1.21896596610352 4.64657151577039 -4.760996021544277 4.640355262090291 -4.821849173762274 4.469828209252315 -4.757089485762245 4.950214427835618 2.045401205283817 4.955626831047628 1.984088816903914 4.787915037566915 2.050929208458205 -4.182367516991635 -8.341623084630752 -4.358971374696691 -8.347879702256856 -4.370280096107651 -8.302167619387358 -4.596201381844119 -1.505827281507136 -4.796353063114546 -1.5072360563653 -4.7963637397194 -1.435549474411177 -5.057470471956677 7.582553290774086 -4.865669217241129 7.545031703597378 -5.065817293544431 7.540918553991048 4.957591516893525 -9.323477817304287 4.903639879733459 -9.294322505478187 5.067308156413816 -9.234710711719869 6.654209712705845 2.946736603795653 6.654873907429679 2.878672557132365 6.522398766810107 2.980568470682666 2.923934359186434 -5.922054866367398 2.907208536146099 -5.982025405549064 2.802982723945541 -5.889461530968069 -9.802638322290378 4.800814161494554 -9.820299511097669 4.859944077207221 -9.684135151580561 4.857534280005362 -4.860752889845385 -1.41028527103227 -4.864187674367006 -1.338681412253571 -4.70940169383392 -1.379459452976369 6.958807523722374 -4.563540491940228 6.799021687318941 -4.557461396095697 6.799650798308866 -4.496414082661399 7.284856738574284 1.609208457925939 7.109567093749364 1.613872955632837 7.110902738525677 1.675324021364 -6.789442135413402 -7.534503654495818 -6.788979414593166 -7.581071930070149 -6.986459445370556 -7.538395863380834 -7.008129643592699 -1.549175893199101 -7.205871408085209 -1.479708683959871 -7.008829431586213 -1.477491424499945 -7.832844768012574 6.298513577097724 -7.827612006397824 6.256565743114188 -8.006139552828646 6.285788516270243 -4.809665896933416 -1.209971681952114 -4.657252871414563 -1.179092909372824 -4.654884380676176 -1.250760207850114 4.210688179725525 -9.378079285201636 4.311158735613041 -9.302915101020057 4.378167916048067 -9.325424874845838 6.697864003470544 3.055986178291118 6.829321579968937 2.953277954181535 6.708648164460842 2.986503354732487 3.065895121767051 -5.887984999060847 2.933787341464837 -5.854709724497033 2.960982918963832 -5.795902234497583 -9.670129115792346 5.037702401030357 -9.806288946486646 5.040265670107184 -9.671903276790584 5.103116196075329 7.043136576742679 -4.40595530181414 7.028554200167543 -4.468134874763893 6.869188407948853 -4.401316131635946 7.352803372952859 1.769272242920003 7.366683665009312 1.708971074642476 7.193031605693971 1.775576025144588 -6.565620979244169 -7.515410889788616 -6.740790494041411 -7.522325461626006 -6.764030400945428 -7.475491577683311 -7.00044973843489 -1.535394491632223 -7.197508846279785 -1.537620689163504 -7.198189008208616 -1.465922887936483 -7.639853404915388 6.727583692399423 -7.462811141342913 6.693220984734914 -7.659634417423792 6.685590613259228 -9.091993175251236 -1.400163686848697 -9.095104423048859 -1.328513963169547 -8.957198678408712 -1.374794444840026 2.088802938963234 -9.997176616541324 2.027730622655659 -9.965915446612344 2.167946043729305 -9.907699787770394 10.37420003917934 1.776465948431914 10.3674006851155 1.706671799040516 10.2568571852293 1.805140932588809 7.332845110279943 -5.645878000589251 7.32011928773478 -5.707650147655692 7.225554091578649 -5.617044665746957 -12.00365085640907 2.103529000028071 -12.11083833930589 2.056083463161218 -12.13936301001261 2.117543901426363 9.128422547300703 -4.167615688441376 8.979583680000857 -4.159240890501897 8.988062650575198 -4.096364795214314 9.62942118449809 1.180079220242551 9.468566151109352 1.187702421762954 9.462964868310205 1.248825602015191 -8.856260462870637 -6.481852542666997 -8.844030139595029 -6.531199063870697 -9.039758192796155 -6.490164318717562 -9.231914109724617 -1.608956791029672 -9.418010000617326 -1.542047426818185 -9.233337730757027 -1.537265740118989 -10.55432641586378 4.272124490870982 -10.55468275467456 4.227341829008037 -10.71373661621766 4.247774287076543 -11.96096458773688 2.293891907884383 -12.09652153339656 2.308807428075515 -11.97451007278699 2.360528953007108 -9.095146740151805 -1.328592620864423 -8.960384110906421 -1.303225258190149 -8.957240991936562 -1.374873095942348 1.094721441473835 -9.972217113667822 1.171234339606149 -9.896583233264874 1.23975293336472 -9.921829482104302 10.39408689113141 1.80897667360674 10.5034567901416 1.709699847662922 10.39601587426526 1.73818566891451 7.483868840123264 -5.591557105054264 7.36655530723886 -5.562501044965872 7.388357740887591 -5.501567722421501 9.21742561308921 -4.018882356122719 9.195921656679007 -4.082676604849426 9.055290784876068 -4.011757143174085 9.629174249886784 1.255980265621598 9.646737705419934 1.195861539282453 9.480371447671427 1.2647426972968 -8.675520694219362 -6.523252221111428 -8.836062699078173 -6.534223681332305 -8.872044167421587 -6.484641757133002 -9.250791470911054 -1.642268815319364 -9.434490888544763 -1.647091110091293 -9.436893779928141 -1.575370499087178 -10.45707069175856 4.726532492156542 -10.29913629310245 4.701291922158695 -10.48184197192814 4.679613162712742 -12.63977616208932 -0.9273837207853625 -12.74979171327828 -0.9632254569319163 -12.78919055579869 -0.9032802440668931 -12.12116219307873 -1.481798284927145 -12.12450508476186 -1.410156043194183 -11.98906089864303 -1.462353739325835 -2.535001836699398 -9.906907097943615 -2.412670307475611 -9.853889246526428 -2.478112408157837 -9.946148530229237 12.50865967383724 -0.2513612785534403 12.49146251114397 -0.3208641598353222 12.39295065094641 -0.2289750108097736 11.31895732277467 -3.810554978819632 11.31814963420504 -3.873852936035063 11.21343409370321 -3.786668892533225 11.07707933209384 -3.550728295677646 10.94469483375759 -3.538567788386231 10.95833133003168 -3.473446396453449 11.63106600647887 0.2061548452155761 11.48698905095698 0.2180093359482591 11.48046761016169 0.2794816087649741 -10.6712569807544 -5.117824792180593 -10.64809699011871 -5.171932325189414 -10.83379115271743 -5.133620797087398 -11.27988741507947 -1.748918738247703 -11.44541448108541 -1.686180825741681 -11.28293958390806 -1.6772134093654 -12.39938061167506 -0.4161167486264854 -12.38865371823923 -0.4662161340696799 -12.52963891058665 -0.4659498291942053 11.30927551074504 -3.664382577826464 11.41503851120376 -3.75078062260317 11.29980337060023 -3.727178829093584 -12.66463773237975 -0.6781409895137429 -12.64104808831509 -0.741897834317016 -12.79002850106259 -0.716185648479387 -12.12526583663069 -1.411368076138394 -11.99325727439361 -1.391927485522272 -11.98982170169331 -1.463565854456969 -3.632906423484318 -9.660405237300248 -3.566552739560311 -9.582546796987295 -3.505217974087447 -9.615885002960656 12.52991061831078 -0.3724242446203644 12.42393325626139 -0.3498166024465829 12.4323418599017 -0.2799144889856022 11.15233775538905 -3.421362161783144 11.12729216168632 -3.487077713208864 11.00819875187688 -3.410125439206657 11.65777484585111 0.2767919104626061 11.67564296320735 0.2157896464781605 11.52550440551939 0.2896976605287122 -10.51807316836586 -5.240924733950831 -10.66130814058692 -5.257961011479553 -10.70453960265825 -5.205009393716994 -11.26384167887985 -1.721771597922077 -11.42721805654077 -1.730696341314952 -11.42936266179998 -1.659023754208922 -12.52972168922306 -0.3846057967100768 -12.38873673943226 -0.3849423132242902 -12.53591580490833 -0.4398196182138159 12.62792554990162 -1.101263352783651 12.6400791714095 -1.163773215646772 12.51119708843168 -1.083369849221743 -11.86485453032099 -3.402588128043231 -11.99008255230615 -3.427512120177802 -12.03463162676741 -3.371110583381843 -12.58964605089722 -1.427822778329626 -12.59259175567948 -1.356170908843144 -12.44489492035745 -1.414216302568857 -9.383061769334239 -6.801552598409037 -9.256724540624576 -6.768127164853158 -9.352222490927115 -6.854946803153172 12.41861655384095 -2.060790323269516 12.39461041287445 -2.128417416854343 12.2910786336016 -2.044728136316965 12.45813533263003 -2.402572675965091 12.34280676518138 -2.385298577056727 12.35654189842645 -2.317549214513047 12.52165489348191 -1.616972652003023 12.64858877083594 -1.697364788690704 12.52305040564574 -1.67956377972338 -12.08278393720486 -3.202849801472213 -12.05594895768474 -3.262135795159361 -12.22298998974308 -3.229226508116268 -12.6516029425873 -1.773830985726373 -12.50857597536363 -1.75963628194757 -12.50568850042542 -1.831292728905742 -9.343902537534031 -6.935784564243342 -9.257470007907044 -6.861887306191102 -9.215933138648033 -6.906660176224864 12.36268158078461 -2.196490795645535 12.2456680767882 -2.179789116329019 12.25976053359167 -2.112336626754983 12.50719410694841 -1.024809426739362 12.6368248416923 -1.104464511988787 12.50950434925755 -1.087312927530483 -11.96484813240372 -3.218363235038317 -11.93796267029835 -3.27703910065273 -12.10709183690796 -3.243472356547868 -12.59326632727019 -1.357352994966052 -12.4483492725467 -1.343747833019326 -12.4455687913008 -1.415397285402063 -9.877332938997045 -6.199439506866744 -9.839047067623984 -6.245437223394697 -9.968073484456209 -6.271748555655978 12.51067197777951 -2.264394422211805 12.48707835841465 -2.332238428219439 12.38479057784987 -2.247731725578681 12.63240496506322 -1.701099363938241 12.64351064881452 -1.763772357297994 12.51738461037265 -1.682597194654001 -11.98937488519044 -3.412015789481183 -12.11259730909406 -3.437965774524124 -12.15705428745152 -3.38118091886831 -12.64844737687594 -1.844992647812353 -12.65133571213523 -1.773334687458416 -12.50542168328711 -1.830797080135709 -8.656578494107571 -7.45388394231253 -8.531792649229395 -7.417193489479274 -8.621547105244462 -7.505938558919116 10.97555340259266 -3.12495378456293 10.95065784997287 -3.190445665850969 10.82933501696498 -3.114233826382925 11.47346684383802 0.7713484604645637 11.49162006441407 0.7104710682554059 11.33940731064752 0.7837407097749916 -10.33527373714022 -5.153424382142408 -10.48058855160338 -5.169670767153617 -10.52340699636314 -5.117177205175353 -11.04069175363465 -1.302988737267793 -11.20783564497405 -1.311353676934393 -11.20985138859328 -1.239688386468351 -12.48444414933543 0.491694038411598 -12.34128613440473 0.4874768722513266 -12.4945254589186 0.4372881367572089 12.42541345905517 -0.4991480218042001 12.31989503692353 -0.4758992407401852 12.32742995315252 -0.4058124407485412 10.99733374286901 -4.265374068443967 11.10124592985135 -4.352311553958974 10.98646045081967 -4.328072274064161 -12.66567049967682 -0.5787927298188667 -12.64275324487363 -0.6430002116656972 -12.78990107422398 -0.6182692529406896 -11.91816445190107 -1.816697026754288 -11.78657867307373 -1.796639591553614 -11.78325237076993 -1.868285798063717 -3.03661008545884 -9.886142970834346 -2.970469711943867 -9.808508856148313 -2.907759085318206 -9.840687205965677 -12.35686802520185 0.388155113470278 -12.34850347190673 0.339079343109507 -12.49170032758256 0.342381093573635 10.88906956943895 -3.269372934687003 10.75490927218324 -3.257674969762436 10.76814069664601 -3.192774596174574 11.44305494885871 0.6971207847463162 11.29698743446772 0.7084441200533634 11.29039165657002 0.7698080386748657 -10.47450039479497 -5.064020869488842 -10.45348956660261 -5.116971269781486 -10.64094982682822 -5.078626965614672 -11.06949987109534 -1.351997602225283 -11.23866903046987 -1.288713004914383 -11.07302684333547 -1.280265968585814 12.39289100820223 -0.3836486901399827 12.37672940311273 -0.4532790525142293 12.27776342596203 -0.3605871649456335 10.99680138746255 -4.410459568927757 10.99459695654076 -4.473688554938871 10.89173243654458 -4.385983431962557 -12.64852390106491 -0.8453489149761317 -12.75762377908674 -0.8824337353252709 -12.79607724188367 -0.8221612998089154 -11.91438449032938 -1.887684993837084 -11.91776011481119 -1.816045856628485 -11.7828480176952 -1.867634602068566 -1.933703828158792 -10.07868929536656 -1.81026501520841 -10.02473356046239 -1.875686140215478 -10.11676003594861 -10.17706018306459 5.097687172114565 -10.01725217847693 5.071354279007315 -10.20095668611738 5.051879504055433 8.995147568145498 -3.696204126959678 8.974272125570424 -3.759849373325496 8.831458980904374 -3.689412356531054 9.400596252401385 1.682104356206595 9.417770529397334 1.622021736905093 9.2502975424471 1.690531282780614 -8.45640697574469 -6.382028951600566 -8.619824479915039 -6.392241901847838 -8.653110732555769 -6.343341259016498 -9.038068919105529 -1.24788696516011 -9.222240593653645 -1.252393929910638 -9.225225480908765 -1.180647070927984 10.05675776997463 1.643108930239682 10.16820728874696 1.543330011735562 10.059810790726 1.572368137454234 6.998934761922653 -6.035054778172777 6.880632778123195 -6.005502360400557 6.903312709457032 -5.944818003328651 -11.74457042749066 2.489837794344858 -11.87918610599331 2.503635272383705 -11.75613173818142 2.556659312516994 -8.670913047531144 -1.724799554574812 -8.534977760678501 -1.698829678135716 -8.531851816781167 -1.770475826390209 1.485425508101299 -10.06843254090519 1.564093993658654 -9.992824421600794 1.632754902427563 -10.01762387632426 -9.02391560484867 -1.22302474044927 -9.21106794281592 -1.155777571130257 -9.025790632366473 -1.151290994180673 -10.27446063735071 4.690293434642577 -10.27490244014704 4.645887228578312 -10.43582367873811 4.667623486146511 8.913467909195871 -3.838523047499619 8.763137088026813 -3.830458369733087 8.770889745621997 -3.76779204998402 9.360019475549045 1.568404717229265 9.196334975332707 1.575493977360676 9.192263655233109 1.636484690979623 -8.661253801899644 -6.366194588792125 -8.649440463393031 -6.415375118327732 -8.845249100216865 -6.373972631867829 10.03340020791131 1.599414314214787 10.02750044884798 1.529709581156705 9.914903397122924 1.628687998814944 6.853934287475052 -6.079798110897198 6.840378967730652 -6.141342012782307 6.745636531592738 -6.050532874361013 -11.798215440735 2.243726706561286 -11.90627848130967 2.195688543891689 -11.93298986374412 2.256529284951512 -8.621247131419645 -1.706807212065337 -8.62392013129776 -1.635202834720432 -8.484864646119997 -1.680889930087116 2.435780704926944 -10.0619895946401 2.374970751312699 -10.031181497431 2.517677819352089 -9.972776275313359 -6.764268467558409 -1.147253245800262 -6.961689712012028 -1.149343042150286 -6.962895703967666 -1.077600405002238 -7.348261144312024 6.98402052889424 -7.169409761167305 6.949110522036535 -7.367288455792304 6.942211602050309 6.794298856602808 -4.063250246811537 6.780510794048428 -4.125271320167731 6.619619264772761 -4.058767166544976 7.102789637265532 2.135591705515717 7.114675123131672 2.075236888191242 6.942343096858249 2.141722453699808 -6.332418529825498 -7.359341531255688 -6.506967826071922 -7.366219647931042 -6.529785341266063 -7.319498210145622 6.430823141387458 2.750723014481685 6.562552201241535 2.647755997665314 6.441537606303928 2.681374281013077 2.644283802694815 -6.225210952991415 2.510218440309529 -6.191554350243303 2.537567006580673 -6.132915613534858 -9.355826973640905 5.036597614380479 -9.492855318043128 5.037883858320361 -9.356904150321803 5.100959264180673 -4.494624287318655 -1.525973817509648 -4.341150799821101 -1.494621520714359 -4.339576505329961 -1.56624606056034 4.472284172518158 -9.457221279901232 4.575456510418413 -9.382123781945879 4.64194587567867 -9.404522966263153 -6.562998102176331 -7.400945008980378 -6.563966135535728 -7.447263729996825 -6.760382188291946 -7.404611872568815 -6.753648041943365 -1.128215647802435 -6.952271945189014 -1.058556925125039 -6.754216078794794 -1.05651140982454 -7.547955162615296 6.577112494790191 -7.541697627712216 6.535292898393608 -7.722052059055042 6.56503499319368 6.718925135536847 -4.211698638346738 6.558466337379583 -4.205769742937711 6.558213828802286 -4.144925359838098 7.057051119940247 2.006429283631081 6.882381850272501 2.01105322098368 6.884512304638858 2.072582115892741 6.169857353068333 2.527969920420695 6.170038855887454 2.460789918122341 6.036112087882685 2.56198727054916 2.67862509952272 -6.154060816581917 2.663999153976167 -6.213608002844778 2.55719983182038 -6.121371755901471 -9.482021656755968 4.822189384605398 -9.498751468852149 4.880856389207573 -9.361722204302287 4.879632311053638 -4.528751805469526 -1.685335543553132 -4.531103428842284 -1.613666035805749 -4.376050928750205 -1.653927036019258 5.235676004327856 -9.372783672994176 5.181000303094324 -9.343697319571449 5.346725306317451 -9.283745814227659 -3.902345644681797 -8.188450922791049 -4.078676241945887 -8.194789082512166 -4.08867326440851 -8.149136522546895 -4.327690351277358 -1.088238499736795 -4.527601804844657 -1.089680638999548 -4.52746346555077 -1.017975091231807 -4.79947061981522 7.78193419980953 -4.606635102665683 7.744276694443797 -4.806417106789312 7.740181965700497 4.387417903032164 -4.407854659546714 4.382133547516519 -4.46855719281075 4.210971058523595 -4.403936426526169 4.681718741610681 2.442432361484705 4.686367937986903 2.38098940092198 4.519706775186822 2.447973052733856 2.476831900306799 2.716574320402483 2.335078071260506 2.753282953091385 2.322415237819073 2.819720465299218 -0.8495766814528855 -5.774371647432403 -1.002707635119836 -5.737629929984101 -0.9790738337904092 -5.679901341697414 -6.071758205456579 6.677088089301477 -6.224041331265969 6.667414535635049 -6.066577875337789 6.737074892068213 -0.603000168508987 -1.600932722750944 -0.7793963174765101 -1.564909228730366 -0.6045114858098177 -1.529249202034462 6.70547068815338 -8.606727274878164 6.832839897149201 -8.530298598614294 6.891944206870454 -8.553411110576478 4.637206991234515 2.320151978438376 4.46076634823816 2.32417045170247 4.470391535050927 2.386897525562452 -4.161879116041738 -8.263382461045596 -4.176476253040675 -8.308291472603296 -4.361769972694257 -8.266061222019705 -4.336992906053219 -1.104783608457802 -4.536768711631513 -1.034524935495792 -4.336927146500251 -1.033097672776584 -5.001450248918326 7.419336624268841 -4.983329668157889 7.377315062324037 -5.17758152973672 7.410160257254966 4.298966063716758 -4.588667483190155 4.136946941045659 -4.583257838637099 4.128020234244661 -4.523692774115456 2.484855667067577 2.789012963088577 2.486445910335214 2.723714722672173 2.332074113184158 2.826902418716778 -1.046989673823427 -5.847260349220556 -1.060382942890412 -5.906539020698793 -1.189097759635383 -5.81140936995679 -6.146239914780912 6.392685852270479 -6.159389527583137 6.445813851573554 -6.007048796865194 6.454908809726416 -0.60076057330336 -1.59410819447996 -0.7756371006096985 -1.629763143934852 -0.7771564598577757 -1.558083905279896 7.301209059354632 -8.484636073484849 7.257233861067239 -8.454047762899966 7.440374990276014 -8.394007409282501 2.06803911632309 2.737769939167325 2.065327229402503 2.674623546000769 1.91312958157923 2.744481654770203 -1.085763499124732 -8.796770273188072 -0.9189585077525481 -8.833920236310153 -1.087378176596949 -8.843106727841482 -1.626913881604018 -1.092671610911676 -1.817993393265908 -1.095358427071946 -1.81723355860426 -1.023674964812309 -2.13322646002044 8.09807582376013 -2.324178927807937 8.090987503568474 -2.330545061576794 8.135077551150664 1.618299095932219 -4.828931019078644 1.621124506788383 -4.888867402070411 1.449631634185229 -4.823763440210499 -0.526703063943198 2.599859309825714 -0.6808456436704596 2.638770696695628 -0.6915268286746495 2.703538147112178 -3.627946778109352 -5.414580689639528 -3.796489413940117 -5.375580232539402 -3.776878688799414 -5.317382522403903 -2.831180103493431 7.294171544058458 -3.004226880453705 7.276283520025179 -2.828418811434614 7.348253626233903 2.384310184686598 -1.604284260452886 2.191513321852315 -1.57108577423952 2.38357500279351 -1.532597390340951 8.54957863899463 -7.591958080748714 8.694371719356722 -7.513685233859774 8.742967469453195 -7.539587880709598 1.530720740360913 -5.009527037301059 1.375804350051337 -5.00291396835108 1.359469765756647 -4.944030215581829 1.994722808651195 2.594395626625812 1.826031627198952 2.599663348134984 1.842304716504712 2.663955668709898 -1.230188828532585 -8.932765496567605 -1.255554628742061 -8.978672107389132 -1.421166755824111 -8.938354502977786 -1.623548050405513 -1.086890318599028 -1.813866864484138 -1.017892199499018 -1.622732729965817 -1.015192423542869 -2.52433515747498 7.813396953095524 -2.493986601513873 7.769672185517139 -2.692542401511045 7.802322348963337 -0.6789744603693282 2.523575595231862 -0.6815984130075842 2.460667918481013 -0.8471022097428899 2.563674171800625 -3.71955093586108 -5.419688800708901 -3.725594302735853 -5.479495385044515 -3.874166855982458 -5.381957471144198 -2.865162023902458 6.948440991182726 -2.88256355845516 6.99548191542547 -2.709338924917071 7.012270865625154 2.382390142265855 -1.61121454396324 2.190337654589732 -1.649707131131667 2.189593049550067 -1.578016883926444 9.018525333863623 -7.422902961848025 8.987350590271735 -7.388781861755396 9.177789302006772 -7.330101556697305 -1.734840241074575 -5.237012503188767 -1.726541311988324 -5.296927396016576 -1.888064613997089 -5.228781993322624 -0.9343831352841131 2.981186092474813 -0.9424780710862002 2.915941712039061 -1.075018360585027 2.990666902811253 2.879638810031646 -8.860838831828378 3.025151230380163 -8.893887984753487 2.873038903464342 -8.910624774351719 1.538114101585074 -1.111345728594263 1.364447079257619 -1.117042581622354 1.366026765647388 -1.045352587476172 0.4017533075938273 8.171196412326729 0.2288697599364914 8.156834237209869 0.2106361456114381 8.204542608298826 -3.181248914916064 2.258494138680487 -3.342174126764455 2.29807164957007 -3.346656646867972 2.360914327616166 -5.926349958980843 -5.06625658958029 -6.102200572384774 -5.026432565121168 -6.090668504000481 -4.967127170047029 0.03574799594463524 7.336786246313772 -0.1551556582812577 7.313608638095359 0.02987760622357699 7.38556038550886 4.843810405557674 -1.662258023769051 4.643599147677852 -1.630117199620958 4.843775193465255 -1.590565388951407 10.15214888561591 -6.339933274769392 10.3041786765267 -6.259841996109039 10.34108758160019 -6.290217166385594 0.03538291129991822 7.938883458342072 0.07537975947526532 7.892534215055209 -0.1167220988954792 7.92217278993467 -1.850600471716873 -5.426529386050101 -1.991235154178143 -5.417043593907985 -2.011729940428158 -5.357809422857985 -1.033841117868534 2.826126203028453 -1.187076858600957 2.834362496567488 -1.166697703646944 2.900502985901227 2.678207242450373 -9.024066749886115 2.649555917360691 -9.074552129300455 2.5053206830967 -9.03820302863493 1.544461811700419 -1.10108425941019 1.372375919480135 -1.035088788568971 1.546070719287427 -1.029407568048758 -3.292508124898563 2.199341571516821 -3.302010601473206 2.138329323654655 -3.467945166414737 2.240220777393406 -6.020979430218435 -5.066676307681636 -6.018376983691343 -5.127690501302943 -6.182331141876469 -5.02818840631396 0.02654210223308778 6.931692715332654 -0.0004457597454907147 6.973550817262883 0.190740740374836 6.995237711350105 4.84555470151556 -1.655510726685842 4.645365517852461 -1.69505807017009 4.645343664165999 -1.623369052427622 10.49805273155337 -6.111395293942536 10.47938283660226 -6.072165176631619 10.66572932337091 -6.016724088369951 3.102348802430499 7.933502846369441 2.952697980710364 7.90795570433971 2.926472332432486 7.960038482065441 -5.840321407958555 -5.330936839917112 -5.983139800278881 -5.256838325824224 -5.848569170131905 -5.269891554470393 -4.450702103163462 3.005103805866383 -4.460197113508072 2.937459260404336 -4.574251263814028 3.01885466453023 7.943893635454855 -7.141913835124806 8.076472608614363 -7.166312855754238 7.946647222001136 -7.197159556594382 5.163246012492278 -1.117714900073078 5.313443090294662 -1.179269555505842 5.160788520402234 -1.189376693575992 -5.389259396377673 1.958338642300305 -5.552358789030637 1.99775064261208 -5.548972140961457 2.059161362022441 -7.875828986749958 -4.784830431849331 -8.053825766287021 -4.745134763497052 -8.051083700878257 -4.68412435418221 2.289061699829304 7.081129402044353 2.476728056986634 7.152507556084055 2.494896636996879 7.107802367516557 6.923315659644519 -1.735031695388572 6.721568045365858 -1.702598765740075 6.923969103668046 -1.663344518567312 11.60620272298837 -4.749799098219619 11.42773978052086 -4.795881116940632 11.58007216565808 -4.713300346350442 5.308641939536588 -1.118435504130821 5.30624722769184 -1.190103914756658 5.156048844720216 -1.128551230192833 2.810780822408498 7.783362550281193 2.855705105938886 7.733674022955864 2.679216825708374 7.757563963387368 -6.115439472472932 -5.404563151923239 -6.134086655511664 -5.343737657615951 -5.991950256816617 -5.418643294124607 -4.559069854247967 2.849935141477938 -4.693701891053848 2.862775396947482 -4.67355214217529 2.930957736777195 7.811948520213087 -7.337528698838748 7.795477730888241 -7.395699225801588 7.663840744841885 -7.368325238486968 -5.50145245314144 1.881265092103241 -5.518773719895751 1.821686496073894 -5.679089124715823 1.921915560587383 -7.943159315760849 -4.756189822174432 -7.931662356416103 -4.818796447116341 -8.106655857986439 -4.717809657474035 2.494337055136485 6.67547359716108 2.454966310932485 6.713500120556995 2.661158912192207 6.738404930453302 6.920255931322688 -1.746841740351618 6.717866785987352 -1.786097314133124 6.71850789687507 -1.714410428183297 11.64429563392608 -4.519348819292599 11.63628996857907 -4.47357687761575 11.81256480465637 -4.422548434737205 9.407406470594957 -1.262136784813376 9.542673219289938 -1.317912163644785 9.404289811265478 -1.333788014731307 6.253732902396818 7.134431086163533 6.124291599389031 7.092843252678284 6.097602218918007 7.150089030176484 -10.26290308418997 -3.972719949134878 -10.38279108496317 -3.890470452135454 -10.26138530886212 -3.910161990690205 -8.656844822433374 2.310417244970755 -8.546241828981769 2.290879783888999 -8.549772754970995 2.220934272486494 11.87531791095878 -2.244158917229915 12.01420443028966 -2.251642967548273 11.90591421676997 -2.298678393724654 -7.623607648579411 1.609053413946567 -7.775015845034464 1.646441049340284 -7.764555077366621 1.707001432455249 -9.867434151347112 -4.348764056329122 -10.03296462756189 -4.311126714488231 -10.03732134579322 -4.247963100685223 4.629350314123354 6.711883495506523 4.80198327387759 6.781159402920771 4.833139363168596 6.738679451910256 9.020287560180325 -1.855205638108501 8.83343608063967 -1.820032905691768 9.021650452684609 -1.783524995757172 12.51946170319711 -2.507211751598441 12.36153290831863 -2.544874825907662 12.49936523022057 -2.463797454452632 11.84951486019543 -2.304579654823831 11.97278306643314 -2.252622739703133 11.98829948574294 -2.313154032494368 9.546788166750069 -1.244734472388702 9.543697495405235 -1.3163825107356 9.408430854647296 -1.260606969909894 6.077497518052693 7.055427066833151 6.120346229457305 7.001993631060697 5.963995239100615 7.01622629795399 -10.51213878607093 -3.92479448163076 -10.52042041971787 -3.861844166002971 -10.40179501108615 -3.945218872980798 -8.772780334495117 2.136129060071057 -8.759206881541326 2.206115055414994 -8.651459538570904 2.117135106131407 -7.728839161207974 1.528558995582689 -7.752236912433713 1.469616016356739 -7.893884662722856 1.566936828031893 -9.908294568453352 -4.292637413521375 -9.890347902417892 -4.357184603066536 -10.06008873121019 -4.256231171523289 4.843593585418221 6.308114476659102 4.793128669348505 6.344454751318796 4.997303606373547 6.369366587658844 9.02130879258814 -1.851845878495564 8.833155852809799 -1.888369842997336 8.834457480864748 -1.816672594376324 12.43912935850406 -2.240405695724614 12.43522336433228 -2.187747316429558 12.59157169365658 -2.146203486778124 11.49402236278089 2.491336944193565 11.44196618525643 2.537554441272767 11.59794844380999 2.546054530721898 11.99060753637678 -1.323865960497666 12.12498734381802 -1.373491897610147 11.98738336172206 -1.395510357908704 9.193701576120317 5.560736267461 9.075423531901116 5.501053444315247 9.053593253000045 5.561851641265711 -12.36259419343729 -1.288563893963514 -12.24216711289985 -1.314857938220127 -12.25632669275038 -1.377156506041721 -11.65682314128354 0.5461271657592528 -11.54517527586237 0.5207279007337042 -11.53901091853103 0.4500983110608039 -9.931828991437335 0.9990095623593351 -10.06331861283669 1.03290457993383 -10.04913073169398 1.093637546638904 -11.75240798306647 -3.449854181697886 -11.76005233971442 -3.384055276445229 -11.60914839163295 -3.483546629822345 7.045854807670821 6.058967473158784 7.191973529833671 6.125430180177156 7.233043903328235 6.08238625132066 11.05441371495044 -1.992047285819952 10.89271591663927 -1.952196063597097 11.05653685935817 -1.920362180415097 12.46475238117098 0.4688473995782341 12.32626294349365 0.4441457396488355 12.44253518149371 0.5186156868772237 -11.7064333499875 0.3889537461494134 -11.70412534448503 0.459091255688088 -11.58560085130863 0.3636063492832632 11.40112471645486 2.739979586395068 11.51739580529257 2.801918313389274 11.55700694559627 2.749548115938441 12.1279939110552 -1.302377135290846 12.12467143926534 -1.37402621865195 11.99029167902811 -1.324400202437869 9.185772754082921 5.425035435736002 9.045663230792716 5.426053245024225 9.149955825922403 5.480230210119204 -12.37661344837803 -1.242203117709605 -12.37042846956559 -1.179175972023946 -12.26535867193886 -1.268648271677662 -10.00639875127156 0.9370219716282171 -10.03166110505072 0.8776080608921254 -10.14972968865928 0.9716440052608725 -11.68272755083222 -3.455317847211425 -11.83270512839736 -3.354963382779449 -11.70090864286917 -3.388112649421537 7.267043876681645 5.63265133736134 7.209500233534502 5.669337467038668 7.397084304861492 5.690711140751803 11.05331525113629 -1.994793905262312 10.88944634029167 -2.026608988448495 10.89161720027761 -1.954943317187773 12.28612602379153 0.7108669385735174 12.27746929648367 0.7691719838338954 12.41519918837009 0.7963750411686446 -12.34856340660054 -1.479771390745623 -12.48148139345204 -1.380608568178576 -12.36334344712432 -1.410580492210075 9.276707521053739 5.028618018300326 9.217787171578857 5.068181204600121 9.390156909603837 5.085472769549537 12.05668347276712 -1.248890233995446 12.20104707917173 -1.292993058252718 12.05385279070249 -1.320552384434651 11.20983808074964 3.331052729982874 11.19446727308732 3.391832166527687 11.32742640367338 3.40648227147286 -11.67019791010287 0.740410999773072 -11.54177374301834 0.7092751996803449 -11.56482166293863 0.648716467158813 -11.86011193620283 -0.1977464485696365 -11.8475151704687 -0.1358856883258326 -11.74493314011552 -0.2277591628032306 -12.45162304445733 -1.888628516929203 -12.45537080457958 -1.819981544393522 -12.32556100599877 -1.918098184957783 9.536978925267567 4.66422627225294 9.660485091603505 4.728210306524845 9.705320206050196 4.681830997219107 12.31854013554872 -2.059681960987298 12.31564040994777 -2.131331673667286 12.17464832343649 -2.086220046635131 11.03303546332057 3.318596146552173 10.90027268380914 3.308325911882873 11.00329787871924 3.372434746885128 -11.61454327488999 0.7934822348016178 -11.60120460944142 0.8550394872478138 -11.49674254072749 0.7626998964175838 -12.46748036750243 -1.509335310362308 -12.47229587360645 -1.441162276366993 -12.33862010593852 -1.539692711522541 9.099873893864729 5.357595381784607 9.227131317571855 5.421982117480596 9.271950371913921 5.376608774755344 12.20731609617598 -1.215157272801693 12.20409599903379 -1.286968686155147 12.05973374626652 -1.242863119947411 11.3943753839447 3.199659974258058 11.26120491807419 3.186250269918912 11.36553075979545 3.252887088884078 -11.91062286996956 -0.2643539151282401 -11.78502774377633 -0.2946316209082915 -11.80700887801265 -0.3555079257078837 -12.3241425430299 -1.844631417711465 -12.45317510216577 -1.745882362920325 -12.33764463007565 -1.775046606873426 9.701573112228534 4.311767033288764 9.643132417721008 4.352305486159655 9.811737959371968 4.368268671331372 12.17534193218787 -2.084908062443002 12.31633363804273 -2.130020425710703 12.17235078940941 -2.156560351364473 10.97198046768064 3.546291437560214 10.85624208327961 3.473988594873646 10.83934999866612 3.53501278438576 -9.645483191836284 1.800788195159089 -9.670581109214606 1.741546430859303 -9.79215969083244 1.836093629779995 -11.47187316251818 -2.86496606589652 -11.45354420573529 -2.931704449242993 -11.6068129648284 -2.831214107572199 6.867133204543505 6.226843680856156 6.810644959444466 6.263273864668945 7.001209531720384 6.285467061214239 10.74136253194078 -1.127131668761829 10.57376281562699 -1.159826986220972 10.57608788956758 -1.08799419114843 12.42751632653647 0.5240458871917365 12.41929637764344 0.5815454362173664 12.5591173345161 0.611609730538909 -12.22556260541854 -2.510056909099419 -12.22245351548211 -2.446819659825185 -12.11888299322155 -2.535194557593524 -11.1805352717619 0.1636557725206742 -11.17520488691826 0.2339215675086613 -11.06377031148741 0.1397183147273343 11.74031249664773 1.647453380557038 11.85245807396038 1.707939759353359 11.88859530474086 1.653637216901723 11.76539563976768 -2.116613731691715 11.76199157330927 -2.188254616000427 11.6319646956527 -2.13725735156381 8.455844250518283 5.547693248480998 8.314437949829083 5.55193550155163 8.416948548971313 5.602138631030913 12.59726805529594 0.2701429102855949 12.45644840070009 0.2431167178063067 12.57588514082611 0.3188292712014195 -9.568502549918181 1.856830802983324 -9.703134651220706 1.891334807373945 -9.689358052799605 1.951949968211019 -11.39044827376524 -2.938774342873005 -11.53744511220677 -2.904288118536661 -11.54439757547641 -2.838929844390844 6.655606854539049 6.593312683415472 6.806146126184824 6.659854544762145 6.845799299435067 6.617400483461004 10.73196397616225 -1.151491097104088 10.56668715559906 -1.112359312279817 10.73401485999725 -1.079827300854991 -12.08088402820533 -2.6477630053221 -12.18576927259354 -2.560352930530136 -12.0692266799461 -2.58521614158271 -11.10319217059368 0.3450579422479534 -10.99612125272448 0.3209718443542478 -10.99258888133999 0.25025036190555 11.80968273231142 1.405814557636461 11.76087880795927 1.454000771050924 11.90920593615931 1.459487540272102 11.63167374589668 -2.137717227448651 11.76170061290552 -2.18871450868585 11.62828626381446 -2.209367044286528 8.493264998848581 5.71492167655479 8.376826026194479 5.659661944827525 8.351880536625716 5.719592706312391 12.42160597004817 -2.191689468957073 12.41626913264293 -2.140350501684493 12.57315094325855 -2.098282296104488 -7.492963786032458 2.334175902216748 -7.515004825038322 2.275091116646372 -7.656669510425816 2.372592074488226 -9.761450156183038 -3.623960061355933 -9.745338831219963 -3.688310512075075 -9.912017340509349 -3.587498971372419 4.557536204359291 6.839050374406378 4.509188347564309 6.875503686973955 4.709950779347495 6.899769343178097 8.741101864319731 -1.019439105203981 8.554761744415805 -1.055516542513835 8.556037629630342 -0.9838416150760361 -9.744751999399297 -5.048119737146935 -9.755298058729467 -4.985450926885065 -9.633295069987362 -5.067261186780085 -7.95830288070798 1.672339155563685 -7.943088679739913 1.742095909332836 -7.836688785660706 1.65457461290219 11.41626537571705 -3.636196009305314 11.54120330482786 -3.587542135558419 11.55039307892587 -3.648727317551346 8.759899201414649 -2.032709288667752 8.756786200472496 -2.104366810480081 8.621688515798034 -2.047468045499825 5.360334818855622 6.90740915643771 5.404957143048305 6.855020456556098 5.245568253235189 6.871284674799691 8.771807560103289 -0.9210703944025453 8.586749376067742 -0.8854534434550553 8.773553566395822 -0.8488183355714642 12.48451468444921 -2.432517852822418 12.32597291397993 -2.470540383775541 12.46317769539996 -2.390473393376261 -7.402046846608363 2.391646228617125 -7.552263854057411 2.428990472157417 -7.543112769015149 2.489682956953894 -9.681251666514095 -3.660784878569707 -9.845279350554231 -3.623200107078743 -9.848323616903944 -3.56037718183123 4.354281668687017 7.196984233116653 4.525920107431199 7.26450082097733 4.554695827691159 7.222970505021299 -9.490166520642905 -5.076109068943691 -9.613256464947316 -4.995312687271215 -9.491875139303247 -5.013705756931108 -7.837459935101392 1.846455804932724 -7.725788812337279 1.82810317725126 -7.731688088601177 1.75846466450187 11.47441714812592 -3.55673480308616 11.60875792182651 -3.567763588459859 11.4989817614926 -3.612604496064194 8.623679604165812 -2.044552916215587 8.758777033071473 -2.101452057009262 8.620634843427039 -2.116198953238602 5.567935311688869 7.038297109457089 5.437169717013191 7.000125266167434 5.408844334005877 7.056275990035505 6.765559098201202 -0.7936087604780515 6.566876320977782 -0.833140497396606 6.567647415609427 -0.7608779301899279 11.58528452648304 -4.35031587650545 11.57505880479942 -4.305765159566232 11.75021394494332 -4.255099604628661 -5.295141635197718 2.679771178556884 -5.310994730184532 2.619939140035927 -5.469162233682212 2.72013946673693 -7.814300715167843 -4.043097857336617 -7.80454769582162 -4.105496493312833 -7.974297870740199 -4.004970755252076 2.236489778626236 7.190694810087972 2.199833902498322 7.228187263065463 2.399785381492636 7.252871982601729 -5.466753151928634 -6.160242652390536 -5.486256297514611 -6.099739855213911 -5.340910892394801 -6.17356594191517 -4.009488964703396 2.149967279611272 -4.146706653837466 2.162074996238527 -4.126214334909601 2.229980700145121 7.024165130624047 -8.027860484645059 7.004595496875917 -8.08493803403019 6.872155409524989 -8.055797956143129 4.72843336227485 -1.982197320672569 4.575073661752587 -1.919951510193588 4.730715318819804 -1.910533737619413 2.387307200098002 7.460099458288207 2.431832250990889 7.41087982027978 2.252727580309843 7.435775626898996 2.014316783777129 7.59309989024561 2.197756937827875 7.66498349234721 2.213873897873271 7.61968627136445 6.732694121844202 -0.9164665257472985 6.534777069807451 -0.8837557940011735 6.733264098078946 -0.8447802793763075 11.52435613383678 -4.551081451412544 11.34693915299813 -4.596617080832574 11.49646599204208 -4.515784694007481 -5.184653418642398 2.746475510558088 -5.344257242103688 2.78560951664586 -5.342239998541112 2.84724068057069 -7.714439504122781 -4.048260815140622 -7.888817807670372 -4.008889820918976 -7.884601281074504 -3.94816664725183 -5.202451819625299 -6.089579192889955 -5.348382206312138 -6.016470742126772 -5.211180209075206 -6.028742240987849 -3.894933975222198 2.314225785687906 -3.904531105545545 2.246891686083626 -4.020818669428834 2.327298642214918 7.179702031988827 -7.864912338704983 7.31317580027523 -7.890970779092383 7.179928466027126 -7.919451264279131 4.725926433044577 -1.986020410667492 4.570283283646218 -1.995440418799354 4.572566256937288 -1.923775325315378 2.695076435902459 7.661061965266521 2.541931857413301 7.637274094410984 2.516649344211394 7.688805792929841 -0.3698445108058149 7.453488717860072 -0.3952989717585217 7.496051840537323 -0.2063389654605621 7.517240049820471 4.515918699687586 -0.8393387980662707 4.316249118334187 -0.8788466468877427 4.31612899876572 -0.8071590605465268 10.30485371860901 -6.001201054318452 10.28459294262881 -5.962818761835691 10.47223928593306 -5.906872450912127 -2.938501361369633 3.006617235003971 -2.947002569396036 2.945329435304808 -3.113533836915765 3.047486358113979 -5.718205139175695 -4.359722446777262 -5.716856770521808 -4.420526897234973 -5.879140019153367 -4.321262435429309 -1.317171084655176 -6.108452060814098 -1.460162259544871 -6.099492312357857 -1.480366500252042 -6.040368189323569 -0.5645865119736526 2.071141367184692 -0.7203694705909897 2.078847428744961 -0.7003867035881961 2.144754698464442 2.029345654287545 -9.405432250419249 2.000439532636525 -9.455004844401778 1.853474228735507 -9.417872323385714 1.037229569638983 -1.918048788614067 0.862239285371042 -1.851528348295805 1.038688067181828 -1.846370377598734 -0.3415059436527473 7.569954266639446 -0.3027434724742456 7.52389720553111 -0.496260766229028 7.554267652011123 -5.635589728228762 -4.363558339894523 -5.810918821675529 -4.323746273856592 -5.79818970980217 -4.264615156559517 -0.3523577227348151 7.809265353143129 -0.5410580242089885 7.786690220767343 -0.3566093495609768 7.858655653168618 4.515485805132868 -0.8410027561567854 4.315696051118508 -0.8088232226260013 4.515380272364803 -0.7693143339499299 9.941295152995236 -6.179408871339137 10.09312811367236 -6.099640101588622 10.13157038100183 -6.12925749870301 -2.82618486091816 3.060393695973454 -2.986682021334212 3.099969472485129 -2.992190700392496 3.163078476023416 -1.207496587028629 -5.925593980249909 -1.199669725326454 -5.985478026594858 -1.363226630820564 -5.917933100082081 -0.4729956394597623 2.223734660237116 -0.4804706718709007 2.158776479735584 -0.6159846801350177 2.232715461974108 2.226674139061502 -9.280767392920096 2.374920921507335 -9.314600961175254 2.220040689712028 -9.329863156063558 1.041460852905896 -1.911123834948141 0.8650018540111748 -1.916285449041143 0.8664715569511983 -1.844601785732089 0.01555739350644139 7.836576546842011 -0.1602331515344417 7.823534767753698 -0.1769757855709346 7.870598218226059 -3.371045457446532 -4.738527668990224 -3.378194683407445 -4.798236383189997 -3.523966528169564 -4.700972500495921 -3.31950339507936 7.386220307546418 -3.335764832454265 7.434042315532138 -3.165537438445921 7.449896024721483 1.990952794153078 -0.794301863207289 1.800873117040144 -0.8324918601336201 1.800058934935638 -0.7608062510942829 8.791423880104997 -7.27043802749428 8.758476871357217 -7.236972157502552 8.948533693457904 -7.178066836602934 -0.2951623346060905 3.322587602154639 -0.2968720255190893 3.259344289539156 -0.4632284125750602 3.36263616348693 1.95619008696065 -5.695072869730268 1.799800415117131 -5.688739350864791 1.784312015099943 -5.62978551853464 2.401249254238791 1.815872394107089 2.230977048957919 1.820845639886842 2.246422160905807 1.884927755754067 -1.704545758230504 -9.242583819217362 -1.728777046018541 -9.288127940177166 -1.897435285471872 -9.24748621079967 -2.037287167596162 -1.892904068553259 -2.229581024032743 -1.823618281792473 -2.036592650860404 -1.821213163940699 -2.878992602768241 7.406988912774769 -2.850347945369914 7.363622240913537 -3.048949264113406 7.396414355001799 -0.07592872800912309 3.447476459058427 -0.2283303797216346 3.486316303097001 -0.2412998257332361 3.551742843935231 -3.264736926777666 -4.720466754106278 -3.431556722778725 -4.681699525668206 -3.41092521489787 -4.623590437275364 -3.281244212679644 7.695838698016365 -3.451310724976913 7.67895024004497 -3.277624373470368 7.750705745551207 1.993124369130136 -0.7866312688620434 1.802230766442821 -0.7531347520216162 1.992266794691588 -0.7149389143416736 8.320804586917859 -7.385845346409994 8.465266382435967 -7.307301725538728 8.513754288195907 -7.333080183788806 2.04339030631442 -5.518528912334286 2.045130314503581 -5.578534592163575 1.8730165363144 -5.51363265332439 2.458320082436398 1.945240049825693 2.456592126953376 1.882381007478111 2.301937070191282 1.951674525511828 -1.57456143403115 -9.143997773465767 -1.404745360288789 -9.181537442923032 -1.574790531085726 -9.190054921100517 -2.044893155000779 -1.906099714813112 -2.237859075511692 -1.908506354491039 -2.237189028987264 -1.836817393347053 -2.487223103494111 7.74038816037992 -2.680066389377364 7.734029933285218 -2.684561388224735 7.777601030272265 3.124503043639733 3.626647404675496 3.127443276339544 3.560470550474426 2.976079560891939 3.664159249923833 -0.5396567529731716 -5.184956032361135 -0.553707648967835 -5.244267969709651 -0.6776173971474248 -5.149519879826631 -6.653734747338472 6.689172984141466 -6.666825254069089 6.743140156944046 -6.517181117049558 6.750903853205761 -1.086589498616595 -0.78422802616515 -1.25850225696438 -0.8193585587526251 -1.26014777792732 -0.7476747171529783 7.017786738957272 -8.328748700634764 6.973980755895396 -8.298221015688425 7.153590525520563 -8.238650052595556 4.663665539788083 -5.288366739821417 4.501255195215487 -5.282973516835888 4.493544616641717 -5.223259506164044 4.989095297036961 1.523544818016136 4.812262991224277 1.527546637891884 4.820812251942096 1.590059642268411 -4.526624981459384 -8.580682148720971 -4.539323854414262 -8.625643216579517 -4.72691499555313 -8.583279951014488 -4.69161048776627 -1.922169901065071 -4.891936047374309 -1.851894312156033 -4.691629537544647 -1.850479003712745 -5.357828321895757 6.993676402184764 -5.341512802323475 6.951888721855984 -5.534352977043232 6.98440571602306 6.408035537186003 -8.402038505772289 6.530582252696229 -8.326233675610846 6.590979218592096 -8.349116967331526 3.151633318516139 3.57640480636253 3.014121496524458 3.612904582949041 3.000388115497104 3.680200470823879 -0.4139711090741488 -5.15596766273602 -0.5644978615418062 -5.119522335759868 -0.5384089976975576 -5.061648887326983 -6.572938285279893 6.943744311546604 -6.722538923445383 6.935478093730819 -6.56818483266882 7.004611278737533 -1.087894671073633 -0.7880754491256219 -1.261453102026516 -0.7515225856906145 -1.089500803017993 -0.7164060861554753 4.750081876964079 -5.115959186366008 4.743565224223874 -5.176820829293575 4.573233912439122 -5.112054898983798 5.038845685473962 1.656762792982082 5.044549730654726 1.595503841975917 4.87644282530279 1.66229373187832 -4.271526767372488 -8.541590942140692 -4.448254046038575 -8.547835486346314 -4.460139430447081 -8.502134332072298 -4.684233127320541 -1.908962697287057 -4.884542293299398 -1.910377144235648 -4.884556521351725 -1.838683288294857 -5.151397631783981 7.409441118889362 -4.960006882914137 7.371997852621876 -5.160252591464357 7.367865723672731 4.879907596298446 -9.227739958717748 4.824005816342195 -9.198633819923883 4.986802317450687 -9.138900628341862 6.818366883296587 3.286812406137304 6.818806668116153 3.21865571565823 6.687161155696851 3.320460777096002 3.105136375445501 -5.564541851484951 3.088415858145972 -5.624521227335868 2.984729266269326 -5.53209267039398 -9.930011817071847 4.936524218704519 -9.947990209783102 4.995843238968276 -9.812250271109953 4.992960715800802 -5.063117719388234 -0.879775590197084 -5.06555625158882 -0.8081207642899929 -4.912639681043252 -0.8491490300287995 7.043833246952805 -4.918718453727871 6.884389349493025 -4.912587850899379 6.885347967170201 -4.85151534305512 7.38893079278795 1.213416027666563 7.215298962011859 1.218274031275709 7.216443370953684 1.279690506259362 -6.872543926388105 -7.720063000584813 -6.871528454692539 -7.766703935272252 -7.069206212194869 -7.724057565211616 -7.085460401778228 -1.953814347816976 -7.282842567164233 -1.884405848869345 -7.086179438519924 -1.882122722407894 -7.928797813112159 6.099000294691537 -7.923953075196081 6.057018011829091 -8.101736184299917 6.086030956983156 -5.067350791792155 -0.8122836020138835 -4.916807556105715 -0.7816469406124569 -4.914434026842691 -0.8533114193579594 4.110930028857236 -9.26373436105564 4.210500129604794 -9.188566322535746 4.277639095865341 -9.211101364387835 6.87747635928748 3.396608088620244 7.008006566036567 3.293918145568711 6.887884282947002 3.32701415432634 3.214404750168435 -5.548211672136048 3.08310451610041 -5.51507025616875 3.110169943087202 -5.456165494929545 -9.795692840599257 5.160583222514068 -9.93142628115389 5.163649265953787 -9.797825469959694 5.226139370354115 7.127199503208617 -4.764813459291362 7.112271247637003 -4.827021935788306 6.953579509582307 -4.760121010634209 7.436880455331188 1.348831713234827 7.449711873178442 1.2885437837349 7.277450382965372 1.355180921345015 -6.648983202732421 -7.718741714087121 -6.822484486637244 -7.725928122136549 -6.847591722566838 -7.678861228464416 -7.087543715143064 -1.957556829563276 -7.28425004385158 -1.959844843465908 -7.284926555487864 -1.888149518457082 -7.732442454363511 6.556022419027978 -7.556164965878786 6.521793116343225 -7.752590292824291 6.513852055204032 -9.262362620543998 -0.9982610265921572 -9.265431373128871 -0.9266128859795643 -9.12788631365718 -0.9731158902532068 1.950180839681862 -9.916711313632785 1.889080999859249 -9.885293286695218 2.028367727486693 -9.827089988307804 10.52286538669712 2.065146281759869 10.51551482730427 1.995311366964083 10.40577293714618 2.093615155603636 7.52111787249818 -5.273899497310464 7.508853107780256 -5.335786557518499 7.414292697664784 -5.245212397101912 -12.08431270744813 2.196093485976012 -12.19128707591015 2.149047890931748 -12.22033312289464 2.210515938221928 9.199457341029337 -4.520190071452821 9.051150894347089 -4.511699164043895 9.059958026507999 -4.448772184552951 9.669691796684516 0.753360214058832 9.508240145469834 0.7609521533103458 9.503498561134443 0.8219653569383332 -8.921587146112858 -6.669966323949844 -8.907569886315399 -6.719804087994952 -9.104286002616078 -6.678503718230066 -9.324038835693287 -2.030183037586843 -9.508564438758199 -1.963448650971783 -9.325439036827589 -1.958494199056971 -10.60599221786575 4.089910737059385 -10.60662944468108 4.044862993918632 -10.7662950282064 4.064835981792844 -12.04143354217628 2.377086426874083 -12.1772867240961 2.392453396183923 -12.0553928578485 2.443722520172197 -9.267837549188249 -0.9310471242582803 -9.133413303858129 -0.9058945534221484 -9.130292302324495 -0.9775497855284092 0.9479796548154323 -9.868300889684225 1.023695726492549 -9.792488994938639 1.092114544290961 -9.817929410036772 10.53623588670695 2.091421124707996 10.64483644214927 1.992336050057641 10.53783793416231 2.020620562636231 7.578610021389456 -5.124587369069729 7.674140448169284 -5.214529400491242 7.557220039841097 -5.185629502084914 9.248660695682039 -4.424783009195661 9.225085482810178 -4.488804878413693 9.085481007625125 -4.41751426874457 9.703647827910444 0.8624343743937109 9.721302149155008 0.8023152308608818 9.555379135053091 0.8713239533769561 -8.729616780509579 -6.730094086031299 -8.890756388093246 -6.741045432981515 -8.927184794724571 -6.691391928617982 -9.325516693352057 -2.032784362284588 -9.508429923758628 -2.037722327752077 -9.510042819401726 -1.966050870582934 -10.55771085711433 4.487660258475979 -10.39894084242473 4.463672700849949 -10.58000601058593 4.441562148147697 -12.65257406103908 -0.8144460656515057 -12.76303655065152 -0.8498721179081807 -12.8027059717406 -0.7899796649965601 -12.2088925959948 -1.075004728866367 -12.21215032807042 -1.003353263060955 -12.07663315924217 -1.055804126495541 -2.762777199480826 -9.799910230420966 -2.64082009568663 -9.747235043604697 -2.70636780441321 -9.839595663160447 12.56514827402928 0.02621527134906461 12.54768310754997 -0.04325083913083788 12.44927162896445 0.04835732556534333 11.44645299374619 -3.379799133354346 11.44624021100312 -3.44311780906447 11.34082058533418 -3.356134394409414 11.15158224797604 -3.91397944806601 11.02069010905071 -3.901613426206277 11.03580612241227 -3.836028782075375 11.68284991976453 -0.203584460076076 11.53944526903806 -0.1915152855845707 11.53297615464903 -0.1300230787323312 -10.7213018571439 -5.281466400770705 -10.69784016135745 -5.335743939901509 -10.88300945774196 -5.297638907282837 -11.31979072714832 -2.137674283481226 -11.48458296453805 -2.075134861174838 -11.32216416519158 -2.066015916383278 -12.38651771823724 -0.6942693835357292 -12.3741535119025 -0.7426226895315506 -12.51497053451344 -0.7431947815588879 11.43397392136102 -3.230024288088108 11.54045022315169 -3.316207533749339 11.42491432129546 -3.292852691533721 -12.68046711594635 -0.5828946779229147 -12.65653270953471 -0.6464768443492177 -12.80622590301123 -0.6203999083251425 -12.2119079911996 -1.002969579672727 -12.07967570715272 -0.9837700450213652 -12.07639080066768 -1.055420408405151 -3.869929745865673 -9.519464737527869 -3.803415572468722 -9.441606603762649 -3.742590848385259 -9.475369423853087 12.58230329810353 -0.0981976794319511 12.47621695814002 -0.07582480933020433 12.484816741565 -0.005979543912745515 11.24627603075263 -3.76232573747763 11.22058929470643 -3.828343276630022 11.10430498040334 -3.750862145429234 11.73940073486214 -0.1264601345604492 11.75768076529818 -0.1879173364969197 11.60862897452939 -0.1133295857564735 -10.57042428796328 -5.422818079844593 -10.71295262364756 -5.440159567732102 -10.75635901643806 -5.387094030580002 -11.3179454351192 -2.134532054307301 -11.48054090956381 -2.143662211054009 -11.48273687812214 -2.071991336639826 -12.51434750350248 -0.650580813859589 -12.37353185978491 -0.6498274134242043 -12.51983891596024 -0.7060533553217917 12.63958050495457 -0.6693547964434079 12.65198352598792 -0.731828798096542 12.5221328162481 -0.651691222853194 -11.83462611313661 -3.25307820474858 -11.9605286250438 -3.277596497196791 -12.0052031508993 -3.221363921453147 -12.58250281806942 -1.015046530271011 -12.58528579872573 -0.9433830155386896 -12.43698451464761 -1.001648766609163 -9.655464840408483 -6.514825842457736 -9.528604502594481 -6.482686502146462 -9.626160197578194 -6.568658861140238 12.40024141668809 -1.753199306494514 12.37619883512541 -1.820774510109404 12.27206791113328 -1.737364164996175 12.44657289345614 -2.769530930851455 12.33204167285077 -2.751948366573266 12.34683587159214 -2.683895528262178 12.50359033416776 -2.060438594993016 12.6298464498674 -2.141716106848167 12.50495292832494 -2.123546688312313 -12.11239440981136 -3.325770736080165 -12.08559598487972 -3.385247611446262 -12.25173706902597 -3.35258701561263 -12.65359948292654 -2.186435630159274 -12.51127527650821 -2.172022624119048 -12.5083384750712 -2.243677080142132 -9.094376039244555 -7.212058789567762 -9.009492746513812 -7.137624585116146 -8.966801636117909 -7.181986746492179 12.34575627928272 -1.884543078536829 12.22803114568178 -1.86806206583168 12.2421675796568 -1.800715955727265 12.51463740134587 -0.5872590298221754 12.64529440888101 -0.6665814394666298 12.51737822269537 -0.6497039335917156 -11.93742043501262 -3.086640748076639 -11.91061202692907 -3.14513654200913 -12.08053448882132 -3.111317530780448 -12.5854364412165 -0.9436425349592006 -12.43993409235087 -0.9302505669090631 -12.43713501742452 -1.001908065963351 -10.10626095412997 -5.904965002461295 -10.06927576034501 -5.951373557172462 -10.19862236532301 -5.97664674374756 12.52689379923964 -2.564429694384292 12.50276351476397 -2.632160172276806 12.40159987216635 -2.547566698791825 12.61860799010647 -2.07157490265327 12.63071247558316 -2.134070790287479 12.50436027662797 -2.05288573196875 -12.02217889485638 -3.552433880925095 -12.1446982041293 -3.578770994341044 -12.18895028811796 -3.521825751571051 -12.6506109294987 -2.258069628247561 -12.65359355466221 -2.186424059880305 -12.50833255829316 -2.243665527901626 -8.371711296460484 -7.711058531133934 -8.247493324895878 -7.673278536577046 -8.33526926066186 -7.762582516942481 10.92081324715679 -2.781893670447513 10.89598809710243 -2.847298419544966 10.77389037552655 -2.771354714339896 11.41909956563652 1.176088603862243 11.43741133559371 1.115289727710095 11.28433698302148 1.188297566200957 -10.28317486014378 -4.970754249946205 -10.42929398469201 -4.986742463350395 -10.47187985914567 -4.934357291864098 -11.02080708112402 -0.8895196254789614 -11.18732886843113 -0.897792518239128 -11.18936508156011 -0.8261190930710749 -12.47060931995162 0.8211727458480483 -12.32692890558392 0.8157345692125834 -12.48189717357242 0.7671225504100739 12.35737763565091 -0.7610649615736504 12.25110646693393 -0.73758325334747 12.2590339506434 -0.6675199869267502 10.85958640769515 -4.696877842611122 10.96376175377825 -4.784017579808633 10.84911064754874 -4.759555551762515 -12.64738279739117 -0.6705078456432573 -12.62484614593904 -0.7348530040563482 -12.77130993133742 -0.7105102352840176 -11.81966874191324 -2.221216928577346 -11.68814189401062 -2.200933905113122 -11.68477240812853 -2.272568859774362 -2.813837005937617 -10.02175846134583 -2.747730045187505 -9.944225755608683 -2.684584726814461 -9.975990867798494 -12.34712717847993 0.711068567427408 -12.33956233899112 0.6621577329345746 -12.4833067550381 0.6664226720683839 10.8341790913295 -2.928026544613575 10.69932087865276 -2.916489536031525 10.71246538689819 -2.851702319205666 11.39026777054721 1.102973270925174 11.24342278414055 1.114109912454478 11.23677318122472 1.175433037698627 -10.44480332973878 -4.891435348338514 -10.4227137964753 -4.944847588370251 -10.61062682259548 -4.905997593885506 -11.02046413612363 -0.8889369615822576 -11.18902199551489 -0.8255361971176556 -11.02251895736931 -0.8172662058665945 12.32972769345473 -0.6571501199675645 12.31397725318278 -0.7268343890666958 12.21481564695536 -0.6338252937164728 10.85686994610952 -4.839283370499927 10.85418283551526 -4.902475788041593 10.75105040469853 -4.81457168848571 -12.63310231493371 -0.9496811178036727 -12.74189688413779 -0.987207398137782 -12.77995673749219 -0.9268411838871186 -11.81758591857441 -2.295070005443553 -11.82103415492809 -2.223430057712653 -11.6861378518861 -2.274782038886273 -1.700680309258098 -10.1847686180246 -1.576911440637717 -10.13042462988106 -1.642357880487287 -10.22243727512909 -10.07489593405453 5.317865131622324 -9.914212043539097 5.290983115074772 -10.09887128280329 5.272346325687641 8.926739659517338 -3.333700991142646 8.906055126422018 -3.397258317156485 8.762487648304621 -3.32703020223145 9.322637233375367 2.072371933533065 9.339731769609148 2.01231322404564 9.171855318009799 2.080670833352711 -8.389721987007942 -6.192875430508777 -8.55369073492459 -6.202934797632022 -8.588287626146517 -6.153801221723152 -8.953615184345583 -0.7905433555926199 -9.139687651119626 -0.794883308664731 -9.140975068249894 -0.7232014806574122 9.916681593819769 1.355376862847567 10.02890419320369 1.255402500478206 9.920180365030419 1.2846531573443 6.806571625771529 -6.414021707408567 6.687836312696602 -6.384293090103021 6.710808514383312 -6.323702891380686 -11.70770455946561 2.327646037062097 -11.84237110709834 2.340842626216489 -11.71945801068183 2.394391966093911 -8.497812747680163 -2.125569904993155 -8.361422144933348 -2.099387563293242 -8.358261214048065 -2.171035711933601 1.647171871169038 -10.17810927867025 1.726491109724755 -10.10245365700075 1.79514528646327 -10.1270924823156 -8.95332294793722 -0.7900298055367276 -9.140682730464413 -0.7226877560546117 -8.954591924157162 -0.7183431001338305 -10.182430584409 4.923837330807495 -10.18266462648535 4.879634520720614 -10.34450278856321 4.901821467802213 8.839585991712525 -3.485217008954383 8.688773749948515 -3.477266435189169 8.696271217218778 -3.414670201888944 9.288538652900973 1.965996370032669 9.124309544921923 1.972946970572734 9.120416123885098 2.033978688334276 -8.587658393071976 -6.193333549739277 -8.575865719793248 -6.242524934708914 -8.773568499488418 -6.200830912026516 9.890862181544346 1.305687024710952 9.88534748018013 1.236021162589624 9.77197480422123 1.33518926633466 6.665538242502155 -6.452944035834532 6.651807514522332 -6.514386963890035 6.556891616352036 -6.423516395302233 -11.75101458588584 2.114149917366381 -11.8589344778326 2.06515187335709 -11.8858029850785 2.126552785291868 -8.497014745379723 -2.201529350571034 -8.500061384445765 -2.129882272843588 -8.360509649708535 -2.175347697790068 2.591126072632715 -10.14678966530765 2.530477444128616 -10.11615706904937 2.673833530764338 -10.05754682408608 -6.673280126673509 -0.7225446577926918 -6.871434112871212 -0.724537688939901 -6.871984446148782 -0.6528453404657015 -7.25799830404261 7.162579420947893 -7.078469010283276 7.127490702602729 -7.276450317435023 7.1208275330605 6.716704057231503 -3.702182447020491 6.703222601122889 -3.764155022811938 6.541750659983299 -3.697743607190727 7.02276182648545 2.52952846852613 7.034419215835821 2.469111966056694 6.862116333526764 2.535600225585909 -6.258451424956638 -7.156337190288912 -6.433325467948533 -7.163179576646859 -6.456044912435761 -7.116420380834304 6.12148523600438 2.432855809288773 6.25615285277576 2.329841047502787 6.133010334498379 2.363646324428206 2.482131981882935 -6.578948038907051 2.347397337717577 -6.54511569793694 2.374685842992014 -6.48654031337502 -9.226883617228856 4.949918969721494 -9.364300424677927 4.950734550338548 -9.227331453626954 5.014855107582775 -4.144388904626483 -2.059837602090552 -4.30091436112659 -2.019724650321638 -4.146690846255067 -1.98817332472513 4.58366395416181 -9.57844883091896 4.687797825325956 -9.503157336036267 4.75401390710288 -9.525546124816136 -6.480623026832273 -7.212833170771361 -6.482062634754204 -7.258941925857334 -6.678743437251233 -7.216326884488593 -6.674115931306228 -0.7240396627997361 -6.872820514184492 -0.6543408101834938 -6.674674293542323 -0.652348144219881 -7.459838911950114 6.776905529532344 -7.453197270593202 6.73512117752022 -7.634232373204485 6.765041439828853 6.640026708949564 -3.854609266625648 6.479369334592612 -3.84873527494939 6.478738437322397 -3.787922221610563 6.983802994338966 2.410197361084788 6.808810192667448 2.41479142626565 6.811319571334433 2.47639529799676 6.070038885237254 2.30442542891948 6.071263036094379 2.236711245752523 5.935553584784401 2.338876406096 2.352162169744286 -6.602427208229413 2.335520940445758 -6.662218054347383 2.228692780121906 -6.569367996641364 -9.352558283623353 4.681432156679366 -9.369069035535254 4.739923671642124 -9.231651764626596 4.739157938824222 -4.144147157576669 -2.059248813414291 -4.298406531952122 -2.090796906347824 -4.300672587376654 -2.01913579716988 5.318857115998671 -9.475497878340921 5.264506578007724 -9.446406902090407 5.431054043365919 -9.386478061742478 -3.798437635028153 -7.988997234969305 -3.974687229717874 -7.995376371805689 -3.984202140860202 -7.949865124205307 -4.239991226707238 -0.6854206447204622 -4.43977561736835 -0.6868879570074055 -4.439645894320549 -0.6151951654697432 -4.70736126842966 7.959147464083581 -4.51415759813757 7.92149520321366 -4.713837501285989 7.917347047259822 4.29228277170574 -4.052848656795728 4.287355328842573 -4.113540076474784 4.115968003424621 -4.048916083437927 4.602153769781864 2.84892743796308 4.606437271493864 2.787384127466765 4.440207456119154 2.854502823893526 2.501540817132148 2.458421236806983 2.360894878367134 2.49541657796471 2.347214760178243 2.562277059063196 -0.995987370844324 -6.193340856458598 -1.14982734784705 -6.156379658505479 -1.124472851279751 -6.098513453078377 -6.021111357985751 6.468295099512081 -6.173156786121 6.458297194800057 -6.016431170743815 6.52809812707032 -0.4673611767382618 -2.012142972794287 -0.6445168387110728 -1.976256813940504 -0.468805931694829 -1.940468705341978 6.770791638712933 -8.743876822142328 6.899332350587947 -8.667446781248739 6.958090127764787 -8.690637162682506 4.539717524041055 2.706829269539442 4.363356280612857 2.710870355417722 4.373278723959134 2.773626692411378 -4.069659760668041 -8.087473990802284 -4.084730298185056 -8.132364966101234 -4.269422606780978 -8.090208960337565 -4.239811057065991 -0.6851008210236675 -4.439465672741036 -0.6148752503924861 -4.23972471180077 -0.6134209565716047 -4.909868340854303 7.617742079432595 -4.891256859307714 7.575729809148655 -5.085869538237439 7.608586064309732 4.214459294067448 -4.220588294909764 4.052505424544329 -4.215150427434201 4.04326125207857 -4.15565456024358 2.313009045770565 2.381868346057378 2.314475444715103 2.316766841332019 2.159267758698982 2.419806410991602 -1.098011577230085 -6.203634390694601 -1.111064161653627 -6.262929803788139 -1.239118732682174 -6.167742373348917 -6.107052651180744 6.220643665716459 -6.119745850805267 6.27426029218976 -5.967650873234329 6.283780382622252 -0.4924884353088443 -2.089383935684647 -0.6667519852174547 -2.12515907898624 -0.6696466591109601 -2.053505604099753 7.361945856571936 -8.600266542189791 7.318191678102082 -8.569583331019507 7.502172404554232 -8.509610303663143 1.961866993229882 3.121420198292064 1.958855011039579 3.05822469283424 1.807479363525461 3.128187325946219 -0.9534596355512204 -8.616875581533371 -0.7875150586268281 -8.65393563374966 -0.9553964181431812 -8.663280655942394 -1.51554266047925 -0.6737276652590656 -1.706051469211878 -0.6764903426647987 -1.705250544440307 -0.6048132151761321 -2.045058043252404 8.274174214337881 -2.235433419952746 8.266902856311152 -2.242357602555838 8.311058497063025 1.503540247707399 -4.466496658125283 1.506635251235516 -4.526385834563106 1.335329230917145 -4.461239476627109 -0.656613062860214 2.182939504566808 -0.8111416065795968 2.221849701690229 -0.8214786410022695 2.286451640181053 -3.723373662074076 -5.770770407697359 -3.892365640552052 -5.731735655616535 -3.872998263873556 -5.673518365337237 -2.722161985294747 7.121072471250257 -2.895915131563711 7.102752784121488 -2.718419346985435 7.175531454212196 2.502047898251155 -2.059457062259479 2.307258732297215 -2.026349521758462 2.499797868375544 -1.987789267103908 8.60232885134681 -7.732012325644101 8.747377381387175 -7.653778516002554 8.795771051466248 -7.679795656206258 1.416206611738852 -4.648816687372756 1.261812103455085 -4.642147384413928 1.245142400618741 -4.58327829393803 1.884090460540353 2.975302765977744 1.715925736702129 2.980632017713818 1.732481879783885 3.044952568735773 -1.101939570557584 -8.770828551072645 -1.127596089301494 -8.816850064327529 -1.292339017399659 -8.776608818779309 -1.519352831643749 -0.680248378444777 -1.709061696274642 -0.6113355990130359 -1.518494808126481 -0.6085562156311978 -2.432832418340815 8.014027739704867 -2.402052538621178 7.970192476512427 -2.600568684462753 8.002787713078721 -0.7887234807686039 2.121535479458697 -0.7915802586981796 2.058723468682336 -0.9570349319695676 2.161652285090936 -3.814700094223602 -5.774321532089809 -3.820414909471595 -5.834135546616221 -3.969682280101117 -5.736544379247184 -2.735030482338774 6.715111064731046 -2.752681918904458 6.761933194069331 -2.578715199213051 6.778952396307427 2.512021352067604 -2.022946996562845 2.317962934978308 -2.061527020896144 2.317233307623482 -1.989835372920374 9.068258403170781 -7.539931851525441 9.037582147125956 -7.505617190798471 9.228077681181993 -7.447079154052003 -2.135624988089351 -4.88392659388195 -2.127787708236893 -4.943922613996008 -2.287825372741574 -4.875016067259235 -1.265266249581897 3.361322696758975 -1.272981469490768 3.295978028257124 -1.404182385817391 3.37155812642724 3.377144303257839 -8.614972367176044 3.522939210648212 -8.64677302543765 3.372142215560619 -8.665070813338549 1.880044486869489 -0.7099514351381803 1.706315315811077 -0.7161579521971155 1.707983358657299 -0.6444746211323323 0.6337253384765141 8.349045894123551 0.4609188363799184 8.333314393872879 0.4429084197343792 8.381346533202356 0.2695293010936289 8.1364090602647 0.3104024884032453 8.089717936087684 0.1186430588494392 8.118356841517262 -2.273763436104708 -5.093778321852651 -2.412676028745445 -5.083513173020799 -2.433325245719731 -5.024192203367654 -1.352700378083153 3.220124235178913 -1.504857610480996 3.229056740737732 -1.484182202929981 3.295401634304913 3.147647696784186 -8.819590970392428 3.119343838084017 -8.870722796612172 2.974893776662716 -8.835327339648192 1.886046075813324 -0.7001921648486493 1.713986269026166 -0.634713201971237 1.88776685392225 -0.6285039010011156 3.699286847979196 8.021822719626043 3.551952280515458 7.992681642936506 3.526917347250496 8.045842285832848 -6.836616185196524 -4.819791454772719 -6.974650412903761 -4.743853791100033 -6.842495237258248 -4.758460733709759 -5.459351615402195 3.312165022183192 -5.33863699750301 3.296910802299307 -5.346121993929955 3.228855582043298 9.041019153931364 -6.223731286472436 9.17630563324073 -6.244424906221747 9.050258749720699 -6.279024996016408 6.041048416374899 -0.7390722020015017 6.189725108657427 -0.7993394197908873 6.03839393747066 -0.8107428311457778 6.190729492069909 -0.7300320553835483 6.188178023715594 -0.8016900164781685 6.039501070505297 -0.7414231970392802 3.426548616858394 7.90026039116947 3.471178173534864 7.849667070041692 3.298289751271667 7.871255638637174 -7.174730556041649 -4.906914882122241 -7.19105403806215 -4.845489807090734 -7.054114516421728 -4.922644265753986 -5.548237129010005 3.181780743562215 -5.529544051101709 3.250467760491241 -5.415988493601526 3.167433313382298 8.937225232820152 -6.451378921063251 8.926680707431935 -6.511009150407484 8.792206600368742 -6.487263767881751 9.800177201884342 -0.8616435763712601 9.931073519539018 -0.9166810034770428 9.79701255595192 -0.9332864011530994 6.543709852027904 7.192855156707714 6.418256003569928 7.149474398751684 6.39047432061879 7.207047475399693 -10.6400071920669 -3.408831100365564 -10.75619133608059 -3.325594972389929 -10.63771319022588 -3.346104088131604 -8.981249019126471 2.571235861176958 -8.87372873114696 2.55103419758575 -8.877325153416768 2.48084769220877 12.06170687526851 -1.408798886311561 12.19939239644375 -1.414165055528784 12.09521623568925 -1.462925454458923 12.05148810165725 -1.446818324504842 12.16880426552161 -1.39314695239537 12.18912632739616 -1.452889081468752 9.949440569830106 -0.824816356737934 9.944926260336747 -0.8964329369946092 9.81403154190742 -0.8413931562028022 6.369941897162857 7.118594636873734 6.413417582830934 7.065469826911111 6.259985367198966 7.07827979375381 -10.85607504668656 -3.355543728139729 -10.86392437964178 -3.292489464994982 -10.74884128748 -3.376666859992118 -9.145558097532087 2.348930978149284 -9.131910200316611 2.41889883773728 -9.026943999321077 2.329259125943994 11.31957069538852 3.020063535695641 11.26583492276647 3.065205116143619 11.42096419302446 3.074562563346431 12.11838366928983 -0.916930972997013 12.24919422657635 -0.9661783164602587 12.1137980097633 -0.9885447479458788 9.380176606079347 5.589576159771561 9.266021591225567 5.52885695472803 9.243020805809994 5.589392515012531 -12.40786866375894 -0.6990625123970562 -12.29002405232616 -0.7258816563634604 -12.30443274239033 -0.7882153539158593 -11.80972128753171 0.7593281674162619 -11.69993427371322 0.7335394531590792 -11.69436938673955 0.6628881535085086 -11.86829958126493 0.580998676268116 -11.86624101006072 0.6509562222434236 -11.74995342578468 0.5552141355206599 11.21328869378885 3.273985903877301 11.3272664105408 3.335675764187015 11.36829230186353 3.284553751724773 12.25469266709176 -0.8918064921604529 12.25071985344918 -0.9636108793327785 12.11990880630248 -0.9143643410958979 9.381505479978991 5.459039563227266 9.244349645995575 5.458872224572826 9.345371550519099 5.513624454725724 -12.41324362251875 -0.6884910809370632 -12.40648445054843 -0.62555973916627 -12.30384427382546 -0.715279913644114 -12.32826371519772 -1.362403121319241 -12.4641364650429 -1.262973566421748 -12.34391070149085 -1.293517925765701 8.981203934996707 5.429316778188807 8.921911684114765 5.467780531960197 9.097381664687084 5.486188805898603 11.94236502335973 -0.8120089244758073 12.08925826584056 -0.8553680978831623 11.93906130248036 -0.8838342888720473 11.47787161521177 3.097568893933862 11.46388290660867 3.158119809795075 11.5966558362717 3.174562599256967 -11.34821614628667 1.255624421034312 -11.37199634600862 1.195303020831611 -11.47904374747924 1.287374896716945 -11.28751556120904 1.321710735149691 -11.40740462468705 1.353063397022768 -11.3935630011545 1.414495959264407 -12.44094075818664 -1.383219269771241 -12.44652625482842 -1.315413747877141 -12.30989459050788 -1.414197626557444 8.790311906755896 5.759914720469269 8.920833395116851 5.824940625231536 8.965450224087414 5.780183568122521 12.08695084765901 -0.7940576838640522 12.08419862447269 -0.8657165775385197 11.93730339714487 -0.8223615656621114 11.6677428890452 2.960337297373715 11.53468992322189 2.945360715295816 11.64097291766424 3.01325500917886 -9.369071727379923 2.270001709774427 -9.394095880381938 2.210798678097317 -9.518271409100272 2.305789280122922 -11.29147691600203 -2.630005990951341 -11.2730960361497 -2.696397365380065 -11.42869150098175 -2.595812799590735 6.576658927265195 6.554304857670149 6.520974822997713 6.590584892256295 6.713551668846446 6.613202537613497 10.52339895681859 -0.7207779304447626 10.35283549260919 -0.7540787061680859 10.35480122092476 -0.6824037917664646 12.51180493535195 0.2706465071181 12.50509077932547 0.327355149520634 12.64691539020935 0.3590274409921676 12.66778146565213 0.05892633726080144 12.52495608246687 0.0301714431453946 12.64674478859559 0.1068366988525202 -9.302510166488013 2.310149017915042 -9.439415499216281 2.345100915452966 -9.426070055047823 2.405635132471007 -11.20914066415681 -2.694165706725969 -11.35869759713432 -2.659180231377136 -11.3653588524073 -2.594180249874346 6.361798036712726 6.910066499029041 6.51560573550019 6.976942616822218 6.553995546503733 6.934599816498761 10.52299578483374 -0.7218641785146214 10.35439796509906 -0.6834902677926709 10.52494382013441 -0.6501968436860819 12.37000959761969 -2.336958627664024 12.36424737504895 -2.286473781923784 12.52368815173407 -2.242902055310073 -7.224685944093681 2.756019202345131 -7.245965853143572 2.696905971698105 -7.390269406292927 2.794788332272979 -9.530928646863446 -3.317543633379358 -9.515533077944276 -3.381619966434712 -9.683232503992896 -3.280780719023091 4.257134499501867 7.144053646115612 4.210186732294227 7.180672783186406 4.411524365462806 7.205010246440727 8.545973735453295 -0.592941878975351 8.357028163816624 -0.6299704831927728 8.35820892604297 -0.5582927843914641 8.546230575502396 -0.5920844654164418 8.358465807110765 -0.5574352332749095 8.54739793738338 -0.5203936384912864 12.41475282978748 -2.565479432249199 12.25351832280703 -2.604754525619022 12.39284133089804 -2.524392084192538 -7.128554081253577 2.81551315224877 -7.280503727026984 2.85317221179776 -7.272251546151035 2.913945760187608 -9.436436927120244 -3.342654604932382 -9.602337393165087 -3.304783873263495 -9.604596860468231 -3.242291066644484 4.043546367960193 7.507514708560755 4.217305617531318 7.576650856390418 4.244512810361858 7.533681961433697 6.458588815215814 -0.4911045874229971 6.259337848940884 -0.5302686320569416 6.259788327676025 -0.4585727995235803 11.45022029032948 -4.43438708186878 11.4389091848806 -4.390728059032241 11.61617969043561 -4.339166469793684 -5.006251699513427 3.100853315779034 -5.02112085534459 3.040863773969763 -5.181011700825348 3.142336909852881 -7.552485714177336 -3.699467933501392 -7.54377745695181 -3.761609553274425 -7.713189516733095 -3.661254097011805 1.883949753098416 7.515269190246045 1.848487499930221 7.554335453351069 2.047700650454797 7.578044841063513 1.689162816113156 7.860895420440947 1.873638509106969 7.931905728540796 1.888054153622193 7.886221660767003 6.457348208570663 -0.4957853571967956 6.25854755424382 -0.4632542000480829 6.457838105933594 -0.4241002986534197 11.2777955831601 -4.692609692730578 11.0974163655919 -4.737000543948343 11.24964601433964 -4.657753875375169 -4.894188290903335 3.164392141248226 -5.054484030439394 3.203652280341502 -5.053497485486894 3.266429849060887 -7.470913264088006 -3.712882289854652 -7.646001996777374 -3.673342907891183 -7.640648267248458 -3.612865098936539 -0.7302780596735581 7.710385280979263 -0.7542204343304731 7.753523337154497 -0.5673989491577319 7.774105028477619 4.19487860069561 -0.4224204991272711 3.996298338185958 -0.461464255093915 3.996095256625206 -0.3897783386373207 9.878641123504959 -6.202299018746859 9.858408393813962 -6.164194333899258 10.04825114846391 -6.11211180087455 -2.608771561801277 3.429134367301827 -2.61640780100766 3.366640053256094 -2.783219999291351 3.469005226175061 -5.438666118872652 -4.031915268882641 -5.438482305466206 -4.092539373380188 -5.598960862720181 -3.99348706643258 -5.339848911181261 -4.02173657458162 -5.51460469757868 -3.982004317795938 -5.5007060378602 -3.923065006203717 -0.7235561226348133 8.069782180759592 -0.9101067414326411 8.047732414326177 -0.7267770962588636 8.119347977291019 4.202241642346643 -0.3947040905378378 4.003459239982811 -0.3620583813129791 4.20195769221024 -0.3226515792289527 9.676123288116585 -6.246639807917428 9.827903993125302 -6.168116163994411 9.867218195010635 -6.197472680389462 -2.497942624891423 3.476350128791754 -2.657800587684473 3.515888260631241 -2.664241510416254 3.579230860433497 -3.039940524517814 -4.412230103514333 -3.048242970748799 -4.471818097288121 -3.191190959732303 -4.374922231239453 -3.763036890219274 7.590975318271896 -3.778704319162962 7.639051110321895 -3.611274597345889 7.654713604059981 1.650523539803778 -0.3535035296280499 1.462196838817967 -0.3917729921800831 1.461145487245244 -0.3197248815295568 8.592219930555833 -7.257072706052855 8.557921179424286 -7.224053261046919 8.747476541769197 -7.164935697135427 0.1406337610625319 3.733797810210173 0.1395419039069806 3.670258686393833 -0.02388507881883939 3.773426175556571 0.2709240254026241 3.777324967501047 0.1201334906623336 3.815767655541199 0.1080787144297618 3.881060097561499 -2.936354617074754 -4.394314621472311 -3.101275843536757 -4.355795668491951 -3.07971136218907 -4.297793192633391 -3.721072113896653 7.867935155099407 -3.888349492248882 7.851295778302021 -3.716943315756291 7.923624035620274 1.645064061037364 -0.3724507021735264 1.455685340335751 -0.3386743722916912 1.644100099668695 -0.3007641796892113 8.100940675740842 -7.347312867957174 8.241692624995373 -7.269464729778806 8.29346233362131 -7.294459136463427 3.469850849684725 3.900357043555614 3.472017456300336 3.834401550811186 3.322275567743667 3.937355519735375 -0.1023895106528927 -4.879835590156923 -0.1170898568501827 -4.939151136998811 -0.238029561536206 -4.844759002316809 -7.114636760554537 6.756816294661537 -7.127895730494763 6.81161600095514 -6.980733369026265 6.818051314912564 -1.550998060598423 -0.3778865650695223 -1.720065763427929 -0.4124693052699294 -1.721835239327647 -0.3407922871979483 6.80702682276617 -8.297761895734295 6.759729529718261 -8.26778005069659 6.938896502216644 -8.207586602382589 6.163368388470193 -8.350734524831868 6.284459955916631 -8.274759866409978 6.346039756643334 -8.297456563449998 3.643874164541265 3.941770590636395 3.508670096486394 3.977873807408855 3.49497507021792 4.045478249316951 0.005835663129068469 -4.860933560759089 -0.1421120931521958 -4.824876920903267 -0.1155740604464639 -4.766915566438251 -7.026139346161553 6.991237927096178 -7.17327156087129 6.984389301634262 -7.021802981148946 7.052850713371004 -1.554815807467813 -0.3887919030281837 -1.72565342438554 -0.351698874051286 -1.556549722259848 -0.3171079159341658 4.574721270117863 -9.206420184576434 4.517744107111181 -9.17721696821164 4.677354815083322 -9.117540535223441 7.353869995920599 3.5507029233354 7.353694124279022 3.482245578826975 7.225199208536866 3.583728155222878 3.647514931463742 -5.242838091940076 3.630918838176233 -5.303045250355286 3.529486700959499 -5.21084132776262 -10.33125851989274 4.830395726752738 -10.35048384214724 4.890220798922674 -10.2155357828808 4.885791695912404 -5.6362703403132 -0.4896387235804584 -5.638819120231366 -0.417969801788205 -5.488409815916429 -0.4597030815992176 -5.634811288321173 -0.4089858632164678 -5.486990394918814 -0.3790542862912318 -5.484402411438603 -0.4507200963404745 3.763031202477097 -9.218754706048724 3.859035375087246 -9.143704093001249 3.926740526010622 -9.166398178683943 7.408314102668021 3.645974968143622 7.535697521555866 3.543628900312736 7.417894719828418 3.576135708947374 3.791319289428732 -5.203325182469116 3.662355303616272 -5.170711020977769 3.689169757568529 -5.11161268549519 -10.19138273408183 5.04141668936046 -10.32631531885218 5.046128526909784 -10.19496663212064 5.107359031539379 -9.806781445342764 -0.6041624731399967 -9.810039044935884 -0.5325135653374357 -9.672624342500644 -0.5797765348465975 1.535922109075115 -9.865529604055389 1.474457187294036 -9.833688724408701 1.609684157394824 -9.776722218676373 10.93539100340914 2.177462147527562 10.92675072566646 2.107547018278384 10.81934835029744 2.205101865336883 8.072853190883647 -4.801022135136885 8.061390124508989 -4.863120881729041 7.968882449874977 -4.773024751161838 -12.27146224211327 2.015760399897205 -12.37926707659833 1.970167214977837 -12.40980259010493 2.031643386693846 -12.23230287926874 2.180127290769761 -12.37044845907693 2.197026830779392 -12.24796720187469 2.246514432487988 -9.7794452200131 -0.4770096666667782 -9.648176375190293 -0.4527164337478769 -9.642033647960231 -0.5242782681450098 0.6347877467500684 -9.7938824966912 0.7064899812011505 -9.71696929723729 0.774283166708718 -9.743687857519737 10.92258138251291 2.193204678530598 11.02901042879143 2.094991913303787 10.92479461569198 2.122419629650227 8.274267772584182 -4.533218815517539 8.368657229714991 -4.622098876869929 8.251571579293271 -4.5940434551654 -12.62322136483424 -0.9884926746096205 -12.73402258899104 -1.022165627830135 -12.77512460861654 -0.9628896790440884 -12.42656044648903 -0.6819918015620948 -12.43279392382107 -0.610434823620015 -12.29429478115778 -0.6636320508769412 -3.514888558759066 -9.587899785499472 -3.394188500635819 -9.536087997465549 -3.461425166322894 -9.630198417003474 12.67926010943561 0.112703683031725 12.66238027365438 0.04315350076231182 12.56225914008888 0.1340217108155918 11.89531750833988 -2.599964148209908 11.89459864827752 -2.663352588840468 11.7861060285692 -2.577088680193272 11.75577224359357 -2.625974774347513 11.86384865128812 -2.712561399909004 11.74866162454194 -2.689746790882088 -12.66282470131991 -0.7703015141692573 -12.63789468173582 -0.8332199780093381 -12.7893008948975 -0.8058556451738165 -12.42167249640617 -0.5929351130584185 -12.28646030539558 -0.5744824291765425 -12.2831707763391 -0.6461281874960041 -4.690159170759388 -9.215779302306514 -4.62245131688605 -9.137747522884199 -4.563762793138021 -9.17319511605838 12.70399787726469 -0.08200532495677756 12.59439955775383 -0.06030497090109629 12.60566385994444 0.0100626524788951 12.61640793213024 -0.1023569909323241 12.6304044421532 -0.1654198673449201 12.49827414866427 -0.08512560844670043 -11.67350323515287 -3.288010248492187 -11.80204843882791 -3.311238971525278 -11.846820292182 -3.255535621580952 -12.48538805670654 -0.59129550450552 -12.48811697465957 -0.5196351760705164 -12.33725850261272 -0.5786498228314776 -10.50563804373145 -5.580884561568996 -10.37647905207472 -5.5534926342502 -10.48223632086638 -5.636103579282757 12.26433931610314 -1.606192561422027 12.2382986223441 -1.67409303859007 12.13387420455086 -1.591030891722805 12.25008523136633 -1.651601640595737 12.13164251785821 -1.635736838902463 12.14548500515366 -1.568676501068125 12.45898529356781 0.06265792421729399 12.59305490883578 -0.01562164687526756 12.46274646214888 0.0004132969269934617 -11.78705701281359 -3.145702805812931 -11.76049531113983 -3.203525023142638 -11.93312207740811 -3.168849634525575 -12.48802585516416 -0.5194814619330627 -12.3398577858151 -0.5068274917863478 -12.33716744915971 -0.5784962131693596 -10.80976664562027 -5.00053219044899 -10.77723945394556 -5.048177494912495 -10.90821893477896 -5.069560801012446 10.68389964464171 -2.503523768390299 10.65940534287381 -2.568672673545232 10.53444531774685 -2.49359210205869 11.18407651756669 1.693274869997672 11.20252889825199 1.632674230747778 11.04684961283824 1.704870363887166 -10.06808402359556 -4.910543599436745 -10.21696107594429 -4.925582567577007 -10.25872359456791 -4.873614434076883 -10.7816665529123 -0.4648133065879106 -10.95109552754286 -0.4724726394720479 -10.95300623200576 -0.4007884327468569 -12.30908038002033 1.740118222142352 -12.16332030314266 1.730537365504907 -12.32385807588184 1.687300798036264 -12.20876008939372 1.568895762789303 -12.20352521299595 1.520487039089596 -12.34947627949594 1.52805768223384 10.60534147703649 -2.640136696809395 10.46803189022016 -2.629163630984892 10.48068895447858 -2.564740459846621 11.1572787914086 1.617496273057383 11.00776963092635 1.627958053809139 11.00123978666344 1.68921021825032 -10.22928332495867 -4.858430103010528 -10.20826288899793 -4.911140997368372 -10.39813383988574 -4.871837620040224 -10.78215597732558 -0.4656464671670826 -10.95349585095464 -0.4016219155005061 -10.78408957030241 -0.3939673121257168 -9.699595093495944 5.775912464707766 -9.536309214523842 5.747275989514788 -9.723468536318375 5.73110556445044 8.665189670607965 -2.996047723033286 8.645332841270562 -3.059336570399545 8.49905097107551 -2.989800264909472 9.040807845074188 2.520450967274743 9.057325119261686 2.460372842151566 8.888248850721846 2.528343927701152 -8.12958098266942 -6.08372138608525 -8.295508498011042 -6.093180139383154 -8.328721898618415 -6.044505563437614 -8.672207449606802 -0.3716241419591361 -8.860448226334816 -0.3755544401733517 -8.861624165207038 -0.3038651157676479 -8.673389915837582 -0.373705239891557 -8.862807031354816 -0.3059469055392942 -8.67458805903075 -0.3020321883300314 -9.832646750119491 5.392998362967258 -9.832473836806617 5.349290839839418 -9.997025549394298 5.373023407964293 8.575783519388756 -3.154262665406538 8.423197819176439 -3.146695911335647 8.429752763263647 -3.084400491640864 8.99728339693395 2.405265479481248 8.831127768129674 2.411791497874662 8.827933938632205 2.472814376969788 -8.334586758656092 -6.111197157968449 -8.324437661620836 -6.159874202813236 -8.522696161312483 -6.117982771918519 -6.377544179146341 -0.3103605142503153 -6.576570181989181 -0.3121674903087746 -6.577067006288759 -0.2404893070979254 -6.92624851164522 7.440383425074537 -6.744319709033606 7.404698113182658 -6.94324404247165 7.398770758029583 6.42893787304784 -3.3565738762113 6.416546647835457 -3.418317624762302 6.253206074137435 -3.352311352956643 6.716822531297657 2.942347538293593 6.72753624867111 2.881857282507835 6.555455076872859 2.948252037061713 -5.961504567206625 -7.033789168623536 -6.137089499438966 -7.040375504351062 -6.158074207712867 -6.993892333598071 -6.198563300694816 -7.116947799031139 -6.201960465062159 -7.162881452958369 -6.397561210177187 -7.120139189853734 -6.379592733052274 -0.3140210896168131 -6.579116187902246 -0.2441509917345677 -6.380062631985634 -0.2423322560992763 -7.130691912037596 7.081262166481328 -7.122500172632322 7.039563654134417 -7.30593463043105 7.070108838600221 6.340075997570792 -3.530611999909155 6.178698014784366 -3.524888339870417 6.176952111102356 -3.464274940928936 6.673710039240254 2.819823577916315 6.498014450153883 2.824219524485156 6.501442688301053 2.885918880306083</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2670\" source=\"#ID1681\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1677\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1675\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1676\"/>\r\n                </vertices>\r\n                <triangles count=\"890\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1677\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1678\"/>\r\n                    <p>0 0 1 1 2 2 1 3 6 4 2 5 1 6 0 7 8 8 10 9 0 10 11 11 14 12 15 13 16 14 2 15 6 16 20 17 22 18 16 19 23 20 0 21 26 22 8 23 28 24 0 25 10 26 10 27 11 28 30 29 32 30 15 31 14 32 14 33 16 34 22 35 20 36 6 37 34 38 11 39 36 40 30 41 22 42 23 43 38 44 8 45 26 46 40 47 0 48 28 49 26 50 42 51 43 52 44 53 48 54 49 55 42 56 52 57 53 58 54 59 32 60 58 61 15 62 60 63 52 64 61 65 20 66 34 67 64 68 30 69 36 70 66 71 68 72 61 73 69 74 38 75 23 76 72 77 26 78 74 79 40 80 28 81 76 82 26 83 43 84 53 85 44 86 49 87 43 88 42 89 78 90 49 91 48 92 54 93 53 94 80 95 60 96 53 97 52 98 32 99 82 100 58 101 68 102 60 103 61 104 64 105 34 106 84 107 36 108 64 109 66 110 78 111 48 112 86 113 88 114 68 115 69 116 38 117 72 118 90 119 40 120 74 121 92 122 26 123 76 124 74 125 44 126 53 127 94 128 96 129 80 130 97 131 100 132 97 133 101 134 54 135 80 136 96 137 53 138 60 139 94 140 58 141 82 142 104 143 60 144 68 145 106 146 64 147 84 148 108 149 110 150 66 151 64 152 78 153 86 154 112 155 68 156 88 157 114 158 88 159 69 160 116 161 90 162 72 163 118 164 74 165 120 166 92 167 76 168 122 169 74 170 96 171 97 172 100 173 100 174 101 175 124 176 94 177 60 178 106 179 82 180 126 181 104 182 106 183 68 184 114 185 108 186 84 187 128 188 108 189 110 190 64 191 112 192 86 193 130 194 124 195 101 196 132 197 114 198 88 199 134 200 136 201 88 202 116 203 90 204 118 205 138 206 92 207 120 208 140 209 74 210 122 211 120 212 126 213 142 214 143 215 104 216 126 217 143 218 122 219 146 220 120 221 148 222 108 223 128 224 150 225 110 226 108 227 112 228 130 229 152 230 132 231 154 232 124 233 146 234 156 235 157 236 134 237 88 238 136 239 136 240 116 241 160 242 118 243 162 244 138 245 120 246 157 247 140 248 143 249 142 250 164 251 120 252 146 253 157 254 166 255 148 256 128 257 148 258 150 259 108 260 152 261 130 262 168 263 132 264 170 265 154 266 142 267 172 268 164 269 157 270 156 271 174 272 134 273 136 274 176 275 178 276 136 277 160 278 138 279 162 280 180 281 140 282 157 283 182 284 184 285 148 286 166 287 186 288 150 289 148 290 152 291 168 292 188 293 170 294 190 295 154 296 164 297 172 298 192 299 157 300 174 301 182 302 156 303 194 304 174 305 176 306 136 307 178 308 178 309 160 310 196 311 162 312 198 313 180 314 200 315 184 316 166 317 184 318 186 319 148 320 188 321 168 322 202 323 170 324 188 325 190 326 172 327 204 328 192 329 182 330 174 331 206 332 174 333 194 334 208 335 176 336 178 337 210 338 212 339 178 340 196 341 180 342 198 343 214 344 216 345 184 346 200 347 218 348 186 349 184 350 188 351 202 352 220 353 188 354 222 355 190 356 192 357 204 358 224 359 198 360 226 361 214 362 174 363 208 364 206 365 194 366 228 367 208 368 210 369 178 370 212 371 212 372 196 373 230 374 232 375 216 376 200 377 216 378 218 379 184 380 202 381 234 382 220 383 188 384 220 385 222 386 224 387 204 388 236 389 214 390 226 391 238 392 206 393 208 394 240 395 208 396 228 397 242 398 210 399 212 400 244 401 212 402 230 403 246 404 248 405 216 406 232 407 250 408 218 409 216 410 220 411 234 412 252 413 220 414 254 415 222 416 224 417 236 418 256 419 230 420 258 421 246 422 226 423 260 424 238 425 240 426 208 427 242 428 228 429 262 430 242 431 244 432 212 433 264 434 266 435 248 436 232 437 248 438 250 439 216 440 234 441 268 442 252 443 220 444 252 445 254 446 256 447 236 448 270 449 246 450 258 451 272 452 238 453 260 454 274 455 240 456 242 457 276 458 242 459 262 460 278 461 280 462 244 463 264 464 282 465 248 466 266 467 284 468 250 469 248 470 252 471 268 472 286 473 252 474 288 475 254 476 256 477 270 478 290 479 280 480 264 481 272 482 258 483 292 484 272 485 260 486 294 487 274 488 276 489 242 490 296 491 262 492 298 493 278 494 300 495 282 496 266 497 282 498 284 499 248 500 268 501 302 502 286 503 252 504 286 505 288 506 290 507 270 508 304 509 306 510 280 511 272 512 272 513 292 514 308 515 294 516 310 517 274 518 276 519 296 520 312 521 278 522 298 523 314 524 316 525 282 526 300 527 318 528 284 529 282 530 286 531 302 532 320 533 286 534 322 535 288 536 290 537 304 538 324 539 314 540 298 541 326 542 308 543 306 544 272 545 292 546 328 547 308 548 294 549 330 550 310 551 296 552 314 553 312 554 332 555 316 556 300 557 316 558 318 559 282 560 302 561 334 562 320 563 286 564 320 565 322 566 324 567 304 568 336 569 314 570 326 571 338 572 340 573 306 574 308 575 308 576 328 577 342 578 330 579 344 580 310 581 312 582 314 583 346 584 348 585 316 586 332 587 316 588 350 589 318 590 320 591 334 592 352 593 354 594 322 595 320 596 356 597 324 598 336 599 314 600 338 601 346 602 338 603 326 604 358 605 342 606 340 607 308 608 328 609 360 610 342 611 362 612 344 613 330 614 364 615 348 616 332 617 366 618 350 619 316 620 334 621 368 622 352 623 352 624 354 625 320 626 356 627 336 628 370 629 346 630 338 631 372 632 338 633 358 634 374 635 376 636 340 637 342 638 378 639 342 640 360 641 362 642 380 643 344 644 382 645 348 646 364 647 366 648 384 649 350 650 352 651 368 652 386 653 388 654 354 655 352 656 390 657 356 658 370 659 392 660 380 661 362 662 338 663 374 664 372 665 358 666 394 667 374 668 378 669 376 670 342 671 378 672 360 673 396 674 398 675 382 676 364 677 400 678 384 679 366 680 368 681 402 682 386 683 386 684 388 685 352 686 390 687 370 688 404 689 392 690 406 691 380 692 372 693 374 694 408 695 374 696 394 697 410 698 412 699 376 700 378 701 414 702 378 703 396 704 398 705 416 706 382 707 418 708 384 709 400 710 402 711 420 712 386 713 422 714 388 715 386 716 424 717 390 718 404 719 414 720 396 721 426 722 428 723 406 724 392 725 374 726 410 727 408 728 394 729 430 730 410 731 414 732 412 733 378 734 432 735 416 736 398 737 416 738 418 739 400 740 402 741 434 742 420 743 420 744 422 745 386 746 436 747 424 748 404 749 438 750 414 751 426 752 428 753 440 754 406 755 408 756 410 757 442 758 410 759 430 760 444 761 446 762 412 763 414 764 432 765 448 766 416 767 450 768 418 769 416 770 434 771 452 772 420 773 454 774 422 775 420 776 456 777 424 778 436 779 438 780 446 781 414 782 438 783 426 784 458 785 460 786 440 787 428 788 410 789 444 790 442 791 430 792 462 793 444 794 464 795 448 796 432 797 448 798 450 799 416 800 466 801 452 802 434 803 452 804 454 805 420 806 468 807 456 808 436 809 470 810 446 811 438 812 472 813 438 814 458 815 460 816 474 817 440 818 442 819 444 820 476 821 444 822 462 823 478 824 480 825 448 826 464 827 482 828 450 829 448 830 466 831 484 832 452 833 452 834 486 835 454 836 488 837 456 838 468 839 462 840 490 841 478 842 472 843 470 844 438 845 472 846 458 847 492 848 494 849 474 850 460 851 444 852 478 853 476 854 496 855 480 856 464 857 480 858 482 859 448 860 498 861 484 862 466 863 452 864 484 865 486 866 500 867 488 868 468 869 478 870 490 871 502 872 472 873 504 874 470 875 506 876 472 877 492 878 508 879 474 880 494 881 476 882 478 883 510 884 512 885 480 886 496 887 514 888 482 889 480 890 498 891 516 892 484 893 484 894 518 895 486 896 520 897 488 898 500 899 478 900 502 901 510 902 490 903 522 904 502 905 524 906 504 907 472 908 506 909 492 910 526 911 528 912 508 913 494 914 530 915 512 916 496 917 512 918 514 919 480 920 532 921 516 922 498 923 484 924 516 925 518 926 534 927 520 928 500 929 510 930 502 931 536 932 502 933 522 934 538 935 524 936 540 937 504 938 542 939 506 940 526 941 544 942 508 943 528 944 546 945 512 946 530 947 548 948 514 949 512 950 532 951 550 952 516 953 516 954 552 955 518 956 554 957 520 958 534 959 556 960 544 961 528 962 502 963 538 964 536 965 522 966 558 967 538 968 560 969 540 970 524 971 542 972 526 973 562 974 564 975 546 976 530 977 546 978 548 979 512 980 566 981 550 982 532 983 516 984 550 985 552 986 568 987 554 988 534 989 570 990 544 991 556 992 538 993 572 994 536 995 538 996 558 997 574 998 560 999 576 1000 540 1001 562 1002 578 1003 542 1004 580 1005 546 1006 564 1007 582 1008 548 1009 546 1010 584 1011 550 1012 566 1013 550 1014 586 1015 552 1016 568 1017 588 1018 554 1019 590 1020 578 1021 562 1022 592 1023 570 1024 556 1025 574 1026 572 1027 538 1028 558 1029 594 1030 574 1031 596 1032 576 1033 560 1034 598 1035 580 1036 564 1037 580 1038 582 1039 546 1040 600 1041 584 1042 566 1043 550 1044 584 1045 586 1046 602 1047 588 1048 568 1049 590 1050 604 1051 578 1052 606 1053 570 1054 592 1055 574 1056 608 1057 572 1058 610 1059 574 1060 594 1061 596 1062 612 1063 576 1064 614 1065 580 1066 598 1067 616 1068 582 1069 580 1070 618 1071 584 1072 600 1073 584 1074 620 1075 586 1076 602 1077 622 1078 588 1079 596 1080 624 1081 612 1082 626 1083 604 1084 590 1085 628 1086 606 1087 592 1088 630 1089 608 1090 574 1091 632 1092 610 1093 594 1094 634 1095 614 1096 598 1097 614 1098 616 1099 580 1100 636 1101 618 1102 600 1103 584 1104 618 1105 620 1106 638 1107 622 1108 602 1109 612 1110 624 1111 640 1112 626 1113 642 1114 604 1115 644 1116 606 1117 628 1118 646 1119 608 1120 630 1121 648 1122 610 1123 632 1124 650 1125 614 1126 634 1127 616 1128 614 1129 652 1130 654 1131 618 1132 636 1133 618 1134 656 1135 620 1136 638 1137 658 1138 622 1139 660 1140 648 1141 632 1142 624 1143 662 1144 640 1145 664 1146 642 1147 626 1148 644 1149 628 1150 666 1151 668 1152 646 1153 630 1154 670 1155 650 1156 634 1157 652 1158 614 1159 650 1160 672 1161 654 1162 636 1163 618 1164 674 1165 656 1166 676 1167 658 1168 638 1169 660 1170 678 1171 648 1172 640 1173 662 1174 680 1175 664 1176 682 1177 642 1178 644 1179 666 1180 684 1181 686 1182 646 1183 668 1184 650 1185 670 1186 688 1187 652 1188 650 1189 690 1190 692 1191 654 1192 672 1193 656 1194 674 1195 694 1196 676 1197 696 1198 658 1199 678 1200 686 1201 668 1202 698 1203 678 1204 660 1205 662 1206 682 1207 680 1208 700 1209 682 1210 664 1211 684 1212 666 1213 702 1214 670 1215 704 1216 688 1217 690 1218 650 1219 706 1220 708 1221 692 1222 672 1223 694 1224 674 1225 710 1226 676 1227 712 1228 696 1229 686 1230 678 1231 714 1232 678 1233 698 1234 716 1235 680 1236 682 1237 718 1238 720 1239 682 1240 700 1241 684 1242 702 1243 722 1244 688 1245 704 1246 724 1247 690 1248 706 1249 726 1250 728 1251 692 1252 708 1253 694 1254 710 1255 730 1256 712 1257 732 1258 696 1259 722 1260 702 1261 734 1262 678 1263 716 1264 714 1265 698 1266 736 1267 716 1268 682 1269 720 1270 718 1271 720 1272 700 1273 738 1274 724 1275 704 1276 740 1277 706 1278 742 1279 726 1280 744 1281 728 1282 708 1283 730 1284 710 1285 746 1286 712 1287 748 1288 732 1289 722 1290 734 1291 750 1292 714 1293 716 1294 752 1295 716 1296 736 1297 754 1298 718 1299 720 1300 756 1301 758 1302 720 1303 738 1304 724 1305 740 1306 760 1307 726 1308 742 1309 762 1310 764 1311 728 1312 744 1313 730 1314 746 1315 766 1316 732 1317 748 1318 768 1319 758 1320 738 1321 770 1322 750 1323 734 1324 772 1325 716 1326 754 1327 752 1328 736 1329 774 1330 754 1331 720 1332 758 1333 756 1334 760 1335 740 1336 776 1337 742 1338 760 1339 762 1340 764 1341 744 1342 778 1343 766 1344 746 1345 780 1346 748 1347 782 1348 768 1349 784 1350 758 1351 770 1352 750 1353 772 1354 786 1355 752 1356 754 1357 788 1358 754 1359 774 1360 790 1361 756 1362 758 1363 792 1364 760 1365 776 1366 794 1367 796 1368 762 1369 760 1370 764 1371 778 1372 798 1373 780 1374 800 1375 766 1376 768 1377 782 1378 802 1379 758 1380 784 1381 792 1382 784 1383 770 1384 804 1385 786 1386 772 1387 806 1388 754 1389 790 1390 788 1391 774 1392 808 1393 790 1394 794 1395 776 1396 810 1397 794 1398 796 1399 760 1400 798 1401 778 1402 812 1403 780 1404 814 1405 800 1406 782 1407 816 1408 802 1409 792 1410 784 1411 818 1412 820 1413 784 1414 804 1415 786 1416 806 1417 822 1418 788 1419 790 1420 824 1421 790 1422 808 1423 826 1424 828 1425 794 1426 810 1427 830 1428 796 1429 794 1430 798 1431 812 1432 832 1433 814 1434 834 1435 800 1436 802 1437 816 1438 836 1439 808 1440 838 1441 826 1442 818 1443 784 1444 820 1445 820 1446 804 1447 840 1448 806 1449 842 1450 822 1451 790 1452 826 1453 824 1454 844 1455 828 1456 810 1457 828 1458 830 1459 794 1460 832 1461 812 1462 846 1463 814 1464 848 1465 834 1466 816 1467 850 1468 836 1469 826 1470 838 1471 852 1472 818 1473 820 1474 854 1475 856 1476 820 1477 840 1478 822 1479 842 1480 858 1481 824 1482 826 1483 860 1484 862 1485 828 1486 844 1487 864 1488 830 1489 828 1490 832 1491 846 1492 866 1493 848 1494 868 1495 834 1496 836 1497 850 1498 870 1499 826 1500 852 1501 860 1502 838 1503 872 1504 852 1505 854 1506 820 1507 856 1508 856 1509 840 1510 874 1511 842 1512 876 1513 858 1514 878 1515 862 1516 844 1517 862 1518 864 1519 828 1520 866 1521 846 1522 880 1523 848 1524 866 1525 868 1526 850 1527 882 1528 870 1529 860 1530 852 1531 884 1532 852 1533 872 1534 886 1535 854 1536 856 1537 888 1538 890 1539 856 1540 874 1541 858 1542 876 1543 892 1544 894 1545 862 1546 878 1547 896 1548 864 1549 862 1550 866 1551 880 1552 898 1553 866 1554 900 1555 868 1556 870 1557 882 1558 902 1559 876 1560 904 1561 892 1562 852 1563 886 1564 884 1565 872 1566 906 1567 886 1568 888 1569 856 1570 890 1571 890 1572 874 1573 908 1574 910 1575 894 1576 878 1577 894 1578 896 1579 862 1580 880 1581 912 1582 898 1583 866 1584 898 1585 900 1586 902 1587 882 1588 914 1589 892 1590 904 1591 916 1592 884 1593 886 1594 918 1595 886 1596 906 1597 920 1598 888 1599 890 1600 922 1601 890 1602 908 1603 924 1604 926 1605 894 1606 910 1607 928 1608 896 1609 894 1610 898 1611 912 1612 930 1613 898 1614 932 1615 900 1616 902 1617 914 1618 934 1619 908 1620 936 1621 924 1622 904 1623 938 1624 916 1625 918 1626 886 1627 920 1628 906 1629 940 1630 920 1631 922 1632 890 1633 942 1634 944 1635 926 1636 910 1637 926 1638 928 1639 894 1640 912 1641 946 1642 930 1643 898 1644 930 1645 932 1646 934 1647 914 1648 948 1649 924 1650 936 1651 950 1652 916 1653 938 1654 952 1655 918 1656 920 1657 954 1658 920 1659 940 1660 956 1661 958 1662 922 1663 942 1664 960 1665 926 1666 944 1667 962 1668 928 1669 926 1670 930 1671 946 1672 964 1673 930 1674 966 1675 932 1676 934 1677 948 1678 968 1679 958 1680 942 1681 950 1682 936 1683 970 1684 950 1685 938 1686 972 1687 952 1688 954 1689 920 1690 974 1691 956 1692 940 1693 976 1694 978 1695 960 1696 944 1697 960 1698 962 1699 926 1700 946 1701 980 1702 964 1703 930 1704 964 1705 966 1706 968 1707 948 1708 982 1709 984 1710 958 1711 950 1712 950 1713 970 1714 986 1715 972 1716 988 1717 952 1718 954 1719 974 1720 990 1721 956 1722 976 1723 992 1724 994 1725 960 1726 978 1727 996 1728 962 1729 960 1730 964 1731 980 1732 998 1733 964 1734 1000 1735 966 1736 968 1737 982 1738 1002 1739 992 1740 976 1741 1004 1742 986 1743 984 1744 950 1745 970 1746 1006 1747 986 1748 972 1749 1008 1750 988 1751 974 1752 992 1753 990 1754 1010 1755 994 1756 978 1757 994 1758 996 1759 960 1760 980 1761 1012 1762 998 1763 964 1764 998 1765 1000 1766 1002 1767 982 1768 1014 1769 992 1770 1004 1771 1016 1772 1018 1773 984 1774 986 1775 986 1776 1006 1777 1020 1778 1008 1779 1022 1780 988 1781 990 1782 992 1783 1024 1784 1026 1785 994 1786 1010 1787 994 1788 1028 1789 996 1790 998 1791 1012 1792 1030 1793 1032 1794 1000 1795 998 1796 1034 1797 1002 1798 1014 1799 992 1800 1016 1801 1024 1802 1016 1803 1004 1804 1036 1805 1020 1806 1018 1807 986 1808 1006 1809 1038 1810 1020 1811 1040 1812 1022 1813 1008 1814 1042 1815 1026 1816 1010 1817 1044 1818 1028 1819 994 1820 1012 1821 1046 1822 1030 1823 1030 1824 1032 1825 998 1826 1034 1827 1014 1828 1048 1829 1024 1830 1016 1831 1050 1832 1016 1833 1036 1834 1052 1835 1054 1836 1018 1837 1020 1838 1056 1839 1020 1840 1038 1841 1040 1842 1058 1843 1022 1844 1060 1845 1026 1846 1042 1847 1044 1848 1062 1849 1028 1850 1030 1851 1046 1852 1064 1853 1066 1854 1032 1855 1030 1856 1068 1857 1034 1858 1048 1859 1070 1860 1058 1861 1040 1862 1016 1863 1052 1864 1050 1865 1036 1866 1072 1867 1052 1868 1056 1869 1054 1870 1020 1871 1056 1872 1038 1873 1074 1874 1076 1875 1060 1876 1042 1877 1078 1878 1062 1879 1044 1880 1046 1881 1080 1882 1064 1883 1064 1884 1066 1885 1030 1886 1068 1887 1048 1888 1082 1889 1070 1890 1084 1891 1058 1892 1050 1893 1052 1894 1086 1895 1052 1896 1072 1897 1088 1898 1090 1899 1054 1900 1056 1901 1092 1902 1056 1903 1074 1904 1076 1905 1094 1906 1060 1907 1096 1908 1062 1909 1078 1910 1080 1911 1098 1912 1064 1913 1100 1914 1066 1915 1064 1916 1102 1917 1068 1918 1082 1919 1092 1920 1074 1921 1104 1922 1106 1923 1084 1924 1070 1925 1052 1926 1088 1927 1086 1928 1072 1929 1108 1930 1088 1931 1092 1932 1090 1933 1056 1934 1110 1935 1094 1936 1076 1937 1094 1938 1096 1939 1078 1940 1080 1941 1112 1942 1098 1943 1114 1944 1100 1945 1064 1946 1116 1947 1102 1948 1082 1949 1118 1950 1092 1951 1104 1952 1106 1953 1120 1954 1084 1955 1086 1956 1088 1957 1122 1958 1088 1959 1108 1960 1124 1961 1126 1962 1090 1963 1092 1964 1110 1965 1128 1966 1094 1967 1130 1968 1096 1969 1094 1970 1112 1971 1132 1972 1098 1973 1114 1974 1134 1975 1100 1976 1136 1977 1102 1978 1116 1979 1118 1980 1126 1981 1092 1982 1118 1983 1104 1984 1138 1985 1140 1986 1120 1987 1106 1988 1088 1989 1124 1990 1122 1991 1108 1992 1142 1993 1124 1994 1144 1995 1128 1996 1110 1997 1128 1998 1130 1999 1094 2000 1146 2001 1132 2002 1112 2003 1114 2004 1132 2005 1134 2006 1148 2007 1136 2008 1116 2009 1150 2010 1126 2011 1118 2012 1152 2013 1118 2014 1138 2015 1140 2016 1154 2017 1120 2018 1122 2019 1124 2020 1156 2021 1124 2022 1142 2023 1158 2024 1160 2025 1128 2026 1144 2027 1162 2028 1130 2029 1128 2030 1146 2031 1164 2032 1132 2033 1132 2034 1166 2035 1134 2036 1168 2037 1136 2038 1148 2039 1142 2040 1170 2041 1158 2042 1152 2043 1150 2044 1118 2045 1152 2046 1138 2047 1172 2048 1174 2049 1154 2050 1140 2051 1124 2052 1158 2053 1156 2054 1176 2055 1160 2056 1144 2057 1160 2058 1162 2059 1128 2060 1178 2061 1164 2062 1146 2063 1132 2064 1164 2065 1166 2066 1180 2067 1168 2068 1148 2069 1158 2070 1170 2071 1182 2072 1152 2073 1184 2074 1150 2075 1186 2076 1152 2077 1172 2078 1188 2079 1154 2080 1174 2081 1156 2082 1158 2083 1190 2084 1192 2085 1160 2086 1176 2087 1194 2088 1162 2089 1160 2090 1178 2091 1196 2092 1164 2093 1164 2094 1198 2095 1166 2096 1200 2097 1168 2098 1180 2099 1158 2100 1182 2101 1190 2102 1170 2103 1202 2104 1182 2105 1204 2106 1184 2107 1152 2108 1186 2109 1172 2110 1206 2111 1208 2112 1188 2113 1174 2114 1210 2115 1192 2116 1176 2117 1192 2118 1194 2119 1160 2120 1212 2121 1196 2122 1178 2123 1164 2124 1196 2125 1198 2126 1214 2127 1200 2128 1180 2129 1190 2130 1182 2131 1216 2132 1182 2133 1202 2134 1218 2135 1204 2136 1220 2137 1184 2138 1222 2139 1186 2140 1206 2141 1224 2142 1188 2143 1208 2144 1226 2145 1224 2146 1208 2147 1182 2148 1218 2149 1216 2150 1202 2151 1228 2152 1218 2153 1230 2154 1220 2155 1204 2156 1222 2157 1206 2158 1232 2159 1234 2160 1224 2161 1226 2162 1218 2163 1236 2164 1216 2165 1238 2166 1218 2167 1228 2168 1230 2169 1240 2170 1220 2171 1232 2172 1242 2173 1222 2174 1244 2175 1242 2176 1232 2177 1246 2178 1234 2179 1226 2180 1238 2181 1236 2182 1218 2183 1248 2184 1238 2185 1228 2186 1250 2187 1240 2188 1230 2189 1244 2190 1252 2191 1242 2192 1254 2193 1234 2194 1246 2195 1238 2196 1256 2197 1236 2198 1258 2199 1238 2200 1248 2201 1250 2202 1260 2203 1240 2204 1250 2205 1262 2206 1260 2207 1264 2208 1252 2209 1244 2210 1266 2211 1254 2212 1246 2213 1268 2214 1256 2215 1238 2216 1270 2217 1258 2218 1248 2219 1260 2220 1262 2221 1272 2222 1264 2223 1274 2224 1252 2225 1276 2226 1254 2227 1266 2228 1278 2229 1256 2230 1268 2231 1280 2232 1258 2233 1270 2234 1282 2235 1280 2236 1270 2237 1262 2238 1284 2239 1272 2240 1286 2241 1274 2242 1264 2243 1276 2244 1266 2245 1288 2246 1280 2247 1278 2248 1268 2249 1282 2250 1290 2251 1280 2252 1272 2253 1284 2254 1292 2255 1286 2256 1294 2257 1274 2258 1276 2259 1288 2260 1296 2261 1278 2262 1280 2263 1298 2264 1280 2265 1290 2266 1298 2267 1300 2268 1290 2269 1282 2270 1284 2271 1294 2272 1292 2273 1302 2274 1294 2275 1286 2276 1296 2277 1288 2278 1304 2279 1298 2280 1290 2281 1306 2282 1290 2283 1300 2284 1308 2285 1292 2286 1294 2287 1310 2288 1312 2289 1294 2290 1302 2291 1296 2292 1304 2293 1314 2294 1314 2295 1304 2296 1316 2297 1290 2298 1308 2299 1306 2300 1300 2301 1318 2302 1308 2303 1294 2304 1312 2305 1310 2306 1312 2307 1302 2308 1320 2309 1314 2310 1316 2311 1322 2312 1306 2313 1308 2314 1324 2315 1308 2316 1318 2317 1326 2318 1310 2319 1312 2320 1328 2321 1330 2322 1312 2323 1320 2324 1330 2325 1320 2326 1332 2327 1322 2328 1316 2329 1334 2330 1308 2331 1326 2332 1324 2333 1318 2334 1336 2335 1326 2336 1312 2337 1330 2338 1328 2339 1338 2340 1330 2341 1332 2342 1322 2343 1334 2344 1340 2345 1324 2346 1326 2347 1342 2348 1326 2349 1336 2350 1344 2351 1328 2352 1330 2353 1346 2354 1330 2355 1338 2356 1346 2357 1338 2358 1332 2359 1348 2360 1340 2361 1334 2362 1350 2363 1326 2364 1344 2365 1342 2366 1336 2367 1352 2368 1344 2369 1346 2370 1338 2371 1354 2372 1356 2373 1338 2374 1348 2375 1340 2376 1350 2377 1358 2378 1342 2379 1344 2380 1360 2381 1344 2382 1352 2383 1362 2384 1352 2385 1364 2386 1362 2387 1354 2388 1338 2389 1356 2390 1356 2391 1348 2392 1366 2393 1350 2394 1368 2395 1358 2396 1344 2397 1362 2398 1360 2399 1362 2400 1364 2401 1370 2402 1354 2403 1356 2404 1372 2405 1374 2406 1356 2407 1366 2408 1358 2409 1368 2410 1376 2411 1360 2412 1362 2413 1378 2414 1362 2415 1370 2416 1378 2417 1364 2418 1380 2419 1370 2420 1372 2421 1356 2422 1374 2423 1374 2424 1366 2425 1382 2426 1368 2427 1384 2428 1376 2429 1378 2430 1370 2431 1386 2432 1370 2433 1380 2434 1388 2435 1372 2436 1374 2437 1390 2438 1392 2439 1374 2440 1382 2441 1376 2442 1384 2443 1394 2444 1384 2445 1396 2446 1394 2447 1370 2448 1388 2449 1386 2450 1380 2451 1398 2452 1388 2453 1390 2454 1374 2455 1392 2456 1392 2457 1382 2458 1400 2459 1394 2460 1396 2461 1402 2462 1386 2463 1388 2464 1404 2465 1388 2466 1398 2467 1406 2468 1390 2469 1392 2470 1408 2471 1392 2472 1400 2473 1410 2474 1400 2475 1412 2476 1410 2477 1396 2478 1414 2479 1402 2480 1404 2481 1388 2482 1406 2483 1398 2484 1416 2485 1406 2486 1408 2487 1392 2488 1418 2489 1410 2490 1412 2491 1420 2492 1402 2493 1414 2494 1422 2495 1404 2496 1406 2497 1424 2498 1406 2499 1416 2500 1426 2501 1428 2502 1408 2503 1418 2504 1428 2505 1418 2506 1420 2507 1412 2508 1430 2509 1420 2510 1414 2511 1432 2512 1422 2513 1424 2514 1406 2515 1434 2516 1426 2517 1416 2518 1436 2519 1438 2520 1428 2521 1420 2522 1420 2523 1430 2524 1440 2525 1432 2526 1442 2527 1422 2528 1424 2529 1434 2530 1444 2531 1426 2532 1436 2533 1446 2534 1446 2535 1436 2536 1448 2537 1440 2538 1438 2539 1420 2540 1430 2541 1450 2542 1440 2543 1432 2544 1452 2545 1442 2546 1434 2547 1446 2548 1444 2549 1446 2550 1448 2551 1454 2552 1456 2553 1438 2554 1440 2555 1440 2556 1450 2557 1458 2558 1452 2559 1460 2560 1442 2561 1444 2562 1446 2563 1462 2564 1446 2565 1454 2566 1462 2567 1454 2568 1448 2569 1464 2570 1458 2571 1456 2572 1440 2573 1450 2574 1466 2575 1458 2576 1468 2577 1460 2578 1452 2579 1462 2580 1454 2581 1470 2582 1454 2583 1464 2584 1472 2585 1474 2586 1456 2587 1458 2588 1476 2589 1458 2590 1466 2591 1468 2592 1478 2593 1460 2594 1480 2595 1478 2596 1468 2597 1454 2598 1472 2599 1470 2600 1464 2601 1482 2602 1472 2603 1476 2604 1474 2605 1458 2606 1476 2607 1466 2608 1484 2609 1480 2610 1486 2611 1478 2612 1470 2613 1472 2614 1488 2615 1472 2616 1482 2617 1490 2618 1492 2619 1474 2620 1476 2621 1494 2622 1476 2623 1484 2624 1494 2625 1484 2626 1496 2627 1498 2628 1486 2629 1480 2630 1472 2631 1490 2632 1488 2633 1482 2634 1500 2635 1490 2636 1494 2637 1492 2638 1476 2639 1502 2640 1494 2641 1496 2642 1498 2643 1504 2644 1486 2645 1488 2646 1490 2647 1506 2648 1490 2649 1500 2650 1508 2651 1510 2652 1492 2653 1494 2654 1502 2655 1510 2656 1494 2657 1502 2658 1496 2659 1512 2660 1514 2661 1504 2662 1498 2663 1490 2664 1508 2665 1506 2666 1500 2667 1516 2668 1508 2669</p>\r\n                </triangles>\r\n                <triangles count=\"890\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1677\"/>\r\n                    <p>3 4 5 3 7 4 9 5 4 12 5 13 17 18 19 21 7 3 24 17 25 9 27 5 13 5 29 31 12 13 19 18 33 25 17 19 35 7 21 31 37 12 39 24 25 41 27 9 27 29 5 45 46 47 47 50 51 55 56 57 18 59 33 62 57 63 65 35 21 67 37 31 70 62 71 73 24 39 41 75 27 27 77 29 45 56 46 47 46 50 51 50 79 81 56 55 57 56 63 59 83 33 62 63 71 85 35 65 67 65 37 87 51 79 70 71 89 91 73 39 93 75 41 75 77 27 95 56 45 98 81 99 102 98 103 99 81 55 95 63 56 105 83 59 107 71 63 109 85 65 65 67 111 113 87 79 115 89 71 117 70 89 119 73 91 93 121 75 75 123 77 103 98 99 125 102 103 107 63 95 105 127 83 115 71 107 129 85 109 65 111 109 131 87 113 133 102 125 135 89 115 117 89 137 139 119 91 141 121 93 121 123 75 144 145 127 144 127 105 121 147 123 129 109 149 109 111 151 153 131 113 125 155 133 158 159 147 137 89 135 161 117 137 139 163 119 141 158 121 165 145 144 158 147 121 129 149 167 109 151 149 169 131 153 155 171 133 165 173 145 175 159 158 177 137 135 161 137 179 181 163 139 183 158 141 167 149 185 149 151 187 189 169 153 155 191 171 193 173 165 183 175 158 175 195 159 179 137 177 197 161 179 181 199 163 167 185 201 149 187 185 203 169 189 191 189 171 193 205 173 207 175 183 209 195 175 211 179 177 197 179 213 215 199 181 201 185 217 185 187 219 221 203 189 191 223 189 225 205 193 215 227 199 207 209 175 209 229 195 213 179 211 231 197 213 201 217 233 185 219 217 221 235 203 223 221 189 237 205 225 239 227 215 241 209 207 243 229 209 245 213 211 247 231 213 233 217 249 217 219 251 253 235 221 223 255 221 257 237 225 247 259 231 239 261 227 243 209 241 243 263 229 265 213 245 233 249 267 217 251 249 253 269 235 255 253 221 271 237 257 273 259 247 275 261 239 277 243 241 279 263 243 265 245 281 267 249 283 249 251 285 287 269 253 255 289 253 291 271 257 273 265 281 273 293 259 275 295 261 297 243 277 279 299 263 267 283 301 249 285 283 287 303 269 289 287 253 305 271 291 273 281 307 309 293 273 275 311 295 313 297 277 315 299 279 301 283 317 283 285 319 321 303 287 289 323 287 325 305 291 327 299 315 273 307 309 309 329 293 311 331 295 313 315 297 301 317 333 283 319 317 321 335 303 323 321 287 337 305 325 339 327 315 309 307 341 343 329 309 311 345 331 347 315 313 333 317 349 319 351 317 353 335 321 321 323 355 337 325 357 347 339 315 359 327 339 309 341 343 343 361 329 331 345 363 333 349 365 317 351 367 353 369 335 321 355 353 371 337 357 373 339 347 375 359 339 343 341 377 361 343 379 345 381 363 365 349 383 351 385 367 387 369 353 353 355 389 371 357 391 363 381 393 373 375 339 375 395 359 343 377 379 397 361 379 365 383 399 367 385 401 387 403 369 353 389 387 405 371 391 381 407 393 409 375 373 411 395 375 379 377 413 397 379 415 383 417 399 401 385 419 387 421 403 387 389 423 405 391 425 427 397 415 393 407 429 409 411 375 411 431 395 379 413 415 399 417 433 401 419 417 421 435 403 387 423 421 405 425 437 427 415 439 407 441 429 443 411 409 445 431 411 415 413 447 417 449 433 417 419 451 421 453 435 421 423 455 437 425 457 415 447 439 459 427 439 429 441 461 443 445 411 445 463 431 433 449 465 417 451 449 435 453 467 421 455 453 437 457 469 439 447 471 459 439 473 441 475 461 477 445 443 479 463 445 465 449 481 449 451 483 453 485 467 455 487 453 469 457 489 479 491 463 439 471 473 493 459 473 461 475 495 477 479 445 465 481 497 449 483 481 467 485 499 487 485 453 469 489 501 503 491 479 471 505 473 493 473 507 495 475 509 511 479 477 497 481 513 481 483 515 485 517 499 487 519 485 501 489 521 511 503 479 503 523 491 473 505 525 527 493 507 495 509 529 497 513 531 481 515 513 499 517 533 519 517 485 501 521 535 537 503 511 539 523 503 505 541 525 527 507 543 529 509 545 531 513 547 513 515 549 517 551 533 519 553 517 535 521 555 529 545 557 537 539 503 539 559 523 525 541 561 563 527 543 531 547 565 513 549 547 533 551 567 553 551 517 535 555 569 557 545 571 537 573 539 575 559 539 541 577 561 543 579 563 565 547 581 547 549 583 567 551 585 553 587 551 555 589 569 563 579 591 557 571 593 539 573 575 575 595 559 561 577 597 565 581 599 547 583 581 567 585 601 587 585 551 569 589 603 579 605 591 593 571 607 573 609 575 595 575 611 577 613 597 599 581 615 581 583 617 601 585 619 587 621 585 589 623 603 613 625 597 591 605 627 593 607 629 575 609 631 595 611 633 599 615 635 581 617 615 601 619 637 621 619 585 603 623 639 641 625 613 605 643 627 629 607 645 631 609 647 633 611 649 635 615 651 653 615 617 637 619 655 621 657 619 623 659 639 633 649 661 641 663 625 627 643 665 667 629 645 631 647 669 635 651 671 651 615 653 637 655 673 657 675 619 639 659 677 649 679 661 681 663 641 643 683 665 685 667 645 669 647 687 689 671 651 691 651 653 673 655 693 695 675 657 659 697 677 669 687 679 661 679 699 681 683 663 665 683 701 703 667 685 689 705 671 707 651 691 673 693 709 711 675 695 697 713 677 715 679 687 717 699 679 719 683 681 701 683 721 723 703 685 725 705 689 727 707 691 709 693 729 731 711 695 697 733 713 735 703 723 715 717 679 717 737 699 719 721 683 739 701 721 741 705 725 727 743 707 709 729 745 747 711 731 733 749 713 751 735 723 753 717 715 755 737 717 757 721 719 739 721 759 761 741 725 763 743 727 745 729 765 767 747 731 769 749 733 771 739 759 773 735 751 753 755 717 755 775 737 757 759 721 777 741 761 763 761 743 779 745 765 781 747 767 769 783 749 771 759 785 787 773 751 789 755 753 791 775 755 793 759 757 795 777 761 761 763 797 799 779 765 767 801 781 803 783 769 793 785 759 805 771 785 807 773 787 789 791 755 791 809 775 811 777 795 761 797 795 813 779 799 801 815 781 803 817 783 819 785 793 805 785 821 823 807 787 825 791 789 827 809 791 811 795 829 795 797 831 833 813 799 801 835 815 837 817 803 827 839 809 821 785 819 841 805 821 823 843 807 825 827 791 811 829 845 795 831 829 847 813 833 835 849 815 837 851 817 853 839 827 855 821 819 841 821 857 859 843 823 861 827 825 845 829 863 829 831 865 867 847 833 835 869 849 871 851 837 861 853 827 853 873 839 857 821 855 875 841 857 859 877 843 845 863 879 829 865 863 881 847 867 869 867 849 871 883 851 885 853 861 887 873 853 889 857 855 875 857 891 893 877 859 879 863 895 863 865 897 899 881 867 869 901 867 903 883 871 893 905 877 885 887 853 887 907 873 891 857 889 909 875 891 879 895 911 863 897 895 899 913 881 901 899 867 915 883 903 917 905 893 919 887 885 921 907 887 923 891 889 925 909 891 911 895 927 895 897 929 931 913 899 901 933 899 935 915 903 925 937 909 917 939 905 921 887 919 921 941 907 943 891 923 911 927 945 895 929 927 931 947 913 933 931 899 949 915 935 951 937 925 953 939 917 955 921 919 957 941 921 943 923 959 945 927 961 927 929 963 965 947 931 933 967 931 969 949 935 951 943 959 951 971 937 953 973 939 975 921 955 977 941 957 945 961 979 927 963 961 965 981 947 967 965 931 983 949 969 951 959 985 987 971 951 953 989 973 991 975 955 993 977 957 979 961 995 961 963 997 999 981 965 967 1001 965 1003 983 969 1005 977 993 951 985 987 987 1007 971 989 1009 973 991 993 975 979 995 1011 961 997 995 999 1013 981 1001 999 965 1015 983 1003 1017 1005 993 987 985 1019 1021 1007 987 989 1023 1009 1025 993 991 1011 995 1027 997 1029 995 1031 1013 999 999 1001 1033 1015 1003 1035 1025 1017 993 1037 1005 1017 987 1019 1021 1021 1039 1007 1009 1023 1041 1011 1027 1043 995 1029 1045 1031 1047 1013 999 1033 1031 1049 1015 1035 1051 1017 1025 1053 1037 1017 1021 1019 1055 1039 1021 1057 1023 1059 1041 1043 1027 1061 1029 1063 1045 1065 1047 1031 1031 1033 1067 1049 1035 1069 1041 1059 1071 1051 1053 1017 1053 1073 1037 1021 1055 1057 1075 1039 1057 1043 1061 1077 1045 1063 1079 1065 1081 1047 1031 1067 1065 1083 1049 1069 1059 1085 1071 1087 1053 1051 1089 1073 1053 1057 1055 1091 1075 1057 1093 1061 1095 1077 1079 1063 1097 1065 1099 1081 1065 1067 1101 1083 1069 1103 1105 1075 1093 1071 1085 1107 1087 1089 1053 1089 1109 1073 1057 1091 1093 1077 1095 1111 1079 1097 1095 1099 1113 1081 1065 1101 1115 1083 1103 1117 1105 1093 1119 1085 1121 1107 1123 1089 1087 1125 1109 1089 1093 1091 1127 1095 1129 1111 1095 1097 1131 1099 1133 1113 1101 1135 1115 1117 1103 1137 1093 1127 1119 1139 1105 1119 1107 1121 1141 1123 1125 1089 1125 1143 1109 1111 1129 1145 1095 1131 1129 1113 1133 1147 1135 1133 1115 1117 1137 1149 1119 1127 1151 1139 1119 1153 1121 1155 1141 1157 1125 1123 1159 1143 1125 1145 1129 1161 1129 1131 1163 1133 1165 1147 1135 1167 1133 1149 1137 1169 1159 1171 1143 1119 1151 1153 1173 1139 1153 1141 1155 1175 1157 1159 1125 1145 1161 1177 1129 1163 1161 1147 1165 1179 1167 1165 1133 1149 1169 1181 1183 1171 1159 1151 1185 1153 1173 1153 1187 1175 1155 1189 1191 1159 1157 1177 1161 1193 1161 1163 1195 1165 1197 1179 1167 1199 1165 1181 1169 1201 1191 1183 1159 1183 1203 1171 1153 1185 1205 1207 1173 1187 1175 1189 1209 1177 1193 1211 1161 1195 1193 1179 1197 1213 1199 1197 1165 1181 1201 1215 1217 1183 1191 1219 1203 1183 1185 1221 1205 1207 1187 1223 1209 1189 1225 1209 1225 1227 1217 1219 1183 1219 1229 1203 1205 1221 1231 1233 1207 1223 1227 1225 1235 1217 1237 1219 1229 1219 1239 1221 1241 1231 1223 1243 1233 1233 1243 1245 1227 1235 1247 1219 1237 1239 1229 1239 1249 1231 1241 1251 1243 1253 1245 1247 1235 1255 1237 1257 1239 1249 1239 1259 1241 1261 1251 1261 1263 1251 1245 1253 1265 1247 1255 1267 1239 1257 1269 1249 1259 1271 1273 1263 1261 1253 1275 1265 1267 1255 1277 1269 1257 1279 1271 1259 1281 1271 1281 1283 1273 1285 1263 1265 1275 1287 1289 1267 1277 1269 1279 1281 1281 1291 1283 1293 1285 1273 1275 1295 1287 1297 1289 1277 1299 1281 1279 1299 1291 1281 1283 1291 1301 1293 1295 1285 1287 1295 1303 1305 1289 1297 1307 1291 1299 1309 1301 1291 1311 1295 1293 1303 1295 1313 1315 1305 1297 1317 1305 1315 1307 1309 1291 1309 1319 1301 1311 1313 1295 1321 1303 1313 1323 1317 1315 1325 1309 1307 1327 1319 1309 1329 1313 1311 1321 1313 1331 1333 1321 1331 1335 1317 1323 1325 1327 1309 1327 1337 1319 1329 1331 1313 1333 1331 1339 1341 1335 1323 1343 1327 1325 1345 1337 1327 1347 1331 1329 1347 1339 1331 1349 1333 1339 1351 1335 1341 1343 1345 1327 1345 1353 1337 1355 1339 1347 1349 1339 1357 1359 1351 1341 1361 1345 1343 1363 1353 1345 1363 1365 1353 1357 1339 1355 1367 1349 1357 1359 1369 1351 1361 1363 1345 1371 1365 1363 1373 1357 1355 1367 1357 1375 1377 1369 1359 1379 1363 1361 1379 1371 1363 1371 1381 1365 1375 1357 1373 1383 1367 1375 1377 1385 1369 1387 1371 1379 1389 1381 1371 1391 1375 1373 1383 1375 1393 1395 1385 1377 1395 1397 1385 1387 1389 1371 1389 1399 1381 1393 1375 1391 1401 1383 1393 1403 1397 1395 1405 1389 1387 1407 1399 1389 1409 1393 1391 1411 1401 1393 1411 1413 1401 1403 1415 1397 1407 1389 1405 1407 1417 1399 1419 1393 1409 1421 1413 1411 1423 1415 1403 1425 1407 1405 1427 1417 1407 1419 1409 1429 1421 1419 1429 1421 1431 1413 1423 1433 1415 1435 1407 1425 1437 1417 1427 1421 1429 1439 1441 1431 1421 1423 1443 1433 1445 1435 1425 1447 1437 1427 1449 1437 1447 1421 1439 1441 1441 1451 1431 1443 1453 1433 1445 1447 1435 1455 1449 1447 1441 1439 1457 1459 1451 1441 1443 1461 1453 1463 1447 1445 1463 1455 1447 1465 1449 1455 1441 1457 1459 1459 1467 1451 1453 1461 1469 1471 1455 1463 1473 1465 1455 1459 1457 1475 1467 1459 1477 1461 1479 1469 1469 1479 1481 1471 1473 1455 1473 1483 1465 1459 1475 1477 1485 1467 1477 1479 1487 1481 1489 1473 1471 1491 1483 1473 1477 1475 1493 1485 1477 1495 1497 1485 1495 1481 1487 1499 1489 1491 1473 1491 1501 1483 1477 1493 1495 1497 1495 1503 1487 1505 1499 1507 1491 1489 1509 1501 1491 1495 1493 1511 1495 1511 1503 1513 1497 1503 1499 1505 1515 1507 1509 1491 1509 1517 1501</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1682\">\r\n            <mesh>\r\n                <source id=\"ID1683\">\r\n                    <float_array count=\"30\" id=\"ID1686\">-0.5659469366073608 -1.151860475540161 -0.07378179579973221 -0.5388372540473938 -1.17527174949646 -0.07721765339374542 -0.5581417679786682 -1.150959491729736 -0.0635225921869278 -0.5581417679786682 -1.150959491729736 -0.0635225921869278 -0.5388372540473938 -1.17527174949646 -0.07721765339374542 -0.5659469366073608 -1.151860475540161 -0.07378179579973221 -0.5354199409484863 -1.170861482620239 -0.06640531122684479 -0.5354199409484863 -1.170861482620239 -0.06640531122684479 -0.4937689304351807 -1.175581336021423 -0.08266642689704895 -0.4937689304351807 -1.175581336021423 -0.08266642689704895</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"10\" source=\"#ID1686\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1684\">\r\n                    <float_array count=\"30\" id=\"ID1687\">0.5409137891857291 0.6957278621630106 -0.4726256599877156 0.2763324570536528 0.8551586518832471 -0.4385704655901018 0.5430258197750222 0.6958964898748292 -0.4699479060891291 -0.5430258197750222 -0.6958964898748292 0.4699479060891291 -0.2763324570536528 -0.8551586518832471 0.4385704655901018 -0.5409137891857291 -0.6957278621630106 0.4726256599877156 0.2920574673906872 0.8497416742821521 -0.4389094698562592 -0.2920574673906872 -0.8497416742821521 0.4389094698562592 -0.03799684812346563 0.9294092924482325 -0.3670893714663478 0.03799684812346563 -0.9294092924482325 0.3670893714663478</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"10\" source=\"#ID1687\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1685\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1683\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1684\"/>\r\n                </vertices>\r\n                <triangles count=\"6\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1685\"/>\r\n                    <p>0 1 2 3 4 5 1 6 2 3 7 4 1 8 6 7 9 4</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1688\">\r\n            <mesh>\r\n                <source id=\"ID1689\">\r\n                    <float_array count=\"18\" id=\"ID1692\">-0.5364519953727722 -1.171381711959839 -0.1061717569828033 -0.5611231327056885 -1.15022337436676 -0.1030475050210953 -0.5348328948020935 -1.169529438018799 -0.09166005253791809 -0.5348328948020935 -1.169529438018799 -0.09166005253791809 -0.5611231327056885 -1.15022337436676 -0.1030475050210953 -0.5364519953727722 -1.171381711959839 -0.1061717569828033</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1692\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1690\">\r\n                    <float_array count=\"18\" id=\"ID1693\">-0.6295684446900218 -0.7587649004087633 0.1670909912540662 -0.6295684446900218 -0.7587649004087633 0.1670909912540662 -0.6295684446900218 -0.7587649004087633 0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1693\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1691\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1689\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1690\"/>\r\n                </vertices>\r\n                <triangles count=\"2\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1691\"/>\r\n                    <p>0 1 2 3 4 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1694\">\r\n            <mesh>\r\n                <source id=\"ID1695\">\r\n                    <float_array count=\"4554\" id=\"ID1699\">-0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4670745432376862 -1.158051013946533 -0.2156426906585693 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4670745432376862 -1.158051013946533 -0.2156426906585693 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4780085980892181 -1.166073203086853 -0.2118184715509415 -0.4780085980892181 -1.166073203086853 -0.2118184715509415 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4566622674465179 -1.161874890327454 -0.2208317667245865 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4566622674465179 -1.161874890327454 -0.2208317667245865 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4701715409755707 -1.171931743621826 -0.2167111337184906 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4701715409755707 -1.171931743621826 -0.2167111337184906 -0.4639952778816223 -1.126953125 -0.2235644310712814 -0.4639952778816223 -1.126953125 -0.2235644310712814 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4873996675014496 -1.178971529006958 -0.2120722085237503 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4873996675014496 -1.178971529006958 -0.2120722085237503 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4919966459274292 -1.171796083450317 -0.2075648158788681 -0.4919966459274292 -1.171796083450317 -0.2075648158788681 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.5069580674171448 -1.182219982147217 -0.2071293890476227 -0.5069580674171448 -1.182219982147217 -0.2071293890476227 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4727209806442261 -1.117928266525269 -0.2250491082668304 -0.4727209806442261 -1.117928266525269 -0.2250491082668304 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5078603625297546 -1.174407243728638 -0.2030627429485321 -0.5078603625297546 -1.174407243728638 -0.2030627429485321 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5269226431846619 -1.181341052055359 -0.2021083533763886 -0.5269226431846619 -1.181341052055359 -0.2021083533763886 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.4852666556835175 -1.111176490783691 -0.2260912507772446 -0.4852666556835175 -1.111176490783691 -0.2260912507772446 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5240494608879089 -1.173695206642151 -0.1985002011060715 -0.5240494608879089 -1.173695206642151 -0.1985002011060715 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.5389738082885742 -1.169721484184265 -0.1940673291683197 -0.5389738082885742 -1.169721484184265 -0.1940673291683197 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5453409552574158 -1.176581025123596 -0.1972052454948425 -0.5453409552574158 -1.176581025123596 -0.1972052454948425 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5003835558891296 -1.10732901096344 -0.2268392145633698 -0.5003835558891296 -1.10732901096344 -0.2268392145633698 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4978899359703064 -1.099338173866272 -0.2309906035661697 -0.4978899359703064 -1.099338173866272 -0.2309906035661697 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5511723160743713 -1.16288423538208 -0.1899425983428955 -0.5511723160743713 -1.16288423538208 -0.1899425983428955 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.5604198575019836 -1.168011784553528 -0.1927651613950729 -0.5604198575019836 -1.168011784553528 -0.1927651613950729 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5166073441505432 -1.10676920413971 -0.2274772375822067 -0.5166073441505432 -1.10676920413971 -0.2274772375822067 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.5178954601287842 -1.09870171546936 -0.2311694622039795 -0.5178954601287842 -1.09870171546936 -0.2311694622039795 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5594555735588074 -1.153860569000244 -0.1862775683403015 -0.5594555735588074 -1.153860569000244 -0.1862775683403015 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.5323457717895508 -1.109543561935425 -0.2281976342201233 -0.5323457717895508 -1.109543561935425 -0.2281976342201233 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5372952222824097 -1.102163672447205 -0.2314521372318268 -0.5372952222824097 -1.102163672447205 -0.2314521372318268 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5750964283943176 -1.14414381980896 -0.1856220960617065 -0.5750964283943176 -1.14414381980896 -0.1856220960617065 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5460524559020996 -1.115358591079712 -0.2291837930679321 -0.5460524559020996 -1.115358591079712 -0.2291837930679321 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5541844964027405 -1.109387874603272 -0.2320649176836014 -0.5541844964027405 -1.109387874603272 -0.2320649176836014 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5732637643814087 -1.131062269210815 -0.1831503957509995 -0.5732637643814087 -1.131062269210815 -0.1831503957509995 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5614937543869019 -1.132966756820679 -0.1806835681200028 -0.5614937543869019 -1.132966756820679 -0.1806835681200028 -0.5563911199569702 -1.12365186214447 -0.2305930256843567 -0.5563911199569702 -1.12365186214447 -0.2305930256843567 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.566897451877594 -1.119650483131409 -0.2331991493701935 -0.566897451877594 -1.119650483131409 -0.2331991493701935 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.555044412612915 -1.123155951499939 -0.1787916719913483 -0.555044412612915 -1.123155951499939 -0.1787916719913483 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5653523802757263 -1.118939995765686 -0.1814211159944534 -0.5653523802757263 -1.118939995765686 -0.1814211159944534 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5742090940475464 -1.131942391395569 -0.235003262758255 -0.5742090940475464 -1.131942391395569 -0.235003262758255 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.5443065166473389 -1.115089893341065 -0.1774336248636246 -0.5443065166473389 -1.115089893341065 -0.1774336248636246 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5519604086875916 -1.108938336372376 -0.1803582608699799 -0.5519604086875916 -1.108938336372376 -0.1803582608699799 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.575387716293335 -1.145042896270752 -0.2375518679618835 -0.575387716293335 -1.145042896270752 -0.2375518679618835 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5303224325180054 -1.109560012817383 -0.1764832884073257 -0.5303224325180054 -1.109560012817383 -0.1764832884073257 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5348636507987976 -1.10209047794342 -0.1797855794429779 -0.5348636507987976 -1.10209047794342 -0.1797855794429779 -0.55926513671875 -1.15441358089447 -0.2382635623216629 -0.55926513671875 -1.15441358089447 -0.2382635623216629 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5702131390571594 -1.157662510871887 -0.2408456802368164 -0.5702131390571594 -1.157662510871887 -0.2408456802368164 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5153597593307495 -1.099033117294312 -0.1795200258493424 -0.5153597593307495 -1.099033117294312 -0.1795200258493424 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5144603252410889 -1.107124924659729 -0.175779864192009 -0.5144603252410889 -1.107124924659729 -0.175779864192009 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.5507266521453857 -1.163246393203735 -0.2419756203889847 -0.5507266521453857 -1.163246393203735 -0.2419756203889847 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5595179796218872 -1.168561935424805 -0.2448366731405258 -0.5595179796218872 -1.168561935424805 -0.2448366731405258 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4953970909118652 -1.100103139877319 -0.179336816072464 -0.4953970909118652 -1.100103139877319 -0.179336816072464 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4982820451259613 -1.108041167259216 -0.1751401573419571 -0.4982820451259613 -1.108041167259216 -0.1751401573419571 -0.537988007068634 -1.169810295104981 -0.246146023273468 -0.537988007068634 -1.169810295104981 -0.246146023273468 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.5440220236778259 -1.176667809486389 -0.2493667304515839 -0.5440220236778259 -1.176667809486389 -0.2493667304515839 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.4833570420742035 -1.112205982208252 -0.1743675768375397 -0.4833570420742035 -1.112205982208252 -0.1743675768375397 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.5228596329689026 -1.173466086387634 -0.2506005465984345 -0.5228596329689026 -1.173466086387634 -0.2506005465984345 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5253502726554871 -1.18116819858551 -0.2542564868927002 -0.5253502726554871 -1.18116819858551 -0.2542564868927002 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.4711625874042511 -1.119231224060059 -0.1732877790927887 -0.4711625874042511 -1.119231224060059 -0.1732877790927887 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.506633460521698 -1.173833608627319 -0.2551662623882294 -0.506633460521698 -1.173833608627319 -0.2551662623882294 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5053356289863586 -1.181609272956848 -0.2592801749706268 -0.5053356289863586 -1.181609272956848 -0.2592801749706268 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4628840982913971 -1.12843930721283 -0.1717492789030075 -0.4628840982913971 -1.12843930721283 -0.1717492789030075 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4904350936412811 -1.170987844467163 -0.2597062885761261 -0.4904350936412811 -1.170987844467163 -0.2597062885761261 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4854094684123993 -1.178057670593262 -0.2642672657966614 -0.4854094684123993 -1.178057670593262 -0.2642672657966614 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4763774275779724 -1.164982080459595 -0.2639687359333038 -0.4763774275779724 -1.164982080459595 -0.2639687359333038 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4681350886821747 -1.170600295066834 -0.2689074873924255 -0.4681350886821747 -1.170600295066834 -0.2689074873924255 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4661877453327179 -1.156416177749634 -0.2677432894706726 -0.4661877453327179 -1.156416177749634 -0.2677432894706726 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.4683403670787811 -1.160146474838257 -0.1634988784790039 -0.4683403670787811 -1.160146474838257 -0.1634988784790039 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4581113755702972 -1.164169549942017 -0.1686679422855377 -0.4581113755702972 -1.164169549942017 -0.1686679422855377 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4792343080043793 -1.168325185775757 -0.1596363484859467 -0.4792343080043793 -1.168325185775757 -0.1596363484859467 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.4715106785297394 -1.174239277839661 -0.1645141541957855 -0.4715106785297394 -1.174239277839661 -0.1645141541957855 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4933280944824219 -1.17392373085022 -0.1553713232278824 -0.4933280944824219 -1.17392373085022 -0.1553713232278824 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.4888685941696167 -1.181017160415649 -0.1599304676055908 -0.4888685941696167 -1.181017160415649 -0.1599304676055908 -0.4638693332672119 -1.125065088272095 -0.2756152749061585 -0.4638693332672119 -1.125065088272095 -0.2756152749061585 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.5084754824638367 -1.184240102767944 -0.1549115777015686 -0.5084754824638367 -1.184240102767944 -0.1549115777015686 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.509232759475708 -1.176416993141174 -0.1508626490831375 -0.509232759475708 -1.176416993141174 -0.1508626490831375 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.4727680087089539 -1.116126298904419 -0.2770816385746002 -0.4727680087089539 -1.116126298904419 -0.2770816385746002 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.5284159779548645 -1.183200836181641 -0.1498926430940628 -0.5284159779548645 -1.183200836181641 -0.1498926430940628 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5254004597663879 -1.175574421882629 -0.1463013589382172 -0.5254004597663879 -1.175574421882629 -0.1463013589382172 -0.485431581735611 -1.109466314315796 -0.278106302022934 -0.485431581735611 -1.109466314315796 -0.278106302022934 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.5402413010597229 -1.17147707939148 -0.1418762654066086 -0.5402413010597229 -1.17147707939148 -0.1418762654066086 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5467411875724793 -1.178147196769714 -0.1450409889221191 -0.5467411875724793 -1.178147196769714 -0.1450409889221191 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.5006225109100342 -1.105741024017334 -0.2788476049900055 -0.5006225109100342 -1.105741024017334 -0.2788476049900055 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4982722103595734 -1.097743153572083 -0.2829819023609161 -0.4982722103595734 -1.097743153572083 -0.2829819023609161 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.5523137450218201 -1.164548993110657 -0.137769028544426 -0.5523137450218201 -1.164548993110657 -0.137769028544426 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5616535544395447 -1.169592380523682 -0.1405776739120483 -0.5616535544395447 -1.169592380523682 -0.1405776739120483 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5168607831001282 -1.10530686378479 -0.2794858813285828 -0.5168607831001282 -1.10530686378479 -0.2794858813285828 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5182973146438599 -1.097256898880005 -0.2831613123416901 -0.5182973146438599 -1.097256898880005 -0.2831613123416901 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5604264736175537 -1.155444264411926 -0.134123295545578 -0.5604264736175537 -1.155444264411926 -0.134123295545578 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.5325407385826111 -1.108209729194641 -0.2802126407623291 -0.5325407385826111 -1.108209729194641 -0.2802126407623291 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5376310348510742 -1.100880861282349 -0.283452033996582 -0.5376310348510742 -1.100880861282349 -0.283452033996582 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5758856534957886 -1.145607948303223 -0.1334896087646484 -0.5758856534957886 -1.145607948303223 -0.1334896087646484 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5461440086364746 -1.114132165908814 -0.2812126278877258 -0.5461440086364746 -1.114132165908814 -0.2812126278877258 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5543799996376038 -1.108233690261841 -0.284079521894455 -0.5543799996376038 -1.108233690261841 -0.284079521894455 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5738096833229065 -1.132545471191406 -0.1310487687587738 -0.5738096833229065 -1.132545471191406 -0.1310487687587738 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.5620707869529724 -1.134551882743835 -0.1285762786865234 -0.5620707869529724 -1.134551882743835 -0.1285762786865234 -0.5562236309051514 -1.122508764266968 -0.2826361358165741 -0.5562236309051514 -1.122508764266968 -0.2826361358165741 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5669103860855103 -1.118594884872437 -0.2852396965026856 -0.5669103860855103 -1.118594884872437 -0.2852396965026856 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.555444061756134 -1.124776363372803 -0.1267072409391403 -0.555444061756134 -1.124776363372803 -0.1267072409391403 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5656728148460388 -1.120481729507446 -0.1293461471796036 -0.5656728148460388 -1.120481729507446 -0.1293461471796036 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5739870071411133 -1.130938291549683 -0.2870706021785736 -0.5739870071411133 -1.130938291549683 -0.2870706021785736 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5445551872253418 -1.116797208786011 -0.1253669559955597 -0.5445551872253418 -1.116797208786011 -0.1253669559955597 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5522736310958862 -1.110593795776367 -0.1282949596643448 -0.5522736310958862 -1.110593795776367 -0.1282949596643448 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.57492595911026 -1.144049525260925 -0.2896494567394257 -0.57492595911026 -1.144049525260925 -0.2896494567394257 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5304718613624573 -1.111389398574829 -0.1244296282529831 -0.5304718613624573 -1.111389398574829 -0.1244296282529831 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5349233746528626 -1.103869080543518 -0.1277434676885605 -0.5349233746528626 -1.103869080543518 -0.1277434676885605 -0.5586347579956055 -1.153280735015869 -0.2903818190097809 -0.5586347579956055 -1.153280735015869 -0.2903818190097809 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5153201818466187 -1.100982189178467 -0.1274901926517487 -0.5153201818466187 -1.100982189178467 -0.1274901926517487 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.514570415019989 -1.10908055305481 -0.1237329840660095 -0.514570415019989 -1.10908055305481 -0.1237329840660095 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5497334003448486 -1.162050008773804 -0.294120192527771 -0.5497334003448486 -1.162050008773804 -0.294120192527771 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5586177706718445 -1.167435169219971 -0.2969862818717957 -0.5586177706718445 -1.167435169219971 -0.2969862818717957 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4953792691230774 -1.102204203605652 -0.1273037791252136 -0.4953792691230774 -1.102204203605652 -0.1273037791252136 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4984057247638702 -1.110114693641663 -0.1230899542570114 -0.4984057247638702 -1.110114693641663 -0.1230899542570114 -0.5370596647262573 -1.168520212173462 -0.2982980012893677 -0.5370596647262573 -1.168520212173462 -0.2982980012893677 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5431241989135742 -1.17541229724884 -0.301532506942749 -0.5431241989135742 -1.17541229724884 -0.301532506942749 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.4835685193538666 -1.114396214485169 -0.1223111301660538 -0.4835685193538666 -1.114396214485169 -0.1223111301660538 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.5218650698661804 -1.17204761505127 -0.3027612566947937 -0.5218650698661804 -1.17204761505127 -0.3027612566947937 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5242103338241577 -1.179760098457336 -0.306433379650116 -0.5242103338241577 -1.179760098457336 -0.306433379650116 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.4717373251914978 -1.121699452400208 -0.1211463361978531 -0.4717373251914978 -1.121699452400208 -0.1211463361978531 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.4644741714000702 -1.131386756896973 -0.1194473057985306 -0.4644741714000702 -1.131386756896973 -0.1194473057985306 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4642059803009033 -1.152724027633667 -0.1144214868545532 -0.4642059803009033 -1.152724027633667 -0.1144214868545532 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4714657664299011 -1.162484645843506 -0.1110089421272278 -0.4714657664299011 -1.162484645843506 -0.1110089421272278 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4615163803100586 -1.166784763336182 -0.1161440908908844 -0.4615163803100586 -1.166784763336182 -0.1161440908908844 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4828593134880066 -1.170353889465332 -0.1070819646120071 -0.4828593134880066 -1.170353889465332 -0.1070819646120071 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4755431711673737 -1.176489114761353 -0.1119127124547958 -0.4755431711673737 -1.176489114761353 -0.1119127124547958 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4972856640815735 -1.175560474395752 -0.1027733832597733 -0.4972856640815735 -1.175560474395752 -0.1027733832597733 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4933141171932221 -1.182911038398743 -0.1072084903717041 -0.4933141171932221 -1.182911038398743 -0.1072084903717041 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.5130786299705505 -1.185441017150879 -0.102233350276947 -0.5130786299705505 -1.185441017150879 -0.102233350276947 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.5133234262466431 -1.177604675292969 -0.09824811667203903 -0.5133234262466431 -1.177604675292969 -0.09824811667203903 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5328704714775085 -1.183813214302063 -0.09727362543344498 -0.5328704714775085 -1.183813214302063 -0.09727362543344498 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5293971300125122 -1.176306962966919 -0.09369296580553055 -0.5293971300125122 -1.176306962966919 -0.09369296580553055 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5439476370811462 -1.171802759170532 -0.08930191397666931 -0.5439476370811462 -1.171802759170532 -0.08930191397666931 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5508751273155212 -1.178285956382752 -0.0924120768904686 -0.5508751273155212 -1.178285956382752 -0.0924120768904686 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5555424094200134 -1.164524674415588 -0.08524921536445618 -0.5555424094200134 -1.164524674415588 -0.08524921536445618 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5652047991752625 -1.169313788414002 -0.08801811188459396 -0.5652047991752625 -1.169313788414002 -0.08801811188459396 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.5630452036857605 -1.155208110809326 -0.08167614042758942 -0.5630452036857605 -1.155208110809326 -0.08167614042758942 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5778428316116333 -1.144819259643555 -0.08111421018838882 -0.5778428316116333 -1.144819259643555 -0.08111421018838882 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.574921190738678 -1.131919503211975 -0.0787806510925293 -0.574921190738678 -1.131919503211975 -0.0787806510925293 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5631065368652344 -1.134244561195374 -0.076307512819767 -0.5631065368652344 -1.134244561195374 -0.076307512819767 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5560707449913025 -1.124674439430237 -0.07450312376022339 -0.5560707449913025 -1.124674439430237 -0.07450312376022339 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5660110712051392 -1.12008547782898 -0.07717347890138626 -0.5660110712051392 -1.12008547782898 -0.07717347890138626 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5446727871894836 -1.116996884346008 -0.07322388887405396 -0.5446727871894836 -1.116996884346008 -0.07322388887405396 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5519850254058838 -1.110580444335938 -0.0762002095580101 -0.5519850254058838 -1.110580444335938 -0.0762002095580101 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.530258059501648 -1.111981153488159 -0.07233035564422607 -0.530258059501648 -1.111981153488159 -0.07233035564422607 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.534221887588501 -1.104349851608276 -0.07570070773363113 -0.534221887588501 -1.104349851608276 -0.07570070773363113 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5144584774971008 -1.102004647254944 -0.07547114044427872 -0.5144584774971008 -1.102004647254944 -0.07547114044427872 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.514224648475647 -1.110127329826355 -0.07165177166461945 -0.514224648475647 -1.110127329826355 -0.07165177166461945 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5143094658851624 -1.106828689575195 -0.07877529412508011</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1518\" source=\"#ID1699\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1696\">\r\n                    <float_array count=\"4554\" id=\"ID1700\">-0.535310170416145 0.6828597286651628 0.4971374180409053 -0.711679610756167 0.701944011990737 0.02804880860747333 -0.7372431242803319 0.3797272314562333 0.5588200116244577 0.7372431242803319 -0.3797272314562333 -0.5588200116244577 0.711679610756167 -0.701944011990737 -0.02804880860747333 0.535310170416145 -0.6828597286651628 -0.4971374180409053 -0.729385409062589 0.4062554931621462 0.5504120268691277 0.729385409062589 -0.4062554931621462 -0.5504120268691277 -0.855130798811114 0.1136943568170223 -0.5057913701840213 -0.8413435891190259 0.1893640378826544 -0.5062432480587691 0.8413435891190259 -0.1893640378826544 0.5062432480587691 0.855130798811114 -0.1136943568170223 0.5057913701840213 -0.3217641206506636 0.8321982925179576 0.4515682147717007 0.3217641206506636 -0.8321982925179576 -0.4515682147717007 0.379993968652636 -0.01452187984957496 0.9248749638698487 0.3792356722588351 -0.05515184004802218 0.9236550110434667 0.3750217319175143 0.09079787801754481 0.9225586409205104 -0.3750217319175143 -0.09079787801754481 -0.9225586409205104 -0.3792356722588351 0.05515184004802218 -0.9236550110434667 -0.379993968652636 0.01452187984957496 -0.9248749638698487 -0.81891872323098 -0.02916354235750145 0.5731680491259991 0.81891872323098 0.02916354235750145 -0.5731680491259991 -0.8259819640337442 -0.2402927006267335 -0.5099149077213467 0.8259819640337442 0.2402927006267335 0.5099149077213467 -0.7524074740264602 0.4659136678491019 -0.465625866056127 0.7524074740264602 -0.4659136678491019 0.465625866056127 0.3666695855979613 -0.1470453642187064 0.9186572134693155 0.3567388083380884 -0.1797184269164603 0.9167544434864733 -0.3567388083380884 0.1797184269164603 -0.9167544434864733 -0.3666695855979613 0.1470453642187064 -0.9186572134693155 -0.4686122420705575 0.8829390577970164 0.02865635702809793 0.4686122420705575 -0.8829390577970164 -0.02865635702809793 0.362818980110611 0.1115732442145029 0.9251560943143308 -0.362818980110611 -0.1115732442145029 -0.9251560943143308 -0.8229435868585475 0.02579388750379018 0.567537248306955 0.8229435868585475 -0.02579388750379018 -0.567537248306955 -0.8318735357222543 -0.2056588359136707 -0.5154520964896634 0.8318735357222543 0.2056588359136707 0.5154520964896634 0.3131079370299137 -0.1234465688639044 -0.9416604294567128 0.2545174903010224 -0.3210223259692432 -0.9122310635799277 0.2994850388200162 -0.1347916098286615 -0.9445315947297746 -0.2994850388200162 0.1347916098286615 0.9445315947297746 -0.2545174903010224 0.3210223259692432 0.9122310635799277 -0.3131079370299137 0.1234465688639044 0.9416604294567128 0.1523944153111659 -0.4664167061013169 -0.8713388539779263 0.2471519929915358 -0.2985266892247367 -0.9218447310587772 -0.2471519929915358 0.2985266892247367 0.9218447310587772 -0.1523944153111659 0.4664167061013169 0.8713388539779263 0.3282817590528282 -0.2624482480758333 0.9073874606556488 -0.3282817590528282 0.2624482480758333 -0.9073874606556488 -0.1228561251570979 0.8950510040663684 0.4287074441051489 0.1228561251570979 -0.8950510040663684 -0.4287074441051489 0.5589975536955726 -0.6498570818411518 -0.5149830173348129 0.7112410577589947 -0.7025013268705942 -0.02506079613501234 0.9360046751277166 -0.3517618957081072 -0.01260225642083865 -0.9360046751277166 0.3517618957081072 0.01260225642083865 -0.7112410577589947 0.7025013268705942 0.02506079613501234 -0.5589975536955726 0.6498570818411518 0.5149830173348129 0.3329806907099038 0.2202433885859086 0.9168515198212587 -0.3329806907099038 -0.2202433885859086 -0.9168515198212587 0.328949659917621 -0.8033618405725865 -0.4963888338308061 0.4661076996959741 -0.8841508505218183 -0.03195130366155524 -0.4661076996959741 0.8841508505218183 0.03195130366155524 -0.328949659917621 0.8033618405725865 0.4963888338308061 -0.8306623845255892 -0.5565875870647995 0.0145003744657297 0.8306623845255892 0.5565875870647995 -0.0145003744657297 -0.6945545646332318 -0.5290651887906086 -0.4875284430236858 0.6945545646332318 0.5290651887906086 0.4875284430236858 0.3139158622216069 0.05128541750858253 -0.948064679964735 -0.3139158622216069 -0.05128541750858253 0.948064679964735 -0.5643062696415467 0.7140844036848697 -0.4142968723720538 0.5643062696415467 -0.7140844036848697 0.4142968723720538 0.1306461037378148 -0.8661971870146993 -0.4823214994025772 0.2464364274691459 -0.9684731079097251 -0.03645444378840799 -0.2464364274691459 0.9684731079097251 0.03645444378840799 -0.1306461037378148 0.8661971870146993 0.4823214994025772 0.3138505278316415 -0.2841790770731234 0.9059470725896009 -0.3138505278316415 0.2841790770731234 -0.9059470725896009 -0.2540861679460684 0.9666121345141174 0.03318434372628529 0.2540861679460684 -0.9666121345141174 -0.03318434372628529 0.9597608241675195 -0.2806503197590552 -0.009724114994385009 -0.9597608241675195 0.2806503197590552 0.009724114994385009 0.3220258347742228 0.214498438267411 0.9221115885394817 -0.3220258347742228 -0.214498438267411 -0.9221115885394817 -0.7616207824844075 -0.3651471048914312 0.5353516372229054 0.7616207824844075 0.3651471048914312 -0.5353516372229054 0.3167748269163652 0.09263797783393953 -0.9439660555840689 -0.3167748269163652 -0.09263797783393953 0.9439660555840689 0.9848243133712018 0.1734566137781367 0.005820217312395853 0.847433960872483 0.5305646473937475 0.01889012694302194 0.8283273280770336 0.5598559803948217 0.02085950087886269 -0.8283273280770336 -0.5598559803948217 -0.02085950087886269 -0.847433960872483 -0.5305646473937475 -0.01889012694302194 -0.9848243133712018 -0.1734566137781367 -0.005820217312395853 0.99311480872505 0.117099537706675 0.00326725571241982 -0.99311480872505 -0.117099537706675 -0.00326725571241982 0.03937472706342653 -0.5380336305709434 -0.8420032323235643 -0.03937472706342653 0.5380336305709434 0.8420032323235643 -0.06288384653166469 -0.8760148156605907 -0.478166984000907 0.06288384653166469 0.8760148156605907 0.478166984000907 0.257077063885439 -0.3475015842572659 0.9017505376559153 -0.257077063885439 0.3475015842572659 -0.9017505376559153 0.07303455185892338 0.9060032613570995 0.4169221086067103 -0.07303455185892338 -0.9060032613570995 -0.4169221086067103 0.2700156883626287 0.3209112866746965 0.9078036539488298 -0.2700156883626287 -0.3209112866746965 -0.9078036539488298 -0.07035077711726034 -0.5595903559214819 -0.8257780583901869 0.07035077711726034 0.5595903559214819 0.8257780583901869 -0.5872649289636108 -0.8093931705807556 -0.00161202561925844 0.5872649289636108 0.8093931705807556 0.00161202561925844 -0.509882051398594 -0.7296644481425849 -0.4556424988720199 0.509882051398594 0.7296644481425849 0.4556424988720199 0.2828710356509407 0.2426484055828317 -0.9279578268746236 -0.2828710356509407 -0.2426484055828317 0.9279578268746236 0.6057325087479234 0.7951282343225092 0.02931243471831879 -0.6057325087479234 -0.7951282343225092 -0.02931243471831879 -0.371145693979263 0.8484694174731969 -0.3772936806432688 0.371145693979263 -0.8484694174731969 0.3772936806432688 -0.1787530742583322 -0.5392198561948459 -0.8229758715347643 0.1787530742583322 0.5392198561948459 0.8229758715347643 0.03438135610527487 -0.9987520891903908 -0.03622411752123286 -0.03438135610527487 0.9987520891903908 0.03622411752123286 0.2512244040277587 -0.3569957493692131 0.8996890205805623 -0.2512244040277587 0.3569957493692131 -0.8996890205805623 -0.04872205898106887 0.9982765115858446 0.0327134129164507 0.04872205898106887 -0.9982765115858446 -0.0327134129164507 0.2698800213758354 0.2961674361769304 0.9162148349653386 -0.2698800213758354 -0.2961674361769304 -0.9162148349653386 -0.5816032194955555 -0.6636002251380012 0.4705023233409152 0.5816032194955555 0.6636002251380012 -0.4705023233409152 0.2686367963209743 0.288060300556891 -0.9191602335313885 -0.2686367963209743 -0.288060300556891 0.9191602335313885 0.5932575987977159 0.8044689158088678 0.02958352524756113 -0.5932575987977159 -0.8044689158088678 -0.02958352524756113 0.1919079033946834 0.3816786325888079 0.9041530722393164 0.2021851966061355 0.3530580894870337 0.9134939144411987 -0.2021851966061355 -0.3530580894870337 -0.9134939144411987 -0.1919079033946834 -0.3816786325888079 -0.9041530722393164 -0.2823820210451418 -0.4806475230958568 -0.8302038019259361 0.2823820210451418 0.4806475230958568 0.8302038019259361 -0.2505474052630797 -0.8378549079901313 -0.4850001555389304 0.2505474052630797 0.8378549079901313 0.4850001555389304 0.1747230772131435 -0.3953057429770431 0.9017789173952439 -0.1747230772131435 0.3953057429770431 -0.9017789173952439 0.26978728423016 0.8647902119375572 0.4235005438068643 -0.26978728423016 -0.8647902119375572 -0.4235005438068643 -0.1692684314459983 0.9176875552732279 -0.359440883891159 0.1692684314459983 -0.9176875552732279 0.359440883891159 -0.3502329098367625 -0.9365294321543141 -0.01579656848787955 0.3502329098367625 0.9365294321543141 0.01579656848787955 -0.3115226959250829 -0.8473851427508421 -0.429990732189315 0.3115226959250829 0.8473851427508421 0.429990732189315 0.2053626087379487 0.4066091744468938 -0.8902219825346709 -0.2053626087379487 -0.4066091744468938 0.8902219825346709 0.3625395537087672 0.9313536382647069 0.03384482955698954 -0.3625395537087672 -0.9313536382647069 -0.03384482955698954 0.1088163998042708 0.4031873021297915 0.9086247798376056 -0.1088163998042708 -0.4031873021297915 -0.9086247798376056 0.03197152740742636 0.9318883559366843 -0.3613335211475126 0.1550225723017221 0.9873709613234915 0.03265864069556018 -0.1550225723017221 -0.9873709613234915 -0.03265864069556018 -0.03197152740742636 -0.9318883559366843 0.3613335211475126 -0.1733353671567152 -0.9842555908762638 -0.03458008561966801 0.1733353671567152 0.9842555908762638 0.03458008561966801 0.1804061394791801 -0.4056248164437825 0.8960592241158876 -0.1804061394791801 0.4056248164437825 -0.8960592241158876 -0.3631565580660195 -0.8364706749585888 0.4104072663440117 0.3631565580660195 0.8364706749585888 -0.4104072663440117 0.1858046722706848 0.4347309710258129 -0.8811842069586456 -0.1858046722706848 -0.4347309710258129 0.8811842069586456 0.3566880885534043 0.9336089901440405 0.03388009749607839 -0.3566880885534043 -0.9336089901440405 -0.03388009749607839 0.1232571526515191 0.3822050703645238 0.9158203745865722 -0.1232571526515191 -0.3822050703645238 -0.9158203745865722 0.3718249345779886 0.9278015722570135 0.03050345133731713 -0.3718249345779886 -0.9278015722570135 -0.03050345133731713 -0.3769218826360062 -0.3789209326972639 -0.845191588430673 0.3769218826360062 0.3789209326972639 0.845191588430673 -0.4429394053228697 -0.7517457624653662 -0.4885519336033661 0.4429394053228697 0.7517457624653662 0.4885519336033661 0.08866515045489541 -0.4048987009543537 0.9100524891786669 -0.08866515045489541 0.4048987009543537 -0.9100524891786669 0.4722008782443767 0.7597224242219586 0.447043810738444 -0.4722008782443767 -0.7597224242219586 -0.447043810738444 -0.1349743997069032 -0.990475062389603 -0.0272224577889874 0.1349743997069032 0.990475062389603 0.0272224577889874 -0.1148745169857842 -0.9010766916345416 -0.4181681971889206 0.1148745169857842 0.9010766916345416 0.4181681971889206 0.1350323407016534 0.878766484746587 -0.4577507315676939 -0.1350323407016534 -0.878766484746587 0.4577507315676939 0.1391599109902589 0.9896225055955918 0.03580245231665115 -0.1391599109902589 -0.9896225055955918 -0.03580245231665115 0.02951347803965053 0.3883416053264751 0.9210427526377151 -0.02951347803965053 -0.3883416053264751 -0.9210427526377151 0.2379697063315265 0.8911006352533213 -0.3864066209572686 -0.2379697063315265 -0.8911006352533213 0.3864066209572686 -0.4018422953209712 -0.915469856946197 -0.02092153708700449 0.4018422953209712 0.915469856946197 0.02092153708700449 0.1000694492240476 -0.4248366424042973 0.8997221418875046 -0.1000694492240476 0.4248366424042973 -0.8997221418875046 -0.149258376407865 -0.916465922743119 0.371230588075244 0.149258376407865 0.916465922743119 -0.371230588075244 0.08634970589385892 0.5298551962191168 -0.8436807449098535 -0.08634970589385892 -0.5298551962191168 0.8436807449098535 0.03901594064805804 0.3769126891822767 0.9254267021805303 -0.03901594064805804 -0.3769126891822767 -0.9254267021805303 0.6676355058203269 0.5690937041910978 0.4799949866593313 -0.6676355058203269 -0.5690937041910978 -0.4799949866593313 0.6097847373579887 0.7922549558333398 0.02224093169725167 -0.6097847373579887 -0.7922549558333398 -0.02224093169725167 -0.4546059078543376 -0.2369869510319531 -0.8585864275566627 0.4546059078543376 0.2369869510319531 0.8585864275566627 -0.6358582712225318 -0.5907494832679082 -0.4966883398436012 0.6358582712225318 0.5907494832679082 0.4966883398436012 0.007498331790333134 -0.3777105669550434 0.9258933538107194 -0.007498331790333134 0.3777105669550434 -0.9258933538107194 0.06864084590568426 -0.9970179924571337 -0.0352641034211662 -0.06864084590568426 0.9970179924571337 0.0352641034211662 0.08052190282451008 -0.9028331427755107 -0.4223843504103985 -0.08052190282451008 0.9028331427755107 0.4223843504103985 -0.05898967825784544 0.8988150489367441 -0.4343405641473913 0.05898967825784544 -0.8988150489367441 0.4343405641473913 -0.07260509816947629 0.9967060792391365 0.03613158351842422 0.07260509816947629 -0.9967060792391365 -0.03613158351842422 -0.04181228090555243 0.3419317653722825 0.9387941206648397 0.04181228090555243 -0.3419317653722825 -0.9387941206648397 0.01504041957043186 -0.4057949568608777 0.9138403792596516 -0.01504041957043186 0.4057949568608777 -0.9138403792596516 0.4517798446100684 0.7787948471666188 -0.4351707228557833 -0.4517798446100684 -0.7787948471666188 0.4351707228557833 -0.6412771318334352 -0.7670575183231125 -0.01965715573197376 0.6412771318334352 0.7670575183231125 0.01965715573197376 0.05436673979736359 -0.9322885250947756 0.3576064367155796 -0.05436673979736359 0.9322885250947756 -0.3576064367155796 -0.0212071890036439 0.5780475407181148 -0.8157274641718907 0.0212071890036439 -0.5780475407181148 0.8157274641718907 -0.04351368272639628 0.3322625189290334 0.9421826669656582 0.04351368272639628 -0.3322625189290334 -0.9421826669656582 -0.06237698712821529 -0.3162498352456724 0.9466230259104684 0.06237698712821529 0.3162498352456724 -0.9466230259104684 0.8151747555481969 0.2812969192611448 0.5063221910316851 -0.8151747555481969 -0.2812969192611448 -0.5063221910316851 0.8495200192304718 0.5275379171118494 0.004413947887178284 -0.8495200192304718 -0.5275379171118494 -0.004413947887178284 -0.4986760678817546 -0.0546023815812284 -0.8650669102720608 0.4986760678817546 0.0546023815812284 0.8650669102720608 -0.8439557844500474 -0.5361032111239543 -0.01822034346245837 0.8439557844500474 0.5361032111239543 0.01822034346245837 0.2769606513134717 -0.9598182468762322 -0.04518551302633956 -0.2769606513134717 0.9598182468762322 0.04518551302633956 0.2862523820680035 -0.8449411142000919 -0.4518120043720634 -0.2862523820680035 0.8449411142000919 0.4518120043720634 -0.2515239683296016 0.8702997792149998 -0.4234548236282732 0.2515239683296016 -0.8702997792149998 0.4234548236282732 -0.2850091085724672 0.9578491851140157 0.03598258755486267 0.2850091085724672 -0.9578491851140157 -0.03598258755486267 -0.1022652138103845 0.2645297637071581 0.9589399512781558 0.1022652138103845 -0.2645297637071581 -0.9589399512781558 -0.8727550771939916 -0.4877890895991029 -0.01898365876716792 0.8727550771939916 0.4877890895991029 0.01898365876716792 -0.06496053448506671 -0.3441482908946016 0.9366654060195345 0.06496053448506671 0.3441482908946016 -0.9366654060195345 0.6576786834479146 0.5643363169938016 -0.4989822348141159 -0.6576786834479146 -0.5643363169938016 0.4989822348141159 -0.4964548012322866 -0.01405178624130724 -0.8679488335361937 0.4964548012322866 0.01405178624130724 0.8679488335361937 0.2544372511161985 -0.8958142249090459 0.3643879247382352 -0.2544372511161985 0.8958142249090459 -0.3643879247382352 -0.1346599506753236 0.5836962910113674 -0.8007280047205121 0.1346599506753236 -0.5836962910113674 0.8007280047205121 -0.1124404606428646 0.2448652957053648 0.9630151243721693 0.1124404606428646 -0.2448652957053648 -0.9630151243721693 -0.8819596162681433 0.007606609768102142 -0.4712635937137361 0.8819596162681433 -0.007606609768102142 0.4712635937137361 -0.1171297377672967 -0.2299390039661313 0.9661307773721048 0.1171297377672967 0.2299390039661313 -0.9661307773721048 0.8597941689935817 -0.06610076241144321 0.5063444244516397 -0.8597941689935817 0.06610076241144321 -0.5063444244516397 0.8025443301909858 0.1986012381867819 -0.5625656817376785 -0.8025443301909858 -0.1986012381867819 0.5625656817376785 -0.4943665989696874 0.1452993819705873 -0.8570237776293663 0.4943665989696874 -0.1452993819705873 0.8570237776293663 0.5011082647832796 -0.8640069618754204 -0.04881062176101025 -0.5011082647832796 0.8640069618754204 0.04881062176101025 0.495393292699206 -0.7179196114702798 -0.4890571715198556 -0.495393292699206 0.7179196114702798 0.4890571715198556 -0.4523459423830585 0.7826873274957782 -0.427532099130696 0.4523459423830585 -0.7826873274957782 0.427532099130696 -0.5160344004894462 0.8561607522170113 0.02640575457545195 0.5160344004894462 -0.8561607522170113 -0.02640575457545195 -0.1456700287183111 0.1553266991594604 0.9770638972254747 0.1456700287183111 -0.1553266991594604 -0.9770638972254747 -0.9975799967319756 -0.06943171943913534 -0.003658750600534279 0.9975799967319756 0.06943171943913534 0.003658750600534279 -0.1298938066383518 -0.2399502853702611 0.9620558505345356 0.1298938066383518 0.2399502853702611 -0.9620558505345356 0.8574527099986579 -0.024943073842547 0.5139578710198363 -0.8574527099986579 0.024943073842547 -0.5139578710198363 0.7991923633604373 0.2325909216970215 -0.5542499702214594 -0.7991923633604373 -0.2325909216970215 0.5542499702214594 0.4545425258572903 -0.8001119199105381 0.3914230547685552 -0.4545425258572903 0.8001119199105381 -0.3914230547685552 -0.2485621394074033 0.5432107119168934 -0.8019594661277815 0.2485621394074033 -0.5432107119168934 0.8019594661277815 -0.1547297701498987 0.1222919404111891 0.9803588014292652 0.1547297701498987 -0.1222919404111891 -0.9803588014292652 -0.4386221089531073 0.3279040177656268 -0.8367135714631907 0.4386221089531073 -0.3279040177656268 0.8367135714631907 -0.8139596649067716 0.369876750153207 -0.4479518429485005 0.8139596649067716 -0.369876750153207 0.4479518429485005 -0.1540747872951352 -0.1214426860447951 0.9805675060525839 0.1540747872951352 0.1214426860447951 -0.9805675060525839 0.7859819010892829 -0.3952252448442107 0.4754255535811157 -0.7859819010892829 0.3952252448442107 -0.4754255535811157 0.9306780161615121 -0.3631421276095757 -0.04434214010241968 -0.9306780161615121 0.3631421276095757 0.04434214010241968 0.7418342663243822 -0.6686855396130648 -0.05041399031370274 -0.7418342663243822 0.6686855396130648 0.05041399031370274 0.6931728046754269 -0.4794465154382414 -0.5381844495082803 -0.6931728046754269 0.4794465154382414 0.5381844495082803 -0.6572266751115354 0.615817033732647 -0.4345370852833627 0.6572266751115354 -0.615817033732647 0.4345370852833627 -0.7519579582759212 0.6588368316709177 0.02220941735694816 0.7519579582759212 -0.6588368316709177 -0.02220941735694816 -0.1709405722559768 0.02372283740880488 0.9849957095043992 0.1709405722559768 -0.02372283740880488 -0.9849957095043992 0.8070332257881647 -0.1635417914939574 -0.5674076620110943 -0.8070332257881647 0.1635417914939574 0.5674076620110943 -0.9307959225689865 0.3653144447802395 0.01281822779696078 0.9307959225689865 -0.3653144447802395 -0.01281822779696078 -0.1665224790155269 -0.1042049381458482 0.98051598398422 0.1665224790155269 0.1042049381458482 -0.98051598398422 0.6462131120801343 -0.6271220006901789 0.4348868933712018 -0.6462131120801343 0.6271220006901789 -0.4348868933712018 -0.356871619837412 0.4535533681326124 -0.8166590409774356 0.356871619837412 -0.4535533681326124 0.8166590409774356 -0.1683124202182102 -0.008542688178951144 0.9856966834066989 0.1683124202182102 0.008542688178951144 -0.9856966834066989 0.7170352095489575 -0.6951740874276534 -0.05092638251645233 -0.7170352095489575 0.6951740874276534 0.05092638251645233 -0.3464664709718055 0.4660313447269559 -0.8141104164818971 0.3464664709718055 -0.4660313447269559 0.8141104164818971 -0.6354976406288125 0.6397473796149413 -0.4322800469961907 0.6354976406288125 -0.6397473796149413 0.4322800469961907 -0.1685700138354227 0.005739948138891548 0.9856729698185338 0.1685700138354227 -0.005739948138891548 -0.9856729698185338 0.627961198733126 -0.649050529225108 0.4294160493021458 -0.627961198733126 0.649050529225108 -0.4294160493021458 0.797309948167892 -0.3587410006949399 0.4853882373656234 -0.797309948167892 0.3587410006949399 -0.4853882373656234 0.8133505745047901 -0.1225610302085998 -0.5687175369433712 -0.8133505745047901 0.1225610302085998 0.5687175369433712 -0.827728804209694 0.3350726078951755 -0.4501015153495001 0.827728804209694 -0.3350726078951755 0.4501015153495001 -0.9459935076998534 0.3239857232554233 0.01138132313871105 0.9459935076998534 -0.3239857232554233 -0.01138132313871105 -0.1642946471614618 -0.1191759077197101 0.9791855656275137 0.1642946471614618 0.1191759077197101 -0.9791855656275137 0.6747183980805227 -0.5099847396469173 -0.5335453576022561 -0.6747183980805227 0.5099847396469173 0.5335453576022561 -0.725972841726008 0.6873609092027893 0.022325178077218 0.725972841726008 -0.6873609092027893 -0.022325178077218 -0.1700291583770809 0.03942041603916416 0.9846502506478534 0.1700291583770809 -0.03942041603916416 -0.9846502506478534 0.7985683741119738 -0.3635551752882126 0.4797042697217896 -0.7985683741119738 0.3635551752882126 -0.4797042697217896 0.8005407714938573 -0.177249530910696 -0.5724657867226284 -0.8005407714938573 0.177249530910696 0.5724657867226284 -0.4462067143413283 0.3107408208180051 -0.839249492316837 0.4462067143413283 -0.3107408208180051 0.839249492316837 -0.1512006834129393 -0.1336474753351201 0.9794267229721725 0.1512006834129393 0.1336474753351201 -0.9794267229721725 0.433676410702461 -0.8129828071542766 0.3885662441229072 -0.433676410702461 0.8129828071542766 -0.3885662441229072 0.4768903302031552 -0.8776658114493595 -0.04773192193556719 -0.4768903302031552 0.8776658114493595 0.04773192193556719 -0.238012317776634 0.5527815444245369 -0.7986129855757533 0.238012317776634 -0.5527815444245369 0.7986129855757533 -0.4293197939239346 0.7959816418674625 -0.4267291182414073 0.4293197939239346 -0.7959816418674625 0.4267291182414073 -0.1533284582499095 0.138567601006442 0.9784116740115201 0.1533284582499095 -0.138567601006442 -0.9784116740115201 0.856906041284654 0.0155227088499625 0.515238859093355 -0.856906041284654 -0.0155227088499625 -0.515238859093355 0.7895060350991036 0.2718495608044064 -0.5502527027035348 -0.7895060350991036 -0.2718495608044064 0.5502527027035348 -0.8795828893751583 -0.03295106831366036 -0.4746031687793886 0.8795828893751583 0.03295106831366036 0.4746031687793886 -0.9931749293461942 -0.1165321844306382 -0.004879519444127158 0.9931749293461942 0.1165321844306382 0.004879519444127158 -0.1241386851449203 -0.252215880966428 0.9596753285558711 0.1241386851449203 0.252215880966428 -0.9596753285558711 -0.1440117039784415 0.1695726396981693 0.9749388437143227 0.1440117039784415 -0.1695726396981693 -0.9749388437143227 0.4731713745155489 -0.7368035674240903 -0.4829382500591563 -0.4731713745155489 0.7368035674240903 0.4829382500591563 -0.4914271999019824 0.8706180904945938 0.02287897943624781 0.4914271999019824 -0.8706180904945938 -0.02287897943624781 0.8609196727568225 -0.02973249428943746 0.5078713378835374 -0.8609196727568225 0.02973249428943746 -0.5078713378835374 0.7938149946100161 0.240672771386379 -0.5585108516810573 -0.7938149946100161 -0.240672771386379 0.5585108516810573 -0.4981315225321004 0.1224069535905647 -0.8584180356752349 0.4981315225321004 -0.1224069535905647 0.8584180356752349 -0.1121383259459405 -0.2398450308899771 0.9643128937287047 0.1121383259459405 0.2398450308899771 -0.9643128937287047 -0.1062966699288113 0.2553977220723043 0.9609750368882238 0.1062966699288113 -0.2553977220723043 -0.9609750368882238 0.2334715834460491 -0.9021087639137927 0.3628922674749679 -0.2334715834460491 0.9021087639137927 -0.3628922674749679 0.2546730969055133 -0.9661253549653743 -0.04175418788079063 -0.2546730969055133 0.9661253549653743 0.04175418788079063 -0.1226019453821983 0.5856224846958062 -0.8012584279788954 0.1226019453821983 -0.5856224846958062 0.8012584279788954 -0.2322335972147434 0.8745422537674141 -0.4257269109418759 0.2322335972147434 -0.8745422537674141 0.4257269109418759 0.8298769241635319 0.5578774476779886 0.008777477608551191 -0.8298769241635319 -0.5578774476779886 -0.008777477608551191 0.6381503195400743 0.5921063201550033 -0.4921120556371302 -0.6381503195400743 -0.5921063201550033 0.4921120556371302 -0.7845301195558947 -0.3705924622541761 -0.4971656850889858 0.7845301195558947 0.3705924622541761 0.4971656850889858 -0.8531044413202037 -0.5209828221013414 -0.02810180198964397 0.8531044413202037 0.5209828221013414 0.02810180198964397 -0.05742407169246319 -0.3531049708559187 0.9338197660935966 0.05742407169246319 0.3531049708559187 -0.9338197660935966 -0.264181886575063 0.9639045097863968 0.03310629576208342 0.264181886575063 -0.9639045097863968 -0.03310629576208342 -0.0961714147092337 0.2735265109821333 0.9570445688591338 0.0961714147092337 -0.2735265109821333 -0.9570445688591338 0.2628301722769759 -0.8574191658827258 -0.4424394585904674 -0.2628301722769759 0.8574191658827258 0.4424394585904674 0.805436444413751 0.3138416009291293 0.5027679221433841 -0.805436444413751 -0.3138416009291293 -0.5027679221433841 -0.5011848910180647 -0.0768321832181772 -0.861922572298196 0.5011848910180647 0.0768321832181772 0.861922572298196 -0.05593530965330448 -0.3240535581092801 0.9443836787083438 0.05593530965330448 0.3240535581092801 -0.9443836787083438 -0.03897239308958518 0.8991793280296998 -0.4358413571713087 0.03897239308958518 -0.8991793280296998 0.4358413571713087 -0.03525158766491567 0.3387304469134816 0.9402228511905546 0.03525158766491567 -0.3387304469134816 -0.9402228511905546 0.03378643596204006 -0.9335658899859859 0.3568097613570249 -0.03378643596204006 0.9335658899859859 -0.3568097613570249 0.04789021286171039 -0.9982553370951237 -0.03453707389401745 -0.04789021286171039 0.9982553370951237 0.03453707389401745 -0.009885358226968684 0.5750224134681391 -0.8180779325357707 0.009885358226968684 -0.5750224134681391 0.8180779325357707 0.5855044421088986 0.8103976357524733 0.02098142601324613 -0.5855044421088986 -0.8103976357524733 -0.02098142601324613 0.4340609032382765 0.7959713587299389 -0.4219250269438712 -0.4340609032382765 -0.7959713587299389 0.4219250269438712 -0.6153560448574253 -0.6092572074248711 -0.5001425729312331 0.6153560448574253 0.6092572074248711 0.5001425729312331 -0.6198630903292977 -0.7840993120202319 -0.03095186806659787 0.6198630903292977 0.7840993120202319 0.03095186806659787 0.02409656358769302 -0.4096282971439647 0.9119342157207393 -0.02409656358769302 0.4096282971439647 -0.9119342157207393 -0.05031979474142957 0.9980457114744417 0.03704964324600307 0.05031979474142957 -0.9980457114744417 -0.03704964324600307 -0.0348206751678781 0.3480614376028201 0.9368248268671744 0.0348206751678781 -0.3480614376028201 -0.9368248268671744 0.06078477015216938 -0.9051564198478542 -0.4207101939884068 -0.06078477015216938 0.9051564198478542 0.4207101939884068 0.6482297321278429 0.6028398979148678 0.4651690787955032 -0.6482297321278429 -0.6028398979148678 -0.4651690787955032 -0.4478966020177788 -0.2541415579067543 -0.8572051693997507 0.4478966020177788 0.2541415579067543 0.8572051693997507 0.01559672925442231 -0.380983862705341 0.9244501275864925 -0.01559672925442231 0.380983862705341 -0.9244501275864925 0.09714985020961668 0.522333864264374 -0.8471890230915977 -0.09714985020961668 -0.522333864264374 0.8471890230915977 0.1553408786736751 0.8736838440230915 -0.4610268453202319 -0.1553408786736751 -0.8736838440230915 0.4610268453202319 0.04774165709909886 0.3792289904447429 0.9240704015299337 -0.04774165709909886 -0.3792289904447429 -0.9240704015299337 -0.1710161198878743 -0.9112221572522233 0.3747367967935634 0.1710161198878743 0.9112221572522233 -0.3747367967935634 -0.1565556598465962 -0.9873325668951926 -0.02578231405725385 0.1565556598465962 0.9873325668951926 0.02578231405725385 0.3468654255841545 0.9373977055235857 0.0311435099730263 -0.3468654255841545 -0.9373977055235857 -0.0311435099730263 0.2151468099413452 0.8989038256627896 -0.3816854233277242 -0.2151468099413452 -0.8989038256627896 0.3816854233277242 -0.4229049650401514 -0.7599165361481899 -0.4936377706708892 0.4229049650401514 0.7599165361481899 0.4936377706708892 -0.3770508568913159 -0.9255392515129642 -0.03478139195526916 0.3770508568913159 0.9255392515129642 0.03478139195526916 0.1086182708157457 -0.4244487475750574 0.8989134173695276 -0.1086182708157457 0.4244487475750574 -0.8989134173695276 -0.1350343542808518 -0.8980551277568514 -0.4186438948242033 0.1350343542808518 0.8980551277568514 0.4186438948242033 0.1612143466838741 0.9862880320014714 0.03529663374821999 -0.1612143466838741 -0.9862880320014714 -0.03529663374821999 0.03730645428521182 0.3914503345569155 0.9194426920933921 -0.03730645428521182 -0.3914503345569155 -0.9194426920933921 0.4512939907351913 0.7735056125491248 0.4449975295227023 -0.4512939907351913 -0.7735056125491248 -0.4449975295227023 -0.3680144667309154 -0.3929169477632095 -0.8427227447014842 0.3680144667309154 0.3929169477632095 0.8427227447014842 0.09726149813952741 -0.4055986414267697 0.9088618943780256 -0.09726149813952741 0.4055986414267697 -0.9088618943780256 -0.3736623046740656 -0.9274521783534832 -0.01445472009568674 0.3736623046740656 0.9274521783534832 0.01445472009568674 0.1954486345942783 0.4220317646660174 -0.8852621198538428 -0.1954486345942783 -0.4220317646660174 0.8852621198538428 0.3803994815951778 0.9242084766368134 0.03368866448496297 -0.3803994815951778 -0.9242084766368134 -0.03368866448496297 0.1318367886920812 0.3805656094993993 0.9153080781975599 -0.1318367886920812 -0.3805656094993993 -0.9153080781975599 -0.3857834882261922 -0.8237101252463507 0.4155390833347361 0.3857834882261922 0.8237101252463507 -0.4155390833347361 0.1338395089256006 0.9904472527131343 0.03318471701790733 -0.1338395089256006 -0.9904472527131343 -0.03318471701790733 0.01120160698955215 0.9329626622364952 -0.3597988255587321 -0.01120160698955215 -0.9329626622364952 0.3597988255587321 -0.2325309580868789 -0.8440969843494561 -0.4831455624792101 0.2325309580868789 0.8440969843494561 0.4831455624792101 -0.154527552306003 -0.9873161144596161 -0.03644345903837389 0.154527552306003 0.9873161144596161 0.03644345903837389 0.1883721494601096 -0.4022385583668752 0.8959464690876995 -0.1883721494601096 0.4022385583668752 -0.8959464690876995 -0.3323026476776037 -0.8385615661172768 -0.431728444948204 0.3323026476776037 0.8385615661172768 0.431728444948204 0.215248562815476 0.3916735621518621 -0.894572454816905 -0.215248562815476 -0.3916735621518621 0.894572454816905 0.3868280921821323 0.9215302862295679 0.03385201117189925 -0.3868280921821323 -0.9215302862295679 -0.03385201117189925 0.1173977769977951 0.4027091350504056 0.9077682052721003 -0.1173977769977951 -0.4027091350504056 -0.9077682052721003 0.2489458852328293 0.8717344856732384 0.4220248010646504 -0.2489458852328293 -0.8717344856732384 -0.4220248010646504 -0.2718556376875321 -0.4882131085991132 -0.8293024013286684 0.2718556376875321 0.4882131085991132 0.8293024013286684 0.1836613834871931 -0.3924336867930833 0.9012570652624913 -0.1836613834871931 0.3924336867930833 -0.9012570652624913 -0.6033355098507652 -0.6384923575383442 0.4778219039749477 0.6033355098507652 0.6384923575383442 -0.4778219039749477 -0.6131254961321928 -0.7899853147212744 0.0005731643582408101 0.6131254961321928 0.7899853147212744 -0.0005731643582408101 0.275362539101309 0.2694875496646566 -0.9227957155489069 -0.275362539101309 -0.2694875496646566 0.9227957155489069 0.6186506423816441 0.7851030912335202 0.02974086105596318 -0.6186506423816441 -0.7851030912335202 -0.02974086105596318 0.2101175513439924 0.3486731677630247 0.9133879989901894 -0.2101175513439924 -0.3486731677630247 -0.9133879989901894 -0.06461905806779944 0.997395885326813 0.03202850710809595 0.06461905806779944 -0.997395885326813 -0.03202850710809595 -0.1834497390466434 0.9148534576368063 -0.3597073036424178 0.1834497390466434 -0.9148534576368063 0.3597073036424178 -0.04706007671438661 -0.8766410006301814 -0.4788380782621098 0.04706007671438661 0.8766410006301814 0.4788380782621098 0.05240676047166495 -0.9979332119693068 -0.03718650165702653 -0.05240676047166495 0.9979332119693068 0.03718650165702653 0.2558861234443253 -0.3505181987180789 0.9009213529471198 -0.2558861234443253 0.3505181987180789 -0.9009213529471198 0.2006831002614205 0.3777160261579191 0.9039119961881992 -0.2006831002614205 -0.3777160261579191 -0.9039119961881992 -0.53050839092554 -0.713187852388419 -0.4581745675647977 0.53050839092554 0.713187852388419 0.4581745675647977 0.2881075812934133 0.2233228200054878 -0.9311932880267425 -0.2881075812934133 -0.2233228200054878 0.9311932880267425 0.6320216216874215 0.7743967147908979 0.02929842727291891 -0.6320216216874215 -0.7743967147908979 -0.02929842727291891 0.05525295018242418 0.9079180958221401 0.4154898828790391 -0.05525295018242418 -0.9079180958221401 -0.4154898828790391 -0.1693098597271242 -0.5435439754273672 -0.8221277991746753 0.1693098597271242 0.5435439754273672 0.8221277991746753 0.2624313659527194 -0.3401103022477795 0.9030253376672848 -0.2624313659527194 0.3401103022477795 -0.9030253376672848 0.2785082007361578 0.2831362367560196 0.9177510847492076 -0.2785082007361578 -0.2831362367560196 -0.9177510847492076 -0.779978121252102 -0.3127799279651076 0.5420358355590368 0.779978121252102 0.3127799279651076 -0.5420358355590368 -0.8613360645284098 -0.5077925879855756 0.0157121459267218 0.8613360645284098 0.5077925879855756 -0.0157121459267218 0.3203858618669948 0.06507575749340232 -0.9450492290364575 -0.3203858618669948 -0.06507575749340232 0.9450492290364575 0.8570000808160878 0.5149590853378663 0.01918337585533324 -0.8570000808160878 -0.5149590853378663 -0.01918337585533324 -0.2668584916686912 0.9632176658702873 0.03159546770830292 0.2668584916686912 -0.9632176658702873 -0.03159546770830292 -0.3848584408113122 0.8410886970001501 -0.3800707622468155 0.3848584408113122 -0.8410886970001501 0.3800707622468155 0.1463445884545457 -0.8636978191850746 -0.4822959035333138 -0.1463445884545457 0.8636978191850746 0.4822959035333138 0.2614864536151934 -0.9645813656025409 -0.03475088068073299 -0.2614864536151934 0.9645813656025409 0.03475088068073299 0.3128152317921457 -0.272750132100432 0.90980986815819 -0.3128152317921457 0.272750132100432 -0.90980986815819 0.8772517041359547 0.4797027255919508 0.01774098785910602 -0.8772517041359547 -0.4797027255919508 -0.01774098785910602 0.2801952750834338 0.3069638684701647 0.9095404286092786 -0.2801952750834338 -0.3069638684701647 -0.9095404286092786 -0.7175498325229612 -0.4930624735870243 -0.4919467806445282 0.7175498325229612 0.4930624735870243 0.4919467806445282 0.3153611958733363 0.02588977355127589 -0.948618487993357 -0.3153611958733363 -0.02588977355127589 0.948618487993357 -0.1392445525868265 0.8939663745427139 0.4259519641483658 0.1392445525868265 -0.8939663745427139 -0.4259519641483658 -0.06131327874475354 -0.5593307263178334 -0.8266739505066874 0.06131327874475354 0.5593307263178334 0.8266739505066874 0.3279961473473233 -0.2498327249204238 0.9110445306812115 -0.3279961473473233 0.2498327249204238 -0.9110445306812115 0.9954171290400191 0.09553601835509044 0.004196237669848525 -0.9954171290400191 -0.09553601835509044 -0.004196237669848525 0.331646199686615 0.1947660239000207 0.9230801667068806 -0.331646199686615 -0.1947660239000207 -0.9230801667068806 -0.8175661160704699 0.09712556361431309 0.5675845934713599 0.8175661160704699 -0.09712556361431309 -0.5675845934713599 -0.845898092456866 -0.133183130216802 -0.5164481300222606 0.845898092456866 0.133183130216802 0.5164481300222606 0.3083725906203965 -0.1573722168839604 -0.9381579455012324 -0.3083725906203965 0.1573722168839604 0.9381579455012324 -0.4989995426749803 0.866022516206001 0.03169318277464853 0.4989995426749803 -0.866022516206001 -0.03169318277464853 -0.5956907462458242 0.6858816290607149 -0.4179939302838174 0.5956907462458242 -0.6858816290607149 0.4179939302838174 0.3620907452817879 -0.7880871337618098 -0.4978041399791435 -0.3620907452817879 0.7880871337618098 0.4978041399791435 0.4980423443424801 -0.8665917528265352 -0.03118584895236354 -0.4980423443424801 0.8665917528265352 0.03118584895236354 0.3599700298658335 -0.1644817040127886 0.9183503398177847 -0.3599700298658335 0.1644817040127886 -0.9183503398177847 0.2943240018707259 -0.1612778925229903 -0.9419993754276824 -0.2943240018707259 0.1612778925229903 0.9419993754276824 0.9995125932000399 0.03116117905467866 0.001885988985655725 -0.9995125932000399 -0.03116117905467866 -0.001885988985655725 0.3431132187610625 0.1961239636348738 0.9185906106637333 -0.3431132187610625 -0.1961239636348738 -0.9185906106637333 -0.8174331647353583 0.04639253701091174 0.5741522042981528 0.8174331647353583 -0.04639253701091174 -0.5741522042981528 -0.8407693587693527 -0.1769326226913789 -0.5116656451063738 0.8407693587693527 0.1769326226913789 0.5116656451063738 -0.351344017464407 0.8170334422133354 0.4571802004647607 0.351344017464407 -0.8170334422133354 -0.4571802004647607 0.05308682866082147 -0.5294829636699153 -0.8466578882914042 -0.05308682866082147 0.5294829636699153 0.8466578882914042 0.3719130906702194 -0.1265632048515265 0.9195990475015922 -0.3719130906702194 0.1265632048515265 -0.9195990475015922 0.2430574879004985 -0.3409814292140196 -0.9081050173337133 -0.2430574879004985 0.3409814292140196 0.9081050173337133 0.9393255939314196 -0.3428193935498642 -0.01192862068678942 -0.9393255939314196 0.3428193935498642 0.01192862068678942 0.36716622020733 0.09385941434953689 0.9254076815526358 -0.36716622020733 -0.09385941434953689 -0.9254076815526358 -0.7106066404541951 0.4478795658527937 0.5426251901947745 0.7106066404541951 -0.4478795658527937 -0.5426251901947745 -0.8322407805009124 0.2410512179802989 -0.4992690593071502 0.8322407805009124 -0.2410512179802989 0.4992690593071502 -0.7492626143908922 0.6617306644805105 0.02679668565899822 0.7492626143908922 -0.6617306644805105 -0.02679668565899822 -0.7718117655767617 0.4268896522834806 -0.4712449716342559 0.7718117655767617 -0.4268896522834806 0.4712449716342559 0.1704561015336629 -0.4188039207007326 -0.8919349715397643 -0.1704561015336629 0.4188039207007326 0.8919349715397643 0.7457573191449481 -0.6658082115411176 -0.02335479364410316 -0.7457573191449481 0.6658082115411176 0.02335479364410316 0.3832945142782272 -0.03327922599264618 0.9230264397304924 -0.3832945142782272 0.03327922599264618 -0.9230264397304924 -0.8487072942267473 0.1690980125474086 -0.5011005796033666 0.8487072942267473 -0.1690980125474086 0.5011005796033666 0.2376184337326038 -0.3172723381324109 -0.9180826451940247 -0.2376184337326038 0.3172723381324109 0.9180826451940247 0.914282202159292 -0.4048044901428724 -0.01487882975655453 -0.914282202159292 0.4048044901428724 0.01487882975655453 0.3773336200634785 0.07297369323016359 0.9231978007264426 -0.3773336200634785 -0.07297369323016359 -0.9231978007264426 -0.716305029535777 0.4292096781431709 0.5501692074716518 0.716305029535777 -0.4292096781431709 -0.5501692074716518 -0.5635137014633063 0.6543319596569852 0.5042836452182177 0.5635137014633063 -0.6543319596569852 -0.5042836452182177 0.1654645754220075 -0.4499810960536757 -0.8775753457537122 -0.1654645754220075 0.4499810960536757 0.8775753457537122 0.7849717542644445 -0.6191505250492028 -0.02172492435652893 -0.7849717542644445 0.6191505250492028 0.02172492435652893 0.3812131251694482 0.001938054737225733 0.9244851524726496 -0.3812131251694482 -0.001938054737225733 -0.9244851524726496 -0.706263187382144 0.707442942431103 0.02677299671754465 0.706263187382144 -0.707442942431103 -0.02677299671754465 0.1468988514602051 -0.4682212046665963 -0.8713148862152154 -0.1468988514602051 0.4682212046665963 0.8713148862152154 0.5453443397134076 -0.6597043316735971 -0.5170974240059992 -0.5453443397134076 0.6597043316735971 0.5170974240059992 0.3801252730647183 -0.01953358577190619 0.9247287255213634 -0.3801252730647183 0.01953358577190619 -0.9247287255213634 -0.5268173003900145 0.6908686067102202 0.4951404853898096 0.5268173003900145 -0.6908686067102202 -0.4951404853898096 -0.7479084547054277 0.3581028584852424 0.5589233275905001 0.7479084547054277 -0.3581028584852424 -0.5589233275905001 -0.857463476648464 0.09220337702018273 -0.506216281326473 0.857463476648464 -0.09220337702018273 0.506216281326473 0.2503476186166397 -0.2899487472026017 -0.9237184602727281 -0.2503476186166397 0.2899487472026017 0.9237184602727281 0.9458611265874839 -0.3243741966978646 -0.01131855676626295 -0.9458611265874839 0.3243741966978646 0.01131855676626295 0.3740559177265709 0.1012911302250636 0.921858057051877 -0.3740559177265709 -0.1012911302250636 -0.921858057051877 -0.7456081572732178 0.479349187413293 -0.4629177381931395 0.7456081572732178 -0.479349187413293 0.4629177381931395 0.7019866539849511 -0.7116120731318623 -0.02868788943065985 -0.7019866539849511 0.7116120731318623 0.02868788943065985 0.3797707895361056 -0.05578521508747981 0.9233970744987049 -0.3797707895361056 0.05578521508747981 -0.9233970744987049 -0.7413372018600667 0.3838759711138743 0.5505073949909002 0.7413372018600667 -0.3838759711138743 -0.5505073949909002 -0.8464429439500593 0.1647919807723101 -0.5063377782768096 0.8464429439500593 -0.1647919807723101 0.5063377782768096 0.2583786506831493 -0.3088727730113479 -0.9153349567035204 -0.2583786506831493 0.3088727730113479 0.9153349567035204 0.9667052361602763 -0.2557355619573141 -0.008961513861014344 -0.9667052361602763 0.2557355619573141 0.008961513861014344 0.3621145849670063 0.1188741203512216 0.9245225637402779 -0.3621145849670063 -0.1188741203512216 -0.9245225637402779 -0.3197967591986774 0.8330108071813056 0.4514676377384902 0.3197967591986774 -0.8330108071813056 -0.4514676377384902 -0.4673945829500927 0.8835792856825052 0.02880884832309254 0.4673945829500927 -0.8835792856825052 -0.02880884832309254 0.0369972132086472 -0.5385792329872361 -0.8417622087084182 -0.0369972132086472 0.5385792329872361 0.8417622087084182 0.325919582977926 -0.8059328847832468 -0.4942151461220593 -0.325919582977926 0.8059328847832468 0.4942151461220593 0.3683543468231149 -0.1472162384577096 0.9179555840621478 -0.3683543468231149 0.1472162384577096 -0.9179555840621478 -0.8188355990647986 -0.04539334334400072 0.5722304658826251 0.8188355990647986 0.04539334334400072 -0.5722304658826251 -0.822254580904724 -0.2531097721189614 -0.5097380184360236 0.822254580904724 0.2531097721189614 0.5097380184360236 0.3007446134877924 -0.1278820455526602 -0.9450919848794326 -0.3007446134877924 0.1278820455526602 0.9450919848794326 0.9912207788015529 0.1321041308441238 0.005465005577446667 -0.9912207788015529 -0.1321041308441238 -0.005465005577446667 0.333464432219462 0.2262048617210932 0.91522283241749 -0.333464432219462 -0.2262048617210932 -0.91522283241749 0.3572482033442377 -0.1813374423690488 0.9162371162545022 -0.3572482033442377 0.1813374423690488 -0.9162371162545022 -0.5652732880236447 0.7136985729110916 -0.4136429098529417 0.5652732880236447 -0.7136985729110916 0.4136429098529417 0.4589963824499008 -0.8877897039360941 -0.03393762636022827 -0.4589963824499008 0.8877897039360941 0.03393762636022827 -0.823645160210407 0.01010080678141246 0.5670155410254093 0.823645160210407 -0.01010080678141246 -0.5670155410254093 -0.8284382484647666 -0.2197789923965592 -0.5151575127878687 0.8284382484647666 0.2197789923965592 0.5151575127878687 0.3143157204193575 -0.1151624860391426 -0.9423073966103337 -0.3143157204193575 0.1151624860391426 0.9423073966103337 0.981402156481385 0.1918066126499629 0.007747941496548565 -0.981402156481385 -0.1918066126499629 -0.007747941496548565 0.3228742433604697 0.2179475000854879 0.921005488681197 -0.3228742433604697 -0.2179475000854879 -0.921005488681197 0.3242555894649844 -0.2627546519260186 0.908745456985592 -0.3242555894649844 0.2627546519260186 -0.908745456985592 -0.1174200889755088 0.8977402856722788 0.4245879204429147 0.1174200889755088 -0.8977402856722788 -0.4245879204429147 -0.2470425728422168 0.9685221241356217 0.03057551738436241 0.2470425728422168 -0.9685221241356217 -0.03057551738436241 -0.07435657945962489 -0.5620431171607689 -0.8237588442883455 0.07435657945962489 0.5620431171607689 0.8237588442883455 0.122052206662836 -0.8647746579518298 -0.4871016832377279 -0.122052206662836 0.8647746579518298 0.4871016832377279 -0.8216029429713218 -0.5698993658412955 0.01353945769047497 0.8216029429713218 0.5698993658412955 -0.01353945769047497 -0.687814852997406 -0.5387613544941684 -0.4864636994676644 0.687814852997406 0.5387613544941684 0.4864636994676644 0.3136922875594778 0.05869778538725343 -0.9477086676380743 -0.3136922875594778 -0.05869778538725343 0.9477086676380743 0.8392381286762829 0.5433628842023259 0.02088395190715675 -0.8392381286762829 -0.5433628842023259 -0.02088395190715675 0.2680639167135812 0.3235094080333575 0.9074598610793101 -0.2680639167135812 -0.3235094080333575 -0.9074598610793101 0.2377993407915023 -0.9701661113154197 -0.047214298408886 -0.2377993407915023 0.9701661113154197 0.047214298408886 0.3107209325440185 -0.2832329611922849 0.9073211073116425 -0.3107209325440185 0.2832329611922849 -0.9073211073116425 -0.3635273000075052 0.851692513376756 -0.3774490227927974 0.3635273000075052 -0.851692513376756 0.3774490227927974 -0.7564678452367355 -0.3791042515503695 0.5329506220836264 0.7564678452367355 0.3791042515503695 -0.5329506220836264 0.3157961521326879 0.1009840434610352 -0.9434378693186151 -0.3157961521326879 -0.1009840434610352 0.9434378693186151 0.8201569852139139 0.5717187770962822 0.02191254253516401 -0.8201569852139139 -0.5717187770962822 -0.02191254253516401 0.2680197907289993 0.2977210426974458 0.9162573724193051 -0.2680197907289993 -0.2977210426974458 -0.9162573724193051 -0.06942815001823158 -0.8752597050279347 -0.4786441065546077 0.06942815001823158 0.8752597050279347 0.4786441065546077 0.2548514201025964 -0.3497432858298242 0.9015156059041062 -0.2548514201025964 0.3497432858298242 -0.9015156059041062 0.07986773118218563 0.905558053888146 0.41663624008735 -0.07986773118218563 -0.905558053888146 -0.41663624008735 -0.04084834986914429 0.9986125210912749 0.03323319173200137 0.04084834986914429 -0.9986125210912749 -0.03323319173200137 -0.1825339355083896 -0.5374471019079156 -0.8233055174348108 0.1825339355083896 0.5374471019079156 0.8233055174348108 -0.5778181017680943 -0.8161625429142692 -0.002223693510753986 0.5778181017680943 0.8161625429142692 0.002223693510753986 -0.5021307064919959 -0.7356131203733092 -0.4546846057790966 0.5021307064919959 0.7356131203733092 0.4546846057790966 0.2804724294980047 0.2496565340564341 -0.9268262141817177 -0.2804724294980047 -0.2496565340564341 0.9268262141817177 0.5959242985213953 0.8024852760343626 0.02985987575050859 -0.5959242985213953 -0.8024852760343626 -0.02985987575050859 0.1886829069587858 0.3827062994548023 0.9043973954955827 -0.1886829069587858 -0.3827062994548023 -0.9043973954955827 0.02641669813824826 -0.9989910161941067 -0.03631952123774438 -0.02641669813824826 0.9989910161941067 0.03631952123774438 0.2495535357316533 -0.3596536697663272 0.8990952511427498 -0.2495535357316533 0.3596536697663272 -0.8990952511427498 -0.1610502094959316 0.9195286051879728 -0.3585107728679537 0.1610502094959316 -0.9195286051879728 0.3585107728679537 -0.5735199496354257 -0.6719919437662193 0.468510079809898 0.5735199496354257 0.6719919437662193 -0.468510079809898 0.2657695805823602 0.2945433575572579 -0.9179383097768463 -0.2657695805823602 -0.2945433575572579 0.9179383097768463 0.5837519371941382 0.8113694555299569 0.03022056344796199 -0.5837519371941382 -0.8113694555299569 -0.03022056344796199 0.1992132108648616 0.3545177770346929 0.9135815466521268 -0.1992132108648616 -0.3545177770346929 -0.9135815466521268 -0.2862029651949788 -0.4777049899822951 -0.8305936462913842 0.2862029651949788 0.4777049899822951 0.8305936462913842 -0.259630524598282 -0.8356972204193286 -0.4839443630007778 0.259630524598282 0.8356972204193286 0.4839443630007778 0.171173079251343 -0.3974581639717709 0.9015136076797746 -0.171173079251343 0.3974581639717709 -0.9015136076797746 0.2759497417719133 0.8621233294073297 0.4249648278477118 -0.2759497417719133 -0.8621233294073297 -0.4249648278477118 0.1627627831762174 0.9861080321639755 0.03315456702210878 -0.1627627831762174 -0.9861080321639755 -0.03315456702210878 -0.3417068928269009 -0.9396636876767586 -0.01638760068771967 0.3417068928269009 0.9396636876767586 0.01638760068771967 -0.303785009541162 -0.8502631311565697 -0.429845641799358 0.303785009541162 0.8502631311565697 0.429845641799358 0.2017864719686995 0.41224349150772 -0.8884466913889372 -0.2017864719686995 -0.41224349150772 0.8884466913889372 0.3533781354598145 0.9348240537342529 0.03504114636828513 -0.3533781354598145 -0.9348240537342529 -0.03504114636828513 0.1058796997325965 0.403970480962094 0.9086238714098311 -0.1058796997325965 -0.403970480962094 -0.9086238714098311 0.03908976938190037 0.9310403854777442 -0.3628164694981797 -0.03908976938190037 -0.9310403854777442 0.3628164694981797 -0.1853003135714887 -0.982022781340319 -0.03598681312553404 0.1853003135714887 0.982022781340319 0.03598681312553404 0.1773610796877783 -0.407874054326998 0.8956460256255497 -0.1773610796877783 0.407874054326998 -0.8956460256255497 -0.3549193342244598 -0.840823918289625 0.4087143313192582 0.3549193342244598 0.840823918289625 -0.4087143313192582 0.1822055254325907 0.439830622007737 -0.8794033036361193 -0.1822055254325907 -0.439830622007737 0.8794033036361193 0.3477622130530788 0.9369285015570612 0.03502036753754913 -0.3477622130530788 -0.9369285015570612 -0.03502036753754913 0.1203037155984768 0.3835571539917935 0.9156478174685484 -0.1203037155984768 -0.3835571539917935 -0.9156478174685484 0.3817045715444365 0.9236517523580562 0.03419152567479299 -0.3817045715444365 -0.9236517523580562 -0.03419152567479299 -0.3808638825150635 -0.376271781229598 -0.8446077489852065 0.3808638825150635 0.376271781229598 0.8446077489852065 -0.4502588378367068 -0.7431572936698991 -0.4949588021392989 0.4502588378367068 0.7431572936698991 0.4949588021392989 0.0853863809066545 -0.4049841614163864 0.9103279601097232 -0.0853863809066545 0.4049841614163864 -0.9103279601097232 0.4839679574708264 0.7461911190259736 0.4571365551214228 -0.4839679574708264 -0.7461911190259736 -0.4571365551214228 -0.1272640715387168 -0.9915104379252862 -0.02666285019639791 0.1272640715387168 0.9915104379252862 0.02666285019639791 -0.1074964943735469 -0.902313169276024 -0.417463110045014 0.1074964943735469 0.902313169276024 0.417463110045014 0.1272910013469667 0.8805065804099733 -0.4566236555751592 -0.1272910013469667 -0.8805065804099733 0.4566236555751592 0.1306357975299962 0.9907866742362398 0.03572190587850656 -0.1306357975299962 -0.9907866742362398 -0.03572190587850656 0.02654281869850746 0.3881449395306496 0.9212160358419118 -0.02654281869850746 -0.3881449395306496 -0.9212160358419118 0.24608647452967 0.8881051220699402 -0.3882148106482991 -0.24608647452967 -0.8881051220699402 0.3882148106482991 -0.4100890657649051 -0.9114022377113701 -0.03424790847299099 0.4100890657649051 0.9114022377113701 0.03424790847299099 0.09586480764581787 -0.4238883735895807 0.900626773636344 -0.09586480764581787 0.4238883735895807 -0.900626773636344 -0.1414171634691401 -0.9177766694141802 0.3710622197898309 0.1414171634691401 0.9177766694141802 -0.3710622197898309 0.08231754639569727 0.532746798148681 -0.8422616402387804 -0.08231754639569727 -0.532746798148681 0.8422616402387804 0.03577593509908762 0.376879423980663 0.9255711654150584 -0.03577593509908762 -0.376879423980663 -0.9255711654150584 0.674701977245175 0.5584531599486828 0.4826047140722749 -0.674701977245175 -0.5584531599486828 -0.4826047140722749 0.6195348000722665 0.7846501978477477 0.02237629363650723 -0.6195348000722665 -0.7846501978477477 -0.02237629363650723 -0.4569983235447788 -0.2308211994285236 -0.8589959872849463 0.4569983235447788 0.2308211994285236 0.8589959872849463 -0.640204806147654 -0.5821627797804134 -0.5012228087625168 0.640204806147654 0.5821627797804134 0.5012228087625168 0.004104716059359423 -0.3751759950358459 0.9269445096956641 -0.004104716059359423 0.3751759950358459 -0.9269445096956641 0.07708188418723362 -0.9963873970472187 -0.03564460878750064 -0.07708188418723362 0.9963873970472187 0.03564460878750064 0.08908413621321892 -0.9018765858658367 -0.4227086946611419 -0.08908413621321892 0.9018765858658367 0.4227086946611419 -0.06621297605435472 0.8988127326352441 -0.4333030272855141 0.06621297605435472 -0.8988127326352441 0.4333030272855141 -0.08027734084685322 0.9960943927787809 0.03676287830447991 0.08027734084685322 -0.9960943927787809 -0.03676287830447991 -0.04438937087252709 0.3395012522623767 0.9395575998659259 0.04438937087252709 -0.3395012522623767 -0.9395575998659259 0.01160241142300691 -0.4044586493257089 0.9144826871159424 -0.01160241142300691 0.4044586493257089 -0.9144826871159424 0.460879652033973 0.7725758700024636 -0.4367109701289637 -0.460879652033973 -0.7725758700024636 0.4367109701289637 -0.652862642100236 -0.7569451882164892 -0.02836111044728642 0.652862642100236 0.7569451882164892 0.02836111044728642 0.06267172098493584 -0.9321992982217414 0.3564782234354281 -0.06267172098493584 0.9321992982217414 -0.3564782234354281 -0.02540906870737653 0.5793748184688801 -0.8146650839158238 0.02540906870737653 -0.5793748184688801 0.8146650839158238 -0.04650596936050504 0.3295030845688647 0.9430084369046989 0.04650596936050504 -0.3295030845688647 -0.9430084369046989 -0.06468376165068974 -0.3131914276879613 0.9474846387153163 0.06468376165068974 0.3131914276879613 -0.9474846387153163 0.8190040891150869 0.2677833677801808 0.5074685901147686 -0.8190040891150869 -0.2677833677801808 -0.5074685901147686 0.8580878426413556 0.5134904032115263 0.003586101053787535 -0.8580878426413556 -0.5134904032115263 -0.003586101053787535 -0.4994845441692579 -0.04703125899196081 -0.8650452305016542 0.4994845441692579 0.04703125899196081 0.8650452305016542 -0.8539216757964206 -0.5200262819562841 -0.01975949593881323 0.8539216757964206 0.5200262819562841 0.01975949593881323 0.2852085614390063 -0.9574829271713448 -0.04338802435333355 -0.2852085614390063 0.9574829271713448 0.04338802435333355 0.2923757519874668 -0.8450098693040526 -0.4477440568321495 -0.2923757519874668 0.8450098693040526 0.4477440568321495 -0.2599931803788589 0.8674723641581483 -0.4241405941175153 0.2599931803788589 -0.8674723641581483 0.4241405941175153 -0.2945837843567172 0.9549877330598857 0.03491165563555571 0.2945837843567172 -0.9549877330598857 -0.03491165563555571 -0.1034251404298343 0.26085776955375 0.9598210585262816 0.1034251404298343 -0.26085776955375 -0.9598210585262816 -0.8820069727444916 -0.4709006088845356 -0.01778529117757768 0.8820069727444916 0.4709006088845356 0.01778529117757768 -0.06788913571598272 -0.3406639787186241 0.9377308349709599 0.06788913571598272 0.3406639787186241 -0.9377308349709599 0.6640268346823709 0.5539656351546057 -0.5021856607764358 -0.6640268346823709 -0.5539656351546057 0.5021856607764358 -0.4965328229289699 -0.007212757334351909 -0.8679879791136649 0.4965328229289699 0.007212757334351909 0.8679879791136649 0.2614934444580715 -0.8933487023252803 0.3654439417464616 -0.2614934444580715 0.8933487023252803 -0.3654439417464616 -0.1382473958712453 0.583207717912289 -0.8004726199579592 0.1382473958712453 -0.583207717912289 0.8004726199579592 -0.114141413431016 0.2415027933932298 0.9636639136769817 0.114141413431016 -0.2415027933932298 -0.9636639136769817 -0.8822930021998877 0.02221209157725519 -0.4701762236192644 0.8822930021998877 -0.02221209157725519 0.4701762236192644 -0.1188250463877658 -0.2260188820695762 0.9668485265536502 0.1188250463877658 0.2260188820695762 -0.9668485265536502 0.8587563515222183 -0.08016604293207227 0.5060740403151119 -0.8587563515222183 0.08016604293207227 -0.5060740403151119 0.8050736187094051 0.1826511136534107 -0.564353647227793 -0.8050736187094051 -0.1826511136534107 0.564353647227793 -0.492612678330724 0.1528176287577358 -0.856726048097461 0.492612678330724 -0.1528176287577358 0.856726048097461 0.5098126035478107 -0.8590875699022332 -0.04538343864537134 -0.5098126035478107 0.8590875699022332 0.04538343864537134 0.5032434482250976 -0.7119749758641289 -0.4897322386384079 -0.5032434482250976 0.7119749758641289 0.4897322386384079 -0.4603753100173895 0.7788984058880536 -0.4258777374217175 0.4603753100173895 -0.7788984058880536 0.4258777374217175 -0.523498639095926 0.8514919385532362 0.03017703503601408 0.523498639095926 -0.8514919385532362 -0.03017703503601408 -0.1518535687965457 0.154520002132968 0.9762500000433191 0.1518535687965457 -0.154520002132968 -0.9762500000433191 -0.9986631704877207 -0.05164308480979089 -0.002205380407690168 0.9986631704877207 0.05164308480979089 0.002205380407690168 -0.1318326200590944 -0.234976129845822 0.9630194072245034 0.1318326200590944 0.234976129845822 -0.9630194072245034 0.8570540920898327 -0.04024487428179111 0.5136522494121047 -0.8570540920898327 0.04024487428179111 -0.5136522494121047 0.8020522544097641 0.2179622658222837 -0.556061715885774 -0.8020522544097641 -0.2179622658222837 0.556061715885774 0.4616480901245103 -0.79099306047077 0.4015109203639135 -0.4616480901245103 0.79099306047077 -0.4015109203639135 -0.25257374780988 0.5415648808669609 -0.8018191702178402 0.25257374780988 -0.5415648808669609 0.8018191702178402 -0.1597949684978955 0.1228200618629221 0.9794798621956169 0.1597949684978955 -0.1228200618629221 -0.9794798621956169 -0.4353175597640887 0.3341211481231659 -0.8359794737539293 0.4353175597640887 -0.3341211481231659 0.8359794737539293 -0.8085300793051226 0.3822941225048211 -0.4473592681024069 0.8085300793051226 -0.3822941225048211 0.4473592681024069 -0.1551321596947687 -0.1168575652958692 0.9809578596767339 0.1551321596947687 0.1168575652958692 -0.9809578596767339 0.7805990224724158 -0.4067995959297094 0.4745305626264066 -0.7805990224724158 0.4067995959297094 -0.4745305626264066 0.924486303246182 -0.3785777619601645 -0.04476553651461776 -0.924486303246182 0.3785777619601645 0.04476553651461776 0.7501967760572326 -0.6593607613057052 -0.04947912331170887 -0.7501967760572326 0.6593607613057052 0.04947912331170887 0.6978478847480852 -0.4622788558928253 -0.5470891967010899 -0.6978478847480852 0.4622788558928253 0.5470891967010899 -0.6649136060196553 0.6072581488774166 -0.434887844336804 0.6649136060196553 -0.6072581488774166 0.434887844336804 -0.760467105916375 0.6489733367243699 0.02287769743681768 0.760467105916375 -0.6489733367243699 -0.02287769743681768 -0.171953642694786 0.01941832872952423 0.9849136374694718 0.171953642694786 -0.01941832872952423 -0.9849136374694718 0.8041150128230653 -0.178476691563577 -0.5670494834854194 -0.8041150128230653 0.178476691563577 0.5670494834854194 -0.9246620643280678 0.3805553436602243 0.01333031148191201 0.9246620643280678 -0.3805553436602243 -0.01333031148191201 -0.1673212804961899 -0.09874576694697208 0.980944882551089 0.1673212804961899 0.09874576694697208 -0.980944882551089 0.6515713666903741 -0.6172349448124972 0.4409940782046305 -0.6515713666903741 0.6172349448124972 -0.4409940782046305 -0.3609566471516233 0.4491862863400353 -0.8172771739386255 0.3609566471516233 -0.4491862863400353 0.8172771739386255 -0.1680958210730742 -0.01327446757619972 0.9856812788362867 0.1680958210730742 0.01327446757619972 -0.9856812788362867 0.7077234985869574 -0.7046654485268453 -0.05073514758327681 -0.7077234985869574 0.7046654485268453 0.05073514758327681 -0.342296253152495 0.4701368124202711 -0.8135137692043508 0.342296253152495 -0.4701368124202711 0.8135137692043508 -0.6285692651519454 0.6463050638907462 -0.4326551089442051 0.6285692651519454 -0.6463050638907462 0.4326551089442051 -0.1684940725506878 0.01077890427230811 0.9856437301266476 0.1684940725506878 -0.01077890427230811 -0.9856437301266476 0.6208745200734542 -0.6569329412250992 0.4277311551160358 -0.6208745200734542 0.6569329412250992 -0.4277311551160358 0.8016952897873982 -0.3477265981354733 0.4861798795526515 -0.8016952897873982 0.3477265981354733 -0.4861798795526515 0.8149503753719954 -0.1081215601672776 -0.569355437234104 -0.8149503753719954 0.1081215601672776 0.569355437234104 -0.8324307492478874 0.3218681311364857 -0.4510653543172061 0.8324307492478874 -0.3218681311364857 0.4510653543172061 -0.951308818898382 0.308069603019877 0.01022989644818191 0.951308818898382 -0.308069603019877 -0.01022989644818191 -0.1634302060126187 -0.1247405643740396 0.9786369905957566 0.1634302060126187 0.1247405643740396 -0.9786369905957566 0.6678646842738194 -0.5214257130287312 -0.5311044994088369 -0.6678646842738194 0.5214257130287312 0.5311044994088369 -0.718278485553605 0.6953136880547992 0.02479702390314172 0.718278485553605 -0.6953136880547992 -0.02479702390314172 -0.1694016656235607 0.04483516685173435 0.9845267307175263 0.1694016656235607 -0.04483516685173435 -0.9845267307175263 0.8048888050458055 -0.3506580527077226 0.4787409963468383 -0.8048888050458055 0.3506580527077226 -0.4787409963468383 0.8033788736156395 -0.1702434220385553 -0.5706133215064897 -0.8033788736156395 0.1702434220385553 0.5706133215064897 -0.4492202155089497 0.3040881169407794 -0.840078338676521 0.4492202155089497 -0.3040881169407794 0.840078338676521 -0.1500286448931143 -0.1381858466799649 0.9789770566713384 0.1500286448931143 0.1381858466799649 -0.9789770566713384 0.4259236542733373 -0.8178625688033844 0.3868977374976181 -0.4259236542733373 0.8178625688033844 -0.3868977374976181 0.4675574684184699 -0.8826942109090509 -0.04733860743367385 -0.4675574684184699 0.8826942109090509 0.04733860743367385 -0.2320262889549334 0.5524684967797857 -0.8005887591639579 0.2320262889549334 -0.5524684967797857 0.8005887591639579 -0.4235561613148924 0.8000764739943699 -0.4248268046780114 0.4235561613148924 -0.8000764739943699 0.4248268046780114 -0.1520170731640112 0.1435797585607158 0.9778934821330462 0.1520170731640112 -0.1435797585607158 -0.9778934821330462 0.8563174279290809 0.03077461079569902 0.5155321386250295 -0.8563174279290809 -0.03077461079569902 -0.5155321386250295 0.785470581674461 0.2863404754438074 -0.5486757671399369 -0.785470581674461 -0.2863404754438074 0.5486757671399369 -0.8789037696885808 -0.04562595251895923 -0.4748120007791926 0.8789037696885808 0.04562595251895923 0.4748120007791926 -0.9909627935175657 -0.1340079579351373 -0.005882947723453319 0.9909627935175657 0.1340079579351373 0.005882947723453319 -0.1214837412088746 -0.2566053289175989 0.9588510863491715 0.1214837412088746 0.2566053289175989 -0.9588510863491715 -0.1424467051888185 0.1742469875797838 0.9743443557080939 0.1424467051888185 -0.1742469875797838 -0.9743443557080939 0.4649641777172875 -0.7433751702324944 -0.4808343474851776 -0.4649641777172875 0.7433751702324944 0.4808343474851776 -0.4806947298180828 0.8763132906175912 0.03174261192922667 0.4806947298180828 -0.8763132906175912 -0.03174261192922667 0.8608037503856283 -0.01643322137169287 0.5086716549576807 -0.8608037503856283 0.01643322137169287 -0.5086716549576807 0.7900847555419815 0.2562248601408235 -0.5568796100648529 -0.7900847555419815 -0.2562248601408235 0.5568796100648529 -0.4979955375276722 0.116898192729161 -0.859264369760076 0.4979955375276722 -0.116898192729161 0.859264369760076 -0.1096791654130207 -0.2434487385707459 0.9636924781083518 0.1096791654130207 0.2434487385707459 -0.9636924781083518 -0.1039480623327925 0.2597358875639912 0.9600687834986634 0.1039480623327925 -0.2597358875639912 -0.9600687834986634 0.2255224611613599 -0.904207791908424 0.3626953109206335 -0.2255224611613599 0.904207791908424 -0.3626953109206335 0.2462915013868555 -0.9683106333600775 -0.04141272348462648 -0.2462915013868555 0.9683106333600775 0.04141272348462648 -0.1176960056074974 0.5854780210354769 -0.8020992065501759 0.1176960056074974 -0.5854780210354769 0.8020992065501759 -0.224540275744401 0.8769444447397742 -0.4249118795805522 0.224540275744401 -0.8769444447397742 0.4249118795805522 0.8181774061953669 0.5749098000536865 0.008028312005125892 -0.8181774061953669 -0.5749098000536865 -0.008028312005125892 0.6305000530243112 0.6022946171061921 -0.4896027750546829 -0.6305000530243112 -0.6022946171061921 0.4896027750546829 -0.4949950778106962 -0.03895226334673744 -0.8680222313531776 0.4949950778106962 0.03895226334673744 0.8680222313531776 -0.8451084478559042 -0.5342109596224031 -0.02025739326505952 0.8451084478559042 0.5342109596224031 0.02025739326505952 -0.0538163228126221 -0.3553819643204697 0.9331706504357347 0.0538163228126221 0.3553819643204697 -0.9331706504357347 -0.2549154754785329 0.9663207723906242 0.03524578283909989 0.2549154754785329 -0.9663207723906242 -0.03524578283909989 -0.09422842523274229 0.2772615555168482 0.95616266069667 0.09422842523274229 -0.2772615555168482 -0.95616266069667 0.2548985531969059 -0.8600368136205863 -0.4419993289536457 -0.2548985531969059 0.8600368136205863 0.4419993289536457 0.7992879325211242 0.3271162399258568 0.5041168183098793 -0.7992879325211242 -0.3271162399258568 -0.5041168183098793 -0.4949187544227878 -0.08219062784281732 -0.8650434250460493 0.4949187544227878 0.08219062784281732 0.8650434250460493 -0.8143993150854482 -0.5798944858367074 -0.02182065270639956 0.8143993150854482 0.5798944858367074 0.02182065270639956 -0.05282635912663602 -0.3265000265018341 0.9437198252001096 0.05282635912663602 0.3265000265018341 -0.9437198252001096 -0.03140988032332349 0.8992719256145415 -0.4362607284865198 0.03140988032332349 -0.8992719256145415 0.4362607284865198 -0.03222483287965563 0.3414911777191863 0.9393323882874697 0.03222483287965563 -0.3414911777191863 -0.9393323882874697 0.02592929075766842 -0.9334593989305918 0.3577446329841197 -0.02592929075766842 0.9334593989305918 -0.3577446329841197 0.04047920242278022 -0.998569081342663 -0.03494601490421647 -0.04047920242278022 0.998569081342663 0.03494601490421647 -0.005328154191109313 0.5750362599656316 -0.818110573515374 0.005328154191109313 -0.5750362599656316 0.818110573515374 0.5749242631461603 0.8178528227190813 0.02405934363766486 -0.5749242631461603 -0.8178528227190813 -0.02405934363766486 0.4214741465651992 0.8001850432365848 -0.4266889269217117 -0.4214741465651992 -0.8001850432365848 0.4266889269217117 -0.607500139413018 -0.6169766682208152 -0.5002832912303845 0.607500139413018 0.6169766682208152 0.5002832912303845 -0.6082853638018145 -0.7931728257612001 -0.02942421891039525 0.6082853638018145 0.7931728257612001 0.02942421891039525 0.02732148043861099 -0.411197043048017 0.9111369427782027 -0.02732148043861099 0.411197043048017 -0.9111369427782027 -0.04233230297869504 0.99843938351606 0.03642490313768718 0.04233230297869504 -0.99843938351606 -0.03642490313768718 -0.03222572048387662 0.3507365514660342 0.9359195341507778 0.03222572048387662 -0.3507365514660342 -0.9359195341507778 0.0535986355584465 -0.9051101330327424 -0.4217852929485856 -0.0535986355584465 0.9051101330327424 0.4217852929485856 0.6412311608394218 0.6027462110192511 0.4748890433253478 -0.6412311608394218 -0.6027462110192511 -0.4748890433253478 -0.4461736197689663 -0.2574888449979427 -0.8571047752310586 0.4461736197689663 0.2574888449979427 0.8571047752310586 0.01845899878033352 -0.3828914709383621 0.9236088927932022 -0.01845899878033352 0.3828914709383621 -0.9236088927932022 0.1011375575336253 0.5194380772539559 -0.8485017845325052 -0.1011375575336253 -0.5194380772539559 0.8485017845325052 0.1630062188243885 0.8718097571228917 -0.4619271804190572 -0.1630062188243885 -0.8718097571228917 0.4619271804190572 0.05107088372148411 0.3804430891390565 0.9233931019680829 -0.05107088372148411 -0.3804430891390565 -0.9233931019680829 -0.1789110234207843 -0.9095031086441852 0.375226519671906 0.1789110234207843 0.9095031086441852 -0.375226519671906 -0.164464998711951 -0.9860462985513705 -0.02576744674622084 0.164464998711951 0.9860462985513705 0.02576744674622084 0.3395208403843986 0.9401053719795921 0.03045469618604664 -0.3395208403843986 -0.9401053719795921 -0.03045469618604664 0.2081649944077018 0.9007460282722055 -0.3812137558576403 -0.2081649944077018 -0.9007460282722055 0.3812137558576403 -0.4170652272044756 -0.7630490978978199 -0.4937739062103245 0.4170652272044756 0.7630490978978199 0.4937739062103245 -0.3672005745438822 -0.9296732929524478 -0.02951790008782431 0.3672005745438822 0.9296732929524478 0.02951790008782431 0.1118377840482386 -0.4246172504853856 0.8984389242733257 -0.1118377840482386 0.4246172504853856 -0.8984389242733257 -0.142990897232966 -0.896970561440987 -0.418326923848743 0.142990897232966 0.896970561440987 0.418326923848743 0.1697237926371042 0.9848328332159376 0.03602949947954706 -0.1697237926371042 -0.9848328332159376 -0.03602949947954706 0.04030372198163225 0.3929482365801176 0.9186769254547559 -0.04030372198163225 -0.3929482365801176 -0.9186769254547559 0.4425223119009562 0.7807305174758044 0.4411732795079453 -0.4425223119009562 -0.7807305174758044 -0.4411732795079453 -0.3615543092865395 -0.3924585997017193 -0.8457273372408504 0.3615543092865395 0.3924585997017193 0.8457273372408504 0.1003911431603658 -0.4059716081359349 0.9083549260957843 -0.1003911431603658 0.4059716081359349 -0.9083549260957843 -0.390456001742171 -0.9205063126905769 -0.01456842477125177 0.390456001742171 0.9205063126905769 0.01456842477125177 0.2028030013390004 0.4137140405601716 -0.8875312024324948 -0.2028030013390004 -0.4137140405601716 0.8875312024324948 0.3966129038026112 0.9173788643791272 0.03337998992995159 -0.3966129038026112 -0.9173788643791272 -0.03337998992995159 0.1368380461281864 0.3784294566205597 0.9154597181163616 -0.1368380461281864 -0.3784294566205597 -0.9154597181163616 -0.4037532977559437 -0.8135903237631738 0.4183946218943716 0.4037532977559437 0.8135903237631738 -0.4183946218943716 0.21303956080358 0.9762374115492939 -0.03968200882203873 -0.21303956080358 -0.9762374115492939 0.03968200882203873 0.1082255873183704 0.9240476898198827 -0.366637544706119 -0.1082255873183704 -0.9240476898198827 0.366637544706119 -0.3281825396220066 -0.7677697899706376 -0.5502960751229226 0.3281825396220066 0.7677697899706376 0.5502960751229226 -0.232870310831776 -0.9718855641032611 -0.03478316576733741 0.232870310831776 0.9718855641032611 0.03478316576733741 0.147399415242306 -0.3971111236085312 0.9058565934476583 -0.147399415242306 0.3971111236085312 -0.9058565934476583 -0.3468619440926344 -0.8319654750379002 -0.4330360724988613 0.3468619440926344 0.8319654750379002 0.4330360724988613 0.2233818142720267 0.3809947250783958 -0.8971864825748187 -0.2233818142720267 -0.3809947250783958 0.8971864825748187 0.4038637965610512 0.9142113244796445 0.03334198585069928 -0.4038637965610512 -0.9142113244796445 -0.03334198585069928 0.1223556349422535 0.4012342646726683 0.9077665798268084 -0.1223556349422535 -0.4012342646726683 -0.9077665798268084 0.3151262054911223 0.8509720714544223 0.4201690233909879 -0.3151262054911223 -0.8509720714544223 -0.4201690233909879 -0.3363285040587479 -0.460545695550053 -0.8214504243519037 0.3363285040587479 0.460545695550053 0.8214504243519037 0.1477922431507489 -0.3878572766046277 0.9097934852752637 -0.1477922431507489 0.3878572766046277 -0.9097934852752637 -0.6420223712039709 -0.5915254973598801 0.4877549188340153 0.6420223712039709 0.5915254973598801 -0.4877549188340153 -0.6565371471631942 -0.754292366419499 0.001414339452328107 0.6565371471631942 0.754292366419499 -0.001414339452328107 0.2874131142788096 0.2414302979496353 -0.926879233218927 -0.2874131142788096 -0.2414302979496353 0.926879233218927 0.6582517385598384 0.7522703007461163 0.0281787738962858 -0.6582517385598384 -0.7522703007461163 -0.0281787738962858 0.2201302461169165 0.3383242007378086 0.9149204391309819 -0.2201302461169165 -0.3383242007378086 -0.9149204391309819 0.211674352703625 0.3682913629543855 0.90529301354904 -0.211674352703625 -0.3682913629543855 -0.90529301354904 -0.5633788388508121 -0.6828498403304095 -0.4651025472902132 0.5633788388508121 0.6828498403304095 0.4651025472902132 0.2983727723315879 0.1911953128740891 -0.9351032248185981 -0.2983727723315879 -0.1911953128740891 0.9351032248185981 0.674927701277569 0.7373622019771242 0.02774132555634514 -0.674927701277569 -0.7373622019771242 -0.02774132555634514 0.2878281304533213 0.272313808334655 0.9181504000489368 -0.2878281304533213 -0.272313808334655 -0.9181504000489368 -0.7965447710859634 -0.2533387290974468 0.548940721749535 0.7965447710859634 0.2533387290974468 -0.548940721749535 -0.8952334756083304 -0.4451678348495047 0.01956075064083848 0.8952334756083304 0.4451678348495047 -0.01956075064083848 0.323305146806377 0.02811834809783417 -0.9458769161729004 -0.323305146806377 -0.02811834809783417 0.9458769161729004 0.8886035632950323 0.4583424303461484 0.01749067876778379 -0.8886035632950323 -0.4583424303461484 -0.01749067876778379 0.906754285544305 0.4213211032482745 0.01688767611880801 -0.906754285544305 -0.4213211032482745 -0.01688767611880801 0.2923095969905519 0.2931838782058966 0.910273757211187 -0.2923095969905519 -0.2931838782058966 -0.910273757211187 -0.7420274019922476 -0.4512271064426712 -0.4957715533428774 0.7420274019922476 0.4512271064426712 0.4957715533428774 0.3148774672198147 -0.004859640941630026 -0.9491198894381852 -0.3148774672198147 0.004859640941630026 0.9491198894381852 0.9986401715628105 0.05205829125818463 0.002782454362333355 -0.9986401715628105 -0.05205829125818463 -0.002782454362333355 0.3382231696957797 0.1884624621425752 0.9220016203044864 -0.3382231696957797 -0.1884624621425752 -0.9220016203044864 -0.8102135096867793 0.1385468360586977 0.5695251029929724 0.8102135096867793 -0.1385468360586977 -0.5695251029929724 -0.8502737882648265 -0.1027684743468968 -0.5162103502160649 0.8502737882648265 0.1027684743468968 0.5162103502160649 0.303877800446322 -0.1820341730033242 -0.935158725701098 -0.303877800446322 0.1820341730033242 0.935158725701098 0.2901892237089887 -0.1816512751772797 -0.93957066188214 -0.2901892237089887 0.1816512751772797 0.93957066188214 0.9998125299270766 -0.01936037700034898 0.0002842590771083226 -0.9998125299270766 0.01936037700034898 -0.0002842590771083226 0.3506254054122222 0.1891087030700747 0.9172239222254668 -0.3506254054122222 -0.1891087030700747 -0.9172239222254668 -0.8135822918348952 0.08558692183375054 0.5751162780027209 0.8135822918348952 -0.08558692183375054 -0.5751162780027209 -0.8477088503314019 -0.1457273455941529 -0.5100521991089688 0.8477088503314019 0.1457273455941529 0.5100521991089688 0.233260413971422 -0.3605413853497441 -0.9031054693245791 -0.233260413971422 0.3605413853497441 0.9031054693245791 0.9227544269434004 -0.3850370367752869 -0.01645441787676223 -0.9227544269434004 0.3850370367752869 0.01645441787676223 0.3711224996238446 0.08354633718180803 0.9248178738629855 -0.3711224996238446 -0.08354633718180803 -0.9248178738629855 -0.6915447098790261 0.481439542933741 0.5384996571383163 0.6915447098790261 -0.481439542933741 -0.5384996571383163 -0.8981601842993114 0.4388146585051151 0.02738574118891374 0.8981601842993114 -0.4388146585051151 -0.02738574118891374 -0.8429287075021802 0.2038949616908318 -0.4978936017522199 0.8429287075021802 -0.2038949616908318 0.4978936017522199 0.2290063307694923 -0.3335946999735647 -0.9144783631213158 -0.2290063307694923 0.3335946999735647 0.9144783631213158 0.8927780707210031 -0.4501282400025586 -0.01821768349386265 -0.8927780707210031 0.4501282400025586 0.01821768349386265 0.3806823163284625 0.05861925864707265 0.9228460091209498 -0.3806823163284625 -0.05861925864707265 -0.9228460091209498 -0.6731376809319953 0.739009762831531 0.02739038059574327 0.6731376809319953 -0.739009762831531 -0.02739038059574327 0.1328407661518205 -0.4811534645646102 -0.8665129395373562 -0.1328407661518205 0.4811534645646102 0.8665129395373562 0.51619967388126 -0.6859437923518563 -0.5128537904889018 -0.51619967388126 0.6859437923518563 0.5128537904889018 0.3820894849711712 -0.03801541506118901 0.9233430855820555 -0.3820894849711712 0.03801541506118901 -0.9233430855820555 -0.4982123819319361 0.7158544086919615 0.4892206946215469 0.4982123819319361 -0.7158544086919615 -0.4892206946215469 -0.7240796828342754 0.517304253506521 -0.4561851841200856 0.7240796828342754 -0.517304253506521 0.4561851841200856 0.6700291588090248 -0.7418444177367702 -0.02697751320012681 -0.6700291588090248 0.7418444177367702 0.02697751320012681 0.3799147067183139 -0.07529237210084216 0.9219522082638373 -0.3799147067183139 0.07529237210084216 -0.9219522082638373 -0.2919936616748643 0.8457083057970546 0.446673441171042 0.2919936616748643 -0.8457083057970546 -0.446673441171042 -0.4366467943183944 0.8991718161908844 0.0288031591922864 0.4366467943183944 -0.8991718161908844 -0.0288031591922864 0.02176310891147589 -0.5441273983997713 -0.838720299862358 -0.02176310891147589 0.5441273983997713 0.838720299862358 0.2991033077776762 -0.8171348416011702 -0.4927756709882125 -0.2991033077776762 0.8171348416011702 0.4927756709882125 0.3640512938492289 -0.1638710919855381 0.9168494536499271 -0.3640512938492289 0.1638710919855381 -0.9168494536499271 0.3516823252399595 -0.1960017035970046 0.9153703481656413 -0.3516823252399595 0.1960017035970046 -0.9153703481656413 -0.5385220158761696 0.7373253777364415 -0.4078545399557058 0.5385220158761696 -0.7373253777364415 0.4078545399557058 0.4313161246761184 -0.9015999330060595 -0.03292356903259632 -0.4313161246761184 0.9015999330060595 0.03292356903259632 0.3161408569706932 -0.276318589201155 0.9075808480877718 -0.3161408569706932 0.276318589201155 -0.9075808480877718 -0.09031941409519692 0.9018366056574806 0.4225318214450767 0.09031941409519692 -0.9018366056574806 -0.4225318214450767 -0.2181477144127747 0.9754001696778496 0.03171882231270052 0.2181477144127747 -0.9754001696778496 -0.03171882231270052 -0.0896782978087952 -0.5583215418063012 -0.8247635169290356 0.0896782978087952 0.5583215418063012 0.8247635169290356 0.0960842676760772 -0.8714986070373602 -0.4808929105706309 -0.0960842676760772 0.8714986070373602 0.4808929105706309 0.2086396917803162 -0.9773332616215297 -0.03590507961330022 -0.2086396917803162 0.9773332616215297 0.03590507961330022 0.303755031098276 -0.2967980573531617 0.9053418107178497 -0.303755031098276 0.2967980573531617 -0.9053418107178497 -0.3354200464215088 0.8652481196877145 -0.3726111697674499 0.3354200464215088 -0.8652481196877145 0.3726111697674499 -0.09634588207538014 -0.872989311001495 -0.4781287837855525 0.09634588207538014 0.872989311001495 0.4781287837855525 0.2454546829535896 -0.3778153799396332 0.8927527862164438 -0.2454546829535896 0.3778153799396332 -0.8927527862164438 0.1068701902825446 0.902645124026476 0.4169059156454855 -0.1068701902825446 -0.902645124026476 -0.4169059156454855 -0.01345127660992325 0.9993635619425534 0.03303837494574641 0.01345127660992325 -0.9993635619425534 -0.03303837494574641 -0.197404561831315 -0.5321700194341986 -0.823302198092287 0.197404561831315 0.5321700194341986 0.823302198092287 -0.003023102013275489 -0.9993161130292113 -0.03685331863490642 0.003023102013275489 0.9993161130292113 0.03685331863490642 0.24107826661194 -0.3871069096442774 0.8899603979239974 -0.24107826661194 0.3871069096442774 -0.8899603979239974 -0.1343592170136983 0.9238922681259719 -0.3582885397281262 0.1343592170136983 -0.9238922681259719 0.3582885397281262 -0.2993726317215964 -0.4646029928355155 -0.8333787172854652 0.2993726317215964 0.4646029928355155 0.8333787172854652 -0.2850223760582144 -0.8250074135917964 -0.4879805453752275 0.2850223760582144 0.8250074135917964 0.4879805453752275 0.1571476355888667 -0.4017430088752111 0.9021680416910815 -0.1571476355888667 0.4017430088752111 -0.9021680416910815 0.3048783085344589 0.8512515442137769 0.4271065738885638 -0.3048783085344589 -0.8512515442137769 -0.4271065738885638 0.1916387936300435 0.9809179758786124 0.03277952675417279 -0.1916387936300435 -0.9809179758786124 -0.03277952675417279 0.06722148092182911 0.9289434869574044 -0.3640676730253523 -0.06722148092182911 -0.9289434869574044 0.3640676730253523 -0.2140869666060625 -0.9760638362636109 -0.0382904461684297 0.2140869666060625 0.9760638362636109 0.0382904461684297 0.1633948649649251 -0.4107173382797202 0.8970024448904896 -0.1633948649649251 0.4107173382797202 -0.8970024448904896 0.4114800596926324 0.9109495221915634 0.02924258015822321 -0.4114800596926324 -0.9109495221915634 -0.02924258015822321 -0.3926793406448987 -0.3585905939007256 -0.8468858963264251 0.3926793406448987 0.3585905939007256 0.8468858963264251 -0.4758287826506283 -0.7262057498268171 -0.496197721195585 0.4758287826506283 0.7262057498268171 0.496197721195585 0.07403728528170142 -0.4018813093119968 0.9126937567518423 -0.07403728528170142 0.4018813093119968 -0.9126937567518423 0.5074483663098665 0.7336641542103471 0.4519215245551642 -0.5074483663098665 -0.7336641542103471 -0.4519215245551642 0.2748061558194914 0.877426979723126 -0.3931964801186126 -0.2748061558194914 -0.877426979723126 0.3931964801186126 -0.4416162494800723 -0.8965715608945203 -0.03368270164815051 0.4416162494800723 0.8965715608945203 0.03368270164815051 0.08549772772187718 -0.4236445040367092 0.9017846044116558 -0.08549772772187718 0.4236445040367092 -0.9017846044116558 0.6983955618814588 0.5261174618390851 0.485225777852208 -0.6983955618814588 -0.5261174618390851 -0.485225777852208 0.6529258623062569 0.7571641840513471 0.01975390395564597 -0.6529258623062569 -0.7571641840513471 -0.01975390395564597 -0.4651454729636889 -0.2078396388980428 -0.8604896126532367 0.4651454729636889 0.2078396388980428 0.8604896126532367 -0.6654104129941675 -0.5535469302112676 -0.5008141155484873 0.6654104129941675 0.5535469302112676 0.5008141155484873 -0.00537325195436097 -0.3680234573290827 0.9298009803280397 0.00537325195436097 0.3680234573290827 -0.9298009803280397 0.0008797982458484917 -0.398149274166836 0.9173202175006656 -0.0008797982458484917 0.398149274166836 -0.9173202175006656 0.4894395591614004 0.7496389984441606 -0.4455224909468991 -0.4894395591614004 -0.7496389984441606 0.4455224909468991 -0.6864868232200563 -0.7266462734301518 -0.0268520921961055 0.6864868232200563 0.7266462734301518 0.0268520921961055 -0.07261225421506358 -0.3044534169131987 0.9497555356341361 0.07261225421506358 0.3044534169131987 -0.9497555356341361 0.8316088337424303 0.222704652903695 0.5087527741610846 -0.8316088337424303 -0.222704652903695 -0.5087527741610846 0.8847442103228584 0.4660768166585395 -0.0002885716964004705 -0.8847442103228584 -0.4660768166585395 0.0002885716964004705 -0.5015710315013272 -0.02021660815949402 -0.8648802166272623 0.5015710315013272 0.02021660815949402 0.8648802166272623 -0.8822534233508295 -0.4704253684624868 -0.01813476475380031 0.8822534233508295 0.4704253684624868 0.01813476475380031 -0.9073069238785885 -0.4200745834998159 -0.01820687176395342 0.9073069238785885 0.4200745834998159 0.01820687176395342 -0.07684133681273105 -0.3297787419806832 0.9409258155106971 0.07684133681273105 0.3297787419806832 -0.9409258155106971 0.6901815481734175 0.5152408968621404 -0.508110469053376 -0.6901815481734175 -0.5152408968621404 0.508110469053376 -0.4966996466665293 0.01610676029339463 -0.8677730309673124 0.4966996466665293 -0.01610676029339463 0.8677730309673124 -0.881134842542127 0.07682235708589806 -0.4665830201690023 0.881134842542127 -0.07682235708589806 0.4665830201690023 -0.1213144463156395 -0.2131759170429181 0.9694528526483588 0.1213144463156395 0.2131759170429181 -0.9694528526483588 0.8530908677975752 -0.1294152237489294 0.5054578826592723 -0.8530908677975752 0.1294152237489294 -0.5054578826592723 0.8141298479637934 0.12262180609209 -0.5675883044295085 -0.8141298479637934 -0.12262180609209 0.5675883044295085 -0.4880811785711273 0.1805381361022135 -0.8539219780151801 0.4880811785711273 -0.1805381361022135 0.8539219780151801 -0.9999912747003552 0.003552551677254218 -0.002197703287318499 0.9999912747003552 -0.003552551677254218 0.002197703287318499 -0.1346111642919426 -0.2158289805333895 0.9671078976049597 0.1346111642919426 0.2158289805333895 -0.9671078976049597 0.8525449411428244 -0.09184820878287534 0.514520193845835 -0.8525449411428244 0.09184820878287534 -0.514520193845835 0.8136449843716227 0.1551782125971196 -0.56026918685759 -0.8136449843716227 -0.1551782125971196 0.56026918685759 -0.4241940190863471 0.3566789118496541 -0.8323698625089201 0.4241940190863471 -0.3566789118496541 0.8323698625089201 -0.7885453448267734 0.4251894335191658 -0.4443086593525678 0.7885453448267734 -0.4251894335191658 0.4443086593525678 -0.1578722346533842 -0.1001823560468188 0.982364419684699 0.1578722346533842 0.1001823560468188 -0.982364419684699 0.7547381467760184 -0.4464206061731968 0.4807067423960857 -0.7547381467760184 0.4464206061731968 -0.4807067423960857 0.9002415259777669 -0.4324451958902896 -0.05056033481525889 -0.9002415259777669 0.4324451958902896 0.05056033481525889 0.7844143326772589 -0.2204183251089915 -0.5797498742101094 -0.7844143326772589 0.2204183251089915 0.5797498742101094 -0.9025710500460156 0.4302776851145242 0.01505368098900894 0.9025710500460156 -0.4302776851145242 -0.01505368098900894 -0.169447414312871 -0.07903013995124253 0.982365416106435 0.169447414312871 0.07903013995124253 -0.982365416106435 0.6778264394276815 -0.7334119439036688 -0.05155810850131369 -0.6778264394276815 0.7334119439036688 0.05155810850131369 -0.3277013090801252 0.4836682562942458 -0.8115891016274529 0.3277013090801252 -0.4836682562942458 0.8115891016274529 -0.600818604466476 0.6729818318019348 -0.4314075319132346 0.600818604466476 -0.6729818318019348 0.4314075319132346 -0.168109825006838 0.02892536758904001 0.9853438028657862 0.168109825006838 -0.02892536758904001 -0.9853438028657862 0.5960519533842276 -0.6811383094854105 0.4251736965267298 -0.5960519533842276 0.6811383094854105 -0.4251736965267298 0.6424578954778484 -0.5591256064253487 -0.5240480977712446 -0.6424578954778484 0.5591256064253487 0.5240480977712446 -0.686028380622848 0.7271052101901491 0.02613569004889806 0.686028380622848 -0.7271052101901491 -0.02613569004889806 -0.1672295516339414 0.06358642472089836 0.9838653584975562 0.1672295516339414 -0.06358642472089836 -0.9838653584975562 0.39920329049152 -0.8338682103869164 0.3811830801161882 -0.39920329049152 0.8338682103869164 -0.3811830801161882 0.4366538340830543 -0.8983614567022195 -0.04775062609469216 -0.4366538340830543 0.8983614567022195 0.04775062609469216 -0.2165166026734769 0.5604185162959754 -0.7994070598633424 0.2165166026734769 -0.5604185162959754 0.7994070598633424 -0.3958679694135108 0.8145627101543547 -0.4240001674745147 0.3958679694135108 -0.8145627101543547 0.4240001674745147 -0.1469998294979731 0.1606429776852407 0.9760045511410211 0.1469998294979731 -0.1606429776852407 -0.9760045511410211 -0.136768733660074 0.1896331863226294 0.972282658560846 0.136768733660074 -0.1896331863226294 -0.972282658560846 0.4363462461146563 -0.7642185180490224 -0.4749442179589132 -0.4363462461146563 0.7642185180490224 0.4749442179589132 -0.4488771851408228 0.8930136607671422 0.03218500183811045 0.4488771851408228 -0.8930136607671422 -0.03218500183811045 -0.09539235174078843 0.2729278092741205 0.9572934294949438 0.09539235174078843 -0.2729278092741205 -0.9572934294949438 0.1991290195076902 -0.9116206733236647 0.3595766699312042 -0.1991290195076902 0.9116206733236647 -0.3595766699312042 0.2176395385321581 -0.975181896965417 -0.04066078083903718 -0.2176395385321581 0.975181896965417 0.04066078083903718 -0.1020037401273291 0.5870539910837483 -0.803095790396562 0.1020037401273291 -0.5870539910837483 0.803095790396562 -0.1981029154277355 0.8828490192222377 -0.4258319435615001 0.1981029154277355 -0.8828490192222377 0.4258319435615001 -0.2257163976554845 0.9735640404422717 0.03500238544942357 0.2257163976554845 -0.9735640404422717 -0.03500238544942357 -0.08666637759563388 0.2887481063349514 0.9534744202559556 0.08666637759563388 -0.2887481063349514 -0.9534744202559556 0.2265757343370749 -0.8703830190978558 -0.4371462417495055 -0.2265757343370749 0.8703830190978558 0.4371462417495055 -0.1011016926685244 0.89401217142831 -0.4364867524651776 0.1011016926685244 -0.89401217142831 0.4364867524651776 -0.06443845907698306 0.3425606426245449 0.9372832502058504 0.06443845907698306 -0.3425606426245449 -0.9372832502058504 0.09417392595617523 -0.9293129126988353 0.3570837184207755 -0.09417392595617523 0.9293129126988353 -0.3570837184207755 0.1141220961146377 -0.9931867733030305 -0.02358347969057617 -0.1141220961146377 0.9931867733030305 0.02358347969057617 -0.05548773687691596 0.5705667890661852 -0.8193745482201541 0.05548773687691596 -0.5705667890661852 0.8193745482201541 -0.1183653374329226 0.9923372552916334 0.03544599631351985 0.1183653374329226 -0.9923372552916334 -0.03544599631351985 -0.0684555174915373 0.3516846842717872 0.9336121919585343 0.0684555174915373 -0.3516846842717872 -0.9336121919585343 0.1174881387169572 -0.9006135153905983 -0.4184397604872339 -0.1174881387169572 0.9006135153905983 0.4184397604872339</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1518\" source=\"#ID1700\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1698\">\r\n                    <float_array count=\"5340\" id=\"ID1701\">11.7511075700318 0.3583314504512882 11.764113826938 0.2966073494687605 11.64874163027524 0.2666148420055631 11.67922688523208 0.2294239948543417 11.80501203783262 0.2597329687951067 11.70185613652651 0.1685657368748619 12.4858343118004 -1.543659787895465 12.35620128229077 -1.642348030436472 12.37014213645811 -1.572879572693973 9.637226671642088 1.364680350481991 9.61090967342226 1.423722268179847 9.757669766177051 1.458600648579603 -11.25074513113561 3.231416896444896 -11.22220681876862 3.285138753740969 -11.11921110687334 3.22075585534248 12.28376747293778 -1.999560740149355 12.28677901128384 -2.062924884329317 12.18069024183013 -2.088268714019175 11.28139424357001 0.5316017122378138 11.28710312913186 0.4614164684313329 11.17025632694921 0.4372445316544859 12.48109906978448 -1.635202447978954 12.47651913007674 -1.703586392220001 12.35042744299495 -1.733039371291702 -12.58928054554183 0.06216301397643055 -12.56894162462897 0.1114081662110007 -12.44955023869925 0.03574905171129115 9.631860544165843 1.557870607934369 9.497812823158526 1.523720021818169 9.617284226333158 1.618405232764888 -11.18949272428132 3.449144239678994 -11.05810558974406 3.43741573475663 -11.07295892218207 3.376204414341373 -12.55834831527949 0.3756636750632473 -12.41946690482045 0.3466109327424751 -12.42491019409979 0.2885444991789321 12.24844684724029 -2.123312879461341 12.14391992483101 -2.210964781929535 12.13185524271816 -2.148416937708864 11.10362118619226 0.6174771547469791 11.21011850529769 0.6417374482883845 11.0998287403512 0.5467664045441286 -11.78599969953858 1.710751197689483 -11.8855620736632 1.764594262627711 -11.7365061258191 1.75858363054145 -9.551783259955178 4.621116664514966 -9.662840828898695 4.676559090480197 -9.492566268341244 4.660835091232268 11.38554323625563 -3.321557092137592 11.40545417650413 -3.254893710166193 11.53983003230635 -3.221550715986149 -12.59169677899354 -2.122796224044397 -12.43562082373348 -2.164560503438635 -12.44094884273218 -2.216169764530545 7.641202265041214 1.895696582249834 7.619078313030771 1.954798365316707 7.78231669517448 1.993322558346813 -12.27829459142965 -1.703748294304876 -12.28112793941384 -1.632093876578818 -12.13612110978789 -1.658772972090705 -8.529836727396535 5.731344266683108 -8.427594279923671 5.680615208045538 -8.568355625367685 5.676890862560271 -10.5558308832052 -1.514031454146504 -10.72224734746335 -1.553273941902001 -10.72426341194342 -1.481590562917722 9.901866227340285 -4.581370473984669 9.89166102092414 -4.644122839366019 9.780757662061093 -4.663490218918779 8.085695976323192 2.077879605760174 8.100738048913897 2.008102183714081 7.979575249341611 1.990108275138057 -11.53498190250259 -3.316681344740469 -11.66957947655568 -3.328412254481368 -11.65909370702121 -3.26729082813857 -11.86203026914572 1.946394878990668 -11.82506593710753 2.000265651709518 -11.713026213673 1.93963474658876 -9.54517036640582 5.006371453637729 -9.500495426647175 5.052390847586421 -9.37517508163147 4.98887710026371 11.49481847640153 -3.29179345705857 11.34789180389087 -3.326009518851614 11.50257438308278 -3.226382213565422 -8.71465421451237 -1.379804449027914 -8.899460891690383 -1.414986989341083 -8.900828348592878 -1.343305510481923 -12.50063398471393 -2.511359052459845 -12.47993075853214 -2.469142127872076 -12.34275826300758 -2.548703173253112 7.650634743547147 2.080423905513628 7.50097610545313 2.043081385727968 7.641332124451248 2.141381620377886 -12.27910664578102 -1.702197090834061 -12.13693355798749 -1.657220998159356 -12.13393898952275 -1.728875822664083 -10.55417121041747 -1.584826029616713 -10.72258337245052 -1.552396825609317 -10.55616698065188 -1.513154147695452 -8.603671478312631 5.840246622676532 -8.462928433540144 5.844376860225484 -8.48644593388109 5.783986722030788 -8.709550488865627 -1.463861396178413 -8.895653400495181 -1.427348187082769 -8.710846085865644 -1.392167718974344 9.764709467972942 -4.591052007709738 9.642523311769457 -4.672177889576204 9.643657442806868 -4.6097231772181 7.862503877508484 2.168602812129222 7.973630028976386 2.187163073485974 7.868184169538051 2.098889834440856 -11.61166209426751 -3.285533223111407 -11.720650116989 -3.240170193241426 -11.58586587098214 -3.229850551162238 -8.90736420001609 -1.693443132595279 -8.772693913946812 -1.636771872927451 -8.769584837417837 -1.708420563732345 -11.85026428899129 -1.767171044881302 -11.71900528080115 -1.716384959328101 -11.71689193397437 -1.788058345725621 -6.910016250360373 5.946662107887122 -7.044647341963542 6.00422187278154 -6.852260934187974 5.982559747848794 9.84019893164926 -4.025687024838435 9.856494955260382 -3.961254764056166 10.00653083457654 -3.924861096892743 -6.638067216646483 -1.345359288150344 -6.836321842966829 -1.306448341398115 -6.638687654145084 -1.273671399404968 -11.75081178992731 -4.397855854827554 -11.57616745796078 -4.447374111762949 -11.58530307794933 -4.492049290094289 5.37702291505806 2.278329959008511 5.360781901794482 2.338381304480409 5.53452326255626 2.378601581676305 -11.8477921893205 -1.771132958242384 -11.85126880573113 -1.699491605392131 -11.71653327095071 -1.720346729027851 -6.873148465588878 6.401151793126798 -6.83283778030713 6.443462808145918 -6.681166082739154 6.377374685653092 -5.419357012291193 7.116504678474972 -5.305319877557924 7.079502459234016 -5.463162153526112 7.063573211728421 -4.655459356693084 6.995325433674931 -4.626086921802587 7.037947735836165 -4.455317341538341 6.969248692357329 5.655498462954247 -5.744194604771449 5.636338991945853 -5.804809935915466 5.511105391974127 -5.81833438087417 4.283585811329357 2.540206830049731 4.147031272120611 2.527920480424545 4.263197487979614 2.608196705412749 -7.074561868724527 -7.838162061056226 -7.206749484574333 -7.866852398479714 -7.22543730235367 -7.809439463264817 -4.860412953377663 -1.572443924051376 -4.862792608842701 -1.500777945388903 -4.707971743798747 -1.510382878151699 -8.887450137124446 -1.722623963248056 -8.889384558544389 -1.650947450254618 -8.75277785457949 -1.665955639667139 9.92682210424201 -3.958075097241356 9.763342186171791 -3.995528131591063 9.930154544309971 -3.895194613015674 -2.330319142117059 7.376517372491382 -2.313740820499123 7.421629125285861 -2.130277411320018 7.350861169815547 -6.634153617248702 -1.290603569206118 -6.831788439712278 -1.323378146720922 -6.832354045656597 -1.251691206748372 -11.55804340649913 -4.67002850371146 -11.530709130997 -4.634411703614915 -11.38147995351786 -4.715138926864015 5.45307607714408 2.402224524503437 5.293682289993164 2.36314331618803 5.450795908844998 2.463789693471995 -4.662590396667173 6.590241969402697 -4.814359942244378 6.650965200477348 -4.613858225403444 6.626658547327783 -5.448690196724442 7.228036718382651 -5.477468473182723 7.171809039680968 -5.606277686037295 7.210616162132875 -2.333424534969861 6.960100846927293 -2.496289861475915 7.02251322564471 -2.295906294290259 6.998564669389739 5.500119052534039 -5.649457324518996 5.355057718673635 -5.722785370369828 5.363628386658954 -5.661937685694299 4.044262872012264 2.620843011852068 4.034715684694127 2.688257489338354 4.159997221182063 2.701504338703599 -7.37973307514139 -7.626900832922628 -7.380552123611244 -7.681554051268964 -7.512942145240753 -7.652501078363416 -4.860067011239304 -1.5729691477404 -4.707625737843752 -1.510908198846842 -4.705317447933381 -1.582574182751803 -2.59798018382316 7.862746505542849 -2.623622721562295 7.811097138050414 -2.775833724389388 7.83534876715802 7.892172907163152 -4.448153975156407 7.902265876591466 -4.385721714301504 8.062059351078105 -4.347663972675512 0.2319925919531207 7.206532343959895 0.06816130944851562 7.270195072340188 0.2577986262042703 7.248876571234666 -4.43534120218764 -1.285571043633246 -4.635172112616091 -1.246046483930129 -4.435225602062978 -1.213882780525905 -10.54612546316951 -5.990830709765972 -10.35883664835906 -6.046660837012703 -10.37861698032135 -6.085245858175693 3.068068152694514 2.562005730214306 3.059319668505497 2.623211315275878 3.234485811533379 2.664099184091551 -2.472932049716599 7.657072584354313 -2.339166786449916 7.632342579577592 -2.517676201589121 7.607725635676184 7.996780603426274 -4.366274002562983 7.822659858598535 -4.405619625459651 7.992866929057401 -4.305465943855684 1.565689220693328 -5.742197169311714 1.42330873092626 -5.751318637004019 1.585935596180436 -5.683085201673474 0.8043760332373917 2.468542627601334 0.6492970871679638 2.460670291018974 0.7842362549579163 2.534497982085871 -2.002206848136053 -9.254831269223828 -2.148472010363316 -9.29166463676035 -2.177339718573044 -9.241948655833635 -0.9758413610236072 -1.436931287834512 -1.150083786011975 -1.503314959292955 -1.151575058569062 -1.431635573601411 0.2738593675876695 7.772017653651676 0.4278347807192724 7.756084727066048 0.2346794831337724 7.72592419907197 5.907692453773043 -4.674037290780482 5.732105461036365 -4.7138328932742 5.895277582598436 -4.61487214835779 0.2169948912253811 7.583141731566467 0.2217385568439489 7.632372909850894 0.4063657043943875 7.560404402649126 -4.43803618764851 -1.203049876265611 -4.637982349412921 -1.235214921452726 -4.637884718486797 -1.163526013779914 -10.21674864212124 -6.233487484420487 -10.17865369403322 -6.203606866566421 -10.02688022158651 -6.283636451017741 3.11920870580907 2.708073989677151 2.958546819406385 2.668514531492299 3.124488026943278 2.771086794235044 5.829999443512676 -4.78088651738005 5.831702891637843 -4.72001531707514 5.992787959884518 -4.681535576454031 1.308602043108998 -5.629715596612606 1.31659896308892 -5.569811842992579 1.471583570219683 -5.562007864425807 0.5648566816230188 2.546352756926723 0.5571291965500386 2.61136778732703 0.6995080653232744 2.620504899957761 -2.370329924725453 -9.101516649727747 -2.363738140221217 -9.150816033798021 -2.517851275225941 -9.135107000968814 -0.9726322791411207 -1.51136897875968 -1.148399643763717 -1.506060530120493 -0.974156837499241 -1.43967747798365 0.09957568526473282 8.060394533306367 0.08245892179569114 8.013088107374479 -0.09257567520009835 8.026497024254699 3.502873504952592 -5.140317135331382 3.495977393425906 -5.080597239283649 3.649387245675078 -5.043008776893196 3.009193443669416 7.235149636369333 3.180226204520791 7.219042807089095 3.163618156076048 7.171430411620039 -2.026516353178367 -1.225163681072475 -2.216742678481948 -1.186567282184263 -2.025715681231137 -1.15347749930801 -8.885526573798463 -7.365420354994246 -9.043114890063302 -7.272760969419028 -8.853007748615546 -7.331708013177096 0.4057049713076188 2.87232590006109 0.4037260882408361 2.935456226480028 0.5705267224989513 2.975387309320226 -1.717992636299257 -5.327359896265246 -1.873948693069529 -5.33375228873334 -1.702251379332159 -5.268413365094089 -2.14760700104281 2.214573506194116 -2.317503393053847 2.20952979502062 -2.163292701861009 2.278695629013866 1.79960164067864 -9.082815688629138 1.631709543548545 -9.123426758343165 1.607244250217268 -9.077744055211763 2.154039047972187 -1.41612137665319 1.962340231720186 -1.485340371765077 1.961568395405093 -1.413641410927702 2.823096509336607 7.616372447388669 2.992569485321149 7.605674158391179 2.793965568158571 7.572851756385049 0.4150848726677803 3.036069234949429 0.2621382507692666 2.997330172514774 0.4263288971082052 3.101013111112003 3.56247695294758 -5.02893947682269 3.395230171748484 -5.067768839326921 3.542138793106454 -4.970829615629748 3.136739787378199 7.517745302135942 3.134298610467179 7.573288329370655 3.307592227919256 7.500494766055173 -1.983401902069153 -1.305061582832618 -2.174432891914137 -1.338137098609991 -2.174040019480891 -1.266804611055238 -8.592566560726386 -7.458813957527729 -8.54280462143106 -7.43327987065158 -8.399439946335676 -7.511336804765615 -1.970736828585861 -5.204901381841417 -1.968684285651651 -5.144935859453601 -1.798783248688915 -5.139980847887529 -2.383501143674551 2.286889515974018 -2.385444755339911 2.349843312064751 -2.229495494405385 2.356337495586558 1.469176764922531 -8.96021891054359 1.469761844121595 -9.006357142621646 1.300103194212152 -8.997674044870172 2.154739198336298 -1.487743235738178 1.962299481474927 -1.485269955171312 2.153998287116803 -1.416050941875147 2.626583967550852 7.96515046597017 2.621561240056742 7.921349035419765 2.429245197731841 7.927903919207108 -2.821810924508073 3.103279072080304 -2.819929521407584 3.168805828902164 -2.669086534438531 3.206378696803298 0.6994712725026153 -5.584734164094565 0.6856613655126798 -5.525449147132722 0.8242780405826661 -5.489901612203209 6.359847567979582 6.589840271805475 6.511351161794384 6.58228800079966 6.497037649384467 6.52786439367146 1.136118008815114 -1.3541367237635 0.9626827840905849 -1.319201502848362 1.136984378566509 -1.282806822627216 -7.142186791714643 -8.418934448869473 -7.27715216566976 -8.328716936560284 -7.096960415400679 -8.388625975593255 -4.445607926770279 -4.903486594153658 -4.607923164654693 -4.908876254736006 -4.437571541655934 -4.843833397309046 -4.761145117444076 1.930669373578067 -4.937848609126943 1.926672623221713 -4.769968480963281 1.993258031385614 4.672247525821237 -8.396131131384985 4.48536014044886 -8.438484996226077 4.472110237845285 -8.39353720406524 4.832225930426402 -1.429496464971109 4.632054761285418 -1.499775441303044 4.632012267672277 -1.428080786019686 5.292085139575017 7.200117601997333 5.468511597729046 7.190868992203569 5.275278896494793 7.158172579607357 -6.715005820992449 -8.465240445498786 -6.656489422356748 -8.442174378515569 -6.531440210530288 -8.518434485722098 -2.849982679187054 3.255365277084434 -2.988144808445621 3.218739012992571 -2.836218607018078 3.322565869735572 0.734969993620832 -5.47633085997393 0.5837553854295591 -5.512908790872454 0.7089989322123519 -5.418433266106486 6.412198333676442 6.792860814700982 6.407336258415766 6.853478030631758 6.563662556121248 6.78483469898197 1.123935753957899 -1.244013941565833 0.9496351537245562 -1.280411568368693 0.9525784213012262 -1.208792958390632 -4.674657192016141 -4.813979298478399 -4.680878664536808 -4.753124991120459 -4.504130581882922 -4.749220826745997 -4.990010106693942 1.992706002798677 -4.984602815867615 2.054019724902083 -4.822295137886973 2.059548482311019 4.404105797540058 -8.298331951209891 4.392792560769895 -8.34403881793688 4.216194945195725 -8.337784011839139 4.830596591689094 -1.498300723312047 4.630440144446198 -1.496892769522193 4.830610844677027 -1.426612966687759 5.092095789300098 7.585500342429687 5.100437957282588 7.543868787570436 4.900284440353532 7.547980499809358 -4.991638143498378 -9.321723271056177 -5.101360381809151 -9.232957379059158 -4.93769114344884 -9.292567457289668 -6.63641337613953 2.897417884133284 -6.63574941786656 2.965483196330755 -6.503943037327894 2.999314420254909 -2.881302304196173 -5.981597491235704 -2.898033400248121 -5.921628277178476 -2.777076513557294 -5.889035517929381 9.675283058297397 4.884296525830756 9.811434693990076 4.886706320707685 9.793775942725468 4.827578484436574 4.84072609155517 -1.328961652662674 4.837280128415219 -1.40056638481864 4.685938922503548 -1.369739957893678 -6.833094823957079 -4.547716051575298 -6.992881285607754 -4.553794311763161 -6.833728383212693 -4.486667286146808 -7.143331466529048 1.62000307921671 -7.318627382169347 1.615337223185641 -7.144672864113284 1.681455119599937 6.823118365998865 -7.525883711952497 7.020138991313406 -7.5297739747776 6.822650218416566 -7.572447512508213 7.23925462210762 -1.471029974841085 7.041513054906684 -1.540496814225599 7.042216254670835 -1.468811191097894 8.039520787999589 6.281863912698821 7.860993247654495 6.252645319094622 7.866229289366742 6.294589168663884 4.633838008214074 -1.169493925283726 4.786253878579575 -1.200372830625324 4.631471169748868 -1.24116161152163 -4.412441470159707 -9.324613633964388 -4.345425296990303 -9.302104496132902 -4.244962845538747 -9.377270140223084 -6.811545597743727 2.972434633492441 -6.68009424977297 3.075144575806786 -6.690867514628805 3.005660808374025 -2.906764265025755 -5.855044453140191 -3.038861478094021 -5.888319479971751 -2.933955318136298 -5.796234381253612 9.661217020761617 5.06470008623043 9.662991148507999 5.130116127504268 9.79736412588867 5.067263396495124 -7.062642844247717 -4.458264204339328 -7.077225594179336 -4.396084900478645 -6.903280703871185 -4.391445087277297 -7.400489864010549 1.71497372868682 -7.386610048936788 1.775278586424206 -7.226837658517611 1.781581596382792 6.797980664975434 -7.467107702454814 6.774738985824056 -7.513942737987394 6.599563245383362 -7.507026474287089 7.230952417738142 -1.529042443945376 7.033890040178047 -1.526817186432799 7.231629130590562 -1.457345984156113 7.673258851264183 6.724450475222787 7.693037061773406 6.682451958648745 7.496217711227494 6.690087758993939 9.084353693772274 -1.319111524507893 9.08124316964604 -1.390761621698644 8.94644289848916 -1.36539143410556 -2.122078387325774 -10.00208375805769 -2.201213981231016 -9.912604145826347 -2.060998365996196 -9.970823085498482 -10.36145395883319 1.727643073678281 -10.36826270687783 1.797436554639876 -10.25092063156426 1.826111407225745 -7.302788296765607 -5.71292485615856 -7.315508704058836 -5.651150793420963 -7.208225962874972 -5.622316462952615 12.00762164630643 2.130906965942405 12.14333425160431 2.144921389086459 12.11480815354829 2.083458970657563 -9.01147670431353 -4.147318988706797 -9.16031446642654 -4.155694193450678 -9.019956751590648 -4.084443195800464 -9.499784712387529 1.190562468879321 -9.66063584151215 1.182940296825713 -9.494184982983033 1.251689310027092 8.888488434605261 -6.468869195710479 9.071981134836666 -6.477181350394378 8.876257251821579 -6.518217194559831 9.449581017394744 -1.533583026767532 9.263489409902652 -1.600493421685321 9.264909378501219 -1.528803687710612 10.74204251640409 4.236081915180562 10.58298996135551 4.215641454556057 10.58263680816121 4.26042846500789 11.97817099479863 2.388032088762603 12.1001885963614 2.336309752118984 11.96463109449242 2.321395266244683 8.94955662573258 -1.293678761542919 9.084318075882242 -1.319045317964265 8.946407283605279 -1.365325233105614 -1.271938694101185 -9.928031437397038 -1.20341461049748 -9.902784568929347 -1.126905379762219 -9.978419947729694 -10.497825757819 1.730956984221029 -10.38846337788417 1.830231133288248 -10.39039268238785 1.75944282011681 -7.350080799852286 -5.567341679963051 -7.467394613473013 -5.596398825712132 -7.371884119760878 -5.50640797543516 -9.227624357317261 -4.070860691418731 -9.249125598694668 -4.007064973847591 -9.086996006926507 -3.999940703037678 -9.677836213188012 1.1985652706594 -9.660276671109934 1.25868548089124 -9.511474984713074 1.267448410283861 8.904589273219317 -6.471995615186978 8.868608555860567 -6.521578396033776 8.708070364481475 -6.510608542178119 9.466110887185232 -1.638715877420245 9.282416480764914 -1.633893235501636 9.468514529913994 -1.566993928649501 10.48592711437888 4.715293816681878 10.51070203369348 4.668373332705535 10.32799520245106 4.690042235478756 12.80486521953163 -0.8782814391745923 12.76547364041472 -0.9382285777631791 12.65545705626428 -0.9023891281087371 12.12899766129329 -1.401324537281521 12.1256474180299 -1.47296536932822 11.99355444745457 -1.453521176212834 2.450557641251624 -9.960457440974377 2.385112537396675 -9.868195954726444 2.507453081917199 -9.921215071861347 -12.50017367973961 -0.3002120353238359 -12.51736773444045 -0.2307114140535312 -12.4016543712185 -0.208325441626296 -11.31702622516923 -3.882319793084444 -11.31783722991399 -3.819021305481295 -11.21230911780348 -3.795136180876889 -10.97232743341756 -3.524036664092204 -11.10471425181361 -3.536197113836563 -10.98596087060906 -3.458913991657148 -11.51252168042142 0.2167492199166049 -11.65660456383353 0.2048937383174073 -11.50600445487997 0.2782225287412058 10.69986673017178 -5.100742504571175 10.86240712432025 -5.116540712177234 10.67670547056583 -5.154850177388828 11.4721612945527 -1.677785269115702 11.30663328587778 -1.740522549709934 11.30968541096649 -1.668815866040309 12.54453637999385 -0.4881931679631666 12.40354295669747 -0.4884526708754607 12.41427349473641 -0.4383515736005559 -11.41525151366383 -3.757926099376388 -11.30947888679122 -3.671534607656464 -11.30001538574395 -3.73432778173633 12.67982608702496 -0.6526133562864981 12.80520729639552 -0.6906594461761093 12.65623358192334 -0.7163771927821439 11.99779492031956 -1.383174232516103 12.12980745857956 -1.402614824016195 11.99436429876233 -1.45481154969608 3.60717405511408 -9.676036288434755 3.479477180020098 -9.63151417155848 3.540819205812205 -9.598174555880148 -12.43302030043936 -0.3287568177167912 -12.53900283543621 -0.3513625420158977 -12.44142228460851 -0.2588581133065578 -11.15471087317843 -3.472626616724449 -11.17976007256005 -3.406911101337614 -11.03561235820559 -3.395672867062525 -11.70086636038362 0.2141423120066185 -11.68299792789481 0.2751456870041583 -11.55072512587131 0.2880511314757954 10.73356229972205 -5.188328353794971 10.69032941602382 -5.241280019104381 10.54708863732899 -5.224242239066612 11.45383296354241 -1.722063991014747 11.29045016656386 -1.713137945542501 11.45597201205626 -1.650390602830048 12.54463663922744 -0.4076613325349839 12.55082262326936 -0.4628684289043794 12.4036434459555 -0.4079891775768366 -12.65569185398602 -1.169249139555992 -12.64353284420654 -1.106743826280584 -12.52680569774861 -1.088851847172841 12.05871853022702 -3.350578699342806 12.01416131808036 -3.406984902372559 11.88893433846377 -3.382057961237903 12.61119451716407 -1.347722082746238 12.60825385037884 -1.419372881934045 12.46349946185979 -1.405766526284072 9.372753069548914 -6.826669456542838 9.341903634887348 -6.880066072183239 9.246424773456054 -6.793235031655539 -12.41544912202189 -2.11068914694666 -12.43944944405991 -2.043064808079661 -12.31191969123731 -2.027002528104643 -12.36297081163629 -2.367266624861024 -12.47829684347289 -2.38454092736979 -12.37670701094712 -2.299516606085756 -12.66321426546362 -1.702928137463743 -12.53627522414027 -1.622539058675648 -12.53767311767731 -1.685131291994166 12.10574180111742 -3.181281925643665 12.24594327988267 -3.207657439083207 12.07890548625666 -3.240568229280981 12.52595228513887 -1.751084798291482 12.66898298612503 -1.765278581672329 12.52306856073473 -1.822742037189923 9.33534389651027 -6.958645758985928 9.20737179672318 -6.929528861830943 9.248900211368236 -6.884760127191098 -12.2665712719432 -2.162590626953528 -12.38358300437334 -2.179292666433531 -12.28066968680266 -2.095137082537539 -12.65285949788222 -1.109989690573223 -12.52323082400572 -1.030334582109835 -12.52553936775479 -1.092836865914159 11.98844996477916 -3.197436251760613 12.13069697648554 -3.222545336953552 11.96156052567574 -3.256113187209982 12.46693195861506 -1.335262028415724 12.61184729655287 -1.348868363108499 12.46415154922206 -1.406911716927027 9.960651652020729 -6.296388625829933 9.831631619741811 -6.270073037143662 9.869920573776625 -6.224081119200225 -12.50686129074443 -2.314236210271567 -12.53045450004144 -2.2463920063556 -12.40457651968336 -2.229729067781244 -12.65764569784601 -1.770379013887815 -12.64653912048994 -1.707703395993552 -12.53152156450983 -1.689200050655647 12.18052147902099 -3.359975420344078 12.13607137932328 -3.416758660398563 12.01284562633077 -3.390812983687816 12.66876876421716 -1.764878543277706 12.6658756697165 -1.836537275609132 12.52285468214147 -1.822342538278277 8.609688992076844 -7.529370084866654 8.519939622033421 -7.44061825578067 8.644724673637041 -7.477310262533923 -10.97872514983905 -3.176271397022086 -11.00362475730813 -3.110778589707141 -10.85739946068847 -3.100059011764498 -11.5176875760932 0.7092605091613835 -11.49953625105054 0.7701369617804559 -11.36547436901504 0.7825306793890203 10.55314563047167 -5.10071401653749 10.51032641872906 -5.153209647762414 10.36501128457285 -5.136964157061804 11.23519680359556 -1.302906009348238 11.06805100198852 -1.294541538735637 11.23721252493439 -1.23124048414316 12.50186716805469 0.4704908240560266 12.51194722056576 0.4160883379895734 12.35870483601279 0.466270169710504 -12.32799508885498 -0.4553170820301346 -12.43350405564735 -0.4785674476013411 -12.33553343845589 -0.3852304043669551 -11.09877758993566 -4.36067689981097 -10.99487070715988 -4.273731861119688 -10.98399332400003 -4.336432349041786 12.67978119066266 -0.5531317061606933 12.80400957092096 -0.5926070613969773 12.65686981033747 -0.6173361093411353 11.78944218985733 -1.78759904768878 11.92102975599541 -1.807658706785934 11.78611302416578 -1.859246062830769 3.009827715546834 -9.900687031758661 2.880976245831566 -9.855226303338512 2.943696062422529 -9.823047723827436 12.50888391781161 0.3216735036803493 12.36568269077752 0.3183687848415268 12.37404480769698 0.3674486865928813 -10.78304494723833 -3.243630274933168 -10.91720755594061 -3.255330048166043 -10.79627666252484 -3.178730341222819 -11.32346144242302 0.7076562092449756 -11.46952920599622 0.6963336073255722 -11.31686723566741 0.769023699798105 10.50373782542462 -5.04724955652355 10.67018938326244 -5.061853920087253 10.48272699052472 -5.100197873493039 11.26614980478779 -1.280471690910523 11.09697870003657 -1.343756897076463 11.1005080690211 -1.272025839606709 -12.384239433834 -0.432824104206995 -12.40041367429001 -0.3631932039182677 -12.28528561642618 -0.340131141351152 -10.99211139691699 -4.481750717083936 -10.99430616697351 -4.418520052553081 -10.88924686466424 -4.394042004634568 12.81067519578389 -0.7970280096254434 12.77222748151188 -0.8573021509194796 12.66312963038722 -0.8202125189009921 11.9208160002482 -1.807314416007229 11.91743341116261 -1.878950862335088 11.78589926007625 -1.858901758550291 1.848419662804386 -10.12978471306633 1.782984531484846 -10.03776233389912 1.906430436587999 -10.09171290314908 10.20666488269885 5.087294122505678 10.2305678746692 5.041484398560948 10.04685616923963 5.060956776633804 -9.006288800138961 -3.748441605221089 -9.027164882110668 -3.684796899778404 -8.863475201699187 -3.678004356093722 -9.449186803979133 1.625186316632568 -9.432011733925535 1.685272337035473 -9.281715206985069 1.693696897317436 8.685496093523531 -6.331191571803228 8.652209435617502 -6.380089789830738 8.488794948356155 -6.369875881142802 9.254008116316827 -1.244250730827939 9.069836441402108 -1.239744009708454 9.256997305459809 -1.172504485791101 -10.16122891842905 1.564891742858978 -10.04979012739954 1.664673375439497 -10.05283455540317 1.593930036935231 -6.862262658907012 -6.010351054192642 -6.980566207957457 -6.039904793698391 -6.884938134890659 -5.949664134598572 11.75802067617219 2.584466801050537 11.88108250228669 2.53143940402498 11.74646722921003 2.517644949600686 8.522399445709763 -1.689487240978495 8.658334509583158 -1.715454894054223 8.519266185796891 -1.761130704125859 -1.664165435586172 -10.02305670722691 -1.59551122158466 -9.998254150616866 -1.51683436536705 -10.07385749159181 9.242694828956012 -1.147379502241755 9.055538230655557 -1.214626373655277 9.057410761192328 -1.142893633184489 10.46501222902741 4.656623637030224 10.30408920376134 4.634886945094705 10.30364790952062 4.679293071907598 -8.795398834234536 -3.818856806584465 -8.945727459214881 -3.826919169142748 -8.803148251901336 -3.756188675287935 -9.227771109217517 1.578836572124709 -9.391452607341753 1.571746072678496 -9.223697770384634 1.639826471334134 8.693598956660441 -6.353753564243794 8.877594274087761 -6.361531191755919 8.681789113876736 -6.402933013520544 -10.01996557750031 1.550999274153101 -10.02587649754419 1.620706009993815 -9.907379428424823 1.649980627921826 -6.821919025668692 -6.14610654843118 -6.835464545181348 -6.084559739604354 -6.727168781035482 -6.055294668541154 11.80041999329114 2.271527478084729 11.93519378561261 2.28432826873254 11.90848383001835 2.2234872251927 8.611138849341353 -1.625472086113976 8.608466736303766 -1.697078852308228 8.472076281668169 -1.671158740253725 -2.468633823712594 -10.06620892042703 -2.550532120980076 -9.976997130530403 -2.407826778044897 -10.0354007225572 6.995528453012118 -1.140876074560704 6.798107797378934 -1.138785811654543 6.996732712130455 -1.06913446543155 7.382121241746031 6.981366301073618 7.401145999132933 6.93955674245358 7.203274077684113 6.946462103937839 -6.814484289843757 -4.115830522645906 -6.828269915909444 -4.053807534298573 -6.653588964125098 -4.049324897465911 -7.148491861092352 2.081354636374249 -7.136604853594141 2.141708529551244 -6.976160686034473 2.14784048489019 6.563786217306237 -7.311678873906014 6.54097211060618 -7.358399657742611 6.36642046685613 -7.351521303566818 -6.54453223029536 2.667205959665146 -6.412818768082149 2.770179291646056 -6.423520641465728 2.700826753839058 -2.482274595752971 -6.191574042000407 -2.616328001531191 -6.225231121947041 -2.509616234827305 -6.132931656751304 9.345558165255701 5.063449079855373 9.346634810264414 5.127810654644573 9.482585968803866 5.064737479412169 4.317137415221328 -1.484869527486346 4.470612995110384 -1.516221492013397 4.315564814228122 -1.556496458053652 -4.676235300981285 -9.403074500992307 -4.609747957676477 -9.380676349437215 -4.506572053698067 -9.455774414978977 6.596893943548481 -7.392897065063066 6.794277423457221 -7.396564769961881 6.597862369519566 -7.439215602822574 6.985984887813427 -1.0498681657361 6.787363344783888 -1.119525461935276 6.787935461027244 -1.047820539550652 7.755333398450116 6.562274915611136 7.574984539328181 6.532534429843814 7.581235023639417 6.574351236803325 -6.592371493893364 -4.19651823268738 -6.752827919446442 -4.202448375300211 -6.592113131376907 -4.135673155488729 -6.916136912060805 2.017210917283385 -7.090808537580687 2.012586859501398 -6.918270238023179 2.078739436371168 -6.149425158498467 2.478790466936847 -6.149253515248045 2.545970180994254 -6.015504705438904 2.579986852946841 -2.637472509766389 -6.212799151777316 -2.652095706301727 -6.153252163151674 -2.530672372543877 -6.12056296136997 9.351491749881207 4.906144350204793 9.488520477649306 4.90737041187993 9.471780340063642 4.848704335568009 4.507297532295667 -1.604395875697794 4.504944661909446 -1.676066060094372 4.352244615765225 -1.644659557820761 -5.270124677222283 -9.37029322018936 -5.381175090109571 -9.281254103902617 -5.215448961530498 -9.341207795089582 4.122873715004327 -8.146010565467357 4.112877663302318 -8.191663076201058 3.936544639553558 -8.18532608408208 4.561813399212211 -1.080709618089091 4.361900160071912 -1.079267361410594 4.561679228117796 -1.00900336095539 4.833668307301942 7.785733192443573 4.840620800523403 7.743985024605916 4.640833118274078 7.748079011563347 -4.41598624761245 -4.461376315547414 -4.421266357998611 -4.40067284271783 -4.244816876807863 -4.396754015369652 -4.720612583349852 2.389534302170822 -4.715966408932523 2.45097708950702 -4.553951170628647 2.456517917479299 -2.307617779750301 2.768522566204381 -2.449382623557622 2.731811741999078 -2.29496724698255 2.834961220887902 1.034081215329108 -5.73308776835111 0.8809392675790967 -5.769827445210334 1.010450103364412 -5.675359133583689 6.051864446645339 6.700095221426143 6.046697713305678 6.760083624629706 6.204155440353516 6.690419458153252 0.7488717005912665 -1.555686139636162 0.5724847766132585 -1.591709857400316 0.5739976009859282 -1.520025654516796 -6.926171551203142 -8.546557651729312 -6.867067328007344 -8.52344614993936 -6.739700382327774 -8.599876656362721 -4.494967276111895 2.332740730700843 -4.671410304881282 2.32872303384572 -4.504594488378645 2.395468373229717 4.395942794974027 -8.262772761993997 4.210647281638136 -8.305003158130973 4.19605015491683 -8.260093829183644 4.570996180733671 -1.025574562700629 4.371214418330106 -1.095833822139671 4.371148961019417 -1.024147534574344 5.035509217316668 7.422872573621149 5.211643039556949 7.413694765287754 5.017392164864599 7.380850961997692 -4.171122432750728 -4.57572133533232 -4.333144827386039 -4.581131115681554 -4.162191242596482 -4.516156289113875 -2.458669363867656 2.7387128058276 -2.457078264233756 2.8040125505039 -2.304297259137402 2.841902358948021 1.09231448622795 -5.902277782405346 1.078922433964342 -5.843001872384594 1.221041602584383 -5.807148883455373 5.987096467794622 6.478110335887901 6.139444998970969 6.469012359531159 6.126295812886302 6.415883228653295 0.7453169334198506 -1.621146816108716 0.5704435485795745 -1.58549054141068 0.7468302339666205 -1.549466100695817 -7.334485071759142 -8.477131431240766 -7.473649706707226 -8.386514171421744 -7.290506476301554 -8.446548564280741 -2.098847792893515 2.685493026713632 -2.101562623139219 2.748640097582635 -1.946652911427402 2.755352593217332 1.118042483791234 -8.799552045066756 1.11965665155499 -8.845888816318643 0.9512384933315982 -8.83670113599182 1.850926235173381 -1.086204573293112 1.65985189401549 -1.083517053319359 1.850166664877299 -1.014520757574574 2.363827407638545 8.144102598588487 2.357464296021962 8.100013130982363 2.166512633836213 8.107100324117647 -1.654018086113767 -4.883663261199155 -1.651188312030996 -4.823726610454544 -1.482529572603976 -4.818557729567542 0.7130155373425823 2.651006291596271 0.5588685652545239 2.612098167966966 0.7236986818861274 2.71577507161638 3.830562306201437 -5.368670940462613 3.662019833756067 -5.407673145590995 3.810951928235616 -5.310476143973094 2.80437199120271 7.313172771687545 2.801607994156937 7.367255815762408 2.977416671848828 7.295280933654035 -2.224616454200606 -1.562786838772382 -2.417419691672722 -1.595986983696869 -2.416688818738356 -1.524298689023984 -8.774736349927576 -7.528586471202103 -8.726139507055493 -7.502687951927533 -8.58134310482477 -7.580950619557902 -1.408873593820574 -4.997598241305949 -1.563790167595054 -5.004212007633296 -1.392542887173823 -4.938714711342757 -1.859160126505554 2.610188372488169 -2.027849870667152 2.604919982756548 -1.875433482005458 2.674480053033163 1.453679384195578 -8.941070146126073 1.288067980337448 -8.981386222634415 1.262706674973999 -8.935479853824777 1.846865663741822 -1.008850917499873 1.656551738177079 -1.077848656130837 1.655732390862155 -1.006151611841464 2.558181174890236 7.821672832349775 2.726379570216166 7.810596657096884 2.527826511619968 7.777949872365016 0.7132923215439879 2.473263725787787 0.7106770075571484 2.536171621576784 0.8787997701654743 2.576270691666576 3.759510439559334 -5.472440823096785 3.753463703825632 -5.412633011138889 3.908083878822776 -5.374904732296241 2.682091223494191 7.030559168182665 2.855314143943235 7.013768587108697 2.837913257548257 6.966726883859018 -2.223656849002984 -1.640635978902495 -2.415713396574841 -1.602145277088453 -2.222909955188781 -1.56894586500164 -9.050516483925627 -7.410757528668856 -9.209787098441 -7.317949596276657 -9.019348877702974 -7.376634490350832 1.697502317924618 -5.294682633479368 1.705796753595047 -5.23476822870661 1.859022430031686 -5.226539656524509 0.9127695908682582 2.929142619981067 0.9046753539880192 2.994386464476215 1.045306974506275 3.003866316954733 -2.852304508049135 -8.871373931110664 -2.845707726618828 -8.921158489681597 -2.997818615308108 -8.904422345486658 -1.334627950085952 -1.107925416321959 -1.508297041939358 -1.102230561117066 -1.336211244628552 -1.036236293883046 -0.1794628195224153 8.218083610584095 -0.1977017200032567 8.170375742098575 -0.3705828417329244 8.184733908601919 3.375767217196071 2.308153242887666 3.214846562542849 2.26857293635952 3.380259062582235 2.370995505285141 6.136315951452007 -5.017286823936844 5.960464097215232 -5.057110950476266 6.124780395559567 -4.957980398091789 -0.06704880469158514 7.350716944663623 -0.06117980584706029 7.399491795664938 0.1238503664716351 7.327540257551025 -4.67783035036379 -1.621194972144799 -4.878042204659717 -1.653334153169956 -4.878004608082469 -1.581641637668117 -10.37115670773018 -6.274220909050738 -10.33425308430402 -6.243844122877992 -10.18221957071258 -6.323940738275458 -0.004232924985846931 7.95240649886845 0.147873622055682 7.935698045174173 -0.04423009869420236 7.90605158290125 1.962749913697262 -5.415578131163847 1.822118865456829 -5.425063235931637 1.983243981756268 -5.356344002684999 1.156927904468648 2.848123352417505 1.003693724209805 2.839886841481066 1.13654545892024 2.914264281424826 -2.476916208744934 -9.048959457634956 -2.621151646294559 -9.085311566589974 -2.649805299482749 -9.034827409385668 -1.342398382200816 -1.02623461890846 -1.514482776209679 -1.092231150589784 -1.516090294364559 -1.020554580890207 3.336023835185211 2.147935042298134 3.326520467642515 2.208948332319827 3.501964781780644 2.249827246915131 6.052622359824317 -5.11857877159223 6.05522629012431 -5.057565183017478 6.216573657015632 -5.019074926685732 -0.05796615110722797 6.945523440983375 -0.222165372957612 7.009069692564981 -0.03098343685176613 6.987383305072504 -4.679601311064838 -1.686130291904414 -4.879787515265439 -1.646582948976887 -4.679575881593458 -1.614442917434452 -10.69460775802846 -6.000304079270098 -10.50825931221148 -6.055741141412557 -10.52692934012396 -6.094971580192127 -2.898582639239244 7.978473755161456 -2.924810950690469 7.926386604318082 -3.074461073923867 7.951937389010737 5.961235690597919 -5.259702621472934 5.818415232090239 -5.33379957274834 5.826665572644673 -5.27275469343931 4.434896957154498 2.954518283821356 4.425396474250939 3.022163397211926 4.548941619145452 3.035913493232552 -7.928733881473471 -7.161088971257506 -7.931487706704195 -7.216334315697288 -8.061309020115044 -7.185487106032205 -5.290413443198625 -1.170237123120773 -5.140213237867658 -1.108684532559328 -5.137758472341445 -1.180346242909811 5.586707111893005 2.005226148885543 5.423611946354424 1.965816605674983 5.58331964496062 2.066637961064173 8.086766887922842 -4.734242544178417 7.908772394784966 -4.773935602516881 8.084026552988988 -4.673232652652759 -2.528929756813687 7.117309148078553 -2.510768963715936 7.162016021661472 -2.323097951495859 7.090635940766004 -6.755354382104422 -1.693800891803944 -6.957102582424996 -1.726234064856547 -6.957752504053442 -1.654548510803827 -11.63160338534523 -4.730076255950982 -11.60547293920549 -4.69357706720524 -11.4531390611676 -4.776153301574279 -5.283216725116196 -1.181073503757906 -5.285608515755107 -1.109406222731755 -5.133015219781264 -1.119522876372159 -2.782413739378928 7.801418052945049 -2.650849913367678 7.775621166014061 -2.827340303880749 7.751731110995292 6.112393901533349 -5.347056820956262 6.093739862146821 -5.407880871683303 5.970254604697834 -5.421959946138604 4.669320995111029 2.879182415103628 4.534692555436073 2.866343082675042 4.649168409313785 2.947362842856425 -7.648030350845747 -7.387641485502368 -7.779664505991857 -7.41501161470896 -7.796137095031223 -7.356839996860479 5.552914865208011 1.829306659365208 5.535590155000075 1.888883788096568 5.71322432990287 1.929535255277966 7.964633224573237 -4.807871056112734 7.976133678429006 -4.745265185184799 8.139625789198648 -4.70688697786903 -2.528594867949669 6.684583377198657 -2.695417752298258 6.747507376544613 -2.489227998806731 6.722603735316603 -6.751848338029388 -1.776528706288633 -6.954242635055792 -1.737272293869908 -6.752494041217103 -1.704840635693085 -11.83725289052072 -4.401841155863288 -11.66097858024856 -4.452869222440723 -11.66898604983954 -4.498639490704582 -9.53249314499655 -1.308870011824171 -9.397222114022787 -1.25309476580195 -9.394109736128241 -1.324744920637735 -6.07664978592382 7.173193960766203 -6.103338704087622 7.115948318174731 -6.232783871517043 7.157537586842094 10.37648397206477 -3.897710789700178 10.25659062512971 -3.979962745491175 10.25507731374031 -3.917404858724004 8.532377408238872 2.311061616736219 8.642985367837051 2.330600433380355 8.535913937221793 2.241117638589904 -11.91205011993709 -2.320528819902856 -12.02034418655708 -2.273491796878998 -11.88145791361551 -2.266006419408402 7.807834323710092 1.651513842409313 7.656418858796545 1.614125069673707 7.797369590113298 1.71207296755184 10.06320249162475 -4.297709022518156 9.897670607826914 -4.335348400675064 10.06756059465632 -4.234545821510379 -4.867331534120142 6.743138454598218 -4.836175219394534 6.785610561645462 -4.663545020610643 6.716340799978944 -8.86483094254511 -1.810876003588292 -9.051675172817209 -1.846049770724518 -9.053044462274221 -1.774367993559676 -12.53796431191397 -2.482947997677218 -12.51786683559621 -2.439535546338487 -12.38003317543516 -2.520612948411473 -11.85528740434087 -2.327309914645031 -11.99407172913327 -2.335885993386978 -11.9785568191176 -2.27535506048683 -9.533607646370111 -1.30720552973486 -9.536698422091648 -1.235557963230162 -9.398336732194387 -1.251430108413614 -6.055979939673919 7.078045015240623 -5.9424757760723 7.038844661266436 -6.098830498806445 7.024616000014126 10.51473644385175 -3.869709999316458 10.50645336712173 -3.932660177131321 10.39610476477002 -3.953086368156631 8.745997637818071 2.225916445333043 8.759574378182951 2.15593206901716 8.638249174645935 2.136937988450678 7.785192566295808 1.474390119993029 7.761798058242829 1.533332604647699 7.926845051899381 1.571709504981269 9.919531204534646 -4.343346287313191 9.937478950054636 -4.27880301535551 10.08928126454663 -4.242397932228659 -4.877372381696564 6.313616204722505 -5.031078100311892 6.374878601486425 -4.826906612317598 6.349960281804901 -8.864356051845189 -1.879849833307386 -9.052503024976716 -1.84332657968205 -8.86565893110614 -1.808152364153048 -12.60903942234756 -2.121651783403514 -12.45268788305704 -2.163195346911977 -12.45659475734584 -2.215850644018715 -11.51691709922873 2.476461820338925 -11.62084392495891 2.53117823002547 -11.46486178049607 2.522679131101929 -12.13104627836616 -1.364738488656472 -11.9966660992387 -1.315112784977395 -11.99344198376447 -1.386756714956942 -9.18205942245195 5.586919646267766 -9.041947562561358 5.588038733954915 -9.063776573984292 5.527243334453584 12.25338539400007 -1.321155089707019 12.37380760929147 -1.294860363414141 12.26754818949819 -1.383453184652214 11.54664151536995 0.5417516285613228 11.65828698993112 0.5671488483402105 11.54047918918483 0.4711231424537827 10.0927984075173 1.033838649760322 9.961312217475891 0.9999430953316305 10.07861404678267 1.094570872183027 11.78322974669136 -3.367385784440664 11.77558251065819 -3.433180821791243 11.63231947639032 -3.466871295603748 -7.265919129208221 6.081844855271687 -7.224849007093395 6.124892761890315 -7.078729505847892 6.058419459761951 -10.91926882018418 -1.94383192007079 -11.08097045308499 -1.983684067927202 -11.08309483002521 -1.911998750482731 -12.4726821717837 0.496177088471065 -12.45046514123785 0.5459422040659078 -12.3341822002504 0.4714730027772049 11.70574035499175 0.480366920339075 11.70805645885311 0.4102288978730836 11.58722387565817 0.3848824012390528 -11.58016418241329 2.733974862100241 -11.5405552925432 2.786344405078555 -11.42428200007916 2.724407891622082 -12.13068296398171 -1.365352966054599 -12.13400475699386 -1.293704568748746 -11.99630283859884 -1.315727172312938 -9.138252340458594 5.506413496058661 -9.033963990818558 5.452237834898119 -9.174077058409401 5.451216598813812 12.38222238834931 -1.186004868217785 12.38841036225223 -1.249032337624003 12.27715789377621 -1.275475289412604 10.06111268902415 0.8783291807048352 10.03584408975434 0.9377413103906218 10.17918295237725 0.9723636798977079 11.85555814392415 -3.337898767948163 11.70557524831283 -3.438248405328156 11.72376463514016 -3.371047484659703 -7.29985252635149 5.632317092451797 -7.429891834498812 5.690382559485976 -7.242306974483165 5.669003058538641 -10.91599378072267 -2.018252132061735 -11.07986989305261 -1.986435654276152 -10.91816800630008 -1.946584143843258 -12.42227401924783 0.8240756248723802 -12.28453404134056 0.7968687796958828 -12.29319271164968 0.7385693871397112 12.49587540671732 -1.360860892365796 12.36295742521957 -1.460026814667689 12.37772912847813 -1.390834126925765 -9.307203493878756 5.021933024813878 -9.420655215874328 5.078787217490511 -9.24828496381245 5.061495627257565 -12.22005846191051 -1.284455335573171 -12.07570275014442 -1.24035236218049 -12.07287426756643 -1.312013860961375 -11.32541633850511 3.434413206941159 -11.19244566749135 3.419768997132918 -11.20782468994037 3.358986077727649 11.56536228873711 0.7062842546849588 11.69379309139232 0.7374199887769545 11.58840770718205 0.6457244067831381 11.86935030655957 -0.1394753845984964 11.88195605126427 -0.2013348809135664 11.76677739165537 -0.2313483582302403 12.46786528678107 -1.800299450787113 12.46410551101153 -1.868943189312627 12.33805436555191 -1.89841483110699 -9.734687322955081 4.674007459041356 -9.689850086554676 4.720386835041382 -9.566354565900097 4.656403604170048 -12.33255403938178 -2.122855165481417 -12.33545636569393 -2.051203137338621 -12.19156916029628 -2.077743322433938 -10.99941322477048 3.400618047498766 -10.89638257905871 3.336512341496549 -11.0291521818851 3.34678584470159 11.62484226876936 0.8525172438219261 11.63818476646006 0.7909569622150322 11.52037569022122 0.7601733153954268 12.48705474982978 -1.421880788829585 12.48223820570867 -1.490054199808836 12.35337655444479 -1.520412300898939 -9.302703979954591 5.369515914144409 -9.257876882689953 5.414884242836538 -9.130626889992897 5.350503041455451 -12.22308779399504 -1.278472813032307 -12.22631644227562 -1.206661203836048 -12.07873344403525 -1.234367081302732 -11.39281260164922 3.2274297996298 -11.36397060252387 3.280657370285635 -11.25963064459668 3.214026345768237 11.80679329429891 -0.2988756151001704 11.93239133630643 -0.2686005413702315 11.82878013004725 -0.3597496585694814 12.46525608673323 -1.725749216076382 12.33622436346849 -1.824498607881888 12.34972578035463 -1.754914317992754 -9.731010887276227 4.303406183702024 -9.841167973317862 4.359903175765347 -9.672570274553641 4.3439453136875 -12.33327546491873 -2.121491411150122 -12.19229098852439 -2.076378789293232 -12.1893013512536 -2.148028068226123 -10.96772363310613 3.574557208880395 -10.83508641568019 3.563274984844765 -10.85199430642135 3.502250296806055 9.700133063558514 1.743658575729361 9.675027660501458 1.80290205883731 9.821699615209198 1.838203548580862 11.47800853430719 -2.915348728565967 11.49633724071634 -2.848609871224103 11.6312737384087 -2.814856631457098 -6.900726105013796 6.22656702556824 -7.03479990182481 6.285183918536337 -6.844231722584246 6.262991198781813 -10.60144102941807 -1.15106999200425 -10.76904811710645 -1.118375178178658 -10.60377278843672 -1.079236897711498 -12.5682138679312 0.6378465452335149 -12.42839533722483 0.6077877373566288 -12.43660708192508 0.5502878556221654 12.23061907081295 -2.454653074775718 12.23373972650387 -2.517889021226826 12.12705473567593 -2.54302444309913 11.1732183855626 0.2551194588039639 11.17854851734805 0.184854247527237 11.06178346568833 0.1609178037127916 -11.90903053033802 1.636482560800483 -11.87289176243844 1.690784921230413 -11.76074688627157 1.630295798825836 -11.76441272620189 -2.179493610854456 -11.76781658168089 -2.107855769700681 -11.63438572200886 -2.128497280899822 -8.402633560607434 5.627589924418487 -8.30012860573321 5.577389588847734 -8.441540378288249 5.573145862066023 -12.60725249136976 0.2966003197098835 -12.58587124961738 0.3452825968043923 -12.46643685487813 0.2695750413438101 9.733639939633211 1.892563068586766 9.599010494811875 1.858059393910534 9.719859357185387 1.953172052342427 11.56166904672407 -2.88826796474278 11.41467808579627 -2.922752577261916 11.56862950572229 -2.822911710336432 -6.878912733142323 6.618128731079663 -6.839257541258856 6.660587239864112 -6.688718108597476 6.594034362371139 -10.59400251335704 -1.104556747342412 -10.75928011103576 -1.143689097738676 -10.76133003500066 -1.072023560709993 12.1934068264344 -2.567321203650689 12.08853369849534 -2.654732170220955 12.07687120306518 -2.592184588071366 10.99374630875812 0.3422381603101748 11.10082227227301 0.3663227964335915 10.99021769238728 0.2715174848468587 -11.82991125961936 1.389728808555362 -11.92943137613817 1.443405004548001 -11.78110346449207 1.437914064229647 -11.76419542175737 -2.179837089608198 -11.63416842548747 -2.128840747151753 -11.63078088358188 -2.200494548159048 -8.479123357701766 5.740564553119779 -8.33773345156629 5.745237460619619 -8.362680709555193 5.685310528419809 -12.59179923290041 -2.072861140566345 -12.4349141711313 -2.114938646808637 -12.44026222041529 -2.166272588026754 7.548567425267287 2.279468284446137 7.526524652985462 2.338546907745761 7.690229168981393 2.376964419762755 9.7746589063734 -3.67469305729071 9.790776293167403 -3.610345062445346 9.941338832644554 -3.573887342474415 -4.591195833967213 6.845400979153489 -4.743606185013491 6.906131183301143 -4.542844432461727 6.881857920826196 -8.586669441757142 -1.047834359754729 -8.773006016752229 -1.011755662961565 -8.587947467757003 -0.9761577324023332 9.746046869028515 -4.992806913775424 9.735501332799606 -5.055477088158096 9.624048336974289 -5.074617171066822 7.927281236121091 1.761312237896771 7.942498291265432 1.691556805161452 7.820883955473859 1.673793207042376 -11.41804881857539 -3.658784117870152 -11.55217715498363 -3.671312392569379 -11.54298452255754 -3.610126319802523 -8.743632838614316 -2.095042677601923 -8.74674550130467 -2.023381161205844 -8.608535158752799 -2.038142733453908 -5.336533579251965 6.929266462535714 -5.221771325583803 6.893142316736877 -5.381163294285627 6.876885518594103 -8.619091181742117 -0.87639890633865 -8.80414358943211 -0.9120165883444161 -8.805892209435326 -0.8397632979795607 -12.50421079878694 -2.407746354985607 -12.48286082571195 -2.365701460028077 -12.34566498521755 -2.445777045063263 7.584969237805654 2.434355210056633 7.434757668159982 2.39701230982394 7.57581571199032 2.495048626939908 9.876165215659061 -3.610345444401281 9.712135333773281 -3.647931832561251 9.87919985095373 -3.547520875429662 -4.588986709826833 7.227894232869366 -4.560210211050245 7.269418806958203 -4.388571840905032 7.201907492868052 9.603159259007891 -5.002101805391789 9.480072157754329 -5.082896700251764 9.481782508812453 -5.020496251124981 7.709410812740092 1.847629176148989 7.821078118529962 1.865979967641594 7.71531021759553 1.777990101274116 -11.50127362521604 -3.6344410218119 -11.61104781310153 -3.589597096185644 -11.47670646539864 -3.578571318966301 -8.745553419553815 -2.092230822813783 -8.610455985515149 -2.035330517473851 -8.6074108871167 -2.106977013601151 -5.3855096914852 7.078599933089281 -5.413841478065989 7.022448433670304 -5.544603736381786 7.06062766913001 -6.600949100753985 -0.8236757204749829 -6.79963317398951 -0.7841438049040456 -6.601720941284047 -0.7514118877313775 -11.77531102550626 -4.234864030729428 -11.60015286477251 -4.28553059781461 -11.61038530177011 -4.330084620940065 5.345743462367635 2.627743467682134 5.329890919169237 2.687576773212528 5.503917822739783 2.72794410936342 7.838516907312039 -4.095179849693305 7.848261878979759 -4.032779071047673 8.00826451629478 -3.994648510428144 -2.270160659111173 7.20001894211878 -2.433460326974444 7.262189589159905 -2.233506080694227 7.237506189842751 5.464057725378664 -6.102200099321551 5.444556958960229 -6.162700448572736 5.318712027937583 -6.176025420301502 4.121428592918026 2.178185604401238 3.984211037780418 2.16608008914457 4.100937647216597 2.246092148132916 -6.853741323553279 -8.074158982095822 -6.986184644844813 -8.103301490697229 -7.005754887700962 -8.046223382656194 -4.550849325210138 -1.910603855338458 -4.704212806341116 -1.972850122803083 -4.706495407863542 -1.90118608459101 -2.359013430442525 7.477419544385175 -2.224435368890001 7.453097514263935 -2.403540089663022 7.428197641230938 -2.246807954583327 7.630338741567051 -2.23068519837534 7.675640083496553 -2.047249435805684 7.603747231876121 -6.568413983279684 -0.8759097367367454 -6.766331658425485 -0.9086212826675217 -6.766901931486967 -0.8369362468612964 -11.54996257806058 -4.532079969467537 -11.52208236519743 -4.496786257821556 -11.37253871710033 -4.577607325276893 5.37905676770497 2.793456453140291 5.219446945263041 2.754320348810552 5.377040500854911 2.855085741502411 7.921176529983929 -3.997624391234151 7.746797839386731 -4.036994453534243 7.916964795233094 -3.936902801616408 5.325636603495221 -6.018304134052811 5.179705003796807 -6.091410672808749 5.188436436570532 -6.030574151138832 3.879068301748835 2.263007687264583 3.869469825209229 2.330338839324836 3.995357228276211 2.343413182231673 -7.162139612959358 -7.883046208129853 -7.162369274664934 -7.937587050663221 -7.295616511033068 -7.90910761739239 -4.546227946041681 -1.985834548114294 -4.701874465791489 -1.976416175929757 -4.548510541883238 -1.9141705835812 -2.488669022770686 7.706335545333952 -2.513947138538662 7.654801631882929 -2.667096369762327 7.678588884498444 0.3388590175924675 7.468478148370858 0.1753542530736604 7.532235547004794 0.3643194954648885 7.511044788144226 -4.350741773808331 -0.8708743110031407 -4.55040902106364 -0.8313659061705711 -4.350624105358602 -0.7991879312274119 -10.50156934925294 -5.891094912037254 -10.31392445509432 -5.947034203207001 -10.33417810116103 -5.985411559262474 2.980637668983736 2.955487618140717 2.97213560195912 3.016773438136553 3.147162612606374 3.057642527741412 5.750645944714265 -4.410891053863247 5.751996379331511 -4.350088419238669 5.912934270251835 -4.311630330695824 1.430402467901002 -6.097064217224641 1.287408108770822 -6.106025121561802 1.450609292630583 -6.03794080529733 0.6897896699171024 2.091816947294958 0.5340050743466696 2.084108880342424 0.6698063959186185 2.157721231848731 -1.824493103337637 -9.427390383578034 -1.971463972366836 -9.464523559769994 -2.000368815324718 -9.414948386213476 -0.8315657471380117 -1.842015932616758 -1.006557068983648 -1.908536419886093 -1.00801446078247 -1.83685913113244 0.3734857189804404 7.582539429119366 0.5282419085750479 7.566853049270059 0.3347261333977393 7.53647988067295 5.845593956585285 -4.314764894790497 5.670261584038721 -4.354575754623455 5.832863197667823 -4.255632828607601 0.3211095130233227 7.823580412029536 0.3253673410378433 7.872968805648823 0.5098158021235133 7.801006736965309 -4.350447388675633 -0.7998671768929282 -4.550232326016451 -0.8320450687059297 -4.550126945588144 -0.7603573492320419 -10.16213749662214 -6.113909484032706 -10.12369385405249 -6.084293342241298 -9.971867929590029 -6.164062962044499 3.020434695949662 3.110073951201482 2.859935075312371 3.070498640470921 3.025935355585586 3.173180632599592 1.169659927098823 -5.982591344324178 1.177491447400724 -5.922707038717424 1.333222824575716 -5.915046323848436 0.449518148898797 2.172009657669498 0.4420401809669095 2.236966542966661 0.5850323865735413 2.245948688574167 -2.198864159897617 -9.290070489322892 -2.192237066124712 -9.339165662774249 -2.347118453065111 -9.323899370052788 -0.8344320829141361 -1.906597539063247 -1.010895572889722 -1.901435918214815 -0.8359052639922848 -1.834913781935882 0.2086113656110601 7.883570127221148 0.1918706235153801 7.836507170659524 0.01607981075470791 7.849545683073208 3.410838817924859 -4.791637802790042 3.403691788149378 -4.731927768876296 3.556607180013546 -4.694373956769291 3.138622931071409 7.468530569028002 3.30884925679718 7.452680471551964 3.29258229934162 7.404861252907204 -1.833246071438417 -0.8233296533976419 -2.023331156945316 -0.7851396565345657 -1.832431748474177 -0.7516447482476861 -8.824003284140646 -7.258754957404084 -8.981115768265994 -7.166380724353695 -8.791055043966981 -7.2252899709947 0.3286330780608032 3.271599004679685 0.3269160481412842 3.33483944506435 0.494987308283692 3.374890432677392 -1.83260229101412 -5.682836527645144 -1.988981267121588 -5.689168121202413 -1.817111095797469 -5.623882503594423 -2.26424705438166 1.83146793043839 -2.434515194417165 1.826494417771494 -2.279694360297367 1.895548618076223 1.930587139717629 -9.249275243942394 1.761931924789639 -9.289915396855312 1.737703995769082 -9.244371378351325 2.262843051627058 -1.81404939662664 2.070554959718644 -1.883333659576222 2.069857864589424 -1.811642632463284 2.9121120246615 7.415023477624387 3.082066929279716 7.404452637564274 2.883472204797545 7.371655816552622 0.2576687618359552 3.500696085404013 0.1052740801429292 3.461854464771089 0.2706330966904003 3.56613013530968 3.465811524524859 -4.676273949985517 3.29900238339993 -4.715042845334135 3.445181147882065 -4.618160915125926 3.25450671250647 7.714766398356784 3.250875872441331 7.769631186069479 3.424572231780671 7.697881806160378 -1.83490907629404 -0.7428941968907465 -2.025808191936325 -0.7763901379726197 -2.024949654622004 -0.7046982132147882 -8.546364775114862 -7.322344112488144 -8.497877694543982 -7.296563882553099 -8.353408234722659 -7.375106879045785 -2.077991854826696 -5.572405801264205 -2.076257731982353 -5.512399930575265 -1.90588599994255 -5.507505551185946 -2.489563151122448 1.892568456672654 -2.491285634742426 1.955426830915729 -2.334913316264097 1.961859375032874 1.607208980558737 -9.145752172435831 1.607436247025817 -9.191805389838896 1.437395131002299 -9.183287952258565 2.271369091126892 -1.899367917802391 2.078409505047327 -1.896960574181735 2.270699680411801 -1.827679889700657 2.718268589138662 7.785272142096066 2.713774130832634 7.741703455943248 2.52093414050731 7.748064314234124 -3.101005212899266 3.577412279864564 -3.098069028167583 3.643596049513202 -2.949644236272518 3.681106778337159 0.5872056461813613 -5.241360867570392 0.5731554144250173 -5.182045209905461 0.7111112946336134 -5.146607270480946 6.497106443482595 6.774594643572343 6.646745284903194 6.766832542992263 6.633669263900449 6.712865037076929 1.229539747046159 -0.8090004658764198 1.057626280582487 -0.7738704057642062 1.231188679675817 -0.7373170954735064 -7.050928646088233 -8.322147175581945 -7.186739428373274 -8.232048897087489 -7.007125226184665 -8.291616529698787 -4.536023768756633 -5.274692221047742 -4.698445249312494 -5.280085347772605 -4.528317687225148 -5.214977765287023 -4.846572101938646 1.535523696535898 -5.023409164285574 1.531519876429212 -4.855116805167673 1.598036321270712 4.761390014391969 -8.57912216744227 4.573796470920078 -8.621485675739146 4.561099046232635 -8.576528386537017 4.926186251392148 -1.842966286034857 4.725855626782549 -1.91324328406501 4.725875272424887 -1.841553323505028 5.392513718735883 6.995502158967064 5.569041069876899 6.98622865430164 5.376198408111666 6.953716977861921 -6.624834436002091 -8.343266464487936 -6.564440614130068 -8.320389351523742 -6.441889442908324 -8.396190757723769 -2.986489052362143 3.629067475396462 -3.123996584609335 3.592567105804021 -2.972748076744523 3.696363111680439 0.5964536110836771 -5.115716446650194 0.4459197203542348 -5.152162699378244 0.5703589265084541 -5.057842800270785 6.552913385846088 6.967420827783103 6.548146641469678 7.028279956737866 6.702508814518651 6.959157090438652 1.232621748039976 -0.7415414329871886 1.059059182266867 -0.7780942535030593 1.060664802239573 -0.7064232200460062 -4.778045314998035 -5.168841092003929 -4.784558995688505 -5.107980045130107 -4.607708182119671 -5.10407349327342 -5.0793215695751 1.603982904602696 -5.073620795971975 1.665245649891377 -4.911206810490103 1.670776698192297 4.494229071368491 -8.497950518997337 4.48234475284956 -8.543650531964993 4.305612772192483 -8.537403701206808 4.918783662506996 -1.901439839381903 4.718473602689465 -1.90002750382157 4.918802060406136 -1.829746683366773 5.185219116056956 7.412708334574132 5.194079609769208 7.371133515766913 4.993829236448887 7.375259010168215 -4.914632941831193 -9.226011483115627 -5.021526081191493 -9.137175517212191 -4.858730927155893 -9.196914519097552 -6.800828468577338 3.237800398435974 -6.800387640670833 3.305957783600929 -6.669184604952434 3.33960943800739 -3.061235305347609 -5.624933477383353 -3.077961769544193 -5.564953369687144 -2.957551470760736 -5.532501659553968 9.803298403475026 5.020030796012997 9.939035915648196 5.022910612338249 9.921072548902576 4.963596157364883 5.042477062616952 -0.7981019346748194 5.04003739996108 -0.8697584004945983 4.889570338005955 -0.8391293284960959 -6.918251583513504 -4.902663835285465 -7.07769079771071 -4.908793682871439 -6.919207650204099 -4.841592092900788 -7.248962652349006 1.224322803810492 -7.422592943457921 1.219465241070507 -7.250110037170177 1.285742841018201 6.906114095346661 -7.711173731050049 7.102774332146746 -7.715168512703589 6.905097925564351 -7.757813369933015 7.316564191042545 -1.875752496459551 7.119183764639574 -1.945159098079595 7.119906921062253 -1.873468197674101 8.134667475511211 6.082345007988138 7.956888779050511 6.053336779734313 7.961729807695646 6.095319479138744 4.89369177710442 -0.7715354373199275 5.044231163922257 -0.8021706311137055 4.891324249168518 -0.8431975863876242 -4.311885536859164 -9.21044314927207 -4.244741349664362 -9.187908550459007 -4.145175828819955 -9.263078905357359 -6.989608733936294 3.313047149127845 -6.859074814876416 3.415736807845859 -6.86948293468914 3.346144921051305 -3.057136607144227 -5.514821298193825 -3.188446423579788 -5.547963762019459 -3.084210008014707 -5.455917359636779 9.786699342693437 5.187761707039861 9.788839147541859 5.253312413537652 9.922430373158782 5.190824752621799 -7.145525731979204 -4.817805868584787 -7.160457645539334 -4.755598122927399 -6.986837805824555 -4.750904001403897 -7.483295488943362 1.294369059431125 -7.470463793862006 1.354660613111123 -7.31103840698762 1.361009120311428 6.881649825720019 -7.670249048375972 6.856544048754383 -7.717318289784595 6.683044259209378 -7.710132874045667 7.317699265603245 -1.950701463566985 7.120994987223083 -1.948412976077941 7.318376001159224 -1.879007408459161 7.766049575695377 6.552356395311159 7.786194044848958 6.510191777413938 7.589774807722749 6.51813660449934 9.254894854813308 -0.9167324311530829 9.251828858045037 -0.9883781916903132 9.117351816742602 -0.9632363091250851 -1.982309787171781 -9.922074844160122 -2.060492157904909 -9.832445370463676 -1.921207073352141 -9.890653689399986 -10.51056860374297 2.016015618555436 -10.51792275925669 2.085848276703532 -10.40082334930702 2.114317789569848 -7.49314568257528 -5.340838364669041 -7.505417731384425 -5.27895082270685 -7.398593744524085 -5.250266616605737 12.08861960841357 2.223505573629072 12.2246392897392 2.237930092997413 12.19558824656419 2.176469155941045 -9.082413289877996 -4.500351682102474 -9.230723233076891 -4.508845476695185 -9.091222908222381 -4.437425103374943 -9.538971140293358 0.7639018314802899 -9.700426783931356 0.7563121786136131 -9.534228775932153 0.8249186147743608 8.953673465312455 -6.656840922109682 9.136377463864346 -6.66537959219897 8.939657763412649 -6.706680719685711 9.539691719965946 -1.954578911020664 9.355164015014479 -2.021311301104733 9.356565505040091 -1.949623746869203 10.7944562209931 4.052829613292501 10.63479582713684 4.032857501580568 10.63415601126062 4.07789891053692 12.05920402376165 2.471950311626575 12.18110101014687 2.420686182282084 12.04524913194961 2.405314162297308 9.12366088350826 -0.8974698045951367 9.258091254390305 -0.9226224614788939 9.120547968420148 -0.9691258857088608 -1.122937561091825 -9.824524100992694 -1.054521833974184 -9.799080539978482 -0.9788016713196168 -9.874896799058696 -10.63994222865009 2.013344136466253 -10.5313333906328 2.112424293986295 -10.53294434199304 2.041624391548812 -7.658675245157602 -5.219586359468224 -7.563154659508778 -5.129645800995207 -7.541765733577965 -5.190687244740161 -9.25693001115855 -4.476700069364923 -9.280497842167719 -4.412677530949329 -9.117321972355981 -4.405410063963603 -9.75194697604057 0.8050374882700758 -9.734291427957043 0.8651552426396674 -9.586019237741056 0.8740475798645565 8.959458485297599 -6.67860020564394 8.923030466450507 -6.72824937476961 8.761886579848687 -6.71730215270895 9.539899347741693 -2.02944867211821 9.356980925718609 -2.02450977523127 9.541509274825991 -1.957778487452107 10.58652388997379 4.475738711935919 10.60882456347228 4.429640890670481 10.42775883666963 4.451752938820059 12.81878013776671 -0.7652441303818351 12.77911016892721 -0.8251357831316858 12.66864828306061 -0.7897086307946575 12.2174057480242 -0.9947482030301438 12.21415962675243 -1.066400626299469 12.0818955755303 -1.047199080864409 2.680140713861819 -9.854129518448586 2.614587204288861 -9.76177390822841 2.736547990027956 -9.814443502461552 -12.55698078725072 -0.02273720273679344 -12.57443399692328 0.04673022257813429 -12.45856719501374 0.06886924070817679 -11.44604302940786 -3.451446251740729 -11.44625717491325 -3.388128464041027 -11.34062169835765 -3.364461700485352 -11.04851561536026 -3.886396738717834 -11.17940583363626 -3.898760344917689 -11.06362245131458 -3.820811774587051 -11.56489473465991 -0.1930486704129845 -11.70830084627451 -0.2051180758801964 -11.55842790029177 -0.1315574553065221 10.74996414946448 -5.26395477433929 10.91166911937525 -5.280126411087791 10.72650231030536 -5.318228148162276 11.51117713583039 -2.066834505920978 11.34639166853562 -2.12937481160158 11.348761264778 -2.05771767986751 12.52935446170226 -0.7642104022846729 12.38853103925172 -0.7636481978390624 12.40088535149176 -0.7152920271831872 -11.54096219727708 -3.323997394407981 -11.43448276973542 -3.237814100508409 -11.42542642437748 -3.300642255855967 12.69605081552178 -0.557769436970603 12.8218132780685 -0.5952775935331 12.6721201477554 -0.6213527715665864 12.08489271922964 -0.975098983348563 12.21712208686263 -0.9942991072373359 12.08161188898392 -1.046749944485742 3.84491264716146 -9.535431972259664 3.717574312810627 -9.491336030605259 3.778404646834254 -9.457580504182932 -12.48608670189704 -0.05521616486810895 -12.59217633466384 -0.07759047874737915 -12.49468872382924 0.01462665307592227 -11.24777770535109 -3.813626414247613 -11.27347093805358 -3.747607198916761 -11.13148889186723 -3.736144859558363 -11.78274753405902 -0.1901089938064303 -11.76446669890119 -0.1286500032508171 -11.63369688121841 -0.1155216047110243 10.78554273978905 -5.369913416267781 10.74214118692316 -5.422978702459687 10.59961140871281 -5.405636914741278 11.50697981210647 -2.135091010132068 11.34438709461597 -2.125960844131605 11.50917169502004 -2.063419124941607 12.52869414805493 -0.6720658251114389 12.53418964284194 -0.7275289658485421 12.38787205617552 -0.6713255647413392 -12.66812017787089 -0.7377636034755921 -12.6557152856829 -0.6752903732675847 -12.53827364064838 -0.6576259523312927 12.02975326339321 -3.200635946145051 11.98508371934015 -3.256871307150082 11.85918602032538 -3.232351940419628 12.60435450639438 -0.9349079872896567 12.60157650081571 -1.006572103563774 12.45606315085875 -0.9931755094944339 9.646099704192091 -6.540311077321691 9.616778072070421 -6.594137719524099 9.519244071721854 -6.508160679276509 -12.39737880649773 -1.803269368389568 -12.42142226650803 -1.735696711570993 -12.29325113874864 -1.719860038178735 -12.35201737779743 -2.734203352197723 -12.4665514071796 -2.751788587100053 -12.36681915305359 -2.666148389687829 -12.64378379789673 -2.148232168059666 -12.51753427489609 -2.066951456210427 -12.51889655292754 -2.130061439833859 12.13497871476274 -3.30423750600422 12.274323170788 -3.331055450699581 12.10818011923135 -3.36371192408869 12.52820093160765 -2.16348230398198 12.67052707297118 -2.177897199084264 12.52526689361987 -2.235137763657174 9.083727460491037 -7.235691707836772 8.956155993504925 -7.205611650119923 8.99884526827284 -7.161259838071032 -12.24950799258057 -1.850527582120462 -12.36722712375889 -1.867009383604301 -12.26364197454243 -1.783183058732165 -12.66188702262465 -0.6721380147752802 -12.53123560125465 -0.592814061286445 -12.53397521977916 -0.6552606075227748 11.96142489643524 -3.065586715165786 12.10453445883291 -3.090260905828021 11.93462105317904 -3.124079108265068 12.45901845887403 -0.9217868859907208 12.60451088997626 -0.9351777987968065 12.45621938669737 -0.9934450883106137 10.1922942062558 -6.001327089984576 10.06294871829891 -5.976050917545559 10.09993699390079 -5.929644293427442 -12.52213590676956 -2.614090488894461 -12.54626210722259 -2.546362135107309 -12.42097186366522 -2.529495936389581 -12.64475311492307 -2.140105917930304 -12.63265295654619 -2.077613511697214 -12.51840217321106 -2.058922789721463 12.21208464367354 -3.500534444088139 12.1678244191901 -3.557480530298427 12.04531208481726 -3.531140853334366 12.67054540006644 -2.177933302011313 12.66756563078661 -2.249579074857127 12.52528518350265 -2.235173808143825 8.320623204678105 -7.786959163113103 8.232874929095363 -7.697636149700083 8.357082193647491 -7.735438167397502 -10.92430361763545 -2.83306346094682 -10.94912627808307 -2.767660088846366 -10.80220340211371 -2.75712106249809 -11.46365995656451 1.11449201724629 -11.44534506784558 1.175291965449422 -11.3105776325685 1.187499866469894 10.50179575822348 -4.91802020301214 10.45921696766879 -4.970403694988755 10.3130884381685 -4.954416311874142 11.2150058757459 -0.8893648689627063 11.04848006968411 -0.8810920936825015 11.21704215856316 -0.8176907419769754 12.48882793122139 0.8001832150614913 12.50011544374162 0.746133328072065 12.34514220832967 0.7947446575729812 -12.25834708115401 -0.7167472920872547 -12.36460762954684 -0.7402274224586559 -12.26627320370312 -0.6466868541445741 -10.96165087025318 -4.791064051735776 -10.85747041594138 -4.703929326199413 -10.84699529529141 -4.766603113113328 12.66110003515725 -0.6448085608565688 12.78502636494957 -0.6848121031570447 12.63855556857809 -0.7091562363563319 11.69049556089854 -2.192029447741701 11.82201748319881 -2.212313174264094 11.68712959843341 -2.263664635868686 2.786442773881154 -10.03592408610541 2.657202691118821 -9.990154442073933 2.7203563364341 -9.958392385442188 12.50121610250245 0.645933275879893 12.35746638012572 0.641667854665042 12.36503647428866 0.690579099150778 -10.72767626807281 -2.902417657010436 -10.8625393063809 -2.913953713118199 -10.74082400116297 -2.837629898732242 -11.2701753075792 1.113743778931909 -11.41702951810472 1.102607233037831 -11.26352973655104 1.17507062539224 10.47431528209601 -4.874675603876916 10.64014284200808 -4.889237561558042 10.45222726449447 -4.9280861002243 11.21665097345873 -0.817026028592214 11.04808904603521 -0.8804276459384789 11.05014366576572 -0.8087556813547585 -12.32108748035685 -0.7063977391578555 -12.33684084971447 -0.6367128941778316 -12.22194144423427 -0.6133888617183338 -10.8508644666914 -4.910544994711315 -10.85354164840268 -4.847352146849595 -10.74773297143062 -4.822641437402077 12.79415567435181 -0.901735537730742 12.75609267059029 -0.9621013067410971 12.64729378391449 -0.9245750335657489 11.82346278774114 -2.214655706131431 11.82002304445178 -2.286294249986722 11.688574935385 -2.266007220419015 1.613855925203038 -10.23514118395188 1.548410783550392 -10.14313216949229 1.672170999325572 -10.19747212894398 10.10509617256335 5.307495219048317 10.12906687701174 5.261973918342235 9.944409369026371 5.280611820303632 -8.938545594816175 -3.385637841338056 -8.959231894214225 -3.322079906361745 -8.794975086676027 -3.315409192563738 -9.371371790257051 2.01601562795054 -9.354278062269634 2.076078003192116 -9.203496739719563 2.084377204684571 8.620490640664896 -6.142056151301214 8.585891689944674 -6.191186512474318 8.421924834222999 -6.181126961747228 9.171453351342711 -0.7862006098504798 8.985374646398356 -0.7818597160135269 9.172740030121522 -0.7145175685324635 -10.02184885624744 1.27664421782956 -9.909616753078108 1.376620927098016 -9.913116109148708 1.30589626836735 -6.668820369006065 -6.3888858489672 -6.787547417719502 -6.418614984929631 -6.691786442499998 -6.328294035798993 11.72108212861239 2.422488147860282 11.84399648985425 2.368936246423897 11.70933061303161 2.355741298847008 8.348507779772081 -2.090569958369155 8.484904921841803 -2.116752510561905 8.345353592093668 -2.162216634558236 -1.82738260852769 -10.13217269407754 -1.75873619458932 -10.10753064839566 -1.679407571285809 -10.18319392408976 9.172574094289658 -0.7142259494379865 8.985208768195092 -0.7815681961441532 8.986484830219609 -0.7098811786373334 10.3741582950887 4.891032705646279 10.21231675430306 4.868846279788393 10.2120809399966 4.913047224178735 -8.721015915563411 -3.466105233634645 -8.87182758105471 -3.474055929503595 -8.728511102395748 -3.403506917456138 -9.155565803861562 1.976448371447795 -9.319793013159728 1.969497366493955 -9.151669602591923 2.037480184017877 8.619823578614357 -6.181328665513821 8.805739843936904 -6.188827872184205 8.608037714300634 -6.230521110804173 -9.877284333470186 1.256905021379852 -9.882799551871313 1.326569015030331 -9.763898746457855 1.356073012091971 -6.634224302748915 -6.517920402656922 -6.647956918246396 -6.456481116238631 -6.539300411065627 -6.427054274292626 11.75295215948591 2.141939069617363 11.88773990574985 2.154340074702622 11.86086369420799 2.092941713259929 8.486623141134281 -2.120047596972245 8.483579289708688 -2.191693814469742 8.347071658155628 -2.165511429901186 -2.624212925449276 -10.15064480514148 -2.706920319159464 -10.06139568049478 -2.563563972384996 -10.12001192494219 6.905128364991542 -0.7157663462809335 6.706982149809622 -0.7137726112372038 6.905685887765163 -0.6440736422712722 7.291385085460716 7.16053165628489 7.309840309385741 7.118782615639108 7.111855348723685 7.12544493858975 -6.736892803753619 -3.755182909130092 -6.750374055509518 -3.69320837269109 -6.575421187924434 -3.688767774615201 -7.068584075832563 2.475211961078289 -7.05692673767198 2.535628676349578 -6.8962792139153 2.541700844445098 6.490424106918721 -7.108821293216964 6.467713749312748 -7.155583273790948 6.292837673619022 -7.148740808790945 -6.236143753315759 2.348465962161977 -6.101475582455138 2.45147931704271 -6.113000472235257 2.382271665968184 -2.319938076792037 -6.543427589147638 -2.454678179618663 -6.577258530081625 -2.347228569014471 -6.484856323560032 9.21657005487458 4.976425101198499 9.217030817197978 5.041360744536497 9.353995775891198 4.977238798808156 4.276763073580272 -2.009784836798928 4.120242250038147 -2.049900192570037 4.122539147813649 -1.978236748381537 -4.788173852738191 -9.523907708578999 -4.721957171919164 -9.501519083631466 -4.617822128234676 -9.576809867399767 6.514362576025462 -7.204773302166274 6.712475200188893 -7.208267905961661 6.515799130000541 -7.250878757087985 6.90649597847858 -0.6455226806804572 6.707791985152818 -0.7152211991066345 6.708346151468331 -0.6435301315091279 7.667558799678972 6.762320860708827 7.486522609131087 6.732405373730895 7.493166052638109 6.774187271445335 -6.513722224920572 -3.838874349262564 -6.674381637394875 -3.844748639390658 -6.513091796844782 -3.778060726471683 -6.842947048790961 2.420958041906638 -7.01794189797377 2.416364241220615 -6.845456297039751 2.48256248158162 -6.050637277326548 2.254905191196734 -6.049412758603382 2.322619185522681 -5.914926379359914 2.357068195700977 -2.308320482126599 -6.660328640144927 -2.324957880932171 -6.600542708138916 -2.201486606224465 -6.567485658682623 9.221337604460567 4.76580044886155 9.358763786175485 4.766564479856735 9.342243733787802 4.70806709794962 4.274390944644534 -2.081184769515353 4.120134128726166 -2.049636892959227 4.276654940332099 -2.009521508367151 -5.353563659506532 -9.472747231332079 -5.465757103480144 -9.383725404633548 -5.299210596634174 -9.443658526530237 4.01795733860726 -7.946677496125321 4.008440497215478 -7.99218509072781 3.832187822096989 -7.985806230715681 4.473964104932032 -0.6779511285841976 4.27418090413199 -0.67648369913303 4.473830216089857 -0.6062588129077937 4.741689778330031 7.962921652458548 4.748162475832153 7.921123172862993 4.548487343279458 7.9252669919763 -4.321388913700464 -4.105619606925039 -4.326317680033606 -4.044927686173337 -4.150000887048926 -4.040997928507854 -4.640229805035218 2.795979829008918 -4.635943867340972 2.857523599764584 -4.473993895036286 2.863098452121417 -2.332816992403701 2.510511649805565 -2.47346728346775 2.473516439511946 -2.319136483896051 2.577371894397588 1.180434235726424 -6.150961901526562 1.026599371140038 -6.187921333040047 1.155088899660314 -6.093098971734511 6.001738772212597 6.491536344311743 5.997068601180984 6.551347183971659 6.153785360024773 6.481536522915294 0.6140021512227728 -1.966802477791774 0.4368443898826924 -2.002690295403096 0.4382864708787215 -1.93101388333201 -6.992581283815026 -8.683527396401857 -6.933821119214811 -8.660339945850341 -6.805287334771601 -8.736773337055197 -4.39720013907419 2.719632112681811 -4.573564435054072 2.715590763550038 -4.40711974467781 2.782388416036915 4.303566820589536 -8.087105222503734 4.118870596494562 -8.129261142657084 4.103805166534269 -8.084370096625332 4.47403121436948 -0.6066156042287847 4.274381844560351 -0.6768403886719054 4.274295152810143 -0.6051626048469881 4.943522953238395 7.621805236916789 5.119526523107883 7.612654526523374 4.92491740810982 7.579786954825032 -4.086258799484165 -4.207741200740353 -4.248216324410707 -4.213178577697287 -4.077018241495186 -4.148246067965332 -2.286632422320452 2.331957827939785 -2.285160862709941 2.397061826453747 -2.131422429209602 2.434999272540071 1.143597543452929 -6.258630231775132 1.130538154720602 -6.199334636958288 1.271649420195784 -6.163442199649933 5.947954844830404 6.306211203100156 6.100051171157892 6.296690972733831 6.087351659536604 6.243076447623369 0.6363852053372954 -2.11616549622075 0.4621232387497143 -2.080390606912731 0.6392835740040764 -2.044510653228 -7.396000247538519 -8.592289674988017 -7.536228840858669 -8.501629477156589 -7.352252016604588 -8.561606714430482 -1.992251873627624 3.069137594556995 -1.99526290260837 3.132332819027415 -1.840880027947763 3.139099671517681 0.986303489507237 -8.619818257433765 0.9882378254537633 -8.666222437088377 0.8203571460677778 -8.656878952667265 1.73930313475289 -0.6680557020219697 1.548793345031301 -0.6652938532232062 1.738503396454447 -0.5963806467824427 2.275282391915863 8.320437653037011 2.26836478902093 8.276277202155798 2.077987181714787 8.283548893795921 -1.539422638859084 -4.52111182133746 -1.536330157966407 -4.461223639044718 -1.368119422486145 -4.455967101051516 0.8427943360052032 2.234275839124005 0.6882719276239152 2.195363910262767 0.8531371082192651 2.29887979499915 3.926471921077349 -5.724695422071401 3.757475357493761 -5.763730842403976 3.907097816369042 -5.666478387738177 2.694120461954414 7.139504741171798 2.690376907532083 7.193962526998284 2.867880763625536 7.121188405672213 -2.340657171133343 -2.017359950187927 -2.535454440634304 -2.050467478858239 -2.533200376064993 -1.978798301918892 -8.828661937859151 -7.668012617872336 -8.780273985907968 -7.641995380924155 -8.635228694626996 -7.720233015551211 -1.294830378688606 -4.636698978082613 -1.449220140721894 -4.643367878898248 -1.278157903380341 -4.577832460690896 -1.749405044982786 2.991742383849651 -1.91756898316699 2.986413745460856 -1.76596462792328 3.056063568143478 1.325422693043524 -8.779476032537506 1.160677743878615 -8.819717258011629 1.135022182389053 -8.773697838009975 1.741592942901703 -0.601668250011042 1.551882097384761 -0.6705801036120539 1.551023803178467 -0.5988889786872379 2.466267129561606 8.0228018553836 2.634003226567327 8.0115631732706 2.435490355614513 7.978966819008738 0.8237370965992558 2.070639919214244 0.8208815136375675 2.133453983703914 0.9891930140569999 2.173570874291884 3.854445954600101 -5.827005108856018 3.848735286997988 -5.767192321719023 4.003711552841845 -5.729413886187937 2.550374726944825 6.796833780674253 2.724348651612159 6.779818555476862 2.706697415328707 6.732995750532142 -2.351382516112003 -2.052469125242277 -2.545446165170833 -2.01389098677349 -2.350650018235103 -1.980779370948002 -9.100566873162702 -7.52730130613514 -9.260386493312403 -7.434443173150337 -9.069899885370543 -7.492984194590505 2.099363166726732 -4.94203785703949 2.107203094554858 -4.882044099013946 2.259402164738622 -4.873130464253538 1.243529233091322 3.310045858944677 1.235813553299132 3.375391656590128 1.37473014647636 3.385627353047777 -3.351342190965849 -8.626228931742908 -3.346345348927424 -8.676325475586459 -3.497144026037172 -8.658024668066801 -1.677284560510524 -0.70633768106393 -1.851016468452078 -0.7001310367739958 -1.678954119171283 -0.634655407848723 -0.4118333013120634 8.395431052259955 -0.4298418410845212 8.347399916026566 -0.6026516654263514 8.363131482196927 -0.2378507836692079 8.149854355964495 -0.08696647781522904 8.131797445751307 -0.278727906986147 8.103162072266287 2.384782100741672 -5.082399466842356 2.245869039417281 -5.092664783458099 2.405431214540438 -5.023076447958078 1.475431700269857 3.243216126390903 1.323272414485122 3.234281508318627 1.454753953233677 3.309560615052864 -2.948035965690998 -8.846868381591575 -3.0924920136427 -8.882261956682696 -3.120792491386729 -8.831130965139387 -1.684593072115199 -0.625485532760107 -1.856654181201284 -0.6909631785153511 -1.858376963653818 -0.6192761170688331 -3.500683618123513 8.064882940053439 -3.525719444789873 8.011719666304421 -3.673050247634391 8.040856603974447 6.955644786533308 -4.747620095717669 6.81761152413446 -4.823559727099589 6.823492521271798 -4.762227160851196 5.315804866404559 3.314816904079104 5.436521058611903 3.330070906469733 5.323293291429909 3.24676187210137 -9.029669298622906 -6.244294517972814 -9.038908690770507 -6.2995864057601 -9.164955249885221 -6.264990066024588 -6.168696811301597 -0.7901060687980691 -6.02002624362285 -0.7298413413179093 -6.01737032917005 -0.801510764651425 -6.16716278695688 -0.792436855045515 -6.169715512734515 -0.7207820874583649 -6.018491961441754 -0.7321725211963476 -3.399712071176042 7.918858619107905 -3.271454875195229 7.889857442398896 -3.444340954945617 7.868263918577964 7.17276412510656 -4.850090869232007 7.156443691189562 -4.911518846998646 7.03582601934696 -4.927247750974769 5.507385981112565 3.267901631020001 5.52607702653324 3.199214961373389 5.393829927214853 3.184869575963909 -8.780046658568089 -6.508224285157986 -8.91452077770985 -6.531969444126121 -8.925059965119072 -6.472337947996555 -9.922286454553056 -0.9076299356093774 -9.791389594947722 -0.8525954506810992 -9.788224450349521 -0.9242350953684234 -6.370729092607941 7.23003170987289 -6.398506628403295 7.1724565055405 -6.523965758672695 7.215836227131745 10.75180389353382 -3.333018557809622 10.63561920186676 -3.416254407804016 10.63332092034774 -3.353525140831295 8.861705302952519 2.5712636309005 8.96922414584018 2.591466117381528 8.86529907640135 2.501077716399933 -12.10395207533582 -1.484660583795291 -12.20813095702387 -1.435903437710017 -12.0704415276492 -1.430533718292126 -12.05997770552258 -1.469396477281094 -12.19761975125221 -1.475471628350712 -12.17729656161256 -1.415727212050378 -9.936513878679747 -0.8868328377047231 -9.941031714176686 -0.8152174882354868 -9.805618656606432 -0.8317959425747208 -6.350003871811573 7.141549793466944 -6.240040498119259 7.101239011052403 -6.393473694344706 7.088424407995349 10.86068419727297 -3.300221888996849 10.85283791380745 -3.363278468703162 10.74560599350948 -3.384403612544038 9.119938093338734 2.439500074086822 9.133588361276352 2.369530245826872 9.014974260452364 2.349857548717207 -11.34376110431816 3.005857236292954 -11.44515614595066 3.060354317536095 -11.29002185008157 3.050999593139427 -12.25670379789215 -0.9574911001626694 -12.12589329598696 -0.9082455332686441 -12.12130202099527 -0.9798579923255602 -9.368746114816725 5.616394312373524 -9.231590812440061 5.616210041075912 -9.254590353091588 5.555676288744566 12.30270697279117 -0.732113087700826 12.42055141167946 -0.7052916998320605 12.31711944278753 -0.7944483502396152 11.70206617194429 0.7552865135110995 11.81185224631584 0.7810748303386988 11.6965028844164 0.6846329028614195 11.86898635413291 0.6722763530350459 11.87104552223794 0.6023187115769892 11.75269972310422 0.576533515244516 -11.39277574246463 3.269682934449164 -11.35175394290062 3.320805416786018 -11.2377670077281 3.25911837798393 -12.25821608909728 -0.954946958328069 -12.26218871199502 -0.8831442064389639 -12.12740511085889 -0.9057021744526329 -9.333951301784506 5.540363222778258 -9.23292955156092 5.485609947104076 -9.370084887883374 5.485777856076087 12.41957133901145 -0.6324110322915311 12.4263289770214 -0.695343898136144 12.31693024407344 -0.7221315217553045 12.48016826144953 -1.243753167471799 12.34429480398159 -1.343183971445835 12.35994238710784 -1.274298751779843 -9.012147787148093 5.423597290302976 -9.128325238038466 5.480464172696799 -8.952856952283797 5.462060318680178 -12.10973869944608 -0.8469973304044502 -11.96284437797668 -0.8036370920067902 -11.95954120685193 -0.8754608307159759 -11.59627193385536 3.202584298451698 -11.4634983598959 3.186144490736025 -11.47748464315625 3.125592926579735 11.39625966559125 1.193500293933925 11.37247793831953 1.253822805125405 11.50329825389713 1.28557192066328 11.43225516515759 1.35086468307398 11.3123654752576 1.319512047249267 11.41840644118666 1.412295310967418 12.46281297284593 -1.296848130028971 12.45721780484478 -1.364651136073806 12.32617515034154 -1.395628597027183 -8.996283755064813 5.7748702589918 -8.951666168716843 5.819630807753827 -8.821147903244956 5.754601321140991 -12.10471953603337 -0.8572592189670679 -12.10747121001836 -0.7855993752540388 -11.95782322851087 -0.8139031445575967 -11.66785457757601 2.988319697594459 -11.64107809660029 3.041236477413251 -11.53480109354982 2.973345703310676 9.425181677324584 2.212623701020339 9.400153583337911 2.271824722148035 9.54936163552995 2.307611764388428 11.2983943217303 -2.680294155958691 11.3167793430654 -2.613905556663458 11.45398999527297 -2.579713660922916 -6.609979410302995 6.555939244904025 -6.746869313450294 6.614845996702235 -6.554293726341641 6.592222662943728 -10.38122554630156 -0.745612633570873 -10.55178606745953 -0.7123105628725666 -10.38319056391241 -0.6739367703322631 -12.65732301542027 0.3863514875253744 -12.51549067466984 0.3546774704142022 -12.52221478068862 0.2979685253638622 -12.67911423682639 0.08600577763682274 -12.65807679297375 0.1339171034732307 -12.53628126281827 0.0572487219030826 9.470443121160606 2.347147236634991 9.333542009577753 2.312195929114243 9.457104877662456 2.407680697034803 11.38447033618222 -2.643335396576386 11.23490984120818 -2.678319849214413 11.3911261480459 -2.578336467346423 -6.587708889966835 6.935378655373325 -6.549315343445682 6.977721645207256 -6.395511963141001 6.910843381360522 -10.3827479645972 -0.6751291178904675 -10.55134356040148 -0.7135026595921468 -10.55329357905936 -0.6418351223251259 -12.54321914504149 -2.218647066826399 -12.3837820178911 -2.262221731699633 -12.38954532724651 -2.312707613476549 7.279475221502429 2.702294269062388 7.258202288185225 2.761407272932601 7.423784776443614 2.800175566198119 9.545432887655039 -3.368731989611771 9.560826135908778 -3.304656729018584 9.713126490345431 -3.2678948843385 -4.291305521677162 7.150081122961999 -4.445698079219057 7.211038928586153 -4.244354307513261 7.186700167875324 -8.389282297838969 -0.6214431932966419 -8.578232357696681 -0.5844146002130058 -8.390465289713081 -0.5497652814628296 -8.390767151360857 -0.5487576391848469 -8.578534171083605 -0.583407119780339 -8.579698435852466 -0.5117154431111796 -12.43537005342288 -2.541751964905157 -12.41345742118862 -2.500664840718393 -12.27413943234457 -2.581031021514565 7.312801710123706 2.859883214523761 7.160856647368313 2.822222522147044 7.304553402565933 2.920660158772516 9.633311601774835 -3.292529013834861 9.467408900084184 -3.330402415249695 9.635557604886044 -3.23003540851381 -4.278571776868531 7.539863273500846 -4.251362540932578 7.58283139246282 -4.077599424388679 7.513693674238044 -6.29335632842592 -0.5214520223250756 -6.492605814868599 -0.4822880308652268 -6.293803551570187 -0.4497553586592444 -11.64235809494519 -4.319024808846037 -11.46509382688498 -4.370591264740194 -11.47640619199758 -4.414250226930309 5.054816115548261 3.050139743656006 5.039950924368886 3.110133004083711 5.214708111952201 3.151620237850744 7.577664411258514 -3.751820865648637 7.586360150911093 -3.689677659961227 7.747067274487477 -3.651462485883278 -1.917097294782449 7.525945587053175 -2.080846122094815 7.588721053652636 -1.881633387588275 7.565010948047002 -1.921127258480661 7.896927179977313 -1.906710346070583 7.94261089448567 -1.722236273243561 7.871600580651387 -6.292566439838838 -0.4544225744093013 -6.4913688695174 -0.4869546174149007 -6.491854624348844 -0.4152691934974535 -11.30505290103937 -4.673726136626675 -11.27690437572564 -4.638869538785145 -11.1246780624565 -4.718118237880796 5.088688143707718 3.212501917741875 4.928388931467554 3.17324083859975 5.087701423255209 3.275283794461239 7.679669553937385 -3.66347746606246 7.50458309063117 -3.703017469134509 7.67431021886715 -3.60299871434307 0.6996151188652344 7.725383840287953 0.5367390253324689 7.789101629120368 0.7235584372046083 7.768521460429608 -4.0304199872564 -0.4525178958320339 -4.228998470122891 -0.4134755536381191 -4.030212752661576 -0.3808316388062449 -10.07876403360383 -6.0974257405 -9.888916304351143 -6.149508101492421 -9.909146381347247 -6.187613894822916 2.649759067226831 3.377763100537905 2.642120622030253 3.440261576999215 2.81657339720568 3.480132420853204 5.473761289466534 -4.084697247308223 5.473939406137715 -4.024071885298348 5.634230440431742 -3.985641585990616 5.548812606004653 -3.973459956805778 5.374060335745256 -4.013190989162217 5.534912246617022 -3.91452025849031 0.6931165104629631 8.085070269535777 0.6963369416731116 8.134635959577771 0.879665016491066 8.063021733454999 -4.037599337315415 -0.3530293567286862 -4.236384110376655 -0.3856768302963634 -4.236104917286607 -0.3136223144064921 -9.898232527648123 -6.183104866159721 -9.858918028540105 -6.153749138227793 -9.707133812399878 -6.232274538142961 2.691798244858481 3.526463766325558 2.531943503059076 3.486924844189506 2.698247554331419 3.589806674028978 3.082081187941093 -4.465409680165303 3.07377663751358 -4.405821239983794 3.22503623500764 -4.368513175742105 3.58578458189039 7.674340291589815 3.75321249608593 7.658674571967698 3.73754410839752 7.610599105556862 -1.494450632672106 -0.3824210123169178 -1.682781354543124 -0.3441496521552638 -1.49340372038536 -0.3103708684648485 -8.625414143109291 -7.245785380893075 -8.780660692114449 -7.153643309371925 -8.591113416765756 -7.212767687665056 -0.1087167556986124 3.683453210426043 -0.1098028950304958 3.746993228289769 0.05471275126923469 3.786623270121855 -0.08865781898262037 3.82850185208538 -0.2394578044990775 3.790059610255885 -0.07660648582358653 3.893793921393367 3.134864807710613 -4.349260287608189 2.969944694451996 -4.387780244431911 3.113309190185412 -4.291258829799207 3.695737596866848 7.88766705489126 3.691603185322147 7.943354964450992 3.863013199932308 7.871024852929904 -1.488054154630252 -0.3289354281000696 -1.677432443479252 -0.3627119402626852 -1.676464332671698 -0.2910243414762917 -8.327004756704078 -7.284071928224889 -8.275235605677009 -7.259079190765347 -8.134490188075422 -7.336931313708036 -3.446700910458202 3.849860546874504 -3.444540810896324 3.915815413352899 -3.296965250116518 3.952813658761782 0.1476508044566194 -4.935405220347271 0.1329601974875749 -4.876091169627454 0.2685892390158162 -4.841014956222171 6.962508546912947 6.842232653552305 7.109665008093557 6.835797973849037 7.096414218120602 6.780997767936586 1.691057387326594 -0.4026909594992563 1.521995388945184 -0.3681074705290025 1.692832050902842 -0.331012909742998 -6.841311603229078 -8.291401132961235 -6.973176407778905 -8.201224289159466 -6.79401525273343 -8.261420355118384 -6.380805753141919 -8.292039825095348 -6.319222226811345 -8.269338376016222 -6.198141689366169 -8.345324135262887 -3.483386627440059 3.993444753164489 -3.618579957335738 3.957342610922335 -3.469685600219242 4.061048062723969 0.1734090589833454 -4.821658883697502 0.02545944937439482 -4.857715828022043 0.1468645784761846 -4.763697051195838 7.008004022004116 7.015533252580459 7.003667023039261 7.077145827039529 7.155130362017395 7.008685579427924 1.696837374782633 -0.3424533629032008 1.526000253588872 -0.3795466148189169 1.527735688721861 -0.3078637643182571 -4.609566789263434 -9.205519494100448 -4.712196887254752 -9.1166309698513 -4.552586593640797 -9.176311384342677 -7.335926336140776 3.501344658873248 -7.336090136062639 3.569801646769853 -7.207424733829447 3.602826827519697 -3.604855654207896 -5.30422825132537 -3.621458193344325 -5.244019973485324 -3.503427236732714 -5.212022770707214 10.20890948835965 4.912754188318949 10.34385705017712 4.917183668851282 10.32463024713863 4.857359080885999 5.617079606326176 -0.4087090388779297 5.614529778436362 -0.4803768235417171 5.466665880062625 -0.4504418947803532 5.465513998147964 -0.370397045064424 5.61334104460501 -0.400328856764548 5.462927715328628 -0.442062598113118 -3.959927008171782 -9.166617350452173 -3.892221284138974 -9.143924259315345 -3.796210649422447 -9.218964019946055 -7.518705425007282 3.56318260729297 -7.391316800806528 3.66552945671989 -7.400899399851348 3.595688743993093 -3.637354251897245 -5.171346676645626 -3.766315528500788 -5.203961660208352 -3.664166289010515 -5.112249941182268 10.18459634480319 5.068905936576128 10.18817943759912 5.134853659211896 10.31952839317151 5.073618818198497 9.801686196180491 -0.5237914814620348 9.798433179787889 -0.5954402230658886 9.664277113009604 -0.5710552978815334 -1.567008929643396 -9.871758577509121 -1.640781020201906 -9.78296132191822 -1.505544608527762 -9.839916934999756 -10.92318158987221 2.128753694533634 -10.93182117799355 2.198670496554331 -10.8157675181759 2.226307235163676 -8.046811891065453 -4.868776691289468 -8.058273959862701 -4.806679999265388 -7.95429548563077 -4.778681563323726 12.27753300923371 2.043204884569114 12.41587332788536 2.059088809975417 12.38533685313047 1.997607191448191 12.25374165118651 2.273918551406887 12.37622299280005 2.224433316395436 12.23807710365099 2.207534607744957 9.639405531462138 -0.443234258880393 9.770669066873262 -0.4675270877429548 9.633263139090937 -0.5147965807838888 -0.8068622647747287 -9.751157414050727 -0.7390683711478735 -9.72443536438672 -0.6673692466574432 -9.801359563882809 -11.02593410945303 2.116445005509541 -10.91949300436063 2.214656301674535 -10.92171054612782 2.143873712930612 -8.354324784230016 -4.627952817242197 -8.259931023427683 -4.539070976883634 -8.237237441851384 -4.599896794204487 12.79266206233665 -0.9385981505235493 12.75156240082418 -0.9978715662618307 12.640751986495 -0.9642003636433475 12.44014876984172 -0.6018753560009648 12.43391497842397 -0.673432786761746 12.30165062889963 -0.655073567767769 3.433798058562158 -9.646757419633014 3.366576847926532 -9.552636807777409 3.487265769094727 -9.604459259227655 -12.67366436821154 0.06327042355108598 -12.69054057867328 0.1328187313951262 -12.57355088575061 0.1541380154524462 -11.89780025416519 -2.671329031703041 -11.89850957366648 -2.607939973174148 -11.78930411163973 -2.58506654452211 -11.86679791899832 -2.720740160880428 -11.75871842641653 -2.634154602720348 -11.75160264488553 -2.697926282921187 12.67985626588935 -0.7454552885333471 12.80633042858929 -0.78101058651027 12.65491783461317 -0.808375809207925 12.29370488540646 -0.5657502789823955 12.42892083029588 -0.5842030792690948 12.29042011780475 -0.6373971477570675 4.666369350262223 -9.233255228807497 4.539976545409513 -9.19067103849998 4.598673959890117 -9.155226877193503 -12.60671987881273 -0.04008266309577988 -12.71631214269975 -0.06178105213171261 -12.61798780830803 0.03028756614059104 -12.64775302197637 -0.1716394666262745 -12.63376577286065 -0.1085752984250314 -12.51563622508443 -0.09134116209380108 11.8718498564201 -3.236091347128322 11.82706360313676 -3.291792186763279 11.69852394158044 -3.268560825178234 12.50858711201633 -0.5112305291553186 12.50586242915174 -0.5828919323844278 12.35772964751408 -0.5702459644825559 10.50172401220205 -5.605301514386396 10.47832242189326 -5.660524211899692 10.37256237910686 -5.577917520336098 -12.26057633247983 -1.657196858345917 -12.28662152440635 -1.58929437583228 -12.15615173504133 -1.574132887186072 -12.15411772740797 -1.618299883977775 -12.2725565886736 -1.63416595644146 -12.16795183082427 -1.551242387073698 -12.61131799242071 -0.02015374192480997 -12.47725567640437 0.05812361788573152 -12.48101455674324 -0.004117269420730918 11.81173465244481 -3.125727746290349 11.95780249175681 -3.148876677813699 11.78516755658687 -3.183549476282655 12.36031281982692 -0.4983958535245435 12.50847923160441 -0.5110484142038515 12.35762184619329 -0.5700639746462372 10.90620621368105 -5.09363532399637 10.77522502084391 -5.072258795960493 10.8077489459603 -5.024605676155583 -10.68864845065998 -2.55455621740603 -10.71313306542342 -2.489409085121871 -10.56367818363771 -2.479478575841482 -11.22977363661436 1.632251312131652 -11.21132626074843 1.692848965063889 -11.07409588962486 1.704445265413141 10.28908899766099 -4.858082536205109 10.24732473618666 -4.910050967066953 10.09844449383102 -4.895012793962303 10.97958363553207 -0.4640685802303887 10.81015082367626 -0.4564087800025247 10.98149539854754 -0.3923849763066227 12.32997748267721 1.719906435123948 12.34475518666718 1.667083206994886 12.18421600790133 1.710328105714628 12.36982989793857 1.508397449117879 12.22387765480027 1.500827385925978 12.22911457727385 1.549238358852193 -10.49704810409977 -2.615522139965255 -10.63436112072196 -2.626496325150515 -10.50970045751017 -2.551100829927615 -11.03538538335118 1.627905259033432 -11.18489774124952 1.617444806016395 -11.02886196560464 1.689158837988261 10.25924858758659 -4.842472303442993 10.4281027881423 -4.855881371326672 10.23822656986093 -4.895184834627975 10.98192110993328 -0.3931097750537854 10.81057636536067 -0.4571332976911415 10.81251018073159 -0.3854535266787559 9.730367119152808 5.767068993737939 9.754244433565511 5.722260792112578 9.567091049182192 5.738429733970274 -8.677996020170248 -3.048205804642975 -8.697847313106026 -2.984918359828509 -8.531714985668323 -2.978669862747076 -9.089362884542329 2.464115709916181 -9.072850819948432 2.524195731350672 -8.920294631802884 2.532087635379381 8.361553493798574 -6.033342915132951 8.328336447243949 -6.082018146740463 8.162411901259357 -6.072556959675273 8.892462674804984 -0.3668520613015502 8.704221058912331 -0.3629203536274807 8.89363833995432 -0.295162114521727 8.89497573996357 -0.2975159917516584 8.705558006249373 -0.3652734477418679 8.70676284588583 -0.2936022161711446 10.02759348426556 5.363335444688016 9.863049882418745 5.339606479460216 9.863221256372452 5.383311392066778 -8.455858395384974 -3.135704029654332 -8.608441279194427 -3.143269815162752 -8.46241171014479 -3.073407550625284 -8.863331305141637 2.415851805606997 -9.029484091262898 2.409324191094267 -8.860142972476787 2.476874456013834 8.366906520559503 -6.099632004239871 8.555016693227945 -6.10641963081676 8.356756027588144 -6.148305043552335 6.610614497481498 -0.3034504705566268 6.411593821678057 -0.3016433777460381 6.611118434348282 -0.2317740684684547 6.960088796820089 7.439059513171552 6.977086288713464 7.397450087739094 6.778157825414796 7.403377882836645 -6.450722167386379 -3.409408375563931 -6.46311260125781 -3.347663566968103 -6.287376973874669 -3.343401386641197 -6.761471839359336 2.888819790438602 -6.750762285145275 2.949310092292259 -6.589391875422425 2.955214371119521 6.192189404311118 -6.986634573495285 6.171206558458689 -7.033114258629384 5.995623802845925 -7.026531760350306 6.232673197980219 -7.109532399189411 6.431665779435432 -7.112723865213545 6.236069304306408 -7.155467054080994 6.613110217701095 -0.2353333759150206 6.413584994721523 -0.3052016066294995 6.414052518634684 -0.2335142881420584 7.339486247303872 7.068395044593074 7.156050049383133 7.037852634154685 7.164239462889271 7.079546035244175 -6.21273358368919 -3.516292226979891 -6.374114519069684 -3.522015703946565 -6.210986519573698 -3.455677150877848 -6.531647199667637 2.830929523977672 -6.707340474893881 2.82653589756132 -6.535073186614172 2.892629180248644</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2670\" source=\"#ID1701\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1697\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1695\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1696\"/>\r\n                </vertices>\r\n                <triangles count=\"890\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1697\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1698\"/>\r\n                    <p>0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 9 8 1 9 0 10 12 11 14 12 15 13 16 14 6 15 2 16 20 17 9 18 8 19 22 20 1 21 24 22 8 23 26 24 27 25 15 26 30 27 1 28 12 29 14 30 16 31 32 32 26 33 15 34 14 35 6 36 20 37 34 38 36 39 9 40 22 41 38 42 39 43 40 44 39 45 44 46 45 47 24 48 1 49 30 50 48 51 27 52 26 53 30 54 12 55 50 56 52 57 53 58 54 59 16 60 58 61 32 62 53 63 60 64 61 65 34 66 20 67 64 68 36 69 22 70 66 71 68 72 38 73 40 74 39 75 45 76 40 77 44 78 52 79 45 80 70 81 24 82 30 83 61 84 72 85 73 86 48 87 76 88 27 89 78 90 30 91 50 92 52 93 54 94 80 95 52 96 60 97 53 98 32 99 58 100 82 101 60 102 72 103 61 104 34 105 64 106 84 107 64 108 36 109 66 110 86 111 38 112 68 113 88 114 89 115 90 116 80 117 94 118 88 119 44 120 96 121 52 122 70 123 30 124 78 125 72 126 98 127 73 128 100 129 76 130 48 131 78 132 50 133 102 134 80 135 54 136 94 137 96 138 60 139 52 140 58 141 104 142 82 143 106 144 72 145 60 146 84 147 64 148 108 149 66 150 110 151 64 152 112 153 86 154 68 155 90 156 89 157 114 158 88 159 94 160 89 161 116 162 70 163 78 164 118 165 98 166 72 167 73 168 98 169 120 170 100 171 122 172 76 173 124 174 78 175 102 176 96 177 106 178 60 179 104 180 126 181 82 182 106 183 118 184 72 185 84 186 108 187 128 188 110 189 108 190 64 191 112 192 130 193 86 194 90 195 114 196 132 197 134 198 135 199 126 200 116 201 78 202 124 203 118 204 138 205 98 206 98 207 140 208 120 209 142 210 122 211 100 212 124 213 102 214 144 215 104 216 134 217 126 218 146 219 116 220 124 221 108 222 148 223 128 224 110 225 150 226 108 227 152 228 130 229 112 230 154 231 132 232 114 233 134 234 156 235 135 236 158 237 146 238 159 239 138 240 140 241 98 242 120 243 140 244 162 245 142 246 164 247 122 248 159 249 124 250 144 251 146 252 124 253 159 254 148 255 166 256 128 257 150 258 148 259 108 260 152 261 168 262 130 263 170 264 132 265 154 266 156 267 172 268 135 269 158 270 159 271 174 272 176 273 140 274 138 275 140 276 178 277 162 278 142 279 180 280 164 281 159 282 144 283 182 284 148 285 184 286 166 287 150 288 186 289 148 290 188 291 168 292 152 293 190 294 170 295 154 296 156 297 192 298 172 299 174 300 159 301 182 302 194 303 158 304 174 305 176 306 178 307 140 308 162 309 178 310 196 311 180 312 198 313 164 314 184 315 200 316 166 317 186 318 184 319 148 320 188 321 202 322 168 323 188 324 170 325 190 326 192 327 204 328 172 329 174 330 182 331 206 332 194 333 174 334 208 335 210 336 178 337 176 338 178 339 212 340 196 341 180 342 214 343 198 344 184 345 216 346 200 347 186 348 218 349 184 350 220 351 202 352 188 353 222 354 188 355 190 356 192 357 224 358 204 359 214 360 226 361 198 362 208 363 174 364 206 365 228 366 194 367 208 368 210 369 212 370 178 371 196 372 212 373 230 374 216 375 232 376 200 377 218 378 216 379 184 380 220 381 234 382 202 383 220 384 188 385 222 386 224 387 236 388 204 389 214 390 238 391 226 392 208 393 206 394 240 395 228 396 208 397 242 398 244 399 212 400 210 401 230 402 212 403 246 404 216 405 248 406 232 407 218 408 250 409 216 410 220 411 252 412 234 413 254 414 220 415 222 416 256 417 236 418 224 419 258 420 230 421 246 422 238 423 260 424 226 425 208 426 240 427 242 428 262 429 228 430 242 431 244 432 264 433 212 434 248 435 266 436 232 437 250 438 248 439 216 440 252 441 268 442 234 443 252 444 220 445 254 446 256 447 270 448 236 449 258 450 246 451 272 452 238 453 274 454 260 455 242 456 240 457 276 458 262 459 242 460 278 461 280 462 264 463 244 464 248 465 282 466 266 467 250 468 284 469 248 470 252 471 286 472 268 473 288 474 252 475 254 476 290 477 270 478 256 479 272 480 264 481 280 482 292 483 258 484 272 485 274 486 294 487 260 488 242 489 276 490 296 491 298 492 262 493 278 494 282 495 300 496 266 497 284 498 282 499 248 500 286 501 302 502 268 503 286 504 252 505 288 506 290 507 304 508 270 509 272 510 280 511 306 512 292 513 272 514 308 515 274 516 310 517 294 518 296 519 276 520 312 521 298 522 278 523 314 524 282 525 316 526 300 527 284 528 318 529 282 530 286 531 320 532 302 533 322 534 286 535 288 536 324 537 304 538 290 539 298 540 314 541 326 542 308 543 272 544 306 545 328 546 292 547 308 548 294 549 310 550 330 551 314 552 296 553 312 554 316 555 332 556 300 557 318 558 316 559 282 560 320 561 334 562 302 563 320 564 286 565 322 566 324 567 336 568 304 569 326 570 314 571 338 572 308 573 306 574 340 575 328 576 308 577 342 578 330 579 310 580 344 581 314 582 312 583 346 584 316 585 348 586 332 587 350 588 316 589 318 590 320 591 352 592 334 593 322 594 354 595 320 596 356 597 336 598 324 599 338 600 314 601 346 602 326 603 338 604 358 605 342 606 308 607 340 608 360 609 328 610 342 611 330 612 344 613 362 614 348 615 364 616 332 617 350 618 366 619 316 620 352 621 368 622 334 623 354 624 352 625 320 626 370 627 336 628 356 629 338 630 346 631 372 632 358 633 338 634 374 635 342 636 340 637 376 638 342 639 378 640 360 641 362 642 344 643 380 644 348 645 382 646 364 647 384 648 366 649 350 650 352 651 386 652 368 653 354 654 388 655 352 656 390 657 370 658 356 659 362 660 380 661 392 662 374 663 338 664 372 665 394 666 358 667 374 668 378 669 342 670 376 671 360 672 378 673 396 674 382 675 398 676 364 677 384 678 400 679 366 680 386 681 402 682 368 683 388 684 386 685 352 686 404 687 370 688 390 689 392 690 380 691 406 692 374 693 372 694 408 695 394 696 374 697 410 698 378 699 376 700 412 701 378 702 414 703 396 704 416 705 398 706 382 707 384 708 418 709 400 710 386 711 420 712 402 713 388 714 422 715 386 716 404 717 390 718 424 719 396 720 414 721 426 722 392 723 406 724 428 725 410 726 374 727 408 728 430 729 394 730 410 731 414 732 378 733 412 734 416 735 432 736 398 737 418 738 416 739 400 740 402 741 420 742 434 743 422 744 420 745 386 746 436 747 404 748 424 749 414 750 438 751 426 752 428 753 406 754 440 755 410 756 408 757 442 758 430 759 410 760 444 761 414 762 412 763 446 764 448 765 432 766 416 767 418 768 450 769 416 770 434 771 420 772 452 773 422 774 454 775 420 776 436 777 424 778 456 779 438 780 414 781 446 782 426 783 438 784 458 785 428 786 440 787 460 788 444 789 410 790 442 791 462 792 430 793 444 794 448 795 464 796 432 797 450 798 448 799 416 800 434 801 452 802 466 803 454 804 452 805 420 806 468 807 436 808 456 809 438 810 446 811 470 812 438 813 472 814 458 815 460 816 440 817 474 818 444 819 442 820 476 821 462 822 444 823 478 824 448 825 480 826 464 827 450 828 482 829 448 830 466 831 452 832 484 833 486 834 452 835 454 836 468 837 456 838 488 839 490 840 462 841 478 842 438 843 470 844 472 845 458 846 472 847 492 848 494 849 460 850 474 851 478 852 444 853 476 854 480 855 496 856 464 857 482 858 480 859 448 860 466 861 484 862 498 863 484 864 452 865 486 866 500 867 468 868 488 869 490 870 478 871 502 872 472 873 470 874 504 875 472 876 506 877 492 878 494 879 474 880 508 881 478 882 476 883 510 884 480 885 512 886 496 887 482 888 514 889 480 890 498 891 484 892 516 893 518 894 484 895 486 896 500 897 488 898 520 899 502 900 478 901 510 902 522 903 490 904 502 905 472 906 504 907 524 908 492 909 506 910 526 911 528 912 494 913 508 914 512 915 530 916 496 917 514 918 512 919 480 920 498 921 516 922 532 923 516 924 484 925 518 926 534 927 500 928 520 929 502 930 510 931 536 932 522 933 502 934 538 935 524 936 504 937 540 938 506 939 542 940 526 941 528 942 508 943 544 944 512 945 546 946 530 947 514 948 548 949 512 950 532 951 516 952 550 953 552 954 516 955 518 956 534 957 520 958 554 959 556 960 528 961 544 962 538 963 502 964 536 965 558 966 522 967 538 968 524 969 540 970 560 971 526 972 542 973 562 974 546 975 564 976 530 977 548 978 546 979 512 980 566 981 532 982 550 983 550 984 516 985 552 986 534 987 554 988 568 989 556 990 544 991 570 992 572 993 538 994 536 995 558 996 538 997 574 998 560 999 540 1000 576 1001 578 1002 562 1003 542 1004 546 1005 580 1006 564 1007 548 1008 582 1009 546 1010 566 1011 550 1012 584 1013 586 1014 550 1015 552 1016 568 1017 554 1018 588 1019 578 1020 590 1021 562 1022 592 1023 556 1024 570 1025 572 1026 574 1027 538 1028 594 1029 558 1030 574 1031 560 1032 576 1033 596 1034 580 1035 598 1036 564 1037 582 1038 580 1039 546 1040 600 1041 566 1042 584 1043 584 1044 550 1045 586 1046 568 1047 588 1048 602 1049 604 1050 590 1051 578 1052 592 1053 570 1054 606 1055 608 1056 574 1057 572 1058 574 1059 610 1060 594 1061 576 1062 612 1063 596 1064 580 1065 614 1066 598 1067 582 1068 616 1069 580 1070 600 1071 584 1072 618 1073 620 1074 584 1075 586 1076 602 1077 588 1078 622 1079 596 1080 612 1081 624 1082 604 1083 626 1084 590 1085 628 1086 592 1087 606 1088 608 1089 630 1090 574 1091 610 1092 632 1093 594 1094 614 1095 634 1096 598 1097 616 1098 614 1099 580 1100 636 1101 600 1102 618 1103 618 1104 584 1105 620 1106 602 1107 622 1108 638 1109 612 1110 640 1111 624 1112 642 1113 626 1114 604 1115 644 1116 628 1117 606 1118 608 1119 646 1120 630 1121 610 1122 648 1123 632 1124 614 1125 650 1126 634 1127 614 1128 616 1129 652 1130 636 1131 618 1132 654 1133 656 1134 618 1135 620 1136 638 1137 622 1138 658 1139 648 1140 660 1141 632 1142 640 1143 662 1144 624 1145 642 1146 664 1147 626 1148 666 1149 628 1150 644 1151 646 1152 668 1153 630 1154 650 1155 670 1156 634 1157 614 1158 652 1159 650 1160 672 1161 636 1162 654 1163 674 1164 618 1165 656 1166 638 1167 658 1168 676 1169 678 1170 660 1171 648 1172 640 1173 680 1174 662 1175 682 1176 664 1177 642 1178 684 1179 666 1180 644 1181 646 1182 686 1183 668 1184 670 1185 650 1186 688 1187 650 1188 652 1189 690 1190 672 1191 654 1192 692 1193 674 1194 656 1195 694 1196 658 1197 696 1198 676 1199 686 1200 678 1201 668 1202 678 1203 698 1204 660 1205 680 1206 682 1207 662 1208 682 1209 700 1210 664 1211 684 1212 702 1213 666 1214 704 1215 670 1216 688 1217 650 1218 690 1219 706 1220 708 1221 672 1222 692 1223 674 1224 694 1225 710 1226 676 1227 696 1228 712 1229 678 1230 686 1231 714 1232 698 1233 678 1234 716 1235 680 1236 718 1237 682 1238 682 1239 720 1240 700 1241 722 1242 702 1243 684 1244 704 1245 688 1246 724 1247 706 1248 690 1249 726 1250 708 1251 692 1252 728 1253 710 1254 694 1255 730 1256 696 1257 732 1258 712 1259 722 1260 734 1261 702 1262 716 1263 678 1264 714 1265 736 1266 698 1267 716 1268 718 1269 720 1270 682 1271 700 1272 720 1273 738 1274 704 1275 724 1276 740 1277 742 1278 706 1279 726 1280 744 1281 708 1282 728 1283 710 1284 730 1285 746 1286 712 1287 732 1288 748 1289 750 1290 734 1291 722 1292 716 1293 714 1294 752 1295 736 1296 716 1297 754 1298 718 1299 756 1300 720 1301 720 1302 758 1303 738 1304 740 1305 724 1306 760 1307 742 1308 726 1309 762 1310 764 1311 744 1312 728 1313 746 1314 730 1315 766 1316 732 1317 768 1318 748 1319 738 1320 758 1321 770 1322 750 1323 772 1324 734 1325 754 1326 716 1327 752 1328 774 1329 736 1330 754 1331 756 1332 758 1333 720 1334 740 1335 760 1336 776 1337 760 1338 742 1339 762 1340 778 1341 744 1342 764 1343 746 1344 766 1345 780 1346 768 1347 782 1348 748 1349 758 1350 784 1351 770 1352 786 1353 772 1354 750 1355 754 1356 752 1357 788 1358 774 1359 754 1360 790 1361 756 1362 792 1363 758 1364 776 1365 760 1366 794 1367 762 1368 796 1369 760 1370 798 1371 778 1372 764 1373 800 1374 780 1375 766 1376 768 1377 802 1378 782 1379 792 1380 784 1381 758 1382 770 1383 784 1384 804 1385 786 1386 806 1387 772 1388 790 1389 754 1390 788 1391 808 1392 774 1393 790 1394 776 1395 794 1396 810 1397 796 1398 794 1399 760 1400 798 1401 812 1402 778 1403 814 1404 780 1405 800 1406 802 1407 816 1408 782 1409 792 1410 818 1411 784 1412 784 1413 820 1414 804 1415 822 1416 806 1417 786 1418 790 1419 788 1420 824 1421 808 1422 790 1423 826 1424 794 1425 828 1426 810 1427 796 1428 830 1429 794 1430 832 1431 812 1432 798 1433 834 1434 814 1435 800 1436 802 1437 836 1438 816 1439 838 1440 808 1441 826 1442 818 1443 820 1444 784 1445 804 1446 820 1447 840 1448 822 1449 842 1450 806 1451 826 1452 790 1453 824 1454 828 1455 844 1456 810 1457 830 1458 828 1459 794 1460 832 1461 846 1462 812 1463 848 1464 814 1465 834 1466 836 1467 850 1468 816 1469 838 1470 826 1471 852 1472 854 1473 820 1474 818 1475 820 1476 856 1477 840 1478 822 1479 858 1480 842 1481 826 1482 824 1483 860 1484 828 1485 862 1486 844 1487 830 1488 864 1489 828 1490 866 1491 846 1492 832 1493 868 1494 848 1495 834 1496 836 1497 870 1498 850 1499 852 1500 826 1501 860 1502 872 1503 838 1504 852 1505 854 1506 856 1507 820 1508 840 1509 856 1510 874 1511 858 1512 876 1513 842 1514 862 1515 878 1516 844 1517 864 1518 862 1519 828 1520 866 1521 880 1522 846 1523 866 1524 848 1525 868 1526 870 1527 882 1528 850 1529 852 1530 860 1531 884 1532 872 1533 852 1534 886 1535 888 1536 856 1537 854 1538 856 1539 890 1540 874 1541 858 1542 892 1543 876 1544 862 1545 894 1546 878 1547 864 1548 896 1549 862 1550 898 1551 880 1552 866 1553 900 1554 866 1555 868 1556 870 1557 902 1558 882 1559 892 1560 904 1561 876 1562 886 1563 852 1564 884 1565 906 1566 872 1567 886 1568 888 1569 890 1570 856 1571 874 1572 890 1573 908 1574 894 1575 910 1576 878 1577 896 1578 894 1579 862 1580 898 1581 912 1582 880 1583 898 1584 866 1585 900 1586 902 1587 914 1588 882 1589 892 1590 916 1591 904 1592 886 1593 884 1594 918 1595 906 1596 886 1597 920 1598 922 1599 890 1600 888 1601 908 1602 890 1603 924 1604 894 1605 926 1606 910 1607 896 1608 928 1609 894 1610 898 1611 930 1612 912 1613 932 1614 898 1615 900 1616 934 1617 914 1618 902 1619 936 1620 908 1621 924 1622 916 1623 938 1624 904 1625 886 1626 918 1627 920 1628 940 1629 906 1630 920 1631 922 1632 942 1633 890 1634 926 1635 944 1636 910 1637 928 1638 926 1639 894 1640 930 1641 946 1642 912 1643 930 1644 898 1645 932 1646 934 1647 948 1648 914 1649 936 1650 924 1651 950 1652 916 1653 952 1654 938 1655 920 1656 918 1657 954 1658 940 1659 920 1660 956 1661 958 1662 942 1663 922 1664 926 1665 960 1666 944 1667 928 1668 962 1669 926 1670 930 1671 964 1672 946 1673 966 1674 930 1675 932 1676 968 1677 948 1678 934 1679 950 1680 942 1681 958 1682 970 1683 936 1684 950 1685 952 1686 972 1687 938 1688 920 1689 954 1690 974 1691 940 1692 956 1693 976 1694 960 1695 978 1696 944 1697 962 1698 960 1699 926 1700 964 1701 980 1702 946 1703 964 1704 930 1705 966 1706 968 1707 982 1708 948 1709 950 1710 958 1711 984 1712 970 1713 950 1714 986 1715 952 1716 988 1717 972 1718 974 1719 954 1720 990 1721 976 1722 956 1723 992 1724 960 1725 994 1726 978 1727 962 1728 996 1729 960 1730 964 1731 998 1732 980 1733 1000 1734 964 1735 966 1736 1002 1737 982 1738 968 1739 976 1740 992 1741 1004 1742 986 1743 950 1744 984 1745 1006 1746 970 1747 986 1748 972 1749 988 1750 1008 1751 992 1752 974 1753 990 1754 994 1755 1010 1756 978 1757 996 1758 994 1759 960 1760 998 1761 1012 1762 980 1763 998 1764 964 1765 1000 1766 1002 1767 1014 1768 982 1769 1004 1770 992 1771 1016 1772 986 1773 984 1774 1018 1775 1006 1776 986 1777 1020 1778 1008 1779 988 1780 1022 1781 992 1782 990 1783 1024 1784 994 1785 1026 1786 1010 1787 1028 1788 994 1789 996 1790 998 1791 1030 1792 1012 1793 1000 1794 1032 1795 998 1796 1034 1797 1014 1798 1002 1799 1016 1800 992 1801 1024 1802 1004 1803 1016 1804 1036 1805 1020 1806 986 1807 1018 1808 1038 1809 1006 1810 1020 1811 1008 1812 1022 1813 1040 1814 1026 1815 1042 1816 1010 1817 1028 1818 1044 1819 994 1820 1030 1821 1046 1822 1012 1823 1032 1824 1030 1825 998 1826 1048 1827 1014 1828 1034 1829 1016 1830 1024 1831 1050 1832 1036 1833 1016 1834 1052 1835 1020 1836 1018 1837 1054 1838 1020 1839 1056 1840 1038 1841 1040 1842 1022 1843 1058 1844 1026 1845 1060 1846 1042 1847 1062 1848 1044 1849 1028 1850 1030 1851 1064 1852 1046 1853 1032 1854 1066 1855 1030 1856 1068 1857 1048 1858 1034 1859 1040 1860 1058 1861 1070 1862 1052 1863 1016 1864 1050 1865 1072 1866 1036 1867 1052 1868 1056 1869 1020 1870 1054 1871 1038 1872 1056 1873 1074 1874 1060 1875 1076 1876 1042 1877 1062 1878 1078 1879 1044 1880 1064 1881 1080 1882 1046 1883 1066 1884 1064 1885 1030 1886 1082 1887 1048 1888 1068 1889 1070 1890 1058 1891 1084 1892 1052 1893 1050 1894 1086 1895 1072 1896 1052 1897 1088 1898 1056 1899 1054 1900 1090 1901 1056 1902 1092 1903 1074 1904 1094 1905 1076 1906 1060 1907 1062 1908 1096 1909 1078 1910 1064 1911 1098 1912 1080 1913 1066 1914 1100 1915 1064 1916 1082 1917 1068 1918 1102 1919 1074 1920 1092 1921 1104 1922 1070 1923 1084 1924 1106 1925 1088 1926 1052 1927 1086 1928 1108 1929 1072 1930 1088 1931 1092 1932 1056 1933 1090 1934 1094 1935 1110 1936 1076 1937 1096 1938 1094 1939 1078 1940 1080 1941 1098 1942 1112 1943 1100 1944 1114 1945 1064 1946 1116 1947 1082 1948 1102 1949 1092 1950 1118 1951 1104 1952 1106 1953 1084 1954 1120 1955 1088 1956 1086 1957 1122 1958 1108 1959 1088 1960 1124 1961 1092 1962 1090 1963 1126 1964 1128 1965 1110 1966 1094 1967 1096 1968 1130 1969 1094 1970 1112 1971 1098 1972 1132 1973 1134 1974 1114 1975 1100 1976 1116 1977 1102 1978 1136 1979 1118 1980 1092 1981 1126 1982 1104 1983 1118 1984 1138 1985 1106 1986 1120 1987 1140 1988 1124 1989 1088 1990 1122 1991 1142 1992 1108 1993 1124 1994 1128 1995 1144 1996 1110 1997 1130 1998 1128 1999 1094 2000 1112 2001 1132 2002 1146 2003 1132 2004 1114 2005 1134 2006 1148 2007 1116 2008 1136 2009 1118 2010 1126 2011 1150 2012 1118 2013 1152 2014 1138 2015 1140 2016 1120 2017 1154 2018 1124 2019 1122 2020 1156 2021 1142 2022 1124 2023 1158 2024 1128 2025 1160 2026 1144 2027 1130 2028 1162 2029 1128 2030 1146 2031 1132 2032 1164 2033 1166 2034 1132 2035 1134 2036 1148 2037 1136 2038 1168 2039 1170 2040 1142 2041 1158 2042 1118 2043 1150 2044 1152 2045 1138 2046 1152 2047 1172 2048 1174 2049 1140 2050 1154 2051 1158 2052 1124 2053 1156 2054 1160 2055 1176 2056 1144 2057 1162 2058 1160 2059 1128 2060 1146 2061 1164 2062 1178 2063 1164 2064 1132 2065 1166 2066 1180 2067 1148 2068 1168 2069 1170 2070 1158 2071 1182 2072 1152 2073 1150 2074 1184 2075 1152 2076 1186 2077 1172 2078 1174 2079 1154 2080 1188 2081 1158 2082 1156 2083 1190 2084 1160 2085 1192 2086 1176 2087 1162 2088 1194 2089 1160 2090 1178 2091 1164 2092 1196 2093 1198 2094 1164 2095 1166 2096 1180 2097 1168 2098 1200 2099 1182 2100 1158 2101 1190 2102 1202 2103 1170 2104 1182 2105 1152 2106 1184 2107 1204 2108 1172 2109 1186 2110 1206 2111 1208 2112 1174 2113 1188 2114 1192 2115 1210 2116 1176 2117 1194 2118 1192 2119 1160 2120 1178 2121 1196 2122 1212 2123 1196 2124 1164 2125 1198 2126 1214 2127 1180 2128 1200 2129 1182 2130 1190 2131 1216 2132 1202 2133 1182 2134 1218 2135 1204 2136 1184 2137 1220 2138 1186 2139 1222 2140 1206 2141 1208 2142 1188 2143 1224 2144 1226 2145 1208 2146 1224 2147 1218 2148 1182 2149 1216 2150 1228 2151 1202 2152 1218 2153 1204 2154 1220 2155 1230 2156 1206 2157 1222 2158 1232 2159 1226 2160 1224 2161 1234 2162 1236 2163 1218 2164 1216 2165 1218 2166 1238 2167 1228 2168 1230 2169 1220 2170 1240 2171 1242 2172 1232 2173 1222 2174 1242 2175 1244 2176 1232 2177 1246 2178 1226 2179 1234 2180 1236 2181 1238 2182 1218 2183 1238 2184 1248 2185 1228 2186 1230 2187 1240 2188 1250 2189 1252 2190 1244 2191 1242 2192 1246 2193 1234 2194 1254 2195 1256 2196 1238 2197 1236 2198 1238 2199 1258 2200 1248 2201 1240 2202 1260 2203 1250 2204 1250 2205 1260 2206 1262 2207 1252 2208 1264 2209 1244 2210 1266 2211 1246 2212 1254 2213 1256 2214 1268 2215 1238 2216 1258 2217 1270 2218 1248 2219 1260 2220 1272 2221 1262 2222 1274 2223 1264 2224 1252 2225 1276 2226 1266 2227 1254 2228 1256 2229 1278 2230 1268 2231 1258 2232 1280 2233 1270 2234 1280 2235 1282 2236 1270 2237 1272 2238 1284 2239 1262 2240 1274 2241 1286 2242 1264 2243 1288 2244 1266 2245 1276 2246 1278 2247 1280 2248 1268 2249 1290 2250 1282 2251 1280 2252 1272 2253 1292 2254 1284 2255 1294 2256 1286 2257 1274 2258 1296 2259 1288 2260 1276 2261 1280 2262 1278 2263 1298 2264 1290 2265 1280 2266 1298 2267 1290 2268 1300 2269 1282 2270 1292 2271 1294 2272 1284 2273 1294 2274 1302 2275 1286 2276 1296 2277 1304 2278 1288 2279 1290 2280 1298 2281 1306 2282 1300 2283 1290 2284 1308 2285 1292 2286 1310 2287 1294 2288 1294 2289 1312 2290 1302 2291 1314 2292 1304 2293 1296 2294 1314 2295 1316 2296 1304 2297 1308 2298 1290 2299 1306 2300 1318 2301 1300 2302 1308 2303 1310 2304 1312 2305 1294 2306 1302 2307 1312 2308 1320 2309 1322 2310 1316 2311 1314 2312 1308 2313 1306 2314 1324 2315 1318 2316 1308 2317 1326 2318 1310 2319 1328 2320 1312 2321 1312 2322 1330 2323 1320 2324 1320 2325 1330 2326 1332 2327 1322 2328 1334 2329 1316 2330 1326 2331 1308 2332 1324 2333 1336 2334 1318 2335 1326 2336 1328 2337 1330 2338 1312 2339 1330 2340 1338 2341 1332 2342 1340 2343 1334 2344 1322 2345 1326 2346 1324 2347 1342 2348 1336 2349 1326 2350 1344 2351 1328 2352 1346 2353 1330 2354 1346 2355 1338 2356 1330 2357 1332 2358 1338 2359 1348 2360 1340 2361 1350 2362 1334 2363 1344 2364 1326 2365 1342 2366 1352 2367 1336 2368 1344 2369 1346 2370 1354 2371 1338 2372 1338 2373 1356 2374 1348 2375 1358 2376 1350 2377 1340 2378 1344 2379 1342 2380 1360 2381 1352 2382 1344 2383 1362 2384 1364 2385 1352 2386 1362 2387 1354 2388 1356 2389 1338 2390 1348 2391 1356 2392 1366 2393 1358 2394 1368 2395 1350 2396 1362 2397 1344 2398 1360 2399 1364 2400 1362 2401 1370 2402 1372 2403 1356 2404 1354 2405 1356 2406 1374 2407 1366 2408 1358 2409 1376 2410 1368 2411 1362 2412 1360 2413 1378 2414 1370 2415 1362 2416 1378 2417 1380 2418 1364 2419 1370 2420 1372 2421 1374 2422 1356 2423 1366 2424 1374 2425 1382 2426 1376 2427 1384 2428 1368 2429 1370 2430 1378 2431 1386 2432 1380 2433 1370 2434 1388 2435 1390 2436 1374 2437 1372 2438 1374 2439 1392 2440 1382 2441 1376 2442 1394 2443 1384 2444 1394 2445 1396 2446 1384 2447 1388 2448 1370 2449 1386 2450 1398 2451 1380 2452 1388 2453 1390 2454 1392 2455 1374 2456 1382 2457 1392 2458 1400 2459 1394 2460 1402 2461 1396 2462 1388 2463 1386 2464 1404 2465 1398 2466 1388 2467 1406 2468 1408 2469 1392 2470 1390 2471 1400 2472 1392 2473 1410 2474 1412 2475 1400 2476 1410 2477 1402 2478 1414 2479 1396 2480 1388 2481 1404 2482 1406 2483 1416 2484 1398 2485 1406 2486 1408 2487 1418 2488 1392 2489 1412 2490 1410 2491 1420 2492 1402 2493 1422 2494 1414 2495 1406 2496 1404 2497 1424 2498 1416 2499 1406 2500 1426 2501 1428 2502 1418 2503 1408 2504 1420 2505 1418 2506 1428 2507 1430 2508 1412 2509 1420 2510 1422 2511 1432 2512 1414 2513 1406 2514 1424 2515 1434 2516 1416 2517 1426 2518 1436 2519 1420 2520 1428 2521 1438 2522 1430 2523 1420 2524 1440 2525 1422 2526 1442 2527 1432 2528 1434 2529 1424 2530 1444 2531 1436 2532 1426 2533 1446 2534 1436 2535 1446 2536 1448 2537 1440 2538 1420 2539 1438 2540 1450 2541 1430 2542 1440 2543 1432 2544 1442 2545 1452 2546 1446 2547 1434 2548 1444 2549 1448 2550 1446 2551 1454 2552 1440 2553 1438 2554 1456 2555 1450 2556 1440 2557 1458 2558 1452 2559 1442 2560 1460 2561 1446 2562 1444 2563 1462 2564 1454 2565 1446 2566 1462 2567 1448 2568 1454 2569 1464 2570 1458 2571 1440 2572 1456 2573 1466 2574 1450 2575 1458 2576 1452 2577 1460 2578 1468 2579 1454 2580 1462 2581 1470 2582 1464 2583 1454 2584 1472 2585 1458 2586 1456 2587 1474 2588 1458 2589 1476 2590 1466 2591 1468 2592 1460 2593 1478 2594 1468 2595 1478 2596 1480 2597 1472 2598 1454 2599 1470 2600 1482 2601 1464 2602 1472 2603 1476 2604 1458 2605 1474 2606 1466 2607 1476 2608 1484 2609 1480 2610 1478 2611 1486 2612 1472 2613 1470 2614 1488 2615 1482 2616 1472 2617 1490 2618 1476 2619 1474 2620 1492 2621 1476 2622 1494 2623 1484 2624 1484 2625 1494 2626 1496 2627 1480 2628 1486 2629 1498 2630 1490 2631 1472 2632 1488 2633 1500 2634 1482 2635 1490 2636 1494 2637 1476 2638 1492 2639 1494 2640 1502 2641 1496 2642 1498 2643 1486 2644 1504 2645 1490 2646 1488 2647 1506 2648 1500 2649 1490 2650 1508 2651 1494 2652 1492 2653 1510 2654 1502 2655 1494 2656 1510 2657 1496 2658 1502 2659 1512 2660 1498 2661 1504 2662 1514 2663 1508 2664 1490 2665 1506 2666 1516 2667 1500 2668 1508 2669</p>\r\n                </triangles>\r\n                <triangles count=\"890\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1697\"/>\r\n                    <p>3 4 5 3 5 7 10 11 4 13 5 4 17 18 19 21 3 7 23 11 10 11 25 4 18 28 29 13 4 31 33 17 19 19 18 29 35 21 7 23 10 37 41 42 43 46 47 42 31 4 25 29 28 49 51 13 31 55 56 57 33 59 17 62 63 56 65 21 35 67 23 37 41 43 69 41 46 42 46 57 47 31 25 71 74 75 62 28 77 49 51 31 79 81 55 57 56 63 57 83 59 33 62 75 63 85 65 35 67 37 65 69 43 87 91 92 93 93 95 81 57 97 47 79 31 71 74 99 75 49 77 101 103 51 79 95 55 81 57 63 97 83 105 59 63 75 107 109 65 85 65 111 67 69 87 113 115 92 91 92 95 93 79 71 117 75 99 119 121 99 74 77 123 101 103 79 125 63 107 97 83 127 105 75 119 107 129 109 85 65 109 111 87 131 113 133 115 91 127 136 137 125 79 117 99 139 119 121 141 99 101 123 143 145 103 125 127 137 105 125 117 147 129 149 109 109 151 111 113 131 153 115 133 155 136 157 137 160 147 161 99 141 139 163 141 121 123 165 143 145 125 160 160 125 147 129 167 149 109 149 151 131 169 153 155 133 171 136 173 157 175 160 161 139 141 177 163 179 141 165 181 143 183 145 160 167 185 149 149 187 151 153 169 189 155 171 191 173 193 157 183 160 175 175 161 195 141 179 177 197 179 163 165 199 181 167 201 185 149 185 187 169 203 189 191 171 189 173 205 193 207 183 175 209 175 195 177 179 211 197 213 179 199 215 181 201 217 185 185 219 187 189 203 221 191 189 223 205 225 193 199 227 215 207 175 209 209 195 229 179 213 211 231 213 197 201 233 217 185 217 219 203 235 221 223 189 221 205 237 225 227 239 215 241 207 209 243 209 229 211 213 245 247 213 231 233 249 217 217 251 219 235 253 221 223 221 255 225 237 257 247 231 259 227 261 239 243 241 209 243 229 263 213 265 245 233 267 249 217 249 251 235 269 253 255 221 253 237 271 257 273 247 259 261 275 239 277 241 243 279 243 263 245 265 281 267 283 249 249 285 251 269 287 253 255 253 289 257 271 291 281 265 273 273 259 293 261 295 275 297 277 243 279 263 299 267 301 283 249 283 285 269 303 287 289 253 287 271 305 291 307 281 273 309 273 293 295 311 275 313 277 297 315 279 299 301 317 283 283 319 285 303 321 287 289 287 323 291 305 325 327 315 299 307 273 309 309 293 329 331 311 295 313 297 315 301 333 317 283 317 319 303 335 321 323 287 321 305 337 325 339 315 327 341 307 309 343 309 329 345 311 331 347 313 315 333 349 317 319 317 351 335 353 321 321 355 323 325 337 357 347 315 339 359 339 327 341 309 343 343 329 361 363 345 331 333 365 349 317 367 351 335 369 353 321 353 355 357 337 371 373 347 339 375 339 359 377 341 343 361 379 343 381 345 363 365 383 349 351 367 385 369 387 353 353 389 355 357 371 391 393 381 363 373 339 375 375 359 395 377 343 379 397 379 361 365 399 383 367 401 385 369 403 387 353 387 389 391 371 405 407 381 393 409 373 375 411 375 395 413 377 379 397 415 379 383 399 417 401 419 385 403 421 387 387 423 389 425 391 405 427 415 397 429 407 393 409 375 411 411 395 431 413 379 415 399 433 417 401 417 419 435 421 403 387 421 423 425 405 437 427 439 415 441 407 429 443 409 411 445 411 431 447 413 415 417 433 449 417 451 419 453 421 435 421 455 423 457 425 437 447 415 439 459 439 427 461 441 429 443 411 445 445 431 463 433 465 449 417 449 451 467 453 435 421 453 455 457 437 469 471 447 439 459 473 439 475 441 461 477 443 445 479 445 463 465 481 449 449 483 451 485 453 467 455 453 487 489 457 469 479 463 491 473 471 439 493 473 459 475 461 495 477 445 479 465 497 481 449 481 483 499 485 467 487 453 485 489 469 501 503 479 491 505 471 473 493 507 473 509 475 495 511 477 479 497 513 481 481 515 483 517 485 499 487 485 519 521 489 501 511 479 503 503 491 523 525 505 473 527 507 493 509 495 529 497 531 513 481 513 515 533 517 499 519 485 517 521 501 535 537 511 503 539 503 523 541 505 525 527 543 507 545 509 529 531 547 513 513 549 515 551 517 533 519 517 553 555 521 535 545 529 557 537 503 539 539 523 559 561 541 525 563 543 527 531 565 547 513 547 549 551 533 567 553 517 551 569 555 535 571 545 557 537 539 573 575 539 559 577 541 561 543 563 579 565 581 547 547 583 549 585 551 567 553 551 587 589 555 569 563 591 579 571 557 593 539 575 573 575 559 595 597 577 561 565 599 581 547 581 583 585 567 601 587 551 585 603 589 569 579 591 605 607 571 593 573 575 609 595 611 575 597 613 577 599 615 581 581 617 583 619 585 601 587 585 621 623 589 603 625 613 597 591 627 605 607 593 629 575 631 609 595 633 611 599 635 615 581 615 617 619 601 637 621 585 619 639 623 603 625 641 613 605 627 643 607 629 645 631 647 609 633 649 611 635 651 615 653 617 615 655 619 637 621 619 657 659 623 639 633 661 649 625 663 641 627 665 643 645 629 667 631 669 647 635 671 651 651 653 615 655 637 673 657 619 675 677 659 639 649 661 679 663 681 641 643 665 683 645 667 685 669 687 647 689 651 671 691 653 651 693 655 673 695 657 675 677 697 659 669 679 687 661 699 679 663 683 681 665 701 683 667 703 685 689 671 705 707 691 651 693 673 709 711 695 675 713 697 677 715 687 679 717 679 699 683 719 681 701 721 683 685 703 723 725 689 705 727 691 707 729 693 709 731 695 711 713 733 697 703 735 723 715 679 717 717 699 737 683 721 719 739 721 701 741 725 705 727 707 743 729 709 745 747 731 711 749 733 713 723 735 751 753 715 717 755 717 737 721 757 719 739 759 721 761 725 741 763 727 743 729 745 765 767 731 747 749 769 733 771 759 739 735 773 751 753 717 755 755 737 775 721 759 757 777 761 741 763 743 761 765 745 779 781 767 747 749 783 769 771 785 759 751 773 787 789 753 755 791 755 775 759 793 757 795 761 777 761 797 763 765 779 799 767 781 801 783 803 769 759 785 793 805 785 771 773 807 787 789 755 791 791 775 809 811 795 777 761 795 797 779 813 799 801 781 815 783 817 803 785 819 793 805 821 785 787 807 823 825 789 791 827 791 809 811 829 795 795 831 797 799 813 833 801 815 835 817 837 803 827 809 839 785 821 819 841 821 805 807 843 823 825 791 827 811 845 829 795 829 831 813 847 833 835 815 849 817 851 837 853 827 839 819 821 855 841 857 821 843 859 823 861 825 827 845 863 829 829 865 831 833 847 867 835 849 869 851 871 837 861 827 853 853 839 873 821 857 855 875 857 841 843 877 859 845 879 863 829 863 865 847 881 867 869 849 867 851 883 871 885 861 853 887 853 873 855 857 889 875 891 857 877 893 859 879 895 863 863 897 865 867 881 899 869 867 901 883 903 871 877 905 893 885 853 887 887 873 907 857 891 889 909 891 875 879 911 895 863 895 897 881 913 899 901 867 899 883 915 903 905 917 893 919 885 887 921 887 907 889 891 923 925 891 909 911 927 895 895 929 897 913 931 899 901 899 933 903 915 935 925 909 937 905 939 917 921 919 887 921 907 941 891 943 923 911 945 927 895 927 929 913 947 931 933 899 931 915 949 935 951 925 937 939 953 917 955 919 921 957 921 941 923 943 959 945 961 927 927 963 929 947 965 931 933 931 967 935 949 969 959 943 951 951 937 971 939 973 953 975 955 921 977 957 941 945 979 961 927 961 963 947 981 965 967 931 965 949 983 969 985 959 951 987 951 971 973 989 953 991 955 975 993 957 977 979 995 961 961 997 963 981 999 965 967 965 1001 969 983 1003 1005 993 977 985 951 987 987 971 1007 1009 989 973 991 975 993 979 1011 995 961 995 997 981 1013 999 1001 965 999 983 1015 1003 1017 993 1005 1019 985 987 1021 987 1007 1023 989 1009 1025 991 993 1011 1027 995 997 995 1029 1013 1031 999 999 1033 1001 1003 1015 1035 1025 993 1017 1037 1017 1005 1019 987 1021 1021 1007 1039 1041 1023 1009 1011 1043 1027 995 1045 1029 1013 1047 1031 999 1031 1033 1035 1015 1049 1051 1025 1017 1053 1017 1037 1055 1019 1021 1039 1057 1021 1059 1023 1041 1043 1061 1027 1029 1045 1063 1047 1065 1031 1031 1067 1033 1035 1049 1069 1071 1059 1041 1051 1017 1053 1053 1037 1073 1055 1021 1057 1075 1057 1039 1043 1077 1061 1045 1079 1063 1047 1081 1065 1031 1065 1067 1069 1049 1083 1085 1059 1071 1087 1051 1053 1089 1053 1073 1091 1055 1057 1075 1093 1057 1061 1077 1095 1079 1097 1063 1081 1099 1065 1065 1101 1067 1103 1069 1083 1105 1093 1075 1107 1085 1071 1087 1053 1089 1089 1073 1109 1091 1057 1093 1077 1111 1095 1079 1095 1097 1113 1099 1081 1065 1115 1101 1103 1083 1117 1105 1119 1093 1121 1085 1107 1123 1087 1089 1125 1089 1109 1127 1091 1093 1095 1111 1129 1095 1131 1097 1133 1099 1113 1101 1115 1135 1137 1103 1117 1127 1093 1119 1139 1119 1105 1141 1121 1107 1123 1089 1125 1125 1109 1143 1111 1145 1129 1095 1129 1131 1147 1133 1113 1135 1115 1133 1137 1117 1149 1151 1127 1119 1139 1153 1119 1155 1121 1141 1157 1123 1125 1159 1125 1143 1145 1161 1129 1129 1163 1131 1165 1133 1147 1135 1133 1167 1169 1137 1149 1159 1143 1171 1153 1151 1119 1173 1153 1139 1155 1141 1175 1157 1125 1159 1145 1177 1161 1129 1161 1163 1179 1165 1147 1167 1133 1165 1169 1149 1181 1183 1159 1171 1185 1151 1153 1173 1187 1153 1189 1155 1175 1191 1157 1159 1177 1193 1161 1161 1195 1163 1197 1165 1179 1167 1165 1199 1201 1169 1181 1191 1159 1183 1183 1171 1203 1205 1185 1153 1207 1187 1173 1189 1175 1209 1177 1211 1193 1161 1193 1195 1213 1197 1179 1199 1165 1197 1201 1181 1215 1217 1191 1183 1219 1183 1203 1221 1185 1205 1207 1223 1187 1225 1189 1209 1225 1209 1227 1217 1183 1219 1219 1203 1229 1231 1221 1205 1233 1223 1207 1235 1225 1227 1217 1219 1237 1229 1239 1219 1241 1221 1231 1223 1233 1243 1233 1245 1243 1235 1227 1247 1219 1239 1237 1229 1249 1239 1251 1241 1231 1243 1245 1253 1255 1235 1247 1237 1239 1257 1249 1259 1239 1251 1261 1241 1263 1261 1251 1245 1265 1253 1255 1247 1267 1239 1269 1257 1249 1271 1259 1263 1273 1261 1253 1265 1275 1255 1267 1277 1269 1279 1257 1271 1281 1259 1271 1283 1281 1263 1285 1273 1265 1287 1275 1277 1267 1289 1269 1281 1279 1281 1283 1291 1285 1293 1273 1275 1287 1295 1277 1289 1297 1299 1279 1281 1299 1281 1291 1283 1301 1291 1285 1295 1293 1287 1303 1295 1289 1305 1297 1307 1299 1291 1309 1291 1301 1295 1311 1293 1303 1313 1295 1297 1305 1315 1305 1317 1315 1307 1291 1309 1309 1301 1319 1295 1313 1311 1321 1313 1303 1315 1317 1323 1325 1307 1309 1327 1309 1319 1313 1329 1311 1321 1331 1313 1333 1331 1321 1317 1335 1323 1325 1309 1327 1327 1319 1337 1313 1331 1329 1333 1339 1331 1323 1335 1341 1343 1325 1327 1345 1327 1337 1331 1347 1329 1331 1339 1347 1349 1339 1333 1335 1351 1341 1343 1327 1345 1345 1337 1353 1339 1355 1347 1349 1357 1339 1341 1351 1359 1361 1343 1345 1363 1345 1353 1363 1353 1365 1339 1357 1355 1367 1357 1349 1351 1369 1359 1361 1345 1363 1371 1363 1365 1355 1357 1373 1367 1375 1357 1369 1377 1359 1379 1361 1363 1379 1363 1371 1371 1365 1381 1357 1375 1373 1383 1375 1367 1369 1385 1377 1387 1379 1371 1389 1371 1381 1373 1375 1391 1383 1393 1375 1385 1395 1377 1385 1397 1395 1387 1371 1389 1389 1381 1399 1375 1393 1391 1401 1393 1383 1397 1403 1395 1405 1387 1389 1407 1389 1399 1391 1393 1409 1411 1393 1401 1411 1401 1413 1397 1415 1403 1407 1405 1389 1407 1399 1417 1393 1419 1409 1421 1411 1413 1415 1423 1403 1425 1405 1407 1427 1407 1417 1409 1419 1429 1429 1419 1421 1421 1413 1431 1415 1433 1423 1435 1425 1407 1437 1427 1417 1439 1429 1421 1441 1421 1431 1433 1443 1423 1445 1425 1435 1447 1427 1437 1449 1447 1437 1439 1421 1441 1441 1431 1451 1453 1443 1433 1445 1435 1447 1455 1447 1449 1457 1439 1441 1459 1441 1451 1461 1443 1453 1463 1445 1447 1463 1447 1455 1465 1455 1449 1457 1441 1459 1459 1451 1467 1469 1461 1453 1471 1463 1455 1473 1455 1465 1475 1457 1459 1467 1477 1459 1479 1461 1469 1481 1479 1469 1471 1455 1473 1473 1465 1483 1475 1459 1477 1485 1477 1467 1487 1479 1481 1489 1471 1473 1491 1473 1483 1493 1475 1477 1485 1495 1477 1497 1495 1485 1499 1487 1481 1489 1473 1491 1491 1483 1501 1493 1477 1495 1497 1503 1495 1505 1487 1499 1507 1489 1491 1509 1491 1501 1511 1493 1495 1511 1495 1503 1513 1503 1497 1515 1505 1499 1507 1491 1509 1509 1501 1517</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1702\">\r\n            <mesh>\r\n                <source id=\"ID1703\">\r\n                    <float_array count=\"30\" id=\"ID1706\">0.6481636166572571 1.373394846916199 -0.0007520765066146851 0.6752741932868958 1.396806240081787 0.002683687955141068 0.6674685478210449 1.397706627845764 0.01294291764497757 0.6674685478210449 1.397706627845764 0.01294291764497757 0.6752741932868958 1.396806240081787 0.002683687955141068 0.6481636166572571 1.373394846916199 -0.0007520765066146851 0.6447465419769287 1.377805113792419 0.01006027683615685 0.6447465419769287 1.377805113792419 0.01006027683615685 0.603096067905426 1.37308406829834 -0.006200850009918213 0.603096067905426 1.37308406829834 -0.006200850009918213</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"10\" source=\"#ID1706\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1704\">\r\n                    <float_array count=\"30\" id=\"ID1707\">-0.2763361914172779 0.8551604172472301 -0.4385646703583597 -0.5409128252787497 0.6957396053703466 -0.4726094761725324 -0.5430237831643805 0.695908146677322 -0.4699329976773058 0.5430237831643805 -0.695908146677322 0.4699329976773058 0.5409128252787497 -0.6957396053703466 0.4726094761725324 0.2763361914172779 -0.8551604172472301 0.4385646703583597 -0.2920676442762112 0.8497403540373408 -0.4389052538845249 0.2920676442762112 -0.8497403540373408 0.4389052538845249 0.03797377695879648 0.9294074683196612 -0.3670963771206708 -0.03797377695879648 -0.9294074683196612 0.3670963771206708</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"10\" source=\"#ID1707\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1705\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1703\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1704\"/>\r\n                </vertices>\r\n                <triangles count=\"6\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1705\"/>\r\n                    <p>0 1 2 3 4 5 6 0 2 3 5 7 8 0 6 7 5 9</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1708\">\r\n            <mesh>\r\n                <source id=\"ID1709\">\r\n                    <float_array count=\"18\" id=\"ID1712\">0.6704499125480652 1.39844274520874 -0.02658201195299625 0.6457784771919251 1.377284526824951 -0.02970624901354313 0.6441598534584045 1.379136204719544 -0.0151943676173687 0.6441598534584045 1.379136204719544 -0.0151943676173687 0.6457784771919251 1.377284526824951 -0.02970624901354313 0.6704499125480652 1.39844274520874 -0.02658201195299625</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1712\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1710\">\r\n                    <float_array count=\"18\" id=\"ID1713\">0.6295715759548037 -0.7587738394453171 0.1670385923168571 0.6295715759548037 -0.7587738394453171 0.1670385923168571 0.6295715759548037 -0.7587738394453171 0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1713\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1711\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1709\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1710\"/>\r\n                </vertices>\r\n                <triangles count=\"2\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1711\"/>\r\n                    <p>0 1 2 3 4 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1714\">\r\n            <mesh>\r\n                <source id=\"ID1715\">\r\n                    <float_array count=\"4554\" id=\"ID1719\">0.5764011144638062 1.390616059303284 -0.139177218079567 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5764011144638062 1.390616059303284 -0.139177218079567 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.572441041469574 1.388842225074768 -0.1325118541717529 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5873357057571411 1.382593750953674 -0.1353528052568436 0.5873357057571411 1.382593750953674 -0.1353528052568436 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5646573305130005 1.41193699836731 -0.152768149971962 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557196855545044 1.412441611289978 -0.1504120379686356 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5659894943237305 1.386791586875916 -0.1443661153316498 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5659894943237305 1.386791586875916 -0.1443661153316498 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5794986486434937 1.376735687255859 -0.1402455270290375 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5794986486434937 1.376735687255859 -0.1402455270290375 0.5733222365379334 1.421713590621948 -0.1470988094806671 0.5733222365379334 1.421713590621948 -0.1470988094806671 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5967265367507935 1.369694590568543 -0.1356068253517151 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967265367507935 1.369694590568543 -0.1356068253517151 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.6013235449790955 1.376871228218079 -0.1310993880033493 0.6013235449790955 1.376871228218079 -0.1310993880033493 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5583849549293518 1.39915668964386 -0.147756814956665 0.557205080986023 1.412230134010315 -0.1413010209798813 0.557205080986023 1.412230134010315 -0.1413010209798813 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.6162846684455872 1.366446971893311 -0.1306639760732651 0.6162846684455872 1.366446971893311 -0.1306639760732651 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.557205080986023 1.412230134010315 -0.1413010209798813 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557205080986023 1.412230134010315 -0.1413010209798813 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5820477604866028 1.430738091468811 -0.1485836952924728 0.5820477604866028 1.430738091468811 -0.1485836952924728 0.578619122505188 1.433083534240723 -0.1561392545700073 0.578619122505188 1.433083534240723 -0.1561392545700073 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6171872019767761 1.374258875846863 -0.1265972405672073 0.6171872019767761 1.374258875846863 -0.1265972405672073 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.573066771030426 1.436009049415588 -0.1444292664527893 0.573066771030426 1.436009049415588 -0.1444292664527893 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.578619122505188 1.433083534240723 -0.1561392545700073 0.578619122505188 1.433083534240723 -0.1561392545700073 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6362500786781311 1.367325901985169 -0.1256429404020309 0.6362500786781311 1.367325901985169 -0.1256429404020309 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.573066771030426 1.436009049415588 -0.1444292664527893 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.573066771030426 1.436009049415588 -0.1444292664527893 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6168361306190491 1.371485948562622 -0.133814811706543 0.594593346118927 1.437490224838257 -0.1496256589889526 0.594593346118927 1.437490224838257 -0.1496256589889526 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6333761215209961 1.374970674514771 -0.1220347285270691 0.6333761215209961 1.374970674514771 -0.1220347285270691 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.6483002901077271 1.378945589065552 -0.1176018267869949 0.6483002901077271 1.378945589065552 -0.1176018267869949 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6546680331230164 1.372084975242615 -0.1207398623228073 0.6546680331230164 1.372084975242615 -0.1207398623228073 0.654680073261261 1.371889233589172 -0.1116740703582764 0.654680073261261 1.371889233589172 -0.1116740703582764 0.650735080242157 1.376069068908691 -0.1101703196763992 0.650735080242157 1.376069068908691 -0.1101703196763992 0.6097114086151123 1.441336512565613 -0.1503738611936569 0.6097114086151123 1.441336512565613 -0.1503738611936569 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6072173118591309 1.449327707290649 -0.1545247584581375 0.6072173118591309 1.449327707290649 -0.1545247584581375 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.654680073261261 1.371889233589172 -0.1116740703582764 0.654680073261261 1.371889233589172 -0.1116740703582764 0.650735080242157 1.376069068908691 -0.1101703196763992 0.650735080242157 1.376069068908691 -0.1101703196763992 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.660498857498169 1.385782361030579 -0.1134771406650543 0.660498857498169 1.385782361030579 -0.1134771406650543 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6697470545768738 1.380654454231262 -0.1162995100021362 0.6697470545768738 1.380654454231262 -0.1162995100021362 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6259343028068543 1.441896080970764 -0.1510118097066879 0.6259343028068543 1.441896080970764 -0.1510118097066879 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6272223591804504 1.449964761734009 -0.1547037810087204 0.6272223591804504 1.449964761734009 -0.1547037810087204 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6272338032722473 1.449633955955505 -0.14559705555439 0.626435399055481 1.444658279418945 -0.1437764018774033 0.626435399055481 1.444658279418945 -0.1437764018774033 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.626435399055481 1.444658279418945 -0.1437764018774033 0.626435399055481 1.444658279418945 -0.1437764018774033 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6687827706336975 1.394805312156677 -0.1098122596740723 0.6687827706336975 1.394805312156677 -0.1098122596740723 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6416727304458618 1.439122557640076 -0.151732012629509 0.6416727304458618 1.439122557640076 -0.151732012629509 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6466220617294312 1.446502447128296 -0.1549863368272781 0.6466220617294312 1.446502447128296 -0.1549863368272781 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6844237446784973 1.404522180557251 -0.1091566681861877 0.6844237446784973 1.404522180557251 -0.1091566681861877 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6553794741630554 1.433307886123657 -0.1527181565761566 0.6553794741630554 1.433307886123657 -0.1527181565761566 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6635121703147888 1.439278960227966 -0.1555992513895035 0.6635121703147888 1.439278960227966 -0.1555992513895035 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.675299882888794 1.416630387306213 -0.1108274012804031 0.675299882888794 1.416630387306213 -0.1108274012804031 0.6825904846191406 1.417605042457581 -0.1066848784685135 0.6825904846191406 1.417605042457581 -0.1066848784685135 0.682598352432251 1.417258620262146 -0.09757854789495468 0.682598352432251 1.417258620262146 -0.09757854789495468 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6708204746246338 1.415700078010559 -0.1042181849479675 0.6708204746246338 1.415700078010559 -0.1042181849479675 0.6657178997993469 1.425013899803162 -0.1541275084018707 0.6657178997993469 1.425013899803162 -0.1541275084018707 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6762241125106812 1.42901611328125 -0.1567336469888687 0.6762241125106812 1.42901611328125 -0.1567336469888687 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.675299882888794 1.416630387306213 -0.1108274012804031 0.675299882888794 1.416630387306213 -0.1108274012804031 0.682598352432251 1.417258620262146 -0.09757854789495468 0.682598352432251 1.417258620262146 -0.09757854789495468 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.664371132850647 1.425509691238403 -0.1023261845111847 0.664371132850647 1.425509691238403 -0.1023261845111847 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6746793389320374 1.429725646972656 -0.104955717921257 0.6746793389320374 1.429725646972656 -0.104955717921257 0.674686074256897 1.429399251937866 -0.09584938734769821 0.674686074256897 1.429399251937866 -0.09584938734769821 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.683535635471344 1.416723370552063 -0.1585377752780914 0.683535635471344 1.416723370552063 -0.1585377752780914 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.674686074256897 1.429399251937866 -0.09584938734769821 0.674686074256897 1.429399251937866 -0.09584938734769821 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.653633177280426 1.433576941490173 -0.1009682565927506 0.653633177280426 1.433576941490173 -0.1009682565927506 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6612877249717712 1.439727663993835 -0.1038927957415581 0.6612877249717712 1.439727663993835 -0.1038927957415581 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6847144961357117 1.403622508049011 -0.1610865443944931 0.6847144961357117 1.403622508049011 -0.1610865443944931 0.684719443321228 1.403284192085266 -0.1519800424575806 0.684719443321228 1.403284192085266 -0.1519800424575806 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.684719443321228 1.403284192085266 -0.1519800424575806 0.684719443321228 1.403284192085266 -0.1519800424575806 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6396493911743164 1.439105153083801 -0.1000177264213562 0.6396493911743164 1.439105153083801 -0.1000177264213562 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6441908478736877 1.44657564163208 -0.1033200994133949 0.6441908478736877 1.44657564163208 -0.1033200994133949 0.6685919761657715 1.39425265789032 -0.1617981195449829 0.6685919761657715 1.39425265789032 -0.1617981195449829 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6795402765274048 1.391004085540772 -0.1643800884485245 0.6795402765274048 1.391004085540772 -0.1643800884485245 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6246870160102844 1.449633955955505 -0.1030546501278877 0.6246870160102844 1.449633955955505 -0.1030546501278877 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6237871050834656 1.441540479660034 -0.09931465238332748 0.6237871050834656 1.441540479660034 -0.09931465238332748 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6600530743598938 1.385418653488159 -0.1655101180076599 0.6600530743598938 1.385418653488159 -0.1655101180076599 0.663275957107544 1.383595705032349 -0.1722719520330429 0.663275957107544 1.383595705032349 -0.1722719520330429 0.6688450574874878 1.38010573387146 -0.1683710515499115 0.6688450574874878 1.38010573387146 -0.1683710515499115 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6632908582687378 1.383078336715698 -0.157962441444397 0.663275957107544 1.383595705032349 -0.1722719520330429 0.663275957107544 1.383595705032349 -0.1722719520330429 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6047239303588867 1.448564052581787 -0.1028712913393974 0.6047239303588867 1.448564052581787 -0.1028712913393974 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6076093316078186 1.440625190734863 -0.09867467731237412 0.6076093316078186 1.440625190734863 -0.09867467731237412 0.6473151445388794 1.37885594367981 -0.1696802973747253 0.6473151445388794 1.37885594367981 -0.1696802973747253 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6533486247062683 1.371997594833374 -0.1729011684656143 0.6533486247062683 1.371997594833374 -0.1729011684656143 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.5926844477653503 1.436460614204407 -0.09790220111608505 0.5926844477653503 1.436460614204407 -0.09790220111608505 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.6321871280670166 1.375200867652893 -0.1741351038217545 0.6321871280670166 1.375200867652893 -0.1741351038217545 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6346774697303772 1.367498278617859 -0.1777908951044083 0.6346774697303772 1.367498278617859 -0.1777908951044083 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5804890394210815 1.429435133934021 -0.09682229161262512 0.5804890394210815 1.429435133934021 -0.09682229161262512 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.6159605383872986 1.374831795692444 -0.1787005662918091 0.6159605383872986 1.374831795692444 -0.1787005662918091 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6146628856658936 1.367056727409363 -0.1828146427869797 0.6146628856658936 1.367056727409363 -0.1828146427869797 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6146710515022278 1.366716861724854 -0.1737080514431 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5722107291221619 1.420226573944092 -0.09528376907110214 0.5722107291221619 1.420226573944092 -0.09528376907110214 0.567931592464447 1.421685934066773 -0.1029479652643204 0.567931592464447 1.421685934066773 -0.1029479652643204 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5997619032859802 1.37767767906189 -0.1832408457994461 0.5997619032859802 1.37767767906189 -0.1832408457994461 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5947365760803223 1.37060809135437 -0.1878018081188202 0.5947365760803223 1.37060809135437 -0.1878018081188202 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.567931592464447 1.421685934066773 -0.1029479652643204 0.567931592464447 1.421685934066773 -0.1029479652643204 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5857048630714417 1.383684992790222 -0.1875032186508179 0.5857048630714417 1.383684992790222 -0.1875032186508179 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5774619579315186 1.378065705299377 -0.1924419403076172 0.5774619579315186 1.378065705299377 -0.1924419403076172 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.559303879737854 1.396423816680908 -0.08659722656011581 0.559303879737854 1.396423816680908 -0.08659722656011581 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5755146741867065 1.392250299453735 -0.1912776529788971 0.5755146741867065 1.392250299453735 -0.1912776529788971 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.559303879737854 1.396423816680908 -0.08659722656011581 0.559303879737854 1.396423816680908 -0.08659722656011581 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5776671171188355 1.388520479202271 -0.08703336119651794 0.5776671171188355 1.388520479202271 -0.08703336119651794 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5674387216567993 1.384496212005615 -0.09220243245363236 0.5674387216567993 1.384496212005615 -0.09220243245363236 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5885612964630127 1.380340695381165 -0.08317101746797562 0.5885612964630127 1.380340695381165 -0.08317101746797562 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5808379054069519 1.374427676200867 -0.08804868161678314 0.5808379054069519 1.374427676200867 -0.08804868161678314 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6026553511619568 1.374741792678833 -0.07890588045120239 0.6026553511619568 1.374741792678833 -0.07890588045120239 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.5981957316398621 1.367648720741272 -0.08346498012542725 0.5981957316398621 1.367648720741272 -0.08346498012542725 0.5731960535049439 1.423600435256958 -0.1991498172283173 0.5731960535049439 1.423600435256958 -0.1991498172283173 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.6178026795387268 1.364426612854004 -0.07844620943069458 0.6178026795387268 1.364426612854004 -0.07844620943069458 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.618276834487915 1.368943214416504 -0.06729701906442642 0.618276834487915 1.368943214416504 -0.06729701906442642 0.6185595989227295 1.372249364852905 -0.07439717650413513 0.6185595989227295 1.372249364852905 -0.07439717650413513 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.5820948481559753 1.432539939880371 -0.2006160467863083 0.5820948481559753 1.432539939880371 -0.2006160467863083 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.618276834487915 1.368943214416504 -0.06729701906442642 0.618276834487915 1.368943214416504 -0.06729701906442642 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6377438306808472 1.36546528339386 -0.07342720776796341 0.6377438306808472 1.36546528339386 -0.07342720776796341 0.637752890586853 1.365134596824646 -0.06432016938924789 0.637752890586853 1.365134596824646 -0.06432016938924789 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6347270011901856 1.373091697692871 -0.06983600556850433 0.6347270011901856 1.373091697692871 -0.06983600556850433 0.5947583317756653 1.439199566841126 -0.2016407698392868 0.5947583317756653 1.439199566841126 -0.2016407698392868 0.592503547668457 1.44215738773346 -0.2090510278940201 0.592503547668457 1.44215738773346 -0.2090510278940201 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.637752890586853 1.365134596824646 -0.06432016938924789 0.637752890586853 1.365134596824646 -0.06432016938924789 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.592503547668457 1.44215738773346 -0.2090510278940201 0.592503547668457 1.44215738773346 -0.2090510278940201 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.6495687365531921 1.377189040184021 -0.06541077047586441 0.6495687365531921 1.377189040184021 -0.06541077047586441 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6560683846473694 1.370518207550049 -0.06857547909021378 0.6560683846473694 1.370518207550049 -0.06857547909021378 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.652233898639679 1.374327898025513 -0.05795620754361153 0.652233898639679 1.374327898025513 -0.05795620754361153 0.6099497675895691 1.442925214767456 -0.2023820877075195 0.6099497675895691 1.442925214767456 -0.2023820877075195 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6075994372367859 1.450924038887024 -0.2065163999795914 0.6075994372367859 1.450924038887024 -0.2065163999795914 0.60760897397995 1.450597167015076 -0.1974090039730072 0.60760897397995 1.450597167015076 -0.1974090039730072 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.652233898639679 1.374327898025513 -0.05795620754361153 0.652233898639679 1.374327898025513 -0.05795620754361153 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.60760897397995 1.450597167015076 -0.1974090039730072 0.60760897397995 1.450597167015076 -0.1974090039730072 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6616408824920654 1.384117484092712 -0.06130355969071388 0.6616408824920654 1.384117484092712 -0.06130355969071388 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6709807515144348 1.379074215888977 -0.06411219388246536 0.6709807515144348 1.379074215888977 -0.06411219388246536 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6261875033378601 1.44335949420929 -0.2030204385519028 0.6261875033378601 1.44335949420929 -0.2030204385519028 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6276242136955261 1.451410889625549 -0.2066955715417862 0.6276242136955261 1.451410889625549 -0.2066955715417862 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.674055278301239 1.391781568527222 -0.04999235644936562 0.674055278301239 1.391781568527222 -0.04999235644936562 0.6697533130645752 1.393221259117127 -0.05765779316425324 0.6697533130645752 1.393221259117127 -0.05765779316425324 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6418677568435669 1.440455317497253 -0.2037471383810043 0.6418677568435669 1.440455317497253 -0.2037471383810043 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6469581127166748 1.447785615921021 -0.2069866359233856 0.6469581127166748 1.447785615921021 -0.2069866359233856 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.674055278301239 1.391781568527222 -0.04999235644936562 0.674055278301239 1.391781568527222 -0.04999235644936562 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6852126121520996 1.403058409690857 -0.05702411383390427 0.6852126121520996 1.403058409690857 -0.05702411383390427 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6554705500602722 1.434533596038818 -0.2047469019889832 0.6554705500602722 1.434533596038818 -0.2047469019889832 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6637067198753357 1.440432906150818 -0.2076139599084854 0.6637067198753357 1.440432906150818 -0.2076139599084854 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.675865113735199 1.415092825889587 -0.05872093886137009 0.675865113735199 1.415092825889587 -0.05872093886137009 0.683136522769928 1.416121363639832 -0.05458316951990128 0.683136522769928 1.416121363639832 -0.05458316951990128 0.68314129114151 1.415789604187012 -0.04547535255551338 0.68314129114151 1.415789604187012 -0.04547535255551338 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6713975071907044 1.414113759994507 -0.05211071670055389 0.6713975071907044 1.414113759994507 -0.05211071670055389 0.6655508279800415 1.426157832145691 -0.2061705887317658 0.6655508279800415 1.426157832145691 -0.2061705887317658 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6762374043464661 1.430071353912354 -0.2087742984294891 0.6762374043464661 1.430071353912354 -0.2087742984294891 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.669693648815155 1.427335619926453 -0.1985236257314682 0.669693648815155 1.427335619926453 -0.1985236257314682 0.675865113735199 1.415092825889587 -0.05872093886137009 0.675865113735199 1.415092825889587 -0.05872093886137009 0.68314129114151 1.415789604187012 -0.04547535255551338 0.68314129114151 1.415789604187012 -0.04547535255551338 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.669693648815155 1.427335619926453 -0.1985236257314682 0.669693648815155 1.427335619926453 -0.1985236257314682 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6647707223892212 1.423890590667725 -0.05024185031652451 0.6647707223892212 1.423890590667725 -0.05024185031652451 0.668663501739502 1.425727844238281 -0.05691695213317871 0.668663501739502 1.425727844238281 -0.05691695213317871 0.6749993562698364 1.428184986114502 -0.05288051813840866 0.6749993562698364 1.428184986114502 -0.05288051813840866 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.675951361656189 1.416974186897278 -0.2147535979747772 0.675951361656189 1.416974186897278 -0.2147535979747772 0.6833136677742004 1.417727947235107 -0.2106049805879593 0.6833136677742004 1.417727947235107 -0.2106049805879593 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.668663501739502 1.425727844238281 -0.05691695213317871 0.668663501739502 1.425727844238281 -0.05691695213317871 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.675951361656189 1.416974186897278 -0.2147535979747772 0.675951361656189 1.416974186897278 -0.2147535979747772 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6538820266723633 1.431869506835938 -0.04890138283371925 0.6538820266723633 1.431869506835938 -0.04890138283371925 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6616003513336182 1.438071250915527 -0.05182943865656853 0.6616003513336182 1.438071250915527 -0.05182943865656853 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6842526197433472 1.404616117477417 -0.2131838649511337 0.6842526197433472 1.404616117477417 -0.2131838649511337 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.639799177646637 1.437276721000671 -0.04796412959694862 0.639799177646637 1.437276721000671 -0.04796412959694862 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6442509293556213 1.444796919822693 -0.05127810314297676 0.6442509293556213 1.444796919822693 -0.05127810314297676 0.6679614782333374 1.395384907722473 -0.2139163911342621 0.6679614782333374 1.395384907722473 -0.2139163911342621 0.672139048576355 1.39431893825531 -0.2205718755722046 0.672139048576355 1.39431893825531 -0.2205718755722046 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.678961455821991 1.391703963279724 -0.2074052393436432 0.678961455821991 1.391703963279724 -0.2074052393436432 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.672139048576355 1.39431893825531 -0.2205718755722046 0.672139048576355 1.39431893825531 -0.2205718755722046 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.678961455821991 1.391703963279724 -0.2074052393436432 0.678961455821991 1.391703963279724 -0.2074052393436432 0.6246472597122192 1.447684526443481 -0.05102457106113434 0.6246472597122192 1.447684526443481 -0.05102457106113434 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6238974332809448 1.43958580493927 -0.04726743698120117 0.6238974332809448 1.43958580493927 -0.04726743698120117 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6590602397918701 1.386616110801697 -0.2176548689603806 0.6590602397918701 1.386616110801697 -0.2176548689603806 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6679444909095764 1.381230473518372 -0.2205207496881485 0.6679444909095764 1.381230473518372 -0.2205207496881485 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6047060489654541 1.446462512016296 -0.05083831399679184 0.6047060489654541 1.446462512016296 -0.05083831399679184 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6077330112457275 1.438551783561707 -0.04662448167800903 0.6077330112457275 1.438551783561707 -0.04662448167800903 0.6463867425918579 1.380146741867065 -0.2218325585126877 0.6463867425918579 1.380146741867065 -0.2218325585126877 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6524507403373718 1.373252987861633 -0.2250670045614243 0.6524507403373718 1.373252987861633 -0.2250670045614243 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.5928953289985657 1.434271335601807 -0.04584556818008423 0.5928953289985657 1.434271335601807 -0.04584556818008423 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.586394190788269 1.440893888473511 -0.0413796678185463 0.586394190788269 1.440893888473511 -0.0413796678185463 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.6311914920806885 1.376619338989258 -0.2262957394123077 0.6311914920806885 1.376619338989258 -0.2262957394123077 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6335372924804688 1.368906021118164 -0.2299681603908539 0.6335372924804688 1.368906021118164 -0.2299681603908539 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.632088840007782 1.37337338924408 -0.2190500944852829 0.632088840007782 1.37337338924408 -0.2190500944852829 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.586394190788269 1.440893888473511 -0.0413796678185463 0.586394190788269 1.440893888473511 -0.0413796678185463 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.632088840007782 1.37337338924408 -0.2190500944852829 0.632088840007782 1.37337338924408 -0.2190500944852829 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5810641050338745 1.426966309547424 -0.04468091204762459 0.5810641050338745 1.426966309547424 -0.04468091204762459 0.577437698841095 1.429154992103577 -0.05226095765829086 0.577437698841095 1.429154992103577 -0.05226095765829086 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.577437698841095 1.429154992103577 -0.05226095765829086 0.577437698841095 1.429154992103577 -0.05226095765829086 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5738012790679932 1.417280197143555 -0.04298178479075432 0.5738012790679932 1.417280197143555 -0.04298178479075432 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5735331177711487 1.395941138267517 -0.03795602545142174 0.5735331177711487 1.395941138267517 -0.03795602545142174 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5807925462722778 1.386182546615601 -0.03454335033893585 0.5807925462722778 1.386182546615601 -0.03454335033893585 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5708434581756592 1.381881356239319 -0.03967851027846336 0.5708434581756592 1.381881356239319 -0.03967851027846336 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5921866893768311 1.378312945365906 -0.0306165087968111 0.5921866893768311 1.378312945365906 -0.0306165087968111 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.584869921207428 1.372178196907044 -0.03544721379876137 0.584869921207428 1.372178196907044 -0.03544721379876137 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6066128611564636 1.373105645179749 -0.02630784548819065 0.6066128611564636 1.373105645179749 -0.02630784548819065 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6026409864425659 1.365755438804627 -0.03074319288134575 0.6026409864425659 1.365755438804627 -0.03074319288134575 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6224052906036377 1.36322546005249 -0.02576779760420322 0.6224052906036377 1.36322546005249 -0.02576779760420322 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6226503849029541 1.371061563491821 -0.02178248576819897 0.6226503849029541 1.371061563491821 -0.02178248576819897 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6421971321105957 1.364853024482727 -0.02080797962844372 0.6421971321105957 1.364853024482727 -0.02080797962844372 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6387244462966919 1.372359037399292 -0.01722737587988377 0.6387244462966919 1.372359037399292 -0.01722737587988377 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6532744765281677 1.376864433288574 -0.01283644884824753 0.6532744765281677 1.376864433288574 -0.01283644884824753 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6602018475532532 1.370380640029907 -0.01594656147062779 0.6602018475532532 1.370380640029907 -0.01594656147062779 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6648701429367065 1.384141802787781 -0.008783668279647827 0.6648701429367065 1.384141802787781 -0.008783668279647827 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6745318174362183 1.379353284835815 -0.0115525983273983 0.6745318174362183 1.379353284835815 -0.0115525983273983 0.674536406993866 1.379023313522339 -0.002444729208946228 0.674536406993866 1.379023313522339 -0.002444729208946228 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.674536406993866 1.379023313522339 -0.002444729208946228 0.674536406993866 1.379023313522339 -0.002444729208946228 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6723722815513611 1.393458366394043 -0.005210716277360916 0.6723722815513611 1.393458366394043 -0.005210716277360916 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6871697902679443 1.403846859931946 -0.004648752510547638 0.6871697902679443 1.403846859931946 -0.004648752510547638 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6842474937438965 1.416748404502869 -0.002315051853656769 0.6842474937438965 1.416748404502869 -0.002315051853656769 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6724337339401245 1.414421319961548 0.0001581460237503052 0.6724337339401245 1.414421319961548 0.0001581460237503052 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6653975248336792 1.423992514610291 0.001962412148714066 0.6653975248336792 1.423992514610291 0.001962412148714066 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6753374934196472 1.428580522537231 -0.0007079318165779114 0.6753374934196472 1.428580522537231 -0.0007079318165779114 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6539998650550842 1.431669116020203 0.003241512924432755 0.6539998650550842 1.431669116020203 0.003241512924432755 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6613119840621948 1.438085556030273 0.0002653300762176514 0.6613119840621948 1.438085556030273 0.0002653300762176514 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6395849585533142 1.4366854429245 0.004135128110647202 0.6395849585533142 1.4366854429245 0.004135128110647202 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6435492634773254 1.444317102432251 0.000764600932598114 0.6435492634773254 1.444317102432251 0.000764600932598114 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6237851977348328 1.446662187576294 0.0009942986071109772 0.6237851977348328 1.446662187576294 0.0009942986071109772 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6235514283180237 1.438539981842041 0.004813771694898605 0.6235514283180237 1.438539981842041 0.004813771694898605 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6236364245414734 1.441838026046753 -0.002309773117303848</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1518\" source=\"#ID1719\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1716\">\r\n                    <float_array count=\"4554\" id=\"ID1720\">0.7116505720515308 0.7019729757605577 0.02806073057845515 0.5352317954222186 0.6829027544207439 0.4971627029189433 0.7372453629465509 0.3797436521099645 0.5588058996610492 -0.7372453629465509 -0.3797436521099645 -0.5588058996610492 -0.5352317954222186 -0.6829027544207439 -0.4971627029189433 -0.7116505720515308 -0.7019729757605577 -0.02806073057845515 0.729415059257715 0.4062382325778888 0.5503854737545836 -0.729415059257715 -0.4062382325778888 -0.5503854737545836 0.321802298597238 0.8322073122563755 0.4515243847729088 -0.321802298597238 -0.8322073122563755 -0.4515243847729088 0.855124220806447 0.1136881400387027 -0.505803888680887 0.8413370770380463 0.1893915278736966 -0.506243787093475 -0.8413370770380463 -0.1893915278736966 0.506243787093475 -0.855124220806447 -0.1136881400387027 0.505803888680887 -0.3799838754524652 -0.01450618074628774 0.924879357060304 -0.3750053434817528 0.09080767763385791 0.9225643381590672 -0.3792262621876895 -0.05514944765367602 0.9236590174358977 0.3792262621876895 0.05514944765367602 -0.9236590174358977 0.3750053434817528 -0.09080767763385791 -0.9225643381590672 0.3799838754524652 0.01450618074628774 -0.924879357060304 0.8189219909649463 -0.02915452216736438 0.5731638391866684 -0.8189219909649463 0.02915452216736438 -0.5731638391866684 -0.3666375048501143 -0.1470177247358506 0.9186744410566651 -0.3567132285873039 -0.1796770420002411 0.9167725089294866 0.3567132285873039 0.1796770420002411 -0.9167725089294866 0.3666375048501143 0.1470177247358506 -0.9186744410566651 0.4686564846496857 0.8829194322990098 0.02853726449037389 -0.4686564846496857 -0.8829194322990098 -0.02853726449037389 0.7523942369743223 0.4659132093646853 -0.4656477139504997 -0.7523942369743223 -0.4659132093646853 0.4656477139504997 0.8259663651628073 -0.2402977284833706 -0.5099378053306815 -0.8259663651628073 0.2402977284833706 0.5099378053306815 -0.3628069145608261 0.1115693870564698 0.925161291137225 0.3628069145608261 -0.1115693870564698 -0.925161291137225 0.8229528688625568 0.02578184751549621 0.5675243360152719 -0.8229528688625568 -0.02578184751549621 -0.5675243360152719 0.8318723466231729 -0.2056358004014074 -0.5154632057838153 -0.8318723466231729 0.2056358004014074 0.5154632057838153 -0.328304684287926 -0.2624760880002339 0.9073711134385416 0.328304684287926 0.2624760880002339 -0.9073711134385416 0.1228724497272809 0.8950183205142063 0.4287709960362834 -0.1228724497272809 -0.8950183205142063 -0.4287709960362834 -0.2545492831649428 -0.3210323987497553 -0.912218647799524 -0.247187829008473 -0.2985438407088852 -0.9218295679597535 -0.1524397997750927 -0.466420870746587 -0.8713286858450864 0.1524397997750927 0.466420870746587 0.8713286858450864 0.247187829008473 0.2985438407088852 0.9218295679597535 0.2545492831649428 0.3210323987497553 0.912218647799524 -0.3131323569893013 -0.1234289045201013 -0.9416546248679992 -0.2995191208205662 -0.1347819126211434 -0.944522171414235 0.2995191208205662 0.1347819126211434 0.944522171414235 0.3131323569893013 0.1234289045201013 0.9416546248679992 -0.7112085439326217 -0.7025344977933938 -0.02505367133623061 -0.5589780317367358 -0.6499018215929607 -0.5149477471801155 -0.9359937184041439 -0.3517886004573934 -0.01267042604699992 0.9359937184041439 0.3517886004573934 0.01267042604699992 0.5589780317367358 0.6499018215929607 0.5149477471801155 0.7112085439326217 0.7025344977933938 0.02505367133623061 -0.3329794829029215 0.2202503635923341 0.9168502829269061 0.3329794829029215 -0.2202503635923341 -0.9168502829269061 -0.328986642245139 -0.8033618035689207 -0.4963643840876978 -0.4661179128147164 -0.8841410633583626 -0.03207290814372939 0.4661179128147164 0.8841410633583626 0.03207290814372939 0.328986642245139 0.8033618035689207 0.4963643840876978 0.8306502802298186 -0.5566063174715573 0.01447478168665118 -0.8306502802298186 0.5566063174715573 -0.01447478168665118 0.694557029986885 -0.529069519817447 -0.4875202306529788 -0.694557029986885 0.529069519817447 0.4875202306529788 -0.1306463611173388 -0.8662097764505499 -0.4822988197251642 -0.2464249161348628 -0.9684800694603204 -0.03634715623069741 0.2464249161348628 0.9684800694603204 0.03634715623069741 0.1306463611173388 0.8662097764505499 0.4822988197251642 -0.3138758323648135 -0.2842246126968075 0.9059240207625833 0.3138758323648135 0.2842246126968075 -0.9059240207625833 0.2541085597975535 0.9666060045039202 0.03319144309277439 -0.2541085597975535 -0.9666060045039202 -0.03319144309277439 0.5643084556059977 0.713996570925768 -0.4144452480579535 -0.5643084556059977 -0.713996570925768 0.4144452480579535 -0.3139147437445971 0.05130004323244548 -0.9480642590162933 0.3139147437445971 -0.05130004323244548 0.9480642590162933 -0.9597626381272596 -0.2806419182355923 -0.009787348162296133 0.9597626381272596 0.2806419182355923 0.009787348162296133 -0.3220200489155827 0.2145009277290257 0.9221130300021755 0.3220200489155827 -0.2145009277290257 -0.9221130300021755 0.7616505158844272 -0.3651635953362657 0.5352980854571381 -0.7616505158844272 0.3651635953362657 -0.5352980854571381 -0.31676822712825 0.0926484873080989 -0.9439672388814911 0.31676822712825 -0.0926484873080989 0.9439672388814911 0.06286198971483102 -0.8760278648219967 -0.4781459508398103 -0.06286198971483102 0.8760278648219967 0.4781459508398103 -0.25708857985887 -0.3475523037338947 0.9017277073903252 0.25708857985887 0.3475523037338947 -0.9017277073903252 -0.07305742842861696 0.9059545913829299 0.4170238488427085 0.07305742842861696 -0.9059545913829299 -0.4170238488427085 -0.03945429889179408 -0.5382346721190098 -0.8418710091385134 0.03945429889179408 0.5382346721190098 0.8418710091385134 -0.9931124712854924 0.1171189204173347 0.003282964742422807 -0.9848237659908908 0.1734584932748857 0.00585670985499521 0.9848237659908908 -0.1734584932748857 -0.00585670985499521 0.9931124712854924 -0.1171189204173347 -0.003282964742422807 -0.8474458355869826 0.5305447005891429 0.01891762202437913 -0.8283359302926573 0.5598431464464617 0.0208623575638909 0.8283359302926573 -0.5598431464464617 -0.0208623575638909 0.8474458355869826 -0.5305447005891429 -0.01891762202437913 -0.2699934504075681 0.3208622462244649 0.9078276024030152 0.2699934504075681 -0.3208622462244649 -0.9078276024030152 0.07033313167956884 -0.559557338004145 -0.8258019351356954 -0.07033313167956884 0.559557338004145 0.8258019351356954 0.5872910630796832 -0.8093742823861758 -0.001574242229880643 -0.5872910630796832 0.8093742823861758 0.001574242229880643 0.5099087873610187 -0.729679154476476 -0.4555890254324727 -0.5099087873610187 0.729679154476476 0.4555890254324727 -0.2828697093225621 0.2426624781101927 -0.9279545512928904 0.2828697093225621 -0.2426624781101927 0.9279545512928904 0.1787386710512955 -0.5393006872107224 -0.8229260332769035 -0.1787386710512955 0.5393006872107224 0.8229260332769035 -0.03438297213929174 -0.9987484597462316 -0.03632251892970664 0.03438297213929174 0.9987484597462316 0.03632251892970664 -0.251236181078625 -0.3570388125521918 0.8996686432505855 0.251236181078625 0.3570388125521918 -0.8996686432505855 0.04874403586048696 0.9982741021679448 0.03275417391440571 -0.04874403586048696 -0.9982741021679448 -0.03275417391440571 0.3711175758422611 0.8484642387304381 -0.3773329835788833 -0.3711175758422611 -0.8484642387304381 0.3773329835788833 -0.6057070026736339 0.7951511560146045 0.02921756322420963 0.6057070026736339 -0.7951511560146045 -0.02921756322420963 -0.2698502094419589 0.2961333551369372 0.9162346317616856 0.2698502094419589 -0.2961333551369372 -0.9162346317616856 0.581626210109002 -0.6635696771839857 0.4705169871919397 -0.581626210109002 0.6635696771839857 -0.4705169871919397 -0.2686449183098566 0.2880745197099597 -0.9191534033882303 0.2686449183098566 -0.2880745197099597 0.9191534033882303 -0.5932471661465507 0.8044804555539565 0.02947874642493615 0.5932471661465507 -0.8044804555539565 -0.02947874642493615 0.2823761928648434 -0.4807485748464899 -0.8301472721669484 -0.2823761928648434 0.4807485748464899 0.8301472721669484 0.2505434470073428 -0.8378378761168972 -0.4850316221707672 -0.2505434470073428 0.8378378761168972 0.4850316221707672 -0.1747244569420722 -0.3952885920585754 0.9017861681876959 0.1747244569420722 0.3952885920585754 -0.9017861681876959 -0.2697877181305762 0.8647799818370642 0.4235211566849804 0.2697877181305762 -0.8647799818370642 -0.4235211566849804 -0.2021560468597133 0.3530340854778994 0.9135096426468835 -0.1918736220987687 0.3816584571203039 0.9041688643451774 0.1918736220987687 -0.3816584571203039 -0.9041688643451774 0.2021560468597133 -0.3530340854778994 -0.9135096426468835 0.169306486038657 0.9176716277233639 -0.359463624664296 -0.169306486038657 -0.9176716277233639 0.359463624664296 0.3502002158373024 -0.9365409557929096 -0.01583814856635804 -0.3502002158373024 0.9365409557929096 0.01583814856635804 0.311547543346312 -0.847393191175511 -0.4299568673532981 -0.311547543346312 0.847393191175511 0.4299568673532981 -0.2053896947839419 0.4066607887801326 -0.8901921568657408 0.2053896947839419 -0.4066607887801326 0.8901921568657408 -0.3625233878365697 0.931362345990689 0.03377830283209101 0.3625233878365697 -0.931362345990689 -0.03377830283209101 -0.03194270061975638 0.9318493581013336 -0.3614366302455372 -0.1550206914942187 0.9873724139859552 0.03262363113146507 0.1550206914942187 -0.9873724139859552 -0.03262363113146507 0.03194270061975638 -0.9318493581013336 0.3614366302455372 0.1733344233984457 -0.9842509088958912 -0.03471780526964243 -0.1733344233984457 0.9842509088958912 0.03471780526964243 -0.1804037074195329 -0.4056034152759444 0.896069401255158 0.1804037074195329 0.4056034152759444 -0.896069401255158 -0.1087946025738983 0.4031129492699224 0.9086603791195544 0.1087946025738983 -0.4031129492699224 -0.9086603791195544 0.363123457417921 -0.8365194497559559 0.4103371356005304 -0.363123457417921 0.8365194497559559 -0.4103371356005304 -0.1858304765037381 0.434796503264318 -0.8811464320710353 0.1858304765037381 -0.434796503264318 0.8811464320710353 -0.3566845833797729 0.9336121676703839 0.03382940077809265 0.3566845833797729 -0.9336121676703839 -0.03382940077809265 -0.1232190864579312 0.3821508503608651 0.9158481229444871 0.1232190864579312 -0.3821508503608651 -0.9158481229444871 -0.3718655359727516 0.9277850050789988 0.03051241560840916 0.3718655359727516 -0.9277850050789988 -0.03051241560840916 0.3769009454591373 -0.3789257877162465 -0.8451987486476956 -0.3769009454591373 0.3789257877162465 0.8451987486476956 0.442938843698188 -0.7517372087668981 -0.4885656042934923 -0.442938843698188 0.7517372087668981 0.4885656042934923 -0.08865885186649802 -0.4049120996922912 0.9100471413660363 0.08865885186649802 0.4049120996922912 -0.9100471413660363 -0.4722388218988064 0.759623670618326 0.4471715265174743 0.4722388218988064 -0.759623670618326 -0.4471715265174743 0.134922110185194 -0.9904818529278425 -0.02723459571578625 -0.134922110185194 0.9904818529278425 0.02723459571578625 0.1147983128463747 -0.9010408722441773 -0.4182662954543172 -0.1147983128463747 0.9010408722441773 0.4182662954543172 -0.1350494162392188 0.8787776229646012 -0.4577243106392008 0.1350494162392188 -0.8787776229646012 0.4577243106392008 -0.1391797601044876 0.9896212261704099 0.03576063604344212 0.1391797601044876 -0.9896212261704099 -0.03576063604344212 -0.02950715254320219 0.3883564831861083 0.9210366821772682 0.02950715254320219 -0.3883564831861083 -0.9210366821772682 -0.2379134067521402 0.8910569312600233 -0.3865420496415115 0.2379134067521402 -0.8910569312600233 0.3865420496415115 0.4018521372800273 -0.9154653428515124 -0.02093002152978025 -0.4018521372800273 0.9154653428515124 0.02093002152978025 -0.1000677760783224 -0.4248498934504731 0.899716070894513 0.1000677760783224 0.4248498934504731 -0.899716070894513 0.1492709696764515 -0.916415408590717 0.3713502073641012 -0.1492709696764515 0.916415408590717 -0.3713502073641012 -0.08636545570398857 0.5299273874299503 -0.8436337902862293 0.08636545570398857 -0.5299273874299503 0.8436337902862293 -0.03901069718032842 0.3769273918901466 0.9254209348984906 0.03901069718032842 -0.3769273918901466 -0.9254209348984906 -0.6676185415547608 0.5690876826141089 0.480025720632965 0.6676185415547608 -0.5690876826141089 -0.480025720632965 -0.6097251862143607 0.7923030128011297 0.02216152526601627 0.6097251862143607 -0.7923030128011297 -0.02216152526601627 0.4546240055378977 -0.2370235592359574 -0.8585667393719582 -0.4546240055378977 0.2370235592359574 0.8585667393719582 0.6358744733336068 -0.5907466388294836 -0.4966709805035683 -0.6358744733336068 0.5907466388294836 0.4966709805035683 -0.007510637923550951 -0.3776573962138263 0.92591494285543 0.007510637923550951 0.3776573962138263 -0.92591494285543 -0.06860178126321714 -0.9970229180370155 -0.03520080278158875 0.06860178126321714 0.9970229180370155 0.03520080278158875 -0.08047318131380161 -0.9028415724750428 -0.4223756173123964 0.08047318131380161 0.9028415724750428 0.4223756173123964 0.0590008412788316 0.8987807465515142 -0.4344100256171499 -0.0590008412788316 -0.8987807465515142 0.4344100256171499 0.07260530576763689 0.9967081490525157 0.03607402371091806 -0.07260530576763689 -0.9967081490525157 -0.03607402371091806 0.04179726438317089 0.3418517158216679 0.938823941471384 -0.04179726438317089 -0.3418517158216679 -0.938823941471384 -0.01504580730471367 -0.4057369034090668 0.9138660672629067 0.01504580730471367 0.4057369034090668 -0.9138660672629067 -0.4516677406065686 0.7787878965067607 -0.4352995110839578 0.4516677406065686 -0.7787878965067607 0.4352995110839578 0.6412957468603072 -0.7670420594340883 -0.0196530943617914 -0.6412957468603072 0.7670420594340883 0.0196530943617914 -0.05434906373268483 -0.9322524740024467 0.357703094741572 0.05434906373268483 0.9322524740024467 -0.357703094741572 0.02123446767469484 0.5779589524566412 -0.8157895235033325 -0.02123446767469484 -0.5779589524566412 0.8157895235033325 0.0434949249033366 0.3321800355439101 0.9422126169255535 -0.0434949249033366 -0.3321800355439101 -0.9422126169255535 0.06241270493577751 -0.3162716667464053 0.9466133778243631 -0.06241270493577751 0.3162716667464053 -0.9466133778243631 -0.815174793494416 0.281310116120255 0.5063147979466379 0.815174793494416 -0.281310116120255 -0.5063147979466379 -0.8494983244486053 0.5275732145369764 0.004370361785187775 0.8494983244486053 -0.5275732145369764 -0.004370361785187775 0.498695211023203 -0.05462154790820064 -0.8650546647505205 -0.498695211023203 0.05462154790820064 0.8650546647505205 0.8439563683662466 -0.5361045541552577 -0.01815365825525916 -0.8439563683662466 0.5361045541552577 0.01815365825525916 -0.276946828238538 -0.959819750482844 -0.04523826822132948 0.276946828238538 0.959819750482844 0.04523826822132948 -0.2862314669878527 -0.8448820396627895 -0.4519357104292893 0.2862314669878527 0.8448820396627895 0.4519357104292893 0.2515059717810537 0.8703288037188468 -0.4234058568038338 -0.2515059717810537 -0.8703288037188468 0.4234058568038338 0.2850084136732987 0.9578499598644292 0.03596746478612475 -0.2850084136732987 -0.9578499598644292 -0.03596746478612475 0.1022619630699641 0.2645132927119682 0.9589448414208974 -0.1022619630699641 -0.2645132927119682 -0.9589448414208974 0.8727529271744258 -0.4877959513010229 -0.01890603085794959 -0.8727529271744258 0.4877959513010229 0.01890603085794959 0.06500083458049345 -0.3441838698741389 0.936649537032022 -0.06500083458049345 0.3441838698741389 -0.936649537032022 -0.6576857543347527 0.5643110069948806 -0.4990015390051933 0.6576857543347527 -0.5643110069948806 0.4990015390051933 0.4964686844999146 -0.01406475665816916 -0.8679406822652517 -0.4964686844999146 0.01406475665816916 0.8679406822652517 -0.2544202722548222 -0.8958058011797969 0.3644204874021279 0.2544202722548222 0.8958058011797969 -0.3644204874021279 0.1346324613359429 0.5838208018935096 -0.8006418497874347 -0.1346324613359429 -0.5838208018935096 0.8006418497874347 0.1124337766039404 0.244863621927643 0.9630163303574095 -0.1124337766039404 -0.244863621927643 -0.9630163303574095 0.8819699798401712 0.007572893322439157 -0.4712447410289633 -0.8819699798401712 -0.007572893322439157 0.4712447410289633 0.1171534773762263 -0.2299446824738198 0.9661265474774371 -0.1171534773762263 0.2299446824738198 -0.9661265474774371 -0.8597906522069024 -0.06611795836848429 0.506348150938475 0.8597906522069024 0.06611795836848429 -0.506348150938475 -0.8025477729693723 0.198588850119454 -0.5625651435257376 0.8025477729693723 -0.198588850119454 0.5625651435257376 0.4943729432975408 0.1453021156847469 -0.8570196544495715 -0.4943729432975408 -0.1453021156847469 0.8570196544495715 -0.5010991958103166 -0.8640141958952348 -0.04877566247387134 0.5010991958103166 0.8640141958952348 0.04877566247387134 -0.4953813229015003 -0.7179144481291333 -0.4890768754375954 0.4953813229015003 0.7179144481291333 0.4890768754375954 0.4523458532938655 0.7826955050850751 -0.4275172222583134 -0.4523458532938655 -0.7826955050850751 0.4275172222583134 0.5160018988886697 0.8561791547715092 0.02644419176362373 -0.5160018988886697 -0.8561791547715092 -0.02644419176362373 0.1456705024403001 0.1553393497644045 0.9770618154106537 -0.1456705024403001 -0.1553393497644045 -0.9770618154106537 0.9975805439147285 -0.06942566409681915 -0.00362430234802979 -0.9975805439147285 0.06942566409681915 0.00362430234802979 0.1299134657451305 -0.2399575846401426 0.9620513754429946 -0.1299134657451305 0.2399575846401426 -0.9620513754429946 -0.857450808044697 -0.02494771222355772 0.5139608189719394 0.857450808044697 0.02494771222355772 -0.5139608189719394 -0.7992103629099479 0.2325402380412265 -0.5542452828027311 0.7992103629099479 -0.2325402380412265 0.5542452828027311 -0.454522715867437 -0.800084406340553 0.3915022905311971 0.454522715867437 0.800084406340553 -0.3915022905311971 0.2485703518833973 0.543191774852405 -0.8019697474950399 -0.2485703518833973 -0.543191774852405 0.8019697474950399 0.1547367922380168 0.1222975676550789 0.9803569911381977 -0.1547367922380168 -0.1222975676550789 -0.9803569911381977 0.4386228162840494 0.3279105374597031 -0.8367106455985472 -0.4386228162840494 -0.3279105374597031 0.8367106455985472 0.8139598585992446 0.3699242069509965 -0.447912301350135 -0.8139598585992446 -0.3699242069509965 0.447912301350135 0.1540933681755707 -0.1214356495907311 0.9805654577297659 -0.1540933681755707 0.1214356495907311 -0.9805654577297659 -0.7859810059008962 -0.3952304851253901 0.4754226771942673 0.7859810059008962 0.3952304851253901 -0.4754226771942673 -0.9306655580433257 -0.363171696397784 -0.04436144731026219 0.9306655580433257 0.363171696397784 0.04436144731026219 -0.7418627729000863 -0.6686517066395952 -0.0504432492307107 0.7418627729000863 0.6686517066395952 0.0504432492307107 -0.6931561066715604 -0.4793907719949321 -0.5382556079689531 0.6931561066715604 0.4793907719949321 0.5382556079689531 0.6572411328462384 0.6157850077569763 -0.4345606028124661 -0.6572411328462384 -0.6157850077569763 0.4345606028124661 0.7519849967575999 0.6588078537453647 0.02215347591008901 -0.7519849967575999 -0.6588078537453647 -0.02215347591008901 0.1709523652886035 0.02372562364279051 0.9849935957076027 -0.1709523652886035 -0.02372562364279051 -0.9849935957076027 -0.8070117603267765 -0.1635411683109926 -0.5674383710692758 0.8070117603267765 0.1635411683109926 0.5674383710692758 0.9307878365865234 0.3653327892568364 0.01288240491520963 -0.9307878365865234 -0.3653327892568364 -0.01288240491520963 0.1665431576706366 -0.1041956339718937 0.9805134606390106 -0.1665431576706366 0.1041956339718937 -0.9805134606390106 -0.6462109456116381 -0.627112372541189 0.4349039962767338 0.6462109456116381 0.627112372541189 -0.4349039962767338 0.3568995735915838 0.4535783326864708 -0.8166329594668016 -0.3568995735915838 -0.4535783326864708 0.8166329594668016 0.1683205277786634 -0.008532265206758354 0.9856953892449502 -0.1683205277786634 0.008532265206758354 -0.9856953892449502 -0.7170416727855283 -0.6951668545447707 -0.05093411264821503 0.7170416727855283 0.6951668545447707 0.05093411264821503 0.3464913921873409 0.4660477621064498 -0.8140904117944446 -0.3464913921873409 -0.4660477621064498 0.8140904117944446 0.6355101720935054 0.6397392059991743 -0.4322737205443206 -0.6355101720935054 -0.6397392059991743 0.4322737205443206 0.1685926874597324 0.005759232575638584 0.9856689794120767 -0.1685926874597324 -0.005759232575638584 -0.9856689794120767 -0.6279387722639632 -0.6490552974037456 0.4294416365465298 0.6279387722639632 0.6490552974037456 -0.4294416365465298 -0.797320525724816 -0.3587274569573655 0.4853808719787014 0.797320525724816 0.3587274569573655 -0.4853808719787014 -0.8133861344483948 -0.1226042703071534 -0.5686573565773577 0.8133861344483948 0.1226042703071534 0.5686573565773577 0.8277356009579059 0.3350499721835259 -0.4501058664877332 -0.8277356009579059 -0.3350499721835259 0.4501058664877332 0.9459915190235739 0.323992501916216 0.0113536178173332 -0.9459915190235739 -0.323992501916216 -0.0113536178173332 0.1643003987027399 -0.1191713616969986 0.97918515385876 -0.1643003987027399 0.1191713616969986 -0.97918515385876 -0.6747003574537656 -0.5099656113749023 -0.5335864530390395 0.6747003574537656 0.5099656113749023 0.5335864530390395 0.7259870510036196 0.6873468735703761 0.02229522747355532 -0.7259870510036196 -0.6873468735703761 -0.02229522747355532 0.1700498432580083 0.03943727820313243 0.984646003341229 -0.1700498432580083 -0.03943727820313243 -0.984646003341229 -0.7985694608281411 -0.36356139000931 0.4796977505963002 0.7985694608281411 0.36356139000931 -0.4796977505963002 -0.8005808643764349 -0.1773014997979544 -0.5723936213513181 0.8005808643764349 0.1773014997979544 0.5723936213513181 0.4462266470758223 0.310737547532054 -0.8392401062826026 -0.4462266470758223 -0.310737547532054 0.8392401062826026 0.1512034824032725 -0.1336368500728458 0.979427740679082 -0.1512034824032725 0.1336368500728458 -0.979427740679082 -0.4337063421292695 -0.8129751538608235 0.3885488489261287 0.4337063421292695 0.8129751538608235 -0.3885488489261287 -0.4768871581027608 -0.8776648367457268 -0.04778151082551644 0.4768871581027608 0.8776648367457268 0.04778151082551644 0.2380292631613483 0.5528668412542277 -0.7985488874955861 -0.2380292631613483 -0.5528668412542277 0.7985488874955861 0.4293378445864561 0.7959894105933828 -0.4266964652174365 -0.4293378445864561 -0.7959894105933828 0.4266964652174365 0.1533328329530971 0.1385764181221323 0.9784097396689272 -0.1533328329530971 -0.1385764181221323 -0.9784097396689272 -0.8569140460260113 0.01557632081547185 0.5152239279703386 0.8569140460260113 -0.01557632081547185 -0.5152239279703386 -0.7896054920572532 0.2717657566155899 -0.5501513795712766 0.7896054920572532 -0.2717657566155899 0.5501513795712766 0.8795910895700612 -0.03296154049339731 -0.4745872438206223 -0.8795910895700612 0.03296154049339731 0.4745872438206223 0.9931770743846931 -0.1165152085372383 -0.004848205460349638 -0.9931770743846931 0.1165152085372383 0.004848205460349638 0.1241435371507359 -0.2522091035213024 0.9596764820941924 -0.1241435371507359 0.2522091035213024 -0.9596764820941924 0.1440144604828666 0.16957260713744 0.9749384422005526 -0.1440144604828666 -0.16957260713744 -0.9749384422005526 -0.4731542405155758 -0.7367698918075729 -0.4830064090754759 0.4731542405155758 0.7367698918075729 0.4830064090754759 0.4914178532387069 0.8706231096064739 0.02288874259137876 -0.4914178532387069 -0.8706231096064739 -0.02288874259137876 -0.8609183543153827 -0.02973020345434168 0.5078737069444103 0.8609183543153827 0.02973020345434168 -0.5078737069444103 -0.7938562947689128 0.2406997805955247 -0.5584405061213231 0.7938562947689128 -0.2406997805955247 0.5584405061213231 0.4981430677576512 0.1224428744880163 -0.8584062130087993 -0.4981430677576512 -0.1224428744880163 0.8584062130087993 0.1121471507760574 -0.2398416149881592 0.9643127170646894 -0.1121471507760574 0.2398416149881592 -0.9643127170646894 0.1062963897775544 0.2553827694775809 0.960979041693532 -0.1062963897775544 -0.2553827694775809 -0.960979041693532 -0.2334309899728497 -0.9020887559179942 0.3629681106745063 0.2334309899728497 0.9020887559179942 -0.3629681106745063 -0.2546368489860527 -0.9661353058705178 -0.04174501034776832 0.2546368489860527 0.9661353058705178 0.04174501034776832 0.1225912726360824 0.5856443460283727 -0.8012440825606546 -0.1225912726360824 -0.5856443460283727 0.8012440825606546 0.2322457144925312 0.8745419870190941 -0.4257208487266607 -0.2322457144925312 -0.8745419870190941 0.4257208487266607 -0.8298684604430325 0.5578900253539257 0.008778267056029602 0.8298684604430325 -0.5578900253539257 -0.008778267056029602 -0.6381582281851053 0.592109930329274 -0.4920974560034928 0.6381582281851053 -0.592109930329274 0.4920974560034928 0.7845366827042137 -0.3705960259960854 -0.4971526717290942 -0.7845366827042137 0.3705960259960854 0.4971526717290942 0.8531095620720463 -0.5209766158183181 -0.02806137686810723 -0.8531095620720463 0.5209766158183181 0.02806137686810723 0.05745209060252372 -0.3531345851308873 0.933806844090273 -0.05745209060252372 0.3531345851308873 -0.933806844090273 0.2642023099047379 0.96389792800383 0.03313493369427906 -0.2642023099047379 -0.96389792800383 -0.03313493369427906 0.09617134804706679 0.273507182340263 0.9570500995366439 -0.09617134804706679 -0.273507182340263 -0.9570500995366439 -0.2627828300824376 -0.8573916870731996 -0.4425208234101954 0.2627828300824376 0.8573916870731996 0.4425208234101954 -0.8054325663980541 0.3138328927145027 0.5027795704241488 0.8054325663980541 -0.3138328927145027 -0.5027795704241488 0.5011990702762256 -0.07684442230173266 -0.8619132361875874 -0.5011990702762256 0.07684442230173266 0.8619132361875874 0.05596797787530988 -0.3240722944377901 0.9443753138611656 -0.05596797787530988 0.3240722944377901 -0.9443753138611656 0.03900188409162862 0.8991548421820407 -0.435889232280281 -0.03900188409162862 -0.8991548421820407 0.435889232280281 0.03524069011300303 0.3386802113123089 0.9402413563685705 -0.03524069011300303 -0.3386802113123089 -0.9402413563685705 -0.03378444717273314 -0.9335367144642884 0.356886275830907 0.03378444717273314 0.9335367144642884 -0.356886275830907 -0.0479048455183228 -0.9982543663355565 -0.03454483851260853 0.0479048455183228 0.9982543663355565 0.03454483851260853 0.009899560068351961 0.5749211771574377 -0.8181489098974338 -0.009899560068351961 -0.5749211771574377 0.8181489098974338 -0.5854927501762082 0.8104056044264791 0.02099990012483857 0.5854927501762082 -0.8104056044264791 -0.02099990012483857 -0.4341226606551393 0.7959770683591242 -0.4218507107403244 0.4341226606551393 -0.7959770683591242 0.4218507107403244 0.6153483072657556 -0.6092314275743322 -0.5001834947305943 -0.6153483072657556 0.6092314275743322 0.5001834947305943 0.6198696161494136 -0.7840905370094322 -0.03104333659642618 -0.6198696161494136 0.7840905370094322 0.03104333659642618 -0.02407700961637427 -0.4097001398519071 0.9119024580585694 0.02407700961637427 0.4097001398519071 -0.9119024580585694 0.05033926183616807 0.9980435793235593 0.03708062147278299 -0.05033926183616807 -0.9980435793235593 -0.03708062147278299 0.03481731939135043 0.3480096793275698 0.936844179874499 -0.03481731939135043 -0.3480096793275698 -0.936844179874499 -0.06080258187760262 -0.9051338646646926 -0.4207561444283083 0.06080258187760262 0.9051338646646926 0.4207561444283083 -0.6482226276671629 0.6028910632744456 0.4651126646352332 0.6482226276671629 -0.6028910632744456 -0.4651126646352332 0.4479077752369409 -0.2541629122600133 -0.8571929998044797 -0.4479077752369409 0.2541629122600133 0.8571929998044797 -0.01557210102520522 -0.3810223222922303 0.9244346918980793 0.01557210102520522 0.3810223222922303 -0.9244346918980793 -0.09713865155677696 0.5222654339317011 -0.8472324940025986 0.09713865155677696 -0.5222654339317011 0.8472324940025986 -0.1553642244159123 0.8736924138162414 -0.4610027373146406 0.1553642244159123 -0.8736924138162414 0.4610027373146406 -0.04773883644661871 0.379195553171683 0.9240842688573074 0.04773883644661871 -0.379195553171683 -0.9240842688573074 0.1709478385442632 -0.911260122999803 0.3746756260119262 -0.1709478385442632 0.911260122999803 -0.3746756260119262 0.1565031294805676 -0.9873397968093323 -0.02582433153627022 -0.1565031294805676 0.9873397968093323 0.02582433153627022 -0.3468199483393967 0.9374158955969509 0.03110244549910115 0.3468199483393967 -0.9374158955969509 -0.03110244549910115 -0.2151544640411276 0.8989222404764934 -0.381637736839397 0.2151544640411276 -0.8989222404764934 0.381637736839397 0.422916307869554 -0.7599392226206774 -0.4935931264317454 -0.422916307869554 0.7599392226206774 0.4935931264317454 0.377073827552353 -0.9255320285439551 -0.03472452612103082 -0.377073827552353 0.9255320285439551 0.03472452612103082 -0.108627411872101 -0.4243902982928708 0.898939909062256 0.108627411872101 0.4243902982928708 -0.898939909062256 0.1350124515051911 -0.8980485648208227 -0.4186650369469836 -0.1350124515051911 0.8980485648208227 0.4186650369469836 -0.1612442781859131 0.9862794914739842 0.03539841027678021 0.1612442781859131 -0.9862794914739842 -0.03539841027678021 -0.03729995421693928 0.3914302756617625 0.9194514955726434 0.03729995421693928 -0.3914302756617625 -0.9194514955726434 -0.4512633063408924 0.7735750642969342 0.4449079098513309 0.4512633063408924 -0.7735750642969342 -0.4449079098513309 0.3680151996151649 -0.3928969007208333 -0.8427317712393275 -0.3680151996151649 0.3928969007208333 0.8427317712393275 -0.09727939456517401 -0.4055410823750608 0.9088856638208666 0.09727939456517401 0.4055410823750608 -0.9088856638208666 0.3736595622003403 -0.9274540404004935 -0.0144060584841893 -0.3736595622003403 0.9274540404004935 0.0144060584841893 -0.1954592889357965 0.4220230118545197 -0.8852639402087679 0.1954592889357965 -0.4220230118545197 0.8852639402087679 -0.3804028581403459 0.9242070827686287 0.03368877675067691 0.3804028581403459 -0.9242070827686287 -0.03368877675067691 -0.1318447757518489 0.3806083511958868 0.9152891554623015 0.1318447757518489 -0.3806083511958868 -0.9152891554623015 0.3857726000592082 -0.823667545072599 0.4156335841070069 -0.3857726000592082 0.823667545072599 -0.4156335841070069 -0.1338488499243973 0.9904478287972295 0.03312980236539311 0.1338488499243973 -0.9904478287972295 -0.03312980236539311 -0.01117203391103292 0.9329421369179466 -0.3598529627796139 0.01117203391103292 -0.9329421369179466 0.3598529627796139 0.2325215409716085 -0.8441077524679405 -0.4831312815454108 -0.2325215409716085 0.8441077524679405 0.4831312815454108 0.1544919375863715 -0.9873231370638004 -0.03640417887145344 -0.1544919375863715 0.9873231370638004 0.03640417887145344 -0.1883848952572948 -0.4022478600787148 0.8959396130884005 0.1883848952572948 0.4022478600787148 -0.8959396130884005 0.3323032046149535 -0.8385594970703174 -0.4317320350354011 -0.3323032046149535 0.8385594970703174 0.4317320350354011 -0.2152599790098669 0.391667221357033 -0.8945724840118505 0.2152599790098669 -0.391667221357033 0.8945724840118505 -0.3868227017761055 0.9215332032618456 0.03383419389605583 0.3868227017761055 -0.9215332032618456 -0.03383419389605583 -0.1173923091996779 0.4027715861119354 0.907741204948659 0.1173923091996779 -0.4027715861119354 -0.907741204948659 -0.2489555830704448 0.8717567970615852 0.4219729901723344 0.2489555830704448 -0.8717567970615852 -0.4219729901723344 0.2718613803360442 -0.4882181075164831 -0.8292975758886579 -0.2718613803360442 0.4882181075164831 0.8292975758886579 -0.1836681448407901 -0.3924420882711748 0.9012520290818225 0.1836681448407901 0.3924420882711748 -0.9012520290818225 0.6033379414759521 -0.6384723124391702 0.4778456179815184 -0.6033379414759521 0.6384723124391702 -0.4778456179815184 0.613143127400927 -0.7899716064930814 0.0006051906731352142 -0.613143127400927 0.7899716064930814 -0.0006051906731352142 -0.2753486370013015 0.2694802403432065 -0.922801998353977 0.2753486370013015 -0.2694802403432065 0.922801998353977 -0.6186683494355953 0.7850893088761158 0.02973634972653872 0.6186683494355953 -0.7850893088761158 -0.02973634972653872 -0.2101333340222701 0.3486910560910353 0.9133775393202985 0.2101333340222701 -0.3486910560910353 -0.9133775393202985 0.06458828602664837 0.9973981295291592 0.03202068893503747 -0.06458828602664837 -0.9973981295291592 -0.03202068893503747 0.1834284435450448 0.9148861036748122 -0.3596351253720405 -0.1834284435450448 -0.9148861036748122 0.3596351253720405 0.04707106846818684 -0.8766538121109553 -0.478813542231831 -0.04707106846818684 0.8766538121109553 0.478813542231831 -0.05240544458981807 -0.9979363572904079 -0.03710385660945478 0.05240544458981807 0.9979363572904079 0.03710385660945478 -0.2558849461871275 -0.350471967254376 0.9009396730545607 0.2558849461871275 0.350471967254376 -0.9009396730545607 -0.200694747324343 0.3777292023536014 0.9039039042319322 0.200694747324343 -0.3777292023536014 -0.9039039042319322 0.5305321316869283 -0.7131920018537039 -0.4581406178670804 -0.5305321316869283 0.7131920018537039 0.4581406178670804 -0.2880983715263597 0.2233201421009748 -0.9311967796636004 0.2880983715263597 -0.2233201421009748 0.9311967796636004 -0.6320377423804821 0.7743842637606397 0.02927975830630272 0.6320377423804821 -0.7743842637606397 -0.02927975830630272 -0.05522536770654783 0.9079808958399157 0.4153562947054256 0.05522536770654783 -0.9079808958399157 -0.4153562947054256 0.1693197659775681 -0.5435044501609175 -0.8221518895584806 -0.1693197659775681 0.5435044501609175 0.8221518895584806 -0.2624276747014604 -0.3400571667813387 0.9030464212162258 0.2624276747014604 0.3400571667813387 -0.9030464212162258 -0.2784955639681501 0.2831199724302808 0.9177599370538786 0.2784955639681501 -0.2831199724302808 -0.9177599370538786 0.7799925510025074 -0.312763053598415 0.5420248081816884 -0.7799925510025074 0.312763053598415 -0.5420248081816884 0.861350202599474 -0.5077689173607858 0.01570207133153192 -0.861350202599474 0.5077689173607858 -0.01570207133153192 -0.3203962497789111 0.06509019373873208 -0.9450447131256086 0.3203962497789111 -0.06509019373873208 0.9450447131256086 -0.8570089126585533 0.5149465289946921 0.01912579149010435 0.8570089126585533 -0.5149465289946921 -0.01912579149010435 0.2668998251241754 0.9632065101179255 0.03158642453857888 -0.2668998251241754 -0.9632065101179255 -0.03158642453857888 0.3848457984574989 0.8411597227003285 -0.3799263511739041 -0.3848457984574989 -0.8411597227003285 0.3799263511739041 -0.1463418171331631 -0.8636911306943719 -0.4823087220007961 0.1463418171331631 0.8636911306943719 0.4823087220007961 -0.2614964724511442 -0.9645806651456631 -0.0346948890005161 0.2614964724511442 0.9645806651456631 0.0346948890005161 -0.3127971824230538 -0.2727002758388455 0.9098310185004777 0.3127971824230538 0.2727002758388455 -0.9098310185004777 -0.8772394837810913 0.479727285593503 0.01768105066375627 0.8772394837810913 -0.479727285593503 -0.01768105066375627 -0.2801769327316828 0.3069223400943102 0.9095600934056521 0.2801769327316828 -0.3069223400943102 -0.9095600934056521 0.7175260310791318 -0.4930813406195232 -0.4919625862366797 -0.7175260310791318 0.4930813406195232 0.4919625862366797 -0.3153777635399161 0.02588495228063627 -0.9486131116055638 0.3153777635399161 -0.02588495228063627 0.9486131116055638 0.1393203985443418 0.8940098255258359 0.4258359524660994 -0.1393203985443418 -0.8940098255258359 -0.4258359524660994 0.0613360785267453 -0.5592548813864927 -0.8267235711629013 -0.0613360785267453 0.5592548813864927 0.8267235711629013 -0.3279772485291286 -0.2497890304277758 0.9110633154315971 0.3279772485291286 0.2497890304277758 -0.9110633154315971 -0.9954162509199361 0.09554550661859637 0.004188504446045178 0.9954162509199361 -0.09554550661859637 -0.004188504446045178 -0.3316055780471462 0.1947610534499365 0.9230958090399333 0.3316055780471462 -0.1947610534499365 -0.9230958090399333 0.8175626758962213 0.09714834888191229 0.5675856492996704 -0.8175626758962213 -0.09714834888191229 -0.5675856492996704 0.8458917130539921 -0.1331934717853834 -0.5164559118263038 -0.8458917130539921 0.1331934717853834 0.5164559118263038 -0.3083647246734359 -0.1573739027797761 -0.9381602481990684 0.3083647246734359 0.1573739027797761 0.9381602481990684 0.499020226367712 0.8660112669631548 0.03167489808647932 -0.499020226367712 -0.8660112669631548 -0.03167489808647932 0.5956904132068955 0.6858714953802544 -0.4180110326752776 -0.5956904132068955 -0.6858714953802544 0.4180110326752776 -0.3620808541156949 -0.7880834786357531 -0.4978171208227165 0.3620808541156949 0.7880834786357531 0.4978171208227165 -0.4980593539555487 -0.8665836747455885 -0.03113863519510004 0.4980593539555487 0.8665836747455885 0.03113863519510004 -0.359961397037305 -0.1644696286552123 0.9183558862951599 0.359961397037305 0.1644696286552123 -0.9183558862951599 -0.2943109012349603 -0.1612855244810798 -0.9420021618908996 0.2943109012349603 0.1612855244810798 0.9420021618908996 -0.9995126198422273 0.03115932617757232 0.00190241117719404 0.9995126198422273 -0.03115932617757232 -0.00190241117719404 -0.3430702516935164 0.1961112469923958 0.9186093735674783 0.3430702516935164 -0.1961112469923958 -0.9186093735674783 0.8174448668148598 0.04635657624701822 0.5741384480738861 -0.8174448668148598 -0.04635657624701822 -0.5741384480738861 0.8407726363999902 -0.1769178412982841 -0.5116653704437744 -0.8407726363999902 0.1769178412982841 0.5116653704437744 0.3512955557181288 0.817032719621692 0.4572187305877491 -0.3512955557181288 -0.817032719621692 -0.4572187305877491 -0.05305143425118907 -0.5294281753016813 -0.8466943678332954 0.05305143425118907 0.5294281753016813 0.8466943678332954 -0.3719113724926969 -0.1265488578829416 0.9196017168204513 0.3719113724926969 0.1265488578829416 -0.9196017168204513 -0.2430270571949046 -0.340963009566561 -0.9081200777311875 0.2430270571949046 0.340963009566561 0.9081200777311875 -0.9393207539411168 -0.3428355318660301 -0.01184564500684825 0.9393207539411168 0.3428355318660301 0.01184564500684825 -0.3671383093963134 0.09388633053469656 0.925416024668012 0.3671383093963134 -0.09388633053469656 -0.925416024668012 0.7105979357165625 0.4478711802407899 0.5426435106633837 -0.7105979357165625 -0.4478711802407899 -0.5426435106633837 0.8322464311687771 0.2410873094306051 -0.4992422127969003 -0.8322464311687771 -0.2410873094306051 0.4992422127969003 0.7492443417965902 0.6617502514901101 0.02682388746193632 -0.7492443417965902 -0.6617502514901101 -0.02682388746193632 0.7718029793325206 0.4269070610378765 -0.4712435912874016 -0.7718029793325206 -0.4269070610378765 0.4712435912874016 -0.1704424063753528 -0.418799142778685 -0.8919398321169527 0.1704424063753528 0.418799142778685 0.8919398321169527 -0.7457711985039001 -0.6657934573101565 -0.02333220274738622 0.7457711985039001 0.6657934573101565 0.02333220274738622 -0.3832975258668947 -0.03328638985510561 0.9230249308197105 0.3832975258668947 0.03328638985510561 -0.9230249308197105 0.8487165835841974 0.1691112280510487 -0.5010803860621905 -0.8487165835841974 -0.1691112280510487 0.5010803860621905 -0.2375867641878089 -0.3172653688496944 -0.9180932497363402 0.2375867641878089 0.3172653688496944 0.9180932497363402 -0.9142914964868846 -0.4047864844800893 -0.01479734550599009 0.9142914964868846 0.4047864844800893 0.01479734550599009 -0.3773142060023418 0.07298275794710361 0.9232050189374281 0.3773142060023418 -0.07298275794710361 -0.9232050189374281 0.7162917454464216 0.4292023758780845 0.550192199095849 -0.7162917454464216 -0.4292023758780845 -0.550192199095849 0.5634644328169429 0.6543425034908874 0.5043250153180574 -0.5634644328169429 -0.6543425034908874 -0.5043250153180574 -0.1654534990126832 -0.4499796035445223 -0.8775781993978512 0.1654534990126832 0.4499796035445223 0.8775781993978512 -0.7849750302322432 -0.61914690019648 -0.02170985695435957 0.7849750302322432 0.61914690019648 0.02170985695435957 -0.3812176036166756 0.001932026157005854 0.9244833183825914 0.3812176036166756 -0.001932026157005854 -0.9244833183825914 0.7062555440699734 0.7074483609393937 0.02683138227134638 -0.7062555440699734 -0.7074483609393937 -0.02683138227134638 -0.1468876452683363 -0.4681639048480643 -0.8713475643306384 0.1468876452683363 0.4681639048480643 0.8713475643306384 -0.5453398563016959 -0.6597063117067336 -0.5170996262067338 0.5453398563016959 0.6597063117067336 0.5170996262067338 -0.3801222938534106 -0.01953408970055335 0.9247299395256933 0.3801222938534106 0.01953408970055335 -0.9247299395256933 0.5267605382682085 0.6908734985756165 0.495194047106056 -0.5267605382682085 -0.6908734985756165 -0.495194047106056 0.7478726818795818 0.3581138604152929 0.5589641443569507 -0.7478726818795818 -0.3581138604152929 -0.5589641443569507 0.8574547276395824 0.09217761627415656 -0.5062357920046189 -0.8574547276395824 -0.09217761627415656 0.5062357920046189 -0.2503400554594847 -0.2899497763892844 -0.9237201869637505 0.2503400554594847 0.2899497763892844 0.9237201869637505 -0.945860714581945 -0.3243755591802412 -0.01131393905933793 0.945860714581945 0.3243755591802412 0.01131393905933793 -0.3740548322485346 0.101284626066865 0.9218592121327508 0.3740548322485346 -0.101284626066865 -0.9218592121327508 0.7456205843010635 0.4793489914736001 -0.4628979246440657 -0.7456205843010635 -0.4793489914736001 0.4628979246440657 -0.7019827698805626 -0.7116138038748113 -0.0287399534730753 0.7019827698805626 0.7116138038748113 0.0287399534730753 -0.3797743653667189 -0.05577346448259948 0.9233963136540638 0.3797743653667189 0.05577346448259948 -0.9233963136540638 0.7413117673025702 0.3838791288921039 0.550539442782967 -0.7413117673025702 -0.3838791288921039 -0.550539442782967 0.8464391172416744 0.1647749001367979 -0.5063497339665967 -0.8464391172416744 -0.1647749001367979 0.5063497339665967 -0.2583659647566177 -0.3088681222610339 -0.9153401069036172 0.2583659647566177 0.3088681222610339 0.9153401069036172 -0.9667076871678222 -0.2557261364940597 -0.008966085236136824 0.9667076871678222 0.2557261364940597 0.008966085236136824 -0.3621152032149901 0.1188767380450872 0.9245219850021557 0.3621152032149901 -0.1188767380450872 -0.9245219850021557 0.3198230567882171 0.8329970911554596 0.4514743165155507 -0.3198230567882171 -0.8329970911554596 -0.4514743165155507 0.4674475931014964 0.8835527886872145 0.02876138568748932 -0.4674475931014964 -0.8835527886872145 -0.02876138568748932 -0.03702795736669842 -0.5387038537364716 -0.8416811084625366 0.03702795736669842 0.5387038537364716 0.8416811084625366 -0.3259099937071137 -0.8059159978137687 -0.4942490065439353 0.3259099937071137 0.8059159978137687 0.4942490065439353 -0.3683565981934949 -0.1472084240102136 0.9179559338376464 0.3683565981934949 0.1472084240102136 -0.9179559338376464 0.8188476326458342 -0.04539294783510035 0.5722132773688083 -0.8188476326458342 0.04539294783510035 -0.5722132773688083 0.8222586412210436 -0.2531169247564348 -0.5097279169705816 -0.8222586412210436 0.2531169247564348 0.5097279169705816 -0.300720892527676 -0.1278968835880935 -0.9450975251082884 0.300720892527676 0.1278968835880935 0.9450975251082884 -0.9912217850814648 0.1320979721046645 0.005431256369362665 0.9912217850814648 -0.1320979721046645 -0.005431256369362665 -0.3334782498602851 0.2262070152921916 0.9152172655182589 0.3334782498602851 -0.2262070152921916 -0.9152172655182589 -0.3572490711108234 -0.1813357523302581 0.9162371123880944 0.3572490711108234 0.1813357523302581 -0.9162371123880944 0.5653065393782845 0.7136392668265392 -0.4136997865353904 -0.5653065393782845 -0.7136392668265392 0.4136997865353904 -0.4589846257788459 -0.8877888882835777 -0.0341174902192718 0.4589846257788459 0.8877888882835777 0.0341174902192718 0.8236653039657989 0.01006987565173836 0.5669868293419932 -0.8236653039657989 -0.01006987565173836 -0.5669868293419932 0.8284558720579608 -0.2197536701379031 -0.5151399737096757 -0.8284558720579608 0.2197536701379031 0.5151399737096757 -0.3142935649961468 -0.1151516845652284 -0.942316106486461 0.3142935649961468 0.1151516845652284 0.942316106486461 -0.9814065262557707 0.1917854364560292 0.007718587043729437 0.9814065262557707 -0.1917854364560292 -0.007718587043729437 -0.3228914834170022 0.217939675583032 0.9210012962767916 0.3228914834170022 -0.217939675583032 -0.9210012962767916 -0.3242624972403607 -0.2627833088868958 0.9087347057606524 0.3242624972403607 0.2627833088868958 -0.9087347057606524 0.117420388131938 0.8977396860229416 0.4245891055954867 -0.117420388131938 -0.8977396860229416 -0.4245891055954867 0.2469964941695569 0.9685320094499706 0.03063459708809317 -0.2469964941695569 -0.9685320094499706 -0.03063459708809317 0.07435299732554916 -0.5619690584054785 -0.823809692334077 -0.07435299732554916 0.5619690584054785 0.823809692334077 -0.1220295760348229 -0.8647589480038433 -0.4871352424327843 0.1220295760348229 0.8647589480038433 0.4871352424327843 0.8216169141959743 -0.5698787308324951 0.0135601789010826 -0.8216169141959743 0.5698787308324951 -0.0135601789010826 0.6877979909346258 -0.5387765752819367 -0.4864706831801484 -0.6877979909346258 0.5387765752819367 0.4864706831801484 -0.3136937401979045 0.0587051288605675 -0.9477077319543795 0.3136937401979045 -0.0587051288605675 0.9477077319543795 -0.839258447178844 0.5433306725550696 0.02090548013826136 0.839258447178844 -0.5433306725550696 -0.02090548013826136 -0.2680750835053133 0.3235315035335521 0.9074486849541071 0.2680750835053133 -0.3235315035335521 -0.9074486849541071 -0.2377611366143024 -0.9701765968443886 -0.04719123701827994 0.2377611366143024 0.9701765968443886 0.04719123701827994 -0.3107228677212897 -0.2832733326377546 0.9073078410833657 0.3107228677212897 0.2832733326377546 -0.9073078410833657 0.363472855355222 0.8517560208747094 -0.3773581380116289 -0.363472855355222 -0.8517560208747094 0.3773581380116289 0.7564578035040248 -0.3790964679218641 0.5329704114930146 -0.7564578035040248 0.3790964679218641 -0.5329704114930146 -0.3158059170904769 0.1009810182456142 -0.9434349244567545 0.3158059170904769 -0.1009810182456142 0.9434349244567545 -0.8201689820705466 0.5717011765880734 0.02192271737663839 0.8201689820705466 -0.5717011765880734 -0.02192271737663839 -0.2680299321929722 0.2977177666476841 0.9162554703088794 0.2680299321929722 -0.2977177666476841 -0.9162554703088794 0.06944199672095203 -0.8752639419260931 -0.4786343500579582 -0.06944199672095203 0.8752639419260931 0.4786343500579582 -0.2548536545231394 -0.3498003694604286 0.901492826539151 0.2548536545231394 0.3498003694604286 -0.901492826539151 -0.07991809526843903 0.9055282625218871 0.4166913291907535 0.07991809526843903 -0.9055282625218871 -0.4166913291907535 0.04083183429295593 0.9986126150533274 0.03325065961191508 -0.04083183429295593 -0.9986126150533274 -0.03325065961191508 0.182552286803898 -0.537492532334813 -0.8232717900347233 -0.182552286803898 0.537492532334813 0.8232717900347233 0.577815962223738 -0.8161640474517996 -0.002227430482101782 -0.577815962223738 0.8161640474517996 0.002227430482101782 0.5021654317474508 -0.7356097276283488 -0.4546517433997619 -0.5021654317474508 0.7356097276283488 0.4546517433997619 -0.2804889621707544 0.2496657596863755 -0.9268187258253892 0.2804889621707544 -0.2496657596863755 0.9268187258253892 -0.5958886369564139 0.8025154849665568 0.02975951503501457 0.5958886369564139 -0.8025154849665568 -0.02975951503501457 -0.1886596466353326 0.3826616885909969 0.9044211241540736 0.1886596466353326 -0.3826616885909969 -0.9044211241540736 -0.02642589192626583 -0.9989899562612886 -0.03634198020155225 0.02642589192626583 0.9989899562612886 0.03634198020155225 -0.2495513640690779 -0.3597033579949276 0.8990759761768944 0.2495513640690779 0.3597033579949276 -0.8990759761768944 0.1610749021599849 0.919514136162441 -0.3585367893139996 -0.1610749021599849 -0.919514136162441 0.3585367893139996 0.5735102016805903 -0.6720388064869559 0.4684547909285128 -0.5735102016805903 0.6720388064869559 -0.4684547909285128 -0.2657943292264164 0.2945407621324637 -0.9179319767790568 0.2657943292264164 -0.2945407621324637 0.9179319767790568 -0.5837327705497279 0.8113865891313407 0.03013064161526602 0.5837327705497279 -0.8113865891313407 -0.03013064161526602 -0.1991820465143772 0.3544893614773262 0.9135993678553758 0.1991820465143772 -0.3544893614773262 -0.9135993678553758 0.2861780936521547 -0.4775920835169998 -0.8306671418056151 -0.2861780936521547 0.4775920835169998 0.8306671418056151 0.2596158391162486 -0.8356664422017331 -0.4840053857736125 -0.2596158391162486 0.8356664422017331 0.4840053857736125 -0.1711728639867653 -0.3974243520842621 0.9015285547363282 0.1711728639867653 0.3974243520842621 -0.9015285547363282 -0.2759630649446006 0.862122778991588 0.424957292830943 0.2759630649446006 -0.862122778991588 -0.424957292830943 -0.1627713730068983 0.9861055452496621 0.03318634896031334 0.1627713730068983 -0.9861055452496621 -0.03318634896031334 0.3416996505827609 -0.9396661338264465 -0.01639834538231022 -0.3416996505827609 0.9396661338264465 0.01639834538231022 0.30376142805433 -0.8502671592682022 -0.4298543389293356 -0.30376142805433 0.8502671592682022 0.4298543389293356 -0.201791230256234 0.4122164491855501 -0.8884581579413475 0.201791230256234 -0.4122164491855501 0.8884581579413475 -0.353387402572387 0.9348176637184597 0.03511807658603557 0.353387402572387 -0.9348176637184597 -0.03511807658603557 -0.1058721135997328 0.4040115403614299 0.9086064994356522 0.1058721135997328 -0.4040115403614299 -0.9086064994356522 -0.03914787380005075 0.9310752900203363 -0.3627206201616916 0.03914787380005075 -0.9310752900203363 0.3627206201616916 0.1852695253025228 -0.9820292032140997 -0.0359700851939271 -0.1852695253025228 0.9820292032140997 0.0359700851939271 -0.1773549694629225 -0.4078269871403468 0.8956686682958341 0.1773549694629225 0.4078269871403468 -0.8956686682958341 0.3549316148623257 -0.8408242567767633 0.4087029703672644 -0.3549316148623257 0.8408242567767633 -0.4087029703672644 -0.1822031762745549 0.4397897912365972 -0.8794242105375164 0.1822031762745549 -0.4397897912365972 0.8794242105375164 -0.3477859038141603 0.9369150364712027 0.03514512117396353 0.3477859038141603 -0.9369150364712027 -0.03514512117396353 -0.1202995705451427 0.3836022387659995 0.9156294751373872 0.1202995705451427 -0.3836022387659995 -0.9156294751373872 -0.3816999914060151 0.9236542054752703 0.03417638466097767 0.3816999914060151 -0.9236542054752703 -0.03417638466097767 0.3808467242539962 -0.3762287084416336 -0.8446346734354094 -0.3808467242539962 0.3762287084416336 0.8446346734354094 0.4502607467623525 -0.7431657997486632 -0.4949442938442048 -0.4502607467623525 0.7431657997486632 0.4949442938442048 -0.08541398328283506 -0.4049315133355671 0.9103487908310348 0.08541398328283506 0.4049315133355671 -0.9103487908310348 -0.4839714770711831 0.7462278087800175 0.4570729337697769 0.4839714770711831 -0.7462278087800175 -0.4570729337697769 0.1272741652955169 -0.9915092578234279 -0.02665855395111868 -0.1272741652955169 0.9915092578234279 0.02665855395111868 0.1075205216591178 -0.9023415162816886 -0.4173956461399833 -0.1075205216591178 0.9023415162816886 0.4173956461399833 -0.1273013822530978 0.880511134770289 -0.4566119792799885 0.1273013822530978 -0.880511134770289 0.4566119792799885 -0.1306645420507385 0.9907766458956298 0.03589450373632322 0.1306645420507385 -0.9907766458956298 -0.03589450373632322 -0.02654652668006343 0.3881393566191548 0.9212182812800087 0.02654652668006343 -0.3881393566191548 -0.9212182812800087 -0.2460646216208448 0.8881171003616863 -0.3882012596988072 0.2460646216208448 -0.8881171003616863 0.3882012596988072 0.4101023204955814 -0.9113972187520644 -0.03422274645818363 -0.4101023204955814 0.9113972187520644 0.03422274645818363 -0.09588818099303931 -0.4238328194187011 0.9006504304831264 0.09588818099303931 0.4238328194187011 -0.9006504304831264 0.1414093547059274 -0.9178126143131481 0.3709762787690308 -0.1414093547059274 0.9178126143131481 -0.3709762787690308 -0.08229816627144125 0.5326161550261377 -0.8423461540444828 0.08229816627144125 -0.5326161550261377 0.8423461540444828 -0.03578031954480483 0.3768652501914808 0.9255767671735197 0.03578031954480483 -0.3768652501914808 -0.9255767671735197 -0.674709725386167 0.5584923471442861 0.4825485308760034 0.674709725386167 -0.5584923471442861 -0.4825485308760034 -0.6195040484889329 0.7846770842946554 0.02228468731349538 0.6195040484889329 -0.7846770842946554 -0.02228468731349538 0.4570166420245257 -0.2308322798019402 -0.858983263814881 -0.4570166420245257 0.2308322798019402 0.858983263814881 0.640215112457863 -0.5821380191740587 -0.5012384027712449 -0.640215112457863 0.5821380191740587 0.5012384027712449 -0.00412076982569427 -0.3751321319259711 0.9269621906273845 0.00412076982569427 0.3751321319259711 -0.9269621906273845 -0.0771032196051772 -0.9963834114229999 -0.03570981612359299 0.0771032196051772 0.9963834114229999 0.03570981612359299 -0.08906842643591111 -0.9018910816672023 -0.4226810762518171 0.08906842643591111 0.9018910816672023 0.4226810762518171 0.06620767914974504 0.8988097898575195 -0.4333099408943743 -0.06620767914974504 -0.8988097898575195 0.4333099408943743 0.08025119404980048 0.9960917061574914 0.03689253010893739 -0.08025119404980048 -0.9960917061574914 -0.03689253010893739 0.04437713259752743 0.3394687609676098 0.9395699177972532 -0.04437713259752743 -0.3394687609676098 -0.9395699177972532 -0.01161620341918367 -0.4044218247092673 0.9144987979855144 0.01161620341918367 0.4044218247092673 -0.9144987979855144 -0.4607959922654775 0.7725797385012819 -0.43679240053985 0.4607959922654775 -0.7725797385012819 0.43679240053985 0.6528638896857033 -0.7569444426881054 -0.02835228788029745 -0.6528638896857033 0.7569444426881054 0.02835228788029745 -0.06270523447042294 -0.9322290879753824 0.3563944178892201 0.06270523447042294 0.9322290879753824 -0.3563944178892201 0.02539719024706923 0.5792730047807407 -0.814737852723099 -0.02539719024706923 -0.5792730047807407 0.814737852723099 0.0464879261504257 0.3294715832049027 0.9430203330695938 -0.0464879261504257 -0.3294715832049027 -0.9430203330695938 0.0646969505680893 -0.3132092574365765 0.9474778444075717 -0.0646969505680893 0.3132092574365765 -0.9474778444075717 -0.8190055710734459 0.2677980214914298 0.5074584655279038 0.8190055710734459 -0.2677980214914298 -0.5074584655279038 -0.8580883842627182 0.5134892842226402 0.0036165981140491 0.8580883842627182 -0.5134892842226402 -0.0036165981140491 0.4994180366316639 -0.04699295619315566 -0.8650857106409757 -0.4994180366316639 0.04699295619315566 0.8650857106409757 0.8539293952023838 -0.5200193019209856 -0.01960901932534571 -0.8539293952023838 0.5200193019209856 0.01960901932534571 -0.2852447237175135 -0.9574708992473967 -0.04341571933874513 0.2852447237175135 0.9574708992473967 0.04341571933874513 -0.2924341135507829 -0.8449230634038953 -0.4478697424027935 0.2924341135507829 0.8449230634038953 0.4478697424027935 0.2600125274543552 0.8674470282758773 -0.4241805496509092 -0.2600125274543552 -0.8674470282758773 0.4241805496509092 0.2946201925173138 0.9549773324281696 0.03488891957969222 -0.2946201925173138 -0.9549773324281696 -0.03488891957969222 0.1034170581106673 0.2608524472427958 0.9598233758661949 -0.1034170581106673 -0.2608524472427958 -0.9598233758661949 0.8820135529355918 -0.4708935410121302 -0.01764555102543141 -0.8820135529355918 0.4708935410121302 0.01764555102543141 0.06790459995166641 -0.3406811915226268 0.9377234619268771 -0.06790459995166641 0.3406811915226268 -0.9377234619268771 -0.6641144318958315 0.5539254413356686 -0.5021141571283985 0.6641144318958315 -0.5539254413356686 0.5021141571283985 0.4964651605977263 -0.007173700614587332 -0.8680270055316057 -0.4964651605977263 0.007173700614587332 0.8680270055316057 -0.2614397072830781 -0.8933246091077352 0.3655412729340564 0.2614397072830781 0.8933246091077352 -0.3655412729340564 0.1382379130492395 0.5831724777007232 -0.800499931697805 -0.1382379130492395 -0.5831724777007232 0.800499931697805 0.1141379742883999 0.2414973802642208 0.9636656775826661 -0.1141379742883999 -0.2414973802642208 -0.9636656775826661 0.8822912321948564 0.02220810173169826 -0.4701797335164039 -0.8822912321948564 -0.02220810173169826 0.4701797335164039 0.1188138028336179 -0.2260274947932563 0.9668478948902453 -0.1188138028336179 0.2260274947932563 -0.9668478948902453 -0.8587397158175739 -0.08018506560671994 0.5060992548218168 0.8587397158175739 0.08018506560671994 -0.5060992548218168 -0.8050928716867741 0.1826331764184201 -0.5643319863612742 0.8050928716867741 -0.1826331764184201 0.5643319863612742 0.4925879284688318 0.1528216387529459 -0.8567395633771382 -0.4925879284688318 -0.1528216387529459 0.8567395633771382 -0.5097456504244465 -0.8591344984638351 -0.04524693826826742 0.5097456504244465 0.8591344984638351 0.04524693826826742 -0.503222982218811 -0.7120634997618107 -0.4896245525642766 0.503222982218811 0.7120634997618107 0.4896245525642766 0.4603466958027616 0.7788779087251324 -0.4259461503094539 -0.4603466958027616 -0.7788779087251324 0.4259461503094539 0.523479007550921 0.8515040131017884 0.03017688395200142 -0.523479007550921 -0.8515040131017884 -0.03017688395200142 0.1518593399203167 0.1545205082045166 0.9762490222392971 -0.1518593399203167 -0.1545205082045166 -0.9762490222392971 0.9986610433822905 -0.05168256758209613 -0.002243354344905463 -0.9986610433822905 0.05168256758209613 0.002243354344905463 0.1318246859017485 -0.2349796978402745 0.9630196227438976 -0.1318246859017485 0.2349796978402745 -0.9630196227438976 -0.8570320744351881 -0.04027811833018728 0.5136863795869009 0.8570320744351881 0.04027811833018728 -0.5136863795869009 -0.8020473590133231 0.2179865516430817 -0.5560592569164835 0.8020473590133231 -0.2179865516430817 0.5560592569164835 -0.4615904843755709 -0.7909897607564924 0.4015836439800712 0.4615904843755709 0.7909897607564924 -0.4015836439800712 0.252540347057417 0.5414245503907144 -0.8019244536378299 -0.252540347057417 -0.5414245503907144 0.8019244536378299 0.159799408619329 0.1228134197518831 0.979479970664924 -0.159799408619329 -0.1228134197518831 -0.979479970664924 0.4353324721431299 0.3341380181837748 -0.8359649654752106 -0.4353324721431299 -0.3341380181837748 0.8359649654752106 0.8085299571629004 0.3823119055224868 -0.4473442916433872 -0.8085299571629004 -0.3823119055224868 0.4473442916433872 0.1551669196552751 -0.1168490823491705 0.9809533724896663 -0.1551669196552751 0.1168490823491705 -0.9809533724896663 -0.7805585710254122 -0.4068311902331807 0.4745700157534397 0.7805585710254122 0.4068311902331807 -0.4745700157534397 -0.9244908752825142 -0.378565349547113 -0.04477608336649194 0.9244908752825142 0.378565349547113 0.04477608336649194 -0.7502012696929717 -0.6593563627663559 -0.04946960511844244 0.7502012696929717 0.6593563627663559 0.04946960511844244 -0.6978467183232735 -0.4623279303828837 -0.5470492139774237 0.6978467183232735 0.4623279303828837 0.5470492139774237 0.6649029264142448 0.6072315801009957 -0.4349412679590449 -0.6649029264142448 -0.6072315801009957 0.4349412679590449 0.7604816846369817 0.6489597204662113 0.02277912518327709 -0.7604816846369817 -0.6489597204662113 -0.02277912518327709 0.1719340237016065 0.01941018364806291 0.9849172230520308 -0.1719340237016065 -0.01941018364806291 -0.9849172230520308 -0.8040886315762558 -0.1784821301950049 -0.5670851803484884 0.8040886315762558 0.1784821301950049 0.5670851803484884 0.924659177562477 0.3805625196872114 0.0133256879298732 -0.924659177562477 -0.3805625196872114 -0.0133256879298732 0.1673583694593457 -0.0987386897261418 0.9809392679075876 -0.1673583694593457 0.0987386897261418 -0.9809392679075876 -0.6515862186990911 -0.6172149427356434 0.4410001293256686 0.6515862186990911 0.6172149427356434 -0.4410001293256686 0.3609413422632294 0.4492442334622321 -0.8172520823749242 -0.3609413422632294 -0.4492442334622321 0.8172520823749242 0.1680743216177683 -0.01327794334903362 0.985684898247481 -0.1680743216177683 0.01327794334903362 -0.985684898247481 -0.7077286307855312 -0.7046579404075305 -0.05076782629829895 0.7077286307855312 0.7046579404075305 0.05076782629829895 0.3422907321088052 0.470188875101221 -0.8134860026106574 -0.3422907321088052 -0.470188875101221 0.8134860026106574 0.6285452392550731 0.6463254866285363 -0.4326595053204869 -0.6285452392550731 -0.6463254866285363 0.4326595053204869 0.1684837607857226 0.01078912850309114 0.9856453809852929 -0.1684837607857226 -0.01078912850309114 -0.9856453809852929 -0.6208951602753291 -0.6569286372870615 0.4277078038320531 0.6208951602753291 0.6569286372870615 -0.4277078038320531 -0.8016874851195304 -0.3476970057459101 0.4862139121806895 0.8016874851195304 0.3476970057459101 -0.4862139121806895 -0.8149220097351028 -0.1080548625133485 -0.5694086974542294 0.8149220097351028 0.1080548625133485 0.5694086974542294 0.8324394161889932 0.3218611754601607 -0.4510543227886545 -0.8324394161889932 -0.3218611754601607 0.4510543227886545 0.9513198774933672 0.3080369782319619 0.01018384641117496 -0.9513198774933672 -0.3080369782319619 -0.01018384641117496 0.1634203117995998 -0.1247450298277524 0.978638073663903 -0.1634203117995998 0.1247450298277524 -0.978638073663903 -0.6678589248046758 -0.5214726726196702 -0.5310656346155726 0.6678589248046758 0.5214726726196702 0.5310656346155726 0.7182567574893013 0.6953383336702373 0.02473523902558684 -0.7182567574893013 -0.6953383336702373 -0.02473523902558684 0.1693848817853877 0.04483553595062854 0.9845296016568371 -0.1693848817853877 -0.04483553595062854 -0.9845296016568371 -0.8048692487349177 -0.3506423330122185 0.4787853869330574 0.8048692487349177 0.3506423330122185 -0.4787853869330574 -0.8033529047000452 -0.1701599897853734 -0.570674765857263 0.8033529047000452 0.1701599897853734 0.570674765857263 0.449268697821028 0.3040839242511426 -0.8400539293225307 -0.449268697821028 -0.3040839242511426 0.8400539293225307 0.1500216654325103 -0.1381913113327511 0.9789773548826299 -0.1500216654325103 0.1381913113327511 -0.9789773548826299 -0.4259537348114598 -0.8178821815051697 0.3868231546540531 0.4259537348114598 0.8178821815051697 -0.3868231546540531 -0.4675392286166295 -0.8827060022405983 -0.04729887221687068 0.4675392286166295 0.8827060022405983 0.04729887221687068 0.2320365704896954 0.552483805839267 -0.8005752146055608 -0.2320365704896954 -0.552483805839267 0.8005752146055608 0.4235426764458111 0.8000651237203419 -0.4248616233969279 -0.4235426764458111 -0.8000651237203419 0.4248616233969279 0.1520251206832657 0.143591229580553 0.9778905467734022 -0.1520251206832657 -0.143591229580553 -0.9778905467734022 -0.8563034731243645 0.03075851077944254 0.5155562781402063 0.8563034731243645 -0.03075851077944254 -0.5155562781402063 -0.7854559790425402 0.2863556715033529 -0.5486887408943149 0.7854559790425402 -0.2863556715033529 0.5486887408943149 0.8789201616178662 -0.04563262027587983 -0.4747810163310886 -0.8789201616178662 0.04563262027587983 0.4747810163310886 0.9909649981647042 -0.1339921094394375 -0.005872565061178528 -0.9909649981647042 0.1339921094394375 0.005872565061178528 0.1214868915248658 -0.2566112218047661 0.9588491101479369 -0.1214868915248658 0.2566112218047661 -0.9588491101479369 0.1424597144731626 0.1742609283264101 0.9743399604917387 -0.1424597144731626 -0.1742609283264101 -0.9743399604917387 -0.4649654691684617 -0.7434500776185029 -0.4807172709295918 0.4649654691684617 0.7434500776185029 0.4807172709295918 0.4806825705190683 0.8763220630772676 0.0316845098302365 -0.4806825705190683 -0.8763220630772676 -0.0316845098302365 -0.860794945204459 -0.01643115646217469 0.5086866220058945 0.860794945204459 0.01643115646217469 -0.5086866220058945 -0.7900784413486761 0.2562479078863671 -0.5568779634892249 0.7900784413486761 -0.2562479078863671 0.5568779634892249 0.4980078568234466 0.1169113175851559 -0.859255444185616 -0.4980078568234466 -0.1169113175851559 0.859255444185616 0.1096901023717531 -0.2434510788927682 0.9636906420774363 -0.1096901023717531 0.2434510788927682 -0.9636906420774363 0.1039596989266152 0.2597350418756318 0.9600677523075918 -0.1039596989266152 -0.2597350418756318 -0.9600677523075918 -0.2255086311498324 -0.9042076887875177 0.3627041670762336 0.2255086311498324 0.9042076887875177 -0.3627041670762336 -0.246296801946135 -0.9683103284272793 -0.04138832217136909 0.246296801946135 0.9683103284272793 0.04138832217136909 0.1177179104608849 0.5854651574134203 -0.8021053814877456 -0.1177179104608849 -0.5854651574134203 0.8021053814877456 0.224575277624369 0.8769413923042921 -0.4248996812699999 -0.224575277624369 -0.8769413923042921 0.4248996812699999 -0.818183918190957 0.5749003086151485 0.00804432519857671 0.818183918190957 -0.5749003086151485 -0.00804432519857671 -0.6305737591105755 0.6022648379504871 -0.4895444814208733 0.6305737591105755 -0.6022648379504871 0.4895444814208733 0.4949605839858888 -0.03892198721152086 -0.8680432588367092 -0.4949605839858888 0.03892198721152086 0.8680432588367092 0.8451270122946203 -0.5341853035835791 -0.02015922928309364 -0.8451270122946203 0.5341853035835791 0.02015922928309364 0.05385948697774293 -0.3554499664399606 0.9331422597976823 -0.05385948697774293 0.3554499664399606 -0.9331422597976823 0.2549244586738081 0.9663161203320346 0.03530829868898371 -0.2549244586738081 -0.9663161203320346 -0.03530829868898371 0.09423102464293508 0.2772583329710544 0.9561633389713573 -0.09423102464293508 -0.2772583329710544 -0.9561633389713573 -0.2549214545164238 -0.8600324943657328 -0.4419945256021691 0.2549214545164238 0.8600324943657328 0.4419945256021691 -0.79929641435108 0.3271493463141986 0.5040818854230917 0.79929641435108 -0.3271493463141986 -0.5040818854230917 0.4948857423588071 -0.08216582485000451 -0.865064667661725 -0.4948857423588071 0.08216582485000451 0.865064667661725 0.8144148990748201 -0.5798756477366595 -0.02173948773407881 -0.8144148990748201 0.5798756477366595 0.02173948773407881 0.0528667042807186 -0.3265261401177359 0.9437085309555636 -0.0528667042807186 0.3265261401177359 -0.9437085309555636 0.03142215486202268 0.8992909717703551 -0.4362205821326607 -0.03142215486202268 -0.8992909717703551 0.4362205821326607 0.03222413175603969 0.3414413676946292 0.9393505191138132 -0.03222413175603969 -0.3414413676946292 -0.9393505191138132 -0.0259253419318946 -0.9334636059792216 0.3577339415794692 0.0259253419318946 0.9334636059792216 -0.3577339415794692 -0.04049074313123702 -0.9985674125448957 -0.03498031337870574 0.04049074313123702 0.9985674125448957 0.03498031337870574 0.005328438180618537 0.5750615350973014 -0.8180928056144308 -0.005328438180618537 -0.5750615350973014 0.8180928056144308 -0.5748760152395741 0.8178890218602926 0.02398155588536437 0.5748760152395741 -0.8178890218602926 -0.02398155588536437 -0.4214825828834756 0.8001683134769219 -0.4267119665926568 0.4214825828834756 -0.8001683134769219 0.4267119665926568 0.6074881385080706 -0.6169848063479048 -0.5002878274631893 -0.6074881385080706 0.6169848063479048 0.5002878274631893 0.6082732213363905 -0.7931810654764039 -0.02945310806633874 -0.6082732213363905 0.7931810654764039 0.02945310806633874 -0.02736669832298045 -0.4111055921847794 0.9111768521518208 0.02736669832298045 0.4111055921847794 -0.9111768521518208 0.04235616326970938 0.9984366610053214 0.03647176159187728 -0.04235616326970938 -0.9984366610053214 -0.03647176159187728 0.03221986909040234 0.3506818629235959 0.9359402283544785 -0.03221986909040234 -0.3506818629235959 -0.9359402283544785 -0.05361409784407056 -0.9050905554847667 -0.4218253369401169 0.05361409784407056 0.9050905554847667 0.4218253369401169 -0.6412286961935133 0.6027935398456574 0.4748322940768762 0.6412286961935133 -0.6027935398456574 -0.4748322940768762 0.4462050229884594 -0.2575089267645674 -0.8570823939951334 -0.4462050229884594 0.2575089267645674 0.8570823939951334 -0.01851769985004047 -0.3828132866255579 0.9236401260096934 0.01851769985004047 0.3828132866255579 -0.9236401260096934 -0.1011209062275383 0.5194295024157583 -0.8485090184222199 0.1011209062275383 -0.5194295024157583 0.8485090184222199 -0.1630204955034008 0.8718140737365698 -0.4619139951123722 0.1630204955034008 -0.8718140737365698 0.4619139951123722 -0.05106644626099506 0.3803957682493656 0.9234128424297812 0.05106644626099506 -0.3803957682493656 -0.9234128424297812 0.1789455253017296 -0.9095149566493147 0.3751813462922742 -0.1789455253017296 0.9095149566493147 -0.3751813462922742 0.1644492067246966 -0.9860474719446343 -0.0258232739832422 -0.1644492067246966 0.9860474719446343 0.0258232739832422 -0.3394842626918352 0.9401205712295527 0.03039320541832133 0.3394842626918352 -0.9401205712295527 -0.03039320541832133 -0.2080610788881689 0.9007191526710595 -0.3813339684101321 0.2080610788881689 -0.9007191526710595 0.3813339684101321 0.4170581372161195 -0.7630871662746496 -0.4937210617836206 -0.4170581372161195 0.7630871662746496 0.4937210617836206 0.3671848022390897 -0.9296812715626696 -0.02946276141604014 -0.3671848022390897 0.9296812715626696 0.02946276141604014 -0.1118508727425593 -0.4246135752306774 0.8984390318750346 0.1118508727425593 0.4246135752306774 -0.8984390318750346 0.1429673890552561 -0.8969759915124038 -0.4183233155312562 -0.1429673890552561 0.8969759915124038 0.4183233155312562 -0.1697402903512333 0.9848294799586392 0.03604343540612129 0.1697402903512333 -0.9848294799586392 -0.03604343540612129 -0.04029823831595079 0.3929010957394276 0.9186973282618099 0.04029823831595079 -0.3929010957394276 -0.9186973282618099 -0.4425321364225157 0.7807076339415388 0.4412039194507776 0.4425321364225157 -0.7807076339415388 -0.4412039194507776 0.3615564551111211 -0.3924871464468883 -0.8457131722052452 -0.3615564551111211 0.3924871464468883 0.8457131722052452 -0.1004051002551915 -0.4059873809262091 0.9083463339340465 0.1004051002551915 0.4059873809262091 -0.9083463339340465 0.3904353888787023 -0.9205132079270056 -0.01468472482104409 -0.3904353888787023 0.9205132079270056 0.01468472482104409 -0.2028401600381923 0.4137734346108561 -0.8874950221190066 0.2028401600381923 -0.4137734346108561 0.8874950221190066 -0.3965987545441102 0.9173867728006537 0.03333072133126812 0.3965987545441102 -0.9173867728006537 -0.03333072133126812 -0.1368126594116787 0.3783825735749009 0.9154828912871822 0.1368126594116787 -0.3783825735749009 -0.9154828912871822 0.4037445049495944 -0.8137278701143873 0.4181355379803415 -0.4037445049495944 0.8137278701143873 -0.4181355379803415 -0.2130405425149827 0.9762377946652087 -0.03966731037178552 0.2130405425149827 -0.9762377946652087 0.03966731037178552 -0.1081798850903938 0.9240271948778918 -0.3667026800937292 0.1081798850903938 -0.9240271948778918 0.3667026800937292 0.3281513256345706 -0.7677627424058544 -0.5503245214032494 -0.3281513256345706 0.7677627424058544 0.5503245214032494 0.2328257703503543 -0.9718983197261724 -0.03472487255854357 -0.2328257703503543 0.9718983197261724 0.03472487255854357 -0.1473936565412861 -0.3971635326227748 0.9058345535283955 0.1473936565412861 0.3971635326227748 -0.9058345535283955 0.3468945964669057 -0.8319723515337044 -0.4329967034811476 -0.3468945964669057 0.8319723515337044 0.4329967034811476 -0.2234283793547914 0.3810349301579313 -0.8971578129283787 0.2234283793547914 -0.3810349301579313 0.8971578129283787 -0.4038454249517289 0.9142215620686088 0.03328375270894747 0.4038454249517289 -0.9142215620686088 -0.03328375270894747 -0.122338880712954 0.4011767131602135 0.9077942735465285 0.122338880712954 -0.4011767131602135 -0.9077942735465285 -0.3151385434377004 0.8509345145216276 0.4202358271682778 0.3151385434377004 -0.8509345145216276 -0.4202358271682778 0.3362915756879585 -0.4605074486483383 -0.8214869845960483 -0.3362915756879585 0.4605074486483383 0.8214869845960483 -0.1477861161468464 -0.3879190814924926 0.9097681298486179 0.1477861161468464 0.3879190814924926 -0.9097681298486179 0.642036301964842 -0.5915223220510135 0.4877404324788823 -0.642036301964842 0.5915223220510135 -0.4877404324788823 0.6565729720855437 -0.7542611534141503 0.001429957031396675 -0.6565729720855437 0.7542611534141503 -0.001429957031396675 -0.2873913339372501 0.2414284916307782 -0.9268864572355426 0.2873913339372501 -0.2414284916307782 0.9268864572355426 -0.6582465513805748 0.7522761974698212 0.02814250017192915 0.6582465513805748 -0.7522761974698212 -0.02814250017192915 -0.2200850377465403 0.3382910481576543 0.9149435736134222 0.2200850377465403 -0.3382910481576543 -0.9149435736134222 -0.2116315698671361 0.368248547592389 0.9053204326820795 0.2116315698671361 -0.368248547592389 -0.9053204326820795 0.5633653855986063 -0.6828540426268416 -0.4651126732067326 -0.5633653855986063 0.6828540426268416 0.4651126732067326 -0.2983463149186184 0.191197653796943 -0.935111187804437 0.2983463149186184 -0.191197653796943 0.935111187804437 -0.6749209437416259 0.737369483269181 0.02771217859090166 0.6749209437416259 -0.737369483269181 -0.02771217859090166 -0.2877910840981094 0.2723055930267614 0.9181644492790924 0.2877910840981094 -0.2723055930267614 -0.9181644492790924 0.7965472595788976 -0.253297272604866 0.5489562413783857 -0.7965472595788976 0.253297272604866 -0.5489562413783857 0.8952079640211859 -0.4452204858064359 0.01952998134470383 -0.8952079640211859 0.4452204858064359 -0.01952998134470383 -0.3232893198518779 0.02813167905717699 -0.9458819293670507 0.3232893198518779 -0.02813167905717699 0.9458819293670507 -0.8886272139272777 0.4582966637581069 0.01748835772829509 0.8886272139272777 -0.4582966637581069 -0.01748835772829509 -0.9067641930740167 0.4213005352784029 0.01686882132688834 0.9067641930740167 -0.4213005352784029 -0.01686882132688834 -0.2922750546849938 0.2931621069745766 0.9102918605826984 0.2922750546849938 -0.2931621069745766 -0.9102918605826984 0.7419994697737539 -0.4512518930279872 -0.4957907985170013 -0.7419994697737539 0.4512518930279872 0.4957907985170013 -0.3148742535731208 -0.004869283983756693 -0.9491209061601453 0.3148742535731208 0.004869283983756693 0.9491209061601453 -0.9986404382995738 0.05205556031263065 0.002737450159036555 0.9986404382995738 -0.05205556031263065 -0.002737450159036555 -0.3381879490069393 0.1884767588034562 0.9220116173549136 0.3381879490069393 -0.1884767588034562 -0.9220116173549136 0.8102172987549845 0.138570612457417 0.5695139279783705 -0.8102172987549845 -0.138570612457417 -0.5695139279783705 0.8502888027754763 -0.102763249480544 -0.5161866585169038 -0.8502888027754763 0.102763249480544 0.5161866585169038 -0.3038909547366041 -0.182050698823732 -0.9351512341258317 0.3038909547366041 0.182050698823732 0.9351512341258317 -0.2902066635529607 -0.1816590542969931 -0.939563771343585 0.2902066635529607 0.1816590542969931 0.939563771343585 -0.999813477153811 -0.01931205510930637 0.0002354337719400635 0.999813477153811 0.01931205510930637 -0.0002354337719400635 -0.3505880388990245 0.1891080781604483 0.9172383342160302 0.3505880388990245 -0.1891080781604483 -0.9172383342160302 0.8136186072749757 0.08552528389165728 0.5750740714996462 -0.8136186072749757 -0.08552528389165728 -0.5750740714996462 0.8477488936218549 -0.1456593881118026 -0.5100050548943768 -0.8477488936218549 0.1456593881118026 0.5100050548943768 -0.2332730477494691 -0.3605164174014107 -0.9031121735298034 0.2332730477494691 0.3605164174014107 0.9031121735298034 -0.9227606700250345 -0.3850225608303484 -0.01644303824084896 0.9227606700250345 0.3850225608303484 0.01644303824084896 -0.3710855398209218 0.08356562277686359 0.9248309622983706 0.3710855398209218 -0.08356562277686359 -0.9248309622983706 0.6915941643211421 0.4814387597695081 0.5384368416709047 -0.6915941643211421 -0.4814387597695081 -0.5384368416709047 0.8981451913718017 0.4388467863422945 0.02736262656891868 -0.8981451913718017 -0.4388467863422945 -0.02736262656891868 0.8429373844420663 0.2038831752479156 -0.4978837381967761 -0.8429373844420663 -0.2038831752479156 0.4978837381967761 -0.2290209345500243 -0.3335906107424467 -0.9144761975919957 0.2290209345500243 0.3335906107424467 0.9144761975919957 -0.892787122367921 -0.4501117183451386 -0.01818227550097881 0.892787122367921 0.4501117183451386 0.01818227550097881 -0.3806471395931579 0.05863070036734207 0.9228597922187215 0.3806471395931579 -0.05863070036734207 -0.9228597922187215 0.6731421049907004 0.7390076570403116 0.02733842212853642 -0.6731421049907004 -0.7390076570403116 -0.02733842212853642 -0.1328818881006347 -0.4812003013776529 -0.8664806251549232 0.1328818881006347 0.4812003013776529 0.8664806251549232 -0.5162201884059053 -0.6859853388317428 -0.5127775658022399 0.5162201884059053 0.6859853388317428 0.5127775658022399 -0.3820804274125651 -0.03799906150363985 0.92334750679962 0.3820804274125651 0.03799906150363985 -0.92334750679962 0.4982106593253596 0.7158749775839003 0.4891923501076451 -0.4982106593253596 -0.7158749775839003 -0.4891923501076451 0.7240704694464025 0.5172326219432335 -0.456281020943666 -0.7240704694464025 -0.5172326219432335 0.456281020943666 -0.6700361228712017 -0.7418412287615767 -0.02689210585362026 0.6700361228712017 0.7418412287615767 0.02689210585362026 -0.3799116356427942 -0.07528213549441858 0.921954309702285 0.3799116356427942 0.07528213549441858 -0.921954309702285 0.2919879555706406 0.8457029878555783 0.4466872397257671 -0.2919879555706406 -0.8457029878555783 -0.4466872397257671 0.4366746038435569 0.8991604423174815 0.02873655041064687 -0.4366746038435569 -0.8991604423174815 -0.02873655041064687 -0.02181407774595281 -0.5442229250816213 -0.838656994144625 0.02181407774595281 0.5442229250816213 0.838656994144625 -0.2991359507547488 -0.8171395266061116 -0.492748086778622 0.2991359507547488 0.8171395266061116 0.492748086778622 -0.3640461567431337 -0.1638571415455993 0.9168539866985687 0.3640461567431337 0.1638571415455993 -0.9168539866985687 -0.3516769144494107 -0.1959843911759476 0.9153761337607262 0.3516769144494107 0.1959843911759476 -0.9153761337607262 0.5385155662651773 0.7372771912468562 -0.4079501540105633 -0.5385155662651773 -0.7372771912468562 0.4079501540105633 -0.4313320674869082 -0.9015906437027481 -0.03296905738921509 0.4313320674869082 0.9015906437027481 0.03296905738921509 -0.3161376728583065 -0.2763059264210083 0.9075858123749857 0.3161376728583065 0.2763059264210083 -0.9075858123749857 0.09040000099123229 0.9018629294589402 0.4224583959261835 -0.09040000099123229 -0.9018629294589402 -0.4224583959261835 0.2181949882099804 0.9753917837111359 0.03165146740445621 -0.2181949882099804 -0.9753917837111359 -0.03165146740445621 0.08965774420950276 -0.5583695936821822 -0.8247332209596372 -0.08965774420950276 0.5583695936821822 0.8247332209596372 -0.09610053397935414 -0.8715175067638015 -0.4808554073451709 0.09610053397935414 0.8715175067638015 0.4808554073451709 -0.2086475547426834 -0.97733379468257 -0.0358448276780246 0.2086475547426834 0.97733379468257 0.0358448276780246 -0.3037553178911301 -0.2967919290395361 0.9053437235160189 0.3037553178911301 0.2967919290395361 -0.9053437235160189 0.3354278871728308 0.8652296633188016 -0.372646967276005 -0.3354278871728308 -0.8652296633188016 0.372646967276005 0.09633384992223543 -0.8730059074944812 -0.4781009044531264 -0.09633384992223543 0.8730059074944812 0.4781009044531264 -0.2454762232693019 -0.3778735606343362 0.8927222389875635 0.2454762232693019 0.3778735606343362 -0.8927222389875635 -0.1068794703126247 0.9026211842571167 0.4169553651842997 0.1068794703126247 -0.9026211842571167 -0.4169553651842997 0.01343256556453883 0.9993622853949731 0.03308456909936523 -0.01343256556453883 -0.9993622853949731 -0.03308456909936523 0.1974099225344546 -0.5322015896758886 -0.8232805053148031 -0.1974099225344546 0.5322015896758886 0.8232805053148031 0.003001611511603842 -0.9993164585643894 -0.03684570491468954 -0.003001611511603842 0.9993164585643894 0.03684570491468954 -0.2411038193416134 -0.3871649112769986 0.8899282441718323 0.2411038193416134 0.3871649112769986 -0.8899282441718323 0.1343421246173835 0.9239034350956201 -0.3582661527018712 -0.1343421246173835 -0.9239034350956201 0.3582661527018712 0.2993706784681616 -0.4646143507834411 -0.8333730868702169 -0.2993706784681616 0.4646143507834411 0.8333730868702169 0.2850107885662926 -0.824994532191174 -0.4880090903410367 -0.2850107885662926 0.824994532191174 0.4880090903410367 -0.1571345039047647 -0.4017198641372894 0.902180635150257 0.1571345039047647 0.4017198641372894 -0.902180635150257 -0.3048806322925207 0.8512454486647582 0.4271170637898318 0.3048806322925207 -0.8512454486647582 -0.4271170637898318 -0.1916792900952346 0.9809089376497736 0.03281319532413365 0.1916792900952346 -0.9809089376497736 -0.03281319532413365 -0.06725397877958619 0.9289520816679044 -0.3640397400053766 0.06725397877958619 -0.9289520816679044 0.3640397400053766 0.214093725390382 -0.976059223129979 -0.03837016668415395 -0.214093725390382 0.976059223129979 0.03837016668415395 -0.1633846812171462 -0.4106968979510492 0.8970136587348917 0.1633846812171462 0.4106968979510492 -0.8970136587348917 -0.4114894635731415 0.910944516026596 0.02926619362607543 0.4114894635731415 -0.910944516026596 -0.02926619362607543 0.3926959050834945 -0.3586157917358537 -0.8468675457521808 -0.3926959050834945 0.3586157917358537 0.8468675457521808 0.4758502576596353 -0.7262053017002771 -0.4961777827227537 -0.4758502576596353 0.7262053017002771 0.4961777827227537 -0.07399356110308394 -0.4019361170684739 0.9126731675201163 0.07399356110308394 0.4019361170684739 -0.9126731675201163 -0.5074302324216592 0.7336431167333045 0.4519760353097758 0.5074302324216592 -0.7336431167333045 -0.4519760353097758 -0.2747903286848682 0.8774196655492494 -0.3932238621557767 0.2747903286848682 -0.8774196655492494 0.3932238621557767 0.4416526661926221 -0.8965544611827641 -0.03366037103526774 -0.4416526661926221 0.8965544611827641 0.03366037103526774 -0.08545569125862905 -0.4237162742578753 0.9017548689974093 0.08545569125862905 0.4237162742578753 -0.9017548689974093 -0.6983978619991993 0.5260909548807602 0.4852512066420825 0.6983978619991993 -0.5260909548807602 -0.4852512066420825 -0.6529432889600653 0.7571478064822202 0.01980556843857087 0.6529432889600653 -0.7571478064822202 -0.01980556843857087 0.465149621916081 -0.2078553546390002 -0.8604835737997689 -0.465149621916081 0.2078553546390002 0.8604835737997689 0.6654155175131032 -0.5535483740833016 -0.5008057373897605 -0.6654155175131032 0.5535483740833016 0.5008057373897605 0.005418881696632692 -0.3680761368893017 0.929779862749138 -0.005418881696632692 0.3680761368893017 -0.929779862749138 -0.000848534349117857 -0.3982057122200044 0.9172957487881525 0.000848534349117857 0.3982057122200044 -0.9172957487881525 -0.4894851489717341 0.7496498620475539 -0.4454541202730113 0.4894851489717341 -0.7496498620475539 0.4454541202730113 0.686486074271473 -0.7266466935471828 -0.02685986947637853 -0.686486074271473 0.7266466935471828 0.02685986947637853 0.07257951327708044 -0.3044279122108545 0.9497662136122774 -0.07257951327708044 0.3044279122108545 -0.9497662136122774 -0.8316266309633804 0.2226829365098312 0.5087331878891489 0.8316266309633804 -0.2226829365098312 -0.5087331878891489 -0.8847452800452509 0.4660747751115573 -0.0003056834338768042 0.8847452800452509 -0.4660747751115573 0.0003056834338768042 0.5015933670654268 -0.02022844019930286 -0.8648669864916057 -0.5015933670654268 0.02022844019930286 0.8648669864916057 0.8822466459320009 -0.4704359473785972 -0.01818997404441176 -0.8822466459320009 0.4704359473785972 0.01818997404441176 0.9072991995700066 -0.4200891905185878 -0.0182547108731709 -0.9072991995700066 0.4200891905185878 0.0182547108731709 0.07681250537470345 -0.3297206400568425 0.9409485312909346 -0.07681250537470345 0.3297206400568425 -0.9409485312909346 -0.6901611701879913 0.5152597301695152 -0.5081190506469726 0.6901611701879913 -0.5152597301695152 0.5081190506469726 0.4967189319902256 0.01610794687932466 -0.8677619700412219 -0.4967189319902256 -0.01610794687932466 0.8677619700412219 0.8811371227070259 0.07681584511404151 -0.4665797862391803 -0.8811371227070259 -0.07681584511404151 0.4665797862391803 0.1213463840642501 -0.2131877828435231 0.9694462462255421 -0.1213463840642501 0.2131877828435231 -0.9694462462255421 -0.8530865173759819 -0.1294405738576815 0.5054587339345447 0.8530865173759819 0.1294405738576815 -0.5054587339345447 -0.814130490024759 0.1226249548705555 -0.5675867032049285 0.814130490024759 -0.1226249548705555 0.5675867032049285 0.488075429724192 0.1805200466478967 -0.8539290881904577 -0.488075429724192 -0.1805200466478967 0.8539290881904577 0.9999911938398497 0.003594933677936766 -0.002165339373681499 -0.9999911938398497 -0.003594933677936766 0.002165339373681499 0.134654818811377 -0.215852360007679 0.9670966024394826 -0.134654818811377 0.215852360007679 -0.9670966024394826 -0.8525443020408295 -0.09186364878118959 0.514518496353942 0.8525443020408295 0.09186364878118959 -0.514518496353942 -0.8136384103311264 0.1551976982215682 -0.5602733365961338 0.8136384103311264 -0.1551976982215682 0.5602733365961338 0.42419264210225 0.356669434057175 -0.8323746255116424 -0.42419264210225 -0.356669434057175 0.8323746255116424 0.788540225669898 0.4252466762652501 -0.4442629590972266 -0.788540225669898 -0.4252466762652501 0.4442629590972266 0.1578903340186837 -0.1001732663627726 0.9823624377640269 -0.1578903340186837 0.1001732663627726 -0.9823624377640269 -0.7547544002130159 -0.4464111011651991 0.4806900499444158 0.7547544002130159 0.4464111011651991 -0.4806900499444158 -0.9002546744465021 -0.4324153514752223 -0.05058146840279224 0.9002546744465021 0.4324153514752223 0.05058146840279224 -0.7844078875843706 -0.2203888260673079 -0.5797698088380414 0.7844078875843706 0.2203888260673079 0.5797698088380414 0.9025619957841596 0.4302941233611072 0.01512650544609188 -0.9025619957841596 -0.4302941233611072 -0.01512650544609188 0.1694587852265324 -0.07902581395908963 0.9823638026910659 -0.1694587852265324 0.07902581395908963 -0.9823638026910659 -0.6777997339671049 -0.7334386989157637 -0.05152858980093819 0.6777997339671049 0.7334386989157637 0.05152858980093819 0.3277318451777326 0.4836579036630281 -0.8115829408512009 -0.3277318451777326 -0.4836579036630281 0.8115829408512009 0.6008258209528511 0.672999545050567 -0.4313698473909166 -0.6008258209528511 -0.672999545050567 0.4313698473909166 0.1681259371286808 0.0289271124782179 0.9853410026119259 -0.1681259371286808 -0.0289271124782179 -0.9853410026119259 -0.5960772586658657 -0.6811286002642853 0.4251537740669864 0.5960772586658657 0.6811286002642853 -0.4251537740669864 -0.6424609573471923 -0.5591595895136003 -0.524008083658555 0.6424609573471923 0.5591595895136003 0.524008083658555 0.6860359439303672 0.7270974243426841 0.02615375976422767 -0.6860359439303672 -0.7270974243426841 -0.02615375976422767 0.1672445427505161 0.0635846036810455 0.9838629280010987 -0.1672445427505161 -0.0635846036810455 -0.9838629280010987 -0.3991834821708372 -0.833882662242207 0.381172209340889 0.3991834821708372 0.833882662242207 -0.381172209340889 -0.436673585657375 -0.898346711598448 -0.04784731287528865 0.436673585657375 0.898346711598448 0.04784731287528865 0.2165549899156194 0.5605315718217925 -0.799317392112568 -0.2165549899156194 -0.5605315718217925 0.799317392112568 0.3959079871099898 0.814565510187616 -0.4239574216301738 -0.3959079871099898 -0.814565510187616 0.4239574216301738 0.1469885497273995 0.1606397865739732 0.9760067751908816 -0.1469885497273995 -0.1606397865739732 -0.9760067751908816 0.1367524582859509 0.1896313168118517 0.9722853124659204 -0.1367524582859509 -0.1896313168118517 -0.9722853124659204 -0.4363659032354655 -0.7641091553127701 -0.4751020914084689 0.4363659032354655 0.7641091553127701 0.4751020914084689 0.4489091800247141 0.8929977089497613 0.03218135951162144 -0.4489091800247141 -0.8929977089497613 -0.03218135951162144 0.09538884997893314 0.2729518704836034 0.9572869181698865 -0.09538884997893314 -0.2729518704836034 -0.9572869181698865 -0.19916090518526 -0.9116402327043386 0.3595094156772078 0.19916090518526 0.9116402327043386 -0.3595094156772078 -0.2176624288130749 -0.975174444786605 -0.04071694141668609 0.2176624288130749 0.975174444786605 0.04071694141668609 0.102006332390428 0.5870283498898806 -0.8031142039447549 -0.102006332390428 -0.5870283498898806 0.8031142039447549 0.1981146465912776 0.8828648477660394 -0.4257936676197301 -0.1981146465912776 -0.8828648477660394 0.4257936676197301 0.2256876647724398 0.9735647864648768 0.03516652563392818 -0.2256876647724398 -0.9735647864648768 -0.03516652563392818 0.08666536336345972 0.2887786406560797 0.9534652649645432 -0.08666536336345972 -0.2887786406560797 -0.9534652649645432 -0.2265545473801807 -0.870396171769524 -0.4371310343939431 0.2265545473801807 0.870396171769524 0.4371310343939431 0.1010901885606562 0.8940479215265205 -0.4364161864446363 -0.1010901885606562 -0.8940479215265205 0.4364161864446363 0.06445273455075674 0.3426205379758255 0.9372603757580311 -0.06445273455075674 -0.3426205379758255 -0.9372603757580311 -0.09421883163346889 -0.9293391783437046 0.3570035060907275 0.09421883163346889 0.9293391783437046 -0.3570035060907275 -0.1141545076910417 -0.9931824478120208 -0.02360876387993668 0.1141545076910417 0.9931824478120208 0.02360876387993668 0.05547583050659001 0.5705465277503693 -0.8193894628939288 -0.05547583050659001 -0.5705465277503693 0.8193894628939288 0.1183456576553504 0.9923332101166951 0.03562450580173765 -0.1183456576553504 -0.9923332101166951 -0.03562450580173765 0.06847289401134064 0.3517521245684066 0.9335855106241335 -0.06847289401134064 -0.3517521245684066 -0.9335855106241335 -0.1174996333925605 -0.9006404150700651 -0.4183786310210343 0.1174996333925605 0.9006404150700651 0.4183786310210343</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1518\" source=\"#ID1720\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1718\">\r\n                    <float_array count=\"5340\" id=\"ID1721\">6.58124424901909 -6.549378169441382 6.594243626844292 -6.487653200815711 6.696598292678734 -6.579371642699301 6.770497270762599 -6.368002865699669 6.896285173146524 -6.398310764394472 6.873649040572605 -6.459167001603291 1.606994190922951 -6.327084945039047 1.580681158011152 -6.386127925962971 1.460244292213868 -6.292204700666309 10.72765394165891 3.063738383867222 10.5980296473315 3.16242781111746 10.71370408282775 3.133207924124927 -14.24684181700179 2.895012572611291 -14.37836477191033 2.884348767382279 -14.27536856083076 2.948733990007817 12.02661393174706 -5.038767454721178 12.02963450011833 -4.97540399630809 12.13270788791269 -5.064109924764864 -11.43004979394074 6.476324997785461 -11.56978098256344 6.449906638664104 -11.45041031934673 6.525574610328857 1.322449705284458 -6.54656069112223 1.188396506576154 -6.512409706528434 1.202976646830431 -6.451878772249051 10.41699837302386 3.037734408533836 10.41242534415271 3.106118996484697 10.54308769399871 3.008280373024194 14.22298475920952 0.9978649944354868 14.22868687550232 1.068052757424426 14.33983745789674 0.9736936553716453 -14.41406365568179 2.799460727749057 -14.42893286841137 2.860675058135635 -14.29755694176207 2.872406949963704 -11.81071992062438 6.326362348610802 -11.81615211937594 6.384425499993632 -11.67726913981383 6.413480222718076 12.34011881459929 -4.847885141612953 12.23559589959462 -4.760235148769227 12.35218527571307 -4.785337753832025 14.29799052110548 1.032487182046824 14.40449286151205 1.008227913539467 14.4082945708094 0.9375153228838487 -8.646902383256775 8.414878901034605 -8.65225088094765 8.466496378568733 -8.496176125508582 8.508264906098283 -2.062364601803681 -5.946800285642397 -2.084487832753494 -6.005899039236392 -2.225608167016072 -5.908277090569572 5.516731967478028 3.763540693092602 5.536636150405173 3.696875695631897 5.382351354636739 3.796885859379463 -1.825387654953955 -10.97795048330495 -1.884600514269914 -10.93822896745472 -1.714330072727926 -10.92251084273801 -7.748922238916536 -9.954464435558011 -7.79840775236452 -9.906628617639578 -7.649350194663867 -9.900624786233577 -8.784310837788754 -1.241847335524194 -8.787135633251932 -1.313500902922323 -8.92930096333563 -1.268526888976237 -15.04146757417562 -1.00410718230715 -15.18224126549513 -1.000381342150911 -15.08000063047432 -0.9496539115100071 -3.469776790001123 -1.433129586011157 -3.636193457436785 -1.393887389957964 -3.467751959729123 -1.361446586633084 15.0799720754955 -1.84640187481776 15.0697697748768 -1.783649460309469 15.19088475943191 -1.865768703242847 15.14971662900356 -1.555844833387425 15.16475225651432 -1.486064374733959 15.270873582621 -1.573836679302148 0.4616561994130319 -1.476724207459918 0.2768516036628688 -1.441540775337597 0.4630186390810243 -1.405042945112993 -8.005742696899761 8.488515723223257 -8.163621323410542 8.451177554591169 -8.026435765616917 8.530730759872318 -2.293388194544666 -6.138822691979789 -2.4430430920236 -6.101480803180111 -2.433742599554219 -6.04051978575417 5.436284076851978 3.627690075505538 5.289345258562495 3.661908654056093 5.281609980481847 3.727327415661591 -1.664012047294929 -11.17724007252425 -1.538691796081832 -11.11373410611447 -1.494020587394178 -11.15975280909925 -7.708903503541491 -10.06819690293984 -7.596851553771961 -10.00757019272877 -7.559897686881227 -10.06144487523813 -13.80394136830569 -5.347095812217072 -13.67982728250908 -5.297709492546378 -13.66934678039212 -5.358830088359242 -8.934277323360174 -1.278181379060464 -8.792112442899484 -1.323156272549668 -8.937274536217549 -1.349834940823649 -3.469575642851401 -1.432604703644461 -3.637981170684591 -1.465033502026184 -3.635992330231767 -1.393362559933586 -15.04443401340557 -0.9267530124473642 -15.16167715503678 -0.9830096314666004 -15.18518939721181 -0.9226212489814935 0.4667585127219454 -1.460205219356446 0.2806529150071002 -1.496716884230763 0.2819533936378837 -1.425023488397573 15.22694423527607 -1.729820926995538 15.10474829618992 -1.648698741421962 15.22579592759738 -1.667368909268757 15.14836910280534 -1.561230425407777 15.25950455965932 -1.579790115350655 15.25381816116621 -1.649502713802673 -13.70905781169531 -5.465424093013168 -13.57427659965371 -5.475747981522576 -13.68326120159224 -5.521105616346749 3.976310155088747 -1.452420991870312 3.778059476329116 -1.491331965888099 3.778677872700642 -1.419644341839172 -4.915032547644466 9.695300561137652 -4.924158167699285 9.739972307822898 -4.749506986196691 9.789484780731707 -5.450190950101695 -5.452943705251995 -5.466428704797508 -5.512998744586117 -5.62393289877766 -5.412722460397985 1.609465487717938 3.643233308884622 1.625747823712465 3.578792809037639 1.459434081530487 3.679628221354763 2.75177342842676 -10.41501700380149 2.694025937217583 -10.37911533282872 2.886418593863451 -10.35745692824499 -13.56823117634963 -1.117856398906911 -13.43696541817042 -1.168642013176132 -13.57034484446136 -1.189529781926131 -15.31837195499966 -1.126824963332342 -15.18370245135952 -1.183496829452818 -15.32148137519616 -1.198474617651945 -13.43873416972657 -1.105383114401142 -13.44221737402736 -1.177023074673115 -13.57348303464848 -1.126237304357183 2.932885576596509 -10.62556022685836 3.084567787784672 -10.55949770269626 3.124876194543661 -10.60179637146776 -14.27406457440445 -4.188326973727107 -14.23026255961007 -4.241256592905594 -14.3880974431638 -4.225327928343009 6.08159715729758 -9.679589720518795 6.252366066188061 -9.610885962106238 6.281737120175908 -9.653513684822444 14.56990814590382 0.8906379004746501 14.55073954364409 0.9512488337379985 14.69513799916541 0.8771124759701474 13.98836616840125 -3.485795048415157 13.85180981249663 -3.473507760986333 13.87220671244561 -3.405519550538257 -15.09360847281752 1.551480369610484 -15.11229511495358 1.494068204026374 -15.24448506369222 1.522759909581195 8.863141725241569 -8.491093070519487 9.046607585061743 -8.420335876271338 9.063187285970249 -8.465440283949684 3.981652961166122 -1.432534168465369 3.784020116171064 -1.399759617830593 3.982227057989166 -1.360845740458799 -4.243778827518175 9.645692936740909 -4.4203482338053 9.600586872049473 -4.271108337050094 9.681303096710458 -5.567571219398818 -5.577113581380363 -5.726965491124796 -5.538029632220386 -5.724687919201744 -5.476461811269927 1.479190914587885 3.450728201263897 1.315723022024065 3.488181673922985 1.3123895722882 3.551063954407052 -15.18164621719179 -1.112031694332554 -15.183579319497 -1.183708231834246 -15.31825082028332 -1.127039302738265 -14.11644171506379 -1.247840634544451 -14.11882086935693 -1.319507596013285 -14.27127552772448 -1.257445807823585 5.944838963904796 -9.535317829142093 5.896110707495713 -9.498913914865723 6.096612970452268 -9.474621268043999 -14.29865728184889 -4.131559341464129 -14.4274629530263 -4.170368937371987 -14.45623700581568 -4.114137297605507 8.741952678615132 -8.388900269106708 8.704432924425426 -8.35043200610763 8.904819006823733 -8.326480335575504 14.62575748289741 0.8840605137219411 14.48069581852796 0.957391260480141 14.61719612716233 0.9449103110481921 13.93823792192693 -3.50098340353423 13.92868917508662 -3.568394517846725 13.81296019620182 -3.487735170872187 -15.3191072571964 1.089747013738183 -15.18589532225082 1.064147005589764 -15.31828670712011 1.03509219622925 -14.27071625492155 -1.256628862637208 -14.11826140441306 -1.318690358735289 -14.27301155136194 -1.328294431454065 11.2748086613165 -6.962727785305382 11.24900669104789 -6.920389516202464 11.4386430382845 -6.899072111910923 7.079122381810587 -1.366778858084151 6.879283177793899 -1.406303553365385 6.879174206126704 -1.33461375405915 -1.639350098864578 10.24402048753645 -1.659126075293471 10.28259867174746 -1.471834731367073 10.33842240011433 -8.350193722834836 -4.901656702223142 -8.358945052014157 -4.962864643339828 -8.525359415136965 -4.860766572695539 -2.069176509537213 3.326242371998825 -2.059087024761563 3.263807920087086 -2.228970941949152 3.364301695159172 -12.80801298485597 -6.5162044115534 -12.96023646348285 -6.540458830759638 -12.98586871517872 -6.488806855079433 -12.66637355289365 -6.577066818475374 -12.6216360985754 -6.62642051388846 -12.8001472564576 -6.601801802600653 -2.162817219157649 3.161640623475467 -2.336942990057161 3.200987032149872 -2.333023790622471 3.261795962852635 12.39182426109625 2.18561983376668 12.24944285353749 2.19473994396073 12.2292020449856 2.25385443097011 11.75074928358597 -4.598198705337238 11.59566929682486 -4.590326721935167 11.61580633313306 -4.524374147181312 -12.63507355126722 5.894212969916898 -12.66393998906888 5.844494759227446 -12.81020461308719 5.881331443860742 -11.82125205815746 -1.459694082136635 -11.99549709293202 -1.393311873126869 -11.81977059956834 -1.388015243731605 -5.382493030321145 2.890923063486692 -5.558077907378632 2.930721040901064 -5.54565632136752 2.989887599332794 11.55202166175043 -6.97032458325745 11.36265161727129 -6.993059841607922 11.54729574696372 -6.921103971484012 7.075826539499448 -1.379446987442179 6.875878736080901 -1.347280451372693 7.075723304966597 -1.307757750129594 -1.021186987362716 10.00367962972549 -0.8694177686235403 10.08371475068434 -0.8313202435885412 10.05383124676085 -8.467908202763617 -5.025225452961317 -8.628568156351067 -4.985666143780119 -8.633850798947336 -4.922653294167339 -10.63473570750967 -8.396450360756997 -10.59555666323037 -8.442543639426111 -10.78870460040299 -8.412389414882506 -5.264650239876106 3.074501562281626 -5.26295113539274 3.013629195775665 -5.425733287039561 3.112981391539079 12.29289584040521 2.167725345527938 12.30089699380007 2.107827564862799 12.13791688367612 2.175531668263347 11.68650379418733 -4.62218848841794 11.67877838708494 -4.687202969135057 11.54412396994733 -4.613053094229081 -13.08120175598883 5.416493678003377 -12.933679223902 5.382904350925389 -13.08779377845514 5.367197755794929 -11.82027526121955 -1.458146084418443 -11.99604071254451 -1.46345417311277 -11.99452056129688 -1.391764306365459 -10.89760927187156 -8.376099391171923 -11.07263611306153 -8.38951289220214 -11.08975241430197 -8.342204616685828 -8.247975251303757 2.83781775819075 -8.254873181608906 2.778095725210113 -8.401385748341427 2.875408215976926 13.48044384213466 -5.009201686890331 13.46385237761761 -4.961597731074239 13.63487046372841 -4.94549333456956 9.879863373842106 -1.279515954902865 9.689642966495599 -1.318112330245819 9.688833687236995 -1.246425873783559 1.475651917588861 10.37351640629636 1.443130091462908 10.40723131683276 1.633232329972663 10.46618200176879 -11.0667197444089 -4.252035633234956 -11.06869557425599 -4.315166235750052 -11.23351755599443 -4.212103517231708 9.71446549538318 2.682322219812674 9.558501111372419 2.688716318200013 9.542757436781312 2.747656735355469 9.250814699947915 -5.261317889795185 9.080915698983219 -5.256274384238835 9.096599736713905 -5.192152721956323 -9.594212167617888 7.85725022959299 -9.618678131511869 7.811571463428256 -9.78657225631229 7.852181304202899 -9.223157745222073 -1.559513824423473 -9.414858620572524 -1.490297784890158 -9.222389127344098 -1.487816533957632 -8.342676183655009 -9.823142345531542 -8.313551547726426 -9.866667545846497 -8.512151808923482 -9.833839807323299 -11.18493744892392 -4.360578516193835 -11.33788399567242 -4.32183575397238 -11.34911959644303 -4.256885721281595 -8.363931188574018 2.665633741903264 -8.53117261365886 2.704464239519222 -8.51083709197818 2.762578564523907 13.7032700981467 -4.94760926841141 13.53243276553563 -4.964860093100802 13.70571871821602 -4.892064820823818 9.918408740111159 -1.141557346435877 9.727375012814907 -1.108481704397161 9.918011166691752 -1.070223784205219 2.154785353111235 10.01054928985228 2.298149943687731 10.08860311579251 2.347909860452635 10.06307003623583 9.614774569423926 2.62259068597055 9.616830971644632 2.562621381735284 9.444870915217811 2.627544449697741 9.180936640514702 -5.292365405877916 9.178984853297125 -5.355321768348242 9.024979107795028 -5.28586871389258 -10.12264496331629 7.384037398307376 -9.953569129999973 7.346584292382385 -10.12323052915491 7.33790296641511 -9.223302778726774 -1.559758095281766 -9.415745096930356 -1.562230434000202 -9.415003618485226 -1.490541994745479 -8.718101642412567 -9.849470270803952 -8.910416386694324 -9.856028141728599 -8.915439656525455 -9.812228607292562 -13.52757237333776 -3.253838288386617 -13.52570201626261 -3.319370448554848 -13.67841958207174 -3.216263533760802 -11.11903254697048 2.503742481659308 -11.13283943233612 2.444453213863007 -11.2576465884218 2.539291641083163 15.00901797649272 -2.226254217167108 14.99471168600354 -2.171827778478193 15.14620801840819 -2.164273783765453 12.68751385641467 -1.046289002066653 12.5140764173943 -1.081226333038961 12.51320522696011 -1.009895377403657 4.435409511631076 10.18764576954969 4.390186155113673 10.21795412776514 4.57038367166259 10.27786145171617 6.970231778647031 2.933597808515434 6.80792556828419 2.938987088622652 6.799881688192711 2.998643544254029 6.565200070904346 -5.77145126429052 6.38849475190444 -5.767454288873126 6.397328272898307 -5.704863778902204 -6.727716747354233 8.72492284002916 -6.740962662766271 8.67997821747481 -6.927849432471361 8.722326968238191 -6.523860973682957 -1.619966112853497 -6.724023439939218 -1.549689226529727 -6.523816959676118 -1.548275308989991 -5.693633793840718 -10.99750842844916 -5.676828072007357 -11.03945164024491 -5.870057109739038 -11.00675822385091 5.134303576942065 9.744778558550188 5.25934845031599 9.82104916490678 5.317869985164807 9.797981050926577 -13.61661898968192 -3.314964590822164 -13.75477921795586 -3.278338480514989 -13.76854622192811 -3.21113764018096 -11.22516461032156 2.346204936008003 -11.3763808957291 2.382786202714328 -11.35040662033016 2.44068793613538 15.1576814090512 -2.124937608263094 15.00622435634547 -2.132964253521795 15.16255610417226 -2.064324066966547 12.67874468748797 -1.072408870383979 12.50443705789629 -1.036012282277891 12.67579970956057 -1.000791165795485 6.893125891645962 2.88321524964939 6.886905982815804 2.822359023664407 6.716380878520885 2.887120345392944 6.493886671357535 -5.8005416321671 6.499297749395056 -5.861853318658661 6.331588001222222 -5.795013610782488 -7.074127155872859 8.225542020014023 -7.250726533626778 8.219285912978307 -7.262032134221126 8.265004098363175 -6.525749738177368 -1.623253311987273 -6.725901609103392 -1.624662552674014 -6.725911777439533 -1.552975673052246 -6.368320690458104 -11.02654289028165 -6.176516721583457 -11.06407179278063 -6.3766631666886 -11.06817949827535 7.399609504547767 9.619323336809778 7.345657936498037 9.648481918796941 7.50932005389018 9.70810095719639 -15.19835650897502 -1.539034396595866 -15.19769012705485 -1.607100305600387 -15.33016673667251 -1.505202038994014 -13.78005902420712 1.693229909753987 -13.7967899717757 1.633255812143993 -13.90101400375472 1.725824069942405 15.09413895837948 1.382617541727121 15.07649354971018 1.441744718990168 15.21264066966617 1.439333263282441 14.70849752495492 -0.9569903180896706 14.70504936238811 -0.885386513503547 14.85983765837054 -0.9261652935141864 4.088365265100688 3.216347512225592 3.92858025553164 3.222424407256274 3.929212039490774 3.283474997984946 3.628701490527138 -6.25377151257014 3.453414789059227 -6.249107518399225 3.454746509898578 -6.187657172491474 -3.942909749583434 9.179981975510847 -3.942449775668033 9.133408161644695 -4.13993042991791 9.176092671215066 -3.606698048420351 -1.645858167980079 -3.804442724339767 -1.576393226874311 -3.6073962201789 -1.57417339189756 -2.288278526008347 -11.90528913347866 -2.283036671723982 -11.94723758726214 -2.461576433909019 -11.91801663122962 14.68525165683018 -0.932638536655356 14.83767055927219 -0.9017608779535168 14.84003553665523 -0.9734276888092656 8.108960391747763 9.093458524674087 8.209437323079435 9.16861687617568 8.276440918809898 9.146107733000486 -15.36165339124285 -1.424612209270104 -15.23019083421849 -1.527319995424785 -15.35086860629276 -1.494096043713383 -13.88118101999296 1.518439185105724 -14.0132840761721 1.551715355141865 -13.98609403252384 1.610524537993517 15.21737009846128 1.491820278078688 15.08122751550328 1.494385356116551 15.21560360749451 1.557231680141138 3.996955488369488 3.144999336356541 3.982368056858551 3.082821681320523 3.823003933198998 3.149638809828557 3.485286894891789 -6.366196625883084 3.499164945906288 -6.426505097304841 3.325515964445149 -6.359894810592758 -4.278002755312185 8.678262533042021 -4.453169469024997 8.671350563432563 -4.476417866988736 8.718175278555938 -3.618895359002929 -1.667155676863641 -3.815957778124675 -1.669379995571271 -3.816637486098988 -1.597686245786954 -3.063075796199603 -11.98819013303461 -2.886020494107124 -12.02254899848497 -3.082847751041001 -12.03018892198073 15.37347153016832 -0.864475723708804 15.37036629622499 -0.792826398140414 15.50826906708694 -0.8391059119714515 10.52976473615412 8.337246791857679 10.46869773574608 8.368506526357542 10.60892099772934 8.426715961728627 -14.90733358767244 0.9496904440560714 -14.91413508240196 0.8798953576999469 -15.02467306260946 0.9783649043506141 -15.43571461010428 -0.3095391815648549 -15.44843414629052 -0.3713122339563524 -15.54299682496061 -0.28070504552319 13.18902707788397 5.120739521180622 13.08182700855746 5.07329441497193 13.05331052206207 5.134754519941269 0.8602079240670885 3.552651421901498 0.7113710177846816 3.561026601019804 0.7198562776932399 3.623901000220996 -0.06156410505620824 -6.85188633132437 -0.2224226690605397 -6.844260889613422 -0.2280132769841331 -6.783130214567945 -0.9993590702559498 9.425796599405491 -0.9871209358075042 9.376457503167522 -1.182856664340904 9.41748422758206 -0.2787465030115544 -1.650569545981412 -0.4648357632701805 -1.583661053340848 -0.2801691149569641 -1.578882537162648 2.632411735352135 -12.09200642552012 2.632056573613641 -12.13679197222151 2.473012178330985 -12.11634927890616 13.26986832367426 5.181267872325768 13.13430698424003 5.196183559839843 13.25632134653072 5.247906031232003 15.37039704935246 -0.7927718569836021 15.5051591891193 -0.7674044945288573 15.5082998077492 -0.8390513938007211 11.27388404135594 7.614833960107384 11.35039658314674 7.690464620731416 11.41892048281696 7.665219088248803 -14.94597724388745 1.133757219368655 -14.8366103783817 1.034481718979013 -14.94404317265669 1.062966787564549 -15.46170198266474 -0.4837969542149664 -15.57902692257803 -0.4547413647059616 -15.55721730864293 -0.3938102667829985 0.755403771290053 3.479990418793721 0.7339020756767323 3.416193550264083 0.5932810520062515 3.487113670990601 -0.1125383764077592 -6.828888836228406 -0.09497580761364755 -6.889010503667708 -0.2613392188630737 -6.820126058444464 -1.294534063689594 8.981731717269463 -1.45507948850479 8.970757636182825 -1.491061582686062 9.020344992648781 -0.2417048101405872 -1.587089843200602 -0.4254040759247646 -1.591913545599537 -0.4278004564843063 -1.520192343133845 1.850810746548346 -12.28492656885881 2.008734919453221 -12.31017810497672 1.826032096794208 -12.33184142163448 9.503412932212505 7.76058911858186 9.393397281554332 7.724749844334949 9.353995887168807 7.784695466024076 12.96596933288625 -0.8856871073875584 12.96262871075048 -0.8140458065531737 13.09807611669301 -0.8662422109606354 13.94702700974277 5.196158813294375 14.06936201237766 5.249176036053585 14.00392306308978 5.156918052186839 -11.82655752285261 3.222342692885392 -11.84374829503723 3.152839329262184 -11.94226861134993 3.244729081785231 -14.18572255002344 -3.58250145599699 -14.18654326213074 -3.645798698832333 -14.29126050829675 -3.558614725452693 -2.987532571468472 3.888388936992129 -3.119921903641918 3.900550950094525 -3.106293207597168 3.965675456964211 -4.520285822817078 -7.038549392869954 -4.664360227163076 -7.026694423352252 -4.670880235876227 -6.965219336962992 2.299404964523432 9.488670329443528 2.322566263497101 9.434557907495242 2.136871318879284 9.47286930048757 3.955660293461079 -1.479465012608606 3.790134618569108 -1.416730121974065 3.952614200677353 -1.407759067084463 10.05991255277378 -9.604728338859857 10.0706418825885 -9.65482546438237 9.929644119913441 -9.654565405404615 -14.18100759915282 -3.615503449713955 -14.07523677823763 -3.701896778334867 -14.19047154775366 -3.678297315289884 9.68033583573272 7.957884167846678 9.703922871060851 7.894120557176986 9.554940304920466 7.919837247075896 12.96063017669018 -0.8172633530626651 13.09263569321016 -0.7978226973522309 13.09607751920492 -0.8694598593270555 14.50982789799723 4.150502059193211 14.57618626995122 4.22835996152286 14.63751959600602 4.195021685250977 -11.67792821171452 3.314407234664699 -11.78392062031012 3.337014453706298 -11.77550975736867 3.406914815894923 -3.096701153932128 3.833949100290053 -3.121743936100268 3.768231548057704 -3.240851383565672 3.845187083151502 -4.685759871219721 -7.089698368532281 -4.667904566084492 -7.150707082949529 -4.818035071205694 -7.07679070270242 2.006696007070294 9.08105633943431 1.863463391247857 9.06402082020049 1.820227595080348 9.116967683248314 3.907978078413694 -1.557309422787356 3.744601666606605 -1.566236740824238 3.742458447236089 -1.494564664824742 9.921957857946488 -9.687768392533094 10.06295538963597 -9.688096935144522 9.915776023782305 -9.74298291948497 -9.536187034695873 -6.109165075974538 -9.52402517985005 -6.171670783331912 -9.652903998715336 -6.091271755545428 5.394369664548398 9.013073844497422 5.269145413654473 8.98814844654512 5.224592296156702 9.0445549802318 8.172384188754199 -1.050493994714629 8.169435860873902 -0.9788432130047249 8.317123293643281 -1.03688854695364 15.4593568147715 -2.196078899442888 15.585691184698 -2.162655680348026 15.49019509487093 -2.249472481659872 -7.174630313843458 4.191544291445221 -7.198639336027242 4.123919467168141 -7.302161396672466 4.207606734110603 -7.512896872044705 3.880741744689181 -7.628222886151233 3.898016109911356 -7.614488809925017 3.965766902650979 -10.05198077925374 -6.220040294606468 -9.925054496375578 -6.300433664451168 -10.05060016082363 -6.282635650962902 6.0595022497826 9.018524087441488 6.086338965082914 8.959240870642818 5.919293735651714 8.992149632533886 8.71294079027493 -1.357679779673712 8.855963963588343 -1.343488947981518 8.858849349569717 -1.415144910131426 15.46797397531142 -2.244082559516285 15.55442020828451 -2.170200083365358 15.59595209762544 -2.214975631735235 -7.018177647189687 4.27015268442776 -7.135179280475193 4.286855907081375 -7.121080656308553 4.354311102843562 -9.487109587705367 -6.03670439304994 -9.35748853738791 -6.116361583604476 -9.484805617161001 -6.099209318034252 5.646198279373889 9.316156776247158 5.673096166160551 9.257483117041781 5.503966014631532 9.291051008994902 8.176889948354898 -0.9670578814414143 8.321803031755108 -0.9534527271722227 8.324578176343493 -1.025101963257383 15.31787573394606 -2.991383493381594 15.35615939340803 -3.037378882863943 15.22713497432006 -3.063684969347828 -7.683941862686723 3.788286790761991 -7.70753054522451 3.720442539687231 -7.809818624814156 3.80494961202868 -10.10754318578714 -6.280988109041837 -10.09644036543875 -6.343660109105083 -10.22256103855552 -6.262485915253553 5.810030689501506 8.709220836368601 5.686800163988918 8.683274861049368 5.642347912516739 8.740057861146749 8.71221542320505 -1.435026870655446 8.709334777800718 -1.363366330854731 8.855242975404517 -1.420832029632356 15.62328263008404 -1.276134631715449 15.74807445594709 -1.239451794400593 15.65831561462284 -1.328189715669083 -2.683509845591801 4.167315434636141 -2.708407832933077 4.101820517499222 -2.82973441647802 4.178034497450074 -4.160051516571407 -6.742902921349519 -4.14190665745088 -6.803783171280707 -4.294121008134812 -6.730509740119083 1.63891788405939 9.318606882448178 1.493596293917963 9.302360680905546 1.45077567462642 9.354854617899264 3.344966541456234 -1.16079712097281 3.177821464271377 -1.169162107752115 3.175809725731079 -1.097497091901778 8.879219485749545 -10.21799406819434 9.022385226087984 -10.22221713968744 8.869138385987327 -10.27239706324155 -12.11254823881648 2.785161929966629 -12.21806901817422 2.808411330130421 -12.21053926717858 2.878497682522843 -14.51223159584396 -3.612669164517918 -14.408335190759 -3.699608285877914 -14.5231095212086 -3.67536556602917 10.09332858830157 7.542209250891975 10.11624857953252 7.478006039962986 9.969096801405391 7.502732089899697 13.36667546683296 -1.213753528807619 13.49827161106425 -1.193692345027859 13.50158749972813 -1.26534123853821 14.21274096975817 4.554931272144604 14.27888045651739 4.632572000543065 14.34159676935802 4.600398678108447 9.121567351821501 -10.05688027525365 9.129931073619558 -10.10595762203221 8.986726411255365 -10.10265056582533 -2.552825312392804 4.241806767107609 -2.686995605654396 4.25350539908281 -2.67375968987992 4.318405533400918 -3.994881784187046 -6.682837628967281 -4.140955918950187 -6.671513595794013 -4.147545019114344 -6.61014441115455 1.892692983134013 9.677086944403035 1.913713247500035 9.624144397243478 1.726242019814234 9.662483222764452 3.425403473226862 -1.027712244455188 3.25623713927763 -0.964427958447406 3.42188197100568 -0.9559809909929581 -12.2580098996741 2.688038875326533 -12.2741725445931 2.61840847154347 -12.37314363818211 2.71110207228355 -14.50343604627514 -3.568408969071592 -14.50565661871877 -3.631637744385509 -14.60850753513759 -3.543932697348949 9.927167091084403 7.341388397474084 9.818078804243646 7.304301580649085 9.779609336369521 7.364568902136197 13.37042311176466 -1.28478605231886 13.36704899679033 -1.213147962529828 13.50196103823311 -1.264735658426976 13.59514017933157 5.593935722553674 13.71858830810567 5.647895169174232 13.65315003289887 5.555866250203276 1.269933349773281 -12.21505571327907 1.429736907496426 -12.24138994912994 1.246035609969401 -12.26086457700516 1.117691310402366 3.832566543961213 1.096809147173354 3.768922328041411 0.9540052658472764 3.839358444508018 0.290891578879986 -6.4182719458041 0.3080688160055412 -6.478358966394877 0.1406040221887672 -6.409845398332323 -1.627877711662404 9.167993417344203 -1.791289676923391 9.157781848542518 -1.824587824479411 9.206671485326714 -0.5881315195274661 -1.146892661343638 -0.7723047443447428 -1.151399498838604 -0.7752859717544591 -1.079653092062166 -15.12450448487209 0.5082367006157138 -15.01306506971698 0.4084567146726896 -15.12144782084179 0.4374958174156797 -15.40483700265046 -0.5500840574871496 -15.52314926569948 -0.5205329036869346 -15.500459170509 -0.4598507532618971 13.6372217008346 4.552000643296386 13.5025964082012 4.565796961491111 13.62564565899375 4.618821671536798 15.4332221916265 -1.208163755361539 15.5691506200113 -1.182197293887767 15.5722767728024 -1.253842345181188 10.93686109792127 7.70189293965731 11.01554030073302 7.77749597874106 11.08419198164969 7.752694003065106 -0.6158288035618509 -1.194444819456567 -0.8029789501656837 -1.127197834276049 -0.6177048406552255 -1.122711433791591 2.023188275497688 -12.02477396981686 2.022744962719547 -12.06917846409603 1.861827604196317 -12.04744303558953 1.209573519529485 3.891427002171439 1.059253855070687 3.899491351054425 1.067007614216021 3.962160819751297 0.420894258451871 -6.346390196957869 0.2572155089149181 -6.339299772052521 0.253146768666605 -6.278305945086839 -1.29323938510224 9.649788542172328 -1.281424232058489 9.600608416779039 -1.47723624504815 9.642010717377548 -15.07056644321586 0.32951837866518 -15.07648249795538 0.259809567907225 -15.18906507192764 0.3587922130660675 -15.36821020385244 -0.3764479075521434 -15.38176415486199 -0.4379950396759887 -15.47649394105839 -0.3471811079866534 13.55408544381492 4.468656774022928 13.44601181969195 4.420618456722103 13.4193014521924 4.481458325226751 15.44154621644683 -1.270040220367351 15.43887546463735 -1.198432813650995 15.57792429179933 -1.244122241854085 10.20512566656824 8.403341707836011 10.14432019768183 8.434145630052644 10.2870289046954 8.492544086535737 -3.91869385540605 -1.225108016712174 -4.116115399298471 -1.227197461004944 -4.117322721586101 -1.155455181929513 -3.471467888267802 -11.78072429536734 -3.292609903821964 -11.81562808691437 -3.490491370865683 -11.82253249225255 4.317564667636729 3.491936441918928 4.303776139349001 3.429912165714986 4.142883544033628 3.496419642142974 3.819721301533072 -5.889640375170888 3.831603248875901 -5.949998662128328 3.659274989512859 -5.883511144970043 -4.56309856753151 8.881415741794974 -4.737645362532237 8.874537455795485 -4.760466039373007 8.921257796501106 -15.30437239808054 -1.925137475173718 -15.17265218618397 -2.028113769500776 -15.29367516436432 -1.994492812379549 -13.63977731800671 1.281596579032337 -13.77383540457406 1.315252893507354 -13.74648797467401 1.373895152655176 15.30554625251233 0.883233312674941 15.16852919846324 0.8845237794874239 15.30447440325262 0.9475939320276569 14.55150531006319 -1.385893434792753 14.70497460716258 -1.354540221883935 14.70654726679664 -1.426167760578414 7.809899482390562 9.019266457404926 7.913083669094901 9.094354918472561 7.979568694352706 9.071961038863567 -4.221796480428573 9.373952065694544 -4.222767347295527 9.327625268824464 -4.419180856427436 9.370285082541937 -3.934943710298049 -1.25356101857082 -4.133569218365498 -1.183902257835565 -3.935510301573979 -1.181855040535059 -2.70128022653402 -11.6845343638699 -2.695019528428729 -11.72635566158073 -2.87537850023207 -11.69661333401928 4.394521696023961 3.544068214256614 4.234063129625008 3.549995596757794 4.233809223339488 3.610844655154478 3.920277081852706 -5.829542967465618 3.745610314293128 -5.824918717927295 3.747740621135654 -5.763390445962426 -15.08193289730779 -2.127484480091077 -15.08174712600192 -2.194663880642126 -15.21567994234236 -2.093469168983182 -13.63763212200348 1.324530205794836 -13.65226306077004 1.264986309848775 -13.75906765819578 1.357217617136769 15.18372560301041 0.7724757892874185 15.16700258194906 0.8311419315602429 15.30402056265537 0.8299138609692803 14.56812892279312 -1.422897280082927 14.56577507920066 -1.351227689867268 14.72082169562897 -1.391490913011143 7.068418925074433 9.578434342099587 7.013736524031568 9.607519450519252 7.179469623167814 9.667466975923748 -7.364757525197375 8.392612165246591 -7.541092374116214 8.38627149974835 -7.551090634919225 8.431932122824478 -6.80895581292955 -1.224375878368809 -7.008873154588597 -1.225819308579833 -7.008732993357302 -1.154112030053068 -6.648014904057874 -10.76811635857427 -6.455180147617425 -10.80577662083795 -6.654962614866951 -10.80987046417361 7.164970312245638 3.222160895919682 7.159683149105591 3.161453824108722 6.98852420928171 3.226079763481782 6.785490369391764 -5.373434654719696 6.790137438730099 -5.434877087880408 6.623480759659401 -5.36789136083812 -13.2976058089756 -3.815142780842342 -13.43935960981416 -3.778435687170322 -13.45202359186805 -3.711998911620124 -10.96686906604616 1.94467411422947 -11.12000741769106 1.981412675809465 -11.09636944262759 2.039137595600077 15.06275997946819 -2.668645552542825 14.91046052759581 -2.678321142270544 15.06793737631414 -2.608660608269839 12.40361165627005 -1.556904795702498 12.22721588274776 -1.520881642628328 12.40210112607122 -1.485221137171874 4.840345670957236 9.60853603043002 4.967718518286758 9.684953934767201 5.026829930804842 9.661844422024412 6.852543361500072 -5.348088665556715 6.676098353423969 -5.344069393433601 6.685731496818778 -5.281342409296973 -7.016356060791461 8.87659206099765 -7.030952370379245 8.831678311500326 -7.216252762861057 8.873910607339996 -6.797942116762056 -1.205225518883762 -6.99772183470219 -1.134966135554738 -6.797879829875326 -1.133539394580807 -5.982158908094954 -10.7224021075948 -5.964037541056369 -10.76442641326876 -6.158289302214984 -10.73158045372358 7.260035233781455 3.293313681469098 7.098018444234611 3.298725556998873 7.089089793444524 3.358288383369784 -13.30462441089112 -3.749966230417013 -13.30302574846472 -3.815261097718026 -13.45740054944495 -3.712077419898429 -10.77779903674448 2.19365707219338 -10.7911936668646 2.134380368863871 -10.9199066942917 2.229507457165477 14.90675467535563 -2.784820925746171 14.89359153948073 -2.731690706021325 15.04594846248285 -2.722592259857834 12.40266215382955 -1.559795130278744 12.2277740111065 -1.59545177405842 12.22626653963685 -1.523771494388957 4.143254436350755 10.06571708920818 4.09927267677607 10.09630450686961 4.282420137726039 10.1563466515096 9.435616869229413 -4.866506000955534 9.432897596798991 -4.929652859282817 9.280708942696998 -4.859794310336661 -10.41859686279176 7.459863426017556 -10.25179364391773 7.422709347808344 -10.42020891973381 7.413522484191933 -9.490237906461044 -1.142814133138992 -9.681312747559218 -1.145501078235451 -9.680553925598048 -1.073817422628422 -8.952747348601889 -9.552780865647687 -9.143699226774411 -9.559866954031682 -9.150067504131693 -9.515774283021198 9.889666374107684 2.972977660817597 9.892497053443954 2.913043476752998 9.721005228011375 2.978145278554719 -10.92559742287164 -4.813734998559012 -11.07973989590846 -4.774826602266801 -11.09042717486179 -4.71006304648407 -8.064645236820358 2.314896475201184 -8.233189940313375 2.353898140789388 -8.213579112900032 2.412094018744413 13.50788389903918 -5.406127834911042 13.33483920755359 -5.424019232187091 13.5106366864216 -5.352041267498962 9.671533443481678 -1.693736407383557 9.478736923676125 -1.660536261293553 9.670806756414503 -1.622048598075757 1.838311067759377 9.839238762325136 1.983104087847525 9.917511424800731 2.031704780734401 9.89160867737553 9.984298747048996 3.020998695965374 9.829383978294503 3.027611934027926 9.813051806426339 3.086498200934479 9.507223336109265 -4.831511165229551 9.338536488004825 -4.826243837404999 9.354812727931474 -4.761952710567603 -9.89557453061461 7.914866438740829 -9.920935499052261 7.868960947622122 -10.08654778620994 7.909277398932868 -9.492816973104848 -1.147144075054858 -9.683132353837953 -1.078146274811977 -9.491998916595653 -1.075447616452952 -8.588155731518745 -9.510129042457836 -8.557796019122565 -9.553843263302154 -8.756356925636574 -9.521201004372195 -10.79673461355488 -4.700693321613525 -10.79935906835351 -4.763601622987849 -10.96486275762137 -4.660596263860441 -7.95613468336475 2.481711099612882 -7.962177967925487 2.421902294323401 -8.110749165694452 2.519442721548662 13.28335660480808 -5.475056319707314 13.26595833296951 -5.428014034773182 13.43918142063929 -5.411224921898035 9.672936778212982 -1.68869370939979 9.480888525231553 -1.727184133651086 9.480140076488508 -1.655494217076865 1.170179326720959 10.2086367601168 1.139006549215127 10.24276056976623 1.329449867722167 10.30144132619703 12.55687298233113 2.453384130173211 12.56516430339168 2.393466521627998 12.40364063221526 2.461614706417594 11.93640254681426 -4.165032350167974 11.92830484999622 -4.230275828608788 11.79576149654928 -4.155551427142922 -13.37682804325184 5.275712809046858 -13.23131050433421 5.242665521231977 -13.3834254096628 5.225929213983872 -12.0727413853216 -1.041409020725488 -12.24641458179391 -1.047103637845104 -12.24483295440978 -0.9754150875068528 -11.10567366236691 -8.039428313101588 -11.27856220826095 -8.053789475132387 -11.29680376153356 -8.006088254912202 -8.187308503221157 -5.455430342685271 -8.348234059464961 -5.415852699562201 -8.352713368965333 -5.353009241600811 -5.069437534956167 2.531607759242481 -5.245289035871961 2.571431937414694 -5.233757382456509 2.63073961695338 11.31536903728453 -7.370396790031424 11.12447098697703 -7.393572481067205 11.30950136415803 -7.321621856498431 6.775102968090309 -1.786046738243033 6.57489184107579 -1.753906767821389 6.775063105397541 -1.714354410783515 -1.35971484671832 9.794750775461388 -1.207690894320136 9.874847435927755 -1.170781496907739 9.844470840769276 -10.85155818018386 -8.044927051654486 -10.81155848673523 -8.091277161583459 -11.00367125140248 -8.061637611206219 12.65883005106361 2.465021228541604 12.51818957215605 2.474507395170636 12.49769888463863 2.533742024169193 12.00385823044273 -4.135164480222293 11.85062002729697 -4.126928048896102 11.870998185767 -4.060788935018123 -12.94155104552028 5.745711360249714 -12.97020607507349 5.695226271978908 -13.11444422999616 5.731579185363423 -12.07782095363199 -1.049407336215401 -12.24991109127492 -0.9834110930476508 -12.07621148553565 -0.9777292366934768 -8.052138060893382 -5.322984618908614 -8.061635622513139 -5.383991422140615 -8.227574240149934 -5.282106015519593 -4.958719612142856 2.71016070344916 -4.95611050906218 2.649149115916692 -5.120072243836345 2.748647244982946 11.02977013404539 -7.368703720926839 11.00278738463938 -7.326842864677343 11.19396785266242 -7.305155638348523 6.773318783743004 -1.792907828197249 6.573133027084795 -1.832455504155151 6.573107856879306 -1.760767086204102 -1.986585910336417 10.04723581590308 -2.005258580735482 10.08646464865088 -1.818918216905576 10.14191074610979 -12.9824368799928 -6.13026542749434 -13.13207387417355 -6.155811866241038 -13.15830846884235 -6.103729753312876 14.79749500018704 1.037575474863038 14.6546796747225 1.111672259915335 14.78925026464151 1.09862060619865 14.12757377989656 -2.984870955529664 14.11807653859754 -3.052513776518345 14.00402620830166 -2.971121098652886 -15.392748608375 0.622345216007364 -15.2601827431418 0.5979448910657257 -15.38999841171203 0.5670984671098608 -14.4588684489278 -0.8390295158392098 -14.30867123185037 -0.9005837405983335 -14.46132517207005 -0.9106927418999509 -5.374207199175368 -5.971311963748499 -5.537306155160665 -5.931902966958463 -5.533922672640889 -5.870498019420938 -1.988530112486937 2.800941416648781 -2.166523748886377 2.840634739882751 -2.163785971806951 2.901642838078809 8.643917851519563 -8.821016866257615 8.831587244531447 -8.749631988710847 8.849748430824649 -8.794339705558432 3.775534105004804 -1.855066509655424 3.573783730859172 -1.822632506277318 3.776182604672942 -1.783379904182509 -4.4923226799024 9.437572616977786 -4.670782757033908 9.391489061721853 -4.518454541149218 9.474070289086502 -14.3024413167885 -0.8233352346474084 -14.30482208302895 -0.8950027496079376 -14.45502069562761 -0.8334506321733186 -12.85472972588699 -6.175066999908178 -12.8098106925636 -6.224758381265309 -12.98629346718917 -6.200865466139687 14.73494332966793 1.028743831863404 14.71629693507362 1.089567604721711 14.85843091705435 1.014664459358783 14.1723083452901 -2.973089852186121 14.03768551094517 -2.960251355937999 14.05783144772774 -2.892068610091184 -15.19932092100185 1.047629495626219 -15.21580165720414 0.9894633255018345 -15.34742777455008 1.016831532506449 -5.197981117640374 -5.809726276629004 -5.215298583282429 -5.869300439143449 -5.375615878652425 -5.76907938226833 -1.917213544852838 2.947798844589214 -1.905712399589655 2.885196999548293 -2.080709377232819 2.98617664801779 8.520876204190078 -8.729982172960378 8.481503486680115 -8.691956648755397 8.687691766703162 -8.667047494731419 3.779257159929721 -1.840790660751815 3.576861791884026 -1.880047587682836 3.577506404881137 -1.808358123663641 -5.217968868846683 9.496922238237728 -5.22598152734065 9.54269679527966 -5.049712554877388 9.593732958602146 -15.25715993617085 -0.7093137958446033 -15.1218745344357 -0.765088899467119 -15.26025847474393 -0.780964328650635 -14.5457590702421 -3.373773767576465 -14.67521912264848 -3.415366427660079 -14.70189853230447 -3.358117846243254 15.00492688086299 -1.943486452059057 14.88502920112298 -1.861237469285582 15.00644741962897 -1.880930354359693 15.19674240769201 -0.7715770911606594 15.30733985482653 -0.7911160391785539 15.30381319855652 -0.8610614001310909 -12.99017871459692 -6.234651253573509 -12.85129754989019 -6.242134299949896 -12.95959706664945 -6.289173031184649 -2.014586834729775 -6.503057366206366 -2.166003827257392 -6.465672102492812 -2.155547347258185 -6.405116295515027 1.796212019854677 3.106563191014459 1.630678838042845 3.144198271721106 1.626316367433371 3.207357373684283 5.796361977965246 -10.00543536587145 5.968990243056901 -9.936157725172993 6.000150709759714 -9.978635926580598 0.1514986527103879 -1.862095212027491 -0.03535474237399749 -1.826921148443765 0.1528658834350749 -1.790412023070404 -8.314737258932498 8.226237266172515 -8.47266850851215 8.18856861165855 -8.334840412261075 8.269653205146332 -13.07489064427592 -6.19457557832093 -12.95162202328517 -6.142618523725045 -12.93611139342808 -6.203149241443309 -15.11859509679825 -0.6931342189566541 -15.1216870276227 -0.7647820226372734 -15.25697229439602 -0.7090067164322275 -14.53336609872923 -3.422271608821417 -14.49051978775418 -3.47570644070986 -14.64687964830532 -3.461476706126069 14.82567338550247 -2.097881847050104 14.8173737537505 -2.034935585596903 14.93601168846332 -2.118307368852685 15.18625866078246 -0.7719796506945544 15.199840950447 -0.7019953478108855 15.30758953989376 -0.7909747564258224 -1.801059893950435 -6.323064514248448 -1.824456373817766 -6.382009587943262 -1.966107878298611 -6.284687423161257 1.822905289219322 3.211133598263874 1.840849532602253 3.146589528990847 1.671102997744626 3.247539069042812 5.653633162096018 -9.872337703629999 5.603161799860567 -9.835990410277086 5.807335604134617 -9.811070689404623 0.1501522542310374 -1.866498598895359 -0.03799787489346174 -1.903021079445384 -0.0367010079183816 -1.831324098296655 -8.888052569374295 8.149396088940296 -8.891956303007284 8.202055652112406 -8.73560339515349 8.243599652374339 -6.734757200207879 -10.13158124426027 -6.786810424791438 -10.0853636447483 -6.630836250612633 -10.07686599618939 -12.90032347595902 -0.7375519869836984 -12.76594756049218 -0.7871777496406589 -12.90354877816133 -0.8091961519397558 -15.04000533744187 -0.04422049426156183 -15.15826294837974 -0.103902757760789 -15.18009653649932 -0.04310511607338362 11.35871067781245 -4.864247016418996 11.47912188366892 -4.890542169573061 11.46497796310752 -4.952840324507377 13.7737197656346 1.887620605516973 13.88537453493573 1.862224531672379 13.89153042877192 1.791595110932155 2.254970883154677 -6.969718485585292 2.123484856448834 -6.935823256259782 2.137671355224413 -6.875088360074381 6.176292604536211 3.220335926862572 6.168644844224049 3.286131117514658 6.319551235286469 3.18664471334399 2.338569341515941 -10.96875920256962 2.48467897294826 -10.90228239941794 2.525754110047421 -10.94533411803951 -4.36374508062362 -1.824014600507707 -4.525448236964102 -1.784163898616591 -4.361628024967446 -1.752329704582327 -12.0773402268204 5.717787667271676 -12.21582724347558 5.693083986530518 -12.09955626588875 5.767557418050034 13.699196658961 1.836197871744953 13.70150222958474 1.906335181932238 13.82002373716389 1.81085255218158 -6.659017248096523 -10.29176504508441 -6.54275154793371 -10.2298238795108 -6.503143052749836 -10.28219924616156 -12.76355487385812 -0.7170562103522096 -12.76686336531682 -0.7887048109075213 -12.90123924015139 -0.7390789801632326 -15.04027039555182 -0.08201633616855049 -15.18036279514886 -0.08099854106763202 -15.07608817524493 -0.02682146148611495 11.16343325267279 -5.110812322807307 11.16962134544968 -5.04778422020852 11.2746950283071 -5.137254227136583 2.479947814789417 -6.78768472392369 2.454683453377362 -6.847097676410452 2.336615807329974 -6.753060556629261 6.546318104919582 3.332962703623065 6.39633679267543 3.433311080656806 6.528130475113284 3.400163524589315 2.158031868041338 -10.79059507243512 2.100486390351387 -10.75390636746618 2.288066920349387 -10.73253000148005 -4.361135472234766 -1.817507720166309 -4.525005787395 -1.849321940656075 -4.522838881563322 -1.777657653559122 -12.42246536425111 5.574860662951603 -12.4311184891748 5.633162187880132 -12.29339096053061 5.660366857367359 10.31173358783231 3.50709248904955 10.17881589043358 3.60625674687827 10.29695217407422 3.576282953728724 -1.315416691197011 -10.79405863836673 -1.374337776385144 -10.75449092636993 -1.201969068289128 -10.73720172662046 -8.481193369883467 -0.8751223845929151 -8.336821967247346 -0.9192253626530433 -8.484012455104642 -0.9467839349403823 -14.29623749013184 3.174026487722697 -14.31160178725745 3.234807344575829 -14.17862669986153 3.249456603355931 6.312768613149061 -6.033170990114492 6.441202120565928 -6.06430763406615 6.41815344580539 -6.124867381581647 7.059204423391727 -6.845404529037356 7.071801472411372 -6.783544217443566 7.174380981158103 -6.875418737800071 10.86864558100718 2.557520800342852 10.86488997675479 2.626164294471276 10.99470294054498 2.528049588216512 -2.067904797447985 -11.34575704088415 -1.944399097054143 -11.28176731101638 -1.89956631691054 -11.32815146224457 -9.252018368845103 -1.631406599386494 -9.254912747886399 -1.703054987305118 -9.395906475482695 -1.657944437544572 -14.4220460078759 2.344050150627878 -14.55481375449636 2.333781744114034 -14.4517769179506 2.397886861496136 6.091306337619217 -6.23692650976307 6.104642226818945 -6.175365311416068 6.209104584785072 -6.267712608749928 10.04282464961628 3.491584414518825 10.03800841644141 3.559758750590508 10.17168528753373 3.461228039013754 -1.161335543843414 -10.98767214523509 -1.034080322934476 -10.923288414836 -0.9892597495409061 -10.9686628522587 -8.348341047491088 -0.8770647973560771 -8.351571782623044 -0.9488765447003323 -8.495941761685025 -0.9047706828842368 -14.11620357020578 3.305071567235766 -14.24939016562188 3.291664004809009 -14.14504819138272 3.35829672682938 7.295198867324528 -6.630406365574164 7.420801329581828 -6.660681882982992 7.398814955555755 -6.721558199560822 11.12722622557944 2.565077100319093 10.99819483546227 2.66382775340968 11.11372318529046 2.634662239243968 -2.215362712886396 -11.18898920189834 -2.273803416850611 -11.14845037543133 -2.105199998459768 -11.13249064539562 -9.400683733517589 -1.667103217278151 -9.259690412177539 -1.712214552814792 -9.403677260691087 -1.738753439439918 -14.46394955626414 2.334853141709241 -14.57968553762004 2.262552572961713 -14.59658506697729 2.323576660065004 1.664909050401073 -6.00287967448304 1.639810231743594 -6.062124915849631 1.518241520028672 -5.967574587586071 5.680749861989676 4.153278402492804 5.699075827912392 4.086538148343667 5.545804644659049 4.187029601467367 2.808683367924022 -10.21255111475623 2.752195448522044 -10.17611809853025 2.942762782744754 -10.15392209196817 -3.492640684670395 -1.074779166979151 -3.660239649909997 -1.107473712169657 -3.657906653401866 -1.035640446571466 -11.88719037842142 6.390256998960516 -11.89541003141921 6.447754763479655 -11.75558830247717 6.477812762338425 12.23970291299248 -5.252266091517727 12.24282244601419 -5.189028021922632 12.34638557172039 -5.277401643836491 14.32855323949037 0.5444034476031647 14.33388255372585 0.6146697311122106 14.44531795795558 0.5204663205295975 -7.980199888351235 -10.11020522779608 -7.868073156196106 -10.04971666947909 -7.831929224133348 -10.10401673704069 -13.57690584280221 -1.510820735296349 -13.58031336687795 -1.582459512425287 -13.71032858905868 -1.531463769870081 -15.04642135590798 -1.316902416474452 -15.1878365627712 -1.312660695730625 -15.08532463342212 -1.262459068704902 -11.4759982641116 6.572011793410874 -11.6168172755977 6.544988057900756 -11.49738923334903 6.620698187983049 1.45140852786679 -6.181979751141961 1.316770463478165 -6.147477783180293 1.330551672587845 -6.086866345556572 5.525600011172712 3.971522314587363 5.378597415444673 4.006010372832305 5.371647709543538 4.071367372098957 2.968228157289516 -10.4058531221681 3.118770321804135 -10.33931686132888 3.158423717625352 -10.3817644338619 -3.472173205788623 -1.021564694130258 -3.637441362597286 -0.9824316918726268 -3.470119640786549 -0.9498997117940674 12.53023645191604 -5.084142610880516 12.42535699351473 -4.996734953078781 12.54189966260554 -5.02159830274504 14.39810257368164 0.5799431559813545 14.50517670957938 0.5558597482654902 14.50871283840981 0.4851398521851166 -8.013999791690987 -10.01844589470611 -8.062800112241703 -9.970256554226488 -7.914485185262691 -9.964763520878357 -13.71087837139632 -1.532328790528421 -13.58086316046755 -1.583324550836557 -13.71426209255166 -1.603981776548217 -15.05037840738909 -1.226578990515357 -15.16681030518107 -1.281835479256376 -15.19177177565791 -1.2219084160444 -8.470635071338313 8.644904192249507 -8.4759865869722 8.696244322386692 -8.319100610767672 8.73832069133981 -2.243567775053115 -5.534437018777564 -2.265612748196491 -5.59351774178789 -2.407280185898068 -5.496019744451218 1.423017545236261 3.996610332534203 1.439128645182978 3.93226132612275 1.272451799671924 4.033070483120869 6.056441916562583 -9.245974554115962 6.008094240639307 -9.2095285003263 6.208852809025908 -9.185260745575722 0.7209137041357927 -1.052779723797565 0.5345741419856875 -1.088858802466984 0.5358504636167444 -1.01718264642783 15.13340875538687 -2.055935007560684 15.12286934474708 -1.99326738068815 15.24485440192698 -2.075077148352889 15.14364034921273 -2.006947537996704 15.15885183476341 -1.937191908242164 15.26524688620531 -2.024711924237654 -13.98718542760739 -5.20840903344175 -13.86223355265702 -5.159751625865233 -13.85305440939914 -5.22093847933876 -15.19521549496234 -1.524609962244749 -15.19832625412269 -1.596270603183512 -15.33343446079239 -1.539369530202913 -14.25334663286684 -4.434348362253204 -14.20870979211273 -4.486729888709538 -14.36811022770849 -4.470469855010923 0.6717876511060339 -1.210241033241309 0.4867304553226759 -1.174624513960274 0.6735330642507476 -1.137987546591831 -7.870121931303062 8.73528334268237 -8.028669490989495 8.697256081430792 -7.891460751344259 8.77732786333994 -2.431790925661322 -5.701972905379759 -2.582006237078138 -5.664628946943076 -2.572853748577511 -5.603933900151874 1.3207502921861 3.829641580458917 1.156729268659698 3.867226762583225 1.15368059518012 3.930047495072411 6.186704679573904 -9.400783869411178 6.358339432172872 -9.333261558329864 6.387114112661168 -9.37479155409129 15.27570717202477 -1.945184662738022 15.15263594605823 -1.864387888536923 15.27401287760544 -1.882781561923195 15.14069067588906 -2.007565626224175 15.25235058852127 -2.025918782392416 15.24645489701924 -2.095557541616274 -13.89084970786029 -5.359687197478832 -13.75650550368552 -5.370712956410681 -13.86627156168164 -5.415556421484648 -15.33351657482098 -1.539429627282991 -15.19840866140417 -1.596331131169983 -15.33656569668673 -1.611076742562799 -14.28798423533527 -4.346857445713898 -14.4187579133071 -4.385031019497837 -14.44708662125225 -4.328881478679093 4.06716540719898 -1.185981328109016 3.868482075767634 -1.225512234170905 3.869251462265488 -1.153248236953836 -4.888211006974514 9.882382813561552 -4.898432150802738 9.926934781065773 -4.723281330374546 9.97759662542976 -5.52047463344559 -5.022925867041916 -5.536327267936244 -5.082760712744136 -5.694496098422492 -4.982558361088136 -2.198297000100457 3.709198997411894 -2.188541427903398 3.646802682913805 -2.358294975241326 3.747327736722881 8.821063622737404 -8.081068075667204 8.784409520340009 -8.043575398071795 8.984361385125315 -8.018889786579749 14.50328753911145 0.6198714515705496 14.48379981290011 0.6803768562943656 14.62913832682236 0.6065470026754626 13.91378675787656 -3.914028269540955 13.77657450752753 -3.901922352934037 13.79706136945947 -3.83401556996461 -15.05188590832647 1.648192432218593 -15.07145081059646 1.591110733002987 -15.20388890121259 1.620255215971475 -14.05456930404416 -1.737151735978362 -14.20793252154091 -1.674906213234118 -14.0522841221067 -1.66548702378833 -12.59906707432638 -6.847253726117345 -12.55453595350723 -6.896469800282259 -12.73363713770755 -6.871573667032815 8.961147970339669 -8.208885376303655 9.144588694193473 -8.137002183023883 9.160705660750132 -8.182299048462921 4.110749473134306 -1.023114863124318 3.912830110979244 -0.9904020482335455 4.111315907697413 -0.9514279860394631 -4.135678877851921 9.832357946580549 -4.313095418995537 9.786835669990019 -4.163550975226692 9.8676486638513 -5.688966563965556 -5.18195939005831 -5.848570381780682 -5.142821701154065 -5.84655112813323 -5.081188966712225 -2.320973174555494 3.517651151840107 -2.495354982347812 3.557019847334828 -2.491139280843386 3.617743617189456 14.56362394861421 0.6048563275228138 14.41769415905964 0.6779608416638659 14.55488592818863 0.6656911428215733 13.86099265336756 -3.930069096200835 13.85139004525763 -3.997399602647113 13.73509923301644 -3.916996254970738 -15.28854170594447 1.170204696329194 -15.1550692296586 1.144143514501218 -15.28831152002339 1.115665407106844 -14.05277218581297 -1.734523830673545 -14.2084088069347 -1.743942643476776 -14.2061360192512 -1.672279247086287 -12.74803913342135 -6.767554554422609 -12.90118928352313 -6.791348088152562 -12.92646166011155 -6.739806194378869 11.36690190646553 -6.647527372246057 11.34144570473119 -6.604965270711 11.53040684884705 -6.583774012560459 7.200505955828413 -0.9561201650644831 7.00083248135697 -0.9956291300117207 7.00071058884438 -0.9239409321923124 -1.48376548765514 10.41695309290832 -1.504011298276328 10.45532660564309 -1.316359851679797 10.51125927448329 -8.458278291165097 -4.502450701648305 -8.466784136497342 -4.563739723461231 -8.633311313184528 -4.461581020673512 -5.396144750553114 3.431986664955927 -5.394796595711615 3.371181651578052 -5.557079283541865 3.47044449800649 12.30228252097801 1.853547167638241 12.15929059488958 1.862508253046925 12.13908107718586 1.921629941830395 11.67023320637652 -5.003696625825226 11.51444395905367 -4.995988122235938 11.53443058290623 -4.930084753450449 -12.52143663078368 5.848099787347497 -12.55033458989957 5.798523837649225 -12.6973144625812 5.835657809152892 -11.71952687381128 -1.875594575882811 -11.89451678575479 -1.809075920531037 -11.71807569661854 -1.803917970014758 -10.55748009038494 -8.648509015496126 -10.51872443196023 -8.694577588606746 -10.712234833642 -8.664198102426601 -5.494480884714587 3.270060272424678 -5.669810831391525 3.309871727709525 -5.657082681780952 3.368999419505344 11.64054566850829 -6.665546296495399 11.45184500349444 -6.688128302873198 11.63628949028472 -6.616148932217691 7.200773576465188 -0.9550911522696632 7.000978179440799 -0.9229120348217619 7.200661719200683 -0.8834019212933418 -0.8557032800262521 10.18544707034978 -0.7038769885142304 10.26522472303308 -0.6654328843450219 10.23560638817811 -8.585650432987862 -4.632918670687328 -8.746147254760503 -4.593345034377506 -8.751657674730073 -4.53023762838618 12.20098273480808 1.828676920348126 12.20881383689702 1.76879176762304 12.04525236393834 1.836337757097865 11.60436469461252 -5.027910017287828 11.59688794168835 -5.092868710359014 11.46137496749322 -5.01892724370697 -12.97791497108754 5.346344886082515 -12.82965266395783 5.312512659637982 -12.98453843034841 5.297244266613708 -11.72442179487352 -1.883353288694198 -11.90088738895885 -1.888515046128052 -11.89941035243757 -1.816832428474763 -10.81498723580677 -8.613250355299023 -10.99077027464823 -8.626290330607958 -11.00751561178837 -8.57922805217251 -8.363370177573202 3.209764761182695 -8.370518692955651 3.150059513646359 -8.516294869167938 3.24731803677458 13.54984369799262 -4.673283195787599 13.53357639757153 -4.625454875229106 13.70379800090644 -4.609601351086891 10.07042243125469 -0.8539061542767 9.880345559514062 -0.8920967104598228 9.879525033618439 -0.820410331446248 1.62510891954094 10.52198621117121 1.592158870104572 10.55545236423388 1.782215518531985 10.61436410476008 -11.1383843700576 -3.862503535124068 -11.14009275490697 -3.925745369285175 -11.30644976216742 -3.82245429486432 9.610698755017879 2.324128626611853 9.454314006308366 2.330460342617318 9.438822933347161 2.389415212654336 9.138189625836027 -5.667971408323222 8.967920267342286 -5.662998617348173 8.983367912163319 -5.598916235509707 -9.474567731779072 7.714074474025448 -9.498796101957419 7.668525057284711 -9.667458621774603 7.709169115461408 -9.12225308190161 -1.985088050414322 -9.314545110333521 -1.915803486623646 -9.1215549819467 -1.913398119617542 -8.252482998522213 -10.05290980644982 -8.223840858571558 -10.09627688123912 -8.42244222018326 -10.06348162384995 -11.31534736621555 -3.995255402590071 -11.46775127464653 -3.956414046289486 -11.48071270841528 -3.890983548506818 -8.482272016717845 3.03624833154522 -8.649085052330486 3.075014986184076 -8.6284556788702 3.133127620812227 13.76422730937204 -4.623939959236497 13.59416614473529 -4.640825448444363 13.76784949605838 -4.569069750105899 10.06827309870125 -0.8615138757246704 9.877375987311938 -0.8280170433511696 10.06741505966949 -0.7898225502878942 2.271091111122606 10.19415728256979 2.415547241900588 10.27270678874986 2.464042862563142 10.24692458560141 9.516144212168694 2.267401103193738 9.517880949694792 2.20739729690558 9.345768114827873 2.272296326341851 9.081467940191283 -5.680520818604156 9.079743160518373 -5.74337669194364 8.925089831557182 -5.674088414348618 -9.999645313485154 7.231183005294846 -9.829826442748519 7.193636744127632 -9.999868683763399 7.185118553115247 -9.114182815227821 -1.97148860377096 -9.307150193477899 -1.97389654884978 -9.306476851172564 -1.902207488063143 -8.630990068009346 -10.06176448221344 -8.823835164775778 -10.06812178340205 -8.828329729776671 -10.02455321979924 -13.67913772765909 -2.830732235713698 -13.67620375353141 -2.896912202496391 -13.82756469838497 -2.79322083223679 -11.22018086992831 2.856925971685839 -11.2342283920958 2.797610524902253 -11.35813618163683 2.89236313765833 15.03100622608839 -1.874348120142226 15.01792263639419 -1.820376597597022 15.16755491902891 -1.812614555517476 12.75540716373067 -0.722061087033223 12.58348775044281 -0.7571908692744412 12.58183996094098 -0.6855080856889833 4.593107677932338 10.30936002238464 4.549295242453063 10.33989272295918 4.728905366402535 10.39947039205032 6.86437988100155 2.576715238344686 6.701963726339264 2.582108810617294 6.694257525682739 2.641821229414982 6.464443656817044 -6.155975670679551 6.287609383275505 -6.151972402283105 6.296153931751871 -6.089462240014575 -6.624329938761893 8.533852976676048 -6.637024964110001 8.488883771763653 -6.824617810505893 8.531261956100318 -6.412913257535382 -2.028994667122009 -6.613237327159497 -1.958716974691471 -6.412932323392018 -1.957303651022975 -5.564796265154871 -11.20928993583405 -5.548481739430882 -11.2510751859131 -5.741322112603968 -11.21855896244657 5.285980257911756 9.885425521455808 5.408525380227643 9.961235953025645 5.46892365966894 9.938355950589768 -13.68861087468348 -2.895965864588496 -13.82611810332989 -2.859466867849621 -13.83985812534827 -2.792171878820953 -11.34394159639785 2.682014419338178 -11.49446421434188 2.718463431486958 -11.46837421416415 2.77634044904586 15.17886102922789 -1.780273744198264 15.02927206240236 -1.788536319257916 15.18364533126544 -1.719419776198815 12.75616741611904 -0.7198058476779921 12.5826000790097 -0.6832532410347322 12.75455664469998 -0.6481341883792637 6.770193910642797 2.501024411470213 6.763677408283213 2.440163708222017 6.593344899047678 2.504928768543371 6.385529568956861 -6.193711685260926 6.391231729310915 -6.254972883322657 6.223120918041034 -6.188180049412851 -6.974196216236797 8.011890177976609 -7.150925354044279 8.005642783670245 -7.162813575669994 8.051353932162774 -6.422055038869972 -2.044896213624786 -6.622361966138952 -2.046306678514491 -6.622377027394011 -1.974614850260854 -6.253650066278304 -11.22056751519366 -6.062263918488467 -11.25802529588886 -6.262508268761745 -11.26215229661669 7.513916830360159 9.72123158712567 7.458013714381293 9.750335238784267 7.620806111622718 9.81007834498349 -15.21964334306914 -1.09160733074058 -15.21919948515193 -1.15976394569319 -15.35085128702435 -1.057959199088146 -13.87362288763363 1.984717882657217 -13.89034023929204 1.924734211091876 -13.99402307564132 2.017171873273404 15.04117433231818 1.748074132194734 15.02322458630363 1.807386718592298 15.15896140115512 1.804507780168513 14.77524643293838 -0.5853351005877594 14.772800797184 -0.5136780632559065 14.92571529340754 -0.5547072117568329 3.957606332108966 2.83533138147553 3.798161777436263 2.841460443145659 3.799120541649846 2.902532003201392 3.460215097748287 -6.648919328840286 3.286584870039757 -6.644062066923818 3.287729873234553 -6.582643465810596 -3.819952452174871 8.967394774177265 -3.818940041003984 8.920743558057652 -4.016616734605686 8.963394518664789 -3.489630955023968 -2.067264227870786 -3.687017207569616 -1.997859193192548 -3.490353126799364 -1.995574649607955 -2.125700125496511 -12.08008876906986 -2.120851924270657 -12.12208052308349 -2.298630670592987 -12.09306581863448 14.7737117026577 -0.5115215291784254 14.92425910433497 -0.4808877431247166 14.92662648540108 -0.552550016839421 8.235012263289915 9.201105114714387 8.334588440880115 9.276270458577551 8.401724041571454 9.253736194734419 -15.3809503155502 -0.9698529961301408 -15.25040872914482 -1.072538664922959 -15.37052569047138 -1.039441569411177 -13.95736534591686 1.833092083563621 -14.08868650215465 1.866233477321516 -14.06161493235339 1.92513442828187 15.16507765433981 1.84401817109066 15.02934734144551 1.847080945772513 15.16293327162573 1.909577711965771 3.871236082310781 2.768665029093724 3.85630959598321 2.706453044020234 3.697623056409553 2.77335984828569 3.349704516748484 -6.715464184840033 3.362529299714675 -6.775760291148055 3.190273839510919 -6.709115650438946 -4.155033858878427 8.448921081676424 -4.328533583974478 8.441735854343834 -4.353642099815962 8.488804072474393 -3.485637398004029 -2.060304498802561 -3.682345850184142 -2.062595680507013 -3.683024476784764 -1.990900918298791 -2.912226226946173 -12.14534104418116 -2.735951280373921 -12.17956591608216 -2.93237727880698 -12.18751169687754 15.32642256920814 -0.4529784236961152 15.32336384663095 -0.381332349075401 15.46089721245567 -0.4278352766187118 10.66207884899531 8.359119199736881 10.60098055921635 8.390534083262866 10.74026162154941 8.448735495364145 -14.81614436279424 1.417786763070192 -14.823481310544 1.347954763228634 -14.93323669119492 1.446257300034038 -15.44149158927127 -0.07843705736199619 -15.45376981890738 -0.1403205013379318 -15.54832766366031 -0.04975319962293469 13.04342002502042 5.471336640111971 12.93646028603084 5.424291167461346 12.90739958342876 5.485758799795015 0.716734852179709 3.183894949414568 0.5684321441059681 3.19238717322917 0.5772339097696888 3.255317826162595 -0.1556113242363211 -7.155411565930625 -0.3170690253238262 -7.147820651525132 -0.3217991399659581 -7.08679968057369 -0.8716758939431559 9.222402129449115 -0.8576590624700666 9.172562641007175 -1.054376218940464 9.213865326005751 -0.08948956196540125 -2.042294078972125 -0.2740167402925264 -1.975560034632549 -0.09089188420519756 -1.970605816580733 2.781256619513769 -12.20010871020101 2.780613237752307 -12.24515755909033 2.620953700489571 -12.22518160989242 13.13016875913633 5.521573135898037 12.99431564021332 5.536940318496004 13.11620829705866 5.588207545858619 15.32281262371217 -0.3823081009483379 15.4572287773026 -0.3571546060051217 15.46034616490789 -0.4288107075184278 11.40040280313041 7.647811427896074 11.47611460908563 7.723626467739777 11.54452980099268 7.698185007554085 -14.85170577152109 1.596419089464066 -14.74308939734469 1.497336740041453 -14.85009827648429 1.525619159912114 -15.55812841004475 -0.1593977067057546 -15.46260912208212 -0.249338483483126 -15.57951611159096 -0.2204386992599556 0.6905313929261625 3.194079257510125 0.6669604822531472 3.130055013808108 0.5273520439309054 3.20134779086433 -0.2760451676851355 -7.207237208447981 -0.2583847701539371 -7.267351366760307 -0.4243102481488764 -7.198347684540153 -1.185949144975148 8.737591677157642 -1.347094718530441 8.726640169936541 -1.383515371215881 8.776305223823076 -0.08628757273866805 -2.0368449279987 -0.2692022409131012 -2.041782536874973 -0.2708153170317462 -1.970111852134346 2.104603819983416 -12.3555746399003 2.263368095380636 -12.37956326639033 2.08230281117703 -12.40167038066848 9.32386341854952 8.060760162181634 9.213393011722527 8.025333388192625 9.173726796444461 8.085225447582499 12.7899050949888 -0.4858003816846102 12.78665253242415 -0.4141479984494593 12.9221740432598 -0.4665980185557766 14.06694860356962 5.079879634166077 14.18890743457071 5.132551667297761 14.12335059514188 5.040190888040765 -11.63926400797328 3.650124832804263 -11.65672370358244 3.580658438034242 -11.7551336973387 3.672266359464239 -14.040961428408 -3.377372004499843 -14.04116932659438 -3.440689114165275 -14.14658836200364 -3.353706454584627 -3.216169742629988 3.668627800080283 -3.3470595416947 3.680993521193265 -3.331949865724662 3.746580430014112 -4.722760749898429 -7.388507798890246 -4.866157188968598 -7.376439344943446 -4.872637093404352 -7.314951635262013 2.441276897947144 9.256388152744684 2.464733173086069 9.202101817825563 2.27956816312952 9.240210616354544 4.099497544879366 -1.954398815108549 3.934707466174498 -1.891859439378896 4.097124746122517 -1.882741204964311 10.28679665333218 -9.55111078985407 10.29915308041363 -9.599464738469202 10.15833528027843 -9.600033511569006 -14.0313523227092 -3.403712108547272 -13.92487940393833 -3.489896731787537 -14.04042334903859 -3.466542244982329 9.501306724047314 8.245615096325874 9.525237369861188 8.182033322622552 9.375538847682615 8.20810706816202 12.78717640985949 -0.4133075106291555 12.91941349600125 -0.3941083830843282 12.92269794106268 -0.4657574981681045 14.61143798405062 4.032658570032269 14.6779568813945 4.110507649492734 14.7387808575135 4.076745966450638 -11.48897290523528 3.739193253582524 -11.59505371846435 3.76156720255288 -11.58645548537 3.831412768158509 -3.380388628368072 3.567464747418849 -3.406076138657888 3.501446721888508 -3.522365915904623 3.578928451648824 -4.998245329300623 -7.510543101540707 -4.979964728764355 -7.572001250257447 -5.129014831207162 -7.497413351163496 2.149604211795809 8.835494032108198 2.007084013457891 8.818153680452083 1.963670867818541 8.871212808150418 4.094262821413906 -1.96292694577729 3.931665525536867 -1.972058371449767 3.929473477427657 -1.900386371997663 10.17829312647092 -9.599948352422073 10.31910956347468 -9.599199299688607 10.17280112872961 -9.655420190083264 -9.316254472666486 -5.826996924206522 -9.303863301060044 -5.889475149735193 -9.433707180697631 -5.80933284990105 5.219623450817705 9.271351503613806 5.093723253759006 9.246834998724584 5.049052572595961 9.303068030101867 7.951559087364776 -0.6412194389881604 7.948777815341384 -0.5695571443647469 8.09707311484344 -0.6278226057603324 15.35532066057611 -2.511140629279202 15.48218857265067 -2.479001703325898 15.38463234973965 -2.564970037713789 -6.966465094775876 4.581442424054657 -6.99050492619986 4.513866426770374 -7.094633884341501 4.597278060518924 -7.521451032176511 3.61066541576182 -7.635989640963516 3.628250566156945 -7.621197049279221 3.69630427333927 -10.3088504494802 -6.555562620562625 -10.18258930748457 -6.636844638860417 -10.30749043520318 -6.618671772527335 6.233712437734143 8.765770130190903 6.260513104295848 8.706296548122296 6.094369139830206 8.738955245922327 8.92706038664681 -1.760091042702666 9.069393317287368 -1.745678052257445 9.072323760267077 -1.817333720387403 15.54416015800116 -1.990399084550134 15.62904909723136 -1.915963200604998 15.67174406748427 -1.960322227869128 -6.831802715722461 4.640728535202147 -6.949533199087423 4.657208571482958 -6.935394278696251 4.724553239287008 -9.248896727417073 -5.740835104840788 -9.118240815041684 -5.820156485058486 -9.246154449519535 -5.80328029413092 5.473604965021468 9.563889420974039 5.500411311278914 9.505396325850203 5.330494512391879 9.539215823102895 7.950652257154573 -0.5665908250678693 8.096150953942924 -0.55319775817413 8.09894775855579 -0.6248559684586534 15.1925319715638 -3.24759828445453 15.22952910220041 -3.29400364160618 15.10017600109296 -3.319279254873929 -7.891072055714634 3.352935866461872 -7.91519742493267 3.28520456318393 -8.016371012592039 3.36980073736547 -10.17500072316481 -6.570157493960294 -10.16290009309585 -6.632656708079453 -10.28925578316296 -6.55146566332026 5.986657426487017 8.446556385335573 5.86413100785422 8.420215038804495 5.819883106826831 8.47716229727919 8.929776208138149 -1.832160737986664 8.926791529790229 -1.760514515210639 9.072054877428942 -1.81775723369749 15.66701376799944 -0.9783002777776192 15.79123625943135 -0.9405057848538351 15.70346864538021 -1.029823427723467 -2.500719695981619 4.524530029441979 -2.525549445241953 4.459127513282915 -2.647642639313123 4.535068605183699 -3.942146411050595 -6.372980874360702 -3.923832572463375 -6.433779698820954 -4.076910955167456 -6.360771495474762 1.483904184527199 9.561395124151474 1.337785115612684 9.545407266760183 1.295200518390034 9.597789414202421 3.242483397986038 -0.7579559943692092 3.075968938795046 -0.7662279051947981 3.073933304126496 -0.6945538136319028 8.512417092495033 -10.32298658489478 8.656098880124437 -10.32843392218386 8.501133126462786 -10.3770395928027 -12.31062969116331 2.334741279894416 -12.41689114865545 2.358221775631326 -12.40896750067222 2.428285060972218 -14.63816060915118 -3.821195179458037 -14.53399144552333 -3.908335185089237 -14.64863904940625 -3.883875467538479 10.26236423114046 7.249296450689785 10.28489374037232 7.18494974073067 10.13842943789895 7.209296925869164 13.52355896499183 -1.613716376376942 13.6550723100157 -1.593432064768807 13.65844209470788 -1.665067718158606 14.09991308392805 4.639490861823022 14.16599736601803 4.717026136492397 14.22915355038108 4.685266630352737 8.788488237088608 -10.12798354720368 8.796052426932297 -10.17689648932067 8.652306382496375 -10.17262519852349 -2.371567143150093 4.596700363725082 -2.50642734926275 4.608237572051789 -2.493275855896436 4.673022432840953 -3.78430044007796 -6.313732194052271 -3.931145281618049 -6.302595333248764 -3.937799912987282 -6.241273192978645 1.782809933308843 9.953007340646517 1.804905009737884 9.899599284133563 1.616993544966533 9.938447446195459 3.241532559973215 -0.7595219686982793 3.072982608619848 -0.6961195535170441 3.239480465872795 -0.6878514820594498 -12.42530916149478 2.265179665518415 -12.44105980679314 2.19549507720607 -12.54021032369249 2.288506443755372 -14.62358486451729 -3.77115335474277 -14.62627040961729 -3.83434831924801 -14.72939450703828 -3.746442437418204 10.1023471662799 7.040222923220669 9.993554517886814 7.00270132489752 9.95549217949794 7.063067370997599 13.52458410251526 -1.689266327031849 13.52115506067016 -1.617627667156174 13.65603815690644 -1.668979063359222 13.45461774792339 5.697184490404029 13.5783770586753 5.75153144860526 13.51294296292588 5.659525030692673 1.014690950843121 -12.11663124004425 1.17537518814207 -12.14350651064685 0.9907205511797523 -12.16215385674492 1.264075662050836 4.189519476131035 1.243388873257321 4.125964111825926 1.099817803985207 4.196189504428813 0.4673769886640489 -6.020335381620615 0.4844744476427143 -6.080392915198992 0.3166021828830345 -6.012037540659113 -1.761759282282831 9.43015781718068 -1.925728678680547 9.420099661138508 -1.960327547221517 9.469229370014885 -0.7688898965897573 -0.8230996335946782 -0.9549642682426174 -0.8274392837222506 -0.956250766282728 -0.7557577628853899 -15.19330405131315 0.05414267666623342 -15.08107427147584 -0.04583516753619212 -15.18980416421651 -0.0165813374473745 -15.38320571842679 -0.7923613784146872 -15.5019255284498 -0.7626306160302011 -15.47895006537258 -0.7020385691561549 13.68650503500174 4.299702224244425 13.55183587419863 4.312891019934559 13.67473921022667 4.36644752903264 15.45824821487032 -1.620570965753599 15.59464333798052 -1.594387962670079 15.59778762616587 -1.666034706694511 10.79189359370333 7.666814231405859 10.87122864400065 7.742473895766769 10.93987742447064 7.717835743724457 -0.7703004781157707 -0.8255210326760056 -0.9576610888682857 -0.7581787161325122 -0.7715732426255029 -0.7538313547661745 1.778286364410675 -11.90983560336739 1.77804551703557 -11.95403053058855 1.616207682952542 -11.93184872174972 1.365256330563085 4.257472221684335 1.214451253263434 4.265422351228076 1.221941527199604 4.328020805182042 0.5826742952321196 -5.962450017197482 0.4184446197114011 -5.955500000858146 0.4145570142747557 -5.894468312519247 -1.444124018428738 9.875071867116349 -1.432332061488176 9.825878705512288 -1.630036020735471 9.867574516725208 -15.13510898130446 -0.1277036663153544 -15.14062346132247 -0.197368529510042 -15.25401163859221 -0.09820285460529746 -15.34404912632395 -0.622495503643787 -15.35779210162691 -0.6839336990528583 -15.45270346636389 -0.5930684675220791 13.62122321793794 4.218213113484372 13.51332372741659 4.169209210486512 13.48643252066339 4.230609793324678 15.46110504780544 -1.692543462570089 15.45806501082362 -1.620894189637015 15.59760459557591 -1.666357601115251 10.05404981183326 8.378305574643399 9.993399696873748 8.408938045726183 10.13677166563572 8.467544628186102 -4.063059155156619 -0.8353382126857687 -4.261211129912291 -0.8373339753968095 -4.261764153119739 -0.7656386259025787 -3.624446300062396 -11.61153590791261 -3.444921050296364 -11.64661732670519 -3.64290359458888 -11.65327802917651 4.441627694957621 3.865253383168413 4.428151159980009 3.803278440298052 4.266677110372116 3.869693067444076 3.951991687691889 -5.499356229291178 3.963641345931631 -5.559773393117843 3.791340875873948 -5.493283642945681 -4.674848168727623 9.109147391339302 -4.849722149830364 9.102304693643468 -4.872440629189781 9.14906593688756 -15.24272907547402 -2.445600044142842 -15.10806528768003 -2.548614522745822 -15.23120451688002 -2.514808568212807 -13.55021063714692 0.9654728555716822 -13.68495011639433 0.9993002837953395 -13.65765443307141 1.057870411709243 15.34307555176697 0.5470788279153219 15.20563682778075 0.5478966789233634 15.34261026321523 0.6120203932839424 14.63172319940607 -1.807786190902387 14.4751871433517 -1.767668727123996 14.62942616252619 -1.736119794967284 7.672497759405001 8.912051791552361 7.776636352312886 8.987325316822584 7.842855491527995 8.964939803713735 -4.350251040182328 9.565284962967189 -4.351686406488788 9.519179403921218 -4.548369361415071 9.561786976237627 -4.061759511312889 -0.8330609254268785 -4.260464782402377 -0.7633618205088316 -4.062317450691976 -0.7613697078542134 -2.85712913743405 -11.49667385902394 -2.850489882871745 -11.53845650666469 -3.031519617077479 -11.50853971924043 4.518983317144437 3.916321147022446 4.358320612901633 3.92219580262794 4.357690149972163 3.983007222366772 4.039896511612485 -5.45444610526401 3.864903750589893 -5.449852076060785 3.867416205982026 -5.388245530184067 -15.06231066508583 -2.55915116799835 -15.0610756758975 -2.626864915420742 -15.19678432401783 -2.524702503740438 -13.44802876986035 1.137943687362982 -13.46467638624907 1.078157764219027 -13.57149530763278 1.171002601461354 15.22106312277357 0.4087908255897527 15.20453482142578 0.4672828092326593 15.3419740123088 0.4665150475427812 14.63140542723944 -1.80856336333294 14.47713890354123 -1.84010823406923 14.47486945548052 -1.768445696007263 6.950262782480033 9.471133391549175 6.89590785918227 9.500232862250732 7.062444701174898 9.56018068449082 -7.487394148298494 8.573694770096324 -7.663641339526092 8.567316253236985 -7.673160485047404 8.612823631910413 -6.915688696808561 -0.8039597986707788 -7.115474872245784 -0.8054259993671988 -7.115343671823422 -0.7337335125323977 -6.763434381684665 -10.56306221158506 -6.570229433382108 -10.6007149141518 -6.769909414946731 -10.60486080504658 7.279480984661992 3.597118155378024 7.274552072569445 3.5364284491978 7.103164125274994 3.601050046442265 6.887176528697962 -4.99912379211539 6.891461263893964 -5.060669803933004 6.725229310738888 -4.993549452926467 -13.31176386080408 -4.229857291475468 -13.45240909265846 -4.192865096968319 -13.46609882765458 -4.126006151954485 -10.83768232269496 1.66025454855169 -10.99153342130112 1.697217782699805 -10.96617884397112 1.755080016503789 15.05513414312248 -2.929458500129131 14.90307206307761 -2.939457938394155 15.05979524212977 -2.869651091769685 12.3030653004424 -1.969860042021035 12.12591299340717 -1.933973904364396 12.30161950399677 -1.898184292516542 4.723870251785264 9.449370326847333 4.852389123705911 9.525825311495995 4.911154425809104 9.502629712394876 6.975051470990898 -4.942803120829991 6.798692676394218 -4.938761747194716 6.808609952567694 -4.876004934764689 -7.126225316815738 9.058697131945015 -7.141298119213927 9.013805050529358 -7.325989980772993 9.055964245359856 -6.915260094854291 -0.8032137653438117 -7.114915169106806 -0.7329876538033533 -6.915174196420701 -0.731534154526603 -6.103271939598473 -10.49792485793571 -6.084663238990822 -10.53994582455564 -6.27927514707795 -10.50708158800265 7.362923206179658 3.650629986308441 7.200968422508658 3.65606659817725 7.191724514458215 3.715561292281329 -13.2030024352036 -4.164854434851944 -13.20153800437188 -4.229958686246682 -13.35674489267645 -4.126914834292836 -10.72570024469355 1.826637398278902 -10.73875068089943 1.767335768490501 -10.86680474638441 1.862530914501934 14.90143676085357 -3.047577023467554 14.88873976375032 -2.993960090809757 15.04085156516503 -2.984440143430873 12.32127594212159 -1.914098058540295 12.14701072847506 -1.949873121586343 12.14412101543217 -1.878219924701581 4.0291844670488 9.923808407340633 3.985430680084988 9.954490974167777 4.169405307455116 10.01446542940076 9.536794013608152 -4.462194694740108 9.533782355159215 -4.525390179938007 9.382409542147537 -4.455427051376391 -10.53225366042801 7.603431576150599 -10.36631590090824 7.56636959339067 -10.53419542589385 7.55702510536641 -9.594147782496624 -0.738051148323845 -9.784656798212625 -0.7408131756533698 -9.783857074494744 -0.6691362938423919 -9.039279083403454 -9.329099054071826 -9.229658116192191 -9.336367651976783 -9.236574194485234 -9.292203676274113 9.996664325993033 3.323876594503436 9.999758976611977 3.263988597419473 9.828455534869217 3.329133373186584 -10.81236405832315 -5.202405833090098 -10.96689267888937 -5.163493855529669 -10.97723055393982 -5.098889259997633 -7.945846669509219 1.942040842604744 -8.114837104515585 1.981077467667451 -8.095468309942346 2.039300499863573 13.44555377899035 -5.722845149186801 13.2718020442364 -5.741159222974686 13.44930044874594 -5.668385488500316 9.551212845833174 -2.067257292745881 9.356428823815445 -2.03415149923091 9.548965761671711 -1.99558984223392 1.717930116480462 9.657357346156919 1.862977772807285 9.735595855046842 1.911369143311934 9.709577235272551 10.08722773024519 3.363977652367786 9.932836300581196 3.370646339916129 9.916160148038228 3.429504855946295 9.611478999249615 -4.421325090709555 9.443316131774665 -4.415996288949406 9.4598720223863 -4.351676442092369 -10.01126119959499 8.041651574985904 -10.03692103013628 7.995640913818866 -10.20166097511033 8.035874096782276 -9.590491984643556 -0.7319188440720925 -9.780202193639365 -0.663005551772062 -9.589631784520996 -0.6602278110998927 -8.68402935360943 -9.267708074558898 -8.653250377112627 -9.311552877217336 -8.851763232578662 -9.278949345863072 -10.69708102558122 -5.095529890365388 -10.69993902961422 -5.15834467524064 -10.86539459455302 -5.055411373784887 -7.839671958561465 2.10803629031163 -7.845384988757957 2.048220673213373 -7.994654484578808 2.145814607986833 13.20713266403885 -5.808092499641509 13.18948164541695 -5.761266192426767 13.36344654298511 -5.744250423559999 9.541799474717381 -2.101472443337359 9.347741741054378 -2.140052743973339 9.347016585153993 -2.068362526728548 1.048068770617405 10.04590529425994 1.017395681624552 10.08021894117362 1.207892249537637 10.13875127834151 12.83767395401848 2.698986728442435 12.84552576966404 2.639001151082407 12.68547499766774 2.707896515781035 12.19007387417367 -3.690027264313976 12.18236616770497 -3.755371748820067 12.05114756150089 -3.679793077046705 -13.6847447484432 5.059584858768628 -13.53894561278187 5.027794348473811 -13.68975166940985 5.009495630370664 -12.32373667467696 -0.6168744855933682 -12.49746441137699 -0.6230815870010857 -12.49579470706584 -0.5513993937111484 -11.29345915585524 -7.712465629287292 -11.466261119214 -7.728197475164605 -11.484274482541 -7.680157671561071 -11.0488157510744 -7.699846840393462 -11.00794129425475 -7.746544249156349 -11.19970009642913 -7.717901053537395 12.9532236713963 2.710097356456946 12.81430096200746 2.720361768609917 12.79365822014097 2.779685891348705 12.24528567217559 -3.674476110397896 12.0931195139615 -3.665541122783011 12.11378937378306 -3.599196707333899 -13.24668300105622 5.552669176034209 -13.27498439793351 5.501533482188964 -13.41943499051357 5.536929260000039 -12.32821947329562 -0.6239970089056176 -12.50027623685066 -0.5585198536556275 -12.32650008363278 -0.5523110906066112 -13.36310661905929 -5.473252846037762 -13.51044144690146 -5.502397267310456 -13.53546961842194 -5.449228530517056 15.1263722205753 0.8592046569825994 14.98833714938398 0.9351449853558649 15.12049538521006 0.9205372104145613 14.43546145435956 -2.207325359050818 14.55616608435863 -2.222580144035128 14.54868152216749 -2.290633884856736 -15.40432062586234 -0.6540735496541649 -15.26903812716624 -0.6747706332014749 -15.39507862640394 -0.7093698073846665 -14.82851332735466 -0.395930172972622 -14.67983003546081 -0.4561951589922989 -14.8311649902656 -0.4675984998802772 -14.67669144842454 -0.3836741134547166 -14.67923753443616 -0.4553306183272226 -14.82792107333716 -0.3950660094364775 -13.25977947330466 -5.505259539099626 -13.21515893627361 -5.555856328325733 -13.38804138621756 -5.534265000376434 15.06592590381197 0.7949183730560385 15.04958965728272 0.8563438067854571 15.18653205457936 0.7791889501055175 14.44887420594791 -2.221098491344252 14.46757081307544 -2.152410636712895 14.58111664790307 -2.23544433269069 -15.27343877946977 -0.2580655324412888 -15.28399160635668 -0.3176916508017689 -15.41846274708106 -0.2939468882336187 -15.15489713583819 -0.2930545131389879 -15.02400035057708 -0.3480907070138636 -15.1580557308389 -0.3646959281434475 -14.64004338551176 -2.908526691681026 -14.76549146020981 -2.951906082740725 -14.79326258245243 -2.894331131751723 14.78447366758369 -1.983047770355964 14.6682838501449 -1.899810410831432 14.78675948373065 -1.920318165566193 15.18132268652138 -0.1860261308141984 15.28883659560063 -0.206227821846232 15.28524048915518 -0.2764157387729871 -12.27734432771938 -6.829349901605035 -12.13965494240189 -6.834719327394617 -12.24384501612055 -6.883476791472139 -12.33966146130525 -6.851885096165651 -12.22234766411602 -6.798219207906983 -12.20201939532969 -6.857959085798884 -15.01585657326699 -0.2708411029036731 -15.02036425776285 -0.3424568602995842 -15.15125945875786 -0.287418334694042 -14.6342578746901 -2.942791200881442 -14.59079495631652 -2.995922132173253 -14.74421065985963 -2.983107103282456 14.60302270780954 -2.122026055656785 14.59515925615846 -2.058971806229413 14.71025028138717 -2.143148553045156 15.1610746810059 -0.1524841104103744 15.17473354108876 -0.08251764405130165 15.27969938334563 -0.1721547169097974 -6.055555958381284 -10.13689521376172 -6.109293428726534 -10.09175613382068 -5.954165196393753 -10.08240321614815 -12.50712676704969 -0.3609261135720588 -12.37630511964687 -0.4101709921625641 -12.51170521897669 -0.4325390927646903 -15.01286009738145 0.3586968549124524 -15.12701739267614 0.2979730324215424 -15.15000901865558 0.3585104446830472 10.84952558199501 -4.762879802184586 10.96736671779413 -4.789700952631367 10.95296857640354 -4.852037245898382 13.54445832625182 2.423189007954147 13.65426894193496 2.397400250851552 13.65981778591051 2.326748239006758 13.44017808013487 2.375974715736394 13.44222149290781 2.445933175648131 13.55851676484037 2.350190470906875 -5.959989731223443 -10.33633530654006 -5.846006881234751 -10.27464543694393 -5.80498708068003 -10.32577220688333 -12.36535272687875 -0.3269657940999559 -12.36931942813025 -0.3987688918611639 -12.5001415634012 -0.3495248153306038 -15.01275536901793 0.3432054555686024 -15.14990432501753 0.3430355903118844 -15.04889054441675 0.3977934493564489 10.71254331328887 -4.947072107482407 10.71930958092027 -4.884141894327106 10.82196691836965 -4.973859538279792 9.67152506378822 4.020897325168522 9.535652384218324 4.120325989301343 9.655860114538498 4.089780643099239 -0.6889855687148927 -10.54988316887613 -0.7482746903791204 -10.51141412699299 -0.572802348235919 -10.49301115116569 -7.801734852957861 -0.5277913027634515 -7.654831888932751 -0.5711515032322861 -7.805032899902522 -0.5996153304288365 -14.0236079020574 3.849147847560284 -14.03759278502901 3.909702567002443 -13.90483196929648 3.926144344553958 5.733703215387842 -5.75092622637404 5.709913740674724 -5.811244678157066 5.60288730036522 -5.719178957831415 5.475538535691138 -5.970370763176142 5.35566738907929 -5.939017535048345 5.369515924491523 -5.877589052009471 9.393183861526399 3.997550209745355 9.387608254834845 4.065358134287658 9.524234353431588 3.966570448214895 -0.5201254825616619 -10.77382636002158 -0.3895973034986966 -10.70880401546718 -0.3449848269301892 -10.75356217563272 -7.632245257255401 -0.4581488748053558 -7.634983779827445 -0.5298077574305262 -7.781888752192396 -0.4864517679305999 -13.81979254993046 4.004258330611974 -13.95283357076398 3.989283648150336 -13.84656499739853 4.057176476978639 1.046991573693943 -5.595370136162568 1.021968904281189 -5.654570323446632 0.8977851091591166 -5.559583517961907 5.049664706234381 4.52874270417023 5.068037022190874 4.462347923488265 4.912447918256355 4.562935780883287 3.300069892680144 -9.869433582197893 3.244388704195255 -9.833152729621558 3.436962751592062 -9.810535375168353 -2.887294530197833 -0.6252927187659304 -3.057845615112787 -0.6585940112285035 -3.055890342325662 -0.5869192556475147 -11.42281743810625 6.936435609898983 -11.42953743048822 6.993144953376537 -11.28770119512382 7.024820502476782 -11.00683453332838 7.117032035368696 -11.14967134513006 7.088273201472219 -11.02787819605507 7.164941813816665 0.8565613427156482 -5.761645794202346 0.7196533104223468 -5.726695200480043 0.7329961149335273 -5.66616107925037 4.90463205198234 4.350634804338514 4.755074876457686 4.385620809493025 4.748420206168268 4.450623579185506 3.459444348059531 -10.07934664992524 3.61324729743068 -10.01248305421866 3.651640238215035 -10.05481934312903 -2.887167692395809 -0.6249490118808861 -3.055763517245049 -0.5865755833510511 -2.885210157968473 -0.5532809029935275 -7.981571083229049 9.028755434296995 -7.987339464177467 9.07924109308836 -7.827904945542627 9.122818952272414 -2.731511830344187 -5.091509934117188 -2.752790423338037 -5.150622991096434 -2.897095942081317 -5.052740895802208 0.8831633149921303 4.340876154958427 0.8985552531553698 4.276796877166733 0.7308630172796837 4.377640666346864 6.479603226516543 -8.854242445425069 6.432656682515511 -8.817627836163625 6.634004203371501 -8.793294566101821 1.153653190403491 -0.6465280204784539 0.9646992024465306 -0.6835551247009495 0.9658881231462513 -0.611876575258182 1.153661032484155 -0.646501757147482 0.9658959644244591 -0.6118503146181035 1.154823566991007 -0.5748086689895912 -7.346889600048491 9.120113331780186 -7.508118143460947 9.08083200619877 -7.368801167472475 9.161201702913671 -2.919300446813514 -5.261696061418462 -3.071246920081444 -5.224036429610965 -3.062998735828634 -5.163262678543154 0.7582881172155453 4.154095522294827 0.5923837358809814 4.19196963560762 0.5901373538728749 4.254465696925111 6.619498629445356 -9.031308050738627 6.793269565919365 -8.962176649520533 6.820474276857828 -9.005141365953339 4.573192378001205 -0.6125857144513612 4.37394493166598 -0.6517516198939314 4.374391805653159 -0.5800535608648925 -4.386298460503134 10.16145455378166 -4.397610378910208 10.20511443037593 -4.220346270762134 10.25668177506712 -5.953669404898961 -4.578510320922733 -5.96853167702881 -4.63850078354304 -6.128426190224411 -4.53702549069464 -2.683371087115337 4.032857476182938 -2.674673651011776 3.970711939089664 -2.84407538994616 4.071074086936254 9.226955147384821 -7.660881436554149 9.191493256359289 -7.621820635735081 9.390705744112637 -7.598111054756348 9.338603479848972 -7.777732413618265 9.523076059965172 -7.706722186865398 9.537494056868775 -7.752405522686252 4.574667099394521 -0.6070062188160854 4.375866372032322 -0.5744746514511236 4.575156205994778 -0.535321328252991 -3.395417716892807 10.02484254912804 -3.575795402530674 9.980456970048538 -3.423559843750712 10.0596928702885 -6.118492684033487 -4.736181739891753 -6.278788735486867 -4.696918421360685 -6.277799551221619 -4.634136081968771 -2.77972732559265 3.868564866859452 -2.954812525223386 3.908104795001608 -2.949455647898713 3.968584970213615 11.69545908166266 -6.165375805374608 11.67151544575997 -6.122238471044303 11.85833574578004 -6.101659248474226 7.637462989591356 -0.5355783370673395 7.438884692436969 -0.5746213808480272 7.438681293734168 -0.5029356362676966 -0.5582846036325895 10.53883502273829 -0.5785103288784865 10.57693357934863 -0.3886621095636678 10.62900956161593 -8.859353395442366 -4.046293228179557 -8.866995217462531 -4.108791938055727 -9.03380027510906 -4.006420625215727 -5.824580325974829 3.787066497246632 -5.824401130254482 3.726439851574833 -5.984874911116784 3.825496089114379 -5.942767319525971 3.607580836929528 -6.117519171334913 3.647312480138302 -6.103624512072361 3.706251477403339 11.97108734405456 -6.195225668013294 11.78453809437585 -6.217274084336009 11.96786582673064 -6.145659251872847 7.629293246343014 -0.5664444235559801 7.430512536984056 -0.533798005330548 7.629012160527599 -0.4943906564864924 -0.2527148976834848 10.426971256602 -0.1009394200350589 10.50549989700128 -0.0616197760525572 10.47614398638011 -8.98003503097816 -4.174401339799997 -9.139893049866142 -4.134862396061923 -9.14633215593846 -4.07151990249627 -8.770561771941035 3.540886308410352 -8.778858771816418 3.481298733443971 -8.921820672219136 3.578192612107353 13.8205604012978 -4.096182285690041 13.80489155300077 -4.048106118542218 13.97232917348637 -4.032443978879279 10.44162978337981 -0.454062169185013 10.25329748679828 -0.4923326406169787 10.25224640736305 -0.4202832786225502 2.049549289613083 10.67640891533256 2.015247200976578 10.70942968634257 2.204802280708125 10.76855827136951 -11.53884325552663 -3.361979106691222 -11.53994084497939 -3.425517949534014 -11.70336417460099 -3.3223492902048 -11.63956842215784 -3.46330567287018 -11.79036667523766 -3.424862631705987 -11.80240804439404 -3.359567414257415 -8.887154949704883 3.372339220817581 -9.052081955590012 3.410858693299133 -9.030521953711299 3.468861975536915 14.02535964430971 -4.046920049696856 13.8580741391765 -4.063557718650049 14.02948956143378 -3.991233470963821 10.44654033069043 -0.4369218072722863 10.2571562531056 -0.4031453509545165 10.44557797820856 -0.3652357474518481 2.707638549323608 10.35051710495292 2.848398701466685 10.42835952246278 2.900166810352733 10.40336765268271 -13.89772784137746 -2.27334240652978 -13.89557361235264 -2.339299382153396 -14.04530211187303 -2.236344258840307 -11.62090563237156 3.142693003923645 -11.63560262689902 3.083377162266487 -11.75653812075608 3.177770661628187 15.13872884348619 -1.192185087423372 15.1254733683409 -1.137387144853773 15.27263390473562 -1.130954480547717 13.10411268779496 -0.2917334904157112 12.9350456270925 -0.326316947574528 12.93327751803514 -0.2546403847331626 4.966741529943247 10.42277976527329 4.919444935066543 10.45275846755024 5.098615749409144 10.51294560743031 5.678334940376205 9.998461887926403 5.799430404982195 10.07443132639926 5.861008033938964 10.05173705671813 -13.98068115255331 -2.32830077837097 -14.11587787742318 -2.292197086898061 -14.12956947632326 -2.224594367388785 -11.72922315943382 2.98463851391629 -11.87716989060118 3.020694099171451 -11.85063250064586 3.078654831939861 15.27921675181462 -1.108640329116497 15.13208634560243 -1.115486239458057 15.28355613780346 -1.047027107021943 13.10657820200534 -0.2846167827524169 12.93574257665943 -0.2475249755766458 13.1048417397712 -0.2129342117484297 7.924722301249481 9.732726897339406 7.8677461158809 9.761926573472087 8.02736526555074 9.821600983136177 -15.31437027633269 -0.4230223300898341 -15.31455082822898 -0.4914775418484327 -15.44305330662821 -0.3899955236348888 -14.18313452367816 2.150841275867112 -14.19973105728396 2.090634966396744 -14.3011621683106 2.18283567579907 14.87470401516739 2.501900133340608 14.8554805185815 2.561726152960566 14.99041859131321 2.557294767111326 14.98885956911455 -0.1510839771208635 14.98630899121961 -0.07941647313219935 15.13671974235762 -0.1211489381461692 14.98514250518259 -0.08211323242492062 15.13296454395576 -0.05218168754687864 15.13555282015459 -0.1238466702588365 8.664285561140369 9.203189903951314 8.76029235789291 9.278252121737998 8.82799872421109 9.255552621407876 -15.45898467712232 -0.2955347628614812 -15.33159006155596 -0.3978775287379471 -15.44939251441896 -0.3653735813311292 -14.27392021680073 1.982302751646204 -14.40287565241049 2.014917648040245 -14.37606452241652 2.07401491811839 15.0023280162694 2.584079828611297 14.86740545328029 2.588794416056637 14.99875333259749 2.650025172967234 15.16743422483861 -0.03545912243787345 15.1641764795847 0.03618896027725767 15.30158395565982 -0.01107473894987238 11.07174268466244 8.20622935854772 11.01027811487094 8.238076117138485 11.1455013915099 8.295039026640007 -14.53472554868212 2.127210024263323 -14.54335301702772 2.057293376693322 -14.6507686977999 2.154848983675576 -15.47116303379385 -0.1007349528659712 -15.48262111907089 -0.1628323662475132 -15.57514096968452 -0.07273631401580578 12.60731898493821 6.118625135813931 12.49951527187993 6.073027679581337 12.46898561727446 6.134508540228222 12.70625820915137 6.161370650101258 12.56811952074999 6.178270083019855 12.69059355607208 6.227755612237238 15.17563565399611 0.05617942024194091 15.30690519968065 0.08047237589028985 15.31304001235715 0.008910112217603286 11.69878959471147 7.58601203297724 11.7704919551024 7.662925350350643 11.83828156757457 7.63620236135994 -14.56680894469698 2.286669607262608 -14.46036782134315 2.188455181777495 -14.56459089025118 2.215883996012861 -15.56345211267266 -0.2696120734411502 -15.46905507231649 -0.358494914505298 -15.58614161625408 -0.3304375255316758 8.697078951015156 8.540115820692279 8.58627011746384 8.506442857040527 8.545172472107982 8.565718295780178 12.19835884505356 -0.146800505000047 12.19213361164655 -0.07524307380881749 12.33064208256117 -0.1284401721676801 14.47349470592138 4.48647907063768 14.59418708410047 4.538283916644543 14.52695133721591 4.444175897312884 -11.01679911358996 4.269145009458118 -11.03367668443019 4.199593819634335 -11.13378158180757 4.290461772431124 -13.39670242866168 -3.613704573406853 -13.3974098807348 -3.67709239098218 -13.5059011192523 -3.590829072605744 -13.55801168547825 -3.577066294607589 -13.4499401887031 -3.663655054369639 -13.56513458783688 -3.640840594633713 8.898762902518534 8.731761099374541 8.923678733635118 8.668841967120205 8.772269057933174 8.696205070621195 12.22654416361658 -0.01943562022145843 12.36175311937746 -0.0009825789137929406 12.36505519422629 -0.07262859400753216 14.96845522977058 3.35133289154442 15.03615162692535 3.429353310215399 15.09484373679222 3.39390961733253 -10.68882058697654 4.505299613626308 -10.79840624940081 4.526999730518657 -10.78713880123417 4.597366855888582 -8.815494644472278 -5.774511367979984 -8.801509248545763 -5.837578937177788 -8.933635321618514 -5.757277826503307 4.651988984499353 9.594854799842905 4.523448716069428 9.571625854314807 4.478680923413543 9.627328050368947 7.233951611409601 -0.2541372185253958 7.231213088075283 -0.182476503054494 7.382068434324744 -0.241491627183106 14.91065914675177 -3.777910281812579 15.03981940364179 -3.750520227088221 14.93406510884929 -3.833128042733069 -6.265053442983705 5.143606840905864 -6.291094765920943 5.075706706149901 -6.395522489379975 5.158768798898631 -6.345477359525412 5.033386772475333 -6.463927420890339 5.049251737721187 -6.450084556044033 5.116308992652171 -8.474083960861563 -5.557050713172885 -8.340006663472 -5.635324761576602 -8.470310492685124 -5.619290757677044 4.919379370187534 9.892039163892946 4.945944916579555 9.834218944580741 4.773327107086453 9.868892812672822 7.231209888290916 -0.1824815909569086 7.379373083602277 -0.1698281144617169 7.382065234171519 -0.2414967156690114 14.69234096980359 -4.355588845689685 14.72486050333744 -4.403233806382385 14.59387961922222 -4.424614123615205 -1.90937130006707 4.862529816864804 -1.933865719907049 4.797384062894644 -2.05882916208763 4.872460549146258 -3.259884488636204 -5.995842963102504 -3.241426096467497 -6.056438235414486 -3.397107199959195 -5.98424868289719 1.008562531875875 9.818746833712917 0.8596763270423269 9.803705718484709 0.8179236377150179 9.855677732640089 2.620126335769311 -0.3648972911204835 2.450697965148819 -0.3725570392090918 2.448785794034122 -0.3008729346920752 7.297282070817186 -10.79052628969557 7.443048798000977 -10.80009820721206 7.282510597809422 -10.84334156262963 7.685732597629724 -10.53924170281158 7.690973169910333 -10.58765281235062 7.545016025874009 -10.58008674815488 -1.805251932654083 4.913604885475876 -1.942557170917669 4.924577889785635 -1.92990455257835 4.989000459575597 -3.12195266891699 -5.944773106357311 -3.271471099256043 -5.9343096193634 -3.277982172367969 -5.873050550567501 1.295189091977163 10.18834112042268 1.316212385300757 10.13563914392545 1.126338995694618 10.17493482702669 2.621653215864948 -0.362364782113812 2.450312437044271 -0.2983408183330653 2.619721777136519 -0.2906842249844755 0.2212680525864363 -12.01608980644756 0.3845430425278218 -12.04473635384749 0.1973876130544139 -12.06089738910327 1.735043255551679 4.502827643114138 1.715192325704423 4.439538812723861 1.568907206214536 4.50907519563662 1.002064494370128 -5.597568584395066 1.01857272779244 -5.657654025747636 0.8495047426544161 -5.589675080231888 -2.204111497812216 9.633141234618284 -2.370038473919489 9.623684474567677 -2.40325675258017 9.672348096396751 -1.277086089588083 -0.4169438540565115 -1.465326925407342 -0.4208737389001987 -1.466501008696974 -0.3491830297211277 -1.276098617083837 -0.4152397302612619 -1.465513719932773 -0.3474792237757546 -1.277299820395676 -0.3435675080228851 1.008678047437974 -11.80383616959896 1.00884506093083 -11.84753967263648 0.8443012179766773 -11.8238075444289 1.836118446626879 4.571597531119997 1.683531900332494 4.579163743572819 1.69008290622801 4.641457803520121 1.131624861292083 -5.515641120481698 0.9654699582544085 -5.509115040108265 0.9622789187873809 -5.448091689314831 -1.879254076347732 10.07453448642871 -1.869103492317738 10.02585820029304 -2.067363556438311 10.06774942589127 -4.483550424088096 -0.4202673357458706 -4.682577470094148 -0.4220754648921574 -4.683074645727208 -0.3503980807569206 -4.12237157436495 -11.35867777184159 -3.940446281391237 -11.39435600296643 -4.139369964723186 -11.40028547859709 4.849655206940618 4.19179664643818 4.83726873451684 4.130053938276838 4.673925980017696 4.196057977837305 4.403622006344742 -5.045024200443416 4.414330093866282 -5.10551545785776 4.242249595848798 -5.039119404646884 -5.086036520775776 9.288165469182147 -5.261618723685403 9.281580629012616 -5.282606409882941 9.328062374147711 -4.743147968121232 9.748715202730224 -4.746545622892838 9.702780256586332 -4.942146886322691 9.745521824623399 -4.480810009784761 -0.4154533985807034 -4.680334808808471 -0.3455851639672101 -4.481281815855905 -0.3437653901831514 -3.367600287503807 -11.23167592501437 -3.359409878330394 -11.27335911168447 -3.5428410360005 -11.24282287156327 4.94606400392554 4.265197287318761 4.784681055016228 4.27092107274445 4.782938276159995 4.331532646254946 4.494403742435357 -4.991993434953791 4.318710924411826 -4.987598654151317 4.322134653282708 -4.925900717261717</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2670\" source=\"#ID1721\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1717\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1715\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1716\"/>\r\n                </vertices>\r\n                <triangles count=\"890\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1717\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1718\"/>\r\n                    <p>0 0 1 1 2 2 1 3 6 4 2 5 1 6 0 7 8 8 10 9 0 10 11 11 14 12 15 13 16 14 2 15 6 16 20 17 22 18 16 19 23 20 0 21 26 22 8 23 28 24 0 25 10 26 10 27 11 28 30 29 32 30 15 31 14 32 14 33 16 34 22 35 20 36 6 37 34 38 11 39 36 40 30 41 22 42 23 43 38 44 8 45 26 46 40 47 0 48 28 49 26 50 42 51 43 52 44 53 48 54 49 55 42 56 52 57 53 58 54 59 32 60 58 61 15 62 60 63 52 64 61 65 20 66 34 67 64 68 30 69 36 70 66 71 68 72 61 73 69 74 38 75 23 76 72 77 26 78 74 79 40 80 28 81 76 82 26 83 43 84 53 85 44 86 49 87 43 88 42 89 78 90 49 91 48 92 54 93 53 94 80 95 60 96 53 97 52 98 32 99 82 100 58 101 68 102 60 103 61 104 64 105 34 106 84 107 36 108 64 109 66 110 78 111 48 112 86 113 88 114 68 115 69 116 38 117 72 118 90 119 40 120 74 121 92 122 26 123 76 124 74 125 44 126 53 127 94 128 96 129 80 130 97 131 100 132 97 133 101 134 54 135 80 136 96 137 53 138 60 139 94 140 58 141 82 142 104 143 60 144 68 145 106 146 64 147 84 148 108 149 110 150 66 151 64 152 78 153 86 154 112 155 68 156 88 157 114 158 88 159 69 160 116 161 90 162 72 163 118 164 74 165 120 166 92 167 76 168 122 169 74 170 96 171 97 172 100 173 100 174 101 175 124 176 94 177 60 178 106 179 82 180 126 181 104 182 106 183 68 184 114 185 108 186 84 187 128 188 108 189 110 190 64 191 112 192 86 193 130 194 124 195 101 196 132 197 114 198 88 199 134 200 136 201 88 202 116 203 90 204 118 205 138 206 92 207 120 208 140 209 74 210 122 211 120 212 126 213 142 214 143 215 104 216 126 217 143 218 122 219 146 220 120 221 148 222 108 223 128 224 150 225 110 226 108 227 112 228 130 229 152 230 132 231 154 232 124 233 146 234 156 235 157 236 134 237 88 238 136 239 136 240 116 241 160 242 118 243 162 244 138 245 120 246 157 247 140 248 143 249 142 250 164 251 120 252 146 253 157 254 166 255 148 256 128 257 148 258 150 259 108 260 152 261 130 262 168 263 132 264 170 265 154 266 142 267 172 268 164 269 157 270 156 271 174 272 134 273 136 274 176 275 178 276 136 277 160 278 138 279 162 280 180 281 140 282 157 283 182 284 184 285 148 286 166 287 186 288 150 289 148 290 152 291 168 292 188 293 170 294 190 295 154 296 164 297 172 298 192 299 157 300 174 301 182 302 156 303 194 304 174 305 176 306 136 307 178 308 178 309 160 310 196 311 162 312 198 313 180 314 200 315 184 316 166 317 184 318 186 319 148 320 188 321 168 322 202 323 170 324 188 325 190 326 172 327 204 328 192 329 182 330 174 331 206 332 174 333 194 334 208 335 176 336 178 337 210 338 212 339 178 340 196 341 180 342 198 343 214 344 216 345 184 346 200 347 218 348 186 349 184 350 188 351 202 352 220 353 188 354 222 355 190 356 192 357 204 358 224 359 198 360 226 361 214 362 174 363 208 364 206 365 194 366 228 367 208 368 210 369 178 370 212 371 212 372 196 373 230 374 232 375 216 376 200 377 216 378 218 379 184 380 202 381 234 382 220 383 188 384 220 385 222 386 224 387 204 388 236 389 214 390 226 391 238 392 206 393 208 394 240 395 208 396 228 397 242 398 210 399 212 400 244 401 212 402 230 403 246 404 248 405 216 406 232 407 250 408 218 409 216 410 220 411 234 412 252 413 220 414 254 415 222 416 224 417 236 418 256 419 230 420 258 421 246 422 226 423 260 424 238 425 240 426 208 427 242 428 228 429 262 430 242 431 244 432 212 433 264 434 266 435 248 436 232 437 248 438 250 439 216 440 234 441 268 442 252 443 220 444 252 445 254 446 256 447 236 448 270 449 246 450 258 451 272 452 238 453 260 454 274 455 240 456 242 457 276 458 242 459 262 460 278 461 280 462 244 463 264 464 282 465 248 466 266 467 284 468 250 469 248 470 252 471 268 472 286 473 252 474 288 475 254 476 256 477 270 478 290 479 280 480 264 481 272 482 258 483 292 484 272 485 260 486 294 487 274 488 276 489 242 490 296 491 262 492 298 493 278 494 300 495 282 496 266 497 282 498 284 499 248 500 268 501 302 502 286 503 252 504 286 505 288 506 290 507 270 508 304 509 306 510 280 511 272 512 272 513 292 514 308 515 294 516 310 517 274 518 276 519 296 520 312 521 278 522 298 523 314 524 316 525 282 526 300 527 318 528 284 529 282 530 286 531 302 532 320 533 286 534 322 535 288 536 290 537 304 538 324 539 314 540 298 541 326 542 308 543 306 544 272 545 292 546 328 547 308 548 294 549 330 550 310 551 296 552 314 553 312 554 332 555 316 556 300 557 316 558 318 559 282 560 302 561 334 562 320 563 286 564 320 565 322 566 324 567 304 568 336 569 314 570 326 571 338 572 340 573 306 574 308 575 308 576 328 577 342 578 330 579 344 580 310 581 312 582 314 583 346 584 348 585 316 586 332 587 316 588 350 589 318 590 320 591 334 592 352 593 354 594 322 595 320 596 356 597 324 598 336 599 314 600 338 601 346 602 338 603 326 604 358 605 342 606 340 607 308 608 328 609 360 610 342 611 362 612 344 613 330 614 364 615 348 616 332 617 366 618 350 619 316 620 334 621 368 622 352 623 352 624 354 625 320 626 356 627 336 628 370 629 346 630 338 631 372 632 338 633 358 634 374 635 376 636 340 637 342 638 378 639 342 640 360 641 362 642 380 643 344 644 382 645 348 646 364 647 366 648 384 649 350 650 352 651 368 652 386 653 388 654 354 655 352 656 390 657 356 658 370 659 392 660 380 661 362 662 338 663 374 664 372 665 358 666 394 667 374 668 378 669 376 670 342 671 378 672 360 673 396 674 398 675 382 676 364 677 400 678 384 679 366 680 368 681 402 682 386 683 386 684 388 685 352 686 390 687 370 688 404 689 392 690 406 691 380 692 372 693 374 694 408 695 374 696 394 697 410 698 412 699 376 700 378 701 414 702 378 703 396 704 398 705 416 706 382 707 418 708 384 709 400 710 402 711 420 712 386 713 422 714 388 715 386 716 424 717 390 718 404 719 414 720 396 721 426 722 428 723 406 724 392 725 374 726 410 727 408 728 394 729 430 730 410 731 414 732 412 733 378 734 432 735 416 736 398 737 416 738 418 739 400 740 402 741 434 742 420 743 420 744 422 745 386 746 436 747 424 748 404 749 438 750 414 751 426 752 428 753 440 754 406 755 408 756 410 757 442 758 410 759 430 760 444 761 446 762 412 763 414 764 432 765 448 766 416 767 450 768 418 769 416 770 434 771 452 772 420 773 454 774 422 775 420 776 456 777 424 778 436 779 438 780 446 781 414 782 438 783 426 784 458 785 460 786 440 787 428 788 410 789 444 790 442 791 430 792 462 793 444 794 464 795 448 796 432 797 448 798 450 799 416 800 466 801 452 802 434 803 452 804 454 805 420 806 468 807 456 808 436 809 470 810 446 811 438 812 472 813 438 814 458 815 460 816 474 817 440 818 442 819 444 820 476 821 444 822 462 823 478 824 480 825 448 826 464 827 482 828 450 829 448 830 466 831 484 832 452 833 452 834 486 835 454 836 488 837 456 838 468 839 462 840 490 841 478 842 472 843 470 844 438 845 472 846 458 847 492 848 494 849 474 850 460 851 444 852 478 853 476 854 496 855 480 856 464 857 480 858 482 859 448 860 498 861 484 862 466 863 452 864 484 865 486 866 500 867 488 868 468 869 478 870 490 871 502 872 472 873 504 874 470 875 506 876 472 877 492 878 508 879 474 880 494 881 476 882 478 883 510 884 512 885 480 886 496 887 514 888 482 889 480 890 498 891 516 892 484 893 484 894 518 895 486 896 520 897 488 898 500 899 478 900 502 901 510 902 490 903 522 904 502 905 524 906 504 907 472 908 506 909 492 910 526 911 528 912 508 913 494 914 530 915 512 916 496 917 512 918 514 919 480 920 532 921 516 922 498 923 484 924 516 925 518 926 534 927 520 928 500 929 510 930 502 931 536 932 502 933 522 934 538 935 524 936 540 937 504 938 542 939 506 940 526 941 544 942 508 943 528 944 546 945 512 946 530 947 548 948 514 949 512 950 532 951 550 952 516 953 516 954 552 955 518 956 554 957 520 958 534 959 556 960 544 961 528 962 502 963 538 964 536 965 522 966 558 967 538 968 560 969 540 970 524 971 542 972 526 973 562 974 564 975 546 976 530 977 546 978 548 979 512 980 566 981 550 982 532 983 516 984 550 985 552 986 568 987 554 988 534 989 570 990 544 991 556 992 538 993 572 994 536 995 538 996 558 997 574 998 560 999 576 1000 540 1001 562 1002 578 1003 542 1004 580 1005 546 1006 564 1007 582 1008 548 1009 546 1010 584 1011 550 1012 566 1013 550 1014 586 1015 552 1016 568 1017 588 1018 554 1019 590 1020 578 1021 562 1022 592 1023 570 1024 556 1025 574 1026 572 1027 538 1028 558 1029 594 1030 574 1031 596 1032 576 1033 560 1034 598 1035 580 1036 564 1037 580 1038 582 1039 546 1040 600 1041 584 1042 566 1043 550 1044 584 1045 586 1046 602 1047 588 1048 568 1049 590 1050 604 1051 578 1052 606 1053 570 1054 592 1055 574 1056 608 1057 572 1058 610 1059 574 1060 594 1061 596 1062 612 1063 576 1064 614 1065 580 1066 598 1067 616 1068 582 1069 580 1070 618 1071 584 1072 600 1073 584 1074 620 1075 586 1076 602 1077 622 1078 588 1079 596 1080 624 1081 612 1082 626 1083 604 1084 590 1085 628 1086 606 1087 592 1088 630 1089 608 1090 574 1091 632 1092 610 1093 594 1094 634 1095 614 1096 598 1097 614 1098 616 1099 580 1100 636 1101 618 1102 600 1103 584 1104 618 1105 620 1106 638 1107 622 1108 602 1109 612 1110 624 1111 640 1112 626 1113 642 1114 604 1115 644 1116 606 1117 628 1118 646 1119 608 1120 630 1121 648 1122 610 1123 632 1124 650 1125 614 1126 634 1127 616 1128 614 1129 652 1130 654 1131 618 1132 636 1133 618 1134 656 1135 620 1136 638 1137 658 1138 622 1139 660 1140 648 1141 632 1142 624 1143 662 1144 640 1145 664 1146 642 1147 626 1148 644 1149 628 1150 666 1151 668 1152 646 1153 630 1154 670 1155 650 1156 634 1157 652 1158 614 1159 650 1160 672 1161 654 1162 636 1163 618 1164 674 1165 656 1166 676 1167 658 1168 638 1169 660 1170 678 1171 648 1172 640 1173 662 1174 680 1175 664 1176 682 1177 642 1178 644 1179 666 1180 684 1181 686 1182 646 1183 668 1184 650 1185 670 1186 688 1187 652 1188 650 1189 690 1190 692 1191 654 1192 672 1193 656 1194 674 1195 694 1196 676 1197 696 1198 658 1199 678 1200 686 1201 668 1202 698 1203 678 1204 660 1205 662 1206 682 1207 680 1208 700 1209 682 1210 664 1211 684 1212 666 1213 702 1214 670 1215 704 1216 688 1217 690 1218 650 1219 706 1220 708 1221 692 1222 672 1223 694 1224 674 1225 710 1226 676 1227 712 1228 696 1229 686 1230 678 1231 714 1232 678 1233 698 1234 716 1235 680 1236 682 1237 718 1238 720 1239 682 1240 700 1241 684 1242 702 1243 722 1244 688 1245 704 1246 724 1247 690 1248 706 1249 726 1250 728 1251 692 1252 708 1253 694 1254 710 1255 730 1256 712 1257 732 1258 696 1259 722 1260 702 1261 734 1262 678 1263 716 1264 714 1265 698 1266 736 1267 716 1268 682 1269 720 1270 718 1271 720 1272 700 1273 738 1274 724 1275 704 1276 740 1277 706 1278 742 1279 726 1280 744 1281 728 1282 708 1283 730 1284 710 1285 746 1286 712 1287 748 1288 732 1289 722 1290 734 1291 750 1292 714 1293 716 1294 752 1295 716 1296 736 1297 754 1298 718 1299 720 1300 756 1301 758 1302 720 1303 738 1304 724 1305 740 1306 760 1307 726 1308 742 1309 762 1310 764 1311 728 1312 744 1313 730 1314 746 1315 766 1316 732 1317 748 1318 768 1319 758 1320 738 1321 770 1322 750 1323 734 1324 772 1325 716 1326 754 1327 752 1328 736 1329 774 1330 754 1331 720 1332 758 1333 756 1334 760 1335 740 1336 776 1337 742 1338 760 1339 762 1340 764 1341 744 1342 778 1343 766 1344 746 1345 780 1346 748 1347 782 1348 768 1349 784 1350 758 1351 770 1352 750 1353 772 1354 786 1355 752 1356 754 1357 788 1358 754 1359 774 1360 790 1361 756 1362 758 1363 792 1364 760 1365 776 1366 794 1367 796 1368 762 1369 760 1370 764 1371 778 1372 798 1373 780 1374 800 1375 766 1376 768 1377 782 1378 802 1379 758 1380 784 1381 792 1382 784 1383 770 1384 804 1385 786 1386 772 1387 806 1388 754 1389 790 1390 788 1391 774 1392 808 1393 790 1394 794 1395 776 1396 810 1397 794 1398 796 1399 760 1400 798 1401 778 1402 812 1403 780 1404 814 1405 800 1406 782 1407 816 1408 802 1409 792 1410 784 1411 818 1412 820 1413 784 1414 804 1415 786 1416 806 1417 822 1418 788 1419 790 1420 824 1421 790 1422 808 1423 826 1424 828 1425 794 1426 810 1427 830 1428 796 1429 794 1430 798 1431 812 1432 832 1433 814 1434 834 1435 800 1436 802 1437 816 1438 836 1439 808 1440 838 1441 826 1442 818 1443 784 1444 820 1445 820 1446 804 1447 840 1448 806 1449 842 1450 822 1451 790 1452 826 1453 824 1454 844 1455 828 1456 810 1457 828 1458 830 1459 794 1460 832 1461 812 1462 846 1463 814 1464 848 1465 834 1466 816 1467 850 1468 836 1469 826 1470 838 1471 852 1472 818 1473 820 1474 854 1475 856 1476 820 1477 840 1478 822 1479 842 1480 858 1481 824 1482 826 1483 860 1484 862 1485 828 1486 844 1487 864 1488 830 1489 828 1490 832 1491 846 1492 866 1493 848 1494 868 1495 834 1496 836 1497 850 1498 870 1499 826 1500 852 1501 860 1502 838 1503 872 1504 852 1505 854 1506 820 1507 856 1508 856 1509 840 1510 874 1511 842 1512 876 1513 858 1514 878 1515 862 1516 844 1517 862 1518 864 1519 828 1520 866 1521 846 1522 880 1523 848 1524 866 1525 868 1526 850 1527 882 1528 870 1529 860 1530 852 1531 884 1532 852 1533 872 1534 886 1535 854 1536 856 1537 888 1538 890 1539 856 1540 874 1541 858 1542 876 1543 892 1544 894 1545 862 1546 878 1547 896 1548 864 1549 862 1550 866 1551 880 1552 898 1553 866 1554 900 1555 868 1556 870 1557 882 1558 902 1559 876 1560 904 1561 892 1562 852 1563 886 1564 884 1565 872 1566 906 1567 886 1568 888 1569 856 1570 890 1571 890 1572 874 1573 908 1574 910 1575 894 1576 878 1577 894 1578 896 1579 862 1580 880 1581 912 1582 898 1583 866 1584 898 1585 900 1586 902 1587 882 1588 914 1589 892 1590 904 1591 916 1592 884 1593 886 1594 918 1595 886 1596 906 1597 920 1598 888 1599 890 1600 922 1601 890 1602 908 1603 924 1604 926 1605 894 1606 910 1607 928 1608 896 1609 894 1610 898 1611 912 1612 930 1613 898 1614 932 1615 900 1616 902 1617 914 1618 934 1619 908 1620 936 1621 924 1622 904 1623 938 1624 916 1625 918 1626 886 1627 920 1628 906 1629 940 1630 920 1631 922 1632 890 1633 942 1634 944 1635 926 1636 910 1637 926 1638 928 1639 894 1640 912 1641 946 1642 930 1643 898 1644 930 1645 932 1646 934 1647 914 1648 948 1649 924 1650 936 1651 950 1652 916 1653 938 1654 952 1655 918 1656 920 1657 954 1658 920 1659 940 1660 956 1661 958 1662 922 1663 942 1664 960 1665 926 1666 944 1667 962 1668 928 1669 926 1670 930 1671 946 1672 964 1673 930 1674 966 1675 932 1676 934 1677 948 1678 968 1679 958 1680 942 1681 950 1682 936 1683 970 1684 950 1685 938 1686 972 1687 952 1688 954 1689 920 1690 974 1691 956 1692 940 1693 976 1694 978 1695 960 1696 944 1697 960 1698 962 1699 926 1700 946 1701 980 1702 964 1703 930 1704 964 1705 966 1706 968 1707 948 1708 982 1709 984 1710 958 1711 950 1712 950 1713 970 1714 986 1715 972 1716 988 1717 952 1718 954 1719 974 1720 990 1721 956 1722 976 1723 992 1724 994 1725 960 1726 978 1727 996 1728 962 1729 960 1730 964 1731 980 1732 998 1733 964 1734 1000 1735 966 1736 968 1737 982 1738 1002 1739 992 1740 976 1741 1004 1742 986 1743 984 1744 950 1745 970 1746 1006 1747 986 1748 972 1749 1008 1750 988 1751 974 1752 992 1753 990 1754 1010 1755 994 1756 978 1757 994 1758 996 1759 960 1760 980 1761 1012 1762 998 1763 964 1764 998 1765 1000 1766 1002 1767 982 1768 1014 1769 992 1770 1004 1771 1016 1772 1018 1773 984 1774 986 1775 986 1776 1006 1777 1020 1778 1008 1779 1022 1780 988 1781 990 1782 992 1783 1024 1784 1026 1785 994 1786 1010 1787 994 1788 1028 1789 996 1790 998 1791 1012 1792 1030 1793 1032 1794 1000 1795 998 1796 1034 1797 1002 1798 1014 1799 992 1800 1016 1801 1024 1802 1016 1803 1004 1804 1036 1805 1020 1806 1018 1807 986 1808 1006 1809 1038 1810 1020 1811 1040 1812 1022 1813 1008 1814 1042 1815 1026 1816 1010 1817 1044 1818 1028 1819 994 1820 1012 1821 1046 1822 1030 1823 1030 1824 1032 1825 998 1826 1034 1827 1014 1828 1048 1829 1024 1830 1016 1831 1050 1832 1016 1833 1036 1834 1052 1835 1054 1836 1018 1837 1020 1838 1056 1839 1020 1840 1038 1841 1040 1842 1058 1843 1022 1844 1060 1845 1026 1846 1042 1847 1044 1848 1062 1849 1028 1850 1030 1851 1046 1852 1064 1853 1066 1854 1032 1855 1030 1856 1068 1857 1034 1858 1048 1859 1070 1860 1058 1861 1040 1862 1016 1863 1052 1864 1050 1865 1036 1866 1072 1867 1052 1868 1056 1869 1054 1870 1020 1871 1056 1872 1038 1873 1074 1874 1076 1875 1060 1876 1042 1877 1078 1878 1062 1879 1044 1880 1046 1881 1080 1882 1064 1883 1064 1884 1066 1885 1030 1886 1068 1887 1048 1888 1082 1889 1070 1890 1084 1891 1058 1892 1050 1893 1052 1894 1086 1895 1052 1896 1072 1897 1088 1898 1090 1899 1054 1900 1056 1901 1092 1902 1056 1903 1074 1904 1076 1905 1094 1906 1060 1907 1096 1908 1062 1909 1078 1910 1080 1911 1098 1912 1064 1913 1100 1914 1066 1915 1064 1916 1102 1917 1068 1918 1082 1919 1092 1920 1074 1921 1104 1922 1106 1923 1084 1924 1070 1925 1052 1926 1088 1927 1086 1928 1072 1929 1108 1930 1088 1931 1092 1932 1090 1933 1056 1934 1110 1935 1094 1936 1076 1937 1094 1938 1096 1939 1078 1940 1080 1941 1112 1942 1098 1943 1114 1944 1100 1945 1064 1946 1116 1947 1102 1948 1082 1949 1118 1950 1092 1951 1104 1952 1106 1953 1120 1954 1084 1955 1086 1956 1088 1957 1122 1958 1088 1959 1108 1960 1124 1961 1126 1962 1090 1963 1092 1964 1110 1965 1128 1966 1094 1967 1130 1968 1096 1969 1094 1970 1112 1971 1132 1972 1098 1973 1114 1974 1134 1975 1100 1976 1136 1977 1102 1978 1116 1979 1118 1980 1126 1981 1092 1982 1118 1983 1104 1984 1138 1985 1140 1986 1120 1987 1106 1988 1088 1989 1124 1990 1122 1991 1108 1992 1142 1993 1124 1994 1144 1995 1128 1996 1110 1997 1128 1998 1130 1999 1094 2000 1146 2001 1132 2002 1112 2003 1114 2004 1132 2005 1134 2006 1148 2007 1136 2008 1116 2009 1150 2010 1126 2011 1118 2012 1152 2013 1118 2014 1138 2015 1140 2016 1154 2017 1120 2018 1122 2019 1124 2020 1156 2021 1124 2022 1142 2023 1158 2024 1160 2025 1128 2026 1144 2027 1162 2028 1130 2029 1128 2030 1146 2031 1164 2032 1132 2033 1132 2034 1166 2035 1134 2036 1168 2037 1136 2038 1148 2039 1142 2040 1170 2041 1158 2042 1152 2043 1150 2044 1118 2045 1152 2046 1138 2047 1172 2048 1174 2049 1154 2050 1140 2051 1124 2052 1158 2053 1156 2054 1176 2055 1160 2056 1144 2057 1160 2058 1162 2059 1128 2060 1178 2061 1164 2062 1146 2063 1132 2064 1164 2065 1166 2066 1180 2067 1168 2068 1148 2069 1158 2070 1170 2071 1182 2072 1152 2073 1184 2074 1150 2075 1186 2076 1152 2077 1172 2078 1188 2079 1154 2080 1174 2081 1156 2082 1158 2083 1190 2084 1192 2085 1160 2086 1176 2087 1194 2088 1162 2089 1160 2090 1178 2091 1196 2092 1164 2093 1164 2094 1198 2095 1166 2096 1200 2097 1168 2098 1180 2099 1158 2100 1182 2101 1190 2102 1170 2103 1202 2104 1182 2105 1204 2106 1184 2107 1152 2108 1186 2109 1172 2110 1206 2111 1208 2112 1188 2113 1174 2114 1210 2115 1192 2116 1176 2117 1192 2118 1194 2119 1160 2120 1212 2121 1196 2122 1178 2123 1164 2124 1196 2125 1198 2126 1214 2127 1200 2128 1180 2129 1190 2130 1182 2131 1216 2132 1182 2133 1202 2134 1218 2135 1204 2136 1220 2137 1184 2138 1222 2139 1186 2140 1206 2141 1224 2142 1188 2143 1208 2144 1226 2145 1224 2146 1208 2147 1182 2148 1218 2149 1216 2150 1202 2151 1228 2152 1218 2153 1230 2154 1220 2155 1204 2156 1222 2157 1206 2158 1232 2159 1234 2160 1224 2161 1226 2162 1218 2163 1236 2164 1216 2165 1238 2166 1218 2167 1228 2168 1230 2169 1240 2170 1220 2171 1232 2172 1242 2173 1222 2174 1244 2175 1242 2176 1232 2177 1246 2178 1234 2179 1226 2180 1238 2181 1236 2182 1218 2183 1248 2184 1238 2185 1228 2186 1250 2187 1240 2188 1230 2189 1244 2190 1252 2191 1242 2192 1254 2193 1234 2194 1246 2195 1238 2196 1256 2197 1236 2198 1258 2199 1238 2200 1248 2201 1250 2202 1260 2203 1240 2204 1250 2205 1262 2206 1260 2207 1264 2208 1252 2209 1244 2210 1266 2211 1254 2212 1246 2213 1268 2214 1256 2215 1238 2216 1270 2217 1258 2218 1248 2219 1260 2220 1262 2221 1272 2222 1264 2223 1274 2224 1252 2225 1276 2226 1254 2227 1266 2228 1278 2229 1256 2230 1268 2231 1280 2232 1258 2233 1270 2234 1282 2235 1280 2236 1270 2237 1262 2238 1284 2239 1272 2240 1286 2241 1274 2242 1264 2243 1276 2244 1266 2245 1288 2246 1280 2247 1278 2248 1268 2249 1282 2250 1290 2251 1280 2252 1272 2253 1284 2254 1292 2255 1286 2256 1294 2257 1274 2258 1276 2259 1288 2260 1296 2261 1278 2262 1280 2263 1298 2264 1280 2265 1290 2266 1298 2267 1300 2268 1290 2269 1282 2270 1284 2271 1294 2272 1292 2273 1302 2274 1294 2275 1286 2276 1296 2277 1288 2278 1304 2279 1298 2280 1290 2281 1306 2282 1290 2283 1300 2284 1308 2285 1292 2286 1294 2287 1310 2288 1312 2289 1294 2290 1302 2291 1296 2292 1304 2293 1314 2294 1314 2295 1304 2296 1316 2297 1290 2298 1308 2299 1306 2300 1300 2301 1318 2302 1308 2303 1294 2304 1312 2305 1310 2306 1312 2307 1302 2308 1320 2309 1314 2310 1316 2311 1322 2312 1306 2313 1308 2314 1324 2315 1308 2316 1318 2317 1326 2318 1310 2319 1312 2320 1328 2321 1330 2322 1312 2323 1320 2324 1330 2325 1320 2326 1332 2327 1322 2328 1316 2329 1334 2330 1308 2331 1326 2332 1324 2333 1318 2334 1336 2335 1326 2336 1312 2337 1330 2338 1328 2339 1338 2340 1330 2341 1332 2342 1322 2343 1334 2344 1340 2345 1324 2346 1326 2347 1342 2348 1326 2349 1336 2350 1344 2351 1328 2352 1330 2353 1346 2354 1330 2355 1338 2356 1346 2357 1338 2358 1332 2359 1348 2360 1340 2361 1334 2362 1350 2363 1326 2364 1344 2365 1342 2366 1336 2367 1352 2368 1344 2369 1346 2370 1338 2371 1354 2372 1356 2373 1338 2374 1348 2375 1340 2376 1350 2377 1358 2378 1342 2379 1344 2380 1360 2381 1344 2382 1352 2383 1362 2384 1352 2385 1364 2386 1362 2387 1354 2388 1338 2389 1356 2390 1356 2391 1348 2392 1366 2393 1350 2394 1368 2395 1358 2396 1344 2397 1362 2398 1360 2399 1362 2400 1364 2401 1370 2402 1354 2403 1356 2404 1372 2405 1374 2406 1356 2407 1366 2408 1358 2409 1368 2410 1376 2411 1360 2412 1362 2413 1378 2414 1362 2415 1370 2416 1378 2417 1364 2418 1380 2419 1370 2420 1372 2421 1356 2422 1374 2423 1374 2424 1366 2425 1382 2426 1368 2427 1384 2428 1376 2429 1378 2430 1370 2431 1386 2432 1370 2433 1380 2434 1388 2435 1372 2436 1374 2437 1390 2438 1392 2439 1374 2440 1382 2441 1376 2442 1384 2443 1394 2444 1384 2445 1396 2446 1394 2447 1370 2448 1388 2449 1386 2450 1380 2451 1398 2452 1388 2453 1390 2454 1374 2455 1392 2456 1392 2457 1382 2458 1400 2459 1394 2460 1396 2461 1402 2462 1386 2463 1388 2464 1404 2465 1388 2466 1398 2467 1406 2468 1390 2469 1392 2470 1408 2471 1392 2472 1400 2473 1410 2474 1400 2475 1412 2476 1410 2477 1396 2478 1414 2479 1402 2480 1404 2481 1388 2482 1406 2483 1398 2484 1416 2485 1406 2486 1408 2487 1392 2488 1418 2489 1410 2490 1412 2491 1420 2492 1402 2493 1414 2494 1422 2495 1404 2496 1406 2497 1424 2498 1406 2499 1416 2500 1426 2501 1428 2502 1408 2503 1418 2504 1428 2505 1418 2506 1420 2507 1412 2508 1430 2509 1420 2510 1414 2511 1432 2512 1422 2513 1424 2514 1406 2515 1434 2516 1426 2517 1416 2518 1436 2519 1438 2520 1428 2521 1420 2522 1420 2523 1430 2524 1440 2525 1432 2526 1442 2527 1422 2528 1424 2529 1434 2530 1444 2531 1426 2532 1436 2533 1446 2534 1446 2535 1436 2536 1448 2537 1440 2538 1438 2539 1420 2540 1430 2541 1450 2542 1440 2543 1432 2544 1452 2545 1442 2546 1434 2547 1446 2548 1444 2549 1446 2550 1448 2551 1454 2552 1456 2553 1438 2554 1440 2555 1440 2556 1450 2557 1458 2558 1452 2559 1460 2560 1442 2561 1444 2562 1446 2563 1462 2564 1446 2565 1454 2566 1462 2567 1454 2568 1448 2569 1464 2570 1458 2571 1456 2572 1440 2573 1450 2574 1466 2575 1458 2576 1468 2577 1460 2578 1452 2579 1462 2580 1454 2581 1470 2582 1454 2583 1464 2584 1472 2585 1474 2586 1456 2587 1458 2588 1476 2589 1458 2590 1466 2591 1468 2592 1478 2593 1460 2594 1480 2595 1478 2596 1468 2597 1454 2598 1472 2599 1470 2600 1464 2601 1482 2602 1472 2603 1476 2604 1474 2605 1458 2606 1476 2607 1466 2608 1484 2609 1480 2610 1486 2611 1478 2612 1470 2613 1472 2614 1488 2615 1472 2616 1482 2617 1490 2618 1492 2619 1474 2620 1476 2621 1494 2622 1476 2623 1484 2624 1494 2625 1484 2626 1496 2627 1498 2628 1486 2629 1480 2630 1472 2631 1490 2632 1488 2633 1482 2634 1500 2635 1490 2636 1494 2637 1492 2638 1476 2639 1502 2640 1494 2641 1496 2642 1498 2643 1504 2644 1486 2645 1488 2646 1490 2647 1506 2648 1490 2649 1500 2650 1508 2651 1510 2652 1492 2653 1494 2654 1502 2655 1510 2656 1494 2657 1502 2658 1496 2659 1512 2660 1514 2661 1504 2662 1498 2663 1490 2664 1508 2665 1506 2666 1500 2667 1516 2668 1508 2669</p>\r\n                </triangles>\r\n                <triangles count=\"890\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1717\"/>\r\n                    <p>3 4 5 3 7 4 9 5 4 12 5 13 17 18 19 21 7 3 24 17 25 9 27 5 13 5 29 31 12 13 19 18 33 25 17 19 35 7 21 31 37 12 39 24 25 41 27 9 27 29 5 45 46 47 47 50 51 55 56 57 18 59 33 62 57 63 65 35 21 67 37 31 70 62 71 73 24 39 41 75 27 27 77 29 45 56 46 47 46 50 51 50 79 81 56 55 57 56 63 59 83 33 62 63 71 85 35 65 67 65 37 87 51 79 70 71 89 91 73 39 93 75 41 75 77 27 95 56 45 98 81 99 102 98 103 99 81 55 95 63 56 105 83 59 107 71 63 109 85 65 65 67 111 113 87 79 115 89 71 117 70 89 119 73 91 93 121 75 75 123 77 103 98 99 125 102 103 107 63 95 105 127 83 115 71 107 129 85 109 65 111 109 131 87 113 133 102 125 135 89 115 117 89 137 139 119 91 141 121 93 121 123 75 144 145 127 144 127 105 121 147 123 129 109 149 109 111 151 153 131 113 125 155 133 158 159 147 137 89 135 161 117 137 139 163 119 141 158 121 165 145 144 158 147 121 129 149 167 109 151 149 169 131 153 155 171 133 165 173 145 175 159 158 177 137 135 161 137 179 181 163 139 183 158 141 167 149 185 149 151 187 189 169 153 155 191 171 193 173 165 183 175 158 175 195 159 179 137 177 197 161 179 181 199 163 167 185 201 149 187 185 203 169 189 191 189 171 193 205 173 207 175 183 209 195 175 211 179 177 197 179 213 215 199 181 201 185 217 185 187 219 221 203 189 191 223 189 225 205 193 215 227 199 207 209 175 209 229 195 213 179 211 231 197 213 201 217 233 185 219 217 221 235 203 223 221 189 237 205 225 239 227 215 241 209 207 243 229 209 245 213 211 247 231 213 233 217 249 217 219 251 253 235 221 223 255 221 257 237 225 247 259 231 239 261 227 243 209 241 243 263 229 265 213 245 233 249 267 217 251 249 253 269 235 255 253 221 271 237 257 273 259 247 275 261 239 277 243 241 279 263 243 265 245 281 267 249 283 249 251 285 287 269 253 255 289 253 291 271 257 273 265 281 273 293 259 275 295 261 297 243 277 279 299 263 267 283 301 249 285 283 287 303 269 289 287 253 305 271 291 273 281 307 309 293 273 275 311 295 313 297 277 315 299 279 301 283 317 283 285 319 321 303 287 289 323 287 325 305 291 327 299 315 273 307 309 309 329 293 311 331 295 313 315 297 301 317 333 283 319 317 321 335 303 323 321 287 337 305 325 339 327 315 309 307 341 343 329 309 311 345 331 347 315 313 333 317 349 319 351 317 353 335 321 321 323 355 337 325 357 347 339 315 359 327 339 309 341 343 343 361 329 331 345 363 333 349 365 317 351 367 353 369 335 321 355 353 371 337 357 373 339 347 375 359 339 343 341 377 361 343 379 345 381 363 365 349 383 351 385 367 387 369 353 353 355 389 371 357 391 363 381 393 373 375 339 375 395 359 343 377 379 397 361 379 365 383 399 367 385 401 387 403 369 353 389 387 405 371 391 381 407 393 409 375 373 411 395 375 379 377 413 397 379 415 383 417 399 401 385 419 387 421 403 387 389 423 405 391 425 427 397 415 393 407 429 409 411 375 411 431 395 379 413 415 399 417 433 401 419 417 421 435 403 387 423 421 405 425 437 427 415 439 407 441 429 443 411 409 445 431 411 415 413 447 417 449 433 417 419 451 421 453 435 421 423 455 437 425 457 415 447 439 459 427 439 429 441 461 443 445 411 445 463 431 433 449 465 417 451 449 435 453 467 421 455 453 437 457 469 439 447 471 459 439 473 441 475 461 477 445 443 479 463 445 465 449 481 449 451 483 453 485 467 455 487 453 469 457 489 479 491 463 439 471 473 493 459 473 461 475 495 477 479 445 465 481 497 449 483 481 467 485 499 487 485 453 469 489 501 503 491 479 471 505 473 493 473 507 495 475 509 511 479 477 497 481 513 481 483 515 485 517 499 487 519 485 501 489 521 511 503 479 503 523 491 473 505 525 527 493 507 495 509 529 497 513 531 481 515 513 499 517 533 519 517 485 501 521 535 537 503 511 539 523 503 505 541 525 527 507 543 529 509 545 531 513 547 513 515 549 517 551 533 519 553 517 535 521 555 529 545 557 537 539 503 539 559 523 525 541 561 563 527 543 531 547 565 513 549 547 533 551 567 553 551 517 535 555 569 557 545 571 537 573 539 575 559 539 541 577 561 543 579 563 565 547 581 547 549 583 567 551 585 553 587 551 555 589 569 563 579 591 557 571 593 539 573 575 575 595 559 561 577 597 565 581 599 547 583 581 567 585 601 587 585 551 569 589 603 579 605 591 593 571 607 573 609 575 595 575 611 577 613 597 599 581 615 581 583 617 601 585 619 587 621 585 589 623 603 613 625 597 591 605 627 593 607 629 575 609 631 595 611 633 599 615 635 581 617 615 601 619 637 621 619 585 603 623 639 641 625 613 605 643 627 629 607 645 631 609 647 633 611 649 635 615 651 653 615 617 637 619 655 621 657 619 623 659 639 633 649 661 641 663 625 627 643 665 667 629 645 631 647 669 635 651 671 651 615 653 637 655 673 657 675 619 639 659 677 649 679 661 681 663 641 643 683 665 685 667 645 669 647 687 689 671 651 691 651 653 673 655 693 695 675 657 659 697 677 669 687 679 661 679 699 681 683 663 665 683 701 703 667 685 689 705 671 707 651 691 673 693 709 711 675 695 697 713 677 715 679 687 717 699 679 719 683 681 701 683 721 723 703 685 725 705 689 727 707 691 709 693 729 731 711 695 697 733 713 735 703 723 715 717 679 717 737 699 719 721 683 739 701 721 741 705 725 727 743 707 709 729 745 747 711 731 733 749 713 751 735 723 753 717 715 755 737 717 757 721 719 739 721 759 761 741 725 763 743 727 745 729 765 767 747 731 769 749 733 771 739 759 773 735 751 753 755 717 755 775 737 757 759 721 777 741 761 763 761 743 779 745 765 781 747 767 769 783 749 771 759 785 787 773 751 789 755 753 791 775 755 793 759 757 795 777 761 761 763 797 799 779 765 767 801 781 803 783 769 793 785 759 805 771 785 807 773 787 789 791 755 791 809 775 811 777 795 761 797 795 813 779 799 801 815 781 803 817 783 819 785 793 805 785 821 823 807 787 825 791 789 827 809 791 811 795 829 795 797 831 833 813 799 801 835 815 837 817 803 827 839 809 821 785 819 841 805 821 823 843 807 825 827 791 811 829 845 795 831 829 847 813 833 835 849 815 837 851 817 853 839 827 855 821 819 841 821 857 859 843 823 861 827 825 845 829 863 829 831 865 867 847 833 835 869 849 871 851 837 861 853 827 853 873 839 857 821 855 875 841 857 859 877 843 845 863 879 829 865 863 881 847 867 869 867 849 871 883 851 885 853 861 887 873 853 889 857 855 875 857 891 893 877 859 879 863 895 863 865 897 899 881 867 869 901 867 903 883 871 893 905 877 885 887 853 887 907 873 891 857 889 909 875 891 879 895 911 863 897 895 899 913 881 901 899 867 915 883 903 917 905 893 919 887 885 921 907 887 923 891 889 925 909 891 911 895 927 895 897 929 931 913 899 901 933 899 935 915 903 925 937 909 917 939 905 921 887 919 921 941 907 943 891 923 911 927 945 895 929 927 931 947 913 933 931 899 949 915 935 951 937 925 953 939 917 955 921 919 957 941 921 943 923 959 945 927 961 927 929 963 965 947 931 933 967 931 969 949 935 951 943 959 951 971 937 953 973 939 975 921 955 977 941 957 945 961 979 927 963 961 965 981 947 967 965 931 983 949 969 951 959 985 987 971 951 953 989 973 991 975 955 993 977 957 979 961 995 961 963 997 999 981 965 967 1001 965 1003 983 969 1005 977 993 951 985 987 987 1007 971 989 1009 973 991 993 975 979 995 1011 961 997 995 999 1013 981 1001 999 965 1015 983 1003 1017 1005 993 987 985 1019 1021 1007 987 989 1023 1009 1025 993 991 1011 995 1027 997 1029 995 1031 1013 999 999 1001 1033 1015 1003 1035 1025 1017 993 1037 1005 1017 987 1019 1021 1021 1039 1007 1009 1023 1041 1011 1027 1043 995 1029 1045 1031 1047 1013 999 1033 1031 1049 1015 1035 1051 1017 1025 1053 1037 1017 1021 1019 1055 1039 1021 1057 1023 1059 1041 1043 1027 1061 1029 1063 1045 1065 1047 1031 1031 1033 1067 1049 1035 1069 1041 1059 1071 1051 1053 1017 1053 1073 1037 1021 1055 1057 1075 1039 1057 1043 1061 1077 1045 1063 1079 1065 1081 1047 1031 1067 1065 1083 1049 1069 1059 1085 1071 1087 1053 1051 1089 1073 1053 1057 1055 1091 1075 1057 1093 1061 1095 1077 1079 1063 1097 1065 1099 1081 1065 1067 1101 1083 1069 1103 1105 1075 1093 1071 1085 1107 1087 1089 1053 1089 1109 1073 1057 1091 1093 1077 1095 1111 1079 1097 1095 1099 1113 1081 1065 1101 1115 1083 1103 1117 1105 1093 1119 1085 1121 1107 1123 1089 1087 1125 1109 1089 1093 1091 1127 1095 1129 1111 1095 1097 1131 1099 1133 1113 1101 1135 1115 1117 1103 1137 1093 1127 1119 1139 1105 1119 1107 1121 1141 1123 1125 1089 1125 1143 1109 1111 1129 1145 1095 1131 1129 1113 1133 1147 1135 1133 1115 1117 1137 1149 1119 1127 1151 1139 1119 1153 1121 1155 1141 1157 1125 1123 1159 1143 1125 1145 1129 1161 1129 1131 1163 1133 1165 1147 1135 1167 1133 1149 1137 1169 1159 1171 1143 1119 1151 1153 1173 1139 1153 1141 1155 1175 1157 1159 1125 1145 1161 1177 1129 1163 1161 1147 1165 1179 1167 1165 1133 1149 1169 1181 1183 1171 1159 1151 1185 1153 1173 1153 1187 1175 1155 1189 1191 1159 1157 1177 1161 1193 1161 1163 1195 1165 1197 1179 1167 1199 1165 1181 1169 1201 1191 1183 1159 1183 1203 1171 1153 1185 1205 1207 1173 1187 1175 1189 1209 1177 1193 1211 1161 1195 1193 1179 1197 1213 1199 1197 1165 1181 1201 1215 1217 1183 1191 1219 1203 1183 1185 1221 1205 1207 1187 1223 1209 1189 1225 1209 1225 1227 1217 1219 1183 1219 1229 1203 1205 1221 1231 1233 1207 1223 1227 1225 1235 1217 1237 1219 1229 1219 1239 1221 1241 1231 1223 1243 1233 1233 1243 1245 1227 1235 1247 1219 1237 1239 1229 1239 1249 1231 1241 1251 1243 1253 1245 1247 1235 1255 1237 1257 1239 1249 1239 1259 1241 1261 1251 1261 1263 1251 1245 1253 1265 1247 1255 1267 1239 1257 1269 1249 1259 1271 1273 1263 1261 1253 1275 1265 1267 1255 1277 1269 1257 1279 1271 1259 1281 1271 1281 1283 1273 1285 1263 1265 1275 1287 1289 1267 1277 1269 1279 1281 1281 1291 1283 1293 1285 1273 1275 1295 1287 1297 1289 1277 1299 1281 1279 1299 1291 1281 1283 1291 1301 1293 1295 1285 1287 1295 1303 1305 1289 1297 1307 1291 1299 1309 1301 1291 1311 1295 1293 1303 1295 1313 1315 1305 1297 1317 1305 1315 1307 1309 1291 1309 1319 1301 1311 1313 1295 1321 1303 1313 1323 1317 1315 1325 1309 1307 1327 1319 1309 1329 1313 1311 1321 1313 1331 1333 1321 1331 1335 1317 1323 1325 1327 1309 1327 1337 1319 1329 1331 1313 1333 1331 1339 1341 1335 1323 1343 1327 1325 1345 1337 1327 1347 1331 1329 1347 1339 1331 1349 1333 1339 1351 1335 1341 1343 1345 1327 1345 1353 1337 1355 1339 1347 1349 1339 1357 1359 1351 1341 1361 1345 1343 1363 1353 1345 1363 1365 1353 1357 1339 1355 1367 1349 1357 1359 1369 1351 1361 1363 1345 1371 1365 1363 1373 1357 1355 1367 1357 1375 1377 1369 1359 1379 1363 1361 1379 1371 1363 1371 1381 1365 1375 1357 1373 1383 1367 1375 1377 1385 1369 1387 1371 1379 1389 1381 1371 1391 1375 1373 1383 1375 1393 1395 1385 1377 1395 1397 1385 1387 1389 1371 1389 1399 1381 1393 1375 1391 1401 1383 1393 1403 1397 1395 1405 1389 1387 1407 1399 1389 1409 1393 1391 1411 1401 1393 1411 1413 1401 1403 1415 1397 1407 1389 1405 1407 1417 1399 1419 1393 1409 1421 1413 1411 1423 1415 1403 1425 1407 1405 1427 1417 1407 1419 1409 1429 1421 1419 1429 1421 1431 1413 1423 1433 1415 1435 1407 1425 1437 1417 1427 1421 1429 1439 1441 1431 1421 1423 1443 1433 1445 1435 1425 1447 1437 1427 1449 1437 1447 1421 1439 1441 1441 1451 1431 1443 1453 1433 1445 1447 1435 1455 1449 1447 1441 1439 1457 1459 1451 1441 1443 1461 1453 1463 1447 1445 1463 1455 1447 1465 1449 1455 1441 1457 1459 1459 1467 1451 1453 1461 1469 1471 1455 1463 1473 1465 1455 1459 1457 1475 1467 1459 1477 1461 1479 1469 1469 1479 1481 1471 1473 1455 1473 1483 1465 1459 1475 1477 1485 1467 1477 1479 1487 1481 1489 1473 1471 1491 1483 1473 1477 1475 1493 1485 1477 1495 1497 1485 1495 1481 1487 1499 1489 1491 1473 1491 1501 1483 1477 1493 1495 1497 1495 1503 1487 1505 1499 1507 1491 1489 1509 1501 1491 1495 1493 1511 1495 1511 1503 1513 1497 1503 1499 1505 1515 1507 1509 1491 1509 1517 1501</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1722\">\r\n            <mesh>\r\n                <source id=\"ID1723\">\r\n                    <float_array count=\"30\" id=\"ID1726\">-0.6839439272880554 1.402427673339844 0.0003010407090187073 -0.6568337678909302 1.379017114639282 -0.003134805709123612 -0.6761385798454285 1.40332818031311 0.01056023687124252 -0.6761385798454285 1.40332818031311 0.01056023687124252 -0.6568337678909302 1.379017114639282 -0.003134805709123612 -0.6839439272880554 1.402427673339844 0.0003010407090187073 -0.653416633605957 1.383425712585449 0.007677655667066574 -0.653416633605957 1.383425712585449 0.007677655667066574 -0.61176598072052 1.378705859184265 -0.008583445101976395 -0.61176598072052 1.378705859184265 -0.008583445101976395</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"10\" source=\"#ID1726\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1724\">\r\n                    <float_array count=\"30\" id=\"ID1727\">0.5409079490672565 0.6957494617548015 -0.472600547083643 0.2763834199718249 0.8551930591528619 -0.4384712496178597 0.5430304145553483 0.6959188850689713 -0.4699094319889809 -0.5430304145553483 -0.6959188850689713 0.4699094319889809 -0.2763834199718249 -0.8551930591528619 0.4384712496178597 -0.5409079490672565 -0.6957494617548015 0.472600547083643 0.2921036455529176 0.8497824160601982 -0.4387998468659575 -0.2921036455529176 -0.8497824160601982 0.4387998468659575 -0.03794787228475661 0.9294557085636185 -0.3669768995557645 0.03794787228475661 -0.9294557085636185 0.3669768995557645</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"10\" source=\"#ID1727\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1725\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1723\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1724\"/>\r\n                </vertices>\r\n                <triangles count=\"6\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1725\"/>\r\n                    <p>0 1 2 3 4 5 1 6 2 3 7 4 1 8 6 7 9 4</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1728\">\r\n            <mesh>\r\n                <source id=\"ID1729\">\r\n                    <float_array count=\"18\" id=\"ID1732\">-0.6544483304023743 1.382906556129456 -0.03208892792463303 -0.6791197061538696 1.404064536094666 -0.02896468713879585 -0.6528294682502747 1.384758353233337 -0.01757699251174927 -0.6528294682502747 1.384758353233337 -0.01757699251174927 -0.6791197061538696 1.404064536094666 -0.02896468713879585 -0.6544483304023743 1.382906556129456 -0.03208892792463303</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1732\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1730\">\r\n                    <float_array count=\"18\" id=\"ID1733\">-0.6295653120525944 -0.7587756278652171 0.1670540763281906 -0.6295653120525944 -0.7587756278652171 0.1670540763281906 -0.6295653120525944 -0.7587756278652171 0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"6\" source=\"#ID1733\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1731\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1729\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1730\"/>\r\n                </vertices>\r\n                <triangles count=\"2\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1731\"/>\r\n                    <p>0 1 2 3 4 5</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1734\">\r\n            <mesh>\r\n                <source id=\"ID1735\">\r\n                    <float_array count=\"4554\" id=\"ID1739\">-0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5850709080696106 1.396236777305603 -0.1415597796440125 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5850709080696106 1.396236777305603 -0.1415597796440125 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5960053205490112 1.388214826583862 -0.1377354264259338 -0.5960053205490112 1.388214826583862 -0.1377354264259338 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.5746597647666931 1.392412900924683 -0.1467487365007401 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5746597647666931 1.392412900924683 -0.1467487365007401 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5881686210632324 1.382356405258179 -0.1426282227039337 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5881686210632324 1.382356405258179 -0.1426282227039337 -0.5819917321205139 1.427334427833557 -0.1494816094636917 -0.5819917321205139 1.427334427833557 -0.1494816094636917 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.605396568775177 1.375316143035889 -0.1379894018173218 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.605396568775177 1.375316143035889 -0.1379894018173218 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6099938750267029 1.382491946220398 -0.1334818005561829 -0.6099938750267029 1.382491946220398 -0.1334818005561829 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.6249552369117737 1.372067928314209 -0.1330464780330658 -0.6249552369117737 1.372067928314209 -0.1330464780330658 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.5907177329063416 1.436359405517578 -0.1509662568569183 -0.5907177329063416 1.436359405517578 -0.1509662568569183 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6258568167686462 1.37988018989563 -0.1289798319339752 -0.6258568167686462 1.37988018989563 -0.1289798319339752 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6449195742607117 1.372947692871094 -0.1280253380537033 -0.6449195742607117 1.372947692871094 -0.1280253380537033 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.603263258934021 1.443111658096314 -0.1520082503557205 -0.603263258934021 1.443111658096314 -0.1520082503557205 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6420464515686035 1.380591630935669 -0.1244172155857086 -0.6420464515686035 1.380591630935669 -0.1244172155857086 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.6569705605506897 1.384566307067871 -0.119984433054924 -0.6569705605506897 1.384566307067871 -0.119984433054924 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6633379459381104 1.377706408500671 -0.1231223493814468 -0.6633379459381104 1.377706408500671 -0.1231223493814468 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6183810234069824 1.446958065032959 -0.15275639295578 -0.6183810234069824 1.446958065032959 -0.15275639295578 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6158870458602905 1.454949855804443 -0.1569075584411621 -0.6158870458602905 1.454949855804443 -0.1569075584411621 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6691690683364868 1.391404628753662 -0.1158596873283386 -0.6691690683364868 1.391404628753662 -0.1158596873283386 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6784166097640991 1.386274456977844 -0.1186821758747101 -0.6784166097640991 1.386274456977844 -0.1186821758747101 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6346040964126587 1.447518587112427 -0.1533942818641663 -0.6346040964126587 1.447518587112427 -0.1533942818641663 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6358919143676758 1.455586194992065 -0.1570864319801331 -0.6358919143676758 1.455586194992065 -0.1570864319801331 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6774526238441467 1.400427103042603 -0.1121946573257446 -0.6774526238441467 1.400427103042603 -0.1121946573257446 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6503424048423767 1.444744110107422 -0.1541148126125336 -0.6503424048423767 1.444744110107422 -0.1541148126125336 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6552913784980774 1.452123165130615 -0.1573689877986908 -0.6552913784980774 1.452123165130615 -0.1573689877986908 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6930937767028809 1.41014289855957 -0.1115392148494721 -0.6930937767028809 1.41014289855957 -0.1115392148494721 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6640493273735046 1.438929200172424 -0.1551009118556976 -0.6640493273735046 1.438929200172424 -0.1551009118556976 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.672182023525238 1.444900512695313 -0.1579820066690445 -0.672182023525238 1.444900512695313 -0.1579820066690445 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6912596821784973 1.423226833343506 -0.1090674251317978 -0.6912596821784973 1.423226833343506 -0.1090674251317978 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6794900298118591 1.421321630477905 -0.1066007241606712 -0.6794900298118591 1.421321630477905 -0.1066007241606712 -0.6743879318237305 1.430635929107666 -0.1565102338790894 -0.6743879318237305 1.430635929107666 -0.1565102338790894 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6848939657211304 1.434637069702148 -0.1591162979602814 -0.6848939657211304 1.434637069702148 -0.1591162979602814 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6730406284332275 1.431132555007935 -0.1047087833285332 -0.6730406284332275 1.431132555007935 -0.1047087833285332 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6833488345146179 1.435347318649292 -0.1073383688926697 -0.6833488345146179 1.435347318649292 -0.1073383688926697 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6922057271003723 1.422344446182251 -0.1609204709529877 -0.6922057271003723 1.422344446182251 -0.1609204709529877 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6623038053512573 1.439197421073914 -0.1033507362008095 -0.6623038053512573 1.439197421073914 -0.1033507362008095 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.6699572801589966 1.445349335670471 -0.1062754094600678 -0.6699572801589966 1.445349335670471 -0.1062754094600678 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6933844089508057 1.409244656562805 -0.1634690910577774 -0.6933844089508057 1.409244656562805 -0.1634690910577774 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6483189463615418 1.444727420806885 -0.1024002805352211 -0.6483189463615418 1.444727420806885 -0.1024002805352211 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6528607606887817 1.452198028564453 -0.1057026162743568 -0.6528607606887817 1.452198028564453 -0.1057026162743568 -0.6772618293762207 1.39987325668335 -0.1641806960105896 -0.6772618293762207 1.39987325668335 -0.1641806960105896 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6882098317146301 1.396625757217407 -0.1667627543210983 -0.6882098317146301 1.396625757217407 -0.1667627543210983 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6333565711975098 1.45525586605072 -0.1054370924830437 -0.6333565711975098 1.45525586605072 -0.1054370924830437 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6324572563171387 1.447163939476013 -0.1016970723867416 -0.6324572563171387 1.447163939476013 -0.1016970723867416 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6687233448028565 1.391040802001953 -0.1678927093744278 -0.6687233448028565 1.391040802001953 -0.1678927093744278 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6775147318840027 1.385725855827332 -0.1707536578178406 -0.6775147318840027 1.385725855827332 -0.1707536578178406 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6133941411972046 1.454185128211975 -0.1052539274096489 -0.6133941411972046 1.454185128211975 -0.1052539274096489 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6162789463996887 1.446246385574341 -0.1010573506355286 -0.6162789463996887 1.446246385574341 -0.1010573506355286 -0.6559849381446838 1.384477019309998 -0.1720629781484604 -0.6559849381446838 1.384477019309998 -0.1720629781484604 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6620186567306519 1.377620458602905 -0.1752837896347046 -0.6620186567306519 1.377620458602905 -0.1752837896347046 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6013543605804443 1.442081570625305 -0.1002846360206604 -0.6013543605804443 1.442081570625305 -0.1002846360206604 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.6408566832542419 1.380822777748108 -0.1765177100896835 -0.6408566832542419 1.380822777748108 -0.1765177100896835 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6433469653129578 1.373119354248047 -0.1801735311746597 -0.6433469653129578 1.373119354248047 -0.1801735311746597 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5891588926315308 1.435057163238525 -0.09920486062765122 -0.5891588926315308 1.435057163238525 -0.09920486062765122 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.6246308088302612 1.380454540252686 -0.1810832619667053 -0.6246308088302612 1.380454540252686 -0.1810832619667053 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6233323812484741 1.37267804145813 -0.1851973384618759 -0.6233323812484741 1.37267804145813 -0.1851973384618759 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5808806419372559 1.42584764957428 -0.09766633808612824 -0.5808806419372559 1.42584764957428 -0.09766633808612824 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.6084317564964294 1.383298873901367 -0.1856234967708588 -0.6084317564964294 1.383298873901367 -0.1856234967708588 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6034061312675476 1.376229882240295 -0.1901844590902329 -0.6034061312675476 1.376229882240295 -0.1901844590902329 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5943745374679565 1.389306902885437 -0.189885824918747 -0.5943745374679565 1.389306902885437 -0.189885824918747 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5861319303512573 1.383688688278198 -0.1948245465755463 -0.5861319303512573 1.383688688278198 -0.1948245465755463 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5841846466064453 1.397872924804688 -0.1936603933572769 -0.5841846466064453 1.397872924804688 -0.1936603933572769 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.586337149143219 1.394140601158142 -0.08941585570573807 -0.586337149143219 1.394140601158142 -0.08941585570573807 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5761085748672485 1.390118598937988 -0.09458494186401367 -0.5761085748672485 1.390118598937988 -0.09458494186401367 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.597230851650238 1.385961890220642 -0.08555353432893753 -0.597230851650238 1.385961890220642 -0.08555353432893753 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5895075798034668 1.380048990249634 -0.09043119847774506 -0.5895075798034668 1.380048990249634 -0.09043119847774506 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6113255023956299 1.380364418029785 -0.0812884196639061 -0.6113255023956299 1.380364418029785 -0.0812884196639061 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6068654656410217 1.373271226882935 -0.08584757149219513 -0.6068654656410217 1.373271226882935 -0.08584757149219513 -0.5818657279014587 1.429222106933594 -0.2015324234962463 -0.5818657279014587 1.429222106933594 -0.2015324234962463 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.6264719963073731 1.370048642158508 -0.08082878589630127 -0.6264719963073731 1.370048642158508 -0.08082878589630127 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.627228856086731 1.377870798110962 -0.07677979022264481 -0.627228856086731 1.377870798110962 -0.07677979022264481 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.5907652378082275 1.438162326812744 -0.2029987573623657 -0.5907652378082275 1.438162326812744 -0.2029987573623657 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.646413266658783 1.371087551116943 -0.0758097916841507 -0.646413266658783 1.371087551116943 -0.0758097916841507 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6433968544006348 1.378713488578796 -0.07221866399049759 -0.6433968544006348 1.378713488578796 -0.07221866399049759 -0.6034278273582459 1.444821834564209 -0.2040233165025711 -0.6034278273582459 1.444821834564209 -0.2040233165025711 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.6582387089729309 1.382810711860657 -0.06779345870018005 -0.6582387089729309 1.382810711860657 -0.06779345870018005 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6647380590438843 1.376140356063843 -0.07095810770988464 -0.6647380590438843 1.376140356063843 -0.07095810770988464 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6186198592185974 1.448546290397644 -0.2047647386789322 -0.6186198592185974 1.448546290397644 -0.2047647386789322 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6162691712379456 1.45654559135437 -0.2088989764451981 -0.6162691712379456 1.45654559135437 -0.2088989764451981 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.6703106760978699 1.389740109443665 -0.06368611007928848 -0.6703106760978699 1.389740109443665 -0.06368611007928848 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6796504855155945 1.384695649147034 -0.06649493426084518 -0.6796504855155945 1.384695649147034 -0.06649493426084518 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6348575949668884 1.448981881141663 -0.2054028511047363 -0.6348575949668884 1.448981881141663 -0.2054028511047363 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6362943053245544 1.457031488418579 -0.2090783268213272 -0.6362943053245544 1.457031488418579 -0.2090783268213272 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6784234642982483 1.398842453956604 -0.060040432959795 -0.6784234642982483 1.398842453956604 -0.060040432959795 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6505376100540161 1.446078181266785 -0.2061298489570618 -0.6505376100540161 1.446078181266785 -0.2061298489570618 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6556281447410584 1.453407168388367 -0.2093694508075714 -0.6556281447410584 1.453407168388367 -0.2093694508075714 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6938823461532593 1.408680319786072 -0.05940676108002663 -0.6938823461532593 1.408680319786072 -0.05940676108002663 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6641404628753662 1.440156102180481 -0.2071295976638794 -0.6641404628753662 1.440156102180481 -0.2071295976638794 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6723766326904297 1.446055293083191 -0.2099965065717697 -0.6723766326904297 1.446055293083191 -0.2099965065717697 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6918065547943115 1.421743154525757 -0.05696588382124901 -0.6918065547943115 1.421743154525757 -0.05696588382124901 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6800680756568909 1.419736385345459 -0.05449339374899864 -0.6800680756568909 1.419736385345459 -0.05449339374899864 -0.6742206811904907 1.431780219078064 -0.2085531204938889 -0.6742206811904907 1.431780219078064 -0.2085531204938889 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6849071979522705 1.435693502426148 -0.2111567407846451 -0.6849071979522705 1.435693502426148 -0.2111567407846451 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6734410524368286 1.429511189460754 -0.05262438207864761 -0.6734410524368286 1.429511189460754 -0.05262438207864761 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6836695075035095 1.433806657791138 -0.05526319518685341 -0.6836695075035095 1.433806657791138 -0.05526319518685341 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6919834613800049 1.423349499702454 -0.2129876613616943 -0.6919834613800049 1.423349499702454 -0.2129876613616943 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.6625518202781677 1.437491416931152 -0.05128387361764908 -0.6625518202781677 1.437491416931152 -0.05128387361764908 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.670270562171936 1.443693280220032 -0.05421211943030357 -0.670270562171936 1.443693280220032 -0.05421211943030357 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6929225921630859 1.410237550735474 -0.2155666798353195 -0.6929225921630859 1.410237550735474 -0.2155666798353195 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.6484687328338623 1.442898869514465 -0.05034679174423218 -0.6484687328338623 1.442898869514465 -0.05034679174423218 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6529207229614258 1.45041811466217 -0.05366069078445435 -0.6529207229614258 1.45041811466217 -0.05366069078445435 -0.6766313910484314 1.401006579399109 -0.2162990570068359 -0.6766313910484314 1.401006579399109 -0.2162990570068359 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6333166360855103 1.45330548286438 -0.05340726673603058 -0.6333166360855103 1.45330548286438 -0.05340726673603058 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6325675249099731 1.445207118988037 -0.04965006932616234 -0.6325675249099731 1.445207118988037 -0.04965006932616234 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6677297353744507 1.392238020896912 -0.2200373858213425 -0.6677297353744507 1.392238020896912 -0.2200373858213425 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6766144037246704 1.386852860450745 -0.2229033708572388 -0.6766144037246704 1.386852860450745 -0.2229033708572388 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.6133754849433899 1.452083706855774 -0.05322098359465599 -0.6133754849433899 1.452083706855774 -0.05322098359465599 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6164035201072693 1.444173455238342 -0.04900713264942169 -0.6164035201072693 1.444173455238342 -0.04900713264942169 -0.6550570130348206 1.385769128799439 -0.224215105175972 -0.6550570130348206 1.385769128799439 -0.224215105175972 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6611210703849793 1.378874778747559 -0.2274495214223862 -0.6611210703849793 1.378874778747559 -0.2274495214223862 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6015651226043701 1.439891576766968 -0.04822826012969017 -0.6015651226043701 1.439891576766968 -0.04822826012969017 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.6398611068725586 1.382240414619446 -0.228678435087204 -0.6398611068725586 1.382240414619446 -0.228678435087204 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6422072649002075 1.374526381492615 -0.232350692152977 -0.6422072649002075 1.374526381492615 -0.232350692152977 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5897339582443237 1.432587265968323 -0.04706352949142456 -0.5897339582443237 1.432587265968323 -0.04706352949142456 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5824712514877319 1.422901391983032 -0.04536456242203713 -0.5824712514877319 1.422901391983032 -0.04536456242203713 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.5822021961212158 1.401564002037048 -0.0403386652469635 -0.5822021961212158 1.401564002037048 -0.0403386652469635 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.5894622206687927 1.391803979873657 -0.03692591562867165 -0.5894622206687927 1.391803979873657 -0.03692591562867165 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5795128345489502 1.387503027915955 -0.04206120222806931 -0.5795128345489502 1.387503027915955 -0.04206120222806931 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.6008565425872803 1.383934259414673 -0.03299903497099876 -0.6008565425872803 1.383934259414673 -0.03299903497099876 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5935401320457459 1.3777996301651 -0.03782991692423821 -0.5935401320457459 1.3777996301651 -0.03782991692423821 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6152828931808472 1.378727078437805 -0.02869041077792645 -0.6152828931808472 1.378727078437805 -0.02869041077792645 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6113107800483704 1.371376752853394 -0.03312573954463005 -0.6113107800483704 1.371376752853394 -0.03312573954463005 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6310753226280212 1.368846535682678 -0.02815037220716476 -0.6310753226280212 1.368846535682678 -0.02815037220716476 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6313201785087585 1.376682281494141 -0.02416513673961163 -0.6313201785087585 1.376682281494141 -0.02416513673961163 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6508672833442688 1.370474815368652 -0.0231905784457922 -0.6508672833442688 1.370474815368652 -0.0231905784457922 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.6473941802978516 1.377981305122376 -0.01961001008749008 -0.6473941802978516 1.377981305122376 -0.01961001008749008 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.661943793296814 1.382484555244446 -0.01521891355514526 -0.661943793296814 1.382484555244446 -0.01521891355514526 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.668872058391571 1.376001477241516 -0.01832914911210537 -0.668872058391571 1.376001477241516 -0.01832914911210537 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6735398173332214 1.389763116836548 -0.01116631925106049 -0.6735398173332214 1.389763116836548 -0.01116631925106049 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6832011342048645 1.384974122047424 -0.01393519341945648 -0.6832011342048645 1.384974122047424 -0.01393519341945648 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.681041955947876 1.399080157279968 -0.007593415677547455 -0.681041955947876 1.399080157279968 -0.007593415677547455 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6958399415016174 1.409468173980713 -0.007031377404928207 -0.6958399415016174 1.409468173980713 -0.007031377404928207 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6929180026054382 1.422368407249451 -0.00469767302274704 -0.6929180026054382 1.422368407249451 -0.00469767302274704 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.681103527545929 1.420044422149658 -0.002224501222372055 -0.681103527545929 1.420044422149658 -0.002224501222372055 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.674067497253418 1.429614067077637 -0.000420156866312027 -0.674067497253418 1.429614067077637 -0.000420156866312027 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6840076446533203 1.434201598167419 -0.00309058278799057 -0.6840076446533203 1.434201598167419 -0.00309058278799057 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6626696586608887 1.43729043006897 0.0008590742945671082 -0.6626696586608887 1.43729043006897 0.0008590742945671082 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6699816584587097 1.443707466125488 -0.002117268741130829 -0.6699816584587097 1.443707466125488 -0.002117268741130829 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6482548713684082 1.442306041717529 0.001752506941556931 -0.6482548713684082 1.442306041717529 0.001752506941556931 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6522186994552612 1.449938297271729 -0.001617971807718277 -0.6522186994552612 1.449938297271729 -0.001617971807718277 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6324552297592163 1.452283263206482 -0.001388352364301682 -0.6324552297592163 1.452283263206482 -0.001388352364301682 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6322213411331177 1.444160461425781 0.002431094646453857 -0.6322213411331177 1.444160461425781 0.002431094646453857 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6323062181472778 1.447459578514099 -0.004692345857620239</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1518\" source=\"#ID1739\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1736\">\r\n                    <float_array count=\"4554\" id=\"ID1740\">-0.5353189689301536 0.6828703396715899 0.4971133680563867 -0.7116816668819402 0.7019417498003985 0.02805325134985364 -0.7372469264351943 0.3797266189146804 0.5588154116964603 0.7372469264351943 -0.3797266189146804 -0.5588154116964603 0.7116816668819402 -0.7019417498003985 -0.02805325134985364 0.5353189689301536 -0.6828703396715899 -0.4971133680563867 -0.7293845581637016 0.4062527308477669 0.5504151932778325 0.7293845581637016 -0.4062527308477669 -0.5504151932778325 -0.8551392002274356 0.1137071511555724 -0.5057742895901941 -0.8413516623732291 0.1893757458970763 -0.5062254508494508 0.8413516623732291 -0.1893757458970763 0.5062254508494508 0.8551392002274356 -0.1137071511555724 0.5057742895901941 -0.3217757869612445 0.832205408561372 0.4515467870405812 0.3217757869612445 -0.832205408561372 -0.4515467870405812 0.3800002390550608 -0.01453535679333304 0.9248721758821527 0.3792474588825147 -0.05516985565409254 0.9236490956842116 0.3750021875470372 0.0907887093952834 0.9225674878193333 -0.3750021875470372 -0.0907887093952834 -0.9225674878193333 -0.3792474588825147 0.05516985565409254 -0.9236490956842116 -0.3800002390550608 0.01453535679333304 -0.9248721758821527 -0.8189126874245672 -0.02916183642036883 0.5731767595355419 0.8189126874245672 0.02916183642036883 -0.5731767595355419 -0.8259665171436808 -0.2403013172063103 -0.5099358680328832 0.8259665171436808 0.2403013172063103 0.5099358680328832 -0.7524198665918472 0.4659225089093442 -0.4655969931706268 0.7524198665918472 -0.4659225089093442 0.4655969931706268 0.3666685901632206 -0.1470439171092801 0.9186578424140705 0.3567386434992287 -0.1797019643206095 0.9167577347661948 -0.3567386434992287 0.1797019643206095 -0.9167577347661948 -0.3666685901632206 0.1470439171092801 -0.9186578424140705 -0.4686152157660842 0.8829385217699244 0.02862422622966481 0.4686152157660842 -0.8829385217699244 -0.02862422622966481 0.3628037800051905 0.1115734467219724 0.9251620307819192 -0.3628037800051905 -0.1115734467219724 -0.9251620307819192 -0.8229383511352589 0.02580793656121492 0.5675442014867508 0.8229383511352589 -0.02580793656121492 -0.5675442014867508 -0.8318585706090238 -0.2056643422248446 -0.5154740505995754 0.8318585706090238 0.2056643422248446 0.5154740505995754 0.3131170613773171 -0.1234346884321168 -0.9416589528943586 0.2544879259100693 -0.3209843162467294 -0.9122526866442273 0.2994944615908431 -0.1347978860984816 -0.9445277112820946 -0.2994944615908431 0.1347978860984816 0.9445277112820946 -0.2544879259100693 0.3209843162467294 0.9122526866442273 -0.3131170613773171 0.1234346884321168 0.9416589528943586 0.1524219605567499 -0.4664428658503491 -0.8713200323861203 0.2471285876267311 -0.2985187141514338 -0.9218535884179179 -0.2471285876267311 0.2985187141514338 0.9218535884179179 -0.1524219605567499 0.4664428658503491 0.8713200323861203 0.3282794195216551 -0.2624290987257349 0.9073938455050947 -0.3282794195216551 0.2624290987257349 -0.9073938455050947 -0.122860978971227 0.8950334705384974 0.4287426576188154 0.122860978971227 -0.8950334705384974 -0.4287426576188154 0.5589821522530445 -0.6499000334403392 -0.5149455310970281 0.711230906598061 -0.7025125433725948 -0.02503445433534567 0.9359990946108151 -0.3517769230944942 -0.01259727216125266 -0.9359990946108151 0.3517769230944942 0.01259727216125266 -0.711230906598061 0.7025125433725948 0.02503445433534567 -0.5589821522530445 0.6499000334403392 0.5149455310970281 0.3329966026074757 0.2202533584349048 0.9168433458067001 -0.3329966026074757 -0.2202533584349048 -0.9168433458067001 0.3289736070380834 -0.8033560225578793 -0.4963823797158163 0.4661256861641913 -0.8841396442277655 -0.03199897190164542 -0.4661256861641913 0.8841396442277655 0.03199897190164542 -0.3289736070380834 0.8033560225578793 0.4963823797158163 -0.830657908451834 -0.5565950976711568 0.01446846138536951 0.830657908451834 0.5565950976711568 -0.01446846138536951 -0.6945189613429058 -0.5290913125569488 -0.4875508130563794 0.6945189613429058 0.5290913125569488 0.4875508130563794 0.3139216253142795 0.05128699424629939 -0.9480626864196382 -0.3139216253142795 -0.05128699424629939 0.9480626864196382 -0.5643116170852814 0.7140481388037558 -0.4143520897660429 0.5643116170852814 -0.7140481388037558 0.4143520897660429 0.1306455717262345 -0.8661952539451892 -0.4823251150740073 0.2464346718766853 -0.9684732639848411 -0.0364621645487298 -0.2464346718766853 0.9684732639848411 0.0364621645487298 -0.1306455717262345 0.8661952539451892 0.4823251150740073 0.3138444079746425 -0.2841739681712777 0.9059507952404677 -0.3138444079746425 0.2841739681712777 -0.9059507952404677 -0.2541056583663925 0.9666073562683737 0.03317428513242991 0.2541056583663925 -0.9666073562683737 -0.03317428513242991 0.959758131596603 -0.2806597881232694 -0.009716592242106387 -0.959758131596603 0.2806597881232694 0.009716592242106387 0.3220489042849751 0.2145040039181532 0.9221022370387829 -0.3220489042849751 -0.2145040039181532 -0.9221022370387829 -0.7616229201923672 -0.3651850671952123 0.5353227009340059 0.7616229201923672 0.3651850671952123 -0.5353227009340059 0.3167666671133447 0.09266765087129925 -0.9439658813155792 -0.3167666671133447 -0.09266765087129925 0.9439658813155792 0.9848212039371086 0.1734733232016412 0.005848282931174579 0.847430815686388 0.5305694661737671 0.01889587757122743 0.8283233395337939 0.5598615346411333 0.02086880956974355 -0.8283233395337939 -0.5598615346411333 -0.02086880956974355 -0.847430815686388 -0.5305694661737671 -0.01889587757122743 -0.9848212039371086 -0.1734733232016412 -0.005848282931174579 0.9931124951697394 0.1171183894367515 0.003294661359817383 -0.9931124951697394 -0.1171183894367515 -0.003294661359817383 0.0394079364567948 -0.5380843959287724 -0.8419692378003992 -0.0394079364567948 0.5380843959287724 0.8419692378003992 -0.06290531134253218 -0.8760067052885424 -0.4781790188772527 0.06290531134253218 0.8760067052885424 0.4781790188772527 0.2570799416314827 -0.3475640482872279 0.9017256433910189 -0.2570799416314827 0.3475640482872279 -0.9017256433910189 0.07303733031478342 0.905984810453543 0.4169617147987892 -0.07303733031478342 -0.905984810453543 -0.4169617147987892 0.2700418578432375 0.3209229036352437 0.9077917629803087 -0.2700418578432375 -0.3209229036352437 -0.9077917629803087 -0.07034752157042788 -0.5595950864454855 -0.8257751300656662 0.07034752157042788 0.5595950864454855 0.8257751300656662 -0.5872928368837237 -0.8093730014725578 -0.001571060906258563 0.5872928368837237 0.8093730014725578 0.001571060906258563 -0.5098775062504932 -0.7296513068775871 -0.4556686284918101 0.5098775062504932 0.7296513068775871 0.4556686284918101 0.2828682148995004 0.2426584319855039 -0.9279560649006541 -0.2828682148995004 -0.2426584319855039 0.9279560649006541 0.6057425454555282 0.795118949920031 0.02935684082329544 -0.6057425454555282 -0.795118949920031 -0.02935684082329544 -0.3711483318994795 0.8484508572864647 -0.377332821919982 0.3711483318994795 -0.8484508572864647 0.377332821919982 -0.1787653455178137 -0.5392253898805517 -0.822969580330928 0.1787653455178137 0.5392253898805517 0.822969580330928 0.03434743098001073 -0.9987511880523433 -0.03628110181770163 -0.03434743098001073 0.9987511880523433 0.03628110181770163 0.2512313522627127 -0.3570620712199921 0.8996607610295883 -0.2512313522627127 0.3570620712199921 -0.8996607610295883 -0.04873633665124259 0.9982743393439536 0.0327584019330816 0.04873633665124259 -0.9982743393439536 -0.0327584019330816 0.2699117572865568 0.2961754200666404 0.916202905380043 -0.2699117572865568 -0.2961754200666404 -0.916202905380043 -0.581601649632432 -0.6635404058683408 0.4705886217546181 0.581601649632432 0.6635404058683408 -0.4705886217546181 0.2686374406810328 0.2880646907886809 -0.9191586693194849 -0.2686374406810328 -0.2880646907886809 0.9191586693194849 0.5932766102188829 0.8044533907604631 0.02962441326314405 -0.5932766102188829 -0.8044533907604631 -0.02962441326314405 0.1919290632645986 0.3817694565981829 0.9041102348071842 0.2022111273747708 0.3531221073613152 0.9134634296229532 -0.2022111273747708 -0.3531221073613152 -0.9134634296229532 -0.1919290632645986 -0.3817694565981829 -0.9041102348071842 -0.2823946957298136 -0.4806677635384306 -0.8301877720845023 0.2823946957298136 0.4806677635384306 0.8301877720845023 -0.2505510817790791 -0.8378345458210682 -0.4850334310623727 0.2505510817790791 0.8378345458210682 0.4850334310623727 0.1747063599861972 -0.3953529339017232 0.9017614681475766 -0.1747063599861972 0.3953529339017232 -0.9017614681475766 0.2697748537168222 0.8648085303379074 0.4234710546859796 -0.2697748537168222 -0.8648085303379074 -0.4234710546859796 -0.1692423110097001 0.9177238739089977 -0.3593604477701434 0.1692423110097001 -0.9177238739089977 0.3593604477701434 -0.3502113437466198 -0.9365369152329918 -0.01583101756233706 0.3502113437466198 0.9365369152329918 0.01583101756233706 -0.3115292871716915 -0.8473652558897481 -0.4300251461777547 0.3115292871716915 0.8473652558897481 0.4300251461777547 0.205388827498093 0.406643352909858 -0.8902003218788382 -0.205388827498093 -0.406643352909858 0.8902003218788382 0.3625328255174533 0.9313572586384038 0.03381726192182619 -0.3625328255174533 -0.9313572586384038 -0.03381726192182619 0.108793985060722 0.4030955877714338 0.9086681550124938 -0.108793985060722 -0.4030955877714338 -0.9086681550124938 0.03205668071441394 0.9319483912854097 -0.3611711023906964 0.1550582238440486 0.9873627922470425 0.03273627505463083 -0.1550582238440486 -0.9873627922470425 -0.03273627505463083 -0.03205668071441394 -0.9319483912854097 0.3611711023906964 -0.1733323927131261 -0.9842540067933552 -0.03464003099837473 0.1733323927131261 0.9842540067933552 0.03464003099837473 0.1803893504148477 -0.4056766443530178 0.8960391411558898 -0.1803893504148477 0.4056766443530178 -0.8960391411558898 -0.3631078081931655 -0.8365023170060291 0.41038590774136 0.3631078081931655 0.8365023170060291 -0.41038590774136 0.1858264884282475 0.4347832369135452 -0.8811538192037793 -0.1858264884282475 -0.4347832369135452 0.8811538192037793 0.3566792268836834 0.933613511936929 0.03384877307158488 -0.3566792268836834 -0.933613511936929 -0.03384877307158488 0.1232315634891896 0.3821018256636007 0.9158668989457766 -0.1232315634891896 -0.3821018256636007 -0.9158668989457766 0.3718843601362071 0.9277760136118621 0.03055636190002758 -0.3718843601362071 -0.9277760136118621 -0.03055636190002758 -0.3768968519524143 -0.3788861319661591 -0.8452183516654629 0.3768968519524143 0.3788861319661591 0.8452183516654629 -0.4429178293437548 -0.7517581318586216 -0.4885524614960525 0.4429178293437548 0.7517581318586216 0.4885524614960525 0.08862115089179973 -0.4049990199475744 0.91001213478509 -0.08862115089179973 0.4049990199475744 -0.91001213478509 0.4722258847312988 0.7596897966544084 0.4470728426654047 -0.4722258847312988 -0.7596897966544084 -0.4470728426654047 -0.134938504780879 -0.9904778400910421 -0.02729923471610317 0.134938504780879 0.9904778400910421 0.02729923471610317 -0.1148107547558477 -0.9010139105177175 -0.4183209576939255 0.1148107547558477 0.9010139105177175 0.4183209576939255 0.1350521351926248 0.8787867419773857 -0.4577060005119932 -0.1350521351926248 -0.8787867419773857 0.4577060005119932 0.1391888030242485 0.9896178014931639 0.03582016304421101 -0.1391888030242485 -0.9896178014931639 -0.03582016304421101 0.02951624900057197 0.3883425462900116 0.9210422671006617 -0.02951624900057197 -0.3883425462900116 -0.9210422671006617 0.2379798019051767 0.8911011038891297 -0.3863993226349491 -0.2379798019051767 -0.8911011038891297 0.3863993226349491 -0.4018013786684738 -0.915489799739539 -0.02083455478219574 0.4018013786684738 0.915489799739539 0.02083455478219574 0.1000383512200405 -0.4249379089738234 0.899677776652358 -0.1000383512200405 0.4249379089738234 -0.899677776652358 -0.1492596146027678 -0.9164518185855611 0.3712649076600842 0.1492596146027678 0.9164518185855611 -0.3712649076600842 0.08635964884196243 0.5299307916689104 -0.8436322463568203 -0.08635964884196243 -0.5299307916689104 0.8436322463568203 0.03901238681598718 0.3769247126752178 0.9254219549209021 -0.03901238681598718 -0.3769247126752178 -0.9254219549209021 0.66763790654427 0.5690493336977597 0.4800442495888477 -0.66763790654427 -0.5690493336977597 -0.4800442495888477 0.6097889567518674 0.7922517439862796 0.02223965768998332 -0.6097889567518674 -0.7922517439862796 -0.02223965768998332 -0.4545744276476597 -0.2369390745980475 -0.8586163081711316 0.4545744276476597 0.2369390745980475 0.8586163081711316 -0.6358506402087751 -0.5907760021941187 -0.4966665668007316 0.6358506402087751 0.5907760021941187 0.4966665668007316 0.00749911142197426 -0.3776641182089101 0.9259122945211211 -0.00749911142197426 0.3776641182089101 -0.9259122945211211 0.06861230926749032 -0.9970217984127046 -0.03521199379300232 -0.06861230926749032 0.9970217984127046 0.03521199379300232 0.08052275145707243 -0.9028239222570414 -0.4224038966418208 -0.08052275145707243 0.9028239222570414 0.4224038966418208 -0.05901818176364425 0.8987960722577277 -0.4343759601029908 0.05901818176364425 -0.8987960722577277 0.4343759601029908 -0.07262520675025015 0.9967081587927398 0.03603367231452105 0.07262520675025015 -0.9967081587927398 -0.03603367231452105 -0.04179386715432833 0.3419093409135336 0.9388031078263212 0.04179386715432833 -0.3419093409135336 -0.9388031078263212 0.01503614499995169 -0.4057302007656598 0.913869202090867 -0.01503614499995169 0.4057302007656598 -0.913869202090867 0.4517132567859688 0.7788055852563449 -0.4352206268288938 -0.4517132567859688 -0.7788055852563449 0.4352206268288938 -0.6412872954209069 -0.7670508228513946 -0.01958672751474826 0.6412872954209069 0.7670508228513946 0.01958672751474826 0.05432148557558725 -0.9322541936396561 0.3577028021222869 -0.05432148557558725 0.9322541936396561 -0.3577028021222869 -0.02124807053412244 0.5780698800169537 -0.8157105695746265 0.02124807053412244 -0.5780698800169537 0.8157105695746265 -0.04350194301247607 0.3322406106058186 0.94219093479953 0.04350194301247607 -0.3322406106058186 -0.94219093479953 -0.06242001613278259 -0.3162789065065942 0.9466104768514747 0.06242001613278259 0.3162789065065942 -0.9466104768514747 0.8151773183089368 0.2813300280037586 0.5062996692257016 -0.8151773183089368 -0.2813300280037586 -0.5062996692257016 0.8494885713735113 0.5275888639950153 0.004376950335583665 -0.8494885713735113 -0.5275888639950153 -0.004376950335583665 -0.4986857171682205 -0.05461584421987939 -0.8650604979147801 0.4986857171682205 0.05461584421987939 0.8650604979147801 -0.843949667442519 -0.5361152936893975 -0.01814802182037343 0.843949667442519 0.5361152936893975 0.01814802182037343 0.2769529753733652 -0.9598229062639651 -0.04513355783489734 -0.2769529753733652 0.9598229062639651 0.04513355783489734 0.2862393451175762 -0.8449469473619248 -0.4518093552046329 -0.2862393451175762 0.8449469473619248 0.4518093552046329 -0.2515009257361038 0.8702961530422076 -0.4234759619551234 0.2515009257361038 -0.8702961530422076 0.4234759619551234 -0.2850039247627784 0.9578553119967536 0.03586034229360154 0.2850039247627784 -0.9578553119967536 -0.03586034229360154 -0.1022808584520593 0.264536745673741 0.9589363566903991 0.1022808584520593 -0.264536745673741 -0.9589363566903991 -0.8727572602942931 -0.4877882954168163 -0.01890353030404927 0.8727572602942931 0.4877882954168163 0.01890353030404927 -0.06500642786178341 -0.3441907809959636 0.9366466092470732 0.06500642786178341 0.3441907809959636 -0.9366466092470732 0.6576526325481181 0.5643559704775162 -0.4989943421411817 -0.6576526325481181 -0.5643559704775162 0.4989943421411817 -0.4964681475591983 -0.01406714647408659 -0.8679409506695802 0.4964681475591983 0.01406714647408659 0.8679409506695802 0.254427399178376 -0.8957836151161926 0.3644700446356216 -0.254427399178376 0.8957836151161926 -0.3644700446356216 -0.1346648842095394 0.5837574737799822 -0.8006825717891233 0.1346648842095394 -0.5837574737799822 0.8006825717891233 -0.1124521561141192 0.2448665363620736 0.9630134432889953 0.1124521561141192 -0.2448665363620736 -0.9630134432889953 -0.8819778059525112 0.007569424246116371 -0.4712301493153602 0.8819778059525112 -0.007569424246116371 0.4712301493153602 -0.1171381695292323 -0.229944623273741 0.9661284176893038 0.1171381695292323 0.229944623273741 -0.9661284176893038 0.859798158835566 -0.06609950503679232 0.5063378136154376 -0.859798158835566 0.06609950503679232 -0.5063378136154376 0.8025644541246544 0.1985618941639249 -0.5625508609553718 -0.8025644541246544 -0.1985618941639249 0.5625508609553718 -0.494378423462553 0.1452899853896314 -0.8570185497176601 0.494378423462553 -0.1452899853896314 0.8570185497176601 0.5011239244892839 -0.8639969818054694 -0.0488265064846754 -0.5011239244892839 0.8639969818054694 0.0488265064846754 0.4954003925555833 -0.7178949844613637 -0.4890861297777648 -0.4954003925555833 0.7178949844613637 0.4890861297777648 -0.4523293940591098 0.7826867124956889 -0.4275507330748126 0.4523293940591098 -0.7826867124956889 0.4275507330748126 -0.5159942670472942 0.8561861757210363 0.02636567614366192 0.5159942670472942 -0.8561861757210363 -0.02636567614366192 -0.1456472171251264 0.1552833927624011 0.9770741814600896 0.1456472171251264 -0.1552833927624011 -0.9770741814600896 -0.9975822073775493 -0.06940109617524032 -0.003636945615651953 0.9975822073775493 0.06940109617524032 0.003636945615651953 -0.129892882441727 -0.2399529132593199 0.9620553198799667 0.129892882441727 0.2399529132593199 -0.9620553198799667 0.8574507231435583 -0.02494746157140876 0.513960972780747 -0.8574507231435583 0.02494746157140876 -0.513960972780747 0.7992126797112316 0.2325406128191567 -0.5542417847640897 -0.7992126797112316 -0.2325406128191567 0.5542417847640897 0.4545739921537308 -0.8001041289772173 0.3914024379727705 -0.4545739921537308 0.8001041289772173 -0.3914024379727705 -0.2485432565694079 0.5432058971079742 -0.8019685797841424 0.2485432565694079 -0.5432058971079742 0.8019685797841424 -0.1547000786466975 0.122265600892958 0.9803667724402889 0.1547000786466975 -0.122265600892958 -0.9803667724402889 -0.43865510712441 0.3279444950865583 -0.8366804080030169 0.43865510712441 -0.3279444950865583 0.8366804080030169 -0.8139420852380522 0.3699313426435741 -0.4479387051910715 0.8139420852380522 -0.3699313426435741 0.4479387051910715 -0.1540751705135024 -0.1214397525775982 0.9805678091417884 0.1540751705135024 0.1214397525775982 -0.9805678091417884 0.7859497821586822 -0.3952523166457131 0.4754561453077631 -0.7859497821586822 0.3952523166457131 -0.4754561453077631 0.9306717204499473 -0.3631548007207968 -0.04437047969285109 -0.9306717204499473 0.3631548007207968 0.04437047969285109 0.7418183026015727 -0.6687046187249083 -0.05039582146663192 -0.7418183026015727 0.6687046187249083 0.05039582146663192 0.6931794090547595 -0.4794791752210309 -0.5381468455652734 -0.6931794090547595 0.4794791752210309 0.5381468455652734 -0.6572340711368572 0.6157650527922096 -0.4345995576351638 0.6572340711368572 -0.6157650527922096 0.4345995576351638 -0.751992946766318 0.6588005018606172 0.02210218907503439 0.751992946766318 -0.6588005018606172 -0.02210218907503439 -0.1709436353647587 0.02372407100715416 0.9849951482028365 0.1709436353647587 -0.02372407100715416 -0.9849951482028365 0.8069895019006633 -0.1634979180636875 -0.5674824883738342 -0.8069895019006633 0.1634979180636875 0.5674824883738342 -0.9307864040379604 0.3653393253321558 0.01280028999389669 0.9307864040379604 -0.3653393253321558 -0.01280028999389669 -0.1665198172244957 -0.1041882674261949 0.9805182075832394 0.1665198172244957 0.1041882674261949 -0.9805182075832394 0.6462009509831134 -0.6271481419195555 0.4348672659966132 -0.6462009509831134 0.6271481419195555 -0.4348672659966132 -0.3568877880871619 0.4535396019386854 -0.8166596207647049 0.3568877880871619 -0.4535396019386854 0.8166596207647049 -0.1683220456462901 -0.008533414432395442 0.9856951200992998 0.1683220456462901 0.008533414432395442 -0.9856951200992998 0.7170105024864666 -0.6952010685266518 -0.05090592935510006 -0.7170105024864666 0.6952010685266518 0.05090592935510006 -0.3464687979461342 0.4660128317092822 -0.8141200235420186 0.3464687979461342 -0.4660128317092822 0.8141200235420186 -0.6354932974717718 0.6397462620713476 -0.4322880856953994 0.6354932974717718 -0.6397462620713476 0.4322880856953994 -0.168577867003286 0.005739587349743737 0.9856716288367425 0.168577867003286 -0.005739587349743737 -0.9856716288367425 0.6279427851002537 -0.6490591178411477 0.4294299945134337 -0.6279427851002537 0.6490591178411477 -0.4294299945134337 0.7973154094603279 -0.3587566901921653 0.4853676699981904 -0.7973154094603279 0.3587566901921653 -0.4853676699981904 0.8133779826593525 -0.1226121451898211 -0.5686673185412999 -0.8133779826593525 0.1226121451898211 0.5686673185412999 -0.8277402359618674 0.3350628304934467 -0.450087770764228 0.8277402359618674 -0.3350628304934467 0.450087770764228 -0.9459898466309302 0.3239974634609624 0.0113513762183776 0.9459898466309302 -0.3239974634609624 -0.0113513762183776 -0.1643183079610741 -0.119171920733218 0.9791820806048104 0.1643183079610741 0.119171920733218 -0.9791820806048104 0.6747170807039695 -0.5099989790625136 -0.533533412600848 -0.6747170807039695 0.5099989790625136 0.533533412600848 -0.725972627130354 0.6873611937007985 0.02232339695622613 0.725972627130354 -0.6873611937007985 -0.02232339695622613 -0.1700308140684207 0.03942891935419392 0.984649624275453 0.1700308140684207 -0.03942891935419392 -0.984649624275453 0.7985834038097226 -0.3635569042956527 0.4796779383071929 -0.7985834038097226 0.3635569042956527 -0.4796779383071929 0.800566496546902 -0.1772960399466202 -0.5724154075720408 -0.800566496546902 0.1772960399466202 0.5724154075720408 -0.446245637034375 0.3107982363495508 -0.8392075355415926 0.446245637034375 -0.3107982363495508 0.8392075355415926 -0.1512172839060151 -0.1336391484561072 0.9794252963080001 0.1512172839060151 0.1336391484561072 -0.9794252963080001 0.4336525392393297 -0.8129875064606352 0.3885830536065618 -0.4336525392393297 0.8129875064606352 -0.3885830536065618 0.4768952456949725 -0.8776622754333116 -0.04774782628302089 -0.4768952456949725 0.8776622754333116 0.04774782628302089 -0.2380118979020678 0.552806908475288 -0.7985955537060361 0.2380118979020678 -0.552806908475288 0.7985955537060361 -0.4293463423448363 0.7959637255735328 -0.4267358268135128 0.4293463423448363 -0.7959637255735328 0.4267358268135128 -0.1533145387346087 0.1385497839304223 0.9784163784327343 0.1533145387346087 -0.1385497839304223 -0.9784163784327343 0.8569334536926627 0.01557625494484925 0.5151916499946968 -0.8569334536926627 -0.01557625494484925 -0.5151916499946968 0.7895676334283633 0.2718021557206546 -0.550187731949685 -0.7895676334283633 -0.2718021557206546 0.550187731949685 -0.8795852430685808 -0.0329580402854965 -0.4745983225386761 0.8795852430685808 0.0329580402854965 0.4745983225386761 -0.9931778911233629 -0.1165080322167977 -0.004853350669279085 0.9931778911233629 0.1165080322167977 0.004853350669279085 -0.1241290899677848 -0.2521934869959305 0.9596824548467078 0.1241290899677848 0.2521934869959305 -0.9596824548467078 -0.1439966388252694 0.1695488524553405 0.9749452059670339 0.1439966388252694 -0.1695488524553405 -0.9749452059670339 0.4731664328371595 -0.736776185545258 -0.4829848644104051 -0.4731664328371595 0.736776185545258 0.4829848644104051 -0.4914489871680581 0.8706058050981024 0.02287848642229128 0.4914489871680581 -0.8706058050981024 -0.02287848642229128 0.8609412706265437 -0.02970954024259701 0.5078360677920839 -0.8609412706265437 0.02970954024259701 -0.5078360677920839 0.7938613775106779 0.2406491885984124 -0.5584550844282598 -0.7938613775106779 -0.2406491885984124 0.5584550844282598 -0.4981259669748733 0.1224026569180195 -0.8584218721612101 0.4981259669748733 -0.1224026569180195 0.8584218721612101 -0.1121252230112493 -0.2398226420513322 0.9643199856500934 0.1121252230112493 0.2398226420513322 -0.9643199856500934 -0.1063043294759756 0.2553976401196332 0.9609742113896634 0.1063043294759756 -0.2553976401196332 -0.9609742113896634 0.2334684884898862 -0.9020954626144305 0.3629273222185187 -0.2334684884898862 0.9020954626144305 -0.3629273222185187 0.2546896491755812 -0.9661216117807919 -0.04173983532435711 -0.2546896491755812 0.9661216117807919 0.04173983532435711 -0.1226026292931632 0.585552722073672 -0.8013093066740932 0.1226026292931632 -0.585552722073672 0.8013093066740932 -0.2322472405560263 0.8745440311703633 -0.4257158169464715 0.2322472405560263 -0.8745440311703633 0.4257158169464715 0.8298662567632869 0.5578930055353653 0.008797173432836682 -0.8298662567632869 -0.5578930055353653 -0.008797173432836682 0.6381703126544575 0.592111941513551 -0.4920793642935712 -0.6381703126544575 -0.592111941513551 0.4920793642935712 -0.7845248083818697 -0.3705894045310878 -0.4971763452565743 0.7845248083818697 0.3705894045310878 0.4971763452565743 -0.8530929822079671 -0.52099985370008 -0.02813389685081899 0.8530929822079671 0.52099985370008 0.02813389685081899 -0.05741992810478202 -0.3531132626594803 0.9338168854708177 0.05741992810478202 0.3531132626594803 -0.9338168854708177 -0.264185815821361 0.9638994062974804 0.03322332400839634 0.264185815821361 -0.9638994062974804 -0.03322332400839634 -0.09618190820093919 0.2735306385631074 0.9570423346446514 0.09618190820093919 -0.2735306385631074 -0.9570423346446514 0.2628326176968178 -0.8574330901829026 -0.4424110203578083 -0.2628326176968178 0.8574330901829026 0.4424110203578083 0.8054401400841557 0.3138185242718401 0.502776406134039 -0.8054401400841557 -0.3138185242718401 -0.502776406134039 -0.501200536774284 -0.07684651976347012 -0.861912196419921 0.501200536774284 0.07684651976347012 0.861912196419921 -0.05593971998397868 -0.3240611364504881 0.9443808170280313 0.05593971998397868 0.3240611364504881 -0.9443808170280313 -0.03897942897021398 0.8991737147912199 -0.4358523084092979 0.03897942897021398 -0.8991737147912199 0.4358523084092979 -0.03524905886950984 0.3387172216289925 0.9402277105152507 0.03524905886950984 -0.3387172216289925 -0.9402277105152507 0.03383327999562884 -0.9336000909487275 0.3567158243549972 -0.03383327999562884 0.9336000909487275 -0.3567158243549972 0.0479021511982165 -0.998254380176327 -0.03454817461690651 -0.0479021511982165 0.998254380176327 0.03454817461690651 -0.009891742364935379 0.5749528165630037 -0.8181267702252841 0.009891742364935379 -0.5749528165630037 0.8181267702252841 0.5854825862187838 0.8104134846393168 0.02097915988127646 -0.5854825862187838 -0.8104134846393168 -0.02097915988127646 0.434067993827172 0.7959996662965257 -0.4218643241501631 -0.434067993827172 -0.7959996662965257 0.4218643241501631 -0.6153609956428084 -0.6092809005341072 -0.5001076177042686 0.6153609956428084 0.6092809005341072 0.5001076177042686 -0.6198781599184149 -0.7840896173444694 -0.03089561180432931 0.6198781599184149 0.7840896173444694 0.03089561180432931 0.02408235691846478 -0.4097166028327391 0.9118949201791022 -0.02408235691846478 0.4097166028327391 -0.9118949201791022 -0.05033591546484884 0.9980440499490416 0.03707249621526213 0.05033591546484884 -0.9980440499490416 -0.03707249621526213 -0.03482879739876794 0.3480452959611305 0.9368305219361102 0.03482879739876794 -0.3480452959611305 -0.9368305219361102 0.06078628308626855 -0.9051840193303721 -0.4206505900833479 -0.06078628308626855 0.9051840193303721 0.4206505900833479 0.648217847914167 0.6029108452383217 0.4650936834010306 -0.648217847914167 -0.6029108452383217 -0.4650936834010306 -0.4478877733719995 -0.2541595320630561 -0.8572044532813398 0.4478877733719995 0.2541595320630561 0.8572044532813398 0.01557869864805954 -0.3810414790504169 0.9244266847032833 -0.01557869864805954 0.3810414790504169 -0.9244266847032833 0.09715697212672433 0.5223084558067829 -0.8472038714264122 -0.09715697212672433 -0.5223084558067829 0.8472038714264122 0.1553565177626282 0.8736758638857383 -0.4610366983789674 -0.1553565177626282 -0.8736758638857383 0.4610366983789674 0.04774289829217883 0.3792087845578838 0.9240786294340948 -0.04774289829217883 -0.3792087845578838 -0.9240786294340948 -0.1710229132487364 -0.9112131171823146 0.3747556780341089 0.1710229132487364 0.9112131171823146 -0.3747556780341089 -0.1565797064201739 -0.9873287205753677 -0.02578358129468785 0.1565797064201739 0.9873287205753677 0.02578358129468785 0.3468281485629135 0.9374124389299637 0.03111518445708742 -0.3468281485629135 -0.9374124389299637 -0.03111518445708742 0.2152227048684301 0.8989314492511036 -0.3815775633556394 -0.2152227048684301 -0.8989314492511036 0.3815775633556394 -0.422906601071092 -0.7599157768747203 -0.4936375379034566 0.422906601071092 0.7599157768747203 0.4936375379034566 -0.377041447076373 -0.9255427595003252 -0.03479004919625452 0.377041447076373 0.9255427595003252 0.03479004919625452 0.1086249523253039 -0.4243391732106769 0.8989643406783191 -0.1086249523253039 0.4243391732106769 -0.8989643406783191 -0.1350243989572021 -0.8980221998058066 -0.4187177334938018 0.1350243989572021 0.8980221998058066 0.4187177334938018 0.1612344870590588 0.9862852115314621 0.03528344792025651 -0.1612344870590588 -0.9862852115314621 -0.03528344792025651 0.03730783496796066 0.3914303137574686 0.9194511596173736 -0.03730783496796066 -0.3914303137574686 -0.9194511596173736 0.4512722265729608 0.7735778610677042 0.4448939990489849 -0.4512722265729608 -0.7735778610677042 -0.4448939990489849 -0.3680378476573901 -0.3929392604520207 -0.8427021302258199 0.3680378476573901 0.3929392604520207 0.8427021302258199 0.09728700059972795 -0.405499946012708 0.9089032034809864 -0.09728700059972795 0.405499946012708 -0.9089032034809864 -0.3736452978695597 -0.9274591404343351 -0.0144476366500685 0.3736452978695597 0.9274591404343351 0.0144476366500685 0.1954704969969504 0.4220554389144019 -0.8852460060833579 -0.1954704969969504 -0.4220554389144019 0.8852460060833579 0.3804125365405834 0.9242038214090115 0.03366895507346956 -0.3804125365405834 -0.9242038214090115 -0.03366895507346956 0.1318310967062573 0.3805434644254365 0.9153181051548757 -0.1318310967062573 -0.3805434644254365 -0.9153181051548757 -0.3857750282049133 -0.8236703394848209 0.4156257925904723 0.3857750282049133 0.8236703394848209 -0.4156257925904723 0.133803156203462 0.9904540603065167 0.03312808192948819 -0.133803156203462 -0.9904540603065167 -0.03312808192948819 0.01112162573014972 0.932918757925959 -0.3599151296500387 -0.01112162573014972 -0.932918757925959 0.3599151296500387 -0.2325374771575537 -0.8441249328219719 -0.4830935929046272 0.2325374771575537 0.8441249328219719 0.4830935929046272 -0.1545310923684629 -0.9873169013180834 -0.03640711280872882 0.1545310923684629 0.9873169013180834 0.03640711280872882 0.1883975201061494 -0.4022503373112764 0.89593584622495 -0.1883975201061494 0.4022503373112764 -0.89593584622495 -0.3322803417933081 -0.8385545505459972 -0.431759238715656 0.3322803417933081 0.8385545505459972 0.431759238715656 0.2152734814352987 0.3916917509483593 -0.8945584946943014 -0.2152734814352987 -0.3916917509483593 0.8945584946943014 0.3868386225116456 0.9215265932979312 0.0338322032685134 -0.3868386225116456 -0.9215265932979312 -0.0338322032685134 0.1173933242861763 0.4026912250949326 0.9077767262078177 -0.1173933242861763 -0.4026912250949326 -0.9077767262078177 0.2489647452821473 0.8717144270282413 0.4220551069675863 -0.2489647452821473 -0.8717144270282413 -0.4220551069675863 -0.2718742560936834 -0.4882450598316793 -0.8292774869869953 0.2718742560936834 0.4882450598316793 0.8292774869869953 0.1836766769243425 -0.3924427081114895 0.901250020362913 -0.1836766769243425 0.3924427081114895 -0.901250020362913 -0.6033486848119686 -0.6385057915997583 0.4777873152661486 0.6033486848119686 0.6385057915997583 -0.4777873152661486 -0.613133194869655 -0.7899793293964897 0.000586920098347499 0.613133194869655 0.7899793293964897 -0.000586920098347499 0.2753573485624073 0.269490624296329 -0.9227963664910346 -0.2753573485624073 -0.269490624296329 0.9227963664910346 0.6186599220804722 0.7850965417642933 0.02972071535362874 -0.6186599220804722 -0.7850965417642933 -0.02972071535362874 0.2101194044082203 0.348677204744304 0.913386031633303 -0.2101194044082203 -0.348677204744304 -0.913386031633303 -0.06459543488668709 0.9973987985734438 0.03198540911181907 0.06459543488668709 -0.9973987985734438 -0.03198540911181907 -0.1834693850567989 0.9148456478580954 -0.3597171462996748 0.1834693850567989 -0.9148456478580954 0.3597171462996748 -0.04704796442226061 -0.8766443618860301 -0.4788331147875603 0.04704796442226061 0.8766443618860301 0.4788331147875603 0.05242499028212754 -0.9979360278861268 -0.03708509998339386 -0.05242499028212754 0.9979360278861268 0.03708509998339386 0.2558833332126828 -0.3504308325034475 0.9009561317927238 -0.2558833332126828 0.3504308325034475 -0.9009561317927238 0.2006801611871336 0.3777280010185098 0.9039076447029677 -0.2006801611871336 -0.3777280010185098 -0.9039076447029677 -0.5305646299865623 -0.7131920398338357 -0.4581029226329765 0.5305646299865623 0.7131920398338357 0.4581029226329765 0.2881041820876135 0.2233323426540353 -0.9311920559091385 -0.2881041820876135 -0.2233323426540353 0.9311920559091385 0.6320379801169027 0.7743845161625741 0.02926794863671614 -0.6320379801169027 -0.7743845161625741 -0.02926794863671614 0.05520749936104614 0.9079850299239638 0.415349632777349 -0.05520749936104614 -0.9079850299239638 -0.415349632777349 -0.1693070499459147 -0.5434446410981264 -0.8221940433379094 0.1693070499459147 0.5434446410981264 0.8221940433379094 0.2624175750312578 -0.3400271074477818 0.9030606748803808 -0.2624175750312578 0.3400271074477818 -0.9030606748803808 0.2784905568168335 0.2831290588019411 0.9177586533646944 -0.2784905568168335 -0.2831290588019411 -0.9177586533646944 -0.7799975549569794 -0.3127583210905691 0.5420203380406886 0.7799975549569794 0.3127583210905691 -0.5420203380406886 -0.8613574413193473 -0.5077569331240402 0.01569251886269644 0.8613574413193473 0.5077569331240402 -0.01569251886269644 0.3204140413190193 0.06508380150322665 -0.9450391213635034 -0.3204140413190193 -0.06508380150322665 0.9450391213635034 0.8570042708707975 0.5149543685538287 0.01912270944559269 -0.8570042708707975 -0.5149543685538287 -0.01912270944559269 -0.2668350307977969 0.9632227108355886 0.03163977986141616 0.2668350307977969 -0.9632227108355886 -0.03163977986141616 -0.3847975276529873 0.8412080114665909 -0.3798683247607947 0.3847975276529873 -0.8412080114665909 0.3798683247607947 0.1463569553225811 -0.8636853266535993 -0.4823145220206099 -0.1463569553225811 0.8636853266535993 0.4823145220206099 0.2615119302468758 -0.9645779176513866 -0.03465474163615081 -0.2615119302468758 0.9645779176513866 0.03465474163615081 0.312813937715214 -0.2727711947504667 0.909803998499405 -0.312813937715214 0.2727711947504667 -0.909803998499405 0.8772392349435124 0.4797279675852498 0.01767489157665823 -0.8772392349435124 -0.4797279675852498 -0.01767489157665823 0.2801739029134954 0.3069287177025624 0.9095588746066304 -0.2801739029134954 -0.3069287177025624 -0.9095588746066304 -0.7175182984891687 -0.493062063844748 -0.4919931834185976 0.7175182984891687 0.493062063844748 0.4919931834185976 0.3153872024323705 0.02589512471056812 -0.9486096958486705 -0.3153872024323705 -0.02589512471056812 0.9486096958486705 -0.1392729079951383 0.8940030201217805 0.4258657735856609 0.1392729079951383 -0.8940030201217805 -0.4258657735856609 -0.06132960783264231 -0.559245999409194 -0.826730059540541 0.06132960783264231 0.559245999409194 0.826730059540541 0.3280053829650535 -0.2498508836382989 0.9110362257841945 -0.3280053829650535 0.2498508836382989 -0.9110362257841945 0.9954166754633305 0.09554236411270736 0.004159190941202639 -0.9954166754633305 -0.09554236411270736 -0.004159190941202639 0.3316023839629258 0.1947600294281073 0.9230971725052932 -0.3316023839629258 -0.1947600294281073 -0.9230971725052932 -0.817567595914628 0.09710393958585177 0.5675861617651391 0.817567595914628 -0.09710393958585177 -0.5675861617651391 -0.845892723795817 -0.1331824473670872 -0.5164570994212462 0.845892723795817 0.1331824473670872 0.5164570994212462 0.3083737805748481 -0.1573865694169123 -0.9381551466687964 -0.3083737805748481 0.1573865694169123 0.9381551466687964 -0.49906066751783 0.8659886361325957 0.03165647210073535 0.49906066751783 -0.8659886361325957 -0.03165647210073535 -0.595683679261985 0.6858494732127083 -0.4180567597285746 0.595683679261985 -0.6858494732127083 0.4180567597285746 0.3620936228730396 -0.7880808320770243 -0.4978120231447428 -0.3620936228730396 0.7880808320770243 0.4978120231447428 0.4980653832134243 -0.8665764896036617 -0.03124198634305158 -0.4980653832134243 0.8665764896036617 0.03124198634305158 0.3599605548031149 -0.1644806461059633 0.9183542432212084 -0.3599605548031149 0.1644806461059633 -0.9183542432212084 0.2943113679946609 -0.1612759056071542 -0.9420036629120419 -0.2943113679946609 0.1612759056071542 0.9420036629120419 0.9995125382383325 0.03116340676367468 0.001878292641629105 -0.9995125382383325 -0.03116340676367468 -0.001878292641629105 0.3430705686096357 0.1961097339489665 0.9186095782237014 -0.3430705686096357 -0.1961097339489665 -0.9186095782237014 -0.817429378877535 0.04638033217416691 0.5741585803027777 0.817429378877535 -0.04638033217416691 -0.5741585803027777 -0.8407811832775961 -0.1768953411198223 -0.5116591053977513 0.8407811832775961 0.1768953411198223 0.5116591053977513 -0.35129808944451 0.817004074140153 0.457267968691257 0.35129808944451 -0.817004074140153 -0.457267968691257 0.05310044443485681 -0.5295514525895975 -0.8466141989484161 -0.05310044443485681 0.5295514525895975 0.8466141989484161 0.371910903977818 -0.1265529056336114 0.9196013492693953 -0.371910903977818 0.1265529056336114 -0.9196013492693953 0.2430188581667099 -0.3409755324468221 -0.9081175699478317 -0.2430188581667099 0.3409755324468221 0.9081175699478317 0.9393103414085213 -0.3428645216659327 -0.01183225700355211 -0.9393103414085213 0.3428645216659327 0.01183225700355211 0.3671618082724976 0.09387191368893687 0.9254081641991531 -0.3671618082724976 -0.09387191368893687 -0.9254081641991531 -0.710551092386904 0.4479071478781239 0.5426751624936063 0.710551092386904 -0.4479071478781239 -0.5426751624936063 -0.8322539404838799 0.2410568820350278 -0.4992443872219347 0.8322539404838799 -0.2410568820350278 0.4992443872219347 -0.7492711674649847 0.6617218743863794 0.02677458803110484 0.7492711674649847 -0.6617218743863794 -0.02677458803110484 -0.7717817241406854 0.4268254570173437 -0.4713523093444719 0.7717817241406854 -0.4268254570173437 0.4713523093444719 0.170483809089675 -0.4188156083364765 -0.8919241879509842 -0.170483809089675 0.4188156083364765 0.8919241879509842 0.7457553687214293 -0.6658114120340799 -0.02332581463421711 -0.7457553687214293 0.6658114120340799 0.02332581463421711 0.3833096998644326 -0.03329288471623132 0.9230196410787314 -0.3833096998644326 0.03329288471623132 -0.9230196410787314 -0.8487259779749151 0.1691092802598101 -0.501065131136196 0.8487259779749151 -0.1691092802598101 0.501065131136196 0.2375776990483421 -0.3172714586584776 -0.9180934911192963 -0.2375776990483421 0.3172714586584776 0.9180934911192963 0.9142794687668824 -0.4048141260264062 -0.01478432821686986 -0.9142794687668824 0.4048141260264062 0.01478432821686986 0.3773359827893207 0.07296130221177047 0.923197814377818 -0.3773359827893207 -0.07296130221177047 -0.923197814377818 -0.71627631917822 0.4292064200544956 0.5502091271221374 0.71627631917822 -0.4292064200544956 -0.5502091271221374 -0.563440059942193 0.6543362690745136 0.5043603333193283 0.563440059942193 -0.6543362690745136 -0.5043603333193283 0.1654907986919666 -0.4499909829468489 -0.8775653313656048 -0.1654907986919666 0.4499909829468489 0.8775653313656048 0.7849570711114606 -0.6191700521832394 -0.02169891682831128 -0.7849570711114606 0.6191700521832394 0.02169891682831128 0.3812310444774221 0.001923529054748386 0.9244777935475949 -0.3812310444774221 -0.001923529054748386 -0.9244777935475949 -0.706244167523754 0.7074598653524543 0.02682749996118028 0.706244167523754 -0.7074598653524543 -0.02682749996118028 0.1468982078016113 -0.4681795663506381 -0.8713373687593129 -0.1468982078016113 0.4681795663506381 0.8713373687593129 0.5453458991786713 -0.6596964530242664 -0.5171058306731888 -0.5453458991786713 0.6596964530242664 0.5171058306731888 0.3801228128996285 -0.0195318704039094 0.9247297730428056 -0.3801228128996285 0.0195318704039094 -0.9247297730428056 -0.5268314951105831 0.6908844891673766 0.4951032199324509 0.5268314951105831 -0.6908844891673766 -0.4951032199324509 -0.7478765392265949 0.3581085305286898 0.5589623980528871 0.7478765392265949 -0.3581085305286898 -0.5589623980528871 -0.8574561927620363 0.09222928633258869 -0.5062238993139449 0.8574561927620363 -0.09222928633258869 0.5062238993139449 0.2503982173729226 -0.2899535615827029 -0.9237032341948189 -0.2503982173729226 0.2899535615827029 0.9237032341948189 0.9458582625252803 -0.3243810247306563 -0.01136213040530748 -0.9458582625252803 0.3243810247306563 0.01136213040530748 0.3740624146983042 0.1012565533149434 0.9218592193609889 -0.3740624146983042 -0.1012565533149434 -0.9218592193609889 -0.745636455100407 0.4794183673176139 -0.462800503353024 0.745636455100407 -0.4794183673176139 0.462800503353024 0.7019971799635735 -0.711598225048078 -0.02877369339544687 -0.7019971799635735 0.711598225048078 0.02877369339544687 0.3797672618496636 -0.05575662695424759 0.9234002519914611 -0.3797672618496636 0.05575662695424759 -0.9234002519914611 -0.7412895916953542 0.3839107668710773 0.5505472407746644 0.7412895916953542 -0.3839107668710773 -0.5505472407746644 -0.8464357023243537 0.1648019192866333 -0.5063466492731238 0.8464357023243537 -0.1648019192866333 0.5063466492731238 0.2584249755419185 -0.308893984350796 -0.9153147209829244 -0.2584249755419185 0.308893984350796 0.9153147209829244 0.9667076585006691 -0.2557249669506977 -0.009002459342761676 -0.9667076585006691 0.2557249669506977 0.009002459342761676 0.3621324315713503 0.1188542361564693 0.9245181299206 -0.3621324315713503 -0.1188542361564693 -0.9245181299206 -0.319828480820247 0.8330315432288135 0.4514069016331435 0.319828480820247 -0.8330315432288135 -0.4514069016331435 -0.467388207130944 0.8835831911143512 0.02879250275856144 0.467388207130944 -0.8835831911143512 -0.02879250275856144 0.03704287157454465 -0.5386864577944474 -0.8416915859472416 -0.03704287157454465 0.5386864577944474 0.8416915859472416 0.3259175095422821 -0.8059100577942621 -0.4942537361718227 -0.3259175095422821 0.8059100577942621 0.4942537361718227 0.3683376420512646 -0.1471633872619588 0.917970761461225 -0.3683376420512646 0.1471633872619588 -0.917970761461225 -0.8187865510945885 -0.04530477039692678 0.5723076633471812 0.8187865510945885 0.04530477039692678 -0.5723076633471812 -0.8222367497664668 -0.2530950633661906 -0.5097740835243987 0.8222367497664668 0.2530950633661906 0.5097740835243987 0.3007567281968733 -0.1278839000026509 -0.9450878787522481 -0.3007567281968733 0.1278839000026509 0.9450878787522481 0.9912244872234244 0.1320756401905205 0.005480985032222161 -0.9912244872234244 -0.1320756401905205 -0.005480985032222161 0.333509771844488 0.2262200175126377 0.9152025654251738 -0.333509771844488 -0.2262200175126377 -0.9152025654251738 0.3572217274096596 -0.1813045293836095 0.9162539522924015 -0.3572217274096596 0.1813045293836095 -0.9162539522924015 -0.565300419429448 0.7136719270249551 -0.4136518057127 0.565300419429448 -0.7136719270249551 0.4136518057127 0.4589697805821287 -0.8877956677493337 -0.03414077969096929 -0.4589697805821287 0.8877956677493337 0.03414077969096929 -0.8236095268115204 0.01010747496905179 0.5670671797018883 0.8236095268115204 -0.01010747496905179 -0.5670671797018883 -0.8284159133026785 -0.2197540306626502 -0.5152040766476993 0.8284159133026785 0.2197540306626502 0.5152040766476993 0.3143300407786073 -0.1151558513428136 -0.9423034306239319 -0.3143300407786073 0.1151558513428136 0.9423034306239319 0.9814083768292785 0.1917744503380455 0.007756164442642895 -0.9814083768292785 -0.1917744503380455 -0.007756164442642895 0.3229203741173248 0.2179533747215781 0.9209879252343119 -0.3229203741173248 -0.2179533747215781 -0.9209879252343119 0.3242541706614489 -0.2627750901835281 0.9087400534738713 -0.3242541706614489 0.2627750901835281 -0.9087400534738713 -0.1173928708922645 0.8977239858185802 0.4246299084493154 0.1173928708922645 -0.8977239858185802 -0.4246299084493154 -0.2470209679738535 0.9685272980215588 0.03058617936779985 0.2470209679738535 -0.9685272980215588 -0.03058617936779985 -0.07434429498979471 -0.5620855008319186 -0.8237310335036563 0.07434429498979471 0.5620855008319186 0.8237310335036563 0.1220193310967036 -0.8647783357873065 -0.4871033902485693 -0.1220193310967036 0.8647783357873065 0.4871033902485693 -0.8216091760256223 -0.5698910467663091 0.01351135396984268 0.8216091760256223 0.5698910467663091 -0.01351135396984268 -0.6877399972820246 -0.5387620609649704 -0.4865687390321107 0.6877399972820246 0.5387620609649704 0.4865687390321107 0.3137535991503929 0.05872408916709184 -0.9476867416882385 -0.3137535991503929 -0.05872408916709184 0.9476867416882385 0.8392336626659065 0.5433720470069278 0.02082493649135057 -0.8392336626659065 -0.5433720470069278 -0.02082493649135057 0.2680747318234752 0.3235036174975843 0.9074587305347547 -0.2680747318234752 -0.3235036174975843 -0.9074587305347547 0.2377472828951252 -0.9701780601104388 -0.04723093431566958 -0.2377472828951252 0.9701780601104388 0.04723093431566958 0.3107193740576593 -0.2832717599607755 0.907309528547971 -0.3107193740576593 0.2832717599607755 -0.907309528547971 -0.3635071034682662 0.851689493842403 -0.3774752863520772 0.3635071034682662 -0.851689493842403 0.3774752863520772 -0.7564394689297171 -0.3791257143731235 0.5329756303494525 0.7564394689297171 0.3791257143731235 -0.5329756303494525 0.3158554290317395 0.1010314995531506 -0.9434129446054985 -0.3158554290317395 -0.1010314995531506 0.9434129446054985 0.8201439144736518 0.5717406329886114 0.02183135684324419 -0.8201439144736518 -0.5717406329886114 -0.02183135684324419 0.2680273659666383 0.2977098905819318 0.9162587801176478 -0.2680273659666383 -0.2977098905819318 -0.9162587801176478 -0.06941768949860945 -0.8752680117319243 -0.4786304336578678 0.06941768949860945 0.8752680117319243 0.4786304336578678 0.2548562942491333 -0.3498302492799214 0.9014804856292495 -0.2548562942491333 0.3498302492799214 -0.9014804856292495 0.07989374694636887 0.905524056762171 0.4167051377459245 -0.07989374694636887 -0.905524056762171 -0.4167051377459245 -0.04083407666331518 0.9986109237387494 0.03329866622998426 0.04083407666331518 -0.9986109237387494 -0.03329866622998426 -0.1825168070008863 -0.5375088204783604 -0.8232690222947557 0.1825168070008863 0.5375088204783604 0.8232690222947557 -0.5778166565947228 -0.8161636802074702 -0.002181392191840661 0.5778166565947228 0.8161636802074702 0.002181392191840661 -0.5021055235161622 -0.7356162437443379 -0.4547073621506819 0.5021055235161622 0.7356162437443379 0.4547073621506819 0.2805007666319367 0.2496917903147441 -0.9268081407542307 -0.2805007666319367 -0.2496917903147441 0.9268081407542307 0.5959037904870111 0.8025039654624023 0.02976672471622715 -0.5959037904870111 -0.8025039654624023 -0.02976672471622715 0.1886906347700052 0.3827643441045949 0.9043712187106974 -0.1886906347700052 -0.3827643441045949 -0.9043712187106974 0.02641701591325398 -0.9989898112601752 -0.03635241764447635 -0.02641701591325398 0.9989898112601752 0.03635241764447635 0.2495514332803363 -0.3597419611084889 0.8990605116261908 -0.2495514332803363 0.3597419611084889 -0.8990605116261908 -0.1610314974983271 0.9195489868697272 -0.3584668988348915 0.1610314974983271 -0.9195489868697272 0.3584668988348915 -0.5735130645200138 -0.6719746140646919 0.4685433628571327 0.5735130645200138 0.6719746140646919 -0.4685433628571327 0.265776222113249 0.2945794855482167 -0.9179247934626001 -0.265776222113249 -0.2945794855482167 0.9179247934626001 0.5837459602281524 0.8113763080652734 0.03015195893601343 -0.5837459602281524 -0.8113763080652734 -0.03015195893601343 0.1992330068427163 0.3545630541910325 0.9135596584718136 -0.1992330068427163 -0.3545630541910325 -0.9135596584718136 -0.286198125250775 -0.4777541886152585 -0.8305670161784163 0.286198125250775 0.4777541886152585 0.8305670161784163 -0.25962599946674 -0.8357038626627454 -0.4839353204008397 0.25962599946674 0.8357038626627454 0.4839353204008397 0.1711466414133597 -0.3975101723518444 0.9014956960572436 -0.1711466414133597 0.3975101723518444 -0.9014956960572436 0.2759882413612637 0.8620904505986943 0.4250065242050496 -0.2759882413612637 -0.8620904505986943 -0.4250065242050496 0.1627409593554778 0.9861125950546078 0.0331259720268841 -0.1627409593554778 -0.9861125950546078 -0.0331259720268841 -0.3416776399149192 -0.9396748590695885 -0.0163569439297154 0.3416776399149192 0.9396748590695885 0.0163569439297154 -0.3037978508011625 -0.8503116366343569 -0.4297406036817975 0.3037978508011625 0.8503116366343569 0.4297406036817975 0.2017729220895513 0.4122219067906814 -0.8884597838243995 -0.2017729220895513 -0.4122219067906814 0.8884597838243995 0.3534036074999896 0.9348125618392212 0.03509080269223711 -0.3534036074999896 -0.9348125618392212 -0.03509080269223711 0.1058950680610089 0.4040213110050124 0.9085994798667593 -0.1058950680610089 -0.4040213110050124 -0.9085994798667593 0.03904623842495032 0.9310187796789678 -0.3628765949326953 -0.03904623842495032 -0.9310187796789678 0.3628765949326953 -0.185280144163769 -0.9820270394990084 -0.03597446137839718 0.185280144163769 0.9820270394990084 0.03597446137839718 0.1773343338050253 -0.407918090695269 0.8956312663911717 -0.1773343338050253 0.407918090695269 -0.8956312663911717 -0.3548846155969388 -0.8408590923146846 0.4086721136612301 0.3548846155969388 0.8408590923146846 -0.4086721136612301 0.1821956052109466 0.439781889757753 -0.8794297304975063 -0.1821956052109466 -0.439781889757753 0.8794297304975063 0.3477969156729294 0.9369126823191033 0.03509887687690649 -0.3477969156729294 -0.9369126823191033 -0.03509887687690649 0.1203147449577395 0.3836090892651766 0.9156246112784954 -0.1203147449577395 -0.3836090892651766 -0.9156246112784954 0.3817361878603577 0.9236387664447153 0.03418935504402063 -0.3817361878603577 -0.9236387664447153 -0.03418935504402063 -0.3808561525487514 -0.3762278222568641 -0.8446308168813282 0.3808561525487514 0.3762278222568641 0.8446308168813282 -0.4502518883566059 -0.7431705871337786 -0.4949451640844119 0.4502518883566059 0.7431705871337786 0.4949451640844119 0.08537821147082986 -0.4050004694324626 0.9103214711109079 -0.08537821147082986 0.4050004694324626 -0.9103214711109079 0.4839402349904592 0.7462603074213654 0.4570529537425049 -0.4839402349904592 -0.7462603074213654 -0.4570529537425049 -0.1272823242317779 -0.9915104149325137 -0.02657643728025157 0.1272823242317779 0.9915104149325137 0.02657643728025157 -0.107485252019738 -0.9023317361563371 -0.4174258718902604 0.107485252019738 0.9023317361563371 0.4174258718902604 0.1272952337579134 0.8804963853411909 -0.4566421343498815 -0.1272952337579134 -0.8804963853411909 0.4566421343498815 0.1306568334550952 0.9907806768235814 0.03581120361693436 -0.1306568334550952 -0.9907806768235814 -0.03581120361693436 0.02655459317774895 0.3881777094386431 0.9212018885543671 -0.02655459317774895 -0.3881777094386431 -0.9212018885543671 0.2461740196361449 0.8881072047840408 -0.3881545373518912 -0.2461740196361449 -0.8881072047840408 0.3881545373518912 -0.4100851868289213 -0.9114063973479533 -0.03418359865072141 0.4100851868289213 0.9114063973479533 0.03418359865072141 0.09585588479500046 -0.4239048722954816 0.9006199579147239 -0.09585588479500046 0.4239048722954816 -0.9006199579147239 -0.1414586116089602 -0.9177243521144169 0.3711758003127884 0.1414586116089602 0.9177243521144169 -0.3711758003127884 0.08229943604642631 0.5326286561408844 -0.8423381253890837 -0.08229943604642631 -0.5326286561408844 0.8423381253890837 0.03579019274096595 0.3769091626890147 0.9255585044634567 -0.03579019274096595 -0.3769091626890147 -0.9255585044634567 0.6746750770627003 0.5584493657598201 0.4826467095846549 -0.6746750770627003 -0.5584493657598201 -0.4826467095846549 0.619528573217243 0.7846549825333663 0.02238091492700978 -0.619528573217243 -0.7846549825333663 -0.02238091492700978 -0.4569814034594899 -0.2308057509950033 -0.8590091397650129 0.4569814034594899 0.2308057509950033 0.8590091397650129 -0.6401975749858474 -0.58216510744509 -0.5012293413754696 0.6401975749858474 0.58216510744509 0.5012293413754696 0.00408306155931046 -0.3751957745293469 0.9269365994412057 -0.00408306155931046 0.3751957745293469 -0.9269365994412057 0.07706466119739523 -0.9963908167601588 -0.03558620899385377 -0.07706466119739523 0.9963908167601588 0.03558620899385377 0.0890429529909573 -0.9019492033324196 -0.4225624061966039 -0.0890429529909573 0.9019492033324196 0.4225624061966039 -0.06621635051689698 0.8987936255464268 -0.4333421438094072 0.06621635051689698 -0.8987936255464268 0.4333421438094072 -0.08027752129711639 0.996092975350629 0.03680086998322935 0.08027752129711639 -0.996092975350629 -0.03680086998322935 -0.04440117795251147 0.3395248659412713 0.9395485090212167 0.04440117795251147 -0.3395248659412713 -0.9395485090212167 0.01158391838349427 -0.4044989765681269 0.91446508451128 -0.01158391838349427 0.4044989765681269 -0.91446508451128 0.4607747597898561 0.7726062491475303 -0.4367679069240149 -0.4607747597898561 -0.7726062491475303 0.4367679069240149 -0.6528365961929814 -0.7569697116279336 -0.02830608325228319 0.6528365961929814 0.7569697116279336 0.02830608325228319 0.06271318085236688 -0.9322264024201509 0.3564000443015705 -0.06271318085236688 0.9322264024201509 -0.3564000443015705 -0.02539505075182641 0.5792832754279267 -0.8147306169567982 0.02539505075182641 -0.5792832754279267 0.8147306169567982 -0.04651188970002081 0.3295206170603162 0.9430020185814672 0.04651188970002081 -0.3295206170603162 -0.9430020185814672 -0.06473643536617336 -0.3132162085453832 0.9474728495532399 0.06473643536617336 0.3132162085453832 -0.9474728495532399 0.8189863945610214 0.267804498993347 0.5074859957110751 -0.8189863945610214 -0.267804498993347 -0.5074859957110751 0.8580747624937155 0.5135118524823926 0.00364408170257575 -0.8580747624937155 -0.5135118524823926 -0.00364408170257575 -0.4994276384374227 -0.04700378027259036 -0.8650795793479956 0.4994276384374227 0.04700378027259036 0.8650795793479956 -0.8539205796523492 -0.5200329319132497 -0.01963143835548998 0.8539205796523492 0.5200329319132497 0.01963143835548998 0.2852468130184876 -0.9574703627261206 -0.04341382457129295 -0.2852468130184876 0.9574703627261206 0.04341382457129295 0.2924335662428017 -0.8450028909434059 -0.4477194697930873 -0.2924335662428017 0.8450028909434059 0.4477194697930873 -0.2599785599269004 0.8674531651416381 -0.4241888195887405 0.2599785599269004 -0.8674531651416381 0.4241888195887405 -0.2945723042932884 0.9549914746939281 0.03490617144945838 0.2945723042932884 -0.9549914746939281 -0.03490617144945838 -0.1034209544155115 0.260833981179355 0.9598279744047434 0.1034209544155115 -0.260833981179355 -0.9598279744047434 -0.8820108241384292 -0.4708976330123468 -0.01767272831279923 0.8820108241384292 0.4708976330123468 0.01767272831279923 -0.06793973200068289 -0.3407081446211087 0.9377111244965142 0.06793973200068289 0.3407081446211087 -0.9377111244965142 0.6640962514205898 0.5539647316542878 -0.5020948565085224 -0.6640962514205898 -0.5539647316542878 0.5020948565085224 -0.4964816572811355 -0.007177603277728776 -0.8680175378381272 0.4964816572811355 0.007177603277728776 0.8680175378381272 0.2615164558810464 -0.8933693306476449 0.3653770413717801 -0.2615164558810464 0.8933693306476449 -0.3653770413717801 -0.1382161165012245 0.5831356619914788 -0.8005305146295673 0.1382161165012245 -0.5831356619914788 0.8005305146295673 -0.1141259954480732 0.2414788498438282 0.9636717398788285 0.1141259954480732 -0.2414788498438282 -0.9636717398788285 -0.8822877168491453 0.02221624459042109 -0.4701859453167663 0.8822877168491453 -0.02221624459042109 0.4701859453167663 -0.1188546313479534 -0.226015175599825 0.9668457565742957 0.1188546313479534 0.226015175599825 -0.9668457565742957 0.8587171771022855 -0.08021848991260513 0.5061321997518272 -0.8587171771022855 0.08021848991260513 -0.5061321997518272 0.80509121276603 0.182684089460753 -0.5643178737066713 -0.80509121276603 -0.182684089460753 0.5643178737066713 -0.4925833391417399 0.1528107137817175 -0.8567441506969837 0.4925833391417399 -0.1528107137817175 0.8567441506969837 0.5097604686917933 -0.8591228422745929 -0.04530128520415593 -0.5097604686917933 0.8591228422745929 0.04530128520415593 0.503262502862575 -0.7120610666436443 -0.4895874697975962 -0.503262502862575 0.7120610666436443 0.4895874697975962 -0.4603535068224687 0.7788744847979318 -0.4259450500792463 0.4603535068224687 -0.7788744847979318 0.4259450500792463 -0.5234978772167905 0.8514922081889411 0.03018264307570166 0.5234978772167905 -0.8514922081889411 -0.03018264307570166 -0.1518393415659207 0.1544949781778873 0.9762561733841388 0.1518393415659207 -0.1544949781778873 -0.9762561733841388 -0.9986618584080447 -0.05166696240940564 -0.002239990262371929 0.9986618584080447 0.05166696240940564 0.002239990262371929 -0.1318587900484524 -0.2349770160994678 0.9630156080728645 0.1318587900484524 0.2349770160994678 -0.9630156080728645 0.857028387459813 -0.04027418967984569 0.5136928388966155 -0.857028387459813 0.04027418967984569 -0.5136928388966155 0.802064657774842 0.2179832984637024 -0.5560355801020377 -0.802064657774842 -0.2179832984637024 0.5560355801020377 0.461629591813155 -0.791022940541534 0.4014733210307315 -0.461629591813155 0.791022940541534 -0.4014733210307315 -0.2525244762890936 0.5414008070120525 -0.8019454813399832 0.2525244762890936 -0.5414008070120525 0.8019454813399832 -0.1597796618615042 0.122807679034642 0.9794839118768351 0.1597796618615042 -0.122807679034642 -0.9794839118768351 -0.4353127671755993 0.3341078671532379 -0.8359872773195993 0.4353127671755993 -0.3341078671532379 0.8359872773195993 -0.8085216629104076 0.3822954044526677 -0.4473733835835125 0.8085216629104076 -0.3822954044526677 0.4473733835835125 -0.1551553136597286 -0.1168551605829648 0.9809544842082534 0.1551553136597286 0.1168551605829648 -0.9809544842082534 0.780633767826844 -0.4067753626586666 0.4744941779014527 -0.780633767826844 0.4067753626586666 -0.4744941779014527 0.9244937614473499 -0.3785567368550198 -0.04478930705659131 -0.9244937614473499 0.3785567368550198 0.04478930705659131 0.7501777083173664 -0.6593857530995007 -0.04943515503271423 -0.7501777083173664 0.6593857530995007 0.04943515503271423 0.6978756724217701 -0.4623606802271916 -0.5469845950497244 -0.6978756724217701 0.4623606802271916 0.5469845950497244 -0.6649137266292722 0.6072454867179655 -0.4349053402760593 0.6649137266292722 -0.6072454867179655 0.4349053402760593 -0.7604909755671593 0.6489453172537542 0.02287905800802799 0.7604909755671593 -0.6489453172537542 -0.02287905800802799 -0.1719481295432023 0.01942719420443318 0.984914425151717 0.1719481295432023 -0.01942719420443318 -0.984914425151717 0.8041236149092155 -0.1784768550586106 -0.567037233480945 -0.8041236149092155 0.1784768550586106 0.567037233480945 -0.9246639437465246 0.3805517200660055 0.01330336385764 0.9246639437465246 -0.3805517200660055 -0.01330336385764 -0.1673398208350277 -0.09875008188294676 0.9809412855472096 0.1673398208350277 0.09875008188294676 -0.9809412855472096 0.6515680064245015 -0.6172448359197024 0.4409851987702768 -0.6515680064245015 0.6172448359197024 -0.4409851987702768 -0.3609331625954829 0.4492091988848745 -0.8172749523728423 0.3609331625954829 -0.4492091988848745 0.8172749523728423 -0.1680954692977072 -0.01327613670707577 0.9856813163470833 0.1680954692977072 0.01327613670707577 -0.9856813163470833 0.7077312487955543 -0.70465695649397 -0.05074498145571148 -0.7077312487955543 0.70465695649397 0.05074498145571148 -0.3422913146461143 0.4701646595185103 -0.8134997534465994 0.3422913146461143 -0.4701646595185103 0.8134997534465994 -0.6285504469312564 0.6463465159876448 -0.432620523014282 0.6285504469312564 -0.6463465159876448 0.432620523014282 -0.1684919533531034 0.01077137011397833 0.9856441747614214 0.1684919533531034 -0.01077137011397833 -0.9856441747614214 0.6208555916692818 -0.6569446747327986 0.4277406090532013 -0.6208555916692818 0.6569446747327986 -0.4277406090532013 0.8016848346520146 -0.3477112372625088 0.4862081050027315 -0.8016848346520146 0.3477112372625088 -0.4862081050027315 0.8149407653504821 -0.1080939743893893 -0.5693744301166648 -0.8149407653504821 0.1080939743893893 0.5693744301166648 -0.8324361114609851 0.3218662650475636 -0.4510567899500528 0.8324361114609851 -0.3218662650475636 0.4510567899500528 -0.9513176264003224 0.3080434766497365 0.01019755821753643 0.9513176264003224 -0.3080434766497365 -0.01019755821753643 -0.1634226488672288 -0.1247288266203847 0.978639748654795 0.1634226488672288 0.1247288266203847 -0.978639748654795 0.6678545272762165 -0.5214214448413437 -0.5311214618674591 -0.6678545272762165 0.5214214448413437 0.5311214618674591 -0.7182512980189613 0.6953403055486193 0.02483812339187629 0.7182512980189613 -0.6953403055486193 -0.02483812339187629 -0.1693919375325174 0.04484508914520848 0.9845279526141134 0.1693919375325174 -0.04484508914520848 -0.9845279526141134 0.8048770154338162 -0.3506427111350812 0.4787720534389954 -0.8048770154338162 0.3506427111350812 -0.4787720534389954 0.8033666650645278 -0.1701831128983491 -0.5706484991194902 -0.8033666650645278 0.1701831128983491 0.5706484991194902 -0.449276662052396 0.3041261528388937 -0.840034382685894 0.449276662052396 -0.3041261528388937 0.840034382685894 -0.1500241186418038 -0.1381877067319115 0.9789774877564473 0.1500241186418038 0.1381877067319115 -0.9789774877564473 0.4259164727472657 -0.8178739305926825 0.3868816251767502 -0.4259164727472657 0.8178739305926825 -0.3868816251767502 0.4675417481522561 -0.8827033205932906 -0.04732400604672524 -0.4675417481522561 0.8827033205932906 0.04732400604672524 -0.2320469253631314 0.5524833462257559 -0.8005725304884679 0.2320469253631314 -0.5524833462257559 0.8005725304884679 -0.423557627267104 0.8000749581641595 -0.4248281978664779 0.423557627267104 -0.8000749581641595 0.4248281978664779 -0.1520261298610904 0.1435922819635595 0.9778902353536191 0.1520261298610904 -0.1435922819635595 -0.9778902353536191 0.8563237254984636 0.03079858925869943 0.5155202460118381 -0.8563237254984636 -0.03079858925869943 -0.5155202460118381 0.7854940101452571 0.2863170703831796 -0.5486544406392022 -0.7854940101452571 -0.2863170703831796 0.5486544406392022 -0.8789082253122669 -0.04564312127338695 -0.4748021029427568 0.8789082253122669 0.04564312127338695 0.4748021029427568 -0.9909634038787927 -0.1340025373020281 -0.005903572611154711 0.9909634038787927 0.1340025373020281 0.005903572611154711 -0.1214750110649079 -0.2566275933410345 0.9588462337740964 0.1214750110649079 0.2566275933410345 -0.9588462337740964 -0.142452558699072 0.1742583355203759 0.9743414704413209 0.142452558699072 -0.1742583355203759 -0.9743414704413209 0.4649669496611292 -0.7434136308494656 -0.4807722009330817 -0.4649669496611292 0.7434136308494656 0.4807722009330817 -0.4807005703786668 0.8763117445965224 0.03169681245525551 0.4807005703786668 -0.8763117445965224 -0.03169681245525551 0.860818501158697 -0.01639334936765001 0.5086479786251046 -0.860818501158697 0.01639334936765001 -0.5086479786251046 0.7900970044825006 0.256243834616507 -0.5568535002393426 -0.7900970044825006 -0.256243834616507 0.5568535002393426 -0.4980016540115691 0.1169037436321664 -0.8592600696683899 0.4980016540115691 -0.1169037436321664 0.8592600696683899 -0.1096713944455775 -0.2434581647668065 0.9636909812013087 0.1096713944455775 0.2434581647668065 -0.9636909812013087 -0.1039331501312693 0.2596929771875718 0.9600820058220267 0.1039331501312693 -0.2596929771875718 -0.9600820058220267 0.2255519598441016 -0.9042487363484568 0.3625748698168476 -0.2255519598441016 0.9042487363484568 -0.3625748698168476 0.2462996175769647 -0.9683051549927454 -0.04149247155709469 -0.2462996175769647 0.9683051549927454 0.04149247155709469 -0.1177075886272675 0.5855797316620933 -0.8020232549284995 0.1177075886272675 -0.5855797316620933 0.8020232549284995 -0.2245596538812725 0.8769503476001817 -0.4248894558501582 0.2245596538812725 -0.8769503476001817 0.4248894558501582 0.8181557879751343 0.574941013221297 0.007996118987057179 -0.8181557879751343 -0.574941013221297 -0.007996118987057179 0.6305745196917911 0.6022609822383443 -0.4895482452105935 -0.6305745196917911 -0.6022609822383443 0.4895482452105935 -0.4949674466025706 -0.03893954632934858 -0.8680385582077539 0.4949674466025706 0.03893954632934858 0.8680385582077539 -0.8451073230742584 -0.5342149830365645 -0.02019812826735253 0.8451073230742584 0.5342149830365645 0.02019812826735253 -0.05381835492117146 -0.3553815859925096 0.9331706773206214 0.05381835492117146 0.3553815859925096 -0.9331706773206214 -0.2549244234810441 0.9663206296739521 0.03518492545671107 0.2549244234810441 -0.9663206296739521 -0.03518492545671107 -0.09421689584469263 0.2772090208169448 0.9561790289036364 0.09421689584469263 -0.2772090208169448 -0.9561790289036364 0.2549044366570637 -0.860011990970127 -0.4420442325832825 -0.2549044366570637 0.860011990970127 0.4420442325832825 0.7993074046846863 0.3271452838378929 0.5040670948185921 -0.7993074046846863 -0.3271452838378929 -0.5040670948185921 -0.4949001898211957 -0.08217580751408803 -0.8650554541613803 0.4949001898211957 0.08217580751408803 0.8650554541613803 -0.8143883665441624 -0.5799121006899042 -0.02176106410434394 0.8143883665441624 0.5799121006899042 0.02176106410434394 -0.0528267853515411 -0.3265124915131391 0.943715488712199 0.0528267853515411 0.3265124915131391 -0.943715488712199 -0.03142267022114505 0.8992661103168952 -0.4362717944489363 0.03142267022114505 -0.8992661103168952 0.4362717944489363 -0.03222591778629572 0.3414505049292814 0.9393471365296059 0.03222591778629572 -0.3414505049292814 -0.9393471365296059 0.02593088187460911 -0.9334529941299953 0.3577612291947694 -0.02593088187460911 0.9334529941299953 -0.3577612291947694 0.04047658744709259 -0.9985690523142606 -0.03494987308757316 -0.04047658744709259 0.9985690523142606 0.03494987308757316 -0.005340848939804973 0.5750843972474491 -0.8180766537282069 0.005340848939804973 -0.5750843972474491 0.8180766537282069 0.5748670573803423 0.8178949423428396 0.02399436660696463 -0.5748670573803423 -0.8178949423428396 -0.02399436660696463 0.4214047194118107 0.8001772768590731 -0.4267720563202931 -0.4214047194118107 -0.8001772768590731 0.4267720563202931 -0.6075070051510968 -0.6169889755584409 -0.500259775248511 0.6075070051510968 0.6169889755584409 0.500259775248511 -0.6082644619063846 -0.7931893218307541 -0.02941163231452664 0.6082644619063846 0.7931893218307541 0.02941163231452664 0.02731427010381074 -0.4112080491155628 0.9111321918312783 -0.02731427010381074 0.4112080491155628 -0.9111321918312783 -0.04234697716265905 0.9984412466868483 0.03635671106684103 0.04234697716265905 -0.9984412466868483 -0.03635671106684103 -0.03223101623502139 0.3507029644867439 0.9359319378526771 0.03223101623502139 -0.3507029644867439 -0.9359319378526771 0.05359354659176144 -0.9050878967654793 -0.4218336531055313 -0.05359354659176144 0.9050878967654793 0.4218336531055313 0.6412413465959838 0.60272082229122 0.4749075128826295 -0.6412413465959838 -0.60272082229122 -0.4749075128826295 -0.4462105565441957 -0.2575226230380935 -0.8570753979972237 0.4462105565441957 0.2575226230380935 0.8570753979972237 0.01844952214499368 -0.3829088407142423 0.9236018811346676 -0.01844952214499368 0.3829088407142423 -0.9236018811346676 0.1011330725469509 0.5194724520743951 -0.8484812744975747 -0.1011330725469509 -0.5194724520743951 0.8484812744975747 0.1630294479068578 0.871814449518784 -0.4619101262425891 -0.1630294479068578 -0.871814449518784 0.4619101262425891 0.0510637975217282 0.3804469862760125 0.9233918882122364 -0.0510637975217282 -0.3804469862760125 -0.9233918882122364 -0.1789348057381016 -0.9094822423736374 0.375265753969754 0.1789348057381016 0.9094822423736374 -0.375265753969754 -0.1644532411474187 -0.9860473726968939 -0.02580136185672202 0.1644532411474187 0.9860473726968939 0.02580136185672202 0.3395373426710984 0.9400998637165698 0.03044074854427659 -0.3395373426710984 -0.9400998637165698 -0.03044074854427659 0.2080958314185695 0.9007190269975417 -0.3813153017527829 -0.2080958314185695 -0.9007190269975417 0.3813153017527829 -0.4170843605138727 -0.763075286070442 -0.4937172713236264 0.4170843605138727 0.763075286070442 0.4937172713236264 -0.3672173125572642 -0.929670628098362 -0.02939334294389833 0.3672173125572642 0.929670628098362 0.02939334294389833 0.111827054596911 -0.424651065403749 0.8984242775613538 -0.111827054596911 0.424651065403749 -0.8984242775613538 -0.1429775543358956 -0.8969391337325153 -0.4183988639268644 0.1429775543358956 0.8969391337325153 0.4183988639268644 0.1697457261997588 0.9848297526555807 0.03601036963520293 -0.1697457261997588 -0.9848297526555807 -0.03601036963520293 0.04028526280218579 0.3929503182275642 0.9186768447097243 -0.04028526280218579 -0.3929503182275642 -0.9186768447097243 0.4425252753879181 0.7806935143644559 0.4412357842153354 -0.4425252753879181 -0.7806935143644559 -0.4412357842153354 -0.3615510851970467 -0.3924085741928782 -0.8457519279864222 0.3615510851970467 0.3924085741928782 0.8457519279864222 0.1003763762971855 -0.405997808450411 0.908344847849598 -0.1003763762971855 0.405997808450411 -0.908344847849598 -0.3904713290394705 -0.9204989061760063 -0.01462548894655272 0.3904713290394705 0.9204989061760063 0.01462548894655272 0.2028376560254069 0.413744952877412 -0.8875088727818932 -0.2028376560254069 -0.413744952877412 0.8875088727818932 0.396608791264394 0.9173863486612863 0.03322279310517088 -0.396608791264394 -0.9173863486612863 -0.03322279310517088 0.1367919978862975 0.3783260601638079 0.915509334477375 -0.1367919978862975 -0.3783260601638079 -0.915509334477375 -0.4037411148157989 -0.8136336634161336 0.4183220935634858 0.4037411148157989 0.8136336634161336 -0.4183220935634858 0.2130963481630372 0.976225375381003 -0.03967320080101625 -0.2130963481630372 -0.976225375381003 0.03967320080101625 0.1082527642888195 0.9240157235623439 -0.3667100784453402 -0.1082527642888195 -0.9240157235623439 0.3667100784453402 -0.3282095679388387 -0.7677571340105247 -0.5502976128326798 0.3282095679388387 0.7677571340105247 0.5502976128326798 -0.2328766928025201 -0.9718884443470868 -0.03465974168917625 0.2328766928025201 0.9718884443470868 0.03465974168917625 0.147376313159506 -0.3971289635474629 0.9058525313930679 -0.147376313159506 0.3971289635474629 -0.9058525313930679 -0.3468889467228274 -0.831933338942228 -0.4330761805940883 0.3468889467228274 0.831933338942228 0.4330761805940883 0.2234161499957088 0.3810200301792597 -0.897167186494965 -0.2234161499957088 -0.3810200301792597 0.897167186494965 0.4038395713122486 0.9142287575762091 0.03315689163658483 -0.4038395713122486 -0.9142287575762091 -0.03315689163658483 0.1223263146597214 0.4011059037466704 0.9078272559916547 -0.1223263146597214 -0.4011059037466704 -0.9078272559916547 0.3151557714650701 0.850933809128837 0.4202243355563129 -0.3151557714650701 -0.850933809128837 -0.4202243355563129 -0.3363397734911338 -0.4604549379996871 -0.8214966870533548 0.3363397734911338 0.4604549379996871 0.8214966870533548 0.147769700001947 -0.3878723864430676 0.9097907053802509 -0.147769700001947 0.3878723864430676 -0.9097907053802509 -0.6420063779804296 -0.5914967439439237 0.4878108368375864 0.6420063779804296 0.5914967439439237 -0.4878108368375864 -0.6565684656533083 -0.7542650483841933 0.00144453994444209 0.6565684656533083 0.7542650483841933 -0.00144453994444209 0.2874140128009826 0.2414414916118539 -0.9268760388390025 -0.2874140128009826 -0.2414414916118539 0.9268760388390025 0.6582611817184929 0.7522680620784041 0.02801748417284312 -0.6582611817184929 -0.7522680620784041 -0.02801748417284312 0.2200941092028078 0.3382586534371596 0.9149533684669958 -0.2200941092028078 -0.3382586534371596 -0.9149533684669958 0.2116410019073268 0.368243600618228 0.9053202399788628 -0.2116410019073268 -0.368243600618228 -0.9053202399788628 -0.5633513745399559 -0.6828443070427693 -0.4651439359415776 0.5633513745399559 0.6828443070427693 0.4651439359415776 0.298370217248233 0.191205473160415 -0.935101962618379 -0.298370217248233 -0.191205473160415 0.935101962618379 0.6749359517078825 0.7373591867748749 0.0276204773830946 -0.6749359517078825 -0.7373591867748749 -0.0276204773830946 0.2878241731108553 0.272326905732818 0.9181477559668931 -0.2878241731108553 -0.272326905732818 -0.9181477559668931 -0.7965386423346083 -0.2532915234743957 0.5489713976190006 0.7965386423346083 0.2532915234743957 -0.5489713976190006 -0.8951956121350305 -0.445246287935769 0.01950792386714897 0.8951956121350305 0.445246287935769 -0.01950792386714897 0.3232983020271709 0.02813755581106068 -0.9458786845358804 -0.3232983020271709 -0.02813755581106068 0.9458786845358804 0.8886201215023675 0.4583095248458386 0.01751168457628765 -0.8886201215023675 -0.4583095248458386 -0.01751168457628765 0.9067694045013615 0.4212875724775627 0.01691237228210239 -0.9067694045013615 -0.4212875724775627 -0.01691237228210239 0.2923017754237066 0.2931792918416378 0.9102777460310586 -0.2923017754237066 -0.2931792918416378 -0.9102777460310586 -0.741970476744986 -0.45126640558974 -0.4958209786051158 0.741970476744986 0.45126640558974 0.4958209786051158 0.3148780279575754 -0.004851247987694989 -0.9491197463452703 -0.3148780279575754 0.004851247987694989 0.9491197463452703 0.9986408233613113 0.05204832849954173 0.002734486541561556 -0.9986408233613113 -0.05204832849954173 -0.002734486541561556 0.338159771584448 0.1884759967616518 0.9220221079381208 -0.338159771584448 -0.1884759967616518 -0.9220221079381208 -0.810222486636613 0.1385864754966381 0.5695026874017393 0.810222486636613 -0.1385864754966381 -0.5695026874017393 -0.8502769913784182 -0.1027726419431457 -0.51620424446191 0.8502769913784182 0.1027726419431457 0.51620424446191 0.3038735326440124 -0.1820268002010055 -0.9351615476306924 -0.3038735326440124 0.1820268002010055 0.9351615476306924 0.2901925836013853 -0.1816704618298906 -0.9395659145165215 -0.2901925836013853 0.1816704618298906 0.9395659145165215 0.9998134129065579 -0.01931572795425492 0.0002050017991617721 -0.9998134129065579 0.01931572795425492 -0.0002050017991617721 0.3505536682700014 0.1890931772732937 0.917254542627692 -0.3505536682700014 -0.1890931772732937 -0.917254542627692 -0.8136363054643536 0.08549797737053264 0.5750530917192472 0.8136363054643536 -0.08549797737053264 -0.5750530917192472 -0.8477387422046507 -0.145690523253534 -0.510013035519082 0.8477387422046507 0.145690523253534 0.510013035519082 0.2332790290379629 -0.3605655833137569 -0.9030910002545234 -0.2332790290379629 0.3605655833137569 0.9030910002545234 0.9227552955186689 -0.3850316805994672 -0.01653086588790668 -0.9227552955186689 0.3850316805994672 0.01653086588790668 0.3710773255409565 0.08356988843990149 0.9248338727660842 -0.3710773255409565 -0.08356988843990149 -0.9248338727660842 -0.6915776048788422 0.481449819457784 0.5384482219992104 0.6915776048788422 -0.481449819457784 -0.5384482219992104 -0.8981508096072901 0.4388332978278862 0.02739452352699584 0.8981508096072901 -0.4388332978278862 -0.02739452352699584 -0.8429540014162222 0.203978418702621 -0.497816588915996 0.8429540014162222 -0.203978418702621 0.497816588915996 0.2290286556424245 -0.3336022894551302 -0.9144700035347902 -0.2290286556424245 0.3336022894551302 0.9144700035347902 0.8927775322530374 -0.4501268218996853 -0.01827900737638643 -0.8927775322530374 0.4501268218996853 0.01827900737638643 0.3806461863454164 0.0586449495950467 0.9228592800138519 -0.3806461863454164 -0.0586449495950467 -0.9228592800138519 -0.6731385750235163 0.7390084312967923 0.02740432972295189 0.6731385750235163 -0.7390084312967923 -0.02740432972295189 0.1328489735460141 -0.4811768208942334 -0.8664987116331387 -0.1328489735460141 0.4811768208942334 0.8664987116331387 0.516198589719263 -0.6859647819407342 -0.5128268069327548 -0.516198589719263 0.6859647819407342 0.5128268069327548 0.3820636629172851 -0.03798957389201383 0.9233548341530087 -0.3820636629172851 0.03798957389201383 -0.9233548341530087 -0.4982064155529421 0.7158489907291226 0.4892346982522662 0.4982064155529421 -0.7158489907291226 -0.4892346982522662 -0.7240797982617366 0.5172808467785057 -0.456211542275461 0.7240797982617366 -0.5172808467785057 0.456211542275461 0.6700114878873773 -0.74186164789632 -0.02694255888922608 -0.6700114878873773 0.74186164789632 0.02694255888922608 0.379894693238227 -0.07528147932801071 0.9219613445907695 -0.379894693238227 0.07528147932801071 -0.9219613445907695 -0.2919623060451244 0.845665083770505 0.4467757580042115 0.2919623060451244 -0.845665083770505 -0.4467757580042115 -0.4366392706915987 0.8991736906649493 0.02885864352118438 0.4366392706915987 -0.8991736906649493 -0.02885864352118438 0.02177713585574996 -0.5441272858997885 -0.8387200087593295 -0.02177713585574996 0.5441272858997885 0.8387200087593295 0.2991010112138623 -0.8171191965929602 -0.4928030069410294 -0.2991010112138623 0.8171191965929602 0.4928030069410294 0.3640632629061393 -0.1638809515800347 0.916842938736705 -0.3640632629061393 0.1638809515800347 -0.916842938736705 0.351699520032644 -0.1960107315629559 0.9153618086423327 -0.351699520032644 0.1960107315629559 -0.9153618086423327 -0.5385204348562104 0.737321150528917 -0.4078642693654254 0.5385204348562104 -0.737321150528917 0.4078642693654254 0.4313254792109038 -0.9015926789875245 -0.03299957847583465 -0.4313254792109038 0.9015926789875245 0.03299957847583465 0.3161388477041972 -0.2763160755931569 0.9075823132592764 -0.3161388477041972 0.2763160755931569 -0.9075823132592764 -0.09028294640818048 0.9018061391263758 0.4226046344064832 0.09028294640818048 -0.9018061391263758 -0.4226046344064832 -0.2181679418180512 0.9753952588071517 0.03173071476353479 0.2181679418180512 -0.9753952588071517 -0.03173071476353479 -0.08967032070999265 -0.5583348527658186 -0.8247553732900068 0.08967032070999265 0.5583348527658186 0.8247553732900068 0.09609590767600762 -0.8714827722638359 -0.4809192803114296 -0.09609590767600762 0.8714827722638359 0.4809192803114296 0.208645464388462 -0.9773301409440586 -0.03595644298856492 -0.208645464388462 0.9773301409440586 0.03595644298856492 0.3037402224766287 -0.2968019404946466 0.9053455060740404 -0.3037402224766287 0.2968019404946466 -0.9053455060740404 -0.3354649239994378 0.8652214844413689 -0.3726326175029842 0.3354649239994378 -0.8652214844413689 0.3726326175029842 -0.09635811980048231 -0.8729912242445731 -0.4781228243249607 0.09635811980048231 0.8729912242445731 0.4781228243249607 0.2454506262031012 -0.377838807823859 0.8927439864814272 -0.2454506262031012 0.377838807823859 -0.8927439864814272 0.1068562574116552 0.9026725963806916 0.4168500017935887 -0.1068562574116552 -0.9026725963806916 -0.4168500017935887 -0.01341961262984234 0.9993629150444336 0.0330708032977326 0.01341961262984234 -0.9993629150444336 -0.0330708032977326 -0.1974089586396487 -0.532140896373992 -0.8233199678467016 0.1974089586396487 0.532140896373992 0.8233199678467016 -0.003042879031513646 -0.9993172156254773 -0.03682177944834953 0.003042879031513646 0.9993172156254773 0.03682177944834953 0.2410763476317336 -0.387128098884963 0.8899517007491239 -0.2410763476317336 0.387128098884963 -0.8899517007491239 -0.1342923521062531 0.9239445732737138 -0.3581787119355711 0.1342923521062531 -0.9239445732737138 0.3581787119355711 -0.2993802353626548 -0.4646202361375466 -0.8333663725191293 0.2993802353626548 0.4646202361375466 0.8333663725191293 -0.2850143040300812 -0.8249952226453783 -0.4880058699550152 0.2850143040300812 0.8249952226453783 0.4880058699550152 0.1571484006186686 -0.4017221510281468 0.9021771963180587 -0.1571484006186686 0.4017221510281468 -0.9021771963180587 0.3048994353963863 0.8512331346139842 0.4271281831373522 -0.3048994353963863 -0.8512331346139842 -0.4271281831373522 0.1916540383574875 0.9809149286690172 0.03278158470122235 -0.1916540383574875 -0.9809149286690172 -0.03278158470122235 0.0671884696021032 0.9289349896042631 -0.3640954471583719 -0.0671884696021032 -0.9289349896042631 0.3640954471583719 -0.2140789725420893 -0.9760632326372259 -0.03835048121069835 0.2140789725420893 0.9760632326372259 0.03835048121069835 0.1633996295092597 -0.4106962735212303 0.897011221775966 -0.1633996295092597 0.4106962735212303 -0.897011221775966 0.4114591536304653 0.9109580158340394 0.02927214172914724 -0.4114591536304653 -0.9109580158340394 -0.02927214172914724 -0.3926689146402455 -0.35857041203632 -0.8468992756446043 0.3926689146402455 0.35857041203632 0.8468992756446043 -0.4758443584816475 -0.7262158686624752 -0.4961679741821269 0.4758443584816475 0.7262158686624752 0.4961679741821269 0.07403530606453394 -0.4018766838318172 0.9126959540001656 -0.07403530606453394 0.4018766838318172 -0.9126959540001656 0.5074146196525977 0.7336990492225338 0.4519027649093994 -0.5074146196525977 -0.7336990492225338 -0.4519027649093994 0.274872235547456 0.8774438918920908 -0.3931125420365075 -0.274872235547456 -0.8774438918920908 0.3931125420365075 -0.4416336979657198 -0.8965662113422417 -0.03359621259223083 0.4416336979657198 0.8965662113422417 0.03359621259223083 0.08549088373456706 -0.4236410853674398 0.9017868592893668 -0.08549088373456706 0.4236410853674398 -0.9017868592893668 0.6984002947064492 0.5260813162216286 0.4852581550849647 -0.6984002947064492 -0.5260813162216286 -0.4852581550849647 0.652959689507299 0.7571332382136453 0.01982179282131184 -0.652959689507299 -0.7571332382136453 -0.01982179282131184 -0.4651746175759606 -0.207852160314994 -0.8604708330997912 0.4651746175759606 0.207852160314994 0.8604708330997912 -0.665423853153388 -0.5535581018224417 -0.5007839090478381 0.665423853153388 0.5535581018224417 0.5007839090478381 -0.005387601560723753 -0.3680435395178345 0.9297929483323731 0.005387601560723753 0.3680435395178345 -0.9297929483323731 0.000868304132819345 -0.3981816825083262 0.9173061614111023 -0.000868304132819345 0.3981816825083262 -0.9173061614111023 0.4895014731041097 0.7496380756810936 -0.4454560172655136 -0.4895014731041097 -0.7496380756810936 0.4454560172655136 -0.6864943599299461 -0.7266385896011196 -0.02686733866368751 0.6864943599299461 0.7266385896011196 0.02686733866368751 -0.07262576442607609 -0.3044614123800715 0.9497519395679382 0.07262576442607609 0.3044614123800715 -0.9497519395679382 0.8316127756564834 0.2226940531091179 0.5087509705885118 -0.8316127756564834 -0.2226940531091179 -0.5087509705885118 0.8847533030430639 0.466059554598581 -0.0002903820942461804 -0.8847533030430639 -0.466059554598581 0.0002903820942461804 -0.5016223448988417 -0.02024006257359567 -0.8648499077673559 0.5016223448988417 0.02024006257359567 0.8648499077673559 -0.8822448680326102 -0.4704388045425635 -0.01820230783956228 0.8822448680326102 0.4704388045425635 0.01820230783956228 -0.9072917110443275 -0.4201047632020399 -0.01826852498738157 0.9072917110443275 0.4201047632020399 0.01826852498738157 -0.07685647797368571 -0.3297862966323041 0.9409219310585922 0.07685647797368571 0.3297862966323041 -0.9409219310585922 0.6901787415728549 0.5152442173959565 -0.5081109141919102 -0.6901787415728549 -0.5152442173959565 0.5081109141919102 -0.4967373698995862 0.01608717979290114 -0.8677518009151883 0.4967373698995862 -0.01608717979290114 0.8677518009151883 -0.8811357659201282 0.0768003594678575 -0.4665848977431188 0.8811357659201282 -0.0768003594678575 0.4665848977431188 -0.1213401419479091 -0.2131789266836514 0.9694489750214126 0.1213401419479091 0.2131789266836514 -0.9694489750214126 0.8530841702615671 -0.129409370341721 0.5054706849233622 -0.8530841702615671 0.129409370341721 -0.5054706849233622 0.8141415650726762 0.1226466323187181 -0.5675661332407798 -0.8141415650726762 -0.1226466323187181 0.5675661332407798 -0.4880841511746171 0.1805356816951876 -0.8539207978536462 0.4880841511746171 -0.1805356816951876 0.8539207978536462 -0.9999912890016439 0.003565470406150566 -0.002170101751911943 0.9999912890016439 -0.003565470406150566 0.002170101751911943 -0.1346341299312233 -0.2158364992083521 0.967103022778414 0.1346341299312233 0.2158364992083521 -0.967103022778414 0.8525399834492935 -0.09184736460572623 0.5145285592027534 -0.8525399834492935 0.09184736460572623 -0.5145285592027534 0.8136691103485404 0.1551681516635968 -0.5602369352103785 -0.8136691103485404 -0.1551681516635968 0.5602369352103785 -0.4242011506809903 0.3566735691717121 -0.8323685174339763 0.4242011506809903 -0.3566735691717121 0.8323685174339763 -0.7885509876220191 0.4252210297831079 -0.4442684050779792 0.7885509876220191 -0.4252210297831079 0.4442684050779792 -0.1578790767136951 -0.1001809033739212 0.9823634682413714 0.1578790767136951 0.1001809033739212 -0.9823634682413714 0.7547715708514621 -0.44639443705225 0.4806785645347849 -0.7547715708514621 0.44639443705225 -0.4806785645347849 0.9002426714264509 -0.4324438669647231 -0.05055130530029929 -0.9002426714264509 0.4324438669647231 0.05055130530029929 0.7844421490554812 -0.2204106761446065 -0.5797151443827353 -0.7844421490554812 0.2204106761446065 0.5797151443827353 -0.9025620350092503 0.4302953214917916 0.01509003851010579 0.9025620350092503 -0.4302953214917916 -0.01509003851010579 -0.169444804962263 -0.07902734954524104 0.9823660906684203 0.169444804962263 0.07902734954524104 -0.9823660906684203 0.6777943647040133 -0.7334431215125454 -0.05153626569141771 -0.6777943647040133 0.7334431215125454 0.05153626569141771 -0.3277576958189358 0.4837068770718885 -0.8115433136344744 0.3277576958189358 -0.4837068770718885 0.8115433136344744 -0.6008360970729323 0.6729522999371917 -0.4314292369130882 0.6008360970729323 -0.6729522999371917 0.4314292369130882 -0.168089397435747 0.02890991779143854 0.9853477412177792 0.168089397435747 -0.02890991779143854 -0.9853477412177792 0.5960603579688953 -0.6811454613724286 0.4251504558503186 -0.5960603579688953 0.6811454613724286 -0.4251504558503186 0.642457615765161 -0.5591213942028391 -0.5240529348167207 -0.642457615765161 0.5591213942028391 0.5240529348167207 -0.6860462605246198 0.7270928103701851 0.026011027049533 0.6860462605246198 -0.7270928103701851 -0.026011027049533 -0.1672078096097679 0.0635631640950807 0.9838705568192014 0.1672078096097679 -0.0635631640950807 -0.9838705568192014 0.3991470387627658 -0.8338683812760162 0.3812416086355626 -0.3991470387627658 0.8338683812760162 -0.3812416086355626 0.4366355637622926 -0.8983679002551223 -0.04779644598908765 -0.4366355637622926 0.8983679002551223 0.04779644598908765 -0.2165491592345843 0.5605205997528345 -0.7993266659429781 0.2165491592345843 -0.5605205997528345 0.7993266659429781 -0.395878753458329 0.8145817266860315 -0.4239535624446186 0.395878753458329 -0.8145817266860315 0.4239535624446186 -0.1470001632110153 0.1606471829413976 0.9760038087164046 0.1470001632110153 -0.1606471829413976 -0.9760038087164046 -0.1367704356193799 0.1896404371318128 0.9722810049285855 0.1367704356193799 -0.1896404371318128 -0.9722810049285855 0.4363268549376191 -0.7641342532907666 -0.4750975885099907 -0.4363268549376191 0.7641342532907666 0.4750975885099907 -0.4488588098000007 0.8930220883870532 0.032207429542781 0.4488588098000007 -0.8930220883870532 -0.032207429542781 -0.09536560608358956 0.2728967479651381 0.9573049493898803 0.09536560608358956 -0.2728967479651381 -0.9573049493898803 0.1991484148306641 -0.9116095558872244 0.3595941135301458 -0.1991484148306641 0.9116095558872244 -0.3595941135301458 0.2176539959285311 -0.9751768928606872 -0.04070338667628007 -0.2176539959285311 0.9751768928606872 0.04070338667628007 -0.1020086360497765 0.5870416815121564 -0.8031041665554002 0.1020086360497765 -0.5870416815121564 0.8031041665554002 -0.1981121207031203 0.8828403326833408 -0.4258456699534237 0.1981121207031203 -0.8828403326833408 0.4258456699534237 -0.2257134547048324 0.973564616878436 0.0350053299877863 0.2257134547048324 -0.973564616878436 -0.0350053299877863 -0.08665208688554509 0.2887112025816377 0.9534868941638603 0.08665208688554509 -0.2887112025816377 -0.9534868941638603 0.2265500462827463 -0.8703548962419158 -0.4372155430871709 -0.2265500462827463 0.8703548962419158 0.4372155430871709 -0.1010732297696643 0.8940250761423974 -0.4364669122081412 0.1010732297696643 -0.8940250761423974 0.4364669122081412 -0.06445738612506215 0.342596166498884 0.9372689646383228 0.06445738612506215 -0.342596166498884 -0.9372689646383228 0.09421242280934485 -0.9292856702354743 0.3571444560446074 -0.09421242280934485 0.9292856702354743 -0.3571444560446074 0.1141520068239995 -0.9931836877053528 -0.02356866169407399 -0.1141520068239995 0.9931836877053528 0.02356866169407399 -0.05548150953601904 0.5705702570479805 -0.8193725549905893 0.05548150953601904 -0.5705702570479805 0.8193725549905893 -0.1183122180816655 0.9923409512272472 0.03551979124373652 0.1183122180816655 -0.9923409512272472 -0.03551979124373652 -0.06848399295769723 0.3517417087860151 0.9335886208651348 0.06848399295769723 -0.3517417087860151 -0.9335886208651348 0.1175068314992904 -0.9005861550453422 -0.4184933952784017 -0.1175068314992904 0.9005861550453422 0.4184933952784017</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"1518\" source=\"#ID1740\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1738\">\r\n                    <float_array count=\"5340\" id=\"ID1741\">-6.580618697481437 -6.545009713473284 -6.567617648033625 -6.606732382168279 -6.682986093858498 -6.636723984740837 -6.881886868690907 -6.456583340927664 -6.756099899164711 -6.426275566867586 -6.859254916403135 -6.517442078751968 -10.61693605112678 3.184827725803856 -10.74657196519547 3.086140098357892 -10.73262445343298 3.155608790016468 -1.533092614824339 -6.434690839908924 -1.559405791392609 -6.375650075232074 -1.412648348859682 -6.340772034012076 14.30898493615991 2.947457128116731 14.33751141972596 3.00117761298326 14.44051209027738 2.936797991894637 -12.06110462075435 -5.035157135385706 -12.05809024149011 -5.098522253808291 -12.16418758194686 -5.123866330376003 -14.28814175341842 1.085588573710755 -14.2824434631127 1.015401747004727 -14.39929201747007 0.9912305055100119 -10.42933963478339 3.127297029085289 -10.43391457166809 3.05891381887446 -10.56001487618986 3.029461348607242 11.45762516172873 6.540259670332341 11.47797163129741 6.589504610126216 11.5973584461837 6.513844369553664 -1.137064559277398 -6.562851727461976 -1.271113876150494 -6.597002986620765 -1.151641495433576 -6.502319096981208 14.36063873912256 2.926066127749094 14.49201889613716 2.914338663113008 14.47716685152766 2.853122092708056 11.70748954317793 6.478829872756479 11.84637456995346 6.449777749136851 11.84093961111974 6.391715699527722 -12.26906940977927 -4.818979687707555 -12.37360027290782 -4.906634087921719 -12.38566096444787 -4.844084924398307 -14.46544077452874 1.025991648232917 -14.35893502858219 1.050252502010602 -14.46923482461555 0.9552788433374404 7.739432046823051 -10.03694049230219 7.639865864740337 -9.983099743997331 7.788914935261003 -9.989105445713978 1.776162464053896 -11.05068803421863 1.665101898714817 -10.99523746474838 1.835380771051105 -11.01096062030451 -5.51283250728245 3.713463970245473 -5.492925841198693 3.780127176594322 -5.358548342198889 3.813470732354115 8.498016943087372 8.575624199463169 8.654092498597761 8.533859822440421 8.648754551688274 8.482249557601401 2.154550179828575 -6.049267118074262 2.132428225229554 -5.990166820626622 2.295670935413403 -5.951642658655977 8.789434211505821 -1.333744793888774 8.78660936696904 -1.262091227687889 8.931615188888184 -1.28876984275119 15.16729014396182 -0.9180957161036953 15.26952992075916 -0.9688286178485134 15.12876549151582 -0.9725522853113809 3.599636952745333 -1.413590562477219 3.433219173912354 -1.452833223600031 3.431199227589967 -1.38114939033275 -15.14559909809822 -1.830127624946375 -15.15581010256368 -1.89288024694656 -15.26670342851949 -1.912248653014465 -15.25394005643405 -1.482299422728862 -15.23889520811196 -1.552078610595723 -15.36006185113027 -1.570071821484925 13.85366256063633 -5.420686821229857 13.71907883153179 -5.432419650090949 13.72955096136054 -5.37130008509078 7.549530277180296 -10.14466754688337 7.586489731770421 -10.09078718230263 7.698527486315976 -10.15142284030032 1.443950192576218 -11.23213334560071 1.48862060606892 -11.18611617644985 1.613950649777629 -11.24962180671451 -5.26436046835787 3.677468389356899 -5.411283838790938 3.643250863079274 -5.256608640031511 3.742883125396392 -0.3357938802278748 -1.464238976150553 -0.5205981776007085 -1.499422698088571 -0.5219607647003055 -1.427740732370425 8.00466637656822 8.553374808734567 8.025367063583357 8.595594769838016 8.16254167270783 8.516030499292146 2.513018264421359 -6.144422261422504 2.363355207479492 -6.181765356209835 2.503714277356395 -6.083463704108516 8.793899512558674 -1.342409054410137 8.936080091119722 -1.297433323036027 8.939069665865294 -1.369088249545524 3.601889307207162 -1.485948865938943 3.433482610389947 -1.453520654717407 3.599900363322454 -1.414277925622595 15.13150972544219 -0.8935372586893242 15.27225588363935 -0.8894082489526436 15.248732610583 -0.9497920914519146 -0.3405600250748775 -1.516300042088481 -0.5266630625965385 -1.47978758183525 -0.341858146444467 -1.444605871307476 -15.18190061644777 -1.693846131829051 -15.30408639043193 -1.774969756514498 -15.30295819003457 -1.71251456640385 -15.34925793102598 -1.576142044610847 -15.23814176621759 -1.557580808910237 -15.34359016192504 -1.645854029450044 13.73176474112583 -5.594929424044595 13.6227734567117 -5.549565167589616 13.75754370861559 -5.539241983940605 15.26794181216265 -1.201586369010382 15.4026095543531 -1.144914174005858 15.40571873838469 -1.21656415117917 13.48542759954237 -1.187513996421264 13.61668585883023 -1.136727326662673 13.61880185168607 -1.208401062036025 -2.825915076579227 -10.47298883662777 -2.960545493628167 -10.41543244096379 -2.768166969085556 -10.43709035758611 -1.576757897260338 3.588180983045058 -1.560462817920151 3.652616633508753 -1.410422583172373 3.689011024111676 -3.855155477236379 -1.513649149798202 -4.053412360945431 -1.474737389203775 -3.855770975181954 -1.441960805270113 4.724495152034121 9.853778914633699 4.899144023582807 9.804261874598007 4.890014490506999 9.75958378494558 5.551234798891407 -5.548974550687335 5.534993013697682 -5.488922348098751 5.708732910407464 -5.448701022701108 13.4905068726135 -1.195619266123532 13.48703512130899 -1.123977794312584 13.6217650401156 -1.144832449562632 -3.201129253911908 -10.66053231288505 -3.16082607796162 -10.61822488135849 -3.00915445380823 -10.68430400185338 14.37427292395258 -4.176146895236155 14.48831819664287 -4.213143445949156 14.33046992460895 -4.229073863684964 -6.369583058882933 -9.699417895355477 -6.340211027574866 -9.656796230945387 -6.169441283768498 -9.725494835892333 -14.64957652871657 0.923466453846057 -14.66872736513775 0.8628490103790216 -14.79396394674563 0.8493250318827015 -13.95363701997803 -3.483949602294809 -14.09018366605725 -3.496235699392138 -13.97401382069266 -3.415959253979947 15.33774035154781 1.482968778162605 15.20555793672612 1.454279869603094 15.18685504058227 1.511689594454686 14.21924000644283 -1.337679074555944 14.21686019370335 -1.266011810181029 14.37169429347407 -1.275618970363387 15.26796047500114 -1.202005770447221 15.26602492824712 -1.130328878983037 15.40263019764715 -1.145336487865999 -1.267835338164149 3.498298483228099 -1.431319179278802 3.46084420333183 -1.264503010966737 3.561181434576645 -9.160814424796168 -8.499192251752284 -9.144238663360635 -8.454079626645166 -8.960772650829012 -8.524847766534801 -3.86164844663055 -1.420083168817847 -4.059290449338185 -1.452857450474979 -4.059859140568322 -1.381171091724309 4.214209765097551 9.706760423997796 4.241542992263189 9.742374720772524 4.390780778657863 9.661658774634711 5.81186686549028 -5.573885606192285 5.652480019532534 -5.612966590725296 5.809591946258694 -5.512318845908505 -6.033043384738718 -9.582836337394287 -6.18482113180164 -9.522118487933822 -5.984319102058612 -9.5464225342368 14.55599533754309 -4.100115412335536 14.52721092316535 -4.156341655985824 14.39840191736806 -4.117537457912769 -8.838526383720716 -8.422930952291223 -9.001390688661905 -8.360520461954543 -8.801007145604851 -8.384468629366044 -14.57989631441111 0.930398879062954 -14.72494760888468 0.8570637678566174 -14.7163862676825 0.9179154899456861 -14.0306366128091 -3.579026633172484 -14.04018196318075 -3.51161279617297 -13.91489750526628 -3.498366077317781 15.41082394072371 1.048020730342602 15.41000292946648 0.9933688473472547 15.27762056853224 1.022420357830555 14.21925518578394 -1.337701234835617 14.37170946756895 -1.275641122667588 14.37401384332346 -1.347306285535949 13.0887863053135 -6.493482618447323 13.06315073182448 -6.545122205857973 12.91092616280336 -6.520870100630303 2.127796006892804 3.268686239813019 2.137888030772398 3.331121076362597 2.297674464496027 3.369178892006708 -11.37844683521693 -6.982809433271168 -11.54227904446258 -6.919146089585195 -11.35264213589822 -6.940464393467607 -6.969309814844864 -1.426064401907399 -7.169138685558715 -1.386538944137186 -6.969196157910561 -1.354376702983068 1.42520110639496 10.39663474916311 1.612490304249503 10.34081313466535 1.592711432960707 10.30223042044524 8.453040928387372 -4.992847012691402 8.444295306881864 -4.931639694667493 8.619460029473876 -4.89075152620012 12.76951926405819 -6.58402051542777 12.90328343694316 -6.608753264278488 12.72476870385108 -6.633364448175943 2.407180428441364 3.204189162625434 2.23306101354886 3.164845509836631 2.403265162843157 3.264996539024871 -12.35283524094875 2.180077371835965 -12.49521664307451 2.170956610667029 -12.33259332827868 2.239193604852102 -11.69818573484253 -4.611799464835253 -11.85326884084011 -4.619672060400372 -11.71832234626677 -4.545844331156123 12.91355851458836 5.873539148831609 12.76729556861925 5.836704493622889 12.73843114318628 5.886420206183411 12.09933149555814 -1.413658653592374 11.92509416941972 -1.480043363795554 11.92360826871389 -1.408364807887314 10.73634488754209 -8.418595656168597 10.89032174383181 -8.434532527665484 10.69717051496003 -8.46467865356014 5.643858274455487 2.926661275647715 5.468269400764852 2.886867463753028 5.631447352565838 2.985822581768346 -11.65582502015529 -6.98915157199934 -11.65108099485204 -6.939921509951684 -11.46645447821991 -7.01188800712644 -6.965985707632302 -1.366717202869575 -7.165927874619835 -1.398880831512013 -7.165827256803913 -1.327192503347199 0.7801477962360326 10.10764074744187 0.8182364949793919 10.13751902548013 0.9700146556492773 10.05749671451439 8.723178341362342 -5.015695452878983 8.562511038127378 -5.055254750609865 8.728457801296788 -4.952684578861925 5.345906999601398 3.012691888508398 5.347606173231061 3.073562544472592 5.508696716004757 3.112041933800061 -12.40414412804927 2.093244503543819 -12.39614885820377 2.153142600001177 -12.2411624686734 2.160950347915142 -11.78142239803167 -4.708666933913214 -11.78914349148463 -4.643650716949074 -11.64676366339286 -4.63451476242067 13.18444934977494 5.405790420926806 13.1910463331518 5.356494691067041 13.03692878725645 5.37220248823331 12.09903157083867 -1.482461054462999 11.92326983500567 -1.477153316455752 12.09750765770709 -1.410769412804343 11.19293202676992 -8.361555992246322 11.17581316769602 -8.408864006524265 11.00078907970504 -8.395455855922011 8.349940607121187 2.770164038364921 8.343046405724209 2.829879762215903 8.496457616513332 2.867464522416447 -13.73781930567416 -4.950021043184917 -13.5667927907526 -4.966126671524558 -13.58339781367837 -5.01373858803485 -9.787465578114976 -1.33714349510687 -9.977689162282866 -1.298547919271151 -9.786660593367122 -1.265457920206907 -1.540663983600659 10.42391404241789 -1.698261919738346 10.5165668192658 -1.508151406391066 10.45762366983972 11.17020878208226 -4.338152115199367 11.16822940178264 -4.275023718190871 11.33502815430458 -4.235091375357936 -9.657233538443592 2.681820150366768 -9.813195316583219 2.675426316849174 -9.641494532806298 2.740761166024233 -9.178178231308547 -5.285337157931499 -9.348074900643844 -5.290382256160782 -9.193859608338926 -5.221213654048633 9.885571768328758 7.863936913957202 9.717679502805417 7.823330067871 9.693210009691446 7.869007899782335 9.512450238363343 -1.510120633095816 9.320747298568746 -1.579336947718089 9.319975255294587 -1.507637855880181 8.437421926016747 -9.860048553291033 8.606893690995154 -9.870739657042387 8.408286612285954 -9.903569669546064 11.43900873246514 -4.344292112528978 11.28606236631415 -4.3830315371237 11.45024536052453 -4.279344105490417 8.625209168225046 2.697365357843957 8.457966351327173 2.658536111132082 8.604871386527611 2.755473851257801 -13.80607872821243 -4.950517452724858 -13.8085196224234 -4.894970160690024 -13.63523288702387 -4.967768993194435 -9.825403099073675 -1.1267962098599 -10.0164357063077 -1.15987177837336 -10.01604388857866 -1.088538960955641 -2.416974896300678 10.10841135529833 -2.367217661635781 10.13394259615223 -2.223841672100698 10.05590036790189 -9.714052122718687 2.55395860802712 -9.711995436647182 2.613926362003435 -9.542096120738417 2.618876750620487 -9.276235356357377 -5.384468978016525 -9.278183705883597 -5.32150953395901 -9.12222877247862 -5.315013201765334 10.22243353383894 7.392617643500108 10.22301859722848 7.346483456068675 10.0533596751163 7.35516742620614 9.513631385594843 -1.5825512236796 9.321187330051941 -1.580077940731893 9.512890162017262 -1.510861441294382 9.011320398795435 -9.846726940850362 9.006295466617312 -9.890532321696613 8.813975425696585 -9.88397028792234 13.6283101194571 -3.333011606144537 13.6301839502992 -3.267481406042489 13.78103525783518 -3.229909684064479 11.23578323518249 2.432169448976095 11.22197592125114 2.491453418764042 11.36059798039002 2.527000839227673 -15.24219524522934 -2.147910153808393 -15.09069163087842 -2.155463254795222 -15.10501134657915 -2.209890196813368 -12.61653793888787 -1.099487738837097 -12.78996521975508 -1.064551872379149 -12.61567482503242 -1.028157486989288 -4.514463801464838 10.22908780676873 -4.649449032964846 10.31928223269812 -4.469241791069255 10.259393133881 -6.898059523765879 2.935309156349139 -7.06036786434691 2.929920571296418 -6.89002090736066 2.994964498730822 -6.4768693768259 -5.802689461290159 -6.653575517158874 -5.806687320941736 -6.485699800785439 -5.740095647568451 7.016357742053017 8.746921207086649 6.829475787650675 8.704571097402486 6.8162270405816 8.749514948466191 6.812687123351545 -1.570667613968221 6.612521211682392 -1.640945252495422 6.612478742513698 -1.569253106600074 5.779856660322627 -11.04698341280049 5.956274989550351 -11.05623514011434 5.76305316106203 -11.08893340390857 -5.398781630269481 9.835257217887111 -5.340262316193581 9.858328963978593 -5.215213233226105 9.782059105907912 13.85850269088957 -3.291224874435558 13.72033593265452 -3.327852831506265 13.87226008146309 -3.224021153701466 11.47884612410998 2.370707512678263 11.32763469245847 2.3341287484315 11.4528811563251 2.428607235668462 -15.2535181349102 -2.106908730339627 -15.25836441831756 -2.04628258371339 -15.10205393297601 -2.114936106408872 -12.60691287598073 -1.054252242449673 -12.78120227643468 -1.090649574333243 -12.77826650363888 -1.019032138509699 -6.977266672820781 2.819025713613953 -6.98348601445656 2.879881379179938 -6.806745836905758 2.883787073659976 -6.587756763350166 -5.897017118716976 -6.582343092500292 -5.835702020549165 -6.420042303747156 -5.830174464184631 7.352899858918036 8.284719654169544 7.341596596604858 8.239010029899403 7.164996350990712 8.24526589774629 6.813826939136831 -1.644364765160081 6.613677082927434 -1.642956700035511 6.813842734205907 -1.572678602544766 6.45561059982691 -11.07378386689607 6.46395966180476 -11.11541748444512 6.263811337699195 -11.11130890824892 -7.4896043285356 9.650721743375158 -7.59932281454822 9.739501582872135 -7.435656638661346 9.679884880975632 15.29262319608855 -1.607508324843404 15.29328082124637 -1.539440722165434 15.42508685680786 -1.505608493010264 13.89984302429149 1.612364449169118 13.88311681005951 1.672334928638294 14.00406654530691 1.704928375628051 -15.28946899818318 1.47629385012519 -15.15330884157945 1.478704050245536 -15.17098274107001 1.419570661111087 -14.80515277802571 -0.9036683428333258 -14.8085897588165 -0.9752719773663642 -14.95994028606035 -0.9444455687562027 -4.004611721636414 3.224448327942247 -4.16439719315087 3.218368710771394 -4.00523925739104 3.285498351391439 -3.525613296463322 -6.290315199046522 -3.700902602954646 -6.294977946562653 -3.526950387315453 -6.228861380004147 4.019128095171453 9.21265159326504 4.216147713730148 9.208763189863083 4.018671019552032 9.166086516832904 3.879644224425563 -1.596352886128034 3.681901906438548 -1.665818496212343 3.682604549984756 -1.594134463565752 2.530786356206917 -11.98103156753165 2.352255936779051 -12.01025137141678 2.35749035013115 -11.96830449992463 -14.93783250703113 -0.9199274905746537 -14.78540593368363 -0.9508055480783045 -14.94018901959406 -0.9915931604994908 -8.369275036428196 9.172063195774641 -8.302263925849339 9.194573360537296 -8.201790501962247 9.119416714856088 15.32434054185617 -1.526890769140963 15.45579366934975 -1.424184296665054 15.44501229547651 -1.49366580413421 14.11532223931024 1.531544655849606 13.98322776896051 1.498268720660948 14.08813296315718 1.59035487382117 -15.29430011815301 1.530169201172563 -15.29253058392694 1.595581857050894 -15.1581444831912 1.532732608428125 -4.058883089848411 3.085514390787332 -4.073465714486674 3.14769619433696 -3.899516138725254 3.152336453714596 -3.572284764846403 -6.466569931810668 -3.558406321219816 -6.406267497356507 -3.398634912760937 -6.399963308387198 4.552296166406597 8.749981776186615 4.529059490484951 8.703150495698562 4.353890163085291 8.710061516263082 3.890830433234426 -1.688761907672652 3.693769104214244 -1.686537598712137 3.891508959769352 -1.617067650930654 3.135413932412313 -12.04928645761342 3.155189195964897 -12.09127973286478 2.958368440101325 -12.08364558267659 -15.45179350199093 -0.8108783782093466 -15.45489039400424 -0.8825266134035953 -15.58968420799133 -0.8571572623338638 -10.6288286384174 8.353707500251726 -10.7079782300312 8.443173295059195 -10.56775234872707 8.384966708096389 14.98504350561728 0.8932095856606679 14.97824207983449 0.9630020334364804 15.0955806585724 0.9916757394352925 15.53991589285761 -0.4072276683117909 15.52720097191658 -0.3454532515377727 15.63448253709443 -0.3166197435687619 -13.23516410695105 5.172889418019462 -13.09944546757803 5.186906493985469 -13.12796202377806 5.125445020432204 -0.7714234616223903 3.569497695964973 -0.9202629271224827 3.561122633958776 -0.7799017318880719 3.632376091183371 0.1656356926783598 -6.89096651016542 0.004784692386134992 -6.89859131050403 0.171236231494023 -6.829842298317031 1.061959575325601 9.468422412170185 1.24545871531379 9.460108100923545 1.049723399136092 9.419080201494202 0.5231611971093531 -1.603350003673135 0.3370699779424913 -1.670258122669144 0.3384888140735509 -1.598570567462979 -2.433997532195966 -12.1929427012513 -2.593059003934676 -12.21337891439185 -2.593411621858572 -12.16859762168006 -13.30336674209489 5.301667592890514 -13.18135620361946 5.249945769596239 -13.31691957776318 5.235027842207697 -15.58653943729579 -0.7855254209561395 -15.45178502990319 -0.8108934204931523 -15.5896757392267 -0.8571722984902477 -11.51936289142144 7.675549632771387 -11.45083636673444 7.700794083951917 -11.37432675960208 7.625162732531086 14.90602371303191 1.049369786129195 15.01538811441356 1.14864303110114 15.01345585400729 1.077854229522494 15.66975608881318 -0.4911047002283587 15.55242944620488 -0.520159475879824 15.64794960475148 -0.4301726425674983 -0.7912545568075957 3.421809981775434 -0.812757172466364 3.485604502693287 -0.6506196923301988 3.492728710202487 0.04031753644333835 -6.938102185477932 0.05787497746319148 -6.877980049121938 0.2066783875467149 -6.869217465137623 1.555805246969699 9.059057021365206 1.519814634586167 9.00947316056442 1.359276784555576 9.020446762671895 0.4838123445634712 -1.611748782600903 0.3001114271489069 -1.606924269512813 0.4862089657499891 -1.540027028526313 -1.806813482336177 -12.36058167089581 -1.782046272876322 -12.40751261267392 -1.964752550151362 -12.38583687432793 -9.364868457319943 7.841968717887717 -9.404274314388495 7.782022322527892 -9.514291688348363 7.817861846619273 -13.00588378390801 -0.8330881645659296 -13.00921958271158 -0.9047294657183257 -13.14133814969962 -0.8852845692050879 -14.10662791163087 5.146832549511292 -14.17206869042138 5.239095622041519 -14.04973001711376 5.186073799696009 11.87582082679493 3.174077517464692 11.85862862908628 3.243578971293362 11.97435313651517 3.265965803721697 14.24415916065581 -3.699885454686495 14.2433433916009 -3.636587915769243 14.34888102482089 -3.612702452326936 3.082265902202215 3.913234350788317 2.949879546846864 3.901073276272257 3.06862831925348 3.978355594566274 4.638556061977957 -7.082302383479022 4.494472431598605 -7.094157831914902 4.645067237443768 -7.020827165557492 -2.258038310727093 9.539468265293392 -2.095500805512067 9.523668310217966 -2.281201335801816 9.485355998138813 -3.758985514210841 -1.436225758280148 -3.924511705853747 -1.498961607814649 -3.921467008486363 -1.427255068912489 -9.942859975291702 -9.737197332008847 -10.08385967003032 -9.737458014349842 -10.07311078507561 -9.687351915146522 14.13219270095305 -3.75542860612047 14.23796080910545 -3.669030738188305 14.24742880761821 -3.7318278326521 -9.692573401430575 8.017214571832103 -9.567163615954282 7.979171406292741 -9.716153039117891 7.953456566602755 -13.13636509854378 -0.8161126710265887 -13.00435282828845 -0.835552906974163 -13.13980714664969 -0.8877493877843717 -14.61132809459356 4.133016612116871 -14.73902312735568 4.177542038502442 -14.67768843796868 4.210885943633517 11.81382164778991 3.35991687746054 11.70782989559965 3.33731003177597 11.80542024055859 3.429818317153772 3.084054598257912 3.781063644743033 3.059008768636864 3.8467800671526 3.203147841068263 3.858017235194181 4.640534808377569 -7.205309901937741 4.658401343593503 -7.144308835955269 4.790673709270291 -7.131402974614767 -1.777453462061554 9.165138723842739 -1.820684873074955 9.112184883238179 -1.96392635099604 9.129222911432287 -3.713016996837181 -1.586432416109982 -3.876397154170795 -1.577505932639365 -3.71087700645962 -1.514760215541944 -9.935098212837286 -9.770221769537702 -9.928915609223267 -9.825435982157931 -10.07609767572446 -9.770551036172224 9.535254719845881 -6.232486872110084 9.547416077059241 -6.169977481532637 9.664144208440034 -6.152083811655688 -5.202437761249897 9.098226050134119 -5.246985562162003 9.041825168459443 -5.372201684154333 9.0667502344476 -8.169380333522604 -0.998140020974474 -8.172333180839713 -1.069790248980376 -8.317069662718822 -1.056185649157978 -15.53708250320204 -2.251370365196449 -15.56791830901686 -2.304769315519559 -15.66339926021932 -2.217943928631032 7.190374158714231 4.14387548593698 7.16637335975607 4.211502502977067 7.293903690933179 4.22756430462664 7.623017113961595 3.918334089413627 7.507695615163 3.901060666062974 7.609282664872703 3.986084436598195 9.937161022967274 -6.359847681237002 10.06409273077519 -6.279461156273472 10.06269187858483 -6.342050763081067 -6.042398342483293 9.076543377210122 -5.902190296778123 9.050166540243174 -6.069234815193065 9.017255839469092 -8.860293170789058 -1.363260985078544 -8.717265287849051 -1.37745368279562 -8.863173737785129 -1.434917132087402 -15.54588277960083 -2.300117636965598 -15.67386043491606 -2.271009447778388 -15.63233045989777 -2.226233122461609 7.127076406813334 4.30648851770742 7.010063381235103 4.289786013635767 7.112978878199199 4.373942213029542 9.365989235203019 -6.175965195635077 9.495627012248997 -6.096310096386373 9.493297944669719 -6.158811689884664 -5.626765668099157 9.373422181532749 -5.484536290666949 9.348316109263141 -5.653651189339984 9.314747731718946 -8.320882227736359 -0.9741148604507341 -8.175970906962778 -0.9877206687505513 -8.323660932723731 -1.045765200133378 -15.29985691444622 -3.123406437962885 -15.42886369827114 -3.097095081416124 -15.39058877662906 -3.051099015080164 7.703689925709059 3.739906870570485 7.680092902839074 3.807750538554544 7.80597269273771 3.824412889779136 10.11197049403219 -6.404336089477216 10.12307435948808 -6.341661858037234 10.23808752303897 -6.323159921128914 -5.622323037873064 8.794266442244357 -5.66679086339616 8.737492485458621 -5.790007307260759 8.763434754360988 -8.71332912534854 -1.3836606494726 -8.716209437777366 -1.455319908141439 -8.85923718393571 -1.441124713702576 -15.74112137389917 -1.379939906837552 -15.83089195408338 -1.291204338195767 -15.70609736706944 -1.327881354721675 2.668957752347219 4.11398850238898 2.644058069704343 4.179481329382527 2.790273579329713 4.190200612134772 4.110704377365827 -6.858048905277235 4.128872676387156 -6.797175811182837 4.262918876140688 -6.784782652748659 -1.404548250035355 9.402043598154606 -1.447358125095773 9.349547274608119 -1.592685016488453 9.365794399010678 -3.142255332231726 -1.190604595156031 -3.309399930982235 -1.18223930450561 -3.140241197251263 -1.118938432231013 -8.884739533256173 -10.30055981670408 -8.8746530565973 -10.35495896236701 -9.027896891744119 -10.30477273628952 12.25230914127811 2.830885924238499 12.14678909668437 2.807636870818182 12.24476854587685 2.900972728124928 14.46950347790334 -3.751846905612519 14.57341788799027 -3.664906214825244 14.5842967264192 -3.727604863342996 -10.10915643332227 7.601517383621898 -9.984934002081559 7.562044962447504 -10.13208624570263 7.537317666313326 -13.54652455382239 -1.212685624363464 -13.41493796144714 -1.23274352628007 -13.54984038915993 -1.284333229776651 -14.31552014081287 4.540011722011334 -14.44437455773784 4.585467759621272 -14.38166273281025 4.617646058061919 -8.992810656003718 -10.18550474366308 -9.136006742442406 -10.1888041041313 -9.127637057064113 -10.13972581033172 2.64541488824554 4.267441028695297 2.511268042398294 4.25574119252915 2.632188799017837 4.332340862186194 4.110214696525336 -6.72600436272806 3.964135035991645 -6.737327709543592 4.116794042818764 -6.664636040505522 -1.847994126281742 9.726975441471867 -1.68154386583189 9.712369976900524 -1.869009832302726 9.674030376466263 -3.221745658877027 -0.9840961042457377 -3.390913981113689 -1.047381117225486 -3.387390757737077 -0.9756486725148655 12.31086394288981 2.638894324171158 12.29469950298908 2.708522654783262 12.40982838366794 2.731584851287013 14.56781304329401 -3.684253140151958 14.56561528418519 -3.621025071170431 14.67068615442086 -3.596549445688026 -9.79429850738692 7.422103133151579 -9.832748794853689 7.361829306246924 -9.941855832659382 7.398917779285227 -13.41536406114684 -1.232052822969565 -13.4187394178731 -1.303691732214197 -13.55026649850321 -1.283642510860688 -13.75606080583945 5.54957007316308 -13.8214887016976 5.641594391354468 -13.69804627494504 5.587638493520042 -1.221213860760367 -12.28941609449073 -1.197314620885995 -12.33522616255462 -1.381018567246686 -12.31575286127009 -1.158444741834577 3.776285934969499 -1.179315014711423 3.839930993540694 -1.015625787160668 3.846724503200335 -0.3639596171475557 -6.526495008969826 -0.3467953056654904 -6.466407244800233 -0.1964911856277107 -6.457981244297234 1.889308263414858 9.245364640510919 1.8560148969994 9.196471474896031 1.692605215227949 9.206681508849934 0.8311335920267338 -1.171595201869042 0.6469610273251247 -1.167087605318954 0.8341172451760792 -1.099847614205433 15.08582761132801 0.4219027948256017 15.1972816313386 0.5216801222266934 15.19423004530341 0.4509408901608906 15.61597067828074 -0.5544253552112738 15.49766385890772 -0.5839776656338219 15.59329687845167 -0.4937406854428438 -13.67695675489851 4.671155136831288 -13.55390223659972 4.618128351257922 -13.68851524023786 4.604333191912186 -15.65335930625685 -1.200253474075816 -15.51741693607865 -1.226221228726238 -15.65648638482215 -1.271899355939858 -11.18419981902873 7.765024509756246 -11.11554434043974 7.789825135613168 -11.03686915883918 7.714214129428135 0.8628927635053685 -1.149246746696862 0.6757410017744359 -1.216494412927886 0.6776162145131159 -1.144761328936643 -1.817296954238128 -12.12292682149871 -1.978216785636624 -12.14465921332994 -1.978660335218768 -12.10025498667682 -1.119852415948217 3.905701574361555 -1.270188663992674 3.897638071339116 -1.127604301284266 3.968370140358324 -0.3149882110398894 -6.385162711576555 -0.478664682763138 -6.392250897908245 -0.3109104338240121 -6.324171217182053 1.35602465911457 9.692105094374945 1.540020729240347 9.684324940488828 1.344216351572449 9.642916334152829 15.1503181862958 0.272451662028181 15.14440741345618 0.3421599203781767 15.26291134869998 0.3714343502470228 15.47546960258415 -0.4726056566771423 15.4619154372069 -0.4110595507947483 15.5702187722331 -0.3817935148578727 -13.60440101994327 4.519074513822507 -13.46962933206102 4.531875006477813 -13.49633283110545 4.471036214690025 -15.52339401901288 -1.215887594823921 -15.52607384501523 -1.287495597378499 -15.66245767488744 -1.261576634875901 -10.30287224798799 8.422158584401114 -10.38477487025269 8.511374836302048 -10.24206885150665 8.452964559084938 4.193413526692812 -1.248979369953439 3.995989188438798 -1.246889332118508 4.194617944274724 -1.17723737563748 3.545434574107766 -11.8403693110206 3.564458668862518 -11.88217705283562 3.366580276825393 -11.8752744320007 -4.381486190343945 3.430189749235295 -4.395274028373782 3.49221306336199 -4.22059861230353 3.496696702811534 -3.906132402229603 -5.989536288718155 -3.894246243631405 -5.929180494614697 -3.733804005271036 -5.923050460604896 4.839475801182161 8.951908471804766 4.816660144011579 8.905178595681052 4.64211224373599 8.912059416234641 15.26769483598374 -2.028982905709747 15.39941025645091 -1.926008699285874 15.38870377049515 -1.99536231905134 13.87683702687967 1.295577712842807 13.74277741991184 1.261920781824981 13.84948743201057 1.354218300739058 -15.38503010703776 0.9190988764496163 -15.38396194352577 0.9834567520767894 -15.24800374380212 0.9203888456145569 -14.80542258483778 -1.37304428388984 -14.6519647618678 -1.404397022819082 -14.80700106420073 -1.44467254877207 -8.069483288834693 9.100067508489389 -8.002998633579212 9.122461408995804 -7.899822687477273 9.047370810969055 4.30050980966578 9.40638186612038 4.497896969137264 9.402714164536823 4.30148408259397 9.360057245213058 4.210324558875172 -1.204736203883551 4.011699039759829 -1.274393872179983 4.012268808980655 -1.202689337845282 2.94635723149312 -11.7582358396856 2.766001547649617 -11.78797834450742 2.77226467546402 -11.74615678653372 -4.311075727597036 3.549367622226657 -4.471530230414992 3.543439572157604 -4.310820513849258 3.610212116165647 -3.820722736339858 -5.863601551858727 -3.995390741770848 -5.868226454835453 -3.822853797049344 -5.802076190336565 15.17813959311702 -2.197897267570782 15.17832423091742 -2.130718778289336 15.31206718285843 -2.096704259321336 13.75471368908578 1.245959351470354 13.74009231762092 1.305504866232826 13.86151359312978 1.338192505089929 -15.38346210198331 0.864612924360296 -15.24643481378675 0.8658405848337932 -15.2631686191402 0.8071703815371325 -14.66661126842772 -1.368813502006148 -14.66894932222831 -1.440483344197503 -14.82165237035537 -1.409077592683825 -7.156109762578709 9.611477304658802 -7.267157639433686 9.700499709311567 -7.101428897832124 9.640557950184437 7.642933539818706 8.4514581814478 7.632939746545516 8.405799115909543 7.456600956256732 8.412138919910097 7.09905506333754 -1.246225796623535 6.899143822007092 -1.244783890534279 7.098917666031889 -1.174519942877966 6.735946139475866 -10.81425805978309 6.742890926812308 -10.85601295253187 6.543109301778447 -10.85191920692165 -7.24931483410561 3.155942963884379 -7.254598685486653 3.216645642405485 -7.078148066229574 3.220562898325931 -6.881109201548074 -5.467438362678905 -6.876458184081285 -5.405999012727969 -6.71444189340942 -5.400458307481159 13.54289973800221 -3.793239524561747 13.40113671090732 -3.82994730857532 13.55555848570621 -3.726803055088812 11.22051562797499 1.971360530270614 11.06738780234263 1.934622185809914 11.19688747135034 2.02908810728976 -15.15944887014694 -2.654272722150803 -15.16462187738555 -2.594281710774259 -15.00716591901408 -2.663946858506669 -12.33003012466921 -1.538278183228604 -12.50642232294561 -1.574300370388085 -12.50492198873034 -1.502616647203531 -5.106572456921741 9.699955233492505 -5.047464832849933 9.72306287674154 -4.920092824371729 9.646643338529119 -6.765567956877243 -5.378664041690035 -6.942016859221509 -5.382683167631275 -6.775198665617581 -5.315935967627734 7.306945672480333 8.896659682715963 7.121645675312682 8.854428398166862 7.107055023237226 8.899338094212071 7.086927551773695 -1.153674396152059 6.887150959067983 -1.223933507323446 6.887086393422282 -1.152247544599366 6.068461076715506 -10.7707733757235 6.244596215789673 -10.7799484138813 6.050343053501913 -10.81279782146106 -7.190458301551813 3.296869990709006 -7.352481727994905 3.291459955852127 -7.181533645440522 3.356437144782981 13.4064024040758 -3.830027603750226 13.40800611262621 -3.764734657461192 13.56078239146676 -3.726844646767989 10.89275480103259 2.123704759042569 10.87935612045681 2.182979039270679 11.02147345875079 2.218828959770153 -15.14280266200676 -2.709862584694672 -14.9904621357679 -2.71895847218444 -15.00361624151294 -2.772085289375142 -12.3298287645453 -1.615197089627549 -12.50470098658898 -1.579540202041051 -12.32830907634541 -1.543517142056604 -4.2186634479956 10.10930458407336 -4.35782527381292 10.19994614024944 -4.174686778476256 10.13989285621025 -9.530881584966986 -4.958117123807443 -9.533598214238545 -4.894969342211351 -9.378692555904275 -4.888255413093771 10.51879056657059 7.466617310788993 10.52040027135098 7.420281349626403 10.35198833383415 7.429466775226744 9.779612343487239 -1.163778969753085 9.588536731702755 -1.161090864251027 9.778853876226279 -1.092095472159671 9.247523585465691 -9.548377605199301 9.241160229931531 -9.592469999068552 9.050207409363122 -9.585381227395791 -9.992750973069121 2.905388391185323 -9.989925676611493 2.965326665140856 -9.821266129877113 2.970493660435413 11.18021025093981 -4.798654021224784 11.02606697303592 -4.837560802460762 11.1909052307857 -4.733893111744886 8.327575597729036 2.348001471532391 8.15903106685761 2.309000791232402 8.307962280010665 2.406194939046271 -13.61096713852748 -5.41079182060458 -13.6137236618704 -5.35671007297559 -13.4379115757018 -5.428681550983511 -9.577047105168576 -1.68144576802487 -9.769848619206979 -1.714646780450293 -9.769111940770507 -1.642959206690308 -2.096594429976431 9.939152071445729 -2.047998874030708 9.965056443975168 -1.90320939661126 9.886777065068808 -9.928948534649916 3.019048413742917 -10.08386105505521 3.012433190057662 -9.912618715634523 3.077932273075196 -9.436649522835996 -4.854469034712737 -9.605332920141853 -4.85973619069905 -9.452922106823499 -4.790174331111039 10.18593894936577 7.919327916820009 10.02032773292191 7.879014533263928 9.994964991562728 7.924918970938178 9.782205087217882 -1.097721154188855 9.591888768740418 -1.166717956342206 9.591070573120943 -1.095021381572384 8.685295077323588 -9.545229928016722 8.853494574201475 -9.556302478471219 8.654940067597003 -9.588950585783939 10.90100930951394 -4.788306543495204 10.89838378838198 -4.725395104228611 11.06651389314619 -4.685297939273396 8.053966074678961 2.418914265419263 8.047912445656873 2.478726192902335 8.202526702783448 2.516458755327649 -13.54234860915186 -5.417300237040662 -13.36911470494113 -5.434087852022033 -13.38652101772389 -5.481126557379015 -9.57958417890816 -1.74669364855356 -9.771641843944998 -1.70820312804927 -9.578840097705355 -1.67500295009411 -1.232071204741369 10.26024010353983 -1.39133841086147 10.35304135429066 -1.200900593791367 10.29436270678662 -12.66814228241877 2.377350203719332 -12.65985061475272 2.437265019574824 -12.50661857132272 2.445496128669671 -12.03052410539118 -4.250910352726612 -12.03861942245435 -4.185663731301816 -11.89798321092683 -4.176183785629822 13.47992294829923 5.26206001227856 13.48652202046466 5.212276969555388 13.33440360260036 5.229012466248198 12.34952094851159 -1.06598506396593 12.17584834422437 -1.060290564118863 12.34793933833145 -0.9942963962296096 11.3988586349841 -8.025023599979276 11.38061846961403 -8.072729195697223 11.20772626084921 -8.058368713758338 8.4424042264723 -5.447712519310838 8.281486854483566 -5.487292765584106 8.446886637151334 -5.384866029489158 5.326202948193276 2.572171962007705 5.150342548509622 2.532346473062847 5.314659582432 2.631482032995606 -11.41694591869068 -7.391797075547344 -11.41107163624376 -7.343024311266442 -11.2260390863675 -7.414971645054204 -6.663163940965292 -1.773915639314141 -6.863368980011134 -1.806055580152876 -6.863333402150362 -1.734362497573469 1.123411846022329 9.899235056911641 1.160320994681222 9.929609107955077 1.312352450261986 9.849517003864184 10.95273527705855 -8.066561653166469 11.10484782493345 -8.083273682877548 10.91273131509726 -8.112912976540896 -12.62077190933074 2.457892391418022 -12.76140762630289 2.448407906507579 -12.60027454748111 2.517123744110278 -11.95378822116459 -4.146197175280741 -12.10702978057557 -4.15443346242402 -11.97416850944753 -4.080059809051368 13.21760574024167 5.721157335881676 13.07336636473598 5.684802709083901 13.04471307190146 5.735288867506887 12.35297015807041 -1.002215973513505 12.18088058096877 -1.068212428034827 12.17926693222815 -0.9965353506596878 8.154207475654019 -5.415234497688508 8.144706604398934 -5.354226727625072 8.320146068873566 -5.313348508334474 5.036468451197996 2.650618232763651 5.039082417752474 2.711631749460519 5.2004271591157 2.750120261643422 -11.13145969565566 -7.391439012256403 -11.29566255085978 -7.327883082870408 -11.10447404847891 -7.34957311867031 -6.661353700164007 -1.852639055062037 -6.861539409342557 -1.81309092649848 -6.66133457462573 -1.780950198004933 1.776404712719477 10.20105318224619 1.962748793365945 10.14560132187811 1.944060654455028 10.10636740511557 13.26146385023715 -6.106462768850968 13.23522851803179 -6.158547760548513 13.08559094550833 -6.132999753246461 -14.75266802473825 1.082403605504083 -14.89549335129753 1.008308709708283 -14.88724251443864 1.069351538455833 -14.21983854152778 -3.060925163840504 -14.22933759963834 -2.993283812426771 -14.10578324831537 -2.979534349015542 15.48160399255966 0.5770145181887046 15.47885196503021 0.5217674052181079 15.34902864631813 0.5526157947697609 14.4085589140391 -0.9186814868510287 14.55875325221186 -0.8571281806953498 14.56121365463613 -0.9287903644628499 5.622700034337741 -5.968613656585633 5.459599557046754 -6.008022127867005 5.619306958676546 -5.907207759221429 2.234185883457617 2.846221968502641 2.05619471312794 2.806527840834541 2.231453283260552 2.907232268431428 -8.946607458595071 -8.829138194235512 -8.928442840027005 -8.784425541352926 -8.740777747529357 -8.855817660330374 -3.64931768975727 -1.843105382720829 -3.851067051202477 -1.875538653393438 -3.851721353743065 -1.803851642590221 4.464883826458179 9.499526558368027 4.491027881312752 9.536029190383411 4.643341830391423 9.453439173665121 14.40483075529906 -0.9132789595077125 14.40244610638993 -0.8416120689180313 14.55502645137366 -0.8517277038589923 12.95794062711668 -6.180291355015434 13.08950781508153 -6.206091741606143 12.913023507048 -6.229985096728305 -14.8140162096653 1.059420999466457 -14.83266353466066 0.9985963012948811 -14.95615782680249 0.9845168882099653 -14.13872375661686 -2.969314619296041 -14.27335445897661 -2.982154651695046 -14.15887680713695 -2.90113161730601 15.43783777060533 0.9736996323347391 15.30620218310803 0.9463326193768932 15.28972980437781 1.00449669855066 5.300298042191185 -5.906065881053298 5.282977278655332 -5.84649076619006 5.460606203409836 -5.805843315806659 1.975272582752247 2.888976142369894 1.986781634531835 2.951575167215556 2.150279520351499 2.989951018310447 -8.617044218355225 -8.765436230663473 -8.783856957352235 -8.702500729815426 -8.577669085911051 -8.727410006077253 -3.652464057159661 -1.900252282074727 -3.85485969339872 -1.860995764877565 -3.653109946158304 -1.828563979354239 5.024587562277183 9.658440544008718 5.200860985140309 9.607414922305379 5.192864437241487 9.561645281532233 15.20139571713304 -0.7832599830878805 15.33667675910309 -0.7274851764706164 15.33977922602832 -0.7991350594632984 14.79933303406314 -3.341115508192154 14.77265350496479 -3.39836517498379 14.64320091501064 -3.356774936119895 -14.95610897954592 -1.909208840203968 -15.07599869206904 -1.991458496775166 -15.07751573528091 -1.928901275241892 -15.39326752157513 -0.7843296655218965 -15.28266583431196 -0.7647900852643523 -15.38973642756603 -0.8542764057859086 12.99926510517248 -6.365972724385981 12.89096280979466 -6.318940293998509 13.0298524886994 -6.311456731823297 2.23443586118247 -6.509701919163327 2.083014637381942 -6.547087535680173 2.223981335268463 -6.449144382802151 -1.582237017695348 3.153970070279289 -1.747768390871122 3.116335919057514 -1.577866681390738 3.217126931730753 -6.086444133991895 -10.02632646503929 -6.055284107720793 -9.983846051526383 -5.88265736500265 -10.05312735819156 -0.02282180959464641 -1.847353471482086 -0.2096720101373384 -1.882527368021266 -0.2110394681772509 -1.810845336039839 8.314236475210478 8.29180456189332 8.334324174282287 8.335217906230978 8.47216433976871 8.254142624876106 13.11564997703518 -6.271351032549298 12.97686232071334 -6.279926297514996 12.99238219867244 -6.219393559674243 15.20122131714194 -0.7829757674501733 15.19813309062258 -0.7113288802199134 15.33650224083415 -0.7272007832983679 14.63121237378913 -3.407336470604331 14.74471450841038 -3.446539825899017 14.58836189301911 -3.460772823618976 -14.8866795803959 -2.084725420977736 -14.8949642921855 -2.147673992041696 -15.00530682266275 -2.168100194095186 -15.28508189753491 -0.6949102504479959 -15.2715043214534 -0.7648946804394748 -15.39283394735346 -0.7838889417101314 1.892160919020289 -6.425902585879954 1.868767859027434 -6.366956771317088 2.033817736372647 -6.328577566966812 -1.794666810238712 3.158459666940161 -1.77672709548575 3.223006485215223 -1.624920812525558 3.259412909341735 -5.738308517484776 -9.9196026756715 -5.892018101380105 -9.858350346301181 -5.687844696006196 -9.88326371919716 -0.0195177593414797 -1.925601222013958 -0.2076687309883118 -1.889078926504697 -0.02081872739155832 -1.853904382528707 8.739247614306635 8.311403056835225 8.89559514850038 8.269860595000885 8.891695216677331 8.217201971763647 6.718849235909625 -10.21256745616353 6.614934288656784 -10.15785381161231 6.770911987895387 -10.16635193070093 12.80581362546677 -0.80648554750152 12.94019774484273 -0.756859543847706 12.9434178150733 -0.8285028390757576 15.12326805705956 -0.005724728568732991 15.26336284828557 -0.004608053785640344 15.2415335510137 -0.06540980439345059 -11.50453675627246 -4.949390297011129 -11.3841115316841 -4.923095392646786 -11.49038109852061 -5.011687906892525 -13.93860978541115 1.88165947576014 -13.82696621993622 1.907054775980008 -13.94476584078105 1.811030498634434 -2.078754942071048 -6.987921009483267 -2.210242828918581 -7.021818338598409 -2.092936155250775 -6.92718544558576 -6.151128742657361 3.304125242236099 -6.15877162023911 3.238327767956296 -6.302032922385633 3.204635065414963 -2.596341069426784 -11.00527113169676 -2.555269252944989 -10.96222996201333 -2.409159206372325 -11.02869179128193 4.494748338616994 -1.806386664472731 4.333051896468609 -1.846237497856189 4.330927366861394 -1.774552834468218 12.1120515392074 5.779978294847714 12.13426506364874 5.829747561268214 12.25054356714622 5.755275000657892 -13.75373242564983 1.925344024270304 -13.75142221387348 1.8552081856282 -13.87224284248714 1.82986253059147 6.486184885703263 -10.36384751618531 6.525792680336604 -10.31147456855855 6.642062520857404 -10.37341461552715 12.80655862080864 -0.8077278979498137 12.80324973613752 -0.7360785452619145 12.94094270752326 -0.7581018395624251 15.15939684649568 0.01018895454359727 15.26368926087048 -0.04398609028138865 15.12359326558368 -0.045005003937031 -11.19241568530256 -5.108324762408362 -11.18623690987708 -5.171355351421689 -11.29748715051238 -5.197797271961211 -2.41097718015388 -6.898922099391771 -2.436240357128277 -6.839506268963933 -2.292903159146043 -6.804881631879261 -6.381986106912356 3.453728300457278 -6.531958987267718 3.353370442805959 -6.513780889231478 3.42057673745037 -2.227949932497694 -10.85096291745813 -2.357990225637678 -10.79290016711018 -2.170413558114848 -10.81427691463804 4.493568953358743 -1.869716488258018 4.329708440164693 -1.8379011292138 4.491405204687568 -1.798051105317685 12.33040395020914 5.723885370656501 12.46813695344504 5.696682417251439 12.45948417594871 5.638383849952093 -10.19381424441942 3.628655104702682 -10.3267417310972 3.529490086089372 -10.31196573141311 3.598679870542613 1.263047233919458 -10.86497810175628 1.149601729725166 -10.80812222609864 1.321968911207776 -10.82541457156122 8.33495194681948 -0.9393709846483315 8.479313128830071 -0.8952687873145162 8.482133503898519 -0.9669310694859402 14.24004603569673 3.303754303346462 14.37300884631387 3.289109543227458 14.35765749283158 3.228332671543959 -6.422243354337583 -6.122216021210996 -6.293816491819487 -6.091079264381685 -6.399197657147495 -6.182778468998228 -7.058934942962307 -6.842877791739229 -7.0463371544553 -6.904740474893552 -7.16151167373051 -6.934754810238522 -10.88648996590411 2.64862185474179 -10.89023252981966 2.57997412362618 -11.0162835850136 2.550501913388109 1.853554562682688 -11.40137518247395 1.89837555497093 -11.3549931071721 2.021890098738182 -11.41897718556329 9.260413972355488 -1.722941074899034 9.257523772930266 -1.651291545528555 9.401407576662528 -1.677829723944222 14.51714728365275 2.448061596623807 14.6201775251934 2.383960104401724 14.48741809509194 2.394227534894988 -6.087123770824414 -6.231823276455812 -6.073781202193569 -6.293378880329974 -6.191595657321873 -6.324164106489588 -10.05041992293245 3.580831462101102 -10.0552548504074 3.512660789276433 -10.18411339270548 3.482305749303916 0.9356761749270038 -11.03968848633572 0.9805044406586662 -10.99431749290079 1.107750468641205 -11.05870048010149 8.350072620762127 -0.9697666054076026 8.346837925408174 -0.8979562164649447 8.494432355201985 -0.9256614758650968 14.17664989377583 3.358260377678533 14.20549124667891 3.411489102167506 14.30982380949343 3.344855133454883 -7.410190894200336 -6.718994021734125 -7.284596669721097 -6.688718920687671 -7.388212431718038 -6.77987156751045 -11.01960778418768 2.686646339388251 -11.14862836689238 2.587897482017326 -11.13513444487951 2.657481536116447 2.170761244673912 -11.26174330560949 2.060598415327624 -11.20525307218632 2.229199003757358 -11.22120813922551 9.265735761459213 -1.733143836158397 9.406728916481065 -1.688031616218538 9.409726614996046 -1.759681118882882 14.53016391219004 2.386157286837497 14.66279109864979 2.374881698012832 14.64589534681116 2.313857388509863 -1.592010528313675 -6.110358672654588 -1.617113455819886 -6.051119391115596 -1.470442782662715 -6.015815558400712 -5.675868120392944 4.102737333330855 -5.657527477341786 4.169472186846489 -5.522591507270088 4.203220492284856 -2.881399738377283 -10.27094442238407 -3.015480122053204 -10.21231916761222 -2.824909466322803 -10.23451209583057 3.62459326922874 -1.129226331396547 3.456989302230531 -1.096531799400456 3.62225729422133 -1.057394373402834 11.7882318389257 6.541826169582367 11.9280522850443 6.511764698448218 11.91982790342517 6.454265066894251 -12.27667041523024 -5.248005691055829 -12.27356082976313 -5.311243545222993 -12.38023254958901 -5.336378614898749 -14.3947114078396 0.6318532942106032 -14.38937508335385 0.5615894983034399 -14.50614646384963 0.5376517645847719 7.825441422692121 -10.18630463490646 7.861589823375244 -10.13201110231001 7.973730621424816 -10.19249291082982 13.63024992791607 -1.601611422134419 13.62683556517517 -1.529973458177701 13.76027134916013 -1.550616612102672 15.17341156392762 -1.230085607317037 15.27593408757522 -1.28029106195924 15.13451778086249 -1.284532676661235 11.50588148154212 6.634546521068818 11.52727757931671 6.683237604602827 11.6466988274536 6.607517660109634 -1.266398153327455 -6.19702090032682 -1.401026381253884 -6.231521409648109 -1.280175711516491 -6.136411075446405 -5.355324221922913 4.021786819202103 -5.502326438409484 3.987301835127076 -5.348373572331146 4.087143164817413 -3.232307863926394 -10.44020248185125 -3.192655004137607 -10.39775020088385 -3.042109121301317 -10.46428904576698 3.601572222001094 -1.003612093881301 3.436302030887274 -1.042743772599786 3.434251235682388 -0.9710784511540591 -12.46001996591958 -5.055837435589588 -12.56488972964608 -5.143250858935527 -12.57657385768954 -5.080702991098518 -14.56778065992224 0.5730555138965601 -14.46071794843574 0.5971398635819519 -14.57131938023068 0.5023323048544063 8.008160250368158 -10.10018678908535 7.908633852134024 -10.0465087055165 8.056967300212826 -10.05200162859289 13.63038543231162 -1.601824645575183 13.7604068508368 -1.550829831253393 13.76379106725562 -1.622482571299682 15.13823423222872 -1.192664803811458 15.27962873725492 -1.187995013980668 15.25468513525911 -1.247916035253395 8.320032834994811 8.805923976284776 8.476908639299536 8.763849472740052 8.471560558106781 8.71250335215912 2.335793623000484 -5.635510610887174 2.313753974424717 -5.576430839983729 2.477461437781119 -5.538016445730615 -1.387768377610958 3.941909945668608 -1.371653774586548 4.00625780843145 -1.221087150265096 4.042716217823372 -6.143763369393341 -9.292311573887611 -6.296179211808116 -9.231594788140507 -6.095413776644467 -9.255861970724185 -0.59654329885026 -1.109980878857306 -0.7828790743715841 -1.07390236865711 -0.5978160800109561 -1.038304393877002 -15.19988637368895 -2.039567051502149 -15.2104133528292 -2.102241935128155 -15.32186333026375 -2.121385542184521 -15.2489235624405 -1.933534688701624 -15.23371607094502 -2.003294297435437 -15.3553343954287 -2.021058750420265 14.03986414997043 -5.279907791132423 13.90574350790007 -5.292442028823126 13.91492662070425 -5.231255514286556 15.2836046432 -1.614345238868835 15.28049663115124 -1.542684755638662 15.41870051283549 -1.557444339407133 14.35291432004064 -4.424301511264253 14.46767404925814 -4.460417939230651 14.30828664924902 -4.476675693021341 -0.5482991866424092 -1.197011249585408 -0.7333561165364616 -1.232628729202202 -0.7351003442153165 -1.160376429460887 7.867035186887023 8.800561401308919 7.888370725125638 8.84260897639618 8.02557362790731 8.7625386466067 2.654628259052303 -5.707906477776437 2.504413073575968 -5.745251242350809 2.645470506589455 -5.647210911703112 -1.107727804707062 3.878743020473473 -1.271754052167728 3.841154715274977 -1.104690114787528 3.941568165447574 -6.474519628556968 -9.420163277772423 -6.445742078490899 -9.378641684539636 -6.274102022018866 -9.44614888008285 -15.23122871280863 -1.908193742106417 -15.35430200967466 -1.988989828758354 -15.35259956099925 -1.926587386148011 -15.34296726267979 -2.022400720208078 -15.23130273960793 -2.004047118516191 -15.33708136952566 -2.092044149149024 13.91755290956209 -5.487568927409439 13.807768837111 -5.442732944224471 13.94210294924037 -5.431703757328234 15.28364711295021 -1.614368949648991 15.41874279649783 -1.557467776773037 15.42178839963 -1.629113715372726 14.54640155736297 -4.316358253819901 14.51806974243327 -4.372510095152036 14.38731274245073 -4.334334957351431 -3.945561259909191 -1.247432961482665 -4.144241219602215 -1.207901852260645 -3.946328897595604 -1.175170157205103 4.698119345898045 10.04174579545983 4.873269089505744 9.991083025891768 4.863049793779602 9.946528886118488 5.620742496854408 -5.119726974429264 5.604888190087659 -5.059891377747156 5.778909082300534 -5.019521984430201 2.255254847342431 3.653745439426706 2.265000412056336 3.716146832646577 2.424990328432509 3.754277698767847 -8.917101681407059 -8.1146430470783 -9.080400592411378 -8.052479295692518 -8.880447140686428 -8.077158578998903 -14.58309113522061 0.6528608788794718 -14.60258209094925 0.5923566551232347 -14.72844300025383 0.5790313991206636 -13.8781529907074 -3.913382065177766 -14.01536599989013 -3.925487686114186 -13.89863766316225 -3.845470610647374 15.29800908158372 1.581883090390108 15.16558032337974 1.552750298666116 15.1460034833457 1.609818010593414 14.30881866211792 -1.692632445532497 14.15545791007416 -1.754877769326812 14.15317194537882 -1.683214341573573 12.70320001683093 -6.854170988082087 12.83778415861989 -6.878492687552768 12.65867243096264 -6.903392772628819 -9.257803762624148 -8.215598339111129 -9.241682369780454 -8.170300177861128 -9.058245592027379 -8.242183947451787 -3.990225029160866 -1.011135991860506 -4.188142784922009 -1.043847348048704 -4.188713548611261 -0.972160923671727 4.105970040594284 9.892966958188575 4.133838264938596 9.928255723326144 4.283387189200413 9.847447681103789 5.932770313230748 -5.179347270187138 5.773173490248002 -5.218484296031162 5.930759023218888 -5.117714367413588 2.566288905324989 3.559640027457126 2.391913650836002 3.520273378337419 2.562072709238854 3.620361535147916 -14.51788030950068 0.6511415311768315 -14.66381877539293 0.5780316863240446 -14.65508634971654 0.6388715415331973 -13.953495816722 -4.008506070146007 -13.96310290289799 -3.941174895708128 -13.83719945610775 -3.928100685185102 15.38104342951547 1.130716903359272 15.3808273263972 1.076182356802825 15.24758353691842 1.104658260444447 14.30976407854533 -1.76235145348969 14.15412577445248 -1.75293064072785 14.30748698386486 -1.690686014295796 13.02993856590179 -6.744615836827118 13.00465364406757 -6.796144945084329 12.85150333301094 -6.772359295408605 -11.46806795988844 -6.668713535147372 -11.63157258163808 -6.604958809325613 -11.4426114880492 -6.626149117170876 -7.091008477986005 -1.015978160065062 -7.290683259657538 -0.9764692306588462 -7.090890625410724 -0.9442903895154495 1.268230750697823 10.56912364664678 1.455885385089209 10.51319634304936 1.435646116346202 10.47482423077415 8.561760365605766 -4.594017132148604 8.553260152533577 -4.532727619544389 8.728292994576382 -4.491858061524657 5.479008622761363 3.369754560595218 5.480353569302521 3.430557380024089 5.641294908696153 3.469013249891727 -12.26274549061468 1.848468235279291 -12.40572891545067 1.839508031990456 -12.24253538428687 1.907594473980516 -11.61596664841403 -5.017679400703231 -11.77174917677895 -5.025388663622297 -11.63596240303391 -4.951776659613474 12.8001487679496 5.829148100571635 12.65317416080626 5.792018540894521 12.62426740366962 5.841586059234314 11.99751906690489 -1.828368635046137 11.82252494270866 -1.894888782999132 11.82107046575765 -1.823210091500027 10.65802845375483 -8.671799730436419 10.81277826721054 -8.687484796257966 10.61926089981305 -8.717852064054716 5.750990975317477 3.31136559973065 5.575661432809635 3.271551670185389 5.738255817284522 3.370497837393292 -11.74127109927246 -6.685258370954052 -11.73702922390491 -6.635874988853528 -11.55256894943259 -6.707831543817108 -7.091190853730137 -0.9431360261704894 -7.29098352156178 -0.9753147382708393 -7.290877554208054 -0.9036264341043482 0.6127651770859544 10.28894483561995 0.6512023903603736 10.31855930465727 0.8030406641483201 10.238796073121 8.842100762020555 -4.623888330104501 8.681598202884702 -4.663462788416764 8.847608271360844 -4.560778736174043 -12.31107478204764 1.753873798862986 -12.30324168179712 1.813755915452977 -12.14751688514993 1.821417013215402 -11.69979945966459 -5.113004999379952 -11.70727777050524 -5.048050794785733 -11.56429641792128 -5.039070150895581 13.0805070206411 5.337211616342939 13.08713011415995 5.288110761292079 12.93225127445354 5.303380595568586 12.00351771803758 -1.907218547989442 11.82704899982748 -1.902058087232394 12.00204187342531 -1.835535903356021 11.10929452063571 -8.599960102656215 11.09255170630536 -8.647019929233085 10.91676123488222 -8.63397882214665 8.463770738087579 3.147350521491687 8.456621527355717 3.207061144183714 8.609545807931912 3.244617348842078 -13.8062820408144 -4.61324397110358 -13.63605353607343 -4.629094035547781 -13.652308496306 -4.676909725656401 -9.979086762679119 -0.9118319020731873 -10.16916560811681 -0.8736416729799855 -9.978271983861317 -0.8401464148777312 -1.691145200738942 10.57184081927629 -1.84826347036215 10.66420366060691 -1.658201889270249 10.60530275772313 11.2422689293593 -3.949126275565361 11.24055594957627 -3.885882491929603 11.40862041560554 -3.845831598182718 -9.551511654434053 2.322499571152712 -9.707899358580669 2.316167172924643 -9.53602032789137 2.381451480189401 -9.065592145234403 -5.690193882424489 -9.235863490903935 -5.69516644275171 -9.081037644808127 -5.626115617917052 9.766136736852715 7.721607438938638 9.59747249678175 7.680960875880517 9.573249630871358 7.72651232525906 9.412631202623736 -1.935108157351509 9.220341160553913 -2.004392150565284 9.219643163405078 -1.9327022073625 8.348317994832483 -10.08961773556786 8.5182783225238 -10.10018936119623 8.319681983772494 -10.13298405159051 11.56950513659177 -3.978981277320125 11.41710016845712 -4.017821891039564 11.58246404278411 -3.913550478102852 8.745706457272915 3.068643334189087 8.578885930147454 3.029875765457264 8.725079453870832 3.126753152607873 -13.86692416850899 -4.626230174078959 -13.87054121951037 -4.571360192675914 -13.6968569159072 -4.64311752595167 -9.976255327306809 -0.8472843743890994 -10.16714868373195 -0.8807805770805147 -10.16629217501194 -0.8090897253007084 -2.533344626979457 10.29228061277762 -2.484853677362083 10.31806146223492 -2.340389993372554 10.23952093611932 -9.616884700676433 2.201801032923582 -9.61515097977825 2.261810656067003 -9.444773814499946 2.266706227235113 -9.175409906166889 -5.773230089398138 -9.17713875390521 -5.710372376972855 -9.020757719505559 -5.703938852938419 10.09943425579705 7.240053896620663 10.09965679120681 7.193989782612289 9.929612574154675 7.202508009369316 9.404929318733672 -1.992687653339935 9.211965735149661 -1.990280067643737 9.404257851321997 -1.920999636882653 8.924979711879992 -10.05891894134058 8.920486714005742 -10.10248339065917 8.727643741996864 -10.09612523033034 13.77850389282831 -2.910019633285045 13.78143809692783 -2.843839681106521 13.9298626843523 -2.80633027919083 11.33665266398774 2.78593156790716 11.32260415247666 2.845243600480377 11.46056303825653 2.880680914411926 -15.26293140775587 -1.796101148916797 -15.11329806202435 -1.803862510157038 -15.12638808131952 -1.857832623224716 -12.68632087590331 -0.7758630810570987 -12.85823725814127 -0.740734212245754 -12.68467554174819 -0.7041807476080513 -4.672671231989843 10.35045117739623 -4.808478246220423 10.44054762600533 -4.628862510747769 10.38098144188843 -6.792177553506492 2.582245445252399 -6.954594046043071 2.576853371634834 -6.784470370629784 2.641963576601192 -6.374573240540036 -6.187568733252327 -6.551407360976489 -6.191571608097306 -6.383121211835027 -6.125056941771275 6.912893816468734 8.555956293179982 6.725300584775114 8.513581467421554 6.712602637005921 8.558549812744028 6.700547613092615 -1.977959297731593 6.500219845192263 -2.048236408727563 6.500239259365231 -1.976546447869798 5.649213380515395 -11.25946113552951 5.82574159759708 -11.26872936192003 5.632899024968824 -11.30124203253089 -5.551800941494372 9.974274129334603 -5.491410055673462 9.997149337750599 -5.368852850462249 9.921354873469303 13.92984095638246 -2.872343983031653 13.79233213900375 -2.908847779068738 13.94356398530553 -2.805043860669955 11.59642830635142 2.7069070901034 11.44591128028059 2.670459769131661 11.5703433303029 2.764785082557915 -15.2740524274328 -1.762126047424486 -15.27882762962187 -1.701266132642114 -15.12446246544826 -1.770388747532218 -12.6855267837619 -0.7016557110857535 -12.85908865025668 -0.7382087346658343 -12.85747893362189 -0.666536678107947 -6.852022620543488 2.437853727669991 -6.858536899366711 2.498713277647795 -6.681685596940605 2.502617822574034 -6.479790861557024 -6.288473587179761 -6.474088080872148 -6.227215822866979 -6.311679035328347 -6.221686679518379 7.252266400767371 8.072841323806804 7.240377966717661 8.02713389712147 7.06364894197481 8.033380336635075 6.70970018536817 -2.065598269347671 6.509389914405678 -2.064186401653375 6.70971560786901 -1.993905631379044 6.339797585227679 -11.26859984910191 6.348655884494512 -11.31017592455815 6.148408117669895 -11.30605105569771 -7.604905728673864 9.751676976709444 -7.711809764154808 9.840509215937177 -7.549008303386884 9.780774128464524 15.31342956581983 -1.159996385191196 15.31385734274435 -1.091836756716515 15.44506005980742 -1.058185235361697 13.99248058745683 1.90429339551723 13.97576403205957 1.964276792873518 14.09615622794651 1.996729211303031 -15.23497945323221 1.841607913028883 -15.09924819783357 1.844487547686547 -15.11720579889005 1.785170785042847 -14.87221805652376 -0.531679520155393 -14.87466073377773 -0.603337002607631 -15.02512862964613 -0.5727075492745442 -3.874968577375353 2.844150243789763 -4.034409893278372 2.838018583062885 -3.875926197158899 2.905220518865693 -3.360693470480006 -6.683452321535736 -3.534325837207582 -6.688309731489518 -3.361837750162391 -6.622037101381629 3.89708856379888 9.001318164271137 4.093750487282498 8.997317177626449 3.89607054180398 8.954670637020273 3.761763602072166 -2.017536826766855 3.564385902169928 -2.086942805548035 3.565106551543301 -2.015252408016748 2.365764794796064 -12.15676920708673 2.1879813970502 -12.1857763220583 2.192828326141625 -12.14379308608111 -15.02351923782273 -0.4992513991472314 -14.87297546578908 -0.5298859801427713 -15.02588627862789 -0.5709134563710172 -8.49524937736966 9.278735825274966 -8.428113086530171 9.301266284762386 -8.328530578409394 9.226110260287666 15.34374877225697 -1.071967297237093 15.47427426737303 -0.9692795259564059 15.46385705216017 -1.0388702376328 14.19060461650755 1.845540874017543 14.05929252752984 1.812400823296398 14.16353397493676 1.90444200215758 -15.2412219754005 1.882507909375573 -15.23908262849998 1.948067774145756 -15.10549720994015 1.885571001658158 -3.930704494340847 2.70612638188966 -3.945635065013709 2.768333950593896 -3.772016258706118 2.77302894642654 -3.436389851907229 -6.81557418920629 -3.423558414325446 -6.755284260426986 -3.264130945621227 -6.748933690890019 4.431781809352727 8.520026033747911 4.406673536944801 8.472956880211376 4.233171750787022 8.48014339648196 3.757884909242363 -2.083646128699481 3.561178800323074 -2.081354475691449 3.758557160119626 -2.011949658255776 2.983330606037973 -12.20717948585779 3.00347212370062 -12.24935120400201 2.807053193032321 -12.24140501544334 -15.4035264028204 -0.3993835653760778 -15.40658650987916 -0.4710293799135456 -15.54106757485568 -0.4458871004901172 -10.76348273852581 8.373436725822025 -10.84168260677484 8.463054712708299 -10.70238673733465 8.404852547835649 14.89271804834208 1.362310896943695 14.88536805414721 1.432143494436257 15.00247151614127 1.460613558457811 15.54442831576886 -0.1772025300544178 15.53215565459417 -0.1153184851625176 15.63898173772364 -0.08663501576942562 -13.08798323996053 5.523970908762649 -12.95196251343829 5.538395629649434 -12.98101957240073 5.476926694483 -0.6272731539126153 3.19803476748175 -0.7755778935279711 3.189543266014197 -0.636083871153228 3.260960878875714 0.2617281090394091 -7.19436483523608 0.1002711030644504 -7.201954603348653 0.2664692778492001 -7.133349633543099 0.9329726925144188 9.265565936736246 1.115668704270432 9.257032177211325 0.9189564141891182 9.215725544524082 0.3316474585252793 -1.997065103135946 0.1471248963081939 -2.063800763453142 0.1485215216200342 -1.992110761023125 -2.580866583210967 -12.30237726684135 -2.74053381243914 -12.3223531980944 -2.741168096657231 -12.27730591062638 -13.16180678069201 5.642533833652262 -13.03990629734695 5.591268123566143 -13.17575952501795 5.575897571630211 -15.53731998110256 -0.3753548647507164 -15.40289189900673 -0.4005078232859363 -15.54043326706968 -0.4470109996039769 -11.64771592694504 7.705653340079344 -11.57930451534662 7.731094740011856 -11.50357329573282 7.655281235309178 14.8107764665212 1.513313846791035 14.91938860170879 1.612397884305921 14.91777504032939 1.541596645895389 15.55247350337337 -0.2866621609038716 15.64798935396019 -0.1967217884386764 15.66938335224284 -0.2577625852211226 -0.7257061121927522 3.135624826641909 -0.7492826830192656 3.199645525826849 -0.5861050103982013 3.206912841397215 0.2046698268300501 -7.315777736863169 0.2223359818162479 -7.255666211178008 0.3706030609532812 -7.246777032734928 1.446737205727232 8.81586091648888 1.41032005688943 8.766193914618109 1.249175226116862 8.777145049173717 0.3265215087350981 -2.062757591221067 0.1436112862092576 -2.057822093329615 0.328134466515313 -1.991087490628809 -2.060940502956821 -12.43180914816927 -2.038646191294379 -12.47791345644089 -2.219711610518229 -12.4558014587378 -9.182703170680265 8.142981667147495 -9.222363525422407 8.083086258425697 -9.332830983025458 8.118515293549825 -12.82885888313337 -0.4333106680017894 -12.83210656012083 -0.5049631113588409 -12.96437386323524 -0.4857612753338539 -14.22667272500704 5.027393164206575 -14.29224145579548 5.119741104330275 -14.17026943404672 5.067076696042379 11.68675887388286 3.602706758615832 11.66930486808475 3.672175459232727 11.78517351991617 3.694316614731889 14.09814757657465 -3.494449347467016 14.09792665432916 -3.431131137389283 14.20357449836181 -3.407465746909945 3.311842824457591 3.69480617978706 3.180952569015447 3.682442626085488 3.296724549315826 3.760389661226368 4.841221589877175 -7.431855999181114 4.697824292369404 -7.443925136107564 4.847706590950949 -7.370370172292076 -2.400479053744023 9.30757624764987 -2.238769655885183 9.291399539759695 -2.423927921558295 9.253287604899537 -3.905360039888937 -1.912633707595967 -4.070156549817515 -1.975172376102798 -4.067783527303628 -1.903515356447446 -10.17289669217167 -9.682773219005764 -10.31371533681537 -9.682207133991504 -10.30134664771371 -9.633848868670501 13.97984504926813 -3.543690590935927 14.08633077382004 -3.45750883909293 14.09538737111564 -3.520336337190298 -9.511988152546504 8.305585174373318 -9.386222448783157 8.26807649807159 -9.535912013812602 8.242001299443496 -12.96189303870368 -0.4128193214747257 -12.82966451108063 -0.4320182967679505 -12.96517952201887 -0.484468854796048 -14.71269481696847 4.013498378462776 -14.84004376486605 4.057588390279326 -14.77920814462923 4.091349341689019 11.62583048565259 3.782543859477425 11.51972838591437 3.760171445361742 11.61722827716697 3.852384628676802 3.370585161341922 3.515682000496788 3.344894772389757 3.581699094405173 3.48686275523955 3.593161887339996 4.955591728013779 -7.628168954165989 4.973881571941138 -7.566714195225301 5.104651600287307 -7.553586915436286 -1.92119739166922 8.919516933797494 -1.964602942159007 8.866450198779596 -2.107123554284511 8.883793314033616 -3.901264302188793 -1.994557209596358 -4.063862195684717 -1.985426570730759 -3.899066565719143 -1.922886467266069 -10.19290282709548 -9.682566741176609 -10.18739774005304 -9.73803100462597 -10.33372012348084 -9.68182146362974 9.311076820884212 -5.949331613577347 9.323484570056838 -5.886859372862432 9.440922056310367 -5.869195587661766 -5.026780911688034 9.357246248914594 -5.071445833698491 9.301009797261001 -5.197347146347086 9.325529548587996 -7.947102303290013 -0.5894643933295963 -7.949887549912635 -0.6611270684132946 -8.09539992411437 -0.6477299531407387 -15.43124420531314 -2.567005871622457 -15.46057470326414 -2.620836623976506 -15.55809902521233 -2.534853325241069 6.98240149880651 4.531278791130957 6.958357616329172 4.598849252041651 7.086537431753661 4.614685916919045 7.630287216100353 3.649601229581525 7.51575006665552 3.632015506039547 7.615492771450722 3.71765445620545 10.19784578773473 -6.696913920680565 10.32410489018963 -6.615635440950904 10.32273040499034 -6.678742755244736 -6.218252828831257 8.823750056783792 -6.078905355053932 8.796930614847144 -6.245046099709876 8.764271056133902 -9.074801065170108 -1.766913467321274 -8.932470938382535 -1.781327539503857 -9.077741070611141 -1.838567743463145 -15.62387269144929 -2.045133868235527 -15.75144007862989 -2.01505964539902 -15.70876149207593 -1.970699328397222 6.937165609727131 4.677847019309463 6.819450760308195 4.661365312288654 6.923038988214199 4.745193443225125 9.126273613450488 -5.880017574332839 9.256920704058864 -5.800692167285071 9.254189010252405 -5.863139782920194 -5.45296217489605 9.620680742919076 -5.309853573753243 9.596006380142441 -5.479766393658354 9.562188841765938 -8.093488363116617 -0.5746549751459601 -7.94799687680568 -0.588048802177663 -8.09629459340672 -0.6463142111322279 -15.17091417538628 -3.380255623136744 -15.30025758137425 -3.35497264948756 -15.26327467135561 -3.308565833622692 7.912526008402184 3.30463990496084 7.888398934878699 3.372370813701915 8.013696414966562 3.389236110353795 10.17847454433213 -6.692745542119415 10.19057221808936 -6.630247968358376 10.3048258676164 -6.611555797063267 -5.801968218888781 8.531798935816008 -5.846230111475199 8.474858109547116 -5.968740488989815 8.501196010495569 -8.932934856513818 -1.780596796018044 -8.93592119289028 -1.852242308710759 -9.078205033349054 -1.837836929919548 -15.7881399394003 -1.079236078955304 -15.87590417856727 -0.989918974313639 -15.75169750049168 -1.027709019856362 2.485499947307374 4.472956968423371 2.460685075866149 4.538363142456573 2.60760486618398 4.548901101428431 3.893771875855423 -6.489944943947041 3.912077587770289 -6.429142407816977 4.046854114150587 -6.41693195800528 -1.248765647391035 9.644188906583567 -1.291345768410386 9.591806514279671 -1.437472144776269 9.607794773559277 -3.040185400566218 -0.7887452822798593 -3.20670150097601 -0.7804733697264258 -3.03814380460506 -0.7170700421782971 -8.513804773128053 -10.4062803803854 -8.502502129869862 -10.46032620295482 -8.657480188289187 -10.411727784352 12.45338725151071 2.380162317891126 12.34711374232451 2.35668023675648 12.44546212911098 2.450225481813456 14.59647349106598 -3.96016234246847 14.70064903028807 -3.873024521808449 14.71112753794043 -3.935702814139552 -10.27897970006404 7.308989002682967 -10.15504398845437 7.268988025667653 -10.30152361223623 7.244645151739499 -13.70483722245436 -1.612202720142785 -13.57331890939997 -1.632485741994377 -13.70820827785765 -1.68383766910858 -14.2028553197867 4.626108982969789 -14.33209904411481 4.671881631678597 -14.26895117078108 4.703648871959323 -8.65468903430116 -10.25613977628639 -8.798428666794013 -10.26041203342668 -8.790869198118646 -10.21150150056348 2.466283758066018 4.62206719277332 2.331411514804468 4.610529309645149 2.45313393602676 4.686852483491413 3.899780881918737 -6.35755508248576 3.752928732434449 -6.368692221510917 3.906433381573336 -6.29623014674705 -1.738061956477426 10.0025226433876 -1.57224390367624 9.987962863051735 -1.760158718123047 9.949116364288217 -3.037901029249006 -0.7174698557880698 -3.206458689350344 -0.7808732430068408 -3.204406899013374 -0.709201541547975 12.47944916925332 2.215860560716169 12.46370053507993 2.285545533903941 12.57861381290743 2.308871000587931 14.69020064242352 -3.886202013238754 14.68750845235864 -3.823009847978879 14.79333028128099 -3.79829764480802 -9.970634185330551 7.120645168812637 -10.00870519256849 7.060282258332443 -10.11750423388941 7.097804445309613 -13.57092739168663 -1.63637693552676 -13.57436135615463 -1.708017233436424 -13.7058167275451 -1.687728915632827 -13.61655813152524 5.653729477197946 -13.68199679706545 5.745737994101852 -13.55823324313051 5.691394848970783 -0.9651417306627153 -12.1903128044228 -0.9411700735599637 -12.2358319372882 -1.125829964372461 -12.21718643351928 -1.307272511457143 4.132392262628038 -1.327963409677663 4.195947023325036 -1.163709907130863 4.202618734424284 -0.5424318152963675 -6.128563043848196 -0.5253337200742964 -6.068502914171412 -0.374555827329372 -6.060206327407129 2.025731516931676 9.50697533047069 1.991131215615393 9.457847709200854 1.827162434671363 9.467904827482494 1.016174088466246 -0.8488228054622627 0.8300988427380829 -0.8444824172850816 1.017459078152508 -0.7771400586307555 15.15518710247812 -0.03318400000511543 15.26741700610177 0.06679190440925965 15.2639164584943 -0.003932191538588688 15.5957148926139 -0.7967731904316677 15.47698606049068 -0.8265016514138293 15.57273598886456 -0.7361846880388361 -13.72692273584289 4.418177030246787 -13.60401690940409 4.364623460154547 -13.73869195468838 4.351431872008032 -15.6799312945193 -1.612403890972654 -15.54354137897865 -1.638587615398943 -15.68307901962822 -1.684052325355588 -11.03879089350273 7.731276161976674 -10.97013630155064 7.755912851801601 -10.89081929424308 7.680259539919994 1.017777879283641 -0.7776872549510454 0.8304177020221126 -0.8450297137301469 0.8316850995889413 -0.7733403800626774 -1.569649361279834 -12.00708917035595 -1.731490234092568 -12.02927318578456 -1.731721758177149 -11.98506702141827 -1.27689611786837 4.270249441001878 -1.427704339055886 4.262301296164493 -1.284393612364609 4.332845418309569 -0.4768695860635913 -6.003074595482511 -0.6410985706009481 -6.010024228785104 -0.4729776896325871 -5.942040994595607 1.508792833793395 9.915206756308226 1.69470575196733 9.907709608288483 1.496998334133953 9.866022521605903 15.2158557830502 -0.1856491978260113 15.21035735172968 -0.1159851765296647 15.32924101466242 -0.08648330756052865 15.45202549812743 -0.7170852671353226 15.43828422633217 -0.6556487308512626 15.54693757546256 -0.626222667456477 -13.67256105384179 4.268310473676549 -13.53776430242038 4.280708947193965 -13.56465032673341 4.219309751932072 -15.54334637266879 -1.638933078303796 -15.54638343012961 -1.710580639808732 -15.68288418743848 -1.684397457548985 -10.14971608300705 8.399009003018778 -10.23241816551191 8.488254682885824 -10.08906478873455 8.429643325274901 4.339017509140963 -0.8564796243527708 4.140861753849923 -0.8544847212515481 4.339567555086288 -0.7847846637370757 3.699382311833095 -11.67090225287114 3.71783520399307 -11.7126574429133 3.519850652009076 -11.70599678757342 -4.50537421534081 3.802371597858572 -4.518853551989814 3.864344202425445 -4.343901062936304 3.868783566897275 -4.04058586026891 -5.600772283655673 -4.028928924437079 -5.540353885523346 -3.868284633442033 -5.534280895761829 4.953631353428841 9.176891065890603 4.930912668534059 9.130138878781994 4.756036237288059 9.136981115520211 15.20407379657936 -2.550694552940539 15.33875681649253 -2.447686412556339 15.3272151963297 -2.516891539415384 13.78814693799148 0.9804669907860264 13.65340518493312 0.946638082137786 13.76085437072605 1.039036029627068 -15.4234703497418 0.5823809010124016 -15.42300420394083 0.6473198227317659 -15.28604123406698 0.5831960997448842 -14.57602405337075 -1.786098695150936 -14.73254867342964 -1.826214196813726 -14.73025598991482 -1.754549503807031 -7.932527008532775 8.994218151299025 -7.866309291966403 9.016610778141754 -7.762173894371046 8.94131606693251 4.429163170990766 9.597599347922857 4.627285304991204 9.594102959155697 4.430601934518833 9.551497004255873 4.338241397456769 -0.7824611247578051 4.139535319693241 -0.8521606944085538 4.14009205451134 -0.7804694906427024 3.102421808410494 -11.56980195035978 2.921382189592833 -11.59972090951355 2.928029327262789 -11.5579370367607 -4.437944164640006 3.924238167275824 -4.598600350258493 3.918363123700351 -4.437311998773864 3.985052415290227 -3.942603233965789 -5.48977363460459 -4.117598386900145 -5.494368310684473 -3.945116347766006 -5.428167666829939 15.15822454418859 -2.629161469947828 15.15945046169503 -2.561445222070429 15.29394047582268 -2.526995747627188 13.56743855243598 1.060457367569741 13.55079179298401 1.120246283547247 13.67425917461145 1.153305243339403 -15.42233769553148 0.5002762489799705 -15.28490811606211 0.5010415332033941 -15.3014240543213 0.4425514418021893 -14.57811415605308 -1.85819470982053 -14.73237102080251 -1.826648712043318 -14.57584644803768 -1.786533096182711 -7.04065833549342 9.503037249446964 -7.152861912652641 9.592060152138798 -6.986311416938761 9.532131511434839 7.764461992210457 8.632461813180054 7.754949455702805 8.586956770476412 7.578699845847527 8.593336071204217 7.205277969077836 -0.8241765165558987 7.005492534309306 -0.8227101175508707 7.20514812373491 -0.752484047795964 6.852620308498011 -10.60845354291583 6.859092992628851 -10.6502543614842 6.659410747873375 -10.64610733472859 -7.364742582075103 3.53356537261087 -7.369668791026909 3.594258059515068 -7.193355203094174 3.598188453423781 -6.980332878497021 -5.095051337169447 -6.976051799754297 -5.033505729922132 -6.814108973926651 -5.027931536210256 13.55594233288692 -4.207921895725812 13.41530713738491 -4.244916323561624 13.56962835308064 -4.141060050976737 11.09103565904192 1.68805621484499 10.93719415709646 1.651092925899092 11.06567832801427 1.745920641683279 -15.15206474338726 -2.915050256737084 -15.15673804272043 -2.855247401915437 -15.00001185562436 -2.925048133276372 -12.22895856218775 -1.952535264416888 -12.40610931229432 -1.988422154488813 -12.40466354503639 -1.916747362956051 -4.992868586225648 9.539630381690051 -4.934112127642773 9.562821703270483 -4.805572544266353 9.486385740626805 -6.887431091332368 -4.973288280527533 -7.063792324411773 -4.977330313835136 -6.897359937205413 -4.910530995541072 7.416530844046871 9.078414568490658 7.231841606460934 9.036262582380612 7.216766920685943 9.081147554592967 7.205448569468707 -0.7530069532245003 7.005793049236243 -0.8232331447176947 7.005705301689735 -0.7515529855191754 6.190248227592309 -10.54546233783966 6.366248537770588 -10.55461390390411 6.171630995909871 -10.5874755228118 -7.291638703516363 3.653764989293129 -7.453589085305908 3.648328343063984 -7.282391346204348 3.713261751538656 13.30463094662861 -4.245762442299805 13.30608464422483 -4.180658949544814 13.45982830875285 -4.142717282815737 10.83933951710539 1.757271202450565 10.82629135128724 1.816570756997123 10.96738701545944 1.852463738118953 -15.13800315641078 -2.971053121670076 -14.9859007400069 -2.980573364090908 -14.99860330558335 -3.034195994998006 -12.25010433462629 -1.968286950185916 -12.42436858858694 -1.932512771247769 -12.24721522035828 -1.896633880074123 -4.105850767016604 9.967104081378478 -4.246074555877347 10.05775577346526 -4.062094648224949 9.997781498584489 -9.632840066946871 -4.553709194494421 -9.635857806635888 -4.490512295311388 -9.48146251027967 -4.48374471792433 10.63332914354063 7.609239715614118 10.6352721337107 7.56283977509181 10.46738744838891 7.572182499641626 9.883230595420139 -0.760218351170224 9.692726902676272 -0.7574558857503435 9.882429536870054 -0.6885409287951335 9.332858027012399 -9.324939664483836 9.325926358570776 -9.369096948766666 9.135559451554414 -9.361826718298952 -10.0991445848126 3.256078896068714 -10.09604877633081 3.315969240205699 -9.927833604965425 3.32122584717763 11.06896706631566 -5.187860959001069 10.9144296678064 -5.226775623567064 11.07929079611799 -5.123255878195095 8.209082207550653 1.976001216674127 8.040090831921477 1.936964020328915 8.189719311391089 2.034223034418282 -13.54966811733205 -5.727025044182225 -13.5534041200049 -5.672558516458073 -13.37590536992232 -5.745342831371116 -9.454482909435733 -2.053079866740842 -9.649277344128501 -2.086184998707014 -9.647029179436522 -2.014517710853325 -1.977248898694103 9.756595355171145 -1.928855954581787 9.782608517687971 -1.783809670599348 9.704377825419831 -10.0333991053454 3.363988899440471 -10.18780132907776 3.357319844145383 -10.01672897389133 3.422853694292189 -9.542431112247556 -4.444152523403687 -9.710598987538798 -4.449481041915071 -9.558987616015688 -4.379830578949584 10.30134582005999 8.045749546269994 10.13660435995184 8.005514548127943 10.11095143030446 8.051528451943446 9.878114605291582 -0.6813041883577111 9.688410893525187 -0.750217309641563 9.687556231625864 -0.6785254928230605 8.780219706276258 -9.302858890704133 8.94795983101233 -9.314101490219105 8.749446798971057 -9.346707911095617 10.80095462466428 -5.182673348228666 10.79810187268672 -5.119857639927745 10.96640917501999 -5.079741167183528 7.938821908743909 2.044189248108815 7.933104889987783 2.104004196327593 8.088096645567495 2.14178406981703 -13.46751776715227 -5.750203168081354 -13.29354146707838 -5.767220381946506 -13.31120462339177 -5.814048248190137 -9.445753225813039 -2.159151248452337 -9.639817677750333 -2.120570917459065 -9.445024375553036 -2.087461661946528 -1.109026058521657 10.09816370011107 -1.268849258163866 10.19102216441297 -1.078357276157821 10.13248228479399 -12.94922782176304 2.622952801668769 -12.94138597196129 2.682944310987686 -12.78919005865232 2.691856451936566 -12.28494275339074 -3.77532243712409 -12.29265316698073 -3.70997598941128 -12.15373119559062 -3.699740665607629 13.7874570125565 5.043117162724284 13.79245490789307 4.993026585256168 13.64165279123874 5.011325846234993 12.60135807779593 -0.6410363685417869 12.42762464136455 -0.6348290545653279 12.59969652880776 -0.5693533150350367 11.5870711407825 -7.697376004837497 11.56906769975656 -7.745419553558944 11.39625301990679 -7.729684922609989 11.15080866099431 -7.71977076020801 11.30168962856202 -7.737827728903889 11.10992671920756 -7.766466510300469 -12.91736101618802 2.703545425129174 -13.05627938838025 2.693279914947971 -12.89672430793186 2.762872853923474 -12.19621419338813 -3.684683831107974 -12.34837655016544 -3.693618841669041 -12.21688517931147 -3.618338602904815 13.52284187905048 5.523094335233549 13.37838441657597 5.48770221991789 13.35008403691579 5.538833514885466 12.60409722057998 -0.5763447567548026 12.43202657391812 -0.6418225141774961 12.43030801490067 -0.5701359906933247 13.63883762063815 -5.44721725469206 13.61380770682593 -5.500387588420982 13.46647062975505 -5.471246767751426 -15.08284575239363 0.9023122650785057 -15.2208774698849 0.8263693256048723 -15.21501108736677 0.8877044396126678 -14.65558630309197 -2.228513104774374 -14.53488429669925 -2.213259457727746 -14.64810175579504 -2.296567850615621 15.48587450658961 -0.7072889677386613 15.47663886213827 -0.7625814925174052 15.35059687589667 -0.7279832370859108 14.77712889439435 -0.4739337402526738 14.92580542114912 -0.4136680383010598 14.92845178059544 -0.4853370795224028 14.77695868621397 -0.4736855870769765 14.77440434565205 -0.4020301011265953 14.92563528444638 -0.4134199942503872 13.36315811661996 -5.505850708264952 13.49142853853721 -5.534852926611777 13.31854127327991 -5.55644589682683 -15.14308331136975 0.8222650216642411 -15.15942011753485 0.7608371691472305 -15.28002369432089 0.7451090954453021 -14.56682633686609 -2.158250207633158 -14.54812640721705 -2.226936965939771 -14.68036973337736 -2.241283632392268 15.50191653252 -0.3450732201808038 15.36745057636905 -0.3688165363621706 15.35690532506454 -0.3091914489386688 15.10021536284021 -0.3662279915260838 15.23111772726949 -0.311193799246996 15.23428652672321 -0.3828340980822404 14.88976637221621 -2.875499185090969 14.8619901803013 -2.933069444389281 14.73653897341562 -2.889690282496022 -14.73496300520511 -1.949911756351197 -14.85116097744007 -2.033151742686197 -14.85344805127599 -1.970419707572393 -15.37266981255824 -0.1985636265403373 -15.26515227565445 -0.1783591027017222 -15.36906792625269 -0.2687508349277519 12.27637969665627 -6.961895664635397 12.17219897658405 -6.913142028974974 12.30988240291489 -6.907772124465024 12.37290369012539 -6.930466342006296 12.23526761316119 -6.936541147100408 12.25557413188744 -6.876797102240095 15.09650646155816 -0.3604887175889291 15.09200202514185 -0.2888728323966503 15.22740726568313 -0.3054522286639152 14.73133013411215 -2.925839927156168 14.84129018010756 -2.9661607923514 14.68786685384163 -2.978975091679462 -14.66064124112387 -2.109733152076942 -14.66851274842569 -2.172785016023917 -14.77574424471845 -2.193909326829141 -15.25747024489183 -0.07495710939616335 -15.24382004786392 -0.1449260058766786 -15.36243409627423 -0.1645962231422714 6.03386172741644 -10.21767282582687 5.932457171360901 -10.16317404452643 6.087589634298196 -10.17252724470024 12.41157018994403 -0.4297672803806035 12.54237962024552 -0.3805204047709608 12.54695424854139 -0.45213353650516 15.09487387640644 0.3974383334978142 15.23201612814255 0.397254742927811 15.20902571872694 0.3367131686311351 -10.98712584533499 -4.849561545362082 -10.86929883635138 -4.822741124821027 -10.97273312875936 -4.911896830158986 -13.70457250306834 2.417609427095513 -13.59478112626419 2.443397062640642 -13.71013437721912 2.346956678822359 -13.49038788234305 2.465709305726437 -13.48832815351597 2.395756007580745 -13.60668383318516 2.369972128742379 5.782375216031333 -10.40676227272839 5.823411415695212 -10.35564304221167 5.937382259001554 -10.41732418404963 12.40484663768798 -0.4187945576933733 12.4008708050482 -0.3469914029424408 12.53565653467715 -0.3695484492197242 15.13090356342597 0.4350627298086503 15.23190260217394 0.3803072128496608 15.09476031670884 0.3804744861507038 -10.73780554325371 -4.944639933453256 -10.73104969928929 -5.007569784255614 -10.84045410968247 -5.034355851595636 -9.544941499632319 4.142377734180887 -9.680805060016205 4.042950024687994 -9.665164420806672 4.111831819762289 0.6340271569205269 -10.61879292461714 0.5178530618738975 -10.56192998465888 0.6933256189549752 -10.58033198874102 7.648286092361099 -0.5932042054774838 7.795185560238386 -0.5498439571936551 7.798488689745046 -0.6216682097405024 13.96258039388776 3.981724190343859 14.09535019572185 3.965280020489766 14.08135721185337 3.904723252982765 -5.68787695437435 -5.867931290295552 -5.711654345374643 -5.807610991094385 -5.580829653580337 -5.775862177318796 -5.332142741039728 -5.996186471919412 -5.452028763627292 -6.027541099610095 -5.345984512023594 -5.934756433926544 -9.394812668832024 4.086181564035421 -9.400396586560289 4.018375566797347 -9.531433494290146 3.987398087419543 0.2881168626483132 -10.8232904406098 0.3327333124216058 -10.77852803635801 0.4632568442969797 -10.84355849880215 7.627901409660059 -0.5507444676405745 7.625155506600297 -0.4790841097123246 7.774802930959926 -0.5073885247506258 13.87626745298261 4.058762996429186 13.90304203644856 4.111682936716666 14.00931740778716 4.043785504780377 -0.9698620582504997 -5.703973797750612 -0.9948800152954102 -5.644771743493748 -0.8456732788253712 -5.608985438806956 -5.04138747325854 4.478234045003741 -5.023010081853935 4.544626420326458 -4.885790544153968 4.578818331596664 -3.376904130188155 -9.926194395710335 -3.513791243313864 -9.867290261457155 -3.321215758343276 -9.88991210647607 3.017333138410127 -0.6803795545526759 2.846773855884061 -0.6470782813351531 3.015372274814703 -0.6087032437720168 11.31461462182813 7.090698705791401 11.4564464843799 7.059023992830101 11.44972926712058 7.002312147853783 11.03056301613796 7.181508993779926 11.05159541727096 7.229415296301694 11.1733965499343 7.152754351899574 -0.6658258923951649 -5.77688512985852 -0.8027353016488087 -5.811837926182647 -0.6791679499268127 -5.716349355206121 -4.727218536967268 4.400324955167648 -4.8767743732512 4.365339340919428 -4.720554650599593 4.465324443450634 -3.729793439227283 -10.11161655929486 -3.691401246021242 -10.06927678307762 -3.537596747270898 -10.13615110308193 3.015019654902513 -0.6077477474185807 2.846421200780263 -0.6461226893006792 2.844465769389484 -0.5744543267382288 7.82491077220336 9.18999813771053 7.984347672989259 9.146423658150694 7.978585978662852 9.095943729765835 2.825096377434917 -5.193458104746092 2.8038177485176 -5.134343466934438 2.969403087866285 -5.095571713750636 -0.8454049309525047 4.285268214793661 -0.8300058803818644 4.349343699075141 -0.6777035027097456 4.386105891731725 -6.569442722241135 -8.899328438531347 -6.723836593058756 -8.838369739939827 -6.522497025377552 -8.86270961001396 -1.027675897030994 -0.704612100157213 -1.216626362265736 -0.6675837535635272 -1.028862602917045 -0.6329333098865464 -1.028429339557004 -0.6343843110642063 -1.216193054719459 -0.6690349029146713 -1.217356860704336 -0.5973422587712638 7.340454447088572 9.18473470243754 7.362364140986393 9.225822791546465 7.501683731484558 9.145453024682254 3.145397483662717 -5.267752515487297 2.993451021536473 -5.305415116969103 3.137146591433285 -5.206973925027834 -0.5400141202644004 4.200873842161887 -0.7059185647481259 4.163000414839618 -0.5377639419120495 4.263369951674332 -6.910651649969095 -9.049178393484784 -6.883447650120314 -9.006211694656061 -6.709683305598594 -9.07534805653305 -4.453739812752393 -0.673887341422711 -4.652989865808114 -0.6347214635370874 -4.454185056034181 -0.6021897073338043 4.190344325497041 10.32043007936972 4.367608418376572 10.26886391022222 4.356303897407086 10.2252036951963 6.057360411496986 -4.675126088168224 6.042488942533275 -4.615131902889079 6.217248163624792 -4.573643703816179 2.745187890173904 3.974617698687972 2.753889331227458 4.036763022297162 2.914592259355919 4.074978758843405 -9.325165683557737 -7.693027677857053 -9.488916831716066 -7.63025419934652 -9.289703949787167 -7.65396491464223 -9.63626064291622 -7.783806612308135 -9.621840946052661 -7.738118920868959 -9.437370037509659 -7.809136345732454 -4.456148911123684 -0.5947595445543384 -4.65495392669866 -0.6272905224453702 -4.655444342175763 -0.5556065241597588 3.360497516967772 10.0837563652402 3.388642207661477 10.11861295671525 3.540872736891919 10.0393659888867 6.364273555500626 -4.731065156888241 6.203977729599966 -4.770324712202349 6.363293284226373 -4.668286951436723 3.027149084833707 3.910056709996752 2.852061020894742 3.870518301492106 3.02179588809579 3.970533196939693 -11.79847206291671 -6.183676269876259 -11.9613470528831 -6.119953793488703 -11.774525862427 -6.140534852155146 -7.530723493352798 -0.5944756733336493 -7.729303575854914 -0.5554328541028434 -7.530521995348592 -0.5227908121643355 0.3370638904271806 10.68415226208111 0.5269096477277668 10.63207285568546 0.5066794352907478 10.59396886554546 8.962634518807981 -4.136922198784777 8.955002512906784 -4.074426986196031 9.129446717033083 -4.034557490062549 5.911330168665807 3.724138605218663 5.911513487134059 3.784761362705865 6.071809441965142 3.82318923896752 6.202369586795212 3.646891088741236 6.027616141963214 3.607158535332953 6.188470493961638 3.705831943974747 -12.0739932164062 -6.211992837790632 -12.07077395120753 -6.162428167095074 -11.88744252521079 -6.234040089218626 -7.522291528342579 -0.553886035913332 -7.721072119037555 -0.586531807834816 -7.720791637710336 -0.5144784421199378 0.007504092126482398 10.52882807230201 0.04682647160282105 10.55818404921214 0.1985990434058815 10.47965718881442 9.237830477681218 -4.164036425076068 9.077972098535717 -4.203576236362054 9.244267679995579 -4.100692661614889 8.872217854548568 3.476976523384762 8.863914571162766 3.536566034327765 9.015162431649493 3.57387516861083 -14.07468187064337 -4.033398539612293 -13.90724954969449 -4.049060944033338 -13.92291557286726 -4.09713578804043 -10.35237831463158 -0.5118062827308205 -10.5407083867405 -0.4735357372673448 -10.35132834301624 -0.4397573135773165 -2.114721840026888 10.72574737364265 -2.269963036006161 10.81789606209527 -2.080415184287394 10.75876728321423 11.64221593525102 -3.447685572813448 11.64111947051411 -3.384145571355619 11.80564094646939 -3.344515362532484 11.89115932281014 -3.446110781665308 11.74037045522237 -3.48455247238597 11.90322137684379 -3.380822008952721 9.148618889796934 3.403099226540594 8.983694086315714 3.364581703044573 9.127054287006649 3.461099618686497 -14.12770915990698 -4.046415067460084 -14.13183652635171 -3.99072261790696 -13.96042934922502 -4.063055412625169 -10.35639500277101 -0.4220725563315408 -10.54577576789361 -0.4558484769781266 -10.54480610601822 -0.3841617976162464 -2.967831741841932 10.44882560332407 -2.916065774234811 10.47381856075407 -2.77531516961091 10.39596453232755 13.99776000856275 -2.351036041630497 13.99993335183557 -2.285083495011548 14.14750912604804 -2.248086677132897 11.73893395218349 3.070107912156248 11.72423158084615 3.129421138109455 11.85987446586462 3.164495207897467 -15.36615484406754 -1.11152892677551 -15.21898742551485 -1.1179613835451 -15.23224793414486 -1.172764419650652 -13.03841839753838 -0.344525156737945 -13.20747791172357 -0.3099418533609996 -13.0366446559998 -0.27284799942994 -5.044529322881477 10.46419534326874 -5.176394091894054 10.55437218277403 -4.997235224268471 10.49417510118767 -5.942736660151951 10.0878392685903 -5.881162255682046 10.11053496282436 -5.760072536994693 10.03455869673605 14.21841670250299 -2.303105043589105 14.08321040442646 -2.339207235243235 14.23211411894402 -2.23550179311217 11.97946280401635 3.008192950811849 11.83151071848079 2.972138415474863 11.9529190204441 3.066153331737504 -15.37253476758558 -1.087710750677238 -15.37686103107155 -1.026099469526584 -15.22539739965658 -1.094555426461536 -13.03892074894272 -0.2662782497109539 -13.20975442471094 -0.303370906474995 -13.20802230937834 -0.2316883661006361 -8.01519210529187 9.762768674362446 -8.117828381545795 9.851650911232564 -7.95822034332968 9.791970590795909 15.40644264244356 -0.4896987443385565 15.40626948300709 -0.4212422762021754 15.53493491447027 -0.3882142377729557 14.3019859158781 2.068117515668397 14.28538395745249 2.128324305041223 14.40341528993963 2.160318544062168 -15.06280433743487 2.596781799116851 -14.92785237912183 2.601214141968385 -14.94708383215803 2.54139229198745 -15.08440682962398 -0.09759145962411998 -15.08695336810553 -0.1692589567737261 -15.23482152814353 -0.1393237032180684 -15.2310784703 -0.07032863462336783 -15.08325310146444 -0.1002600127068801 -15.2336673640194 -0.1419932287022291 -8.923501571659722 9.278233095447522 -8.855796036394333 9.300928013876968 -8.759788426160879 9.225884569880648 15.42269730208561 -0.39456208251547 15.55007824759031 -0.2922142497577432 15.54050299736091 -0.3620572786078744 14.50501102834022 1.991793463294441 14.37605372091801 1.959178835531572 14.4781972508869 2.050890668485262 -15.07494915176085 2.625073435839844 -15.07137148952717 2.691017551110971 -14.94001271801862 2.629789213653717 -15.24023466630929 0.01803061193403345 -15.24349337565169 -0.05361706873139931 -15.37764112986811 -0.02923312204259128 -11.17379038783902 8.218058979555096 -11.24756867238939 8.306854805425431 -11.11232677730228 8.249902524780154 14.6081143939815 2.072982524136852 14.59947076634131 2.142900707743456 14.71552135142038 2.170538218250184 15.57040072192249 -0.2015423709642447 15.55893652538407 -0.1394450099388824 15.66290714972646 -0.1114443365707351 -12.64746675036222 6.172275617075066 -12.5091305573086 6.188161280253866 -12.53966240365795 6.126682304290108 -12.73189783878665 6.283132119631011 -12.60942599573926 6.233646763938713 -12.7475672144483 6.216743695442649 -15.38322178452326 0.06278446206338052 -15.25195648521375 0.03849111662281274 -15.38935982458751 -0.008778237746010326 -11.93999354397293 7.643712140944677 -11.87219872278999 7.670434827113372 -11.80049347675016 7.593516752301118 14.52374127858401 2.205489717281069 14.63017203523485 2.303705277816539 14.62795696542006 2.232920814541139 15.55506445802076 -0.398258729183709 15.64945297891789 -0.3093769257399935 15.67214967852244 -0.370203149261651 -8.54839110278726 8.623242911206008 -8.589500730286041 8.563967964495342 -8.700307001582862 8.597641665084741 -12.22809598385107 -0.09508996753259236 -12.23432484395121 -0.16664781085706 -12.36659450222033 -0.1482874482510324 -14.62849232864295 4.428383040986871 -14.69572068029503 4.522497691729503 -14.57502755675156 4.470684822090064 11.0588119608929 4.221626283973954 11.04193421389389 4.291176220129056 11.15893122799804 4.312494179033167 13.44597960504432 -3.733615678859734 13.445262070515 -3.670225596935286 13.55448063631427 -3.647351842270001 13.49857814533701 -3.720427902630387 13.60666369526593 -3.633841888280487 13.61377027345967 -3.697612960420056 -8.903997383667488 8.791884335880527 -8.777518133577825 8.75632742511168 -8.928936755413485 8.728963743272056 -12.39797464456105 -0.02042396311228745 -12.26276181108309 -0.0388765674941793 -12.40126288542828 -0.09206992995855183 -15.06807793567746 3.327135604180729 -15.19446933123039 3.369718094183054 -15.13578257508136 3.405165420796467 10.82084241768013 4.550793100853755 10.71123706296746 4.529094472234048 10.80957153275353 4.621160583629894 8.805237495214664 -5.898225281103608 8.819235838540205 -5.835163893416791 8.937363221363 -5.81793122585713 -4.453527643237622 9.680031307379561 -4.498312116988717 9.624329240474673 -4.626853244536841 9.647559187348119 -7.224473656264715 -0.2024561136401654 -7.227198864023237 -0.2741167013485265 -7.375326410588214 -0.2614713567053737 -14.97807478769535 -3.841003856061851 -15.00147562983513 -3.896221771046057 -15.10724005825326 -3.813608743486643 6.276395569442173 5.09478813808756 6.250346440124336 5.162687143151492 6.380813558265123 5.177848294284729 6.448964633867097 5.068582522850016 6.330528176182517 5.052716917275782 6.435123530158036 5.135638856122859 8.342396197105265 -5.694778516819682 8.476463380671603 -5.616501348129942 8.472700910110687 -5.678743244827615 -4.895891510749848 9.947554121826881 -4.749827945594436 9.92440957229512 -4.922464054724919 9.889738886876938 -7.373465903498186 -0.1885022018947242 -7.225290927097896 -0.2011567483559721 -7.376143774493156 -0.2601718441936091 -14.65676718015812 -4.490675852808604 -14.7877524968433 -4.469287118161665 -14.75521375002407 -4.421639961685035 1.890563509546316 4.809123824166695 1.866074027419942 4.874269546670157 2.01553007700042 4.884200158116475 3.205939475569675 -6.111452539562135 3.224393110308801 -6.050854891290597 3.361615865019676 -6.039258929326409 -0.7676884958980825 9.900145880226742 -0.8094506093732026 9.848181883736482 -0.9583344481684544 9.863219009824517 -2.410832530329938 -0.3910235908288219 -2.580269533082864 -0.3833634786129642 -2.408929256897106 -0.3193386298986475 -7.288700934033111 -10.87408448590869 -7.273930193533063 -10.92690918877539 -7.434462179179099 -10.88366059278024 -7.538791827017521 -10.66346199697339 -7.684743928740911 -10.67102819840123 -7.679508861739828 -10.62262207251408 1.897682384418705 4.937667855919856 1.760377070360397 4.926693325757354 1.885030845884099 5.002090771446181 3.234235649934867 -5.987639309513234 3.084720048396567 -5.998101243428897 3.240747746919706 -5.926378505588351 -1.247557829743616 10.23691422319599 -1.078699202127026 10.22350670569535 -1.268577676296933 10.18420882195949 -2.408527616989741 -0.3200047225100269 -2.579867831331792 -0.3840296736449853 -2.577933338039743 -0.3123496115177421 -0.1685220150025957 -12.08770164830406 -0.1446461954825252 -12.13250497194081 -0.3318065003090365 -12.11634038522847 -1.780495169689983 4.445768895739395 -1.800346714957548 4.509057825016537 -1.634216421094819 4.515306213592063 -1.080275376123639 -5.703996468393416 -1.063767000879461 -5.64390921346938 -0.911210693614315 -5.636017390377594 2.471362890751208 9.709100619462886 2.438145264634871 9.660433934430397 2.272222755839425 9.669892737749537 1.529057938430958 -0.4425775669875655 1.34081722078492 -0.4386474684998436 1.530233880554405 -0.3708873206268546 1.527581115267748 -0.3663096835725314 1.338163965121219 -0.4340689831274146 1.33936191560301 -0.3623967585573739 -0.7939552681231509 -11.89726344824159 -0.9585061737584809 -11.92099627409395 -0.9583251256377255 -11.877285930713 -1.74951115256183 4.58606532944532 -1.902094216453603 4.578500389517765 -1.756065214724875 4.64836179546472 -1.026835607588378 -5.555860976960113 -1.192986144613087 -5.562388518878315 -1.023645774281973 -5.494835425090695 1.946084829015014 10.11428880389738 2.134194195256248 10.10750369521477 1.935938164111682 10.06561476524944 4.762085798310935 -0.4406358202106993 4.563064811535311 -0.4388283180180524 4.762582902347806 -0.3689584671257234 4.19983081160802 -11.41623606602867 4.216821345354481 -11.45785297941772 4.017903272249143 -11.45192303901008 -4.917063727231247 4.131394648990662 -4.929452754842037 4.193139668179431 -4.753712636422665 4.197401429665823 -4.492741562457353 -5.146055132008041 -4.482032521215455 -5.085561798002201 -4.320660257068589 -5.079657241423282 5.364420454192764 9.355961710715812 5.343439849295003 9.309480870318586 5.167854397829749 9.316065540823772 4.823660435379992 9.77986002874316 5.0226533164348 9.776667890444797 4.827055427473608 9.733928360193522 4.760280236867404 -0.3649140410248083 4.56076166476567 -0.4347830413995857 4.561232822824662 -0.3630946259172963 3.616651290194356 -11.30236390770575 3.433215122456619 -11.33290002050897 3.441399704503314 -11.29121597308221 -4.865623919993504 4.273635316650265 -5.027006713256696 4.267911615617678 -4.863874081670242 4.334251898799096 -4.397171470467212 -5.028050408533186 -4.572867515688794 -5.032445412914375 -4.400598281005675 -4.966349783325662</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"2670\" source=\"#ID1741\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1737\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1735\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1736\"/>\r\n                </vertices>\r\n                <triangles count=\"890\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1737\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1738\"/>\r\n                    <p>0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 9 8 1 9 0 10 12 11 14 12 15 13 16 14 6 15 2 16 20 17 9 18 8 19 22 20 1 21 24 22 8 23 26 24 27 25 15 26 30 27 1 28 12 29 14 30 16 31 32 32 26 33 15 34 14 35 6 36 20 37 34 38 36 39 9 40 22 41 38 42 39 43 40 44 39 45 44 46 45 47 24 48 1 49 30 50 48 51 27 52 26 53 30 54 12 55 50 56 52 57 53 58 54 59 16 60 58 61 32 62 53 63 60 64 61 65 34 66 20 67 64 68 36 69 22 70 66 71 68 72 38 73 40 74 39 75 45 76 40 77 44 78 52 79 45 80 70 81 24 82 30 83 61 84 72 85 73 86 48 87 76 88 27 89 78 90 30 91 50 92 52 93 54 94 80 95 52 96 60 97 53 98 32 99 58 100 82 101 60 102 72 103 61 104 34 105 64 106 84 107 64 108 36 109 66 110 86 111 38 112 68 113 88 114 89 115 90 116 80 117 94 118 88 119 44 120 96 121 52 122 70 123 30 124 78 125 72 126 98 127 73 128 100 129 76 130 48 131 78 132 50 133 102 134 80 135 54 136 94 137 96 138 60 139 52 140 58 141 104 142 82 143 106 144 72 145 60 146 84 147 64 148 108 149 66 150 110 151 64 152 112 153 86 154 68 155 90 156 89 157 114 158 88 159 94 160 89 161 116 162 70 163 78 164 118 165 98 166 72 167 73 168 98 169 120 170 100 171 122 172 76 173 124 174 78 175 102 176 96 177 106 178 60 179 104 180 126 181 82 182 106 183 118 184 72 185 84 186 108 187 128 188 110 189 108 190 64 191 112 192 130 193 86 194 90 195 114 196 132 197 134 198 135 199 126 200 116 201 78 202 124 203 118 204 138 205 98 206 98 207 140 208 120 209 142 210 122 211 100 212 124 213 102 214 144 215 104 216 134 217 126 218 146 219 116 220 124 221 108 222 148 223 128 224 110 225 150 226 108 227 152 228 130 229 112 230 154 231 132 232 114 233 134 234 156 235 135 236 158 237 146 238 159 239 138 240 140 241 98 242 120 243 140 244 162 245 142 246 164 247 122 248 159 249 124 250 144 251 146 252 124 253 159 254 148 255 166 256 128 257 150 258 148 259 108 260 152 261 168 262 130 263 170 264 132 265 154 266 156 267 172 268 135 269 158 270 159 271 174 272 176 273 140 274 138 275 140 276 178 277 162 278 142 279 180 280 164 281 159 282 144 283 182 284 148 285 184 286 166 287 150 288 186 289 148 290 188 291 168 292 152 293 190 294 170 295 154 296 156 297 192 298 172 299 174 300 159 301 182 302 194 303 158 304 174 305 176 306 178 307 140 308 162 309 178 310 196 311 180 312 198 313 164 314 184 315 200 316 166 317 186 318 184 319 148 320 188 321 202 322 168 323 188 324 170 325 190 326 192 327 204 328 172 329 174 330 182 331 206 332 194 333 174 334 208 335 210 336 178 337 176 338 178 339 212 340 196 341 180 342 214 343 198 344 184 345 216 346 200 347 186 348 218 349 184 350 220 351 202 352 188 353 222 354 188 355 190 356 192 357 224 358 204 359 214 360 226 361 198 362 208 363 174 364 206 365 228 366 194 367 208 368 210 369 212 370 178 371 196 372 212 373 230 374 216 375 232 376 200 377 218 378 216 379 184 380 220 381 234 382 202 383 220 384 188 385 222 386 224 387 236 388 204 389 214 390 238 391 226 392 208 393 206 394 240 395 228 396 208 397 242 398 244 399 212 400 210 401 230 402 212 403 246 404 216 405 248 406 232 407 218 408 250 409 216 410 220 411 252 412 234 413 254 414 220 415 222 416 256 417 236 418 224 419 258 420 230 421 246 422 238 423 260 424 226 425 208 426 240 427 242 428 262 429 228 430 242 431 244 432 264 433 212 434 248 435 266 436 232 437 250 438 248 439 216 440 252 441 268 442 234 443 252 444 220 445 254 446 256 447 270 448 236 449 258 450 246 451 272 452 238 453 274 454 260 455 242 456 240 457 276 458 262 459 242 460 278 461 280 462 264 463 244 464 248 465 282 466 266 467 250 468 284 469 248 470 252 471 286 472 268 473 288 474 252 475 254 476 290 477 270 478 256 479 272 480 264 481 280 482 292 483 258 484 272 485 274 486 294 487 260 488 242 489 276 490 296 491 298 492 262 493 278 494 282 495 300 496 266 497 284 498 282 499 248 500 286 501 302 502 268 503 286 504 252 505 288 506 290 507 304 508 270 509 272 510 280 511 306 512 292 513 272 514 308 515 274 516 310 517 294 518 296 519 276 520 312 521 298 522 278 523 314 524 282 525 316 526 300 527 284 528 318 529 282 530 286 531 320 532 302 533 322 534 286 535 288 536 324 537 304 538 290 539 298 540 314 541 326 542 308 543 272 544 306 545 328 546 292 547 308 548 294 549 310 550 330 551 314 552 296 553 312 554 316 555 332 556 300 557 318 558 316 559 282 560 320 561 334 562 302 563 320 564 286 565 322 566 324 567 336 568 304 569 326 570 314 571 338 572 308 573 306 574 340 575 328 576 308 577 342 578 330 579 310 580 344 581 314 582 312 583 346 584 316 585 348 586 332 587 350 588 316 589 318 590 320 591 352 592 334 593 322 594 354 595 320 596 356 597 336 598 324 599 338 600 314 601 346 602 326 603 338 604 358 605 342 606 308 607 340 608 360 609 328 610 342 611 330 612 344 613 362 614 348 615 364 616 332 617 350 618 366 619 316 620 352 621 368 622 334 623 354 624 352 625 320 626 370 627 336 628 356 629 338 630 346 631 372 632 358 633 338 634 374 635 342 636 340 637 376 638 342 639 378 640 360 641 362 642 344 643 380 644 348 645 382 646 364 647 384 648 366 649 350 650 352 651 386 652 368 653 354 654 388 655 352 656 390 657 370 658 356 659 362 660 380 661 392 662 374 663 338 664 372 665 394 666 358 667 374 668 378 669 342 670 376 671 360 672 378 673 396 674 382 675 398 676 364 677 384 678 400 679 366 680 386 681 402 682 368 683 388 684 386 685 352 686 404 687 370 688 390 689 392 690 380 691 406 692 374 693 372 694 408 695 394 696 374 697 410 698 378 699 376 700 412 701 378 702 414 703 396 704 416 705 398 706 382 707 384 708 418 709 400 710 386 711 420 712 402 713 388 714 422 715 386 716 404 717 390 718 424 719 396 720 414 721 426 722 392 723 406 724 428 725 410 726 374 727 408 728 430 729 394 730 410 731 414 732 378 733 412 734 416 735 432 736 398 737 418 738 416 739 400 740 402 741 420 742 434 743 422 744 420 745 386 746 436 747 404 748 424 749 414 750 438 751 426 752 428 753 406 754 440 755 410 756 408 757 442 758 430 759 410 760 444 761 414 762 412 763 446 764 448 765 432 766 416 767 418 768 450 769 416 770 434 771 420 772 452 773 422 774 454 775 420 776 436 777 424 778 456 779 438 780 414 781 446 782 426 783 438 784 458 785 428 786 440 787 460 788 444 789 410 790 442 791 462 792 430 793 444 794 448 795 464 796 432 797 450 798 448 799 416 800 434 801 452 802 466 803 454 804 452 805 420 806 468 807 436 808 456 809 438 810 446 811 470 812 438 813 472 814 458 815 460 816 440 817 474 818 444 819 442 820 476 821 462 822 444 823 478 824 448 825 480 826 464 827 450 828 482 829 448 830 466 831 452 832 484 833 486 834 452 835 454 836 468 837 456 838 488 839 490 840 462 841 478 842 438 843 470 844 472 845 458 846 472 847 492 848 494 849 460 850 474 851 478 852 444 853 476 854 480 855 496 856 464 857 482 858 480 859 448 860 466 861 484 862 498 863 484 864 452 865 486 866 500 867 468 868 488 869 490 870 478 871 502 872 472 873 470 874 504 875 472 876 506 877 492 878 494 879 474 880 508 881 478 882 476 883 510 884 480 885 512 886 496 887 482 888 514 889 480 890 498 891 484 892 516 893 518 894 484 895 486 896 500 897 488 898 520 899 502 900 478 901 510 902 522 903 490 904 502 905 472 906 504 907 524 908 492 909 506 910 526 911 528 912 494 913 508 914 512 915 530 916 496 917 514 918 512 919 480 920 498 921 516 922 532 923 516 924 484 925 518 926 534 927 500 928 520 929 502 930 510 931 536 932 522 933 502 934 538 935 524 936 504 937 540 938 506 939 542 940 526 941 528 942 508 943 544 944 512 945 546 946 530 947 514 948 548 949 512 950 532 951 516 952 550 953 552 954 516 955 518 956 534 957 520 958 554 959 556 960 528 961 544 962 538 963 502 964 536 965 558 966 522 967 538 968 524 969 540 970 560 971 526 972 542 973 562 974 546 975 564 976 530 977 548 978 546 979 512 980 566 981 532 982 550 983 550 984 516 985 552 986 534 987 554 988 568 989 556 990 544 991 570 992 572 993 538 994 536 995 558 996 538 997 574 998 560 999 540 1000 576 1001 578 1002 562 1003 542 1004 546 1005 580 1006 564 1007 548 1008 582 1009 546 1010 566 1011 550 1012 584 1013 586 1014 550 1015 552 1016 568 1017 554 1018 588 1019 578 1020 590 1021 562 1022 592 1023 556 1024 570 1025 572 1026 574 1027 538 1028 594 1029 558 1030 574 1031 560 1032 576 1033 596 1034 580 1035 598 1036 564 1037 582 1038 580 1039 546 1040 600 1041 566 1042 584 1043 584 1044 550 1045 586 1046 568 1047 588 1048 602 1049 604 1050 590 1051 578 1052 592 1053 570 1054 606 1055 608 1056 574 1057 572 1058 574 1059 610 1060 594 1061 576 1062 612 1063 596 1064 580 1065 614 1066 598 1067 582 1068 616 1069 580 1070 600 1071 584 1072 618 1073 620 1074 584 1075 586 1076 602 1077 588 1078 622 1079 596 1080 612 1081 624 1082 604 1083 626 1084 590 1085 628 1086 592 1087 606 1088 608 1089 630 1090 574 1091 610 1092 632 1093 594 1094 614 1095 634 1096 598 1097 616 1098 614 1099 580 1100 636 1101 600 1102 618 1103 618 1104 584 1105 620 1106 602 1107 622 1108 638 1109 612 1110 640 1111 624 1112 642 1113 626 1114 604 1115 644 1116 628 1117 606 1118 608 1119 646 1120 630 1121 610 1122 648 1123 632 1124 614 1125 650 1126 634 1127 614 1128 616 1129 652 1130 636 1131 618 1132 654 1133 656 1134 618 1135 620 1136 638 1137 622 1138 658 1139 648 1140 660 1141 632 1142 640 1143 662 1144 624 1145 642 1146 664 1147 626 1148 666 1149 628 1150 644 1151 646 1152 668 1153 630 1154 650 1155 670 1156 634 1157 614 1158 652 1159 650 1160 672 1161 636 1162 654 1163 674 1164 618 1165 656 1166 638 1167 658 1168 676 1169 678 1170 660 1171 648 1172 640 1173 680 1174 662 1175 682 1176 664 1177 642 1178 684 1179 666 1180 644 1181 646 1182 686 1183 668 1184 670 1185 650 1186 688 1187 650 1188 652 1189 690 1190 672 1191 654 1192 692 1193 674 1194 656 1195 694 1196 658 1197 696 1198 676 1199 686 1200 678 1201 668 1202 678 1203 698 1204 660 1205 680 1206 682 1207 662 1208 682 1209 700 1210 664 1211 684 1212 702 1213 666 1214 704 1215 670 1216 688 1217 650 1218 690 1219 706 1220 708 1221 672 1222 692 1223 674 1224 694 1225 710 1226 676 1227 696 1228 712 1229 678 1230 686 1231 714 1232 698 1233 678 1234 716 1235 680 1236 718 1237 682 1238 682 1239 720 1240 700 1241 722 1242 702 1243 684 1244 704 1245 688 1246 724 1247 706 1248 690 1249 726 1250 708 1251 692 1252 728 1253 710 1254 694 1255 730 1256 696 1257 732 1258 712 1259 722 1260 734 1261 702 1262 716 1263 678 1264 714 1265 736 1266 698 1267 716 1268 718 1269 720 1270 682 1271 700 1272 720 1273 738 1274 704 1275 724 1276 740 1277 742 1278 706 1279 726 1280 744 1281 708 1282 728 1283 710 1284 730 1285 746 1286 712 1287 732 1288 748 1289 750 1290 734 1291 722 1292 716 1293 714 1294 752 1295 736 1296 716 1297 754 1298 718 1299 756 1300 720 1301 720 1302 758 1303 738 1304 740 1305 724 1306 760 1307 742 1308 726 1309 762 1310 764 1311 744 1312 728 1313 746 1314 730 1315 766 1316 732 1317 768 1318 748 1319 738 1320 758 1321 770 1322 750 1323 772 1324 734 1325 754 1326 716 1327 752 1328 774 1329 736 1330 754 1331 756 1332 758 1333 720 1334 740 1335 760 1336 776 1337 760 1338 742 1339 762 1340 778 1341 744 1342 764 1343 746 1344 766 1345 780 1346 768 1347 782 1348 748 1349 758 1350 784 1351 770 1352 786 1353 772 1354 750 1355 754 1356 752 1357 788 1358 774 1359 754 1360 790 1361 756 1362 792 1363 758 1364 776 1365 760 1366 794 1367 762 1368 796 1369 760 1370 798 1371 778 1372 764 1373 800 1374 780 1375 766 1376 768 1377 802 1378 782 1379 792 1380 784 1381 758 1382 770 1383 784 1384 804 1385 786 1386 806 1387 772 1388 790 1389 754 1390 788 1391 808 1392 774 1393 790 1394 776 1395 794 1396 810 1397 796 1398 794 1399 760 1400 798 1401 812 1402 778 1403 814 1404 780 1405 800 1406 802 1407 816 1408 782 1409 792 1410 818 1411 784 1412 784 1413 820 1414 804 1415 822 1416 806 1417 786 1418 790 1419 788 1420 824 1421 808 1422 790 1423 826 1424 794 1425 828 1426 810 1427 796 1428 830 1429 794 1430 832 1431 812 1432 798 1433 834 1434 814 1435 800 1436 802 1437 836 1438 816 1439 838 1440 808 1441 826 1442 818 1443 820 1444 784 1445 804 1446 820 1447 840 1448 822 1449 842 1450 806 1451 826 1452 790 1453 824 1454 828 1455 844 1456 810 1457 830 1458 828 1459 794 1460 832 1461 846 1462 812 1463 848 1464 814 1465 834 1466 836 1467 850 1468 816 1469 838 1470 826 1471 852 1472 854 1473 820 1474 818 1475 820 1476 856 1477 840 1478 822 1479 858 1480 842 1481 826 1482 824 1483 860 1484 828 1485 862 1486 844 1487 830 1488 864 1489 828 1490 866 1491 846 1492 832 1493 868 1494 848 1495 834 1496 836 1497 870 1498 850 1499 852 1500 826 1501 860 1502 872 1503 838 1504 852 1505 854 1506 856 1507 820 1508 840 1509 856 1510 874 1511 858 1512 876 1513 842 1514 862 1515 878 1516 844 1517 864 1518 862 1519 828 1520 866 1521 880 1522 846 1523 866 1524 848 1525 868 1526 870 1527 882 1528 850 1529 852 1530 860 1531 884 1532 872 1533 852 1534 886 1535 888 1536 856 1537 854 1538 856 1539 890 1540 874 1541 858 1542 892 1543 876 1544 862 1545 894 1546 878 1547 864 1548 896 1549 862 1550 898 1551 880 1552 866 1553 900 1554 866 1555 868 1556 870 1557 902 1558 882 1559 892 1560 904 1561 876 1562 886 1563 852 1564 884 1565 906 1566 872 1567 886 1568 888 1569 890 1570 856 1571 874 1572 890 1573 908 1574 894 1575 910 1576 878 1577 896 1578 894 1579 862 1580 898 1581 912 1582 880 1583 898 1584 866 1585 900 1586 902 1587 914 1588 882 1589 892 1590 916 1591 904 1592 886 1593 884 1594 918 1595 906 1596 886 1597 920 1598 922 1599 890 1600 888 1601 908 1602 890 1603 924 1604 894 1605 926 1606 910 1607 896 1608 928 1609 894 1610 898 1611 930 1612 912 1613 932 1614 898 1615 900 1616 934 1617 914 1618 902 1619 936 1620 908 1621 924 1622 916 1623 938 1624 904 1625 886 1626 918 1627 920 1628 940 1629 906 1630 920 1631 922 1632 942 1633 890 1634 926 1635 944 1636 910 1637 928 1638 926 1639 894 1640 930 1641 946 1642 912 1643 930 1644 898 1645 932 1646 934 1647 948 1648 914 1649 936 1650 924 1651 950 1652 916 1653 952 1654 938 1655 920 1656 918 1657 954 1658 940 1659 920 1660 956 1661 958 1662 942 1663 922 1664 926 1665 960 1666 944 1667 928 1668 962 1669 926 1670 930 1671 964 1672 946 1673 966 1674 930 1675 932 1676 968 1677 948 1678 934 1679 950 1680 942 1681 958 1682 970 1683 936 1684 950 1685 952 1686 972 1687 938 1688 920 1689 954 1690 974 1691 940 1692 956 1693 976 1694 960 1695 978 1696 944 1697 962 1698 960 1699 926 1700 964 1701 980 1702 946 1703 964 1704 930 1705 966 1706 968 1707 982 1708 948 1709 950 1710 958 1711 984 1712 970 1713 950 1714 986 1715 952 1716 988 1717 972 1718 974 1719 954 1720 990 1721 976 1722 956 1723 992 1724 960 1725 994 1726 978 1727 962 1728 996 1729 960 1730 964 1731 998 1732 980 1733 1000 1734 964 1735 966 1736 1002 1737 982 1738 968 1739 976 1740 992 1741 1004 1742 986 1743 950 1744 984 1745 1006 1746 970 1747 986 1748 972 1749 988 1750 1008 1751 992 1752 974 1753 990 1754 994 1755 1010 1756 978 1757 996 1758 994 1759 960 1760 998 1761 1012 1762 980 1763 998 1764 964 1765 1000 1766 1002 1767 1014 1768 982 1769 1004 1770 992 1771 1016 1772 986 1773 984 1774 1018 1775 1006 1776 986 1777 1020 1778 1008 1779 988 1780 1022 1781 992 1782 990 1783 1024 1784 994 1785 1026 1786 1010 1787 1028 1788 994 1789 996 1790 998 1791 1030 1792 1012 1793 1000 1794 1032 1795 998 1796 1034 1797 1014 1798 1002 1799 1016 1800 992 1801 1024 1802 1004 1803 1016 1804 1036 1805 1020 1806 986 1807 1018 1808 1038 1809 1006 1810 1020 1811 1008 1812 1022 1813 1040 1814 1026 1815 1042 1816 1010 1817 1028 1818 1044 1819 994 1820 1030 1821 1046 1822 1012 1823 1032 1824 1030 1825 998 1826 1048 1827 1014 1828 1034 1829 1016 1830 1024 1831 1050 1832 1036 1833 1016 1834 1052 1835 1020 1836 1018 1837 1054 1838 1020 1839 1056 1840 1038 1841 1040 1842 1022 1843 1058 1844 1026 1845 1060 1846 1042 1847 1062 1848 1044 1849 1028 1850 1030 1851 1064 1852 1046 1853 1032 1854 1066 1855 1030 1856 1068 1857 1048 1858 1034 1859 1040 1860 1058 1861 1070 1862 1052 1863 1016 1864 1050 1865 1072 1866 1036 1867 1052 1868 1056 1869 1020 1870 1054 1871 1038 1872 1056 1873 1074 1874 1060 1875 1076 1876 1042 1877 1062 1878 1078 1879 1044 1880 1064 1881 1080 1882 1046 1883 1066 1884 1064 1885 1030 1886 1082 1887 1048 1888 1068 1889 1070 1890 1058 1891 1084 1892 1052 1893 1050 1894 1086 1895 1072 1896 1052 1897 1088 1898 1056 1899 1054 1900 1090 1901 1056 1902 1092 1903 1074 1904 1094 1905 1076 1906 1060 1907 1062 1908 1096 1909 1078 1910 1064 1911 1098 1912 1080 1913 1066 1914 1100 1915 1064 1916 1082 1917 1068 1918 1102 1919 1074 1920 1092 1921 1104 1922 1070 1923 1084 1924 1106 1925 1088 1926 1052 1927 1086 1928 1108 1929 1072 1930 1088 1931 1092 1932 1056 1933 1090 1934 1094 1935 1110 1936 1076 1937 1096 1938 1094 1939 1078 1940 1080 1941 1098 1942 1112 1943 1100 1944 1114 1945 1064 1946 1116 1947 1082 1948 1102 1949 1092 1950 1118 1951 1104 1952 1106 1953 1084 1954 1120 1955 1088 1956 1086 1957 1122 1958 1108 1959 1088 1960 1124 1961 1092 1962 1090 1963 1126 1964 1128 1965 1110 1966 1094 1967 1096 1968 1130 1969 1094 1970 1112 1971 1098 1972 1132 1973 1134 1974 1114 1975 1100 1976 1116 1977 1102 1978 1136 1979 1118 1980 1092 1981 1126 1982 1104 1983 1118 1984 1138 1985 1106 1986 1120 1987 1140 1988 1124 1989 1088 1990 1122 1991 1142 1992 1108 1993 1124 1994 1128 1995 1144 1996 1110 1997 1130 1998 1128 1999 1094 2000 1112 2001 1132 2002 1146 2003 1132 2004 1114 2005 1134 2006 1148 2007 1116 2008 1136 2009 1118 2010 1126 2011 1150 2012 1118 2013 1152 2014 1138 2015 1140 2016 1120 2017 1154 2018 1124 2019 1122 2020 1156 2021 1142 2022 1124 2023 1158 2024 1128 2025 1160 2026 1144 2027 1130 2028 1162 2029 1128 2030 1146 2031 1132 2032 1164 2033 1166 2034 1132 2035 1134 2036 1148 2037 1136 2038 1168 2039 1170 2040 1142 2041 1158 2042 1118 2043 1150 2044 1152 2045 1138 2046 1152 2047 1172 2048 1174 2049 1140 2050 1154 2051 1158 2052 1124 2053 1156 2054 1160 2055 1176 2056 1144 2057 1162 2058 1160 2059 1128 2060 1146 2061 1164 2062 1178 2063 1164 2064 1132 2065 1166 2066 1180 2067 1148 2068 1168 2069 1170 2070 1158 2071 1182 2072 1152 2073 1150 2074 1184 2075 1152 2076 1186 2077 1172 2078 1174 2079 1154 2080 1188 2081 1158 2082 1156 2083 1190 2084 1160 2085 1192 2086 1176 2087 1162 2088 1194 2089 1160 2090 1178 2091 1164 2092 1196 2093 1198 2094 1164 2095 1166 2096 1180 2097 1168 2098 1200 2099 1182 2100 1158 2101 1190 2102 1202 2103 1170 2104 1182 2105 1152 2106 1184 2107 1204 2108 1172 2109 1186 2110 1206 2111 1208 2112 1174 2113 1188 2114 1192 2115 1210 2116 1176 2117 1194 2118 1192 2119 1160 2120 1178 2121 1196 2122 1212 2123 1196 2124 1164 2125 1198 2126 1214 2127 1180 2128 1200 2129 1182 2130 1190 2131 1216 2132 1202 2133 1182 2134 1218 2135 1204 2136 1184 2137 1220 2138 1186 2139 1222 2140 1206 2141 1208 2142 1188 2143 1224 2144 1226 2145 1208 2146 1224 2147 1218 2148 1182 2149 1216 2150 1228 2151 1202 2152 1218 2153 1204 2154 1220 2155 1230 2156 1206 2157 1222 2158 1232 2159 1226 2160 1224 2161 1234 2162 1236 2163 1218 2164 1216 2165 1218 2166 1238 2167 1228 2168 1230 2169 1220 2170 1240 2171 1242 2172 1232 2173 1222 2174 1242 2175 1244 2176 1232 2177 1246 2178 1226 2179 1234 2180 1236 2181 1238 2182 1218 2183 1238 2184 1248 2185 1228 2186 1230 2187 1240 2188 1250 2189 1252 2190 1244 2191 1242 2192 1246 2193 1234 2194 1254 2195 1256 2196 1238 2197 1236 2198 1238 2199 1258 2200 1248 2201 1240 2202 1260 2203 1250 2204 1250 2205 1260 2206 1262 2207 1252 2208 1264 2209 1244 2210 1266 2211 1246 2212 1254 2213 1256 2214 1268 2215 1238 2216 1258 2217 1270 2218 1248 2219 1260 2220 1272 2221 1262 2222 1274 2223 1264 2224 1252 2225 1276 2226 1266 2227 1254 2228 1256 2229 1278 2230 1268 2231 1258 2232 1280 2233 1270 2234 1280 2235 1282 2236 1270 2237 1272 2238 1284 2239 1262 2240 1274 2241 1286 2242 1264 2243 1288 2244 1266 2245 1276 2246 1278 2247 1280 2248 1268 2249 1290 2250 1282 2251 1280 2252 1272 2253 1292 2254 1284 2255 1294 2256 1286 2257 1274 2258 1296 2259 1288 2260 1276 2261 1280 2262 1278 2263 1298 2264 1290 2265 1280 2266 1298 2267 1290 2268 1300 2269 1282 2270 1292 2271 1294 2272 1284 2273 1294 2274 1302 2275 1286 2276 1296 2277 1304 2278 1288 2279 1290 2280 1298 2281 1306 2282 1300 2283 1290 2284 1308 2285 1292 2286 1310 2287 1294 2288 1294 2289 1312 2290 1302 2291 1314 2292 1304 2293 1296 2294 1314 2295 1316 2296 1304 2297 1308 2298 1290 2299 1306 2300 1318 2301 1300 2302 1308 2303 1310 2304 1312 2305 1294 2306 1302 2307 1312 2308 1320 2309 1322 2310 1316 2311 1314 2312 1308 2313 1306 2314 1324 2315 1318 2316 1308 2317 1326 2318 1310 2319 1328 2320 1312 2321 1312 2322 1330 2323 1320 2324 1320 2325 1330 2326 1332 2327 1322 2328 1334 2329 1316 2330 1326 2331 1308 2332 1324 2333 1336 2334 1318 2335 1326 2336 1328 2337 1330 2338 1312 2339 1330 2340 1338 2341 1332 2342 1340 2343 1334 2344 1322 2345 1326 2346 1324 2347 1342 2348 1336 2349 1326 2350 1344 2351 1328 2352 1346 2353 1330 2354 1346 2355 1338 2356 1330 2357 1332 2358 1338 2359 1348 2360 1340 2361 1350 2362 1334 2363 1344 2364 1326 2365 1342 2366 1352 2367 1336 2368 1344 2369 1346 2370 1354 2371 1338 2372 1338 2373 1356 2374 1348 2375 1358 2376 1350 2377 1340 2378 1344 2379 1342 2380 1360 2381 1352 2382 1344 2383 1362 2384 1364 2385 1352 2386 1362 2387 1354 2388 1356 2389 1338 2390 1348 2391 1356 2392 1366 2393 1358 2394 1368 2395 1350 2396 1362 2397 1344 2398 1360 2399 1364 2400 1362 2401 1370 2402 1372 2403 1356 2404 1354 2405 1356 2406 1374 2407 1366 2408 1358 2409 1376 2410 1368 2411 1362 2412 1360 2413 1378 2414 1370 2415 1362 2416 1378 2417 1380 2418 1364 2419 1370 2420 1372 2421 1374 2422 1356 2423 1366 2424 1374 2425 1382 2426 1376 2427 1384 2428 1368 2429 1370 2430 1378 2431 1386 2432 1380 2433 1370 2434 1388 2435 1390 2436 1374 2437 1372 2438 1374 2439 1392 2440 1382 2441 1376 2442 1394 2443 1384 2444 1394 2445 1396 2446 1384 2447 1388 2448 1370 2449 1386 2450 1398 2451 1380 2452 1388 2453 1390 2454 1392 2455 1374 2456 1382 2457 1392 2458 1400 2459 1394 2460 1402 2461 1396 2462 1388 2463 1386 2464 1404 2465 1398 2466 1388 2467 1406 2468 1408 2469 1392 2470 1390 2471 1400 2472 1392 2473 1410 2474 1412 2475 1400 2476 1410 2477 1402 2478 1414 2479 1396 2480 1388 2481 1404 2482 1406 2483 1416 2484 1398 2485 1406 2486 1408 2487 1418 2488 1392 2489 1412 2490 1410 2491 1420 2492 1402 2493 1422 2494 1414 2495 1406 2496 1404 2497 1424 2498 1416 2499 1406 2500 1426 2501 1428 2502 1418 2503 1408 2504 1420 2505 1418 2506 1428 2507 1430 2508 1412 2509 1420 2510 1422 2511 1432 2512 1414 2513 1406 2514 1424 2515 1434 2516 1416 2517 1426 2518 1436 2519 1420 2520 1428 2521 1438 2522 1430 2523 1420 2524 1440 2525 1422 2526 1442 2527 1432 2528 1434 2529 1424 2530 1444 2531 1436 2532 1426 2533 1446 2534 1436 2535 1446 2536 1448 2537 1440 2538 1420 2539 1438 2540 1450 2541 1430 2542 1440 2543 1432 2544 1442 2545 1452 2546 1446 2547 1434 2548 1444 2549 1448 2550 1446 2551 1454 2552 1440 2553 1438 2554 1456 2555 1450 2556 1440 2557 1458 2558 1452 2559 1442 2560 1460 2561 1446 2562 1444 2563 1462 2564 1454 2565 1446 2566 1462 2567 1448 2568 1454 2569 1464 2570 1458 2571 1440 2572 1456 2573 1466 2574 1450 2575 1458 2576 1452 2577 1460 2578 1468 2579 1454 2580 1462 2581 1470 2582 1464 2583 1454 2584 1472 2585 1458 2586 1456 2587 1474 2588 1458 2589 1476 2590 1466 2591 1468 2592 1460 2593 1478 2594 1468 2595 1478 2596 1480 2597 1472 2598 1454 2599 1470 2600 1482 2601 1464 2602 1472 2603 1476 2604 1458 2605 1474 2606 1466 2607 1476 2608 1484 2609 1480 2610 1478 2611 1486 2612 1472 2613 1470 2614 1488 2615 1482 2616 1472 2617 1490 2618 1476 2619 1474 2620 1492 2621 1476 2622 1494 2623 1484 2624 1484 2625 1494 2626 1496 2627 1480 2628 1486 2629 1498 2630 1490 2631 1472 2632 1488 2633 1500 2634 1482 2635 1490 2636 1494 2637 1476 2638 1492 2639 1494 2640 1502 2641 1496 2642 1498 2643 1486 2644 1504 2645 1490 2646 1488 2647 1506 2648 1500 2649 1490 2650 1508 2651 1494 2652 1492 2653 1510 2654 1502 2655 1494 2656 1510 2657 1496 2658 1502 2659 1512 2660 1498 2661 1504 2662 1514 2663 1508 2664 1490 2665 1506 2666 1516 2667 1500 2668 1508 2669</p>\r\n                </triangles>\r\n                <triangles count=\"890\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1737\"/>\r\n                    <p>3 4 5 3 5 7 10 11 4 13 5 4 17 18 19 21 3 7 23 11 10 11 25 4 18 28 29 13 4 31 33 17 19 19 18 29 35 21 7 23 10 37 41 42 43 46 47 42 31 4 25 29 28 49 51 13 31 55 56 57 33 59 17 62 63 56 65 21 35 67 23 37 41 43 69 41 46 42 46 57 47 31 25 71 74 75 62 28 77 49 51 31 79 81 55 57 56 63 57 83 59 33 62 75 63 85 65 35 67 37 65 69 43 87 91 92 93 93 95 81 57 97 47 79 31 71 74 99 75 49 77 101 103 51 79 95 55 81 57 63 97 83 105 59 63 75 107 109 65 85 65 111 67 69 87 113 115 92 91 92 95 93 79 71 117 75 99 119 121 99 74 77 123 101 103 79 125 63 107 97 83 127 105 75 119 107 129 109 85 65 109 111 87 131 113 133 115 91 127 136 137 125 79 117 99 139 119 121 141 99 101 123 143 145 103 125 127 137 105 125 117 147 129 149 109 109 151 111 113 131 153 115 133 155 136 157 137 160 147 161 99 141 139 163 141 121 123 165 143 145 125 160 160 125 147 129 167 149 109 149 151 131 169 153 155 133 171 136 173 157 175 160 161 139 141 177 163 179 141 165 181 143 183 145 160 167 185 149 149 187 151 153 169 189 155 171 191 173 193 157 183 160 175 175 161 195 141 179 177 197 179 163 165 199 181 167 201 185 149 185 187 169 203 189 191 171 189 173 205 193 207 183 175 209 175 195 177 179 211 197 213 179 199 215 181 201 217 185 185 219 187 189 203 221 191 189 223 205 225 193 199 227 215 207 175 209 209 195 229 179 213 211 231 213 197 201 233 217 185 217 219 203 235 221 223 189 221 205 237 225 227 239 215 241 207 209 243 209 229 211 213 245 247 213 231 233 249 217 217 251 219 235 253 221 223 221 255 225 237 257 247 231 259 227 261 239 243 241 209 243 229 263 213 265 245 233 267 249 217 249 251 235 269 253 255 221 253 237 271 257 273 247 259 261 275 239 277 241 243 279 243 263 245 265 281 267 283 249 249 285 251 269 287 253 255 253 289 257 271 291 281 265 273 273 259 293 261 295 275 297 277 243 279 263 299 267 301 283 249 283 285 269 303 287 289 253 287 271 305 291 307 281 273 309 273 293 295 311 275 313 277 297 315 279 299 301 317 283 283 319 285 303 321 287 289 287 323 291 305 325 327 315 299 307 273 309 309 293 329 331 311 295 313 297 315 301 333 317 283 317 319 303 335 321 323 287 321 305 337 325 339 315 327 341 307 309 343 309 329 345 311 331 347 313 315 333 349 317 319 317 351 335 353 321 321 355 323 325 337 357 347 315 339 359 339 327 341 309 343 343 329 361 363 345 331 333 365 349 317 367 351 335 369 353 321 353 355 357 337 371 373 347 339 375 339 359 377 341 343 361 379 343 381 345 363 365 383 349 351 367 385 369 387 353 353 389 355 357 371 391 393 381 363 373 339 375 375 359 395 377 343 379 397 379 361 365 399 383 367 401 385 369 403 387 353 387 389 391 371 405 407 381 393 409 373 375 411 375 395 413 377 379 397 415 379 383 399 417 401 419 385 403 421 387 387 423 389 425 391 405 427 415 397 429 407 393 409 375 411 411 395 431 413 379 415 399 433 417 401 417 419 435 421 403 387 421 423 425 405 437 427 439 415 441 407 429 443 409 411 445 411 431 447 413 415 417 433 449 417 451 419 453 421 435 421 455 423 457 425 437 447 415 439 459 439 427 461 441 429 443 411 445 445 431 463 433 465 449 417 449 451 467 453 435 421 453 455 457 437 469 471 447 439 459 473 439 475 441 461 477 443 445 479 445 463 465 481 449 449 483 451 485 453 467 455 453 487 489 457 469 479 463 491 473 471 439 493 473 459 475 461 495 477 445 479 465 497 481 449 481 483 499 485 467 487 453 485 489 469 501 503 479 491 505 471 473 493 507 473 509 475 495 511 477 479 497 513 481 481 515 483 517 485 499 487 485 519 521 489 501 511 479 503 503 491 523 525 505 473 527 507 493 509 495 529 497 531 513 481 513 515 533 517 499 519 485 517 521 501 535 537 511 503 539 503 523 541 505 525 527 543 507 545 509 529 531 547 513 513 549 515 551 517 533 519 517 553 555 521 535 545 529 557 537 503 539 539 523 559 561 541 525 563 543 527 531 565 547 513 547 549 551 533 567 553 517 551 569 555 535 571 545 557 537 539 573 575 539 559 577 541 561 543 563 579 565 581 547 547 583 549 585 551 567 553 551 587 589 555 569 563 591 579 571 557 593 539 575 573 575 559 595 597 577 561 565 599 581 547 581 583 585 567 601 587 551 585 603 589 569 579 591 605 607 571 593 573 575 609 595 611 575 597 613 577 599 615 581 581 617 583 619 585 601 587 585 621 623 589 603 625 613 597 591 627 605 607 593 629 575 631 609 595 633 611 599 635 615 581 615 617 619 601 637 621 585 619 639 623 603 625 641 613 605 627 643 607 629 645 631 647 609 633 649 611 635 651 615 653 617 615 655 619 637 621 619 657 659 623 639 633 661 649 625 663 641 627 665 643 645 629 667 631 669 647 635 671 651 651 653 615 655 637 673 657 619 675 677 659 639 649 661 679 663 681 641 643 665 683 645 667 685 669 687 647 689 651 671 691 653 651 693 655 673 695 657 675 677 697 659 669 679 687 661 699 679 663 683 681 665 701 683 667 703 685 689 671 705 707 691 651 693 673 709 711 695 675 713 697 677 715 687 679 717 679 699 683 719 681 701 721 683 685 703 723 725 689 705 727 691 707 729 693 709 731 695 711 713 733 697 703 735 723 715 679 717 717 699 737 683 721 719 739 721 701 741 725 705 727 707 743 729 709 745 747 731 711 749 733 713 723 735 751 753 715 717 755 717 737 721 757 719 739 759 721 761 725 741 763 727 743 729 745 765 767 731 747 749 769 733 771 759 739 735 773 751 753 717 755 755 737 775 721 759 757 777 761 741 763 743 761 765 745 779 781 767 747 749 783 769 771 785 759 751 773 787 789 753 755 791 755 775 759 793 757 795 761 777 761 797 763 765 779 799 767 781 801 783 803 769 759 785 793 805 785 771 773 807 787 789 755 791 791 775 809 811 795 777 761 795 797 779 813 799 801 781 815 783 817 803 785 819 793 805 821 785 787 807 823 825 789 791 827 791 809 811 829 795 795 831 797 799 813 833 801 815 835 817 837 803 827 809 839 785 821 819 841 821 805 807 843 823 825 791 827 811 845 829 795 829 831 813 847 833 835 815 849 817 851 837 853 827 839 819 821 855 841 857 821 843 859 823 861 825 827 845 863 829 829 865 831 833 847 867 835 849 869 851 871 837 861 827 853 853 839 873 821 857 855 875 857 841 843 877 859 845 879 863 829 863 865 847 881 867 869 849 867 851 883 871 885 861 853 887 853 873 855 857 889 875 891 857 877 893 859 879 895 863 863 897 865 867 881 899 869 867 901 883 903 871 877 905 893 885 853 887 887 873 907 857 891 889 909 891 875 879 911 895 863 895 897 881 913 899 901 867 899 883 915 903 905 917 893 919 885 887 921 887 907 889 891 923 925 891 909 911 927 895 895 929 897 913 931 899 901 899 933 903 915 935 925 909 937 905 939 917 921 919 887 921 907 941 891 943 923 911 945 927 895 927 929 913 947 931 933 899 931 915 949 935 951 925 937 939 953 917 955 919 921 957 921 941 923 943 959 945 961 927 927 963 929 947 965 931 933 931 967 935 949 969 959 943 951 951 937 971 939 973 953 975 955 921 977 957 941 945 979 961 927 961 963 947 981 965 967 931 965 949 983 969 985 959 951 987 951 971 973 989 953 991 955 975 993 957 977 979 995 961 961 997 963 981 999 965 967 965 1001 969 983 1003 1005 993 977 985 951 987 987 971 1007 1009 989 973 991 975 993 979 1011 995 961 995 997 981 1013 999 1001 965 999 983 1015 1003 1017 993 1005 1019 985 987 1021 987 1007 1023 989 1009 1025 991 993 1011 1027 995 997 995 1029 1013 1031 999 999 1033 1001 1003 1015 1035 1025 993 1017 1037 1017 1005 1019 987 1021 1021 1007 1039 1041 1023 1009 1011 1043 1027 995 1045 1029 1013 1047 1031 999 1031 1033 1035 1015 1049 1051 1025 1017 1053 1017 1037 1055 1019 1021 1039 1057 1021 1059 1023 1041 1043 1061 1027 1029 1045 1063 1047 1065 1031 1031 1067 1033 1035 1049 1069 1071 1059 1041 1051 1017 1053 1053 1037 1073 1055 1021 1057 1075 1057 1039 1043 1077 1061 1045 1079 1063 1047 1081 1065 1031 1065 1067 1069 1049 1083 1085 1059 1071 1087 1051 1053 1089 1053 1073 1091 1055 1057 1075 1093 1057 1061 1077 1095 1079 1097 1063 1081 1099 1065 1065 1101 1067 1103 1069 1083 1105 1093 1075 1107 1085 1071 1087 1053 1089 1089 1073 1109 1091 1057 1093 1077 1111 1095 1079 1095 1097 1113 1099 1081 1065 1115 1101 1103 1083 1117 1105 1119 1093 1121 1085 1107 1123 1087 1089 1125 1089 1109 1127 1091 1093 1095 1111 1129 1095 1131 1097 1133 1099 1113 1101 1115 1135 1137 1103 1117 1127 1093 1119 1139 1119 1105 1141 1121 1107 1123 1089 1125 1125 1109 1143 1111 1145 1129 1095 1129 1131 1147 1133 1113 1135 1115 1133 1137 1117 1149 1151 1127 1119 1139 1153 1119 1155 1121 1141 1157 1123 1125 1159 1125 1143 1145 1161 1129 1129 1163 1131 1165 1133 1147 1135 1133 1167 1169 1137 1149 1159 1143 1171 1153 1151 1119 1173 1153 1139 1155 1141 1175 1157 1125 1159 1145 1177 1161 1129 1161 1163 1179 1165 1147 1167 1133 1165 1169 1149 1181 1183 1159 1171 1185 1151 1153 1173 1187 1153 1189 1155 1175 1191 1157 1159 1177 1193 1161 1161 1195 1163 1197 1165 1179 1167 1165 1199 1201 1169 1181 1191 1159 1183 1183 1171 1203 1205 1185 1153 1207 1187 1173 1189 1175 1209 1177 1211 1193 1161 1193 1195 1213 1197 1179 1199 1165 1197 1201 1181 1215 1217 1191 1183 1219 1183 1203 1221 1185 1205 1207 1223 1187 1225 1189 1209 1225 1209 1227 1217 1183 1219 1219 1203 1229 1231 1221 1205 1233 1223 1207 1235 1225 1227 1217 1219 1237 1229 1239 1219 1241 1221 1231 1223 1233 1243 1233 1245 1243 1235 1227 1247 1219 1239 1237 1229 1249 1239 1251 1241 1231 1243 1245 1253 1255 1235 1247 1237 1239 1257 1249 1259 1239 1251 1261 1241 1263 1261 1251 1245 1265 1253 1255 1247 1267 1239 1269 1257 1249 1271 1259 1263 1273 1261 1253 1265 1275 1255 1267 1277 1269 1279 1257 1271 1281 1259 1271 1283 1281 1263 1285 1273 1265 1287 1275 1277 1267 1289 1269 1281 1279 1281 1283 1291 1285 1293 1273 1275 1287 1295 1277 1289 1297 1299 1279 1281 1299 1281 1291 1283 1301 1291 1285 1295 1293 1287 1303 1295 1289 1305 1297 1307 1299 1291 1309 1291 1301 1295 1311 1293 1303 1313 1295 1297 1305 1315 1305 1317 1315 1307 1291 1309 1309 1301 1319 1295 1313 1311 1321 1313 1303 1315 1317 1323 1325 1307 1309 1327 1309 1319 1313 1329 1311 1321 1331 1313 1333 1331 1321 1317 1335 1323 1325 1309 1327 1327 1319 1337 1313 1331 1329 1333 1339 1331 1323 1335 1341 1343 1325 1327 1345 1327 1337 1331 1347 1329 1331 1339 1347 1349 1339 1333 1335 1351 1341 1343 1327 1345 1345 1337 1353 1339 1355 1347 1349 1357 1339 1341 1351 1359 1361 1343 1345 1363 1345 1353 1363 1353 1365 1339 1357 1355 1367 1357 1349 1351 1369 1359 1361 1345 1363 1371 1363 1365 1355 1357 1373 1367 1375 1357 1369 1377 1359 1379 1361 1363 1379 1363 1371 1371 1365 1381 1357 1375 1373 1383 1375 1367 1369 1385 1377 1387 1379 1371 1389 1371 1381 1373 1375 1391 1383 1393 1375 1385 1395 1377 1385 1397 1395 1387 1371 1389 1389 1381 1399 1375 1393 1391 1401 1393 1383 1397 1403 1395 1405 1387 1389 1407 1389 1399 1391 1393 1409 1411 1393 1401 1411 1401 1413 1397 1415 1403 1407 1405 1389 1407 1399 1417 1393 1419 1409 1421 1411 1413 1415 1423 1403 1425 1405 1407 1427 1407 1417 1409 1419 1429 1429 1419 1421 1421 1413 1431 1415 1433 1423 1435 1425 1407 1437 1427 1417 1439 1429 1421 1441 1421 1431 1433 1443 1423 1445 1425 1435 1447 1427 1437 1449 1447 1437 1439 1421 1441 1441 1431 1451 1453 1443 1433 1445 1435 1447 1455 1447 1449 1457 1439 1441 1459 1441 1451 1461 1443 1453 1463 1445 1447 1463 1447 1455 1465 1455 1449 1457 1441 1459 1459 1451 1467 1469 1461 1453 1471 1463 1455 1473 1455 1465 1475 1457 1459 1467 1477 1459 1479 1461 1469 1481 1479 1469 1471 1455 1473 1473 1465 1483 1475 1459 1477 1485 1477 1467 1487 1479 1481 1489 1471 1473 1491 1473 1483 1493 1475 1477 1485 1495 1477 1497 1495 1485 1499 1487 1481 1489 1473 1491 1491 1483 1501 1493 1477 1495 1497 1503 1495 1505 1487 1499 1507 1489 1491 1509 1491 1501 1511 1493 1495 1511 1495 1503 1513 1503 1497 1515 1505 1499 1507 1491 1509 1509 1501 1517</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1742\">\r\n            <mesh>\r\n                <source id=\"ID1743\">\r\n                    <float_array count=\"180\" id=\"ID1746\">-0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6343077421188355 1.414041757583618 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1746\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1744\">\r\n                    <float_array count=\"180\" id=\"ID1747\">0.9999999997435105 2.264904028305049e-005 -2.209455120321467e-018 0.9999999997435105 2.264904028312894e-005 -6.051660786087425e-018 0.6234634960262413 0.7818524599454407 -1.526749119931941e-019 -0.6234634960262413 -0.7818524599454407 1.526749119931941e-019 -0.9999999997435105 -2.264904028312894e-005 6.051660786087425e-018 -0.9999999997435105 -2.264904028305049e-005 2.209455120321467e-018 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234634960262414 0.7818524599454408 -1.040780674003078e-018 -0.6234634960262414 -0.7818524599454408 1.040780674003078e-018 0.6234652837365569 -0.7818510343890929 -5.707467413603938e-018 -0.6234652837365569 0.7818510343890929 5.707467413603938e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.2225354781476582 0.9749245924509203 4.145506498485379e-018 0.2225354781476582 -0.9749245924509203 -4.145506498485379e-018 0 0 1 -0 -0 -1 0.623465283736557 -0.7818510343890928 7.994120291056104e-019 -0.623465283736557 0.7818510343890928 -7.994120291056104e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225354781476585 0.9749245924509202 1.043018590684045e-018 0.2225354781476585 -0.9749245924509202 -1.043018590684045e-018 0 0 1 -0 -0 -1 -0.2225553300349599 -0.9749200608629561 -4.056770881837861e-018 0.2225553300349599 0.9749200608629561 4.056770881837861e-018 0 0 -1 -0 -0 1 -0.9009553760018496 0.4339117542235586 2.214555474022641e-018 0.9009553760018496 -0.4339117542235586 -2.214555474022641e-018 -0.2225553300349603 -0.974920060862956 8.21790817236331e-019 0.2225553300349603 0.974920060862956 -8.21790817236331e-019 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009553760018496 0.4339117542235587 0 -0.9009553760018496 -0.4339117542235587 0 0.9009553760018496 0.4339117542235587 -0 0.9009553760018496 -0.4339117542235587 -0 -0.9009553760018495 -0.4339117542235588 -2.21455547402264e-018 0.9009553760018495 0.4339117542235588 2.21455547402264e-018</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1747\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1745\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1743\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1744\"/>\r\n                </vertices>\r\n                <triangles count=\"56\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1745\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1748\">\r\n            <mesh>\r\n                <source id=\"ID1749\">\r\n                    <float_array count=\"180\" id=\"ID1752\">-0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6348807811737061 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6348807811737061 1.413632392883301 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6348807811737061 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6348807811737061 1.413632392883301 0.01115624234080315 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1752\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1750\">\r\n                    <float_array count=\"180\" id=\"ID1753\">0.9999999999692774 7.838719476032881e-006 4.376233027348433e-018 0.9999999999692772 7.838719476072105e-006 4.376233027348431e-018 0.6234822154226067 0.7818375323887425 4.376154661136589e-018 -0.6234822154226067 -0.7818375323887425 -4.376154661136589e-018 -0.9999999999692772 -7.838719476072105e-006 -4.376233027348431e-018 -0.9999999999692774 -7.838719476032881e-006 -4.376233027348433e-018 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.623482215422607 0.7818375323887425 6.250799169781779e-018 -0.623482215422607 -0.7818375323887425 -6.250799169781779e-018 0.6234828356507187 -0.7818370377827716 2.022204829232494e-018 -0.6234828356507187 0.7818370377827716 -2.022204829232494e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.2225136552712602 0.9749295734656032 -2.373810475256616e-018 0.2225136552712602 -0.9749295734656032 2.373810475256616e-018 0 0 1 -0 -0 -1 0.6234828356507183 -0.7818370377827718 2.022204829232495e-018 -0.6234828356507183 0.7818370377827718 -2.022204829232495e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225136552712601 0.9749295734656031 -4.991495804369193e-019 0.2225136552712601 -0.9749295734656031 4.991495804369193e-019 0 0 1 -0 -0 -1 -0.2225315399609898 -0.9749254913697715 7.064833780320975e-018 0.2225315399609898 0.9749254913697715 -7.064833780320975e-018 0 0 -1 -0 -0 1 -0.9009673547404414 0.4338868812167653 -2.521354725908289e-018 0.9009673547404414 -0.4338868812167653 2.521354725908289e-018 -0.2225315399609899 -0.9749254913697715 7.064833780320978e-018 0.2225315399609899 0.9749254913697715 -7.064833780320978e-018 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009673547404414 0.4338868812167655 -2.521354725908289e-018 -0.9009722572624185 -0.4338767009686765 5.042591135187332e-018 0.9009722572624185 0.4338767009686765 -5.042591135187332e-018 0.9009673547404414 -0.4338868812167655 2.521354725908289e-018 -0.9009722572624185 -0.4338767009686765 5.042591135187332e-018 0.9009722572624185 0.4338767009686765 -5.042591135187332e-018</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1753\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1751\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1749\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1750\"/>\r\n                </vertices>\r\n                <triangles count=\"56\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1751\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1754\">\r\n            <mesh>\r\n                <source id=\"ID1755\">\r\n                    <float_array count=\"180\" id=\"ID1758\">0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6307075619697571 1.414041757583618 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1758\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1756\">\r\n                    <float_array count=\"180\" id=\"ID1759\">0.999999999835843 1.81194371653217e-005 0 0.9999999998358429 1.811943716606694e-005 0 0.6234886533956409 0.7818323983354045 0 -0.6234886533956409 -0.7818323983354045 -0 -0.9999999998358429 -1.811943716606694e-005 -0 -0.999999999835843 -1.81194371653217e-005 -0 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234886533956403 0.7818323983354046 8.883269865254059e-019 -0.6234886533956403 -0.7818323983354046 -8.883269865254059e-019 0.6234670018001388 -0.7818496643641576 0 -0.6234670018001388 0.7818496643641576 -0 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.22253105986498 0.9749256009539236 -2.281655084337777e-018 0.22253105986498 -0.9749256009539236 2.281655084337777e-018 0 0 1 -0 -0 -1 0.6234670018001383 -0.7818496643641582 8.883738370841776e-019 -0.6234670018001383 0.7818496643641582 -8.883738370841776e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.22253105986498 0.9749256009539233 -1.393350726446899e-018 0.22253105986498 -0.9749256009539233 1.393350726446899e-018 0 0 1 -0 -0 -1 -0.2225717438300778 -0.9749163137666937 -2.281615407694076e-018 0.2225717438300778 0.9749163137666937 2.281615407694076e-018 0 0 -1 -0 -0 1 -0.9009663507201748 0.4338889660615616 -2.326067923860243e-018 0.9009663507201748 -0.4338889660615616 2.326067923860243e-018 -0.2225717438300776 -0.9749163137666936 5.25262819099682e-018 0.2225717438300776 0.9749163137666936 -5.25262819099682e-018 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009663507201748 0.4338889660615616 -2.326067923860243e-018 -0.900964579576922 -0.4338926438046397 4.652175280298288e-018 0.900964579576922 0.4338926438046397 -4.652175280298288e-018 0.9009663507201748 -0.4338889660615616 2.326067923860243e-018 -0.9009645795769223 -0.4338926438046395 -1.994027489437981e-018 0.9009645795769223 0.4338926438046395 1.994027489437981e-018</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1759\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1757\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1755\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1756\"/>\r\n                </vertices>\r\n                <triangles count=\"56\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1757\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1760\">\r\n            <mesh>\r\n                <source id=\"ID1761\">\r\n                    <float_array count=\"180\" id=\"ID1764\">0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.630134642124176 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.630134642124176 1.413632392883301 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.630134642124176 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.630134642124176 1.413632392883301 0.01352904364466667 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1764\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1762\">\r\n                    <float_array count=\"180\" id=\"ID1765\">0.9999999999889406 4.703048739066014e-006 -3.194773570613557e-019 0.9999999999889407 4.703048739026789e-006 -4.377776668071451e-018 0.6234969919307719 0.7818257485228271 0 -0.6234969919307719 -0.7818257485228271 -0 -0.9999999999889407 -4.703048739026789e-006 4.377776668071451e-018 -0.9999999999889406 -4.703048739066014e-006 3.194773570613557e-019 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234969919307718 0.7818257485228271 0 -0.6234969919307718 -0.7818257485228271 -0 0.6234896527204427 -0.7818316014018247 -2.035488031807518e-018 -0.6234896527204427 0.7818316014018247 2.035488031807518e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.222513294333848 0.9749296558443067 0 0.222513294333848 -0.9749296558443067 -0 0 0 1 -0 -0 -1 0.623489652720443 -0.7818316014018245 1.476226992554694e-019 -0.623489652720443 0.7818316014018245 -1.476226992554694e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225132943338478 0.9749296558443067 0 0.2225132943338478 -0.9749296558443067 -0 0 0 1 -0 -0 -1 -0.2225325393559867 -0.9749252632524076 1.875220685418097e-018 0.2225325393559867 0.9749252632524076 -1.875220685418097e-018 0 0 -1 -0 -0 1 -0.9009683321664772 0.4338848515829476 0 0.9009683321664772 -0.4338848515829476 -0 -0.2225325393559866 -0.9749252632524076 0 0.2225325393559866 0.9749252632524076 -0 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009683321664771 0.4338848515829476 0 -0.9009707834575071 -0.4338797614039701 0 0.9009707834575071 0.4338797614039701 -0 0.9009683321664771 -0.4338848515829476 -0 -0.9009707834575071 -0.4338797614039701 0 0.9009707834575071 0.4338797614039701 -0</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"60\" source=\"#ID1765\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1763\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1761\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1762\"/>\r\n                </vertices>\r\n                <triangles count=\"56\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1763\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1766\">\r\n            <mesh>\r\n                <source id=\"ID1767\">\r\n                    <float_array count=\"96\" id=\"ID1770\">-0.1994215846061707 1.409376740455627 -0.3330435454845429 -0.193339616060257 1.374477028846741 -0.3185877501964569 0.6995053887367249 1.409376740455627 -0.3330435454845429 0.6995053887367249 1.409376740455627 -0.3330435454845429 -0.193339616060257 1.374477028846741 -0.3185877501964569 -0.1994215846061707 1.409376740455627 -0.3330435454845429 0.6995053887367249 1.444277167320252 -0.3185878992080689 0.6995053887367249 1.444277167320252 -0.3185878992080689 0.6995051503181458 1.374477028846741 -0.3185877501964569 0.6995051503181458 1.374477028846741 -0.3185877501964569 -0.193339616060257 1.444277167320252 -0.3185877501964569 -0.193339616060257 1.444277167320252 -0.3185877501964569 -0.1788957566022873 1.360021471977234 -0.2836892902851105 -0.1788957566022873 1.360021471977234 -0.2836892902851105 0.7010865807533264 1.458731651306152 -0.2836892902851105 0.7010865807533264 1.458731651306152 -0.2836892902851105 0.6995053887367249 1.360021471977234 -0.2836892902851105 0.6995053887367249 1.360021471977234 -0.2836892902851105 -0.1788957566022873 1.458731651306152 -0.2836892902851105 -0.1788957566022873 1.458731651306152 -0.2836892902851105 -0.1937200576066971 1.374477028846741 -0.2487903386354446 -0.1937200576066971 1.374477028846741 -0.2487903386354446 0.7010863423347473 1.444277167320252 -0.2487903386354446 0.7010863423347473 1.444277167320252 -0.2487903386354446 0.6995053887367249 1.374477028846741 -0.2487903386354446 0.6995053887367249 1.374477028846741 -0.2487903386354446 -0.193339616060257 1.444277167320252 -0.2487903386354446 -0.193339616060257 1.444277167320252 -0.2487903386354446 -0.1994215846061707 1.409376740455627 -0.234334796667099 -0.1994215846061707 1.409376740455627 -0.234334796667099 0.6995053887367249 1.409376740455627 -0.234334796667099 0.6995053887367249 1.409376740455627 -0.234334796667099</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1770\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1768\">\r\n                    <float_array count=\"96\" id=\"ID1771\">-8.096430529381678e-008 -3.262168771017521e-006 -0.9999999999946758 -5.358906807957343e-019 -0.6529572867494989 -0.7573947330690468 -6.454358988662185e-019 -4.612929654933531e-006 -0.9999999999893605 6.454358988662185e-019 4.612929654933531e-006 0.9999999999893605 5.358906807957343e-019 0.6529572867494989 0.7573947330690468 8.096430529381678e-008 3.262168771017521e-006 0.9999999999946758 -3.721890660944332e-008 0.710949073141372 -0.7032434965212425 3.721890660944332e-008 -0.710949073141372 0.7032434965212425 -6.754312247816869e-019 -0.707104359561471 -0.7071092028033309 6.754312247816869e-019 0.707104359561471 0.7071092028033309 -9.908881861986481e-008 0.6529616761953019 -0.7573909488634067 9.908881861986481e-008 -0.6529616761953019 0.7573909488634067 -1.33086602427526e-018 -0.9999995659069757 0.0009317649168456204 1.33086602427526e-018 0.9999995659069757 -0.0009317649168456204 -3.315459573728493e-008 0.9999843910927442 0.005587268641536886 3.315459573728493e-008 -0.9999843910927442 -0.005587268641536886 -5.804664278375616e-020 -0.9999999999986244 -1.658672334207115e-006 5.804664278375616e-020 0.9999999999986244 1.658672334207115e-006 1.492557576426979e-020 0.999999999995737 -2.919923129949256e-006 -1.492557576426979e-020 -0.999999999995737 2.919923129949256e-006 2.542821332172197e-019 -0.6527159455234829 0.7576027286509636 -2.542821332172197e-019 0.6527159455234829 -0.7576027286509636 2.088161681493532e-020 0.7110525047396676 0.7031389162202907 -2.088161681493532e-020 -0.7110525047396676 -0.7031389162202907 6.71234797742628e-019 -0.7071039303900618 0.7071096319715401 -6.71234797742628e-019 0.7071039303900618 -0.7071096319715401 -7.589358461867882e-019 0.6529607501764125 0.7573917472015763 7.589358461867882e-019 -0.6529607501764125 -0.7573917472015763 -6.588288910052687e-021 -0.001441131677589446 0.9999989615692048 6.588288910052687e-021 0.001441131677589446 -0.9999989615692048 -6.60329578561079e-019 0.005438410613650082 0.9999852117356524 6.60329578561079e-019 -0.005438410613650082 -0.9999852117356524</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1771\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1769\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1767\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1768\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1769\"/>\r\n                    <p>0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 0 6 7 5 11 8 1 12 13 4 9 10 6 14 15 7 11 16 8 12 13 9 17 18 10 14 15 11 19 16 12 20 21 13 17 18 14 22 23 15 19 24 16 20 21 17 25 26 18 22 23 19 27 20 28 24 25 29 21 30 26 22 23 27 31 24 28 30 31 29 25 28 26 30 31 27 29</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1772\">\r\n            <mesh>\r\n                <source id=\"ID1773\">\r\n                    <float_array count=\"96\" id=\"ID1776\">-0.6978123784065247 1.409376740455627 -0.3330435454845429 -0.1487381309270859 1.374477028846741 -0.3185877501964569 -0.1426564902067184 1.409376740455627 -0.3330435454845429 -0.1426564902067184 1.409376740455627 -0.3330435454845429 -0.1487381309270859 1.374477028846741 -0.3185877501964569 -0.6978123784065247 1.409376740455627 -0.3330435454845429 -0.6978123784065247 1.374477028846741 -0.3185877501964569 -0.6978123784065247 1.374477028846741 -0.3185877501964569 -0.6965032815933228 1.444277167320252 -0.3185878992080689 -0.6965032815933228 1.444277167320252 -0.3185878992080689 -0.1631820350885391 1.360021471977234 -0.2836892902851105 -0.1631820350885391 1.360021471977234 -0.2836892902851105 -0.1487381309270859 1.444277167320252 -0.3185877501964569 -0.1487381309270859 1.444277167320252 -0.3185877501964569 -0.6978123784065247 1.360021471977234 -0.2836892902851105 -0.6978123784065247 1.360021471977234 -0.2836892902851105 -0.6980850100517273 1.458731651306152 -0.2836892902851105 -0.6980850100517273 1.458731651306152 -0.2836892902851105 -0.148358017206192 1.374477028846741 -0.2487903386354446 -0.148358017206192 1.374477028846741 -0.2487903386354446 -0.1631820350885391 1.458731651306152 -0.2836892902851105 -0.1631820350885391 1.458731651306152 -0.2836892902851105 -0.6978126168251038 1.374477028846741 -0.2487903386354446 -0.6978126168251038 1.374477028846741 -0.2487903386354446 -0.6958645582199097 1.444277167320252 -0.2487903386354446 -0.6958645582199097 1.444277167320252 -0.2487903386354446 -0.1426564902067184 1.409376740455627 -0.234334796667099 -0.1426564902067184 1.409376740455627 -0.234334796667099 -0.1487381309270859 1.444277167320252 -0.2487903386354446 -0.1487381309270859 1.444277167320252 -0.2487903386354446 -0.6978123784065247 1.409376740455627 -0.234334796667099 -0.6978123784065247 1.409376740455627 -0.234334796667099</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1776\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1774\">\r\n                    <float_array count=\"96\" id=\"ID1777\">0 -0.004623503802832999 -0.999989311549171 1.416990788477893e-018 -0.6529578956657299 -0.7573942081160786 1.294541359425236e-007 -3.2886846322709e-006 -0.9999999999945839 -1.294541359425236e-007 3.2886846322709e-006 0.9999999999945839 -1.416990788477893e-018 0.6529578956657299 0.7573942081160786 -0 0.004623503802832999 0.999989311549171 1.8206542497657e-018 -0.7071043595420349 -0.7071092028227668 -1.8206542497657e-018 0.7071043595420349 0.7071092028227668 6.222058690068734e-008 0.7077661876840558 -0.7064467591907929 -6.222058690068734e-008 -0.7077661876840558 0.7064467591907929 3.55867895444724e-018 -0.9999995666540326 0.0009309628065998062 -3.55867895444724e-018 0.9999995666540326 -0.0009309628065998062 1.625244536583127e-007 0.6529623179344262 -0.7573903956069651 -1.625244536583127e-007 -0.6529623179344262 0.7573903956069651 1.904648892250437e-018 -0.9999999999986244 -1.658685686398783e-006 -1.904648892250437e-018 0.9999999999986244 1.658685686398783e-006 5.410515884143392e-008 0.9999973576755113 -0.002298834920714152 -5.410515884143392e-008 -0.9999973576755113 0.002298834920714152 1.407486538539841e-018 -0.6527167650363455 0.7576020225952993 -1.407486538539841e-018 0.6527167650363455 -0.7576020225952993 0 0.999999999995737 -2.919923890702951e-006 -0 -0.999999999995737 2.919923890702951e-006 0 -0.7071039303792133 0.7071096319823883 -0 0.7071039303792133 -0.7071096319823883 0 0.7077587064059777 0.7064542543622602 -0 -0.7077587064059777 -0.7064542543622602 -1.686404762606598e-018 -0.001439890283937835 0.9999989633574479 1.686404762606598e-018 0.001439890283937835 -0.9999989633574479 -1.910403059081659e-018 0.6529613591191861 0.7573912222208713 1.910403059081659e-018 -0.6529613591191861 -0.7573912222208713 -7.52346634838247e-020 -0.006909725138064178 0.9999761275643115 7.52346634838247e-020 0.006909725138064178 -0.9999761275643115</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1777\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1775\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1773\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1774\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1775\"/>\r\n                    <p>0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 1 6 10 11 7 4 12 8 2 3 9 13 10 6 14 15 7 11 8 12 16 17 13 9 10 14 18 19 15 11 16 12 20 21 13 17 18 14 22 23 15 19 16 20 24 25 21 17 18 22 26 27 23 19 24 20 28 29 21 25 22 30 26 27 31 23 30 24 28 29 25 31 30 28 26 27 29 31</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1778\">\r\n            <mesh>\r\n                <source id=\"ID1779\">\r\n                    <float_array count=\"312\" id=\"ID1782\">0.0416390672326088 -0.9620028138160706 -0.3203812837600708 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 -0.001550662331283093 -0.9620028138160706 -0.3203812837600708 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 -0.001550662331283093 -0.9620028138160706 -0.3203812837600708 0.05974317342042923 -1.127685785293579 -0.254153698682785 0.05974317342042923 -1.127685785293579 -0.254153698682785 0.05999584496021271 -1.127685785293579 -0.3760610222816467 0.05999584496021271 -1.127685785293579 -0.3760610222816467 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.08528012782335281 -1.201554536819458 -0.3151014745235443 0.08528012782335281 -1.201554536819458 -0.3151014745235443 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 0.0599658340215683 -1.201554536819458 -0.3762143552303314 0.0599658340215683 -1.201554536819458 -0.3762143552303314 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 0.05996581166982651 -1.201554536819458 -0.2539876401424408 0.05996581166982651 -1.201554536819458 -0.2539876401424408 -0.001166453585028648 -1.127685785293579 -0.2285331338644028 -0.001166453585028648 -1.127685785293579 -0.2285331338644028 -0.0011480413377285 -1.201554536819458 -0.4015282690525055 -0.0011480413377285 -1.201554536819458 -0.4015282690525055 -0.001084049232304096 -1.127685785293579 -0.4012084305286408 -0.001084049232304096 -1.127685785293579 -0.4012084305286408 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.0599658340215683 -1.260503172874451 -0.3762143552303314 0.0599658340215683 -1.260503172874451 -0.3762143552303314 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.06201579421758652 -1.127685785293579 -0.2540891170501709 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.06201579421758652 -1.127685785293579 -0.2540891170501709 -0.06228426843881607 -1.127685785293579 -0.3760357797145844 -0.06228426843881607 -1.127685785293579 -0.3760357797145844 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 0.05996581166982651 -1.255197525024414 -0.2539876401424408 0.05996581166982651 -1.255197525024414 -0.2539876401424408 -0.0011480413377285 -1.201554536819458 -0.2286733090877533 -0.0011480413377285 -1.201554536819458 -0.2286733090877533 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.3762143552303314 -0.08734796196222305 -1.127685785293579 -0.3150011897087097 -0.08734796196222305 -1.127685785293579 -0.3150011897087097 0.08528012782335281 -1.272850155830383 -0.3151014745235443 -0.0011480413377285 -1.272850155830383 -0.3151014745235443 0.05996581166982651 -1.255197525024414 -0.2539876401424408 0.05996581166982651 -1.255197525024414 -0.2539876401424408 -0.0011480413377285 -1.272850155830383 -0.3151014745235443 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.0599658340215683 -1.260503172874451 -0.3762143552303314 0.0599658340215683 -1.260503172874451 -0.3762143552303314 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.2539876401424408 -0.06226229667663574 -1.201554536819458 -0.2539876401424408 -0.08757650107145309 -1.201554536819458 -0.3151014745235443 -0.08757650107145309 -1.201554536819458 -0.3151014745235443 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"104\" source=\"#ID1782\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1780\">\r\n                    <float_array count=\"312\" id=\"ID1783\">0.9588055248038134 0.2673775352725806 -0.09592298596918099 0.9927188762608409 0.1204370590336892 0.002036547747779517 0.7267388695696598 0.2673148040119704 0.6327664743115384 -0.7267388695696598 -0.2673148040119704 -0.6327664743115384 -0.9927188762608409 -0.1204370590336892 -0.002036547747779517 -0.9588055248038134 -0.2673775352725806 0.09592298596918099 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0.7014198014966242 0.1227309440114259 0.7021021132645168 -0.7014198014966242 -0.1227309440114259 -0.7021021132645168 0.7021847014273169 0.1188769731776902 -0.7020006483825644 -0.7021847014273169 -0.1188769731776902 0.7020006483825644 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.9999979850203875 1.252127069247626e-005 0.002007435773011593 -0.9999979850203875 -1.252127069247626e-005 -0.002007435773011593 -0.02735841910897286 0.2599523734912984 0.965233795730391 0.02735841910897286 -0.2599523734912984 -0.965233795730391 0.7069516630176301 1.861547685198636e-017 -0.7072618653346207 -0.7069516630176301 -1.861547685198636e-017 0.7072618653346207 0.6128719715456383 0.2606762782951462 -0.7459462610858466 -0.6128719715456383 -0.2606762782951462 0.7459462610858466 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.7071967559861893 4.940692391890928e-005 0.7070167932104344 -0.7071967559861893 -4.940692391890928e-005 -0.7070167932104344 -0.002129131927144091 0.127389319086275 0.9918505069716767 0.002129131927144091 -0.127389319086275 -0.9918505069716767 -0.0001044805771491545 1.056216625318663e-017 -0.9999999945419046 0.0001044805771491545 -1.056216625318663e-017 0.9999999945419046 -0.0007385280053009249 0.1199347071867176 -0.9927815069734235 0.0007385280053009249 -0.1199347071867176 0.9927815069734235 0 1 0 -0 -1 -0 -0.7317481826565028 0.245393817043592 0.6358667090952959 0.7317481826565028 -0.245393817043592 -0.6358667090952959 -0.01585223753510582 0.24114725236149 -0.9703590620196394 0.01585223753510582 -0.24114725236149 0.9703590620196394 0 1 0 -0 -1 -0 0.9999950606089046 -0.0001299568922094801 -0.003140361284808484 0.9999403015474239 -0.0002181347411306611 -0.01092454843376879 -0.9999950606089046 0.0001299568922094801 0.003140361284808484 -0.9999403015474239 0.0002181347411306611 0.01092454843376879 0.7303355718171639 -0.0001769559157017471 -0.6830885163908848 -0.7303355718171639 0.0001769559157017471 0.6830885163908848 0.0001564439772790366 1.585409395917139e-017 -0.9999999877626409 -0.0001564439772790366 -1.585409395917139e-017 0.9999999877626409 -0.7007551070965294 0.1294143228606862 0.7015655442769705 -0.9685914825527583 0.2389457120624006 -0.06881487203535318 0.9685914825527583 -0.2389457120624006 0.06881487203535318 0.7007551070965294 -0.1294143228606862 -0.7015655442769705 -0.7025685150389799 0.1222251163648164 -0.7010410134974484 0.7025685150389799 -0.1222251163648164 0.7010410134974484 -0.6354681256002953 0.2306381677411489 -0.736876039050703 0.6354681256002953 -0.2306381677411489 0.736876039050703 0.7389951719709527 0 0.6737107211582891 -0.7389951719709527 -0 -0.6737107211582891 3.151945290005802e-005 0 0.9999999995032621 -3.151945290005802e-005 -0 -0.9999999995032621 -0.7297614892512843 0 -0.6837018127851847 0.7297614892512843 -0 0.6837018127851847 -0.7064864909428557 -0.0005189046843104191 -0.7077263375438129 0.7064864909428557 0.0005189046843104191 0.7077263375438129 -0.9921320911846666 0.1251728336561139 0.002382300577020578 0.9921320911846666 -0.1251728336561139 -0.002382300577020578 2.783101748555154e-018 -0.9991332874558135 0.04162539967061679 -0.001976815644048048 -0.999186020482851 0.04029129771493174 0.001227976782420993 -0.9610505558098917 0.276369899320675 -0.001227976782420993 0.9610505558098917 -0.276369899320675 0.001976815644048048 0.999186020482851 -0.04029129771493174 -2.783101748555154e-018 0.9991332874558135 -0.04162539967061679 -0.0003929350606584693 -0.9801186500829385 -0.1984118881560179 0.0003929350606584693 0.9801186500829385 0.1984118881560179 -0.0006595177768321808 -0.9800442170581398 -0.198778514048173 0.0006595177768321808 0.9800442170581398 0.198778514048173 -0.003153641731496768 -0.9805446087454121 -0.1962710493275461 0.003153641731496768 0.9805446087454121 0.1962710493275461 -0.7072261597750277 1.014303739521108e-017 0.7069873824403566 0.7072261597750277 -1.014303739521108e-017 -0.7069873824403566 -0.999998337373055 -0.001428955693152681 0.00113284454026866 0.999998337373055 0.001428955693152681 -0.00113284454026866 -0.001177557507855119 -0.9613578838764064 0.2752991690270668 0.001177557507855119 0.9613578838764064 -0.2752991690270668 0.0002775081825241019 0 0.9999999614946036 -0.0002775081825241019 -0 -0.9999999614946036 -0.005946185829815228 -0.9990893998823336 0.04224942504739838 0.005946185829815228 0.9990893998823336 -0.04224942504739838 -0.999931651654992 -0.002552479234430599 -0.01140950780173313 0.999931651654992 0.002552479234430599 0.01140950780173313 -0.9999837153562079 -0.003484709543799063 -0.004519493532456611 0.9999837153562079 0.003484709543799063 0.004519493532456611 -0.00521796392204423 -0.9614714839872087 0.2748551588235937 0.00521796392204423 0.9614714839872087 -0.2748551588235937 -0.7381117946964493 -0.0008439160915865995 0.6746778982118927 0.7381117946964493 0.0008439160915865995 -0.6746778982118927</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"104\" source=\"#ID1783\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1781\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1779\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1780\"/>\r\n                </vertices>\r\n                <triangles count=\"136\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1781\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 6 8 16 17 9 11 6 18 7 10 19 11 1 20 12 13 21 4 22 2 12 13 3 23 14 24 1 4 25 15 26 14 0 5 15 27 28 6 16 17 11 29 30 18 6 11 19 31 20 32 12 13 33 21 24 20 1 4 21 25 34 22 12 13 23 35 36 24 14 15 25 37 26 38 14 15 39 27 40 6 28 29 11 41 42 22 34 35 23 43 44 38 26 27 39 45 46 30 6 11 31 47 20 48 32 49 32 48 50 33 51 33 50 21 34 12 32 33 13 35 24 52 20 21 53 25 36 54 24 25 55 37 38 36 14 15 37 39 40 46 6 11 47 41 42 56 57 58 59 43 56 42 34 35 43 59 44 60 38 39 61 45 62 60 44 45 61 63 49 64 32 33 65 51 20 52 48 49 48 52 53 50 51 50 53 21 66 34 32 33 35 67 24 54 52 53 55 25 36 68 54 55 69 37 70 36 38 39 37 71 57 72 62 63 73 58 56 72 57 58 73 59 56 34 66 67 35 59 60 70 38 39 71 61 72 60 62 63 61 73 74 75 76 77 78 79 64 66 32 33 67 65 74 80 75 78 81 79 80 82 75 78 83 81 82 84 75 78 85 83 70 68 36 37 69 71 56 86 72 73 87 59 86 56 66 67 59 87 88 70 60 61 71 89 72 88 60 61 89 73 76 75 90 91 78 77 92 66 64 65 67 93 75 84 94 95 85 78 96 68 70 71 69 97 86 88 72 73 89 87 92 86 66 67 87 93 88 98 70 96 70 98 99 71 97 71 99 89 75 100 90 91 101 78 75 94 100 101 95 78 86 102 88 89 103 87 102 86 92 93 87 103 88 102 98 96 98 102 103 99 97 99 103 89</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1784\">\r\n            <mesh>\r\n                <source id=\"ID1785\">\r\n                    <float_array count=\"96\" id=\"ID1788\">0.07268758118152618 -1.139533400535584 -0.3458027541637421 0.06737570464611054 -1.170013546943665 -0.3584281504154205 0.5328076481819153 -1.170013546943665 -0.3584281504154205 0.5328076481819153 -1.170013546943665 -0.3584281504154205 0.06737570464611054 -1.170013546943665 -0.3584281504154205 0.07268758118152618 -1.139533400535584 -0.3458027541637421 0.5328074097633362 -1.139533400535584 -0.3458027541637421 0.5328074097633362 -1.139533400535584 -0.3458027541637421 0.5328076481819153 -1.200496077537537 -0.3458027541637421 0.5328076481819153 -1.200496077537537 -0.3458027541637421 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.07268758118152618 -1.200496077537537 -0.3458027541637421 0.07268758118152618 -1.200496077537537 -0.3458027541637421 0.5328076481819153 -1.126907825469971 -0.3153224587440491 0.5328076481819153 -1.126907825469971 -0.3153224587440491 0.534188449382782 -1.213120579719544 -0.3153224587440491 0.534188449382782 -1.213120579719544 -0.3153224587440491 0.07235550135374069 -1.139533400535584 -0.2848415970802307 0.07235550135374069 -1.139533400535584 -0.2848415970802307 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.5328076481819153 -1.139533400535584 -0.2848415970802307 0.5328076481819153 -1.139533400535584 -0.2848415970802307 0.5341882705688477 -1.200496077537537 -0.2848415970802307 0.5341882705688477 -1.200496077537537 -0.2848415970802307 0.06737570464611054 -1.170013546943665 -0.272216260433197 0.06737570464611054 -1.170013546943665 -0.272216260433197 0.07268758118152618 -1.200496077537537 -0.2848415970802307 0.07268758118152618 -1.200496077537537 -0.2848415970802307 0.5328076481819153 -1.170013546943665 -0.272216260433197 0.5328076481819153 -1.170013546943665 -0.272216260433197</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1788\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1786\">\r\n                    <float_array count=\"96\" id=\"ID1789\">-4.800243990006268e-018 0.6532257470633736 -0.7571632078842036 -3.15653781780934e-018 1.228913601519482e-005 -0.9999999999244885 1.397492513338611e-018 1.287400279910259e-005 -0.99999999991713 -1.397492513338611e-018 -1.287400279910259e-005 0.99999999991713 3.15653781780934e-018 -1.228913601519482e-005 0.9999999999244885 4.800243990006268e-018 -0.6532257470633736 0.7571632078842036 3.166570582828221e-018 0.7071056219034221 -0.7071079404677721 -3.166570582828221e-018 -0.7071056219034221 0.7071079404677721 0 -0.7109447180994457 -0.7032478992549495 -0 0.7109447180994457 0.7032478992549495 1.946404600427405e-018 0.9999984994589262 0.001732362518675635 -1.946404600427405e-018 -0.9999984994589262 -0.001732362518675635 -2.614800096576075e-018 -0.6529553154274723 -0.7573964325602611 2.614800096576075e-018 0.6529553154274723 0.7573964325602611 1.860628050482077e-018 0.999999984286978 -0.0001772739229532261 -1.860628050482077e-018 -0.999999984286978 0.0001772739229532261 -1.875828047693226e-018 -0.9999844037696157 0.005584999330916269 1.875828047693226e-018 0.9999844037696157 -0.005584999330916269 2.620721983057941e-018 0.65220608506156 0.7580417024205681 -2.620721983057941e-018 -0.65220608506156 -0.7580417024205681 -5.00221309808669e-018 -0.9999999999925899 -3.849693032704404e-006 5.00221309808669e-018 0.9999999999925899 3.849693032704404e-006 1.507180131247409e-018 0.7071073539430651 0.7071062084295658 -1.507180131247409e-018 -0.7071073539430651 -0.7071062084295658 -1.715282097682279e-018 -0.7110494810907638 0.7031419738861814 1.715282097682279e-018 0.7110494810907638 -0.7031419738861814 7.88705997477675e-020 0.001449403516777924 0.999998949614171 -7.88705997477675e-020 -0.001449403516777924 -0.999998949614171 -1.314688606444315e-018 -0.6529571740461475 0.7573948302316759 1.314688606444315e-018 0.6529571740461475 -0.7573948302316759 1.557517845199634e-018 -0.005427442056589383 0.9999852713278943 -1.557517845199634e-018 0.005427442056589383 -0.9999852713278943</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1789\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1787\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1785\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1786\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1787\"/>\r\n                    <p>0 1 2 3 4 5 6 0 2 3 5 7 2 1 8 9 4 3 0 6 10 11 7 5 1 12 8 9 13 4 6 14 10 11 15 7 8 12 16 17 13 9 10 14 18 19 15 11 16 12 20 21 13 17 18 14 22 23 15 19 16 20 24 25 21 17 26 18 22 23 19 27 24 20 28 29 21 25 30 26 22 23 27 31 28 30 24 25 31 29 28 26 30 31 27 29</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1790\">\r\n            <mesh>\r\n                <source id=\"ID1791\">\r\n                    <float_array count=\"96\" id=\"ID1794\">-0.0755949392914772 -1.139533400535584 -0.3458027541637421 -0.556448757648468 -1.170013546943665 -0.3584281504154205 -0.07028322666883469 -1.170013546943665 -0.3584281504154205 -0.07028322666883469 -1.170013546943665 -0.3584281504154205 -0.556448757648468 -1.170013546943665 -0.3584281504154205 -0.0755949392914772 -1.139533400535584 -0.3458027541637421 -0.5553047060966492 -1.200496077537537 -0.3458027541637421 -0.5553047060966492 -1.200496077537537 -0.3458027541637421 -0.556448757648468 -1.139533400535584 -0.3458027541637421 -0.556448757648468 -1.139533400535584 -0.3458027541637421 -0.0755949392914772 -1.200496077537537 -0.3458027541637421 -0.0755949392914772 -1.200496077537537 -0.3458027541637421 -0.08821037411689758 -1.126907825469971 -0.3153224587440491 -0.08821037411689758 -1.126907825469971 -0.3153224587440491 -0.5566866397857666 -1.213120579719544 -0.3153224587440491 -0.5566866397857666 -1.213120579719544 -0.3153224587440491 -0.556448757648468 -1.126907825469971 -0.3153224587440491 -0.556448757648468 -1.126907825469971 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.07526279240846634 -1.139533400535584 -0.2848415970802307 -0.07526279240846634 -1.139533400535584 -0.2848415970802307 -0.5547472238540649 -1.200496077537537 -0.2848415970802307 -0.5547472238540649 -1.200496077537537 -0.2848415970802307 -0.5564488768577576 -1.139533400535584 -0.2848415970802307 -0.5564488768577576 -1.139533400535584 -0.2848415970802307 -0.0755949392914772 -1.200496077537537 -0.2848415970802307 -0.0755949392914772 -1.200496077537537 -0.2848415970802307 -0.07028322666883469 -1.170013546943665 -0.272216260433197 -0.07028322666883469 -1.170013546943665 -0.272216260433197 -0.556448757648468 -1.170013546943665 -0.272216260433197 -0.556448757648468 -1.170013546943665 -0.272216260433197</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1794\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1792\">\r\n                    <float_array count=\"96\" id=\"ID1795\">3.128676832243398e-018 0.6529590142748708 -0.7573932437493676 -2.732303166435686e-018 0.00463460391985898 -0.999989260165581 2.893044017440788e-018 1.228918634285302e-005 -0.9999999999244879 -2.893044017440788e-018 -1.228918634285302e-005 0.9999999999244879 2.732303166435686e-018 -0.00463460391985898 0.999989260165581 -3.128676832243398e-018 -0.6529590142748708 0.7573932437493676 0 -0.7077617258416615 -0.7064512293383264 -0 0.7077617258416615 0.7064512293383264 -4.446897604623978e-018 0.7071056219076308 -0.7071079404635636 4.446897604623978e-018 -0.7071056219076308 0.7071079404635636 0 -0.6529557627629424 -0.7573960469098476 -0 0.6529557627629424 0.7573960469098476 -3.182260625065258e-018 0.9999995671155167 0.0009304669684801947 3.182260625065258e-018 -0.9999995671155167 -0.0009304669684801947 1.549129489225603e-018 -0.9999973578805378 -0.002298745732710514 -1.549129489225603e-018 0.9999973578805378 0.002298745732710514 -1.695318849550394e-018 0.9999999999960586 -2.807632896495617e-006 1.695318849550394e-018 -0.9999999999960586 2.807632896495617e-006 5.680541635093363e-020 -0.9999999999925899 -3.849692841830614e-006 -5.680541635093363e-020 0.9999999999925899 3.849692841830614e-006 -2.405777604426924e-018 0.6527205424928446 0.7575987680875982 2.405777604426924e-018 -0.6527205424928446 -0.7575987680875982 7.907717898537523e-021 -0.7077556757223815 0.7064572906289207 -7.907717898537523e-021 0.7077556757223815 -0.7064572906289207 0 0.7071073539507441 0.7071062084218869 -0 -0.7071073539507441 -0.7071062084218869 3.196556846155714e-018 -0.6529576213860789 0.7573944445755024 -3.196556846155714e-018 0.6529576213860789 -0.7573944445755024 2.882604743371304e-018 0.001449690439264127 0.9999989491982629 -2.882604743371304e-018 -0.001449690439264127 -0.9999989491982629 -1.269824525755839e-018 0.006920767023478588 0.999976051205131 1.269824525755839e-018 -0.006920767023478588 -0.999976051205131</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1795\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1793\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1791\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1792\"/>\r\n                </vertices>\r\n                <triangles count=\"32\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1793\"/>\r\n                    <p>0 1 2 3 4 5 1 6 2 3 7 4 8 1 0 5 4 9 6 10 2 3 11 7 8 0 12 13 5 9 10 6 14 15 7 11 16 8 12 13 9 17 18 10 14 15 11 19 16 12 20 21 13 17 18 14 22 23 15 19 24 16 20 21 17 25 26 18 22 23 19 27 24 20 28 29 21 25 22 30 26 27 31 23 30 24 28 29 25 31 26 30 28 29 31 27</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1796\">\r\n            <mesh>\r\n                <source id=\"ID1797\">\r\n                    <float_array count=\"420\" id=\"ID1800\">0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"140\" source=\"#ID1800\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1798\">\r\n                    <float_array count=\"420\" id=\"ID1801\">-0.9999999710445691 -0.0001104833632839914 0.0002137856110456591 -0.9999999700643614 -7.663589426042924e-005 0.0002323751623919958 -0.9999999802680193 -8.573050672086329e-005 0.0001792044679426364 0.9999999802680193 8.573050672086329e-005 -0.0001792044679426364 0.9999999700643614 7.663589426042924e-005 -0.0002323751623919958 0.9999999710445691 0.0001104833632839914 -0.0002137856110456591 0.004961922813059091 -0.7979285849641429 -0.6027315759267288 -0.0001763919522577015 -0.7969131936155863 -0.6040938095422647 0.03049636748995247 -0.9865933133747843 -0.160323440501015 -0.03049636748995247 0.9865933133747843 0.160323440501015 0.0001763919522577015 0.7969131936155863 0.6040938095422647 -0.004961922813059091 0.7979285849641429 0.6027315759267288 -0.9999999695818748 -0.0001704942869253314 0.0001782356517235991 0.9999999695818748 0.0001704942869253314 -0.0001782356517235991 -0.0003464089528092289 -0.1304839459037725 -0.9914503617742135 -0.0003356659977346473 -0.1305078226455562 -0.991447222779233 0.0003356659977346473 0.1305078226455562 0.991447222779233 0.0003464089528092289 0.1304839459037725 0.9914503617742135 0.03947983509217013 -0.9868227730252783 -0.1569144902798821 -0.03947983509217013 0.9868227730252783 0.1569144902798821 -0.04410908481141456 0.8317655093958543 0.5533719599117346 0.00972661921211627 0.8422186636899086 0.5390483423692974 -0.03041555429328463 0.8346805984310199 0.5498938012560851 0.03041555429328463 -0.8346805984310199 -0.5498938012560851 -0.00972661921211627 -0.8422186636899086 -0.5390483423692974 0.04410908481141456 -0.8317655093958543 -0.5533719599117346 -0.9999998385693959 -0.0001250412032718077 0.0005542796040042547 0.9999998385693959 0.0001250412032718077 -0.0005542796040042547 -0.0003673869990641776 0.3426475969726668 -0.939463937208688 0.0003673869990641776 -0.3426475969726668 0.939463937208688 0.9999999781995033 4.699620345741876e-005 -0.0002034511002851032 0.9999999794693828 7.698928926646006e-005 -0.0001874403455906109 0.9999999855371815 6.872156045996573e-005 -0.0001555730832890062 -0.9999999855371815 -6.872156045996573e-005 0.0001555730832890062 -0.9999999794693828 -7.698928926646006e-005 0.0001874403455906109 -0.9999999781995033 -4.699620345741876e-005 0.0002034511002851032 0.02360047584532965 0.8444748722209845 0.5350749552419978 -0.02360047584532965 -0.8444748722209845 -0.5350749552419978 -0.9999997268103815 -4.676815955930713e-005 0.0007376936366238248 0.9999997268103815 4.676815955930713e-005 -0.0007376936366238248 0.001908403844572751 0.3420016409162702 -0.939697417047288 -0.001908403844572751 -0.3420016409162702 0.939697417047288 0.9999999777905969 0.0001522573889000832 -0.0001457274619571062 0.9999998982721315 9.728089302000219e-005 -0.0004404454047939104 -0.9999998982721315 -9.728089302000219e-005 0.0004404454047939104 -0.9999999777905969 -0.0001522573889000832 0.0001457274619571062 -0.008392300707209957 -0.1223304537586148 0.9924539431994067 -0.0009271782674676281 -0.3551960317513965 0.9347913774573027 -0.005955223996627054 -0.1212198217342457 0.9926078229219573 0.005955223996627054 0.1212198217342457 -0.9926078229219573 0.0009271782674676281 0.3551960317513965 -0.9347913774573027 0.008392300707209957 0.1223304537586148 -0.9924539431994067 -0.9999999647802734 -5.986156320317399e-005 0.0002585653599272689 0.9999999647802734 5.986156320317399e-005 -0.0002585653599272689 0.02138638165005725 0.5168164865779673 -0.855829037764625 -0.02138638165005725 -0.5168164865779673 0.855829037764625 0.9999998319739059 4.59237093275836e-005 -0.0005778781644368841 -0.9999998319739059 -4.59237093275836e-005 0.0005778781644368841 0.0003049958327635592 -0.3546827300580774 0.9349866672718339 -0.0003049958327635592 0.3546827300580774 -0.9349866672718339 -0.9999999738512297 -2.953591568042569e-005 0.0002267711839617163 0.9999999738512297 2.953591568042569e-005 -0.0002267711839617163 0.02250528561464173 0.5156341578366951 -0.8565132383048412 -0.02250528561464173 -0.5156341578366951 0.8565132383048412 0.9999999405841482 9.905564214886539e-005 -0.0003301812833618662 -0.9999999405841482 -9.905564214886539e-005 0.0003301812833618662 0.0002835536457019438 -0.534567467405807 0.845125755369384 -0.0002835536457019438 0.534567467405807 -0.845125755369384 -0.9999999421572299 -0.0001359886900621858 0.0003117572988199132 0.9999999421572299 0.0001359886900621858 -0.0003117572988199132 0.00088649570702846 0.2602505468779262 -0.9655407122307697 -0.00088649570702846 -0.2602505468779262 0.9655407122307697 0.9999999476742829 8.742145870394942e-005 -0.0003114625499332963 -0.9999999476742829 -8.742145870394942e-005 0.0003114625499332963 0.0002751967351688296 -0.5345688612684229 0.8451248764702993 -0.0002751967351688296 0.5345688612684229 -0.8451248764702993 0.0002284427270975212 -0.337955662273133 0.9411620042008967 -0.0002284427270975212 0.337955662273133 -0.9411620042008967 -0.9999999344292633 -0.000156901232732886 0.0003263793381189007 0.9999999344292633 0.000156901232732886 -0.0003263793381189007 -0.0003169333868864173 0.2604400519765147 -0.9654899682957348 0.0003169333868864173 -0.2604400519765147 0.9654899682957348 0.9999999114917834 0.0001894836831243463 -0.0003756492506452966 0.9999999038277406 0.0002058925015349785 -0.0003872373785017013 -0.9999999038277406 -0.0002058925015349785 0.0003872373785017013 -0.9999999114917834 -0.0001894836831243463 0.0003756492506452966 0.000222128065331292 -0.3379435563570671 0.9411663526581582 -0.000222128065331292 0.3379435563570671 -0.9411663526581582 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.000297981301382343 0.2505951925739997 -0.9680919174675223 0.000297981301382343 -0.2505951925739997 0.9680919174675223 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.0002747071523925597 -0.2217236845486482 0.9751094975674023 -0.0002747071523925597 0.2217236845486482 -0.9751094975674023 -0.9999996997481733 4.424631410726776e-005 0.0007736574350763412 -0.9999996243670856 6.513592050351822e-005 0.0008643049230435587 -0.9999999477055301 -8.378372903372794e-005 0.0003123607271175583 0.9999999477055301 8.378372903372794e-005 -0.0003123607271175583 0.9999996243670856 -6.513592050351822e-005 -0.0008643049230435587 0.9999996997481733 -4.424631410726776e-005 -0.0007736574350763412 -0.0003063365191113349 0.2505969935595491 -0.9680914486642531 0.0003063365191113349 -0.2505969935595491 0.9680914486642531 0.9999995691084593 -7.809505908810414e-005 -0.0009250319224987596 0.9999996638854315 -5.346291194945224e-005 -0.0008181508057818759 0.9999999657621683 6.410373996497947e-005 -0.0002537052871345287 -0.9999999657621683 -6.410373996497947e-005 0.0002537052871345287 -0.9999996638854315 5.346291194945224e-005 0.0008181508057818759 -0.9999995691084593 7.809505908810414e-005 0.0009250319224987596 0.0002833451553801525 -0.2217220549394402 0.9751098656402543 -0.0002833451553801525 0.2217220549394402 -0.9751098656402543 -0.9999999418829865 -0.0001503792467214633 0.000305974028555818 0.9999999418829865 0.0001503792467214633 -0.000305974028555818 -0.0003202536291034038 0.5310569474512576 -0.8473360702822497 0.0003202536291034038 -0.5310569474512576 0.8473360702822497 0.9999999820584712 4.249982566400346e-005 -0.000184599085539308 -0.9999999820584712 -4.249982566400346e-005 0.000184599085539308 0.0003009137736632499 -0.06276316217133647 0.9980284038669217 -0.0003009137736632499 0.06276316217133647 -0.9980284038669217 -0.999999931634918 -0.0001789863694918537 0.0003235645826783615 0.999999931634918 0.0001789863694918537 -0.0003235645826783615 -0.0003366867603659674 0.5310630500708145 -0.8473322391432472 0.0003366867603659674 -0.5310630500708145 0.8473322391432472 0.9999999844430778 2.601700140070584e-005 -0.000174461915128319 -0.9999999844430778 -2.601700140070584e-005 0.000174461915128319 0.0003135305943188504 -0.06272726288933955 0.9980306569384418 -0.0003135305943188504 0.06272726288933955 -0.9980306569384418 0.0002752074406906135 0.1530052876970384 0.988225331691923 -0.0002752074406906135 -0.1530052876970384 -0.988225331691923 0.0002878377690457768 0.1530166634393099 0.9882235667394902 -0.0002878377690457768 -0.1530166634393099 -0.9882235667394902</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"140\" source=\"#ID1801\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1799\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1797\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1798\"/>\r\n                </vertices>\r\n                <triangles count=\"104\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1799\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 14 7 15 16 10 17 6 8 18 19 9 11 15 7 6 11 10 16 20 21 22 23 24 25 12 2 26 27 3 13 28 14 15 16 17 29 30 31 32 33 34 35 21 36 22 23 37 24 38 12 26 27 13 39 40 14 28 29 17 41 32 42 43 44 45 33 31 42 32 33 45 34 46 47 48 49 50 51 38 26 52 53 27 39 40 28 54 55 29 41 42 56 43 44 57 45 48 47 58 59 50 49 60 38 52 53 39 61 62 40 54 55 41 63 43 56 64 65 57 44 47 66 58 59 67 50 60 52 68 69 53 61 62 54 70 71 55 63 56 72 64 65 73 57 58 66 74 75 67 59 66 76 74 75 77 67 68 52 78 79 53 69 80 62 70 71 63 81 64 82 83 84 85 65 64 72 82 85 73 65 74 76 86 87 77 75 88 89 90 91 92 93 80 70 94 95 71 81 96 97 98 99 100 101 76 102 86 87 103 77 104 105 106 107 108 109 110 80 94 95 81 111 112 113 114 115 116 117 86 102 118 119 103 87 104 106 120 121 107 109 110 94 122 123 95 111 114 113 124 125 116 115 102 126 118 119 127 103 120 106 128 129 107 121 130 110 122 123 111 131 114 124 132 133 125 115 126 134 118 119 135 127 126 136 134 135 137 127 136 138 134 135 139 137</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1802\">\r\n            <mesh>\r\n                <source id=\"ID1803\">\r\n                    <float_array count=\"420\" id=\"ID1806\">-0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"140\" source=\"#ID1806\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1804\">\r\n                    <float_array count=\"420\" id=\"ID1807\">-0.9999999796474213 -7.372837380031436e-005 0.0001878011821307511 -0.9999999794114374 -6.685496042745983e-005 0.0001915921166301781 -0.9999999814053816 -6.625935140178148e-005 0.0001811047625334675 0.9999999814053816 6.625935140178148e-005 -0.0001811047625334675 0.9999999794114374 6.685496042745983e-005 -0.0001915921166301781 0.9999999796474213 7.372837380031436e-005 -0.0001878011821307511 0.004952013066311905 -0.796870136383622 -0.6041303363567656 -0.0001945461549902302 -0.7958507196312642 -0.6054928523229591 0.03051534998570993 -0.9863101208755875 -0.162052950832849 -0.03051534998570993 0.9863101208755875 0.162052950832849 0.0001945461549902302 0.7958507196312642 0.6054928523229591 -0.004952013066311905 0.796870136383622 0.6041303363567656 -0.9999999775545849 -8.380028082577559e-005 0.0001945978994759896 0.9999999775545849 8.380028082577559e-005 -0.0001945978994759896 -0.0003263719987045853 -0.1287268519209083 -0.9916800346260133 -0.0003127148091308122 -0.1287912989425779 -0.9916716712330405 0.0003127148091308122 0.1287912989425779 0.9916716712330405 0.0003263719987045853 0.1287268519209083 0.9916800346260133 0.03951270650674746 -0.9865457996395824 -0.158638366223334 -0.03951270650674746 0.9865457996395824 0.158638366223334 -0.04412298859978101 0.8307933462406718 0.5548293230528203 0.009702529785641144 0.8412708268827518 0.5405268325918423 -0.03043120518351949 0.8337144134479427 0.5513567071871268 0.03043120518351949 -0.8337144134479427 -0.5513567071871268 -0.009702529785641144 -0.8412708268827518 -0.5405268325918423 0.04412298859978101 -0.8307933462406718 -0.5548293230528203 -0.9999998879205081 -0.0001067768407130082 0.0004612566285053172 0.9999998879205081 0.0001067768407130082 -0.0004612566285053172 -0.0003259821602667881 0.3442855023723608 -0.9388649458744545 0.0003259821602667881 -0.3442855023723608 0.9388649458744545 0.9999999796040053 8.467560949920889e-005 -0.0001833631096726923 0.9999999796560025 8.967387180890078e-005 -0.0001806836774636798 0.9999999816423528 6.897477977519543e-005 -0.0001787673738543972 -0.9999999816423528 -6.897477977519543e-005 0.0001787673738543972 -0.9999999796560025 -8.967387180890078e-005 0.0001806836774636798 -0.9999999796040053 -8.467560949920889e-005 0.0001833631096726923 0.023576545125666 0.8435343970522004 0.5365574223787406 -0.023576545125666 -0.8435343970522004 -0.5365574223787406 -0.9999998253700634 -5.479900386395953e-005 0.0005884359877822771 0.9999998253700634 5.479900386395953e-005 -0.0005884359877822771 0.001943192923113494 0.3436563931974262 -0.9390934497779226 -0.001943192923113494 -0.3436563931974262 0.9390934497779226 0.9999999774256322 9.036082572671157e-005 -0.0001923113531821971 0.9999998844095683 0.0001075835678604766 -0.000468622050062329 -0.9999998844095683 -0.0001075835678604766 0.000468622050062329 -0.9999999774256322 -9.036082572671157e-005 0.0001923113531821971 -0.008396031932909377 -0.1240281200667111 0.9922431819269403 -0.001015849563375322 -0.3568515298151736 0.9341605609948617 -0.005979590096272994 -0.1229270838485122 0.9923976907262438 0.005979590096272994 0.1229270838485122 -0.9923976907262438 0.001015849563375322 0.3568515298151736 -0.9341605609948617 0.008396031932909377 0.1240281200667111 -0.9922431819269403 -0.9999999543077748 -7.676893325396516e-005 0.0002923884051408668 0.9999999543077748 7.676893325396516e-005 -0.0002923884051408668 0.02139729440545909 0.5182176088367644 -0.8549810908339625 -0.02139729440545909 -0.5182176088367644 0.8549810908339625 0.9999998149178142 5.103504527862209e-005 -0.0006062670709983245 -0.9999998149178142 -5.103504527862209e-005 0.0006062670709983245 0.0002154623307682091 -0.3563155275693334 0.9343656663153733 -0.0002154623307682091 0.3563155275693334 -0.9343656663153733 -0.9999999638778768 -4.413850467589816e-005 0.0002651339993739532 0.9999999638778768 4.413850467589816e-005 -0.0002651339993739532 0.02251288538210824 0.5170403867847911 -0.8556648925982681 -0.02251288538210824 -0.5170403867847911 0.8556648925982681 0.9999999568998583 7.114767680534288e-005 -0.000284847836186255 -0.9999999568998583 -7.114767680534288e-005 0.000284847836186255 0.0002932292485633025 -0.536041123254263 0.8441918195510521 -0.0002932292485633025 0.536041123254263 -0.8441918195510521 -0.9999999118959498 -0.0001881429300790426 0.0003752470261725238 0.9999999118959498 0.0001881429300790426 -0.0003752470261725238 0.0009032151263764276 0.2618195655509092 -0.9651164174840093 -0.0009032151263764276 -0.2618195655509092 0.9651164174840093 0.9999999668096723 3.431042508831439e-005 -0.0002553496607921055 -0.9999999668096723 -3.431042508831439e-005 0.0002553496607921055 0.0002960012507453714 -0.5360422065958079 0.8441911306873324 -0.0002960012507453714 0.5360422065958079 -0.8441911306873324 0.0002720308578548875 -0.3395970168755311 0.9405709926042013 -0.0002720308578548875 0.3395970168755311 -0.9405709926042013 -0.9999998990046093 -0.0002155761766725763 0.0003943573040884083 0.9999998990046093 0.0002155761766725763 -0.0003943573040884083 -0.0002998260502447587 0.2620009282912986 -0.9650675746696897 0.0002998260502447587 -0.2620009282912986 0.9650675746696897 0.9999999102642094 0.0001904143557393747 -0.0003784361855243776 0.9999998959825797 0.0002202313195086972 -0.0003994158180963879 -0.9999998959825797 -0.0002202313195086972 0.0003994158180963879 -0.9999999102642094 -0.0001904143557393747 0.0003784361855243776 0.0002659471541952785 -0.3395951480894923 0.9405716690748168 -0.0002659471541952785 0.3395951480894923 -0.9405716690748168 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.0002934433779523444 0.2522218127606528 -0.9676694017373464 0.0002934433779523444 -0.2522218127606528 0.9676694017373464 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.0002920699888821517 -0.2234143247973296 0.9747235270426559 -0.0002920699888821517 0.2234143247973296 -0.9747235270426559 -0.9999997276497483 4.385392790234016e-005 0.0007367341868116179 -0.9999996583977281 6.382463746765831e-005 0.0008240939525973544 -0.9999999589200279 -5.960901760188783e-005 0.0002803688776326599 0.9999999589200279 5.960901760188783e-005 -0.0002803688776326599 0.9999996583977281 -6.382463746765831e-005 -0.0008240939525973544 0.9999997276497483 -4.385392790234016e-005 -0.0007367341868116179 -0.0003043815696399995 0.2522203005924734 -0.9676697925020199 0.0003043815696399995 -0.2522203005924734 0.9676697925020199 0.9999995691343151 -6.720279912305352e-005 -0.0009258590432243916 0.999999655350043 -4.506394947157887e-005 -0.0008290169092028616 0.9999999456349861 6.865112386163782e-005 -0.000322516740449088 -0.9999999456349861 -6.865112386163782e-005 0.000322516740449088 -0.999999655350043 4.506394947157887e-005 0.0008290169092028616 -0.9999995691343151 6.720279912305352e-005 0.0009258590432243916 0.0002943637441851266 -0.223413529751691 0.9747237085830406 -0.0002943637441851266 0.223413529751691 -0.9747237085830406 -0.9999999692246961 -6.646992415419717e-005 0.0002390237561556552 0.9999999692246961 6.646992415419717e-005 -0.0002390237561556552 -0.0003262085661851687 0.5324510706906751 -0.8464607202394717 0.0003262085661851687 -0.5324510706906751 0.8464607202394717 0.9999999595324278 7.331680825462007e-005 -0.0002748814082542198 -0.9999999595324278 -7.331680825462007e-005 0.0002748814082542198 0.0002994691661593511 -0.06449091226997794 0.997918249433692 -0.0002994691661593511 0.06449091226997794 -0.997918249433692 -0.9999999694663382 -6.533110756353835e-005 0.0002383257626904562 0.9999999694663382 6.533110756353835e-005 -0.0002383257626904562 -0.0003465867334712809 0.5324586302942831 -0.8464559568594058 0.0003465867334712809 -0.5324586302942831 0.8464559568594058 0.9999999601888447 7.058082113336549e-005 -0.0002732044230723244 -0.9999999601888447 -7.058082113336549e-005 0.0002732044230723244 0.0003177401799641748 -0.06447600574064884 0.997919207012727 -0.0003177401799641748 0.06447600574064884 -0.997919207012727 0.000319944634965314 0.1512712693546003 0.9884922360359129 -0.000319944634965314 -0.1512712693546003 -0.9884922360359129 0.0003531671350192214 0.1513012009785921 0.9884876437545442 -0.0003531671350192214 -0.1513012009785921 -0.9884876437545442</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"140\" source=\"#ID1807\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1805\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1803\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1804\"/>\r\n                </vertices>\r\n                <triangles count=\"104\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1805\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 14 7 15 16 10 17 6 8 18 19 9 11 15 7 6 11 10 16 20 21 22 23 24 25 12 2 26 27 3 13 28 14 15 16 17 29 30 31 32 33 34 35 21 36 22 23 37 24 38 12 26 27 13 39 40 14 28 29 17 41 32 42 43 44 45 33 31 42 32 33 45 34 46 47 48 49 50 51 38 26 52 53 27 39 40 28 54 55 29 41 42 56 43 44 57 45 48 47 58 59 50 49 60 38 52 53 39 61 62 40 54 55 41 63 43 56 64 65 57 44 47 66 58 59 67 50 60 52 68 69 53 61 62 54 70 71 55 63 56 72 64 65 73 57 58 66 74 75 67 59 66 76 74 75 77 67 68 52 78 79 53 69 80 62 70 71 63 81 64 82 83 84 85 65 64 72 82 85 73 65 74 76 86 87 77 75 88 89 90 91 92 93 80 70 94 95 71 81 96 97 98 99 100 101 76 102 86 87 103 77 104 105 106 107 108 109 110 80 94 95 81 111 112 113 114 115 116 117 86 102 118 119 103 87 104 106 120 121 107 109 110 94 122 123 95 111 114 113 124 125 116 115 102 126 118 119 127 103 120 106 128 129 107 121 130 110 122 123 111 131 114 124 132 133 125 115 118 126 134 135 127 119 126 136 134 135 137 127 136 138 134 135 139 137</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1808\">\r\n            <mesh>\r\n                <source id=\"ID1809\">\r\n                    <float_array count=\"300\" id=\"ID1812\">-0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1812\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1810\">\r\n                    <float_array count=\"300\" id=\"ID1813\">-0.999999984411443 3.080246314798667e-005 0.0001738629406479815 -0.9999999823747726 3.054551147014028e-005 0.0001852496326182806 -0.9999999829039918 3.417859454922746e-005 0.0001817246268044369 0.9999999829039918 -3.417859454922746e-005 -0.0001817246268044369 0.9999999823747726 -3.054551147014028e-005 -0.0001852496326182806 0.999999984411443 -3.080246314798667e-005 -0.0001738629406479815 -1.769463302100483e-005 0.68708007618282 -0.7265817012556195 0.007141960610142448 0.6885656521728911 -0.7251388384622385 0.04815605561094433 0.9347644673763428 -0.3519891828431915 -0.04815605561094433 -0.9347644673763428 0.3519891828431915 -0.007141960610142448 -0.6885656521728911 0.7251388384622385 1.769463302100483e-005 -0.68708007618282 0.7265817012556195 -0.0002616104941960659 0.1282516270709203 -0.9917416254819653 -0.0002578241739765837 0.1282135302883974 -0.9917465523901162 0.0002578241739765837 -0.1282135302883974 0.9917465523901162 0.0002616104941960659 -0.1282516270709203 0.9917416254819653 -0.9999999828490539 4.21748978558922e-005 0.0001803418140285232 0.9999999828490539 -4.21748978558922e-005 -0.0001803418140285232 0.06106622712373427 0.9356753701782472 -0.347537792976063 -0.06106622712373427 -0.9356753701782472 0.347537792976063 -0.0003717950278579427 -0.1797419237099666 -0.9837137300198152 0.0003717950278579427 0.1797419237099666 0.9837137300198152 -0.9999998988493954 4.503593342057304e-005 0.0004475186744983042 0.9999998988493954 -4.503593342057304e-005 -0.0004475186744983042 0.003688797389667888 -0.3374031293935553 0.9413530267913594 -0.05461194083058513 -0.658038213705086 0.7510014948204405 -0.04202449406539048 -0.6607579488210175 0.7494216936867983 0.04202449406539048 0.6607579488210175 -0.7494216936867983 0.05461194083058513 0.658038213705086 -0.7510014948204405 -0.003688797389667888 0.3374031293935553 -0.9413530267913594 0.999999983663352 -4.17648800326373e-005 -0.0001758664004577456 0.9999999846999328 -3.155013974575054e-005 -0.0001720602310259234 0.999999983985305 -4.439629059590873e-005 -0.0001733734677599167 -0.999999983985305 4.439629059590873e-005 0.0001733734677599167 -0.9999999846999328 3.155013974575054e-005 0.0001720602310259234 -0.999999983663352 4.17648800326373e-005 0.0001758664004577456 0.9999998958878661 -4.558295482759263e-005 -0.0004540335354482252 0.9999999832112049 -4.683516868800383e-005 -0.0001771554595090167 -0.9999999832112049 4.683516868800383e-005 0.0001771554595090167 -0.9999998958878661 4.558295482759263e-005 0.0004540335354482252 0.00144405316009299 -0.1793549727249666 -0.9837833646028464 -0.00144405316009299 0.1793549727249666 0.9837833646028464 -0.9999998195145633 -2.455150091527985e-006 0.0006008034730474542 0.9999998195145633 2.455150091527985e-006 -0.0006008034730474542 0.01266054751111889 -0.3617188438700049 0.9322012596677101 -0.01266054751111889 0.3617188438700049 -0.9322012596677101 0.9999998074597568 6.109781507060899e-006 -0.000620518428385647 -0.9999998074597568 -6.109781507060899e-006 0.000620518428385647 0.0269870394274772 -0.2306017678121405 -0.9726739044432391 -0.0269870394274772 0.2306017678121405 0.9726739044432391 -0.999999963093016 1.797775736911185e-005 0.0002710918056143681 0.999999963093016 -1.797775736911185e-005 -0.0002710918056143681 0.9999999649068889 -1.437273717084181e-005 -0.0002645366617785483 -0.9999999649068889 1.437273717084181e-005 0.0002645366617785483 0.02771718101855024 -0.2312164877542377 -0.9725074260215083 -0.02771718101855024 0.2312164877542377 0.9725074260215083 -0.9999999664707235 1.5466008783727e-005 0.0002584943998064539 0.9999999664707235 -1.5466008783727e-005 -0.0002584943998064539 0.9999999689300021 -1.08382129044566e-005 -0.0002490432252599668 -0.9999999689300021 1.08382129044566e-005 0.0002490432252599668 0.0007309652795617584 -0.1440840201039932 -0.9895651877670476 -0.0007309652795617584 0.1440840201039932 0.9895651877670476 -0.9999999607022785 2.060547431277325e-005 0.0002795905151389421 0.9999999607022785 -2.060547431277325e-005 -0.0002795905151389421 0.9999999601351655 -2.072338356797332e-005 -0.0002816029281138686 -0.9999999601351655 2.072338356797332e-005 0.0002816029281138686 0.9999999506935324 -2.16022513446366e-005 -0.0003132830601111448 -0.9999999506935324 2.16022513446366e-005 0.0003132830601111448 -0.000339041137228352 -0.1442078179617186 -0.9895473663700121 0.000339041137228352 0.1442078179617186 0.9895473663700121 -0.9999999558190014 2.135714131397518e-005 0.0002964892372467364 0.9999999558190014 -2.135714131397518e-005 -0.0002964892372467364 0.9999999449633971 -2.495140936292704e-005 -0.0003308332364104989 -0.9999999449633971 2.495140936292704e-005 0.0003308332364104989 -0.0001499912736990772 0.3702509537358272 -0.9289317567832032 0.0001499912736990772 -0.3702509537358272 0.9289317567832032 -0.9999999562731093 2.02279099250094e-005 0.0002950332374563406 0.9999999562731093 -2.02279099250094e-005 -0.0002950332374563406 0.9999999675719412 5.01596575947656e-005 -0.0002496800460373278 0.9999999449833134 -2.541309867504692e-005 -0.0003307378790345847 -0.9999999449833134 2.541309867504692e-005 0.0003307378790345847 -0.9999999675719412 -5.01596575947656e-005 0.0002496800460373278 -0.0001644005810996404 0.3700142651591096 -0.9290260580582297 0.0001644005810996404 -0.3700142651591096 0.9290260580582297 -0.9999999563847567 2.019219442861884e-005 0.0002946570214695821 -0.9999999756782813 -4.311763024688826e-005 0.0002162968025300171 0.9999999756782813 4.311763024688826e-005 -0.0002162968025300171 0.9999999563847567 -2.019219442861884e-005 -0.0002946570214695821 0.9999999787959655 0.0001109095879281376 -0.0001735140691197846 -0.9999999787959655 -0.0001109095879281376 0.0001735140691197846 -0.0001242106906019887 0.7647709191762052 -0.6443022782468542 0.0001242106906019887 -0.7647709191762052 0.6443022782468542 -0.9999999841897669 -9.517416516503213e-005 0.0001502076704646804 0.9999999841897669 9.517416516503213e-005 -0.0001502076704646804 0.9999999805261771 0.0001738433233134982 -9.341383556635226e-005 -0.9999999805261771 -0.0001738433233134982 9.341383556635226e-005 -0.0001507559291783691 0.7647673683511757 -0.6443064873007778 0.0001507559291783691 -0.7647673683511757 0.6443064873007778 -0.9999999855523141 -0.0001492205700541566 8.14161725338505e-005 0.9999999855523141 0.0001492205700541566 -8.14161725338505e-005</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"100\" source=\"#ID1813\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1811\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1809\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1810\"/>\r\n                </vertices>\r\n                <triangles count=\"80\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1811\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 6 12 13 14 15 11 16 0 2 3 5 17 8 7 18 19 10 9 6 13 7 10 14 11 12 20 13 14 21 15 22 0 16 17 5 23 24 25 26 27 28 29 30 31 32 33 34 35 31 36 37 38 39 34 12 40 20 21 41 15 42 22 16 17 23 43 44 24 26 27 29 45 31 37 32 33 38 34 36 46 37 38 47 39 20 40 48 49 41 21 50 22 42 43 23 51 36 52 46 47 53 39 40 54 48 49 55 41 56 50 42 43 51 57 52 58 46 47 59 53 48 54 60 61 55 49 62 50 56 57 51 63 52 64 58 59 65 53 66 64 52 53 65 67 54 68 60 61 69 55 62 70 50 51 71 63 66 72 64 65 73 67 60 68 74 75 69 61 76 70 62 63 71 77 78 79 66 67 80 81 68 82 74 75 83 69 84 85 70 71 86 87 78 88 72 73 89 81 90 74 82 83 75 91 92 85 76 77 86 93 94 88 78 81 89 95 96 90 82 83 91 97 92 98 85 86 99 93</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1814\">\r\n            <mesh>\r\n                <source id=\"ID1815\">\r\n                    <float_array count=\"102\" id=\"ID1818\">-0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"34\" source=\"#ID1818\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1816\">\r\n                    <float_array count=\"102\" id=\"ID1819\">-0.0004538475399847224 0.1966213553393696 0.9804793912402851 0.003688797389667888 -0.3374031293935553 0.9413530267913594 0.01266054751111889 -0.3617188438700049 0.9322012596677101 -0.01266054751111889 0.3617188438700049 -0.9322012596677101 -0.003688797389667888 0.3374031293935553 -0.9413530267913594 0.0004538475399847224 -0.1966213553393696 -0.9804793912402851 0.0003336166368011087 0.1964552482294163 0.9805127353293572 -0.0003336166368011087 -0.1964552482294163 -0.9805127353293572 0.0003352725620566191 0.3318817225163497 0.9433209474255778 -0.0003352725620566191 -0.3318817225163497 -0.9433209474255778 0.0003284351731852359 0.3318825095467581 0.9433206729353932 -0.0003284351731852359 -0.3318825095467581 -0.9433206729353932 0.0002910058735337027 0.1928548670595222 0.9812272497067311 -0.0002910058735337027 -0.1928548670595222 -0.9812272497067311 0.0002860690277062792 0.1928586257396166 0.9812265124028894 -0.0002860690277062792 -0.1928586257396166 -0.9812265124028894 0.000310031474760802 0.07588661516819907 0.9971164051999135 -0.000310031474760802 -0.07588661516819907 -0.9971164051999135 0.0003107550880094139 0.07588637661018609 0.9971164231303444 -0.0003107550880094139 -0.07588637661018609 -0.9971164231303444 0.0003132233325970984 0.06673756753526176 0.9977705141818034 -0.0003132233325970984 -0.06673756753526176 -0.9977705141818034 0.000313622874468566 0.06673748783363555 0.9977705193872728 0.000313622874468566 0.06673748783363555 0.9977705193872728 -0.000313622874468566 -0.06673748783363555 -0.9977705193872728 -0.000313622874468566 -0.06673748783363555 -0.9977705193872728 -9.50595624338689e-005 -0.932277960717291 0.3617427192418518 1.239626849636202e-005 -0.9322856835495533 0.3617228277215512 -0.0001129214045189766 -0.9322766759051838 0.3617460252883749 0.0001129214045189766 0.9322766759051838 -0.3617460252883749 -1.239626849636202e-005 0.9322856835495533 -0.3617228277215512 9.50595624338689e-005 0.932277960717291 -0.3617427192418518 3.02581460467479e-005 -0.9322869661950879 0.3617195208268472 -3.02581460467479e-005 0.9322869661950879 -0.3617195208268472</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"34\" source=\"#ID1819\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1817\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1815\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1816\"/>\r\n                </vertices>\r\n                <triangles count=\"12\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1817\"/>\r\n                    <p>0 1 2 0 2 6 8 0 6 8 6 10 12 8 10 12 10 14 16 12 14 16 14 18 20 16 18 22 23 18 26 27 28 32 27 26</p>\r\n                </triangles>\r\n                <triangles count=\"12\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1817\"/>\r\n                    <p>3 4 5 7 3 5 7 5 9 11 7 9 11 9 13 15 11 13 15 13 17 19 15 17 19 17 21 19 24 25 29 30 31 31 30 33</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1820\">\r\n            <mesh>\r\n                <source id=\"ID1821\">\r\n                    <float_array count=\"312\" id=\"ID1824\">0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.555822491645813 1.421113967895508 -0.3582329750061035 0.555822491645813 1.421113967895508 -0.3582329750061035 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.555822491645813 1.421113967895508 -0.3582329750061035 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555822491645813 1.421113967895508 -0.3582329750061035 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.555831253528595 1.172155499458313 -0.3127322494983673 0.555831253528595 1.172155499458313 -0.3127322494983673 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.555831253528595 1.172155499458313 -0.3127322494983673 0.555831253528595 1.172155499458313 -0.3127322494983673 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299354195594788 0.6068390607833862 -0.3397958278656006</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"104\" source=\"#ID1824\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1822\">\r\n                    <float_array count=\"312\" id=\"ID1825\">-0.9999999848904151 3.528278127642576e-005 0.0001702183750348007 -0.9999999821275435 4.077827133365155e-005 0.0001846132324601768 -0.9999999828207767 4.598721379066316e-005 0.0001795650924393674 0.9999999828207767 -4.598721379066316e-005 -0.0001795650924393674 0.9999999821275435 -4.077827133365155e-005 -0.0001846132324601768 0.9999999848904151 -3.528278127642576e-005 -0.0001702183750348007 -0.0001570206413457278 0.6874668076573934 -0.7262157831621885 0.007030060403267907 0.6890189558672211 -0.7247092221756054 0.04815427865322053 0.9349903218087026 -0.351389048735795 -0.04815427865322053 -0.9349903218087026 0.351389048735795 -0.007030060403267907 -0.6890189558672211 0.7247092221756054 0.0001570206413457278 -0.6874668076573934 0.7262157831621885 -0.0003006440224052878 0.1288144224115145 -0.9916686715793536 -0.0003007162018480404 0.1287931075008599 -0.9916714400596791 0.0003007162018480404 -0.1287931075008599 0.9916714400596791 0.0003006440224052878 -0.1288144224115145 0.9916686715793536 -0.9999999832730073 5.485520590614737e-005 0.000174484646019524 0.9999999832730073 -5.485520590614737e-005 -0.000174484646019524 0.06111545261249659 0.9359016075152975 -0.3469194178800774 -0.06111545261249659 -0.9359016075152975 0.3469194178800774 -0.000347024791685719 -0.1791548186261827 -0.9838208325385338 0.000347024791685719 0.1791548186261827 0.9838208325385338 -0.9999998851838614 4.645765363971029e-005 0.0004769422924880472 0.9999998851838614 -4.645765363971029e-005 -0.0004769422924880472 0.003744679559962774 -0.3379545967345152 0.9411549648814507 -0.05464788827610732 -0.6584735395667153 0.7506172166939976 -0.04204452399270275 -0.6611961254129715 0.7490340057307822 0.04204452399270275 0.6611961254129715 -0.7490340057307822 0.05464788827610732 0.6584735395667153 -0.7506172166939976 -0.003744679559962774 0.3379545967345152 -0.9411549648814507 0.9999999821001934 -3.099181584322151e-005 -0.0001866524055217305 0.9999999871170857 -3.304050953679614e-005 -0.0001570800856432446 0.9999999834183203 -4.065045476826068e-005 -0.0001775130975463934 -0.9999999834183203 4.065045476826068e-005 0.0001775130975463934 -0.9999999871170857 3.304050953679614e-005 0.0001570800856432446 -0.9999999821001934 3.099181584322151e-005 0.0001866524055217305 0.9999999066122413 -4.146598711928248e-005 -0.0004301814508853706 0.9999999864921676 -7.054760133948506e-005 -0.0001484543718766534 -0.9999999864921676 7.054760133948506e-005 0.0001484543718766534 -0.9999999066122413 4.146598711928248e-005 0.0004301814508853706 0.001461077543801844 -0.1787827834529962 -0.98388748421413 -0.001461077543801844 0.1787827834529962 0.98388748421413 -0.9999997899934668 -6.887446674136239e-006 0.0006480475176959769 0.9999997899934668 6.887446674136239e-006 -0.0006480475176959769 0.01272641420307216 -0.3622788561835054 0.9319828693403665 -0.01272641420307216 0.3622788561835054 -0.9319828693403665 0.9999998255747505 7.504722018172481e-006 -0.0005905879676731446 -0.9999998255747505 -7.504722018172481e-006 0.0005905879676731446 0.02687724453678354 -0.2300407755504435 -0.9728097734450761 -0.02687724453678354 0.2300407755504435 0.9728097734450761 -0.9999999628618436 1.707942303663736e-005 0.0002720011119534417 0.9999999628618436 -1.707942303663736e-005 -0.0002720011119534417 0.9999999625126778 -1.855958253013337e-005 -0.0002731852579091885 -0.9999999625126778 1.855958253013337e-005 0.0002731852579091885 0.02759868326011885 -0.2306650373348312 -0.9726417394054341 -0.02759868326011885 0.2306650373348312 0.9726417394054341 -0.9999999667524542 1.376135579283297e-005 0.0002574989626878153 0.9999999667524542 -1.376135579283297e-005 -0.0002574989626878153 0.9999999654584074 -1.64977949172472e-005 -0.000262318521738804 -0.9999999654584074 1.64977949172472e-005 0.000262318521738804 0.0006684749033927384 -0.1435045057193308 -0.989649437922113 -0.0006684749033927384 0.1435045057193308 0.989649437922113 -0.9999999599982802 2.18659309668192e-005 0.0002820023393009842 0.9999999599982802 -2.18659309668192e-005 -0.0002820023393009842 0.9999999604701944 -2.058008749922922e-005 -0.0002804212366822801 -0.9999999604701944 2.058008749922922e-005 0.0002804212366822801 0.9999999523663518 -1.982392295917662e-005 -0.0003080167310226706 -0.9999999523663518 1.982392295917662e-005 0.0003080167310226706 -0.0003975532815431017 -0.1436292508536076 -0.9896314870953833 0.0003975532815431017 0.1436292508536076 0.9896314870953833 -0.9999999522757483 2.199274651290159e-005 0.0003081636260085259 0.9999999522757483 -2.199274651290159e-005 -0.0003081636260085259 0.9999999468635423 -2.330866435320481e-005 -0.0003251609124248027 -0.9999999468635423 2.330866435320481e-005 0.0003251609124248027 -0.0002588876947958197 0.3705342992523084 -0.9288187476869545 0.0002588876947958197 -0.3705342992523084 0.9288187476869545 -0.9999999528133073 2.047393718783433e-005 0.000306519495778921 0.9999999528133073 -2.047393718783433e-005 -0.000306519495778921 0.9999999691223772 4.803574051412936e-005 -0.0002438192210273459 0.9999999467611762 -2.370677477091507e-005 -0.0003254468214559952 -0.9999999467611762 2.370677477091507e-005 0.0003254468214559952 -0.9999999691223772 -4.803574051412936e-005 0.0002438192210273459 -0.0002554135440773512 0.3704180693355161 -0.9288651078997802 0.0002554135440773512 -0.3704180693355161 0.9288651078997802 -0.9999999529147998 2.039539899707468e-005 0.0003061934457488081 -0.9999999739713007 -4.46492633153544e-005 0.0002237495055216183 0.9999999739713007 4.46492633153544e-005 -0.0002237495055216183 0.9999999529147998 -2.039539899707468e-005 -0.0003061934457488081 0.999999979842059 0.0001062569116814978 -0.0001703682780391255 -0.999999979842059 -0.0001062569116814978 0.0001703682780391255 -0.0001347276003381009 0.7648908936276634 -0.6441598425033559 0.0001347276003381009 -0.7648908936276634 0.6441598425033559 -0.9999999830989202 -9.836897367025223e-005 0.0001553245127247652 -0.9999999527965546 2.032403094106207e-005 0.0003065841196284575 0.9999999527965546 -2.032403094106207e-005 -0.0003065841196284575 0.9999999830989202 9.836897367025223e-005 -0.0001553245127247652 0.9999999817559017 0.0001665683458724161 -9.350498646018241e-005 -0.9999999817559017 -0.0001665683458724161 9.350498646018241e-005 -0.0001339321159678741 0.7648909999718571 -0.6441597163935671 -0.0001339321159678741 0.7648909999718571 -0.6441597163935671 0.0001339321159678741 -0.7648909999718571 0.6441597163935671 0.0001339321159678741 -0.7648909999718571 0.6441597163935671 -0.9999999845720291 -0.0001541243402943206 8.427116555330488e-005 0.9999999845720291 0.0001541243402943206 -8.427116555330488e-005</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"104\" source=\"#ID1825\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1823\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1821\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1822\"/>\r\n                </vertices>\r\n                <triangles count=\"80\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1823\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 6 12 13 14 15 11 16 0 2 3 5 17 8 7 18 19 10 9 6 13 7 10 14 11 12 20 13 14 21 15 22 0 16 17 5 23 24 25 26 27 28 29 30 31 32 33 34 35 31 36 37 38 39 34 12 40 20 21 41 15 42 22 16 17 23 43 44 24 26 27 29 45 31 37 32 33 38 34 36 46 37 38 47 39 20 40 48 49 41 21 50 22 42 43 23 51 36 52 46 47 53 39 40 54 48 49 55 41 56 50 42 43 51 57 52 58 46 47 59 53 48 54 60 61 55 49 62 50 56 57 51 63 52 64 58 59 65 53 66 64 52 53 65 67 54 68 60 61 69 55 62 70 50 51 71 63 66 72 64 65 73 67 60 68 74 75 69 61 76 70 62 63 71 77 78 79 66 67 80 81 68 82 74 75 83 69 84 85 70 71 86 87 78 88 72 73 89 81 90 74 82 83 75 91 92 85 93 94 86 95 96 88 78 81 89 97 98 99 82 83 100 101 92 102 85 86 103 95</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1826\">\r\n            <mesh>\r\n                <source id=\"ID1827\">\r\n                    <float_array count=\"96\" id=\"ID1830\">0.5299191474914551 1.336438298225403 -0.337350994348526 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1830\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1828\">\r\n                    <float_array count=\"96\" id=\"ID1831\">-0.0004200498066727247 0.1960606869999712 0.9805916737211566 0.003744679559962774 -0.3379545967345152 0.9411549648814507 0.01272641420307216 -0.3622788561835054 0.9319828693403665 -0.01272641420307216 0.3622788561835054 -0.9319828693403665 -0.003744679559962774 0.3379545967345152 -0.9411549648814507 0.0004200498066727247 -0.1960606869999712 -0.9805916737211566 0.0003692586280801227 0.195873020390035 0.9806291977762801 -0.0003692586280801227 -0.195873020390035 -0.9806291977762801 0.0003828121807958291 0.331324506299434 0.9435167857437781 -0.0003828121807958291 -0.331324506299434 -0.9435167857437781 0.0003733136420398944 0.3313237310209041 0.9435170617955525 -0.0003733136420398944 -0.3313237310209041 -0.9435170617955525 0.0002729107498873451 0.1922976988738959 0.9813365989952312 -0.0002729107498873451 -0.1922976988738959 -0.9813365989952312 0.0002652170170330006 0.1922754556501566 0.981340959511249 -0.0002652170170330006 -0.1922754556501566 -0.981340959511249 0.0003329080878166919 0.0752994296670667 0.9971609123225897 -0.0003329080878166919 -0.0752994296670667 -0.9971609123225897 0.000334031071719432 0.0752984514242747 0.9971609858174103 -0.000334031071719432 -0.0752984514242747 -0.9971609858174103 0.000318167767874384 0.06614990713798376 0.9978096454509285 -0.000318167767874384 -0.06614990713798376 -0.9978096454509285 0.0003158363779133048 0.06615037220994488 0.9978096153594974 -0.0003158363779133048 -0.06615037220994488 -0.9978096153594974 -1.105960625052409e-005 -0.9323222872788488 0.361628473050479 1.388113031852923e-006 -0.9323231810389382 0.3616261689860238 -1.312822105434077e-005 -0.9323221387354551 0.3616288559440424 1.312822105434077e-005 0.9323221387354551 -0.3616288559440424 -1.388113031852923e-006 0.9323231810389382 -0.3616261689860238 1.105960625052409e-005 0.9323222872788488 -0.361628473050479 3.456675991517009e-006 -0.93232332954951 0.3616257860907698 -3.456675991517009e-006 0.93232332954951 -0.3616257860907698</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"32\" source=\"#ID1831\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1829\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1827\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1828\"/>\r\n                </vertices>\r\n                <triangles count=\"12\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1829\"/>\r\n                    <p>0 1 2 0 2 6 8 0 6 8 6 10 12 8 10 12 10 14 16 12 14 16 14 18 20 16 18 22 20 18 24 25 26 30 25 24</p>\r\n                </triangles>\r\n                <triangles count=\"12\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1829\"/>\r\n                    <p>3 4 5 7 3 5 7 5 9 11 7 9 11 9 13 15 11 13 15 13 17 19 15 17 19 17 21 19 21 23 27 28 29 29 28 31</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1832\">\r\n            <mesh>\r\n                <source id=\"ID1833\">\r\n                    <float_array count=\"174\" id=\"ID1836\">0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 -0.002306933514773846 -0.9634888768196106 -0.3111290037631989 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 -0.002306933514773846 -0.9634888768196106 -0.3111290037631989 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 -0.005092551000416279 -0.0468074306845665 -0.3878971040248871 -0.005092551000416279 -0.0468074306845665 -0.3878971040248871 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1836\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1834\">\r\n                    <float_array count=\"174\" id=\"ID1837\">0.8471696031554058 0.04689773012802803 0.5292487755284382 0.4401502978273895 0.07678570680066062 0.8946349370293916 0.8592402655707703 0.04433593462399087 0.5096474182441124 -0.8592402655707703 -0.04433593462399087 -0.5096474182441124 -0.4401502978273895 -0.07678570680066062 -0.8946349370293916 -0.8471696031554058 -0.04689773012802803 -0.5292487755284382 0.02213461350851198 -0.9838296001132999 -0.1777340058225582 0.02214728878768746 -0.9838135953026865 -0.1778209979078871 0.02212201164671536 -0.9827055370523353 -0.1838489707542149 -0.02212201164671536 0.9827055370523353 0.1838489707542149 -0.02214728878768746 0.9838135953026865 0.1778209979078871 -0.02213461350851198 0.9838296001132999 0.1777340058225582 0.8581777584640484 -0.0400658295849563 -0.511786737007995 0.8557850237502858 -0.04058963644497733 -0.5157368268196364 0.4572619699902916 -0.07040587592748571 -0.8865407511420336 -0.4572619699902916 0.07040587592748571 0.8865407511420336 -0.8557850237502858 0.04058963644497733 0.5157368268196364 -0.8581777584640484 0.0400658295849563 0.511786737007995 0.5333584259121058 0.07204941364349686 0.8428153246721306 -0.5333584259121058 -0.07204941364349686 -0.8428153246721306 0.02213103454147481 -0.9827021412438243 -0.1838660352129422 -0.02213103454147481 0.9827021412438243 0.1838660352129422 0.02216710073291421 -0.9848868105875184 -0.1717748234632854 -0.02216710073291421 0.9848868105875184 0.1717748234632854 -0.02205767583973393 0.9816602697034845 0.1893583212384166 -0.02208675936962806 0.9816633185654566 0.1893391244397288 -0.0220711862311958 0.981660700387417 0.1893545142140372 0.0220711862311958 -0.981660700387417 -0.1893545142140372 0.02208675936962806 -0.9816633185654566 -0.1893391244397288 0.02205767583973393 -0.9816602697034845 -0.1893583212384166 0.5203171375320179 -0.06743066470191132 -0.8513067495611353 -0.5203171375320179 0.06743066470191132 0.8513067495611353 -0.02208499222937724 0.9816640967406718 0.189335295939636 0.02208499222937724 -0.9816640967406718 -0.189335295939636 -0.4744560974523423 0.07357336721613098 0.8771991628055591 0.4744560974523423 -0.07357336721613098 -0.8771991628055591 0.02215434434420591 -0.9838320356359597 -0.1777180651568155 -0.02215434434420591 0.9838320356359597 0.1777180651568155 0.02216599408817481 -0.9848867473709602 -0.1717753287266057 0.02217588882505957 -0.9848855426448274 -0.1717809589099522 -0.02217588882505957 0.9848855426448274 0.1717809589099522 -0.02216599408817481 0.9848867473709602 0.1717753287266057 -0.02204966620218046 0.9816549723349188 0.1893867141868779 0.02204966620218046 -0.9816549723349188 -0.1893867141868779 -0.4488827510890986 -0.07142531229437267 -0.8907315535773579 0.4488827510890986 0.07142531229437267 0.8907315535773579 -0.02207713179279975 0.9816638088999858 0.1893377050346172 0.02207713179279975 -0.9816638088999858 -0.1893377050346172 -0.5213050402861289 0.0701336647363395 0.8504835824652514 0.5213050402861289 -0.0701336647363395 -0.8504835824652514 -0.9946912270840029 0.006756099022091487 0.1026826075249562 0.9946912270840029 -0.006756099022091487 -0.1026826075249562 -0.5731013847754379 -0.06790698381044293 -0.8166660543442733 0.5731013847754379 0.06790698381044293 0.8166660543442733 -0.02207088802970789 0.981657733885077 0.1893699274045254 0.02207088802970789 -0.981657733885077 -0.1893699274045254 -0.9964745463580103 -0.007490646736988896 -0.08356056888305249 0.9964745463580103 0.007490646736988896 0.08356056888305249</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"58\" source=\"#ID1837\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1835\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1833\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1834\"/>\r\n                </vertices>\r\n                <triangles count=\"48\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1835\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 18 2 3 19 4 8 7 20 21 10 9 6 22 7 10 23 11 24 25 26 27 28 29 30 12 14 15 17 31 26 25 32 33 28 27 34 18 1 4 19 35 7 36 20 21 37 10 38 39 7 10 40 41 42 24 26 27 29 43 14 44 30 31 45 15 26 32 46 47 33 27 34 48 18 19 49 35 7 39 36 37 40 10 34 50 48 49 51 35 44 52 30 31 53 45 42 26 54 55 27 43 54 26 46 47 27 55 50 52 56 57 53 51 48 50 56 57 51 49 56 52 44 45 53 57</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1838\">\r\n            <mesh>\r\n                <source id=\"ID1839\">\r\n                    <float_array count=\"450\" id=\"ID1842\">0.05343644320964813 0.1741137206554413 -0.30791175365448 0.03954382240772247 0.173693522810936 -0.3557284474372864 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.1620966047048569 0.173693522810936 -0.3075017929077148 0.1620966047048569 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 0.03954382240772247 0.173693522810936 -0.3557284474372864 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 0.05343644320964813 -0.0231819823384285 -0.30791175365448 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 0.05343644320964813 -0.0231819823384285 -0.30791175365448 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.4001826941967011 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.4001826941967011 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 0.004646843299269676 0.1741137206554413 -0.4509885311126709 0.004646843299269676 0.1741137206554413 -0.4509885311126709 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 0.004646843299269676 0.1741137206554413 -0.4509885311126709 0.004646843299269676 0.1741137206554413 -0.4509885311126709 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.04882822185754776 -0.08871229737997055 -0.4001826941967011 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"150\" source=\"#ID1842\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1840\">\r\n                    <float_array count=\"450\" id=\"ID1843\">-0.0008524021846609801 -0.9999934579831282 0.003515309582559555 -0.000674593647413681 -0.9999959026174352 0.00278202655478913 -0.0008524021846609801 -0.9999934579831282 0.003515309582559555 -0.0002018871823877642 -0.9999996330231196 0.0008325834443114648 0.0002018871823877642 0.9999996330231196 -0.0008325834443114648 0.0008524021846609801 0.9999934579831282 -0.003515309582559555 0.000674593647413681 0.9999959026174352 -0.00278202655478913 0.0008524021846609801 0.9999934579831282 -0.003515309582559555 -0.002064684151654042 0.9999612923901422 0.008552824141210507 -9.923755920933442e-005 0.99999991058037 0.0004110853427341175 -0.002064684151654042 0.9999612923901422 0.008552824141210507 0.00152764242395126 0.999998774964976 0.0003411409852822999 9.923755920933442e-005 -0.99999991058037 -0.0004110853427341175 0.002064684151654042 -0.9999612923901422 -0.008552824141210507 -0.00152764242395126 -0.999998774964976 -0.0003411409852822999 0.002064684151654042 -0.9999612923901422 -0.008552824141210507 0 -1 0 -0 1 -0 0 1 0 -0 -1 -0 -0.3872695190778213 -0.0002125953994443339 0.9219665256376879 -0.680525551593799 0.001113914692902286 0.7327235036642488 -0.3903344446072451 -0.002071356399789515 0.9206708048134352 0.3903344446072451 0.002071356399789515 -0.9206708048134352 0.680525551593799 -0.001113914692902286 -0.7327235036642488 0.3872695190778213 0.0002125953994443339 -0.9219665256376879 0 1 0 -0 -1 -0 -0.6902235729625602 -3.497933862440305e-006 0.723596171434428 -0.993564706888407 0.001753445859980048 0.1132523670983072 0.993564706888407 -0.001753445859980048 -0.1132523670983072 0.6902235729625602 3.497933862440305e-006 -0.723596171434428 -0.3854140957586625 0.0009109952854830883 0.9227432713805733 -0.3854140957586625 0.0009109952854830883 0.9227432713805733 0.3854140957586625 -0.0009109952854830883 -0.9227432713805733 0.3854140957586625 -0.0009109952854830883 -0.9227432713805733 0 1 0 -0 -1 -0 -0.9950096440210436 -0.000943752455602703 0.09977433355537235 -0.7394914584646463 0.0002843368189138564 -0.673165880010569 0.7394914584646463 -0.0002843368189138564 0.673165880010569 0.9950096440210436 0.000943752455602703 -0.09977433355537235 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.0009595663710950525 -0.9999994004879673 0.0005274998439833328 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.0002623361050891516 -0.9999998535440419 0.0004733832091642585 0.0009595663710950525 0.9999994004879673 -0.0005274998439833328 0.00578959802049866 0.99992866491342 -0.01044727903459306 0.0002623361050891516 0.9999998535440419 -0.0004733832091642585 0.00578959802049866 0.99992866491342 -0.01044727903459306 0.00578959802049866 0.99992866491342 -0.01044727903459306 -3.911876577611277e-008 -1.861256100673479e-017 0.9999999999999991 -0.707106372870083 -9.672022582894041e-018 0.7071071895027762 -3.911876573786155e-008 -4.242689383461759e-017 0.9999999999999992 3.911876573786155e-008 4.242689383461759e-017 -0.9999999999999992 0.707106372870083 9.672022582894041e-018 -0.7071071895027762 3.911876577611277e-008 1.861256100673479e-017 -0.9999999999999991 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0.0008523534733143322 0.999999594506523 -0.0002906550293067631 -0.0008523534733143322 -0.999999594506523 0.0002906550293067631 -0.7405281290730719 0.001610344907837274 -0.6720234347407936 -0.06779187227960655 0.001877425022851561 -0.9976977184138035 0.06779187227960655 -0.001877425022851561 0.9976977184138035 0.7405281290730719 -0.001610344907837274 0.6720234347407936 0 -1 0 -0 1 -0 -0.707106372870083 1.41422847206689e-017 0.7071071895027762 0.707106372870083 -1.41422847206689e-017 -0.7071071895027762 0.7071061114800435 -1.414227721279664e-017 0.7071074508924174 -0.7071061114800435 1.414227721279664e-017 -0.7071074508924174 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.003294124417085093 0.9999939434455599 -0.001123306068390831 -0.003294124417085093 -0.9999939434455599 0.001123306068390831 -0.07063814495457572 0.002857620332911681 -0.9974979130220821 0.3466598206120948 0.002001151010611005 -0.9379887868028183 -0.3466598206120948 -0.002001151010611005 0.9379887868028183 0.07063814495457572 -0.002857620332911681 0.9974979130220821 0 -1 0 -0 1 -0 0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 -0.9999999999993621 1.414238529049367e-017 -1.129588202910892e-006 0.9999999999993621 -1.414238529049367e-017 1.129588202910892e-006 0 -1 0 -0 1 -0 0.7071061114800435 -1.414227721279663e-017 0.7071074508924172 -0.7071061114800435 1.414227721279663e-017 -0.7071074508924172 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.3501992826352902 0.0007580898147801481 -0.9366749103832989 0.4835462335726444 0.0008799597322555606 -0.8753183796017191 -0.4835462335726444 -0.0008799597322555606 0.8753183796017191 -0.3501992826352902 -0.0007580898147801481 0.9366749103832989 0.001901451832417029 -0.9999977322604323 -0.0009591428056673119 -0.001901451832417029 0.9999977322604323 0.0009591428056673119 0 -1 0 -0 1 -0 -0.999999999999362 -1.733948662692664e-018 -1.129588202930018e-006 0.999999999999362 1.733948662692664e-018 1.129588202930018e-006 0 -1 0 -0 1 -0 0.9999999999998042 0 -6.259043495723284e-007 -0.9999999999998042 -0 6.259043495723284e-007 0 1 0 -0 -1 -0 -0.7071048312562522 -1.240838486938628e-017 -0.7071087311114657 0.7071048312562522 1.240838486938628e-017 0.7071087311114657 0.9999999999998041 0 -6.259043496297053e-007 -0.9999999999998041 -0 6.259043496297053e-007 0 1 0 -0 -1 -0 0.4843937839313932 0 -0.8748500797786023 -0.4843937839313932 -0 0.8748500797786023 0.002267514730237025 -0.9999957149613051 -0.001851603622948137 0.004312416916715417 -0.9999874718538377 -0.002541494778023185 -0.004312416916715417 0.9999874718538377 0.002541494778023185 -0.002267514730237025 0.9999957149613051 0.001851603622948137 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 -0.7071048312562522 -2.828468600615452e-017 -0.7071087311114657 -2.477511845108208e-007 -1.414233203803552e-017 -0.9999999999999691 2.477511845108208e-007 1.414233203803552e-017 0.9999999999999691 0.7071048312562522 2.828468600615452e-017 0.7071087311114657 0.7071047784991345 0 -0.7071087838682884 -0.7071047784991345 -0 0.7071087838682884 0.7071047784991347 0 -0.7071087838682884 -0.7071047784991347 -0 0.7071087838682884 -0.001955581172541138 -0.9999979967544046 -0.0004268365677167187 0.001955581172541138 0.9999979967544046 0.0004268365677167187 0 -1 0 -0 1 -0 -2.477511845299464e-007 -1.414233203803551e-017 -0.9999999999999691 2.477511845299464e-007 1.414233203803551e-017 0.9999999999999691</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"150\" source=\"#ID1843\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1841\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1839\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1840\"/>\r\n                </vertices>\r\n                <triangles count=\"132\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1841\"/>\r\n                    <p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 11 10 9 12 13 14 13 12 15 16 1 3 4 6 17 9 18 11 14 19 12 20 21 22 23 24 25 18 26 11 14 27 19 21 28 29 30 31 24 20 32 21 32 33 21 28 21 33 34 24 31 24 34 35 24 35 25 26 36 11 14 37 27 29 38 39 40 41 30 28 38 29 30 41 31 42 43 44 44 43 45 46 45 43 47 48 49 48 47 50 50 47 51 52 53 54 55 56 57 58 59 60 61 62 63 36 64 11 14 65 37 39 66 67 68 69 40 38 66 39 40 69 41 70 46 43 47 49 71 72 53 52 57 56 73 52 54 74 75 55 57 76 59 58 63 62 77 59 78 60 61 79 62 64 80 11 14 81 65 67 82 83 84 85 68 66 82 67 68 85 69 86 70 43 47 71 87 88 89 90 91 92 93 53 72 94 95 73 56 96 88 90 91 93 97 74 54 98 99 55 75 76 100 59 62 101 77 59 102 78 79 103 62 83 104 105 106 107 84 83 82 104 107 85 84 108 86 43 47 87 109 88 110 89 92 111 93 72 112 94 95 113 73 114 88 96 97 93 115 116 74 98 99 75 117 100 118 59 62 119 101 94 112 120 121 113 95 122 116 98 99 117 123 59 124 102 103 125 62 105 104 126 127 107 106 128 129 43 108 43 129 130 47 109 47 130 131 88 132 110 111 133 93 114 134 88 93 135 115 118 124 59 62 125 119 120 136 137 138 139 121 112 136 120 121 139 113 140 116 122 123 117 141 142 140 122 123 141 143 43 144 128 129 128 144 145 131 130 131 145 47 146 132 88 93 133 147 134 146 88 93 147 135 137 148 142 143 149 138 137 136 148 149 139 138 142 148 140 141 149 143</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1844\">\r\n            <mesh>\r\n                <source id=\"ID1845\">\r\n                    <float_array count=\"42\" id=\"ID1848\">0.001038577407598496 0.171336904168129 -0.3997860848903656 -0.04898601025342941 0.171336904168129 -0.3997860848903656 -0.02397382631897926 0.171336904168129 -0.3564637303352356 -0.02397382631897926 0.171336904168129 -0.3564637303352356 -0.04898601025342941 0.171336904168129 -0.3997860848903656 0.001038577407598496 0.171336904168129 -0.3997860848903656 -0.02397382631897926 0.171336904168129 -0.4431087970733643 -0.02397382631897926 0.171336904168129 -0.4431087970733643 -0.07399865239858627 0.171336904168129 -0.3564637303352356 -0.07399865239858627 0.171336904168129 -0.3564637303352356 -0.07399865239858627 0.171336904168129 -0.4431087970733643 -0.07399865239858627 0.171336904168129 -0.4431087970733643 -0.09901061654090881 0.171336904168129 -0.3997860848903656 -0.09901061654090881 0.171336904168129 -0.3997860848903656</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"14\" source=\"#ID1848\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1846\">\r\n                    <float_array count=\"42\" id=\"ID1849\">0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"14\" source=\"#ID1849\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1847\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1845\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1846\"/>\r\n                </vertices>\r\n                <triangles count=\"12\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1847\"/>\r\n                    <p>0 1 2 3 4 5 0 6 1 4 7 5 2 1 8 9 4 3 6 10 1 4 11 7 1 12 8 9 13 4 1 10 12 13 11 4</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1850\">\r\n            <mesh>\r\n                <source id=\"ID1851\">\r\n                    <float_array count=\"396\" id=\"ID1854\">-0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.170267701148987 -0.3140725195407867 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.5808534622192383 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"132\" source=\"#ID1854\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1852\">\r\n                    <float_array count=\"396\" id=\"ID1855\">-1.130159922583212e-006 1.949100471316308e-006 -0.9999999999974618 -4.267889876472928e-006 -0.3826802897704246 -0.9238808342004986 -1.1301334122519e-006 1.949057629495692e-006 -0.999999999997462 1.1301334122519e-006 -1.949057629495692e-006 0.999999999997462 4.267889876472928e-006 0.3826802897704246 0.9238808342004986 1.130159922583212e-006 -1.949100471316308e-006 0.9999999999974618 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 -4.267853575409275e-006 0.382683418680344 -0.9238795381698363 4.267853575409275e-006 -0.382683418680344 0.9238795381698363 -4.439926465004716e-006 -0.3826796682521984 -0.9238810916382445 4.439926465004716e-006 0.3826796682521984 0.9238810916382445 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -4.439913468692071e-006 0.3826840402307754 -0.9238792807141728 4.439913468692071e-006 -0.3826840402307754 0.9238792807141728 1 0 0 -1 -0 -0 -9.580972100645668e-007 -0.7071018257267022 -0.7071117366110157 9.580972100645668e-007 0.7071018257267022 0.7071117366110157 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -9.580991023527817e-007 0.7071043423311452 -0.7071092200328891 9.580991023527817e-007 -0.7071043423311452 0.7071092200328891 1 0 0 -1 -0 -0 -1.121026176803332e-017 -0.7071022878340889 -0.7071112745104529 1.121026176803332e-017 0.7071022878340889 0.7071112745104529 -1 0 0 1 -0 -0 -5.484074183472452e-018 -0.923881106935747 -0.3826796313460895 5.484074183472452e-018 0.923881106935747 0.3826796313460895 -1 0 0 1 -0 -0 -2.89782612884685e-017 0.7071038802247908 -0.7071096821364028 2.89782612884685e-017 -0.7071038802247908 0.7071096821364028 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -2.144655999698515e-017 -0.9238811069357469 -0.3826796313460895 4.752124784497387e-018 -0.9999999999982547 -1.868370662626244e-006 -4.752124784497387e-018 0.9999999999982547 1.868370662626244e-006 2.144655999698515e-017 0.9238811069357469 0.3826796313460895 -1 0 0 1 -0 -0 -4.879379169258916e-017 0.9238800887855799 -0.3826820893973862 -5.354591770247694e-017 0.9238800887855798 -0.3826820893973862 5.354591770247694e-017 -0.9238800887855798 0.3826820893973862 4.879379169258916e-017 -0.9238800887855799 0.3826820893973862 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -9.503747639056373e-018 -0.9999999999982547 -1.868370662680292e-006 -1.506300306250552e-017 -0.9238824081403895 0.3826764899085318 1.506300306250552e-017 0.9238824081403895 -0.3826764899085318 9.503747639056373e-018 0.9999999999982547 1.868370662680292e-006 -1 0 0 1 -0 -0 -1.784295402865374e-017 0.9999999999982544 -1.868514494595799e-006 -4.160251598163036e-017 0.9999999999982544 -1.868514494577784e-006 4.160251598163036e-017 -0.9999999999982544 1.868514494577784e-006 1.784295402865374e-017 -0.9999999999982544 1.868514494595799e-006 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -2.456683227551504e-017 -0.9238824081403895 0.3826764899085318 0 -0.7071031150808818 0.707110447273206 -0 0.7071031150808818 -0.707110447273206 2.456683227551504e-017 0.9238824081403895 -0.3826764899085318 -1 0 0 1 -0 -0 2.456669184427625e-017 0.9238812049271341 0.3826793947711148 5.559188559376211e-018 0.9238812049271341 0.382679394771115 -5.559188559376211e-018 -0.9238812049271341 -0.382679394771115 -2.456669184427625e-017 -0.9238812049271341 -0.3826793947711148 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0 -0.3826838347087458 0.9238793658549851 0 -0.7071031150808818 0.707110447273206 -0 0.7071031150808818 -0.707110447273206 -0 0.3826838347087458 -0.9238793658549851 -1 0 0 1 -0 -0 1.121040847797749e-017 0.7071060718481682 0.7071074905242151 0 0.7071060718481682 0.7071074905242151 -0 -0.7071060718481682 -0.7071074905242151 -1.121040847797749e-017 -0.7071060718481682 -0.7071074905242151 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1.228357465642283e-017 3.170942685220934e-006 0.9999999999949726 0 -0.3826838347087458 0.9238793658549851 -0 0.3826838347087458 -0.9238793658549851 -1.228357465642283e-017 -3.170942685220934e-006 -0.9999999999949726 4.126187744361914e-017 0.3826861683731713 0.9238783992148861 3.005147520923364e-017 0.3826861683731713 0.9238783992148861 -3.005147520923364e-017 -0.3826861683731713 -0.9238783992148861 -4.126187744361914e-017 -0.3826861683731713 -0.9238783992148861 1 0 0 -1 -0 -0 1.228357465642284e-017 3.170942685292997e-006 0.9999999999949726 -1.228357465642284e-017 -3.170942685292997e-006 -0.9999999999949726</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"132\" source=\"#ID1855\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1853\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1851\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1852\"/>\r\n                </vertices>\r\n                <triangles count=\"128\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1853\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 16 7 6 11 10 17 6 8 18 19 9 11 20 21 22 23 24 25 26 0 12 13 5 27 20 28 21 24 29 25 1 30 14 15 31 4 32 16 6 11 17 33 6 18 34 35 19 11 22 21 36 37 24 23 38 26 12 13 27 39 28 40 21 24 41 29 14 30 42 43 31 15 44 32 6 11 33 45 42 30 46 47 31 43 6 34 48 49 35 11 50 26 38 39 27 51 36 21 52 53 24 37 40 54 21 24 55 41 56 44 6 11 45 57 58 46 59 60 47 61 58 42 46 47 43 61 6 48 62 63 49 11 64 50 65 66 51 67 50 38 65 66 39 51 52 21 68 69 24 53 54 70 21 24 71 55 72 56 6 11 57 73 74 59 75 76 60 77 74 58 59 60 61 77 78 6 62 63 11 79 80 64 81 82 67 83 64 65 81 82 66 67 21 84 68 69 85 24 70 86 21 24 87 71 88 72 6 11 73 89 90 75 91 92 76 93 90 74 75 76 77 93 94 6 78 79 11 95 96 80 97 98 83 99 80 81 97 98 82 83 21 100 84 85 101 24 86 102 21 24 103 87 104 88 6 11 89 105 91 106 107 108 109 92 107 90 91 92 93 108 110 6 94 95 11 111 112 96 113 114 99 115 96 97 113 114 98 99 21 116 100 101 117 24 102 118 21 24 119 103 104 6 110 111 11 105 106 120 121 122 123 109 107 106 121 122 109 108 124 112 125 126 115 127 125 112 113 114 115 126 21 128 116 117 129 24 21 118 128 129 119 24 120 124 130 131 127 123 121 120 130 131 123 122 130 124 125 126 127 131</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1856\">\r\n            <mesh>\r\n                <source id=\"ID1857\">\r\n                    <float_array count=\"402\" id=\"ID1860\">-0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6596336960792542 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"134\" source=\"#ID1860\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1858\">\r\n                    <float_array count=\"402\" id=\"ID1861\">-1.2916044995839e-006 -1.622831494590891e-006 -0.9999999999978491 -4.877612574350995e-006 -0.3826880997193461 -0.9238775992031654 -1.291606467001254e-006 -1.622828384775344e-006 -0.9999999999978491 1.291606467001254e-006 1.622828384775344e-006 0.9999999999978491 4.877612574350995e-006 0.3826880997193461 0.9238775992031654 1.2916044995839e-006 1.622831494590891e-006 0.9999999999978491 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 -4.877617766074997e-006 0.3826857653536466 -0.923878566139459 4.877617766074997e-006 -0.3826857653536466 0.923878566139459 -5.074247172752549e-006 -0.3826873893609037 -0.9238778934460917 5.074247172752549e-006 0.3826873893609037 0.9238778934460917 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -5.07425111606672e-006 0.3826864757063207 -0.9238782718982666 5.07425111606672e-006 -0.3826864757063207 0.9238782718982666 1 0 0 -1 -0 -0 -1.094970217341462e-006 -0.7071035322409311 -0.7071100301163883 1.094970217341462e-006 0.7071035322409311 0.7071100301163883 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -1.094968152871253e-006 0.7071038429309827 -0.7071097194290553 1.094968152871253e-006 -0.7071038429309827 0.7071097194290553 1 0 0 -1 -0 -0 -2.897845197819312e-017 -0.7071040603653174 -0.7071095019973086 2.897845197819312e-017 0.7071040603653174 0.7071095019973086 -1 0 0 1 -0 -0 -4.126238201343536e-017 -0.9238751717500278 -0.3826939600044098 4.126238201343536e-017 0.9238751717500278 0.3826939600044098 -1 0 0 1 -0 -0 -3.553734694154178e-017 0.7071033148137366 -0.7071102475423658 3.553734694154178e-017 -0.7071033148137366 0.7071102475423658 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -3.175837688221498e-017 -0.9238751717500278 -0.3826939600044099 2.734678571659092e-017 -0.9999999999996858 -7.92724898079175e-007 -2.734678571659092e-017 0.9999999999996858 7.92724898079175e-007 3.175837688221498e-017 0.9238751717500278 0.3826939600044099 -1 0 0 1 -0 -0 3.453826897195781e-017 0.9238801307652029 -0.3826819880491786 3.112559068021542e-017 0.9238801307652028 -0.3826819880491787 -3.112559068021542e-017 -0.9238801307652028 0.3826819880491787 -3.453826897195781e-017 -0.9238801307652029 0.3826819880491786 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 2.259511444695752e-017 -0.9999999999996858 -7.92724898061159e-007 -2.700651582927052e-017 -0.923875444265542 0.3826933021143006 2.700651582927052e-017 0.923875444265542 -0.3826933021143006 -2.259511444695752e-017 0.9999999999996858 7.92724898061159e-007 -1 0 0 1 -0 -0 -2.456744429449738e-017 0.9999999999996858 -7.926638801005441e-007 -5.559435115472413e-018 0.9999999999996858 -7.926638801185601e-007 5.559435115472413e-018 -0.9999999999996858 7.926638801185601e-007 2.456744429449738e-017 -0.9999999999996858 7.926638801005441e-007 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -0.9999999999992996 1.093614454009465e-006 4.529891701655164e-007 0.9999999999992996 -1.093614454009465e-006 -4.529891701655164e-007 -3.005190997543079e-017 -0.9238754442655419 0.3826933021143006 -4.019040723039297e-017 -0.7071021262401992 0.7071114361022521 4.019040723039297e-017 0.7071021262401992 -0.7071114361022521 3.005190997543079e-017 0.9238754442655419 -0.3826933021143006 -1 0 0 1 -0 -0 0 0.923880341541087 0.3826814791885339 0 0.923880341541087 0.3826814791885339 -0 -0.923880341541087 -0.3826814791885339 -0 -0.923880341541087 -0.3826814791885339 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -0.9999999999995898 2.228600270075891e-012 9.059735365126267e-007 -0.9999999999999937 3.226053236698175e-014 1.132466397375109e-007 0.9999999999999937 -3.226053236698175e-014 -1.132466397375109e-007 0.9999999999995898 -2.228600270075891e-012 -9.059735365126267e-007 -2.898031124377796e-017 -0.3826897469708954 0.9238769168906387 -2.898017534171995e-017 -0.7071021262401992 0.7071114361022521 2.898017534171995e-017 0.7071021262401992 -0.7071114361022521 2.898031124377796e-017 0.3826897469708954 -0.9238769168906387 -0.9999999999992995 -1.093607939434975e-006 4.529875441586822e-007 0.9999999999992995 1.093607939434975e-006 -4.529875441586822e-007 6.557847939278634e-018 0.7071028024874713 0.7071107598632367 2.897940419550977e-017 0.7071028024874714 0.7071107598632367 -2.897940419550977e-017 -0.7071028024874714 -0.7071107598632367 -6.557847939278634e-018 -0.7071028024874713 -0.7071107598632367 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 0 -2.264975746200799e-007 0.9999999999999745 -2.898028982454418e-017 -0.3826896111443652 0.9238769731529056 2.898028982454418e-017 0.3826896111443652 -0.9238769731529056 -0 2.264975746200799e-007 -0.9999999999999745 -2.144780083289451e-017 0.3826859622291119 0.9238784846032399 5.725712895478056e-018 0.3826858264052466 0.9238785408637508 -5.725712895478056e-018 -0.3826858264052466 -0.9238785408637508 2.144780083289451e-017 -0.3826859622291119 -0.9238784846032399 1 0 0 -1 -0 -0 4.751911402923225e-018 -2.264972398285469e-007 0.9999999999999744 -4.751911402923225e-018 2.264972398285469e-007 -0.9999999999999744</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"134\" source=\"#ID1861\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1859\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1857\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1858\"/>\r\n                </vertices>\r\n                <triangles count=\"128\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1859\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 16 7 6 11 10 17 6 8 18 19 9 11 20 21 22 23 24 25 26 0 12 13 5 27 20 28 21 24 29 25 1 30 14 15 31 4 32 16 6 11 17 33 6 18 34 35 19 11 22 21 36 37 24 23 38 26 12 13 27 39 28 40 21 24 41 29 14 30 42 43 31 15 44 32 6 11 33 45 42 30 46 47 31 43 6 34 48 49 35 11 50 26 38 39 27 51 36 21 52 53 24 37 40 54 21 24 55 41 56 44 6 11 45 57 58 46 59 60 47 61 58 42 46 47 43 61 6 48 62 63 49 11 64 50 65 66 51 67 50 38 65 66 39 51 52 21 68 69 24 53 54 70 21 24 71 55 72 56 6 11 57 73 74 59 75 76 60 77 74 58 59 60 61 77 78 6 62 63 11 79 80 64 81 82 67 83 64 65 81 82 66 67 21 84 68 69 85 24 70 86 21 24 87 71 88 72 6 11 73 89 90 75 91 92 76 93 90 74 75 76 77 93 94 6 78 79 11 95 96 80 97 98 83 99 80 81 97 98 82 83 21 100 84 85 101 24 86 102 21 24 103 87 104 88 105 106 89 107 91 108 109 110 111 92 109 90 91 92 93 110 112 6 94 95 11 113 114 96 115 116 99 117 96 97 115 116 98 99 21 118 100 101 119 24 102 120 21 24 121 103 104 105 112 113 106 107 108 122 123 124 125 111 109 108 123 124 111 110 126 114 127 128 117 129 127 114 115 116 117 128 21 130 118 119 131 24 21 120 130 131 121 24 122 126 132 133 129 125 123 122 132 133 125 124 132 126 127 128 129 133</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1862\">\r\n            <mesh>\r\n                <source id=\"ID1863\">\r\n                    <float_array count=\"954\" id=\"ID1867\">0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4049413502216339 0.5701420903205872 -0.4031210839748383 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4049413502216339 0.5701420903205872 -0.4031210839748383 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4317043721675873 1.190332651138306 -0.07991550862789154 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4317043721675873 1.190332651138306 -0.07991550862789154 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4085270166397095 0.5722740888595581 -0.4163314998149872 0.4085270166397095 0.5722740888595581 -0.4163314998149872 0.4085270166397095 0.568010151386261 -0.3899107277393341 0.4085270166397095 0.568010151386261 -0.3899107277393341 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4183229506015778 0.5738347768783569 -0.4260024130344391 0.4183229506015778 0.5738347768783569 -0.4260024130344391 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4183229506015778 0.5664496421813965 -0.3802396655082703 0.4183229506015778 0.5664496421813965 -0.3802396655082703 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4317043721675873 0.5658783912658691 -0.3766999244689941 0.445085734128952 1.182167768478394 -0.05822398141026497 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 0.5658783912658691 -0.3766999244689941 0.445085734128952 1.198497414588928 -0.1016071438789368 0.445085734128952 1.198497414588928 -0.1016071438789368 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 0.5744060277938843 -0.42954221367836 0.4317043721675873 0.5744060277938843 -0.42954221367836 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.445085734128952 0.5664496421813965 -0.3802396655082703 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.445085734128952 0.5664496421813965 -0.3802396655082703 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.445085734128952 1.198497414588928 -0.1016071438789368 0.445085734128952 0.5738347768783569 -0.4260024130344391 0.445085734128952 0.5738347768783569 -0.4260024130344391 0.445085734128952 1.198497414588928 -0.1016071438789368 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4548816978931427 0.568010151386261 -0.3899107277393341 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4548816978931427 0.568010151386261 -0.3899107277393341 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4548816978931427 0.5722740888595581 -0.4163314998149872 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 0.5722740888595581 -0.4163314998149872 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.4584673047065735 0.5701420903205872 -0.4031210839748383 0.4584673047065735 0.5701420903205872 -0.4031210839748383 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4317043721675873 -2.021480560302734 -0.340120404958725 0.4317043721675873 -2.021480560302734 -0.340120404958725 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.445085734128952 -2.021480560302734 -0.3169430494308472</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"318\" source=\"#ID1867\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1864\">\r\n                    <float_array count=\"954\" id=\"ID1868\">-0.8556685834497534 -0.239464828911311 0.4587895716028961 -0.9991689723260824 0.01267121750300655 -0.03874022441638811 -0.9998015493569296 -0.009297490012715751 0.01761869980862258 0.9998015493569296 0.009297490012715751 -0.01761869980862258 0.9991689723260824 -0.01267121750300655 0.03874022441638811 0.8556685834497534 0.239464828911311 -0.4587895716028961 2.067409586496516e-017 0.935896621035304 0.3522747716409744 5.921428077004473e-013 0.9358968013032771 0.3522742927184643 -1.587002344317823e-006 0.9358946522337397 0.3522800021542084 1.587002344317823e-006 -0.9358946522337397 -0.3522800021542084 -5.921428077004473e-013 -0.9358968013032771 -0.3522742927184643 -2.067409586496516e-017 -0.935896621035304 -0.3522747716409744 -0.8480525375658584 0.1265398159716716 -0.514581935654531 0.8480525375658584 -0.1265398159716716 0.514581935654531 -0.8829612559730874 -0.1097985247969643 0.4564249165008834 0.8829612559730874 0.1097985247969643 -0.4564249165008834 -1.682874098589758e-006 0.9358953173048604 0.3522782352686621 1.682874098589758e-006 -0.9358953173048604 -0.3522782352686621 -2.838051631940314e-006 0.9358978264604545 0.352271569131746 2.838051631940314e-006 -0.9358978264604545 -0.352271569131746 -0.8666306184148966 -0.00442290063085205 -0.4989306656999783 0.8666306184148966 0.00442290063085205 0.4989306656999783 -0.8730063918053552 0.2248510712722504 -0.4327838208791034 0.8730063918053552 -0.2248510712722504 0.4327838208791034 -0.9999988486572118 5.052889436661559e-005 0.001516618304645341 0.9999988486572118 -5.052889436661559e-005 -0.001516618304645341 -0.4886371618025431 -0.4041532626989209 0.7732359693879821 0.4886371618025431 0.4041532626989209 -0.7732359693879821 -1.917342724171167e-007 0.9358950140260669 0.3522790409903935 1.917342724171167e-007 -0.9358950140260669 -0.3522790409903935 5.980649598987417e-006 0.9358984655541968 0.3522698711748308 -5.980649598987417e-006 -0.9358984655541968 -0.3522698711748308 -0.5005661618020015 -0.007509959021396832 -0.8656657080965546 0.5005661618020015 0.007509959021396832 0.8656657080965546 -0.4827533759849262 0.2035025572784121 -0.8517839439413629 0.4827533759849262 -0.2035025572784121 0.8517839439413629 -0.8653247216990916 0.004756257951794971 0.5011890900914403 0.8653247216990916 -0.004756257951794971 -0.5011890900914403 -0.5171218611954367 -0.202882400749179 0.8315189186903789 0.5171218611954367 0.202882400749179 -0.8315189186903789 1.68287208713074e-006 0.9358953173029266 0.3522782352737994 1.917351264601493e-007 0.9358950140260669 0.3522790409903935 -1.917351264601493e-007 -0.9358950140260669 -0.3522790409903935 -1.68287208713074e-006 -0.9358953173029266 -0.3522782352737994 6.836166544110813e-005 -0.4635403853521201 0.8860757904797371 -6.836166544110813e-005 0.4635403853521201 -0.8860757904797371 -3.177932804283919e-011 0.9359008363333675 0.3522635725568331 3.177932804283919e-011 -0.9359008363333675 -0.3522635725568331 -0.5059370200118128 0.3974419379304228 -0.7655505455263398 0.5059370200118128 -0.3974419379304228 0.7655505455263398 -0.09003842888364019 0.9737652901199937 -0.2089838297134265 -0.09509752941100279 0.9689853039308536 -0.2280875723619209 -0.1403416273619077 0.9842110206774678 -0.1078558964842833 0.1403416273619077 -0.9842110206774678 0.1078558964842833 0.09509752941100279 -0.9689853039308536 0.2280875723619209 0.09003842888364019 -0.9737652901199937 0.2089838297134265 -0.126852229460708 0.9869510620438351 -0.09917717989232054 -0.1395093049752446 0.9902123892279267 -0.004071614525624451 0.1395093049752446 -0.9902123892279267 0.004071614525624451 0.126852229460708 -0.9869510620438351 0.09917717989232054 -0.1371433043003548 0.9905509185681858 -0.0007692914296476124 -0.1287262632701252 0.9876956149108226 0.08880834099589038 0.1287262632701252 -0.9876956149108226 -0.08880834099589038 0.1371433043003548 -0.9905509185681858 0.0007692914296476124 1.587004143046497e-006 0.935894652233592 0.3522800021546005 -1.587004143046497e-006 -0.935894652233592 -0.3522800021546005 2.786697723764069e-005 -0.2371628431086368 0.9714699095041799 0.4886794166797998 -0.4044362861970698 0.7730612641444482 -0.4886794166797998 0.4044362861970698 -0.7730612641444482 -2.786697723764069e-005 0.2371628431086368 -0.9714699095041799 -5.980705087972674e-006 0.935898465560064 0.3522698711592422 5.980705087972674e-006 -0.935898465560064 -0.3522698711592422 -6.919749986476737e-005 0.4607735675319257 -0.8875177264007791 -2.030936765399969e-005 0.2302497252968681 -0.9731315756814423 2.030936765399969e-005 -0.2302497252968681 0.9731315756814423 6.919749986476737e-005 -0.4607735675319257 0.8875177264007791 -0.002416077874502486 0.9596332719212614 -0.2812439261377904 0.002416077874502486 -0.9596332719212614 0.2812439261377904 2.100185833579053e-005 -0.008554339815961683 -0.9999634107452307 -2.100185833579053e-005 0.008554339815961683 0.9999634107452307 -0.1312303575950728 0.9861239462733067 0.1016767221729236 0.1312303575950728 -0.9861239462733067 -0.1016767221729236 -0.4992870124823224 0.008307555237405912 0.8663968280715567 0.4992870124823224 -0.008307555237405912 -0.8663968280715567 -5.168604428006794e-018 0.9358966210353041 0.3522747716409743 5.168604428006794e-018 -0.9358966210353041 -0.3522747716409743 0.5171535886277142 -0.2026337189272053 0.8315598245004428 0.8556154675465553 -0.2398097110614041 0.4587084849615663 -0.8556154675465553 0.2398097110614041 -0.4587084849615663 -0.5171535886277142 0.2026337189272053 -0.8315598245004428 2.838054848582697e-006 0.9358978264607185 0.3522715691310447 -2.838054848582697e-006 -0.9358978264607185 -0.3522715691310447 0.5058589369169176 0.3977581476772782 -0.7654379085841166 0.4827393731108922 0.2033075991014512 -0.8518384340918802 -0.4827393731108922 -0.2033075991014512 0.8518384340918802 -0.5058589369169176 -0.3977581476772782 0.7654379085841166 -1.881051239773034e-006 -7.640001222029348e-019 -0.9999999999982308 -0.3319732451570799 0 -0.9432888022763108 -1.881051239737275e-006 8.774096407935407e-019 -0.9999999999982309 1.881051239737275e-006 -8.774096407935407e-019 0.9999999999982309 0.3319732451570799 -0 0.9432888022763108 1.881051239773034e-006 7.640001222029348e-019 0.9999999999982308 -0.01115576265166628 0.9608317846152155 -0.2769076211172235 0.01115576265166628 -0.9608317846152155 0.2769076211172235 -0.7377515990043749 -1.25323332689929e-018 -0.6750722762538011 -0.33197324515708 0 -0.9432888022763108 0.33197324515708 -0 0.9432888022763108 0.7377515990043749 1.25323332689929e-018 0.6750722762538011 -0.9999999999997967 -2.527537940891982e-018 6.374458576434603e-007 -0.7377515990043749 1.151169250985365e-018 -0.6750722762538011 0.7377515990043749 -1.151169250985365e-018 0.6750722762538011 0.9999999999997967 2.527537940891982e-018 -6.374458576434603e-007 -0.7377531673073663 2.340989451153134e-019 0.6750705623325232 -0.9999999999997968 -8.014181208772256e-024 6.374458577993136e-007 0.9999999999997968 8.014181208772256e-024 -6.374458577993136e-007 0.7377531673073663 -2.340989451153134e-019 -0.6750705623325232 -0.08760462976196862 0.9740271832325209 0.208797689566694 0.08760462976196862 -0.9740271832325209 -0.208797689566694 0.8829571124029861 -0.1095877801416802 0.4564835770327334 0.9997987427153047 -0.009377883076055511 0.01773497600528058 -0.9997987427153047 0.009377883076055511 -0.01773497600528058 -0.8829571124029861 0.1095877801416802 -0.4564835770327334 -2.237914300538736e-005 0.009583330192389836 0.9999540785864107 2.237914300538736e-005 -0.009583330192389836 -0.9999540785864107 0.8480717938194996 0.1262944581961821 -0.5146104763378888 0.873024571469934 0.2251232287911784 -0.4326056281052904 -0.873024571469934 -0.2251232287911784 0.4326056281052904 -0.8480717938194996 -0.1262944581961821 0.5146104763378888 0.5005854389560404 -0.007401400196843076 -0.8656554958990987 -0.5005854389560404 0.007401400196843076 0.8656554958990987 0.3319731982955007 -6.745699210829516e-019 -0.9432888187683854 -0.3319731982955007 6.745699210829516e-019 0.9432888187683854 0.09263129721724944 0.9711531077667437 -0.2197295702695592 -0.09263129721724944 -0.9711531077667437 0.2197295702695592 -0.7377531673073663 -1.172867571393463e-018 0.6750705623325233 0.7377531673073663 1.172867571393463e-018 -0.6750705623325233 -0.09263146804003425 0.9711531171285674 0.2197294568787146 0.09263146804003425 -0.9711531171285674 -0.2197294568787146 0.9991711718222368 0.01261032889182782 -0.03870334616823358 -0.9991711718222368 -0.01261032889182782 0.03870334616823358 0.4992676227779674 0.008197452986455137 0.8664090503971966 -0.4992676227779674 -0.008197452986455137 -0.8664090503971966 0.01115519159442941 0.9608316972177918 0.2769079473797549 -0.01115519159442941 -0.9608316972177918 -0.2769079473797549 0.86662126022728 -0.004314606107473825 -0.4989478685155576 -0.86662126022728 0.004314606107473825 0.4989478685155576 0.08760487199195768 0.9740272570283463 -0.2087972436817805 -0.08760487199195768 -0.9740272570283463 0.2087972436817805 0.09003726007103659 -0.9737660595087934 -0.2089807482703076 0.00241508734230594 -0.9596341737255689 -0.281240857577937 0.09509584820952806 -0.9689861245568474 -0.2280847870192401 -0.09509584820952806 0.9689861245568474 0.2280847870192401 -0.00241508734230594 0.9596341737255689 0.281240857577937 -0.09003726007103659 0.9737660595087934 0.2089807482703076 0.3319731982955007 -2.324859276687647e-018 -0.9432888187683854 -0.3319731982955007 2.324859276687647e-018 0.9432888187683854 -0.09263044473430689 -0.9711535481634911 -0.2197279831923698 0.01115459616213048 -0.9608326541598842 -0.2769046508900355 -0.01115459616213048 0.9608326541598842 0.2769046508900355 0.09263044473430689 0.9711535481634911 0.2197279831923698 -0.1312286864881223 -0.9861242709384043 -0.1016757301857369 -0.08760434262081819 -0.974027721213559 -0.208795300381727 0.08760434262081819 0.974027721213559 0.208795300381727 0.1312286864881223 0.9861242709384043 0.1016757301857369 -0.1287246115928297 -0.9876958999286996 -0.088807565186258 -0.1371417064276759 -0.9905511396965514 0.0007694179413118097 0.1371417064276759 0.9905511396965514 -0.0007694179413118097 0.1287246115928297 0.9876958999286996 0.088807565186258 -0.1395077150076342 -0.9902126133369116 0.004071589595286874 -0.1268509467525985 -0.9869513608391595 0.09917584708839622 0.1268509467525985 0.9869513608391595 -0.09917584708839622 0.1395077150076342 0.9902126133369116 -0.004071589595286874 -0.331973819900527 1.364743535802257e-018 0.9432886000056675 0.331973819900527 -1.364743535802257e-018 -0.9432886000056675 0.8653372986924505 0.004645889019576963 0.5011684100248843 -0.8653372986924505 -0.004645889019576963 -0.5011684100248843 0.09509666920911056 0.968985414375468 0.2280874618056319 0.002415579229262457 0.9596332152764271 0.2812441236989915 -0.002415579229262457 -0.9596332152764271 -0.2812441236989915 -0.09509666920911056 -0.968985414375468 -0.2280874618056319 0.9999989165626203 4.94714478615198e-005 0.001471198885774526 -0.9999989165626203 -4.94714478615198e-005 -0.001471198885774526 0.1312301110781591 0.9861239705929389 -0.1016768044759023 0.1287260017345746 0.9876956692818676 -0.08880811539084656 -0.1287260017345746 -0.9876956692818676 0.08880811539084656 -0.1312301110781591 -0.9861239705929389 0.1016768044759023 0.1403399956962591 -0.9842114735813607 -0.1078538867115155 -0.1403399956962591 0.9842114735813607 0.1078538867115155 0.7377521402481055 -1.487338798067641e-018 -0.6750716847560261 -0.7377521402481055 1.487338798067641e-018 0.6750716847560261 -0.1403401479142629 -0.9842114215621126 0.1078541633414679 0.1403401479142629 0.9842114215621126 -0.1078541633414679 -0.3319738199005269 0 0.9432886000056675 0.3319738199005269 -0 -0.9432886000056675 0.1403416649897658 0.9842111004808136 0.1078551192954987 0.090038403757831 0.9737654687449453 0.2089830082295663 -0.090038403757831 -0.9737654687449453 -0.2089830082295663 -0.1403416649897658 -0.9842111004808136 -0.1078551192954987 -1.787972108189189e-017 -8.774093855961984e-019 1 1.787972108189189e-017 8.774093855961984e-019 -1 0.1395091761623891 0.9902124067922382 0.004071756526886208 0.1371430596439661 0.9905509523182452 0.0007694497444450702 -0.1371430596439661 -0.9905509523182452 -0.0007694497444450702 -0.1395091761623891 -0.9902124067922382 -0.004071756526886208 0.7377521402481055 -2.851397952395639e-019 -0.6750716847560262 -0.7377521402481055 2.851397952395639e-019 0.6750716847560262 0.4964416914178915 -0.03905842806366463 -0.8671909168224369 0.8690189797524137 -0.02226235366205126 -0.4942776552095997 0.8625898747785986 -0.02276290866836874 -0.5053914897566019 -0.8625898747785986 0.02276290866836874 0.5053914897566019 -0.8690189797524137 0.02226235366205126 0.4942776552095997 -0.4964416914178915 0.03905842806366463 0.8671909168224369 0.1268506497066003 -0.9869513978373604 -0.09917585883618071 -0.1268506497066003 0.9869513978373604 0.09917585883618071 -1.52281652602719e-006 -0.04499460000659483 -0.9989872301325615 0.5028583418923243 -0.0388919326887635 -0.8634934311047393 -0.5028583418923243 0.0388919326887635 0.8634934311047393 1.52281652602719e-006 0.04499460000659483 0.9989872301325615 -0.4964423698710854 -0.03905845126508915 -0.867190527382278 -1.545680386762055e-006 -0.04499460000420967 -0.9989872301326338 1.545680386762055e-006 0.04499460000420967 0.9989872301326338 0.4964423698710854 0.03905845126508915 0.867190527382278 -0.8625884526310785 -0.02276303227608779 -0.5053939114681928 -0.50285897280859 -0.03889187568526324 -0.8634930662556427 0.50285897280859 0.03889187568526324 0.8634930662556427 0.8625884526310785 0.02276303227608779 0.5053939114681928 -0.999972444272022 -0.0003340209379775213 -0.007416139605689701 -0.8690175476164547 -0.0222624533144969 -0.4942801686362734 0.8690175476164547 0.0222624533144969 0.4942801686362734 0.999972444272022 0.0003340209379775213 0.007416139605689701 -0.869018890990955 0.02226238096317084 0.4942778100367258 -0.9999724485762634 0.0003340077636549147 0.007415559803963278 0.9999724485762634 -0.0003340077636549147 -0.007415559803963278 0.869018890990955 -0.02226238096317084 -0.4942778100367258 -0.09003745435493794 -0.9737660522810231 0.2089806982434363 0.09003745435493794 0.9737660522810231 -0.2089806982434363 0.1268522136644417 0.9869510788455127 0.0991770328962782 -0.1268522136644417 -0.9869510788455127 -0.0991770328962782 3.575944216378378e-017 -5.670473461277961e-020 1 0.3319736856030877 -2.267846863054493e-018 0.9432886472692769 -0.3319736856030877 2.267846863054493e-018 -0.9432886472692769 -3.575944216378378e-017 5.670473461277961e-020 -1 0.9999999999997968 5.364539505124322e-020 6.374480754040954e-007 0.9999999999997968 1.317410307255766e-018 6.374480752092781e-007 -0.9999999999997968 -1.317410307255766e-018 -6.374480752092781e-007 -0.9999999999997968 -5.364539505124322e-020 -6.374480754040954e-007 0.9999724494907532 0.0003339955886191514 0.007415437034315195 -0.9999724494907532 -0.0003339955886191514 -0.007415437034315195 0.1395075400449987 -0.9902126375751152 -0.004071689713896718 -0.1395075400449987 0.9902126375751152 0.004071689713896718 -0.8625884776429428 0.02276303416273365 0.5053938686938501 0.8625884776429428 -0.02276303416273365 -0.5053938686938501 -0.09509564702997102 -0.9689861231902501 0.2280848767031266 0.09509564702997102 0.9689861231902501 -0.2280848767031266 0.3319736856030877 2.651523838246855e-018 0.9432886472692769 0.7377523761315967 -1.246220707811482e-018 0.675071426970645 -0.7377523761315967 1.246220707811482e-018 -0.675071426970645 -0.3319736856030877 -2.651523838246855e-018 -0.9432886472692769 -0.002415539982883647 -0.9596341030532715 0.2812410948345463 0.002415539982883647 0.9596341030532715 -0.2812410948345463 0.7377523761315968 2.974672679722514e-018 0.6750714269706449 -0.7377523761315968 -2.974672679722514e-018 -0.6750714269706449 0.1371414842093252 -0.9905511705498352 -0.0007693056707454696 -0.1371414842093252 0.9905511705498352 0.0007693056707454696 0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0.9999724450707984 -0.0003340101651128226 -0.007416032385219119 -0.9999724450707984 0.0003340101651128226 0.007416032385219119 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 -0.5028607391297926 0.03889185254060898 0.8634920386707676 0.5028607391297926 -0.03889185254060898 -0.8634920386707676 0.0926303973702594 -0.9711537878116366 0.2197269439603129 -0.0111548222395139 -0.9608325919480819 0.2769048576517494 0.0111548222395139 0.9608325919480819 -0.2769048576517494 -0.0926303973702594 0.9711537878116366 -0.2197269439603129 0.1287245943318308 -0.9876959332292812 0.08880721984413723 0.1312287128889473 -0.9861242716440033 0.1016756892678608 -0.1312287128889473 0.9861242716440033 -0.1016756892678608 -0.1287245943318308 0.9876959332292812 -0.08880721984413723 0 -1 0 -0 1 -0 0.8625890965858487 0.02276300383816705 0.505392813668213 -0.8625890965858487 -0.02276300383816705 -0.505392813668213 0 -1 0 -0 1 -0 -0.4964399158161878 0.03905848206527661 0.8671919308683476 0.4964399158161878 -0.03905848206527661 -0.8671919308683476 0.08760369597439988 -0.9740277899170934 0.2087952511932388 -0.08760369597439988 0.9740277899170934 -0.2087952511932388 5.530634213415967e-007 0.04499456454482068 0.9989872317307745 -5.530634213415967e-007 -0.04499456454482068 -0.9989872317307745 0.8690195690259515 0.02226231191655951 0.4942766210514911 -0.8690195690259515 -0.02226231191655951 -0.4942766210514911 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 5.449766517714774e-007 0.04499456454602577 0.9989872317307246 0.5028605664170018 0.0388918425240569 0.8634921397024157 -0.5028605664170018 -0.0388918425240569 -0.8634921397024157 -5.449766517714774e-007 -0.04499456454602577 -0.9989872317307246 0.496439775365582 0.03905849917252066 0.8671920105013425 -0.496439775365582 -0.03905849917252066 -0.8671920105013425</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"318\" source=\"#ID1868\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1866\">\r\n                    <float_array count=\"932\" id=\"ID1869\">-11.25932805518937 0.4879479208894881 -5.156333825802362 -2.226597808822293 -11.31054402336369 0.3866887779356041 -4.049413502216338 -3.887123517758756 -4.317043721675872 -3.887123517758756 -4.085270166397094 -3.781856993454377 -6.177416765474117 -3.699072506932177 -6.203196720386824 -3.806149211170691 -12.3271952343616 -1.079337578188712 -5.102641539361006 -2.069736751696081 -5.128428871588065 -2.176811828073098 -11.22662195928344 0.5444030103276085 -4.085310375791861 -3.781806192112567 -4.317084090941696 -3.887072498583008 -4.183269598376145 -3.704744458619817 -4.049413502216339 -3.886981074854326 -4.085270166397095 -3.992246938446414 -4.317043721675873 -3.886981074854326 -5.691727905781828 -3.898548109315947 1.213232401357073 -3.956600576821714 -5.712962145088035 -4.006240615044608 -12.31249712833532 -1.074900243098617 -6.183715396076771 -3.795053293626222 -12.36370455952466 -1.176161371079548 -5.690152164672538 -2.119796852854564 1.19349024601802 -2.176455698956791 -5.711383122707162 -2.227489233440087 -8.946129821920774 3.992730203131711 -3.421382997099307 0.6360191868382803 -9.018805069777802 3.899948727227846 -4.183231927890725 -3.704762860955324 -4.317046160277991 -3.887091019087 -4.317046140963053 -3.67655585860222 -4.085342644956503 -3.992324055119378 -4.183302193873223 -4.069386657642355 -4.317115914344315 -3.887057801982695 1.239341430844225 -4.548491456372043 1.240202612821271 -4.657470718763132 -5.686605238373446 -4.616233736127349 1.213307491042461 -3.839496262162217 1.213394600898758 -3.948476423527015 -5.691566469847769 -3.890480190500433 -6.932807065752982 -3.100785743552962 -6.989664092101249 -3.200166193023483 -12.53403592490533 0.2276052443095399 1.193242306620966 -2.081487505141862 1.193332072744563 -2.190467665172695 -5.690311070112399 -2.133863893882101 -3.253442528050039 0.8671135758711629 -3.310462406844037 0.7677901596581189 -8.785764873295038 4.174268162888379 -4.317041283062712 -3.887091509280536 -4.450854919403604 -3.70476335114886 -4.317041302377735 -3.676556348795756 0.8086484589963355 3.167786974002858 -2.256126201329711 8.073424631186649 -2.133779487386396 8.124547093341629 -4.183003643697426 -4.069300554675565 -4.316817621357123 -4.097506379542639 -4.316819398015708 -3.886972622755279 -12.55968530201353 0.09185059392995383 -6.966178530172553 -3.286159003938216 -12.63222926681517 -0.0009953749343425782 -3.454986706984768 -3.788184490826589 -3.954554745392738 -3.480431070579061 -3.857710392536873 -3.40250224046097 -5.701675118576261 -4.724124724152334 -5.686922497683787 -4.615762644769067 1.239882489387081 -4.657296288159409 -3.015430911568257 -3.45549861995946 -3.866061732078935 -3.279657853897043 -3.830588484267588 -3.174311014602082 -2.869703246413577 -3.070216614262001 -3.848985722099194 -3.070216614262001 -3.88451166256943 -2.964880763915582 1.164702397532125 0.1770946387850281 -5.718563410058719 0.1050305212584034 -5.70388740067092 0.213399701844485 -4.317003352372439 -3.88708061339941 -4.548776769499002 -3.781814306928624 -4.450817248891459 -3.704752573435621 6.560394906950577 0.3286585774584608 9.620672185692577 5.229913621577116 9.74302937016806 5.178807635345643 1.065295834394154 3.235331682227785 0.9452107955214961 3.180992217859886 -1.891195156386079 8.175852241738964 -4.317269821468539 -4.09746128944816 -4.451083203080727 -4.069255464581087 -4.31726804480204 -3.8869275326608 -9.738500023425573 5.129012709894578 -9.616306594751213 5.180360521298965 -6.611051826073217 0.1623460613082861 -9.454700111799376 5.323132414276861 -6.435619234164136 0.321223851333408 -6.555527445260597 0.2666430333145937 -3.63515919421932 -3.793903989688869 -4.253489030695904 -3.872230866086532 -4.125696002155108 -3.477287832190934 -3.0825751920921 -3.587025621783866 -3.533045564090324 -3.79624728320938 -3.932232694741615 -3.408296458879248 -5.60134158197208 -4.184464320313635 1.336914105341033 -4.00328014102398 1.341202412833731 -4.112208839164714 -2.869703246413577 -3.201819735854989 -3.034018435132346 -3.483348470546936 -3.848985722099194 -3.201819735854989 -2.863179646514935 -3.026580096309139 -3.877962833675873 -2.921093940708686 -3.027409744579753 -2.74502157313123 1.163488109067834 0.2544732377842759 1.164423167756218 0.1454940206030179 -5.704168854698622 0.1815377279855652 -4.317043721675873 -3.887123517758756 -4.584673047065735 -3.887123517758756 -4.548816978931427 -3.781856993454378 7.015589282693689 -3.135250642444145 12.59462165360195 0.1229826177130727 12.66733284910373 0.03021837817334129 6.626458302856106 0.3769634224572723 6.506386650646912 0.4313202821127311 9.587445864106229 5.321890509821727 1.051594831123396 2.461417897561974 -5.811893690170207 2.259574663057269 -5.811018120800472 2.368553090480205 -4.450784653294967 -4.069401169118899 -4.548744500234847 -3.992338566596373 -4.316971528870174 -3.887072313460307 2.137071460503123 8.09309811398556 2.259275193355469 8.041766441740156 -0.9858725881521666 3.130809355669199 2.021936242369472 8.097526591115551 -1.001649242573136 3.091217127777414 -1.121544259135674 3.145814976261 -5.601937532846225 -4.285877158378675 -5.600540831480743 -4.176901973356207 1.341986773373886 -4.103678421953079 1.336172223091126 -3.919127434132936 1.336172223091126 -3.426441934360624 7.48434841632843 -3.919127434132936 -4.197406435494571 -3.906323168964242 -4.207936052303553 -3.539831343929594 -4.074543774712506 -3.510413099263281 1.336172223091126 -4.323366513692371 1.336172223091126 -3.911842736837371 7.48434841632843 -4.323366513692371 1.336172223091125 -3.851737772472658 7.484348416328429 -4.161523032657492 1.336172223091125 -4.161523032657492 1.336172223091126 -1.501688990757509 7.48434841632843 -1.811473400382779 1.336172223091126 -1.811473400382779 -3.904849011048787 -2.829543218396435 -4.002054740016886 -2.751892858936738 -3.054622934974881 -2.652496146602985 -4.317043721675873 -3.886981074854326 -4.548816978931427 -3.992246938446414 -4.584673047065735 -3.886981074854326 6.200269010085168 -3.676611865574002 12.32869786298523 -1.068931443338561 12.37991994486331 -1.170188541916581 7.099454365084103 -3.157335906409499 7.042478665492553 -3.0579966201888 12.65024069585977 0.1555142783734717 -1.359823511635173 -3.991770761742349 5.497885797001669 -4.195025570283538 5.498723478042611 -4.304003729090315 1.047798218522696 2.556907610501718 1.052599619174476 2.447992343471312 -5.810040288314465 2.356368562112011 3.272678277624529 0.6929156207975984 8.920339665811422 3.972390455149541 8.992918972889115 3.879561386303931 3.219001459711274 0.7306060224236908 3.162187818934207 0.8300020072767896 8.838692483510227 4.064684875963754 5.879996342784142 2.385105372291689 5.881356040750983 2.276130350597654 -1.05815630851208 2.568714925286193 5.878332357443201 2.264896201096839 -1.065693258161062 2.444689632603452 -1.061441379121859 2.553618639921662 -1.336172223091126 2.793267631778692 -7.48434841632843 2.793267631778692 -7.48434841632843 3.285952844951019 7.48434841632843 -3.426441934360624 7.48434841632843 -3.919127434132937 -4.373805526414469 -3.786082117950414 -4.992093348699553 -3.707552063028582 -4.367716810338519 -3.419527989936349 1.336172223091126 -3.911842736837372 7.48434841632843 -3.911842736837372 7.48434841632843 -4.323366513692371 7.484348416328429 -3.851737772472658 7.48434841632843 -1.50168899075751 7.48434841632843 -1.811473400382779 1.336172223091126 -1.50168899075751 -3.071376953586833 -2.528029870351948 -4.01861156644576 -2.628582916074811 -3.521514195545894 -2.318362213566327 5.090084218558638 -2.130050174670152 11.24429520147112 0.4832352675482442 11.29550869958536 0.3819761689427624 6.246664052589845 -3.799673615981539 6.22088480913609 -3.692597457778136 12.39644358099423 -1.179940226426094 -1.246517528801427 -4.550546713363268 5.621130304306502 -4.624012347117448 5.635786058304162 -4.732383390786898 -1.361171579666276 -4.108489238448604 -1.356407496565788 -3.999573410498429 5.502444219199675 -4.307636108092342 -4.090766564433891 -2.557312620769638 -4.224265238009214 -2.528195260713025 -3.597677451377235 -2.243158152309802 5.087383672399941 -2.18337100296408 5.061611741987281 -2.07629322683374 11.26295794793213 0.4419579085109923 5.763077703654339 0.2202165617892674 5.77781040199036 0.1118526383413461 -1.162861216860616 0.2884473437345334 -1.165190709042337 0.1448846668801672 -1.164349115898163 0.2538645213187106 5.77637430400276 0.07853427013600932 -4.389463072911469 -3.404813019702051 -5.016050916463099 -3.689849823559386 -4.522961146031338 -3.375695424019953 4.598967770056982 -1.79833966492206 3.980637888849862 -1.876664520023774 4.108430616914907 -1.481722326957809 -1.336172223091126 3.285952844951019 4.655911190883181 -1.902843944830234 4.037623385678563 -1.8243120086256 4.661999914893328 -1.53629016742144 4.527828169528757 -2.470008229966375 4.07769082770391 -2.260343465780514 5.024925214163027 -2.159788998055654 5.105821210832828 -2.86663478637923 4.255268363443153 -3.042708082620281 4.091038227155185 -2.761148637412749 5.044209145774468 -3.461507701973369 4.064926882103503 -3.461507701973369 4.229242106396518 -3.179979916059498 7.48434841632843 0.7910374011194875 1.336172223091126 0.7910374011194875 1.336172223091126 1.20256258411519 -1.215021998055715 -3.849100321047893 5.668530750543769 -3.901527771948362 5.689759008936475 -4.009220359061231 -1.245917132711283 -4.65707195273612 -1.245001968579687 -4.548092465262331 5.637357416913735 -4.728617467005762 -4.398925360414483 -2.600159325581975 -4.532317060479 -2.629576838601912 -4.409454769913681 -2.233667721657282 -3.632900943290331 -2.189733141137928 -4.25727745510186 -2.477757474604675 -4.25118877281414 -2.11120357100095 -1.192171369996044 -2.066029100906539 5.712701999614013 -2.117062561299272 5.733933557029467 -2.224755271440215 -1.192754216500659 -2.190516302592015 -1.192669748549435 -2.081536261301629 5.73344088719767 -2.240108200678426 -4.5656090608546 -3.341432354019074 -5.513041748663499 -3.440830012428862 -4.662815089009785 -3.26378199367109 -5.056196599029924 -3.656721323771787 -5.506334157822702 -3.447054609347743 -4.55909866668642 -3.346500601184748 3.753809016424408 -2.615614101766433 3.254240738201578 -2.307859367455506 3.35108541456917 -2.229930090628913 3.709564931190559 -1.789345549227117 3.699035689224811 -1.422854068111199 3.832427392771667 -1.393436340067068 -1.336172223091126 1.559534496414023 -7.48434841632843 1.559534496414023 -7.48434841632843 1.971059413755167 4.829653773475252 -1.802847712215602 4.203066030624735 -2.087882385388729 4.696155106397431 -1.773729652384058 5.094043006545995 -2.598784550747651 4.146611422267142 -2.698182668655443 4.996837256437833 -2.521134673002487 5.044209145774468 -2.920156948337632 5.079735093936073 -3.025492797078757 4.064926882103503 -2.920156948337632 5.152507738915643 -3.227597421005711 5.117034482475075 -3.332944258502495 4.301877161004605 -3.051757596440364 7.48434841632843 1.202562584115189 7.48434841632843 0.7910374011194871 1.336172223091126 1.202562584115189 -1.214607660721589 -3.948469926420947 -1.21452055376132 -3.839489886416141 5.690266300846059 -3.999453797983608 -4.581257623197647 -2.846054034152716 -4.678102273719453 -2.923983330856098 -5.080826238882672 -2.538299221345286 -4.499882057339431 -2.607496069431633 -4.990419312283299 -2.290878423264997 -4.372089439082432 -2.21255397974204 7.48434841632843 2.472321861005408 1.336172223091126 2.472321861005408 1.336172223091126 2.965007002528828 -4.705464220787445 -3.136219238946584 -4.669938869463472 -3.241555086694751 -5.684748763393963 -3.136219238946584 -4.672057829454055 -3.248859832323046 -5.522611505920555 -3.424933140104601 -5.686842493943526 -3.143373676442608 -1.336172223091126 1.971059413755167 -7.409068430673221 0.3249145827098133 -19.98966233534827 1.064766094517656 -7.404660809672519 0.4338412765039134 4.553338623446104 -2.190003492843049 4.102867905139561 -2.39922693608906 3.703680739113433 -2.011274437576131 -6.773888439565022 3.424174211924911 -6.796069614361738 3.316599855601481 -19.19736891434987 5.126473979874669 8.227265295491549 -3.147241571366506 8.205084261732841 -3.039666615267271 20.65074956555781 -1.444958821421544 7.793145823602609 -4.361621890856246 20.38255487059625 -3.839621650024103 7.797553449196779 -4.470548086950229 7.665359653794686 -3.821278902456142 20.26263494218131 -3.468155153201388 7.665792375382231 -3.930258553720039 7.567189501579987 -2.063511180631772 20.16446478923026 -1.710387188664076 7.567622223394784 -2.17249083189511 4.880381975831446 -3.993377869666359 4.030724667132458 -3.814649776983288 4.481195069289785 -3.605425389978992 -4.675700925023747 -2.998210361679813 -4.711173582560055 -3.103557198429646 -5.52633233621239 -2.822370538361239 -4.651826560390079 -2.863763786398194 -5.501484679215371 -2.685035624024081 -5.051014038527462 -2.475811155437392 -7.48434841632843 -3.747377295356638 -1.336172223091126 -3.747377295356638 -1.336172223091126 -4.240062436880058 7.48434841632843 2.965007002528828 -4.705464220787446 -3.087597849971966 -5.684748763393964 -3.087597849971966 -5.520432682364712 -2.806070047567281 -1.336172223091126 -1.301030195544497 -7.48434841632843 -0.9912446391528237 -1.336172223091126 -0.9912446391528237 -7.48434841632843 -1.301030195544497 -20.15843905855736 -1.71041840842217 -20.1580063523185 -1.601438652025392 -7.561596457176316 -2.172521225557526 -7.409066894753678 0.3249310810472088 -19.99406823863991 0.9558584747962992 -19.98966058625407 1.064784836080833 4.23988799867491 -3.14874530170004 3.3892568309797 -2.972904543073474 3.424729497680645 -2.867557708233359 -6.796053666512249 3.316632542204058 -19.21952810808441 5.018959681046655 -19.19734655203097 5.126533865774118 8.205091549186252 -3.039640111859205 20.62857050345016 -1.337333476700804 20.65075187313587 -1.444908266987489 7.793146669529714 -4.361620302146933 20.37814796266671 -3.730692613673115 20.38255561040468 -3.839618477489444 20.26220214244573 -3.359174136038071 20.26263486329693 -3.468154013760685 7.66535957252434 -3.821277710341584 20.16403233412861 -1.601413715692121 20.16446505373437 -1.710394046331714 7.567189758926244 -2.063517880278766 5.281576370006603 -3.714577262213224 5.184731992727119 -3.792506537220064 4.782008663444936 -3.406822535088784 -7.48434841632843 -4.680337721352934 -1.336172223091126 -4.680337721352934 -1.336172223091126 -5.091863107409017 -7.48434841632843 -4.240062436880058 4.517147758492656 -4.436747328136954 4.02661122550878 -4.120129960750964 4.644941112825926 -4.041805586192385 -1.336172223091126 -4.67196897260322 -7.48434841632843 -4.362184266770298 -1.336172223091126 -4.362184266770298 -7.48434841632843 -4.671968972603219 -7.48434841632843 -4.362184266770297 -1.336172223091126 -4.671968972603219 4.489529502429271 -2.712320343277041 4.32521338582573 -2.993849068761489 3.510245171836957 -2.712320343277041 4.584673047065735 -2.67561385234197 4.548816978931427 -2.780880566438039 4.317043721675873 -2.67561385234197 -7.561596303053825 -2.172518746637224 -20.15800619195587 -1.601436087927794 -7.561163595624159 -2.063539216700533 4.45085734128952 -2.857942148049673 4.317043721675873 -2.886148687203725 4.183229506015778 -2.8579416791598 4.085270166397095 -2.780880566438039 4.049413502216339 -2.67561385234197 4.085270166397095 -2.570346669356028 7.421110337296863 0.4342469318247725 20.01051949040724 0.9562455888556181 7.425517940747502 0.3253204034521427 -7.48434841632843 -5.091863107409017 4.587381043742893 -4.250297109005382 3.963004660012281 -4.538321168202035 3.969093198871385 -4.171767613647894 4.907821426619737 -4.411092705981898 4.774429118744769 -4.440510191280975 4.897292311241881 -4.04460144741143 4.45898714546114 -3.530783843134048 3.444202684978536 -3.425297690768829 4.294756120613209 -3.249225328591466 4.489529502429272 -3.353068421083288 3.510245171836957 -3.353068421083288 3.474719812821777 -3.247732574940354 4.548816978931427 -2.570346669356028 -20.2686605899131 -3.468131277202411 -20.26822788537411 -3.359151067887034 -7.67181798132415 -3.930234199200581 4.183229506015778 -2.493285322189331 20.00611015981752 1.065196324778427 20.01051779648356 0.9562702948233963 7.421108802549014 0.4342692620815847 4.500018497887991 -4.01532093159186 3.55278321095577 -4.115873932433938 4.049880885509911 -3.805653368389173 3.91758195470852 -4.390624369043138 3.784083870261765 -4.361507032611902 4.410671495546644 -4.076470155483391 19.24171640300716 5.0217752023098 6.818240106739196 3.319456624246194 6.796058569085949 3.427031331626517 3.570827690233118 -3.778814896990638 3.473621646181085 -3.701164548957879 4.42105411993872 -3.601767851251229 -7.671818428944595 -3.930238394956164 -20.26822831427421 -3.35915500811207 -7.671385720833205 -3.821258865021147 4.45085734128952 -2.493285322189331 4.317043721675873 -2.465078314145406 -20.65075244470812 -1.334488134425936 -8.22727480719437 -3.036800716469167 -8.249456161287556 -3.14437498844048 19.21954454934701 5.129323310270896 19.24172591903273 5.021748519984212 6.79606559508311 3.427016675112495 -7.814002178949348 -4.470136603468768 -20.39459606793192 -3.730284760667527 -7.809594555638277 -4.361209909732523 -20.39900543977191 -3.839206439762744 -20.39459776938297 -3.730280244790479 -7.814004200164126 -4.470135452444637 -20.67293229873431 -1.442089613319826 -20.65075113526788 -1.33451525555063 -8.249451644654457 -3.14438851003459</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"466\" source=\"#ID1869\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1865\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1863\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1864\"/>\r\n                </vertices>\r\n                <triangles count=\"168\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1865\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1866\"/>\r\n                    <p>0 0 1 1 2 2 6 3 7 4 8 5 1 6 12 7 2 8 14 9 1 10 0 11 8 12 7 13 16 14 6 15 18 16 7 17 1 18 20 19 12 20 2 21 12 22 22 23 14 24 24 25 1 26 26 27 14 28 0 29 16 30 7 31 28 32 18 33 30 34 7 35 20 36 32 37 12 38 24 39 20 40 1 41 12 42 34 43 22 44 36 45 24 46 14 47 38 48 14 49 26 50 7 51 40 52 41 53 38 54 26 55 44 56 30 57 46 58 7 59 22 60 34 61 48 62 50 63 51 64 52 65 34 66 12 67 32 68 56 69 52 70 57 71 60 72 57 73 61 74 36 75 14 76 38 77 7 78 64 79 40 80 66 81 44 82 67 83 66 84 38 85 44 86 46 87 70 88 7 89 72 90 48 91 73 92 48 93 34 94 73 95 50 96 76 97 51 98 56 99 50 100 52 101 34 102 32 103 78 104 60 105 56 106 57 107 60 108 61 109 80 110 82 111 36 112 38 113 7 114 84 115 64 116 86 117 67 118 87 119 86 120 66 121 67 122 82 123 38 124 66 125 70 126 90 127 7 128 92 129 72 130 93 131 72 132 73 133 93 134 73 135 34 136 78 137 96 138 97 139 98 140 76 141 102 142 51 143 97 144 104 145 105 146 108 147 109 148 104 149 112 150 113 151 108 152 61 153 116 154 80 155 7 156 90 157 84 158 118 159 87 160 119 161 118 162 86 163 87 164 122 165 66 166 86 167 122 168 82 169 66 170 124 171 125 172 92 173 93 174 124 175 92 176 93 177 73 178 128 179 73 180 78 181 128 182 96 183 98 184 130 185 97 139 105 186 98 187 76 188 132 189 102 190 104 191 109 192 105 193 113 194 109 148 108 147 134 195 113 196 112 197 80 198 116 199 136 200 138 201 119 202 125 203 138 204 118 205 119 206 140 207 86 208 118 209 140 210 122 211 86 212 116 213 142 214 136 215 124 216 138 217 125 218 124 219 93 220 144 221 128 222 144 223 93 224 102 225 132 226 146 227 148 228 149 229 150 230 154 231 96 183 130 185 149 232 156 233 157 234 156 235 160 236 161 237 164 238 160 239 165 240 168 241 165 242 169 243 134 244 112 245 172 246 174 247 118 248 138 249 174 250 140 251 118 252 142 253 176 254 177 255 136 256 142 257 177 258 180 259 138 260 124 261 144 262 180 263 124 264 146 265 182 266 183 267 132 268 182 269 146 270 148 271 150 272 186 273 149 274 157 275 150 276 154 277 130 278 188 279 157 280 156 281 161 282 161 283 160 284 164 285 168 286 164 287 165 288 190 289 168 290 169 291 192 292 134 293 172 294 180 295 174 296 138 297 176 298 194 299 195 300 176 301 195 302 177 303 192 304 172 305 198 306 200 307 183 308 201 309 183 310 182 311 201 312 204 313 154 277 188 279 206 314 207 315 208 316 212 317 148 318 186 319 206 320 214 321 215 322 214 323 218 324 219 325 222 326 223 327 218 328 226 329 227 330 222 331 230 332 231 333 226 334 190 335 169 336 234 337 194 338 200 339 236 340 194 341 236 342 195 343 238 344 198 345 239 346 238 347 192 304 198 306 200 348 201 349 236 350 204 351 242 352 243 353 188 354 242 352 204 351 207 355 246 356 208 357 206 358 215 359 207 360 212 361 186 362 248 363 214 364 219 365 215 366 218 367 223 368 219 369 222 370 227 371 223 372 231 373 227 374 226 375 250 376 231 377 230 378 252 379 190 380 234 381 254 382 239 383 255 384 254 385 238 344 239 346 252 386 234 387 258 388 243 389 260 390 255 391 242 392 260 393 243 394 262 395 212 396 248 397 264 398 265 399 266 400 208 401 246 402 270 403 265 399 272 404 266 400 272 404 274 405 266 400 274 405 276 406 266 400 276 406 278 407 266 400 266 400 278 407 280 408 266 400 280 408 282 409 284 410 250 411 230 412 260 413 254 382 255 384 286 414 287 415 258 416 287 417 252 418 258 419 262 420 290 421 291 422 262 423 248 424 290 425 264 398 266 400 294 426 246 427 296 428 270 429 266 400 282 409 298 430 300 431 250 432 284 433 291 434 302 435 286 436 302 437 287 438 286 439 300 440 284 441 304 442 290 443 302 444 291 445 270 446 296 447 306 448 294 426 266 400 308 449 266 400 298 430 310 450 312 451 304 452 313 453 312 454 300 455 304 456 306 457 316 458 313 459 296 460 316 461 306 462 308 449 266 400 310 450 316 463 312 464 313 465</p>\r\n                </triangles>\r\n                <triangles count=\"168\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1865\"/>\r\n                    <p>3 4 5 9 10 11 3 13 4 5 4 15 17 10 9 10 19 11 13 21 4 23 13 3 4 25 15 5 15 27 29 10 17 10 31 19 13 33 21 4 21 25 23 35 13 15 25 37 27 15 39 42 43 10 45 27 39 10 47 31 49 35 23 53 54 55 33 13 35 58 53 59 62 58 63 39 15 37 43 65 10 68 45 69 45 39 69 10 71 47 74 49 75 74 35 49 54 77 55 53 55 59 79 33 35 58 59 63 81 62 63 39 37 83 65 85 10 88 68 89 68 69 89 69 39 83 10 91 71 94 75 95 94 74 75 79 35 74 99 100 101 54 103 77 106 107 100 107 110 111 111 114 115 81 117 62 85 91 10 120 88 121 88 89 121 89 69 123 69 83 123 95 126 127 95 127 94 129 74 94 129 79 74 131 99 101 99 106 100 103 133 77 106 110 107 111 110 114 115 114 135 137 117 81 126 120 139 120 121 139 121 89 141 89 123 141 137 143 117 126 139 127 145 94 127 94 145 129 147 133 103 151 152 153 131 101 155 158 159 152 162 163 159 166 163 167 170 166 171 173 115 135 139 121 175 121 141 175 178 179 143 178 143 137 127 139 181 127 181 145 184 185 147 147 185 133 187 151 153 151 158 152 189 131 155 162 159 158 167 163 162 166 167 171 170 171 191 173 135 193 139 175 181 196 197 179 178 196 179 199 173 193 202 184 203 202 185 184 189 155 205 209 210 211 187 153 213 216 217 211 220 221 217 221 224 225 225 228 229 229 232 233 235 170 191 237 203 197 196 237 197 240 199 241 199 193 241 237 202 203 244 245 205 205 245 189 209 247 210 210 216 211 249 187 213 216 220 217 220 224 221 224 228 225 229 228 232 233 232 251 235 191 253 256 240 257 240 241 257 259 235 253 256 261 244 244 261 245 249 213 263 267 268 269 271 247 209 267 273 268 267 275 273 267 277 275 267 279 277 281 279 267 283 281 267 233 251 285 256 257 261 259 288 289 259 253 288 292 293 263 293 249 263 295 267 269 271 297 247 299 283 267 285 251 301 289 303 292 289 288 303 305 285 301 292 303 293 307 297 271 309 267 295 311 299 267 314 305 315 305 301 315 314 317 307 307 317 297 311 267 309 314 315 317</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1870\">\r\n            <mesh>\r\n                <source id=\"ID1871\">\r\n                    <float_array count=\"84\" id=\"ID1875\">0.4059732258319855 0.3273707330226898 0.4861110150814056 0.001826941967010498 0.36569744348526 0.4825262129306793 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.001826941967010498 0.36569744348526 0.4825262129306793 0.4059732258319855 0.3273707330226898 0.4861110150814056 -0.002457162365317345 0.3667368292808533 0.4761049449443817 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.4000329077243805 0.333241194486618 0.4851138293743134 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4000329077243805 0.333241194486618 0.4851138293743134 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.001826941967010498 0.36569744348526 0.4825262129306793 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.001826941967010498 0.36569744348526 0.4825262129306793 -0.002457162365317345 0.3667368292808533 0.4761049449443817 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4000329077243805 0.333241194486618 0.4851138293743134 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4059732258319855 0.3273707330226898 0.4861110150814056 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4000329077243805 0.333241194486618 0.4851138293743134 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.002138050273060799 0.3725078105926514 0.4755116403102875</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"28\" source=\"#ID1875\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1872\">\r\n                    <float_array count=\"84\" id=\"ID1876\">-0.08952341132944511 -0.9665019931361217 -0.2405399261824177 -0.09307031415484783 -0.9906940182325136 -0.09931404161262442 -0.08943517782608092 -0.96582685467682 -0.2432690604090423 0.08943517782608092 0.96582685467682 0.2432690604090423 0.09307031415484783 0.9906940182325136 0.09931404161262442 0.08952341132944511 0.9665019931361217 0.2405399261824177 -0.09308928585367543 -0.9907963814413132 -0.09826960558612438 0.09308928585367543 0.9907963814413132 0.09826960558612438 0.2301586543286202 0.693333295190555 0.6828732939702983 0.2287261533222507 0.6936103530025589 0.6830732208146296 0.5000460578009219 0.6103526617752574 0.6143480840220922 -0.5000460578009219 -0.6103526617752574 -0.6143480840220922 -0.2287261533222507 -0.6936103530025589 -0.6830732208146296 -0.2301586543286202 -0.693333295190555 -0.6828732939702983 -0.1956589388659544 0.7079285700643496 0.6786418196136265 -0.2198282281697055 0.704780168735802 0.6745075713856016 0.2198282281697055 -0.704780168735802 -0.6745075713856016 0.1956589388659544 -0.7079285700643496 -0.6786418196136265 -0.6416528063592415 0.5643263746532536 0.5194395238735935 0.6416528063592415 -0.5643263746532536 -0.5194395238735935 0.00891550759678178 -0.1584192619794581 -0.9873316824442412 0.01283181494370217 -0.113021758016135 -0.993509651055385 0.008890355094381066 -0.1587090432062825 -0.9872853696833769 -0.008890355094381066 0.1587090432062825 0.9872853696833769 -0.01283181494370217 0.113021758016135 0.993509651055385 -0.00891550759678178 0.1584192619794581 0.9873316824442412 0.01288447646505487 -0.1124075253154992 -0.9935786524068777 -0.01288447646505487 0.1124075253154992 0.9935786524068777</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"28\" source=\"#ID1876\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1874\">\r\n                    <float_array count=\"48\" id=\"ID1877\">3.740585338318493 3.013731988598182 -0.3190001965646728 2.984658132854389 3.679196662021946 3.062556130331506 -0.3675170164644492 3.445144035647753 -0.3238915542370874 3.495903695925194 3.73570239328401 3.524241298361504 -1.023265483343171 0.6100779464911402 -0.9825317248039001 0.540116630602465 -1.065686325361761 0.5500585549780868 0.2558773499497036 0.7229336923277917 0.2578794837875551 0.6460002533954288 -3.741303136691545 0.8282759892767549 -2.758101724615067 2.262331227225474 -2.737613796339283 2.203216483757234 -2.811295632258756 2.19775447044182 4.180446050558359 -1.803728767205834 0.1805791100523501 -2.249569534563329 4.236472959786632 -1.754379034249905 0.2579904479145674 0.6477436715358349 -3.739199756091682 0.7530193926241987 -3.74119699173816 0.8299539626872152 0.4454430976743594 -2.467499234909472 0.393218062595942 -2.426247833057311 4.353792175678316 -1.799876336016639</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"24\" source=\"#ID1877\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1873\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1871\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1872\"/>\r\n                </vertices>\r\n                <triangles count=\"8\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1873\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1874\"/>\r\n                    <p>0 0 1 1 2 2 6 3 1 4 0 5 8 6 9 7 10 8 14 9 15 10 8 11 14 12 18 13 15 14 20 15 21 16 22 17 15 18 9 19 8 20 26 21 21 22 20 23</p>\r\n                </triangles>\r\n                <triangles count=\"8\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1873\"/>\r\n                    <p>3 4 5 5 4 7 11 12 13 13 16 17 16 19 17 23 24 25 13 12 16 25 24 27</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1878\">\r\n            <mesh>\r\n                <source id=\"ID1879\">\r\n                    <float_array count=\"90\" id=\"ID1883\">0.4527354836463928 0.3918493390083313 0.4402284026145935 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.278479278087616 0.3278618454933167 0.4869411289691925 0.278479278087616 0.3278618454933167 0.4869411289691925 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.2781703174114227 0.328160971403122 0.4818757474422455 0.2781703174114227 0.328160971403122 0.4818757474422455 0.278479278087616 0.3278618454933167 0.4869411289691925 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.278479278087616 0.3278618454933167 0.4869411289691925 0.278479278087616 0.3278618454933167 0.4869411289691925 0.2781703174114227 0.328160971403122 0.4818757474422455 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2781703174114227 0.328160971403122 0.4818757474422455 0.278479278087616 0.3278618454933167 0.4869411289691925 0.450115442276001 0.4019450545310974 0.4316630661487579 0.2781703174114227 0.328160971403122 0.4818757474422455 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.2781703174114227 0.328160971403122 0.4818757474422455 0.450115442276001 0.4019450545310974 0.4316630661487579 0.450115442276001 0.4019450545310974 0.4316630661487579 0.450115442276001 0.4019450545310974 0.4316630661487579 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2769213914871216 0.3349538445472717 0.4808885753154755</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID1883\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1880\">\r\n                    <float_array count=\"90\" id=\"ID1884\">0.3753432908168096 -0.9152399140173331 0.1464694979453154 0.3743393837305015 -0.9162770354900349 0.1425005965666867 0.3140457485376386 -0.9472657429590871 -0.06374072514180626 -0.3140457485376386 0.9472657429590871 0.06374072514180626 -0.3743393837305015 0.9162770354900349 -0.1425005965666867 -0.3753432908168096 0.9152399140173331 -0.1464694979453154 0.3103356675491998 -0.9476724175128053 -0.0748916719817901 -0.3103356675491998 0.9476724175128053 0.0748916719817901 -0.0320246630172527 0.6447511012904932 0.7637214402799806 -0.03197120955853455 0.6446490719368806 0.7638098034264045 -0.0306315124552247 0.6420879074995785 0.7660188179721946 0.0306315124552247 -0.6420879074995785 -0.7660188179721946 0.03197120955853455 -0.6446490719368806 -0.7638098034264045 0.0320246630172527 -0.6447511012904932 -0.7637214402799806 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 -0.3734428630561606 0.2653397858601099 -0.8888955090853641 -0.214729926251855 -0.1557520238905489 -0.9641744478183761 -0.3765001999056426 0.2754405094322084 -0.8845225408290831 0.3765001999056426 -0.2754405094322084 0.8845225408290831 0.214729926251855 0.1557520238905489 0.9641744478183761 0.3734428630561606 -0.2653397858601099 0.8888955090853641 -0.0305931151776909 0.6420143877261446 0.7660819716298956 0.0305931151776909 -0.6420143877261446 -0.7660819716298956 -0.2048984381399542 -0.1775537005661291 -0.9625441877976724 0.2048984381399542 0.1775537005661291 0.9625441877976724</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"30\" source=\"#ID1884\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1882\">\r\n                    <float_array count=\"42\" id=\"ID1885\">5.675606409170287 3.645582267663513 5.659946265937674 3.540001426781414 3.820565024918846 4.017062055030105 5.507814679000523 3.214093020966341 3.664835962078402 3.64737777577287 3.666841234253838 3.687337664122705 -2.944011794455307 0.5884805452487562 -2.931970355226452 0.5147237154584141 -4.716171622766688 0.01923609011483403 -2.744649910765467 3.95546743810215 -2.74813267594593 3.915570386156207 -2.817198242306778 3.907795007853151 -5.901691802031239 0.7076990140758661 -4.290956863184142 1.55444838564906 -5.812055584839532 0.6282526547049071 -2.925505739982495 0.4946091484498839 -4.687369548932571 -0.1078723146314636 -4.70873493322951 -0.003039342193471217 -0.7178649052072967 -2.219952427122569 -0.658349870247449 -2.191309704240082 -0.08993094495510154 -3.648226767105204</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"21\" source=\"#ID1885\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1881\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1879\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1880\"/>\r\n                </vertices>\r\n                <triangles count=\"7\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1881\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1882\"/>\r\n                    <p>0 0 1 1 2 2 1 3 6 4 2 5 8 6 9 7 10 8 14 9 15 10 16 11 20 12 21 13 22 14 9 15 26 16 10 17 28 18 21 19 20 20</p>\r\n                </triangles>\r\n                <triangles count=\"7\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1881\"/>\r\n                    <p>3 4 5 3 7 4 11 12 13 17 18 19 23 24 25 11 27 12 25 24 29</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1886\">\r\n            <mesh>\r\n                <source id=\"ID1887\">\r\n                    <float_array count=\"84\" id=\"ID1891\">-0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4857785105705261 0.3487239181995392 0.4755116403102875</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"28\" source=\"#ID1891\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1888\">\r\n                    <float_array count=\"84\" id=\"ID1892\">0.06643847930277297 -0.9938912340263244 -0.08812572492504646 0.06633104125145112 -0.97728997819365 -0.2012572768591321 0.06643161212964106 -0.9940951924153975 -0.08579970469908901 -0.06643161212964106 0.9940951924153975 0.08579970469908901 -0.06633104125145112 0.97728997819365 0.2012572768591321 -0.06643847930277297 0.9938912340263244 0.08812572492504646 0.06632714945836096 -0.9771252259347203 -0.2020569278365634 -0.06632714945836096 0.9771252259347203 0.2020569278365634 0.1483616996249534 0.7064948699628552 0.6919926334872094 0.1667432826893118 0.7039832970799793 0.6903652620970971 0.5000246418360753 0.6103909512396994 0.6143274730967185 -0.5000246418360753 -0.6103909512396994 -0.6143274730967185 -0.1667432826893118 -0.7039832970799793 -0.6903652620970971 -0.1483616996249534 -0.7064948699628552 -0.6919926334872094 -0.2829318543527633 0.6944133696561045 0.6616189521434231 -0.2819434410746255 0.6946029234445578 0.6618418804950871 0.2819434410746255 -0.6946029234445578 -0.6618418804950871 0.2829318543527633 -0.6944133696561045 -0.6616189521434231 -0.6417297630809646 0.5643090885482262 0.5193632291161162 0.6417297630809646 -0.5643090885482262 -0.5193632291161162 0.03243382116071587 -0.1353354646732991 -0.9902688318060792 0.03183450279756919 -0.1273658168435666 -0.9913448003249942 0.0324374153669634 -0.1353833180656773 -0.9902621729995744 -0.0324374153669634 0.1353833180656773 0.9902621729995744 -0.03183450279756919 0.1273658168435666 0.9913448003249942 -0.03243382116071587 0.1353354646732991 0.9902688318060792 0.0318232705334067 -0.1272166352544075 -0.9913643160650402 -0.0318232705334067 0.1272166352544075 0.9913643160650402</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"28\" source=\"#ID1892\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1890\">\r\n                    <float_array count=\"48\" id=\"ID1893\">-0.514299458387062 3.558040160755181 -4.622104547076903 3.529735340488684 -0.5773041346071366 3.60557285021357 -4.660232738055397 3.07144481308713 -4.618183617302604 3.123022643673471 -0.5103840265403392 3.151817006159239 2.970250233962921 1.931303125244438 3.010987332162051 1.861343232198031 2.927827369906226 1.871284954379196 4.543290583036389 0.6429759251745825 4.534230771580503 0.5663574870330614 0.4995400012906756 0.7478869024359247 0.6423111745411636 0.8299071247853209 0.6628200850528088 0.7707955892611047 0.5891112246848734 0.7653338723494632 0.0746122667299122 -2.457676676137602 -3.969698889945972 -2.966744434585249 0.1187093862438805 -2.40132840165215 4.534342051249654 0.5681553693967262 0.4905992050906123 0.6730013937242312 0.4996467130933653 0.7496219451777118 -3.866319101991072 -3.067124713239394 -3.924921539642796 -3.031533338845224 0.1128090865029688 -2.491105099802389</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"24\" source=\"#ID1893\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1889\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1887\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1888\"/>\r\n                </vertices>\r\n                <triangles count=\"8\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1889\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1890\"/>\r\n                    <p>0 0 1 1 2 2 6 3 1 4 0 5 8 6 9 7 10 8 14 9 15 10 8 11 14 12 18 13 15 14 20 15 21 16 22 17 15 18 9 19 8 20 26 21 21 22 20 23</p>\r\n                </triangles>\r\n                <triangles count=\"8\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1889\"/>\r\n                    <p>3 4 5 5 4 7 11 12 13 13 16 17 16 19 17 23 24 25 13 12 16 25 24 27</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1894\">\r\n            <mesh>\r\n                <source id=\"ID1895\">\r\n                    <float_array count=\"108\" id=\"ID1899\">-0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2036990523338318 0.3694864809513092 0.4869411289691925</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"36\" source=\"#ID1899\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1896\">\r\n                    <float_array count=\"108\" id=\"ID1900\">0.9795936295032293 0.18214670401301 -0.08496410567932189 0.9795936295032293 0.18214670401301 -0.08496410567932189 0.9795936295032293 0.18214670401301 -0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 0.1912466287913627 -0.9673905650834347 0.1660729404914957 0.1901391011590887 -0.9683589746445472 0.1616416358361136 0.1323020193661333 -0.9897186121510229 -0.05434376167967066 -0.1323020193661333 0.9897186121510229 0.05434376167967066 -0.1901391011590887 0.9683589746445472 -0.1616416358361136 -0.1912466287913627 0.9673905650834347 -0.1660729404914957 -0.2737980892231487 0.2910412612865604 -0.9166949277521288 -0.1877574692592857 -0.1524536115158973 -0.9703118205366297 -0.27525050122197 0.3015517299802667 -0.9128547067978357 0.27525050122197 -0.3015517299802667 0.9128547067978357 0.1877574692592857 0.1524536115158973 0.9703118205366297 0.2737980892231487 -0.2910412612865604 0.9166949277521288 0.04849407853223773 0.6545005993707064 0.7545046651749046 0.04873458354262738 0.6535903151767286 0.7552778563377263 0.04872646369884298 0.6536210681566902 0.7552517666295874 -0.04872646369884298 -0.6536210681566902 -0.7552517666295874 -0.04873458354262738 -0.6535903151767286 -0.7552778563377263 -0.04849407853223773 -0.6545005993707064 -0.7545046651749046 0.1288838023786896 -0.9894411854224582 -0.06629559619018259 -0.1288838023786896 0.9894411854224582 0.06629559619018259 0.04848283384157669 0.654543128816357 0.754468493273234 -0.04848283384157669 -0.654543128816357 -0.754468493273234 -0.1823608443937586 -0.1741080918962435 -0.9676935954982056 0.1823608443937586 0.1741080918962435 0.9676935954982056 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"36\" source=\"#ID1900\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1898\">\r\n                    <float_array count=\"48\" id=\"ID1901\">3.942270540375164 3.460901661789526 3.964759705040326 3.565723571073764 4.068781433212398 3.498097921829887 0.4826561900046933 4.017302936508278 0.4710806939569447 3.911389289020603 -1.281733807990918 4.302568195073747 -2.513045940023659 3.740222789853266 -0.9861907509344283 4.496649532908113 -2.44286319332222 3.649448456932891 2.326884740212548 0.3388181497531386 0.6230291713841536 -0.1205493134629069 0.5893996542737505 -0.01774090714535293 0.2117883897707467 3.230774675204582 -1.545347190268103 3.577436442692035 -1.542667919918237 3.61737196778006 2.304360962456652 0.4165031666429619 2.325117488597726 0.3439589166597305 0.5874647138896388 -0.01209407751420741 -4.141120206364048 0.1043282782762547 -4.083379394414218 0.1351289780370625 -3.171607438855324 -1.08978836902274 -3.992289723655305 3.772382147634574 -3.99577208095218 3.732484980792526 -4.064832195748746 3.724709580097823</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"24\" source=\"#ID1901\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1897\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1895\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1896\"/>\r\n                </vertices>\r\n                <triangles count=\"8\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1897\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1898\"/>\r\n                    <p>0 0 1 1 2 2 6 3 7 4 8 5 12 6 13 7 14 8 18 9 19 10 20 11 7 12 24 13 8 14 26 15 18 16 20 17 28 18 13 19 12 20 30 21 31 22 32 23</p>\r\n                </triangles>\r\n                <triangles count=\"8\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1897\"/>\r\n                    <p>3 4 5 9 10 11 15 16 17 21 22 23 9 25 10 21 23 27 17 16 29 33 34 35</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1902\">\r\n            <mesh>\r\n                <source id=\"ID1903\">\r\n                    <float_array count=\"132\" id=\"ID1906\">0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"44\" source=\"#ID1906\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1904\">\r\n                    <float_array count=\"132\" id=\"ID1907\">0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.9997871805147028 0.02062992192086592 0 -0.9997871805147028 0.02062992192086592 0 -0.9997871805147028 0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 0 0 -1 -0 -0 1 1 0 0 -1 -0 -0 0 -0.9997871805147028 0.02062992192086593 0 -0.9997871805147028 0.02062992192086593 0 -0.9997871805147028 0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.2374728579818554 0.971394174226884 0 0.2374728579818554 0.971394174226884 0 0.2374728579818554 0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 0 0.2374728579818554 0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -1 0 0 1 -0 -0</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"44\" source=\"#ID1907\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1905\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1903\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1904\"/>\r\n                </vertices>\r\n                <triangles count=\"20\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1905\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 0 5 4 19 7 20 8 9 21 10 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 35 34 39 38 41 42 28 30 31 33 43</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1908\">\r\n            <mesh>\r\n                <source id=\"ID1909\">\r\n                    <float_array count=\"24\" id=\"ID1913\">-0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" source=\"#ID1913\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1910\">\r\n                    <float_array count=\"24\" id=\"ID1914\">0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 -0 -1 -0</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"8\" source=\"#ID1914\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1912\">\r\n                    <float_array count=\"8\" id=\"ID1915\">4.980598986148834 -5.075943398475648 -4.980599880218506 -5.075943398475648 4.980598986148834 1.353845890363058 -4.980599880218506 1.353845890363058</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"4\" source=\"#ID1915\" stride=\"2\">\r\n                            <param name=\"S\" type=\"float\"/>\r\n                            <param name=\"T\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1911\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1909\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1910\"/>\r\n                </vertices>\r\n                <triangles count=\"2\" material=\"Material3\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1911\"/>\r\n                    <input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1912\"/>\r\n                    <p>0 0 1 1 2 2 2 2 1 1 6 3</p>\r\n                </triangles>\r\n                <triangles count=\"2\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1911\"/>\r\n                    <p>3 4 5 7 4 3</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1916\">\r\n            <mesh>\r\n                <source id=\"ID1917\">\r\n                    <float_array count=\"900\" id=\"ID1920\">0.2478943765163422 1.814255595207214 0.000725477933883667 0.2448281943798065 1.616339206695557 0.007112216204404831 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.616339206695557 0.007112216204404831 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2851106524467468 1.814255595207214 -0.01469011977314949 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2851106524467468 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2478943765163422 1.616339206695557 -0.00830315425992012 0.2478943765163422 1.616339206695557 -0.00830315425992012 0.2478943765163422 1.616339206695557 0.02252786979079247 0.2478943765163422 1.616339206695557 0.02252786979079247 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2695431709289551 1.453958511352539 0.0193280465900898 0.2695431709289551 1.453958511352539 0.0193280465900898 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2664770185947418 1.453958511352539 0.03474375978112221 0.2664770185947418 1.453958511352539 0.03474375978112221 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2566267848014832 1.814255595207214 0.01379405707120895 0.269695371389389 1.814255595207214 0.0225263275206089 0.269695371389389 1.814255595207214 0.0225263275206089 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2782755792140961 1.453958511352539 0.006259582936763763 0.2782755792140961 1.453958511352539 0.006259582936763763 0.2566267848014832 1.616339206695557 -0.02137184515595436 0.2566267848014832 1.616339206695557 -0.02137184515595436 0.2695431709289551 1.453958511352539 0.05015917494893074 0.2695431709289551 1.453958511352539 0.05015917494893074 0.2566267848014832 1.616339206695557 0.0355965681374073 0.2566267848014832 1.616339206695557 0.0355965681374073 0.2851106524467468 1.814255595207214 0.02559248730540276 0.2851106524467468 1.814255595207214 0.02559248730540276 0.269695371389389 1.814255595207214 0.0225263275206089 0.269695371389389 1.814255595207214 0.0225263275206089 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2782755792140961 1.312108874320984 0.05416208878159523 0.2782755792140961 1.312108874320984 0.05416208878159523 0.2695431709289551 1.312108874320984 0.06723077595233917 0.2695431709289551 1.312108874320984 0.06723077595233917 0.2664770185947418 1.312108874320984 0.08264619112014771 0.2664770185947418 1.312108874320984 0.08264619112014771 0.3005262613296509 1.814255595207214 0.0225263275206089 0.3005262613296509 1.814255595207214 0.0225263275206089 0.269695371389389 1.616339206695557 0.04432866349816322 0.2851106524467468 1.814255595207214 0.02559248730540276 0.2851106524467468 1.814255595207214 0.02559248730540276 0.269695371389389 1.616339206695557 0.04432866349816322 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2696953117847443 1.616339206695557 -0.03010406345129013 0.2696953117847443 1.616339206695557 -0.03010406345129013 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2913441359996796 1.312108874320984 0.0454297699034214 0.2913441359996796 1.312108874320984 0.0454297699034214 0.2913441359996796 1.453958511352539 -0.002472575753927231 0.2913441359996796 1.453958511352539 -0.002472575753927231 0.2695431709289551 1.312108874320984 0.09806185960769653 0.2695431709289551 1.312108874320984 0.09806185960769653 0.2782755792140961 1.453958511352539 0.06322780251502991 0.2782755792140961 1.453958511352539 0.06322780251502991 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3135948479175568 1.814255595207214 0.01379405707120895 0.2851106524467468 1.616339206695557 0.04739503934979439 0.3005262613296509 1.814255595207214 0.0225263275206089 0.3005262613296509 1.814255595207214 0.0225263275206089 0.2851106524467468 1.616339206695557 0.04739503934979439 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2851106524467468 1.616339206695557 -0.03317039087414742 0.2851106524467468 1.616339206695557 -0.03317039087414742 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2696953117847443 1.160151720046997 0.1071765571832657 0.2696953117847443 1.160151720046997 0.1071765571832657 0.2566267848014832 1.160151720046997 0.1159086525440216 0.2566267848014832 1.160151720046997 0.1159086525440216 0.2478943765163422 1.160151720046997 0.1289774775505066 0.2478943765163422 1.160151720046997 0.1289774775505066 0.2448281943798065 1.160151720046997 0.1443928182125092 0.2448281943798065 1.160151720046997 0.1443928182125092 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3005262613296509 1.616339206695557 0.04432866349816322 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3005262613296509 1.616339206695557 0.04432866349816322 0.2913441956043243 1.453958511352539 0.07196013629436493 0.2913441956043243 1.453958511352539 0.07196013629436493 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3005262613296509 1.616339206695557 -0.03010406345129013 0.3005262613296509 1.616339206695557 -0.03010406345129013 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3067594766616821 1.453958511352539 -0.005538847297430039 0.3067594766616821 1.453958511352539 -0.005538847297430039 0.2851106524467468 1.160151720046997 0.1041101217269898 0.2851106524467468 1.160151720046997 0.1041101217269898 0.3067594766616821 1.312108874320984 0.04236360266804695 0.3067594766616821 1.312108874320984 0.04236360266804695 0.2478943765163422 1.160151720046997 0.1598084419965744 0.2478943765163422 1.160151720046997 0.1598084419965744 0.2782755792140961 1.312108874320984 0.1111303716897965 0.2782755792140961 1.312108874320984 0.1111303716897965 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3135948479175568 1.616339206695557 0.0355965681374073 0.3135948479175568 1.616339206695557 0.0355965681374073 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3067594766616821 1.453958511352539 0.07502646744251251 0.3067594766616821 1.453958511352539 0.07502646744251251 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3135948479175568 1.616339206695557 -0.02137184515595436 0.3135948479175568 1.616339206695557 -0.02137184515595436 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3221750557422638 1.453958511352539 -0.002472575753927231 0.3221750557422638 1.453958511352539 -0.002472575753927231 0.2688740491867065 1.048043012619019 0.1517271846532822 0.2688740491867065 1.048043012619019 0.1517271846532822 0.2534586787223816 1.048043012619019 0.1547933518886566 0.2534586787223816 1.048043012619019 0.1547933518886566 0.2403901517391205 1.048043012619019 0.1635255962610245 0.2403901517391205 1.048043012619019 0.1635255962610245 0.2316577583551407 1.048043012619019 0.1765943020582199 0.2316577583551407 1.048043012619019 0.1765943020582199 0.228591576218605 1.048043012619019 0.1920096725225449 0.228591576218605 1.048043012619019 0.1920096725225449 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3223271369934082 1.616339206695557 0.02252786979079247 0.3223271369934082 1.616339206695557 0.02252786979079247 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3221750557422638 1.453958511352539 0.07196013629436493 0.3221750557422638 1.453958511352539 0.07196013629436493 0.2913441956043243 1.312108874320984 0.1198627650737763 0.2913441956043243 1.312108874320984 0.1198627650737763 0.3223271369934082 1.616339206695557 -0.00830315425992012 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.616339206695557 -0.00830315425992012 0.3352437019348145 1.453958511352539 0.006259582936763763 0.3352437019348145 1.453958511352539 0.006259582936763763 0.3221750557422638 1.312108874320984 0.0454297699034214 0.3221750557422638 1.312108874320984 0.0454297699034214 0.2842896282672882 1.048043012619019 0.1547933518886566 0.2842896282672882 1.048043012619019 0.1547933518886566 0.3005262613296509 1.160151720046997 0.1071765571832657 0.3005262613296509 1.160151720046997 0.1071765571832657 0.2316577583551407 1.048043012619019 0.207425132393837 0.2316577583551407 1.048043012619019 0.207425132393837 0.2566267848014832 1.160151720046997 0.1728769987821579 0.2566267848014832 1.160151720046997 0.1728769987821579 0.3253934681415558 1.616339206695557 0.007112216204404831 0.3253934681415558 1.616339206695557 0.007112216204404831 0.3352437019348145 1.453958511352539 0.06322780251502991 0.3352437019348145 1.453958511352539 0.06322780251502991 0.3067594766616821 1.312108874320984 0.1229289472103119 0.3067594766616821 1.312108874320984 0.1229289472103119 0.3439759612083435 1.453958511352539 0.0193280465900898 0.3439759612083435 1.453958511352539 0.0193280465900898 0.3352437019348145 1.312108874320984 0.05416208878159523 0.3352437019348145 1.312108874320984 0.05416208878159523 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.3439759612083435 1.453958511352539 0.05015917494893074 0.3439759612083435 1.453958511352539 0.05015917494893074 0.3221750557422638 1.312108874320984 0.1198627650737763 0.3221750557422638 1.312108874320984 0.1198627650737763 0.269695371389389 1.160151720046997 0.1816091537475586 0.269695371389389 1.160151720046997 0.1816091537475586 0.3470422923564911 1.453958511352539 0.03474375978112221 0.3470422923564911 1.453958511352539 0.03474375978112221 0.3439759612083435 1.312108874320984 0.06723077595233917 0.3439759612083435 1.312108874320984 0.06723077595233917 0.3135948479175568 1.160151720046997 0.1159086525440216 0.3135948479175568 1.160151720046997 0.1159086525440216 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2973582744598389 1.048043012619019 0.1635255962610245 0.2973582744598389 1.048043012619019 0.1635255962610245 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2403901517391205 1.048043012619019 0.220493957400322 0.2403901517391205 1.048043012619019 0.220493957400322 0.3352437019348145 1.312108874320984 0.1111303716897965 0.3352437019348145 1.312108874320984 0.1111303716897965 0.2851106524467468 1.160151720046997 0.1846755594015122 0.2851106524467468 1.160151720046997 0.1846755594015122 0.3470422923564911 1.312108874320984 0.08264619112014771 0.3470422923564911 1.312108874320984 0.08264619112014771 0.3223271369934082 1.160151720046997 0.1289774775505066 0.3223271369934082 1.160151720046997 0.1289774775505066 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9449533820152283 0.2128610759973526 0.2634618580341339 0.9449533820152283 0.2128610759973526 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2349779903888702 0.9415437579154968 0.184581384062767 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.3439759612083435 1.312108874320984 0.09806185960769653 0.3439759612083435 1.312108874320984 0.09806185960769653 0.3005262613296509 1.160151720046997 0.1816091537475586 0.3005262613296509 1.160151720046997 0.1816091537475586 0.2534587383270264 1.048043012619019 0.229226216673851 0.2534587383270264 1.048043012619019 0.229226216673851 0.3253934681415558 1.160151720046997 0.1443928182125092 0.3253934681415558 1.160151720046997 0.1443928182125092 0.3060905337333679 1.048043012619019 0.1765943020582199 0.3060905337333679 1.048043012619019 0.1765943020582199 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.3135948479175568 1.160151720046997 0.1728769987821579 0.3135948479175568 1.160151720046997 0.1728769987821579 0.2688740491867065 1.048043012619019 0.2322925180196762 0.2688740491867065 1.048043012619019 0.2322925180196762 0.3223271369934082 1.160151720046997 0.1598084419965744 0.3223271369934082 1.160151720046997 0.1598084419965744 0.3091568052768707 1.048043012619019 0.1920096725225449 0.3091568052768707 1.048043012619019 0.1920096725225449 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2842896282672882 1.048043012619019 0.229226216673851 0.2842896282672882 1.048043012619019 0.229226216673851 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.3060905337333679 1.048043012619019 0.2074250131845474 0.3060905337333679 1.048043012619019 0.2074250131845474 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2973582744598389 1.048043012619019 0.220493957400322 0.2973582744598389 1.048043012619019 0.220493957400322 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"300\" source=\"#ID1920\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1918\">\r\n                    <float_array count=\"900\" id=\"ID1921\">-0.9278834584867581 0.04082824076895225 0.3706283073678604 -0.9977752429982424 -0.06659565527506635 -0.003095667663508074 -0.9999060571191866 -0.0015009125374733 -0.01362439715793088 0.9999060571191866 0.0015009125374733 0.01362439715793088 0.9977752429982424 0.06659565527506635 0.003095667663508074 0.9278834584867581 -0.04082824076895225 -0.3706283073678604 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0.9181195771732412 -0.1128555365036274 -0.3798948142469269 0.9181195771732412 0.1128555365036274 0.3798948142469269 -0.9262328309242459 -0.009838731266650419 0.376823489561253 0.9262328309242459 0.009838731266650419 -0.376823489561253 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 -0.9074324623206211 -0.16194011862512 -0.3877392478282493 0.9074324623206211 0.16194011862512 0.3877392478282493 -0.9181627939907852 -0.04338327862263842 -0.3938209934310071 0.9181627939907852 0.04338327862263842 0.3938209934310071 -0.9973766201166378 -0.07177404651176834 -0.009400207021054655 0.9973766201166378 0.07177404651176834 0.009400207021054655 -0.7118594156381571 0.07690255944710663 0.6980989677100129 0.7118594156381571 -0.07690255944710663 -0.6980989677100129 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 -0.6812443792921055 -0.2235944870704588 -0.6970735980042656 0.6812443792921055 0.2235944870704588 0.6970735980042656 -0.7023525969223536 -0.1425518319043876 -0.6974093524015353 0.7023525969223536 0.1425518319043876 0.6974093524015353 -0.9257640070876061 0.03240469828584276 0.3767106830315573 0.9257640070876061 -0.03240469828584276 -0.3767106830315573 -0.7122707414796282 0.04923594247854864 0.7001758441993767 0.7122707414796282 -0.04923594247854864 -0.7001758441993767 0 1 0 -0 -1 -0 -0.3855939466651815 0.1010297577800753 0.9171206552782838 0.3855939466651815 -0.1010297577800753 -0.9171206552782838 0 1 0 -0 -1 -0 -0.698206287333844 -0.07838876277499718 -0.7115920054343605 0.698206287333844 0.07838876277499718 0.7115920054343605 -0.6865612058071743 -0.2129815016822076 -0.6951780999296444 0.6865612058071743 0.2129815016822076 0.6951780999296444 -0.918631782408507 -0.08137942273024804 -0.3866432954352902 0.918631782408507 0.08137942273024804 0.3866432954352902 -0.9976578949460037 0.06826378471123371 -0.004333629980390467 0.9976578949460037 -0.06826378471123371 0.004333629980390467 0 1 0 -0 -1 -0 -0.3892810171184926 0.1013539679360428 0.9155258941694722 -2.393178270834055e-006 0.1094975151487385 0.9939870694181712 2.393178270834055e-006 -0.1094975151487385 -0.9939870694181712 0.3892810171184926 -0.1013539679360428 -0.9155258941694722 0 1 0 -0 -1 -0 -0.3760075129696564 -0.1014619271283846 -0.9210449649901834 -0.3837485045026092 -0.151865364150826 -0.9108644226575917 0.3837485045026092 0.151865364150826 0.9108644226575917 0.3760075129696564 0.1014619271283846 0.9210449649901834 -0.3586501388646112 -0.3043385606965022 -0.8824670636151676 0.3586501388646112 0.3043385606965022 0.8824670636151676 -0.3608812211348434 -0.2502658350465012 -0.8984051179956075 0.3608812211348434 0.2502658350465012 0.8984051179956075 -0.9051185998244229 0.2040136890513151 0.373013049277836 0.9051185998244229 -0.2040136890513151 -0.373013049277836 -0.7023014897468005 0.1308985885008609 0.6997415072924479 0.7023014897468005 -0.1308985885008609 -0.6997415072924479 0 1 0 -0 -1 -0 -0.008401330541124052 0.1380870073671109 0.9903844688006441 0.3855926321539393 0.101029953574417 0.9171211863812481 -0.3855926321539393 -0.101029953574417 -0.9171211863812481 0.008401330541124052 -0.1380870073671109 -0.9903844688006441 0 1 0 -0 -1 -0 -1.638231529636708e-006 -0.1094972025388148 -0.99398710385673 -0.007631153113921558 -0.1391706131257301 -0.9902390145537391 0.007631153113921558 0.1391706131257301 0.9902390145537391 1.638231529636708e-006 0.1094972025388148 0.99398710385673 -0.3662193663722516 -0.3115596822211134 -0.8768203579457914 0.3662193663722516 0.3115596822211134 0.8768203579457914 -0.6959225224503867 -0.1881870782373219 -0.6930205381738634 0.6959225224503867 0.1881870782373219 0.6930205381738634 -0.9233610041195496 -0.02695596401956038 -0.3829854201860868 0.9233610041195496 0.02695596401956038 0.3829854201860868 -0.9900751925700994 0.1405038325815632 -0.003128272234421052 0.9900751925700994 -0.1405038325815632 0.003128272234421052 0 1 0 -0 -1 -0 0.372444873648539 0.1536379776875442 0.9152487027606241 0.7118615315130566 0.07690215948648875 0.6980968541815671 -0.7118615315130566 -0.07690215948648875 -0.6980968541815671 -0.372444873648539 -0.1536379776875442 -0.9152487027606241 -0.3716544858453784 0.2062193195996614 0.9051776264219417 0.3716544858453784 -0.2062193195996614 -0.9051776264219417 0 1 0 -0 -1 -0 0.3760050988688112 -0.1014621485315936 -0.9210459261296412 0.3727923870498216 -0.1053407161597084 -0.9219160317928394 -0.3727923870498216 0.1053407161597084 0.9219160317928394 -0.3760050988688112 0.1014621485315936 0.9210459261296412 0.008524709455946767 -0.2412434067665272 -0.9704271987224861 -0.008524709455946767 0.2412434067665272 0.9704271987224861 -0.001769691265078404 -0.3831527280308419 -0.9236833089297164 0.001769691265078404 0.3831527280308419 0.9236833089297164 0.006757712597036472 -0.3479646493279616 -0.937483299125123 -0.006757712597036472 0.3479646493279616 0.937483299125123 -0.8887837245303268 0.2787263987682289 0.3638338709352034 0.8887837245303268 -0.2787263987682289 -0.3638338709352034 -0.6731366259941853 0.3011140907802258 0.6754386627065128 0.6731366259941853 -0.3011140907802258 -0.6754386627065128 0 1 0 -0 -1 -0 0.92788273378111 0.04082861569481912 0.3706300803919435 0.69743660672445 0.1455764279823549 0.7017048405252619 -0.69743660672445 -0.1455764279823549 -0.7017048405252619 -0.92788273378111 -0.04082861569481912 -0.3706300803919435 0.007541491712564928 0.2479115095044231 0.96875332740486 -0.007541491712564928 -0.2479115095044231 -0.96875332740486 0 1 0 -0 -1 -0 0.6982075685403409 -0.07838876150760024 -0.7115907484659211 0.7003338033897056 -0.05443976690440847 -0.7117365211994555 -0.7003338033897056 0.05443976690440847 0.7117365211994555 -0.6982075685403409 0.07838876150760024 0.7115907484659211 0.3798630473314066 -0.1989567823800468 -0.9033937480506915 -0.3798630473314066 0.1989567823800468 0.9033937480506915 -0.005635586040699611 -0.2960074815373276 -0.9551689960650454 0.005635586040699611 0.2960074815373276 0.9551689960650454 -0.3816071479147141 -0.2387551755530475 -0.8929568583123325 0.3816071479147141 0.2387551755530475 0.8929568583123325 -0.7098304672308439 -0.1417542192581981 -0.6899611939184266 0.7098304672308439 0.1417542192581981 0.6899611939184266 -0.9289611800626436 -0.01936517639756433 -0.369670279951894 0.9289611800626436 0.01936517639756433 0.369670279951894 -0.9944649258713336 0.1045181174147558 0.01074589892926797 0.9944649258713336 -0.1045181174147558 -0.01074589892926797 0.9999060487122554 -0.001500897788054666 -0.01362501576053045 0.9179646390316492 0.1148282162395459 0.3796780244401015 -0.9179646390316492 -0.1148282162395459 -0.3796780244401015 -0.9999060487122554 0.001500897788054666 0.01362501576053045 0.3806523626443638 0.2518291433121385 0.8897673074416356 -0.3806523626443638 -0.2518291433121385 -0.8897673074416356 -0.3537134707814479 0.3497158032888347 0.8675169378852421 0.3537134707814479 -0.3497158032888347 -0.8675169378852421 0.921345206780097 0.005934785861217529 -0.3887001263958144 0.9181623827624436 -0.04338333562204136 -0.3938219458972514 -0.9181623827624436 0.04338333562204136 0.3938219458972514 -0.921345206780097 -0.005934785861217529 0.3887001263958144 0.7015290843239972 -0.1283687549116059 -0.7009838847006245 -0.7015290843239972 0.1283687549116059 0.7009838847006245 0.3657233985650752 -0.3438852352404744 -0.8648637700387356 -0.3657233985650752 0.3438852352404744 0.8648637700387356 0.3642088029488595 -0.3089946523204002 -0.8785637442394 -0.3642088029488595 0.3089946523204002 0.8785637442394 0.3505759552465831 -0.4015174329235807 -0.8460970692901636 -0.3505759552465831 0.4015174329235807 0.8460970692901636 -0.9013961822165807 0.20734820052424 0.3801205682737156 0.9013961822165807 -0.20734820052424 -0.3801205682737156 -0.6596514643945155 0.3673948200588811 0.6556531031849642 0.6596514643945155 -0.3673948200588811 -0.6556531031849642 0.9978309586316174 0.06571395092330679 -0.00388003226236238 -0.9978309586316174 -0.06571395092330679 0.00388003226236238 0.6994711189498942 0.2180208117223518 0.6805931820191191 -0.6994711189498942 -0.2180208117223518 -0.6805931820191191 0.008464885077093781 0.348522777411564 0.93726208679641 -0.008464885077093781 -0.348522777411564 -0.93726208679641 0.9211619882759639 -0.03774266290814756 -0.3873449144523199 -0.9211619882759639 0.03774266290814756 0.3873449144523199 0.6801456499297029 -0.2935333652825748 -0.671744042286635 -0.6801456499297029 0.2935333652825748 0.671744042286635 0.3790810955637079 -0.19642576246323 -0.9042756453797469 -0.3790810955637079 0.19642576246323 0.9042756453797469 -0.006044309831385856 -0.1921480039205631 -0.9813473446787359 0.006044309831385856 0.1921480039205631 0.9813473446787359 -0.3905063998979781 -0.158817254297096 -0.9067975691278908 0.3905063998979781 0.158817254297096 0.9067975691278908 -0.7146296876788553 -0.1007834488547026 -0.6922045260795203 0.7146296876788553 0.1007834488547026 0.6922045260795203 -0.9280009073201813 -0.02617730560519464 -0.3716571870476507 0.9280009073201813 0.02617730560519464 0.3716571870476507 -0.9985404266470882 0.05387682925104136 0.003782012864173349 0.9985404266470882 -0.05387682925104136 -0.003782012864173349 0.9183014699405613 0.1508524255126332 0.3660136008701858 -0.9183014699405613 -0.1508524255126332 -0.3660136008701858 0.3751679501491385 0.2980710925467551 0.8777258301821118 -0.3751679501491385 -0.2980710925467551 -0.8777258301821118 -0.3509058671403431 0.4021828481140018 0.8456441503903361 0.3509058671403431 -0.4021828481140018 -0.8456441503903361 0.998110783889415 0.06055026068505935 -0.01041772598165128 -0.998110783889415 -0.06055026068505935 0.01041772598165128 0.9063208563190007 -0.1999380076574004 -0.3723000114090551 -0.9063208563190007 0.1999380076574004 0.3723000114090551 0.6590070579046725 -0.3672064245772851 -0.6564062304556487 -0.6590070579046725 0.3672064245772851 0.6564062304556487 0.7056660067207059 -0.1711741214844488 -0.6875572027787068 -0.7056660067207059 0.1711741214844488 0.6875572027787068 0.683689509659014 -0.2771341735831983 -0.675103921048141 -0.683689509659014 0.2771341735831983 0.675103921048141 -0.9179897149819096 0.1269594088680677 0.3757342035100124 0.9179897149819096 -0.1269594088680677 -0.3757342035100124 -0.6780154320216124 0.2762585796519279 0.6811580368088197 0.6780154320216124 -0.2762585796519279 -0.6811580368088197 0.7001825816432064 0.2013928833579944 0.6849709912808045 -0.7001825816432064 -0.2013928833579944 -0.6849709912808045 0.00182622600025505 0.3838176269837862 0.9234071117958379 -0.00182622600025505 -0.3838176269837862 -0.9234071117958379 0.9973814967216617 -0.07228423368496069 -0.002267059292581186 -0.9973814967216617 0.07228423368496069 0.002267059292581186 0.8880252344353042 -0.2794186648003958 -0.3651525609485538 -0.8880252344353042 0.2794186648003958 0.3651525609485538 2.767822979625016e-006 -0.9928096497302067 0.119703798581848 6.988246788429636e-006 -0.9928091445060229 0.119707988607209 1.022978707970098e-012 -0.9928086747316344 0.1197118848636839 -1.022978707970098e-012 0.9928086747316344 -0.1197118848636839 -6.988246788429636e-006 0.9928091445060229 -0.119707988607209 -2.767822979625016e-006 0.9928096497302067 -0.119703798581848 7.7044375863041e-006 -0.9928091089888651 0.1197082831276827 -4.487500212477783e-011 -0.992809109018331 0.1197082831312356 4.487500212477783e-011 0.992809109018331 -0.1197082831312356 -7.7044375863041e-006 0.9928091089888651 -0.1197082831276827 -7.704541850535809e-006 -0.9928091089888644 0.1197082831276827 7.704541850535809e-006 0.9928091089888644 -0.1197082831276827 -6.988304734759506e-006 -0.9928091445078384 0.1197079885921475 -2.767862602807982e-006 -0.99280964972893 0.1197037985924347 2.767862602807982e-006 0.99280964972893 -0.1197037985924347 6.988304734759506e-006 0.9928091445078384 -0.1197079885921475 7.263087261654657e-007 -0.9928099450407807 0.119701349314009 -7.263087261654657e-007 0.9928099450407807 -0.119701349314009 -1.620367296495998e-018 -0.9928091383418375 0.1197080399344108 1.620367296495998e-018 0.9928091383418375 -0.1197080399344108 1.864050476297287e-006 -0.9928080027483553 0.1197174576882873 -1.864050476297287e-006 0.9928080027483553 -0.1197174576882873 0.9244950035235966 0.07025899496707923 0.3746633983806281 -0.9244950035235966 -0.07025899496707923 -0.3746633983806281 0.366829762646364 0.3116869016756962 0.8765199373434794 -0.366829762646364 -0.3116869016756962 -0.8765199373434794 -0.3650183505487395 0.306446614185513 0.8791200580221754 0.3650183505487395 -0.306446614185513 -0.8791200580221754 0.989853531960413 -0.142085927353355 0.001254796251494292 -0.989853531960413 0.142085927353355 -0.001254796251494292 0.9089907206869328 -0.2017201479115875 -0.3647531379324622 -0.9089907206869328 0.2017201479115875 0.3647531379324622 -7.263066999167067e-007 -0.9928099450412038 0.1197013493105016 7.263066999167067e-007 0.9928099450412038 -0.1197013493105016 0.9235320681947282 -0.1196443897616437 -0.364381309913848 -0.9235320681947282 0.1196443897616437 0.364381309913848 3.72812004797981e-006 -0.9928074639693836 0.1197219256142426 -3.72812004797981e-006 0.9928074639693836 -0.1197219256142426 -0.7014909392805421 0.1815654435095798 0.6891621375485398 0.7014909392805421 -0.1815654435095798 -0.6891621375485398 0.6969906333227904 0.1873181938119533 0.6921820218174717 -0.6969906333227904 -0.1873181938119533 -0.6921820218174717 -0.003396875497569148 0.2964495907894091 0.9550424604998702 0.003396875497569148 -0.2964495907894091 -0.9550424604998702 0.9240998232652282 0.02525655702831663 0.3813156474212005 -0.9240998232652282 -0.02525655702831663 -0.3813156474212005 0.9958207025834769 -0.09034340820677622 0.01338644462634576 -0.9958207025834769 0.09034340820677622 -0.01338644462634576 1.53915816714803e-022 -0.9928091383418375 0.11970803993441 -1.53915816714803e-022 0.9928091383418375 -0.11970803993441 4.737953150718969e-006 -0.9928073430655861 0.1197229281825484 -9.319458481162999e-007 -0.9928076242494585 0.1197205965207222 9.319458481162999e-007 0.9928076242494585 -0.1197205965207222 -4.737953150718969e-006 0.9928073430655861 -0.1197229281825484 0.3650778311907859 0.2458346860527413 0.8979328952134352 -0.3650778311907859 -0.2458346860527413 -0.8979328952134352 -0.3825054217257609 0.2090597695823078 0.8999908972276278 0.3825054217257609 -0.2090597695823078 -0.8999908972276278 0.9182591755738117 0.03778298693575775 0.3941732263519633 -0.9182591755738117 -0.03778298693575775 -0.3941732263519633 0.9986935520278727 -0.04870062046963348 0.01547380702423765 -0.9986935520278727 0.04870062046963348 -0.01547380702423765 -1.864045275509994e-006 -0.99280800274727 0.1197174576972886 1.864045275509994e-006 0.99280800274727 -0.1197174576972886 -4.943669760534657e-011 -0.992807905415018 0.1197182648781908 4.943669760534657e-011 0.992807905415018 -0.1197182648781908 0.6914121802415991 0.1565791227048186 0.7052887177224286 -0.6914121802415991 -0.1565791227048186 -0.7052887177224286 -0.00671355415309078 0.2049424367028966 0.9787510029772194 0.00671355415309078 -0.2049424367028966 -0.9787510029772194 0.9191827796336586 0.0314685300227289 0.3925719669603901 -0.9191827796336586 -0.0314685300227289 -0.3925719669603901 -3.728117051116277e-006 -0.9928074639650725 0.1197219256499936 3.728117051116277e-006 0.9928074639650725 -0.1197219256499936 9.318671640651015e-007 -0.9928076242463607 0.119720596546412 -9.318671640651015e-007 0.9928076242463607 -0.119720596546412 0.3723992922150309 0.1695607732054095 0.9124515939751148 -0.3723992922150309 -0.1695607732054095 -0.9124515939751148 0.6982521995652733 0.108409624641729 0.7075953780850305 -0.6982521995652733 -0.108409624641729 -0.7075953780850305 -4.737926818070232e-006 -0.9928073430628038 0.119722928205621 4.737926818070232e-006 0.9928073430628038 -0.119722928205621</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"300\" source=\"#ID1921\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1919\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1917\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1918\"/>\r\n                </vertices>\r\n                <triangles count=\"448\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1919\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 8 7 16 17 10 9 6 18 7 10 19 11 1 20 12 13 21 4 2 12 22 23 13 3 14 24 1 4 25 15 26 14 0 5 15 27 16 7 28 29 10 17 18 30 7 10 31 19 20 32 12 13 33 21 24 20 1 4 21 25 12 34 22 23 35 13 36 24 14 15 25 37 38 14 26 27 15 39 28 7 40 41 10 29 38 26 42 43 27 39 30 44 7 10 45 31 22 34 46 47 35 23 20 48 32 33 49 21 12 32 34 35 33 13 24 50 20 21 51 25 36 52 24 25 53 37 38 36 14 15 37 39 7 54 40 41 55 10 56 42 57 58 43 59 56 38 42 43 39 59 44 60 7 10 61 45 62 46 63 64 47 65 46 34 63 64 35 47 32 48 66 67 49 33 50 48 20 21 49 51 34 32 68 69 33 35 52 50 24 25 51 53 70 52 36 37 53 71 72 36 38 39 37 73 7 74 54 55 75 10 76 57 77 78 58 79 76 56 57 58 59 79 38 56 72 73 59 39 60 80 7 10 81 61 82 62 83 84 65 85 62 63 83 84 64 65 63 34 68 69 35 64 48 86 66 67 87 49 68 32 66 67 33 69 50 88 48 49 89 51 52 90 50 51 91 53 70 92 52 53 93 71 72 70 36 37 71 73 7 94 74 75 95 10 96 77 97 98 78 99 96 76 77 78 79 99 56 76 100 101 79 59 72 56 100 101 59 73 80 102 7 10 103 81 104 82 105 106 85 107 82 83 105 106 84 85 83 63 108 109 64 84 63 68 108 109 69 64 86 110 66 67 111 87 88 86 48 49 87 89 68 66 112 113 67 69 90 88 50 51 89 91 92 90 52 53 91 93 114 92 70 71 93 115 116 70 72 73 71 117 7 118 94 95 119 10 120 121 97 98 122 123 121 96 97 98 99 122 76 96 124 125 99 79 100 76 124 125 79 101 116 72 100 101 73 117 102 126 7 10 127 103 128 104 129 130 107 131 104 105 129 130 106 107 105 83 132 133 84 106 83 108 132 133 109 84 108 68 112 113 69 109 86 134 110 111 135 87 66 110 112 113 111 67 88 136 86 87 137 89 90 138 88 89 139 91 92 140 90 91 141 93 114 142 92 93 143 115 116 114 70 71 115 117 7 126 118 119 127 10 144 145 120 123 146 147 145 121 120 123 122 146 96 121 148 149 122 99 124 96 148 149 99 125 150 100 124 125 101 151 150 116 100 101 117 151 128 152 153 154 155 131 129 152 128 131 155 130 129 105 156 157 106 130 105 132 156 157 133 106 132 108 158 159 109 133 108 112 158 159 113 109 134 160 110 111 161 135 136 134 86 87 135 137 110 162 112 113 163 111 138 136 88 89 137 139 140 138 90 91 139 141 142 140 92 93 141 143 164 142 114 115 143 165 166 114 116 117 115 167 153 168 144 147 169 154 168 145 144 147 146 169 145 170 121 122 171 146 148 121 170 171 122 149 172 124 148 149 125 173 172 150 124 125 151 173 166 116 150 151 117 167 152 168 153 154 169 155 129 174 152 155 175 130 156 174 129 130 175 157 156 132 176 177 133 157 132 158 176 177 159 133 112 162 158 159 163 113 134 178 160 161 179 135 110 160 162 163 161 111 136 180 134 135 181 137 138 182 136 137 183 139 140 184 138 139 185 141 142 186 140 141 187 143 164 188 142 143 189 165 166 164 114 115 165 167 168 190 145 146 191 169 190 170 145 146 171 191 192 148 170 171 149 193 192 172 148 149 173 193 194 150 172 173 151 195 194 166 150 151 167 195 152 196 168 169 197 155 174 196 152 155 197 175 156 198 174 175 199 157 176 198 156 157 199 177 158 200 176 177 201 159 162 200 158 159 201 163 160 178 202 203 179 161 134 180 178 179 181 135 160 204 162 163 205 161 136 182 180 181 183 137 138 184 182 183 185 139 186 184 140 141 185 187 188 186 142 143 187 189 206 188 164 165 189 207 208 164 166 167 165 209 196 190 168 169 191 197 190 210 170 171 211 191 210 192 170 171 193 211 212 172 192 193 173 213 212 194 172 173 195 213 208 166 194 195 167 209 174 214 196 197 215 175 198 214 174 175 215 199 176 216 198 199 217 177 200 216 176 177 217 201 162 204 200 201 205 163 218 219 220 221 222 223 160 202 204 205 203 161 224 225 220 221 226 227 225 228 220 221 229 226 230 231 220 221 232 233 231 234 220 221 235 232 220 234 236 237 235 221 220 236 238 239 237 221 208 206 164 165 207 209 196 240 190 191 241 197 240 210 190 191 211 241 242 192 210 211 193 243 242 212 192 193 213 243 244 194 212 213 195 245 244 208 194 195 209 245 214 240 196 197 241 215 198 246 214 215 247 199 216 246 198 199 247 217 200 248 216 217 249 201 204 248 200 201 249 205 250 218 220 221 223 251 202 252 204 205 253 203 220 238 254 255 239 221 256 206 208 209 207 257 240 258 210 211 259 241 258 242 210 211 243 259 260 212 242 243 213 261 260 244 212 213 245 261 256 208 244 245 209 257 214 262 240 241 263 215 246 262 214 215 263 247 216 264 246 247 265 217 248 264 216 217 265 249 204 252 248 249 253 205 266 250 220 221 251 267 220 268 269 270 271 221 262 258 240 241 259 263 272 242 258 259 243 273 272 260 242 243 261 273 274 244 260 261 245 275 274 256 244 245 257 275 246 276 262 263 277 247 264 276 246 247 277 265 248 278 264 265 279 249 252 278 248 249 279 253 266 220 280 281 221 267 220 269 282 283 270 221 262 284 258 259 285 263 284 272 258 259 273 285 286 260 272 273 261 287 286 274 260 261 275 287 276 284 262 263 285 277 264 288 276 277 289 265 278 288 264 265 289 279 280 220 290 291 221 281 292 220 282 283 221 293 294 272 284 285 273 295 294 286 272 273 287 295 276 296 284 285 297 277 288 296 276 277 297 289 298 220 292 293 221 299 296 294 284 285 295 297</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n        <geometry id=\"ID1922\">\r\n            <mesh>\r\n                <source id=\"ID1923\">\r\n                    <float_array count=\"168\" id=\"ID1926\">0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"56\" source=\"#ID1926\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <source id=\"ID1924\">\r\n                    <float_array count=\"168\" id=\"ID1927\">-0.01178446120591827 -0.9735588360470699 -0.2281322406604561 -0.01077676797450188 -0.8903022429431368 -0.4552425479702483 -0.01178204009587801 -0.9733659401803182 -0.2289539910725835 0.01178204009587801 0.9733659401803182 0.2289539910725835 0.01077676797450188 0.8903022429431368 0.4552425479702483 0.01178446120591827 0.9735588360470699 0.2281322406604561 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0.01210293299673509 -0.999860850551699 0.01148035482507463 0.01210293299673509 0.999860850551699 -0.01148035482507463 -0.01077629623372305 -0.8903027469965876 -0.455241573375953 -0.01077629623372305 -0.8903027469965876 -0.455241573375953 0.01077629623372305 0.8903027469965876 0.455241573375953 0.01077629623372305 0.8903027469965876 0.455241573375953 0.0119993417301939 0.991302854576546 -0.1310521510942627 0.0119993417301939 0.991302854576546 -0.1310521510942627 0.0119993417301939 0.991302854576546 -0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 1 0 0 -1 -0 -0 -0.01210266464271436 -0.9998608479078918 0.01148086797494273 -0.01210266464271436 -0.9998608479078918 0.01148086797494273 0.01210266464271436 0.9998608479078918 -0.01148086797494273 0.01210266464271436 0.9998608479078918 -0.01148086797494273 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.01199880883641628 0.991302784932601 -0.1310527266842495 0.01199880883641628 0.991302784932601 -0.1310527266842495 0.01199880883641628 0.991302784932601 -0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -1 0 0 1 -0 -0</float_array>\r\n                    <technique_common>\r\n                        <accessor count=\"56\" source=\"#ID1927\" stride=\"3\">\r\n                            <param name=\"X\" type=\"float\"/>\r\n                            <param name=\"Y\" type=\"float\"/>\r\n                            <param name=\"Z\" type=\"float\"/>\r\n                        </accessor>\r\n                    </technique_common>\r\n                </source>\r\n                <vertices id=\"ID1925\">\r\n                    <input semantic=\"POSITION\" source=\"#ID1923\"/>\r\n                    <input semantic=\"NORMAL\" source=\"#ID1924\"/>\r\n                </vertices>\r\n                <triangles count=\"24\" material=\"Material2\">\r\n                    <input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1925\"/>\r\n                    <p>0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 15 2 3 16 17 18 19 20 21 22 23 7 24 8 9 25 10 26 0 27 28 5 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 30 32 54 55 33 35</p>\r\n                </triangles>\r\n            </mesh>\r\n        </geometry>\r\n    </library_geometries>\r\n    <library_materials>\r\n        <material id=\"ID7\" name=\"material_0\">\r\n            <instance_effect url=\"#ID8\"/>\r\n        </material>\r\n        <material id=\"ID20\" name=\"material_1\">\r\n            <instance_effect url=\"#ID21\"/>\r\n        </material>\r\n        <material id=\"ID38\" name=\"material_2\">\r\n            <instance_effect url=\"#ID39\"/>\r\n        </material>\r\n        <material id=\"ID48\" name=\"material_3\">\r\n            <instance_effect url=\"#ID49\"/>\r\n        </material>\r\n        <material id=\"ID145\" name=\"material_4\">\r\n            <instance_effect url=\"#ID146\"/>\r\n        </material>\r\n        <material id=\"ID150\" name=\"material_5\">\r\n            <instance_effect url=\"#ID151\"/>\r\n        </material>\r\n        <material id=\"ID189\" name=\"material_6\">\r\n            <instance_effect url=\"#ID190\"/>\r\n        </material>\r\n        <material id=\"ID200\" name=\"material_7\">\r\n            <instance_effect url=\"#ID201\"/>\r\n        </material>\r\n        <material id=\"ID347\" name=\"material_8\">\r\n            <instance_effect url=\"#ID348\"/>\r\n        </material>\r\n        <material id=\"ID384\" name=\"material_9\">\r\n            <instance_effect url=\"#ID385\"/>\r\n        </material>\r\n        <material id=\"ID626\" name=\"material_10\">\r\n            <instance_effect url=\"#ID627\"/>\r\n        </material>\r\n        <material id=\"ID692\" name=\"edge_color167167167255\">\r\n            <instance_effect url=\"#ID693\"/>\r\n        </material>\r\n        <material id=\"ID754\" name=\"edge_color222222255\">\r\n            <instance_effect url=\"#ID755\"/>\r\n        </material>\r\n        <material id=\"ID1223\" name=\"material_11\">\r\n            <instance_effect url=\"#ID1224\"/>\r\n        </material>\r\n        <material id=\"ID1304\" name=\"material_12\">\r\n            <instance_effect url=\"#ID1305\"/>\r\n        </material>\r\n        <material id=\"ID1538\" name=\"material_13\">\r\n            <instance_effect url=\"#ID1539\"/>\r\n        </material>\r\n        <material id=\"ID1551\" name=\"material_14\">\r\n            <instance_effect url=\"#ID1552\"/>\r\n        </material>\r\n    </library_materials>\r\n    <library_effects>\r\n        <effect id=\"ID8\">\r\n            <profile_COMMON>\r\n                <newparam sid=\"ID10\">\r\n                    <surface type=\"2D\">\r\n                        <init_from>ID9</init_from>\r\n                    </surface>\r\n                </newparam>\r\n                <newparam sid=\"ID11\">\r\n                    <sampler2D>\r\n                        <source>ID10</source>\r\n                    </sampler2D>\r\n                </newparam>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <texture texcoord=\"UVSET0\" texture=\"ID11\"/>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID21\">\r\n            <profile_COMMON>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <color>0.5019607843137255 0.5019607843137255 0.5019607843137255 0.5019607843137255</color>\r\n                        </diffuse>\r\n                        <transparent opaque=\"RGB_ZERO\">\r\n                            <color>0.4980392156862745 0.4980392156862745 0.4980392156862745 0.4980392156862745</color>\r\n                        </transparent>\r\n                        <transparency>\r\n                            <float>1</float>\r\n                        </transparency>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID39\">\r\n            <profile_COMMON>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <color>0 0.392156862745098 0 1</color>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID49\">\r\n            <profile_COMMON>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <color>1 0.9215686274509803 0.803921568627451 1</color>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID146\">\r\n            <profile_COMMON>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <color>0.1372549019607843 0.1372549019607843 0.1372549019607843 1</color>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID151\">\r\n            <profile_COMMON>\r\n                <newparam sid=\"ID153\">\r\n                    <surface type=\"2D\">\r\n                        <init_from>ID152</init_from>\r\n                    </surface>\r\n                </newparam>\r\n                <newparam sid=\"ID154\">\r\n                    <sampler2D>\r\n                        <source>ID153</source>\r\n                    </sampler2D>\r\n                </newparam>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <texture texcoord=\"UVSET0\" texture=\"ID154\"/>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID190\">\r\n            <profile_COMMON>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <color>1 0.5490196078431373 0 1</color>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID201\">\r\n            <profile_COMMON>\r\n                <newparam sid=\"ID203\">\r\n                    <surface type=\"2D\">\r\n                        <init_from>ID202</init_from>\r\n                    </surface>\r\n                </newparam>\r\n                <newparam sid=\"ID204\">\r\n                    <sampler2D>\r\n                        <source>ID203</source>\r\n                    </sampler2D>\r\n                </newparam>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <texture texcoord=\"UVSET0\" texture=\"ID204\"/>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID348\">\r\n            <profile_COMMON>\r\n                <newparam sid=\"ID350\">\r\n                    <surface type=\"2D\">\r\n                        <init_from>ID349</init_from>\r\n                    </surface>\r\n                </newparam>\r\n                <newparam sid=\"ID351\">\r\n                    <sampler2D>\r\n                        <source>ID350</source>\r\n                    </sampler2D>\r\n                </newparam>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <texture texcoord=\"UVSET0\" texture=\"ID351\"/>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID385\">\r\n            <profile_COMMON>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <color>0.9607843137254902 0.9607843137254902 0.9607843137254902 1</color>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID627\">\r\n            <profile_COMMON>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <color>0.4313725490196079 0.4549019607843137 0.5294117647058824 1</color>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID693\">\r\n            <profile_COMMON>\r\n                <technique sid=\"COMMON\">\r\n                    <constant>\r\n                        <transparent opaque=\"A_ONE\">\r\n                            <color>0.6549019607843137 0.6549019607843137 0.6549019607843137 1</color>\r\n                        </transparent>\r\n                        <transparency>\r\n                            <float>1</float>\r\n                        </transparency>\r\n                    </constant>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID755\">\r\n            <profile_COMMON>\r\n                <technique sid=\"COMMON\">\r\n                    <constant>\r\n                        <transparent opaque=\"A_ONE\">\r\n                            <color>0.08627450980392157 0.08627450980392157 0.08627450980392157 1</color>\r\n                        </transparent>\r\n                        <transparency>\r\n                            <float>1</float>\r\n                        </transparency>\r\n                    </constant>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID1224\">\r\n            <profile_COMMON>\r\n                <newparam sid=\"ID1226\">\r\n                    <surface type=\"2D\">\r\n                        <init_from>ID1225</init_from>\r\n                    </surface>\r\n                </newparam>\r\n                <newparam sid=\"ID1227\">\r\n                    <sampler2D>\r\n                        <source>ID1226</source>\r\n                    </sampler2D>\r\n                </newparam>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <texture texcoord=\"UVSET0\" texture=\"ID1227\"/>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID1305\">\r\n            <profile_COMMON>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <color>0.7215686274509804 0.5254901960784314 0.04313725490196078 1</color>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID1539\">\r\n            <profile_COMMON>\r\n                <newparam sid=\"ID1541\">\r\n                    <surface type=\"2D\">\r\n                        <init_from>ID1540</init_from>\r\n                    </surface>\r\n                </newparam>\r\n                <newparam sid=\"ID1542\">\r\n                    <sampler2D>\r\n                        <source>ID1541</source>\r\n                    </sampler2D>\r\n                </newparam>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <texture texcoord=\"UVSET0\" texture=\"ID1542\"/>\r\n                        </diffuse>\r\n                        <transparent opaque=\"RGB_ZERO\">\r\n                            <color>0.1399999856948853 0.1399999856948853 0.1399999856948853 1</color>\r\n                        </transparent>\r\n                        <transparency>\r\n                            <float>1</float>\r\n                        </transparency>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n        <effect id=\"ID1552\">\r\n            <profile_COMMON>\r\n                <technique sid=\"COMMON\">\r\n                    <lambert>\r\n                        <diffuse>\r\n                            <color>0.5450980392156862 0 0 1</color>\r\n                        </diffuse>\r\n                    </lambert>\r\n                </technique>\r\n            </profile_COMMON>\r\n        </effect>\r\n    </library_effects>\r\n    <library_images>\r\n        <image id=\"ID9\">\r\n            <init_from>mg midget/texture0_fix.jpg</init_from>\r\n        </image>\r\n        <image id=\"ID152\">\r\n            <init_from>mg midget/texture1_fix.jpg</init_from>\r\n        </image>\r\n        <image id=\"ID202\">\r\n            <init_from>mg midget/texture2_fix.jpg</init_from>\r\n        </image>\r\n        <image id=\"ID349\">\r\n            <init_from>mg midget/texture3_fix.jpg</init_from>\r\n        </image>\r\n        <image id=\"ID1225\">\r\n            <init_from>mg midget/texture4.jpg</init_from>\r\n        </image>\r\n        <image id=\"ID1540\">\r\n            <init_from>mg midget/texture5.jpg</init_from>\r\n        </image>\r\n    </library_images>\r\n    <scene>\r\n        <instance_visual_scene url=\"#ID1\"/>\r\n    </scene>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/cube.dae",
    "content": "<COLLADA version=\"1.4.1\" base=\"\">\r\n\t<library_geometries xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"box\" id=\"box-lib\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"box-lib-vertices\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#box-lib-positions\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"box-lib-positions\" name=\"position\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#box-lib-positions-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"box-lib-positions-array\">-50 50 50 50 50 50 -50 -50 50 50 -50 50 -50 50 -50 50 50 -50 -50 -50 -50 50 -50 -50</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"box-lib-normals\" name=\"normal\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"24\" source=\"#box-lib-normals-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"72\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"box-lib-normals-array\">0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<polylist xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" material=\"BlueSG\" count=\"5\">\r\n\t\t\t\t\t<vcount xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4 4 4 4 4</vcount>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 5 2 4 3 6 4 7 5 3 6 2 7 0 8 4 9 6 10 2 11 3 12 7 13 5 14 1 15 5 16 7 17 6 18 4 19</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#box-lib-vertices\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" offset=\"1\" set=\"0\" source=\"#box-lib-normals\"></input>\r\n\t\t\t\t</polylist>\r\n\t\t\t\t<polylist xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" material=\"RedSG\" count=\"1\">\r\n\t\t\t\t\t<vcount xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4</vcount>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 20 2 21 3 22 1 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#box-lib-vertices\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" offset=\"1\" set=\"0\" source=\"#box-lib-normals\"></input>\r\n\t\t\t\t</polylist>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<asset xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t<created xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">2006-06-21T21:25:37Z</created>\r\n\t\t<contributor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t<copyright xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\nCopyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&#34;License&#34;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &#34;AS IS&#34; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n</copyright>\r\n\t\t\t<author xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">alorino</author>\r\n\t\t\t<comments xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=0;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<authoring_tool xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Maya 7.0 | ColladaMaya v2.01 Jun  9 2006 at 16:08:19 | FCollada v1.11</authoring_tool>\r\n\t\t\t<source_data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></source_data>\r\n\t\t</contributor>\r\n\t\t<revision xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></revision>\r\n\t\t<keywords xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></keywords>\r\n\t\t<up_axis xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Y_UP</up_axis>\r\n\t\t<title xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></title>\r\n\t\t<subject xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></subject>\r\n\t\t<unit xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"centimeter\" meter=\"0.01\"></unit>\r\n\t\t<modified xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">2006-06-21T21:25:37Z</modified>\r\n\t</asset>\r\n\t<library_effects xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"Blue-fx\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"common\">\r\n\t\t\t\t\t<phong xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.5 0.5 0.5 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.137255 0.403922 0.870588 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" opaque=\"\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"Red-fx\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"common\">\r\n\t\t\t\t\t<phong xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.368627 0.368627 0.368627 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.658824 0.101961 0.109804 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" opaque=\"\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_visual_scenes xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<visual_scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"untitled\" id=\"VisualSceneNode\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"Camera\" sid=\"\" type=\"\" id=\"Camera\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#cl_unnamed_1\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 -26</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"Light\" sid=\"\" type=\"\" id=\"Light\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">-325 225 400</translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#Lt_Light-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"Box\" sid=\"\" type=\"\" id=\"Box\">\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#box-lib\" name=\"\" sid=\"\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"BlueSG\" target=\"#Blue\" name=\"\"></instance_material>\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"RedSG\" target=\"#Red\" name=\"\"></instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"testCamera\" sid=\"\" type=\"\" id=\"testCamera\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#testCameraShape\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 -26</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"pointLight1\" sid=\"\" type=\"\" id=\"pointLight1\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">3 4 10</translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#pointLightShape1-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<library_lights xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"Lt_Light-lib\" name=\"Lt_Light\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<point xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<linear_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></linear_attenuation>\r\n\t\t\t\t\t<constant_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></constant_attenuation>\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t\t<quadratic_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></quadratic_attenuation>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t\t<light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"pointLightShape1-lib\" name=\"pointLightShape1\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<point xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<linear_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></linear_attenuation>\r\n\t\t\t\t\t<constant_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></constant_attenuation>\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t\t<quadratic_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></quadratic_attenuation>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_materials xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"Blue\" name=\"Blue\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#Blue-fx\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"Red\" name=\"Red\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#Red-fx\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t<instance_visual_scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#VisualSceneNode\" sid=\"\" name=\"\"></instance_visual_scene>\r\n\t</scene>\r\n\t<library_cameras xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"cl_unnamed_1\" name=\"cl_unnamed_1\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t\t<camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"testCameraShape\" name=\"testCameraShape\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/cube_triangulate.dae",
    "content": "<COLLADA version=\"1.4.1\" base=\"\">\r\n\t<library_geometries xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"box\" id=\"box-lib\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"box-lib-vertices\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#box-lib-positions\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"box-lib-positions\" name=\"position\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#box-lib-positions-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"box-lib-positions-array\">-50 50 50 50 50 50 -50 -50 50 50 -50 50 -50 50 -50 50 50 -50 -50 -50 -50 50 -50 -50</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"box-lib-normals\" name=\"normal\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"24\" source=\"#box-lib-normals-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"72\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"box-lib-normals-array\">0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"10\" name=\"\" material=\"BlueSG\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 5 2 0 0 5 2 4 3 6 4 7 5 3 6 6 4 3 6 2 7 0 8 4 9 6 10 0 8 6 10 2 11 3 12 7 13 5 14 3 12 5 14 1 15 5 16 7 17 6 18 5 16 6 18 4 19</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#box-lib-vertices\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" offset=\"1\" set=\"0\" source=\"#box-lib-normals\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"RedSG\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 20 2 21 3 22 0 20 3 22 1 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#box-lib-vertices\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" offset=\"1\" set=\"0\" source=\"#box-lib-normals\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<asset xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t<created xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">2006-06-21T21:25:37Z</created>\r\n\t\t<contributor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t<copyright xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\nCopyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&#34;License&#34;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &#34;AS IS&#34; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n</copyright>\r\n\t\t\t<author xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">alorino</author>\r\n\t\t\t<comments xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=0;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<authoring_tool xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Maya 7.0 | ColladaMaya v2.01 Jun  9 2006 at 16:08:19 | FCollada v1.11</authoring_tool>\r\n\t\t\t<source_data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></source_data>\r\n\t\t</contributor>\r\n\t\t<revision xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></revision>\r\n\t\t<keywords xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></keywords>\r\n\t\t<up_axis xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Y_UP</up_axis>\r\n\t\t<title xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></title>\r\n\t\t<subject xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></subject>\r\n\t\t<unit xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"centimeter\" meter=\"0.01\"></unit>\r\n\t\t<modified xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">2006-06-21T21:25:37Z</modified>\r\n\t</asset>\r\n\t<library_effects xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"Blue-fx\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"common\">\r\n\t\t\t\t\t<phong xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.5 0.5 0.5 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.137255 0.403922 0.870588 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" opaque=\"\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"Red-fx\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"common\">\r\n\t\t\t\t\t<phong xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.368627 0.368627 0.368627 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.658824 0.101961 0.109804 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" opaque=\"\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_visual_scenes xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<visual_scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"untitled\" id=\"VisualSceneNode\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"Camera\" sid=\"\" type=\"\" id=\"Camera\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#cl_unnamed_1\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 -26</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"Light\" sid=\"\" type=\"\" id=\"Light\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">-325 225 400</translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#Lt_Light-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"Box\" sid=\"\" type=\"\" id=\"Box\">\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#box-lib\" name=\"\" sid=\"\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"BlueSG\" target=\"#Blue\" name=\"\"></instance_material>\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"RedSG\" target=\"#Red\" name=\"\"></instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"testCamera\" sid=\"\" type=\"\" id=\"testCamera\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#testCameraShape\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 -26</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"pointLight1\" sid=\"\" type=\"\" id=\"pointLight1\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">3 4 10</translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#pointLightShape1-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<library_lights xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"Lt_Light-lib\" name=\"Lt_Light\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<point xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<linear_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></linear_attenuation>\r\n\t\t\t\t\t<constant_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></constant_attenuation>\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t\t<quadratic_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></quadratic_attenuation>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t\t<light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"pointLightShape1-lib\" name=\"pointLightShape1\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<point xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<linear_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></linear_attenuation>\r\n\t\t\t\t\t<constant_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></constant_attenuation>\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t\t<quadratic_attenuation xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></quadratic_attenuation>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_materials xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"Blue\" name=\"Blue\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#Blue-fx\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"Red\" name=\"Red\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#Red-fx\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t<instance_visual_scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#VisualSceneNode\" sid=\"\" name=\"\"></instance_visual_scene>\r\n\t</scene>\r\n\t<library_cameras xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"cl_unnamed_1\" name=\"cl_unnamed_1\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t\t<camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"testCameraShape\" name=\"testCameraShape\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/duck.dae",
    "content": "<COLLADA version=\"1.4.1\" base=\"\">\r\n\t<library_geometries xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"LOD3spShape\" id=\"LOD3spShape-lib\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"LOD3spShape-lib-vertices\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#LOD3spShape-lib-positions\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"LOD3spShape-lib-positions\" name=\"position\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2108\" source=\"#LOD3spShape-lib-positions-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6324\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"LOD3spShape-lib-positions-array\">35.0226 89.3874 23.3732 19.5676 89.7173 22.4879 9.22909 91.5427 17.1037 4.33048 88.7008 4.57726 45.0571 89.4178 19.824 -30.5196 11.6272 25.1326 -15.6992 11.4278 34.2321 51.8411 17.7055 36.5602 65.7206 18.372 27.0862 56.0117 11.4345 22.6963 -23.2343 18.1488 41.0429 -40.9218 18.6322 29.6382 62.4487 11.3989 12.9806 60.2326 28.1944 39.5949 71.2984 29.0359 29.3335 -32.9737 29.6914 43.477 -48.95 28.9358 31.4102 73.8118 41.7425 29.8584 65.2513 41.3955 39.884 72.6597 55.003 29.2468 64.6263 55.4849 38.2648 66.5829 66.4165 27.9218 55.5179 67.734 35.7358 43.4971 75.6992 31.8699 56.934 75.0037 25.7495 14.7601 73.8701 35.1574 -12.1248 73.9991 28.9191 14.7016 78.8465 28.8886 -3.37962 78.0576 23.1953 -24.7824 78.2304 7.65121 4.94216 81.4267 15.8195 -54.7257 89.9761 8.84491 -53.6566 74.7375 26.9735 -44.1714 77.8938 26.1268 -64.7587 73.8997 7.15297 -61.5691 65.6958 25.2253 -42.9296 61.2502 39.4496 -64.9663 57.2673 21.7398 -48.9596 49.2561 39.8218 -58.3698 43.9468 28.036 -31.7993 70.8398 33.4366 -33.1153 82.3349 8.62471 48.2452 81.0789 22.327 34.1225 80.5718 26.6473 15.5527 81.3807 24.423 0.65596 81.0723 3.99376 15.1798 11.41 36.4164 17.2973 17.3674 43.2976 43.8649 67.7941 39.8677 55.9835 56.1625 42.7808 56.4187 41.7648 44.4371 46.9566 29.0085 44.2399 18.041 21.337 45.4158 -24.2634 29.7596 46.4694 -37.1346 44.6474 44.4312 -35.8668 57.8953 42.7333 -24.1626 66.8013 39.6298 -14.2645 43.4767 51.8892 10.1522 43.8267 53.9252 -10.3735 36.316 51.8336 -14.5047 52.2745 51.0455 9.35439 52.1796 53.5056 24.5685 36.9247 52.4691 11.2191 35.6243 52.5988 27.0248 44.5585 52.8835 25.4374 55.0852 52.0724 9.23132 59.258 51.2115 21.2751 61.6417 50.3945 -11.0645 57.3325 50.3033 -22.8339 53.8174 48.6047 -22.3883 43.3299 49.8488 -13.3437 34.4469 50.7719 -15.0193 59.7488 48.0109 12.3031 31.6369 51.4681 28.2 34.9703 51.4911 34.9314 44.1559 51.2583 33.7281 55.8993 50.0475 24.8495 63.37 48.6114 9.96162 62.8873 48.4038 6.73344 84.5266 2.83788 10.2211 84.9641 13.1445 19.05 85.0093 20.4734 35.2584 84.9759 22.0089 44.8651 85.199 18.7578 54.1484 90.1992 13.1393 25.84 89.3162 23.5593 14.5318 90.4728 20.5795 5.99276 89.5698 10.1098 59.1034 90.0324 3.37689 -23.9364 11.5353 30.6125 -11.459 10.0413 29.8243 -24.5326 10.1147 22.2069 -35.1528 11.6836 17.7191 61.5472 14.2726 25.2082 43.6854 11.43 30.0164 47.7677 14.1162 33.6212 -19.459 14.309 37.9267 -36.067 14.5054 27.6816 -32.9292 18.5574 36.7248 -46.1733 18.6604 20.5246 73.3418 18.3468 14.9194 68.8732 23.4107 28.4208 55.7803 22.4988 38.5465 -27.0171 23.4671 43.0366 -45.2302 23.6628 30.9246 -41.0731 29.3325 39.4763 79.4615 29.1894 16.0672 76.9844 23.4678 15.5749 72.8865 35.1223 29.8369 63.2406 34.5574 39.8307 81.8608 42.114 16.7292 80.9318 35.3877 16.409 66.0817 48.5555 39.2449 73.9987 48.5347 29.6857 80.1688 55.1853 16.948 81.5894 48.8387 16.9628 61.1927 62.0057 37.295 70.17 61.0152 28.6395 74.8647 66.3268 16.601 77.7874 61.0196 16.7611 61.7637 71.037 26.8557 67.1835 75.4493 16.6366 71.6321 71.1772 16.667 -7.40039 76.1581 26.3759 14.8335 76.3145 32.0471 -20.947 75.0059 21.3995 -9.30957 78.0917 17.6635 2.33308 81.2658 10.7014 -55.3055 81.4823 20.1865 -44.1025 82.8784 21.08 -48.3998 77.2606 26.9595 -63.8341 69.8359 17.705 -58.2579 70.6396 26.4175 -58.1459 60.4109 31.5845 -50.1918 68.7831 33.097 -53.5557 46.1592 34.9928 -63.069 52.729 24.0553 -63.6495 60.7883 23.3658 -54.4261 28.5392 21.6382 -12.4228 39.2454 51.9419 -52.1766 34.1006 30.9987 -39.3582 37.1753 42.8245 -63.2047 33.3562 7.77354 -14.9689 48.0973 51.5712 -13.2184 68.1588 38.5488 -20.841 71.9312 31.5875 -34.0814 73.6573 23.1685 39.0864 77.6536 29.4959 52.286 78.2905 24.2985 28.6752 75.0467 34.74 24.5284 79.4248 29.0977 58.2456 81.6454 14.9372 62.5867 78.8584 16.1198 -40.058 73.3058 29.0169 -62.4832 42.7738 19.6053 -66.2542 57.7677 16.0138 -46.3972 55.562 40.3341 46.1403 83.2928 20.059 52.8472 87.516 12.3304 24.3957 81.2413 26.4145 17.5457 83.2299 21.6568 35.0308 86.9496 21.9178 5.66061 83.0193 2.97282 39.2717 10.0042 25.9897 49.7414 9.99683 19.7068 14.6156 10.0124 31.7958 28.2119 11.4278 34.5791 55.179 10.0309 11.4214 16.1259 13.9798 40.2177 33.0793 17.7336 41.3765 18.9195 36.2041 52.5892 10.6044 39.6524 53.4314 18.2523 44.3116 53.7955 25.9535 39.9994 52.7745 9.73549 48.0914 53.8815 16.9236 53.6009 53.2898 26.8721 49.8693 52.6952 9.12603 55.8675 52.7181 15.9783 60.8706 50.8542 23.2428 59.2083 51.1997 15.2006 70.9348 38.4909 -38.0814 66.6122 37.6368 -31.4745 63.2943 41.295 -12.9337 55.4359 50.6592 -29.8093 42.9681 46.5354 -18.6612 31.1764 47.8255 -30.266 55.8423 44.7033 36.2897 31.2217 48.0605 46.511 42.7776 47.7899 45.6636 56.4673 46.2574 32.8524 66.1703 44.2955 12.3579 67.2602 43.2175 -19.149 38.1518 50.4005 -23.6628 48.8825 49.2194 21.1045 32.7401 51.4785 32.4268 38.9651 51.46 35.2465 50.0413 50.7771 17.9201 63.7837 48.4371 30.018 60.597 49.2453 -20.4236 57.6424 48.1257 -7.11345 60.5511 48.2081 -5.54756 57.4675 50.6459 -6.2067 51.4293 52.475 -5.95461 43.3855 53.166 -4.66971 35.7333 52.2177 -5.70251 32.445 51.1085 -8.3205 17.8723 43.3717 -2.69678 11.3425 36.4653 -27.2981 42.8866 48.0687 -27.8897 55.043 46.5161 -16.4436 32.2248 49.3054 -18.5848 62.3861 45.599 13.6265 28.0639 49.9986 41.3922 43.4352 49.4685 32.3868 32.7171 49.8711 40.4699 56.3449 48.0345 28.9733 65.0389 46.3945 11.0523 65.6624 45.6909 -37.9272 11.78 6.99728 -50.2675 18.389 7.36354 75.8256 18.3928 2.93945 64.2756 11.6576 2.65993 82.8128 29.1368 2.93945 85.8726 42.1384 2.93945 84.9147 55.2091 3.25752 79.936 66.2007 3.25752 72.9207 75.6569 3.11665 -13.2799 78.2816 6.78078 -42.4217 91.5301 9.02211 -66.2519 42.375 7.59116 -67.9758 58.5114 6.99802 8.76422 81.5601 20.2429 8.65004 83.1534 13.7124 6.16626 86.3527 3.3376 10.3479 87.4003 13.9949 7.91973 84.7475 8.18356 19.5238 87.0994 20.6484 13.8638 85.0248 17.2846 35.1961 83.043 23.5111 26.055 84.941 22.3278 44.4291 87.1742 18.6599 55.1672 83.7325 13.2216 53.3737 85.5572 12.3674 -18.7264 10.108 26.6814 -28.5504 10.1785 15.7995 -28.6467 14.412 33.9793 -40.9463 14.6426 19.2219 68.6182 14.2022 14.0757 -36.9819 23.7436 38.5844 48.5084 72.1529 33.9029 -14.7042 76.6096 19.7209 -49.515 83.8778 20.7678 -60.3339 76.3635 19.0618 -54.5522 64.8765 32.9243 -60.8158 55.9957 28.5728 -50.6442 23.4975 21.2438 -45.1383 35.1824 39.0803 -57.747 33.5446 21.51 -27.5531 73.6877 22.8942 26.6207 76.9559 31.9144 -39.393 77.9086 22.2647 -65.5928 51.6658 17.2594 -44.8336 71.3336 32.1213 -65.569 63.5509 16.5565 25.3055 83.1594 23.781 12.1192 83.2358 18.075 25.9631 10.0257 30.0393 30.5288 14.0969 38.2233 18.4628 39.992 53.2994 17.691 48.9863 53.8221 16.1429 57.6002 52.3171 32.2615 71.41 37.9727 51.4408 62.676 41.4618 57.6406 48.9151 43.8433 52.9177 35.0586 44.5773 36.217 23.1483 43.9056 -31.7681 36.6178 45.7769 -37.83 51.5724 43.6927 -25.9576 36.5644 47.2776 -31.2662 49.6491 45.6583 26.7542 27.5116 48.1161 23.2102 67.8126 43.5534 -9.81152 64.5785 42.5347 -5.73514 54.6841 51.8166 -6.34459 47.5345 53.0926 -5.18279 39.3551 52.8687 -13.0679 23.5531 45.6457 -5.21985 14.0791 40.2548 -0.679352 10.0168 31.8299 -28.752 49.271 47.2864 -23.8534 36.6519 48.7626 -24.6964 59.5316 45.8889 -7.15942 29.3978 49.7079 38.1551 37.5127 49.7814 23.9612 29.5453 49.9126 42.2701 49.9123 48.8776 35.8278 61.6884 47.1419 20.5055 66.243 45.9037 -8.95663 63.2617 45.5834 -31.1142 10.1703 6.38486 -44.1714 14.6552 7.27827 70.6407 14.3913 2.92833 79.9353 23.413 2.93945 84.5803 35.3544 2.93945 85.9631 48.8595 3.25752 82.8254 61.0226 3.25826 76.7546 71.3433 3.2553 -19.2017 77.8115 7.33611 -48.5489 92.2656 9.06511 -60.1596 84.4057 8.28143 -55.757 23.043 7.73055 -29.2013 79.6561 8.08569 -37.1064 88.1752 8.91461 -68.0046 51.5783 7.15372 -66.9147 65.618 7.07735 57.0756 10.1525 2.28551 6.64003 83.0734 8.64102 7.67061 86.759 8.63805 14.3983 87.2706 17.8748 26.21 86.9437 22.1654 62.3057 92.5874 2.9313 1.3848 69.2606 38.5873 1.56273 65.4519 43.0262 1.32251 64.1537 45.6605 4.95551 9.99831 32.3904 4.63076 11.3477 37.0599 4.48174 13.922 40.9628 4.08211 17.3859 43.9419 3.02928 21.4474 45.8963 3.07525 28.2293 49.9356 3.11009 31.6361 51.3265 3.03002 35.4574 52.4675 2.61333 39.4033 53.3009 2.11362 43.4389 53.8266 1.75772 47.519 53.7873 1.63762 51.3863 53.3032 1.70287 54.8295 52.4802 1.76736 58.0161 51.0099 1.52196 61.5001 48.3586 1.93642 72.8387 33.8763 3.64763 75.9142 30.548 5.31806 78.4269 26.9639 58.5778 87.5953 2.23361 59.1501 85.8263 2.11721 61.5583 84.2063 2.51758 64.9644 82.1214 2.892 69.0133 79.1475 3.00989 32.7991 89.7151 -30.4233 18.3501 89.4171 -27.9721 8.67525 89.5668 -20.9938 2.39314 90.3705 -9.85685 41.3633 90.1718 -28.7054 -31.106 11.4775 -32.9686 -16.1893 11.413 -41.8242 -37.8441 11.7199 -17.9362 51.1145 17.827 -43.7764 65.4167 18.372 -34.6672 55.5386 11.4663 -30.2365 -22.7101 18.3816 -48.1723 -41.2258 18.6322 -37.22 -49.9064 18.1281 -19.4546 62.0944 11.4196 -20.5393 59.314 28.4606 -46.5397 70.9277 29.0352 -36.8544 -33.1991 29.873 -50.7109 -49.3615 28.878 -39.0246 73.4812 41.7559 -37.3453 64.6226 41.5905 -46.5931 72.9066 55.0971 -37.0309 63.9264 55.2231 -45.5736 67.308 66.4328 -36.116 55.8026 66.7664 -44.1694 43.9561 74.6649 -39.815 57.8297 75.238 -34.1393 15.5401 73.1894 -42.5115 -12.2174 73.8819 -36.4385 15.3978 78.7998 -35.5147 -2.0421 78.412 -29.475 -24.7876 76.5792 -19.7267 -12.534 78.2897 -17.6678 4.34457 81.1227 -24.1642 -55.8163 87.2424 -22.0756 -43.7036 88.3494 -22.3158 -54.1303 74.7924 -34.6324 -44.4888 77.8752 -33.6648 -65.5053 72.5896 -18.5049 -61.9613 65.7536 -32.9553 -43.4634 60.448 -47.4894 -65.1954 57.0723 -29.5143 -59.2654 27.9119 -20.2361 -49.2087 49.1998 -47.3723 -58.9689 43.7199 -35.5858 -66.3446 42.1948 -19.4391 15.5861 70.0443 -46.0785 -33.1287 69.3852 -41.4713 -34.4892 80.0254 -21.5618 48.699 81.1865 -30.8689 34.2382 80.5703 -34.2498 16.5759 81.1153 -31.895 0.727875 81.1872 -12.4148 -68.018 58.2133 -17.8183 14.7802 11.3848 -44.0174 16.9221 17.4452 -50.8066 -13.0864 43.3447 -58.8481 10.4495 43.9097 -61.0858 -9.32663 36.6667 -59.0505 -14.22 51.903 -58.0496 9.45597 51.998 -60.0277 24.246 37.0634 -60.5519 11.3896 35.7436 -60.2776 26.5918 44.6467 -61.0071 25.4626 54.4929 -59.5273 9.00666 58.9948 -57.2808 21.3366 60.5555 -57.2059 -11.1972 57.2725 -56.9708 -22.2438 53.1256 -56.0203 -20.3457 43.0689 -57.3067 -12.1122 35.0371 -58.1689 -14.9222 59.3774 -55.2218 12.2904 31.7184 -59.1973 27.7581 35.2002 -59.4961 33.8971 44.4969 -59.5273 32.7486 55.5991 -57.9969 24.5692 62.5262 -55.8246 9.69026 62.3164 -55.2589 6.31009 84.6215 -9.59067 9.94086 84.9232 -20.0693 19.0219 85.0345 -27.4843 34.7653 85.0426 -29.4209 44.1941 85.119 -26.7866 50.8728 90.6708 -23.6459 25.0482 89.5646 -29.954 12.9607 89.423 -24.9078 5.25504 89.8204 -16.202 3.24726 88.5844 -2.72431 56.928 89.7848 -10.5352 -24.3405 11.4359 -38.3603 -12.0514 9.99387 -37.4698 -25.119 9.92937 -30.186 -35.4745 11.6324 -25.6774 -30.9667 10.1577 -16.9998 61 14.303 -32.6913 42.9826 11.5093 -37.4209 46.9722 14.2133 -40.7944 -19.5197 14.3549 -45.3897 -36.488 14.4595 -35.3605 -33.1887 18.5722 -44.2309 -44.1233 14.4447 -18.6976 -46.6619 18.3928 -28.2843 73.0378 18.3468 -22.5011 68.5692 23.4107 -36.0025 54.8395 22.7093 -45.7182 -26.8814 23.6917 -50.1401 -45.535 23.6628 -38.5063 -41.3718 29.3444 -46.7703 79.1575 29.1894 -23.6481 76.6804 23.4678 -23.1566 72.5633 35.1268 -37.3883 62.517 34.8109 -46.6606 81.5568 42.114 -24.311 80.6278 35.3877 -23.9899 65.2083 48.5511 -46.1149 73.84 48.5629 -37.3 80.6871 55.3477 -24.807 81.674 48.8988 -24.6283 60.7961 61.4452 -45.0316 70.7794 61.119 -36.7907 75.5475 66.5218 -24.6246 78.6126 61.265 -24.804 62.9885 71.049 -35.1951 66.8647 75.4648 -24.4251 71.4756 71.2009 -24.4489 -6.85692 76.1307 -33.2993 15.3904 76.124 -38.9186 -20.6749 74.9933 -28.8188 -18.659 77.1776 -18.9697 -8.319 78.3549 -24.2702 1.96458 81.2562 -18.3514 -55.843 81.314 -28.5504 -49.6254 89.3466 -22.4648 -44.4451 82.6048 -28.9686 -48.6808 77.2324 -34.5316 -64.3131 69.6573 -25.8984 -61.7107 81.899 -20.9783 -58.7835 70.7123 -34.1097 -58.4469 60.3879 -39.1736 -50.5077 68.7809 -40.6817 -54.183 45.9931 -42.2824 -63.8549 52.5711 -32.0063 -63.9335 60.729 -31.1655 -54.957 22.8131 -19.9766 -55.152 28.2115 -29.5499 -11.2032 39.4137 -59.029 -53.076 34.2815 -38.5249 -39.7533 37.3377 -50.1979 -63.1283 33.463 -20.1464 -14.2141 47.7244 -58.4915 -30.0695 77.3155 -20.5683 -21.5757 71.2928 -39.3886 -34.2579 73.9026 -30.84 39.2161 77.6454 -37.0836 52.7939 78.4766 -32.8685 29.7051 73.7336 -42.0511 25.218 79.3136 -35.8083 57.9394 81.7173 -23.2211 62.3879 78.9177 -24.2442 -40.3947 73.317 -36.5831 -38.6256 84.6334 -22.1512 -63.1328 42.5522 -27.8513 -68.0395 51.255 -18.387 -66.6864 57.5891 -24.6884 -46.719 55.3544 -48.0974 -67.0838 65.1042 -17.911 46.0958 83.2499 -28.6417 50.9529 87.3143 -20.6038 25.2513 81.0708 -33.3601 17.9216 83.2039 -29.0153 34.0372 87.1164 -29.0287 5.17719 83.0067 -10.4967 38.7965 10.0502 -33.6129 49.3922 10.0272 -27.3241 14.187 9.93604 -39.5629 27.7425 11.4278 -42.1534 55.0359 10.0176 -19.0023 15.6372 13.9546 -47.8631 32.7953 17.7996 -48.8099 18.8513 36.2745 -60.5645 10.861 39.7903 -60.8997 18.3879 44.3219 -61.3282 25.5709 40.1514 -60.9249 9.98461 48.0417 -60.7803 17.172 53.0256 -60.1664 26.7053 49.7018 -60.6231 9.02446 55.628 -58.8755 15.9709 59.969 -57.3289 23.2776 58.2326 -58.209 44.1377 66.4765 -47.442 32.9162 70.0487 -45.5996 -39.1943 64.8054 -45.7138 55.5401 55.5242 -49.7715 51.248 61.6595 -48.7462 56.0065 41.9561 -51.2803 57.0734 48.8091 -50.5693 46.5132 29.225 -51.505 52.5663 35.3329 -51.6029 17.5056 21.4015 -53.1414 35.7529 23.258 -51.4249 -24.8654 30.3579 -52.8774 -37.595 44.6801 -51.7631 -32.3879 37.056 -52.6379 -36.3175 56.5451 -50.6094 -38.0947 50.8613 -51.419 -25.0582 65.9138 -47.2878 -13.0315 55.2283 -57.5699 -29.5994 42.7331 -54.0504 -17.7196 32.1054 -55.3997 -31.0452 54.9518 -52.1567 14.4814 25.6447 -55.9766 35.6595 31.6265 -55.6473 45.0786 43.2372 -55.4835 44.2682 56.1306 -54.0718 32.613 65.3459 -51.8098 12.2638 66.6664 -50.3239 -16.8788 38.5536 -57.7812 -22.2779 48.1633 -56.692 20.9614 32.7638 -59.3975 31.7892 39.2914 -59.6303 34.2463 50.1711 -58.9927 17.7651 63.1379 -55.4049 29.3959 59.9275 -56.7944 -19.9928 57.0804 -55.4805 -7.23875 60.3598 -55.204 -5.65804 57.5512 -57.0761 -6.0065 51.3551 -59.049 -5.22208 43.4715 -59.8809 -3.96387 36.0409 -59.508 -5.15608 32.8988 -58.5686 -13.5854 23.9342 -52.6112 -9.06415 18.1577 -50.5723 -3.25877 11.387 -43.9714 -26.2193 42.6871 -55.6006 -28.5919 54.4558 -53.8865 -15.0875 33.3422 -56.7928 -18.825 61.9909 -52.8915 13.3618 27.7844 -57.7174 39.8055 43.952 -57.5439 31.8122 33.1212 -57.6826 38.9151 56.1492 -56.0878 28.5307 64.3375 -53.8731 10.8825 65.2576 -52.8604 -38.7872 11.7814 -10.3899 -51.3804 18.2081 -11.1306 75.9308 18.2734 -10.619 64.3713 11.5264 -10.1319 82.6956 29.1294 -10.748 85.6139 42.137 -11.5317 84.7924 55.3455 -12.4133 79.6343 66.3979 -12.9219 71.6684 75.6332 -12.7061 -25.2621 79.1542 -11.2952 -14.3624 78.3676 -10.5812 -55.4174 91.1379 -15.1558 -43.1913 92.0224 -14.9719 -65.5402 74.7902 -11.1558 -61.0434 28.0454 -11.3123 -32.6111 84.6875 -12.5304 -67.2833 42.4839 -10.9141 -68.8802 58.6841 -10.4374 0.543259 81.1205 -6.22162 9.52418 81.0708 -28.7966 8.37571 83.1824 -21.1125 5.53085 86.6678 -9.24443 6.35532 84.3783 -3.72153 9.91936 86.9399 -19.9543 7.46301 84.8157 -15.1358 19.1716 86.9829 -27.1848 13.7244 84.9789 -24.2465 35.0315 83.0667 -31.2656 26.1633 85.0641 -29.3275 42.8321 87.2394 -26.5835 54.4673 83.6613 -21.5529 52.1903 85.3592 -20.4029 -19.1772 9.97014 -34.5627 -29.0093 10.0524 -23.9684 -28.9966 14.3787 -41.6404 -41.4341 14.4313 -27.1351 68.2653 14.2141 -21.6559 -37.1724 23.751 -45.8917 49.1935 70.9503 -42.3484 -14.5648 76.6133 -27.0075 -49.8916 83.6109 -28.9872 -61.1227 76.1114 -27.2671 -55.0601 65.0337 -40.5186 -61.3029 55.8348 -36.2984 -51.2017 23.1727 -29.0783 -45.8464 35.4359 -46.3143 -58.6945 33.6906 -29.4149 -27.3062 73.8878 -30.3291 27.1279 76.7275 -38.8845 -39.6428 78.0687 -29.8339 -66.1326 51.3373 -25.8257 -45.1368 71.2869 -39.6934 -65.8464 63.4174 -25.0094 25.8474 83.1357 -30.877 12.1451 83.2039 -25.5855 25.4849 9.93826 -37.9992 30.078 14.1043 -45.7664 18.448 40.0625 -61.2347 17.9876 48.7616 -61.0605 16.2348 56.7727 -58.8674 -32.2767 62.0154 -49.2051 -13.9368 67.8282 -45.9206 -24.8684 37.0434 -54.8511 -31.525 48.8313 -53.174 26.4258 27.5071 -55.6637 23.2554 67.017 -50.8845 -10.1563 64.4547 -50.0444 -5.75739 54.7064 -58.2557 -5.8419 47.5145 -59.5984 -4.37907 39.5768 -59.8409 -5.9761 14.2111 -47.5917 -0.926239 9.96272 -39.5747 -28.5177 48.5533 -54.7769 -21.6936 37.4949 -56.2842 -25.4638 59.1765 -53.191 -6.8028 30.1029 -57.2111 37.0326 38.1125 -57.7227 23.7499 29.4563 -57.6722 40.6137 50.1599 -57.0286 34.858 61.1842 -54.92 20.4387 65.7863 -53.1414 -9.18353 63.1068 -52.8225 -31.7926 10.1666 -9.9777 -45.2866 14.5017 -10.8326 70.7816 14.2259 -10.5137 79.9368 23.3648 -10.642 84.3683 35.367 -11.0661 85.8037 48.9262 -12.0255 82.7112 61.2146 -12.6921 76.0168 71.4278 -13.3949 -20.2604 77.9924 -11.2248 -49.3845 92.9811 -15.3182 -60.8729 85.6046 -14.2238 -56.4851 22.8762 -11.2211 -64.3531 34.2467 -11.1677 -29.1309 81.0871 -11.445 -37.3177 89.3021 -14.5323 -69.0093 51.6317 -10.622 -67.6547 66.1837 -10.4878 5.71547 83.0356 -4.42811 57.0919 10.0917 -9.5929 6.03725 83.0742 -16.133 5.45968 86.1214 -3.26036 7.12048 86.8962 -15.0149 13.8867 86.9385 -24.0596 25.9809 87.0964 -28.959 -11.6043 122.781 8.68477 -11.2981 122.692 9.69681 -10.977 122.366 10.6888 -10.6656 121.82 11.586 -10.3765 121.078 12.3445 -10.1237 120.175 12.9302 -9.91827 119.156 13.3142 -9.77222 118.067 13.4803 -9.68768 116.96 13.4188 -9.67062 115.887 13.1341 -9.72327 114.899 12.6358 -9.85822 114.021 11.8907 -10.7227 112.914 8.71887 -11.1023 127.944 8.41562 -10.4921 127.767 10.4464 -9.85971 127.122 12.423 -9.24655 126.037 14.2114 -8.68082 124.561 15.7276 -8.18628 122.764 16.8946 -7.78964 120.733 17.6635 -7.49306 118.563 17.9719 -7.3344 116.363 17.8451 -7.30846 114.233 17.2735 -7.41818 112.273 16.2733 -7.69992 110.534 14.786 -8.2775 109.033 12.4727 -9.35776 108.08 8.5424 -9.95609 132.998 7.96262 -9.04932 132.737 10.981 -8.11142 131.781 13.9103 -7.20317 130.173 16.5602 -6.3661 127.988 18.8075 -5.64024 125.328 20.5468 -5.05821 122.318 21.6961 -4.64821 119.099 22.2025 -4.42282 115.824 22.0238 -4.39761 112.65 21.1845 -4.56294 109.746 19.6875 -4.97073 107.211 17.3891 -7.42485 103.383 8.21767 -8.20483 137.879 7.33685 -7.0141 137.537 11.2983 -5.78555 136.284 15.1374 -4.59557 134.176 18.611 -3.49826 131.313 21.5559 -2.54626 127.827 23.8351 -1.78407 123.883 25.3417 -1.24654 119.664 26.006 -0.958862 115.367 25.7954 -0.932175 111.202 24.7018 -1.15683 107.411 22.6977 -1.71957 104.094 19.6809 -4.90993 99.0215 7.7476 -5.87453 142.516 6.54797 -4.41762 142.098 11.3954 -2.91623 140.566 16.0879 -1.46082 137.989 20.3341 -0.119568 134.489 23.9337 1.04373 130.229 26.72 1.97571 125.407 28.5617 2.63261 120.249 29.3728 2.98405 114.998 29.1163 3.01297 109.897 27.8025 2.72233 105.248 25.381 2.00388 101.315 21.4907 -1.90344 95.1527 7.08847 -2.99854 146.84 5.6071 -1.29695 146.353 11.2694 0.45578 144.564 16.7478 2.15439 141.556 21.7035 3.72029 137.47 25.9059 5.07858 132.497 29.1585 6.16626 126.869 31.3079 6.93364 120.848 32.2555 7.3429 114.718 31.9552 7.37701 108.764 30.4219 7.02557 103.335 27.5927 6.15958 98.8146 22.9217 1.31064 91.5316 5.92221 0.38089 150.789 4.52833 2.30194 150.239 10.9231 4.28081 148.22 17.1066 6.19814 144.825 22.7007 7.96496 140.213 27.4444 9.49823 134.6 31.1152 10.7268 128.246 33.5419 11.592 121.45 34.611 12.0547 114.531 34.2722 12.0932 107.81 32.5417 11.6995 101.628 29.4492 10.7461 96.4739 24.1724 4.21408 154.305 3.32648 6.32714 153.7 10.3604 8.50323 151.481 17.1593 10.6111 147.749 23.3102 12.5537 142.677 28.5254 14.2397 136.505 32.5617 15.5905 129.519 35.2301 16.5418 122.048 36.4053 17.0504 114.439 36.0331 17.0919 107.05 34.1306 16.6589 100.258 30.74 15.7233 94.7279 25.791 8.4454 157.338 2.02082 10.7201 156.687 9.59079 13.0608 154.299 16.9057 15.3288 150.283 23.5229 17.4189 144.827 29.1348 19.2332 138.186 33.4774 20.6856 130.67 36.3481 21.7103 122.631 37.6123 22.2575 114.445 37.2119 22.3019 106.495 35.1648 21.8259 99.2209 31.4888 20.825 93.3985 26.5962 13.0133 159.842 0.628418 15.4163 159.154 8.62471 17.8875 156.633 16.3489 20.283 152.392 23.3369 22.4903 146.631 29.2623 24.4054 139.618 33.8481 25.9394 131.682 36.879 27.0211 123.193 38.2151 27.5987 114.549 37.7917 27.6461 106.153 35.6297 27.1561 98.4202 31.8069 26.2026 92.3353 26.7949 17.8512 161.781 -0.829224 20.3468 161.067 7.47549 22.9136 158.449 15.497 25.4011 154.045 22.7534 27.6929 148.063 28.9072 29.6814 140.78 33.6686 31.2747 132.539 36.8168 32.3972 123.724 38.2032 33.0378 114.732 37.7776 33.1394 106.004 35.5511 32.5863 97.9694 31.5919 31.965 91.3737 26.2299 28.0317 162.761 5.43213 30.6652 160.074 13.6627 33.218 155.556 21.1096 35.5698 149.416 27.4236 37.6109 141.943 32.3103 39.2458 133.487 35.5408 40.3779 124.44 36.8931 41.0778 115.182 36.3645 41.3685 106.251 34.3441 40.5714 98.0124 30.0964 39.483 90.8428 24.5869 25.47 163.494 -3.09354 33.2647 163.97 -5.38011 35.8181 163.241 3.11665 38.442 160.564 11.3176 40.9852 156.062 18.737 45.5605 150.164 24.1539 46.9596 143.512 28.5313 48.7731 136.143 30.9839 48.1273 125.112 34.1698 49.5294 116.289 34.2469 49.9179 107.113 32.426 48.6893 98.8206 27.8254 47.2243 91.628 22.178 38.4532 163.455 -6.88224 40.9503 162.742 1.42916 43.5171 160.123 9.45065 47.7967 155.173 17.3906 53.1913 129.392 30.4605 57.4434 120.187 30.353 57.7555 108.881 29.1971 56.501 100.349 24.8901 54.4406 93.4897 18.651 43.5401 162.322 -8.34137 45.9453 161.636 -0.335434 50.4154 158.124 9.95186 48.4521 160.589 -9.73451 50.7305 159.939 -2.15119 54.3182 157.614 6.23138 63.8033 119.565 25.3861 63.9101 110.06 24.7226 62.901 102.219 20.9027 60.7679 96.0876 14.7059 53.1171 158.28 -11.0416 55.2347 157.675 -3.99215 58.19 155.872 2.80748 67.2969 119.573 21.0355 67.7537 111.25 20.0049 67.3733 103.92 17.1459 65.043 98.1407 11.5222 57.4671 155.429 -12.245 59.394 154.879 -5.83163 62.1915 152.982 0.103493 69.6977 119.848 16.5973 70.8076 112.269 15.649 70.4413 106.039 12.8968 68.5447 100.725 8.19913 61.4382 152.077 -13.326 63.1457 151.59 -7.6422 65.78 149.427 -2.04368 72.9933 113.56 10.1899 72.6093 109.123 7.23009 71.4208 102.692 -5.93692 66.1158 146.314 -14.556 67.6306 145.656 -8.87371 68.937 144.641 -4.73136 71.1249 140.238 -3.87204 72.9303 135.432 -3.25369 73.955 129.872 0.956131 73.8222 124.051 6.88754 69.9913 140.169 -15.5436 71.876 138.749 -9.69077 -11.3759 117.634 8.77818 63.3644 132.244 19.7795 58.7861 144.777 19.4836 67.0122 129.764 16.8798 70.6155 138.855 5.83472 63.4756 148.383 9.49515 62.8195 133.184 17.464 65.3848 131.323 15.0306 58.8061 141.77 16.8434 60.1659 137.06 18.4575 67.3103 131.311 12.1873 59.8997 144.627 13.2097 68.6945 133.697 9.63008 62.6779 144.573 10.0134 68.5944 137.783 7.94185 66.1373 141.972 8.0323 63.5846 133.449 17.7798 66.1373 131.523 15.497 59.6002 142.393 17.3936 68.0977 131.472 12.4801 69.5345 133.885 9.64862 63.3399 145.241 10.1906 69.4233 138.273 7.76169 66.8358 142.631 7.99524 70.3049 128.194 12.73 72.5233 132.983 6.70811 70.8876 139.701 3.88477 57.3232 138.168 24.4749 62.3546 131.157 22.7541 67.3926 146.279 4.41341 62.6852 151.575 8.16354 58.5355 152.152 14.7897 56.0087 147.327 21.699 67.4163 128.203 18.5732 61.7689 138.738 16.9517 60.1192 142.066 15.9826 64.1066 135.62 16.4201 65.946 133.39 14.7222 67.2903 132.939 12.8657 68.2793 135.009 11.4955 67.7633 138.355 10.7993 65.6517 141.685 10.9157 62.861 143.967 11.7343 60.6115 144.197 13.6175 60.9733 137.35 18.8824 60.8999 145.33 13.6701 65.4233 132.097 14.9091 64.194 132.052 16.3667 63.0381 133.984 17.1452 60.5626 137.576 18.0038 59.2072 139.485 18.0623 59.179 141.815 16.5439 61.4122 134.887 18.1943 67.2154 132.019 12.4453 66.4087 131.047 13.613 59.0411 143.572 15.1678 60.1096 144.464 13.3409 68.5151 134.306 10.3248 68.0821 132.189 10.829 61.149 144.974 11.4258 62.7831 144.363 10.5976 68.2882 138.059 8.96576 68.9548 135.624 8.61655 64.3898 143.534 8.86493 66.015 141.892 9.0614 67.5801 139.948 7.72906 62.5229 143.343 13.2497 61.0674 143.946 13.8533 64.8184 141.126 13.1519 66.8854 138.187 12.9695 67.3889 133.651 13.1986 66.7994 134.635 14.1328 65.5909 137.242 14.9847 63.4504 140.109 15.2998 61.4471 142.587 14.915 69.5049 129.705 12.5735 72.1177 136.32 4.77299 71.5801 133.393 8.20432 59.2932 134.201 23.8217 59.9546 137.579 21.2023 65.0801 149.359 5.97188 67.3192 144.395 6.27661 56.9459 150.409 18.5398 60.5959 148.729 14.5628 56.1303 142.947 23.7928 65.2135 129.283 20.9902 68.9562 127.783 15.7988 69.2988 142.988 3.69571 60.547 152.61 11.1863 71.7477 130.025 9.56706 72.9533 131.626 4.33482 71.3592 125.34 12.6099 70.8958 140.288 0.80043 60.4142 128.485 25.3476 53.3566 137.368 28.099 60.1785 154.454 5.65604 66.8521 148.152 1.54631 50.4599 149.321 23.457 54.4777 155.19 14.0957 66.8083 125.61 19.6379 60.7657 140.445 16.6648 62.9418 137.1 16.8738 65.1157 134.361 15.6497 66.6044 132.832 13.8036 67.9094 133.728 12.0538 68.246 136.622 11.0736 66.8721 140.078 10.7355 64.2593 143.015 11.2634 61.6205 144.401 12.4393 60.0361 143.345 14.9402 62.2167 135.13 18.5205 60.0235 144.253 15.7061 59.9835 139.927 18.519 64.9258 132.28 16.7923 67.1776 131.236 14.0179 68.9044 132.335 10.9928 69.7696 135.952 8.50682 68.3794 140.573 7.55853 64.9874 144.212 8.9287 61.9957 145.611 11.7513 64.3364 132.866 16.125 59.6128 139.75 17.5893 61.7458 135.583 17.8214 66.3694 131.791 13.6738 59.3318 143.457 15.0788 67.9657 132.894 11.3154 61.3218 144.772 11.7684 68.6738 136.094 9.51442 64.4194 143.374 9.69681 67.3615 140.039 8.78485 61.7844 144.005 13.1407 63.6091 142.365 13.2305 65.9438 139.693 13.0347 67.4912 136.673 12.9257 66.9492 133.714 13.8169 66.3464 135.861 14.5969 64.5685 138.672 15.2167 62.3546 141.447 15.1878 60.8028 143.341 14.6881 70.7571 131.099 10.3129 71.4393 136.084 6.66586 61.5272 134.531 20.6551 65.2209 146.715 7.63861 59.5052 147.331 17.3142 58.8328 141.204 20.8056 65.3699 130.706 18.6303 68.3045 129.387 14.7556 69.1838 141.704 5.63008 61.9527 149.098 11.8158 72.6026 127.566 8.47568 72.3965 136.097 1.70497 56.5247 132.614 27.6949 63.6929 151.685 3.08774 52.022 153.009 18.9305 51.1249 144.226 26.8356 63.9865 126.508 22.5154 69.2202 125.238 16.535 69.0541 144.317 0.692924 57.2187 155.661 9.56113 67.741 135.282 12.8723 67.7907 134.283 12.7419 71.6609 136.111 -15.9358 72.3201 105.969 -15.2641 74.0417 117.157 -16.1597 75.2065 106.525 -16.2769 79.8634 107.308 -17.6552 91.3867 109.457 -21.1013 88.3001 106.164 -20.0804 79.2991 114.295 -17.6596 83.595 107.064 -18.7273 84.1132 113.461 -18.9875 85.3967 106.488 -19.2404 74.3568 135.883 -16.7173 78.9611 134.305 -18.0244 82.9529 133.126 -19.1618 84.9244 134.248 -19.7638 86.99 136.683 -20.4237 90.4947 139.433 -21.5114 93.7133 139.447 -22.4507 94.9967 133.968 -22.6969 95.4994 138.023 -22.9393 92.0955 130.536 -21.7701 88.3638 126.832 -20.5942 85.6599 124.96 -19.7608 81.4537 123.062 -18.4885 74.8654 115.813 -16.3999 75.0456 119.162 -16.437 77.3477 106.901 -16.9108 90.4702 107.067 -20.7351 76.8324 114.944 -16.9597 81.866 106.977 -18.232 81.8267 113.709 -18.3173 87.5994 113.172 -20.0641 72.8517 136.463 -16.4526 76.6211 135.168 -17.3616 81.0749 133.56 -18.6235 84.1259 133.478 -19.5125 85.7941 135.222 -20.0404 95.5972 136.005 -22.9201 93.7963 132.209 -22.3054 90.1255 128.604 -21.1495 87.0197 125.694 -20.1745 83.7714 124.169 -19.1907 77.8207 121.529 -17.3927 90.9181 111.196 -21.0087 72.5032 108.223 -2.09484 75.2258 128.38 -2.75545 73.0089 134.723 -11.6266 74.987 120.808 6.20024 75.9205 117.527 -9.42607 74.9633 116.553 -9.73895 78.1707 127.11 -4.45851 76.4373 109.876 3.38505 75.8359 108.157 -4.45555 81.7666 127.621 -5.91393 76.6804 114.045 7.19746 76.6345 120.205 6.07716 82.3917 119.936 3.28125 80.7256 108.785 -7.12913 83.5075 117.685 2.46864 82.9974 115.277 1.76725 92.4261 111.042 -14.8022 90.3783 110.634 -9.15768 95.4037 129.402 -7.5814 96.0984 136.789 -17.4832 82.3405 119.579 -9.26593 80.8413 115.369 -9.65369 85.2625 124.587 -1.81087 84.8272 129.21 -7.48057 85.7451 117.806 -3.52579 86.8232 121.414 -9.52765 85.9097 118.886 0.325172 87.199 131.776 -9.16064 88.7516 134.416 -11.1099 90.1003 121.341 -5.78863 94.2515 126.991 -9.62626 89.9564 123.624 -10.2795 92.7753 126.838 -11.8772 90.8128 122.536 -2.9371 84.8317 108.856 -9.63812 86.0135 114.746 -2.76731 86.5792 108.162 -11.0609 90.7371 125.097 -2.53673 73.043 106.875 -10.3143 75.0849 116.366 -9.04127 75.9716 116.037 -9.92357 74.6763 117.226 -13.3023 76.6107 127.495 -3.81347 75.8715 107.338 -10.9986 74.2945 131.787 -6.83849 77.6673 130.92 -7.97213 79.9509 127.383 -5.12654 76.4239 117.364 7.49699 79.6098 120.36 4.88643 79.5468 114.305 5.90663 78.3479 108.471 -5.80049 80.1169 108.117 -13.6233 81.3351 130.611 -9.06203 83.483 116.149 2.62879 83.0011 114.026 3.50368 91.761 108.672 -14.126 92.1266 109.889 -18.0081 93.8845 131.645 -7.45462 96.1799 134.037 -11.4887 81.9698 117.706 -6.57603 78.9833 118.659 -9.33636 78.2737 115.773 -9.7916 81.6235 116.026 -5.37269 79.8693 114.493 -14.8934 83.5372 128.01 -6.78511 83.5372 116.896 -3.09725 86.2686 119.313 -6.65833 84.7701 120.477 -9.37344 85.7155 117.814 -1.09836 82.8336 116.065 -0.2435 84.0376 118.31 1.24899 82.4806 122.05 -11.5955 87.1182 124.405 -12.0018 88.0999 133.229 -10.2009 92.2897 123.818 -7.20253 93.4241 126.82 -10.8934 91.5661 125.3 -11.0513 89.9394 122.25 -7.90022 90.4806 121.459 -4.05592 93.4426 125.358 -4.55564 95.0537 127.861 -8.4207 86.6067 133.598 -11.5288 88.5707 135.852 -12.9256 89.8207 126.465 -12.6372 92.9117 128.817 -13.9117 95.0404 130.344 -13.2941 82.9299 109.011 -8.36213 85.6702 113.376 -2.09262 83.9642 114.927 -0.734322 83.2265 115.122 -10.3417 85.751 115.129 -7.31301 84.1511 107.994 -14.6242 84.6693 113.83 -16.0203 88.6597 113.95 -5.64331 88.16 112.314 -5.20661 87.6284 114.616 -8.44739 91.1709 112.257 -10.1186 89.261 107.896 -12.7825 84.4929 131.425 -10.2884 88.4714 122.412 -9.79086 88.4424 120.148 -1.065 85.9995 121.323 0.560211 86.1099 130.434 -8.26055 87.8345 118.872 -4.42515 91.1968 133.419 -9.01013 88.8191 128.275 -4.56676 81.5976 122.873 0.828606 76.9644 122.205 2.94316 81.4612 110.902 -0.296883 85.7392 110.723 -3.63627 75.9894 134.176 -12.4407 80.1251 132.842 -13.5803 83.9442 132.485 -14.6398 85.946 134.022 -15.3694 88.0213 136.327 -16.4059 91.3103 138.582 -16.933 94.3976 138.399 -17.1755 95.3962 132.764 -17.8798 92.8436 130.018 -17.5358 89.2928 126.974 -16.3569 86.4413 124.91 -15.6051 82.4754 123.01 -14.5108 91.896 112.486 -14.9156 82.8751 115.658 -0.544518 86.2805 115.188 -4.50003 76.1644 116.572 -8.83145 75.4185 115.882 -13.8516 76.0488 119.438 -12.6624 75.6543 131.457 -7.41829 79.4986 117.656 6.72963 79.0322 110.008 1.65974 78.0128 107.635 -12.0211 79.5268 130.758 -8.47779 82.1877 117.111 4.66623 91.3177 107.267 -17.6789 94.3523 135.804 -11.3701 79.199 116.397 -7.74822 77.416 115.064 -14.3959 84.1318 118.571 -6.36101 83.3881 117.034 -0.32283 85.0712 123.225 -11.8706 91.807 124.332 -9.03386 92.9703 124.047 -5.59067 87.5542 134.782 -12.3095 91.394 127.808 -13.2948 94.0891 129.464 -13.8324 83.6906 111.07 -2.07482 83.6929 113.909 0.096817 83.6402 115.586 -6.22978 82.2292 108.145 -14.0185 82.2626 114.108 -15.3812 85.9475 107.439 -15.3597 88.2578 113.456 -17.1125 88.2163 114.084 -11.2463 88.9763 106.666 -16.7455 83.1168 130.614 -9.81607 88.5233 125.332 -12.2287 88.5596 122.718 -0.990116 88.1236 120.568 -7.14322 91.5424 136.545 -12.2591 90.1959 130.708 -6.46555 83.1835 123.375 -0.566017 79.5957 122.783 1.99635 74.3672 117.295 7.88031 87.5631 110.072 -6.37584 74.1744 134.769 -11.9588 77.8467 133.564 -12.9456 82.0565 132.388 -14.1586 85.1416 133.114 -14.9897 86.8728 135.108 -15.8513 96.088 134.721 -17.6366 94.3716 131.254 -17.9443 90.9752 128.478 -16.8885 87.8886 125.817 -15.9581 84.6456 124.017 -15.1551 78.798 121.528 -13.6567 91.6357 111.58 -17.9377 84.2971 115.519 -2.50114 83.7426 120.625 1.77541 88.5833 114.451 -6.97195 88.0828 118.976 -2.26166 92.4098 128.085 -4.46593 90.9233 113.198 -10.8133 95.8359 131.912 -12.44 88.8584 109.104 -9.27186 75.6269 121.857 3.65715 78.5266 120.452 -11.3783 85.7325 132.479 -10.7807 87.2109 126.227 -3.03349 82.3865 115.792 -3.39975 85.5323 114.683 -10.7629 88.5351 113.906 -14.361 85.1809 114.135 -13.5766 82.7372 114.618 -13.0324 80.3171 114.815 -12.4815 77.8096 115.265 -12.0804 75.7054 115.895 -11.7089 74.7512 116.96 -11.2522 75.744 118.732 -10.8711 69.843 141.836 -9.30819 67.9679 143.189 -15.0231 72.8213 119.941 10.9157 71.6506 104.986 0.684029 69.456 100.727 -14.47 73.995 114.29 6.9995 73.1142 110.85 3.56299 72.9748 136.288 -10.6843 71.3295 137.732 -15.8765 71.3963 104.177 -15.1099 74.1581 133.103 -5.27631 75.2109 128.825 -1.40012 75.073 122.123 6.21136 74.2901 118.616 8.83824 74.0083 114.133 7.99301 73.4597 110.347 4.91832 72.8198 106.93 -0.967873 82.4554 113.29 2.18171 79.572 111.521 3.2642 80.1607 112.304 4.14649 -10.1429 113.254 10.7089 72.7842 105.382 -7.25814 -5.83078 104.99 14.0223 -2.85619 101.143 15.3198 0.690811 97.9167 16.3207 4.67302 94.8688 16.9057 66.3361 95.2358 0.153168 -11.892 122.645 7.67271 -12.1529 122.274 6.67995 -12.3643 121.685 5.78059 -12.534 120.909 5.0184 -12.626 119.978 4.42898 -12.646 118.938 4.04047 -12.5956 117.84 3.87142 -12.4777 116.734 3.92851 -12.2953 115.674 4.20803 -12.0595 114.707 4.70033 -11.7659 113.862 5.43361 -11.6777 127.672 6.3856 -12.1989 126.934 4.40896 -12.6304 125.765 2.6199 -12.9514 124.219 1.10294 -13.1465 122.369 -0.071487 -13.2072 120.301 -0.848503 -13.1242 118.113 -1.18808 -12.8996 115.91 -1.07389 -12.5437 113.798 -0.511894 -12.0803 111.876 0.468269 -11.5131 110.201 1.90664 -10.7279 108.684 4.35558 -10.8109 132.596 4.94501 -11.5843 131.502 2.01563 -12.2226 129.769 -0.634972 -12.6979 127.479 -2.88298 -12.987 124.738 -4.62311 -13.0768 121.674 -5.77454 -12.9633 118.431 -6.28242 -12.6504 115.16 -6.12376 -12.1492 112.018 -5.30077 -11.4627 109.168 -3.83942 -10.636 106.694 -1.7434 -9.32736 137.352 3.37615 -10.3401 135.919 -0.462959 -11.1772 133.648 -3.93729 -11.8 130.646 -6.88298 -12.1796 127.054 -9.1636 -12.2968 123.039 -10.6717 -12.1477 118.789 -11.3375 -11.7385 114.502 -11.1299 -11.0883 110.379 -10.0578 -10.1881 106.649 -8.12857 -9.11383 103.415 -5.39493 -7.24765 141.871 1.70126 -8.48584 140.119 -2.99197 -9.509 137.344 -7.23812 -10.2704 133.674 -10.8392 -10.7339 129.283 -13.627 -10.8777 124.375 -15.4702 -10.6953 119.179 -16.2843 -10.1948 113.94 -16.03 -9.38 108.916 -14.6924 -8.24042 104.41 -12.2576 -6.81169 100.55 -8.6587 -4.60298 146.087 -0.054435 -6.04802 144.042 -5.53284 -7.24321 140.802 -10.4893 -8.13144 136.519 -14.6932 -8.67267 131.393 -17.9473 -8.84024 125.664 -20.0997 -8.62744 119.599 -21.0494 -8.04318 113.482 -20.7529 -7.08603 107.625 -19.1759 -5.77963 102.353 -16.3577 -4.12698 97.8226 -12.2769 -1.43115 149.939 -1.86574 -3.0623 147.631 -8.04924 -4.41095 143.974 -13.6441 -5.41411 139.139 -18.3892 -6.02504 133.353 -22.0622 -6.21411 126.886 -24.4919 -5.97388 120.04 -25.564 -5.31401 113.136 -25.2289 -4.25377 106.509 -23.4776 -2.81467 100.514 -20.3577 -0.857285 95.3878 -15.9247 2.22112 153.371 -3.70596 0.427597 150.832 -10.5049 -1.05525 146.812 -16.6565 -2.15849 141.496 -21.8739 -2.82948 135.134 -25.9124 -3.03783 128.024 -28.5838 -2.77313 120.497 -29.7627 -2.04877 112.906 -29.3942 -0.897324 105.606 -27.4954 0.658188 98.9955 -24.1115 2.66969 93.7269 -19.7623 6.30045 156.332 -5.54841 4.37052 153.602 -12.8633 2.77497 149.275 -19.4821 1.58868 143.556 -25.0954 0.866531 136.711 -29.4409 0.642624 129.061 -32.3147 0.926575 120.963 -33.5833 1.70657 112.796 -33.1866 2.9455 104.941 -31.144 4.64336 97.9398 -27.491 6.69341 92.8958 -23.465 10.7483 158.78 -7.36639 8.71009 155.896 -15.0906 7.02557 151.328 -22.08 5.77182 145.289 -28.0077 5.00963 138.061 -32.5957 4.77312 129.983 -35.6311 5.07339 121.431 -36.9701 5.89712 112.807 -36.5512 7.20499 104.513 -34.3944 9.05486 97.2925 -30.556 11.2406 92.5807 -26.9734 15.4979 160.678 -9.13321 13.3818 157.684 -17.1547 11.6321 152.94 -24.4125 10.3309 146.669 -30.5671 9.53901 139.163 -35.3323 9.29359 130.775 -38.4834 9.60574 121.895 -39.8743 10.4606 112.939 -39.4398 11.8189 104.326 -37.2 14.0588 96.9514 -33.3467 16.6434 92.4725 -29.9718 23.0545 162.362 -11.6177 20.8829 159.289 -19.8483 19.0871 154.421 -27.2967 17.7525 147.986 -33.6129 16.9392 140.284 -38.5019 16.6871 131.675 -41.736 17.0074 122.563 -43.1632 17.8853 113.373 -42.7169 19.2791 104.535 -40.4185 21.2106 97.0107 -36.2628 23.42 92.7149 -32.4103 30.8573 162.843 -13.8754 28.6938 159.781 -22.0763 26.9055 154.931 -29.4973 27.9242 148.749 -36.2635 26.8335 141.896 -40.4148 27.1308 134.403 -43.1558 24.8332 123.19 -45.306 25.7073 114.033 -44.8611 27.096 105.227 -42.5709 28.977 97.7766 -38.3173 31.01 93.1798 -33.7501 36.0984 162.352 -15.1936 33.9816 159.358 -23.2144 33.3826 154.015 -31.9877 31.2043 127.797 -45.1888 41.2721 161.261 -16.3458 39.5527 157.252 -27.2589 34.1114 118.081 -46.7154 35.274 106.958 -44.7195 36.8836 99.3018 -39.4702 38.9366 94.263 -33.7738 46.3034 159.583 -17.3163 44.8502 156.854 -26.2038 42.5748 117.521 -46.6924 42.9789 108.591 -45.2964 44.501 100.951 -40.6187 47.291 94.8665 -33.4268 51.1197 157.345 -18.0904 49.9772 155.213 -25.3275 48.2059 117.708 -45.7612 48.7168 109.961 -44.0908 50.3568 102.509 -40.027 53.4827 96.7468 -32.9174 55.6498 154.578 -18.6568 54.8409 152.392 -25.0769 52.7864 118.209 -43.2581 53.6228 111.351 -41.2941 55.2413 104.656 -38.0407 58.7364 99.47 -31.8202 59.8286 151.323 -19.0083 59.0656 148.888 -25.0487 58.6371 112.647 -37.2162 60.0213 108.358 -34.3455 66.7364 101.215 -23.2055 64.3461 145.393 -20.1264 63.2939 144.171 -24.2324 64.6093 139.563 -25.8976 66.0209 134.24 -27.224 64.8265 128.137 -31.0498 61.4092 121.344 -36.0211 68.4454 138.292 -21.5291 45.453 130.809 -41.5454 41.6524 143.401 -39.21 50.101 128.433 -40.9145 59.0129 137.957 -33.7931 50.9314 147.376 -33.4765 46.2433 131.854 -39.2708 49.7303 130.061 -38.4737 43.1271 140.511 -36.8678 43.4601 135.718 -38.774 52.9147 130.138 -37.0872 45.9668 143.509 -34.5197 55.443 132.636 -35.7653 50.0284 143.557 -33.3201 56.2208 136.784 -34.4582 54.0432 141.001 -33.4001 46.726 132.091 -39.9847 50.1181 130.245 -39.3182 43.4927 141.099 -37.7857 53.4219 130.291 -37.7879 56.1362 132.807 -36.2509 50.4828 144.208 -33.8546 57.0422 137.29 -34.817 54.643 141.653 -33.7723 55.0842 126.961 -39.0439 60.0643 131.807 -35.2485 60.3282 138.873 -32.42 37.8104 136.599 -42.3736 42.95 129.62 -43.6504 57.0126 145.449 -31.2322 50.941 150.632 -32.0693 43.8723 150.975 -35.442 38.0876 145.889 -39.6926 49.5108 126.802 -42.685 45.605 137.439 -38.4211 44.6923 140.828 -36.8618 47.893 134.316 -39.1277 50.3776 132.134 -38.6198 52.5225 131.75 -37.7278 54.0743 133.869 -37.1666 53.9713 137.248 -36.4482 52.0865 140.596 -35.554 49.2647 142.875 -34.8407 46.3531 143.052 -35.2278 43.9086 135.978 -39.5785 46.5533 144.179 -35.4761 49.8356 130.846 -38.4441 47.9983 130.76 -39.0142 46.6052 132.656 -39.1566 44.0339 136.249 -38.6168 42.8387 138.17 -38.0111 43.6017 140.564 -36.8188 44.6634 133.535 -39.1929 52.6931 130.851 -37.3023 51.3763 129.845 -37.8198 44.2029 142.382 -35.6615 46.0758 143.337 -34.7362 54.9106 133.214 -36.2776 54.299 131.078 -36.3859 47.9753 143.917 -33.7041 49.8059 143.321 -33.8591 55.4037 137.025 -35.1736 56.1837 134.599 -35.1328 52.1021 142.547 -33.2281 53.387 140.878 -34.1972 55.4482 138.973 -33.8331 48.1733 142.19 -35.9091 46.6141 142.785 -35.6607 50.1892 139.952 -36.9649 52.0658 136.997 -37.7961 52.4194 132.447 -38.0845 51.4089 133.398 -38.5931 49.903 135.983 -38.7555 47.893 138.861 -37.994 46.3798 141.377 -36.6995 54.5637 128.486 -38.5583 60.8235 135.305 -33.5811 58.5718 132.382 -36.0552 39.8159 132.627 -42.8845 41.7955 136.119 -41.0087 54.1663 148.483 -31.4153 55.9539 143.477 -32.6654 40.5373 149.092 -37.6693 45.7748 147.539 -36.2109 37.1201 141.421 -41.3319 46.3145 127.804 -43.6823 52.3171 126.477 -40.9857 59.1168 142.133 -31.5495 47.4993 151.562 -33.5084 58.2159 128.907 -37.3334 61.9319 130.28 -33.5996 55.9843 124.214 -39.8068 61.9357 139.512 -29.8517 40.0547 127.159 -44.8752 32.5262 135.693 -43.2641 50.1396 153.648 -28.7343 58.0699 147.457 -28.6001 32.4395 147.874 -38.275 40.7865 154.09 -32.8062 48.5485 123.891 -44.2502 44.8917 139.171 -37.7145 46.6541 135.791 -38.9245 49.1683 133.076 -38.9875 51.4356 131.609 -38.169 53.4767 132.569 -37.389 54.253 135.498 -36.8633 53.2321 138.983 -35.9892 50.709 141.926 -35.1558 47.8345 143.294 -34.7866 45.1675 142.152 -35.9951 45.1713 133.754 -39.9113 44.7331 143.025 -36.6728 43.2421 138.583 -38.8326 48.3979 130.967 -39.812 51.8085 130.009 -38.6079 54.898 131.214 -36.9842 56.9414 134.926 -35.5317 56.2052 139.595 -34.146 52.5633 143.214 -33.6329 48.5055 144.528 -34.4611 48.2504 131.567 -38.9341 43.4311 138.451 -37.8428 45.1446 134.246 -39.058 51.3088 130.573 -37.8872 44.498 142.267 -35.7379 53.9312 131.767 -36.7632 47.939 143.698 -34.0771 55.4586 135.033 -35.7586 51.6817 142.351 -33.9384 54.6942 139.021 -34.6087 47.6009 142.867 -35.4487 49.1112 141.201 -36.4341 51.2183 138.511 -37.4098 52.6196 135.479 -38.0192 51.7129 132.488 -38.381 50.7646 134.609 -38.7822 48.8984 137.414 -38.4633 47.013 140.215 -37.3683 45.949 142.148 -36.1946 56.8747 130.003 -37.3653 59.271 135.122 -34.8148 43.4222 133.063 -41.3875 53.4219 145.768 -32.7803 43.3933 146.037 -37.8806 41.0259 139.775 -40.1938 47.7811 129.312 -41.5937 52.3542 128.12 -39.7631 57.9468 140.752 -33.0391 48.3905 148.009 -34.6435 59.466 126.101 -36.8574 62.769 134.918 -31.1499 35.337 130.917 -44.7544 54.5184 150.949 -28.3414 36.1436 151.734 -35.4628 31.2473 142.63 -41.2578 44.4825 124.75 -45.068 52.223 123.767 -42.08 60.3461 143.735 -29.0309 45.5294 154.723 -30.4826 52.8762 134.088 -38.0496 52.9993 133.095 -37.9288 65.4323 107.528 -26.9171 67.9487 126.833 -28.5074 70.5081 134.319 -20.2732 62.6749 119.616 -35.7438 72.6589 117.278 -23.098 72.2444 116.442 -22.3254 71.3889 125.795 -28.3703 65.5901 109.029 -33.5959 69.3603 107.637 -26.6398 75.0515 126.757 -29.2103 63.5342 113.12 -36.9642 64.2148 119.206 -36.4696 70.5985 118.958 -37.1681 74.9121 108.319 -27.0453 71.9998 116.742 -36.9872 71.9612 114.391 -36.0381 88.8094 110.578 -26.9527 84.1169 110.131 -30.6072 87.2695 128.749 -35.4465 93.0867 136.547 -27.8016 77.576 118.913 -26.6205 76.2215 114.981 -25.3972 75.678 123.817 -34.645 78.3012 128.686 -29.8368 77.0845 117.097 -33.174 81.2906 120.822 -28.8656 75.1464 118.021 -36.546 81.172 131.293 -29.8079 83.4949 133.994 -29.1154 81.9364 120.685 -33.7567 87.4282 126.444 -33.002 84.2007 123.162 -29.9962 87.3956 126.405 -30.3062 80.9881 121.747 -36.5927 79.7217 108.446 -27.144 76.8458 113.737 -33.7746 81.9683 107.792 -26.8548 80.6767 124.289 -36.9998 70.1714 106.645 -20.1493 72.022 116.241 -22.9037 72.8888 115.884 -22.6383 73.3892 117.141 -19.0068 69.7533 125.895 -28.1175 72.9185 107.101 -21.1147 69.1965 130.484 -24.8144 72.6997 129.897 -25.4795 73.1742 126.294 -28.81 63.1531 116.358 -37.3542 67.3688 119.359 -37.0517 66.7935 113.286 -37.5877 72.197 107.977 -26.8719 77.8994 107.939 -21.2215 76.3201 129.88 -26.4826 71.9026 115.225 -37.0598 71.0463 113.066 -37.4483 87.9791 108.369 -27.0824 90.3568 109.787 -24.1197 85.8919 131.003 -34.834 89.9668 133.538 -32.7744 75.3807 117.261 -28.6335 74.2589 118.273 -24.8974 74.5081 115.555 -23.9173 74.7186 115.201 -29.2771 78.273 114.414 -20.2702 76.9377 127.337 -29.5447 74.9877 116.19 -32.3036 79.228 118.61 -30.8741 79.7455 119.59 -27.752 75.7618 117.015 -35.1966 72.8947 115.268 -34.2906 73.0867 117.445 -36.2917 78.8617 122.15 -25.111 82.7305 124.079 -27.0743 82.4725 132.777 -29.4795 84.5114 123.193 -33.8509 87.4141 126.338 -31.4821 85.952 124.849 -30.2847 82.9247 121.687 -31.9314 81.3232 120.724 -35.4257 84.0399 124.603 -36.7655 87.4445 127.25 -34.4856 81.9223 133.222 -27.574 84.3016 135.509 -27.551 85.3181 126.104 -28.0604 88.5803 128.469 -28.7521 90.0231 129.941 -30.4819 77.43 108.57 -27.2025 76.3149 112.625 -34.143 74.121 114.113 -34.4307 78.5236 114.752 -26.0741 79.2235 114.861 -29.7308 81.84 107.809 -22.5419 82.8432 113.477 -21.7471 80.6945 113.198 -32.7484 80.1006 111.667 -32.8137 81.4167 114.445 -29.7768 85.2891 111.653 -30.1957 85.1586 107.567 -26.8363 79.5016 131.024 -27.3879 82.7149 121.901 -29.5647 78.0128 119.311 -36.7914 75.0649 120.445 -36.8974 79.7863 129.926 -29.9221 79.3229 118.187 -33.5803 84.4402 132.877 -32.1553 80.111 127.576 -34.3959 71.2569 121.989 -34.7844 66.2834 120.958 -33.9154 71.8315 110.129 -33.2852 77.2358 110.04 -32.7655 73.4782 133.884 -21.131 77.6228 132.464 -22.2276 81.3655 132.277 -23.4746 83.426 133.82 -24.0033 85.7036 136.141 -24.3458 88.7308 138.375 -25.7679 91.4667 138.163 -27.2159 92.7583 132.552 -26.9171 90.4562 129.827 -25.7152 86.8669 126.78 -24.6669 84.0844 124.721 -23.6771 80.1888 122.834 -22.3988 88.4224 111.98 -26.642 73.0971 114.872 -34.0422 78.0365 114.257 -32.4652 72.6559 116.366 -23.6348 74.0565 115.738 -18.8756 74.3546 119.371 -20.3332 70.6786 130.252 -24.9797 66.3234 116.559 -38.424 68.7427 109.182 -33.5877 75.2695 107.415 -21.4172 74.5162 129.923 -26.0103 69.7229 116.044 -38.0771 89.5331 107.124 -23.792 88.3401 135.32 -31.9677 74.1388 115.95 -26.0645 75.9612 114.948 -19.4391 77.1416 118.114 -30.0044 73.3922 116.231 -34.5642 80.9955 123.121 -26.1556 85.0815 123.793 -32.0715 84.2148 123.344 -35.5836 83.1264 134.427 -27.4776 86.9811 127.454 -28.4118 89.522 129.098 -29.4795 74.6652 110.346 -32.9938 73.4634 113.087 -34.946 76.8228 114.888 -29.5521 79.8915 107.956 -22.0252 80.6122 114.073 -21.0487 83.7573 107.262 -22.8645 86.4999 113.195 -22.8837 83.3651 113.698 -27.6845 87.0649 106.513 -23.293 78.1729 130.027 -26.8719 84.0191 124.97 -27.6585 78.0395 121.874 -37.0279 80.9955 119.953 -31.531 86.4391 136.135 -29.7404 82.2626 130.071 -33.6418 73.3188 122.63 -34.5204 68.9993 121.598 -34.5597 61.1201 116.288 -36.4563 80.2549 109.485 -31.4116 71.6743 134.356 -20.764 75.3384 133.298 -21.6337 79.5527 132.054 -22.774 82.5547 132.906 -23.8513 84.4528 134.914 -24.1434 93.1861 134.488 -27.5777 91.9487 131.059 -26.2461 88.5515 128.283 -25.1888 85.4827 125.624 -24.1983 82.3397 123.833 -23.052 76.6708 121.456 -21.1288 89.869 111.457 -23.9848 75.2791 114.471 -33.131 72.5418 119.712 -36.6595 81.3907 113.876 -31.5584 78.3679 118.196 -35.5399 83.0864 127.336 -36.4037 85.4308 112.541 -29.518 90.2145 131.46 -31.6971 82.9166 108.627 -29.6277 64.7835 120.521 -33.7531 75.2428 120.861 -23.2937 80.7976 132.083 -27.6852 77.9572 125.484 -34.7339 74.1796 115.013 -31.4161 80.9021 114.638 -26.7177 85.1483 113.312 -25.263 82.0676 114.019 -24.0982 79.6802 114.358 -23.3746 77.3173 114.669 -22.6413 75.2124 115.161 -21.7041 73.588 115.837 -21.0027 72.7523 116.861 -20.956 73.4137 118.581 -21.8902 66.4762 141.604 -20.8641 58.3546 118.743 -38.2809 63.6573 103.164 -29.6181 61.2017 113.464 -35.2759 62.603 110.079 -31.8602 69.9438 135.891 -21.1621 68.2393 131.67 -26.2038 67.4378 127.136 -29.5202 62.8091 120.687 -35.9907 60.5767 117.653 -37.3935 60.7761 113.247 -36.1998 62.0921 109.556 -33.1525 65.2417 105.935 -28.1842 71.3073 112.394 -36.0092 68.3164 110.617 -35.2945 68.3445 111.331 -36.3747 -11.3552 113.133 6.63324 68.4684 104.805 -22.5375 -9.45044 104.401 1.95409 -7.56053 100.492 -0.627556 -5.0686 97.2087 -3.46945 -1.8849 93.9531 -6.38548 56.808 93.3547 -23.3279 61.9223 96.6682 -23.3508 59.4081 140.566 19.6623 60.4639 137.464 20.042 61.8763 134.831 19.5882 63.4845 132.857 18.7674 59.1931 143.585 18.4382 65.1653 131.503 17.6961 59.7648 145.792 16.5098 66.574 130.654 16.1776 60.7479 147.03 14.1165 67.7426 130.322 14.3856 61.9742 147.354 11.7839 68.7983 130.581 12.5261 63.4081 146.812 9.84286 69.823 131.736 10.6896 65.1046 145.464 8.28365 70.6207 133.636 8.99838 67.079 143.51 7.13741 70.6489 135.976 7.7083 68.7916 141.109 6.6273 70.0306 138.529 6.87865 46.0899 131.451 -40.7647 44.2964 133.408 -40.6498 42.8521 136.048 -40.2939 42.1344 139.179 -39.5132 48.0895 130.139 -40.7032 42.5725 142.25 -38.4974 50.1107 129.339 -40.116 44.0636 144.531 -37.2763 52.0814 129.065 -39.1855 46.164 145.859 -35.8431 53.992 129.384 -38.172 48.4484 146.268 -34.5523 55.8478 130.62 -37.1918 50.7075 145.792 -33.6656 57.2832 132.639 -36.2405 52.9926 144.492 -33.2066 58.0113 135.002 -35.2811 55.2984 142.565 -33.2185 57.9772 137.569 -34.3714 57.0771 140.172 -33.5929 1.38182 68.9774 -45.9569 1.47894 65.0285 -50.2728 1.09637 63.909 -52.87 4.59888 9.97681 -40.0908 4.56625 11.4122 -44.5415 4.27933 14.0176 -48.351 3.6239 17.5846 -51.2515 2.5518 21.6054 -53.3934 2.81797 25.9316 -56.0077 3.01964 28.3271 -57.5284 3.3214 31.8267 -58.9081 3.45486 35.6754 -59.9047 3.14198 39.6169 -60.4303 2.63558 43.6332 -60.5215 2.15143 47.625 -60.2798 1.8074 51.4352 -59.6459 1.64281 54.9177 -58.6553 1.54494 58.1214 -57.1999 1.24614 61.2169 -55.2299 2.20258 72.8765 -41.2252 4.0999 75.8378 -37.4454 6.18702 78.5203 -33.435 56.4936 87.4619 -10.08 57.7629 85.6098 -10.3506 59.9983 84.0135 -10.7406 63.4852 82.0057 -11.5406 67.5801 79.1089 -12.265 -10.1652 108.262 6.21582 -11.0734 112.965 7.57632 -0.481384 91.8178 -0.502998 -8.62003 103.705 4.73889 -6.45135 99.499 2.95057 -3.73181 95.6969 0.985786 -60.1092 28.2359 7.92776 -8.84988 108.395 10.4182 -10.438 113.006 9.67531 2.73864 92.5778 10.975 -6.7205 103.892 10.9765 -4.01207 99.6658 11.3213 -0.806137 95.8341 11.3643 64.3527 94.8043 -12.5052 60.0369 91.4033 -11.0824 -11.539 10.151 19.9241 -5.49863 10.1436 21.8177 -15.9268 10.1577 16.38 -19.33 10.1651 11.6357 -22.5381 10.1681 4.40154 32.719 10.1303 18.5309 40.266 10.1244 13.6679 14.2263 10.1377 23.0462 22.7994 10.1333 21.7028 2.70157 10.137 23.1159 44.4157 10.1281 7.56966 6.82094 10.137 23.6438 46.5807 10.1555 0.804138 -22.7316 10.1651 -8.79883 46.5392 10.1481 -8.35619 -6.5737 10.1422 -30.0845 -12.5993 10.151 -28.2717 -18.4966 10.1644 -25.6115 -21.6988 10.1659 -20.5282 -21.6462 10.1607 -14.2928 40.6619 10.1362 -21.951 32.9614 10.1496 -27.1618 22.9625 10.1599 -31.832 13.8408 10.1637 -33.647 2.11658 10.1488 -32.443 44.7679 10.1347 -15.5147 6.04318 10.1488 -32.526 12.5907 10.1733 -3.80531 59.1887 91.8044 8.95242 -37.1383 88.9529 -2.97714 -31.8022 10.0858 -1.97102 -25.1531 10.1622 -2.2068 -48.967 94.3801 -3.43312 -42.7435 92.7505 -3.24479 -45.2458 14.541 -1.9814 -38.8006 11.688 -1.94433 -51.5643 18.2037 -2.1067 -56.8395 22.9229 -2.04294 -61.3273 28.167 -2.00068 -64.683 34.1592 -1.92802 -67.7244 42.676 -1.88947 -69.2985 52.0358 -1.98363 -69.0782 59.0674 -1.98585 -68.0128 66.587 -1.96361 -66.3149 75.4782 -2.11857 -61.6254 86.6775 -2.9586 -55.4464 92.4777 -3.38715 -32.8632 83.5116 -1.95249 -29.1664 80.3716 -1.67964 -25.0219 78.6923 -1.82199 -19.731 77.9019 -1.94433 -13.8211 78.3245 -1.89985 0.599609 81.0967 -1.11393 5.68803 83.0274 -0.72765 6.50954 84.4391 -0.967133 5.72511 86.2104 -0.331726 3.73808 88.5303 1.10886 0.442429 91.5093 2.82008 -2.82133 95.1602 4.04714 -5.66766 99.1208 5.2742 -8.03503 103.465 6.34038 -9.79816 108.128 7.22415 -10.9333 112.931 8.02786 -26.7479 60.7542 43.6698 -20.1774 63.8423 42.5992 -8.42801 27.4619 48.2347 14.9477 25.7121 48.3904 3.09452 25.896 48.4757 42.6645 36.5214 48.0598 47.7344 49.638 47.1827 40.5551 62.2549 45.2372 -20.4769 63.1994 -50.3046 -27.628 60.1306 -51.1217 -8.33606 28.1588 -55.7549 41.6947 37.0493 -55.6696 46.1069 49.7648 -54.9594 39.661 61.5616 -52.9449 -28.2701 61.5994 42.6785 -21.096 64.5792 41.7131 -10.6093 65.5757 41.2676 1.58052 66.8139 41.2357 -20.6037 30.6107 47.064 -27.9498 36.4747 46.6355 -32.0076 43.3195 45.7562 -33.3289 50.1288 44.8568 -9.84192 26.1273 47.153 -32.1367 56.4888 43.8329 40.1118 30.266 46.5139 29.9349 25.9004 46.5236 16.4046 23.9305 47.0581 3.12344 24.0639 47.2805 46.8217 35.817 46.5762 50.7757 42.2756 46.3478 52.0569 49.3051 45.7651 50.1277 56.399 44.7582 45.0638 62.5551 43.5645 13.7088 68.7742 41.1082 26.4851 69.2584 41.2994 37.1171 66.9377 42.3456 1.53827 66.2289 -48.7276 -11.1349 65.489 -48.6957 -21.7418 64.0098 -49.2903 -29.2399 60.7943 -50.2557 -33.7448 49.2984 -52.3954 -32.2894 43.1438 -53.1362 -27.8334 36.8602 -53.862 -20.3917 31.2343 -54.2831 -10.0503 26.5855 -54.5085 -32.8298 55.3737 -51.4331 2.729 24.1781 -54.8289 15.8893 23.9164 -54.731 29.5034 26.0458 -54.0829 39.6795 30.5618 -53.8806 46.253 36.21 -53.7901 50.0128 42.5536 -53.5439 51.139 49.2547 -52.9597 49.321 55.8341 -52.0848 44.6241 61.6202 -51.0127 37.1431 65.7944 -49.8316 26.732 68.0261 -48.7847 13.6339 67.8667 -48.6371</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"LOD3spShape-lib-normals\" name=\"normal\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2290\" source=\"#LOD3spShape-lib-normals-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6870\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"LOD3spShape-lib-normals-array\">-0.192109 -0.934569 0.299458 -0.06315 -0.993623 0.093407 -0.038767 -0.993005 0.111528 -0.11695 -0.921313 0.370816 -0.085264 -0.993927 0.06957 -0.25821 -0.942076 0.214058 -0.305238 -0.944237 0.123473 -0.103012 -0.993873 0.04007 -0.109849 -0.993698 0.02232 -0.319871 -0.945464 0.061492 0.322015 -0.653105 0.68539 0.238016 -0.809438 0.536805 0.39559 -0.829362 0.394547 0.547107 -0.665777 0.50736 0.149283 -0.925897 0.34703 0.227375 -0.943129 0.242504 -0.182106 -0.7902 0.585167 -0.310544 -0.820667 0.479654 -0.418246 -0.841388 0.342252 -0.407245 -0.671943 0.618582 -0.544891 -0.711903 0.443045 -0.234371 -0.618101 0.750347 -0.474249 -0.857348 0.200104 -0.472515 -0.875412 0.101901 -0.601129 -0.750567 0.274396 -0.593419 -0.791427 0.146617 0.282256 -0.953514 0.105559 0.497204 -0.845385 0.195227 0.680184 -0.678639 0.277127 0.475425 -0.378716 0.794069 0.394699 -0.508097 0.765539 0.651796 -0.507567 0.563506 0.728714 -0.35445 0.585953 -0.280085 -0.456993 0.844222 -0.472084 -0.52749 0.706322 -0.629949 -0.5896 0.505505 -0.525528 -0.402813 0.749375 -0.688269 -0.483465 0.540877 -0.345696 -0.333643 0.877027 0.797494 -0.502759 0.333521 0.868857 -0.332163 0.36709 0.779236 -0.208323 0.591094 0.556733 -0.232343 0.797537 0.611419 -0.086952 0.786515 0.805975 -0.07802 0.586786 0.901017 -0.198547 0.385677 0.912954 -0.073233 0.401437 0.587309 0.31693 0.74473 0.626298 0.112282 0.771455 0.807598 0.10215 0.580819 0.767563 0.296279 0.568389 0.905959 0.097128 0.412074 0.868972 0.273148 0.412646 0.369046 0.664292 0.650016 0.498279 0.502362 0.706648 0.692864 0.459155 0.555982 0.584348 0.597963 0.548615 0.813067 0.415121 0.408163 0.751114 0.515121 0.41289 0.19627 0.766932 0.610977 0.270011 0.7156 0.644213 0.477417 0.672112 0.565984 0.38089 0.730939 0.56626 0.665617 0.613839 0.424448 0.5601 0.712938 0.42191 -0.142237 0.892596 0.427833 -0.115435 0.801937 0.586149 -0.145778 0.823148 0.548795 -0.183731 0.901347 0.392196 -0.170598 0.892172 0.418242 -0.198923 0.94046 0.275618 -0.083913 0.784617 0.614276 -0.104776 0.836925 0.537195 -0.07128 0.762805 0.642687 -0.083732 0.95816 0.273711 -0.152017 0.963903 0.218593 -0.043758 0.995476 0.084341 0.11433 0.983142 0.142691 -0.188565 0.971095 0.146345 -0.153667 0.986837 0.050398 -0.277878 0.955105 0.102752 -0.278528 0.959779 0.035299 -0.266228 0.943946 0.195163 -0.494465 0.642119 0.585822 -0.123678 0.744163 0.656449 -0.094312 0.919596 0.381378 -0.521981 0.776809 0.352284 0.287464 0.72515 0.625717 0.35104 0.866307 0.355363 -0.085399 0.659129 0.747166 0.224013 0.689809 0.688464 -0.41145 0.564912 0.715251 -0.896437 0.304297 0.322186 -0.755967 0.475931 0.449448 -0.804069 0.52634 0.276477 -0.929837 0.307416 0.202235 -0.651421 0.428251 0.626301 -0.812838 0.261118 0.520685 -0.700828 0.14352 0.698743 -0.528973 0.340042 0.777534 -0.323564 0.505566 0.799819 -0.384671 0.217738 0.897005 -0.26768 0.410295 0.871783 -0.51729 -0.021456 0.855541 -0.703157 -0.1848 0.686599 -0.802326 -0.033833 0.595927 -0.877917 -0.14451 0.456484 -0.806047 -0.267053 0.528176 -0.89323 0.116397 0.434273 -0.92976 -0.00252 0.368157 -0.693473 -0.636086 0.338364 -0.705373 -0.68381 0.186692 -0.75587 -0.532488 0.380943 -0.796546 -0.566484 0.211211 -0.077417 -0.240522 0.967551 -0.089798 -0.134723 0.986806 -0.168487 -0.121841 0.978145 -0.138523 -0.221426 0.965289 -0.113525 -0.038943 0.992772 -0.195995 -0.017488 0.980449 -0.602195 -0.290799 0.743503 -0.742439 -0.374894 0.555193 -0.432918 -0.200289 0.878901 -0.818103 -0.413906 0.399236 -0.879805 -0.419705 0.22314 -0.8832 -0.285146 0.372357 -0.940384 -0.263381 0.215195 -0.205308 0.092751 0.974293 -0.12459 0.080228 0.988959 -0.122228 0.178941 0.976238 -0.196017 0.189929 0.962031 -0.04789 0.778827 0.625407 -0.065661 0.712179 0.698921 -0.086279 0.666075 0.740878 -0.054107 0.736647 0.674109 0.32735 0.918436 0.222077 0.038245 0.947019 0.318892 -0.067436 0.912058 0.404479 0.299059 0.868082 0.396229 0.020777 0.864061 0.502958 0.601008 0.74983 0.276665 0.10013 0.787789 0.607752 0.137884 0.80072 0.582954 0.293157 0.782715 0.549014 0.251535 0.793724 0.553834 0.033793 0.760625 0.648311 0.012829 0.792843 0.609291 -0.001462 0.805911 0.592035 0.470195 0.782277 0.408607 0.406592 0.824118 0.394351 -0.228092 0.919665 0.319673 -0.149194 0.877198 0.45636 0.221981 0.775644 0.590848 0.477153 0.718896 0.505483 0.642223 0.702693 0.306223 -0.941954 -0.151996 0.299365 -0.977272 -0.097629 0.18817 -0.969667 0.027366 0.242894 -0.984274 0.065087 0.16422 -0.081923 0.660823 0.746057 -0.143863 0.635643 0.75846 -0.950758 0.179022 0.253002 -0.969441 0.180582 0.166057 0.433741 0.791171 0.431182 0.286611 0.730746 0.619568 0.635928 0.49935 0.588427 0.410194 0.41588 0.811655 -0.030936 0.832088 0.553781 -0.063268 0.738092 0.671727 -0.236437 0.785277 0.572222 -0.098454 0.365739 0.925495 -0.356861 0.365039 0.859882 0.116456 0.704283 0.700303 0.160354 0.369389 0.915335 -0.380395 0.81813 0.431235 -0.491132 0.823545 0.283836 -0.59916 0.341103 0.724332 -0.798743 0.301719 0.520552 0.047573 -0.992573 0.111966 0.069354 -0.994739 0.075398 0.015592 -0.990695 0.135202 0.028503 -0.991144 0.129693 0.0864 -0.911356 0.402449 0.046371 -0.905885 0.420977 -0.018844 -0.991895 0.125654 -0.057065 -0.909815 0.411073 0.087743 -0.99576 0.027619 0.126144 -0.779499 0.613571 0.067151 -0.760559 0.645787 0.153713 -0.607983 0.778928 0.075394 -0.57677 0.81342 -0.085238 -0.760064 0.644234 -0.102578 -0.566247 0.817827 0.045094 -0.227711 0.972684 0.047131 -0.133922 0.98987 0.005657 -0.158915 0.987276 0.006376 -0.238835 0.971039 0.058631 -0.040878 0.997442 0.002975 -0.056704 0.998387 0.127635 -0.116289 0.98498 0.152279 -0.014755 0.988227 0.100619 -0.20516 0.973543 0.059288 0.068169 0.995911 -0.006745 0.055506 0.998436 0.05032 0.180626 0.982264 -0.021925 0.163036 0.986376 0.163736 0.099069 0.981517 0.156175 0.220652 0.962768 0.020684 0.317842 0.947918 -0.050294 0.316731 0.947181 -0.025411 0.533931 0.845146 -0.086911 0.5228 0.848014 0.127716 0.356862 0.925385 0.071441 0.516034 0.853584 -0.061054 0.766638 0.63917 0.078289 0.741306 0.666586 0.208508 0.671416 0.711144 0.313289 0.499706 0.807554 0.378689 0.310587 0.871855 0.400342 0.118619 0.908656 0.381543 -0.070384 0.921668 0.331083 -0.22771 0.915714 0.260306 -0.364971 0.893889 0.178111 -0.473128 0.862802 0.071351 -0.485088 0.87155 -0.127917 -0.411323 0.902469 -0.217134 -0.272275 0.9374 -0.28612 -0.114565 0.95132 -0.297833 0.014133 0.954513 -0.259212 0.153056 0.953616 -0.214461 0.319798 0.922895 -0.151901 0.528641 0.835144 -0.103669 0.295387 0.949736 -0.165776 0.313209 0.935104 -0.083675 0.492895 0.866056 -0.119834 0.470121 0.874429 -0.087588 0.774585 0.626376 -0.256922 -0.123444 0.958516 -0.282852 0.013185 0.959073 -0.378724 -0.276752 0.883163 -0.438423 -0.070607 0.895991 -0.437651 -0.063548 0.896897 -0.390678 -0.27619 0.878117 -0.251518 -0.431278 0.866451 -0.276371 -0.456203 0.845871 -0.19905 -0.303218 0.9319 -0.274611 0.135247 0.951996 -0.249887 0.293965 0.922573 -0.442099 0.099565 0.891423 -0.416837 0.295755 0.859521 -0.412837 0.32408 0.851198 -0.438351 0.113033 0.891668 0.156401 -0.497394 0.85331 0.061408 -0.535686 0.842181 0.119454 -0.452018 0.883974 0.032667 -0.468626 0.882793 0.050048 -0.559259 0.827481 0.150699 -0.524664 0.837865 0.208739 -0.361482 0.908713 0.238743 -0.413555 0.878621 0.232419 -0.391651 0.890276 -0.125806 -0.451337 0.883441 -0.128663 -0.465603 0.875591 -0.150994 -0.530967 0.833832 0.284031 -0.235212 0.929517 0.269401 -0.199777 0.942079 0.293517 -0.238502 0.925724 0.286186 -0.032306 0.957629 0.310905 -0.056264 0.948774 0.312743 -0.062252 0.947795 0.322676 0.120164 0.938851 0.286685 0.125421 0.94978 0.312932 0.123775 0.941676 0.279716 0.294166 0.913907 0.303905 0.313656 0.89959 0.309104 0.311381 0.898608 0.037576 0.808415 0.587412 0.169817 0.698638 0.69503 -0.000992 0.780213 0.625514 0.138259 0.681294 0.718834 0.161529 0.715447 0.679738 0.018778 0.826522 0.562592 -0.09996 0.801388 0.589733 -0.098648 0.85295 0.512587 -0.076807 0.814801 0.574631 0.262922 0.511395 0.818137 0.242579 0.49202 0.836105 0.262895 0.521513 0.811733 -0.185749 0.495789 0.848346 -0.322481 0.52883 0.785076 -0.160242 0.722224 0.672841 -0.146317 0.772841 0.617501 -0.312096 0.577251 0.754571 -0.076559 0.797941 0.597853 -0.071594 0.840171 0.537576 -0.107376 0.806238 0.581766 -0.112987 0.848782 0.51653 -0.287568 -0.01818 0.957588 -0.246849 -0.15606 0.956405 -0.173556 -0.290795 0.940913 -0.283237 0.22681 0.931844 -0.297529 0.100463 0.949412 0.014537 -0.330354 0.943745 0.072188 -0.329168 0.941508 0.150177 -0.268878 0.951394 -0.091484 -0.341365 0.935468 0.211928 -0.141481 0.96699 0.233591 -0.009434 0.972289 0.24083 0.120366 0.963075 0.233787 0.260424 0.936762 0.102888 0.613185 0.78321 -0.030399 0.694019 0.719314 -0.098708 0.675427 0.730791 0.204918 0.428836 0.879834 -0.132475 0.557408 0.819602 -0.232943 0.388015 0.89173 -0.075386 0.634728 0.769049 -0.09685 0.652599 0.751489 -0.092397 0.509504 0.855493 -0.081276 0.316551 0.945087 -0.068265 0.172012 0.982727 -0.054553 0.065325 0.996372 -0.043341 -0.055449 0.99752 -0.033383 -0.160096 0.986537 -0.028874 -0.24536 0.969002 -0.033304 -0.336054 0.941254 -0.042357 -0.467717 0.882863 -0.046567 -0.556118 0.829798 -0.037674 -0.519487 0.853647 -0.022566 -0.457423 0.888963 -0.012961 -0.556886 0.830488 -0.007732 -0.753873 0.656974 -0.003792 -0.90729 0.420489 -0.001149 -0.991208 0.132304 0.512335 -0.857386 0.049017 0.70555 -0.704425 0.077354 0.297092 -0.954566 0.023258 0.84286 -0.528889 0.09931 0.930258 -0.348816 0.113782 0.968103 -0.21837 0.122848 0.986591 -0.093131 0.134031 0.985676 0.081564 0.147617 0.95281 0.259757 0.157095 0.894834 0.417704 0.157465 0.844113 0.514896 0.149516 0.774064 0.618654 0.134508 0.673761 0.729252 0.119321 0.59429 0.795832 0.116061 0.5205 0.84585 0.116695 0.525074 0.841884 0.124616 0.765546 0.621669 0.16573 0.097097 -0.995263 0.004896 -0.565407 0.809464 0.158374 -0.611313 0.789337 0.056957 -0.920895 0.236324 0.310006 -0.979363 0.144989 0.140806 -0.738247 -0.362498 0.568846 -0.830423 -0.418752 0.367485 -0.844491 -0.498578 0.195588 -0.637358 -0.672695 0.37584 -0.668066 -0.709833 0.223216 -0.553902 -0.635855 0.537476 -0.346188 -0.291036 0.891881 -0.564224 -0.330618 0.756534 -0.436173 -0.617389 0.654663 -0.266348 -0.628612 0.730688 -0.097978 -0.251576 0.962865 -0.086895 -0.643915 0.760146 0.176816 -0.222898 0.958672 0.120695 -0.699248 0.704617 0.465192 -0.190422 0.864486 0.373032 -0.681742 0.629345 0.749171 -0.141411 0.647105 0.57208 -0.682024 0.455597 0.984143 0.023025 0.175875 0.738366 -0.656556 0.154109 -0.095635 0.76965 0.631263 -0.315057 -0.948903 0.017974 -0.110306 -0.993886 0.004918 -0.457702 -0.888528 0.032039 -0.589111 -0.807168 0.037792 0.510058 -0.858624 -0.051043 0.70623 -0.703125 -0.082786 0.294439 -0.955391 -0.023102 0.843862 -0.525198 -0.109834 0.928966 -0.346434 -0.130403 0.964683 -0.219414 -0.145751 0.981881 -0.104853 -0.157847 0.98501 0.058597 -0.162241 0.95819 0.238399 -0.158234 0.897823 0.414043 -0.149942 0.829346 0.538002 -0.150797 0.747675 0.644543 -0.159833 0.659153 0.734437 -0.161615 0.265044 0.963485 0.038059 0.039034 0.999086 0.017437 0.018622 0.997848 -0.062875 0.244836 0.962544 -0.116463 -0.130658 0.991351 0.012349 -0.138096 0.990164 -0.022449 -0.273293 0.96189 0.008822 -0.274255 0.961657 0.000421 -0.053579 0.998129 0.029453 -0.515915 0.855204 0.049583 0.344116 0.89883 -0.271457 -0.055876 0.956544 -0.286182 0.365283 0.930753 0.01632 -0.828131 0.557888 0.054409 -0.952772 0.299578 0.049783 -0.711727 -0.701459 0.037422 -0.905755 -0.418034 -0.069676 -0.8121 -0.578723 -0.074656 -0.818385 -0.573492 0.036778 -0.910268 -0.412077 0.040054 0.709552 0.701423 0.067393 0.515618 0.854187 0.067105 0.52626 0.835416 -0.158524 0.711562 0.67733 -0.186822 0.587221 0.793907 -0.157743 0.504751 0.849895 -0.151344 0.655685 0.754174 0.036026 0.627882 0.742251 -0.234154 -0.995755 -0.076042 0.051857 -0.966252 -0.253074 0.048064 -0.995208 0.084624 0.048994 -0.98245 0.180559 0.046801 0.500696 0.849415 -0.166726 0.699452 0.674292 -0.236847 -0.644888 0.764208 0.010314 -0.658085 0.75262 0.022063 -0.996997 0.052783 0.056672 -0.999004 0.031144 0.031952 0.095211 -0.995451 -0.003478 -0.828476 -0.551185 0.099113 -0.83354 -0.552229 0.015914 -0.680841 -0.722996 0.117184 -0.70438 -0.709823 0.000289 0.942473 0.130036 -0.307954 0.760792 -0.603232 -0.239387 -0.191598 -0.926128 -0.324926 -0.11404 -0.910397 -0.397707 -0.034523 -0.992382 -0.118262 -0.056307 -0.993628 -0.097639 -0.08229 -0.99447 -0.065257 -0.263919 -0.93806 -0.224478 -0.301453 -0.945273 -0.124839 -0.10268 -0.994176 -0.032728 -0.109842 -0.993816 -0.016268 -0.306215 -0.95011 -0.059356 0.319117 -0.647606 -0.691933 0.534285 -0.666968 -0.519319 0.385251 -0.83007 -0.403195 0.239592 -0.805165 -0.542499 0.228594 -0.939199 -0.256224 0.158278 -0.918607 -0.362089 -0.178484 -0.75672 -0.628902 -0.309497 -0.797477 -0.51792 -0.420841 -0.831771 -0.362009 -0.538657 -0.700909 -0.467519 -0.394197 -0.64598 -0.653696 -0.222745 -0.580396 -0.783278 -0.463953 -0.858375 -0.218951 -0.461429 -0.880375 -0.109649 -0.599801 -0.782405 -0.167575 -0.59309 -0.744341 -0.306921 0.280118 -0.952342 -0.120743 0.489162 -0.845976 -0.212238 0.674722 -0.67782 -0.292079 0.467443 -0.364911 -0.805194 0.712309 -0.345361 -0.611018 0.641575 -0.494023 -0.586791 0.39121 -0.489528 -0.779305 -0.257887 -0.431057 -0.864687 -0.450347 -0.520374 -0.725533 -0.610796 -0.588414 -0.529809 -0.665056 -0.488467 -0.56489 -0.505193 -0.408993 -0.759938 -0.312897 -0.314982 -0.896037 0.796286 -0.495922 -0.346396 0.865739 -0.328626 -0.377493 0.760432 -0.204661 -0.616326 0.545204 -0.224716 -0.807623 0.593644 -0.079984 -0.800743 0.783915 -0.086134 -0.614865 0.896384 -0.199742 -0.395726 0.906271 -0.095045 -0.411874 0.551478 0.253954 -0.794594 0.749758 0.226635 -0.62169 0.783116 0.056593 -0.619295 0.5969 0.085909 -0.797703 0.90526 0.04554 -0.42241 0.880719 0.218398 -0.420282 0.336343 0.599609 -0.726183 0.572035 0.582293 -0.577677 0.679985 0.408785 -0.6087 0.461982 0.425407 -0.778204 0.822759 0.398489 -0.405308 0.73865 0.550111 -0.389581 0.158279 0.713924 -0.6821 0.37644 0.723509 -0.578643 0.467127 0.676077 -0.569835 0.228363 0.685665 -0.691168 0.648361 0.657528 -0.383777 0.564637 0.73282 -0.379684 -0.132948 0.895471 -0.424801 -0.16783 0.911023 -0.376656 -0.12755 0.841928 -0.524298 -0.095044 0.810733 -0.577649 -0.191234 0.937857 -0.289574 -0.161097 0.88789 -0.430929 -0.099619 0.831047 -0.547207 -0.068866 0.782563 -0.618751 -0.042804 0.75673 -0.652324 -0.106611 0.95728 -0.268792 0.061832 0.967519 -0.24512 -0.090989 0.984179 -0.152028 -0.171442 0.958937 -0.225938 -0.170146 0.982001 -0.081999 -0.195635 0.967138 -0.16239 -0.282706 0.95847 -0.037576 -0.282545 0.952356 -0.114834 -0.262642 0.936921 -0.230646 -0.457702 0.605028 -0.651498 -0.494691 0.715297 -0.493589 -0.076223 0.822259 -0.563986 -0.087936 0.702019 -0.706709 0.319664 0.765998 -0.557729 0.294833 0.694844 -0.655946 0.224172 0.682804 -0.695361 -0.063717 0.649517 -0.757673 -0.387084 0.558006 -0.734027 -0.896043 0.261582 -0.358722 -0.944002 0.274393 -0.183216 -0.810194 0.488173 -0.324457 -0.742944 0.435424 -0.508371 -0.645648 0.412332 -0.642745 -0.811086 0.243382 -0.531887 -0.699157 0.136155 -0.701885 -0.530892 0.331786 -0.77979 -0.30426 0.511436 -0.803654 -0.248492 0.408629 -0.878222 -0.387347 0.198969 -0.900208 -0.511763 -0.033699 -0.858465 -0.688173 -0.178311 -0.703294 -0.790784 -0.260454 -0.553917 -0.872048 -0.112083 -0.476413 -0.794394 -0.013341 -0.607256 -0.920109 0.042291 -0.389372 -0.884532 0.127633 -0.44868 -0.676964 -0.636735 -0.369174 -0.702442 -0.678564 -0.214769 -0.78028 -0.57775 -0.239514 -0.733839 -0.540713 -0.41123 -0.092147 -0.181509 -0.979062 -0.144369 -0.166467 -0.975421 -0.159435 -0.079334 -0.984015 -0.094565 -0.065989 -0.993329 -0.168501 -0.000101 -0.985701 -0.104493 0.01153 -0.994459 -0.726284 -0.369697 -0.579514 -0.588438 -0.292192 -0.753899 -0.407291 -0.20071 -0.890971 -0.869486 -0.42871 -0.245363 -0.799739 -0.41079 -0.4378 -0.938755 -0.260153 -0.225963 -0.869609 -0.274794 -0.410206 -0.170534 0.079532 -0.982137 -0.161151 0.169743 -0.972223 -0.090409 0.181448 -0.979236 -0.10396 0.092065 -0.990311 -0.061474 0.779505 -0.623373 -0.054952 0.743789 -0.666152 -0.103099 0.66864 -0.736404 -0.089248 0.714186 -0.694242 0.313646 0.879357 -0.358269 0.027421 0.941997 -0.334499 -0.080622 0.891857 -0.445073 0.022338 0.831019 -0.555795 0.289168 0.850636 -0.43909 0.556005 0.699289 -0.449281 0.050624 0.773712 -0.631511 0.231632 0.808083 -0.541616 0.288863 0.771715 -0.566581 0.103245 0.744807 -0.659244 0.031939 0.724546 -0.688486 0.003268 0.749951 -0.661485 -0.026171 0.792703 -0.609046 0.482137 0.794981 -0.36817 0.398207 0.851469 -0.34122 -0.221077 0.901734 -0.371484 -0.143622 0.850839 -0.505417 0.234374 0.743588 -0.626216 0.46128 0.703836 -0.540218 0.562017 0.649813 -0.511741 -0.977474 -0.09123 -0.19032 -0.936551 -0.12725 -0.326619 -0.984003 0.070682 -0.163533 -0.961337 0.050417 -0.270718 -0.12138 0.620783 -0.774529 -0.05521 0.647511 -0.760053 -0.944461 0.162933 -0.285388 -0.972855 0.171501 -0.15537 0.237565 0.800499 -0.55024 0.395586 0.847721 -0.353385 0.35269 0.570432 -0.741766 0.568049 0.652016 -0.502191 -0.054488 0.806873 -0.588206 -0.221404 0.774347 -0.592762 -0.082141 0.728443 -0.680164 -0.34248 0.449493 -0.825023 -0.1184 0.432945 -0.893611 0.102358 0.477975 -0.872389 0.062161 0.735187 -0.675008 -0.351621 0.822971 -0.446186 -0.453177 0.839825 -0.298872 -0.753559 0.408132 -0.515341 -0.56556 0.457673 -0.686059 0.070662 -0.994095 -0.082354 0.053046 -0.991548 -0.1184 0.013209 -0.990078 -0.139895 0.042006 -0.899343 -0.435221 0.096965 -0.90473 -0.414802 0.032991 -0.99044 -0.133938 -0.056118 -0.897897 -0.436614 -0.016738 -0.990736 -0.134764 0.086464 -0.995644 -0.034877 0.061043 -0.750045 -0.658564 0.137198 -0.774505 -0.61751 0.069229 -0.578014 -0.813085 0.165722 -0.607498 -0.776841 -0.08926 -0.735213 -0.671934 -0.114239 -0.544747 -0.830783 0.019911 -0.230638 -0.972836 -0.030593 -0.214954 -0.976145 -0.045955 -0.097756 -0.994149 0.002659 -0.095509 -0.995425 -0.052141 0.011297 -0.998576 0.002127 0.01818 -0.999832 0.120697 0.01473 -0.99258 0.113372 -0.110702 -0.987366 0.096736 -0.223211 -0.969958 -0.055442 0.119889 -0.991238 -0.003618 0.136061 -0.990694 -0.057352 0.236947 -0.969828 -0.01353 0.263616 -0.964533 0.087309 0.294367 -0.951696 0.113304 0.153076 -0.981697 -0.061332 0.359879 -0.930981 -0.028754 0.371752 -0.927887 -0.069217 0.479884 -0.874597 -0.04309 0.485197 -0.873342 0.017067 0.479437 -0.87741 0.052641 0.398131 -0.915817 -0.034654 0.760876 -0.647972 0.07156 0.732098 -0.67743 0.191934 0.634425 -0.748777 0.303753 0.458556 -0.835141 0.384402 0.282027 -0.879031 0.419845 0.110042 -0.9009 0.406427 -0.062856 -0.911518 0.353955 -0.220425 -0.908916 0.281504 -0.354287 -0.89176 0.067511 -0.500136 -0.863311 0.193668 -0.469971 -0.861174 -0.14958 -0.414815 -0.897527 -0.228363 -0.298833 -0.926579 -0.288297 -0.161724 -0.943785 -0.298702 -0.022525 -0.954081 -0.190826 0.301532 -0.934165 -0.246409 0.126265 -0.960906 -0.15017 0.520238 -0.840715 -0.129702 0.309072 -0.942153 -0.066417 0.305119 -0.949995 -0.055085 0.462192 -0.885067 -0.090042 0.449004 -0.888981 -0.071733 0.766958 -0.637675 -0.283007 -0.028509 -0.958694 -0.281863 -0.191917 -0.940065 -0.351312 -0.084797 -0.932411 -0.309888 -0.241843 -0.919501 -0.329877 -0.256795 -0.908426 -0.371873 -0.083592 -0.924512 -0.244245 -0.370528 -0.896133 -0.261882 -0.399787 -0.878401 -0.239012 -0.350966 -0.905371 -0.228514 0.26963 -0.935457 -0.253264 0.114721 -0.960571 -0.387754 0.261515 -0.883887 -0.38213 0.068912 -0.921536 -0.395833 0.087229 -0.914171 -0.400411 0.295266 -0.867461 0.059717 -0.537384 -0.841221 0.170799 -0.490618 -0.854471 0.023673 -0.491984 -0.870282 0.138029 -0.482666 -0.864859 0.172547 -0.546798 -0.819292 0.048051 -0.585369 -0.809342 0.24535 -0.391127 -0.88703 0.271557 -0.425603 -0.863203 0.253362 -0.383231 -0.888224 -0.16392 -0.464478 -0.870282 -0.156074 -0.43633 -0.886147 -0.174103 -0.495914 -0.85074 0.311338 -0.234144 -0.921002 0.314452 -0.22765 -0.921573 0.331844 -0.253055 -0.908759 0.334948 -0.047443 -0.941041 0.358791 -0.06942 -0.930833 0.352034 -0.064094 -0.93379 0.370008 0.120956 -0.921121 0.325861 0.13785 -0.935314 0.365501 0.126808 -0.922133 0.293842 0.331419 -0.896559 0.345775 0.339247 -0.874843 0.349666 0.318511 -0.88107 0.181191 0.722006 -0.667741 0.050427 0.826013 -0.561391 0.124911 0.682336 -0.720288 -8.3e-005 0.771418 -0.636329 0.029371 0.862647 -0.504953 0.172441 0.753171 -0.634821 -0.088449 0.796983 -0.597491 -0.084759 0.878493 -0.470177 -0.056365 0.816918 -0.573992 0.28721 0.527283 -0.799677 0.229314 0.522426 -0.821271 0.28443 0.557632 -0.779838 -0.184783 0.47937 -0.857939 -0.159072 0.705689 -0.690434 -0.306838 0.513915 -0.801088 -0.313651 0.56677 -0.761837 -0.157757 0.765176 -0.624195 -0.073978 0.778021 -0.623867 -0.070331 0.835642 -0.544753 -0.087799 0.795672 -0.599331 -0.090591 0.859197 -0.503561 -0.232887 -0.144487 -0.961711 -0.244705 -0.029472 -0.96915 -0.189644 -0.261806 -0.946305 -0.251478 0.075314 -0.964928 -0.245154 0.195506 -0.949567 0.069738 -0.345456 -0.93584 -0.006898 -0.32309 -0.946343 0.169707 -0.300933 -0.938424 -0.116208 -0.315517 -0.941778 0.239122 -0.166926 -0.956533 0.255866 -0.011563 -0.966643 0.242809 0.152646 -0.957989 0.202267 0.315072 -0.927264 -0.032641 0.607102 -0.793953 0.060458 0.564272 -0.823372 -0.076278 0.598808 -0.797252 0.144831 0.45396 -0.879173 -0.202967 0.364176 -0.908945 -0.116061 0.523868 -0.843856 -0.061288 0.585836 -0.808109 -0.069247 0.590821 -0.803825 -0.06147 0.471147 -0.87991 -0.062087 0.339494 -0.938557 -0.069753 0.213116 -0.974534 -0.075711 0.106988 -0.991373 -0.074759 0.010224 -0.997149 -0.065915 -0.084862 -0.99421 -0.056359 -0.195476 -0.979088 -0.058264 -0.312594 -0.948098 -0.069962 -0.465689 -0.882179 -0.071195 -0.557949 -0.826815 -0.045754 -0.47841 -0.876944 -0.060646 -0.52652 -0.847997 -0.029989 -0.553187 -0.832517 -0.018388 -0.737572 -0.675018 -0.009087 -0.897441 -0.441041 -0.00158 -0.989993 -0.141109 -0.308322 -0.951065 -0.020322 -0.110713 -0.99381 -0.009215 -0.455221 -0.889796 -0.032191 -0.596471 -0.800898 -0.052761 -0.511407 0.823202 -0.246578 -0.952243 0.291325 -0.09145 -0.828387 0.538442 -0.154449 -0.712918 -0.697663 -0.070811 -0.964192 -0.256036 -0.069136 -0.99426 -0.077609 -0.073642 -0.993521 0.085088 -0.075342 -0.980403 0.180699 -0.07847 -0.618484 0.785248 -0.029371 -0.985065 0.143698 -0.094851 -0.540296 0.826158 -0.159823 -0.899944 0.302263 -0.314224 -0.858864 -0.489238 -0.15165 -0.711588 -0.680949 -0.173063 -0.767866 -0.270651 -0.580629 -0.848883 -0.383401 -0.36387 -0.671939 -0.656576 -0.342645 -0.602072 -0.614193 -0.510173 -0.382168 -0.137855 -0.913752 -0.607476 -0.181274 -0.773377 -0.492091 -0.563373 -0.66367 -0.327921 -0.53701 -0.777231 -0.13782 -0.132667 -0.981532 -0.138241 -0.548212 -0.824835 0.069946 -0.573914 -0.815923 0.11889 -0.117351 -0.985948 0.269629 -0.627654 -0.730309 0.418909 -0.085153 -0.904027 0.751138 0.018205 -0.659894 0.495888 -0.698066 -0.516526 -0.95931 0.034968 0.280182 -0.952229 0.032635 0.303636 -0.93144 0.167086 0.323268 -0.946666 0.171861 0.272557 -0.944846 0.025037 0.326557 -0.91551 0.150958 0.372899 -0.937578 0.012119 0.347564 -0.899986 0.12397 0.417919 -0.930687 -0.005661 0.365772 -0.885622 0.08696 0.456193 -0.924746 -0.02703 0.379623 -0.873384 0.042333 0.485189 -0.919713 -0.051956 0.389139 -0.863691 -0.010116 0.503919 -0.915891 -0.078133 0.39375 -0.857075 -0.064545 0.511132 -0.913924 -0.104134 0.392301 -0.854193 -0.116994 0.506623 -0.913686 -0.130204 0.385001 -0.854276 -0.170718 0.490986 -0.915221 -0.154787 0.372036 -0.856986 -0.224754 0.463745 -0.918574 -0.175545 0.354127 -0.862661 -0.271395 0.426803 -0.924357 -0.190998 0.330279 -0.874699 -0.302741 0.378484 -0.93489 -0.202027 0.291831 -0.900162 -0.32556 0.289342 -0.890596 -0.319641 0.323525 -0.930807 -0.199874 0.306022 -0.896 0.289458 0.336747 -0.918721 0.296141 0.261252 -0.872107 0.26593 0.410745 -0.848724 0.226438 0.477905 -0.827137 0.172709 0.534805 -0.80861 0.10747 0.578446 -0.794368 0.032855 0.606547 -0.785336 -0.046853 0.617294 -0.781515 -0.12666 0.610894 -0.781913 -0.208771 0.58739 -0.785856 -0.293485 0.544332 -0.793937 -0.361184 0.489091 -0.811021 -0.403504 0.423592 -0.835242 -0.430573 0.342022 -0.847345 0.403795 0.3449 -0.876998 0.412515 0.246384 -0.816114 0.373023 0.441375 -0.785473 0.321444 0.528872 -0.757102 0.251755 0.60284 -0.732492 0.167285 0.659903 -0.71285 0.071993 0.697612 -0.699448 -0.030237 0.714044 -0.693366 -0.135002 0.707826 -0.694705 -0.244186 0.676579 -0.700161 -0.36004 0.616559 -0.706167 -0.453566 0.543697 -0.723583 -0.510419 0.464651 -0.757493 -0.546167 0.357639 -0.786239 0.510828 0.347683 -0.822283 0.521471 0.227858 -0.748188 0.473296 0.464978 -0.710816 0.41044 0.571208 -0.676265 0.32557 0.66081 -0.646313 0.222825 0.729815 -0.622397 0.107069 0.775344 -0.605751 -0.016281 0.795488 -0.597541 -0.142104 0.789146 -0.599072 -0.273389 0.752576 -0.605625 -0.422009 0.67463 -0.607323 -0.542234 0.580639 -0.62045 -0.60942 0.493609 -0.663091 -0.648882 0.373178 -0.713977 0.609147 0.34522 -0.755821 0.6215 0.206088 -0.669772 0.565403 0.481378 -0.626414 0.492206 0.604433 -0.58635 0.393512 0.708055 -0.551603 0.274208 0.787746 -0.523909 0.140003 0.84019 -0.504656 -0.002861 0.863316 -0.494725 -0.148092 0.856339 -0.496885 -0.296649 0.81554 -0.511217 -0.470298 0.719359 -0.523448 -0.603062 0.601929 -0.54514 -0.6692 0.504969 -0.589688 -0.712391 0.380483 -0.632092 0.697412 0.337752 -0.679083 0.71125 0.181575 -0.582478 0.648166 0.490511 -0.533908 0.565768 0.62837 -0.489063 0.454778 0.744308 -0.450216 0.320826 0.833293 -0.419311 0.170384 0.891711 -0.397828 0.010371 0.917402 -0.386738 -0.152189 0.909545 -0.388906 -0.314579 0.865905 -0.416834 -0.497637 0.760662 -0.460989 -0.625959 0.629018 -0.542107 0.774681 0.32556 -0.593506 0.78981 0.15476 -0.487909 0.720672 0.492521 -0.434921 0.630341 0.64305 -0.3861 0.508756 0.769476 -0.343913 0.362223 0.866325 -0.310381 0.197869 0.929791 -0.287052 0.023243 0.957633 -0.274984 -0.154056 0.949026 -0.274153 -0.330443 0.903132 -0.301736 -0.514601 0.802584 -0.360883 -0.638403 0.679857 -0.445437 0.840329 0.308923 -0.50045 0.856542 0.126038 -0.387543 0.782319 0.487634 -0.331043 0.685354 0.648614 -0.279115 0.554987 0.783636 -0.234323 0.398047 0.886934 -0.198766 0.222238 0.954517 -0.174032 0.035606 0.984096 -0.161146 -0.153806 0.974872 -0.161623 -0.341915 0.925728 -0.183322 -0.527132 0.829774 -0.220903 -0.657095 0.720714 -0.343523 0.893833 0.288192 -0.401399 0.910874 0.095845 -0.282773 0.832684 0.476106 -0.223681 0.730476 0.645269 -0.169508 0.593188 0.787016 -0.122852 0.428085 0.895349 -0.085869 0.24334 0.966133 -0.060478 0.047525 0.997037 -0.048298 -0.151042 0.987347 -0.051169 -0.346801 0.936542 -0.071334 -0.536879 0.840638 -0.087789 -0.68823 0.720162 -0.21986 0.940431 0.259327 -0.28005 0.958152 0.059303 -0.156918 0.876718 0.454689 -0.095926 0.770248 0.630489 -0.040164 0.627316 0.777728 0.007734 0.455603 0.890149 0.046891 0.262808 0.963708 0.076503 0.059129 0.995315 0.087975 -0.141662 0.985998 0.082632 -0.346525 0.934394 0.066735 -0.543112 0.837004 0.044893 -0.70688 0.705907 -0.074449 0.972485 0.220751 -0.13589 0.990587 0.016451 -0.0105 0.907325 0.420298 0.052421 0.798072 0.600278 0.112271 0.651463 0.750327 0.17284 0.475296 0.862682 0.224622 0.286559 0.931359 0.237263 0.088989 0.967361 0.218281 -0.113 0.969322 0.208533 -0.342413 0.916116 0.208343 -0.548433 0.809824 0.177566 -0.726111 0.664254 0.072457 0.981536 0.17702 0.011184 0.999581 -0.026697 0.13045 0.91774 0.375149 0.17379 0.810665 0.559124 0.202259 0.677497 0.70717 0.281823 0.466274 0.838549 0.389486 0.279956 0.877454 0.38011 0.146887 0.913204 0.357385 -0.040932 0.93306 0.345941 -0.321259 0.881543 0.34413 -0.559385 0.754098 0.331752 -0.740685 0.584232 0.196145 0.971318 0.134422 0.140044 0.988072 -0.064045 0.22226 0.915547 0.335221 0.215212 0.826522 0.520139 0.485045 0.203691 0.850436 0.549186 0.085396 0.831326 0.51886 -0.274121 0.809717 0.494351 -0.559544 0.665228 0.486216 -0.716967 0.499552 0.288962 0.953069 0.090338 0.249176 0.963756 -0.09532 0.279421 0.910567 0.304618 0.388152 0.921065 0.031265 0.355698 0.926134 -0.125519 0.404067 0.903782 0.141097 0.68549 -0.217008 0.69499 0.702569 0.095581 0.705167 0.629523 -0.529053 0.569037 0.593718 -0.693079 0.408828 0.496683 0.867503 -0.027267 0.458279 0.875316 -0.154276 0.528047 0.848543 0.03378 0.806768 -0.152023 0.570977 0.808457 0.086821 0.582116 0.751952 -0.463847 0.468417 0.679141 -0.659907 0.321388 0.597185 0.799146 -0.068811 0.555473 0.811556 -0.181181 0.641605 0.76683 -0.017718 0.890943 -0.106367 0.441483 0.8665 0.068021 0.494522 0.874776 -0.373384 0.30879 0.812876 -0.546789 0.200637 0.713003 0.692155 -0.112017 0.675208 0.706006 -0.213658 0.760001 0.64795 -0.050575 0.881663 0.086627 0.463859 0.915057 -0.143088 0.377089 0.91943 -0.337729 0.201463 0.893271 -0.433495 0.118948 0.740476 -0.66906 0.063675 0.859379 -0.511092 0.015908 0.647012 -0.745143 -0.161672 0.622061 -0.770384 0.139818 0.519697 -0.840964 -0.150645 0.82048 0.555122 -0.136569 0.782459 0.574043 -0.241314 0.857424 0.511442 -0.057009 0.806681 0.536729 -0.247364 0.862468 0.496193 -0.099707 0.878972 0.473396 -0.057475 0.818208 0.516312 -0.252897 -0.95504 -0.087036 0.283414 0.458007 0.336509 0.822795 0.548647 0.436829 0.712858 0.498793 0.508214 0.702085 0.40895 0.438856 0.800103 0.458788 0.419381 0.783347 0.488579 0.295919 0.820806 0.338496 0.547557 0.765246 0.40128 0.540787 0.739273 0.447903 0.573978 0.685516 0.572577 0.090453 0.814846 0.659971 0.242585 0.711049 0.600793 0.356629 0.715446 0.507798 0.222804 0.832165 0.525407 0.175386 0.832579 0.592642 0.076696 0.801806 0.696495 -0.160757 0.699323 0.747071 -0.060562 0.66198 0.716368 0.089686 0.691935 0.643654 -0.044528 0.76402 0.679875 -0.004061 0.733317 0.751902 -0.071444 0.655392 0.836517 -0.293072 0.462977 0.828132 -0.230473 0.510959 0.762807 -0.199352 0.61513 0.753672 -0.259258 0.603957 0.803598 -0.130297 0.580735 0.857252 -0.175255 0.484153 0.916775 -0.199713 0.345889 0.913851 -0.163134 0.371839 0.958882 -0.051876 0.279022 0.954667 -0.015331 0.297282 0.878559 0.023718 0.477045 0.887732 -0.142315 0.437811 0.881622 0.374121 0.287709 0.786275 0.361357 0.501191 0.845764 0.203036 0.493417 0.938392 0.191581 0.287606 0.964699 0.141352 0.222208 0.919874 0.344658 0.187198 0.735833 0.601185 0.31165 0.66518 0.53777 0.518014 0.724119 0.464664 0.509645 0.811286 0.503396 0.297333 0.847399 0.503007 0.169996 0.757311 0.630422 0.170435 0.55095 0.766953 0.328993 0.550236 0.662384 0.508417 0.604139 0.603421 0.520479 0.650213 0.6874 0.32358 0.647232 0.739853 0.183595 0.52066 0.823219 0.226328 0.232539 0.84106 0.48841 0.333081 0.772484 0.540672 0.4542 0.75815 0.467879 0.390892 0.846896 0.360515 0.372475 0.869089 0.325495 0.285053 0.827495 0.483733 0.339781 0.673393 0.656575 0.238562 0.704887 0.668 0.320797 0.691569 0.647164 0.829927 0.324203 0.453996 0.78816 0.413058 0.456275 0.818961 0.437724 0.37108 0.868606 0.367447 0.332424 0.594766 0.761672 -0.257117 0.732865 0.586033 -0.345649 0.753901 0.533838 0.38295 0.862991 0.204761 0.461865 0.867214 0.193679 0.458725 0.940858 -0.000486 0.3388 0.908483 -0.022324 0.417326 0.966409 -0.169051 -0.193584 0.923393 -0.383468 0.01723 0.951149 0.102662 0.291162 0.867316 0.198019 0.456675 0.856872 0.261318 0.444391 0.920131 0.262219 0.290862 0.845974 0.375555 -0.378531 0.934245 0.115443 -0.337429 0.724297 0.540152 0.42852 0.705159 0.593618 0.387773 0.719293 0.595991 0.356949 0.405662 0.913937 -0.012545 0.486535 0.862055 -0.141935 0.71787 0.605721 0.343167 0.730039 0.584407 0.354276 0.725686 0.562032 0.396862 0.693853 0.591752 0.410363 0.217331 0.868422 0.445659 0.312452 0.932842 0.179389 0.629841 0.545507 0.552922 0.214362 0.527633 0.821981 0.173015 0.7023 0.690536 0.57713 0.459556 0.675077 0.602476 0.389152 0.696838 0.688167 0.493994 0.531411 0.689409 0.382203 0.615335 0.751692 0.33439 0.568456 0.797599 0.361585 0.482797 0.671211 0.364963 0.645196 0.411128 0.319273 0.853838 0.313319 0.402291 0.860228 0.718031 0.380064 0.58308 0.802641 0.402836 0.439876 0.786668 0.41629 0.455912 0.7261 0.396288 0.561903 0.493842 0.121551 0.861014 0.469657 0.240907 0.849345 0.710366 0.36318 0.602894 0.767343 0.380847 0.515888 0.773688 0.31236 0.551215 0.718919 0.257235 0.645744 0.615801 -0.251493 0.746687 0.530844 -0.044491 0.846301 0.775459 0.113009 0.621203 0.81328 0.246247 0.527199 0.846491 0.212923 0.487972 0.849483 0.012404 0.52747 0.842402 -0.47405 0.256193 0.735809 -0.426295 0.526173 0.762121 0.060604 0.644592 0.762121 0.060604 0.644592 0.670388 0.105094 0.734531 0.670388 0.105094 0.734531 0.53593 0.35712 0.765013 0.53593 0.35712 0.765013 0.519593 0.470857 0.712963 0.519593 0.470857 0.712963 0.592721 0.147272 0.791829 0.592721 0.147272 0.791829 0.539402 0.227876 0.810628 0.539402 0.227876 0.810628 0.838046 -0.041961 0.543984 0.838046 -0.041961 0.543984 0.805134 0.024108 0.592603 0.805134 0.024108 0.592603 0.458987 0.56981 0.681651 0.458987 0.56981 0.681651 0.36131 0.737053 0.571146 0.36131 0.737053 0.571146 0.930114 -0.106536 0.351481 0.930114 -0.106536 0.351481 0.880661 -0.11099 0.460561 0.880661 -0.11099 0.460561 0.320732 0.857422 0.402441 0.320732 0.857422 0.402441 0.44726 0.859353 0.247932 0.44726 0.859353 0.247932 0.95182 0.231775 0.200795 0.95182 0.231775 0.200795 0.964167 0.021103 0.264456 0.964167 0.021103 0.264456 0.579093 0.8006 0.153919 0.579093 0.8006 0.153919 0.697437 0.705567 0.12553 0.697437 0.705567 0.12553 0.814036 0.566095 0.129927 0.814036 0.566095 0.129927 0.890074 0.43096 0.148464 0.890074 0.43096 0.148464 0.029208 0.881474 -0.471328 0.029208 0.881474 -0.471328 0.096449 0.728365 -0.678368 0.096449 0.728365 -0.678368 0.4685 0.04873 -0.882118 0.4685 0.04873 -0.882118 0.638087 -0.253445 -0.727056 0.638087 -0.253445 -0.727056 0.178322 0.511529 -0.840559 0.178322 0.511529 -0.840559 0.316697 0.307225 -0.897394 0.316697 0.307225 -0.897394 -0.229597 0.97301 0.023188 -0.229597 0.97301 0.023188 -0.099111 0.961282 -0.257125 -0.099111 0.961282 -0.257125 0.690989 -0.552351 -0.466307 0.690989 -0.552351 -0.466307 0.614728 -0.774975 -0.146708 0.614728 -0.774975 -0.146708 -0.213285 0.674612 0.706689 -0.213285 0.674612 0.706689 -0.277125 0.880387 0.384865 -0.277125 0.880387 0.384865 0.522099 -0.831492 0.189823 0.522099 -0.831492 0.189823 0.41303 -0.701304 0.581016 0.41303 -0.701304 0.581016 0.016451 0.304495 0.952372 0.016451 0.304495 0.952372 -0.102423 0.482133 0.87009 -0.102423 0.482133 0.87009 0.321342 -0.449506 0.833477 0.321342 -0.449506 0.833477 0.240502 -0.251619 0.937468 0.240502 -0.251619 0.937468 0.177609 -0.048219 0.982919 0.177609 -0.048219 0.982919 0.113264 0.143803 0.983103 0.113264 0.143803 0.983103 0.856752 0.237426 0.457827 0.923385 0.210649 0.320917 0.807841 0.342573 0.479622 0.926355 0.306361 0.219111 0.893024 0.401372 0.203491 0.707489 0.350542 0.613661 0.690028 0.404138 0.600445 0.701459 0.296818 0.647962 0.79174 0.518629 0.322757 0.756722 0.567339 0.324806 0.829456 0.472735 0.297531 0.598529 0.538416 0.593188 0.611969 0.432342 0.662249 0.636119 0.597396 0.488334 0.661695 0.3349 0.670821 0.723255 0.374582 0.580165 0.790325 0.34767 0.504491 0.811959 0.371822 0.449969 0.863778 0.442517 0.24097 0.701135 0.600411 0.384599 0.932766 0.160597 0.322732 0.970845 0.170441 0.168552 0.883636 0.175716 0.433947 0.958137 0.275993 0.076165 0.918477 0.391142 0.058382 0.596042 0.268924 0.756581 0.631692 0.23949 0.737299 0.526233 0.296752 0.79688 0.713347 0.696389 0.078601 0.607873 0.785114 0.118686 0.815341 0.574919 0.068466 0.317442 0.747572 0.583409 0.328784 0.607429 0.72314 0.382484 0.824581 0.416859 0.421264 0.422347 0.802596 0.694449 0.183029 0.695875 0.790988 0.142639 0.594973 0.851498 0.154648 0.501034 0.88206 0.467139 0.061249 0.494106 0.834447 0.244044 0.898388 0.239427 0.368203 0.928433 0.290662 0.231361 0.927907 0.362185 0.088373 0.90613 0.422899 -0.009252 0.502343 -0.531378 -0.68212 0.481433 0.034979 -0.875785 0.821621 0.007587 -0.569984 0.601173 0.059321 -0.796914 0.288385 0.93379 -0.211824 0.988457 0.045901 -0.144378 0.606647 0.786641 -0.114787 0.631147 0.75431 -0.180748 0.972584 0.01879 -0.231792 0.50542 0.85821 -0.089584 0.979429 0.125423 -0.158074 0.681238 -0.704485 -0.199036 0.649817 -0.670326 -0.358331 0.486326 -0.865845 -0.117473 0.446328 -0.866561 -0.223303 0.749936 -0.639396 -0.169616 0.164446 0.814374 0.556554 0.230868 0.7458 0.624886 0.513037 0.656869 0.552553 0.434017 0.729299 0.528916 0.753221 0.48407 0.445347 0.753221 0.48407 0.445347 0.124146 -0.973254 0.193296 0.136691 -0.979344 0.149 0.136691 -0.979344 0.149 0.184839 -0.973906 0.131688 0.16227 -0.986484 -0.022769 0.212195 -0.968006 0.133929 0.212195 -0.968006 0.133929 0.404326 0.749489 0.524201 0.579587 0.654669 0.485269 0.579587 0.654669 0.485269 0.267339 0.835446 0.480167 0.245983 0.889628 0.38478 0.267339 0.835446 0.480167 0.316456 0.757992 0.570354 0.349573 0.870764 0.345787 0.299173 0.736411 0.60679 0.210334 0.763548 0.610536 0.173912 0.765408 0.619601 0.197207 0.7873 0.584182 0.208134 0.150701 0.966421 0.45413 0.145812 0.878922 0.34138 0.606573 0.718004 0.193961 0.656473 0.728987 0.702212 0.014831 0.711813 0.629702 0.408791 0.660579 0.464374 -0.299888 0.833321 0.195845 -0.470873 0.860188 0.247334 -0.957018 0.151467 0.40013 -0.846054 0.352263 0.156142 -0.842984 0.51478 0.487382 -0.796965 0.356799 0.24234 -0.955279 0.169453 0.220077 -0.968074 0.119991 0.144759 -0.978459 0.147185 0.183204 -0.982603 -0.03045 0.067622 -0.997704 0.003667 0.333609 0.885237 0.324131 0.26257 0.786829 0.558531 0.249027 0.818022 0.518484 0.310909 0.905688 0.288211 0.981618 -0.064667 0.179569 0.953472 -0.110057 0.280676 0.829047 -0.397145 0.393645 0.92859 0.156172 0.336647 0.777747 -0.421784 0.466056 0.769156 -0.579058 0.270354 0.995933 0.044395 0.078399 0.452986 -0.772336 0.445309 0.25562 -0.911562 0.322045 0.985612 -0.013881 -0.168452 0.7241 -0.689125 0.028032 0.669094 -0.721471 -0.178308 0.959852 -0.03757 -0.277979 0.142983 -0.970854 0.192352 0.080246 -0.996775 0.00032 0.399717 0.880195 0.255896 0.376418 0.74386 0.552252 0.932941 0.251988 0.257146 0.923519 0.376658 0.072404 0.341071 0.563945 0.752088 0.901143 0.06264 0.428972 0.473307 -0.704975 -0.528197 0.53861 0.034196 -0.841861 0.284747 -0.650038 -0.704536 0.28859 -0.717857 -0.633559 0.66476 -0.69131 -0.283167 0.687122 0.601648 -0.407288 0.19454 0.943367 -0.268726 0.142669 0.967481 -0.20887 0.158097 0.977372 -0.140534 0.267227 0.956959 -0.113221 0.206618 0.964826 -0.16254 0.111176 0.975912 -0.187714 0.29006 0.951394 -0.103509 0.197728 0.977642 -0.071559 0.133329 0.730763 0.669484 -0.021072 0.776457 0.629818 -0.048861 0.692427 0.719831 -0.267381 0.736738 0.621067 0.502201 -0.841758 -0.198082 0.347489 -0.823244 -0.44891 0.323269 -0.832159 -0.450565 0.365532 -0.909977 -0.195774 0.278989 -0.744812 -0.606152 0.310543 -0.724294 -0.615598 0.470573 -0.845704 0.251686 0.639991 -0.751749 0.159014 0.847528 -0.526779 -0.064814 0.931762 0.360605 -0.042234 0.731131 -0.37377 0.57074 0.545828 -0.440059 0.713036 0.28654 -0.807827 -0.515083 0.336227 -0.798398 -0.499512 0.390344 -0.778946 -0.490791 0.394888 -0.900382 -0.182694 0.453746 -0.877199 -0.156959 0.356802 -0.910855 -0.207449 -0.344161 0.695104 0.631176 -0.149439 0.640429 0.753338 -0.149043 0.665502 0.731364 -0.349826 0.693839 0.629452 -0.136209 0.702366 0.698663 -0.323407 0.705435 0.63069 0.682989 -0.682468 -0.260315 0.59895 -0.703991 -0.381648 0.629914 -0.656157 -0.415531 0.77097 -0.571238 -0.281588 0.426971 -0.693708 -0.580055 0.470882 -0.685627 -0.555145 0.547183 -0.735019 -0.400422 0.403878 -0.692278 -0.598025 0.639219 -0.729933 -0.242067 0.756317 -0.646196 0.102054 0.818345 -0.573567 0.036491 0.814869 -0.159464 0.557279 0.753505 -0.300809 0.584589 0.916322 -0.395282 -0.064085 -0.552229 0.717565 0.424433 -0.549898 0.723485 0.417351 -0.689114 0.695621 0.20306 -0.692124 0.693865 0.198787 -0.449937 0.772191 0.44864 -0.582332 0.776773 0.23982 0.4591 -0.736156 -0.497294 0.428557 -0.75507 -0.496193 0.470093 -0.756298 -0.455001 0.604445 -0.773438 -0.190894 0.573109 -0.784752 -0.236031 0.620477 -0.767507 -0.161065 -0.154659 0.830449 0.535196 -0.208047 0.933434 0.292262 0.839948 -0.488026 -0.237313 0.649751 -0.668884 -0.361136 0.686328 -0.685198 -0.243841 0.870409 -0.456272 -0.184943 0.113928 -0.971144 0.209524 0.420169 -0.778433 0.466369 0.36716 -0.763202 0.531711 -0.02591 -0.968892 0.246125 0.735247 0.502746 0.454597 0.760736 -0.231899 0.60622 0.709739 -0.164748 0.68493 0.677088 0.518341 0.522374 0.150157 0.985896 -0.073902 0.110758 0.979195 -0.170028 0.14924 0.977328 -0.150193 0.102024 0.980668 -0.166976 0.092901 0.976521 -0.194362 0.035026 -0.981694 0.187218 -0.094184 -0.972517 0.212932 -0.040179 -0.998571 0.035247 -0.134425 -0.988935 0.062742 0.104938 0.981244 -0.161707 0.151335 0.986059 -0.069173 0.069929 0.986197 -0.150086 0.095076 0.992657 -0.074781 -0.031932 -0.959846 0.278703 0.3959 -0.771292 0.498369 0.753955 -0.269659 0.599029 0.811465 0.345679 0.471202 0.245701 0.963498 -0.106314 0.226774 0.963215 -0.144187 -0.201856 -0.975954 0.082263 -0.144695 -0.963786 0.22401 0.238399 0.953876 -0.182445 0.263237 0.957272 -0.119739 0.137189 0.954008 0.266548 0.004047 0.860303 0.509766 -0.324412 0.82325 0.46585 -0.221133 0.946632 0.234497 0.552688 -0.819889 -0.14939 0.435697 -0.752668 -0.493618 0.365249 -0.701895 -0.611504 0.358271 0.298744 0.88453 0.369064 0.261778 0.891776 0.680582 -0.368671 0.633159 0.35026 0.27383 0.895732 -0.101362 0.652868 0.750659 -0.31403 0.712829 0.627104 0.528306 -0.819128 -0.223433 0.448996 -0.780542 -0.434921 0.341896 0.423686 0.838807 0.504935 0.340193 0.79329 0.181522 0.411952 0.892942 0.181522 0.411952 0.892942 0.465736 -0.606641 0.644264 -0.0363 0.939717 0.340021 0.06455 0.996125 -0.059741 -0.0363 0.939717 0.340021 0.286421 0.951044 -0.116095 0.288616 0.950349 -0.116354 0.275757 0.953921 -0.118292 0.150003 0.985457 -0.079833 -0.160278 0.98687 0.019962 -0.557805 0.804225 0.205125 -0.528811 0.837981 0.134713 -0.689987 0.699784 0.184985 -0.704052 0.684413 0.189445 -0.639015 0.750411 0.168948 -0.301208 0.951297 0.065638 0.321965 0.939617 -0.116016 0.978366 -0.179418 -0.103002 0.950511 -0.146462 -0.274005 0.864752 0.428163 -0.262451 0.86448 -0.440579 -0.242001 0.720676 -0.665351 -0.194768 0.631835 -0.756962 -0.166709 0.640249 -0.749264 -0.169365 0.627443 -0.760901 -0.165364 0.541996 -0.828837 -0.138816 0.434754 -0.894291 -0.105989 0.396475 -0.913174 -0.094449 0.3782 -0.921198 -0.091428 0.733887 0.635327 -0.240355 0.720343 0.687761 -0.089944 0.744559 0.62451 -0.235838 0.345736 0.9286 0.13479 0.993133 0.093733 0.070012 0.356159 0.925036 0.132136 0.187307 0.978163 -0.09007 0.502357 0.858922 0.099456 0.251333 0.962401 -0.103033 0.65335 -0.735934 0.17758 0.65112 0.755621 0.071276 0.96166 -0.25776 -0.093651 0.209729 0.846026 0.490157 0.369985 -0.806261 -0.461579 -0.486759 0.759504 0.431532 0.951681 0.185976 -0.24437 0.902737 0.332183 -0.273352 0.941165 0.315326 -0.121568 0.951681 0.185976 -0.24437 0.956675 0.290442 0.020395 0.999368 -0.03479 -0.007251 0.964422 0.229761 0.130768 0.952504 0.13236 0.274258 0.999368 -0.03479 -0.007251 0.940577 -0.003262 0.339566 0.985356 -0.047323 -0.163812 0.973149 -0.138935 0.183517 0.98634 -0.163979 0.015638 0.985356 -0.047323 -0.163812 0.800077 -0.569905 -0.187309 0.874318 -0.431977 -0.221278 0.945305 -0.32607 -0.008707 0.031586 -0.183913 0.982435 0.031586 -0.183913 0.982435 -0.030751 -0.950601 0.30889 -0.030751 -0.950601 0.30889 0.985137 -0.170059 0.024169 -0.138803 -0.672288 0.727161 -0.138803 -0.672288 0.727161 0.909257 -0.407951 -0.082632 0.909257 -0.407951 -0.082632 0.975975 0.172973 -0.132486 0.975975 0.172973 -0.132486 0.980139 0.18814 -0.062699 0.980139 0.18814 -0.062699 0.977763 -0.075286 0.195733 0.977763 -0.075286 0.195733 0.989301 -0.108793 0.097195 0.989301 -0.108793 0.097195 0.977445 0.124096 -0.170885 0.977445 0.124096 -0.170885 0.998153 0.056019 0.023506 0.998153 0.056019 0.023506 0.796335 -0.523715 0.302611 0.474101 -0.734714 0.485204 -0.961031 0.165053 0.221757 -0.966015 0.031778 0.256527 -0.974186 0.146597 0.171671 -0.972365 0.022683 0.232362 -0.984794 0.118521 0.127015 -0.97678 0.011602 0.213931 -0.992779 0.080892 0.088578 -0.980405 -0.006081 0.1969 -0.997692 0.034776 0.058321 -0.983084 -0.030932 0.180525 -0.999084 -0.01652 0.039467 -0.983546 -0.055798 0.171824 -0.996955 -0.071034 0.03217 -0.982323 -0.081459 0.168542 -0.991355 -0.12588 0.037019 -0.979425 -0.107879 0.170556 -0.982538 -0.178319 0.053122 -0.975168 -0.132497 0.177459 -0.97118 -0.224992 0.078667 -0.9699 -0.153567 0.188972 -0.957807 -0.263848 0.113978 -0.963903 -0.170188 0.204763 -0.939615 -0.29636 0.171153 -0.955655 -0.183417 0.230396 -0.916192 -0.318352 0.243403 -0.943673 -0.194814 0.26745 -0.940074 0.285894 0.18581 -0.959445 0.258862 0.111609 -0.975323 0.216319 0.04416 -0.986978 0.160325 -0.013014 -0.993968 0.093475 -0.057363 -0.996059 0.018754 -0.086686 -0.993227 -0.06055 -0.099163 -0.985628 -0.140582 -0.09367 -0.972899 -0.220345 -0.070116 -0.955697 -0.29262 -0.031897 -0.933885 -0.356815 0.023271 -0.904554 -0.412768 0.106793 -0.874187 -0.443341 0.198105 -0.904883 0.399162 0.14784 -0.930066 0.363832 0.051015 -0.950616 0.308169 -0.036885 -0.965592 0.235032 -0.111317 -0.974471 0.147814 -0.168987 -0.976979 0.05078 -0.207202 -0.973161 -0.05162 -0.224262 -0.963025 -0.155851 -0.219756 -0.94516 -0.263631 -0.192798 -0.918341 -0.367435 -0.147108 -0.884469 -0.46033 -0.076225 -0.846414 -0.531736 0.028979 -0.81683 -0.561478 0.132408 -0.856198 0.505244 0.107954 -0.886734 0.462178 -0.009715 -0.911564 0.394322 -0.116455 -0.92955 0.305236 -0.206801 -0.940103 0.199203 -0.276631 -0.942966 0.081326 -0.322801 -0.938215 -0.042948 -0.343377 -0.925514 -0.170798 -0.338011 -0.90304 -0.303133 -0.304351 -0.869126 -0.43109 -0.242446 -0.825613 -0.542663 -0.154533 -0.78679 -0.615366 -0.04782 -0.763783 -0.641746 0.069265 -0.795208 0.602633 0.06691 -0.830597 0.552504 -0.069627 -0.85928 0.473551 -0.193358 -0.879991 0.369951 -0.297914 -0.892055 0.246859 -0.378547 -0.895219 0.110198 -0.431786 -0.889617 -0.03377 -0.455457 -0.87547 -0.181874 -0.447743 -0.852671 -0.3311 -0.404135 -0.819795 -0.473097 -0.322669 -0.773161 -0.597383 -0.21297 -0.732323 -0.672114 -0.109388 -0.703802 -0.710148 0.018793 -0.723285 0.690084 0.025367 -0.762965 0.633675 -0.127835 -0.79508 0.544841 -0.266451 -0.818228 0.428382 -0.383395 -0.831653 0.290204 -0.47343 -0.835118 0.137002 -0.532737 -0.828804 -0.024239 -0.559013 -0.813771 -0.188224 -0.549862 -0.79107 -0.350428 -0.501406 -0.757687 -0.507139 -0.410755 -0.712161 -0.640658 -0.287028 -0.672656 -0.725938 0.143347 -0.641851 0.766661 -0.016075 -0.68527 0.704796 -0.183489 -0.720395 0.607414 -0.334782 -0.745674 0.479891 -0.46225 -0.760327 0.328783 -0.560182 -0.764125 0.161453 -0.624537 -0.757252 -0.014499 -0.652962 -0.740618 -0.191819 -0.643964 -0.713493 -0.368156 -0.596145 -0.67319 -0.539525 -0.505696 -0.633594 -0.66652 -0.392824 -0.552217 0.831757 -0.056883 -0.598779 0.765354 -0.236001 -0.636491 0.660838 -0.397708 -0.663675 0.524103 -0.533716 -0.679467 0.362301 -0.638015 -0.683616 0.18334 -0.706439 -0.676308 -0.004709 -0.736604 -0.658096 -0.193709 -0.72759 -0.624976 -0.385418 -0.678866 -0.57331 -0.567527 -0.590956 -0.539712 -0.669892 -0.509859 -0.455829 0.884817 -0.096532 -0.504906 0.814845 -0.284776 -0.544771 0.704701 -0.454557 -0.573584 0.560728 -0.597148 -0.59041 0.390539 -0.706325 -0.594941 0.202476 -0.777849 -0.58738 0.005005 -0.809296 -0.568315 -0.193377 -0.799765 -0.531724 -0.399254 -0.746904 -0.472063 -0.588647 -0.65624 -0.438252 -0.663694 -0.606173 -0.336649 0.931055 -0.140727 -0.387856 0.858178 -0.336301 -0.429627 0.743452 -0.512543 -0.459974 0.593597 -0.660353 -0.477869 0.416607 -0.773356 -0.482921 0.221168 -0.847273 -0.475295 0.016124 -0.879678 -0.455543 -0.189817 -0.869741 -0.417917 -0.406061 -0.812687 -0.353552 -0.60422 -0.714086 -0.307968 -0.666598 -0.678825 -0.193714 0.962913 -0.187815 -0.246267 0.8884 -0.387424 -0.288613 0.77069 -0.568101 -0.317008 0.616998 -0.720292 -0.324374 0.435579 -0.839674 -0.320365 0.248902 -0.91401 -0.326185 0.041175 -0.944409 -0.317893 -0.181748 -0.930544 -0.279515 -0.404386 -0.870829 -0.213288 -0.614544 -0.759503 -0.156721 -0.682515 -0.713871 -0.046463 0.971992 -0.230375 -0.103325 0.898972 -0.425645 -0.164362 0.783516 -0.59924 -0.218293 0.643744 -0.733446 -0.220032 0.426957 -0.877094 -0.163378 0.257767 -0.952294 -0.189104 0.091231 -0.97771 -0.196106 -0.137994 -0.970824 -0.15848 -0.395997 -0.904473 -0.068774 -0.626707 -0.776214 0.011498 -0.702817 -0.711278 0.080842 0.962059 -0.260588 -0.004368 0.897342 -0.441313 -0.108637 0.80053 -0.589364 -0.077282 0.160772 -0.983961 -0.047366 -0.005136 -0.998864 -0.055321 -0.376835 -0.924627 0.024205 -0.64051 -0.767568 0.122657 -0.746286 -0.654227 0.182989 0.944565 -0.272601 0.060296 0.892968 -0.446064 0.298773 0.913904 -0.274797 0.253313 0.891687 -0.375137 0.114854 -0.338324 -0.933994 0.102232 0.013353 -0.994671 0.151765 -0.614693 -0.774028 0.247572 -0.789545 -0.561539 0.422501 0.861523 -0.281553 0.416333 0.839555 -0.34902 0.37199 -0.274879 -0.886603 0.353485 0.017625 -0.935274 0.378321 -0.507369 -0.774242 0.386435 -0.730111 -0.563565 0.530382 0.793788 -0.297652 0.540498 0.759214 -0.362568 0.588887 -0.200332 -0.782994 0.56861 0.014756 -0.822475 0.582449 -0.344028 -0.736476 0.575726 -0.569224 -0.586961 0.65241 0.687716 -0.318445 0.658927 0.642592 -0.391012 0.527988 0.032741 -0.848621 0.572271 -0.222348 -0.789346 0.647447 -0.270239 -0.712589 0.71954 -0.352064 -0.598592 0.761452 -0.51329 -0.395884 0.588683 -0.724004 -0.359542 0.425419 -0.825843 -0.370137 0.75829 0.548346 -0.35258 0.752446 0.495489 -0.433954 0.762878 0.455469 -0.458873 0.774527 0.480972 -0.410821 -0.059483 0.299655 -0.952191 -0.090596 0.399221 -0.912368 0.036545 0.471124 -0.881309 0.07364 0.399264 -0.913874 -0.030114 0.266255 -0.963432 -0.038844 0.381241 -0.923659 -0.13284 0.509742 -0.85001 -0.066453 0.503298 -0.861554 0.001768 0.538105 -0.842876 0.050754 0.065758 -0.996544 -0.019181 0.193572 -0.980899 0.117727 0.320417 -0.939933 0.173089 0.209675 -0.962329 0.073986 0.047418 -0.996131 -0.002861 0.154045 -0.98806 0.22268 -0.189591 -0.956279 0.142047 -0.070696 -0.987332 0.235945 0.061061 -0.969846 0.284019 -0.085242 -0.955022 0.284187 -0.119522 -0.95129 0.18495 -0.046926 -0.981627 0.469944 -0.314762 -0.824668 0.324898 -0.286474 -0.901318 0.327435 -0.220891 -0.918691 0.436096 -0.251459 -0.864054 0.473624 -0.209127 -0.855538 0.371679 -0.174482 -0.911817 0.593781 -0.220328 -0.773873 0.64569 -0.038921 -0.762607 0.659388 -0.074842 -0.748068 0.577338 -0.188497 -0.794449 0.520053 -0.164818 -0.838081 0.486574 -0.003404 -0.873633 0.583694 0.350278 -0.732535 0.633952 0.167061 -0.755112 0.445809 0.172583 -0.878333 0.388775 0.329865 -0.860258 0.670839 0.324639 -0.666772 0.692093 0.11947 -0.711852 0.445222 0.577844 -0.684013 0.517686 0.479897 -0.708308 0.330597 0.433029 -0.838565 0.275479 0.50654 -0.817024 0.53871 0.612813 -0.578145 0.616696 0.484403 -0.620516 0.278003 0.744964 -0.606418 0.365453 0.664551 -0.651779 0.221829 0.57283 -0.789087 0.182217 0.632878 -0.752504 0.306851 0.80584 -0.506422 0.437533 0.722967 -0.534681 -0.077112 0.816166 -0.572649 0.125172 0.825515 -0.550324 0.121846 0.731498 -0.670868 -0.019603 0.743964 -0.667932 -0.030227 0.802231 -0.596248 0.128031 0.849287 -0.512171 -0.166759 0.672289 -0.721262 -0.074919 0.639876 -0.764817 -0.086363 0.65898 -0.747185 0.419268 0.406688 -0.811677 0.45283 0.31045 -0.835802 0.550354 0.354523 -0.755926 0.488995 0.426269 -0.761038 0.798505 0.589542 -0.121777 0.629664 0.764854 -0.136094 0.428097 0.516657 -0.741484 0.481992 0.162651 -0.860946 0.476625 0.173666 -0.861782 0.541781 -0.051837 -0.83892 0.610962 -0.026965 -0.7912 0.77405 -0.395398 -0.494477 0.920958 -0.172543 -0.349378 0.643893 0.078074 -0.761122 0.480736 0.233816 -0.845117 0.483133 0.167149 -0.859444 0.616661 0.240115 -0.749715 0.967736 0.117908 -0.222674 0.913198 0.379905 -0.147451 0.390578 0.591083 -0.705741 0.382839 0.535126 -0.753044 0.414139 0.577573 -0.70349 0.47634 0.860797 -0.179246 0.340392 0.907818 -0.24495 0.421549 0.584377 -0.693397 0.405414 0.540989 -0.736865 0.431518 0.576007 -0.694268 0.364935 0.56563 -0.739517 0.160295 0.921034 -0.354968 -0.063838 0.850342 -0.522343 0.231853 0.516573 -0.824255 -0.234963 0.674542 -0.699847 -0.263787 0.488611 -0.831671 0.143761 0.349005 -0.926028 0.121957 0.430188 -0.894463 0.244238 0.368175 -0.897104 0.286839 0.465666 -0.837185 0.431825 0.308888 -0.847417 0.349106 0.306214 -0.88564 0.242828 0.317447 -0.916658 -0.193183 0.358321 -0.913393 -0.108882 0.280328 -0.953709 0.308743 0.342271 -0.887428 0.400235 0.380025 -0.833902 0.437071 0.358464 -0.824907 0.306876 0.362809 -0.879885 -0.062544 0.201463 -0.977497 -0.04802 0.0781 -0.995788 0.266858 0.326827 -0.906626 0.350138 0.278047 -0.894479 0.354862 0.347322 -0.868009 0.255429 0.219947 -0.941477 -0.006971 -0.087812 -0.996113 0.120653 -0.291438 -0.94895 0.318338 0.07641 -0.944893 0.448609 0.180967 -0.875215 0.399034 0.212972 -0.89186 0.432397 -0.02109 -0.901437 0.342686 -0.457883 -0.820311 0.578434 -0.49519 -0.648229 0.296419 -0.000702 -0.955058 0.296419 -0.000702 -0.955058 0.172523 0.052896 -0.983584 0.172523 0.052896 -0.983584 0.039158 0.322577 -0.945733 0.039158 0.322577 -0.945733 0.047516 0.433082 -0.900101 0.047516 0.433082 -0.900101 0.073663 0.121903 -0.989805 0.073663 0.121903 -0.989805 0.020637 0.212144 -0.977021 0.020637 0.212144 -0.977021 0.424054 -0.091556 -0.900997 0.424054 -0.091556 -0.900997 0.357272 -0.03225 -0.933444 0.357272 -0.03225 -0.933444 0.012525 0.534209 -0.84526 0.012525 0.534209 -0.84526 -0.011494 0.7071 -0.707021 -0.011494 0.7071 -0.707021 0.597526 -0.131026 -0.791072 0.597526 -0.131026 -0.791072 0.505826 -0.146625 -0.850083 0.505826 -0.146625 -0.850083 0.043082 0.835064 -0.548463 0.043082 0.835064 -0.548463 0.232892 0.841802 -0.486962 0.232892 0.841802 -0.486962 0.692441 0.211038 -0.689919 0.692441 0.211038 -0.689919 0.670034 -0.002279 -0.742327 0.670034 -0.002279 -0.742327 0.395537 0.785831 -0.475416 0.395537 0.785831 -0.475416 0.511415 0.69064 -0.511342 0.511415 0.69064 -0.511342 0.608864 0.549501 -0.572131 0.608864 0.549501 -0.572131 0.665886 0.412472 -0.621662 0.665886 0.412472 -0.621662 0.267718 0.900516 0.342634 0.267718 0.900516 0.342634 0.434491 0.763425 0.477912 0.434491 0.763425 0.477912 0.869912 0.076138 0.487294 0.869912 0.076138 0.487294 0.932155 -0.229683 0.279881 0.932155 -0.229683 0.279881 0.602872 0.538559 0.588642 0.602872 0.538559 0.588642 0.752279 0.323048 0.574209 0.752279 0.323048 0.574209 -0.213672 0.974192 0.072768 -0.213672 0.974192 0.072768 0.039021 0.973056 0.227243 0.039021 0.973056 0.227243 0.840289 -0.540248 0.045233 0.840289 -0.540248 0.045233 0.606818 -0.775669 -0.17352 0.606818 -0.775669 -0.17352 -0.573632 0.648601 -0.500262 -0.573632 0.648601 -0.500262 -0.459052 0.865899 -0.198721 -0.459052 0.865899 -0.198721 0.348772 -0.845309 -0.404736 0.348772 -0.845309 -0.404736 0.044107 -0.731158 -0.680781 0.044107 -0.731158 -0.680781 -0.526631 0.262875 -0.808429 -0.526631 0.262875 -0.808429 -0.572583 0.444835 -0.688673 -0.572583 0.444835 -0.688673 -0.171813 -0.489749 -0.854767 -0.171813 -0.489749 -0.854767 -0.298216 -0.294897 -0.907801 -0.298216 -0.294897 -0.907801 -0.378075 -0.092709 -0.921121 -0.378075 -0.092709 -0.921121 -0.44719 0.096281 -0.889242 -0.44719 0.096281 -0.889242 0.612429 0.206829 -0.762989 0.464886 0.248405 -0.849809 0.407407 0.351958 -0.842701 0.648197 0.357749 -0.672202 0.671753 0.259933 -0.693674 0.260779 0.444292 -0.857088 0.266283 0.359019 -0.894538 0.239549 0.282383 -0.928911 0.456076 0.54318 -0.704947 0.484975 0.494828 -0.721072 0.523431 0.452679 -0.721874 0.154432 0.395601 -0.905345 0.17883 0.504716 -0.84456 0.266157 0.567731 -0.779001 0.193307 0.300033 -0.934138 0.427534 0.439385 -0.790035 0.307666 0.464115 -0.830626 0.465664 0.419078 -0.779442 0.586011 0.418412 -0.693919 0.376686 0.574397 -0.726757 0.72401 0.167928 -0.669036 0.615211 0.144276 -0.775048 0.538442 0.194451 -0.81992 0.755996 0.352652 -0.551458 0.765047 0.251817 -0.592698 0.104303 0.251884 -0.96212 0.084593 0.265317 -0.960443 0.005837 0.281933 -0.959416 0.438714 0.77153 -0.460728 0.549094 0.684577 -0.479427 0.639111 0.567102 -0.51955 -0.119349 0.571474 -0.811895 -0.055497 0.717664 -0.694175 0.087893 0.80095 -0.592244 -0.082255 0.383999 -0.919662 0.371981 0.25099 -0.893663 0.168173 0.254214 -0.952414 0.515832 0.244885 -0.820943 0.711746 0.448691 -0.540457 0.274747 0.816832 -0.507247 0.645705 0.281916 -0.70964 0.539281 0.220414 -0.812769 0.769022 0.394085 -0.503292 0.726749 0.338639 -0.597628 0.910687 0.132665 0.391214 0.999599 0.019627 0.020427 0.95412 0.024299 0.298438 0.445708 0.894704 -0.029136 0.965917 0.00636 -0.258774 0.63813 0.749781 -0.174984 0.564478 0.808758 -0.165152 0.955888 0.074409 -0.28415 0.833027 -0.550995 -0.049699 0.747769 -0.638876 -0.180774 0.496269 -0.862279 -0.100952 -0.207933 0.848115 -0.487303 0.067624 0.763984 -0.641681 0.12728 0.626188 -0.769213 -0.218784 0.728379 -0.649305 0.477035 0.407812 -0.778542 0.477035 0.407812 -0.778542 0.017333 -0.981177 -0.192329 0.100697 -0.980826 -0.166857 0.066985 -0.985016 -0.158922 0.066985 -0.985016 -0.158922 0.113176 -0.977596 -0.177477 0.113176 -0.977596 -0.177477 0.260639 0.584649 -0.768279 0.260639 0.584649 -0.768279 0.016554 0.67435 -0.738226 -0.106362 0.750404 -0.652366 -0.106362 0.750404 -0.652366 -0.052394 0.836039 -0.546163 0.073173 0.824552 -0.561034 -0.11046 0.686583 -0.718611 -0.155032 0.743111 -0.650962 -0.209657 0.806439 -0.552901 -0.277141 0.74834 -0.602644 -0.254322 0.755762 -0.603444 -0.358109 0.092557 -0.929081 -0.250923 0.673348 -0.695442 -0.112663 0.603179 -0.789609 -0.09202 0.089713 -0.991708 0.154625 0.382352 -0.910988 0.205405 -0.026468 -0.978319 -0.072607 -0.353019 -0.932795 -0.315135 -0.516218 -0.796372 0.137801 -0.96591 -0.219155 -0.147037 -0.862058 -0.485012 0.15353 -0.866566 -0.474859 0.229098 -0.817711 -0.528075 0.125194 -0.964684 -0.231758 0.055128 -0.985656 -0.159509 0.133227 -0.975043 -0.1776 0.08158 0.845691 -0.5274 0.078804 0.875247 -0.477213 -0.135909 0.78308 -0.606889 -0.14307 0.731129 -0.667069 0.652262 -0.134271 -0.746006 0.728452 -0.084587 -0.679855 0.489926 -0.423017 -0.762253 0.604152 0.140091 -0.784458 0.789901 0.036981 -0.612119 0.511155 -0.597093 -0.618224 0.41548 -0.442463 -0.794735 0.053874 -0.927755 -0.369281 0.152238 -0.796477 -0.58519 0.917433 -0.01634 -0.397554 0.60325 -0.699086 -0.383887 0.029478 -0.980033 -0.196639 0.188278 0.863211 -0.468421 0.734878 0.361526 -0.573806 0.645074 0.228829 -0.729052 0.011092 0.714503 -0.699544 0.528285 0.032629 -0.84844 -0.123905 0.526586 -0.841044 0.709036 -0.679127 0.189881 0.54884 -0.680148 0.485977 0.696633 -0.536154 0.476698 0.937025 0.142119 0.319041 0.883729 -0.390989 0.257199 0.771856 0.621298 -0.135006 0.80244 -0.582305 -0.130427 0.360455 0.931906 0.040288 0.246781 0.968966 0.014261 0.199409 0.979909 0.003657 0.20259 0.97835 0.042279 0.297397 0.954751 0.002279 0.296878 0.953346 -0.054732 -0.448272 0.750301 -0.485901 -0.299256 0.711329 -0.635969 -0.449932 0.662013 -0.599417 -0.604373 0.702658 -0.375506 0.543677 -0.837776 -0.05046 0.41825 -0.908309 0.006481 0.525642 -0.828016 0.195167 0.513327 -0.837473 0.187441 0.632445 -0.690176 0.351668 0.562937 -0.723503 0.399556 0.270888 -0.860723 -0.431018 0.466072 -0.760826 -0.451575 0.785817 -0.470274 -0.401664 0.806986 0.379916 -0.452147 0.311722 -0.406116 -0.859011 0.08011 -0.476468 -0.875534 0.492226 -0.783275 0.379728 0.564196 -0.75938 0.324076 0.615425 -0.747397 0.250297 0.467281 -0.880804 -0.076373 0.423525 -0.905139 -0.036738 0.388235 -0.921287 -0.022439 -0.638353 0.671458 -0.376365 -0.642083 0.670375 -0.371923 -0.527289 0.635121 -0.564436 -0.53912 0.609156 -0.581618 -0.499354 0.673213 -0.545371 -0.620665 0.681581 -0.387585 0.724403 -0.679107 -0.118553 0.808578 -0.568186 -0.152862 0.76273 -0.645516 0.039393 0.719046 -0.694329 0.029644 0.704086 -0.666952 0.243799 0.68063 -0.673335 0.288725 0.675478 -0.668555 0.311069 0.688796 -0.721756 0.068031 0.678689 -0.726051 -0.110594 0.590821 -0.659388 -0.464906 0.324614 -0.335183 -0.884465 0.389368 -0.193616 -0.900503 0.677507 -0.584788 -0.446103 0.811911 -0.403641 -0.421752 -0.702864 0.705439 -0.091315 -0.699069 0.693346 0.174852 -0.698884 0.694843 0.169571 -0.697074 0.711711 -0.08692 -0.629707 0.772938 0.077689 -0.630257 0.757744 -0.169115 0.665495 -0.718329 0.202779 0.637554 -0.7383 0.220087 0.650398 -0.741869 0.163133 0.619906 -0.781037 -0.075482 0.62189 -0.772088 -0.130895 0.619404 -0.767547 -0.164959 -0.428525 0.808484 -0.403384 -0.344282 0.922494 -0.174568 0.841854 -0.487833 -0.230867 0.838993 -0.458769 -0.292613 0.718357 -0.682624 -0.134116 0.750372 -0.66081 -0.016469 -0.004385 -0.980634 -0.195802 0.11327 -0.803082 -0.585003 0.033162 -0.790045 -0.612151 -0.142029 -0.978203 -0.151482 0.398848 0.500353 -0.768484 0.284867 0.522124 -0.803889 0.240759 -0.182234 -0.953324 0.326055 -0.256882 -0.90978 0.106126 0.992625 0.058596 0.101925 0.991712 -0.078227 0.185058 0.981762 0.043548 0.161241 0.98316 0.086007 0.203627 0.976108 0.075821 -0.181266 -0.979622 -0.086502 -0.058418 -0.989239 -0.134139 0.18691 0.981774 0.034418 0.16088 0.98655 0.028917 -0.164751 -0.970502 -0.176023 0.075477 -0.797038 -0.599194 0.41959 0.332341 -0.844685 0.322606 -0.288805 -0.901397 0.338129 0.937695 -0.079978 0.299596 0.953203 -0.040569 -0.230271 -0.970692 -0.068787 0.273756 0.960659 -0.046809 -0.093554 0.935084 -0.341855 -0.357811 0.927392 -0.109158 -0.580229 0.784645 -0.218327 -0.370232 0.823908 -0.429073 0.555442 -0.82035 -0.136052 0.648256 -0.730721 0.214037 0.665073 -0.670138 0.329534 -0.177345 0.255741 -0.950339 0.237945 -0.404121 -0.883215 -0.171659 0.218398 -0.960643 -0.191232 0.22974 -0.95428 -0.611039 0.688951 -0.389844 -0.497376 0.621066 -0.605717 0.578572 -0.812132 -0.075471 0.636769 -0.760919 0.124606 -0.168096 0.382717 -0.908445 -0.01579 0.29859 -0.954251 -0.354497 0.372019 -0.857866 -0.354497 0.372019 -0.857866 0.030753 -0.642052 -0.766044 -0.28865 0.899627 -0.327645 -0.28865 0.899627 -0.327645 -0.590748 0.801531 0.092551 0.882451 -0.187177 -0.431561 0.631213 0.690214 -0.3538 0.716773 0.651128 -0.249539 0.810085 0.079366 -0.580916 0.218435 0.918014 -0.330963 0.140919 0.983259 -0.115515 0.178425 0.905077 -0.386006 0.364259 0.817074 -0.446884 0.299785 0.939825 -0.163886 0.464631 -0.750462 -0.470027 0.536199 0.720631 -0.439525 0.864301 -0.265631 -0.427112 -0.127859 0.902899 -0.410396 0.648779 -0.746777 0.14632 -0.65206 0.746179 -0.134292 0.932257 0.179954 -0.313868 0.932257 0.179954 -0.313868 0.85443 0.301563 -0.423095 0.797829 0.26596 -0.541049 0.873116 -0.177098 -0.454207 0.873116 -0.177098 -0.454207 0.649289 0.072699 -0.757059 0.753442 0.191783 -0.628923 0.6043 -0.0704 -0.793641 0.921298 -0.001363 -0.388856 0.921298 -0.001363 -0.388856 0.805464 -0.09727 -0.584608 0.710857 -0.181827 -0.679427 0.859553 -0.250977 -0.445172 -0.504833 -0.252405 -0.825491 -0.504833 -0.252405 -0.825491 -0.176988 -0.95937 -0.219738 -0.176988 -0.95937 -0.219738 0.838581 -0.043777 -0.543014 -0.50884 -0.695521 -0.507279 -0.50884 -0.695521 -0.507279 0.843621 -0.371969 -0.387224 0.843621 -0.371969 -0.387224 0.897769 0.154532 -0.41247 0.897769 0.154532 -0.41247 0.883068 0.157461 -0.442037 0.883068 0.157461 -0.442037 0.71598 -0.20424 -0.667576 0.71598 -0.20424 -0.667576 0.84052 -0.139279 -0.523572 0.84052 -0.139279 -0.523572 0.889164 0.201883 -0.410647 0.889164 0.201883 -0.410647 0.844759 0.094819 -0.526679 0.844759 0.094819 -0.526679 0.516769 -0.546521 -0.658988 0.137687 -0.761356 -0.633545 -0.073521 0.769689 -0.634171 -0.902895 -0.325759 0.280467 -0.936415 -0.200727 0.287811 -0.858832 -0.448083 0.248252 -0.80054 -0.564124 0.202238 -0.740856 -0.649577 0.170825 -0.640499 -0.727822 0.245023 -0.852262 -0.443442 0.277505 -0.785146 -0.561254 0.261802 -0.709343 -0.657204 0.254784 0.578683 -0.759785 0.2964 -0.000115 -0.99999 -0.004589 -0.00051 -0.999977 -0.006811 -3.4e-005 -0.999995 -0.003095 -0.0006 -0.999998 -0.001658 0.001309 -0.999998 0.001288 -0.003465 -0.999976 -0.006061 -0.004195 -0.999979 -0.004981 -0.000633 -0.99997 -0.007748 -0.001948 -0.999974 -0.00693 -6e-006 -0.999971 -0.007673 -0.00264 -0.99998 -0.005704 -6.6e-005 -0.999967 -0.008151 -0.00142 -0.999996 -0.002481 0.003645 -0.999993 4.6e-005 -0.002686 -0.999991 0.003221 0.002724 -0.999944 0.010221 0.004946 -0.999932 0.010546 0.006765 -0.99992 0.010688 0.004595 -0.999966 0.006817 0.001146 -0.999997 0.002298 -0.004822 -0.999982 0.003527 -0.003588 -0.999964 0.00771 -0.00298 -0.999888 0.014663 -0.001243 -0.999863 0.016531 0.001848 -0.999933 0.011451 -0.004415 -0.999984 0.003674 0.001118 -0.999907 0.013595 0.001334 -0.999999 -0.000699 -0.00033 -1 -0.000292</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"LOD3spShape-lib-map1\" name=\"map1\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2277\" source=\"#LOD3spShape-lib-map1-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4554\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"LOD3spShape-lib-map1-array\">0.245158 0.423975 0.25011 0.468112 0.150442 0.543685 0.148569 0.498875 0.302841 0.416173 0.345064 0.636086 0.339502 0.673242 0.260986 0.672117 0.283208 0.642063 0.331126 0.714598 0.241009 0.71553 0.233372 0.762934 0.302959 0.373132 0.224027 0.289653 0.23558 0.359702 0.143764 0.429085 0.134156 0.320572 0.298228 0.319321 0.288073 0.263566 0.326898 0.757163 0.328393 0.797118 0.23841 0.805793 0.60087 0.640918 0.866606 0.398924 0.510699 0.676291 0.517366 0.634965 0.871384 0.397619 0.505796 0.719121 0.878048 0.397558 0.87416 0.398826 0.86606 0.397625 0.86057 0.399008 0.501279 0.762876 0.856321 0.39906 0.497144 0.804816 0.862375 0.397683 0.860024 0.397676 0.853776 0.399148 0.494669 0.842655 0.936097 0.40457 0.495808 0.877438 0.932361 0.401286 0.944998 0.401429 0.333511 0.830512 0.255441 0.838224 0.335539 0.859065 0.275714 0.857682 0.13703 0.645509 0.099669 0.709478 0.072436 0.710311 0.114209 0.64461 0.217381 0.600094 0.193334 0.589335 0.083907 0.774978 0.093256 0.834193 0.067488 0.842396 0.056643 0.778851 0.948825 0.405179 0.543475 0.557405 0.5578 0.533271 0.685834 0.551732 0.928618 0.398828 0.939922 0.398832 0.318062 0.571086 0.304302 0.551225 0.870712 0.401462 0.862287 0.401557 0.855482 0.401642 0.85836 0.405349 0.85103 0.405417 0.86725 0.404976 0.851008 0.401767 0.84805 0.401779 0.618068 0.949096 0.595914 0.442419 0.701364 0.36472 0.704143 0.312403 0.595493 0.387203 0.757075 0.288915 0.749567 0.262372 0.79867 0.019963 0.720188 0.090411 0.342229 0.232442 0.353643 0.285267 0.846214 0.405443 0.84246 0.405195 0.945825 0.3988 0.51556 0.94314 0.529717 0.959537 0.951482 0.401365 0.955814 0.405156 0.355112 0.336459 0.416748 0.23909 0.409212 0.301844 0.412385 0.174765 0.722678 0.141004 0.371257 0.129527 0.316583 0.183819 0.278107 0.146712 0.815355 0.094326 0.586596 0.164171 0.31201 0.090946 0.272238 0.213152 0.591566 0.221736 0.775513 0.183818 0.258385 0.177707 0.714664 0.225413 0.594393 0.311859 0.803506 0.201004 0.853165 0.100422 0.240207 0.064107 0.220228 0.127313 0.134162 0.116701 0.137886 0.045291 0.20962 0.176711 0.132836 0.176022 0.393776 0.367451 0.346805 0.380154 0.21424 0.228892 0.133514 0.241035 0.127886 0.880246 0.194162 0.909528 0.176891 0.924466 0.105635 0.892789 0.298575 0.918513 0.289302 0.932026 0.41004 0.927663 0.412647 0.940987 0.152917 0.714025 0.188039 0.660899 0.251002 0.622891 0.148083 0.821618 0.139091 0.770988 0.529124 0.59406 0.624566 0.605374 0.943792 0.414167 0.33386 0.602351 0.939709 0.408955 0.951716 0.40979 0.95394 0.414936 0.863781 0.409841 0.854643 0.410095 0.847079 0.410021 0.50373 0.914675 0.043999 0.560029 0.039161 0.51728 0.035514 0.442488 0.02836 0.327681 0.57657 0.399149 0.579657 0.45714 0.483058 0.467543 0.484696 0.402538 0.027211 0.11532 0.026409 0.041836 0.027231 0.176259 0.027041 0.244825 0.496033 0.232082 0.498386 0.171519 0.545104 0.178866 0.55478 0.242428 0.486973 0.320445 0.572701 0.32584 0.253473 0.42034 0.198325 0.471074 0.201641 0.514357 0.257191 0.464291 0.304409 0.414784 0.305266 0.371658 0.230885 0.286168 0.167912 0.306331 0.188981 0.401339 0.242536 0.354324 0.300813 0.31779 0.290984 0.262458 0.644363 0.422582 0.643061 0.366324 0.70337 0.314326 0.703499 0.366966 0.745969 0.26707 0.75382 0.293297 0.343946 0.231017 0.355397 0.284532 0.356783 0.335152 0.414764 0.29281 0.419941 0.236001 0.413771 0.173263 0.370421 0.125545 0.313385 0.086563 0.282902 0.142155 0.319456 0.18046 0.261679 0.175104 0.275739 0.211488 0.247515 0.05956 0.175872 0.043369 0.166908 0.113803 0.230266 0.122298 0.162066 0.173298 0.220575 0.173418 0.399643 0.347472 0.348371 0.378515 0.850892 0.415208 0.23283 0.882474 0.174218 0.860862 0.318561 0.890705 0.412205 0.900441 0.414872 0.864697 0.414169 0.832004 0.413463 0.796679 0.414763 0.757 0.418623 0.715141 0.424042 0.67374 0.797949 0.022112 0.816816 0.093012 0.720595 0.147032 0.715991 0.092651 0.636546 0.210325 0.627672 0.148444 0.772502 0.189202 0.711355 0.231084 0.641706 0.289174 0.223314 0.226619 0.162858 0.235961 0.139391 0.505963 0.140772 0.546375 0.105327 0.324975 0.131454 0.436403 0.855305 0.0942 0.800674 0.205793 0.103269 0.042003 0.100779 0.11305 0.099208 0.173793 0.099637 0.242841 0.428561 0.633258 0.429426 0.594048 0.429051 0.559095 0.429259 0.535162 0.35272 0.639241 0.294558 0.645659 0.274212 0.673847 0.348213 0.675519 0.253789 0.714174 0.339072 0.715472 0.241562 0.759109 0.241492 0.801977 0.330569 0.796358 0.332348 0.756954 0.843668 0.414845 0.519216 0.636196 0.513483 0.677706 0.858319 0.415536 0.509018 0.719971 0.595108 0.724198 0.959154 0.409842 0.961426 0.415077 0.955396 0.420505 0.503982 0.762367 0.946551 0.419988 0.498249 0.80295 0.581926 0.813498 0.948394 0.426244 0.956245 0.426562 0.493564 0.840197 0.962774 0.420748 0.49337 0.874734 0.5689 0.884732 0.963626 0.426902 0.947821 0.439136 0.254385 0.836095 0.333265 0.830744 0.334347 0.859927 0.274272 0.857068 0.111374 0.707428 0.160452 0.654158 0.126019 0.649524 0.074711 0.707898 0.232092 0.611555 0.203545 0.598866 0.085639 0.828171 0.086444 0.767612 0.053832 0.770468 0.05904 0.833261 0.5406 0.554531 0.653253 0.57169 0.949156 0.432796 0.552741 0.532581 0.956416 0.432776 0.955188 0.438695 0.321928 0.578317 0.3053 0.558373 0.963377 0.433055 0.962074 0.438861 0.939469 0.450342 0.944673 0.445101 0.952905 0.444195 0.949616 0.449137 0.959891 0.444199 0.95721 0.449055 0.928445 0.45763 0.933041 0.454385 0.647892 0.957038 0.945196 0.453364 0.513713 0.938992 0.528694 0.953445 0.940767 0.456994 0.954246 0.453493 0.191556 0.905473 0.119561 0.876603 0.09609 0.886393 0.173642 0.917872 0.296111 0.916924 0.285563 0.930752 0.407594 0.925155 0.699705 0.808301 0.767751 0.813767 0.770203 0.857847 0.710393 0.859091 0.67046 0.86001 0.652167 0.800156 0.732575 0.902022 0.706983 0.910753 0.776574 0.894725 0.709069 0.706824 0.772884 0.721001 0.769128 0.766819 0.69961 0.756109 0.650715 0.739559 0.665169 0.685443 0.747389 0.629544 0.781976 0.645207 0.777571 0.679447 0.726035 0.663915 0.69251 0.641696 0.7256 0.608173 0.800842 0.598447 0.800844 0.613722 0.782354 0.62203 0.77064 0.606739 0.761516 0.586356 0.801211 0.57812 0.833474 0.606525 0.843418 0.585771 0.884582 0.608278 0.861681 0.62927 0.826927 0.645008 0.821482 0.621769 0.901508 0.709495 0.841154 0.721344 0.835351 0.679466 0.88519 0.664947 0.920582 0.64464 0.946246 0.692573 0.905321 0.811872 0.840491 0.814502 0.842749 0.767471 0.908491 0.759591 0.957769 0.748636 0.953229 0.808266 0.87648 0.901039 0.832824 0.894364 0.83647 0.858222 0.893987 0.860506 0.934495 0.863509 0.904941 0.908789 0.811165 0.93926 0.808557 0.928096 0.833115 0.918674 0.850764 0.928355 0.866017 0.939324 0.815782 0.955298 0.781351 0.919619 0.767445 0.930389 0.756778 0.947206 0.874321 0.260529 0.87457 0.258357 0.870642 0.262514 0.870232 0.260129 0.875205 0.262091 0.87418 0.274349 0.878088 0.275377 0.879128 0.284194 0.875282 0.284248 0.876451 0.268146 0.87176 0.26763 0.879196 0.270887 0.875496 0.265391 0.893101 0.28442 0.892287 0.271326 0.879947 0.284131 0.862255 0.219399 0.877309 0.242158 0.869772 0.241647 0.855575 0.218438 0.862432 0.239621 0.84944 0.210845 0.867315 0.244511 0.849901 0.240235 0.863194 0.266321 0.876212 0.265675 0.880423 0.283451 0.866718 0.283089 0.870498 0.254293 0.863904 0.253791 0.870234 0.270504 0.864805 0.270607 0.879852 0.25405 0.878645 0.27023 0.884908 0.221559 0.894641 0.243235 0.885819 0.242521 0.87478 0.219802 0.853855 0.205189 0.868038 0.204565 0.870975 0.210424 0.856654 0.209577 0.882303 0.208527 0.885027 0.21281 0.869343 0.207181 0.855354 0.205901 0.879862 0.246326 0.872817 0.221463 0.859409 0.2185 0.885826 0.225344 0.891813 0.248223 0.886742 0.266822 0.897889 0.269881 0.890434 0.283337 0.902191 0.283202 0.887267 0.269985 0.888486 0.253806 0.897003 0.253871 0.897865 0.269734 0.890567 0.21382 0.890889 0.214313 0.887336 0.211472 0.940502 0.247339 0.935827 0.245027 0.948386 0.259727 0.952135 0.261243 0.929477 0.246937 0.935892 0.257903 0.955141 0.271935 0.951237 0.271687 0.951697 0.282445 0.956107 0.282705 0.939971 0.271031 0.941535 0.28252 0.963745 0.266939 0.955791 0.248173 0.96377 0.246708 0.971434 0.266214 0.948554 0.235961 0.955224 0.234835 0.896396 0.245174 0.886107 0.251776 0.887306 0.25714 0.901578 0.253513 0.893935 0.234459 0.893306 0.241625 0.88488 0.259333 0.895682 0.256287 0.898524 0.274248 0.887363 0.275119 0.885952 0.26722 0.897217 0.265981 0.888292 0.284017 0.899782 0.283788 0.893557 0.224473 0.903384 0.244263 0.904117 0.226402 0.909834 0.245212 0.898452 0.232315 0.90536 0.242289 0.914901 0.24109 0.908475 0.23147 0.912117 0.251402 0.92111 0.249824 0.905103 0.223634 0.894105 0.223477 0.891627 0.223783 0.892209 0.224715 0.894785 0.217728 0.904032 0.218825 0.905292 0.26092 0.916745 0.259188 0.925679 0.257542 0.919312 0.270264 0.927598 0.269904 0.909165 0.270372 0.922229 0.248254 0.923018 0.231732 0.931448 0.236491 0.927474 0.250713 0.939132 0.243721 0.931475 0.252998 0.941395 0.236759 0.941774 0.24318 0.951181 0.24757 0.953028 0.242625 0.943442 0.249961 0.949719 0.251412 0.932269 0.241398 0.935522 0.24909 0.930136 0.234395 0.929446 0.228394 0.942151 0.230847 0.942787 0.227016 0.929372 0.224433 0.954848 0.237908 0.922857 0.256527 0.927955 0.258098 0.929776 0.270263 0.925166 0.269641 0.93313 0.259066 0.935431 0.270899 0.938091 0.256867 0.945703 0.257403 0.953024 0.257866 0.948714 0.269472 0.957575 0.269677 0.940805 0.269454 0.944953 0.253898 0.950208 0.269278 0.961307 0.253711 0.957956 0.256418 0.964661 0.269455 0.96896 0.268209 0.902892 0.249987 0.897745 0.228849 0.908596 0.231834 0.912735 0.252197 0.897122 0.224227 0.89485 0.22181 0.90624 0.226903 0.908607 0.228742 0.903082 0.242361 0.906809 0.256103 0.917237 0.255133 0.919494 0.264606 0.908311 0.265315 0.907454 0.269025 0.916487 0.269043 0.911531 0.283044 0.919593 0.2829 0.909419 0.273405 0.911476 0.28336 0.920571 0.273041 0.922157 0.283218 0.922114 0.255039 0.920062 0.238863 0.921052 0.234472 0.923775 0.23538 0.929369 0.253983 0.934895 0.263753 0.927988 0.282737 0.92516 0.269608 0.937386 0.272947 0.938515 0.283177 0.906903 0.269654 0.905634 0.25451 0.912156 0.254648 0.915624 0.269303 0.934262 0.269581 0.931993 0.256855 0.928513 0.24901 0.928512 0.223212 0.917128 0.220406 0.916725 0.220767 0.9041 0.217973 0.914088 0.228391 0.916363 0.246441 0.918617 0.23227 0.923487 0.240784 0.938248 0.22777 0.892821 0.216321 0.844542 0.206031 0.874322 0.212263 0.870581 0.286403 0.864795 0.285932 0.877377 0.285736 0.887924 0.285532 0.898823 0.285311 0.908672 0.285115 0.917425 0.284957 0.921216 0.269224 0.922914 0.284906 0.926665 0.284912 0.930758 0.284928 0.936388 0.28496 0.952837 0.284936 0.967867 0.284724 0.971593 0.266723 0.976556 0.284338 0.976161 0.284497 0.973686 0.284223 0.968029 0.284169 0.960033 0.284154 0.950775 0.284138 0.942494 0.284121 0.936182 0.284123 0.929809 0.284158 0.920968 0.284223 0.910111 0.284292 0.952943 0.272204 0.950019 0.262148 0.953976 0.282879 0.900909 0.229617 0.889642 0.217102 0.912068 0.234085 0.913562 0.243735 0.925227 0.239763 0.92311 0.245509 0.916786 0.225007 0.940372 0.24984 0.963568 0.250138 0.888081 0.264217 0.918118 0.254988 0.844126 0.209259 0.844951 0.221286 0.886769 0.216308 0.872985 0.215718 0.879346 0.309871 0.875833 0.306046 0.875654 0.308144 0.879007 0.306407 0.876295 0.294136 0.878977 0.293033 0.879812 0.300399 0.876175 0.301094 0.880254 0.30345 0.882198 0.297454 0.893175 0.297687 0.865817 0.349629 0.859181 0.350621 0.872916 0.327332 0.880252 0.326495 0.865713 0.330422 0.852822 0.359205 0.869257 0.322943 0.877097 0.301439 0.864055 0.301093 0.852819 0.327816 0.866118 0.317194 0.872679 0.31623 0.865658 0.301152 0.871305 0.301562 0.879516 0.300927 0.881998 0.315802 0.888262 0.347411 0.878301 0.348969 0.888479 0.326114 0.897047 0.325511 0.857019 0.363938 0.860381 0.359999 0.874655 0.358691 0.872015 0.364197 0.888629 0.3558 0.886097 0.359632 0.872907 0.361011 0.858128 0.36229 0.881706 0.320824 0.862423 0.349295 0.875903 0.346079 0.888714 0.341972 0.893556 0.318638 0.898554 0.296744 0.887564 0.300041 0.888147 0.300674 0.898715 0.300283 0.89883 0.31539 0.89048 0.315686 0.894383 0.353795 0.894065 0.354129 0.890921 0.356254 0.942171 0.318343 0.9529 0.304272 0.949521 0.305533 0.937705 0.320863 0.937122 0.30759 0.931259 0.318903 0.955735 0.293528 0.951772 0.293299 0.940544 0.294181 0.964624 0.302435 0.972337 0.302695 0.965634 0.321964 0.957594 0.320997 0.957663 0.333351 0.950951 0.332759 0.897685 0.323309 0.904388 0.314564 0.887892 0.312338 0.888936 0.316243 0.699423 0.809253 0.710111 0.860044 0.769921 0.8588 0.767468 0.81472 0.651885 0.801109 0.669688 0.860514 0.732293 0.902975 0.706453 0.911484 0.776292 0.895678 0.708787 0.707777 0.699329 0.757062 0.768846 0.767772 0.772602 0.721954 0.664887 0.686395 0.650433 0.740512 0.747107 0.630497 0.725753 0.664868 0.777288 0.6804 0.781693 0.64616 0.725318 0.609127 0.692228 0.642648 0.80056 0.5994 0.770358 0.607692 0.782072 0.622983 0.800562 0.614675 0.800928 0.579073 0.761234 0.587309 0.833192 0.607478 0.861399 0.630223 0.8843 0.609231 0.843136 0.586725 0.8212 0.622722 0.826645 0.645961 0.901226 0.710448 0.884907 0.6659 0.835069 0.680418 0.840872 0.722297 0.945964 0.693526 0.920299 0.645594 0.905039 0.812825 0.908209 0.760544 0.842467 0.768423 0.840209 0.815454 0.952947 0.809219 0.957487 0.749588 0.876198 0.901993 0.893705 0.861459 0.836187 0.859175 0.832541 0.895317 0.904659 0.909742 0.934213 0.864462 0.810883 0.940213 0.850482 0.929308 0.832833 0.919627 0.808275 0.929049 0.815494 0.955807 0.865735 0.940277 0.767163 0.931342 0.781069 0.920572 0.878641 0.308129 0.757688 0.947696 0.89571 0.326063 0.896265 0.333541 0.887647 0.308911 0.896958 0.311973 0.898883 0.293285 0.897963 0.301935 0.887703 0.301029 0.887878 0.29293 0.905567 0.324686 0.896731 0.344468 0.906991 0.342485 0.911791 0.324251 0.900908 0.335596 0.911043 0.336295 0.917143 0.326675 0.907054 0.325968 0.923285 0.31808 0.915184 0.316034 0.908088 0.344187 0.897103 0.344536 0.894607 0.344154 0.895142 0.343144 0.898106 0.350443 0.90726 0.349181 0.907871 0.308374 0.918398 0.309598 0.927049 0.310818 0.928305 0.298442 0.920004 0.298182 0.909927 0.298243 0.924036 0.321254 0.929162 0.318872 0.933826 0.332572 0.925629 0.337191 0.941158 0.32555 0.933051 0.316658 0.943727 0.330971 0.955075 0.325269 0.952983 0.320359 0.943791 0.324629 0.951332 0.316568 0.945126 0.31796 0.937248 0.318798 0.934373 0.326359 0.932584 0.333273 0.932192 0.3393 0.932318 0.343421 0.945607 0.340893 0.944776 0.336887 0.957129 0.33006 0.924262 0.313255 0.925922 0.300164 0.930502 0.299579 0.929283 0.311724 0.936126 0.298969 0.93441 0.310774 0.939442 0.311396 0.947027 0.310849 0.954323 0.310334 0.958291 0.298597 0.94944 0.298819 0.941532 0.298832 0.946483 0.315703 0.950981 0.300512 0.962811 0.314479 0.969751 0.300159 0.965388 0.298807 0.959326 0.311738 0.904541 0.316598 0.900452 0.33816 0.911146 0.334819 0.914268 0.314088 0.900043 0.343367 0.910827 0.338483 0.909045 0.340214 0.897918 0.345703 0.907714 0.311836 0.905082 0.324826 0.918749 0.311513 0.909052 0.30192 0.920236 0.301846 0.91718 0.297035 0.908155 0.297332 0.909931 0.29344 0.92041 0.293444 0.923496 0.310879 0.922253 0.327378 0.925923 0.331262 0.923469 0.332076 0.930583 0.312153 0.934974 0.302503 0.925817 0.29614 0.93758 0.293425 0.907706 0.300101 0.916398 0.300537 0.913653 0.315103 0.907277 0.314776 0.934984 0.298714 0.933344 0.311407 0.930312 0.318902 0.931529 0.345055 0.919853 0.347075 0.920283 0.347817 0.907379 0.350402 0.918259 0.323025 0.916863 0.340467 0.921166 0.335346 0.925584 0.327014 0.941044 0.340685 0.896265 0.352186 0.847118 0.363087 0.877923 0.355511 0.921992 0.300554 0.972463 0.301867 0.950828 0.303658 0.953466 0.293583 0.892951 0.350759 0.90326 0.337983 0.915596 0.322974 0.91417 0.333036 0.927312 0.326701 0.92504 0.320904 0.919699 0.342662 0.941871 0.316003 0.965254 0.318221 0.889956 0.306147 0.919598 0.314755 0.845891 0.359181 0.847322 0.346695 0.890112 0.35133 0.87636 0.352039 0.950166 0.457401 0.877438 0.456074 0.890333 0.455013 0.891902 0.457826 0.881771 0.45805 0.893433 0.460126 0.885457 0.459788 0.90216 0.458193 0.902038 0.46051 0.902093 0.455956 0.869348 0.456995 0.875073 0.458463 0.870949 0.459563 0.865831 0.459946 0.88002 0.459819 0.876379 0.459992 0.890696 0.462723 0.889158 0.462546 0.893089 0.46287 0.842115 0.409869 0.837426 0.409453 0.838646 0.414482 0.833434 0.414204 0.847163 0.42056 0.840709 0.41957 0.839445 0.430603 0.83503 0.428579 0.852464 0.422383 0.843659 0.433436 0.835601 0.419062 0.830596 0.418889 0.831257 0.427506 0.827802 0.427141 0.876435 0.450731 0.866399 0.449489 0.869211 0.447456 0.878828 0.448367 0.861778 0.461251 0.86329 0.45579 0.869445 0.454182 0.919848 0.462088 0.9244 0.459418 0.936505 0.460001 0.932799 0.462552 0.914853 0.457033 0.912969 0.45878 0.983064 0.742705 0.970242 0.681277 0.978343 0.807461 0.961861 0.871181 0.925 0.920764 0.93957 0.629718 0.896636 0.591965 0.87816 0.953598 0.820182 0.969676 0.849136 0.56846 0.801508 0.561342 0.753635 0.961316 0.693916 0.922274 0.756457 0.570463 0.715065 0.59271 0.62759 0.729278 0.628526 0.797321 0.647916 0.672373 0.648988 0.865355 0.678001 0.627321 0.970524 0.680324 0.983346 0.741752 0.978626 0.806509 0.962143 0.870229 0.925282 0.919811 0.896919 0.591012 0.939853 0.628765 0.878442 0.952645 0.819304 0.969461 0.80179 0.560389 0.849419 0.567507 0.753465 0.960832 0.694447 0.921544 0.715348 0.591757 0.756739 0.569509 0.628808 0.796368 0.627873 0.728326 0.648199 0.671421 0.648584 0.866073 0.678283 0.626368 0.411737 0.936637 0.212659 0.665019 0.175067 0.711347 0.264355 0.628942 0.154113 0.763611 0.154483 0.81452 0.911051 0.461039 0.528987 0.594894 0.945951 0.460521 0.339791 0.607004 0.94197 0.46307 0.896594 0.462992 0.902819 0.462828 0.939147 0.46498 0.588358 0.917245 0.930869 0.464578 0.500784 0.908814 0.937502 0.466649 0.178893 0.855096 0.23388 0.878659 0.317203 0.888741 0.409219 0.897533 0.412456 0.865776 0.413517 0.832907 0.415303 0.797177 0.41903 0.758087 0.424284 0.717135 0.429773 0.675932 0.433166 0.635493 0.431719 0.596003 0.42845 0.560105 0.426262 0.535529 0.166927 0.932027 0.089131 0.90146 0.412839 0.954955 0.280654 0.94225 0.092604 0.643694 0.172265 0.583534 0.034269 0.783775 0.048602 0.713913 0.288973 0.53753 0.047197 0.849027 0.9297 0.466322 0.910929 0.462701 0.429574 0.516361 0.573602 0.514995 0.911763 0.464455 0.904647 0.46452 0.91245 0.466086 0.906026 0.466148 0.920833 0.464349 0.682918 0.980037 0.544365 0.975068 0.92089 0.466118 0.274953 0.94136 0.412382 0.948959 0.078614 0.893197 0.159929 0.926191 0.045546 0.712112 0.029763 0.775258 0.174568 0.589926 0.093871 0.647648 0.286715 0.542233 0.039682 0.837587 0.568016 0.514851 0.425296 0.517534 0.89967 0.464526 0.715649 0.536695 0.89649 0.46445 0.90127 0.466162 0.89793 0.466107 0.92457 0.397524 0.934172 0.397517 0.90196 0.397532 0.543555 0.96576 0.912366 0.397543 0.914428 0.398827 0.902477 0.39881 0.887934 0.397535 0.886084 0.398748 0.939158 0.397548 0.916553 0.401268 0.903345 0.401161 0.918892 0.404595 0.904419 0.40426 0.88377 0.401252 0.880927 0.404722 0.905294 0.428912 0.905488 0.424961 0.912357 0.424967 0.91334 0.429138 0.905906 0.421495 0.911087 0.422154 0.904076 0.437412 0.90478 0.43319 0.913199 0.433998 0.911884 0.43877 0.90321 0.444063 0.903361 0.441071 0.909872 0.442542 0.908067 0.444769 0.902496 0.453271 0.918142 0.453706 0.928783 0.450398 0.93573 0.445715 0.939896 0.439756 0.941415 0.433124 0.940295 0.426582 0.937084 0.420446 0.931618 0.414911 0.921769 0.409549 0.905101 0.407893 0.876573 0.40992 0.866307 0.415598 0.859425 0.421874 0.854503 0.429219 0.846009 0.439206 0.853866 0.435555 0.855666 0.44134 0.849189 0.44441 0.859693 0.44628 0.853635 0.449316 0.859396 0.453185 0.889827 0.45174 0.862926 0.421743 0.859205 0.428005 0.869662 0.416377 0.857993 0.434235 0.859086 0.440054 0.916008 0.412068 0.903601 0.410265 0.918257 0.418305 0.91053 0.415402 0.913091 0.413541 0.921836 0.416936 0.92534 0.416062 0.879532 0.412275 0.931494 0.42114 0.923547 0.422692 0.927682 0.421785 0.926515 0.428111 0.931209 0.427509 0.93512 0.42705 0.936295 0.433481 0.92732 0.434037 0.932331 0.433786 0.925669 0.439922 0.930432 0.440034 0.934525 0.439972 0.912845 0.451737 0.922595 0.449614 0.907361 0.448978 0.915126 0.447877 0.918684 0.448912 0.909842 0.450414 0.901128 0.451294 0.929882 0.445604 0.921412 0.444811 0.925747 0.445329 0.862632 0.44473 0.90791 0.418325 0.914417 0.420366 0.918293 0.424021 0.92059 0.42877 0.920879 0.434155 0.919487 0.439514 0.911345 0.446349 0.90499 0.446728 0.916084 0.443813 0.891421 0.410387 0.891335 0.407994 0.8923 0.404278 0.892667 0.401108 0.892803 0.398753 0.893101 0.397518 0.953337 0.401538 0.958091 0.405199 0.9475 0.399036 0.96186 0.409791 0.964499 0.415028 0.96612 0.420717 0.967305 0.426924 0.967388 0.433074 0.966427 0.438883 0.96451 0.444202 0.961861 0.44894 0.958944 0.453645 0.955428 0.457592 0.951844 0.460785 0.948132 0.463506 0.945008 0.465414 0.9428 0.466896 0.940897 0.39766 0.894646 0.464377 0.893748 0.464327 0.895819 0.465909 0.894732 0.465707 0.898046 0.468336 0.895591 0.467749 0.894211 0.467377 0.894053 0.470321 0.892528 0.469525 0.89702 0.472125 0.906461 0.46806 0.901761 0.468217 0.901883 0.471147 0.906501 0.470456 0.912592 0.467918 0.912253 0.470089 0.920682 0.467923 0.920674 0.470154 0.9293 0.468129 0.929876 0.470181 0.93702 0.468441 0.938213 0.470896 0.942275 0.468514 0.942757 0.470744 0.890006 0.4495 0.852976 0.399065 0.859393 0.397599 0.847065 0.401675 0.84127 0.405026 0.953466 0.401386 0.958188 0.405089 0.947588 0.398916 0.961862 0.409747 0.964391 0.415022 0.965926 0.420729 0.967068 0.426923 0.967242 0.433135 0.966314 0.439008 0.964406 0.444378 0.961584 0.44912 0.958267 0.453722 0.954279 0.457569 0.865611 0.460368 0.870463 0.459645 0.869977 0.459728 0.865391 0.460791 0.875883 0.460032 0.875386 0.460071 0.889107 0.462568 0.889055 0.46259 0.836433 0.409343 0.829542 0.419704 0.832578 0.41403 0.832317 0.414141 0.82924 0.419624 0.86181 0.461905 0.861843 0.46256 0.95053 0.46075 0.946775 0.4634 0.943577 0.465237 0.941527 0.466697 0.893773 0.464335 0.893798 0.464342 0.894526 0.465626 0.894385 0.465571 0.940912 0.397604 0.893807 0.467247 0.893563 0.467166 0.891985 0.469369 0.891535 0.469419 0.940364 0.468392 0.940762 0.470517 0.866236 0.398834 0.873711 0.398813 0.877506 0.397514 0.870971 0.397493 0.865522 0.397455 0.860032 0.398872 0.856026 0.399014 0.861954 0.397568 0.860159 0.397664 0.853853 0.399094 0.935431 0.404681 0.948546 0.405179 0.944496 0.401457 0.931632 0.401375 0.939488 0.398861 0.927974 0.398901 0.870657 0.401504 0.861966 0.401526 0.855096 0.4016 0.850751 0.405417 0.858121 0.405363 0.867731 0.405188 0.850561 0.401575 0.848094 0.401586 0.842791 0.404957 0.845766 0.405198 0.9455 0.398818 0.951158 0.401375 0.955535 0.405156 0.94295 0.41441 0.9536 0.414936 0.951437 0.40979 0.938847 0.409148 0.863906 0.410047 0.854469 0.410101 0.8468 0.410021 0.843291 0.414792 0.850618 0.415218 0.858112 0.415702 0.958875 0.409842 0.961147 0.415077 0.9551 0.420509 0.945887 0.42022 0.947818 0.426423 0.955942 0.426574 0.962495 0.420748 0.963347 0.426902 0.947179 0.438896 0.955415 0.438781 0.95627 0.432802 0.948355 0.432791 0.963455 0.433109 0.96255 0.43901 0.93973 0.449457 0.950281 0.449152 0.953464 0.44429 0.944309 0.444589 0.960647 0.444424 0.957836 0.449233 0.928866 0.456683 0.941589 0.457208 0.946319 0.453375 0.933669 0.453285 0.954103 0.453514 0.949874 0.457416 0.877353 0.455968 0.882269 0.458025 0.892317 0.457757 0.890577 0.455047 0.886684 0.460112 0.89423 0.460211 0.902677 0.460467 0.90267 0.458019 0.902808 0.455334 0.869597 0.456984 0.865825 0.458435 0.871446 0.458982 0.8752 0.458466 0.877063 0.46 0.880928 0.46006 0.889224 0.462652 0.890358 0.462714 0.892541 0.462593 0.841603 0.409572 0.838159 0.409243 0.834209 0.413908 0.837981 0.414182 0.839885 0.419736 0.846514 0.420792 0.834481 0.428371 0.838869 0.430451 0.84343 0.433385 0.852102 0.422532 0.830666 0.418987 0.834732 0.419195 0.827717 0.426976 0.830662 0.427303 0.875777 0.450429 0.878346 0.448288 0.868619 0.446935 0.865577 0.448677 0.860982 0.459109 0.863516 0.455972 0.868771 0.453598 0.919955 0.462087 0.933215 0.46265 0.936971 0.460171 0.92452 0.45941 0.915797 0.455832 0.913434 0.458571 0.911682 0.460937 0.945768 0.460575 0.941689 0.463136 0.897291 0.462545 0.903757 0.462585 0.930828 0.464538 0.938505 0.464915 0.929084 0.466249 0.936418 0.466469 0.911714 0.462545 0.904992 0.464496 0.91226 0.464434 0.906001 0.466171 0.912549 0.466198 0.920438 0.466178 0.920682 0.464371 0.899694 0.464496 0.896238 0.464476 0.897673 0.46607 0.901142 0.46612 0.933851 0.397545 0.924135 0.397565 0.901567 0.397461 0.902111 0.398787 0.913998 0.398826 0.911927 0.397463 0.885568 0.398789 0.887707 0.397486 0.939027 0.397536 0.902897 0.401138 0.916139 0.401275 0.904075 0.404332 0.918631 0.404656 0.883077 0.401373 0.880245 0.404983 0.905419 0.428922 0.912942 0.429219 0.912006 0.425106 0.905474 0.425025 0.910791 0.422281 0.905844 0.421559 0.904305 0.436885 0.911907 0.438227 0.913047 0.433844 0.905052 0.432984 0.903203 0.443238 0.908124 0.443775 0.909903 0.441649 0.903445 0.440313 0.90285 0.452456 0.918742 0.45246 0.929033 0.449192 0.935553 0.444785 0.939489 0.439171 0.940895 0.433027 0.939916 0.426757 0.936762 0.420698 0.931211 0.415109 0.90461 0.407951 0.921344 0.40965 0.876099 0.410269 0.865754 0.416146 0.858856 0.422274 0.85408 0.42925 0.845714 0.439016 0.8487 0.443676 0.855252 0.440105 0.853622 0.434905 0.852614 0.447663 0.858958 0.44511 0.858176 0.451853 0.889824 0.45148 0.858947 0.427844 0.863033 0.422095 0.869857 0.416948 0.858451 0.439034 0.857612 0.433475 0.903128 0.410252 0.915613 0.4122 0.910336 0.415321 0.91773 0.418674 0.921258 0.417307 0.91279 0.413538 0.924944 0.416332 0.879341 0.412694 0.930972 0.4215 0.922517 0.423241 0.926792 0.422268 0.92506 0.428584 0.929895 0.42793 0.93442 0.427304 0.935453 0.433435 0.925801 0.434263 0.930838 0.433902 0.924243 0.439743 0.929152 0.439726 0.933786 0.439455 0.922618 0.448568 0.913071 0.450609 0.91472 0.447235 0.9073 0.44856 0.909883 0.449686 0.918464 0.448158 0.90106 0.450464 0.929479 0.444749 0.920523 0.44435 0.924927 0.444695 0.861743 0.443993 0.907779 0.418347 0.914012 0.420577 0.917709 0.42432 0.919641 0.429082 0.919962 0.434273 0.918588 0.43924 0.904848 0.446138 0.911088 0.445577 0.915514 0.4432 0.890897 0.408138 0.891059 0.410492 0.89188 0.404459 0.892481 0.401195 0.892744 0.398811 0.892774 0.397499 0.852987 0.39915 0.859402 0.397672 0.847027 0.401638 0.84144 0.40503 0.836758 0.409301 0.826856 0.427241 0.893304 0.464316 0.894343 0.465793 0.894093 0.464377 0.895401 0.465971 0.893628 0.467665 0.890751 0.471053 0.897653 0.467915 0.895086 0.467874 0.893376 0.47055 0.896513 0.470318 0.906138 0.467954 0.901291 0.467913 0.900442 0.470186 0.905385 0.470181 0.912382 0.468058 0.911527 0.470316 0.918635 0.470453 0.91977 0.468076 0.926488 0.470872 0.927835 0.468189 0.935282 0.468257 0.935209 0.471328 0.877915 0.500707 0.878197 0.500625 0.878935 0.505269 0.878376 0.50543 0.87849 0.500327 0.879515 0.504678 0.878776 0.499827 0.880077 0.503685 0.879041 0.499148 0.880596 0.502336 0.879273 0.498323 0.88105 0.500691 0.879461 0.49739 0.881414 0.498833 0.879595 0.496393 0.881685 0.496848 0.879673 0.495381 0.881831 0.494834 0.879688 0.4944 0.881855 0.492886 0.879641 0.493495 0.881754 0.491093 0.879517 0.492692 0.881496 0.489502 0.879256 0.49199 0.880966 0.488128 0.878724 0.491679 0.879976 0.487255 0.880441 0.487544 0.878985 0.491764 0.880259 0.509816 0.879427 0.510054 0.881118 0.508941 0.881951 0.507469 0.882719 0.50547 0.883385 0.503037 0.883918 0.500283 0.884295 0.497337 0.884501 0.494341 0.884524 0.491438 0.884373 0.488781 0.883999 0.486461 0.88321 0.484429 0.882394 0.483424 0.882124 0.514208 0.881033 0.51452 0.883251 0.513061 0.884343 0.511133 0.885349 0.508513 0.886222 0.505324 0.886921 0.501715 0.887414 0.497854 0.887677 0.493924 0.887702 0.490113 0.887496 0.486645 0.88698 0.48361 0.885938 0.48091 0.884878 0.479558 0.884506 0.51838 0.88317 0.518762 0.885883 0.516979 0.887217 0.514621 0.888447 0.511419 0.889514 0.507521 0.890369 0.503109 0.890971 0.49839 0.891293 0.493586 0.89132 0.488919 0.891054 0.484665 0.890395 0.481066 0.88919 0.477958 0.887817 0.476052 0.887367 0.522273 0.885807 0.522719 0.888975 0.520637 0.890533 0.517885 0.891968 0.514147 0.893214 0.509596 0.894212 0.504446 0.894915 0.498938 0.895291 0.493329 0.895322 0.487882 0.895 0.482915 0.894205 0.478779 0.892842 0.475169 0.891068 0.473073 0.890668 0.525829 0.888906 0.526332 0.892483 0.523982 0.894241 0.520876 0.895861 0.516656 0.897267 0.51152 0.898394 0.505707 0.899187 0.499489 0.899612 0.493158 0.899646 0.487009 0.899286 0.481354 0.898411 0.476638 0.894359 0.528996 0.892421 0.529549 0.896354 0.526965 0.898288 0.52355 0.900069 0.518911 0.901615 0.513263 0.902854 0.506872 0.903726 0.500036 0.904193 0.493075 0.904231 0.486314 0.903834 0.4801 0.902975 0.47504 0.898388 0.531728 0.896302 0.532323 0.900534 0.529543 0.902614 0.525869 0.904531 0.520877 0.906194 0.514801 0.907527 0.507925 0.908466 0.50057 0.908967 0.493081 0.909009 0.485806 0.908572 0.479151 0.907654 0.473824 0.902694 0.533986 0.900491 0.534614 0.90496 0.531679 0.907157 0.527799 0.909181 0.522528 0.910937 0.516111 0.912345 0.50885 0.913336 0.501084 0.913866 0.493175 0.913909 0.485494 0.91346 0.478418 0.912585 0.472851 0.907215 0.535736 0.904927 0.536388 0.909569 0.53334 0.91185 0.529311 0.913952 0.523838 0.915776 0.517175 0.917237 0.509635 0.918266 0.50157 0.918854 0.493342 0.918947 0.485357 0.91844 0.478006 0.91787 0.471971 0.914263 0.537286 0.911914 0.537955 0.916678 0.534827 0.919019 0.530693 0.921175 0.525076 0.923047 0.518239 0.924546 0.510502 0.925585 0.502224 0.926227 0.493754 0.926493 0.485583 0.925762 0.478045 0.924764 0.471485 0.921403 0.537724 0.919062 0.538392 0.92381 0.535275 0.926142 0.531156 0.930338 0.525761 0.93162 0.519674 0.933283 0.512932 0.932692 0.502839 0.933977 0.494768 0.934333 0.486371 0.933206 0.478784 0.931863 0.472204 0.92611 0.537268 0.92382 0.53792 0.928464 0.534872 0.932388 0.530343 0.937335 0.506755 0.941235 0.498334 0.941521 0.487989 0.940371 0.480184 0.938481 0.473907 0.930691 0.536256 0.928485 0.536884 0.934789 0.533043 0.935078 0.534703 0.932989 0.535298 0.938368 0.532576 0.947164 0.489068 0.947066 0.497764 0.946239 0.481893 0.944283 0.476284 0.939209 0.532632 0.937267 0.533185 0.941919 0.530982 0.950689 0.490156 0.950271 0.497772 0.95034 0.48345 0.948203 0.478162 0.943023 0.530074 0.941256 0.530577 0.945589 0.528338 0.95349 0.491089 0.952472 0.498024 0.953154 0.485389 0.951415 0.480527 0.946464 0.527065 0.944898 0.52751 0.948879 0.525086 0.955336 0.498108 0.955494 0.49227 0.955142 0.488211 0.954263 0.484425 0.949389 0.475505 0.954052 0.482326 0.94757 0.475109 0.945693 0.473082 0.943613 0.471998 0.950577 0.521636 0.949187 0.522238 0.951775 0.520708 0.950886 0.519379 0.952605 0.518141 0.95447 0.515316 0.952742 0.516616 0.878125 0.495997 0.943537 0.514246 0.944979 0.511457 0.945299 0.511731 0.944004 0.514141 0.946866 0.510467 0.945612 0.512005 0.946775 0.509925 0.944125 0.524447 0.943125 0.523168 0.943363 0.52176 0.944265 0.522893 0.943213 0.51865 0.9436 0.520352 0.942839 0.519741 0.942465 0.520831 0.942508 0.517563 0.943036 0.516979 0.944472 0.514036 0.943564 0.516394 0.946664 0.509365 0.948503 0.507957 0.948316 0.508687 0.949207 0.508705 0.948096 0.509397 0.949608 0.50791 0.950009 0.507096 0.951195 0.506751 0.950679 0.507606 0.951005 0.508659 0.950161 0.508443 0.951647 0.507843 0.952323 0.510866 0.951744 0.509448 0.952587 0.5089 0.953318 0.510638 0.952296 0.507042 0.953444 0.508317 0.954198 0.510416 0.954069 0.512878 0.953344 0.512779 0.95222 0.51488 0.952538 0.512757 0.952777 0.515115 0.953314 0.515413 0.952001 0.51802 0.951641 0.517475 0.949848 0.518868 0.951263 0.516984 0.950071 0.519673 0.950291 0.520481 0.948367 0.522605 0.94826 0.52146 0.946642 0.521256 0.948152 0.520315 0.946704 0.522693 0.946766 0.524131 0.94537 0.524785 0.945389 0.52319 0.944404 0.521338 0.945409 0.521595 0.948517 0.508521 0.947425 0.509189 0.946164 0.510225 0.943731 0.513771 0.942852 0.515989 0.942484 0.51808 0.944874 0.511783 0.950283 0.508511 0.949456 0.508269 0.942699 0.51973 0.943487 0.520694 0.951552 0.510694 0.95099 0.509314 0.944633 0.521012 0.946034 0.520645 0.951461 0.514432 0.951791 0.512457 0.947604 0.519694 0.949207 0.518265 0.95053 0.516413 0.954352 0.507334 0.955064 0.51004 0.953029 0.50566 0.954691 0.513093 0.953563 0.516187 0.942931 0.511155 0.945738 0.50837 0.941124 0.514785 0.948237 0.525023 0.946042 0.527051 0.950358 0.522206 0.940778 0.525984 0.939919 0.523165 0.942236 0.527579 0.940031 0.519157 0.94836 0.506655 0.95038 0.505668 0.951792 0.505283 0.952106 0.519194 0.94408 0.527997 0.955136 0.505085 0.955458 0.508799 0.953996 0.503048 0.954947 0.51289 0.953571 0.516724 0.940392 0.509704 0.943959 0.505926 0.937487 0.514053 0.946965 0.527152 0.943743 0.529685 0.949863 0.52392 0.936263 0.528363 0.934831 0.524989 0.938515 0.530358 0.93544 0.520327 0.947235 0.504116 0.949823 0.503295 0.952034 0.502955 0.951882 0.52041 0.941028 0.53079 0.956255 0.501869 0.956376 0.507194 0.955436 0.512282 0.95378 0.516679 0.954272 0.512902 0.953969 0.514386 0.955477 0.513065 0.955509 0.511632 0.956562 0.510151 0.957541 0.50583 0.957528 0.506237 0.957401 0.500104 0.957323 0.498901 0.956684 0.496896 0.956413 0.492938 0.956425 0.492794 0.955922 0.48933 0.955605 0.489791 0.952251 0.480529 0.95403 0.483685 0.955302 0.484788 0.955335 0.486204 0.955539 0.486154 0.954877 0.485325 0.956687 0.508947 0.956754 0.495687 0.955045 0.487387 0.877848 0.505182 0.877652 0.500582 0.87737 0.504506 0.877412 0.500243 0.876974 0.503437 0.877218 0.499703 0.87668 0.502023 0.877063 0.498994 0.876501 0.50033 0.876979 0.498142 0.876446 0.498438 0.87696 0.497191 0.876522 0.496436 0.877006 0.496186 0.876728 0.49442 0.877115 0.495174 0.877054 0.492488 0.877281 0.494204 0.877479 0.49073 0.877498 0.49332 0.877999 0.489197 0.877767 0.492546 0.878719 0.487808 0.878144 0.491879 0.879235 0.487423 0.878402 0.491725 0.878643 0.509686 0.877934 0.508686 0.877348 0.507101 0.876912 0.505005 0.876647 0.502497 0.876565 0.499694 0.876669 0.496727 0.876956 0.493734 0.877416 0.490859 0.878045 0.488251 0.878803 0.485988 0.879891 0.48389 0.880652 0.483253 0.880004 0.514038 0.879075 0.512727 0.878307 0.510649 0.877736 0.507903 0.877388 0.504616 0.87728 0.500942 0.877417 0.497054 0.877793 0.493132 0.878389 0.48936 0.879214 0.485947 0.880199 0.482989 0.881623 0.480314 0.882641 0.479405 0.881911 0.518172 0.880775 0.516569 0.879836 0.51403 0.879138 0.510673 0.878713 0.506655 0.878582 0.502165 0.878749 0.497412 0.879208 0.492618 0.879955 0.488021 0.881001 0.483899 0.88231 0.480367 0.883909 0.47731 0.885135 0.475926 0.884336 0.52203 0.883011 0.520159 0.881915 0.517195 0.8811 0.513276 0.880604 0.508586 0.88045 0.503344 0.880646 0.497795 0.881181 0.492199 0.882059 0.48684 0.883257 0.482017 0.884772 0.477872 0.886828 0.474331 0.888116 0.472377 0.887245 0.525554 0.885749 0.523442 0.884512 0.520096 0.883592 0.515673 0.883032 0.510379 0.882858 0.504462 0.883079 0.498199 0.883683 0.491882 0.884656 0.485819 0.885976 0.480334 0.887771 0.475644 0.888962 0.472096 0.890594 0.528694 0.888949 0.526372 0.887589 0.522693 0.886578 0.51783 0.885962 0.512009 0.885771 0.505504 0.886014 0.498617 0.886678 0.491672 0.887734 0.484992 0.889161 0.478945 0.891005 0.474124 0.894335 0.531403 0.892565 0.528905 0.891102 0.524947 0.890014 0.519714 0.889351 0.513452 0.889146 0.506453 0.889407 0.499043 0.890122 0.491571 0.891258 0.484384 0.892815 0.477978 0.894695 0.473363 0.898413 0.533643 0.896544 0.531004 0.894999 0.526825 0.89385 0.5213 0.893151 0.514687 0.892934 0.507295 0.893209 0.499472 0.893965 0.491581 0.895164 0.483992 0.89686 0.477387 0.898865 0.473076 0.902769 0.53538 0.900829 0.53264 0.899224 0.5283 0.898031 0.522562 0.897305 0.515695 0.897079 0.50802 0.897366 0.499895 0.89815 0.491701 0.899396 0.483821 0.901449 0.477074 0.903819 0.472976 0.909699 0.53692 0.907707 0.534109 0.906061 0.529655 0.904836 0.523767 0.904091 0.516721 0.90386 0.508844 0.904153 0.500507 0.904958 0.492099 0.906237 0.484012 0.908008 0.477129 0.910034 0.473198 0.916854 0.53736 0.91487 0.534559 0.91323 0.530122 0.914164 0.524465 0.913164 0.518196 0.913437 0.51134 0.91133 0.50108 0.912131 0.492703 0.913405 0.484646 0.91513 0.47783 0.916994 0.473623 0.92166 0.536911 0.919719 0.534172 0.91917 0.529284 0.917172 0.505296 0.919838 0.496406 0.920904 0.486229 0.92238 0.479225 0.924263 0.474614 0.926405 0.535913 0.924828 0.532245 0.931019 0.534378 0.929686 0.53188 0.92797 0.487724 0.927599 0.495894 0.929366 0.480734 0.931925 0.475167 0.935435 0.53233 0.934387 0.530379 0.933232 0.488977 0.932764 0.496065 0.934736 0.482159 0.937602 0.476887 0.93959 0.529799 0.938848 0.527798 0.937731 0.490249 0.936964 0.496523 0.939215 0.484123 0.942421 0.479379 0.943421 0.526821 0.942722 0.524593 0.94207 0.497013 0.942329 0.491435 0.943599 0.487511 0.946933 0.482758 0.949756 0.480976 0.945342 0.476815 0.940652 0.473783 0.947564 0.521395 0.9466 0.520277 0.951324 0.514898 0.949518 0.517928 0.928377 0.510114 0.926885 0.51291 0.927854 0.512845 0.929178 0.51043 0.92998 0.510746 0.931406 0.509225 0.930823 0.508639 0.92835 0.521984 0.930534 0.523359 0.930891 0.521821 0.928964 0.520607 0.929579 0.519229 0.928441 0.517467 0.927597 0.51852 0.926179 0.516255 0.926753 0.519573 0.927195 0.51571 0.928211 0.515165 0.928823 0.512781 0.932374 0.506682 0.930239 0.508053 0.932657 0.507439 0.93294 0.508196 0.934517 0.507536 0.93451 0.506707 0.936567 0.505592 0.934502 0.505878 0.936317 0.506456 0.936067 0.50732 0.937546 0.507578 0.93807 0.506748 0.938901 0.508422 0.940036 0.50988 0.941088 0.509726 0.939772 0.507879 0.940713 0.507314 0.938594 0.505926 0.942911 0.511998 0.942269 0.509491 0.941755 0.511888 0.940774 0.511818 0.940867 0.513981 0.941724 0.514237 0.941696 0.517149 0.942674 0.514592 0.940898 0.516619 0.940099 0.51609 0.938667 0.517973 0.939267 0.518807 0.937547 0.521739 0.939868 0.519641 0.937153 0.52057 0.936759 0.519402 0.934851 0.520311 0.935057 0.52176 0.932933 0.523788 0.935263 0.523209 0.932985 0.522196 0.933038 0.520604 0.931248 0.520284 0.932573 0.508007 0.934161 0.507367 0.930964 0.509008 0.927841 0.514787 0.928411 0.512543 0.928106 0.516928 0.929515 0.510546 0.935671 0.507169 0.937081 0.507438 0.929093 0.51864 0.93071 0.519671 0.938351 0.508298 0.9394 0.509723 0.932552 0.520045 0.934434 0.519715 0.940079 0.511519 0.940113 0.513519 0.936336 0.518792 0.938116 0.517377 0.939405 0.515521 0.943638 0.508965 0.941943 0.506311 0.939071 0.504531 0.94388 0.51543 0.944335 0.512165 0.927944 0.506963 0.925069 0.509715 0.923231 0.513349 0.935271 0.526189 0.938229 0.524222 0.940839 0.521447 0.923484 0.521848 0.925731 0.524779 0.928789 0.526502 0.922597 0.517761 0.93396 0.504385 0.931029 0.505302 0.936534 0.504088 0.942769 0.518413 0.932116 0.527039 0.945351 0.507568 0.943089 0.503744 0.939896 0.502018 0.945354 0.516015 0.946118 0.511811 0.925289 0.504712 0.920962 0.50815 0.918385 0.51252 0.934537 0.528948 0.938552 0.526478 0.941809 0.523283 0.918305 0.523665 0.921702 0.527196 0.925959 0.529352 0.917212 0.518867 0.933078 0.501722 0.929349 0.502508 0.936447 0.501609 0.943896 0.519878 0.930309 0.529931 0.948005 0.505607 0.944871 0.499392 0.947806 0.516062 0.9491 0.511191 0.953215 0.511264 0.952698 0.512701 0.951135 0.50884 0.950868 0.504414 0.946032 0.497811 0.946155 0.49879 0.9504 0.504692 0.944108 0.496015 0.944681 0.492183 0.945966 0.489086 0.945497 0.488606 0.944291 0.491984 0.951345 0.48426 0.948386 0.485293 0.952907 0.485943 0.952013 0.507755 0.944606 0.494766 0.94856 0.486751 0.889967 0.448966 0.879572 0.4873 0.878531 0.491695 0.881189 0.483034 0.883359 0.479059 0.88597 0.475436 0.826451 0.427416 0.889758 0.472115 0.881748 0.482959 0.884054 0.478968 0.886811 0.475429 0.942835 0.472365 0.877975 0.397658 0.883515 0.397651 0.873951 0.397664 0.870831 0.397671 0.867889 0.397674 0.918562 0.397639 0.925482 0.397634 0.901603 0.397646 0.909465 0.397642 0.891034 0.397645 0.929288 0.397637 0.894812 0.397645 0.931273 0.397662 0.86549 0.397668 0.931235 0.397655 0.882529 0.39765 0.877003 0.397658 0.871595 0.397671 0.868659 0.397671 0.868707 0.397667 0.925845 0.397644 0.918784 0.397657 0.909614 0.397666 0.901249 0.39767 0.890498 0.397656 0.92961 0.397643 0.894099 0.397656 0.867711 0.397671 0.900103 0.397679 0.595916 0.679782 0.593633 0.724091 0.587548 0.772055 0.579229 0.819401 0.570764 0.860428 0.56898 0.893979 0.055194 0.327681 0.056512 0.244825 0.056323 0.176259 0.056343 0.11532 0.057144 0.041836 0.468306 0.320445 0.459246 0.232082 0.470583 0.402538 0.456894 0.171519 0.044392 0.51728 0.04804 0.442488 0.039555 0.560029 0.472222 0.467543 0.655545 0.572596 0.685594 0.967391 0.590033 0.92387 0.595756 0.680499 0.590769 0.76975 0.682275 0.551691 0.647404 0.965201 0.571758 0.851938 0.600135 0.64164 0.623018 0.605621 0.617347 0.944413 0.720327 0.535205</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<polylist xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" material=\"blinn3SG\" count=\"2144\">\r\n\t\t\t\t\t<vcount xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3</vcount>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">89 0 23 243 1 26 90 2 28 6 3 29 91 4 30 243 1 26 89 0 23 5 5 31 92 6 33 244 7 35 91 4 30 5 5 31 299 8 36 244 7 35 92 6 33 218 9 37 7 10 39 95 11 41 93 12 42 8 13 57 93 12 42 95 11 41 94 14 61 9 15 62 96 16 65 245 17 66 89 0 23 6 3 29 89 0 23 245 17 66 97 18 67 5 5 31 97 18 67 245 17 66 98 19 68 11 20 69 98 19 68 245 17 66 96 16 65 10 21 70 97 18 67 246 22 71 92 6 33 5 5 31 92 6 33 246 22 71 300 23 72 218 9 37 300 23 72 246 22 71 99 24 84 219 25 85 99 24 84 246 22 71 97 18 67 11 20 69 12 26 86 247 27 89 93 12 42 9 15 62 93 12 42 247 27 89 100 28 90 8 13 57 13 29 135 102 30 137 101 31 138 14 32 139 101 31 138 102 30 137 7 10 39 8 13 57 103 33 140 248 34 141 98 19 68 10 21 70 98 19 68 248 34 141 104 35 142 11 20 69 104 35 142 248 34 141 105 36 200 16 37 246 105 36 200 248 34 141 103 33 140 15 38 249 100 28 90 107 39 252 101 31 138 8 13 57 101 31 138 107 39 252 106 40 253 14 32 139 108 41 254 109 42 256 13 29 135 14 32 139 18 43 259 109 42 256 108 41 254 17 44 260 106 40 253 111 45 262 108 41 254 14 32 139 108 41 254 111 45 262 110 46 265 17 44 260 20 47 266 112 48 283 113 49 285 19 50 286 113 49 285 112 48 283 18 43 259 17 44 260 110 46 265 115 51 289 113 49 285 17 44 260 113 49 285 115 51 289 114 52 290 19 50 286 22 53 291 116 54 292 117 55 293 21 56 294 117 55 293 116 54 292 20 47 266 19 50 286 114 52 290 119 57 295 117 55 293 19 50 286 117 55 293 119 57 295 118 58 296 21 56 294 23 59 297 249 60 298 120 61 300 24 62 303 120 61 300 249 60 298 22 53 291 21 56 294 118 58 296 122 63 304 120 61 300 21 56 294 120 61 300 122 63 304 121 64 884 24 62 303 26 65 885 339 66 886 340 67 887 123 68 888 123 68 888 340 67 887 341 69 889 28 70 890 341 69 889 340 67 887 124 71 891 27 72 892 124 71 891 340 67 887 339 66 886 25 73 893 125 74 894 250 75 895 307 76 896 29 77 897 307 76 896 250 75 895 126 78 898 227 79 899 126 78 898 250 75 895 123 68 888 28 70 890 123 68 888 250 75 895 125 74 894 26 65 885 126 78 898 127 80 900 45 81 901 227 79 899 126 78 898 28 70 890 30 82 902 127 80 900 128 83 0 251 84 1 308 85 2 31 86 3 308 85 74 251 84 75 129 87 76 228 88 77 129 87 76 251 84 75 130 89 78 33 90 79 130 89 4 251 84 1 128 83 0 32 91 12 131 92 13 252 93 14 309 94 15 34 95 16 309 94 15 252 93 14 128 83 0 31 86 3 128 83 0 252 93 14 132 96 17 32 91 12 132 96 17 252 93 14 131 92 13 35 97 18 133 98 82 253 99 83 132 96 17 35 97 18 132 96 17 253 99 83 134 100 91 32 91 12 134 100 91 253 99 83 156 101 92 36 102 93 156 101 92 253 99 83 133 98 82 38 103 94 135 104 96 254 105 97 136 106 98 39 107 101 136 106 98 254 105 97 137 108 102 37 109 105 137 108 102 254 105 97 133 98 82 35 97 18 133 98 82 254 105 97 135 104 96 38 103 94 104 35 142 255 110 903 99 24 84 11 20 69 99 24 84 255 110 903 310 111 904 219 25 85 310 111 904 255 110 903 138 112 905 1978 113 906 138 112 905 255 110 903 104 35 142 16 37 246 204 114 5 285 115 6 139 116 7 59 117 8 139 116 7 285 115 6 203 118 9 57 119 10 105 36 200 256 120 907 140 121 908 16 37 246 140 121 908 256 120 907 135 104 909 39 107 910 135 104 909 256 120 907 141 122 911 38 103 912 141 122 911 256 120 907 105 36 200 15 38 249 138 112 905 257 123 913 142 124 914 1978 113 906 142 124 914 257 123 913 154 125 915 229 126 916 154 125 915 257 123 913 140 121 908 39 107 910 140 121 908 257 123 913 138 112 905 16 37 246 143 127 11 284 128 19 202 129 20 60 130 21 203 118 9 284 128 19 143 127 11 57 119 10 144 131 917 56 132 918 2065 133 919 2066 134 920 311 135 921 258 136 922 125 74 894 29 77 897 125 74 894 258 136 922 145 137 923 26 65 885 145 137 80 258 136 81 146 138 95 40 139 99 146 138 95 258 136 81 311 135 100 41 140 103 43 141 924 147 142 925 148 143 926 42 144 927 148 143 926 147 142 925 23 59 297 24 62 303 149 145 928 259 146 929 124 71 891 25 73 893 124 71 891 259 146 929 150 147 976 27 72 892 150 147 976 259 146 929 147 142 925 43 141 924 147 142 925 259 146 929 149 145 928 23 59 297 121 64 884 152 148 978 148 143 926 24 62 303 148 143 926 152 148 978 151 149 980 42 144 927 231 150 981 30 82 902 28 70 890 341 69 889 231 150 981 341 69 889 27 72 892 44 151 982 153 152 104 260 153 106 129 87 76 33 90 79 129 87 76 260 153 106 312 154 107 228 88 77 312 154 107 260 153 106 146 138 95 41 140 103 146 138 95 260 153 106 153 152 104 40 139 99 154 125 110 261 155 111 313 156 112 229 126 113 313 156 112 261 155 111 155 157 114 230 158 115 155 157 114 261 155 111 136 106 98 37 109 105 136 106 98 261 155 111 154 125 110 39 107 101 153 152 104 262 159 108 181 160 109 40 139 99 181 160 116 262 159 117 134 100 91 36 102 93 134 100 91 262 159 117 130 89 4 32 91 12 130 89 78 262 159 108 153 152 104 33 90 79 137 108 102 263 161 118 155 157 114 37 109 105 155 157 114 263 161 118 314 162 119 230 158 115 314 162 119 263 161 118 131 92 13 34 95 16 131 92 13 263 161 118 137 108 102 35 97 18 151 149 980 241 163 983 157 164 985 42 144 927 157 164 985 241 163 983 242 165 987 83 166 1012 159 167 1013 264 168 1016 160 169 1017 44 151 982 160 169 1017 264 168 1016 239 170 1018 81 171 1019 239 170 1018 264 168 1016 238 172 1020 82 173 1023 238 172 1020 264 168 1016 159 167 1013 43 141 924 82 173 1023 238 172 1020 157 164 985 83 166 1012 157 164 985 238 172 1020 43 141 924 42 144 927 160 169 1017 265 174 1036 231 150 981 44 151 982 231 150 981 265 174 1036 232 175 1038 30 82 902 232 175 1038 265 174 1036 237 176 1039 80 177 1040 237 176 1039 265 174 1036 160 169 1017 81 171 1019 94 14 61 163 178 1041 164 179 1042 9 15 62 165 180 1043 266 181 1045 166 182 1046 46 183 1047 166 182 1046 266 181 1045 163 178 1041 94 14 61 90 2 28 288 184 1048 207 185 1049 6 3 29 164 179 1042 167 186 1050 12 26 86 9 15 62 166 182 1046 267 187 1051 168 188 1052 46 183 1047 168 188 1052 267 187 1051 169 189 1053 47 190 1054 169 189 1053 267 187 1051 95 11 41 7 10 39 95 11 41 267 187 1051 166 182 1046 94 14 61 207 185 1049 287 191 1055 96 16 65 6 3 29 96 16 65 287 191 1055 206 192 1056 10 21 70 170 193 22 268 194 2246 171 195 24 63 196 25 171 195 24 268 194 2246 172 197 2247 58 198 27 172 197 1057 268 194 1058 173 199 1059 64 200 1060 173 199 1059 268 194 1058 170 193 1061 62 201 1062 172 197 2247 269 202 2248 174 203 32 58 198 27 174 203 32 269 202 2248 175 204 2249 61 205 34 175 204 1063 269 202 1064 176 206 1065 65 207 1066 176 206 1065 269 202 1064 172 197 1057 64 200 1060 175 204 2249 270 208 2250 177 209 38 61 205 34 177 209 38 270 208 2250 178 210 2251 66 211 40 178 210 1067 270 208 1068 179 212 1069 67 213 1070 179 212 1069 270 208 1068 175 204 1063 65 207 1066 180 214 1071 271 215 1072 149 145 928 25 73 893 149 145 928 271 215 1072 249 60 298 23 59 297 249 60 298 271 215 1072 48 216 1073 22 53 291 150 147 976 159 167 1013 44 151 982 27 72 892 159 167 1013 150 147 976 43 141 924 48 216 1073 272 217 1074 116 54 292 22 53 291 116 54 292 272 217 1074 49 218 1075 20 47 266 49 218 1075 273 219 1076 112 48 283 20 47 266 112 48 283 273 219 1076 50 220 1077 18 43 259 50 220 1077 274 221 1078 109 42 256 18 43 259 109 42 256 274 221 1078 51 222 1079 13 29 135 169 189 1053 275 223 1080 52 224 1081 47 190 1054 51 222 1079 275 223 1080 102 30 137 13 29 135 102 30 137 275 223 1080 169 189 1053 7 10 39 206 192 1056 286 225 1082 103 33 140 10 21 70 103 33 140 286 225 1082 53 226 1083 15 38 249 53 226 1083 276 227 1084 141 122 911 15 38 249 141 122 911 276 227 1084 54 228 1085 38 103 912 156 101 1086 277 229 1087 55 230 1088 36 102 1089 54 228 1085 277 229 1087 156 101 1086 38 103 912 55 230 1088 182 231 1090 181 160 1091 36 102 1089 181 160 1091 182 231 1090 56 132 918 40 139 1092 202 129 20 283 232 43 183 233 44 60 130 21 201 234 45 68 235 46 183 233 44 283 232 43 56 132 918 144 131 917 145 137 923 40 139 1092 144 131 917 321 236 1093 339 66 886 26 65 885 145 137 923 276 227 1084 2069 237 1094 2070 238 1095 54 228 1085 290 239 47 208 240 48 184 241 49 278 242 50 210 243 51 290 239 47 278 242 50 185 244 52 2068 245 1096 2069 237 1094 276 227 1084 53 226 1083 277 229 1087 2071 246 1097 2073 247 1098 55 230 1088 289 248 53 209 249 54 186 250 55 279 251 56 208 240 48 289 248 53 279 251 56 184 241 49 2070 238 1095 2071 246 1097 277 229 1087 54 228 1085 275 223 1080 2075 252 1099 2076 253 1100 52 224 1081 294 254 2265 212 255 58 2053 256 59 280 257 60 214 258 1101 294 254 1102 280 257 1103 187 259 1104 2074 260 1105 2075 252 1099 275 223 1080 51 222 1079 286 225 1082 2072 261 1106 2068 245 1096 53 226 1083 292 262 63 210 243 51 185 244 52 2052 263 64 274 221 1078 2078 264 1107 2074 260 1105 51 222 1079 293 265 1108 214 258 1101 187 259 1104 2055 266 1109 213 267 1110 293 265 1108 2055 266 1109 188 268 1111 2079 269 1112 2078 264 1107 274 221 1078 50 220 1077 273 219 1076 2080 270 1113 2079 269 1112 50 220 1077 295 271 1114 213 267 1110 188 268 1111 2056 272 1115 215 273 1116 295 271 1114 2056 272 1115 189 274 1117 2081 275 1118 2080 270 1113 273 219 1076 49 218 1075 271 215 1072 2084 276 1119 2085 277 1120 48 216 1073 297 278 1121 216 279 1122 190 280 1123 281 281 1124 217 282 87 297 278 73 281 281 2271 191 283 88 2083 284 1125 2084 276 1119 271 215 1072 180 214 1071 272 217 1074 2082 285 1126 2081 275 1118 49 218 1075 296 286 1127 215 273 1116 189 274 1117 2057 287 1128 216 279 1122 296 286 1127 2057 287 1128 190 280 1123 2085 277 1120 2082 285 1126 272 217 1074 48 216 1073 182 231 1090 2064 288 1129 2065 133 919 56 132 918 291 289 120 211 290 121 2051 291 122 2050 292 123 209 249 54 291 289 120 2050 292 123 186 250 55 2073 247 1098 2064 288 1129 182 231 1090 55 230 1088 211 290 121 298 293 124 282 294 125 2051 291 122 298 293 124 323 295 126 322 296 127 282 294 125 70 297 128 192 298 129 139 116 7 57 119 10 59 117 8 139 116 7 192 298 129 71 299 130 69 300 131 193 301 132 143 127 11 60 130 21 70 297 128 57 119 10 143 127 11 193 301 132 73 302 133 194 303 134 170 193 22 63 196 25 62 201 1062 170 193 1061 194 303 1130 74 304 1131 59 117 8 71 299 130 205 305 136 204 114 5 62 201 1062 74 304 1131 195 306 1132 173 199 1059 64 200 1060 173 199 1059 195 306 1132 75 307 1133 64 200 1060 75 307 1133 196 308 1134 176 206 1065 65 207 1066 176 206 1065 196 308 1134 76 309 1135 77 310 1136 197 311 1137 178 210 1067 67 213 1070 66 211 40 178 210 2251 197 311 2267 78 312 143 65 207 1066 76 309 1135 198 313 1138 179 212 1069 77 310 1136 67 213 1070 179 212 1069 198 313 1138 72 314 201 199 315 202 183 233 44 68 235 46 69 300 131 60 130 21 183 233 44 199 315 202 200 316 203 72 314 201 68 235 46 201 234 45 338 317 204 200 316 203 201 234 45 337 318 205 338 317 204 337 318 205 66 211 40 78 312 143 283 232 43 336 319 206 337 318 205 201 234 45 177 209 38 336 319 206 335 320 207 61 205 34 284 128 19 334 321 208 335 320 207 202 129 20 174 203 32 334 321 208 333 322 209 58 198 27 285 115 6 332 323 210 333 322 209 203 118 9 171 195 24 332 323 210 331 324 232 63 196 25 331 324 232 204 114 5 205 305 136 330 325 233 331 324 232 330 325 233 73 302 133 63 196 25 329 326 234 292 262 63 2052 263 64 2054 327 235 2076 253 1100 2077 328 1139 328 329 1140 52 224 1081 52 224 1081 328 329 1140 327 330 1141 47 190 1054 287 191 1055 326 331 1142 327 330 1141 206 192 1056 168 188 1052 326 331 1142 325 332 1143 46 183 1047 288 184 1048 324 333 1144 325 332 1143 207 185 1049 193 301 132 289 248 53 208 240 48 70 297 128 209 249 54 289 248 53 193 301 132 69 300 131 210 243 51 292 262 63 205 305 136 71 299 130 208 240 48 290 239 47 192 298 129 70 297 128 192 298 129 290 239 47 210 243 51 71 299 130 199 315 202 291 289 120 209 249 54 69 300 131 211 290 121 291 289 120 199 315 202 72 314 201 292 262 63 329 326 234 330 325 233 205 305 136 2053 256 59 212 255 58 329 326 234 2054 327 235 195 306 1132 293 265 1108 213 267 1110 75 307 1133 214 258 1101 293 265 1108 195 306 1132 74 304 1131 212 255 58 294 254 2265 194 303 134 73 302 133 194 303 1130 294 254 1102 214 258 1101 74 304 1131 213 267 1110 295 271 1114 196 308 1134 75 307 1133 196 308 1134 295 271 1114 215 273 1116 76 309 1135 215 273 1116 296 286 1127 198 313 1138 76 309 1135 198 313 1138 296 286 1127 216 279 1122 77 310 1136 323 295 126 217 282 87 191 283 88 322 296 127 217 282 87 323 295 126 338 317 204 78 312 143 216 279 1122 297 278 1121 197 311 1137 77 310 1136 197 311 2267 297 278 73 217 282 87 78 312 143 200 316 203 298 293 124 211 290 121 72 314 201 247 27 89 301 334 1145 220 335 1146 100 28 90 221 336 1147 301 334 1145 247 27 89 12 26 86 107 39 252 302 337 1148 222 338 1149 106 40 253 220 335 1146 302 337 1148 107 39 252 100 28 90 111 45 262 303 339 1150 223 340 1151 110 46 265 222 338 1149 303 339 1150 111 45 262 106 40 253 115 51 289 304 341 1152 224 342 1153 114 52 290 223 340 1151 304 341 1152 115 51 289 110 46 265 119 57 295 305 343 1154 225 344 1155 118 58 296 224 342 1153 305 343 1154 119 57 295 114 52 290 122 63 304 306 345 1156 226 346 1157 121 64 884 225 344 1155 306 345 1156 122 63 304 118 58 296 152 148 978 346 347 1158 345 348 1159 151 149 980 152 148 978 121 64 884 226 346 1157 346 347 1158 241 163 983 344 349 1160 343 350 1161 242 165 987 241 163 983 151 149 980 345 348 1159 344 349 1160 167 186 1050 315 351 1162 221 336 1147 12 26 86 232 175 1038 316 352 1163 127 80 900 30 82 902 127 80 900 316 352 1163 162 353 1164 45 81 901 162 353 1164 316 352 1163 235 354 1165 79 355 1166 235 354 1165 316 352 1163 232 175 1038 80 177 1040 234 356 1167 317 357 1168 235 354 1165 80 177 1040 235 354 1165 317 357 1168 233 358 1169 79 355 1166 233 358 1169 317 357 1168 87 359 1170 3 360 1171 87 359 1170 317 357 1168 234 356 1167 2 361 1172 236 362 1173 318 363 1174 237 176 1039 81 171 1019 237 176 1039 318 363 1174 234 356 1167 80 177 1040 234 356 1167 318 363 1174 86 364 1175 2 361 1172 86 364 1175 318 363 1174 236 362 1173 1 365 1176 239 170 1018 319 366 1177 236 362 1173 81 171 1019 236 362 1173 319 366 1177 85 367 1178 1 365 1176 85 367 1178 319 366 1177 161 368 1179 0 369 1180 161 368 1179 319 366 1177 239 170 1018 82 173 1023 0 369 1180 161 368 1179 240 370 1181 4 371 1182 240 370 1181 161 368 1179 82 173 1023 83 166 1012 242 165 987 158 372 1183 240 370 1181 83 166 1012 240 370 1181 158 372 1183 84 373 1184 4 371 1182 343 350 1161 342 374 1185 158 372 1183 242 165 987 158 372 1183 342 374 1185 88 375 1186 84 373 1184 144 131 917 2066 134 920 2067 376 1187 321 236 1093 339 66 886 321 236 1093 180 214 1071 25 73 893 2067 376 1187 2083 284 1125 180 214 1071 321 236 1093 46 183 1047 325 332 1143 324 333 1144 165 180 1043 207 185 1049 325 332 1143 326 331 1142 287 191 1055 47 190 1054 327 330 1141 326 331 1142 168 188 1052 206 192 1056 327 330 1141 328 329 1140 286 225 1082 286 225 1082 328 329 1140 2077 328 1139 2072 261 1106 73 302 133 330 325 233 329 326 234 212 255 58 204 114 5 331 324 232 332 323 210 285 115 6 58 198 27 333 322 209 332 323 210 171 195 24 203 118 9 333 322 209 334 321 208 284 128 19 61 205 34 335 320 207 334 321 208 174 203 32 202 129 20 335 320 207 336 319 206 283 232 43 66 211 40 337 318 205 336 319 206 177 209 38 200 316 203 338 317 204 323 295 126 298 293 124 299 8 36 218 9 37 2022 377 1188 2017 378 1189 218 9 37 300 23 72 2021 379 1190 2022 377 1188 300 23 72 219 25 85 2023 380 1191 2021 379 1190 220 335 1146 301 334 1145 674 381 1192 592 382 1193 301 334 1145 221 336 1147 593 383 1194 674 381 1192 222 338 1149 302 337 1148 675 384 1195 594 385 1196 302 337 1148 220 335 1146 592 382 1193 675 384 1195 223 340 1151 303 339 1150 676 386 1197 595 387 1198 303 339 1150 222 338 1149 594 385 1196 676 386 1197 224 342 1153 304 341 1152 677 388 1199 596 389 1200 304 341 1152 223 340 1151 595 387 1198 677 388 1199 225 344 1155 305 343 1154 678 390 1201 597 391 1202 305 343 1154 224 342 1153 596 389 1200 678 390 1201 226 346 1157 306 345 1156 679 392 1203 598 393 1204 306 345 1156 225 344 1155 597 391 1202 679 392 1203 2036 394 1205 2037 395 1206 680 396 1207 599 397 1208 2037 395 1206 2038 398 1209 600 399 1210 680 396 1207 2038 398 1209 2039 400 1211 608 401 1212 600 399 1210 31 86 3 308 85 2 2019 402 144 2033 403 2261 602 404 148 681 405 149 2019 402 2264 2020 406 2259 34 95 16 309 94 15 2032 407 2262 2031 408 2252 309 94 15 31 86 3 2033 403 2261 2032 407 2262 219 25 85 310 111 904 2024 409 1213 2023 380 1191 684 410 1214 604 411 1215 2025 412 1216 2026 413 1217 2034 414 2258 2035 415 2260 685 416 158 605 417 159 2035 415 1218 2036 394 1205 599 397 1208 685 416 1219 345 348 1159 346 347 1158 1971 418 1220 1970 419 1221 346 347 1158 226 346 1157 598 393 1204 1971 418 1220 2020 406 2259 2016 420 2257 686 421 161 602 404 148 2016 420 2257 2034 414 2258 605 417 159 686 421 161 229 126 113 313 156 112 2028 422 2255 2027 423 2256 313 156 112 230 158 115 2029 424 2254 2028 422 2255 230 158 115 314 162 119 2030 425 2253 2029 424 2254 314 162 119 34 95 16 2031 408 2252 2030 425 2253 343 350 1161 344 349 1160 1969 426 1222 1968 427 1223 344 349 1160 345 348 1159 1970 419 1221 1969 426 1222 2039 400 1211 2040 428 1224 689 429 1225 608 401 1212 2040 428 1224 2041 430 1226 612 431 1227 689 429 1225 221 336 1147 315 351 1162 690 432 1228 593 383 1194 2041 430 1226 2042 433 1229 692 434 1230 612 431 1227 2042 433 1229 2043 435 1231 434 436 1232 692 434 1230 88 375 1186 342 374 1185 1967 437 1233 435 438 1234 342 374 1185 343 350 1161 1968 427 1223 1967 437 1233 436 439 1235 353 440 1236 437 441 1237 622 442 1238 438 443 1239 352 444 1240 436 439 1235 622 442 1238 439 445 1241 352 444 1240 438 443 1239 623 446 1242 440 447 1243 354 448 1244 439 445 1241 623 446 1242 355 449 1245 356 450 1246 441 451 1247 443 452 1248 441 451 1247 357 453 1249 442 454 1250 443 452 1248 444 455 1251 353 440 1236 436 439 1235 624 456 1252 436 439 1235 352 444 1240 445 457 1253 624 456 1252 445 457 1253 359 458 1254 446 459 1255 624 456 1252 446 459 1255 358 460 1256 444 455 1251 624 456 1252 445 457 1253 352 444 1240 439 445 1241 625 461 1257 439 445 1241 354 448 1244 447 462 1258 625 461 1257 447 462 1258 360 463 1259 448 464 1260 625 461 1257 448 464 1260 359 458 1254 445 457 1253 625 461 1257 361 465 1261 357 453 1249 441 451 1247 626 466 1262 441 451 1247 356 450 1246 449 467 1263 626 466 1262 362 468 1264 363 469 1265 450 470 1266 451 471 1267 450 470 1266 356 450 1246 355 449 1245 451 471 1267 452 472 1268 358 460 1256 446 459 1255 627 473 1269 446 459 1255 359 458 1254 453 474 1270 627 473 1269 453 474 1270 365 475 1271 454 476 1272 627 473 1269 454 476 1272 364 477 1273 452 472 1268 627 473 1269 449 467 1263 356 450 1246 450 470 1266 456 478 1274 450 470 1266 363 469 1265 455 479 1275 456 478 1274 457 480 1276 363 469 1265 362 468 1264 458 481 1277 367 482 1278 366 483 1279 457 480 1276 458 481 1277 455 479 1275 363 469 1265 457 480 1276 460 484 1280 457 480 1276 366 483 1279 459 485 1281 460 484 1280 369 486 1282 368 487 1283 462 488 1284 461 489 1285 462 488 1284 366 483 1279 367 482 1278 461 489 1285 459 485 1281 366 483 1279 462 488 1284 464 490 1286 462 488 1284 368 487 1283 463 491 1287 464 490 1286 371 492 1288 370 493 1289 466 494 1290 465 495 1291 466 494 1290 368 487 1283 369 486 1282 465 495 1291 463 491 1287 368 487 1283 466 494 1290 468 496 1292 466 494 1290 370 493 1289 467 497 1293 468 496 1292 372 498 1294 373 499 1295 469 500 1296 628 501 1297 469 500 1296 370 493 1289 371 492 1288 628 501 1297 467 497 1293 370 493 1289 469 500 1296 471 502 1298 469 500 1296 373 499 1295 470 503 1299 471 502 1298 375 504 1300 472 505 1301 1965 506 1302 1964 507 1303 472 505 1301 377 508 1304 1966 509 1305 1965 506 1302 1966 509 1305 376 510 1306 473 511 1307 1965 506 1302 473 511 1307 374 512 1308 1964 507 1303 1965 506 1302 474 513 1309 378 514 1310 475 515 1311 629 516 1312 475 515 1311 379 517 1313 476 518 1314 629 516 1312 476 518 1314 377 508 1304 472 505 1301 629 516 1312 472 505 1301 375 504 1300 474 513 1309 629 516 1312 476 518 1314 379 517 1313 399 519 1315 477 520 1316 476 518 1314 477 520 1316 380 521 1317 377 508 1304 478 522 162 381 523 163 479 524 164 630 525 165 479 524 174 382 526 175 480 527 176 630 525 177 480 527 176 384 528 178 481 529 179 630 525 177 481 529 166 383 530 167 478 522 162 630 525 165 482 531 168 385 532 169 483 533 170 631 534 171 483 533 170 381 523 163 478 522 162 631 534 171 478 522 162 383 530 167 484 535 172 631 534 171 484 535 172 386 536 173 482 531 168 631 534 171 485 537 180 386 536 173 484 535 172 632 538 181 484 535 172 383 530 167 486 539 182 632 538 181 486 539 182 387 540 183 511 541 184 632 538 181 511 541 184 390 542 185 485 537 180 632 538 181 487 543 186 391 544 187 488 545 188 633 546 189 488 545 188 388 547 190 489 548 191 633 546 189 489 548 191 386 536 173 485 537 180 633 546 189 485 537 180 390 542 185 487 543 186 633 546 189 453 474 1270 359 458 1254 448 464 1260 634 549 1318 448 464 1260 360 463 1259 490 550 1319 634 549 1318 490 550 1319 389 551 1320 491 552 1321 634 549 1318 491 552 1321 365 475 1271 453 474 1270 634 549 1318 575 553 236 405 554 237 492 555 238 659 556 239 492 555 238 403 557 240 574 558 241 659 556 239 454 476 1272 365 475 1271 493 559 1322 635 560 1323 493 559 1322 391 544 1324 487 543 1325 635 560 1323 487 543 1325 390 542 1326 494 561 1327 635 560 1323 494 561 1327 364 477 1273 454 476 1272 635 560 1323 491 552 1321 389 551 1320 495 562 1328 636 563 1329 495 562 1328 392 564 1330 508 565 1331 636 563 1329 508 565 1331 391 544 1324 493 559 1322 636 563 1329 493 559 1322 365 475 1271 491 552 1321 636 563 1329 496 566 242 406 567 243 573 568 244 658 569 245 574 558 241 403 557 240 496 566 242 658 569 245 651 570 1332 2087 571 1333 2088 572 1334 552 573 1335 497 574 1336 378 514 1310 474 513 1309 637 575 1337 474 513 1309 375 504 1300 498 576 1338 637 575 1337 498 576 211 394 577 212 499 578 213 637 575 214 499 578 213 395 579 215 497 574 216 637 575 214 397 580 1339 396 581 1340 501 582 1341 500 583 1342 501 582 1341 373 499 1295 372 498 1294 500 583 1342 502 584 1343 374 512 1308 473 511 1307 638 585 1344 473 511 1307 376 510 1306 503 586 1345 638 585 1344 503 586 1345 397 580 1339 500 583 1342 638 585 1344 500 583 1342 372 498 1294 502 584 1343 638 585 1344 470 503 1299 373 499 1295 501 582 1341 505 587 1346 501 582 1341 396 581 1340 504 588 1347 505 587 1346 609 589 1348 1966 509 1305 377 508 1304 380 521 1317 609 589 1348 398 590 1349 376 510 1306 1966 509 1305 506 591 217 384 528 178 480 527 176 639 592 218 480 527 176 382 526 175 507 593 219 639 592 218 507 593 219 395 579 215 499 578 213 639 592 218 499 578 213 394 577 212 506 591 217 639 592 218 508 565 192 392 564 193 509 594 194 640 595 195 509 594 194 400 596 196 510 597 197 640 595 195 510 597 197 388 547 190 488 545 188 640 595 195 488 545 188 391 544 187 508 565 192 640 595 195 506 591 217 394 577 212 538 598 226 641 599 227 538 598 198 387 540 183 486 539 182 641 599 199 486 539 182 383 530 167 481 529 166 641 599 199 481 529 179 384 528 178 506 591 217 641 599 227 489 548 191 388 547 190 510 597 197 642 600 220 510 597 197 400 596 196 512 601 221 642 600 220 512 601 221 385 532 169 482 531 168 642 600 220 482 531 168 386 536 173 489 548 191 642 600 220 504 588 1347 396 581 1340 513 602 1350 620 603 1351 513 602 1350 429 604 1352 621 605 1353 620 603 1351 515 606 1354 398 590 1349 516 607 1355 643 608 1356 516 607 1355 427 609 1357 618 610 1358 643 608 1356 618 610 1358 428 611 1359 617 612 1360 643 608 1356 617 612 1360 397 580 1339 515 606 1354 643 608 1356 428 611 1359 429 604 1352 513 602 1350 617 612 1360 513 602 1350 396 581 1340 397 580 1339 617 612 1360 516 607 1355 398 590 1349 609 589 1348 644 613 1361 609 589 1348 380 521 1317 610 614 1362 644 613 1361 610 614 1362 426 615 1363 616 616 1364 644 613 1361 616 616 1364 427 609 1357 516 607 1355 644 613 1361 442 454 1250 357 453 1249 520 617 1365 519 618 1366 521 619 1367 401 620 1368 522 621 1369 645 622 1370 522 621 1369 442 454 1250 519 618 1366 645 622 1370 437 441 1237 353 440 1236 579 623 1371 661 624 1372 520 617 1365 357 453 1249 361 465 1261 523 625 1373 522 621 1369 401 620 1368 524 626 1374 646 627 1375 524 626 1374 402 628 1376 525 629 1377 646 627 1375 525 629 1377 355 449 1245 443 452 1248 646 627 1375 443 452 1248 442 454 1250 522 621 1369 646 627 1375 579 623 1371 353 440 1236 444 455 1251 660 630 1378 444 455 1251 358 460 1256 578 631 1379 660 630 1378 526 632 2273 409 633 247 527 634 248 647 635 2268 527 634 248 404 636 250 528 637 251 647 635 2268 528 637 1380 410 638 1381 529 639 1382 647 635 1383 529 639 1382 408 640 1384 526 632 1385 647 635 1383 528 637 251 404 636 250 530 641 255 648 642 2269 530 641 255 407 643 257 531 644 258 648 642 2269 531 644 1386 411 645 1387 532 646 1388 648 642 1389 532 646 1388 410 638 1381 528 637 1380 648 642 1389 531 644 258 407 643 257 533 647 261 649 648 2272 533 647 261 412 649 263 534 650 264 649 648 2272 534 650 1390 413 651 1391 535 652 1392 649 648 1393 535 652 1392 411 645 1387 531 644 1386 649 648 1393 393 653 1394 374 512 1308 502 584 1343 537 654 1395 502 584 1343 372 498 1294 628 501 1297 537 654 1395 628 501 1297 371 492 1288 536 655 1396 537 654 1395 503 586 1345 376 510 1306 398 590 1349 515 606 1354 515 606 1354 397 580 1339 503 586 1345 536 655 1396 371 492 1288 465 495 1291 540 656 1397 465 495 1291 369 486 1282 539 657 1398 540 656 1397 539 657 1398 369 486 1282 461 489 1285 542 658 1399 461 489 1285 367 482 1278 541 659 1400 542 658 1399 541 659 1400 367 482 1278 458 481 1277 544 660 1401 458 481 1277 362 468 1264 543 661 1402 544 660 1401 525 629 1377 402 628 1376 545 662 1403 546 663 1404 543 661 1402 362 468 1264 451 471 1267 546 663 1404 451 471 1267 355 449 1245 525 629 1377 546 663 1404 578 631 1379 358 460 1256 452 472 1268 577 664 1405 452 472 1268 364 477 1273 547 665 1406 577 664 1405 547 665 1406 364 477 1273 494 561 1327 549 666 1407 494 561 1327 390 542 1326 548 667 1408 549 666 1407 511 541 1409 387 540 1410 550 668 1411 551 669 1412 548 667 1408 390 542 1326 511 541 1409 551 669 1412 550 668 1411 387 540 1410 538 598 1413 650 670 1414 538 598 1413 394 577 1415 552 573 1335 650 670 1414 573 568 244 406 567 243 553 671 267 657 672 268 572 673 269 657 672 268 553 671 267 414 674 270 552 573 1335 394 577 1415 498 576 1338 651 570 1332 651 570 1332 498 576 1338 375 504 1300 1964 507 1303 1945 675 1416 549 666 1407 548 667 1408 2091 676 1417 2092 677 1418 580 678 271 663 679 272 652 680 273 554 681 274 663 679 272 582 682 275 555 683 276 652 680 273 2093 684 1419 547 665 1406 549 666 1407 2092 677 1418 551 669 1412 550 668 1411 2095 685 1420 2090 686 1421 581 687 277 662 688 278 653 689 279 556 690 280 662 688 278 580 678 271 554 681 274 653 689 279 2091 676 1417 548 667 1408 551 669 1412 2090 686 1421 546 663 1404 545 662 1403 2097 691 1422 2098 692 1423 584 693 281 667 694 282 654 695 2270 557 696 284 667 694 1424 586 697 1425 558 698 1426 654 695 1427 2099 699 1428 543 661 1402 546 663 1404 2098 692 1423 577 664 1405 547 665 1406 2093 684 1419 2094 700 1429 582 682 275 665 701 287 2060 702 288 555 683 276 544 660 1401 543 661 1402 2099 699 1428 2100 703 1430 586 697 1425 666 704 1431 2061 705 1432 558 698 1426 666 704 1431 585 706 1433 559 707 1434 2061 705 1432 2101 708 1435 541 659 1400 544 660 1401 2100 703 1430 542 658 1399 541 659 1400 2101 708 1435 2102 709 1436 585 706 1433 668 710 1437 2062 711 1438 559 707 1434 668 710 1437 587 712 1439 560 713 1440 2062 711 1438 2103 714 1441 539 657 1398 542 658 1399 2102 709 1436 537 654 1395 536 655 1396 2105 715 1442 2106 716 1443 588 717 1444 670 718 1445 655 719 1446 561 720 1447 670 718 2275 589 721 301 562 722 302 655 719 299 2107 723 1448 393 653 1394 537 654 1395 2106 716 1443 540 656 1397 539 657 1398 2103 714 1441 2104 724 1449 587 712 1439 669 725 1450 2063 726 1451 560 713 1440 669 725 1450 588 717 1444 561 720 1447 2063 726 1451 2105 715 1442 536 655 1396 540 656 1397 2104 724 1449 650 670 1414 552 573 1335 2088 572 1334 2089 727 1452 583 728 305 664 729 306 2059 730 307 2058 731 308 664 729 306 581 687 277 556 690 280 2059 730 307 2095 685 1420 550 668 1411 650 670 1414 2089 727 1452 671 732 309 583 728 305 2058 731 308 656 733 310 1947 734 311 671 732 309 656 733 310 1946 735 970 563 736 971 416 737 972 403 557 240 492 555 238 563 736 971 492 555 238 405 554 237 417 738 973 564 739 974 415 740 975 406 567 243 496 566 242 564 739 974 496 566 242 403 557 240 416 737 972 565 741 2274 419 742 977 409 633 247 526 632 2273 565 741 1453 526 632 1385 408 640 1384 420 743 1454 576 744 979 417 738 973 405 554 237 575 553 236 566 745 1455 420 743 1454 408 640 1384 529 639 1382 566 745 1455 529 639 1382 410 638 1381 421 746 1456 567 747 1457 421 746 1456 410 638 1381 532 646 1388 567 747 1457 532 646 1388 411 645 1387 422 748 1458 568 749 1459 423 750 1460 413 651 1391 534 650 1390 568 749 984 534 650 264 412 649 263 424 751 986 569 752 1461 422 748 1458 411 645 1387 535 652 1392 569 752 1461 535 652 1392 413 651 1391 423 750 1460 570 753 988 418 754 989 414 674 270 553 671 267 570 753 988 553 671 267 406 567 243 415 740 975 414 674 270 418 754 989 571 755 990 572 673 269 572 673 269 571 755 990 1963 756 991 1962 757 992 424 751 986 412 649 263 1962 757 992 1963 756 991 657 672 268 572 673 269 1962 757 992 1961 758 993 533 647 261 407 643 257 1960 759 994 1961 758 993 658 569 245 573 568 244 1960 759 994 1959 760 995 530 641 255 404 636 250 1958 761 996 1959 760 995 659 556 239 574 558 241 1958 761 996 1957 762 997 527 634 248 409 633 247 1956 763 998 1957 762 997 576 744 979 575 553 236 1956 763 998 1955 764 999 409 633 247 419 742 977 1955 764 999 1956 763 998 2060 702 288 665 701 287 1954 765 1000 1953 766 1001 2097 691 1422 545 662 1403 1952 767 1462 2096 768 1463 545 662 1403 402 628 1376 1951 769 1464 1952 767 1462 660 630 1378 578 631 1379 1951 769 1464 1950 770 1465 524 626 1374 401 620 1368 1949 771 1466 1950 770 1465 661 624 1372 579 623 1371 1949 771 1466 1948 772 1467 564 739 974 416 737 972 580 678 271 662 688 278 581 687 277 415 740 975 564 739 974 662 688 278 582 682 275 417 738 973 576 744 979 665 701 287 580 678 271 416 737 972 563 736 971 663 679 272 563 736 971 417 738 973 582 682 275 663 679 272 570 753 988 415 740 975 581 687 277 664 729 306 583 728 305 418 754 989 570 753 988 664 729 306 665 701 287 576 744 979 1955 764 999 1954 765 1000 1954 765 1000 584 693 281 557 696 284 1953 766 1001 566 745 1455 421 746 1456 585 706 1433 666 704 1431 586 697 1425 420 743 1454 566 745 1455 666 704 1431 584 693 281 419 742 977 565 741 2274 667 694 282 565 741 1453 420 743 1454 586 697 1425 667 694 1424 585 706 1433 421 746 1456 567 747 1457 668 710 1437 567 747 1457 422 748 1458 587 712 1439 668 710 1437 587 712 1439 422 748 1458 569 752 1461 669 725 1450 569 752 1461 423 750 1460 588 717 1444 669 725 1450 589 721 301 1947 734 311 1946 735 970 562 722 302 589 721 301 424 751 986 1963 756 991 1947 734 311 588 717 1444 423 750 1460 568 749 1459 670 718 1445 568 749 984 424 751 986 589 721 301 670 718 2275 571 755 990 418 754 989 583 728 305 671 732 309 590 773 1468 354 448 1244 440 447 1243 672 774 1469 447 462 1258 354 448 1244 590 773 1468 673 775 1470 591 776 1471 360 463 1259 447 462 1258 673 775 1470 626 466 1262 449 467 1263 592 382 1193 674 381 1192 593 383 1194 361 465 1261 626 466 1262 674 381 1192 456 478 1274 455 479 1275 594 385 1196 675 384 1195 592 382 1193 449 467 1263 456 478 1274 675 384 1195 460 484 1280 459 485 1281 595 387 1198 676 386 1197 594 385 1196 455 479 1275 460 484 1280 676 386 1197 464 490 1286 463 491 1287 596 389 1200 677 388 1199 595 387 1198 459 485 1281 464 490 1286 677 388 1199 468 496 1292 467 497 1293 597 391 1202 678 390 1201 596 389 1200 463 491 1287 468 496 1292 678 390 1201 471 502 1298 470 503 1299 598 393 1204 679 392 1203 597 391 1202 467 497 1293 471 502 1298 679 392 1203 475 515 1311 378 514 1310 599 397 1208 680 396 1207 600 399 1210 379 517 1313 475 515 1311 680 396 1207 399 519 1315 379 517 1313 600 399 1210 608 401 1212 479 524 164 381 523 163 601 777 222 681 405 223 602 404 148 382 526 175 479 524 174 681 405 149 483 533 170 385 532 169 603 778 224 682 779 225 601 777 222 381 523 163 483 533 170 682 779 225 490 550 1319 360 463 1259 591 776 1471 683 780 1472 604 411 1215 389 551 1320 490 550 1319 683 780 1472 495 562 1328 389 551 1320 604 411 1215 684 410 1214 606 781 1473 392 564 1330 495 562 1328 684 410 1214 497 574 216 395 579 215 605 417 159 685 416 158 599 397 1208 378 514 1310 497 574 1336 685 416 1219 505 587 1346 504 588 1347 1970 419 1221 1971 418 1220 505 587 1346 1971 418 1220 598 393 1204 470 503 1299 507 593 219 382 526 175 602 404 148 686 421 161 605 417 159 395 579 215 507 593 219 686 421 161 509 594 194 392 564 193 606 781 228 687 782 229 607 783 230 400 596 196 509 594 194 687 782 229 512 601 221 400 596 196 607 783 230 688 784 231 603 778 224 385 532 169 512 601 221 688 784 231 620 603 1351 621 605 1353 1968 427 1223 1969 426 1222 620 603 1351 1969 426 1222 1970 419 1221 504 588 1347 518 785 1474 399 519 1315 608 401 1212 689 429 1225 612 431 1227 425 786 1475 518 785 1474 689 429 1225 523 625 1373 361 465 1261 593 383 1194 690 432 1228 610 614 1362 380 521 1317 477 520 1316 691 787 1476 477 520 1316 399 519 1315 518 785 1474 691 787 1476 518 785 1474 425 786 1475 614 788 1477 691 787 1476 614 788 1477 426 615 1363 610 614 1362 691 787 1476 611 789 1478 425 786 1475 612 431 1227 692 434 1230 434 436 1232 350 790 1479 611 789 1478 692 434 1230 613 791 1480 426 615 1363 614 788 1477 693 792 1481 614 788 1477 425 786 1475 611 789 1478 693 792 1481 611 789 1478 350 790 1479 433 793 1482 693 792 1481 433 793 1482 349 794 1483 613 791 1480 693 792 1481 615 795 1484 427 609 1357 616 616 1364 694 796 1485 616 616 1364 426 615 1363 613 791 1480 694 796 1485 613 791 1480 349 794 1483 432 797 1486 694 796 1485 432 797 1486 348 798 1487 615 795 1484 694 796 1485 618 610 1358 427 609 1357 615 795 1484 695 799 1488 615 795 1484 348 798 1487 431 800 1489 695 799 1488 431 800 1489 347 801 1490 517 802 1491 695 799 1488 517 802 1491 428 611 1359 618 610 1358 695 799 1488 347 801 1490 351 803 1492 619 804 1493 517 802 1491 619 804 1493 429 604 1352 428 611 1359 517 802 1491 621 605 1353 429 604 1352 619 804 1493 514 805 1494 619 804 1493 351 803 1492 430 806 1495 514 805 1494 1968 427 1223 621 605 1353 514 805 1494 1967 437 1233 514 805 1494 430 806 1495 435 438 1234 1967 437 1233 696 807 1496 697 808 1497 710 809 1498 709 810 1499 697 808 1497 698 811 1500 711 812 1501 710 809 1498 698 811 1500 699 813 1502 712 814 1503 711 812 1501 699 813 1502 700 815 1504 713 816 1505 712 814 1503 700 815 1504 701 817 1506 714 818 1507 713 816 1505 701 817 1506 702 819 1508 715 820 1509 714 818 1507 702 819 1508 703 821 1510 716 822 1511 715 820 1509 703 821 1510 704 823 1512 717 824 1513 716 822 1511 704 823 1512 705 825 1514 718 826 1515 717 824 1513 705 825 1514 706 827 1516 719 828 1517 718 826 1515 706 827 1516 707 829 1518 720 830 1519 719 828 1517 707 829 1518 1331 831 1520 721 832 1521 720 830 1519 708 833 1522 722 834 1523 1979 835 1524 1980 836 1525 709 810 1499 710 809 1498 724 837 1526 723 838 1527 710 809 1498 711 812 1501 725 839 1528 724 837 1526 711 812 1501 712 814 1503 726 840 1529 725 839 1528 712 814 1503 713 816 1505 727 841 1530 726 840 1529 713 816 1505 714 818 1507 728 842 1531 727 841 1530 714 818 1507 715 820 1509 729 843 1532 728 842 1531 715 820 1509 716 822 1511 730 844 1533 729 843 1532 716 822 1511 717 824 1513 731 845 1534 730 844 1533 717 824 1513 718 826 1515 732 846 1535 731 845 1534 718 826 1515 719 828 1517 733 847 1536 732 846 1535 719 828 1517 720 830 1519 734 848 1537 733 847 1536 1333 849 1538 721 832 1521 1979 835 1524 1982 850 1539 723 838 1527 724 837 1526 737 851 1540 736 852 1541 724 837 1526 725 839 1528 738 853 1542 737 851 1540 725 839 1528 726 840 1529 739 854 1543 738 853 1542 726 840 1529 727 841 1530 740 855 1544 739 854 1543 727 841 1530 728 842 1531 741 856 1545 740 855 1544 728 842 1531 729 843 1532 742 857 1546 741 856 1545 729 843 1532 730 844 1533 743 858 1547 742 857 1546 730 844 1533 731 845 1534 744 859 1548 743 858 1547 731 845 1534 732 846 1535 745 860 1549 744 859 1548 732 846 1535 733 847 1536 746 861 1550 745 860 1549 733 847 1536 734 848 1537 747 862 1551 746 861 1550 1334 863 1552 1333 849 1538 1982 850 1539 1983 864 1553 736 852 1541 737 851 1540 750 865 1554 749 866 1555 737 851 1540 738 853 1542 751 867 1556 750 865 1554 738 853 1542 739 854 1543 752 868 1557 751 867 1556 739 854 1543 740 855 1544 753 869 1558 752 868 1557 740 855 1544 741 856 1545 754 870 1559 753 869 1558 741 856 1545 742 857 1546 755 871 1560 754 870 1559 742 857 1546 743 858 1547 756 872 1561 755 871 1560 743 858 1547 744 859 1548 757 873 1562 756 872 1561 744 859 1548 745 860 1549 758 874 1563 757 873 1562 745 860 1549 746 861 1550 759 875 1564 758 874 1563 746 861 1550 747 862 1551 760 876 1565 759 875 1564 1335 877 1566 1334 863 1552 1983 864 1553 1984 878 1567 749 866 1555 750 865 1554 763 879 1568 762 880 1569 750 865 1554 751 867 1556 764 881 1570 763 879 1568 751 867 1556 752 868 1557 765 882 1571 764 881 1570 752 868 1557 753 869 1558 766 883 1572 765 882 1571 753 869 1558 754 870 1559 767 884 1573 766 883 1572 754 870 1559 755 871 1560 768 885 1574 767 884 1573 755 871 1560 756 872 1561 769 886 1575 768 885 1574 756 872 1561 757 873 1562 770 887 1576 769 886 1575 757 873 1562 758 874 1563 771 888 1577 770 887 1576 758 874 1563 759 875 1564 772 889 1578 771 888 1577 759 875 1564 760 876 1565 773 890 1579 772 889 1578 1336 891 1580 1335 877 1566 1984 878 1567 1981 892 1581 762 880 1569 763 879 1568 776 893 1582 775 894 1583 763 879 1568 764 881 1570 777 895 1584 776 893 1582 764 881 1570 765 882 1571 778 896 1585 777 895 1584 765 882 1571 766 883 1572 779 897 1586 778 896 1585 766 883 1572 767 884 1573 780 898 1587 779 897 1586 767 884 1573 768 885 1574 781 899 1588 780 898 1587 768 885 1574 769 886 1575 782 900 1589 781 899 1588 769 886 1575 770 887 1576 783 901 1590 782 900 1589 770 887 1576 771 888 1577 784 902 1591 783 901 1590 771 888 1577 772 889 1578 785 903 1592 784 902 1591 772 889 1578 773 890 1579 786 904 1593 785 903 1592 2 361 1172 1336 891 1580 1981 892 1581 87 359 1170 775 894 1583 776 893 1582 788 905 1594 787 906 1595 776 893 1582 777 895 1584 789 907 1596 788 905 1594 777 895 1584 778 896 1585 790 908 1597 789 907 1596 778 896 1585 779 897 1586 791 909 1598 790 908 1597 779 897 1586 780 898 1587 792 910 1599 791 909 1598 780 898 1587 781 899 1588 793 911 1600 792 910 1599 781 899 1588 782 900 1589 794 912 1601 793 911 1600 782 900 1589 783 901 1590 795 913 1602 794 912 1601 783 901 1590 784 902 1591 796 914 1603 795 913 1602 784 902 1591 785 903 1592 797 915 1604 796 914 1603 785 903 1592 786 904 1593 798 916 1605 797 915 1604 787 906 1595 788 905 1594 800 917 1606 799 918 1607 788 905 1594 789 907 1596 801 919 1608 800 917 1606 789 907 1596 790 908 1597 802 920 1609 801 919 1608 790 908 1597 791 909 1598 803 921 1610 802 920 1609 791 909 1598 792 910 1599 804 922 1611 803 921 1610 792 910 1599 793 911 1600 805 923 1612 804 922 1611 793 911 1600 794 912 1601 806 924 1613 805 923 1612 794 912 1601 795 913 1602 807 925 1614 806 924 1613 795 913 1602 796 914 1603 808 926 1615 807 925 1614 796 914 1603 797 915 1604 809 927 1616 808 926 1615 797 915 1604 798 916 1605 810 928 1617 809 927 1616 799 918 1607 800 917 1606 812 929 1618 811 930 1619 800 917 1606 801 919 1608 813 931 1620 812 929 1618 801 919 1608 802 920 1609 814 932 1621 813 931 1620 802 920 1609 803 921 1610 815 933 1622 814 932 1621 803 921 1610 804 922 1611 816 934 1623 815 933 1622 804 922 1611 805 923 1612 817 935 1624 816 934 1623 805 923 1612 806 924 1613 818 936 1625 817 935 1624 806 924 1613 807 925 1614 819 937 1626 818 936 1625 807 925 1614 808 926 1615 820 938 1627 819 937 1626 808 926 1615 809 927 1616 821 939 1628 820 938 1627 809 927 1616 810 928 1617 822 940 1629 821 939 1628 811 930 1619 812 929 1618 824 941 1630 823 942 1631 812 929 1618 813 931 1620 825 943 1632 824 941 1630 813 931 1620 814 932 1621 826 944 1633 825 943 1632 814 932 1621 815 933 1622 827 945 1634 826 944 1633 815 933 1622 816 934 1623 828 946 1635 827 945 1634 816 934 1623 817 935 1624 829 947 1636 828 946 1635 817 935 1624 818 936 1625 830 948 1637 829 947 1636 818 936 1625 819 937 1626 831 949 1638 830 948 1637 819 937 1626 820 938 1627 832 950 1639 831 949 1638 820 938 1627 821 939 1628 833 951 1640 832 950 1639 821 939 1628 822 940 1629 834 952 1641 833 951 1640 823 942 1631 824 941 1630 835 953 1642 846 954 1643 824 941 1630 825 943 1632 836 955 1644 835 953 1642 825 943 1632 826 944 1633 837 956 1645 836 955 1644 826 944 1633 827 945 1634 838 957 1646 837 956 1645 827 945 1634 828 946 1635 839 958 1647 838 957 1646 828 946 1635 829 947 1636 840 959 1648 839 958 1647 829 947 1636 830 948 1637 841 960 1649 840 959 1648 830 948 1637 831 949 1638 842 961 1650 841 960 1649 831 949 1638 832 950 1639 843 962 1651 842 961 1650 832 950 1639 833 951 1640 844 963 1652 843 962 1651 833 951 1640 834 952 1641 845 964 1653 844 963 1652 846 954 1643 835 953 1642 848 965 1654 847 966 1655 835 953 1642 836 955 1644 849 967 1656 848 965 1654 836 955 1644 837 956 1645 850 968 1657 849 967 1656 837 956 1645 838 957 1646 851 969 1658 850 968 1657 838 957 1646 839 958 1647 852 970 1659 851 969 1658 839 958 1647 840 959 1648 853 971 1660 852 970 1659 840 959 1648 841 960 1649 854 972 1661 853 971 1660 841 960 1649 842 961 1650 855 973 1662 854 972 1661 842 961 1650 843 962 1651 856 974 1663 855 973 1662 843 962 1651 844 963 1652 857 975 1664 856 974 1663 844 963 1652 845 964 1653 858 976 1665 857 975 1664 847 966 1655 848 965 1654 860 977 1666 859 978 1667 848 965 1654 849 967 1656 861 979 1668 860 977 1666 849 967 1656 850 968 1657 862 980 1669 861 979 1668 853 971 1660 854 972 1661 863 981 1670 854 972 1661 855 973 1662 864 982 1671 863 981 1670 855 973 1662 856 974 1663 865 983 1672 864 982 1671 856 974 1663 857 975 1664 866 984 1673 865 983 1672 857 975 1664 858 976 1665 867 985 1674 866 984 1673 859 978 1667 860 977 1666 869 986 1675 868 987 1676 860 977 1666 861 979 1668 870 988 1677 869 986 1675 868 987 1676 869 986 1675 872 989 1678 871 990 1679 869 986 1675 870 988 1677 873 991 1680 872 989 1678 875 992 1681 874 993 1682 864 982 1671 865 983 1672 865 983 1672 866 984 1673 876 994 1683 875 992 1681 866 984 1673 867 985 1674 877 995 1684 876 994 1683 871 990 1679 872 989 1678 879 996 1685 878 997 1686 872 989 1678 873 991 1680 880 998 1687 879 996 1685 882 999 1688 881 1000 1689 874 993 1682 875 992 1681 875 992 1681 876 994 1683 883 1001 1690 882 999 1688 876 994 1683 877 995 1684 884 1002 1691 883 1001 1690 878 997 1686 879 996 1685 886 1003 1692 885 1004 1693 879 996 1685 880 998 1687 887 1005 1694 886 1003 1692 889 1006 1695 888 1007 1696 881 1000 1689 882 999 1688 882 999 1688 883 1001 1690 890 1008 1697 889 1006 1695 883 1001 1690 884 1002 1691 891 1009 1698 890 1008 1697 885 1004 1693 886 1003 1692 893 1010 1699 892 1011 1700 886 1003 1692 887 1005 1694 894 1012 1701 893 1010 1699 1313 1013 1702 888 1007 1696 889 1006 1695 895 1014 1703 889 1006 1695 890 1008 1697 896 1015 1704 895 1014 1703 890 1008 1697 891 1009 1698 1314 1016 1705 896 1015 1704 891 1009 1698 1337 1017 1706 897 1018 1707 1314 1016 1705 1985 1019 1708 1337 1017 1706 320 1020 1709 1986 1021 1710 892 1011 1700 893 1010 1699 899 1022 1711 898 1023 1712 893 1010 1699 894 1012 1701 900 1024 1713 899 1022 1711 1312 1025 1714 1311 1026 1715 906 1027 1716 905 1028 1717 697 808 1497 696 807 1496 907 1029 1718 698 811 1500 697 808 1497 907 1029 1718 699 813 1502 698 811 1500 907 1029 1718 700 815 1504 699 813 1502 907 1029 1718 701 817 1506 700 815 1504 907 1029 1718 702 819 1508 701 817 1506 907 1029 1718 703 821 1510 702 819 1508 907 1029 1718 704 823 1512 703 821 1510 907 1029 1718 705 825 1514 704 823 1512 907 1029 1718 706 827 1516 705 825 1514 907 1029 1718 707 829 1518 706 827 1516 907 1029 1718 707 829 1518 907 1029 1718 1331 831 1520 708 833 1522 1980 836 1525 907 1029 1718 941 1030 312 980 1031 313 1044 1032 314 1007 1033 315 1007 1033 315 1028 1034 316 956 1035 317 941 1030 312 942 1036 318 958 1037 319 1028 1034 316 1007 1033 315 1007 1033 315 1044 1032 314 981 1038 320 942 1036 318 943 1039 321 979 1040 322 1043 1041 323 1008 1042 324 1008 1042 324 1029 1043 325 955 1044 326 943 1039 321 941 1030 312 956 1035 317 1029 1043 325 1008 1042 324 1008 1042 324 1043 1041 323 980 1031 313 941 1030 312 944 1045 327 978 1046 328 1042 1047 329 1009 1048 330 1009 1048 330 1027 1049 331 953 1050 332 944 1045 327 943 1039 321 955 1044 326 1027 1049 331 1009 1048 330 1009 1048 330 1042 1047 329 979 1040 322 943 1039 321 945 1051 333 977 1052 334 1041 1053 335 1010 1054 336 1010 1054 336 1030 1055 337 960 1056 338 945 1051 333 944 1045 327 953 1050 332 1030 1055 337 1010 1054 336 1010 1054 336 1041 1053 335 978 1046 328 944 1045 327 1011 1057 339 1032 1058 340 964 1059 341 946 1060 342 945 1051 333 960 1056 338 1032 1058 340 1011 1057 339 1011 1057 339 946 1060 342 1066 1061 343 1067 1062 344 947 1063 345 976 1064 346 1040 1065 347 1012 1066 348 1012 1066 348 1034 1067 349 968 1068 350 947 1063 345 946 1060 342 964 1059 341 1034 1067 349 1012 1066 348 1012 1066 348 1040 1065 347 1066 1061 343 946 1060 342 948 1069 351 975 1070 352 1039 1071 353 1013 1072 354 1013 1072 354 1036 1073 355 971 1074 356 948 1069 351 947 1063 345 968 1068 350 1036 1073 355 1013 1072 354 1013 1072 354 1039 1071 353 976 1064 346 947 1063 345 949 1075 357 973 1076 358 1038 1077 359 1014 1078 360 1014 1078 360 1035 1079 361 967 1080 362 949 1075 357 948 1069 351 971 1074 356 1035 1079 361 1014 1078 360 1014 1078 360 1038 1077 359 975 1070 352 948 1069 351 950 1081 363 974 1082 364 1037 1083 365 1015 1084 366 1015 1084 366 1033 1085 367 963 1086 368 950 1081 363 949 1075 357 967 1080 362 1033 1085 367 1015 1084 366 1015 1084 366 1037 1083 365 973 1076 358 949 1075 357 942 1036 318 981 1038 320 1045 1087 369 1016 1088 370 1016 1088 370 1031 1089 371 958 1037 319 942 1036 318 950 1081 363 963 1086 368 1031 1089 371 1016 1088 370 1016 1088 370 1045 1087 369 974 1082 364 950 1081 363 1044 1032 314 1038 1077 359 973 1076 358 981 1038 320 986 1090 1719 1048 1091 1720 1907 1092 1721 1906 1093 1722 923 1094 1723 1017 1095 1724 1907 1092 1721 1908 1096 1725 990 1097 1726 1050 1098 1727 1911 1099 1728 1913 1100 1729 925 1101 1730 1018 1102 1731 1911 1099 1728 1909 1103 1732 909 1104 1733 1051 1105 1734 1905 1106 1735 1909 1103 1732 951 1107 1736 1019 1108 1737 1905 1106 1735 1906 1093 1722 908 1109 1738 1052 1110 1739 1910 1111 1740 1908 1096 1725 924 1112 1741 1020 1113 1742 1910 1111 1740 1912 1114 1743 910 1115 1744 1053 1116 1745 1914 1117 1746 1912 1114 1743 926 1118 1747 1021 1119 1748 1914 1117 1746 1916 1120 1749 927 1121 1750 1022 1122 1751 1918 1123 1752 1920 1124 1753 982 1125 1754 1046 1126 1755 1918 1123 1752 1916 1120 1749 984 1127 1756 1047 1128 1757 1922 1129 1758 1920 1124 1753 929 1130 1759 1023 1131 1760 1922 1129 1758 1924 1132 1761 911 1133 1762 1054 1134 1763 1923 1135 1764 1924 1132 1761 930 1136 1765 1024 1137 1766 1923 1135 1764 1921 1138 1767 988 1139 1768 1049 1140 1769 1919 1141 1770 1921 1138 1767 928 1142 1771 1025 1143 1772 1919 1141 1770 1917 1144 1773 912 1145 1774 1055 1146 1775 1915 1147 1776 1917 1144 1773 952 1148 1777 1026 1149 1778 1915 1147 1776 1913 1100 1729 953 1050 332 1027 1049 331 954 1150 969 914 1151 963 954 1152 969 1027 1049 331 955 1044 326 913 1153 967 956 1035 317 1028 1034 316 957 1154 968 916 1155 965 957 1156 968 1028 1034 316 958 1037 319 915 1157 962 955 1044 326 1029 1043 325 959 1158 966 913 1159 967 959 1160 966 1029 1043 325 956 1035 317 916 1161 965 960 1056 338 1030 1055 337 961 1162 964 917 1163 959 961 1164 964 1030 1055 337 953 1050 332 914 1165 963 958 1037 319 1031 1089 371 962 1166 961 915 1167 962 962 1168 961 1031 1089 371 963 1086 368 918 1169 958 964 1059 341 1032 1058 340 965 1170 960 919 1171 955 965 1172 960 1032 1058 340 960 1056 338 917 1173 959 963 1086 368 1033 1085 367 966 1174 957 918 1175 958 966 1176 957 1033 1085 367 967 1080 362 920 1177 954 968 1068 350 1034 1067 349 969 1178 956 921 1179 950 969 1180 956 1034 1067 349 964 1059 341 919 1181 955 967 1080 362 1035 1079 361 970 1182 953 920 1183 954 970 1184 953 1035 1079 361 971 1074 356 922 1185 952 971 1074 356 1036 1073 355 972 1186 951 922 1187 952 972 1188 951 1036 1073 355 968 1068 350 921 1189 950 914 1190 1779 954 1191 1780 1020 1113 1742 924 1112 1741 923 1094 1723 1020 1113 1742 954 1192 1780 913 1193 1781 916 1194 1782 957 1195 1783 1019 1108 1737 951 1107 1736 925 1101 1730 1019 1108 1737 957 1196 1783 915 1197 1784 923 1094 1723 913 1198 1781 959 1199 1785 1017 1095 1724 916 1200 1782 951 1107 1736 1017 1095 1724 959 1201 1785 917 1202 1786 961 1203 1787 1021 1119 1748 926 1118 1747 914 1204 1779 924 1112 1741 1021 1119 1748 961 1205 1787 925 1101 1730 915 1206 1784 962 1207 1788 1018 1102 1731 952 1148 1777 1018 1102 1731 962 1208 1788 918 1209 1789 919 1210 1790 965 1211 1791 1022 1122 1751 927 1121 1750 917 1212 1786 926 1118 1747 1022 1122 1751 965 1213 1791 952 1148 1777 918 1214 1789 966 1215 1792 1026 1149 1778 928 1142 1771 1026 1149 1778 966 1216 1792 920 1217 1793 921 1218 1794 969 1219 1795 1023 1131 1760 929 1130 1759 919 1220 1790 927 1121 1750 1023 1131 1760 969 1221 1795 928 1142 1771 920 1222 1793 970 1223 1796 1025 1143 1772 930 1136 1765 1025 1143 1772 970 1224 1796 922 1225 1797 930 1136 1765 922 1226 1797 972 1227 1798 1024 1137 1766 921 1228 1794 929 1130 1759 1024 1137 1766 972 1229 1798 984 1127 1756 1046 1126 1755 996 1230 1799 932 1231 1800 996 1230 1799 1046 1126 1755 982 1125 1754 931 1232 1801 911 1133 1762 1047 1128 1757 983 1233 1802 933 1234 1803 983 1233 1802 1047 1128 1757 984 1127 1756 932 1231 1800 908 1109 1738 1048 1091 1720 985 1235 1804 935 1236 1805 985 1235 1804 1048 1091 1720 986 1090 1719 934 1237 1806 912 1145 1774 1049 1140 1769 987 1238 1807 937 1239 1808 987 1238 1807 1049 1140 1769 988 1139 1768 936 1240 1809 909 1104 1733 1050 1098 1727 989 1241 1810 939 1242 1811 989 1241 1810 1050 1098 1727 990 1097 1726 938 1243 1812 986 1090 1719 1051 1105 1734 991 1244 1813 934 1237 1806 991 1244 1813 1051 1105 1734 909 1104 1733 939 1242 1811 910 1115 1744 1052 1110 1739 992 1245 1814 940 1246 1815 992 1245 1814 1052 1110 1739 908 1109 1738 935 1236 1805 982 1125 1754 1053 1116 1745 993 1247 1816 931 1232 1801 993 1247 1816 1053 1116 1745 910 1115 1744 940 1246 1815 988 1139 1768 1054 1134 1763 994 1248 1817 936 1240 1809 994 1248 1817 1054 1134 1763 911 1133 1762 933 1234 1803 990 1097 1726 1055 1146 1775 995 1249 1818 938 1243 1812 995 1249 1818 1055 1146 1775 912 1145 1774 937 1239 1808 996 1230 1799 1056 1250 1819 997 1251 1820 932 1231 1800 998 1252 1821 1056 1250 1819 996 1230 1799 931 1232 1801 983 1233 1802 1057 1253 1822 999 1254 1823 933 1234 1803 997 1251 1820 1057 1253 1822 983 1233 1802 932 1231 1800 985 1235 1804 1058 1255 1824 1000 1256 1825 935 1236 1805 1001 1257 1826 1058 1255 1824 985 1235 1804 934 1237 1806 987 1238 1807 1059 1258 1827 1002 1259 1828 937 1239 1808 1003 1260 1829 1059 1258 1827 987 1238 1807 936 1240 1809 989 1241 1810 1060 1261 1830 1004 1262 1831 939 1242 1811 1005 1263 1832 1060 1261 1830 989 1241 1810 938 1243 1812 991 1244 1813 1061 1264 1833 1001 1257 1826 934 1237 1806 1004 1262 1831 1061 1264 1833 991 1244 1813 939 1242 1811 992 1245 1814 1062 1265 1834 1006 1266 1835 940 1246 1815 1000 1256 1825 1062 1265 1834 992 1245 1814 935 1236 1805 993 1247 1816 1063 1267 1836 998 1252 1821 931 1232 1801 1006 1266 1835 1063 1267 1836 993 1247 1816 940 1246 1815 994 1248 1817 1064 1268 1837 1003 1260 1829 936 1240 1809 999 1254 1823 1064 1268 1837 994 1248 1817 933 1234 1803 995 1249 1818 1065 1269 1838 1005 1263 1832 938 1243 1812 1002 1259 1828 1065 1269 1838 995 1249 1818 937 1239 1808 973 1076 358 1037 1083 365 974 1082 364 1045 1087 369 981 1038 320 980 1031 313 1043 1041 323 1039 1071 353 975 1070 352 1044 1032 314 980 1031 313 975 1070 352 1038 1077 359 1043 1041 323 979 1040 322 976 1064 346 1039 1071 353 978 1046 328 1041 1053 335 977 1052 334 1067 1062 344 1066 1061 343 979 1040 322 1042 1047 329 1040 1065 347 976 1064 346 1011 1057 339 1067 1062 344 977 1052 334 945 1051 333 978 1046 328 1066 1061 343 1040 1065 347 1042 1047 329 997 1251 1820 1056 1250 1819 904 1270 1839 903 1271 1840 1056 1250 1819 998 1252 1821 1313 1013 1702 904 1270 1839 999 1254 1823 1057 1253 1822 902 1272 1841 901 1273 1842 1000 1256 1825 1058 1255 1824 863 981 1670 864 982 1671 1058 1255 1824 1001 1257 1826 853 971 1660 863 981 1670 1002 1259 1828 1059 1258 1827 887 1005 1694 880 998 1687 1059 1258 1827 1003 1260 1829 894 1012 1701 887 1005 1694 1004 1262 1831 1060 1261 1830 862 980 1669 851 969 1658 1060 1261 1830 1005 1263 1832 870 988 1677 862 980 1669 1001 1257 1826 1061 1264 1833 852 970 1659 853 971 1660 1061 1264 1833 1004 1262 1831 851 969 1658 852 970 1659 1006 1266 1835 1062 1265 1834 874 993 1682 881 1000 1689 1062 1265 1834 1000 1256 1825 864 982 1671 874 993 1682 1063 1267 1836 1006 1266 1835 881 1000 1689 888 1007 1696 1003 1260 1829 1064 1268 1837 900 1024 1713 894 1012 1701 1064 1268 1837 999 1254 1823 901 1273 1842 900 1024 1713 1005 1263 1832 1065 1269 1838 873 991 1680 870 988 1677 1065 1269 1838 1002 1259 1828 880 998 1687 873 991 1680 1057 1253 1822 997 1251 1820 903 1271 1840 902 1272 1841 870 988 1677 861 979 1668 862 980 1669 862 980 1669 850 968 1657 851 969 1658 1063 1267 1836 888 1007 1696 1313 1013 1702 998 1252 1821 1116 1274 372 1237 1275 373 1117 1276 374 1151 1277 375 1237 1275 373 1152 1278 376 1117 1276 374 1153 1279 377 1238 1280 378 1092 1281 379 1070 1282 380 1308 1283 381 1238 1280 378 1153 1279 377 1309 1284 382 1153 1279 377 1239 1285 383 1310 1286 384 1309 1284 382 1110 1287 385 1287 1288 386 1239 1285 383 1093 1289 387 1093 1289 387 1239 1285 383 1153 1279 377 1070 1282 380 1219 1290 388 1118 1291 389 1154 1292 390 1297 1293 391 1113 1294 392 1115 1295 393 1297 1293 391 1154 1292 390 1120 1296 394 1112 1297 395 1150 1298 396 1155 1299 397 1071 1300 398 1155 1299 397 1150 1301 396 1069 1302 399 1154 1292 390 1240 1303 400 1156 1304 401 1113 1305 392 1156 1306 401 1240 1303 400 1277 1307 402 1114 1308 403 1277 1307 402 1240 1303 400 1157 1309 404 1222 1310 405 1157 1309 404 1240 1303 400 1154 1292 390 1118 1291 389 1218 1311 406 1121 1312 407 1158 1313 408 1274 1314 409 1219 1290 388 1274 1314 409 1158 1313 408 1118 1291 389 1159 1315 410 1241 1316 411 1160 1317 412 1123 1318 413 1160 1317 412 1241 1316 411 1245 1319 414 1124 1320 415 1245 1319 414 1241 1316 411 1161 1321 416 1161 1321 416 1241 1316 411 1159 1315 410 1122 1322 417 1162 1323 418 1242 1324 419 1119 1325 420 1120 1296 394 1220 1326 421 1242 1324 419 1162 1323 418 1125 1327 422 1162 1323 418 1243 1328 423 1163 1329 424 1125 1327 422 1163 1329 424 1243 1328 423 1094 1330 425 1072 1331 426 1094 1330 425 1243 1328 423 1155 1299 397 1071 1300 398 1155 1299 397 1243 1328 423 1162 1323 418 1120 1296 394 1278 1332 427 1244 1333 428 1164 1334 429 1223 1335 430 1164 1334 429 1244 1333 428 1158 1313 408 1121 1312 407 1158 1313 408 1244 1333 428 1157 1309 404 1118 1291 389 1157 1309 404 1244 1333 428 1278 1332 427 1222 1310 405 1124 1320 415 1245 1319 414 1165 1336 431 1126 1337 432 1165 1336 431 1245 1319 414 1166 1338 433 1208 1339 434 1129 1340 435 1167 1341 436 1128 1342 437 1167 1341 436 1129 1340 435 1296 1343 438 1209 1344 439 1168 1345 440 1246 1346 441 1095 1347 442 1073 1348 443 1095 1347 442 1246 1346 441 1266 1349 444 1074 1350 445 1266 1349 444 1246 1346 441 1167 1341 436 1209 1344 439 1167 1341 436 1246 1346 441 1168 1345 440 1128 1342 437 1228 1351 446 1247 1352 447 1170 1353 448 1131 1354 449 1170 1353 448 1247 1352 447 1169 1355 450 1130 1356 451 1171 1357 452 1248 1358 453 1172 1359 454 1132 1360 455 1172 1359 454 1248 1358 453 1237 1275 373 1116 1274 372 1171 1357 452 1301 1361 456 1174 1362 457 1248 1358 453 1237 1275 373 1248 1358 453 1173 1363 458 1152 1278 376 1173 1363 458 1248 1358 453 1174 1362 457 1133 1364 459 1175 1365 460 1249 1366 461 1307 1367 462 1306 1368 463 1307 1367 462 1249 1366 461 1238 1280 378 1308 1283 381 1238 1280 378 1249 1366 461 1096 1369 464 1092 1281 379 1096 1369 464 1249 1366 461 1175 1365 460 1075 1370 465 1218 1311 406 1273 1371 466 1176 1372 467 1121 1312 407 1134 1373 468 1135 1374 469 1176 1372 467 1273 1371 466 1177 1375 470 1250 1376 471 1178 1377 472 1136 1378 473 1178 1377 472 1250 1376 471 1179 1379 474 1137 1380 475 1179 1379 474 1250 1376 471 1171 1357 452 1132 1360 455 1180 1381 476 1251 1382 477 1177 1375 470 1136 1378 473 1181 1383 478 1235 1384 479 1174 1362 457 1301 1361 456 1181 1383 478 1251 1382 477 1182 1385 480 1126 1337 432 1182 1385 480 1251 1382 477 1180 1381 476 1138 1386 481 1183 1387 482 1252 1388 483 1179 1379 474 1132 1360 455 1179 1379 474 1252 1388 483 1184 1389 484 1137 1380 475 1184 1389 484 1252 1388 483 1286 1390 485 1232 1391 486 1286 1390 485 1252 1388 483 1183 1387 482 1233 1392 487 1139 1393 488 1217 1394 489 1272 1395 490 1185 1396 491 1216 1397 492 1140 1398 493 1185 1396 491 1272 1395 490 1186 1399 494 1253 1400 495 1187 1401 496 1142 1402 497 1187 1401 496 1253 1400 495 1188 1403 498 1144 1404 499 1188 1403 498 1253 1400 495 1189 1405 500 1143 1406 501 1189 1405 500 1253 1400 495 1186 1399 494 1141 1407 502 1190 1408 503 1254 1409 504 1191 1410 505 1145 1411 506 1191 1410 505 1254 1409 504 1192 1412 507 1130 1356 451 1192 1412 507 1254 1409 504 1186 1399 494 1142 1402 497 1186 1399 494 1254 1409 504 1190 1408 503 1141 1407 502 1193 1413 508 1255 1414 509 1281 1415 510 1225 1416 511 1281 1415 510 1255 1414 509 1194 1417 512 1226 1418 513 1194 1417 512 1255 1414 509 1185 1396 491 1140 1398 493 1185 1396 491 1255 1414 509 1193 1413 508 1139 1393 488 1195 1419 514 1256 1420 515 1188 1403 498 1143 1406 501 1188 1403 498 1256 1420 515 1196 1421 516 1144 1404 499 1196 1421 516 1256 1420 515 1284 1422 517 1230 1423 518 1284 1422 517 1256 1420 515 1195 1419 514 1231 1424 519 1216 1397 492 1271 1425 520 1194 1417 512 1140 1398 493 1227 1426 521 1226 1418 513 1194 1417 512 1271 1425 520 1197 1427 522 1257 1428 523 1283 1429 524 1229 1430 525 1283 1429 524 1257 1428 523 1196 1421 516 1230 1423 518 1196 1421 516 1257 1428 523 1187 1401 496 1144 1404 499 1187 1401 496 1257 1428 523 1197 1427 522 1142 1402 497 1198 1431 526 1258 1432 527 1220 1326 421 1125 1327 422 1221 1433 528 1258 1432 527 1198 1431 526 1146 1434 529 1200 1435 530 1259 1436 531 1199 1437 532 1147 1438 533 1174 1362 457 1260 1439 534 1201 1440 535 1133 1364 459 1302 1441 536 1304 1442 537 1305 1443 538 1201 1440 535 1198 1431 526 1261 1444 539 1203 1445 540 1146 1434 529 1203 1445 540 1261 1444 539 1097 1446 541 1076 1447 542 1097 1446 541 1261 1444 539 1163 1329 424 1072 1331 426 1163 1329 424 1261 1444 539 1198 1431 526 1125 1327 422 1305 1443 538 1262 1448 543 1175 1365 460 1306 1368 463 1175 1365 460 1262 1448 543 1098 1449 544 1075 1370 465 1098 1449 544 1262 1448 543 1204 1450 545 1077 1451 546 1204 1450 545 1262 1448 543 1305 1443 538 1304 1442 537 1148 1452 547 1276 1453 548 1221 1433 528 1146 1434 529 1199 1437 532 1206 1454 549 1205 1455 550 1147 1438 533 1265 1456 551 1303 1457 552 1304 1442 537 1302 1441 536 1078 1458 553 1263 1459 554 1203 1445 540 1076 1447 542 1203 1445 540 1263 1459 554 1148 1452 547 1146 1434 529 1204 1450 545 1264 1460 555 1099 1461 556 1077 1451 546 1303 1457 552 1264 1460 555 1204 1450 545 1304 1442 537 1206 1454 549 1129 1340 435 1208 1339 434 1205 1455 550 1074 1350 445 1266 1349 444 1263 1459 554 1078 1458 553 1263 1459 554 1266 1349 444 1209 1344 439 1148 1452 547 1279 1462 557 1267 1463 558 1210 1464 559 1224 1465 560 1210 1464 559 1267 1463 558 1176 1372 467 1135 1374 469 1176 1372 467 1267 1463 558 1164 1334 429 1121 1312 407 1164 1334 429 1267 1463 558 1279 1462 557 1223 1335 430 1285 1466 561 1268 1467 562 1184 1389 484 1232 1391 486 1184 1389 484 1268 1467 562 1211 1468 563 1137 1380 475 1211 1468 563 1268 1467 562 1195 1419 514 1143 1406 501 1195 1419 514 1268 1467 562 1285 1466 561 1231 1424 519 1149 1469 564 1269 1470 565 1212 1471 566 1145 1411 506 1212 1471 566 1269 1470 565 1213 1472 567 1138 1386 481 1134 1373 468 1300 1473 568 1214 1474 569 1135 1374 469 1139 1393 488 1214 1474 569 1300 1473 568 1217 1394 489 1215 1475 570 1270 1476 571 1189 1405 500 1141 1407 502 1189 1405 500 1270 1476 571 1211 1468 563 1143 1406 501 1211 1468 563 1270 1476 571 1178 1377 472 1137 1380 475 1178 1377 472 1270 1476 571 1215 1475 570 1136 1378 473 1227 1426 521 1271 1425 520 1247 1352 447 1228 1351 446 1247 1352 447 1271 1425 520 1216 1397 492 1169 1355 450 1216 1397 492 1272 1395 490 1293 1477 572 1169 1355 450 1293 1477 572 1272 1395 490 1217 1394 489 1149 1469 564 1134 1373 468 1273 1371 466 1290 1478 573 1213 1472 567 1290 1478 573 1273 1371 466 1218 1311 406 1124 1320 415 1218 1311 406 1274 1314 409 1160 1317 412 1124 1320 415 1160 1317 412 1274 1314 409 1219 1290 388 1123 1318 413 1115 1479 393 1275 1480 574 1159 1315 410 1123 1318 413 1330 1481 575 1161 1321 416 1122 1322 417 1259 1436 531 1258 1432 527 1221 1433 528 1199 1437 532 1221 1433 528 1276 1453 548 1206 1454 549 1199 1437 532 1276 1453 548 1296 1343 438 1129 1340 435 1206 1454 549 1114 1482 403 1277 1307 402 1100 1483 576 1068 1484 577 1100 1483 576 1277 1307 402 1222 1310 405 1079 1485 578 1222 1310 405 1278 1332 427 1101 1486 579 1079 1485 578 1101 1486 579 1278 1332 427 1223 1335 430 1080 1487 580 1223 1335 430 1279 1462 557 1102 1488 581 1080 1487 580 1102 1488 581 1279 1462 557 1224 1465 560 1081 1489 582 1224 1465 560 1280 1490 583 1103 1491 584 1081 1489 582 1103 1491 584 1280 1490 583 1225 1416 511 1082 1492 585 1225 1416 511 1281 1415 510 1104 1493 586 1082 1492 585 1104 1493 586 1281 1415 510 1226 1418 513 1083 1494 587 1083 1494 587 1226 1418 513 1227 1426 521 1084 1495 588 1084 1495 588 1227 1426 521 1228 1351 446 1085 1496 589 1131 1354 449 1282 1497 590 1105 1498 591 1087 1499 592 1105 1498 591 1282 1497 590 1229 1430 525 1086 1500 593 1106 1501 594 1283 1429 524 1230 1423 518 1088 1502 595 1229 1430 525 1283 1429 524 1106 1501 594 1086 1500 593 1230 1423 518 1284 1422 517 1107 1503 596 1088 1502 595 1107 1503 596 1284 1422 517 1231 1424 519 1089 1504 597 1108 1505 598 1285 1466 561 1232 1391 486 1090 1506 599 1231 1424 519 1285 1466 561 1108 1505 598 1089 1504 597 1232 1391 486 1286 1390 485 1109 1507 600 1090 1506 599 1109 1507 600 1286 1390 485 1233 1392 487 1091 1508 601 1233 1392 487 1287 1288 386 1110 1287 385 1091 1508 601 1168 1345 440 1288 1509 602 1234 1510 603 1128 1342 437 1234 1510 603 1288 1509 602 1264 1460 555 1303 1457 552 1264 1460 555 1288 1509 602 1111 1511 604 1099 1461 556 1111 1511 604 1288 1509 602 1168 1345 440 1073 1348 443 1085 1496 589 1228 1351 446 1131 1354 449 1087 1499 592 1200 1435 530 1289 1512 605 1235 1384 479 1127 1513 606 1235 1384 479 1289 1512 605 1260 1439 534 1174 1362 457 1260 1439 534 1289 1512 605 1236 1514 607 1202 1515 608 1236 1514 607 1289 1512 605 1200 1435 530 1147 1438 533 1213 1472 567 1290 1478 573 1182 1385 480 1138 1386 481 1126 1337 432 1182 1385 480 1290 1478 573 1124 1320 415 1205 1455 550 1291 1516 609 1236 1514 607 1147 1438 533 1236 1514 607 1291 1516 609 1207 1517 610 1202 1515 608 1215 1475 570 1292 1518 611 1180 1381 476 1136 1378 473 1180 1381 476 1292 1518 611 1212 1471 566 1138 1386 481 1212 1471 566 1292 1518 611 1190 1408 503 1145 1411 506 1190 1408 503 1292 1518 611 1215 1475 570 1141 1407 502 1208 1339 434 1294 1519 612 1291 1516 609 1205 1455 550 1291 1516 609 1294 1519 612 1265 1456 551 1207 1517 610 1169 1355 450 1293 1477 572 1191 1410 505 1130 1356 451 1191 1410 505 1293 1477 572 1149 1469 564 1145 1411 506 1234 1510 603 1294 1519 612 1208 1339 434 1128 1342 437 1282 1497 590 1295 1520 613 1197 1427 522 1229 1430 525 1197 1427 522 1295 1520 613 1192 1412 507 1142 1402 497 1192 1412 507 1295 1520 613 1170 1353 448 1130 1356 451 1170 1353 448 1295 1520 613 1282 1497 590 1131 1354 449 1209 1344 439 1296 1343 438 1276 1453 548 1148 1452 547 1219 1290 388 1297 1293 391 1115 1521 393 1123 1318 413 1235 1384 479 1181 1383 478 1126 1337 432 1165 1336 431 1127 1513 606 1183 1387 482 1298 1522 614 1287 1288 386 1233 1392 487 1287 1288 386 1298 1522 614 1239 1285 383 1239 1285 383 1298 1522 614 1310 1286 384 1172 1359 454 1298 1522 614 1183 1387 482 1132 1360 455 1210 1464 559 1299 1523 615 1280 1490 583 1224 1465 560 1280 1490 583 1299 1523 615 1193 1413 508 1225 1416 511 1193 1413 508 1299 1523 615 1214 1474 569 1139 1393 488 1214 1474 569 1299 1523 615 1210 1464 559 1135 1374 469 1217 1394 489 1300 1473 568 1269 1470 565 1149 1469 564 1269 1470 565 1300 1473 568 1134 1373 468 1213 1472 567 1301 1361 456 1177 1375 470 1251 1382 477 1181 1383 478 1171 1357 452 1250 1376 471 1177 1375 470 1301 1361 456 1202 1515 608 1207 1517 610 1265 1456 551 1302 1441 536 1201 1440 535 1260 1439 534 1202 1515 608 1302 1441 536 1265 1456 551 1294 1519 612 1234 1510 603 1303 1457 552 1201 1440 535 1305 1443 538 1306 1368 463 1133 1364 459 1307 1367 462 1173 1363 458 1133 1364 459 1306 1368 463 1173 1363 458 1307 1367 462 1308 1283 381 1152 1278 376 1152 1278 376 1308 1283 381 1309 1284 382 1117 1276 374 1310 1286 384 1116 1274 372 1117 1276 374 1309 1284 382 1298 1522 614 1172 1359 454 1116 1274 372 1310 1286 384 1068 1524 1843 1319 1525 1844 1318 1526 1845 1114 1527 1846 902 1272 1841 1321 1528 1847 1318 1526 1845 906 1027 1716 902 1272 1841 906 1027 1716 1311 1026 1715 901 1273 1842 1311 1026 1715 899 1022 1711 900 1024 1713 901 1273 1842 898 1023 1712 899 1022 1711 1311 1026 1715 1312 1025 1714 1113 1529 1848 1322 1530 1849 1323 1531 1850 1115 1532 1851 1313 1013 1702 1324 1533 1852 1323 1531 1850 904 1270 1839 1316 1534 1853 1325 1535 1854 1326 1536 1855 1317 1537 1856 1315 1538 1857 1320 1539 1858 1332 1540 1859 897 1018 1707 903 1271 1840 1322 1530 1849 1321 1528 1847 902 1272 1841 895 1014 1703 1325 1535 1854 1324 1533 1852 1313 1013 1702 1159 1315 410 1275 1541 574 1316 1542 616 1122 1322 417 1120 1296 394 1119 1325 420 1317 1543 617 1112 1544 395 1314 1016 1705 1327 1545 1860 1326 1536 1855 896 1015 1704 1317 1546 617 1119 1325 420 1122 1322 417 1316 1547 616 906 1027 1716 1318 1526 1845 1319 1525 1844 905 1028 1717 1150 1548 1861 1332 1540 1859 1320 1539 1858 1069 1549 1862 1114 1550 1846 1318 1526 1845 1321 1528 1847 1156 1551 1863 1156 1552 1863 1321 1528 1847 1322 1530 1849 1113 1553 1848 904 1270 1839 1323 1531 1850 1322 1530 1849 903 1271 1840 1115 1554 1851 1323 1531 1850 1324 1533 1852 1275 1555 1864 1275 1556 1864 1324 1533 1852 1325 1535 1854 1316 1557 1853 896 1015 1704 1326 1536 1855 1325 1535 1854 895 1014 1703 1317 1558 1856 1326 1536 1855 1327 1545 1860 1112 1559 1865 1112 1560 1865 1327 1545 1860 1332 1540 1859 1150 1561 1861 1328 1562 618 1259 1436 531 1200 1435 530 1127 1513 606 1220 1326 421 1258 1432 527 1259 1436 531 1328 1562 618 1329 1563 619 1242 1324 419 1220 1326 421 1328 1562 618 1166 1338 433 1328 1562 618 1127 1513 606 1165 1336 431 1330 1481 575 1329 1563 619 1328 1562 618 1166 1338 433 1119 1325 420 1329 1563 619 1330 1481 575 1122 1322 417 1119 1325 420 1242 1324 419 1329 1563 619 1161 1321 416 1330 1481 575 1166 1338 433 1245 1319 414 1314 1016 1705 897 1018 1707 1332 1540 1859 1327 1545 1860 720 830 1519 721 832 1521 1333 849 1538 734 848 1537 734 848 1537 1333 849 1538 1334 863 1552 747 862 1551 747 862 1551 1334 863 1552 1335 877 1566 760 876 1565 760 876 1565 1335 877 1566 1336 891 1580 773 890 1579 773 890 1579 1336 891 1580 2 361 1172 786 904 1593 786 904 1593 2 361 1172 86 364 1175 798 916 1605 884 1002 1691 320 1020 1709 1337 1017 1706 891 1009 1698 696 807 1496 709 810 1499 1349 1564 1866 1338 1565 1867 1338 1565 1867 1349 1564 1866 1350 1566 1868 1339 1567 1869 1339 1567 1869 1350 1566 1868 1351 1568 1870 1340 1569 1871 1340 1569 1871 1351 1568 1870 1352 1570 1872 1341 1571 1873 1341 1571 1873 1352 1570 1872 1353 1572 1874 1342 1573 1875 1342 1573 1875 1353 1572 1874 1354 1574 1876 1343 1575 1877 1343 1575 1877 1354 1574 1876 1355 1576 1878 1344 1577 1879 1344 1577 1879 1355 1576 1878 1356 1578 1880 1345 1579 1881 1345 1579 1881 1356 1578 1880 1357 1580 1882 1346 1581 1883 1346 1581 1883 1357 1580 1882 1358 1582 1884 1347 1583 1885 1347 1583 1885 1358 1582 1884 1359 1584 1886 1348 1585 1887 1348 1585 1887 1359 1584 1886 1360 1586 1888 1897 1587 1889 1897 1587 1889 1360 1586 1888 1972 1588 1890 1973 1589 1891 709 810 1499 723 838 1527 1361 1590 1892 1349 1564 1866 1349 1564 1866 1361 1590 1892 1362 1591 1893 1350 1566 1868 1350 1566 1868 1362 1591 1893 1363 1592 1894 1351 1568 1870 1351 1568 1870 1363 1592 1894 1364 1593 1895 1352 1570 1872 1352 1570 1872 1364 1593 1895 1365 1594 1896 1353 1572 1874 1353 1572 1874 1365 1594 1896 1366 1595 1897 1354 1574 1876 1354 1574 1876 1366 1595 1897 1367 1596 1898 1355 1576 1878 1355 1576 1878 1367 1596 1898 1368 1597 1899 1356 1578 1880 1356 1578 1880 1368 1597 1899 1369 1598 1900 1357 1580 1882 1357 1580 1882 1369 1598 1900 1370 1599 1901 1358 1582 1884 1358 1582 1884 1370 1599 1901 1371 1600 1902 1359 1584 1886 1360 1586 1888 1899 1601 1903 1975 1602 1904 1972 1588 1890 723 838 1527 736 852 1541 1372 1603 1905 1361 1590 1892 1361 1590 1892 1372 1603 1905 1373 1604 1906 1362 1591 1893 1362 1591 1893 1373 1604 1906 1374 1605 1907 1363 1592 1894 1363 1592 1894 1374 1605 1907 1375 1606 1908 1364 1593 1895 1364 1593 1895 1375 1606 1908 1376 1607 1909 1365 1594 1896 1365 1594 1896 1376 1607 1909 1377 1608 1910 1366 1595 1897 1366 1595 1897 1377 1608 1910 1378 1609 1911 1367 1596 1898 1367 1596 1898 1378 1609 1911 1379 1610 1912 1368 1597 1899 1368 1597 1899 1379 1610 1912 1380 1611 1913 1369 1598 1900 1369 1598 1900 1380 1611 1913 1381 1612 1914 1370 1599 1901 1370 1599 1901 1381 1612 1914 1382 1613 1915 1371 1600 1902 1899 1601 1903 1900 1614 1916 1976 1615 1917 1975 1602 1904 736 852 1541 749 866 1555 1383 1616 1918 1372 1603 1905 1372 1603 1905 1383 1616 1918 1384 1617 1919 1373 1604 1906 1373 1604 1906 1384 1617 1919 1385 1618 1920 1374 1605 1907 1374 1605 1907 1385 1618 1920 1386 1619 1921 1375 1606 1908 1375 1606 1908 1386 1619 1921 1387 1620 1922 1376 1607 1909 1376 1607 1909 1387 1620 1922 1388 1621 1923 1377 1608 1910 1377 1608 1910 1388 1621 1923 1389 1622 1924 1378 1609 1911 1378 1609 1911 1389 1622 1924 1390 1623 1925 1379 1610 1912 1379 1610 1912 1390 1623 1925 1391 1624 1926 1380 1611 1913 1380 1611 1913 1391 1624 1926 1392 1625 1927 1381 1612 1914 1381 1612 1914 1392 1625 1927 1393 1626 1928 1382 1613 1915 1900 1614 1916 1901 1627 1929 1977 1628 1930 1976 1615 1917 749 866 1555 762 880 1569 1394 1629 1931 1383 1616 1918 1383 1616 1918 1394 1629 1931 1395 1630 1932 1384 1617 1919 1384 1617 1919 1395 1630 1932 1396 1631 1933 1385 1618 1920 1385 1618 1920 1396 1631 1933 1397 1632 1934 1386 1619 1921 1386 1619 1921 1397 1632 1934 1398 1633 1935 1387 1620 1922 1387 1620 1922 1398 1633 1935 1399 1634 1936 1388 1621 1923 1388 1621 1923 1399 1634 1936 1400 1635 1937 1389 1622 1924 1389 1622 1924 1400 1635 1937 1401 1636 1938 1390 1623 1925 1390 1623 1925 1401 1636 1938 1402 1637 1939 1391 1624 1926 1391 1624 1926 1402 1637 1939 1403 1638 1940 1392 1625 1927 1392 1625 1927 1403 1638 1940 1404 1639 1941 1393 1626 1928 1901 1627 1929 1902 1640 1942 1974 1641 1943 1977 1628 1930 762 880 1569 775 894 1583 1405 1642 1944 1394 1629 1931 1394 1629 1931 1405 1642 1944 1406 1643 1945 1395 1630 1932 1395 1630 1932 1406 1643 1945 1407 1644 1946 1396 1631 1933 1396 1631 1933 1407 1644 1946 1408 1645 1947 1397 1632 1934 1397 1632 1934 1408 1645 1947 1409 1646 1948 1398 1633 1935 1398 1633 1935 1409 1646 1948 1410 1647 1949 1399 1634 1936 1399 1634 1936 1410 1647 1949 1411 1648 1950 1400 1635 1937 1400 1635 1937 1411 1648 1950 1412 1649 1951 1401 1636 1938 1401 1636 1938 1412 1649 1951 1413 1650 1952 1402 1637 1939 1402 1637 1939 1413 1650 1952 1414 1651 1953 1403 1638 1940 1403 1638 1940 1414 1651 1953 1415 1652 1954 1404 1639 1941 2043 435 1231 2044 1653 1955 1974 1641 1943 434 436 1232 775 894 1583 787 906 1595 1416 1654 1956 1405 1642 1944 1405 1642 1944 1416 1654 1956 1417 1655 1957 1406 1643 1945 1406 1643 1945 1417 1655 1957 1418 1656 1958 1407 1644 1946 1407 1644 1946 1418 1656 1958 1419 1657 1959 1408 1645 1947 1408 1645 1947 1419 1657 1959 1420 1658 1960 1409 1646 1948 1409 1646 1948 1420 1658 1960 1421 1659 1961 1410 1647 1949 1410 1647 1949 1421 1659 1961 1422 1660 1962 1411 1648 1950 1411 1648 1950 1422 1660 1962 1423 1661 1963 1412 1649 1951 1412 1649 1951 1423 1661 1963 1424 1662 1964 1413 1650 1952 1413 1650 1952 1424 1662 1964 1425 1663 1965 1414 1651 1953 1414 1651 1953 1425 1663 1965 1426 1664 1966 1415 1652 1954 787 906 1595 799 918 1607 1427 1665 1967 1416 1654 1956 1416 1654 1956 1427 1665 1967 1428 1666 1968 1417 1655 1957 1417 1655 1957 1428 1666 1968 1429 1667 1969 1418 1656 1958 1418 1656 1958 1429 1667 1969 1430 1668 1970 1419 1657 1959 1419 1657 1959 1430 1668 1970 1431 1669 1971 1420 1658 1960 1420 1658 1960 1431 1669 1971 1432 1670 1972 1421 1659 1961 1421 1659 1961 1432 1670 1972 1433 1671 1973 1422 1660 1962 1422 1660 1962 1433 1671 1973 1434 1672 1974 1423 1661 1963 1423 1661 1963 1434 1672 1974 1435 1673 1975 1424 1662 1964 1424 1662 1964 1435 1673 1975 1436 1674 1976 1425 1663 1965 1425 1663 1965 1436 1674 1976 1437 1675 1977 1426 1664 1966 799 918 1607 811 930 1619 1438 1676 1978 1427 1665 1967 1427 1665 1967 1438 1676 1978 1439 1677 1979 1428 1666 1968 1428 1666 1968 1439 1677 1979 1440 1678 1980 1429 1667 1969 1429 1667 1969 1440 1678 1980 1441 1679 1981 1430 1668 1970 1430 1668 1970 1441 1679 1981 1442 1680 1982 1431 1669 1971 1431 1669 1971 1442 1680 1982 1443 1681 1983 1432 1670 1972 1432 1670 1972 1443 1681 1983 1444 1682 1984 1433 1671 1973 1433 1671 1973 1444 1682 1984 1445 1683 1985 1434 1672 1974 1434 1672 1974 1445 1683 1985 1446 1684 1986 1435 1673 1975 1435 1673 1975 1446 1684 1986 1447 1685 1987 1436 1674 1976 1436 1674 1976 1447 1685 1987 1448 1686 1988 1437 1675 1977 811 930 1619 823 942 1631 1449 1687 1989 1438 1676 1978 1438 1676 1978 1449 1687 1989 1450 1688 1990 1439 1677 1979 1439 1677 1979 1450 1688 1990 1451 1689 1991 1440 1678 1980 1440 1678 1980 1451 1689 1991 1452 1690 1992 1441 1679 1981 1441 1679 1981 1452 1690 1992 1453 1691 1993 1442 1680 1982 1442 1680 1982 1453 1691 1993 1454 1692 1994 1443 1681 1983 1443 1681 1983 1454 1692 1994 1455 1693 1995 1444 1682 1984 1444 1682 1984 1455 1693 1995 1456 1694 1996 1445 1683 1985 1445 1683 1985 1456 1694 1996 1457 1695 1997 1446 1684 1986 1446 1684 1986 1457 1695 1997 1458 1696 1998 1447 1685 1987 1447 1685 1987 1458 1696 1998 1459 1697 1999 1448 1686 1988 823 942 1631 846 954 1643 1460 1698 2000 1449 1687 1989 1449 1687 1989 1460 1698 2000 1461 1699 2001 1450 1688 1990 1450 1688 1990 1461 1699 2001 1462 1700 2002 1451 1689 1991 1451 1689 1991 1462 1700 2002 1463 1701 2003 1452 1690 1992 1452 1690 1992 1463 1701 2003 1464 1702 2004 1453 1691 1993 1453 1691 1993 1464 1702 2004 1465 1703 2005 1454 1692 1994 1454 1692 1994 1465 1703 2005 1466 1704 2006 1455 1693 1995 1455 1693 1995 1466 1704 2006 1467 1705 2007 1456 1694 1996 1456 1694 1996 1467 1705 2007 1468 1706 2008 1457 1695 1997 1457 1695 1997 1468 1706 2008 1469 1707 2009 1458 1696 1998 1458 1696 1998 1469 1707 2009 1470 1708 2010 1459 1697 1999 846 954 1643 847 966 1655 1471 1709 2011 1460 1698 2000 1460 1698 2000 1471 1709 2011 1472 1710 2012 1461 1699 2001 1461 1699 2001 1472 1710 2012 1473 1711 2013 1462 1700 2002 1462 1700 2002 1473 1711 2013 1474 1712 2014 1463 1701 2003 1463 1701 2003 1474 1712 2014 1475 1713 2015 1464 1702 2004 1464 1702 2004 1475 1713 2015 1476 1714 2016 1465 1703 2005 1465 1703 2005 1476 1714 2016 1477 1715 2017 1466 1704 2006 1466 1704 2006 1477 1715 2017 1478 1716 2018 1467 1705 2007 1467 1705 2007 1478 1716 2018 1479 1717 2019 1468 1706 2008 1468 1706 2008 1479 1717 2019 1480 1718 2020 1469 1707 2009 1469 1707 2009 1480 1718 2020 1481 1719 2021 1470 1708 2010 847 966 1655 859 978 1667 1482 1720 2022 1471 1709 2011 1471 1709 2011 1482 1720 2022 1483 1721 2023 1472 1710 2012 1472 1710 2012 1483 1721 2023 1484 1722 2024 1473 1711 2013 1476 1714 2016 1485 1723 2025 1477 1715 2017 1477 1715 2017 1485 1723 2025 1488 1724 2026 1478 1716 2018 1478 1716 2018 1488 1724 2026 1489 1725 2027 1479 1717 2019 1479 1717 2019 1489 1725 2027 1490 1726 2028 1480 1718 2020 1480 1718 2020 1490 1726 2028 1491 1727 2029 1481 1719 2021 859 978 1667 868 987 1676 1486 1728 2030 1482 1720 2022 1482 1720 2022 1486 1728 2030 1487 1729 2031 1483 1721 2023 868 987 1676 871 990 1679 1492 1730 2032 1486 1728 2030 1486 1728 2030 1492 1730 2032 1493 1731 2033 1487 1729 2031 1495 1732 2034 1489 1725 2027 1488 1724 2026 1494 1733 2035 1489 1725 2027 1495 1732 2034 1496 1734 2036 1490 1726 2028 1490 1726 2028 1496 1734 2036 1497 1735 2037 1491 1727 2029 871 990 1679 878 997 1686 1498 1736 2038 1492 1730 2032 1492 1730 2032 1498 1736 2038 1499 1737 2039 1493 1731 2033 1501 1738 2040 1495 1732 2034 1494 1733 2035 1500 1739 2041 1495 1732 2034 1501 1738 2040 1502 1740 2042 1496 1734 2036 1496 1734 2036 1502 1740 2042 1503 1741 2043 1497 1735 2037 878 997 1686 885 1004 1693 1504 1742 2044 1498 1736 2038 1498 1736 2038 1504 1742 2044 1505 1743 2045 1499 1737 2039 1507 1744 2046 1501 1738 2040 1500 1739 2041 1506 1745 2047 1501 1738 2040 1507 1744 2046 1508 1746 2048 1502 1740 2042 1502 1740 2042 1508 1746 2048 1509 1747 2049 1503 1741 2043 885 1004 1693 892 1011 1700 1510 1748 2050 1504 1742 2044 1504 1742 2044 1510 1748 2050 1511 1749 2051 1505 1743 2045 1882 1750 2052 1512 1751 2053 1507 1744 2046 1506 1745 2047 1507 1744 2046 1512 1751 2053 1513 1752 2054 1508 1746 2048 1508 1746 2048 1513 1752 2054 1883 1753 2055 1509 1747 2049 1509 1747 2049 1883 1753 2055 1514 1754 2056 1904 1755 2057 1904 1755 2057 1985 1019 1708 1986 1021 1710 1903 1756 2058 892 1011 1700 898 1023 1712 1515 1757 2059 1510 1748 2050 1510 1748 2050 1515 1757 2059 1516 1758 2060 1511 1749 2051 1312 1025 1714 905 1028 1717 1521 1759 2061 1881 1760 2062 1338 1565 1867 907 1029 1718 696 807 1496 1339 1567 1869 907 1029 1718 1338 1565 1867 1340 1569 1871 907 1029 1718 1339 1567 1869 1341 1571 1873 907 1029 1718 1340 1569 1871 1342 1573 1875 907 1029 1718 1341 1571 1873 1343 1575 1877 907 1029 1718 1342 1573 1875 1344 1577 1879 907 1029 1718 1343 1575 1877 1345 1579 1881 907 1029 1718 1344 1577 1879 1346 1581 1883 907 1029 1718 1345 1579 1881 1347 1583 1885 907 1029 1718 1346 1581 1883 1348 1585 1887 907 1029 1718 1347 1583 1885 1348 1585 1887 1897 1587 1889 907 1029 1718 1973 1589 1891 907 1029 1718 1897 1587 1889 1555 1761 692 1621 1762 693 1658 1763 694 1594 1764 695 1621 1762 693 1555 1761 692 1570 1765 696 1642 1766 697 1556 1767 698 1621 1762 693 1642 1766 697 1572 1768 699 1621 1762 693 1556 1767 698 1595 1769 700 1658 1763 694 1557 1770 701 1622 1771 702 1657 1772 703 1593 1773 704 1622 1771 702 1557 1770 701 1569 1774 705 1643 1775 706 1555 1761 692 1622 1771 702 1643 1775 706 1570 1765 696 1622 1771 702 1555 1761 692 1594 1764 695 1657 1772 703 1558 1776 707 1623 1777 708 1656 1778 709 1592 1779 710 1623 1777 708 1558 1776 707 1567 1780 711 1641 1781 712 1557 1770 701 1623 1777 708 1641 1781 712 1569 1774 705 1623 1777 708 1557 1770 701 1593 1773 704 1656 1778 709 1559 1782 713 1624 1783 714 1655 1784 715 1591 1785 716 1624 1783 714 1559 1782 713 1574 1786 717 1644 1787 718 1558 1776 707 1624 1783 714 1644 1787 718 1567 1780 711 1624 1783 714 1558 1776 707 1592 1779 710 1655 1784 715 1625 1788 719 1560 1789 720 1578 1790 721 1646 1791 722 1559 1782 713 1625 1788 719 1646 1791 722 1574 1786 717 1625 1788 719 1681 1792 723 1680 1793 724 1560 1789 720 1561 1794 725 1626 1795 726 1654 1796 727 1590 1797 728 1626 1795 726 1561 1794 725 1582 1798 729 1648 1799 730 1560 1789 720 1626 1795 726 1648 1799 730 1578 1790 721 1626 1795 726 1560 1789 720 1680 1793 724 1654 1796 727 1562 1800 731 1627 1801 732 1653 1802 733 1589 1803 734 1627 1801 732 1562 1800 731 1585 1804 735 1650 1805 736 1561 1794 725 1627 1801 732 1650 1805 736 1582 1798 729 1627 1801 732 1561 1794 725 1590 1797 728 1653 1802 733 1563 1806 737 1628 1807 738 1652 1808 739 1587 1809 740 1628 1807 738 1563 1806 737 1581 1810 741 1649 1811 742 1562 1800 731 1628 1807 738 1649 1811 742 1585 1804 735 1628 1807 738 1562 1800 731 1589 1803 734 1652 1808 739 1564 1812 743 1629 1813 744 1651 1814 745 1588 1815 746 1629 1813 744 1564 1812 743 1577 1816 747 1647 1817 748 1563 1806 737 1629 1813 744 1647 1817 748 1581 1810 741 1629 1813 744 1563 1806 737 1587 1809 740 1651 1814 745 1556 1767 698 1630 1818 749 1659 1819 750 1595 1769 700 1630 1818 749 1556 1767 698 1572 1768 699 1645 1820 752 1564 1812 743 1630 1818 749 1645 1820 752 1577 1816 747 1630 1818 749 1564 1812 743 1588 1815 746 1659 1819 750 1658 1763 694 1595 1769 700 1587 1809 740 1652 1808 739 1662 1821 2063 1600 1822 2064 1927 1823 2065 1926 1824 2066 1631 1825 2067 1537 1826 2068 1925 1827 2069 1926 1824 2066 1664 1828 2070 1604 1829 2071 1934 1830 2072 1932 1831 2073 1632 1832 2074 1539 1833 2075 1930 1834 2076 1932 1831 2073 1665 1835 2077 1523 1836 2078 1930 1834 2076 1928 1837 2079 1633 1838 2080 1565 1839 2081 1927 1823 2065 1928 1837 2079 1666 1840 2082 1522 1841 2083 1925 1827 2069 1929 1842 2084 1634 1843 2085 1538 1844 2086 1931 1845 2087 1929 1842 2084 1667 1846 2088 1524 1847 2089 1931 1845 2087 1933 1848 2090 1635 1849 2091 1540 1850 2092 1935 1851 2093 1933 1848 2090 1636 1852 2094 1541 1853 2095 1939 1854 2096 1937 1855 2097 1660 1856 2098 1596 1857 2099 1935 1851 2093 1937 1855 2097 1661 1858 2100 1598 1859 2101 1939 1854 2096 1941 1860 2102 1637 1861 2103 1543 1862 2104 1943 1863 2105 1941 1860 2102 1668 1864 2106 1525 1865 2107 1943 1863 2105 1944 1866 2108 1638 1867 2109 1544 1868 2110 1942 1869 2111 1944 1866 2108 1663 1870 2112 1602 1871 2113 1942 1869 2111 1940 1872 2114 1639 1873 2115 1542 1874 2116 1938 1875 2117 1940 1872 2114 1669 1876 2118 1526 1877 2119 1938 1875 2117 1936 1878 2120 1640 1879 2121 1566 1880 2122 1934 1830 2072 1936 1878 2120 1567 1780 711 1528 1881 944 1568 1882 949 1641 1781 712 1568 1883 949 1527 1884 947 1569 1774 705 1641 1781 712 1570 1765 696 1530 1885 946 1571 1886 948 1642 1766 697 1571 1887 948 1529 1888 942 1572 1768 699 1642 1766 697 1569 1774 705 1527 1889 947 1573 1890 945 1643 1775 706 1573 1891 945 1530 1892 946 1570 1765 696 1643 1775 706 1574 1786 717 1531 1893 940 1575 1894 943 1644 1787 718 1575 1895 943 1528 1896 944 1567 1780 711 1644 1787 718 1572 1768 699 1529 1897 942 1576 1898 941 1645 1820 752 1576 1899 941 1532 1900 938 1577 1816 747 1645 1820 752 1578 1790 721 1533 1901 936 1579 1902 939 1646 1791 722 1579 1903 939 1531 1904 940 1574 1786 717 1646 1791 722 1577 1816 747 1532 1905 938 1580 1906 937 1647 1817 748 1580 1907 937 1534 1908 934 1581 1810 741 1647 1817 748 1582 1798 729 1535 1909 931 1583 1910 935 1648 1799 730 1583 1911 935 1533 1912 936 1578 1790 721 1648 1799 730 1581 1810 741 1534 1913 934 1584 1914 933 1649 1811 742 1584 1915 933 1536 1916 932 1585 1804 735 1649 1811 742 1585 1804 735 1536 1917 932 1586 1918 930 1650 1805 736 1586 1919 930 1535 1920 931 1582 1798 729 1650 1805 736 1568 1921 2123 1528 1922 2124 1538 1844 2086 1634 1843 2085 1568 1923 2123 1634 1843 2085 1537 1826 2068 1527 1924 2125 1571 1925 2126 1530 1926 2127 1565 1839 2081 1633 1838 2080 1571 1927 2126 1633 1838 2080 1539 1833 2075 1529 1928 2128 1573 1929 2129 1527 1930 2125 1537 1826 2068 1631 1825 2067 1573 1931 2129 1631 1825 2067 1565 1839 2081 1530 1932 2127 1575 1933 2130 1531 1934 2131 1540 1850 2092 1635 1849 2091 1575 1935 2130 1635 1849 2091 1538 1844 2086 1528 1936 2124 1576 1937 2132 1529 1938 2128 1539 1833 2075 1632 1832 2074 1576 1939 2132 1632 1832 2074 1566 1880 2122 1532 1940 2133 1579 1941 2134 1533 1942 2135 1541 1853 2095 1636 1852 2094 1579 1943 2134 1636 1852 2094 1540 1850 2092 1531 1944 2131 1580 1945 2136 1532 1946 2133 1566 1880 2122 1640 1879 2121 1580 1947 2136 1640 1879 2121 1542 1874 2116 1534 1948 2137 1583 1949 2138 1535 1950 2139 1543 1862 2104 1637 1861 2103 1583 1951 2138 1637 1861 2103 1541 1853 2095 1533 1952 2135 1584 1953 2140 1534 1954 2137 1542 1874 2116 1639 1873 2115 1584 1955 2140 1639 1873 2115 1544 1868 2110 1536 1956 2141 1586 1957 2142 1536 1958 2141 1544 1868 2110 1638 1867 2109 1586 1959 2142 1638 1867 2109 1543 1862 2104 1535 1960 2139 1598 1859 2101 1546 1961 2143 1610 1962 2144 1660 1856 2098 1610 1962 2144 1545 1963 2145 1596 1857 2099 1660 1856 2098 1525 1865 2107 1547 1964 2146 1597 1965 2147 1661 1858 2100 1597 1965 2147 1546 1961 2143 1598 1859 2101 1661 1858 2100 1522 1841 2083 1549 1966 2148 1599 1967 2149 1662 1821 2063 1599 1967 2149 1548 1968 2150 1600 1822 2064 1662 1821 2063 1526 1877 2119 1551 1969 2151 1601 1970 2152 1663 1870 2112 1601 1970 2152 1550 1971 2153 1602 1871 2113 1663 1870 2112 1523 1836 2078 1553 1972 2154 1603 1973 2155 1664 1828 2070 1603 1973 2155 1552 1974 2156 1604 1829 2071 1664 1828 2070 1600 1822 2064 1548 1968 2150 1605 1975 2157 1665 1835 2077 1605 1975 2157 1553 1972 2154 1523 1836 2078 1665 1835 2077 1524 1847 2089 1554 1976 2158 1606 1977 2159 1666 1840 2082 1606 1977 2159 1549 1966 2148 1522 1841 2083 1666 1840 2082 1596 1857 2099 1545 1963 2145 1607 1978 2160 1667 1846 2088 1607 1978 2160 1554 1976 2158 1524 1847 2089 1667 1846 2088 1602 1871 2113 1550 1971 2153 1608 1979 2161 1668 1864 2106 1608 1979 2161 1547 1964 2146 1525 1865 2107 1668 1864 2106 1604 1829 2071 1552 1974 2156 1609 1980 2162 1669 1876 2118 1609 1980 2162 1551 1969 2151 1526 1877 2119 1669 1876 2118 1610 1962 2144 1546 1961 2143 1611 1981 2163 1670 1982 2164 1612 1983 2165 1545 1963 2145 1610 1962 2144 1670 1982 2164 1597 1965 2147 1547 1964 2146 1613 1984 2166 1671 1985 2167 1611 1981 2163 1546 1961 2143 1597 1965 2147 1671 1985 2167 1599 1967 2149 1549 1966 2148 1614 1986 2168 1672 1987 2169 1615 1988 2170 1548 1968 2150 1599 1967 2149 1672 1987 2169 1601 1970 2152 1551 1969 2151 1616 1989 2171 1673 1990 2172 1617 1991 2173 1550 1971 2153 1601 1970 2152 1673 1990 2172 1603 1973 2155 1553 1972 2154 1618 1992 2174 1674 1993 2175 1619 1994 2176 1552 1974 2156 1603 1973 2155 1674 1993 2175 1605 1975 2157 1548 1968 2150 1615 1988 2170 1675 1995 2177 1618 1992 2174 1553 1972 2154 1605 1975 2157 1675 1995 2177 1606 1977 2159 1554 1976 2158 1620 1996 2178 1676 1997 2179 1614 1986 2168 1549 1966 2148 1606 1977 2159 1676 1997 2179 1607 1978 2160 1545 1963 2145 1612 1983 2165 1677 1998 2180 1620 1996 2178 1554 1976 2158 1607 1978 2160 1677 1998 2180 1608 1979 2161 1550 1971 2153 1617 1991 2173 1678 1999 2181 1613 1984 2166 1547 1964 2146 1608 1979 2161 1678 1999 2181 1609 1980 2162 1552 1974 2156 1619 1994 2176 1679 2000 2182 1616 1989 2171 1551 1969 2151 1609 1980 2162 1679 2000 2182 1587 1809 740 1595 1769 700 1659 1819 750 1588 1815 746 1651 1814 745 1594 1764 695 1589 1803 734 1653 1802 733 1657 1772 703 1658 1763 694 1652 1808 739 1589 1803 734 1594 1764 695 1657 1772 703 1653 1802 733 1590 1797 728 1593 1773 704 1592 1779 710 1680 1793 724 1681 1792 723 1591 1785 716 1655 1784 715 1593 1773 704 1590 1797 728 1654 1796 727 1656 1778 709 1625 1788 719 1559 1782 713 1591 1785 716 1681 1792 723 1592 1779 710 1656 1778 709 1654 1796 727 1680 1793 724 1611 1981 2163 1519 2001 2183 1520 2002 2184 1670 1982 2164 1670 1982 2164 1520 2002 2184 1882 1750 2052 1612 1983 2165 1613 1984 2166 1517 2003 2185 1518 2004 2186 1671 1985 2167 1614 1986 2168 1488 1724 2026 1485 1723 2025 1672 1987 2169 1672 1987 2169 1485 1723 2025 1476 1714 2016 1615 1988 2170 1616 1989 2171 1499 1737 2039 1505 1743 2045 1673 1990 2172 1673 1990 2172 1505 1743 2045 1511 1749 2051 1617 1991 2173 1618 1992 2174 1474 1712 2014 1484 1722 2024 1674 1993 2175 1674 1993 2175 1484 1722 2024 1487 1729 2031 1619 1994 2176 1615 1988 2170 1476 1714 2016 1475 1713 2015 1675 1995 2177 1675 1995 2177 1475 1713 2015 1474 1712 2014 1618 1992 2174 1620 1996 2178 1500 1739 2041 1494 1733 2035 1676 1997 2179 1676 1997 2179 1494 1733 2035 1488 1724 2026 1614 1986 2168 1677 1998 2180 1506 1745 2047 1500 1739 2041 1620 1996 2178 1617 1991 2173 1511 1749 2051 1516 1758 2060 1678 1999 2181 1678 1999 2181 1516 1758 2060 1517 2003 2185 1613 1984 2166 1619 1994 2176 1487 1729 2031 1493 1731 2033 1679 2000 2182 1679 2000 2182 1493 1731 2033 1499 1737 2039 1616 1989 2171 1671 1985 2167 1518 2004 2186 1519 2001 2183 1611 1981 2163 1487 1729 2031 1484 1722 2024 1483 1721 2023 1484 1722 2024 1474 1712 2014 1473 1711 2013 1677 1998 2180 1612 1983 2165 1882 1750 2052 1506 1745 2047 1807 2005 620 1687 2006 621 1721 2007 622 1721 2007 622 1687 2006 621 1722 2008 623 1807 2005 620 1723 2009 624 1070 1282 380 1092 1281 379 1808 2010 625 1878 2011 626 1879 2012 627 1723 2009 624 1808 2010 625 1723 2009 624 1879 2012 627 1880 2013 628 1809 2014 629 1110 1287 385 1093 1289 387 1809 2014 629 1857 2015 630 1093 1289 387 1070 1282 380 1723 2009 624 1809 2014 629 1789 2016 631 1867 2017 632 1724 2018 633 1688 2019 634 1683 2020 635 1724 2018 633 1867 2017 632 1685 2021 636 1690 2022 637 1725 2023 638 1720 2024 639 1682 2025 640 1071 1300 398 1069 2026 399 1720 2027 639 1725 2023 638 1724 2018 633 1683 2028 635 1726 2029 641 1810 2030 642 1726 2031 641 1684 2032 643 1847 2033 644 1810 2030 642 1847 2033 644 1792 2034 645 1727 2035 646 1810 2030 642 1727 2035 646 1688 2019 634 1724 2018 633 1810 2030 642 1788 2036 647 1844 2037 648 1728 2038 649 1691 2039 650 1789 2016 631 1688 2019 634 1728 2038 649 1844 2037 648 1729 2040 651 1693 2041 652 1730 2042 653 1811 2043 654 1730 2042 653 1694 2044 655 1815 2045 656 1811 2043 654 1815 2045 656 1731 2046 657 1811 2043 654 1731 2046 657 1692 2047 658 1729 2040 651 1811 2043 654 1732 2048 659 1690 2022 637 1689 2049 660 1812 2050 661 1790 2051 662 1695 2052 663 1732 2048 659 1812 2050 661 1732 2048 659 1695 2052 663 1733 2053 664 1813 2054 665 1733 2053 664 1072 1331 426 1094 1330 425 1813 2054 665 1094 1330 425 1071 1300 398 1725 2023 638 1813 2054 665 1725 2023 638 1690 2022 637 1732 2048 659 1813 2054 665 1848 2055 666 1793 2056 667 1734 2057 668 1814 2058 669 1734 2057 668 1691 2039 650 1728 2038 649 1814 2058 669 1728 2038 649 1688 2019 634 1727 2035 646 1814 2058 669 1727 2035 646 1792 2034 645 1848 2055 666 1814 2058 669 1694 2044 655 1696 2059 670 1735 2060 671 1815 2045 656 1735 2060 671 1736 2061 672 1815 2045 656 1778 2062 673 1698 2063 674 1737 2064 675 1699 2065 676 1737 2064 675 1779 2066 677 1866 2067 678 1699 2065 676 1738 2068 679 1073 1348 443 1095 1347 442 1816 2069 680 1095 1347 442 1074 1350 445 1836 2070 681 1816 2069 680 1836 2070 681 1779 2066 677 1737 2064 675 1816 2069 680 1737 2064 675 1698 2063 674 1738 2068 679 1816 2069 680 1798 2071 682 1701 2072 683 1740 2073 684 1817 2074 685 1740 2073 684 1700 2075 686 1739 2076 687 1817 2074 685 1741 2077 688 1702 2078 689 1742 2079 690 1818 2080 691 1742 2079 690 1686 2081 751 1807 2005 620 1818 2080 691 1741 2077 688 1818 2080 691 1744 2082 753 1871 2083 754 1807 2005 620 1722 2008 623 1743 2084 755 1818 2080 691 1743 2084 755 1703 2085 756 1744 2082 753 1818 2080 691 1745 2086 757 1876 2087 758 1877 2088 759 1819 2089 760 1877 2088 759 1878 2011 626 1808 2010 625 1819 2089 760 1808 2010 625 1092 1281 379 1096 1369 464 1819 2089 760 1096 1369 464 1075 1370 465 1745 2086 757 1819 2089 760 1788 2036 647 1691 2039 650 1746 2090 761 1843 2091 762 1704 2092 763 1843 2091 762 1746 2090 761 1705 2093 764 1747 2094 765 1706 2095 766 1748 2096 767 1820 2097 768 1748 2096 767 1707 2098 769 1749 2099 770 1820 2097 768 1749 2099 770 1702 2078 689 1741 2077 688 1820 2097 768 1750 2100 771 1706 2095 766 1747 2094 765 1821 2101 772 1751 2102 773 1871 2083 754 1744 2082 753 1805 2103 774 1751 2102 773 1696 2059 670 1752 2104 775 1821 2101 772 1752 2104 775 1708 2105 776 1750 2100 771 1821 2101 772 1753 2106 777 1702 2078 689 1749 2099 770 1822 2107 778 1749 2099 770 1707 2098 769 1754 2108 779 1822 2107 778 1754 2108 779 1802 2109 780 1856 2110 781 1822 2107 778 1856 2110 781 1803 2111 782 1753 2106 777 1822 2107 778 1709 2112 783 1755 2113 784 1842 2114 785 1787 2115 786 1786 2116 787 1842 2114 785 1755 2113 784 1710 2117 788 1756 2118 789 1712 2119 790 1757 2120 791 1823 2121 792 1757 2120 791 1714 2122 793 1758 2123 794 1823 2121 792 1758 2123 794 1713 2124 795 1759 2125 796 1823 2121 792 1759 2125 796 1711 2126 797 1756 2118 789 1823 2121 792 1760 2127 798 1715 2128 799 1761 2129 800 1824 2130 801 1761 2129 800 1700 2075 686 1762 2131 802 1824 2130 801 1762 2131 802 1712 2119 790 1756 2118 789 1824 2130 801 1756 2118 789 1711 2126 797 1760 2127 798 1824 2130 801 1763 2132 803 1795 2133 804 1851 2134 805 1825 2135 806 1851 2134 805 1796 2136 807 1764 2137 808 1825 2135 806 1764 2137 808 1710 2117 788 1755 2113 784 1825 2135 806 1755 2113 784 1709 2112 783 1763 2132 803 1825 2135 806 1765 2138 809 1713 2124 795 1758 2123 794 1826 2139 810 1758 2123 794 1714 2122 793 1766 2140 811 1826 2139 810 1766 2140 811 1800 2141 812 1854 2142 813 1826 2139 810 1854 2142 813 1801 2143 814 1765 2138 809 1826 2139 810 1786 2116 787 1710 2117 788 1764 2137 808 1841 2144 815 1797 2145 816 1841 2144 815 1764 2137 808 1796 2136 807 1767 2146 817 1799 2147 818 1853 2148 819 1827 2149 820 1853 2148 819 1800 2141 812 1766 2140 811 1827 2149 820 1766 2140 811 1714 2122 793 1757 2120 791 1827 2149 820 1757 2120 791 1712 2119 790 1767 2146 817 1827 2149 820 1768 2150 821 1695 2052 663 1790 2051 662 1828 2151 822 1791 2152 823 1716 2153 824 1768 2150 821 1828 2151 822 1770 2154 825 1717 2155 826 1769 2156 827 1829 2157 828 1744 2082 753 1703 2085 756 1771 2158 829 1830 2159 830 1872 2160 831 1771 2158 829 1875 2161 832 1874 2162 833 1768 2150 821 1716 2153 824 1773 2163 834 1831 2164 835 1773 2163 834 1076 1447 542 1097 1446 541 1831 2164 835 1097 1446 541 1072 1331 426 1733 2053 664 1831 2164 835 1733 2053 664 1695 2052 663 1768 2150 821 1831 2164 835 1875 2161 832 1876 2087 758 1745 2086 757 1832 2165 836 1745 2086 757 1075 1370 465 1098 1449 544 1832 2165 836 1098 1449 544 1077 1451 546 1774 2166 837 1832 2165 836 1774 2166 837 1874 2162 833 1875 2161 832 1832 2165 836 1718 2167 838 1716 2153 824 1791 2152 823 1846 2168 839 1769 2156 827 1717 2155 826 1775 2169 840 1776 2170 841 1835 2171 842 1872 2160 831 1874 2162 833 1873 2172 843 1078 1458 553 1076 1447 542 1773 2163 834 1833 2173 844 1773 2163 834 1716 2153 824 1718 2167 838 1833 2173 844 1774 2166 837 1077 1451 546 1099 1461 556 1834 2174 845 1873 2172 843 1874 2162 833 1774 2166 837 1834 2174 845 1776 2170 841 1775 2169 840 1778 2062 673 1699 2065 676 1074 1350 445 1078 1458 553 1833 2173 844 1836 2070 681 1833 2173 844 1718 2167 838 1779 2066 677 1836 2070 681 1849 2175 846 1794 2176 847 1780 2177 848 1837 2178 849 1780 2177 848 1705 2093 764 1746 2090 761 1837 2178 849 1746 2090 761 1691 2039 650 1734 2057 668 1837 2178 849 1734 2057 668 1793 2056 667 1849 2175 846 1837 2178 849 1855 2179 850 1802 2109 780 1754 2108 779 1838 2180 851 1754 2108 779 1707 2098 769 1781 2181 852 1838 2180 851 1781 2181 852 1713 2124 795 1765 2138 809 1838 2180 851 1765 2138 809 1801 2143 814 1855 2179 850 1838 2180 851 1719 2182 853 1715 2128 799 1782 2183 854 1839 2184 855 1782 2183 854 1708 2105 776 1783 2185 856 1839 2184 855 1704 2092 763 1705 2093 764 1784 2186 857 1870 2187 858 1709 2112 783 1787 2115 786 1870 2187 858 1784 2186 857 1785 2188 859 1711 2126 797 1759 2125 796 1840 2189 860 1759 2125 796 1713 2124 795 1781 2181 852 1840 2189 860 1781 2181 852 1707 2098 769 1748 2096 767 1840 2189 860 1748 2096 767 1706 2095 766 1785 2188 859 1840 2189 860 1797 2145 816 1798 2071 682 1817 2074 685 1841 2144 815 1817 2074 685 1739 2076 687 1786 2116 787 1841 2144 815 1786 2116 787 1739 2076 687 1863 2190 861 1842 2114 785 1863 2190 861 1719 2182 853 1787 2115 786 1842 2114 785 1704 2092 763 1783 2185 856 1860 2191 862 1843 2091 762 1860 2191 862 1694 2044 655 1788 2036 647 1843 2091 762 1788 2036 647 1694 2044 655 1730 2042 653 1844 2037 648 1730 2042 653 1693 2041 652 1789 2016 631 1844 2037 648 1685 2192 636 1693 2041 652 1729 2040 651 1845 2193 863 1896 2194 864 1692 2047 658 1731 2046 657 1829 2157 828 1769 2156 827 1791 2152 823 1828 2151 822 1791 2152 823 1769 2156 827 1776 2170 841 1846 2168 839 1846 2168 839 1776 2170 841 1699 2065 676 1866 2067 678 1684 2195 643 1068 2196 577 1100 1483 576 1847 2033 644 1100 1483 576 1079 1485 578 1792 2034 645 1847 2033 644 1792 2034 645 1079 1485 578 1101 1486 579 1848 2055 666 1101 1486 579 1080 1487 580 1793 2056 667 1848 2055 666 1793 2056 667 1080 1487 580 1102 1488 581 1849 2175 846 1102 1488 581 1081 1489 582 1794 2176 847 1849 2175 846 1794 2176 847 1081 1489 582 1103 1491 584 1850 2197 865 1103 1491 584 1082 1492 585 1795 2133 804 1850 2197 865 1795 2133 804 1082 1492 585 1104 1493 586 1851 2134 805 1104 1493 586 1083 1494 587 1796 2136 807 1851 2134 805 1083 1494 587 1084 1495 588 1797 2145 816 1796 2136 807 1084 1495 588 1085 1496 589 1798 2071 682 1797 2145 816 1701 2072 683 1087 1499 592 1105 1498 591 1852 2198 866 1105 1498 591 1086 1500 593 1799 2147 818 1852 2198 866 1106 1501 594 1088 1502 595 1800 2141 812 1853 2148 819 1799 2147 818 1086 1500 593 1106 1501 594 1853 2148 819 1800 2141 812 1088 1502 595 1107 1503 596 1854 2142 813 1107 1503 596 1089 1504 597 1801 2143 814 1854 2142 813 1108 1505 598 1090 1506 599 1802 2109 780 1855 2179 850 1801 2143 814 1089 1504 597 1108 1505 598 1855 2179 850 1802 2109 780 1090 1506 599 1109 1507 600 1856 2110 781 1109 1507 600 1091 1508 601 1803 2111 782 1856 2110 781 1803 2111 782 1091 1508 601 1110 1287 385 1857 2015 630 1738 2068 679 1698 2063 674 1804 2199 867 1858 2200 868 1804 2199 867 1873 2172 843 1834 2174 845 1858 2200 868 1834 2174 845 1099 1461 556 1111 1511 604 1858 2200 868 1111 1511 604 1073 1348 443 1738 2068 679 1858 2200 868 1085 1496 589 1087 1499 592 1701 2072 683 1798 2071 682 1770 2154 825 1697 2201 869 1805 2103 774 1859 2202 870 1805 2103 774 1744 2082 753 1830 2159 830 1859 2202 870 1830 2159 830 1772 2203 871 1806 2204 872 1859 2202 870 1806 2204 872 1717 2155 826 1770 2154 825 1859 2202 870 1783 2185 856 1708 2105 776 1752 2104 775 1860 2191 862 1696 2059 670 1694 2044 655 1860 2191 862 1752 2104 775 1775 2169 840 1717 2155 826 1806 2204 872 1861 2205 873 1806 2204 872 1772 2203 871 1777 2206 874 1861 2205 873 1785 2188 859 1706 2095 766 1750 2100 771 1862 2207 875 1750 2100 771 1708 2105 776 1782 2183 854 1862 2207 875 1782 2183 854 1715 2128 799 1760 2127 798 1862 2207 875 1760 2127 798 1711 2126 797 1785 2188 859 1862 2207 875 1778 2062 673 1775 2169 840 1861 2205 873 1864 2208 876 1861 2205 873 1777 2206 874 1835 2171 842 1864 2208 876 1739 2076 687 1700 2075 686 1761 2129 800 1863 2190 861 1761 2129 800 1715 2128 799 1719 2182 853 1863 2190 861 1804 2199 867 1698 2063 674 1778 2062 673 1864 2208 876 1852 2198 866 1799 2147 818 1767 2146 817 1865 2209 877 1767 2146 817 1712 2119 790 1762 2131 802 1865 2209 877 1762 2131 802 1700 2075 686 1740 2073 684 1865 2209 877 1740 2073 684 1701 2072 683 1852 2198 866 1865 2209 877 1779 2066 677 1718 2167 838 1846 2168 839 1866 2067 678 1789 2016 631 1693 2041 652 1685 2210 636 1867 2017 632 1805 2103 774 1697 2201 869 1735 2060 671 1696 2059 670 1751 2102 773 1753 2106 777 1803 2111 782 1857 2015 630 1868 2211 878 1857 2015 630 1809 2014 629 1868 2211 878 1809 2014 629 1880 2013 628 1868 2211 878 1742 2079 690 1702 2078 689 1753 2106 777 1868 2211 878 1780 2177 848 1794 2176 847 1850 2197 865 1869 2212 879 1850 2197 865 1795 2133 804 1763 2132 803 1869 2212 879 1763 2132 803 1709 2112 783 1784 2186 857 1869 2212 879 1784 2186 857 1705 2093 764 1780 2177 848 1869 2212 879 1787 2115 786 1719 2182 853 1839 2184 855 1870 2187 858 1839 2184 855 1783 2185 856 1704 2092 763 1870 2187 858 1871 2083 754 1751 2102 773 1821 2101 772 1747 2094 765 1741 2077 688 1871 2083 754 1747 2094 765 1820 2097 768 1772 2203 871 1872 2160 831 1835 2171 842 1777 2206 874 1771 2158 829 1872 2160 831 1772 2203 871 1830 2159 830 1835 2171 842 1873 2172 843 1804 2199 867 1864 2208 876 1771 2158 829 1703 2085 756 1876 2087 758 1875 2161 832 1877 2088 759 1876 2087 758 1703 2085 756 1743 2084 755 1743 2084 755 1722 2008 623 1878 2011 626 1877 2088 759 1722 2008 623 1687 2006 621 1879 2012 627 1878 2011 626 1880 2013 628 1879 2012 627 1687 2006 621 1686 2081 751 1868 2211 878 1880 2013 628 1686 2081 751 1742 2079 690 1068 2213 1843 1684 2214 2187 1886 2215 2188 1319 1525 1844 1518 2004 2186 1521 1759 2061 1886 2215 2188 1887 2216 2189 1518 2004 2186 1517 2003 2185 1881 1760 2062 1521 1759 2061 1881 1760 2062 1517 2003 2185 1516 1758 2060 1515 1757 2059 898 1023 1712 1312 1025 1714 1881 1760 2062 1515 1757 2059 1683 2217 2190 1685 2218 2191 1889 2219 2192 1888 2220 2193 1882 1750 2052 1520 2002 2184 1889 2219 2192 1890 2221 2194 1884 2222 2195 1885 2223 2196 1892 2224 2197 1891 2225 2198 1315 1538 1857 1514 1754 2056 1898 2226 2199 1320 1539 1858 1519 2001 2183 1518 2004 2186 1887 2216 2189 1888 2220 2193 1512 1751 2053 1882 1750 2052 1890 2221 2194 1891 2225 2198 1729 2040 651 1692 2047 658 1884 2227 880 1845 2228 863 1690 2022 637 1682 2229 640 1885 2230 881 1689 2049 660 1883 1753 2055 1513 1752 2054 1892 2224 2197 1893 2231 2200 1885 2232 881 1884 2233 880 1692 2047 658 1689 2049 660 1521 1759 2061 905 1028 1717 1319 1525 1844 1886 2215 2188 1720 2234 2201 1069 2235 1862 1320 1539 1858 1898 2226 2199 1684 2236 2187 1726 2237 2202 1887 2216 2189 1886 2215 2188 1726 2238 2202 1683 2239 2190 1888 2220 2193 1887 2216 2189 1520 2002 2184 1519 2001 2183 1888 2220 2193 1889 2219 2192 1685 2240 2191 1845 2241 2203 1890 2221 2194 1889 2219 2192 1845 2242 2203 1884 2243 2195 1891 2225 2198 1890 2221 2194 1513 1752 2054 1512 1751 2053 1891 2225 2198 1892 2224 2197 1885 2244 2196 1682 2245 2204 1893 2231 2200 1892 2224 2197 1682 2246 2204 1720 2247 2201 1898 2226 2199 1893 2231 2200 1894 2248 882 1697 2201 869 1770 2154 825 1829 2157 828 1790 2051 662 1894 2248 882 1829 2157 828 1828 2151 822 1895 2249 883 1894 2248 882 1790 2051 662 1812 2050 661 1736 2061 672 1735 2060 671 1697 2201 869 1894 2248 882 1896 2194 864 1736 2061 672 1894 2248 882 1895 2249 883 1689 2049 660 1692 2047 658 1896 2194 864 1895 2249 883 1689 2049 660 1895 2249 883 1812 2050 661 1731 2046 657 1815 2045 656 1736 2061 672 1896 2194 864 1883 1753 2055 1893 2231 2200 1898 2226 2199 1514 1754 2056 1359 1584 1886 1371 1600 1902 1899 1601 1903 1360 1586 1888 1371 1600 1902 1382 1613 1915 1900 1614 1916 1899 1601 1903 1382 1613 1915 1393 1626 1928 1901 1627 1929 1900 1614 1916 1393 1626 1928 1404 1639 1941 1902 1640 1942 1901 1627 1929 1404 1639 1941 1415 1652 1954 350 790 1479 1902 1640 1942 1415 1652 1954 1426 1664 1966 433 793 1482 350 790 1479 1497 1735 2037 1903 1756 2058 430 806 1495 1503 1741 2043 1509 1747 2049 1904 1755 2057 1903 1756 2058 1051 1105 1734 986 1090 1719 1906 1093 1722 1905 1106 1735 1048 1091 1720 908 1109 1738 1908 1096 1725 1907 1092 1721 1017 1095 1724 951 1107 1736 1906 1093 1722 1907 1092 1721 1019 1108 1737 925 1101 1730 1909 1103 1732 1905 1106 1735 1020 1113 1742 923 1094 1723 1908 1096 1725 1910 1111 1740 1050 1098 1727 909 1104 1733 1909 1103 1732 1911 1099 1728 1052 1110 1739 910 1115 1744 1912 1114 1743 1910 1111 1740 1018 1102 1731 952 1148 1777 1913 1100 1729 1911 1099 1728 1021 1119 1748 924 1112 1741 1912 1114 1743 1914 1117 1746 1055 1146 1775 990 1097 1726 1913 1100 1729 1915 1147 1776 1053 1116 1745 982 1125 1754 1916 1120 1749 1914 1117 1746 1026 1149 1778 928 1142 1771 1917 1144 1773 1915 1147 1776 1022 1122 1751 926 1118 1747 1916 1120 1749 1918 1123 1752 1049 1140 1769 912 1145 1774 1917 1144 1773 1919 1141 1770 1046 1126 1755 984 1127 1756 1920 1124 1753 1918 1123 1752 1025 1143 1772 930 1136 1765 1921 1138 1767 1919 1141 1770 1023 1131 1760 927 1121 1750 1920 1124 1753 1922 1129 1758 1054 1134 1763 988 1139 1768 1921 1138 1767 1923 1135 1764 1047 1128 1757 911 1133 1762 1924 1132 1761 1922 1129 1758 1024 1137 1766 929 1130 1759 1924 1132 1761 1923 1135 1764 1522 1841 2083 1662 1821 2063 1926 1824 2066 1925 1827 2069 1600 1822 2064 1665 1835 2077 1928 1837 2079 1927 1823 2065 1565 1839 2081 1631 1825 2067 1926 1824 2066 1927 1823 2065 1537 1826 2068 1634 1843 2085 1929 1842 2084 1925 1827 2069 1539 1833 2075 1633 1838 2080 1928 1837 2079 1930 1834 2076 1524 1847 2089 1666 1840 2082 1929 1842 2084 1931 1845 2087 1523 1836 2078 1664 1828 2070 1932 1831 2073 1930 1834 2076 1538 1844 2086 1635 1849 2091 1933 1848 2090 1931 1845 2087 1566 1880 2122 1632 1832 2074 1932 1831 2073 1934 1830 2072 1596 1857 2099 1667 1846 2088 1933 1848 2090 1935 1851 2093 1604 1829 2071 1669 1876 2118 1936 1878 2120 1934 1830 2072 1540 1850 2092 1636 1852 2094 1937 1855 2097 1935 1851 2093 1542 1874 2116 1640 1879 2121 1936 1878 2120 1938 1875 2117 1598 1859 2101 1660 1856 2098 1937 1855 2097 1939 1854 2096 1526 1877 2119 1663 1870 2112 1940 1872 2114 1938 1875 2117 1541 1853 2095 1637 1861 2103 1941 1860 2102 1939 1854 2096 1544 1868 2110 1639 1873 2115 1940 1872 2114 1942 1869 2111 1525 1865 2107 1661 1858 2100 1941 1860 2102 1943 1863 2105 1602 1871 2113 1668 1864 2106 1944 1866 2108 1942 1869 2111 1543 1862 2104 1638 1867 2109 1944 1866 2108 1943 1863 2105 651 570 1332 1945 675 1416 2086 2250 2205 2087 571 1333 1964 507 1303 374 512 1308 393 653 1394 1945 675 1416 2086 2250 2205 1945 675 1416 393 653 1394 2107 723 1448 401 620 1368 521 619 1367 1948 772 1467 1949 771 1466 579 623 1371 660 630 1378 1950 770 1465 1949 771 1466 402 628 1376 524 626 1374 1950 770 1465 1951 769 1464 578 631 1379 577 664 1405 1952 767 1462 1951 769 1464 577 664 1405 2094 700 1429 2096 768 1463 1952 767 1462 419 742 977 584 693 281 1954 765 1000 1955 764 999 575 553 236 659 556 239 1957 762 997 1956 763 998 404 636 250 527 634 248 1957 762 997 1958 761 996 574 558 241 658 569 245 1959 760 995 1958 761 996 407 643 257 530 641 255 1959 760 995 1960 759 994 573 568 244 657 672 268 1961 758 993 1960 759 994 412 649 263 533 647 261 1961 758 993 1962 757 992 571 755 990 671 732 309 1947 734 311 1963 756 991 1470 1708 2010 1481 1719 2021 347 801 1490 431 800 1489 1459 1697 1999 1470 1708 2010 431 800 1489 348 798 1487 1448 1686 1988 1459 1697 1999 348 798 1487 432 797 1486 1437 1675 1977 1448 1686 1988 432 797 1486 349 794 1483 1491 1727 2029 351 803 1492 347 801 1490 1481 1719 2021 1497 1735 2037 430 806 1495 351 803 1492 1491 1727 2029 435 438 1234 430 806 1495 1903 1756 2058 1986 1021 1710 435 438 1234 1986 1021 1710 320 1020 1709 88 375 1186 433 793 1482 1426 1664 1966 1437 1675 1977 349 794 1483 2048 2251 2206 2049 2252 2207 1973 1589 1891 1972 1588 1890 1902 1640 1942 350 790 1479 434 436 1232 1974 1641 1943 2047 2253 2208 2048 2251 2206 1972 1588 1890 1975 1602 1904 2046 2254 2209 2047 2253 2208 1975 1602 1904 1976 1615 1917 2045 2255 2210 2046 2254 2209 1976 1615 1917 1977 1628 1930 2044 1653 1955 2045 2255 2210 1977 1628 1930 1974 1641 1943 606 781 1473 684 410 1214 2026 413 1217 2027 423 2211 310 111 904 1978 113 906 2025 412 1216 2024 409 1213 867 985 1674 858 976 1665 4 371 1182 84 373 1184 858 976 1665 845 964 1653 0 369 1180 4 371 1182 721 832 1521 1331 831 1520 1980 836 1525 1979 835 1524 774 2256 2212 3 360 1171 87 359 1170 1981 892 1581 722 834 1523 735 2257 2213 1982 850 1539 1979 835 1524 735 2257 2213 748 2258 2214 1983 864 1553 1982 850 1539 748 2258 2214 761 2259 2215 1984 878 1567 1983 864 1553 761 2259 2215 774 2256 2212 1981 892 1581 1984 878 1567 810 928 1617 798 916 1605 86 364 1175 1 365 1176 1 365 1176 85 367 1178 822 940 1629 810 928 1617 834 952 1641 822 940 1629 85 367 1178 0 369 1180 845 964 1653 834 952 1641 0 369 1180 88 375 1186 320 1020 1709 2015 2260 2216 2015 2260 2216 84 373 1184 88 375 1186 1904 1755 2057 1514 1754 2056 1315 1538 1857 1985 1019 1708 1337 1017 1706 1985 1019 1708 1315 1538 1857 897 1018 1707 90 2 28 243 1 26 1987 2261 2217 1988 2262 2218 243 1 26 91 4 30 1989 2263 2219 1987 2261 2217 91 4 30 244 7 35 1990 2264 2220 1989 2263 2219 244 7 35 299 8 36 1991 2265 2221 1990 2264 2220 164 179 1042 163 178 1041 1992 2266 2222 1993 2267 2223 266 181 1045 165 180 1043 1994 2268 2224 1995 2269 2225 163 178 1041 266 181 1045 1995 2269 2225 1992 2266 2222 288 184 1048 90 2 28 1988 2262 2218 1996 2270 2226 167 186 1050 164 179 1042 1993 2267 2223 1997 2271 2227 324 333 1144 288 184 1048 1996 2270 2226 1998 2272 2228 315 351 1162 167 186 1050 1997 2271 2227 1999 2273 2229 165 180 1043 324 333 1144 1998 2272 2228 1994 2268 2224 1991 2265 2221 299 8 36 2017 378 1189 2018 2274 2230 690 432 1228 315 351 1162 1999 2273 2229 2001 2275 2231 622 442 1238 437 441 1237 2002 2276 2232 2003 2277 2233 438 443 1239 622 442 1238 2003 2277 2233 2004 2278 2234 623 446 1242 438 443 1239 2004 2278 2234 2005 2279 2235 440 447 1243 623 446 1242 2005 2279 2235 2006 2280 2236 519 618 1366 520 617 1365 2007 2281 2237 2008 2282 2238 521 619 1367 645 622 1370 2009 2283 2239 2010 2284 2240 645 622 1370 519 618 1366 2008 2282 2238 2009 2283 2239 437 441 1237 661 624 1372 2011 2285 2241 2002 2276 2232 520 617 1365 523 625 1373 2012 2286 2242 2007 2281 2237 661 624 1372 1948 772 1467 2013 2287 2243 2011 2285 2241 672 774 1469 440 447 1243 2006 2280 2236 2000 2288 2244 523 625 1373 690 432 1228 2001 2275 2231 2012 2286 2242 1948 772 1467 521 619 1367 2010 2284 2240 2013 2287 2243 1988 2262 2218 1987 2261 2217 2014 2289 2245 1987 2261 2217 1989 2263 2219 2014 2289 2245 1989 2263 2219 1990 2264 2220 2014 2289 2245 1990 2264 2220 1991 2265 2221 2014 2289 2245 1993 2267 2223 1992 2266 2222 2014 2289 2245 1995 2269 2225 1994 2268 2224 2014 2289 2245 1992 2266 2222 1995 2269 2225 2014 2289 2245 1996 2270 2226 1988 2262 2218 2014 2289 2245 1997 2271 2227 1993 2267 2223 2014 2289 2245 1998 2272 2228 1996 2270 2226 2014 2289 2245 1999 2273 2229 1997 2271 2227 2014 2289 2245 1994 2268 2224 1998 2272 2228 2014 2289 2245 1991 2265 2221 2018 2274 2230 2000 2288 2244 2014 2289 2245 2001 2275 2231 1999 2273 2229 2014 2289 2245 2003 2277 2233 2002 2276 2232 2014 2289 2245 2004 2278 2234 2003 2277 2233 2014 2289 2245 2005 2279 2235 2004 2278 2234 2014 2289 2245 2006 2280 2236 2005 2279 2235 2014 2289 2245 2008 2282 2238 2007 2281 2237 2014 2289 2245 2010 2284 2240 2009 2283 2239 2014 2289 2245 2009 2283 2239 2008 2282 2238 2014 2289 2245 2002 2276 2232 2011 2285 2241 2014 2289 2245 2007 2281 2237 2012 2286 2242 2014 2289 2245 2011 2285 2241 2013 2287 2243 2014 2289 2245 2000 2288 2244 2006 2280 2236 2014 2289 2245 2012 2286 2242 2001 2275 2231 2014 2289 2245 2013 2287 2243 2010 2284 2240 2014 2289 2245 2015 2260 2216 320 1020 1709 884 1002 1691 877 995 1684 877 995 1684 867 985 1674 84 373 1184 2015 2260 2216 1497 1735 2037 1503 1741 2043 1903 1756 2058 672 774 1469 2000 2288 2244 2018 2274 2230 2017 378 1189 308 85 74 228 88 77 2020 406 151 2019 402 150 673 775 1470 590 773 1468 2022 377 1188 2021 379 1190 590 773 1468 672 774 1469 2017 378 1189 2022 377 1188 591 776 1471 673 775 1470 2021 379 1190 2023 380 1191 683 780 1472 591 776 1471 2023 380 1191 2024 409 1213 604 411 1215 683 780 1472 2024 409 1213 2025 412 1216 1978 113 906 142 124 914 2026 413 1217 2025 412 1216 142 124 914 229 126 916 2027 423 2211 2026 413 1217 687 782 229 606 781 228 2027 423 153 2028 422 152 607 783 230 687 782 229 2028 422 152 2029 424 154 688 784 231 607 783 230 2029 424 154 2030 425 155 603 778 224 688 784 231 2030 425 155 2031 408 147 682 779 225 603 778 224 2031 408 147 2032 407 146 601 777 222 682 779 225 2032 407 146 2033 403 145 681 405 223 601 777 222 2033 403 145 2019 402 2263 2020 406 151 228 88 77 312 154 107 2016 420 160 312 154 107 41 140 103 2034 414 156 2016 420 160 41 140 103 311 135 100 2035 415 157 2034 414 156 311 135 921 29 77 897 2036 394 1205 2035 415 1218 29 77 897 307 76 896 2037 395 1206 2036 394 1205 307 76 896 227 79 899 2038 398 1209 2037 395 1206 227 79 899 45 81 901 2039 400 1211 2038 398 1209 45 81 901 162 353 1164 2040 428 1224 2039 400 1211 162 353 1164 79 355 1166 2041 430 1226 2040 428 1224 79 355 1166 233 358 1169 2042 433 1229 2041 430 1226 233 358 1169 3 360 1171 2043 435 1231 2042 433 1229 3 360 1171 774 2256 2212 2044 1653 1955 2043 435 1231 774 2256 2212 761 2259 2215 2045 2255 2210 2044 1653 1955 761 2259 2215 748 2258 2214 2046 2254 2209 2045 2255 2210 748 2258 2214 735 2257 2213 2047 2253 2208 2046 2254 2209 735 2257 2213 722 834 1523 2048 2251 2206 2047 2253 2208 722 834 1523 708 833 1522 2049 2252 2207 2048 2251 2206 907 1029 1718 2049 2252 2207 708 833 1522 1973 1589 1891 2049 2252 2207 907 1029 1718 907 1029 1718 1980 836 1525 1331 831 1520 2050 292 123 2051 291 122 2065 133 1002 2064 288 1003 282 294 125 322 296 127 2067 376 1004 2066 134 1005 2051 291 122 282 294 125 2066 134 1005 2065 133 1002 185 244 52 278 242 50 2069 237 1006 2068 245 1007 184 241 49 279 251 56 2071 246 1008 2070 238 1009 278 242 50 184 241 49 2070 238 1009 2069 237 1006 2052 263 64 185 244 52 2068 245 1007 2072 261 1010 186 250 55 2050 292 123 2064 288 1003 2073 247 1011 279 251 56 186 250 55 2073 247 1011 2071 246 1008 187 259 1104 280 257 1103 2075 252 1099 2074 260 1105 2053 256 59 2054 327 235 2077 328 1014 2076 253 1015 280 257 60 2053 256 59 2076 253 1015 2075 252 2276 2055 266 1109 187 259 1104 2074 260 1105 2078 264 1107 2054 327 235 2052 263 64 2072 261 1010 2077 328 1014 188 268 1111 2055 266 1109 2078 264 1107 2079 269 1112 2056 272 1115 188 268 1111 2079 269 1112 2080 270 1113 189 274 1117 2056 272 1115 2080 270 1113 2081 275 1118 2057 287 1128 189 274 1117 2081 275 1118 2082 285 1126 191 283 88 281 281 2271 2084 276 1021 2083 284 1022 190 280 1123 2057 287 1128 2082 285 1126 2085 277 1120 281 281 1124 190 280 1123 2085 277 1120 2084 276 1119 322 296 127 191 283 88 2083 284 1022 2067 376 1004 1946 735 970 656 733 310 2087 571 1024 2086 2250 1025 2058 731 308 2059 730 307 2089 727 1026 2088 572 1027 656 733 310 2058 731 308 2088 572 1027 2087 571 1024 653 689 279 554 681 274 2091 676 1028 2090 686 1029 652 680 273 555 683 276 2093 684 1030 2092 677 1031 554 681 274 652 680 273 2092 677 1031 2091 676 1028 555 683 276 2060 702 288 2094 700 1032 2093 684 1030 2059 730 307 556 690 280 2095 685 1033 2089 727 1026 556 690 280 653 689 279 2090 686 1029 2095 685 1033 1953 766 1001 557 696 284 2097 691 1034 2096 768 1035 654 695 1427 558 698 1426 2099 699 1428 2098 692 1423 557 696 284 654 695 2270 2098 692 1037 2097 691 1034 558 698 1426 2061 705 1432 2100 703 1430 2099 699 1428 2060 702 288 1953 766 1001 2096 768 1035 2094 700 1032 2061 705 1432 559 707 1434 2101 708 1435 2100 703 1430 559 707 1434 2062 711 1438 2102 709 1436 2101 708 1435 2062 711 1438 560 713 1440 2103 714 1441 2102 709 1436 560 713 1440 2063 726 1451 2104 724 1449 2103 714 1441 2063 726 1451 561 720 1447 2105 715 1442 2104 724 1449 655 719 299 562 722 302 2107 723 1044 2106 716 2266 561 720 1447 655 719 1446 2106 716 1443 2105 715 1442 562 722 302 1946 735 970 2086 2250 1025 2107 723 1044 1686 2081 751 1687 2006 621 1807 2005 620 1117 1276 374 1237 1275 373 1151 1277 375</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#LOD3spShape-lib-vertices\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" offset=\"1\" set=\"0\" source=\"#LOD3spShape-lib-normals\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"2\" set=\"0\" source=\"#LOD3spShape-lib-map1\"></input>\r\n\t\t\t\t</polylist>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<asset xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t<created xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">2006-08-23T22:29:59Z</created>\r\n\t\t<contributor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t<copyright xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\nCopyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&#34;License&#34;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &#34;AS IS&#34; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n</copyright>\r\n\t\t\t<author xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">gcorson</author>\r\n\t\t\t<comments xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=1;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<authoring_tool xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Maya 8.0 | ColladaMaya v3.02 | FCollada v3.2</authoring_tool>\r\n\t\t\t<source_data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">file:///C:/vs2005/sample_data/Complete_Packages/SCEA_Private/Maya_MoonLander/Moonlander/untitled</source_data>\r\n\t\t</contributor>\r\n\t\t<revision xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></revision>\r\n\t\t<keywords xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></keywords>\r\n\t\t<up_axis xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Y_UP</up_axis>\r\n\t\t<title xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></title>\r\n\t\t<subject xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></subject>\r\n\t\t<unit xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"centimeter\" meter=\"0.01\"></unit>\r\n\t\t<modified xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">2007-02-21T22:47:42Z</modified>\r\n\t</asset>\r\n\t<library_effects xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"blinn3-fx\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"common\">\r\n\t\t\t\t\t<blinn xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" texture=\"file2-sampler\" texcoord=\"TEX0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" opaque=\"\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t</blinn>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"file2-surface\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<surface xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"2D\">\r\n\t\t\t\t\t\t<format xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">A8R8G8B8</format>\r\n\t\t\t\t\t\t<mip_levels xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mip_levels>\r\n\t\t\t\t\t\t<size xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></size>\r\n\t\t\t\t\t\t<viewport_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></viewport_ratio>\r\n\t\t\t\t\t\t<mipmap_generate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">false</mipmap_generate>\r\n\t\t\t\t\t\t<init_as_target xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_target>\r\n\t\t\t\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" face=\"\" slice=\"0\" mip=\"0\">file2</init_from>\r\n\t\t\t\t\t\t<init_as_null xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_null>\r\n\t\t\t\t\t</surface>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"file2-sampler\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">LINEAR_MIPMAP_LINEAR</minfilter>\r\n\t\t\t\t\t\t<mipmap_bias xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_bias>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">LINEAR</magfilter>\r\n\t\t\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">file2-surface</source>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipmap_maxlevel xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_maxlevel>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_visual_scenes xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<visual_scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"untitled\" id=\"VisualSceneNode\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"LOD3sp\" sid=\"\" type=\"\" id=\"LOD3sp\">\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#LOD3spShape-lib\" name=\"\" sid=\"\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"blinn3SG\" target=\"#blinn3\" name=\"\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"TEX0\"></bind_vertex_input>\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"camera1\" sid=\"\" type=\"\" id=\"camera1\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">400.113 463.264 -431.078</translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#cameraShape1\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 -223.2</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 -38.4</rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"directionalLight1\" sid=\"\" type=\"\" id=\"directionalLight1\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">148.654 183.672 -292.179</translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#directionalLightShape1-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 -12.8709</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 -191.679</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 -45.6358</rotate>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<library_lights xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"directionalLightShape1-lib\" name=\"directionalLightShape1\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<directional xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t</directional>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_materials xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"blinn3\" name=\"blinn3\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#blinn3-fx\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t<instance_visual_scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#VisualSceneNode\" sid=\"\" name=\"\"></instance_visual_scene>\r\n\t</scene>\r\n\t<library_cameras xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"cameraShape1\" name=\"cameraShape1\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n\t<library_images xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<image xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"file2\" width=\"0\" height=\"0\" id=\"file2\" depth=\"1\" format=\"\">\r\n\t\t\t<data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></data>\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">./duckCM_fix.jpg</init_from>\r\n\t\t</image>\r\n\t</library_images>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/duck_triangulate.dae",
    "content": "<COLLADA version=\"1.4.1\" base=\"\">\r\n\t<library_geometries xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"LOD3spShape\" id=\"LOD3spShape-lib\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"LOD3spShape-lib-vertices\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#LOD3spShape-lib-positions\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"LOD3spShape-lib-positions\" name=\"position\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2108\" source=\"#LOD3spShape-lib-positions-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6324\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"LOD3spShape-lib-positions-array\">35.0226 89.3874 23.3732 19.5676 89.7173 22.4879 9.22909 91.5427 17.1037 4.33048 88.7008 4.57726 45.0571 89.4178 19.824 -30.5196 11.6272 25.1326 -15.6992 11.4278 34.2321 51.8411 17.7055 36.5602 65.7206 18.372 27.0862 56.0117 11.4345 22.6963 -23.2343 18.1488 41.0429 -40.9218 18.6322 29.6382 62.4487 11.3989 12.9806 60.2326 28.1944 39.5949 71.2984 29.0359 29.3335 -32.9737 29.6914 43.477 -48.95 28.9358 31.4102 73.8118 41.7425 29.8584 65.2513 41.3955 39.884 72.6597 55.003 29.2468 64.6263 55.4849 38.2648 66.5829 66.4165 27.9218 55.5179 67.734 35.7358 43.4971 75.6992 31.8699 56.934 75.0037 25.7495 14.7601 73.8701 35.1574 -12.1248 73.9991 28.9191 14.7016 78.8465 28.8886 -3.37962 78.0576 23.1953 -24.7824 78.2304 7.65121 4.94216 81.4267 15.8195 -54.7257 89.9761 8.84491 -53.6566 74.7375 26.9735 -44.1714 77.8938 26.1268 -64.7587 73.8997 7.15297 -61.5691 65.6958 25.2253 -42.9296 61.2502 39.4496 -64.9663 57.2673 21.7398 -48.9596 49.2561 39.8218 -58.3698 43.9468 28.036 -31.7993 70.8398 33.4366 -33.1153 82.3349 8.62471 48.2452 81.0789 22.327 34.1225 80.5718 26.6473 15.5527 81.3807 24.423 0.65596 81.0723 3.99376 15.1798 11.41 36.4164 17.2973 17.3674 43.2976 43.8649 67.7941 39.8677 55.9835 56.1625 42.7808 56.4187 41.7648 44.4371 46.9566 29.0085 44.2399 18.041 21.337 45.4158 -24.2634 29.7596 46.4694 -37.1346 44.6474 44.4312 -35.8668 57.8953 42.7333 -24.1626 66.8013 39.6298 -14.2645 43.4767 51.8892 10.1522 43.8267 53.9252 -10.3735 36.316 51.8336 -14.5047 52.2745 51.0455 9.35439 52.1796 53.5056 24.5685 36.9247 52.4691 11.2191 35.6243 52.5988 27.0248 44.5585 52.8835 25.4374 55.0852 52.0724 9.23132 59.258 51.2115 21.2751 61.6417 50.3945 -11.0645 57.3325 50.3033 -22.8339 53.8174 48.6047 -22.3883 43.3299 49.8488 -13.3437 34.4469 50.7719 -15.0193 59.7488 48.0109 12.3031 31.6369 51.4681 28.2 34.9703 51.4911 34.9314 44.1559 51.2583 33.7281 55.8993 50.0475 24.8495 63.37 48.6114 9.96162 62.8873 48.4038 6.73344 84.5266 2.83788 10.2211 84.9641 13.1445 19.05 85.0093 20.4734 35.2584 84.9759 22.0089 44.8651 85.199 18.7578 54.1484 90.1992 13.1393 25.84 89.3162 23.5593 14.5318 90.4728 20.5795 5.99276 89.5698 10.1098 59.1034 90.0324 3.37689 -23.9364 11.5353 30.6125 -11.459 10.0413 29.8243 -24.5326 10.1147 22.2069 -35.1528 11.6836 17.7191 61.5472 14.2726 25.2082 43.6854 11.43 30.0164 47.7677 14.1162 33.6212 -19.459 14.309 37.9267 -36.067 14.5054 27.6816 -32.9292 18.5574 36.7248 -46.1733 18.6604 20.5246 73.3418 18.3468 14.9194 68.8732 23.4107 28.4208 55.7803 22.4988 38.5465 -27.0171 23.4671 43.0366 -45.2302 23.6628 30.9246 -41.0731 29.3325 39.4763 79.4615 29.1894 16.0672 76.9844 23.4678 15.5749 72.8865 35.1223 29.8369 63.2406 34.5574 39.8307 81.8608 42.114 16.7292 80.9318 35.3877 16.409 66.0817 48.5555 39.2449 73.9987 48.5347 29.6857 80.1688 55.1853 16.948 81.5894 48.8387 16.9628 61.1927 62.0057 37.295 70.17 61.0152 28.6395 74.8647 66.3268 16.601 77.7874 61.0196 16.7611 61.7637 71.037 26.8557 67.1835 75.4493 16.6366 71.6321 71.1772 16.667 -7.40039 76.1581 26.3759 14.8335 76.3145 32.0471 -20.947 75.0059 21.3995 -9.30957 78.0917 17.6635 2.33308 81.2658 10.7014 -55.3055 81.4823 20.1865 -44.1025 82.8784 21.08 -48.3998 77.2606 26.9595 -63.8341 69.8359 17.705 -58.2579 70.6396 26.4175 -58.1459 60.4109 31.5845 -50.1918 68.7831 33.097 -53.5557 46.1592 34.9928 -63.069 52.729 24.0553 -63.6495 60.7883 23.3658 -54.4261 28.5392 21.6382 -12.4228 39.2454 51.9419 -52.1766 34.1006 30.9987 -39.3582 37.1753 42.8245 -63.2047 33.3562 7.77354 -14.9689 48.0973 51.5712 -13.2184 68.1588 38.5488 -20.841 71.9312 31.5875 -34.0814 73.6573 23.1685 39.0864 77.6536 29.4959 52.286 78.2905 24.2985 28.6752 75.0467 34.74 24.5284 79.4248 29.0977 58.2456 81.6454 14.9372 62.5867 78.8584 16.1198 -40.058 73.3058 29.0169 -62.4832 42.7738 19.6053 -66.2542 57.7677 16.0138 -46.3972 55.562 40.3341 46.1403 83.2928 20.059 52.8472 87.516 12.3304 24.3957 81.2413 26.4145 17.5457 83.2299 21.6568 35.0308 86.9496 21.9178 5.66061 83.0193 2.97282 39.2717 10.0042 25.9897 49.7414 9.99683 19.7068 14.6156 10.0124 31.7958 28.2119 11.4278 34.5791 55.179 10.0309 11.4214 16.1259 13.9798 40.2177 33.0793 17.7336 41.3765 18.9195 36.2041 52.5892 10.6044 39.6524 53.4314 18.2523 44.3116 53.7955 25.9535 39.9994 52.7745 9.73549 48.0914 53.8815 16.9236 53.6009 53.2898 26.8721 49.8693 52.6952 9.12603 55.8675 52.7181 15.9783 60.8706 50.8542 23.2428 59.2083 51.1997 15.2006 70.9348 38.4909 -38.0814 66.6122 37.6368 -31.4745 63.2943 41.295 -12.9337 55.4359 50.6592 -29.8093 42.9681 46.5354 -18.6612 31.1764 47.8255 -30.266 55.8423 44.7033 36.2897 31.2217 48.0605 46.511 42.7776 47.7899 45.6636 56.4673 46.2574 32.8524 66.1703 44.2955 12.3579 67.2602 43.2175 -19.149 38.1518 50.4005 -23.6628 48.8825 49.2194 21.1045 32.7401 51.4785 32.4268 38.9651 51.46 35.2465 50.0413 50.7771 17.9201 63.7837 48.4371 30.018 60.597 49.2453 -20.4236 57.6424 48.1257 -7.11345 60.5511 48.2081 -5.54756 57.4675 50.6459 -6.2067 51.4293 52.475 -5.95461 43.3855 53.166 -4.66971 35.7333 52.2177 -5.70251 32.445 51.1085 -8.3205 17.8723 43.3717 -2.69678 11.3425 36.4653 -27.2981 42.8866 48.0687 -27.8897 55.043 46.5161 -16.4436 32.2248 49.3054 -18.5848 62.3861 45.599 13.6265 28.0639 49.9986 41.3922 43.4352 49.4685 32.3868 32.7171 49.8711 40.4699 56.3449 48.0345 28.9733 65.0389 46.3945 11.0523 65.6624 45.6909 -37.9272 11.78 6.99728 -50.2675 18.389 7.36354 75.8256 18.3928 2.93945 64.2756 11.6576 2.65993 82.8128 29.1368 2.93945 85.8726 42.1384 2.93945 84.9147 55.2091 3.25752 79.936 66.2007 3.25752 72.9207 75.6569 3.11665 -13.2799 78.2816 6.78078 -42.4217 91.5301 9.02211 -66.2519 42.375 7.59116 -67.9758 58.5114 6.99802 8.76422 81.5601 20.2429 8.65004 83.1534 13.7124 6.16626 86.3527 3.3376 10.3479 87.4003 13.9949 7.91973 84.7475 8.18356 19.5238 87.0994 20.6484 13.8638 85.0248 17.2846 35.1961 83.043 23.5111 26.055 84.941 22.3278 44.4291 87.1742 18.6599 55.1672 83.7325 13.2216 53.3737 85.5572 12.3674 -18.7264 10.108 26.6814 -28.5504 10.1785 15.7995 -28.6467 14.412 33.9793 -40.9463 14.6426 19.2219 68.6182 14.2022 14.0757 -36.9819 23.7436 38.5844 48.5084 72.1529 33.9029 -14.7042 76.6096 19.7209 -49.515 83.8778 20.7678 -60.3339 76.3635 19.0618 -54.5522 64.8765 32.9243 -60.8158 55.9957 28.5728 -50.6442 23.4975 21.2438 -45.1383 35.1824 39.0803 -57.747 33.5446 21.51 -27.5531 73.6877 22.8942 26.6207 76.9559 31.9144 -39.393 77.9086 22.2647 -65.5928 51.6658 17.2594 -44.8336 71.3336 32.1213 -65.569 63.5509 16.5565 25.3055 83.1594 23.781 12.1192 83.2358 18.075 25.9631 10.0257 30.0393 30.5288 14.0969 38.2233 18.4628 39.992 53.2994 17.691 48.9863 53.8221 16.1429 57.6002 52.3171 32.2615 71.41 37.9727 51.4408 62.676 41.4618 57.6406 48.9151 43.8433 52.9177 35.0586 44.5773 36.217 23.1483 43.9056 -31.7681 36.6178 45.7769 -37.83 51.5724 43.6927 -25.9576 36.5644 47.2776 -31.2662 49.6491 45.6583 26.7542 27.5116 48.1161 23.2102 67.8126 43.5534 -9.81152 64.5785 42.5347 -5.73514 54.6841 51.8166 -6.34459 47.5345 53.0926 -5.18279 39.3551 52.8687 -13.0679 23.5531 45.6457 -5.21985 14.0791 40.2548 -0.679352 10.0168 31.8299 -28.752 49.271 47.2864 -23.8534 36.6519 48.7626 -24.6964 59.5316 45.8889 -7.15942 29.3978 49.7079 38.1551 37.5127 49.7814 23.9612 29.5453 49.9126 42.2701 49.9123 48.8776 35.8278 61.6884 47.1419 20.5055 66.243 45.9037 -8.95663 63.2617 45.5834 -31.1142 10.1703 6.38486 -44.1714 14.6552 7.27827 70.6407 14.3913 2.92833 79.9353 23.413 2.93945 84.5803 35.3544 2.93945 85.9631 48.8595 3.25752 82.8254 61.0226 3.25826 76.7546 71.3433 3.2553 -19.2017 77.8115 7.33611 -48.5489 92.2656 9.06511 -60.1596 84.4057 8.28143 -55.757 23.043 7.73055 -29.2013 79.6561 8.08569 -37.1064 88.1752 8.91461 -68.0046 51.5783 7.15372 -66.9147 65.618 7.07735 57.0756 10.1525 2.28551 6.64003 83.0734 8.64102 7.67061 86.759 8.63805 14.3983 87.2706 17.8748 26.21 86.9437 22.1654 62.3057 92.5874 2.9313 1.3848 69.2606 38.5873 1.56273 65.4519 43.0262 1.32251 64.1537 45.6605 4.95551 9.99831 32.3904 4.63076 11.3477 37.0599 4.48174 13.922 40.9628 4.08211 17.3859 43.9419 3.02928 21.4474 45.8963 3.07525 28.2293 49.9356 3.11009 31.6361 51.3265 3.03002 35.4574 52.4675 2.61333 39.4033 53.3009 2.11362 43.4389 53.8266 1.75772 47.519 53.7873 1.63762 51.3863 53.3032 1.70287 54.8295 52.4802 1.76736 58.0161 51.0099 1.52196 61.5001 48.3586 1.93642 72.8387 33.8763 3.64763 75.9142 30.548 5.31806 78.4269 26.9639 58.5778 87.5953 2.23361 59.1501 85.8263 2.11721 61.5583 84.2063 2.51758 64.9644 82.1214 2.892 69.0133 79.1475 3.00989 32.7991 89.7151 -30.4233 18.3501 89.4171 -27.9721 8.67525 89.5668 -20.9938 2.39314 90.3705 -9.85685 41.3633 90.1718 -28.7054 -31.106 11.4775 -32.9686 -16.1893 11.413 -41.8242 -37.8441 11.7199 -17.9362 51.1145 17.827 -43.7764 65.4167 18.372 -34.6672 55.5386 11.4663 -30.2365 -22.7101 18.3816 -48.1723 -41.2258 18.6322 -37.22 -49.9064 18.1281 -19.4546 62.0944 11.4196 -20.5393 59.314 28.4606 -46.5397 70.9277 29.0352 -36.8544 -33.1991 29.873 -50.7109 -49.3615 28.878 -39.0246 73.4812 41.7559 -37.3453 64.6226 41.5905 -46.5931 72.9066 55.0971 -37.0309 63.9264 55.2231 -45.5736 67.308 66.4328 -36.116 55.8026 66.7664 -44.1694 43.9561 74.6649 -39.815 57.8297 75.238 -34.1393 15.5401 73.1894 -42.5115 -12.2174 73.8819 -36.4385 15.3978 78.7998 -35.5147 -2.0421 78.412 -29.475 -24.7876 76.5792 -19.7267 -12.534 78.2897 -17.6678 4.34457 81.1227 -24.1642 -55.8163 87.2424 -22.0756 -43.7036 88.3494 -22.3158 -54.1303 74.7924 -34.6324 -44.4888 77.8752 -33.6648 -65.5053 72.5896 -18.5049 -61.9613 65.7536 -32.9553 -43.4634 60.448 -47.4894 -65.1954 57.0723 -29.5143 -59.2654 27.9119 -20.2361 -49.2087 49.1998 -47.3723 -58.9689 43.7199 -35.5858 -66.3446 42.1948 -19.4391 15.5861 70.0443 -46.0785 -33.1287 69.3852 -41.4713 -34.4892 80.0254 -21.5618 48.699 81.1865 -30.8689 34.2382 80.5703 -34.2498 16.5759 81.1153 -31.895 0.727875 81.1872 -12.4148 -68.018 58.2133 -17.8183 14.7802 11.3848 -44.0174 16.9221 17.4452 -50.8066 -13.0864 43.3447 -58.8481 10.4495 43.9097 -61.0858 -9.32663 36.6667 -59.0505 -14.22 51.903 -58.0496 9.45597 51.998 -60.0277 24.246 37.0634 -60.5519 11.3896 35.7436 -60.2776 26.5918 44.6467 -61.0071 25.4626 54.4929 -59.5273 9.00666 58.9948 -57.2808 21.3366 60.5555 -57.2059 -11.1972 57.2725 -56.9708 -22.2438 53.1256 -56.0203 -20.3457 43.0689 -57.3067 -12.1122 35.0371 -58.1689 -14.9222 59.3774 -55.2218 12.2904 31.7184 -59.1973 27.7581 35.2002 -59.4961 33.8971 44.4969 -59.5273 32.7486 55.5991 -57.9969 24.5692 62.5262 -55.8246 9.69026 62.3164 -55.2589 6.31009 84.6215 -9.59067 9.94086 84.9232 -20.0693 19.0219 85.0345 -27.4843 34.7653 85.0426 -29.4209 44.1941 85.119 -26.7866 50.8728 90.6708 -23.6459 25.0482 89.5646 -29.954 12.9607 89.423 -24.9078 5.25504 89.8204 -16.202 3.24726 88.5844 -2.72431 56.928 89.7848 -10.5352 -24.3405 11.4359 -38.3603 -12.0514 9.99387 -37.4698 -25.119 9.92937 -30.186 -35.4745 11.6324 -25.6774 -30.9667 10.1577 -16.9998 61 14.303 -32.6913 42.9826 11.5093 -37.4209 46.9722 14.2133 -40.7944 -19.5197 14.3549 -45.3897 -36.488 14.4595 -35.3605 -33.1887 18.5722 -44.2309 -44.1233 14.4447 -18.6976 -46.6619 18.3928 -28.2843 73.0378 18.3468 -22.5011 68.5692 23.4107 -36.0025 54.8395 22.7093 -45.7182 -26.8814 23.6917 -50.1401 -45.535 23.6628 -38.5063 -41.3718 29.3444 -46.7703 79.1575 29.1894 -23.6481 76.6804 23.4678 -23.1566 72.5633 35.1268 -37.3883 62.517 34.8109 -46.6606 81.5568 42.114 -24.311 80.6278 35.3877 -23.9899 65.2083 48.5511 -46.1149 73.84 48.5629 -37.3 80.6871 55.3477 -24.807 81.674 48.8988 -24.6283 60.7961 61.4452 -45.0316 70.7794 61.119 -36.7907 75.5475 66.5218 -24.6246 78.6126 61.265 -24.804 62.9885 71.049 -35.1951 66.8647 75.4648 -24.4251 71.4756 71.2009 -24.4489 -6.85692 76.1307 -33.2993 15.3904 76.124 -38.9186 -20.6749 74.9933 -28.8188 -18.659 77.1776 -18.9697 -8.319 78.3549 -24.2702 1.96458 81.2562 -18.3514 -55.843 81.314 -28.5504 -49.6254 89.3466 -22.4648 -44.4451 82.6048 -28.9686 -48.6808 77.2324 -34.5316 -64.3131 69.6573 -25.8984 -61.7107 81.899 -20.9783 -58.7835 70.7123 -34.1097 -58.4469 60.3879 -39.1736 -50.5077 68.7809 -40.6817 -54.183 45.9931 -42.2824 -63.8549 52.5711 -32.0063 -63.9335 60.729 -31.1655 -54.957 22.8131 -19.9766 -55.152 28.2115 -29.5499 -11.2032 39.4137 -59.029 -53.076 34.2815 -38.5249 -39.7533 37.3377 -50.1979 -63.1283 33.463 -20.1464 -14.2141 47.7244 -58.4915 -30.0695 77.3155 -20.5683 -21.5757 71.2928 -39.3886 -34.2579 73.9026 -30.84 39.2161 77.6454 -37.0836 52.7939 78.4766 -32.8685 29.7051 73.7336 -42.0511 25.218 79.3136 -35.8083 57.9394 81.7173 -23.2211 62.3879 78.9177 -24.2442 -40.3947 73.317 -36.5831 -38.6256 84.6334 -22.1512 -63.1328 42.5522 -27.8513 -68.0395 51.255 -18.387 -66.6864 57.5891 -24.6884 -46.719 55.3544 -48.0974 -67.0838 65.1042 -17.911 46.0958 83.2499 -28.6417 50.9529 87.3143 -20.6038 25.2513 81.0708 -33.3601 17.9216 83.2039 -29.0153 34.0372 87.1164 -29.0287 5.17719 83.0067 -10.4967 38.7965 10.0502 -33.6129 49.3922 10.0272 -27.3241 14.187 9.93604 -39.5629 27.7425 11.4278 -42.1534 55.0359 10.0176 -19.0023 15.6372 13.9546 -47.8631 32.7953 17.7996 -48.8099 18.8513 36.2745 -60.5645 10.861 39.7903 -60.8997 18.3879 44.3219 -61.3282 25.5709 40.1514 -60.9249 9.98461 48.0417 -60.7803 17.172 53.0256 -60.1664 26.7053 49.7018 -60.6231 9.02446 55.628 -58.8755 15.9709 59.969 -57.3289 23.2776 58.2326 -58.209 44.1377 66.4765 -47.442 32.9162 70.0487 -45.5996 -39.1943 64.8054 -45.7138 55.5401 55.5242 -49.7715 51.248 61.6595 -48.7462 56.0065 41.9561 -51.2803 57.0734 48.8091 -50.5693 46.5132 29.225 -51.505 52.5663 35.3329 -51.6029 17.5056 21.4015 -53.1414 35.7529 23.258 -51.4249 -24.8654 30.3579 -52.8774 -37.595 44.6801 -51.7631 -32.3879 37.056 -52.6379 -36.3175 56.5451 -50.6094 -38.0947 50.8613 -51.419 -25.0582 65.9138 -47.2878 -13.0315 55.2283 -57.5699 -29.5994 42.7331 -54.0504 -17.7196 32.1054 -55.3997 -31.0452 54.9518 -52.1567 14.4814 25.6447 -55.9766 35.6595 31.6265 -55.6473 45.0786 43.2372 -55.4835 44.2682 56.1306 -54.0718 32.613 65.3459 -51.8098 12.2638 66.6664 -50.3239 -16.8788 38.5536 -57.7812 -22.2779 48.1633 -56.692 20.9614 32.7638 -59.3975 31.7892 39.2914 -59.6303 34.2463 50.1711 -58.9927 17.7651 63.1379 -55.4049 29.3959 59.9275 -56.7944 -19.9928 57.0804 -55.4805 -7.23875 60.3598 -55.204 -5.65804 57.5512 -57.0761 -6.0065 51.3551 -59.049 -5.22208 43.4715 -59.8809 -3.96387 36.0409 -59.508 -5.15608 32.8988 -58.5686 -13.5854 23.9342 -52.6112 -9.06415 18.1577 -50.5723 -3.25877 11.387 -43.9714 -26.2193 42.6871 -55.6006 -28.5919 54.4558 -53.8865 -15.0875 33.3422 -56.7928 -18.825 61.9909 -52.8915 13.3618 27.7844 -57.7174 39.8055 43.952 -57.5439 31.8122 33.1212 -57.6826 38.9151 56.1492 -56.0878 28.5307 64.3375 -53.8731 10.8825 65.2576 -52.8604 -38.7872 11.7814 -10.3899 -51.3804 18.2081 -11.1306 75.9308 18.2734 -10.619 64.3713 11.5264 -10.1319 82.6956 29.1294 -10.748 85.6139 42.137 -11.5317 84.7924 55.3455 -12.4133 79.6343 66.3979 -12.9219 71.6684 75.6332 -12.7061 -25.2621 79.1542 -11.2952 -14.3624 78.3676 -10.5812 -55.4174 91.1379 -15.1558 -43.1913 92.0224 -14.9719 -65.5402 74.7902 -11.1558 -61.0434 28.0454 -11.3123 -32.6111 84.6875 -12.5304 -67.2833 42.4839 -10.9141 -68.8802 58.6841 -10.4374 0.543259 81.1205 -6.22162 9.52418 81.0708 -28.7966 8.37571 83.1824 -21.1125 5.53085 86.6678 -9.24443 6.35532 84.3783 -3.72153 9.91936 86.9399 -19.9543 7.46301 84.8157 -15.1358 19.1716 86.9829 -27.1848 13.7244 84.9789 -24.2465 35.0315 83.0667 -31.2656 26.1633 85.0641 -29.3275 42.8321 87.2394 -26.5835 54.4673 83.6613 -21.5529 52.1903 85.3592 -20.4029 -19.1772 9.97014 -34.5627 -29.0093 10.0524 -23.9684 -28.9966 14.3787 -41.6404 -41.4341 14.4313 -27.1351 68.2653 14.2141 -21.6559 -37.1724 23.751 -45.8917 49.1935 70.9503 -42.3484 -14.5648 76.6133 -27.0075 -49.8916 83.6109 -28.9872 -61.1227 76.1114 -27.2671 -55.0601 65.0337 -40.5186 -61.3029 55.8348 -36.2984 -51.2017 23.1727 -29.0783 -45.8464 35.4359 -46.3143 -58.6945 33.6906 -29.4149 -27.3062 73.8878 -30.3291 27.1279 76.7275 -38.8845 -39.6428 78.0687 -29.8339 -66.1326 51.3373 -25.8257 -45.1368 71.2869 -39.6934 -65.8464 63.4174 -25.0094 25.8474 83.1357 -30.877 12.1451 83.2039 -25.5855 25.4849 9.93826 -37.9992 30.078 14.1043 -45.7664 18.448 40.0625 -61.2347 17.9876 48.7616 -61.0605 16.2348 56.7727 -58.8674 -32.2767 62.0154 -49.2051 -13.9368 67.8282 -45.9206 -24.8684 37.0434 -54.8511 -31.525 48.8313 -53.174 26.4258 27.5071 -55.6637 23.2554 67.017 -50.8845 -10.1563 64.4547 -50.0444 -5.75739 54.7064 -58.2557 -5.8419 47.5145 -59.5984 -4.37907 39.5768 -59.8409 -5.9761 14.2111 -47.5917 -0.926239 9.96272 -39.5747 -28.5177 48.5533 -54.7769 -21.6936 37.4949 -56.2842 -25.4638 59.1765 -53.191 -6.8028 30.1029 -57.2111 37.0326 38.1125 -57.7227 23.7499 29.4563 -57.6722 40.6137 50.1599 -57.0286 34.858 61.1842 -54.92 20.4387 65.7863 -53.1414 -9.18353 63.1068 -52.8225 -31.7926 10.1666 -9.9777 -45.2866 14.5017 -10.8326 70.7816 14.2259 -10.5137 79.9368 23.3648 -10.642 84.3683 35.367 -11.0661 85.8037 48.9262 -12.0255 82.7112 61.2146 -12.6921 76.0168 71.4278 -13.3949 -20.2604 77.9924 -11.2248 -49.3845 92.9811 -15.3182 -60.8729 85.6046 -14.2238 -56.4851 22.8762 -11.2211 -64.3531 34.2467 -11.1677 -29.1309 81.0871 -11.445 -37.3177 89.3021 -14.5323 -69.0093 51.6317 -10.622 -67.6547 66.1837 -10.4878 5.71547 83.0356 -4.42811 57.0919 10.0917 -9.5929 6.03725 83.0742 -16.133 5.45968 86.1214 -3.26036 7.12048 86.8962 -15.0149 13.8867 86.9385 -24.0596 25.9809 87.0964 -28.959 -11.6043 122.781 8.68477 -11.2981 122.692 9.69681 -10.977 122.366 10.6888 -10.6656 121.82 11.586 -10.3765 121.078 12.3445 -10.1237 120.175 12.9302 -9.91827 119.156 13.3142 -9.77222 118.067 13.4803 -9.68768 116.96 13.4188 -9.67062 115.887 13.1341 -9.72327 114.899 12.6358 -9.85822 114.021 11.8907 -10.7227 112.914 8.71887 -11.1023 127.944 8.41562 -10.4921 127.767 10.4464 -9.85971 127.122 12.423 -9.24655 126.037 14.2114 -8.68082 124.561 15.7276 -8.18628 122.764 16.8946 -7.78964 120.733 17.6635 -7.49306 118.563 17.9719 -7.3344 116.363 17.8451 -7.30846 114.233 17.2735 -7.41818 112.273 16.2733 -7.69992 110.534 14.786 -8.2775 109.033 12.4727 -9.35776 108.08 8.5424 -9.95609 132.998 7.96262 -9.04932 132.737 10.981 -8.11142 131.781 13.9103 -7.20317 130.173 16.5602 -6.3661 127.988 18.8075 -5.64024 125.328 20.5468 -5.05821 122.318 21.6961 -4.64821 119.099 22.2025 -4.42282 115.824 22.0238 -4.39761 112.65 21.1845 -4.56294 109.746 19.6875 -4.97073 107.211 17.3891 -7.42485 103.383 8.21767 -8.20483 137.879 7.33685 -7.0141 137.537 11.2983 -5.78555 136.284 15.1374 -4.59557 134.176 18.611 -3.49826 131.313 21.5559 -2.54626 127.827 23.8351 -1.78407 123.883 25.3417 -1.24654 119.664 26.006 -0.958862 115.367 25.7954 -0.932175 111.202 24.7018 -1.15683 107.411 22.6977 -1.71957 104.094 19.6809 -4.90993 99.0215 7.7476 -5.87453 142.516 6.54797 -4.41762 142.098 11.3954 -2.91623 140.566 16.0879 -1.46082 137.989 20.3341 -0.119568 134.489 23.9337 1.04373 130.229 26.72 1.97571 125.407 28.5617 2.63261 120.249 29.3728 2.98405 114.998 29.1163 3.01297 109.897 27.8025 2.72233 105.248 25.381 2.00388 101.315 21.4907 -1.90344 95.1527 7.08847 -2.99854 146.84 5.6071 -1.29695 146.353 11.2694 0.45578 144.564 16.7478 2.15439 141.556 21.7035 3.72029 137.47 25.9059 5.07858 132.497 29.1585 6.16626 126.869 31.3079 6.93364 120.848 32.2555 7.3429 114.718 31.9552 7.37701 108.764 30.4219 7.02557 103.335 27.5927 6.15958 98.8146 22.9217 1.31064 91.5316 5.92221 0.38089 150.789 4.52833 2.30194 150.239 10.9231 4.28081 148.22 17.1066 6.19814 144.825 22.7007 7.96496 140.213 27.4444 9.49823 134.6 31.1152 10.7268 128.246 33.5419 11.592 121.45 34.611 12.0547 114.531 34.2722 12.0932 107.81 32.5417 11.6995 101.628 29.4492 10.7461 96.4739 24.1724 4.21408 154.305 3.32648 6.32714 153.7 10.3604 8.50323 151.481 17.1593 10.6111 147.749 23.3102 12.5537 142.677 28.5254 14.2397 136.505 32.5617 15.5905 129.519 35.2301 16.5418 122.048 36.4053 17.0504 114.439 36.0331 17.0919 107.05 34.1306 16.6589 100.258 30.74 15.7233 94.7279 25.791 8.4454 157.338 2.02082 10.7201 156.687 9.59079 13.0608 154.299 16.9057 15.3288 150.283 23.5229 17.4189 144.827 29.1348 19.2332 138.186 33.4774 20.6856 130.67 36.3481 21.7103 122.631 37.6123 22.2575 114.445 37.2119 22.3019 106.495 35.1648 21.8259 99.2209 31.4888 20.825 93.3985 26.5962 13.0133 159.842 0.628418 15.4163 159.154 8.62471 17.8875 156.633 16.3489 20.283 152.392 23.3369 22.4903 146.631 29.2623 24.4054 139.618 33.8481 25.9394 131.682 36.879 27.0211 123.193 38.2151 27.5987 114.549 37.7917 27.6461 106.153 35.6297 27.1561 98.4202 31.8069 26.2026 92.3353 26.7949 17.8512 161.781 -0.829224 20.3468 161.067 7.47549 22.9136 158.449 15.497 25.4011 154.045 22.7534 27.6929 148.063 28.9072 29.6814 140.78 33.6686 31.2747 132.539 36.8168 32.3972 123.724 38.2032 33.0378 114.732 37.7776 33.1394 106.004 35.5511 32.5863 97.9694 31.5919 31.965 91.3737 26.2299 28.0317 162.761 5.43213 30.6652 160.074 13.6627 33.218 155.556 21.1096 35.5698 149.416 27.4236 37.6109 141.943 32.3103 39.2458 133.487 35.5408 40.3779 124.44 36.8931 41.0778 115.182 36.3645 41.3685 106.251 34.3441 40.5714 98.0124 30.0964 39.483 90.8428 24.5869 25.47 163.494 -3.09354 33.2647 163.97 -5.38011 35.8181 163.241 3.11665 38.442 160.564 11.3176 40.9852 156.062 18.737 45.5605 150.164 24.1539 46.9596 143.512 28.5313 48.7731 136.143 30.9839 48.1273 125.112 34.1698 49.5294 116.289 34.2469 49.9179 107.113 32.426 48.6893 98.8206 27.8254 47.2243 91.628 22.178 38.4532 163.455 -6.88224 40.9503 162.742 1.42916 43.5171 160.123 9.45065 47.7967 155.173 17.3906 53.1913 129.392 30.4605 57.4434 120.187 30.353 57.7555 108.881 29.1971 56.501 100.349 24.8901 54.4406 93.4897 18.651 43.5401 162.322 -8.34137 45.9453 161.636 -0.335434 50.4154 158.124 9.95186 48.4521 160.589 -9.73451 50.7305 159.939 -2.15119 54.3182 157.614 6.23138 63.8033 119.565 25.3861 63.9101 110.06 24.7226 62.901 102.219 20.9027 60.7679 96.0876 14.7059 53.1171 158.28 -11.0416 55.2347 157.675 -3.99215 58.19 155.872 2.80748 67.2969 119.573 21.0355 67.7537 111.25 20.0049 67.3733 103.92 17.1459 65.043 98.1407 11.5222 57.4671 155.429 -12.245 59.394 154.879 -5.83163 62.1915 152.982 0.103493 69.6977 119.848 16.5973 70.8076 112.269 15.649 70.4413 106.039 12.8968 68.5447 100.725 8.19913 61.4382 152.077 -13.326 63.1457 151.59 -7.6422 65.78 149.427 -2.04368 72.9933 113.56 10.1899 72.6093 109.123 7.23009 71.4208 102.692 -5.93692 66.1158 146.314 -14.556 67.6306 145.656 -8.87371 68.937 144.641 -4.73136 71.1249 140.238 -3.87204 72.9303 135.432 -3.25369 73.955 129.872 0.956131 73.8222 124.051 6.88754 69.9913 140.169 -15.5436 71.876 138.749 -9.69077 -11.3759 117.634 8.77818 63.3644 132.244 19.7795 58.7861 144.777 19.4836 67.0122 129.764 16.8798 70.6155 138.855 5.83472 63.4756 148.383 9.49515 62.8195 133.184 17.464 65.3848 131.323 15.0306 58.8061 141.77 16.8434 60.1659 137.06 18.4575 67.3103 131.311 12.1873 59.8997 144.627 13.2097 68.6945 133.697 9.63008 62.6779 144.573 10.0134 68.5944 137.783 7.94185 66.1373 141.972 8.0323 63.5846 133.449 17.7798 66.1373 131.523 15.497 59.6002 142.393 17.3936 68.0977 131.472 12.4801 69.5345 133.885 9.64862 63.3399 145.241 10.1906 69.4233 138.273 7.76169 66.8358 142.631 7.99524 70.3049 128.194 12.73 72.5233 132.983 6.70811 70.8876 139.701 3.88477 57.3232 138.168 24.4749 62.3546 131.157 22.7541 67.3926 146.279 4.41341 62.6852 151.575 8.16354 58.5355 152.152 14.7897 56.0087 147.327 21.699 67.4163 128.203 18.5732 61.7689 138.738 16.9517 60.1192 142.066 15.9826 64.1066 135.62 16.4201 65.946 133.39 14.7222 67.2903 132.939 12.8657 68.2793 135.009 11.4955 67.7633 138.355 10.7993 65.6517 141.685 10.9157 62.861 143.967 11.7343 60.6115 144.197 13.6175 60.9733 137.35 18.8824 60.8999 145.33 13.6701 65.4233 132.097 14.9091 64.194 132.052 16.3667 63.0381 133.984 17.1452 60.5626 137.576 18.0038 59.2072 139.485 18.0623 59.179 141.815 16.5439 61.4122 134.887 18.1943 67.2154 132.019 12.4453 66.4087 131.047 13.613 59.0411 143.572 15.1678 60.1096 144.464 13.3409 68.5151 134.306 10.3248 68.0821 132.189 10.829 61.149 144.974 11.4258 62.7831 144.363 10.5976 68.2882 138.059 8.96576 68.9548 135.624 8.61655 64.3898 143.534 8.86493 66.015 141.892 9.0614 67.5801 139.948 7.72906 62.5229 143.343 13.2497 61.0674 143.946 13.8533 64.8184 141.126 13.1519 66.8854 138.187 12.9695 67.3889 133.651 13.1986 66.7994 134.635 14.1328 65.5909 137.242 14.9847 63.4504 140.109 15.2998 61.4471 142.587 14.915 69.5049 129.705 12.5735 72.1177 136.32 4.77299 71.5801 133.393 8.20432 59.2932 134.201 23.8217 59.9546 137.579 21.2023 65.0801 149.359 5.97188 67.3192 144.395 6.27661 56.9459 150.409 18.5398 60.5959 148.729 14.5628 56.1303 142.947 23.7928 65.2135 129.283 20.9902 68.9562 127.783 15.7988 69.2988 142.988 3.69571 60.547 152.61 11.1863 71.7477 130.025 9.56706 72.9533 131.626 4.33482 71.3592 125.34 12.6099 70.8958 140.288 0.80043 60.4142 128.485 25.3476 53.3566 137.368 28.099 60.1785 154.454 5.65604 66.8521 148.152 1.54631 50.4599 149.321 23.457 54.4777 155.19 14.0957 66.8083 125.61 19.6379 60.7657 140.445 16.6648 62.9418 137.1 16.8738 65.1157 134.361 15.6497 66.6044 132.832 13.8036 67.9094 133.728 12.0538 68.246 136.622 11.0736 66.8721 140.078 10.7355 64.2593 143.015 11.2634 61.6205 144.401 12.4393 60.0361 143.345 14.9402 62.2167 135.13 18.5205 60.0235 144.253 15.7061 59.9835 139.927 18.519 64.9258 132.28 16.7923 67.1776 131.236 14.0179 68.9044 132.335 10.9928 69.7696 135.952 8.50682 68.3794 140.573 7.55853 64.9874 144.212 8.9287 61.9957 145.611 11.7513 64.3364 132.866 16.125 59.6128 139.75 17.5893 61.7458 135.583 17.8214 66.3694 131.791 13.6738 59.3318 143.457 15.0788 67.9657 132.894 11.3154 61.3218 144.772 11.7684 68.6738 136.094 9.51442 64.4194 143.374 9.69681 67.3615 140.039 8.78485 61.7844 144.005 13.1407 63.6091 142.365 13.2305 65.9438 139.693 13.0347 67.4912 136.673 12.9257 66.9492 133.714 13.8169 66.3464 135.861 14.5969 64.5685 138.672 15.2167 62.3546 141.447 15.1878 60.8028 143.341 14.6881 70.7571 131.099 10.3129 71.4393 136.084 6.66586 61.5272 134.531 20.6551 65.2209 146.715 7.63861 59.5052 147.331 17.3142 58.8328 141.204 20.8056 65.3699 130.706 18.6303 68.3045 129.387 14.7556 69.1838 141.704 5.63008 61.9527 149.098 11.8158 72.6026 127.566 8.47568 72.3965 136.097 1.70497 56.5247 132.614 27.6949 63.6929 151.685 3.08774 52.022 153.009 18.9305 51.1249 144.226 26.8356 63.9865 126.508 22.5154 69.2202 125.238 16.535 69.0541 144.317 0.692924 57.2187 155.661 9.56113 67.741 135.282 12.8723 67.7907 134.283 12.7419 71.6609 136.111 -15.9358 72.3201 105.969 -15.2641 74.0417 117.157 -16.1597 75.2065 106.525 -16.2769 79.8634 107.308 -17.6552 91.3867 109.457 -21.1013 88.3001 106.164 -20.0804 79.2991 114.295 -17.6596 83.595 107.064 -18.7273 84.1132 113.461 -18.9875 85.3967 106.488 -19.2404 74.3568 135.883 -16.7173 78.9611 134.305 -18.0244 82.9529 133.126 -19.1618 84.9244 134.248 -19.7638 86.99 136.683 -20.4237 90.4947 139.433 -21.5114 93.7133 139.447 -22.4507 94.9967 133.968 -22.6969 95.4994 138.023 -22.9393 92.0955 130.536 -21.7701 88.3638 126.832 -20.5942 85.6599 124.96 -19.7608 81.4537 123.062 -18.4885 74.8654 115.813 -16.3999 75.0456 119.162 -16.437 77.3477 106.901 -16.9108 90.4702 107.067 -20.7351 76.8324 114.944 -16.9597 81.866 106.977 -18.232 81.8267 113.709 -18.3173 87.5994 113.172 -20.0641 72.8517 136.463 -16.4526 76.6211 135.168 -17.3616 81.0749 133.56 -18.6235 84.1259 133.478 -19.5125 85.7941 135.222 -20.0404 95.5972 136.005 -22.9201 93.7963 132.209 -22.3054 90.1255 128.604 -21.1495 87.0197 125.694 -20.1745 83.7714 124.169 -19.1907 77.8207 121.529 -17.3927 90.9181 111.196 -21.0087 72.5032 108.223 -2.09484 75.2258 128.38 -2.75545 73.0089 134.723 -11.6266 74.987 120.808 6.20024 75.9205 117.527 -9.42607 74.9633 116.553 -9.73895 78.1707 127.11 -4.45851 76.4373 109.876 3.38505 75.8359 108.157 -4.45555 81.7666 127.621 -5.91393 76.6804 114.045 7.19746 76.6345 120.205 6.07716 82.3917 119.936 3.28125 80.7256 108.785 -7.12913 83.5075 117.685 2.46864 82.9974 115.277 1.76725 92.4261 111.042 -14.8022 90.3783 110.634 -9.15768 95.4037 129.402 -7.5814 96.0984 136.789 -17.4832 82.3405 119.579 -9.26593 80.8413 115.369 -9.65369 85.2625 124.587 -1.81087 84.8272 129.21 -7.48057 85.7451 117.806 -3.52579 86.8232 121.414 -9.52765 85.9097 118.886 0.325172 87.199 131.776 -9.16064 88.7516 134.416 -11.1099 90.1003 121.341 -5.78863 94.2515 126.991 -9.62626 89.9564 123.624 -10.2795 92.7753 126.838 -11.8772 90.8128 122.536 -2.9371 84.8317 108.856 -9.63812 86.0135 114.746 -2.76731 86.5792 108.162 -11.0609 90.7371 125.097 -2.53673 73.043 106.875 -10.3143 75.0849 116.366 -9.04127 75.9716 116.037 -9.92357 74.6763 117.226 -13.3023 76.6107 127.495 -3.81347 75.8715 107.338 -10.9986 74.2945 131.787 -6.83849 77.6673 130.92 -7.97213 79.9509 127.383 -5.12654 76.4239 117.364 7.49699 79.6098 120.36 4.88643 79.5468 114.305 5.90663 78.3479 108.471 -5.80049 80.1169 108.117 -13.6233 81.3351 130.611 -9.06203 83.483 116.149 2.62879 83.0011 114.026 3.50368 91.761 108.672 -14.126 92.1266 109.889 -18.0081 93.8845 131.645 -7.45462 96.1799 134.037 -11.4887 81.9698 117.706 -6.57603 78.9833 118.659 -9.33636 78.2737 115.773 -9.7916 81.6235 116.026 -5.37269 79.8693 114.493 -14.8934 83.5372 128.01 -6.78511 83.5372 116.896 -3.09725 86.2686 119.313 -6.65833 84.7701 120.477 -9.37344 85.7155 117.814 -1.09836 82.8336 116.065 -0.2435 84.0376 118.31 1.24899 82.4806 122.05 -11.5955 87.1182 124.405 -12.0018 88.0999 133.229 -10.2009 92.2897 123.818 -7.20253 93.4241 126.82 -10.8934 91.5661 125.3 -11.0513 89.9394 122.25 -7.90022 90.4806 121.459 -4.05592 93.4426 125.358 -4.55564 95.0537 127.861 -8.4207 86.6067 133.598 -11.5288 88.5707 135.852 -12.9256 89.8207 126.465 -12.6372 92.9117 128.817 -13.9117 95.0404 130.344 -13.2941 82.9299 109.011 -8.36213 85.6702 113.376 -2.09262 83.9642 114.927 -0.734322 83.2265 115.122 -10.3417 85.751 115.129 -7.31301 84.1511 107.994 -14.6242 84.6693 113.83 -16.0203 88.6597 113.95 -5.64331 88.16 112.314 -5.20661 87.6284 114.616 -8.44739 91.1709 112.257 -10.1186 89.261 107.896 -12.7825 84.4929 131.425 -10.2884 88.4714 122.412 -9.79086 88.4424 120.148 -1.065 85.9995 121.323 0.560211 86.1099 130.434 -8.26055 87.8345 118.872 -4.42515 91.1968 133.419 -9.01013 88.8191 128.275 -4.56676 81.5976 122.873 0.828606 76.9644 122.205 2.94316 81.4612 110.902 -0.296883 85.7392 110.723 -3.63627 75.9894 134.176 -12.4407 80.1251 132.842 -13.5803 83.9442 132.485 -14.6398 85.946 134.022 -15.3694 88.0213 136.327 -16.4059 91.3103 138.582 -16.933 94.3976 138.399 -17.1755 95.3962 132.764 -17.8798 92.8436 130.018 -17.5358 89.2928 126.974 -16.3569 86.4413 124.91 -15.6051 82.4754 123.01 -14.5108 91.896 112.486 -14.9156 82.8751 115.658 -0.544518 86.2805 115.188 -4.50003 76.1644 116.572 -8.83145 75.4185 115.882 -13.8516 76.0488 119.438 -12.6624 75.6543 131.457 -7.41829 79.4986 117.656 6.72963 79.0322 110.008 1.65974 78.0128 107.635 -12.0211 79.5268 130.758 -8.47779 82.1877 117.111 4.66623 91.3177 107.267 -17.6789 94.3523 135.804 -11.3701 79.199 116.397 -7.74822 77.416 115.064 -14.3959 84.1318 118.571 -6.36101 83.3881 117.034 -0.32283 85.0712 123.225 -11.8706 91.807 124.332 -9.03386 92.9703 124.047 -5.59067 87.5542 134.782 -12.3095 91.394 127.808 -13.2948 94.0891 129.464 -13.8324 83.6906 111.07 -2.07482 83.6929 113.909 0.096817 83.6402 115.586 -6.22978 82.2292 108.145 -14.0185 82.2626 114.108 -15.3812 85.9475 107.439 -15.3597 88.2578 113.456 -17.1125 88.2163 114.084 -11.2463 88.9763 106.666 -16.7455 83.1168 130.614 -9.81607 88.5233 125.332 -12.2287 88.5596 122.718 -0.990116 88.1236 120.568 -7.14322 91.5424 136.545 -12.2591 90.1959 130.708 -6.46555 83.1835 123.375 -0.566017 79.5957 122.783 1.99635 74.3672 117.295 7.88031 87.5631 110.072 -6.37584 74.1744 134.769 -11.9588 77.8467 133.564 -12.9456 82.0565 132.388 -14.1586 85.1416 133.114 -14.9897 86.8728 135.108 -15.8513 96.088 134.721 -17.6366 94.3716 131.254 -17.9443 90.9752 128.478 -16.8885 87.8886 125.817 -15.9581 84.6456 124.017 -15.1551 78.798 121.528 -13.6567 91.6357 111.58 -17.9377 84.2971 115.519 -2.50114 83.7426 120.625 1.77541 88.5833 114.451 -6.97195 88.0828 118.976 -2.26166 92.4098 128.085 -4.46593 90.9233 113.198 -10.8133 95.8359 131.912 -12.44 88.8584 109.104 -9.27186 75.6269 121.857 3.65715 78.5266 120.452 -11.3783 85.7325 132.479 -10.7807 87.2109 126.227 -3.03349 82.3865 115.792 -3.39975 85.5323 114.683 -10.7629 88.5351 113.906 -14.361 85.1809 114.135 -13.5766 82.7372 114.618 -13.0324 80.3171 114.815 -12.4815 77.8096 115.265 -12.0804 75.7054 115.895 -11.7089 74.7512 116.96 -11.2522 75.744 118.732 -10.8711 69.843 141.836 -9.30819 67.9679 143.189 -15.0231 72.8213 119.941 10.9157 71.6506 104.986 0.684029 69.456 100.727 -14.47 73.995 114.29 6.9995 73.1142 110.85 3.56299 72.9748 136.288 -10.6843 71.3295 137.732 -15.8765 71.3963 104.177 -15.1099 74.1581 133.103 -5.27631 75.2109 128.825 -1.40012 75.073 122.123 6.21136 74.2901 118.616 8.83824 74.0083 114.133 7.99301 73.4597 110.347 4.91832 72.8198 106.93 -0.967873 82.4554 113.29 2.18171 79.572 111.521 3.2642 80.1607 112.304 4.14649 -10.1429 113.254 10.7089 72.7842 105.382 -7.25814 -5.83078 104.99 14.0223 -2.85619 101.143 15.3198 0.690811 97.9167 16.3207 4.67302 94.8688 16.9057 66.3361 95.2358 0.153168 -11.892 122.645 7.67271 -12.1529 122.274 6.67995 -12.3643 121.685 5.78059 -12.534 120.909 5.0184 -12.626 119.978 4.42898 -12.646 118.938 4.04047 -12.5956 117.84 3.87142 -12.4777 116.734 3.92851 -12.2953 115.674 4.20803 -12.0595 114.707 4.70033 -11.7659 113.862 5.43361 -11.6777 127.672 6.3856 -12.1989 126.934 4.40896 -12.6304 125.765 2.6199 -12.9514 124.219 1.10294 -13.1465 122.369 -0.071487 -13.2072 120.301 -0.848503 -13.1242 118.113 -1.18808 -12.8996 115.91 -1.07389 -12.5437 113.798 -0.511894 -12.0803 111.876 0.468269 -11.5131 110.201 1.90664 -10.7279 108.684 4.35558 -10.8109 132.596 4.94501 -11.5843 131.502 2.01563 -12.2226 129.769 -0.634972 -12.6979 127.479 -2.88298 -12.987 124.738 -4.62311 -13.0768 121.674 -5.77454 -12.9633 118.431 -6.28242 -12.6504 115.16 -6.12376 -12.1492 112.018 -5.30077 -11.4627 109.168 -3.83942 -10.636 106.694 -1.7434 -9.32736 137.352 3.37615 -10.3401 135.919 -0.462959 -11.1772 133.648 -3.93729 -11.8 130.646 -6.88298 -12.1796 127.054 -9.1636 -12.2968 123.039 -10.6717 -12.1477 118.789 -11.3375 -11.7385 114.502 -11.1299 -11.0883 110.379 -10.0578 -10.1881 106.649 -8.12857 -9.11383 103.415 -5.39493 -7.24765 141.871 1.70126 -8.48584 140.119 -2.99197 -9.509 137.344 -7.23812 -10.2704 133.674 -10.8392 -10.7339 129.283 -13.627 -10.8777 124.375 -15.4702 -10.6953 119.179 -16.2843 -10.1948 113.94 -16.03 -9.38 108.916 -14.6924 -8.24042 104.41 -12.2576 -6.81169 100.55 -8.6587 -4.60298 146.087 -0.054435 -6.04802 144.042 -5.53284 -7.24321 140.802 -10.4893 -8.13144 136.519 -14.6932 -8.67267 131.393 -17.9473 -8.84024 125.664 -20.0997 -8.62744 119.599 -21.0494 -8.04318 113.482 -20.7529 -7.08603 107.625 -19.1759 -5.77963 102.353 -16.3577 -4.12698 97.8226 -12.2769 -1.43115 149.939 -1.86574 -3.0623 147.631 -8.04924 -4.41095 143.974 -13.6441 -5.41411 139.139 -18.3892 -6.02504 133.353 -22.0622 -6.21411 126.886 -24.4919 -5.97388 120.04 -25.564 -5.31401 113.136 -25.2289 -4.25377 106.509 -23.4776 -2.81467 100.514 -20.3577 -0.857285 95.3878 -15.9247 2.22112 153.371 -3.70596 0.427597 150.832 -10.5049 -1.05525 146.812 -16.6565 -2.15849 141.496 -21.8739 -2.82948 135.134 -25.9124 -3.03783 128.024 -28.5838 -2.77313 120.497 -29.7627 -2.04877 112.906 -29.3942 -0.897324 105.606 -27.4954 0.658188 98.9955 -24.1115 2.66969 93.7269 -19.7623 6.30045 156.332 -5.54841 4.37052 153.602 -12.8633 2.77497 149.275 -19.4821 1.58868 143.556 -25.0954 0.866531 136.711 -29.4409 0.642624 129.061 -32.3147 0.926575 120.963 -33.5833 1.70657 112.796 -33.1866 2.9455 104.941 -31.144 4.64336 97.9398 -27.491 6.69341 92.8958 -23.465 10.7483 158.78 -7.36639 8.71009 155.896 -15.0906 7.02557 151.328 -22.08 5.77182 145.289 -28.0077 5.00963 138.061 -32.5957 4.77312 129.983 -35.6311 5.07339 121.431 -36.9701 5.89712 112.807 -36.5512 7.20499 104.513 -34.3944 9.05486 97.2925 -30.556 11.2406 92.5807 -26.9734 15.4979 160.678 -9.13321 13.3818 157.684 -17.1547 11.6321 152.94 -24.4125 10.3309 146.669 -30.5671 9.53901 139.163 -35.3323 9.29359 130.775 -38.4834 9.60574 121.895 -39.8743 10.4606 112.939 -39.4398 11.8189 104.326 -37.2 14.0588 96.9514 -33.3467 16.6434 92.4725 -29.9718 23.0545 162.362 -11.6177 20.8829 159.289 -19.8483 19.0871 154.421 -27.2967 17.7525 147.986 -33.6129 16.9392 140.284 -38.5019 16.6871 131.675 -41.736 17.0074 122.563 -43.1632 17.8853 113.373 -42.7169 19.2791 104.535 -40.4185 21.2106 97.0107 -36.2628 23.42 92.7149 -32.4103 30.8573 162.843 -13.8754 28.6938 159.781 -22.0763 26.9055 154.931 -29.4973 27.9242 148.749 -36.2635 26.8335 141.896 -40.4148 27.1308 134.403 -43.1558 24.8332 123.19 -45.306 25.7073 114.033 -44.8611 27.096 105.227 -42.5709 28.977 97.7766 -38.3173 31.01 93.1798 -33.7501 36.0984 162.352 -15.1936 33.9816 159.358 -23.2144 33.3826 154.015 -31.9877 31.2043 127.797 -45.1888 41.2721 161.261 -16.3458 39.5527 157.252 -27.2589 34.1114 118.081 -46.7154 35.274 106.958 -44.7195 36.8836 99.3018 -39.4702 38.9366 94.263 -33.7738 46.3034 159.583 -17.3163 44.8502 156.854 -26.2038 42.5748 117.521 -46.6924 42.9789 108.591 -45.2964 44.501 100.951 -40.6187 47.291 94.8665 -33.4268 51.1197 157.345 -18.0904 49.9772 155.213 -25.3275 48.2059 117.708 -45.7612 48.7168 109.961 -44.0908 50.3568 102.509 -40.027 53.4827 96.7468 -32.9174 55.6498 154.578 -18.6568 54.8409 152.392 -25.0769 52.7864 118.209 -43.2581 53.6228 111.351 -41.2941 55.2413 104.656 -38.0407 58.7364 99.47 -31.8202 59.8286 151.323 -19.0083 59.0656 148.888 -25.0487 58.6371 112.647 -37.2162 60.0213 108.358 -34.3455 66.7364 101.215 -23.2055 64.3461 145.393 -20.1264 63.2939 144.171 -24.2324 64.6093 139.563 -25.8976 66.0209 134.24 -27.224 64.8265 128.137 -31.0498 61.4092 121.344 -36.0211 68.4454 138.292 -21.5291 45.453 130.809 -41.5454 41.6524 143.401 -39.21 50.101 128.433 -40.9145 59.0129 137.957 -33.7931 50.9314 147.376 -33.4765 46.2433 131.854 -39.2708 49.7303 130.061 -38.4737 43.1271 140.511 -36.8678 43.4601 135.718 -38.774 52.9147 130.138 -37.0872 45.9668 143.509 -34.5197 55.443 132.636 -35.7653 50.0284 143.557 -33.3201 56.2208 136.784 -34.4582 54.0432 141.001 -33.4001 46.726 132.091 -39.9847 50.1181 130.245 -39.3182 43.4927 141.099 -37.7857 53.4219 130.291 -37.7879 56.1362 132.807 -36.2509 50.4828 144.208 -33.8546 57.0422 137.29 -34.817 54.643 141.653 -33.7723 55.0842 126.961 -39.0439 60.0643 131.807 -35.2485 60.3282 138.873 -32.42 37.8104 136.599 -42.3736 42.95 129.62 -43.6504 57.0126 145.449 -31.2322 50.941 150.632 -32.0693 43.8723 150.975 -35.442 38.0876 145.889 -39.6926 49.5108 126.802 -42.685 45.605 137.439 -38.4211 44.6923 140.828 -36.8618 47.893 134.316 -39.1277 50.3776 132.134 -38.6198 52.5225 131.75 -37.7278 54.0743 133.869 -37.1666 53.9713 137.248 -36.4482 52.0865 140.596 -35.554 49.2647 142.875 -34.8407 46.3531 143.052 -35.2278 43.9086 135.978 -39.5785 46.5533 144.179 -35.4761 49.8356 130.846 -38.4441 47.9983 130.76 -39.0142 46.6052 132.656 -39.1566 44.0339 136.249 -38.6168 42.8387 138.17 -38.0111 43.6017 140.564 -36.8188 44.6634 133.535 -39.1929 52.6931 130.851 -37.3023 51.3763 129.845 -37.8198 44.2029 142.382 -35.6615 46.0758 143.337 -34.7362 54.9106 133.214 -36.2776 54.299 131.078 -36.3859 47.9753 143.917 -33.7041 49.8059 143.321 -33.8591 55.4037 137.025 -35.1736 56.1837 134.599 -35.1328 52.1021 142.547 -33.2281 53.387 140.878 -34.1972 55.4482 138.973 -33.8331 48.1733 142.19 -35.9091 46.6141 142.785 -35.6607 50.1892 139.952 -36.9649 52.0658 136.997 -37.7961 52.4194 132.447 -38.0845 51.4089 133.398 -38.5931 49.903 135.983 -38.7555 47.893 138.861 -37.994 46.3798 141.377 -36.6995 54.5637 128.486 -38.5583 60.8235 135.305 -33.5811 58.5718 132.382 -36.0552 39.8159 132.627 -42.8845 41.7955 136.119 -41.0087 54.1663 148.483 -31.4153 55.9539 143.477 -32.6654 40.5373 149.092 -37.6693 45.7748 147.539 -36.2109 37.1201 141.421 -41.3319 46.3145 127.804 -43.6823 52.3171 126.477 -40.9857 59.1168 142.133 -31.5495 47.4993 151.562 -33.5084 58.2159 128.907 -37.3334 61.9319 130.28 -33.5996 55.9843 124.214 -39.8068 61.9357 139.512 -29.8517 40.0547 127.159 -44.8752 32.5262 135.693 -43.2641 50.1396 153.648 -28.7343 58.0699 147.457 -28.6001 32.4395 147.874 -38.275 40.7865 154.09 -32.8062 48.5485 123.891 -44.2502 44.8917 139.171 -37.7145 46.6541 135.791 -38.9245 49.1683 133.076 -38.9875 51.4356 131.609 -38.169 53.4767 132.569 -37.389 54.253 135.498 -36.8633 53.2321 138.983 -35.9892 50.709 141.926 -35.1558 47.8345 143.294 -34.7866 45.1675 142.152 -35.9951 45.1713 133.754 -39.9113 44.7331 143.025 -36.6728 43.2421 138.583 -38.8326 48.3979 130.967 -39.812 51.8085 130.009 -38.6079 54.898 131.214 -36.9842 56.9414 134.926 -35.5317 56.2052 139.595 -34.146 52.5633 143.214 -33.6329 48.5055 144.528 -34.4611 48.2504 131.567 -38.9341 43.4311 138.451 -37.8428 45.1446 134.246 -39.058 51.3088 130.573 -37.8872 44.498 142.267 -35.7379 53.9312 131.767 -36.7632 47.939 143.698 -34.0771 55.4586 135.033 -35.7586 51.6817 142.351 -33.9384 54.6942 139.021 -34.6087 47.6009 142.867 -35.4487 49.1112 141.201 -36.4341 51.2183 138.511 -37.4098 52.6196 135.479 -38.0192 51.7129 132.488 -38.381 50.7646 134.609 -38.7822 48.8984 137.414 -38.4633 47.013 140.215 -37.3683 45.949 142.148 -36.1946 56.8747 130.003 -37.3653 59.271 135.122 -34.8148 43.4222 133.063 -41.3875 53.4219 145.768 -32.7803 43.3933 146.037 -37.8806 41.0259 139.775 -40.1938 47.7811 129.312 -41.5937 52.3542 128.12 -39.7631 57.9468 140.752 -33.0391 48.3905 148.009 -34.6435 59.466 126.101 -36.8574 62.769 134.918 -31.1499 35.337 130.917 -44.7544 54.5184 150.949 -28.3414 36.1436 151.734 -35.4628 31.2473 142.63 -41.2578 44.4825 124.75 -45.068 52.223 123.767 -42.08 60.3461 143.735 -29.0309 45.5294 154.723 -30.4826 52.8762 134.088 -38.0496 52.9993 133.095 -37.9288 65.4323 107.528 -26.9171 67.9487 126.833 -28.5074 70.5081 134.319 -20.2732 62.6749 119.616 -35.7438 72.6589 117.278 -23.098 72.2444 116.442 -22.3254 71.3889 125.795 -28.3703 65.5901 109.029 -33.5959 69.3603 107.637 -26.6398 75.0515 126.757 -29.2103 63.5342 113.12 -36.9642 64.2148 119.206 -36.4696 70.5985 118.958 -37.1681 74.9121 108.319 -27.0453 71.9998 116.742 -36.9872 71.9612 114.391 -36.0381 88.8094 110.578 -26.9527 84.1169 110.131 -30.6072 87.2695 128.749 -35.4465 93.0867 136.547 -27.8016 77.576 118.913 -26.6205 76.2215 114.981 -25.3972 75.678 123.817 -34.645 78.3012 128.686 -29.8368 77.0845 117.097 -33.174 81.2906 120.822 -28.8656 75.1464 118.021 -36.546 81.172 131.293 -29.8079 83.4949 133.994 -29.1154 81.9364 120.685 -33.7567 87.4282 126.444 -33.002 84.2007 123.162 -29.9962 87.3956 126.405 -30.3062 80.9881 121.747 -36.5927 79.7217 108.446 -27.144 76.8458 113.737 -33.7746 81.9683 107.792 -26.8548 80.6767 124.289 -36.9998 70.1714 106.645 -20.1493 72.022 116.241 -22.9037 72.8888 115.884 -22.6383 73.3892 117.141 -19.0068 69.7533 125.895 -28.1175 72.9185 107.101 -21.1147 69.1965 130.484 -24.8144 72.6997 129.897 -25.4795 73.1742 126.294 -28.81 63.1531 116.358 -37.3542 67.3688 119.359 -37.0517 66.7935 113.286 -37.5877 72.197 107.977 -26.8719 77.8994 107.939 -21.2215 76.3201 129.88 -26.4826 71.9026 115.225 -37.0598 71.0463 113.066 -37.4483 87.9791 108.369 -27.0824 90.3568 109.787 -24.1197 85.8919 131.003 -34.834 89.9668 133.538 -32.7744 75.3807 117.261 -28.6335 74.2589 118.273 -24.8974 74.5081 115.555 -23.9173 74.7186 115.201 -29.2771 78.273 114.414 -20.2702 76.9377 127.337 -29.5447 74.9877 116.19 -32.3036 79.228 118.61 -30.8741 79.7455 119.59 -27.752 75.7618 117.015 -35.1966 72.8947 115.268 -34.2906 73.0867 117.445 -36.2917 78.8617 122.15 -25.111 82.7305 124.079 -27.0743 82.4725 132.777 -29.4795 84.5114 123.193 -33.8509 87.4141 126.338 -31.4821 85.952 124.849 -30.2847 82.9247 121.687 -31.9314 81.3232 120.724 -35.4257 84.0399 124.603 -36.7655 87.4445 127.25 -34.4856 81.9223 133.222 -27.574 84.3016 135.509 -27.551 85.3181 126.104 -28.0604 88.5803 128.469 -28.7521 90.0231 129.941 -30.4819 77.43 108.57 -27.2025 76.3149 112.625 -34.143 74.121 114.113 -34.4307 78.5236 114.752 -26.0741 79.2235 114.861 -29.7308 81.84 107.809 -22.5419 82.8432 113.477 -21.7471 80.6945 113.198 -32.7484 80.1006 111.667 -32.8137 81.4167 114.445 -29.7768 85.2891 111.653 -30.1957 85.1586 107.567 -26.8363 79.5016 131.024 -27.3879 82.7149 121.901 -29.5647 78.0128 119.311 -36.7914 75.0649 120.445 -36.8974 79.7863 129.926 -29.9221 79.3229 118.187 -33.5803 84.4402 132.877 -32.1553 80.111 127.576 -34.3959 71.2569 121.989 -34.7844 66.2834 120.958 -33.9154 71.8315 110.129 -33.2852 77.2358 110.04 -32.7655 73.4782 133.884 -21.131 77.6228 132.464 -22.2276 81.3655 132.277 -23.4746 83.426 133.82 -24.0033 85.7036 136.141 -24.3458 88.7308 138.375 -25.7679 91.4667 138.163 -27.2159 92.7583 132.552 -26.9171 90.4562 129.827 -25.7152 86.8669 126.78 -24.6669 84.0844 124.721 -23.6771 80.1888 122.834 -22.3988 88.4224 111.98 -26.642 73.0971 114.872 -34.0422 78.0365 114.257 -32.4652 72.6559 116.366 -23.6348 74.0565 115.738 -18.8756 74.3546 119.371 -20.3332 70.6786 130.252 -24.9797 66.3234 116.559 -38.424 68.7427 109.182 -33.5877 75.2695 107.415 -21.4172 74.5162 129.923 -26.0103 69.7229 116.044 -38.0771 89.5331 107.124 -23.792 88.3401 135.32 -31.9677 74.1388 115.95 -26.0645 75.9612 114.948 -19.4391 77.1416 118.114 -30.0044 73.3922 116.231 -34.5642 80.9955 123.121 -26.1556 85.0815 123.793 -32.0715 84.2148 123.344 -35.5836 83.1264 134.427 -27.4776 86.9811 127.454 -28.4118 89.522 129.098 -29.4795 74.6652 110.346 -32.9938 73.4634 113.087 -34.946 76.8228 114.888 -29.5521 79.8915 107.956 -22.0252 80.6122 114.073 -21.0487 83.7573 107.262 -22.8645 86.4999 113.195 -22.8837 83.3651 113.698 -27.6845 87.0649 106.513 -23.293 78.1729 130.027 -26.8719 84.0191 124.97 -27.6585 78.0395 121.874 -37.0279 80.9955 119.953 -31.531 86.4391 136.135 -29.7404 82.2626 130.071 -33.6418 73.3188 122.63 -34.5204 68.9993 121.598 -34.5597 61.1201 116.288 -36.4563 80.2549 109.485 -31.4116 71.6743 134.356 -20.764 75.3384 133.298 -21.6337 79.5527 132.054 -22.774 82.5547 132.906 -23.8513 84.4528 134.914 -24.1434 93.1861 134.488 -27.5777 91.9487 131.059 -26.2461 88.5515 128.283 -25.1888 85.4827 125.624 -24.1983 82.3397 123.833 -23.052 76.6708 121.456 -21.1288 89.869 111.457 -23.9848 75.2791 114.471 -33.131 72.5418 119.712 -36.6595 81.3907 113.876 -31.5584 78.3679 118.196 -35.5399 83.0864 127.336 -36.4037 85.4308 112.541 -29.518 90.2145 131.46 -31.6971 82.9166 108.627 -29.6277 64.7835 120.521 -33.7531 75.2428 120.861 -23.2937 80.7976 132.083 -27.6852 77.9572 125.484 -34.7339 74.1796 115.013 -31.4161 80.9021 114.638 -26.7177 85.1483 113.312 -25.263 82.0676 114.019 -24.0982 79.6802 114.358 -23.3746 77.3173 114.669 -22.6413 75.2124 115.161 -21.7041 73.588 115.837 -21.0027 72.7523 116.861 -20.956 73.4137 118.581 -21.8902 66.4762 141.604 -20.8641 58.3546 118.743 -38.2809 63.6573 103.164 -29.6181 61.2017 113.464 -35.2759 62.603 110.079 -31.8602 69.9438 135.891 -21.1621 68.2393 131.67 -26.2038 67.4378 127.136 -29.5202 62.8091 120.687 -35.9907 60.5767 117.653 -37.3935 60.7761 113.247 -36.1998 62.0921 109.556 -33.1525 65.2417 105.935 -28.1842 71.3073 112.394 -36.0092 68.3164 110.617 -35.2945 68.3445 111.331 -36.3747 -11.3552 113.133 6.63324 68.4684 104.805 -22.5375 -9.45044 104.401 1.95409 -7.56053 100.492 -0.627556 -5.0686 97.2087 -3.46945 -1.8849 93.9531 -6.38548 56.808 93.3547 -23.3279 61.9223 96.6682 -23.3508 59.4081 140.566 19.6623 60.4639 137.464 20.042 61.8763 134.831 19.5882 63.4845 132.857 18.7674 59.1931 143.585 18.4382 65.1653 131.503 17.6961 59.7648 145.792 16.5098 66.574 130.654 16.1776 60.7479 147.03 14.1165 67.7426 130.322 14.3856 61.9742 147.354 11.7839 68.7983 130.581 12.5261 63.4081 146.812 9.84286 69.823 131.736 10.6896 65.1046 145.464 8.28365 70.6207 133.636 8.99838 67.079 143.51 7.13741 70.6489 135.976 7.7083 68.7916 141.109 6.6273 70.0306 138.529 6.87865 46.0899 131.451 -40.7647 44.2964 133.408 -40.6498 42.8521 136.048 -40.2939 42.1344 139.179 -39.5132 48.0895 130.139 -40.7032 42.5725 142.25 -38.4974 50.1107 129.339 -40.116 44.0636 144.531 -37.2763 52.0814 129.065 -39.1855 46.164 145.859 -35.8431 53.992 129.384 -38.172 48.4484 146.268 -34.5523 55.8478 130.62 -37.1918 50.7075 145.792 -33.6656 57.2832 132.639 -36.2405 52.9926 144.492 -33.2066 58.0113 135.002 -35.2811 55.2984 142.565 -33.2185 57.9772 137.569 -34.3714 57.0771 140.172 -33.5929 1.38182 68.9774 -45.9569 1.47894 65.0285 -50.2728 1.09637 63.909 -52.87 4.59888 9.97681 -40.0908 4.56625 11.4122 -44.5415 4.27933 14.0176 -48.351 3.6239 17.5846 -51.2515 2.5518 21.6054 -53.3934 2.81797 25.9316 -56.0077 3.01964 28.3271 -57.5284 3.3214 31.8267 -58.9081 3.45486 35.6754 -59.9047 3.14198 39.6169 -60.4303 2.63558 43.6332 -60.5215 2.15143 47.625 -60.2798 1.8074 51.4352 -59.6459 1.64281 54.9177 -58.6553 1.54494 58.1214 -57.1999 1.24614 61.2169 -55.2299 2.20258 72.8765 -41.2252 4.0999 75.8378 -37.4454 6.18702 78.5203 -33.435 56.4936 87.4619 -10.08 57.7629 85.6098 -10.3506 59.9983 84.0135 -10.7406 63.4852 82.0057 -11.5406 67.5801 79.1089 -12.265 -10.1652 108.262 6.21582 -11.0734 112.965 7.57632 -0.481384 91.8178 -0.502998 -8.62003 103.705 4.73889 -6.45135 99.499 2.95057 -3.73181 95.6969 0.985786 -60.1092 28.2359 7.92776 -8.84988 108.395 10.4182 -10.438 113.006 9.67531 2.73864 92.5778 10.975 -6.7205 103.892 10.9765 -4.01207 99.6658 11.3213 -0.806137 95.8341 11.3643 64.3527 94.8043 -12.5052 60.0369 91.4033 -11.0824 -11.539 10.151 19.9241 -5.49863 10.1436 21.8177 -15.9268 10.1577 16.38 -19.33 10.1651 11.6357 -22.5381 10.1681 4.40154 32.719 10.1303 18.5309 40.266 10.1244 13.6679 14.2263 10.1377 23.0462 22.7994 10.1333 21.7028 2.70157 10.137 23.1159 44.4157 10.1281 7.56966 6.82094 10.137 23.6438 46.5807 10.1555 0.804138 -22.7316 10.1651 -8.79883 46.5392 10.1481 -8.35619 -6.5737 10.1422 -30.0845 -12.5993 10.151 -28.2717 -18.4966 10.1644 -25.6115 -21.6988 10.1659 -20.5282 -21.6462 10.1607 -14.2928 40.6619 10.1362 -21.951 32.9614 10.1496 -27.1618 22.9625 10.1599 -31.832 13.8408 10.1637 -33.647 2.11658 10.1488 -32.443 44.7679 10.1347 -15.5147 6.04318 10.1488 -32.526 12.5907 10.1733 -3.80531 59.1887 91.8044 8.95242 -37.1383 88.9529 -2.97714 -31.8022 10.0858 -1.97102 -25.1531 10.1622 -2.2068 -48.967 94.3801 -3.43312 -42.7435 92.7505 -3.24479 -45.2458 14.541 -1.9814 -38.8006 11.688 -1.94433 -51.5643 18.2037 -2.1067 -56.8395 22.9229 -2.04294 -61.3273 28.167 -2.00068 -64.683 34.1592 -1.92802 -67.7244 42.676 -1.88947 -69.2985 52.0358 -1.98363 -69.0782 59.0674 -1.98585 -68.0128 66.587 -1.96361 -66.3149 75.4782 -2.11857 -61.6254 86.6775 -2.9586 -55.4464 92.4777 -3.38715 -32.8632 83.5116 -1.95249 -29.1664 80.3716 -1.67964 -25.0219 78.6923 -1.82199 -19.731 77.9019 -1.94433 -13.8211 78.3245 -1.89985 0.599609 81.0967 -1.11393 5.68803 83.0274 -0.72765 6.50954 84.4391 -0.967133 5.72511 86.2104 -0.331726 3.73808 88.5303 1.10886 0.442429 91.5093 2.82008 -2.82133 95.1602 4.04714 -5.66766 99.1208 5.2742 -8.03503 103.465 6.34038 -9.79816 108.128 7.22415 -10.9333 112.931 8.02786 -26.7479 60.7542 43.6698 -20.1774 63.8423 42.5992 -8.42801 27.4619 48.2347 14.9477 25.7121 48.3904 3.09452 25.896 48.4757 42.6645 36.5214 48.0598 47.7344 49.638 47.1827 40.5551 62.2549 45.2372 -20.4769 63.1994 -50.3046 -27.628 60.1306 -51.1217 -8.33606 28.1588 -55.7549 41.6947 37.0493 -55.6696 46.1069 49.7648 -54.9594 39.661 61.5616 -52.9449 -28.2701 61.5994 42.6785 -21.096 64.5792 41.7131 -10.6093 65.5757 41.2676 1.58052 66.8139 41.2357 -20.6037 30.6107 47.064 -27.9498 36.4747 46.6355 -32.0076 43.3195 45.7562 -33.3289 50.1288 44.8568 -9.84192 26.1273 47.153 -32.1367 56.4888 43.8329 40.1118 30.266 46.5139 29.9349 25.9004 46.5236 16.4046 23.9305 47.0581 3.12344 24.0639 47.2805 46.8217 35.817 46.5762 50.7757 42.2756 46.3478 52.0569 49.3051 45.7651 50.1277 56.399 44.7582 45.0638 62.5551 43.5645 13.7088 68.7742 41.1082 26.4851 69.2584 41.2994 37.1171 66.9377 42.3456 1.53827 66.2289 -48.7276 -11.1349 65.489 -48.6957 -21.7418 64.0098 -49.2903 -29.2399 60.7943 -50.2557 -33.7448 49.2984 -52.3954 -32.2894 43.1438 -53.1362 -27.8334 36.8602 -53.862 -20.3917 31.2343 -54.2831 -10.0503 26.5855 -54.5085 -32.8298 55.3737 -51.4331 2.729 24.1781 -54.8289 15.8893 23.9164 -54.731 29.5034 26.0458 -54.0829 39.6795 30.5618 -53.8806 46.253 36.21 -53.7901 50.0128 42.5536 -53.5439 51.139 49.2547 -52.9597 49.321 55.8341 -52.0848 44.6241 61.6202 -51.0127 37.1431 65.7944 -49.8316 26.732 68.0261 -48.7847 13.6339 67.8667 -48.6371</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"LOD3spShape-lib-normals\" name=\"normal\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2290\" source=\"#LOD3spShape-lib-normals-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6870\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"LOD3spShape-lib-normals-array\">-0.192109 -0.934569 0.299458 -0.06315 -0.993623 0.093407 -0.038767 -0.993005 0.111528 -0.11695 -0.921313 0.370816 -0.085264 -0.993927 0.06957 -0.25821 -0.942076 0.214058 -0.305238 -0.944237 0.123473 -0.103012 -0.993873 0.04007 -0.109849 -0.993698 0.02232 -0.319871 -0.945464 0.061492 0.322015 -0.653105 0.68539 0.238016 -0.809438 0.536805 0.39559 -0.829362 0.394547 0.547107 -0.665777 0.50736 0.149283 -0.925897 0.34703 0.227375 -0.943129 0.242504 -0.182106 -0.7902 0.585167 -0.310544 -0.820667 0.479654 -0.418246 -0.841388 0.342252 -0.407245 -0.671943 0.618582 -0.544891 -0.711903 0.443045 -0.234371 -0.618101 0.750347 -0.474249 -0.857348 0.200104 -0.472515 -0.875412 0.101901 -0.601129 -0.750567 0.274396 -0.593419 -0.791427 0.146617 0.282256 -0.953514 0.105559 0.497204 -0.845385 0.195227 0.680184 -0.678639 0.277127 0.475425 -0.378716 0.794069 0.394699 -0.508097 0.765539 0.651796 -0.507567 0.563506 0.728714 -0.35445 0.585953 -0.280085 -0.456993 0.844222 -0.472084 -0.52749 0.706322 -0.629949 -0.5896 0.505505 -0.525528 -0.402813 0.749375 -0.688269 -0.483465 0.540877 -0.345696 -0.333643 0.877027 0.797494 -0.502759 0.333521 0.868857 -0.332163 0.36709 0.779236 -0.208323 0.591094 0.556733 -0.232343 0.797537 0.611419 -0.086952 0.786515 0.805975 -0.07802 0.586786 0.901017 -0.198547 0.385677 0.912954 -0.073233 0.401437 0.587309 0.31693 0.74473 0.626298 0.112282 0.771455 0.807598 0.10215 0.580819 0.767563 0.296279 0.568389 0.905959 0.097128 0.412074 0.868972 0.273148 0.412646 0.369046 0.664292 0.650016 0.498279 0.502362 0.706648 0.692864 0.459155 0.555982 0.584348 0.597963 0.548615 0.813067 0.415121 0.408163 0.751114 0.515121 0.41289 0.19627 0.766932 0.610977 0.270011 0.7156 0.644213 0.477417 0.672112 0.565984 0.38089 0.730939 0.56626 0.665617 0.613839 0.424448 0.5601 0.712938 0.42191 -0.142237 0.892596 0.427833 -0.115435 0.801937 0.586149 -0.145778 0.823148 0.548795 -0.183731 0.901347 0.392196 -0.170598 0.892172 0.418242 -0.198923 0.94046 0.275618 -0.083913 0.784617 0.614276 -0.104776 0.836925 0.537195 -0.07128 0.762805 0.642687 -0.083732 0.95816 0.273711 -0.152017 0.963903 0.218593 -0.043758 0.995476 0.084341 0.11433 0.983142 0.142691 -0.188565 0.971095 0.146345 -0.153667 0.986837 0.050398 -0.277878 0.955105 0.102752 -0.278528 0.959779 0.035299 -0.266228 0.943946 0.195163 -0.494465 0.642119 0.585822 -0.123678 0.744163 0.656449 -0.094312 0.919596 0.381378 -0.521981 0.776809 0.352284 0.287464 0.72515 0.625717 0.35104 0.866307 0.355363 -0.085399 0.659129 0.747166 0.224013 0.689809 0.688464 -0.41145 0.564912 0.715251 -0.896437 0.304297 0.322186 -0.755967 0.475931 0.449448 -0.804069 0.52634 0.276477 -0.929837 0.307416 0.202235 -0.651421 0.428251 0.626301 -0.812838 0.261118 0.520685 -0.700828 0.14352 0.698743 -0.528973 0.340042 0.777534 -0.323564 0.505566 0.799819 -0.384671 0.217738 0.897005 -0.26768 0.410295 0.871783 -0.51729 -0.021456 0.855541 -0.703157 -0.1848 0.686599 -0.802326 -0.033833 0.595927 -0.877917 -0.14451 0.456484 -0.806047 -0.267053 0.528176 -0.89323 0.116397 0.434273 -0.92976 -0.00252 0.368157 -0.693473 -0.636086 0.338364 -0.705373 -0.68381 0.186692 -0.75587 -0.532488 0.380943 -0.796546 -0.566484 0.211211 -0.077417 -0.240522 0.967551 -0.089798 -0.134723 0.986806 -0.168487 -0.121841 0.978145 -0.138523 -0.221426 0.965289 -0.113525 -0.038943 0.992772 -0.195995 -0.017488 0.980449 -0.602195 -0.290799 0.743503 -0.742439 -0.374894 0.555193 -0.432918 -0.200289 0.878901 -0.818103 -0.413906 0.399236 -0.879805 -0.419705 0.22314 -0.8832 -0.285146 0.372357 -0.940384 -0.263381 0.215195 -0.205308 0.092751 0.974293 -0.12459 0.080228 0.988959 -0.122228 0.178941 0.976238 -0.196017 0.189929 0.962031 -0.04789 0.778827 0.625407 -0.065661 0.712179 0.698921 -0.086279 0.666075 0.740878 -0.054107 0.736647 0.674109 0.32735 0.918436 0.222077 0.038245 0.947019 0.318892 -0.067436 0.912058 0.404479 0.299059 0.868082 0.396229 0.020777 0.864061 0.502958 0.601008 0.74983 0.276665 0.10013 0.787789 0.607752 0.137884 0.80072 0.582954 0.293157 0.782715 0.549014 0.251535 0.793724 0.553834 0.033793 0.760625 0.648311 0.012829 0.792843 0.609291 -0.001462 0.805911 0.592035 0.470195 0.782277 0.408607 0.406592 0.824118 0.394351 -0.228092 0.919665 0.319673 -0.149194 0.877198 0.45636 0.221981 0.775644 0.590848 0.477153 0.718896 0.505483 0.642223 0.702693 0.306223 -0.941954 -0.151996 0.299365 -0.977272 -0.097629 0.18817 -0.969667 0.027366 0.242894 -0.984274 0.065087 0.16422 -0.081923 0.660823 0.746057 -0.143863 0.635643 0.75846 -0.950758 0.179022 0.253002 -0.969441 0.180582 0.166057 0.433741 0.791171 0.431182 0.286611 0.730746 0.619568 0.635928 0.49935 0.588427 0.410194 0.41588 0.811655 -0.030936 0.832088 0.553781 -0.063268 0.738092 0.671727 -0.236437 0.785277 0.572222 -0.098454 0.365739 0.925495 -0.356861 0.365039 0.859882 0.116456 0.704283 0.700303 0.160354 0.369389 0.915335 -0.380395 0.81813 0.431235 -0.491132 0.823545 0.283836 -0.59916 0.341103 0.724332 -0.798743 0.301719 0.520552 0.047573 -0.992573 0.111966 0.069354 -0.994739 0.075398 0.015592 -0.990695 0.135202 0.028503 -0.991144 0.129693 0.0864 -0.911356 0.402449 0.046371 -0.905885 0.420977 -0.018844 -0.991895 0.125654 -0.057065 -0.909815 0.411073 0.087743 -0.99576 0.027619 0.126144 -0.779499 0.613571 0.067151 -0.760559 0.645787 0.153713 -0.607983 0.778928 0.075394 -0.57677 0.81342 -0.085238 -0.760064 0.644234 -0.102578 -0.566247 0.817827 0.045094 -0.227711 0.972684 0.047131 -0.133922 0.98987 0.005657 -0.158915 0.987276 0.006376 -0.238835 0.971039 0.058631 -0.040878 0.997442 0.002975 -0.056704 0.998387 0.127635 -0.116289 0.98498 0.152279 -0.014755 0.988227 0.100619 -0.20516 0.973543 0.059288 0.068169 0.995911 -0.006745 0.055506 0.998436 0.05032 0.180626 0.982264 -0.021925 0.163036 0.986376 0.163736 0.099069 0.981517 0.156175 0.220652 0.962768 0.020684 0.317842 0.947918 -0.050294 0.316731 0.947181 -0.025411 0.533931 0.845146 -0.086911 0.5228 0.848014 0.127716 0.356862 0.925385 0.071441 0.516034 0.853584 -0.061054 0.766638 0.63917 0.078289 0.741306 0.666586 0.208508 0.671416 0.711144 0.313289 0.499706 0.807554 0.378689 0.310587 0.871855 0.400342 0.118619 0.908656 0.381543 -0.070384 0.921668 0.331083 -0.22771 0.915714 0.260306 -0.364971 0.893889 0.178111 -0.473128 0.862802 0.071351 -0.485088 0.87155 -0.127917 -0.411323 0.902469 -0.217134 -0.272275 0.9374 -0.28612 -0.114565 0.95132 -0.297833 0.014133 0.954513 -0.259212 0.153056 0.953616 -0.214461 0.319798 0.922895 -0.151901 0.528641 0.835144 -0.103669 0.295387 0.949736 -0.165776 0.313209 0.935104 -0.083675 0.492895 0.866056 -0.119834 0.470121 0.874429 -0.087588 0.774585 0.626376 -0.256922 -0.123444 0.958516 -0.282852 0.013185 0.959073 -0.378724 -0.276752 0.883163 -0.438423 -0.070607 0.895991 -0.437651 -0.063548 0.896897 -0.390678 -0.27619 0.878117 -0.251518 -0.431278 0.866451 -0.276371 -0.456203 0.845871 -0.19905 -0.303218 0.9319 -0.274611 0.135247 0.951996 -0.249887 0.293965 0.922573 -0.442099 0.099565 0.891423 -0.416837 0.295755 0.859521 -0.412837 0.32408 0.851198 -0.438351 0.113033 0.891668 0.156401 -0.497394 0.85331 0.061408 -0.535686 0.842181 0.119454 -0.452018 0.883974 0.032667 -0.468626 0.882793 0.050048 -0.559259 0.827481 0.150699 -0.524664 0.837865 0.208739 -0.361482 0.908713 0.238743 -0.413555 0.878621 0.232419 -0.391651 0.890276 -0.125806 -0.451337 0.883441 -0.128663 -0.465603 0.875591 -0.150994 -0.530967 0.833832 0.284031 -0.235212 0.929517 0.269401 -0.199777 0.942079 0.293517 -0.238502 0.925724 0.286186 -0.032306 0.957629 0.310905 -0.056264 0.948774 0.312743 -0.062252 0.947795 0.322676 0.120164 0.938851 0.286685 0.125421 0.94978 0.312932 0.123775 0.941676 0.279716 0.294166 0.913907 0.303905 0.313656 0.89959 0.309104 0.311381 0.898608 0.037576 0.808415 0.587412 0.169817 0.698638 0.69503 -0.000992 0.780213 0.625514 0.138259 0.681294 0.718834 0.161529 0.715447 0.679738 0.018778 0.826522 0.562592 -0.09996 0.801388 0.589733 -0.098648 0.85295 0.512587 -0.076807 0.814801 0.574631 0.262922 0.511395 0.818137 0.242579 0.49202 0.836105 0.262895 0.521513 0.811733 -0.185749 0.495789 0.848346 -0.322481 0.52883 0.785076 -0.160242 0.722224 0.672841 -0.146317 0.772841 0.617501 -0.312096 0.577251 0.754571 -0.076559 0.797941 0.597853 -0.071594 0.840171 0.537576 -0.107376 0.806238 0.581766 -0.112987 0.848782 0.51653 -0.287568 -0.01818 0.957588 -0.246849 -0.15606 0.956405 -0.173556 -0.290795 0.940913 -0.283237 0.22681 0.931844 -0.297529 0.100463 0.949412 0.014537 -0.330354 0.943745 0.072188 -0.329168 0.941508 0.150177 -0.268878 0.951394 -0.091484 -0.341365 0.935468 0.211928 -0.141481 0.96699 0.233591 -0.009434 0.972289 0.24083 0.120366 0.963075 0.233787 0.260424 0.936762 0.102888 0.613185 0.78321 -0.030399 0.694019 0.719314 -0.098708 0.675427 0.730791 0.204918 0.428836 0.879834 -0.132475 0.557408 0.819602 -0.232943 0.388015 0.89173 -0.075386 0.634728 0.769049 -0.09685 0.652599 0.751489 -0.092397 0.509504 0.855493 -0.081276 0.316551 0.945087 -0.068265 0.172012 0.982727 -0.054553 0.065325 0.996372 -0.043341 -0.055449 0.99752 -0.033383 -0.160096 0.986537 -0.028874 -0.24536 0.969002 -0.033304 -0.336054 0.941254 -0.042357 -0.467717 0.882863 -0.046567 -0.556118 0.829798 -0.037674 -0.519487 0.853647 -0.022566 -0.457423 0.888963 -0.012961 -0.556886 0.830488 -0.007732 -0.753873 0.656974 -0.003792 -0.90729 0.420489 -0.001149 -0.991208 0.132304 0.512335 -0.857386 0.049017 0.70555 -0.704425 0.077354 0.297092 -0.954566 0.023258 0.84286 -0.528889 0.09931 0.930258 -0.348816 0.113782 0.968103 -0.21837 0.122848 0.986591 -0.093131 0.134031 0.985676 0.081564 0.147617 0.95281 0.259757 0.157095 0.894834 0.417704 0.157465 0.844113 0.514896 0.149516 0.774064 0.618654 0.134508 0.673761 0.729252 0.119321 0.59429 0.795832 0.116061 0.5205 0.84585 0.116695 0.525074 0.841884 0.124616 0.765546 0.621669 0.16573 0.097097 -0.995263 0.004896 -0.565407 0.809464 0.158374 -0.611313 0.789337 0.056957 -0.920895 0.236324 0.310006 -0.979363 0.144989 0.140806 -0.738247 -0.362498 0.568846 -0.830423 -0.418752 0.367485 -0.844491 -0.498578 0.195588 -0.637358 -0.672695 0.37584 -0.668066 -0.709833 0.223216 -0.553902 -0.635855 0.537476 -0.346188 -0.291036 0.891881 -0.564224 -0.330618 0.756534 -0.436173 -0.617389 0.654663 -0.266348 -0.628612 0.730688 -0.097978 -0.251576 0.962865 -0.086895 -0.643915 0.760146 0.176816 -0.222898 0.958672 0.120695 -0.699248 0.704617 0.465192 -0.190422 0.864486 0.373032 -0.681742 0.629345 0.749171 -0.141411 0.647105 0.57208 -0.682024 0.455597 0.984143 0.023025 0.175875 0.738366 -0.656556 0.154109 -0.095635 0.76965 0.631263 -0.315057 -0.948903 0.017974 -0.110306 -0.993886 0.004918 -0.457702 -0.888528 0.032039 -0.589111 -0.807168 0.037792 0.510058 -0.858624 -0.051043 0.70623 -0.703125 -0.082786 0.294439 -0.955391 -0.023102 0.843862 -0.525198 -0.109834 0.928966 -0.346434 -0.130403 0.964683 -0.219414 -0.145751 0.981881 -0.104853 -0.157847 0.98501 0.058597 -0.162241 0.95819 0.238399 -0.158234 0.897823 0.414043 -0.149942 0.829346 0.538002 -0.150797 0.747675 0.644543 -0.159833 0.659153 0.734437 -0.161615 0.265044 0.963485 0.038059 0.039034 0.999086 0.017437 0.018622 0.997848 -0.062875 0.244836 0.962544 -0.116463 -0.130658 0.991351 0.012349 -0.138096 0.990164 -0.022449 -0.273293 0.96189 0.008822 -0.274255 0.961657 0.000421 -0.053579 0.998129 0.029453 -0.515915 0.855204 0.049583 0.344116 0.89883 -0.271457 -0.055876 0.956544 -0.286182 0.365283 0.930753 0.01632 -0.828131 0.557888 0.054409 -0.952772 0.299578 0.049783 -0.711727 -0.701459 0.037422 -0.905755 -0.418034 -0.069676 -0.8121 -0.578723 -0.074656 -0.818385 -0.573492 0.036778 -0.910268 -0.412077 0.040054 0.709552 0.701423 0.067393 0.515618 0.854187 0.067105 0.52626 0.835416 -0.158524 0.711562 0.67733 -0.186822 0.587221 0.793907 -0.157743 0.504751 0.849895 -0.151344 0.655685 0.754174 0.036026 0.627882 0.742251 -0.234154 -0.995755 -0.076042 0.051857 -0.966252 -0.253074 0.048064 -0.995208 0.084624 0.048994 -0.98245 0.180559 0.046801 0.500696 0.849415 -0.166726 0.699452 0.674292 -0.236847 -0.644888 0.764208 0.010314 -0.658085 0.75262 0.022063 -0.996997 0.052783 0.056672 -0.999004 0.031144 0.031952 0.095211 -0.995451 -0.003478 -0.828476 -0.551185 0.099113 -0.83354 -0.552229 0.015914 -0.680841 -0.722996 0.117184 -0.70438 -0.709823 0.000289 0.942473 0.130036 -0.307954 0.760792 -0.603232 -0.239387 -0.191598 -0.926128 -0.324926 -0.11404 -0.910397 -0.397707 -0.034523 -0.992382 -0.118262 -0.056307 -0.993628 -0.097639 -0.08229 -0.99447 -0.065257 -0.263919 -0.93806 -0.224478 -0.301453 -0.945273 -0.124839 -0.10268 -0.994176 -0.032728 -0.109842 -0.993816 -0.016268 -0.306215 -0.95011 -0.059356 0.319117 -0.647606 -0.691933 0.534285 -0.666968 -0.519319 0.385251 -0.83007 -0.403195 0.239592 -0.805165 -0.542499 0.228594 -0.939199 -0.256224 0.158278 -0.918607 -0.362089 -0.178484 -0.75672 -0.628902 -0.309497 -0.797477 -0.51792 -0.420841 -0.831771 -0.362009 -0.538657 -0.700909 -0.467519 -0.394197 -0.64598 -0.653696 -0.222745 -0.580396 -0.783278 -0.463953 -0.858375 -0.218951 -0.461429 -0.880375 -0.109649 -0.599801 -0.782405 -0.167575 -0.59309 -0.744341 -0.306921 0.280118 -0.952342 -0.120743 0.489162 -0.845976 -0.212238 0.674722 -0.67782 -0.292079 0.467443 -0.364911 -0.805194 0.712309 -0.345361 -0.611018 0.641575 -0.494023 -0.586791 0.39121 -0.489528 -0.779305 -0.257887 -0.431057 -0.864687 -0.450347 -0.520374 -0.725533 -0.610796 -0.588414 -0.529809 -0.665056 -0.488467 -0.56489 -0.505193 -0.408993 -0.759938 -0.312897 -0.314982 -0.896037 0.796286 -0.495922 -0.346396 0.865739 -0.328626 -0.377493 0.760432 -0.204661 -0.616326 0.545204 -0.224716 -0.807623 0.593644 -0.079984 -0.800743 0.783915 -0.086134 -0.614865 0.896384 -0.199742 -0.395726 0.906271 -0.095045 -0.411874 0.551478 0.253954 -0.794594 0.749758 0.226635 -0.62169 0.783116 0.056593 -0.619295 0.5969 0.085909 -0.797703 0.90526 0.04554 -0.42241 0.880719 0.218398 -0.420282 0.336343 0.599609 -0.726183 0.572035 0.582293 -0.577677 0.679985 0.408785 -0.6087 0.461982 0.425407 -0.778204 0.822759 0.398489 -0.405308 0.73865 0.550111 -0.389581 0.158279 0.713924 -0.6821 0.37644 0.723509 -0.578643 0.467127 0.676077 -0.569835 0.228363 0.685665 -0.691168 0.648361 0.657528 -0.383777 0.564637 0.73282 -0.379684 -0.132948 0.895471 -0.424801 -0.16783 0.911023 -0.376656 -0.12755 0.841928 -0.524298 -0.095044 0.810733 -0.577649 -0.191234 0.937857 -0.289574 -0.161097 0.88789 -0.430929 -0.099619 0.831047 -0.547207 -0.068866 0.782563 -0.618751 -0.042804 0.75673 -0.652324 -0.106611 0.95728 -0.268792 0.061832 0.967519 -0.24512 -0.090989 0.984179 -0.152028 -0.171442 0.958937 -0.225938 -0.170146 0.982001 -0.081999 -0.195635 0.967138 -0.16239 -0.282706 0.95847 -0.037576 -0.282545 0.952356 -0.114834 -0.262642 0.936921 -0.230646 -0.457702 0.605028 -0.651498 -0.494691 0.715297 -0.493589 -0.076223 0.822259 -0.563986 -0.087936 0.702019 -0.706709 0.319664 0.765998 -0.557729 0.294833 0.694844 -0.655946 0.224172 0.682804 -0.695361 -0.063717 0.649517 -0.757673 -0.387084 0.558006 -0.734027 -0.896043 0.261582 -0.358722 -0.944002 0.274393 -0.183216 -0.810194 0.488173 -0.324457 -0.742944 0.435424 -0.508371 -0.645648 0.412332 -0.642745 -0.811086 0.243382 -0.531887 -0.699157 0.136155 -0.701885 -0.530892 0.331786 -0.77979 -0.30426 0.511436 -0.803654 -0.248492 0.408629 -0.878222 -0.387347 0.198969 -0.900208 -0.511763 -0.033699 -0.858465 -0.688173 -0.178311 -0.703294 -0.790784 -0.260454 -0.553917 -0.872048 -0.112083 -0.476413 -0.794394 -0.013341 -0.607256 -0.920109 0.042291 -0.389372 -0.884532 0.127633 -0.44868 -0.676964 -0.636735 -0.369174 -0.702442 -0.678564 -0.214769 -0.78028 -0.57775 -0.239514 -0.733839 -0.540713 -0.41123 -0.092147 -0.181509 -0.979062 -0.144369 -0.166467 -0.975421 -0.159435 -0.079334 -0.984015 -0.094565 -0.065989 -0.993329 -0.168501 -0.000101 -0.985701 -0.104493 0.01153 -0.994459 -0.726284 -0.369697 -0.579514 -0.588438 -0.292192 -0.753899 -0.407291 -0.20071 -0.890971 -0.869486 -0.42871 -0.245363 -0.799739 -0.41079 -0.4378 -0.938755 -0.260153 -0.225963 -0.869609 -0.274794 -0.410206 -0.170534 0.079532 -0.982137 -0.161151 0.169743 -0.972223 -0.090409 0.181448 -0.979236 -0.10396 0.092065 -0.990311 -0.061474 0.779505 -0.623373 -0.054952 0.743789 -0.666152 -0.103099 0.66864 -0.736404 -0.089248 0.714186 -0.694242 0.313646 0.879357 -0.358269 0.027421 0.941997 -0.334499 -0.080622 0.891857 -0.445073 0.022338 0.831019 -0.555795 0.289168 0.850636 -0.43909 0.556005 0.699289 -0.449281 0.050624 0.773712 -0.631511 0.231632 0.808083 -0.541616 0.288863 0.771715 -0.566581 0.103245 0.744807 -0.659244 0.031939 0.724546 -0.688486 0.003268 0.749951 -0.661485 -0.026171 0.792703 -0.609046 0.482137 0.794981 -0.36817 0.398207 0.851469 -0.34122 -0.221077 0.901734 -0.371484 -0.143622 0.850839 -0.505417 0.234374 0.743588 -0.626216 0.46128 0.703836 -0.540218 0.562017 0.649813 -0.511741 -0.977474 -0.09123 -0.19032 -0.936551 -0.12725 -0.326619 -0.984003 0.070682 -0.163533 -0.961337 0.050417 -0.270718 -0.12138 0.620783 -0.774529 -0.05521 0.647511 -0.760053 -0.944461 0.162933 -0.285388 -0.972855 0.171501 -0.15537 0.237565 0.800499 -0.55024 0.395586 0.847721 -0.353385 0.35269 0.570432 -0.741766 0.568049 0.652016 -0.502191 -0.054488 0.806873 -0.588206 -0.221404 0.774347 -0.592762 -0.082141 0.728443 -0.680164 -0.34248 0.449493 -0.825023 -0.1184 0.432945 -0.893611 0.102358 0.477975 -0.872389 0.062161 0.735187 -0.675008 -0.351621 0.822971 -0.446186 -0.453177 0.839825 -0.298872 -0.753559 0.408132 -0.515341 -0.56556 0.457673 -0.686059 0.070662 -0.994095 -0.082354 0.053046 -0.991548 -0.1184 0.013209 -0.990078 -0.139895 0.042006 -0.899343 -0.435221 0.096965 -0.90473 -0.414802 0.032991 -0.99044 -0.133938 -0.056118 -0.897897 -0.436614 -0.016738 -0.990736 -0.134764 0.086464 -0.995644 -0.034877 0.061043 -0.750045 -0.658564 0.137198 -0.774505 -0.61751 0.069229 -0.578014 -0.813085 0.165722 -0.607498 -0.776841 -0.08926 -0.735213 -0.671934 -0.114239 -0.544747 -0.830783 0.019911 -0.230638 -0.972836 -0.030593 -0.214954 -0.976145 -0.045955 -0.097756 -0.994149 0.002659 -0.095509 -0.995425 -0.052141 0.011297 -0.998576 0.002127 0.01818 -0.999832 0.120697 0.01473 -0.99258 0.113372 -0.110702 -0.987366 0.096736 -0.223211 -0.969958 -0.055442 0.119889 -0.991238 -0.003618 0.136061 -0.990694 -0.057352 0.236947 -0.969828 -0.01353 0.263616 -0.964533 0.087309 0.294367 -0.951696 0.113304 0.153076 -0.981697 -0.061332 0.359879 -0.930981 -0.028754 0.371752 -0.927887 -0.069217 0.479884 -0.874597 -0.04309 0.485197 -0.873342 0.017067 0.479437 -0.87741 0.052641 0.398131 -0.915817 -0.034654 0.760876 -0.647972 0.07156 0.732098 -0.67743 0.191934 0.634425 -0.748777 0.303753 0.458556 -0.835141 0.384402 0.282027 -0.879031 0.419845 0.110042 -0.9009 0.406427 -0.062856 -0.911518 0.353955 -0.220425 -0.908916 0.281504 -0.354287 -0.89176 0.067511 -0.500136 -0.863311 0.193668 -0.469971 -0.861174 -0.14958 -0.414815 -0.897527 -0.228363 -0.298833 -0.926579 -0.288297 -0.161724 -0.943785 -0.298702 -0.022525 -0.954081 -0.190826 0.301532 -0.934165 -0.246409 0.126265 -0.960906 -0.15017 0.520238 -0.840715 -0.129702 0.309072 -0.942153 -0.066417 0.305119 -0.949995 -0.055085 0.462192 -0.885067 -0.090042 0.449004 -0.888981 -0.071733 0.766958 -0.637675 -0.283007 -0.028509 -0.958694 -0.281863 -0.191917 -0.940065 -0.351312 -0.084797 -0.932411 -0.309888 -0.241843 -0.919501 -0.329877 -0.256795 -0.908426 -0.371873 -0.083592 -0.924512 -0.244245 -0.370528 -0.896133 -0.261882 -0.399787 -0.878401 -0.239012 -0.350966 -0.905371 -0.228514 0.26963 -0.935457 -0.253264 0.114721 -0.960571 -0.387754 0.261515 -0.883887 -0.38213 0.068912 -0.921536 -0.395833 0.087229 -0.914171 -0.400411 0.295266 -0.867461 0.059717 -0.537384 -0.841221 0.170799 -0.490618 -0.854471 0.023673 -0.491984 -0.870282 0.138029 -0.482666 -0.864859 0.172547 -0.546798 -0.819292 0.048051 -0.585369 -0.809342 0.24535 -0.391127 -0.88703 0.271557 -0.425603 -0.863203 0.253362 -0.383231 -0.888224 -0.16392 -0.464478 -0.870282 -0.156074 -0.43633 -0.886147 -0.174103 -0.495914 -0.85074 0.311338 -0.234144 -0.921002 0.314452 -0.22765 -0.921573 0.331844 -0.253055 -0.908759 0.334948 -0.047443 -0.941041 0.358791 -0.06942 -0.930833 0.352034 -0.064094 -0.93379 0.370008 0.120956 -0.921121 0.325861 0.13785 -0.935314 0.365501 0.126808 -0.922133 0.293842 0.331419 -0.896559 0.345775 0.339247 -0.874843 0.349666 0.318511 -0.88107 0.181191 0.722006 -0.667741 0.050427 0.826013 -0.561391 0.124911 0.682336 -0.720288 -8.3e-005 0.771418 -0.636329 0.029371 0.862647 -0.504953 0.172441 0.753171 -0.634821 -0.088449 0.796983 -0.597491 -0.084759 0.878493 -0.470177 -0.056365 0.816918 -0.573992 0.28721 0.527283 -0.799677 0.229314 0.522426 -0.821271 0.28443 0.557632 -0.779838 -0.184783 0.47937 -0.857939 -0.159072 0.705689 -0.690434 -0.306838 0.513915 -0.801088 -0.313651 0.56677 -0.761837 -0.157757 0.765176 -0.624195 -0.073978 0.778021 -0.623867 -0.070331 0.835642 -0.544753 -0.087799 0.795672 -0.599331 -0.090591 0.859197 -0.503561 -0.232887 -0.144487 -0.961711 -0.244705 -0.029472 -0.96915 -0.189644 -0.261806 -0.946305 -0.251478 0.075314 -0.964928 -0.245154 0.195506 -0.949567 0.069738 -0.345456 -0.93584 -0.006898 -0.32309 -0.946343 0.169707 -0.300933 -0.938424 -0.116208 -0.315517 -0.941778 0.239122 -0.166926 -0.956533 0.255866 -0.011563 -0.966643 0.242809 0.152646 -0.957989 0.202267 0.315072 -0.927264 -0.032641 0.607102 -0.793953 0.060458 0.564272 -0.823372 -0.076278 0.598808 -0.797252 0.144831 0.45396 -0.879173 -0.202967 0.364176 -0.908945 -0.116061 0.523868 -0.843856 -0.061288 0.585836 -0.808109 -0.069247 0.590821 -0.803825 -0.06147 0.471147 -0.87991 -0.062087 0.339494 -0.938557 -0.069753 0.213116 -0.974534 -0.075711 0.106988 -0.991373 -0.074759 0.010224 -0.997149 -0.065915 -0.084862 -0.99421 -0.056359 -0.195476 -0.979088 -0.058264 -0.312594 -0.948098 -0.069962 -0.465689 -0.882179 -0.071195 -0.557949 -0.826815 -0.045754 -0.47841 -0.876944 -0.060646 -0.52652 -0.847997 -0.029989 -0.553187 -0.832517 -0.018388 -0.737572 -0.675018 -0.009087 -0.897441 -0.441041 -0.00158 -0.989993 -0.141109 -0.308322 -0.951065 -0.020322 -0.110713 -0.99381 -0.009215 -0.455221 -0.889796 -0.032191 -0.596471 -0.800898 -0.052761 -0.511407 0.823202 -0.246578 -0.952243 0.291325 -0.09145 -0.828387 0.538442 -0.154449 -0.712918 -0.697663 -0.070811 -0.964192 -0.256036 -0.069136 -0.99426 -0.077609 -0.073642 -0.993521 0.085088 -0.075342 -0.980403 0.180699 -0.07847 -0.618484 0.785248 -0.029371 -0.985065 0.143698 -0.094851 -0.540296 0.826158 -0.159823 -0.899944 0.302263 -0.314224 -0.858864 -0.489238 -0.15165 -0.711588 -0.680949 -0.173063 -0.767866 -0.270651 -0.580629 -0.848883 -0.383401 -0.36387 -0.671939 -0.656576 -0.342645 -0.602072 -0.614193 -0.510173 -0.382168 -0.137855 -0.913752 -0.607476 -0.181274 -0.773377 -0.492091 -0.563373 -0.66367 -0.327921 -0.53701 -0.777231 -0.13782 -0.132667 -0.981532 -0.138241 -0.548212 -0.824835 0.069946 -0.573914 -0.815923 0.11889 -0.117351 -0.985948 0.269629 -0.627654 -0.730309 0.418909 -0.085153 -0.904027 0.751138 0.018205 -0.659894 0.495888 -0.698066 -0.516526 -0.95931 0.034968 0.280182 -0.952229 0.032635 0.303636 -0.93144 0.167086 0.323268 -0.946666 0.171861 0.272557 -0.944846 0.025037 0.326557 -0.91551 0.150958 0.372899 -0.937578 0.012119 0.347564 -0.899986 0.12397 0.417919 -0.930687 -0.005661 0.365772 -0.885622 0.08696 0.456193 -0.924746 -0.02703 0.379623 -0.873384 0.042333 0.485189 -0.919713 -0.051956 0.389139 -0.863691 -0.010116 0.503919 -0.915891 -0.078133 0.39375 -0.857075 -0.064545 0.511132 -0.913924 -0.104134 0.392301 -0.854193 -0.116994 0.506623 -0.913686 -0.130204 0.385001 -0.854276 -0.170718 0.490986 -0.915221 -0.154787 0.372036 -0.856986 -0.224754 0.463745 -0.918574 -0.175545 0.354127 -0.862661 -0.271395 0.426803 -0.924357 -0.190998 0.330279 -0.874699 -0.302741 0.378484 -0.93489 -0.202027 0.291831 -0.900162 -0.32556 0.289342 -0.890596 -0.319641 0.323525 -0.930807 -0.199874 0.306022 -0.896 0.289458 0.336747 -0.918721 0.296141 0.261252 -0.872107 0.26593 0.410745 -0.848724 0.226438 0.477905 -0.827137 0.172709 0.534805 -0.80861 0.10747 0.578446 -0.794368 0.032855 0.606547 -0.785336 -0.046853 0.617294 -0.781515 -0.12666 0.610894 -0.781913 -0.208771 0.58739 -0.785856 -0.293485 0.544332 -0.793937 -0.361184 0.489091 -0.811021 -0.403504 0.423592 -0.835242 -0.430573 0.342022 -0.847345 0.403795 0.3449 -0.876998 0.412515 0.246384 -0.816114 0.373023 0.441375 -0.785473 0.321444 0.528872 -0.757102 0.251755 0.60284 -0.732492 0.167285 0.659903 -0.71285 0.071993 0.697612 -0.699448 -0.030237 0.714044 -0.693366 -0.135002 0.707826 -0.694705 -0.244186 0.676579 -0.700161 -0.36004 0.616559 -0.706167 -0.453566 0.543697 -0.723583 -0.510419 0.464651 -0.757493 -0.546167 0.357639 -0.786239 0.510828 0.347683 -0.822283 0.521471 0.227858 -0.748188 0.473296 0.464978 -0.710816 0.41044 0.571208 -0.676265 0.32557 0.66081 -0.646313 0.222825 0.729815 -0.622397 0.107069 0.775344 -0.605751 -0.016281 0.795488 -0.597541 -0.142104 0.789146 -0.599072 -0.273389 0.752576 -0.605625 -0.422009 0.67463 -0.607323 -0.542234 0.580639 -0.62045 -0.60942 0.493609 -0.663091 -0.648882 0.373178 -0.713977 0.609147 0.34522 -0.755821 0.6215 0.206088 -0.669772 0.565403 0.481378 -0.626414 0.492206 0.604433 -0.58635 0.393512 0.708055 -0.551603 0.274208 0.787746 -0.523909 0.140003 0.84019 -0.504656 -0.002861 0.863316 -0.494725 -0.148092 0.856339 -0.496885 -0.296649 0.81554 -0.511217 -0.470298 0.719359 -0.523448 -0.603062 0.601929 -0.54514 -0.6692 0.504969 -0.589688 -0.712391 0.380483 -0.632092 0.697412 0.337752 -0.679083 0.71125 0.181575 -0.582478 0.648166 0.490511 -0.533908 0.565768 0.62837 -0.489063 0.454778 0.744308 -0.450216 0.320826 0.833293 -0.419311 0.170384 0.891711 -0.397828 0.010371 0.917402 -0.386738 -0.152189 0.909545 -0.388906 -0.314579 0.865905 -0.416834 -0.497637 0.760662 -0.460989 -0.625959 0.629018 -0.542107 0.774681 0.32556 -0.593506 0.78981 0.15476 -0.487909 0.720672 0.492521 -0.434921 0.630341 0.64305 -0.3861 0.508756 0.769476 -0.343913 0.362223 0.866325 -0.310381 0.197869 0.929791 -0.287052 0.023243 0.957633 -0.274984 -0.154056 0.949026 -0.274153 -0.330443 0.903132 -0.301736 -0.514601 0.802584 -0.360883 -0.638403 0.679857 -0.445437 0.840329 0.308923 -0.50045 0.856542 0.126038 -0.387543 0.782319 0.487634 -0.331043 0.685354 0.648614 -0.279115 0.554987 0.783636 -0.234323 0.398047 0.886934 -0.198766 0.222238 0.954517 -0.174032 0.035606 0.984096 -0.161146 -0.153806 0.974872 -0.161623 -0.341915 0.925728 -0.183322 -0.527132 0.829774 -0.220903 -0.657095 0.720714 -0.343523 0.893833 0.288192 -0.401399 0.910874 0.095845 -0.282773 0.832684 0.476106 -0.223681 0.730476 0.645269 -0.169508 0.593188 0.787016 -0.122852 0.428085 0.895349 -0.085869 0.24334 0.966133 -0.060478 0.047525 0.997037 -0.048298 -0.151042 0.987347 -0.051169 -0.346801 0.936542 -0.071334 -0.536879 0.840638 -0.087789 -0.68823 0.720162 -0.21986 0.940431 0.259327 -0.28005 0.958152 0.059303 -0.156918 0.876718 0.454689 -0.095926 0.770248 0.630489 -0.040164 0.627316 0.777728 0.007734 0.455603 0.890149 0.046891 0.262808 0.963708 0.076503 0.059129 0.995315 0.087975 -0.141662 0.985998 0.082632 -0.346525 0.934394 0.066735 -0.543112 0.837004 0.044893 -0.70688 0.705907 -0.074449 0.972485 0.220751 -0.13589 0.990587 0.016451 -0.0105 0.907325 0.420298 0.052421 0.798072 0.600278 0.112271 0.651463 0.750327 0.17284 0.475296 0.862682 0.224622 0.286559 0.931359 0.237263 0.088989 0.967361 0.218281 -0.113 0.969322 0.208533 -0.342413 0.916116 0.208343 -0.548433 0.809824 0.177566 -0.726111 0.664254 0.072457 0.981536 0.17702 0.011184 0.999581 -0.026697 0.13045 0.91774 0.375149 0.17379 0.810665 0.559124 0.202259 0.677497 0.70717 0.281823 0.466274 0.838549 0.389486 0.279956 0.877454 0.38011 0.146887 0.913204 0.357385 -0.040932 0.93306 0.345941 -0.321259 0.881543 0.34413 -0.559385 0.754098 0.331752 -0.740685 0.584232 0.196145 0.971318 0.134422 0.140044 0.988072 -0.064045 0.22226 0.915547 0.335221 0.215212 0.826522 0.520139 0.485045 0.203691 0.850436 0.549186 0.085396 0.831326 0.51886 -0.274121 0.809717 0.494351 -0.559544 0.665228 0.486216 -0.716967 0.499552 0.288962 0.953069 0.090338 0.249176 0.963756 -0.09532 0.279421 0.910567 0.304618 0.388152 0.921065 0.031265 0.355698 0.926134 -0.125519 0.404067 0.903782 0.141097 0.68549 -0.217008 0.69499 0.702569 0.095581 0.705167 0.629523 -0.529053 0.569037 0.593718 -0.693079 0.408828 0.496683 0.867503 -0.027267 0.458279 0.875316 -0.154276 0.528047 0.848543 0.03378 0.806768 -0.152023 0.570977 0.808457 0.086821 0.582116 0.751952 -0.463847 0.468417 0.679141 -0.659907 0.321388 0.597185 0.799146 -0.068811 0.555473 0.811556 -0.181181 0.641605 0.76683 -0.017718 0.890943 -0.106367 0.441483 0.8665 0.068021 0.494522 0.874776 -0.373384 0.30879 0.812876 -0.546789 0.200637 0.713003 0.692155 -0.112017 0.675208 0.706006 -0.213658 0.760001 0.64795 -0.050575 0.881663 0.086627 0.463859 0.915057 -0.143088 0.377089 0.91943 -0.337729 0.201463 0.893271 -0.433495 0.118948 0.740476 -0.66906 0.063675 0.859379 -0.511092 0.015908 0.647012 -0.745143 -0.161672 0.622061 -0.770384 0.139818 0.519697 -0.840964 -0.150645 0.82048 0.555122 -0.136569 0.782459 0.574043 -0.241314 0.857424 0.511442 -0.057009 0.806681 0.536729 -0.247364 0.862468 0.496193 -0.099707 0.878972 0.473396 -0.057475 0.818208 0.516312 -0.252897 -0.95504 -0.087036 0.283414 0.458007 0.336509 0.822795 0.548647 0.436829 0.712858 0.498793 0.508214 0.702085 0.40895 0.438856 0.800103 0.458788 0.419381 0.783347 0.488579 0.295919 0.820806 0.338496 0.547557 0.765246 0.40128 0.540787 0.739273 0.447903 0.573978 0.685516 0.572577 0.090453 0.814846 0.659971 0.242585 0.711049 0.600793 0.356629 0.715446 0.507798 0.222804 0.832165 0.525407 0.175386 0.832579 0.592642 0.076696 0.801806 0.696495 -0.160757 0.699323 0.747071 -0.060562 0.66198 0.716368 0.089686 0.691935 0.643654 -0.044528 0.76402 0.679875 -0.004061 0.733317 0.751902 -0.071444 0.655392 0.836517 -0.293072 0.462977 0.828132 -0.230473 0.510959 0.762807 -0.199352 0.61513 0.753672 -0.259258 0.603957 0.803598 -0.130297 0.580735 0.857252 -0.175255 0.484153 0.916775 -0.199713 0.345889 0.913851 -0.163134 0.371839 0.958882 -0.051876 0.279022 0.954667 -0.015331 0.297282 0.878559 0.023718 0.477045 0.887732 -0.142315 0.437811 0.881622 0.374121 0.287709 0.786275 0.361357 0.501191 0.845764 0.203036 0.493417 0.938392 0.191581 0.287606 0.964699 0.141352 0.222208 0.919874 0.344658 0.187198 0.735833 0.601185 0.31165 0.66518 0.53777 0.518014 0.724119 0.464664 0.509645 0.811286 0.503396 0.297333 0.847399 0.503007 0.169996 0.757311 0.630422 0.170435 0.55095 0.766953 0.328993 0.550236 0.662384 0.508417 0.604139 0.603421 0.520479 0.650213 0.6874 0.32358 0.647232 0.739853 0.183595 0.52066 0.823219 0.226328 0.232539 0.84106 0.48841 0.333081 0.772484 0.540672 0.4542 0.75815 0.467879 0.390892 0.846896 0.360515 0.372475 0.869089 0.325495 0.285053 0.827495 0.483733 0.339781 0.673393 0.656575 0.238562 0.704887 0.668 0.320797 0.691569 0.647164 0.829927 0.324203 0.453996 0.78816 0.413058 0.456275 0.818961 0.437724 0.37108 0.868606 0.367447 0.332424 0.594766 0.761672 -0.257117 0.732865 0.586033 -0.345649 0.753901 0.533838 0.38295 0.862991 0.204761 0.461865 0.867214 0.193679 0.458725 0.940858 -0.000486 0.3388 0.908483 -0.022324 0.417326 0.966409 -0.169051 -0.193584 0.923393 -0.383468 0.01723 0.951149 0.102662 0.291162 0.867316 0.198019 0.456675 0.856872 0.261318 0.444391 0.920131 0.262219 0.290862 0.845974 0.375555 -0.378531 0.934245 0.115443 -0.337429 0.724297 0.540152 0.42852 0.705159 0.593618 0.387773 0.719293 0.595991 0.356949 0.405662 0.913937 -0.012545 0.486535 0.862055 -0.141935 0.71787 0.605721 0.343167 0.730039 0.584407 0.354276 0.725686 0.562032 0.396862 0.693853 0.591752 0.410363 0.217331 0.868422 0.445659 0.312452 0.932842 0.179389 0.629841 0.545507 0.552922 0.214362 0.527633 0.821981 0.173015 0.7023 0.690536 0.57713 0.459556 0.675077 0.602476 0.389152 0.696838 0.688167 0.493994 0.531411 0.689409 0.382203 0.615335 0.751692 0.33439 0.568456 0.797599 0.361585 0.482797 0.671211 0.364963 0.645196 0.411128 0.319273 0.853838 0.313319 0.402291 0.860228 0.718031 0.380064 0.58308 0.802641 0.402836 0.439876 0.786668 0.41629 0.455912 0.7261 0.396288 0.561903 0.493842 0.121551 0.861014 0.469657 0.240907 0.849345 0.710366 0.36318 0.602894 0.767343 0.380847 0.515888 0.773688 0.31236 0.551215 0.718919 0.257235 0.645744 0.615801 -0.251493 0.746687 0.530844 -0.044491 0.846301 0.775459 0.113009 0.621203 0.81328 0.246247 0.527199 0.846491 0.212923 0.487972 0.849483 0.012404 0.52747 0.842402 -0.47405 0.256193 0.735809 -0.426295 0.526173 0.762121 0.060604 0.644592 0.762121 0.060604 0.644592 0.670388 0.105094 0.734531 0.670388 0.105094 0.734531 0.53593 0.35712 0.765013 0.53593 0.35712 0.765013 0.519593 0.470857 0.712963 0.519593 0.470857 0.712963 0.592721 0.147272 0.791829 0.592721 0.147272 0.791829 0.539402 0.227876 0.810628 0.539402 0.227876 0.810628 0.838046 -0.041961 0.543984 0.838046 -0.041961 0.543984 0.805134 0.024108 0.592603 0.805134 0.024108 0.592603 0.458987 0.56981 0.681651 0.458987 0.56981 0.681651 0.36131 0.737053 0.571146 0.36131 0.737053 0.571146 0.930114 -0.106536 0.351481 0.930114 -0.106536 0.351481 0.880661 -0.11099 0.460561 0.880661 -0.11099 0.460561 0.320732 0.857422 0.402441 0.320732 0.857422 0.402441 0.44726 0.859353 0.247932 0.44726 0.859353 0.247932 0.95182 0.231775 0.200795 0.95182 0.231775 0.200795 0.964167 0.021103 0.264456 0.964167 0.021103 0.264456 0.579093 0.8006 0.153919 0.579093 0.8006 0.153919 0.697437 0.705567 0.12553 0.697437 0.705567 0.12553 0.814036 0.566095 0.129927 0.814036 0.566095 0.129927 0.890074 0.43096 0.148464 0.890074 0.43096 0.148464 0.029208 0.881474 -0.471328 0.029208 0.881474 -0.471328 0.096449 0.728365 -0.678368 0.096449 0.728365 -0.678368 0.4685 0.04873 -0.882118 0.4685 0.04873 -0.882118 0.638087 -0.253445 -0.727056 0.638087 -0.253445 -0.727056 0.178322 0.511529 -0.840559 0.178322 0.511529 -0.840559 0.316697 0.307225 -0.897394 0.316697 0.307225 -0.897394 -0.229597 0.97301 0.023188 -0.229597 0.97301 0.023188 -0.099111 0.961282 -0.257125 -0.099111 0.961282 -0.257125 0.690989 -0.552351 -0.466307 0.690989 -0.552351 -0.466307 0.614728 -0.774975 -0.146708 0.614728 -0.774975 -0.146708 -0.213285 0.674612 0.706689 -0.213285 0.674612 0.706689 -0.277125 0.880387 0.384865 -0.277125 0.880387 0.384865 0.522099 -0.831492 0.189823 0.522099 -0.831492 0.189823 0.41303 -0.701304 0.581016 0.41303 -0.701304 0.581016 0.016451 0.304495 0.952372 0.016451 0.304495 0.952372 -0.102423 0.482133 0.87009 -0.102423 0.482133 0.87009 0.321342 -0.449506 0.833477 0.321342 -0.449506 0.833477 0.240502 -0.251619 0.937468 0.240502 -0.251619 0.937468 0.177609 -0.048219 0.982919 0.177609 -0.048219 0.982919 0.113264 0.143803 0.983103 0.113264 0.143803 0.983103 0.856752 0.237426 0.457827 0.923385 0.210649 0.320917 0.807841 0.342573 0.479622 0.926355 0.306361 0.219111 0.893024 0.401372 0.203491 0.707489 0.350542 0.613661 0.690028 0.404138 0.600445 0.701459 0.296818 0.647962 0.79174 0.518629 0.322757 0.756722 0.567339 0.324806 0.829456 0.472735 0.297531 0.598529 0.538416 0.593188 0.611969 0.432342 0.662249 0.636119 0.597396 0.488334 0.661695 0.3349 0.670821 0.723255 0.374582 0.580165 0.790325 0.34767 0.504491 0.811959 0.371822 0.449969 0.863778 0.442517 0.24097 0.701135 0.600411 0.384599 0.932766 0.160597 0.322732 0.970845 0.170441 0.168552 0.883636 0.175716 0.433947 0.958137 0.275993 0.076165 0.918477 0.391142 0.058382 0.596042 0.268924 0.756581 0.631692 0.23949 0.737299 0.526233 0.296752 0.79688 0.713347 0.696389 0.078601 0.607873 0.785114 0.118686 0.815341 0.574919 0.068466 0.317442 0.747572 0.583409 0.328784 0.607429 0.72314 0.382484 0.824581 0.416859 0.421264 0.422347 0.802596 0.694449 0.183029 0.695875 0.790988 0.142639 0.594973 0.851498 0.154648 0.501034 0.88206 0.467139 0.061249 0.494106 0.834447 0.244044 0.898388 0.239427 0.368203 0.928433 0.290662 0.231361 0.927907 0.362185 0.088373 0.90613 0.422899 -0.009252 0.502343 -0.531378 -0.68212 0.481433 0.034979 -0.875785 0.821621 0.007587 -0.569984 0.601173 0.059321 -0.796914 0.288385 0.93379 -0.211824 0.988457 0.045901 -0.144378 0.606647 0.786641 -0.114787 0.631147 0.75431 -0.180748 0.972584 0.01879 -0.231792 0.50542 0.85821 -0.089584 0.979429 0.125423 -0.158074 0.681238 -0.704485 -0.199036 0.649817 -0.670326 -0.358331 0.486326 -0.865845 -0.117473 0.446328 -0.866561 -0.223303 0.749936 -0.639396 -0.169616 0.164446 0.814374 0.556554 0.230868 0.7458 0.624886 0.513037 0.656869 0.552553 0.434017 0.729299 0.528916 0.753221 0.48407 0.445347 0.753221 0.48407 0.445347 0.124146 -0.973254 0.193296 0.136691 -0.979344 0.149 0.136691 -0.979344 0.149 0.184839 -0.973906 0.131688 0.16227 -0.986484 -0.022769 0.212195 -0.968006 0.133929 0.212195 -0.968006 0.133929 0.404326 0.749489 0.524201 0.579587 0.654669 0.485269 0.579587 0.654669 0.485269 0.267339 0.835446 0.480167 0.245983 0.889628 0.38478 0.267339 0.835446 0.480167 0.316456 0.757992 0.570354 0.349573 0.870764 0.345787 0.299173 0.736411 0.60679 0.210334 0.763548 0.610536 0.173912 0.765408 0.619601 0.197207 0.7873 0.584182 0.208134 0.150701 0.966421 0.45413 0.145812 0.878922 0.34138 0.606573 0.718004 0.193961 0.656473 0.728987 0.702212 0.014831 0.711813 0.629702 0.408791 0.660579 0.464374 -0.299888 0.833321 0.195845 -0.470873 0.860188 0.247334 -0.957018 0.151467 0.40013 -0.846054 0.352263 0.156142 -0.842984 0.51478 0.487382 -0.796965 0.356799 0.24234 -0.955279 0.169453 0.220077 -0.968074 0.119991 0.144759 -0.978459 0.147185 0.183204 -0.982603 -0.03045 0.067622 -0.997704 0.003667 0.333609 0.885237 0.324131 0.26257 0.786829 0.558531 0.249027 0.818022 0.518484 0.310909 0.905688 0.288211 0.981618 -0.064667 0.179569 0.953472 -0.110057 0.280676 0.829047 -0.397145 0.393645 0.92859 0.156172 0.336647 0.777747 -0.421784 0.466056 0.769156 -0.579058 0.270354 0.995933 0.044395 0.078399 0.452986 -0.772336 0.445309 0.25562 -0.911562 0.322045 0.985612 -0.013881 -0.168452 0.7241 -0.689125 0.028032 0.669094 -0.721471 -0.178308 0.959852 -0.03757 -0.277979 0.142983 -0.970854 0.192352 0.080246 -0.996775 0.00032 0.399717 0.880195 0.255896 0.376418 0.74386 0.552252 0.932941 0.251988 0.257146 0.923519 0.376658 0.072404 0.341071 0.563945 0.752088 0.901143 0.06264 0.428972 0.473307 -0.704975 -0.528197 0.53861 0.034196 -0.841861 0.284747 -0.650038 -0.704536 0.28859 -0.717857 -0.633559 0.66476 -0.69131 -0.283167 0.687122 0.601648 -0.407288 0.19454 0.943367 -0.268726 0.142669 0.967481 -0.20887 0.158097 0.977372 -0.140534 0.267227 0.956959 -0.113221 0.206618 0.964826 -0.16254 0.111176 0.975912 -0.187714 0.29006 0.951394 -0.103509 0.197728 0.977642 -0.071559 0.133329 0.730763 0.669484 -0.021072 0.776457 0.629818 -0.048861 0.692427 0.719831 -0.267381 0.736738 0.621067 0.502201 -0.841758 -0.198082 0.347489 -0.823244 -0.44891 0.323269 -0.832159 -0.450565 0.365532 -0.909977 -0.195774 0.278989 -0.744812 -0.606152 0.310543 -0.724294 -0.615598 0.470573 -0.845704 0.251686 0.639991 -0.751749 0.159014 0.847528 -0.526779 -0.064814 0.931762 0.360605 -0.042234 0.731131 -0.37377 0.57074 0.545828 -0.440059 0.713036 0.28654 -0.807827 -0.515083 0.336227 -0.798398 -0.499512 0.390344 -0.778946 -0.490791 0.394888 -0.900382 -0.182694 0.453746 -0.877199 -0.156959 0.356802 -0.910855 -0.207449 -0.344161 0.695104 0.631176 -0.149439 0.640429 0.753338 -0.149043 0.665502 0.731364 -0.349826 0.693839 0.629452 -0.136209 0.702366 0.698663 -0.323407 0.705435 0.63069 0.682989 -0.682468 -0.260315 0.59895 -0.703991 -0.381648 0.629914 -0.656157 -0.415531 0.77097 -0.571238 -0.281588 0.426971 -0.693708 -0.580055 0.470882 -0.685627 -0.555145 0.547183 -0.735019 -0.400422 0.403878 -0.692278 -0.598025 0.639219 -0.729933 -0.242067 0.756317 -0.646196 0.102054 0.818345 -0.573567 0.036491 0.814869 -0.159464 0.557279 0.753505 -0.300809 0.584589 0.916322 -0.395282 -0.064085 -0.552229 0.717565 0.424433 -0.549898 0.723485 0.417351 -0.689114 0.695621 0.20306 -0.692124 0.693865 0.198787 -0.449937 0.772191 0.44864 -0.582332 0.776773 0.23982 0.4591 -0.736156 -0.497294 0.428557 -0.75507 -0.496193 0.470093 -0.756298 -0.455001 0.604445 -0.773438 -0.190894 0.573109 -0.784752 -0.236031 0.620477 -0.767507 -0.161065 -0.154659 0.830449 0.535196 -0.208047 0.933434 0.292262 0.839948 -0.488026 -0.237313 0.649751 -0.668884 -0.361136 0.686328 -0.685198 -0.243841 0.870409 -0.456272 -0.184943 0.113928 -0.971144 0.209524 0.420169 -0.778433 0.466369 0.36716 -0.763202 0.531711 -0.02591 -0.968892 0.246125 0.735247 0.502746 0.454597 0.760736 -0.231899 0.60622 0.709739 -0.164748 0.68493 0.677088 0.518341 0.522374 0.150157 0.985896 -0.073902 0.110758 0.979195 -0.170028 0.14924 0.977328 -0.150193 0.102024 0.980668 -0.166976 0.092901 0.976521 -0.194362 0.035026 -0.981694 0.187218 -0.094184 -0.972517 0.212932 -0.040179 -0.998571 0.035247 -0.134425 -0.988935 0.062742 0.104938 0.981244 -0.161707 0.151335 0.986059 -0.069173 0.069929 0.986197 -0.150086 0.095076 0.992657 -0.074781 -0.031932 -0.959846 0.278703 0.3959 -0.771292 0.498369 0.753955 -0.269659 0.599029 0.811465 0.345679 0.471202 0.245701 0.963498 -0.106314 0.226774 0.963215 -0.144187 -0.201856 -0.975954 0.082263 -0.144695 -0.963786 0.22401 0.238399 0.953876 -0.182445 0.263237 0.957272 -0.119739 0.137189 0.954008 0.266548 0.004047 0.860303 0.509766 -0.324412 0.82325 0.46585 -0.221133 0.946632 0.234497 0.552688 -0.819889 -0.14939 0.435697 -0.752668 -0.493618 0.365249 -0.701895 -0.611504 0.358271 0.298744 0.88453 0.369064 0.261778 0.891776 0.680582 -0.368671 0.633159 0.35026 0.27383 0.895732 -0.101362 0.652868 0.750659 -0.31403 0.712829 0.627104 0.528306 -0.819128 -0.223433 0.448996 -0.780542 -0.434921 0.341896 0.423686 0.838807 0.504935 0.340193 0.79329 0.181522 0.411952 0.892942 0.181522 0.411952 0.892942 0.465736 -0.606641 0.644264 -0.0363 0.939717 0.340021 0.06455 0.996125 -0.059741 -0.0363 0.939717 0.340021 0.286421 0.951044 -0.116095 0.288616 0.950349 -0.116354 0.275757 0.953921 -0.118292 0.150003 0.985457 -0.079833 -0.160278 0.98687 0.019962 -0.557805 0.804225 0.205125 -0.528811 0.837981 0.134713 -0.689987 0.699784 0.184985 -0.704052 0.684413 0.189445 -0.639015 0.750411 0.168948 -0.301208 0.951297 0.065638 0.321965 0.939617 -0.116016 0.978366 -0.179418 -0.103002 0.950511 -0.146462 -0.274005 0.864752 0.428163 -0.262451 0.86448 -0.440579 -0.242001 0.720676 -0.665351 -0.194768 0.631835 -0.756962 -0.166709 0.640249 -0.749264 -0.169365 0.627443 -0.760901 -0.165364 0.541996 -0.828837 -0.138816 0.434754 -0.894291 -0.105989 0.396475 -0.913174 -0.094449 0.3782 -0.921198 -0.091428 0.733887 0.635327 -0.240355 0.720343 0.687761 -0.089944 0.744559 0.62451 -0.235838 0.345736 0.9286 0.13479 0.993133 0.093733 0.070012 0.356159 0.925036 0.132136 0.187307 0.978163 -0.09007 0.502357 0.858922 0.099456 0.251333 0.962401 -0.103033 0.65335 -0.735934 0.17758 0.65112 0.755621 0.071276 0.96166 -0.25776 -0.093651 0.209729 0.846026 0.490157 0.369985 -0.806261 -0.461579 -0.486759 0.759504 0.431532 0.951681 0.185976 -0.24437 0.902737 0.332183 -0.273352 0.941165 0.315326 -0.121568 0.951681 0.185976 -0.24437 0.956675 0.290442 0.020395 0.999368 -0.03479 -0.007251 0.964422 0.229761 0.130768 0.952504 0.13236 0.274258 0.999368 -0.03479 -0.007251 0.940577 -0.003262 0.339566 0.985356 -0.047323 -0.163812 0.973149 -0.138935 0.183517 0.98634 -0.163979 0.015638 0.985356 -0.047323 -0.163812 0.800077 -0.569905 -0.187309 0.874318 -0.431977 -0.221278 0.945305 -0.32607 -0.008707 0.031586 -0.183913 0.982435 0.031586 -0.183913 0.982435 -0.030751 -0.950601 0.30889 -0.030751 -0.950601 0.30889 0.985137 -0.170059 0.024169 -0.138803 -0.672288 0.727161 -0.138803 -0.672288 0.727161 0.909257 -0.407951 -0.082632 0.909257 -0.407951 -0.082632 0.975975 0.172973 -0.132486 0.975975 0.172973 -0.132486 0.980139 0.18814 -0.062699 0.980139 0.18814 -0.062699 0.977763 -0.075286 0.195733 0.977763 -0.075286 0.195733 0.989301 -0.108793 0.097195 0.989301 -0.108793 0.097195 0.977445 0.124096 -0.170885 0.977445 0.124096 -0.170885 0.998153 0.056019 0.023506 0.998153 0.056019 0.023506 0.796335 -0.523715 0.302611 0.474101 -0.734714 0.485204 -0.961031 0.165053 0.221757 -0.966015 0.031778 0.256527 -0.974186 0.146597 0.171671 -0.972365 0.022683 0.232362 -0.984794 0.118521 0.127015 -0.97678 0.011602 0.213931 -0.992779 0.080892 0.088578 -0.980405 -0.006081 0.1969 -0.997692 0.034776 0.058321 -0.983084 -0.030932 0.180525 -0.999084 -0.01652 0.039467 -0.983546 -0.055798 0.171824 -0.996955 -0.071034 0.03217 -0.982323 -0.081459 0.168542 -0.991355 -0.12588 0.037019 -0.979425 -0.107879 0.170556 -0.982538 -0.178319 0.053122 -0.975168 -0.132497 0.177459 -0.97118 -0.224992 0.078667 -0.9699 -0.153567 0.188972 -0.957807 -0.263848 0.113978 -0.963903 -0.170188 0.204763 -0.939615 -0.29636 0.171153 -0.955655 -0.183417 0.230396 -0.916192 -0.318352 0.243403 -0.943673 -0.194814 0.26745 -0.940074 0.285894 0.18581 -0.959445 0.258862 0.111609 -0.975323 0.216319 0.04416 -0.986978 0.160325 -0.013014 -0.993968 0.093475 -0.057363 -0.996059 0.018754 -0.086686 -0.993227 -0.06055 -0.099163 -0.985628 -0.140582 -0.09367 -0.972899 -0.220345 -0.070116 -0.955697 -0.29262 -0.031897 -0.933885 -0.356815 0.023271 -0.904554 -0.412768 0.106793 -0.874187 -0.443341 0.198105 -0.904883 0.399162 0.14784 -0.930066 0.363832 0.051015 -0.950616 0.308169 -0.036885 -0.965592 0.235032 -0.111317 -0.974471 0.147814 -0.168987 -0.976979 0.05078 -0.207202 -0.973161 -0.05162 -0.224262 -0.963025 -0.155851 -0.219756 -0.94516 -0.263631 -0.192798 -0.918341 -0.367435 -0.147108 -0.884469 -0.46033 -0.076225 -0.846414 -0.531736 0.028979 -0.81683 -0.561478 0.132408 -0.856198 0.505244 0.107954 -0.886734 0.462178 -0.009715 -0.911564 0.394322 -0.116455 -0.92955 0.305236 -0.206801 -0.940103 0.199203 -0.276631 -0.942966 0.081326 -0.322801 -0.938215 -0.042948 -0.343377 -0.925514 -0.170798 -0.338011 -0.90304 -0.303133 -0.304351 -0.869126 -0.43109 -0.242446 -0.825613 -0.542663 -0.154533 -0.78679 -0.615366 -0.04782 -0.763783 -0.641746 0.069265 -0.795208 0.602633 0.06691 -0.830597 0.552504 -0.069627 -0.85928 0.473551 -0.193358 -0.879991 0.369951 -0.297914 -0.892055 0.246859 -0.378547 -0.895219 0.110198 -0.431786 -0.889617 -0.03377 -0.455457 -0.87547 -0.181874 -0.447743 -0.852671 -0.3311 -0.404135 -0.819795 -0.473097 -0.322669 -0.773161 -0.597383 -0.21297 -0.732323 -0.672114 -0.109388 -0.703802 -0.710148 0.018793 -0.723285 0.690084 0.025367 -0.762965 0.633675 -0.127835 -0.79508 0.544841 -0.266451 -0.818228 0.428382 -0.383395 -0.831653 0.290204 -0.47343 -0.835118 0.137002 -0.532737 -0.828804 -0.024239 -0.559013 -0.813771 -0.188224 -0.549862 -0.79107 -0.350428 -0.501406 -0.757687 -0.507139 -0.410755 -0.712161 -0.640658 -0.287028 -0.672656 -0.725938 0.143347 -0.641851 0.766661 -0.016075 -0.68527 0.704796 -0.183489 -0.720395 0.607414 -0.334782 -0.745674 0.479891 -0.46225 -0.760327 0.328783 -0.560182 -0.764125 0.161453 -0.624537 -0.757252 -0.014499 -0.652962 -0.740618 -0.191819 -0.643964 -0.713493 -0.368156 -0.596145 -0.67319 -0.539525 -0.505696 -0.633594 -0.66652 -0.392824 -0.552217 0.831757 -0.056883 -0.598779 0.765354 -0.236001 -0.636491 0.660838 -0.397708 -0.663675 0.524103 -0.533716 -0.679467 0.362301 -0.638015 -0.683616 0.18334 -0.706439 -0.676308 -0.004709 -0.736604 -0.658096 -0.193709 -0.72759 -0.624976 -0.385418 -0.678866 -0.57331 -0.567527 -0.590956 -0.539712 -0.669892 -0.509859 -0.455829 0.884817 -0.096532 -0.504906 0.814845 -0.284776 -0.544771 0.704701 -0.454557 -0.573584 0.560728 -0.597148 -0.59041 0.390539 -0.706325 -0.594941 0.202476 -0.777849 -0.58738 0.005005 -0.809296 -0.568315 -0.193377 -0.799765 -0.531724 -0.399254 -0.746904 -0.472063 -0.588647 -0.65624 -0.438252 -0.663694 -0.606173 -0.336649 0.931055 -0.140727 -0.387856 0.858178 -0.336301 -0.429627 0.743452 -0.512543 -0.459974 0.593597 -0.660353 -0.477869 0.416607 -0.773356 -0.482921 0.221168 -0.847273 -0.475295 0.016124 -0.879678 -0.455543 -0.189817 -0.869741 -0.417917 -0.406061 -0.812687 -0.353552 -0.60422 -0.714086 -0.307968 -0.666598 -0.678825 -0.193714 0.962913 -0.187815 -0.246267 0.8884 -0.387424 -0.288613 0.77069 -0.568101 -0.317008 0.616998 -0.720292 -0.324374 0.435579 -0.839674 -0.320365 0.248902 -0.91401 -0.326185 0.041175 -0.944409 -0.317893 -0.181748 -0.930544 -0.279515 -0.404386 -0.870829 -0.213288 -0.614544 -0.759503 -0.156721 -0.682515 -0.713871 -0.046463 0.971992 -0.230375 -0.103325 0.898972 -0.425645 -0.164362 0.783516 -0.59924 -0.218293 0.643744 -0.733446 -0.220032 0.426957 -0.877094 -0.163378 0.257767 -0.952294 -0.189104 0.091231 -0.97771 -0.196106 -0.137994 -0.970824 -0.15848 -0.395997 -0.904473 -0.068774 -0.626707 -0.776214 0.011498 -0.702817 -0.711278 0.080842 0.962059 -0.260588 -0.004368 0.897342 -0.441313 -0.108637 0.80053 -0.589364 -0.077282 0.160772 -0.983961 -0.047366 -0.005136 -0.998864 -0.055321 -0.376835 -0.924627 0.024205 -0.64051 -0.767568 0.122657 -0.746286 -0.654227 0.182989 0.944565 -0.272601 0.060296 0.892968 -0.446064 0.298773 0.913904 -0.274797 0.253313 0.891687 -0.375137 0.114854 -0.338324 -0.933994 0.102232 0.013353 -0.994671 0.151765 -0.614693 -0.774028 0.247572 -0.789545 -0.561539 0.422501 0.861523 -0.281553 0.416333 0.839555 -0.34902 0.37199 -0.274879 -0.886603 0.353485 0.017625 -0.935274 0.378321 -0.507369 -0.774242 0.386435 -0.730111 -0.563565 0.530382 0.793788 -0.297652 0.540498 0.759214 -0.362568 0.588887 -0.200332 -0.782994 0.56861 0.014756 -0.822475 0.582449 -0.344028 -0.736476 0.575726 -0.569224 -0.586961 0.65241 0.687716 -0.318445 0.658927 0.642592 -0.391012 0.527988 0.032741 -0.848621 0.572271 -0.222348 -0.789346 0.647447 -0.270239 -0.712589 0.71954 -0.352064 -0.598592 0.761452 -0.51329 -0.395884 0.588683 -0.724004 -0.359542 0.425419 -0.825843 -0.370137 0.75829 0.548346 -0.35258 0.752446 0.495489 -0.433954 0.762878 0.455469 -0.458873 0.774527 0.480972 -0.410821 -0.059483 0.299655 -0.952191 -0.090596 0.399221 -0.912368 0.036545 0.471124 -0.881309 0.07364 0.399264 -0.913874 -0.030114 0.266255 -0.963432 -0.038844 0.381241 -0.923659 -0.13284 0.509742 -0.85001 -0.066453 0.503298 -0.861554 0.001768 0.538105 -0.842876 0.050754 0.065758 -0.996544 -0.019181 0.193572 -0.980899 0.117727 0.320417 -0.939933 0.173089 0.209675 -0.962329 0.073986 0.047418 -0.996131 -0.002861 0.154045 -0.98806 0.22268 -0.189591 -0.956279 0.142047 -0.070696 -0.987332 0.235945 0.061061 -0.969846 0.284019 -0.085242 -0.955022 0.284187 -0.119522 -0.95129 0.18495 -0.046926 -0.981627 0.469944 -0.314762 -0.824668 0.324898 -0.286474 -0.901318 0.327435 -0.220891 -0.918691 0.436096 -0.251459 -0.864054 0.473624 -0.209127 -0.855538 0.371679 -0.174482 -0.911817 0.593781 -0.220328 -0.773873 0.64569 -0.038921 -0.762607 0.659388 -0.074842 -0.748068 0.577338 -0.188497 -0.794449 0.520053 -0.164818 -0.838081 0.486574 -0.003404 -0.873633 0.583694 0.350278 -0.732535 0.633952 0.167061 -0.755112 0.445809 0.172583 -0.878333 0.388775 0.329865 -0.860258 0.670839 0.324639 -0.666772 0.692093 0.11947 -0.711852 0.445222 0.577844 -0.684013 0.517686 0.479897 -0.708308 0.330597 0.433029 -0.838565 0.275479 0.50654 -0.817024 0.53871 0.612813 -0.578145 0.616696 0.484403 -0.620516 0.278003 0.744964 -0.606418 0.365453 0.664551 -0.651779 0.221829 0.57283 -0.789087 0.182217 0.632878 -0.752504 0.306851 0.80584 -0.506422 0.437533 0.722967 -0.534681 -0.077112 0.816166 -0.572649 0.125172 0.825515 -0.550324 0.121846 0.731498 -0.670868 -0.019603 0.743964 -0.667932 -0.030227 0.802231 -0.596248 0.128031 0.849287 -0.512171 -0.166759 0.672289 -0.721262 -0.074919 0.639876 -0.764817 -0.086363 0.65898 -0.747185 0.419268 0.406688 -0.811677 0.45283 0.31045 -0.835802 0.550354 0.354523 -0.755926 0.488995 0.426269 -0.761038 0.798505 0.589542 -0.121777 0.629664 0.764854 -0.136094 0.428097 0.516657 -0.741484 0.481992 0.162651 -0.860946 0.476625 0.173666 -0.861782 0.541781 -0.051837 -0.83892 0.610962 -0.026965 -0.7912 0.77405 -0.395398 -0.494477 0.920958 -0.172543 -0.349378 0.643893 0.078074 -0.761122 0.480736 0.233816 -0.845117 0.483133 0.167149 -0.859444 0.616661 0.240115 -0.749715 0.967736 0.117908 -0.222674 0.913198 0.379905 -0.147451 0.390578 0.591083 -0.705741 0.382839 0.535126 -0.753044 0.414139 0.577573 -0.70349 0.47634 0.860797 -0.179246 0.340392 0.907818 -0.24495 0.421549 0.584377 -0.693397 0.405414 0.540989 -0.736865 0.431518 0.576007 -0.694268 0.364935 0.56563 -0.739517 0.160295 0.921034 -0.354968 -0.063838 0.850342 -0.522343 0.231853 0.516573 -0.824255 -0.234963 0.674542 -0.699847 -0.263787 0.488611 -0.831671 0.143761 0.349005 -0.926028 0.121957 0.430188 -0.894463 0.244238 0.368175 -0.897104 0.286839 0.465666 -0.837185 0.431825 0.308888 -0.847417 0.349106 0.306214 -0.88564 0.242828 0.317447 -0.916658 -0.193183 0.358321 -0.913393 -0.108882 0.280328 -0.953709 0.308743 0.342271 -0.887428 0.400235 0.380025 -0.833902 0.437071 0.358464 -0.824907 0.306876 0.362809 -0.879885 -0.062544 0.201463 -0.977497 -0.04802 0.0781 -0.995788 0.266858 0.326827 -0.906626 0.350138 0.278047 -0.894479 0.354862 0.347322 -0.868009 0.255429 0.219947 -0.941477 -0.006971 -0.087812 -0.996113 0.120653 -0.291438 -0.94895 0.318338 0.07641 -0.944893 0.448609 0.180967 -0.875215 0.399034 0.212972 -0.89186 0.432397 -0.02109 -0.901437 0.342686 -0.457883 -0.820311 0.578434 -0.49519 -0.648229 0.296419 -0.000702 -0.955058 0.296419 -0.000702 -0.955058 0.172523 0.052896 -0.983584 0.172523 0.052896 -0.983584 0.039158 0.322577 -0.945733 0.039158 0.322577 -0.945733 0.047516 0.433082 -0.900101 0.047516 0.433082 -0.900101 0.073663 0.121903 -0.989805 0.073663 0.121903 -0.989805 0.020637 0.212144 -0.977021 0.020637 0.212144 -0.977021 0.424054 -0.091556 -0.900997 0.424054 -0.091556 -0.900997 0.357272 -0.03225 -0.933444 0.357272 -0.03225 -0.933444 0.012525 0.534209 -0.84526 0.012525 0.534209 -0.84526 -0.011494 0.7071 -0.707021 -0.011494 0.7071 -0.707021 0.597526 -0.131026 -0.791072 0.597526 -0.131026 -0.791072 0.505826 -0.146625 -0.850083 0.505826 -0.146625 -0.850083 0.043082 0.835064 -0.548463 0.043082 0.835064 -0.548463 0.232892 0.841802 -0.486962 0.232892 0.841802 -0.486962 0.692441 0.211038 -0.689919 0.692441 0.211038 -0.689919 0.670034 -0.002279 -0.742327 0.670034 -0.002279 -0.742327 0.395537 0.785831 -0.475416 0.395537 0.785831 -0.475416 0.511415 0.69064 -0.511342 0.511415 0.69064 -0.511342 0.608864 0.549501 -0.572131 0.608864 0.549501 -0.572131 0.665886 0.412472 -0.621662 0.665886 0.412472 -0.621662 0.267718 0.900516 0.342634 0.267718 0.900516 0.342634 0.434491 0.763425 0.477912 0.434491 0.763425 0.477912 0.869912 0.076138 0.487294 0.869912 0.076138 0.487294 0.932155 -0.229683 0.279881 0.932155 -0.229683 0.279881 0.602872 0.538559 0.588642 0.602872 0.538559 0.588642 0.752279 0.323048 0.574209 0.752279 0.323048 0.574209 -0.213672 0.974192 0.072768 -0.213672 0.974192 0.072768 0.039021 0.973056 0.227243 0.039021 0.973056 0.227243 0.840289 -0.540248 0.045233 0.840289 -0.540248 0.045233 0.606818 -0.775669 -0.17352 0.606818 -0.775669 -0.17352 -0.573632 0.648601 -0.500262 -0.573632 0.648601 -0.500262 -0.459052 0.865899 -0.198721 -0.459052 0.865899 -0.198721 0.348772 -0.845309 -0.404736 0.348772 -0.845309 -0.404736 0.044107 -0.731158 -0.680781 0.044107 -0.731158 -0.680781 -0.526631 0.262875 -0.808429 -0.526631 0.262875 -0.808429 -0.572583 0.444835 -0.688673 -0.572583 0.444835 -0.688673 -0.171813 -0.489749 -0.854767 -0.171813 -0.489749 -0.854767 -0.298216 -0.294897 -0.907801 -0.298216 -0.294897 -0.907801 -0.378075 -0.092709 -0.921121 -0.378075 -0.092709 -0.921121 -0.44719 0.096281 -0.889242 -0.44719 0.096281 -0.889242 0.612429 0.206829 -0.762989 0.464886 0.248405 -0.849809 0.407407 0.351958 -0.842701 0.648197 0.357749 -0.672202 0.671753 0.259933 -0.693674 0.260779 0.444292 -0.857088 0.266283 0.359019 -0.894538 0.239549 0.282383 -0.928911 0.456076 0.54318 -0.704947 0.484975 0.494828 -0.721072 0.523431 0.452679 -0.721874 0.154432 0.395601 -0.905345 0.17883 0.504716 -0.84456 0.266157 0.567731 -0.779001 0.193307 0.300033 -0.934138 0.427534 0.439385 -0.790035 0.307666 0.464115 -0.830626 0.465664 0.419078 -0.779442 0.586011 0.418412 -0.693919 0.376686 0.574397 -0.726757 0.72401 0.167928 -0.669036 0.615211 0.144276 -0.775048 0.538442 0.194451 -0.81992 0.755996 0.352652 -0.551458 0.765047 0.251817 -0.592698 0.104303 0.251884 -0.96212 0.084593 0.265317 -0.960443 0.005837 0.281933 -0.959416 0.438714 0.77153 -0.460728 0.549094 0.684577 -0.479427 0.639111 0.567102 -0.51955 -0.119349 0.571474 -0.811895 -0.055497 0.717664 -0.694175 0.087893 0.80095 -0.592244 -0.082255 0.383999 -0.919662 0.371981 0.25099 -0.893663 0.168173 0.254214 -0.952414 0.515832 0.244885 -0.820943 0.711746 0.448691 -0.540457 0.274747 0.816832 -0.507247 0.645705 0.281916 -0.70964 0.539281 0.220414 -0.812769 0.769022 0.394085 -0.503292 0.726749 0.338639 -0.597628 0.910687 0.132665 0.391214 0.999599 0.019627 0.020427 0.95412 0.024299 0.298438 0.445708 0.894704 -0.029136 0.965917 0.00636 -0.258774 0.63813 0.749781 -0.174984 0.564478 0.808758 -0.165152 0.955888 0.074409 -0.28415 0.833027 -0.550995 -0.049699 0.747769 -0.638876 -0.180774 0.496269 -0.862279 -0.100952 -0.207933 0.848115 -0.487303 0.067624 0.763984 -0.641681 0.12728 0.626188 -0.769213 -0.218784 0.728379 -0.649305 0.477035 0.407812 -0.778542 0.477035 0.407812 -0.778542 0.017333 -0.981177 -0.192329 0.100697 -0.980826 -0.166857 0.066985 -0.985016 -0.158922 0.066985 -0.985016 -0.158922 0.113176 -0.977596 -0.177477 0.113176 -0.977596 -0.177477 0.260639 0.584649 -0.768279 0.260639 0.584649 -0.768279 0.016554 0.67435 -0.738226 -0.106362 0.750404 -0.652366 -0.106362 0.750404 -0.652366 -0.052394 0.836039 -0.546163 0.073173 0.824552 -0.561034 -0.11046 0.686583 -0.718611 -0.155032 0.743111 -0.650962 -0.209657 0.806439 -0.552901 -0.277141 0.74834 -0.602644 -0.254322 0.755762 -0.603444 -0.358109 0.092557 -0.929081 -0.250923 0.673348 -0.695442 -0.112663 0.603179 -0.789609 -0.09202 0.089713 -0.991708 0.154625 0.382352 -0.910988 0.205405 -0.026468 -0.978319 -0.072607 -0.353019 -0.932795 -0.315135 -0.516218 -0.796372 0.137801 -0.96591 -0.219155 -0.147037 -0.862058 -0.485012 0.15353 -0.866566 -0.474859 0.229098 -0.817711 -0.528075 0.125194 -0.964684 -0.231758 0.055128 -0.985656 -0.159509 0.133227 -0.975043 -0.1776 0.08158 0.845691 -0.5274 0.078804 0.875247 -0.477213 -0.135909 0.78308 -0.606889 -0.14307 0.731129 -0.667069 0.652262 -0.134271 -0.746006 0.728452 -0.084587 -0.679855 0.489926 -0.423017 -0.762253 0.604152 0.140091 -0.784458 0.789901 0.036981 -0.612119 0.511155 -0.597093 -0.618224 0.41548 -0.442463 -0.794735 0.053874 -0.927755 -0.369281 0.152238 -0.796477 -0.58519 0.917433 -0.01634 -0.397554 0.60325 -0.699086 -0.383887 0.029478 -0.980033 -0.196639 0.188278 0.863211 -0.468421 0.734878 0.361526 -0.573806 0.645074 0.228829 -0.729052 0.011092 0.714503 -0.699544 0.528285 0.032629 -0.84844 -0.123905 0.526586 -0.841044 0.709036 -0.679127 0.189881 0.54884 -0.680148 0.485977 0.696633 -0.536154 0.476698 0.937025 0.142119 0.319041 0.883729 -0.390989 0.257199 0.771856 0.621298 -0.135006 0.80244 -0.582305 -0.130427 0.360455 0.931906 0.040288 0.246781 0.968966 0.014261 0.199409 0.979909 0.003657 0.20259 0.97835 0.042279 0.297397 0.954751 0.002279 0.296878 0.953346 -0.054732 -0.448272 0.750301 -0.485901 -0.299256 0.711329 -0.635969 -0.449932 0.662013 -0.599417 -0.604373 0.702658 -0.375506 0.543677 -0.837776 -0.05046 0.41825 -0.908309 0.006481 0.525642 -0.828016 0.195167 0.513327 -0.837473 0.187441 0.632445 -0.690176 0.351668 0.562937 -0.723503 0.399556 0.270888 -0.860723 -0.431018 0.466072 -0.760826 -0.451575 0.785817 -0.470274 -0.401664 0.806986 0.379916 -0.452147 0.311722 -0.406116 -0.859011 0.08011 -0.476468 -0.875534 0.492226 -0.783275 0.379728 0.564196 -0.75938 0.324076 0.615425 -0.747397 0.250297 0.467281 -0.880804 -0.076373 0.423525 -0.905139 -0.036738 0.388235 -0.921287 -0.022439 -0.638353 0.671458 -0.376365 -0.642083 0.670375 -0.371923 -0.527289 0.635121 -0.564436 -0.53912 0.609156 -0.581618 -0.499354 0.673213 -0.545371 -0.620665 0.681581 -0.387585 0.724403 -0.679107 -0.118553 0.808578 -0.568186 -0.152862 0.76273 -0.645516 0.039393 0.719046 -0.694329 0.029644 0.704086 -0.666952 0.243799 0.68063 -0.673335 0.288725 0.675478 -0.668555 0.311069 0.688796 -0.721756 0.068031 0.678689 -0.726051 -0.110594 0.590821 -0.659388 -0.464906 0.324614 -0.335183 -0.884465 0.389368 -0.193616 -0.900503 0.677507 -0.584788 -0.446103 0.811911 -0.403641 -0.421752 -0.702864 0.705439 -0.091315 -0.699069 0.693346 0.174852 -0.698884 0.694843 0.169571 -0.697074 0.711711 -0.08692 -0.629707 0.772938 0.077689 -0.630257 0.757744 -0.169115 0.665495 -0.718329 0.202779 0.637554 -0.7383 0.220087 0.650398 -0.741869 0.163133 0.619906 -0.781037 -0.075482 0.62189 -0.772088 -0.130895 0.619404 -0.767547 -0.164959 -0.428525 0.808484 -0.403384 -0.344282 0.922494 -0.174568 0.841854 -0.487833 -0.230867 0.838993 -0.458769 -0.292613 0.718357 -0.682624 -0.134116 0.750372 -0.66081 -0.016469 -0.004385 -0.980634 -0.195802 0.11327 -0.803082 -0.585003 0.033162 -0.790045 -0.612151 -0.142029 -0.978203 -0.151482 0.398848 0.500353 -0.768484 0.284867 0.522124 -0.803889 0.240759 -0.182234 -0.953324 0.326055 -0.256882 -0.90978 0.106126 0.992625 0.058596 0.101925 0.991712 -0.078227 0.185058 0.981762 0.043548 0.161241 0.98316 0.086007 0.203627 0.976108 0.075821 -0.181266 -0.979622 -0.086502 -0.058418 -0.989239 -0.134139 0.18691 0.981774 0.034418 0.16088 0.98655 0.028917 -0.164751 -0.970502 -0.176023 0.075477 -0.797038 -0.599194 0.41959 0.332341 -0.844685 0.322606 -0.288805 -0.901397 0.338129 0.937695 -0.079978 0.299596 0.953203 -0.040569 -0.230271 -0.970692 -0.068787 0.273756 0.960659 -0.046809 -0.093554 0.935084 -0.341855 -0.357811 0.927392 -0.109158 -0.580229 0.784645 -0.218327 -0.370232 0.823908 -0.429073 0.555442 -0.82035 -0.136052 0.648256 -0.730721 0.214037 0.665073 -0.670138 0.329534 -0.177345 0.255741 -0.950339 0.237945 -0.404121 -0.883215 -0.171659 0.218398 -0.960643 -0.191232 0.22974 -0.95428 -0.611039 0.688951 -0.389844 -0.497376 0.621066 -0.605717 0.578572 -0.812132 -0.075471 0.636769 -0.760919 0.124606 -0.168096 0.382717 -0.908445 -0.01579 0.29859 -0.954251 -0.354497 0.372019 -0.857866 -0.354497 0.372019 -0.857866 0.030753 -0.642052 -0.766044 -0.28865 0.899627 -0.327645 -0.28865 0.899627 -0.327645 -0.590748 0.801531 0.092551 0.882451 -0.187177 -0.431561 0.631213 0.690214 -0.3538 0.716773 0.651128 -0.249539 0.810085 0.079366 -0.580916 0.218435 0.918014 -0.330963 0.140919 0.983259 -0.115515 0.178425 0.905077 -0.386006 0.364259 0.817074 -0.446884 0.299785 0.939825 -0.163886 0.464631 -0.750462 -0.470027 0.536199 0.720631 -0.439525 0.864301 -0.265631 -0.427112 -0.127859 0.902899 -0.410396 0.648779 -0.746777 0.14632 -0.65206 0.746179 -0.134292 0.932257 0.179954 -0.313868 0.932257 0.179954 -0.313868 0.85443 0.301563 -0.423095 0.797829 0.26596 -0.541049 0.873116 -0.177098 -0.454207 0.873116 -0.177098 -0.454207 0.649289 0.072699 -0.757059 0.753442 0.191783 -0.628923 0.6043 -0.0704 -0.793641 0.921298 -0.001363 -0.388856 0.921298 -0.001363 -0.388856 0.805464 -0.09727 -0.584608 0.710857 -0.181827 -0.679427 0.859553 -0.250977 -0.445172 -0.504833 -0.252405 -0.825491 -0.504833 -0.252405 -0.825491 -0.176988 -0.95937 -0.219738 -0.176988 -0.95937 -0.219738 0.838581 -0.043777 -0.543014 -0.50884 -0.695521 -0.507279 -0.50884 -0.695521 -0.507279 0.843621 -0.371969 -0.387224 0.843621 -0.371969 -0.387224 0.897769 0.154532 -0.41247 0.897769 0.154532 -0.41247 0.883068 0.157461 -0.442037 0.883068 0.157461 -0.442037 0.71598 -0.20424 -0.667576 0.71598 -0.20424 -0.667576 0.84052 -0.139279 -0.523572 0.84052 -0.139279 -0.523572 0.889164 0.201883 -0.410647 0.889164 0.201883 -0.410647 0.844759 0.094819 -0.526679 0.844759 0.094819 -0.526679 0.516769 -0.546521 -0.658988 0.137687 -0.761356 -0.633545 -0.073521 0.769689 -0.634171 -0.902895 -0.325759 0.280467 -0.936415 -0.200727 0.287811 -0.858832 -0.448083 0.248252 -0.80054 -0.564124 0.202238 -0.740856 -0.649577 0.170825 -0.640499 -0.727822 0.245023 -0.852262 -0.443442 0.277505 -0.785146 -0.561254 0.261802 -0.709343 -0.657204 0.254784 0.578683 -0.759785 0.2964 -0.000115 -0.99999 -0.004589 -0.00051 -0.999977 -0.006811 -3.4e-005 -0.999995 -0.003095 -0.0006 -0.999998 -0.001658 0.001309 -0.999998 0.001288 -0.003465 -0.999976 -0.006061 -0.004195 -0.999979 -0.004981 -0.000633 -0.99997 -0.007748 -0.001948 -0.999974 -0.00693 -6e-006 -0.999971 -0.007673 -0.00264 -0.99998 -0.005704 -6.6e-005 -0.999967 -0.008151 -0.00142 -0.999996 -0.002481 0.003645 -0.999993 4.6e-005 -0.002686 -0.999991 0.003221 0.002724 -0.999944 0.010221 0.004946 -0.999932 0.010546 0.006765 -0.99992 0.010688 0.004595 -0.999966 0.006817 0.001146 -0.999997 0.002298 -0.004822 -0.999982 0.003527 -0.003588 -0.999964 0.00771 -0.00298 -0.999888 0.014663 -0.001243 -0.999863 0.016531 0.001848 -0.999933 0.011451 -0.004415 -0.999984 0.003674 0.001118 -0.999907 0.013595 0.001334 -0.999999 -0.000699 -0.00033 -1 -0.000292</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"LOD3spShape-lib-map1\" name=\"map1\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2277\" source=\"#LOD3spShape-lib-map1-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4554\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"LOD3spShape-lib-map1-array\">0.245158 0.423975 0.25011 0.468112 0.150442 0.543685 0.148569 0.498875 0.302841 0.416173 0.345064 0.636086 0.339502 0.673242 0.260986 0.672117 0.283208 0.642063 0.331126 0.714598 0.241009 0.71553 0.233372 0.762934 0.302959 0.373132 0.224027 0.289653 0.23558 0.359702 0.143764 0.429085 0.134156 0.320572 0.298228 0.319321 0.288073 0.263566 0.326898 0.757163 0.328393 0.797118 0.23841 0.805793 0.60087 0.640918 0.866606 0.398924 0.510699 0.676291 0.517366 0.634965 0.871384 0.397619 0.505796 0.719121 0.878048 0.397558 0.87416 0.398826 0.86606 0.397625 0.86057 0.399008 0.501279 0.762876 0.856321 0.39906 0.497144 0.804816 0.862375 0.397683 0.860024 0.397676 0.853776 0.399148 0.494669 0.842655 0.936097 0.40457 0.495808 0.877438 0.932361 0.401286 0.944998 0.401429 0.333511 0.830512 0.255441 0.838224 0.335539 0.859065 0.275714 0.857682 0.13703 0.645509 0.099669 0.709478 0.072436 0.710311 0.114209 0.64461 0.217381 0.600094 0.193334 0.589335 0.083907 0.774978 0.093256 0.834193 0.067488 0.842396 0.056643 0.778851 0.948825 0.405179 0.543475 0.557405 0.5578 0.533271 0.685834 0.551732 0.928618 0.398828 0.939922 0.398832 0.318062 0.571086 0.304302 0.551225 0.870712 0.401462 0.862287 0.401557 0.855482 0.401642 0.85836 0.405349 0.85103 0.405417 0.86725 0.404976 0.851008 0.401767 0.84805 0.401779 0.618068 0.949096 0.595914 0.442419 0.701364 0.36472 0.704143 0.312403 0.595493 0.387203 0.757075 0.288915 0.749567 0.262372 0.79867 0.019963 0.720188 0.090411 0.342229 0.232442 0.353643 0.285267 0.846214 0.405443 0.84246 0.405195 0.945825 0.3988 0.51556 0.94314 0.529717 0.959537 0.951482 0.401365 0.955814 0.405156 0.355112 0.336459 0.416748 0.23909 0.409212 0.301844 0.412385 0.174765 0.722678 0.141004 0.371257 0.129527 0.316583 0.183819 0.278107 0.146712 0.815355 0.094326 0.586596 0.164171 0.31201 0.090946 0.272238 0.213152 0.591566 0.221736 0.775513 0.183818 0.258385 0.177707 0.714664 0.225413 0.594393 0.311859 0.803506 0.201004 0.853165 0.100422 0.240207 0.064107 0.220228 0.127313 0.134162 0.116701 0.137886 0.045291 0.20962 0.176711 0.132836 0.176022 0.393776 0.367451 0.346805 0.380154 0.21424 0.228892 0.133514 0.241035 0.127886 0.880246 0.194162 0.909528 0.176891 0.924466 0.105635 0.892789 0.298575 0.918513 0.289302 0.932026 0.41004 0.927663 0.412647 0.940987 0.152917 0.714025 0.188039 0.660899 0.251002 0.622891 0.148083 0.821618 0.139091 0.770988 0.529124 0.59406 0.624566 0.605374 0.943792 0.414167 0.33386 0.602351 0.939709 0.408955 0.951716 0.40979 0.95394 0.414936 0.863781 0.409841 0.854643 0.410095 0.847079 0.410021 0.50373 0.914675 0.043999 0.560029 0.039161 0.51728 0.035514 0.442488 0.02836 0.327681 0.57657 0.399149 0.579657 0.45714 0.483058 0.467543 0.484696 0.402538 0.027211 0.11532 0.026409 0.041836 0.027231 0.176259 0.027041 0.244825 0.496033 0.232082 0.498386 0.171519 0.545104 0.178866 0.55478 0.242428 0.486973 0.320445 0.572701 0.32584 0.253473 0.42034 0.198325 0.471074 0.201641 0.514357 0.257191 0.464291 0.304409 0.414784 0.305266 0.371658 0.230885 0.286168 0.167912 0.306331 0.188981 0.401339 0.242536 0.354324 0.300813 0.31779 0.290984 0.262458 0.644363 0.422582 0.643061 0.366324 0.70337 0.314326 0.703499 0.366966 0.745969 0.26707 0.75382 0.293297 0.343946 0.231017 0.355397 0.284532 0.356783 0.335152 0.414764 0.29281 0.419941 0.236001 0.413771 0.173263 0.370421 0.125545 0.313385 0.086563 0.282902 0.142155 0.319456 0.18046 0.261679 0.175104 0.275739 0.211488 0.247515 0.05956 0.175872 0.043369 0.166908 0.113803 0.230266 0.122298 0.162066 0.173298 0.220575 0.173418 0.399643 0.347472 0.348371 0.378515 0.850892 0.415208 0.23283 0.882474 0.174218 0.860862 0.318561 0.890705 0.412205 0.900441 0.414872 0.864697 0.414169 0.832004 0.413463 0.796679 0.414763 0.757 0.418623 0.715141 0.424042 0.67374 0.797949 0.022112 0.816816 0.093012 0.720595 0.147032 0.715991 0.092651 0.636546 0.210325 0.627672 0.148444 0.772502 0.189202 0.711355 0.231084 0.641706 0.289174 0.223314 0.226619 0.162858 0.235961 0.139391 0.505963 0.140772 0.546375 0.105327 0.324975 0.131454 0.436403 0.855305 0.0942 0.800674 0.205793 0.103269 0.042003 0.100779 0.11305 0.099208 0.173793 0.099637 0.242841 0.428561 0.633258 0.429426 0.594048 0.429051 0.559095 0.429259 0.535162 0.35272 0.639241 0.294558 0.645659 0.274212 0.673847 0.348213 0.675519 0.253789 0.714174 0.339072 0.715472 0.241562 0.759109 0.241492 0.801977 0.330569 0.796358 0.332348 0.756954 0.843668 0.414845 0.519216 0.636196 0.513483 0.677706 0.858319 0.415536 0.509018 0.719971 0.595108 0.724198 0.959154 0.409842 0.961426 0.415077 0.955396 0.420505 0.503982 0.762367 0.946551 0.419988 0.498249 0.80295 0.581926 0.813498 0.948394 0.426244 0.956245 0.426562 0.493564 0.840197 0.962774 0.420748 0.49337 0.874734 0.5689 0.884732 0.963626 0.426902 0.947821 0.439136 0.254385 0.836095 0.333265 0.830744 0.334347 0.859927 0.274272 0.857068 0.111374 0.707428 0.160452 0.654158 0.126019 0.649524 0.074711 0.707898 0.232092 0.611555 0.203545 0.598866 0.085639 0.828171 0.086444 0.767612 0.053832 0.770468 0.05904 0.833261 0.5406 0.554531 0.653253 0.57169 0.949156 0.432796 0.552741 0.532581 0.956416 0.432776 0.955188 0.438695 0.321928 0.578317 0.3053 0.558373 0.963377 0.433055 0.962074 0.438861 0.939469 0.450342 0.944673 0.445101 0.952905 0.444195 0.949616 0.449137 0.959891 0.444199 0.95721 0.449055 0.928445 0.45763 0.933041 0.454385 0.647892 0.957038 0.945196 0.453364 0.513713 0.938992 0.528694 0.953445 0.940767 0.456994 0.954246 0.453493 0.191556 0.905473 0.119561 0.876603 0.09609 0.886393 0.173642 0.917872 0.296111 0.916924 0.285563 0.930752 0.407594 0.925155 0.699705 0.808301 0.767751 0.813767 0.770203 0.857847 0.710393 0.859091 0.67046 0.86001 0.652167 0.800156 0.732575 0.902022 0.706983 0.910753 0.776574 0.894725 0.709069 0.706824 0.772884 0.721001 0.769128 0.766819 0.69961 0.756109 0.650715 0.739559 0.665169 0.685443 0.747389 0.629544 0.781976 0.645207 0.777571 0.679447 0.726035 0.663915 0.69251 0.641696 0.7256 0.608173 0.800842 0.598447 0.800844 0.613722 0.782354 0.62203 0.77064 0.606739 0.761516 0.586356 0.801211 0.57812 0.833474 0.606525 0.843418 0.585771 0.884582 0.608278 0.861681 0.62927 0.826927 0.645008 0.821482 0.621769 0.901508 0.709495 0.841154 0.721344 0.835351 0.679466 0.88519 0.664947 0.920582 0.64464 0.946246 0.692573 0.905321 0.811872 0.840491 0.814502 0.842749 0.767471 0.908491 0.759591 0.957769 0.748636 0.953229 0.808266 0.87648 0.901039 0.832824 0.894364 0.83647 0.858222 0.893987 0.860506 0.934495 0.863509 0.904941 0.908789 0.811165 0.93926 0.808557 0.928096 0.833115 0.918674 0.850764 0.928355 0.866017 0.939324 0.815782 0.955298 0.781351 0.919619 0.767445 0.930389 0.756778 0.947206 0.874321 0.260529 0.87457 0.258357 0.870642 0.262514 0.870232 0.260129 0.875205 0.262091 0.87418 0.274349 0.878088 0.275377 0.879128 0.284194 0.875282 0.284248 0.876451 0.268146 0.87176 0.26763 0.879196 0.270887 0.875496 0.265391 0.893101 0.28442 0.892287 0.271326 0.879947 0.284131 0.862255 0.219399 0.877309 0.242158 0.869772 0.241647 0.855575 0.218438 0.862432 0.239621 0.84944 0.210845 0.867315 0.244511 0.849901 0.240235 0.863194 0.266321 0.876212 0.265675 0.880423 0.283451 0.866718 0.283089 0.870498 0.254293 0.863904 0.253791 0.870234 0.270504 0.864805 0.270607 0.879852 0.25405 0.878645 0.27023 0.884908 0.221559 0.894641 0.243235 0.885819 0.242521 0.87478 0.219802 0.853855 0.205189 0.868038 0.204565 0.870975 0.210424 0.856654 0.209577 0.882303 0.208527 0.885027 0.21281 0.869343 0.207181 0.855354 0.205901 0.879862 0.246326 0.872817 0.221463 0.859409 0.2185 0.885826 0.225344 0.891813 0.248223 0.886742 0.266822 0.897889 0.269881 0.890434 0.283337 0.902191 0.283202 0.887267 0.269985 0.888486 0.253806 0.897003 0.253871 0.897865 0.269734 0.890567 0.21382 0.890889 0.214313 0.887336 0.211472 0.940502 0.247339 0.935827 0.245027 0.948386 0.259727 0.952135 0.261243 0.929477 0.246937 0.935892 0.257903 0.955141 0.271935 0.951237 0.271687 0.951697 0.282445 0.956107 0.282705 0.939971 0.271031 0.941535 0.28252 0.963745 0.266939 0.955791 0.248173 0.96377 0.246708 0.971434 0.266214 0.948554 0.235961 0.955224 0.234835 0.896396 0.245174 0.886107 0.251776 0.887306 0.25714 0.901578 0.253513 0.893935 0.234459 0.893306 0.241625 0.88488 0.259333 0.895682 0.256287 0.898524 0.274248 0.887363 0.275119 0.885952 0.26722 0.897217 0.265981 0.888292 0.284017 0.899782 0.283788 0.893557 0.224473 0.903384 0.244263 0.904117 0.226402 0.909834 0.245212 0.898452 0.232315 0.90536 0.242289 0.914901 0.24109 0.908475 0.23147 0.912117 0.251402 0.92111 0.249824 0.905103 0.223634 0.894105 0.223477 0.891627 0.223783 0.892209 0.224715 0.894785 0.217728 0.904032 0.218825 0.905292 0.26092 0.916745 0.259188 0.925679 0.257542 0.919312 0.270264 0.927598 0.269904 0.909165 0.270372 0.922229 0.248254 0.923018 0.231732 0.931448 0.236491 0.927474 0.250713 0.939132 0.243721 0.931475 0.252998 0.941395 0.236759 0.941774 0.24318 0.951181 0.24757 0.953028 0.242625 0.943442 0.249961 0.949719 0.251412 0.932269 0.241398 0.935522 0.24909 0.930136 0.234395 0.929446 0.228394 0.942151 0.230847 0.942787 0.227016 0.929372 0.224433 0.954848 0.237908 0.922857 0.256527 0.927955 0.258098 0.929776 0.270263 0.925166 0.269641 0.93313 0.259066 0.935431 0.270899 0.938091 0.256867 0.945703 0.257403 0.953024 0.257866 0.948714 0.269472 0.957575 0.269677 0.940805 0.269454 0.944953 0.253898 0.950208 0.269278 0.961307 0.253711 0.957956 0.256418 0.964661 0.269455 0.96896 0.268209 0.902892 0.249987 0.897745 0.228849 0.908596 0.231834 0.912735 0.252197 0.897122 0.224227 0.89485 0.22181 0.90624 0.226903 0.908607 0.228742 0.903082 0.242361 0.906809 0.256103 0.917237 0.255133 0.919494 0.264606 0.908311 0.265315 0.907454 0.269025 0.916487 0.269043 0.911531 0.283044 0.919593 0.2829 0.909419 0.273405 0.911476 0.28336 0.920571 0.273041 0.922157 0.283218 0.922114 0.255039 0.920062 0.238863 0.921052 0.234472 0.923775 0.23538 0.929369 0.253983 0.934895 0.263753 0.927988 0.282737 0.92516 0.269608 0.937386 0.272947 0.938515 0.283177 0.906903 0.269654 0.905634 0.25451 0.912156 0.254648 0.915624 0.269303 0.934262 0.269581 0.931993 0.256855 0.928513 0.24901 0.928512 0.223212 0.917128 0.220406 0.916725 0.220767 0.9041 0.217973 0.914088 0.228391 0.916363 0.246441 0.918617 0.23227 0.923487 0.240784 0.938248 0.22777 0.892821 0.216321 0.844542 0.206031 0.874322 0.212263 0.870581 0.286403 0.864795 0.285932 0.877377 0.285736 0.887924 0.285532 0.898823 0.285311 0.908672 0.285115 0.917425 0.284957 0.921216 0.269224 0.922914 0.284906 0.926665 0.284912 0.930758 0.284928 0.936388 0.28496 0.952837 0.284936 0.967867 0.284724 0.971593 0.266723 0.976556 0.284338 0.976161 0.284497 0.973686 0.284223 0.968029 0.284169 0.960033 0.284154 0.950775 0.284138 0.942494 0.284121 0.936182 0.284123 0.929809 0.284158 0.920968 0.284223 0.910111 0.284292 0.952943 0.272204 0.950019 0.262148 0.953976 0.282879 0.900909 0.229617 0.889642 0.217102 0.912068 0.234085 0.913562 0.243735 0.925227 0.239763 0.92311 0.245509 0.916786 0.225007 0.940372 0.24984 0.963568 0.250138 0.888081 0.264217 0.918118 0.254988 0.844126 0.209259 0.844951 0.221286 0.886769 0.216308 0.872985 0.215718 0.879346 0.309871 0.875833 0.306046 0.875654 0.308144 0.879007 0.306407 0.876295 0.294136 0.878977 0.293033 0.879812 0.300399 0.876175 0.301094 0.880254 0.30345 0.882198 0.297454 0.893175 0.297687 0.865817 0.349629 0.859181 0.350621 0.872916 0.327332 0.880252 0.326495 0.865713 0.330422 0.852822 0.359205 0.869257 0.322943 0.877097 0.301439 0.864055 0.301093 0.852819 0.327816 0.866118 0.317194 0.872679 0.31623 0.865658 0.301152 0.871305 0.301562 0.879516 0.300927 0.881998 0.315802 0.888262 0.347411 0.878301 0.348969 0.888479 0.326114 0.897047 0.325511 0.857019 0.363938 0.860381 0.359999 0.874655 0.358691 0.872015 0.364197 0.888629 0.3558 0.886097 0.359632 0.872907 0.361011 0.858128 0.36229 0.881706 0.320824 0.862423 0.349295 0.875903 0.346079 0.888714 0.341972 0.893556 0.318638 0.898554 0.296744 0.887564 0.300041 0.888147 0.300674 0.898715 0.300283 0.89883 0.31539 0.89048 0.315686 0.894383 0.353795 0.894065 0.354129 0.890921 0.356254 0.942171 0.318343 0.9529 0.304272 0.949521 0.305533 0.937705 0.320863 0.937122 0.30759 0.931259 0.318903 0.955735 0.293528 0.951772 0.293299 0.940544 0.294181 0.964624 0.302435 0.972337 0.302695 0.965634 0.321964 0.957594 0.320997 0.957663 0.333351 0.950951 0.332759 0.897685 0.323309 0.904388 0.314564 0.887892 0.312338 0.888936 0.316243 0.699423 0.809253 0.710111 0.860044 0.769921 0.8588 0.767468 0.81472 0.651885 0.801109 0.669688 0.860514 0.732293 0.902975 0.706453 0.911484 0.776292 0.895678 0.708787 0.707777 0.699329 0.757062 0.768846 0.767772 0.772602 0.721954 0.664887 0.686395 0.650433 0.740512 0.747107 0.630497 0.725753 0.664868 0.777288 0.6804 0.781693 0.64616 0.725318 0.609127 0.692228 0.642648 0.80056 0.5994 0.770358 0.607692 0.782072 0.622983 0.800562 0.614675 0.800928 0.579073 0.761234 0.587309 0.833192 0.607478 0.861399 0.630223 0.8843 0.609231 0.843136 0.586725 0.8212 0.622722 0.826645 0.645961 0.901226 0.710448 0.884907 0.6659 0.835069 0.680418 0.840872 0.722297 0.945964 0.693526 0.920299 0.645594 0.905039 0.812825 0.908209 0.760544 0.842467 0.768423 0.840209 0.815454 0.952947 0.809219 0.957487 0.749588 0.876198 0.901993 0.893705 0.861459 0.836187 0.859175 0.832541 0.895317 0.904659 0.909742 0.934213 0.864462 0.810883 0.940213 0.850482 0.929308 0.832833 0.919627 0.808275 0.929049 0.815494 0.955807 0.865735 0.940277 0.767163 0.931342 0.781069 0.920572 0.878641 0.308129 0.757688 0.947696 0.89571 0.326063 0.896265 0.333541 0.887647 0.308911 0.896958 0.311973 0.898883 0.293285 0.897963 0.301935 0.887703 0.301029 0.887878 0.29293 0.905567 0.324686 0.896731 0.344468 0.906991 0.342485 0.911791 0.324251 0.900908 0.335596 0.911043 0.336295 0.917143 0.326675 0.907054 0.325968 0.923285 0.31808 0.915184 0.316034 0.908088 0.344187 0.897103 0.344536 0.894607 0.344154 0.895142 0.343144 0.898106 0.350443 0.90726 0.349181 0.907871 0.308374 0.918398 0.309598 0.927049 0.310818 0.928305 0.298442 0.920004 0.298182 0.909927 0.298243 0.924036 0.321254 0.929162 0.318872 0.933826 0.332572 0.925629 0.337191 0.941158 0.32555 0.933051 0.316658 0.943727 0.330971 0.955075 0.325269 0.952983 0.320359 0.943791 0.324629 0.951332 0.316568 0.945126 0.31796 0.937248 0.318798 0.934373 0.326359 0.932584 0.333273 0.932192 0.3393 0.932318 0.343421 0.945607 0.340893 0.944776 0.336887 0.957129 0.33006 0.924262 0.313255 0.925922 0.300164 0.930502 0.299579 0.929283 0.311724 0.936126 0.298969 0.93441 0.310774 0.939442 0.311396 0.947027 0.310849 0.954323 0.310334 0.958291 0.298597 0.94944 0.298819 0.941532 0.298832 0.946483 0.315703 0.950981 0.300512 0.962811 0.314479 0.969751 0.300159 0.965388 0.298807 0.959326 0.311738 0.904541 0.316598 0.900452 0.33816 0.911146 0.334819 0.914268 0.314088 0.900043 0.343367 0.910827 0.338483 0.909045 0.340214 0.897918 0.345703 0.907714 0.311836 0.905082 0.324826 0.918749 0.311513 0.909052 0.30192 0.920236 0.301846 0.91718 0.297035 0.908155 0.297332 0.909931 0.29344 0.92041 0.293444 0.923496 0.310879 0.922253 0.327378 0.925923 0.331262 0.923469 0.332076 0.930583 0.312153 0.934974 0.302503 0.925817 0.29614 0.93758 0.293425 0.907706 0.300101 0.916398 0.300537 0.913653 0.315103 0.907277 0.314776 0.934984 0.298714 0.933344 0.311407 0.930312 0.318902 0.931529 0.345055 0.919853 0.347075 0.920283 0.347817 0.907379 0.350402 0.918259 0.323025 0.916863 0.340467 0.921166 0.335346 0.925584 0.327014 0.941044 0.340685 0.896265 0.352186 0.847118 0.363087 0.877923 0.355511 0.921992 0.300554 0.972463 0.301867 0.950828 0.303658 0.953466 0.293583 0.892951 0.350759 0.90326 0.337983 0.915596 0.322974 0.91417 0.333036 0.927312 0.326701 0.92504 0.320904 0.919699 0.342662 0.941871 0.316003 0.965254 0.318221 0.889956 0.306147 0.919598 0.314755 0.845891 0.359181 0.847322 0.346695 0.890112 0.35133 0.87636 0.352039 0.950166 0.457401 0.877438 0.456074 0.890333 0.455013 0.891902 0.457826 0.881771 0.45805 0.893433 0.460126 0.885457 0.459788 0.90216 0.458193 0.902038 0.46051 0.902093 0.455956 0.869348 0.456995 0.875073 0.458463 0.870949 0.459563 0.865831 0.459946 0.88002 0.459819 0.876379 0.459992 0.890696 0.462723 0.889158 0.462546 0.893089 0.46287 0.842115 0.409869 0.837426 0.409453 0.838646 0.414482 0.833434 0.414204 0.847163 0.42056 0.840709 0.41957 0.839445 0.430603 0.83503 0.428579 0.852464 0.422383 0.843659 0.433436 0.835601 0.419062 0.830596 0.418889 0.831257 0.427506 0.827802 0.427141 0.876435 0.450731 0.866399 0.449489 0.869211 0.447456 0.878828 0.448367 0.861778 0.461251 0.86329 0.45579 0.869445 0.454182 0.919848 0.462088 0.9244 0.459418 0.936505 0.460001 0.932799 0.462552 0.914853 0.457033 0.912969 0.45878 0.983064 0.742705 0.970242 0.681277 0.978343 0.807461 0.961861 0.871181 0.925 0.920764 0.93957 0.629718 0.896636 0.591965 0.87816 0.953598 0.820182 0.969676 0.849136 0.56846 0.801508 0.561342 0.753635 0.961316 0.693916 0.922274 0.756457 0.570463 0.715065 0.59271 0.62759 0.729278 0.628526 0.797321 0.647916 0.672373 0.648988 0.865355 0.678001 0.627321 0.970524 0.680324 0.983346 0.741752 0.978626 0.806509 0.962143 0.870229 0.925282 0.919811 0.896919 0.591012 0.939853 0.628765 0.878442 0.952645 0.819304 0.969461 0.80179 0.560389 0.849419 0.567507 0.753465 0.960832 0.694447 0.921544 0.715348 0.591757 0.756739 0.569509 0.628808 0.796368 0.627873 0.728326 0.648199 0.671421 0.648584 0.866073 0.678283 0.626368 0.411737 0.936637 0.212659 0.665019 0.175067 0.711347 0.264355 0.628942 0.154113 0.763611 0.154483 0.81452 0.911051 0.461039 0.528987 0.594894 0.945951 0.460521 0.339791 0.607004 0.94197 0.46307 0.896594 0.462992 0.902819 0.462828 0.939147 0.46498 0.588358 0.917245 0.930869 0.464578 0.500784 0.908814 0.937502 0.466649 0.178893 0.855096 0.23388 0.878659 0.317203 0.888741 0.409219 0.897533 0.412456 0.865776 0.413517 0.832907 0.415303 0.797177 0.41903 0.758087 0.424284 0.717135 0.429773 0.675932 0.433166 0.635493 0.431719 0.596003 0.42845 0.560105 0.426262 0.535529 0.166927 0.932027 0.089131 0.90146 0.412839 0.954955 0.280654 0.94225 0.092604 0.643694 0.172265 0.583534 0.034269 0.783775 0.048602 0.713913 0.288973 0.53753 0.047197 0.849027 0.9297 0.466322 0.910929 0.462701 0.429574 0.516361 0.573602 0.514995 0.911763 0.464455 0.904647 0.46452 0.91245 0.466086 0.906026 0.466148 0.920833 0.464349 0.682918 0.980037 0.544365 0.975068 0.92089 0.466118 0.274953 0.94136 0.412382 0.948959 0.078614 0.893197 0.159929 0.926191 0.045546 0.712112 0.029763 0.775258 0.174568 0.589926 0.093871 0.647648 0.286715 0.542233 0.039682 0.837587 0.568016 0.514851 0.425296 0.517534 0.89967 0.464526 0.715649 0.536695 0.89649 0.46445 0.90127 0.466162 0.89793 0.466107 0.92457 0.397524 0.934172 0.397517 0.90196 0.397532 0.543555 0.96576 0.912366 0.397543 0.914428 0.398827 0.902477 0.39881 0.887934 0.397535 0.886084 0.398748 0.939158 0.397548 0.916553 0.401268 0.903345 0.401161 0.918892 0.404595 0.904419 0.40426 0.88377 0.401252 0.880927 0.404722 0.905294 0.428912 0.905488 0.424961 0.912357 0.424967 0.91334 0.429138 0.905906 0.421495 0.911087 0.422154 0.904076 0.437412 0.90478 0.43319 0.913199 0.433998 0.911884 0.43877 0.90321 0.444063 0.903361 0.441071 0.909872 0.442542 0.908067 0.444769 0.902496 0.453271 0.918142 0.453706 0.928783 0.450398 0.93573 0.445715 0.939896 0.439756 0.941415 0.433124 0.940295 0.426582 0.937084 0.420446 0.931618 0.414911 0.921769 0.409549 0.905101 0.407893 0.876573 0.40992 0.866307 0.415598 0.859425 0.421874 0.854503 0.429219 0.846009 0.439206 0.853866 0.435555 0.855666 0.44134 0.849189 0.44441 0.859693 0.44628 0.853635 0.449316 0.859396 0.453185 0.889827 0.45174 0.862926 0.421743 0.859205 0.428005 0.869662 0.416377 0.857993 0.434235 0.859086 0.440054 0.916008 0.412068 0.903601 0.410265 0.918257 0.418305 0.91053 0.415402 0.913091 0.413541 0.921836 0.416936 0.92534 0.416062 0.879532 0.412275 0.931494 0.42114 0.923547 0.422692 0.927682 0.421785 0.926515 0.428111 0.931209 0.427509 0.93512 0.42705 0.936295 0.433481 0.92732 0.434037 0.932331 0.433786 0.925669 0.439922 0.930432 0.440034 0.934525 0.439972 0.912845 0.451737 0.922595 0.449614 0.907361 0.448978 0.915126 0.447877 0.918684 0.448912 0.909842 0.450414 0.901128 0.451294 0.929882 0.445604 0.921412 0.444811 0.925747 0.445329 0.862632 0.44473 0.90791 0.418325 0.914417 0.420366 0.918293 0.424021 0.92059 0.42877 0.920879 0.434155 0.919487 0.439514 0.911345 0.446349 0.90499 0.446728 0.916084 0.443813 0.891421 0.410387 0.891335 0.407994 0.8923 0.404278 0.892667 0.401108 0.892803 0.398753 0.893101 0.397518 0.953337 0.401538 0.958091 0.405199 0.9475 0.399036 0.96186 0.409791 0.964499 0.415028 0.96612 0.420717 0.967305 0.426924 0.967388 0.433074 0.966427 0.438883 0.96451 0.444202 0.961861 0.44894 0.958944 0.453645 0.955428 0.457592 0.951844 0.460785 0.948132 0.463506 0.945008 0.465414 0.9428 0.466896 0.940897 0.39766 0.894646 0.464377 0.893748 0.464327 0.895819 0.465909 0.894732 0.465707 0.898046 0.468336 0.895591 0.467749 0.894211 0.467377 0.894053 0.470321 0.892528 0.469525 0.89702 0.472125 0.906461 0.46806 0.901761 0.468217 0.901883 0.471147 0.906501 0.470456 0.912592 0.467918 0.912253 0.470089 0.920682 0.467923 0.920674 0.470154 0.9293 0.468129 0.929876 0.470181 0.93702 0.468441 0.938213 0.470896 0.942275 0.468514 0.942757 0.470744 0.890006 0.4495 0.852976 0.399065 0.859393 0.397599 0.847065 0.401675 0.84127 0.405026 0.953466 0.401386 0.958188 0.405089 0.947588 0.398916 0.961862 0.409747 0.964391 0.415022 0.965926 0.420729 0.967068 0.426923 0.967242 0.433135 0.966314 0.439008 0.964406 0.444378 0.961584 0.44912 0.958267 0.453722 0.954279 0.457569 0.865611 0.460368 0.870463 0.459645 0.869977 0.459728 0.865391 0.460791 0.875883 0.460032 0.875386 0.460071 0.889107 0.462568 0.889055 0.46259 0.836433 0.409343 0.829542 0.419704 0.832578 0.41403 0.832317 0.414141 0.82924 0.419624 0.86181 0.461905 0.861843 0.46256 0.95053 0.46075 0.946775 0.4634 0.943577 0.465237 0.941527 0.466697 0.893773 0.464335 0.893798 0.464342 0.894526 0.465626 0.894385 0.465571 0.940912 0.397604 0.893807 0.467247 0.893563 0.467166 0.891985 0.469369 0.891535 0.469419 0.940364 0.468392 0.940762 0.470517 0.866236 0.398834 0.873711 0.398813 0.877506 0.397514 0.870971 0.397493 0.865522 0.397455 0.860032 0.398872 0.856026 0.399014 0.861954 0.397568 0.860159 0.397664 0.853853 0.399094 0.935431 0.404681 0.948546 0.405179 0.944496 0.401457 0.931632 0.401375 0.939488 0.398861 0.927974 0.398901 0.870657 0.401504 0.861966 0.401526 0.855096 0.4016 0.850751 0.405417 0.858121 0.405363 0.867731 0.405188 0.850561 0.401575 0.848094 0.401586 0.842791 0.404957 0.845766 0.405198 0.9455 0.398818 0.951158 0.401375 0.955535 0.405156 0.94295 0.41441 0.9536 0.414936 0.951437 0.40979 0.938847 0.409148 0.863906 0.410047 0.854469 0.410101 0.8468 0.410021 0.843291 0.414792 0.850618 0.415218 0.858112 0.415702 0.958875 0.409842 0.961147 0.415077 0.9551 0.420509 0.945887 0.42022 0.947818 0.426423 0.955942 0.426574 0.962495 0.420748 0.963347 0.426902 0.947179 0.438896 0.955415 0.438781 0.95627 0.432802 0.948355 0.432791 0.963455 0.433109 0.96255 0.43901 0.93973 0.449457 0.950281 0.449152 0.953464 0.44429 0.944309 0.444589 0.960647 0.444424 0.957836 0.449233 0.928866 0.456683 0.941589 0.457208 0.946319 0.453375 0.933669 0.453285 0.954103 0.453514 0.949874 0.457416 0.877353 0.455968 0.882269 0.458025 0.892317 0.457757 0.890577 0.455047 0.886684 0.460112 0.89423 0.460211 0.902677 0.460467 0.90267 0.458019 0.902808 0.455334 0.869597 0.456984 0.865825 0.458435 0.871446 0.458982 0.8752 0.458466 0.877063 0.46 0.880928 0.46006 0.889224 0.462652 0.890358 0.462714 0.892541 0.462593 0.841603 0.409572 0.838159 0.409243 0.834209 0.413908 0.837981 0.414182 0.839885 0.419736 0.846514 0.420792 0.834481 0.428371 0.838869 0.430451 0.84343 0.433385 0.852102 0.422532 0.830666 0.418987 0.834732 0.419195 0.827717 0.426976 0.830662 0.427303 0.875777 0.450429 0.878346 0.448288 0.868619 0.446935 0.865577 0.448677 0.860982 0.459109 0.863516 0.455972 0.868771 0.453598 0.919955 0.462087 0.933215 0.46265 0.936971 0.460171 0.92452 0.45941 0.915797 0.455832 0.913434 0.458571 0.911682 0.460937 0.945768 0.460575 0.941689 0.463136 0.897291 0.462545 0.903757 0.462585 0.930828 0.464538 0.938505 0.464915 0.929084 0.466249 0.936418 0.466469 0.911714 0.462545 0.904992 0.464496 0.91226 0.464434 0.906001 0.466171 0.912549 0.466198 0.920438 0.466178 0.920682 0.464371 0.899694 0.464496 0.896238 0.464476 0.897673 0.46607 0.901142 0.46612 0.933851 0.397545 0.924135 0.397565 0.901567 0.397461 0.902111 0.398787 0.913998 0.398826 0.911927 0.397463 0.885568 0.398789 0.887707 0.397486 0.939027 0.397536 0.902897 0.401138 0.916139 0.401275 0.904075 0.404332 0.918631 0.404656 0.883077 0.401373 0.880245 0.404983 0.905419 0.428922 0.912942 0.429219 0.912006 0.425106 0.905474 0.425025 0.910791 0.422281 0.905844 0.421559 0.904305 0.436885 0.911907 0.438227 0.913047 0.433844 0.905052 0.432984 0.903203 0.443238 0.908124 0.443775 0.909903 0.441649 0.903445 0.440313 0.90285 0.452456 0.918742 0.45246 0.929033 0.449192 0.935553 0.444785 0.939489 0.439171 0.940895 0.433027 0.939916 0.426757 0.936762 0.420698 0.931211 0.415109 0.90461 0.407951 0.921344 0.40965 0.876099 0.410269 0.865754 0.416146 0.858856 0.422274 0.85408 0.42925 0.845714 0.439016 0.8487 0.443676 0.855252 0.440105 0.853622 0.434905 0.852614 0.447663 0.858958 0.44511 0.858176 0.451853 0.889824 0.45148 0.858947 0.427844 0.863033 0.422095 0.869857 0.416948 0.858451 0.439034 0.857612 0.433475 0.903128 0.410252 0.915613 0.4122 0.910336 0.415321 0.91773 0.418674 0.921258 0.417307 0.91279 0.413538 0.924944 0.416332 0.879341 0.412694 0.930972 0.4215 0.922517 0.423241 0.926792 0.422268 0.92506 0.428584 0.929895 0.42793 0.93442 0.427304 0.935453 0.433435 0.925801 0.434263 0.930838 0.433902 0.924243 0.439743 0.929152 0.439726 0.933786 0.439455 0.922618 0.448568 0.913071 0.450609 0.91472 0.447235 0.9073 0.44856 0.909883 0.449686 0.918464 0.448158 0.90106 0.450464 0.929479 0.444749 0.920523 0.44435 0.924927 0.444695 0.861743 0.443993 0.907779 0.418347 0.914012 0.420577 0.917709 0.42432 0.919641 0.429082 0.919962 0.434273 0.918588 0.43924 0.904848 0.446138 0.911088 0.445577 0.915514 0.4432 0.890897 0.408138 0.891059 0.410492 0.89188 0.404459 0.892481 0.401195 0.892744 0.398811 0.892774 0.397499 0.852987 0.39915 0.859402 0.397672 0.847027 0.401638 0.84144 0.40503 0.836758 0.409301 0.826856 0.427241 0.893304 0.464316 0.894343 0.465793 0.894093 0.464377 0.895401 0.465971 0.893628 0.467665 0.890751 0.471053 0.897653 0.467915 0.895086 0.467874 0.893376 0.47055 0.896513 0.470318 0.906138 0.467954 0.901291 0.467913 0.900442 0.470186 0.905385 0.470181 0.912382 0.468058 0.911527 0.470316 0.918635 0.470453 0.91977 0.468076 0.926488 0.470872 0.927835 0.468189 0.935282 0.468257 0.935209 0.471328 0.877915 0.500707 0.878197 0.500625 0.878935 0.505269 0.878376 0.50543 0.87849 0.500327 0.879515 0.504678 0.878776 0.499827 0.880077 0.503685 0.879041 0.499148 0.880596 0.502336 0.879273 0.498323 0.88105 0.500691 0.879461 0.49739 0.881414 0.498833 0.879595 0.496393 0.881685 0.496848 0.879673 0.495381 0.881831 0.494834 0.879688 0.4944 0.881855 0.492886 0.879641 0.493495 0.881754 0.491093 0.879517 0.492692 0.881496 0.489502 0.879256 0.49199 0.880966 0.488128 0.878724 0.491679 0.879976 0.487255 0.880441 0.487544 0.878985 0.491764 0.880259 0.509816 0.879427 0.510054 0.881118 0.508941 0.881951 0.507469 0.882719 0.50547 0.883385 0.503037 0.883918 0.500283 0.884295 0.497337 0.884501 0.494341 0.884524 0.491438 0.884373 0.488781 0.883999 0.486461 0.88321 0.484429 0.882394 0.483424 0.882124 0.514208 0.881033 0.51452 0.883251 0.513061 0.884343 0.511133 0.885349 0.508513 0.886222 0.505324 0.886921 0.501715 0.887414 0.497854 0.887677 0.493924 0.887702 0.490113 0.887496 0.486645 0.88698 0.48361 0.885938 0.48091 0.884878 0.479558 0.884506 0.51838 0.88317 0.518762 0.885883 0.516979 0.887217 0.514621 0.888447 0.511419 0.889514 0.507521 0.890369 0.503109 0.890971 0.49839 0.891293 0.493586 0.89132 0.488919 0.891054 0.484665 0.890395 0.481066 0.88919 0.477958 0.887817 0.476052 0.887367 0.522273 0.885807 0.522719 0.888975 0.520637 0.890533 0.517885 0.891968 0.514147 0.893214 0.509596 0.894212 0.504446 0.894915 0.498938 0.895291 0.493329 0.895322 0.487882 0.895 0.482915 0.894205 0.478779 0.892842 0.475169 0.891068 0.473073 0.890668 0.525829 0.888906 0.526332 0.892483 0.523982 0.894241 0.520876 0.895861 0.516656 0.897267 0.51152 0.898394 0.505707 0.899187 0.499489 0.899612 0.493158 0.899646 0.487009 0.899286 0.481354 0.898411 0.476638 0.894359 0.528996 0.892421 0.529549 0.896354 0.526965 0.898288 0.52355 0.900069 0.518911 0.901615 0.513263 0.902854 0.506872 0.903726 0.500036 0.904193 0.493075 0.904231 0.486314 0.903834 0.4801 0.902975 0.47504 0.898388 0.531728 0.896302 0.532323 0.900534 0.529543 0.902614 0.525869 0.904531 0.520877 0.906194 0.514801 0.907527 0.507925 0.908466 0.50057 0.908967 0.493081 0.909009 0.485806 0.908572 0.479151 0.907654 0.473824 0.902694 0.533986 0.900491 0.534614 0.90496 0.531679 0.907157 0.527799 0.909181 0.522528 0.910937 0.516111 0.912345 0.50885 0.913336 0.501084 0.913866 0.493175 0.913909 0.485494 0.91346 0.478418 0.912585 0.472851 0.907215 0.535736 0.904927 0.536388 0.909569 0.53334 0.91185 0.529311 0.913952 0.523838 0.915776 0.517175 0.917237 0.509635 0.918266 0.50157 0.918854 0.493342 0.918947 0.485357 0.91844 0.478006 0.91787 0.471971 0.914263 0.537286 0.911914 0.537955 0.916678 0.534827 0.919019 0.530693 0.921175 0.525076 0.923047 0.518239 0.924546 0.510502 0.925585 0.502224 0.926227 0.493754 0.926493 0.485583 0.925762 0.478045 0.924764 0.471485 0.921403 0.537724 0.919062 0.538392 0.92381 0.535275 0.926142 0.531156 0.930338 0.525761 0.93162 0.519674 0.933283 0.512932 0.932692 0.502839 0.933977 0.494768 0.934333 0.486371 0.933206 0.478784 0.931863 0.472204 0.92611 0.537268 0.92382 0.53792 0.928464 0.534872 0.932388 0.530343 0.937335 0.506755 0.941235 0.498334 0.941521 0.487989 0.940371 0.480184 0.938481 0.473907 0.930691 0.536256 0.928485 0.536884 0.934789 0.533043 0.935078 0.534703 0.932989 0.535298 0.938368 0.532576 0.947164 0.489068 0.947066 0.497764 0.946239 0.481893 0.944283 0.476284 0.939209 0.532632 0.937267 0.533185 0.941919 0.530982 0.950689 0.490156 0.950271 0.497772 0.95034 0.48345 0.948203 0.478162 0.943023 0.530074 0.941256 0.530577 0.945589 0.528338 0.95349 0.491089 0.952472 0.498024 0.953154 0.485389 0.951415 0.480527 0.946464 0.527065 0.944898 0.52751 0.948879 0.525086 0.955336 0.498108 0.955494 0.49227 0.955142 0.488211 0.954263 0.484425 0.949389 0.475505 0.954052 0.482326 0.94757 0.475109 0.945693 0.473082 0.943613 0.471998 0.950577 0.521636 0.949187 0.522238 0.951775 0.520708 0.950886 0.519379 0.952605 0.518141 0.95447 0.515316 0.952742 0.516616 0.878125 0.495997 0.943537 0.514246 0.944979 0.511457 0.945299 0.511731 0.944004 0.514141 0.946866 0.510467 0.945612 0.512005 0.946775 0.509925 0.944125 0.524447 0.943125 0.523168 0.943363 0.52176 0.944265 0.522893 0.943213 0.51865 0.9436 0.520352 0.942839 0.519741 0.942465 0.520831 0.942508 0.517563 0.943036 0.516979 0.944472 0.514036 0.943564 0.516394 0.946664 0.509365 0.948503 0.507957 0.948316 0.508687 0.949207 0.508705 0.948096 0.509397 0.949608 0.50791 0.950009 0.507096 0.951195 0.506751 0.950679 0.507606 0.951005 0.508659 0.950161 0.508443 0.951647 0.507843 0.952323 0.510866 0.951744 0.509448 0.952587 0.5089 0.953318 0.510638 0.952296 0.507042 0.953444 0.508317 0.954198 0.510416 0.954069 0.512878 0.953344 0.512779 0.95222 0.51488 0.952538 0.512757 0.952777 0.515115 0.953314 0.515413 0.952001 0.51802 0.951641 0.517475 0.949848 0.518868 0.951263 0.516984 0.950071 0.519673 0.950291 0.520481 0.948367 0.522605 0.94826 0.52146 0.946642 0.521256 0.948152 0.520315 0.946704 0.522693 0.946766 0.524131 0.94537 0.524785 0.945389 0.52319 0.944404 0.521338 0.945409 0.521595 0.948517 0.508521 0.947425 0.509189 0.946164 0.510225 0.943731 0.513771 0.942852 0.515989 0.942484 0.51808 0.944874 0.511783 0.950283 0.508511 0.949456 0.508269 0.942699 0.51973 0.943487 0.520694 0.951552 0.510694 0.95099 0.509314 0.944633 0.521012 0.946034 0.520645 0.951461 0.514432 0.951791 0.512457 0.947604 0.519694 0.949207 0.518265 0.95053 0.516413 0.954352 0.507334 0.955064 0.51004 0.953029 0.50566 0.954691 0.513093 0.953563 0.516187 0.942931 0.511155 0.945738 0.50837 0.941124 0.514785 0.948237 0.525023 0.946042 0.527051 0.950358 0.522206 0.940778 0.525984 0.939919 0.523165 0.942236 0.527579 0.940031 0.519157 0.94836 0.506655 0.95038 0.505668 0.951792 0.505283 0.952106 0.519194 0.94408 0.527997 0.955136 0.505085 0.955458 0.508799 0.953996 0.503048 0.954947 0.51289 0.953571 0.516724 0.940392 0.509704 0.943959 0.505926 0.937487 0.514053 0.946965 0.527152 0.943743 0.529685 0.949863 0.52392 0.936263 0.528363 0.934831 0.524989 0.938515 0.530358 0.93544 0.520327 0.947235 0.504116 0.949823 0.503295 0.952034 0.502955 0.951882 0.52041 0.941028 0.53079 0.956255 0.501869 0.956376 0.507194 0.955436 0.512282 0.95378 0.516679 0.954272 0.512902 0.953969 0.514386 0.955477 0.513065 0.955509 0.511632 0.956562 0.510151 0.957541 0.50583 0.957528 0.506237 0.957401 0.500104 0.957323 0.498901 0.956684 0.496896 0.956413 0.492938 0.956425 0.492794 0.955922 0.48933 0.955605 0.489791 0.952251 0.480529 0.95403 0.483685 0.955302 0.484788 0.955335 0.486204 0.955539 0.486154 0.954877 0.485325 0.956687 0.508947 0.956754 0.495687 0.955045 0.487387 0.877848 0.505182 0.877652 0.500582 0.87737 0.504506 0.877412 0.500243 0.876974 0.503437 0.877218 0.499703 0.87668 0.502023 0.877063 0.498994 0.876501 0.50033 0.876979 0.498142 0.876446 0.498438 0.87696 0.497191 0.876522 0.496436 0.877006 0.496186 0.876728 0.49442 0.877115 0.495174 0.877054 0.492488 0.877281 0.494204 0.877479 0.49073 0.877498 0.49332 0.877999 0.489197 0.877767 0.492546 0.878719 0.487808 0.878144 0.491879 0.879235 0.487423 0.878402 0.491725 0.878643 0.509686 0.877934 0.508686 0.877348 0.507101 0.876912 0.505005 0.876647 0.502497 0.876565 0.499694 0.876669 0.496727 0.876956 0.493734 0.877416 0.490859 0.878045 0.488251 0.878803 0.485988 0.879891 0.48389 0.880652 0.483253 0.880004 0.514038 0.879075 0.512727 0.878307 0.510649 0.877736 0.507903 0.877388 0.504616 0.87728 0.500942 0.877417 0.497054 0.877793 0.493132 0.878389 0.48936 0.879214 0.485947 0.880199 0.482989 0.881623 0.480314 0.882641 0.479405 0.881911 0.518172 0.880775 0.516569 0.879836 0.51403 0.879138 0.510673 0.878713 0.506655 0.878582 0.502165 0.878749 0.497412 0.879208 0.492618 0.879955 0.488021 0.881001 0.483899 0.88231 0.480367 0.883909 0.47731 0.885135 0.475926 0.884336 0.52203 0.883011 0.520159 0.881915 0.517195 0.8811 0.513276 0.880604 0.508586 0.88045 0.503344 0.880646 0.497795 0.881181 0.492199 0.882059 0.48684 0.883257 0.482017 0.884772 0.477872 0.886828 0.474331 0.888116 0.472377 0.887245 0.525554 0.885749 0.523442 0.884512 0.520096 0.883592 0.515673 0.883032 0.510379 0.882858 0.504462 0.883079 0.498199 0.883683 0.491882 0.884656 0.485819 0.885976 0.480334 0.887771 0.475644 0.888962 0.472096 0.890594 0.528694 0.888949 0.526372 0.887589 0.522693 0.886578 0.51783 0.885962 0.512009 0.885771 0.505504 0.886014 0.498617 0.886678 0.491672 0.887734 0.484992 0.889161 0.478945 0.891005 0.474124 0.894335 0.531403 0.892565 0.528905 0.891102 0.524947 0.890014 0.519714 0.889351 0.513452 0.889146 0.506453 0.889407 0.499043 0.890122 0.491571 0.891258 0.484384 0.892815 0.477978 0.894695 0.473363 0.898413 0.533643 0.896544 0.531004 0.894999 0.526825 0.89385 0.5213 0.893151 0.514687 0.892934 0.507295 0.893209 0.499472 0.893965 0.491581 0.895164 0.483992 0.89686 0.477387 0.898865 0.473076 0.902769 0.53538 0.900829 0.53264 0.899224 0.5283 0.898031 0.522562 0.897305 0.515695 0.897079 0.50802 0.897366 0.499895 0.89815 0.491701 0.899396 0.483821 0.901449 0.477074 0.903819 0.472976 0.909699 0.53692 0.907707 0.534109 0.906061 0.529655 0.904836 0.523767 0.904091 0.516721 0.90386 0.508844 0.904153 0.500507 0.904958 0.492099 0.906237 0.484012 0.908008 0.477129 0.910034 0.473198 0.916854 0.53736 0.91487 0.534559 0.91323 0.530122 0.914164 0.524465 0.913164 0.518196 0.913437 0.51134 0.91133 0.50108 0.912131 0.492703 0.913405 0.484646 0.91513 0.47783 0.916994 0.473623 0.92166 0.536911 0.919719 0.534172 0.91917 0.529284 0.917172 0.505296 0.919838 0.496406 0.920904 0.486229 0.92238 0.479225 0.924263 0.474614 0.926405 0.535913 0.924828 0.532245 0.931019 0.534378 0.929686 0.53188 0.92797 0.487724 0.927599 0.495894 0.929366 0.480734 0.931925 0.475167 0.935435 0.53233 0.934387 0.530379 0.933232 0.488977 0.932764 0.496065 0.934736 0.482159 0.937602 0.476887 0.93959 0.529799 0.938848 0.527798 0.937731 0.490249 0.936964 0.496523 0.939215 0.484123 0.942421 0.479379 0.943421 0.526821 0.942722 0.524593 0.94207 0.497013 0.942329 0.491435 0.943599 0.487511 0.946933 0.482758 0.949756 0.480976 0.945342 0.476815 0.940652 0.473783 0.947564 0.521395 0.9466 0.520277 0.951324 0.514898 0.949518 0.517928 0.928377 0.510114 0.926885 0.51291 0.927854 0.512845 0.929178 0.51043 0.92998 0.510746 0.931406 0.509225 0.930823 0.508639 0.92835 0.521984 0.930534 0.523359 0.930891 0.521821 0.928964 0.520607 0.929579 0.519229 0.928441 0.517467 0.927597 0.51852 0.926179 0.516255 0.926753 0.519573 0.927195 0.51571 0.928211 0.515165 0.928823 0.512781 0.932374 0.506682 0.930239 0.508053 0.932657 0.507439 0.93294 0.508196 0.934517 0.507536 0.93451 0.506707 0.936567 0.505592 0.934502 0.505878 0.936317 0.506456 0.936067 0.50732 0.937546 0.507578 0.93807 0.506748 0.938901 0.508422 0.940036 0.50988 0.941088 0.509726 0.939772 0.507879 0.940713 0.507314 0.938594 0.505926 0.942911 0.511998 0.942269 0.509491 0.941755 0.511888 0.940774 0.511818 0.940867 0.513981 0.941724 0.514237 0.941696 0.517149 0.942674 0.514592 0.940898 0.516619 0.940099 0.51609 0.938667 0.517973 0.939267 0.518807 0.937547 0.521739 0.939868 0.519641 0.937153 0.52057 0.936759 0.519402 0.934851 0.520311 0.935057 0.52176 0.932933 0.523788 0.935263 0.523209 0.932985 0.522196 0.933038 0.520604 0.931248 0.520284 0.932573 0.508007 0.934161 0.507367 0.930964 0.509008 0.927841 0.514787 0.928411 0.512543 0.928106 0.516928 0.929515 0.510546 0.935671 0.507169 0.937081 0.507438 0.929093 0.51864 0.93071 0.519671 0.938351 0.508298 0.9394 0.509723 0.932552 0.520045 0.934434 0.519715 0.940079 0.511519 0.940113 0.513519 0.936336 0.518792 0.938116 0.517377 0.939405 0.515521 0.943638 0.508965 0.941943 0.506311 0.939071 0.504531 0.94388 0.51543 0.944335 0.512165 0.927944 0.506963 0.925069 0.509715 0.923231 0.513349 0.935271 0.526189 0.938229 0.524222 0.940839 0.521447 0.923484 0.521848 0.925731 0.524779 0.928789 0.526502 0.922597 0.517761 0.93396 0.504385 0.931029 0.505302 0.936534 0.504088 0.942769 0.518413 0.932116 0.527039 0.945351 0.507568 0.943089 0.503744 0.939896 0.502018 0.945354 0.516015 0.946118 0.511811 0.925289 0.504712 0.920962 0.50815 0.918385 0.51252 0.934537 0.528948 0.938552 0.526478 0.941809 0.523283 0.918305 0.523665 0.921702 0.527196 0.925959 0.529352 0.917212 0.518867 0.933078 0.501722 0.929349 0.502508 0.936447 0.501609 0.943896 0.519878 0.930309 0.529931 0.948005 0.505607 0.944871 0.499392 0.947806 0.516062 0.9491 0.511191 0.953215 0.511264 0.952698 0.512701 0.951135 0.50884 0.950868 0.504414 0.946032 0.497811 0.946155 0.49879 0.9504 0.504692 0.944108 0.496015 0.944681 0.492183 0.945966 0.489086 0.945497 0.488606 0.944291 0.491984 0.951345 0.48426 0.948386 0.485293 0.952907 0.485943 0.952013 0.507755 0.944606 0.494766 0.94856 0.486751 0.889967 0.448966 0.879572 0.4873 0.878531 0.491695 0.881189 0.483034 0.883359 0.479059 0.88597 0.475436 0.826451 0.427416 0.889758 0.472115 0.881748 0.482959 0.884054 0.478968 0.886811 0.475429 0.942835 0.472365 0.877975 0.397658 0.883515 0.397651 0.873951 0.397664 0.870831 0.397671 0.867889 0.397674 0.918562 0.397639 0.925482 0.397634 0.901603 0.397646 0.909465 0.397642 0.891034 0.397645 0.929288 0.397637 0.894812 0.397645 0.931273 0.397662 0.86549 0.397668 0.931235 0.397655 0.882529 0.39765 0.877003 0.397658 0.871595 0.397671 0.868659 0.397671 0.868707 0.397667 0.925845 0.397644 0.918784 0.397657 0.909614 0.397666 0.901249 0.39767 0.890498 0.397656 0.92961 0.397643 0.894099 0.397656 0.867711 0.397671 0.900103 0.397679 0.595916 0.679782 0.593633 0.724091 0.587548 0.772055 0.579229 0.819401 0.570764 0.860428 0.56898 0.893979 0.055194 0.327681 0.056512 0.244825 0.056323 0.176259 0.056343 0.11532 0.057144 0.041836 0.468306 0.320445 0.459246 0.232082 0.470583 0.402538 0.456894 0.171519 0.044392 0.51728 0.04804 0.442488 0.039555 0.560029 0.472222 0.467543 0.655545 0.572596 0.685594 0.967391 0.590033 0.92387 0.595756 0.680499 0.590769 0.76975 0.682275 0.551691 0.647404 0.965201 0.571758 0.851938 0.600135 0.64164 0.623018 0.605621 0.617347 0.944413 0.720327 0.535205</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4212\" name=\"\" material=\"blinn3SG\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">89 0 23 243 1 26 6 3 29 6 3 29 243 1 26 90 2 28 243 1 26 89 0 23 91 4 30 91 4 30 89 0 23 5 5 31 92 6 33 244 7 35 5 5 31 5 5 31 244 7 35 91 4 30 244 7 35 92 6 33 299 8 36 299 8 36 92 6 33 218 9 37 95 11 41 93 12 42 7 10 39 7 10 39 93 12 42 8 13 57 93 12 42 95 11 41 9 15 62 9 15 62 95 11 41 94 14 61 245 17 66 89 0 23 96 16 65 96 16 65 89 0 23 6 3 29 89 0 23 245 17 66 5 5 31 5 5 31 245 17 66 97 18 67 245 17 66 98 19 68 97 18 67 97 18 67 98 19 68 11 20 69 98 19 68 245 17 66 10 21 70 10 21 70 245 17 66 96 16 65 246 22 71 92 6 33 97 18 67 97 18 67 92 6 33 5 5 31 92 6 33 246 22 71 218 9 37 218 9 37 246 22 71 300 23 72 246 22 71 99 24 84 300 23 72 300 23 72 99 24 84 219 25 85 99 24 84 246 22 71 11 20 69 11 20 69 246 22 71 97 18 67 247 27 89 93 12 42 12 26 86 12 26 86 93 12 42 9 15 62 93 12 42 247 27 89 8 13 57 8 13 57 247 27 89 100 28 90 102 30 137 101 31 138 13 29 135 13 29 135 101 31 138 14 32 139 101 31 138 102 30 137 8 13 57 8 13 57 102 30 137 7 10 39 248 34 141 98 19 68 103 33 140 103 33 140 98 19 68 10 21 70 98 19 68 248 34 141 11 20 69 11 20 69 248 34 141 104 35 142 248 34 141 105 36 200 104 35 142 104 35 142 105 36 200 16 37 246 105 36 200 248 34 141 15 38 249 15 38 249 248 34 141 103 33 140 107 39 252 101 31 138 100 28 90 100 28 90 101 31 138 8 13 57 101 31 138 107 39 252 14 32 139 14 32 139 107 39 252 106 40 253 108 41 254 109 42 256 14 32 139 14 32 139 109 42 256 13 29 135 109 42 256 108 41 254 18 43 259 18 43 259 108 41 254 17 44 260 111 45 262 108 41 254 106 40 253 106 40 253 108 41 254 14 32 139 108 41 254 111 45 262 17 44 260 17 44 260 111 45 262 110 46 265 20 47 266 112 48 283 19 50 286 19 50 286 112 48 283 113 49 285 113 49 285 112 48 283 17 44 260 17 44 260 112 48 283 18 43 259 115 51 289 113 49 285 110 46 265 110 46 265 113 49 285 17 44 260 115 51 289 114 52 290 113 49 285 113 49 285 114 52 290 19 50 286 22 53 291 116 54 292 21 56 294 21 56 294 116 54 292 117 55 293 116 54 292 20 47 266 117 55 293 117 55 293 20 47 266 19 50 286 114 52 290 119 57 295 19 50 286 19 50 286 119 57 295 117 55 293 119 57 295 118 58 296 117 55 293 117 55 293 118 58 296 21 56 294 23 59 297 249 60 298 24 62 303 24 62 303 249 60 298 120 61 300 249 60 298 22 53 291 120 61 300 120 61 300 22 53 291 21 56 294 118 58 296 122 63 304 21 56 294 21 56 294 122 63 304 120 61 300 122 63 304 121 64 884 120 61 300 120 61 300 121 64 884 24 62 303 26 65 885 339 66 886 123 68 888 123 68 888 339 66 886 340 67 887 123 68 888 340 67 887 28 70 890 28 70 890 340 67 887 341 69 889 340 67 887 124 71 891 341 69 889 341 69 889 124 71 891 27 72 892 124 71 891 340 67 887 25 73 893 25 73 893 340 67 887 339 66 886 250 75 895 307 76 896 125 74 894 125 74 894 307 76 896 29 77 897 307 76 896 250 75 895 227 79 899 227 79 899 250 75 895 126 78 898 250 75 895 123 68 888 126 78 898 126 78 898 123 68 888 28 70 890 123 68 888 250 75 895 26 65 885 26 65 885 250 75 895 125 74 894 126 78 898 127 80 900 227 79 899 227 79 899 127 80 900 45 81 901 126 78 898 28 70 890 127 80 900 127 80 900 28 70 890 30 82 902 128 83 0 251 84 1 31 86 3 31 86 3 251 84 1 308 85 2 308 85 74 251 84 75 228 88 77 228 88 77 251 84 75 129 87 76 251 84 75 130 89 78 129 87 76 129 87 76 130 89 78 33 90 79 251 84 1 128 83 0 130 89 4 130 89 4 128 83 0 32 91 12 131 92 13 252 93 14 34 95 16 34 95 16 252 93 14 309 94 15 252 93 14 128 83 0 309 94 15 309 94 15 128 83 0 31 86 3 128 83 0 252 93 14 32 91 12 32 91 12 252 93 14 132 96 17 252 93 14 131 92 13 132 96 17 132 96 17 131 92 13 35 97 18 133 98 82 253 99 83 35 97 18 35 97 18 253 99 83 132 96 17 253 99 83 134 100 91 132 96 17 132 96 17 134 100 91 32 91 12 134 100 91 253 99 83 36 102 93 36 102 93 253 99 83 156 101 92 253 99 83 133 98 82 156 101 92 156 101 92 133 98 82 38 103 94 135 104 96 254 105 97 39 107 101 39 107 101 254 105 97 136 106 98 136 106 98 254 105 97 37 109 105 37 109 105 254 105 97 137 108 102 254 105 97 133 98 82 137 108 102 137 108 102 133 98 82 35 97 18 254 105 97 135 104 96 133 98 82 133 98 82 135 104 96 38 103 94 255 110 903 99 24 84 104 35 142 104 35 142 99 24 84 11 20 69 99 24 84 255 110 903 219 25 85 219 25 85 255 110 903 310 111 904 255 110 903 138 112 905 310 111 904 310 111 904 138 112 905 1978 113 906 138 112 905 255 110 903 16 37 246 16 37 246 255 110 903 104 35 142 204 114 5 285 115 6 59 117 8 59 117 8 285 115 6 139 116 7 285 115 6 203 118 9 139 116 7 139 116 7 203 118 9 57 119 10 105 36 200 256 120 907 16 37 246 16 37 246 256 120 907 140 121 908 256 120 907 135 104 909 140 121 908 140 121 908 135 104 909 39 107 910 135 104 909 256 120 907 38 103 912 38 103 912 256 120 907 141 122 911 256 120 907 105 36 200 141 122 911 141 122 911 105 36 200 15 38 249 138 112 905 257 123 913 1978 113 906 1978 113 906 257 123 913 142 124 914 257 123 913 154 125 915 142 124 914 142 124 914 154 125 915 229 126 916 154 125 915 257 123 913 39 107 910 39 107 910 257 123 913 140 121 908 257 123 913 138 112 905 140 121 908 140 121 908 138 112 905 16 37 246 284 128 19 202 129 20 143 127 11 143 127 11 202 129 20 60 130 21 203 118 9 284 128 19 57 119 10 57 119 10 284 128 19 143 127 11 56 132 918 2065 133 919 144 131 917 144 131 917 2065 133 919 2066 134 920 311 135 921 258 136 922 29 77 897 29 77 897 258 136 922 125 74 894 258 136 922 145 137 923 125 74 894 125 74 894 145 137 923 26 65 885 145 137 80 258 136 81 40 139 99 40 139 99 258 136 81 146 138 95 258 136 81 311 135 100 146 138 95 146 138 95 311 135 100 41 140 103 43 141 924 147 142 925 42 144 927 42 144 927 147 142 925 148 143 926 147 142 925 23 59 297 148 143 926 148 143 926 23 59 297 24 62 303 149 145 928 259 146 929 25 73 893 25 73 893 259 146 929 124 71 891 259 146 929 150 147 976 124 71 891 124 71 891 150 147 976 27 72 892 150 147 976 259 146 929 43 141 924 43 141 924 259 146 929 147 142 925 259 146 929 149 145 928 147 142 925 147 142 925 149 145 928 23 59 297 121 64 884 152 148 978 24 62 303 24 62 303 152 148 978 148 143 926 152 148 978 151 149 980 148 143 926 148 143 926 151 149 980 42 144 927 231 150 981 30 82 902 341 69 889 341 69 889 30 82 902 28 70 890 341 69 889 27 72 892 231 150 981 231 150 981 27 72 892 44 151 982 153 152 104 260 153 106 33 90 79 33 90 79 260 153 106 129 87 76 260 153 106 312 154 107 129 87 76 129 87 76 312 154 107 228 88 77 312 154 107 260 153 106 41 140 103 41 140 103 260 153 106 146 138 95 260 153 106 153 152 104 146 138 95 146 138 95 153 152 104 40 139 99 154 125 110 261 155 111 229 126 113 229 126 113 261 155 111 313 156 112 261 155 111 155 157 114 313 156 112 313 156 112 155 157 114 230 158 115 155 157 114 261 155 111 37 109 105 37 109 105 261 155 111 136 106 98 261 155 111 154 125 110 136 106 98 136 106 98 154 125 110 39 107 101 262 159 108 181 160 109 153 152 104 153 152 104 181 160 109 40 139 99 181 160 116 262 159 117 36 102 93 36 102 93 262 159 117 134 100 91 262 159 117 130 89 4 134 100 91 134 100 91 130 89 4 32 91 12 130 89 78 262 159 108 33 90 79 33 90 79 262 159 108 153 152 104 137 108 102 263 161 118 37 109 105 37 109 105 263 161 118 155 157 114 155 157 114 263 161 118 230 158 115 230 158 115 263 161 118 314 162 119 263 161 118 131 92 13 314 162 119 314 162 119 131 92 13 34 95 16 131 92 13 263 161 118 35 97 18 35 97 18 263 161 118 137 108 102 151 149 980 241 163 983 42 144 927 42 144 927 241 163 983 157 164 985 241 163 983 242 165 987 157 164 985 157 164 985 242 165 987 83 166 1012 264 168 1016 160 169 1017 159 167 1013 159 167 1013 160 169 1017 44 151 982 160 169 1017 264 168 1016 81 171 1019 81 171 1019 264 168 1016 239 170 1018 264 168 1016 238 172 1020 239 170 1018 239 170 1018 238 172 1020 82 173 1023 238 172 1020 264 168 1016 43 141 924 43 141 924 264 168 1016 159 167 1013 82 173 1023 238 172 1020 83 166 1012 83 166 1012 238 172 1020 157 164 985 157 164 985 238 172 1020 42 144 927 42 144 927 238 172 1020 43 141 924 160 169 1017 265 174 1036 44 151 982 44 151 982 265 174 1036 231 150 981 265 174 1036 232 175 1038 231 150 981 231 150 981 232 175 1038 30 82 902 232 175 1038 265 174 1036 80 177 1040 80 177 1040 265 174 1036 237 176 1039 265 174 1036 160 169 1017 237 176 1039 237 176 1039 160 169 1017 81 171 1019 163 178 1041 164 179 1042 94 14 61 94 14 61 164 179 1042 9 15 62 165 180 1043 266 181 1045 46 183 1047 46 183 1047 266 181 1045 166 182 1046 266 181 1045 163 178 1041 166 182 1046 166 182 1046 163 178 1041 94 14 61 288 184 1048 207 185 1049 90 2 28 90 2 28 207 185 1049 6 3 29 164 179 1042 167 186 1050 9 15 62 9 15 62 167 186 1050 12 26 86 267 187 1051 168 188 1052 166 182 1046 166 182 1046 168 188 1052 46 183 1047 168 188 1052 267 187 1051 47 190 1054 47 190 1054 267 187 1051 169 189 1053 267 187 1051 95 11 41 169 189 1053 169 189 1053 95 11 41 7 10 39 95 11 41 267 187 1051 94 14 61 94 14 61 267 187 1051 166 182 1046 207 185 1049 287 191 1055 6 3 29 6 3 29 287 191 1055 96 16 65 287 191 1055 206 192 1056 96 16 65 96 16 65 206 192 1056 10 21 70 170 193 22 268 194 2246 63 196 25 63 196 25 268 194 2246 171 195 24 268 194 2246 172 197 2247 171 195 24 171 195 24 172 197 2247 58 198 27 268 194 1058 173 199 1059 172 197 1057 172 197 1057 173 199 1059 64 200 1060 173 199 1059 268 194 1058 62 201 1062 62 201 1062 268 194 1058 170 193 1061 172 197 2247 269 202 2248 58 198 27 58 198 27 269 202 2248 174 203 32 174 203 32 269 202 2248 61 205 34 61 205 34 269 202 2248 175 204 2249 175 204 1063 269 202 1064 65 207 1066 65 207 1066 269 202 1064 176 206 1065 269 202 1064 172 197 1057 176 206 1065 176 206 1065 172 197 1057 64 200 1060 270 208 2250 177 209 38 175 204 2249 175 204 2249 177 209 38 61 205 34 177 209 38 270 208 2250 66 211 40 66 211 40 270 208 2250 178 210 2251 178 210 1067 270 208 1068 67 213 1070 67 213 1070 270 208 1068 179 212 1069 270 208 1068 175 204 1063 179 212 1069 179 212 1069 175 204 1063 65 207 1066 271 215 1072 149 145 928 180 214 1071 180 214 1071 149 145 928 25 73 893 149 145 928 271 215 1072 23 59 297 23 59 297 271 215 1072 249 60 298 271 215 1072 48 216 1073 249 60 298 249 60 298 48 216 1073 22 53 291 150 147 976 159 167 1013 27 72 892 27 72 892 159 167 1013 44 151 982 159 167 1013 150 147 976 43 141 924 48 216 1073 272 217 1074 22 53 291 22 53 291 272 217 1074 116 54 292 272 217 1074 49 218 1075 116 54 292 116 54 292 49 218 1075 20 47 266 49 218 1075 273 219 1076 20 47 266 20 47 266 273 219 1076 112 48 283 112 48 283 273 219 1076 18 43 259 18 43 259 273 219 1076 50 220 1077 274 221 1078 109 42 256 50 220 1077 50 220 1077 109 42 256 18 43 259 109 42 256 274 221 1078 13 29 135 13 29 135 274 221 1078 51 222 1079 275 223 1080 52 224 1081 169 189 1053 169 189 1053 52 224 1081 47 190 1054 275 223 1080 102 30 137 51 222 1079 51 222 1079 102 30 137 13 29 135 102 30 137 275 223 1080 7 10 39 7 10 39 275 223 1080 169 189 1053 206 192 1056 286 225 1082 10 21 70 10 21 70 286 225 1082 103 33 140 286 225 1082 53 226 1083 103 33 140 103 33 140 53 226 1083 15 38 249 53 226 1083 276 227 1084 15 38 249 15 38 249 276 227 1084 141 122 911 276 227 1084 54 228 1085 141 122 911 141 122 911 54 228 1085 38 103 912 277 229 1087 55 230 1088 156 101 1086 156 101 1086 55 230 1088 36 102 1089 54 228 1085 277 229 1087 38 103 912 38 103 912 277 229 1087 156 101 1086 182 231 1090 181 160 1091 55 230 1088 55 230 1088 181 160 1091 36 102 1089 181 160 1091 182 231 1090 40 139 1092 40 139 1092 182 231 1090 56 132 918 283 232 43 183 233 44 202 129 20 202 129 20 183 233 44 60 130 21 201 234 45 68 235 46 283 232 43 283 232 43 68 235 46 183 233 44 144 131 917 145 137 923 56 132 918 56 132 918 145 137 923 40 139 1092 321 236 1093 339 66 886 144 131 917 339 66 886 26 65 885 144 131 917 144 131 917 26 65 885 145 137 923 2069 237 1094 2070 238 1095 276 227 1084 276 227 1084 2070 238 1095 54 228 1085 290 239 47 208 240 48 278 242 50 278 242 50 208 240 48 184 241 49 210 243 51 290 239 47 185 244 52 185 244 52 290 239 47 278 242 50 2068 245 1096 2069 237 1094 53 226 1083 53 226 1083 2069 237 1094 276 227 1084 2071 246 1097 2073 247 1098 277 229 1087 277 229 1087 2073 247 1098 55 230 1088 289 248 53 209 249 54 279 251 56 279 251 56 209 249 54 186 250 55 208 240 48 289 248 53 184 241 49 184 241 49 289 248 53 279 251 56 2070 238 1095 2071 246 1097 54 228 1085 54 228 1085 2071 246 1097 277 229 1087 275 223 1080 2075 252 1099 52 224 1081 52 224 1081 2075 252 1099 2076 253 1100 212 255 58 2053 256 59 294 254 2265 294 254 2265 2053 256 59 280 257 60 294 254 1102 280 257 1103 214 258 1101 214 258 1101 280 257 1103 187 259 1104 2075 252 1099 275 223 1080 2074 260 1105 2074 260 1105 275 223 1080 51 222 1079 2072 261 1106 2068 245 1096 286 225 1082 286 225 1082 2068 245 1096 53 226 1083 292 262 63 210 243 51 2052 263 64 2052 263 64 210 243 51 185 244 52 274 221 1078 2078 264 1107 51 222 1079 51 222 1079 2078 264 1107 2074 260 1105 214 258 1101 187 259 1104 293 265 1108 293 265 1108 187 259 1104 2055 266 1109 293 265 1108 2055 266 1109 213 267 1110 213 267 1110 2055 266 1109 188 268 1111 2078 264 1107 274 221 1078 2079 269 1112 2079 269 1112 274 221 1078 50 220 1077 273 219 1076 2080 270 1113 50 220 1077 50 220 1077 2080 270 1113 2079 269 1112 213 267 1110 188 268 1111 295 271 1114 295 271 1114 188 268 1111 2056 272 1115 215 273 1116 295 271 1114 189 274 1117 189 274 1117 295 271 1114 2056 272 1115 2081 275 1118 2080 270 1113 49 218 1075 49 218 1075 2080 270 1113 273 219 1076 2084 276 1119 2085 277 1120 271 215 1072 271 215 1072 2085 277 1120 48 216 1073 297 278 1121 216 279 1122 281 281 1124 281 281 1124 216 279 1122 190 280 1123 217 282 87 297 278 73 191 283 88 191 283 88 297 278 73 281 281 2271 2083 284 1125 2084 276 1119 180 214 1071 180 214 1071 2084 276 1119 271 215 1072 2082 285 1126 2081 275 1118 272 217 1074 272 217 1074 2081 275 1118 49 218 1075 296 286 1127 215 273 1116 2057 287 1128 2057 287 1128 215 273 1116 189 274 1117 216 279 1122 296 286 1127 190 280 1123 190 280 1123 296 286 1127 2057 287 1128 2085 277 1120 2082 285 1126 48 216 1073 48 216 1073 2082 285 1126 272 217 1074 182 231 1090 2064 288 1129 56 132 918 56 132 918 2064 288 1129 2065 133 919 211 290 121 2051 291 122 291 289 120 291 289 120 2051 291 122 2050 292 123 291 289 120 2050 292 123 209 249 54 209 249 54 2050 292 123 186 250 55 2064 288 1129 182 231 1090 2073 247 1098 2073 247 1098 182 231 1090 55 230 1088 298 293 124 282 294 125 211 290 121 211 290 121 282 294 125 2051 291 122 323 295 126 322 296 127 298 293 124 298 293 124 322 296 127 282 294 125 70 297 128 192 298 129 57 119 10 57 119 10 192 298 129 139 116 7 59 117 8 139 116 7 71 299 130 71 299 130 139 116 7 192 298 129 69 300 131 193 301 132 60 130 21 60 130 21 193 301 132 143 127 11 57 119 10 143 127 11 70 297 128 70 297 128 143 127 11 193 301 132 194 303 134 170 193 22 73 302 133 73 302 133 170 193 22 63 196 25 170 193 1061 194 303 1130 62 201 1062 62 201 1062 194 303 1130 74 304 1131 71 299 130 205 305 136 59 117 8 59 117 8 205 305 136 204 114 5 62 201 1062 74 304 1131 173 199 1059 173 199 1059 74 304 1131 195 306 1132 173 199 1059 195 306 1132 64 200 1060 64 200 1060 195 306 1132 75 307 1133 64 200 1060 75 307 1133 176 206 1065 176 206 1065 75 307 1133 196 308 1134 65 207 1066 176 206 1065 76 309 1135 76 309 1135 176 206 1065 196 308 1134 77 310 1136 197 311 1137 67 213 1070 67 213 1070 197 311 1137 178 210 1067 66 211 40 178 210 2251 78 312 143 78 312 143 178 210 2251 197 311 2267 76 309 1135 198 313 1138 65 207 1066 65 207 1066 198 313 1138 179 212 1069 67 213 1070 179 212 1069 77 310 1136 77 310 1136 179 212 1069 198 313 1138 199 315 202 183 233 44 72 314 201 72 314 201 183 233 44 68 235 46 69 300 131 60 130 21 199 315 202 199 315 202 60 130 21 183 233 44 72 314 201 68 235 46 200 316 203 200 316 203 68 235 46 201 234 45 200 316 203 201 234 45 338 317 204 338 317 204 201 234 45 337 318 205 337 318 205 66 211 40 338 317 204 338 317 204 66 211 40 78 312 143 283 232 43 336 319 206 201 234 45 201 234 45 336 319 206 337 318 205 177 209 38 336 319 206 61 205 34 61 205 34 336 319 206 335 320 207 334 321 208 335 320 207 284 128 19 284 128 19 335 320 207 202 129 20 334 321 208 333 322 209 174 203 32 174 203 32 333 322 209 58 198 27 332 323 210 333 322 209 285 115 6 285 115 6 333 322 209 203 118 9 332 323 210 331 324 232 171 195 24 171 195 24 331 324 232 63 196 25 331 324 232 204 114 5 330 325 233 330 325 233 204 114 5 205 305 136 331 324 232 330 325 233 63 196 25 63 196 25 330 325 233 73 302 133 329 326 234 292 262 63 2054 327 235 2054 327 235 292 262 63 2052 263 64 2077 328 1139 328 329 1140 2076 253 1100 2076 253 1100 328 329 1140 52 224 1081 328 329 1140 327 330 1141 52 224 1081 52 224 1081 327 330 1141 47 190 1054 326 331 1142 327 330 1141 287 191 1055 287 191 1055 327 330 1141 206 192 1056 168 188 1052 326 331 1142 46 183 1047 46 183 1047 326 331 1142 325 332 1143 324 333 1144 325 332 1143 288 184 1048 288 184 1048 325 332 1143 207 185 1049 289 248 53 208 240 48 193 301 132 193 301 132 208 240 48 70 297 128 209 249 54 289 248 53 69 300 131 69 300 131 289 248 53 193 301 132 210 243 51 292 262 63 71 299 130 71 299 130 292 262 63 205 305 136 208 240 48 290 239 47 70 297 128 70 297 128 290 239 47 192 298 129 290 239 47 210 243 51 192 298 129 192 298 129 210 243 51 71 299 130 199 315 202 291 289 120 69 300 131 69 300 131 291 289 120 209 249 54 291 289 120 199 315 202 211 290 121 211 290 121 199 315 202 72 314 201 292 262 63 329 326 234 205 305 136 205 305 136 329 326 234 330 325 233 2053 256 59 212 255 58 2054 327 235 2054 327 235 212 255 58 329 326 234 195 306 1132 293 265 1108 75 307 1133 75 307 1133 293 265 1108 213 267 1110 293 265 1108 195 306 1132 214 258 1101 214 258 1101 195 306 1132 74 304 1131 294 254 2265 194 303 134 212 255 58 212 255 58 194 303 134 73 302 133 194 303 1130 294 254 1102 74 304 1131 74 304 1131 294 254 1102 214 258 1101 295 271 1114 196 308 1134 213 267 1110 213 267 1110 196 308 1134 75 307 1133 295 271 1114 215 273 1116 196 308 1134 196 308 1134 215 273 1116 76 309 1135 215 273 1116 296 286 1127 76 309 1135 76 309 1135 296 286 1127 198 313 1138 296 286 1127 216 279 1122 198 313 1138 198 313 1138 216 279 1122 77 310 1136 323 295 126 217 282 87 322 296 127 322 296 127 217 282 87 191 283 88 217 282 87 323 295 126 78 312 143 78 312 143 323 295 126 338 317 204 216 279 1122 297 278 1121 77 310 1136 77 310 1136 297 278 1121 197 311 1137 297 278 73 217 282 87 197 311 2267 197 311 2267 217 282 87 78 312 143 200 316 203 298 293 124 72 314 201 72 314 201 298 293 124 211 290 121 247 27 89 301 334 1145 100 28 90 100 28 90 301 334 1145 220 335 1146 301 334 1145 247 27 89 221 336 1147 221 336 1147 247 27 89 12 26 86 107 39 252 302 337 1148 106 40 253 106 40 253 302 337 1148 222 338 1149 302 337 1148 107 39 252 220 335 1146 220 335 1146 107 39 252 100 28 90 111 45 262 303 339 1150 110 46 265 110 46 265 303 339 1150 223 340 1151 303 339 1150 111 45 262 222 338 1149 222 338 1149 111 45 262 106 40 253 304 341 1152 224 342 1153 115 51 289 115 51 289 224 342 1153 114 52 290 223 340 1151 304 341 1152 110 46 265 110 46 265 304 341 1152 115 51 289 305 343 1154 225 344 1155 119 57 295 119 57 295 225 344 1155 118 58 296 224 342 1153 305 343 1154 114 52 290 114 52 290 305 343 1154 119 57 295 306 345 1156 226 346 1157 122 63 304 122 63 304 226 346 1157 121 64 884 225 344 1155 306 345 1156 118 58 296 118 58 296 306 345 1156 122 63 304 346 347 1158 345 348 1159 152 148 978 152 148 978 345 348 1159 151 149 980 152 148 978 121 64 884 346 347 1158 346 347 1158 121 64 884 226 346 1157 344 349 1160 343 350 1161 241 163 983 241 163 983 343 350 1161 242 165 987 241 163 983 151 149 980 344 349 1160 344 349 1160 151 149 980 345 348 1159 167 186 1050 315 351 1162 12 26 86 12 26 86 315 351 1162 221 336 1147 316 352 1163 127 80 900 232 175 1038 232 175 1038 127 80 900 30 82 902 127 80 900 316 352 1163 45 81 901 45 81 901 316 352 1163 162 353 1164 316 352 1163 235 354 1165 162 353 1164 162 353 1164 235 354 1165 79 355 1166 316 352 1163 232 175 1038 235 354 1165 235 354 1165 232 175 1038 80 177 1040 234 356 1167 317 357 1168 80 177 1040 80 177 1040 317 357 1168 235 354 1165 317 357 1168 233 358 1169 235 354 1165 235 354 1165 233 358 1169 79 355 1166 233 358 1169 317 357 1168 3 360 1171 3 360 1171 317 357 1168 87 359 1170 317 357 1168 234 356 1167 87 359 1170 87 359 1170 234 356 1167 2 361 1172 236 362 1173 318 363 1174 81 171 1019 81 171 1019 318 363 1174 237 176 1039 318 363 1174 234 356 1167 237 176 1039 237 176 1039 234 356 1167 80 177 1040 234 356 1167 318 363 1174 2 361 1172 2 361 1172 318 363 1174 86 364 1175 318 363 1174 236 362 1173 86 364 1175 86 364 1175 236 362 1173 1 365 1176 319 366 1177 236 362 1173 239 170 1018 239 170 1018 236 362 1173 81 171 1019 236 362 1173 319 366 1177 1 365 1176 1 365 1176 319 366 1177 85 367 1178 85 367 1178 319 366 1177 0 369 1180 0 369 1180 319 366 1177 161 368 1179 319 366 1177 239 170 1018 161 368 1179 161 368 1179 239 170 1018 82 173 1023 0 369 1180 161 368 1179 4 371 1182 4 371 1182 161 368 1179 240 370 1181 161 368 1179 82 173 1023 240 370 1181 240 370 1181 82 173 1023 83 166 1012 242 165 987 158 372 1183 83 166 1012 83 166 1012 158 372 1183 240 370 1181 240 370 1181 158 372 1183 4 371 1182 4 371 1182 158 372 1183 84 373 1184 343 350 1161 342 374 1185 242 165 987 242 165 987 342 374 1185 158 372 1183 342 374 1185 88 375 1186 158 372 1183 158 372 1183 88 375 1186 84 373 1184 144 131 917 2066 134 920 321 236 1093 321 236 1093 2066 134 920 2067 376 1187 321 236 1093 180 214 1071 339 66 886 339 66 886 180 214 1071 25 73 893 2067 376 1187 2083 284 1125 321 236 1093 321 236 1093 2083 284 1125 180 214 1071 325 332 1143 324 333 1144 46 183 1047 46 183 1047 324 333 1144 165 180 1043 325 332 1143 326 331 1142 207 185 1049 207 185 1049 326 331 1142 287 191 1055 47 190 1054 327 330 1141 168 188 1052 168 188 1052 327 330 1141 326 331 1142 327 330 1141 328 329 1140 206 192 1056 206 192 1056 328 329 1140 286 225 1082 286 225 1082 328 329 1140 2072 261 1106 2072 261 1106 328 329 1140 2077 328 1139 330 325 233 329 326 234 73 302 133 73 302 133 329 326 234 212 255 58 331 324 232 332 323 210 204 114 5 204 114 5 332 323 210 285 115 6 333 322 209 332 323 210 58 198 27 58 198 27 332 323 210 171 195 24 333 322 209 334 321 208 203 118 9 203 118 9 334 321 208 284 128 19 61 205 34 335 320 207 174 203 32 174 203 32 335 320 207 334 321 208 202 129 20 335 320 207 283 232 43 283 232 43 335 320 207 336 319 206 66 211 40 337 318 205 177 209 38 177 209 38 337 318 205 336 319 206 338 317 204 323 295 126 200 316 203 200 316 203 323 295 126 298 293 124 299 8 36 218 9 37 2017 378 1189 2017 378 1189 218 9 37 2022 377 1188 218 9 37 300 23 72 2022 377 1188 2022 377 1188 300 23 72 2021 379 1190 300 23 72 219 25 85 2021 379 1190 2021 379 1190 219 25 85 2023 380 1191 301 334 1145 674 381 1192 220 335 1146 220 335 1146 674 381 1192 592 382 1193 221 336 1147 593 383 1194 301 334 1145 301 334 1145 593 383 1194 674 381 1192 302 337 1148 675 384 1195 222 338 1149 222 338 1149 675 384 1195 594 385 1196 302 337 1148 220 335 1146 675 384 1195 675 384 1195 220 335 1146 592 382 1193 303 339 1150 676 386 1197 223 340 1151 223 340 1151 676 386 1197 595 387 1198 222 338 1149 594 385 1196 303 339 1150 303 339 1150 594 385 1196 676 386 1197 304 341 1152 677 388 1199 224 342 1153 224 342 1153 677 388 1199 596 389 1200 223 340 1151 595 387 1198 304 341 1152 304 341 1152 595 387 1198 677 388 1199 305 343 1154 678 390 1201 225 344 1155 225 344 1155 678 390 1201 597 391 1202 224 342 1153 596 389 1200 305 343 1154 305 343 1154 596 389 1200 678 390 1201 226 346 1157 306 345 1156 598 393 1204 598 393 1204 306 345 1156 679 392 1203 225 344 1155 597 391 1202 306 345 1156 306 345 1156 597 391 1202 679 392 1203 2037 395 1206 680 396 1207 2036 394 1205 2036 394 1205 680 396 1207 599 397 1208 2038 398 1209 600 399 1210 2037 395 1206 2037 395 1206 600 399 1210 680 396 1207 2039 400 1211 608 401 1212 2038 398 1209 2038 398 1209 608 401 1212 600 399 1210 31 86 3 308 85 2 2033 403 2261 2033 403 2261 308 85 2 2019 402 144 681 405 149 2019 402 2264 602 404 148 602 404 148 2019 402 2264 2020 406 2259 34 95 16 309 94 15 2031 408 2252 2031 408 2252 309 94 15 2032 407 2262 309 94 15 31 86 3 2032 407 2262 2032 407 2262 31 86 3 2033 403 2261 219 25 85 310 111 904 2023 380 1191 2023 380 1191 310 111 904 2024 409 1213 604 411 1215 2025 412 1216 684 410 1214 684 410 1214 2025 412 1216 2026 413 1217 2035 415 2260 685 416 158 2034 414 2258 2034 414 2258 685 416 158 605 417 159 2036 394 1205 599 397 1208 2035 415 1218 2035 415 1218 599 397 1208 685 416 1219 346 347 1158 1971 418 1220 345 348 1159 345 348 1159 1971 418 1220 1970 419 1221 226 346 1157 598 393 1204 346 347 1158 346 347 1158 598 393 1204 1971 418 1220 2016 420 2257 686 421 161 2020 406 2259 2020 406 2259 686 421 161 602 404 148 2034 414 2258 605 417 159 2016 420 2257 2016 420 2257 605 417 159 686 421 161 229 126 113 313 156 112 2027 423 2256 2027 423 2256 313 156 112 2028 422 2255 313 156 112 230 158 115 2028 422 2255 2028 422 2255 230 158 115 2029 424 2254 230 158 115 314 162 119 2029 424 2254 2029 424 2254 314 162 119 2030 425 2253 314 162 119 34 95 16 2030 425 2253 2030 425 2253 34 95 16 2031 408 2252 344 349 1160 1969 426 1222 343 350 1161 343 350 1161 1969 426 1222 1968 427 1223 345 348 1159 1970 419 1221 344 349 1160 344 349 1160 1970 419 1221 1969 426 1222 2040 428 1224 689 429 1225 2039 400 1211 2039 400 1211 689 429 1225 608 401 1212 2041 430 1226 612 431 1227 2040 428 1224 2040 428 1224 612 431 1227 689 429 1225 315 351 1162 690 432 1228 221 336 1147 221 336 1147 690 432 1228 593 383 1194 2042 433 1229 692 434 1230 2041 430 1226 2041 430 1226 692 434 1230 612 431 1227 2043 435 1231 434 436 1232 2042 433 1229 2042 433 1229 434 436 1232 692 434 1230 88 375 1186 342 374 1185 435 438 1234 435 438 1234 342 374 1185 1967 437 1233 342 374 1185 343 350 1161 1967 437 1233 1967 437 1233 343 350 1161 1968 427 1223 436 439 1235 353 440 1236 622 442 1238 622 442 1238 353 440 1236 437 441 1237 352 444 1240 436 439 1235 438 443 1239 438 443 1239 436 439 1235 622 442 1238 439 445 1241 352 444 1240 623 446 1242 623 446 1242 352 444 1240 438 443 1239 354 448 1244 439 445 1241 440 447 1243 440 447 1243 439 445 1241 623 446 1242 356 450 1246 441 451 1247 355 449 1245 355 449 1245 441 451 1247 443 452 1248 441 451 1247 357 453 1249 443 452 1248 443 452 1248 357 453 1249 442 454 1250 353 440 1236 436 439 1235 444 455 1251 444 455 1251 436 439 1235 624 456 1252 436 439 1235 352 444 1240 624 456 1252 624 456 1252 352 444 1240 445 457 1253 359 458 1254 446 459 1255 445 457 1253 445 457 1253 446 459 1255 624 456 1252 446 459 1255 358 460 1256 624 456 1252 624 456 1252 358 460 1256 444 455 1251 352 444 1240 439 445 1241 445 457 1253 445 457 1253 439 445 1241 625 461 1257 439 445 1241 354 448 1244 625 461 1257 625 461 1257 354 448 1244 447 462 1258 360 463 1259 448 464 1260 447 462 1258 447 462 1258 448 464 1260 625 461 1257 448 464 1260 359 458 1254 625 461 1257 625 461 1257 359 458 1254 445 457 1253 357 453 1249 441 451 1247 361 465 1261 361 465 1261 441 451 1247 626 466 1262 441 451 1247 356 450 1246 626 466 1262 626 466 1262 356 450 1246 449 467 1263 363 469 1265 450 470 1266 362 468 1264 362 468 1264 450 470 1266 451 471 1267 450 470 1266 356 450 1246 451 471 1267 451 471 1267 356 450 1246 355 449 1245 358 460 1256 446 459 1255 452 472 1268 452 472 1268 446 459 1255 627 473 1269 446 459 1255 359 458 1254 627 473 1269 627 473 1269 359 458 1254 453 474 1270 365 475 1271 454 476 1272 453 474 1270 453 474 1270 454 476 1272 627 473 1269 454 476 1272 364 477 1273 627 473 1269 627 473 1269 364 477 1273 452 472 1268 356 450 1246 450 470 1266 449 467 1263 449 467 1263 450 470 1266 456 478 1274 450 470 1266 363 469 1265 456 478 1274 456 478 1274 363 469 1265 455 479 1275 457 480 1276 363 469 1265 458 481 1277 458 481 1277 363 469 1265 362 468 1264 366 483 1279 457 480 1276 367 482 1278 367 482 1278 457 480 1276 458 481 1277 363 469 1265 457 480 1276 455 479 1275 455 479 1275 457 480 1276 460 484 1280 457 480 1276 366 483 1279 460 484 1280 460 484 1280 366 483 1279 459 485 1281 369 486 1282 368 487 1283 461 489 1285 461 489 1285 368 487 1283 462 488 1284 462 488 1284 366 483 1279 461 489 1285 461 489 1285 366 483 1279 367 482 1278 366 483 1279 462 488 1284 459 485 1281 459 485 1281 462 488 1284 464 490 1286 368 487 1283 463 491 1287 462 488 1284 462 488 1284 463 491 1287 464 490 1286 371 492 1288 370 493 1289 465 495 1291 465 495 1291 370 493 1289 466 494 1290 368 487 1283 369 486 1282 466 494 1290 466 494 1290 369 486 1282 465 495 1291 463 491 1287 368 487 1283 468 496 1292 468 496 1292 368 487 1283 466 494 1290 370 493 1289 467 497 1293 466 494 1290 466 494 1290 467 497 1293 468 496 1292 372 498 1294 373 499 1295 628 501 1297 628 501 1297 373 499 1295 469 500 1296 370 493 1289 371 492 1288 469 500 1296 469 500 1296 371 492 1288 628 501 1297 467 497 1293 370 493 1289 471 502 1298 471 502 1298 370 493 1289 469 500 1296 373 499 1295 470 503 1299 469 500 1296 469 500 1296 470 503 1299 471 502 1298 375 504 1300 472 505 1301 1964 507 1303 1964 507 1303 472 505 1301 1965 506 1302 472 505 1301 377 508 1304 1965 506 1302 1965 506 1302 377 508 1304 1966 509 1305 376 510 1306 473 511 1307 1966 509 1305 1966 509 1305 473 511 1307 1965 506 1302 473 511 1307 374 512 1308 1965 506 1302 1965 506 1302 374 512 1308 1964 507 1303 378 514 1310 475 515 1311 474 513 1309 474 513 1309 475 515 1311 629 516 1312 475 515 1311 379 517 1313 629 516 1312 629 516 1312 379 517 1313 476 518 1314 377 508 1304 472 505 1301 476 518 1314 476 518 1314 472 505 1301 629 516 1312 472 505 1301 375 504 1300 629 516 1312 629 516 1312 375 504 1300 474 513 1309 476 518 1314 379 517 1313 477 520 1316 477 520 1316 379 517 1313 399 519 1315 476 518 1314 477 520 1316 377 508 1304 377 508 1304 477 520 1316 380 521 1317 478 522 162 381 523 163 630 525 165 630 525 165 381 523 163 479 524 164 479 524 174 382 526 175 630 525 177 630 525 177 382 526 175 480 527 176 384 528 178 481 529 179 480 527 176 480 527 176 481 529 179 630 525 177 383 530 167 478 522 162 481 529 166 481 529 166 478 522 162 630 525 165 482 531 168 385 532 169 631 534 171 631 534 171 385 532 169 483 533 170 381 523 163 478 522 162 483 533 170 483 533 170 478 522 162 631 534 171 478 522 162 383 530 167 631 534 171 631 534 171 383 530 167 484 535 172 386 536 173 482 531 168 484 535 172 484 535 172 482 531 168 631 534 171 485 537 180 386 536 173 632 538 181 632 538 181 386 536 173 484 535 172 383 530 167 486 539 182 484 535 172 484 535 172 486 539 182 632 538 181 486 539 182 387 540 183 632 538 181 632 538 181 387 540 183 511 541 184 390 542 185 485 537 180 511 541 184 511 541 184 485 537 180 632 538 181 487 543 186 391 544 187 633 546 189 633 546 189 391 544 187 488 545 188 488 545 188 388 547 190 633 546 189 633 546 189 388 547 190 489 548 191 386 536 173 485 537 180 489 548 191 489 548 191 485 537 180 633 546 189 390 542 185 487 543 186 485 537 180 485 537 180 487 543 186 633 546 189 359 458 1254 448 464 1260 453 474 1270 453 474 1270 448 464 1260 634 549 1318 448 464 1260 360 463 1259 634 549 1318 634 549 1318 360 463 1259 490 550 1319 389 551 1320 491 552 1321 490 550 1319 490 550 1319 491 552 1321 634 549 1318 491 552 1321 365 475 1271 634 549 1318 634 549 1318 365 475 1271 453 474 1270 575 553 236 405 554 237 659 556 239 659 556 239 405 554 237 492 555 238 403 557 240 574 558 241 492 555 238 492 555 238 574 558 241 659 556 239 454 476 1272 365 475 1271 635 560 1323 635 560 1323 365 475 1271 493 559 1322 391 544 1324 487 543 1325 493 559 1322 493 559 1322 487 543 1325 635 560 1323 487 543 1325 390 542 1326 635 560 1323 635 560 1323 390 542 1326 494 561 1327 364 477 1273 454 476 1272 494 561 1327 494 561 1327 454 476 1272 635 560 1323 491 552 1321 389 551 1320 636 563 1329 636 563 1329 389 551 1320 495 562 1328 392 564 1330 508 565 1331 495 562 1328 495 562 1328 508 565 1331 636 563 1329 508 565 1331 391 544 1324 636 563 1329 636 563 1329 391 544 1324 493 559 1322 365 475 1271 491 552 1321 493 559 1322 493 559 1322 491 552 1321 636 563 1329 406 567 243 573 568 244 496 566 242 496 566 242 573 568 244 658 569 245 574 558 241 403 557 240 658 569 245 658 569 245 403 557 240 496 566 242 2087 571 1333 2088 572 1334 651 570 1332 651 570 1332 2088 572 1334 552 573 1335 497 574 1336 378 514 1310 637 575 1337 637 575 1337 378 514 1310 474 513 1309 375 504 1300 498 576 1338 474 513 1309 474 513 1309 498 576 1338 637 575 1337 498 576 211 394 577 212 637 575 214 637 575 214 394 577 212 499 578 213 395 579 215 497 574 216 499 578 213 499 578 213 497 574 216 637 575 214 397 580 1339 396 581 1340 500 583 1342 500 583 1342 396 581 1340 501 582 1341 373 499 1295 372 498 1294 501 582 1341 501 582 1341 372 498 1294 500 583 1342 502 584 1343 374 512 1308 638 585 1344 638 585 1344 374 512 1308 473 511 1307 376 510 1306 503 586 1345 473 511 1307 473 511 1307 503 586 1345 638 585 1344 503 586 1345 397 580 1339 638 585 1344 638 585 1344 397 580 1339 500 583 1342 372 498 1294 502 584 1343 500 583 1342 500 583 1342 502 584 1343 638 585 1344 470 503 1299 373 499 1295 505 587 1346 505 587 1346 373 499 1295 501 582 1341 396 581 1340 504 588 1347 501 582 1341 501 582 1341 504 588 1347 505 587 1346 609 589 1348 1966 509 1305 380 521 1317 380 521 1317 1966 509 1305 377 508 1304 398 590 1349 376 510 1306 609 589 1348 609 589 1348 376 510 1306 1966 509 1305 506 591 217 384 528 178 639 592 218 639 592 218 384 528 178 480 527 176 382 526 175 507 593 219 480 527 176 480 527 176 507 593 219 639 592 218 507 593 219 395 579 215 639 592 218 639 592 218 395 579 215 499 578 213 394 577 212 506 591 217 499 578 213 499 578 213 506 591 217 639 592 218 508 565 192 392 564 193 640 595 195 640 595 195 392 564 193 509 594 194 400 596 196 510 597 197 509 594 194 509 594 194 510 597 197 640 595 195 510 597 197 388 547 190 640 595 195 640 595 195 388 547 190 488 545 188 391 544 187 508 565 192 488 545 188 488 545 188 508 565 192 640 595 195 506 591 217 394 577 212 641 599 227 641 599 227 394 577 212 538 598 226 387 540 183 486 539 182 538 598 198 538 598 198 486 539 182 641 599 199 383 530 167 481 529 166 486 539 182 486 539 182 481 529 166 641 599 199 481 529 179 384 528 178 641 599 227 641 599 227 384 528 178 506 591 217 388 547 190 510 597 197 489 548 191 489 548 191 510 597 197 642 600 220 510 597 197 400 596 196 642 600 220 642 600 220 400 596 196 512 601 221 385 532 169 482 531 168 512 601 221 512 601 221 482 531 168 642 600 220 482 531 168 386 536 173 642 600 220 642 600 220 386 536 173 489 548 191 504 588 1347 396 581 1340 620 603 1351 620 603 1351 396 581 1340 513 602 1350 429 604 1352 621 605 1353 513 602 1350 513 602 1350 621 605 1353 620 603 1351 398 590 1349 516 607 1355 515 606 1354 515 606 1354 516 607 1355 643 608 1356 516 607 1355 427 609 1357 643 608 1356 643 608 1356 427 609 1357 618 610 1358 618 610 1358 428 611 1359 643 608 1356 643 608 1356 428 611 1359 617 612 1360 617 612 1360 397 580 1339 643 608 1356 643 608 1356 397 580 1339 515 606 1354 428 611 1359 429 604 1352 617 612 1360 617 612 1360 429 604 1352 513 602 1350 396 581 1340 397 580 1339 513 602 1350 513 602 1350 397 580 1339 617 612 1360 516 607 1355 398 590 1349 644 613 1361 644 613 1361 398 590 1349 609 589 1348 380 521 1317 610 614 1362 609 589 1348 609 589 1348 610 614 1362 644 613 1361 610 614 1362 426 615 1363 644 613 1361 644 613 1361 426 615 1363 616 616 1364 427 609 1357 516 607 1355 616 616 1364 616 616 1364 516 607 1355 644 613 1361 357 453 1249 520 617 1365 442 454 1250 442 454 1250 520 617 1365 519 618 1366 521 619 1367 401 620 1368 645 622 1370 645 622 1370 401 620 1368 522 621 1369 442 454 1250 519 618 1366 522 621 1369 522 621 1369 519 618 1366 645 622 1370 353 440 1236 579 623 1371 437 441 1237 437 441 1237 579 623 1371 661 624 1372 520 617 1365 357 453 1249 523 625 1373 523 625 1373 357 453 1249 361 465 1261 401 620 1368 524 626 1374 522 621 1369 522 621 1369 524 626 1374 646 627 1375 524 626 1374 402 628 1376 646 627 1375 646 627 1375 402 628 1376 525 629 1377 355 449 1245 443 452 1248 525 629 1377 525 629 1377 443 452 1248 646 627 1375 443 452 1248 442 454 1250 646 627 1375 646 627 1375 442 454 1250 522 621 1369 579 623 1371 353 440 1236 660 630 1378 660 630 1378 353 440 1236 444 455 1251 358 460 1256 578 631 1379 444 455 1251 444 455 1251 578 631 1379 660 630 1378 526 632 2273 409 633 247 647 635 2268 647 635 2268 409 633 247 527 634 248 404 636 250 528 637 251 527 634 248 527 634 248 528 637 251 647 635 2268 410 638 1381 529 639 1382 528 637 1380 528 637 1380 529 639 1382 647 635 1383 529 639 1382 408 640 1384 647 635 1383 647 635 1383 408 640 1384 526 632 1385 528 637 251 404 636 250 648 642 2269 648 642 2269 404 636 250 530 641 255 407 643 257 531 644 258 530 641 255 530 641 255 531 644 258 648 642 2269 531 644 1386 411 645 1387 648 642 1389 648 642 1389 411 645 1387 532 646 1388 532 646 1388 410 638 1381 648 642 1389 648 642 1389 410 638 1381 528 637 1380 531 644 258 407 643 257 649 648 2272 649 648 2272 407 643 257 533 647 261 533 647 261 412 649 263 649 648 2272 649 648 2272 412 649 263 534 650 264 534 650 1390 413 651 1391 649 648 1393 649 648 1393 413 651 1391 535 652 1392 411 645 1387 531 644 1386 535 652 1392 535 652 1392 531 644 1386 649 648 1393 374 512 1308 502 584 1343 393 653 1394 393 653 1394 502 584 1343 537 654 1395 502 584 1343 372 498 1294 537 654 1395 537 654 1395 372 498 1294 628 501 1297 371 492 1288 536 655 1396 628 501 1297 628 501 1297 536 655 1396 537 654 1395 376 510 1306 398 590 1349 503 586 1345 503 586 1345 398 590 1349 515 606 1354 515 606 1354 397 580 1339 503 586 1345 536 655 1396 371 492 1288 540 656 1397 540 656 1397 371 492 1288 465 495 1291 369 486 1282 539 657 1398 465 495 1291 465 495 1291 539 657 1398 540 656 1397 539 657 1398 369 486 1282 542 658 1399 542 658 1399 369 486 1282 461 489 1285 461 489 1285 367 482 1278 542 658 1399 542 658 1399 367 482 1278 541 659 1400 367 482 1278 458 481 1277 541 659 1400 541 659 1400 458 481 1277 544 660 1401 458 481 1277 362 468 1264 544 660 1401 544 660 1401 362 468 1264 543 661 1402 402 628 1376 545 662 1403 525 629 1377 525 629 1377 545 662 1403 546 663 1404 362 468 1264 451 471 1267 543 661 1402 543 661 1402 451 471 1267 546 663 1404 451 471 1267 355 449 1245 546 663 1404 546 663 1404 355 449 1245 525 629 1377 578 631 1379 358 460 1256 577 664 1405 577 664 1405 358 460 1256 452 472 1268 364 477 1273 547 665 1406 452 472 1268 452 472 1268 547 665 1406 577 664 1405 547 665 1406 364 477 1273 549 666 1407 549 666 1407 364 477 1273 494 561 1327 390 542 1326 548 667 1408 494 561 1327 494 561 1327 548 667 1408 549 666 1407 387 540 1410 550 668 1411 511 541 1409 511 541 1409 550 668 1411 551 669 1412 548 667 1408 390 542 1326 551 669 1412 551 669 1412 390 542 1326 511 541 1409 387 540 1410 538 598 1413 550 668 1411 550 668 1411 538 598 1413 650 670 1414 538 598 1413 394 577 1415 650 670 1414 650 670 1414 394 577 1415 552 573 1335 406 567 243 553 671 267 573 568 244 573 568 244 553 671 267 657 672 268 572 673 269 657 672 268 414 674 270 414 674 270 657 672 268 553 671 267 394 577 1415 498 576 1338 552 573 1335 552 573 1335 498 576 1338 651 570 1332 1945 675 1416 651 570 1332 1964 507 1303 651 570 1332 498 576 1338 1964 507 1303 498 576 1338 375 504 1300 1964 507 1303 548 667 1408 2091 676 1417 549 666 1407 549 666 1407 2091 676 1417 2092 677 1418 663 679 272 652 680 273 580 678 271 580 678 271 652 680 273 554 681 274 582 682 275 555 683 276 663 679 272 663 679 272 555 683 276 652 680 273 2093 684 1419 547 665 1406 2092 677 1418 2092 677 1418 547 665 1406 549 666 1407 550 668 1411 2095 685 1420 551 669 1412 551 669 1412 2095 685 1420 2090 686 1421 662 688 278 653 689 279 581 687 277 581 687 277 653 689 279 556 690 280 580 678 271 554 681 274 662 688 278 662 688 278 554 681 274 653 689 279 2091 676 1417 548 667 1408 2090 686 1421 2090 686 1421 548 667 1408 551 669 1412 546 663 1404 545 662 1403 2098 692 1423 2098 692 1423 545 662 1403 2097 691 1422 584 693 281 667 694 282 557 696 284 557 696 284 667 694 282 654 695 2270 667 694 1424 586 697 1425 654 695 1427 654 695 1427 586 697 1425 558 698 1426 543 661 1402 546 663 1404 2099 699 1428 2099 699 1428 546 663 1404 2098 692 1423 547 665 1406 2093 684 1419 577 664 1405 577 664 1405 2093 684 1419 2094 700 1429 665 701 287 2060 702 288 582 682 275 582 682 275 2060 702 288 555 683 276 544 660 1401 543 661 1402 2100 703 1430 2100 703 1430 543 661 1402 2099 699 1428 586 697 1425 666 704 1431 558 698 1426 558 698 1426 666 704 1431 2061 705 1432 666 704 1431 585 706 1433 2061 705 1432 2061 705 1432 585 706 1433 559 707 1434 541 659 1400 544 660 1401 2101 708 1435 2101 708 1435 544 660 1401 2100 703 1430 542 658 1399 541 659 1400 2102 709 1436 2102 709 1436 541 659 1400 2101 708 1435 585 706 1433 668 710 1437 559 707 1434 559 707 1434 668 710 1437 2062 711 1438 587 712 1439 560 713 1440 668 710 1437 668 710 1437 560 713 1440 2062 711 1438 2103 714 1441 539 657 1398 2102 709 1436 2102 709 1436 539 657 1398 542 658 1399 536 655 1396 2105 715 1442 537 654 1395 537 654 1395 2105 715 1442 2106 716 1443 670 718 1445 655 719 1446 588 717 1444 588 717 1444 655 719 1446 561 720 1447 589 721 301 562 722 302 670 718 2275 670 718 2275 562 722 302 655 719 299 2107 723 1448 393 653 1394 2106 716 1443 2106 716 1443 393 653 1394 537 654 1395 539 657 1398 2103 714 1441 540 656 1397 540 656 1397 2103 714 1441 2104 724 1449 669 725 1450 2063 726 1451 587 712 1439 587 712 1439 2063 726 1451 560 713 1440 588 717 1444 561 720 1447 669 725 1450 669 725 1450 561 720 1447 2063 726 1451 2105 715 1442 536 655 1396 2104 724 1449 2104 724 1449 536 655 1396 540 656 1397 650 670 1414 552 573 1335 2089 727 1452 2089 727 1452 552 573 1335 2088 572 1334 583 728 305 664 729 306 2058 731 308 2058 731 308 664 729 306 2059 730 307 664 729 306 581 687 277 2059 730 307 2059 730 307 581 687 277 556 690 280 550 668 1411 650 670 1414 2095 685 1420 2095 685 1420 650 670 1414 2089 727 1452 671 732 309 583 728 305 656 733 310 656 733 310 583 728 305 2058 731 308 1947 734 311 671 732 309 1946 735 970 1946 735 970 671 732 309 656 733 310 416 737 972 403 557 240 563 736 971 563 736 971 403 557 240 492 555 238 563 736 971 492 555 238 417 738 973 417 738 973 492 555 238 405 554 237 415 740 975 406 567 243 564 739 974 564 739 974 406 567 243 496 566 242 564 739 974 496 566 242 416 737 972 416 737 972 496 566 242 403 557 240 565 741 2274 419 742 977 526 632 2273 526 632 2273 419 742 977 409 633 247 526 632 1385 408 640 1384 565 741 1453 565 741 1453 408 640 1384 420 743 1454 417 738 973 405 554 237 576 744 979 576 744 979 405 554 237 575 553 236 566 745 1455 420 743 1454 529 639 1382 529 639 1382 420 743 1454 408 640 1384 529 639 1382 410 638 1381 566 745 1455 566 745 1455 410 638 1381 421 746 1456 567 747 1457 421 746 1456 532 646 1388 532 646 1388 421 746 1456 410 638 1381 567 747 1457 532 646 1388 422 748 1458 422 748 1458 532 646 1388 411 645 1387 423 750 1460 413 651 1391 568 749 1459 568 749 1459 413 651 1391 534 650 1390 568 749 984 534 650 264 424 751 986 424 751 986 534 650 264 412 649 263 422 748 1458 411 645 1387 569 752 1461 569 752 1461 411 645 1387 535 652 1392 569 752 1461 535 652 1392 423 750 1460 423 750 1460 535 652 1392 413 651 1391 570 753 988 418 754 989 553 671 267 553 671 267 418 754 989 414 674 270 553 671 267 406 567 243 570 753 988 570 753 988 406 567 243 415 740 975 418 754 989 571 755 990 414 674 270 414 674 270 571 755 990 572 673 269 571 755 990 1963 756 991 572 673 269 572 673 269 1963 756 991 1962 757 992 424 751 986 412 649 263 1963 756 991 1963 756 991 412 649 263 1962 757 992 657 672 268 572 673 269 1961 758 993 1961 758 993 572 673 269 1962 757 992 407 643 257 1960 759 994 533 647 261 533 647 261 1960 759 994 1961 758 993 573 568 244 1960 759 994 658 569 245 658 569 245 1960 759 994 1959 760 995 404 636 250 1958 761 996 530 641 255 530 641 255 1958 761 996 1959 760 995 574 558 241 1958 761 996 659 556 239 659 556 239 1958 761 996 1957 762 997 409 633 247 1956 763 998 527 634 248 527 634 248 1956 763 998 1957 762 997 576 744 979 575 553 236 1955 764 999 1955 764 999 575 553 236 1956 763 998 419 742 977 1955 764 999 409 633 247 409 633 247 1955 764 999 1956 763 998 2060 702 288 665 701 287 1953 766 1001 1953 766 1001 665 701 287 1954 765 1000 545 662 1403 1952 767 1462 2097 691 1422 2097 691 1422 1952 767 1462 2096 768 1463 402 628 1376 1951 769 1464 545 662 1403 545 662 1403 1951 769 1464 1952 767 1462 578 631 1379 1951 769 1464 660 630 1378 660 630 1378 1951 769 1464 1950 770 1465 524 626 1374 401 620 1368 1950 770 1465 1950 770 1465 401 620 1368 1949 771 1466 579 623 1371 1949 771 1466 661 624 1372 661 624 1372 1949 771 1466 1948 772 1467 416 737 972 580 678 271 564 739 974 564 739 974 580 678 271 662 688 278 581 687 277 415 740 975 662 688 278 662 688 278 415 740 975 564 739 974 582 682 275 417 738 973 665 701 287 665 701 287 417 738 973 576 744 979 580 678 271 416 737 972 663 679 272 663 679 272 416 737 972 563 736 971 417 738 973 582 682 275 563 736 971 563 736 971 582 682 275 663 679 272 570 753 988 415 740 975 664 729 306 664 729 306 415 740 975 581 687 277 418 754 989 570 753 988 583 728 305 583 728 305 570 753 988 664 729 306 665 701 287 576 744 979 1954 765 1000 1954 765 1000 576 744 979 1955 764 999 1954 765 1000 584 693 281 1953 766 1001 1953 766 1001 584 693 281 557 696 284 566 745 1455 421 746 1456 666 704 1431 666 704 1431 421 746 1456 585 706 1433 420 743 1454 566 745 1455 586 697 1425 586 697 1425 566 745 1455 666 704 1431 419 742 977 565 741 2274 584 693 281 584 693 281 565 741 2274 667 694 282 565 741 1453 420 743 1454 667 694 1424 667 694 1424 420 743 1454 586 697 1425 421 746 1456 567 747 1457 585 706 1433 585 706 1433 567 747 1457 668 710 1437 422 748 1458 587 712 1439 567 747 1457 567 747 1457 587 712 1439 668 710 1437 587 712 1439 422 748 1458 669 725 1450 669 725 1450 422 748 1458 569 752 1461 423 750 1460 588 717 1444 569 752 1461 569 752 1461 588 717 1444 669 725 1450 1947 734 311 1946 735 970 589 721 301 589 721 301 1946 735 970 562 722 302 589 721 301 424 751 986 1947 734 311 1947 734 311 424 751 986 1963 756 991 588 717 1444 423 750 1460 670 718 1445 670 718 1445 423 750 1460 568 749 1459 424 751 986 589 721 301 568 749 984 568 749 984 589 721 301 670 718 2275 571 755 990 418 754 989 671 732 309 671 732 309 418 754 989 583 728 305 590 773 1468 354 448 1244 672 774 1469 672 774 1469 354 448 1244 440 447 1243 354 448 1244 590 773 1468 447 462 1258 447 462 1258 590 773 1468 673 775 1470 591 776 1471 360 463 1259 673 775 1470 673 775 1470 360 463 1259 447 462 1258 626 466 1262 449 467 1263 674 381 1192 674 381 1192 449 467 1263 592 382 1193 361 465 1261 626 466 1262 593 383 1194 593 383 1194 626 466 1262 674 381 1192 456 478 1274 455 479 1275 675 384 1195 675 384 1195 455 479 1275 594 385 1196 449 467 1263 456 478 1274 592 382 1193 592 382 1193 456 478 1274 675 384 1195 459 485 1281 595 387 1198 460 484 1280 460 484 1280 595 387 1198 676 386 1197 455 479 1275 460 484 1280 594 385 1196 594 385 1196 460 484 1280 676 386 1197 463 491 1287 596 389 1200 464 490 1286 464 490 1286 596 389 1200 677 388 1199 595 387 1198 459 485 1281 677 388 1199 677 388 1199 459 485 1281 464 490 1286 467 497 1293 597 391 1202 468 496 1292 468 496 1292 597 391 1202 678 390 1201 596 389 1200 463 491 1287 678 390 1201 678 390 1201 463 491 1287 468 496 1292 470 503 1299 598 393 1204 471 502 1298 471 502 1298 598 393 1204 679 392 1203 597 391 1202 467 497 1293 679 392 1203 679 392 1203 467 497 1293 471 502 1298 475 515 1311 378 514 1310 680 396 1207 680 396 1207 378 514 1310 599 397 1208 379 517 1313 475 515 1311 600 399 1210 600 399 1210 475 515 1311 680 396 1207 379 517 1313 600 399 1210 399 519 1315 399 519 1315 600 399 1210 608 401 1212 381 523 163 601 777 222 479 524 164 479 524 164 601 777 222 681 405 223 602 404 148 382 526 175 681 405 149 681 405 149 382 526 175 479 524 174 385 532 169 603 778 224 483 533 170 483 533 170 603 778 224 682 779 225 601 777 222 381 523 163 682 779 225 682 779 225 381 523 163 483 533 170 360 463 1259 591 776 1471 490 550 1319 490 550 1319 591 776 1471 683 780 1472 604 411 1215 389 551 1320 683 780 1472 683 780 1472 389 551 1320 490 550 1319 389 551 1320 604 411 1215 495 562 1328 495 562 1328 604 411 1215 684 410 1214 606 781 1473 392 564 1330 684 410 1214 684 410 1214 392 564 1330 495 562 1328 395 579 215 605 417 159 497 574 216 497 574 216 605 417 159 685 416 158 599 397 1208 378 514 1310 685 416 1219 685 416 1219 378 514 1310 497 574 1336 504 588 1347 1970 419 1221 505 587 1346 505 587 1346 1970 419 1221 1971 418 1220 505 587 1346 1971 418 1220 470 503 1299 470 503 1299 1971 418 1220 598 393 1204 507 593 219 382 526 175 686 421 161 686 421 161 382 526 175 602 404 148 395 579 215 507 593 219 605 417 159 605 417 159 507 593 219 686 421 161 392 564 193 606 781 228 509 594 194 509 594 194 606 781 228 687 782 229 607 783 230 400 596 196 687 782 229 687 782 229 400 596 196 509 594 194 400 596 196 607 783 230 512 601 221 512 601 221 607 783 230 688 784 231 603 778 224 385 532 169 688 784 231 688 784 231 385 532 169 512 601 221 621 605 1353 1968 427 1223 620 603 1351 620 603 1351 1968 427 1223 1969 426 1222 620 603 1351 1969 426 1222 504 588 1347 504 588 1347 1969 426 1222 1970 419 1221 399 519 1315 608 401 1212 518 785 1474 518 785 1474 608 401 1212 689 429 1225 612 431 1227 425 786 1475 689 429 1225 689 429 1225 425 786 1475 518 785 1474 523 625 1373 361 465 1261 690 432 1228 690 432 1228 361 465 1261 593 383 1194 380 521 1317 477 520 1316 610 614 1362 610 614 1362 477 520 1316 691 787 1476 477 520 1316 399 519 1315 691 787 1476 691 787 1476 399 519 1315 518 785 1474 425 786 1475 614 788 1477 518 785 1474 518 785 1474 614 788 1477 691 787 1476 614 788 1477 426 615 1363 691 787 1476 691 787 1476 426 615 1363 610 614 1362 425 786 1475 612 431 1227 611 789 1478 611 789 1478 612 431 1227 692 434 1230 350 790 1479 611 789 1478 434 436 1232 434 436 1232 611 789 1478 692 434 1230 426 615 1363 614 788 1477 613 791 1480 613 791 1480 614 788 1477 693 792 1481 614 788 1477 425 786 1475 693 792 1481 693 792 1481 425 786 1475 611 789 1478 350 790 1479 433 793 1482 611 789 1478 611 789 1478 433 793 1482 693 792 1481 349 794 1483 613 791 1480 433 793 1482 433 793 1482 613 791 1480 693 792 1481 615 795 1484 427 609 1357 694 796 1485 694 796 1485 427 609 1357 616 616 1364 616 616 1364 426 615 1363 694 796 1485 694 796 1485 426 615 1363 613 791 1480 349 794 1483 432 797 1486 613 791 1480 613 791 1480 432 797 1486 694 796 1485 432 797 1486 348 798 1487 694 796 1485 694 796 1485 348 798 1487 615 795 1484 618 610 1358 427 609 1357 695 799 1488 695 799 1488 427 609 1357 615 795 1484 348 798 1487 431 800 1489 615 795 1484 615 795 1484 431 800 1489 695 799 1488 431 800 1489 347 801 1490 695 799 1488 695 799 1488 347 801 1490 517 802 1491 428 611 1359 618 610 1358 517 802 1491 517 802 1491 618 610 1358 695 799 1488 347 801 1490 351 803 1492 517 802 1491 517 802 1491 351 803 1492 619 804 1493 429 604 1352 428 611 1359 619 804 1493 619 804 1493 428 611 1359 517 802 1491 621 605 1353 429 604 1352 514 805 1494 514 805 1494 429 604 1352 619 804 1493 351 803 1492 430 806 1495 619 804 1493 619 804 1493 430 806 1495 514 805 1494 1968 427 1223 621 605 1353 1967 437 1233 1967 437 1233 621 605 1353 514 805 1494 430 806 1495 435 438 1234 514 805 1494 514 805 1494 435 438 1234 1967 437 1233 697 808 1497 710 809 1498 696 807 1496 696 807 1496 710 809 1498 709 810 1499 698 811 1500 711 812 1501 697 808 1497 697 808 1497 711 812 1501 710 809 1498 699 813 1502 712 814 1503 698 811 1500 698 811 1500 712 814 1503 711 812 1501 700 815 1504 713 816 1505 699 813 1502 699 813 1502 713 816 1505 712 814 1503 701 817 1506 714 818 1507 700 815 1504 700 815 1504 714 818 1507 713 816 1505 702 819 1508 715 820 1509 701 817 1506 701 817 1506 715 820 1509 714 818 1507 703 821 1510 716 822 1511 702 819 1508 702 819 1508 716 822 1511 715 820 1509 704 823 1512 717 824 1513 703 821 1510 703 821 1510 717 824 1513 716 822 1511 704 823 1512 705 825 1514 717 824 1513 717 824 1513 705 825 1514 718 826 1515 705 825 1514 706 827 1516 718 826 1515 718 826 1515 706 827 1516 719 828 1517 707 829 1518 720 830 1519 706 827 1516 706 827 1516 720 830 1519 719 828 1517 1331 831 1520 721 832 1521 707 829 1518 707 829 1518 721 832 1521 720 830 1519 708 833 1522 722 834 1523 1980 836 1525 1980 836 1525 722 834 1523 1979 835 1524 710 809 1498 724 837 1526 709 810 1499 709 810 1499 724 837 1526 723 838 1527 711 812 1501 725 839 1528 710 809 1498 710 809 1498 725 839 1528 724 837 1526 712 814 1503 726 840 1529 711 812 1501 711 812 1501 726 840 1529 725 839 1528 713 816 1505 727 841 1530 712 814 1503 712 814 1503 727 841 1530 726 840 1529 714 818 1507 728 842 1531 713 816 1505 713 816 1505 728 842 1531 727 841 1530 715 820 1509 729 843 1532 714 818 1507 714 818 1507 729 843 1532 728 842 1531 716 822 1511 730 844 1533 715 820 1509 715 820 1509 730 844 1533 729 843 1532 717 824 1513 731 845 1534 716 822 1511 716 822 1511 731 845 1534 730 844 1533 717 824 1513 718 826 1515 731 845 1534 731 845 1534 718 826 1515 732 846 1535 718 826 1515 719 828 1517 732 846 1535 732 846 1535 719 828 1517 733 847 1536 720 830 1519 734 848 1537 719 828 1517 719 828 1517 734 848 1537 733 847 1536 1333 849 1538 721 832 1521 1982 850 1539 1982 850 1539 721 832 1521 1979 835 1524 724 837 1526 737 851 1540 723 838 1527 723 838 1527 737 851 1540 736 852 1541 725 839 1528 738 853 1542 724 837 1526 724 837 1526 738 853 1542 737 851 1540 726 840 1529 739 854 1543 725 839 1528 725 839 1528 739 854 1543 738 853 1542 727 841 1530 740 855 1544 726 840 1529 726 840 1529 740 855 1544 739 854 1543 728 842 1531 741 856 1545 727 841 1530 727 841 1530 741 856 1545 740 855 1544 729 843 1532 742 857 1546 728 842 1531 728 842 1531 742 857 1546 741 856 1545 730 844 1533 743 858 1547 729 843 1532 729 843 1532 743 858 1547 742 857 1546 731 845 1534 744 859 1548 730 844 1533 730 844 1533 744 859 1548 743 858 1547 731 845 1534 732 846 1535 744 859 1548 744 859 1548 732 846 1535 745 860 1549 733 847 1536 746 861 1550 732 846 1535 732 846 1535 746 861 1550 745 860 1549 734 848 1537 747 862 1551 733 847 1536 733 847 1536 747 862 1551 746 861 1550 1334 863 1552 1333 849 1538 1983 864 1553 1983 864 1553 1333 849 1538 1982 850 1539 736 852 1541 737 851 1540 749 866 1555 749 866 1555 737 851 1540 750 865 1554 738 853 1542 751 867 1556 737 851 1540 737 851 1540 751 867 1556 750 865 1554 739 854 1543 752 868 1557 738 853 1542 738 853 1542 752 868 1557 751 867 1556 740 855 1544 753 869 1558 739 854 1543 739 854 1543 753 869 1558 752 868 1557 741 856 1545 754 870 1559 740 855 1544 740 855 1544 754 870 1559 753 869 1558 742 857 1546 755 871 1560 741 856 1545 741 856 1545 755 871 1560 754 870 1559 743 858 1547 756 872 1561 742 857 1546 742 857 1546 756 872 1561 755 871 1560 744 859 1548 757 873 1562 743 858 1547 743 858 1547 757 873 1562 756 872 1561 744 859 1548 745 860 1549 757 873 1562 757 873 1562 745 860 1549 758 874 1563 746 861 1550 759 875 1564 745 860 1549 745 860 1549 759 875 1564 758 874 1563 747 862 1551 760 876 1565 746 861 1550 746 861 1550 760 876 1565 759 875 1564 1335 877 1566 1334 863 1552 1984 878 1567 1984 878 1567 1334 863 1552 1983 864 1553 749 866 1555 750 865 1554 762 880 1569 762 880 1569 750 865 1554 763 879 1568 751 867 1556 764 881 1570 750 865 1554 750 865 1554 764 881 1570 763 879 1568 752 868 1557 765 882 1571 751 867 1556 751 867 1556 765 882 1571 764 881 1570 753 869 1558 766 883 1572 752 868 1557 752 868 1557 766 883 1572 765 882 1571 754 870 1559 767 884 1573 753 869 1558 753 869 1558 767 884 1573 766 883 1572 755 871 1560 768 885 1574 754 870 1559 754 870 1559 768 885 1574 767 884 1573 756 872 1561 769 886 1575 755 871 1560 755 871 1560 769 886 1575 768 885 1574 757 873 1562 770 887 1576 756 872 1561 756 872 1561 770 887 1576 769 886 1575 757 873 1562 758 874 1563 770 887 1576 770 887 1576 758 874 1563 771 888 1577 759 875 1564 772 889 1578 758 874 1563 758 874 1563 772 889 1578 771 888 1577 760 876 1565 773 890 1579 759 875 1564 759 875 1564 773 890 1579 772 889 1578 1336 891 1580 1335 877 1566 1981 892 1581 1981 892 1581 1335 877 1566 1984 878 1567 762 880 1569 763 879 1568 775 894 1583 775 894 1583 763 879 1568 776 893 1582 764 881 1570 777 895 1584 763 879 1568 763 879 1568 777 895 1584 776 893 1582 765 882 1571 778 896 1585 764 881 1570 764 881 1570 778 896 1585 777 895 1584 766 883 1572 779 897 1586 765 882 1571 765 882 1571 779 897 1586 778 896 1585 767 884 1573 780 898 1587 766 883 1572 766 883 1572 780 898 1587 779 897 1586 768 885 1574 781 899 1588 767 884 1573 767 884 1573 781 899 1588 780 898 1587 769 886 1575 782 900 1589 768 885 1574 768 885 1574 782 900 1589 781 899 1588 770 887 1576 783 901 1590 769 886 1575 769 886 1575 783 901 1590 782 900 1589 770 887 1576 771 888 1577 783 901 1590 783 901 1590 771 888 1577 784 902 1591 771 888 1577 772 889 1578 784 902 1591 784 902 1591 772 889 1578 785 903 1592 773 890 1579 786 904 1593 772 889 1578 772 889 1578 786 904 1593 785 903 1592 2 361 1172 1336 891 1580 87 359 1170 87 359 1170 1336 891 1580 1981 892 1581 775 894 1583 776 893 1582 787 906 1595 787 906 1595 776 893 1582 788 905 1594 777 895 1584 789 907 1596 776 893 1582 776 893 1582 789 907 1596 788 905 1594 778 896 1585 790 908 1597 777 895 1584 777 895 1584 790 908 1597 789 907 1596 779 897 1586 791 909 1598 778 896 1585 778 896 1585 791 909 1598 790 908 1597 780 898 1587 792 910 1599 779 897 1586 779 897 1586 792 910 1599 791 909 1598 781 899 1588 793 911 1600 780 898 1587 780 898 1587 793 911 1600 792 910 1599 782 900 1589 794 912 1601 781 899 1588 781 899 1588 794 912 1601 793 911 1600 783 901 1590 795 913 1602 782 900 1589 782 900 1589 795 913 1602 794 912 1601 783 901 1590 784 902 1591 795 913 1602 795 913 1602 784 902 1591 796 914 1603 784 902 1591 785 903 1592 796 914 1603 796 914 1603 785 903 1592 797 915 1604 786 904 1593 798 916 1605 785 903 1592 785 903 1592 798 916 1605 797 915 1604 787 906 1595 788 905 1594 799 918 1607 799 918 1607 788 905 1594 800 917 1606 789 907 1596 801 919 1608 788 905 1594 788 905 1594 801 919 1608 800 917 1606 790 908 1597 802 920 1609 789 907 1596 789 907 1596 802 920 1609 801 919 1608 791 909 1598 803 921 1610 790 908 1597 790 908 1597 803 921 1610 802 920 1609 792 910 1599 804 922 1611 791 909 1598 791 909 1598 804 922 1611 803 921 1610 793 911 1600 805 923 1612 792 910 1599 792 910 1599 805 923 1612 804 922 1611 794 912 1601 806 924 1613 793 911 1600 793 911 1600 806 924 1613 805 923 1612 795 913 1602 807 925 1614 794 912 1601 794 912 1601 807 925 1614 806 924 1613 795 913 1602 796 914 1603 807 925 1614 807 925 1614 796 914 1603 808 926 1615 796 914 1603 797 915 1604 808 926 1615 808 926 1615 797 915 1604 809 927 1616 798 916 1605 810 928 1617 797 915 1604 797 915 1604 810 928 1617 809 927 1616 799 918 1607 800 917 1606 811 930 1619 811 930 1619 800 917 1606 812 929 1618 801 919 1608 813 931 1620 800 917 1606 800 917 1606 813 931 1620 812 929 1618 802 920 1609 814 932 1621 801 919 1608 801 919 1608 814 932 1621 813 931 1620 803 921 1610 815 933 1622 802 920 1609 802 920 1609 815 933 1622 814 932 1621 804 922 1611 816 934 1623 803 921 1610 803 921 1610 816 934 1623 815 933 1622 805 923 1612 817 935 1624 804 922 1611 804 922 1611 817 935 1624 816 934 1623 806 924 1613 818 936 1625 805 923 1612 805 923 1612 818 936 1625 817 935 1624 807 925 1614 819 937 1626 806 924 1613 806 924 1613 819 937 1626 818 936 1625 807 925 1614 808 926 1615 819 937 1626 819 937 1626 808 926 1615 820 938 1627 808 926 1615 809 927 1616 820 938 1627 820 938 1627 809 927 1616 821 939 1628 810 928 1617 822 940 1629 809 927 1616 809 927 1616 822 940 1629 821 939 1628 811 930 1619 812 929 1618 823 942 1631 823 942 1631 812 929 1618 824 941 1630 813 931 1620 825 943 1632 812 929 1618 812 929 1618 825 943 1632 824 941 1630 814 932 1621 826 944 1633 813 931 1620 813 931 1620 826 944 1633 825 943 1632 815 933 1622 827 945 1634 814 932 1621 814 932 1621 827 945 1634 826 944 1633 816 934 1623 828 946 1635 815 933 1622 815 933 1622 828 946 1635 827 945 1634 817 935 1624 829 947 1636 816 934 1623 816 934 1623 829 947 1636 828 946 1635 818 936 1625 830 948 1637 817 935 1624 817 935 1624 830 948 1637 829 947 1636 818 936 1625 819 937 1626 830 948 1637 830 948 1637 819 937 1626 831 949 1638 819 937 1626 820 938 1627 831 949 1638 831 949 1638 820 938 1627 832 950 1639 820 938 1627 821 939 1628 832 950 1639 832 950 1639 821 939 1628 833 951 1640 821 939 1628 822 940 1629 833 951 1640 833 951 1640 822 940 1629 834 952 1641 823 942 1631 824 941 1630 846 954 1643 846 954 1643 824 941 1630 835 953 1642 825 943 1632 836 955 1644 824 941 1630 824 941 1630 836 955 1644 835 953 1642 826 944 1633 837 956 1645 825 943 1632 825 943 1632 837 956 1645 836 955 1644 827 945 1634 838 957 1646 826 944 1633 826 944 1633 838 957 1646 837 956 1645 828 946 1635 839 958 1647 827 945 1634 827 945 1634 839 958 1647 838 957 1646 829 947 1636 840 959 1648 828 946 1635 828 946 1635 840 959 1648 839 958 1647 830 948 1637 841 960 1649 829 947 1636 829 947 1636 841 960 1649 840 959 1648 830 948 1637 831 949 1638 841 960 1649 841 960 1649 831 949 1638 842 961 1650 831 949 1638 832 950 1639 842 961 1650 842 961 1650 832 950 1639 843 962 1651 833 951 1640 844 963 1652 832 950 1639 832 950 1639 844 963 1652 843 962 1651 833 951 1640 834 952 1641 844 963 1652 844 963 1652 834 952 1641 845 964 1653 846 954 1643 835 953 1642 847 966 1655 847 966 1655 835 953 1642 848 965 1654 835 953 1642 836 955 1644 848 965 1654 848 965 1654 836 955 1644 849 967 1656 836 955 1644 837 956 1645 849 967 1656 849 967 1656 837 956 1645 850 968 1657 837 956 1645 838 957 1646 850 968 1657 850 968 1657 838 957 1646 851 969 1658 839 958 1647 852 970 1659 838 957 1646 838 957 1646 852 970 1659 851 969 1658 840 959 1648 853 971 1660 839 958 1647 839 958 1647 853 971 1660 852 970 1659 841 960 1649 854 972 1661 840 959 1648 840 959 1648 854 972 1661 853 971 1660 841 960 1649 842 961 1650 854 972 1661 854 972 1661 842 961 1650 855 973 1662 843 962 1651 856 974 1663 842 961 1650 842 961 1650 856 974 1663 855 973 1662 844 963 1652 857 975 1664 843 962 1651 843 962 1651 857 975 1664 856 974 1663 845 964 1653 858 976 1665 844 963 1652 844 963 1652 858 976 1665 857 975 1664 847 966 1655 848 965 1654 859 978 1667 859 978 1667 848 965 1654 860 977 1666 848 965 1654 849 967 1656 860 977 1666 860 977 1666 849 967 1656 861 979 1668 849 967 1656 850 968 1657 861 979 1668 861 979 1668 850 968 1657 862 980 1669 853 971 1660 854 972 1661 863 981 1670 855 973 1662 864 982 1671 854 972 1661 854 972 1661 864 982 1671 863 981 1670 856 974 1663 865 983 1672 855 973 1662 855 973 1662 865 983 1672 864 982 1671 857 975 1664 866 984 1673 856 974 1663 856 974 1663 866 984 1673 865 983 1672 858 976 1665 867 985 1674 857 975 1664 857 975 1664 867 985 1674 866 984 1673 859 978 1667 860 977 1666 868 987 1676 868 987 1676 860 977 1666 869 986 1675 860 977 1666 861 979 1668 869 986 1675 869 986 1675 861 979 1668 870 988 1677 868 987 1676 869 986 1675 871 990 1679 871 990 1679 869 986 1675 872 989 1678 870 988 1677 873 991 1680 869 986 1675 869 986 1675 873 991 1680 872 989 1678 875 992 1681 874 993 1682 865 983 1672 865 983 1672 874 993 1682 864 982 1671 866 984 1673 876 994 1683 865 983 1672 865 983 1672 876 994 1683 875 992 1681 867 985 1674 877 995 1684 866 984 1673 866 984 1673 877 995 1684 876 994 1683 871 990 1679 872 989 1678 878 997 1686 878 997 1686 872 989 1678 879 996 1685 873 991 1680 880 998 1687 872 989 1678 872 989 1678 880 998 1687 879 996 1685 881 1000 1689 874 993 1682 882 999 1688 882 999 1688 874 993 1682 875 992 1681 875 992 1681 876 994 1683 882 999 1688 882 999 1688 876 994 1683 883 1001 1690 877 995 1684 884 1002 1691 876 994 1683 876 994 1683 884 1002 1691 883 1001 1690 878 997 1686 879 996 1685 885 1004 1693 885 1004 1693 879 996 1685 886 1003 1692 879 996 1685 880 998 1687 886 1003 1692 886 1003 1692 880 998 1687 887 1005 1694 889 1006 1695 888 1007 1696 882 999 1688 882 999 1688 888 1007 1696 881 1000 1689 882 999 1688 883 1001 1690 889 1006 1695 889 1006 1695 883 1001 1690 890 1008 1697 884 1002 1691 891 1009 1698 883 1001 1690 883 1001 1690 891 1009 1698 890 1008 1697 885 1004 1693 886 1003 1692 892 1011 1700 892 1011 1700 886 1003 1692 893 1010 1699 886 1003 1692 887 1005 1694 893 1010 1699 893 1010 1699 887 1005 1694 894 1012 1701 888 1007 1696 889 1006 1695 1313 1013 1702 1313 1013 1702 889 1006 1695 895 1014 1703 889 1006 1695 890 1008 1697 895 1014 1703 895 1014 1703 890 1008 1697 896 1015 1704 890 1008 1697 891 1009 1698 896 1015 1704 896 1015 1704 891 1009 1698 1314 1016 1705 891 1009 1698 1337 1017 1706 1314 1016 1705 1314 1016 1705 1337 1017 1706 897 1018 1707 1985 1019 1708 1337 1017 1706 1986 1021 1710 1986 1021 1710 1337 1017 1706 320 1020 1709 892 1011 1700 893 1010 1699 898 1023 1712 898 1023 1712 893 1010 1699 899 1022 1711 893 1010 1699 894 1012 1701 899 1022 1711 899 1022 1711 894 1012 1701 900 1024 1713 1312 1025 1714 1311 1026 1715 905 1028 1717 905 1028 1717 1311 1026 1715 906 1027 1716 697 808 1497 696 807 1496 907 1029 1718 698 811 1500 697 808 1497 907 1029 1718 699 813 1502 698 811 1500 907 1029 1718 700 815 1504 699 813 1502 907 1029 1718 701 817 1506 700 815 1504 907 1029 1718 702 819 1508 701 817 1506 907 1029 1718 703 821 1510 702 819 1508 907 1029 1718 704 823 1512 703 821 1510 907 1029 1718 705 825 1514 704 823 1512 907 1029 1718 706 827 1516 705 825 1514 907 1029 1718 707 829 1518 706 827 1516 907 1029 1718 707 829 1518 907 1029 1718 1331 831 1520 708 833 1522 1980 836 1525 907 1029 1718 941 1030 312 980 1031 313 1007 1033 315 1007 1033 315 980 1031 313 1044 1032 314 1007 1033 315 1028 1034 316 941 1030 312 941 1030 312 1028 1034 316 956 1035 317 942 1036 318 958 1037 319 1007 1033 315 1007 1033 315 958 1037 319 1028 1034 316 1007 1033 315 1044 1032 314 942 1036 318 942 1036 318 1044 1032 314 981 1038 320 943 1039 321 979 1040 322 1008 1042 324 1008 1042 324 979 1040 322 1043 1041 323 1008 1042 324 1029 1043 325 943 1039 321 943 1039 321 1029 1043 325 955 1044 326 941 1030 312 956 1035 317 1008 1042 324 1008 1042 324 956 1035 317 1029 1043 325 1008 1042 324 1043 1041 323 941 1030 312 941 1030 312 1043 1041 323 980 1031 313 944 1045 327 978 1046 328 1009 1048 330 1009 1048 330 978 1046 328 1042 1047 329 1009 1048 330 1027 1049 331 944 1045 327 944 1045 327 1027 1049 331 953 1050 332 943 1039 321 955 1044 326 1009 1048 330 1009 1048 330 955 1044 326 1027 1049 331 1009 1048 330 1042 1047 329 943 1039 321 943 1039 321 1042 1047 329 979 1040 322 977 1052 334 1041 1053 335 945 1051 333 945 1051 333 1041 1053 335 1010 1054 336 1010 1054 336 1030 1055 337 945 1051 333 945 1051 333 1030 1055 337 960 1056 338 944 1045 327 953 1050 332 1010 1054 336 1010 1054 336 953 1050 332 1030 1055 337 1010 1054 336 1041 1053 335 944 1045 327 944 1045 327 1041 1053 335 978 1046 328 1032 1058 340 964 1059 341 1011 1057 339 1011 1057 339 964 1059 341 946 1060 342 960 1056 338 1032 1058 340 945 1051 333 945 1051 333 1032 1058 340 1011 1057 339 1011 1057 339 946 1060 342 1067 1062 344 1067 1062 344 946 1060 342 1066 1061 343 976 1064 346 1040 1065 347 947 1063 345 947 1063 345 1040 1065 347 1012 1066 348 1034 1067 349 968 1068 350 1012 1066 348 1012 1066 348 968 1068 350 947 1063 345 964 1059 341 1034 1067 349 946 1060 342 946 1060 342 1034 1067 349 1012 1066 348 1040 1065 347 1066 1061 343 1012 1066 348 1012 1066 348 1066 1061 343 946 1060 342 975 1070 352 1039 1071 353 948 1069 351 948 1069 351 1039 1071 353 1013 1072 354 1036 1073 355 971 1074 356 1013 1072 354 1013 1072 354 971 1074 356 948 1069 351 968 1068 350 1036 1073 355 947 1063 345 947 1063 345 1036 1073 355 1013 1072 354 1039 1071 353 976 1064 346 1013 1072 354 1013 1072 354 976 1064 346 947 1063 345 973 1076 358 1038 1077 359 949 1075 357 949 1075 357 1038 1077 359 1014 1078 360 1035 1079 361 967 1080 362 1014 1078 360 1014 1078 360 967 1080 362 949 1075 357 971 1074 356 1035 1079 361 948 1069 351 948 1069 351 1035 1079 361 1014 1078 360 1038 1077 359 975 1070 352 1014 1078 360 1014 1078 360 975 1070 352 948 1069 351 974 1082 364 1037 1083 365 950 1081 363 950 1081 363 1037 1083 365 1015 1084 366 1033 1085 367 963 1086 368 1015 1084 366 1015 1084 366 963 1086 368 950 1081 363 967 1080 362 1033 1085 367 949 1075 357 949 1075 357 1033 1085 367 1015 1084 366 1037 1083 365 973 1076 358 1015 1084 366 1015 1084 366 973 1076 358 949 1075 357 942 1036 318 981 1038 320 1016 1088 370 1016 1088 370 981 1038 320 1045 1087 369 1016 1088 370 1031 1089 371 942 1036 318 942 1036 318 1031 1089 371 958 1037 319 950 1081 363 963 1086 368 1016 1088 370 1016 1088 370 963 1086 368 1031 1089 371 1016 1088 370 1045 1087 369 950 1081 363 950 1081 363 1045 1087 369 974 1082 364 1038 1077 359 973 1076 358 1044 1032 314 1044 1032 314 973 1076 358 981 1038 320 986 1090 1719 1048 1091 1720 1906 1093 1722 1906 1093 1722 1048 1091 1720 1907 1092 1721 923 1094 1723 1017 1095 1724 1908 1096 1725 1908 1096 1725 1017 1095 1724 1907 1092 1721 990 1097 1726 1050 1098 1727 1913 1100 1729 1913 1100 1729 1050 1098 1727 1911 1099 1728 925 1101 1730 1018 1102 1731 1909 1103 1732 1909 1103 1732 1018 1102 1731 1911 1099 1728 909 1104 1733 1051 1105 1734 1909 1103 1732 1909 1103 1732 1051 1105 1734 1905 1106 1735 951 1107 1736 1019 1108 1737 1906 1093 1722 1906 1093 1722 1019 1108 1737 1905 1106 1735 1052 1110 1739 1910 1111 1740 908 1109 1738 908 1109 1738 1910 1111 1740 1908 1096 1725 924 1112 1741 1020 1113 1742 1912 1114 1743 1912 1114 1743 1020 1113 1742 1910 1111 1740 910 1115 1744 1053 1116 1745 1912 1114 1743 1912 1114 1743 1053 1116 1745 1914 1117 1746 1021 1119 1748 1914 1117 1746 926 1118 1747 926 1118 1747 1914 1117 1746 1916 1120 1749 1022 1122 1751 1918 1123 1752 927 1121 1750 927 1121 1750 1918 1123 1752 1920 1124 1753 1046 1126 1755 1918 1123 1752 982 1125 1754 982 1125 1754 1918 1123 1752 1916 1120 1749 1047 1128 1757 1922 1129 1758 984 1127 1756 984 1127 1756 1922 1129 1758 1920 1124 1753 1023 1131 1760 1922 1129 1758 929 1130 1759 929 1130 1759 1922 1129 1758 1924 1132 1761 1054 1134 1763 1923 1135 1764 911 1133 1762 911 1133 1762 1923 1135 1764 1924 1132 1761 1024 1137 1766 1923 1135 1764 930 1136 1765 930 1136 1765 1923 1135 1764 1921 1138 1767 1049 1140 1769 1919 1141 1770 988 1139 1768 988 1139 1768 1919 1141 1770 1921 1138 1767 1025 1143 1772 1919 1141 1770 928 1142 1771 928 1142 1771 1919 1141 1770 1917 1144 1773 1055 1146 1775 1915 1147 1776 912 1145 1774 912 1145 1774 1915 1147 1776 1917 1144 1773 1026 1149 1778 1915 1147 1776 952 1148 1777 952 1148 1777 1915 1147 1776 1913 1100 1729 1027 1049 331 954 1150 969 953 1050 332 953 1050 332 954 1150 969 914 1151 963 954 1152 969 1027 1049 331 913 1153 967 913 1153 967 1027 1049 331 955 1044 326 1028 1034 316 957 1154 968 956 1035 317 956 1035 317 957 1154 968 916 1155 965 957 1156 968 1028 1034 316 915 1157 962 915 1157 962 1028 1034 316 958 1037 319 1029 1043 325 959 1158 966 955 1044 326 955 1044 326 959 1158 966 913 1159 967 959 1160 966 1029 1043 325 916 1161 965 916 1161 965 1029 1043 325 956 1035 317 1030 1055 337 961 1162 964 960 1056 338 960 1056 338 961 1162 964 917 1163 959 961 1164 964 1030 1055 337 914 1165 963 914 1165 963 1030 1055 337 953 1050 332 1031 1089 371 962 1166 961 958 1037 319 958 1037 319 962 1166 961 915 1167 962 962 1168 961 1031 1089 371 918 1169 958 918 1169 958 1031 1089 371 963 1086 368 964 1059 341 1032 1058 340 919 1171 955 919 1171 955 1032 1058 340 965 1170 960 1032 1058 340 960 1056 338 965 1172 960 965 1172 960 960 1056 338 917 1173 959 963 1086 368 1033 1085 367 918 1175 958 918 1175 958 1033 1085 367 966 1174 957 1033 1085 367 967 1080 362 966 1176 957 966 1176 957 967 1080 362 920 1177 954 968 1068 350 1034 1067 349 921 1179 950 921 1179 950 1034 1067 349 969 1178 956 1034 1067 349 964 1059 341 969 1180 956 969 1180 956 964 1059 341 919 1181 955 967 1080 362 1035 1079 361 920 1183 954 920 1183 954 1035 1079 361 970 1182 953 1035 1079 361 971 1074 356 970 1184 953 970 1184 953 971 1074 356 922 1185 952 971 1074 356 1036 1073 355 922 1187 952 922 1187 952 1036 1073 355 972 1186 951 1036 1073 355 968 1068 350 972 1188 951 972 1188 951 968 1068 350 921 1189 950 954 1191 1780 1020 1113 1742 914 1190 1779 914 1190 1779 1020 1113 1742 924 1112 1741 1020 1113 1742 954 1192 1780 923 1094 1723 923 1094 1723 954 1192 1780 913 1193 1781 957 1195 1783 1019 1108 1737 916 1194 1782 916 1194 1782 1019 1108 1737 951 1107 1736 925 1101 1730 1019 1108 1737 915 1197 1784 915 1197 1784 1019 1108 1737 957 1196 1783 923 1094 1723 913 1198 1781 1017 1095 1724 1017 1095 1724 913 1198 1781 959 1199 1785 916 1200 1782 951 1107 1736 959 1201 1785 959 1201 1785 951 1107 1736 1017 1095 1724 961 1203 1787 1021 1119 1748 917 1202 1786 917 1202 1786 1021 1119 1748 926 1118 1747 914 1204 1779 924 1112 1741 961 1205 1787 961 1205 1787 924 1112 1741 1021 1119 1748 915 1206 1784 962 1207 1788 925 1101 1730 925 1101 1730 962 1207 1788 1018 1102 1731 952 1148 1777 1018 1102 1731 918 1209 1789 918 1209 1789 1018 1102 1731 962 1208 1788 965 1211 1791 1022 1122 1751 919 1210 1790 919 1210 1790 1022 1122 1751 927 1121 1750 917 1212 1786 926 1118 1747 965 1213 1791 965 1213 1791 926 1118 1747 1022 1122 1751 918 1214 1789 966 1215 1792 952 1148 1777 952 1148 1777 966 1215 1792 1026 1149 1778 928 1142 1771 1026 1149 1778 920 1217 1793 920 1217 1793 1026 1149 1778 966 1216 1792 969 1219 1795 1023 1131 1760 921 1218 1794 921 1218 1794 1023 1131 1760 929 1130 1759 919 1220 1790 927 1121 1750 969 1221 1795 969 1221 1795 927 1121 1750 1023 1131 1760 920 1222 1793 970 1223 1796 928 1142 1771 928 1142 1771 970 1223 1796 1025 1143 1772 930 1136 1765 1025 1143 1772 922 1225 1797 922 1225 1797 1025 1143 1772 970 1224 1796 930 1136 1765 922 1226 1797 1024 1137 1766 1024 1137 1766 922 1226 1797 972 1227 1798 921 1228 1794 929 1130 1759 972 1229 1798 972 1229 1798 929 1130 1759 1024 1137 1766 1046 1126 1755 996 1230 1799 984 1127 1756 984 1127 1756 996 1230 1799 932 1231 1800 1046 1126 1755 982 1125 1754 996 1230 1799 996 1230 1799 982 1125 1754 931 1232 1801 1047 1128 1757 983 1233 1802 911 1133 1762 911 1133 1762 983 1233 1802 933 1234 1803 983 1233 1802 1047 1128 1757 932 1231 1800 932 1231 1800 1047 1128 1757 984 1127 1756 908 1109 1738 1048 1091 1720 935 1236 1805 935 1236 1805 1048 1091 1720 985 1235 1804 1048 1091 1720 986 1090 1719 985 1235 1804 985 1235 1804 986 1090 1719 934 1237 1806 1049 1140 1769 987 1238 1807 912 1145 1774 912 1145 1774 987 1238 1807 937 1239 1808 987 1238 1807 1049 1140 1769 936 1240 1809 936 1240 1809 1049 1140 1769 988 1139 1768 909 1104 1733 1050 1098 1727 939 1242 1811 939 1242 1811 1050 1098 1727 989 1241 1810 989 1241 1810 1050 1098 1727 938 1243 1812 938 1243 1812 1050 1098 1727 990 1097 1726 986 1090 1719 1051 1105 1734 934 1237 1806 934 1237 1806 1051 1105 1734 991 1244 1813 1051 1105 1734 909 1104 1733 991 1244 1813 991 1244 1813 909 1104 1733 939 1242 1811 910 1115 1744 1052 1110 1739 940 1246 1815 940 1246 1815 1052 1110 1739 992 1245 1814 1052 1110 1739 908 1109 1738 992 1245 1814 992 1245 1814 908 1109 1738 935 1236 1805 982 1125 1754 1053 1116 1745 931 1232 1801 931 1232 1801 1053 1116 1745 993 1247 1816 1053 1116 1745 910 1115 1744 993 1247 1816 993 1247 1816 910 1115 1744 940 1246 1815 1054 1134 1763 994 1248 1817 988 1139 1768 988 1139 1768 994 1248 1817 936 1240 1809 994 1248 1817 1054 1134 1763 933 1234 1803 933 1234 1803 1054 1134 1763 911 1133 1762 1055 1146 1775 995 1249 1818 990 1097 1726 990 1097 1726 995 1249 1818 938 1243 1812 995 1249 1818 1055 1146 1775 937 1239 1808 937 1239 1808 1055 1146 1775 912 1145 1774 1056 1250 1819 997 1251 1820 996 1230 1799 996 1230 1799 997 1251 1820 932 1231 1800 998 1252 1821 1056 1250 1819 931 1232 1801 931 1232 1801 1056 1250 1819 996 1230 1799 983 1233 1802 1057 1253 1822 933 1234 1803 933 1234 1803 1057 1253 1822 999 1254 1823 1057 1253 1822 983 1233 1802 997 1251 1820 997 1251 1820 983 1233 1802 932 1231 1800 1058 1255 1824 1000 1256 1825 985 1235 1804 985 1235 1804 1000 1256 1825 935 1236 1805 1001 1257 1826 1058 1255 1824 934 1237 1806 934 1237 1806 1058 1255 1824 985 1235 1804 987 1238 1807 1059 1258 1827 937 1239 1808 937 1239 1808 1059 1258 1827 1002 1259 1828 1059 1258 1827 987 1238 1807 1003 1260 1829 1003 1260 1829 987 1238 1807 936 1240 1809 989 1241 1810 1060 1261 1830 939 1242 1811 939 1242 1811 1060 1261 1830 1004 1262 1831 1060 1261 1830 989 1241 1810 1005 1263 1832 1005 1263 1832 989 1241 1810 938 1243 1812 1061 1264 1833 1001 1257 1826 991 1244 1813 991 1244 1813 1001 1257 1826 934 1237 1806 1004 1262 1831 1061 1264 1833 939 1242 1811 939 1242 1811 1061 1264 1833 991 1244 1813 1062 1265 1834 1006 1266 1835 992 1245 1814 992 1245 1814 1006 1266 1835 940 1246 1815 1000 1256 1825 1062 1265 1834 935 1236 1805 935 1236 1805 1062 1265 1834 992 1245 1814 1063 1267 1836 998 1252 1821 993 1247 1816 993 1247 1816 998 1252 1821 931 1232 1801 1006 1266 1835 1063 1267 1836 940 1246 1815 940 1246 1815 1063 1267 1836 993 1247 1816 994 1248 1817 1064 1268 1837 936 1240 1809 936 1240 1809 1064 1268 1837 1003 1260 1829 1064 1268 1837 994 1248 1817 999 1254 1823 999 1254 1823 994 1248 1817 933 1234 1803 995 1249 1818 1065 1269 1838 938 1243 1812 938 1243 1812 1065 1269 1838 1005 1263 1832 1065 1269 1838 995 1249 1818 1002 1259 1828 1002 1259 1828 995 1249 1818 937 1239 1808 1037 1083 365 974 1082 364 973 1076 358 973 1076 358 974 1082 364 981 1038 320 974 1082 364 1045 1087 369 981 1038 320 980 1031 313 1043 1041 323 975 1070 352 975 1070 352 1043 1041 323 1039 1071 353 1044 1032 314 980 1031 313 1038 1077 359 1038 1077 359 980 1031 313 975 1070 352 1043 1041 323 979 1040 322 1039 1071 353 1039 1071 353 979 1040 322 976 1064 346 1041 1053 335 977 1052 334 978 1046 328 1066 1061 343 978 1046 328 1067 1062 344 978 1046 328 977 1052 334 1067 1062 344 1042 1047 329 1040 1065 347 979 1040 322 979 1040 322 1040 1065 347 976 1064 346 1067 1062 344 977 1052 334 1011 1057 339 1011 1057 339 977 1052 334 945 1051 333 978 1046 328 1066 1061 343 1042 1047 329 1042 1047 329 1066 1061 343 1040 1065 347 997 1251 1820 1056 1250 1819 903 1271 1840 903 1271 1840 1056 1250 1819 904 1270 1839 1056 1250 1819 998 1252 1821 904 1270 1839 904 1270 1839 998 1252 1821 1313 1013 1702 1057 1253 1822 902 1272 1841 999 1254 1823 999 1254 1823 902 1272 1841 901 1273 1842 1058 1255 1824 863 981 1670 1000 1256 1825 1000 1256 1825 863 981 1670 864 982 1671 1058 1255 1824 1001 1257 1826 863 981 1670 863 981 1670 1001 1257 1826 853 971 1660 1059 1258 1827 887 1005 1694 1002 1259 1828 1002 1259 1828 887 1005 1694 880 998 1687 1003 1260 1829 894 1012 1701 1059 1258 1827 1059 1258 1827 894 1012 1701 887 1005 1694 1004 1262 1831 1060 1261 1830 851 969 1658 851 969 1658 1060 1261 1830 862 980 1669 1060 1261 1830 1005 1263 1832 862 980 1669 862 980 1669 1005 1263 1832 870 988 1677 1061 1264 1833 852 970 1659 1001 1257 1826 1001 1257 1826 852 970 1659 853 971 1660 1061 1264 1833 1004 1262 1831 852 970 1659 852 970 1659 1004 1262 1831 851 969 1658 1006 1266 1835 1062 1265 1834 881 1000 1689 881 1000 1689 1062 1265 1834 874 993 1682 1062 1265 1834 1000 1256 1825 874 993 1682 874 993 1682 1000 1256 1825 864 982 1671 1063 1267 1836 1006 1266 1835 888 1007 1696 888 1007 1696 1006 1266 1835 881 1000 1689 1003 1260 1829 1064 1268 1837 894 1012 1701 894 1012 1701 1064 1268 1837 900 1024 1713 999 1254 1823 901 1273 1842 1064 1268 1837 1064 1268 1837 901 1273 1842 900 1024 1713 1005 1263 1832 1065 1269 1838 870 988 1677 870 988 1677 1065 1269 1838 873 991 1680 1065 1269 1838 1002 1259 1828 873 991 1680 873 991 1680 1002 1259 1828 880 998 1687 997 1251 1820 903 1271 1840 1057 1253 1822 1057 1253 1822 903 1271 1840 902 1272 1841 870 988 1677 861 979 1668 862 980 1669 862 980 1669 850 968 1657 851 969 1658 1063 1267 1836 888 1007 1696 998 1252 1821 998 1252 1821 888 1007 1696 1313 1013 1702 1116 1274 372 1237 1275 373 1117 1276 374 1237 1275 373 1152 1278 376 1151 1277 375 1151 1277 375 1152 1278 376 1117 1276 374 1153 1279 377 1238 1280 378 1070 1282 380 1070 1282 380 1238 1280 378 1092 1281 379 1238 1280 378 1153 1279 377 1308 1283 381 1308 1283 381 1153 1279 377 1309 1284 382 1239 1285 383 1310 1286 384 1153 1279 377 1153 1279 377 1310 1286 384 1309 1284 382 1110 1287 385 1287 1288 386 1093 1289 387 1093 1289 387 1287 1288 386 1239 1285 383 1239 1285 383 1153 1279 377 1093 1289 387 1093 1289 387 1153 1279 377 1070 1282 380 1118 1291 389 1154 1292 390 1219 1290 388 1219 1290 388 1154 1292 390 1297 1293 391 1115 1295 393 1297 1293 391 1113 1294 392 1113 1294 392 1297 1293 391 1154 1292 390 1112 1297 395 1150 1298 396 1120 1296 394 1120 1296 394 1150 1298 396 1155 1299 397 1071 1300 398 1155 1299 397 1069 1302 399 1069 1302 399 1155 1299 397 1150 1301 396 1154 1292 390 1240 1303 400 1113 1305 392 1113 1305 392 1240 1303 400 1156 1304 401 1240 1303 400 1277 1307 402 1156 1306 401 1156 1306 401 1277 1307 402 1114 1308 403 1277 1307 402 1240 1303 400 1222 1310 405 1222 1310 405 1240 1303 400 1157 1309 404 1240 1303 400 1154 1292 390 1157 1309 404 1157 1309 404 1154 1292 390 1118 1291 389 1121 1312 407 1158 1313 408 1218 1311 406 1218 1311 406 1158 1313 408 1274 1314 409 1219 1290 388 1274 1314 409 1118 1291 389 1118 1291 389 1274 1314 409 1158 1313 408 1159 1315 410 1241 1316 411 1123 1318 413 1123 1318 413 1241 1316 411 1160 1317 412 1241 1316 411 1245 1319 414 1160 1317 412 1160 1317 412 1245 1319 414 1124 1320 415 1245 1319 414 1241 1316 411 1161 1321 416 1161 1321 416 1241 1316 411 1122 1322 417 1122 1322 417 1241 1316 411 1159 1315 410 1162 1323 418 1242 1324 419 1120 1296 394 1120 1296 394 1242 1324 419 1119 1325 420 1242 1324 419 1162 1323 418 1220 1326 421 1220 1326 421 1162 1323 418 1125 1327 422 1162 1323 418 1243 1328 423 1125 1327 422 1125 1327 422 1243 1328 423 1163 1329 424 1243 1328 423 1094 1330 425 1163 1329 424 1163 1329 424 1094 1330 425 1072 1331 426 1094 1330 425 1243 1328 423 1071 1300 398 1071 1300 398 1243 1328 423 1155 1299 397 1243 1328 423 1162 1323 418 1155 1299 397 1155 1299 397 1162 1323 418 1120 1296 394 1278 1332 427 1244 1333 428 1223 1335 430 1223 1335 430 1244 1333 428 1164 1334 429 1164 1334 429 1244 1333 428 1121 1312 407 1121 1312 407 1244 1333 428 1158 1313 408 1244 1333 428 1157 1309 404 1158 1313 408 1158 1313 408 1157 1309 404 1118 1291 389 1244 1333 428 1278 1332 427 1157 1309 404 1157 1309 404 1278 1332 427 1222 1310 405 1124 1320 415 1245 1319 414 1126 1337 432 1126 1337 432 1245 1319 414 1165 1336 431 1165 1336 431 1245 1319 414 1166 1338 433 1129 1340 435 1167 1341 436 1208 1339 434 1208 1339 434 1167 1341 436 1128 1342 437 1167 1341 436 1129 1340 435 1209 1344 439 1209 1344 439 1129 1340 435 1296 1343 438 1168 1345 440 1246 1346 441 1073 1348 443 1073 1348 443 1246 1346 441 1095 1347 442 1095 1347 442 1246 1346 441 1074 1350 445 1074 1350 445 1246 1346 441 1266 1349 444 1246 1346 441 1167 1341 436 1266 1349 444 1266 1349 444 1167 1341 436 1209 1344 439 1246 1346 441 1168 1345 440 1167 1341 436 1167 1341 436 1168 1345 440 1128 1342 437 1228 1351 446 1247 1352 447 1131 1354 449 1131 1354 449 1247 1352 447 1170 1353 448 1247 1352 447 1169 1355 450 1170 1353 448 1170 1353 448 1169 1355 450 1130 1356 451 1248 1358 453 1172 1359 454 1171 1357 452 1171 1357 452 1172 1359 454 1132 1360 455 1248 1358 453 1237 1275 373 1172 1359 454 1172 1359 454 1237 1275 373 1116 1274 372 1301 1361 456 1174 1362 457 1171 1357 452 1171 1357 452 1174 1362 457 1248 1358 453 1248 1358 453 1173 1363 458 1237 1275 373 1237 1275 373 1173 1363 458 1152 1278 376 1173 1363 458 1248 1358 453 1133 1364 459 1133 1364 459 1248 1358 453 1174 1362 457 1175 1365 460 1249 1366 461 1306 1368 463 1306 1368 463 1249 1366 461 1307 1367 462 1249 1366 461 1238 1280 378 1307 1367 462 1307 1367 462 1238 1280 378 1308 1283 381 1238 1280 378 1249 1366 461 1092 1281 379 1092 1281 379 1249 1366 461 1096 1369 464 1249 1366 461 1175 1365 460 1096 1369 464 1096 1369 464 1175 1365 460 1075 1370 465 1218 1311 406 1273 1371 466 1121 1312 407 1121 1312 407 1273 1371 466 1176 1372 467 1135 1374 469 1176 1372 467 1134 1373 468 1134 1373 468 1176 1372 467 1273 1371 466 1177 1375 470 1250 1376 471 1136 1378 473 1136 1378 473 1250 1376 471 1178 1377 472 1250 1376 471 1179 1379 474 1178 1377 472 1178 1377 472 1179 1379 474 1137 1380 475 1179 1379 474 1250 1376 471 1132 1360 455 1132 1360 455 1250 1376 471 1171 1357 452 1251 1382 477 1177 1375 470 1180 1381 476 1180 1381 476 1177 1375 470 1136 1378 473 1174 1362 457 1301 1361 456 1235 1384 479 1181 1383 478 1235 1384 479 1301 1361 456 1181 1383 478 1251 1382 477 1126 1337 432 1126 1337 432 1251 1382 477 1182 1385 480 1251 1382 477 1180 1381 476 1182 1385 480 1182 1385 480 1180 1381 476 1138 1386 481 1252 1388 483 1179 1379 474 1183 1387 482 1183 1387 482 1179 1379 474 1132 1360 455 1179 1379 474 1252 1388 483 1137 1380 475 1137 1380 475 1252 1388 483 1184 1389 484 1252 1388 483 1286 1390 485 1184 1389 484 1184 1389 484 1286 1390 485 1232 1391 486 1286 1390 485 1252 1388 483 1233 1392 487 1233 1392 487 1252 1388 483 1183 1387 482 1217 1394 489 1272 1395 490 1139 1393 488 1139 1393 488 1272 1395 490 1185 1396 491 1140 1398 493 1185 1396 491 1216 1397 492 1216 1397 492 1185 1396 491 1272 1395 490 1186 1399 494 1253 1400 495 1142 1402 497 1142 1402 497 1253 1400 495 1187 1401 496 1253 1400 495 1188 1403 498 1187 1401 496 1187 1401 496 1188 1403 498 1144 1404 499 1188 1403 498 1253 1400 495 1143 1406 501 1143 1406 501 1253 1400 495 1189 1405 500 1253 1400 495 1186 1399 494 1189 1405 500 1189 1405 500 1186 1399 494 1141 1407 502 1190 1408 503 1254 1409 504 1145 1411 506 1145 1411 506 1254 1409 504 1191 1410 505 1254 1409 504 1192 1412 507 1191 1410 505 1191 1410 505 1192 1412 507 1130 1356 451 1254 1409 504 1186 1399 494 1192 1412 507 1192 1412 507 1186 1399 494 1142 1402 497 1186 1399 494 1254 1409 504 1141 1407 502 1141 1407 502 1254 1409 504 1190 1408 503 1193 1413 508 1255 1414 509 1225 1416 511 1225 1416 511 1255 1414 509 1281 1415 510 1255 1414 509 1194 1417 512 1281 1415 510 1281 1415 510 1194 1417 512 1226 1418 513 1194 1417 512 1255 1414 509 1140 1398 493 1140 1398 493 1255 1414 509 1185 1396 491 1255 1414 509 1193 1413 508 1185 1396 491 1185 1396 491 1193 1413 508 1139 1393 488 1256 1420 515 1188 1403 498 1195 1419 514 1195 1419 514 1188 1403 498 1143 1406 501 1188 1403 498 1256 1420 515 1144 1404 499 1144 1404 499 1256 1420 515 1196 1421 516 1256 1420 515 1284 1422 517 1196 1421 516 1196 1421 516 1284 1422 517 1230 1423 518 1284 1422 517 1256 1420 515 1231 1424 519 1231 1424 519 1256 1420 515 1195 1419 514 1216 1397 492 1271 1425 520 1140 1398 493 1140 1398 493 1271 1425 520 1194 1417 512 1227 1426 521 1226 1418 513 1271 1425 520 1271 1425 520 1226 1418 513 1194 1417 512 1257 1428 523 1283 1429 524 1197 1427 522 1197 1427 522 1283 1429 524 1229 1430 525 1283 1429 524 1257 1428 523 1230 1423 518 1230 1423 518 1257 1428 523 1196 1421 516 1196 1421 516 1257 1428 523 1144 1404 499 1144 1404 499 1257 1428 523 1187 1401 496 1257 1428 523 1197 1427 522 1187 1401 496 1187 1401 496 1197 1427 522 1142 1402 497 1198 1431 526 1258 1432 527 1125 1327 422 1125 1327 422 1258 1432 527 1220 1326 421 1258 1432 527 1198 1431 526 1221 1433 528 1221 1433 528 1198 1431 526 1146 1434 529 1259 1436 531 1199 1437 532 1200 1435 530 1200 1435 530 1199 1437 532 1147 1438 533 1174 1362 457 1260 1439 534 1133 1364 459 1133 1364 459 1260 1439 534 1201 1440 535 1304 1442 537 1305 1443 538 1302 1441 536 1302 1441 536 1305 1443 538 1201 1440 535 1198 1431 526 1261 1444 539 1146 1434 529 1146 1434 529 1261 1444 539 1203 1445 540 1261 1444 539 1097 1446 541 1203 1445 540 1203 1445 540 1097 1446 541 1076 1447 542 1097 1446 541 1261 1444 539 1072 1331 426 1072 1331 426 1261 1444 539 1163 1329 424 1261 1444 539 1198 1431 526 1163 1329 424 1163 1329 424 1198 1431 526 1125 1327 422 1262 1448 543 1175 1365 460 1305 1443 538 1305 1443 538 1175 1365 460 1306 1368 463 1175 1365 460 1262 1448 543 1075 1370 465 1075 1370 465 1262 1448 543 1098 1449 544 1262 1448 543 1204 1450 545 1098 1449 544 1098 1449 544 1204 1450 545 1077 1451 546 1204 1450 545 1262 1448 543 1304 1442 537 1304 1442 537 1262 1448 543 1305 1443 538 1148 1452 547 1276 1453 548 1146 1434 529 1146 1434 529 1276 1453 548 1221 1433 528 1199 1437 532 1206 1454 549 1147 1438 533 1147 1438 533 1206 1454 549 1205 1455 550 1303 1457 552 1304 1442 537 1265 1456 551 1265 1456 551 1304 1442 537 1302 1441 536 1078 1458 553 1263 1459 554 1076 1447 542 1076 1447 542 1263 1459 554 1203 1445 540 1263 1459 554 1148 1452 547 1203 1445 540 1203 1445 540 1148 1452 547 1146 1434 529 1204 1450 545 1264 1460 555 1077 1451 546 1077 1451 546 1264 1460 555 1099 1461 556 1264 1460 555 1204 1450 545 1303 1457 552 1303 1457 552 1204 1450 545 1304 1442 537 1206 1454 549 1129 1340 435 1205 1455 550 1205 1455 550 1129 1340 435 1208 1339 434 1074 1350 445 1266 1349 444 1078 1458 553 1078 1458 553 1266 1349 444 1263 1459 554 1266 1349 444 1209 1344 439 1263 1459 554 1263 1459 554 1209 1344 439 1148 1452 547 1267 1463 558 1210 1464 559 1279 1462 557 1279 1462 557 1210 1464 559 1224 1465 560 1210 1464 559 1267 1463 558 1135 1374 469 1135 1374 469 1267 1463 558 1176 1372 467 1267 1463 558 1164 1334 429 1176 1372 467 1176 1372 467 1164 1334 429 1121 1312 407 1164 1334 429 1267 1463 558 1223 1335 430 1223 1335 430 1267 1463 558 1279 1462 557 1285 1466 561 1268 1467 562 1232 1391 486 1232 1391 486 1268 1467 562 1184 1389 484 1268 1467 562 1211 1468 563 1184 1389 484 1184 1389 484 1211 1468 563 1137 1380 475 1211 1468 563 1268 1467 562 1143 1406 501 1143 1406 501 1268 1467 562 1195 1419 514 1268 1467 562 1285 1466 561 1195 1419 514 1195 1419 514 1285 1466 561 1231 1424 519 1149 1469 564 1269 1470 565 1145 1411 506 1145 1411 506 1269 1470 565 1212 1471 566 1269 1470 565 1213 1472 567 1212 1471 566 1212 1471 566 1213 1472 567 1138 1386 481 1134 1373 468 1300 1473 568 1135 1374 469 1135 1374 469 1300 1473 568 1214 1474 569 1139 1393 488 1214 1474 569 1217 1394 489 1217 1394 489 1214 1474 569 1300 1473 568 1215 1475 570 1270 1476 571 1141 1407 502 1141 1407 502 1270 1476 571 1189 1405 500 1270 1476 571 1211 1468 563 1189 1405 500 1189 1405 500 1211 1468 563 1143 1406 501 1211 1468 563 1270 1476 571 1137 1380 475 1137 1380 475 1270 1476 571 1178 1377 472 1270 1476 571 1215 1475 570 1178 1377 472 1178 1377 472 1215 1475 570 1136 1378 473 1227 1426 521 1271 1425 520 1228 1351 446 1228 1351 446 1271 1425 520 1247 1352 447 1271 1425 520 1216 1397 492 1247 1352 447 1247 1352 447 1216 1397 492 1169 1355 450 1216 1397 492 1272 1395 490 1169 1355 450 1169 1355 450 1272 1395 490 1293 1477 572 1272 1395 490 1217 1394 489 1293 1477 572 1293 1477 572 1217 1394 489 1149 1469 564 1134 1373 468 1273 1371 466 1213 1472 567 1213 1472 567 1273 1371 466 1290 1478 573 1273 1371 466 1218 1311 406 1290 1478 573 1290 1478 573 1218 1311 406 1124 1320 415 1218 1311 406 1274 1314 409 1124 1320 415 1124 1320 415 1274 1314 409 1160 1317 412 1274 1314 409 1219 1290 388 1160 1317 412 1160 1317 412 1219 1290 388 1123 1318 413 1275 1480 574 1159 1315 410 1115 1479 393 1115 1479 393 1159 1315 410 1123 1318 413 1330 1481 575 1161 1321 416 1122 1322 417 1259 1436 531 1258 1432 527 1199 1437 532 1199 1437 532 1258 1432 527 1221 1433 528 1276 1453 548 1206 1454 549 1221 1433 528 1221 1433 528 1206 1454 549 1199 1437 532 1296 1343 438 1129 1340 435 1276 1453 548 1276 1453 548 1129 1340 435 1206 1454 549 1114 1482 403 1277 1307 402 1068 1484 577 1068 1484 577 1277 1307 402 1100 1483 576 1100 1483 576 1277 1307 402 1079 1485 578 1079 1485 578 1277 1307 402 1222 1310 405 1278 1332 427 1101 1486 579 1222 1310 405 1222 1310 405 1101 1486 579 1079 1485 578 1101 1486 579 1278 1332 427 1080 1487 580 1080 1487 580 1278 1332 427 1223 1335 430 1279 1462 557 1102 1488 581 1223 1335 430 1223 1335 430 1102 1488 581 1080 1487 580 1279 1462 557 1224 1465 560 1102 1488 581 1102 1488 581 1224 1465 560 1081 1489 582 1224 1465 560 1280 1490 583 1081 1489 582 1081 1489 582 1280 1490 583 1103 1491 584 1280 1490 583 1225 1416 511 1103 1491 584 1103 1491 584 1225 1416 511 1082 1492 585 1225 1416 511 1281 1415 510 1082 1492 585 1082 1492 585 1281 1415 510 1104 1493 586 1281 1415 510 1226 1418 513 1104 1493 586 1104 1493 586 1226 1418 513 1083 1494 587 1226 1418 513 1227 1426 521 1083 1494 587 1083 1494 587 1227 1426 521 1084 1495 588 1227 1426 521 1228 1351 446 1084 1495 588 1084 1495 588 1228 1351 446 1085 1496 589 1282 1497 590 1105 1498 591 1131 1354 449 1131 1354 449 1105 1498 591 1087 1499 592 1105 1498 591 1282 1497 590 1086 1500 593 1086 1500 593 1282 1497 590 1229 1430 525 1106 1501 594 1283 1429 524 1088 1502 595 1088 1502 595 1283 1429 524 1230 1423 518 1283 1429 524 1106 1501 594 1229 1430 525 1229 1430 525 1106 1501 594 1086 1500 593 1284 1422 517 1107 1503 596 1230 1423 518 1230 1423 518 1107 1503 596 1088 1502 595 1107 1503 596 1284 1422 517 1089 1504 597 1089 1504 597 1284 1422 517 1231 1424 519 1108 1505 598 1285 1466 561 1090 1506 599 1090 1506 599 1285 1466 561 1232 1391 486 1285 1466 561 1108 1505 598 1231 1424 519 1231 1424 519 1108 1505 598 1089 1504 597 1286 1390 485 1109 1507 600 1232 1391 486 1232 1391 486 1109 1507 600 1090 1506 599 1109 1507 600 1286 1390 485 1091 1508 601 1091 1508 601 1286 1390 485 1233 1392 487 1287 1288 386 1110 1287 385 1233 1392 487 1233 1392 487 1110 1287 385 1091 1508 601 1168 1345 440 1288 1509 602 1128 1342 437 1128 1342 437 1288 1509 602 1234 1510 603 1288 1509 602 1264 1460 555 1234 1510 603 1234 1510 603 1264 1460 555 1303 1457 552 1264 1460 555 1288 1509 602 1099 1461 556 1099 1461 556 1288 1509 602 1111 1511 604 1288 1509 602 1168 1345 440 1111 1511 604 1111 1511 604 1168 1345 440 1073 1348 443 1085 1496 589 1228 1351 446 1087 1499 592 1087 1499 592 1228 1351 446 1131 1354 449 1289 1512 605 1235 1384 479 1200 1435 530 1200 1435 530 1235 1384 479 1127 1513 606 1235 1384 479 1289 1512 605 1174 1362 457 1174 1362 457 1289 1512 605 1260 1439 534 1289 1512 605 1236 1514 607 1260 1439 534 1260 1439 534 1236 1514 607 1202 1515 608 1236 1514 607 1289 1512 605 1147 1438 533 1147 1438 533 1289 1512 605 1200 1435 530 1213 1472 567 1290 1478 573 1138 1386 481 1138 1386 481 1290 1478 573 1182 1385 480 1182 1385 480 1290 1478 573 1126 1337 432 1126 1337 432 1290 1478 573 1124 1320 415 1291 1516 609 1236 1514 607 1205 1455 550 1205 1455 550 1236 1514 607 1147 1438 533 1236 1514 607 1291 1516 609 1202 1515 608 1202 1515 608 1291 1516 609 1207 1517 610 1215 1475 570 1292 1518 611 1136 1378 473 1136 1378 473 1292 1518 611 1180 1381 476 1180 1381 476 1292 1518 611 1138 1386 481 1138 1386 481 1292 1518 611 1212 1471 566 1292 1518 611 1190 1408 503 1212 1471 566 1212 1471 566 1190 1408 503 1145 1411 506 1292 1518 611 1215 1475 570 1190 1408 503 1190 1408 503 1215 1475 570 1141 1407 502 1294 1519 612 1291 1516 609 1208 1339 434 1208 1339 434 1291 1516 609 1205 1455 550 1291 1516 609 1294 1519 612 1207 1517 610 1207 1517 610 1294 1519 612 1265 1456 551 1169 1355 450 1293 1477 572 1130 1356 451 1130 1356 451 1293 1477 572 1191 1410 505 1293 1477 572 1149 1469 564 1191 1410 505 1191 1410 505 1149 1469 564 1145 1411 506 1234 1510 603 1294 1519 612 1128 1342 437 1128 1342 437 1294 1519 612 1208 1339 434 1282 1497 590 1295 1520 613 1229 1430 525 1229 1430 525 1295 1520 613 1197 1427 522 1295 1520 613 1192 1412 507 1197 1427 522 1197 1427 522 1192 1412 507 1142 1402 497 1192 1412 507 1295 1520 613 1130 1356 451 1130 1356 451 1295 1520 613 1170 1353 448 1295 1520 613 1282 1497 590 1170 1353 448 1170 1353 448 1282 1497 590 1131 1354 449 1209 1344 439 1296 1343 438 1148 1452 547 1148 1452 547 1296 1343 438 1276 1453 548 1219 1290 388 1297 1293 391 1123 1318 413 1123 1318 413 1297 1293 391 1115 1521 393 1126 1337 432 1165 1336 431 1181 1383 478 1165 1336 431 1127 1513 606 1181 1383 478 1235 1384 479 1181 1383 478 1127 1513 606 1298 1522 614 1287 1288 386 1183 1387 482 1183 1387 482 1287 1288 386 1233 1392 487 1287 1288 386 1298 1522 614 1239 1285 383 1239 1285 383 1298 1522 614 1310 1286 384 1172 1359 454 1298 1522 614 1132 1360 455 1132 1360 455 1298 1522 614 1183 1387 482 1210 1464 559 1299 1523 615 1224 1465 560 1224 1465 560 1299 1523 615 1280 1490 583 1299 1523 615 1193 1413 508 1280 1490 583 1280 1490 583 1193 1413 508 1225 1416 511 1193 1413 508 1299 1523 615 1139 1393 488 1139 1393 488 1299 1523 615 1214 1474 569 1299 1523 615 1210 1464 559 1214 1474 569 1214 1474 569 1210 1464 559 1135 1374 469 1217 1394 489 1300 1473 568 1149 1469 564 1149 1469 564 1300 1473 568 1269 1470 565 1300 1473 568 1134 1373 468 1269 1470 565 1269 1470 565 1134 1373 468 1213 1472 567 1301 1361 456 1177 1375 470 1181 1383 478 1181 1383 478 1177 1375 470 1251 1382 477 1250 1376 471 1177 1375 470 1171 1357 452 1171 1357 452 1177 1375 470 1301 1361 456 1202 1515 608 1207 1517 610 1302 1441 536 1302 1441 536 1207 1517 610 1265 1456 551 1260 1439 534 1202 1515 608 1201 1440 535 1201 1440 535 1202 1515 608 1302 1441 536 1265 1456 551 1294 1519 612 1303 1457 552 1303 1457 552 1294 1519 612 1234 1510 603 1305 1443 538 1306 1368 463 1201 1440 535 1201 1440 535 1306 1368 463 1133 1364 459 1307 1367 462 1173 1363 458 1306 1368 463 1306 1368 463 1173 1363 458 1133 1364 459 1173 1363 458 1307 1367 462 1152 1278 376 1152 1278 376 1307 1367 462 1308 1283 381 1308 1283 381 1309 1284 382 1152 1278 376 1152 1278 376 1309 1284 382 1117 1276 374 1310 1286 384 1116 1274 372 1309 1284 382 1309 1284 382 1116 1274 372 1117 1276 374 1298 1522 614 1172 1359 454 1310 1286 384 1310 1286 384 1172 1359 454 1116 1274 372 1319 1525 1844 1318 1526 1845 1068 1524 1843 1068 1524 1843 1318 1526 1845 1114 1527 1846 1321 1528 1847 1318 1526 1845 902 1272 1841 902 1272 1841 1318 1526 1845 906 1027 1716 902 1272 1841 906 1027 1716 901 1273 1842 901 1273 1842 906 1027 1716 1311 1026 1715 899 1022 1711 900 1024 1713 1311 1026 1715 1311 1026 1715 900 1024 1713 901 1273 1842 898 1023 1712 899 1022 1711 1312 1025 1714 1312 1025 1714 899 1022 1711 1311 1026 1715 1322 1530 1849 1323 1531 1850 1113 1529 1848 1113 1529 1848 1323 1531 1850 1115 1532 1851 1324 1533 1852 1323 1531 1850 1313 1013 1702 1313 1013 1702 1323 1531 1850 904 1270 1839 1325 1535 1854 1326 1536 1855 1316 1534 1853 1316 1534 1853 1326 1536 1855 1317 1537 1856 1320 1539 1858 1332 1540 1859 1315 1538 1857 1315 1538 1857 1332 1540 1859 897 1018 1707 1322 1530 1849 1321 1528 1847 903 1271 1840 903 1271 1840 1321 1528 1847 902 1272 1841 1325 1535 1854 1324 1533 1852 895 1014 1703 895 1014 1703 1324 1533 1852 1313 1013 1702 1275 1541 574 1316 1542 616 1159 1315 410 1159 1315 410 1316 1542 616 1122 1322 417 1120 1296 394 1119 1325 420 1112 1544 395 1112 1544 395 1119 1325 420 1317 1543 617 1327 1545 1860 1326 1536 1855 1314 1016 1705 1314 1016 1705 1326 1536 1855 896 1015 1704 1119 1325 420 1122 1322 417 1317 1546 617 1317 1546 617 1122 1322 417 1316 1547 616 1318 1526 1845 1319 1525 1844 906 1027 1716 906 1027 1716 1319 1525 1844 905 1028 1717 1332 1540 1859 1320 1539 1858 1150 1548 1861 1150 1548 1861 1320 1539 1858 1069 1549 1862 1114 1550 1846 1318 1526 1845 1156 1551 1863 1156 1551 1863 1318 1526 1845 1321 1528 1847 1156 1552 1863 1321 1528 1847 1113 1553 1848 1113 1553 1848 1321 1528 1847 1322 1530 1849 904 1270 1839 1323 1531 1850 903 1271 1840 903 1271 1840 1323 1531 1850 1322 1530 1849 1323 1531 1850 1324 1533 1852 1115 1554 1851 1115 1554 1851 1324 1533 1852 1275 1555 1864 1324 1533 1852 1325 1535 1854 1275 1556 1864 1275 1556 1864 1325 1535 1854 1316 1557 1853 1326 1536 1855 1325 1535 1854 896 1015 1704 896 1015 1704 1325 1535 1854 895 1014 1703 1326 1536 1855 1327 1545 1860 1317 1558 1856 1317 1558 1856 1327 1545 1860 1112 1559 1865 1327 1545 1860 1332 1540 1859 1112 1560 1865 1112 1560 1865 1332 1540 1859 1150 1561 1861 1328 1562 618 1259 1436 531 1127 1513 606 1127 1513 606 1259 1436 531 1200 1435 530 1258 1432 527 1259 1436 531 1220 1326 421 1220 1326 421 1259 1436 531 1328 1562 618 1242 1324 419 1220 1326 421 1329 1563 619 1329 1563 619 1220 1326 421 1328 1562 618 1328 1562 618 1127 1513 606 1166 1338 433 1166 1338 433 1127 1513 606 1165 1336 431 1329 1563 619 1328 1562 618 1330 1481 575 1330 1481 575 1328 1562 618 1166 1338 433 1329 1563 619 1330 1481 575 1119 1325 420 1119 1325 420 1330 1481 575 1122 1322 417 1119 1325 420 1242 1324 419 1329 1563 619 1330 1481 575 1166 1338 433 1161 1321 416 1161 1321 416 1166 1338 433 1245 1319 414 1314 1016 1705 897 1018 1707 1327 1545 1860 1327 1545 1860 897 1018 1707 1332 1540 1859 721 832 1521 1333 849 1538 720 830 1519 720 830 1519 1333 849 1538 734 848 1537 1333 849 1538 1334 863 1552 734 848 1537 734 848 1537 1334 863 1552 747 862 1551 1334 863 1552 1335 877 1566 747 862 1551 747 862 1551 1335 877 1566 760 876 1565 1335 877 1566 1336 891 1580 760 876 1565 760 876 1565 1336 891 1580 773 890 1579 773 890 1579 1336 891 1580 786 904 1593 786 904 1593 1336 891 1580 2 361 1172 2 361 1172 86 364 1175 786 904 1593 786 904 1593 86 364 1175 798 916 1605 884 1002 1691 320 1020 1709 891 1009 1698 891 1009 1698 320 1020 1709 1337 1017 1706 709 810 1499 1349 1564 1866 696 807 1496 696 807 1496 1349 1564 1866 1338 1565 1867 1349 1564 1866 1350 1566 1868 1338 1565 1867 1338 1565 1867 1350 1566 1868 1339 1567 1869 1350 1566 1868 1351 1568 1870 1339 1567 1869 1339 1567 1869 1351 1568 1870 1340 1569 1871 1351 1568 1870 1352 1570 1872 1340 1569 1871 1340 1569 1871 1352 1570 1872 1341 1571 1873 1352 1570 1872 1353 1572 1874 1341 1571 1873 1341 1571 1873 1353 1572 1874 1342 1573 1875 1353 1572 1874 1354 1574 1876 1342 1573 1875 1342 1573 1875 1354 1574 1876 1343 1575 1877 1354 1574 1876 1355 1576 1878 1343 1575 1877 1343 1575 1877 1355 1576 1878 1344 1577 1879 1355 1576 1878 1356 1578 1880 1344 1577 1879 1344 1577 1879 1356 1578 1880 1345 1579 1881 1345 1579 1881 1356 1578 1880 1346 1581 1883 1346 1581 1883 1356 1578 1880 1357 1580 1882 1346 1581 1883 1357 1580 1882 1347 1583 1885 1347 1583 1885 1357 1580 1882 1358 1582 1884 1358 1582 1884 1359 1584 1886 1347 1583 1885 1347 1583 1885 1359 1584 1886 1348 1585 1887 1359 1584 1886 1360 1586 1888 1348 1585 1887 1348 1585 1887 1360 1586 1888 1897 1587 1889 1360 1586 1888 1972 1588 1890 1897 1587 1889 1897 1587 1889 1972 1588 1890 1973 1589 1891 723 838 1527 1361 1590 1892 709 810 1499 709 810 1499 1361 1590 1892 1349 1564 1866 1361 1590 1892 1362 1591 1893 1349 1564 1866 1349 1564 1866 1362 1591 1893 1350 1566 1868 1362 1591 1893 1363 1592 1894 1350 1566 1868 1350 1566 1868 1363 1592 1894 1351 1568 1870 1363 1592 1894 1364 1593 1895 1351 1568 1870 1351 1568 1870 1364 1593 1895 1352 1570 1872 1364 1593 1895 1365 1594 1896 1352 1570 1872 1352 1570 1872 1365 1594 1896 1353 1572 1874 1365 1594 1896 1366 1595 1897 1353 1572 1874 1353 1572 1874 1366 1595 1897 1354 1574 1876 1366 1595 1897 1367 1596 1898 1354 1574 1876 1354 1574 1876 1367 1596 1898 1355 1576 1878 1367 1596 1898 1368 1597 1899 1355 1576 1878 1355 1576 1878 1368 1597 1899 1356 1578 1880 1356 1578 1880 1368 1597 1899 1357 1580 1882 1357 1580 1882 1368 1597 1899 1369 1598 1900 1357 1580 1882 1369 1598 1900 1358 1582 1884 1358 1582 1884 1369 1598 1900 1370 1599 1901 1370 1599 1901 1371 1600 1902 1358 1582 1884 1358 1582 1884 1371 1600 1902 1359 1584 1886 1899 1601 1903 1975 1602 1904 1360 1586 1888 1360 1586 1888 1975 1602 1904 1972 1588 1890 736 852 1541 1372 1603 1905 723 838 1527 723 838 1527 1372 1603 1905 1361 1590 1892 1372 1603 1905 1373 1604 1906 1361 1590 1892 1361 1590 1892 1373 1604 1906 1362 1591 1893 1373 1604 1906 1374 1605 1907 1362 1591 1893 1362 1591 1893 1374 1605 1907 1363 1592 1894 1374 1605 1907 1375 1606 1908 1363 1592 1894 1363 1592 1894 1375 1606 1908 1364 1593 1895 1375 1606 1908 1376 1607 1909 1364 1593 1895 1364 1593 1895 1376 1607 1909 1365 1594 1896 1376 1607 1909 1377 1608 1910 1365 1594 1896 1365 1594 1896 1377 1608 1910 1366 1595 1897 1377 1608 1910 1378 1609 1911 1366 1595 1897 1366 1595 1897 1378 1609 1911 1367 1596 1898 1378 1609 1911 1379 1610 1912 1367 1596 1898 1367 1596 1898 1379 1610 1912 1368 1597 1899 1368 1597 1899 1379 1610 1912 1369 1598 1900 1369 1598 1900 1379 1610 1912 1380 1611 1913 1369 1598 1900 1380 1611 1913 1370 1599 1901 1370 1599 1901 1380 1611 1913 1381 1612 1914 1370 1599 1901 1381 1612 1914 1371 1600 1902 1371 1600 1902 1381 1612 1914 1382 1613 1915 1900 1614 1916 1976 1615 1917 1899 1601 1903 1899 1601 1903 1976 1615 1917 1975 1602 1904 736 852 1541 749 866 1555 1372 1603 1905 1372 1603 1905 749 866 1555 1383 1616 1918 1383 1616 1918 1384 1617 1919 1372 1603 1905 1372 1603 1905 1384 1617 1919 1373 1604 1906 1384 1617 1919 1385 1618 1920 1373 1604 1906 1373 1604 1906 1385 1618 1920 1374 1605 1907 1385 1618 1920 1386 1619 1921 1374 1605 1907 1374 1605 1907 1386 1619 1921 1375 1606 1908 1386 1619 1921 1387 1620 1922 1375 1606 1908 1375 1606 1908 1387 1620 1922 1376 1607 1909 1387 1620 1922 1388 1621 1923 1376 1607 1909 1376 1607 1909 1388 1621 1923 1377 1608 1910 1388 1621 1923 1389 1622 1924 1377 1608 1910 1377 1608 1910 1389 1622 1924 1378 1609 1911 1389 1622 1924 1390 1623 1925 1378 1609 1911 1378 1609 1911 1390 1623 1925 1379 1610 1912 1379 1610 1912 1390 1623 1925 1380 1611 1913 1380 1611 1913 1390 1623 1925 1391 1624 1926 1391 1624 1926 1392 1625 1927 1380 1611 1913 1380 1611 1913 1392 1625 1927 1381 1612 1914 1381 1612 1914 1392 1625 1927 1382 1613 1915 1382 1613 1915 1392 1625 1927 1393 1626 1928 1901 1627 1929 1977 1628 1930 1900 1614 1916 1900 1614 1916 1977 1628 1930 1976 1615 1917 749 866 1555 762 880 1569 1383 1616 1918 1383 1616 1918 762 880 1569 1394 1629 1931 1394 1629 1931 1395 1630 1932 1383 1616 1918 1383 1616 1918 1395 1630 1932 1384 1617 1919 1395 1630 1932 1396 1631 1933 1384 1617 1919 1384 1617 1919 1396 1631 1933 1385 1618 1920 1396 1631 1933 1397 1632 1934 1385 1618 1920 1385 1618 1920 1397 1632 1934 1386 1619 1921 1397 1632 1934 1398 1633 1935 1386 1619 1921 1386 1619 1921 1398 1633 1935 1387 1620 1922 1398 1633 1935 1399 1634 1936 1387 1620 1922 1387 1620 1922 1399 1634 1936 1388 1621 1923 1399 1634 1936 1400 1635 1937 1388 1621 1923 1388 1621 1923 1400 1635 1937 1389 1622 1924 1400 1635 1937 1401 1636 1938 1389 1622 1924 1389 1622 1924 1401 1636 1938 1390 1623 1925 1390 1623 1925 1401 1636 1938 1391 1624 1926 1391 1624 1926 1401 1636 1938 1402 1637 1939 1402 1637 1939 1403 1638 1940 1391 1624 1926 1391 1624 1926 1403 1638 1940 1392 1625 1927 1403 1638 1940 1404 1639 1941 1392 1625 1927 1392 1625 1927 1404 1639 1941 1393 1626 1928 1902 1640 1942 1974 1641 1943 1901 1627 1929 1901 1627 1929 1974 1641 1943 1977 1628 1930 762 880 1569 775 894 1583 1394 1629 1931 1394 1629 1931 775 894 1583 1405 1642 1944 1405 1642 1944 1406 1643 1945 1394 1629 1931 1394 1629 1931 1406 1643 1945 1395 1630 1932 1406 1643 1945 1407 1644 1946 1395 1630 1932 1395 1630 1932 1407 1644 1946 1396 1631 1933 1407 1644 1946 1408 1645 1947 1396 1631 1933 1396 1631 1933 1408 1645 1947 1397 1632 1934 1408 1645 1947 1409 1646 1948 1397 1632 1934 1397 1632 1934 1409 1646 1948 1398 1633 1935 1409 1646 1948 1410 1647 1949 1398 1633 1935 1398 1633 1935 1410 1647 1949 1399 1634 1936 1410 1647 1949 1411 1648 1950 1399 1634 1936 1399 1634 1936 1411 1648 1950 1400 1635 1937 1411 1648 1950 1412 1649 1951 1400 1635 1937 1400 1635 1937 1412 1649 1951 1401 1636 1938 1401 1636 1938 1412 1649 1951 1402 1637 1939 1402 1637 1939 1412 1649 1951 1413 1650 1952 1413 1650 1952 1414 1651 1953 1402 1637 1939 1402 1637 1939 1414 1651 1953 1403 1638 1940 1414 1651 1953 1415 1652 1954 1403 1638 1940 1403 1638 1940 1415 1652 1954 1404 1639 1941 2044 1653 1955 1974 1641 1943 2043 435 1231 2043 435 1231 1974 1641 1943 434 436 1232 775 894 1583 787 906 1595 1405 1642 1944 1405 1642 1944 787 906 1595 1416 1654 1956 1416 1654 1956 1417 1655 1957 1405 1642 1944 1405 1642 1944 1417 1655 1957 1406 1643 1945 1417 1655 1957 1418 1656 1958 1406 1643 1945 1406 1643 1945 1418 1656 1958 1407 1644 1946 1418 1656 1958 1419 1657 1959 1407 1644 1946 1407 1644 1946 1419 1657 1959 1408 1645 1947 1419 1657 1959 1420 1658 1960 1408 1645 1947 1408 1645 1947 1420 1658 1960 1409 1646 1948 1420 1658 1960 1421 1659 1961 1409 1646 1948 1409 1646 1948 1421 1659 1961 1410 1647 1949 1421 1659 1961 1422 1660 1962 1410 1647 1949 1410 1647 1949 1422 1660 1962 1411 1648 1950 1422 1660 1962 1423 1661 1963 1411 1648 1950 1411 1648 1950 1423 1661 1963 1412 1649 1951 1412 1649 1951 1423 1661 1963 1413 1650 1952 1413 1650 1952 1423 1661 1963 1424 1662 1964 1413 1650 1952 1424 1662 1964 1414 1651 1953 1414 1651 1953 1424 1662 1964 1425 1663 1965 1425 1663 1965 1426 1664 1966 1414 1651 1953 1414 1651 1953 1426 1664 1966 1415 1652 1954 787 906 1595 799 918 1607 1416 1654 1956 1416 1654 1956 799 918 1607 1427 1665 1967 1427 1665 1967 1428 1666 1968 1416 1654 1956 1416 1654 1956 1428 1666 1968 1417 1655 1957 1428 1666 1968 1429 1667 1969 1417 1655 1957 1417 1655 1957 1429 1667 1969 1418 1656 1958 1429 1667 1969 1430 1668 1970 1418 1656 1958 1418 1656 1958 1430 1668 1970 1419 1657 1959 1430 1668 1970 1431 1669 1971 1419 1657 1959 1419 1657 1959 1431 1669 1971 1420 1658 1960 1431 1669 1971 1432 1670 1972 1420 1658 1960 1420 1658 1960 1432 1670 1972 1421 1659 1961 1432 1670 1972 1433 1671 1973 1421 1659 1961 1421 1659 1961 1433 1671 1973 1422 1660 1962 1433 1671 1973 1434 1672 1974 1422 1660 1962 1422 1660 1962 1434 1672 1974 1423 1661 1963 1423 1661 1963 1434 1672 1974 1424 1662 1964 1424 1662 1964 1434 1672 1974 1435 1673 1975 1435 1673 1975 1436 1674 1976 1424 1662 1964 1424 1662 1964 1436 1674 1976 1425 1663 1965 1436 1674 1976 1437 1675 1977 1425 1663 1965 1425 1663 1965 1437 1675 1977 1426 1664 1966 799 918 1607 811 930 1619 1427 1665 1967 1427 1665 1967 811 930 1619 1438 1676 1978 1438 1676 1978 1439 1677 1979 1427 1665 1967 1427 1665 1967 1439 1677 1979 1428 1666 1968 1439 1677 1979 1440 1678 1980 1428 1666 1968 1428 1666 1968 1440 1678 1980 1429 1667 1969 1440 1678 1980 1441 1679 1981 1429 1667 1969 1429 1667 1969 1441 1679 1981 1430 1668 1970 1441 1679 1981 1442 1680 1982 1430 1668 1970 1430 1668 1970 1442 1680 1982 1431 1669 1971 1442 1680 1982 1443 1681 1983 1431 1669 1971 1431 1669 1971 1443 1681 1983 1432 1670 1972 1443 1681 1983 1444 1682 1984 1432 1670 1972 1432 1670 1972 1444 1682 1984 1433 1671 1973 1444 1682 1984 1445 1683 1985 1433 1671 1973 1433 1671 1973 1445 1683 1985 1434 1672 1974 1434 1672 1974 1445 1683 1985 1435 1673 1975 1435 1673 1975 1445 1683 1985 1446 1684 1986 1446 1684 1986 1447 1685 1987 1435 1673 1975 1435 1673 1975 1447 1685 1987 1436 1674 1976 1447 1685 1987 1448 1686 1988 1436 1674 1976 1436 1674 1976 1448 1686 1988 1437 1675 1977 811 930 1619 823 942 1631 1438 1676 1978 1438 1676 1978 823 942 1631 1449 1687 1989 1449 1687 1989 1450 1688 1990 1438 1676 1978 1438 1676 1978 1450 1688 1990 1439 1677 1979 1450 1688 1990 1451 1689 1991 1439 1677 1979 1439 1677 1979 1451 1689 1991 1440 1678 1980 1451 1689 1991 1452 1690 1992 1440 1678 1980 1440 1678 1980 1452 1690 1992 1441 1679 1981 1452 1690 1992 1453 1691 1993 1441 1679 1981 1441 1679 1981 1453 1691 1993 1442 1680 1982 1453 1691 1993 1454 1692 1994 1442 1680 1982 1442 1680 1982 1454 1692 1994 1443 1681 1983 1454 1692 1994 1455 1693 1995 1443 1681 1983 1443 1681 1983 1455 1693 1995 1444 1682 1984 1455 1693 1995 1456 1694 1996 1444 1682 1984 1444 1682 1984 1456 1694 1996 1445 1683 1985 1445 1683 1985 1456 1694 1996 1446 1684 1986 1446 1684 1986 1456 1694 1996 1457 1695 1997 1446 1684 1986 1457 1695 1997 1447 1685 1987 1447 1685 1987 1457 1695 1997 1458 1696 1998 1447 1685 1987 1458 1696 1998 1448 1686 1988 1448 1686 1988 1458 1696 1998 1459 1697 1999 823 942 1631 846 954 1643 1449 1687 1989 1449 1687 1989 846 954 1643 1460 1698 2000 1460 1698 2000 1461 1699 2001 1449 1687 1989 1449 1687 1989 1461 1699 2001 1450 1688 1990 1461 1699 2001 1462 1700 2002 1450 1688 1990 1450 1688 1990 1462 1700 2002 1451 1689 1991 1462 1700 2002 1463 1701 2003 1451 1689 1991 1451 1689 1991 1463 1701 2003 1452 1690 1992 1463 1701 2003 1464 1702 2004 1452 1690 1992 1452 1690 1992 1464 1702 2004 1453 1691 1993 1464 1702 2004 1465 1703 2005 1453 1691 1993 1453 1691 1993 1465 1703 2005 1454 1692 1994 1465 1703 2005 1466 1704 2006 1454 1692 1994 1454 1692 1994 1466 1704 2006 1455 1693 1995 1455 1693 1995 1466 1704 2006 1456 1694 1996 1456 1694 1996 1466 1704 2006 1467 1705 2007 1456 1694 1996 1467 1705 2007 1457 1695 1997 1457 1695 1997 1467 1705 2007 1468 1706 2008 1457 1695 1997 1468 1706 2008 1458 1696 1998 1458 1696 1998 1468 1706 2008 1469 1707 2009 1458 1696 1998 1469 1707 2009 1459 1697 1999 1459 1697 1999 1469 1707 2009 1470 1708 2010 846 954 1643 847 966 1655 1460 1698 2000 1460 1698 2000 847 966 1655 1471 1709 2011 1460 1698 2000 1471 1709 2011 1461 1699 2001 1461 1699 2001 1471 1709 2011 1472 1710 2012 1461 1699 2001 1472 1710 2012 1462 1700 2002 1462 1700 2002 1472 1710 2012 1473 1711 2013 1462 1700 2002 1473 1711 2013 1463 1701 2003 1463 1701 2003 1473 1711 2013 1474 1712 2014 1474 1712 2014 1475 1713 2015 1463 1701 2003 1463 1701 2003 1475 1713 2015 1464 1702 2004 1475 1713 2015 1476 1714 2016 1464 1702 2004 1464 1702 2004 1476 1714 2016 1465 1703 2005 1476 1714 2016 1477 1715 2017 1465 1703 2005 1465 1703 2005 1477 1715 2017 1466 1704 2006 1466 1704 2006 1477 1715 2017 1467 1705 2007 1467 1705 2007 1477 1715 2017 1478 1716 2018 1467 1705 2007 1478 1716 2018 1468 1706 2008 1468 1706 2008 1478 1716 2018 1479 1717 2019 1468 1706 2008 1479 1717 2019 1469 1707 2009 1469 1707 2009 1479 1717 2019 1480 1718 2020 1469 1707 2009 1480 1718 2020 1470 1708 2010 1470 1708 2010 1480 1718 2020 1481 1719 2021 847 966 1655 859 978 1667 1471 1709 2011 1471 1709 2011 859 978 1667 1482 1720 2022 1471 1709 2011 1482 1720 2022 1472 1710 2012 1472 1710 2012 1482 1720 2022 1483 1721 2023 1472 1710 2012 1483 1721 2023 1473 1711 2013 1473 1711 2013 1483 1721 2023 1484 1722 2024 1476 1714 2016 1485 1723 2025 1477 1715 2017 1485 1723 2025 1488 1724 2026 1477 1715 2017 1477 1715 2017 1488 1724 2026 1478 1716 2018 1488 1724 2026 1489 1725 2027 1478 1716 2018 1478 1716 2018 1489 1725 2027 1479 1717 2019 1489 1725 2027 1490 1726 2028 1479 1717 2019 1479 1717 2019 1490 1726 2028 1480 1718 2020 1480 1718 2020 1490 1726 2028 1481 1719 2021 1481 1719 2021 1490 1726 2028 1491 1727 2029 859 978 1667 868 987 1676 1482 1720 2022 1482 1720 2022 868 987 1676 1486 1728 2030 1482 1720 2022 1486 1728 2030 1483 1721 2023 1483 1721 2023 1486 1728 2030 1487 1729 2031 868 987 1676 871 990 1679 1486 1728 2030 1486 1728 2030 871 990 1679 1492 1730 2032 1492 1730 2032 1493 1731 2033 1486 1728 2030 1486 1728 2030 1493 1731 2033 1487 1729 2031 1495 1732 2034 1489 1725 2027 1494 1733 2035 1494 1733 2035 1489 1725 2027 1488 1724 2026 1495 1732 2034 1496 1734 2036 1489 1725 2027 1489 1725 2027 1496 1734 2036 1490 1726 2028 1490 1726 2028 1496 1734 2036 1491 1727 2029 1491 1727 2029 1496 1734 2036 1497 1735 2037 871 990 1679 878 997 1686 1492 1730 2032 1492 1730 2032 878 997 1686 1498 1736 2038 1498 1736 2038 1499 1737 2039 1492 1730 2032 1492 1730 2032 1499 1737 2039 1493 1731 2033 1495 1732 2034 1494 1733 2035 1501 1738 2040 1501 1738 2040 1494 1733 2035 1500 1739 2041 1495 1732 2034 1501 1738 2040 1496 1734 2036 1496 1734 2036 1501 1738 2040 1502 1740 2042 1496 1734 2036 1502 1740 2042 1497 1735 2037 1497 1735 2037 1502 1740 2042 1503 1741 2043 878 997 1686 885 1004 1693 1498 1736 2038 1498 1736 2038 885 1004 1693 1504 1742 2044 1498 1736 2038 1504 1742 2044 1499 1737 2039 1499 1737 2039 1504 1742 2044 1505 1743 2045 1507 1744 2046 1501 1738 2040 1506 1745 2047 1506 1745 2047 1501 1738 2040 1500 1739 2041 1501 1738 2040 1507 1744 2046 1502 1740 2042 1502 1740 2042 1507 1744 2046 1508 1746 2048 1502 1740 2042 1508 1746 2048 1503 1741 2043 1503 1741 2043 1508 1746 2048 1509 1747 2049 885 1004 1693 892 1011 1700 1504 1742 2044 1504 1742 2044 892 1011 1700 1510 1748 2050 1504 1742 2044 1510 1748 2050 1505 1743 2045 1505 1743 2045 1510 1748 2050 1511 1749 2051 1512 1751 2053 1507 1744 2046 1882 1750 2052 1882 1750 2052 1507 1744 2046 1506 1745 2047 1507 1744 2046 1512 1751 2053 1508 1746 2048 1508 1746 2048 1512 1751 2053 1513 1752 2054 1508 1746 2048 1513 1752 2054 1509 1747 2049 1509 1747 2049 1513 1752 2054 1883 1753 2055 1509 1747 2049 1883 1753 2055 1904 1755 2057 1904 1755 2057 1883 1753 2055 1514 1754 2056 1904 1755 2057 1985 1019 1708 1903 1756 2058 1903 1756 2058 1985 1019 1708 1986 1021 1710 892 1011 1700 898 1023 1712 1510 1748 2050 1510 1748 2050 898 1023 1712 1515 1757 2059 1510 1748 2050 1515 1757 2059 1511 1749 2051 1511 1749 2051 1515 1757 2059 1516 1758 2060 1312 1025 1714 905 1028 1717 1881 1760 2062 1881 1760 2062 905 1028 1717 1521 1759 2061 1338 1565 1867 907 1029 1718 696 807 1496 1339 1567 1869 907 1029 1718 1338 1565 1867 1340 1569 1871 907 1029 1718 1339 1567 1869 1341 1571 1873 907 1029 1718 1340 1569 1871 1342 1573 1875 907 1029 1718 1341 1571 1873 1343 1575 1877 907 1029 1718 1342 1573 1875 1344 1577 1879 907 1029 1718 1343 1575 1877 1345 1579 1881 907 1029 1718 1344 1577 1879 1346 1581 1883 907 1029 1718 1345 1579 1881 1347 1583 1885 907 1029 1718 1346 1581 1883 1348 1585 1887 907 1029 1718 1347 1583 1885 1348 1585 1887 1897 1587 1889 907 1029 1718 1973 1589 1891 907 1029 1718 1897 1587 1889 1555 1761 692 1621 1762 693 1594 1764 695 1594 1764 695 1621 1762 693 1658 1763 694 1621 1762 693 1555 1761 692 1642 1766 697 1642 1766 697 1555 1761 692 1570 1765 696 1556 1767 698 1621 1762 693 1572 1768 699 1572 1768 699 1621 1762 693 1642 1766 697 1621 1762 693 1556 1767 698 1658 1763 694 1658 1763 694 1556 1767 698 1595 1769 700 1557 1770 701 1622 1771 702 1593 1773 704 1593 1773 704 1622 1771 702 1657 1772 703 1622 1771 702 1557 1770 701 1643 1775 706 1643 1775 706 1557 1770 701 1569 1774 705 1555 1761 692 1622 1771 702 1570 1765 696 1570 1765 696 1622 1771 702 1643 1775 706 1622 1771 702 1555 1761 692 1657 1772 703 1657 1772 703 1555 1761 692 1594 1764 695 1558 1776 707 1623 1777 708 1592 1779 710 1592 1779 710 1623 1777 708 1656 1778 709 1623 1777 708 1558 1776 707 1641 1781 712 1641 1781 712 1558 1776 707 1567 1780 711 1557 1770 701 1623 1777 708 1569 1774 705 1569 1774 705 1623 1777 708 1641 1781 712 1623 1777 708 1557 1770 701 1656 1778 709 1656 1778 709 1557 1770 701 1593 1773 704 1624 1783 714 1655 1784 715 1559 1782 713 1559 1782 713 1655 1784 715 1591 1785 716 1624 1783 714 1559 1782 713 1644 1787 718 1644 1787 718 1559 1782 713 1574 1786 717 1558 1776 707 1624 1783 714 1567 1780 711 1567 1780 711 1624 1783 714 1644 1787 718 1624 1783 714 1558 1776 707 1655 1784 715 1655 1784 715 1558 1776 707 1592 1779 710 1560 1789 720 1578 1790 721 1625 1788 719 1625 1788 719 1578 1790 721 1646 1791 722 1625 1788 719 1646 1791 722 1559 1782 713 1559 1782 713 1646 1791 722 1574 1786 717 1625 1788 719 1681 1792 723 1560 1789 720 1560 1789 720 1681 1792 723 1680 1793 724 1626 1795 726 1654 1796 727 1561 1794 725 1561 1794 725 1654 1796 727 1590 1797 728 1561 1794 725 1582 1798 729 1626 1795 726 1626 1795 726 1582 1798 729 1648 1799 730 1626 1795 726 1648 1799 730 1560 1789 720 1560 1789 720 1648 1799 730 1578 1790 721 1560 1789 720 1680 1793 724 1626 1795 726 1626 1795 726 1680 1793 724 1654 1796 727 1627 1801 732 1653 1802 733 1562 1800 731 1562 1800 731 1653 1802 733 1589 1803 734 1562 1800 731 1585 1804 735 1627 1801 732 1627 1801 732 1585 1804 735 1650 1805 736 1627 1801 732 1650 1805 736 1561 1794 725 1561 1794 725 1650 1805 736 1582 1798 729 1561 1794 725 1590 1797 728 1627 1801 732 1627 1801 732 1590 1797 728 1653 1802 733 1628 1807 738 1652 1808 739 1563 1806 737 1563 1806 737 1652 1808 739 1587 1809 740 1563 1806 737 1581 1810 741 1628 1807 738 1628 1807 738 1581 1810 741 1649 1811 742 1628 1807 738 1649 1811 742 1562 1800 731 1562 1800 731 1649 1811 742 1585 1804 735 1562 1800 731 1589 1803 734 1628 1807 738 1628 1807 738 1589 1803 734 1652 1808 739 1629 1813 744 1651 1814 745 1564 1812 743 1564 1812 743 1651 1814 745 1588 1815 746 1564 1812 743 1577 1816 747 1629 1813 744 1629 1813 744 1577 1816 747 1647 1817 748 1629 1813 744 1647 1817 748 1563 1806 737 1563 1806 737 1647 1817 748 1581 1810 741 1563 1806 737 1587 1809 740 1629 1813 744 1629 1813 744 1587 1809 740 1651 1814 745 1556 1767 698 1630 1818 749 1595 1769 700 1595 1769 700 1630 1818 749 1659 1819 750 1630 1818 749 1556 1767 698 1645 1820 752 1645 1820 752 1556 1767 698 1572 1768 699 1564 1812 743 1630 1818 749 1577 1816 747 1577 1816 747 1630 1818 749 1645 1820 752 1630 1818 749 1564 1812 743 1659 1819 750 1659 1819 750 1564 1812 743 1588 1815 746 1595 1769 700 1587 1809 740 1658 1763 694 1658 1763 694 1587 1809 740 1652 1808 739 1600 1822 2064 1927 1823 2065 1662 1821 2063 1662 1821 2063 1927 1823 2065 1926 1824 2066 1537 1826 2068 1925 1827 2069 1631 1825 2067 1631 1825 2067 1925 1827 2069 1926 1824 2066 1604 1829 2071 1934 1830 2072 1664 1828 2070 1664 1828 2070 1934 1830 2072 1932 1831 2073 1539 1833 2075 1930 1834 2076 1632 1832 2074 1632 1832 2074 1930 1834 2076 1932 1831 2073 1523 1836 2078 1930 1834 2076 1665 1835 2077 1665 1835 2077 1930 1834 2076 1928 1837 2079 1565 1839 2081 1927 1823 2065 1633 1838 2080 1633 1838 2080 1927 1823 2065 1928 1837 2079 1666 1840 2082 1522 1841 2083 1929 1842 2084 1929 1842 2084 1522 1841 2083 1925 1827 2069 1538 1844 2086 1931 1845 2087 1634 1843 2085 1634 1843 2085 1931 1845 2087 1929 1842 2084 1524 1847 2089 1931 1845 2087 1667 1846 2088 1667 1846 2088 1931 1845 2087 1933 1848 2090 1635 1849 2091 1540 1850 2092 1933 1848 2090 1933 1848 2090 1540 1850 2092 1935 1851 2093 1636 1852 2094 1541 1853 2095 1937 1855 2097 1937 1855 2097 1541 1853 2095 1939 1854 2096 1660 1856 2098 1596 1857 2099 1937 1855 2097 1937 1855 2097 1596 1857 2099 1935 1851 2093 1661 1858 2100 1598 1859 2101 1941 1860 2102 1941 1860 2102 1598 1859 2101 1939 1854 2096 1637 1861 2103 1543 1862 2104 1941 1860 2102 1941 1860 2102 1543 1862 2104 1943 1863 2105 1668 1864 2106 1525 1865 2107 1944 1866 2108 1944 1866 2108 1525 1865 2107 1943 1863 2105 1638 1867 2109 1544 1868 2110 1944 1866 2108 1944 1866 2108 1544 1868 2110 1942 1869 2111 1663 1870 2112 1602 1871 2113 1940 1872 2114 1940 1872 2114 1602 1871 2113 1942 1869 2111 1639 1873 2115 1542 1874 2116 1940 1872 2114 1940 1872 2114 1542 1874 2116 1938 1875 2117 1669 1876 2118 1526 1877 2119 1936 1878 2120 1936 1878 2120 1526 1877 2119 1938 1875 2117 1640 1879 2121 1566 1880 2122 1936 1878 2120 1936 1878 2120 1566 1880 2122 1934 1830 2072 1528 1881 944 1568 1882 949 1567 1780 711 1567 1780 711 1568 1882 949 1641 1781 712 1568 1883 949 1527 1884 947 1641 1781 712 1641 1781 712 1527 1884 947 1569 1774 705 1530 1885 946 1571 1886 948 1570 1765 696 1570 1765 696 1571 1886 948 1642 1766 697 1571 1887 948 1529 1888 942 1642 1766 697 1642 1766 697 1529 1888 942 1572 1768 699 1527 1889 947 1573 1890 945 1569 1774 705 1569 1774 705 1573 1890 945 1643 1775 706 1573 1891 945 1530 1892 946 1643 1775 706 1643 1775 706 1530 1892 946 1570 1765 696 1531 1893 940 1575 1894 943 1574 1786 717 1574 1786 717 1575 1894 943 1644 1787 718 1575 1895 943 1528 1896 944 1644 1787 718 1644 1787 718 1528 1896 944 1567 1780 711 1529 1897 942 1576 1898 941 1572 1768 699 1572 1768 699 1576 1898 941 1645 1820 752 1576 1899 941 1532 1900 938 1645 1820 752 1645 1820 752 1532 1900 938 1577 1816 747 1578 1790 721 1533 1901 936 1646 1791 722 1646 1791 722 1533 1901 936 1579 1902 939 1531 1904 940 1574 1786 717 1579 1903 939 1579 1903 939 1574 1786 717 1646 1791 722 1577 1816 747 1532 1905 938 1647 1817 748 1647 1817 748 1532 1905 938 1580 1906 937 1534 1908 934 1581 1810 741 1580 1907 937 1580 1907 937 1581 1810 741 1647 1817 748 1582 1798 729 1535 1909 931 1648 1799 730 1648 1799 730 1535 1909 931 1583 1910 935 1533 1912 936 1578 1790 721 1583 1911 935 1583 1911 935 1578 1790 721 1648 1799 730 1581 1810 741 1534 1913 934 1649 1811 742 1649 1811 742 1534 1913 934 1584 1914 933 1536 1916 932 1585 1804 735 1584 1915 933 1584 1915 933 1585 1804 735 1649 1811 742 1585 1804 735 1536 1917 932 1650 1805 736 1650 1805 736 1536 1917 932 1586 1918 930 1535 1920 931 1582 1798 729 1586 1919 930 1586 1919 930 1582 1798 729 1650 1805 736 1568 1921 2123 1528 1922 2124 1634 1843 2085 1634 1843 2085 1528 1922 2124 1538 1844 2086 1634 1843 2085 1537 1826 2068 1568 1923 2123 1568 1923 2123 1537 1826 2068 1527 1924 2125 1571 1925 2126 1530 1926 2127 1633 1838 2080 1633 1838 2080 1530 1926 2127 1565 1839 2081 1571 1927 2126 1633 1838 2080 1529 1928 2128 1529 1928 2128 1633 1838 2080 1539 1833 2075 1573 1929 2129 1527 1930 2125 1631 1825 2067 1631 1825 2067 1527 1930 2125 1537 1826 2068 1631 1825 2067 1565 1839 2081 1573 1931 2129 1573 1931 2129 1565 1839 2081 1530 1932 2127 1575 1933 2130 1531 1934 2131 1635 1849 2091 1635 1849 2091 1531 1934 2131 1540 1850 2092 1635 1849 2091 1538 1844 2086 1575 1935 2130 1575 1935 2130 1538 1844 2086 1528 1936 2124 1529 1938 2128 1539 1833 2075 1576 1937 2132 1576 1937 2132 1539 1833 2075 1632 1832 2074 1576 1939 2132 1632 1832 2074 1532 1940 2133 1532 1940 2133 1632 1832 2074 1566 1880 2122 1579 1941 2134 1533 1942 2135 1636 1852 2094 1636 1852 2094 1533 1942 2135 1541 1853 2095 1636 1852 2094 1540 1850 2092 1579 1943 2134 1579 1943 2134 1540 1850 2092 1531 1944 2131 1532 1946 2133 1566 1880 2122 1580 1945 2136 1580 1945 2136 1566 1880 2122 1640 1879 2121 1580 1947 2136 1640 1879 2121 1534 1948 2137 1534 1948 2137 1640 1879 2121 1542 1874 2116 1583 1949 2138 1535 1950 2139 1637 1861 2103 1637 1861 2103 1535 1950 2139 1543 1862 2104 1637 1861 2103 1541 1853 2095 1583 1951 2138 1583 1951 2138 1541 1853 2095 1533 1952 2135 1534 1954 2137 1542 1874 2116 1584 1953 2140 1584 1953 2140 1542 1874 2116 1639 1873 2115 1584 1955 2140 1639 1873 2115 1536 1956 2141 1536 1956 2141 1639 1873 2115 1544 1868 2110 1586 1957 2142 1536 1958 2141 1638 1867 2109 1638 1867 2109 1536 1958 2141 1544 1868 2110 1638 1867 2109 1543 1862 2104 1586 1959 2142 1586 1959 2142 1543 1862 2104 1535 1960 2139 1546 1961 2143 1610 1962 2144 1598 1859 2101 1598 1859 2101 1610 1962 2144 1660 1856 2098 1545 1963 2145 1596 1857 2099 1610 1962 2144 1610 1962 2144 1596 1857 2099 1660 1856 2098 1547 1964 2146 1597 1965 2147 1525 1865 2107 1525 1865 2107 1597 1965 2147 1661 1858 2100 1597 1965 2147 1546 1961 2143 1661 1858 2100 1661 1858 2100 1546 1961 2143 1598 1859 2101 1522 1841 2083 1549 1966 2148 1662 1821 2063 1662 1821 2063 1549 1966 2148 1599 1967 2149 1548 1968 2150 1600 1822 2064 1599 1967 2149 1599 1967 2149 1600 1822 2064 1662 1821 2063 1551 1969 2151 1601 1970 2152 1526 1877 2119 1526 1877 2119 1601 1970 2152 1663 1870 2112 1601 1970 2152 1550 1971 2153 1663 1870 2112 1663 1870 2112 1550 1971 2153 1602 1871 2113 1523 1836 2078 1553 1972 2154 1664 1828 2070 1664 1828 2070 1553 1972 2154 1603 1973 2155 1603 1973 2155 1552 1974 2156 1664 1828 2070 1664 1828 2070 1552 1974 2156 1604 1829 2071 1600 1822 2064 1548 1968 2150 1665 1835 2077 1665 1835 2077 1548 1968 2150 1605 1975 2157 1553 1972 2154 1523 1836 2078 1605 1975 2157 1605 1975 2157 1523 1836 2078 1665 1835 2077 1524 1847 2089 1554 1976 2158 1666 1840 2082 1666 1840 2082 1554 1976 2158 1606 1977 2159 1549 1966 2148 1522 1841 2083 1606 1977 2159 1606 1977 2159 1522 1841 2083 1666 1840 2082 1596 1857 2099 1545 1963 2145 1667 1846 2088 1667 1846 2088 1545 1963 2145 1607 1978 2160 1554 1976 2158 1524 1847 2089 1607 1978 2160 1607 1978 2160 1524 1847 2089 1667 1846 2088 1550 1971 2153 1608 1979 2161 1602 1871 2113 1602 1871 2113 1608 1979 2161 1668 1864 2106 1608 1979 2161 1547 1964 2146 1668 1864 2106 1668 1864 2106 1547 1964 2146 1525 1865 2107 1552 1974 2156 1609 1980 2162 1604 1829 2071 1604 1829 2071 1609 1980 2162 1669 1876 2118 1609 1980 2162 1551 1969 2151 1669 1876 2118 1669 1876 2118 1551 1969 2151 1526 1877 2119 1546 1961 2143 1611 1981 2163 1610 1962 2144 1610 1962 2144 1611 1981 2163 1670 1982 2164 1612 1983 2165 1545 1963 2145 1670 1982 2164 1670 1982 2164 1545 1963 2145 1610 1962 2144 1597 1965 2147 1547 1964 2146 1671 1985 2167 1671 1985 2167 1547 1964 2146 1613 1984 2166 1546 1961 2143 1597 1965 2147 1611 1981 2163 1611 1981 2163 1597 1965 2147 1671 1985 2167 1549 1966 2148 1614 1986 2168 1599 1967 2149 1599 1967 2149 1614 1986 2168 1672 1987 2169 1615 1988 2170 1548 1968 2150 1672 1987 2169 1672 1987 2169 1548 1968 2150 1599 1967 2149 1601 1970 2152 1551 1969 2151 1673 1990 2172 1673 1990 2172 1551 1969 2151 1616 1989 2171 1550 1971 2153 1601 1970 2152 1617 1991 2173 1617 1991 2173 1601 1970 2152 1673 1990 2172 1603 1973 2155 1553 1972 2154 1674 1993 2175 1674 1993 2175 1553 1972 2154 1618 1992 2174 1552 1974 2156 1603 1973 2155 1619 1994 2176 1619 1994 2176 1603 1973 2155 1674 1993 2175 1548 1968 2150 1615 1988 2170 1605 1975 2157 1605 1975 2157 1615 1988 2170 1675 1995 2177 1618 1992 2174 1553 1972 2154 1675 1995 2177 1675 1995 2177 1553 1972 2154 1605 1975 2157 1554 1976 2158 1620 1996 2178 1606 1977 2159 1606 1977 2159 1620 1996 2178 1676 1997 2179 1614 1986 2168 1549 1966 2148 1676 1997 2179 1676 1997 2179 1549 1966 2148 1606 1977 2159 1545 1963 2145 1612 1983 2165 1607 1978 2160 1607 1978 2160 1612 1983 2165 1677 1998 2180 1620 1996 2178 1554 1976 2158 1677 1998 2180 1677 1998 2180 1554 1976 2158 1607 1978 2160 1608 1979 2161 1550 1971 2153 1678 1999 2181 1678 1999 2181 1550 1971 2153 1617 1991 2173 1547 1964 2146 1608 1979 2161 1613 1984 2166 1613 1984 2166 1608 1979 2161 1678 1999 2181 1609 1980 2162 1552 1974 2156 1679 2000 2182 1679 2000 2182 1552 1974 2156 1619 1994 2176 1551 1969 2151 1609 1980 2162 1616 1989 2171 1616 1989 2171 1609 1980 2162 1679 2000 2182 1651 1814 745 1587 1809 740 1588 1815 746 1587 1809 740 1595 1769 700 1588 1815 746 1595 1769 700 1659 1819 750 1588 1815 746 1594 1764 695 1589 1803 734 1657 1772 703 1657 1772 703 1589 1803 734 1653 1802 733 1658 1763 694 1652 1808 739 1594 1764 695 1594 1764 695 1652 1808 739 1589 1803 734 1657 1772 703 1653 1802 733 1593 1773 704 1593 1773 704 1653 1802 733 1590 1797 728 1655 1784 715 1592 1779 710 1591 1785 716 1680 1793 724 1681 1792 723 1592 1779 710 1592 1779 710 1681 1792 723 1591 1785 716 1590 1797 728 1654 1796 727 1593 1773 704 1593 1773 704 1654 1796 727 1656 1778 709 1559 1782 713 1591 1785 716 1625 1788 719 1625 1788 719 1591 1785 716 1681 1792 723 1592 1779 710 1656 1778 709 1680 1793 724 1680 1793 724 1656 1778 709 1654 1796 727 1611 1981 2163 1519 2001 2183 1670 1982 2164 1670 1982 2164 1519 2001 2183 1520 2002 2184 1670 1982 2164 1520 2002 2184 1612 1983 2165 1612 1983 2165 1520 2002 2184 1882 1750 2052 1517 2003 2185 1518 2004 2186 1613 1984 2166 1613 1984 2166 1518 2004 2186 1671 1985 2167 1488 1724 2026 1485 1723 2025 1614 1986 2168 1614 1986 2168 1485 1723 2025 1672 1987 2169 1672 1987 2169 1485 1723 2025 1615 1988 2170 1615 1988 2170 1485 1723 2025 1476 1714 2016 1499 1737 2039 1505 1743 2045 1616 1989 2171 1616 1989 2171 1505 1743 2045 1673 1990 2172 1505 1743 2045 1511 1749 2051 1673 1990 2172 1673 1990 2172 1511 1749 2051 1617 1991 2173 1618 1992 2174 1474 1712 2014 1674 1993 2175 1674 1993 2175 1474 1712 2014 1484 1722 2024 1674 1993 2175 1484 1722 2024 1619 1994 2176 1619 1994 2176 1484 1722 2024 1487 1729 2031 1476 1714 2016 1475 1713 2015 1615 1988 2170 1615 1988 2170 1475 1713 2015 1675 1995 2177 1675 1995 2177 1475 1713 2015 1618 1992 2174 1618 1992 2174 1475 1713 2015 1474 1712 2014 1620 1996 2178 1500 1739 2041 1676 1997 2179 1676 1997 2179 1500 1739 2041 1494 1733 2035 1676 1997 2179 1494 1733 2035 1614 1986 2168 1614 1986 2168 1494 1733 2035 1488 1724 2026 1677 1998 2180 1506 1745 2047 1620 1996 2178 1620 1996 2178 1506 1745 2047 1500 1739 2041 1617 1991 2173 1511 1749 2051 1678 1999 2181 1678 1999 2181 1511 1749 2051 1516 1758 2060 1516 1758 2060 1517 2003 2185 1678 1999 2181 1678 1999 2181 1517 2003 2185 1613 1984 2166 1619 1994 2176 1487 1729 2031 1679 2000 2182 1679 2000 2182 1487 1729 2031 1493 1731 2033 1679 2000 2182 1493 1731 2033 1616 1989 2171 1616 1989 2171 1493 1731 2033 1499 1737 2039 1518 2004 2186 1519 2001 2183 1671 1985 2167 1671 1985 2167 1519 2001 2183 1611 1981 2163 1487 1729 2031 1484 1722 2024 1483 1721 2023 1484 1722 2024 1474 1712 2014 1473 1711 2013 1677 1998 2180 1612 1983 2165 1506 1745 2047 1506 1745 2047 1612 1983 2165 1882 1750 2052 1807 2005 620 1687 2006 621 1721 2007 622 1687 2006 621 1722 2008 623 1721 2007 622 1721 2007 622 1722 2008 623 1807 2005 620 1723 2009 624 1070 1282 380 1808 2010 625 1808 2010 625 1070 1282 380 1092 1281 379 1879 2012 627 1723 2009 624 1878 2011 626 1878 2011 626 1723 2009 624 1808 2010 625 1723 2009 624 1879 2012 627 1809 2014 629 1809 2014 629 1879 2012 627 1880 2013 628 1093 1289 387 1809 2014 629 1110 1287 385 1110 1287 385 1809 2014 629 1857 2015 630 1070 1282 380 1723 2009 624 1093 1289 387 1093 1289 387 1723 2009 624 1809 2014 629 1867 2017 632 1724 2018 633 1789 2016 631 1789 2016 631 1724 2018 633 1688 2019 634 1724 2018 633 1867 2017 632 1683 2020 635 1683 2020 635 1867 2017 632 1685 2021 636 1725 2023 638 1720 2024 639 1690 2022 637 1690 2022 637 1720 2024 639 1682 2025 640 1071 1300 398 1069 2026 399 1725 2023 638 1725 2023 638 1069 2026 399 1720 2027 639 1724 2018 633 1683 2028 635 1810 2030 642 1810 2030 642 1683 2028 635 1726 2029 641 1684 2032 643 1847 2033 644 1726 2031 641 1726 2031 641 1847 2033 644 1810 2030 642 1847 2033 644 1792 2034 645 1810 2030 642 1810 2030 642 1792 2034 645 1727 2035 646 1688 2019 634 1724 2018 633 1727 2035 646 1727 2035 646 1724 2018 633 1810 2030 642 1844 2037 648 1728 2038 649 1788 2036 647 1788 2036 647 1728 2038 649 1691 2039 650 1789 2016 631 1688 2019 634 1844 2037 648 1844 2037 648 1688 2019 634 1728 2038 649 1729 2040 651 1693 2041 652 1811 2043 654 1811 2043 654 1693 2041 652 1730 2042 653 1694 2044 655 1815 2045 656 1730 2042 653 1730 2042 653 1815 2045 656 1811 2043 654 1815 2045 656 1731 2046 657 1811 2043 654 1731 2046 657 1692 2047 658 1811 2043 654 1811 2043 654 1692 2047 658 1729 2040 651 1732 2048 659 1690 2022 637 1812 2050 661 1812 2050 661 1690 2022 637 1689 2049 660 1695 2052 663 1732 2048 659 1790 2051 662 1790 2051 662 1732 2048 659 1812 2050 661 1732 2048 659 1695 2052 663 1813 2054 665 1813 2054 665 1695 2052 663 1733 2053 664 1072 1331 426 1094 1330 425 1733 2053 664 1733 2053 664 1094 1330 425 1813 2054 665 1094 1330 425 1071 1300 398 1813 2054 665 1813 2054 665 1071 1300 398 1725 2023 638 1690 2022 637 1732 2048 659 1725 2023 638 1725 2023 638 1732 2048 659 1813 2054 665 1848 2055 666 1793 2056 667 1814 2058 669 1814 2058 669 1793 2056 667 1734 2057 668 1734 2057 668 1691 2039 650 1814 2058 669 1814 2058 669 1691 2039 650 1728 2038 649 1688 2019 634 1727 2035 646 1728 2038 649 1728 2038 649 1727 2035 646 1814 2058 669 1792 2034 645 1848 2055 666 1727 2035 646 1727 2035 646 1848 2055 666 1814 2058 669 1694 2044 655 1696 2059 670 1815 2045 656 1815 2045 656 1696 2059 670 1735 2060 671 1735 2060 671 1736 2061 672 1815 2045 656 1698 2063 674 1737 2064 675 1778 2062 673 1778 2062 673 1737 2064 675 1699 2065 676 1737 2064 675 1779 2066 677 1699 2065 676 1699 2065 676 1779 2066 677 1866 2067 678 1738 2068 679 1073 1348 443 1816 2069 680 1816 2069 680 1073 1348 443 1095 1347 442 1095 1347 442 1074 1350 445 1816 2069 680 1816 2069 680 1074 1350 445 1836 2070 681 1779 2066 677 1737 2064 675 1836 2070 681 1836 2070 681 1737 2064 675 1816 2069 680 1698 2063 674 1738 2068 679 1737 2064 675 1737 2064 675 1738 2068 679 1816 2069 680 1798 2071 682 1701 2072 683 1817 2074 685 1817 2074 685 1701 2072 683 1740 2073 684 1700 2075 686 1739 2076 687 1740 2073 684 1740 2073 684 1739 2076 687 1817 2074 685 1702 2078 689 1742 2079 690 1741 2077 688 1741 2077 688 1742 2079 690 1818 2080 691 1686 2081 751 1807 2005 620 1742 2079 690 1742 2079 690 1807 2005 620 1818 2080 691 1818 2080 691 1744 2082 753 1741 2077 688 1741 2077 688 1744 2082 753 1871 2083 754 1722 2008 623 1743 2084 755 1807 2005 620 1807 2005 620 1743 2084 755 1818 2080 691 1743 2084 755 1703 2085 756 1818 2080 691 1818 2080 691 1703 2085 756 1744 2082 753 1876 2087 758 1877 2088 759 1745 2086 757 1745 2086 757 1877 2088 759 1819 2089 760 1877 2088 759 1878 2011 626 1819 2089 760 1819 2089 760 1878 2011 626 1808 2010 625 1808 2010 625 1092 1281 379 1819 2089 760 1819 2089 760 1092 1281 379 1096 1369 464 1075 1370 465 1745 2086 757 1096 1369 464 1096 1369 464 1745 2086 757 1819 2089 760 1788 2036 647 1691 2039 650 1843 2091 762 1843 2091 762 1691 2039 650 1746 2090 761 1843 2091 762 1746 2090 761 1704 2092 763 1704 2092 763 1746 2090 761 1705 2093 764 1747 2094 765 1706 2095 766 1820 2097 768 1820 2097 768 1706 2095 766 1748 2096 767 1707 2098 769 1749 2099 770 1748 2096 767 1748 2096 767 1749 2099 770 1820 2097 768 1749 2099 770 1702 2078 689 1820 2097 768 1820 2097 768 1702 2078 689 1741 2077 688 1706 2095 766 1747 2094 765 1750 2100 771 1750 2100 771 1747 2094 765 1821 2101 772 1744 2082 753 1805 2103 774 1871 2083 754 1751 2102 773 1871 2083 754 1805 2103 774 1751 2102 773 1696 2059 670 1821 2101 772 1821 2101 772 1696 2059 670 1752 2104 775 1708 2105 776 1750 2100 771 1752 2104 775 1752 2104 775 1750 2100 771 1821 2101 772 1702 2078 689 1749 2099 770 1753 2106 777 1753 2106 777 1749 2099 770 1822 2107 778 1749 2099 770 1707 2098 769 1822 2107 778 1822 2107 778 1707 2098 769 1754 2108 779 1802 2109 780 1856 2110 781 1754 2108 779 1754 2108 779 1856 2110 781 1822 2107 778 1856 2110 781 1803 2111 782 1822 2107 778 1822 2107 778 1803 2111 782 1753 2106 777 1755 2113 784 1842 2114 785 1709 2112 783 1709 2112 783 1842 2114 785 1787 2115 786 1842 2114 785 1755 2113 784 1786 2116 787 1786 2116 787 1755 2113 784 1710 2117 788 1756 2118 789 1712 2119 790 1823 2121 792 1823 2121 792 1712 2119 790 1757 2120 791 1714 2122 793 1758 2123 794 1757 2120 791 1757 2120 791 1758 2123 794 1823 2121 792 1758 2123 794 1713 2124 795 1823 2121 792 1823 2121 792 1713 2124 795 1759 2125 796 1711 2126 797 1756 2118 789 1759 2125 796 1759 2125 796 1756 2118 789 1823 2121 792 1760 2127 798 1715 2128 799 1824 2130 801 1824 2130 801 1715 2128 799 1761 2129 800 1700 2075 686 1762 2131 802 1761 2129 800 1761 2129 800 1762 2131 802 1824 2130 801 1712 2119 790 1756 2118 789 1762 2131 802 1762 2131 802 1756 2118 789 1824 2130 801 1756 2118 789 1711 2126 797 1824 2130 801 1824 2130 801 1711 2126 797 1760 2127 798 1763 2132 803 1795 2133 804 1825 2135 806 1825 2135 806 1795 2133 804 1851 2134 805 1796 2136 807 1764 2137 808 1851 2134 805 1851 2134 805 1764 2137 808 1825 2135 806 1764 2137 808 1710 2117 788 1825 2135 806 1825 2135 806 1710 2117 788 1755 2113 784 1709 2112 783 1763 2132 803 1755 2113 784 1755 2113 784 1763 2132 803 1825 2135 806 1713 2124 795 1758 2123 794 1765 2138 809 1765 2138 809 1758 2123 794 1826 2139 810 1758 2123 794 1714 2122 793 1826 2139 810 1826 2139 810 1714 2122 793 1766 2140 811 1800 2141 812 1854 2142 813 1766 2140 811 1766 2140 811 1854 2142 813 1826 2139 810 1854 2142 813 1801 2143 814 1826 2139 810 1826 2139 810 1801 2143 814 1765 2138 809 1786 2116 787 1710 2117 788 1841 2144 815 1841 2144 815 1710 2117 788 1764 2137 808 1797 2145 816 1841 2144 815 1796 2136 807 1796 2136 807 1841 2144 815 1764 2137 808 1799 2147 818 1853 2148 819 1767 2146 817 1767 2146 817 1853 2148 819 1827 2149 820 1853 2148 819 1800 2141 812 1827 2149 820 1827 2149 820 1800 2141 812 1766 2140 811 1766 2140 811 1714 2122 793 1827 2149 820 1827 2149 820 1714 2122 793 1757 2120 791 1712 2119 790 1767 2146 817 1757 2120 791 1757 2120 791 1767 2146 817 1827 2149 820 1768 2150 821 1695 2052 663 1828 2151 822 1828 2151 822 1695 2052 663 1790 2051 662 1716 2153 824 1768 2150 821 1791 2152 823 1791 2152 823 1768 2150 821 1828 2151 822 1717 2155 826 1769 2156 827 1770 2154 825 1770 2154 825 1769 2156 827 1829 2157 828 1744 2082 753 1703 2085 756 1830 2159 830 1830 2159 830 1703 2085 756 1771 2158 829 1771 2158 829 1875 2161 832 1872 2160 831 1872 2160 831 1875 2161 832 1874 2162 833 1768 2150 821 1716 2153 824 1831 2164 835 1831 2164 835 1716 2153 824 1773 2163 834 1076 1447 542 1097 1446 541 1773 2163 834 1773 2163 834 1097 1446 541 1831 2164 835 1097 1446 541 1072 1331 426 1831 2164 835 1831 2164 835 1072 1331 426 1733 2053 664 1695 2052 663 1768 2150 821 1733 2053 664 1733 2053 664 1768 2150 821 1831 2164 835 1876 2087 758 1745 2086 757 1875 2161 832 1875 2161 832 1745 2086 757 1832 2165 836 1745 2086 757 1075 1370 465 1832 2165 836 1832 2165 836 1075 1370 465 1098 1449 544 1077 1451 546 1774 2166 837 1098 1449 544 1098 1449 544 1774 2166 837 1832 2165 836 1774 2166 837 1874 2162 833 1832 2165 836 1832 2165 836 1874 2162 833 1875 2161 832 1718 2167 838 1716 2153 824 1846 2168 839 1846 2168 839 1716 2153 824 1791 2152 823 1769 2156 827 1717 2155 826 1776 2170 841 1776 2170 841 1717 2155 826 1775 2169 840 1872 2160 831 1874 2162 833 1835 2171 842 1835 2171 842 1874 2162 833 1873 2172 843 1078 1458 553 1076 1447 542 1833 2173 844 1833 2173 844 1076 1447 542 1773 2163 834 1716 2153 824 1718 2167 838 1773 2163 834 1773 2163 834 1718 2167 838 1833 2173 844 1774 2166 837 1077 1451 546 1834 2174 845 1834 2174 845 1077 1451 546 1099 1461 556 1874 2162 833 1774 2166 837 1873 2172 843 1873 2172 843 1774 2166 837 1834 2174 845 1776 2170 841 1775 2169 840 1699 2065 676 1699 2065 676 1775 2169 840 1778 2062 673 1074 1350 445 1078 1458 553 1836 2070 681 1836 2070 681 1078 1458 553 1833 2173 844 1718 2167 838 1779 2066 677 1833 2173 844 1833 2173 844 1779 2066 677 1836 2070 681 1794 2176 847 1780 2177 848 1849 2175 846 1849 2175 846 1780 2177 848 1837 2178 849 1780 2177 848 1705 2093 764 1837 2178 849 1837 2178 849 1705 2093 764 1746 2090 761 1691 2039 650 1734 2057 668 1746 2090 761 1746 2090 761 1734 2057 668 1837 2178 849 1734 2057 668 1793 2056 667 1837 2178 849 1837 2178 849 1793 2056 667 1849 2175 846 1855 2179 850 1802 2109 780 1838 2180 851 1838 2180 851 1802 2109 780 1754 2108 779 1707 2098 769 1781 2181 852 1754 2108 779 1754 2108 779 1781 2181 852 1838 2180 851 1781 2181 852 1713 2124 795 1838 2180 851 1838 2180 851 1713 2124 795 1765 2138 809 1801 2143 814 1855 2179 850 1765 2138 809 1765 2138 809 1855 2179 850 1838 2180 851 1719 2182 853 1715 2128 799 1839 2184 855 1839 2184 855 1715 2128 799 1782 2183 854 1708 2105 776 1783 2185 856 1782 2183 854 1782 2183 854 1783 2185 856 1839 2184 855 1704 2092 763 1705 2093 764 1870 2187 858 1870 2187 858 1705 2093 764 1784 2186 857 1709 2112 783 1787 2115 786 1784 2186 857 1784 2186 857 1787 2115 786 1870 2187 858 1785 2188 859 1711 2126 797 1840 2189 860 1840 2189 860 1711 2126 797 1759 2125 796 1713 2124 795 1781 2181 852 1759 2125 796 1759 2125 796 1781 2181 852 1840 2189 860 1781 2181 852 1707 2098 769 1840 2189 860 1840 2189 860 1707 2098 769 1748 2096 767 1706 2095 766 1785 2188 859 1748 2096 767 1748 2096 767 1785 2188 859 1840 2189 860 1797 2145 816 1798 2071 682 1841 2144 815 1841 2144 815 1798 2071 682 1817 2074 685 1739 2076 687 1786 2116 787 1817 2074 685 1817 2074 685 1786 2116 787 1841 2144 815 1786 2116 787 1739 2076 687 1842 2114 785 1842 2114 785 1739 2076 687 1863 2190 861 1719 2182 853 1787 2115 786 1863 2190 861 1863 2190 861 1787 2115 786 1842 2114 785 1704 2092 763 1783 2185 856 1843 2091 762 1843 2091 762 1783 2185 856 1860 2191 862 1694 2044 655 1788 2036 647 1860 2191 862 1860 2191 862 1788 2036 647 1843 2091 762 1788 2036 647 1694 2044 655 1844 2037 648 1844 2037 648 1694 2044 655 1730 2042 653 1693 2041 652 1789 2016 631 1730 2042 653 1730 2042 653 1789 2016 631 1844 2037 648 1693 2041 652 1729 2040 651 1685 2192 636 1685 2192 636 1729 2040 651 1845 2193 863 1896 2194 864 1692 2047 658 1731 2046 657 1829 2157 828 1769 2156 827 1828 2151 822 1828 2151 822 1769 2156 827 1791 2152 823 1769 2156 827 1776 2170 841 1791 2152 823 1791 2152 823 1776 2170 841 1846 2168 839 1776 2170 841 1699 2065 676 1846 2168 839 1846 2168 839 1699 2065 676 1866 2067 678 1068 2196 577 1100 1483 576 1684 2195 643 1684 2195 643 1100 1483 576 1847 2033 644 1100 1483 576 1079 1485 578 1847 2033 644 1847 2033 644 1079 1485 578 1792 2034 645 1079 1485 578 1101 1486 579 1792 2034 645 1792 2034 645 1101 1486 579 1848 2055 666 1101 1486 579 1080 1487 580 1848 2055 666 1848 2055 666 1080 1487 580 1793 2056 667 1080 1487 580 1102 1488 581 1793 2056 667 1793 2056 667 1102 1488 581 1849 2175 846 1081 1489 582 1794 2176 847 1102 1488 581 1102 1488 581 1794 2176 847 1849 2175 846 1794 2176 847 1081 1489 582 1850 2197 865 1850 2197 865 1081 1489 582 1103 1491 584 1082 1492 585 1795 2133 804 1103 1491 584 1103 1491 584 1795 2133 804 1850 2197 865 1795 2133 804 1082 1492 585 1851 2134 805 1851 2134 805 1082 1492 585 1104 1493 586 1083 1494 587 1796 2136 807 1104 1493 586 1104 1493 586 1796 2136 807 1851 2134 805 1084 1495 588 1797 2145 816 1083 1494 587 1083 1494 587 1797 2145 816 1796 2136 807 1085 1496 589 1798 2071 682 1084 1495 588 1084 1495 588 1798 2071 682 1797 2145 816 1087 1499 592 1105 1498 591 1701 2072 683 1701 2072 683 1105 1498 591 1852 2198 866 1105 1498 591 1086 1500 593 1852 2198 866 1852 2198 866 1086 1500 593 1799 2147 818 1106 1501 594 1088 1502 595 1853 2148 819 1853 2148 819 1088 1502 595 1800 2141 812 1086 1500 593 1106 1501 594 1799 2147 818 1799 2147 818 1106 1501 594 1853 2148 819 1088 1502 595 1107 1503 596 1800 2141 812 1800 2141 812 1107 1503 596 1854 2142 813 1107 1503 596 1089 1504 597 1854 2142 813 1854 2142 813 1089 1504 597 1801 2143 814 1108 1505 598 1090 1506 599 1855 2179 850 1855 2179 850 1090 1506 599 1802 2109 780 1089 1504 597 1108 1505 598 1801 2143 814 1801 2143 814 1108 1505 598 1855 2179 850 1090 1506 599 1109 1507 600 1802 2109 780 1802 2109 780 1109 1507 600 1856 2110 781 1109 1507 600 1091 1508 601 1856 2110 781 1856 2110 781 1091 1508 601 1803 2111 782 1091 1508 601 1110 1287 385 1803 2111 782 1803 2111 782 1110 1287 385 1857 2015 630 1738 2068 679 1698 2063 674 1858 2200 868 1858 2200 868 1698 2063 674 1804 2199 867 1873 2172 843 1834 2174 845 1804 2199 867 1804 2199 867 1834 2174 845 1858 2200 868 1834 2174 845 1099 1461 556 1858 2200 868 1858 2200 868 1099 1461 556 1111 1511 604 1073 1348 443 1738 2068 679 1111 1511 604 1111 1511 604 1738 2068 679 1858 2200 868 1085 1496 589 1087 1499 592 1798 2071 682 1798 2071 682 1087 1499 592 1701 2072 683 1697 2201 869 1805 2103 774 1770 2154 825 1770 2154 825 1805 2103 774 1859 2202 870 1805 2103 774 1744 2082 753 1859 2202 870 1859 2202 870 1744 2082 753 1830 2159 830 1772 2203 871 1806 2204 872 1830 2159 830 1830 2159 830 1806 2204 872 1859 2202 870 1806 2204 872 1717 2155 826 1859 2202 870 1859 2202 870 1717 2155 826 1770 2154 825 1783 2185 856 1708 2105 776 1860 2191 862 1860 2191 862 1708 2105 776 1752 2104 775 1694 2044 655 1860 2191 862 1696 2059 670 1696 2059 670 1860 2191 862 1752 2104 775 1717 2155 826 1806 2204 872 1775 2169 840 1775 2169 840 1806 2204 872 1861 2205 873 1806 2204 872 1772 2203 871 1861 2205 873 1861 2205 873 1772 2203 871 1777 2206 874 1785 2188 859 1706 2095 766 1862 2207 875 1862 2207 875 1706 2095 766 1750 2100 771 1750 2100 771 1708 2105 776 1862 2207 875 1862 2207 875 1708 2105 776 1782 2183 854 1715 2128 799 1760 2127 798 1782 2183 854 1782 2183 854 1760 2127 798 1862 2207 875 1711 2126 797 1785 2188 859 1760 2127 798 1760 2127 798 1785 2188 859 1862 2207 875 1775 2169 840 1861 2205 873 1778 2062 673 1778 2062 673 1861 2205 873 1864 2208 876 1777 2206 874 1835 2171 842 1861 2205 873 1861 2205 873 1835 2171 842 1864 2208 876 1739 2076 687 1700 2075 686 1863 2190 861 1863 2190 861 1700 2075 686 1761 2129 800 1715 2128 799 1719 2182 853 1761 2129 800 1761 2129 800 1719 2182 853 1863 2190 861 1804 2199 867 1698 2063 674 1864 2208 876 1864 2208 876 1698 2063 674 1778 2062 673 1852 2198 866 1799 2147 818 1865 2209 877 1865 2209 877 1799 2147 818 1767 2146 817 1712 2119 790 1762 2131 802 1767 2146 817 1767 2146 817 1762 2131 802 1865 2209 877 1762 2131 802 1700 2075 686 1865 2209 877 1865 2209 877 1700 2075 686 1740 2073 684 1701 2072 683 1852 2198 866 1740 2073 684 1740 2073 684 1852 2198 866 1865 2209 877 1779 2066 677 1718 2167 838 1866 2067 678 1866 2067 678 1718 2167 838 1846 2168 839 1789 2016 631 1693 2041 652 1867 2017 632 1867 2017 632 1693 2041 652 1685 2210 636 1696 2059 670 1751 2102 773 1735 2060 671 1735 2060 671 1751 2102 773 1697 2201 869 1805 2103 774 1697 2201 869 1751 2102 773 1803 2111 782 1857 2015 630 1753 2106 777 1753 2106 777 1857 2015 630 1868 2211 878 1857 2015 630 1809 2014 629 1868 2211 878 1809 2014 629 1880 2013 628 1868 2211 878 1742 2079 690 1702 2078 689 1868 2211 878 1868 2211 878 1702 2078 689 1753 2106 777 1780 2177 848 1794 2176 847 1869 2212 879 1869 2212 879 1794 2176 847 1850 2197 865 1795 2133 804 1763 2132 803 1850 2197 865 1850 2197 865 1763 2132 803 1869 2212 879 1763 2132 803 1709 2112 783 1869 2212 879 1869 2212 879 1709 2112 783 1784 2186 857 1705 2093 764 1780 2177 848 1784 2186 857 1784 2186 857 1780 2177 848 1869 2212 879 1787 2115 786 1719 2182 853 1870 2187 858 1870 2187 858 1719 2182 853 1839 2184 855 1783 2185 856 1704 2092 763 1839 2184 855 1839 2184 855 1704 2092 763 1870 2187 858 1871 2083 754 1751 2102 773 1747 2094 765 1747 2094 765 1751 2102 773 1821 2101 772 1871 2083 754 1747 2094 765 1741 2077 688 1741 2077 688 1747 2094 765 1820 2097 768 1772 2203 871 1872 2160 831 1777 2206 874 1777 2206 874 1872 2160 831 1835 2171 842 1872 2160 831 1772 2203 871 1771 2158 829 1771 2158 829 1772 2203 871 1830 2159 830 1835 2171 842 1873 2172 843 1864 2208 876 1864 2208 876 1873 2172 843 1804 2199 867 1703 2085 756 1876 2087 758 1771 2158 829 1771 2158 829 1876 2087 758 1875 2161 832 1877 2088 759 1876 2087 758 1743 2084 755 1743 2084 755 1876 2087 758 1703 2085 756 1743 2084 755 1722 2008 623 1877 2088 759 1877 2088 759 1722 2008 623 1878 2011 626 1687 2006 621 1879 2012 627 1722 2008 623 1722 2008 623 1879 2012 627 1878 2011 626 1880 2013 628 1879 2012 627 1686 2081 751 1686 2081 751 1879 2012 627 1687 2006 621 1868 2211 878 1880 2013 628 1742 2079 690 1742 2079 690 1880 2013 628 1686 2081 751 1684 2214 2187 1886 2215 2188 1068 2213 1843 1068 2213 1843 1886 2215 2188 1319 1525 1844 1521 1759 2061 1886 2215 2188 1518 2004 2186 1518 2004 2186 1886 2215 2188 1887 2216 2189 1518 2004 2186 1517 2003 2185 1521 1759 2061 1521 1759 2061 1517 2003 2185 1881 1760 2062 1517 2003 2185 1516 1758 2060 1881 1760 2062 1881 1760 2062 1516 1758 2060 1515 1757 2059 898 1023 1712 1312 1025 1714 1515 1757 2059 1515 1757 2059 1312 1025 1714 1881 1760 2062 1683 2217 2190 1685 2218 2191 1888 2220 2193 1888 2220 2193 1685 2218 2191 1889 2219 2192 1882 1750 2052 1520 2002 2184 1890 2221 2194 1890 2221 2194 1520 2002 2184 1889 2219 2192 1885 2223 2196 1892 2224 2197 1884 2222 2195 1884 2222 2195 1892 2224 2197 1891 2225 2198 1514 1754 2056 1898 2226 2199 1315 1538 1857 1315 1538 1857 1898 2226 2199 1320 1539 1858 1518 2004 2186 1887 2216 2189 1519 2001 2183 1519 2001 2183 1887 2216 2189 1888 2220 2193 1882 1750 2052 1890 2221 2194 1512 1751 2053 1512 1751 2053 1890 2221 2194 1891 2225 2198 1729 2040 651 1692 2047 658 1845 2228 863 1845 2228 863 1692 2047 658 1884 2227 880 1690 2022 637 1682 2229 640 1689 2049 660 1689 2049 660 1682 2229 640 1885 2230 881 1513 1752 2054 1892 2224 2197 1883 1753 2055 1883 1753 2055 1892 2224 2197 1893 2231 2200 1884 2233 880 1692 2047 658 1885 2232 881 1885 2232 881 1692 2047 658 1689 2049 660 905 1028 1717 1319 1525 1844 1521 1759 2061 1521 1759 2061 1319 1525 1844 1886 2215 2188 1069 2235 1862 1320 1539 1858 1720 2234 2201 1720 2234 2201 1320 1539 1858 1898 2226 2199 1684 2236 2187 1726 2237 2202 1886 2215 2188 1886 2215 2188 1726 2237 2202 1887 2216 2189 1726 2238 2202 1683 2239 2190 1887 2216 2189 1887 2216 2189 1683 2239 2190 1888 2220 2193 1520 2002 2184 1519 2001 2183 1889 2219 2192 1889 2219 2192 1519 2001 2183 1888 2220 2193 1845 2241 2203 1890 2221 2194 1685 2240 2191 1685 2240 2191 1890 2221 2194 1889 2219 2192 1884 2243 2195 1891 2225 2198 1845 2242 2203 1845 2242 2203 1891 2225 2198 1890 2221 2194 1512 1751 2053 1891 2225 2198 1513 1752 2054 1513 1752 2054 1891 2225 2198 1892 2224 2197 1682 2245 2204 1893 2231 2200 1885 2244 2196 1885 2244 2196 1893 2231 2200 1892 2224 2197 1720 2247 2201 1898 2226 2199 1682 2246 2204 1682 2246 2204 1898 2226 2199 1893 2231 2200 1894 2248 882 1697 2201 869 1829 2157 828 1829 2157 828 1697 2201 869 1770 2154 825 1894 2248 882 1829 2157 828 1790 2051 662 1790 2051 662 1829 2157 828 1828 2151 822 1894 2248 882 1790 2051 662 1895 2249 883 1895 2249 883 1790 2051 662 1812 2050 661 1735 2060 671 1697 2201 869 1736 2061 672 1736 2061 672 1697 2201 869 1894 2248 882 1736 2061 672 1894 2248 882 1896 2194 864 1896 2194 864 1894 2248 882 1895 2249 883 1692 2047 658 1896 2194 864 1689 2049 660 1689 2049 660 1896 2194 864 1895 2249 883 1689 2049 660 1895 2249 883 1812 2050 661 1815 2045 656 1736 2061 672 1731 2046 657 1731 2046 657 1736 2061 672 1896 2194 864 1883 1753 2055 1893 2231 2200 1514 1754 2056 1514 1754 2056 1893 2231 2200 1898 2226 2199 1371 1600 1902 1899 1601 1903 1359 1584 1886 1359 1584 1886 1899 1601 1903 1360 1586 1888 1382 1613 1915 1900 1614 1916 1371 1600 1902 1371 1600 1902 1900 1614 1916 1899 1601 1903 1393 1626 1928 1901 1627 1929 1382 1613 1915 1382 1613 1915 1901 1627 1929 1900 1614 1916 1404 1639 1941 1902 1640 1942 1393 1626 1928 1393 1626 1928 1902 1640 1942 1901 1627 1929 1404 1639 1941 1415 1652 1954 1902 1640 1942 1902 1640 1942 1415 1652 1954 350 790 1479 1426 1664 1966 433 793 1482 1415 1652 1954 1415 1652 1954 433 793 1482 350 790 1479 1497 1735 2037 1903 1756 2058 430 806 1495 1503 1741 2043 1509 1747 2049 1903 1756 2058 1903 1756 2058 1509 1747 2049 1904 1755 2057 1051 1105 1734 986 1090 1719 1905 1106 1735 1905 1106 1735 986 1090 1719 1906 1093 1722 1048 1091 1720 908 1109 1738 1907 1092 1721 1907 1092 1721 908 1109 1738 1908 1096 1725 1017 1095 1724 951 1107 1736 1907 1092 1721 1907 1092 1721 951 1107 1736 1906 1093 1722 1019 1108 1737 925 1101 1730 1905 1106 1735 1905 1106 1735 925 1101 1730 1909 1103 1732 1020 1113 1742 923 1094 1723 1910 1111 1740 1910 1111 1740 923 1094 1723 1908 1096 1725 1050 1098 1727 909 1104 1733 1911 1099 1728 1911 1099 1728 909 1104 1733 1909 1103 1732 1052 1110 1739 910 1115 1744 1910 1111 1740 1910 1111 1740 910 1115 1744 1912 1114 1743 1018 1102 1731 952 1148 1777 1911 1099 1728 1911 1099 1728 952 1148 1777 1913 1100 1729 1021 1119 1748 924 1112 1741 1914 1117 1746 1914 1117 1746 924 1112 1741 1912 1114 1743 990 1097 1726 1913 1100 1729 1055 1146 1775 1055 1146 1775 1913 1100 1729 1915 1147 1776 982 1125 1754 1916 1120 1749 1053 1116 1745 1053 1116 1745 1916 1120 1749 1914 1117 1746 928 1142 1771 1917 1144 1773 1026 1149 1778 1026 1149 1778 1917 1144 1773 1915 1147 1776 926 1118 1747 1916 1120 1749 1022 1122 1751 1022 1122 1751 1916 1120 1749 1918 1123 1752 912 1145 1774 1917 1144 1773 1049 1140 1769 1049 1140 1769 1917 1144 1773 1919 1141 1770 984 1127 1756 1920 1124 1753 1046 1126 1755 1046 1126 1755 1920 1124 1753 1918 1123 1752 930 1136 1765 1921 1138 1767 1025 1143 1772 1025 1143 1772 1921 1138 1767 1919 1141 1770 927 1121 1750 1920 1124 1753 1023 1131 1760 1023 1131 1760 1920 1124 1753 1922 1129 1758 988 1139 1768 1921 1138 1767 1054 1134 1763 1054 1134 1763 1921 1138 1767 1923 1135 1764 911 1133 1762 1924 1132 1761 1047 1128 1757 1047 1128 1757 1924 1132 1761 1922 1129 1758 929 1130 1759 1924 1132 1761 1024 1137 1766 1024 1137 1766 1924 1132 1761 1923 1135 1764 1662 1821 2063 1926 1824 2066 1522 1841 2083 1522 1841 2083 1926 1824 2066 1925 1827 2069 1665 1835 2077 1928 1837 2079 1600 1822 2064 1600 1822 2064 1928 1837 2079 1927 1823 2065 1631 1825 2067 1926 1824 2066 1565 1839 2081 1565 1839 2081 1926 1824 2066 1927 1823 2065 1634 1843 2085 1929 1842 2084 1537 1826 2068 1537 1826 2068 1929 1842 2084 1925 1827 2069 1633 1838 2080 1928 1837 2079 1539 1833 2075 1539 1833 2075 1928 1837 2079 1930 1834 2076 1666 1840 2082 1929 1842 2084 1524 1847 2089 1524 1847 2089 1929 1842 2084 1931 1845 2087 1664 1828 2070 1932 1831 2073 1523 1836 2078 1523 1836 2078 1932 1831 2073 1930 1834 2076 1635 1849 2091 1933 1848 2090 1538 1844 2086 1538 1844 2086 1933 1848 2090 1931 1845 2087 1632 1832 2074 1932 1831 2073 1566 1880 2122 1566 1880 2122 1932 1831 2073 1934 1830 2072 1596 1857 2099 1667 1846 2088 1935 1851 2093 1935 1851 2093 1667 1846 2088 1933 1848 2090 1604 1829 2071 1669 1876 2118 1934 1830 2072 1934 1830 2072 1669 1876 2118 1936 1878 2120 1540 1850 2092 1636 1852 2094 1935 1851 2093 1935 1851 2093 1636 1852 2094 1937 1855 2097 1542 1874 2116 1640 1879 2121 1938 1875 2117 1938 1875 2117 1640 1879 2121 1936 1878 2120 1598 1859 2101 1660 1856 2098 1939 1854 2096 1939 1854 2096 1660 1856 2098 1937 1855 2097 1526 1877 2119 1663 1870 2112 1938 1875 2117 1938 1875 2117 1663 1870 2112 1940 1872 2114 1541 1853 2095 1637 1861 2103 1939 1854 2096 1939 1854 2096 1637 1861 2103 1941 1860 2102 1544 1868 2110 1639 1873 2115 1942 1869 2111 1942 1869 2111 1639 1873 2115 1940 1872 2114 1525 1865 2107 1661 1858 2100 1943 1863 2105 1943 1863 2105 1661 1858 2100 1941 1860 2102 1602 1871 2113 1668 1864 2106 1942 1869 2111 1942 1869 2111 1668 1864 2106 1944 1866 2108 1543 1862 2104 1638 1867 2109 1943 1863 2105 1943 1863 2105 1638 1867 2109 1944 1866 2108 651 570 1332 1945 675 1416 2087 571 1333 2087 571 1333 1945 675 1416 2086 2250 2205 374 512 1308 393 653 1394 1964 507 1303 1964 507 1303 393 653 1394 1945 675 1416 2086 2250 2205 1945 675 1416 2107 723 1448 2107 723 1448 1945 675 1416 393 653 1394 401 620 1368 521 619 1367 1949 771 1466 1949 771 1466 521 619 1367 1948 772 1467 660 630 1378 1950 770 1465 579 623 1371 579 623 1371 1950 770 1465 1949 771 1466 402 628 1376 524 626 1374 1951 769 1464 1951 769 1464 524 626 1374 1950 770 1465 577 664 1405 1952 767 1462 578 631 1379 578 631 1379 1952 767 1462 1951 769 1464 577 664 1405 2094 700 1429 1952 767 1462 1952 767 1462 2094 700 1429 2096 768 1463 584 693 281 1954 765 1000 419 742 977 419 742 977 1954 765 1000 1955 764 999 659 556 239 1957 762 997 575 553 236 575 553 236 1957 762 997 1956 763 998 527 634 248 1957 762 997 404 636 250 404 636 250 1957 762 997 1958 761 996 658 569 245 1959 760 995 574 558 241 574 558 241 1959 760 995 1958 761 996 530 641 255 1959 760 995 407 643 257 407 643 257 1959 760 995 1960 759 994 573 568 244 657 672 268 1960 759 994 1960 759 994 657 672 268 1961 758 993 412 649 263 533 647 261 1962 757 992 1962 757 992 533 647 261 1961 758 993 671 732 309 1947 734 311 571 755 990 571 755 990 1947 734 311 1963 756 991 1470 1708 2010 1481 1719 2021 431 800 1489 431 800 1489 1481 1719 2021 347 801 1490 1459 1697 1999 1470 1708 2010 348 798 1487 348 798 1487 1470 1708 2010 431 800 1489 1448 1686 1988 1459 1697 1999 432 797 1486 432 797 1486 1459 1697 1999 348 798 1487 1437 1675 1977 1448 1686 1988 349 794 1483 349 794 1483 1448 1686 1988 432 797 1486 351 803 1492 347 801 1490 1491 1727 2029 1491 1727 2029 347 801 1490 1481 1719 2021 430 806 1495 351 803 1492 1497 1735 2037 1497 1735 2037 351 803 1492 1491 1727 2029 430 806 1495 1903 1756 2058 435 438 1234 435 438 1234 1903 1756 2058 1986 1021 1710 435 438 1234 1986 1021 1710 88 375 1186 88 375 1186 1986 1021 1710 320 1020 1709 433 793 1482 1426 1664 1966 349 794 1483 349 794 1483 1426 1664 1966 1437 1675 1977 2049 2252 2207 1973 1589 1891 2048 2251 2206 2048 2251 2206 1973 1589 1891 1972 1588 1890 350 790 1479 434 436 1232 1902 1640 1942 1902 1640 1942 434 436 1232 1974 1641 1943 2047 2253 2208 2048 2251 2206 1975 1602 1904 1975 1602 1904 2048 2251 2206 1972 1588 1890 2046 2254 2209 2047 2253 2208 1976 1615 1917 1976 1615 1917 2047 2253 2208 1975 1602 1904 2046 2254 2209 1976 1615 1917 2045 2255 2210 2045 2255 2210 1976 1615 1917 1977 1628 1930 2044 1653 1955 2045 2255 2210 1974 1641 1943 1974 1641 1943 2045 2255 2210 1977 1628 1930 684 410 1214 2026 413 1217 606 781 1473 606 781 1473 2026 413 1217 2027 423 2211 310 111 904 1978 113 906 2024 409 1213 2024 409 1213 1978 113 906 2025 412 1216 858 976 1665 4 371 1182 867 985 1674 867 985 1674 4 371 1182 84 373 1184 858 976 1665 845 964 1653 4 371 1182 4 371 1182 845 964 1653 0 369 1180 721 832 1521 1331 831 1520 1979 835 1524 1979 835 1524 1331 831 1520 1980 836 1525 3 360 1171 87 359 1170 774 2256 2212 774 2256 2212 87 359 1170 1981 892 1581 735 2257 2213 1982 850 1539 722 834 1523 722 834 1523 1982 850 1539 1979 835 1524 748 2258 2214 1983 864 1553 735 2257 2213 735 2257 2213 1983 864 1553 1982 850 1539 761 2259 2215 1984 878 1567 748 2258 2214 748 2258 2214 1984 878 1567 1983 864 1553 774 2256 2212 1981 892 1581 761 2259 2215 761 2259 2215 1981 892 1581 1984 878 1567 810 928 1617 798 916 1605 1 365 1176 1 365 1176 798 916 1605 86 364 1175 1 365 1176 85 367 1178 810 928 1617 810 928 1617 85 367 1178 822 940 1629 822 940 1629 85 367 1178 834 952 1641 834 952 1641 85 367 1178 0 369 1180 845 964 1653 834 952 1641 0 369 1180 88 375 1186 320 1020 1709 2015 2260 2216 2015 2260 2216 84 373 1184 88 375 1186 1514 1754 2056 1315 1538 1857 1904 1755 2057 1904 1755 2057 1315 1538 1857 1985 1019 1708 1337 1017 1706 1985 1019 1708 897 1018 1707 897 1018 1707 1985 1019 1708 1315 1538 1857 243 1 26 1987 2261 2217 90 2 28 90 2 28 1987 2261 2217 1988 2262 2218 91 4 30 1989 2263 2219 243 1 26 243 1 26 1989 2263 2219 1987 2261 2217 244 7 35 1990 2264 2220 91 4 30 91 4 30 1990 2264 2220 1989 2263 2219 299 8 36 1991 2265 2221 244 7 35 244 7 35 1991 2265 2221 1990 2264 2220 164 179 1042 163 178 1041 1993 2267 2223 1993 2267 2223 163 178 1041 1992 2266 2222 266 181 1045 165 180 1043 1995 2269 2225 1995 2269 2225 165 180 1043 1994 2268 2224 163 178 1041 266 181 1045 1992 2266 2222 1992 2266 2222 266 181 1045 1995 2269 2225 90 2 28 1988 2262 2218 288 184 1048 288 184 1048 1988 2262 2218 1996 2270 2226 167 186 1050 164 179 1042 1997 2271 2227 1997 2271 2227 164 179 1042 1993 2267 2223 288 184 1048 1996 2270 2226 324 333 1144 324 333 1144 1996 2270 2226 1998 2272 2228 315 351 1162 167 186 1050 1999 2273 2229 1999 2273 2229 167 186 1050 1997 2271 2227 324 333 1144 1998 2272 2228 165 180 1043 165 180 1043 1998 2272 2228 1994 2268 2224 1991 2265 2221 299 8 36 2018 2274 2230 2018 2274 2230 299 8 36 2017 378 1189 315 351 1162 1999 2273 2229 690 432 1228 690 432 1228 1999 2273 2229 2001 2275 2231 622 442 1238 437 441 1237 2003 2277 2233 2003 2277 2233 437 441 1237 2002 2276 2232 438 443 1239 622 442 1238 2004 2278 2234 2004 2278 2234 622 442 1238 2003 2277 2233 623 446 1242 438 443 1239 2005 2279 2235 2005 2279 2235 438 443 1239 2004 2278 2234 623 446 1242 2005 2279 2235 440 447 1243 440 447 1243 2005 2279 2235 2006 2280 2236 520 617 1365 2007 2281 2237 519 618 1366 519 618 1366 2007 2281 2237 2008 2282 2238 645 622 1370 2009 2283 2239 521 619 1367 521 619 1367 2009 2283 2239 2010 2284 2240 519 618 1366 2008 2282 2238 645 622 1370 645 622 1370 2008 2282 2238 2009 2283 2239 437 441 1237 661 624 1372 2002 2276 2232 2002 2276 2232 661 624 1372 2011 2285 2241 523 625 1373 2012 2286 2242 520 617 1365 520 617 1365 2012 2286 2242 2007 2281 2237 661 624 1372 1948 772 1467 2011 2285 2241 2011 2285 2241 1948 772 1467 2013 2287 2243 440 447 1243 2006 2280 2236 672 774 1469 672 774 1469 2006 2280 2236 2000 2288 2244 690 432 1228 2001 2275 2231 523 625 1373 523 625 1373 2001 2275 2231 2012 2286 2242 1948 772 1467 521 619 1367 2013 2287 2243 2013 2287 2243 521 619 1367 2010 2284 2240 1988 2262 2218 1987 2261 2217 2014 2289 2245 1987 2261 2217 1989 2263 2219 2014 2289 2245 1989 2263 2219 1990 2264 2220 2014 2289 2245 1990 2264 2220 1991 2265 2221 2014 2289 2245 1993 2267 2223 1992 2266 2222 2014 2289 2245 1995 2269 2225 1994 2268 2224 2014 2289 2245 1992 2266 2222 1995 2269 2225 2014 2289 2245 1996 2270 2226 1988 2262 2218 2014 2289 2245 1997 2271 2227 1993 2267 2223 2014 2289 2245 1998 2272 2228 1996 2270 2226 2014 2289 2245 1999 2273 2229 1997 2271 2227 2014 2289 2245 1994 2268 2224 1998 2272 2228 2014 2289 2245 1991 2265 2221 2018 2274 2230 2014 2289 2245 2018 2274 2230 2000 2288 2244 2014 2289 2245 2001 2275 2231 1999 2273 2229 2014 2289 2245 2003 2277 2233 2002 2276 2232 2014 2289 2245 2004 2278 2234 2003 2277 2233 2014 2289 2245 2005 2279 2235 2004 2278 2234 2014 2289 2245 2006 2280 2236 2005 2279 2235 2014 2289 2245 2008 2282 2238 2007 2281 2237 2014 2289 2245 2010 2284 2240 2009 2283 2239 2014 2289 2245 2009 2283 2239 2008 2282 2238 2014 2289 2245 2002 2276 2232 2011 2285 2241 2014 2289 2245 2007 2281 2237 2012 2286 2242 2014 2289 2245 2011 2285 2241 2013 2287 2243 2014 2289 2245 2000 2288 2244 2006 2280 2236 2014 2289 2245 2012 2286 2242 2001 2275 2231 2014 2289 2245 2013 2287 2243 2010 2284 2240 2014 2289 2245 320 1020 1709 884 1002 1691 2015 2260 2216 2015 2260 2216 884 1002 1691 877 995 1684 867 985 1674 84 373 1184 877 995 1684 877 995 1684 84 373 1184 2015 2260 2216 1497 1735 2037 1503 1741 2043 1903 1756 2058 2000 2288 2244 2018 2274 2230 672 774 1469 672 774 1469 2018 2274 2230 2017 378 1189 228 88 77 2020 406 151 308 85 74 308 85 74 2020 406 151 2019 402 150 673 775 1470 590 773 1468 2021 379 1190 2021 379 1190 590 773 1468 2022 377 1188 590 773 1468 672 774 1469 2022 377 1188 2022 377 1188 672 774 1469 2017 378 1189 591 776 1471 673 775 1470 2023 380 1191 2023 380 1191 673 775 1470 2021 379 1190 591 776 1471 2023 380 1191 683 780 1472 683 780 1472 2023 380 1191 2024 409 1213 683 780 1472 2024 409 1213 604 411 1215 604 411 1215 2024 409 1213 2025 412 1216 1978 113 906 142 124 914 2025 412 1216 2025 412 1216 142 124 914 2026 413 1217 142 124 914 229 126 916 2026 413 1217 2026 413 1217 229 126 916 2027 423 2211 606 781 228 2027 423 153 687 782 229 687 782 229 2027 423 153 2028 422 152 687 782 229 2028 422 152 607 783 230 607 783 230 2028 422 152 2029 424 154 607 783 230 2029 424 154 688 784 231 688 784 231 2029 424 154 2030 425 155 688 784 231 2030 425 155 603 778 224 603 778 224 2030 425 155 2031 408 147 682 779 225 603 778 224 2032 407 146 2032 407 146 603 778 224 2031 408 147 601 777 222 682 779 225 2033 403 145 2033 403 145 682 779 225 2032 407 146 601 777 222 2033 403 145 681 405 223 681 405 223 2033 403 145 2019 402 2263 2020 406 151 228 88 77 2016 420 160 2016 420 160 228 88 77 312 154 107 41 140 103 2034 414 156 312 154 107 312 154 107 2034 414 156 2016 420 160 311 135 100 2035 415 157 41 140 103 41 140 103 2035 415 157 2034 414 156 311 135 921 29 77 897 2035 415 1218 2035 415 1218 29 77 897 2036 394 1205 307 76 896 2037 395 1206 29 77 897 29 77 897 2037 395 1206 2036 394 1205 227 79 899 2038 398 1209 307 76 896 307 76 896 2038 398 1209 2037 395 1206 227 79 899 45 81 901 2038 398 1209 2038 398 1209 45 81 901 2039 400 1211 45 81 901 162 353 1164 2039 400 1211 2039 400 1211 162 353 1164 2040 428 1224 162 353 1164 79 355 1166 2040 428 1224 2040 428 1224 79 355 1166 2041 430 1226 233 358 1169 2042 433 1229 79 355 1166 79 355 1166 2042 433 1229 2041 430 1226 3 360 1171 2043 435 1231 233 358 1169 233 358 1169 2043 435 1231 2042 433 1229 774 2256 2212 2044 1653 1955 3 360 1171 3 360 1171 2044 1653 1955 2043 435 1231 761 2259 2215 2045 2255 2210 774 2256 2212 774 2256 2212 2045 2255 2210 2044 1653 1955 761 2259 2215 748 2258 2214 2045 2255 2210 2045 2255 2210 748 2258 2214 2046 2254 2209 748 2258 2214 735 2257 2213 2046 2254 2209 2046 2254 2209 735 2257 2213 2047 2253 2208 735 2257 2213 722 834 1523 2047 2253 2208 2047 2253 2208 722 834 1523 2048 2251 2206 722 834 1523 708 833 1522 2048 2251 2206 2048 2251 2206 708 833 1522 2049 2252 2207 907 1029 1718 2049 2252 2207 708 833 1522 1973 1589 1891 2049 2252 2207 907 1029 1718 907 1029 1718 1980 836 1525 1331 831 1520 2051 291 122 2065 133 1002 2050 292 123 2050 292 123 2065 133 1002 2064 288 1003 322 296 127 2067 376 1004 282 294 125 282 294 125 2067 376 1004 2066 134 1005 282 294 125 2066 134 1005 2051 291 122 2051 291 122 2066 134 1005 2065 133 1002 185 244 52 278 242 50 2068 245 1007 2068 245 1007 278 242 50 2069 237 1006 184 241 49 279 251 56 2070 238 1009 2070 238 1009 279 251 56 2071 246 1008 278 242 50 184 241 49 2069 237 1006 2069 237 1006 184 241 49 2070 238 1009 2052 263 64 185 244 52 2072 261 1010 2072 261 1010 185 244 52 2068 245 1007 2050 292 123 2064 288 1003 186 250 55 186 250 55 2064 288 1003 2073 247 1011 279 251 56 186 250 55 2071 246 1008 2071 246 1008 186 250 55 2073 247 1011 280 257 1103 2075 252 1099 187 259 1104 187 259 1104 2075 252 1099 2074 260 1105 2054 327 235 2077 328 1014 2053 256 59 2053 256 59 2077 328 1014 2076 253 1015 2053 256 59 2076 253 1015 280 257 60 280 257 60 2076 253 1015 2075 252 2276 187 259 1104 2074 260 1105 2055 266 1109 2055 266 1109 2074 260 1105 2078 264 1107 2054 327 235 2052 263 64 2077 328 1014 2077 328 1014 2052 263 64 2072 261 1010 2055 266 1109 2078 264 1107 188 268 1111 188 268 1111 2078 264 1107 2079 269 1112 188 268 1111 2079 269 1112 2056 272 1115 2056 272 1115 2079 269 1112 2080 270 1113 189 274 1117 2056 272 1115 2081 275 1118 2081 275 1118 2056 272 1115 2080 270 1113 2057 287 1128 189 274 1117 2082 285 1126 2082 285 1126 189 274 1117 2081 275 1118 191 283 88 281 281 2271 2083 284 1022 2083 284 1022 281 281 2271 2084 276 1021 190 280 1123 2057 287 1128 2085 277 1120 2085 277 1120 2057 287 1128 2082 285 1126 281 281 1124 190 280 1123 2084 276 1119 2084 276 1119 190 280 1123 2085 277 1120 322 296 127 191 283 88 2067 376 1004 2067 376 1004 191 283 88 2083 284 1022 1946 735 970 656 733 310 2086 2250 1025 2086 2250 1025 656 733 310 2087 571 1024 2058 731 308 2059 730 307 2088 572 1027 2088 572 1027 2059 730 307 2089 727 1026 656 733 310 2058 731 308 2087 571 1024 2087 571 1024 2058 731 308 2088 572 1027 554 681 274 2091 676 1028 653 689 279 653 689 279 2091 676 1028 2090 686 1029 555 683 276 2093 684 1030 652 680 273 652 680 273 2093 684 1030 2092 677 1031 652 680 273 2092 677 1031 554 681 274 554 681 274 2092 677 1031 2091 676 1028 2060 702 288 2094 700 1032 555 683 276 555 683 276 2094 700 1032 2093 684 1030 2059 730 307 556 690 280 2089 727 1026 2089 727 1026 556 690 280 2095 685 1033 653 689 279 2090 686 1029 556 690 280 556 690 280 2090 686 1029 2095 685 1033 1953 766 1001 557 696 284 2096 768 1035 2096 768 1035 557 696 284 2097 691 1034 654 695 1427 558 698 1426 2098 692 1423 2098 692 1423 558 698 1426 2099 699 1428 557 696 284 654 695 2270 2097 691 1034 2097 691 1034 654 695 2270 2098 692 1037 558 698 1426 2061 705 1432 2099 699 1428 2099 699 1428 2061 705 1432 2100 703 1430 1953 766 1001 2096 768 1035 2060 702 288 2060 702 288 2096 768 1035 2094 700 1032 2061 705 1432 559 707 1434 2100 703 1430 2100 703 1430 559 707 1434 2101 708 1435 559 707 1434 2062 711 1438 2101 708 1435 2101 708 1435 2062 711 1438 2102 709 1436 560 713 1440 2103 714 1441 2062 711 1438 2062 711 1438 2103 714 1441 2102 709 1436 2063 726 1451 2104 724 1449 560 713 1440 560 713 1440 2104 724 1449 2103 714 1441 561 720 1447 2105 715 1442 2063 726 1451 2063 726 1451 2105 715 1442 2104 724 1449 562 722 302 2107 723 1044 655 719 299 655 719 299 2107 723 1044 2106 716 2266 655 719 1446 2106 716 1443 561 720 1447 561 720 1447 2106 716 1443 2105 715 1442 1946 735 970 2086 2250 1025 562 722 302 562 722 302 2086 2250 1025 2107 723 1044 1686 2081 751 1687 2006 621 1807 2005 620 1117 1276 374 1237 1275 373 1151 1277 375</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#LOD3spShape-lib-vertices\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" offset=\"1\" set=\"0\" source=\"#LOD3spShape-lib-normals\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"2\" set=\"0\" source=\"#LOD3spShape-lib-map1\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<asset xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t<created xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">2006-08-23T22:29:59Z</created>\r\n\t\t<contributor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t<copyright xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\nCopyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&#34;License&#34;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &#34;AS IS&#34; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n</copyright>\r\n\t\t\t<author xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">gcorson</author>\r\n\t\t\t<comments xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=1;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=1;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<authoring_tool xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Maya 8.0 | ColladaMaya v3.02 | FCollada v3.2</authoring_tool>\r\n\t\t\t<source_data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">file:///C:/vs2005/sample_data/Complete_Packages/SCEA_Private/Maya_MoonLander/Moonlander/untitled</source_data>\r\n\t\t</contributor>\r\n\t\t<revision xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></revision>\r\n\t\t<keywords xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></keywords>\r\n\t\t<up_axis xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Y_UP</up_axis>\r\n\t\t<title xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></title>\r\n\t\t<subject xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></subject>\r\n\t\t<unit xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"centimeter\" meter=\"0.01\"></unit>\r\n\t\t<modified xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">2007-02-21T22:52:44Z</modified>\r\n\t</asset>\r\n\t<library_effects xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"blinn3-fx\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"common\">\r\n\t\t\t\t\t<blinn xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" texture=\"file2-sampler\" texcoord=\"TEX0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" opaque=\"\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t</blinn>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"file2-surface\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<surface xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"2D\">\r\n\t\t\t\t\t\t<format xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">A8R8G8B8</format>\r\n\t\t\t\t\t\t<mip_levels xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mip_levels>\r\n\t\t\t\t\t\t<size xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></size>\r\n\t\t\t\t\t\t<viewport_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></viewport_ratio>\r\n\t\t\t\t\t\t<mipmap_generate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">false</mipmap_generate>\r\n\t\t\t\t\t\t<init_as_target xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_target>\r\n\t\t\t\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" face=\"\" slice=\"0\" mip=\"0\">file2</init_from>\r\n\t\t\t\t\t\t<init_as_null xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_null>\r\n\t\t\t\t\t</surface>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"file2-sampler\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">LINEAR_MIPMAP_LINEAR</minfilter>\r\n\t\t\t\t\t\t<mipmap_bias xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_bias>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">LINEAR</magfilter>\r\n\t\t\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">file2-surface</source>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipmap_maxlevel xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_maxlevel>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_visual_scenes xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<visual_scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"untitled\" id=\"VisualSceneNode\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"LOD3sp\" sid=\"\" type=\"\" id=\"LOD3sp\">\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#LOD3spShape-lib\" name=\"\" sid=\"\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"blinn3SG\" target=\"#blinn3\" name=\"\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"TEX0\"></bind_vertex_input>\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"camera1\" sid=\"\" type=\"\" id=\"camera1\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">400.113 463.264 -431.078</translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#cameraShape1\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 -223.2</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 -38.4</rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"directionalLight1\" sid=\"\" type=\"\" id=\"directionalLight1\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"translate\">148.654 183.672 -292.179</translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#directionalLightShape1-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateZ\">0 0 1 -12.8709</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateY\">0 1 0 -191.679</rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"rotateX\">1 0 0 -45.6358</rotate>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<library_lights xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<light xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"directionalLightShape1-lib\" name=\"directionalLightShape1\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<directional xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t</directional>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_materials xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"blinn3\" name=\"blinn3\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#blinn3-fx\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t<instance_visual_scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#VisualSceneNode\" sid=\"\" name=\"\"></instance_visual_scene>\r\n\t</scene>\r\n\t<library_cameras xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<camera xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"cameraShape1\" name=\"cameraShape1\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n\t<library_images xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<image xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"file2\" width=\"0\" height=\"0\" id=\"file2\" depth=\"1\" format=\"\">\r\n\t\t\t<data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></data>\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">./duckCM_fix.jpg</init_from>\r\n\t\t</image>\r\n\t</library_images>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.4.1/outfiles/mgmidget.dae",
    "content": "<COLLADA version=\"1.4.1\" base=\"\">\r\n\t<library_nodes xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"skp7C95\" sid=\"\" type=\"\" id=\"ID3\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_1\" sid=\"\" type=\"\" id=\"ID4\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID5\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_2\" sid=\"\" type=\"\" id=\"ID35\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID36\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_3\" sid=\"\" type=\"\" id=\"ID89\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID90\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_4\" sid=\"\" type=\"\" id=\"ID139\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID140\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_5\" sid=\"\" type=\"\" id=\"ID209\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID210\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_6\" sid=\"\" type=\"\" id=\"ID225\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID226\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_7\" sid=\"\" type=\"\" id=\"ID243\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID244\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_8\" sid=\"\" type=\"\" id=\"ID251\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID252\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_9\" sid=\"\" type=\"\" id=\"ID267\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID268\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_10\" sid=\"\" type=\"\" id=\"ID323\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID324\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"_3D_Object1_1\" sid=\"\" type=\"\" id=\"ID5\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID6\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID19\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID20\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID27\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"_3D_Object1_3\" sid=\"\" type=\"\" id=\"ID36\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID37\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID47\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID57\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID65\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID73\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID81\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"_3D_Object1_5\" sid=\"\" type=\"\" id=\"ID90\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID91\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID99\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID107\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID115\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID123\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID131\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"_3D_Object1_7\" sid=\"\" type=\"\" id=\"ID140\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID141\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID149\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID162\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID20\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID168\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID174\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID180\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID188\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID189\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID196\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID200\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"_3D_Object1_9\" sid=\"\" type=\"\" id=\"ID210\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID211\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID217\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"_3D_Object1_10\" sid=\"\" type=\"\" id=\"ID226\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID227\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID235\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"_3D_Object2_2\" sid=\"\" type=\"\" id=\"ID244\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID245\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"_3D_Object2_4\" sid=\"\" type=\"\" id=\"ID252\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID253\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID261\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"_3D_Object8\" sid=\"\" type=\"\" id=\"ID268\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID269\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID275\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID283\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID20\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID289\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID295\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID301\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID309\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID189\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID315\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID200\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"_3D_Object2\" sid=\"\" type=\"\" id=\"ID324\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_11\" sid=\"\" type=\"\" id=\"ID325\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID326\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.2391837984 0 0 2.38950825377015 0 0.2391837984 0 0.9452262937899669 0 0 0.2391837984 0.2410314998464498 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_13\" sid=\"\" type=\"\" id=\"ID779\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID780\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">-0.2391837984 0 0 -2.366056800203434 0 0.2391837984 0 3.471970791224086 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_14\" sid=\"\" type=\"\" id=\"ID1220\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID326\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.2391837984 0 0 2.38950825377015 0 0.2391837984 0 3.471970791224085 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_15\" sid=\"\" type=\"\" id=\"ID1221\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID780\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">-0.2391837984 0 0 -2.366056800203434 0 0.2391837984 0 0.942551212767317 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1222\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1223\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1235\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1243\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1249\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1255\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1261\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1267\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1273\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1279\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1287\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1295\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1303\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1304\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1311\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1304\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1317\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1323\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1329\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1335\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1341\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1347\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1353\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1359\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1365\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1371\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1377\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1383\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1389\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1395\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1401\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1407\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1413\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1419\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1425\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1431\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1437\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1443\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1449\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1455\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1223\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1463\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1469\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1475\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1481\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1487\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1493\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1499\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1505\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1511\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1517\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1523\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1529\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1537\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID1538\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1550\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1551\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1558\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID189\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1564\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1572\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1578\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1584\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1590\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1596\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1602\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1608\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1614\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1620\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1626\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1551\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1632\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID189\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1638\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1646\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1654\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1662\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1668\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1674\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1682\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1688\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1694\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1702\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1708\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1714\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1722\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1728\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1734\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1742\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1748\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1754\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1760\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1766\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1772\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1778\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1784\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1790\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1796\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1802\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1808\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1814\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1820\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1826\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1832\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1838\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1844\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1850\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1856\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1862\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1870\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1878\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1886\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1894\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1902\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1908\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1916\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1922\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"wheel3\" sid=\"\" type=\"\" id=\"ID326\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"group_0\" sid=\"\" type=\"\" id=\"ID327\">\r\n\t\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_12\" sid=\"\" type=\"\" id=\"ID328\">\r\n\t\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID329\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.7999999999999998 1.040834085586084e-017 1.929980390148138e-023 0.6785531540121249 -7.806255641895632e-018 0.8000000000000003 4.135903062765138e-025 1.538230777312308 1.172997038562746e-023 0 0.8000000000000006 1.538231618346253 0 0 0 1</matrix>\r\n\t\t\t\t</node>\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID775\" name=\"\" sid=\"\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">-0.9999576712051372 -0.009200858546759075 3.597306985714045e-008 -6.593666714136403 -0.00920085854675907 0.9999576712051379 3.309891276924002e-010 -10.27499661274406 3.597459254459032e-008 8.009926719458926e-015 0.9999999999999993 -3.583475360434295 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"wheel_rb\" sid=\"\" type=\"\" id=\"ID329\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID330\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID338\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID346\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID359\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID367\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID375\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID383\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID384\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID393\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID384\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID401\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID409\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID417\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID425\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID433\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID441\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID449\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID457\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID465\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID473\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID481\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID489\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID497\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID505\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID513\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID521\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID529\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID537\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID545\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID553\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID561\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID569\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID577\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID585\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID593\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID601\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID609\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID617\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID625\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID626\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID635\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID643\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID651\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID659\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID667\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID675\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID683\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID691\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID697\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID701\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID705\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID709\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID713\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID717\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID721\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID725\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID729\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID733\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID737\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID741\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID745\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID749\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID753\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID754\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID759\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID763\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID767\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID771\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"wheel3\" sid=\"\" type=\"\" id=\"ID780\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"group_0\" sid=\"\" type=\"\" id=\"ID781\">\r\n\t\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_12\" sid=\"\" type=\"\" id=\"ID782\">\r\n\t\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID783\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.7999999999999998 1.040834085586084e-017 1.929980390148138e-023 0.6785531540121249 -7.806255641895632e-018 0.8000000000000003 4.135903062765138e-025 1.538230777312308 1.172997038562746e-023 0 0.8000000000000006 1.538231618346253 0 0 0 1</matrix>\r\n\t\t\t\t</node>\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1216\" name=\"\" sid=\"\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">-0.9999576712051372 -0.009200858546759075 3.597306985714045e-008 -6.593666714136403 -0.00920085854675907 0.9999576712051379 3.309891276924002e-010 -10.27499661274406 3.597459254459032e-008 8.009926719458926e-015 0.9999999999999993 -3.583475360434295 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"wheel_rb\" sid=\"\" type=\"\" id=\"ID783\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID784\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID792\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID800\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID808\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID816\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID824\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID832\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID384\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID840\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID384\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID848\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID856\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID864\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID872\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID880\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID888\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID896\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID904\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID912\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID920\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID928\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID936\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID944\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID952\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID960\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID968\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID976\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID984\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID992\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1000\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1008\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1016\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1024\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1032\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1040\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1048\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1056\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1064\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1072\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID626\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1080\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1088\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1096\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1104\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1112\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1120\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1128\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1136\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1140\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1144\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1148\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1152\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1156\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1160\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1164\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1168\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1172\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1176\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1180\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1184\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1188\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1192\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1196\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID754\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1200\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1204\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1208\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1212\" name=\"\" sid=\"\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t</library_nodes>\r\n\t<library_geometries xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID6\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID14\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID12\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID13\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID12\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"366\" source=\"#ID16\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1098\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID16\">-0.3512492775917053 0.3640900552272797 0.4558710157871246 0.0003733329358510673 0.3764632046222687 0.4582751095294952 0.0003733329358510673 0.3664841055870056 0.4716075956821442 0.0003733329358510673 0.3664841055870056 0.4716075956821442 0.0003733329358510673 0.3764632046222687 0.4582751095294952 -0.3512492775917053 0.3640900552272797 0.4558710157871246 -0.3512492775917053 0.3444961309432983 0.4558710157871246 -0.3512492775917053 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3640900552272797 0.4558710157871246 0.3519960343837738 0.3640900552272797 0.4558710157871246 -0.3512492775917053 0.3748391568660736 0.4410378038883209 -0.3512492775917053 0.3748391568660736 0.4410378038883209 0.0003733329358510673 0.3465428054332733 0.4716075956821442 0.0003733329358510673 0.3465428054332733 0.4716075956821442 -0.5576297044754028 0.3417671024799347 0.4339523613452911 -0.5576297044754028 0.3417671024799347 0.4339523613452911 0.3519960343837738 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3748391568660736 0.4410378038883209 0.3519960343837738 0.3748391568660736 0.4410378038883209 -0.5576297044754028 0.3615391850471497 0.4339523613452911 -0.5576297044754028 0.3615391850471497 0.4339523613452911 0.0003733329358510673 0.3311522305011749 0.4595692157745361 0.0003733329358510673 0.3311522305011749 0.4595692157745361 -0.3512492775917053 0.3287160694599152 0.4410378038883209 -0.3512492775917053 0.3287160694599152 0.4410378038883209 0.5583760738372803 0.3417671024799347 0.4339523613452911 0.5583760738372803 0.3417671024799347 0.4339523613452911 0.5583760738372803 0.3615391850471497 0.4339523613452911 0.5583760738372803 0.3615391850471497 0.4339523613452911 -0.5604491829872131 0.3724029362201691 0.4215744733810425 -0.5604491829872131 0.3724029362201691 0.4215744733810425 -0.6428633332252502 0.3404026031494141 0.4038339257240295 -0.6428633332252502 0.3404026031494141 0.4038339257240295 -0.5604491829872131 0.3270919919013977 0.4215744733810425 -0.5604491829872131 0.3270919919013977 0.4215744733810425 0.3519960343837738 0.3287160694599152 0.4410378038883209 0.3519960343837738 0.3287160694599152 0.4410378038883209 0.5611954927444458 0.3724029362201691 0.4215744733810425 0.5611954927444458 0.3724029362201691 0.4215744733810425 -0.6428633332252502 0.3609992563724518 0.4038339257240295 -0.6428633332252502 0.3609992563724518 0.4038339257240295 0.5611954927444458 0.3270919919013977 0.4215744733810425 0.5611954927444458 0.3270919919013977 0.4215744733810425 0.6436101794242859 0.3404026031494141 0.4038339257240295 0.6436101794242859 0.3404026031494141 0.4038339257240295 0.6436101794242859 0.3609992563724518 0.4038339257240295 0.6436101794242859 0.3609992563724518 0.4038339257240295 -0.6441342830657959 0.3715909421443939 0.392346978187561 -0.6441342830657959 0.3715909421443939 0.392346978187561 -0.6848444938659668 0.3385834991931915 0.3807705938816071 -0.6848444938659668 0.3385834991931915 0.3807705938816071 -0.6441342830657959 0.3246558606624603 0.392346978187561 -0.6441342830657959 0.3246558606624603 0.392346978187561 0.6448808908462524 0.3715909421443939 0.392346978187561 0.6448808908462524 0.3715909421443939 0.392346978187561 -0.6848444938659668 0.3617342412471771 0.3807705938816071 -0.6848444938659668 0.3617342412471771 0.3807705938816071 0.6448808908462524 0.3246558606624603 0.392346978187561 0.6448808908462524 0.3246558606624603 0.392346978187561 0.685590922832489 0.3385834991931915 0.3807705938816071 0.685590922832489 0.3385834991931915 0.3807705938816071 0.685590922832489 0.3617342412471771 0.3807705938816071 0.685590922832489 0.3617342412471771 0.3807705938816071 -0.6924977898597717 0.3738462924957275 0.3587177395820618 -0.6924977898597717 0.3738462924957275 0.3587177395820618 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.6924977898597717 0.3230318427085877 0.3587177395820618 -0.6924977898597717 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3738462924957275 0.3587177395820618 0.693244218826294 0.3738462924957275 0.3587177395820618 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 0.693244218826294 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3230318427085877 0.3587177395820618 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.381706178188324 0.3493618071079254 -0.7020096182823181 0.381706178188324 0.3493618071079254 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7255671620368958 0.3380583226680756 0.3681576550006867 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.381706178188324 0.3493618071079254 0.7027556896209717 0.381706178188324 0.3493618071079254 -0.7146109938621521 0.3731479644775391 0.3700889348983765 -0.7146109938621521 0.3731479644775391 0.3700889348983765 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7255671620368958 0.3380583226680756 0.3681576550006867 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7153576016426086 0.3731479644775391 0.3700889348983765 0.7153576016426086 0.3731479644775391 0.3700889348983765 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7264339923858643 0.3679208159446716 0.3674047589302063 -0.7264339923858643 0.3679208159446716 0.3674047589302063 -0.7177720069885254 0.3258920609951019 0.4299785196781158 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.6979426145553589 0.3512220680713654 0.42958864569664 0.6979426145553589 0.3512220680713654 0.42958864569664 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.6979426145553589 0.3512220680713654 0.42958864569664 0.6979426145553589 0.3512220680713654 0.42958864569664 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7159313559532166 0.3825618922710419 0.3357574045658112 -0.7172813415527344 0.3512220680713654 0.42958864569664 -0.7172813415527344 0.3512220680713654 0.42958864569664 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.693244218826294 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3230318427085877 0.3587177395820618 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7271807193756104 0.3679208159446716 0.3674047589302063 0.7271807193756104 0.3679208159446716 0.3674047589302063 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.7180280089378357 0.3512220680713654 0.42958864569664 0.7180280089378357 0.3512220680713654 0.42958864569664 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6917747259140015 0.2917623221874237 0.5514896512031555 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6788990497589111 0.277787446975708 0.5516139268875122 0.679326593875885 0.2916669249534607 0.551818311214447 0.679326593875885 0.2916669249534607 0.551818311214447 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.679326593875885 0.2916669249534607 0.551818311214447 0.679326593875885 0.2916669249534607 0.551818311214447 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6692409515380859 0.2158858478069305 0.6860935091972351 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6695502996444702 0.2332195788621903 0.6872068643569946 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6723158359527588 0.2332195788621903 0.692791759967804 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.6218504309654236 0.2261438220739365 0.7275896668434143 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.4369176328182221 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.623400092124939 0.2261438220739365 0.7318599224090576 0.623400092124939 0.2261438220739365 0.7318599224090576 0.4386698305606842 0.2250510305166245 0.728861391544342 0.4386698305606842 0.2250510305166245 0.728861391544342 0.623400092124939 0.2261438220739365 0.7318599224090576 0.623400092124939 0.2261438220739365 0.7318599224090576 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.4379231929779053 0.2172611206769943 0.749642550945282 0.437664121389389 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4386698305606842 0.2250510305166245 0.728861391544342 0.4386698305606842 0.2250510305166245 0.728861391544342 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.1970987468957901 0.1926998645067215 0.7719690799713135 0.4386698305606842 0.2172611206769943 0.749642550945282 0.4386698305606842 0.2172611206769943 0.749642550945282 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.4386698305606842 0.2172611206769943 0.749642550945282 0.4386698305606842 0.2172611206769943 0.749642550945282 -0.1976823061704636 0.2099207788705826 0.7732192873954773 -0.1976823061704636 0.2099207788705826 0.7732192873954773 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.0003733063931576908 0.1899106204509735 0.7792853713035584 -0.1976823061704636 0.2099207788705826 0.7732192873954773 -0.1976823061704636 0.2099207788705826 0.7732192873954773 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID13\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"366\" source=\"#ID17\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1098\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID17\">-0.071125187092009 0.4507200585843386 0.8898273071505825 -4.263967884275383e-009 0.8008832375061619 0.5988205406310382 -5.504344485312176e-009 0.444157913898005 0.8959485183434214 5.504344485312176e-009 -0.444157913898005 -0.8959485183434214 4.263967884275383e-009 -0.8008832375061619 -0.5988205406310382 0.071125187092009 -0.4507200585843386 -0.8898273071505825 -0.06762980948302125 -0.3639052502035215 0.9289774904396784 0.06762980948302125 0.3639052502035215 -0.9289774904396784 0.07112527238031438 0.4507200476058207 0.8898273058942577 -0.07112527238031438 -0.4507200476058207 -0.8898273058942577 -0.05295591724079173 0.8070734904910732 0.588071468255128 0.05295591724079173 -0.8070734904910732 -0.588071468255128 -5.194259043014777e-009 -0.3219438234562064 0.9467587731510065 5.194259043014777e-009 0.3219438234562064 -0.9467587731510065 -0.1952435862872257 -0.3225981683293698 0.9261805244142408 0.1952435862872257 0.3225981683293698 -0.9261805244142408 0.0676298903270364 -0.3639052384125159 0.92897748917306 -0.0676298903270364 0.3639052384125159 -0.92897748917306 0.05295598363639042 0.8070734879396393 0.5880714657777973 -0.05295598363639042 -0.8070734879396393 -0.5880714657777973 -0.1964190692480931 0.3872593094726631 0.9008050712903812 0.1964190692480931 -0.3872593094726631 -0.9008050712903812 -4.206846264984871e-009 -0.6188292458269113 0.7855255339639164 4.206846264984871e-009 0.6188292458269113 -0.7855255339639164 -0.05146910879328837 -0.682661196124296 0.728920175428126 0.05146910879328837 0.682661196124296 -0.728920175428126 0.1952430020004395 -0.3225984771781914 0.926180540009435 -0.1952430020004395 0.3225984771781914 -0.926180540009435 0.1964185076893298 0.3872596420709859 0.9008050507519085 -0.1964185076893298 -0.3872596420709859 -0.9008050507519085 -0.1731628035249205 0.720259607377219 0.6717445507454481 0.1731628035249205 -0.720259607377219 -0.6717445507454481 -0.3781976423062447 -0.2788958561989671 0.8827137954903859 0.3781976423062447 0.2788958561989671 -0.8827137954903859 -0.1812838656160409 -0.611012699337296 0.7705839612370974 0.1812838656160409 0.611012699337296 -0.7705839612370974 0.05146917124753067 -0.6826611952120336 0.7289201718725927 -0.05146917124753067 0.6826611952120336 -0.7289201718725927 0.1731617213854804 0.7202604007202256 0.6717439790583591 -0.1731617213854804 -0.7202604007202256 -0.6717439790583591 -0.3735418711200219 0.3628600994103804 0.8536972641258971 0.3735418711200219 -0.3628600994103804 -0.8536972641258971 0.181282778263941 -0.6110135191637968 0.7705835669828285 -0.181282778263941 0.6110135191637968 -0.7705835669828285 0.3781986476610136 -0.2788973044064862 0.8827129071800052 -0.3781986476610136 0.2788973044064862 -0.8827129071800052 0.3735427701649122 0.3628616634215295 0.8536962059635056 -0.3735427701649122 -0.3628616634215295 -0.8536962059635056 -0.3084756592757642 0.6952683570081935 0.6491877073524343 0.3084756592757642 -0.6952683570081935 -0.6491877073524343 -0.4842349374434831 -0.3512828890327633 0.8013219435607023 0.4842349374434831 0.3512828890327633 -0.8013219435607023 -0.3447848531328449 -0.5593445309787422 0.7538282965731213 0.3447848531328449 0.5593445309787422 -0.7538282965731213 0.3084753303407854 0.6952712068050755 0.6491848115590485 -0.3084753303407854 -0.6952712068050755 -0.6491848115590485 -0.4498228601286283 0.3998238053715448 0.7986240161452179 0.4498228601286283 -0.3998238053715448 -0.7986240161452179 0.3447848974915967 -0.55934731735585 0.7538262087699811 -0.3447848974915967 0.55934731735585 -0.7538262087699811 0.4842345611858018 -0.3512835657741214 0.8013218742616555 -0.4842345611858018 0.3512835657741214 -0.8013218742616555 0.4498247367326896 0.3998245059083885 0.7986226084318424 -0.4498247367326896 -0.3998245059083885 -0.7986226084318424 0.1390934429420212 0.8757229171530553 0.4623444457365932 -0.1390934429420212 -0.8757229171530553 -0.4623444457365932 -0.2805014547971665 -0.4481261184840369 0.8488238426134741 0.2805014547971665 0.4481261184840369 -0.8488238426134741 -0.3373790400527729 -0.7856801756880902 0.5185383735692095 0.3373790400527729 0.7856801756880902 -0.5185383735692095 -0.1391012332027621 0.8757221718317327 0.4623435137252217 0.1391012332027621 -0.8757221718317327 -0.4623435137252217 0.1832509294236752 0.8986260316191347 0.3986105269079149 -0.1832509294236752 -0.8986260316191347 -0.3986105269079149 -0.5800566743481957 0.05070925503692379 0.8129962029417551 0.5800566743481957 -0.05070925503692379 -0.8129962029417551 0.3525503091742624 -0.7876181241922912 0.505337481238972 -0.3525503091742624 0.7876181241922912 -0.505337481238972 0.2804983942557796 -0.44812624773872 0.8488247857523628 -0.2804983942557796 0.44812624773872 -0.8488247857523628 -0.1832512338339642 0.898626112386407 0.3986102048814386 0.1832512338339642 -0.898626112386407 -0.3986102048814386 -0.05990506789815193 0.9413055895298192 0.3321974863842852 0.05990506789815193 -0.9413055895298192 -0.3321974863842852 0.9918683419023885 -0.08671032838144153 -0.09315852770299216 0.9759562146826556 -0.1138931241787893 -0.1858435451854526 0.9904882410233603 -0.09514272493502067 -0.09940274788147702 -0.9904882410233603 0.09514272493502067 0.09940274788147702 -0.9759562146826556 0.1138931241787893 0.1858435451854526 -0.9918683419023885 0.08671032838144153 0.09315852770299216 -0.3004923551871483 -0.8848925945410495 0.3559065054203003 0.3004923551871483 0.8848925945410495 -0.3559065054203003 0.5800601094850288 0.05071953851926407 0.8129931105468295 -0.5800601094850288 -0.05071953851926407 -0.8129931105468295 0.03941810041296814 0.9385169908126403 0.3429753217300331 -0.03941810041296814 -0.9385169908126403 -0.3429753217300331 -0.1948504716201211 0.9292746675562946 0.31381823711753 0.1948504716201211 -0.9292746675562946 -0.31381823711753 0.980004878619731 -0.1148416960155928 -0.1624863770837066 -0.980004878619731 0.1148416960155928 0.1624863770837066 0.01808784460961578 -0.9585720035182385 -0.284275471942988 -0.01450490163885446 -0.9818714578108111 -0.1889921907511515 0.01390591190561859 -0.9622823983029412 -0.2716969111536106 -0.01390591190561859 0.9622823983029412 0.2716969111536106 0.01450490163885446 0.9818714578108111 0.1889921907511515 -0.01808784460961578 0.9585720035182385 0.284275471942988 -0.3340438595180452 -0.93522254807589 0.1173604937307616 0.3340438595180452 0.93522254807589 -0.1173604937307616 -0.02177368027010158 -0.981464076286009 -0.1904052882867142 0.02177368027010158 0.981464076286009 0.1904052882867142 0.3098855746507412 -0.8907823498961794 0.3323819124694065 -0.3098855746507412 0.8907823498961794 -0.3323819124694065 -0.9779787607639027 -0.1141885828737194 -0.1746954808688327 -0.9918664072211452 -0.08672722985843478 -0.09316339317188697 -0.9904870505903934 -0.09515421425005848 -0.09940361222409007 0.9904870505903934 0.09515421425005848 0.09940361222409007 0.9918664072211452 0.08672722985843478 0.09316339317188697 0.9779787607639027 0.1141885828737194 0.1746954808688327 0.1912503182808568 0.9273764772990287 0.321552771889646 -0.1912503182808568 -0.9273764772990287 -0.321552771889646 -0.3811288433792529 0.8957550736264501 0.2288310573695485 0.3811288433792529 -0.8957550736264501 -0.2288310573695485 0.007248706169782307 0.9191592767960465 0.3938193496244603 -0.007248706169782307 -0.9191592767960465 -0.3938193496244603 0.9853759184996108 0.02508948516799318 -0.1685372866016697 -0.9853759184996108 -0.02508948516799318 0.1685372866016697 0.01723171841286865 -0.919196357530028 -0.3934223229356319 -0.01723171841286865 0.919196357530028 0.3934223229356319 0.1845544456475155 -0.9017691296340797 -0.3908351230771521 -0.1845544456475155 0.9017691296340797 0.3908351230771521 -0.9908221950411159 -0.0198614659408184 0.1337045249218829 -0.9872800348044978 0.000627502331247067 0.158989745321055 -0.9882708773498506 -0.008080873138596571 0.1524971228301519 0.9882708773498506 0.008080873138596571 -0.1524971228301519 0.9872800348044978 -0.000627502331247067 -0.158989745321055 0.9908221950411159 0.0198614659408184 -0.1337045249218829 -0.9826945450324243 0.01630357907460154 0.1845145643922866 -0.8325865012073505 0.5049181106934321 0.2277222419990581 0.8325865012073505 -0.5049181106934321 -0.2277222419990581 0.9826945450324243 -0.01630357907460154 -0.1845145643922866 0.3862723911918118 -0.9163355120307432 0.1054650140772564 -0.3862723911918118 0.9163355120307432 -0.1054650140772564 0.02177412265120054 -0.9814640654872793 -0.1904052933611679 0.01450529868995076 -0.9818714473737441 -0.1889922145012973 -0.013916141499668 -0.9621402750830043 -0.2721992506767098 0.013916141499668 0.9621402750830043 0.2721992506767098 -0.01450529868995076 0.9818714473737441 0.1889922145012973 -0.02177412265120054 0.9814640654872793 0.1904052933611679 -0.9812022224608331 -0.1149914710388205 -0.1549811608752812 0.9812022224608331 0.1149914710388205 0.1549811608752812 -0.01811265111712815 -0.9587713810518664 -0.2836007241623442 0.01811265111712815 0.9587713810518664 0.2836007241623442 -0.007290548039703533 0.9192696015801237 0.3935609832287768 0.007290548039703533 -0.9192696015801237 -0.3935609832287768 0.5044979341430722 0.8431073902036704 0.1861498402613552 -0.5044979341430722 -0.8431073902036704 -0.1861498402613552 -0.6634249520533542 0.6453035303078039 0.3787488439128096 0.6634249520533542 -0.6453035303078039 -0.3787488439128096 0.9866206869680558 0.03480237759473551 -0.1592746513430026 -0.9866206869680558 -0.03480237759473551 0.1592746513430026 0.016290647704942 -0.9171381502189657 -0.3982363973951743 -0.016290647704942 0.9171381502189657 0.3982363973951743 -0.9798578929557653 0.033049689096777 0.1969421937089524 0.9798578929557653 -0.033049689096777 -0.1969421937089524 0.6687046635203147 -0.003313254786347099 -0.7435207430387558 0.6691533453686369 -0.003650025003637705 -0.7431153865312135 0.6695577595913523 -0.003953773836092823 -0.7427494693659914 -0.6695577595913523 0.003953773836092823 0.7427494693659914 -0.6691533453686369 0.003650025003637705 0.7431153865312135 -0.6687046635203147 0.003313254786347099 0.7435207430387558 0.6682020981908339 -0.002936324147361365 -0.7439740143135841 -0.6682020981908339 0.002936324147361365 0.7439740143135841 -0.109182585023408 0.9846313083799815 0.1363097563842444 -0.109182585023408 0.9846313083799815 0.1363097563842444 -0.109182585023408 0.9846313083799815 0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.9998363974575332 7.141383765963521e-005 0.01808793020788936 0.9976328688181551 -0.02100972016673701 0.06547710067018192 0.9597396774909109 0.2745786746262134 0.0592140430147635 -0.9597396774909109 -0.2745786746262134 -0.0592140430147635 -0.9976328688181551 0.02100972016673701 -0.06547710067018192 -0.9998363974575332 -7.141383765963521e-005 -0.01808793020788936 0.9848361978242306 0.01615844898842442 0.1727326488577111 0.856672094315397 0.4840166217746973 0.178439997385904 -0.856672094315397 -0.4840166217746973 -0.178439997385904 -0.9848361978242306 -0.01615844898842442 -0.1727326488577111 -0.98696211613235 0.02493391055134607 -0.1590096897178627 0.98696211613235 -0.02493391055134607 0.1590096897178627 -0.01729793627663625 -0.9218896674301311 -0.3870661732651561 0.01729793627663625 0.9218896674301311 0.3870661732651561 0.6630244607310728 0.6479169333248619 0.3749696147465508 -0.6630244607310728 -0.6479169333248619 -0.3749696147465508 -0.4291444056645902 0.8755119012486158 0.2220675344547685 0.4291444056645902 -0.8755119012486158 -0.2220675344547685 -0.002972792712082139 0.9099971813227669 0.4146037777060294 0.002972792712082139 -0.9099971813227669 -0.4146037777060294 0.8775711867427927 0.09931257888195555 -0.4690477842125063 -0.8775711867427927 -0.09931257888195555 0.4690477842125063 0.07264632224497998 -0.9370277162915097 -0.3416161160803113 -0.07264632224497998 0.9370277162915097 0.3416161160803113 -0.9780693798260903 0.03167860608980022 0.2058561491984491 0.9780693798260903 -0.03167860608980022 -0.2058561491984491 -0.8588543264598119 -0.002726306327623486 -0.5122126640127819 -0.8586600694715521 -0.002560320177594947 -0.5125391008066581 -0.8582920509860762 -0.00224620446095228 -0.513156613305952 0.8582920509860762 0.00224620446095228 0.513156613305952 0.8586600694715521 0.002560320177594947 0.5125391008066581 0.8588543264598119 0.002726306327623486 0.5122126640127819 -0.8580357563130109 -0.002027713692026421 -0.513585951195652 0.8580357563130109 0.002027713692026421 0.513585951195652 -0.01688581023481479 -0.9205500229754365 -0.3902595605653204 0.01688581023481479 0.9205500229754365 0.3902595605653204 -0.988737448764744 0.03460807652772169 -0.1456040468161406 0.988737448764744 -0.03460807652772169 0.1456040468161406 0.9817236992713015 0.03298316703888651 0.1874318248888274 -0.9817236992713015 -0.03298316703888651 -0.1874318248888274 0.002785596797246988 0.9135642906878028 0.4066848008354569 -0.002785596797246988 -0.9135642906878028 -0.4066848008354569 -0.003715581427239436 0.9075670778700513 0.4198906924677824 0.003715581427239436 -0.9075670778700513 -0.4198906924677824 0.9185793612217119 0.09230724313175556 -0.3843062971158896 -0.9185793612217119 -0.09230724313175556 0.3843062971158896 0.04949783681109286 -0.9339419638453096 -0.3539807513407877 -0.04949783681109286 0.9339419638453096 0.3539807513407877 -0.8448040745229659 -0.04735681112537662 0.5329759920572695 0.8448040745229659 0.04735681112537662 -0.5329759920572695 -0.07206498059894695 -0.9376465112780928 -0.3400377309348109 0.07206498059894695 0.9376465112780928 0.3400377309348109 -0.8675974172743418 0.0996611272755185 -0.4871779769746009 0.8675974172743418 -0.0996611272755185 0.4871779769746009 0.980870754914267 0.03167188993408591 0.1920662738273411 -0.980870754914267 -0.03167188993408591 -0.1920662738273411 0.003995682630986656 0.9105358541074029 0.4134108040499359 -0.003995682630986656 -0.9105358541074029 -0.4134108040499359 -0.06377025308336654 0.9361062702478691 0.3458878512239293 0.06377025308336654 -0.9361062702478691 -0.3458878512239293 0.4323102883021924 0.0530645150617952 -0.9001621919794964 -0.4323102883021924 -0.0530645150617952 0.9001621919794964 0.09068971629220776 -0.9398373191312726 -0.3293648264872576 -0.09068971629220776 0.9398373191312726 0.3293648264872576 -0.89587439590845 -0.04364692810303722 0.4421583567262277 0.89587439590845 0.04364692810303722 -0.4421583567262277 -0.05394774551138133 -0.9356041443768313 -0.3489047517290886 0.05394774551138133 0.9356041443768313 0.3489047517290886 0.8373436273772882 -0.04802482564338885 0.5445633717140435 -0.8373436273772882 0.04802482564338885 -0.5445633717140435 -0.9121098089249937 0.09277933971432061 -0.3993090164083277 0.9121098089249937 -0.09277933971432061 0.3993090164083277 0.06730152409430609 0.9373980523815594 0.341694887649556 -0.06730152409430609 -0.9373980523815594 -0.341694887649556 -0.08738201937403496 0.9375900260780157 0.3365847971747116 0.08738201937403496 -0.9375900260780157 -0.3365847971747116 0.4568272935323279 0.04401882866045551 -0.8884656248878117 -0.4568272935323279 -0.04401882866045551 0.8884656248878117 0.05151497838900335 -0.9395351067219221 -0.3385557417008417 -0.05151497838900335 0.9395351067219221 0.3385557417008417 -0.394969106281068 -0.06359206783930438 0.9164908368289645 0.394969106281068 0.06359206783930438 -0.9164908368289645 -0.07952270090936106 -0.9403691550093645 -0.330729485149199 0.07952270090936106 0.9403691550093645 0.330729485149199 0.8903356679666751 -0.0442926671645055 0.4531451842200123 -0.8903356679666751 0.0442926671645055 -0.4531451842200123 -0.4042455124259617 0.0532011627306395 -0.9131019669059858 0.4042455124259617 -0.0532011627306395 0.9131019669059858 0.08651024889737816 0.9378939396687426 0.3359626984776119 -0.08651024889737816 -0.9378939396687426 -0.3359626984776119 -0.0970566982023139 0.931924377921838 0.3494237415646799 0.0970566982023139 -0.931924377921838 -0.3494237415646799 0.1071191013945236 0.07343949725049899 -0.9915302004276136 -0.1071191013945236 -0.07343949725049899 0.9915302004276136 -0.002326866966603946 -0.9452538076808833 -0.3263277872859 0.002326866966603946 0.9452538076808833 0.3263277872859 -0.4120552709137233 -0.06211659127437492 0.9090390436063076 0.4120552709137233 0.06211659127437492 -0.9090390436063076 -0.04353053250813483 -0.9398686495221501 -0.3387506669882254 0.04353053250813483 0.9398686495221501 0.3387506669882254 0.370955215819271 -0.0642954861431061 0.9264223217939536 -0.370955215819271 0.0642954861431061 -0.9264223217939536 -0.4290446271268197 0.04442644661450344 -0.9021901123237922 0.4290446271268197 -0.04442644661450344 0.9021901123237922 0.08511499803969619 0.9325962146665485 0.3507416962642554 -0.08511499803969619 -0.9325962146665485 -0.3507416962642554 -0.05399603319120466 0.9317823507949836 0.35897921826561 0.05399603319120466 -0.9317823507949836 -0.35897921826561 0.001546450211013052 0.9362515579885762 0.3513269540694375 -0.001546450211013052 -0.9362515579885762 -0.3513269540694375 0.1062957171113633 0.07402617534980542 -0.9915751841826522 -0.1062957171113633 -0.07402617534980542 0.9915751841826522 -0.002747462488095163 -0.9454117597753844 -0.3258666229123312 0.002747462488095163 0.9454117597753844 0.3258666229123312 -0.1095480449216852 -0.06437227185794837 0.9918948716823186 0.1095480449216852 0.06437227185794837 -0.9918948716823186 0.005833135918347435 -0.9452465444315101 -0.3263049873441214 -0.005833135918347435 0.9452465444315101 0.3263049873441214 0.3885602999908704 -0.06284595774554791 0.9192775853168886 -0.3885602999908704 0.06284595774554791 -0.9192775853168886 -0.09492198545918304 0.07293069024446487 -0.9928096147282984 0.09492198545918304 -0.07293069024446487 0.9928096147282984 0.04552759092394652 0.9321757341004116 0.3591317853087088 -0.04552759092394652 -0.9321757341004116 -0.3591317853087088 0.001320964449476984 0.9369949929397182 0.3493402900594502 -0.001320964449476984 -0.9369949929397182 -0.3493402900594502 0.06781079953703786 0.06339096066314931 -0.9956823196041751 -0.06781079953703786 -0.06339096066314931 0.9956823196041751 -0.0009121108150353565 -0.9452731957874374 -0.3262786437688901 0.0009121108150353565 0.9452731957874374 0.3262786437688901 -0.1109486858899821 -0.0646082375357192 0.9917238349166637 0.1109486858899821 0.0646082375357192 -0.9917238349166637 0.09862599401148636 -0.06381484593375146 0.9930763207043544 -0.09862599401148636 0.06381484593375146 -0.9930763207043544 0.006731919778519307 -0.9454016983288083 -0.3258378585325845 -0.006731919778519307 0.9454016983288083 0.3258378585325845 -0.09533962166136091 0.07354105201997502 -0.9927245691576611 0.09533962166136091 -0.07354105201997502 0.9927245691576611 -0.00585674817653786 0.9362360349332584 0.3513229075839591 0.00585674817653786 -0.9362360349332584 -0.3513229075839591 0.001063618126260402 0.9555103601597252 0.2949556243639264 -0.001063618126260402 -0.9555103601597252 -0.2949556243639264 0.06676637174755735 0.06297665332872211 -0.9957791887457687 -0.06676637174755735 -0.06297665332872211 0.9957791887457687 -0.0007808558058856688 -0.945066558494442 -0.3268770262341513 0.0007808558058856688 0.945066558494442 0.3268770262341513 -0.06778356439968603 -0.07427319914588644 0.9949315957822976 0.06778356439968603 0.07427319914588644 -0.9949315957822976 0.09863785519546375 -0.06393136056138422 0.9930676485815096 -0.09863785519546375 0.06393136056138422 -0.9930676485815096 0.0009121098624746426 -0.945273195049111 -0.3262786459105843 -0.0009121098624746426 0.945273195049111 0.3262786459105843 -0.06781082967194811 0.06339112364419754 -0.9956823071755007 0.06781082967194811 -0.06339112364419754 0.9956823071755007 -0.005113872727019609 0.936979243186678 0.3493476007403689 0.005113872727019609 -0.936979243186678 -0.3493476007403689 0.0011066045999455 0.9561138177226354 0.2929934179910984 -0.0011066045999455 -0.9561138177226354 -0.2929934179910984 -6.527460857175112e-010 0.06909947499341243 -0.9976097746892993 6.527460857175112e-010 -0.06909947499341243 0.9976097746892993 -1.347770541733307e-010 -0.9398412832334818 -0.341611420081417 1.347770541733307e-010 0.9398412832334818 0.341611420081417 -0.06984418121300744 -0.07471473347307646 0.9947559997068285 0.06984418121300744 0.07471473347307646 -0.9947559997068285 0.06778358821749267 -0.07427310619908654 0.9949316010982366 -0.06778358821749267 0.07427310619908654 -0.9949316010982366 0.0007808560536009646 -0.9450665577020792 -0.326877028524438 -0.0007808560536009646 0.9450665577020792 0.326877028524438 -0.06676629092695928 0.06297683347455915 -0.9957791827716497 0.06676629092695928 -0.06297683347455915 0.9957791827716497 -0.001063617863931956 0.9555103604376601 0.2949556234645008 0.001063617863931956 -0.9555103604376601 -0.2949556234645008 -5.947595930751025e-011 0.9582811076798368 0.2858274281168708 5.947595930751025e-011 -0.9582811076798368 -0.2858274281168708 -1.765349996060053e-010 -0.9394117153834616 -0.3427909406625296 1.765349996060053e-010 0.9394117153834616 0.3427909406625296 -4.496929153027535e-010 0.069446775553659 -0.9975856581593381 4.496929153027535e-010 -0.069446775553659 0.9975856581593381 1.754160081432712e-009 -0.07807047071678244 0.9969478429697614 -1.754160081432712e-009 0.07807047071678244 -0.9969478429697614 0.0698441349091514 -0.07471461379667607 0.9947560119466511 -0.0698441349091514 0.07471461379667607 -0.9947560119466511 -0.001106604917078725 0.9561138179412515 0.2929934172764991 0.001106604917078725 -0.9561138179412515 -0.2929934172764991 -5.696815383325837e-011 0.9584455434264317 0.2852755515041763 5.696815383325837e-011 -0.9584455434264317 -0.2852755515041763 1.940881415368471e-009 -0.07832859275901773 0.9969275959448569 -1.940881415368471e-009 0.07832859275901773 -0.9969275959448569</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID15\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"575\" source=\"#ID18\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1150\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID18\">3.363011324314395 1.091241105173762 -0.1553451444614712 1.114857243519861 -0.1513262137275674 1.245826278515947 -3.444961309432992 -2.600061641399552 -3.640900552272805 -2.600061641399551 -3.664841055870056 0.1688050011259317 0.1478845043465195 1.114715565585078 -3.370472873082449 1.091099427235427 0.1438655746501197 1.245684600600866 3.363625686805526 1.161250500904157 3.35931410957973 1.017184906139791 -0.1547336583624773 1.184599941148575 -3.465428054332733 0.1688050011259248 -3.444961309432983 -2.600061641399559 -3.664841055870056 0.1688050011259248 -3.444961309432983 -2.368966857590021 -3.417671024799347 -4.001623507588316 -3.640900552272796 -2.368966857590021 3.444961309432983 -2.605930296681317 3.664841055870056 0.1629370603691651 3.640900552272797 -2.605930296681317 -3.366775708089421 1.017046728066655 -3.37108728420215 1.161112322851636 0.1472729696182163 1.184461763099396 5.232526333403246 0.8816716290727438 3.165073438187141 0.9504132468772458 3.17463679401719 1.09432225142684 3.465428054332733 0.1629370603691713 3.664841055870056 0.1629370603691717 3.444961309432992 -2.605930296681311 -0.1662453203201013 4.277515370301163 -3.68468566869181 4.230333896089076 -0.174144990518452 4.431100496335322 -3.615391850471496 -4.001623507588316 -3.821454854119473 4.053629022659217 -5.888020909411589 3.972460822033052 -3.8371194779215 4.223552794113253 3.444961309432983 -2.374807730589978 3.640900552272797 -2.374807730589978 3.417671024799347 -4.007461349848854 -3.172510719572426 0.9501071519867526 -5.239959747342773 0.881365534532131 -3.18207409321333 1.094016155803878 5.208064585780865 0.3770924323198692 5.225823365227359 0.2463947041263298 3.140952443675589 0.4519073964150835 0.1737020930346429 4.277278018298897 0.1816017611957285 4.430863144397903 3.6921433500374 4.230096544066889 -3.669590958958236 4.159879707953389 -3.67733568214817 4.33014074777308 -0.1587979356318518 4.372590041939007 -3.417671024799347 -2.998679591619311 -3.404026031494141 -3.709814581504416 -3.615391850471497 -2.998679591619311 -5.914787297700372 3.734759990333489 -5.90203603357741 3.887075903499135 -3.83586637216516 3.974265709566328 3.828886079136073 4.053204712999882 3.844550732054981 4.223128482792832 5.895448265354315 3.972036513167178 3.615391850471497 -4.007461349848854 -5.233252095411015 0.2460237755530919 -5.21549392738442 0.3767214755863982 -3.148385652438477 0.4515364235619232 4.903843566619047 -0.5478823292112369 4.087453864717281 -0.3597486232310047 4.09614884437698 -0.2284844717547298 3.677049488222819 4.159669778718533 0.1662555542926239 4.372380112774407 3.684794209414996 4.32993081859446 -3.404026031494141 -3.709814581504415 -3.609992563724518 -3.709814581504415 -3.615391850471497 -2.99867959161931 -6.446086437282949 2.59450650613355 -7.254357430308779 2.378929468700127 -6.479162616098119 2.74491834620776 3.843293815772286 3.973794870688992 5.909459608730573 3.886605085336919 5.922210253430289 3.734289208359481 3.417671024799347 -3.004223796660122 3.615391850471497 -3.004223796660122 3.404026031494141 -3.71536232334646 -4.094523750266317 -0.3610205477337822 -4.910918916159961 -0.5491541230999865 -4.10321902030303 -0.2297564873891819 4.899423414798795 -0.5607994889403913 4.876887840851143 -0.6828394993164713 4.083162689502553 -0.3723197720037885 -3.404026031494141 -2.90273125672229 -3.385834991931915 -3.279538441558008 -3.609992563724518 -2.90273125672229 -7.210147450728702 2.023822809671743 -7.265351044455665 2.1712154290896 -6.46243976460627 2.39884994911966 6.452919864954517 2.592722858712204 6.485996164623874 2.743134613197453 7.261196380597501 2.377145943948744 3.609992563724518 -3.71536232334646 -4.883965008323234 -0.6841003794997391 -4.906502474509111 -0.5620607390081219 -4.090236119856233 -0.3735815933244923 4.403677843243818 -1.026441190329094 3.997071167592487 -0.9057965266926231 4.03471507245138 -0.7860839389691612 -3.385834991931914 -3.279538441558009 -3.61734241247177 -3.279538441558009 -3.609992563724517 -2.90273125672229 -7.096346584687105 1.244142846791853 -7.505107656952137 1.104643774466029 -7.18114537945805 1.382564177912367 6.469197397685358 2.396908097022826 7.272114523214139 2.169274317877348 7.21690940863351 2.021882178179872 3.40402603149414 -2.907858650929879 3.609992563724517 -2.907858650929879 3.385834991931914 -3.284662959066703 -4.003697306288606 -0.9075436612659009 -4.410302460156304 -1.028187764826076 -4.04134326209841 -0.7878316292916993 4.80194303154706 -0.06451616791528596 4.82298860351823 -0.2707329905389797 4.389737888171332 0.04373490727972126 -3.385834991931916 -2.926414100524648 -3.37659627199173 -3.11493511735112 -3.617342412471772 -2.926414100524648 -7.598894664383375 1.83150963898636 -7.613542486464217 2.051861945039554 -7.192935074670702 2.167533274606519 7.102304068018194 1.241478919057735 7.187104664978349 1.379899431477534 7.51106381440397 1.101980671806985 3.609992563724517 -2.907858650929878 3.61734241247177 -3.284662959066703 -4.829804761306388 -0.2720205152737582 -4.808759444673219 -0.06580367652390529 -4.396556070892201 0.04244740713633755 7.753569650717056 2.101478480347231 7.665921350776067 2.022913398972865 7.560145750653939 2.212321811953085 -2.749756741017578 -2.995041979031922 -3.097402950109877 -2.995041979031922 -3.007173842046506 -2.820683849110998 -7.634176840463143 2.057940251353917 -7.812935549860432 2.149456661263454 -7.638073995685398 2.27857233954607 7.619935867675237 2.049986764597122 7.605287673675827 1.82963447384389 7.199330183036197 2.165658086132554 3.385834991931914 -2.931390908339032 3.61734241247177 -2.931390908339032 3.376596271991729 -3.119913505532187 -7.673133942537746 2.023559513672274 -7.760778505345099 2.102124495667099 -7.567357649153838 2.2129676870636 7.857324712467795 1.975956969339328 7.742533688840616 2.05771596092277 7.828155208389795 2.137652171269155 2.749756741017579 2.345015600238243 2.641411517930605 2.831962270825535 3.097402950109877 2.345015600238243 -7.24401352842452 3.805631189619558 -7.038729180681206 3.801281165128669 -6.913838049817935 3.665275214523943 7.819560736063652 2.147804905442341 7.640800358253213 2.056288490652131 7.644696436889007 2.276920590610841 3.006401748700101 -2.825442076668657 3.096628090548786 -2.999798913666478 2.748981362314569 -2.999798913666477 -7.749646201003721 2.058540805548088 -7.864434325683387 1.976781869931928 -7.835263830146105 2.138476961174959 7.529002737015872 1.51002548539833 7.514338012453531 1.672932830928272 7.640146586551808 1.692512138772697 2.392642648721047 2.673959912250578 2.643074891691783 2.674694627417805 2.846405821837372 2.185726809895583 -6.929479702051268 2.833735851230139 -6.975013846286685 2.340685757225951 -7.104899002091787 2.837596829670674 -7.631157006578849 2.835462057561212 -8.04951721951365 2.504886153103752 -7.994073785055845 2.910671915849256 -7.12352902858604 2.358711998373981 -7.328866212847088 2.361056434433184 -7.248235429212962 2.856443391906117 6.921302059429526 3.665292614646768 7.046195563824993 3.801298576766062 7.251475738927507 3.805648601625234 -2.640637228004281 2.831384584102829 -2.748981362314569 2.34443769086393 -3.096628090548786 2.34443769086393 -7.521690731583161 1.673324681034132 -7.53635484704045 1.510417301573095 -7.647504677822431 1.692903992956625 5.998012096748293 1.506793739965519 5.893806799275831 1.617504467530705 6.036726345161062 1.785746620089322 7.55767871259555 2.076052129409543 7.431586630695063 2.057635994534083 7.357404331345999 2.568780976099774 2.396168678405192 1.886606019114077 1.94364443756023 2.876446011354756 2.646600839669345 1.887357771677554 -6.949694831687917 2.14685190845241 -7.12510570764405 2.150942886529585 -6.877438122051456 3.182308673505118 -6.325785041756646 1.003471480149776 -6.521915314652772 0.8429392495671604 -6.136667914984765 1.197548469803839 -3.375970934403905 1.951585475714651 -3.32101188788706 1.545758936930594 -3.766293661159237 1.544358603225574 -3.444215953129659 2.68830891261291 -3.567861822787906 2.198441108781526 -3.866611150578393 2.192475169183561 7.993135689125607 2.500216041865653 7.64284985184452 2.829723084090582 8.005942721469616 2.904400225420917 7.336328329478214 2.361081705673661 7.130995316771696 2.358737269612108 7.255699279495952 2.856468663643245 -2.642206135259483 2.674075866950639 -2.39177403700181 2.673341152740492 -2.845538129572966 2.185108686384703 6.982478224044516 2.340662135674304 6.936942904734958 2.833712234356156 7.11236101309747 2.837573212833319 -7.438974329536338 2.057851876040162 -7.565071770183033 2.076268020829575 -7.364798961763082 2.56899713277036 -6.033216610603887 1.57111708506123 -6.159986794465825 1.460226825256347 -6.174789043226012 1.740065083959159 4.85798692031304 1.698477941097572 4.672048310971199 1.443086095910852 4.728856764969501 1.720115144933764 7.172813415527344 2.215624450361127 7.146109938621521 1.716790903165772 6.971959471702576 2.215624450361127 2.999888949933708 3.473632195112481 3.138749138258804 3.475259739310611 3.740984071097564 2.501925893528688 -6.702044348579214 3.175256915664935 -6.93932991602912 2.140044201120406 -6.868574775876112 3.175565134916088 -2.616479399103249 3.064540991371932 -3.094892377718396 2.084727567279685 -3.348238529858119 2.08158794193209 3.783452369573576 -2.410573954978049 3.282289435742107 -2.627889051920066 3.24470700120309 -2.40720453052603 -3.862978237507477 2.074314600976639 -3.564229409625427 2.080296012234676 -3.956567065386774 1.674269159886016 3.738677437160806 -2.637534584050092 3.293399873181828 -2.635465586596091 3.79425227612451 -2.417707902547568 -3.355590941516178 2.478382701804081 -3.102244054118723 2.481485393674201 -3.520550970233599 1.98351141238814 -7.594606175405855 2.202466850080047 -7.47794979832137 2.35317745592341 -7.246228508829629 2.533223430132042 3.325156879871405 2.390352099686712 3.38006444490519 2.792347920228598 3.770438741948165 2.388968882714275 3.568171165915268 2.197777784379399 3.444524138274316 2.687645231246857 3.866920632239829 2.191811849128781 -1.939136937806618 2.996857556485883 -2.394736093995948 2.011654222883672 -2.645168127583657 2.012402454049706 7.132537761470795 2.151957450803447 6.95712805949004 2.147866943964651 6.910562859290539 3.183204435103502 -6.979426145553589 2.215624450361126 -7.153576016426086 1.716790903165771 -7.180280089378357 2.215624450361126 -4.659333070171257 1.282465330407035 -4.825829750865863 1.539219265082906 -4.696736382727083 1.560995895547962 4.9290532598241 1.276143286731304 4.718100678503693 1.426794932530108 4.903539531627329 1.682411541928784 4.745156419409949 1.239670733106283 4.616148262563794 1.261753702561913 4.741063915256745 1.751263448479428 7.172813415527344 1.827794836268678 6.971959471702576 1.827794836268678 6.760110855102539 2.897398463765879 3.001333178159676 3.389455477460454 2.431488071920004 4.362362003789879 3.140193293588899 3.391086865953328 -6.702422187397375 2.983882575984508 -6.86895259429575 2.984197541863131 -6.650642565982718 4.148839642526224 -2.676590297209839 3.015327403606043 -2.53347023241928 3.016622927711519 -3.262009120200233 2.032190694220815 -3.264121531577342 -0.6185343306447173 -3.302574581835824 -0.7923742430616737 -3.802873578432089 -0.6211608736339703 3.59076536853066 2.919562560720977 3.889516220689897 2.913639727148494 3.981244018816276 2.516246032851238 -3.308480961832819 -0.8012053494908562 -3.753761581660225 -0.8028171550667607 -3.808689367685841 -0.629828256812915 3.102150346193101 2.480610382783226 3.355497187440614 2.477507691629174 3.520458100523353 1.982636516424233 6.946792029182502 2.141282976391568 6.735189966000142 3.176353257888278 6.90172277714292 3.1766614347321 -3.13787716514938 3.590355447087952 -2.999016829737287 3.588732769932899 -3.739213164752058 2.619932279714279 3.097163209888682 2.211457492722142 2.618085232636954 3.187125497516952 3.350509581303376 2.208331150580494 -6.979426145553592 1.827794836268678 -7.180280089378361 1.827794836268678 -6.793265938758852 2.897398463765879 -4.622798642746512 1.260962125007225 -4.751807891381726 1.238879152986148 -4.747714062753222 1.750471927792585 -3.255359593263395 1.784445893554394 -3.377998912594182 1.634497298505222 -3.434335941777626 2.035950374748347 6.905620994244752 2.880413598497575 7.158225753153406 1.813100505230981 6.747989884040035 2.883291205058956 2.797228129713849 4.570021020669109 2.971894593907851 4.578549266746009 3.51675404507292 3.60368179874324 -6.546684035612724 4.104305580285383 -6.77991456089315 3.048920602753996 -6.711066182568706 4.213330661426279 -1.929066760568944 4.330132436477025 -2.536573929178348 3.254264834924483 -2.679694140598081 3.252979374275868 6.90198706610201 3.042738196867563 6.735454268915141 3.042425387819891 6.678202909160588 4.247452502940356 -2.432187037378961 4.420404853308839 -3.002207798147593 3.403459163418558 -3.141067985031883 3.405089687260619 2.534057263812353 3.139163502602719 2.677177372647691 3.137873614003794 3.263546273745768 2.159013531616769 -7.165698991808533 1.813376139786578 -6.938783096555175 2.880652392949351 -6.781150195221142 2.88352990018531 6.90921543989634 3.072505921917002 6.751582485250123 3.075320308184777 6.534872179003074 4.126520120381919 3.087366207216764 0.7150470426967408 2.991422126483569 1.069046709694413 3.261774413532147 0.7263837354393467 -6.191689921848177 4.467119016759341 -6.362427615455451 4.56992179024694 -5.890724466119536 4.740902389830819 -2.516033550490085 4.562246692240131 -2.342676875381855 4.553387972531977 -3.107369740252683 3.482374972634118 6.775677381336893 3.074666827339538 6.544554124886941 4.171114881393614 6.709702635397148 4.279417889599178 2.535780028834959 3.270835456004771 1.928448359359963 4.390686350372738 2.678900213827625 3.269550807327317 -2.973697806718678 4.62850459838636 -2.799031287025279 4.619977831494026 -3.519035698294822 3.609518095869491 -6.785886084602273 3.136879251431091 -6.943521368422148 3.134083679893112 -6.56347069178487 4.228557034944899 6.871315886065541 3.032678645942017 6.503730840512504 4.08816378816996 6.658245864851171 4.196476182069274 2.479245290902088 0.6799391594704114 2.655386600500139 0.6887119106616295 2.723775693035722 0.325473928040234 -5.786815964834077 4.41743193651017 -6.256253125735997 4.242634564742138 -5.799836684864317 4.57912805001892 -2.764790416968209 -0.3099461404066007 -2.93767842662447 -0.2965708418704494 -2.654121206895844 0.1743715649900948 6.410496587940926 4.588502606663502 6.240007306484755 4.485448140664476 5.926333253693103 4.749144969994971 2.342550010904686 4.605539762404322 2.51590689397195 4.614397225654048 3.107366593594489 3.490427715015902 -3.019751154199075 0.813696567399304 -3.118750605215249 0.4610497625235205 -3.293114010547314 0.4728046342728451 -6.499981634076516 4.153969748633226 -6.866414130243568 3.0566261660537 -6.655163170917687 4.261689361615773 6.320661604646921 4.506123984109544 6.160719536389932 4.402801809377919 5.847271939966228 4.674895757954358 4.475126514475689 -3.139489052202338 4.310861229382351 -3.190270440552815 3.712788380835582 -1.81061645316503 -6.219749017878388 4.656698261009725 -6.221426397937465 4.818713106940197 -4.371602260915684 5.005078906591893 -2.573507219184859 0.123166923536211 -2.850978286353149 -0.3500135887976733 -2.742966987028473 0.1374310117205718 6.326034469667299 4.30186700299907 5.843622117431883 4.465736879078405 5.855722307044476 4.627476358188781 2.796081378531468 -0.5021796092870459 2.682180257178022 -0.01753821345826981 2.968910683649469 -0.4883419603594429 -2.677514768040854 0.4272692987426954 -2.501401708623118 0.4181522080289449 -2.747693030851121 0.06472171681886078 -6.211937926494723 4.420431923506698 -6.371608914610234 4.524011695051512 -5.885738513333545 4.682423819668592 6.182316541170235 4.084370033139755 5.711766468973696 4.257986463479243 5.725137688084235 4.424187225022235 6.225875089733087 4.705598514825299 6.226124551745001 4.539065342408841 4.386576789189246 4.716321352820723 4.280851344301558 -1.114383093943481 5.212464066453744 -2.374424283921286 4.134375191175259 -1.182206610588335 -4.380574847206741 4.884036770681126 -6.227571691308472 4.712204003581481 -4.37888839880877 5.058818498672211 -4.863920587890178 -2.628537670686931 -5.012055977869064 -2.562245890919636 -3.887823801815627 -1.378453122986953 6.253968750578897 4.863936472538404 6.252869723395892 4.701919438002648 4.395507797000101 5.01459432400774 2.603744200918126 -0.0675143808171938 2.773135743585333 -0.05275609087205359 2.88441538098767 -0.5405722752387457 -3.970997117430519 -1.694725850269888 -4.714607482699267 -3.03282589780904 -4.873007805014202 -2.971589748269491 -5.775253029903046 4.308120282781093 -6.258880676701894 4.145516521376522 -5.787544273760879 4.474373072257086 6.226044261950792 4.740855154327086 4.386745596272524 4.751539162644003 4.386484668088556 4.926125753368285 4.420595087537521 -0.9824866923526269 4.279573029886118 -1.057121830978527 2.913500309799356 0.5062628034162329 -4.371847724656409 4.879211601165759 -4.37046663728801 5.053994987432245 -1.972225710654404 5.247679973906447 -4.919860463928752 -2.657000446341697 -3.976616174530816 -1.400859471856824 -3.827291160728394 -1.455001196462917 4.143155088372027 -1.20519707237488 5.408309180123485 -2.301275976026724 5.268764062628875 -2.378243230022588 6.259748007929074 4.756894376780651 4.404214438903148 4.893193152894964 4.401952434286432 5.067970868929011 -4.509290824377787 -0.8869529922811061 -4.372188638714785 -0.9659787194513991 -5.601427948645435 -2.067872402622526 -4.413776507097539 4.727517860431248 -6.262003003190792 4.586268298636127 -6.261075233875922 4.752800424840699 4.378575836076083 4.921700353745099 4.378552318954246 4.747113643335689 1.972273653746801 4.943986761700014 2.882609416811939 0.2974335323744031 4.093205774324514 -1.343324673699387 2.742661400572453 0.2283284366643733 -1.97306245640906 5.073745614681402 -4.371654801356737 4.877573717286324 -1.972046964483193 5.246099221765742 -4.058011030152646 -1.324667796130753 -4.201092367989796 -1.260940684376005 -2.688106748254699 0.2359371195845208 4.061017289485063 -1.330326344986218 4.204131887652479 -1.266645323033161 5.280453381301022 -2.458015933965689 4.377931523600408 5.053996240945879 4.37931499523145 4.879212855072634 1.979691937985324 5.247681226984314 -2.917958641228029 0.5015790382689307 -4.28402565300467 -1.061809814189349 -4.425047483154843 -0.9871744741953735 -4.413387164833381 4.762143724781832 -6.260687912101217 4.787334763896554 -4.412452425655175 4.93672888762891 4.380206407626598 5.137082954250202 1.973897438993191 5.158911206979114 1.977764843012009 5.331083965876196 2.772666770969397 1.163276922930621 2.692141335111127 1.049773363124517 0.9519103176151644 1.787726003152057 -1.974631578162743 5.074155862236125 -1.973559904608792 5.246509258805685 0.001196126629127586 5.307396446881216 -4.3747741012958 -0.9656669121644274 -2.866779137099168 0.5182987753131525 -2.725923580872883 0.4396082863386507 4.062077012743613 -1.329543916370038 2.692161523327219 0.2310536357480181 4.205158671723249 -1.265817105306885 4.379122069019729 4.877574765997092 1.980528084987827 5.073746663488098 1.979513189146325 5.24610027065672 -2.886596839790157 0.2925076435209275 -2.746648776952617 0.2234026023531332 -4.097198394391896 -1.348249267559785 -4.386018694525992 4.747113020988515 -4.386042211644917 4.921699731397924 -1.979739731292052 4.94398613935284 1.976958240847883 5.159477248897645 0.0002558056373687623 5.215676113176325 1.980734731456215 5.33165125669606 0.006621650679452279 5.068569953189448 -1.969041235255684 5.012140162207792 0.006508141286023687 5.246835204736376 0.9665412120711872 1.961348275235311 2.739451801271774 1.271389977423975 0.8930927937344544 1.847441088196134 -2.634893744918189 1.13779737732554 -2.718992970340795 1.25651282003048 -0.8669201300834908 1.832527505845364 2.730427803217191 0.434958167162637 2.871283277958421 0.5136487327236128 4.379276657673796 -0.9703183990415918 1.98102612436018 5.246511807061357 1.982097201853244 5.074158410287361 0.006269994174613433 5.307398995209108 -0.958446106655611 1.784896237836819 -2.698677170116475 1.046944488479108 -2.779202923349742 1.160447911292415 -1.981363515933531 5.158911980882619 -4.387672782589707 5.137083728155668 -1.985230770944093 5.331084739764228 1.979370095927085 5.359339000532783 -0.001136560109975048 5.243657279146571 -0.001214392540318872 5.420447844660266 1.976506857319015 5.012137220215808 0.0008444684858135076 5.068567011197461 0.0009579779078014775 5.246832262744378 -0.9731955653287988 1.958692946536143 -0.8997471455144981 1.844785760086569 -2.746106100963762 1.268734652296151 -0.8334575878217123 1.871810990948354 -2.699549169916647 1.324511915116575 -0.9108048461715025 1.996245543828041 2.641530225683527 1.135114165178643 0.8735568164435165 1.82984479154096 2.725629236375278 1.253829692954878 -0.007721920714548686 5.21567933006274 -1.984424305868512 5.159480465804964 -1.988200647459517 5.331654473539335 -0.006329562512153622 5.243659313274075 -1.986836019474041 5.359341034660285 -0.006251730073986694 5.420449878787768 0.8401599042857876 1.869232838044573 0.9175071689004798 1.993667388514356 2.70625128012307 1.321933772812247</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"388\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 1 6 8 7 2 8 3 8 9 7 4 6 0 9 10 10 1 11 4 11 11 10 5 9 12 12 6 13 2 14 3 14 7 13 13 12 6 15 14 16 0 17 5 17 15 16 7 15 16 18 2 19 8 20 9 20 3 19 17 18 18 21 8 22 1 23 4 23 9 22 19 21 20 24 10 25 0 26 5 26 11 25 21 24 12 27 2 28 16 29 17 29 3 28 13 27 22 30 6 31 12 32 13 32 7 31 23 30 14 16 20 33 0 17 5 17 21 33 15 16 24 34 14 35 6 36 7 36 15 35 25 34 16 37 8 38 26 39 27 39 9 38 17 37 18 40 28 41 8 42 9 42 29 41 19 40 20 43 30 44 10 45 11 45 31 44 21 43 22 46 12 47 16 48 17 48 13 47 23 46 24 49 6 50 22 51 23 51 7 50 25 49 14 52 32 53 20 54 21 54 33 53 15 52 34 55 14 56 24 57 25 57 15 56 35 55 36 58 16 59 26 60 27 60 17 59 37 58 26 39 8 38 28 61 29 61 9 38 27 39 38 62 28 63 18 64 19 64 29 63 39 62 40 65 30 66 20 67 21 67 31 66 41 65 36 68 22 69 16 70 17 70 23 69 37 68 32 71 40 72 20 73 21 73 41 72 33 71 34 74 32 75 14 76 15 76 33 75 35 74 36 77 26 78 42 79 43 79 27 78 37 77 26 80 28 81 44 82 45 82 29 81 27 80 38 83 46 84 28 85 29 85 47 84 39 83 40 86 48 87 30 88 31 88 49 87 41 86 32 89 50 90 40 91 41 91 51 90 33 89 52 92 32 93 34 94 35 94 33 93 53 92 42 95 26 96 44 97 45 97 27 96 43 95 44 82 28 81 46 98 47 98 29 81 45 82 54 99 46 100 38 101 39 101 47 100 55 99 56 102 48 103 40 104 41 104 49 103 57 102 50 105 56 106 40 107 41 107 57 106 51 105 52 108 50 109 32 110 33 110 51 109 53 108 42 111 44 112 58 113 59 113 45 112 43 111 44 114 46 115 60 116 61 116 47 115 45 114 54 117 62 118 46 119 47 119 63 118 55 117 56 120 64 121 48 122 49 122 65 121 57 120 50 123 66 124 56 125 57 125 67 124 51 123 68 126 50 127 52 128 53 128 51 127 69 126 58 129 44 130 60 131 61 131 45 130 59 129 60 116 46 132 62 133 63 133 47 132 61 116 70 134 62 135 54 136 55 136 63 135 71 134 72 137 64 138 56 139 57 139 65 138 73 137 66 140 74 141 56 142 57 142 75 141 67 140 68 143 66 144 50 145 51 145 67 144 69 143 60 146 76 147 58 148 59 148 77 147 61 146 60 149 62 150 78 151 79 151 63 150 61 149 70 152 80 153 62 154 63 154 81 153 71 152 82 155 64 156 72 157 73 157 65 156 83 155 84 158 85 159 86 160 87 160 88 159 89 158 90 161 66 162 68 163 69 163 67 162 91 161 78 164 76 165 60 166 61 166 77 165 79 164 62 167 92 168 78 169 79 169 93 168 63 167 70 170 94 171 80 172 81 172 95 171 71 170 82 173 72 174 96 175 97 175 73 174 83 173 85 176 98 177 86 178 87 178 99 177 88 176 100 179 101 180 102 181 103 181 104 180 105 179 68 182 106 183 90 184 91 184 107 183 69 182 101 185 108 186 102 187 103 187 109 186 104 185 76 188 78 189 110 190 111 190 79 189 77 188 112 191 113 192 114 193 115 193 116 192 117 191 80 194 94 195 118 196 119 196 95 195 81 194 120 197 82 198 96 199 97 199 83 198 121 197 96 200 72 201 122 202 123 202 73 201 97 200 85 203 124 204 98 205 99 205 125 204 88 203 100 206 102 207 126 208 127 208 103 207 105 206 128 209 106 210 68 211 69 211 107 210 129 209 130 212 131 213 132 214 133 214 134 213 135 212 136 215 130 216 137 217 138 217 135 216 139 215 140 218 76 219 110 220 111 220 77 219 141 218 142 221 143 222 144 223 145 223 146 222 147 221 148 224 112 225 114 226 115 226 117 225 149 224 143 227 150 228 144 229 145 229 151 228 146 227 80 230 118 231 152 232 153 232 119 231 81 230 94 233 154 234 118 235 119 235 155 234 95 233 137 236 120 237 96 238 97 238 121 237 138 236 156 239 96 240 122 241 123 241 97 240 157 239 124 242 158 243 98 244 99 244 159 243 125 242 160 245 100 246 126 247 127 247 105 246 161 245 162 248 136 249 156 250 157 250 139 249 163 248 164 251 165 252 166 253 167 253 168 252 169 251 137 254 130 255 132 256 133 256 135 255 138 254 170 257 165 258 164 259 169 259 168 258 171 257 156 260 136 261 137 262 138 262 139 261 157 260 172 263 173 264 174 265 175 265 176 264 177 263 178 266 179 267 180 268 181 268 182 267 183 266 179 269 184 270 185 271 186 271 187 270 182 269 188 272 112 273 148 274 149 274 117 273 189 272 144 275 150 276 190 277 191 277 151 276 145 275 152 278 118 279 192 280 193 280 119 279 153 278 154 281 185 282 118 283 119 283 186 282 155 281 194 284 120 285 137 286 138 286 121 285 195 284 137 287 96 288 156 289 157 289 97 288 138 287 156 290 122 291 196 292 197 292 123 291 157 290 124 293 198 294 158 295 159 295 199 294 125 293 160 296 126 297 200 298 201 298 127 297 161 296 202 299 162 300 156 301 157 301 163 300 203 299 204 302 205 303 206 304 207 304 208 303 209 302 179 305 185 306 180 307 181 307 186 306 182 305 205 308 210 309 206 310 207 310 211 309 208 308 184 311 192 312 185 313 186 313 193 312 187 311 150 314 212 315 190 316 191 316 213 315 151 314 214 317 188 318 148 319 149 319 189 318 215 317 184 320 216 321 192 322 193 322 217 321 187 320 152 323 192 324 218 325 219 325 193 324 153 323 118 326 185 327 192 328 193 328 186 327 119 326 154 329 180 330 185 331 186 331 181 330 155 329 220 332 156 333 196 334 197 334 157 333 221 332 198 335 222 336 158 337 159 337 223 336 199 335 224 338 160 339 200 340 201 340 161 339 225 338 226 341 162 342 202 343 203 343 163 342 227 341 190 344 212 345 228 346 229 346 213 345 191 344 230 347 188 348 214 349 215 349 189 348 231 347 216 350 232 351 192 352 193 352 233 351 217 350 192 353 234 354 218 355 219 355 235 354 193 353 220 356 196 357 236 358 237 358 197 357 221 356 198 359 238 360 222 361 223 361 239 360 199 359 224 362 200 363 240 364 241 364 201 363 225 362 242 365 226 366 202 367 203 367 227 366 243 365 212 368 244 369 228 370 229 370 245 369 213 368 216 371 246 372 232 373 233 373 247 372 217 371 248 374 230 375 214 376 215 376 231 375 249 374 218 377 234 378 250 379 251 379 235 378 219 377 220 380 236 381 252 382 253 382 237 381 221 380 238 383 254 384 222 385 223 385 255 384 239 383 240 386 200 387 256 388 257 388 201 387 241 386 226 389 242 390 258 391 259 391 243 390 227 389 228 392 244 393 260 394 261 394 245 393 229 392 246 395 262 396 232 397 233 397 263 396 247 395 264 398 230 399 248 400 249 400 231 399 265 398 250 401 234 402 266 403 267 403 235 402 251 401 252 404 236 405 268 406 269 406 237 405 253 404 254 407 238 408 270 409 271 409 239 408 255 407 240 410 256 411 272 412 273 412 257 411 241 410 258 413 242 414 274 415 275 415 243 414 259 413 228 416 260 417 276 418 277 418 261 417 229 416 246 419 278 420 262 421 263 421 279 420 247 419 280 422 264 423 248 424 249 424 265 423 281 422 250 425 266 426 282 427 283 427 267 426 251 425 252 428 268 429 284 430 285 430 269 429 253 428 284 431 268 432 286 433 287 433 269 432 285 431 270 434 238 435 288 436 289 436 239 435 271 434 290 437 240 438 272 439 273 439 241 438 291 437 258 440 274 441 292 442 293 442 275 441 259 440 276 443 260 444 294 445 295 445 261 444 277 443 278 446 296 447 262 448 263 448 297 447 279 446 298 449 264 450 280 451 281 451 265 450 299 449 282 452 266 453 300 454 301 454 267 453 283 452 284 455 286 456 302 457 303 457 287 456 285 455 270 458 288 459 304 460 305 460 289 459 271 458 290 461 272 462 306 463 307 463 273 462 291 461 274 464 308 465 292 466 293 466 309 465 275 464 310 467 296 468 278 469 279 469 297 468 311 467 260 470 312 471 294 472 295 472 313 471 261 470 298 473 314 474 264 475 265 475 315 474 299 473 316 476 282 477 300 478 301 478 283 477 317 476 302 479 286 480 318 481 319 481 287 480 303 479 304 482 288 483 320 484 321 484 289 483 305 482 322 485 290 486 306 487 307 487 291 486 323 485 292 488 308 489 324 490 325 490 309 489 293 488 310 491 326 492 296 493 297 493 327 492 311 491 294 494 312 495 328 496 329 496 313 495 295 494 330 497 314 498 298 499 299 499 315 498 331 497 316 500 300 501 332 502 333 502 301 501 317 500 302 503 318 504 334 505 335 505 319 504 303 503 304 506 320 507 336 508 337 508 321 507 305 506 322 509 306 510 338 511 339 511 307 510 323 509 308 512 340 513 324 514 325 514 341 513 309 512 310 515 342 516 326 517 327 517 343 516 311 515 312 518 344 519 328 520 329 520 345 519 313 518 330 521 346 522 314 523 315 523 347 522 331 521 316 524 332 525 348 526 349 526 333 525 317 524 318 527 350 528 334 529 335 529 351 528 319 527 352 530 322 531 338 532 339 532 323 531 353 530 354 533 304 534 336 535 337 535 305 534 355 533 324 536 340 537 356 538 357 538 341 537 325 536 342 539 358 540 326 541 327 541 359 540 343 539 328 542 344 543 338 544 339 544 345 543 329 542 336 545 346 546 330 547 331 547 347 546 337 545 348 548 332 549 360 550 361 550 333 549 349 548 334 551 350 552 362 553 363 553 351 552 335 551 344 554 352 555 338 556 339 556 353 555 345 554 354 557 336 558 330 559 331 559 337 558 355 557 356 560 340 561 364 562 365 562 341 561 357 560 342 563 356 564 358 565 359 565 357 564 343 563 350 566 348 567 360 568 361 568 349 567 351 566 350 569 360 570 362 571 363 571 361 570 351 569 356 572 364 573 358 574 359 574 365 573 357 572</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID14\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID15\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID19\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID24\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID22\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID23\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID22\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID25\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"162\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID25\">0.1924440562725067 0.2711399495601654 0.6115583777427673 0.1957686692476273 0.2042710781097412 0.7609833478927612 0.002700587967410684 0.2004776000976563 0.7722446918487549 0.002700587967410684 0.2004776000976563 0.7722446918487549 0.1957686692476273 0.2042710781097412 0.7609833478927612 0.1924440562725067 0.2711399495601654 0.6115583777427673 0.4444983303546906 0.2680619955062866 0.586967945098877 0.4444983303546906 0.2680619955062866 0.586967945098877 0.002700587967410684 0.2720804810523987 0.6240522265434265 0.002700587967410684 0.2720804810523987 0.6240522265434265 0.4397116601467133 0.2113500535488129 0.7385702729225159 0.4397116601467133 0.2113500535488129 0.7385702729225159 0.352396547794342 0.3509823083877564 0.4470842778682709 0.352396547794342 0.3509823083877564 0.4470842778682709 0.002700587967410684 0.3516040444374085 0.4641821682453156 0.002700587967410684 0.3516040444374085 0.4641821682453156 -0.1870429217815399 0.2711399495601654 0.6115583777427673 -0.1870429217815399 0.2711399495601654 0.6115583777427673 0.6850299835205078 0.2828713655471802 0.5538220405578613 0.6850299835205078 0.2828713655471802 0.5538220405578613 0.5602087378501892 0.3492371141910553 0.4287796020507813 0.5602087378501892 0.3492371141910553 0.4287796020507813 -0.1903675049543381 0.2042710781097412 0.7609833478927612 -0.1903675049543381 0.2042710781097412 0.7609833478927612 0.6636645793914795 0.2286375910043716 0.6840465664863586 0.6636645793914795 0.2286375910043716 0.6840465664863586 0.709339439868927 0.3376691043376923 0.4316198825836182 0.709339439868927 0.3376691043376923 0.4316198825836182 -0.3469953238964081 0.3509823083877564 0.4470842778682709 -0.3469953238964081 0.3509823083877564 0.4470842778682709 -0.4390972852706909 0.2680619955062866 0.586967945098877 -0.4390972852706909 0.2680619955062866 0.586967945098877 0.6231700778007507 0.2220461815595627 0.7204016447067261 0.6231700778007507 0.2220461815595627 0.7204016447067261 0.643763542175293 0.3510677814483643 0.3979833722114563 0.643763542175293 0.3510677814483643 0.3979833722114563 -0.4343104958534241 0.2113500535488129 0.7385702729225159 -0.4343104958534241 0.2113500535488129 0.7385702729225159 0.7126624584197998 0.357633650302887 0.3590758442878723 0.7126624584197998 0.357633650302887 0.3590758442878723 -0.5548076629638672 0.3492371141910553 0.4287796020507813 -0.5548076629638672 0.3492371141910553 0.4287796020507813 -0.6796286106109619 0.2828713655471802 0.5538220405578613 -0.6796286106109619 0.2828713655471802 0.5538220405578613 -0.7039383053779602 0.3376691043376923 0.4316198825836182 -0.7039383053779602 0.3376691043376923 0.4316198825836182 -0.6572906970977783 0.2286375910043716 0.6784615516662598 -0.6572906970977783 0.2286375910043716 0.6784615516662598 -0.6383625268936157 0.3510677814483643 0.3979833722114563 -0.6383625268936157 0.3510677814483643 0.3979833722114563 -0.616965651512146 0.2220461815595627 0.7161311507225037 -0.616965651512146 0.2220461815595627 0.7161311507225037 -0.7072612643241882 0.357633650302887 0.3590758442878723 -0.7072612643241882 0.357633650302887 0.3590758442878723</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID23\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID26\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"162\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID26\">0.03485320284872272 0.899138437978854 0.4362743673425384 0.01951910867172393 0.9171748765335216 0.3980065957397955 1.051160530737447e-009 0.9061375626667 0.4229831173042872 -1.051160530737447e-009 -0.9061375626667 -0.4229831173042872 -0.01951910867172393 -0.9171748765335216 -0.3980065957397955 -0.03485320284872272 -0.899138437978854 -0.4362743673425384 0.0257166868780685 0.908666212219352 0.4167305685775294 -0.0257166868780685 -0.908666212219352 -0.4167305685775294 3.645488823785591e-009 0.8979822765258833 0.4400316250514187 -3.645488823785591e-009 -0.8979822765258833 -0.4400316250514187 0.001300593575580135 0.938226845998182 0.3460183433066159 -0.001300593575580135 -0.938226845998182 -0.3460183433066159 0.04630452055562252 0.8783656303933205 0.4757412224307018 -0.04630452055562252 -0.8783656303933205 -0.4757412224307018 8.738997922719271e-010 0.8929615435048699 0.4501329601588852 -8.738997922719271e-010 -0.8929615435048699 -0.4501329601588852 -0.03485319651907277 0.89913844009921 0.4362743634782617 0.03485319651907277 -0.89913844009921 -0.4362743634782617 0.003983352877028968 0.9189265915012781 0.3944084841020794 -0.003983352877028968 -0.9189265915012781 -0.3944084841020794 0.05753510116414596 0.8849008725822695 0.4622122432791778 -0.05753510116414596 -0.8849008725822695 -0.4622122432791778 -0.01951910407534057 0.9171748731339707 0.3980066037992096 0.01951910407534057 -0.9171748731339707 -0.3980066037992096 0.009659538208278065 0.9410757749378406 0.3380578044458462 -0.009659538208278065 -0.9410757749378406 -0.3380578044458462 0.04496678695988145 0.935419526232216 0.3506683590146127 -0.04496678695988145 -0.935419526232216 -0.3506683590146127 -0.0463044972456431 0.8783656491122684 0.475741190138516 0.0463044972456431 -0.8783656491122684 -0.475741190138516 -0.02571666601298755 0.908666221566183 0.4167305494846911 0.02571666601298755 -0.908666221566183 -0.4167305494846911 -0.04492138787749118 0.9905538335691692 0.1295575999800209 0.04492138787749118 -0.9905538335691692 -0.1295575999800209 0.06688683703105594 0.9649000494973166 0.2539567788267463 -0.06688683703105594 -0.9649000494973166 -0.2539567788267463 -0.003213236844278409 0.9375383555841581 0.3478670822563341 0.003213236844278409 -0.9375383555841581 -0.3478670822563341 0.05934913700066501 0.9617562798550992 0.2673995850717735 -0.05934913700066501 -0.9617562798550992 -0.2673995850717735 -0.05753510569380399 0.8849008584507783 0.4622122697699384 0.05753510569380399 -0.8849008584507783 -0.4622122697699384 -0.007363809001137122 0.9171999091885652 0.3983592610966668 0.007363809001137122 -0.9171999091885652 -0.3983592610966668 -0.04496687070698219 0.9354195212454681 0.3506683615778889 0.04496687070698219 -0.9354195212454681 -0.3506683615778889 -0.02259546634892213 0.9354078084312736 0.3528479514270653 0.02259546634892213 -0.9354078084312736 -0.3528479514270653 -0.06688688639620655 0.964900012856177 0.2539569050417224 0.06688688639620655 -0.964900012856177 -0.2539569050417224 0.04228500258832065 0.990857597467327 0.1281140121039941 -0.04228500258832065 -0.990857597467327 -0.1281140121039941 -0.05934926707443611 0.9617562834541745 0.2673995432571656 0.05934926707443611 -0.9617562834541745 -0.2673995432571656</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"60\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 6 10 1 4 11 7 12 6 0 5 7 13 14 0 8 9 5 15 16 8 2 3 9 17 6 18 10 11 19 7 12 20 6 7 21 13 14 12 0 5 13 15 16 14 8 9 15 17 22 16 2 3 17 23 18 24 10 11 25 19 26 18 6 7 19 27 20 26 6 7 27 21 28 14 16 17 15 29 30 16 22 23 17 31 24 32 10 11 33 25 20 34 26 27 35 21 30 28 16 17 29 31 36 30 22 23 31 37 34 38 26 27 39 35 40 28 30 31 29 41 42 30 36 37 31 43 44 40 30 31 41 45 42 44 30 31 45 43 46 42 36 37 43 47 48 40 44 45 41 49 50 46 36 37 47 51 52 48 44 45 49 53</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID24\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID27\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID30\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID28\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID29\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID28\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID32\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID32\">-0.07851788401603699 0.1782157123088837 0.750410795211792 -0.07483669370412827 0.1782276183366776 0.7286940813064575 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.07483669370412827 0.1782276183366776 0.7286940813064575 -0.07851788401603699 0.1782157123088837 0.750410795211792 0.000409614498494193 0.1782157123088837 0.750410795211792 0.000409614498494193 0.1782157123088837 0.750410795211792 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.07149340957403183 0.1782367527484894 0.7254133224487305 -0.07149340957403183 0.1782367527484894 0.7254133224487305 -0.07443798333406448 0.1782035082578659 0.7693319320678711 -0.07443798333406448 0.1782035082578659 0.7693319320678711 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.07443798333406448 0.1968002468347549 0.7693800926208496 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.07443798333406448 0.1968002468347549 0.7693800926208496 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.07851788401603699 0.1968121081590653 0.7504593729972839 -0.07851788401603699 0.1968121081590653 0.7504593729972839 -0.09266245365142822 0.1896431148052216 0.724322497844696 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.000409614498494193 0.1782397478818893 0.7226461172103882 -0.07120383530855179 0.1781944781541824 0.7728844285011292 -0.07120383530855179 0.1781944781541824 0.7728844285011292 -0.07120383530855179 0.1967910826206207 0.772932767868042 -0.07120383530855179 0.1967910826206207 0.772932767868042 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.07483669370412827 0.1968243420124054 0.7287421822547913 -0.07483669370412827 0.1968243420124054 0.7287421822547913 -0.08871600776910782 0.1896520107984543 0.7204501032829285 -0.08871600776910782 0.1896520107984543 0.7204501032829285 0.07204876095056534 0.1782367527484894 0.7255136966705322 0.07204876095056534 0.1782367527484894 0.7255136966705322 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.000409614498494193 0.1968121081590653 0.7504593729972839 0.000409614498494193 0.1968121081590653 0.7504593729972839 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08871600776910782 0.1896520107984543 0.7204501032829285 -0.08871600776910782 0.1896520107984543 0.7204501032829285 0.07520543038845062 0.1782276183366776 0.7287005186080933 0.07520543038845062 0.1782276183366776 0.7287005186080933 -0.003841559402644634 0.1896552294492722 0.7171844244003296 -0.003841559402644634 0.1896552294492722 0.7171844244003296 0.07189667224884033 0.1781944781541824 0.7727674245834351 0.07189667224884033 0.1781944781541824 0.7727674245834351 -0.003841564524918795 0.1896068900823593 0.7814804315567017 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.0004096109187230468 0.1781909167766571 0.7759701609611511 -0.003841564524918795 0.1896068900823593 0.7814804315567017 0.0004096109187230468 0.1967881321907044 0.7760187983512878 0.0004096109187230468 0.1967881321907044 0.7760187983512878 -0.07149340957403183 0.1968333870172501 0.7254616618156433 -0.07149340957403183 0.1968333870172501 0.7254616618156433 0.07795095443725586 0.1782157123088837 0.750410795211792 0.07795095443725586 0.1782157123088837 0.750410795211792 0.08072145283222199 0.1896520107984543 0.7205688953399658 0.08072145283222199 0.1896520107984543 0.7205688953399658 0.07507967203855515 0.1782035082578659 0.7693222761154175 0.07507967203855515 0.1782035082578659 0.7693222761154175 0.08054187148809433 0.189610093832016 0.7777007222175598 0.08054187148809433 0.189610093832016 0.7777007222175598 0.07189667224884033 0.1967910826206207 0.7728157639503479 0.07189667224884033 0.1967910826206207 0.7728157639503479 0.000409614498494193 0.1968369483947754 0.7226946949958801 0.000409614498494193 0.1968369483947754 0.7226946949958801 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.07507967203855515 0.1968002468347549 0.7693703770637512 0.07507967203855515 0.1968002468347549 0.7693703770637512 0.07204876095056534 0.1968333870172501 0.7255620956420898 0.07204876095056534 0.1968333870172501 0.7255620956420898 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.07795095443725586 0.1968121081590653 0.7504593729972839 0.07795095443725586 0.1968121081590653 0.7504593729972839 0.07520543038845062 0.1968243420124054 0.7287487387657166 0.07520543038845062 0.1968243420124054 0.7287487387657166 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.0876883789896965 0.1896311044692993 0.7504352331161499</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID29\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID33\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID33\">-0.3024878347369789 -0.9531330521014052 0.006204420036904032 -0.2878136372143352 -0.9422455791864398 -0.1712792419911581 -0.5249396037438788 -0.8510941690515425 0.008782245025272984 0.5249396037438788 0.8510941690515425 -0.008782245025272984 0.2878136372143352 0.9422455791864398 0.1712792419911581 0.3024878347369789 0.9531330521014052 -0.006204420036904032 -1.030157873869469e-007 -0.9999995857409991 -0.0009102295422166482 1.030157873869469e-007 0.9999995857409991 0.0009102295422166482 -0.4867280914656857 -0.8423232723404854 0.2314892434904643 0.4867280914656857 0.8423232723404854 -0.2314892434904643 -0.4832427607286494 -0.8438939856208405 -0.2330651737954984 0.4832427607286494 0.8438939856208405 0.2330651737954984 -0.1065158443663067 -0.8465930701179467 -0.5214734399058137 0.1065158443663067 0.8465930701179467 0.5214734399058137 -0.2843076200453105 -0.9452226107733496 0.1603851404182587 0.2843076200453105 0.9452226107733496 -0.1603851404182587 -0.3613522282898117 0.9323990584512384 0.007520831684874476 -0.1943492098146326 0.9744131186208097 0.1129046451838712 -0.3367738535342633 0.9278463575668894 0.1602638709302215 0.3367738535342633 -0.9278463575668894 -0.1602638709302215 0.1943492098146326 -0.9744131186208097 -0.1129046451838712 0.3613522282898117 -0.9323990584512384 -0.007520831684874476 -0.3350021281728092 0.9286763000072572 -0.1591662775983643 -0.2053667260317607 0.9786667518408502 0.005991383836474488 0.2053667260317607 -0.9786667518408502 -0.005991383836474488 0.3350021281728092 -0.9286763000072572 0.1591662775983643 5.950004055100147e-007 -0.9999996252914151 -0.0008656885557298904 -5.950004055100147e-007 0.9999996252914151 0.0008656885557298904 -0.1163281839727694 -0.8491927267221577 0.5151111205320502 0.1163281839727694 0.8491927267221577 -0.5151111205320502 -0.07782172999912324 0.8997020137288794 0.4295114257294478 0.07782172999912324 -0.8997020137288794 -0.4295114257294478 -0.3506576699523518 -0.7630938270209297 0.5428876584212787 0.3506576699523518 0.7630938270209297 -0.5428876584212787 -0.1969912460712346 0.9734167353974789 -0.116851650477932 0.1969912460712346 -0.9734167353974789 0.116851650477932 -0.3367741236817105 -0.753563594148795 -0.5645574365748503 0.3367741236817105 0.753563594148795 0.5645574365748503 0.1647585956680902 -0.8280508909958978 -0.5358976834008324 -0.1647585956680902 0.8280508909958978 0.5358976834008324 0.0081277610919186 -0.4291142777136779 -0.903213638162036 -0.0081277610919186 0.4291142777136779 0.903213638162036 -7.908903987158142e-007 -0.9999995294381545 -0.0009701148614059022 7.908903987158142e-007 0.9999995294381545 0.0009701148614059022 9.367606006905798e-008 0.9999995870292008 0.0009088131925657172 -9.367606006905798e-008 -0.9999995870292008 -0.0009088131925657172 -0.2576590149372369 0.8834340835300767 0.3913515709422234 0.2576590149372369 -0.8834340835300767 -0.3913515709422234 -0.2494900682113803 0.8802092095288722 -0.4037158076226872 0.2494900682113803 -0.8802092095288722 0.4037158076226872 0.4250998540304424 -0.8806347916119481 -0.2092187322059793 -0.4250998540304424 0.8806347916119481 0.2092187322059793 -0.00845229221265386 0.1033426982612746 -0.9946098961263311 0.00845229221265386 -0.1033426982612746 0.9946098961263311 0.1749601512800255 -0.8291922921760373 0.5308757746026089 -0.1749601512800255 0.8291922921760373 -0.5308757746026089 -0.009459542753938796 0.09949545053255485 0.994993051420064 0.009079193768697695 -0.4319341657279547 0.9018594373389937 -0.009079193768697695 0.4319341657279547 -0.9018594373389937 0.009459542753938796 -0.09949545053255485 -0.994993051420064 0.006149349385183222 0.8895686355997782 0.4567601428094272 -0.006149349385183222 -0.8895686355997782 -0.4567601428094272 -0.07191839607807007 0.9008443571287098 -0.4281438876533442 0.07191839607807007 -0.9008443571287098 0.4281438876533442 0.448138374237927 -0.8939458912537754 0.005721979192628416 -0.448138374237927 0.8939458912537754 -0.005721979192628416 0.4770528154286843 0.1031595313166823 -0.8727993597557735 -0.4770528154286843 -0.1031595313166823 0.8727993597557735 0.4238771647515925 -0.8828044000927632 0.202446388900883 -0.4238771647515925 0.8828044000927632 -0.202446388900883 0.4945456462922296 0.09947495807119577 0.8634404070056803 -0.4945456462922296 -0.09947495807119577 -0.8634404070056803 0.1258013806332151 0.8860187556699122 0.4462564030150351 -0.1258013806332151 -0.8860187556699122 -0.4462564030150351 0.005435422936699622 0.891631961359924 -0.4527282867890564 -0.005435422936699622 -0.891631961359924 0.4527282867890564 0.6702508690679085 -0.6667194785354795 -0.3259584474363129 -0.6702508690679085 0.6667194785354795 0.3259584474363129 0.6742346164452745 -0.6654584480574296 0.3202697861114761 -0.6742346164452745 0.6654584480574296 -0.3202697861114761 0.3173293102426028 0.9355575519583267 0.1550295966410821 -0.3173293102426028 -0.9355575519583267 -0.1550295966410821 0.1190699982263196 0.8884420729247442 -0.4432753304432444 -0.1190699982263196 -0.8884420729247442 0.4432753304432444 0.760030288705589 -0.6498302846838061 0.008634891884813508 -0.760030288705589 0.6498302846838061 -0.008634891884813508 0.5170322868802112 0.8188151053051141 -0.2494382441559307 -0.5170322868802112 -0.8188151053051141 0.2494382441559307 0.521322000416191 0.8159351570852588 0.2499463768777512 -0.521322000416191 -0.8159351570852588 -0.2499463768777512 0.3362759406245169 0.9417533539071984 0.004371745834244416 -0.3362759406245169 -0.9417533539071984 -0.004371745834244416 0.3202772260176232 0.9345677672437676 -0.1549373645169405 -0.3202772260176232 -0.9345677672437676 0.1549373645169405 0.5932164723436803 0.8050212461442146 0.005916941484898163 -0.5932164723436803 -0.8050212461442146 -0.005916941484898163</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID31\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"216\" source=\"#ID34\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"432\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID34\">-1.604442099772253 5.802283499279104 -1.573183456353962 5.630762032501461 -1.821740661015552 5.802476513066489 0.00409614498494193 5.902462085770645 -0.7483669370412827 5.731623910707608 -0.7851788401603699 5.902462085770645 -1.604196182515231 5.962490747251832 -1.82149474324102 5.962684121255307 -1.780449779026585 6.146339901946291 -1.571268598756017 5.633255221851461 -1.78291091091704 5.598733785620715 -1.819858586623598 5.804940331456764 -0.7140452025127804 5.703378050300267 -0.7474780852070422 5.729186753498295 0.004984843891686928 5.900025345398822 0.00409614498494193 5.902326100828895 -0.7851788401603699 5.902326100828895 -0.7443798333406448 6.051172408391516 0.2236734658732968 5.762133091532981 -0.01270952242478987 5.911585246007205 0.1787754005984815 5.945230107319095 -1.564428723748529 6.113601345021629 -1.599305025680767 5.963826210519477 -1.775445545748399 6.147742417172025 0.2179063692350927 5.992400588104799 0.1773562749568012 5.786613389957505 0.01955257277450474 5.992590827788637 -1.448469807025108 4.751486045042294 -1.688880764353528 4.742016143994216 -1.478189593478927 4.779967674105643 0.004111008280331676 5.683600164398651 -0.7149192326696907 5.705368853763854 0.004111006276021026 5.902015713185169 0.003401430125809488 5.900151354700049 -0.7450744437582559 6.04899798727062 -0.7127329307595376 6.076944359379837 0.0875151803162183 5.355915491467289 0.05684437206541895 5.38500547820929 0.2786303277646169 5.390837238688121 0.21754929076373 5.754514713295354 0.01919549468686374 5.754705200410626 -0.01879160302071026 5.90400806068337 -1.489320372067448 5.95132655585069 -1.699604226711574 5.988160124114627 -1.665788431435642 6.023972587944718 0.180187554914348 5.787662053882029 -0.01197278655136753 5.822494054807282 0.02240503837869619 5.993649535119075 -1.653813246305865 4.709468520215458 -1.688903054480486 4.743081386304116 -1.448492007543037 4.752549879443639 0.7204748535710164 5.70615846456132 0.004083388854297861 5.683600164355402 0.004083390574457986 5.902015713141923 -1.032044798157092 1.226779649424081 -0.8514584171371413 1.314888120954353 -0.1346106482705932 1.265763910272534 0.004082013310828176 5.901868745412714 -0.7120524830533479 6.07866141048066 0.004081979479286662 6.102935850588785 -1.46081457044848 5.981914842209305 -1.489466745456678 5.951579120552236 -1.665939082746371 6.024218721431586 0.7451694618322063 6.049014422414442 -0.003306408641074359 5.900171063165603 0.7128279474080883 6.076962202870619 0.2786041034267978 5.392014972887837 0.05681812193419247 5.386183819490798 0.2423942948771818 5.426348456631136 0.7851788401603699 5.902641979286039 -0.00409614498494193 5.902641979286039 0.7443798333406448 6.051485002905634 0.7851788401603699 5.902740625578002 0.7483669370412827 5.731898697963258 -0.00409614498494193 5.902740625578002 0.3006698490501311 5.929101459942056 0.2630781014933425 5.897206458866669 0.1089805479442876 5.965504217141602 0.7511228658279991 5.72913454369326 0.7195561280267626 5.704064808637644 0.003164871263548281 5.899922524039425 0.1248118584738087 1.029936007830623 0.157349922380298 1.131786871995296 0.8710852770113151 1.185262132547967 -0.185866128285687 1.168551250859002 -1.03203501974185 1.22652955858015 -0.1346011083247205 1.265517216529196 0.7189780480699066 6.077740979275789 0.004107471930473988 5.901868745460156 0.004107434556820421 6.102935850636226 -0.862861704234138 3.927370724705898 -0.2015707945288319 4.078433926945395 -0.1493850533623736 3.981598326028479 -0.8628045199244163 3.927639570001535 -1.043698269554101 4.014691222259664 -0.2015078816790155 4.078687252534298 0.7120398805439631 6.078949583813254 -0.004094617363084419 5.902158799714556 -0.004094581751470315 6.103226367629099 0.7787125549174547 2.585036605096612 0.6033385655026737 2.522650066138377 -0.1117223255655186 2.561895583422623 0.7474038480014797 5.729259531857909 0.7139709664477956 5.703452705248894 -0.005059084104673388 5.900101868103782 0.2627588158035044 5.897246571368882 0.07680789880434155 5.938520967984054 0.1086573100596666 5.96553881100149 0.7795095443725586 5.902461857342622 0.7520543038845062 5.731674322378174 0.00409614498494193 5.902461857342622 1.837982949551064 4.380493162626602 1.698151380191647 4.426663247286263 1.722261911843289 4.456418909610435 0.1247907685741417 1.030037050628625 0.8710661817052536 1.185357244751118 0.9672866956702858 1.093149008827759 0.6182835712551754 4.775255339961362 0.793800767381204 4.711713847427201 -0.05393935509880506 4.670308342735786 0.7515192965588562 6.048837954527257 0.004818832041163543 5.90006726269816 0.7196892646605601 6.075939857527496 0.8862475378018822 3.792571274053156 0.1746565630062018 3.851984305430153 0.9832304820207426 3.884087444153092 0.1746380817817648 3.851553385651503 0.1432486616462902 3.953791929426786 0.9832116155855102 3.883662527970578 -0.06534121213406159 2.63105822182879 0.7787179296387801 2.584739777075194 -0.1117168868593094 2.561597231824915 -0.004094653617984109 5.902158799714615 -0.7189652312805638 6.07802915258916 -0.004094618001953375 6.103226367629159 0.7149043705724325 5.705577453965008 -0.004125870608663351 5.683810639604747 -0.004125866857378252 5.902226193962813 0.7795095443725586 5.902325637871498 0.00409614498494193 5.902325637871498 0.7507967203855515 6.051095985290626 1.8422754717584 5.661531884254806 1.860065481229638 5.833109873402369 1.989092693654606 5.626995170813783 1.866608484664902 4.416370659075843 1.838140690497932 4.381252172648102 1.722410861650169 4.457169627042735 0.1017818923490949 4.635730454846145 0.1403692834330186 4.563151008605013 -0.7040384761248265 4.607730130874681 0.6182300880543712 4.774973129686113 -0.0539900413699956 4.670015046265992 -0.09994876018071668 4.739887083494891 1.733899547804191 5.531120571691932 1.709772779716068 5.562763359799611 1.878316678975313 5.570720590338454 1.878304677869654 5.570236401650518 1.709760849657511 5.562278239889182 1.849835545272472 5.607594591763997 0.1537407156268212 2.444674604463092 -0.5978653068071427 2.329634598343816 -0.6885274476433928 2.39449174630185 0.1537883138861346 2.444229771370457 0.1157277970935313 2.371708602168431 -0.5978147418473687 2.329177771002359 -0.00491720082529457 5.900077058146425 -0.7516176617662564 6.048844008260367 -0.7197876284078544 6.075947788539828 -0.004068778744300874 5.683810639521082 -0.7204602436909137 5.706367533632258 -0.004068782197838758 5.902226193879148 1.861658167768242 5.915239599347373 1.842927300380627 6.064991691688345 2.01170103070488 5.915433112871178 1.861850771719819 5.83510277999676 2.011893635504649 5.835295886105167 1.990956558256295 5.629018528131723 0.1719779002507082 5.824603213096284 0.1389888997947077 5.857181682759085 0.2822048289751989 5.867848448492063 -0.613562480917102 4.673788626475852 0.1017936545345657 4.636024285106233 -0.7040268847461585 4.608027003318812 1.839764149855081 6.066881609824319 1.986422966154651 6.101004404133319 2.008651870081057 5.917402684293361 0.2825884533466772 4.865079334453994 0.1672701472499133 4.901776309015174 0.2002177616702845 4.936782292242141 0.3100472870646619 4.89401534558154 0.2821395270143702 4.864357040165081 0.1997767932944579 4.936065654880399 -0.00409614498494193 5.90264147944936 -0.7795095443725586 5.90264147944936 -0.7507967203855515 6.051408074034807 -0.7194780291125233 5.70413058581879 -0.7510447657283905 5.729198913126174 -0.003086767938886549 5.899989699497139 0.557955278772954 5.834059593021777 0.4409585274078356 5.799210002360261 0.4147576104431627 6.005114826228685 0.2822718771330113 5.868125037355849 0.1390557649232501 5.857459792492024 0.2543176606559016 5.895720061609569 0.5411198927479399 5.741546306500214 0.4201305351659356 5.74135568632237 0.4473328967749751 5.924542618564806 0.5506819982486841 5.885009179554949 0.5275336326060752 5.735643569586635 0.4338826583204476 5.918682986264019 -0.00409614498494193 5.902740361620345 -0.7520543038845062 5.731950011883361 -0.7795095443725586 5.902740361620345 0.5626309017891711 5.835755551708061 0.4194700893104356 6.00682987497948 0.5404594473816824 6.00702030289107</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 0 6 2 7 8 8 9 8 3 7 5 6 1 9 10 10 2 11 3 11 11 10 4 9 12 12 1 13 6 14 7 14 4 13 13 12 6 15 0 16 14 17 15 17 5 16 7 15 16 18 17 19 18 20 19 20 20 19 21 18 14 21 0 22 8 23 9 23 5 22 15 21 16 24 22 25 23 26 24 26 25 25 21 24 12 27 10 28 1 29 4 29 11 28 13 27 26 30 12 31 6 32 7 32 13 31 27 30 6 33 14 34 28 35 29 35 15 34 7 33 17 36 30 37 18 38 19 38 31 37 20 36 16 39 23 40 17 41 20 41 24 40 21 39 14 42 8 43 32 44 33 44 9 43 15 42 22 45 34 46 23 47 24 47 35 46 25 45 36 48 10 49 12 50 13 50 11 49 37 48 38 51 26 52 6 53 7 53 27 52 39 51 36 54 12 55 40 56 41 56 13 55 37 54 6 57 28 58 42 59 43 59 29 58 7 57 28 60 14 61 32 62 33 62 15 61 29 60 17 63 44 64 30 65 31 65 45 64 20 63 18 66 30 67 46 68 47 68 31 67 19 66 23 69 44 70 17 71 20 71 45 70 24 69 23 72 34 73 44 74 45 74 35 73 24 72 22 75 48 76 34 77 35 77 49 76 25 75 50 78 38 79 6 80 7 80 39 79 51 78 52 81 40 82 38 83 39 83 41 82 53 81 52 84 36 85 40 86 41 86 37 85 53 84 54 87 6 88 42 89 43 89 7 88 55 87 28 90 56 91 57 92 58 92 59 91 29 90 28 93 32 94 56 95 59 95 33 94 29 93 30 96 44 97 60 98 61 98 45 97 31 96 46 99 30 100 60 101 61 101 31 100 47 99 34 102 62 103 44 104 45 104 63 103 35 102 48 105 62 106 34 107 35 107 63 106 49 105 64 108 50 109 6 110 7 110 51 109 65 108 66 111 38 112 50 113 51 113 39 112 67 111 52 114 38 115 66 116 67 116 39 115 53 114 62 117 48 118 52 119 53 119 49 118 63 117 68 120 6 121 54 122 55 122 7 121 69 120 54 123 57 124 70 125 71 125 58 124 55 123 57 126 56 127 70 128 71 128 59 127 58 126 56 129 46 130 60 131 61 131 47 130 59 129 44 132 72 133 60 134 61 134 73 133 45 132 62 135 74 136 44 137 45 137 75 136 63 135 64 138 6 139 68 140 69 140 7 139 65 138 50 141 64 142 76 143 77 143 65 142 51 141 76 144 66 145 50 146 51 146 67 145 77 144 74 147 52 148 66 149 67 149 53 148 75 147 62 150 52 151 74 152 75 152 53 151 63 150 68 153 54 154 78 155 79 155 55 154 69 153 78 156 54 157 70 158 71 158 55 157 79 156 56 159 72 160 70 161 71 161 73 160 59 159 56 162 60 163 72 164 73 164 61 163 59 162 44 165 80 166 72 167 73 167 81 166 45 165 74 168 82 169 44 170 45 170 83 169 75 168 64 171 68 172 84 173 85 173 69 172 65 171 64 174 84 175 76 176 77 176 85 175 65 174 66 177 86 178 82 179 83 179 87 178 67 177 82 180 74 181 66 182 67 182 75 181 83 180 68 183 78 184 84 185 85 185 79 184 69 183 80 186 88 187 70 188 71 188 89 187 81 186 72 189 80 190 70 191 71 191 81 190 73 189 44 192 90 193 80 194 81 194 91 193 45 192 82 195 92 196 44 197 45 197 93 196 83 195 92 198 86 199 94 200 95 200 87 199 93 198 82 201 86 202 92 203 93 203 87 202 83 201 90 204 94 205 88 206 89 206 95 205 91 204 80 207 90 208 88 209 89 209 91 208 81 207 44 210 92 211 90 212 91 212 93 211 45 210 92 213 94 214 90 215 91 215 95 214 93 213</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID30\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID31\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID37\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID42\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID40\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID41\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID40\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID44\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"114\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID44\">0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6998841166496277 0.270549088716507 0.3540823757648468 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6998841166496277 0.270549088716507 0.3540823757648468 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID41\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID45\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"114\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID45\">0.9884127945771787 0 -0.1517898136112303 0.9969899233375046 0 -0.07753123734003652 0.9884127945771787 0 -0.1517898136112303 -0.9884127945771787 -0 0.1517898136112303 -0.9969899233375046 -0 0.07753123734003652 -0.9884127945771787 -0 0.1517898136112303 0.9884127945771787 0 -0.1517898136112303 0.9983209373992593 0 -0.05792500280762848 -0.9983209373992593 -0 0.05792500280762848 -0.9884127945771787 -0 0.1517898136112303 0.9993509731965242 7.18492665555945e-019 0.03602266468710872 -0.9993509731965242 -7.18492665555945e-019 -0.03602266468710872 0.9990304983920447 0.0002615411009320761 0.04402266324060325 -0.9990304983920447 -0.0002615411009320761 -0.04402266324060325 0.9888373930540065 0.000243802279811211 0.1489984921353378 -0.9888373930540065 -0.000243802279811211 -0.1489984921353378 0.9861057339238535 0.0001949415399641176 0.1661187632999196 -0.9861057339238535 -0.0001949415399641176 -0.1661187632999196 0.9624191563697438 0.0002416039797533959 0.2715682401903204 -0.9624191563697438 -0.0002416039797533959 -0.2715682401903204 0.9573306222604454 0 0.2889949475032887 -0.9573306222604454 -0 -0.2889949475032887 0.8839944246690079 -2.34346267069095e-018 0.4674974407995293 -0.8839944246690079 2.34346267069095e-018 -0.4674974407995293 0.9134632872758963 0.008433748235240745 0.4068337433028604 -0.9134632872758963 -0.008433748235240745 -0.4068337433028604 0.7766929828863236 0.0006653471482944537 0.6298790103252504 -0.7766929828863236 -0.0006653471482944537 -0.6298790103252504 0.8876641481112757 0.01683615633685049 0.4601835546797433 -0.8876641481112757 -0.01683615633685049 -0.4601835546797433 4.474170745649866e-005 -0.002559499189329098 0.9999967234756721 0.0001348128492229062 -0.002562698209801924 0.9999967071962693 4.239615786161625e-005 -0.002559415883111041 0.9999967237910848 -4.239615786161625e-005 0.002559415883111041 -0.9999967237910848 -0.0001348128492229062 0.002562698209801924 -0.9999967071962693 -4.474170745649866e-005 0.002559499189329098 -0.9999967234756721 0.0001382935307154935 -0.002562821831347933 0.9999967064041562 -0.0001382935307154935 0.002562821831347933 -0.9999967064041562</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID43\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"38\" source=\"#ID46\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"76\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID46\">3.217366635799408 -1.014987970353258 3.174309134483337 0.02936904625421927 -4.606521725654602 -1.014987970353258 3.174309134483337 0.02936904625421971 -5.109987258911133 0.02936904625421971 -4.606521725654602 -1.014987970353258 3.174309134483337 -0.9347596834103267 3.138594627380371 0.1405233934521675 -5.109987258911133 -0.9347596834103267 -5.681315660476685 0.1405233934521675 3.138594627380371 -0.3197488620574284 3.102889358997345 0.73392555109761 -5.681315660476685 -0.3197488620574284 3.099300357882584 0.7525232592401354 -6.220526077713789 0.7525232592401354 -5.684948389092591 -0.3009255327867159 3.119290230740525 0.4236586082511997 -6.220526077713787 -0.2306158695550169 3.099300357882584 -0.2306158695550167 3.122794330120087 0.3925020501514792 -6.405144929885864 0.3925020501514792 -6.216936111450195 -0.2625305373007132 3.122794330120087 -0.3032706499672477 2.803181707859039 0.2349233739714925 -6.405144929885864 -0.3032706499672477 -6.521115899085999 0.2349233739714925 2.803181707859039 -1.936911851088256 2.70549088716507 -1.354481735846471 -6.521115899085999 -1.936911851088256 2.572282569008688 -0.07878836915218171 -6.647628083256216 -0.09970009621027236 -6.661598736798799 -0.5848708598991235 7.077063234366902 -5.209014241747745 7.042690862107612 2.043961881576643 6.562209069469692 -5.209197418525998 7.134453694649073 1.835703753249987 6.782620276737968 1.835703753249987 6.310054666937787 -5.398285491289607</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"14\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 6 7 1 7 10 1 7 12 10 12 14 10 12 16 14 14 16 18 16 20 18 20 22 18 20 24 22 24 26 22 24 28 26 30 31 32 30 36 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID42\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"14\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 0 4 1 5 2 4 3 8 4 9 5 4 6 11 7 8 8 11 7 13 9 8 8 11 10 15 11 13 12 15 13 17 14 13 15 19 16 17 17 15 18 19 19 21 20 17 21 19 22 23 23 21 24 23 23 25 25 21 24 23 26 27 27 25 28 27 29 29 30 25 31 33 32 34 33 35 34 34 35 37 36 35 37</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID42\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID43\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID47\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID52\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID50\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID51\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID50\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID54\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID54\">0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6671133041381836 -0.6521289944648743 0.3517222404479981</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID51\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID55\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID55\">-0.9969900277453814 9.626555252388103e-019 0.0775298947262491 -0.9884131832184093 1.906393035707814e-018 0.1517872828666863 -0.9884131832184093 1.906393035707814e-018 0.1517872828666863 0.9884131832184093 -1.906393035707814e-018 -0.1517872828666863 0.9884131832184093 -1.906393035707814e-018 -0.1517872828666863 0.9969900277453814 -9.626555252388103e-019 -0.0775298947262491 -0.9983209916237562 6.4888899971745e-019 0.05792406825629513 -0.9884131832184093 1.700382951580574e-018 0.1517872828666863 0.9884131832184093 -1.700382951580574e-018 -0.1517872828666863 0.9983209916237562 -6.4888899971745e-019 -0.05792406825629513 -0.9993510188497022 0 -0.03602139814140998 0.9993510188497022 -0 0.03602139814140998 -0.9990305921481414 -0.0002616147124452107 -0.04402053509302527 0.9990305921481414 0.0002616147124452107 0.04402053509302527 -0.9943779220620549 -0.0002469081820434832 -0.1058890322549958 0.9943779220620549 0.0002469081820434832 0.1058890322549958 -0.9934290682451136 -0.0001942857728718545 -0.1144493277336469 0.9934290682451136 0.0001942857728718545 0.1144493277336469 -0.9959830180574033 -0.0002479755067153577 -0.0895419803746499 0.9959830180574033 0.0002479755067153577 0.0895419803746499 -0.9972497351322402 -9.175001186096695e-020 -0.07411454498731458 0.9972497351322402 9.175001186096695e-020 0.07411454498731458 -0.9997397171438488 2.749353240624562e-019 0.02281442449717623 0.9997397171438488 -2.749353240624562e-019 -0.02281442449717623 -0.9982766421434597 -0.001456496946020338 0.05866535917749741 0.9982766421434597 0.001456496946020338 -0.05866535917749741 -0.9962136581104646 -9.87810436129017e-005 0.08693870045308721 0.9962136581104646 9.87810436129017e-005 -0.08693870045308721 -0.9913228737516919 -0.002879171972723066 0.1314179224666044 0.9913228737516919 0.002879171972723066 -0.1314179224666044</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID53\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"30\" source=\"#ID56\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"60\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID56\">-3.201837241649628 -1.153543505140703 4.622048735618591 -1.153543505140703 -3.158780634403229 -0.1091876107511638 5.125510692596436 -0.1091876107511638 -3.158780634403229 -0.9347603867451351 5.125510692596436 -0.9347603867451351 -3.123067617416382 0.1405233934521675 5.696841478347778 0.1405233934521675 -3.123067617416382 -0.2528983824522879 5.696841478347778 -0.2528983824522879 -3.087365627288818 0.8007758246933258 -3.084303793502754 0.8166679514527762 5.699947050034061 -0.2367805808048564 6.235524132752182 0.8166679514527762 -3.104264639119321 1.089387370119314 -3.084303793502755 0.4455548184328019 6.235524132752184 0.4455548184328018 -3.107274770736694 1.061742395136762 6.232461333274841 0.417437203216338 6.420673131942749 1.061742395136762 -3.107274770736694 1.723373104067945 6.420673131942749 1.723373104067945 -2.787659466266632 2.230640169182266 6.53664231300354 2.230640169182266 -2.787659466266632 2.770680346987941 6.53664231300354 2.770680346987941 -2.686533033847809 3.221638161564211 -2.667214906130042 3.449328196154371 6.555779429903087 2.996085165249665 6.540637820919023 3.430599364195978</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 6 7 0 10 6 0 12 6 10 14 12 10 16 12 14 16 14 18 20 16 18 22 20 18 24 20 22 26 24 22 28 24 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID52\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 0 4 1 5 2 5 2 8 1 9 3 5 4 9 5 11 6 11 6 9 5 13 7 11 8 13 9 15 10 15 11 13 12 17 13 19 14 15 15 17 16 19 17 17 18 21 19 19 20 21 21 23 22 23 22 21 21 25 23 23 24 25 25 27 26 27 27 25 28 29 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID52\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID53\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID57\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID60\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID58\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID59\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID58\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID62\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"198\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID62\">0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7885450124740601 0.3102889358997345 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID59\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID63\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"198\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID63\">0.01757355631798894 -0.996658244590752 -0.07977163410397985 0.01700902801069171 -0.9995231595339412 0.02577104036353611 0.01751695589509933 -0.9995282799576263 0.02522645082286458 -0.01751695589509933 0.9995282799576263 -0.02522645082286458 -0.01700902801069171 0.9995231595339412 -0.02577104036353611 -0.01757355631798894 0.996658244590752 0.07977163410397985 0.01625839579783936 -0.9946609971594649 -0.1019076311952124 -0.01625839579783936 0.9946609971594649 0.1019076311952124 0.01508160133426316 -0.9800364416240054 -0.1982450967619426 -0.01508160133426316 0.9800364416240054 0.1982450967619426 0.01366831664102421 -0.9791246266498208 -0.2028007460737008 -0.01366831664102421 0.9791246266498208 0.2028007460737008 0.01306527961609271 -0.9558446256026917 -0.2935819309409272 -0.01306527961609271 0.9558446256026917 0.2935819309409272 0.01273971076296427 -0.9520607276259343 -0.3056436989078172 -0.01273971076296427 0.9520607276259343 0.3056436989078172 0.01238562344223381 -0.9255817632390216 -0.3783450751513635 -0.01238562344223381 0.9255817632390216 0.3783450751513635 0.01238350552953238 -0.9254423735519356 -0.3786859675580281 -0.01238350552953238 0.9254423735519356 0.3786859675580281 0.01241741070313897 -0.9280470570654398 -0.3722559170565407 -0.01241741070313897 0.9280470570654398 0.3722559170565407 0.01241179030027248 -0.92760980977564 -0.3733443293657248 -0.01241179030027248 0.92760980977564 0.3733443293657248 0.01248377637649902 -0.932921716390152 -0.359862788316651 -0.01248377637649902 0.932921716390152 0.359862788316651 0.0124849284269848 -0.9329212995850048 -0.3598638288892045 -0.0124849284269848 0.9329212995850048 0.3598638288892045 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0 0 -1 -0 -0 1 -0.01337534588875929 0.999303232382507 0.03484465342387041 -0.01337534588875929 0.999303232382507 0.03484465342387041 -0.0133767273996353 0.9994525532114903 0.03025982556309336 0.0133767273996353 -0.9994525532114903 -0.03025982556309336 0.01337534588875929 -0.999303232382507 -0.03484465342387041 0.01337534588875929 -0.999303232382507 -0.03484465342387041 -0.01337610627739966 0.9994397139226007 0.03068123229542974 -0.01337456197828937 0.9993032712123542 0.03484384072081131 0.01337456197828937 -0.9993032712123542 -0.03484384072081131 0.01337610627739966 -0.9994397139226007 -0.03068123229542974 -0.01337717699255372 0.9995742348990625 0.02593067800238563 0.01337717699255372 -0.9995742348990625 -0.02593067800238563 -0.01337623645414197 0.9995744997605131 0.02592095150342658 0.01337623645414197 -0.9995744997605131 -0.02592095150342658 -0.01337926781303881 0.9999090010156541 0.001727680718123866 0.01337926781303881 -0.9999090010156541 -0.001727680718123866 -0.01366164874581822 0.9999038562712569 -0.002374356210722729 0.01366164874581822 -0.9999038562712569 0.002374356210722729 -0.01373271164826091 0.985340622057855 0.1700449092252551 0.01373271164826091 -0.985340622057855 -0.1700449092252551 -0.01486615069782372 0.9737391817984691 0.2271805524112425 0.01486615069782372 -0.9737391817984691 -0.2271805524112425 -0.0152885886490525 0.9353144770558194 0.353487040875503 0.0152885886490525 -0.9353144770558194 -0.353487040875503 -0.02312573667733494 0.9506753367844222 0.3093244321629897 0.02312573667733494 -0.9506753367844222 -0.3093244321629897 -0.03283908092088732 0.9857753155064591 0.1648290693488631 0.03283908092088732 -0.9857753155064591 -0.1648290693488631 -0.05301767165236267 0.9825105025154766 0.1784999690177787 0.05301767165236267 -0.9825105025154766 -0.1784999690177787</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID61\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"76\" source=\"#ID64\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"152\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID64\">6.486414740553204 2.200584320257102 6.559209671773116 2.63147311179554 7.074063889325645 2.631473580841196 7.352576081397806 2.205026862540071 6.48108520835931 2.205026862540071 7.068745480385288 2.635906735090988 7.352576081397806 3.224042151981169 6.496194904353771 2.708773932450279 6.48108520835931 3.224042151981169 7.606635830927045 2.684044270212909 6.519269471646906 2.684044270212909 7.376054453682446 3.198896900317751 7.606635830927044 2.931616529341707 6.639766324665787 2.27734928889875 6.519269471646906 2.931616529341706 7.805803415294651 2.271617827094184 6.645463546737465 2.271617827094184 7.612500660756662 2.925731755297332 7.805803415294649 2.953149377663582 6.746457275010557 1.821357505336036 6.645463546737464 2.953149377663581 7.906799264988455 1.821359718478698 6.746454620511368 1.821359718478698 7.8058005157308 2.953151732755598 7.906799264988455 1.885349226639128 6.754099226591073 0.7199301840054732 6.746454620511367 1.885349226639128 7.914452876516921 0.7199222391663144 6.754108263938685 0.7199214768751236 7.906809292079772 1.885339913695565 6.559353637864163 -0.5018143597871121 6.754108393519553 0.6045616013489867 7.914453006097798 0.6045623551865789 7.719681411874956 -0.5017985319122876 6.559340327405119 -0.5017985319122876 7.914438265428908 0.6045792671104565 -6.621782779693604 2.518778630097707 -6.621782779693604 -3.636011672019959 -7.782019972801209 -3.623797090848287 -7.782019972801209 2.530995086828868 -6.664041417716023 -2.051149898773439 -7.824382534092096 -2.051149898773439 -8.025300206329026 -1.018266833586361 -6.864953118724609 -1.018265775553878 -6.664038974574384 -2.051148107694036 -8.025297799093693 -1.018265071791724 -6.864953098071562 -0.997458293041149 -8.025297778440647 -0.9974575894663439 -8.024819822562574 0.07819240295993857 -6.864471208429597 0.07819482848281474 -6.864949097792568 -0.9974558364394162 -8.024815868857917 0.07819482848281474 -6.864471208429595 0.07910333492510922 -8.024815868857916 0.07910333492510922 -7.926265037739377 1.130297099530577 -6.765915653925095 1.130301932393614 -6.864462769493923 0.07910822762635848 -7.926256694531853 1.130301932393614 -6.765915653925095 1.256046983758888 -7.926256694531853 1.256046983758888 -7.73997953774591 1.893894132554812 -6.655309974446317 1.891253165835361 -6.768592688689693 1.253424576120478 -7.742676210338567 1.891253165835361 -6.655309974446317 0.5981015604815404 -7.742676210338567 0.5981015604815404 -7.509189229834411 1.163019357512824 -6.647193467686876 1.16124259311054 -6.665929778665064 0.5952743692480706 -7.518684266401535 1.16124259311054 -6.647193467686875 1.98374502410431 -7.518684266401534 1.98374502410431 -7.045918801752059 2.438513755918931 -6.782620276737963 2.414315454238441 -6.739210310102997 1.957669605233432 -7.134453694649066 2.414315454238441</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"52\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 6 6 8 7 0 8 5 8 9 7 7 6 10 9 8 10 6 11 7 11 9 10 11 9 10 12 12 13 8 14 9 14 13 13 11 12 14 15 12 16 10 17 11 17 13 16 15 15 14 18 16 19 12 20 13 20 17 19 15 18 18 21 16 22 14 23 15 23 17 22 19 21 18 24 20 25 16 26 17 26 21 25 19 24 22 27 20 28 18 29 19 29 21 28 23 27 24 30 20 31 22 32 23 32 21 31 25 30 26 33 24 34 22 35 23 35 25 34 27 33 28 36 29 37 30 38 31 38 32 37 33 36 34 39 28 36 30 38 31 38 33 36 35 39 36 40 37 41 38 42 39 42 40 41 41 40 42 43 43 44 38 45 39 45 44 44 45 43 42 46 38 47 46 48 47 48 39 47 45 46 48 49 42 50 46 51 47 51 45 50 49 49 48 52 46 53 50 54 51 54 47 53 49 52 52 55 48 56 50 57 51 57 49 56 53 55 52 58 50 59 54 60 55 60 51 59 53 58 56 61 52 62 54 63 55 63 53 62 57 61 56 64 54 65 58 66 59 66 55 65 57 64 60 67 56 68 58 69 59 69 57 68 61 67 60 70 58 71 62 72 63 72 59 71 61 70 64 73 60 74 62 75 63 75 61 74 65 73</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID60\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID61\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID65\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID68\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID66\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID67\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID66\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"264\" source=\"#ID70\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"792\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID70\">0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.645243763923645 -0.5195940136909485 0.2845224440097809 0.645243763923645 -0.5195940136909485 0.2845224440097809 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607192754745483 -0.5262042284011841 0.2845224440097809 0.6607192754745483 -0.5262042284011841 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6454480886459351 -0.5189134478569031 0.2888893783092499 0.6454480886459351 -0.5189134478569031 0.2888893783092499 0.6454480886459351 -0.5189134478569031 0.2801555991172791 0.6454480886459351 -0.5189134478569031 0.2801555991172791 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6320086717605591 -0.4944190382957459 0.2845224440097809 0.6320086717605591 -0.4944190382957459 0.2845224440097809 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6325429677963257 -0.4940980672836304 0.2801555991172791 0.6325429677963257 -0.4940980672836304 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6325429677963257 -0.4940980672836304 0.2888893783092499 0.6325429677963257 -0.4940980672836304 0.2888893783092499 0.6460316181182861 -0.516976535320282 0.2925914824008942 0.6460316181182861 -0.516976535320282 0.2925914824008942 0.6340638399124146 -0.4931805729866028 0.2764533758163452 0.6340638399124146 -0.4931805729866028 0.2764533758163452 0.6460316181182861 -0.516976535320282 0.2764533758163452 0.6460316181182861 -0.516976535320282 0.2764533758163452 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6284593343734741 -0.4669303297996521 0.2845224440097809 0.6284593343734741 -0.4669303297996521 0.2845224440097809 0.6290544867515564 -0.4669303297996521 0.2801555991172791 0.6290544867515564 -0.4669303297996521 0.2801555991172791 0.6307517290115356 -0.4669303297996521 0.2764533758163452 0.6307517290115356 -0.4669303297996521 0.2764533758163452 0.6607219576835632 -0.5225614309310913 0.2950650453567505 0.6607219576835632 -0.5225614309310913 0.2950650453567505 0.6469043493270874 -0.5140765309333801 0.2950650453567505 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6469043493270874 -0.5140765309333801 0.2950650453567505 0.6469043493270874 -0.5140765309333801 0.2739797532558441 0.6469043493270874 -0.5140765309333801 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6290544867515564 -0.4669303297996521 0.2888893783092499 0.6290544867515564 -0.4669303297996521 0.2888893783092499 0.6340638399124146 -0.4931805729866028 0.2925914824008942 0.6340638399124146 -0.4931805729866028 0.2925914824008942 0.6332915425300598 -0.4669303297996521 0.2739797532558441 0.6332915425300598 -0.4669303297996521 0.2739797532558441 0.6363397836685181 -0.4918103218078613 0.2739797532558441 0.6363397836685181 -0.4918103218078613 0.2739797532558441 0.6607241034507752 -0.5194733142852783 0.2925914824008942 0.6607241034507752 -0.5194733142852783 0.2925914824008942 0.6479336619377136 -0.5106549263000488 0.2959337532520294 0.6479336619377136 -0.5106549263000488 0.2959337532520294 0.6479336619377136 -0.5106549263000488 0.2731113433837891 0.6479336619377136 -0.5106549263000488 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607219576835632 -0.5225614309310913 0.2739797532558441 0.6607219576835632 -0.5225614309310913 0.2739797532558441 0.630005955696106 -0.438325822353363 0.2845224440097809 0.630005955696106 -0.438325822353363 0.2845224440097809 0.6305613517761231 -0.4385876655578613 0.2801555991172791 0.6305613517761231 -0.4385876655578613 0.2801555991172791 0.6321433782577515 -0.439333975315094 0.2764533758163452 0.6321433782577515 -0.439333975315094 0.2764533758163452 0.6345111727714539 -0.44045090675354 0.2739797532558441 0.6345111727714539 -0.44045090675354 0.2739797532558441 0.6607251763343811 -0.5174095630645752 0.2888893783092499 0.6607251763343811 -0.5174095630645752 0.2888893783092499 0.6489629149436951 -0.5072347521781921 0.2950650453567505 0.6489629149436951 -0.5072347521781921 0.2950650453567505 0.6363397836685181 -0.4918103218078613 0.2950650453567505 0.6363397836685181 -0.4918103218078613 0.2950650453567505 0.6390239000320435 -0.4901936650276184 0.2731113433837891 0.6390239000320435 -0.4901936650276184 0.2731113433837891 0.6489629149436951 -0.5072347521781921 0.2739797532558441 0.6489629149436951 -0.5072347521781921 0.2739797532558441 0.6607241034507752 -0.5194733142852783 0.2764533758163452 0.6607241034507752 -0.5194733142852783 0.2764533758163452 0.6305613517761231 -0.4385876655578613 0.2888893783092499 0.6305613517761231 -0.4385876655578613 0.2888893783092499 0.6307517290115356 -0.4669303297996521 0.2925914824008942 0.6307517290115356 -0.4669303297996521 0.2925914824008942 0.637304425239563 -0.4417674541473389 0.2731113433837891 0.637304425239563 -0.4417674541473389 0.2731113433837891 0.6362877488136292 -0.4669303297996521 0.2731113433837891 0.6362877488136292 -0.4669303297996521 0.2731113433837891 0.6607257723808289 -0.5166845917701721 0.2845224440097809 0.6607257723808289 -0.5166845917701721 0.2845224440097809 0.6498355865478516 -0.5043348670005798 0.2925914824008942 0.6498355865478516 -0.5043348670005798 0.2925914824008942 0.6390239000320435 -0.4901936650276184 0.2959337532520294 0.6390239000320435 -0.4901936650276184 0.2959337532520294 0.6417081952095032 -0.4885762333869934 0.2739797532558441 0.6417081952095032 -0.4885762333869934 0.2739797532558441 0.6498355865478516 -0.5043348670005798 0.2764533758163452 0.6498355865478516 -0.5043348670005798 0.2764533758163452 0.6607251763343811 -0.5174095630645752 0.2801555991172791 0.6607251763343811 -0.5174095630645752 0.2801555991172791 0.6454863548278809 -0.4090263247489929 0.2845224440097809 0.6454863548278809 -0.4090263247489929 0.2845224440097809 0.645751953125 -0.4096751809120178 0.2801555991172791 0.645751953125 -0.4096751809120178 0.2801555991172791 0.646506130695343 -0.4115235209465027 0.2764533758163452 0.646506130695343 -0.4115235209465027 0.2764533758163452 0.6476355791091919 -0.4142892956733704 0.2739797532558441 0.6476355791091919 -0.4142892956733704 0.2739797532558441 0.6489681005477905 -0.4175517559051514 0.2731113433837891 0.6489681005477905 -0.4175517559051514 0.2731113433837891 0.6504192352294922 -0.5023968815803528 0.2888893783092499 0.6504192352294922 -0.5023968815803528 0.2888893783092499 0.6417081952095032 -0.4885762333869934 0.2950650453567505 0.6417081952095032 -0.4885762333869934 0.2950650453567505 0.6332915425300598 -0.4669303297996521 0.2950650453567505 0.6332915425300598 -0.4669303297996521 0.2950650453567505 0.6392834782600403 -0.4669303297996521 0.2739797532558441 0.6392834782600403 -0.4669303297996521 0.2739797532558441 0.6439837217330933 -0.4872047901153565 0.2764533758163452 0.6439837217330933 -0.4872047901153565 0.2764533758163452 0.6504192352294922 -0.5023968815803528 0.2801555991172791 0.6504192352294922 -0.5023968815803528 0.2801555991172791 0.645751953125 -0.4096751809120178 0.2888893783092499 0.645751953125 -0.4096751809120178 0.2888893783092499 0.6321433782577515 -0.439333975315094 0.2925914824008942 0.6321433782577515 -0.439333975315094 0.2925914824008942 0.6502998471260071 -0.4208146929740906 0.2739797532558441 0.6502998471260071 -0.4208146929740906 0.2739797532558441 0.6400973200798035 -0.4430851340293884 0.2739797532558441 0.6400973200798035 -0.4430851340293884 0.2739797532558441 0.6506238579750061 -0.5017167925834656 0.2845224440097809 0.6506238579750061 -0.5017167925834656 0.2845224440097809 0.6439837217330933 -0.4872047901153565 0.2925914824008942 0.6439837217330933 -0.4872047901153565 0.2925914824008942 0.6362877488136292 -0.4669303297996521 0.2959337532520294 0.6362877488136292 -0.4669303297996521 0.2959337532520294 0.6418229341506958 -0.4669303297996521 0.2764533758163452 0.6418229341506958 -0.4669303297996521 0.2764533758163452 0.6455046534538269 -0.4862898588180542 0.2801555991172791 0.6455046534538269 -0.4862898588180542 0.2801555991172791 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602405309677124 -0.4085699319839478 0.2739797532558441 0.6602405309677124 -0.4085699319839478 0.2739797532558441 0.6455046534538269 -0.4862898588180542 0.2888893783092499 0.6455046534538269 -0.4862898588180542 0.2888893783092499 0.6392834782600403 -0.4669303297996521 0.2950650453567505 0.6392834782600403 -0.4669303297996521 0.2950650453567505 0.6345111727714539 -0.44045090675354 0.2950650453567505 0.6345111727714539 -0.44045090675354 0.2950650453567505 0.6424651741981506 -0.444201648235321 0.2764533758163452 0.6424651741981506 -0.444201648235321 0.2764533758163452 0.6435200572013855 -0.4669303297996521 0.2801555991172791 0.6435200572013855 -0.4669303297996521 0.2801555991172791 0.6460384726524353 -0.4859673380851746 0.2845224440097809 0.6460384726524353 -0.4859673380851746 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.646506130695343 -0.4115235209465027 0.2925914824008942 0.646506130695343 -0.4115235209465027 0.2925914824008942 0.66024249792099 -0.4116581082344055 0.2764533758163452 0.66024249792099 -0.4116581082344055 0.2764533758163452 0.6514291167259216 -0.4235804677009583 0.2764533758163452 0.6514291167259216 -0.4235804677009583 0.2764533758163452 0.6418229341506958 -0.4669303297996521 0.2925914824008942 0.6418229341506958 -0.4669303297996521 0.2925914824008942 0.637304425239563 -0.4417674541473389 0.2959337532520294 0.637304425239563 -0.4417674541473389 0.2959337532520294 0.644047737121582 -0.4449477791786194 0.2801555991172791 0.644047737121582 -0.4449477791786194 0.2801555991172791 0.6441159844398499 -0.4669303297996521 0.2845224440097809 0.6441159844398499 -0.4669303297996521 0.2845224440097809 0.6602380871772766 -0.404927670955658 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602380871772766 -0.404927670955658 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6435200572013855 -0.4669303297996521 0.2888893783092499 0.6435200572013855 -0.4669303297996521 0.2888893783092499 0.6400973200798035 -0.4430851340293884 0.2950650453567505 0.6400973200798035 -0.4430851340293884 0.2950650453567505 0.6476355791091919 -0.4142892956733704 0.2950650453567505 0.6476355791091919 -0.4142892956733704 0.2950650453567505 0.6521837711334229 -0.4254279732704163 0.2801555991172791 0.6521837711334229 -0.4254279732704163 0.2801555991172791 0.6446030139923096 -0.4452097415924072 0.2845224440097809 0.6446030139923096 -0.4452097415924072 0.2845224440097809 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602438688278198 -0.4137213826179504 0.2801555991172791 0.6602438688278198 -0.4137213826179504 0.2801555991172791 0.6424651741981506 -0.444201648235321 0.2925914824008942 0.6424651741981506 -0.444201648235321 0.2925914824008942 0.6489681005477905 -0.4175517559051514 0.2959337532520294 0.6489681005477905 -0.4175517559051514 0.2959337532520294 0.6524484753608704 -0.4260773062705994 0.2845224440097809 0.6524484753608704 -0.4260773062705994 0.2845224440097809 0.644047737121582 -0.4449477791786194 0.2888893783092499 0.644047737121582 -0.4449477791786194 0.2888893783092499 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602442264556885 -0.4144457578659058 0.2845224440097809 0.6602442264556885 -0.4144457578659058 0.2845224440097809 0.6502998471260071 -0.4208146929740906 0.2950650453567505 0.6502998471260071 -0.4208146929740906 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6521837711334229 -0.4254279732704163 0.2888893783092499 0.6521837711334229 -0.4254279732704163 0.2888893783092499 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602438688278198 -0.4137213826179504 0.2888893783092499 0.6602438688278198 -0.4137213826179504 0.2888893783092499 0.6514291167259216 -0.4235804677009583 0.2925914824008942 0.6514291167259216 -0.4235804677009583 0.2925914824008942 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602405309677124 -0.4085699319839478 0.2950650453567505 0.6602405309677124 -0.4085699319839478 0.2950650453567505 0.66024249792099 -0.4116581082344055 0.2925914824008942 0.66024249792099 -0.4116581082344055 0.2925914824008942</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID67\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"264\" source=\"#ID71\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"792\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID71\">-0.705751612624297 -0.6736031467969834 0.2194845368207189 -0.723249639387585 -0.6905851167376961 -0.001468218686374701 -0.8075908669576146 -0.5897411418470161 -0.001541823474401379 0.8075908669576146 0.5897411418470161 0.001541823474401379 0.723249639387585 0.6905851167376961 0.001468218686374701 0.705751612624297 0.6736031467969834 -0.2194845368207189 0.9999998549764383 -0.0005385602124681323 1.798811497296893e-010 0.9999998619819208 -0.0005253479946148091 6.754579145190894e-006 0.999999813854024 -0.0006101572892038408 -2.340183956586328e-011 -0.999999813854024 0.0006101572892038408 2.340183956586328e-011 -0.9999998619819208 0.0005253479946148091 -6.754579145190894e-006 -0.9999998549764383 0.0005385602124681323 -1.798811497296893e-010 -0.7832090569802331 -0.563885812854759 0.2619472525629185 0.7832090569802331 0.563885812854759 -0.2619472525629185 -0.7817598749353603 -0.5645085171358366 -0.26491816098967 0.7817598749353603 0.5645085171358366 0.26491816098967 0.9999998411775229 -0.0005634720393395381 -1.200790474749005e-005 -0.9999998411775229 0.0005634720393395381 1.200790474749005e-005 0.9999998619817377 -0.0005253483505001034 -6.754000790909341e-006 -0.9999998619817377 0.0005253483505001034 6.754000790909341e-006 -0.9527376244220858 -0.303793227155968 -0.0008331534811120218 0.9527376244220858 0.303793227155968 0.0008331534811120218 -0.6459756364898233 -0.6063525859232831 0.4637370144874305 0.6459756364898233 0.6063525859232831 -0.4637370144874305 -0.9154121483802826 -0.2904213362317121 -0.2787042268412563 0.9154121483802826 0.2904213362317121 0.2787042268412563 -0.7111187578705497 -0.6677746268057927 -0.2199708162439523 0.7111187578705497 0.6677746268057927 0.2199708162439523 0.9999998580605745 -0.0005324296017061601 -1.993866258511989e-005 -0.9999998580605745 0.0005324296017061601 1.993866258511989e-005 0.9999998411772466 -0.0005634725222285433 1.200826317338047e-005 -0.9999998411772466 0.0005634725222285433 -1.200826317338047e-005 -0.9168306842379277 -0.2874967770350575 0.277068763367991 0.9168306842379277 0.2874967770350575 -0.277068763367991 -0.6899817838723537 -0.4765390401152086 0.544826285315237 0.6899817838723537 0.4765390401152086 -0.544826285315237 -0.7842961867475975 -0.2413048357223482 -0.5715343101776026 0.7842961867475975 0.2413048357223482 0.5715343101776026 -0.6884771646026739 -0.4767686045504761 -0.5465262038874754 0.6884771646026739 0.4767686045504761 0.5465262038874754 0.9999998166802554 -0.0006055076015476713 5.482529811520003e-021 -0.9999998166802554 0.0006055076015476713 -5.482529811520003e-021 -0.4938391524225622 -0.4499982720094807 0.7440594376278327 0.4938391524225622 0.4499982720094807 -0.7440594376278327 -0.6578123227561983 -0.5980467967039984 -0.4578460188558833 0.6578123227561983 0.5980467967039984 0.4578460188558833 0.9999998580600193 -0.0005324306374811512 1.993885123911218e-005 -0.9999998580600193 0.0005324306374811512 -1.993885123911218e-005 -0.9993172590390673 -0.03694610674034449 3.135883035788179e-005 0.9993172590390673 0.03694610674034449 -3.135883035788179e-005 -0.960465965536488 -0.03630975369366535 -0.2760194392298613 0.960465965536488 0.03630975369366535 0.2760194392298613 -0.8205875269300812 -0.03194355955907711 -0.5706274788769542 0.8205875269300812 0.03194355955907711 0.5706274788769542 0.7939095379223065 0.1969112463909028 0.5752682910093089 -0.7939095379223065 -0.1969112463909028 -0.5752682910093089 -0.4651506096546429 -0.2948383542682578 0.8346887175410359 -0.1387519338525277 -0.1243833632592113 0.9824849514351408 0.1387519338525277 0.1243833632592113 -0.9824849514351408 0.4651506096546429 0.2948383542682578 -0.8346887175410359 -0.4688103618416526 -0.2943564121356371 -0.8328091901897661 0.4688103618416526 0.2943564121356371 0.8328091901897661 -0.5129314289867056 -0.4461939983816099 -0.7333568469482561 0.5129314289867056 0.4461939983816099 0.7333568469482561 0.9999998166802563 -0.0006055075999022886 -1.096546068823298e-020 -0.9999998166802563 0.0006055075999022886 1.096546068823298e-020 -0.9604972668016695 -0.03495668559621632 0.276085187213385 0.9604972668016695 0.03495668559621632 -0.276085187213385 -0.7866645316355505 -0.2363439708880585 0.570351156824885 0.7866645316355505 0.2363439708880585 -0.570351156824885 -0.5130348197170416 -0.02081339521567967 -0.8581154213376535 0.5130348197170416 0.02081339521567967 0.8581154213376535 -0.4995435721539706 -0.1430177528752383 -0.8544016279725641 0.4995435721539706 0.1430177528752383 0.8544016279725641 0.9000285742012102 0.3063376208368318 0.3100093993435784 -0.9000285742012102 -0.3063376208368318 -0.3100093993435784 -0.03636807467283153 -0.006606222029889989 0.999316626988205 0.03636807467283153 0.006606222029889989 -0.999316626988205 -0.04812466771604267 -0.007954144418886417 -0.9988096655238093 0.04812466771604267 0.007954144418886417 0.9988096655238093 -0.1526086015993849 -0.1285731755270082 -0.9798875207148938 0.1526086015993849 0.1285731755270082 0.9798875207148938 0.7996254711754621 0.1929644709936232 -0.5686508760052793 -0.7996254711754621 -0.1929644709936232 0.5686508760052793 -0.9631114801070717 0.2691022468341752 0.0005075773480541925 0.9631114801070717 -0.2691022468341752 -0.0005075773480541925 -0.9262260303536134 0.2559807553453563 -0.2767294591983437 0.9262260303536134 -0.2559807553453563 0.2767294591983437 -0.7941112433644082 0.2126601577859673 -0.5693531333475573 0.7941112433644082 -0.2126601577859673 0.5693531333475573 -0.5072819859800244 0.1267210860462836 -0.8524123139956467 0.5072819859800244 -0.1267210860462836 0.8524123139956467 0.937110602165385 0.3235995292060994 0.1307939754224954 -0.937110602165385 -0.3235995292060994 -0.1307939754224954 0.4683145507705584 0.2666103025462021 0.8423778416558645 -0.4683145507705584 -0.2666103025462021 -0.8423778416558645 -0.5006817121148732 -0.1383947502935547 0.854496761986202 0.5006817121148732 0.1383947502935547 -0.854496761986202 -0.02916676532904535 -0.002607048449104029 -0.9995711595972666 0.02916676532904535 0.002607048449104029 0.9995711595972666 0.4686365287356026 0.2634175385470021 -0.8432028251378688 -0.4686365287356026 -0.2634175385470021 0.8432028251378688 0.9063167055109044 0.2979834863464362 -0.2996595921653166 -0.9063167055109044 -0.2979834863464362 0.2996595921653166 -0.9256385792573044 0.2571014635508372 0.2776545660178067 0.9256385792573044 -0.2571014635508372 -0.2776545660178067 -0.8206331206288936 -0.02964916322471281 0.5706857352755176 0.8206331206288936 0.02964916322471281 -0.5706857352755176 -0.03606796853137018 0.003069262570959986 -0.9993446258790261 0.03606796853137018 -0.003069262570959986 0.9993446258790261 -0.01386625369199847 -0.001056049480266805 -0.9999033012086941 0.01386625369199847 0.001056049480266805 0.9999033012086941 0.9469315112745416 0.3214314072292765 0.001601062746909136 -0.9469315112745416 -0.3214314072292765 -0.001601062746909136 0.7641065348004036 0.3901442817233559 0.5137398591835036 -0.7641065348004036 -0.3901442817233559 -0.5137398591835036 -0.0253409147764243 -0.002224590617548376 0.9996763922564534 0.0253409147764243 0.002224590617548376 -0.9996763922564534 0.4738172194062332 0.1197701700090635 -0.8724404558307378 -0.4738172194062332 -0.1197701700090635 0.8724404558307378 0.7711373476771701 0.3842751232355434 -0.5076217299128626 -0.7711373476771701 -0.3842751232355434 0.5076217299128626 0.940058892599263 0.3172032298953741 -0.1251854200336039 -0.940058892599263 -0.3172032298953741 0.1251854200336039 -0.7886999360348029 0.6147767214633088 0.001411965128137241 0.7886999360348029 -0.6147767214633088 -0.001411965128137241 -0.7623290759492826 0.5848091274625029 -0.2772231310674836 0.7623290759492826 -0.5848091274625029 0.2772231310674836 -0.6631486409280196 0.4874613557369795 -0.5679923473942115 0.6631486409280196 -0.4874613557369795 0.5679923473942115 -0.4363268446364034 0.2955463160935649 -0.8498654362269137 0.4363268446364034 -0.2955463160935649 0.8498654362269137 -0.0295904739926534 0.007287631111918657 -0.9995355392789527 0.0295904739926534 -0.007287631111918657 0.9995355392789527 0.8781779081951024 0.4175185727202028 0.2334133736351856 -0.8781779081951024 -0.4175185727202028 -0.2334133736351856 0.4800981526433935 0.1133023647646291 0.8698668507117304 -0.4800981526433935 -0.1133023647646291 -0.8698668507117304 -0.5131310993602707 -0.0187526802328627 0.8581053617437688 0.5131310993602707 0.0187526802328627 -0.8581053617437688 0.4952743046220077 0.02034728321867889 -0.8684983311709963 -0.4952743046220077 -0.02034728321867889 0.8684983311709963 0.7972622849144865 0.1792769318503911 -0.5763962445742011 -0.7972622849144865 -0.1792769318503911 0.5763962445742011 0.8823867396385429 0.41265543867549 -0.2260732859972651 -0.8823867396385429 -0.41265543867549 0.2260732859972651 -0.7595042982554835 0.5870603968540626 0.280202268686383 0.7595042982554835 -0.5870603968540626 -0.280202268686383 -0.7932577613415092 0.2145816981708134 0.5698217430754876 0.7932577613415092 -0.2145816981708134 -0.5698217430754876 0.4353447705095689 -0.2671658094731063 -0.8597077183779092 -0.4353447705095689 0.2671658094731063 0.8597077183779092 0.4665169607832366 -0.1084626786762199 -0.8778369852290067 -0.4665169607832366 0.1084626786762199 0.8778369852290067 0.9085269655623637 0.4178115441467183 0.003502345468202378 -0.9085269655623637 -0.4178115441467183 -0.003502345468202378 0.8008465080303187 0.1689211539185453 0.5745524469832773 -0.8008465080303187 -0.1689211539185453 -0.5745524469832773 -0.01394041370417603 -0.0009874344792977709 0.9999023401507297 0.01394041370417603 0.0009874344792977709 -0.9999023401507297 0.81484435028947 0.03368710526116375 -0.5787001501126944 -0.81484435028947 -0.03368710526116375 0.5787001501126944 0.9422159256443544 0.1931516140816549 -0.2737181094480306 -0.9422159256443544 -0.1931516140816549 0.2737181094480306 -0.6804146158758695 0.7328252533849206 0.00176025674830374 0.6804146158758695 -0.7328252533849206 -0.00176025674830374 -0.6618880202834722 0.7123564045500399 -0.2333508120872217 0.6618880202834722 -0.7123564045500399 0.2333508120872217 -0.6005935287410511 0.633267848924303 -0.4881180643585715 0.6005935287410511 -0.633267848924303 0.4881180643585715 -0.4501576861779418 0.4575811199314518 -0.7667969589514554 0.4501576861779418 -0.4575811199314518 0.7667969589514554 -0.1180449525871773 0.1181456463689562 -0.9859548647949118 0.1180449525871773 -0.1181456463689562 0.9859548647949118 0.7873239455630373 -0.2010483539872131 -0.5828383687628018 -0.7873239455630373 0.2010483539872131 0.5828383687628018 0.9431346571913443 0.1855647482284393 0.2757947472659363 -0.9431346571913443 -0.1855647482284393 -0.2757947472659363 0.4953154525289081 0.01781029697467817 0.8685305957810332 -0.4953154525289081 -0.01781029697467817 -0.8685305957810332 -0.5073106571574744 0.1285893059795506 0.8521154191317917 0.5073106571574744 -0.1285893059795506 -0.8521154191317917 0.7913989160805892 -0.1706694853308344 -0.5869920633223047 -0.7913989160805892 0.1706694853308344 0.5869920633223047 0.9593414664545559 0.03890179671757865 -0.2795542898132069 -0.9593414664545559 -0.03890179671757865 0.2795542898132069 0.9816075400361064 0.1908982818473136 0.00211738801526375 -0.9816075400361064 -0.1908982818473136 -0.00211738801526375 -0.668592732933499 0.7058284386373456 0.2340725799389628 0.668592732933499 -0.7058284386373456 -0.2340725799389628 -0.658648055556712 0.4905608607123966 0.5705548009161566 0.658648055556712 -0.4905608607123966 -0.5705548009161566 0.8945237521063432 -0.3128950493248178 -0.319255297568591 -0.8945237521063432 0.3128950493248178 0.319255297568591 0.7273308374623275 -0.4107140561815599 -0.5498216228298409 -0.7273308374623275 0.4107140561815599 0.5498216228298409 0.8149356869034029 0.03016825800147217 0.5787656714253494 -0.8149356869034029 -0.03016825800147217 -0.5787656714253494 -0.03815079619648202 0.003415148224166548 0.9992661574936786 0.03815079619648202 -0.003415148224166548 -0.9992661574936786 0.9388012737182524 -0.1951675219529285 -0.2838341185265438 -0.9388012737182524 0.1951675219529285 0.2838341185265438 0.9992277367336863 0.03929287538264983 -9.286468785953477e-006 -0.9992277367336863 -0.03929287538264983 9.286468785953477e-006 0.9999997700670603 0.0006781340773516428 1.091712874520978e-011 0.999999741515791 0.0007190041331446171 -1.186517879136609e-006 0.9999997627535195 0.0006888344536469859 -5.398966828881975e-010 -0.9999997627535195 -0.0006888344536469859 5.398966828881975e-010 -0.999999741515791 -0.0007190041331446171 1.186517879136609e-006 -0.9999997700670603 -0.0006781340773516428 -1.091712874520978e-011 0.9999997415162626 0.0007190034793928838 1.185225566045566e-006 -0.9999997415162626 -0.0007190034793928838 -1.185225566045566e-006 0.9999997591493971 0.0006939736981349089 1.008237387055068e-005 -0.9999997591493971 -0.0006939736981349089 -1.008237387055068e-005 0.9999997616215287 0.0006904002692460185 -1.021538954553776e-005 -0.9999997616215287 -0.0006904002692460185 1.021538954553776e-005 0.9999997581675503 0.0006954601648648084 -1.095769135979897e-020 -0.9999997581675503 -0.0006954601648648084 1.095769135979897e-020 0.9594300725529456 0.03651680147267897 0.279571921142404 -0.9594300725529456 -0.03651680147267897 -0.279571921142404 0.4640834765258798 -0.1107483895265082 0.8788408963133987 -0.4640834765258798 0.1107483895265082 -0.8788408963133987 -0.4349383883559403 0.298045747182913 0.8497042608581626 0.4349383883559403 -0.298045747182913 -0.8497042608581626 0.8509522788102882 -0.4576708245757746 -0.2577161918073987 -0.8509522788102882 0.4576708245757746 0.2577161918073987 0.9793566160984792 -0.2021367815241144 -0.001157609264210023 -0.9793566160984792 0.2021367815241144 0.001157609264210023 0.9999997591488229 0.0006939745151300152 -1.008309259434636e-005 -0.9999997591488229 -0.0006939745151300152 1.008309259434636e-005 -0.6150886461380279 0.6241615889410819 0.481755402961536 0.6150886461380279 -0.6241615889410819 -0.481755402961536 0.9355903546303108 -0.3265017138224018 -0.134414728336458 -0.9355903546303108 0.3265017138224018 0.134414728336458 0.7902373545678373 -0.1746497282835001 0.5873860705329383 -0.7902373545678373 0.1746497282835001 -0.5873860705329383 -0.03727582289811701 0.00904632410419585 0.9992640677255787 0.03727582289811701 -0.00904632410419585 -0.9992640677255787 0.8837575014651523 -0.467937238920978 -0.002723790572529869 -0.8837575014651523 0.467937238920978 0.002723790572529869 0.9385893356447606 -0.1982001301868833 0.2824301106607252 -0.9385893356447606 0.1982001301868833 -0.2824301106607252 0.9999997616211637 0.0006904007994159351 1.021529299323952e-005 -0.9999997616211637 -0.0006904007994159351 -1.021529299323952e-005 0.9471939711829661 -0.3206513593284936 -0.002507332333696746 -0.9471939711829661 0.3206513593284936 0.002507332333696746 0.4270453468344068 -0.2684592106674866 0.8634592775312981 -0.4270453468344068 0.2684592106674866 -0.8634592775312981 -0.4729763080059392 0.4540909037883582 0.7550462655769797 0.4729763080059392 -0.4540909037883582 -0.7550462655769797 0.8504098207762262 -0.4605667194708368 0.2543254482807772 -0.8504098207762262 0.4605667194708368 -0.2543254482807772 0.9999997581675503 0.0006954601649510948 2.191458151038304e-020 -0.9999997581675503 -0.0006954601649510948 -2.191458151038304e-020 0.9399882881102288 -0.3171041366911378 0.1259642199553888 -0.9399882881102288 0.3171041366911378 -0.1259642199553888 0.7241574605236903 -0.4145294511506577 0.5511454494927945 -0.7241574605236903 0.4145294511506577 -0.5511454494927945 -0.1340835029535357 0.124013334904789 0.983179692122199 0.1340835029535357 -0.124013334904789 -0.983179692122199 0.7948251512710979 -0.1957764209566542 0.5743906091713888 -0.7948251512710979 0.1957764209566542 -0.5743906091713888 0.9035807440994651 -0.3012260155692836 0.3046386817804174 -0.9035807440994651 0.3012260155692836 -0.3046386817804174</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID69\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"668\" source=\"#ID72\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1336\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID72\">8.434630368164704 2.353360081779203 8.439855099803374 2.318780785786409 8.216371074199902 2.318780785786409 -5.353662840570794 2.238346445495049 -5.34641849052734 2.272699661990973 -5.258483149757913 2.238346445495049 8.428908305771554 2.372275948504826 8.210678454353849 2.337581846710967 8.207148906956121 2.372275948504826 8.216371074199902 2.099201542017305 8.439855099803374 2.099201542017305 8.212874042292729 2.064506099013996 -5.346578877313325 2.272445596198183 -5.325947323394589 2.301568815064706 -5.258643536548753 2.238092379694571 -5.34641849052734 2.203787490769093 -5.353662840570794 2.238140003930209 -5.258483149757913 2.238140003930209 7.596583364577615 2.55171847021232 7.601656486858115 2.517142999896679 7.317236541932582 2.517142999896679 8.413950709713538 2.465525301638435 8.428908305771554 2.434330334682621 8.207148906956121 2.434330334682621 7.586893672412469 1.929008386505678 7.581798412101595 1.894435629635499 7.302094057981144 1.894435629635499 8.43415938311553 2.12514351646369 8.428908305771554 2.090567388980215 8.207148906956121 2.090567388980215 -5.325369974300813 2.30194764879499 -5.294479264856308 2.321406344066429 -5.258066187507247 2.238471213390559 -5.325947319466017 2.174917397892478 -5.346578873384753 2.204041554538746 -5.258643532620178 2.238394067707548 7.581798412101595 2.619588947825986 7.302476555747747 2.584888879834124 7.302094057981145 2.619588947825986 7.317236541932579 1.850354270639173 7.601656486858113 1.850354270639173 7.316881791826323 1.815654716533251 8.3955569580953 2.50250886325613 8.18899985985553 2.470326219360448 8.178697842914264 2.50250886325613 7.302094057981146 0.855743874384147 7.581798412101595 0.855743874384147 7.300971110964643 0.8234534403100693 8.207148906956121 1.617093440555834 8.428908305771554 1.617093440555834 8.197117569523337 1.584857075977602 -5.258905246021844 2.238243226210277 -5.29531832366427 2.321178356806438 -5.258905246021844 2.328012192249299 8.395556958095302 2.393997464238216 8.178697842914264 2.393997464238216 8.372838650853405 2.41948796271577 8.410732696733057 1.717467499264168 8.3955569580953 1.686336924306703 8.178697842914264 1.686336924306703 -5.294479267695164 2.155079403421889 -5.325369977139668 2.1745385675832 -5.258066190346099 2.238015237432566 5.710314858466266 2.828716964504237 5.712813940303199 2.794071325224616 5.43564487805588 2.794071325224616 7.567306430558848 3.088475496532702 7.581798412101595 3.057307671632219 7.302094057981145 3.057307671632219 5.708851787152099 1.644395658947628 5.706348692416967 1.609750896345491 5.432440777234132 1.609750896345491 5.693943675180602 0.2308084042307124 5.686744761844247 0.1990061827887031 5.422161061289249 0.1990061827887031 7.535905530802523 1.112286182196852 7.521223456598177 1.081172584512499 7.254863636322893 1.081172584512499 -5.257175951646648 2.238243226210277 -5.257175951646648 2.328012192249299 -5.220747967071105 2.321178356806438 8.33916397760588 1.883711615823397 8.129529547857697 1.883711615823397 8.311784926989073 1.903794973188536 8.145593213807361 2.42019245782121 8.129529547857695 2.448237742633388 8.339163977605878 2.448237742633388 8.163266938210644 0.7538489312785419 8.178697842914264 0.7821135543431498 8.3955569580953 0.7821135543431498 8.129529547857697 0.9243288884928269 8.362387450447192 0.949536456620966 8.33916397760588 0.9243288884928271 -5.258905246021844 2.148475901285807 -5.29531832366427 2.155307392279307 5.432440777234132 2.846946774123885 5.706348692416967 2.846946774123885 5.431682793373643 2.812281116825409 5.435644878055882 1.624304963908791 5.712813940303199 1.624304963908791 5.436407010946693 1.589640059902782 7.521223456598179 3.247101335524373 7.256226904838707 3.214817473372052 7.254863636322895 3.247101335524373 5.432440777234131 0.1682208939942272 5.706348692416967 0.168220893994227 5.434602378679044 0.1362272820838394 5.425340449899831 -1.689216044294241 5.422161061289249 -1.661438381831966 5.686744761844248 -1.661438381831966 7.252848146393001 -0.5270631398770428 7.254863636322892 -0.4985518232093718 7.521223456598176 -0.4985518232093723 -5.257390617861971 2.23830157544322 -5.220962633305634 2.321236706044601 -5.190081459393857 2.30177801079064 -8.260842066902697 -0.4796763149142531 -8.059533172577172 -0.4796763149142531 -8.232721767073175 -0.4991327960577887 8.079424579263606 1.959442771916687 8.05953317257717 1.983772065631482 8.260842066902697 1.983772065631481 7.499236753965093 3.533515822434401 7.521223456598177 3.508078316264925 7.254863636322893 3.508078316264925 7.439999196691409 -0.1271001322564012 7.417539771395165 -0.1522811294232672 7.171086101027779 -0.1522811294232672 8.110574073075688 -0.5489996162952336 8.129529547857697 -0.5242128766259669 8.339163977605882 -0.5242128766259669 8.05953317257717 -0.5424206148045283 8.288956913940631 -0.5229773532910994 8.260842066902697 -0.5424206148045279 -5.257175951646648 2.148475901285807 -5.220747967071105 2.155307392279307 4.322864625052438 2.944894745205068 4.32318594951872 2.910224881472888 4.036723057722867 2.910224881472888 5.699185441715321 3.897729522860127 5.706348692416967 3.865923177062649 5.432440777234131 3.865923177062649 4.329062854421077 1.525740662158354 4.32874688218239 1.491071464894376 4.044919952782598 1.491071464894376 4.346555817097767 -0.1306287692369947 4.345701005524085 -0.1626604812616511 4.069386787927182 -0.1626604812616511 4.374144530264028 -2.151847645849272 4.372975942564231 -2.179722527662006 4.107900982830067 -2.179722527662006 5.666277883087392 -1.583331166730941 5.655444809482778 -1.61058523539394 5.404784526157568 -1.61058523539394 -5.257824474759958 2.238586261658011 -5.190515316496215 2.302062697139542 -5.169877801644873 2.27293947822191 -8.143361574613978 0.8413655801904392 -8.167849371996281 0.8658136570680978 -7.974670137151378 0.865813657068098 -7.995540330570239 -0.8630370076530344 -7.974670137151378 -0.8868406056614312 -8.167849371996281 -0.8868406056614312 7.417539771395168 3.483727300830921 7.171086101027782 3.483727300830921 7.39103908120253 3.503781361879716 7.173709694356354 3.648842704203838 7.171086101027782 3.677323068379556 7.417539771395168 3.677323068379556 7.167986007454825 -2.20633963742961 7.171086101027779 -2.180877764144669 7.417539771395165 -2.180877764144669 7.045549963493105 -2.116993011529345 7.295981151505877 -2.097581142588419 7.26871964559047 -2.116993011529345 -8.039652436742212 1.957654011907818 -8.059533172577169 1.933332583847781 -8.260842066902695 1.933332583847781 -7.974670137151378 2.295338343142578 -8.196734695214555 2.276589091912657 -8.167849371996281 2.295338343142578 -5.220962632578972 2.155249043451731 -5.257390617135311 2.23818487738792 -5.190081458667196 2.174708207595564 4.044919952782597 2.916697151235225 4.328746882182389 2.916697151235225 4.042600078796272 2.882054041348514 4.323185949518719 1.556336739814635 4.039037810754717 1.521694115390833 4.036723057722867 1.556336739814635 5.422161061289248 3.943015595733636 5.686744761844247 3.943015595733636 5.420036419983333 3.911021305348012 4.32874688218239 -0.03934716925420752 4.051532611608242 -0.07113567801260858 4.044919952782598 -0.03934716925420708 4.345701005524084 -2.041487688672124 4.079349393796518 -2.068716198387755 4.069386787927182 -2.041487688672124 4.107900982830065 -4.294279042810013 4.372975942564231 -4.294279042810013 4.119767316885249 -4.317723284416905 5.408428166518827 -3.738151290697665 5.404784526157568 -3.713779059006903 5.655444809482778 -3.713779059006903 -5.257531821098262 2.23812262282773 -5.169585147941832 2.272475839326124 -5.162335432618291 2.23812262282773 -8.058467359513546 1.590060425611151 -8.07521500203085 1.620689764464635 -7.888739162701234 1.620689764464635 -7.907185337553728 0.4013047780946442 -7.88873916270123 0.3741826951527294 -8.075215002030847 0.3741826951527294 -7.268719645590471 -2.053150487784164 -7.045549963493105 -2.053150487784164 -7.241471017322947 -2.072558574438991 7.049656255600592 3.557643136187863 7.045549963493103 3.583017370243692 7.268719645590469 3.583017370243692 5.675999108017063 4.796796616406089 5.686744761844247 4.769521473815643 5.422161061289248 4.769521473815644 5.380593695362149 -3.720189074757867 5.627751146083146 -3.696716872328327 5.614830603089938 -3.720189074757867 -7.041437280987505 3.559881852951684 -7.045549963493105 3.534504664393194 -7.268719645590471 3.534504664393194 -6.879131975953596 3.872325978238262 -7.107471800469083 3.853729175174603 -7.07932470356956 3.872325978238261 -7.956974743609803 2.699247075170101 -7.974670137151378 2.671816843440934 -8.167849371996281 2.671816843440934 -8.100272364420025 2.813405133895433 -8.075215002030847 2.837493791448359 -7.88873916270123 2.837493791448359 -5.190515307563639 2.174423518224927 -5.257824465827388 2.237900188151389 -5.169877792712301 2.203547674922303 0.9321896995554874 3.084759604088484 0.9324691034587712 3.050069154998214 0.6010926834848163 3.050069154998214 4.32784579960887 4.236534059576869 4.32874688218239 4.204503985072105 4.044919952782598 4.204503985072104 0.950062449921591 1.383032588066094 0.949797214608149 1.34834276664203 0.6231956013640261 1.34834276664203 1.003416473405784 -0.564888771331991 1.002788032144056 -0.5970963054434877 0.689784832516474 -0.5970963054434877 1.092339209865707 -2.862877208302275 1.091705377008492 -2.891206797268985 0.799014424632421 -2.891206797268985 1.21477090199698 -5.192994789713625 1.214511035774509 -5.218228300925035 0.9457283423114732 -5.218228300925036 4.409831302193775 -4.322735542825156 4.408621707159075 -4.347257289987124 4.156787646307723 -4.347257289987124 -5.169585147941832 2.204011317694693 -5.257531821098262 2.238363830858279 -5.162335432618291 2.238363830858279 -7.999157219777652 2.042518948965083 -8.005130751859149 2.077023827768453 -7.823033792135997 2.077023827768453 -8.00513075185915 1.31362032127005 -7.835707978970907 1.345278800213265 -7.823033792135998 1.31362032127005 -7.05545941398606 -0.164176067462128 -7.079324703569558 -0.1398098589040872 -6.879131975953596 -0.1398098589040872 -6.884479357744759 -2.534560429404811 -6.879131975953596 -2.559795433399359 -7.07932470356956 -2.559795433399359 5.655444809482778 4.978600663649545 5.404784526157568 4.978600663649546 5.642662340147106 5.002120284121173 5.401695898015736 4.808656846371256 5.404784526157568 4.836440516700103 5.655444809482777 4.836440516700103 -5.380593695362148 4.962171502045569 -5.614830603089938 4.962171502045569 -5.384093045167586 4.986553189531894 -5.351938677244748 5.017996387150544 -5.582837128882106 4.994576258487117 -5.56975153141031 5.017996387150543 -6.874595950601089 3.916023019294676 -6.879131975953595 3.887689986660023 -7.079324703569558 3.887689986660023 -6.897904037561943 3.810508318163908 -6.873283332082826 3.834405261392366 -6.692262931049166 3.834405261392366 -7.888739162701233 2.724661003134386 -8.075215002030848 2.724661003134386 -7.876414230061255 2.756405562862807 -8.022138934044577 2.667683772496266 -8.00513075185915 2.698225030675403 -7.823033792135997 2.698225030675403 0.6231956013640233 2.987301201786206 0.9497972146081468 2.987301201786206 0.6186869138979473 2.952689308328709 0.9324691034587718 1.488731301058679 0.6055889575248274 1.454119106364988 0.6010926834848163 1.488731301058679 4.069386787927182 4.167419738683337 4.345701005524084 4.167419738683337 4.062729945287959 4.135637796654536 0.949797214608149 -0.2493085088309403 0.6360503119188737 -0.2808136654129828 0.6231956013640255 -0.2493085088309403 0.689784832516474 -2.4607913856797 1.002788032144056 -2.4607913856797 0.7091761562947707 -2.487216522236849 0.7990144246324216 -5.04666531159668 1.091705377008492 -5.04666531159668 0.8222001987001021 -5.068632328092367 -0.9457283423114715 6.394951207259644 -1.214511035774507 6.394951207259644 -0.9693463955966802 6.41663285742608 -4.156787646307723 5.552627698955143 -4.408621707159075 5.552627698955144 -4.168826186517451 5.576018849749032 -7.984960319107533 2.382495153753913 -7.978954487231514 2.416995862268491 -7.798376612851471 2.416995862268491 -7.978954487231514 1.966439049599448 -7.802869053634529 2.001063721989028 -7.798376612851471 1.966439049599448 -6.856830818500603 1.084050530930478 -6.873283332082827 1.114614485837111 -6.692262931049166 1.114614485837111 -6.697884869256301 -0.9582713887241099 -6.692262931049166 -0.9864833759891449 -6.873283332082827 -0.9864833759891449 -5.614830603089938 -3.667689435313882 -5.380593695362148 -3.667689435313881 -5.601902573413683 -3.691164337909785 5.377093788557139 4.98813735430019 5.380593695362149 5.012523274922119 5.614830603089938 5.01252327492212 4.345701005524084 5.287360168805004 4.069386787927182 5.287360168805004 4.344421835165308 5.315231718444743 -4.449546056620505 5.523364437354302 -4.448524202508265 5.547887865422255 -4.209933402218356 5.547887865422255 -5.351938677244748 4.785846990777218 -5.56975153141031 4.785846990777218 -5.354765627823066 4.813646201701512 -5.538309584632483 4.761696983986634 -5.527083909871697 4.788854112455638 -5.323191108608555 4.788854112455638 -6.692262931049166 3.477831458554068 -6.873283332082827 3.477831458554069 -6.688521608741516 3.509995270680501 -6.720266959877879 3.164917477131315 -6.703434061204358 3.195353879732647 -6.535032963733198 3.195353879732646 -7.823033792135997 2.435604219488475 -8.005130751859149 2.435604219488475 -7.818584992145309 2.470231680986677 -1.96709306637855 3.077400285787161 -2.167801986871375 3.077400285787161 -1.964642189484361 3.112139973866311 0.9490457595910196 4.646912491789276 0.9497972146081496 4.614707436536613 0.6231956013640266 4.614707436536613 -1.918008717777247 1.315220598284153 -2.116263790567739 1.315220598284153 -1.920500958376179 1.349957769617933 -1.772230843885125 -0.6784430312662949 -1.963551749588468 -0.6784430312662946 -1.779694261781554 -0.6458798048266266 -1.543216962057551 -2.921635989955523 -1.531212837937363 -2.950650003716382 -1.712284373429763 -2.950650003716381 -1.222507394185468 -5.188411095530244 -1.207044158877362 -5.214242382180978 -1.376271851481387 -5.214242382180978 0.8485782902677852 6.390061095284668 0.8316396263229159 6.415314516155797 0.9893581626293579 6.415314516155797 -1.361941693243071 6.362733172750426 -1.362288982534341 6.387967241494827 -1.117326923650519 6.387967241494827 -6.697526395585393 1.892624381144682 -6.703434061204357 1.927117271470286 -6.535032963733198 1.927117271470286 -6.703434061204357 0.4832986325845745 -6.539345332253292 0.5154173203434307 -6.535032963733198 0.4832986325845745 -5.558655482375348 -1.571083272452359 -5.56975153141031 -1.543893531995541 -5.351938677244748 -1.543893531995541 -5.348603797862836 -3.730569693276149 -5.351938677244746 -3.754966297982173 -5.56975153141031 -3.754966297982173 4.372975942564231 5.588690154963504 4.107900982830067 5.588690154963505 4.371597365049192 5.613207036215486 4.107900982830066 5.25623854649248 4.372975942564231 5.25623854649248 4.097832937811947 5.229034383492466 -4.448524202508266 5.136112743423935 -4.220284363397968 5.163250715910081 -4.209933402218357 5.136112743423935 -4.486871269309131 5.178815212013592 -4.48615398637004 5.206697524035649 -4.258776450555414 5.206697524035649 -5.323191108608555 3.899793911100535 -5.527083909871697 3.899793911100535 -5.324989662746323 3.931801033582214 -5.503371109474338 3.845397623584101 -5.495820513932753 3.877144935837415 -5.301210651361618 3.877144935837415 -6.535032963733196 2.696133322235575 -6.703434061204355 2.696133322235575 -6.533506043351181 2.730813638015173 -6.641860146900234 2.531084909783068 -6.635902379084699 2.565571766215482 -6.471868518083324 2.565571766215482 -1.918008717777247 2.956182252046366 -2.121205890158615 2.921578102403865 -2.11626379056774 2.956182252046366 -1.967093066378549 1.51948075221779 -2.162893322330048 1.484874355808419 -2.167801986871373 1.519480752217791 0.6897848325164744 4.407826049212817 1.002788032144057 4.407826049212817 0.6768229489005453 4.376348946068332 -1.918008717777245 -0.1565365247956884 -2.102179364039371 -0.1879855502119529 -2.116263790567738 -0.1565365247956884 -1.963551749588464 -2.295202401859097 -1.772230843885123 -2.295202401859097 -1.942056306671609 -2.321333474487419 -1.712284373429763 -4.909224007543397 -1.531212837937362 -4.909224007543397 -1.686141419975853 -4.930315929223952 1.376271851481388 6.369227335455214 1.207044158877364 6.369227335455214 1.349117506683136 6.389508423958248 0.9893581626293585 5.441362297022207 0.8316396263229164 5.441362297022207 0.9653949506273185 5.466130793660186 -1.362288982534343 5.602639499088345 -1.137768301233448 5.628569766402831 -1.11732692365052 5.602639499088347 -6.635902379084699 1.696209365236964 -6.473472917853572 1.730888213057201 -6.471868518083324 1.696209365236964 -5.519597952639094 0.2327923851607379 -5.527083909871697 0.2645483088620941 -5.323191108608554 0.2645483088620941 -5.320499878353941 -1.669964106105268 -5.323191108608555 -1.697771323703456 -5.527083909871697 -1.697771323703455 -4.408621707159075 -4.296747015947841 -4.156787646307723 -4.296747015947841 -4.407412304627763 -4.32126581679264 4.408621707159075 5.605109209534284 4.144760566125584 5.581715029474692 4.156787646307723 5.605109209534284 1.001846931342163 5.972661113159814 1.002788032144055 5.944337132374494 0.6897848325164729 5.944337132374495 -1.511722885307478 5.846256149112257 -1.512522758452065 5.874582428309672 -1.287670506457124 5.874582428309672 -4.486153986370041 4.042309874632021 -4.265787779652355 4.074046865503883 -4.258776450555414 4.042309874632021 -4.513936661932269 4.116634488435327 -4.513529393516768 4.148671265418692 -4.293640562989966 4.148671265418692 -5.30121065136162 2.810912441373487 -5.495820513932754 2.810912441373487 -5.301818367203231 2.845580057199926 -5.486866123566071 2.783186271251781 -5.484193596745347 2.817823636846223 -5.292855245808954 2.817823636846223 -4.053823696300509 2.237933945389781 -3.965878808417176 2.272287161939893 -3.958641016476932 2.237933945389781 -1.918008717777246 4.649794177545886 -2.116263790567739 4.649794177545886 -1.910891693420302 4.682404522695187 -3.965878808417176 2.204199992204413 -4.053823696300509 2.238552505419718 -3.958641016476932 2.238552505419718 -3.98688258012103 2.174496531652604 -4.054189352611236 2.237973201526826 -3.966244464718757 2.203620688326012 -4.017173339631032 2.155424003666398 -4.053600131603027 2.238359837618288 -3.986293359006373 2.174883167813916 -4.054029148368965 2.148475901285807 -4.054029148368965 2.238243226210277 -4.017602356320005 2.155307392279307 -4.053705692468588 2.148475901285807 -4.090128310949842 2.155307392279307 -4.053705692468588 2.238243226210277 -4.089952433315315 2.155259592545581 -4.120834202083113 2.174718756689015 -4.053529814846994 2.238195426480065 0.4817370153810024 5.867033550067902 0.4662092569933485 5.894993387095167 0.6144719776412866 5.894993387095167 -5.493156499972884 1.622250154706118 -5.495820513932754 1.656888623668823 -5.30121065136162 1.656888623668823 -5.30121065136162 0.1336222520571034 -5.495820513932754 0.1336222520571034 -5.299479955906707 0.16563083642983 -4.448524202508266 -2.069012009645138 -4.209933402218357 -2.069012009645138 -4.447657984950528 -2.096891377077753 -4.448524202508265 -4.245748750520807 -4.197716937838588 -4.222414069935461 -4.209933402218356 -4.245748750520807 1.090947998110311 6.444314700437957 1.091705377008491 6.419086760900848 0.7990144246324199 6.419086760900847 1.091705377008496 5.764461288009136 0.7793575878386156 5.738158179036597 0.7990144246324239 5.764461288009136 -1.512522758452064 4.199124051242464 -1.301605464577787 4.230341346563795 -1.287670506457123 4.199124051242464 -1.628375530324133 4.532137312614295 -1.629173990339626 4.564343890560317 -1.417698726505826 4.564343890560318 -4.513529393516767 2.842460905715748 -4.296126179723646 2.877096140892943 -4.293640562989966 2.842460905715748 -4.523873026935287 2.878948457209516 -4.52373943882028 2.913619209927827 -4.306478961546185 2.913619209927827 -5.292855245808954 1.589284403419701 -5.484193596745347 1.589284403419701 -5.292256482891902 1.623952812594009 -4.054189359642654 2.238513250449592 -3.986882587152454 2.301989685878881 -3.966244471750178 2.272866466985217 -1.772230843885124 4.316668158091233 -1.97791489492716 4.285298111276199 -1.963551749588466 4.316668158091233 -4.120931077310953 2.174782322711644 -4.141563825700471 2.203906479345791 -4.053626690071178 2.238258992500297 0.4662092569933474 3.984640728124225 0.5978885664865269 4.015324222717966 0.6144719776412849 3.984640728124225 -4.485674624860247 -0.08526153762548347 -4.48615398637004 -0.05322623054405954 -4.258776450555414 -0.0532262305440591 -4.258776450555414 -1.933085990116117 -4.48615398637004 -1.933085990116117 -4.248284576315554 -1.905981862401339 -1.214262924493798 -5.194566694637977 -1.214511035774507 -5.169331267036565 -0.9457283423114715 -5.169331267036566 1.214511035774506 6.451534252752131 0.9221179475047064 6.429848196719905 0.9457283423114704 6.451534252752131 -1.761069588366373 5.937702646020404 -1.772230843885125 5.908481456554886 -1.963551749588467 5.908481456554886 0.2053747464016292 4.494206613498784 0.1944372944454104 4.526154345813759 0.3365673192634006 4.526154345813759 -1.629173990339625 2.867167703373754 -1.422673876480833 2.901739456795183 -1.417698726505825 2.867167703373754 -1.673273684142616 3.018941404769386 -1.673590716300032 3.053630894775492 -1.466805478570464 3.053630894775492 -4.306478961546185 1.564023796208383 -4.52373943882028 1.564023796208383 -4.303984471274499 1.598659334192533 -4.513386385417228 1.521059658472058 -4.513529393516768 1.55573108481662 -4.293640562989966 1.55573108481662 -4.053600130150717 2.238126612289381 -4.017173338178724 2.321061742906462 -3.986293357554064 2.301603047648817 -4.141471615561583 2.203760403806036 -4.148715368841032 2.238112916971204 -4.05353447993902 2.238112916971204 -4.293640562989966 0.04335369123050295 -4.513529393516768 0.04335369123050295 -4.28656117905012 0.0750804706277098 -1.362577667292276 -2.816696003244873 -1.362288982534341 -2.788363968266435 -1.117326923650519 -2.788363968266436 -1.362288982534339 -4.96872170244727 -1.093208957200034 -4.947382584107978 -1.117326923650517 -4.96872170244727 -1.517054674570912 6.352714651674939 -1.531212837937361 6.326423764830597 -1.712284373429761 6.326423764830597 -1.531212837937358 5.640120267067013 -1.734448249583062 5.614337428574716 -1.712284373429759 5.640120267067013 0.1944372944454098 2.768116755041422 0.3306030045439118 2.802621145461516 0.3365673192634 2.768116755041422 0.09703799021453519 2.992970025448294 0.09311781389960916 3.02762566825247 0.2331416166700978 3.02762566825247 -1.466805478570464 1.551162662776399 -1.673590716300032 1.551162662776399 -1.461801932402765 1.585732578944526 -1.629455680006471 1.378103798768278 -1.629173990339626 1.41279417401793 -1.417698726505825 1.41279417401793 -4.054029148368965 2.328012192249299 -4.017602356320005 2.321178356806438 -4.148715368841032 2.238373531371506 -4.141471615561583 2.272726747871482 -4.05353447993902 2.238373531371506 -1.5130564857246 -0.5257943792033832 -1.512522758452064 -0.4935852610863161 -1.287670506457123 -0.4935852610863157 -1.287670506457123 -2.200920589208218 -1.512522758452064 -2.200920589208219 -1.266807547891256 -2.175199304236262 1.191572206143222 -5.192175383810728 1.207044158877364 -5.1663454530928 1.376271851481389 -5.1663454530928 -1.207044158877361 6.429711904418062 -1.403428117920235 6.409426980035437 -1.376271851481385 6.429711904418062 0.2331416166700967 1.664649718651807 0.09311781389960805 1.664649718651807 0.2391568923698373 1.699149334331037 0.1905901596095888 1.402942822274038 0.1944372944454098 1.437604227236455 0.3365673192634 1.437604227236455 -1.417698726505827 -0.01600042466492939 -1.629173990339627 -0.01600042466492939 -1.40354905450114 0.01515616649882865 -4.090128310949842 2.321178356806438 -4.053705692468588 2.328012192249299 -4.141563826111081 2.272580676061272 -4.120931077721562 2.301703894915674 -4.053626690481788 2.238227459571957 0.817284599356215 -2.839893539460173 0.8316396263229142 -2.811548851757165 0.9893581626293563 -2.811548851757165 0.8316396263229164 -4.845690357464556 1.017620105613927 -4.826367558809764 0.9893581626293585 -4.845690357464556 0.3365673192634 0.3196989763957595 0.1944372944454098 0.3196989763957595 0.3535537786690163 0.3502448284896839 0.4558387683873832 -0.4939535826444508 0.466209256993349 -0.4618899096476089 0.6144719776412871 -0.4618899096476089 -4.120834201487819 2.301767461664036 -4.08995243272002 2.321226156917597 -4.053529814251699 2.238291026317921 0.6144719776412871 -1.790580230231597 0.4662092569933496 -1.790580230231597 0.6392934645829623 -1.766340825597774</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"448\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 7 12 16 13 8 14 9 14 17 13 10 12 18 15 6 16 8 17 9 17 11 16 19 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 16 30 28 31 8 32 9 32 29 31 17 30 30 33 18 34 8 35 9 35 19 34 31 33 12 36 20 37 32 38 33 38 21 37 13 36 20 39 2 40 24 41 25 41 3 40 21 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 8 51 28 52 40 53 41 53 29 52 9 51 22 54 34 55 42 56 43 56 35 55 23 54 26 57 44 58 38 59 39 59 45 58 27 57 46 60 30 61 8 62 9 62 31 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 8 78 40 79 54 80 55 80 41 79 9 78 42 81 56 82 57 83 58 83 59 82 43 81 34 84 56 85 42 86 43 86 59 85 35 84 60 87 38 88 44 89 45 89 39 88 61 87 60 90 44 91 62 92 63 92 45 91 61 90 64 93 46 94 8 51 9 51 47 94 65 93 66 95 32 96 48 97 49 97 33 96 67 95 48 98 20 99 50 100 51 100 21 99 49 98 34 101 32 102 68 103 69 103 33 102 35 101 50 104 24 105 52 106 53 106 25 105 51 104 70 107 52 108 36 109 37 109 53 108 71 107 72 110 36 111 38 112 39 112 37 111 73 110 8 113 54 114 74 115 75 115 55 114 9 113 57 116 76 117 54 118 55 118 77 117 58 116 56 119 76 120 57 121 58 121 77 120 59 119 56 122 34 123 68 124 69 124 35 123 59 122 38 125 60 126 72 127 73 127 61 126 39 125 78 128 60 129 62 130 63 130 61 129 79 128 78 131 62 132 80 133 81 133 63 132 79 131 64 134 8 78 82 135 83 135 9 78 65 134 66 136 48 137 84 138 85 138 49 137 67 136 68 139 32 140 66 141 67 141 33 140 69 139 48 142 50 143 86 144 87 144 51 143 49 142 50 145 52 146 88 147 89 147 53 146 51 145 52 148 70 149 90 150 91 150 71 149 53 148 36 151 72 152 70 153 71 153 73 152 37 151 8 154 74 155 92 156 93 156 75 155 9 154 74 157 54 158 94 159 95 159 55 158 75 157 76 160 94 161 54 162 55 162 95 161 77 160 56 163 96 164 76 165 77 165 97 164 59 163 68 166 96 167 56 168 59 168 97 167 69 166 98 169 72 170 60 171 61 171 73 170 99 169 98 172 60 173 78 174 79 174 61 173 99 172 100 175 78 176 80 177 81 177 79 176 101 175 100 178 80 179 82 180 83 180 81 179 101 178 82 181 8 182 102 183 103 183 9 182 83 181 104 184 66 185 84 186 85 186 67 185 105 184 48 187 86 188 84 189 85 189 87 188 49 187 106 190 68 191 66 192 67 192 69 191 107 190 50 193 88 194 86 195 87 195 89 194 51 193 52 196 90 197 88 198 89 198 91 197 53 196 90 199 70 200 108 201 109 201 71 200 91 199 110 202 70 203 72 204 73 204 71 203 111 202 8 205 92 206 112 207 113 207 93 206 9 205 92 208 74 209 114 210 115 210 75 209 93 208 94 211 114 212 74 213 75 213 115 212 95 211 76 214 116 215 94 216 95 216 117 215 77 214 96 217 116 218 76 219 77 219 117 218 97 217 96 220 68 221 106 222 107 222 69 221 97 220 110 223 72 224 98 225 99 225 73 224 111 223 118 226 98 227 78 228 79 228 99 227 119 226 118 229 78 230 100 231 101 231 79 230 119 229 120 232 100 233 82 234 83 234 101 233 121 232 82 235 102 236 120 237 121 237 103 236 83 235 102 238 8 239 122 240 123 240 9 239 103 238 104 241 84 242 124 243 125 243 85 242 105 241 106 244 66 245 104 246 105 246 67 245 107 244 84 247 86 248 126 249 127 249 87 248 85 247 86 250 88 251 128 252 129 252 89 251 87 250 88 253 90 254 130 255 131 255 91 254 89 253 90 256 108 257 132 258 133 258 109 257 91 256 70 259 110 260 108 261 109 261 111 260 71 259 122 262 8 263 112 264 113 264 9 263 123 262 112 265 92 266 134 267 135 267 93 266 113 265 92 268 114 269 134 270 135 270 115 269 93 268 114 271 94 272 136 273 137 273 95 272 115 271 116 274 136 275 94 276 95 276 137 275 117 274 96 277 138 278 116 279 117 279 139 278 97 277 106 280 138 281 96 282 97 282 139 281 107 280 110 283 98 284 140 285 141 285 99 284 111 283 140 286 98 287 118 288 119 288 99 287 141 286 142 289 118 290 100 291 101 291 119 290 143 289 100 292 120 293 142 294 143 294 121 293 101 292 120 295 102 296 144 297 145 297 103 296 121 295 102 298 122 299 144 300 145 300 123 299 103 298 146 301 104 302 124 303 125 303 105 302 147 301 84 304 126 305 124 306 125 306 127 305 85 304 148 307 106 308 104 309 105 309 107 308 149 307 86 310 128 311 126 312 127 312 129 311 87 310 128 313 88 314 130 315 131 315 89 314 129 313 130 316 90 317 132 318 133 318 91 317 131 316 132 319 108 320 150 321 151 321 109 320 133 319 108 322 110 323 152 324 153 324 111 323 109 322 122 325 112 326 154 327 155 327 113 326 123 325 112 328 134 329 154 330 155 330 135 329 113 328 134 331 114 332 156 333 157 333 115 332 135 331 136 334 156 335 114 336 115 336 157 335 137 334 116 337 158 338 136 339 137 339 159 338 117 337 138 340 158 341 116 342 117 342 159 341 139 340 106 343 148 344 138 345 139 345 149 344 107 343 110 346 140 347 152 348 153 348 141 347 111 346 140 349 118 350 160 351 161 351 119 350 141 349 118 352 142 353 160 354 161 354 143 353 119 352 142 355 120 356 162 357 163 357 121 356 143 355 120 358 144 359 162 360 163 360 145 359 121 358 144 361 122 362 154 363 155 363 123 362 145 361 124 364 164 365 146 366 147 366 165 365 125 364 148 367 104 368 146 369 147 369 105 368 149 367 126 370 166 371 124 372 125 372 167 371 127 370 128 373 168 374 126 375 127 375 169 374 129 373 128 376 130 377 170 378 171 378 131 377 129 376 130 379 132 380 172 381 173 381 133 380 131 379 132 382 150 383 174 384 175 384 151 383 133 382 108 385 152 386 150 387 151 387 153 386 109 385 154 388 134 389 176 390 177 390 135 389 155 388 134 391 156 392 176 393 177 393 157 392 135 391 156 394 136 395 178 396 179 396 137 395 157 394 158 397 178 398 136 399 137 399 179 398 159 397 138 400 180 401 158 402 159 402 181 401 139 400 180 403 138 404 148 405 149 405 139 404 181 403 140 406 182 407 152 408 153 408 183 407 141 406 140 409 160 410 182 411 183 411 161 410 141 409 160 412 142 413 184 414 185 414 143 413 161 412 142 415 162 416 184 417 185 417 163 416 143 415 162 418 144 419 186 420 187 420 145 419 163 418 144 421 154 422 186 423 187 423 155 422 145 421 146 424 164 425 188 426 189 426 165 425 147 424 124 427 166 428 164 429 165 429 167 428 125 427 190 430 148 431 146 432 147 432 149 431 191 430 126 433 168 434 166 435 167 435 169 434 127 433 168 436 128 437 170 438 171 438 129 437 169 436 170 439 130 440 172 441 173 441 131 440 171 439 172 442 132 443 174 444 175 444 133 443 173 442 174 445 150 446 192 447 193 447 151 446 175 445 152 448 194 449 150 450 151 450 195 449 153 448 154 451 176 452 186 453 187 453 177 452 155 451 176 454 156 455 196 456 197 456 157 455 177 454 178 457 196 458 156 459 157 459 197 458 179 457 158 460 198 461 178 462 179 462 199 461 159 460 158 463 180 464 198 465 199 465 181 464 159 463 180 466 148 467 190 468 191 468 149 467 181 466 152 469 182 470 194 471 195 471 183 470 153 469 160 472 200 473 182 474 183 474 201 473 161 472 160 475 184 476 200 477 201 477 185 476 161 475 184 478 162 479 202 480 203 480 163 479 185 478 162 481 186 482 202 483 203 483 187 482 163 481 204 484 205 485 206 486 207 486 208 485 209 484 146 487 188 488 190 489 191 489 189 488 147 487 210 490 204 491 206 492 207 492 209 491 211 490 212 493 204 494 210 495 211 495 209 494 213 493 214 496 204 497 212 498 213 498 209 497 215 496 216 499 204 500 214 501 215 501 209 500 217 499 216 502 174 503 204 504 209 504 175 503 217 502 174 505 192 506 204 507 209 507 193 506 175 505 150 508 194 509 192 510 193 510 195 509 151 508 186 511 176 512 218 513 219 513 177 512 187 511 218 514 176 515 196 516 197 516 177 515 219 514 178 517 220 518 196 519 197 519 221 518 179 517 178 520 198 521 220 522 221 522 199 521 179 520 198 523 180 524 222 525 223 525 181 524 199 523 180 526 190 527 222 528 223 528 191 527 181 526 182 529 224 530 194 531 195 531 225 530 183 529 182 532 200 533 224 534 225 534 201 533 183 532 184 535 226 536 200 537 201 537 227 536 185 535 184 538 202 539 226 540 227 540 203 539 185 538 202 541 186 542 218 543 219 543 187 542 203 541 204 544 228 545 205 546 208 546 229 545 209 544 190 547 188 548 230 549 231 549 189 548 191 547 192 550 232 551 204 552 209 552 233 551 193 550 194 553 232 554 192 555 193 555 233 554 195 553 218 556 196 557 234 558 235 558 197 557 219 556 234 559 196 560 220 561 221 561 197 560 235 559 220 562 198 563 236 564 237 564 199 563 221 562 198 565 222 566 236 567 237 567 223 566 199 565 222 568 190 569 230 570 231 570 191 569 223 568 194 571 224 572 232 573 233 573 225 572 195 571 200 574 238 575 224 576 225 576 239 575 201 574 200 577 226 578 238 579 239 579 227 578 201 577 226 580 202 581 240 582 241 582 203 581 227 580 202 583 218 584 240 585 241 585 219 584 203 583 204 586 242 587 228 588 229 588 243 587 209 586 232 589 244 590 204 591 209 591 245 590 233 589 240 592 218 593 234 594 235 594 219 593 241 592 234 595 220 596 246 597 247 597 221 596 235 595 220 598 236 599 246 600 247 600 237 599 221 598 236 601 222 602 248 603 249 603 223 602 237 601 222 604 230 605 248 606 249 606 231 605 223 604 224 607 244 608 232 609 233 609 245 608 225 607 224 610 238 611 244 612 245 612 239 611 225 610 238 613 226 614 250 615 251 615 227 614 239 613 226 616 240 617 250 618 251 618 241 617 227 616 204 500 252 619 242 620 243 620 253 619 209 500 244 621 254 622 204 623 209 623 255 622 245 621 240 624 234 625 256 626 257 626 235 625 241 624 256 627 234 628 246 629 247 629 235 628 257 627 246 630 236 631 258 632 259 632 237 631 247 630 236 633 248 634 258 635 259 635 249 634 237 633 244 636 238 637 254 638 255 638 239 637 245 636 238 639 250 640 254 641 255 641 251 640 239 639 250 642 240 643 256 644 257 644 241 643 251 642 204 504 260 645 252 646 253 646 261 645 209 504 254 647 262 648 204 649 209 649 263 648 255 647 256 650 246 651 260 652 261 652 247 651 257 650 246 653 258 654 260 655 261 655 259 654 247 653 254 656 250 657 262 658 263 658 251 657 255 656 250 659 256 660 262 661 263 661 257 660 251 659 262 662 260 663 204 664 209 664 261 663 263 662 262 665 256 666 260 667 261 667 257 666 263 665</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID68\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID69\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID73\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID76\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID74\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID75\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID74\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"266\" source=\"#ID78\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"798\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID78\">0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7675102353096008 -0.5612731575965881 0.2852768898010254 0.7675102353096008 -0.5612731575965881 0.2852768898010254 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7529726028442383 -0.5678825974464417 0.2799702882766724 0.7529726028442383 -0.5678825974464417 0.2799702882766724 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7688149809837341 -0.5605922937393189 0.281104177236557 0.7688149809837341 -0.5605922937393189 0.281104177236557 0.7658206224441528 -0.5605922937393189 0.2893087267875671 0.7658206224441528 -0.5605922937393189 0.2893087267875671 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.7809376120567322 -0.5357759594917297 0.2855293154716492 0.7809376120567322 -0.5357759594917297 0.2855293154716492 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.7799424529075623 -0.5360983014106751 0.2898147404193878 0.7799424529075623 -0.5360983014106751 0.2898147404193878 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7807786464691162 -0.5348604321479797 0.2815302610397339 0.7807786464691162 -0.5348604321479797 0.2815302610397339 0.7695367932319641 -0.5586550235748291 0.2774266302585602 0.7695367932319641 -0.5586550235748291 0.2774266302585602 0.7779433131217957 -0.5357759594917297 0.2937338352203369 0.7779433131217957 -0.5357759594917297 0.2937338352203369 0.7640029788017273 -0.5586550235748291 0.2925863564014435 0.7640029788017273 -0.5586550235748291 0.2925863564014435 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.783890426158905 -0.5086091160774231 0.2826657593250275 0.783890426158905 -0.5086091160774231 0.2826657593250275 0.7842149138450623 -0.5086091160774231 0.2867254912853241 0.7842149138450623 -0.5086091160774231 0.2867254912853241 0.7832766175270081 -0.5086091160774231 0.2910321354866028 0.7832766175270081 -0.5086091160774231 0.2910321354866028 0.7493549585342407 -0.5642405152320862 0.2898727059364319 0.7493549585342407 -0.5642405152320862 0.2898727059364319 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7623351216316223 -0.5557551980018616 0.2946110367774963 0.7623351216316223 -0.5557551980018616 0.2946110367774963 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7695651054382324 -0.5557551980018616 0.2748038470745087 0.7695651054382324 -0.5557551980018616 0.2748038470745087 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7823523879051209 -0.5086091160774231 0.27947136759758 0.7823523879051209 -0.5086091160774231 0.27947136759758 0.7794895172119141 -0.5334889888763428 0.2784262001514435 0.7794895172119141 -0.5334889888763428 0.2784262001514435 0.7812198996543884 -0.5086091160774231 0.2949300408363342 0.7812198996543884 -0.5086091160774231 0.2949300408363342 0.7752450704574585 -0.5348604321479797 0.296690046787262 0.7752450704574585 -0.5348604321479797 0.296690046787262 0.7502013444900513 -0.561151921749115 0.2875483632087708 0.7502013444900513 -0.561151921749115 0.2875483632087708 0.7610700726509094 -0.5523343682289124 0.2950736284255981 0.7610700726509094 -0.5523343682289124 0.2950736284255981 0.7565851211547852 -0.5642405152320862 0.2700657248497009 0.7565851211547852 -0.5642405152320862 0.2700657248497009 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7688960433006287 -0.5523343682289124 0.2736347615718842 0.7688960433006287 -0.5523343682289124 0.2736347615718842 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7812067866325378 -0.4821297526359558 0.2790530025959015 0.7812067866325378 -0.4821297526359558 0.2790530025959015 0.7825827598571777 -0.4810132384300232 0.2821890711784363 0.7825827598571777 -0.4810132384300232 0.2821890711784363 0.7827998399734497 -0.4802669882774353 0.286208987236023 0.7827998399734497 -0.4802669882774353 0.286208987236023 0.7818241715431213 -0.4800053238868713 0.290501743555069 0.7818241715431213 -0.4800053238868713 0.290501743555069 0.7514697909355164 -0.5590887665748596 0.2840702533721924 0.7514697909355164 -0.5590887665748596 0.2840702533721924 0.7604013085365295 -0.548913836479187 0.2939048111438751 0.7604013085365295 -0.548913836479187 0.2939048111438751 0.7722594738006592 -0.5334889888763428 0.2982333302497864 0.7722594738006592 -0.5334889888763428 0.2982333302497864 0.755734920501709 -0.561151921749115 0.2723884582519531 0.755734920501709 -0.561151921749115 0.2723884582519531 0.7676315307617188 -0.548913836479187 0.2740978002548218 0.7676315307617188 -0.548913836479187 0.2740978002548218 0.7772659063339233 -0.5318727493286133 0.2766901254653931 0.7772659063339233 -0.5318727493286133 0.2766901254653931 0.7788809537887573 -0.4834471940994263 0.2772795259952545 0.7788809537887573 -0.4834471940994263 0.2772795259952545 0.7798362970352173 -0.5086091160774231 0.2776279151439667 0.7798362970352173 -0.5086091160774231 0.2776279151439667 0.7798051834106445 -0.4802669882774353 0.2944135665893555 0.7798051834106445 -0.4802669882774353 0.2944135665893555 0.7783564925193787 -0.5086091160774231 0.297825813293457 0.7783564925193787 -0.5086091160774231 0.297825813293457 0.7529666423797607 -0.5583648681640625 0.2799681127071381 0.7529666423797607 -0.5583648681640625 0.2799681127071381 0.7604292035102844 -0.546014130115509 0.2912820279598236 0.7604292035102844 -0.546014130115509 0.2912820279598236 0.7694398760795593 -0.5318727493286133 0.2981289625167847 0.7694398760795593 -0.5318727493286133 0.2981289625167847 0.7544642090797424 -0.5590887665748596 0.2758658826351166 0.7544642090797424 -0.5590887665748596 0.2758658826351166 0.7659631371498108 -0.546014130115509 0.2761222422122955 0.7659631371498108 -0.546014130115509 0.2761222422122955 0.774446427822113 -0.530255138874054 0.2765855491161346 0.774446427822113 -0.530255138874054 0.2765855491161346 0.7679250836372376 -0.4592308402061462 0.2732801735401154 0.7679250836372376 -0.4592308402061462 0.2732801735401154 0.7688785791397095 -0.4559683799743652 0.2745532691478729 0.7688785791397095 -0.4559683799743652 0.2745532691478729 0.7690914273262024 -0.4532025456428528 0.2772639095783234 0.7690914273262024 -0.4532025456428528 0.2772639095783234 0.7685301899909973 -0.4513538479804993 0.2810003161430359 0.7685301899909973 -0.4513538479804993 0.2810003161430359 0.7672816514968872 -0.4507051110267639 0.2851933538913727 0.7672816514968872 -0.4507051110267639 0.2851933538913727 0.7611505389213562 -0.5440757274627686 0.2876043915748596 0.7611505389213562 -0.5440757274627686 0.2876043915748596 0.7672161459922791 -0.530255138874054 0.2963924407958984 0.7672161459922791 -0.530255138874054 0.2963924407958984 0.775122344493866 -0.5086091160774231 0.2992783784866333 0.775122344493866 -0.5086091160774231 0.2992783784866333 0.7641456723213196 -0.5440757274627686 0.2793997526168823 0.7641456723213196 -0.5440757274627686 0.2793997526168823 0.7714604139328003 -0.5288839936256409 0.2781288921833038 0.7714604139328003 -0.5288839936256409 0.2781288921833038 0.776724100112915 -0.5086091160774231 0.2774169743061066 0.776724100112915 -0.5086091160774231 0.2774169743061066 0.766375720500946 -0.4624937176704407 0.2736393809318543 0.766375720500946 -0.4624937176704407 0.2736393809318543 0.7759590744972229 -0.4847645163536072 0.2771378755569458 0.7759590744972229 -0.4847645163536072 0.2771378755569458 0.7655348181724548 -0.4513538479804993 0.2892045080661774 0.7655348181724548 -0.4513538479804993 0.2892045080661774 0.7770491242408752 -0.4810132384300232 0.2973486185073853 0.7770491242408752 -0.4810132384300232 0.2973486185073853 0.7624562382698059 -0.5433959364891052 0.2834318280220032 0.7624562382698059 -0.5433959364891052 0.2834318280220032 0.7659268379211426 -0.5288839936256409 0.2932883203029633 0.7659268379211426 -0.5288839936256409 0.2932883203029633 0.7720103859901428 -0.5086091160774231 0.299067348241806 0.7720103859901428 -0.5086091160774231 0.299067348241806 0.7687625288963318 -0.5279688835144043 0.2810851335525513 0.7687625288963318 -0.5279688835144043 0.2810851335525513 0.7734904885292053 -0.5086091160774231 0.2788696885108948 0.7734904885292053 -0.5086091160774231 0.2788696885108948 0.7570374608039856 -0.4502493739128113 0.270230770111084 0.7570374608039856 -0.4502493739128113 0.270230770111084 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7657673954963684 -0.5279688835144043 0.2892895638942719 0.7657673954963684 -0.5279688835144043 0.2892895638942719 0.7694941163063049 -0.5086091160774231 0.2972239553928375 0.7694941163063049 -0.5086091160774231 0.2972239553928375 0.7739768028259277 -0.4821297526359558 0.298860102891922 0.7739768028259277 -0.4821297526359558 0.298860102891922 0.7667633295059204 -0.5276470184326172 0.2850039303302765 0.7667633295059204 -0.5276470184326172 0.2850039303302765 0.7706266045570374 -0.5086091160774231 0.2817656397819519 0.7706266045570374 -0.5086091160774231 0.2817656397819519 0.7728867530822754 -0.4858811497688294 0.2786497473716736 0.7728867530822754 -0.4858811497688294 0.2786497473716736 0.7561874985694885 -0.4533376097679138 0.272553950548172 0.7561874985694885 -0.4533376097679138 0.272553950548172 0.7644664645195007 -0.4652591943740845 0.2755759060382843 0.7644664645195007 -0.4652591943740845 0.2755759060382843 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7635570168495178 -0.4532025456428528 0.2924236953258514 0.7635570168495178 -0.4532025456428528 0.2924236953258514 0.7679563164710999 -0.5086091160774231 0.2940293550491333 0.7679563164710999 -0.5086091160774231 0.2940293550491333 0.7710549831390381 -0.4834471940994263 0.2987184822559357 0.7710549831390381 -0.4834471940994263 0.2987184822559357 0.7685694098472595 -0.5086091160774231 0.285663366317749 0.7685694098472595 -0.5086091160774231 0.285663366317749 0.7701312303543091 -0.4866270422935486 0.2815848290920258 0.7701312303543091 -0.4866270422935486 0.2815848290920258 0.7534245252609253 -0.4466072916984558 0.2801350057125092 0.7534245252609253 -0.4466072916984558 0.2801350057125092 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.767632007598877 -0.5086091160774231 0.2899697721004486 0.767632007598877 -0.5086091160774231 0.2899697721004486 0.768729567527771 -0.4847645163536072 0.2969449162483215 0.768729567527771 -0.4847645163536072 0.2969449162483215 0.7616479992866516 -0.4559683799743652 0.2943599820137024 0.7616479992866516 -0.4559683799743652 0.2943599820137024 0.7681118845939636 -0.4868890047073364 0.285496324300766 0.7681118845939636 -0.4868890047073364 0.285496324300766 0.7624879479408264 -0.4671074748039246 0.2787948548793793 0.7624879479408264 -0.4671074748039246 0.2787948548793793 0.7549169063568115 -0.455400288105011 0.2760307788848877 0.7549169063568115 -0.455400288105011 0.2760307788848877 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7673535346984863 -0.4858811497688294 0.2938092648983002 0.7673535346984863 -0.4858811497688294 0.2938092648983002 0.760098934173584 -0.4592308402061462 0.2947191298007965 0.760098934173584 -0.4592308402061462 0.2947191298007965 0.7671361565589905 -0.4866270422935486 0.2897888720035553 0.7671361565589905 -0.4866270422935486 0.2897888720035553 0.7607418298721314 -0.4677572846412659 0.2828062176704407 0.7607418298721314 -0.4677572846412659 0.2828062176704407 0.7534193992614746 -0.4561249613761902 0.2801329493522644 0.7534193992614746 -0.4561249613761902 0.2801329493522644 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.759145975112915 -0.4624937176704407 0.29344642162323 0.759145975112915 -0.4624937176704407 0.29344642162323 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.759493887424469 -0.4671074748039246 0.2869994938373566 0.759493887424469 -0.4671074748039246 0.2869994938373566 0.7519221901893616 -0.455400288105011 0.2842352688312531 0.7519221901893616 -0.455400288105011 0.2842352688312531 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7589325904846191 -0.4652591943740845 0.2907354831695557 0.7589325904846191 -0.4652591943740845 0.2907354831695557 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7506538033485413 -0.4533376097679138 0.2877134084701538 0.7506538033485413 -0.4533376097679138 0.2877134084701538 0.7498074173927307 -0.4502493739128113 0.2900377213954926 0.7498074173927307 -0.4502493739128113 0.2900377213954926</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID75\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"266\" source=\"#ID79\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"798\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID79\">0.6799178236397709 -0.69057367228955 0.2466166179264536 0.5877019751617741 -0.6735925825448549 0.4481957397516203 0.7591808928247313 -0.5897284098617264 0.2754356087578434 -0.7591808928247313 0.5897284098617264 -0.2754356087578434 -0.5877019751617741 0.6735925825448549 -0.4481957397516203 -0.6799178236397709 0.69057367228955 -0.2466166179264536 -0.9393751266512928 -0.0005868521936232807 -0.3428906925440976 -0.9393751425070286 -0.0005617318017703885 -0.3428906911791024 -0.939376177593132 -0.0006342400068577415 -0.3428877290165553 0.939376177593132 0.0006342400068577415 0.3428877290165553 0.9393751425070286 0.0005617318017703885 0.3428906911791024 0.9393751266512928 0.0005868521936232807 0.3428906925440976 0.8252148226182395 -0.5644944296083407 0.01914511614750935 -0.8252148226182395 0.5644944296083407 -0.01914511614750935 0.6458766624700151 -0.5638591779577424 0.5146903577000577 -0.6458766624700151 0.5638591779577424 -0.5146903577000577 -0.9393782460668849 -0.0005463059712546547 -0.3428822135458314 0.9393782460668849 0.0005463059712546547 0.3428822135458314 -0.9393725144611836 -0.0005830620076450874 -0.3428978552186772 0.9393725144611836 0.0005830620076450874 0.3428978552186772 0.9554902810441462 -0.2903868445625364 0.05209417755557585 -0.9554902810441462 0.2903868445625364 -0.05209417755557585 0.7434540010848137 -0.6677509343219258 0.03721341133485457 -0.7434540010848137 0.6677509343219258 -0.03721341133485457 0.8952730943270777 -0.3038198768900282 0.325852066098326 -0.8952730943270777 0.3038198768900282 -0.325852066098326 0.4478529470750022 -0.6063564480372432 0.6570841618239579 -0.4478529470750022 0.6063564480372432 -0.6570841618239579 -0.9393820145822192 -0.000581914026689231 -0.342871830361605 0.9393820145822192 0.000581914026689231 0.342871830361605 -0.9393664157576216 -0.0005364266369218085 -0.3429146383477124 0.9393664157576216 0.0005364266369218085 0.3429146383477124 0.9327407545336943 -0.2413581365757324 -0.2678449826683425 -0.9327407545336943 0.2413581365757324 0.2678449826683425 0.8341508868389282 -0.476763425058057 -0.2772885401756445 -0.8341508868389282 0.476763425058057 0.2772885401756445 0.7662683213594329 -0.287461068881913 0.5746294402119204 -0.7662683213594329 0.287461068881913 -0.5746294402119204 0.4613755936650907 -0.476538718404578 0.7483604822754253 -0.4613755936650907 0.476538718404578 -0.7483604822754253 -0.9393736916148986 -0.0007151470546898659 -0.3428943803366973 0.9393736916148986 0.0007151470546898659 0.3428943803366973 0.2088634488026968 -0.4500435417004254 0.8682377959568338 -0.2088634488026968 0.4500435417004254 -0.8682377959568338 -0.9393729573431053 -0.0006630127486160339 -0.3428964966670899 0.9393729573431053 0.0006630127486160339 0.3428964966670899 0.7749461224564865 -0.5980366748323877 -0.2044765092744824 -0.7749461224564865 0.5980366748323877 0.2044765092744824 0.9665019143844036 -0.03194751190439447 -0.2546633188631643 -0.9665019143844036 0.03194751190439447 0.2546633188631643 0.9968801234772516 -0.03631507232101158 0.07008020361199754 -0.9968801234772516 0.03631507232101158 -0.07008020361199754 0.9387135282855428 -0.03695080590496688 0.3427120507899905 -0.9387135282855428 0.03695080590496688 -0.3427120507899905 -0.943038533385406 0.196902834547097 0.2681559216158034 0.943038533385406 -0.196902834547097 -0.2681559216158034 -0.2067253711329811 -0.1242152919064481 0.9704819329521427 0.1507433781956068 -0.2948336904584761 0.9435833449679005 -0.1507433781956068 0.2948336904584761 -0.9435833449679005 0.2067253711329811 0.1242152919064481 -0.9704819329521427 -0.9393903858135525 -0.0007073923093318052 -0.3428486585028234 0.9393903858135525 0.0007073923093318052 0.3428486585028234 0.7333521400211251 -0.4462197364600544 -0.51291576844542 0.7259902234974308 -0.2943867505606677 -0.621509964908433 -0.7259902234974308 0.2943867505606677 0.621509964908433 -0.7333521400211251 0.4462197364600544 0.51291576844542 0.7761996123257705 -0.02081418239622952 -0.6301435801755819 -0.7761996123257705 0.02081418239622952 0.6301435801755819 0.762265959676282 -0.1430140804791905 -0.6312666469119754 -0.762265959676282 0.1430140804791905 0.6312666469119754 0.8075999694332556 -0.03496358636113148 0.5886933301814896 -0.8075999694332556 0.03496358636113148 -0.5886933301814896 0.5434396503299688 -0.2363915090035321 0.8054765055048313 -0.5434396503299688 0.2363915090035321 -0.8054765055048313 -0.9517535263931729 0.3063699007265154 -0.01739853232272874 0.9517535263931729 -0.3063699007265154 0.01739853232272874 -0.3085419422614615 -0.006578297159407321 0.9511879918670166 0.3085419422614615 0.006578297159407321 -0.9511879918670166 -0.5562186803025871 0.1930351131557664 -0.8083057743028863 0.5562186803025871 -0.1930351131557664 0.8083057743028863 0.4791735318885444 -0.1284248272304346 -0.8682740293756868 0.3877633052703881 -0.007981794208910882 -0.9217244219651503 -0.3877633052703881 0.007981794208910882 0.9217244219651503 -0.4791735318885444 0.1284248272304346 0.8682740293756868 0.7688467764772459 0.1267459813893369 -0.6267456346096091 -0.7688467764772459 -0.1267459813893369 0.6267456346096091 0.9411963276024344 0.212650316218457 -0.2625439314093566 -0.9411963276024344 -0.212650316218457 0.2625439314093566 0.9649683650122823 0.2559650058373194 0.05760182559800928 -0.9649683650122823 -0.2559650058373194 -0.05760182559800928 0.9045559699959583 0.2690886836502407 0.3307110180747711 -0.9045559699959583 -0.2690886836502407 -0.3307110180747711 -0.9251274501786493 0.3236103327476385 -0.1985335071591531 0.9251274501786493 -0.3236103327476385 0.1985335071591531 -0.7287461481921549 0.2665806127222086 0.6307644793548138 0.7287461481921549 -0.2665806127222086 -0.6307644793548138 0.1773436221600157 -0.1383801625069031 0.9743716797525103 -0.1773436221600157 0.1383801625069031 -0.9743716797525103 -0.7485752064243595 0.2979840073279869 -0.5923180663321707 0.7485752064243595 -0.2979840073279869 0.5923180663321707 -0.1511142449962449 0.2634252964934358 -0.9527704855454751 0.1511142449962449 -0.2634252964934358 0.9527704855454751 0.3701288015582322 -0.002611640970967592 -0.9289767755915674 -0.3701288015582322 0.002611640970967592 0.9289767755915674 0.3765260039300674 0.003050065597743506 -0.9264010284236004 -0.3765260039300674 -0.003050065597743506 0.9264010284236004 0.355911543415152 -0.001054782258333201 -0.9345190531488546 -0.355911543415152 0.001054782258333201 0.9345190531488546 0.7743024048645378 0.2570963877903078 0.5782363125973403 -0.7743024048645378 -0.2570963877903078 -0.5782363125973403 0.5752066770048471 -0.02965150030983746 0.8174705299020983 -0.5752066770048471 0.02965150030983746 -0.8174705299020983 -0.8901001040455957 0.3213871804143389 -0.3231595349720336 0.8901001040455957 -0.3213871804143389 0.3231595349720336 -0.8939305696985269 0.3901322278047513 0.2206467343664276 0.8939305696985269 -0.3901322278047513 -0.2206467343664276 -0.3189771771136281 -0.002228556801782159 0.9477597765336964 0.3189771771136281 0.002228556801782159 -0.9477597765336964 -0.8401802938848788 0.3172011463304369 -0.4398641910114704 0.8401802938848788 -0.3172011463304369 0.4398641910114704 -0.5502837979551655 0.3842861951266458 -0.7412906730447405 0.5502837979551655 -0.3842861951266458 0.7412906730447405 -0.1459412265344615 0.1197706494857031 -0.9820163694762882 0.1459412265344615 -0.1197706494857031 0.9820163694762882 0.37059784119191 0.007332092256201738 -0.9287644914223642 -0.37059784119191 -0.007332092256201738 0.9287644914223642 0.701316740430611 0.2955786602452652 -0.6486818058180739 -0.701316740430611 -0.2955786602452652 0.6486818058180739 0.8176991911943827 0.4874539738108439 -0.3061970870796612 -0.8176991911943827 -0.4874539738108439 0.3061970870796612 0.8111534106397504 0.5848325082018011 0.001040075906144079 -0.8111534106397504 -0.5848325082018011 -0.001040075906144079 0.7403772452589184 0.6147858898666835 0.2718084699262435 -0.7403772452589184 -0.6147858898666835 -0.2718084699262435 -0.9049687909099836 0.4175173690044793 -0.08191907017599744 0.9049687909099836 -0.4175173690044793 0.08191907017599744 -0.7492797496892516 0.1133132693665334 0.6524875168852504 0.7492797496892516 -0.1133132693665334 -0.6524875168852504 0.1877929087199124 -0.0187485058154597 0.9820296925063937 -0.1877929087199124 0.0187485058154597 -0.9820296925063937 -0.7513841927851167 0.4126586489627937 -0.5149122588061585 0.7513841927851167 -0.4126586489627937 0.5149122588061585 -0.5512846542936887 0.1792841408636472 -0.8148266237519931 0.5512846542936887 -0.1792841408636472 0.8148266237519931 -0.1675135795287171 0.02034497022041111 -0.9856598210641473 0.1675135795287171 -0.02034497022041111 0.9856598210641473 -0.1141953612150234 -0.2671837295399576 -0.956855409216089 0.1141953612150234 0.2671837295399576 0.956855409216089 -0.1373079995524726 -0.1084823874345631 -0.9845699999875051 0.1373079995524726 0.1084823874345631 0.9845699999875051 0.6173715680651242 0.5870686058801959 0.5236437710263469 -0.6173715680651242 -0.5870686058801959 -0.5236437710263469 0.5497245629401343 0.2145754652830064 0.8073167126963617 -0.5497245629401343 -0.2145754652830064 -0.8073167126963617 -0.854643214054378 0.4178076248024445 -0.3082560061503141 0.854643214054378 -0.4178076248024445 0.3082560061503141 -0.9493035167847738 0.1689353223568427 0.265110712496214 0.9493035167847738 -0.1689353223568427 -0.265110712496214 -0.3297320128049064 -0.0009892053169032501 0.9440740549366167 0.3297320128049064 0.0009892053169032501 -0.9440740549366167 -0.7912297299100904 0.1931499717911882 -0.5802142732676165 0.7912297299100904 -0.1931499717911882 0.5802142732676165 -0.5669909487172499 0.0336906701803891 -0.8230347518881016 0.5669909487172499 -0.0336906701803891 0.8230347518881016 -0.5397868028907887 -0.2010953174264371 -0.817429434712319 0.5397868028907887 0.2010953174264371 0.817429434712319 0.4490318189794837 0.1182232051121184 -0.885660035971475 -0.4490318189794837 -0.1182232051121184 0.885660035971475 0.6857865836606216 0.4576104799293926 -0.565941172145908 -0.6857865836606216 -0.4576104799293926 0.565941172145908 0.7315345787125549 0.633264681644932 -0.2526519406792432 -0.7315345787125549 -0.633264681644932 0.2526519406792432 0.7017768175496579 0.7123551285934313 0.007711622171104857 -0.7017768175496579 -0.7123551285934313 -0.007711622171104857 0.6385570036227747 0.7328260708349735 0.2349700045301061 -0.6385570036227747 -0.7328260708349735 -0.2349700045301061 -0.9805264826708569 0.1855593302681447 -0.06430825554744492 0.9805264826708569 -0.1855593302681447 0.06430825554744492 -0.7630835367065815 0.01780607266966092 0.6460545331343619 0.7630835367065815 -0.01780607266966092 -0.6460545331343619 0.184362495251173 0.12859871721751 0.9744089697220424 -0.184362495251173 -0.12859871721751 -0.9744089697220424 -0.9228079037311781 0.1909135490947522 -0.3346305269746243 0.9228079037311781 -0.1909135490947522 0.3346305269746243 -0.8053162660872498 0.03890319056273035 -0.5915676236402138 0.8053162660872498 -0.03890319056273035 0.5915676236402138 -0.5421984100238716 -0.1706823745167251 -0.8227322840371089 0.5421984100238716 0.1706823745167251 0.8227322840371089 -0.7308172781272795 -0.3129338373834094 -0.60661233041468 0.7308172781272795 0.3129338373834094 0.60661233041468 -0.4946782400134846 -0.4107007204322739 -0.7659101494911609 0.4946782400134846 0.4107007204322739 0.7659101494911609 0.5477687006081097 0.705830777747373 0.4491685249643411 -0.5477687006081097 -0.705830777747373 -0.4491685249643411 0.4230660660035778 0.4905603113941648 0.7618173565108086 -0.4230660660035778 -0.4905603113941648 -0.7618173565108086 -0.9639875372890381 0.03017184867160515 0.2642303682379318 0.9639875372890381 -0.03017184867160515 -0.2642303682379318 -0.3068048893822191 0.003413062047218768 0.951766311054676 0.3068048893822191 -0.003413062047218768 -0.951766311054676 -0.9386491960233321 0.03928995933307447 -0.3426280576665571 0.9386491960233321 -0.03928995933307447 0.3426280576665571 -0.7845604671848272 -0.1951769569427006 -0.5885327763254251 0.7845604671848272 0.1951769569427006 0.5885327763254251 -0.9393739826382334 0.0006643069749497271 -0.3428936853291808 0.9393739826382334 -0.0006643069749497271 0.3428936853291808 -0.9393627354388413 0.0006410171626454632 -0.3429245403377464 0.9393627354388413 -0.0006410171626454632 0.3429245403377464 -0.9393707871345157 0.0006503156483142318 -0.3429024662609445 0.9393707871345157 -0.0006503156483142318 0.3429024662609445 -0.9393858151819967 0.0007508352660037245 -0.3428610891910293 0.9393858151819967 -0.0007508352660037245 0.3428610891910293 -0.9393749440430065 0.0007494343761093713 -0.3428908760120547 0.9393749440430065 -0.0007494343761093713 0.3428908760120547 -0.9393706349601151 0.0007184916840570121 -0.3429027470644266 0.9393706349601151 -0.0007184916840570121 0.3429027470644266 -0.9393774967244869 0.0007332103915556257 -0.3428839177479142 0.9393774967244869 -0.0007332103915556257 0.3428839177479142 -0.9971242869243636 0.03652602847978859 -0.0664003438927319 0.9971242869243636 -0.03652602847978859 0.0664003438927319 -0.7373166601176144 -0.1107468138559625 0.6664077475043031 0.7373166601176144 0.1107468138559625 -0.6664077475043031 0.117200890801949 0.2980435715410924 0.9473299217581271 -0.117200890801949 -0.2980435715410924 -0.9473299217581271 -0.9195739989367627 -0.2021364701998765 -0.3369339815076314 0.9195739989367627 0.2021364701998765 0.3369339815076314 -0.710960969287894 -0.4576456895764533 -0.5339428086989381 0.710960969287894 0.4576456895764533 0.5339428086989381 -0.8327848895967537 -0.3265070939497657 -0.4470597781726753 0.8327848895967537 0.3265070939497657 0.4470597781726753 -0.9393686625186729 0.0007466450868659529 -0.3429080903084584 0.9393686625186729 -0.0007466450868659529 0.3429080903084584 0.4125985842833128 0.6241671444098168 0.663458954334555 -0.4125985842833128 -0.6241671444098168 -0.663458954334555 -0.9437441686078724 -0.1746371064618844 0.2808003298880828 0.9437441686078724 0.1746371064618844 -0.2808003298880828 -0.3076367097576911 0.009034419447857814 0.9514609997654672 0.3076367097576911 -0.009034419447857814 -0.9514609997654672 -0.9785309184006823 -0.1982016884260379 -0.05650957829417122 0.9785309184006823 0.1982016884260379 0.05650957829417122 -0.8292727824263236 -0.4679301182566809 -0.3055291422355518 0.8292727824263236 0.4679301182566809 0.3055291422355518 -0.8889076873737911 -0.3206636371950923 -0.3271359887089659 0.8889076873737911 0.3206636371950923 0.3271359887089659 -0.9393765001578003 0.0006796477173609782 -0.3428867583186357 -0.9393684132680966 0.0007475143312173088 -0.3429087712154695 0.9393684132680966 -0.0007475143312173088 0.3429087712154695 0.9393765001578003 -0.0006796477173609782 0.3428867583186357 -0.6972138643777165 -0.2684413314761774 0.664704504930415 0.6972138643777165 0.2684413314761774 -0.664704504930415 0.1853846871193252 0.454094635493599 0.8714531426287965 -0.1853846871193252 -0.454094635493599 -0.8714531426287965 -0.8860715267852453 -0.4605499260129334 -0.05264043189360979 0.8860715267852453 0.4605499260129334 0.05264043189360979 -0.9261804971935849 -0.3171068437321693 -0.2040415062590594 0.9261804971935849 0.3171068437321693 0.2040415062590594 -0.9393832217065231 0.0006577869272402029 -0.3428683859626487 0.9393832217065231 -0.0006577869272402029 0.3428683859626487 -0.8692191199475498 -0.4145367328698739 0.2694761930471368 0.8692191199475498 0.4145367328698739 -0.2694761930471368 -0.2112153012424403 0.1239840947019398 0.9695442438496582 0.2112153012424403 -0.1239840947019398 -0.9695442438496582 -0.9532471886245345 -0.3012622693908256 -0.02368211183384631 0.9532471886245345 0.3012622693908256 0.02368211183384631 -0.9435863980596823 -0.1957734034073722 0.2670533353378111 0.9435863980596823 0.1957734034073722 -0.2670533353378111</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID77\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"672\" source=\"#ID80\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1344\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID80\">1.619940663751411 -0.5362174691976966 1.613846557947723 -0.5017271521305829 1.836114619655016 -0.4916143526109842 5.771260477422451 0.0734402400975003 5.778516163528459 0.03908932103959196 5.683327532901288 0.0390735980818707 1.013713383320064 1.348938574794434 1.230728295956212 1.3909385420679 1.244657916080953 1.357901235720828 1.851542131741161 -0.6933212301949294 1.629281880835274 -0.7035397143174436 1.843711701956062 -0.6590665075198411 5.750992150815773 0.1020487929024041 5.771629536923543 0.07292988606899389 5.683697328424739 0.03856207864578082 5.778516333721045 0.0384503001934367 5.771278556264129 0.004093121027264076 5.683327703094029 0.03843457665509981 -1.36129387662527 0.7146292361098703 -1.373412434552412 0.7481054592727344 -1.085245988633699 0.7501305827269096 1.042264173133666 1.105680513481854 1.026680915775881 1.138277373706746 1.25762345915204 1.147271701316672 -0.9533113756527406 -0.9874977370150897 -0.9559962434775798 -0.9527577037205379 -0.6732718861217429 -0.9483976736708046 2.273858580643569 -2.276982527023954 2.2768013411733 -2.243724166483653 2.486285836560912 -2.226913973983119 5.719229934352534 0.1219010763660958 5.750119181521162 0.1024442784082792 5.68282113769674 0.03895967738315521 5.771592897026315 0.004656349823180232 5.750971845768776 -0.02447029179827442 5.683641419902921 0.03899681652744076 -1.860588190318298 3.154229687137683 -1.584460234643399 3.189343581926385 -1.576818068449811 3.157610702835063 -1.375882141952869 0.970829533683324 -1.095215580807107 1.007040408900814 -1.087715573356463 0.9728438253005183 0.299672488534154 3.464290623319485 0.5149517431601536 3.506137428848698 0.5345265100463381 3.476738120539312 -0.6674394257889194 -1.16710067635655 -0.9501623321362684 -1.17151854966625 -0.6747949134391407 -1.132884079746303 2.365664167113472 -2.760604537145424 2.57264895253524 -2.709699814011214 2.575020887356716 -2.742836544082699 5.684019527455241 0.1286430516699855 5.720449573903224 0.1218186530629061 5.684046663755639 0.03887565512981509 3.524288174154021 -4.153586329718942 3.532725286339523 -4.123172807589194 3.724314143050513 -4.087676906240269 5.750051068639311 -0.02526298293343521 5.719170715305216 -0.04472634600013511 5.682724014993886 0.03820633920893721 0.3769189552788338 2.847514955246447 0.3529358568563651 2.875002380782882 0.5878019828602177 2.887307729561664 -4.416007428413155 2.642239149393477 -4.424919397124604 2.673766394861575 -4.151657435624867 2.651191048843345 -1.827583867839416 2.501154979313117 -1.848194911464509 2.530112679597738 -1.564424291873586 2.533467744031272 -4.302746967210638 0.7640969585229374 -4.307230387189139 0.798619081474214 -4.029121585587762 0.7737329990590853 -4.191219685300024 -1.038349402467703 -4.190886611113217 -1.00364798615899 -3.914384642568414 -1.027570042644774 -0.4828936110712395 -2.827271504267202 -0.4766757241225178 -2.794444705642271 -0.2089133383215913 -2.782952236830445 5.685034350648311 0.1288511212866728 5.685066791064555 0.03908372583573953 5.648615988162037 0.1220102507647917 9.003925651227013 -1.582225864756775 8.988558356441066 -1.555360862926255 9.071398748130621 -1.42608384892452 3.928184648118962 -4.583338050699777 4.116833436486531 -4.511407321671815 4.117925898085868 -4.542155959012292 5.685319396431342 0.03944268274648118 5.721778563210672 -0.04348661136288807 5.685353146744804 -0.05032711075721768 -0.5611049140248847 4.911213825145168 -0.591503150633188 4.93114132602554 -0.3579215445064632 4.951825716237154 -0.7436788908035641 5.625439958852236 -0.5348362375169496 5.671412143014889 -0.5102955062754649 5.647465530726081 -4.301157819088672 4.797794894030605 -4.563957141887809 4.815755131679201 -4.299662100001466 4.825660364575621 -4.13972959611697 2.738187058951259 -4.412988596937202 2.760784571725561 -4.139352146361913 2.77022409267287 -2.54932334401649 5.358571036064803 -2.287104079908336 5.395311154017087 -2.278751543403887 5.367520261208195 -4.024892946958188 0.8033939850798529 -4.30300512909942 0.8282566773702877 -4.026111142228624 0.8380544365145123 -3.919065677488451 -1.057819433587963 -4.195559897560815 -1.033842018004807 -3.921993983162364 -1.023225768234507 -0.4185409081226615 -3.385515222052097 -0.1581648865923863 -3.341398190278865 -0.1508391842109891 -3.373179164807823 5.647657503310684 0.1215527002061922 5.684103679856141 0.03862491692143853 5.616777510095222 0.1020874951803267 2.589733919600477 7.003077785279044 2.554705917251536 6.992672442845839 2.401366746613284 7.058921181604996 9.393827081815365 0.2391323439353595 9.40266179659629 0.3973351886024577 9.432684295061447 0.3806420697550928 0.5025310397084046 -4.988877140356379 0.5144515645830259 -4.959580721650704 0.7579586323948353 -4.929498172098796 5.683669481526682 0.03910621148369183 5.683694654134307 -0.05066358376212161 5.647271910136958 -0.04383681065607089 -2.561959380242889 6.944335344099695 -2.596993967154515 6.954742003856614 -2.373592417839188 7.000190505670715 -2.702137029903522 7.132034911443729 -2.923756901269518 7.081475652123408 -2.732270563775011 7.148603879586429 -2.467435100021785 4.592509301004865 -2.494649281086138 4.614595820596708 -2.224049902225317 4.623013222445562 -5.36164484362815 4.586123819740367 -5.362192908928294 4.614010788500421 -5.096611154048744 4.582471502577178 -4.56688003112652 4.689727902756597 -4.57930200711115 4.716561020899873 -4.316484865191646 4.698762874224935 -5.440969886436216 2.692233501350221 -5.441119011272154 2.724271696265192 -5.164701718585753 2.688471620540477 -5.500788962026832 0.9402364799944278 -5.500283964943947 0.9749079010736622 -5.21701686762737 0.9360782703663532 -5.550290642101149 -0.7277531729571569 -5.549047328610682 -0.693096692605817 -5.26389781890407 -0.7324689153635181 -4.036256128223102 -2.954209003928445 -4.031561564195668 -2.922121583880448 -3.762855291998268 -2.941225105044576 5.616582470712541 0.1019192748789323 5.683907920827861 0.03845622416289126 5.595959486822548 0.07279163191781758 0.9485481630149456 4.719783956197679 0.9177410871016201 4.700247380171296 0.7602327978503798 4.75367462515718 3.072706013482189 7.028682182293315 2.892949862118324 7.084343539764074 2.923456550359094 7.100478524638944 8.667863687869488 -2.549622785560057 8.647926724476196 -2.525323072178259 8.715137888319841 -2.359345478300862 0.9112050698282426 -5.608788139435831 1.143556302597768 -5.544144004815419 1.153142210698788 -5.571685733466637 5.684599104662434 0.03904258699742706 5.64820599884873 -0.04390164775393446 5.617313552627433 -0.0244502760703929 -8.580844810615245 -2.52905113808391 -8.591414311221001 -2.557307821283608 -8.656712686176773 -2.389292430150153 -9.43662006136109 0.4074293301469209 -9.457663243961537 0.2325184534252773 -9.466623837960949 0.3907209150934053 -3.699148926196413 6.645872898822612 -3.731051530223564 6.660247001561825 -3.481143517260459 6.683439111398497 -3.64004296827223 6.855839769674712 -3.88949658934957 6.829795703199483 -3.65138347528706 6.87980995602046 -4.994125480006238 6.160863198340516 -5.006778514780404 6.137674035888735 -5.259108604376683 6.166333546234884 -5.126363043889109 4.469682957820198 -5.392010603201445 4.500877403808089 -5.11575059352798 4.496761427074305 -4.628176790071787 6.415622447031654 -4.876761810265183 6.426236510537431 -4.626726637297842 6.440133143373526 -5.185703839608864 2.590417465035719 -5.462130097249499 2.626174678216572 -5.178355964517593 2.622103462375783 -5.224788700592726 0.9007578834621121 -5.50804485453766 0.9396368862139409 -5.22164086321596 0.9353614403237647 -5.540320307336977 -0.6583556220892282 -5.256558835524158 -0.6629335021782893 -5.255143829357484 -0.6976067833444801 -3.777112743499354 -3.023051129941048 -4.04579065902626 -3.003702364183223 -3.781672648037275 -2.99121622453559 5.596219326529494 0.0732574920260865 5.684168278331471 0.03892290506316366 5.588990967175316 0.03890468605894603 0.4998097920681904 2.453886604604937 0.4756079876757702 2.426516097881019 0.3171209089754962 2.483268165560494 1.267798329451585 5.383283569880579 1.423771492851449 5.327138408258841 1.242077378110208 5.360117080156955 3.716323320198441 6.707602605352751 3.684422999876136 6.693231963591493 3.498317961081459 6.745168025005574 9.344200343447417 1.16030958054039 9.26796239366251 1.325311722897352 9.299679747214773 1.330948062172947 -3.638589467194065 -5.144094677951412 -3.631313215788357 -5.116118827494002 -3.375292523768128 -5.123506085704157 5.684333159636095 0.03916320953088037 5.617046629634652 -0.02432901216832 5.596405786960629 0.004791846405160305 -1.979998524869254 -4.292231232359522 -1.966019939634636 -4.321352069247738 -2.156718727576579 -4.245419612231467 -3.356419095637832 -4.784552375798672 -3.177423250337188 -4.876439142279571 -3.354261724503482 -4.815266301684429 -7.561216541310131 -4.115292821471752 -7.573151951854512 -4.142644503106019 -7.633207647570638 -3.96834156804957 -9.293052612876728 1.341556749601224 -9.401161974604914 1.182243650014989 -9.32477316452411 1.347202829535455 -4.869964308023862 6.377934111765112 -4.8848413574723 6.400675942944742 -4.636245593820659 6.390218752929163 -6.07286041884511 5.470690714683427 -6.332373990554641 5.525748821587173 -6.324262199234997 5.550163840109545 -4.982097524888515 6.172184478721647 -5.233853154708968 6.176821155594962 -5.234332882127718 6.201355482769962 -7.247121350747163 4.027842168054396 -7.241468022229128 4.055827198921337 -6.958920755375172 3.987688333365518 -7.64215543430428 2.706222353546021 -7.636284749546447 2.738098460390365 -7.333114764115316 2.667168061082732 -7.904473707186456 1.593705962947574 -7.897600379347402 1.627974058318311 -7.582171699315598 1.552126328674518 -8.129314786199577 0.6211338347343134 -8.121211181959145 0.6552342303022353 -7.803191481485429 0.574859198644154 -5.603895166475303 -2.464050242442858 -5.601954388676592 -2.432050278125148 -5.320166773080404 -2.469757582269813 5.684168133723978 0.03939144153358901 5.596240432571903 0.005020598424682573 5.58899082256767 0.0393732230226368 0.2609407075899523 0.7662683350253778 0.2464178553673385 0.7333756776812409 0.08244092777695111 0.7946065141369463 0.6692709134033237 3.073392454663266 0.8275744370277732 3.016324231663723 0.6489799187466167 3.044290578172518 2.914087841273369 4.373778203064759 2.886381843409347 4.352074408209947 2.715611208776685 4.394363588837614 4.112391869781885 6.752711646038292 3.916918130189838 6.78670937210445 3.929066245460942 6.81044191996446 8.597573059976908 3.1134257125061 8.569003321645953 3.101210943013873 8.400959997930153 3.23573385271581 -3.645573854009589 -5.205905116017523 -3.396171407572772 -5.186190643465025 -3.389567453954982 -5.21359278206677 -0.6237742695409254 -2.262293632617847 -0.6162776662729164 -2.29510980438105 -0.8008728259144898 -2.228944788320345 -1.324403197915005 -2.887697376925141 -1.142707894193754 -2.958656093541742 -1.322884421832762 -2.920867847297965 1.44619367991595 -4.643821647288538 1.46463209016117 -4.670947905366278 1.268428130761601 -4.616933790719322 -0.1346704162189716 -5.69497690456166 0.05098800274990267 -5.768526732673512 -0.1407112346029149 -5.723136177364614 -8.30779216894544 3.394367136317387 -8.48326313202746 3.292850927761829 -8.511445552161902 3.305619598484514 -7.962904352894063 3.90877979757036 -8.174643574304826 3.83263813770047 -7.976468699194655 3.930877081942786 5.244229109527849 5.959529036035123 5.217118252744867 5.978516796625582 5.249348931055446 6.170935451051902 -6.213938937078119 5.334279439823904 -6.243474750498419 5.317684818608774 -6.496968739352367 5.392932828999133 -3.053093782863408 6.909506753450412 -3.07222231678322 6.889245278357064 -3.296820632536994 6.95933983652242 -7.08483066240791 3.732139032860339 -7.368235455741166 3.798037197539121 -7.059931435450571 3.755532283334331 -7.405682702620627 2.478921781926116 -7.708984472013555 2.549502668052206 -7.386582836601299 2.508403793861222 -7.606157635594927 1.49141616921262 -7.921497907093262 1.567491054517074 -7.594546020387012 1.524988479135021 -8.096383167409147 0.7057872019862346 -7.774834056208714 0.6607276196604602 -7.778112136670967 0.6260301919090223 -5.572052791773422 -2.344558996903286 -5.295821959913587 -2.34974542234395 -5.290132020227484 -2.381645242672343 -0.04493796829425523 -0.6804333687833346 -0.04812183143536819 -0.7151659775523823 -0.2216357719088419 -0.6511069129760208 0.2146031608462551 1.019503007775851 0.378776636687172 0.9585989727452969 0.2016363736440807 0.9862242392562028 2.851193736355579 2.121199178873979 2.830530186218446 2.092259984246353 2.671287314240473 2.136986624537561 3.210433857256208 5.217882736047205 3.380004084656394 5.172703069927436 3.200391430161433 5.190440114097691 4.874548435766551 6.429839837451818 4.8596573276466 6.407094835190613 4.640829891298521 6.442130835704692 8.140814775315286 3.78974305685948 7.942648003681906 3.887992661778128 7.956213016474014 3.910087667730711 -5.73064914030279 -4.258906631492967 -5.457350933574708 -4.295846322779151 -5.733416338800293 -4.286711804356949 -0.1979483730046061 -0.9529180326137299 -0.3759270801434889 -0.9226072555480928 -0.3709597723457686 -0.8880232614150131 2.471740617996483 -2.39641028024239 2.483667763629212 -2.428248508037898 2.304631391555998 -2.380038236975361 1.706465342929101 -3.398810757327853 1.882755430859778 -3.45292282266539 1.703883154092827 -3.43104364641585 3.663826807537205 -5.058099271887226 3.867017257693361 -5.071442611882878 3.875328351798353 -5.099241550009557 3.546949641461736 -5.204786830846116 3.757786403330053 -5.247989096006686 3.540891660310312 -5.232263500799691 -3.719983169175907 6.709259388348319 -3.955041191334191 6.741412177170066 -3.950707790311418 6.76571302493091 3.207237620922375 6.760309367766829 3.205697714796032 6.884373949705359 3.237968071284741 6.87129973348397 2.71836963588698 6.955938591004199 2.643738667999106 7.139481731582862 2.67439868026482 7.146913204001043 -6.673875480347463 4.929980155275759 -6.827551760709345 4.985726092375737 -6.799759036566416 5.004089692531792 -8.041638509701523 3.462054168216795 -8.019730434175074 3.487231284284867 -7.867897563958934 3.421921478705819 -8.465434558910218 2.594488712837228 -8.447798478652601 2.62452979293724 -8.280260285826683 2.556644135527951 -8.489853494364654 2.015456063645019 -8.681731702440303 2.054683786781513 -8.668209328905455 2.087810513189702 -8.615883842455308 1.675419869276102 -8.809070055157438 1.71822637717244 -8.799456048663686 1.752187564289123 -8.383413956562865 -0.208860780062662 -8.074128844644719 -0.2957553748595546 -8.393006850053908 -0.2401766799348658 2.910415331761248 0.5002001580095155 2.90001779392691 0.4663678523011883 2.742913490552973 0.5138640038345921 3.061575968768659 2.979150420011122 3.220724728902601 2.934216961777545 3.053178380804451 2.947538842408506 4.611258982889346 4.752849140734649 4.598727642118561 4.72604749443345 4.393635926502052 4.760028617231185 4.890639490138161 6.416107688973201 4.67327925239847 6.427166271375205 4.671952480520878 6.451682150945595 3.558310174515268 6.858448376779172 3.294490571738939 6.834771662509112 3.552510865243352 6.88255749581085 -5.660762004745068 -4.187828860526787 -5.395863931408391 -4.195431560943416 -5.387067279186301 -4.222904746339228 2.845925978076525 -0.8490627157231938 2.847239824624465 -0.8838514188327487 2.682807024405622 -0.8354986339624942 2.667455759507103 -1.251624583802213 2.500120987715268 -1.236746312810481 2.503562196626869 -1.202151807089803 4.246404101003895 -2.878698216903488 4.252006989534803 -2.910692879271482 4.052017385987604 -2.871333267858569 3.999075742993286 -2.998898309632048 4.198842363777092 -3.038952548225522 3.995209126676578 -3.030793600690773 5.224559176740601 -4.471932540129242 5.451866419099465 -4.467714518620189 5.45342011706218 -4.495574607842248 5.276578896826958 -4.346573707344106 5.285998818079652 -4.319227069055942 5.515077591108759 -4.341525387462998 8.76992928250457 0.7931378170681543 8.781246852195157 0.822964758607844 8.91750916719236 0.8369004254560353 5.454819931525203 5.774979439755891 5.438892046984051 5.801636547383986 5.508081672766806 5.901339801016119 8.307666585764583 -1.123804771503647 8.318244655158576 -1.094450092419963 8.543170996483735 -1.070773087765305 -6.99445915595618 4.617630292792419 -7.029238702488101 4.606699740324029 -7.159954343912172 4.675437740008153 -8.077557467285487 3.107186595085773 -8.231674759177464 3.169096597927384 -8.047749834980579 3.127652876541906 -8.377298220836005 2.39661395425165 -8.545373207110847 2.463673439697669 -8.353563822226445 2.424237975417156 -8.49958007699728 2.012770143201586 -8.515489481780616 1.980273254157807 -8.693719349471335 2.052819540140382 -8.589192053205473 1.720319789859238 -8.596166837426104 1.685934658432313 -8.780249100694144 1.761942752364017 -8.298043634641619 -0.1220147028500511 -7.991646190182824 -0.1723444802677662 -7.987133271535171 -0.2052426539596612 2.901507908494777 0.8562299904322406 3.058848826558489 0.8092210452807116 2.895607012733823 0.8218373312986727 4.518024461486122 2.698701214804513 4.509072063129959 2.667183999331559 4.314262999384527 2.704541868593081 4.43615323997166 4.859893217004145 4.641148657717239 4.825554387755506 4.437417693647018 4.83201999369583 5.231687984906028 6.202493182026287 4.980411586168624 6.222385037355247 5.23216710628925 6.227028374247662 3.31070475680292 6.909450371292843 3.066999198626133 6.859552613209947 3.047861030092218 6.879808391990907 -8.852141192071063 -0.4721833525155892 -8.572104589030143 -0.584149427709649 -8.865553288376802 -0.4984767425031667 4.383277596557019 -0.9703164350082597 4.384233889511629 -1.00500854075006 4.192074091795119 -0.9644786168449441 4.176033042626822 -1.01111114523631 4.368146312940617 -1.05177733749157 4.173686020948338 -1.045732735005197 5.319938273639886 -2.597084929179837 5.320816204336861 -2.629117487317422 5.10006898952085 -2.599084903763264 5.13820867252681 -2.461632476964901 5.359088894745606 -2.491053648364738 5.131738605725835 -2.493436923101918 8.407159244259502 -1.21726296456864 8.620821399399713 -1.162140338743266 8.63127955419581 -1.189252455245153 4.528587017767162 -0.02641170334488021 4.497699283455415 -0.04586685038860851 4.46130134568214 0.03707477433640671 8.803758288345591 0.7456149804471391 8.939097696542799 0.7932262656363351 8.939436819185779 0.7627160713532108 4.460459536095858 0.03671129283708071 4.49685343594146 -0.04623142840983539 4.460430386658008 -0.05305915144846824 4.461401517562886 0.03686151698430007 4.461377258793934 -0.05290892820156359 4.424948741815012 -0.04606697911144887 4.460201965536864 0.03699704956974839 4.423743437030018 -0.04592988149532395 4.392871851205832 -0.02646411253551594 4.459853063353561 0.03717094384205769 4.392521668794053 -0.02628937768656717 4.371892838109163 0.002837012659116112 4.46030882180899 0.03651959677391967 4.372349501451534 0.002184231002592093 4.365120183165604 0.03654031200201141 4.372372628472493 0.07151854504854761 4.460309042390368 0.03714823679994782 4.365120403746716 0.03716895127662532 -8.692847217974084 1.545343360804858 -8.88046059017552 1.595736369065635 -8.873804038316852 1.628408569577701 4.457594078254536 0.8211222757485189 4.453360548884101 0.7865779258220966 4.263106471524915 0.8266050940870721 4.349027318188401 2.812213945169185 4.543822040409512 2.774809825120358 4.349329252298876 2.780177696524552 5.287626271073044 4.684981160200084 5.287219963686873 4.657092025211705 5.049061512377468 4.682545124536409 5.212927123046342 6.185565883910937 4.974387162667712 6.181924996350574 4.961601159714077 6.205066389024376 -2.769837363284249 7.106560558728847 -2.875320188287005 6.890935407414553 -2.800658644767653 7.113566861210577 -8.40635272720972 -0.7404675769389774 -8.397635060647142 -0.7701983909791447 -8.685551039872424 -0.6713702382917143 4.277606690294204 0.8717851468593341 4.467880180442919 0.8318151239353879 4.276651714627878 0.8371229192208669 5.277518695450643 -0.7861156721666167 5.2780353752537 -0.8207840754168208 5.060271186983167 -0.7876014305827878 5.072896601442999 -0.7361859931783535 5.290693392453745 -0.7692359557974751 5.070818838281209 -0.7708377493860409 7.752320879486677 -0.815634093393138 7.960279861130616 -0.7854237819541431 7.966929169676278 -0.8172053419659937 7.756268297219876 -0.5106367060453658 7.970877719783358 -0.5121091333148329 7.749542183438701 -0.5432998544074876 4.54896506610784 0.002494817847126293 4.52832980994388 -0.02662167391076578 4.461045078771744 0.03686542088697709 8.471142945786282 0.7317644909466251 8.608364977868966 0.727454718084664 8.464646331275617 0.6988226688018977 4.392805397245467 0.1002596017002513 4.460091999127723 0.03676921779013002 4.372156016577284 0.07114020902000419 -8.661765550226443 1.490152638466672 -8.660010180941812 1.456837393641249 -8.844288917909376 1.535252928071866 5.282073843692743 2.77826056913915 5.281990368352663 2.74622350729675 5.054714328947004 2.77652368092618 5.25524872040469 4.538789907910283 5.027891262692011 4.536893693824378 5.017033020420198 4.563909288279159 6.324735945896386 5.547955898162823 6.057108866597945 5.517318246759454 6.316625784021564 5.572368795969156 -5.171992694385841 5.96078681863121 -5.199100239339689 5.941802143399436 -5.177102212115647 6.172193961391411 -8.734637861296427 2.253355305893985 -8.57512569154439 2.150988707709166 -8.742758106069079 2.223519983419607 5.271435059783841 0.9659776987075038 5.271663234763903 0.9313077956459605 5.051558756737666 0.9645213127699988 5.259973374209189 0.8804458520093909 5.042724405532344 0.8790986888390493 5.039883034129148 0.9137172972381544 7.642158445271394 0.2861765293495928 7.648252285721511 0.2518190687301 7.437572311646674 0.2625473983699317 7.447216269288958 0.3897562336038156 7.657907695074914 0.379167991525558 7.448679477244231 0.3549816491299752 8.457255599261766 0.4005989649232058 8.594723473570284 0.429011511997523 8.594458268094895 0.3959232265597514 4.55659693984642 0.03750324897989772 4.549340962523218 0.003151046568942362 4.461420229561208 0.03752046925485183 4.423674434264032 0.1197001367480126 4.460076033603965 0.03675617630689763 4.392789490340109 0.1002465986616575 5.254291552091464 2.622599776821264 5.034414921811282 2.621174292000391 5.027005795765879 2.652854811490564 7.075637084872096 4.166225394866737 7.08174621608214 4.138302128714233 6.833895663818552 4.135070975690361 6.165886087263003 5.39481491611344 6.136112467866505 5.411145787013433 6.404110533357063 5.439706168541727 -2.762575856170686 7.000904422486411 -2.790781249043742 6.846675808502423 -2.795603585611011 6.989067957824188 -8.702669161745337 1.568940343562624 -8.695452768587304 1.538337791588719 -8.868656310130136 1.625858514697937 7.458692868491122 1.49558732789169 7.464888725195936 1.46124074692423 7.24913406967041 1.473268274111121 7.454405578342742 1.335080218524416 7.249464990515346 1.313435234817762 7.238656992412899 1.347174936169087 8.322582891898371 0.9974536615701256 8.327949185315202 0.9629170762017794 8.185646700759257 0.9744376532228073 8.200077318221679 1.114587443871882 8.342404957382749 1.103260797492331 8.203418269607138 1.079863562102585 4.549359237757692 0.07112002494902815 4.556596724507694 0.03676511143898095 4.461420014222696 0.03678233244741672 4.461100903142934 0.1269562658758845 4.461074953590937 0.03718753011993907 4.424668563021831 0.120130189205036 7.312622210591013 2.790872194196395 7.318783500968848 2.759026713980688 7.089901216091215 2.766524808805758 7.092058531659565 3.821989058166489 6.869658853247844 3.795887237322841 6.844204893344118 3.818907879671726 6.829884711987325 5.010664637021248 6.648412208270865 4.973277014582632 6.802085706819893 5.029023555430791 -5.377629787839329 5.7964764533189 -5.393577288687887 5.769819168261567 -5.430793614409249 5.922860502356951 7.300968871997586 2.438955546683173 7.09134858737015 2.416996713956953 7.072084155091899 2.446407557494349 8.162200133225813 1.793737807869269 8.174643604179328 1.760348669530641 8.022843958062268 1.771727549671615 8.159494923662852 1.617996035113387 8.022148715622286 1.596545134562194 8.007705996141191 1.629463060000011 4.528643064032052 0.1003865767564764 4.549261847374723 0.07125912380428487 4.461322430038266 0.03692173845406211 4.460546063433141 0.1268673404645122 4.496964697452659 0.1200267885895665 4.460517218740209 0.03709860525537007 7.799694177759466 3.677299978200762 7.822581943645002 3.652668286093621 7.646968487033075 3.646328395507186 6.896875631760279 4.734159474761321 6.861827229868409 4.744522600559201 7.044703940237076 4.777404512500175 8.039431588244 2.692269467299187 8.057984007583832 2.662576694149323 7.894354637798699 2.668250721389529 8.036198704186658 2.299836424912813 7.896775844967872 2.278089078509356 7.872566136927246 2.305453098225462 4.497544049806503 0.1199618105192656 4.528420815506976 0.1004971687639112 4.461099362781186 0.03703286791730859 7.859066668103008 3.266107975803739 7.714332995525491 3.240840086120174 7.683424882464392 3.260273915005729</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"448\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 16 12 6 13 8 14 9 14 11 13 17 12 7 15 18 16 8 17 9 17 19 16 10 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 28 30 16 31 8 32 9 32 17 31 29 30 18 33 30 34 8 35 9 35 31 34 19 33 12 36 20 37 32 38 33 38 21 37 13 36 2 39 24 40 20 41 21 41 25 40 3 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 26 48 38 49 14 50 15 50 39 49 27 48 40 51 28 52 8 53 9 53 29 52 41 51 26 54 42 55 38 56 39 56 43 55 27 54 30 57 44 58 8 59 9 59 45 58 31 57 46 60 22 61 34 62 35 62 23 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 40 78 8 79 54 80 55 80 9 79 41 78 42 81 56 82 57 83 58 83 59 82 43 81 42 84 57 85 38 86 39 86 58 85 43 84 8 87 44 88 60 89 61 89 45 88 9 87 62 90 46 91 63 92 64 92 47 91 65 90 46 93 34 94 63 95 64 95 35 94 47 93 66 96 32 97 48 98 49 98 33 97 67 96 48 99 20 100 50 101 51 101 21 100 49 99 34 102 32 103 68 104 69 104 33 103 35 102 50 105 24 106 52 107 53 107 25 106 51 105 52 108 36 109 70 110 71 110 37 109 53 108 38 111 72 112 36 113 37 113 73 112 39 111 54 114 8 115 74 116 75 116 9 115 55 114 56 117 54 118 76 119 77 119 55 118 59 117 56 120 76 121 57 122 58 122 77 121 59 120 38 123 57 124 72 125 73 125 58 124 39 123 8 126 60 127 78 128 79 128 61 127 9 126 80 129 62 130 81 131 82 131 65 130 83 129 81 132 62 133 63 134 64 134 65 133 82 132 63 135 34 136 68 137 69 137 35 136 64 135 66 138 48 139 84 140 85 140 49 139 67 138 68 141 32 142 66 143 67 143 33 142 69 141 48 144 50 145 86 146 87 146 51 145 49 144 50 147 52 148 88 149 89 149 53 148 51 147 52 150 70 151 90 152 91 152 71 151 53 150 36 153 72 154 70 155 71 155 73 154 37 153 74 156 8 157 92 158 93 158 9 157 75 156 54 159 74 160 94 161 95 161 75 160 55 159 54 162 94 163 76 164 77 164 95 163 55 162 57 165 76 166 96 167 97 167 77 166 58 165 57 168 96 169 72 170 73 170 97 169 58 168 8 171 78 172 98 173 99 173 79 172 9 171 78 174 80 175 100 176 101 176 83 175 79 174 100 177 80 178 81 179 82 179 83 178 101 177 81 180 63 181 102 182 103 182 64 181 82 180 102 183 63 184 68 185 69 185 64 184 103 183 84 186 104 187 66 188 67 188 105 187 85 186 84 189 48 190 86 191 87 191 49 190 85 189 106 192 68 193 66 194 67 194 69 193 107 192 86 195 50 196 88 197 89 197 51 196 87 195 88 198 52 199 90 200 91 200 53 199 89 198 70 201 108 202 90 203 91 203 109 202 71 201 70 204 72 205 110 206 111 206 73 205 71 204 92 207 8 208 112 209 113 209 9 208 93 207 74 210 92 211 114 212 115 212 93 211 75 210 94 213 74 214 114 215 115 215 75 214 95 213 76 216 94 217 116 218 117 218 95 217 77 216 76 219 116 220 96 221 97 221 117 220 77 219 72 222 96 223 110 224 111 224 97 223 73 222 8 225 98 226 118 227 119 227 99 226 9 225 98 228 78 229 120 230 121 230 79 229 99 228 120 231 78 232 100 233 101 233 79 232 121 231 100 234 81 235 122 236 123 236 82 235 101 234 122 237 81 238 102 239 103 239 82 238 123 237 102 240 68 241 106 242 107 242 69 241 103 240 124 243 104 244 84 245 85 245 105 244 125 243 104 246 106 247 66 248 67 248 107 247 105 246 84 249 86 250 126 251 127 251 87 250 85 249 86 252 88 253 128 254 129 254 89 253 87 252 88 255 90 256 130 257 131 257 91 256 89 255 90 258 108 259 132 260 133 260 109 259 91 258 70 261 110 262 108 263 109 263 111 262 71 261 8 264 118 265 112 266 113 266 119 265 9 264 92 267 112 268 134 269 135 269 113 268 93 267 114 270 92 271 134 272 135 272 93 271 115 270 94 273 114 274 136 275 137 275 115 274 95 273 94 276 136 277 116 278 117 278 137 277 95 276 96 279 116 280 138 281 139 281 117 280 97 279 96 282 138 283 110 284 111 284 139 283 97 282 118 285 98 286 140 287 141 287 99 286 119 285 140 288 98 289 120 290 121 290 99 289 141 288 120 291 100 292 142 293 143 293 101 292 121 291 142 294 100 295 122 296 123 296 101 295 143 294 144 297 122 298 102 299 103 299 123 298 145 297 144 300 102 301 106 302 107 302 103 301 145 300 124 303 146 304 104 305 105 305 147 304 125 303 126 306 124 307 84 308 85 308 125 307 127 306 104 309 148 310 106 311 107 311 149 310 105 309 126 312 86 313 128 314 129 314 87 313 127 312 128 315 88 316 130 317 131 317 89 316 129 315 130 318 90 319 132 320 133 320 91 319 131 318 108 321 150 322 132 323 133 323 151 322 109 321 110 324 152 325 108 326 109 326 153 325 111 324 112 327 118 328 154 329 155 329 119 328 113 327 134 330 112 331 154 332 155 332 113 331 135 330 114 333 134 334 156 335 157 335 135 334 115 333 136 336 114 337 156 338 157 338 115 337 137 336 116 339 136 340 158 341 159 341 137 340 117 339 116 342 158 343 138 344 139 344 159 343 117 342 138 345 152 346 110 347 111 347 153 346 139 345 118 348 140 349 154 350 155 350 141 349 119 348 140 351 120 352 160 353 161 353 121 352 141 351 160 354 120 355 142 356 143 356 121 355 161 354 162 357 142 358 122 359 123 359 143 358 163 357 162 360 122 361 144 362 145 362 123 361 163 360 148 363 144 364 106 365 107 365 145 364 149 363 164 366 146 367 124 368 125 368 147 367 165 366 146 369 148 370 104 371 105 371 149 370 147 369 166 372 124 373 126 374 127 374 125 373 167 372 126 375 128 376 168 377 169 377 129 376 127 375 128 378 130 379 170 380 171 380 131 379 129 378 172 381 130 382 132 383 133 383 131 382 173 381 174 384 132 385 150 386 151 386 133 385 175 384 152 387 150 388 108 389 109 389 151 388 153 387 134 390 154 391 176 392 177 392 155 391 135 390 156 393 134 394 176 395 177 395 135 394 157 393 136 396 156 397 178 398 179 398 157 397 137 396 136 399 178 400 158 401 159 401 179 400 137 399 158 402 180 403 138 404 139 404 181 403 159 402 138 405 180 406 152 407 153 407 181 406 139 405 154 408 140 409 182 410 183 410 141 409 155 408 140 411 160 412 182 413 183 413 161 412 141 411 160 414 142 415 184 416 185 416 143 415 161 414 184 417 142 418 162 419 163 419 143 418 185 417 186 420 162 421 144 422 145 422 163 421 187 420 148 423 186 424 144 425 145 425 187 424 149 423 164 426 188 427 146 428 147 428 189 427 165 426 166 429 164 430 124 431 125 431 165 430 167 429 146 432 190 433 148 434 149 434 191 433 147 432 168 435 166 436 126 437 127 437 167 436 169 435 168 438 128 439 170 440 171 440 129 439 169 438 170 441 130 442 172 443 173 443 131 442 171 441 174 444 172 445 132 446 133 446 173 445 175 444 192 447 174 448 150 449 151 449 175 448 193 447 152 450 194 451 150 452 151 452 195 451 153 450 176 453 154 454 182 455 183 455 155 454 177 453 156 456 176 457 196 458 197 458 177 457 157 456 178 459 156 460 196 461 197 461 157 460 179 459 178 462 198 463 158 464 159 464 199 463 179 462 158 465 198 466 180 467 181 467 199 466 159 465 180 468 194 469 152 470 153 470 195 469 181 468 182 471 160 472 200 473 201 473 161 472 183 471 200 474 160 475 184 476 185 476 161 475 201 474 184 477 162 478 202 479 203 479 163 478 185 477 202 480 162 481 186 482 187 482 163 481 203 480 190 483 186 484 148 485 149 485 187 484 191 483 188 486 164 487 204 488 205 488 165 487 189 486 188 489 190 490 146 491 147 491 191 490 189 489 204 492 164 493 206 494 207 494 165 493 205 492 204 495 206 496 208 497 209 497 207 496 205 495 204 498 208 499 210 500 211 500 209 499 205 498 204 501 210 502 212 503 213 503 211 502 205 501 204 504 212 505 214 506 215 506 213 505 205 504 216 507 204 508 214 509 215 509 205 508 217 507 192 510 150 511 194 512 195 512 151 511 193 510 176 513 182 514 218 515 219 515 183 514 177 513 196 516 176 517 218 518 219 518 177 517 197 516 178 519 196 520 220 521 221 521 197 520 179 519 178 522 220 523 198 524 199 524 221 523 179 522 198 525 222 526 180 527 181 527 223 526 199 525 222 528 194 529 180 530 181 530 195 529 223 528 218 531 182 532 200 533 201 533 183 532 219 531 200 534 184 535 224 536 225 536 185 535 201 534 224 537 184 538 202 539 203 539 185 538 225 537 226 540 202 541 186 542 187 542 203 541 227 540 226 543 186 544 190 545 191 545 187 544 227 543 228 546 188 547 204 548 205 548 189 547 229 546 228 549 190 550 188 551 189 551 191 550 229 549 230 552 204 553 216 554 217 554 205 553 231 552 232 555 192 556 194 557 195 557 193 556 233 555 196 558 218 559 234 560 235 560 219 559 197 558 196 561 234 562 220 563 221 563 235 562 197 561 220 564 236 565 198 566 199 566 237 565 221 564 236 567 222 568 198 569 199 569 223 568 237 567 222 570 232 571 194 572 195 572 233 571 223 570 218 573 200 574 238 575 239 575 201 574 219 573 200 576 224 577 238 578 239 578 225 577 201 576 224 579 202 580 240 581 241 581 203 580 225 579 240 582 202 583 226 584 227 584 203 583 241 582 228 585 226 586 190 587 191 587 227 586 229 585 242 588 228 589 204 590 205 590 229 589 243 588 244 591 204 592 245 593 246 593 205 592 247 591 218 594 238 595 234 596 235 596 239 595 219 594 220 597 234 598 248 599 249 599 235 598 221 597 248 600 236 601 220 602 221 602 237 601 249 600 236 603 250 604 222 605 223 605 251 604 237 603 250 606 232 607 222 608 223 608 233 607 251 606 238 609 224 610 252 611 253 611 225 610 239 609 224 612 240 613 252 614 253 614 241 613 225 612 240 615 226 616 242 617 243 617 227 616 241 615 242 618 226 619 228 620 229 620 227 619 243 618 254 621 242 622 204 623 205 623 243 622 255 621 256 624 204 625 244 626 247 626 205 625 257 624 234 627 238 628 258 629 259 629 239 628 235 627 234 630 258 631 248 632 249 632 259 631 235 630 248 633 260 634 236 635 237 635 261 634 249 633 260 636 250 637 236 638 237 638 251 637 261 636 238 639 252 640 258 641 259 641 253 640 239 639 252 642 240 643 254 644 255 644 241 643 253 642 240 645 242 646 254 647 255 647 243 646 241 645 262 648 254 649 204 650 205 650 255 649 263 648 256 651 264 652 204 653 205 653 265 652 257 651 248 654 258 655 264 656 265 656 259 655 249 654 264 657 260 658 248 659 249 659 261 658 265 657 258 660 252 661 262 662 263 662 253 661 259 660 252 663 254 664 262 665 263 665 255 664 253 663 264 666 262 667 204 668 205 668 263 667 265 666 258 669 262 670 264 671 265 671 263 670 259 669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID76\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID77\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID81\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID84\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID82\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID83\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID82\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID86\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID86\">0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7651680707931519 -0.5068138837814331 0.2471411228179932 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7651680707931519 -0.5068138837814331 0.2471411228179932 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.766562283039093 -0.4993950724601746 0.243329256772995 0.766562283039093 -0.4993950724601746 0.243329256772995 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7745932340621948 -0.5068138837814331 0.251851499080658 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7745932340621948 -0.5068138837814331 0.251851499080658 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.766562283039093 -0.4993950724601746 0.243329256772995 0.766562283039093 -0.4993950724601746 0.243329256772995 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.766562283039093 -0.5142327547073364 0.243329256772995 0.766562283039093 -0.5142327547073364 0.243329256772995 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.766562283039093 -0.5142327547073364 0.243329256772995 0.766562283039093 -0.5142327547073364 0.243329256772995 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID83\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID87\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID87\">0.375978209953221 0.5217944735711745 -0.7657485964668513 0.4407333323315916 2.066001226809362e-006 -0.897638083955679 0.4407333331654882 2.066979567289028e-006 -0.8976380835462399 -0.4407333331654882 -2.066979567289028e-006 0.8976380835462399 -0.4407333323315916 -2.066001226809362e-006 0.897638083955679 -0.375978209953221 -0.5217944735711745 0.7657485964668513 -0.9443384505283671 4.81767848970578e-008 -0.3289755171037514 -0.9421829832111356 -5.11061567637383e-007 -0.335098830417392 -0.9466350234875653 -0.006131783125161065 -0.3222491792734352 0.9466350234875653 0.006131783125161065 0.3222491792734352 0.9421829832111356 5.11061567637383e-007 0.335098830417392 0.9443384505283671 -4.81767848970578e-008 0.3289755171037514 0.3699653038975272 0.5173306518499654 -0.771683011714331 -0.3699653038975272 -0.5173306518499654 0.771683011714331 0.378595662181366 -0.5119595283111984 -0.7710789622009072 -0.378595662181366 0.5119595283111984 0.7710789622009072 -0.9453780427562016 0.01025717885261708 -0.3258145892320336 0.9453780427562016 -0.01025717885261708 0.3258145892320336 -0.9466351612062506 0.006130792814932401 -0.3222487935547259 0.9466351612062506 -0.006130792814932401 0.3222487935547259 0.8995898946121159 9.144688632883362e-010 0.4367356425937349 0.8995954425367289 -2.754916782337308e-011 0.4367242147707715 0.8996049235230686 -7.124082212569685e-006 0.4367046845664716 -0.8996049235230686 7.124082212569685e-006 -0.4367046845664716 -0.8995954425367289 2.754916782337308e-011 -0.4367242147707715 -0.8995898946121159 -9.144688632883362e-010 -0.4367356425937349 0.2115276328007368 0.8697883303021156 -0.4457850614724262 -0.2115276328007368 -0.8697883303021156 0.4457850614724262 0.8996049241110151 7.126201571800092e-006 0.4367046833552761 -0.8996049241110151 -7.126201571800092e-006 -0.4367046833552761 0.3705540966906015 -0.5174542913667095 -0.7713175207215178 -0.3705540966906015 0.5174542913667095 0.7713175207215178 -0.9439623282584713 0 -0.3300532121171466 0.9439623282584713 -0 0.3300532121171466 -0.9453780682239803 -0.0102571385473218 -0.3258145166040277 0.9453780682239803 0.0102571385473218 0.3258145166040277 0.8995950455855233 -3.663571547317351e-005 0.4367250309013729 -0.8995950455855233 3.663571547317351e-005 -0.4367250309013729 0.2075772187704324 0.8694421042859699 -0.4483103005088291 -0.2075772187704324 -0.8694421042859699 0.4483103005088291 0.8995950457664682 3.663566904712296e-005 0.4367250305286541 -0.8995950457664682 -3.663566904712296e-005 -0.4367250305286541 0.208460698835653 -0.8739288926851656 -0.4390813450501301 -0.208460698835653 0.8739288926851656 0.4390813450501301 -0.9460346356416761 0.004563946282964946 -0.3240333911198774 0.9460346356416761 -0.004563946282964946 0.3240333911198774 0.008590673261842052 0.9996059528861063 -0.02672338465777645 -0.008590673261842052 -0.9996059528861063 0.02672338465777645 0.2038573469755026 -0.8745269342451815 -0.4400509326928348 -0.2038573469755026 0.8745269342451815 0.4400509326928348 -0.9439623343035419 0 -0.3300531948280579 0.9439623343035419 -0 0.3300531948280579 0.8995774230538666 4.826647817647466e-022 0.436761330627798 -0.8995774230538666 -4.826647817647466e-022 -0.436761330627798 0.8995774230538701 0 0.4367613306277909 -0.8995774230538701 -0 -0.4367613306277909 -0.9415278151062586 0.01889825686992318 -0.3364048591630528 0.9415278151062586 -0.01889825686992318 0.3364048591630528 -0.2190448495887265 0.8751592745761597 0.431411170453411 -0.001785345109949788 0.9999967123999728 0.001840579279618263 0.001785345109949788 -0.9999967123999728 -0.001840579279618263 0.2190448495887265 -0.8751592745761597 -0.431411170453411 -0.002843379399834357 -0.9999928917927541 -0.002476198205651264 0.002843379399834357 0.9999928917927541 0.002476198205651264 0.01363581427139172 -0.9994901796294989 -0.0288694543306301 -0.01363581427139172 0.9994901796294989 0.0288694543306301 -0.9460346179128348 -0.004563942108385799 -0.3240334429390699 0.9460346179128348 0.004563942108385799 0.3240334429390699 0.8995952008205769 1.186622883298446e-005 0.4367247125132474 -0.8995952008205769 -1.186622883298446e-005 -0.4367247125132474 0.8995952008791872 -1.186621380169817e-005 0.4367247123925184 -0.8995952008791872 1.186621380169817e-005 -0.4367247123925184 -0.9398068381235053 4.800570693624863e-007 -0.3417061705852986 0.9398068381235053 -4.800570693624863e-007 0.3417061705852986 -0.3993398374938099 0.5109025352181355 0.7612531075129344 -0.2284849364604937 0.8694177509828229 0.4380723776804629 0.2284849364604937 -0.8694177509828229 -0.4380723776804629 0.3993398374938099 -0.5109025352181355 -0.7612531075129344 -0.222572432077619 -0.8709186855360013 0.438134860132468 0.222572432077619 0.8709186855360013 -0.438134860132468 -0.2226310751864621 -0.8762556962653183 0.4273305033857309 0.2226310751864621 0.8762556962653183 -0.4273305033857309 -0.9415278025606702 -0.0188975949309247 -0.3364049314607355 0.9415278025606702 0.0188975949309247 0.3364049314607355 0.8996042616570016 2.640372423429032e-005 0.4367060472576542 -0.8996042616570016 -2.640372423429032e-005 -0.4367060472576542 0.8996042617889712 -2.640316438136232e-005 0.4367060469858336 -0.8996042617889712 2.640316438136232e-005 -0.4367060469858336 -0.469474849302696 9.118013130299431e-006 0.8829458453320185 -0.4041982700684288 0.5086681365402612 0.7601845074337856 0.4041982700684288 -0.5086681365402612 -0.7601845074337856 0.469474849302696 -9.118013130299431e-006 -0.8829458453320185 -0.4010681788190585 -0.5057171122936732 0.7638026697204665 0.4010681788190585 0.5057171122936732 -0.7638026697204665 -0.40456666931246 -0.5073368437200908 0.76087787264814 0.40456666931246 0.5073368437200908 -0.76087787264814 0.8996050028853476 4.9278183417775e-010 0.43670452113947 -0.8996050028853476 -4.9278183417775e-010 -0.43670452113947 -0.4694748563753538 8.980243316135359e-006 0.8829458415727979 0.4694748563753538 -8.980243316135359e-006 -0.8829458415727979</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID85\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"144\" source=\"#ID88\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID88\">-8.343844565602536 3.543118263434617 -8.382851173200937 3.526346557651889 -8.437936047592569 3.605860239956482 5.313198148759145 -0.1399620452823762 5.314159574535079 -0.2096745960193521 5.271181998423044 -0.2007403241355626 -8.399079464883094 3.622409275093206 -8.343993404509398 3.542899692012902 -8.438087577498109 3.605639171055174 -0.1926900638404377 7.20294571541573 -0.1766122939953679 7.299228780151535 -0.1376025136248288 7.282458250509552 4.902738990445891 -0.03114646266338814 4.859391015364293 -0.0913431629190689 4.828268720275609 -0.06266687231914832 4.817776875026402 -0.2264247686498599 4.859794847519937 -0.2872030478013722 4.816815489344182 -0.2961373197290152 -5.068611761747508 -0.9486757717377763 -5.068609406092489 -0.8788322353679069 -5.025779548333094 -0.9393184573896304 -8.950026130758724 0.6605307602452011 -8.971175442494232 0.6266938625873333 -9.067562318135598 0.6761944720988358 -5.067665914919799 -0.9488873331219097 -5.110499916460379 -0.9395300187737632 -5.067668270476479 -0.8790437967520385 -0.1932408678788178 7.202945780829676 -0.2322495278464481 7.219717358683649 -0.1771694353701919 7.29922950031786 5.068138837814331 -0.2417616733835548 4.993950724601746 -0.2736911840805733 4.982473850250244 -0.2417616733835548 5.305675535343083 -0.009926139123586465 5.274554433657209 -0.03860242458546571 5.231204667521974 0.02159426488454008 -5.024686968751198 -0.9391142004259667 -5.06752154218299 -0.8786300449575993 -4.993331884049916 -0.9135494472973115 -8.970827455956204 0.5896146450140907 -9.08822349081407 0.6059158153191752 -9.0634209709409 0.635602120563353 -5.111592468299554 -0.9388367054217398 -5.142946360897971 -0.9132719523181463 -5.068756106704823 -0.878352550012667 5.158889385222121 5.305634292436024 5.063804966929708 5.254598621125737 5.133562050212204 5.335044313432179 4.993950724601746 -0.02792316078328727 5.068138837814331 -0.06254924404119872 4.982473850250244 -0.06254924404119872 -8.179974031342647 1.090452894609735 -8.19515812353618 1.05949601654638 -8.294178322284875 1.096276142224795 5.485995607753845 5.00183953062288 5.465419112284291 5.035893612869341 5.559200633392363 5.080366375996972 5.153806209564209 -0.2417616733835557 5.142327547073364 -0.2736911840805741 5.068138837814331 -0.2417616733835557 -4.993950724601746 -0.9141731902504215 -5.068138837814331 -0.8792517567371023 -4.982473850250244 -0.8792517567371023 -5.142327547073364 -0.9141731902504207 -5.153806209564209 -0.8792517567371014 -5.068138837814331 -0.8792517567371014 4.952025870323596 -0.1121746920996578 4.994621123114127 -0.1713549770475362 4.920569945696441 -0.1365479701492706 -7.001419027427395 2.973917863672661 -7.016607472064904 2.94018778095906 -7.110212585110727 2.978243406263085 -8.173166530997587 1.177725768140519 -8.287373741612189 1.183513471797853 -8.266794802308175 1.21574612199988 7.174263755035262 2.9637055771487 7.075130506956731 2.927114391874874 7.153763361781501 2.995969580567783 6.955257057845609 3.024932840630291 6.9399776139736 3.055861081990014 7.03347546040006 3.0940795430343 5.142327547073364 -0.02792316078328618 5.153806209564209 -0.06254924404119762 5.068138837814331 -0.06254924404119762 -5.068138837814331 -0.8789867754968088 -4.993950724601746 -0.8440644861611898 -4.982473850250244 -0.8789867754968088 -5.153806209564209 -0.8789867754968075 -5.142327547073364 -0.8440644861611885 -5.068138837814331 -0.8789867754968075 4.833383986635733 -0.2009420908461514 4.832478441355254 -0.269311086124223 4.79041356430487 -0.209896498007136 -4.817001152561604 5.422121169557888 -4.839736998741243 5.392347092862829 -4.92035794411898 5.438471476782302 -7.002911586619617 2.953729967921219 -7.111705460258842 2.958050589909358 -7.091110626255508 2.990277884449331 8.286530932096811 1.18568334353603 8.192902823453633 1.147662741779765 8.265952833762935 1.217917647225526 8.210438277911528 1.141555618151195 8.195229667675156 1.175280453895014 8.283404632472832 1.211864301761794 5.183789348550204 -0.08688609419973015 5.215244082052956 -0.1112593744938168 5.14119230992116 -0.1460663845973721 -5.068338773715833 -0.8786955365358936 -5.025506009258447 -0.8182099678317926 -4.994150160080813 -0.8437739050935431 -5.142128106458063 -0.8438637850184855 -5.110773449376557 -0.8182998477648531 -5.067938896772182 -0.8787854164497464 5.298171380705109 -0.1178998379364343 5.341143585397443 -0.1268542451379624 5.299076888217746 -0.186268833524066 0.4846525411324921 7.173005203558017 0.4451360141056099 7.156989867586018 0.4017957098467573 7.224787245778542 -4.871987383799793 5.307274327778187 -4.975435306639563 5.323263998490778 -4.949564627279097 5.352380461933763 9.141146669114521 0.7992565543632813 9.059815007171272 0.7539109006504693 9.115559867904937 0.8285270522387842 9.109081201946891 0.8693466249542297 9.086023387126863 0.89896629850475 9.162859674176625 0.944850583614073 -5.068392404893438 -0.8786614576419535 -5.068391135651106 -0.8088183124045556 -5.025559407947352 -0.8181759908226125 -5.067885275889797 -0.8787754489378705 -5.110720060929337 -0.8182899821185287 -5.067886545079142 -0.808932303700472 8.280710457527816 3.705126732858316 8.241191888595893 3.721141910399398 8.284531581773541 3.788943079334775 0.4409911514236909 7.240768284153922 0.484335515399475 7.172968962999835 0.4014767417204491 7.224749081770063 8.280933073751957 3.704815650635557 8.28475928709571 3.788631853439325 8.324275367051978 3.772612241933037</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 12 6 0 7 2 8 3 8 5 7 13 6 1 9 14 10 2 11 3 11 15 10 4 9 6 12 8 13 16 14 17 14 9 13 11 12 6 15 18 16 7 17 10 17 19 16 11 15 20 18 21 19 22 20 23 20 24 19 25 18 26 21 0 22 12 23 13 23 5 22 27 21 20 24 28 25 21 26 24 26 29 25 25 24 1 27 30 28 14 29 15 29 31 28 4 27 6 30 16 31 32 32 33 32 17 31 11 30 34 33 18 34 6 35 11 35 19 34 35 33 22 36 21 37 36 38 37 38 24 37 23 36 26 39 12 40 38 41 39 41 13 40 27 39 28 42 40 43 21 44 24 44 41 43 29 42 14 45 30 46 42 47 43 47 31 46 15 45 44 48 6 49 32 50 33 50 11 49 45 48 46 51 26 52 38 53 39 53 27 52 47 51 30 54 48 55 42 56 43 56 49 55 31 54 50 57 34 58 6 59 11 59 35 58 51 57 36 60 21 61 52 62 53 62 24 61 37 60 40 63 54 64 21 65 24 65 55 64 41 63 56 66 6 67 44 68 45 68 11 67 57 66 58 69 46 70 59 71 60 71 47 70 61 69 46 72 38 73 59 74 60 74 39 73 47 72 42 75 48 76 62 77 63 77 49 76 43 75 48 78 64 79 62 80 63 80 65 79 49 78 66 81 50 82 6 83 11 83 51 82 67 81 21 84 68 85 52 86 53 86 69 85 24 84 54 87 70 88 21 89 24 89 71 88 55 87 72 90 6 91 56 92 57 92 11 91 73 90 74 93 58 94 75 95 76 95 61 94 77 93 58 96 59 97 75 98 76 98 60 97 61 96 62 99 64 100 78 101 79 101 65 100 63 99 64 102 80 103 78 104 79 104 81 103 65 102 82 105 66 106 6 107 11 107 67 106 83 105 21 108 84 109 68 110 69 110 85 109 24 108 70 111 86 112 21 113 24 113 87 112 71 111 72 114 82 115 6 116 11 116 83 115 73 114 88 117 74 118 89 119 90 119 77 118 91 117 74 120 75 121 89 122 90 122 76 121 77 120 78 123 80 124 92 125 93 125 81 124 79 123 80 126 94 127 92 128 93 128 95 127 81 126 21 129 96 130 84 131 85 131 97 130 24 129 21 132 86 133 96 134 97 134 87 133 24 132 94 135 88 136 98 137 99 137 91 136 95 135 98 138 88 139 89 140 90 140 91 139 99 138 94 141 98 142 92 143 93 143 99 142 95 141</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID84\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID85\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID91\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID94\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID92\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID93\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID92\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID96\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID96\">-0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID93\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID97\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID97\">-0.9969899583790898 0 -0.07753078673185826 -0.9884129292970471 0 -0.1517889363505488 -0.9884129292970471 0 -0.1517889363505488 0.9884129292970471 -0 0.1517889363505488 0.9884129292970471 -0 0.1517889363505488 0.9969899583790898 -0 0.07753078673185826 -0.998320957347389 0 -0.0579246590062718 0.998320957347389 -0 0.0579246590062718 -0.9993510989424169 7.184929433669925e-019 0.03601917603976783 0.9993510989424169 -7.184929433669925e-019 -0.03601917603976783 -0.9990306614844523 0.0002614309546962441 0.04401896259333652 0.9990306614844523 -0.0002614309546962441 -0.04401896259333652 -0.9888379135974273 0.0002436995254544094 0.1489950376449768 0.9888379135974273 -0.0002436995254544094 -0.1489950376449768 -0.9861063237501272 0.0001948595204020617 0.1661152620615472 0.9861063237501272 -0.0001948595204020617 -0.1661152620615472 -0.9624184146477172 0.0002415020656172742 0.2715708688790593 0.9624184146477172 -0.0002415020656172742 -0.2715708688790593 -0.9573298297691951 2.022174489453926e-020 0.2889975727131348 0.9573298297691951 -2.022174489453926e-020 -0.2889975727131348 -0.8839922438205549 -5.787082397949427e-020 0.4675015645589871 0.8839922438205549 5.787082397949427e-020 -0.4675015645589871 -0.9134613059251451 0.008433697485858586 0.4068381930500694 0.9134613059251451 -0.008433697485858586 -0.4068381930500694 -0.7766917816344079 0.0006653446873563806 0.6298804915680564 0.7766917816344079 -0.0006653446873563806 -0.6298804915680564 -0.887662577311735 0.0168360614725487 0.4601865881078896 0.887662577311735 -0.0168360614725487 -0.4601865881078896 -4.240544352349684e-005 -0.002559416028395586 0.9999967237903193 -0.0001348136590898401 -0.002562698012055371 0.9999967071966669 -4.475077414611043e-005 -0.002559499325770485 0.9999967234749172 4.475077414611043e-005 0.002559499325770485 -0.9999967234749172 0.0001348136590898401 0.002562698012055371 -0.9999967071966669 4.240544352349684e-005 0.002559416028395586 -0.9999967237903193 -0.0001382939885384298 -0.002562821619516241 0.9999967064046358 0.0001382939885384298 0.002562821619516241 -0.9999967064046358</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID95\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"38\" source=\"#ID98\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"76\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID98\">-3.217366635799408 -1.011662528891078 4.606521427631378 -1.011662528891078 -3.174309134483337 0.03269434537139772 5.109987258911133 0.03269434537139772 -3.174309134483337 -0.9347596834103267 5.109987258911133 -0.9347596834103267 -3.138594627380371 0.1405233934521675 5.681315660476685 0.1405233934521675 -3.138594627380371 -0.3213110935675059 5.681315660476685 -0.3213110935675059 -3.102889358997345 0.7323627702456695 -3.09928917724737 0.7510178070110662 5.684959547332459 -0.3024305511224223 6.220538449628159 0.7510178070110662 -3.119279014302022 0.4187348569376954 -3.09928917724737 -0.2355396215454666 6.220538449628159 -0.2355396215454666 -3.122794330120087 0.3874851047394469 6.216937303543091 -0.2675471603832269 6.405143737792969 0.3874851047394469 -3.122794330120087 -0.3106585169242548 6.405143737792969 -0.3106585169242548 -2.803181707859039 0.2275367623352473 -2.803181707859039 0.2275367623352468 6.405143737792969 -0.3106585169242556 6.521115303039551 0.2275367623352468 -2.803181707859039 -1.950888725490773 6.521115303039551 -1.950888725490773 -2.70549088716507 -1.368457715187601 -2.57175403627721 -0.08890733546632032 6.662126685805698 -0.5949907224755842 6.648155411909684 -0.1098190995586758 -6.590083908601013 -5.20958023311017 -7.070594972351801 2.04357821955581 -7.104933336244505 -5.209397056353318 -6.810479911718501 1.83452016452179 -7.162312139268526 1.834520164521791 -6.33791556685284 -5.399469606680877</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"14\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 6 1 0 8 6 0 10 6 8 12 10 8 14 10 12 14 12 16 18 14 16 20 18 16 22 18 20 24 22 20 26 22 24 28 29 30 30 29 34</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID94\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"14\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 0 4 1 5 2 5 2 4 1 7 3 5 4 7 5 9 6 9 6 7 5 11 7 9 8 11 9 13 10 13 11 11 12 15 13 17 14 13 15 15 16 17 17 15 18 19 19 17 20 19 21 21 22 21 23 19 24 23 25 21 26 23 27 25 28 25 29 23 30 27 31 31 32 32 33 33 34 35 35 32 36 31 37</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID94\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID95\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID99\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID102\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID100\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID101\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID100\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID104\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID104\">-0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID101\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID105\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID105\">0.988412913780544 0 0.1517890373902383 0.9969899576627774 0 0.07753079594311511 0.988412913780544 0 0.1517890373902383 -0.988412913780544 -0 -0.1517890373902383 -0.9969899576627774 -0 -0.07753079594311511 -0.988412913780544 -0 -0.1517890373902383 0.988412913780544 0 0.1517890373902383 0.9983209527432319 0 0.05792473835802717 -0.9983209527432319 -0 -0.05792473835802717 -0.988412913780544 -0 -0.1517890373902383 0.9993509166757276 0 -0.03602423266889734 -0.9993509166757276 -0 0.03602423266889734 0.9990305393801646 -0.0002619822270462396 -0.04402173044179333 -0.9990305393801646 0.0002619822270462396 0.04402173044179333 0.994377943186845 -0.0002472551933162214 -0.105888833067369 -0.994377943186845 0.0002472551933162214 0.105888833067369 0.9934289228239549 -0.0001945588048795497 -0.1144505895297539 -0.9934289228239549 0.0001945588048795497 0.1144505895297539 0.995983160148023 -0.000248323998790207 -0.08954039890881241 -0.995983160148023 0.000248323998790207 0.08954039890881241 0.9972495302272323 -7.346303986892779e-019 -0.07411730203916211 -0.9972495302272323 7.346303986892779e-019 0.07411730203916211 0.9997397286185086 0 0.02281392166618968 -0.9997397286185086 -0 -0.02281392166618968 0.9982764498562651 -0.001456672185643534 0.05866862678225434 -0.9982764498562651 0.001456672185643534 -0.05866862678225434 0.9962132812992509 -9.879291414691034e-005 0.08694301813797259 -0.9962132812992509 9.879291414691034e-005 -0.08694301813797259 0.9913216074311079 -0.002879513856937434 0.1314274668406588 -0.9913216074311079 0.002879513856937434 -0.1314274668406588</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID103\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"32\" source=\"#ID106\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID106\">3.201837241649628 -1.150202329427836 3.158780634403229 -0.1058461503505726 -4.622048437595367 -1.150202329427836 3.158780634403229 -0.1058461503505723 -5.125510692596436 -0.1058461503505723 -4.622048437595367 -1.150202329427836 3.158780634403229 -0.9347603867451351 3.123067617416382 0.1405233934521675 -5.125510692596436 -0.9347603867451351 -5.696841478347778 0.1405233934521675 3.123067617416382 -0.2545367445365298 3.087365627288818 0.7991379089722803 -5.696841478347778 -0.2545367445365298 3.084286775264742 0.8151176357230101 -6.235541749751866 0.8151176357230101 -5.699964131968046 -0.2383310143047544 3.104247691337136 1.086372973785097 -6.235541749751866 0.44254094400415 3.084286775264742 0.44254094400415 3.107274770736694 1.058577291180575 -6.420671939849854 1.058577291180575 -6.232461929321289 0.4142719643560417 3.107274770736694 1.722909634361432 2.787659466266632 2.23017673742393 -6.420671939849854 1.722909634361432 -6.536641120910645 2.23017673742393 2.787659466266632 2.772574243860051 2.686533033847809 3.223532218529132 -6.536641120910645 2.772574243860051 2.667131545541148 3.452259268550261 -6.540721785117357 3.4335304126865 -6.55586156508433 2.999015659128898</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 6 7 1 7 10 1 7 12 10 12 14 10 12 16 14 14 16 18 16 20 18 20 22 18 20 24 22 24 26 22 24 28 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID102\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 0 4 1 5 2 4 3 8 4 9 5 4 6 11 7 8 8 11 7 13 9 8 8 11 10 15 11 13 12 15 13 17 14 13 15 19 16 17 17 15 18 19 19 21 20 17 21 19 22 23 23 21 24 23 23 25 25 21 24 23 26 27 27 25 28 27 29 29 30 25 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID102\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID103\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID107\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID110\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID108\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID109\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID108\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID112\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"198\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID112\">-0.669903576374054 -0.652129054069519 0.3517222404479981 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID109\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID113\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"198\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID113\">-0.01701265821172461 -0.9995231985732976 0.02576712972714528 -0.01757382759865987 -0.9966581675845644 -0.07977253644275587 -0.01751781381950524 -0.9995282886182213 0.02522551190591106 0.01751781381950524 0.9995282886182213 -0.02522551190591106 0.01757382759865987 0.9966581675845644 0.07977253644275587 0.01701265821172461 0.9995231985732976 -0.02576712972714528 -0.01625792747926485 -0.9946609696459937 -0.1019079744522989 0.01625792747926485 0.9946609696459937 0.1019079744522989 -0.0150813316095251 -0.9800366184397777 -0.1982442431799954 0.0150813316095251 0.9800366184397777 0.1982442431799954 -0.01366808468970709 -0.9791248445876004 -0.2027997094973813 0.01366808468970709 0.9791248445876004 0.2027997094973813 -0.01306491161032782 -0.9558449561319398 -0.293580871178189 0.01306491161032782 0.9558449561319398 0.293580871178189 -0.01273933707335443 -0.9520610552478258 -0.3056426939603298 0.01273933707335443 0.9520610552478258 0.3056426939603298 -0.01238557086853103 -0.9255816397548481 -0.3783453789634373 0.01238557086853103 0.9255816397548481 0.3783453789634373 -0.01238357987591431 -0.9254422243120635 -0.3786863298427829 0.01238357987591431 0.9254422243120635 0.3786863298427829 -0.01241748667662049 -0.9280470140680498 -0.3722560217162554 0.01241748667662049 0.9280470140680498 0.3722560217162554 -0.01241185824118758 -0.9276097725235235 -0.373344419663476 0.01241185824118758 0.9276097725235235 0.373344419663476 -0.0124838307381665 -0.9329216405473417 -0.3598629830484896 0.0124838307381665 0.9329216405473417 0.3598629830484896 -0.01248496597669147 -0.9329212298258305 -0.3598640084321035 0.01248496597669147 0.9329212298258305 0.3598640084321035 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0 0 -1 -0 -0 1 0.0133753871119692 0.9993032320341038 0.03484464759183624 0.0133753871119692 0.9993032320341038 0.03484464759183624 0.01337680086005785 0.999452551939183 0.03025983511199893 -0.01337680086005785 -0.999452551939183 -0.03025983511199893 -0.0133753871119692 -0.9993032320341038 -0.03484464759183624 -0.0133753871119692 -0.9993032320341038 -0.03484464759183624 0.01337464439725718 0.9993032688233439 0.03484387760033019 0.01337618871559839 0.9994397121588509 0.03068125380876897 -0.01337618871559839 -0.9994397121588509 -0.03068125380876897 -0.01337464439725718 -0.9993032688233439 -0.03484387760033019 0.01337725942786449 0.9995742326768236 0.02593072113804774 -0.01337725942786449 -0.9995742326768236 -0.02593072113804774 0.01337627272410458 0.9995744990501909 0.02592096017840197 -0.01337627272410458 -0.9995744990501909 -0.02592096017840197 0.01337920066408224 0.9999090019891376 0.001727637310686036 -0.01337920066408224 -0.9999090019891376 -0.001727637310686036 0.01366154746104537 0.9999038576502615 -0.002374358249118602 -0.01366154746104537 -0.9999038576502615 0.002374358249118602 0.01373262422128222 0.9853407192912542 0.1700443528571015 -0.01373262422128222 -0.9853407192912542 -0.1700443528571015 0.01486608652804611 0.9737392342553481 0.227180331770048 -0.01486608652804611 -0.9737392342553481 -0.227180331770048 0.01528852077539887 0.9353143715544456 0.3534873229639399 -0.01528852077539887 -0.9353143715544456 -0.3534873229639399 0.02312570321348094 0.9506753226411848 0.3093244781325283 -0.02312570321348094 -0.9506753226411848 -0.3093244781325283 0.03283908891765636 0.9857753031401179 0.1648291417136772 -0.03283908891765636 -0.9857753031401179 -0.1648291417136772 0.05301784880448666 0.9825104516283633 0.1785001964961789 -0.05301784880448666 -0.9825104516283633 -0.1785001964961789</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID111\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"76\" source=\"#ID114\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"152\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID114\">-6.587084260695764 2.631483678724743 -6.514283945022775 2.200594930637337 -7.101933740995046 2.631484147770351 -6.508983115107352 2.205013116963651 -7.3804769572862 2.205013116963651 -7.096643972922929 2.635892997883588 -6.508983115107352 3.224110165411892 -6.52409510872766 2.708841950220179 -7.3804769572862 3.224110165411892 -6.547166844772381 2.684101889976966 -7.63453856792353 2.684101889976966 -7.403952422220897 3.198954593785766 -6.547166844772382 2.931676874432807 -6.66766485108719 2.277409950911386 -7.63453856792353 2.931676874432807 -6.673365396615662 2.271670746973251 -7.833707641170352 2.271670746973251 -7.640406806964966 2.925784279055681 -6.673365396615662 2.953259250368061 -6.774360631709381 1.821467194941181 -7.833707641170353 2.953259250368061 -6.774354367603451 1.821472426221418 -7.934691860163473 1.821472426221418 -7.833700798795213 2.953264816600614 -6.774354367603451 1.885462650761757 -6.781999020801852 0.7200436083193725 -7.934691860163473 1.885462650761757 -6.782008058852917 0.7200348861669447 -7.94234551951389 0.7200356484581351 -7.934701887964341 1.885453322796166 -6.782008188442811 0.6046683932719337 -6.587251094540574 -0.5017076658009313 -7.942345649103793 0.6046691471095926 -6.58723797722436 -0.501692046192276 -7.747575485735714 -0.501692046192276 -7.942331122441789 0.6046858349492025 6.649683117866516 2.518778630097707 7.809916734695435 -3.623796856403351 6.649683117866516 -3.636011437575023 7.809916734695435 2.530995086828868 7.852276925867837 -2.051139641918057 6.691939385450148 -2.051139641918057 8.053193404231466 -1.018256576941133 6.691937070977494 -2.051137945764325 6.892853595325956 -1.018255612295274 8.053191123778195 -1.018254908533119 8.053191103127452 -0.9974499057607017 6.892853574675213 -0.9974506093355069 8.052713144303427 0.07820008666477071 8.052709191062137 0.07820251111365614 6.892849574859298 -0.9974481538077652 6.892371682550782 0.07820251111365616 8.052709191062137 0.0791106921925258 6.892371682550782 0.0791106921925258 7.954167892996237 1.130304459217047 7.954158953536085 1.130309635740629 6.892362640508396 0.0791159328388503 6.793807781046568 1.130309635740629 7.954158953536085 1.256038828458484 6.793807781046567 1.256038828458484 7.767881794133284 1.893885976781469 7.77057826240271 1.891244640745734 6.796484610512178 1.253416052618986 6.683206662638841 1.891244640745734 7.77057826240271 0.5982395666867535 6.683206662638841 0.5982395666867535 7.537086536284932 1.163157345832559 7.546580016143097 1.161416096352253 6.693824913004702 0.5954478869186282 6.675086237668953 1.161416096352253 7.546580016143097 1.983805357481187 6.675086237668955 1.983805357481187 7.073812769076112 2.438574088924843 7.162312139268527 2.414526194755044 6.76706758327844 1.957880326597733 6.810479911718502 2.414526194755044</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"52\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 1 6 8 7 6 8 7 8 9 7 4 6 8 9 10 10 6 11 7 11 11 10 9 9 8 12 12 13 10 14 11 14 13 13 9 12 12 15 14 16 10 17 11 17 15 16 13 15 12 18 16 19 14 20 15 20 17 19 13 18 16 21 18 22 14 23 15 23 19 22 17 21 16 24 20 25 18 26 19 26 21 25 17 24 20 27 22 28 18 29 19 29 23 28 21 27 20 30 24 31 22 32 23 32 25 31 21 30 24 33 26 34 22 35 23 35 27 34 25 33 28 36 29 37 30 38 31 38 32 37 33 36 34 39 29 37 28 36 33 36 32 37 35 39 36 40 37 41 38 42 39 42 40 41 41 40 42 43 43 44 38 45 39 45 44 44 45 43 38 46 43 47 46 48 47 48 44 47 39 46 46 49 43 50 48 51 49 51 44 50 47 49 46 52 48 53 50 54 51 54 49 53 47 52 50 55 48 56 52 57 53 57 49 56 51 55 50 58 52 59 54 60 55 60 53 59 51 58 54 61 52 62 56 63 57 63 53 62 55 61 54 64 56 65 58 66 59 66 57 65 55 64 58 67 56 68 60 69 61 69 57 68 59 67 58 70 60 71 62 72 63 72 61 71 59 70 62 73 60 74 64 75 65 75 61 74 63 73</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID110\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID111\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID115\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID118\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID116\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID117\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID116\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"264\" source=\"#ID120\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"792\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID120\">-0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6480334997177124 -0.5195937156677246 0.2845224440097809 -0.6480334997177124 -0.5195937156677246 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635096669197083 -0.526203989982605 0.2845224440097809 -0.6635096669197083 -0.526203989982605 0.2845224440097809 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6482381224632263 -0.5189133882522583 0.2801555991172791 -0.6482381224632263 -0.5189133882522583 0.2801555991172791 -0.6482381224632263 -0.5189133882522583 0.2888893783092499 -0.6482381224632263 -0.5189133882522583 0.2888893783092499 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6353332996368408 -0.4940980970859528 0.2801555991172791 -0.6353332996368408 -0.4940980970859528 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6347987651824951 -0.4944190084934235 0.2845224440097809 -0.6347987651824951 -0.4944190084934235 0.2845224440097809 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6368538737297058 -0.4931806027889252 0.2764533758163452 -0.6368538737297058 -0.4931806027889252 0.2764533758163452 -0.6488213539123535 -0.5169762372970581 0.2764533758163452 -0.6488213539123535 -0.5169762372970581 0.2764533758163452 -0.6353332996368408 -0.4940980970859528 0.2888893783092499 -0.6353332996368408 -0.4940980970859528 0.2888893783092499 -0.6488213539123535 -0.5169762372970581 0.2925914824008942 -0.6488213539123535 -0.5169762372970581 0.2925914824008942 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6335422992706299 -0.4669302999973297 0.2764533758163452 -0.6335422992706299 -0.4669302999973297 0.2764533758163452 -0.6318445205688477 -0.4669302999973297 0.2801555991172791 -0.6318445205688477 -0.4669302999973297 0.2801555991172791 -0.6312496066093445 -0.4669302999973297 0.2845224440097809 -0.6312496066093445 -0.4669302999973297 0.2845224440097809 -0.6635122895240784 -0.5225611925125122 0.2950650453567505 -0.6635122895240784 -0.5225611925125122 0.2950650453567505 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.64969402551651 -0.5140764713287354 0.2950650453567505 -0.64969402551651 -0.5140764713287354 0.2950650453567505 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.64969402551651 -0.5140764713287354 0.2739797532558441 -0.64969402551651 -0.5140764713287354 0.2739797532558441 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6360813975334168 -0.4669302999973297 0.2739797532558441 -0.6360813975334168 -0.4669302999973297 0.2739797532558441 -0.6391298174858093 -0.4918101131916046 0.2739797532558441 -0.6391298174858093 -0.4918101131916046 0.2739797532558441 -0.6318445205688477 -0.4669302999973297 0.2888893783092499 -0.6318445205688477 -0.4669302999973297 0.2888893783092499 -0.6368538737297058 -0.4931806027889252 0.2925914824008942 -0.6368538737297058 -0.4931806027889252 0.2925914824008942 -0.6635141968727112 -0.5194733142852783 0.2925914824008942 -0.6635141968727112 -0.5194733142852783 0.2925914824008942 -0.650723934173584 -0.5106549263000488 0.2959337532520294 -0.650723934173584 -0.5106549263000488 0.2959337532520294 -0.6635122895240784 -0.5225611925125122 0.2739797532558441 -0.6635122895240784 -0.5225611925125122 0.2739797532558441 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.650723934173584 -0.5106549263000488 0.2731113433837891 -0.650723934173584 -0.5106549263000488 0.2731113433837891 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.637301504611969 -0.4404509365558624 0.2739797532558441 -0.637301504611969 -0.4404509365558624 0.2739797532558441 -0.6349334716796875 -0.4393340051174164 0.2764533758163452 -0.6349334716796875 -0.4393340051174164 0.2764533758163452 -0.6333513855934143 -0.4385876953601837 0.2801555991172791 -0.6333513855934143 -0.4385876953601837 0.2801555991172791 -0.6327959895133972 -0.4383257925510407 0.2845224440097809 -0.6327959895133972 -0.4383257925510407 0.2845224440097809 -0.6635154485702515 -0.5174095630645752 0.2888893783092499 -0.6635154485702515 -0.5174095630645752 0.2888893783092499 -0.6517528891563416 -0.5072346925735474 0.2950650453567505 -0.6517528891563416 -0.5072346925735474 0.2950650453567505 -0.6391298174858093 -0.4918101131916046 0.2950650453567505 -0.6391298174858093 -0.4918101131916046 0.2950650453567505 -0.6635141968727112 -0.5194733142852783 0.2764533758163452 -0.6635141968727112 -0.5194733142852783 0.2764533758163452 -0.6517528891563416 -0.5072346925735474 0.2739797532558441 -0.6517528891563416 -0.5072346925735474 0.2739797532558441 -0.6418135762214661 -0.4901936948299408 0.2731113433837891 -0.6418135762214661 -0.4901936948299408 0.2731113433837891 -0.6400948166847229 -0.4417674839496613 0.2731113433837891 -0.6400948166847229 -0.4417674839496613 0.2731113433837891 -0.6390777230262756 -0.4669302999973297 0.2731113433837891 -0.6390777230262756 -0.4669302999973297 0.2731113433837891 -0.6333513855934143 -0.4385876953601837 0.2888893783092499 -0.6333513855934143 -0.4385876953601837 0.2888893783092499 -0.6335422992706299 -0.4669302999973297 0.2925914824008942 -0.6335422992706299 -0.4669302999973297 0.2925914824008942 -0.6635158658027649 -0.5166845321655273 0.2845224440097809 -0.6635158658027649 -0.5166845321655273 0.2845224440097809 -0.6526256799697876 -0.5043348073959351 0.2925914824008942 -0.6526256799697876 -0.5043348073959351 0.2925914824008942 -0.6418135762214661 -0.4901936948299408 0.2959337532520294 -0.6418135762214661 -0.4901936948299408 0.2959337532520294 -0.6635154485702515 -0.5174095630645752 0.2801555991172791 -0.6635154485702515 -0.5174095630645752 0.2801555991172791 -0.6526256799697876 -0.5043348073959351 0.2764533758163452 -0.6526256799697876 -0.5043348073959351 0.2764533758163452 -0.6444981694221497 -0.4885759055614471 0.2739797532558441 -0.6444981694221497 -0.4885759055614471 0.2739797532558441 -0.6517580151557922 -0.4175517857074738 0.2731113433837891 -0.6517580151557922 -0.4175517857074738 0.2731113433837891 -0.6504251956939697 -0.4142893254756928 0.2739797532558441 -0.6504251956939697 -0.4142893254756928 0.2739797532558441 -0.6492962241172791 -0.4115234911441803 0.2764533758163452 -0.6492962241172791 -0.4115234911441803 0.2764533758163452 -0.6485416889190674 -0.4096752107143402 0.2801555991172791 -0.6485416889190674 -0.4096752107143402 0.2801555991172791 -0.6482764482498169 -0.4090263545513153 0.2845224440097809 -0.6482764482498169 -0.4090263545513153 0.2845224440097809 -0.6532091498374939 -0.502396821975708 0.2888893783092499 -0.6532091498374939 -0.502396821975708 0.2888893783092499 -0.6444981694221497 -0.4885759055614471 0.2950650453567505 -0.6444981694221497 -0.4885759055614471 0.2950650453567505 -0.6360813975334168 -0.4669302999973297 0.2950650453567505 -0.6360813975334168 -0.4669302999973297 0.2950650453567505 -0.6532091498374939 -0.502396821975708 0.2801555991172791 -0.6532091498374939 -0.502396821975708 0.2801555991172791 -0.6467736959457398 -0.4872048199176788 0.2764533758163452 -0.6467736959457398 -0.4872048199176788 0.2764533758163452 -0.6420736312866211 -0.4669302999973297 0.2739797532558441 -0.6420736312866211 -0.4669302999973297 0.2739797532558441 -0.6530901193618774 -0.4208144843578339 0.2739797532558441 -0.6530901193618774 -0.4208144843578339 0.2739797532558441 -0.6428875923156738 -0.4430851638317108 0.2739797532558441 -0.6428875923156738 -0.4430851638317108 0.2739797532558441 -0.6485416889190674 -0.4096752107143402 0.2888893783092499 -0.6485416889190674 -0.4096752107143402 0.2888893783092499 -0.6349334716796875 -0.4393340051174164 0.2925914824008942 -0.6349334716796875 -0.4393340051174164 0.2925914824008942 -0.6534140110015869 -0.5017167329788208 0.2845224440097809 -0.6534140110015869 -0.5017167329788208 0.2845224440097809 -0.6467736959457398 -0.4872048199176788 0.2925914824008942 -0.6467736959457398 -0.4872048199176788 0.2925914824008942 -0.6390777230262756 -0.4669302999973297 0.2959337532520294 -0.6390777230262756 -0.4669302999973297 0.2959337532520294 -0.6482942700386047 -0.4862898886203766 0.2801555991172791 -0.6482942700386047 -0.4862898886203766 0.2801555991172791 -0.6446129679679871 -0.4669302999973297 0.2764533758163452 -0.6446129679679871 -0.4669302999973297 0.2764533758163452 -0.6630308032035828 -0.4085699617862701 0.2739797532558441 -0.6630308032035828 -0.4085699617862701 0.2739797532558441 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6482942700386047 -0.4862898886203766 0.2888893783092499 -0.6482942700386047 -0.4862898886203766 0.2888893783092499 -0.6420736312866211 -0.4669302999973297 0.2950650453567505 -0.6420736312866211 -0.4669302999973297 0.2950650453567505 -0.637301504611969 -0.4404509365558624 0.2950650453567505 -0.637301504611969 -0.4404509365558624 0.2950650453567505 -0.6488281488418579 -0.4859673082828522 0.2845224440097809 -0.6488281488418579 -0.4859673082828522 0.2845224440097809 -0.6463103890419006 -0.4669302999973297 0.2801555991172791 -0.6463103890419006 -0.4669302999973297 0.2801555991172791 -0.6452553868293762 -0.4442016780376434 0.2764533758163452 -0.6452553868293762 -0.4442016780376434 0.2764533758163452 -0.6630327105522156 -0.4116580784320831 0.2764533758163452 -0.6630327105522156 -0.4116580784320831 0.2764533758163452 -0.6542187929153442 -0.4235804378986359 0.2764533758163452 -0.6542187929153442 -0.4235804378986359 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6492962241172791 -0.4115234911441803 0.2925914824008942 -0.6492962241172791 -0.4115234911441803 0.2925914824008942 -0.6446129679679871 -0.4669302999973297 0.2925914824008942 -0.6446129679679871 -0.4669302999973297 0.2925914824008942 -0.6400948166847229 -0.4417674839496613 0.2959337532520294 -0.6400948166847229 -0.4417674839496613 0.2959337532520294 -0.646905779838562 -0.4669302999973297 0.2845224440097809 -0.646905779838562 -0.4669302999973297 0.2845224440097809 -0.6468372344970703 -0.444947749376297 0.2801555991172791 -0.6468372344970703 -0.444947749376297 0.2801555991172791 -0.6630285978317261 -0.4049277007579804 0.2845224440097809 -0.6630285978317261 -0.4049277007579804 0.2845224440097809 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6463103890419006 -0.4669302999973297 0.2888893783092499 -0.6463103890419006 -0.4669302999973297 0.2888893783092499 -0.6428875923156738 -0.4430851638317108 0.2950650453567505 -0.6428875923156738 -0.4430851638317108 0.2950650453567505 -0.6504251956939697 -0.4142893254756928 0.2950650453567505 -0.6504251956939697 -0.4142893254756928 0.2950650453567505 -0.6473929882049561 -0.4452097713947296 0.2845224440097809 -0.6473929882049561 -0.4452097713947296 0.2845224440097809 -0.6549736261367798 -0.4254280030727387 0.2801555991172791 -0.6549736261367798 -0.4254280030727387 0.2801555991172791 -0.6630337834358215 -0.4137214124202728 0.2801555991172791 -0.6630337834358215 -0.4137214124202728 0.2801555991172791 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6452553868293762 -0.4442016780376434 0.2925914824008942 -0.6452553868293762 -0.4442016780376434 0.2925914824008942 -0.6517580151557922 -0.4175517857074738 0.2959337532520294 -0.6517580151557922 -0.4175517857074738 0.2959337532520294 -0.6468372344970703 -0.444947749376297 0.2888893783092499 -0.6468372344970703 -0.444947749376297 0.2888893783092499 -0.6552384495735169 -0.426077276468277 0.2845224440097809 -0.6552384495735169 -0.426077276468277 0.2845224440097809 -0.663034200668335 -0.4144457876682282 0.2845224440097809 -0.663034200668335 -0.4144457876682282 0.2845224440097809 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6530901193618774 -0.4208144843578339 0.2950650453567505 -0.6530901193618774 -0.4208144843578339 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6549736261367798 -0.4254280030727387 0.2888893783092499 -0.6549736261367798 -0.4254280030727387 0.2888893783092499 -0.6630337834358215 -0.4137214124202728 0.2888893783092499 -0.6630337834358215 -0.4137214124202728 0.2888893783092499 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6542187929153442 -0.4235804378986359 0.2925914824008942 -0.6542187929153442 -0.4235804378986359 0.2925914824008942 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630327105522156 -0.4116580784320831 0.2925914824008942 -0.6630327105522156 -0.4116580784320831 0.2925914824008942 -0.6630308032035828 -0.4085699617862701 0.2950650453567505 -0.6630308032035828 -0.4085699617862701 0.2950650453567505</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID117\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"264\" source=\"#ID121\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"792\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID121\">0.7232596242239593 -0.6905746602767982 -0.001467838888265382 0.7057607724956698 -0.6735924503473242 0.2194879104675313 0.8076016226056172 -0.5897264131612695 -0.00154168243093702 -0.8076016226056172 0.5897264131612695 0.00154168243093702 -0.7057607724956698 0.6735924503473242 -0.2194879104675313 -0.7232596242239593 0.6905746602767982 0.001467838888265382 -0.9999998181937388 -0.0006022943216548701 2.922395420187849e-005 -0.9999997999824708 -0.0006324832160101544 2.860604413076798e-010 -0.9999997897974863 -0.0006483864460522037 -2.491010877726737e-011 0.9999997897974863 0.0006483864460522037 2.491010877726737e-011 0.9999997999824708 0.0006324832160101544 -2.860604413076798e-010 0.9999998181937388 0.0006022943216548701 -2.922395420187849e-005 0.7817612866731201 -0.5645061459265469 -0.2649190477680753 -0.7817612866731201 0.5645061459265469 0.2649190477680753 0.7832106863400417 -0.5638831090884926 0.2619482011533125 -0.7832106863400417 0.5638831090884926 -0.2619482011533125 -0.9999997958179734 -0.0006383792109791188 2.891357388609432e-005 0.9999997958179734 0.0006383792109791188 -2.891357388609432e-005 -0.9999998181931959 -0.0006022952886622905 -2.922260522741146e-005 0.9999998181931959 0.0006022952886622905 2.922260522741146e-005 0.9154130318517745 -0.2904204377266433 -0.2787022613230957 -0.9154130318517745 0.2904204377266433 0.2787022613230957 0.711127203597459 -0.6677643370207396 -0.2199747497030292 -0.711127203597459 0.6677643370207396 0.2199747497030292 0.952739552757128 -0.3037871859535902 -0.0008308204056597102 -0.952739552757128 0.3037871859535902 0.0008308204056597102 0.645984127761978 -0.6063440422865414 0.463736357279881 -0.645984127761978 0.6063440422865414 -0.463736357279881 -0.999999776244766 -0.0006689441745444033 -4.910144988000729e-006 0.999999776244766 0.0006689441745444033 4.910144988000729e-006 -0.9999997958172164 -0.0006383804483021269 -2.891243502256493e-005 0.9999997958172164 0.0006383804483021269 2.891243502256493e-005 0.7843147677524072 -0.2413030462060462 -0.5715095668290867 -0.7843147677524072 0.2413030462060462 0.5715095668290867 0.6885006209850318 -0.4767691864279585 -0.5464961461676083 -0.6885006209850318 0.4767691864279585 0.5464961461676083 0.9168326109734188 -0.2874979990120987 0.2770611196463751 -0.9168326109734188 0.2874979990120987 -0.2770611196463751 0.6900022504499387 -0.4765417725743317 0.5447979748179445 -0.6900022504499387 0.4765417725743317 -0.5447979748179445 -0.9999997637842953 -0.000687336419680339 0 0.9999997637842953 0.000687336419680339 -0 0.4938122844858366 -0.4499642787109471 0.744097826616243 -0.4938122844858366 0.4499642787109471 -0.744097826616243 -0.9999997762445951 -0.000668944429587437 4.910191440555164e-006 0.9999997762445951 0.000668944429587437 -4.910191440555164e-006 0.6578188065603675 -0.5980410579776557 -0.4578441991643669 -0.6578188065603675 0.5980410579776557 0.4578441991643669 0.8205908215871317 -0.03194403562537936 -0.5706227143348928 -0.8205908215871317 0.03194403562537936 0.5706227143348928 0.960457130199687 -0.0363137738537825 -0.2760496529196837 -0.960457130199687 0.0363137738537825 0.2760496529196837 0.9993171501328293 -0.03694905120123387 3.264550519562491e-005 -0.9993171501328293 0.03694905120123387 -3.264550519562491e-005 -0.793910982057031 0.1969421269369894 0.5752557267918115 0.793910982057031 -0.1969421269369894 -0.5752557267918115 0.1386984645759476 -0.1243363006127545 0.982498458153604 0.4651519897602477 -0.2948357761580864 0.8346888591081955 -0.4651519897602477 0.2948357761580864 -0.8346888591081955 -0.1386984645759476 0.1243363006127545 -0.982498458153604 -0.9999997637842955 -0.0006873364193195035 -1.096442815385977e-020 0.9999997637842955 0.0006873364193195035 1.096442815385977e-020 0.5128913528758033 -0.4461619504614353 -0.7334043728433013 0.4688183208013235 -0.2943521348334288 -0.8328062216386418 -0.4688183208013235 0.2943521348334288 0.8328062216386418 -0.5128913528758033 0.4461619504614353 0.7334043728433013 0.5130920796549894 -0.02080795852300087 -0.8580813170425183 -0.5130920796549894 0.02080795852300087 0.8580813170425183 0.499551869261499 -0.1430168053203858 -0.8543969354540623 -0.499551869261499 0.1430168053203858 0.8543969354540623 0.9604894321225267 -0.03495709229521331 0.2761123910280198 -0.9604894321225267 0.03495709229521331 -0.2761123910280198 0.786679117859316 -0.2363443375900022 0.5703308860768734 -0.786679117859316 0.2363443375900022 -0.5703308860768734 -0.9000246676130381 0.3063624940737907 0.3099961611261122 0.9000246676130381 -0.3063624940737907 -0.3099961611261122 0.03633634782028813 -0.006584840887365813 0.9993179222337458 -0.03633634782028813 0.006584840887365813 -0.9993179222337458 -0.799626186182979 0.1929925127090643 -0.568640354185935 0.799626186182979 -0.1929925127090643 0.568640354185935 0.1525444722947879 -0.1285229675501668 -0.9799040926460118 0.04807963178047214 -0.007935340825018506 -0.9988119839959095 -0.04807963178047214 0.007935340825018506 0.9988119839959095 -0.1525444722947879 0.1285229675501668 0.9799040926460118 0.5072631551753162 0.1267094788403512 -0.8524252456219195 -0.5072631551753162 -0.1267094788403512 0.8524252456219195 0.7940988277295695 0.212649686279568 -0.5693743607888617 -0.7940988277295695 -0.212649686279568 0.5693743607888617 0.9262255379225123 0.2559747769389783 -0.2767366373850652 -0.9262255379225123 -0.2559747769389783 0.2767366373850652 0.9631119231717006 0.2691006602835732 0.0005080152095792424 -0.9631119231717006 -0.2691006602835732 -0.0005080152095792424 -0.9371087965896104 0.3236025621236881 0.1307994080313711 0.9371087965896104 -0.3236025621236881 -0.1307994080313711 -0.4683157211142002 0.2666126435683628 0.8423764500784526 0.4683157211142002 -0.2666126435683628 -0.8423764500784526 0.500693008818584 -0.1383898050868787 0.8544909436431782 -0.500693008818584 0.1383898050868787 -0.8544909436431782 -0.9063167357382785 0.2980070758240811 -0.2996360413559952 0.9063167357382785 -0.2980070758240811 0.2996360413559952 -0.4686403143303254 0.2634205410351238 -0.8431997831742701 0.4686403143303254 -0.2634205410351238 0.8431997831742701 0.02920398259114767 -0.0026130516583192 -0.9995700572555417 -0.02920398259114767 0.0026130516583192 0.9995700572555417 0.03605850256194776 0.003067083053787333 -0.9993449741678452 -0.03605850256194776 -0.003067083053787333 0.9993449741678452 0.01386902869683676 -0.001056629619223589 -0.9999032621093174 -0.01386902869683676 0.001056629619223589 0.9999032621093174 0.9256378545608276 0.2570954480242819 0.277662552046944 -0.9256378545608276 -0.2570954480242819 -0.277662552046944 0.8206358178234287 -0.02964836110656165 0.5706818984241283 -0.8206358178234287 0.02964836110656165 -0.5706818984241283 -0.9469246469125361 0.3214516112137361 0.001604592677941127 0.9469246469125361 -0.3214516112137361 -0.001604592677941127 -0.7641051893798622 0.3901493579511544 0.5137380052644216 0.7641051893798622 -0.3901493579511544 -0.5137380052644216 0.02537449276774779 -0.002236188127699197 0.9996755146443453 -0.02537449276774779 0.002236188127699197 -0.9996755146443453 -0.9400560163134932 0.3172067396078798 -0.1251981251462831 0.9400560163134932 -0.3172067396078798 0.1251981251462831 -0.7711342244953958 0.3842843387634247 -0.5076194980426203 0.7711342244953958 -0.3842843387634247 0.5076194980426203 -0.4738115753659977 0.1197652890400627 -0.872444191103558 0.4738115753659977 -0.1197652890400627 0.872444191103558 0.02958654968916754 0.007286484206468705 -0.9995356638086503 -0.02958654968916754 -0.007286484206468705 0.9995356638086503 0.4363488436236744 0.2955605560399648 -0.8498491891986655 -0.4363488436236744 -0.2955605560399648 0.8498491891986655 0.6631409982889462 0.4874660914062892 -0.5679972060824027 -0.6631409982889462 -0.4874660914062892 0.5679972060824027 0.7623336718204757 0.5848074391059263 -0.2772140544328147 -0.7623336718204757 -0.5848074391059263 0.2772140544328147 0.7886950662680942 0.6147829703463104 0.001411317304633245 -0.7886950662680942 -0.6147829703463104 -0.001411317304633245 -0.8781743790133187 0.4175251680829177 0.23341485398728 0.8781743790133187 -0.4175251680829177 -0.23341485398728 -0.4800902307928689 0.113296584546636 0.8698719757684558 0.4800902307928689 -0.113296584546636 -0.8698719757684558 0.5131883005520358 -0.01875718759237305 0.8580710553853554 -0.5131883005520358 0.01875718759237305 -0.8580710553853554 -0.8823796484183437 0.4126666692035347 -0.2260804639626802 0.8823796484183437 -0.4126666692035347 0.2260804639626802 -0.7972849488781376 0.1792800600182346 -0.5763639218169749 0.7972849488781376 -0.1792800600182346 0.5763639218169749 -0.4952765194930661 0.02034356393238864 -0.8684971552315893 0.4952765194930661 -0.02034356393238864 0.8684971552315893 -0.435356577143355 -0.2671834708247518 -0.8596962508095875 0.435356577143355 0.2671834708247518 0.8596962508095875 -0.4665287049009216 -0.1084638747966296 -0.8778305960534585 0.4665287049009216 0.1084638747966296 0.8778305960534585 0.75950835167557 0.5870581609984589 0.280195965959837 -0.75950835167557 -0.5870581609984589 -0.280195965959837 0.7932463932521849 0.2145728539145977 0.5698408988089085 -0.7932463932521849 -0.2145728539145977 -0.5698408988089085 -0.9085196475422841 0.41782745437537 0.003502627562550796 0.9085196475422841 -0.41782745437537 -0.003502627562550796 -0.800869417060235 0.1689324330988504 0.5745171971881278 0.800869417060235 -0.1689324330988504 -0.5745171971881278 0.0139431092792251 -0.0009866306018833713 0.9999023033595247 -0.0139431092792251 0.0009866306018833713 -0.9999023033595247 -0.9422268574159193 0.1931477037499293 -0.273683236059958 0.9422268574159193 -0.1931477037499293 0.273683236059958 -0.814835838977536 0.03369062831624135 -0.5787119292717505 0.814835838977536 -0.03369062831624135 0.5787119292717505 -0.7873146849475823 -0.2010835114851383 -0.5828387498053776 0.7873146849475823 0.2010835114851383 0.5828387498053776 0.1180304988758481 0.1181393092581005 -0.9859573545256091 -0.1180304988758481 -0.1181393092581005 0.9859573545256091 0.4501212254398852 0.4575449027803883 -0.7668399731027207 -0.4501212254398852 -0.4575449027803883 0.7668399731027207 0.6005852136669773 0.6332674469621952 -0.4881288167508398 -0.6005852136669773 -0.6332674469621952 0.4881288167508398 0.6618861883828568 0.7123657780164507 -0.2333273921746658 -0.6618861883828568 -0.7123657780164507 0.2333273921746658 0.6804093504380189 0.7328301506810396 0.001756726876281748 -0.6804093504380189 -0.7328301506810396 -0.001756726876281748 -0.9431414902949492 0.1855658782828246 0.2757706186332155 0.9431414902949492 -0.1855658782828246 -0.2757706186332155 -0.4953182918781093 0.01780718095942004 0.8685290404109873 0.4953182918781093 -0.01780718095942004 -0.8685290404109873 0.5072865408438301 0.1285882324951642 0.8521299384146005 -0.5072865408438301 -0.1285882324951642 -0.8521299384146005 -0.9816073418028719 0.1908993751890319 0.002110703943471509 0.9816073418028719 -0.1908993751890319 -0.002110703943471509 -0.9593484895959843 0.0388996844240557 -0.279530481453477 0.9593484895959843 -0.0388996844240557 0.279530481453477 -0.7914424681559653 -0.1706815775771435 -0.5869298243188631 0.7914424681559653 0.1706815775771435 0.5869298243188631 -0.894520193110629 -0.312927838115438 -0.3192331315037981 0.894520193110629 0.312927838115438 0.3192331315037981 -0.7273473914158 -0.4107184345321895 -0.5497964530042537 0.7273473914158 0.4107184345321895 0.5497964530042537 0.6685900741135386 0.7058359896190666 0.2340574044018388 -0.6685900741135386 -0.7058359896190666 -0.2340574044018388 0.658643651050992 0.4905658629674176 0.5705555845149989 -0.658643651050992 -0.4905658629674176 -0.5705555845149989 -0.814926590417651 0.03015739503281149 0.5787790457118306 0.814926590417651 -0.03015739503281149 -0.5787790457118306 0.03814091694684892 0.003413426189993021 0.9992665405066354 -0.03814091694684892 -0.003413426189993021 -0.9992665405066354 -0.9992278934255273 0.03928889095366263 -6.929232985555457e-006 0.9992278934255273 -0.03928889095366263 6.929232985555457e-006 -0.938809669902001 -0.1951630115952412 -0.2838094476996348 0.938809669902001 0.1951630115952412 0.2838094476996348 -0.9999997743790419 0.0006717453873031948 -2.186125590766863e-011 0.9999997743790419 -0.0006717453873031948 2.186125590766863e-011 -0.9999997749421429 0.0006709065984553252 -1.09573478369303e-020 0.9999997749421429 -0.0006709065984553252 1.09573478369303e-020 -0.9999997090200168 0.0007628080343569275 9.153401029092946e-006 0.9999997090200168 -0.0007628080343569275 -9.153401029092946e-006 -0.9999996992523692 0.000775549469651193 4.265134099829579e-006 0.9999996992523692 -0.000775549469651193 -4.265134099829579e-006 -0.9999997274454909 0.0007369711162139045 -4.452547571276294e-005 0.9999997274454909 -0.0007369711162139045 4.452547571276294e-005 -0.9999997406987353 0.0007201405851322528 -7.10704149141186e-010 0.9999997406987353 -0.0007201405851322528 7.10704149141186e-010 -0.9999997274456218 0.0007369709769112005 4.452484465423866e-005 0.9999997274456218 -0.0007369709769112005 -4.452484465423866e-005 -0.9594382249524349 0.03651452657942052 0.2795442395199753 0.9594382249524349 -0.03651452657942052 -0.2795442395199753 -0.4640933731506169 -0.1107502342990451 0.8788354377244861 0.4640933731506169 0.1107502342990451 -0.8788354377244861 0.4349693534041575 0.2980530013238956 0.8496858654826425 -0.4349693534041575 -0.2980530013238956 -0.8496858654826425 -0.979356998294315 -0.2021349591101914 -0.001152474498922521 0.979356998294315 0.2021349591101914 0.001152474498922521 -0.8509474623195337 -0.4576673394521972 -0.2577382834789834 0.8509474623195337 0.4576673394521972 0.2577382834789834 -0.9355765566034081 -0.3265447567807907 -0.1344062072714054 0.9355765566034081 0.3265447567807907 0.1344062072714054 -0.9999996992525759 0.0007755492042714741 -4.264928487867499e-006 0.9999996992525759 -0.0007755492042714741 4.264928487867499e-006 0.6150877754416196 0.6241638324603201 0.481753607927045 -0.6150877754416196 -0.6241638324603201 -0.481753607927045 -0.7902842389987238 -0.1746512333911817 0.5873225419351337 0.7902842389987238 0.1746512333911817 -0.5873225419351337 0.03727133908825687 0.009044912639848819 0.9992642477532686 -0.03727133908825687 -0.009044912639848819 -0.9992642477532686 -0.9386010172620667 -0.1981899545211005 0.2823984283269608 0.9386010172620667 0.1981899545211005 -0.2823984283269608 -0.8837544363354132 -0.467943007525534 -0.002727263359898528 0.8837544363354132 0.467943007525534 0.002727263359898528 -0.9471856471481824 -0.3206759458915923 -0.002507501348223877 0.9471856471481824 0.3206759458915923 0.002507501348223877 -0.9999997090203798 0.000762807559321599 -9.153314517965673e-006 0.9999997090203798 -0.000762807559321599 9.153314517965673e-006 -0.4270570059187908 -0.2684750778700419 0.8634485776572645 0.4270570059187908 0.2684750778700419 -0.8634485776572645 0.472911004094651 0.4540552020476878 0.7551086383426046 -0.472911004094651 -0.4540552020476878 -0.7551086383426046 -0.8503974480748343 -0.4605720304353962 0.2543571997967144 0.8503974480748343 0.4605720304353962 -0.2543571997967144 -0.9399779765243473 -0.3171413384034758 0.1259475094031056 0.9399779765243473 0.3171413384034758 -0.1259475094031056 -0.9999997749421428 0.0006709065987186352 3.287346944984957e-020 0.9999997749421428 -0.0006709065987186352 -3.287346944984957e-020 -0.7241743640535807 -0.4145373799428673 0.5511172752488299 0.7241743640535807 0.4145373799428673 -0.5511172752488299 0.1340688008837682 0.1240082058184067 0.9831823439826858 -0.1340688008837682 -0.1240082058184067 -0.9831823439826858 -0.9035746812554419 -0.301257729151216 0.3046253043014963 0.9035746812554419 0.301257729151216 -0.3046253043014963 -0.7948187846833775 -0.1958141005338769 0.5743865750054989 0.7948187846833775 0.1958141005338769 -0.5743865750054989</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID119\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"668\" source=\"#ID122\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1336\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID122\">-8.459148306365966 2.320610608435393 -8.453924324230584 2.355189974618953 -8.235664210561588 2.320610608435393 5.345779393385952 2.272761294528312 5.35302374423285 2.23840807802204 5.257842260045958 2.23840807802204 -8.459148306365965 2.096954745877603 -8.235664210561586 2.096954745877603 -8.232170868965739 2.06225925348499 -8.229866286368056 2.339826235524017 -8.448096962230043 2.374520389255541 -8.226340435739356 2.374520389255541 5.325515883125656 2.301301490633831 5.34614743659245 2.272178271686187 5.258210303311181 2.237825055086888 5.35302374423285 2.238078368792828 5.345779393385952 2.203725855621364 5.257842260045958 2.238078368792828 -7.594643879022609 1.892138130946195 -7.599735688577622 1.926711021119759 -7.314941693144679 1.892138130946195 -8.448096962230043 2.088729449784985 -8.453347287020552 2.123305648105701 -8.226340435739356 2.088729449784985 -7.614613133164902 2.519425711850718 -7.609543474466718 2.55400131525583 -7.33019722651946 2.519425711850718 -8.448096962230043 2.440066517344678 -8.433138761923601 2.471261304889587 -8.226340435739356 2.440066517344678 5.293901944627884 2.321234741744345 5.324792655280616 2.301776046490474 5.257487075161621 2.23829961114335 5.346147425702103 2.204308861027132 5.325515872235314 2.175184704299745 5.25821029242083 2.238661374291615 -7.59464387902261 0.847508270273163 -7.31494169314468 0.847508270273163 -7.313817229690283 0.8152187374453735 -7.614613133164902 1.847488849611038 -7.330197226519459 1.847488849611038 -7.329844071479497 1.812789092317539 -8.448096962230043 1.610256536976383 -8.226340435739356 1.610256536976383 -8.216305077654839 1.578020394015013 -7.315322611721951 2.58773636338952 -7.594643879022609 2.622436635247417 -7.314941693144679 2.622436635247417 -8.207874315730333 2.477237724286042 -8.414427950004418 2.509420127842605 -8.197568291130997 2.509420127842605 5.257694584180658 2.328012192249299 5.294109453664709 2.321178356806438 5.257694584180658 2.238243226210277 -8.414427950004418 2.404469505689812 -8.391710570707931 2.429960516845966 -8.197568291130997 2.404469505689812 5.324792655982698 2.174710171893183 5.293901945329966 2.15525100774944 5.257487075863704 2.238186841685243 -8.414427950004418 1.680627594748813 -8.429604281088645 1.711757990864516 -8.197568291130997 1.680627594748813 -5.690121388297848 0.1905733787220271 -5.697321005850073 0.2223746195841103 -5.425537767858401 0.1905733787220271 -7.533739806625457 1.074394969231607 -7.548425411989435 1.105508108359522 -7.267384254108391 1.074394969231607 -5.70996238626119 1.606689537717041 -5.71246452611048 1.641334536429509 -5.436053500309336 1.606689537717041 -5.716350316942823 2.797108435003465 -5.713852095007093 2.831754306080557 -5.439181483673173 2.797108435003465 -7.594643879022609 3.064196424748586 -7.580148294606151 3.095363784577919 -7.314941693144679 3.064196424748586 5.257261649911184 2.328012192249299 5.257261649911184 2.238243226210277 5.220833665769637 2.321178356806438 -8.357548818346192 1.899075206820555 -8.33017279422689 1.919163127378879 -8.147913995851576 1.899075206820555 -8.357548818346194 2.460148851109297 -8.147913995851576 2.460148851109297 -8.163976206223536 2.432104690786913 5.294109453664709 2.155307392279307 5.257694584180658 2.148475901285807 -8.357548818346192 0.9137672563702848 -8.38077106938216 0.9389755219671715 -8.147913995851576 0.9137672563702848 -8.182138385212012 0.742171433417169 -8.414427950004418 0.7704347662281051 -8.197568291130997 0.7704347662281051 -5.428715747259455 -1.704161865476215 -5.690121388297847 -1.676388150076523 -5.4255377678584 -1.676388150076524 -5.438215962025859 0.1266433971109121 -5.709962386261191 0.1586387343795093 -5.436053500309336 0.1586387343795093 -7.265366515898596 -0.5414825644176899 -7.533739806625457 -0.5129706370093234 -7.267384254108391 -0.5129706370093239 -5.439943273501687 1.586970821745632 -5.716350316942821 1.621635477153723 -5.439181483673172 1.621635477153723 -5.435295758054295 2.814971835455708 -5.709962386261191 2.849637242763926 -5.436053500309336 2.849637242763926 -7.268748940745635 3.223204487094314 -7.533739806625457 3.255487443403001 -7.267384254108392 3.255487443403001 5.221365332197959 2.321322867834767 5.257793316222684 2.238387737206852 5.190486544042464 2.30186417257458 8.278584240919347 -0.4954740699094379 8.250463842632156 -0.5149304624881447 8.077276431021296 -0.4954740699094379 -8.278584240919347 1.99989558902176 -8.077276431021296 1.99989558902176 -8.097163232592376 1.975562923541217 -7.533739806625457 3.520699317831119 -7.51175487315617 3.546135961707067 -7.267384254108391 3.520699317831119 5.257261649911184 2.148475901285807 5.220833665769637 2.155307392279307 -8.278584240919347 -0.5584549503005105 -8.306696024953093 -0.5390068718870841 -8.077276431021296 -0.5584549503005101 -8.128962961671316 -0.5649448027075027 -8.357548818346194 -0.5401549389140391 -8.147913995851578 -0.5401549389140395 -7.42943998662339 -0.1647572133505751 -7.451897832370662 -0.1395771713629692 -7.182986502978527 -0.1647572133505749 -4.106498705344571 -2.194737263876049 -4.371573289103265 -2.194737263876049 -4.372742006118543 -2.166866418174485 -5.658881325239604 -1.625850436882716 -5.669716572530494 -1.598596161089331 -5.408222599321642 -1.625850436882716 -4.344407637896152 -0.1724349091188175 -4.345262429244977 -0.1404014375225808 -4.068094255706499 -0.1724349091188171 -4.327264597134145 1.488405310062259 -4.327580443456421 1.523074254803126 -4.043438262940182 1.488405310062259 -4.321733655741939 2.912919540576105 -4.321412509367989 2.947589152101175 -4.035270892659064 2.912919540576105 -5.709962386261191 3.874449404872737 -5.70279892686596 3.906254839774855 -5.436053500309336 3.874449404872737 5.19044319722537 2.301835729927616 5.257749969418736 2.238359294568514 5.169805681238873 2.272712511066155 8.184874888882753 0.8555462819586317 8.160387914107073 0.8310995600623022 7.991694895770678 0.8555462819586317 8.184874888882753 -0.9033583255625841 7.991694895770677 -0.9033583255625837 8.012566787185671 -0.8795559162780426 -7.429439986623393 3.502378420519628 -7.402942013570105 3.522435967625112 -7.18298650297853 3.502378420519628 -7.42943998662339 3.691872979870877 -7.182986502978527 3.691872979870877 -7.185612665447719 3.663392052305356 5.257793314422883 2.238098715214484 5.221365330398156 2.155162881251762 5.190486542242661 2.17462204540182 8.184874888882753 2.311433348499024 8.213760123864551 2.292684013666642 7.991694895770677 2.311433348499024 8.057393700875089 1.973876432916301 8.278584240919347 1.949556275431979 8.077276431021295 1.949556275431979 -7.279957710792657 -2.13595743916171 -7.30721571253933 -2.116541219188251 -7.056785922228732 -2.13595743916171 -7.179886540892554 -2.225423302269734 -7.429439986623391 -2.199964688915634 -7.182986502978528 -2.199964688915634 -4.106498705344571 -4.315338944522543 -4.118364496719114 -4.338783795582042 -4.371573289103265 -4.315338944522543 -4.078057156177957 -2.084249906790512 -4.344407637896152 -2.057020180700147 -4.068094255706499 -2.057020180700147 -5.411866621041948 -3.759065283276399 -5.658881325239604 -3.734692179949262 -5.408222599321642 -3.734692179949263 -4.050050888315531 -0.07999528710715549 -4.327264597134145 -0.04820659046825556 -4.043438262940183 -0.04820659046825556 -4.037586288133102 1.518865553538542 -4.32173365574194 1.553508179276814 -4.035270892659065 1.553508179276813 -4.327264597134145 2.919530116198718 -4.043438262940183 2.919530116198718 -4.041117794381885 2.884887003072012 -5.423412798604202 3.92044888372028 -5.690121388297848 3.95244492192354 -5.425537767858401 3.95244492192354 5.169773852910238 2.272662087988296 5.257718141093744 2.238308871496426 5.162523542740018 2.238308871496426 8.091502253624396 1.615081577113413 8.074755632710328 1.584451892168086 7.905025930413123 1.615081577113413 8.091502253624396 0.3617049907004171 7.905025930413125 0.3617049907004173 7.923471454017586 0.3888275851167384 7.279957710792657 -2.071767945251741 7.252707923918537 -2.091174697282529 7.056785922228733 -2.071767945251742 -7.279957710792657 3.60230930383809 -7.056785922228732 3.60230930383809 -7.060890679069933 3.576938197173214 -5.690121388297848 4.784846942203251 -5.679372873464557 4.81212212846314 -5.425537767858401 4.784846942203251 5.257749966396306 2.238127159158331 5.19044319420294 2.174650489354293 5.169805678216441 2.203774645995499 8.091502253624395 2.847984580969486 8.116559106319665 2.823897488017409 7.905025930413123 2.847984580969486 7.974000727324746 2.711421312809561 8.184874888882751 2.683990357308276 7.991694895770676 2.683990357308276 7.089414076980404 3.891409795122575 7.117562916148956 3.87281496631796 6.889218849468708 3.891409795122575 7.052671928082037 3.579085085218491 7.279957710792657 3.553704666771124 7.056785922228732 3.553704666771123 -5.618014521290714 -3.740963454464607 -5.630933483310515 -3.717494260488303 -5.383777369702075 -3.740963454464607 -0.9337447459037462 -5.237268806807606 -1.202525370192819 -5.237268806807607 -1.202785001514176 -5.212034885784941 -4.155551980529968 -4.368411102527899 -4.407385614296162 -4.368411102527899 -4.408595755932867 -4.343888470665049 -0.7866734789045558 -2.905686300756087 -1.079361224108526 -2.905686300756086 -1.079995554315324 -2.877355485465953 -0.9899921090106084 -0.6054973022645677 -0.9906208085041063 -0.5732895900857723 -0.6769883797933513 -0.6054973022645677 -0.9368824927316599 1.345601344553227 -0.9371471508370505 1.380291196550636 -0.6102822656157736 1.345601344553227 -0.9194164943493827 3.052803907308949 -0.9191376025459386 3.087494386794017 -0.5880403229384407 3.052803907308949 -4.327264597134145 4.214075276869146 -4.326363227868169 4.246107105709727 -4.043438262940183 4.214075276869145 5.257718141093744 2.238177579226426 5.169773852910238 2.203825066069364 5.162523542740018 2.238177579226426 8.020958995273697 2.075390039611 8.014984018665016 2.040885238245398 7.838859520104162 2.075390039611 7.851534492708137 1.338298761784583 8.020958995273695 1.306640681498651 7.83885952010416 1.306640681498651 7.089414076980401 -0.1522422350910452 7.065549128877333 -0.1766089148531753 6.889218849468707 -0.1522422350910452 7.089414076980402 -2.579620428781995 6.889218849468708 -2.579620428781995 6.894568634402707 -2.554382359578488 -5.658881325239604 4.999445459736856 -5.646101014844469 5.022962266460473 -5.408222599321642 4.999445459736856 -5.658881325239605 4.851752253498015 -5.408222599321643 4.851752253498015 -5.405134640673079 4.823972583106356 8.020958995273697 2.703698637209602 8.037965997820322 2.6731569720878 7.838859520104162 2.703698637209602 8.091502253624396 2.731726712195991 7.905025930413123 2.731726712195991 7.892699923699313 2.763470810421477 6.882337915206716 3.846495242284363 6.906958097270341 3.822597695924058 6.701317974862309 3.846495242284363 6.884686030210803 3.930892229955167 7.089414076980401 3.902559950926199 6.889218849468707 3.902559950926199 5.355005519845296 5.038864350061447 5.57281521324942 5.038864350061446 5.585904221985749 5.015441758617409 5.387276543565392 5.00751871024453 5.618014521290716 4.983135647496873 5.383777369702076 4.983135647496874 0.9337447459037446 6.413703438449323 0.9573595173927529 6.435386439937327 1.202525370192817 6.413703438449323 -0.7866734789045521 -5.06538932238841 -0.809858496376345 -5.087357951888587 -1.079361224108522 -5.06538932238841 4.155551980529967 5.573661995742216 4.167590095393595 5.597052401176532 4.407385614296162 5.573661995742215 -0.6769883797933518 -2.47346946447306 -0.6963824410752739 -2.499892482786617 -0.989992109010609 -2.47346946447306 -0.6231349085514287 -0.2886335442522294 -0.9368824927316583 -0.2571275521303555 -0.6102822656157725 -0.2571275521303555 -0.5925382545852054 1.452190109230196 -0.9194164943493816 1.486802000928491 -0.588040322938439 1.486802000928491 -0.9368824927316583 2.989260231790058 -0.6102822656157725 2.989260231790058 -0.6057718714373334 2.95464864565857 -4.344407637896152 4.176216277967253 -4.068094255706499 4.176216277967253 -4.061437166037296 4.144434184346377 7.994555236402969 2.418633329209624 8.000562573761977 2.384132705547334 7.813977695463445 2.418633329209624 7.818468817536674 1.998685546094638 7.994555236402969 1.964060680592401 7.813977695463445 1.964060680592401 6.882337915206716 1.108482911829678 6.865884915840715 1.077919330033254 6.701317974862309 1.108482911829678 6.882337915206716 -1.001403397725176 6.701317974862309 -1.001403397725177 6.706936325541064 -0.97319204391688 5.618014521290714 -3.688706682456192 5.60508291867447 -3.71218400114565 5.383777369702075 -3.688706682456193 -5.618014521290715 5.033489398688582 -5.383777369702075 5.033489398688582 -5.380277708517728 5.009102549842747 -4.34312926208276 5.330608004661404 -4.068094255706499 5.302740465696545 -4.344407637896151 5.302740465696545 8.020958995273697 2.437946820433476 7.838859520104161 2.437946820433476 7.834412148872458 2.472574482747183 6.711663862443613 3.201320591517932 6.728497075353185 3.170884508632846 6.543262750347934 3.201320591517932 6.882337915206716 3.486455530030453 6.701317974862309 3.486455530030453 6.697575632248265 3.51861822226603 5.530021900809667 4.804071587326873 5.54124409688892 4.776914686637295 5.326128570022592 4.804071587326872 5.357832170269662 4.829204193083857 5.572815213249419 4.801405637170106 5.355005519845295 4.801405637170106 4.208948529117996 5.568963007813125 4.44753877437411 5.568963007813125 4.448560841545348 5.544438233461815 -1.007018039784137 6.431708172088143 -0.8493013544758682 6.431708172088143 -0.8662356188876785 6.406453664322858 1.10573487894831 6.407177696861663 1.350699105388963 6.407177696861663 1.350351194428278 6.381944449917796 1.395056283149452 -5.230085027013481 1.225824621021148 -5.230085027013481 1.241285039505927 -5.204251745528667 1.731934685679073 -2.962044495702981 1.55085691539324 -2.962044495702981 1.562863942988197 -2.933032022317872 1.983521061971769 -0.6855567854979721 1.792201439262944 -0.6855567854979721 1.799661996535315 -0.6529928500682611 2.136748522003975 1.313328052295595 1.938490401881309 1.313328052295595 1.940985160294814 1.348064942679381 2.188314297829721 3.079320608771617 1.987604097177415 3.079320608771617 1.985150605086615 3.114060013520255 -0.936882492731661 4.623051910599274 -0.9361309016619213 4.655257145087229 -0.6102822656157747 4.623051910599274 6.711663862443615 1.925024402047909 6.70575696549514 1.890531342677316 6.543262750347935 1.925024402047909 6.547575844512357 0.5069292619910031 6.711663862443615 0.4748116824340639 6.543262750347935 0.4748116824340637 5.572815213249419 -1.559100047478916 5.561722558084639 -1.586289528753696 5.355005519845295 -1.559100047478916 5.572815213249418 -3.775989891247839 5.355005519845295 -3.775989891247839 5.351670638961791 -3.751591927864505 -4.370194115780932 5.634314081380831 -4.106498705344571 5.609796319296637 -4.371573289103265 5.609796319296637 -4.371573289103265 5.271712918633719 -4.106498705344571 5.271712918633719 -4.096431206840382 5.244507346248376 6.643839798432421 2.567619195287584 6.649796789849342 2.533132168263443 6.47980489056156 2.567619195287584 6.711663862443613 2.699058771651552 6.543262750347934 2.699058771651552 6.541735545556305 2.733739170767791 5.498446087312136 3.885599378014982 5.505997639730058 3.853853266771846 5.303836361074548 3.885599378014983 5.327927385702473 3.941081011540729 5.530021900809665 3.909072920174765 5.326128570022592 3.909072920174765 4.257936460904844 5.222382075887188 4.48531345142495 5.222382075887188 4.486030902111493 5.194500438426589 4.219299388511197 5.178528147736031 4.44753877437411 5.151390473061319 4.208948529117997 5.151390473061319 -1.00701803978414 5.45184854982558 -0.9830551004479032 5.476616749527783 -0.8493013544758715 5.45184854982558 -1.395056283149454 6.384619143505996 -1.367900988315397 6.404899443116974 -1.22582462102115 6.384619143505996 1.126180452989459 5.641416503633121 1.350699105388962 5.615488709512939 1.105734878948308 5.615488709512939 1.731934685679073 -4.924178516475186 1.705792500385768 -4.945271664832444 1.550856915393241 -4.924178516475187 1.983521061971769 -2.3058824449882 1.962029323693447 -2.332015406115985 1.792201439262944 -2.3058824449882 2.136748522003976 -0.1619157663335245 2.122662978108879 -0.1933642392432385 1.93849040188131 -0.1619157663335245 2.188314297829719 1.517674831104229 2.183404800846037 1.483068430645079 1.987604097177413 1.517674831104229 2.136748522003975 2.95799400297503 2.141691388046876 2.923389843946922 1.93849040188131 2.95799400297503 -0.9899921090106101 4.415539712514128 -0.6769883797933529 4.415539712514128 -0.6640286535419743 4.384061745863043 6.481409524701137 1.72795506612671 6.643839798432421 1.693276133926626 6.47980489056156 1.693276133926626 5.530021900809665 0.2562638933463456 5.522535512819788 0.2245090923624617 5.326128570022592 0.2562638933463454 5.530021900809667 -1.71325762960622 5.326128570022592 -1.71325762960622 5.323437547324017 -1.685451073282144 4.406175641169333 -4.342441555283165 4.155551980529967 -4.317921419826119 4.407385614296161 -4.31792141982612 -4.407385614296161 5.62613219503817 -4.155551980529967 5.62613219503817 -4.14352539796433 5.602737416250526 -0.989049937042964 5.986932463028932 -0.6769883797933529 5.958607270824244 -0.9899921090106101 5.958607270824243 5.486959261738098 2.820684156459011 5.489632356636179 2.786046726792639 5.295621030574568 2.820684156459011 5.304443311461843 2.848018489033896 5.498446087312138 2.813351435311252 5.30383636107455 2.813351435311252 4.513108861298631 4.158010227951072 4.513515557441372 4.125972469394512 4.293220230864972 4.158010227951072 4.26494726907729 4.08214504933332 4.48531345142495 4.050410280721512 4.257936460904844 4.050410280721513 1.276725279204792 5.889163354326482 1.501575939317806 5.889163354326482 1.500775228390917 5.860837398112774 4.120657713958259 2.174783692688514 4.089776541609949 2.1553245285458 4.053353924651989 2.238260362477218 -0.631284774629305 5.907484127101301 -0.4830188650751356 5.907484127101301 -0.4985508620873287 5.879526141804989 4.053290871418724 2.238243226210277 4.089713488378332 2.155307392279307 4.053290871418724 2.148475901285807 4.054157899394946 2.238243226210277 4.054157899394946 2.148475901285807 4.01773051086569 2.155307392279307 4.054543914286919 2.238138304462622 4.018116525819456 2.155202470514856 3.987236541310906 2.174661634661405 4.054255546355624 2.23832752867375 3.986948173372667 2.174850858877091 3.966310655794683 2.203975015514911 4.054050695621173 2.238652068903375 3.966105805124072 2.204299555643396 3.95886741765176 2.238652068903375 3.966105805124072 2.272187594718053 4.054050695621173 2.237834378123268 3.95886741765176 2.237834378123268 2.136748522003975 4.656719431448113 1.93849040188131 4.656719431448113 1.931376664778171 4.68933052335335 5.498446087312137 1.654010558828326 5.495781333232114 1.61937203389967 5.303836361074549 1.654010558828326 5.302105984347215 0.1561552233427898 5.498446087312137 0.1241456503715618 5.303836361074548 0.1241456503715618 4.446672468588617 -2.112488711766805 4.208948529117997 -2.084610017992233 4.44753877437411 -2.084610017992233 4.44753877437411 -4.266698714593822 4.208948529117997 -4.266698714593822 4.196732168112794 -4.243364883480098 -1.078604252253852 6.463181153954725 -0.7866734789045543 6.437952798452399 -1.079361224108524 6.437952798452399 -0.7866734789045549 5.77736591715584 -0.767013479870341 5.751065149833229 -1.079361224108526 5.77736591715584 5.295022843372047 1.621605019435101 5.486959261738098 1.586937174499785 5.295621030574568 1.586937174499785 4.523059274737537 2.916007856548877 4.523192791943769 2.881337674012432 4.305799353268193 2.916007856548877 4.295706542211787 2.88038939282568 4.513108861298631 2.845753687310846 4.293220230864972 2.845753687310846 1.618313505717711 4.572318658344436 1.617513135747064 4.540114369776875 1.406837416130729 4.572318658344435 1.290660398817509 4.237757019502931 1.501575939317806 4.20653928295437 1.276725279204791 4.20653928295437 4.141023112258878 2.203732033367162 4.120389769618377 2.174607876719661 4.053085980356384 2.238084546537417 -0.6146994697045521 4.020679997856751 -0.4830188650751344 3.989996889396601 -0.6312847746293043 3.989996889396601 3.986948171177394 2.301635356761356 4.05425554416035 2.238158921409632 3.96631065359941 2.272512137903279 1.98352106197177 4.322119444130752 1.997885599264552 4.29075003516839 1.792201439262946 4.322119444130752 4.48531345142495 -0.06275353672841606 4.484833871098414 -0.09478981890238702 4.257936460904843 -0.06275353672841606 4.48531345142495 -1.948321272137886 4.257936460904844 -1.948321272137886 4.247444760144271 -1.921217425104833 1.202278269767634 -5.213554036127535 0.9337447459037468 -5.18831941884492 1.20252537019282 -5.18831941884492 -0.9337447459037468 6.470280942389443 -0.9101352261482021 6.44859316348806 -1.20252537019282 6.470280942389442 1.7810361668454 5.948996361269827 1.983521061971767 5.91977691270677 1.792201439262943 5.91977691270677 4.513108861298631 1.553437099301205 4.512966207749581 1.51876624239257 4.293220230864972 1.553437099301205 4.523059274737538 1.560638837012923 4.305799353268195 1.560638837012923 4.303304420538273 1.595274856461392 1.663014187917965 3.057044881378341 1.662698406695706 3.022354883904754 1.456228398706928 3.057044881378341 1.411811474799222 2.904143609495244 1.618313505717711 2.869571771675831 1.406837416130728 2.869571771675831 -0.2102850955705954 4.533779046459811 -0.2212219667555027 4.501830716375358 -0.3524154584033468 4.533779046459811 4.148360119053441 2.238232274855406 4.141116365372862 2.203879761700982 4.053179233460373 2.238232274855406 4.018116527126163 2.321283278909248 4.054543915593625 2.238348148296289 3.987236542617612 2.30182458365257 4.51310886129863 0.03565696069686471 4.293220230864971 0.03565696069686471 4.286140664411874 0.06738142067043182 1.350988144508157 -2.831136704223236 1.105734878948305 -2.80280497975379 1.350699105388959 -2.802804979753791 1.105734878948308 -4.987727928423084 1.081620465374786 -4.966387199934666 1.350699105388962 -4.987727928423085 1.536701820058918 6.367885355987457 1.73193468567907 6.341592512008873 1.550856915393238 6.341592512008873 1.731934685679077 5.650744780346956 1.754094166479398 5.624959601068585 1.550856915393245 5.650744780346956 1.618313505717711 1.409318260218672 1.618593808566288 1.374627377623547 1.406837416130728 1.409318260218672 1.663014187917964 1.548769447821672 1.456228398706927 1.548769447821672 1.451225850928825 1.583339440626227 -0.1086696165038081 3.030118861325131 -0.1125886202209725 2.995463149197006 -0.2486929241486502 3.030118861325131 -0.3464514958988113 2.804383934901902 -0.2102850955705932 2.769879506764597 -0.3524154584033451 2.769879506764597 4.141116365372862 2.272607393820292 4.148360119053441 2.23825417733106 4.053179233460373 2.23825417733106 4.054157899394946 2.328012192249299 4.01773051086569 2.321178356806438 1.501575939317805 -0.5012014929778504 1.502112372354255 -0.5334083234158705 1.276725279204791 -0.5012014929778509 1.501575939317806 -2.213331115450854 1.276725279204791 -2.213331115450854 1.255857814214288 -2.187612521976157 -1.210357660518652 -5.207987081071356 -1.395056283149451 -5.182156022682914 -1.225824621021147 -5.182156022682913 1.395056283149452 6.445100058395354 1.42221195935433 6.424813982187559 1.225824621021148 6.445100058395354 1.618313505717711 -0.02352780711635812 1.406837416130728 -0.02352780711635768 1.39268811687711 0.007629375589039378 -0.2102850955705948 1.435104646698213 -0.2064391479506883 1.400443172948768 -0.3524154584033462 1.435104646698212 -0.1086696165038081 1.662898754661748 -0.2486929241486496 1.662898754661748 -0.2547078584367069 1.69739840721977 4.120389765485858 2.301878342480607 4.141023108126361 2.272755123612851 4.053085976223867 2.238401907107786 4.053290871418724 2.328012192249299 4.089713488378332 2.321178356806438 -0.8349414320856191 -2.851902013096587 -1.007018039784136 -2.823559249374875 -0.8493013544758671 -2.823559249374875 -1.007018039784137 -4.861525074475524 -1.03528126658282 -4.842203439682592 -0.8493013544758686 -4.861525074475524 -0.4830188650751377 -0.4695719101567735 -0.472649456256577 -0.5016362722773671 -0.6312847746293077 -0.4695719101567735 -0.2102850955705954 0.3145772758262392 -0.3524154584033462 0.3145772758262392 -0.3694040583669178 0.3451226396423521 4.089776541823367 2.321161220312439 4.120657714171677 2.301702525059598 4.053353924865407 2.23822608971583 -0.4830188650751338 -1.801078081036106 -0.6312847746293038 -1.801078081036107 -0.6561056020352341 -1.776838728686103</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"448\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 16 12 6 13 8 14 9 14 11 13 17 12 7 15 18 16 8 17 9 17 19 16 10 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 28 30 16 31 8 32 9 32 17 31 29 30 18 33 30 34 8 35 9 35 31 34 19 33 12 36 20 37 32 38 33 38 21 37 13 36 2 39 24 40 20 41 21 41 25 40 3 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 40 51 28 52 8 53 9 53 29 52 41 51 26 54 42 55 38 56 39 56 43 55 27 54 30 57 44 58 8 59 9 59 45 58 31 57 46 60 22 61 34 62 35 62 23 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 40 78 8 79 54 80 55 80 9 79 41 78 42 81 56 82 57 83 58 83 59 82 43 81 42 84 57 85 38 86 39 86 58 85 43 84 8 53 44 87 60 88 61 88 45 87 9 53 62 89 46 90 63 91 64 91 47 90 65 89 63 92 46 93 34 94 35 94 47 93 64 92 66 95 32 96 48 97 49 97 33 96 67 95 48 98 20 99 50 100 51 100 21 99 49 98 68 101 34 102 32 103 33 103 35 102 69 101 50 104 24 105 52 106 53 106 25 105 51 104 52 107 36 108 70 109 71 109 37 108 53 107 36 110 38 111 72 112 73 112 39 111 37 110 54 113 8 114 74 115 75 115 9 114 55 113 56 116 54 117 76 118 77 118 55 117 59 116 56 119 76 120 57 121 58 121 77 120 59 119 38 122 57 123 72 124 73 124 58 123 39 122 8 79 60 125 78 126 79 126 61 125 9 79 80 127 62 128 81 129 82 129 65 128 83 127 81 130 62 131 63 132 64 132 65 131 82 130 63 133 34 134 68 135 69 135 35 134 64 133 84 136 66 137 48 138 49 138 67 137 85 136 68 139 32 140 66 141 67 141 33 140 69 139 48 142 50 143 86 144 87 144 51 143 49 142 50 145 52 146 88 147 89 147 53 146 51 145 52 148 70 149 90 150 91 150 71 149 53 148 36 151 72 152 70 153 71 153 73 152 37 151 74 154 8 155 92 156 93 156 9 155 75 154 54 157 74 158 94 159 95 159 75 158 55 157 54 160 94 161 76 162 77 162 95 161 55 160 57 163 76 164 96 165 97 165 77 164 58 163 57 166 96 167 72 168 73 168 97 167 58 166 8 169 78 170 98 171 99 171 79 170 9 169 78 172 80 173 100 174 101 174 83 173 79 172 100 175 80 176 81 177 82 177 83 176 101 175 81 178 63 179 102 180 103 180 64 179 82 178 102 181 63 182 68 183 69 183 64 182 103 181 84 184 104 185 66 186 67 186 105 185 85 184 84 187 48 188 86 189 87 189 49 188 85 187 106 190 68 191 66 192 67 192 69 191 107 190 86 193 50 194 88 195 89 195 51 194 87 193 88 196 52 197 90 198 91 198 53 197 89 196 70 199 108 200 90 201 91 201 109 200 71 199 70 202 72 203 110 204 111 204 73 203 71 202 92 205 8 206 112 207 113 207 9 206 93 205 74 208 92 209 114 210 115 210 93 209 75 208 74 211 114 212 94 213 95 213 115 212 75 211 76 214 94 215 116 216 117 216 95 215 77 214 76 217 116 218 96 219 97 219 117 218 77 217 72 220 96 221 110 222 111 222 97 221 73 220 8 223 98 224 118 225 119 225 99 224 9 223 98 226 78 227 120 228 121 228 79 227 99 226 120 229 78 230 100 231 101 231 79 230 121 229 100 232 81 233 122 234 123 234 82 233 101 232 122 235 81 236 102 237 103 237 82 236 123 235 102 238 68 239 106 240 107 240 69 239 103 238 124 241 104 242 84 243 85 243 105 242 125 241 104 244 106 245 66 246 67 246 107 245 105 244 126 247 84 248 86 249 87 249 85 248 127 247 86 250 88 251 128 252 129 252 89 251 87 250 88 253 90 254 130 255 131 255 91 254 89 253 90 256 108 257 132 258 133 258 109 257 91 256 70 259 110 260 108 261 109 261 111 260 71 259 8 262 118 263 112 264 113 264 119 263 9 262 92 265 112 266 134 267 135 267 113 266 93 265 114 268 92 269 134 270 135 270 93 269 115 268 94 271 114 272 136 273 137 273 115 272 95 271 94 274 136 275 116 276 117 276 137 275 95 274 96 277 116 278 138 279 139 279 117 278 97 277 96 280 138 281 110 282 111 282 139 281 97 280 118 283 98 284 140 285 141 285 99 284 119 283 98 286 120 287 140 288 141 288 121 287 99 286 120 289 100 290 142 291 143 291 101 290 121 289 142 292 100 293 122 294 123 294 101 293 143 292 144 295 122 296 102 297 103 297 123 296 145 295 144 298 102 299 106 300 107 300 103 299 145 298 124 301 146 302 104 303 105 303 147 302 125 301 126 304 124 305 84 306 85 306 125 305 127 304 104 307 148 308 106 309 107 309 149 308 105 307 128 310 126 311 86 312 87 312 127 311 129 310 128 313 88 314 130 315 131 315 89 314 129 313 130 316 90 317 132 318 133 318 91 317 131 316 108 319 150 320 132 321 133 321 151 320 109 319 110 322 152 323 108 324 109 324 153 323 111 322 112 325 118 326 154 327 155 327 119 326 113 325 134 328 112 329 154 330 155 330 113 329 135 328 114 331 134 332 156 333 157 333 135 332 115 331 114 334 156 335 136 336 137 336 157 335 115 334 116 337 136 338 158 339 159 339 137 338 117 337 116 340 158 341 138 342 139 342 159 341 117 340 138 343 152 344 110 345 111 345 153 344 139 343 118 346 140 347 154 348 155 348 141 347 119 346 140 349 120 350 160 351 161 351 121 350 141 349 120 352 142 353 160 354 161 354 143 353 121 352 142 355 122 356 162 357 163 357 123 356 143 355 162 358 122 359 144 360 145 360 123 359 163 358 148 361 144 362 106 363 107 363 145 362 149 361 164 364 146 365 124 366 125 366 147 365 165 364 146 367 148 368 104 369 105 369 149 368 147 367 166 370 124 371 126 372 127 372 125 371 167 370 168 373 126 374 128 375 129 375 127 374 169 373 170 376 128 377 130 378 131 378 129 377 171 376 172 379 130 380 132 381 133 381 131 380 173 379 174 382 132 383 150 384 151 384 133 383 175 382 108 385 152 386 150 387 151 387 153 386 109 385 134 388 154 389 176 390 177 390 155 389 135 388 156 391 134 392 176 393 177 393 135 392 157 391 136 394 156 395 178 396 179 396 157 395 137 394 136 397 178 398 158 399 159 399 179 398 137 397 158 400 180 401 138 402 139 402 181 401 159 400 138 403 180 404 152 405 153 405 181 404 139 403 154 406 140 407 182 408 183 408 141 407 155 406 140 409 160 410 182 411 183 411 161 410 141 409 160 412 142 413 184 414 185 414 143 413 161 412 184 415 142 416 162 417 163 417 143 416 185 415 186 418 162 419 144 420 145 420 163 419 187 418 186 421 144 422 148 423 149 423 145 422 187 421 164 424 188 425 146 426 147 426 189 425 165 424 166 427 164 428 124 429 125 429 165 428 167 427 190 430 148 431 146 432 147 432 149 431 191 430 168 433 166 434 126 435 127 435 167 434 169 433 170 436 168 437 128 438 129 438 169 437 171 436 172 439 170 440 130 441 131 441 171 440 173 439 174 442 172 443 132 444 133 444 173 443 175 442 192 445 174 446 150 447 151 447 175 446 193 445 152 448 194 449 150 450 151 450 195 449 153 448 176 451 154 452 182 453 183 453 155 452 177 451 156 454 176 455 196 456 197 456 177 455 157 454 156 457 196 458 178 459 179 459 197 458 157 457 178 460 198 461 158 462 159 462 199 461 179 460 158 463 198 464 180 465 181 465 199 464 159 463 180 466 194 467 152 468 153 468 195 467 181 466 182 469 160 470 200 471 201 471 161 470 183 469 200 472 160 473 184 474 185 474 161 473 201 472 184 475 162 476 202 477 203 477 163 476 185 475 202 478 162 479 186 480 187 480 163 479 203 478 190 481 186 482 148 483 149 483 187 482 191 481 188 484 164 485 204 486 205 486 165 485 189 484 188 487 190 488 146 489 147 489 191 488 189 487 204 490 164 491 206 492 207 492 165 491 205 490 204 493 206 494 208 495 209 495 207 494 205 493 204 496 208 497 210 498 211 498 209 497 205 496 204 499 210 500 212 501 213 501 211 500 205 499 204 502 212 503 214 504 215 504 213 503 205 502 216 505 204 506 214 507 215 507 205 506 217 505 192 508 150 509 194 510 195 510 151 509 193 508 176 511 182 512 218 513 219 513 183 512 177 511 196 514 176 515 218 516 219 516 177 515 197 514 196 517 220 518 178 519 179 519 221 518 197 517 178 520 220 521 198 522 199 522 221 521 179 520 198 523 222 524 180 525 181 525 223 524 199 523 222 526 194 527 180 528 181 528 195 527 223 526 218 529 182 530 200 531 201 531 183 530 219 529 200 532 184 533 224 534 225 534 185 533 201 532 224 535 184 536 202 537 203 537 185 536 225 535 202 538 186 539 226 540 227 540 187 539 203 538 226 541 186 542 190 543 191 543 187 542 227 541 228 544 188 545 204 546 205 546 189 545 229 544 228 547 190 548 188 549 189 549 191 548 229 547 230 550 204 551 216 552 217 552 205 551 231 550 232 553 192 554 194 555 195 555 193 554 233 553 196 556 218 557 234 558 235 558 219 557 197 556 196 559 234 560 220 561 221 561 235 560 197 559 220 562 236 563 198 564 199 564 237 563 221 562 236 565 222 566 198 567 199 567 223 566 237 565 222 568 232 569 194 570 195 570 233 569 223 568 218 571 200 572 238 573 239 573 201 572 219 571 200 574 224 575 238 576 239 576 225 575 201 574 224 577 202 578 240 579 241 579 203 578 225 577 240 580 202 581 226 582 227 582 203 581 241 580 226 583 190 584 228 585 229 585 191 584 227 583 242 586 228 587 204 588 205 588 229 587 243 586 244 589 204 590 230 591 231 591 205 590 245 589 218 592 238 593 234 594 235 594 239 593 219 592 234 595 246 596 220 597 221 597 247 596 235 595 246 598 236 599 220 600 221 600 237 599 247 598 236 601 248 602 222 603 223 603 249 602 237 601 248 604 232 605 222 606 223 606 233 605 249 604 238 607 224 608 250 609 251 609 225 608 239 607 224 610 240 611 250 612 251 612 241 611 225 610 240 613 226 614 242 615 243 615 227 614 241 613 242 616 226 617 228 618 229 618 227 617 243 616 252 619 242 620 204 621 205 621 243 620 253 619 254 622 204 493 244 623 245 623 205 493 255 622 234 624 238 625 256 626 257 626 239 625 235 624 234 627 256 628 246 629 247 629 257 628 235 627 246 630 258 631 236 632 237 632 259 631 247 630 258 633 248 634 236 635 237 635 249 634 259 633 238 636 250 637 256 638 257 638 251 637 239 636 250 639 240 640 252 641 253 641 241 640 251 639 240 642 242 643 252 644 253 644 243 643 241 642 260 645 252 646 204 647 205 647 253 646 261 645 254 648 262 649 204 490 205 490 263 649 255 648 256 650 262 651 246 652 247 652 263 651 257 650 262 653 258 654 246 655 247 655 259 654 263 653 256 656 250 657 260 658 261 658 251 657 257 656 250 659 252 660 260 661 261 661 253 660 251 659 262 662 260 663 204 664 205 664 261 663 263 662 256 665 260 666 262 667 263 667 261 666 257 665</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID118\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID119\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID123\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID126\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID124\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID125\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID124\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"268\" source=\"#ID128\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"804\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID128\">-0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7703003287315369 -0.5612730979919434 0.2852768898010254 -0.7703003287315369 -0.5612730979919434 0.2852768898010254 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557626962661743 -0.5678825378417969 0.2799702882766724 -0.7557626962661743 -0.5678825378417969 0.2799702882766724 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7686104774475098 -0.5605920553207398 0.2893087267875671 -0.7686104774475098 -0.5605920553207398 0.2893087267875671 -0.7716054916381836 -0.5605920553207398 0.281104177236557 -0.7716054916381836 -0.5605920553207398 0.281104177236557 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7827324271202087 -0.5360980033874512 0.2898147404193878 -0.7827324271202087 -0.5360980033874512 0.2898147404193878 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7837280631065369 -0.535775899887085 0.2855293154716492 -0.7837280631065369 -0.535775899887085 0.2855293154716492 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7807338237762451 -0.535775899887085 0.2937338352203369 -0.7807338237762451 -0.535775899887085 0.2937338352203369 -0.7667932510375977 -0.5586550235748291 0.2925863564014435 -0.7667932510375977 -0.5586550235748291 0.2925863564014435 -0.7835687398910523 -0.534860372543335 0.2815302610397339 -0.7835687398910523 -0.534860372543335 0.2815302610397339 -0.772327184677124 -0.5586550235748291 0.2774266302585602 -0.772327184677124 -0.5586550235748291 0.2774266302585602 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7860668897628784 -0.5086090564727783 0.2910321354866028 -0.7860668897628784 -0.5086090564727783 0.2910321354866028 -0.7870047688484192 -0.5086090564727783 0.2867254912853241 -0.7870047688484192 -0.5086090564727783 0.2867254912853241 -0.7866801619529724 -0.5086090564727783 0.2826657593250275 -0.7866801619529724 -0.5086090564727783 0.2826657593250275 -0.7521452307701111 -0.5642404556274414 0.2898727059364319 -0.7521452307701111 -0.5642404556274414 0.2898727059364319 -0.7651250958442688 -0.5557551383972168 0.2946110367774963 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7651250958442688 -0.5557551383972168 0.2946110367774963 -0.7723551988601685 -0.5557551383972168 0.2748038470745087 -0.7723551988601685 -0.5557551383972168 0.2748038470745087 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7840102910995483 -0.5086090564727783 0.2949300408363342 -0.7840102910995483 -0.5086090564727783 0.2949300408363342 -0.7780358195304871 -0.534860372543335 0.296690046787262 -0.7780358195304871 -0.534860372543335 0.296690046787262 -0.7851429581642151 -0.5086090564727783 0.27947136759758 -0.7851429581642151 -0.5086090564727783 0.27947136759758 -0.782279908657074 -0.5334889888763428 0.2784262001514435 -0.782279908657074 -0.5334889888763428 0.2784262001514435 -0.7529913187026978 -0.5611518621444702 0.2875483632087708 -0.7529913187026978 -0.5611518621444702 0.2875483632087708 -0.7638605833053589 -0.5523343086242676 0.2950736284255981 -0.7638605833053589 -0.5523343086242676 0.2950736284255981 -0.7716865539550781 -0.5523343086242676 0.2736347615718842 -0.7716865539550781 -0.5523343086242676 0.2736347615718842 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7593755125999451 -0.5642404556274414 0.2700657248497009 -0.7593755125999451 -0.5642404556274414 0.2700657248497009 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7846143841743469 -0.4800049960613251 0.290501743555069 -0.7846143841743469 -0.4800049960613251 0.290501743555069 -0.7855896949768066 -0.4802669584751129 0.286208987236023 -0.7855896949768066 -0.4802669584751129 0.286208987236023 -0.7853732705116272 -0.4810132682323456 0.2821890711784363 -0.7853732705116272 -0.4810132682323456 0.2821890711784363 -0.7839964628219605 -0.4821297228336334 0.2790530025959015 -0.7839964628219605 -0.4821297228336334 0.2790530025959015 -0.7542600035667419 -0.5590887069702148 0.2840702533721924 -0.7542600035667419 -0.5590887069702148 0.2840702533721924 -0.763191282749176 -0.548913836479187 0.2939048111438751 -0.763191282749176 -0.548913836479187 0.2939048111438751 -0.7750492691993713 -0.5334889888763428 0.2982333302497864 -0.7750492691993713 -0.5334889888763428 0.2982333302497864 -0.7800555229187012 -0.5318727493286133 0.2766901254653931 -0.7800555229187012 -0.5318727493286133 0.2766901254653931 -0.7704221606254578 -0.548913836479187 0.2740978002548218 -0.7704221606254578 -0.548913836479187 0.2740978002548218 -0.7585252523422241 -0.5611518621444702 0.2723884582519531 -0.7585252523422241 -0.5611518621444702 0.2723884582519531 -0.7825949788093567 -0.4802669584751129 0.2944135665893555 -0.7825949788093567 -0.4802669584751129 0.2944135665893555 -0.7811463475227356 -0.5086090564727783 0.297825813293457 -0.7811463475227356 -0.5086090564727783 0.297825813293457 -0.7816710472106934 -0.4834472239017487 0.2772795259952545 -0.7816710472106934 -0.4834472239017487 0.2772795259952545 -0.7826264500617981 -0.5086090564727783 0.2776279151439667 -0.7826264500617981 -0.5086090564727783 0.2776279151439667 -0.7557573914527893 -0.5583648681640625 0.2799681127071381 -0.7557573914527893 -0.5583648681640625 0.2799681127071381 -0.7632195949554443 -0.5460140705108643 0.2912820279598236 -0.7632195949554443 -0.5460140705108643 0.2912820279598236 -0.7722298502922058 -0.5318727493286133 0.2981289625167847 -0.7722298502922058 -0.5318727493286133 0.2981289625167847 -0.7772368788719177 -0.5302550792694092 0.2765855491161346 -0.7772368788719177 -0.5302550792694092 0.2765855491161346 -0.7687534689903259 -0.5460140705108643 0.2761222422122955 -0.7687534689903259 -0.5460140705108643 0.2761222422122955 -0.7572545409202576 -0.5590887069702148 0.2758658826351166 -0.7572545409202576 -0.5590887069702148 0.2758658826351166 -0.7700717449188232 -0.4507050812244415 0.2851933538913727 -0.7700717449188232 -0.4507050812244415 0.2851933538913727 -0.7713201642036438 -0.4513538777828217 0.2810003161430359 -0.7713201642036438 -0.4513538777828217 0.2810003161430359 -0.7718814015388489 -0.4532025158405304 0.2772639095783234 -0.7718814015388489 -0.4532025158405304 0.2772639095783234 -0.7716686725616455 -0.4559684097766876 0.2745532691478729 -0.7716686725616455 -0.4559684097766876 0.2745532691478729 -0.7707153558731079 -0.4592308700084686 0.2732801735401154 -0.7707153558731079 -0.4592308700084686 0.2732801735401154 -0.7639413475990295 -0.5440757274627686 0.2876043915748596 -0.7639413475990295 -0.5440757274627686 0.2876043915748596 -0.7700060606002808 -0.5302550792694092 0.2963924407958984 -0.7700060606002808 -0.5302550792694092 0.2963924407958984 -0.7779124975204468 -0.5086090564727783 0.2992783784866333 -0.7779124975204468 -0.5086090564727783 0.2992783784866333 -0.7795143723487854 -0.5086090564727783 0.2774169743061066 -0.7795143723487854 -0.5086090564727783 0.2774169743061066 -0.774250328540802 -0.5288839340209961 0.2781288921833038 -0.774250328540802 -0.5288839340209961 0.2781288921833038 -0.7669360041618347 -0.5440757274627686 0.2793997526168823 -0.7669360041618347 -0.5440757274627686 0.2793997526168823 -0.7683249115943909 -0.4513538777828217 0.2892045080661774 -0.7683249115943909 -0.4513538777828217 0.2892045080661774 -0.7798391580581665 -0.4810132682323456 0.2973486185073853 -0.7798391580581665 -0.4810132682323456 0.2973486185073853 -0.7691658139228821 -0.462493509054184 0.2736393809318543 -0.7691658139228821 -0.462493509054184 0.2736393809318543 -0.7787491083145142 -0.4847645461559296 0.2771378755569458 -0.7787491083145142 -0.4847645461559296 0.2771378755569458 -0.7652463316917419 -0.5433958768844605 0.2834318280220032 -0.7652463316917419 -0.5433958768844605 0.2834318280220032 -0.7687168121337891 -0.5288839340209961 0.2932883203029633 -0.7687168121337891 -0.5288839340209961 0.2932883203029633 -0.7748002409934998 -0.5086090564727783 0.299067348241806 -0.7748002409934998 -0.5086090564727783 0.299067348241806 -0.7762805819511414 -0.5086090564727783 0.2788696885108948 -0.7762805819511414 -0.5086090564727783 0.2788696885108948 -0.771552324295044 -0.5279688835144043 0.2810851335525513 -0.771552324295044 -0.5279688835144043 0.2810851335525513 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.7598279118537903 -0.4502493441104889 0.270230770111084 -0.7598279118537903 -0.4502493441104889 0.270230770111084 -0.7685574293136597 -0.5279688835144043 0.2892895638942719 -0.7685574293136597 -0.5279688835144043 0.2892895638942719 -0.7722839117050171 -0.5086090564727783 0.2972239553928375 -0.7722839117050171 -0.5086090564727783 0.2972239553928375 -0.7767665386199951 -0.4821297228336334 0.298860102891922 -0.7767665386199951 -0.4821297228336334 0.298860102891922 -0.7756767272949219 -0.4858811795711517 0.2786497473716736 -0.7756767272949219 -0.4858811795711517 0.2786497473716736 -0.7734167575836182 -0.5086090564727783 0.2817656397819519 -0.7734167575836182 -0.5086090564727783 0.2817656397819519 -0.7695537805557251 -0.5276470184326172 0.2850039303302765 -0.7695537805557251 -0.5276470184326172 0.2850039303302765 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.766347348690033 -0.4532025158405304 0.2924236953258514 -0.766347348690033 -0.4532025158405304 0.2924236953258514 -0.7589777112007141 -0.4533375799655914 0.272553950548172 -0.7589777112007141 -0.4533375799655914 0.272553950548172 -0.7672565579414368 -0.4652592241764069 0.2755759060382843 -0.7672565579414368 -0.4652592241764069 0.2755759060382843 -0.7707462310791016 -0.5086090564727783 0.2940293550491333 -0.7707462310791016 -0.5086090564727783 0.2940293550491333 -0.7738451957702637 -0.4834472239017487 0.2987184822559357 -0.7738451957702637 -0.4834472239017487 0.2987184822559357 -0.7729213237762451 -0.4866270124912262 0.2815848290920258 -0.7729213237762451 -0.4866270124912262 0.2815848290920258 -0.7713596820831299 -0.5086090564727783 0.285663366317749 -0.7713596820831299 -0.5086090564727783 0.285663366317749 -0.7562143206596375 -0.4466072618961334 0.2801350057125092 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7562143206596375 -0.4466072618961334 0.2801350057125092 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.7704225182533264 -0.5086090564727783 0.2899697721004486 -0.7704225182533264 -0.5086090564727783 0.2899697721004486 -0.7715195417404175 -0.4847645461559296 0.2969449162483215 -0.7715195417404175 -0.4847645461559296 0.2969449162483215 -0.7644380927085877 -0.4559684097766876 0.2943599820137024 -0.7644380927085877 -0.4559684097766876 0.2943599820137024 -0.7652781009674072 -0.4671074450016022 0.2787948548793793 -0.7652781009674072 -0.4671074450016022 0.2787948548793793 -0.7709025144577026 -0.4868890345096588 0.285496324300766 -0.7709025144577026 -0.4868890345096588 0.285496324300766 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7577064633369446 -0.4554002583026886 0.2760307788848877 -0.7577064633369446 -0.4554002583026886 0.2760307788848877 -0.770143449306488 -0.4858811795711517 0.2938092648983002 -0.770143449306488 -0.4858811795711517 0.2938092648983002 -0.7628887891769409 -0.4592308700084686 0.2947191298007965 -0.7628887891769409 -0.4592308700084686 0.2947191298007965 -0.7635319828987122 -0.4677572548389435 0.2828062176704407 -0.7635319828987122 -0.4677572548389435 0.2828062176704407 -0.7699267864227295 -0.4866270124912262 0.2897888720035553 -0.7699267864227295 -0.4866270124912262 0.2897888720035553 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7562091946601868 -0.4561249315738678 0.2801329493522644 -0.7562091946601868 -0.4561249315738678 0.2801329493522644 -0.7619361281394959 -0.462493509054184 0.29344642162323 -0.7619361281394959 -0.462493509054184 0.29344642162323 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7622835040092468 -0.4671074450016022 0.2869994938373566 -0.7622835040092468 -0.4671074450016022 0.2869994938373566 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7547121644020081 -0.4554002583026886 0.2842352688312531 -0.7547121644020081 -0.4554002583026886 0.2842352688312531 -0.7617230415344238 -0.4652592241764069 0.2907354831695557 -0.7617230415344238 -0.4652592241764069 0.2907354831695557 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7525970935821533 -0.4502493441104889 0.2900377213954926 -0.7525970935821533 -0.4502493441104889 0.2900377213954926 -0.7534435987472534 -0.4533375799655914 0.2877134084701538 -0.7534435987472534 -0.4533375799655914 0.2877134084701538</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID125\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"268\" source=\"#ID129\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"804\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID129\">-0.5876968925040732 -0.6735887911657533 0.4482081022883399 -0.6799127012575088 -0.6905785237255421 0.2466171551976235 -0.759162307953137 -0.5897294263540077 0.2754846527039925 0.759162307953137 0.5897294263540077 -0.2754846527039925 0.6799127012575088 0.6905785237255421 -0.2466171551976235 0.5876968925040732 0.6735887911657533 -0.4482081022883399 0.9393751607873966 -0.0005323211920775615 -0.3428906880185009 0.9393628637960561 -0.0006173183939990839 -0.3429242322129957 0.9393707373678011 -0.000612502356919651 -0.3429026722233822 -0.9393707373678011 0.000612502356919651 0.3429026722233822 -0.9393628637960561 0.0006173183939990839 0.3429242322129957 -0.9393751607873966 0.0005323211920775615 0.3428906880185009 -0.6458786781853358 -0.5638637250233121 0.5146828466817196 0.6458786781853358 0.5638637250233121 -0.5146828466817196 -0.8252130452855564 -0.5644959910024429 0.01917566251028928 0.8252130452855564 0.5644959910024429 -0.01917566251028928 0.9393567538817786 -0.0005382712193212191 -0.342941101649805 -0.9393567538817786 0.0005382712193212191 0.342941101649805 0.939356016129181 -0.0005718943339125305 -0.3429430680138977 -0.939356016129181 0.0005718943339125305 0.3429430680138977 -0.8952735511995463 -0.3038189711323704 0.325851655362714 0.8952735511995463 0.3038189711323704 -0.325851655362714 -0.4478259900236246 -0.6063394693870341 0.6571182013327666 0.4478259900236246 0.6063394693870341 -0.6571182013327666 -0.9554916368303205 -0.2903786264833388 0.05211511516790984 0.9554916368303205 0.2903786264833388 -0.05211511516790984 -0.7434422345913258 -0.6677615857521629 0.03725732705942159 0.7434422345913258 0.6677615857521629 -0.03725732705942159 0.9393876703993481 -0.0004425158333556151 -0.3428565427134553 -0.9393876703993481 0.0004425158333556151 0.3428565427134553 0.9393666363447232 -0.0005621982148279082 -0.3429139927963977 -0.9393666363447232 0.0005621982148279082 0.3429139927963977 -0.7663098117138697 -0.287478801867799 0.5745652364594542 0.7663098117138697 0.287478801867799 -0.5745652364594542 -0.4613914722004991 -0.4765550593873655 0.7483402867365623 0.4613914722004991 0.4765550593873655 -0.7483402867365623 -0.932740769324679 -0.2413542623399678 -0.267848422227826 0.932740769324679 0.2413542623399678 0.267848422227826 -0.8341463287975626 -0.4767548134915079 -0.2773170567531434 0.8341463287975626 0.4767548134915079 0.2773170567531434 0.9393855128217374 -0.0006459763529616571 -0.3428621312061057 -0.9393855128217374 0.0006459763529616571 0.3428621312061057 -0.2088796630572912 -0.4500651899447348 0.8682226737197561 0.2088796630572912 0.4500651899447348 -0.8682226737197561 -0.7749432179757205 -0.5980364207514185 -0.204488259732111 0.7749432179757205 0.5980364207514185 0.204488259732111 0.939366114960446 -0.0006049700991971296 -0.3429153482644036 -0.939366114960446 0.0006049700991971296 0.3429153482644036 -0.9387340067703677 -0.03695263064359954 0.3426557567316931 0.9387340067703677 0.03695263064359954 -0.3426557567316931 -0.9968836200001532 -0.03631772943364059 0.07002907042203974 0.9968836200001532 0.03631772943364059 -0.07002907042203974 -0.9665215557356135 -0.03194205032447853 -0.2545894493483146 0.9665215557356135 0.03194205032447853 0.2545894493483146 0.9430367189335424 0.1968518836966687 0.268199706614553 -0.9430367189335424 -0.1968518836966687 -0.268199706614553 -0.1507118301187419 -0.2948238051524016 0.943591473137458 0.2067286901584398 -0.1242111749235226 0.9704817528884784 -0.2067286901584398 0.1242111749235226 -0.9704817528884784 0.1507118301187419 0.2948238051524016 -0.943591473137458 -0.7259792496024214 -0.2943875774327934 -0.6215223917124435 0.7259792496024214 0.2943875774327934 0.6215223917124435 -0.7333575458056554 -0.4462259760542575 -0.5129026109353815 0.7333575458056554 0.4462259760542575 0.5129026109353815 0.9393735877531112 -0.0006683619107217434 -0.3428947592545039 -0.9393735877531112 0.0006683619107217434 0.3428947592545039 -0.8075809994209117 -0.03495251137658172 0.5887200109753288 0.8075809994209117 0.03495251137658172 -0.5887200109753288 -0.5434233473847485 -0.236380861998622 0.8054906291186406 0.5434233473847485 0.236380861998622 -0.8054906291186406 -0.77624666820467 -0.0208055834280788 -0.6300858971595587 0.77624666820467 0.0208055834280788 0.6300858971595587 -0.7622511894948567 -0.1430085582808667 -0.6312857327487325 0.7622511894948567 0.1430085582808667 0.6312857327487325 0.9517583666008596 0.3063554853541103 -0.01738758748968628 -0.9517583666008596 -0.3063554853541103 0.01738758748968628 0.3085135604110648 -0.006603051996354107 0.9511970262499887 -0.3085135604110648 0.006603051996354107 -0.9511970262499887 -0.3878239877414278 -0.008000950448255184 -0.9216987248142754 0.3878239877414278 0.008000950448255184 0.9216987248142754 -0.4792453524202446 -0.1284890568692437 -0.8682248870243514 0.4792453524202446 0.1284890568692437 0.8682248870243514 0.9393735869902281 -0.0006695758963013816 -0.3428947589760324 0.5562171680627579 0.1930149375026731 -0.8083116328824455 -0.5562171680627579 -0.1930149375026731 0.8083116328824455 -0.9393735869902281 0.0006695758963013816 0.3428947589760324 -0.9045527953872581 0.2690997388246127 0.3307107057862241 0.9045527953872581 -0.2690997388246127 -0.3307107057862241 -0.9649660436318769 0.2559692579079254 0.05762181569083463 0.9649660436318769 -0.2559692579079254 -0.05762181569083463 -0.9411968749283585 0.212637547222373 -0.2625523112378656 0.9411968749283585 -0.212637547222373 0.2625523112378656 -0.7688041742506049 0.1267303267397051 -0.6268010577043508 0.7688041742506049 -0.1267303267397051 0.6268010577043508 0.9251000585648488 0.3236474129631007 -0.1986006891367833 -0.9251000585648488 -0.3236474129631007 0.1986006891367833 0.7287341594235066 0.266575449730096 0.6307805121359665 -0.7287341594235066 -0.266575449730096 -0.6307805121359665 -0.1772913704638064 -0.1383692191083977 0.9743827426439765 0.1772913704638064 0.1383692191083977 -0.9743827426439765 -0.3700636271278899 -0.0026001605183503 -0.9290027723544364 0.3700636271278899 0.0026001605183503 0.9290027723544364 0.1511001016898652 0.2634154647907756 -0.9527754468805187 -0.1511001016898652 -0.2634154647907756 0.9527754468805187 0.7485679692683575 0.2979864513267261 -0.5923259830626647 -0.7485679692683575 -0.2979864513267261 0.5923259830626647 -0.7742812385345269 0.2570974118672391 0.5782641995356501 0.7742812385345269 -0.2570974118672391 -0.5782641995356501 -0.5751797832589399 -0.02964236575501923 0.8174897840845747 0.5751797832589399 0.02964236575501923 -0.8174897840845747 -0.3765588901945572 0.00306265901278567 -0.9263876199168547 0.3765588901945572 -0.00306265901278567 0.9263876199168547 -0.3558744091625368 -0.00105431210854561 -0.9345331954131929 0.3558744091625368 0.00105431210854561 0.9345331954131929 0.8900901419288182 0.3214159272263259 -0.3231583837166805 -0.8900901419288182 -0.3214159272263259 0.3231583837166805 0.8939422885008184 0.3901586756435967 0.2205524714210979 -0.8939422885008184 -0.3901586756435967 -0.2205524714210979 0.3189739854704907 -0.002230760464651021 0.9477608455200186 -0.3189739854704907 0.002230760464651021 -0.9477608455200186 0.1459070766059959 0.1197596578183602 -0.9820227845399114 -0.1459070766059959 -0.1197596578183602 0.9820227845399114 0.5502710975079951 0.3842764948060142 -0.7413051293407796 -0.5502710975079951 -0.3842764948060142 0.7413051293407796 0.8401899553323845 0.3172136215311651 -0.4398367393404606 -0.8401899553323845 -0.3172136215311651 0.4398367393404606 -0.7403767789009327 0.6147888203117427 0.2718031119836112 0.7403767789009327 -0.6147888203117427 -0.2718031119836112 -0.8111574230182659 0.5848269571315641 0.001032131097179552 0.8111574230182659 -0.5848269571315641 -0.001032131097179552 -0.8177054620361993 0.4874545794882314 -0.3061793760071327 0.8177054620361993 -0.4874545794882314 0.3061793760071327 -0.7013225750134465 0.2955872987883978 -0.6486715614018295 0.7013225750134465 -0.2955872987883978 0.6486715614018295 -0.3706111819145363 0.007338079827218162 -0.9287591207758661 0.3706111819145363 -0.007338079827218162 0.9287591207758661 0.9049787698564504 0.4174971728340059 -0.08191176218784334 -0.9049787698564504 -0.4174971728340059 0.08191176218784334 0.7492842702768336 0.1133073061078705 0.6524833612424842 -0.7492842702768336 -0.1133073061078705 -0.6524833612424842 -0.1878140547977587 -0.01875155572929557 0.9820255902868089 0.1878140547977587 0.01875155572929557 -0.9820255902868089 0.167502222222814 0.02034291975031596 -0.9856617935004132 -0.167502222222814 -0.02034291975031596 0.9856617935004132 0.5512543512531241 0.1792794820842699 -0.8148481499813896 -0.5512543512531241 -0.1792794820842699 0.8148481499813896 0.7513795791219324 0.4126530258060037 -0.5149234975913383 -0.7513795791219324 -0.4126530258060037 0.5149234975913383 -0.6173781056117399 0.5870733562910818 0.5236307372990856 0.6173781056117399 -0.5870733562910818 -0.5236307372990856 -0.5497328960254407 0.2145702959604168 0.8073124123404403 0.5497328960254407 -0.2145702959604168 -0.8073124123404403 0.1141922235456532 -0.2671827699782004 -0.9568560516130291 -0.1141922235456532 0.2671827699782004 0.9568560516130291 0.1373067547012777 -0.1084821594943567 -0.984570198708474 -0.1373067547012777 0.1084821594943567 0.984570198708474 0.8546613199521403 0.4177995435425294 -0.3082167574829752 -0.8546613199521403 -0.4177995435425294 0.3082167574829752 0.949312841698599 0.1689206995761342 0.2650866383672328 -0.949312841698599 -0.1689206995761342 -0.2650866383672328 0.3297255915197676 -0.0009885026706106888 0.9440762983781605 -0.3297255915197676 0.0009885026706106888 -0.9440762983781605 0.5669851340101569 0.03369013539364726 -0.8230387795168842 -0.5669851340101569 -0.03369013539364726 0.8230387795168842 0.7912620993234708 0.1931464842356832 -0.5801712900528676 -0.7912620993234708 -0.1931464842356832 0.5801712900528676 -0.638537056043159 0.7328347537142009 0.2349971314896894 0.638537056043159 -0.7328347537142009 -0.2349971314896894 -0.7017607547321368 0.712370248672392 0.007776369603867601 0.7017607547321368 -0.712370248672392 -0.007776369603867601 -0.7315432666606591 0.6332764970439743 -0.2525971640679395 0.7315432666606591 -0.6332764970439743 0.2525971640679395 -0.6857894462902499 0.4575811258932667 -0.5659614373640338 0.6857894462902499 -0.4575811258932667 0.5659614373640338 -0.448989411502799 0.118161168088927 -0.8856898140513023 0.448989411502799 -0.118161168088927 0.8856898140513023 0.5397359834793658 -0.2011374880223855 -0.8174526157824724 -0.5397359834793658 0.2011374880223855 0.8174526157824724 0.9805230520615818 0.1855606155572991 -0.06435683592157802 -0.9805230520615818 -0.1855606155572991 0.06435683592157802 0.7630889204272282 0.01780855155038437 0.64604810580396 -0.7630889204272282 -0.01780855155038437 -0.64604810580396 -0.1843376772474672 0.1285988927317919 0.9744136419073606 0.1843376772474672 -0.1285988927317919 -0.9744136419073606 0.5422038749671823 -0.1706845476378058 -0.822728231658699 -0.5422038749671823 0.1706845476378058 0.822728231658699 0.805326769638433 0.03891174302325975 -0.591552762108857 -0.805326769638433 -0.03891174302325975 0.591552762108857 0.9228136040141001 0.1909154029804643 -0.334613749196465 -0.9228136040141001 -0.1909154029804643 0.334613749196465 -0.5477717468215713 0.7058405800431359 0.4491494060425926 0.5477717468215713 -0.7058405800431359 -0.4491494060425926 -0.4230759410465558 0.4905613902451703 0.7618111777260144 0.4230759410465558 -0.4905613902451703 -0.7618111777260144 0.7307814415269979 -0.3129023787814385 -0.6066717284270301 -0.7307814415269979 0.3129023787814385 0.6066717284270301 0.4946705607433165 -0.4106995055208651 -0.765915760706626 -0.4946705607433165 0.4106995055208651 0.765915760706626 0.9640089799779689 0.03017944270324709 0.2641512592435581 -0.9640089799779689 -0.03017944270324709 -0.2641512592435581 0.3067914316709257 0.003415327227728099 0.9517706409599064 -0.3067914316709257 -0.003415327227728099 -0.9517706409599064 0.7845936255858756 -0.1951876263780493 -0.5884850322641299 -0.7845936255858756 0.1951876263780493 0.5884850322641299 0.9386630805879255 0.0392960783194796 -0.3425893159015547 -0.9386630805879255 -0.0392960783194796 0.3425893159015547 0.9393670562484972 0.0006709258275012985 -0.3429126470306497 0.939387535505722 0.000712326964459923 -0.342856457904444 0.9393574540791952 0.0007067326414839689 -0.3429388779284527 -0.9393574540791952 -0.0007067326414839689 0.3429388779284527 -0.939387535505722 -0.000712326964459923 0.342856457904444 -0.9393670562484972 -0.0006709258275012985 0.3429126470306497 0.9393431617020412 0.0007352327346118228 -0.342977964301555 -0.9393431617020412 -0.0007352327346118228 0.342977964301555 0.9393599141774945 0.0007601345231298448 -0.3429320250894583 -0.9393599141774945 -0.0007601345231298448 0.3429320250894583 0.9393615077663579 0.0007724940961668289 -0.3429276322779873 0.9393601490072554 0.0007609575084204824 -0.3429313800175442 -0.9393601490072554 -0.0007609575084204824 0.3429313800175442 -0.9393615077663579 -0.0007724940961668289 0.3429276322779873 0.9393627260853724 0.0006563668888109732 -0.3429245369231614 -0.9393627260853724 -0.0006563668888109732 0.3429245369231614 0.9971204370427232 0.03653306278942292 -0.06645426513740364 -0.9971204370427232 -0.03653306278942292 0.06645426513740364 0.7372987661546131 -0.1107401548197216 0.6664286514979597 -0.7372987661546131 0.1107401548197216 -0.6664286514979597 -0.1171929909311837 0.2980396873264142 0.9473321210932186 0.1171929909311837 -0.2980396873264142 -0.9473321210932186 0.7109610084331069 -0.4576545015958977 -0.533935203612564 -0.7109610084331069 0.4576545015958977 0.533935203612564 0.9195885397944029 -0.2021437811372046 -0.3368899066851834 -0.9195885397944029 0.2021437811372046 0.3368899066851834 0.9393777598906878 0.0007398185943266229 -0.342883182572725 -0.9393777598906878 -0.0007398185943266229 0.342883182572725 -0.4126002273746283 0.6241763898905763 0.6634492344358925 0.4126002273746283 -0.6241763898905763 -0.6634492344358925 0.8327769633305351 -0.326481564813242 -0.4470931862409326 -0.8327769633305351 0.326481564813242 0.4470931862409326 0.9437654754795771 -0.1746400651050991 0.2807268689543169 -0.9437654754795771 0.1746400651050991 -0.2807268689543169 0.3076547733687897 0.009019681811754757 0.9514552988782045 -0.3076547733687897 -0.009019681811754757 -0.9514552988782045 0.8292553411957173 -0.4679345914479724 -0.305569627457955 -0.8292553411957173 0.4679345914479724 0.305569627457955 0.978525240877293 -0.198207437447245 -0.05658767274444375 -0.978525240877293 0.198207437447245 0.05658767274444375 0.9393775037110876 0.0007170786854222044 -0.3428839327231367 -0.9393775037110876 -0.0007170786854222044 0.3428839327231367 0.8889169327109634 -0.3206772464545694 -0.327097524212654 -0.8889169327109634 0.3206772464545694 0.327097524212654 0.6972377163543299 -0.2684672569085393 0.6646690145185071 -0.6972377163543299 0.2684672569085393 -0.6646690145185071 -0.1853855410059012 0.4540945488152194 0.8714530061467753 0.1853855410059012 -0.4540945488152194 -0.8714530061467753 0.8860657673843491 -0.460566397903878 -0.05259324092914863 -0.8860657673843491 0.460566397903878 0.05259324092914863 0.9393815149114341 0.0006962135971441197 -0.3428729862927766 -0.9393815149114341 -0.0006962135971441197 0.3428729862927766 0.9261755368606386 -0.3171137330902705 -0.2040533146176769 -0.9261755368606386 0.3171137330902705 0.2040533146176769 0.8692075955050879 -0.4145285925430947 0.2695258835075111 -0.8692075955050879 0.4145285925430947 -0.2695258835075111 0.2112090076613408 0.1239828002257577 0.9695457804203428 -0.2112090076613408 -0.1239828002257577 -0.9695457804203428 0.9435827415100812 -0.1957791465876297 0.2670620446370821 -0.9435827415100812 0.1957791465876297 -0.2670620446370821 0.9532398032915065 -0.3012849232039792 -0.02369118972829772 -0.9532398032915065 0.3012849232039792 0.02369118972829772</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID127\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"672\" source=\"#ID130\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1344\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID130\">-1.634288126785523 -0.5065289085493202 -1.640379052581864 -0.5410184523209991 -1.856555345418121 -0.4964163357652918 -5.778295590805511 0.03205422185374644 -5.771040376065449 0.06640407704827979 -5.683106961699117 0.03203849938297348 -1.649825872907014 -0.7096271427484812 -1.872085244757289 -0.6994083991017083 -1.864254265075438 -0.6651528064412706 -1.250153234433578 1.388867994416182 -1.033136379969898 1.346867854706073 -1.2640871169191 1.355830552429904 -5.772293785269364 0.06467080810115421 -5.751655304927285 0.09379116709534083 -5.684362861601302 0.03030128675433246 -5.771057804517495 -0.004020829118176509 -5.77829604825178 0.03033741467521566 -5.683107419145802 0.03032169064965274 0.941829984151723 -0.9609511652732851 0.9391453810392414 -0.9956921457641622 0.6591045179291777 -0.9565910163461631 -2.298736174314402 -2.252131831131854 -2.295799360350946 -2.285392208547589 -2.508224399502738 -2.235320619216542 1.360259115359714 0.7438133206830114 1.348136929739905 0.7103366787325215 1.072091003311855 0.7458384694714858 -1.046144858699138 1.135555738755742 -1.061731116339241 1.102958580026134 -1.277093603441204 1.144550148730938 -5.749518098518074 0.09476023152207522 -5.718629545671879 0.1142170674418765 -5.682217795954116 0.0312755066327144 -5.751022146412669 -0.03209973361856562 -5.771643141950839 -0.002972906983269175 -5.683691598819914 0.03136777785330124 0.9360188500432026 -1.178793874431138 0.653294825374241 -1.174376258026063 0.6606496470022805 -1.140161651151889 1.082062536854703 1.002869853268189 1.362730555809482 0.9666582456482398 1.074562321257126 0.9686725780065689 -2.59692189371452 -2.750766795198185 -2.594551974413581 -2.71763225463656 -2.387561148125512 -2.768533614240544 1.572856767537705 3.192495854687331 1.848982780508274 3.157381599884053 1.565216039789851 3.160762650246198 -0.5326693457661397 3.509086516653532 -0.3173867435926214 3.467239795083357 -0.5522414566524753 3.479687267329237 -5.682524326379558 0.03125426468534857 -5.718934609416646 0.1141962239470702 -5.682505174354105 0.1210205370941643 -3.548374177992213 -4.162400898866058 -3.748405835024245 -4.096493015933778 -3.556813030258006 -4.131988087612529 -0.3707686409634659 2.876568066983024 -0.3947520919379999 2.849080661628393 -0.6056354571054812 2.88887340672698 -5.719528767814164 -0.05209044814793297 -5.750408737360305 -0.03262718972382478 -5.683080428078381 0.0308417911828481 4.186850590640463 -1.012832654639289 4.187181959525086 -1.047532031750883 3.910348885434423 -1.036753305367215 0.461361770471615 -2.805143628904236 0.4675799557079119 -2.837968092285334 0.1935975774084048 -2.79365197764752 4.303757616769216 0.7931495987261827 4.299276099205702 0.7586266097905626 4.025651445178969 0.768262892045919 4.421855965558771 2.675739898522337 4.412944362757875 2.644212477329875 4.148594793655522 2.653164426675216 1.836544132993338 2.530954269068594 1.815935736747094 2.501996573645861 1.552776893868374 2.534309332938826 -5.685517809967489 0.03186237080762425 -5.685483153435268 0.1216286403407125 -5.649064958060038 0.1147878556212348 -9.030374649917681 -1.574259264673119 -9.097831914049516 -1.418111789352376 -9.01501151996856 -1.547393323510752 -4.142805915330388 -4.551035293948126 -4.141710119170721 -4.520285381727755 -3.953061528514277 -4.592219093100567 0.5198919438131561 5.681147397240062 0.7287342649248896 5.635173346240597 0.4953520758126662 5.657199812528079 0.5761398701293136 4.938653610753637 0.5457425097262514 4.918725752989903 0.3425593751247935 4.959338371403813 -5.684229012748609 -0.05839674360224198 -5.720654875189503 -0.05155612160551183 -5.684201171964915 0.03137465884716622 3.918068169370771 -1.033112221647365 4.191633949144947 -1.043728341387933 3.915140147795424 -1.067705463291403 4.022424033973914 0.834096151218422 4.299316023905623 0.8242985867211519 4.021206310122105 0.7994363883648149 0.1353488577012257 -3.385379955262383 0.1426733292801519 -3.353600057806711 0.4030523637027622 -3.397715594431443 4.136299052245296 2.77213048139999 4.409934787789173 2.762690938571992 4.136676566775521 2.740093373416944 4.296967691609879 4.834050616884352 4.561262373190898 4.824146386953786 4.298462563975828 4.806187967889898 2.277332738046936 5.404742304676548 2.539551599375477 5.368003662027922 2.268979779556783 5.376952527814152 -5.684613092909862 0.03143214119235111 -5.648164570525363 0.1143588037099876 -5.61728512605813 0.09489386175592705 -2.391575643019016 7.075109157083599 -2.54491357482462 7.008856034877449 -2.579941045850445 7.019262065795718 -9.455522670358189 0.3936826177966736 -9.425502495920142 0.4103758079060491 -9.416687345118106 0.2521722878796683 -0.5205322597230766 -5.003410972697667 -0.7759609292150033 -4.944027806037942 -0.5324501778737423 -4.974112482582693 2.484791692757342 4.622491555313475 2.457577970450815 4.600404225150341 2.214192329424671 4.630909266079464 2.692538484590985 7.149239896415337 2.722672491989346 7.165807289230103 2.914162444762996 7.098685444118171 2.551196454191369 6.960176066700288 2.362825959432703 7.016021475754335 2.586232415527616 6.970580909416076 -5.684238825075605 -0.05839476020257792 -5.68421093372304 0.03137664223711616 -5.647815872610838 -0.05156786487336856 5.550740669980429 -0.7031542345021993 5.551983930813544 -0.7378102782263556 5.265588396921515 -0.7425259612204131 4.027137664664973 -2.936758650661695 4.03183283263711 -2.968844775350604 3.75843209905359 -2.955861400622662 5.501772203953999 0.9708295837415617 5.502276960522053 0.9361588591065313 5.218505161799626 0.9320007330043373 5.442184087406976 2.726196003257531 5.442034999802737 2.694157733504288 5.165768091873196 2.690395843907137 5.363477376190491 4.622498711143918 5.36292902625928 4.594614593321119 5.097895239508742 4.59096264954118 4.57655003485986 4.72524694323863 4.564128520102458 4.698414767445477 4.313732538969919 4.707449421615377 -5.683656828523747 0.03060907923229341 -5.616332364152895 0.09407309923417973 -5.595708929043085 0.06494501139983984 -0.9035559238162105 4.707243960448621 -0.9343616981914327 4.726781007681586 -0.7460488040164265 4.760672494056906 -2.915516686883468 7.11768381176926 -2.8850110492991 7.101547003124586 -3.064761712741705 7.045879354138607 -8.695254082798334 -2.544458748004903 -8.742514541794581 -2.354180337085872 -8.675320800472102 -2.520158893678196 -1.172230252181666 -5.586780348943091 -1.162635729891915 -5.559234261855116 -0.9302904315922256 -5.623888626311721 3.634837123849704 6.87366660110001 3.646177290930252 6.897641335596261 3.884287868500393 6.847617592972168 3.474955179495547 6.699536004914985 3.724861717189847 6.676347654042879 3.692958291840227 6.661975881050432 9.459460031363795 0.4198141392265857 9.489462694564887 0.4031058003115101 9.480505502558653 0.2449040595548825 8.68391044850973 -2.384958581035534 8.618607649062048 -2.552972255618855 8.608036055581655 -2.524715861107074 -5.64820700494384 -0.05159523905633234 -5.684600202790996 0.03134977399356694 -5.617314580384186 -0.03214368485288174 5.258386200642894 -0.6735411257000341 5.542147666558238 -0.6689630362439691 5.256968935414906 -0.7082159926309967 5.509574308368847 0.9353771847827545 5.226318222653589 0.8964989021024413 5.223167606128538 0.9311018180773975 3.777445589727428 -3.006914210559496 4.041562458501941 -3.019401516651943 3.772885548595255 -3.038752089955421 5.463511540082831 2.626612245948628 5.187086486360211 2.590855394880787 5.179737704047764 2.62254107133701 5.392865583126181 4.510938742625006 5.127218825968604 4.479741317634885 5.11660684268122 4.506822372824333 4.995032972003899 6.178128541047359 5.260016203490196 6.183598342080376 5.007685823580591 6.154941696776611 4.626587954251779 6.433440369273826 4.625137622580454 6.457953709657695 4.87517345875307 6.444055577750325 -5.683667357941976 0.03062793658874029 -5.595719437593925 0.06496383567925987 -5.588490646712567 0.03060971688826645 -0.4598590419423732 2.426713798117077 -0.4840621461310818 2.45408427740843 -0.3013709194714104 2.483465808915808 -1.410286566773439 5.335568849888774 -1.254312662185517 5.391711933229681 -1.228589745297435 5.368546301041597 -3.710722171227237 6.724208019360445 -3.492720817658558 6.761778418468669 -3.678822751719198 6.709835472709786 -9.320234484257593 1.345829623827133 -9.288518671217004 1.34019345550243 -9.364766633716425 1.175196317681586 3.632911908128812 -5.163997491092875 3.369616624503415 -5.143404123956382 3.625637957812055 -5.13601515249943 4.634626410958905 6.408092318440026 4.883222584391303 6.418551766529748 4.868346083145752 6.395805024591026 9.313410450463893 1.357480959732312 9.345124038670903 1.363126520220501 9.421554401144784 1.198182517139952 7.66094701079778 -3.968962028724445 7.600885510735214 -4.143263608647695 7.58895228403194 -4.115912139661436 3.379968156452582 -4.795022626127295 3.377814115820344 -4.825738046801772 3.200976333159742 -4.886913864563443 2.177731559297771 -4.256733539454348 1.987033527300132 -4.332666715782128 2.001011546405866 -4.303545603030939 -5.616905480062753 -0.03195764700595825 -5.684192595908041 0.03153483241750948 -5.596264906875802 -0.002836670226629316 8.135632481055744 0.6467846298274449 8.143736191055005 0.6126825793533866 7.817615547244568 0.5664056975362209 5.604026208031266 -2.447892704043489 5.605968045621975 -2.479895599273528 5.322239669658892 -2.485603461842086 7.910548891879452 1.62505911682075 7.917423041942325 1.590791612619515 7.595121947029427 1.549212695649579 7.648140393909088 2.740076383101864 7.654014175277737 2.708200818831211 7.344970491059966 2.669147191123872 7.250938896262698 4.066194749260766 7.25658957949578 4.038206995229646 6.968392189669932 3.99804925325602 6.330169403804309 5.567600197966375 6.33828197781904 5.543187600931597 6.078767289008784 5.488134954704552 5.234858943685333 6.219206489446688 5.234379154250187 6.194669514983062 4.982624410286215 6.190032337805749 -5.595738121885606 -0.002107843882471494 -5.683666853373951 0.03226200839890913 -5.588490142144011 0.03224379041315121 -0.2299324533387503 0.729168882831263 -0.2444582929433015 0.7620621536471894 -0.06595591735775286 0.790400861286243 -0.8125319772006873 3.017794677503951 -0.6542271561514512 3.074862410578888 -0.6339346682586394 3.045760783924645 -2.877774435399899 4.357863286120309 -2.9054821625964 4.379566241016444 -2.707005040896449 4.400150830114178 -3.924376744820628 6.828128521863997 -3.912227949632494 6.804395592346775 -4.107701896713467 6.770397319542972 -8.612090387140565 3.132318144885416 -8.415472723842832 3.25462297604561 -8.583522185231189 3.120103705864056 3.383826387321667 -5.232956294477321 3.390429891860372 -5.205556265624473 3.639833537315615 -5.225269220317825 7.988444796116241 3.950818076507967 8.186622618935166 3.852581069993151 7.974882037621727 3.928721227996451 8.321249129370793 3.414263150884053 8.524916106107225 3.325534200360769 8.496739733872749 3.312768203912115 0.1510206007186302 -5.711405996685896 0.1570653586876661 -5.739568266727456 -0.03463197449445815 -5.784963653351625 -1.255966484601831 -4.6331030134885 -1.452168057014411 -4.687120724204308 -1.433730305993322 -4.659992660156179 1.343610033826532 -2.897651272480716 1.34209162004531 -2.930821537567856 1.161915013148988 -2.968609549947419 0.6343652317238041 -2.304351929952293 0.6418617825255241 -2.271535750771943 0.8189598313239338 -2.2381868989369 7.788972773850396 0.6528216140289085 8.110519995554304 0.6978813329106642 7.792250235363141 0.6181240811246688 7.934673018451014 1.564016031454092 7.619334815426091 1.487941597001828 7.607723219364737 1.521513707960413 5.297544050171814 -2.364631221469998 5.573773910602987 -2.359445006498093 5.291853149384379 -2.396529747281462 7.721009017518952 2.551012032566287 7.417707771404205 2.480431187695184 7.398608439320649 2.509913182397862 7.378678430317099 3.806337644516013 7.095271469613857 3.740439878517878 7.07037146757814 3.763832987463858 6.220427645271243 5.351223384974789 6.503456244691065 5.409873293788387 6.249963775453848 5.334629748447567 -5.270613878297841 5.967673255825852 -5.275759361667078 6.179078711813066 -5.243504771459213 5.986660930279739 3.047084099028744 6.93091981268171 3.290809721156963 6.980753888153003 3.066212852775847 6.910657934091883 0.0643922459230406 -0.7210905818866035 0.06121120103332323 -0.6863590033394218 0.2379062217880146 -0.6570334173992765 -0.3636197155227572 0.9565918268743122 -0.199445161929524 1.017494559671196 -0.1864823122444165 0.9842165027092117 -2.822010068346362 2.090920108388004 -2.842674329173911 2.119859385685524 -2.662769188401859 2.135646876448718 -3.373182456892068 5.182275375164926 -3.203613940797268 5.22745458337398 -3.193571050743304 5.20001223956443 -4.873020602859887 6.447361349656247 -4.639301611593265 6.459652528907108 -4.858128783869598 6.424616012450758 -7.968610523694299 3.929467018207868 -7.955042831342867 3.907370432748207 -8.153204520808952 3.809113804253872 5.735731686947555 -4.306531837517649 5.459667223056172 -4.315665662678008 5.732965055269636 -4.278728774919856 3.946955635540269 6.787352992197897 3.95128838443904 6.763053017269658 3.716230936367765 6.730901383304845 -3.535693014794845 -5.251964487442733 -3.752587484793535 -5.267690810281319 -3.541751222657247 -5.224486546129128 -3.658791357557014 -5.077930099078674 -3.870291265138999 -5.119078097898604 -3.861981789478717 -5.091275294421588 -1.695311036086562 -3.412789638260236 -1.692728327425731 -3.44502301433671 -1.871599256619585 -3.466902521146339 -2.474335010279066 -2.440217038035144 -2.462407665813163 -2.408379080905731 -2.295299899327754 -2.392007176822233 0.3931295553270386 -0.9298718341588198 0.215151516310107 -0.9601832120140615 0.3881610346771586 -0.8952871545367428 8.83090808195661 1.713201502329808 8.637719336656275 1.670394886309324 8.82129416290114 1.74716277522841 8.399275799018552 -0.2210039491789647 8.40886644422185 -0.2523190646442885 8.089989920867051 -0.3078963674227854 8.701943789392425 2.053326377471591 8.510065975193324 2.014098746774247 8.688421921503766 2.086453025817476 8.466054264147338 2.627943768646528 8.483690014899814 2.597902795826956 8.298519861909124 2.560058353665381 8.035041820668011 3.496982364922802 8.056951315095304 3.471805670084362 7.883212921189479 3.431673652019552 6.809007439602639 5.021311928093619 6.836799964349999 5.002948715705256 6.683119219274349 4.947203955742285 -3.260660911194111 6.884266610850335 -3.228391922141995 6.897340545099304 -3.229921085116142 6.77327863886917 -2.695475850007717 7.161187854283521 -2.664815296173824 7.153756314305748 -2.739445982257249 6.970211505134532 -2.89218958151452 0.4623860832525094 -2.902584925186209 0.4962171725199305 -2.735085154802271 0.5098805270612874 -3.213671931998484 2.936118438852268 -3.054525052387994 2.981051777272747 -3.046127714352541 2.949440283961018 -4.596324846387193 4.734967347678038 -4.608856304640121 4.761768782547184 -4.391233370012669 4.768948202406476 -4.670534738712671 6.469354259775886 -4.671861372891332 6.444837997000658 -4.889221471490005 6.433779241743252 -3.547254578740973 6.90407687877277 -3.28923575130753 6.856286549768203 -3.553054643055344 6.879965491549306 5.663023208727047 -4.20765976635011 5.389330048648437 -4.242738453200204 5.398125280990574 -4.215263073891824 -5.278229585263992 -4.366305533453391 -5.516727459048768 -4.361257122533217 -5.287649137072221 -4.338958402008602 -5.454810054422477 -4.51563512383377 -5.453256057030798 -4.487773760575872 -5.225949682751572 -4.491991974974134 -3.991375186117491 -3.045963509967441 -4.19500860715473 -3.054122370011437 -3.995241946709423 -3.014068560931149 -4.2482546304477 -2.925821019825826 -4.242653025179007 -2.893825701827686 -4.048265382796182 -2.886460601861261 -2.491483608156819 -1.245228830975674 -2.658817033256372 -1.26010617416459 -2.494921775182919 -1.210636482554042 -2.838468018587474 -0.8928382005394318 -2.837154840158582 -0.8580486931832319 -2.674035559756206 -0.8444842978475415 8.617727186099021 1.681164327663043 8.610752423905051 1.715549223531451 8.8018125402254 1.757171900894283 8.536043491754262 1.97843696443914 8.520131262130361 2.010934105155868 8.714272989901735 2.050983812258195 8.006952711457062 -0.183947639801174 8.313349876694996 -0.1336197163075516 8.002438408217408 -0.2168446016713619 8.564453439037457 2.465756910542675 8.396381986438255 2.398698050210063 8.37264435659068 2.426321813870671 8.248327187524744 3.176968576735512 8.094213786232071 3.115059759357864 8.064406167390686 3.135525648921928 7.170002022230695 4.692479944407302 7.039293280764523 4.623730227025391 7.004515339233874 4.634662642814085 -5.480364303745048 5.782939931988822 -5.533619467239355 5.909304849834479 -5.464440254357934 5.809598000878715 -8.79249040936396 0.7829281715672438 -8.94006588098264 0.8266921709825369 -8.803805732043497 0.8127560611786968 -8.324479147978348 -1.138831000213761 -8.559984921300103 -1.085797531574062 -8.335059020080189 -1.109475333131905 -3.050694840966592 0.8044191868086035 -2.893355025099158 0.8514289446161969 -2.887452685790644 0.8170356909276371 -4.506374521597316 2.668429524590553 -4.515326390466558 2.699946707382018 -4.31156498745022 2.705787355114174 -4.435135774640633 4.841335461204134 -4.638866684136944 4.834869948878139 -4.433871442972754 4.869208280941132 -5.23258612624856 6.244795780432598 -4.980831637565121 6.240152371133828 -5.232107360543298 6.220260205619157 -3.304957886754006 6.930798896815192 -3.042113658866823 6.901161805012654 -3.061250670041988 6.880909366093234 8.871608282726093 -0.4862232848804858 8.885023154138871 -0.5125177972378905 8.59157698546651 -0.5981941395017913 -8.648698606186477 -1.204677381859101 -8.638240077235158 -1.177564936682886 -8.424578670472791 -1.232688230747936 -5.360122562265048 -2.506000423400825 -5.139242509498001 -2.476579842706702 -5.132773134567029 -2.508383650287633 -5.321690545371856 -2.64447189277278 -5.320812559055614 -2.612439665357678 -5.100943559160501 -2.614439619292221 -4.170363168307121 -1.055717432248732 -4.364824400472052 -1.061761956683289 -4.172710397766799 -1.0210962895362 -4.381232302345145 -1.014093437284773 -4.380274962914606 -0.9794036872903147 -4.189071014015481 -0.9735662655406596 -4.460382141882528 0.02970777035881239 -4.372445540844122 0.0640779423795097 -4.365194100076415 0.02972848475338779 8.903937635865709 1.58826874419468 8.716320660161918 1.537877073571023 8.897282944693579 1.620940077452542 -4.372422565099564 -0.005885461720779861 -4.460381700691149 0.02845100466999386 -4.365193658885561 0.0284717205621112 -4.39263004781457 -0.03440953332577173 -4.459960374557958 0.0290530312392545 -4.372000405281639 -0.005282113493438264 -4.423485553331526 -0.05386812311555181 -4.459945209472826 0.02906059301675808 -4.39261482727612 -0.03440193513979781 -4.459742214446557 -0.06069050670352177 -4.459774796619139 0.02907993685161893 -4.42331432621714 -0.05384855773769362 -4.4617782224255 -0.06036869844406919 -4.498200731610488 -0.05354097531077903 -4.461800327138134 0.02940174708602667 -4.497518157848608 -0.05383473939555101 -4.528406075737823 -0.0343791280378902 -4.461121000383781 0.02910886480316722 -8.962561667557381 0.7521034163714 -8.962223404290473 0.7826149539410692 -8.82688539192873 0.735001572547627 -4.450244072811719 0.7811894457271972 -4.454478296616852 0.8157344875429972 -4.25998964435588 0.8212174156970132 -4.346492488049074 2.781015738243396 -4.540986329433369 2.775647928898338 -4.346191014603219 2.813051616509951 -5.287903821982955 4.666486086019012 -5.28830999091003 4.694374815491331 -5.04974618255413 4.691938815248318 -5.213320699298114 6.203183542332868 -4.961995522428713 6.222685247830399 -4.974781695470389 6.199542430651975 2.790248284699574 7.12077861696805 2.821065395156717 7.127784662287296 2.895758311766352 6.905161380056465 8.703643680961973 -0.6857681323355882 8.415732719445984 -0.7846014422278069 8.424448948040244 -0.7548690767279352 -7.984223954740257 -0.5242400425061006 -7.769614876977303 -0.5227676346305572 -7.762888778350972 -0.5554303527733849 -7.980254135178361 -0.8303874715674979 -7.973605106139527 -0.7986066015443341 -7.765646189602546 -0.828816257106993 -5.29145251916307 -0.778641511633843 -5.073656718285485 -0.7455933924010927 -5.071578248459449 -0.7802432158811737 -5.278609421455686 -0.8309054962920214 -5.278093112686092 -0.796237527368122 -5.060846573179293 -0.7977232671706889 -4.273902826376768 0.8328644975095786 -4.465131719415578 0.827556762403614 -4.274857451847524 0.8675263321494672 -4.460299321942095 0.02956324701069983 -4.393012474292192 0.09305259727493652 -4.372362884887002 0.06393367866869167 8.682649388063927 1.449574090444589 8.684406860003334 1.482888932367785 8.866932536835083 1.527988676546785 -4.527626259026713 -0.03501501430149527 -4.548262664483186 -0.005897255585183629 -4.460344026620005 0.02847484303748904 -8.627378400833218 0.7182839025649992 -8.49015222166312 0.7225939591655773 -8.483660553379961 0.689649968259905 -5.282719558101339 2.74713054383379 -5.282802884947855 2.779167232862019 -5.055444263708266 2.777430364861157 -5.028509912437525 4.545913170466169 -5.255866476205934 4.547809397946735 -5.017651682042155 4.572928955756335 -6.33043148512515 5.565650525958854 -6.32232165199879 5.590064896786578 -6.062804363370425 5.535011025945936 5.203030191317635 6.180601572742147 5.225015908561341 5.950208726369962 5.19790709698616 5.969193486342004 8.760705685204632 2.246849101893711 8.768828859097201 2.217012986800187 8.601195514666992 2.144479784189916 -8.613371641486925 0.3856663313216517 -8.613636085671026 0.418754193932143 -8.476164807288635 0.3903420099349643 -7.669649440992814 0.370797313781492 -7.458958280863248 0.3813855562383646 -7.460421441063718 0.3466109705210539 -7.659978798590958 0.2433949552906475 -7.65388766586991 0.2777507902337484 -7.44929904838637 0.2541227773029685 -5.04323660385484 0.8742446272987433 -5.260484603369598 0.8755917906909654 -5.040394795149055 0.9088632413996086 -5.272297497100485 0.9269699262082453 -5.272069434888858 0.9616394308490045 -5.052193456491585 0.9601830616480456 -4.459972957087579 0.02929694111498971 -4.423571741378723 0.1122405237850691 -4.392687303188897 0.0927870743005024 -4.549323536238968 -0.004046641435744432 -4.55657951190216 0.03030491805240184 -4.461402801616853 0.03032213800506731 -5.035000859264302 2.621410000960689 -5.254877164871539 2.622835471023548 -5.027592162108842 2.653090192463134 -7.09070919251049 4.148100935280669 -7.084600047297619 4.176024381311477 -6.842857180446632 4.1448697614421 -6.410326072650934 5.45643678272326 -6.142327106375758 5.427879402861199 -6.172098680432305 5.411550248318663 2.784134457998289 7.014706338812497 2.817163269323979 7.002869811273473 2.812331700326085 6.860476905546576 8.893197122900897 1.617459917330398 8.719991987867189 1.529940219776617 8.727208287935637 1.560542413154153 -8.359434015351081 1.097015203865124 -8.217104073433312 1.1083416630811 -8.220443975466068 1.073618355095572 -8.34486625889067 0.955869012209253 -8.339499603550593 0.9904055627753068 -8.202561493724595 0.9673895776210707 -7.260406241916179 1.308754244623648 -7.465349018230898 1.330399713359927 -7.24959586265464 1.342494702027965 -7.475927176314872 1.457638003769571 -7.469730426762375 1.491984513193227 -7.260167924464421 1.469665505903167 -4.460570457190625 0.02955451479688858 -4.460598919078507 0.1193234108502796 -4.424166386291351 0.1124973219903019 -4.556579272021503 0.0294829913682542 -4.549341784026376 0.06383742248671029 -4.461402561736435 0.029500212134882 -7.328918198328824 2.760749862715633 -7.322754872744688 2.792594711171613 -7.10003582112016 2.768247808791357 -6.878680160919599 3.803484329922073 -7.101077956048729 3.829585371192688 -6.853222855664148 3.826504284722295 -6.839182910418581 5.027825199280951 -6.811386171103502 5.046182661432376 -6.657708769743121 4.990440542487015 5.457087838578618 5.930387946640559 5.419865410911841 5.777347634718608 5.403916980590292 5.804004741730131 -8.037972299862767 1.593119991335581 -8.175320457195674 1.614570723034023 -8.023530479656374 1.6260376576569 -8.190515196564247 1.757231245667825 -8.178068675362454 1.790620921476749 -8.038714533708697 1.768610308976451 -7.101479624950173 2.418650985727016 -7.311103574176353 2.440609994461795 -7.082218775957254 2.448062065003728 -4.460363105683712 0.02952158193390643 -4.496811221884622 0.1124499136576728 -4.460392639932004 0.119290477772927 -4.549506022156817 0.06360286560401821 -4.528886799177706 0.09273060786823638 -4.461567125481633 0.02926513919347144 -7.836686215026396 3.662041520968044 -7.813795479195937 3.686673002089047 -7.661068219381618 3.655701684686811 -6.906954385481576 4.750220969010126 -7.054783145916974 4.793468289904231 -6.871906295255305 4.760584641937258 -7.911818009785852 2.278192344210657 -8.051238930753467 2.299939675135196 -7.887607329289605 2.305556344450116 -8.073196141579601 2.66566353395958 -8.054648766368899 2.695357052149128 -7.909567745808319 2.671337703570303 -4.528576493109429 0.09288510001082233 -4.497699531881085 0.1123498706279721 -4.461255680420941 0.02942037901142184 -7.728634309529307 3.247181413039645 -7.873372214707917 3.272449333841338 -7.697725894321536 3.266615265858516</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"448\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 7 12 16 13 8 14 9 14 17 13 10 12 18 15 6 16 8 17 9 17 11 16 19 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 16 30 28 31 8 32 9 32 29 31 17 30 30 33 18 34 8 35 9 35 19 34 31 33 12 36 20 37 32 38 33 38 21 37 13 36 20 39 2 40 24 41 25 41 3 40 21 39 12 42 34 43 22 44 23 44 35 43 13 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 8 51 28 52 40 53 41 53 29 52 9 51 22 54 34 55 42 56 43 56 35 55 23 54 26 57 44 58 38 59 39 59 45 58 27 57 46 60 30 61 8 62 9 62 31 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 8 78 40 79 54 80 55 80 41 79 9 78 42 81 56 82 57 83 58 83 59 82 43 81 34 84 56 85 42 86 43 86 59 85 35 84 38 87 44 88 60 89 61 89 45 88 39 87 44 90 62 91 60 92 61 92 63 91 45 90 64 93 46 94 8 95 9 95 47 94 65 93 66 96 32 97 48 98 49 98 33 97 67 96 48 99 20 100 50 101 51 101 21 100 49 99 32 102 68 103 34 104 35 104 69 103 33 102 50 105 24 106 52 107 53 107 25 106 51 105 52 108 36 109 70 110 71 110 37 109 53 108 36 111 38 112 72 113 73 113 39 112 37 111 8 114 54 115 74 116 75 116 55 115 9 114 76 117 54 118 57 119 58 119 55 118 77 117 56 120 76 121 57 122 58 122 77 121 59 120 34 123 68 124 56 125 59 125 69 124 35 123 38 126 60 127 72 128 73 128 61 127 39 126 78 129 60 130 62 131 63 131 61 130 79 129 80 132 78 133 62 134 63 134 79 133 81 132 82 135 8 136 83 137 84 137 9 136 85 135 66 138 48 139 86 140 87 140 49 139 67 138 68 141 32 142 66 143 67 143 33 142 69 141 48 144 50 145 88 146 89 146 51 145 49 144 50 147 52 148 90 149 91 149 53 148 51 147 52 150 70 151 92 152 93 152 71 151 53 150 36 153 72 154 70 155 71 155 73 154 37 153 8 156 74 157 94 158 95 158 75 157 9 156 74 159 54 160 96 161 97 161 55 160 75 159 76 162 96 163 54 164 55 164 97 163 77 162 56 165 98 166 76 167 77 167 99 166 59 165 68 168 98 169 56 170 59 170 99 169 69 168 100 171 72 172 60 173 61 173 73 172 101 171 100 174 60 175 78 176 79 176 61 175 101 174 102 177 78 178 80 179 81 179 79 178 103 177 102 180 80 181 83 182 84 182 81 181 103 180 83 183 8 184 104 185 105 185 9 184 84 183 106 186 66 187 86 188 87 188 67 187 107 186 48 189 88 190 86 191 87 191 89 190 49 189 108 192 68 193 66 194 67 194 69 193 109 192 50 195 90 196 88 197 89 197 91 196 51 195 52 198 92 199 90 200 91 200 93 199 53 198 92 201 70 202 110 203 111 203 71 202 93 201 112 204 70 205 72 206 73 206 71 205 113 204 8 207 94 208 114 209 115 209 95 208 9 207 94 210 74 211 116 212 117 212 75 211 95 210 74 213 96 214 116 215 117 215 97 214 75 213 76 216 118 217 96 218 97 218 119 217 77 216 98 219 118 220 76 221 77 221 119 220 99 219 68 222 108 223 98 224 99 224 109 223 69 222 112 225 72 226 100 227 101 227 73 226 113 225 120 228 100 229 78 230 79 230 101 229 121 228 120 231 78 232 102 233 103 233 79 232 121 231 122 234 102 235 83 236 84 236 103 235 123 234 122 237 83 238 104 239 105 239 84 238 123 237 104 240 8 241 124 242 125 242 9 241 105 240 106 243 86 244 126 245 127 245 87 244 107 243 108 246 66 247 106 248 107 248 67 247 109 246 86 249 88 250 128 251 129 251 89 250 87 249 88 252 90 253 130 254 131 254 91 253 89 252 90 255 92 256 132 257 133 257 93 256 91 255 92 258 110 259 134 260 135 260 111 259 93 258 70 261 112 262 110 263 111 263 113 262 71 261 124 264 8 265 114 266 115 266 9 265 125 264 114 267 94 268 136 269 137 269 95 268 115 267 94 270 116 271 136 272 137 272 117 271 95 270 116 273 96 274 138 275 139 275 97 274 117 273 118 276 138 277 96 278 97 278 139 277 119 276 98 279 140 280 118 281 119 281 141 280 99 279 108 282 140 283 98 284 99 284 141 283 109 282 112 285 100 286 142 287 143 287 101 286 113 285 142 288 100 289 120 290 121 290 101 289 143 288 144 291 120 292 102 293 103 293 121 292 145 291 144 294 102 295 122 296 123 296 103 295 145 294 146 297 122 298 104 299 105 299 123 298 147 297 104 300 124 301 146 302 147 302 125 301 105 300 148 303 106 304 126 305 127 305 107 304 149 303 86 306 128 307 126 308 127 308 129 307 87 306 150 309 108 310 106 311 107 311 109 310 151 309 88 312 130 313 128 314 129 314 131 313 89 312 90 315 132 316 130 317 131 317 133 316 91 315 132 318 92 319 134 320 135 320 93 319 133 318 134 321 110 322 152 323 153 323 111 322 135 321 110 324 112 325 154 326 155 326 113 325 111 324 124 327 114 328 156 329 157 329 115 328 125 327 114 330 136 331 156 332 157 332 137 331 115 330 136 333 116 334 158 335 159 335 117 334 137 333 116 336 138 337 158 338 159 338 139 337 117 336 118 339 160 340 138 341 139 341 161 340 119 339 140 342 160 343 118 344 119 344 161 343 141 342 108 345 150 346 140 347 141 347 151 346 109 345 112 348 142 349 154 350 155 350 143 349 113 348 142 351 120 352 162 353 163 353 121 352 143 351 162 354 120 355 144 356 145 356 121 355 163 354 164 357 144 358 122 359 123 359 145 358 165 357 122 360 146 361 164 362 165 362 147 361 123 360 146 363 124 364 156 365 157 365 125 364 147 363 126 366 166 367 148 368 149 368 167 367 127 366 150 369 106 370 148 371 149 371 107 370 151 369 128 372 168 373 126 374 127 374 169 373 129 372 128 375 130 376 170 377 171 377 131 376 129 375 130 378 132 379 172 380 173 380 133 379 131 378 132 381 134 382 174 383 175 383 135 382 133 381 134 384 152 385 176 386 177 386 153 385 135 384 110 387 154 388 152 389 153 389 155 388 111 387 156 390 136 391 178 392 179 392 137 391 157 390 136 393 158 394 178 395 179 395 159 394 137 393 158 396 138 397 180 398 181 398 139 397 159 396 160 399 180 400 138 401 139 401 181 400 161 399 140 402 182 403 160 404 161 404 183 403 141 402 140 405 150 406 182 407 183 407 151 406 141 405 154 408 142 409 184 410 185 410 143 409 155 408 142 411 162 412 184 413 185 413 163 412 143 411 162 414 144 415 186 416 187 416 145 415 163 414 144 417 164 418 186 419 187 419 165 418 145 417 164 420 146 421 188 422 189 422 147 421 165 420 146 423 156 424 188 425 189 425 157 424 147 423 166 426 190 427 148 428 149 428 191 427 167 426 168 429 166 430 126 431 127 431 167 430 169 429 192 432 150 433 148 434 149 434 151 433 193 432 128 435 170 436 168 437 169 437 171 436 129 435 130 438 172 439 170 440 171 440 173 439 131 438 132 441 174 442 172 443 173 443 175 442 133 441 174 444 134 445 176 446 177 446 135 445 175 444 176 447 152 448 194 449 195 449 153 448 177 447 152 450 154 451 196 452 197 452 155 451 153 450 156 453 178 454 188 455 189 455 179 454 157 453 178 456 158 457 198 458 199 458 159 457 179 456 198 459 158 460 180 461 181 461 159 460 199 459 160 462 200 463 180 464 181 464 201 463 161 462 160 465 182 466 200 467 201 467 183 466 161 465 182 468 150 469 192 470 193 470 151 469 183 468 154 471 184 472 196 473 197 473 185 472 155 471 162 474 202 475 184 476 185 476 203 475 163 474 162 477 186 478 202 479 203 479 187 478 163 477 186 480 164 481 204 482 205 482 165 481 187 480 164 483 188 484 204 485 205 485 189 484 165 483 206 486 207 487 208 488 209 488 210 487 211 486 148 489 190 490 192 491 193 491 191 490 149 489 212 492 206 493 208 494 209 494 211 493 213 492 214 495 206 496 212 497 213 497 211 496 215 495 216 498 206 499 217 500 218 500 211 499 219 498 220 501 206 502 216 503 219 503 211 502 221 501 220 504 176 505 206 506 211 506 177 505 221 504 176 507 194 508 206 509 211 509 195 508 177 507 152 510 196 511 194 512 195 512 197 511 153 510 188 513 178 514 222 515 223 515 179 514 189 513 222 516 178 517 198 518 199 518 179 517 223 516 198 519 180 520 224 521 225 521 181 520 199 519 180 522 200 523 224 524 225 524 201 523 181 522 200 525 182 526 226 527 227 527 183 526 201 525 182 528 192 529 226 530 227 530 193 529 183 528 184 531 228 532 196 533 197 533 229 532 185 531 184 534 202 535 228 536 229 536 203 535 185 534 186 537 230 538 202 539 203 539 231 538 187 537 186 540 204 541 230 542 231 542 205 541 187 540 204 543 188 544 222 545 223 545 189 544 205 543 206 546 232 547 207 548 210 548 233 547 211 546 190 549 234 550 192 551 193 551 235 550 191 549 194 552 236 553 206 554 211 554 237 553 195 552 196 555 236 556 194 557 195 557 237 556 197 555 222 558 198 559 238 560 239 560 199 559 223 558 238 561 198 562 224 563 225 563 199 562 239 561 224 564 200 565 240 566 241 566 201 565 225 564 200 567 226 568 240 569 241 569 227 568 201 567 226 570 192 571 234 572 235 572 193 571 227 570 196 573 228 574 236 575 237 575 229 574 197 573 202 576 242 577 228 578 229 578 243 577 203 576 202 579 230 580 242 581 243 581 231 580 203 579 230 582 204 583 244 584 245 584 205 583 231 582 204 585 222 586 244 587 245 587 223 586 205 585 206 588 246 589 232 590 233 590 247 589 211 588 236 591 248 592 206 593 211 593 249 592 237 591 244 594 222 595 238 596 239 596 223 595 245 594 238 597 224 598 250 599 251 599 225 598 239 597 224 600 240 601 250 602 251 602 241 601 225 600 240 603 226 604 252 605 253 605 227 604 241 603 226 606 234 607 252 608 253 608 235 607 227 606 228 609 248 610 236 611 237 611 249 610 229 609 228 612 242 613 248 614 249 614 243 613 229 612 242 615 230 616 254 617 255 617 231 616 243 615 230 618 244 619 254 620 255 620 245 619 231 618 206 621 256 622 246 623 247 623 257 622 211 621 248 624 258 625 206 626 211 626 259 625 249 624 244 627 238 628 260 629 261 629 239 628 245 627 260 630 238 631 250 632 251 632 239 631 261 630 250 633 240 634 262 635 263 635 241 634 251 633 240 636 252 637 262 638 263 638 253 637 241 636 248 639 242 640 258 641 259 641 243 640 249 639 242 642 254 643 258 644 259 644 255 643 243 642 254 645 244 646 260 647 261 647 245 646 255 645 206 648 264 649 256 650 257 650 265 649 211 648 258 651 266 652 206 653 211 653 267 652 259 651 260 654 250 655 264 656 265 656 251 655 261 654 264 657 250 658 262 659 263 659 251 658 265 657 258 660 254 661 266 662 267 662 255 661 259 660 254 663 260 664 266 665 267 665 261 664 255 663 266 666 264 667 206 668 211 668 265 667 267 666 266 669 260 670 264 671 265 671 261 670 267 669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID126\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID127\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID131\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID134\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID132\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID133\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID132\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID136\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID136\">-0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7668684720993042 -0.5068138837814331 0.2471411228179932 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7668684720993042 -0.5068138837814331 0.2471411228179932 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7764356732368469 -0.5068138837814331 0.2506216466426849 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7764356732368469 -0.5068138837814331 0.2506216466426849 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID133\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID137\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID137\">-0.3444744669286572 4.079759914057629e-006 -0.9387956868337078 -0.3444744635857354 4.23225667410034e-006 -0.9387956880596586 -0.2915421061266723 0.5326437071235343 -0.7945400440612941 0.2915421061266723 -0.5326437071235343 0.7945400440612941 0.3444744635857354 -4.23225667410034e-006 0.9387956880596586 0.3444744669286572 -4.079759914057629e-006 0.9387956868337078 0.942176612727427 -3.407978116043969e-007 -0.3351167414937004 0.9443365522823279 4.38158657145187e-008 -0.3289809660505061 0.9466284736151717 -0.006141568091176871 -0.322268233126369 -0.9466284736151717 0.006141568091176871 0.322268233126369 -0.9443365522823279 -4.38158657145187e-008 0.3289809660505061 -0.942176612727427 3.407978116043969e-007 0.3351167414937004 -0.2978240011526128 -0.502502490113407 -0.8116600962023906 0.2978240011526128 0.502502490113407 0.8116600962023906 -0.2879580904145521 0.5083478614726341 -0.8115803040371324 0.2879580904145521 -0.5083478614726341 0.8115803040371324 0.9453746644987464 0.01025145618060543 -0.3258245714645534 -0.9453746644987464 -0.01025145618060543 0.3258245714645534 0.946628563072084 0.00614092036701929 -0.3222679826993792 -0.946628563072084 -0.00614092036701929 0.3222679826993792 -0.8995939852382286 1.012405620589444e-011 0.4367272166046006 -0.8996043510403685 1.73211945004724e-006 0.4367058639247215 -0.8995978073140609 2.80740707445072e-010 0.4367193436015103 0.8995978073140609 -2.80740707445072e-010 -0.4367193436015103 0.8996043510403685 -1.73211945004724e-006 -0.4367058639247215 0.8995939852382286 -1.012405620589444e-011 -0.4367272166046006 -0.2841901110213427 -0.5268225958571753 -0.8010580086934929 0.2841901110213427 0.5268225958571753 0.8010580086934929 -0.8996043508901038 -1.73154997735763e-006 0.4367058642342657 0.8996043508901038 1.73154997735763e-006 -0.4367058642342657 -0.1575289664995284 0.8773623204698655 -0.4532328136105368 0.1575289664995284 -0.8773623204698655 0.4532328136105368 0.9439623282584713 0 -0.3300532121171466 -0.9439623282584713 -0 0.3300532121171466 0.9453746045541199 -0.0102512283230372 -0.32582475256188 -0.9453746045541199 0.0102512283230372 0.32582475256188 -0.8996005388610735 1.525096691196571e-005 0.436713716579036 0.8996005388610735 -1.525096691196571e-005 -0.436713716579036 -0.1652276555493636 -0.8656258515265084 -0.4726433190162198 0.1652276555493636 0.8656258515265084 0.4726433190162198 -0.8996005389579996 -1.525128351529844e-005 0.4367137163793637 0.8996005389579996 1.525128351529844e-005 -0.4367137163793637 -0.1610828583957122 0.8600686632090739 -0.4840807859198952 0.1610828583957122 -0.8600686632090739 0.4840807859198952 0.9460346225478317 0.004563988258263347 -0.3240334287569112 -0.9460346225478317 -0.004563988258263347 0.3240334287569112 5.715509850104025e-005 0.9999481864272838 -0.01017944959614463 -5.715509850104025e-005 -0.9999481864272838 0.01017944959614463 0.9439623343035419 0 -0.3300531948280579 -0.9439623343035419 -0 0.3300531948280579 -0.1493475103630262 -0.8821789182458041 -0.4466046096392519 0.1493475103630262 0.8821789182458041 0.4466046096392519 -0.8995833389788723 7.450330753906704e-018 0.436749145656432 0.8995833389788723 -7.450330753906704e-018 -0.436749145656432 -0.8995833389788784 7.451586262374615e-018 0.4367491456564195 0.8995833389788784 -7.451586262374615e-018 -0.4367491456564195 0.9415289990586808 0.01889261324753735 -0.3364018625041152 -0.9415289990586808 -0.01889261324753735 0.3364018625041152 -0.005477675187488539 0.9998653062196856 -0.01547140888073127 0.1704063428817634 0.8679535442270318 0.466495791373724 -0.1704063428817634 -0.8679535442270318 -0.466495791373724 0.005477675187488539 -0.9998653062196856 0.01547140888073127 0.946034644772299 -0.004563893317774229 -0.3240333652084827 -0.946034644772299 0.004563893317774229 0.3240333652084827 -0.004107270407317365 -0.9999227077040288 -0.01173494557484708 -0.003331995468411167 -0.9998028471998554 -0.01957458907005007 0.003331995468411167 0.9998028471998554 0.01957458907005007 0.004107270407317365 0.9999227077040288 0.01173494557484708 -0.8995854663270582 -1.122920923692321e-005 0.4367447637316722 0.8995854663270582 1.122920923692321e-005 -0.4367447637316722 -0.8995854663984171 1.122944233857225e-005 0.4367447635846849 0.8995854663984171 -1.122944233857225e-005 -0.4367447635846849 0.9398090404245463 3.199174541821317e-007 -0.341700113456509 -0.9398090404245463 -3.199174541821317e-007 0.341700113456509 0.3043241533703555 0.5032296839336767 0.8087933573437832 0.1678101137099761 0.8774056885098098 0.4494430147496695 -0.1678101137099761 -0.8774056885098098 -0.4494430147496695 -0.3043241533703555 -0.5032296839336767 -0.8087933573437832 0.9415290064490484 -0.01889209698707879 -0.3364018708130184 -0.9415290064490484 0.01889209698707879 0.3364018708130184 0.1730385331033649 -0.869260509229306 0.4630808062917779 0.1639094801891984 -0.8784978536901976 0.4487484856418159 -0.1639094801891984 0.8784978536901976 -0.4487484856418159 -0.1730385331033649 0.869260509229306 -0.4630808062917779 -0.8995945474336173 -2.706734065570341e-005 0.4367260577239058 0.8995945474336173 2.706734065570341e-005 -0.4367260577239058 -0.8995945473837314 2.70678889917239e-005 0.43672605782663 0.8995945473837314 -2.70678889917239e-005 -0.43672605782663 0.3048050421784275 0.5167260829904283 0.8000550239952098 0.3560251099978775 1.252025733392218e-005 0.9344763886231917 -0.3560251099978775 -1.252025733392218e-005 -0.9344763886231917 -0.3048050421784275 -0.5167260829904283 -0.8000550239952098 0.3081635667612611 -0.5007642538332132 0.8088698153620538 0.3019606338086662 -0.5141080316243367 0.8028154877985467 -0.3019606338086662 0.5141080316243367 -0.8028154877985467 -0.3081635667612611 0.5007642538332132 -0.8088698153620538 -0.8995957333211336 3.563160380080513e-010 0.4367236157919696 0.8995957333211336 -3.563160380080513e-010 -0.4367236157919696 0.3560250660667217 1.305518283296992e-005 0.934476405353152 -0.3560250660667217 -1.305518283296992e-005 -0.934476405353152</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID135\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"142\" source=\"#ID138\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"284\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID138\">8.835954899761456 2.887915538562082 8.770413372543002 2.816882901193681 8.733752412056139 2.836659965768741 -5.314774554701073 -0.2142585737425105 -5.313812817044318 -0.1445455542540637 -5.271796926739802 -0.2053242417841283 -0.9289416574248566 7.402765972782708 -0.8922781296017029 7.422541681094712 -0.863401992858196 7.3317322718534 8.799273287538805 2.907729616097122 8.835935518109764 2.887954017289928 8.73373342233003 2.836697960878422 -4.859119072430346 -0.09558662079202554 -4.902466791769723 -0.0353895062623624 -4.827996966860698 -0.06691013284173455 -4.816194187557621 -0.3007492821543235 -4.859173003559876 -0.2918149501666864 -4.817155898476206 -0.2310362624376061 5.067921635991438 -0.8939049498631768 5.110753786502324 -0.9543909004864848 5.067920551345233 -0.963747871921122 -0.8635100636443788 7.331723311569516 -0.8923874305780094 7.422532478723641 -0.826847922579062 7.351500619539451 5.068356041716164 -0.8938075335386285 5.068357126392557 -0.963650455596574 5.025525083324317 -0.9542934841619367 8.808957078028893 0.2235436860803819 8.789868649741981 0.2581306419745067 8.909327708334688 0.2618754518582341 -4.99395102262497 -0.2782860152253181 -5.068138837814331 -0.2463565045282997 -4.982474148273468 -0.2463565045282997 -5.274826460679561 -0.0428739002739665 -5.305948269550634 -0.01419741471706724 -5.231477552158321 0.01732320923153562 5.142585770829897 -0.9285234784541353 5.111230622193833 -0.9540887604745603 5.06839641844553 -0.8936037096588904 -5.677523129966245 5.173624890263669 -5.77687127388714 5.213571083110868 -5.753477191572667 5.243957175029614 5.067881250533171 -0.8937192322685431 5.025048238873127 -0.9542042830957674 4.993692792215798 -0.9286390010704587 8.917975008069023 0.1012065005595706 8.798526468680523 0.09725949789170468 8.89532322039822 0.1319388614386109 -5.068138837814331 -0.06678624390902521 -4.99395102262497 -0.03216016065111377 -4.982474148273468 -0.06678624390902521 8.190529426662092 0.9996672152945153 8.08979968190903 0.9727990861225769 8.074907594095551 1.00384362226358 -5.142327547073364 -0.2782860152253181 -5.153806209564209 -0.2463565045282997 -6.087457908013803 4.90321883025728 -6.105786276791672 4.868378548045608 -6.185120077832808 4.936362668216338 5.153806209564209 -0.8939784871425019 5.142327547073364 -0.9288991014895013 5.068138837814331 -0.8939784871425019 4.99395102262497 -0.9288991014895013 4.982474148273468 -0.8939784871425019 -4.994457814787069 -0.1757846438723037 -4.951862563447768 -0.1166043582780247 -4.920406936232481 -0.1409776365938563 7.291121875868974 2.969945835853808 7.19582799620366 2.941761479730215 7.18092159339962 2.975569337325649 8.195220010186123 1.088186045874139 8.079596744289182 1.092337823660826 8.174893249620968 1.120516685308637 -5.153806209564209 -0.06678624390902369 -5.142327547073364 -0.03216016065111223 -5.068138837814331 -0.06678624390902369 -7.137106535112019 3.060024521581374 -7.152088610920599 3.029006382100205 -7.232334484981479 3.088346443754763 -7.242612385084303 2.943389676118223 -7.343399522378902 2.970124280639696 -7.323149468945029 3.002485087503869 5.142327547073364 -0.859232200450826 5.153806209564209 -0.8941551102661389 5.068138837814331 -0.8941551102661389 4.99395102262497 -0.859232200450826 5.068138837814331 -0.8941551102661394 4.982474148273468 -0.8941551102661394 -4.832054457100766 -0.2738214624777934 -4.832959625552252 -0.2054526243414892 -4.78998926836575 -0.2144070109213413 5.598317121471339 5.263711799162454 5.578074224668392 5.294579086722642 5.683571160579093 5.298544798118836 7.290745375798657 2.966191282101151 7.180544980643493 2.971813416852751 7.270412587505954 2.99852205537594 -5.215406421209959 -0.1156881818831501 -5.183951092391164 -0.09131490251471087 -5.141354648074129 -0.1504951906648063 -8.083079912414807 1.092796300949026 -8.097990711575598 1.058989267437694 -8.172944713511527 1.119510781048612 -8.094798269883858 1.060530406342207 -8.190094705824908 1.088709413212966 -8.169765332536054 1.1210419082654 5.110783088494092 -0.8334782524305988 5.142138361268883 -0.8590419577254941 5.067949178412453 -0.8939642449202555 5.025495776989243 -0.8333931899840764 5.0683284949814 -0.8938791824822415 4.994140206192672 -0.8589568952825682 -5.299507771761791 -0.1908129161324697 -5.341574173907995 -0.131398464396818 -5.298602628478756 -0.1224440777899588 0.7746483127185083 7.390196991462098 0.7215207055259842 7.330470823398197 0.6845096625040692 7.349839445500478 5.693758894249335 5.227986497685446 5.588257337641396 5.224097600900424 5.670120622312615 5.258254352524729 -8.921870194509085 0.3337149091498159 -8.942408415393054 0.3029687755400236 -9.003367095494639 0.3684096216131407 -8.887500700048713 0.2305031088110326 -8.973102047573454 0.2648049438611277 -8.949729391207098 0.2951999908073414 5.067864535606823 -0.8241038597953553 5.110697440995674 -0.8334624164704209 5.06786315890317 -0.893948245928211 5.068413141266897 -0.8239802152392052 5.068414518008867 -0.89382460137206 5.025581427976076 -0.8333387719142708 -8.7257462002488 2.924610743178769 -8.741858115725387 3.003708982049239 -8.688733039413137 2.943978492221996 0.7383976461187897 7.40944198674381 0.7754057636934864 7.390068878114348 0.6852633045720957 7.349716597241113 -8.779349897822261 2.983342955922296 -8.742341417663866 3.002717266921394 -8.726214869462636 2.923620873445715</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 12 7 1 8 4 8 13 7 5 6 14 9 0 10 2 11 3 11 5 10 15 9 8 12 7 13 16 14 17 14 10 13 9 12 6 15 18 16 7 17 10 17 19 16 11 15 20 18 21 19 22 20 23 20 24 19 25 18 1 21 12 22 26 23 27 23 13 22 4 21 20 24 22 25 28 26 29 26 23 25 25 24 2 27 30 28 14 29 15 29 31 28 3 27 16 30 7 31 32 32 33 32 10 31 17 30 18 33 34 34 7 35 10 35 35 34 19 33 36 36 21 37 20 38 25 38 24 37 37 36 26 39 12 40 38 41 39 41 13 40 27 39 20 42 28 43 40 44 41 44 29 43 25 42 14 45 30 46 42 47 43 47 31 46 15 45 7 48 44 49 32 50 33 50 45 49 10 48 42 51 30 52 46 53 47 53 31 52 43 51 34 54 48 55 7 31 10 31 49 55 35 54 50 56 26 57 38 58 39 58 27 57 51 56 52 59 36 60 20 61 25 61 37 60 53 59 20 61 40 62 54 63 55 63 41 62 25 61 7 64 56 65 44 66 45 66 57 65 10 64 58 67 46 68 59 69 60 69 47 68 61 67 42 70 46 71 58 72 61 72 47 71 43 70 48 73 62 74 7 75 10 75 63 74 49 73 64 76 50 77 65 78 66 78 51 77 67 76 50 79 38 80 65 81 66 81 39 80 51 79 68 82 52 83 20 84 25 84 53 83 69 82 70 85 20 86 54 87 55 87 25 86 71 85 7 88 72 89 56 90 57 90 73 89 10 88 59 91 74 92 75 93 76 93 77 92 60 91 58 94 59 95 75 96 76 96 60 95 61 94 62 97 78 98 7 99 10 99 79 98 63 97 80 100 64 101 81 102 82 102 67 101 83 100 64 103 65 104 81 105 82 105 66 104 67 103 84 106 68 107 20 108 25 108 69 107 85 106 86 109 20 110 70 111 71 111 25 110 87 109 7 112 78 113 72 114 73 114 79 113 10 112 88 115 74 116 89 117 90 117 77 116 91 115 75 118 74 119 88 120 91 120 77 119 76 118 92 121 80 122 93 123 94 123 83 122 95 121 80 124 81 125 93 126 94 126 82 125 83 124 96 127 84 128 20 129 25 129 85 128 97 127 96 130 20 131 86 132 87 132 25 131 97 130 92 133 98 134 89 135 90 135 99 134 95 133 98 136 88 137 89 138 90 138 91 137 99 136 93 139 98 140 92 141 95 141 99 140 94 139</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID134\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID135\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID141\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID144\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID142\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID143\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID142\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"378\" source=\"#ID147\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1134\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID147\">0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7976231575012207 0.6196871995925903 -0.1194272115826607 0.7976231575012207 0.6196871995925903 -0.1194272115826607 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7976231575012207 0.6200764179229736 0.01818196848034859 0.7976231575012207 0.6200764179229736 0.01818196848034859 0.7976231575012207 0.7611286044120789 -0.118915356695652 0.7976231575012207 0.7611286044120789 -0.118915356695652 0.7976231575012207 0.7639247179031372 0.02084463648498058 0.7976231575012207 0.7639247179031372 0.02084463648498058 0.798487663269043 0.4255831241607666 0.01916016265749931 0.798487663269043 0.4255831241607666 0.01916016265749931 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7976231575012207 0.7669853568077087 0.1513165235519409 0.7976231575012207 0.7669853568077087 0.1513165235519409 0.7976231575012207 0.6231358647346497 0.1513165235519409 0.7976231575012207 0.6231358647346497 0.1513165235519409 0.7976231575012207 0.872636616230011 -0.118915356695652 0.7976231575012207 0.872636616230011 -0.118915356695652 0.7976231575012207 0.8771676421165466 0.02084463648498058 0.7976231575012207 0.8771676421165466 0.02084463648498058 0.7976231575012207 0.8771676421165466 0.1513165235519409 0.7976231575012207 0.8771676421165466 0.1513165235519409 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7687971591949463 0.7642374038696289 0.234848827123642 0.7687971591949463 0.7642374038696289 0.234848827123642 0.7687971591949463 0.8763352632522583 0.234848827123642 0.7687971591949463 0.8763352632522583 0.234848827123642 0.7698178291320801 0.6222134828567505 0.2340750992298126 0.7698178291320801 0.6222134828567505 0.2340750992298126 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7687971591949463 1.068503022193909 0.234848827123642 0.7687971591949463 1.068503022193909 0.234848827123642 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 1.067611813545227 0.1501588523387909 0.7976231575012207 1.067611813545227 0.1501588523387909 0.7461556792259216 0.7716558575630188 0.29511559009552 0.7461556792259216 0.7716558575630188 0.29511559009552 0.7460806965827942 0.8783665895462036 0.29511559009552 0.7460806965827942 0.8783665895462036 0.29511559009552 0.7444993853569031 1.070043087005615 0.292364776134491 0.7444993853569031 1.070043087005615 0.292364776134491 0.7471287846565247 0.6197603940963745 0.2984656691551209 0.7471287846565247 0.6197603940963745 0.2984656691551209 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7687971591949463 1.22945249080658 0.2351814955472946 0.7687971591949463 1.22945249080658 0.2351814955472946 0.7424870729446411 1.229051828384399 0.2896876931190491 0.7424870729446411 1.229051828384399 0.2896876931190491 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7976231575012207 1.226557493209839 0.1501588523387909 0.7976231575012207 1.226557493209839 0.1501588523387909 0.6736209392547607 0.8758261203765869 0.358364999294281 0.6736209392547607 0.8758261203765869 0.358364999294281 0.6739693880081177 0.7716558575630188 0.3602698147296906 0.6739693880081177 0.7716558575630188 0.3602698147296906 0.6727290749549866 1.070043087005615 0.342584639787674 0.6727290749549866 1.070043087005615 0.342584639787674 0.6714252829551697 1.229051828384399 0.3374882340431213 0.6714252829551697 1.229051828384399 0.3374882340431213 0.674491286277771 0.6242926120758057 0.356035441160202 0.674491286277771 0.6242926120758057 0.356035441160202 0.7687971591949463 1.336279630661011 0.2374546378850937 0.7687971591949463 1.336279630661011 0.2374546378850937 0.7405544519424439 1.33383572101593 0.2877088189125061 0.7405544519424439 1.33383572101593 0.2877088189125061 0.6702165007591248 1.338770151138306 0.3299798667430878 0.6702165007591248 1.338770151138306 0.3299798667430878 0.688839852809906 0.4193950891494751 0.3588072657585144 0.688839852809906 0.4193950891494751 0.3588072657585144 0.6524490714073181 0.770412027835846 0.3768142461776733 0.6524490714073181 0.770412027835846 0.3768142461776733 0.6521070003509522 0.8788958787918091 0.36956787109375 0.6521070003509522 0.8788958787918091 0.36956787109375 0.6511565446853638 0.6258586049079895 0.3818635642528534 0.6511565446853638 0.6258586049079895 0.3818635642528534 0.6503376960754395 1.071277260780335 0.3560464382171631 0.6503376960754395 1.071277260780335 0.3560464382171631 0.7946488857269287 1.336279630661011 0.1839811652898789 0.7946488857269287 1.336279630661011 0.1839811652898789 0.6476884484291077 1.231573462486267 0.3451077938079834 0.6476884484291077 1.231573462486267 0.3451077938079834 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.7687971591949463 1.430078029632568 0.2376271635293961 0.7687971591949463 1.430078029632568 0.2376271635293961 0.7387611269950867 1.431114196777344 0.2848821878433228 0.7387611269950867 1.431114196777344 0.2848821878433228 0.668738603591919 1.432783603668213 0.3242798447608948 0.668738603591919 1.432783603668213 0.3242798447608948 0.6441174149513245 1.337924003601074 0.3337158262729645 0.6441174149513245 1.337924003601074 0.3337158262729645 0.6322492361068726 0.7708060741424561 0.3701403439044952 0.6322492361068726 0.7708060741424561 0.3701403439044952 0.6230122447013855 0.8783389925956726 0.3555973768234253 0.6230122447013855 0.8783389925956726 0.3555973768234253 0.6149778366088867 1.073966383934021 0.34251469373703 0.6149778366088867 1.073966383934021 0.34251469373703 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6076487898826599 1.231997966766357 0.325863778591156 0.6076487898826599 1.231997966766357 0.325863778591156 0.7952814698219299 1.430078029632568 0.1879792362451553 0.7952814698219299 1.430078029632568 0.1879792362451553 0.6022510528564453 1.338981509208679 0.3172231614589691 0.6022510528564453 1.338981509208679 0.3172231614589691 0.7687971591949463 1.527541875839233 0.2388848811388016 0.7687971591949463 1.527541875839233 0.2388848811388016 0.7354865670204163 1.524521231651306 0.2817167937755585 0.7354865670204163 1.524521231651306 0.2817167937755585 0.6677529215812683 1.524521231651306 0.3170008361339569 0.6677529215812683 1.524521231651306 0.3170008361339569 0.6405463814735413 1.43192446231842 0.3254314661026001 0.6405463814735413 1.43192446231842 0.3254314661026001 0.5962012410163879 1.422707080841065 0.303942084312439 0.5962012410163879 1.422707080841065 0.303942084312439 0.6069484949111939 0.8772760033607483 0.3508152365684509 0.6069484949111939 0.8772760033607483 0.3508152365684509 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.5943053960800171 1.076266169548035 0.3287610411643982 0.5943053960800171 1.076266169548035 0.3287610411643982 0.5860564708709717 1.234852313995361 0.3147788345813751 0.5860564708709717 1.234852313995361 0.3147788345813751 0.7969198822975159 1.529133081436157 0.1681521981954575 0.7969198822975159 1.529133081436157 0.1681521981954575 0.5783446431159973 1.340795755386353 0.2962920665740967 0.5783446431159973 1.340795755386353 0.2962920665740967 0.7629945874214172 1.629548072814941 0.2351733148097992 0.7629945874214172 1.629548072814941 0.2351733148097992 0.7300229668617249 1.627527952194214 0.2751796841621399 0.7300229668617249 1.627527952194214 0.2751796841621399 0.6662258505821228 1.630582451820374 0.3066250681877136 0.6662258505821228 1.630582451820374 0.3066250681877136 0.6369754076004028 1.523992538452148 0.3161111772060394 0.6369754076004028 1.523992538452148 0.3161111772060394 0.5925832986831665 1.534539937973023 0.2910608053207398 0.5925832986831665 1.534539937973023 0.2910608053207398 0.5729466080665588 1.432812809944153 0.2799475789070129 0.5729466080665588 1.432812809944153 0.2799475789070129 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5641165971755981 1.231308460235596 0.2951163649559021 0.5641165971755981 1.231308460235596 0.2951163649559021 0.7976231575012207 1.629548072814941 0.1532912850379944 0.7976231575012207 1.629548072814941 0.1532912850379944 0.5558203458786011 1.338033199310303 0.2760796546936035 0.5558203458786011 1.338033199310303 0.2760796546936035 0.7910681962966919 1.631798982620239 0.123851403594017 0.7910681962966919 1.631798982620239 0.123851403594017 0.7581207752227783 1.731385946273804 0.2290779650211334 0.7581207752227783 1.731385946273804 0.2290779650211334 0.7230180501937866 1.735270857810974 0.2675617933273315 0.7230180501937866 1.735270857810974 0.2675617933273315 0.6637653708457947 1.735270857810974 0.2955930531024933 0.6637653708457947 1.735270857810974 0.2955930531024933 0.6328089237213135 1.630808830261231 0.3067907989025116 0.6328089237213135 1.630808830261231 0.3067907989025116 0.5831363201141357 1.635170221328735 0.2697256505489349 0.5831363201141357 1.635170221328735 0.2697256505489349 0.5668072104454041 1.539629101753235 0.2627097368240356 0.5668072104454041 1.539629101753235 0.2627097368240356 0.5483854413032532 1.437644124031067 0.2575764954090118 0.5483854413032532 1.437644124031067 0.2575764954090118 0.7976231575012207 1.731245756149292 0.1508422940969467 0.7976231575012207 1.731245756149292 0.1508422940969467 0.7774713039398193 1.770382642745972 0.08878238499164581 0.7774713039398193 1.770382642745972 0.08878238499164581 0.7529417276382446 1.832421541213989 0.2219224870204926 0.7529417276382446 1.832421541213989 0.2219224870204926 0.7168887853622437 1.830480456352234 0.2584208846092224 0.7168887853622437 1.830480456352234 0.2584208846092224 0.6609818935394287 1.828536510467529 0.2839697897434235 0.6609818935394287 1.828536510467529 0.2839697897434235 0.6256666779518127 1.734643340110779 0.2933281362056732 0.6256666779518127 1.734643340110779 0.2933281362056732 0.5772106051445007 1.733703374862671 0.2523872554302216 0.5772106051445007 1.733703374862671 0.2523872554302216 0.5580869913101196 1.635875701904297 0.243652269244194 0.5580869913101196 1.635875701904297 0.243652269244194 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5391620993614197 1.536199450492859 0.2382145375013351 0.7868422269821167 1.832582235336304 0.1508422940969467 0.7868422269821167 1.832582235336304 0.1508422940969467 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7774713039398193 1.831223368644714 0.08806630969047546 0.7774713039398193 1.831223368644714 0.08806630969047546 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7089943289756775 1.906256556510925 0.2465686351060867 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6161291599273682 1.828536510467529 0.2750792801380158 0.6161291599273682 1.828536510467529 0.2750792801380158 0.569970428943634 1.82999062538147 0.2332505583763123 0.569970428943634 1.82999062538147 0.2332505583763123 0.5455059409141541 1.737459182739258 0.2144985496997833 0.5455059409141541 1.737459182739258 0.2144985496997833 0.5255792737007141 1.631603479385376 0.2142343670129776 0.5255792737007141 1.631603479385376 0.2142343670129776 0.7709382176399231 1.897327780723572 0.1462340503931046 0.7709382176399231 1.897327780723572 0.1462340503931046 0.758520245552063 1.848836660385132 0.05843546241521835 0.758520245552063 1.848836660385132 0.05843546241521835 0.7762541174888611 1.794281721115112 0.06106704473495483 0.7762541174888611 1.794281721115112 0.06106704473495483 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7930033206939697 1.725906729698181 0.03279396891593933 0.7930033206939697 1.725906729698181 0.03279396891593933 0.6045059561729431 1.912085294723511 0.2496029883623123 0.6045059561729431 1.912085294723511 0.2496029883623123 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5392844080924988 1.786986827850342 0.1989490985870361 0.5392844080924988 1.786986827850342 0.1989490985870361 0.5107629299163818 1.737711548805237 0.1886539459228516 0.5107629299163818 1.737711548805237 0.1886539459228516 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7667569518089294 1.816561579704285 0.03192228823900223 0.7667569518089294 1.816561579704285 0.03192228823900223 0.5368551015853882 1.831621766090393 0.1790818572044373 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5368551015853882 1.831621766090393 0.1790818572044373 0.7158539295196533 1.866551876068115 0.03108330257236958 0.7158539295196533 1.866551876068115 0.03108330257236958 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6598671674728394 1.913674473762512 0.02759447880089283 0.7762541174888611 1.840326070785523 -0.01964796893298626 0.7762541174888611 1.840326070785523 -0.01964796893298626 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4955552816390991 1.831614017486572 0.16129469871521 0.4955552816390991 1.831614017486572 0.16129469871521 0.7189935445785523 1.884884715080261 -0.0176821406930685 0.7189935445785523 1.884884715080261 -0.0176821406930685 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.6611202955245972 1.907618165016174 -0.01770789735019207 0.6611202955245972 1.907618165016174 -0.01770789735019207 0.7738800644874573 1.862605094909668 -0.08081070333719254 0.7738800644874573 1.862605094909668 -0.08081070333719254 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5996825695037842 1.907618165016174 0.02810462191700935 0.5996825695037842 1.907618165016174 0.02810462191700935 0.725027859210968 1.896474838256836 -0.07735307514667511 0.725027859210968 1.896474838256836 -0.07735307514667511 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.4961572587490082 1.913546085357666 0.03562422469258308 0.4961572587490082 1.913546085357666 0.03562422469258308 0.5986562371253967 1.918723344802856 -0.0167639497667551 0.5986562371253967 1.918723344802856 -0.0167639497667551 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6611202955245972 1.918723344802856 -0.0708390548825264 0.6611202955245972 1.918723344802856 -0.0708390548825264 0.7738800644874573 1.868109583854675 -0.1344994306564331 0.7738800644874573 1.868109583854675 -0.1344994306564331 0.518811047077179 1.913546085357666 0.007866731844842434 0.518811047077179 1.913546085357666 0.007866731844842434 0.7228279709815979 1.896474838256836 -0.1368977874517441 0.7228279709815979 1.896474838256836 -0.1368977874517441 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5986562371253967 1.918723344802856 -0.06880220025777817 0.5986562371253967 1.918723344802856 -0.06880220025777817 0.6611202955245972 1.923628926277161 -0.1305911093950272 0.6611202955245972 1.923628926277161 -0.1305911093950272 0.7654834985733032 1.864772439002991 -0.1993826925754547 0.7654834985733032 1.864772439002991 -0.1993826925754547 0.7074308395385742 1.889798879623413 -0.1963488012552261 0.7074308395385742 1.889798879623413 -0.1963488012552261 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5967269539833069 1.918723344802856 -0.1292334944009781 0.5967269539833069 1.918723344802856 -0.1292334944009781 0.6610304117202759 1.908910393714905 -0.1960339546203613 0.6610304117202759 1.908910393714905 -0.1960339546203613 0.7544460296630859 1.854760766029358 -0.2666657269001007 0.7544460296630859 1.854760766029358 -0.2666657269001007 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.6866759657859802 1.878122568130493 -0.2706334590911865 0.6866759657859802 1.878122568130493 -0.2706334590911865 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.5986562371253967 1.913129925727844 -0.1947008222341538 0.5986562371253967 1.913129925727844 -0.1947008222341538 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.6520506143569946 1.899369478225708 -0.2707102298736572 0.6520506143569946 1.899369478225708 -0.2707102298736572 0.7397289276123047 1.849756956100464 -0.2961414754390717 0.7397289276123047 1.849756956100464 -0.2961414754390717 0.674824595451355 1.873115420341492 -0.2989807724952698 0.674824595451355 1.873115420341492 -0.2989807724952698 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.5926526784896851 1.902366518974304 -0.2694905698299408 0.5926526784896851 1.902366518974304 -0.2694905698299408 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.642670750617981 1.887944936752319 -0.2983261346817017 0.642670750617981 1.887944936752319 -0.2983261346817017 0.7001771926879883 1.811398148536682 -0.3453316688537598 0.7001771926879883 1.811398148536682 -0.3453316688537598 0.5936500430107117 1.890616059303284 -0.2966291010379791 0.5936500430107117 1.890616059303284 -0.2966291010379791 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.6569415926933289 1.831865787506104 -0.3451592326164246 0.6569415926933289 1.831865787506104 -0.3451592326164246 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.6276070475578308 1.831865787506104 -0.3451592326164246 0.6276070475578308 1.831865787506104 -0.3451592326164246 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.424839973449707 1.892464518547058 -0.2987582087516785 0.424839973449707 1.892464518547058 -0.2987582087516785 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.5814452171325684 1.831865787506104 -0.3430174887180328 0.5814452171325684 1.831865787506104 -0.3430174887180328 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID143\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"378\" source=\"#ID148\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1134\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID148\">0.9900552956686062 -0.002352708047164541 -0.1406590782118 0.997169978879332 0.0005626500067133648 -0.07517789998904474 0.9976197425330905 -0.001196871580965296 -0.0689450274249644 -0.9976197425330905 0.001196871580965296 0.0689450274249644 -0.997169978879332 -0.0005626500067133648 0.07517789998904474 -0.9900552956686062 0.002352708047164541 0.1406590782118 0.9907502151915427 -0.003272368041776708 -0.1356587730495558 -0.9907502151915427 0.003272368041776708 0.1356587730495558 0.9999987715484215 0.001298132680655167 -0.0008784948441743609 -0.9999987715484215 -0.001298132680655167 0.0008784948441743609 0.9977882280381223 -0.0004295143788617648 -0.06647155411107901 -0.9977882280381223 0.0004295143788617648 0.06647155411107901 1 0 0 -1 -0 -0 0.9996866781643978 -0.01287970789148096 0.02146295937799879 -0.9996866781643978 0.01287970789148096 -0.02146295937799879 0.9916288815365839 -0.004292839331706357 -0.1290493426289959 -0.9916288815365839 0.004292839331706357 0.1290493426289959 0.9862294564733497 -1.023521613759804e-018 0.1653827656809535 -0.9862294564733497 1.023521613759804e-018 -0.1653827656809535 0.9855234036645701 -0.0150094328749683 0.1688737331682242 -0.9855234036645701 0.0150094328749683 -0.1688737331682242 0.9984170139917291 -0.005688295605190683 -0.05595631747128758 -0.9984170139917291 0.005688295605190683 0.05595631747128758 1 0 0 -1 -0 -0 0.9862261923033275 0.0001385673981601088 0.1654021717328899 -0.9862261923033275 -0.0001385673981601088 -0.1654021717328899 0.9857490260995654 -0.03215838325426263 0.1651202468815681 -0.9857490260995654 0.03215838325426263 -0.1651202468815681 0.993558929430381 -0.01612267807413861 -0.1121637775793633 -0.993558929430381 0.01612267807413861 0.1121637775793633 0.9410463363002816 0.001842553401757326 0.3382726680250405 -0.9410463363002816 -0.001842553401757326 -0.3382726680250405 0.9399697361499318 0.002496753562366073 0.341248679622173 -0.9399697361499318 -0.002496753562366073 -0.341248679622173 0.9472756568605438 -0.00553628734223512 0.320371939223599 -0.9472756568605438 0.00553628734223512 -0.320371939223599 1 0 0 -1 -0 -0 0.9986371166879656 -0.003641535286201516 -0.05206388761805772 -0.9986371166879656 0.003641535286201516 0.05206388761805772 1 0 0 -1 -0 -0 0.9334242866530585 0.003566205222945827 0.358756718775463 -0.9334242866530585 -0.003566205222945827 -0.358756718775463 0.9613972024972641 -0.002189232112902448 0.2751556401260756 -0.9613972024972641 0.002189232112902448 -0.2751556401260756 0.9999088897289408 2.49493391549871e-019 -0.01349860144745444 -0.9999088897289408 -2.49493391549871e-019 0.01349860144745444 0.9866434192671509 0.0003843271064437876 0.1628944919556831 -0.9866434192671509 -0.0003843271064437876 -0.1628944919556831 0.8268208571787928 0.009421202414397688 0.5623864428301889 -0.8268208571787928 -0.009421202414397688 -0.5623864428301889 0.8167992916288501 0.01709412357318276 0.5766686293998258 -0.8167992916288501 -0.01709412357318276 -0.5766686293998258 0.7779744640104565 0.01700624928527182 0.6280656978635992 -0.7779744640104565 -0.01700624928527182 -0.6280656978635992 0.8163231400853481 -8.704477407084645e-005 0.5775954669008445 -0.8163231400853481 8.704477407084645e-005 -0.5775954669008445 1 0 0 -1 -0 -0 0.9237450876980882 0.001311220861844423 0.383005605250763 -0.9237450876980882 -0.001311220861844423 -0.383005605250763 0.7541917009803472 0.02513245543842398 0.6561731767270028 -0.7541917009803472 -0.02513245543842398 -0.6561731767270028 0.8419595543963964 0.02106488778245558 0.5391292788036411 -0.8419595543963964 -0.02106488778245558 -0.5391292788036411 0.9579580307156499 -0.0150347799141805 0.2865141650605185 -0.9579580307156499 0.0150347799141805 -0.2865141650605185 0.5722866440581146 0.04950480248095534 0.8185580441019579 -0.5722866440581146 -0.04950480248095534 -0.8185580441019579 0.6404287661317567 0.01381415417394053 0.7678933289561866 -0.6404287661317567 -0.01381415417394053 -0.7678933289561866 0.5511062456143986 0.03972205931053413 0.8334890905398419 -0.5511062456143986 -0.03972205931053413 -0.8334890905398419 0.4447699353356177 0.05578200889076308 0.8939060756621251 -0.4447699353356177 -0.05578200889076308 -0.8939060756621251 0.6923543389926927 0.01264347006466835 0.7214468878183032 -0.6923543389926927 -0.01264347006466835 -0.7214468878183032 0.890213441644624 -0.01369295778836025 0.4553378209881536 -0.890213441644624 0.01369295778836025 -0.4553378209881536 0.7186762426794346 0.02684668868725016 0.6948263909169687 -0.7186762426794346 -0.02684668868725016 -0.6948263909169687 0.3458403087416392 0.06829456209539139 0.9358046450182251 -0.3458403087416392 -0.06829456209539139 -0.9358046450182251 0.75368530727801 0.06163089589583062 0.6543394304673444 -0.75368530727801 -0.06163089589583062 -0.6543394304673444 0.157066604294048 0.04904476334098479 0.9863694505632075 -0.157066604294048 -0.04904476334098479 -0.9863694505632075 0.02443806644282753 0.06659572866917021 0.9974807215337839 -0.02443806644282753 -0.06659572866917021 -0.9974807215337839 0.2630441307697239 0.04030051035594109 0.9639417275606712 -0.2630441307697239 -0.04030051035594109 -0.9639417275606712 0.08335440127704034 0.06610197704781352 0.9943251844432567 -0.08335440127704034 -0.06610197704781352 -0.9943251844432567 0.8957315970327513 -0.06402836860577338 0.4399605369698968 -0.8957315970327513 0.06402836860577338 -0.4399605369698968 -0.06492613846004917 0.06947997884781025 0.9954682963731061 0.06492613846004917 -0.06947997884781025 -0.9954682963731061 0.7783133842626236 0.06431532705604588 0.6245733060124612 -0.7783133842626236 -0.06431532705604588 -0.6245733060124612 0.8617517623012343 0.001114692778924215 0.5073289442075288 -0.8617517623012343 -0.001114692778924215 -0.5073289442075288 0.6891552101990586 0.03963287346438789 0.7235290813757573 -0.6891552101990586 -0.03963287346438789 -0.7235290813757573 0.278777090103203 0.07301736481532682 0.9575760014061632 -0.278777090103203 -0.07301736481532682 -0.9575760014061632 -0.1276463389581969 0.09421586330362655 0.9873346865437888 0.1276463389581969 -0.09421586330362655 -0.9873346865437888 -0.2920792382219204 0.0721269134737136 0.9536705022975484 0.2920792382219204 -0.0721269134737136 -0.9536705022975484 -0.3571230440059741 0.06599960238081828 0.9317226969036875 0.3571230440059741 -0.06599960238081828 -0.9317226969036875 -0.4506036016147756 0.06628064034319742 0.8902602265222728 0.4506036016147756 -0.06628064034319742 -0.8902602265222728 -0.2698068405574629 0.03894401619505566 0.9621266197289207 -0.2693199515713319 0.03468941093848316 0.9624257937391103 0.2693199515713319 -0.03468941093848316 -0.9624257937391103 0.2698068405574629 -0.03894401619505566 -0.9621266197289207 -0.4411119244105691 0.05372970429490571 0.8958422790978254 0.4411119244105691 -0.05372970429490571 -0.8958422790978254 0.8931455316935644 -0.001744440434512021 0.4497644007070713 -0.8931455316935644 0.001744440434512021 -0.4497644007070713 -0.5089425449950996 0.08994888652575087 0.8560880116592503 0.5089425449950996 -0.08994888652575087 -0.8560880116592503 0.8603328292912356 0.04401005563554806 0.5078292408346468 -0.8603328292912356 -0.04401005563554806 -0.5078292408346468 0.6433431650210305 0.05695677214154844 0.7634562843594509 -0.6433431650210305 -0.05695677214154844 -0.7634562843594509 0.2291499131194153 0.08885161135973935 0.9693274516261995 -0.2291499131194153 -0.08885161135973935 -0.9693274516261995 -0.2166937839321052 0.08239336651058744 0.9727564634379143 0.2166937839321052 -0.08239336651058744 -0.9727564634379143 -0.5746463005236908 0.07940848382555334 0.8145403133000618 0.5746463005236908 -0.07940848382555334 -0.8145403133000618 -0.2550544664270329 0.09062866748743163 0.962670070057792 0.2550544664270329 -0.09062866748743163 -0.962670070057792 -0.268208641338077 0.08039316393004066 0.9600005541169757 0.268208641338077 -0.08039316393004066 -0.9600005541169757 -0.5040571034588977 0.06903428738336181 0.8609069076375783 0.5040571034588977 -0.06903428738336181 -0.8609069076375783 -0.5691109628437332 0.06388130761124124 0.8197755122647643 0.5691109628437332 -0.06388130761124124 -0.8197755122647643 0.9418618395814504 0.05197652566664391 0.3319558945400289 -0.9418618395814504 -0.05197652566664391 -0.3319558945400289 -0.6651250306610507 0.08194918217676402 0.7422216819311438 0.6651250306610507 -0.08194918217676402 -0.7422216819311438 0.8512879043211205 0.07117862593348728 0.5198485425263549 -0.8512879043211205 -0.07117862593348728 -0.5198485425263549 0.619245477230669 0.08797079891542996 0.7802539185851883 -0.619245477230669 -0.08797079891542996 -0.7802539185851883 0.2313078287806651 0.09844277603067 0.9678872393993784 -0.2313078287806651 -0.09844277603067 -0.9678872393993784 -0.2676693105422716 0.09407514478910847 0.9589071943242126 0.2676693105422716 -0.09407514478910847 -0.9589071943242126 -0.6004211577830194 0.09502269862054737 0.7940183373407487 0.6004211577830194 -0.09502269862054737 -0.7940183373407487 -0.6841191930593298 0.07792027847086325 0.7251960837531285 0.6841191930593298 -0.07792027847086325 -0.7251960837531285 -0.2193006907917859 0.09994973342337506 0.9705242180424153 0.2193006907917859 -0.09994973342337506 -0.9705242180424153 -0.895673926454469 0.000862505034626854 0.4447105503073879 0.895673926454469 -0.000862505034626854 -0.4447105503073879 -0.9606480777099047 0.006747156029087368 0.277686417884966 0.9606480777099047 -0.006747156029087368 -0.277686417884966 0.9963145726077562 0.01035982162450304 0.08514661769754983 -0.9963145726077562 -0.01035982162450304 -0.08514661769754983 -0.6701351984268618 0.08537696750274057 0.7373124095316902 0.6701351984268618 -0.08537696750274057 -0.7373124095316902 0.983777930475698 0.007551106240307528 -0.1792315940438523 -0.983777930475698 -0.007551106240307528 0.1792315940438523 0.8252223957521297 0.07354185068204758 0.5599996372743245 -0.8252223957521297 -0.07354185068204758 -0.5599996372743245 0.5945268041904479 0.1033653995277004 0.7974042094694331 -0.5945268041904479 -0.1033653995277004 -0.7974042094694331 0.1932005350996065 0.1192242477747035 0.9738886650843524 -0.1932005350996065 -0.1192242477747035 -0.9738886650843524 -0.3142248385532922 0.08615462943965131 0.9454311876928294 0.3142248385532922 -0.08615462943965131 -0.9454311876928294 -0.6518420645040525 0.08411285033915791 0.7536756274093763 0.6518420645040525 -0.08411285033915791 -0.7536756274093763 -0.699313003458432 0.07803047773575904 0.7105438534941222 0.699313003458432 -0.07803047773575904 -0.7105438534941222 -0.6622814848387056 0.08497993225021311 0.7444203422493159 0.6622814848387056 -0.08497993225021311 -0.7444203422493159 0.9949544543089252 0.04854030718942921 0.08780360145680287 -0.9949544543089252 -0.04854030718942921 -0.08780360145680287 0.9901379325004186 0.1122611193768768 -0.08381119078051108 -0.9901379325004186 -0.1122611193768768 0.08381119078051108 0.8032877158295905 0.1034007057999469 0.5865467923681383 -0.8032877158295905 -0.1034007057999469 -0.5865467923681383 0.5551052080391238 0.1581470010154239 0.8166074540914189 -0.5551052080391238 -0.1581470010154239 -0.8166074540914189 0.1213402806397459 0.2048808402222884 0.971236519908553 -0.1213402806397459 -0.2048808402222884 -0.971236519908553 -0.3781550379003967 0.1064664390502687 0.9195997306798786 0.3781550379003967 -0.1064664390502687 -0.9195997306798786 -0.6975916079972683 0.08525585232582549 0.711405220739898 0.6975916079972683 -0.08525585232582549 -0.711405220739898 -0.7002539934369103 0.09092200289402992 0.7080801748851593 0.7002539934369103 -0.09092200289402992 -0.7080801748851593 -0.6677750823147534 0.08506158820664575 0.7394869611097193 0.6677750823147534 -0.08506158820664575 -0.7394869611097193 0.9833538533676359 0.1393665663939898 0.1165854160629505 -0.9833538533676359 -0.1393665663939898 -0.1165854160629505 0.9757539082018429 0.141577994889696 0.1669130971249493 -0.9757539082018429 -0.141577994889696 -0.1669130971249493 0.935136779511798 0.1146530242704431 -0.3352221466877514 -0.935136779511798 -0.1146530242704431 0.3352221466877514 0.9788947884377451 0.1472326476577278 0.1417305211770475 -0.9788947884377451 -0.1472326476577278 -0.1417305211770475 0.7476957669442501 0.4263151891498764 0.509123167410161 -0.7476957669442501 -0.4263151891498764 -0.509123167410161 0.4351652976529689 0.4515882744243441 0.7789089767880753 -0.4351652976529689 -0.4515882744243441 -0.7789089767880753 0.05563331340804202 0.5289120472471837 0.8468512152179009 -0.05563331340804202 -0.5289120472471837 -0.8468512152179009 -0.4461974740070724 0.1722475743624215 0.8782019057801969 0.4461974740070724 -0.1722475743624215 -0.8782019057801969 -0.7419998352307358 0.139150102798354 0.655799888234794 0.7419998352307358 -0.139150102798354 -0.655799888234794 -0.6897695245368228 0.1108441646533761 0.7154939372087931 0.6897695245368228 -0.1108441646533761 -0.7154939372087931 -0.6647898545472454 0.1067289742039228 0.7393668746680708 0.6647898545472454 -0.1067289742039228 -0.7393668746680708 0.8950740664183305 0.4457805184040029 0.01105192457504562 -0.8950740664183305 -0.4457805184040029 -0.01105192457504562 0.8045230737725263 0.3681127863915901 -0.466085400181797 -0.8045230737725263 -0.3681127863915901 0.466085400181797 0.9598099745488073 0.2719552409484544 0.06931925906474978 -0.9598099745488073 -0.2719552409484544 -0.06931925906474978 0.7666598717558816 0.5088704772459741 -0.3915143400013715 -0.7666598717558816 -0.5088704772459741 0.3915143400013715 0.9651938739578729 0.2074084999712526 0.1593188620781253 -0.9651938739578729 -0.2074084999712526 -0.1593188620781253 -0.4503169078687535 0.4919917453143936 0.7450897966218713 0.4503169078687535 -0.4919917453143936 -0.7450897966218713 -0.6459866396208748 0.5996255363186426 0.4723880583015519 0.6459866396208748 -0.5996255363186426 -0.4723880583015519 -0.7457846745836115 0.1824622396899441 0.6407126893105413 0.7457846745836115 -0.1824622396899441 -0.6407126893105413 -0.576804386229287 0.1625954175684261 0.8005369636765092 0.576804386229287 -0.1625954175684261 -0.8005369636765092 0.5180576795043453 0.5370752177731986 -0.665707481676783 -0.5180576795043453 -0.5370752177731986 0.665707481676783 0.9061217896403585 0.4189367839184288 0.05861120557570541 -0.9061217896403585 -0.4189367839184288 -0.05861120557570541 -0.672019975146843 0.2478991248329869 0.697807406746787 -0.9156362960112678 0.1723120788930026 0.3632061685796893 0.9156362960112678 -0.1723120788930026 -0.3632061685796893 0.672019975146843 -0.2478991248329869 -0.697807406746787 0.6923885252186227 0.6725875489072316 -0.2611974716580217 -0.6923885252186227 -0.6725875489072316 0.2611974716580217 0.9606405710798401 0.2313040970548623 0.1538444275267501 -0.9606405710798401 -0.2313040970548623 -0.1538444275267501 -0.6184247596515268 0.7458918534232262 0.2473785755614576 0.6184247596515268 -0.7458918534232262 -0.2473785755614576 0.1488281615604248 0.9155662927981008 -0.3736154999708747 -0.1488281615604248 -0.9155662927981008 0.3736154999708747 0.8374542785258724 0.4900457070242865 0.2419205167111248 -0.8374542785258724 -0.4900457070242865 -0.2419205167111248 -0.3069818865505185 0.7901164331145026 0.530545137997042 0.3069818865505185 -0.7901164331145026 -0.530545137997042 -0.3746978090516431 0.3208310715897286 0.8698672171052803 0.3746978090516431 -0.3208310715897286 -0.8698672171052803 0.5180267390122302 0.8233124476276885 0.2319588568036569 -0.5180267390122302 -0.8233124476276885 -0.2319588568036569 0.9752261389276453 0.2198272850358889 0.02469701816064608 -0.9752261389276453 -0.2198272850358889 -0.02469701816064608 -0.02013490161526211 0.9948608097377648 0.0992298089530694 0.02013490161526211 -0.9948608097377648 -0.0992298089530694 0.2346198895705985 0.9689521708126289 0.07800767972048685 -0.2346198895705985 -0.9689521708126289 -0.07800767972048685 0.8194747684724745 0.5635680518478359 0.1041736760099196 -0.8194747684724745 -0.5635680518478359 -0.1041736760099196 -0.2427140865183295 0.9516308537911111 -0.1883841562296938 0.2427140865183295 -0.9516308537911111 0.1883841562296938 0.02236502878686735 0.9851014286376449 0.1705138727008254 -0.02236502878686735 -0.9851014286376449 -0.1705138727008254 0.4496571382552055 0.8867051493015056 0.1075287692588997 -0.4496571382552055 -0.8867051493015056 -0.1075287692588997 0.9776491467217603 0.2082435558818598 -0.02892693118691978 -0.9776491467217603 -0.2082435558818598 0.02892693118691978 0.05451745702686445 0.9941628502168685 0.09310249259819294 -0.05451745702686445 -0.9941628502168685 -0.09310249259819294 0.0438127723127856 0.9905954583831333 0.129618975512762 -0.0438127723127856 -0.9905954583831333 -0.129618975512762 -0.1956981726428444 0.9610455400549627 -0.1951760619664117 0.1956981726428444 -0.9610455400549627 0.1951760619664117 0.2045468584743975 0.9728343517018995 0.1084154363409551 -0.2045468584743975 -0.9728343517018995 -0.1084154363409551 0.8061690114442743 0.5903126513353483 -0.04028025149366901 -0.8061690114442743 -0.5903126513353483 0.04028025149366901 0.01476157945201542 0.9980629163706004 0.06043600531052539 -0.01476157945201542 -0.9980629163706004 -0.06043600531052539 0.4193902735346606 0.9034891719639234 -0.0884257576075347 -0.4193902735346606 -0.9034891719639234 0.0884257576075347 0.9604116108431715 0.2414805364948089 -0.1389125201405691 -0.9604116108431715 -0.2414805364948089 0.1389125201405691 -0.06838177615090631 0.9976586436301028 -0.001078647574916805 0.06838177615090631 -0.9976586436301028 0.001078647574916805 -0.04222907014205805 0.9990297916010928 0.01249724483293236 0.04222907014205805 -0.9990297916010928 -0.01249724483293236 0.170351442830629 0.9826231251431248 -0.0737033232594172 -0.170351442830629 -0.9826231251431248 0.0737033232594172 0.74333074519562 0.6421569410365217 -0.1873335696706328 -0.74333074519562 -0.6421569410365217 0.1873335696706328 0.3686962453234184 0.9044387136279826 -0.2146012394544205 -0.3686962453234184 -0.9044387136279826 0.2146012394544205 0.8917877003818316 0.2447790213962437 -0.3805232294249349 -0.8917877003818316 -0.2447790213962437 0.3805232294249349 -0.06630977119137992 0.9976983596115199 0.01417735775908853 0.06630977119137992 -0.9976983596115199 -0.01417735775908853 -0.04403949477506977 0.9976014876445216 -0.05340219798279838 0.04403949477506977 -0.9976014876445216 0.05340219798279838 0.2225619983841981 0.9576447485763068 -0.1827093112007543 -0.2225619983841981 -0.9576447485763068 0.1827093112007543 0.7124873634880191 0.619288682816256 -0.3299140557866522 -0.7124873634880191 -0.619288682816256 0.3299140557866522 -0.05913011988548577 0.9980266575742054 0.02112864627910984 0.05913011988548577 -0.9980266575742054 -0.02112864627910984 0.4033109953577375 0.8742862054507831 -0.2701182555511977 -0.4033109953577375 -0.8742862054507831 0.2701182555511977 0.813417733126717 0.2117233690580949 -0.5417792967894609 -0.813417733126717 -0.2117233690580949 0.5417792967894609 0.02580062929879584 0.9936985544649175 -0.1090757094046117 -0.02580062929879584 -0.9936985544649175 0.1090757094046117 -0.0165775742272396 0.9998193966169232 -0.009292910271388092 0.0165775742272396 -0.9998193966169232 0.009292910271388092 0.273496974185514 0.9192953144788657 -0.2830115366704539 -0.273496974185514 -0.9192953144788657 0.2830115366704539 0.5880277526648068 0.59155477570931 -0.5516215273459555 -0.5880277526648068 -0.59155477570931 0.5516215273459555 0.3472037532448569 0.7613954729584919 -0.5474728189517716 -0.3472037532448569 -0.7613954729584919 0.5474728189517716 0.6116929260147036 0.2894547948434446 -0.7362388783579076 -0.6116929260147036 -0.2894547948434446 0.7362388783579076 0.01557971421225727 0.9619313535424179 -0.272846740088857 -0.01557971421225727 -0.9619313535424179 0.272846740088857 -0.002326710954896456 0.991508710784031 -0.1300194710630725 0.002326710954896456 -0.991508710784031 0.1300194710630725 0.153468283798909 0.7918642236388596 -0.5910994308816781 -0.153468283798909 -0.7918642236388596 0.5910994308816781 0.3471621632704636 0.4496794813653836 -0.8229622083864676 -0.3471621632704636 -0.4496794813653836 0.8229622083864676 0.009566350025912693 0.8013399447302031 -0.5981327427310573 -0.009566350025912693 -0.8013399447302031 0.5981327427310573 -0.009548376057996846 0.9875451697264027 -0.1570457457707962 0.009548376057996846 -0.9875451697264027 0.1570457457707962 0.1286514942738617 0.5174470521760602 -0.845988972277658 -0.1286514942738617 -0.5174470521760602 0.845988972277658 0.2579558093757095 0.3380193053285395 -0.905097646463924 -0.2579558093757095 -0.3380193053285395 0.905097646463924 -0.001015192158410591 0.9767277832484703 -0.2144803180140568 0.001015192158410591 -0.9767277832484703 0.2144803180140568 -0.01572330387130821 0.4801689581634223 -0.8770350901370048 0.01572330387130821 -0.4801689581634223 0.8770350901370048 0.08149151905122982 0.3325274144394839 -0.9395662036114937 -0.08149151905122982 -0.3325274144394839 0.9395662036114937 0.03162526171808766 0.8553544880402206 -0.5170769213673285 -0.03162526171808766 -0.8553544880402206 0.5170769213673285 0 0.3078858683395855 -0.9514232980523336 -0 -0.3078858683395855 0.9514232980523336 -0.006817813475423355 0.4762750478533392 -0.8792699222717185 0.006817813475423355 -0.4762750478533392 0.8792699222717185 0 0.3078858683395854 -0.9514232980523336 -0 -0.3078858683395854 0.9514232980523336 -0.02307224561617772 0.3132163572532846 -0.9494014877970277 -2.964317095709304e-017 0.3078858683395854 -0.9514232980523336 2.964317095709304e-017 -0.3078858683395854 0.9514232980523336 0.02307224561617772 -0.3132163572532846 0.9494014877970277 0.0292968079231985 0.4931382590738291 -0.8694575058524391 -0.0292968079231985 -0.4931382590738291 0.8694575058524391 -0.010011755192711 0.3023485122323238 -0.9531448693188572 0.010011755192711 -0.3023485122323238 0.9531448693188572 -0.01611343067033426 0.2259029615688404 -0.9740165344112284 0.01611343067033426 -0.2259029615688404 0.9740165344112284</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"297\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 6 0 2 2 1 8 6 2 10 2 8 12 1 14 8 16 6 10 10 2 12 12 8 18 8 14 20 16 10 22 10 12 24 8 20 18 12 18 26 14 28 20 22 10 24 30 16 22 24 12 26 20 32 18 18 34 26 28 36 20 22 24 38 30 22 40 24 26 42 20 36 32 18 32 34 26 34 44 28 46 36 48 22 38 38 24 42 40 22 48 42 26 50 32 36 52 34 32 54 50 26 44 44 34 56 46 58 36 42 50 60 32 52 54 36 58 52 34 54 56 50 44 62 44 56 64 46 66 58 60 50 68 70 54 52 72 52 58 74 56 54 68 50 62 44 64 62 76 64 56 66 78 58 72 70 52 70 74 54 78 72 58 74 76 56 68 62 80 62 64 82 76 84 64 66 86 78 88 70 72 90 74 70 78 92 72 94 76 74 96 68 80 62 82 80 84 82 64 98 84 76 86 100 78 92 88 72 88 90 70 90 94 74 78 100 92 94 98 76 96 80 102 80 82 104 84 106 82 98 108 84 92 110 88 112 90 88 114 94 90 116 92 117 120 98 94 122 96 102 102 80 104 106 104 82 108 106 84 124 108 98 110 112 88 116 110 92 112 114 90 114 120 94 120 124 98 122 102 126 102 104 128 106 130 104 108 132 106 124 134 108 136 112 110 116 138 110 136 114 112 140 120 114 142 124 120 122 126 144 102 128 126 130 128 104 132 130 106 134 132 108 146 134 124 138 136 110 136 140 114 140 142 120 142 146 124 144 126 148 126 128 150 130 152 128 132 154 130 134 156 132 146 158 134 138 160 136 160 140 136 162 142 140 164 146 142 166 144 148 126 150 148 152 150 128 154 152 130 156 154 132 158 156 134 168 158 146 160 162 140 162 164 142 164 168 146 144 166 170 166 148 172 148 150 174 152 176 150 154 178 152 156 180 154 156 158 182 168 184 158 170 166 186 186 166 172 172 148 174 176 174 150 178 176 152 180 178 154 156 182 180 184 182 158 170 186 188 186 172 190 172 174 192 176 194 174 178 196 176 180 198 178 180 182 200 184 202 182 188 186 204 206 170 188 186 190 204 172 192 190 194 192 174 196 194 176 198 196 178 180 200 198 202 200 182 208 188 204 210 206 188 204 190 212 192 214 190 194 216 192 196 218 194 198 220 196 198 200 222 202 224 200 208 204 226 188 208 228 210 188 230 226 204 212 214 212 190 216 214 192 218 216 194 220 218 196 198 222 220 224 222 200 208 226 232 228 208 232 230 188 228 234 210 230 218 236 216 220 238 218 222 240 220 224 242 222 228 232 244 246 230 228 234 230 246 236 218 238 220 248 249 220 240 248 242 240 222 244 252 228 252 246 228 254 234 246 249 248 256 240 242 248 258 252 244 252 260 246 254 246 260 248 262 256 242 264 248 258 266 252 266 260 252 268 254 260 262 270 256 264 262 248 272 266 258 274 260 266 268 260 274 270 276 256 272 258 278 272 280 266 280 274 266 282 268 274 270 284 276 286 272 278 278 258 288 290 280 272 292 274 280 282 274 292 284 288 276 294 286 278 290 272 286 284 278 288 296 280 290 296 292 280 298 282 292 294 278 284 300 286 294 302 290 286 304 296 290 296 306 292 306 298 292 300 302 286 304 290 302 308 296 304 308 306 296 310 298 306 312 302 300 314 304 302 316 308 304 318 306 308 318 310 306 312 320 302 316 304 314 320 314 302 322 308 316 322 318 308 324 310 318 326 316 314 328 314 320 330 322 316 322 332 318 332 324 318 330 316 326 328 326 314 330 334 322 334 332 322 336 324 332 338 330 326 340 326 328 342 334 330 334 344 332 344 336 332 346 330 338 348 338 326 348 326 340 342 350 334 346 342 330 334 350 344 344 352 336 346 338 354 354 338 348 342 356 350 346 356 342 350 358 344 358 352 344 360 346 354 356 362 350 346 364 356 350 366 358 360 364 346 356 368 369 364 368 356 360 372 364 364 374 368 372 374 364 372 376 374</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID144\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"297\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 5 7 9 4 3 11 3 7 13 9 3 9 15 4 11 7 17 13 3 11 19 9 13 21 15 9 23 11 17 25 13 11 19 21 9 27 19 13 21 29 15 25 11 23 23 17 31 27 13 25 19 33 21 27 35 19 21 37 29 39 25 23 41 23 31 43 27 25 33 37 21 35 33 19 45 35 27 37 47 29 39 23 49 43 25 39 49 23 41 51 27 43 53 37 33 55 33 35 45 27 51 57 35 45 37 59 47 61 51 43 55 53 33 53 59 37 57 55 35 63 45 51 65 57 45 59 67 47 69 51 61 53 55 71 59 53 73 55 57 75 63 51 69 63 65 45 57 65 77 59 79 67 53 71 73 55 75 71 59 73 79 57 77 75 81 63 69 83 65 63 65 85 77 79 87 67 73 71 89 71 75 91 73 93 79 75 77 95 81 69 97 81 83 63 65 83 85 77 85 99 79 101 87 73 89 93 71 91 89 75 95 91 93 101 79 77 99 95 103 81 97 105 83 81 83 107 85 85 109 99 89 111 93 89 91 113 91 95 115 118 93 119 95 99 121 103 97 123 105 81 103 83 105 107 85 107 109 99 109 125 89 113 111 93 111 119 91 115 113 95 121 115 99 125 121 127 103 123 129 105 103 105 131 107 107 133 109 109 135 125 111 113 137 111 139 119 113 115 137 115 121 141 121 125 143 145 127 123 127 129 103 105 129 131 107 131 133 109 133 135 125 135 147 111 137 139 115 141 137 121 143 141 125 147 143 149 127 145 151 129 127 129 153 131 131 155 133 133 157 135 135 159 147 137 161 139 137 141 161 141 143 163 143 147 165 149 145 167 149 151 127 129 151 153 131 153 155 133 155 157 135 157 159 147 159 169 141 163 161 143 165 163 147 169 165 171 167 145 173 149 167 175 151 149 151 177 153 153 179 155 155 181 157 183 159 157 159 185 169 187 167 171 173 167 187 175 149 173 151 175 177 153 177 179 155 179 181 181 183 157 159 183 185 189 187 171 191 173 187 193 175 173 175 195 177 177 197 179 179 199 181 201 183 181 183 203 185 205 187 189 189 171 207 205 191 187 191 193 173 175 193 195 177 195 197 179 197 199 199 201 181 183 201 203 205 189 209 189 207 211 213 191 205 191 215 193 193 217 195 195 219 197 197 221 199 223 201 199 201 225 203 227 205 209 229 209 189 231 189 211 213 205 227 191 213 215 193 215 217 195 217 219 197 219 221 221 223 199 201 223 225 233 227 209 233 209 229 229 189 231 231 211 235 217 237 219 219 239 221 221 241 223 223 243 225 245 233 229 229 231 247 247 231 235 239 219 237 250 251 221 251 241 221 223 241 243 229 253 245 229 247 253 247 235 255 257 251 250 251 243 241 245 253 259 247 261 253 261 247 255 257 263 251 251 265 243 253 267 259 253 261 267 261 255 269 257 271 263 251 263 265 259 267 273 267 261 275 275 261 269 257 277 271 279 259 273 267 281 273 267 275 281 275 269 283 277 285 271 279 273 287 289 259 279 273 281 291 281 275 293 293 275 283 277 289 285 279 287 295 287 273 291 289 279 285 291 281 297 281 293 297 293 283 299 285 279 295 295 287 301 287 291 303 291 297 305 293 307 297 293 299 307 287 303 301 303 291 305 305 297 309 297 307 309 307 299 311 301 303 313 303 305 315 305 309 317 309 307 319 307 311 319 303 321 313 315 305 317 303 315 321 317 309 323 309 319 323 319 311 325 315 317 327 321 315 329 317 323 331 319 333 323 319 325 333 327 317 331 315 327 329 323 335 331 323 333 335 333 325 337 327 331 339 329 327 341 331 335 343 333 345 335 333 337 345 339 331 347 327 339 349 341 327 349 335 351 343 331 343 347 345 351 335 337 353 345 355 339 347 349 339 355 351 357 343 343 357 347 345 359 351 345 353 359 355 347 361 351 363 357 357 365 347 359 367 351 347 365 361 370 371 357 357 371 365 365 373 361 371 375 365 365 375 373 375 377 373</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID144\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID149\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID157\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID155\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID156\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID155\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID159\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID159\">0.6581289172172546 1.925639629364014 0.2436227351427078 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6566852927207947 1.912085294723511 0.2607377767562866 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6581289172172546 1.925639629364014 0.2436227351427078 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.6045059561729431 1.912085294723511 0.2496029883623123 0.6045059561729431 1.912085294723511 0.2496029883623123 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7500623464584351 1.90237021446228 0.2152038067579269 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6072992086410523 1.926056265830994 0.2301047742366791 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.7709382176399231 1.897327780723572 0.1462340503931046 0.7709382176399231 1.897327780723572 0.1462340503931046 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7521055936813355 1.90048885345459 0.08241678774356842 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5564971566200256 1.905122637748718 0.08657681941986084 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7218274474143982 1.905122637748718 0.05090289935469627 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7044316530227661 1.922605037689209 0.06054756790399551 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6581888198852539 1.925890922546387 0.04520654678344727</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID156\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID160\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID160\">0.06368183923200262 0.7816359070732991 0.620475569322218 0.4351652976529689 0.4515882744243441 0.7789089767880753 0.05563331340804202 0.5289120472471837 0.8468512152179009 -0.05563331340804202 -0.5289120472471837 -0.8468512152179009 -0.4351652976529689 -0.4515882744243441 -0.7789089767880753 -0.06368183923200262 -0.7816359070732991 -0.620475569322218 0.35795738869433 0.7264570419027571 0.5866231108207655 -0.35795738869433 -0.7264570419027571 -0.5866231108207655 -0.4503169078687535 0.4919917453143936 0.7450897966218713 0.4503169078687535 -0.4919917453143936 -0.7450897966218713 0.7476957669442501 0.4263151891498764 0.509123167410161 -0.7476957669442501 -0.4263151891498764 -0.509123167410161 -0.3587997901179157 0.7857770301638292 0.5038027088834004 0.3587997901179157 -0.7857770301638292 -0.5038027088834004 0.6026311348964107 0.7116602076906679 0.3610754270829568 -0.6026311348964107 -0.7116602076906679 -0.3610754270829568 -0.6459866396208748 0.5996255363186426 0.4723880583015519 0.6459866396208748 -0.5996255363186426 -0.4723880583015519 0.8950740664183305 0.4457805184040029 0.01105192457504562 -0.8950740664183305 -0.4457805184040029 -0.01105192457504562 -0.5614119746978663 0.7664293163683451 0.3120940526139411 0.5614119746978663 -0.7664293163683451 -0.3120940526139411 0.7799010414554628 0.6257727049031696 -0.01276273226448814 -0.7799010414554628 -0.6257727049031696 0.01276273226448814 -0.7167971047649803 0.6972385239267886 0.007768613321232372 0.7167971047649803 -0.6972385239267886 -0.007768613321232372 0.6469230332364384 0.6898812497274981 -0.3248914439356497 -0.6469230332364384 -0.6898812497274981 0.3248914439356497 -0.6184247596515268 0.7458918534232262 0.2473785755614576 0.6184247596515268 -0.7458918534232262 -0.2473785755614576 0.7666598717558816 0.5088704772459741 -0.3915143400013715 -0.7666598717558816 -0.5088704772459741 0.3915143400013715 -0.2427140865183295 0.9516308537911111 -0.1883841562296938 0.2427140865183295 -0.9516308537911111 0.1883841562296938 0.5180576795043453 0.5370752177731986 -0.665707481676783 -0.5180576795043453 -0.5370752177731986 0.665707481676783 -0.693515309669331 0.6221333811688795 -0.3632995613672408 0.693515309669331 -0.6221333811688795 0.3632995613672408 0.3920329437243987 0.7299265527327969 -0.5599262439378937 -0.3920329437243987 -0.7299265527327969 0.5599262439378937 -0.1956981726428444 0.9610455400549627 -0.1951760619664117 0.1956981726428444 -0.9610455400549627 0.1951760619664117 0.1488281615604248 0.9155662927981008 -0.3736154999708747 -0.1488281615604248 -0.9155662927981008 0.3736154999708747 -0.4360106190602546 0.6523043197237375 -0.619995011702873 0.4360106190602546 -0.6523043197237375 0.619995011702873 0.03258612750319111 0.8226944407409194 -0.5675491181107868 -0.03258612750319111 -0.8226944407409194 0.5675491181107868</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID158\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"72\" source=\"#ID161\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID161\">-0.14982045556514 -8.316798414086907 -0.6936716701330531 -8.287437175619747 -0.1790159423250831 -8.146215969184315 -0.2073074579882039 -8.749814709742097 -0.6387413596695191 -8.882757905347074 -0.7510917595116751 -8.719696277367525 -9.094852670127247 -7.002258959439575 -9.646040306013674 -7.061560931524517 -9.609601124940296 -6.891843081338203 4.721085827244991 -6.687977590734072 4.213867949560833 -6.83050779919227 4.578082471218702 -6.540515107334523 -9.313835603103531 -6.437850264840334 -9.813745990075313 -6.309196186018193 -9.262151981743834 -6.252280503657532 4.406837534938787 -6.898071876106249 4.199902154201657 -6.807940392341079 4.707186346096488 -6.665556309650214 -15.37345076151881 -3.135519892390655 -15.83382916344027 -2.888472771458424 -15.73231838591345 -2.716100072539287 8.062583101023312 -1.257353546819625 8.245269708836297 -0.7075691333339041 8.460145540014123 -0.7853569518880319 -14.92308371222783 -2.85581785835925 -15.1091631203076 -2.94715270933599 -15.38816787693552 -2.614286891640673 10.13229269872748 -2.030806223790802 9.867238671037802 -2.025538394937177 10.25339902581849 -1.547719574735519 -16.57918381797935 -0.8764531836845783 -16.66529393175382 -0.4999924201245851 -16.47462369575802 -0.414718120843968 10.0743158013063 4.409280263795306 10.33936934927102 4.403997518620375 10.47576653108455 3.978464122402 -17.77818355776621 0.1483719851793338 -17.66289384405605 -0.3364642109844385 -17.89867654398276 -0.310953882398821 8.827508930937732 3.245245550925936 8.676315342582571 3.755592063598506 9.086442611058098 3.329863466668702 -17.0822909434011 2.974866944420178 -17.12311202182214 2.528078589498817 -17.31803530042676 3.000595632608795 6.61052696030081 7.141648360596713 6.347926612480678 7.418860344056025 6.602126373538136 7.511937981641268 -18.55725727894121 1.672754872058794 -18.83697110777229 1.769865113222594 -18.77313520414998 2.139600909810604 4.897367782508628 7.375062005046844 4.655422672765788 7.290374409774107 4.626054596276275 7.660001697508108 -16.62922440995447 5.315904305007655 -16.98813222125273 4.881244282551317 -16.897735133379 5.430931382444905 2.470188841201698 10.31134153396707 1.875921553309959 10.55046187739263 2.108960131118924 10.64940622458298 -17.51227183145602 4.518021817074613 -17.68407501047069 4.693145375765543 -17.44223810768192 5.069544815263329 -0.9209516549029151 8.913201958803468 -0.9712984538805081 8.748772552573735 -1.374058429762926 9.056428466690454 -12.77253371674224 8.934130110648971 -12.65971399906374 8.731503734435394 -13.21232760142227 8.587336096869878 -10.11081142365707 8.082359692722404 -10.11751936113235 8.251409480792749 -9.621150051683159 8.384986354872035</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 6 9 10 10 1 11 12 12 0 13 8 14 14 15 10 16 6 17 16 18 12 19 8 20 18 21 10 22 14 23 16 24 20 25 12 26 22 27 18 28 14 29 24 30 20 31 16 32 18 33 22 34 26 35 16 36 28 37 24 38 30 39 18 40 26 41 28 42 32 43 24 44 34 45 30 46 26 47 32 48 36 49 24 50 38 51 34 52 26 53 32 54 40 55 36 56 42 57 34 58 38 59 40 60 44 61 36 62 46 63 42 64 38 65 44 66 40 67 42 68 42 69 46 70 44 71</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID157\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID158\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 4 7 5 3 5 9 4 11 7 9 5 13 7 11 15 9 13 17 15 11 19 13 21 17 15 19 23 17 21 25 27 23 19 25 29 17 27 19 31 25 33 29 27 31 35 25 37 33 27 35 39 37 41 33 39 35 43 37 45 41 39 43 47 43 41 45 45 47 43</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID157\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID162\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID165\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID163\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID164\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID163\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID166\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID166\">0.6581888198852539 1.925890922546387 0.04520654678344727 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6591432690620422 1.944134831428528 0.1425205767154694 0.6591432690620422 1.944134831428528 0.1425205767154694 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6581289172172546 1.925639629364014 0.2436227351427078</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID164\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID167\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID167\">0.03936908541704142 0.982044718226688 -0.1844945704255019 0.1654102896355377 0.972487807810053 -0.1640332275591905 0.05154924676621023 0.9986704535612888 -1.848042230411276e-005 -0.05154924676621023 -0.9986704535612888 1.848042230411276e-005 -0.1654102896355377 -0.972487807810053 0.1640332275591905 -0.03936908541704142 -0.982044718226688 0.1844945704255019 -0.07133888125878626 0.9829625270788537 -0.169397267922179 0.07133888125878626 -0.9829625270788537 0.169397267922179 0.2344210378311746 0.9677133534895852 -0.09261556294757618 -0.2344210378311746 -0.9677133534895852 0.09261556294757618 -0.1253412291305374 0.9875267950369973 -0.09529116099619422 0.1253412291305374 -0.9875267950369973 0.09529116099619422 0.2642768599222439 0.9643251834938845 0.01531932730653969 -0.2642768599222439 -0.9643251834938845 -0.01531932730653969 -0.1531152101238801 0.9876602560594644 0.03290822130218187 0.1531152101238801 -0.9876602560594644 -0.03290822130218187 0.2333223649560231 0.9667716409934942 0.1044665888314273 -0.2333223649560231 -0.9667716409934942 -0.1044665888314273 -0.1453187436904175 0.983128098322856 0.1110927766343233 0.1453187436904175 -0.983128098322856 -0.1110927766343233 0.1663135392735206 0.9732003198707487 0.1588110325443019 -0.1663135392735206 -0.9732003198707487 -0.1588110325443019 -0.08898286512452604 0.9845880526293398 0.1505603411718863 0.08898286512452604 -0.9845880526293398 -0.1505603411718863 0.04190944451044767 0.9827370906126011 0.1801982497004504 -0.04190944451044767 -0.9827370906126011 -0.1801982497004504</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 6 2 3 7 11 2 8 12 13 9 3 10 2 14 15 3 11 2 12 16 17 13 3 14 2 18 19 3 15 2 16 20 21 17 3 18 2 22 23 3 19 2 20 24 25 21 3 22 2 24 25 3 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID165\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID168\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID171\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID169\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID170\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID169\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID172\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID172\">0.5611516833305359 1.912085294723511 0.2021596431732178 0.569970428943634 1.82999062538147 0.2332505583763123 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.569970428943634 1.82999062538147 0.2332505583763123 0.5611516833305359 1.912085294723511 0.2021596431732178</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID170\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID173\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID173\">-0.9632636129987122 -0.001769357604049535 0.2685518222733488 -0.9632636129987122 -0.001769357604049535 0.2685518222733488 -0.9632636129987122 -0.001769357604049535 0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID171\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID174\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID177\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID175\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID176\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID175\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"204\" source=\"#ID178\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"612\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID178\">0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6078575253486633 1.062604069709778 0.02048102393746376 0.6078575253486633 1.062604069709778 0.02048102393746376 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6078575253486633 1.062604069709778 0.02048102393746376 0.6078575253486633 1.062604069709778 0.02048102393746376 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5737410187721252 1.083053588867188 0.3171393871307373 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7976231575012207 1.134773850440979 0.09562528133392334 0.6100444793701172 1.132825136184692 0.09579920023679733 0.6100444793701172 1.132825136184692 0.09579920023679733 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6100444793701172 1.132825136184692 0.09579920023679733 0.6100444793701172 1.132825136184692 0.09579920023679733 0.5641165971755981 1.231308460235596 0.2951163649559021 0.5641165971755981 1.231308460235596 0.2951163649559021 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7976231575012207 1.226557493209839 0.1501588523387909 0.7976231575012207 1.226557493209839 0.1501588523387909 0.6150623559951782 1.227490305900574 0.1535092145204544 0.6150623559951782 1.227490305900574 0.1535092145204544 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6150623559951782 1.227490305900574 0.1535092145204544 0.6150623559951782 1.227490305900574 0.1535092145204544 0.5558203458786011 1.338033199310303 0.2760796546936035 0.5558203458786011 1.338033199310303 0.2760796546936035 0.798487663269043 0.4255831241607666 0.01916016265749931 0.798487663269043 0.4255831241607666 0.01916016265749931 0.688839852809906 0.4193950891494751 0.3588072657585144 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.688839852809906 0.4193950891494751 0.3588072657585144 0.7946488857269287 1.336279630661011 0.1839811652898789 0.7946488857269287 1.336279630661011 0.1839811652898789 0.6001907587051392 1.335630416870117 0.1818975508213043 0.6001907587051392 1.335630416870117 0.1818975508213043 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.5483854413032532 1.437644124031067 0.2575764954090118 0.5483854413032532 1.437644124031067 0.2575764954090118 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7952814698219299 1.430078029632568 0.1879792362451553 0.7952814698219299 1.430078029632568 0.1879792362451553 0.6001907587051392 1.430773377418518 0.1891794055700302 0.6001907587051392 1.430773377418518 0.1891794055700302 0.6024033427238464 1.530340790748596 0.1673334091901779 0.6024033427238464 1.530340790748596 0.1673334091901779 0.7969198822975159 1.529133081436157 0.1681521981954575 0.7969198822975159 1.529133081436157 0.1681521981954575 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5255792737007141 1.631603479385376 0.2142343670129776 0.5255792737007141 1.631603479385376 0.2142343670129776 0.7910681962966919 1.631798982620239 0.123851403594017 0.7910681962966919 1.631798982620239 0.123851403594017 0.5982099771499634 1.63359522819519 0.123851403594017 0.5982099771499634 1.63359522819519 0.123851403594017 0.5107629299163818 1.737711548805237 0.1886539459228516 0.5107629299163818 1.737711548805237 0.1886539459228516 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7916035652160645 1.673280954360962 0.08852987736463547 0.600138247013092 1.674088478088379 0.08723254501819611 0.600138247013092 1.674088478088379 0.08723254501819611 0.600138247013092 1.703011274337769 0.06053215265274048 0.600138247013092 1.703011274337769 0.06053215265274048 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7907845973968506 1.703024983406067 0.0606619194149971 0.6017862558364868 1.727086067199707 0.03279396891593933 0.6017862558364868 1.727086067199707 0.03279396891593933 0.4955552816390991 1.831614017486572 0.16129469871521 0.4955552816390991 1.831614017486572 0.16129469871521 0.7930033206939697 1.725906729698181 0.03279396891593933 0.7930033206939697 1.725906729698181 0.03279396891593933 0.6035350561141968 1.760315418243408 -0.0219960268586874 0.6035350561141968 1.760315418243408 -0.0219960268586874 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4784936010837555 1.90060830116272 0.1212251707911491 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.601814329624176 1.775644421577454 -0.07519237697124481 0.601814329624176 1.775644421577454 -0.07519237697124481 0.4961572587490082 1.913546085357666 0.03562422469258308 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4961572587490082 1.913546085357666 0.03562422469258308 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.518811047077179 1.913546085357666 0.007866731844842434 0.518811047077179 1.913546085357666 0.007866731844842434 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.601814329624176 1.788490056991577 -0.1259496361017227 0.601814329624176 1.788490056991577 -0.1259496361017227 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.601814329624176 1.792240262031555 -0.1946214735507965 0.601814329624176 1.792240262031555 -0.1946214735507965 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.6047999858856201 1.788490056991577 -0.264063835144043 0.6047999858856201 1.788490056991577 -0.264063835144043 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.424839973449707 1.892464518547058 -0.2987582087516785 0.424839973449707 1.892464518547058 -0.2987582087516785 0.602636456489563 1.761277794837952 -0.2947392761707306 0.602636456489563 1.761277794837952 -0.2947392761707306 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.5888708233833313 1.761277794837952 -0.3425095975399017 0.5888708233833313 1.761277794837952 -0.3425095975399017 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.5730990171432495 1.778753638267517 -0.3605347573757172</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID176\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"204\" source=\"#ID179\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"612\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID179\">-0.002031866627481819 0.7041738060751083 -0.7100247336225014 -0.003154768045807751 0.7279228439330888 -0.6856517926170259 0.005578171167189729 0.952967993764047 -0.3030196146584522 -0.005578171167189729 -0.952967993764047 0.3030196146584522 0.003154768045807751 -0.7279228439330888 0.6856517926170259 0.002031866627481819 -0.7041738060751083 0.7100247336225014 -0.009873866414612846 0.2940160093358328 -0.9557494928150671 0.009873866414612846 -0.2940160093358328 0.9557494928150671 0.003893238134685696 0.9526977033105609 -0.3038946014716437 -0.003893238134685696 -0.9526977033105609 0.3038946014716437 -0.008412856373111871 0.2958381366472996 -0.9552010368255988 0.008412856373111871 -0.2958381366472996 0.9552010368255988 -0.9948075727464791 -0.08790104295397494 -0.05129619726512105 -0.9967250369421153 0.07969187169170205 -0.01372611813341505 -0.9641576495820019 0.2638333602880564 0.02814222364388343 0.9641576495820019 -0.2638333602880564 -0.02814222364388343 0.9967250369421153 -0.07969187169170205 0.01372611813341505 0.9948075727464791 0.08790104295397494 0.05129619726512105 0.002151779979543105 0.9027479757737718 -0.4301644593400033 -0.002151779979543105 -0.9027479757737718 0.4301644593400033 -0.008621931941022816 0.2207983455641449 -0.9752813711364228 0.008621931941022816 -0.2207983455641449 0.9752813711364228 -0.9998659129083529 -0.004779808995791442 -0.01566236348415073 0.9998659129083529 0.004779808995791442 0.01566236348415073 -0.9960924026966632 0.08616161503151285 -0.0193933335233983 0.9960924026966632 -0.08616161503151285 0.0193933335233983 -0.003991031751673676 0.9093357713540832 -0.4160438998488402 0.003991031751673676 -0.9093357713540832 0.4160438998488402 -0.005673303817165464 0.2264395815461192 -0.9740086906865957 0.005673303817165464 -0.2264395815461192 0.9740086906865957 -0.9905917461751002 -0.136308881204913 -0.01216064613541545 0.9905917461751002 0.136308881204913 0.01216064613541545 -0.9968271004583693 0.04460997381382314 -0.06592178720340064 0.9968271004583693 -0.04460997381382314 0.06592178720340064 -0.004720641850529348 0.794362249212256 -0.6074259893739855 0.004720641850529348 -0.794362249212256 0.6074259893739855 -0.004096609442663096 0.1253146842323055 -0.9921085866510944 0.004096609442663096 -0.1253146842323055 0.9921085866510944 -0.9980320214358647 -0.06250647920590244 0.005002424004814591 0.9980320214358647 0.06250647920590244 -0.005002424004814591 -0.008661296070234087 0.8008066651523571 -0.598860306747696 0.008661296070234087 -0.8008066651523571 0.598860306747696 -0.895673926454469 0.000862505034626854 0.4447105503073879 0.895673926454469 -0.000862505034626854 -0.4447105503073879 -0.005601653918102343 0.1304529245089368 -0.9914386798791176 0.005601653918102343 -0.1304529245089368 0.9914386798791176 -0.9852520874831436 -0.1710602304784259 -0.004089212488466666 0.9852520874831436 0.1710602304784259 0.004089212488466666 -0.006660261559601748 0.6261558675591958 -0.7796694622961377 0.006660261559601748 -0.6261558675591958 0.7796694622961377 -0.9759873012105041 0.1309215835370071 -0.1740928684352089 0.9759873012105041 -0.1309215835370071 0.1740928684352089 -0.01726204262242443 0.07004637810473909 -0.9973943687423293 0.01726204262242443 -0.07004637810473909 0.9973943687423293 -0.9827040135866452 -0.1847034824060137 0.01332085837286729 0.9827040135866452 0.1847034824060137 -0.01332085837286729 -0.009504067604324451 0.6333563698512222 -0.773801900661826 0.009504067604324451 -0.6333563698512222 0.773801900661826 -0.9606480777099047 0.006747156029087368 0.277686417884966 0.9606480777099047 -0.006747156029087368 -0.277686417884966 -0.02864687218974323 0.06098751536159313 -0.9977273573896649 0.02864687218974323 -0.06098751536159313 0.9977273573896649 -0.9710427981079228 -0.2387850133832192 0.007589573526315395 0.9710427981079228 0.2387850133832192 -0.007589573526315395 -0.01226787875901361 0.4089424243897999 -0.9124777217471924 0.01226787875901361 -0.4089424243897999 0.9124777217471924 -0.9258013446998226 0.1301689880839249 -0.3548913984491697 0.9258013446998226 -0.1301689880839249 0.3548913984491697 -0.009719797712985413 -0.9998397877975792 0.01503077740206486 0.0003328631328224821 -0.9999540640432325 0.009579092105094415 -0.01129806292066895 -0.9997986181160402 0.01658544504970744 0.01129806292066895 0.9997986181160402 -0.01658544504970744 -0.0003328631328224821 0.9999540640432325 -0.009579092105094415 0.009719797712985413 0.9998397877975792 -0.01503077740206486 -0.9844962349256925 -0.1748435336383345 -0.01403218308020972 0.9844962349256925 0.1748435336383345 0.01403218308020972 -0.005829761127499755 0.3941442088955652 -0.9190301172863082 0.005829761127499755 -0.3941442088955652 0.9190301172863082 -0.9125354682186676 -0.113071856984082 -0.3930569607590082 0.9125354682186676 0.113071856984082 0.3930569607590082 0.008795837783968767 -0.9999350760969271 0.007244089225746932 -0.008795837783968767 0.9999350760969271 -0.007244089225746932 -0.05844106786614663 -0.9982849747213407 -0.00342794869806715 -0.07339287618189742 -0.9972986376699625 -0.002985469374419037 0.07339287618189742 0.9972986376699625 0.002985469374419037 0.05844106786614663 0.9982849747213407 0.00342794869806715 0.001709746850782575 0.1630913484666589 -0.9866094915522722 -0.001709746850782575 -0.1630913484666589 0.9866094915522722 -0.5477059616495917 0.06663800159267526 -0.8340129233514493 0.5477059616495917 -0.06663800159267526 0.8340129233514493 0.07999201948807029 -0.9966969330856842 -0.01401785988699024 -0.07999201948807029 0.9966969330856842 0.01401785988699024 0.01146984438351619 -0.999901694502409 -0.008064986114630322 -0.01146984438351619 0.999901694502409 0.008064986114630322 -0.8175794994995225 -0.1036249520646039 -0.5664147167118089 0.8175794994995225 0.1036249520646039 0.5664147167118089 0.1171617741696312 -0.9928591628594425 -0.02244552069949391 -0.1171617741696312 0.9928591628594425 0.02244552069949391 -0.0005074472560596779 -0.07314127026300465 -0.9973214612558964 0.0005074472560596779 0.07314127026300465 0.9973214612558964 -0.4671844489454682 -0.05409992846637629 -0.8825031945570806 0.4671844489454682 0.05409992846637629 0.8825031945570806 -0.4157906930759787 -0.2893035753226083 -0.8622189634060209 0.4157906930759787 0.2893035753226083 0.8622189634060209 -0.001251635271873887 -0.2989057631075787 -0.9542818127734711 0.001251635271873887 0.2989057631075787 0.9542818127734711 -0.7357190838004971 -0.2286602149856994 -0.6375201454185199 0.7357190838004971 0.2286602149856994 0.6375201454185199 -0.7444348412862022 -0.2640622869040579 -0.6132600392282103 0.7444348412862022 0.2640622869040579 0.6132600392282103 -0.003126673932310979 -0.5245017008971007 -0.851403658475913 0.003126673932310979 0.5245017008971007 0.851403658475913 -0.4536446921904907 -0.4631745362896014 -0.7613644608072456 0.4536446921904907 0.4631745362896014 0.7613644608072456 -0.8074366296485683 -0.3017917233898638 -0.5069199589630861 0.8074366296485683 0.3017917233898638 0.5069199589630861 -0.001292295406336159 -0.6679956481798597 -0.7441640571710996 0.001292295406336159 0.6679956481798597 0.7441640571710996 -0.4413671517616215 -0.6003898332880783 -0.6668786137147805 0.4413671517616215 0.6003898332880783 0.6668786137147805 -0.4526042059574229 -0.6352574959571411 -0.6257773937910457 0.4526042059574229 0.6352574959571411 0.6257773937910457 0.001171496973536925 -0.7300813933283943 -0.683359193038706 -0.001171496973536925 0.7300813933283943 0.683359193038706 -0.4748306978382566 -0.694060433707126 -0.5411246831855952 0.4748306978382566 0.694060433707126 0.5411246831855952 -0.8464327417927822 -0.3623231382338141 -0.3902224456916258 0.8464327417927822 0.3623231382338141 0.3902224456916258 -0.002717372553585746 -0.8075922943265442 -0.5897349421823276 0.002717372553585746 0.8075922943265442 0.5897349421823276 -0.5001653078149472 -0.78536585523471 -0.3647398227364699 0.5001653078149472 0.78536585523471 0.3647398227364699 0.0003509594575061786 -0.9195500935760502 -0.3929726481979843 -0.0003509594575061786 0.9195500935760502 0.3929726481979843 -0.795359980458199 -0.595955913272563 -0.110630244151401 0.795359980458199 0.595955913272563 0.110630244151401 -0.00256579025065002 -0.970557316593617 -0.2408566210985008 0.00256579025065002 0.970557316593617 0.2408566210985008 -0.6770060329921882 -0.7260985289165722 0.120182185024945 0.6770060329921882 0.7260985289165722 -0.120182185024945 -0.5130701491301604 -0.8343894420681041 -0.2013784522654617 0.5130701491301604 0.8343894420681041 0.2013784522654617 -0.5045067427627233 -0.02904912283269602 -0.8629189388173135 -0.3740113601256721 0.08517896410713484 -0.9235042211980302 0.3740113601256721 -0.08517896410713484 0.9235042211980302 0.5045067427627233 0.02904912283269602 0.8629189388173135 -0.8761959573560605 -0.4814021187707525 -0.02307908914855814 0.8761959573560605 0.4814021187707525 0.02307908914855814 -0.004738763320069978 -0.9886901052970992 -0.1498980313740208 0.004738763320069978 0.9886901052970992 0.1498980313740208 -0.8175577526278948 -0.3652868797157938 -0.4451570696119803 0.8175577526278948 0.3652868797157938 0.4451570696119803 -0.8246365967014818 -0.5481839684026157 0.1395307140630971 0.8246365967014818 0.5481839684026157 -0.1395307140630971 -0.4805225420358854 -0.8689360124465977 -0.1185254945941055 0.4805225420358854 0.8689360124465977 0.1185254945941055 -0.0001018243583388035 -0.9999807029784149 0.00621154591027403 0.0001018243583388035 0.9999807029784149 -0.00621154591027403 -0.7326244611747069 -0.6427575554192596 0.223884175054709 0.7326244611747069 0.6427575554192596 -0.223884175054709 -0.3573930893115141 -0.9320420580026236 0.05973091181797268 0.3573930893115141 0.9320420580026236 -0.05973091181797268 0.000312141434426454 -0.9401959467122115 0.3406339448053481 -0.000312141434426454 0.9401959467122115 -0.3406339448053481 -0.5938783159957045 -0.6788810746920075 0.431774283874261 0.5938783159957045 0.6788810746920075 -0.431774283874261 -0.2810885037071276 -0.8836044828356823 0.3744761287403708 0.2810885037071276 0.8836044828356823 -0.3744761287403708 -0.306646385949856 -0.3948509445278647 0.8660604630101439 0.306646385949856 0.3948509445278647 -0.8660604630101439 -0.535498682530136 -0.8308301576049837 0.151533528377606 0.535498682530136 0.8308301576049837 -0.151533528377606 0.0008582238826964657 -0.9269981380297792 0.3750649484303885 -0.0008582238826964657 0.9269981380297792 -0.3750649484303885 -0.1704952431820977 -0.2412252931725145 0.9553751776062177 0.1704952431820977 0.2412252931725145 -0.9553751776062177 -0.5540921946255204 -0.8216202647571059 0.1338730009954866 0.5540921946255204 0.8216202647571059 -0.1338730009954866 -0.5143604385851316 -0.7538249196936183 0.4088781354724427 0.5143604385851316 0.7538249196936183 -0.4088781354724427 -0.1380026630778748 -0.9128747444940201 0.3842069310259667 0.1380026630778748 0.9128747444940201 -0.3842069310259667 -0.435850001315338 -0.4621906220367008 0.772278839056689 0.435850001315338 0.4621906220367008 -0.772278839056689 0.03773339099784692 -0.9621256170329681 -0.2699823850786089 -0.03773339099784692 0.9621256170329681 0.2699823850786089 -0.3481885838874076 -0.2117944700509886 0.913185530166955 0.3481885838874076 0.2117944700509886 -0.913185530166955 -0.01286325317847039 -0.9648904002076516 -0.2623376684824051 0.01286325317847039 0.9648904002076516 0.2623376684824051 -0.1095095532543335 -0.9934846951634816 0.0315565876159114 0.1095095532543335 0.9934846951634816 -0.0315565876159114 0.1087422852010516 -0.9469574157884161 -0.3024016668151454 -0.1087422852010516 0.9469574157884161 0.3024016668151454 0.06106025898700137 -0.8594251928277874 -0.5076021894213622 -0.06106025898700137 0.8594251928277874 0.5076021894213622 2.065922027485135e-016 -0.7503520187156011 -0.6610384618230791 -2.065922027485135e-016 0.7503520187156011 0.6610384618230791 -2.234546919098456e-016 -0.7503520187156002 -0.6610384618230801 -0.006610675482426474 -0.7456954604641577 -0.6662541401093234 0.006610675482426474 0.7456954604641577 0.6662541401093234 2.234546919098456e-016 0.7503520187156002 0.6610384618230801 -0.02829408732694985 -0.7299337508869919 -0.6829320346406237 0.02829408732694985 0.7299337508869919 0.6829320346406237</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"212\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 0 2 8 9 3 5 0 10 6 7 11 5 12 13 14 15 16 17 8 2 18 19 3 9 10 20 6 7 21 11 12 22 13 16 23 17 12 14 24 25 15 17 26 8 18 19 9 27 10 28 20 21 29 11 30 22 12 17 23 31 12 24 32 33 25 17 26 18 34 35 19 27 28 36 20 21 37 29 30 38 22 23 39 31 40 26 34 35 27 41 12 32 42 43 33 17 28 44 36 37 45 29 46 38 30 31 39 47 40 34 48 49 35 41 42 32 50 51 33 43 44 52 36 37 53 45 46 54 38 39 55 47 40 48 56 57 49 41 42 50 58 59 51 43 44 60 52 53 61 45 62 54 46 47 55 63 64 56 48 49 57 65 50 66 58 59 67 51 68 69 70 71 72 73 74 62 46 47 63 75 76 56 64 65 57 77 58 66 78 79 67 59 70 69 80 81 72 71 82 69 83 84 72 85 86 76 64 65 77 87 66 88 78 79 89 67 80 69 90 91 72 81 92 69 82 85 72 93 88 76 86 87 77 89 78 88 94 95 89 79 90 69 96 97 72 91 96 69 92 93 72 97 88 86 98 99 87 89 88 100 94 95 101 89 100 88 98 99 89 101 94 100 102 103 101 95 100 98 104 105 99 101 94 102 106 107 103 95 102 100 104 105 101 103 106 102 108 109 103 107 110 102 104 105 103 111 108 102 112 113 103 109 112 102 110 111 103 113 108 112 114 115 113 109 112 110 116 117 111 113 112 118 114 115 119 113 118 112 116 117 113 119 118 120 114 115 121 119 122 118 116 117 119 123 120 124 114 115 125 121 120 118 122 123 119 121 114 124 126 127 125 115 128 124 120 121 125 129 128 120 122 123 121 129 124 130 126 127 131 125 128 132 124 125 133 129 132 130 124 125 131 133 126 130 134 135 131 127 136 130 132 133 131 137 130 138 134 135 139 131 136 140 130 131 141 137 142 143 130 131 144 145 130 140 146 147 141 131 136 148 140 141 149 137 142 130 150 151 131 145 150 130 146 147 131 151 146 140 152 153 141 147 148 154 140 141 155 149 140 154 152 153 155 141 148 156 154 155 157 149 152 154 158 159 155 153 156 160 154 155 161 157 154 160 158 159 161 155 156 162 160 161 163 157 160 164 158 159 165 161 162 166 160 161 167 163 160 168 164 165 169 161 166 170 160 161 171 167 162 172 166 167 173 163 174 168 160 161 169 175 170 176 160 161 177 171 178 170 166 167 171 179 172 180 166 167 181 173 182 178 166 167 179 183 180 182 166 167 183 181 172 184 180 181 185 173 186 182 180 181 183 187 184 188 180 181 189 185 188 190 180 181 191 189 184 192 188 189 193 185 192 194 188 189 195 193 194 196 188 189 197 195 198 199 188 189 200 201 199 202 188 189 203 200</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID177\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID180\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID183\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID181\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID182\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID181\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"102\" source=\"#ID185\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"306\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID185\">0.5822945237159729 1.93234646320343 -0.1336532384157181 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.5886632204055786 1.934478163719177 -0.148460179567337 0.5886632204055786 1.934478163719177 -0.148460179567337 0.5886632204055786 1.934720396995544 -0.1188463941216469 0.5886632204055786 1.934720396995544 -0.1188463941216469 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.5886632204055786 1.918007493019104 -0.148460179567337 0.5886632204055786 1.918007493019104 -0.148460179567337 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1147843822836876 0.62096107006073 1.943698525428772 -0.1147843822836876 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.6060627698898315 1.933767676353455 -0.1592995822429657 0.6060627698898315 1.933767676353455 -0.1592995822429657 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.6060627698898315 1.933767676353455 -0.1080069318413734 0.6060627698898315 1.933767676353455 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.5886632204055786 1.918007493019104 -0.148460179567337 0.6624386310577393 1.923469066619873 -0.1336532384157181 0.6624386310577393 1.923469066619873 -0.1336532384157181 0.5886632204055786 1.918007493019104 -0.148460179567337 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1525221467018127 0.62096107006073 1.943698525428772 -0.1525221467018127 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.930925488471985 -0.1632670909166336 0.6624386310577393 1.930925488471985 -0.1632670909166336 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6624386310577393 1.930925488471985 -0.1040394529700279 0.6624386310577393 1.930925488471985 -0.1040394529700279 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.70525062084198 1.934461951255798 -0.1147843822836876 0.70525062084198 1.934461951255798 -0.1147843822836876 0.738028347492218 1.888520956039429 -0.148460179567337 0.738028347492218 1.888520956039429 -0.148460179567337 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.920978307723999 -0.1592995822429657 0.7206282615661621 1.920978307723999 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.7206282615661621 1.920978307723999 -0.1080069318413734 0.7206282615661621 1.920978307723999 -0.1080069318413734 0.744395911693573 1.885544061660767 -0.1336532384157181 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.888520956039429 -0.148460179567337 0.738028347492218 1.888520956039429 -0.148460179567337 0.70525062084198 1.934461951255798 -0.1525222510099411 0.70525062084198 1.934461951255798 -0.1525222510099411 0.738028347492218 1.888520956039429 -0.1188463941216469 0.738028347492218 1.888520956039429 -0.1188463941216469 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.920978307723999 -0.148460179567337 0.738028347492218 1.920978307723999 -0.148460179567337 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.888520956039429 -0.1188463941216469 0.738028347492218 1.920978307723999 -0.1188463941216469 0.738028347492218 1.920978307723999 -0.1188463941216469 0.738028347492218 1.888520956039429 -0.1188463941216469 0.744395911693573 1.920978307723999 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID182\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"102\" source=\"#ID186\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"306\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID186\">-0.4525870160939107 0.8917055352646315 0.005121644426094273 -0.268503656107856 0.9630575363932906 0.02063899834778602 -0.1975743797487748 0.9600174138981226 0.1983202699656487 0.1975743797487748 -0.9600174138981226 -0.1983202699656487 0.268503656107856 -0.9630575363932906 -0.02063899834778602 0.4525870160939107 -0.8917055352646315 -0.005121644426094273 -0.6836914411438895 0.4960175374375364 -0.5352874142561113 0.6836914411438895 -0.4960175374375364 0.5352874142561113 -0.6826789355655409 0.5175040650256956 0.5158866286472065 0.6826789355655409 -0.5175040650256956 -0.5158866286472065 -0.9999982786554844 -2.453531840315205e-017 0.00185544767322905 -0.7628108367871563 -5.107898362146584e-017 -0.6466217033784732 0.7628108367871563 5.107898362146584e-017 0.6466217033784732 0.9999982786554844 2.453531840315205e-017 -0.00185544767322905 -0.188685970994036 0.9568090513440232 -0.2211651953092718 0.188685970994036 -0.9568090513440232 0.2211651953092718 -0.9999999999992952 3.715457857115628e-018 1.187155444384655e-006 0.9999999999992952 -3.715457857115628e-018 -1.187155444384655e-006 -0.04316329546441134 0.9022464711878826 0.4290550490947117 0.04316329546441134 -0.9022464711878826 -0.4290550490947117 -0.3190221129661848 -5.169595915164021e-017 -0.9477472719235812 0.3190221129661848 5.169595915164021e-017 0.9477472719235812 -0.3015180340726529 0.4026939942020862 -0.8642478939300533 0.3015180340726529 -0.4026939942020862 0.8642478939300533 -0.7628108229850096 -4.387034181854362e-018 0.6466217196606778 0.7628108229850096 4.387034181854362e-018 -0.6466217196606778 -0.2966889948970395 0.3930087617907217 0.8703561072702991 0.2966889948970395 -0.3930087617907217 -0.8703561072702991 0.07444731930745059 -0.9972153159559796 -0.004382952286991633 0.07003499471041809 -0.9973648724161474 0.01893174017975829 -0.1719345689301247 -0.9851083717067944 1.534270210203556e-009 0.1719345689301247 0.9851083717067944 -1.534270210203556e-009 -0.07003499471041809 0.9973648724161474 -0.01893174017975829 -0.07444731930745059 0.9972153159559796 0.004382952286991633 0.06798922594315633 -0.9976860554080358 -6.586151547304128e-008 -0.06798922594315633 0.9976860554080358 6.586151547304128e-008 -0.05077244356092967 0.9044995626227409 -0.4234414955931014 0.05077244356092967 -0.9044995626227409 0.4234414955931014 0.0700349909810802 -0.9973648699915734 -0.01893188170710432 -0.0700349909810802 0.9973648699915734 0.01893188170710432 0.09074013728241166 0.8894532731297745 0.447927563792071 -0.09074013728241166 -0.8894532731297745 -0.447927563792071 -0.1684282001120586 -0.9857139247301988 3.261984415863724e-017 0.1684282001120586 0.9857139247301988 -3.261984415863724e-017 0.005344218692808919 4.599723035563907e-016 -0.9999857195613163 -0.005344218692808919 -4.599723035563907e-016 0.9999857195613163 0.03778722120653656 0.3316848252043232 -0.9426331750170188 -0.03778722120653656 -0.3316848252043232 0.9426331750170188 0.07444731259877206 -0.9972153164940292 0.004382943820520862 -0.07444731259877206 0.9972153164940292 -0.004382943820520862 -0.3190230296533958 -3.387307016387933e-007 0.947746963356071 0.3190230296533958 3.387307016387933e-007 -0.947746963356071 0.03242818957297756 0.331514159442729 0.9428927694123016 -0.03242818957297756 -0.331514159442729 -0.9428927694123016 -0.428391047419486 -0.8995381360362913 -0.08551170859707016 0.428391047419486 0.8995381360362913 0.08551170859707016 0.096620987895277 0.8889263129942582 -0.4477436708258138 -0.096620987895277 -0.8889263129942582 0.4477436708258138 -0.1684281857940404 -0.985713927176708 7.297025297092771e-018 0.1684281857940404 0.985713927176708 -7.297025297092771e-018 0.2484753200447397 0.8848239865712221 0.3941402391495622 -0.2484753200447397 -0.8848239865712221 -0.3941402391495622 -0.4241534822457019 -0.9051263251428462 -0.02898549692952567 0.4241534822457019 0.9051263251428462 0.02898549692952567 0.3702863131757861 2.794849320865508e-017 -0.9289176746486653 -0.3702863131757861 -2.794849320865508e-017 0.9289176746486653 0.3291556278174122 0.3380571823925383 -0.8816881047790899 -0.3291556278174122 -0.3380571823925383 0.8816881047790899 -0.4283909470720873 -0.8995381996175712 0.08551154246918034 0.4283909470720873 0.8995381996175712 -0.08551154246918034 0.00534420647697881 -7.185503873166344e-006 0.9999857196007852 -0.00534420647697881 7.185503873166344e-006 -0.9999857196007852 0.3421972052650621 0.3781976168594891 0.860155587850584 -0.3421972052650621 -0.3781976168594891 -0.860155587850584 -0.4199577750881749 -0.9075436447592974 3.995179379812722e-009 0.4199577750881749 0.9075436447592974 -3.995179379812722e-009 0.8007728670257135 -7.155639727126521e-018 -0.598968125558797 -0.8007728670257135 7.155639727126521e-018 0.598968125558797 0.2265426645478447 0.8870897369980587 -0.4021818241197354 -0.2265426645478447 -0.8870897369980587 0.4021818241197354 -0.4241534419131434 -0.9051263461530197 0.02898543104591447 0.4241534419131434 0.9051263461530197 -0.02898543104591447 0.370287246724113 2.791847602566496e-017 0.9289173025159322 -0.370287246724113 -2.791847602566496e-017 -0.9289173025159322 0.3251771624720898 0.9178173352138632 0.2277523922761804 -0.3251771624720898 -0.9178173352138632 -0.2277523922761804 0.9999999999994651 -1.021213629580521e-017 1.034288983214875e-006 0.6891861070879743 0.4665571033273914 -0.5543888338807671 -0.6891861070879743 -0.4665571033273914 0.5543888338807671 -0.9999999999994651 1.021213629580521e-017 -1.034288983214875e-006 0.8007725555961954 1.082289136176546e-017 0.5989685419151311 0.6796603680121492 0.4735256808583966 0.5602099728862223 -0.6796603680121492 -0.4735256808583966 -0.5602099728862223 -0.8007725555961954 -1.082289136176546e-017 -0.5989685419151311 0.9999999999992956 -9.014564059030779e-018 1.187010242994903e-006 -0.9999999999992956 9.014564059030779e-018 -1.187010242994903e-006 0.313686535197523 0.9395316905111851 -0.1374080061749221 -0.313686535197523 -0.9395316905111851 0.1374080061749221 0.3230550412313637 0.9463801774828378 -1.598246447941602e-006 -0.3230550412313637 -0.9463801774828378 1.598246447941602e-006 0.4168035059478051 0.908996610240611 -8.345898481386191e-007 -0.4168035059478051 -0.908996610240611 8.345898481386191e-007</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID184\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"176\" source=\"#ID187\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"352\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID187\">-14.26092285976243 -3.267336504556862 -14.50122065856141 -3.267336504556862 -14.54251926898909 -3.17988706781201 -14.26092285976243 -0.1936368490969575 -14.32712549384918 -0.3104567334225453 -14.50122065856142 -0.1936368490969575 -13.28435324929342 -1.428885536193822 -13.5667973286864 -1.343144519761906 -13.35215909967177 -1.312346726885018 -19.3234646320343 -2.775774186125142 -19.18007493019104 -2.902572994601767 -19.34478163719177 -2.902572994601767 -13.11902751273521 0.8971882525866644 -13.33458909656133 0.9284211431238822 -13.29162681686096 1.015373793926696 -19.18007493019104 0.8440785969051348 -19.3234646320343 0.8440785969051348 -19.34720396995544 0.9708767054351376 -11.92267352558833 -6.826298116710207 -12.13631873394668 -6.86110752723275 -12.25721177027786 -6.790163260846058 -19.34478163719177 -4.548037813701737 -19.18007493019104 -4.548037813701737 -19.19373035430908 -4.709301980786576 -19.18007493019104 -2.775774186125141 -19.18007493019104 -2.902572994601766 -19.3234646320343 -2.775774186125141 -11.91381290526125 5.517748780580218 -12.07582188985228 5.418781031966613 -12.12824349977981 5.553476189529911 -19.18007493019104 0.9708767054351369 -19.18007493019104 0.8440785969051341 -19.34720396995544 0.9708767054351369 -12.12265048181766 -7.572720107513859 -12.4568996842455 -7.534966229714509 -12.2830045508424 -7.471974036191307 7.481279052890341 -1.332361574105782 7.306749509412366 -1.247090367960376 8.046522017319962 -1.130607405835401 -19.33767676353455 -4.709301980786575 -19.34478163719177 -4.548037813701736 -19.19373035430908 -4.709301980786575 7.916809577349874 -0.6200375446511065 7.177049311337771 -0.7365686098342905 7.113509712554342 -0.6200375446511065 -12.60728008267938 5.152993841333039 -12.78200409385244 5.214550165207798 -12.66254653544607 5.286983389437513 7.916809577349874 -1.481877666592482 7.113509712554342 -1.481877666592482 7.177049311337772 -1.365347363029752 -19.18007493019104 3.436148046595554 -19.34720396995544 3.436148046595554 -19.33767676353455 3.597412461610878 -6.637237714247711 -12.74746105825016 -6.789128990141371 -12.83913569252778 -7.202867050126867 -12.79965041751035 8.000807655241598 -1.284367781877518 7.435563000784418 -1.253156713644663 8.000807655241598 -1.051405475536982 -19.33767676353454 -4.84390537779191 -19.19373035430908 -4.84390537779191 -19.23469066619873 -5.288492384512499 -7.089418961990558 11.42791153601595 -6.936062752823792 11.33775889249149 -7.497939059796469 11.28498356280143 8.046521833787153 -0.9721732080846033 7.306749325871717 -0.855691007925414 7.481278869343953 -0.7704193328896771 -19.19373035430908 3.597412461610879 -19.18007493019104 3.436148046595555 -19.33767676353455 3.597412461610879 -7.369825158474165 -12.2661650838376 -6.807597071843823 -12.3165685238239 -7.373684867622481 -12.36558529324536 -0.9523345474047307 -1.253156713644663 -1.586747984026279 -1.284367781877517 -1.586747984026279 -1.051405475536982 -19.30925488471985 -5.288492384512495 -19.33767676353455 -4.843905377791907 -19.23469066619873 -5.288492384512495 -7.026502570918128 11.14659193631369 -6.612407509575389 11.18368896840311 -7.024437646714015 11.04713849317582 7.435563000784419 -0.8496545304854709 8.000807655241598 -0.8184441655874251 -19.19373035430908 4.696283635055127 -19.33767676353455 4.696283635055127 -19.30925488471985 5.140870625317183 -2.014115649206309 -12.93522160548694 -1.991314094578658 -13.03305745380377 -2.422679319116055 -13.06955143368769 -1.596487895227738 -2.789542415683737 -1.795261294877364 -2.875262727568388 -2.429125493778011 -2.672445961980781 19.30925488471977 5.111744556259069 19.23469066619865 5.111744556259068 18.98195147514334 5.570565771945749 -1.575875569072168 11.70481331340891 -1.600637823938743 11.60727270824166 -2.188957930681452 11.65672342128608 -0.9523345474047285 -0.8496545304854711 -1.586747984026277 -1.051405475536982 -1.586747984026277 -0.8184441655874253 -19.23393808117686 5.142587001218538 -19.19304180662768 4.697996395662434 -19.30850229921694 5.142593680539108 -1.447328158709876 -13.32921368835843 -1.852035486588968 -13.47058325486161 -2.03526438040989 -13.38141326564552 -1.162771101234705 -1.081029775445771 -1.233061224869425 -1.197511247511588 -2.0658382000911 -1.081029775445771 19.20978307723999 4.149075244325578 18.98195147514343 4.149075244325578 18.88520956039429 4.310342993249799 19.20978307723999 5.570565771945566 19.30925488471985 5.111744556258882 18.98195147514343 5.570565771945566 -2.211275104051926 12.3639478654558 -1.780305455998344 12.32466851538065 -2.392882900506015 12.27274921558506 -1.596484536613035 0.6977740394742718 -2.429122137695238 0.5806783548559564 -1.795257934409154 0.7834948204452205 18.98195147514343 -5.713607677473338 19.23469066619873 -5.254786509630095 19.20978307723999 -5.713607677473338 19.23546720119447 -5.25301637823222 19.31003141920311 -5.253009485083976 19.21062783605071 -5.711839834884016 4.322774348413157 -7.633655863766362 4.195476574851193 -7.703165834573777 4.120827068660837 -7.574583915238395 -1.162771101234708 -1.021777341054808 -2.065838200091101 -1.021777341054808 -1.233061224869426 -0.9052966309337139 18.88520956039429 1.220751038278707 18.85544061660767 1.347546326955163 19.20978307723999 1.220751038278707 19.20978307723999 4.310342993249799 2.563221074984186 8.536311706901527 2.364832289113026 8.470198192077113 2.21004758401401 8.575937602597728 18.88520956039429 -5.422194446223683 18.98195147514343 -5.260926449374481 19.20978307723999 -5.422194446223683 18.98195147514343 -5.26092644937448 19.20978307723999 -5.26092644937448 19.20978307723999 -5.422194446223682 0.1146304451731955 -8.842369097665188 -0.1073383621633756 -8.806969540874464 0.05541078008391931 -8.708909056030961 18.85544061660767 -3.279318302324934 18.88520956039429 -3.152523713614531 19.20978307723999 -3.279318302324934 19.20978307723999 1.220751038278706 18.85544061660767 1.347546326955161 19.20978307723999 1.347546326955161 1.414737226473141 2.681464436820052 1.060449668087176 2.714365251456016 1.283321707504077 2.746058902699369 19.20978307723999 -3.279318302324935 19.20978307723999 -3.152523713614531 1.520888431116687 -3.802192102175359 1.478300328370118 -3.889256168860493 1.29792042368622 -3.770919075514688 1.520936551287351 1.732151967067352 1.297968527428662 1.700878897507549 1.240087476461425 1.819216476633805 1.47847632952945 -3.889095433125303 1.24021531170752 -3.889095433125303 1.298096197691254 -3.770758554053941 1.47847632952945 1.819465532770021 1.521064265145528 1.732400780884212 1.24021531170752 1.819465532770021</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"60\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 0 3 6 4 1 5 0 6 2 7 8 8 10 9 11 10 6 11 6 12 14 13 1 14 16 15 10 16 8 17 8 18 2 19 18 20 6 21 11 22 20 23 16 24 11 25 10 26 6 27 22 28 14 29 24 30 16 31 8 32 8 33 18 34 26 35 28 36 29 37 30 38 22 39 6 40 20 41 30 42 29 43 34 44 22 45 36 46 14 47 30 48 34 49 38 50 24 51 8 52 26 53 26 54 18 55 40 56 42 57 28 58 30 59 22 60 20 61 44 62 36 63 22 64 46 65 30 66 38 67 48 68 50 69 24 70 26 71 52 72 26 73 40 74 54 75 42 76 30 77 46 78 22 79 44 80 56 81 36 82 46 83 30 59 48 84 58 85 50 86 26 87 52 88 52 89 40 90 60 91 62 92 54 93 30 94 46 95 44 96 64 97 56 98 46 99 66 100 68 101 30 102 58 103 70 104 50 105 52 106 52 107 60 108 72 109 74 110 62 111 30 112 66 113 64 114 76 115 66 116 46 117 64 118 78 119 56 120 66 121 80 122 30 123 68 124 82 125 70 126 72 127 70 128 52 129 72 130 60 131 84 132 72 133 74 134 30 135 80 136 76 137 86 138 87 139 87 140 66 113 76 115 78 141 66 142 87 143 90 144 82 145 91 146 82 147 72 148 91 149 84 150 91 151 72 152 86 153 90 154 94 155 87 156 86 157 94 158 78 159 87 160 96 161 94 162 90 154 91 163 84 164 98 165 91 166 96 167 87 168 100 169 98 170 100 171 91 172 98 173 96 174 100 175</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID183\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID184\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"60\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 4 7 5 9 3 5 7 12 13 4 15 7 9 13 17 19 3 9 21 12 7 13 12 17 15 23 7 9 17 25 27 19 9 31 32 33 21 7 23 35 32 31 15 37 23 39 35 31 27 9 25 41 19 27 31 33 43 45 21 23 47 23 37 49 39 31 27 25 51 41 27 53 31 43 55 45 23 47 47 37 57 59 49 31 53 27 51 61 41 53 31 55 63 65 45 47 67 47 57 59 31 69 53 51 71 73 61 53 31 63 75 77 65 67 65 47 67 67 57 79 69 31 81 73 71 83 73 53 71 73 85 61 81 31 75 88 89 77 77 67 88 88 67 79 92 83 93 92 73 83 73 92 85 95 93 89 95 89 88 97 88 79 92 93 95 92 99 85 101 88 97 92 101 99 101 97 99</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID183\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID188\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID193\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID191\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID192\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID191\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID194\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID194\">0.6034737825393677 1.943698525428772 -0.1336532384157181 0.6624386310577393 1.940856695175171 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6624386310577393 1.940856695175171 -0.1336532384157181 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1147843822836876 0.62096107006073 1.943698525428772 -0.1147843822836876 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.940856695175171 -0.111865259706974 0.62096107006073 1.943698525428772 -0.1525221467018127 0.62096107006073 1.943698525428772 -0.1525221467018127 0.70525062084198 1.934461951255798 -0.1147843822836876 0.70525062084198 1.934461951255798 -0.1147843822836876 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.70525062084198 1.934461951255798 -0.1525222510099411 0.70525062084198 1.934461951255798 -0.1525222510099411 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7180529236793518 1.930909156799316 -0.1445471495389938</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID192\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID195\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID195\">-0.268503656107856 0.9630575363932906 0.02063899834778602 0.1092906628252984 0.9940098344680534 -7.69523253476409e-009 -0.1975743797487748 0.9600174138981226 0.1983202699656487 0.1975743797487748 -0.9600174138981226 -0.1983202699656487 -0.1092906628252984 -0.9940098344680534 7.69523253476409e-009 0.268503656107856 -0.9630575363932906 -0.02063899834778602 -0.04316329546441134 0.9022464711878826 0.4290550490947117 0.04316329546441134 -0.9022464711878826 -0.4290550490947117 -0.188685970994036 0.9568090513440232 -0.2211651953092718 0.188685970994036 -0.9568090513440232 0.2211651953092718 0.09074013728241166 0.8894532731297745 0.447927563792071 -0.09074013728241166 -0.8894532731297745 -0.447927563792071 -0.05077244356092967 0.9044995626227409 -0.4234414955931014 0.05077244356092967 -0.9044995626227409 0.4234414955931014 0.2484753200447397 0.8848239865712221 0.3941402391495622 -0.2484753200447397 -0.8848239865712221 -0.3941402391495622 0.096620987895277 0.8889263129942582 -0.4477436708258138 -0.096620987895277 -0.8889263129942582 0.4477436708258138 0.3251771624720898 0.9178173352138632 0.2277523922761804 -0.3251771624720898 -0.9178173352138632 -0.2277523922761804 0.2265426645478447 0.8870897369980587 -0.4021818241197354 -0.2265426645478447 -0.8870897369980587 0.4021818241197354 0.3230550412313637 0.9463801774828378 -1.598246447941602e-006 -0.3230550412313637 -0.9463801774828378 1.598246447941602e-006 0.313686535197523 0.9395316905111851 -0.1374080061749221 -0.313686535197523 -0.9395316905111851 0.1374080061749221</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 2 1 6 0 8 1 6 1 10 8 12 1 1 14 10 12 16 1 1 18 14 16 20 1 1 22 18 20 24 1 1 24 22</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID193\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 7 4 3 4 9 5 11 4 7 4 13 9 11 15 4 4 17 13 15 19 4 4 21 17 19 23 4 4 25 21 23 25 4</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID193\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID196\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID199\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID197\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID198\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID197\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID206\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID206\">0.6591432690620422 1.832582235336304 0.1425205767154694 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6591432690620422 1.832582235336304 0.1425205767154694 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6581888198852539 1.925890922546387 0.04520654678344727 0.7044316530227661 1.922605037689209 0.06054756790399551 0.7044316530227661 1.922605037689209 0.06054756790399551</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID198\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID207\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID207\">0.07889354688882974 -0.9052810488935695 -0.4174230836614798 -0.3613255746133597 -0.7363735528321385 0.5720120801344139 -0.02555645774528356 -0.7356610195326022 0.6768675880907327 0.02555645774528356 0.7356610195326022 -0.6768675880907327 0.3613255746133597 0.7363735528321385 -0.5720120801344139 -0.07889354688882974 0.9052810488935695 0.4174230836614798 -0.617978362244385 -0.7228716127692982 0.3091267947785527 0.617978362244385 0.7228716127692982 -0.3091267947785527 0.245498465440001 -0.7367781301705658 0.6299908653059739 -0.245498465440001 0.7367781301705658 -0.6299908653059739 -0.6981146516868598 -0.7101009198138653 -0.09161122627515073 0.6981146516868598 0.7101009198138653 0.09161122627515073 0.4229439574322713 -0.7494576529893595 0.5093443189505603 -0.4229439574322713 0.7494576529893595 -0.5093443189505603 0.6309107859638151 0.7132731859136506 0.3052751912801168 -0.6309107859638151 -0.7132731859136506 -0.3052751912801168 -0.668049406363227 0.7436903212606503 0.02519318798744152 0.668049406363227 -0.7436903212606503 -0.02519318798744152 0.3801733720381798 0.7237166802557863 0.5759360849197276 -0.3801733720381798 -0.7237166802557863 -0.5759360849197276 -0.5707129137868127 0.7192086630024464 0.3962646452803979 0.5707129137868127 -0.7192086630024464 -0.3962646452803979 0.0133747525654576 0.7218060729221357 0.6919661184527297 -0.0133747525654576 -0.7218060729221357 -0.6919661184527297 -0.327398087392843 0.7209079855479794 0.6108208974361165 0.327398087392843 -0.7209079855479794 -0.6108208974361165</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID205\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"36\" source=\"#ID208\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"72\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID208\">1.670397217954203 12.03873704482643 1.176526164090342 11.89637820790931 1.90788936543112 10.97402130969709 -6.542116642659369 8.418421955571644 -6.807315665933135 8.078643921026838 -5.570119367677798 7.645708411753829 10.16757882423856 10.72667158569806 9.998266154211549 9.653925714034958 10.59645423422299 10.58870047207641 -9.328879077613392 3.677675743203012 -9.444353010918027 3.306112027999903 -8.069237158150896 3.286841758651705 14.64976446746045 7.966015200863561 13.87068795816023 7.117704896956166 14.93720437652424 7.723612438930211 9.467765211356864 -1.453302206882614 8.168684772799315 -1.104275795865729 9.543800436155987 -1.084997163890837 -17.0972853500271 2.619394381338049 -18.3762790715688 2.644007760555567 -18.24485641557415 3.125422876902387 7.343712022776949 -5.939154573314194 7.042372400553623 -6.287974280806098 6.061597792196416 -5.55325232752239 -17.204848032999 -0.8227041725542247 -18.36637267839059 -1.22674786200653 -18.48383053894326 -0.7977327367101881 -0.9267127151734594 -10.43011461864739 -1.415903210216094 -10.57918238555594 -1.664725312902166 -9.536787660905636 -16.67259260139242 -4.36693626276425 -16.92224900716855 -4.069997286398384 -15.7903887940536 -3.616838921844481 -11.0216266886206 -8.922337946536512 -11.46257013647479 -8.757281792566458 -10.80642236134923 -7.875322928325505</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 0 6 1 8 0 2 0 10 6 12 0 8 10 0 15 12 17 0 0 19 15 17 21 0 0 23 19 0 21 25 0 25 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID199\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 0 4 1 5 2 4 3 7 4 5 5 3 6 5 7 9 8 7 9 11 10 5 11 9 12 5 13 13 14 14 15 5 16 11 17 5 18 16 19 13 20 14 21 18 22 5 23 5 24 20 25 16 26 18 27 22 28 5 29 24 30 20 31 5 32 22 33 24 34 5 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID199\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID205\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID211\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID214\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID212\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID213\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID212\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"78\" source=\"#ID215\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"234\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID215\">-0.1970338225364685 -1.931188106536865 0.1519460678100586 -0.1967810839414597 -1.975753784179688 0.06137931346893311 -0.479192852973938 -1.931188106536865 0.1536669880151749 -0.479192852973938 -1.931188106536865 0.1536669880151749 -0.1967810839414597 -1.975753784179688 0.06137931346893311 -0.1970338225364685 -1.931188106536865 0.1519460678100586 -0.4238884449005127 -1.952622652053833 0.111620157957077 -0.4238884449005127 -1.952622652053833 0.111620157957077 0.003534962190315127 -1.975753784179688 0.06137931346893311 0.003534962190315127 -1.975753784179688 0.06137931346893311 -0.5108060836791992 -1.828675627708435 0.2087062001228333 -0.5108060836791992 -1.828675627708435 0.2087062001228333 -0.3540624976158142 -1.968288421630859 0.07805071771144867 -0.3540624976158142 -1.968288421630859 0.07805071771144867 0.003534962190315127 -1.931188106536865 0.1527040004730225 0.003534962190315127 -1.931188106536865 0.1527040004730225 -0.1976474672555924 -1.828675627708435 0.2088393121957779 -0.1976474672555924 -1.828675627708435 0.2088393121957779 0.2041033208370209 -1.931188106536865 0.1519460678100586 0.2041033208370209 -1.931188106536865 0.1519460678100586 -0.5159977078437805 -1.740602254867554 0.2356471866369247 -0.5159977078437805 -1.740602254867554 0.2356471866369247 0.2038507014513016 -1.975753784179688 0.06137931346893311 0.2038507014513016 -1.975753784179688 0.06137931346893311 0.2047170847654343 -1.828675627708435 0.2088393121957779 0.2047170847654343 -1.828675627708435 0.2088393121957779 0.003534962190315127 -1.828675627708435 0.2087676078081131 0.003534962190315127 -1.828675627708435 0.2087676078081131 -0.1991988271474838 -1.740602254867554 0.2356471866369247 -0.1991988271474838 -1.740602254867554 0.2356471866369247 0.4862626791000366 -1.931188106536865 0.1536669880151749 0.4862626791000366 -1.931188106536865 0.1536669880151749 0.5178753733634949 -1.828675627708435 0.2087062001228333 0.5178753733634949 -1.828675627708435 0.2087062001228333 -0.5156968235969544 -1.602517247200012 0.2691195011138916 -0.5156968235969544 -1.602517247200012 0.2691195011138916 0.4309577345848084 -1.952622652053833 0.111620157957077 0.4309577345848084 -1.952622652053833 0.111620157957077 0.5230674743652344 -1.740602254867554 0.2356471866369247 0.5230674743652344 -1.740602254867554 0.2356471866369247 0.2062683254480362 -1.740602254867554 0.2356471866369247 0.2062683254480362 -1.740602254867554 0.2356471866369247 0.003534962190315127 -1.742378234863281 0.2356471866369247 0.003534962190315127 -1.742378234863281 0.2356471866369247 -0.2001994103193283 -1.602517247200012 0.2691195011138916 -0.2001994103193283 -1.602517247200012 0.2691195011138916 0.3611322641372681 -1.968288421630859 0.07805071771144867 0.3611322641372681 -1.968288421630859 0.07805071771144867 -0.5085935592651367 -1.473212003707886 0.2946602702140808 -0.5085935592651367 -1.473212003707886 0.2946602702140808 0.5227663516998291 -1.602517247200012 0.2691195011138916 0.5227663516998291 -1.602517247200012 0.2691195011138916 0.2072690576314926 -1.602517247200012 0.2691195011138916 0.2072690576314926 -1.602517247200012 0.2691195011138916 0.003534962190315127 -1.602517247200012 0.2691195011138916 0.003534962190315127 -1.602517247200012 0.2691195011138916 -0.2037112414836884 -1.473212003707886 0.2946602702140808 -0.2037112414836884 -1.473212003707886 0.2946602702140808 -0.4516721367835999 -1.365588307380676 0.3139455020427704 -0.4516721367835999 -1.365588307380676 0.3139455020427704 0.5156629085540772 -1.473212003707886 0.2946602702140808 0.5156629085540772 -1.473212003707886 0.2946602702140808 0.2107809633016586 -1.473212003707886 0.2946602702140808 0.2107809633016586 -1.473212003707886 0.2946602702140808 0.003534962190315127 -1.473212003707886 0.2946602702140808 0.003534962190315127 -1.473212003707886 0.2946602702140808 -0.3896275460720062 -1.332627534866333 0.3204693794250488 -0.3896275460720062 -1.332627534866333 0.3204693794250488 -0.2025128901004791 -1.305356502532959 0.3259882032871246 -0.2025128901004791 -1.305356502532959 0.3259882032871246 0.4587418138980866 -1.365588307380676 0.3139455020427704 0.4587418138980866 -1.365588307380676 0.3139455020427704 0.2095824927091599 -1.305356502532959 0.3259882032871246 0.2095824927091599 -1.305356502532959 0.3259882032871246 0.003534962190315127 -1.301196455955505 0.3259882032871246 0.003534962190315127 -1.301196455955505 0.3259882032871246 0.3966972529888153 -1.332627534866333 0.3204693794250488 0.3966972529888153 -1.332627534866333 0.3204693794250488</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID213\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"78\" source=\"#ID216\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"234\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID216\">-4.515878047999203e-005 -0.7243893371074355 0.6893910981770325 0.00167219103053643 -0.897063476184309 0.4418985443212967 0.006410489730464489 -0.6094093748595211 0.792829817460685 -0.006410489730464489 0.6094093748595211 -0.792829817460685 -0.00167219103053643 0.897063476184309 -0.4418985443212967 4.515878047999203e-005 0.7243893371074355 -0.6893910981770325 0.01264943619488881 -0.8853302774953902 0.4647905888826568 -0.01264943619488881 0.8853302774953902 -0.4647905888826568 7.878145810645445e-010 -0.8982732127961225 0.4394374075712401 -7.878145810645445e-010 0.8982732127961225 -0.4394374075712401 0.001474960385020964 -0.375806674823649 0.9266969125069181 -0.001474960385020964 0.375806674823649 -0.9266969125069181 0.002320778656645531 -0.9043218214667207 0.4268450037256373 -0.002320778656645531 0.9043218214667207 -0.4268450037256373 1.857749683900308e-009 -0.7236993566282646 0.6901153825381927 -1.857749683900308e-009 0.7236993566282646 -0.6901153825381927 -0.0005486435031754847 -0.3899735549035239 0.9208258931341008 0.0005486435031754847 0.3899735549035239 -0.9208258931341008 4.516323083206616e-005 -0.7243893393134647 0.6893910958587183 -4.516323083206616e-005 0.7243893393134647 -0.6893910958587183 -0.0001626197986828542 -0.2635487516562606 0.9646460641371153 0.0001626197986828542 0.2635487516562606 -0.9646460641371153 -0.001672191344845518 -0.8970634771177262 0.4418985424252507 0.001672191344845518 0.8970634771177262 -0.4418985424252507 0.0005486438164148678 -0.3899735550538463 0.9208258930702521 -0.0005486438164148678 0.3899735550538463 -0.9208258930702521 4.740422479309856e-010 -0.3897250116678094 0.9209312760898751 -4.740422479309856e-010 0.3897250116678094 -0.9209312760898751 -0.0006334395315461648 -0.2638390090469637 0.964566522360939 0.0006334395315461648 0.2638390090469637 -0.964566522360939 -0.006410483636061917 -0.6094089467559926 0.7928301465719526 0.006410483636061917 0.6094089467559926 -0.7928301465719526 -0.001474960054633009 -0.3758066845522592 0.9266969085621664 0.001474960054633009 0.3758066845522592 -0.9266969085621664 -1.421866300011938e-018 -0.2151078777409298 0.9765902932825993 1.421866300011938e-018 0.2151078777409298 -0.9765902932825993 -0.01264950172687415 -0.8853301863937345 0.464790760629014 0.01264950172687415 0.8853301863937345 -0.464790760629014 0.0001626196653223157 -0.2635487189581836 0.9646460730705043 -0.0001626196653223157 0.2635487189581836 -0.9646460730705043 0.0006334415469292542 -0.2638390102706938 0.9645665220248874 -0.0006334415469292542 0.2638390102706938 -0.9645665220248874 2.009365864777678e-009 -0.2659351138115117 0.9639909310994883 -2.009365864777678e-009 0.2659351138115117 -0.9639909310994883 -0.0003118220590012659 -0.2144534401416348 0.9767341627988764 0.0003118220590012659 0.2144534401416348 -0.9767341627988764 -0.002320771401198793 -0.9043218400706571 0.4268449643504352 0.002320771401198793 0.9043218400706571 -0.4268449643504352 -1.908724997150857e-018 -0.1867975922323924 0.9823984219939387 1.908724997150857e-018 0.1867975922323924 -0.9823984219939387 -3.846534772188975e-018 -0.2151078982051234 0.9765902887750698 3.846534772188975e-018 0.2151078982051234 -0.9765902887750698 0.0003118221621229709 -0.2144534401719119 0.9767341627921956 -0.0003118221621229709 0.2144534401719119 -0.9767341627921956 -3.415587396278465e-018 -0.2133083393301314 0.9769849294498977 3.415587396278465e-018 0.2133083393301314 -0.9769849294498977 -0.0004993295652226545 -0.188260279239131 0.9821190446838864 0.0004993295652226545 0.188260279239131 -0.9821190446838864 -0.001573872363585238 -0.1798939088582221 0.9836847586912652 0.001573872363585238 0.1798939088582221 -0.9836847586912652 1.950937990684165e-018 -0.1867975866733153 0.9823984230509664 -1.950937990684165e-018 0.1867975866733153 -0.9823984230509664 0.0004993296850496009 -0.1882602789748251 0.9821190447344897 -0.0004993296850496009 0.1882602789748251 -0.9821190447344897 -3.48401965557127e-010 -0.1874269755801675 0.9822785393282657 3.48401965557127e-010 0.1874269755801675 -0.9822785393282657 -0.003781893832025225 -0.1854015646517295 0.9826555638186424 0.003781893832025225 0.1854015646517295 -0.9826555638186424 -0.0002058559345083983 -0.1824473280205556 0.9832156071388891 0.0002058559345083983 0.1824473280205556 -0.9832156071388891 0.001573874654780835 -0.1798939133359203 0.9836847578687288 -0.001573874654780835 0.1798939133359203 -0.9836847578687288 0.0002058526909813292 -0.182447326200633 0.9832156074772764 -0.0002058526909813292 0.182447326200633 -0.9832156074772764 -2.788418118671642e-009 -0.1791754175536094 0.9838171424327236 2.788418118671642e-009 0.1791754175536094 -0.9838171424327236 0.003781894494418022 -0.1854015651104945 0.9826555637295359 -0.003781894494418022 0.1854015651104945 -0.9826555637295359</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"52\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 1 6 2 8 1 0 2 10 0 1 12 6 8 0 14 10 16 0 18 8 14 0 16 14 10 20 16 22 8 18 18 14 24 14 16 26 20 28 16 22 18 30 18 24 32 14 26 24 16 28 26 20 34 28 36 22 30 30 18 32 32 24 38 24 26 40 26 28 42 34 44 28 46 22 36 24 40 38 26 42 40 28 44 42 34 48 44 40 50 38 40 42 52 42 44 54 48 56 44 40 52 50 42 54 52 44 56 54 48 58 56 52 60 50 52 54 62 54 56 64 58 66 56 52 62 60 54 64 62 56 68 64 56 66 68 62 70 60 64 72 62 64 68 74 62 76 70 62 72 76 64 74 72</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID214\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"52\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 7 4 5 4 9 5 11 3 7 13 4 15 5 9 5 17 11 15 9 19 15 17 5 17 21 11 19 9 23 25 15 19 27 17 15 17 29 21 31 19 23 33 25 19 25 27 15 27 29 17 29 35 21 31 23 37 33 19 31 39 25 33 41 27 25 43 29 27 29 45 35 37 23 47 39 41 25 41 43 27 43 45 29 45 49 35 39 51 41 53 43 41 55 45 43 45 57 49 51 53 41 53 55 43 55 57 45 57 59 49 51 61 53 63 55 53 65 57 55 57 67 59 61 63 53 63 65 55 65 69 57 69 67 57 61 71 63 63 73 65 75 69 65 71 77 63 77 73 63 73 75 65</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID214\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID217\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID220\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID218\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID219\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID218\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"162\" source=\"#ID222\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"486\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID222\">-0.06212541833519936 -1.890682101249695 0.185465544462204 -0.004580865148454905 -1.885924220085144 0.1778659224510193 -0.003423498477786779 -1.882099986076355 0.1798757761716843 -0.003423498477786779 -1.882099986076355 0.1798757761716843 -0.004580865148454905 -1.885924220085144 0.1778659224510193 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362602695822716 -1.877979755401611 0.1924054622650147 -0.05362602695822716 -1.877979755401611 0.1924054622650147 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.003423502203077078 -1.889748334884644 0.1758555620908737 -0.003423502203077078 -1.889748334884644 0.1758555620908737 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.000261504203081131 -1.879300594329834 0.18134805560112 -0.000261504203081131 -1.879300594329834 0.18134805560112 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.01774921268224716 -1.872801303863525 0.1951804459095001 -0.01774921268224716 -1.872801303863525 0.1951804459095001 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.004193538334220648 -1.907847166061401 0.190097764134407 -0.004193538334220648 -1.907847166061401 0.190097764134407 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.01031874679028988 -1.903075337409973 0.1926834881305695 -0.01031874679028988 -1.903075337409973 0.1926834881305695 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.000261504203081131 -1.892548799514771 0.1743834316730499 -0.000261504203081131 -1.892548799514771 0.1743834316730499 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.01256070844829083 -1.896557927131653 0.1962146610021591 -0.01256070844829083 -1.896557927131653 0.1962146610021591 -0.05362602695822716 -1.882304906845093 0.2003258913755417 0.004057842772454023 -1.878275752067566 0.1818866580724716 0.004057842772454023 -1.878275752067566 0.1818866580724716 0.004173615481704474 -1.909591317176819 0.189151793718338 0.004173615481704474 -1.909591317176819 0.189151793718338 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.916087865829468 0.1715866476297379 0.00344362435862422 -1.916087865829468 0.1715866476297379 -0.01031874306499958 -1.890042185783386 0.1997462660074234 -0.01031874306499958 -1.890042185783386 0.1997462660074234 -0.01774921268224716 -1.877128958702087 0.2031001746654511 -0.01774921268224716 -1.877128958702087 0.2031001746654511 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004173615481704474 -1.905439138412476 0.1941477060317993 0.004173615481704474 -1.905439138412476 0.1941477060317993 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.920415163040161 0.1795060932636261 -0.0002153222449123859 -1.904404282569885 0.194709837436676 -0.0002153222449123859 -1.904404282569885 0.194709837436676 0.00344362435862422 -1.916087865829468 0.1715866476297379 0.00344362435862422 -1.916087865829468 0.1715866476297379 -0.003428266383707523 -1.901579737663269 0.1962397992610931 -0.003428266383707523 -1.901579737663269 0.1962397992610931 0.004057839047163725 -1.893572092056274 0.1738448441028595 0.004057839047163725 -1.893572092056274 0.1738448441028595 -0.004604290705174208 -1.897721648216248 0.198330745100975 -0.004604290705174208 -1.897721648216248 0.198330745100975 -0.01774921268224716 -1.877128958702087 0.2031001746654511 -0.01774921268224716 -1.877128958702087 0.2031001746654511 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.0083771962672472 -1.879300594329834 0.18134805560112 0.0083771962672472 -1.879300594329834 0.18134805560112 0.008562571369111538 -1.904404282569885 0.194709837436676 0.008562571369111538 -1.904404282569885 0.194709837436676 0.01254078187048435 -1.907847166061401 0.190097764134407 0.01254078187048435 -1.907847166061401 0.190097764134407 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.0252343937754631 -1.909103035926819 0.1754486709833145 -0.003428266383707523 -1.893861889839172 0.200422078371048 -0.003428266383707523 -1.893861889839172 0.200422078371048 -0.004193538334220648 -1.885270476341248 0.2023317068815231 -0.004193538334220648 -1.885270476341248 0.2023317068815231 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.02461381815373898 -1.873335719108582 0.1948819309473038 0.02461381815373898 -1.873335719108582 0.1948819309473038 0.004173621535301209 -1.898949146270752 0.2003982812166214 0.004173621535301209 -1.898949146270752 0.2003982812166214 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.008377193473279476 -1.892548799514771 0.1743834316730499 0.008377193473279476 -1.892548799514771 0.1743834316730499 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.01153918355703354 -1.882099986076355 0.1798757761716843 0.01153918355703354 -1.882099986076355 0.1798757761716843 0.01177550666034222 -1.901579737663269 0.1962397992610931 0.01177550666034222 -1.901579737663269 0.1962397992610931 0.0186659786850214 -1.903075337409973 0.1926834881305695 0.0186659786850214 -1.903075337409973 0.1926834881305695 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.05625637620687485 -1.903384566307068 0.1785260140895844 -0.0002153187524527311 -1.89103627204895 0.2019526362419128 -0.0002153187524527311 -1.89103627204895 0.2019526362419128 0.004173621535301209 -1.883522987365723 0.2032789885997772 0.004173621535301209 -1.883522987365723 0.2032789885997772 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.05625637620687485 -1.877979755401611 0.1924054622650147 0.05625637620687485 -1.877979755401611 0.1924054622650147 0.01295152120292187 -1.897721648216248 0.198330745100975 0.01295152120292187 -1.897721648216248 0.198330745100975 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.01153918355703354 -1.889748334884644 0.1758555620908737 0.01153918355703354 -1.889748334884644 0.1758555620908737 0.004173621535301209 -1.890002012252808 0.2025137692689896 0.004173621535301209 -1.890002012252808 0.2025137692689896 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.01269654557108879 -1.885924220085144 0.1778659224510193 0.01269654557108879 -1.885924220085144 0.1778659224510193 0.01177550666034222 -1.893861889839172 0.200422078371048 0.01177550666034222 -1.893861889839172 0.200422078371048 0.02090794593095779 -1.896557927131653 0.1962146610021591 0.02090794593095779 -1.896557927131653 0.1962146610021591 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.890682101249695 0.185465544462204 0.064755879342556 -1.890682101249695 0.185465544462204 0.008562571369111538 -1.89103627204895 0.2019526362419128 0.008562571369111538 -1.89103627204895 0.2019526362419128 0.01254078559577465 -1.885270476341248 0.2023317068815231 0.01254078559577465 -1.885270476341248 0.2023317068815231 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.890682101249695 0.185465544462204 0.064755879342556 -1.890682101249695 0.185465544462204 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.0186659786850214 -1.890042185783386 0.1997462660074234 0.0186659786850214 -1.890042185783386 0.1997462660074234</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID219\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"162\" source=\"#ID223\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"486\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID223\">-0.1559367835908594 0.4724906605952762 -0.8674308590161968 -0.1571837693401717 0.456705339978458 -0.875621776277393 -0.1522451649855252 0.5550067500675552 -0.8177951559638763 0.1522451649855252 -0.5550067500675552 0.8177951559638763 0.1571837693401717 -0.456705339978458 0.875621776277393 0.1559367835908594 -0.4724906605952762 0.8674308590161968 -0.1390503382858027 0.3378735749610511 -0.9308632825316738 0.1390503382858027 -0.3378735749610511 0.9308632825316738 -0.4869393082831401 0.8579505478323806 -0.1637405494153943 0.4869393082831401 -0.8579505478323806 0.1637405494153943 -0.5650701725602941 -0.7240143539059234 -0.3955994380947325 -0.5654194957188525 -0.7237957918031766 -0.3955002473185714 -0.9999999993758014 -1.504630552647389e-005 -3.196882694804338e-005 0.9999999993758014 1.504630552647389e-005 3.196882694804338e-005 0.5654194957188525 0.7237957918031766 0.3955002473185714 0.5650701725602941 0.7240143539059234 0.3955994380947325 -0.1873666787595777 0.2714871219833654 -0.9440277910569129 0.1873666787595777 -0.2714871219833654 0.9440277910569129 -0.9999999976347745 6.227543176424389e-005 2.919282880435985e-005 0.9999999976347745 -6.227543176424389e-005 -2.919282880435985e-005 -0.1284827264643132 0.7799780092813398 -0.6124757089369463 0.1284827264643132 -0.7799780092813398 0.6124757089369463 -0.2693333263803373 -0.8451188910684884 -0.4617722590845744 0.2693333263803373 0.8451188910684884 0.4617722590845744 -0.1085841614822981 0.07656549866794069 -0.9911343018425484 0.1085841614822981 -0.07656549866794069 0.9911343018425484 -0.5656655764677463 0.7237428511543926 0.3952451656912744 0.5656655764677463 -0.7237428511543926 -0.3952451656912744 -0.215460344750203 0.9745977197732217 -0.06112384520758304 0.215460344750203 -0.9745977197732217 0.06112384520758304 -0.06024289250176393 -0.7152519924570895 0.6962653094828037 -0.06680914302018613 -0.535661734201317 0.8417856288398764 -0.1098236036290324 -0.6959721181523937 0.7096207345056963 0.1098236036290324 0.6959721181523937 -0.7096207345056963 0.06680914302018613 0.535661734201317 -0.8417856288398764 0.06024289250176393 0.7152519924570895 -0.6962653094828037 -0.2693810262618333 -0.8451073808799046 -0.4617655005221041 0.2693810262618333 0.8451073808799046 0.4617655005221041 -0.06641723789961297 -0.4778104061893048 0.8759486093641555 -0.1492248560790995 -0.5551857009119028 0.8182302731084516 0.1492248560790995 0.5551857009119028 -0.8182302731084516 0.06641723789961297 0.4778104061893048 -0.8759486093641555 -0.1801642414375255 0.140548577976789 -0.9735434984303185 0.1801642414375255 -0.140548577976789 0.9735434984303185 -0.06109943537755055 -0.4210572589614811 0.9049738359048778 -0.1598490402081354 -0.4688447286817832 0.8686960945761431 0.1598490402081354 0.4688447286817832 -0.8686960945761431 0.06109943537755055 0.4210572589614811 -0.9049738359048778 -0.01706439951246839 0.8069219832866875 -0.5904114829150576 0.01706439951246839 -0.8069219832866875 0.5904114829150576 -0.005922541934862095 -0.7145168845725065 0.6995931282951752 0.005922541934862095 0.7145168845725065 -0.6995931282951752 -0.01638072440113115 -0.8774243488918827 -0.4794352759651192 0.01638072440113115 0.8774243488918827 0.4794352759651192 -0.004892287435146141 0.09504341174650677 -0.9954611069284605 0.004892287435146141 -0.09504341174650677 0.9954611069284605 -0.1608853655267507 -0.3451121954708132 0.9246693850758978 0.1608853655267507 0.3451121954708132 -0.9246693850758978 -0.2697758473313772 0.8450062910095768 0.4617200021126179 0.2697758473313772 -0.8450062910095768 -0.4617200021126179 0.005163321228154287 0.80314369678722 -0.5957629918221281 -0.005163321228154287 -0.80314369678722 0.5957629918221281 0.002344292070657979 -0.7372617171674439 0.6756031858228611 -0.002344292070657979 0.7372617171674439 -0.6756031858228611 -0.008157238007564552 -0.6687361967973861 0.7434550144837653 0.008157238007564552 0.6687361967973861 -0.7434550144837653 -0.1482697422189595 -0.6939824270870997 0.704559773501597 0.1482697422189595 0.6939824270870997 -0.704559773501597 -0.01631095801948851 -0.8774315909803663 -0.4794244005035099 0.01631095801948851 0.8774315909803663 0.4794244005035099 -0.247634545874316 -0.587407097508461 0.7704739018852661 0.247634545874316 0.587407097508461 -0.7704739018852661 0.01672740120278551 0.08830494052585623 -0.9959530267676915 -0.01672740120278551 -0.08830494052585623 0.9959530267676915 -0.2806604926472587 -0.455709256550181 0.8447240740984473 0.2806604926472587 0.455709256550181 -0.8447240740984473 -0.06931151722567759 -0.2749132873875356 0.9589674645146482 0.06931151722567759 0.2749132873875356 -0.9589674645146482 0.02391697579585033 0.8773665534004429 0.4792242786451961 -0.02391697579585033 -0.8773665534004429 -0.4792242786451961 0.2101921749737974 0.7555228558127222 -0.6204872794218858 -0.2101921749737974 -0.7555228558127222 0.6204872794218858 0.1514833837771899 -0.6960574425040083 0.701823924623685 -0.1514833837771899 0.6960574425040083 -0.701823924623685 0.1295182429994306 -0.6780618820468425 0.7235033578674217 -0.1295182429994306 0.6780618820468425 -0.7235033578674217 0.2751035091169459 -0.8437311463046369 -0.460907595974514 -0.2751035091169459 0.8437311463046369 0.460907595974514 0.1086831171316301 0.05008127305961377 -0.9928141045227352 -0.1086831171316301 -0.05008127305961377 0.9928141045227352 -0.2488725265091385 -0.3207670673426812 0.9138768812358338 0.2488725265091385 0.3207670673426812 -0.9138768812358338 -0.1296109157726461 -0.2425424417003133 0.9614437968423459 0.1296109157726461 0.2425424417003133 -0.9614437968423459 0.02382489002837564 0.8773602369114034 0.4792404295360543 -0.02382489002837564 -0.8773602369114034 -0.4792404295360543 0.2436673669795205 0.9657019217466152 -0.08969956858403495 -0.2436673669795205 -0.9657019217466152 0.08969956858403495 6.120173975055664e-008 -0.478955974542849 0.8778389228381857 -6.120173975055664e-008 0.478955974542849 -0.8778389228381857 0.0739072039953195 -0.6532948377034049 0.7534876111972089 -0.0739072039953195 0.6532948377034049 -0.7534876111972089 0.2751232148782023 -0.8437271877663316 -0.4609030801144639 -0.2751232148782023 0.8437271877663316 0.4609030801144639 0.1207740632168708 0.1185580458727601 -0.9855747639894804 -0.1207740632168708 -0.1185580458727601 0.9855747639894804 0.00894902137950491 -0.2714223354616189 0.9624187398575059 -0.00894902137950491 0.2714223354616189 -0.9624187398575059 0.2194923653377241 0.6465152519741085 -0.7306443255944074 -0.2194923653377241 -0.6465152519741085 0.7306443255944074 0.2502420019123516 -0.5907866162909732 0.7670398389199618 -0.2502420019123516 0.5907866162909732 -0.7670398389199618 0.165115532820197 -0.5861941213740701 0.7931666362675529 -0.165115532820197 0.5861941213740701 -0.7931666362675529 0.5834070092154735 -0.7127232439408671 -0.3894378501695283 -0.5834070092154735 0.7127232439408671 0.3894378501695283 0.1583039384910361 0.3225371996795222 -0.9332253842888749 -0.1583039384910361 -0.3225371996795222 0.9332253842888749 -0.1502315126915595 -0.2102981436898203 0.9660254568876648 0.1502315126915595 0.2102981436898203 -0.9660254568876648 0.01196630073376463 -0.2032111379676907 0.9790618167677796 -0.01196630073376463 0.2032111379676907 -0.9790618167677796 0.2939800854361898 0.8387086624576868 0.4584141019704441 -0.2939800854361898 -0.8387086624576868 -0.4584141019704441 0.4885737109371212 0.8578263993909789 -0.1594666030522976 -0.4885737109371212 -0.8578263993909789 0.1594666030522976 0.2806670705106129 -0.4587400994911635 0.8430797807146296 -0.2806670705106129 0.4587400994911635 -0.8430797807146296 0.06935806896058236 -0.53855939403882 0.8397280734634266 -0.06935806896058236 0.53855939403882 -0.8397280734634266 0.5837254403942573 -0.7125257971522856 -0.3893219729594392 -0.5837254403942573 0.7125257971522856 0.3893219729594392 0.1600135354637308 0.3583929788715838 -0.9197554790073013 -0.1600135354637308 -0.3583929788715838 0.9197554790073013 -0.002334717766163528 -0.1667584603142579 0.9859950126682033 0.002334717766163528 0.1667584603142579 -0.9859950126682033 0.06637512762902212 -0.1772777037866704 0.9819200365469464 -0.06637512762902212 0.1772777037866704 -0.9819200365469464 0.1780098328934645 0.4656460746403963 -0.8668830558761842 -0.1780098328934645 -0.4656460746403963 0.8668830558761842 0.2462724472171071 -0.3254193099052178 0.9129360078792538 -0.2462724472171071 0.3254193099052178 -0.9129360078792538 0.1656993367893799 -0.4721240936589514 0.8658190168703118 -0.1656993367893799 0.4721240936589514 -0.8658190168703118 0.9999999988634817 4.762279000706527e-005 2.259778687422832e-006 -0.9999999988634817 -4.762279000706527e-005 -2.259778687422832e-006 0.17090859929879 0.4725818099566265 -0.8645557723963474 -0.17090859929879 -0.4725818099566265 0.8645557723963474 0.147042743150684 -0.2137060265846958 0.9657681739879935 -0.147042743150684 0.2137060265846958 -0.9657681739879935 0.1124707744108558 -0.2039467248969374 0.9724999014433038 -0.1124707744108558 0.2039467248969374 -0.9724999014433038 0.5666903137006596 0.7231345214766569 0.3948905572517206 -0.5666903137006596 -0.7231345214766569 -0.3948905572517206 0.07468321548360864 -0.4785813686036864 0.87486129812128 -0.07468321548360864 0.4785813686036864 -0.87486129812128 0.9999999985165108 -4.563442049767177e-005 -2.974017410650329e-005 -0.9999999985165108 4.563442049767177e-005 2.974017410650329e-005 0.07423592034048399 -0.4103243047544882 0.9089130833357759 -0.07423592034048399 0.4103243047544882 -0.9089130833357759 0.1529426208812376 -0.3797523998761752 0.9123577530257875 -0.1529426208812376 0.3797523998761752 -0.9123577530257875</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID221\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"324\" source=\"#ID224\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"648\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID224\">6.197624366416148 -11.259997112316 5.633936893191923 -11.37516565359185 5.611547707344592 -11.34470730699959 7.403462601312935 -11.80058060332358 7.370045423987567 -11.92998237377035 6.849633993693515 -11.94229113561747 5.696372318742883 -10.64788532287058 5.813110766776234 -10.74276692755852 5.2251960094395 -10.81918947322953 16.71249903445029 3.182932220119489 16.67402942061986 3.118707169152669 16.52218241039167 3.174982135305599 6.812389486930464 -11.72106037525777 7.332829805861207 -11.70953224809925 6.815314067625983 -11.75617018200611 17.12937086962881 3.027794399053971 17.09092129546603 2.963568365523682 16.93907443053135 3.019845005021688 5.16879640366618 -10.37793354192443 4.692598847528177 -10.54041821852935 4.655032869492355 -10.52132573327616 3.316817011957314 8.28696009640405 2.949558494481474 8.240705668572732 2.957463557755681 8.31143063151924 16.56069853453455 3.238318904064413 16.71256449570688 3.182043106992403 16.5222478542219 3.174093280345051 14.96649859022233 -9.098557704937159 14.77792841397065 -9.340442122292201 14.5403783674566 -9.334241340304722 16.97753256443189 3.083914057716583 17.12938258331342 3.027636097162986 16.93908614068197 3.019686755483996 2.372312219509824 -6.160143645757917 1.842523888909761 -6.261200890510088 2.010197727062115 -6.134782165451713 1.189729957394605 -9.184726024294891 0.8309835809387123 -9.155254213398603 1.324136612107796 -9.115977910943537 3.308996198885484 8.215921292460237 2.949642810671755 8.240395628414737 3.316901452868017 8.286649443415252 1.985797509472134 -12.01678366973451 1.884782301468045 -11.91130946186546 2.408964688164641 -11.92198289204256 14.83251544451584 -8.240996096947621 15.0701866687631 -8.242673229859516 14.83482692331507 -8.276136922348439 2.121944780594908 -12.55728524347131 2.187703029390534 -12.43579115089712 2.614634971188297 -12.50776249167922 3.971608883595491 8.165892040130983 3.609428938861981 8.190668385583734 3.979541742940867 8.236609317390048 2.869269205423273 -6.832168742372222 2.825017921672816 -6.827098607389249 3.032185739816667 -6.701957520309583 1.879250671449631 -9.424508502786869 1.66139680828244 -9.484614874094675 1.794288992707469 -9.414068284419628 1.709624855619829 -11.78135322142818 2.134246416472771 -11.69066613969296 2.200682386268879 -11.72825951914409 8.059933387038802 7.361380735710531 7.815088261159154 7.328703211547769 7.833180823061438 7.398263054670808 1.861071224581285 -12.12614345670638 2.354492329090669 -12.08134989583227 2.385238608147247 -12.13726351175387 16.42051106116374 -7.022789241080307 16.64725711412552 -6.962930322031732 16.60630317097705 -7.14220994153427 2.738133534395794 -12.38043226462098 2.310673250895076 -12.31042854559361 2.750462775923929 -12.32029808043496 3.978612217185231 8.240070602782543 3.60850080853052 8.194122714515283 3.616436110895134 8.264844445876936 3.962904818935796 -7.292312993777429 3.76042015277968 -7.422111002188075 3.733155102936037 -7.250534211171334 2.213533841257794 -8.35294398979698 2.12842144698438 -8.343293319300081 2.208810937015485 -8.301976324477195 2.545346670331956 -10.24091808674377 2.322570049726805 -10.19125554829339 2.538430238934704 -10.12685150326239 6.103085514188759 -8.910222896259375 6.029731124295621 -8.881678893032651 6.129663986048146 -8.859309869417674 8.041798655680426 7.291989983945062 7.815044544248284 7.328864562562806 8.059889623759394 7.361542301729187 9.132084732071418 -9.510007126989109 9.08088999905916 -9.464296984695222 9.185110438468982 -9.463971576272957 13.20224478425976 -10.36343232802376 13.3398771322845 -10.51803003989664 13.17843005962019 -10.39320381009214 11.43645710193289 -9.737400761577282 11.41461912072993 -9.678962200227657 11.50668825496226 -9.702385262888926 1.913463414545358 -13.7492248509189 2.26246784942114 -13.66915782100476 2.352917667962758 -13.76595309271632 7.994241014777865 7.299007569651417 7.763322305743026 7.336586921587116 8.012341495641103 7.368561727803613 -2.708505363225937 -7.581342807761608 -2.752716735287881 -7.586624351503083 -2.690305482984234 -7.409024351745314 -2.408038090459215 -8.330172446087151 -2.402712097948566 -8.279241586279305 -2.357857689482753 -8.27351093410228 2.427733195625073 -8.455374829297051 2.347736176994048 -8.497160574895521 2.382893340703943 -8.449574973281287 -1.540654535043063 -10.25350487592474 -1.524502340440594 -10.14001771049218 -1.439682122421367 -10.12888782919359 6.238839170943551 -9.153274357170988 6.298833285700818 -9.112877702812414 6.338533754401055 -9.130256761262144 -7.349453083953662 7.472791483684338 -7.366122874349985 7.542563229943737 -7.138123085184278 7.57659911827452 9.082276873057205 -9.578298123958279 9.157511467552011 -9.550447235340323 9.18649728474279 -9.577967266196051 -15.84106025971079 -7.802581354588299 -16.02577925248045 -7.905519240484162 -16.08720237835226 -7.729472326927488 11.61928007962442 -9.563403606333257 11.52701752301233 -9.540456369846153 11.60485452531269 -9.529500667208096 7.477425664162507 -12.21359236987914 7.357611013346843 -12.13910516746961 7.514430752388228 -12.1561721246241 8.012955099589016 7.36622824461213 7.763935256677664 7.334256585784075 7.782028681595612 7.403804813469619 -4.472627024158272 -7.140105044838997 -4.616561152049331 -7.009602977725914 -4.397930765304884 -6.965464273665069 -1.907041218627021 -9.652654549627787 -1.90040429998779 -9.581964242946295 -1.862323480858624 -9.646297176069183 -2.018224417106208 -8.444456047060598 -2.103325621452177 -8.454168264145315 -2.053887850389722 -8.397104188734629 1.990083414864688 -9.647830565521002 1.945365855454683 -9.641473191466572 1.983446591116788 -9.577140253326217 -2.441442317070226 -9.962434291685895 -2.335028471376848 -9.840651469745062 -2.216347901821768 -9.918014774313466 5.619407371413129 -9.769189997372809 5.580372030501779 -9.750902291957752 5.645238539763041 -9.701195762185026 -7.120154071111422 7.505763881131445 -7.348152995148785 7.471740560249816 -7.136818631874857 7.575542696086022 8.571682981362905 -9.941388359690892 8.543741861368087 -9.913207592295294 8.627578642942691 -9.885342329960086 -17.30873164025513 -5.807842919854194 -17.30042791571163 -5.84240661150004 -17.52869218706355 -5.739481514788718 10.44002827943813 -10.22387272263708 10.42852130822453 -10.18928591467931 10.51999094326319 -10.18967947586913 13.00007191924083 -9.728127183555126 13.01129475757121 -9.664357513014636 13.07625308512217 -9.711458331365444 6.75421226631954 -12.88691426647534 6.598425021674292 -12.86475524284705 6.774513419890265 -12.74136749502083 -8.706701726069261 7.061200937314908 -8.926615639431279 7.0212023372878 -8.726810540056269 7.130405775807971 -7.592880588982362 -7.886585728392562 -7.633057415635026 -7.902042458245666 -7.717839839828695 -7.744500298881613 -5.539662779684833 -9.783784531621299 -5.565493975714329 -9.715790278759508 -5.500627515195189 -9.765496821452649 -6.546767267113827 -8.86477506768734 -6.506817002793847 -8.84775404024936 -6.521452258115116 -8.916084992530603 -4.307539566629169 -10.46302344215784 -4.236882415719203 -10.43054065850127 -4.197033327748333 -10.54754831571461 -4.183166013910026 8.095177530899505 -4.193202844330219 8.165736723659775 -3.87818205344835 8.193143526319274 -17.99768512551199 -4.44821867621306 -18.20772947711836 -4.362708196412636 -18.25068134367565 -4.115679117601889 10.39364211255814 -11.12909175208168 10.404918891182 -11.09446224364395 10.48511055506974 -11.1296301725986 13.75946256675644 -9.10711749848984 13.69168837461222 -9.062539591759453 13.76093359521591 -9.071388525216449 3.314176340585103 -13.55179243198169 3.367676503565271 -13.41155116498354 3.393401801089565 -13.52547294854093 -8.930111430721901 7.023576888020984 -8.950242232747243 7.092782337603858 -8.730319162413187 7.132794853398441 -1.887520876410273 -6.965628159730111 -2.328824417541305 -6.847337843858353 -2.009431466254339 -6.823957987372525 -8.497255295655442 -9.965506187960209 -8.553150880097793 -9.909460134073417 -8.469314236614467 -9.937325408418628 -5.874101238397566 -9.083629668760038 -5.861678596705763 -9.015028149574606 -5.800960042567156 -9.054749242212123 -1.069468892170816 -10.43148323287195 -1.12784662685244 -10.31939180273221 -0.7560415793383726 -10.39445817435967 -3.869230301757583 8.124053248754537 -4.184252351615299 8.096637706176612 -3.87927179928428 8.194610267316962 -8.283416306050794 -12.0090750480539 -8.267032979264023 -12.04181760167526 -8.745552588827549 -11.94967989073469 5.581058484167266 -13.48312572992086 5.515989391869519 -13.43217272378933 5.554950723307702 -13.41377833247973 10.7540593980047 -11.85583002706053 10.68854426789727 -11.83609738632692 10.74742395131375 -11.78678634013501 -6.455515058226985 -12.82829110315036 -6.40736757203113 -12.71896075360123 -6.243447410381162 -12.84104224457879 -3.730550544774442 8.184213897068409 -4.050089217144411 8.162100559980363 -3.738611724340771 8.254924337111099 -6.789357545558712 -10.89796702217291 -6.813753411785932 -10.92745619740967 -7.192776391768387 -10.71412771831276 -10.45039944883282 -10.22156671107636 -10.35892983701128 -10.2211731503276 -10.3704368965475 -10.25575991952401 -9.31243785406706 -9.479580890652926 -9.283118771410861 -9.45228023310394 -9.259975742136748 -9.526014246534382 -2.922748154376651 -12.02158136272815 -2.889989145479664 -11.96637960618612 -2.559457503250584 -12.11909158407499 -16.66245416592098 3.122852859843346 -16.70092479697012 3.187077533745165 -16.54905902340839 3.243354827939089 -7.816380735472926 -11.71470824484129 -8.280273560523812 -11.66449702498086 -8.306038928107515 -11.53401638521053 -5.501207800824206 -13.50172963510977 -5.475100091914485 -13.43238222556532 -5.436138655390553 -13.45077662008532 12.24605122471798 -10.94799925093522 12.21924215364737 -10.97686048198976 12.20418030919195 -10.9086410758723 -7.120645559002742 -13.16877513383195 -7.191200289378312 -13.13009160936637 -6.979967747121975 -13.149619879602 -4.046915306220754 8.157532044061622 -4.054962696160851 8.228241312738671 -3.735428159960213 8.25033577252891 -6.003717679093289 -10.49976845512194 -5.610095722923115 -10.69605544639521 -6.122001358535752 -10.59345887466921 -10.41541767711593 -11.16350779648839 -10.33522592600749 -11.12833991688703 -10.32394925781765 -11.16296937672707 -11.27447212688236 -9.76393293959965 -11.26074218892122 -9.729851739696969 -11.20381765168273 -9.798417488865258 -8.944366430493115 -9.607239634683738 -8.968917873877935 -9.533788053713632 -8.89348850031559 -9.561311101334495 -2.129279084614208 -11.97511880962241 -2.463535233103457 -11.82750889987764 -2.027241597610338 -11.87025468706373 -16.66146154028098 3.122677811701418 -16.54806239403512 3.24317744817157 -16.50961297116488 3.178951358590919 -7.166230498382989 -11.61830630362956 -7.169787853271556 -11.65337994249353 -7.66688026064009 -11.48571992597951 -11.07860540252045 -11.64028442056426 -11.10796073898341 -11.6129993474125 -11.01248111088695 -11.62185212441992 -11.30391686197207 -11.55531934197853 -11.26505197444156 -11.51409731109688 -11.20858812876708 -11.56512696321413 -6.459410281560207 -13.50393031460893 -6.319730071361994 -13.48069229262466 -6.039372967742235 -13.60329889884792 -17.10284554313597 2.959046935256939 -16.98944398312366 3.079550740424591 -16.95099789614945 3.015323313437506 -12.78181866068961 -9.811849976624592 -12.78619287012304 -9.77626833855374 -12.70530928752901 -9.827560921884508 -11.59334749276988 -9.603998235513227 -11.51555518208066 -9.615148469281399 -11.53811771297429 -9.673416449426592 -2.807864160330112 -12.37859176931993 -2.81964309402998 -12.31838935422885 -2.372494295509015 -12.42681527498888 -17.1030221698742 2.959066855560852 -17.14147186864163 3.02329284292782 -16.98962142196237 3.079571133669681 -13.5651865570709 -9.324125563345955 -13.49605717866754 -9.31473296910154 -13.48795982698588 -9.378794899876009 -3.003948839719733 -12.73790184325345 -3.056274745672789 -12.68840325281481 -2.620380130903866 -12.72680484274118 -3.061828660353814 -12.44218577334851 -2.678221898967927 -12.43193504188406 -2.616303497280888 -12.55467185804887</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 10 9 11 10 12 11 1 12 6 13 16 14 18 15 12 16 8 17 8 18 2 19 20 20 22 21 11 22 10 23 18 24 10 25 12 26 6 27 24 28 16 29 26 30 18 31 8 32 8 33 20 34 28 35 30 36 31 37 32 38 36 39 11 40 22 41 31 42 38 43 39 44 16 45 24 46 42 47 38 48 44 49 45 50 8 51 28 52 26 53 20 54 48 55 28 56 50 57 30 58 32 59 31 60 39 61 32 62 52 63 36 64 22 65 38 66 45 67 39 68 42 69 24 70 54 71 45 72 44 73 56 74 26 75 28 76 58 77 28 78 48 79 60 80 50 81 32 82 62 83 64 84 30 85 50 86 32 87 39 88 66 89 68 90 36 91 52 92 39 93 45 94 70 95 42 96 54 97 72 98 45 99 56 100 74 101 44 102 76 103 56 104 28 105 78 106 58 107 48 108 80 109 60 110 50 111 62 112 82 113 62 114 32 115 66 116 64 117 50 118 84 119 39 120 70 121 66 122 68 123 52 124 86 125 45 126 74 127 70 128 72 129 54 130 88 131 74 132 56 133 90 134 56 135 76 136 92 137 58 138 78 139 94 140 80 141 96 142 60 143 62 144 98 145 82 146 84 147 50 148 82 149 62 150 66 151 98 152 64 153 84 154 100 155 66 156 70 157 98 158 102 159 68 160 86 161 70 162 74 163 98 164 104 165 72 166 88 167 74 168 90 169 98 170 56 171 92 172 90 173 92 174 76 175 106 176 78 177 96 178 94 179 80 180 108 181 96 182 82 183 98 184 110 185 82 186 110 187 84 188 84 189 112 190 100 191 102 192 86 193 114 194 104 195 88 196 116 197 90 198 118 199 98 200 90 201 92 202 118 203 92 204 106 205 120 206 96 207 122 208 94 209 108 210 124 211 96 212 110 213 98 214 126 215 84 216 110 217 112 218 100 219 112 220 128 221 130 222 102 223 114 224 132 225 104 226 116 227 98 228 118 229 134 230 118 231 92 232 120 233 120 234 106 235 136 236 96 237 124 238 122 239 108 240 138 241 124 242 98 243 140 244 126 245 110 246 126 247 112 248 112 249 142 250 128 251 130 252 114 253 144 254 132 255 116 256 146 257 98 258 134 259 148 260 134 261 118 262 120 263 150 264 120 265 136 266 124 267 152 268 122 269 124 270 138 271 146 272 98 273 148 274 140 275 126 276 140 277 142 278 112 279 126 280 142 281 128 282 142 283 154 284 130 285 144 286 156 287 138 288 132 289 146 290 148 291 134 292 150 293 134 294 120 295 150 296 150 297 136 298 158 299 156 300 152 301 124 302 140 303 148 304 160 305 140 306 160 307 142 308 142 309 160 310 154 311 156 312 144 313 152 314 148 315 150 316 160 317 160 318 150 319 158 320 160 321 158 322 154 323</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID220\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID221\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 4 7 5 3 5 9 13 14 15 17 7 4 9 13 19 21 3 9 15 14 23 13 15 19 17 25 7 9 19 27 29 21 9 33 34 35 23 14 37 40 41 34 43 25 17 46 47 41 27 29 9 29 49 21 33 35 51 33 40 34 23 37 53 40 46 41 55 25 43 57 47 46 59 29 27 61 49 29 63 33 51 51 35 65 67 40 33 53 37 69 71 46 40 73 55 43 75 57 46 57 77 47 59 79 29 61 81 49 83 63 51 67 33 63 85 51 65 67 71 40 87 53 69 71 75 46 89 55 73 91 57 75 93 77 57 95 79 59 61 97 81 83 99 63 83 51 85 99 67 63 101 85 65 99 71 67 87 69 103 99 75 71 89 73 105 99 91 75 91 93 57 107 77 93 95 97 79 97 109 81 111 99 83 85 111 83 101 113 85 115 87 103 117 89 105 99 119 91 119 93 91 121 107 93 95 123 97 97 125 109 127 99 111 113 111 85 129 113 101 115 103 131 117 105 133 135 119 99 121 93 119 137 107 121 123 125 97 125 139 109 127 141 99 113 127 111 129 143 113 145 115 131 147 117 133 149 135 99 121 119 135 137 121 151 123 153 125 147 139 125 141 149 99 143 141 127 143 127 113 155 143 129 157 145 131 147 133 139 151 135 149 151 121 135 159 137 151 125 153 157 161 149 141 143 161 141 155 161 143 153 145 157 161 151 149 159 151 161 155 159 161</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID220\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID227\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID230\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID228\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID229\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID228\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"816\" source=\"#ID232\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2448\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID232\">-0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1615252941846848 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.030722618103027 -0.1571999192237854 0.1615252941846848 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1615252941846848 -2.030722618103027 -0.1571999192237854 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1615252941846848 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.04564905166626 -0.1687948554754257 -0.1706530898809433 -2.038688659667969 -0.1488334983587265 -0.1706530898809433 -2.038688659667969 -0.1488334983587265 -0.1801174134016037 -2.008158206939697 -0.1905468553304672 -0.1801174134016037 -2.008158206939697 -0.1905468553304672 -0.1706530898809433 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 0.1615252941846848 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 0.1615252941846848 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 0.1615252941846848 -2.038688659667969 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 0.1615252941846848 -2.038688659667969 -0.1488334983587265 0.1709899455308914 -2.008158206939697 -0.1905468553304672 0.1709899455308914 -2.008158206939697 -0.1905468553304672 0.1709899455308914 -2.04564905166626 -0.1687948554754257 0.1709899455308914 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.2164027541875839 -2.04564905166626 -0.1687948554754257 -0.2164027541875839 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.034487009048462 -0.1905468553304672 -0.2164027541875839 -2.034487009048462 -0.1905468553304672 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.1706530898809433 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.1706530898809433 -1.998634099960327 -0.1363122016191483 0.1615252941846848 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 0.1615252941846848 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.1706530898809433 -2.044009208679199 -0.1363122016191483 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.1706530898809433 -2.044009208679199 -0.1363122016191483 0.1615252941846848 -2.044009208679199 -0.1363122016191483 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 0.1615252941846848 -2.044009208679199 -0.1363122016191483 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.2072749584913254 -2.034487009048462 -0.1905468553304672 0.2072749584913254 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.04564905166626 -0.1687948554754257 0.2072749584913254 -2.04564905166626 -0.1687948554754257 -0.2164027541875839 -2.053104400634766 -0.1409582644701004 -0.2164027541875839 -2.053104400634766 -0.1409582644701004 -0.1801174134016037 -2.053104400634766 -0.1409582644701004 -0.1801174134016037 -2.053104400634766 -0.1409582644701004 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.008158206939697 -0.1905468553304672 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.008158206939697 -0.1905468553304672 -0.1801174134016037 -2.001414299011231 -0.1687948554754257 -0.1801174134016037 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.1706530898809433 -1.996765375137329 -0.1215425506234169 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.1706530898809433 -1.996765375137329 -0.1215425506234169 0.1615252941846848 -1.996765375137329 -0.1215425506234169 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 0.1615252941846848 -1.996765375137329 -0.1215425506234169 0.1709899455308914 -2.001414299011231 -0.1687948554754257 0.1709899455308914 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.1706530898809433 -2.045880794525147 -0.1215425506234169 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.1706530898809433 -2.045880794525147 -0.1215425506234169 0.1615252941846848 -2.045880794525147 -0.1215425506234169 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 0.1615252941846848 -2.045880794525147 -0.1215425506234169 0.1709899455308914 -2.053104400634766 -0.1409582644701004 0.1709899455308914 -2.053104400634766 -0.1409582644701004 0.2072749584913254 -2.008158206939697 -0.1905468553304672 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.008158206939697 -0.1905468553304672 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.053104400634766 -0.1409582644701004 0.2072749584913254 -2.053104400634766 -0.1409582644701004 -0.2258673459291458 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.038688659667969 -0.1488334983587265 -0.2258673459291458 -2.038688659667969 -0.1488334983587265 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -1.998634099960327 -0.1067729070782661 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.1706530898809433 -1.998634099960327 -0.1067729070782661 0.1615252941846848 -1.998634099960327 -0.1067729070782661 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 0.1615252941846848 -1.998634099960327 -0.1067729070782661 -0.1801174134016037 -1.996166825294495 -0.1409582644701004 -0.1801174134016037 -1.996166825294495 -0.1409582644701004 0.1709899455308914 -1.996166825294495 -0.1409582644701004 0.1709899455308914 -1.996166825294495 -0.1409582644701004 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.1706530898809433 -2.044009208679199 -0.1067729070782661 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.1706530898809433 -2.044009208679199 -0.1067729070782661 0.1615252941846848 -2.044009208679199 -0.1067729070782661 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 0.1615252941846848 -2.044009208679199 -0.1067729070782661 -0.1801174134016037 -2.055723428726196 -0.1202674210071564 -0.1801174134016037 -2.055723428726196 -0.1202674210071564 0.1709899455308914 -2.055723428726196 -0.1202674210071564 0.1709899455308914 -2.055723428726196 -0.1202674210071564 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.2167398035526276 -2.038688659667969 -0.1488334983587265 0.2167398035526276 -2.038688659667969 -0.1488334983587265 0.2167398035526276 -2.044009208679199 -0.1363122016191483 0.2167398035526276 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.045880794525147 -0.1215425506234169 -0.2258673459291458 -2.045880794525147 -0.1215425506234169 -0.2164027541875839 -2.055723428726196 -0.1202674210071564 -0.2164027541875839 -2.055723428726196 -0.1202674210071564 -0.2258673459291458 -2.011924266815186 -0.1571999192237854 -0.2258673459291458 -2.011924266815186 -0.1571999192237854 -0.2164027541875839 -2.001414299011231 -0.1687948554754257 -0.2164027541875839 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.003956317901611 -0.09425179660320282 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -2.003956317901611 -0.09425179660320282 0.1615252941846848 -2.003956317901611 -0.09425179660320282 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 0.1615252941846848 -2.003956317901611 -0.09425179660320282 -0.1801174134016037 -1.993547916412354 -0.1202674210071564 -0.1801174134016037 -1.993547916412354 -0.1202674210071564 0.1709899455308914 -1.993547916412354 -0.1202674210071564 0.1709899455308914 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -2.001414299011231 -0.1687948554754257 0.2072749584913254 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 0.1615252941846848 -2.038688659667969 -0.09425181150436401 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 0.1615252941846848 -2.038688659667969 -0.09425181150436401 -0.1801174134016037 -2.054501533508301 -0.0963137224316597 -0.1801174134016037 -2.054501533508301 -0.0963137224316597 0.1709899455308914 -2.054501533508301 -0.0963137224316597 0.1709899455308914 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.055723428726196 -0.1202674210071564 0.2072749584913254 -2.055723428726196 -0.1202674210071564 0.2167398035526276 -2.011924266815186 -0.1571999192237854 0.2167398035526276 -2.011924266815186 -0.1571999192237854 0.2167398035526276 -2.045880794525147 -0.1215425506234169 0.2167398035526276 -2.045880794525147 -0.1215425506234169 -0.6118695139884949 -2.033908367156982 -0.1215425282716751 -0.6118695139884949 -2.033908367156982 -0.1215425282716751 -0.6130750775337219 -2.032478094100952 -0.1363121122121811 -0.6130750775337219 -2.032478094100952 -0.1363121122121811 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.6165025234222412 -2.028409481048584 -0.1488334983587265 -0.6165025234222412 -2.028409481048584 -0.1488334983587265 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.6216357350349426 -2.022314310073853 -0.1571999192237854 -0.6216357350349426 -2.022314310073853 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.6276903748512268 -2.015124082565308 -0.1601379364728928 -0.6276903748512268 -2.015124082565308 -0.1601379364728928 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.1801174134016037 -1.996166825294495 -0.09957704693078995 -0.1801174134016037 -1.996166825294495 -0.09957704693078995 0.1709899455308914 -1.996166825294495 -0.09957704693078995 0.1709899455308914 -1.996166825294495 -0.09957704693078995 -0.2164027541875839 -1.996166825294495 -0.1409582644701004 -0.2164027541875839 -1.996166825294495 -0.1409582644701004 0.2072749584913254 -1.996166825294495 -0.1409582644701004 0.2072749584913254 -1.996166825294495 -0.1409582644701004 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 0.1615252941846848 -2.030722618103027 -0.08588515222072601 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 0.1615252941846848 -2.030722618103027 -0.08588515222072601 -0.1801174134016037 -2.050714015960693 -0.06386412680149078 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.1801174134016037 -2.050714015960693 -0.06386412680149078 0.1709899455308914 -2.050714015960693 -0.06386412680149078 0.1615252941846848 -2.038688659667969 -0.09425181150436401 0.1615252941846848 -2.038688659667969 -0.09425181150436401 0.1709899455308914 -2.050714015960693 -0.06386412680149078 -0.2164027541875839 -2.054501533508301 -0.0963137224316597 -0.2164027541875839 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.054501533508301 -0.0963137224316597 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.6185629963874817 -2.015124082565308 -0.1601379364728928 0.6185629963874817 -2.015124082565308 -0.1601379364728928 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.6125085949897766 -2.022314310073853 -0.1571999192237854 0.6125085949897766 -2.022314310073853 -0.1571999192237854 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.607374906539917 -2.028409481048584 -0.1488334983587265 0.607374906539917 -2.028409481048584 -0.1488334983587265 0.603947639465332 -2.032478094100952 -0.1363121122121811 0.603947639465332 -2.032478094100952 -0.1363121122121811 0.6027420163154602 -2.033908367156982 -0.1215425282716751 0.6027420163154602 -2.033908367156982 -0.1215425282716751 -0.6130750775337219 -2.032478094100952 -0.106772854924202 -0.6130750775337219 -2.032478094100952 -0.106772854924202 -0.2258673459291458 -2.044009208679199 -0.1067729070782661 -0.2258673459291458 -2.044009208679199 -0.1067729070782661 -0.6337444186210632 -2.007936954498291 -0.1571999192237854 -0.6337444186210632 -2.007936954498291 -0.1571999192237854 -0.2258673459291458 -2.003956317901611 -0.1488334983587265 -0.2258673459291458 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1801174134016037 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -1.999191641807556 -0.06404808163642883 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1709899455308914 -1.999191641807556 -0.06404808163642883 0.1709899455308914 -1.999191641807556 -0.06404808163642883 -0.2164027541875839 -1.993547916412354 -0.1202674210071564 -0.2164027541875839 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -1.993547916412354 -0.1202674210071564 0.2167398035526276 -2.003956317901611 -0.1488334983587265 0.2167398035526276 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.1615252941846848 -2.030722618103027 -0.08588515222072601 0.1615252941846848 -2.030722618103027 -0.08588515222072601 0.1709899455308914 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.050714015960693 -0.06386412680149078 -0.2164027541875839 -2.050714015960693 -0.06386412680149078 0.2072749584913254 -2.050714015960693 -0.06386412680149078 0.2072749584913254 -2.050714015960693 -0.06386412680149078 0.2167398035526276 -2.044009208679199 -0.1067729070782661 0.2167398035526276 -2.044009208679199 -0.1067729070782661 0.6246169209480286 -2.007936954498291 -0.1571999192237854 0.6246169209480286 -2.007936954498291 -0.1571999192237854 0.603947639465332 -2.032478094100952 -0.106772854924202 0.603947639465332 -2.032478094100952 -0.106772854924202 -0.6553853750228882 -2.078316926956177 -0.106772854924202 -0.6553853750228882 -2.078316926956177 -0.106772854924202 -0.6546038389205933 -2.079557180404663 -0.1215425282716751 -0.6546038389205933 -2.079557180404663 -0.1215425282716751 -0.6553853750228882 -2.078316926956177 -0.1363121122121811 -0.6553853750228882 -2.078316926956177 -0.1363121122121811 -0.657609224319458 -2.074785947799683 -0.1488334983587265 -0.657609224319458 -2.074785947799683 -0.1488334983587265 -0.6609358191490173 -2.069501638412476 -0.1571999192237854 -0.6609358191490173 -2.069501638412476 -0.1571999192237854 -0.6648588180541992 -2.063269138336182 -0.1601379364728928 -0.6648588180541992 -2.063269138336182 -0.1601379364728928 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -1.996166825294495 -0.09957704693078995 -0.2164027541875839 -1.996166825294495 -0.09957704693078995 0.2072749584913254 -1.996166825294495 -0.09957704693078995 0.2072749584913254 -1.996166825294495 -0.09957704693078995 -0.2258673459291458 -1.998634099960327 -0.1363122016191483 -0.2258673459291458 -1.998634099960327 -0.1363122016191483 0.2167398035526276 -1.998634099960327 -0.1363122016191483 0.2167398035526276 -1.998634099960327 -0.1363122016191483 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 -0.2258673459291458 -2.038688659667969 -0.09425181150436401 -0.2258673459291458 -2.038688659667969 -0.09425181150436401 0.2167398035526276 -2.038688659667969 -0.09425181150436401 0.2167398035526276 -2.038688659667969 -0.09425181150436401 0.6557315587997437 -2.063269138336182 -0.1601379364728928 0.6557315587997437 -2.063269138336182 -0.1601379364728928 0.6518086194992065 -2.069501638412476 -0.1571999192237854 0.6518086194992065 -2.069501638412476 -0.1571999192237854 0.6484818458557129 -2.074785947799683 -0.1488334983587265 0.6484818458557129 -2.074785947799683 -0.1488334983587265 0.6462578773498535 -2.078316926956177 -0.1363121122121811 0.6462578773498535 -2.078316926956177 -0.1363121122121811 0.6454765200614929 -2.079557180404663 -0.1215425282716751 0.6454765200614929 -2.079557180404663 -0.1215425282716751 0.6462578773498535 -2.078316926956177 -0.106772854924202 0.6462578773498535 -2.078316926956177 -0.106772854924202 -0.657609224319458 -2.074785947799683 -0.09425179660320282 -0.657609224319458 -2.074785947799683 -0.09425179660320282 -0.6165025234222412 -2.028409481048584 -0.09425179660320282 -0.6165025234222412 -2.028409481048584 -0.09425179660320282 -0.6687852740287781 -2.057035684585571 -0.1571999192237854 -0.6687852740287781 -2.057035684585571 -0.1571999192237854 -0.6388782262802124 -2.00184178352356 -0.1488334387540817 -0.6388782262802124 -2.00184178352356 -0.1488334387540817 -0.2164027541875839 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.2164027541875839 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.006489753723145 -0.04094164818525314 -0.2164027541875839 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.2072749584913254 -2.006489753723145 -0.04094164818525314 0.2072749584913254 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -1.999191641807556 -0.06404808163642883 0.2072749584913254 -1.999191641807556 -0.06404808163642883 -0.2258673459291458 -1.996765375137329 -0.1215425506234169 -0.2258673459291458 -1.996765375137329 -0.1215425506234169 0.2167398035526276 -1.996765375137329 -0.1215425506234169 0.2167398035526276 -1.996765375137329 -0.1215425506234169 0.6297513246536255 -2.00184178352356 -0.1488334387540817 0.6297513246536255 -2.00184178352356 -0.1488334387540817 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.607374906539917 -2.028409481048584 -0.09425179660320282 0.607374906539917 -2.028409481048584 -0.09425179660320282 0.6596575975418091 -2.057035684585571 -0.1571999192237854 0.6596575975418091 -2.057035684585571 -0.1571999192237854 0.6484818458557129 -2.074785947799683 -0.09425179660320282 0.6484818458557129 -2.074785947799683 -0.09425179660320282 -0.7177013754844666 -2.096775054931641 -0.09390366077423096 -0.7177013754844666 -2.096775054931641 -0.09390366077423096 -0.7165237665176392 -2.098670482635498 -0.1065675467252731 -0.7165237665176392 -2.098670482635498 -0.1065675467252731 -0.7165124416351318 -2.100502252578735 -0.1215060725808144 -0.7165124416351318 -2.100502252578735 -0.1215060725808144 -0.7165237665176392 -2.098670482635498 -0.1364448219537735 -0.7165237665176392 -2.098670482635498 -0.1364448219537735 -0.7177013754844666 -2.096775054931641 -0.1491094380617142 -0.7177013754844666 -2.096775054931641 -0.1491094380617142 -0.7177552580833435 -2.088963031768799 -0.1575712114572525 -0.7177552580833435 -2.088963031768799 -0.1575712114572525 -0.7180059552192688 -2.080292224884033 -0.160543292760849 -0.7180059552192688 -2.080292224884033 -0.160543292760849 -0.2258673459291458 -1.998634099960327 -0.1067729070782661 -0.2258673459291458 -1.998634099960327 -0.1067729070782661 0.2167398035526276 -1.998634099960327 -0.1067729070782661 0.2167398035526276 -1.998634099960327 -0.1067729070782661 -0.6423077583312988 -1.997771978378296 -0.1363121122121811 -0.6423077583312988 -1.997771978378296 -0.1363121122121811 0.6331802010536194 -1.997771978378296 -0.1363121122121811 0.6331802010536194 -1.997771978378296 -0.1363121122121811 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.2072749584913254 -2.025967359542847 -0.03255007416009903 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.6216357350349426 -2.022314310073853 -0.08588512986898422 -0.6216357350349426 -2.022314310073853 -0.08588512986898422 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.6125085949897766 -2.022314310073853 -0.08588512986898422 0.6125085949897766 -2.022314310073853 -0.08588512986898422 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.708878755569458 -2.080292224884033 -0.160543292760849 0.708878755569458 -2.080292224884033 -0.160543292760849 0.7086280584335327 -2.088963031768799 -0.1575712114572525 0.7086280584335327 -2.088963031768799 -0.1575712114572525 0.7085741758346558 -2.096775054931641 -0.1491094380617142 0.7085741758346558 -2.096775054931641 -0.1491094380617142 0.707396388053894 -2.098670482635498 -0.1364448219537735 0.707396388053894 -2.098670482635498 -0.1364448219537735 0.7073850035667419 -2.100502252578735 -0.1215060725808144 0.7073850035667419 -2.100502252578735 -0.1215060725808144 0.707396388053894 -2.098670482635498 -0.1065675467252731 0.707396388053894 -2.098670482635498 -0.1065675467252731 0.7085741758346558 -2.096775054931641 -0.09390366077423096 0.7085741758346558 -2.096775054931641 -0.09390366077423096 -0.7177552580833435 -2.088963031768799 -0.08544092625379562 -0.7177552580833435 -2.088963031768799 -0.08544092625379562 -0.6609358191490173 -2.069501638412476 -0.08588512986898422 -0.6609358191490173 -2.069501638412476 -0.08588512986898422 -0.7180686593055725 -2.071079969406128 -0.1575712114572525 -0.7180686593055725 -2.071079969406128 -0.1575712114572525 -0.6721116900444031 -2.051751613616943 -0.1488334387540817 -0.6721116900444031 -2.051751613616943 -0.1488334387540817 -0.2258673459291458 -2.003956317901611 -0.09425179660320282 -0.2258673459291458 -2.003956317901611 -0.09425179660320282 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.003956317901611 -0.09425179660320282 0.2167398035526276 -2.003956317901611 -0.09425179660320282 -0.6435112357139587 -1.996342778205872 -0.1215425282716751 -0.6435112357139587 -1.996342778205872 -0.1215425282716751 0.6343837380409241 -1.996342778205872 -0.1215425282716751 0.6343837380409241 -1.996342778205872 -0.1215425282716751 0.6629846692085266 -2.051751613616943 -0.1488334387540817 0.6629846692085266 -2.051751613616943 -0.1488334387540817 -0.6276903748512268 -2.015124082565308 -0.08294735848903656 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.6276903748512268 -2.015124082565308 -0.08294735848903656 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.6185629963874817 -2.015124082565308 -0.08294735848903656 0.6185629963874817 -2.015124082565308 -0.08294735848903656 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.6518086194992065 -2.069501638412476 -0.08588512986898422 0.6518086194992065 -2.069501638412476 -0.08588512986898422 0.7089411616325378 -2.071079969406128 -0.1575712114572525 0.7089411616325378 -2.071079969406128 -0.1575712114572525 0.7086280584335327 -2.088963031768799 -0.08544092625379562 0.7086280584335327 -2.088963031768799 -0.08544092625379562 -0.7801192998886108 -2.044661283493042 -0.08544092625379562 -0.7801192998886108 -2.044661283493042 -0.08544092625379562 -0.7858226895332336 -2.048605442047119 -0.09390366077423096 -0.7858226895332336 -2.048605442047119 -0.09390366077423096 -0.7880875468254089 -2.050557851791382 -0.1065675467252731 -0.7880875468254089 -2.050557851791382 -0.1065675467252731 -0.789569079875946 -2.051625490188599 -0.1215060725808144 -0.789569079875946 -2.051625490188599 -0.1215060725808144 -0.7880875468254089 -2.050557851791382 -0.1364448219537735 -0.7880875468254089 -2.050557851791382 -0.1364448219537735 -0.7858226895332336 -2.048605442047119 -0.1491094380617142 -0.7858226895332336 -2.048605442047119 -0.1491094380617142 -0.7801192998886108 -2.044661283493042 -0.1575712114572525 -0.7801192998886108 -2.044661283493042 -0.1575712114572525 -0.7726680636405945 -2.039297103881836 -0.160543292760849 -0.7726680636405945 -2.039297103881836 -0.160543292760849 -0.6423077583312988 -1.997771978378296 -0.106772854924202 -0.6423077583312988 -1.997771978378296 -0.106772854924202 0.6331802010536194 -1.997771978378296 -0.106772854924202 0.6331802010536194 -1.997771978378296 -0.106772854924202 -0.6743361949920654 -2.048221349716187 -0.1363121122121811 -0.6743361949920654 -2.048221349716187 -0.1363121122121811 0.6652085781097412 -2.048221349716187 -0.1363121122121811 0.6652085781097412 -2.048221349716187 -0.1363121122121811 -0.6337444186210632 -2.007936954498291 -0.08588512986898422 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.6337444186210632 -2.007936954498291 -0.08588512986898422 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.6246169209480286 -2.007936954498291 -0.08588512986898422 0.6246169209480286 -2.007936954498291 -0.08588512986898422 0.2167398035526276 -2.011924266815186 -0.08588515222072601 -0.6648588180541992 -2.063269138336182 -0.08294735848903656 -0.6648588180541992 -2.063269138336182 -0.08294735848903656 0.6557315587997437 -2.063269138336182 -0.08294735848903656 0.6557315587997437 -2.063269138336182 -0.08294735848903656 0.7635407447814941 -2.039297103881836 -0.160543292760849 0.7635407447814941 -2.039297103881836 -0.160543292760849 0.770991861820221 -2.044661283493042 -0.1575712114572525 0.770991861820221 -2.044661283493042 -0.1575712114572525 0.7766953706741333 -2.048605442047119 -0.1491094380617142 0.7766953706741333 -2.048605442047119 -0.1491094380617142 0.7789598703384399 -2.050557851791382 -0.1364448219537735 0.7789598703384399 -2.050557851791382 -0.1364448219537735 0.7804414033889771 -2.051625490188599 -0.1215060725808144 0.7804414033889771 -2.051625490188599 -0.1215060725808144 0.7789598703384399 -2.050557851791382 -0.1065675467252731 0.7789598703384399 -2.050557851791382 -0.1065675467252731 0.7766953706741333 -2.048605442047119 -0.09390366077423096 0.7766953706741333 -2.048605442047119 -0.09390366077423096 0.770991861820221 -2.044661283493042 -0.08544092625379562 0.770991861820221 -2.044661283493042 -0.08544092625379562 -0.7726680636405945 -2.039297103881836 -0.08246933668851852 -0.7726680636405945 -2.039297103881836 -0.08246933668851852 -0.7180059552192688 -2.080292224884033 -0.08246933668851852 -0.7180059552192688 -2.080292224884033 -0.08246933668851852 -0.7639322280883789 -2.032893419265747 -0.1575712114572525 -0.7639322280883789 -2.032893419265747 -0.1575712114572525 -0.7181222438812256 -2.063268184661865 -0.1491094380617142 -0.7181222438812256 -2.063268184661865 -0.1491094380617142 -0.6388782262802124 -2.00184178352356 -0.09425176680088043 -0.6388782262802124 -2.00184178352356 -0.09425176680088043 0.6297513246536255 -2.00184178352356 -0.09425176680088043 0.6297513246536255 -2.00184178352356 -0.09425176680088043 -0.6748786568641663 -2.047461271286011 -0.1215425282716751 -0.6748786568641663 -2.047461271286011 -0.1215425282716751 0.6657513976097107 -2.047461271286011 -0.1215425282716751 0.6657513976097107 -2.047461271286011 -0.1215425282716751 0.70899498462677 -2.063268184661865 -0.1491094380617142 0.70899498462677 -2.063268184661865 -0.1491094380617142 -0.6687852740287781 -2.057035684585571 -0.08588512986898422 -0.6687852740287781 -2.057035684585571 -0.08588512986898422 0.6596575975418091 -2.057035684585571 -0.08588512986898422 0.6596575975418091 -2.057035684585571 -0.08588512986898422 0.708878755569458 -2.080292224884033 -0.08246933668851852 0.708878755569458 -2.080292224884033 -0.08246933668851852 0.7548051476478577 -2.032893419265747 -0.1575712114572525 0.7548051476478577 -2.032893419265747 -0.1575712114572525 0.7635407447814941 -2.039297103881836 -0.08246933668851852 0.7635407447814941 -2.039297103881836 -0.08246933668851852 -0.7931804656982422 -1.947999954223633 -0.1005254313349724 -0.7931804656982422 -1.947999954223633 -0.1005254313349724 -0.799446702003479 -1.950582027435303 -0.1023855954408646 -0.799446702003479 -1.950582027435303 -0.1023855954408646 -0.8047597408294678 -1.952769994735718 -0.1076830625534058 -0.8047597408294678 -1.952769994735718 -0.1076830625534058 -0.8083102107048035 -1.954230546951294 -0.1156112402677536 -0.8083102107048035 -1.954230546951294 -0.1156112402677536 -0.8095563650131226 -1.954744100570679 -0.1249629184603691 -0.8095563650131226 -1.954744100570679 -0.1249629184603691 -0.8083102107048035 -1.954230546951294 -0.1343148648738861 -0.8083102107048035 -1.954230546951294 -0.1343148648738861 -0.8047597408294678 -1.952769994735718 -0.1422431319952011 -0.8047597408294678 -1.952769994735718 -0.1422431319952011 -0.799446702003479 -1.950582027435303 -0.1475403010845184 -0.799446702003479 -1.950582027435303 -0.1475403010845184 -0.7931804656982422 -1.947999954223633 -0.1494005620479584 -0.7931804656982422 -1.947999954223633 -0.1494005620479584 -0.6743361949920654 -2.048221349716187 -0.106772854924202 -0.6743361949920654 -2.048221349716187 -0.106772854924202 0.6652085781097412 -2.048221349716187 -0.106772854924202 0.6652085781097412 -2.048221349716187 -0.106772854924202 -0.7181578874588013 -2.058051824569702 -0.1364448219537735 -0.7181578874588013 -2.058051824569702 -0.1364448219537735 0.7090305685997009 -2.058051824569702 -0.1364448219537735 0.7090305685997009 -2.058051824569702 -0.1364448219537735 -0.6721116900444031 -2.051751613616943 -0.09425176680088043 -0.6721116900444031 -2.051751613616943 -0.09425176680088043 0.6629846692085266 -2.051751613616943 -0.09425176680088043 0.6629846692085266 -2.051751613616943 -0.09425176680088043 -0.7180686593055725 -2.071079969406128 -0.08544092625379562 -0.7180686593055725 -2.071079969406128 -0.08544092625379562 0.7089411616325378 -2.071079969406128 -0.08544092625379562 0.7089411616325378 -2.071079969406128 -0.08544092625379562 0.7840532064437866 -1.947999954223633 -0.1494005620479584 0.7840532064437866 -1.947999954223633 -0.1494005620479584 0.7903189063072205 -1.950582027435303 -0.1475403010845184 0.7903189063072205 -1.950582027435303 -0.1475403010845184 0.7956326007843018 -1.952769994735718 -0.1422431319952011 0.7956326007843018 -1.952769994735718 -0.1422431319952011 0.7991833090782166 -1.954230546951294 -0.1343148648738861 0.7991833090782166 -1.954230546951294 -0.1343148648738861 0.8004284501075745 -1.954744100570679 -0.1249629184603691 0.8004284501075745 -1.954744100570679 -0.1249629184603691 0.7991833090782166 -1.954230546951294 -0.1156112402677536 0.7991833090782166 -1.954230546951294 -0.1156112402677536 0.7956326007843018 -1.952769994735718 -0.1076830625534058 0.7956326007843018 -1.952769994735718 -0.1076830625534058 0.7903189063072205 -1.950582027435303 -0.1023855954408646 0.7903189063072205 -1.950582027435303 -0.1023855954408646 0.7840532064437866 -1.947999954223633 -0.1005254313349724 0.7840532064437866 -1.947999954223633 -0.1005254313349724 -0.7869135737419128 -1.945419311523438 -0.1023855954408646 -0.7869135737419128 -1.945419311523438 -0.1023855954408646 -0.7639322280883789 -2.032893419265747 -0.08544092625379562 -0.7639322280883789 -2.032893419265747 -0.08544092625379562 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7591820955276489 -2.029483556747437 -0.1491094380617142 -0.7591820955276489 -2.029483556747437 -0.1491094380617142 -0.7181704640388489 -2.056217908859253 -0.1215060725808144 -0.7181704640388489 -2.056217908859253 -0.1215060725808144 0.7090427279472351 -2.056217908859253 -0.1215060725808144 0.7090427279472351 -2.056217908859253 -0.1215060725808144 0.7500547170639038 -2.029483556747437 -0.1491094380617142 0.7500547170639038 -2.029483556747437 -0.1491094380617142 -0.7181222438812256 -2.063268184661865 -0.093903549015522 -0.7181222438812256 -2.063268184661865 -0.093903549015522 0.70899498462677 -2.063268184661865 -0.093903549015522 0.70899498462677 -2.063268184661865 -0.093903549015522 0.7548051476478577 -2.032893419265747 -0.08544092625379562 0.7548051476478577 -2.032893419265747 -0.08544092625379562 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7777858972549439 -1.945419311523438 -0.1023855954408646 0.7777858972549439 -1.945419311523438 -0.1023855954408646 -0.7966580986976624 -1.939646244049072 -0.1261951923370361 -0.7966580986976624 -1.939646244049072 -0.1261951923370361 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7181578874588013 -2.058051824569702 -0.1065675467252731 -0.7181578874588013 -2.058051824569702 -0.1065675467252731 0.7090305685997009 -2.058051824569702 -0.1065675467252731 0.7090305685997009 -2.058051824569702 -0.1065675467252731 -0.7549589276313782 -2.026442289352417 -0.1364448219537735 -0.7549589276313782 -2.026442289352417 -0.1364448219537735 0.7458319067955017 -2.026442289352417 -0.1364448219537735 0.7458319067955017 -2.026442289352417 -0.1364448219537735 -0.7591820955276489 -2.029483556747437 -0.093903549015522 -0.7591820955276489 -2.029483556747437 -0.093903549015522 0.7500547170639038 -2.029483556747437 -0.093903549015522 0.7500547170639038 -2.029483556747437 -0.093903549015522 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7875306010246277 -1.939646244049072 -0.1261951923370361 0.7875306010246277 -1.939646244049072 -0.1261951923370361 0.7777858972549439 -1.945419311523438 -0.1475403010845184 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.7534772753715515 -2.025376796722412 -0.1215060725808144 -0.7534772753715515 -2.025376796722412 -0.1215060725808144 0.7443500757217407 -2.025376796722412 -0.1215060725808144 0.7443500757217407 -2.025376796722412 -0.1215060725808144 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1422431319952011 -0.7549589276313782 -2.026442289352417 -0.1065675467252731 -0.7549589276313782 -2.026442289352417 -0.1065675467252731 0.7458319067955017 -2.026442289352417 -0.1065675467252731 0.7458319067955017 -2.026442289352417 -0.1065675467252731 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1076830625534058 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID229\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"816\" source=\"#ID233\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2448\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID233\">0.004488788996345108 0.5271326193254718 -0.8497711765036595 1.291284191913415e-005 0.001617569529035767 -0.9999986916501827 -1.184745062262114e-005 -0.001670929507781155 -0.9999986039261345 1.184745062262114e-005 0.001670929507781155 0.9999986039261345 -1.291284191913415e-005 -0.001617569529035767 0.9999986916501827 -0.004488788996345108 -0.5271326193254718 0.8497711765036595 1 -0 -0 1 -0 -0 1 -0 -0 -1 0 0 -1 0 0 -1 0 0 -0.004488791232266994 0.5271326188299925 -0.8497711767992057 1.184746344884554e-005 -0.001670930314586899 -0.9999986039247862 -1.291285525506731e-005 0.001617570336250907 -0.9999986916488768 1.291285525506731e-005 -0.001617570336250907 0.9999986916488768 -1.184746344884554e-005 0.001670930314586899 0.9999986039247862 0.004488791232266994 -0.5271326188299925 0.8497711767992057 -0.004485367141985272 -0.527177061858388 -0.8497436242373103 0.004485367141985272 0.527177061858388 0.8497436242373103 0.00450622159746319 0.5290845697262511 -0.8485571354036818 -0.00450622159746319 -0.5290845697262511 0.8485571354036818 1 -0 -0 -1 0 0 1 -0 -0 -1 0 0 -0.004506223850392898 0.529084570208921 -0.8485571350907679 0.004506223850392898 -0.529084570208921 0.8485571350907679 0.004485369376187172 -0.5271770613638911 -0.8497436245323006 -0.004485369376187172 0.5271770613638911 0.8497436245323006 0.9507847764805869 -0.2039779657307184 -0.2332408590044168 0.9283498084308596 -0.2517515811088936 -0.273473535457379 0.9686109501656518 -0.01105674204799939 -0.2483356109672492 -0.9686109501656518 0.01105674204799939 0.2483356109672492 -0.9283498084308596 0.2517515811088936 0.273473535457379 -0.9507847764805869 0.2039779657307184 0.2332408590044168 -0.004503646784154841 -0.5291183014219199 -0.8485361160646174 0.004503646784154841 0.5291183014219199 0.8485361160646174 0.969486083937551 -0.003329945691308154 -0.245123733067863 0.9518157133827669 0.1909252690972961 -0.2399883109190519 -0.9518157133827669 -0.1909252690972961 0.2399883109190519 -0.969486083937551 0.003329945691308154 0.245123733067863 0.007114028034887915 0.8353288408671091 -0.5497045735854221 -0.007114028034887915 -0.8353288408671091 0.5497045735854221 1 -0 -0 -1 0 0 -0.007114031583790776 0.8353288406995403 -0.5497045737941306 0.007114031583790776 -0.8353288406995403 0.5497045737941306 1 -0 -0 -1 0 0 0.004503649035743961 -0.5291183019045855 -0.8485361157516932 -0.004503649035743961 0.5291183019045855 0.8485361157516932 -0.9686088766577514 -0.01105706906332083 -0.2483436838003697 -0.9694840650325932 -0.003330049845388831 -0.2451317164626107 -0.9518126386933298 0.190931131146001 -0.2399958415951187 0.9518126386933298 -0.190931131146001 0.2399958415951187 0.9694840650325932 0.003330049845388831 0.2451317164626107 0.9686088766577514 0.01105706906332083 0.2483436838003697 -0.9283454604112509 -0.2517587064041628 -0.2734817359231238 -0.9507815996920912 -0.2039844377888872 -0.2332481486033696 0.9507815996920912 0.2039844377888872 0.2332481486033696 0.9283454604112509 0.2517587064041628 0.2734817359231238 0.4905464884192308 -0.8041624847744235 -0.3356886068680113 -0.4905464884192308 0.8041624847744235 0.3356886068680113 0.4815280316392164 -0.7597623620804733 -0.4369117850454046 -0.4815280316392164 0.7597623620804733 0.4369117850454046 0.519680435363879 0.6575142275990822 -0.5455339454193402 -0.519680435363879 -0.6575142275990822 0.5455339454193402 0.4571189376483561 0.7721023227499775 -0.4414751182652633 -0.4571189376483561 -0.7721023227499775 0.4414751182652633 1 -0 -0 -1 0 0 0.008217380333334407 0.9652946846739656 -0.2610338031762294 -0.008217380333334407 -0.9652946846739656 0.2610338031762294 -0.4571111868059822 0.7721059895862967 -0.4414767306912019 -0.008217384433657467 0.9652946846164316 -0.2610338032599099 0.008217384433657467 -0.9652946846164316 0.2610338032599099 0.4571111868059822 -0.7721059895862967 0.4414767306912019 1 -0 -0 -1 0 0 -0.00712138017653666 -0.8359415949672389 -0.5487722075214908 0.00712138017653666 0.8359415949672389 0.5487722075214908 -0.4815203449022732 -0.7597661310854951 -0.4369137025781796 0.007121383731482815 -0.8359415950919007 -0.5487722072854615 -0.007121383731482815 0.8359415950919007 0.5487722072854615 0.4815203449022732 0.7597661310854951 0.4369137025781796 -0.5196764354100114 0.6575156548129167 -0.5455360356158752 0.5196764354100114 -0.6575156548129167 0.5455360356158752 -0.4905403092732229 -0.8041655748678753 -0.3356902339591523 0.4905403092732229 0.8041655748678753 0.3356902339591523 -2.426986289955367e-017 -0.7364613431137198 -0.6764796302174486 -0.4608133353180124 -0.8211656453082652 -0.3366571742270609 0.4608133353180124 0.8211656453082652 0.3366571742270609 2.426986289955367e-017 0.7364613431137198 0.6764796302174486 -1.844326444024408e-017 -0.5303087739567048 -0.8478045790537678 -0.5361227053423503 -0.6069014056672079 -0.586722360759812 0.5361227053423503 0.6069014056672079 0.586722360759812 1.844326444024408e-017 0.5303087739567048 0.8478045790537678 -1.84392460472661e-017 0.5302604510494343 -0.8478348035159034 -1.84392460472661e-017 0.5302604510494343 -0.8478348035159034 1.84392460472661e-017 -0.5302604510494343 0.8478348035159034 1.84392460472661e-017 -0.5302604510494343 0.8478348035159034 1 -0 -0 -1 0 0 0.1971558893645083 0.9573518568225626 -0.2112036399479925 0.008510868807066028 0.9999637818978656 -2.160247128884518e-006 -0.008510868807066028 -0.9999637818978656 2.160247128884518e-006 -0.1971558893645083 -0.9573518568225626 0.2112036399479925 -0.197150763684683 0.957352793676903 -0.2112041780305861 -0.008510873054234794 0.9999637818617173 -2.160248014874601e-006 0.008510873054234794 -0.9999637818617173 2.160248014874601e-006 0.197150763684683 -0.957352793676903 0.2112041780305861 1 -0 -0 -1 0 0 0.4037720748323315 -0.884629716808151 -0.2332345937581405 -0.00822400988133839 -0.9653911586344171 -0.2606765744979195 0.00822400988133839 0.9653911586344171 0.2606765744979195 -0.4037720748323315 0.884629716808151 0.2332345937581405 -0.4037636373369974 -0.8846333061352755 -0.2332355865655364 0.008224013985609841 -0.9653911586268107 -0.2606765743966046 -0.008224013985609841 0.9653911586268107 0.2606765743966046 0.4037636373369974 0.8846333061352755 0.2332355865655364 0 0.5302604510494342 -0.8478348035159036 0 0.5302604510494342 -0.8478348035159036 -0 -0.5302604510494342 0.8478348035159036 -0 -0.5302604510494342 0.8478348035159036 0 -0.530308773956705 -0.8478045790537678 0 -0.73646134311372 -0.6764796302174486 0.5361196403178399 -0.6069025460851478 -0.5867239818013534 -0.5361196403178399 0.6069025460851478 0.5867239818013534 -0 0.73646134311372 0.6764796302174486 -0 0.530308773956705 0.8478045790537678 0.4608080865995052 -0.8211681029947009 -0.3366583638476655 -0.4608080865995052 0.8211681029947009 0.3366583638476655 -0.385742073903384 -0.904729134348099 -0.1807435915391077 0.385742073903384 0.904729134348099 0.1807435915391077 0.3995130760539953 -0.8964009062419867 -0.1919758249114185 -0.3995130760539953 0.8964009062419867 0.1919758249114185 -1.844326444024408e-017 -0.5303087739567048 -0.8478045790537678 1.844326444024408e-017 0.5303087739567048 0.8478045790537678 -0.5296020992421222 0.6561021605196902 -0.5376351657394927 1.84392460472661e-017 0.5302604510494341 -0.8478348035159036 -1.84392460472661e-017 -0.5302604510494341 0.8478348035159036 0.5296020992421222 -0.6561021605196902 0.5376351657394927 0.3363076841507985 0.9088032483512361 -0.2469287293276507 -0.3363076841507985 -0.9088032483512361 0.2469287293276507 1 -0 -0 -1 0 0 0.1687919888662012 0.9856383382082573 -0.005131349594128028 0.008215461209643943 0.9652926464581436 0.2610414007220816 -0.008215461209643943 -0.9652926464581436 -0.2610414007220816 -0.1687919888662012 -0.9856383382082573 0.005131349594128028 -0.1687866907192891 0.985639246299354 -0.005131197761984126 -0.008215465309037044 0.9652926463999988 0.2610414008080769 0.008215465309037044 -0.9652926463999988 -0.2610414008080769 0.1687866907192891 -0.985639246299354 0.005131197761984126 -0.3362995806041703 0.9088060116563134 -0.2469295957612287 0.3362995806041703 -0.9088060116563134 0.2469295957612287 1 -0 -0 -1 0 0 0.4054173713524426 -0.9140433536476199 -0.01270836961564649 -0.0085183821524327 -0.9999637179227549 1.898996257460486e-006 0.0085183821524327 0.9999637179227549 -1.898996257460486e-006 -0.4054173713524426 0.9140433536476199 0.01270836961564649 -0.4054090877927001 -0.9140470268562219 -0.01270843146859746 0.008518386403168153 -0.9999637178865443 1.898997386052117e-006 -0.008518386403168153 0.9999637178865443 -1.898997386052117e-006 0.4054090877927001 0.9140470268562219 0.01270843146859746 -0.3995054948484711 -0.8964041377589346 -0.1919765126116719 0.3995054948484711 0.8964041377589346 0.1919765126116719 0.5295992578884425 0.6561032421321235 -0.5376366446846116 -1.843957923624534e-017 0.530260451049434 -0.8478348035159036 1.843957923624534e-017 -0.530260451049434 0.8478348035159036 -0.5295992578884425 -0.6561032421321235 0.5376366446846116 0 -0.530308773956705 -0.8478045790537678 -0 0.530308773956705 0.8478045790537678 0.3857360849191797 -0.9047315918850344 -0.1807440716493763 -0.3857360849191797 0.9047315918850344 0.1807440716493763 -0.4309198326745419 -0.8770224328284038 -0.2124611732140556 0.4309198326745419 0.8770224328284038 0.2124611732140556 -0.5327637842338816 -0.7277249795655932 -0.4319480342877498 0.5327637842338816 0.7277249795655932 0.4319480342877498 -0.9518042055811592 -0.190973276116534 -0.2399957542277287 -0.9694840947041866 0.00331998404263018 -0.2451317356475093 0.9694840947041866 -0.00331998404263018 0.2451317356475093 0.9518042055811592 0.190973276116534 0.2399957542277287 -0.9686097296440215 0.01105536758733848 -0.2483404326452789 0.9686097296440215 -0.01105536758733848 0.2483404326452789 1 -0 -0 -1 0 0 0.2033484727129228 0.9512258883415256 0.2319885945347255 0.007110930513536101 0.8353317410655891 0.5497002065085688 -0.007110930513536101 -0.8353317410655891 -0.5497002065085688 -0.2033484727129228 -0.9512258883415256 -0.2319885945347255 -0.2033426129463571 0.9512269403845534 0.2319894171008448 -0.007110934060996255 0.8353317408991332 0.5497002067156275 0.007110934060996255 -0.8353317408991332 -0.5497002067156275 0.2033426129463571 -0.9512269403845534 -0.2319894171008448 0.1614152367059206 0.9743133093652557 -0.1570308777052931 -0.1614152367059206 -0.9743133093652557 0.1570308777052931 -0.1614100521526407 0.9743141614547412 -0.1570309200534283 0.1614100521526407 -0.9743141614547412 0.1570309200534283 1 -0 -0 -1 0 0 0.4682095373053083 -0.861961179723896 0.1944293028978371 -0.008224404365587646 -0.9653911472719587 0.2606766041319447 0.008224404365587646 0.9653911472719587 -0.2606766041319447 -0.4682095373053083 0.861961179723896 -0.1944293028978371 -0.4682019899704703 -0.8619651573705387 0.1944298435602781 0.008224408470051839 -0.9653911472649058 0.2606766040285682 -0.008224408470051839 0.9653911472649058 -0.2606766040285682 0.4682019899704703 0.8619651573705387 -0.1944298435602781 0.3830001893543202 -0.9231847577728879 -0.03226078068443357 -0.3830001893543202 0.9231847577728879 0.03226078068443357 -0.3829925019228482 -0.9231879427444888 -0.03226090268538033 0.3829925019228482 0.9231879427444888 0.03226090268538033 0.969482534593383 0.003320064267726581 -0.2451379046407311 0.9686081273789292 0.011055620241521 -0.2483466706774216 -0.9686081273789292 -0.011055620241521 0.2483466706774216 -0.969482534593383 -0.003320064267726581 0.2451379046407311 0.9518018292501137 -0.1909778067330918 -0.2400015732689168 -0.9518018292501137 0.1909778067330918 0.2400015732689168 0.5327584513434122 -0.7277280272118245 -0.4319494772916799 -0.5327584513434122 0.7277280272118245 0.4319494772916799 0.4309135647672034 -0.8770253533943997 -0.2124618299908239 -0.4309135647672034 0.8770253533943997 0.2124618299908239 -0.4170594428444811 -0.9088731196315648 -0.003327693711584223 0.4170594428444811 0.9088731196315648 0.003327693711584223 -0.389889799865892 -0.920520092443446 -0.02507395797325029 0.389889799865892 0.920520092443446 0.02507395797325029 -0.5808401353985782 0.4821791438864718 -0.6558414521140539 0.5808401353985782 -0.4821791438864718 0.6558414521140539 -0.4351576601727508 0.8653660605412787 -0.2485546057836074 0.4351576601727508 -0.8653660605412787 0.2485546057836074 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381909181881517 -0.8670377328596581 0.4981877931206408 0.007381909181881517 -0.8670377328596581 0.4981877931206408 0.007381909181881517 -0.8670377328596581 0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 0.3983226025615785 0.8257120510117484 0.3994229751811265 0.006168303546718681 0.724165675140333 0.6895984534349694 -0.006168303546718681 -0.724165675140333 -0.6895984534349694 -0.3983226025615785 -0.8257120510117484 -0.3994229751811265 -0.3983149935338047 0.82571494562648 0.3994245792327065 -0.006168306624853458 0.7241656751259054 0.6895984534225869 0.006168306624853458 -0.7241656751259054 -0.6895984534225869 0.3983149935338047 -0.82571494562648 -0.3994245792327065 0.1616139654679756 0.9868432281948369 0.00462267581696379 -0.1616139654679756 -0.9868432281948369 -0.00462267581696379 -0.1616088560296658 0.9868440655201934 0.004622553445772205 0.1616088560296658 -0.9868440655201934 -0.004622553445772205 0.4351517892962836 0.8653687240638655 -0.248555610848599 -0.4351517892962836 -0.8653687240638655 0.248555610848599 1 -0 -0 -1 0 0 -0.00711704432119061 -0.8354119817383284 0.5495781731911931 -0.007114343072514042 -0.8359433818649293 0.5487695768160543 0.007114343072514042 0.8359433818649293 -0.5487695768160543 0.00711704432119061 0.8354119817383284 -0.5495781731911931 0.007117047871469148 -0.8354119815705081 0.5495781734003199 0.007114346624128299 -0.8359433819897826 0.548769576579821 -0.007114346624128299 0.8359433819897826 -0.548769576579821 -0.007117047871469148 0.8354119815705081 -0.5495781734003199 0.4205973650660567 -0.9033844932356513 0.08363201468849163 -0.4205973650660567 0.9033844932356513 -0.08363201468849163 -0.4205896914261071 -0.9033880303471145 0.08363239857646454 0.4205896914261071 0.9033880303471145 -0.08363239857646454 0.3898839349670044 -0.9205225746850979 -0.02507402540007215 -0.3898839349670044 0.9205225746850979 0.02507402540007215 0.5808354696970706 0.4821816265219495 -0.6558437589749793 -0.5808354696970706 -0.4821816265219495 0.6558437589749793 0.4170529949296572 -0.9088760784289615 -0.003327683848527164 -0.4170529949296572 0.9088760784289615 0.003327683848527164 0.375636554559482 -0.9267659594296408 -0.001426646816343268 -0.375636554559482 0.9267659594296408 0.001426646816343268 0.3615379352414891 -0.8963778338843952 -0.2565094546055576 -0.3615379352414891 0.8963778338843952 0.2565094546055576 -0.01317855971440936 -0.5315374133761069 -0.8469322899413455 0.3116445996116282 -0.7750366101410903 -0.5497234727332603 -0.3116445996116282 0.7750366101410903 0.5497234727332603 0.01317855971440936 0.5315374133761069 0.8469322899413455 -0.0009604106469768857 -0.003481589405118227 -0.9999934780520339 0.1909697935805264 -0.4542111818604366 -0.8701854631127529 -0.1909697935805264 0.4542111818604366 0.8701854631127529 0.0009604106469768857 0.003481589405118227 0.9999934780520339 -0.0164933863787913 0.09664605067485214 -0.9951821487017912 0.0164933863787913 -0.09664605067485214 0.9951821487017912 0.006165103925877515 0.7241364373548521 0.6896291841189768 -0.006165103925877515 -0.7241364373548521 -0.6896291841189768 0.1113597444880326 0.3410123073759261 0.9334396678552434 0.1127160108475753 0.2964221010645066 0.9483823273865414 0.06760990946514464 0.8518280438394437 0.5194399713833947 -0.06760990946514464 -0.8518280438394437 -0.5194399713833947 -0.1127160108475753 -0.2964221010645066 -0.9483823273865414 -0.1113597444880326 -0.3410123073759261 -0.9334396678552434 -0.1113597986625791 0.3410123265116291 0.9334396544013737 -0.0676099442996163 0.8518280349382184 0.5194399814464574 -0.1127160663844531 0.2964220991850565 0.9483823213733691 0.1127160663844531 -0.2964220991850565 -0.9483823213733691 0.0676099442996163 -0.8518280349382184 -0.5194399814464574 0.1113597986625791 -0.3410123265116291 -0.9334396544013737 -0.006165107002489781 0.7241364373411164 0.6896291841058957 0.006165107002489781 -0.7241364373411164 -0.6896291841058957 0.2520097343969997 0.9561807716861601 0.1490282712333903 -0.2520097343969997 -0.9561807716861601 -0.1490282712333903 -0.2520026543425559 0.9561827210020266 0.1490277365508405 0.2520026543425559 -0.9561827210020266 -0.1490277365508405 -0.2089810829856228 0.9593342405053436 -0.1897491026281595 0.2089810829856228 -0.9593342405053436 0.1897491026281595 0.2089764398195915 0.9593353216206724 -0.1897487504340671 -0.2089764398195915 -0.9593353216206724 0.1897487504340671 0.06511765981521719 0.8653027985546354 0.4970017677973647 -0.06511765981521719 -0.8653027985546354 -0.4970017677973647 -0.06511769217474663 0.8653027967235247 0.4970017667456341 0.06511769217474663 -0.8653027967235247 -0.4970017667456341 -0.004487133044256028 -0.5271690917589494 0.8497485594757354 -0.006053605977966533 -0.7118585486726083 0.7022967752570072 0.006053605977966533 0.7118585486726083 -0.7022967752570072 0.004487133044256028 0.5271690917589494 -0.8497485594757354 0.004487135279260867 -0.527169091262663 0.8497485597718208 0.006053608948403288 -0.711858542716506 0.7022967812685976 -0.006053608948403288 0.711858542716506 -0.7022967812685976 -0.004487135279260867 0.527169091262663 -0.8497485597718208 0.5230269111733532 -0.814656438621079 0.2505548586670826 0.9380631612546022 -0.3098704059889023 0.1549768917913092 -0.9380631612546022 0.3098704059889023 -0.1549768917913092 -0.5230269111733532 0.814656438621079 -0.2505548586670826 -0.5230218643211199 -0.8146592720761156 0.2505561810502257 -0.9380593085260298 -0.3098796964138935 0.1549816358092144 0.9380593085260298 0.3098796964138935 -0.1549816358092144 0.5230218643211199 0.8146592720761156 -0.2505561810502257 -0.4590575121611554 -0.8828407405763209 0.09928961328892443 0.4590575121611554 0.8828407405763209 -0.09928961328892443 0.4590519990438607 -0.8828435600932946 0.09929003260968643 -0.4590519990438607 0.8828435600932946 -0.09929003260968643 0.0009604082012670587 -0.003481586759837493 -0.9999934780635926 0.01649402129472259 0.09664494668425393 -0.9951822453912284 -0.01649402129472259 -0.09664494668425393 0.9951822453912284 -0.0009604082012670587 0.003481586759837493 0.9999934780635926 0.01317855819193988 -0.5315374160970591 -0.8469322882573572 -0.1909713844454057 -0.4542065493211052 -0.8701875320164152 0.1909713844454057 0.4542065493211052 0.8701875320164152 -0.01317855819193988 0.5315374160970591 0.8469322882573572 -0.3116373339559766 -0.775037729972948 -0.549726012849302 0.3116373339559766 0.775037729972948 0.549726012849302 -0.3615400346458993 -0.8963775113842584 -0.2565076225627719 0.3615400346458993 0.8963775113842584 0.2565076225627719 -0.3756351912458759 -0.9267665112885345 -0.001427113083451963 0.3756351912458759 0.9267665112885345 0.001427113083451963 0.3660163128328314 -0.8951196799710379 0.2545443326196945 -0.3660163128328314 0.8951196799710379 -0.2545443326196945 -0.4604682813638613 -0.8639448175538647 0.2038830892438882 0.4604682813638613 0.8639448175538647 -0.2038830892438882 -0.2452495829276179 0.537978731336872 -0.8064933519273415 0.2452495829276179 -0.537978731336872 0.8064933519273415 -0.3420778914638995 0.8352557333912953 -0.4305003786393016 0.3420778914638995 -0.8352557333912953 0.4305003786393016 0.9533547772720478 0.2073353234407452 0.2193780579417316 0.4929498273097556 0.8475452044592331 0.1966407743918826 -0.4929498273097556 -0.8475452044592331 -0.1966407743918826 -0.9533547772720478 -0.2073353234407452 -0.2193780579417316 0.9819633613475416 0.008174349160209676 0.1888945128553083 0.9712395268594098 0.1527028035397002 0.1826899976928819 -0.9712395268594098 -0.1527028035397002 -0.1826899976928819 -0.9819633613475416 -0.008174349160209676 -0.1888945128553083 -0.9819621457066552 0.008174608269845507 0.1889008210114933 -0.9533518229372173 0.2073416252522031 0.2193849405498462 -0.9712376137677075 0.1527078377669839 0.1826959602381562 0.9712376137677075 -0.1527078377669839 -0.1826959602381562 0.9533518229372173 -0.2073416252522031 -0.2193849405498462 0.9819621457066552 -0.008174608269845507 -0.1889008210114933 -0.4929436839516181 0.8475484893400156 0.1966420165418993 0.4929436839516181 -0.8475484893400156 -0.1966420165418993 -0.1616126467929127 0.9868433789549992 0.004636573009163386 0.1616126467929127 -0.9868433789549992 -0.004636573009163386 0.1616086986990226 0.9868440259602455 0.004636478338450456 -0.1616086986990226 -0.9868440259602455 -0.004636478338450456 0.3420719352007187 0.8352574249071307 -0.4305018295960471 -0.3420719352007187 -0.8352574249071307 0.4305018295960471 -0.002537005133132722 -0.2983222820992422 0.9544618272136685 0.002537005133132722 0.2983222820992422 -0.9544618272136685 0.002537006399231014 -0.2983222820982839 0.9544618272106026 -0.002537006399231014 0.2983222820982839 -0.9544618272106026 0.9692117246097193 -0.1700508427884214 0.1780767917107711 0.9755244633565797 -0.1339045376042436 0.1744178781027079 -0.9755244633565797 0.1339045376042436 -0.1744178781027079 -0.9692117246097193 0.1700508427884214 -0.1780767917107711 -0.969209682975027 -0.1700564158979245 0.1780825815159918 -0.975522834811217 -0.1339089090479584 0.1744236303929958 0.975522834811217 0.1339089090479584 -0.1744236303929958 0.969209682975027 0.1700564158979245 -0.1780825815159918 -0.5420085214821976 -0.8034774453955865 0.2462737448070021 0.5420085214821976 0.8034774453955865 -0.2462737448070021 0.5420050527543967 -0.8034794852516837 0.2462747237708181 -0.5420050527543967 0.8034794852516837 -0.2462747237708181 0.4604621041029297 -0.8639479349109633 0.203883830766897 -0.4604621041029297 0.8639479349109633 -0.203883830766897 0.2452400623599147 0.537977272359414 -0.8064972202298221 -0.2452400623599147 -0.537977272359414 0.8064972202298221 -0.3660181200272975 -0.8951191958143714 0.2545434365610635 0.3660181200272975 0.8951191958143714 -0.2545434365610635 0.5349298534122274 -0.820438879235361 0.201816989788763 -0.5349298534122274 0.820438879235361 -0.201816989788763 0.5418619307912237 -0.8404674244212702 -0.0003955324055206845 -0.5418619307912237 0.8404674244212702 0.0003955324055206845 0.5346032101380197 -0.8189075422524407 -0.2087818118328113 -0.5346032101380197 0.8189075422524407 0.2087818118328113 0.5007885610287516 -0.7381352419440627 -0.452069885905855 -0.5007885610287516 0.7381352419440627 0.452069885905855 0.3684123294857594 -0.516149390177032 -0.7732154696478559 -0.3684123294857594 0.516149390177032 0.7732154696478559 0.0478582816317733 -0.0550397329247885 -0.9973365593814466 -0.0478582816317733 0.0550397329247885 0.9973365593814466 0.9820117227801273 -0.01516361406153519 0.1882100983767855 -0.9820117227801273 0.01516361406153519 -0.1882100983767855 -0.9820105098488078 -0.01516412257358528 0.188216385931347 0.9820105098488078 0.01516412257358528 -0.188216385931347 -0.1605722101379926 0.9819392217079419 0.1000596332343944 0.1605722101379926 -0.9819392217079419 -0.1000596332343944 0.1605682782363152 0.9819398513304203 0.100059764108343 -0.1605682782363152 -0.9819398513304203 -0.100059764108343 -0.1756091928408706 0.9545543256001183 -0.2408058364489564 0.1756091928408706 -0.9545543256001183 0.2408058364489564 0.1756049463341025 0.9545549760381938 -0.2408063548657312 -0.1756049463341025 -0.9545549760381938 0.2408063548657312 -4.224825819991032e-018 -0.7626436742213498 0.6468188511246096 -1.429016437196659e-017 -0.7626436742213498 0.6468188511246096 1.429016437196659e-017 0.7626436742213498 -0.6468188511246096 4.224825819991032e-018 0.7626436742213498 -0.6468188511246096 -1.013364126958988e-017 -0.7626436742213497 0.6468188511246096 0 -0.7626436742213497 0.6468188511246096 -0 0.7626436742213497 -0.6468188511246096 1.013364126958988e-017 0.7626436742213497 -0.6468188511246096 -0.5591105295910246 -0.7248419592501981 0.4024916766975165 0.5591105295910246 0.7248419592501981 -0.4024916766975165 0.5591056566767783 -0.7248450914082306 0.4024928050703792 -0.5591056566767783 0.7248450914082306 -0.4024928050703792 -0.04785727603751437 -0.05503628285538993 -0.9973367980274921 0.04785727603751437 0.05503628285538993 0.9973367980274921 -0.3684095361632931 -0.5161481207247707 -0.773217647972571 0.3684095361632931 0.5161481207247707 0.773217647972571 -0.500786033776766 -0.7381333534427802 -0.4520757689917162 0.500786033776766 0.7381333534427802 0.4520757689917162 -0.5346042318944263 -0.8189072324190625 -0.2087804107964212 0.5346042318944263 0.8189072324190625 0.2087804107964212 -0.5418602855356823 -0.8404684850344925 -0.0003957562555456968 0.5418602855356823 0.8404684850344925 0.0003957562555456968 -0.534930478721305 -0.8204385991749377 0.2018164708809996 0.534930478721305 0.8204385991749377 -0.2018164708809996 0.4951674708618757 -0.7385095350908808 0.4576164795766258 -0.4951674708618757 0.7385095350908808 -0.4576164795766258 0.3183395078452557 -0.7721101324745773 0.5500053645874112 -0.3183395078452557 0.7721101324745773 -0.5500053645874112 -0.3312334875777305 0.4585333926876312 -0.8246402273097425 0.3312334875777305 -0.4585333926876312 0.8246402273097425 -0.3953916543466458 0.760631889798606 -0.5148830623495241 0.3953916543466458 -0.760631889798606 0.5148830623495241 -0.4339903309879185 0.8776667121096652 0.2033556860862441 0 0.7418548498667967 0.6705604981872348 -0 -0.7418548498667967 -0.6705604981872348 0.4339903309879185 -0.8776667121096652 -0.2033556860862441 -3.5007466452076e-018 -0.0927257244181379 0.995691689244784 -0.545325893063524 0.6066233389940663 0.5784702195810603 0.545325893063524 -0.6066233389940663 -0.5784702195810603 3.5007466452076e-018 0.0927257244181379 -0.995691689244784 3.500835953124784e-018 -0.09272572441813787 0.995691689244784 0 0.7418548498667967 0.6705604981872347 0.5453237625103464 0.6066240261518271 0.5784715074546947 -0.5453237625103464 -0.6066240261518271 -0.5784715074546947 -0 -0.7418548498667967 -0.6705604981872347 -3.500835953124784e-018 0.09272572441813787 -0.995691689244784 0.433984687094243 0.8776692990887326 0.2033565656791167 -0.433984687094243 -0.8776692990887326 -0.2033565656791167 -0.1638429889992566 0.9864740220782488 -0.004947597452530763 0.1638429889992566 -0.9864740220782488 0.004947597452530763 0.1638388899380074 0.9864747034689766 -0.004947480133999534 -0.1638388899380074 -0.9864747034689766 0.004947480133999534 0.3954027592399868 0.7606273271792183 -0.5148812747941054 -0.3954027592399868 -0.7606273271792183 0.5148812747941054 -2.143303475908384e-017 -0.09272572441813802 0.995691689244784 2.143303475908384e-017 0.09272572441813802 -0.995691689244784 1.039644819016881e-017 -0.09272572441813794 0.995691689244784 -1.039644819016881e-017 0.09272572441813794 -0.995691689244784 -0.9729811604997007 -0.1604862499171054 0.1659874239218137 -0.9663649709820766 -0.1661986424099368 0.1962568575105194 0.9663649709820766 0.1661986424099368 -0.1962568575105194 0.9729811604997007 0.1604862499171054 -0.1659874239218137 0.9729797693100141 -0.1604903406621652 0.1659916234861693 0.9663632722055722 -0.166202713767299 0.1962617743436668 -0.9663632722055722 0.166202713767299 -0.1962617743436668 -0.9729797693100141 0.1604903406621652 -0.1659916234861693 -0.3183322774902897 -0.7721117779715709 0.550007239430014 0.3183322774902897 0.7721117779715709 -0.550007239430014 0.3312363991329317 0.4585259669551954 -0.8246431867888391 -0.3312363991329317 -0.4585259669551954 0.8246431867888391 -0.4951656625047575 -0.7385078120898534 0.4576212169015796 0.4951656625047575 0.7385078120898534 -0.4576212169015796 -0.1400766977702307 -0.9073438454459583 0.3963655697372422 0.1400766977702307 0.9073438454459583 -0.3963655697372422 -0.1256096743341652 -0.9833223113472117 0.1315273421020968 0.1256096743341652 0.9833223113472117 -0.1315273421020968 -0.128283290812836 -0.9917368882248544 0.001158374858148637 0.128283290812836 0.9917368882248544 -0.001158374858148637 -0.1153943029065925 -0.984098587901963 -0.1350337889050886 0.1153943029065925 0.984098587901963 0.1350337889050886 -0.1284831242963187 -0.9099543801398161 -0.3943033259248769 0.1284831242963187 0.9099543801398161 0.3943033259248769 -0.09849816820575726 -0.5903422102445749 -0.8011205812258603 0.09849816820575726 0.5903422102445749 0.8011205812258603 -0.03202782867604653 -0.1016115259451568 -0.9943084611856596 0.03202782867604653 0.1016115259451568 0.9943084611856596 -0.2141261850158152 0.9569679736873127 0.1958628965051106 0.2141261850158152 -0.9569679736873127 -0.1958628965051106 0.2141220647380355 0.9569688389538172 0.1958631733218463 -0.2141220647380355 -0.9569688389538172 -0.1958631733218463 -0.4672212444973646 0.8499038758801577 -0.2436549003287628 0.4672212444973646 -0.8499038758801577 0.2436549003287628 0.4672182636243016 0.8499080224456675 -0.243646152274948 -0.4672182636243016 -0.8499080224456675 0.243646152274948 -0.9826264533111563 -0.01797811170136815 0.1847215221699718 -0.9813579875627883 -0.003808794214706564 0.1921509649555376 0.9813579875627883 0.003808794214706564 -0.1921509649555376 0.9826264533111563 0.01797811170136815 -0.1847215221699718 0.9826255473396359 -0.01797857586882106 0.1847262962472046 0.9813570169983672 -0.00380888767080053 0.1921559199264434 -0.9813570169983672 0.00380888767080053 -0.1921559199264434 -0.9826255473396359 0.01797857586882106 -0.1847262962472046 -0.01040655362327202 -0.5310321088401302 0.8472877923247155 0.1945992146603698 -0.4494178078959073 0.8718685563773961 -0.1945992146603698 0.4494178078959073 -0.8718685563773961 0.01040655362327202 0.5310321088401302 -0.8472877923247155 0.01040654437201029 -0.5310321051968826 0.8472877947217229 -0.1946008373504995 -0.4494125680682662 0.8718708951242554 0.1946008373504995 0.4494125680682662 -0.8718708951242554 -0.01040654437201029 0.5310321051968826 -0.8472877947217229 0.03202750470163987 -0.101612159488225 -0.9943084068772254 -0.03202750470163987 0.101612159488225 0.9943084068772254 0.09849856501704039 -0.5903421861833855 -0.8011205501682033 -0.09849856501704039 0.5903421861833855 0.8011205501682033 0.1284865616602314 -0.9099544824154301 -0.3943019698210983 -0.1284865616602314 0.9099544824154301 0.3943019698210983 0.1153943190618475 -0.9840986892549881 -0.1350330364572579 -0.1153943190618475 0.9840986892549881 0.1350330364572579 0.1282830091798698 -0.9917369243417012 0.001158642749103654 -0.1282830091798698 0.9917369243417012 -0.001158642749103654 0.1256092611713195 -0.9833225359147746 0.1315260577609322 -0.1256092611713195 0.9833225359147746 -0.1315260577609322 0.1400799493552314 -0.9073439561764587 0.3963641671224688 -0.1400799493552314 0.9073439561764587 -0.3963641671224688 -0.09434577775386129 -0.5908641402970412 0.8012355720579669 0.09434577775386129 0.5908641402970412 -0.8012355720579669 0.3558044851785133 -0.5242703878370199 0.7736560791230648 -0.3558044851785133 0.5242703878370199 -0.7736560791230648 0.11044162975056 0.4763486881935899 -0.872292711006051 -0.11044162975056 -0.4763486881935899 0.872292711006051 -0.5138841473982002 0.7078534076519844 -0.4846304120959586 0.5138841473982002 -0.7078534076519844 0.4846304120959586 -0.5487656345747323 0.7204383497653253 0.424057616954591 0.5487656345747323 -0.7204383497653253 -0.424057616954591 -0.97240301549141 0.1423704772866765 0.1848324177745257 0.97240301549141 -0.1423704772866765 -0.1848324177745257 0.9724016040933897 0.1423740406102053 0.184837098324243 -0.9724016040933897 -0.1423740406102053 -0.184837098324243 0.5487607209511846 0.7204413695144796 0.4240588452482003 -0.5487607209511846 -0.7204413695144796 -0.4240588452482003 -0.4910713099762163 0.8711148161495533 0.002818794595687712 0.4910713099762163 -0.8711148161495533 -0.002818794595687712 0.4910715149506781 0.8711147029436044 0.002818070176919228 -0.4910715149506781 -0.8711147029436044 -0.002818070176919228 0.5138751071222991 0.7078565388566401 -0.4846354244975739 -0.5138751071222991 -0.7078565388566401 0.4846354244975739 -0.01952915716753109 0.09936770376786923 0.9948591214178152 -0.000901511437009039 -0.00239284428340388 0.9999967307813382 0.000901511437009039 0.00239284428340388 -0.9999967307813382 0.01952915716753109 -0.09936770376786923 -0.9948591214178152 0.0009015106142754519 -0.002392843584613443 0.9999967307837522 0.019530305448713 0.0993663276712274 0.9948592363215081 -0.019530305448713 -0.0993663276712274 -0.9948592363215081 -0.0009015106142754519 0.002392843584613443 -0.9999967307837522 -0.3558010816934756 -0.5242689737071172 0.7736586026625948 0.3558010816934756 0.5242689737071172 -0.7736586026625948 -0.1104368687109324 0.4763487936985649 -0.8722932561766407 0.1104368687109324 -0.4763487936985649 0.8722932561766407 0.09434667403723156 -0.5908640941187042 0.8012355005735802 -0.09434667403723156 0.5908640941187042 -0.8012355005735802 -0.5365507891276882 -0.2724842322812369 0.798664882065413 0.5365507891276882 0.2724842322812369 -0.798664882065413 -0.7718989017929135 -0.4700275721864217 0.4280726186004335 0.7718989017929135 0.4700275721864217 -0.4280726186004335 -0.8212626267043875 -0.5423479117822164 0.1771621871734457 0.8212626267043875 0.5423479117822164 -0.1771621871734457 -0.8298217026360002 -0.5580246638853392 0.002101506589023479 0.8298217026360002 0.5580246638853392 -0.002101506589023479 -0.8191525367658278 -0.5478711966426224 -0.1697830185839858 0.8191525367658278 0.5478711966426224 0.1697830185839858 -0.7636381136186676 -0.4827390762580249 -0.4287421319190264 0.7636381136186676 0.4827390762580249 0.4287421319190264 -0.5233844415973248 -0.2983440031957737 -0.7981601230649003 0.5233844415973248 0.2983440031957737 0.7981601230649003 -0.1044290352053733 0.005254070376865984 -0.9945184620461048 0.1044290352053733 -0.005254070376865984 0.9945184620461048 -0.472644591359042 0.8465163181847629 0.2449841082722667 0.472644591359042 -0.8465163181847629 -0.2449841082722667 0.4726405629488491 0.8465209651874089 0.2449758227939498 -0.4726405629488491 -0.8465209651874089 -0.2449758227939498 -0.5716476152068997 0.7948786592261468 -0.2034377573979513 0.5716476152068997 -0.7948786592261468 0.2034377573979513 0.5716538709212509 0.7948759531259698 -0.2034307523528113 -0.5716538709212509 -0.7948759531259698 0.2034307523528113 -0.2522332325838068 0.5353992599326737 0.8060558472239181 0.003454990292217633 0.5278882118816235 0.8493068343057785 -0.003454990292217633 -0.5278882118816235 -0.8493068343057785 0.2522332325838068 -0.5353992599326737 -0.8060558472239181 -0.00345498716885455 0.5278882133577253 0.8493068334010104 0.2522230714425461 0.5353976955645072 0.8060600658860997 -0.2522230714425461 -0.5353976955645072 -0.8060600658860997 0.00345498716885455 -0.5278882133577253 -0.8493068334010104 0.0449767607063262 -0.05522849264763451 0.9974602270748624 -0.0449767607063262 0.05522849264763451 -0.9974602270748624 -0.04497635205074753 -0.05522480061078004 0.9974604499195479 0.04497635205074753 0.05522480061078004 -0.9974604499195479 0.1044306828384715 0.005254899200190294 -0.9945182846565902 -0.1044306828384715 -0.005254899200190294 0.9945182846565902 0.5233819800666606 -0.2983432050961097 -0.7981620355006134 -0.5233819800666606 0.2983432050961097 0.7981620355006134 0.7636412175008654 -0.4827403031888474 -0.428735222032125 -0.7636412175008654 0.4827403031888474 0.428735222032125 0.8191529989231559 -0.5478741956857312 -0.1697711107842366 -0.8191529989231559 0.5478741956857312 0.1697711107842366 0.8298214721963223 -0.5580250124644846 0.002099939508719763 -0.8298214721963223 0.5580250124644846 -0.002099939508719763 0.8212619114047657 -0.5423522706732846 0.1771521588107895 -0.8212619114047657 0.5423522706732846 -0.1771521588107895 0.7719029417189524 -0.4700267448051407 0.4280662422260262 -0.7719029417189524 0.4700267448051407 -0.4280662422260262 0.5365496146771743 -0.27248320120415 0.7986660228476696 -0.5365496146771743 0.27248320120415 -0.7986660228476696 -0.1289437060681589 0.03485601270080709 0.9910391410252217 0.1289437060681589 -0.03485601270080709 -0.9910391410252217 -0.03479614492933991 -0.107556492015506 0.9935898697769491 0.03479614492933991 0.107556492015506 -0.9935898697769491 0.4117216244618857 0.3251528563313931 -0.8513289164418195 -0.4117216244618857 -0.3251528563313931 0.8513289164418195 0.2090209499597313 0.8118881659929046 -0.5451126933016783 -0.2090209499597313 -0.8118881659929046 0.5451126933016783 -0.40193394204585 0.7563622353385511 0.5161058759451913 0.40193394204585 -0.7563622353385511 -0.5161058759451913 0.4019449905548627 0.7563576842291382 0.5161039411546733 -0.4019449905548627 -0.7563576842291382 -0.5161039411546733 -0.5735166984635115 0.819193332634773 -0.0009382698162191664 0.5735166984635115 -0.819193332634773 0.0009382698162191664 0.5735121937818867 0.8191964859873223 -0.0009385784519762406 -0.5735121937818867 -0.8191964859873223 0.0009385784519762406 -0.2090240299687819 0.8118886554685469 -0.5451107832515193 0.2090240299687819 -0.8118886554685469 0.5451107832515193 -0.3159127438450883 0.468385233172462 0.825114786937094 0.3159127438450883 -0.468385233172462 -0.825114786937094 0.3159155219903057 0.4683779667290617 0.825117848097072 -0.3159155219903057 -0.4683779667290617 -0.825117848097072 0.03479582160481239 -0.1075568870946448 0.9935898383323755 -0.03479582160481239 0.1075568870946448 -0.9935898383323755 -0.4117181736895207 0.3251486966248509 -0.85133217402899 0.4117181736895207 -0.3251486966248509 0.85133217402899 0.1289448168390606 0.03485611312543633 0.9910389929705732 -0.1289448168390606 -0.03485611312543633 -0.9910389929705732 -0.2179986478772222 0.5715816519244338 0.7910568909421361 0.2179986478772222 -0.5715816519244338 -0.7910568909421361 -0.5815808283735376 0.4410522115439132 0.6835471357269907 0.5815808283735376 -0.4410522115439132 -0.6835471357269907 -0.8189788016617627 0.3296810862412729 0.4696638199855696 0.8189788016617627 -0.3296810862412729 -0.4696638199855696 -0.9368855294290948 0.2565188594263468 0.2375785754334149 0.9368855294290948 -0.2565188594263468 -0.2375785754334149 -0.9736690702705535 0.2279660041882405 0.0002062351157356025 0.9736690702705535 -0.2279660041882405 -0.0002062351157356025 -0.9397567116348682 0.2472500300875843 -0.236060893751819 0.9397567116348682 -0.2472500300875843 0.236060893751819 -0.8191797350546107 0.3112627907725366 -0.481726101385787 0.8191797350546107 -0.3112627907725366 0.481726101385787 -0.5762477640027265 0.4098641495958019 -0.707071349552482 0.5762477640027265 -0.4098641495958019 0.707071349552482 -0.2011847824327154 0.5359189442834044 -0.8199485157469719 0.2011847824327154 -0.5359189442834044 0.8199485157469719 -0.5570993725849827 0.8049566860049144 0.2041691032487639 0.5570993725849827 -0.8049566860049144 -0.2041691032487639 0.5571067054878111 0.8049534204623468 0.2041619690012957 -0.5571067054878111 -0.8049534204623468 -0.2041619690012957 0.244554282108253 0.935479489453685 -0.2550908228729328 -0.244554282108253 -0.935479489453685 0.2550908228729328 -0.2445560468036773 0.9354781423299914 -0.2550940712650647 0.2445560468036773 -0.9354781423299914 0.2550940712650647 -0.4948898272186186 0.7206569593878724 0.4855281719955623 0.4948898272186186 -0.7206569593878724 -0.4855281719955623 0.4948809605575952 0.7206596462753181 0.4855332214256047 -0.4948809605575952 -0.7206596462753181 -0.4855332214256047 0.113544970438825 0.4778958828496498 0.8710471082802582 -0.113544970438825 -0.4778958828496498 -0.8710471082802582 -0.1135390829164887 0.4778950769826455 0.8710483178597122 0.1135390829164887 -0.4778950769826455 -0.8710483178597122 0.201201418721007 0.5359196099292964 -0.8199439985742226 -0.201201418721007 -0.5359196099292964 0.8199439985742226 0.5762381845786991 0.4098643448626707 -0.7070790432785707 -0.5762381845786991 -0.4098643448626707 0.7070790432785707 0.8191556178229759 0.3112796801530513 -0.4817561982090866 -0.8191556178229759 -0.3112796801530513 0.4817561982090866 0.9397661340326265 0.2472489376023817 -0.2360245245305342 -0.9397661340326265 -0.2472489376023817 0.2360245245305342 0.9736700099245995 0.2279619934839536 0.0002032246345537654 -0.9736700099245995 -0.2279619934839536 -0.0002032246345537654 0.936894120427421 0.2565174721216962 0.2375461925706741 -0.936894120427421 -0.2565174721216962 -0.2375461925706741 0.8189551107340638 0.3296966683503205 0.4696941914493472 -0.8189551107340638 -0.3296966683503205 -0.4696941914493472 0.5815727234851986 0.4410522309737556 0.6835540189707624 -0.5815727234851986 -0.4410522309737556 -0.6835540189707624 0.2180149968763851 0.5715826008495109 0.7910516996651348 -0.2180149968763851 -0.5715826008495109 -0.7910516996651348 0.1615929276070497 0.6847314780545727 0.7106549997773765 -0.1615929276070497 -0.6847314780545727 -0.7106549997773765 0.3857982856502868 0.3539777102712661 0.851973863108729 -0.3857982856502868 -0.3539777102712661 -0.851973863108729 0.4710470348251843 0.2073320250443136 -0.8573961292036638 -0.4710470348251843 -0.2073320250443136 0.8573961292036638 0.7240439167329056 0.4871179768674159 -0.4883405402530791 -0.7240439167329056 -0.4871179768674159 0.4883405402530791 0.2596762166444364 0.9656824066951043 -0.005074633857011698 -0.2596762166444364 -0.9656824066951043 0.005074633857011698 -0.2596650624206113 0.96568541228746 -0.005073445899835583 0.2596650624206113 -0.96568541228746 0.005073445899835583 -0.724042314234301 0.4871179111181395 -0.4883429817926515 0.724042314234301 -0.4871179111181395 0.4883429817926515 0.2001431516069512 0.8113013914184546 0.5493020764090706 -0.2001431516069512 -0.8113013914184546 -0.5493020764090706 -0.200147528953493 0.811302209449807 0.549299273252452 0.200147528953493 -0.811302209449807 -0.549299273252452 -0.385793900643739 0.3539738078666538 0.8519774701073204 0.385793900643739 -0.3539738078666538 -0.8519774701073204 -0.4710390211828121 0.2073282544056938 -0.8574014435771766 0.4710390211828121 -0.2073282544056938 0.8574014435771766 -0.1615964627129738 0.6847282314695419 0.7106573240790866 0.1615964627129738 -0.6847282314695419 -0.7106573240790866 -0.3815297487970356 0.9242033489235089 -0.01682915985550096 0.3815297487970356 -0.9242033489235089 0.01682915985550096 -0.1893524600258164 0.9226379770853586 -0.3359833464950444 0.1893524600258164 -0.9226379770853586 0.3359833464950444 0.2430371049992868 0.9365806957721924 0.2524867638123671 -0.2430371049992868 -0.9365806957721924 -0.2524867638123671 -0.2430370270984135 0.9365799912233536 0.2524894522534115 0.2430370270984135 -0.9365799912233536 -0.2524894522534115 0.8151017431464896 0.5177508511940201 -0.2598907547555734 -0.8151017431464896 -0.5177508511940201 0.2598907547555734 -0.8151046069588269 0.5177485751983484 -0.2598863070547895 0.8151046069588269 -0.5177485751983484 0.2598863070547895 0.7143689442105867 0.4976941657223021 0.4919121150708055 -0.7143689442105867 -0.4976941657223021 -0.4919121150708055 -0.7143671097740584 0.4976943659632153 0.4919145764881657 0.7143671097740584 -0.4976943659632153 -0.4919145764881657 0.1893424248662611 0.9226408447753204 -0.3359811269968113 0.3815261748862386 0.9242048271015135 -0.01682900588081726 -0.3815261748862386 -0.9242048271015135 0.01682900588081726 -0.1893424248662611 -0.9226408447753204 0.3359811269968113 -0.06791426900456359 0.967764305676533 0.2425281441894815 0.06791426900456359 -0.967764305676533 -0.2425281441894815 0.7646667205034805 0.3007454141879074 0.5699447362678212 -0.7646667205034805 -0.3007454141879074 -0.5699447362678212 -0.04338468686296027 0.9656293038630097 -0.2562768356033023 0.04338468686296027 -0.9656293038630097 0.2562768356033023 0.7794250940536733 0.242256527445879 -0.5777614539490208 -0.7794250940536733 -0.242256527445879 0.5777614539490208 0.8458046245742587 0.533492675425588 -0.0003198687944614629 -0.8458046245742587 -0.533492675425588 0.0003198687944614629 -0.8458039896858844 0.53349368320006 -0.0003178318336505332 0.8458039896858844 -0.53349368320006 0.0003178318336505332 -0.7794180332466006 0.2422483115643041 -0.5777744239703283 0.7794180332466006 -0.2422483115643041 0.5777744239703283 0.8072299147687196 0.5296170535344539 0.2605487311578569 -0.8072299147687196 -0.5296170535344539 -0.2605487311578569 -0.8072346006267613 0.529613178217676 0.2605420906669885 0.8072346006267613 -0.529613178217676 -0.2605420906669885 -0.7646564644093824 0.3007414749600063 0.5699605746679528 0.7646564644093824 -0.3007414749600063 -0.5699605746679528 0.04338315991997069 0.9656295661029632 -0.2562761059934406 -0.04338315991997069 -0.9656295661029632 0.2562761059934406 0.06791218362178518 0.9677646416119429 0.2425273876522583 -0.06791218362178518 -0.9677646416119429 -0.2425273876522583 0.03596881937183998 0.9901531491874407 0.1352885257041033 -0.03596881937183998 -0.9901531491874407 -0.1352885257041033 0.05336704274176079 0.9892374608611649 -0.1362395125430002 -0.05336704274176079 -0.9892374608611649 0.1362395125430002 0.9238445835961621 0.2567454882110192 -0.2838889565363886 -0.9238445835961621 -0.2567454882110192 0.2838889565363886 -0.9238498592351629 0.256741474720856 -0.2838754176559315 0.9238498592351629 -0.256741474720856 0.2838754176559315 0.9180233515898573 0.2848647456352883 0.2758354629663632 -0.9180233515898573 -0.2848647456352883 -0.2758354629663632 -0.9180321739839776 0.2848572832830602 0.2758138062005712 0.9180321739839776 -0.2848572832830602 -0.2758138062005712 -0.0533662582375591 0.9892377314270605 -0.1362378552486978 0.0533662582375591 -0.9892377314270605 0.1362378552486978 -0.03596860507902677 0.9901533491104316 0.1352871194684281 0.03596860507902677 -0.9901533491104316 -0.1352871194684281 0.08061863977779155 0.9967424115525362 0.002280336118426854 -0.08061863977779155 -0.9967424115525362 -0.002280336118426854 0.9631149707435038 0.26904404532459 -0.004985459368985176 -0.9631149707435038 -0.26904404532459 0.004985459368985176 -0.9631170908148206 0.2690365543304014 -0.004980142008200281 0.9631170908148206 -0.2690365543304014 0.004980142008200281 -0.08061888242522709 0.9967423920075657 0.002280300757270798 0.08061888242522709 -0.9967423920075657 -0.002280300757270798</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID231\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"1827\" source=\"#ID234\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"3654\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID234\">-0.1258852921180548 -15.48570502078738 1.534266493751242 -15.56317789494367 -0.1266861167179144 -15.56317789494367 -20.22738456726074 -1.25975176692009 -20.22738456726074 -0.804327005147934 -20.13338327407837 -1.236639364560445 0.2171591933625222 -15.48512115102699 0.2179600183620088 -15.56259402518073 -1.442991763260136 -15.56259402518073 20.22738456726074 -0.804327005147934 20.22738456726074 -1.25975176692009 20.13338327407837 -1.236639364560445 -1.534266493751242 14.81136512443701 -1.533465750397696 14.88883083827612 0.1266861167179146 14.81136512443701 1.535182831453892 -15.48560319931241 1.534382627736602 -15.56306891660233 -0.125769697796328 -15.48560319931241 -20.0537109375 -1.17082305153211 20.0537109375 -1.17082305153211 -20.32135009765625 -1.236639364560445 20.32135009765625 -1.236639364560445 -1.443908096956845 -15.48501972830002 0.2170436034463229 -15.48501972830002 -1.443107892840238 -15.56248544558737 1.442991763260136 14.81078125992196 -0.217960018362009 14.81078125992196 1.442191019507003 14.88824697375851 -20.42436417053202 -1.457934297741718 -20.37877720569773 -1.185995510641885 -20.28512865274249 -1.209954558772863 0.1263667481455355 14.8108939296594 -1.533786602762934 14.888339962441 0.1271657844858969 14.88833996244099 -20.01676861989358 -2.142210274540014 -20.02399308552023 -1.829286924592993 -19.93027556611291 -1.805495344233855 1.535182831453892 -11.81749829109407 -0.125769697796328 -11.81749829109406 -0.1250914032063509 -11.72661523658976 -20.00047206878662 -1.072321949402491 20.00047206878662 -1.072321949402491 0.2170436034463227 -11.81707672674592 -1.443908096956845 -11.81707672674592 0.2163653085178635 -11.72619367224318 -20.40102958679199 -1.170823520421982 20.40102958679199 -1.170823520421982 -0.2176406618968502 14.81031116168222 -0.2184396986359462 14.88775719446127 1.442511859765762 14.88775719446127 20.03095235338139 -1.812328709790346 20.02372738872175 -2.125252666203983 19.93723485288939 -1.788537083321516 20.37098365259558 -1.167128669961374 20.41657116571465 -1.439068106254421 20.27733512328646 -1.191087775289236 -19.27332397693066 -0.3641417240250766 -19.37498517074159 -0.1892271894203401 -19.19996052172735 -0.09598873356603006 -20.25288498192033 -1.282814483491743 -20.38300259367404 -1.216169844625221 -20.23855301829428 -0.9700426683051181 0.1271657844858967 10.12746505475762 -1.533786602762934 10.12746505475762 -1.533109210034726 10.21834130689198 -19.64642004864075 -2.524566304484259 -19.56917411608184 -2.186462850662363 -19.51654064930535 -2.457614418915185 1.53576798095259 -11.72712909143676 1.53508925514035 -11.81801568481086 -0.1251846092066019 -11.7271284439361 -19.98179435729981 -0.9561345557371775 19.98179435729981 -0.9561345557371775 1.535771774619323 -7.24993936660568 -0.1251808155399471 -7.24993885709483 -0.1247273262878519 -7.142904384136094 0.2164547174303251 -7.249699541016292 -1.444497043881923 -7.249700050527142 0.2160012279519299 -7.142665068058149 -1.443814524209448 -11.81759386889674 -1.444493250360386 -11.72670727552421 0.216458510951785 -11.72670662802354 -20.45424699783325 -1.072321949402491 20.45424699783325 -1.072321949402491 0.1280776013716562 10.21983633715882 0.1273991315217464 10.12894974260203 -1.532874948178165 10.21983633715882 1.44160021364496 10.21941468027686 -0.2186730368693393 10.12852808572163 -0.2193515070578187 10.21941468027685 1.442511859765762 10.12704401933711 -0.2184396986359461 10.12704401933711 1.441834466699521 10.21792027146991 19.58407642658773 -2.168589865662105 19.6613212151512 -2.506694049127253 19.53144193617117 -2.439742019072841 20.22472307134249 -0.9533116094784729 20.36917352486233 -1.199439246983046 20.23905601646291 -1.266084010725955 19.33720802203883 -0.1755983867431848 19.23554742857724 -0.3505131372780738 19.16218169939295 -0.08235981578698171 -1.801174134016037 6.165596324617181 -1.801174134016037 5.973266267907271 -2.164027541875839 6.165596324617181 -19.83645144563483 0.03318917964926284 -19.7386458323571 0.1983548763961393 -19.66380185096627 0.1291288351316886 -1.801174134016036 12.65174037172843 -2.164027541875838 12.77388336677867 -1.801174134016036 12.77388336677867 1.801174134016038 -14.18852359140346 2.16402754187584 -14.31067771740757 1.801174134016038 -14.31067771740757 -18.94105633498291 -2.750284032160559 -19.00181212506624 -2.48018548161269 -18.92481819325029 -2.412420390939995 -20.00047206878662 -0.8399464587370555 20.00047206878662 -0.8399464587370555 1.536427766611958 -3.037719784628627 -0.1245246814740755 -3.037719075692561 -0.1243657737671471 -2.920606382194752 0.2157985909101244 -3.037642433196023 -1.445153028328816 -3.03764314213209 0.215639683123898 -2.920529739698281 1.536424552133933 -7.141330885511757 1.535971735724498 -7.248360007971451 -0.1245278959520605 -7.141330121281866 -1.444696997338603 -7.248121035000783 -1.445149813974002 -7.141091912541681 0.2158018052648988 -7.141091148311789 19.02525222840553 -2.463730370768209 18.96449488988946 -2.733829416651876 18.94825847333672 -2.395965155820597 -20.47295093536377 -0.9561345557371775 20.47295093536377 -0.9561345557371775 0.1282193479991071 5.199645944215716 -1.532279787764698 5.306673480603418 0.1286728633344158 5.306674244821984 1.441005058336967 5.306434136946083 -0.2194932483535334 5.199406600558972 -0.2199467639151551 5.306434901164647 0.1280776013716559 5.198457694805845 -1.532874948178165 5.198457694805845 -1.532421904097657 5.305481681525087 1.44160021364496 5.198218590203622 -0.2193515070578185 5.198218590203623 1.441147169338374 5.30524257692227 19.7073272718307 0.2193619714884788 19.80513473309581 0.05419578943741742 19.63248359445579 0.1501357268180654 -1.709899455308914 -14.18852359140347 -1.709899455308914 -14.31067771740758 -2.072749584913254 -14.31067771740758 1.709899455308914 12.65174037172843 1.709899455308914 12.77388336677867 2.072749584913254 12.77388336677867 2.072749584913254 6.165596324617179 1.709899455308914 5.973266267907269 1.709899455308914 6.165596324617179 -1.801174134016037 2.880588778750365 -2.164027541875839 2.880588778750365 -2.164027541875839 3.10728777221482 -2.164027541875839 5.973266267907271 -17.31377201656435 0.08931789896481847 -17.37287013460527 0.3111986444837677 -17.20090103287147 0.2484264908816917 -2.164027541875838 12.65174037172843 2.164027541875838 -14.18852359140347 2.164027541875838 -14.31067771740758 1.801174134016036 -14.18852359140347 -12.24665345080589 -4.079363818946902 -12.29238037915529 -4.254866361738525 -12.33345400916902 -3.918308791597755 -20.0537109375 -0.7414472321669261 20.0537109375 -0.7414472321669261 1.536473731628583 1.023433804708911 -0.1244787976216367 1.02343398194291 -0.1246378109740279 1.140547373129819 0.2157527026406713 1.023357288952173 -1.445198997762496 1.023357111718174 0.2159117160724131 1.140470680139015 1.536473051392666 -2.92158106874024 1.536313956212724 -3.038695226888168 -0.1244794778575538 -2.921580891504811 -1.445039222293361 -3.038618494935111 -1.445198317552694 -2.921504336787248 0.2157533828504729 -2.92150415955182 -14.01397623552149 -4.302495126678767 -14.09490695303824 -4.139559529647563 -14.05452101996732 -4.037353805460541 14.15411215206861 -4.125126939414474 14.07317835339905 -4.288062767769929 14.11372681239765 -4.022921070123109 12.35919406675291 -4.244127343717848 12.31346799409292 -4.068624662957061 12.40027174729932 -3.907569508996484 -20.45424699783325 -0.8399464587370555 20.45424699783325 -0.8399464587370555 0.1285303983974092 0.9576156398572594 -1.532262887677826 1.074730746022038 0.1286896618719946 1.074730923259974 1.440988152825947 1.074653933634526 -0.2198043043227711 0.957538827469815 -0.2199635678768321 1.074654110872463 0.1286761474507288 0.9588850272414258 -1.532276503648425 0.9588843182825991 -1.532117005308048 1.076001303352002 1.441001774343951 0.9588073937422039 -0.2199500479082111 0.9588081027010309 1.440842275923982 1.07592437881154 -16.7753448735345 1.438180721989944 -16.64471179919583 1.476097594512997 -16.60427237279912 1.373910338866937 16.58518842739789 1.490732201329241 16.71582385163008 1.452815275052713 16.54474959254172 1.388544800815744 17.31704049764172 0.3204375904302545 17.25794314035383 0.09855671951743608 17.14506961262196 0.2576654013530714 -2.072749584913253 -14.18852359140347 -1.709899455308913 -14.18852359140347 -2.072749584913253 -14.31067771740758 2.072749584913254 12.65174037172843 2.072749584913254 5.973266267907269 2.072749584913254 2.880588778750366 1.709899455308914 2.880588778750366 2.072749584913254 3.107287772214821 13.68307907495966 1.072909917580273 13.62808642009628 0.8503769331383377 13.55208476113084 1.110051758401565 -1.801174134016037 3.10728777221482 16.77343157614949 1.093430361463871 16.8800370767962 0.9316686619756909 16.7822397986052 0.7553960546951699 19.66415887355527 -0.09164776415532905 19.71677879137577 -0.3628001049675953 19.58691646811338 -0.4297521812945988 20.32217697599747 -1.37764651333131 20.30784598460897 -1.690418858362025 20.17771158229746 -1.623774106597644 2.164027541875839 -6.109858504127848 1.801174134016037 -6.109858504127848 1.801174134016037 -5.930707404381179 -20.13338327407837 -0.6756296883026759 20.13338327407837 -0.6756296883026759 1.536431798160886 5.383194369809282 -0.1245206499251362 5.383194815632582 -0.1249735890401167 5.49022756400574 0.2157945595157108 5.382955785992272 -1.445157059723218 5.38295534016897 0.2162474988567167 5.489988534364836 1.536429922569505 1.141549740347531 1.53658890939953 1.024435640256233 -0.1245225255165305 1.141550153896868 -1.44531417111309 1.024358960517863 -1.445155184203727 1.141473060609095 0.2157964350352158 1.141473474158432 -4.418039454811175 -2.939394436690957 -4.515685712402823 -2.90258142229704 -4.509945086823084 -2.78555429801103 4.60235245800409 -2.899954755245872 4.504703024020952 -2.936767771359333 4.596612012498335 -2.782927625493501 -4.950180467880308 -3.765557817145136 -4.967657919060676 -3.987971337740143 -5.047637576747289 -3.72843591542275 5.053509723754392 -3.983803519776202 5.036032810786674 -3.761389973008671 5.133493100570709 -3.724268066917963 -1.709899455308914 -6.109858504127848 -2.072749584913253 -6.109858504127848 -1.709899455308914 -5.930707404381179 -20.40102958679199 -0.7414474666118622 20.40102958679199 -0.7414474666118622 0.1288377546512114 -2.971837188091958 -1.532274295216435 -2.854721620595885 0.1286783558827203 -2.854721207040741 1.440999565994849 -2.85464474342017 -0.2201116551053502 -2.971760310916177 -0.2199522562573161 -2.854644329865026 0.1286903598530311 -2.97310100861579 -1.532262189696789 -2.973101185855498 -1.532421555315797 -2.855984258820569 1.44098745487106 -2.973024325283773 -0.2199642658317187 -2.973024148044064 1.441146820569594 -2.855907398248911 -15.95889351019889 -0.03429134901812657 -15.82235116921501 -0.04436164856562209 -15.80896810424477 -0.1610045434072966 15.75831500296562 -0.03979592193297119 15.89485961610109 -0.02972562099683371 15.74493216452814 -0.1564388328590915 -15.94167276809853 -0.1989282114728265 -15.96040264678348 -0.03552441633350978 -15.81047560219309 -0.162236410886687 15.89637631539405 -0.03096368756243825 15.87764675367161 -0.1943675051849753 15.74644722515451 -0.1576756995503003 1.709899455308914 3.107287772214821 -20.29402090607722 -1.707137542595449 -20.30835265581908 -1.394364744684893 -20.16388658362278 -1.64049269433256 -19.73168774939586 -0.3806781729236828 -19.67906704044389 -0.1095253799235279 -19.601825519152 -0.4476303609034865 -16.92390303656202 0.9166428058467701 -16.81729575673723 1.078404696955189 -16.82610636654618 0.7403699897566273 -13.68951357730702 0.8410080554524878 -13.7445055611347 1.063541142515051 -13.61350942485764 1.100683000464225 13.0525877799319 0.1521790341023219 13.17040191568972 -0.001155844393756667 13.03920295411153 0.03553626429518431 16.24700292835964 1.102935238654555 16.31044231884614 0.841181457112277 16.20163974646863 1.002035331094687 -1.801174134016037 0.9281126122259156 -2.164027541875839 0.9281126122259156 -2.164027541875839 1.092179354949206 19.11775920122815 0.2551224137991908 19.10153141628488 -0.08274181684235182 19.04078517653014 0.1873572049067138 19.98183783074891 -0.5155219419165721 20.07555533468009 -0.491730323831432 19.989062704674 -0.828445788062113 20.23862187101954 -1.082531508487775 20.33227041494376 -1.106490578463651 20.19301794631684 -1.354470543530482 2.164027541875839 -5.930707404381178 2.164027541875839 -6.109858504127846 1.801174134016037 -5.930707404381178 0.1265715466658575 -8.624540498687608 -1.535181274761152 -8.476112729121779 0.1257712544890636 -8.476112526330917 1.443906540323413 -8.475808177192903 -0.2178454526559046 -8.6242359467574 -0.2170451600797494 -8.47580797440204 1.535778260544824 10.34166195767494 -0.125174329614441 10.34166228140747 -0.1258529536602815 10.43254622574892 0.2164482317530474 10.34124051642223 -1.444503529559196 10.34124019268969 0.2171268561375344 10.43212446076212 1.535776363654405 5.48854535393289 1.536229698567882 5.381517581354886 -0.1251762265048792 5.488545608676763 -1.444954967881073 5.381278331737467 -1.444501632741374 5.488306104314879 0.2164501285708891 5.488306359058752 -5.006386172853704 0.8644759555906119 -5.10633734776779 0.8543739725296139 -5.112620370191539 0.971383794125354 5.192089220564711 0.8515297083164171 5.092134941572865 0.8616316919311688 5.198372049964359 0.9685395363262117 -4.4198076004139 -2.939995586543617 -4.511711117659859 -2.786154666037582 -4.41176019428805 -2.776051142907861 4.598375461573348 -2.783526339728882 4.506468587809408 -2.937367267429926 4.498421434102714 -2.773422816126627 2.164027541875839 -4.221487111498896 1.801174134016037 -4.221487111498896 1.801174134016037 -3.99864903761605 -1.709899455308914 -4.221487111498896 -2.072749584913254 -4.221487111498896 -1.709899455308914 -3.99864903761605 -1.709899455308914 -5.930707404381178 -2.072749584913254 -6.109858504127846 -2.072749584913254 -5.930707404381178 -20.32135009765625 -0.6756296883026759 20.32135009765625 -0.6756296883026759 0.1285315268532095 -7.06673312404176 -1.532874170312753 -6.9597073232761 0.128078379237067 -6.959707195905827 1.441599435808795 -6.95946816837863 -0.2198054327362544 -7.066493969143699 -0.2193522848939825 -6.959468041008358 0.1286802715887128 -7.065549315582399 -1.53227237951043 -7.065549761362867 -1.532725812526302 -6.958527232137923 1.440997650360744 -7.065310448255558 -0.2199541718914076 -7.065310002475089 1.441451083602888 -6.958287919031208 -17.03570139470239 -1.664839179020459 -17.16215171293897 -1.465750723148897 -17.02109289708171 -1.548287371507728 17.10490101519861 -1.470209160463029 16.97844830994291 -1.669297642531781 16.96384001004768 -1.552745819682501 -16.10909598759142 -1.302788866770341 -16.10026045620292 -1.114236167078391 -15.97254971372975 -1.312826111367258 16.03698900342898 -1.116078629847719 16.04582438879647 -1.304631333774081 15.90927584270994 -1.314668578596409 -1.801174134016037 1.092179354949206 -1.801174134016037 0.9281126122259151 -2.16402754187584 1.092179354949206 2.072749584913254 1.092179354949206 1.709899455308914 0.9281126122259151 1.709899455308914 1.092179354949206 2.072749584913253 0.928112612225916 1.709899455308914 0.928112612225916 2.072749584913253 1.092179354949207 -20.32447832993505 -1.12534613712419 -20.23082980428274 -1.101387022951018 -20.18522545590466 -1.373326559639653 -19.99602312897831 -0.8454042666628082 -20.08251535874198 -0.508688298157286 -19.98879786942752 -0.5324799518734432 -19.12498771854559 -0.09920621455344565 -19.14121417005104 0.2386584948735982 -19.06424028196456 0.1708931899514246 -16.35799184967967 0.8279845533070835 -16.29455027534648 1.089738574145822 -16.24918742499983 0.9888385743428132 -13.23398984080131 -0.005659109431052334 -13.11617370435128 0.1476757854030664 -13.10278905354915 0.03103300316748309 -1.623332509725665 1.079694577807148 -1.623912730830739 0.9625784149731788 -5.485210456574892 1.07969475504561 13.18691021924062 0.1613203273318695 13.16818254401781 -0.00208362409851555 13.05036600887522 0.1512501135072835 -1.649230744145912 5.316901489714334 -1.65081451611082 5.209884161761756 -5.523024672812959 5.316902253860008 -1.721616743470018 10.23734429079699 -1.723712203225943 10.14648142792378 -5.629320716497547 10.23734429079698 -1.828819947018093 14.83327669988015 -5.785400478102014 14.91072905303895 -1.826823493132404 14.91072905303895 1.948040242702229 -15.49952216750314 5.965298784462179 -15.57698204488604 1.946590302434547 -15.57698204488604 17.9651228853713 -2.46866666317547 17.88111367877141 -2.734881495695522 17.82511370084852 -2.561231209508487 1.535185411592541 10.43307626874063 1.535863756865278 10.34218840029443 -0.1257671176576649 10.43307651155031 -5.589209059185219 14.34121049446882 -5.555801936241187 14.26833670692095 -7.146681740765876 13.86251749888974 5.674530193615789 14.31700556182349 7.232002004761192 13.83831259338827 5.641123056105888 14.24413177840787 -1.444589022608439 10.34176682675407 -1.443910676997195 10.43265469519871 0.2170410234059594 10.43265493800838 -8.509568598196866 4.183771607807824 -8.60374072404613 4.123470965439186 -8.630576273599415 4.228396712930236 8.682293648491479 4.111069268365709 8.588118293225817 4.171369973786545 8.709128504848385 4.215995125570333 -5.005124119188297 0.8652771805034814 -5.111357269189332 0.9721856630876584 -5.013927802630328 1.029193903125683 5.19711097734882 0.9693407154298069 5.090874916270149 0.862432226982461 5.099678329236927 1.026348958594327 2.164027541875839 -3.071965378997481 1.801174134016037 -3.071965378997481 1.801174134016037 -2.907898754035186 -1.709899455308914 -3.071965378997482 -2.072749584913253 -3.071965378997482 -1.709899455308914 -2.907898754035186 2.164027541875839 -3.99864903761605 -2.072749584913254 -3.99864903761605 -17.83013640463499 -2.745083098271195 -17.91414773614437 -2.478868123378903 -17.7741368920588 -2.571432719215629 -1.472393506701663 7.189482014100863 -1.47944486800743 7.337793609484673 0.1848775878461846 7.364425987845634 1.570465385352345 7.335115541791618 1.563414020547373 7.186803946510763 -0.09385624333294915 7.361747920134089 0.1278459538366897 -11.60445230359342 -1.533783998542705 -11.51356454702308 0.1271683887061131 -11.51356430421371 1.442509255643703 -11.51314345890218 -0.2191198682266861 -11.60403121547096 -0.2184423027579913 -11.51314321609281 0.1280793439095862 -11.60312746727764 -1.532873205640229 -11.60312762913219 -1.533551519883644 -11.51225002289478 1.441598471172542 -11.60270602728622 -0.2193532495302308 -11.60270586543168 1.442276785754449 -11.51182842105037 -19.71564877991073 -1.494040472876068 -19.81191580095041 -1.152676274233754 -19.6659051662743 -1.394427905724576 19.77946428884835 -1.162730732326592 19.68319536119753 -1.504095160702185 19.63345196448953 -1.404482526512843 -17.11234276679926 -1.418144715217714 -17.08288268909941 -1.162188648336637 -16.97124931523291 -1.500644719083383 17.02532203902382 -1.166305031655054 17.05478171365591 -1.422261127245591 16.91368607181041 -1.504761140364921 -1.801174134016037 -1.580052705958203 -1.801174134016037 -1.768733472471541 -2.164027541875839 -1.580052705958203 2.072749584913254 -1.580052705958203 1.709899455308914 -1.768733472471541 1.709899455308914 -1.580052705958203 -1.801174134016037 -1.768733472471541 -2.164027541875839 -1.768733472471541 -2.164027541875839 -1.580052705958203 2.072749584913254 -1.768733472471541 2.072749584913254 -1.580052705958202 -13.23177955480132 -0.00658200255963195 -13.25050698507355 0.1568219662438976 -13.11396101893223 0.1467517513486443 -1.85677580673647 -15.49846495925416 -1.855325867060111 -15.57592483664391 -5.874035988020432 -15.57592483664391 1.737565553146629 14.83182100552171 1.735569101289583 14.90927335871286 5.694150108665018 14.90927335871286 5.538076029825277 10.23604209361662 1.632468261753308 10.14517923074912 1.630372801597992 10.23604209361662 1.559579703773065 5.209048591982027 1.557995932234425 5.316065919938509 5.431790903520531 5.316066684084182 1.532681253467128 0.9622987077137645 1.532101032429185 1.079414870547939 5.393979426098372 1.079415047786401 -1.623332772088225 -2.466732283477933 -5.485210718937451 -2.466732106864797 -5.497703966683182 -2.350028972639862 -1.649232307100429 0.447377576352172 -5.523026235767493 0.4473782828116477 -5.510550193190154 0.564081855834275 13.44611496587061 -2.014045157192618 13.30957060914802 -2.024114142851768 13.29597490498195 -1.907486525431189 -1.721616743470019 3.751470101692875 -5.629320716497547 3.751470101692875 -5.593987872893266 3.854820861283677 -1.826823493132404 8.308347630418078 -5.785400478102014 8.308347630418076 -5.732785283958959 8.389268976536879 -5.965298784462179 14.23324356338103 -5.90365040839472 14.29366077080401 -1.946590302434547 14.23324356338103 6.140859473718176 -15.11938777954019 6.079619365090169 -15.18003497983019 2.061893856221012 -15.11938777954019 19.25650095716715 -2.778314433863801 19.32945595815604 -2.848790673537433 19.19517112251402 -2.946462966080575 -18.82236779398378 0.6784072465355927 -18.89905086944287 0.7463918189142581 -18.75080234157753 0.9238325989700599 -19.97088696162336 -0.1974415343765166 -20.06469025362492 -0.1738620178566139 -19.91066038848814 0.1632906828289227 20.07046133359917 -0.1880625399512464 19.97665805461466 -0.2116420885173906 19.91643107483787 0.149090618948812 18.92378358334661 0.7291600778045483 18.84710070390738 0.6611753685995382 18.77553365329143 0.9066012149792155 -10.80569009633248 0.1099605378774972 -10.92821405895882 0.1519472391902269 -10.82422126623122 0.3900870975693102 11.00007461399909 0.1490151236111422 10.87754812043968 0.1070284198381223 10.89607888937612 0.3871549959444814 2.164027541875839 1.030713255234531 1.801174134016037 1.030713255234531 1.801174134016037 1.194776216917491 -1.709899455308914 1.030713255234531 -2.072749584913254 1.030713255234531 -1.709899455308914 1.194776216917491 2.16402754187584 -2.907898754035186 2.16402754187584 -3.071965378997481 1.801174134016037 -2.907898754035186 -1.709899455308914 -2.907898754035186 -2.072749584913254 -3.071965378997482 -2.072749584913254 -2.907898754035186 12.98986872044777 -3.037455366848272 12.89700698097519 -3.196405471095785 12.86791455317681 -2.974745740430965 -12.82084986506411 -3.202609789768635 -12.91371409952405 -3.043659654109695 -12.79175797658145 -2.980950015299825 -19.29269603840264 -2.872384688597455 -19.21974135309156 -2.801908246698138 -19.15840974671375 -2.970057261403088 -1.533777853801287 -15.45945260546777 -1.534577153620485 -15.38198747693904 0.1271745334473898 -15.45945201608054 1.442503111133931 -15.45886978904782 -0.2184484472676229 -15.45886919966059 1.443302411351995 -15.38140466052163 -20.35913839763453 -0.9992405881392164 -20.39944525362752 -0.5877322188676134 -20.28079302324131 -0.932453177032359 20.38291650820884 -0.599747286199168 20.34260851149802 -1.011256052922561 20.26426322596364 -0.9444685773096617 -19.88015526090114 -1.147477682376389 -19.78934155726489 -0.9789607440089759 -19.73472769094323 -1.389446709145283 19.75796237056699 -0.9894516927722035 19.8487757038444 -1.157968754652141 19.70334647721835 -1.399937958769411 -1.801174134016037 -2.3692739281999 -1.801174134016037 -2.626277042775172 -2.164027541875839 -2.3692739281999 2.072749584913254 -2.3692739281999 1.709899455308914 -2.626277042775172 1.709899455308914 -2.3692739281999 -2.164027541875839 -2.626277042775172 2.072749584913254 -2.626277042775172 14.17973260486218 -1.149716057020562 14.18900416428264 -1.338255799942257 14.03847163581126 -1.232040378595642 -14.24825931667381 -1.336457444313252 -14.23898786253076 -1.147917698187767 -14.09772519752328 -1.230242021161755 -13.37209015912777 -2.019615903618303 -13.50863627162445 -2.00954691688874 -13.3584946268269 -1.902988273799286 -1.970622815117818 -15.11873913070546 -5.988349963112748 -15.17938633951847 -6.049588879628458 -15.11873913070546 1.855325867060111 14.23222149466546 5.812389996301541 14.29263872910246 5.874035988020432 14.23222149466546 5.694150108665017 8.307449396982861 1.735569101289583 8.307449396982861 5.641530148518164 8.388370697265708 5.538076029825278 3.750903665915818 1.630372801597992 3.750903665915819 5.502744973542115 3.854254436665682 5.431792466268043 0.4471755655462812 1.557997494981921 0.4471748590868135 5.419315828020097 0.5638791372650112 5.393979688424572 -2.46652122830907 1.532101294755384 -2.466521404922204 5.406473531880293 -2.349818095444993 -19.09568861490444 -1.860737775573822 -19.71716312893302 -1.743635927404361 -19.0933554765953 -1.743635927404361 -1.649233103102599 -2.859567199326331 -1.648675988840149 -2.976683373446285 -5.523027031769663 -2.85956678576967 -19.65501490689303 -0.02263704786605328 -19.0297120460069 -0.02263704786605328 -19.02750970147574 -0.139739765654591 -19.71716312893302 1.847660563006503 -19.0933554765953 1.847660563006503 -19.0867053147492 1.740765367513165 -19.25725339646276 3.827431524102865 -19.88853787551105 3.917867663004274 -19.26881717011474 3.917867663004274 -19.50128008188347 5.671749433882255 -20.13187847699102 5.748127731735295 -19.51778234712939 5.748127731735294 19.7667812749501 -5.811840188322443 20.39490611426976 -5.88769550952377 19.786675930432 -5.88769550952377 6.140859473718175 -11.82192118735633 2.061893856221012 -11.82192118735633 2.062672747337603 -11.73103509104769 -17.38165993209769 0.429103221833177 -17.29160418754188 0.7859695532530753 -17.22586501560617 0.6024968064149385 -19.99860051972076 -0.129264626879026 -20.03692995984601 0.274651531291131 -19.84284155047692 0.2073961150121447 20.0445830652846 0.2609923657732687 20.00625418497915 -0.1429243006399641 19.85049470330193 0.1937368648675621 17.33110558440374 0.7772354161435705 17.42116358810667 0.4203688994892632 17.26536684195997 0.5937625740723932 2.164027541875839 0.5515809805773705 1.801174134016037 0.5515809805773705 1.801174134016037 0.83208660130879 -1.709899455308914 0.5515809805773707 -2.072749584913254 0.5515809805773707 -1.709899455308914 0.8320866013087902 2.164027541875839 1.19477621691749 2.164027541875839 1.03071325523453 1.801174134016037 1.19477621691749 -1.709899455308914 1.19477621691749 -2.072749584913254 1.03071325523453 -2.072749584913254 1.19477621691749 8.289403965375485 -2.788661418358525 8.191755230015026 -2.825474632941424 8.183709745059858 -2.661530130953802 -8.104747585472685 -2.828122870696716 -8.202398775323518 -2.791309654783989 -8.096702295527615 -2.664178362786818 10.55889685108461 -5.946475750744878 10.44012297903797 -5.880095964417052 10.53628430554413 -5.840934631093697 -10.35731628797262 -5.89110171479426 -10.47609214127761 -5.957481542480854 -10.45348009169989 -5.851940357070943 -1.970622815117817 -11.82143713216541 -6.049588879628457 -11.82143713216541 -1.97140170614905 -11.73055103585631 -20.37146078337978 -0.5875260487930961 -20.32937631025639 -0.1610463816450941 -20.27762162786924 -0.5640350063438532 20.32417836561852 -0.1739015931347521 20.36626246054495 -0.6003817335958721 20.27242331558046 -0.5768906650759407 -20.36033972231744 -0.7896780462460825 -20.47467865286477 -0.4440562104675164 -20.32509873553122 -0.3628146208389277 20.46316738269153 -0.4571844655618593 20.34882768846971 -0.8028067005413702 20.31358754771352 -0.3759427820974189 -1.801174134016037 -6.977500372299702 -1.801174134016037 -7.160534927336461 -2.164027541875839 -6.977500372299702 2.072749584913254 -6.977500372299704 1.709899455308914 -7.160534927336463 1.709899455308914 -6.977500372299704 -1.801174134016037 -7.160534927336462 -2.164027541875839 -7.160534927336462 -2.164027541875839 -6.977500372299703 2.072749584913254 -7.160534927336462 1.709899455308915 -7.160534927336462 2.072749584913254 -6.977500372299703 16.40028087842734 -1.096514751653602 16.43264684739913 -1.35225353776757 16.24836178246479 -1.336003393894237 -16.47990704049319 -1.348561334813969 -16.44754130520498 -1.092822530397934 -16.29562067470131 -1.332311189777687 16.19609020845928 -2.976192540915188 16.05680323653849 -3.060572695513196 16.01186058132998 -2.959557939969597 -16.10550301620983 -3.047195266568088 -16.24479163187337 -2.96281503271374 -16.06056070560901 -2.946180416143652 1.557441176765298 -2.976414794792929 1.557998290877803 -2.859298620672535 5.431793262163925 -2.859298207115874 -19.71099252619484 -5.865995296541705 -19.73088776767315 -5.941849933856844 -20.33911867998974 -5.941849933856844 19.44287400693677 5.724306708224998 19.45937786699727 5.800683623232993 20.07347361540942 5.800683623232993 19.19668673045452 3.864446538353782 19.20824711419368 3.954884620453327 19.8279694010471 3.954884620453327 19.03145439579096 1.868086594865004 19.65526164385514 1.868086594865004 19.02480298406573 1.761191802296992 18.96731324907351 -0.01606998787516269 19.59261733200767 -0.01606998787516269 18.96511135067093 -0.1331727488302648 19.65526164385513 -1.75023393902643 19.03378714285789 -1.867335829994521 19.03145439579096 -1.75023393902643 -19.71716312893301 -3.035852820181699 -19.70630012688311 -2.932379932769402 -19.09335547659529 -3.035852820181699 -19.65501490689303 -1.661030144640715 -19.65130187729402 -1.544307681117579 -19.0297120460069 -1.661030144640715 -1.649233627418467 -5.66861509053434 -5.523027556085529 -5.668614660178287 -5.558497928304542 -5.565295516326459 -19.71716312893302 -0.3709380187175263 -19.72097596217537 -0.2542182464687891 -19.0933554765953 -0.3709380187175263 -19.88853787551104 1.004335023182328 -19.90021075152527 1.107755774515915 -19.26881717011473 1.004335023182328 -20.13187847699102 2.709321514746258 -20.15119418013812 2.790029141600843 -19.51778234712939 2.709321514746258 -20.39490611426976 4.825675277952427 -20.42026695723209 4.884771801353764 -19.786675930432 4.825675277952427 20.62862864475278 -5.189494413296692 20.6565575668751 -5.24789067845684 20.02542496075474 -5.189494413296694 6.234562162653291 -10.29060420000016 2.156048683565865 -10.20929661415252 6.286211616719921 -10.20929603489529 2.164027541875839 4.256228387112969 1.801174134016037 4.256228387112969 1.801174134016037 4.446850187936754 1.801174134016037 14.53565253497429 2.164027541875839 14.36881323059433 1.801174134016037 14.36881323059433 -1.709899455308914 14.5356525349743 -1.709899455308914 14.36881323059433 -2.072749584913253 14.36881323059433 -1.709899455308914 4.256228387112969 -2.072749584913254 4.256228387112969 -1.709899455308914 4.446850187936753 2.164027541875839 0.83208660130879 -2.072749584913254 0.8320866013087902 8.840650698761181 0.7309651901980898 8.740696993498888 0.741067230969132 8.749502213520943 0.90498390251546 -8.65457962069206 0.7439368182846401 -8.75453572456612 0.7338347770853647 -8.663384631687885 0.9078534967795184 8.285031415308975 -2.670887680950639 8.290773607553 -2.787914757671433 8.185077943099925 -2.660784213273968 -8.203770488478375 -2.790562541754825 -8.198028435409483 -2.673535460808032 -8.098072564572732 -2.663431992766513 6.286210747687413 -7.247709244640746 2.156047814533343 -7.247709754129139 2.156320294775668 -7.140680253534097 -2.064773746241611 -7.247565948528585 -6.194943086811017 -7.247565439040191 -2.065046226061218 -7.140536447932877 -2.064774615251489 -10.20907791273233 -6.143288541849903 -10.29038548467444 -6.194943955820882 -10.2090773334752 -1.801174134016037 -13.50682571730549 -2.164027541875839 -13.36383510451845 -1.801174134016037 -13.36383510451845 1.709899455308914 -13.5068257173055 1.709899455308914 -13.36383510451845 2.072749584913254 -13.36383510451845 -2.164027541875838 -13.50682571730549 -2.164027541875838 -13.36383510451845 -1.801174134016036 -13.50682571730549 2.072749584913254 -13.50682571730549 1.709899455308914 -13.50682571730549 2.072749584913254 -13.36383510451845 18.8177069592771 -1.209340377535111 18.90992502597356 -1.377384683742904 18.69081283492763 -1.552240444926474 -18.93728235548932 -1.368108922980885 -18.84506451152456 -1.200064541132465 -18.71816917170635 -1.542964762871077 19.49338849225603 -1.600214965321107 19.35491319362604 -1.844695599665951 19.27729808140946 -1.777382601357212 -19.37542426648113 -1.83007648905537 -19.51390051793135 -1.585595581796428 -19.29780925957031 -1.762763415605031 -1.721617074545594 -6.968771324576598 -1.720217509984122 -7.075788784910571 -5.629321047573122 -6.968771197216782 1.628973567806513 -7.075050332908721 1.63037313263474 -6.968032872576905 5.538076360862024 -6.96803274521709 5.43179378641133 -5.667975308354976 1.55799881512521 -5.667975738711083 5.467262370965596 -5.564656151795372 -19.97241806420399 -5.243115459453888 -20.60355221981268 -5.301509222468676 -20.5756207094513 -5.243115459453886 19.73088776767315 4.877998344572728 20.36447977992893 4.937094554868735 20.33911867998974 4.877998344572728 20.09278821849486 2.822020037372321 20.07347361540942 2.741311791476443 19.45937786699727 2.741311791476443 19.83964137098812 1.124191389438626 19.8279694010471 1.020770416184978 19.20824711419368 1.020770416184977 19.65907569985622 -0.249251298510735 19.65526164385514 -0.3659709719504866 19.03145439579096 -0.3659709719504865 19.5889031099648 -1.549256831414366 19.59261733200767 -1.66597919737478 18.96731324907351 -1.66597919737478 19.64439942206315 -2.948580675760438 19.65526164385514 -3.052053772418875 19.03145439579096 -3.052053772418875 -13.33592262243147 -4.898779877281784 -13.32724461429281 -5.002380365810703 -13.9758112521686 -4.895899366622762 -19.27652982269344 -3.485648979579537 -19.88853787551105 -3.378800343703154 -19.26881717011474 -3.378800343703154 -12.78843572517963 -2.167939608558373 -12.78494239059626 -2.284666268952871 -13.43280904490074 -2.166317031007146 -12.86434947522666 0.3783191994140578 -12.86777865046281 0.2615920617598282 -13.51790675091619 0.3786073164295759 -12.80469908872295 3.150110555665507 -13.43915250706015 3.252547179441606 -12.79477930015034 3.253644499076614 -13.3724603603717 6.944633294311597 -13.99945800299225 7.023442643684843 -13.35957153980648 7.026130571389397 -13.23684863189478 12.02525215553542 -13.82154769380664 12.07864571751451 -13.22101723269816 12.08636941785606 12.33377592710247 -13.38925882167366 12.87212983008434 -13.45805102097961 12.31414740306657 -13.44971053785923 20.00563527017167 -4.289910144599922 20.62862864475278 -4.379461966831193 20.02542496075474 -4.379461966831193 2.164027541875839 4.446850187936754 2.16402754187584 14.5356525349743 2.16402754187584 14.36881323059433 1.801174134016037 14.5356525349743 -2.072749584913254 14.5356525349743 -1.709899455308915 14.5356525349743 -2.072749584913254 14.36881323059433 -2.072749584913254 4.446850187936753 8.332421442733166 0.3248724105630031 8.23478612014728 0.3816650488759661 8.244146163658927 0.6620740110073597 -8.14784378851318 0.3834650845206253 -8.245481565846042 0.3266724452599342 -8.157203605496989 0.6638740513313505 8.845018977540157 0.8474460458601429 8.838737870248515 0.7304361606346531 8.747586610073936 0.9044539734638741 -8.752619675533401 0.7333038493751959 -8.758900633707189 0.8503137395542709 -8.661465807769917 0.9073216695714188 6.381706256974224 -3.037854604489748 2.217293209073027 -3.037855313431844 2.217331895121768 -2.920741092364239 -2.126017979415087 -3.037836654842383 -6.29043087830499 -3.037835945900288 -2.126056665465213 -2.920722433774778 6.347327608743012 -5.977014465299771 2.217294058606035 -5.873458934281515 6.381707106507224 -5.873458194850908 -2.126018828940561 -5.87341449389307 -6.256058786560113 -5.976970028205966 -6.290431727830457 -5.87341375446244 -19.95263164985139 -4.329606636135661 -19.97241806420398 -4.419161021052664 -20.57562070945129 -4.419161021052665 19.86182033568163 -0.8703749569180225 20.01154621865167 -0.951449981342862 19.80451876606578 -1.27289923290686 -20.02232204506392 -0.9391425865699135 -19.87259621809162 -0.8580674981478026 -19.81529407100559 -1.260592091872657 20.23146596873297 -0.8716685261312739 20.12242406551535 -1.218348519731488 20.02862266206194 -1.194764354361259 -20.12822428633522 -1.204076335472272 -20.23726650002452 -0.8573959743186155 -20.03442289304061 -1.180492145097886 -1.826824586943753 -11.52725328202993 -1.825132545534608 -11.61812270646902 -5.785401571913356 -11.52725303926997 1.733878155305792 -11.6170711371541 1.735570194995614 -11.52620171269521 5.694151202371042 -11.52620146993524 -1.721617298496609 -9.930784784932458 -5.629321271524137 -9.93078464102506 -5.682238952383604 -9.849983874159859 5.538076584785603 -9.929676401114678 1.630373356558319 -9.929676545021975 5.590999032665459 -9.848875691607359 19.8279694010471 -3.399585845859671 19.21596080132521 -3.506434080563812 19.20824711419368 -3.399585845859672 -12.24637376714517 -13.40836023289157 -12.22674923757046 -13.46881107464228 -12.78473223522918 -13.47715143711746 13.15095731194658 12.04773369815918 13.13512647058755 12.10885081313781 13.73565693208303 12.10112713141661 13.913827371448 7.038180209726914 13.28682978420098 6.959370587725284 13.27393922907185 7.040868146729923 13.35256059130704 3.259584294556714 12.71810719620634 3.157147581717787 12.70818625333717 3.26068161514578 12.78132664426309 0.2637482655984293 12.77789917124408 0.3804753601100623 13.43145531771669 0.3807634770190918 12.69834033445918 -2.286792600824052 12.70183198112379 -2.170065983258001 13.34620643190982 -2.168443406302117 13.24156751753326 -5.010104758862823 13.25024668311079 -4.906504171975626 13.89013699207585 -4.903623658581844 -13.38655077693436 -9.407329466025793 -14.02643328442225 -9.403703719747682 -13.99974726314679 -9.315566488136867 -12.79265236282773 -3.17249119754468 -13.43702561684884 -3.170852553021684 -13.4421999530635 -3.069777157777844 -19.88853787551105 -4.653437878976164 -19.87105866931539 -4.572470025680754 -19.26881717011474 -4.653437878976163 -12.8664396327831 -2.550426284173941 -13.51999690804204 -2.550137563341048 -13.51423263529951 -2.431827814564653 -12.78725258424518 0.5421897651681046 -13.4316259157876 0.5411387125132219 -13.43730858216449 0.6594526508923403 -13.31820626962136 1.148622773729654 -13.95809572863937 1.14641997789693 -13.95356646660478 1.247520193935313 -13.05263182037547 8.058491633593386 -13.65322229626781 8.054612698573468 -13.67842590892999 8.143013872085891 -13.53753473976309 12.42088103693054 -13.56327857532572 12.49011286933152 -12.97958068716272 12.4303234295584 12.18807699161649 -13.99050758966505 12.21078310288069 -14.06453253642737 11.67574409871494 -13.98125989923936 20.80300052005983 -3.525848058974709 20.82854644668942 -3.605475864612836 20.20337945190793 -3.525848058974708 17.92773440791897 0.934404939424109 17.95883205212984 0.5087100955931938 17.86686999530537 0.7498942998668615 20.37068608345732 -0.3150210748115584 20.2389061130269 -0.7428518873839999 20.1766302477866 -0.3823346340016746 -20.2310649963513 -0.7288551156814925 -20.3628445054506 -0.301023868366783 -20.16878870812031 -0.3683374959578851 -17.90835210279895 0.5190444716235586 -17.87725191635645 0.9447395490675353 -17.81638799976208 0.7602288082544331 18.63292876559278 0.6798426208756718 18.71971455788247 0.4374742982094129 18.67283844015406 0.3369992226401191 -18.67640575487218 0.4500103576947548 -18.58961808424568 0.6923788763163904 -18.62952991850636 0.3495352008911188 6.414908754167234 1.023368008062789 2.238467718276084 1.023367830827259 2.238448809289845 1.14048199675667 -2.147192343400981 1.023358710823203 -6.323633826326739 1.023358888058733 -2.147173434416766 1.140472876752615 6.402859763642525 -2.580249934277293 2.238467956833238 -2.463520932997877 6.414908992724389 -2.463520756344259 -2.147192581957001 -2.463513878309864 -6.311584239756299 -2.58024287954372 -6.323634064882758 -2.463513701656246 20.80300052005983 -2.801340922762518 20.20337945190793 -2.801340922762517 20.188512053329 -2.694952224273715 -20.15280409823782 -2.823769506265871 -20.75242450568366 -2.823769506265871 -20.13793298121631 -2.717382437237145 -20.77796689271467 -3.639240388894365 -20.75242450568366 -3.559610185451681 -20.15280409823781 -3.559610185451681 20.35332457234593 -0.3912425455085675 20.31267981979008 -0.795018995246536 20.2188592612982 -0.8185559616507105 -20.30717484434662 -0.7814338473596483 -20.34781928729178 -0.3776570108690364 -20.21335429499406 -0.8049708363084362 -1.945145187511359 -15.47335699436489 -5.965303587510771 -15.39589692551435 -1.946595105483251 -15.39589771130469 1.853880752392238 -15.47229979428692 1.855330669772816 -15.39484051121988 5.874040790733024 -15.39483972542954 -5.785403239548952 -15.04013907866404 -5.847463225359407 -14.97998396035569 -1.826826254579378 -15.04013953634829 5.6941528698481 -15.03873239205965 1.735571862472703 -15.03873284974418 5.756210470486538 -14.97857723599753 -20.13187847699103 -4.886548309996081 -19.51778234712939 -4.886548309996081 -19.53176699574289 -4.976773996913344 19.4733595225263 -5.014604668516155 19.45937786699727 -4.924377015635736 20.07347361540942 -4.924377015635736 19.81049155353127 -4.60384828740536 19.8279694010471 -4.684816776859036 19.20824711419368 -4.684816776859035 -11.58742557215873 -13.99849849022211 -12.12246911885658 -14.08177050757356 -12.09976018715222 -14.00774611181299 12.89323353164304 12.45224083362812 13.47693195902317 12.51203027906792 13.45118815197472 12.44279844010534 13.56703584054666 8.070163337369181 12.96644536465432 8.074042272389097 13.59223945320884 8.158564510881602 13.87238915572219 1.150688780284061 13.23249801746846 1.152891577898662 13.86785819432984 1.251789078104015 13.34502163273091 0.543784993079222 12.70064717012643 0.5448360458892348 13.35070372348434 0.6620989489209274 13.43354892563288 -2.552814681976314 12.77999277959097 -2.553103402850863 13.42778520730833 -2.434504916130313 13.35043036383278 -3.174749920172591 12.70605597875404 -3.176388565908164 13.35560640873016 -3.07367445013428 13.94085189954146 -9.420090180270188 13.30096771279472 -9.423715927097835 13.91416594955969 -9.331952935300919 6.246267764111797 -10.52846786661774 6.291948354259946 -10.61163952638504 5.481289423857795 -10.52846786661774 -13.05222448821012 -8.58187421502493 -13.03820336607494 -8.663257287449984 -13.65281504003895 -8.57755341964312 6.245847800149925 -1.880433942362893 6.266406242435597 -1.980290088833311 5.411532210389346 -1.880433942362893 5.762895432627286 -2.532489777285673 5.773209501044816 -2.650608049472909 4.900561396497381 -2.532489777285673 5.724733741118499 0.7522634488976678 5.714453933394056 0.6341415790908785 4.845745101101401 0.7522634488976678 5.762895432627284 0.1446212800522538 5.74254738240009 0.04473273972453876 4.90056139649738 0.1446212800522538 6.24584780014993 9.099169542499173 6.200304759878094 9.015957262895716 5.411532210389351 9.099169542499173 6.194009239969899 14.76720583912763 5.481289423857793 14.82647764875103 6.246267764111794 14.82647764875103 -6.681573585152865 -15.68616414123209 -6.05407990356233 -15.74840312665198 -6.737347497045993 -15.74840312665198 12.48855316705312 -9.252799388235788 11.97610575784352 -9.249208305926727 11.99392520395582 -9.168288972593787 20.10612483648646 -0.06994634711913117 20.17767637959077 -0.4293966130357051 20.0994877879545 -0.4963115679919771 -20.16009323139969 -0.416667326695615 -20.08854078378872 -0.05721675942178185 -20.0819047173461 -0.4835823377522973 6.381704649756711 5.37887575203954 2.21729160185552 5.378875306235432 2.217181417853976 5.485903637859425 -2.126016372212715 5.378817155681943 -6.290429271102615 5.378817601486052 -2.125906188207228 5.485845487305934 6.393769807776276 0.5592844259689304 2.217292424198623 0.6760129261795581 6.381705472099821 0.6760133383679016 -2.126017194548094 0.6759985033494707 -6.302495025160681 0.559270003232243 -6.290430093437998 0.6759989155378136 20.9060612931202 -1.562612468000731 20.30848620802033 -1.562612468000731 20.30287072104166 -1.44558241718986 -20.25956944162511 -1.569885710493683 -20.85714420726013 -1.569885710493683 -20.25395425910502 -1.45285561270979 20.9060612931202 -2.225438164502922 20.92394225591409 -2.32830743226695 20.30848620802033 -2.225438164502923 -20.87502839644772 -2.345641707276582 -20.85714420726013 -2.242773584147423 -20.25956944162511 -2.242773584147423 -11.88817560536505 -9.260603524094993 -12.40062473387321 -9.264194641840197 -11.906001431415 -9.179683392264884 2.06097151102202 14.99813896867651 6.140855942856528 14.92067524972966 2.061890325359427 14.92067466034867 -1.969700470176329 14.99746901968832 -1.970619284413044 14.92000471135974 -6.049585348923622 14.92000530074073 5.965295159525155 14.4647058947663 6.026937110409433 14.40431189296153 1.946586677497587 14.46470528209729 -5.874032363336034 14.46368315038819 -1.855322242375778 14.46368253771903 -5.935673121822985 14.40328913493601 -20.39490611426975 -5.70279024415907 -19.78667593043199 -5.70279024415907 -19.80659147745628 -5.778662702814096 19.75080462913672 -5.832812341942816 19.73088776767315 -5.756941274204897 20.33911867998974 -5.756941274204898 -20.13187847699103 -6.184768002291844 -20.10909363375337 -6.125026385394213 -19.51778234712939 -6.184768002291844 20.07347361540942 -6.235629099221573 19.45937786699727 -6.235629099221573 20.05068833849255 -6.175887826897446 12.95201542659176 -8.677205228103345 12.96603823407813 -8.595821883043008 13.56662878573868 -8.591501073186427 6.754616299660663 -15.6462745323125 6.810387904093108 -15.70851477878647 6.127121264295615 -15.70851477878647 -6.268455780373956 14.72898408943928 -6.320714429482843 14.78825583087804 -5.555738032909589 14.78825583087804 -5.486073660803411 9.074287849891656 -6.274845184594558 8.991075588023234 -6.320388277228336 9.074287849891652 -4.976351778539248 0.1415936677974302 -5.818333789585228 0.04170518630734208 -5.838683341421687 0.14159366779743 -4.921641526579893 0.7481925475422897 -5.790347859003281 0.6300707052936024 -5.800628184995603 0.7481925475422897 -4.97635177853925 -2.528411035207693 -5.848997933678714 -2.646529279441869 -5.838683341421689 -2.528411035207693 -5.486073660803408 -1.877463045824859 -6.340948186675116 -1.977319135869942 -6.320388277228332 -1.877463045824859 -5.555738032909594 -10.50352967720198 -6.366395134018609 -10.58670129809006 -6.320714429482849 -10.50352967720198 5.481289423857795 -15.98753793244891 5.510969567998247 -15.91530300543795 6.246267764111796 -15.98753793244891 6.24584780014993 -10.78771876483377 5.411532210389351 -10.78771876483377 5.435328218621169 -10.7037108618419 -13.91353734314843 -12.92171871146923 -13.8861213111479 -12.85288663792676 -13.31306410991564 -12.93200797088304 5.762895432627289 -4.557917422079658 4.900561396497384 -4.557917422079658 4.908463923540076 -4.455744293400096 5.724733741118496 -2.869284616338203 4.845745101101398 -2.869284616338203 4.852122102271112 -2.750999744964681 5.762895432627284 0.8523079849774781 4.900561396497379 0.8523079849774783 4.894223108620866 0.9705958909207604 6.245847800149928 2.592472923930502 5.41153221038935 2.592472923930502 5.404312132754207 2.694682901092746 6.246267764111791 9.189171306058729 5.48128942385779 9.189171306058727 5.457634726556623 9.273197912901006 6.054079903562323 15.20192656145848 6.026653593107932 15.27471197250861 6.737347497045986 15.20192656145848 -7.136840617307224 -15.86362293600253 -7.110680685708544 -15.94955050630191 -7.733638703188792 -15.86362293600253 11.88051109584065 -10.51035110463789 11.89856222168681 -10.59982731610746 11.40621783062836 -10.5074326416561 6.286208139886638 10.34096985642506 2.156045206732569 10.34096953267527 2.155637263309643 10.43185840111712 -2.064771138505662 10.34071600012359 -6.194940479075068 10.34071632387338 -2.064363195715607 10.4316048685672 6.320712284776231 4.047761473604088 2.156046116358797 4.151290242535098 6.286209049512875 4.151290488951789 -2.064772048108888 4.151180774574902 -6.229438067194808 4.047651997446768 -6.194941388678302 4.151181020991611 20.38689106185467 -0.3675360882013236 20.98075509356929 -0.4845585734268668 20.38100385810589 -0.4845585734268669 -20.93300181444927 -0.4772426378975562 -20.33913616396483 -0.3602201031614308 -20.33324933203611 -0.4772426378975562 20.98075509356928 -1.181125789820407 20.98439634225405 -1.297509928046471 20.38100385810589 -1.181125789820407 -20.93664116356928 -1.301150725698631 -20.93300181444927 -1.184766447515376 -20.33324933203611 -1.184766447515376 11.9425107601879 -5.460110390939859 11.46821182019071 -5.457833078615106 11.48129222873351 -5.354517706193568 -11.3796557633655 -5.462912767894873 -11.85395239058167 -5.465190072791427 -11.39273033654533 -5.359597732470252 -11.80992550383406 -10.61126265504318 -11.79187660583792 -10.52178615659516 -11.31758565358503 -10.51886768425294 6.19279012385028 8.64965783282023 2.061893058865427 8.730855545814588 6.140858676362587 8.730855762737491 -1.970622017798412 8.730438441473964 -6.10152548991167 8.649240755296395 -6.04958808230905 8.730438658396796 20.62862864475278 4.663095231786883 20.02542496075475 4.663095231786882 20.04875704449826 4.73834140769583 -19.99575106009266 4.793917561647061 -19.97241806420399 4.718672154314169 -20.5756207094513 4.71867215431417 20.39490611426976 5.063741524841502 20.36955884826999 5.00462172494337 19.786675930432 5.063741524841501 -20.33911867998975 5.116027931513679 -19.73088776767315 5.116027931513679 -20.31376897162592 5.056910494480397 -13.54894758620648 -12.869464876199 -12.99100108768251 -12.87938192315538 -12.9741469154952 -12.94032896927434 12.88781872262451 -12.96191251164105 12.90467236016845 -12.90096561145163 13.46261942713789 -12.89104858824029 13.82781376212289 -12.94490572427047 13.2273405288901 -12.95519498368427 13.80039773012236 -12.876073650728 7.206890183415421 -15.8194261028975 7.80369147570937 -15.8194261028975 7.180731613869257 -15.90535242980736 -6.127121264295615 15.16110947286534 -6.810387904093107 15.16110947286534 -6.099695999247533 15.23389437246668 -5.555738032909594 9.16386601240076 -6.320714429482849 9.163866012400758 -5.532082481422274 9.247892971168845 -5.48607366080341 2.582958482464122 -6.320388277228336 2.582958482464122 -5.478856527112153 2.685168097921368 -4.97635177853925 0.847745541607958 -5.838683341421689 0.847745541607958 -4.970013523685966 0.9660334486462843 -4.921641526579892 -2.864741126722707 -5.800628184995603 -2.864741126722707 -4.928018501940538 -2.746456254488112 -4.976351778539248 -4.548779407090365 -5.838683341421688 -4.548779407090365 -4.984251282078246 -4.446606624270848 -5.486073660803407 -10.7624996933367 -6.320388277228332 -10.7624996933367 -5.509870588640021 -10.67849145069768 -6.320714429482852 -15.94817489215379 -5.585417048391617 -15.87594043913541 -5.555738032909598 -15.94817489215379 21.57906557726768 -2.876514824472174 20.65680101162844 -3.153062524123012 21.51185973897987 -2.822035989789736 6.054079903562315 -15.35735574199614 6.737347497045978 -15.35735574199614 6.79137675512484 -15.41563520193747 19.78228867112949 -4.802496146611683 19.81720279778365 -4.884064396474167 18.82936954318858 -4.965817707361395 18.89928919099147 -2.459749490640927 18.91478716833286 -2.561382932191457 17.92280045984089 -2.570335453807294 18.56983972151805 -1.853871095590934 18.57741461973798 -1.972112239387514 17.58561952867072 -1.92545357159622 18.45123474670648 0.09423992229320444 18.44383717760304 -0.02400991670020455 17.46202567084532 0.06687675697882396 18.50194631647845 0.8301131190783623 18.48737543229769 0.7283892171674928 17.5176845152422 0.8472212211496896 19.1518036754584 4.037028737242856 19.12092319045545 3.954465979097988 18.17621860774099 4.104024287775686 19.89386684210612 4.621830500182345 20.82338060881069 4.415922753373301 20.76594985327408 4.35491387762656 -10.35094543297784 -14.20067283139461 -11.19410078352241 -14.53172579100197 -11.19811047518582 -14.44342460728844 -7.136840617307227 -10.31360030017205 -7.733638703188795 -10.31360030017205 -7.683242648508167 -10.23213913867737 20.32446354097022 0.8900140395694282 20.9060612931202 0.78372669717952 20.30848620802033 0.7837266971795198 -20.85714420726013 0.8063377358356672 -20.2755503314351 0.9126234382160128 -20.25956944162511 0.8063377358356674 20.9060612931202 -0.595340636213596 20.90255189760133 -0.7117279831918816 20.30848620802033 -0.595340636213596 -20.85363672124219 -0.7080966544917728 -20.85714420726013 -0.5917091687065901 -20.25956944162511 -0.5917091687065901 11.50908564424262 -1.918365067201044 11.05997776113018 -1.917319314272627 11.06360858494781 -1.800934974495052 -10.9708844374187 -1.918309278534524 -11.4199952284914 -1.919355031782282 -10.97451876354575 -1.801924903216777 11.49024261449513 -6.437900897545949 11.50125220196862 -6.545300943881646 11.04113504256883 -6.436775475956003 -11.41214246865376 -6.551134297138825 -11.40113237296818 -6.443734284266868 -10.95202189307697 -6.442608863027584 7.80369147570937 -10.28700547585288 7.206890183415421 -10.28700547585288 7.75329385580454 -10.20554490388711 20.80300052005983 2.519946469598104 20.20337945190793 2.519946469598103 20.22565931231011 2.609136494481905 -20.17508078172761 2.649577058616104 -20.15280409823781 2.560384419397016 -20.75242450568366 2.560384419397017 20.62862864475278 2.352086369464359 20.60494166879231 2.27210270209862 20.02542496075475 2.352086369464359 -20.55193740283809 2.305486034160472 -20.5756207094513 2.385472061529084 -19.97241806420399 2.385472061529084 12.2068980965008 12.9550050083438 11.69455395108866 12.94594609188215 11.67241457017144 13.00585786343107 -11.58412638900755 13.0226593553717 -11.60626177456227 12.96274836233339 -12.11860764338409 12.97180716108091 12.72918432577834 13.18306093999296 12.70393517905035 13.10954874643071 12.17129791733646 13.17123547407489 -12.64157854467537 13.20214947501818 -12.08369156497823 13.19032410925815 -12.61632654269563 13.12863790408146 -6.864417233210737 -15.3761661782524 -6.810387904093118 -15.317886759067 -6.127121264295628 -15.317886759067 11.25489979803197 -14.38906050582082 11.25089241115764 -14.47736029460588 10.40773359752547 -14.14631256477208 -20.7612177207908 4.288671046468957 -20.81864838608558 4.349679073782933 -19.88913433797749 4.555583957092581 -19.13396671245228 3.912501603394154 -19.16484697658038 3.995064922279535 -18.18926161225843 4.06206092782526 -18.50563229836227 0.713973065757318 -18.52020368526477 0.8156964303875511 -17.53594028943154 0.8328044420980906 -18.46265677827362 -0.03181936797406507 -18.4700543868238 0.08643046949219194 -17.48084579267644 0.05906730453119619 -18.59516460013114 -1.964343308648128 -18.58758982961047 -1.846102159788938 -17.60336804499703 -1.917684638859098 -18.92986105151579 -2.547164824102136 -18.91436262528865 -2.445531918067848 -17.93787344073092 -2.556117298546288 -19.82431353319132 -4.842691482695914 -19.78939915044415 -4.761122784839052 -18.83648099627789 -4.924445242593923 -21.56115409333136 -2.81300687974492 -21.49394886930313 -2.758528585126467 -20.63888794608658 -3.08955183790076 -6.151187897777986 14.86793685246231 -6.183484001710157 14.8188325427136 -6.88676893606024 15.3445787044166 21.01588486134403 -1.493580908638953 20.97214619359315 -1.450305432604273 21.85257272911928 -1.099374492657775 -6.054079903562326 15.66394356841404 -6.085546252392573 15.57912534756473 -6.737347497045989 15.66394356841404 19.09784261631689 -5.665367083744897 19.07866516452079 -5.605766508192128 20.06451467253897 -5.510338225733223 18.94861090759784 -4.489328350193258 17.96526477264077 -4.567994219834461 17.95663560601861 -4.499031578449101 18.55626228192083 -2.245196215778663 17.56705774949353 -2.272660838106723 17.56448057618941 -2.198361804061612 17.50361834533681 0.3376192558547082 18.48537907942182 0.2463938007939507 17.50111210259477 0.263316631053256 17.98349004384679 2.778780388780819 18.95114781123171 2.650100072375254 17.97479970152297 2.709821865356972 18.66871701664516 4.739838390008994 18.68550973270752 4.799881018867224 19.62350378177931 4.626139503213997 20.48585895366501 3.208972020292398 20.5212234669863 3.256749896532715 21.3551482091582 2.922788511933866 -10.59260645905891 -14.02473504976397 -10.57474531747618 -14.07820756627867 -11.42549649788359 -14.3130698754175 -7.032480610264812 -9.929920506486791 -7.017465549157525 -10.009966694629 -7.564205398152559 -9.929920506486791 20.80300052005983 0.6130911782242035 20.78594527094802 0.5101369711179855 20.20337945190793 0.613091178224203 -20.73536589002804 0.5273515224651979 -20.75242450568366 0.6303045875238176 -20.15280409823781 0.6303045875238178 11.11481591308222 -0.1051635201005277 10.67313058780968 -0.1054507822121825 10.66932013353808 0.0109307059469806 -10.58370889753562 -0.1045602024869996 -11.02538954908752 -0.1042729402951162 -10.57989495614908 0.01182131817607818 11.12108527513962 -2.82985394616313 10.6758855991421 -2.711774660640677 11.1175709227317 -2.711485801621931 -10.58646658533347 -2.713396171815666 -11.03166571549463 -2.831475378943757 -11.0281472352027 -2.713107312988698 -7.032480610264807 -5.980251993563511 -7.564205398152554 -5.980251993563511 -7.530786548996639 -5.875759681946785 7.63471531577972 -5.966528150141411 7.102991448426993 -5.966528150141411 7.601296869834521 -5.862035759979094 7.634715315779718 -9.904777725263328 7.087974166484131 -9.98482475006748 7.102991448426991 -9.904777725263328 11.88104301060168 7.730744070698312 11.40674967366338 7.727387722639384 11.38700320447991 7.808030776517882 -11.31811627320468 7.737400235818781 -11.79240729693525 7.740756613765377 -11.29836349812367 7.818044007809075 12.42236784211999 8.855473325503414 11.93024021143789 8.93997306177841 12.44267920541723 8.944654170067947 -11.84224949512063 8.952765702106669 -12.33438121839557 8.868265640508742 -12.35469020856201 8.957446828418414 -7.13684061730723 14.6035380207491 -7.733638703188799 14.6035380207491 -7.793065852383537 14.66364680158483 7.863116019706955 14.62142281774234 7.803691475709366 14.56131246222641 7.206890183415417 14.56131246222641 6.810387904093108 15.62250881395056 6.158585597260383 15.53769164992117 6.127121264295615 15.62250881395056 10.64812188910312 -13.97020986349114 11.48100331908877 -14.25855713810598 10.63025727708445 -14.02368468870126 -20.47134883064427 3.141884624800533 -21.34064834484623 2.855720136661591 -20.50671077110817 3.189659325645795 -18.67744677331908 4.688548675580548 -19.63223152325436 4.574843078576825 -18.69423976044573 4.748594847996532 -18.96586603948137 2.620070198242451 -17.99820761879756 2.748751986681923 -17.98951765047572 2.679792674409498 -18.50374101007454 0.2355873519280551 -17.52198059616986 0.3268114671119724 -17.51947243429134 0.2525099336327405 -17.58504291080237 -2.261868284593515 -18.57424697963804 -2.234404066597924 -17.58246375705508 -2.187570344374183 -17.98007130213197 -4.537979718092 -18.96341891204808 -4.459312931132367 -17.97144271064198 -4.469016272537027 -20.06924100169798 -5.459150753230877 -19.08339303448883 -5.554584673331036 -19.10257096872654 -5.614188769922377 -21.82463515913867 -1.035607285027535 -20.94419451317123 -1.386516728459617 -20.98792973384786 -1.429789553625454 6.957030406515772 15.30147402807357 6.253764026412599 14.77571310684173 6.221463213333099 14.82481879511972 13.24902279558214 3.294787470836895 13.17250605793369 3.493275937324095 13.23996567473463 3.508783176795775 -5.365113282948636 15.79065007294183 -4.710040908357168 15.22767842466411 -5.39995510525978 15.70665233539627 16.19794462004861 2.754856657617638 16.1220949461399 2.556352607012657 16.13048607222746 2.770365114624273 18.34801597482679 1.481637412947112 18.20345860114789 1.329992227552638 18.29265451660103 1.525032494539118 19.53355452758557 0.3371112082606094 19.56892365470986 0.2736465125813908 19.38331637588949 0.1889224661028608 20.0821404801278 -0.5686390283897488 20.09416422805195 -0.6423614134252477 19.89559330751496 -0.6520758376530369 20.14746044991227 -1.316385372481673 20.13548672438661 -1.390114901023454 19.9488895817624 -1.326100459367725 19.73236464710091 -2.196742952686596 19.69731556752489 -2.260318123429297 19.54638105014318 -2.131632940623904 18.58278942852822 -3.435201583282729 18.52779480529105 -3.478882128864334 18.43703879388979 -3.302870002411925 16.33447133570581 -4.872926882947694 16.26708276076318 -4.888623179742998 16.25777471784159 -4.692823570233458 13.07313341024983 -5.779812798939578 13.00574360763224 -5.764118123836169 13.0831053701237 -5.584033418828343 -16.75140205280221 -7.033609355633292 -16.73455669734293 -6.95378890099922 -15.84941523673392 -6.938987130608046 11.485704578568 3.564039440242556 11.03659715100993 3.562346679198259 11.02256251450557 3.665582742433701 -10.94748000297495 3.566890853070066 -11.39659033852839 3.568583609031864 -10.9334511294356 3.67012660634021 11.49823570533242 0.784514190463575 11.0530095748095 0.9012468114319752 11.50211739701468 0.9028734869298769 -10.96390958408971 0.9030289786852718 -11.40913457640902 0.786296441410674 -11.41302031426358 0.9046556530168958 -7.476732188075237 -2.540275438685691 -7.96185890084587 -2.540275438685691 -7.949814201404601 -2.422254753791453 8.031016493912214 -2.536254287616334 7.545887520374816 -2.536254287616334 8.018975014907184 -2.418233402063202 -7.476732188075234 -6.917994599196333 -7.464511891600614 -7.025276898338348 -7.961858900845867 -6.917994599196333 8.03101649391221 -6.900416800026115 7.533669734336611 -7.007698404937827 7.545887520374811 -6.900416800026115 16.76420119447324 -6.91647899188791 16.78104572894176 -6.996300651314189 15.87906067360353 -6.901676998082103 11.91022314828462 4.561712338596312 11.44809652452617 4.666079386483428 11.92239421787382 4.669030272460829 -11.35951521528867 4.672466824850459 -11.82163888593369 4.568099821856783 -11.83381059580436 4.675417709558539 -7.032480610264804 8.72071542154522 -7.564205398152551 8.720715421545219 -7.614253547443564 8.802314661677276 7.634715315779717 8.694160543473812 7.102991448426989 8.694160543473812 7.684765391583088 8.775759062067047 -7.136840617307227 8.411319751399541 -7.151526848290986 8.331230264692637 -7.733638703188795 8.411319751399541 7.803691475709369 8.386000156298877 7.221578957882544 8.305909864359006 7.206890183415419 8.386000156298877 5.440152179921578 15.75103547255551 5.474990754676886 15.66703843587469 4.785074059763954 15.18806852163023 -12.91785455589404 -5.771413657964802 -12.98524824569778 -5.787108314123944 -12.99521938835092 -5.591329170328322 -16.18736023591789 -4.90079620378512 -16.254743835362 -4.885099940633942 -16.17804683615611 -4.704997013960973 -18.45660410930849 -3.492893670088006 -18.5116046017812 -3.449212762133619 -18.36585358986387 -3.316880083443126 -19.6342150670084 -2.270541307850118 -19.66926621938151 -2.206966020290432 -19.48327895573629 -2.141855888590541 -20.07656025567824 -1.393310997677839 -20.08852736323156 -1.31958186362021 -19.88995920110071 -1.329296898526438 -20.0347334368345 -0.6392674188977939 -20.02271642856252 -0.5655454133313304 -19.83616522247241 -0.6489817931228171 -19.50444059046417 0.2832174139911288 -19.46906936833976 0.3466822125640264 -19.31882967102436 0.1984932301516812 -18.13094297193036 1.342681974469279 -18.27550057868637 1.494328204769843 -18.22013320684589 1.537723585374211 -16.04192664748013 2.567288158049044 -16.1177766731274 2.765791866404721 -16.05032309836031 2.781300296672564 -13.08487286704176 3.500189080775882 -13.16139273782458 3.301700818487659 -13.15233636581025 3.515696304294178 10.24085731453228 3.054641142801304 10.09568434174807 3.206266583057336 10.15105999396724 3.249656014342071 -13.92169498924238 8.525583904608956 -13.92571437982139 8.464181066648459 -14.80733845710934 8.721989234606134 9.729376143567727 -5.485682896584646 9.674365302733431 -5.442009467930161 9.820724959866462 -5.309699448012958 -15.7431166168421 -8.744679841109498 -15.74617360574825 -8.806115397923687 -16.63121274020343 -8.824313949317142 -7.649723849017653 0.503208117632882 -8.118524992821746 0.5032081176328818 -8.130684527790425 0.6212197641389228 8.187117002699868 0.4991882500390427 7.718311818779396 0.4991882500390429 8.199273291994922 0.6172001007674531 -7.649723849017653 -2.827342530455175 -7.645574661377543 -2.94568937160102 -8.118524992821746 -2.827342530455175 8.187117002699868 -2.821886003920568 7.714161150644998 -2.940232951486718 7.718311818779396 -2.821886003920568 -17.35285518253659 -4.781519281615425 -17.33550081610619 -4.674675810283945 -16.46204657156678 -4.723592537597446 17.36116383204319 -4.649529544745183 17.37851949569528 -4.756372010921651 16.48771172748784 -4.698445811863101 15.77341221322411 -8.69490455544441 16.66150737375114 -8.774539078152111 15.77646917625345 -8.756340432034165 -7.476732188075231 3.934684559417278 -7.961858900845864 3.934684559417278 -7.996117669615851 4.039003763958955 8.03101649391221 3.92087212163712 7.545887520374811 3.92087212163712 8.065274653067206 4.025191448810749 -7.03248061026481 5.26692659629437 -7.04576841658478 5.159727383726821 -7.564205398152557 5.266926596294369 7.634715315779718 5.249844130181354 7.116276421466857 5.14264557215134 7.102991448426991 5.249844130181354 -16.35401105570545 5.589322087643444 -16.36932733869319 5.669338509553549 -15.46755489395689 5.45903300351341 16.40125262962586 5.632256087627205 16.38593746804693 5.552238438000799 15.49948268553142 5.421947354805714 14.84800931200649 8.674772106184451 13.96638717917902 8.416962603943121 13.96236775505396 8.478365759693405 -9.583499015840868 -5.444112271117455 -9.638510428180183 -5.487785702994803 -9.729861111525326 -5.311802241436492 -10.00503999929794 3.208677945844417 -10.15021542408105 3.057052493225586 -10.06041621888513 3.252067380666915 7.823263378063171 1.844995796719567 7.637044660860614 1.929707460771202 7.672430506030068 1.993162881079528 7.266002671424891 -4.081227628148306 7.230933229169728 -4.017662908855122 7.41752398173393 -3.952563600562411 -7.476732188075232 1.049556411670443 -7.481029337041679 0.9312145841113194 -7.961858900845867 1.049556411670443 8.031016493912208 1.044163919605646 7.550186096798842 0.9258219855750245 7.54588752037481 1.044163919605646 -17.52887280798863 -2.200391799271471 -17.52253928407527 -2.082104840340035 -16.65121182350999 -2.183526522309906 17.54693523901445 -2.074315040848438 17.55326847356357 -2.192602147985348 16.67561015576078 -2.175736849892744 -16.54224332996499 -5.38969046182404 -17.41554103145738 -5.339073624759178 -16.53793646737794 -5.32047998459549 17.44071208892617 -5.309329019913351 16.56741663537295 -5.359946560773709 16.56311019988906 -5.290735121216711 -17.04231749954915 3.027321072225742 -17.05857124665137 3.134267081755523 -16.16536354207718 2.950948116548893 17.08629494565541 3.10905467310819 17.07003942855553 3.002109703978317 16.19308803469502 2.925737491278382 -16.75249666411863 4.038603306935936 -15.86378180945119 3.918212494690579 -15.86143047294218 3.848944464869951 15.89325589887734 3.888945814367085 16.78196948360307 4.009338306784329 15.89090559118726 3.819676817843149 -7.139709940404122 -4.017280058561446 -7.174782378316723 -4.080844784922408 -7.326306038254803 -3.952180743030327 -7.545772553450412 1.92961163723237 -7.731996629065305 1.844899970947288 -7.581161383160362 1.993067059213717 6.454357718850154 0.02693688988193563 6.255173985870023 0.03665121777820374 6.267210639867439 0.1103728717575611 6.292475976014345 -2.027041327424431 6.10527931616058 -2.091055105081219 6.093292294909722 -2.017326341309507 -17.44600370363494 0.1948067163721705 -17.45223396575996 0.3130953221069958 -16.57304843904786 0.1674341708287272 17.47705044806883 0.3053220131582382 17.47082063427238 0.1870332541952688 16.59786600858757 0.1596606731941048 -16.70405113014801 -2.448568659391437 -17.57530955068302 -2.346780597106894 -16.70235926504646 -2.374251231000029 17.5992031813698 -2.336390013497714 16.72794694877144 -2.43817719827735 16.72625352080001 -2.363860410569207 -17.37580324632672 0.6068323270448055 -16.49823457562174 0.5349616993424446 -16.49675925541783 0.4606435041695667 16.52377211140471 0.5245348956779676 17.40133819795266 0.5964049026787099 16.52229490464012 0.4502173423448165 -6.014329621213945 -2.090569549442515 -6.201531625714024 -2.026555794576184 -6.002348538441281 -2.01684081192003 -6.164158314101604 0.03621855138512806 -6.363341453216346 0.02650422652073411 -6.176189022008093 0.1099401823557091</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1272\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 12 6 13 7 14 8 15 8 16 7 17 6 10 9 11 10 9 11 8 11 6 10 7 9 1 12 18 13 2 14 3 14 19 13 4 12 20 15 1 16 0 17 5 17 4 16 21 15 8 5 7 4 22 18 23 18 10 4 9 5 10 9 9 11 23 19 22 19 8 11 7 9 6 3 24 20 7 4 10 4 25 20 11 3 10 9 25 21 11 10 6 10 24 21 7 9 26 22 12 23 14 24 15 24 17 23 27 22 14 25 13 26 28 27 29 27 16 26 15 25 30 28 31 29 32 30 33 30 34 29 35 28 2 31 18 32 36 33 37 33 19 32 3 31 38 34 32 35 39 36 40 36 33 35 41 34 20 37 0 38 42 39 43 39 5 38 21 37 22 18 7 4 44 40 45 40 10 4 23 18 10 9 23 19 45 41 44 41 22 19 7 9 12 42 26 43 46 44 47 44 27 43 17 42 24 20 48 45 7 4 10 4 49 45 25 20 49 46 25 21 10 9 7 9 24 21 48 46 13 47 50 48 28 49 29 49 51 48 16 47 52 50 53 51 54 52 55 52 56 51 57 50 58 53 59 54 52 55 57 55 60 54 61 53 30 56 62 57 31 58 34 58 63 57 35 56 38 59 30 60 32 61 33 61 35 60 41 59 36 62 18 63 64 64 65 64 19 63 37 62 38 65 39 66 66 67 67 67 40 66 41 65 68 68 20 69 42 70 43 70 21 69 69 68 44 40 7 4 70 71 71 71 10 4 45 40 10 9 45 41 71 72 70 72 44 41 7 9 68 73 42 74 72 75 73 75 43 74 69 73 46 76 74 77 75 78 76 78 77 77 47 76 26 79 74 80 46 81 47 81 77 80 27 79 48 45 78 82 7 4 10 4 79 82 49 45 79 83 49 46 10 9 7 9 48 46 78 83 80 84 36 85 64 86 65 86 37 85 81 84 82 87 50 88 83 89 84 89 51 88 85 87 28 90 50 91 82 92 85 92 51 91 29 90 54 93 53 94 86 95 87 95 56 94 55 93 52 96 59 97 53 98 56 98 60 97 57 96 88 99 59 100 58 101 61 101 60 100 89 99 62 102 90 103 91 104 92 104 93 103 63 102 62 105 64 106 31 107 34 107 65 106 63 105 94 108 95 109 90 110 93 110 96 109 97 108 66 111 98 112 99 113 100 113 101 112 67 111 66 114 39 115 68 116 69 116 40 115 67 114 7 4 102 117 70 71 71 71 103 117 10 4 103 118 10 9 71 72 70 72 7 9 102 118 104 119 72 120 105 121 106 121 73 120 107 119 75 122 108 123 109 124 110 124 111 123 76 122 104 125 68 126 72 127 73 127 69 126 107 125 74 128 108 129 75 130 76 130 111 129 77 128 54 131 86 132 74 133 77 133 87 132 55 131 78 82 112 134 7 4 10 4 113 134 79 82 113 135 79 83 10 9 7 9 78 83 112 135 80 136 114 137 115 138 116 138 117 137 81 136 118 139 83 140 119 141 120 141 84 140 121 139 80 142 64 143 114 144 117 144 65 143 81 142 82 145 83 146 118 147 121 147 84 146 85 145 82 148 88 149 58 150 61 150 89 149 85 148 86 151 122 152 123 153 124 153 125 152 87 151 126 154 127 155 128 156 129 156 130 155 131 154 132 157 127 158 88 159 89 159 130 158 133 157 62 160 91 161 134 162 135 162 92 161 63 160 90 103 95 163 91 104 92 104 96 163 93 103 62 164 136 165 64 166 65 166 137 165 63 164 138 167 95 109 94 108 97 108 96 109 139 167 140 168 141 169 66 170 67 170 142 169 143 168 144 171 66 172 68 173 69 173 67 172 145 171 7 4 146 174 102 117 103 117 147 174 10 4 147 175 10 9 103 118 102 118 7 9 146 175 148 176 105 177 149 178 150 178 106 177 151 176 109 179 152 180 153 181 154 181 155 180 110 179 148 182 104 183 105 184 106 184 107 183 151 182 108 185 152 186 109 187 110 187 155 186 111 185 144 188 68 189 104 190 107 190 69 189 145 188 74 191 156 192 108 193 111 193 157 192 77 191 86 194 156 195 74 196 77 196 157 195 87 194 112 134 158 197 7 4 10 4 159 197 113 134 159 198 113 135 10 9 7 9 112 135 158 198 115 199 160 200 161 201 162 201 163 200 116 199 164 202 119 203 165 204 166 204 120 203 167 202 115 205 114 206 160 207 163 207 117 206 116 205 118 208 119 209 164 210 167 210 120 209 121 208 136 211 114 212 64 213 65 213 117 212 137 211 118 214 168 215 82 216 85 216 169 215 121 214 168 217 88 218 82 219 85 219 89 218 169 217 170 220 86 221 171 222 172 222 87 221 173 220 174 223 126 154 128 156 129 156 131 154 175 223 128 224 127 158 132 157 133 157 130 158 129 224 132 225 88 226 176 227 177 227 89 226 133 225 134 228 91 229 178 230 179 230 92 229 135 228 136 231 62 160 134 162 135 162 63 160 137 231 180 232 91 233 95 234 96 234 92 233 181 232 182 235 95 236 183 237 184 237 96 236 185 235 186 238 183 239 140 240 143 240 184 239 187 238 140 241 66 242 144 243 145 243 67 242 143 241 7 4 188 244 146 174 147 174 189 244 10 4 189 245 10 9 147 175 146 175 7 9 188 245 190 246 149 247 191 248 192 248 150 247 193 246 153 249 194 250 195 251 196 251 197 250 154 249 190 252 148 253 149 254 150 254 151 253 193 252 152 255 194 256 153 257 154 257 197 256 155 255 198 258 104 259 148 260 151 260 107 259 199 258 108 261 200 262 152 263 155 263 201 262 111 261 198 264 144 265 104 266 107 266 145 265 199 264 156 267 200 268 108 269 111 269 201 268 157 267 86 270 170 271 156 272 157 272 173 271 87 270 158 197 202 273 7 4 10 4 203 273 159 197 203 274 159 198 10 9 7 9 158 198 202 274 161 275 204 276 205 277 206 277 207 276 162 275 208 278 165 279 209 280 210 280 166 279 211 278 161 281 160 282 204 283 207 283 163 282 162 281 164 284 165 285 208 286 211 286 166 285 167 284 212 287 160 288 114 289 117 289 163 288 213 287 164 290 214 291 118 292 121 292 215 291 167 290 136 293 212 294 114 295 117 295 213 294 137 293 214 296 168 297 118 298 121 298 169 297 215 296 176 227 88 226 168 299 169 299 89 226 177 227 216 300 217 301 170 302 173 302 218 301 219 300 128 303 220 304 216 305 219 305 221 304 129 303 132 306 222 307 128 308 129 308 223 307 133 306 132 309 176 310 224 311 225 311 177 310 133 309 226 312 134 313 178 314 179 314 135 313 227 312 178 315 91 316 180 317 181 317 92 316 179 315 136 318 134 319 228 320 229 320 135 319 137 318 180 321 95 322 182 323 185 323 96 322 181 321 186 324 182 325 183 326 184 326 185 325 187 324 230 327 186 328 140 329 143 329 187 328 231 327 232 330 140 331 144 332 145 332 143 331 233 330 234 333 235 334 236 335 237 335 238 334 239 333 240 336 241 337 242 338 243 338 244 337 245 336 246 339 191 340 247 341 248 341 192 340 249 339 195 342 250 343 251 344 252 344 253 343 196 342 246 345 190 346 191 347 192 347 193 346 249 345 194 348 250 349 195 350 196 350 253 349 197 348 254 351 148 352 190 353 193 353 151 352 255 351 152 354 256 355 194 356 197 356 257 355 155 354 198 357 148 358 254 359 255 359 151 358 199 357 152 360 200 361 256 362 257 362 201 361 155 360 232 363 144 364 198 365 199 365 145 364 233 363 156 366 258 367 200 368 201 368 259 367 157 366 156 369 170 370 258 371 259 371 173 370 157 369 202 273 260 372 7 4 10 4 261 372 203 273 261 373 203 274 10 9 7 9 202 274 260 373 205 374 262 375 263 376 264 376 265 375 206 374 266 377 209 378 267 379 268 379 210 378 269 377 205 380 204 381 262 382 265 382 207 381 206 380 208 383 209 384 266 385 269 385 210 384 211 383 160 386 270 387 204 388 207 388 271 387 163 386 272 389 164 390 208 391 211 391 167 390 273 389 212 392 270 393 160 394 163 394 271 393 213 392 272 395 214 396 164 397 167 397 215 396 273 395 212 398 136 399 228 400 229 400 137 399 213 398 274 401 168 402 214 403 215 403 169 402 275 401 176 404 168 405 274 406 275 406 169 405 177 404 217 407 276 408 170 409 173 409 277 408 218 407 216 410 220 411 217 412 218 412 221 411 219 410 128 413 222 414 220 415 221 415 223 414 129 413 132 416 224 417 222 418 223 418 225 417 133 416 176 419 278 420 224 421 225 421 279 420 177 419 226 422 178 423 280 424 281 424 179 423 227 422 228 425 134 426 226 427 227 427 135 426 229 425 178 428 180 429 282 430 283 430 181 429 179 428 180 431 284 432 285 433 286 433 287 432 181 431 288 434 289 435 284 436 287 436 290 435 291 434 230 437 292 438 288 439 291 439 293 438 231 437 230 440 140 441 232 442 233 442 143 441 231 440 294 443 246 444 247 445 248 445 249 444 295 443 296 446 297 447 298 448 299 448 300 447 301 446 302 449 303 450 304 451 305 451 306 450 307 449 250 452 308 453 251 454 252 454 309 453 253 452 310 455 190 456 246 457 249 457 193 456 311 455 194 458 312 459 250 460 253 460 313 459 197 458 254 461 190 462 310 463 311 463 193 462 255 461 194 464 256 465 312 466 313 466 257 465 197 464 314 467 198 468 254 469 255 469 199 468 315 467 200 470 316 471 256 472 257 472 317 471 201 470 314 473 232 363 198 365 199 365 233 363 315 473 200 368 258 367 316 474 317 474 259 367 201 368 170 475 276 476 258 477 259 477 277 476 173 475 298 478 318 479 296 480 301 480 319 479 299 478 320 481 303 482 302 483 307 483 306 482 321 481 263 484 322 485 323 486 324 486 325 485 264 484 326 487 267 488 327 489 328 489 268 488 329 487 263 490 262 491 322 492 325 492 265 491 264 490 266 493 267 494 326 495 329 495 268 494 269 493 204 496 330 497 331 498 332 498 333 497 207 496 334 499 208 500 335 501 336 501 211 500 337 499 270 502 330 503 204 504 207 504 333 503 271 502 334 505 272 506 208 507 211 507 273 506 337 505 270 508 212 509 338 510 339 510 213 509 271 508 340 511 214 512 272 513 273 513 215 512 341 511 212 514 228 515 338 516 339 516 229 515 213 514 274 517 214 512 340 518 341 518 215 512 275 517 176 519 274 520 278 521 279 521 275 520 177 519 276 522 342 523 343 524 344 524 345 523 277 522 342 525 346 526 347 527 348 527 349 526 345 525 350 528 346 529 222 530 223 530 349 529 351 528 222 531 224 532 352 533 353 533 225 532 223 531 224 534 278 535 354 536 355 536 279 535 225 534 226 537 280 538 356 539 357 539 281 538 227 537 178 540 282 541 280 542 281 542 283 541 179 540 228 543 226 544 358 545 359 545 227 544 229 543 180 546 285 547 282 548 283 548 286 547 181 546 284 549 289 550 285 551 286 551 290 550 287 549 292 552 289 553 288 554 291 554 290 553 293 552 360 555 292 556 230 557 231 557 293 556 361 555 362 558 230 559 232 560 233 560 231 559 363 558 246 561 364 562 365 563 366 563 367 562 249 561 364 564 368 565 369 566 370 566 371 565 367 564 372 567 373 568 374 569 375 569 376 568 377 567 373 570 250 571 378 572 379 572 253 571 376 570 310 573 246 574 365 575 366 575 249 574 311 573 250 576 312 577 378 578 379 578 313 577 253 576 380 579 254 580 310 581 311 581 255 580 381 579 256 582 382 583 312 584 313 584 383 583 257 582 380 585 314 586 254 587 255 587 315 586 381 585 256 588 316 589 382 590 383 590 317 589 257 588 362 591 232 592 314 593 315 593 233 592 363 591 258 594 384 595 316 596 317 596 385 595 259 594 276 597 384 598 258 599 259 599 385 598 277 597 322 600 386 601 323 602 324 602 387 601 325 600 326 603 327 604 388 605 389 605 328 604 329 603 331 606 390 607 391 608 392 608 393 607 332 606 394 609 335 610 395 611 396 611 336 610 397 609 330 612 390 613 331 614 332 614 393 613 333 612 394 615 334 616 335 617 336 617 337 616 397 615 330 618 270 619 398 620 399 620 271 619 333 618 400 621 272 622 334 623 337 623 273 622 401 621 270 619 338 624 398 620 399 620 339 624 271 619 340 625 272 622 400 621 401 621 273 622 341 625 338 626 228 627 358 628 359 628 229 627 339 626 274 629 340 630 402 631 403 631 341 630 275 629 278 632 274 633 402 634 403 634 275 633 279 632 276 635 343 636 404 637 405 637 344 636 277 635 342 638 347 639 343 640 344 640 348 639 345 638 347 641 346 642 350 643 351 643 349 642 348 641 350 644 222 645 352 646 353 646 223 645 351 644 352 647 224 648 354 649 355 649 225 648 353 647 354 650 278 651 406 652 407 652 279 651 355 650 280 653 408 654 356 655 357 655 409 654 281 653 358 656 226 657 356 658 357 658 227 657 359 656 410 659 280 660 282 661 283 661 281 660 411 659 412 662 282 663 285 664 286 664 283 663 413 662 289 665 414 666 285 667 286 667 415 666 290 665 292 668 416 669 289 670 290 670 417 669 293 668 360 671 418 672 292 673 293 673 419 672 361 671 360 674 230 675 362 676 363 676 231 675 361 674 364 677 369 678 365 679 366 679 370 678 367 677 368 680 420 681 369 682 370 682 421 681 371 680 422 683 372 684 374 685 375 685 377 684 423 683 374 686 373 687 378 688 379 688 376 687 375 686 424 689 310 690 365 691 366 691 311 690 425 689 312 692 426 693 378 694 379 694 427 693 313 692 424 695 380 696 310 697 311 697 381 696 425 695 312 698 382 699 426 700 427 700 383 699 313 698 428 701 314 702 380 703 381 703 315 702 429 701 316 704 430 705 382 706 383 706 431 705 317 704 362 707 314 708 428 709 429 709 315 708 363 707 316 710 384 711 430 712 431 712 385 711 317 710 276 713 404 714 384 715 385 715 405 714 277 713 391 716 420 717 368 718 371 718 421 717 392 716 422 719 395 720 372 721 377 721 396 720 423 719 391 722 390 723 420 724 421 724 393 723 392 722 394 725 395 726 422 727 423 727 396 726 397 725 432 728 330 729 433 730 434 730 333 729 435 728 436 731 334 732 437 733 438 733 337 732 439 731 330 734 398 735 433 736 434 736 399 735 333 734 400 737 334 738 436 739 439 739 337 738 401 737 398 740 338 741 440 742 441 742 339 741 399 740 340 743 400 744 442 745 443 745 401 744 341 743 338 746 358 747 440 748 441 748 359 747 339 746 402 749 340 750 442 751 443 751 341 750 403 749 278 752 402 753 406 754 407 754 403 753 279 752 404 755 343 756 444 757 445 757 344 756 405 755 343 758 347 759 446 760 447 760 348 759 344 758 347 761 350 762 448 763 449 763 351 762 348 761 352 764 450 765 350 766 351 766 451 765 353 764 354 767 452 768 352 769 353 769 453 768 355 767 454 770 354 771 406 772 407 772 355 771 455 770 408 773 456 774 356 775 357 775 457 774 409 773 410 776 408 777 280 778 281 778 409 777 411 776 358 779 356 780 458 781 459 781 357 780 359 779 412 782 410 783 282 784 283 784 411 783 413 782 414 785 412 786 285 787 286 787 413 786 415 785 416 788 414 789 289 790 290 790 415 789 417 788 418 791 416 792 292 793 293 793 417 792 419 791 460 794 418 795 360 796 361 796 419 795 461 794 360 797 362 798 462 799 463 799 363 798 361 797 464 800 365 801 465 802 466 802 366 801 467 800 468 803 469 804 465 805 466 805 470 804 471 803 472 806 473 807 474 808 475 808 476 807 477 806 378 809 478 810 473 811 476 811 479 810 379 809 464 812 424 689 365 691 366 691 425 689 467 812 378 694 426 693 478 813 479 813 427 693 379 694 480 814 380 815 424 816 425 816 381 815 481 814 382 817 482 818 426 819 427 819 483 818 383 817 480 820 428 821 380 822 381 822 429 821 481 820 430 823 482 824 382 825 383 825 483 824 431 823 462 826 362 827 428 828 429 828 363 827 463 826 384 829 484 830 430 831 431 831 485 830 385 829 384 832 404 833 484 834 485 834 405 833 385 832 432 835 486 836 468 837 471 837 487 836 435 835 437 838 472 839 488 840 489 840 477 839 438 838 433 841 486 842 432 843 435 843 487 842 434 841 436 844 437 845 488 846 489 846 438 845 439 844 490 847 398 848 491 849 492 849 399 848 493 847 400 850 494 851 495 852 496 852 497 851 401 850 398 853 440 854 491 855 492 855 441 854 399 853 442 856 400 857 495 858 496 858 401 857 443 856 440 859 358 860 458 861 459 861 359 860 441 859 402 862 442 863 498 864 499 864 443 863 403 862 406 865 402 866 498 867 499 867 403 866 407 865 404 868 444 869 500 870 501 870 445 869 405 868 343 871 446 872 444 873 445 873 447 872 344 871 448 874 446 875 347 876 348 876 447 875 449 874 450 877 448 878 350 879 351 879 449 878 451 877 452 880 450 881 352 882 353 882 451 881 453 880 454 883 452 884 354 885 355 885 453 884 455 883 502 886 454 887 406 888 407 888 455 887 503 886 456 889 408 890 504 891 505 891 409 890 457 889 356 892 456 893 458 894 459 894 457 893 357 892 408 895 410 896 506 897 507 897 411 896 409 895 410 898 412 899 508 900 509 900 413 899 411 898 414 901 510 902 412 903 413 903 511 902 415 901 416 904 512 905 414 906 415 906 513 905 417 904 418 907 514 908 416 909 417 909 515 908 419 907 460 910 516 911 418 912 419 912 517 911 461 910 462 913 460 914 360 915 361 915 461 914 463 913 469 916 464 800 465 802 466 802 467 800 470 916 486 917 469 918 468 919 471 919 470 918 487 917 488 920 472 921 474 922 475 922 477 921 489 920 473 811 478 810 474 923 475 923 479 810 476 811 518 924 424 925 464 926 467 926 425 925 519 924 426 927 520 928 478 929 479 929 521 928 427 927 518 930 480 931 424 932 425 932 481 931 519 930 482 933 520 934 426 935 427 935 521 934 483 933 522 936 428 937 480 938 481 938 429 937 523 936 430 939 524 940 482 941 483 941 525 940 431 939 462 942 428 943 522 944 523 944 429 943 463 942 430 945 484 946 524 947 525 947 485 946 431 945 484 948 404 949 500 950 501 950 405 949 485 948 526 951 490 952 527 953 528 953 493 952 529 951 494 954 530 955 531 956 532 956 533 955 497 954 490 957 491 958 527 959 528 959 492 958 493 957 495 960 494 961 531 962 532 962 497 961 496 960 534 963 440 964 535 965 536 965 441 964 537 963 442 966 538 967 539 968 540 968 541 967 443 966 440 969 458 970 535 971 536 971 459 970 441 969 498 972 442 973 539 974 540 974 443 973 499 972 502 975 406 976 498 977 499 977 407 976 503 975 500 978 444 979 542 980 543 980 445 979 501 978 444 981 446 982 544 983 545 983 447 982 445 981 546 984 446 985 448 986 449 986 447 985 547 984 548 987 448 988 450 989 451 989 449 988 549 987 450 990 452 991 550 992 551 992 453 991 451 990 452 993 454 994 552 995 553 995 455 994 453 993 454 996 502 997 554 998 555 998 503 997 455 996 456 999 504 1000 556 1001 557 1001 505 1000 457 999 408 1002 506 1003 504 1004 505 1004 507 1003 409 1002 456 1005 558 1006 458 1007 459 1007 559 1006 457 1005 410 1008 508 1009 506 1010 507 1010 509 1009 411 1008 412 1011 510 1012 508 1013 509 1013 511 1012 413 1011 414 1014 512 1015 510 1016 511 1016 513 1015 415 1014 416 1017 514 1018 512 1019 513 1019 515 1018 417 1017 516 1020 514 1021 418 1022 419 1022 515 1021 517 1020 560 1023 516 1024 460 1025 461 1025 517 1024 561 1023 562 1026 460 1027 462 1028 463 1028 461 1027 563 1026 469 1029 564 1030 464 1031 467 1031 565 1030 470 1029 526 1032 566 1033 469 1034 470 1034 567 1033 529 1032 568 1035 530 1036 474 1037 475 1037 533 1036 569 1035 570 1038 474 1039 478 1040 479 1040 475 1039 571 1038 464 1041 564 1042 518 1043 519 1043 565 1042 467 1041 570 1044 478 1045 520 1046 521 1046 479 1045 571 1044 572 1047 480 1048 518 1049 519 1049 481 1048 573 1047 482 1050 574 1051 520 1052 521 1052 575 1051 483 1050 522 1053 480 1054 572 1055 573 1055 481 1054 523 1053 482 1056 524 1057 574 1058 575 1058 525 1057 483 1056 562 1059 462 1060 522 1061 523 1061 463 1060 563 1059 484 1062 576 1063 524 1064 525 1064 577 1063 485 1062 500 1065 576 1066 484 1067 485 1067 577 1066 501 1065 526 1068 527 1069 566 1070 567 1070 528 1069 529 1068 531 1071 530 1072 568 1073 569 1073 533 1072 532 1071 534 1074 578 1075 579 1076 580 1076 581 1075 537 1074 538 1077 582 1078 583 1079 584 1079 585 1078 541 1077 535 1080 578 1081 534 1082 537 1082 581 1081 536 1080 539 1083 538 1084 583 1085 584 1085 541 1084 540 1083 558 1086 535 1087 458 1088 459 1088 536 1087 559 1086 498 1089 539 1090 586 1091 587 1091 540 1090 499 1089 586 1092 502 1093 498 1094 499 1094 503 1093 587 1092 500 1095 542 1096 588 1097 589 1097 543 1096 501 1095 444 1098 544 1099 542 1100 543 1100 545 1099 445 1098 544 1101 446 1102 546 1103 547 1103 447 1102 545 1101 546 1104 448 1105 548 1106 549 1106 449 1105 547 1104 548 1107 450 1108 550 1109 551 1109 451 1108 549 1107 550 1110 452 1111 552 1112 553 1112 453 1111 551 1110 552 1113 454 1114 554 1115 555 1115 455 1114 553 1113 554 1116 502 1117 590 1118 591 1118 503 1117 555 1116 556 1119 504 1120 592 1121 593 1121 505 1120 557 1119 558 1122 456 1123 556 1124 557 1124 457 1123 559 1122 504 1125 506 1126 594 1127 595 1127 507 1126 505 1125 506 1128 508 1129 596 1130 597 1130 509 1129 507 1128 508 1131 510 1132 598 1133 599 1133 511 1132 509 1131 510 1134 512 1135 600 1136 601 1136 513 1135 511 1134 512 1137 514 1138 602 1139 603 1139 515 1138 513 1137 516 1140 604 1141 514 1142 515 1142 605 1141 517 1140 560 1143 606 1144 516 1145 517 1145 607 1144 561 1143 560 1146 460 1147 562 1148 563 1148 461 1147 561 1146 469 1149 566 1150 564 1151 565 1151 567 1150 470 1149 568 1152 474 1153 570 1154 571 1154 475 1153 569 1152 608 1155 518 1156 564 1157 565 1157 519 1156 609 1155 520 1158 610 1159 570 1160 571 1160 611 1159 521 1158 572 1161 518 1162 608 1163 609 1163 519 1162 573 1161 520 1164 574 1165 610 1166 611 1166 575 1165 521 1164 612 1167 522 1168 572 1169 573 1169 523 1168 613 1167 524 1170 614 1171 574 1172 575 1172 615 1171 525 1170 612 1173 562 1174 522 1175 523 1175 563 1174 613 1173 576 1176 614 1177 524 1178 525 1178 615 1177 577 1176 500 1179 588 1180 576 1181 577 1181 589 1180 501 1179 579 1182 616 1183 617 1184 618 1184 619 1183 580 1182 582 1185 620 1186 621 1187 622 1187 623 1186 585 1185 578 1188 616 1189 579 1190 580 1190 619 1189 581 1188 583 1191 582 1192 621 1193 622 1193 585 1192 584 1191 624 1194 578 1195 535 1196 536 1196 581 1195 625 1194 539 1197 583 1198 626 1199 627 1199 584 1198 540 1197 558 1200 624 1201 535 1202 536 1202 625 1201 559 1200 586 1203 539 1204 626 1205 627 1205 540 1204 587 1203 502 1206 586 1207 590 1208 591 1208 587 1207 503 1206 588 1209 542 1210 628 1211 629 1211 543 1210 589 1209 542 1212 544 1213 630 1214 631 1214 545 1213 543 1212 632 1215 544 1216 546 1217 547 1217 545 1216 633 1215 634 1218 546 1219 548 1220 549 1220 547 1219 635 1218 636 1221 548 1222 550 1223 551 1223 549 1222 637 1221 638 1224 550 1225 552 1226 553 1226 551 1225 639 1224 640 1227 552 1228 554 1229 555 1229 553 1228 641 1227 642 1230 554 1231 590 1232 591 1232 555 1231 643 1230 592 1233 644 1234 556 1235 557 1235 645 1234 593 1233 504 1236 594 1237 592 1238 593 1238 595 1237 505 1236 556 1239 646 1240 558 1241 559 1241 647 1240 557 1239 506 1242 596 1243 594 1244 595 1244 597 1243 507 1242 508 1245 598 1246 596 1247 597 1247 599 1246 509 1245 510 1248 600 1249 598 1250 599 1250 601 1249 511 1248 512 1251 602 1252 600 1253 601 1253 603 1252 513 1251 514 1254 604 1255 602 1256 603 1256 605 1255 515 1254 606 1257 604 1258 516 1259 517 1259 605 1258 607 1257 648 1260 606 1261 560 1262 561 1262 607 1261 649 1260 650 1263 560 1264 562 1265 563 1265 561 1264 651 1263 652 1266 564 1267 617 1268 618 1268 565 1267 653 1266 570 1269 654 1270 620 1271 623 1271 655 1270 571 1269 608 1272 564 1273 652 1274 653 1274 565 1273 609 1272 570 1275 610 1276 654 1277 655 1277 611 1276 571 1275 608 1278 656 1279 572 1280 573 1280 657 1279 609 1278 658 1281 610 1282 574 1283 575 1283 611 1282 659 1281 656 1284 612 1285 572 1286 573 1286 613 1285 657 1284 614 1287 658 1288 574 1289 575 1289 659 1288 615 1287 650 1290 562 1291 612 1292 613 1292 563 1291 651 1290 576 1293 660 1294 614 1295 615 1295 661 1294 577 1293 588 1296 660 1297 576 1298 577 1298 661 1297 589 1296 652 1299 617 1300 616 1301 619 1301 618 1300 653 1299 620 1302 654 1303 621 1304 622 1304 655 1303 623 1302 662 1305 616 1306 578 1307 581 1307 619 1306 663 1305 583 1308 621 1309 664 1310 665 1310 622 1309 584 1308 624 1311 662 1312 578 1313 581 1313 663 1312 625 1311 626 1314 583 1315 664 1316 665 1316 584 1315 627 1314 646 1317 624 1318 558 1319 559 1319 625 1318 647 1317 586 1320 626 1321 666 1322 667 1322 627 1321 587 1320 590 1323 586 1324 666 1325 667 1325 587 1324 591 1323 668 1326 588 1327 628 1328 629 1328 589 1327 669 1326 628 1329 542 1330 630 1331 631 1331 543 1330 629 1329 630 1332 544 1333 632 1334 633 1334 545 1333 631 1332 632 1335 546 1336 634 1337 635 1337 547 1336 633 1335 634 1338 548 1339 636 1340 637 1340 549 1339 635 1338 636 1341 550 1342 638 1343 639 1343 551 1342 637 1341 638 1344 552 1345 640 1346 641 1346 553 1345 639 1344 640 1347 554 1348 642 1349 643 1349 555 1348 641 1347 590 1350 670 1351 642 1352 643 1352 671 1351 591 1350 592 1353 672 1354 644 1355 645 1355 673 1354 593 1353 644 1356 646 1357 556 1358 557 1358 647 1357 645 1356 592 1359 594 1360 674 1361 675 1361 595 1360 593 1359 594 1362 596 1363 676 1364 677 1364 597 1363 595 1362 596 1365 598 1366 678 1367 679 1367 599 1366 597 1365 598 1368 600 1369 680 1370 681 1370 601 1369 599 1368 600 1371 602 1372 682 1373 683 1373 603 1372 601 1371 602 1374 604 1375 684 1376 685 1376 605 1375 603 1374 686 1377 604 1378 606 1379 607 1379 605 1378 687 1377 688 1380 606 1381 648 1382 649 1382 607 1381 689 1380 648 1383 560 1384 650 1385 651 1385 561 1384 649 1383 652 1386 690 1387 608 1388 609 1388 691 1387 653 1386 692 1389 654 1390 610 1391 611 1391 655 1390 693 1389 690 1392 656 1393 608 1394 609 1394 657 1393 691 1392 658 1395 692 1396 610 1397 611 1397 693 1396 659 1395 694 1398 612 1399 656 1400 657 1400 613 1399 695 1398 614 1401 696 1402 658 1403 659 1403 697 1402 615 1401 694 1404 650 1405 612 1406 613 1406 651 1405 695 1404 660 1407 696 1408 614 1409 615 1409 697 1408 661 1407 588 1410 668 1411 660 1412 661 1412 669 1411 589 1410 698 1413 652 1414 616 1415 619 1415 653 1414 699 1413 621 1416 654 1417 700 1418 701 1418 655 1417 622 1416 662 1419 698 1420 616 1421 619 1421 699 1420 663 1419 700 1422 664 1423 621 1424 622 1424 665 1423 701 1422 702 1425 662 1426 624 1427 625 1427 663 1426 703 1425 626 1428 664 1429 704 1430 705 1430 665 1429 627 1428 646 1431 702 1432 624 1433 625 1433 703 1432 647 1431 666 1434 626 1435 704 1436 705 1436 627 1435 667 1434 590 1437 666 1438 670 1439 671 1439 667 1438 591 1437 668 1440 628 1441 706 1442 707 1442 629 1441 669 1440 628 1443 630 1444 708 1445 709 1445 631 1444 629 1443 630 1446 632 1447 710 1448 711 1448 633 1447 631 1446 632 1449 634 1450 712 1451 713 1451 635 1450 633 1449 634 1452 636 1453 714 1454 715 1454 637 1453 635 1452 636 1455 638 1456 716 1457 717 1457 639 1456 637 1455 638 1458 640 1459 718 1460 719 1460 641 1459 639 1458 640 1461 642 1462 720 1463 721 1463 643 1462 641 1461 642 1464 670 1465 722 1466 723 1466 671 1465 643 1464 672 1467 724 1468 644 1469 645 1469 725 1468 673 1467 674 1470 672 1471 592 1472 593 1472 673 1471 675 1470 644 1473 726 1474 646 1475 647 1475 727 1474 645 1473 676 1476 674 1477 594 1478 595 1478 675 1477 677 1476 596 1479 678 1480 676 1481 677 1481 679 1480 597 1479 598 1482 680 1483 678 1484 679 1484 681 1483 599 1482 680 1485 600 1486 682 1487 683 1487 601 1486 681 1485 682 1488 602 1489 684 1490 685 1490 603 1489 683 1488 686 1491 684 1492 604 1493 605 1493 685 1492 687 1491 688 1494 686 1495 606 1496 607 1496 687 1495 689 1494 728 1497 688 1498 648 1499 649 1499 689 1498 729 1497 730 1500 648 1501 650 1502 651 1502 649 1501 731 1500 698 1503 690 1504 652 1505 653 1505 691 1504 699 1503 692 1506 700 1507 654 1508 655 1508 701 1507 693 1506 732 1509 656 1510 690 1511 691 1511 657 1510 733 1509 658 1512 734 1513 692 1514 693 1514 735 1513 659 1512 694 1515 656 1516 732 1517 733 1517 657 1516 695 1515 658 1518 696 1519 734 1520 735 1520 697 1519 659 1518 730 1521 650 1522 694 1523 695 1523 651 1522 731 1521 660 1524 736 1525 696 1526 697 1526 737 1525 661 1524 660 1527 668 1528 736 1529 737 1529 669 1528 661 1527 738 1530 698 1531 662 1532 663 1532 699 1531 739 1530 700 1533 740 1534 664 1535 665 1535 741 1534 701 1533 738 1536 662 1537 702 1538 703 1538 663 1537 739 1536 664 1539 740 1540 704 1541 705 1541 741 1540 665 1539 726 1542 702 1543 646 1544 647 1544 703 1543 727 1542 666 1545 704 1546 742 1547 743 1547 705 1546 667 1545 666 1548 742 1549 670 1550 671 1550 743 1549 667 1548 744 1551 668 1552 706 1553 707 1553 669 1552 745 1551 706 1554 628 1555 708 1556 709 1556 629 1555 707 1554 708 1557 630 1558 710 1559 711 1559 631 1558 709 1557 632 1560 712 1561 710 1562 711 1562 713 1561 633 1560 634 1563 714 1564 712 1565 713 1565 715 1564 635 1563 714 1566 636 1567 716 1568 717 1568 637 1567 715 1566 716 1569 638 1570 718 1571 719 1571 639 1570 717 1569 640 1572 720 1573 718 1574 719 1574 721 1573 641 1572 642 1575 722 1576 720 1577 721 1577 723 1576 643 1575 670 1578 746 1579 722 1580 723 1580 747 1579 671 1578 748 1581 724 1582 672 1583 673 1583 725 1582 749 1581 644 1584 724 1585 726 1586 727 1586 725 1585 645 1584 674 1587 748 1588 672 1589 673 1589 749 1588 675 1587 676 1590 748 1591 674 1592 675 1592 749 1591 677 1590 676 1593 678 1594 748 1595 749 1595 679 1594 677 1593 678 1596 680 1597 748 1598 749 1598 681 1597 679 1596 680 1599 682 1600 748 1601 749 1601 683 1600 681 1599 682 1602 684 1603 748 1604 749 1604 685 1603 683 1602 684 1605 686 1606 748 1607 749 1607 687 1606 685 1605 686 1608 688 1609 748 1610 749 1610 689 1609 687 1608 688 1611 750 1612 748 1613 749 1613 751 1612 689 1611 648 1614 730 1615 728 1616 729 1616 731 1615 649 1614 752 1617 690 1618 698 1619 699 1619 691 1618 753 1617 692 1620 754 1621 700 1622 701 1622 755 1621 693 1620 732 1623 690 1624 752 1625 753 1625 691 1624 733 1623 692 1626 734 1627 754 1628 755 1628 735 1627 693 1626 756 1629 694 1630 732 1631 733 1631 695 1630 757 1629 696 1632 758 1633 734 1634 735 1634 759 1633 697 1632 756 1635 730 1636 694 1637 695 1637 731 1636 757 1635 696 1638 736 1639 758 1640 759 1640 737 1639 697 1638 736 1641 668 1642 744 1643 745 1643 669 1642 737 1641 752 1644 698 1645 738 1646 739 1646 699 1645 753 1644 700 1647 754 1648 740 1649 741 1649 755 1648 701 1647 760 1650 738 1651 702 1652 703 1652 739 1651 761 1650 740 1653 762 1654 704 1655 705 1655 763 1654 741 1653 726 1656 760 1657 702 1658 703 1658 761 1657 727 1656 704 1659 762 1660 742 1661 743 1661 763 1660 705 1659 670 1662 742 1663 746 1664 747 1664 743 1663 671 1662 764 1665 706 1666 765 1667 766 1667 707 1666 767 1665 706 1668 708 1669 765 1670 766 1670 709 1669 707 1668 708 1671 710 1672 765 1673 766 1673 711 1672 709 1671 710 1674 712 1675 765 1676 766 1676 713 1675 711 1674 712 1677 714 1678 765 1679 766 1679 715 1678 713 1677 714 1680 716 1681 765 1682 766 1682 717 1681 715 1680 716 1683 718 1684 765 1685 766 1685 719 1684 717 1683 765 1686 718 1687 720 1688 721 1688 719 1687 766 1686 765 1689 720 1690 722 1691 723 1691 721 1690 766 1689 746 1692 765 1693 722 1694 723 1694 766 1693 747 1692 748 1695 768 1696 724 1697 725 1697 769 1696 749 1695 724 1698 770 1699 726 1700 727 1700 771 1699 725 1698 750 1701 772 1702 748 1703 749 1703 773 1702 751 1701 774 1704 728 1705 730 1706 731 1706 729 1705 775 1704 776 1707 732 1708 752 1709 753 1709 733 1708 777 1707 734 1710 778 1711 754 1712 755 1712 779 1711 735 1710 776 1713 756 1714 732 1715 733 1715 757 1714 777 1713 734 1716 758 1717 778 1718 779 1718 759 1717 735 1716 730 1719 756 1720 774 1721 775 1721 757 1720 731 1719 758 1722 736 1723 780 1724 781 1724 737 1723 759 1722 780 1725 736 1726 744 1727 745 1727 737 1726 781 1725 782 1728 752 1729 738 1730 739 1730 753 1729 783 1728 754 1731 784 1732 740 1733 741 1733 785 1732 755 1731 760 1734 782 1735 738 1736 739 1736 783 1735 761 1734 740 1737 784 1738 762 1739 763 1739 785 1738 741 1737 760 1740 726 1741 770 1742 771 1742 727 1741 761 1740 742 1743 762 1744 786 1745 787 1745 763 1744 743 1743 742 1746 786 1747 746 1748 747 1748 787 1747 743 1746 788 1749 764 1750 765 1751 766 1751 767 1750 789 1749 790 1752 765 1753 746 1754 747 1754 766 1753 791 1752 748 1755 792 1756 768 1757 769 1757 793 1756 749 1755 772 1758 794 1759 748 1760 749 1760 795 1759 773 1758 782 1761 776 1762 752 1763 753 1763 777 1762 783 1761 754 1764 778 1765 784 1766 785 1766 779 1765 755 1764 756 1767 776 1768 796 1769 797 1769 777 1768 757 1767 778 1770 758 1771 798 1772 799 1772 759 1771 779 1770 774 1773 756 1774 796 1775 797 1775 757 1774 775 1773 758 1776 780 1777 798 1778 799 1778 781 1777 759 1776 782 1779 760 1780 800 1781 801 1781 761 1780 783 1779 762 1782 784 1783 802 1784 803 1784 785 1783 763 1782 760 1785 770 1786 800 1787 801 1787 771 1786 761 1785 786 1788 762 1789 802 1790 803 1790 763 1789 787 1788 804 1791 788 1792 765 1793 766 1793 789 1792 805 1791 806 1794 765 1795 790 1796 791 1796 766 1795 807 1794 748 1797 808 1798 792 1799 793 1799 809 1798 749 1797 748 1800 794 1801 808 1802 809 1802 795 1801 749 1800 776 1803 782 1804 810 1805 811 1805 783 1804 777 1803 784 1806 778 1807 812 1808 813 1808 779 1807 785 1806 796 1809 776 1810 810 1811 811 1811 777 1810 797 1809 778 1812 798 1813 812 1814 813 1814 799 1813 779 1812 782 1815 800 1816 810 1817 811 1817 801 1816 783 1815 802 1818 784 1819 812 1820 813 1820 785 1819 803 1818 804 1821 765 1822 814 1823 815 1823 766 1822 805 1821 814 1824 765 1825 806 1826 807 1826 766 1825 815 1824</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID230\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID231\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID235\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID238\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID236\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID237\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID236\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID240\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID240\">-0.04908180236816406 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.07640528678894043 -0.04908180236816406 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.07640528678894043 -0.04908180236816406 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.1648990213871002 -0.1397031098604202 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.004162006080150604 0.04153963923454285 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.1648990213871002 -0.04908180236816406 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.07640528678894043 0.04153963923454285 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.2324993163347244 -0.1397031098604202 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.004162006080150604 0.1321610063314438 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.2324993163347244 -0.04908180236816406 -2.050858497619629 -0.2324993163347244 0.04153963923454285 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.07640528678894043 0.1321610063314438 -2.050858497619629 -0.07640528678894043 0.04153963923454285 -2.050858497619629 -0.2324993163347244 0.04153963923454285 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.2324993163347244</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID237\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID241\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID241\">0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID239\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"16\" source=\"#ID242\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID242\">-0.4908180236816406 -0.03274111449718475 -1.397031098604202 -0.6010549227396648 -1.397031098604202 -0.03274111449718475 -0.4908180236816406 -0.6010549227396648 -1.397031098604202 -1.297205634911855 0.4153963923454285 -0.03274111449718475 -0.4908180236816406 -1.297205634911855 0.4153963923454285 -0.6010549227396648 -1.397031098604202 -1.828994621833166 1.321610063314438 -0.03274111449718475 -0.4908180236816406 -1.828994621833166 0.4153963923454285 -1.297205634911855 1.321610063314438 -0.6010549227396648 0.4153963923454285 -1.828994621833166 1.321610063314438 -1.297205634911855 1.321610063314438 -1.828994621833166</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"36\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 1 0 0 5 0 4 1 7 3 6 3 8 4 1 1 4 1 9 4 7 3 10 5 6 3 0 0 5 0 7 3 11 5 12 6 8 4 6 3 7 3 9 4 13 6 14 7 6 3 10 5 11 5 7 3 15 7 12 6 16 8 8 4 9 4 17 8 13 6 14 7 12 6 6 3 7 3 13 6 15 7 18 9 14 7 10 5 11 5 15 7 19 9 20 10 16 8 12 6 13 6 17 8 21 10 22 11 12 6 14 7 15 7 13 6 23 11 24 12 14 7 18 9 19 9 15 7 25 12 22 11 20 10 12 6 13 6 21 10 23 11 24 12 22 11 14 7 15 7 23 11 25 12 26 13 20 10 22 11 23 11 21 10 27 13 28 14 22 11 24 12 25 12 23 11 29 14 28 14 26 13 22 11 23 11 27 13 29 14 30 15 26 13 28 14 29 14 27 13 31 15</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID238\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID239\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID245\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID248\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID246\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID247\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID246\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"154\" source=\"#ID249\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"462\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID249\">-0.3924421966075897 1.913545966148377 0.0538654625415802 -0.003499784041196108 1.913545966148377 0.05373930931091309 -0.003499784041196108 1.89157509803772 0.1127162873744965 -0.003499784041196108 1.89157509803772 0.1127162873744965 -0.003499784041196108 1.913545966148377 0.05373930931091309 -0.3924421966075897 1.913545966148377 0.0538654625415802 -0.3849683403968811 1.89157509803772 0.1122315526008606 -0.3849683403968811 1.89157509803772 0.1122315526008606 0.3854426443576813 1.913545966148377 0.0538654625415802 0.3854426443576813 1.913545966148377 0.0538654625415802 -0.4555876851081848 1.913545966148377 0.0538654625415802 -0.4555876851081848 1.913545966148377 0.0538654625415802 -0.3927546739578247 1.832278966903687 0.1609024703502655 -0.3927546739578247 1.832278966903687 0.1609024703502655 0.3779688477516174 1.89157509803772 0.1122315526008606 0.3779688477516174 1.89157509803772 0.1122315526008606 -0.4815247356891632 1.90060830116272 0.1218081116676331 -0.4815247356891632 1.90060830116272 0.1218081116676331 -0.4985863864421845 1.831613898277283 0.1618779003620148 -0.4985863864421845 1.831613898277283 0.1618779003620148 -0.003499784041196108 1.83673882484436 0.1572884917259216 -0.003499784041196108 1.83673882484436 0.1572884917259216 0.3857554793357849 1.832278966903687 0.1609024703502655 0.3857554793357849 1.832278966903687 0.1609024703502655 0.4525613486766815 1.913545966148377 0.05351218581199646 0.4525613486766815 1.913545966148377 0.05351218581199646 -0.4057326018810272 1.748755574226379 0.202934205532074 -0.4057326018810272 1.748755574226379 0.202934205532074 -0.1956372708082199 1.746377825737 0.2039957940578461 -0.1956372708082199 1.746377825737 0.2039957940578461 0.4956434965133667 1.831613898277283 0.1613763868808746 0.4956434965133667 1.831613898277283 0.1613763868808746 0.4785308539867401 1.90060830116272 0.1212298572063446 0.4785308539867401 1.90060830116272 0.1212298572063446 -0.5137938857078552 1.737711429595947 0.1892369687557221 -0.5137938857078552 1.737711429595947 0.1892369687557221 -0.003499784041196108 1.757756352424622 0.208108589053154 -0.003499784041196108 1.757756352424622 0.208108589053154 0.1886377781629562 1.746377825737 0.2039957940578461 0.1886377781629562 1.746377825737 0.2039957940578461 0.3987329006195068 1.748755574226379 0.202934205532074 0.3987329006195068 1.748755574226379 0.202934205532074 -0.4230424761772156 1.650818824768066 0.2358699589967728 -0.4230424761772156 1.650818824768066 0.2358699589967728 -0.5286108255386353 1.631603360176086 0.214817613363266 -0.5286108255386353 1.631603360176086 0.214817613363266 -0.2041698843240738 1.663896322250366 0.2470194548368454 -0.2041698843240738 1.663896322250366 0.2470194548368454 0.5108861327171326 1.737711429595947 0.1888849139213562 0.5108861327171326 1.737711429595947 0.1888849139213562 0.1971705108880997 1.663896322250366 0.2470194548368454 0.1971705108880997 1.663896322250366 0.2470194548368454 -0.003499784041196108 1.663896322250366 0.2506212294101715 -0.003499784041196108 1.663896322250366 0.2506212294101715 0.4160428643226624 1.650818824768066 0.2358699589967728 0.4160428643226624 1.650818824768066 0.2358699589967728 0.525602400302887 1.631603360176086 0.2142856419086456 0.525602400302887 1.631603360176086 0.2142856419086456 -0.4412959218025208 1.501774668693543 0.2760804295539856 -0.4412959218025208 1.501774668693543 0.2760804295539856 -0.2256496995687485 1.501774907112122 0.2899670302867889 -0.2256496995687485 1.501774907112122 0.2899670302867889 -0.5421937704086304 1.536199450492859 0.2387980967760086 -0.5421937704086304 1.536199450492859 0.2387980967760086 0.2186503261327744 1.501774907112122 0.2899670302867889 0.2186503261327744 1.501774907112122 0.2899670302867889 0.4342963695526123 1.501774668693543 0.2760804295539856 0.4342963695526123 1.501774668693543 0.2760804295539856 -0.003499784041196108 1.501774907112122 0.2931338846683502 -0.003499784041196108 1.501774907112122 0.2931338846683502 -0.5514172911643982 1.437644124031067 0.2581594586372376 -0.5514172911643982 1.437644124031067 0.2581594586372376 -0.4633875489234924 1.329277634620667 0.3124249279499054 -0.4633875489234924 1.329277634620667 0.3124249279499054 -0.2482648938894272 1.33567476272583 0.3311053514480591 -0.2482648938894272 1.33567476272583 0.3311053514480591 0.5393254160881043 1.536199450492859 0.2381628751754761 0.5393254160881043 1.536199450492859 0.2381628751754761 -0.5588521361351013 1.338033318519592 0.2766626179218292 -0.5588521361351013 1.338033318519592 0.2766626179218292 0.2412653863430023 1.33567476272583 0.3311053514480591 0.2412653863430023 1.33567476272583 0.3311053514480591 0.4563882350921631 1.329277634620667 0.3124249279499054 0.4563882350921631 1.329277634620667 0.3124249279499054 -0.003499784041196108 1.326353907585144 0.3321035206317902 -0.003499784041196108 1.326353907585144 0.3321035206317902 0.5483801960945129 1.437644124031067 0.2574158906936646 0.5483801960945129 1.437644124031067 0.2574158906936646 -0.4844794273376465 1.123080253601074 0.3444932699203491 -0.4844794273376465 1.123080253601074 0.3444932699203491 -0.567148745059967 1.231308460235596 0.295699417591095 -0.567148745059967 1.231308460235596 0.295699417591095 0.5556744933128357 1.338033318519592 0.276308536529541 0.5556744933128357 1.338033318519592 0.276308536529541 -0.2700301110744476 1.131339311599731 0.3596623241901398 -0.2700301110744476 1.131339311599731 0.3596623241901398 0.2630306780338287 1.131339311599731 0.3596623241901398 0.2630306780338287 1.131339311599731 0.3596623241901398 0.4774796962738037 1.123080253601074 0.3444932699203491 0.4774796962738037 1.123080253601074 0.3444932699203491 0.5641939043998718 1.231308460235596 0.2950709462165833 0.5641939043998718 1.231308460235596 0.2950709462165833 -0.003499784041196108 1.128503799438477 0.3657594621181488 -0.003499784041196108 1.128503799438477 0.3657594621181488 -0.5044852495193481 0.8832650184631348 0.3699729144573212 -0.5044852495193481 0.8832650184631348 0.3699729144573212 -0.5767728090286255 1.083053588867188 0.3177225887775421 -0.5767728090286255 1.083053588867188 0.3177225887775421 -0.299287348985672 0.8913923501968384 0.3904069364070892 -0.299287348985672 0.8913923501968384 0.3904069364070892 0.2922879457473755 0.8913923501968384 0.3904069364070892 0.2922879457473755 0.8913923501968384 0.3904069364070892 0.4974865317344666 0.8832650184631348 0.3699729144573212 0.4974865317344666 0.8832650184631348 0.3699729144573212 0.573678731918335 1.083053588867188 0.3170293569564819 0.573678731918335 1.083053588867188 0.3170293569564819 -0.003499784041196108 0.8878175616264343 0.3964553773403168 -0.003499784041196108 0.8878175616264343 0.3964553773403168 -0.5283554196357727 0.6259345412254334 0.397999107837677 -0.5283554196357727 0.6259345412254334 0.397999107837677 -0.5918655395507813 0.8816207051277161 0.3470511138439179 -0.5918655395507813 0.8816207051277161 0.3470511138439179 -0.3311246931552887 0.6259345412254334 0.4213344156742096 -0.3311246931552887 0.6259345412254334 0.4213344156742096 -0.6050222516059876 0.7718126773834229 0.3615998923778534 -0.6050222516059876 0.7718126773834229 0.3615998923778534 0.324125200510025 0.6259345412254334 0.4213344156742096 0.324125200510025 0.6259345412254334 0.4213344156742096 0.5213552117347717 0.6259345412254334 0.397999107837677 0.5213552117347717 0.6259345412254334 0.397999107837677 0.5888693928718567 0.8816207051277161 0.3465395271778107 0.5888693928718567 0.8816207051277161 0.3465395271778107 -0.003499784041196108 0.6259345412254334 0.4376304149627686 -0.003499784041196108 0.6259345412254334 0.4376304149627686 -0.5606250166893005 0.4234864413738251 0.4212178885936737 -0.5606250166893005 0.4234864413738251 0.4212178885936737 -0.629096269607544 0.6240295767784119 0.3749243021011353 -0.629096269607544 0.6240295767784119 0.3749243021011353 0.602715015411377 0.7718126773834229 0.3617312014102936 0.602715015411377 0.7718126773834229 0.3617312014102936 -0.3552756011486054 0.4234864413738251 0.4407898485660553 -0.3552756011486054 0.4234864413738251 0.4407898485660553 -0.6648309230804443 0.4212585687637329 0.3920857310295105 -0.6648309230804443 0.4212585687637329 0.3920857310295105 0.3482760787010193 0.4234864413738251 0.4407898485660553 0.3482760787010193 0.4234864413738251 0.4407898485660553 0.553625762462616 0.4234864413738251 0.4212178885936737 0.553625762462616 0.4234864413738251 0.4212178885936737 0.6264829635620117 0.6240295767784119 0.3751082420349121 0.6264829635620117 0.6240295767784119 0.3751082420349121 -0.003499784041196108 0.4255315363407135 0.4577548205852509 -0.003499784041196108 0.4255315363407135 0.4577548205852509 0.6621518731117249 0.4212585687637329 0.3921840190887451 0.6621518731117249 0.4212585687637329 0.3921840190887451</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID247\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"154\" source=\"#ID250\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"462\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID250\">-0.0001782469314118506 0.9359415269660365 0.3521554008225851 2.304130455219981e-012 0.937087038524494 0.349095806662574 -4.17327692578534e-011 0.8124286249016133 0.5830606567420528 4.17327692578534e-011 -0.8124286249016133 -0.5830606567420528 -2.304130455219981e-012 -0.937087038524494 -0.349095806662574 0.0001782469314118506 -0.9359415269660365 -0.3521554008225851 0.02815726933504569 0.8124234393539105 0.5823876057849761 -0.02815726933504569 -0.8124234393539105 -0.5823876057849761 0.001177355043848136 0.9358986257314065 0.3522674781883302 -0.001177355043848136 -0.9358986257314065 -0.3522674781883302 0.07111601620125621 0.9588412546148962 0.2748926348380301 -0.07111601620125621 -0.9588412546148962 -0.2748926348380301 0.002224004402349778 0.5451763948437488 0.8383184074739092 -0.002224004402349778 -0.5451763948437488 -0.8383184074739092 -0.0247490152834155 0.8123773450419 0.5826066730695548 0.0247490152834155 -0.8123773450419 -0.5826066730695548 0.1347837926354865 0.7274531243527497 0.6727891802877163 -0.1347837926354865 -0.7274531243527497 -0.6727891802877163 -0.01188990300743283 0.45042272341769 0.8927362434871036 0.01188990300743283 -0.45042272341769 -0.8927362434871036 -1.812531033613134e-009 0.5749698906834061 0.8181745686633825 1.812531033613134e-009 -0.5749698906834061 -0.8181745686633825 -0.0002663419220773194 0.5452890246601579 0.8382480591371233 0.0002663419220773194 -0.5452890246601579 -0.8382480591371233 -0.06831730452083262 0.9597751257338697 0.2723315147491064 0.06831730452083262 -0.9597751257338697 -0.2723315147491064 -0.06167175424223675 0.3636344597811704 0.9294980227995868 0.06167175424223675 -0.3636344597811704 -0.9294980227995868 -0.02751725272444099 0.4567496534542082 0.889169587239667 0.02751725272444099 -0.4567496534542082 -0.889169587239667 0.01579638502248365 0.4498412523778214 0.8929688246962347 -0.01579638502248365 -0.4498412523778214 -0.8929688246962347 -0.1256799507987488 0.7307929084495699 0.6709294112848553 0.1256799507987488 -0.7307929084495699 -0.6709294112848553 -0.1483123354811652 0.2719284164026189 0.950819850180299 0.1483123354811652 -0.2719284164026189 -0.950819850180299 -1.076934935744015e-008 0.4868752681084012 0.8734715068646328 1.076934935744015e-008 -0.4868752681084012 -0.8734715068646328 0.02751725298650883 0.456749677241571 0.8891695750124365 -0.02751725298650883 -0.456749677241571 -0.8891695750124365 0.06101109977296807 0.3642945231045185 0.9292831356161287 -0.06101109977296807 -0.3642945231045185 -0.9292831356161287 -0.145248349693507 0.3159010042398395 0.9376083790322982 0.145248349693507 -0.3159010042398395 -0.9376083790322982 -0.2222891114857754 0.2854551366133628 0.9322568937239943 0.2222891114857754 -0.2854551366133628 -0.9322568937239943 -0.0474367284323688 0.3634452253373133 0.9304070748737584 0.0474367284323688 -0.3634452253373133 -0.9304070748737584 0.1459011091775654 0.2714276469420584 0.9513358496431497 -0.1459011091775654 -0.2714276469420584 -0.9513358496431497 0.04743676327859917 0.3634452669479714 0.9304070568427392 -0.04743676327859917 -0.3634452669479714 -0.9304070568427392 -7.726431084607996e-009 0.3349265681058958 0.9422442326577578 7.726431084607996e-009 -0.3349265681058958 -0.9422442326577578 0.1431094636710336 0.3156371553435537 0.9380260484519704 -0.1431094636710336 -0.3156371553435537 -0.9380260484519704 0.2182979891680393 0.2842321390783597 0.9335727497309091 -0.2182979891680393 -0.2842321390783597 -0.9335727497309091 -0.1665751974634712 0.2398908308754316 0.9564021606269512 0.1665751974634712 -0.2398908308754316 -0.9564021606269512 -0.04219572394290461 0.2493759021386717 0.9674870440028941 0.04219572394290461 -0.2493759021386717 -0.9674870440028941 -0.2613867269618275 0.2450048606994376 0.9336217634576822 0.2613867269618275 -0.2450048606994376 -0.9336217634576822 0.04219573575736518 0.2493759010541719 0.9674870437671579 -0.04219573575736518 -0.2493759010541719 -0.9674870437671579 0.1644228359734293 0.2399124235060672 0.9567691257863102 -0.1644228359734293 -0.2399124235060672 -0.9567691257863102 -4.360533668269902e-009 0.2401766670986377 0.9707291942562508 4.360533668269902e-009 -0.2401766670986377 -0.9707291942562508 -0.2697549245147201 0.1999895753758608 0.94193229610256 0.2697549245147201 -0.1999895753758608 -0.94193229610256 -0.205165955596271 0.2026383263809331 0.9575200464459233 0.205165955596271 -0.2026383263809331 -0.9575200464459233 -0.04510107884947809 0.1949068748297897 0.9797842634124606 0.04510107884947809 -0.1949068748297897 -0.9797842634124606 0.2577041694106427 0.2436241867406072 0.9350057843154495 -0.2577041694106427 -0.2436241867406072 -0.9350057843154495 -0.3155416212866312 0.206553169256247 0.926158341487029 0.3155416212866312 -0.206553169256247 -0.926158341487029 0.04510104543534891 0.1949068346227504 0.9797842729488866 -0.04510104543534891 -0.1949068346227504 -0.9797842729488866 0.2011697807349986 0.2021535428046418 0.9584699601190244 -0.2011697807349986 -0.2021535428046418 -0.9584699601190244 -4.296743762838351e-010 0.1854674230964988 0.9826504134075068 4.296743762838351e-010 -0.1854674230964988 -0.9826504134075068 0.2675210635041206 0.2016813846098287 0.9422086285337693 -0.2675210635041206 -0.2016813846098287 -0.9422086285337693 -0.2058173284334745 0.1429031004056697 0.9681001658975966 0.2058173284334745 -0.1429031004056697 -0.9681001658975966 -0.3252481571229391 0.1766447668061257 0.9289834566062741 0.3252481571229391 -0.1766447668061257 -0.9289834566062741 0.3084472488844051 0.2058706115497009 0.9286967136561829 -0.3084472488844051 -0.2058706115497009 -0.9286967136561829 -0.04796545790210148 0.137895058325429 0.9892847253130254 0.04796545790210148 -0.137895058325429 -0.9892847253130254 0.04796547033123873 0.1378951115528392 0.9892847172911007 -0.04796547033123873 -0.1378951115528392 -0.9892847172911007 0.2024207883500881 0.1425877581726434 0.9688625060673101 -0.2024207883500881 -0.1425877581726434 -0.9688625060673101 0.318558960484321 0.1757972678665487 0.9314588070901503 -0.318558960484321 -0.1757972678665487 -0.9314588070901503 -5.391486020732135e-009 0.1476432149403069 0.9890406872733246 5.391486020732135e-009 -0.1476432149403069 -0.9890406872733246 -0.1773289548747459 0.1343572735873728 0.9749372106947186 0.1773289548747459 -0.1343572735873728 -0.9749372106947186 -0.3212173299977274 0.1431746513568026 0.9361198887524979 0.3212173299977274 -0.1431746513568026 -0.9361198887524979 -0.06274409473882742 0.1270693842706143 0.9899073442279798 0.06274409473882742 -0.1270693842706143 -0.9899073442279798 0.06274399125447423 0.1270692920287318 0.9899073626278246 -0.06274399125447423 -0.1270692920287318 -0.9899073626278246 0.1739226856060093 0.1350214639577931 0.9754589195359729 -0.1739226856060093 -0.1350214639577931 -0.9754589195359729 0.3147030443890779 0.1431671105088732 0.9383310568881254 -0.3147030443890779 -0.1431671105088732 -0.9383310568881254 -4.80197978026056e-009 0.1328495772137584 0.9911362115441681 4.80197978026056e-009 -0.1328495772137584 -0.9911362115441681 -0.1709425518226716 0.1279235197490857 0.9769412556911282 0.1709425518226716 -0.1279235197490857 -0.9769412556911282 -0.2533455977826842 0.1573595136377819 0.9544914832264431 0.2533455977826842 -0.1573595136377819 -0.9544914832264431 -0.0766108992186908 0.1207361439996178 0.9897239785177517 0.0766108992186908 -0.1207361439996178 -0.9897239785177517 -0.22749638196544 0.1315879079765795 0.9648471478254894 0.22749638196544 -0.1315879079765795 -0.9648471478254894 0.07661103214427249 0.1207362064017146 0.9897239606160457 -0.07661103214427249 -0.1207362064017146 -0.9897239606160457 0.1656929408753884 0.1271979898621564 0.9779399371735934 -0.1656929408753884 -0.1271979898621564 -0.9779399371735934 0.2478673874826266 0.1611480776092019 0.9552973648583963 -0.2478673874826266 -0.1611480776092019 -0.9552973648583963 -4.814492874022326e-009 0.1278209019418282 0.9917972660916029 4.814492874022326e-009 -0.1278209019418282 -0.9917972660916029 -0.1953528286554639 0.1373444081517152 0.9710683734350346 0.1953528286554639 -0.1373444081517152 -0.9710683734350346 -0.2237895774661974 0.1223335681965512 0.966929533683712 0.2237895774661974 -0.1223335681965512 -0.966929533683712 0.217589038094111 0.132316565109581 0.9670301634896823 -0.217589038094111 -0.132316565109581 -0.9670301634896823 -0.07338413420345472 0.1038272878729786 0.9918844000891187 0.07338413420345472 -0.1038272878729786 -0.9918844000891187 -0.255451770674433 0.1427053145778973 0.9562319729283896 0.255451770674433 -0.1427053145778973 -0.9562319729283896 0.07338406236200086 0.1038272705222477 0.9918844072204937 -0.07338406236200086 -0.1038272705222477 -0.9918844072204937 0.189399515785567 0.1365482538004697 0.9723591917620952 -0.189399515785567 -0.1365482538004697 -0.9723591917620952 0.2132922457168499 0.1204664420331665 0.9695330083400631 -0.2132922457168499 -0.1204664420331665 -0.9695330083400631 -3.144688608621132e-009 0.09991715580283653 0.9949957597780363 3.144688608621132e-009 -0.09991715580283653 -0.9949957597780363 0.2443217657506773 0.1408108584240575 0.9594160603879589 -0.2443217657506773 -0.1408108584240575 -0.9594160603879589</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"232\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 0 6 7 5 11 12 6 2 3 7 13 8 14 2 3 15 9 10 6 16 17 7 11 12 18 6 7 19 13 20 12 2 3 13 21 2 14 22 23 15 3 8 24 14 15 25 9 18 16 6 7 17 19 26 18 12 13 19 27 28 12 20 21 13 29 20 2 22 23 3 21 22 14 30 31 15 23 14 24 32 33 25 15 26 12 28 29 13 27 34 18 26 27 19 35 36 28 20 21 29 37 38 20 22 23 21 39 14 32 30 31 33 15 40 22 30 31 23 41 42 26 28 29 27 43 44 34 26 27 35 45 36 20 38 39 21 37 46 28 36 37 29 47 38 22 40 41 23 39 40 30 48 49 31 41 42 44 26 27 45 43 46 42 28 29 43 47 36 38 50 51 39 37 52 46 36 37 47 53 38 40 54 55 41 39 40 48 56 57 49 41 58 44 42 43 45 59 58 42 46 47 43 59 52 36 50 51 37 53 50 38 54 55 39 51 60 46 52 53 47 61 54 40 56 57 41 55 62 44 58 59 45 63 60 58 46 47 59 61 52 50 64 65 51 53 50 54 66 67 55 51 68 60 52 53 61 69 66 54 56 57 55 67 70 62 58 59 63 71 72 58 60 61 59 73 68 52 64 65 53 69 64 50 66 67 51 65 74 60 68 69 61 75 66 56 76 77 57 67 78 70 58 59 71 79 74 72 60 61 73 75 72 78 58 59 79 73 68 64 80 81 65 69 64 66 82 83 67 65 84 74 68 69 75 85 66 76 86 87 77 67 88 72 74 75 73 89 90 78 72 73 79 91 84 68 80 81 69 85 80 64 82 83 65 81 82 66 92 93 67 83 94 74 84 85 75 95 66 86 92 93 87 67 94 88 74 75 89 95 88 90 72 73 91 89 84 80 96 97 81 85 80 82 98 99 83 81 82 92 100 101 93 83 102 94 84 85 95 103 104 88 94 95 89 105 106 90 88 89 91 107 102 84 96 97 85 103 96 80 98 99 81 97 98 82 100 101 83 99 108 94 102 103 95 109 108 104 94 95 105 109 104 106 88 89 107 105 102 96 110 111 97 103 96 98 112 113 99 97 98 100 114 115 101 99 116 108 102 103 109 117 118 104 108 109 105 119 120 106 104 105 107 121 116 102 110 111 103 117 110 96 112 113 97 111 112 98 114 115 99 113 122 108 116 117 109 123 122 118 108 109 119 123 118 124 104 105 125 119 124 120 104 105 121 125 116 110 126 127 111 117 110 112 128 129 113 111 112 114 130 131 115 113 132 122 116 117 123 133 134 118 122 123 119 135 136 124 118 119 125 137 132 116 126 127 117 133 126 110 128 129 111 127 128 112 138 139 113 129 112 130 138 139 131 113 140 122 132 133 123 141 140 134 122 123 135 141 134 142 118 119 143 135 142 136 118 119 137 143 132 126 144 145 127 133 126 128 146 147 129 127 128 138 148 149 139 129 150 140 132 133 141 151 150 132 144 145 133 151 144 126 146 147 127 145 146 128 152 153 129 147 128 148 152 153 149 129</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID248\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID253\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID256\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID254\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID255\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID254\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"988\" source=\"#ID258\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2964\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID258\">-0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.94102954864502 -0.2903494238853455 0.4591898620128632 1.94102954864502 -0.2903494238853455 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.4666804373264313 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.4666804373264313 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.94102954864502 -0.2903494238853455 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.4591898620128632 1.94102954864502 -0.2903494238853455 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.4666804373264313 1.927737951278687 -0.2694617509841919 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.4666804373264313 1.927737951278687 -0.2694617509841919 0.4591898620128632 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 0.4591898620128632 1.933063864707947 -0.2819830179214478 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.974754452705383 -0.2916486263275147 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4686544239521027 1.937264442443848 -0.303368866443634 0.4686544239521027 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.4666804373264313 1.925872087478638 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.4666804373264313 1.925872087478638 -0.2546918988227844 0.4591898620128632 1.927737951278687 -0.2694617509841919 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 0.4591898620128632 1.927737951278687 -0.2694617509841919 -0.4761454164981842 1.930520176887512 -0.2916485071182251 -0.4761454164981842 1.930520176887512 -0.2916485071182251 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.963594079017639 -0.303368866443634 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.5049393773078919 1.963594079017639 -0.303368866443634 0.5049393773078919 1.963594079017639 -0.303368866443634 0.4686544239521027 1.950429439544678 -0.3074844181537628 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 0.4686544239521027 1.937264442443848 -0.303368866443634 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.4686544239521027 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.4666804373264313 1.927737951278687 -0.2399222552776337 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.4666804373264313 1.927737951278687 -0.2399222552776337 0.4591898620128632 1.925872087478638 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 0.4591898620128632 1.925872087478638 -0.2546918988227844 -0.4761454164981842 1.92527174949646 -0.2741076946258545 -0.4761454164981842 1.92527174949646 -0.2741076946258545 0.4686544239521027 1.930520176887512 -0.2916485071182251 0.4686544239521027 1.930520176887512 -0.2916485071182251 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.4591898620128632 1.973116874694824 -0.2694617509841919 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.4666804373264313 1.933063864707947 -0.2274011671543121 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.4666804373264313 1.933063864707947 -0.2274011671543121 0.4591898620128632 1.927737951278687 -0.2399222552776337 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 0.4591898620128632 1.927737951278687 -0.2399222552776337 -0.4761454164981842 1.922653794288635 -0.2534168660640717 -0.4761454164981842 1.922653794288635 -0.2534168660640717 0.4686544239521027 1.92527174949646 -0.2741076946258545 0.4686544239521027 1.92527174949646 -0.2741076946258545 -0.5124302506446838 1.930520176887512 -0.2916485071182251 -0.5124302506446838 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.514404296875 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.514404296875 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.963594079017639 -0.303368866443634 0.514404296875 1.967794060707092 -0.2819830179214478 0.514404296875 1.967794060707092 -0.2819830179214478 0.5049393773078919 1.963594079017639 -0.303368866443634 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.514404296875 1.959829092025757 -0.2903494238853455 0.514404296875 1.959829092025757 -0.2903494238853455 0.5049393773078919 1.950429439544678 -0.3074844181537628 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.5049393773078919 1.937264442443848 -0.303368866443634 0.514404296875 1.950429439544678 -0.2932872772216797 0.514404296875 1.950429439544678 -0.2932872772216797 0.5049393773078919 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4666804373264313 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.933063864707947 -0.2274011671543121 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 0.4591898620128632 1.933063864707947 -0.2274011671543121 -0.4761454164981842 1.92527174949646 -0.2327264100313187 -0.4761454164981842 1.92527174949646 -0.2327264100313187 0.4686544239521027 1.922653794288635 -0.2534168660640717 0.4686544239521027 1.922653794288635 -0.2534168660640717 -0.5124302506446838 1.92527174949646 -0.2741076946258545 -0.5124302506446838 1.92527174949646 -0.2741076946258545 0.5049393773078919 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 0.514404296875 1.974986433982849 -0.2546918988227844 0.514404296875 1.974986433982849 -0.2546918988227844 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.974531054496765 -0.2399222552776337 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.4591898620128632 1.973116874694824 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.514404296875 1.94102954864502 -0.2903494238853455 0.514404296875 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.6682524085044861 1.94563889503479 -0.2932872772216797 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.6682524085044861 1.94563889503479 -0.2932872772216797 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.6697498559951782 1.954917311668396 -0.2903493940830231 -0.6697498559951782 1.954917311668396 -0.2903493940830231 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.6710188984870911 1.9627845287323 -0.2819830179214478 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.6710188984870911 1.9627845287323 -0.2819830179214478 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.6718668341636658 1.968037009239197 -0.2694616913795471 -0.6718668341636658 1.968037009239197 -0.2694616913795471 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.6721646189689636 1.969884276390076 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.6721646189689636 1.969884276390076 -0.2546918988227844 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.94102954864502 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4761454164981842 1.928295969963074 -0.1971973478794098 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.4761454164981842 1.928295969963074 -0.1971973478794098 0.4686544239521027 1.92527174949646 -0.2327264100313187 0.4686544239521027 1.92527174949646 -0.2327264100313187 -0.5124302506446838 1.922653794288635 -0.2534168660640717 -0.5124302506446838 1.922653794288635 -0.2534168660640717 0.5049393773078919 1.92527174949646 -0.2741076946258545 0.5049393773078919 1.92527174949646 -0.2741076946258545 -0.5218953490257263 1.933063864707947 -0.2819830179214478 -0.5218953490257263 1.933063864707947 -0.2819830179214478 0.514404296875 1.974986433982849 -0.2546918988227844 0.514404296875 1.973116874694824 -0.2694617509841919 0.6646738648414612 1.969884276390076 -0.2546918988227844 0.6646738648414612 1.969884276390076 -0.2546918988227844 0.514404296875 1.973116874694824 -0.2694617509841919 0.514404296875 1.974986433982849 -0.2546918988227844 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.514404296875 1.967794060707092 -0.2819830179214478 0.6643763184547424 1.968037009239197 -0.2694616913795471 0.6643763184547424 1.968037009239197 -0.2694616913795471 0.514404296875 1.967794060707092 -0.2819830179214478 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.514404296875 1.959829092025757 -0.2903494238853455 0.6635281443595886 1.9627845287323 -0.2819830179214478 0.6635281443595886 1.9627845287323 -0.2819830179214478 0.514404296875 1.959829092025757 -0.2903494238853455 0.514404296875 1.950429439544678 -0.2932872772216797 0.6622587442398071 1.954917311668396 -0.2903493940830231 0.6622587442398071 1.954917311668396 -0.2903493940830231 0.514404296875 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.967794060707092 -0.2274012565612793 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.514404296875 1.94102954864502 -0.2903494238853455 0.6607614159584045 1.94563889503479 -0.2932872772216797 0.6607614159584045 1.94563889503479 -0.2932872772216797 0.514404296875 1.94102954864502 -0.2903494238853455 -0.6667550802230835 1.936360359191895 -0.2903493940830231 -0.6667550802230835 1.936360359191895 -0.2903493940830231 -0.6718668341636658 1.968037009239197 -0.2399222552776337 -0.6718668341636658 1.968037009239197 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4591898620128632 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.4761454164981842 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.928295969963074 -0.1971973478794098 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4686544239521027 1.928295969963074 -0.1971973478794098 -0.5124302506446838 1.92527174949646 -0.2327264100313187 -0.5124302506446838 1.92527174949646 -0.2327264100313187 0.5049393773078919 1.922653794288635 -0.2534168660640717 0.5049393773078919 1.922653794288635 -0.2534168660640717 -0.5218953490257263 1.927737951278687 -0.2694617509841919 -0.5218953490257263 1.927737951278687 -0.2694617509841919 0.514404296875 1.933063864707947 -0.2819830179214478 0.514404296875 1.933063864707947 -0.2819830179214478 0.6643763184547424 1.968037009239197 -0.2399222552776337 0.6643763184547424 1.968037009239197 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.5049393773078919 1.983609795570374 -0.229463130235672 0.5049393773078919 1.983609795570374 -0.229463130235672 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4686544239521027 1.983609795570374 -0.229463130235672 0.659264087677002 1.936360359191895 -0.2903493940830231 0.659264087677002 1.936360359191895 -0.2903493940830231 -0.7710930705070496 1.897564053535461 -0.2932872772216797 -0.7710930705070496 1.897564053535461 -0.2932872772216797 -0.7768009901046753 1.905940294265747 -0.2903493940830231 -0.7768009901046753 1.905940294265747 -0.2903493940830231 -0.7816405296325684 1.913044810295105 -0.2819830179214478 -0.7816405296325684 1.913044810295105 -0.2819830179214478 -0.7848740220069885 1.917791366577148 -0.2694616913795471 -0.7848740220069885 1.917791366577148 -0.2694616913795471 -0.7860094308853149 1.919457793235779 -0.2546918988227844 -0.7860094308853149 1.919457793235779 -0.2546918988227844 -0.7848740220069885 1.917791366577148 -0.2399222552776337 -0.7848740220069885 1.917791366577148 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4686544239521027 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 0.5049393773078919 1.92527174949646 -0.2327264100313187 0.5049393773078919 1.92527174949646 -0.2327264100313187 -0.5218953490257263 1.925872087478638 -0.2546918988227844 -0.5218953490257263 1.925872087478638 -0.2546918988227844 0.514404296875 1.927737951278687 -0.2694617509841919 0.514404296875 1.927737951278687 -0.2694617509841919 -0.6654856204986572 1.928493976593018 -0.281982958316803 -0.6654856204986572 1.928493976593018 -0.281982958316803 0.7773829102516174 1.917791366577148 -0.2399222552776337 0.7773829102516174 1.917791366577148 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.7785183787345886 1.919457793235779 -0.2546918988227844 0.7785183787345886 1.919457793235779 -0.2546918988227844 0.5049393773078919 1.983609795570374 -0.229463130235672 0.5049393773078919 1.983609795570374 -0.229463130235672 0.7773829102516174 1.917791366577148 -0.2694616913795471 0.7773829102516174 1.917791366577148 -0.2694616913795471 0.7741499543190002 1.913044810295105 -0.2819830179214478 0.7741499543190002 1.913044810295105 -0.2819830179214478 0.7693102359771729 1.905940294265747 -0.2903493940830231 0.7693102359771729 1.905940294265747 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.7636018991470337 1.897564053535461 -0.2932872772216797 0.7636018991470337 1.897564053535461 -0.2932872772216797 -0.7653849124908447 1.889186143875122 -0.2903493940830231 -0.7653849124908447 1.889186143875122 -0.2903493940830231 -0.7816405296325684 1.913044810295105 -0.2274011671543121 -0.7816405296325684 1.913044810295105 -0.2274011671543121 -0.6710188984870911 1.9627845287323 -0.2274011671543121 -0.6710188984870911 1.9627845287323 -0.2274011671543121 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 0.514404296875 1.925872087478638 -0.2546918988227844 0.514404296875 1.925872087478638 -0.2546918988227844 -0.6646373271942139 1.923238515853882 -0.2694616913795471 -0.6646373271942139 1.923238515853882 -0.2694616913795471 0.6579948663711548 1.928493976593018 -0.281982958316803 0.6579948663711548 1.928493976593018 -0.281982958316803 0.7741499543190002 1.913044810295105 -0.2274011671543121 0.7741499543190002 1.913044810295105 -0.2274011671543121 0.6635281443595886 1.9627845287323 -0.2274011671543121 0.6635281443595886 1.9627845287323 -0.2274011671543121 0.514404296875 1.967794060707092 -0.2274012565612793 0.514404296875 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.7578940391540527 1.889186143875122 -0.2903493940830231 0.7578940391540527 1.889186143875122 -0.2903493940830231 -0.7926220297813416 1.87386691570282 -0.2936926782131195 -0.7926220297813416 1.87386691570282 -0.2936926782131195 -0.8007404804229736 1.876919627189636 -0.2907206118106842 -0.8007404804229736 1.876919627189636 -0.2907206118106842 -0.8081105947494507 1.879507780075073 -0.2822587192058563 -0.8081105947494507 1.879507780075073 -0.2822587192058563 -0.8095204830169678 1.881236433982849 -0.2695942223072052 -0.8095204830169678 1.881236433982849 -0.2695942223072052 -0.8112494945526123 1.881843686103821 -0.2546553909778595 -0.8112494945526123 1.881843686103821 -0.2546553909778595 -0.8095204830169678 1.881236433982849 -0.239716961979866 -0.8095204830169678 1.881236433982849 -0.239716961979866 -0.8081105947494507 1.879507780075073 -0.2270529717206955 -0.8081105947494507 1.879507780075073 -0.2270529717206955 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5124302506446838 1.928295969963074 -0.1971973478794098 0.514404296875 1.927737951278687 -0.2399222552776337 0.514404296875 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.6643399000167847 1.921393752098084 -0.2546918988227844 -0.6643399000167847 1.921393752098084 -0.2546918988227844 0.6571467518806458 1.923238515853882 -0.2694616913795471 0.6571467518806458 1.923238515853882 -0.2694616913795471 -0.7605457901954651 1.882081866264343 -0.281982958316803 -0.7605457901954651 1.882081866264343 -0.281982958316803 0.80061936378479 1.879507780075073 -0.2270529717206955 0.80061936378479 1.879507780075073 -0.2270529717206955 0.8020292520523071 1.881236433982849 -0.239716961979866 0.8020292520523071 1.881236433982849 -0.239716961979866 0.514404296875 1.967794060707092 -0.2274012565612793 0.514404296875 1.967794060707092 -0.2274012565612793 0.8037582039833069 1.881843686103821 -0.2546553909778595 0.8037582039833069 1.881843686103821 -0.2546553909778595 0.8020292520523071 1.881236433982849 -0.2695942223072052 0.8020292520523071 1.881236433982849 -0.2695942223072052 0.80061936378479 1.879507780075073 -0.2822587192058563 0.80061936378479 1.879507780075073 -0.2822587192058563 0.7932494282722473 1.876919627189636 -0.2907206118106842 0.7932494282722473 1.876919627189636 -0.2907206118106842 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.514404296875 1.959829092025757 -0.2190346866846085 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.514404296875 1.959829092025757 -0.2190346866846085 0.785130500793457 1.87386691570282 -0.2936926782131195 0.785130500793457 1.87386691570282 -0.2936926782131195 -0.7839280962944031 1.870815515518189 -0.2907206118106842 -0.7839280962944031 1.870815515518189 -0.2907206118106842 -0.8007404804229736 1.876919627189636 -0.2185902446508408 -0.8007404804229736 1.876919627189636 -0.2185902446508408 -0.7768009901046753 1.905940294265747 -0.2190346866846085 -0.7768009901046753 1.905940294265747 -0.2190346866846085 -0.6697498559951782 1.954917311668396 -0.2190346866846085 -0.6697498559951782 1.954917311668396 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.5218953490257263 1.94102954864502 -0.2190346866846085 0.514404296875 1.933063864707947 -0.2274011671543121 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.514404296875 1.933063864707947 -0.2274011671543121 0.514404296875 1.927737951278687 -0.2399222552776337 0.514404296875 1.927737951278687 -0.2399222552776337 -0.6646373271942139 1.923238515853882 -0.2399222552776337 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.6646373271942139 1.923238515853882 -0.2399222552776337 0.6568490266799927 1.921393752098084 -0.2546918988227844 0.6568490266799927 1.921393752098084 -0.2546918988227844 -0.757311999797821 1.877334475517273 -0.2694616913795471 -0.757311999797821 1.877334475517273 -0.2694616913795471 0.7530544996261597 1.882081866264343 -0.281982958316803 0.7530544996261597 1.882081866264343 -0.281982958316803 0.7932494282722473 1.876919627189636 -0.2185902446508408 0.7932494282722473 1.876919627189636 -0.2185902446508408 0.7693102359771729 1.905940294265747 -0.2190346866846085 0.7693102359771729 1.905940294265747 -0.2190346866846085 0.6622587442398071 1.954917311668396 -0.2190346866846085 0.6622587442398071 1.954917311668396 -0.2190346866846085 0.514404296875 1.950429439544678 -0.216096967458725 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.514404296875 1.950429439544678 -0.216096967458725 0.514404296875 1.959829092025757 -0.2190346866846085 0.514404296875 1.959829092025757 -0.2190346866846085 0.776436984539032 1.870815515518189 -0.2907206118106842 0.776436984539032 1.870815515518189 -0.2907206118106842 -0.802080512046814 1.844061851501465 -0.2936926782131195 -0.802080512046814 1.844061851501465 -0.2936926782131195 -0.8102076053619385 1.848336219787598 -0.2907206118106842 -0.8102076053619385 1.848336219787598 -0.2907206118106842 -0.8164049386978149 1.851444840431213 -0.2822587192058563 -0.8164049386978149 1.851444840431213 -0.2822587192058563 -0.8189199566841126 1.853061437606812 -0.2695942223072052 -0.8189199566841126 1.853061437606812 -0.2695942223072052 -0.8205373883247376 1.853911638259888 -0.2546553909778595 -0.8205373883247376 1.853911638259888 -0.2546553909778595 -0.8189199566841126 1.853061437606812 -0.239716961979866 -0.8189199566841126 1.853061437606812 -0.239716961979866 -0.8164049386978149 1.851444840431213 -0.2270529717206955 -0.8164049386978149 1.851444840431213 -0.2270529717206955 -0.8102076053619385 1.848336219787598 -0.2185902446508408 -0.8102076053619385 1.848336219787598 -0.2185902446508408 -0.6682524085044861 1.94563889503479 -0.216096967458725 -0.6682524085044861 1.94563889503479 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 0.514404296875 1.94102954864502 -0.2190346866846085 0.514404296875 1.94102954864502 -0.2190346866846085 -0.6654856204986572 1.928493976593018 -0.2274011671543121 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.6654856204986572 1.928493976593018 -0.2274011671543121 0.6571467518806458 1.923238515853882 -0.2399222552776337 0.514404296875 1.933063864707947 -0.2274011671543121 0.514404296875 1.933063864707947 -0.2274011671543121 0.6571467518806458 1.923238515853882 -0.2399222552776337 -0.7566525936126709 1.876231789588928 -0.2546918988227844 -0.7566525936126709 1.876231789588928 -0.2546918988227844 0.7498206496238709 1.877334475517273 -0.2694616913795471 0.7498206496238709 1.877334475517273 -0.2694616913795471 -0.7765578627586365 1.868226766586304 -0.2822587192058563 -0.7765578627586365 1.868226766586304 -0.2822587192058563 0.802716851234436 1.848336219787598 -0.2185902446508408 0.802716851234436 1.848336219787598 -0.2185902446508408 0.8089143037796021 1.851444840431213 -0.2270529717206955 0.8089143037796021 1.851444840431213 -0.2270529717206955 0.8114292621612549 1.853061437606812 -0.239716961979866 0.8114292621612549 1.853061437606812 -0.239716961979866 0.8130461573600769 1.853911638259888 -0.2546553909778595 0.8130461573600769 1.853911638259888 -0.2546553909778595 0.8114292621612549 1.853061437606812 -0.2695942223072052 0.8114292621612549 1.853061437606812 -0.2695942223072052 0.8089143037796021 1.851444840431213 -0.2822587192058563 0.8089143037796021 1.851444840431213 -0.2822587192058563 0.802716851234436 1.848336219787598 -0.2907206118106842 0.802716851234436 1.848336219787598 -0.2907206118106842 0.514404296875 1.950429439544678 -0.216096967458725 0.6607614159584045 1.94563889503479 -0.216096967458725 0.6607614159584045 1.94563889503479 -0.216096967458725 0.514404296875 1.950429439544678 -0.216096967458725 0.7945891618728638 1.844061851501465 -0.2936926782131195 0.7945891618728638 1.844061851501465 -0.2936926782131195 -0.792536735534668 1.838940620422363 -0.2907206118106842 -0.792536735534668 1.838940620422363 -0.2907206118106842 -0.802080512046814 1.844061851501465 -0.2156186848878861 -0.802080512046814 1.844061851501465 -0.2156186848878861 -0.7926220297813416 1.87386691570282 -0.2156186848878861 -0.7926220297813416 1.87386691570282 -0.2156186848878861 -0.7710930705070496 1.897564053535461 -0.216096967458725 -0.7710930705070496 1.897564053535461 -0.216096967458725 -0.6667550802230835 1.936360359191895 -0.2190346866846085 -0.6667550802230835 1.936360359191895 -0.2190346866846085 0.6579948663711548 1.928493976593018 -0.2274011671543121 0.514404296875 1.94102954864502 -0.2190346866846085 0.514404296875 1.94102954864502 -0.2190346866846085 0.6579948663711548 1.928493976593018 -0.2274011671543121 -0.757311999797821 1.877334475517273 -0.2399222552776337 -0.757311999797821 1.877334475517273 -0.2399222552776337 0.7491613626480103 1.876231789588928 -0.2546918988227844 0.7491613626480103 1.876231789588928 -0.2546918988227844 -0.7716328501701355 1.866497397422791 -0.2695942223072052 -0.7716328501701355 1.866497397422791 -0.2695942223072052 0.7690663933753967 1.868226766586304 -0.2822587192058563 0.7690663933753967 1.868226766586304 -0.2822587192058563 0.7945891618728638 1.844061851501465 -0.2156186848878861 0.7945891618728638 1.844061851501465 -0.2156186848878861 0.785130500793457 1.87386691570282 -0.2156186848878861 0.785130500793457 1.87386691570282 -0.2156186848878861 0.7636018991470337 1.897564053535461 -0.216096967458725 0.7636018991470337 1.897564053535461 -0.216096967458725 0.659264087677002 1.936360359191895 -0.2190346866846085 0.659264087677002 1.936360359191895 -0.2190346866846085 0.7850460410118103 1.838940620422363 -0.2907206118106842 0.7850460410118103 1.838940620422363 -0.2907206118106842 -0.8062112331390381 1.823601245880127 -0.2790639102458954 -0.8062112331390381 1.823601245880127 -0.2790639102458954 -0.8124768733978272 1.826184034347534 -0.2772038877010346 -0.8124768733978272 1.826184034347534 -0.2772038877010346 -0.8177905082702637 1.828371405601502 -0.2719063758850098 -0.8177905082702637 1.828371405601502 -0.2719063758850098 -0.8213410377502441 1.829832553863525 -0.2639782726764679 -0.8213410377502441 1.829832553863525 -0.2639782726764679 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8177905082702637 1.828371405601502 -0.2373465597629547 -0.8177905082702637 1.828371405601502 -0.2373465597629547 -0.8124768733978272 1.826184034347534 -0.2320491224527359 -0.8124768733978272 1.826184034347534 -0.2320491224527359 -0.8062112331390381 1.823601245880127 -0.2301888763904572 -0.8062112331390381 1.823601245880127 -0.2301888763904572 -0.7653849124908447 1.889186143875122 -0.2190346866846085 -0.7653849124908447 1.889186143875122 -0.2190346866846085 -0.7605457901954651 1.882081866264343 -0.2274011671543121 -0.7605457901954651 1.882081866264343 -0.2274011671543121 0.7498206496238709 1.877334475517273 -0.2399222552776337 0.7498206496238709 1.877334475517273 -0.2399222552776337 -0.769903838634491 1.865890741348267 -0.2546553909778595 -0.769903838634491 1.865890741348267 -0.2546553909778595 0.7641419172286987 1.866497397422791 -0.2695942223072052 0.7641419172286987 1.866497397422791 -0.2695942223072052 -0.7873572707176209 1.836227893829346 -0.2822587192058563 -0.7873572707176209 1.836227893829346 -0.2822587192058563 0.7987200021743774 1.823601245880127 -0.2301888763904572 0.7987200021743774 1.823601245880127 -0.2301888763904572 0.8049858808517456 1.826184034347534 -0.2320491224527359 0.8049858808517456 1.826184034347534 -0.2320491224527359 0.8102995157241821 1.828371405601502 -0.2373465597629547 0.8102995157241821 1.828371405601502 -0.2373465597629547 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8138501644134522 1.829832553863525 -0.2639782726764679 0.8138501644134522 1.829832553863525 -0.2639782726764679 0.8102995157241821 1.828371405601502 -0.2719063758850098 0.8102995157241821 1.828371405601502 -0.2719063758850098 0.8049858808517456 1.826184034347534 -0.2772038877010346 0.8049858808517456 1.826184034347534 -0.2772038877010346 0.7578940391540527 1.889186143875122 -0.2190346866846085 0.7578940391540527 1.889186143875122 -0.2190346866846085 0.7987200021743774 1.823601245880127 -0.2790639102458954 0.7987200021743774 1.823601245880127 -0.2790639102458954 -0.7999439239501953 1.821020245552063 -0.2772038877010346 -0.7999439239501953 1.821020245552063 -0.2772038877010346 -0.7999439239501953 1.821020245552063 -0.2320491224527359 -0.7999439239501953 1.821020245552063 -0.2320491224527359 -0.792536735534668 1.838940620422363 -0.2185902446508408 -0.792536735534668 1.838940620422363 -0.2185902446508408 -0.7839280962944031 1.870815515518189 -0.2185902446508408 -0.7839280962944031 1.870815515518189 -0.2185902446508408 0.7530544996261597 1.882081866264343 -0.2274011671543121 0.7530544996261597 1.882081866264343 -0.2274011671543121 -0.7716328501701355 1.866497397422791 -0.239716961979866 -0.7716328501701355 1.866497397422791 -0.239716961979866 0.762412965297699 1.865890741348267 -0.2546553909778595 0.762412965297699 1.865890741348267 -0.2546553909778595 -0.7827526926994324 1.833805084228516 -0.2695942223072052 -0.7827526926994324 1.833805084228516 -0.2695942223072052 0.7798661589622498 1.836227893829346 -0.2822587192058563 0.7798661589622498 1.836227893829346 -0.2822587192058563 0.7924529314041138 1.821020245552063 -0.2320491224527359 0.7924529314041138 1.821020245552063 -0.2320491224527359 0.7850460410118103 1.838940620422363 -0.2185902446508408 0.7850460410118103 1.838940620422363 -0.2185902446508408 0.776436984539032 1.870815515518189 -0.2185902446508408 0.776436984539032 1.870815515518189 -0.2185902446508408 0.7924529314041138 1.821020245552063 -0.2772038877010346 0.7924529314041138 1.821020245552063 -0.2772038877010346 -0.8096880912780762 1.815246343612671 -0.2558586299419403 -0.8096880912780762 1.815246343612671 -0.2558586299419403 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.7765578627586365 1.868226766586304 -0.2270528525114059 -0.7765578627586365 1.868226766586304 -0.2270528525114059 0.7641419172286987 1.866497397422791 -0.239716961979866 0.7641419172286987 1.866497397422791 -0.239716961979866 -0.7811350226402283 1.832955837249756 -0.2546553909778595 -0.7811350226402283 1.832955837249756 -0.2546553909778595 0.7752613425254822 1.833805084228516 -0.2695942223072052 0.7752613425254822 1.833805084228516 -0.2695942223072052 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2719063758850098 0.8021973371505737 1.815246343612671 -0.2558586299419403 0.8021973371505737 1.815246343612671 -0.2558586299419403 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.7690663933753967 1.868226766586304 -0.2270528525114059 0.7690663933753967 1.868226766586304 -0.2270528525114059 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7873572707176209 1.836227893829346 -0.2270528525114059 -0.7873572707176209 1.836227893829346 -0.2270528525114059 -0.7827526926994324 1.833805084228516 -0.239716961979866 -0.7827526926994324 1.833805084228516 -0.239716961979866 0.7736440300941467 1.832955837249756 -0.2546553909778595 0.7736440300941467 1.832955837249756 -0.2546553909778595 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2639782726764679 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7798661589622498 1.836227893829346 -0.2270528525114059 0.7798661589622498 1.836227893829346 -0.2270528525114059 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2719063758850098 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2452745586633682 -0.7910812497138977 1.81736946105957 -0.2452745586633682 0.7752613425254822 1.833805084228516 -0.239716961979866 0.7752613425254822 1.833805084228516 -0.239716961979866 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7898352742195129 1.816856741905212 -0.2546263933181763 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2639782726764679 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7910812497138977 1.81736946105957 -0.2452745586633682 -0.7910812497138977 1.81736946105957 -0.2452745586633682 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2452745586633682</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID255\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"988\" source=\"#ID259\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2964\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID259\">0.01811380957266693 0.866976891652594 -0.4980190350209233 0.01811380957266693 0.866976891652594 -0.4980190350209233 0.01811380957266693 0.866976891652594 -0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0.01811379250568842 0.866976891920706 -0.4980190351749354 -0.01811379250568842 0.866976891920706 -0.4980190351749354 -0.01811379250568842 0.866976891920706 -0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.0009121131494288234 -0.298310708672215 -0.9544683803778329 0.001614307504300969 -0.5285047862956617 -0.8489287866917099 0.002200289293744457 -0.7196483725656897 -0.6943352062156852 -0.002200289293744457 0.7196483725656897 0.6943352062156852 -0.001614307504300969 0.5285047862956617 0.8489287866917099 -0.0009121131494288234 0.298310708672215 0.9544683803778329 0.03884761246150546 0.2980925397878077 -0.9537461406102229 0.03884761246150546 0.2980925397878077 -0.9537461406102229 0.03884761246150546 0.2980925397878077 -0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 1 0 0 -1 -0 -0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.002552514391934026 -0.8355289377748245 -0.5494405143517835 -0.002552514391934026 0.8355289377748245 0.5494405143517835 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 -0.0009121122897470495 -0.298310708672449 -0.9544683803785813 -0.002200287232821748 -0.719648376781204 -0.694335201853018 -0.001614305981759535 -0.5285047859663513 -0.8489287868996188 0.001614305981759535 0.5285047859663513 0.8489287868996188 0.002200287232821748 0.719648376781204 0.694335201853018 0.0009121122897470495 0.298310708672449 0.9544683803785813 0.8320403846287647 6.728158019358152e-006 -0.5547150604603675 0.8055737206021635 -0.334860110908844 -0.4887941149372647 0.8320394359021639 1.297833282873577e-005 -0.5547164833815306 -0.8320394359021639 -1.297833282873577e-005 0.5547164833815306 -0.8055737206021635 0.334860110908844 0.4887941149372647 -0.8320403846287647 -6.728158019358152e-006 0.5547150604603675 0.8055816010006706 0.3348440792358995 -0.4887921099300389 0.8116067224060802 0.2934437497667821 -0.5051586818694401 -0.8116067224060802 -0.2934437497667821 0.5051586818694401 -0.8055816010006706 -0.3348440792358995 0.4887921099300389 0.002648263323064338 -0.867050619351959 -0.4982130168740636 0.002648263323064338 -0.867050619351959 -0.4982130168740636 0.002648263323064338 -0.867050619351959 -0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.3338427968763195 -0.8115972051705556 -0.4794360891017068 0.002949635041474276 -0.9653555796487164 -0.2609212611003802 -0.002949635041474276 0.9653555796487164 0.2609212611003802 -0.3338427968763195 0.8115972051705556 0.4794360891017068 -0.002552511986482694 -0.835528937878214 -0.5494405142057348 0.002552511986482694 0.835528937878214 0.5494405142057348 -0.8055939915198626 0.3348349516607002 -0.4887779413736592 -0.8320507220387324 1.297809478051873e-005 -0.5546995545215382 -0.8116189586545295 0.2934350227654479 -0.505144091687885 0.8116189586545295 -0.2934350227654479 0.505144091687885 0.8320507220387324 -1.297809478051873e-005 0.5546995545215382 0.8055939915198626 -0.3348349516607002 0.4887779413736592 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 -0.8055861114285355 -0.334850983396517 -0.4887799463887985 -0.8320516707037028 6.727990467320525e-006 -0.5546981316300886 0.8320516707037028 -6.727990467320525e-006 0.5546981316300886 0.8055861114285355 0.334850983396517 0.4887799463887985 0.5466316485213796 -0.6118596425677951 -0.5716831453100651 -0.5466316485213796 0.6118596425677951 0.5716831453100651 0.7649780016593277 0.5278720251009558 -0.368998349715981 -0.7649780016593277 -0.5278720251009558 0.368998349715981 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -0.002212084448621615 0.7242674441303389 -0.6895156097256238 -0.002214140911835727 0.7242053730320672 -0.6895807967537286 -0.002553587655163572 0.8355923275804911 -0.5493441009774335 0.002553587655163572 -0.8355923275804911 0.5493441009774335 0.002214140911835727 -0.7242053730320672 0.6895807967537286 0.002212084448621615 -0.7242674441303389 0.6895156097256238 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.1864812486088931 -0.9557434151656247 -0.2275505840133497 0.003055537417817281 -0.9999953318327775 1.934294798560031e-006 -0.003055537417817281 0.9999953318327775 -1.934294798560031e-006 -0.1864812486088931 0.9557434151656247 0.2275505840133497 -0.3338527455496996 -0.8115943561974748 -0.4794339842745131 -0.002949632261432901 -0.9653555796741683 -0.2609212610376411 0.002949632261432901 0.9653555796741683 0.2609212610376411 0.3338527455496996 0.8115943561974748 0.4794339842745131 -0.7649920390725676 0.5278581958797434 -0.3689890312708192 0.7649920390725676 -0.5278581958797434 0.3689890312708192 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 0.002214138825010872 0.7242053730344722 -0.6895807967579033 0.002212082363703796 0.7242674441336792 -0.6895156097288039 0.002553585248665742 0.8355923276848613 -0.5493441008298652 -0.002553585248665742 -0.8355923276848613 0.5493441008298652 -0.002212082363703796 -0.7242674441336792 0.6895156097288039 -0.002214138825010872 -0.7242053730344722 0.6895807967579033 -0.5466429642130603 -0.6118560606134371 -0.5716761589982258 0.5466429642130603 0.6118560606134371 0.5716761589982258 0 3.868158711756917e-006 -0.9999999999925187 0 3.868158711701378e-006 -0.9999999999925188 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 -0 -3.868158711701378e-006 0.9999999999925188 -0 -3.868158711756917e-006 0.9999999999925187 0 0.5281572825815556 -0.8491465626475012 0 0.5281572825815556 -0.8491465626475013 -0 -0.5281572825815556 0.8491465626475013 -0 -0.5281572825815556 0.8491465626475012 0 0.8356446321585987 -0.5492704695726142 0 0.8356446321585989 -0.5492704695726142 -0 -0.8356446321585989 0.5492704695726142 -0 -0.8356446321585987 0.5492704695726142 0.7568791977856552 0.5590129755901407 -0.3385828895281033 -0.7568791977856552 -0.5590129755901407 0.3385828895281033 -0.002554155191691176 0.8357993912333664 -0.5490290100761444 0.002554155191691176 -0.8357993912333664 0.5490290100761444 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.1661060322011099 -0.9860944486220339 -0.005150190599470763 0.002949694936965429 -0.9653554352628204 0.2609217946211268 -0.002949694936965429 0.9653554352628204 -0.2609217946211268 -0.1661060322011099 0.9860944486220339 0.005150190599470763 -0.1864880322547073 -0.9557422919471569 -0.2275497422748767 -0.003055534537986922 -0.999995331841577 1.934293567479863e-006 0.003055534537986922 0.999995331841577 -1.934293567479863e-006 0.1864880322547073 0.9557422919471569 0.2275497422748767 0.2862877336281036 -0.8697972039015308 -0.401860868534326 -0.2862877336281036 0.8697972039015308 0.401860868534326 -2.019804105832881e-017 0.835644632158599 -0.5492704695726142 -1.504631385858392e-017 0.5281572825815555 -0.8491465626475012 -5.394652787860109e-018 0.8356446321585987 -0.5492704695726142 5.394652787860109e-018 -0.8356446321585987 0.5492704695726142 1.504631385858392e-017 -0.5281572825815555 0.8491465626475012 2.019804105832881e-017 -0.835644632158599 0.5492704695726142 -0.7568933467921767 0.5589992110197796 -0.3385739855053869 0.7568933467921767 -0.5589992110197796 0.3385739855053869 0 3.86815871177543e-006 -0.9999999999925187 0 0.5281572825815556 -0.8491465626475012 -0 -0.5281572825815556 0.8491465626475012 -0 -3.86815871177543e-006 0.9999999999925187 -1 0 0 1 -0 -0 0.002554152784050285 0.8357993911402223 -0.5490290102291404 -0.002554152784050285 -0.8357993911402223 0.5490290102291404 0 -0.2983734121066879 -0.9544492165368531 0 3.868158711756917e-006 -0.9999999999925187 -0 -3.868158711756917e-006 0.9999999999925187 -0 0.2983734121066879 0.9544492165368531 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 0 0.965359471880244 -0.2609235329576394 -0 -0.965359471880244 0.2609235329576394 0.7268825143436041 0.6607398573687157 -0.1872555772891412 -0.7268825143436041 -0.6607398573687157 0.1872555772891412 -0.002950127160059584 0.9653490900268844 -0.2609452646322702 0.002950127160059584 -0.9653490900268844 0.2609452646322702 -0.002949448796250568 0.9653929382102103 -0.26078300482519 0.002949448796250568 -0.9653929382102103 0.26078300482519 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.2007501489671204 -0.951725343973551 0.232203030402501 0.002552997604157791 -0.8355269595520708 0.5494435203593774 -0.002552997604157791 0.8355269595520708 -0.5494435203593774 -0.2007501489671204 0.951725343973551 -0.232203030402501 -0.1661127803645202 -0.9860933108704654 -0.005150384072321964 -0.002949692156861799 -0.9653554352876221 0.2609217945607945 0.002949692156861799 0.9653554352876221 -0.2609217945607945 0.1661127803645202 0.9860933108704654 0.005150384072321964 0.1724465557830786 -0.9617809931350786 -0.2126958077693477 -0.1724465557830786 0.9617809931350786 0.2126958077693477 -0.2862975662683983 -0.8697944662238237 -0.4018597890747538 0.2862975662683983 0.8697944662238237 0.4018597890747538 0 -0.8667445901319661 -0.4987522586184146 -0 0.8667445901319661 0.4987522586184146 4.409748279020684e-018 0.965359471880244 -0.2609235329576394 -4.409748279020684e-018 -0.965359471880244 0.2609235329576394 -0.7268976426489947 0.6607244087997335 -0.1872513624184803 0.7268976426489947 -0.6607244087997335 0.1872513624184803 -1 0 0 1 -0 -0 0.002950124379610544 0.965349090051797 -0.2609452645715427 0.002949446016322907 0.9653929382009268 -0.2607830048909988 -0.002949446016322907 -0.9653929382009268 0.2607830048909988 -0.002950124379610544 -0.965349090051797 0.2609452645715427 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 -0.8320362498070469 -8.063598776771518e-006 -0.5547212623849964 -0.803978066699777 -0.3441521864512067 -0.4849521015796744 -0.8320371287516315 -3.026124632421247e-006 -0.5547199440885313 0.8320371287516315 3.026124632421247e-006 0.5547199440885313 0.803978066699777 0.3441521864512067 0.4849521015796744 0.8320362498070469 8.063598776771518e-006 0.5547212623849964 -0.8055654191382256 0.3348837302659184 -0.4887916147928875 -0.8116036193285674 0.2934593149064727 -0.5051546254241303 0.8116036193285674 -0.2934593149064727 0.5051546254241303 0.8055654191382256 -0.3348837302659184 0.4887916147928875 -0.7568503463297163 0.5590451464084897 -0.3385942668411544 -0.7649953272105627 0.5278527817531871 -0.3689899594046245 0.7649953272105627 -0.5278527817531871 0.3689899594046245 0.7568503463297163 -0.5590451464084897 0.3385942668411544 -0.7249140961405115 0.6675523157258524 -0.1699219202629169 -0.7268914757574545 0.6607266118067573 -0.1872675276750152 0.7268914757574545 -0.6607266118067573 0.1872675276750152 0.7249140961405115 -0.6675523157258524 0.1699219202629169 0 0.965359471880244 -0.2609235329576393 -0 -0.965359471880244 0.2609235329576393 0.7249272079121237 0.667543496065336 -0.169900630044745 -0.7249272079121237 -0.667543496065336 0.169900630044745 -0.003055185258789919 0.9999953329104274 6.309564516309169e-007 0.003055185258789919 -0.9999953329104274 -6.309564516309169e-007 -0.003055193244397305 0.9999953328861547 3.846450991081987e-007 0.003055193244397305 -0.9999953328861547 -3.846450991081987e-007 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.396242401047364 -0.8263973975146813 0.400074119374375 0.00161200203617746 -0.5277742081911482 0.8493831800887288 -0.00161200203617746 0.5277742081911482 -0.8493831800887288 -0.396242401047364 0.8263973975146813 -0.400074119374375 -0.2007576106584453 -0.951724024483904 0.2322019874653813 -0.002552995198272918 -0.8355269596566859 0.5494435202114703 0.002552995198272918 0.8355269596566859 -0.5494435202114703 0.2007576106584453 0.951724024483904 -0.2322019874653813 0.1616196621128437 -0.9868424115335599 0.00459778393993502 -0.1616196621128437 0.9868424115335599 -0.00459778393993502 -0.1724535429730829 -0.9617797362109177 -0.2126958263109286 0.1724535429730829 0.9617797362109177 0.2126958263109286 -0.3357453554640401 -0.8484485168976997 -0.4091578796240137 0.3357453554640401 0.8484485168976997 0.4091578796240137 2.37852513665284e-017 -0.8667445901319661 -0.4987522586184147 -2.37852513665284e-017 0.8667445901319661 0.4987522586184147 0.7650013428316465 0.5278468550956063 -0.3689859659004064 0.7249205833962374 0.6675457238996612 -0.1699201408654548 0.7268979590519979 0.6607199911880276 -0.1872657212907171 -0.7268979590519979 -0.6607199911880276 0.1872657212907171 -0.7249205833962374 -0.6675457238996612 0.1699201408654548 -0.7650013428316465 -0.5278468550956063 0.3689859659004064 1.464501951309081e-018 0.965359471880244 -0.2609235329576394 -1.464501951309081e-018 -0.965359471880244 0.2609235329576394 0.8116088634042136 0.2934555747505147 -0.5051483727495967 0.7568564105892773 0.5590392475553451 -0.3385904509029589 -0.7568564105892773 -0.5590392475553451 0.3385904509029589 -0.8116088634042136 -0.2934555747505147 0.5051483727495967 -0.7249423445682703 0.6675281145621809 -0.1698964782475471 0.7249423445682703 -0.6675281145621809 0.1698964782475471 0.8320419656509712 -3.026103993012759e-006 -0.554712689044077 0.8055707295559194 0.3348798184281762 -0.4887855428429281 -0.8055707295559194 -0.3348798184281762 0.4887855428429281 -0.8320419656509712 3.026103993012759e-006 0.554712689044077 -1 0 0 1 -0 -0 0.003055190364844028 0.9999953328949524 3.846453285500369e-007 0.003055182379244019 0.9999953329192248 6.309566859035713e-007 -0.003055182379244019 -0.9999953329192248 -6.309566859035713e-007 -0.003055190364844028 -0.9999953328949524 -3.846453285500369e-007 0.8039834668812202 -0.344147818365849 -0.4849462486664688 0.8320410867311748 -8.063554250222519e-006 -0.554714007328267 -0.8320410867311748 8.063554250222519e-006 0.554714007328267 -0.8039834668812202 0.344147818365849 0.4849462486664688 -0.7664487854284114 -0.4050337947265615 -0.4985016393601074 0.7664487854284114 0.4050337947265615 0.4985016393601074 -0.7205240482818297 0.6934070339913934 -0.00563746918592094 0.7205240482818297 -0.6934070339913934 0.00563746918592094 0 0.9992983021790191 -0.03745535024705565 -0 -0.9992983021790191 0.03745535024705565 0.7193380553647977 0.6943244888794296 -0.02159319907541268 -0.7193380553647977 -0.6943244888794296 0.02159319907541268 0.7289093500560232 0.684238699561087 -0.02255130647786537 -0.7289093500560232 -0.684238699561087 0.02255130647786537 -0.002949335473584697 0.9653475938150504 0.2609508086512788 0.002949335473584697 -0.9653475938150504 -0.2609508086512788 -0.002950301896304013 0.9653916081025115 0.2607879190529493 0.002950301896304013 -0.9653916081025115 -0.2607879190529493 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.001615094735668822 -0.5285024120461672 0.8489302632904412 -8.857905654529529e-007 0.000536850303038527 0.9999998558954735 8.857905654529529e-007 -0.000536850303038527 -0.9999998558954735 -0.001615094735668822 0.5285024120461672 -0.8489302632904412 -0.3962520963852381 -0.8263937323002769 0.4000720876606143 -0.001612000517827052 -0.5277742085236129 0.8493831798850298 0.001612000517827052 0.5277742085236129 -0.8493831798850298 0.3962520963852381 0.8263937323002769 -0.4000720876606143 0.2520181699357093 -0.9561763662848922 0.1490422711195572 -0.2520181699357093 0.9561763662848922 -0.1490422711195572 -0.1616261657716915 -0.9868413456543232 0.004597939223866884 0.1616261657716915 0.9868413456543232 -0.004597939223866884 -0.1962426981760692 -0.9534546635626248 -0.2289388738140783 0.1962426981760692 0.9534546635626248 0.2289388738140783 0.3357496371242677 -0.8484470727281261 -0.4091573608649813 -0.3357496371242677 0.8484470727281261 0.4091573608649813 2.37852513665284e-017 -0.8667445901319661 -0.4987522586184147 -2.37852513665284e-017 0.8667445901319661 0.4987522586184147 0.7205305897862324 0.6934002366019171 -0.005637469530682406 -0.7205305897862324 -0.6934002366019171 0.005637469530682406 4.575417561731639e-018 0.9992983021790192 -0.03745535024705565 -4.575417561731639e-018 -0.9992983021790192 0.03745535024705565 -0.7193533642005128 0.6943086462472908 -0.0215926181751677 0.7193533642005128 -0.6943086462472908 0.0215926181751677 -1 0 0 1 -0 -0 0.002950299115588007 0.9653916080934859 0.2607879191178184 0.002949332693869268 0.9653475938402066 0.2609508085896353 -0.002949332693869268 -0.9653475938402066 -0.2609508085896353 -0.002950299115588007 -0.9653916080934859 -0.2607879191178184 -0.7289242112690209 0.6842228763809267 -0.02255104571515598 0.7289242112690209 -0.6842228763809267 0.02255104571515598 0.7664546770341747 -0.4050299076951926 -0.49849573912408 -0.7664546770341747 0.4050299076951926 0.49849573912408 -0.0002797592049493041 0.006263672890302613 -0.9999803438751738 -0.01106566094474254 0.03668599928103868 -0.9992655746119784 0.01697730248933885 -0.524390261730718 -0.8513087715994557 -0.01697730248933885 0.524390261730718 0.8513087715994557 0.01106566094474254 -0.03668599928103868 0.9992655746119784 0.0002797592049493041 -0.006263672890302613 0.9999803438751738 -0.01780721153823865 0.5319665183544828 -0.8465781278576965 -0.1264676245001224 0.5355571030882171 -0.8349757656872761 0.1264676245001224 -0.5355571030882171 0.8349757656872761 0.01780721153823865 -0.5319665183544828 0.8465781278576965 -0.1893315825615171 0.8206660561074328 -0.5391296469290327 -0.02822700821874184 0.8365546736574295 -0.547155840678806 0.02822700821874184 -0.8365546736574295 0.547155840678806 0.1893315825615171 -0.8206660561074328 0.5391296469290327 -0.03272715821418405 0.9650613597744062 -0.2599721234778792 -0.2155343565998912 0.9421998252081087 -0.2565237425714823 0.2155343565998912 -0.9421998252081087 0.2565237425714823 0.03272715821418405 -0.9650613597744062 0.2599721234778792 -0.2228877374193605 0.9748440975020174 0.0002051183931693147 -0.03389589443880784 0.9994253687680178 -2.455819977344632e-005 0.03389589443880784 -0.9994253687680178 2.455819977344632e-005 0.2228877374193605 -0.9748440975020174 -0.0002051183931693147 -0.7301198465623731 0.6832725967623803 -0.007972964902108899 0.7301198465623731 -0.6832725967623803 0.007972964902108899 2.068868811079841e-018 0.9992983021790191 -0.03745535024705565 -2.068868811079841e-018 -0.9992983021790191 0.03745535024705565 0.7678778063303926 0.6369896413553908 0.06788130339905686 -0.7678778063303926 -0.6369896413553908 -0.06788130339905686 0.8092178749763873 0.5804623039637544 0.09071904152816923 -0.8092178749763873 -0.5804623039637544 -0.09071904152816923 -0.002553622612297775 0.8355937385993449 0.549341954546641 0.002553622612297775 -0.8355937385993449 -0.549341954546641 -0.002554286917194058 0.8358000414649245 0.5490280195997059 0.002554286917194058 -0.8358000414649245 -0.5490280195997059 -1 0 0 1 -0 -0 1.481633289449374e-006 -0.0005762421340112978 0.9999998339713901 -0.001613847109763359 0.5284751012949722 0.848947267389898 0.001613847109763359 -0.5284751012949722 -0.848947267389898 -1.481633289449374e-006 0.0005762421340112978 -0.9999998339713901 8.857880502895044e-007 0.0005368497562072896 0.999999855895767 -0.001615093212392778 -0.5285024117156749 0.8489302634990876 0.001615093212392778 0.5285024117156749 -0.8489302634990876 -8.857880502895044e-007 -0.0005368497562072896 -0.999999855895767 0.4929489107293522 -0.8475429605278416 0.1966527433585581 0.9533497854571083 -0.2073605654130637 0.2193758931160399 -0.9533497854571083 0.2073605654130637 -0.2193758931160399 -0.4929489107293522 0.8475429605278416 -0.1966527433585581 -0.2520271808283023 -0.9561738850512725 0.149042952432157 0.2520271808283023 0.9561738850512725 -0.149042952432157 -0.1616277778155193 -0.9868408232939524 0.004653054795648724 0.1616277778155193 0.9868408232939524 -0.004653054795648724 0.1962459009082128 -0.9534539725555282 -0.2289390062763575 -0.1962459009082128 0.9534539725555282 0.2289390062763575 -0.2777561620133268 -0.830283889877445 -0.4831978649307193 0.2777561620133268 0.830283889877445 0.4831978649307193 0.03389580203817755 0.9994253719014018 -2.457505460847512e-005 0.03272706690551168 0.965061366334949 -0.2599721106185886 0.2228865655285466 0.9748443654123843 0.0002052574352880103 -0.2228865655285466 -0.9748443654123843 -0.0002052574352880103 -0.03272706690551168 -0.965061366334949 0.2599721106185886 -0.03389580203817755 -0.9994253719014018 2.457505460847512e-005 0.730126241693922 0.6832657653076124 -0.007972775458476284 -0.730126241693922 -0.6832657653076124 0.007972775458476284 0.02822692769022931 0.8365546646967691 -0.5471558585332399 0.2155368156360248 0.9421992683628976 -0.2565237217138076 -0.2155368156360248 -0.9421992683628976 0.2565237217138076 -0.02822692769022931 -0.8365546646967691 0.5471558585332399 6.123228085551975e-019 0.9992983021790191 -0.03745535024705565 -6.123228085551975e-019 -0.9992983021790191 0.03745535024705565 0.01780718905203821 0.5319665044789665 -0.846578137049673 0.1893315178785763 0.8206639692342971 -0.5391328462803978 -0.1893315178785763 -0.8206639692342971 0.5391328462803978 -0.01780718905203821 -0.5319665044789665 0.846578137049673 0.0002797632041481558 0.00626367289098501 -0.9999803438740506 0.126465024024466 0.5355555057194289 -0.8349771841146907 -0.126465024024466 -0.5355555057194289 0.8349771841146907 -0.0002797632041481558 -0.00626367289098501 0.9999803438740506 0.00255362020575763 0.8355937387029213 0.5493419544002797 0.002554284509427913 0.8358000413710054 0.5490280197538832 -0.002554284509427913 -0.8358000413710054 -0.5490280197538832 -0.00255362020575763 -0.8355937387029213 -0.5493419544002797 -0.8092297345050434 0.5804462092470282 0.09071623318707789 -0.7678918164356939 0.6369729306543241 0.06787962775923269 0.7678918164356939 -0.6369729306543241 -0.06787962775923269 0.8092297345050434 -0.5804462092470282 -0.09071623318707789 -0.01697729557675344 -0.5243902633278786 -0.8513087707534898 0.01106592119690006 0.03668641810883589 -0.9992655563534688 -0.01106592119690006 -0.03668641810883589 0.9992655563534688 0.01697729557675344 0.5243902633278786 0.8513087707534898 0.1184825435448558 -0.4899915571089545 -0.8636377486174882 -0.1184825435448558 0.4899915571089545 0.8636377486174882 -0.2167209968464306 0.9418398285204125 0.256845764883382 0.2167209968464306 -0.9418398285204125 -0.256845764883382 -0.7802832047922998 0.6145788157087936 0.1159784445534376 0.7802832047922998 -0.6145788157087936 -0.1159784445534376 8.335971109177908e-018 0.9965072187388201 0.08350666441321454 -8.335971109177908e-018 -0.9965072187388201 -0.08350666441321454 6.602877351672787e-018 0.9965072187388201 0.08350666441321454 -6.602877351672787e-018 -0.9965072187388201 -0.08350666441321454 0.91484729386902 0.3766843762805661 0.1454761477584959 -0.91484729386902 -0.3766843762805661 -0.1454761477584959 0.9380738936174975 0.3098261895273916 0.1550003303101148 -0.9380738936174975 -0.3098261895273916 -0.1550003303101148 -0.001613329526401327 0.5278221017331963 0.8493534164820853 0.001613329526401327 -0.5278221017331963 -0.8493534164820853 0.001613845587672781 0.5284751009650505 0.84894726759817 -1.481630220660002e-006 -0.0005762415874944916 0.9999998339717051 1.481630220660002e-006 0.0005762415874944916 -0.9999998339717051 -0.001613845587672781 -0.5284751009650505 -0.84894726759817 0.9712365635796946 -0.1527066280144715 0.1827025542414654 0.9819609856057684 -0.008174300589236617 0.1889068647721009 -0.9819609856057684 0.008174300589236617 -0.1889068647721009 -0.9712365635796946 0.1527066280144715 -0.1827025542414654 -0.4929567288601705 -0.8475387800870704 0.1966511625188134 -0.9533535455219041 -0.2073525445156425 0.2193671341010386 0.9533535455219041 0.2073525445156425 -0.2193671341010386 0.4929567288601705 0.8475387800870704 -0.1966511625188134 -0.1605110079563473 -0.9819532101403307 0.1000205449892033 0.1605110079563473 0.9819532101403307 -0.1000205449892033 0.1616305651411281 -0.9868403664580093 0.004653121659863324 -0.1616305651411281 0.9868403664580093 -0.004653121659863324 -0.1621884459272584 -0.9565899097374314 -0.2421376728149378 0.1621884459272584 0.9565899097374314 0.2421376728149378 0.2777603923494519 -0.830283070778745 -0.4831968406561615 -0.2777603923494519 0.830283070778745 0.4831968406561615 0.2167232423485981 0.9418394466154173 0.2568452705912165 -0.2167232423485981 -0.9418394466154173 -0.2568452705912165 0.7802889215868538 0.6145718648083991 0.1159768159364256 -0.7802889215868538 -0.6145718648083991 -0.1159768159364256 1.030934398677886e-018 0.9965072187388201 0.08350666441321455 -1.030934398677886e-018 -0.9965072187388201 -0.08350666441321455 0.001613328006849522 0.5278221020668691 0.849353416277614 -0.001613328006849522 -0.5278221020668691 -0.849353416277614 -0.9380787959196464 0.3098143672477748 0.1549942918071744 -0.9148539408133669 0.3766702869387026 0.1454708284013264 0.9148539408133669 -0.3766702869387026 -0.1454708284013264 0.9380787959196464 -0.3098143672477748 -0.1549942918071744 0 0.9965072187388201 0.08350666441321455 -0 -0.9965072187388201 -0.08350666441321455 -0.1184820905555187 -0.4899930899273966 -0.8636369411048811 0.1184820905555187 0.4899930899273966 0.8636369411048811 -0.02157256374809401 0.0304730294347691 -0.999302766417867 0.02157256374809401 -0.0304730294347691 0.999302766417867 -0.3265606669319467 0.4195619864804518 -0.8469509255638955 0.3265606669319467 -0.4195619864804518 0.8469509255638955 -0.5261526271735196 0.6463451952757038 -0.5526312527014876 0.5261526271735196 -0.6463451952757038 0.5526312527014876 -0.6183152130251024 0.7380156723353358 -0.2702205853171522 0.6183152130251024 -0.7380156723353358 0.2702205853171522 -0.6410526923499644 0.7674968419890563 -0.0002077683496633954 0.6410526923499644 -0.7674968419890563 0.0002077683496633954 -0.6090258531602395 0.7488508500734324 0.261361654660243 0.6090258531602395 -0.7488508500734324 -0.261361654660243 -0.0325679263279658 0.9650796482741636 0.2599242248458434 0.0325679263279658 -0.9650796482741636 -0.2599242248458434 -0.8206302163431705 0.5639156656873579 0.09254820374780565 0.8206302163431705 -0.5639156656873579 -0.09254820374780565 3.839672104174279e-018 0.9631331640241506 0.2690251072982375 -3.839672104174279e-018 -0.9631331640241506 -0.2690251072982375 9.873498882604889e-018 0.9631331640241506 0.2690251072982374 -9.873498882604889e-018 -0.9631331640241506 -0.2690251072982374 0.9692092068417504 0.1700562954552146 0.1780852878517311 -0.9692092068417504 -0.1700562954552146 -0.1780852878517311 0.9755210414545454 0.1339201871436595 0.1744250015188364 -0.9755210414545454 -0.1339201871436595 -0.1744250015188364 0.9820094607551504 0.01516355419712978 0.1882219052381767 -0.9820094607551504 -0.01516355419712978 -0.1882219052381767 -0.9712389984143933 -0.1527002210970489 0.1826949655461758 -0.9819625328217502 -0.008173970839654855 0.1888988362457681 0.9819625328217502 0.008173970839654855 -0.1888988362457681 0.9712389984143933 0.1527002210970489 -0.1826949655461758 -0.02117067087250909 -0.9821148502766945 0.187088811960507 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 0.02117067087250909 0.9821148502766945 -0.187088811960507 0.1605137823074094 -0.981952766035434 0.1000204527320781 -0.1605137823074094 0.981952766035434 -0.1000204527320781 -0.1490552496970033 -0.9888158434479187 -0.00507545900829777 0.1490552496970033 0.9888158434479187 0.00507545900829777 0.1621914928617083 -0.956589485234327 -0.2421373089435325 -0.1621914928617083 0.956589485234327 0.2421373089435325 0.1992955053068566 -0.8041073521826736 -0.5600827329334965 -0.1992955053068566 0.8041073521826736 0.5600827329334965 0.6090279241513155 0.7488517591937228 0.2613542239115452 -0.6090279241513155 -0.7488517591937228 -0.2613542239115452 0.03256783281309811 0.9650796464246926 0.2599242434299818 -0.03256783281309811 -0.9650796464246926 -0.2599242434299818 0.6410549470182567 0.7674949587243872 -0.0002079328529572579 -0.6410549470182567 -0.7674949587243872 0.0002079328529572579 0.8206353015347579 0.5639084200000258 0.0925472621314709 -0.8206353015347579 -0.5639084200000258 -0.0925472621314709 0.6183164625215473 0.7380178490005961 -0.2702117812593917 -0.6183164625215473 -0.7380178490005961 0.2702117812593917 0.5261603498804544 0.64634501550577 -0.5526241101730215 -0.5261603498804544 -0.64634501550577 0.5526241101730215 0.3265598441620871 0.4195571632132496 -0.8469536321294596 -0.3265598441620871 -0.4195571632132496 0.8469536321294596 -0.9755231142129951 0.1339146232400715 0.1744176806365959 -0.969211805223159 0.1700492026605481 0.1780779191550072 0.969211805223159 -0.1700492026605481 -0.1780779191550072 0.9755231142129951 -0.1339146232400715 -0.1744176806365959 9.873448737266604e-018 0.9631331640241506 0.2690251072982374 0 0.9631331640241506 0.2690251072982374 -0 -0.9631331640241506 -0.2690251072982374 -9.873448737266604e-018 -0.9631331640241506 -0.2690251072982374 0.0215690849119027 0.03046902354634635 -0.9993029636602681 -0.0215690849119027 -0.03046902354634635 0.9993029636602681 0.2891880719699376 -0.3913850132782499 -0.8736063360641876 -0.2891880719699376 0.3913850132782499 0.8736063360641876 -0.5050167113002247 0.6564889884265315 0.5603394769086103 0.5050167113002247 -0.6564889884265315 -0.5603394769086103 -0.1913791141245951 0.8201616641672003 0.5391742569034372 0.1913791141245951 -0.8201616641672003 -0.5391742569034372 -0.889292257498726 0.4269801621608256 0.1638512187136083 0.889292257498726 -0.4269801621608256 -0.1638512187136083 -0.9335688285797957 0.3336606029531335 0.1308428230400855 0.9335688285797957 -0.3336606029531335 -0.1308428230400855 -8.514388587547155e-018 0.7626349109729054 0.6468291834521296 8.514388587547155e-018 -0.7626349109729054 -0.6468291834521296 2.174811445937475e-017 0.7626349109729054 0.6468291834521296 -2.174811445937475e-017 -0.7626349109729054 -0.6468291834521296 -0.9820110045135057 0.01516290704785058 0.188213902951492 0.9820110045135057 -0.01516290704785058 -0.188213902951492 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 0.02117070859153276 -0.9821148264214962 0.1870889329190988 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.02117070859153276 0.9821148264214962 -0.1870889329190988 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.1446250046914288 -0.9707689276932437 0.1915497247278472 0.1446250046914288 0.9707689276932437 -0.1915497247278472 0.1490581853501327 -0.9888154004405476 -0.005075552356619214 -0.1490581853501327 0.9888154004405476 0.005075552356619214 0.2347772550107806 -0.9350487801729239 -0.2656377594144512 -0.2347772550107806 0.9350487801729239 0.2656377594144512 -0.1992967459393751 -0.8041087791459054 -0.5600802427853153 0.1992967459393751 0.8041087791459054 0.5600802427853153 0.5050262873067521 0.656488399991662 0.5603315356157868 -0.5050262873067521 -0.656488399991662 -0.5603315356157868 0.1913782600183198 0.8201595563084797 0.5391777664075532 -0.1913782600183198 -0.8201595563084797 -0.5391777664075532 0.88929565445638 0.4269740989418542 0.163848581921817 -0.88929565445638 -0.4269740989418542 -0.163848581921817 2.43577377835986e-017 0.7626349109729054 0.6468291834521296 3.435253496846114e-017 0.7626349109729055 0.6468291834521296 -3.435253496846114e-017 -0.7626349109729055 -0.6468291834521296 -2.43577377835986e-017 -0.7626349109729054 -0.6468291834521296 0.9335711130046454 0.3336550455237233 0.1308406953506054 -0.9335711130046454 -0.3336550455237233 -0.1308406953506054 -0.289189093827899 -0.3913801532758218 -0.8736081751178803 0.289189093827899 0.3913801532758218 0.8736081751178803 -0.04141091907858467 0.03946780910082173 -0.9983623730018315 0.04141091907858467 -0.03946780910082173 0.9983623730018315 -0.4971166425574662 0.2809862863339101 -0.8209273722959116 0.4971166425574662 -0.2809862863339101 0.8209273722959116 -0.8001393427670355 0.4181600269938953 -0.4300223528850576 0.8001393427670355 -0.4181600269938953 0.4300223528850576 -0.8780942256849145 0.4536487713185636 -0.1521621605392353 0.8780942256849145 -0.4536487713185636 0.1521621605392353 -0.8980461688117551 0.4399009207699547 -0.000508515756603526 0.8980461688117551 -0.4399009207699547 0.000508515756603526 -0.8887363119851522 0.4350413154743655 0.1445227372746709 0.8887363119851522 -0.4350413154743655 -0.1445227372746709 -0.8107133045140261 0.3990345337987951 0.4283869497544556 0.8107133045140261 -0.3990345337987951 -0.4283869497544556 -0.02797389227719448 0.8365633045521014 0.5471556440609309 0.02797389227719448 -0.8365633045521014 -0.5471556440609309 -0.966362969318562 0.1662080634581257 0.1962587352739023 0.966362969318562 -0.1662080634581257 -0.1962587352739023 -0.9729795164130922 0.1604889476513607 0.1659944526853352 0.9729795164130922 -0.1604889476513607 -0.1659944526853352 -2.750518736971893e-017 0.558430223714857 0.8295514964375477 2.750518736971893e-017 -0.558430223714857 -0.8295514964375477 2.750518736971894e-017 0.558430223714857 0.8295514964375479 2.750518736971894e-017 0.558430223714857 0.8295514964375479 -2.750518736971894e-017 -0.558430223714857 -0.8295514964375479 -2.750518736971894e-017 -0.558430223714857 -0.8295514964375479 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 0 -0.9535520834967369 0.3012281926696639 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.8246482123398324 -0.5384016893806141 0.1734328306775256 -0.8890262365898423 -0.4149202519035402 0.1935808234696932 -0.9686414897692759 -0.1553131039194101 0.1939368558280669 0.9686414897692759 0.1553131039194101 -0.1939368558280669 0.8890262365898423 0.4149202519035402 -0.1935808234696932 0.8246482123398324 0.5384016893806141 -0.1734328306775256 0.1446279629508149 -0.9707684895702872 0.1915497115375567 -0.1446279629508149 0.9707684895702872 -0.1915497115375567 -0.8635611351890751 -0.4640120862153424 0.1973700829331586 0.8635611351890751 0.4640120862153424 -0.1973700829331586 0.2433418509003679 -0.9699402281087456 0.0008351627014749256 -0.2433418509003679 0.9699402281087456 -0.0008351627014749256 -0.2347805683958469 -0.9350476959945108 -0.265638647261802 0.2347805683958469 0.9350476959945108 0.265638647261802 0.4628863340488015 -0.673449561625458 -0.5763696120523182 -0.4628863340488015 0.673449561625458 0.5763696120523182 0.8107124498491226 0.3990398452309895 0.4283836196420935 -0.8107124498491226 -0.3990398452309895 -0.4283836196420935 0.8887334496212473 0.435047673495858 0.1445212002100697 -0.8887334496212473 -0.435047673495858 -0.1445212002100697 0.02797386354473429 0.8365632928830925 0.5471556633710173 -0.02797386354473429 -0.8365632928830925 -0.5471556633710173 0.8980452761152394 0.4399027401971485 -0.0005110911300991234 -0.8980452761152394 -0.4399027401971485 0.0005110911300991234 0.8780938863150243 0.4536512439230808 -0.152156747149835 -0.8780938863150243 -0.4536512439230808 0.152156747149835 0.8001385740484556 0.4181646564270302 -0.4300192814688292 -0.8001385740484556 -0.4181646564270302 0.4300192814688292 0.4971137439881398 0.2809865126027326 -0.8209290500849927 -0.4971137439881398 -0.2809865126027326 0.8209290500849927 0 0.558430223714857 0.8295514964375477 0 0.558430223714857 0.8295514964375477 -0 -0.558430223714857 -0.8295514964375477 -0 -0.558430223714857 -0.8295514964375477 5.501001328179156e-017 0.5584302237148572 0.8295514964375478 -5.501001328179156e-017 -0.5584302237148572 -0.8295514964375478 0.9663641684364211 0.1662051895494593 0.1962552647166763 0.9729804984150213 0.1604860601719533 0.1659914883195547 -0.9729804984150213 -0.1604860601719533 -0.1659914883195547 -0.9663641684364211 -0.1662051895494593 -0.1962552647166763 0.04139812811194069 0.03946047028410003 -0.9983631935692467 -0.04139812811194069 -0.03946047028410003 0.9983631935692467 0.4352840504712 -0.2573443154483981 -0.8627292151722816 -0.4352840504712 0.2573443154483981 0.8627292151722816 -0.4947758603815167 0.2766781834040977 0.8237997516459558 0.4947758603815167 -0.2766781834040977 -0.8237997516459558 -0.3182902998221029 0.4253874815852181 0.8471934699640583 0.3182902998221029 -0.4253874815852181 -0.8471934699640583 -0.1285214720385949 0.5354504412796926 0.8347305290681628 0.1285214720385949 -0.5354504412796926 -0.8347305290681628 -0.01760029184088905 0.5319340583806397 0.8466028509648533 0.01760029184088905 -0.5319340583806397 -0.8466028509648533 -0.9813562345527125 0.003809967870390602 0.1921598944872417 0.9813562345527125 -0.003809967870390602 -0.1921598944872417 -0.9826247484202688 0.01797822488136286 0.1847305800946843 0.9826247484202688 -0.01797822488136286 -0.1847305800946843 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -0.9723970600012454 -0.1424041971710985 0.1848377730037599 0.9723970600012454 0.1424041971710985 -0.1848377730037599 0.8890296576422765 -0.4149142640270552 0.1935779464178291 0.8246531840080079 -0.5383947946004558 0.1734305949150483 0.9686426244423733 -0.1553103197147293 0.1939334182225955 -0.9686426244423733 0.1553103197147293 -0.1939334182225955 -0.8246531840080079 0.5383947946004558 -0.1734305949150483 -0.8890296576422765 0.4149142640270552 -0.1935779464178291 0.8635652832973482 -0.4640055489693796 0.1973673022797745 -0.8635652832973482 0.4640055489693796 -0.1973673022797745 0.2352902165018025 -0.9353796256116568 0.2640141473654995 0.02641988367814303 -0.8342914698166311 0.5506902333777483 -0.02641988367814303 0.8342914698166311 -0.5506902333777483 -0.2352902165018025 0.9353796256116568 -0.2640141473654995 -0.2433403836998066 -0.9699405959747506 0.000835428618573482 0.2433403836998066 0.9699405959747506 -0.000835428618573482 0.5174644567329831 -0.8184376411384442 -0.2497806309259746 -0.5174644567329831 0.8184376411384442 0.2497806309259746 -0.4628855797423996 -0.6734441282042899 -0.576376566364132 0.4628855797423996 0.6734441282042899 0.576376566364132 0.4947740454005835 0.2766758231917733 0.8238016344115227 -0.4947740454005835 -0.2766758231917733 -0.8238016344115227 0.3182882874077929 0.4253827693621513 0.847196592078132 -0.3182882874077929 -0.4253827693621513 -0.847196592078132 0.128518737747317 0.5354487075508035 0.8347320621792425 -0.128518737747317 -0.5354487075508035 -0.8347320621792425 0.9813569196690418 0.003809901884023064 0.192156396888899 0.9826253879433582 0.01797789724989331 0.1847272101766201 -0.9826253879433582 -0.01797789724989331 -0.1847272101766201 -0.9813569196690418 -0.003809901884023064 -0.192156396888899 0.01760029521255894 0.5319340620057762 0.8466028486170276 -0.01760029521255894 -0.5319340620057762 -0.8466028486170276 -0.4352838388394464 -0.2573442088715797 -0.8627293537404738 0.4352838388394464 0.2573442088715797 0.8627293537404738 -0.1460518413338239 -0.2495440035223013 -0.9572860857387729 0.1460518413338239 0.2495440035223013 0.9572860857387729 -0.6112310483565564 -0.06322878937391613 -0.7889225093247461 0.6112310483565564 0.06322878937391613 0.7889225093247461 -0.8915441330874293 0.08765989438287093 -0.4443701178906702 0.8915441330874293 -0.08765989438287093 0.4443701178906702 -0.9686701625701264 0.1863682952031955 -0.1641492451685955 0.9686701625701264 -0.1863682952031955 0.1641492451685955 -0.979113170918322 0.2033125117858606 0.001192092946436506 0.979113170918322 -0.2033125117858606 -0.001192092946436506 -0.9687439140355221 0.1712184293976954 0.1794978508331603 0.9687439140355221 -0.1712184293976954 -0.1794978508331603 -0.9005329413542803 0.06961919280870038 0.4291778064258139 0.9005329413542803 -0.06961919280870038 -0.4291778064258139 -0.6132342788519511 -0.07787746425893305 0.7860526825865594 0.6132342788519511 0.07787746425893305 -0.7860526825865594 -0.01160717805864078 0.03735978391852368 0.9992344669611213 0.01160717805864078 -0.03735978391852368 -0.9992344669611213 -0.0002750990191358153 0.006169802339054176 0.9999809287479571 0.0002750990191358153 -0.006169802339054176 -0.9999809287479571 0.9723980564127662 -0.1424016814601213 0.1848344691933977 -0.9723980564127662 0.1424016814601213 -0.1848344691933977 0.2021749486814607 -0.8035469111942198 0.5598550273382186 0.01676180795212049 -0.5244277201954837 0.8512899670997793 -0.01676180795212049 0.5244277201954837 -0.8512899670997793 -0.2021749486814607 0.8035469111942198 -0.5598550273382186 -0.2352934458797688 -0.935378697436839 0.2640145577565506 -0.0264198118204032 -0.8342914800161936 0.5506902213729273 0.0264198118204032 0.8342914800161936 -0.5506902213729273 0.2352934458797688 0.935378697436839 -0.2640145577565506 0.5295609180573445 -0.8482711081585763 -0.001166674626152061 -0.5295609180573445 0.8482711081585763 0.001166674626152061 -0.5174623672663363 -0.8184399911235302 -0.2497772595590622 0.5174623672663363 0.8184399911235302 0.2497772595590622 0.6977626942542141 -0.4698759106643299 -0.5406883123246394 -0.6977626942542141 0.4698759106643299 0.5406883123246394 0.6132240363791013 -0.07788204483911553 0.7860602192571512 -0.6132240363791013 0.07788204483911553 -0.7860602192571512 0.9005318544569916 0.06962168370321398 0.4291796829610897 -0.9005318544569916 -0.06962168370321398 -0.4291796829610897 0.9687461451792536 0.1712215384825853 0.1794828430797579 -0.9687461451792536 -0.1712215384825853 -0.1794828430797579 0.9791130567332587 0.2033130864589525 0.001187858993839574 -0.9791130567332587 -0.2033130864589525 -0.001187858993839574 0.9686723019472787 0.1863743052274754 -0.1641297955617317 -0.9686723019472787 -0.1863743052274754 0.1641297955617317 0.8915434616907393 0.08766106977177895 -0.4443712330506563 -0.8915434616907393 -0.08766106977177895 0.4443712330506563 0.6112206164766446 -0.06323622661557089 -0.788929995397142 -0.6112206164766446 0.06323622661557089 0.788929995397142 0.0002750988464171122 0.006169799816833397 0.9999809287635664 0.01160772079517966 0.03736020406176591 0.9992344449479333 -0.01160772079517966 -0.03736020406176591 -0.9992344449479333 -0.0002750988464171122 -0.006169799816833397 -0.9999809287635664 0.1460352483029513 -0.2495452139578195 -0.9572883016332339 -0.1460352483029513 0.2495452139578195 0.9572883016332339 0.4035889713133622 -0.4176632165417596 -0.8140475291911482 -0.4035889713133622 0.4176632165417596 0.8140475291911482 -0.1539794761670579 -0.2560725467089957 0.9543150275151743 0.1539794761670579 0.2560725467089957 -0.9543150275151743 -0.04016355133499785 0.03656675640650078 0.9985237911387334 0.04016355133499785 -0.03656675640650078 -0.9985237911387334 -0.01581688188725655 0.02996803041905136 0.9994257067937403 0.01581688188725655 -0.02996803041905136 -0.9994257067937403 0.1204495300448903 -0.4892020510285962 0.8638132112797188 -0.1204495300448903 0.4892020510285962 -0.8638132112797188 -0.2021770285378366 -0.8035482787212227 0.5598523134682673 -0.01676178295521105 -0.5244277323202428 0.8512899601226424 0.01676178295521105 0.5244277323202428 -0.8512899601226424 0.2021770285378366 0.8035482787212227 -0.5598523134682673 0.5094076716102441 -0.8208413594926837 0.2583085106047273 -0.5094076716102441 0.8208413594926837 -0.2583085106047273 -0.5295565658978195 -0.8482738252862873 -0.001166554189821187 0.5295565658978195 0.8482738252862873 0.001166554189821187 0.7825480196691753 -0.5713196341361541 -0.2474115449254199 -0.7825480196691753 0.5713196341361541 0.2474115449254199 -0.6977594807071145 -0.469882079092307 -0.5406870988207769 0.6977594807071145 0.469882079092307 0.5406870988207769 0.1539618074981693 -0.256072749908537 0.9543178236762513 -0.1539618074981693 0.256072749908537 -0.9543178236762513 0.04015046190472683 0.03655948831891245 0.9985245836846964 -0.04015046190472683 -0.03655948831891245 -0.9985245836846964 0.01581380495359327 0.029964143765137 0.9994258720191867 -0.01581380495359327 -0.029964143765137 -0.9994258720191867 -0.1204492571903401 -0.4892032475319197 0.8638125717113167 0.1204492571903401 0.4892032475319197 -0.8638125717113167 -0.4035754572775538 -0.4176660774932453 -0.8140527611860422 0.4035754572775538 0.4176660774932453 0.8140527611860422 -0.2840023630893594 -0.7144389413139534 -0.6394682610527728 0.2840023630893594 0.7144389413139534 0.6394682610527728 -0.5848906347871803 -0.5854977094664804 -0.5613335706580842 0.5848906347871803 0.5854977094664804 0.5613335706580842 -0.7969858988165718 -0.4526946244706833 -0.399851289935256 0.7969858988165718 0.4526946244706833 0.399851289935256 -0.9231956656843949 -0.3296026792501743 -0.1976659725209516 0.9231956656843949 0.3296026792501743 0.1976659725209516 -0.9966489268663521 0.08166372880846787 0.00468529329347788 0.9966489268663521 -0.08166372880846787 -0.00468529329347788 -0.964893075726331 0.04428042273650343 0.2588833648144611 0.964893075726331 -0.04428042273650343 -0.2588833648144611 -0.8090326429841972 -0.4292081262383663 0.401555185443987 0.8090326429841972 0.4292081262383663 -0.401555185443987 -0.5898902060140966 -0.5786579984570285 0.5631913224387896 0.5898902060140966 0.5786579984570285 -0.5631913224387896 -0.2853859383363251 -0.7146722102624251 0.6385910256795935 0.2853859383363251 0.7146722102624251 -0.6385910256795935 0.281985638696346 -0.4007104282647744 0.8717311811842428 -0.281985638696346 0.4007104282647744 -0.8717311811842428 0.446211320909524 -0.6853561749786278 0.5754844659161896 -0.446211320909524 0.6853561749786278 -0.5754844659161896 -0.5094030941587701 -0.8208446185389465 0.258307181234132 0.5094030941587701 0.8208446185389465 -0.258307181234132 0.8099979478262502 -0.5864296355143889 -0.001899238722307423 -0.8099979478262502 0.5864296355143889 0.001899238722307423 -0.7825487427006799 -0.5713246622280038 -0.2473976467706242 0.7825487427006799 0.5713246622280038 0.2473976467706242 0.7405771949884781 -0.4517623278846433 -0.497449713405532 -0.7405771949884781 0.4517623278846433 0.497449713405532 0.2853792354347278 -0.7146718252325069 0.6385944520597773 -0.2853792354347278 0.7146718252325069 -0.6385944520597773 0.5898824331376763 -0.5786633709007107 0.563193943729335 -0.5898824331376763 0.5786633709007107 -0.563193943729335 0.8090291310112718 -0.4292122029973183 0.4015579036369908 -0.8090291310112718 0.4292122029973183 -0.4015579036369908 0.9649001816587276 0.04427200365486803 0.2588583186365426 -0.9649001816587276 -0.04427200365486803 -0.2588583186365426 0.9966494201427686 0.08165806893666418 0.004679007011975113 -0.9966494201427686 -0.08165806893666418 -0.004679007011975113 0.9232036126395943 -0.3295966235877274 -0.1976389519522193 -0.9232036126395943 0.3295966235877274 0.1976389519522193 0.796980877440989 -0.4526998857070485 -0.3998553419353262 -0.796980877440989 0.4526998857070485 0.3998553419353262 0.5848829390569337 -0.5855014917679562 -0.561337644147995 -0.5848829390569337 0.5855014917679562 0.561337644147995 -0.2819860956836727 -0.4007056494994016 0.871733230008092 0.2819860956836727 0.4007056494994016 -0.871733230008092 0.2839962715560833 -0.714437751660903 -0.6394722955249566 -0.2839962715560833 0.714437751660903 0.6394722955249566 0.06967649649256183 -0.8034909282982834 -0.5912254341441046 -0.06967649649256183 0.8034909282982834 0.5912254341441046 0.03136787686568475 -0.8139973840788715 0.5800209608399454 -0.03136787686568475 0.8139973840788715 -0.5800209608399454 0.4112395355653548 -0.4067898810838509 0.8157230148989163 -0.4112395355653548 0.4067898810838509 -0.8157230148989163 0.4480839719870259 -0.2555058724445752 0.8567015251501929 -0.4480839719870259 0.2555058724445752 -0.8567015251501929 -0.4462089635647924 -0.6853539770439056 0.5754889112611429 0.4462089635647924 0.6853539770439056 -0.5754889112611429 0.7861148917546521 -0.5602688451774001 0.2610022951721959 -0.7861148917546521 0.5602688451774001 -0.2610022951721959 -0.8099959449369538 -0.5864324054839372 -0.001898152790002464 0.8099959449369538 0.5864324054839372 0.001898152790002464 0.8679852392884114 -0.4186456692010427 -0.267090673810694 -0.8679852392884114 0.4186456692010427 0.267090673810694 -0.7405681044240781 -0.4517599181591552 -0.4974654350349996 0.7405681044240781 0.4517599181591552 0.4974654350349996 -0.03136265652006765 -0.8139970210045682 0.5800217526711331 0.03136265652006765 0.8139970210045682 -0.5800217526711331 -0.4112244960213013 -0.4067936091788324 0.8157287376348134 0.4112244960213013 0.4067936091788324 -0.8157287376348134 -0.4480832331455037 -0.2555053323577675 0.8567020726662327 0.4480832331455037 0.2555053323577675 -0.8567020726662327 -0.06967019624810501 -0.8034906672085651 -0.5912265314272404 0.06967019624810501 0.8034906672085651 0.5912265314272404 -0.3815030890092033 -0.924214326544346 -0.01683067695064405 0.3815030890092033 0.924214326544346 0.01683067695064405 -0.7602024055534215 -0.6496822491888411 0.002297320117012182 0.7602024055534215 0.6496822491888411 -0.002297320117012182 -0.7235978029626576 -0.6767074108252281 0.1359165173252718 0.7235978029626576 0.6767074108252281 -0.1359165173252718 0.6996929648346212 -0.457255608955431 0.5489508748874855 -0.6996929648346212 0.457255608955431 -0.5489508748874855 -0.7861194615018242 -0.5602692741775224 0.260987610166985 0.7861194615018242 0.5602692741775224 -0.260987610166985 0.9154288715728126 -0.4024769486616665 -0.001512245655052878 -0.9154288715728126 0.4024769486616665 0.001512245655052878 -0.8679872702806583 -0.418643144329402 -0.2670880310622752 0.8679872702806583 0.418643144329402 0.2670880310622752 0.6401239958287761 -0.5616460253274669 -0.5242089394488227 -0.6401239958287761 0.5616460253274669 0.5242089394488227 0.3815100567366204 -0.9242114501319144 -0.01683068786129064 -0.3815100567366204 0.9242114501319144 0.01683068786129064 0.7236074502295418 -0.676699720026526 0.1359034469331913 -0.7236074502295418 0.676699720026526 -0.1359034469331913 0.7602217437119161 -0.6496596261772683 0.002295757571221962 -0.7602217437119161 0.6496596261772683 -0.002295757571221962 -0.6996930785508547 -0.4572560764512379 0.5489503405376914 0.6996930785508547 0.4572560764512379 -0.5489503405376914 -0.04331297926586832 -0.9656287363035919 -0.2562911029510049 0.04331297926586832 0.9656287363035919 0.2562911029510049 -0.06784976146030096 -0.9677646947856123 0.24254464619177 0.06784976146030096 0.9677646947856123 -0.24254464619177 0.6240702080260744 -0.5918291363616083 0.5101711955880744 -0.6240702080260744 0.5918291363616083 -0.5101711955880744 0.7594261707433901 -0.4193338100716575 0.4974244132738343 -0.7594261707433901 0.4193338100716575 -0.4974244132738343 0.8724739609286245 -0.410869274275227 0.26452906637658 -0.8724739609286245 0.410869274275227 -0.26452906637658 -0.9154312545832757 -0.4024715253698982 -0.001513075846592315 0.9154312545832757 0.4024715253698982 0.001513075846592315 0.8256770590776061 -0.5007123384848367 -0.2598933400493392 -0.8256770590776061 0.5007123384848367 0.2598933400493392 -0.6401183454754561 -0.5616481155677299 -0.5242135996566498 0.6401183454754561 0.5616481155677299 0.5242135996566498 0.06784620197388161 -0.9677652070871987 0.2425435977905633 -0.06784620197388161 0.9677652070871987 -0.2425435977905633 -0.6240708460233705 -0.5918260188339922 0.5101740316546712 0.6240708460233705 0.5918260188339922 -0.5101740316546712 -0.7594127775507094 -0.4193365193935109 0.4974425763800812 0.7594127775507094 0.4193365193935109 -0.4974425763800812 0.04331015943856095 -0.9656291961824468 -0.256289846793524 -0.04331015943856095 0.9656291961824468 0.256289846793524 0.05342527282932921 -0.9892348271926069 -0.1362358135452093 -0.05342527282932921 0.9892348271926069 0.1362358135452093 0.03602488255749498 -0.990151181161496 0.1352880123337349 -0.03602488255749498 0.990151181161496 -0.1352880123337349 -0.8724749547026995 -0.4108695217241122 0.2645254043276785 0.8724749547026995 0.4108695217241122 -0.2645254043276785 0.8774502952952402 -0.4796473008575407 -0.004409769423848663 -0.8774502952952402 0.4796473008575407 0.004409769423848663 -0.8256786698183741 -0.5007121985949208 -0.2598884922138749 0.8256786698183741 0.5007121985949208 0.2598884922138749 -0.03602431648454466 -0.990151257720754 0.1352876027425672 0.03602431648454466 0.990151257720754 -0.1352876027425672 -0.05342430309089553 -0.9892349472673335 -0.1362353219405603 0.05342430309089553 0.9892349472673335 0.1362353219405603 0.08071066687826572 -0.9967349708365165 0.002277314996621204 -0.08071066687826572 0.9967349708365165 -0.002277314996621204 0.8194403105675971 -0.5130260276504044 0.2555814397997763 -0.8194403105675971 0.5130260276504044 -0.2555814397997763 -0.8774528301994429 -0.4796426101341143 -0.004415576827767885 0.8774528301994429 0.4796426101341143 0.004415576827767885 -0.08070874464632695 -0.9967351266216002 0.00227725629573557 0.08070874464632695 0.9967351266216002 -0.00227725629573557 -0.8194362584182509 -0.5130304918091215 0.2555854707599559 0.8194362584182509 0.5130304918091215 -0.2555854707599559</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID257\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"1820\" source=\"#ID260\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"3640\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID260\">5.073201819573185 5.600716181436744 0.4431947293248177 5.627367762284371 0.445157753558425 5.77577947978994 19.42444920539856 -2.284081900119782 19.34477210044861 -2.21826593875885 19.51842546463013 -2.155384290218354 -0.3683005752163459 5.627980801831711 -4.998312028091073 5.601329220981368 -0.3702635976005759 5.776392519352418 -4.607146616344261 -15.34367856238688 -4.607434025537637 -15.26620563161423 0.02193692619318748 -15.26620484570936 7.160318775454673 13.4418102735027 7.148171802192096 13.3649303743631 2.559466077564319 13.86992800761164 19.29153442382813 -2.119765305519104 -19.34477210044861 -2.21826593875885 -19.42444920539856 -2.284081900119782 -19.51842546463013 -2.155384290218354 0.02193411607899051 -12.19211046583441 -4.607436835651924 -12.19211078958473 0.02169050847536717 -12.101223714757 -7.086038837485496 13.44907359354734 -2.485181750245635 13.87719133378585 -7.073891875480463 13.37219369330701 4.532241269596551 -15.34350658550807 -0.09684663643765332 -15.26603286882992 4.532528678519042 -15.2660336547348 18.12293612293303 -5.740417639581398 18.05022071995145 -5.579453161455872 18.14224321801971 -5.607051071422144 20.0461661021292 -2.185631356216326 20.13818591144634 -2.158032923472155 20.19435282629705 -2.280338623817249 0.02244777560490949 -9.667085073012048 -4.606923132412025 -9.667085343404384 0.02216065455198159 -9.518654281630893 19.27285671234131 -2.003576270739238 -19.29153442382813 -2.119765305519104 0.02160569789400608 -7.995839269942864 -4.607765191921811 -7.995839779454807 0.02144316053642897 -7.888805077286571 4.532531488597545 -12.19198653582923 -0.09684382635923963 -12.19198621207891 -0.09660021898521853 -12.10109946100112 -4.607520677691383 -12.1909112318562 -4.607763879512159 -12.1000356436168 0.02160701030363091 -12.10003499619338 -20.12290056046157 -2.126596506239412 -20.03088058233253 -2.154194590658596 -20.17906587605502 -2.24890066294136 4.532017785128885 -9.666995670709737 -0.09735748611396007 -9.666995400317401 -0.09707036533164624 -9.518564608935924 -18.15759742904709 -5.575369671827158 -18.06557476219196 -5.547772110150985 -18.13829200069284 -5.708734556878697 17.99357612869964 -5.702260793229072 18.04974735518383 -5.579956091177736 18.12245655089196 -5.740922304536536 20.06549735998501 -2.318743424592642 20.04618550119356 -2.18537728325909 20.19437439105596 -2.280082453791246 19.35041664390355 -0.1672801767393221 19.27009759898836 -0.05361967781094949 19.44672188351816 -0.06496179150935104 19.61243033409119 -2.284081900119782 19.69209432601929 -2.218266407648723 4.606925059893758 8.983872029657613 -0.02244584812317223 8.983872353355501 4.606681792005382 9.074743737995473 19.29153442382813 -1.887388408184052 -19.27285671234131 -2.003576270739238 0.02153183676538729 -4.006987150812811 -4.607839118610364 -4.006987623436984 0.02147472689993803 -3.889872771067557 4.532859843554559 -7.995769383157321 -0.09651540948718468 -7.995768873645379 -0.09635287228280043 -7.888734680988943 -4.607675526484326 -7.997752646212891 -4.607838376214422 -7.890711847908215 0.02153257916132211 -7.89071133836483 4.532858531161661 -12.099911581594 4.532615329570105 -12.19078716983378 -0.09651672188005642 -12.09991093417058 14.31034454902532 -6.891321912716821 14.3219313136851 -6.704624404125912 14.39066722400534 -6.77766275692727 -19.23235905354456 -0.03176419670807103 -19.31267478578086 -0.1454239941680635 -19.40898110949886 -0.04310624040735855 -20.03089757299971 -2.153942386636512 -20.05020776466498 -2.287306844929085 -20.17908503223773 -2.248646362017625 -19.61243033409119 -2.284081900119782 -19.69209432601929 -2.218266407648723 0.09735555865652508 8.983748252347926 -4.532019712586315 8.983747928650038 -4.531776444927222 9.074619636988276 -18.06510549529732 -5.548274579009042 -18.00893586832819 -5.670577737512788 -18.13781652703782 -5.709238760892301 -4.761454164981842 -15.36620406725101 -5.124302506446838 -15.36620406725101 -4.761454164981842 -15.25769683390061 4.761454164981842 14.03119791667768 5.124302506446838 14.03119791667768 4.761454164981842 13.92269336851347 5.124302506446838 9.051208503106006 4.761454164981842 8.923895314410608 4.761454164981842 9.051208503106006 19.27005375162924 -0.05399533286574425 19.338784861109 0.01904098857144973 19.44667808279935 -0.06533699708664376 4.606619735267406 9.075917602756913 -0.02250765383615134 8.985038304927638 -0.02275121646351726 9.075917602756913 19.74531054496765 -2.119765305519104 19.34477210044861 -1.788889181613922 -19.29153442382813 -1.887388408184052 0.02139500721034665 -0.08559919136399398 -4.607975889885002 -0.0855991913639942 0.02145203981830667 0.0315140254419601 4.532933771225495 -4.006965017630068 -0.09644154737612184 -4.006964545005895 -0.09638443756449916 -3.889850165260626 0.02139500721034668 -3.887985410722442 -4.607918915518152 -4.00509837419036 -4.607975889885002 -3.887985410722442 4.532933028839068 -7.890641320673163 4.532770179262458 -7.997682118977982 -0.09644228976254241 -7.890640811129774 7.300735343715204 -6.876981630525356 7.208677959532405 -6.957488130201455 7.270102437898879 -6.772688577984919 -14.36005071717713 -6.682371106887645 -14.34846803919266 -6.869067463427804 -14.4287874013639 -6.755409008992634 8.984437848452524 -7.798264015179135 8.940569602336625 -7.697642087810905 9.029006040665307 -7.61466168380332 -4.686544239521028 9.051208503106002 -4.686544239521028 8.923895314410604 -5.049393773078919 9.051208503106002 -19.301046610831 0.04089217765845121 -19.23231472762878 -0.03214369318521712 -19.40893683022086 -0.04348528743434973 -4.686544239521027 14.03119791667768 -4.686544239521027 13.92269336851347 -5.049393773078919 14.03119791667768 -19.74531054496765 -2.119765305519104 0.0976609259876836 9.075793361768964 0.09741736358987754 8.984914063939309 -4.531714388969109 9.075793361768964 4.686544239521027 -15.36620406725101 4.686544239521027 -15.25769683390061 5.049393773078919 -15.36620406725101 -5.124302506446838 -15.25769683390061 5.124302506446838 13.92269336851347 5.124302506446838 8.923895314410608 5.124302506446838 3.967442294660724 4.761454164981842 3.967442294660724 5.124302506446838 4.117387341176849 18.10363545293048 -0.2809333171421746 17.98922406407012 -0.20204778396656 18.16032542044089 -0.1377736016281496 4.606619735267406 4.018951594910801 -0.02275121646351722 4.018951594910799 4.60645699692999 4.125982852127443 4.606508922688092 4.124733668805059 -0.02269943066667871 4.017706157806399 -0.02286199261143391 4.124734178285195 19.76400971412659 -2.003576270739238 19.42444920539856 -1.723072868585587 -19.34477210044861 -1.788889181613922 0.02153152266195754 4.201206879020086 -4.607839432713795 4.201206879020086 0.02169430386568268 4.30823977692898 4.533070541424439 -0.08562176681403434 -0.09630471889683018 -0.08562176681403434 -0.09636175145103647 0.03149144999193612 0.02153152266195751 0.02957013340985924 -4.607896483955441 -0.08754120186105191 -4.607839432713794 0.02957013340985924 4.533070541424439 -3.887962858276884 4.533013567111289 -4.005075821744817 -0.09630471889683018 -3.887962858276884 1.476583962944563 -3.961951133663058 1.378933579597579 -3.998762427310236 1.470855877273663 -3.844924883029417 -7.270340430197083 -6.946251903039824 -7.362393703741029 -6.865745530157424 -7.331759894273065 -6.761452641873312 2.874643384624575 -6.344012562412311 2.854840250265239 -6.200825300641612 2.951799341928625 -6.162900036422522 -8.997852944453967 -7.682148384603612 -9.041722306212098 -7.782770010969236 -9.086285293693118 -7.599168228825396 -4.761454164981842 -9.669378941447398 -5.124302506446838 -9.669378941447398 -4.761454164981842 -9.563003705794053 -4.686544239521027 3.967442294660724 -5.049393773078919 3.967442294660724 -5.049393773078919 4.117387341176849 -4.686544239521027 8.923895314410608 -5.049393773078919 8.923895314410608 -5.049393773078919 9.051208503106006 -17.94074922257743 -0.190250879566312 -18.05515731857771 -0.2691362702345684 -18.11184834142092 -0.1259768133397359 -5.049393773078919 13.92269336851347 -19.76400971412659 -2.003576270739238 0.09760914084168518 4.017635746807368 -4.531603575892205 4.124663257806173 0.09777170263322435 4.124663767286307 0.09766092598768356 4.018881109642489 -4.531714388969109 4.018881109642489 -4.531551650785075 4.125912366859277 5.049393773078919 -15.25769683390061 -20.15883989174207 -1.446384394925267 -20.01064744910403 -1.541089938928572 -20.13952805939735 -1.579751062190041 -18.12105498306678 2.003518467207123 -18.04834926118542 1.842551710623711 -18.17722596699716 1.881213352405044 -14.34379104229491 2.928736016400822 -14.35537490132199 2.742038852078833 -14.4516825406131 2.844355839528841 -11.60635441085664 1.474098297344885 -11.68030642612911 1.293021679652002 -11.73699900134571 1.436180756113591 4.761454164981842 4.117387341176849 17.98957291257794 -0.2027690231414206 18.03003106852359 -0.1005792818805556 18.16067509038074 -0.1384961940455248 4.606508164012554 -0.1524014195865267 -0.02286275128697907 -0.1524009469552575 4.606451053037286 -0.03528480902880758 4.606435462909619 -0.034902986115325 -0.0228783266660047 -0.1520194848137105 -0.02293546331610938 -0.034902986115325 19.74531054496765 -1.887388408184052 19.51842546463013 -1.699962810675303 -19.42444920539856 -1.723072868585587 0.02160463890589585 9.199395637636078 -4.607766250909928 9.19939563763608 0.02184789283266063 9.290282643961225 4.532934085324899 4.201136376263897 -0.09644123327671748 4.201136376263896 -0.09660401432701996 4.308169274172933 0.0216046389058958 4.310373838309889 -4.607928850863339 4.20333433420841 -4.607766250909929 4.310373838309889 4.532934085324899 0.02954755022149495 4.532991136512775 -0.08756378504943213 -0.09644123327671744 0.02954755022149517 2.080673221082074 -0.1580516116257338 1.980713114162307 -0.1479506138575482 2.086947185949026 -0.04104431478021404 -1.450480747367893 -3.996593703793443 -1.548127087929501 -3.959782412325525 -1.542398773543374 -3.842756168619942 1.478128977262679 -3.84748367689357 1.386215277362713 -4.001324400253703 1.378169148335766 -3.837380976808661 -2.924515073702726 -6.194855306154077 -2.944318956763954 -6.338042503843924 -3.021470103146817 -6.156930058907749 -4.761454164981842 -6.551386285397905 -5.124302506446838 -6.551386285397905 -4.761454164981842 -6.407354064951116 5.049393773078919 -9.669378941447398 4.686544239521028 -9.669378941447398 4.686544239521028 -9.563003705794051 -5.124302506446838 -9.563003705794053 11.72913812660912 1.281032594197831 11.65518784529848 1.462109071704529 11.78583115406787 1.424191559828298 -4.686544239521027 4.117387341176849 14.3933440379706 2.719888654750523 14.38176193015808 2.906585325303857 14.48965214181703 2.82220537159695 -17.98155911242234 -0.08878543203838715 -17.94110020337961 -0.190974988782554 -18.11220014362858 -0.126702275739503 18.0636678162378 1.810931733780058 18.13637432502825 1.971897619722236 18.19254462341883 1.849593166447284 -19.74531054496765 -1.887388408184052 0.09784517307933045 -0.03492560211400781 0.09778803648307755 -0.1520421008124095 -4.53153011637229 -0.03492560211400803 0.09777246129926198 -0.1524235527697383 -4.531602817226173 -0.1524240254010073 -4.531545706304733 -0.03530741484327198 20.1242406419332 -1.61126473379213 19.99535993028215 -1.572603819630105 20.14355175979657 -1.477898787843594 -20.06678079509166 -1.418435288422712 -20.01061269560492 -1.540741450105125 -20.15880298935821 -1.44603382526822 -18.0295444399364 1.975363959042047 -18.04885248059514 1.84199695203714 -18.12156445860097 2.002961959819854 -14.2732883668018 2.856238288911769 -14.35361304282905 2.742579638298572 -14.34201654549573 2.929276317082448 -11.60456866809315 1.473918969118328 -11.564113636159 1.371728462482041 -11.67852720339388 1.292843999359143 -10.47625515972126 -0.7799536673345897 -10.46288497898667 -0.896597041693023 -10.59409434988142 -0.9332878993617697 5.124302506446838 -0.1810681453366635 4.761454164981842 -0.1810681453366635 5.124302506446838 -0.01700151890789119 17.50400202822861 -1.423449115347078 17.37279351621073 -1.386758260035087 17.52273216033082 -1.260045454950131 17.37279144816011 -1.386756484877176 17.38616170783077 -1.270113116118066 17.52273008947194 -1.260043677735799 4.606435462909618 -3.94017376343256 -0.02293546331610935 -3.94017376343256 4.606492588632147 -3.823058781002435 4.606507842214324 -3.823420031241192 -0.02292019528997866 -3.940535367002381 -0.02286307308520944 -3.823420031241192 19.69209432601929 -1.788889181613922 19.61243033409119 -1.723072868585587 -19.51842546463013 -1.699962810675303 0.02193292519788623 14.07047703510907 -4.607438026533037 14.07047703510907 0.02222024578093109 14.14793264486438 4.532860902529158 9.199271564634241 -0.09651435051259227 9.199271564634238 -0.09675760421008815 9.290158570959765 0.02193292519788632 9.288725747574326 -4.607681567292359 9.197849735409813 -4.607438026533037 9.288725747574327 4.532860902529158 4.310303418401068 4.533023502329318 4.203263914299446 -0.0965143505125923 4.310303418401068 5.690845502269881 3.381911180032327 5.596674513402085 3.442216463478121 5.717702102938485 3.486845033176731 -2.051536016508506 -0.1503033752320826 -2.151492172878935 -0.1604043722975538 -2.157766383052216 -0.0433970835920991 2.081993036838842 -0.03794822347858934 1.975763000973912 -0.1448570043827798 1.984559679438029 0.01905964840697018 -1.457754229520732 -3.999150084251062 -1.549663657648365 -3.845309370045329 -1.449707779298342 -3.835206670561589 -4.761454164981842 -4.040416392011158 -5.124302506446838 -4.040416392011158 -4.761454164981842 -3.876350825242172 5.049393773078919 -6.551386285397908 4.686544239521027 -6.551386285397908 4.686544239521027 -6.407354064951118 -5.124302506446838 -6.407354064951116 5.049393773078919 -9.563003705794051 -18.07388425457883 -4.474188075370972 -18.12550441956021 -4.572507413312393 -18.21523613450942 -4.463290371653764 10.51541013065442 -0.9003298494342281 10.52878043479375 -0.7836864838295137 10.64661821288263 -0.9370207043494412 11.61295282063542 1.35974183626907 11.65340817536358 1.461932263824594 11.72736497661217 1.280857434191407 -4.686544239521027 -0.181068145336663 -5.049393773078919 -0.181068145336663 -5.049393773078919 -0.01700151890789076 14.39159014935171 2.720431276678623 14.31126689317316 2.834089626742285 14.37999540352754 2.907127461777244 -17.32066854671092 -1.383087478227263 -17.45187405187674 -1.419778327114212 -17.47060458735927 -1.256374695331356 18.06416692096803 1.810377423968519 18.04485959465632 1.943743709634421 18.13687968566132 1.971341561143569 -19.69209432601929 -1.788889181613922 0.09777278309345966 -3.823397420735158 0.09782990524439074 -3.940512756496364 -4.531602495431977 -3.823397420735158 0.09784517307933047 -3.940151151465963 -4.53153011637229 -3.940151151465963 -4.531587242040977 -3.823036169035822 -17.33403701575904 -1.266442347839805 -17.32066646814052 -1.383085696173078 -17.47060250598066 -1.256372911220834 19.99532756972705 -1.572257179571142 20.05149498381842 -1.449951679461248 20.14351725043284 -1.477550067022098 -4.578089119545712 -15.45302547447942 -6.042443522549657 -15.45302547447942 -4.581164235491041 -15.37558999088647 4.565359965689587 14.15486206179388 6.044720666041248 14.15486284728921 4.568480903247499 14.07742950375024 6.047416248517195 9.152503540541604 4.55801373756888 9.061655984129738 4.555339560991968 9.152503540541604 4.549805518930956 4.062372985938772 4.548003588686205 4.169394932529762 6.048578524753239 4.16939544198341 6.049316921622414 -0.02143661639989597 4.546392706834692 -0.1385521722146575 4.545758292856145 -0.02143661639989597 -10.47625096160975 -0.7799554999894198 -10.59409015588215 -0.9332897300608669 -10.61282016940071 -0.7698860612522147 4.761454164981842 -0.01700151890789119 17.50589387807564 -2.286747502342873 17.63362708011275 -2.088157985538652 17.6424661795315 -2.276711018057561 18.33222329356584 -2.53750280138788 18.31763141763591 -2.420951718121649 18.45869955379253 -2.338416052996688 4.606507842214324 -7.813859075424752 -0.02286307308520943 -7.813859075424753 4.606670443487124 -7.706829759908492 4.606618118893985 -7.705705445333536 -0.02291553909568638 -7.812730975322972 -0.02275283283692284 -7.705704681111107 -19.61243033409119 -1.723072868585587 -0.02212474982177109 -15.16260858599943 4.607246132715756 -15.16260858599943 -0.02241169795092981 -15.24008567857359 -0.09684263549329919 14.07030507281433 -0.09712995580554193 14.14776068257027 4.532532679463495 14.07030507281434 -4.607533062650705 14.07088580756522 -4.607246132715755 14.14835842472385 0.02212474982177103 14.14835842472385 4.532532679463494 9.288601513246206 4.532776219993277 9.197725501081312 -0.0968426354932992 9.288601513246205 17.33542141828752 0.1877632006411207 17.26381917608259 0.4331881399150761 17.41208157884864 0.2557460918948759 -5.661727513750998 3.431888070435921 -5.755894392243127 3.371582867353965 -5.782751875781377 3.476516580661745 8.15684694074397 -0.8273037683524903 8.034301206339869 -0.8692903517736603 8.052832203414228 -0.589163423036165 -2.046592066139235 -0.147211950632897 -2.152818396643546 -0.04030317718012921 -2.055389088607163 0.01670469073204583 -4.761454164981842 -0.07917014712386801 -5.124302506446838 -0.07917014712386801 -4.761454164981842 0.08489251226380006 5.049393773078919 -4.040416392011159 4.686544239521027 -4.040416392011159 4.686544239521027 -3.876350825242173 -5.124302506446838 -3.876350825242172 5.049393773078919 -6.407354064951118 5.049393773078919 -6.551386285397907 -14.05781573420595 -5.024120918143106 -14.15256219722485 -4.945567930657166 -14.03167809162006 -4.881563909785387 18.07737601006223 -4.58810494037262 18.02575544117672 -4.489785733663947 18.16710612556526 -4.478888044492561 -18.32662568061224 -5.158126311317372 -18.2474307438047 -5.246695942853649 -18.38865139039027 -5.234791804229245 -4.47089225317745 -0.02168761765281581 -4.471526665899239 -0.1388031734717903 -5.974453860459585 -0.02168761765281603 10.64661403173349 -0.9370225280908811 10.52877624953241 -0.7836883095266434 10.66534421812733 -0.7736188715451156 -4.473138411666099 4.168614706137857 -4.47494033547283 4.061592759479787 -5.97371870907645 4.168615215591504 -4.686544239521027 -0.01700151890789119 -4.686544239521027 -0.1810681453366635 -5.049393773078919 -0.01700151890789119 -4.480472602474462 9.151139574630145 -4.48314677371307 9.060292018121034 -5.972552268551757 9.151139574630147 -4.490490482628745 14.15299466769471 -4.493611421443417 14.07556210968241 -5.969850587262583 14.15299545319003 0.09782524844617796 -7.812660500675886 -4.531712772616011 -7.705634970686305 0.09766254234076646 -7.705634206463876 0.09777278309345971 -7.81378864823879 -4.531602495431977 -7.813788648238789 -4.531765096551524 -7.706759332722385 -18.27099170851211 -2.424541269168228 -18.28558383583374 -2.541092332957057 -18.41205705831794 -2.342005617836192 -17.58211691113504 -2.08964165825829 -17.45438678647546 -2.288231169383394 -17.59095619641875 -2.278194685385098 4.503218956355878 -15.4511854490245 4.506294071050191 -15.3737499654008 5.967573955087233 -15.4511854490245 -6.052265975289288 -15.44533751292056 -6.040289554249846 -15.36844913382241 -4.590939939674025 -15.36844991378953 6.054374605847429 14.13759094877424 6.042443522549659 14.06069895433972 4.578089119545712 14.06069895433972 6.044729634492048 9.015892673164469 4.565368934140106 9.015892350621446 6.054800970515214 9.10643985359448 6.047416248517195 4.018835421644788 4.555339560991967 4.018835421644788 6.054127345178423 4.125729724018402 6.048580889190117 -0.1514151321723878 4.548005953123063 -0.1514156047510027 6.050931677955227 -0.03431204161438601 6.049316921622414 -3.941649049601756 4.545758292856146 -3.941649049601756 6.046967637963183 -3.824547103426327 -10.74851442354966 -3.063015151465335 -10.76209685333605 -3.17964171456935 -10.8986662170669 -3.169573584757068 5.124302506446838 -2.786634471021795 4.761454164981842 -2.786634471021795 5.124302506446838 -2.597953268488039 4.761454164981842 -2.786634471021796 4.761454164981842 -2.597953268488039 18.28037174991929 -2.387247902897864 18.39200537588947 -2.048791391975406 18.42147391942475 -2.304748247562976 20.10342244761315 -2.175557580146113 20.05365622757925 -2.075945265886892 20.19968243591717 -1.834191666765926 4.606616114702037 -11.97692069766911 -0.02275483702880937 -11.97691972658449 4.606859648237528 -11.88604805585828 4.606923857897373 -11.88698878740255 -0.02269036658132474 -11.9778686798956 -0.02244705011956558 -11.88698878740255 0.09703446105603143 -15.16243689422908 0.09732140891473909 -15.23991398680386 -4.532340784707429 -15.16243689422908 4.607210949986045 -15.16254006450116 4.606923857897373 -15.24001089111221 -0.02244705011956553 -15.24001089111221 4.532627714371946 14.07071411677103 -0.09703446105603136 14.14818673393028 4.532340784707429 14.14818673393028 19.07599919846098 -0.7697091863383988 19.01577470375694 -0.4089749355334092 19.16980963613103 -0.7461299621495905 -17.28428507404853 0.4188681793839473 -17.35588528201159 0.173443868592124 -17.43254569204425 0.2414265857558596 15.30183050588967 -0.1829166560228486 15.36758095112323 0.0005554223524328328 15.4576363544048 -0.3563128009267357 -8.093886708506606 -0.8717388436542277 -8.216429222122992 -0.8297522633635218 -8.112418215758909 -0.5916119358026275 -4.761454164981842 -0.5396528051985078 -5.124302506446838 -0.5396528051985078 -4.761454164981842 -0.2591468229856518 5.049393773078919 -0.07917014712386801 4.686544239521027 -0.07917014712386801 4.686544239521027 0.08489251226380006 -4.761454164981842 0.08489251226379962 -5.124302506446838 -0.07917014712386845 -5.124302506446838 0.08489251226379962 5.049393773078919 -3.876350825242173 -10.78873572164456 -3.716033258499089 -10.88638676771986 -3.679221155967225 -10.7806966594359 -3.552089620514495 14.08771776632497 -4.952904215484902 13.99297305853906 -5.031457179754451 13.96683504462481 -4.88890021352956 -12.81873064085446 -6.323475727819551 -12.9375202801542 -6.389862228958428 -12.91489197283081 -6.28431188256751 18.20050519762579 -5.270138353211265 18.27969847953496 -5.181568988507997 18.34172465062959 -5.258234250450363 -4.590931001276149 -12.26650784736685 -6.040280615852252 -12.26650752373431 -4.593497191052654 -12.17565448283994 -4.470892253177451 -3.941391387470278 -5.974453860459587 -3.941391387470278 -5.972106958364483 -3.824289449247038 -4.473140775797431 -0.1516729526775121 -5.9737210732078 -0.151672480098929 -5.976069481400151 -0.03456939748639857 10.81373574963085 -3.175913325044117 10.80015319868049 -3.059286770672568 10.95030387416685 -3.165845195985691 -4.480472602474462 4.018075057372399 -5.972552268551757 4.018075057372399 -5.979265751594065 4.12496938406762 -4.686544239521027 -2.786634471021795 -5.049393773078919 -2.786634471021795 -5.049393773078919 -2.597953268488039 -4.490499449948416 9.014558288891497 -5.969859554582534 9.014558611434746 -5.979934463855106 9.105105856089267 -4.503218956355878 14.05885938239087 -5.967573955087233 14.05885938239087 -5.979503848171558 14.13575134744592 0.09735676063776333 -11.88686467278167 0.09760007687019463 -11.9777445652751 -4.532018510605086 -11.88686467278167 0.09766454650745335 -11.97679549132519 -4.531710768449262 -11.9767964624098 -4.531954301755221 -11.88592382059859 -20.02712261024925 -2.084116209692205 -20.07688910636322 -2.183728438594344 -20.17314666844703 -1.842362817728177 -18.34511534970802 -2.052109752869381 -18.23348502442543 -2.390566215450448 -18.3745844063478 -2.3080665718989 -4.686544239521027 -2.597953268488039 4.516068559031519 -15.36663923555123 5.965418769344401 -15.36663845558411 5.977395191618864 -15.44352683456322 2.185710194233277 -16.01687443923805 1.05048369056491 -16.01687443923805 2.159981592288677 -15.94210187928404 -2.042807883044052 14.68327279064717 -0.8655783579390752 14.68327279064717 -2.017823314231195 14.60834501656992 -1.929195131025891 9.366593011213197 -0.7162983972724596 9.366593011213197 -1.90850667468732 9.277168800803024 -0.6197144075065175 4.230907494019563 -1.842862539746875 4.12441831375727 -1.85645403696691 4.230907494019562 -0.5869599132875225 -0.005214870768700249 -1.827330744080122 -0.1222727230226611 -1.83208928020407 -0.005214870768700249 -0.6197144075065186 -3.854197644495329 -1.86123801091954 -3.971253691573725 -1.856454036966911 -3.854197644495329 6.048581882468827 -3.836912484706731 4.547374048342753 -3.954026417459464 4.548006946401772 -3.836912484706731 -11.7137872856193 -2.243317102395549 -11.57251851853729 -2.32564098050423 -11.72306161508688 -2.431857197353134 5.124302506446838 -3.602498390950017 4.761454164981843 -3.602498390950017 5.124302506446838 -3.345493890250985 4.761454164981842 -3.602498390950017 4.761454164981842 -3.345493890250985 20.08457897251528 -2.055865244857796 20.13921180576704 -1.64537909675398 20.23002554166368 -1.813895503225645 20.19759135237859 -1.625547247119456 20.11925692071081 -1.558760504617163 20.23791939035629 -1.214038421584816 -4.532305602423171 -15.16236827270183 0.09735676063776333 -15.23983909931349 -4.532018510605086 -15.23983909931349 19.73845055727641 -1.17193752314016 19.79020798968127 -0.76894620653525 19.83229447363586 -1.195428257387685 -19.02053244237188 -0.4206978926875721 -19.08075641956122 -0.7814315195013426 -19.17456687379724 -0.7578523360994263 19.04361459444834 -0.7224069564248532 18.88785007816897 -0.3857440386864083 19.08194556589112 -0.3184879843938077 -15.40033074449994 -0.006736022598707869 -15.33457975263204 -0.1902079797442773 -15.49038327259916 -0.3636040100761548 -4.761454164981842 3.090177455198686 -5.124302506446838 3.090177455198686 -4.761454164981842 3.280801018765249 5.049393773078919 -0.5396528051985071 4.686544239521027 -0.5396528051985071 4.686544239521027 -0.2591468229856512 -4.761454164981842 -0.2591468229856516 -5.124302506446838 -0.5396528051985076 -5.124302506446838 -0.2591468229856516 5.049393773078919 0.08489251226380006 4.686544239521026 0.08489251226380006 -11.29117332810071 -0.454513021491851 -11.39113452772774 -0.4646142400789053 -11.29997668616337 -0.2905965906201609 10.81518807001345 -3.681376184324148 10.71753875656982 -3.718188285918735 10.70949955680639 -3.554244652108326 -10.89147854209262 -3.676377657350613 -10.88574355741903 -3.559351615817855 -10.78578256268175 -3.54924914255366 12.86981854023901 -6.398820626364874 12.75103029931516 -6.332434154458914 12.84718988258773 -6.293270326452451 -4.601412393244298 -8.039100679945284 -6.038042127694073 -8.039100170441028 -4.603106545398308 -7.9320681020255 5.96540983205286 -12.2651987737772 4.516059621739696 -12.26519909740974 4.518625810461399 -12.17434573286439 -4.601416592951921 -12.13911900106356 -6.048232252107009 -12.22965381964346 -6.038046327401609 -12.13911835606558 1.924939184056606 -3.851183110382057 1.929725371978757 -3.968239063933166 0.6882050009732821 -3.851183110382057 -4.473141768941632 -3.836662058552371 -4.472508873143861 -3.953775991312667 -5.973722066352004 -3.836662058552371 1.900598898150354 -0.008223471781617087 1.895838164574524 -0.1252812312231929 0.6554722561226023 -0.008223471781616651 11.62146684899884 -2.32414813217465 11.76273441895258 -2.241824255053962 11.77200882275109 -2.430364347748823 1.924939184056609 4.221911285269113 1.911349764665274 4.115421823402338 0.6882050009732854 4.221911285269113 1.997501705891769 9.350362567447537 1.976816557807729 9.260937569313592 0.7846033412747 9.350362567447537 2.110902209731034 14.65994240190167 2.085916671400111 14.58501497532099 0.9336694325431627 14.65994240190167 -20.10569296408427 -1.568586693562604 -20.18402750885082 -1.63537335397261 -20.2243540948804 -1.223865034252437 -20.11354165442537 -1.653906723464462 -20.05891140086225 -2.064392488687762 -20.20435586164081 -1.822422972752629 -4.686544239521027 -3.345493890250986 -4.686544239521027 -3.602498390950018 -5.049393773078919 -3.345493890250986 -4.686544239521027 -3.602498390950018 -5.049393773078919 -3.602498390950018 -5.049393773078919 -3.345493890250986 -2.25358504465243 -15.99313969485531 -2.227856382409962 -15.91836714774108 -1.118360160867006 -15.99313969485531 1.231427929331768 -16.0832287152018 1.246773391632617 -16.00107993467809 2.340082606993026 -16.00107993467809 -1.034247302142608 14.87185567604342 -1.050483690564911 14.78982451832558 -2.185710194233279 14.78982451832558 -0.8511274640230193 10.0002774869243 -0.8655783579390763 9.906600297514103 -2.042807883044055 9.906600297514103 -0.7162983972724579 4.665798678485239 -1.929195131025889 4.665798678485239 -0.7062726610036019 4.773879846168242 -0.6197144075065142 0.06833696570131506 -1.856454036966908 0.06833696570131506 -0.616109874675348 0.1855695620024668 -0.5869599132875247 -4.15662371771603 -1.832089280204071 -4.15662371771603 -0.5905923369997634 -4.039392815958605 -0.6197144075065186 -8.422888053040696 -1.856454036966911 -8.422888053040696 -0.6299763984947571 -8.31482231769256 6.048581882468826 -7.819029137943104 4.548006946401772 -7.819029137943104 6.041885497235486 -7.712135992901121 -13.82931939188191 -4.351686699235466 -13.87428264295881 -4.452702424119747 -14.01357613905352 -4.36832128794176 -14.25778268796201 -2.245020409864408 -14.10584671119727 -2.484509922961849 -14.29015892645264 -2.500759784520114 5.124302506446838 -7.881537941745776 4.761454164981842 -7.881537941745776 5.124302506446838 -7.6985038665113 5.124302506446839 -7.6985038665113 4.761454164981843 -7.881537941745776 4.761454164981843 -7.6985038665113 20.03028076532722 -1.381016395343589 19.99503835597511 -0.9541505383688793 20.14462771188116 -1.03539290335758 -19.78593216233073 -0.7795111928942626 -19.73417519782671 -1.182501940266683 -19.8280191276076 -1.205992641333124 -18.89416258523788 -0.3970288842616265 -19.04992644933156 -0.7336912628382923 -19.08825813327001 -0.3297729376788208 -4.761454164981843 13.44225764041227 -5.124302506446838 13.44225764041227 -4.761454164981843 13.60910229782351 5.049393773078919 3.090177455198686 4.686544239521027 3.090177455198686 4.686544239521027 3.280801018765249 -5.124302506446838 3.280801018765249 5.049393773078919 -0.2591468229856516 5.049393773078919 -0.5396528051985076 4.686544239521027 -0.2591468229856516 -10.82821208961962 -0.7633832521201768 -10.92584966841327 -0.8201757145988158 -10.83756654817415 -0.4829738130488148 11.32068449710185 -0.4622790885886125 11.22072499057226 -0.4521778703036782 11.2295284961436 -0.2882614443346122 -11.38443577435428 -0.4663621754053626 -11.39070290132402 -0.3493546517843862 -11.29326723914596 -0.292347992818163 10.81455182094506 -3.561505136271076 10.82028690372956 -3.678531174828386 10.71459251931607 -3.55140266326374 -4.609014189964251 -4.018059215745196 -6.037142939433112 -4.018058743132294 -4.609602044500985 -3.900947156736948 5.963173779386009 -8.038366688508372 4.526541066212165 -8.038367198012628 4.528235214853508 -7.931334620058437 -4.609016585596063 -7.892475152040531 -6.043968290687342 -7.999373371679192 -6.037145335064903 -7.892474643173437 5.973361525504735 -12.22836178285181 4.526545265390071 -12.13782700560199 5.963177978563827 -12.1378263606043 2.34008260699303 -12.48192391564776 1.246773391632622 -12.48192391564776 2.317592736484473 -12.39277309291505 1.924939184056607 -8.412837673600276 0.6882050009732832 -8.412837673600276 0.6984619795776459 -8.304772637004039 1.900598898150355 -4.153472972138632 0.6554722561226023 -4.153472972138633 0.6591052055856272 -4.036242044737321 -4.473141768941632 -7.8182614765414 -5.973722066352004 -7.8182614765414 -5.967023291911748 -7.711368307083891 1.924939184056606 0.06517660569296027 0.6882050009732821 0.06517660569295983 0.6845999623521182 0.1824092280948905 13.91450185915773 -4.441606057501248 13.86953836477013 -4.34059039963825 14.05379419500759 -4.357224977307931 1.997501705891766 4.655622716512228 0.7846033412746978 4.655622716512228 0.7745824634076259 4.763703169927634 2.110902209731027 9.889210826905524 0.9336694325431572 9.88921082690552 0.9192168054866379 9.982888422541976 2.253585044652428 14.76591122104986 1.118360160867005 14.76591122104986 1.102120059458066 14.84794372060561 -19.98558194520679 -0.9649112159111604 -20.02082543129274 -1.391776445368014 -20.13517140592633 -1.046153461468818 -4.686544239521026 -7.6985038665113 -4.686544239521026 -7.881537941745776 -5.049393773078918 -7.6985038665113 -4.686544239521027 -7.881537941745776 -5.049393773078919 -7.881537941745776 -5.049393773078919 -7.6985038665113 14.14487273506835 -2.48144691508517 14.29680762871678 -2.241957414090741 14.32918403217292 -2.497696775822221 -2.40765094405234 -15.97667295900939 -1.314340653278554 -15.97667295900938 -1.298997832366708 -16.05882076335761 9.628086702292622 -14.28270449167188 9.308205458503469 -14.2937589850914 9.600338603232551 -14.20259415521653 -9.15638467590645 13.23755857289141 -8.780384903449992 13.22736880096883 -9.131317806245944 13.15691490507223 -10.05972714560176 8.367771173881465 -9.63248910550479 8.364731285713532 -10.03446332221797 8.275523334134968 -11.05057981166086 3.367901329390489 -11.47024375638755 3.261958444741649 -11.49145484452039 3.369034668676927 -11.10781426203081 -0.2846352700330709 -11.55327831969917 -0.4020426143794527 -11.5607912865993 -0.2849247609257422 -11.50336225993952 -3.578563639963122 -11.06248694205577 -3.576935725768492 -11.51082094881473 -3.695682477442028 -10.10964567584324 -7.327846505399825 -9.682401778561495 -7.324856078319797 -10.12667529700769 -7.435382094268694 -0.7162983972724568 -7.823109787084589 -1.943001489737283 -7.929580125903267 -1.929195131025889 -7.823109787084589 4.553557532492785 -7.857251946035247 4.555344612540982 -7.75023178734587 6.047421300066162 -7.750231023161794 -17.9198669236586 -3.250838765086589 -17.99747120723871 -3.318150945145977 -18.13596643191458 -3.073669950827252 -17.25217988680722 -2.5263192365622 -17.12527697766129 -2.869220361091524 -17.34439773755976 -2.694363093502924 5.124302506446838 -13.48634422972656 5.124302506446838 -13.62934139326121 4.761454164981841 -13.62934139326121 4.761454164981843 -13.48634422972656 5.124302506446839 -13.48634422972656 4.761454164981843 -13.62934139326121 4.686544239521028 13.44225764041227 4.686544239521028 13.60910229782351 5.049393773078919 13.44225764041227 -5.124302506446838 13.60910229782351 5.049393773078919 3.28080101876525 5.049393773078919 3.090177455198687 4.686544239521027 3.28080101876525 -18.90994524114691 -0.6686511851179914 -19.00192999132849 -0.9098360090245988 -18.97082490968914 -0.4841418391330651 10.85470589029763 -0.818710814368558 10.75707004431758 -0.7619183525581621 10.76642466268993 -0.4815089167862112 -19.4115973855404 -0.8045165649583449 -19.45148232814367 -1.147363289893205 -19.4983977167788 -1.046887611486468 11.32024261235959 -0.3470254471665981 11.31397538034749 -0.4640329673057708 11.22280868561172 -0.290018789896727 -4.611197369125708 -0.07464421162137877 -6.036346680419965 -0.07464421162137877 -4.610611047130893 0.04246622395491267 5.962276415639592 -4.017826119827646 4.534142900166311 -4.017826592440547 4.534730752741241 -3.900714533426205 -4.611197369125708 -3.889258412346493 -6.038739791771512 -4.006358473932219 -6.036346680419965 -3.889258412346493 5.969099984893216 -7.998646739658097 4.534145295495415 -7.891748537457251 5.962278810968677 -7.891748028590238 2.480903371497711 -8.058358052523531 1.423050836975676 -8.058358052523531 2.465468505781433 -7.952015602886137 -2.407650944052344 -12.46470553348781 -2.38515895868009 -12.37555525100804 -1.314340653278559 -12.46470553348781 1.410735011654689 -13.00671822027868 1.423050836975677 -12.91285457345404 2.480903371497713 -12.91285457345404 9.729244274646593 -7.30594838406494 10.15648411028464 -7.308938772449786 10.17351774453513 -7.416472969842089 1.997501705891766 -7.814032465549865 2.011305859053121 -7.92050309886547 0.7846033412746967 -7.814032465549865 11.10444042445242 -3.570828956788975 11.54531507591204 -3.572456871640502 11.55277347298887 -3.689575756379318 -4.480477653373026 -7.749458032316293 -4.478690576892274 -7.856478191042537 -5.972557319450274 -7.749457268132219 11.59508770646414 -0.4081566416561464 11.14962472704136 -0.2907492515030213 11.60260042313606 -0.2910387425086379 11.5122384283163 3.242405769474073 11.09257827984395 3.348347282653135 11.53345264634378 3.349480607268078 10.10672084692224 8.335535333180506 10.08145716235882 8.243286889359673 9.679486869191189 8.332495425106218 9.206022378799732 13.19523610707479 9.180957784235043 13.11459017406516 8.830024516351578 13.18504604893292 -4.686544239521027 -13.48634422972656 -4.686544239521027 -13.62934139326121 -5.049393773078919 -13.48634422972656 -5.049393773078917 -13.48634422972655 -4.686544239521025 -13.62934139326121 -5.049393773078917 -13.62934139326121 17.14783892261312 -2.861549196694088 17.27474097378587 -2.518648181113935 17.36695898175682 -2.686691984662478 18.01437777808899 -3.306078968835501 17.93677342017773 -3.238766841808939 18.15287233016291 -3.061598167134486 -9.676220626684239 -14.23931561735597 -9.64846988615342 -14.15920716125022 -9.356341775336516 -14.25036985130444 8.314302669057607 -14.54647509631868 8.351208741690044 -14.47606596013724 8.612018580897297 -14.46727170186682 -7.874674711645378 13.0703121279486 -7.909382922154723 13.00355435605076 -8.229363370231875 13.01266036622991 -9.200888312076378 7.716063763747422 -9.228446260163334 7.62810248980347 -9.604637102843647 7.63196129370947 -9.731521732947766 0.3128026427261059 -9.726711675644653 0.2117124118050615 -10.15395803252766 0.2139131077134052 -11.06188080428233 -0.3900423914164883 -11.06651790623856 -0.5083858982375872 -11.50739327296986 -0.507336005217475 -11.10900066089257 -3.468773843369492 -11.10440731392674 -3.587115263248207 -11.55738433878191 -3.587404476404805 -11.05269642612473 -4.013668789078606 -11.05913092582625 -4.114699164534456 -11.50000618465159 -4.116336946823259 -9.644629174803402 -10.5877045246411 -9.61875971287736 -10.67598751597022 -10.04599557022101 -10.67961988343205 -0.7313022409280223 -12.71903327725996 -0.7162983972724635 -12.81265723100193 -1.929195131025896 -12.81265723100193 6.047427482856627 -12.02048803427564 4.555350795331638 -12.02048900192059 6.037385524928208 -11.9299382382272 6.044733395853727 -11.96373588251265 4.562728162852848 -12.05458491008635 4.565372695501758 -11.96373588251265 -19.13281915548478 -2.677617379175354 -19.22662532336866 -2.70120123346108 -19.33567460291308 -2.354519640129916 -18.80792778166735 -2.290597024990281 -18.7506233124425 -2.69312374254919 -18.95766314796141 -2.371672764704971 5.049393773078919 13.44225764041227 4.686544239521028 13.60910229782351 5.049393773078919 13.60910229782351 -19.72465195860826 -1.872689394452899 -19.78692607458605 -2.233208412698209 -19.91871488476029 -1.805375217318498 18.96065782700875 -0.9014312385492096 18.86867452091106 -0.6602465080778366 18.92955453951317 -0.4757372335720102 -19.98049274172801 -1.531577379917239 -19.97388192775903 -1.95794251587571 -20.05204745036232 -1.89102883843251 19.41606164962303 -1.137152569665585 19.37617823093496 -0.7943060405164421 19.46297723682424 -1.036676948636391 -4.609013165908317 4.244034893684437 -6.03714191537718 4.244034893684436 -4.607335193697341 4.35106633479906 5.961475705594768 -0.07487620678720416 4.536324607044228 -0.07487620678720394 4.53573828578471 0.04223422879136592 -4.609013165908317 0.03046803522357362 -6.034750327903938 -0.08663088252388675 -6.03714191537718 0.03046803522357362 5.961475705594768 -3.889037147989022 5.963871796437454 -4.006137218737282 4.53632460704423 -3.889037147989022 2.580668397781054 -4.009650183868443 1.546464556103274 -4.009650183868443 2.575145488151038 -3.892615606872484 -1.490413644686014 -8.048534463857896 -2.548261358666484 -8.048534463857896 -2.532824772750701 -7.942192257001909 2.580668397781056 -8.498388385117684 1.53855837293821 -8.606580699121144 1.546464556103276 -8.498388385117684 -2.548261358666482 -12.89452278500166 -1.490413644686011 -12.89452278500166 -1.478094259329754 -12.98838747392245 8.127325805352195 -12.04608252682808 7.866329681399593 -12.05022794831653 8.110494136636552 -11.9526537920919 9.69167276843638 -10.55736549001929 10.09303711034639 -10.64928026616558 9.665805314844198 -10.64564792172906 11.10109676368728 -4.106572517366085 11.09466221611444 -4.005542143797015 11.54197135609249 -4.1082102996243 0.7996088669677953 -12.70189029515711 1.997501705891756 -12.79551465409046 0.7846033412746861 -12.79551465409046 11.14623008516814 -3.581298962871853 11.15082302239242 -3.462957587042447 11.59920578154974 -3.5815881759208 -4.480483835384518 -12.01913765601633 -5.972563501461573 -12.01913668837068 -5.962517963969264 -11.92858682781568 11.10845729119374 -0.5141889211814835 11.10382056253397 -0.3958454591988279 11.54933199150644 -0.5131390285591592 9.773404801169409 0.2038562044241398 9.778215120696375 0.3049464276235968 10.20064709599586 0.2060569001643874 9.652907369034246 7.602326676393322 9.276718422415952 7.598467899525356 9.249162077638447 7.686428557138511 8.28170625625744 12.97315601374789 7.961728231203193 12.96404963741902 7.92701721011836 13.03081009362518 18.75949479111181 -2.68298020751688 18.81679885272213 -2.280453714248502 18.96653425854302 -2.361529408787258 19.23139801201328 -2.689451701497159 19.13759183695888 -2.665867864861596 19.34044707240945 -2.342770367622618 -4.490503210843826 -11.96238721875293 -4.487858677129998 -12.05323624630745 -5.969863315477971 -11.96238721875293 -8.663158878813899 -14.42652604764428 -8.402350720291743 -14.43532004108953 -8.365447939979076 -14.50572705701122 15.46335916394793 -10.60892281156017 15.15066046890538 -10.60892281156017 15.4605718920975 -10.53279436171911 -15.29970092633747 9.305762693544153 -14.99859668636053 9.305762693544153 -15.29624746796896 9.23368831106178 -15.44113742569023 5.340529677294571 -15.72983750475899 5.24998906567549 -15.73376769121119 5.34052967729457 -14.98663259470132 -0.5193083408391356 -15.27171154115017 -0.6200326321203501 -15.2836478343792 -0.5193083408391356 -15.00300206834774 -0.6824902856178123 -15.29705297699152 -0.8008897544279089 -15.29735971942515 -0.6824902856178123 -15.2836478343792 -3.177385094368122 -14.98663259470132 -3.177385094368122 -15.28393654950007 -3.295781449767732 -15.73376769121119 -3.248296663348741 -15.44113742569023 -3.248296663348741 -15.74634910072259 -3.348968410168124 -15.29970092633748 -8.467577620774065 -14.99859668636054 -8.467577620774065 -15.30109726509389 -8.558169169191881 -9.170686243752215 -11.31038111380704 -9.569906803357572 -11.40790835860952 -9.546865027032169 -11.31530059948072 -0.8655783579390791 -12.20994719597754 -2.063998346223663 -12.29929923647023 -2.042807883044057 -12.20994719597754 6.032847801229052 -15.26743859805111 6.044733395853726 -15.34433456450821 4.565372695501758 -15.34433456450821 4.578089119545712 -15.27181098915321 6.042443522549657 -15.27181098915321 4.575014081597541 -15.34924436875584 -19.68978159165452 -2.293963292161629 -19.78360930459403 -2.270426643519187 -19.82425638726421 -1.866647650281283 19.78048424304985 -2.221722100294466 19.71821042565488 -1.861203340651838 19.91227337887101 -1.793889211802343 19.95944976798924 -1.947520684372979 19.96606127535994 -1.521155800721344 20.03761534536724 -1.880607046526774 -4.601408956055971 9.271815676683524 -6.038038690505769 9.271815676683522 -4.598875089223176 9.362670027227752 5.962275391711477 4.24330835415043 4.534141876238193 4.243308354150429 4.532463909626989 4.35033979531938 -4.601408956055971 4.30787130089876 -6.031231801022802 4.200973234703139 -6.038038690505768 4.30787130089876 5.962275391711476 0.03024645439678193 5.959880823535986 -0.08685247252196932 4.534141876238193 0.03024645439678193 2.476153838318579 -0.08152662073299774 1.448475082256825 -0.08152662073299774 2.481589082294483 0.0355093323322735 -1.613661316306823 -4.00664585757511 -2.647858214491436 -4.00664585757511 -2.642337916068863 -3.889611157446968 2.476153838318576 -3.366939655412789 1.447397692994427 -3.483564387562972 1.448475082256822 -3.366939655412789 -1.613661316306821 -8.487591882161246 -1.605754788234128 -8.595784290817457 -2.647858214491436 -8.487591882161246 6.6776721177237 -8.26850753411134 6.465933012836835 -8.270891193067653 6.670723983068755 -8.160274527676586 -8.179911047886003 -12.01633978017662 -8.16308171009161 -11.92290944819252 -7.918916619656993 -12.02048527253476 6.515334858398953 -11.26382444313159 6.553415841722168 -11.17832569057235 6.765147003713963 -11.17553940940338 15.02202243247326 -8.429644127596799 15.32312760948885 -8.429644127596799 15.32452377666325 -8.520234777394641 9.595311194915702 -11.28366783139316 9.618352304145599 -11.37627627152644 9.219134308971217 -11.27874830954333 15.46211492777181 -3.240215589930534 15.7547468827891 -3.240215589930534 15.76732793248971 -3.340887364577219 2.110902209731041 -12.19347232815999 2.132089323736721 -12.28282517451938 0.9336694325431699 -12.19347232815999 15.0101056246541 -3.170566056938317 15.30712256202268 -3.170566056938317 15.30741115185396 -3.288962358661077 15.32066409723172 -0.8077351146625333 15.02661315338168 -0.6893356999620466 15.3209709925307 -0.6893356999620466 15.29518659165885 -0.6282128187308306 15.01010562465411 -0.5274885037723215 15.30712256202268 -0.5274885037723215 15.75081771334134 5.211752358278227 15.46211492777181 5.302292096450603 15.75474688278911 5.302292096450603 15.32312760948885 9.253044120185663 15.31967646468605 9.180966345238184 15.02202243247326 9.253044120185663 19.77908576945749 -2.259271994055478 19.68525805006725 -2.282808626784016 19.81973307066181 -1.855493273825868 -4.503218956355878 -15.26997096044538 -4.500143919658692 -15.34740434007876 -5.967573955087234 -15.26997096044538 -5.95797891353612 -15.2655721743769 -4.490503210843827 -15.34246811125649 -5.969863315477973 -15.34246811125649 -15.48594779083108 -10.55551571529595 -15.48315975889287 -10.47939023135501 -15.17324855490909 -10.55551571529595 15.7114721802048 -10.13036465378344 15.68691514941947 -10.04414893753694 16.01708444038077 -10.04414893753694 -15.1668191078759 9.234871470267324 -15.15066046890538 9.160017322859506 -15.46335916394793 9.160017322859506 -15.00862113548088 4.998656138367536 -14.99859668636054 4.912960297695726 -15.29970092633747 4.912960297695726 -15.44951183108844 0.2103160872656308 -15.44113742569023 0.1081623766247779 -15.73376769121119 0.1081623766247779 -14.98957904088851 -0.7018823012797399 -14.98663259470132 -0.820254278292991 -15.2836478343792 -0.820254278292991 -15.00003788106573 -3.155892365437515 -15.00300206834774 -3.274260926143993 -15.29735971942515 -3.274260926143993 -14.97925661821838 -4.127858398099161 -14.98663259470132 -4.23005584520005 -15.2836478343792 -4.23005584520005 -15.42889186415092 -7.762435691660009 -15.44113742569023 -7.847957855214205 -15.73376769121119 -7.847957855214205 -14.98357338336505 -10.55388201517499 -14.99859668636054 -10.62888111751612 -15.29970092633747 -10.62888111751612 -8.824823626942271 -14.12489571325095 -8.794080268872612 -14.19284427826379 -9.170089165605129 -14.20300702134653 -0.8826350129102212 -15.92375036724437 -0.8655783579390697 -16.00567808604854 -2.042807883044047 -16.00567808604854 -1.050483690564914 -15.82923519957291 -2.211437211425421 -15.90400693072866 -2.185710194233281 -15.82923519957291 -6.030513669705284 14.16644362764167 -6.042443522549659 14.24333609920092 -4.578089119545712 14.24333609920092 -4.590927172236486 14.17802120568929 -6.040276786812616 14.17802120568929 -4.58789892625582 14.25545751748922 5.96317034262518 9.270523289539652 4.526537629451313 9.270523289539652 4.524003767872253 9.361377640174554 -4.590927172236486 9.318216910614718 -6.030122993531732 9.227678957809356 -6.040276786812616 9.318216910614718 5.963170342625178 4.307137113572084 5.956365236892629 4.200239064899323 4.526537629451314 4.307137113572084 2.580668397781054 4.226768642287551 1.546464556103275 4.226768642287551 2.596393690121083 4.33308345358001 -1.515796929642288 -0.08450018169509035 -2.543472473262476 -0.08450018169509035 -2.548905067545308 0.03253589439603184 2.580668397781052 -0.5085529354970522 1.547479105901426 -0.6251768485774619 1.546464556103273 -0.5085529354970519 -1.515796929642288 -3.364648213406738 -1.514720630772632 -3.481272910079917 -2.543472473262476 -3.364648213406738 5.301970907146547 -3.435856086462512 5.122380014925482 -3.436902553364898 5.300567009919858 -3.319233503802847 -6.522399165103879 -8.254818544593391 -6.734136917726277 -8.252434883096971 -6.727188912143367 -8.144201761325455 5.130792201892552 -7.109309396465209 5.159518850826261 -7.003947812433165 5.339109200491081 -7.00284522868404 -6.821393137669627 -11.15121937687499 -6.60966332883516 -11.15400569981857 -6.571580074568978 -11.23950573425742 15.68691514941947 -8.313956844572193 16.01130909436 -8.223475798903641 16.01708444038077 -8.313956844572193 15.00700185472502 -10.50086241382568 15.32312760948885 -10.57586585104739 15.02202243247326 -10.57586585104739 15.46211492777181 -7.812702149595211 15.44987103714391 -7.727179303403415 15.75474688278911 -7.812702149595211 8.874415679096611 -14.0833870487067 9.219676513622714 -14.16150151219486 8.843669532248601 -14.15133835857689 15.01010562465411 -4.21760143079724 15.00272995593065 -4.115404060723963 15.30712256202268 -4.217601430797241 0.9507300078925474 -15.90024312151012 2.110902209731035 -15.98217213411584 0.9336694325431638 -15.98217213411584 15.02661315338167 -3.267215297547446 15.0236473080955 -3.148847216089724 15.3209709925307 -3.267215297547446 15.01010562465411 -0.8272897564913471 15.01305345961021 -0.7089182544098032 15.30712256202268 -0.8272897564913471 15.46211492777181 0.09569302719149637 15.47048894150539 0.1978466668897259 15.75474688278911 0.09569302719149637 15.02202243247326 4.877885897656243 15.03204586218669 4.963582345625581 15.32312760948885 4.877885897656243 15.48594779083108 9.106820843174218 15.17324855490909 9.106820843174218 15.18940489824317 9.181679302055864 4.516055793173837 14.17620921522614 4.513027548437893 14.25364552705619 5.965406003487029 14.17620921522614 5.955644101001473 14.1646048661961 4.503218956355878 14.24149733763617 5.967573955087234 14.24149733763617 2.253585044652437 -15.80549481303079 2.279313202063853 -15.8802661536584 1.118360160867012 -15.80549481303079 -16.03646536591912 -9.98953066762771 -15.70629498706582 -9.98953066762771 -15.73085244048429 -10.0757418179448 -9.691790315408117 -12.66057836863902 -9.713998895841865 -12.46082576638666 -9.592025503009758 -12.61999545698963 -19.38355668723695 -4.849280978589558 -19.22797954663386 -4.68492067644751 -19.29867559749668 -4.885420632541788 -19.65355374764422 -0.1876257909771591 -19.83106337048672 -0.3626433077867314 -19.87527749914726 -0.2839274121714716 -17.82394544450362 -0.5795170116679241 -18.04243545583606 -0.7263208742847903 -18.05720797763103 -0.624616735940446 -17.52329737790185 -1.128318286865405 -17.75279379070075 -1.246811770317144 -17.75986485325772 -1.128547848127118 -17.84463983667688 -2.716384265512863 -17.61117615647032 -2.760379019697464 -17.85187049601123 -2.834639070439923 -18.72812638482233 -2.907042865882481 -18.49785025410326 -2.989545482403961 -18.74496551268442 -3.008544142958534 -19.98336525213728 -2.619792609283633 -19.77616602255682 -2.743600817854579 -20.03000983968968 -2.697641230362282 -19.07521880107368 2.222549238425893 -19.28863543162263 2.360351055835429 -19.20319018112049 2.395655766345168 -15.15066046890538 -10.38957659428272 -15.4678996499368 -10.46161236820582 -15.46335916394793 -10.38957659428272 -7.592980592543337 -14.72278805579691 -7.931323689259743 -14.81781382894436 -7.912733424243109 -14.73609284126878 1.066715171206866 14.87922337145254 1.050483690564915 14.9612663398651 2.185710194233282 14.9612663398651 1.246773391632629 14.68378374546087 2.366609997996232 14.75838297211304 2.340082606993036 14.68378374546087 5.965406003487029 9.316907204223755 5.955254592107321 9.22636929298281 4.516055793173837 9.316907204223753 1.423050836975679 9.408630203324389 2.504008705394735 9.497683835261139 2.480903371497714 9.408630203324389 -1.613661316306823 4.216833965123685 -2.647858214491436 4.216833965123685 -2.66358527831016 4.323148525969196 2.480903371497709 4.956565244715231 1.431281496542692 4.848389187239793 1.423050836975673 4.95656524471523 -1.613661316306823 -0.5108695198862523 -1.614674755282457 -0.6274933972356864 -2.647858214491436 -0.5108695198862521 5.581476603007155 -0.6805588062504455 5.41338949362268 -0.6802705431518155 5.583064466256579 -0.5639388517518161 -5.181810821326999 -3.433770564486227 -5.361405040645122 -3.432724098009614 -5.36000037290997 -3.31610156279985 5.573471488986977 -3.563565990905814 5.395482428849181 -3.681420280371785 5.405384380871043 -3.56327727041682 -5.218859508223209 -6.99200057020482 -5.190136506454993 -7.097361217876384 -5.398453185088338 -6.990897996254484 14.88039625808592 -6.049177235414322 15.21748049650793 -5.941420586126752 15.21811730717534 -6.049177235414322 -16.03069190279564 -8.185171423605269 -15.70629498706582 -8.275654346415315 -16.03646536591912 -8.275654346415315 14.8895366535659 -7.82661596848238 14.88039625808593 -7.746024320254646 15.21811730717534 -7.746024320254646 19.02606839773496 2.256506534682424 19.15403259842444 2.429616522993429 19.2394830470427 2.394311106744111 15.48594779083108 -10.33653502102502 15.49048636236317 -10.40857419527562 15.17324855490909 -10.33653502102502 19.75600973124104 -2.714071717270739 19.9632084087255 -2.590263207330954 20.00985406907348 -2.668112017905508 7.965972928466415 -14.69621602469888 7.98456087767152 -14.77793914185571 7.646222527975709 -14.6829108925316 18.49592406243902 -2.978197317817065 18.72620003535318 -2.895694800358196 18.74303946008466 -2.997195955559551 17.61693882169307 -2.753566207606559 17.85040236961077 -2.70957162793011 17.8576334275191 -2.827825963791534 17.75939437792321 -1.253691370720623 17.5298988979745 -1.135198367111765 17.76646611515011 -1.135427927443862 18.04657186683278 -0.7382075998340181 17.82808222336632 -0.5914038944870823 18.06134458600063 -0.6365035704445915 19.81430039918641 -0.3934265245109556 19.63679235280653 -0.2184086574765198 19.85851574560294 -0.3147104713785267 19.33533831004069 -4.884288843118547 19.25045193748908 -4.92042911361338 19.17976630410968 -4.719925736989262 -2.407650944052344 14.65960892399736 -2.434178292636242 14.73420815998433 -1.31434065327856 14.65960892399736 -1.134588874954071 14.85525742460412 -2.253585044652435 14.93729944855732 -1.118360160867011 14.93729944855732 9.617296553904486 -12.66500159933754 9.517538033774816 -12.6244186570386 9.639505159001477 -12.46524884622546 -8.348870233178907 -12.71452028932761 -8.285797666476661 -12.69012230195108 -8.214562814956576 -12.86742169281624 -18.26962030106745 -6.321678590382891 -18.20580946819558 -6.344842556523926 -18.31228988078171 -6.527023297727342 -20.0176928318019 -1.364111028346354 -19.97740045059154 -1.416793138344588 -20.17402113757889 -1.551212762328492 -19.20516685026805 -0.1514455281133151 -19.18609610962371 -0.2190984511117832 -19.41311367953923 -0.3074381544577679 -17.67416945040313 -0.971600351689575 -17.66995277574447 -1.045853337287439 -17.90337358244077 -1.090443414968429 -17.51628493294478 -2.958314624085006 -17.52029699570496 -3.032574277155831 -17.75686446996305 -3.032804537444579 -18.30652781387649 -4.314869983319435 -18.32123859860547 -4.38319247403253 -18.55345877405838 -4.335297809494179 -19.88292975625511 -2.43110911045672 -19.92024185688072 -2.485132106889783 -20.13522941088246 -2.380158619234217 -18.46166333929716 3.682637282770554 -18.59763165040474 3.857152589259791 -18.39842742323149 3.706758269414646 -7.978014589064561 10.65448200121277 -7.935765208984162 10.85195564554562 -7.915461067359663 10.62926959620017 15.15066046890538 9.563056658643538 15.46335916394792 9.563056658643538 15.13071507699757 9.476108580649944 9.365389491392346 12.82429154073632 9.333231225800933 12.89612594592658 9.65309354528778 12.88456395601899 8.658719233181996 13.33630972377719 8.943388862302919 13.4049215920979 8.919316626974984 13.32407923516827 1.259774571595104 10.10164871144983 1.246773391632616 10.19545538944987 2.340082606993024 10.19545538944987 -2.548261358666484 9.391118389780145 -2.571369004689898 9.480171440153075 -1.490413644686015 9.391118389780145 -1.490413644686015 4.945903461583451 -1.498644713387319 4.837727313105533 -2.548261358666485 4.945903461583451 5.39174599264131 4.676365261466075 5.212157525850023 4.67814160123558 5.394906863333667 4.784706386250813 -5.472181395963654 -0.6834580342270553 -5.640271324742957 -0.6837462972064924 -5.64185996059949 -0.5671263909287087 5.312351299946323 -0.3136682266879932 5.142869273387641 -0.4301738445479654 5.132760493972358 -0.3120448232940665 -5.454294017722256 -3.677656071289764 -5.632285628908424 -3.559801821789036 -5.464195701397696 -3.55951310139795 14.84063769401802 -3.380259162047009 15.18577900417103 -3.26185971708987 15.18595468460332 -3.380259162047009 -15.24130194941138 -5.919889781147626 -14.90421775913593 -6.027644908858769 -15.24193995183978 -6.027644908858769 14.84874765343728 -6.011659752450758 14.84063769401802 -5.904141119940886 15.18595468460332 -5.904141119940886 -14.90421775913593 -7.714855940669859 -14.91335624095274 -7.795449382657618 -15.24193995183978 -7.714855940669859 6.07413098284888 -9.966587740241058 6.052751336910597 -10.0457322227141 5.87941875266081 -9.919309661669212 7.840549175481191 10.6290490144039 7.860849705980102 10.85173505516317 7.903100309075954 10.65426141844438 18.34389530544001 3.739275975397719 18.54309953293489 3.889671079150379 18.40713350634971 3.715154863026652 -15.15330176001074 9.422006758451859 -15.48594779083108 9.508950183664904 -15.17324855490909 9.508950183664904 19.8969724458157 -2.449373366132012 19.85965982852327 -2.395350590533483 20.11196010793283 -2.344400307585765 -9.413435376015551 12.78134491258663 -9.701140325193906 12.84161546867074 -9.381280391948785 12.85317710193036 18.3211164608359 -4.35912086594477 18.30640528909486 -4.290798043421902 18.55333637234671 -4.311225968804862 17.52692274457307 -3.024050899505027 17.52290995029941 -2.949791951472361 17.76348996065288 -3.024281157607632 17.67517820574421 -1.05432127111724 17.67939522910824 -0.9800689784134583 17.90859895542022 -1.09891093270451 19.17654482217115 -0.2418173010313325 19.19561638993978 -0.1741641351521039 19.40356197441698 -0.3301573215256888 19.94916318742726 -1.450260333309652 19.9894558707789 -1.397578366317186 20.14578400235407 -1.584679592411025 18.25653184107658 -6.55787781846958 18.15005578636333 -6.375695333792005 18.2138688302574 -6.352531145971249 -1.327345637163402 10.083661662458 -2.407650944052354 10.17746934616758 -1.314340653278568 10.17746934616759 -8.969535605905968 13.28203736354265 -8.993610370704918 13.3628779521194 -8.708939888320259 13.29426758462078 8.139676247078629 -12.86816259583665 8.210908009611323 -12.69086320744336 8.273978207441394 -12.71526119447974 -12.78274387722732 -6.365614854307423 -12.85013894276203 -6.381307745137489 -12.86009693609806 -6.18552628458628 -15.78946505816563 -5.510541726443739 -15.85685088002671 -5.494847306285777 -15.78013292210458 -5.314741186294477 -17.8416253924724 -4.205936875219305 -17.89662173176317 -4.162252455235499 -17.75085943067127 -4.029919296213584 -18.73492209816997 -2.986942577111664 -18.88587297080539 -3.115625688304565 -18.92092603351418 -3.052052087977587 -19.08382523072946 -2.297553636979063 -19.27044217847237 -2.36156841028472 -19.2823972448122 -2.287838757801712 -19.22438961449992 -1.632404227412163 -19.03782283819056 -1.715842692447699 -19.23639490486517 -1.706128478536877 -18.74223579387762 -0.8065263520552668 -18.59198109796248 -0.9547140616795583 -18.77760881278337 -0.869989378480578 -17.54122458466774 0.1184337390716796 -17.68579234691721 0.2700819306560698 -17.6304287660604 0.3134777680939756 -15.65646630459152 1.291234755797375 -15.7323386476556 1.48973944020916 -15.66488296606815 1.505248688255905 -12.9367457267672 2.211256775862102 -13.0132550779171 2.012766795441328 -13.00421049433906 2.226764875080322 -9.843270666827925 9.942780775254487 -9.888396610315738 10.1631985964147 -9.788166085982898 10.12333448897309 15.68691514941947 8.786710331342688 16.0238749337508 8.86268155512165 16.01708444038077 8.786710331342688 7.897678810089994 8.027416426002192 7.864543301827258 8.114184752327695 8.125539781929545 8.109627824716947 6.673049848220581 9.469715966396223 6.896084339222137 9.559746333869635 6.884762958644726 9.465804985259812 -5.271379763675692 4.6632943912561 -5.450971557570048 4.661518049302336 -5.454131147372023 4.769859307307832 6.677170504544652 3.410883337648484 6.491090664057091 3.307947080044089 6.465431366870718 3.413794575316653 -5.202275551431507 -0.4338439809994849 -5.371761164807856 -0.3173384028208116 -5.192167031731167 -0.3157149999798093 15.1753449570544 -0.7137339373397769 14.82737263025975 -0.7137339373397769 15.17550626670093 -0.5953376211913491 -15.21005229255512 -3.255013659375607 -14.86491272747025 -3.373413050099153 -15.21022837451268 -3.373413050099153 14.83018938232627 -3.363247504567183 14.82737263025975 -3.244873795772628 15.1753449570544 -3.244873795772628 -14.86491272747025 -5.883240749762564 -14.87302250707226 -5.990760022550326 -15.21022837451268 -5.883240749762564 10.16320062559679 -7.037031182269035 10.35410713240962 -7.017393499742548 10.34700273135151 -7.12495615122071 -6.10914123146968 -10.02512542648012 -6.130524663523904 -9.945979887175954 -5.935811910440053 -9.898701177291059 4.439032976970478 -11.98340202401183 4.468619694421044 -11.92649294888146 4.630761698629476 -12.03770408049976 12.941697311043 2.018454057509577 12.86518640303935 2.216944390881896 12.93264894552412 2.232452517676358 9.768878972063599 9.947686821193569 9.713778591995073 10.12824057167612 9.814002868135006 10.16810468723477 15.6659813934412 1.499018471902721 15.59011232929354 1.300513219207083 15.59852351378556 1.514527764349704 -15.70629498706582 8.732666998645161 -16.03646536591912 8.732666998645161 -16.04325582618906 8.808635269477087 17.62672952931197 0.2801970374289753 17.48216341514532 0.128548661864497 17.57136601513961 0.323592927514855 18.53923678922872 -0.9469091429666696 18.68948976418842 -0.7987211602002733 18.72486364052563 -0.8621843036017132 18.9891225781716 -1.713194037408865 19.17568880158024 -1.629755837601254 19.18768961402955 -1.703479854376856 19.22216787145841 -2.364303168194035 19.03555155082161 -2.300288606453789 19.23411853418363 -2.290573759383596 18.8342591331913 -3.123954853184598 18.68330990625126 -2.995271476320575 18.86931301872998 -3.06038112160753 17.83863199804143 -4.173434737613167 17.78363573912622 -4.217119220216832 17.69287130051369 -4.041101388896995 15.79085600446988 -5.505157165192947 15.72346798640699 -5.520851640241356 15.71414130288766 -5.325050415289506 -6.94070064484745 9.437924505789244 -6.952019441919244 9.531867377155223 -6.728988888700038 9.441835550321279 -7.95027424563846 8.000646900380163 -8.17813151795796 8.082859631654044 -7.917136733841961 8.087416633127729 12.77835483883574 -6.387302547985668 12.71096200259839 -6.371609624830847 12.78831666929671 -6.191520684157089 -9.68092843336105 -6.120881596644153 -9.735939489592669 -6.16455774489523 -9.827290752882114 -5.988573495171885 -10.07394446695215 1.952842852432265 -10.21911948003686 1.801217886282871 -10.12932053946803 1.996232043650448 2.413905613590869 8.735847419225193 2.379310964445952 8.790980780609035 2.53426046563354 8.93105476926039 15.67423082878306 3.968712718113738 15.68691514941947 4.049011524292988 16.01708444038077 4.049011524292988 15.21811730717534 5.80085919864991 14.88039625808593 5.800859198649909 15.2190775342545 5.891455222201265 -6.547544681720589 3.294471620129648 -6.733627439126202 3.397406998346797 -6.521889653117752 3.400318211144182 15.18595468460332 2.248110681458929 14.84063769401802 2.248110681458929 15.18646775344484 2.355864921485728 -14.85159354600209 -0.720568210412048 -15.19956548803766 -0.720568210412048 -15.19972704947418 -0.6021719483419815 14.83780678440374 -0.7339876700204291 14.84063769401802 -0.6156173123829684 15.18595468460332 -0.6156173123829684 -14.85159354600209 -3.237951948498318 -14.85441151087351 -3.356325337016881 -15.19956548803767 -3.237951948498318 12.05741482513919 -3.563240662441386 12.24195836344508 -3.489354483544652 12.24154061641983 -3.607748473706828 -10.39766087355002 -6.999490266505816 -10.20675364225036 -7.019128052741568 -10.39055491731616 -7.107053486036927 10.2975001942721 -7.633555202672231 10.30599075633745 -7.564584601157192 10.48832644754952 -7.613440602891981 -4.690710747276611 -12.01390608707657 -4.528570604954117 -11.90269375807636 -4.498981510604737 -11.95960344593224 10.14467526126418 1.803192736996237 9.999495264955684 1.954817680861395 10.05487363302272 1.998206865702695 -2.478268632430267 8.716361066160564 -2.598617818886321 8.911570221728214 -2.443671634953325 8.771494937489718 -15.70629498706582 4.017592829726342 -15.69361245066309 3.937292183630611 -16.03646536591912 4.017592829726342 -14.90421775913593 5.763260575988522 -15.24193995183978 5.763260575988522 -15.24289825157169 5.853858412660615 9.661321327434161 -6.166279363329495 9.606307960399429 -6.122603221429672 9.752675213521918 -5.990295139197252 -7.395537909747889 -4.830922892375976 -7.430609113530139 -4.894486908002942 -7.582130724041725 -4.765823197772249 -7.775983267541528 0.7476408337632816 -7.962203837859102 0.6629274849558876 -7.811371043444507 0.8110953701622439 7.766607095408951 6.515231945749315 7.590830213999094 6.418063621011885 7.750224525147358 6.595115452111634 14.87216447635101 2.179947425949198 14.88039625808592 2.287457504881583 15.21811730717534 2.287457504881584 -14.86491272747025 2.226444157171185 -15.21022837451267 2.226444157171185 -15.21074376780526 2.334196873085406 -14.86491272747025 -0.6225643843096979 -14.86208045979548 -0.7409344194215524 -15.21022837451268 -0.6225643843096981 12.41469233972847 -0.5002694550396616 12.23169637368569 -0.5000396405644378 12.41447618763021 -0.3818782724980979 -12.27825252498836 -3.482855020088215 -12.09370982983083 -3.556741012596679 -12.277836473803 -3.601248711584913 12.22372091515855 -3.796425702544841 12.22513709523424 -3.722106338661855 12.40813305999706 -3.722336782997072 -10.34901622437447 -7.543969645772952 -10.34052578346923 -7.612940066679143 -10.53135278775586 -7.592825519571694 7.887300302356735 0.6628454520420777 7.701075561955177 0.747558799260738 7.736462743421062 0.8110133344696594 -7.642527278143381 6.394943276232301 -7.81830235691293 6.492113066751919 -7.801916090519243 6.571997778155295 -14.90421775913592 2.266675886894497 -14.89598725529453 2.159165115481537 -15.24193995183978 2.266675886894497 7.355734855273431 -4.894160274590968 7.320664240262901 -4.830596263918473 7.507261218016874 -4.765496574388916 -6.338988225187498 -3.044192736994829 -6.526187453215318 -2.980179495076612 -6.327008858612708 -2.970464848302552 -6.478766604773241 -1.044994264491359 -6.677945251180706 -1.054708253937041 -6.490795495926419 -0.9712717169038074 9.610606299620715 4.026767889582137 9.600603974387786 4.095612210845925 9.782930967972504 4.184999620950642 10.84047123466893 3.232022608900226 10.65762112611577 3.184796505463652 10.83485398750863 3.33963684896644 -12.26747683539415 -0.5066035206759694 -12.45047166792699 -0.5068333345684198 -12.45025742428145 -0.3884424522482105 11.96646711559798 -0.2245792295362926 11.96483023268117 -0.1502630192217587 12.14891252852914 -0.1060984740581887 -12.26094568485028 -3.714805528299638 -12.25952937471671 -3.789124952490278 -12.4439405161016 -3.715035972821853 6.603293950145228 -1.054998462077994 6.404110550950738 -1.045284472474634 6.416140047648382 -0.9715619236904124 -9.646317743629719 4.075727575063625 -9.656319410185724 4.006883384766423 -9.828644396363487 4.165114815121433 -10.69924566447718 3.16651825694732 -10.88209648364179 3.21374460925405 -10.8764772486745 3.321359416421312 6.451588298678992 -2.979853689228417 6.264384924186519 -3.043866932336237 6.252404951289926 -2.970139042273824 -12.0013834934214 -0.1574555205813113 -12.00302080340579 -0.2317717869179218 -12.18546658538891 -0.1132909421250119</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"636\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 12 6 13 7 14 8 18 9 19 10 20 11 24 12 25 13 26 14 7 4 30 15 8 5 32 16 33 17 34 18 20 19 19 20 38 21 40 22 41 23 42 24 46 25 47 26 48 27 52 28 53 29 54 30 54 31 58 32 59 33 62 34 63 35 64 36 30 15 68 37 8 5 70 38 32 16 34 18 38 39 72 40 73 41 48 42 47 43 76 44 19 45 72 46 38 47 78 48 79 49 80 50 84 51 85 52 86 53 79 54 90 55 91 56 94 57 53 58 52 59 52 60 54 61 59 62 59 63 58 64 96 65 98 66 8 5 99 67 102 68 103 69 104 70 68 37 108 71 8 5 110 72 70 38 34 18 73 73 112 74 113 75 116 76 76 77 117 78 72 79 112 80 73 81 116 82 48 83 76 84 94 85 72 86 53 87 78 88 80 89 120 90 79 91 91 92 80 93 34 18 122 94 123 95 126 96 127 97 128 98 90 99 132 100 91 101 134 102 135 103 136 104 140 105 141 106 134 107 144 108 140 109 145 110 58 111 148 112 96 113 104 114 103 115 150 116 99 67 8 5 152 117 108 71 154 118 8 5 156 119 110 72 34 18 113 120 158 121 159 122 162 123 117 124 163 125 113 126 112 127 158 128 162 129 116 130 117 131 72 132 166 133 112 134 116 135 132 136 90 137 94 138 166 139 72 140 168 141 169 142 170 143 174 144 78 145 120 146 169 147 176 148 177 149 34 18 123 95 180 150 182 151 126 152 128 153 176 154 184 155 185 156 135 103 188 157 136 104 141 106 135 158 134 107 141 159 140 109 144 108 144 160 145 161 190 162 96 163 148 164 192 165 104 166 150 167 194 168 194 169 150 170 196 171 152 117 8 5 198 172 154 118 200 173 8 5 202 174 156 119 34 18 159 175 204 176 205 177 208 178 163 179 209 180 159 181 158 182 204 183 208 184 162 185 163 186 112 187 212 188 158 189 214 190 116 191 162 192 166 193 212 194 112 195 214 196 132 197 116 198 94 199 216 200 166 201 168 202 170 203 218 204 169 205 177 206 170 207 174 208 120 209 220 210 177 149 176 148 185 211 34 18 180 150 222 212 182 213 224 214 225 215 182 216 128 217 224 218 185 156 184 155 228 219 230 220 231 221 232 222 236 223 232 224 237 225 240 226 237 227 241 228 244 229 241 230 245 231 190 162 145 161 248 232 148 233 250 234 192 235 194 236 196 237 252 238 252 239 196 240 254 241 8 5 256 242 198 172 8 5 200 173 258 243 260 244 202 174 34 18 205 245 262 246 263 247 266 248 209 249 267 250 205 251 204 252 262 253 266 254 208 255 209 256 158 257 270 258 204 259 272 260 162 261 208 262 158 263 212 264 270 265 272 266 214 267 162 268 166 269 274 270 212 271 276 272 132 273 214 274 166 201 216 200 274 275 278 276 279 277 280 278 284 279 168 202 218 204 286 280 287 281 278 282 290 283 174 284 220 285 292 286 293 287 286 288 296 289 34 18 222 212 298 290 225 291 299 292 225 293 224 294 299 295 292 296 302 297 303 298 306 299 231 300 230 301 230 302 232 303 236 304 236 305 237 306 240 307 244 308 240 309 241 310 308 311 244 312 245 313 190 314 248 315 310 316 192 317 250 318 312 319 250 320 314 321 312 322 252 323 254 324 316 325 316 326 254 327 318 328 8 5 320 329 256 242 8 5 258 243 322 330 324 331 260 244 34 18 263 332 326 333 327 334 330 335 267 336 331 337 263 338 262 339 326 340 330 341 266 342 267 343 204 344 334 345 262 346 336 347 208 348 266 349 204 350 270 351 334 352 272 353 208 354 336 355 212 356 338 357 270 358 340 359 214 360 272 361 212 271 274 270 338 362 340 363 342 272 214 274 274 364 231 365 306 366 279 367 344 368 280 369 287 370 279 371 278 372 284 373 218 374 346 375 286 376 293 377 287 378 290 379 220 380 348 381 292 382 303 383 293 384 350 385 34 18 296 289 352 386 298 387 353 388 298 389 299 390 353 391 356 392 290 393 348 394 302 395 358 396 303 397 360 398 361 399 362 400 366 401 367 402 360 403 370 404 366 405 371 406 371 407 374 408 375 409 378 410 374 411 379 412 308 413 245 414 382 415 310 316 248 315 384 416 314 417 386 418 312 419 314 420 388 421 386 422 316 423 318 424 390 425 390 426 318 427 392 428 8 5 322 330 320 329 324 331 34 18 394 429 327 430 396 431 397 432 331 433 400 434 401 435 326 436 396 437 327 438 401 439 330 440 331 441 262 442 404 443 405 444 408 445 266 446 330 447 262 448 334 449 404 450 336 451 266 452 408 453 270 454 410 455 334 456 412 457 272 458 336 459 270 358 338 357 410 460 412 461 340 462 272 361 274 463 414 464 338 465 302 466 340 467 358 468 414 469 274 470 306 471 416 472 417 473 418 474 280 475 344 476 422 477 417 478 424 479 425 480 428 481 284 482 346 483 424 484 430 485 431 486 430 487 434 488 435 489 394 429 34 18 350 385 352 490 438 491 439 492 352 493 353 494 438 495 442 496 356 497 443 498 443 499 356 500 348 501 434 502 446 503 447 504 361 505 450 506 362 507 367 508 361 509 360 510 367 511 366 512 370 513 370 514 371 515 375 516 375 517 374 518 378 519 378 520 379 521 452 522 454 523 308 524 382 525 310 526 384 527 456 528 456 528 384 529 458 530 388 531 460 532 386 533 388 534 462 535 460 536 390 537 392 538 464 539 464 540 392 541 397 542 400 543 466 544 467 545 396 546 464 547 397 548 401 549 400 550 467 551 405 552 470 553 471 554 474 555 330 556 475 557 404 558 470 559 405 560 408 561 330 562 474 563 334 564 478 565 404 566 480 567 336 568 408 569 334 570 410 571 478 572 480 573 412 457 336 459 338 574 482 575 410 576 484 577 340 578 412 579 338 580 414 581 482 582 340 583 484 584 358 585 362 586 450 587 414 588 416 589 418 590 486 591 417 592 425 593 418 594 344 595 488 596 422 597 424 598 431 599 425 600 428 601 346 602 490 603 430 604 435 605 431 606 434 607 447 608 435 609 466 610 439 611 492 612 439 613 438 614 492 615 494 616 442 617 495 618 495 619 442 620 443 621 498 622 428 601 490 603 446 623 500 624 447 625 361 626 502 627 450 628 367 629 504 630 361 631 370 632 506 633 367 634 508 635 370 636 375 637 510 638 375 639 378 640 512 641 378 642 452 643 452 644 379 645 514 646 516 647 454 648 382 649 456 650 458 651 518 652 518 652 458 653 520 654 462 655 522 656 460 657 462 658 524 659 522 660 467 661 466 662 492 663 471 664 526 665 524 666 528 667 475 668 529 669 471 670 470 671 526 672 528 673 474 674 475 675 404 676 532 677 533 678 536 679 408 680 474 681 404 682 478 683 532 684 536 685 480 567 408 686 410 687 538 688 478 689 540 690 412 691 480 692 482 693 538 694 410 695 484 696 412 697 540 698 414 699 542 700 482 701 500 702 446 703 484 704 414 705 450 706 542 707 486 708 418 709 544 710 546 711 416 712 486 713 418 714 425 715 548 716 488 717 550 718 422 719 425 720 431 721 552 722 431 723 435 724 554 725 435 726 447 727 556 728 558 729 494 730 559 731 559 732 494 733 495 734 562 735 498 736 563 737 498 738 490 739 563 740 447 741 500 742 566 743 502 744 568 745 450 746 504 747 502 748 361 749 506 750 504 751 367 752 506 753 370 754 508 755 508 756 375 757 510 758 510 759 378 760 512 761 512 762 452 763 570 764 452 765 514 766 572 767 574 768 454 769 516 770 576 771 574 772 516 773 518 774 520 775 578 776 578 777 520 778 580 779 524 780 526 781 522 782 582 783 529 784 558 785 528 786 529 787 582 788 584 789 585 790 586 791 590 792 474 793 591 794 533 678 532 677 594 795 590 796 536 797 474 798 478 799 596 800 532 801 598 802 480 803 536 804 538 805 596 806 478 807 598 808 540 809 480 810 482 811 600 812 538 813 602 814 484 815 540 816 482 817 542 818 600 819 500 820 484 821 602 822 450 823 568 824 542 825 486 826 544 827 604 828 418 829 548 830 544 831 546 832 486 833 606 834 425 835 552 836 548 837 488 838 608 839 550 840 431 841 554 842 552 843 435 844 556 845 554 846 447 847 566 848 556 849 582 850 558 851 559 852 610 853 562 854 611 855 562 856 563 857 611 858 608 859 614 860 550 861 500 862 616 863 566 864 502 865 618 866 568 867 504 868 620 869 502 870 506 871 622 872 504 873 624 874 506 875 508 876 626 877 508 878 510 879 512 880 628 881 510 882 570 883 630 884 512 885 570 886 452 887 572 888 514 889 632 890 572 891 634 892 574 893 576 894 636 895 634 896 576 897 638 898 578 899 580 900 640 901 641 902 580 903 644 904 645 905 646 906 585 790 650 907 586 791 652 908 590 909 653 910 656 911 657 912 658 913 662 914 536 915 590 916 656 917 664 918 657 919 662 920 598 921 536 922 538 923 666 924 596 925 668 926 540 927 598 928 538 929 600 930 666 931 602 932 540 933 668 934 542 935 670 936 600 937 500 938 602 939 616 940 568 941 670 942 542 943 672 944 604 945 544 946 606 947 486 948 604 949 674 950 544 951 548 952 676 953 546 954 606 955 552 956 678 957 548 958 554 959 680 960 552 961 554 962 556 963 682 964 556 965 566 966 684 967 686 968 610 969 687 970 690 971 610 972 611 973 692 974 693 975 614 976 608 977 692 978 614 979 566 980 616 981 696 982 618 983 698 984 568 985 620 986 618 987 502 988 622 989 620 990 504 991 624 992 622 993 506 994 626 995 624 996 508 997 628 998 626 999 510 1000 630 1001 628 1002 512 1003 700 1004 630 1005 570 1006 702 1007 570 1008 572 1009 572 1010 632 1011 704 1012 704 1013 632 1014 706 1015 708 1016 634 1017 636 1018 710 1019 708 1020 636 1021 712 1022 713 1023 714 1024 658 1025 718 1026 710 1027 720 1028 721 1029 722 1030 658 1031 657 1032 718 1033 726 1034 721 1035 720 1036 596 1037 728 1038 729 1039 732 1040 598 1041 662 1042 596 1043 666 1044 728 1045 732 1046 668 1047 598 1048 600 1049 734 1050 666 1051 736 1052 602 1053 668 1054 600 1055 670 1056 734 1057 602 1058 736 1059 616 1060 568 1061 698 1062 670 1063 738 1064 604 1065 672 1066 674 1067 672 1068 544 1069 740 1070 606 1071 604 1072 678 1073 674 1074 548 1075 676 1076 606 1077 742 1078 680 1079 678 1080 552 1081 682 1082 680 1083 554 1084 556 1085 684 1086 682 1087 566 1088 696 1089 684 1090 744 1091 745 1092 693 1093 692 1094 744 1095 693 1096 748 1097 676 1098 742 1099 616 1100 750 1101 696 1102 618 1103 752 1104 698 1105 620 1106 754 1107 618 1108 756 1109 620 1110 622 1111 758 1112 622 1113 624 1114 760 1115 624 1116 626 1117 628 1118 762 1119 626 1120 630 1121 764 1122 628 1123 700 1124 766 1125 630 1126 700 1127 570 1128 702 1129 702 1130 572 1131 704 1132 768 1133 704 1134 706 1135 770 1136 768 1137 706 1138 718 1139 708 1140 710 1141 772 1142 722 1143 745 1144 720 1145 722 1146 772 1147 729 1148 774 1149 775 1150 778 1151 662 1152 779 1153 729 1154 728 1155 774 1156 778 1157 732 1158 662 1159 666 1160 782 1161 728 1162 784 1163 668 1164 732 1165 666 1166 734 1167 782 1168 784 1169 736 1170 668 1171 670 1172 786 1173 734 1174 616 1175 736 1176 750 1177 698 1178 786 1179 670 1180 788 1181 738 1182 672 1183 740 1184 604 1185 738 1186 790 1187 672 1188 674 1189 742 1190 606 1191 740 1192 792 1193 674 1194 678 1195 680 1196 794 1197 678 1198 682 1199 796 1200 680 1201 684 1202 798 1203 682 1204 684 1205 696 1206 800 1207 744 1208 772 1209 745 1210 802 1211 748 1212 803 1213 803 1214 748 1215 742 1216 696 1217 750 1218 806 1219 752 1220 808 1221 698 1222 754 1223 752 1224 618 1225 756 1226 754 1227 620 1228 758 1229 756 1230 622 1231 760 1232 758 1233 624 1234 762 1235 760 1236 626 1237 764 1238 762 1239 628 1240 766 1241 764 1242 630 1243 810 1244 766 1245 700 1246 812 1247 700 1248 702 1249 814 1250 702 1251 704 1252 814 1253 704 1254 768 1255 816 1256 768 1257 770 1258 775 1259 816 1260 770 1261 818 1262 779 1263 819 1264 775 1265 774 1266 816 1267 818 1268 778 1269 779 1270 728 1271 822 1272 774 1273 824 1274 732 1275 778 1276 728 1277 782 1278 822 1279 824 1280 784 1281 732 1282 734 1283 826 1284 782 1285 828 1286 736 1287 784 1288 786 1289 826 1290 734 1291 736 1292 828 1293 750 1294 808 1295 786 1296 698 1297 830 1298 738 1299 788 1300 790 1301 788 1302 672 1303 832 1304 740 1305 738 1306 792 1307 790 1308 674 1309 834 1310 742 1311 740 1312 794 1313 792 1314 678 1315 796 1316 794 1317 680 1318 798 1319 796 1320 682 1321 800 1322 798 1323 684 1324 696 1325 806 1326 800 1327 819 1328 802 1329 836 1330 836 1331 802 1332 803 1333 803 1334 742 1335 834 1336 750 1337 838 1338 806 1339 752 1340 840 1341 808 1342 754 1343 842 1344 752 1345 844 1346 754 1347 756 1348 846 1349 756 1350 758 1351 848 1352 758 1353 760 1354 762 1355 850 1356 760 1357 764 1358 852 1359 762 1360 766 1361 854 1362 764 1363 856 1364 766 1365 810 1366 810 1367 700 1368 812 1369 812 1370 702 1371 814 1372 858 1373 814 1374 768 1375 858 1376 768 1377 816 1378 836 1379 818 1380 819 1381 860 1382 816 1383 774 1384 862 1385 778 1386 818 1387 774 1388 822 1389 860 1390 862 1391 824 1392 778 1393 782 1394 864 1395 822 1396 866 1397 784 1398 824 1399 782 1400 826 1401 864 1402 866 1403 828 1404 784 1405 868 1406 826 1407 786 1408 828 1409 838 1410 750 1411 808 1412 868 1413 786 1414 870 1415 830 1416 788 1417 832 1418 738 1419 830 1420 872 1421 788 1422 790 1423 834 1424 740 1425 832 1426 874 1427 790 1428 792 1429 876 1430 792 1431 794 1432 796 1433 878 1434 794 1435 798 1436 880 1437 796 1438 800 1439 882 1440 798 1441 800 1442 806 1443 884 1444 836 1445 803 1446 886 1447 886 1448 803 1449 834 1450 806 1451 838 1452 888 1453 840 1454 890 1455 808 1456 842 1457 840 1458 752 1459 844 1460 842 1461 754 1462 846 1463 844 1464 756 1465 848 1466 846 1467 758 1468 850 1469 848 1470 760 1471 852 1472 850 1473 762 1474 854 1475 852 1476 764 1477 854 1478 766 1479 856 1480 856 1481 810 1482 892 1483 810 1484 812 1485 894 1486 896 1487 812 1488 814 1489 896 1490 814 1491 858 1492 860 1493 858 1494 816 1495 818 1496 836 1497 898 1498 898 1499 862 1500 818 1501 822 1502 900 1503 860 1504 902 1505 824 1506 862 1507 822 1508 864 1509 900 1510 866 1511 824 1512 902 1513 904 1514 864 1515 826 1516 866 1517 906 1518 828 1519 868 1520 904 1521 826 1522 906 1523 838 1524 828 1525 868 1526 808 1527 890 1528 908 1529 830 1530 870 1531 870 1532 788 1533 872 1534 910 1535 832 1536 830 1537 874 1538 872 1539 790 1540 912 1541 834 1542 832 1543 876 1544 874 1545 792 1546 878 1547 876 1548 794 1549 880 1550 878 1551 796 1552 882 1553 880 1554 798 1555 884 1556 882 1557 800 1558 806 1559 888 1560 884 1561 898 1562 836 1563 886 1564 886 1565 834 1566 912 1567 838 1568 914 1569 888 1570 890 1571 840 1572 916 1573 840 1574 842 1575 916 1576 842 1577 844 1578 916 1579 916 1580 844 1581 846 1582 916 1583 846 1584 918 1585 920 1586 916 1587 918 1588 852 1589 916 1590 920 1591 916 1592 852 1593 854 1594 916 1595 854 1596 856 1597 892 1598 916 1599 856 1600 892 1601 810 1602 894 1603 894 1604 812 1605 896 1606 922 1607 896 1608 858 1609 922 1610 858 1611 860 1612 924 1613 862 1614 898 1615 860 1616 900 1617 922 1618 902 1619 862 1620 924 1621 864 1622 926 1623 900 1624 902 1625 928 1626 866 1627 904 1628 926 1629 864 1630 928 1631 906 1632 866 1633 930 1634 904 1635 868 1636 838 1637 906 1638 914 1639 890 1640 930 1641 868 1642 932 1643 908 1644 870 1645 908 1646 910 1647 830 1648 872 1649 932 1650 870 1651 910 1652 912 1653 832 1654 874 1655 932 1656 872 1657 932 1658 874 1659 934 1660 932 1661 934 1662 936 1663 880 1664 932 1665 936 1666 882 1667 932 1668 880 1669 882 1670 884 1671 932 1672 884 1673 888 1674 932 1675 898 1676 886 1677 938 1678 938 1679 886 1680 912 1681 888 1682 914 1683 932 1684 940 1685 890 1686 916 1687 942 1688 916 1689 892 1690 944 1691 892 1692 894 1693 946 1694 894 1695 896 1696 922 1697 946 1698 896 1699 924 1700 898 1701 938 1702 900 1703 948 1704 922 1705 950 1706 902 1707 924 1708 926 1709 948 1710 900 1711 950 1712 928 1713 902 1714 952 1715 926 1716 904 1717 928 1718 954 1719 906 1720 930 1721 952 1722 904 1723 906 1724 954 1725 914 1726 932 1727 956 1728 908 1729 958 1730 910 1731 908 1732 910 1733 960 1734 912 1735 960 1736 938 1737 912 1738 914 1739 962 1740 932 1741 964 1742 940 1743 916 1744 966 1745 916 1746 942 1747 946 1748 944 1749 894 1750 948 1751 946 1752 922 1753 968 1754 924 1755 938 1756 968 1757 950 1758 924 1759 926 1760 970 1761 948 1762 950 1763 972 1764 928 1765 952 1766 970 1767 926 1768 972 1769 954 1770 928 1771 932 1772 974 1773 956 1774 958 1775 960 1776 910 1777 960 1778 968 1779 938 1780 962 1781 976 1782 932 1783 964 1784 916 1785 978 1786 978 1787 916 1788 966 1789 980 1790 944 1791 946 1792 948 1793 980 1794 946 1795 982 1796 950 1797 968 1798 970 1799 980 1800 948 1801 982 1802 972 1803 950 1804 932 1805 984 1806 974 1807 958 1808 986 1809 960 1810 986 1811 968 1812 960 1813 932 1814 976 1815 984 1816 986 1817 982 1818 968 1819</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID256\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID257\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"636\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 9 10 11 15 16 17 21 22 23 27 28 29 9 31 10 35 36 37 39 22 21 43 44 45 49 50 51 55 56 57 60 61 55 65 66 67 9 69 31 35 37 71 74 75 39 77 50 49 39 75 22 81 82 83 87 88 89 92 93 82 57 56 95 60 55 57 97 61 60 100 9 101 105 106 107 9 109 69 35 71 111 114 115 74 118 77 119 74 115 75 77 49 119 56 75 95 121 81 83 81 92 82 124 125 35 129 130 131 92 133 93 137 138 139 139 142 143 146 143 147 97 149 61 151 106 105 153 9 100 9 155 109 35 111 157 160 161 114 164 118 165 161 115 114 118 119 165 115 167 75 93 133 119 75 167 95 171 172 173 121 83 175 178 179 172 181 124 35 129 131 183 186 187 179 137 189 138 139 138 142 147 143 142 191 146 147 193 149 97 195 151 105 197 151 195 199 9 153 9 201 155 35 157 203 206 207 160 210 164 211 207 161 160 164 165 211 161 213 115 165 119 215 115 213 167 119 133 215 167 217 95 219 171 173 171 178 172 221 121 175 186 179 178 223 181 35 226 227 183 227 129 183 229 187 186 233 234 235 238 233 239 242 238 243 246 242 247 249 146 191 193 251 149 253 197 195 255 197 253 199 257 9 259 201 9 35 203 261 264 265 206 268 210 269 265 207 206 210 211 269 207 271 161 211 165 273 271 213 161 165 215 273 213 275 167 215 133 277 275 217 167 281 282 283 219 173 285 283 288 289 221 175 291 289 294 295 223 35 297 300 226 301 300 227 226 304 305 295 235 234 307 239 233 235 243 238 239 242 243 247 246 247 309 311 249 191 313 251 193 313 315 251 317 255 253 319 255 317 257 321 9 323 259 9 35 261 325 328 329 264 332 268 333 329 265 264 268 269 333 265 335 207 269 211 337 335 271 207 337 211 273 271 339 213 273 215 341 339 275 213 215 343 341 307 234 275 281 345 282 283 282 288 347 219 285 288 294 289 349 221 291 294 304 295 297 35 351 354 301 355 354 300 301 349 291 357 304 359 305 363 364 365 365 368 369 372 369 373 376 377 372 380 377 381 383 246 309 385 249 311 313 387 315 387 389 315 391 319 317 393 319 391 321 323 9 395 35 325 398 399 328 402 403 332 328 399 329 332 333 402 406 407 265 333 269 409 407 335 265 409 269 337 335 411 271 337 273 413 411 339 271 273 341 413 339 415 275 359 341 305 307 275 415 419 420 421 423 345 281 426 427 420 347 285 429 432 433 427 436 437 433 351 35 395 440 441 355 441 354 355 444 357 445 349 357 444 448 449 437 363 451 364 365 364 368 373 369 368 376 372 373 381 377 376 453 380 381 383 309 455 457 385 311 459 385 457 387 461 389 461 463 389 465 393 391 398 393 465 468 469 403 398 465 399 468 403 402 472 473 406 476 333 477 406 473 407 477 333 409 407 479 335 409 337 481 479 411 335 337 413 481 411 483 339 413 341 485 483 415 339 359 485 341 415 451 363 487 419 421 419 426 420 423 489 345 426 432 427 491 347 429 432 436 433 436 448 437 493 440 469 493 441 440 496 445 497 444 445 496 491 429 499 448 501 449 451 503 364 364 505 368 368 507 373 376 373 509 381 376 511 453 381 513 515 380 453 383 455 517 519 459 457 521 459 519 461 523 463 523 525 463 493 469 468 525 527 472 530 476 531 527 473 472 476 477 531 534 535 407 477 409 537 535 479 407 409 481 537 479 539 411 481 413 541 411 539 483 541 413 485 483 543 415 485 449 501 543 451 415 545 419 487 487 421 547 549 426 419 423 551 489 553 432 426 555 436 432 557 448 436 560 497 561 496 497 560 564 499 565 564 491 499 567 501 448 451 569 503 364 503 505 368 505 507 509 373 507 511 376 509 513 381 511 571 453 513 573 515 453 517 455 575 517 575 577 579 521 519 581 521 579 523 527 525 561 530 583 583 530 531 587 588 589 592 477 593 595 535 534 477 537 593 535 597 479 537 481 599 479 597 539 481 541 599 539 601 483 541 485 603 601 543 483 603 485 501 543 569 451 605 545 487 545 549 419 607 487 547 549 553 426 551 609 489 553 555 432 555 557 436 557 567 448 560 561 583 612 565 613 612 564 565 551 615 609 567 617 501 569 619 503 503 621 505 505 623 507 509 507 625 511 509 627 511 629 513 513 631 571 573 453 571 573 633 515 577 575 635 577 635 637 581 579 639 581 642 643 647 648 649 587 651 588 654 593 655 659 660 661 593 537 663 660 665 661 537 599 663 597 667 539 599 541 669 667 601 539 669 541 603 601 671 543 617 603 501 543 671 569 545 605 673 605 487 607 549 545 675 607 547 677 549 679 553 553 681 555 683 557 555 685 567 557 688 613 689 612 613 691 615 694 695 615 695 609 697 617 567 569 699 619 503 619 621 505 621 623 507 623 625 509 625 627 511 627 629 513 629 631 571 631 701 573 571 703 705 633 573 707 633 705 637 635 709 637 709 711 715 716 717 711 719 659 723 724 725 719 660 659 725 724 727 730 731 597 663 599 733 731 667 597 599 669 733 667 735 601 669 603 737 735 671 601 617 737 603 671 699 569 673 605 739 545 673 675 605 607 741 549 675 679 743 607 677 553 679 681 555 681 683 683 685 557 685 697 567 694 746 747 694 747 695 743 677 749 697 751 617 699 753 619 619 755 621 623 621 757 625 623 759 627 625 761 627 763 629 629 765 631 631 767 701 703 571 701 705 573 703 707 705 769 707 769 771 711 709 719 746 723 773 773 723 725 776 777 730 780 663 781 777 731 730 663 733 781 731 783 667 733 669 785 783 735 667 669 737 785 735 787 671 751 737 617 671 787 699 673 739 789 739 605 741 675 673 791 741 607 743 679 675 793 679 795 681 681 797 683 683 799 685 801 697 685 746 773 747 804 749 805 743 749 804 807 751 697 699 809 753 619 753 755 621 755 757 623 757 759 625 759 761 627 761 763 629 763 765 631 765 767 701 767 811 703 701 813 705 703 815 769 705 815 771 769 817 771 817 776 820 780 821 817 777 776 780 781 821 777 823 731 781 733 825 823 783 731 733 785 825 783 827 735 785 737 829 735 827 787 751 829 737 699 787 809 789 739 831 673 789 791 739 741 833 675 791 793 741 743 835 679 793 795 681 795 797 683 797 799 685 799 801 801 807 697 837 805 820 804 805 837 835 743 804 807 839 751 809 841 753 753 843 755 757 755 845 759 757 847 761 759 849 761 851 763 763 853 765 765 855 767 811 767 857 813 701 811 815 703 813 769 815 859 817 769 859 820 821 837 777 817 861 821 781 863 861 823 777 781 825 863 823 865 783 825 785 867 865 827 783 785 829 867 787 827 869 751 839 829 787 869 809 789 831 871 831 739 833 791 789 873 833 741 835 793 791 875 795 793 877 795 879 797 797 881 799 799 883 801 885 807 801 887 804 837 835 804 887 889 839 807 809 891 841 753 841 843 755 843 845 757 845 847 759 847 849 761 849 851 763 851 853 765 853 855 857 767 855 893 811 857 895 813 811 815 813 897 859 815 897 817 859 861 899 837 821 821 863 899 861 901 823 863 825 903 901 865 823 903 825 867 827 865 905 829 907 867 827 905 869 829 839 907 891 809 869 871 831 909 873 789 871 831 833 911 791 873 875 833 835 913 793 875 877 795 877 879 797 879 881 799 881 883 801 883 885 885 889 807 887 837 899 913 835 887 889 915 839 917 841 891 917 843 841 917 845 843 847 845 917 919 847 917 919 917 921 921 917 853 855 853 917 857 855 917 857 917 893 895 811 893 897 813 895 859 897 923 861 859 923 899 863 925 923 901 861 925 863 903 901 927 865 867 929 903 865 927 905 867 907 929 869 905 931 915 907 839 869 931 891 871 909 933 831 911 909 871 933 873 833 913 911 873 933 875 935 875 933 937 935 933 937 933 881 881 933 883 933 885 883 933 889 885 939 887 899 913 887 939 933 915 889 917 891 941 893 917 943 895 893 945 897 895 947 897 947 923 939 899 925 923 949 901 925 903 951 901 949 927 903 929 951 905 927 953 907 955 929 905 953 931 915 955 907 909 957 933 909 911 959 913 961 911 913 939 961 933 963 915 917 941 965 943 917 967 895 945 947 923 947 949 939 925 969 925 951 969 949 971 927 929 973 951 927 971 953 929 955 973 957 975 933 911 961 959 939 969 961 933 977 963 979 917 965 967 917 979 947 945 981 947 981 949 969 951 983 949 981 971 951 973 983 975 985 933 961 987 959 961 969 987 985 977 933 969 983 987</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID256\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID261\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID264\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID262\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID263\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID262\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID265\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID265\">0.09004729241132736 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.2292656004428864 0.09004729241132736 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.2292656004428864 0.09004729241132736 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.2658107578754425 0.2706232964992523 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.1927204430103302 -0.09052873402833939 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.2658107578754425 0.09004729241132736 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.2292656004428864 -0.09052873402833939 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.3023560345172882 0.2706232964992523 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.1927204430103302 -0.2711048126220703 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.3023560345172882 0.09004729241132736 1.979883551597595 -0.3023560345172882 -0.09052873402833939 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.2292656004428864 -0.2711048126220703 1.979883551597595 -0.2292656004428864 -0.09052873402833939 1.979883551597595 -0.3023560345172882 -0.09052873402833939 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.3023560345172882</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID263\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID266\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID266\">0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"36\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 1 0 5 4 7 6 8 1 4 9 7 10 6 0 5 7 11 12 8 6 7 9 13 14 6 10 11 7 15 12 16 8 9 17 13 14 12 6 7 13 15 18 14 10 11 15 19 20 16 12 13 17 21 22 12 14 15 13 23 24 14 18 19 15 25 22 20 12 13 21 23 24 22 14 15 23 25 26 20 22 23 21 27 28 22 24 25 23 29 28 26 22 23 27 29 30 26 28 29 27 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID264\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID269\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID272\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID270\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID271\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID270\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"378\" source=\"#ID273\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1134\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID273\">-0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.8002784848213196 0.6196871995925903 -0.1194272115826607 -0.8002784848213196 0.6196871995925903 -0.1194272115826607 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.8002784848213196 0.6200764179229736 0.01818196848034859 -0.8002784848213196 0.6200764179229736 0.01818196848034859 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8002784848213196 0.7639247179031372 0.02084463648498058 -0.8002784848213196 0.7639247179031372 0.02084463648498058 -0.8002784848213196 0.7611286044120789 -0.118915356695652 -0.8002784848213196 0.7611286044120789 -0.118915356695652 -0.8002784848213196 0.6231358647346497 0.1513165235519409 -0.8002784848213196 0.6231358647346497 0.1513165235519409 -0.8002784848213196 0.7669853568077087 0.1513165235519409 -0.8002784848213196 0.7669853568077087 0.1513165235519409 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.8002784848213196 0.8771676421165466 0.02084463648498058 -0.8002784848213196 0.8771676421165466 0.02084463648498058 -0.8002784848213196 0.8771676421165466 0.1513165235519409 -0.8002784848213196 0.8771676421165466 0.1513165235519409 -0.8002784848213196 0.872636616230011 -0.118915356695652 -0.8002784848213196 0.872636616230011 -0.118915356695652 -0.7714517116546631 0.7642374038696289 0.234848827123642 -0.7714517116546631 0.7642374038696289 0.234848827123642 -0.7724733352661133 0.6222134828567505 0.2340750992298126 -0.7724733352661133 0.6222134828567505 0.2340750992298126 -0.7714517116546631 0.8763352632522583 0.234848827123642 -0.7714517116546631 0.8763352632522583 0.234848827123642 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.7714517116546631 1.068503022193909 0.234848827123642 -0.7714517116546631 1.068503022193909 0.234848827123642 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.748810887336731 0.7716558575630188 0.29511559009552 -0.748810887336731 0.7716558575630188 0.29511559009552 -0.7487359046936035 0.8783665895462036 0.29511559009552 -0.7487359046936035 0.8783665895462036 0.29511559009552 -0.7497841715812683 0.6197603940963745 0.2984656691551209 -0.7497841715812683 0.6197603940963745 0.2984656691551209 -0.8002784848213196 1.067611813545227 0.1501588523387909 -0.8002784848213196 1.067611813545227 0.1501588523387909 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.7471549510955811 1.070043087005615 0.292364776134491 -0.7471549510955811 1.070043087005615 0.292364776134491 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.7451425790786743 1.229051828384399 0.2896876931190491 -0.7451425790786743 1.229051828384399 0.2896876931190491 -0.7714517116546631 1.22945249080658 0.2351814955472946 -0.7714517116546631 1.22945249080658 0.2351814955472946 -0.6762760281562805 0.8758261203765869 0.358364999294281 -0.6762760281562805 0.8758261203765869 0.358364999294281 -0.6766242980957031 0.7716558575630188 0.3602698147296906 -0.6766242980957031 0.7716558575630188 0.3602698147296906 -0.6753841638565064 1.070043087005615 0.342584639787674 -0.6753841638565064 1.070043087005615 0.342584639787674 -0.6771467328071594 0.6242926120758057 0.356035441160202 -0.6771467328071594 0.6242926120758057 0.356035441160202 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.6740805506706238 1.229051828384399 0.3374882340431213 -0.6740805506706238 1.229051828384399 0.3374882340431213 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6728717684745789 1.338770151138306 0.3299798667430878 -0.6728717684745789 1.338770151138306 0.3299798667430878 -0.7432098388671875 1.33383572101593 0.2877088189125061 -0.7432098388671875 1.33383572101593 0.2877088189125061 -0.7714517116546631 1.336279630661011 0.2374546378850937 -0.7714517116546631 1.336279630661011 0.2374546378850937 -0.6551044583320618 0.770412027835846 0.3768142461776733 -0.6551044583320618 0.770412027835846 0.3768142461776733 -0.6547621488571167 0.8788958787918091 0.36956787109375 -0.6547621488571167 0.8788958787918091 0.36956787109375 -0.6538115739822388 0.6258586049079895 0.3818635642528534 -0.6538115739822388 0.6258586049079895 0.3818635642528534 -0.652993381023407 1.071277260780335 0.3560464382171631 -0.652993381023407 1.071277260780335 0.3560464382171631 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6503435969352722 1.231573462486267 0.3451077938079834 -0.6503435969352722 1.231573462486267 0.3451077938079834 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.6467726230621338 1.337924003601074 0.3337158262729645 -0.6467726230621338 1.337924003601074 0.3337158262729645 -0.6713939309120178 1.432783603668213 0.3242798447608948 -0.6713939309120178 1.432783603668213 0.3242798447608948 -0.7414166927337647 1.431114196777344 0.2848821878433228 -0.7414166927337647 1.431114196777344 0.2848821878433228 -0.7714517116546631 1.430078029632568 0.2376271635293961 -0.7714517116546631 1.430078029632568 0.2376271635293961 -0.6349050998687744 0.7708060741424561 0.3701403439044952 -0.6349050998687744 0.7708060741424561 0.3701403439044952 -0.6256678700447083 0.8783389925956726 0.3555973768234253 -0.6256678700447083 0.8783389925956726 0.3555973768234253 -0.6176331639289856 1.073966383934021 0.34251469373703 -0.6176331639289856 1.073966383934021 0.34251469373703 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6103045344352722 1.231997966766357 0.325863778591156 -0.6103045344352722 1.231997966766357 0.325863778591156 -0.6049067378044128 1.338981509208679 0.3172231614589691 -0.6049067378044128 1.338981509208679 0.3172231614589691 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.5988566875457764 1.422707080841065 0.303942084312439 -0.5988566875457764 1.422707080841065 0.303942084312439 -0.6432016491889954 1.43192446231842 0.3254314661026001 -0.6432016491889954 1.43192446231842 0.3254314661026001 -0.6704087257385254 1.524521231651306 0.3170008361339569 -0.6704087257385254 1.524521231651306 0.3170008361339569 -0.7381420135498047 1.524521231651306 0.2817167937755585 -0.7381420135498047 1.524521231651306 0.2817167937755585 -0.7714517116546631 1.527541875839233 0.2388848811388016 -0.7714517116546631 1.527541875839233 0.2388848811388016 -0.6096035838127136 0.8772760033607483 0.3508152365684509 -0.6096035838127136 0.8772760033607483 0.3508152365684509 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.5969606637954712 1.076266169548035 0.3287610411643982 -0.5969606637954712 1.076266169548035 0.3287610411643982 -0.5887119770050049 1.234852313995361 0.3147788345813751 -0.5887119770050049 1.234852313995361 0.3147788345813751 -0.581000566482544 1.340795755386353 0.2962920665740967 -0.581000566482544 1.340795755386353 0.2962920665740967 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.5952385663986206 1.534539937973023 0.2910608053207398 -0.5952385663986206 1.534539937973023 0.2910608053207398 -0.5756016969680786 1.432812809944153 0.2799475789070129 -0.5756016969680786 1.432812809944153 0.2799475789070129 -0.6396305561065674 1.523992538452148 0.3161111772060394 -0.6396305561065674 1.523992538452148 0.3161111772060394 -0.6688806414604187 1.630582451820374 0.3066250681877136 -0.6688806414604187 1.630582451820374 0.3066250681877136 -0.7326781153678894 1.627527952194214 0.2751796841621399 -0.7326781153678894 1.627527952194214 0.2751796841621399 -0.7656499743461609 1.629548072814941 0.2351733148097992 -0.7656499743461609 1.629548072814941 0.2351733148097992 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.8002784848213196 1.629548072814941 0.1532912850379944 -0.8002784848213196 1.629548072814941 0.1532912850379944 -0.5857915282249451 1.635170221328735 0.2697256505489349 -0.5857915282249451 1.635170221328735 0.2697256505489349 -0.5694620013237 1.539629101753235 0.2627097368240356 -0.5694620013237 1.539629101753235 0.2627097368240356 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.635464072227478 1.630808830261231 0.3067907989025116 -0.635464072227478 1.630808830261231 0.3067907989025116 -0.6664205193519592 1.735270857810974 0.2955930531024933 -0.6664205193519592 1.735270857810974 0.2955930531024933 -0.725673258304596 1.735270857810974 0.2675617933273315 -0.725673258304596 1.735270857810974 0.2675617933273315 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7607758045196533 1.731385946273804 0.2290779650211334 -0.7607758045196533 1.731385946273804 0.2290779650211334 -0.8002784848213196 1.731245756149292 0.1508422940969467 -0.8002784848213196 1.731245756149292 0.1508422940969467 -0.5798652172088623 1.733703374862671 0.2523872554302216 -0.5798652172088623 1.733703374862671 0.2523872554302216 -0.5607426762580872 1.635875701904297 0.243652269244194 -0.5607426762580872 1.635875701904297 0.243652269244194 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.6283220648765564 1.734643340110779 0.2933281362056732 -0.6283220648765564 1.734643340110779 0.2933281362056732 -0.6636370420455933 1.828536510467529 0.2839697897434235 -0.6636370420455933 1.828536510467529 0.2839697897434235 -0.7195442318916321 1.830480456352234 0.2584208846092224 -0.7195442318916321 1.830480456352234 0.2584208846092224 -0.780127227306366 1.770382642745972 0.08878238499164581 -0.780127227306366 1.770382642745972 0.08878238499164581 -0.7555970549583435 1.832421541213989 0.2219224870204926 -0.7555970549583435 1.832421541213989 0.2219224870204926 -0.789497435092926 1.832582235336304 0.1508422940969467 -0.789497435092926 1.832582235336304 0.1508422940969467 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.5481609702110291 1.737459182739258 0.2144985496997833 -0.5481609702110291 1.737459182739258 0.2144985496997833 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.6187847852706909 1.828536510467529 0.2750792801380158 -0.6187847852706909 1.828536510467529 0.2750792801380158 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.780127227306366 1.831223368644714 0.08806630969047546 -0.780127227306366 1.831223368644714 0.08806630969047546 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7611757516860962 1.848836660385132 0.05843546241521835 -0.7611757516860962 1.848836660385132 0.05843546241521835 -0.7789089679718018 1.794281721115112 0.06106704473495483 -0.7789089679718018 1.794281721115112 0.06106704473495483 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5419393181800842 1.786986827850342 0.1989490985870361 -0.5419393181800842 1.786986827850342 0.1989490985870361 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.5395102500915527 1.831621766090393 0.1790818572044373 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5395102500915527 1.831621766090393 0.1790818572044373 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7694121599197388 1.816561579704285 0.03192228823900223 -0.7694121599197388 1.816561579704285 0.03192228823900223 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.7185090184211731 1.866551876068115 0.03108330257236958 -0.7185090184211731 1.866551876068115 0.03108330257236958 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.7789088487625122 1.840326070785523 -0.01964796893298626 -0.7789088487625122 1.840326070785523 -0.01964796893298626 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.721648633480072 1.884884715080261 -0.0176821406930685 -0.721648633480072 1.884884715080261 -0.0176821406930685 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.6637756824493408 1.907618165016174 -0.01770789735019207 -0.6637756824493408 1.907618165016174 -0.01770789735019207 -0.7765349745750427 1.862605094909668 -0.08081070333719254 -0.7765349745750427 1.862605094909668 -0.08081070333719254 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.6023380160331726 1.907618165016174 0.02810462191700935 -0.6023380160331726 1.907618165016174 0.02810462191700935 -0.7276830077171326 1.896474838256836 -0.07735307514667511 -0.7276830077171326 1.896474838256836 -0.07735307514667511 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6013118028640747 1.918723344802856 -0.0167639497667551 -0.6013118028640747 1.918723344802856 -0.0167639497667551 -0.6637756824493408 1.918723344802856 -0.0708390548825264 -0.6637756824493408 1.918723344802856 -0.0708390548825264 -0.7765349745750427 1.868109583854675 -0.1344994306564331 -0.7765349745750427 1.868109583854675 -0.1344994306564331 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.7254838347434998 1.896474838256836 -0.1368977874517441 -0.7254838347434998 1.896474838256836 -0.1368977874517441 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.6013118028640747 1.918723344802856 -0.06880220025777817 -0.6013118028640747 1.918723344802856 -0.06880220025777817 -0.6637756824493408 1.923628926277161 -0.1305911093950272 -0.6637756824493408 1.923628926277161 -0.1305911093950272 -0.7681390643119812 1.864772439002991 -0.1993826925754547 -0.7681390643119812 1.864772439002991 -0.1993826925754547 -0.7100864052772522 1.889798879623413 -0.1963487863540649 -0.7100864052772522 1.889798879623413 -0.1963487863540649 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5993821024894714 1.918723344802856 -0.1292334944009781 -0.5993821024894714 1.918723344802856 -0.1292334944009781 -0.6636860370635986 1.908910393714905 -0.1960339397192001 -0.6636860370635986 1.908910393714905 -0.1960339397192001 -0.7571017146110535 1.854760766029358 -0.2666657269001007 -0.7571017146110535 1.854760766029358 -0.2666657269001007 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.6893312931060791 1.878122568130493 -0.2706334590911865 -0.6893312931060791 1.878122568130493 -0.2706334590911865 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.6013118028640747 1.913129925727844 -0.1947008073329926 -0.6013118028640747 1.913129925727844 -0.1947008073329926 -0.6547057628631592 1.899369478225708 -0.2707102298736572 -0.6547057628631592 1.899369478225708 -0.2707102298736572 -0.742384135723114 1.849756956100464 -0.2961414754390717 -0.742384135723114 1.849756956100464 -0.2961414754390717 -0.6774798035621643 1.873115420341492 -0.2989807724952698 -0.6774798035621643 1.873115420341492 -0.2989807724952698 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.5953081846237183 1.902366518974304 -0.2694905698299408 -0.5953081846237183 1.902366518974304 -0.2694905698299408 -0.6453258395195007 1.887944936752319 -0.2983261346817017 -0.6453258395195007 1.887944936752319 -0.2983261346817017 -0.7028328776359558 1.811398148536682 -0.3453316688537598 -0.7028328776359558 1.811398148536682 -0.3453316688537598 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.5963053107261658 1.890616059303284 -0.2966291010379791 -0.5963053107261658 1.890616059303284 -0.2966291010379791 -0.6595970392227173 1.831865787506104 -0.3451592326164246 -0.6595970392227173 1.831865787506104 -0.3451592326164246 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.6302624344825745 1.831865787506104 -0.3451592326164246 -0.6302624344825745 1.831865787506104 -0.3451592326164246 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.5841007232666016 1.831865787506104 -0.3430174887180328 -0.5841007232666016 1.831865787506104 -0.3430174887180328 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID271\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"378\" source=\"#ID274\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1134\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID274\">-0.9971698257805797 0.0005629392510087631 -0.07517992851904062 -0.9900549072726571 -0.002353833251243577 -0.1406617931577565 -0.9976197890163987 -0.001197338959292204 -0.06894434670292125 0.9976197890163987 0.001197338959292204 0.06894434670292125 0.9900549072726571 0.002353833251243577 0.1406617931577565 0.9971698257805797 -0.0005629392510087631 0.07517992851904062 -0.999998772192228 0.001297841649654843 -0.000878191943182305 0.999998772192228 -0.001297841649654843 0.000878191943182305 -0.9907504747950866 -0.003274201081718127 -0.1356568328562443 0.9907504747950866 0.003274201081718127 0.1356568328562443 -0.9996866423995363 -0.01288064492216578 0.02146406285703578 0.9996866423995363 0.01288064492216578 -0.02146406285703578 -1 0 0 1 -0 -0 -0.9977881690244589 -0.0004287993236961485 -0.06647244456131977 0.9977881690244589 0.0004287993236961485 0.06647244456131977 -0.9855234423644645 -0.01500868463078184 0.1688735738229934 0.9855234423644645 0.01500868463078184 -0.1688735738229934 -0.9862287710324551 -8.267499692004867e-018 0.1653868531286971 0.9862287710324551 8.267499692004867e-018 -0.1653868531286971 -0.9916285418780479 -0.004290259579512917 -0.1290520383626579 0.9916285418780479 0.004290259579512917 0.1290520383626579 -0.985749350796998 -0.03215857008479352 0.1651182720761036 0.985749350796998 0.03215857008479352 -0.1651182720761036 -1 0 0 1 -0 -0 -0.9862255066865959 0.0001385711715906435 0.1654062597328094 0.9862255066865959 -0.0001385711715906435 -0.1654062597328094 -0.9984170026492772 -0.005688992607919956 -0.05595644899330283 0.9984170026492772 0.005688992607919956 0.05595644899330283 -0.9410469154779283 0.001844830909214399 0.3382710443836322 0.9410469154779283 -0.001844830909214399 -0.3382710443836322 -0.9472759744194746 -0.005534136034595238 0.3203710374331382 0.9472759744194746 0.005534136034595238 -0.3203710374331382 -0.9399700399246553 0.002496395944578447 0.3412478454896523 0.9399700399246553 -0.002496395944578447 -0.3412478454896523 -0.9935588885764284 -0.01612484945244063 -0.1121638273281921 0.9935588885764284 0.01612484945244063 0.1121638273281921 -0.9613973563932222 -0.002189225636765583 0.2751551024626563 0.9613973563932222 0.002189225636765583 -0.2751551024626563 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 -0.9334254836337974 0.003566250945204206 0.3587536039640679 0.9334254836337974 -0.003566250945204206 -0.3587536039640679 -0.9986374256045345 -0.003641894733685418 -0.05205793680791224 0.9986374256045345 0.003641894733685418 0.05205793680791224 -0.8268226581498774 0.009422437119762919 0.5623837743469269 0.8268226581498774 -0.009422437119762919 -0.5623837743469269 -0.8168016371698678 0.01709359352879232 0.5766653228493074 0.8168016371698678 -0.01709359352879232 -0.5766653228493074 -0.8163226983969137 -8.631410377862732e-005 0.5775960912539633 0.8163226983969137 8.631410377862732e-005 -0.5775960912539633 -0.9866427530423128 0.0003843367440036173 0.1628985271706077 0.9866427530423128 -0.0003843367440036173 -0.1628985271706077 -0.9999089323302191 2.494934331033375e-019 -0.01349544538876384 0.9999089323302191 -2.494934331033375e-019 0.01349544538876384 -0.7779781572466521 0.0170058673868699 0.6280611334269329 0.7779781572466521 -0.0170058673868699 -0.6280611334269329 -0.8419596631426931 0.02106523826798618 0.5391290952799299 0.8419596631426931 -0.02106523826798618 -0.5391290952799299 -1 0 0 1 -0 -0 -0.7541959415760483 0.0251328646306682 0.6561682869704039 0.7541959415760483 -0.0251328646306682 -0.6561682869704039 -0.9237461769474246 0.001311369236523803 0.3830029776460528 0.9237461769474246 -0.001311369236523803 -0.3830029776460528 -0.5722869724216011 0.04950486075750642 0.8185578110053667 0.5722869724216011 -0.04950486075750642 -0.8185578110053667 -0.6404317868099004 0.01381361012202974 0.7678908194651599 0.6404317868099004 -0.01381361012202974 -0.7678908194651599 -0.5511097648203741 0.03972113168969944 0.8334868078241682 0.5511097648203741 -0.03972113168969944 -0.8334868078241682 -0.6923513999901381 0.01264498783236419 0.7214496816926425 0.6923513999901381 -0.01264498783236419 -0.7214496816926425 -0.9579561741255267 -0.01503452474447218 0.2865203858724391 0.9579561741255267 0.01503452474447218 -0.2865203858724391 -0.4447687272850421 0.0557822628515867 0.8939066608882611 0.4447687272850421 -0.0557822628515867 -0.8939066608882611 -0.7536840750669706 0.06163170476199874 0.6543407735718255 0.7536840750669706 -0.06163170476199874 -0.6543407735718255 -0.3458396898734605 0.06829452254788901 0.9358048766159453 0.3458396898734605 -0.06829452254788901 -0.9358048766159453 -0.718680268982603 0.02684640343212302 0.6948222374088595 0.718680268982603 -0.02684640343212302 -0.6948222374088595 -0.8902152677398911 -0.01369281234898472 0.455334255215627 0.8902152677398911 0.01369281234898472 -0.455334255215627 -0.1570689378202707 0.04904402033157927 0.9863691159204689 0.1570689378202707 -0.04904402033157927 -0.9863691159204689 -0.02443527989440703 0.06659550801904349 0.9974808045311787 0.02443527989440703 -0.06659550801904349 -0.9974808045311787 -0.2630385832787527 0.04030153307416526 0.9639431986059028 0.2630385832787527 -0.04030153307416526 -0.9639431986059028 -0.08336213897397456 0.06610197637446741 0.9943245358056257 0.08336213897397456 -0.06610197637446741 -0.9943245358056257 -0.7783090938606397 0.06431607241494514 0.6245785757156144 0.7783090938606397 -0.06431607241494514 -0.6245785757156144 0.06493009687762971 0.06947966491896254 0.9954680601014834 -0.06493009687762971 -0.06947966491896254 -0.9954680601014834 -0.8957292464329562 -0.06402755354882821 0.4399654412237403 0.8957292464329562 0.06402755354882821 -0.4399654412237403 0.1276482232535163 0.09421563455280727 0.9873344647615783 -0.1276482232535163 -0.09421563455280727 -0.9873344647615783 -0.2787761319735821 0.07301649224843831 0.9575763468787132 0.2787761319735821 -0.07301649224843831 -0.9575763468787132 -0.6891604595520967 0.03963249604408594 0.72352410205 0.6891604595520967 -0.03963249604408594 -0.72352410205 -0.8617532152450977 0.001114275120065018 0.507326477138433 0.8617532152450977 -0.001114275120065018 -0.507326477138433 0.2920834002159803 0.07212648049786291 0.953669260346197 -0.2920834002159803 -0.07212648049786291 -0.953669260346197 0.3571216532956693 0.06599922729284308 0.9317232565220831 -0.3571216532956693 -0.06599922729284308 -0.9317232565220831 0.4506015337891731 0.06628168920434097 0.8902611950562956 -0.4506015337891731 -0.06628168920434097 -0.8902611950562956 0.2693223248807161 0.03468885815107804 0.9624251495264555 0.2698092361900396 0.03894437952874851 0.9621259332175119 -0.2698092361900396 -0.03894437952874851 -0.9621259332175119 -0.2693223248807161 -0.03468885815107804 -0.9624251495264555 0.4411122495725708 0.0537295665045241 0.8958421272524874 -0.4411122495725708 -0.0537295665045241 -0.8958421272524874 0.5089459389656588 0.08994830854849475 0.8560860546695225 -0.5089459389656588 -0.08994830854849475 -0.8560860546695225 -0.893140624757341 -0.001746560783355491 0.4497741365769009 0.893140624757341 0.001746560783355491 -0.4497741365769009 0.5746451336020118 0.0794064839342916 0.8145413315091624 -0.5746451336020118 -0.0794064839342916 -0.8145413315091624 0.2166944550745142 0.08239317814647433 0.9727563298868236 -0.2166944550745142 -0.08239317814647433 -0.9727563298868236 -0.2291519337417415 0.08885238018855346 0.9693269034733584 0.2291519337417415 -0.08885238018855346 -0.9693269034733584 -0.6433487104130216 0.05695835373892637 0.7634514933833408 0.6433487104130216 -0.05695835373892637 -0.7634514933833408 -0.8603321617051047 0.04400776713950057 0.5078305701385226 0.8603321617051047 -0.04400776713950057 -0.5078305701385226 0.2550527083687899 0.09062810501618281 0.962670588797082 -0.2550527083687899 -0.09062810501618281 -0.962670588797082 0.2682109604760207 0.08039226475316619 0.9599999814835348 -0.2682109604760207 -0.08039226475316619 -0.9599999814835348 0.5040590655039837 0.06903469085750864 0.8609057265121769 -0.5040590655039837 -0.06903469085750864 -0.8609057265121769 0.5691070498781491 0.06388243088221356 0.8197781412086864 -0.5691070498781491 -0.06388243088221356 -0.8197781412086864 0.6651248264792729 0.08194838488496878 0.7422219529329904 -0.6651248264792729 -0.08194838488496878 -0.7422219529329904 -0.941859161629607 0.05197455383669319 0.3319638013516687 0.941859161629607 -0.05197455383669319 -0.3319638013516687 0.6004182426841933 0.09502246409311689 0.7940205697396621 -0.6004182426841933 -0.09502246409311689 -0.7940205697396621 0.6841206473431174 0.07791754646142467 0.7251950053828735 -0.6841206473431174 -0.07791754646142467 -0.7251950053828735 0.267669686032973 0.09407481440231033 0.9589071219227546 -0.267669686032973 -0.09407481440231033 -0.9589071219227546 -0.2313062834227052 0.09844300790988127 0.9678875851269249 0.2313062834227052 -0.09844300790988127 -0.9678875851269249 -0.619244317071901 0.08796980742174308 0.7802549511258077 0.619244317071901 -0.08796980742174308 -0.7802549511258077 -0.8512868441637578 0.07117766962833931 0.519850409541042 0.8512868441637578 -0.07117766962833931 -0.519850409541042 0.2193054435540003 0.09994882204899158 0.9705232379487894 -0.2193054435540003 -0.09994882204899158 -0.9705232379487894 0.8956747356556694 0.0008618938289220829 0.4447089217085428 -0.8956747356556694 -0.0008618938289220829 -0.4447089217085428 0.960647311568589 0.006749071895014515 0.2776890217574298 -0.960647311568589 -0.006749071895014515 -0.2776890217574298 0.6701335758696255 0.08537633870501175 0.7373139570640962 -0.6701335758696255 -0.08537633870501175 -0.7373139570640962 -0.9963151381735486 0.0103614777137824 0.08513979813113079 0.9963151381735486 -0.0103614777137824 -0.08513979813113079 0.6518451327680904 0.08411166198014565 0.7536731063302501 -0.6518451327680904 -0.08411166198014565 -0.7536731063302501 0.6993131868940091 0.07803092851825916 0.7105436234537067 -0.6993131868940091 -0.07803092851825916 -0.7105436234537067 0.6622904416225062 0.08497656868953818 0.7444127576212123 -0.6622904416225062 -0.08497656868953818 -0.7444127576212123 0.3142247324526497 0.08615424789633501 0.9454312577255299 -0.3142247324526497 -0.08615424789633501 -0.9454312577255299 -0.193200246653653 0.1192240843693557 0.9738887423105661 0.193200246653653 -0.1192240843693557 -0.9738887423105661 -0.594527126720041 0.1033651737012722 0.7974039982717156 0.594527126720041 -0.1033651737012722 -0.7974039982717156 -0.9837759202990764 0.00754899880848756 -0.1792427160492016 0.9837759202990764 -0.00754899880848756 0.1792427160492016 -0.8252223923057854 0.07354181259994058 0.5599996473540243 0.8252223923057854 -0.07354181259994058 -0.5599996473540243 -0.9949542336215003 0.04853849320883647 0.08780710492704381 0.9949542336215003 -0.04853849320883647 -0.08780710492704381 0.6975918817599495 0.08525706534140216 0.7114048069221802 -0.6975918817599495 -0.08525706534140216 -0.7114048069221802 0.7002563485426032 0.09092126520727779 0.7080779405255386 -0.7002563485426032 -0.09092126520727779 -0.7080779405255386 0.6677794435755355 0.08506167003832711 0.739483013346648 -0.6677794435755355 -0.08506167003832711 -0.739483013346648 0.3781520398090869 0.1064682548120612 0.9196007533193418 -0.3781520398090869 -0.1064682548120612 -0.9196007533193418 -0.1213382593086127 0.2048805149604576 0.971236841052425 0.1213382593086127 -0.2048805149604576 -0.971236841052425 -0.5551054568074277 0.1581458233571667 0.8166075130546502 0.5551054568074277 -0.1581458233571667 -0.8166075130546502 -0.9901371474068906 0.112258842923586 -0.08382351406617986 0.9901371474068906 -0.112258842923586 0.08382351406617986 -0.803288234902613 0.1033987854605901 0.5865464200149202 0.803288234902613 -0.1033987854605901 -0.5865464200149202 -0.9833532129007401 0.1393681738100481 0.1165888965838687 0.9833532129007401 -0.1393681738100481 -0.1165888965838687 -0.9757579836748939 0.1415666458278183 0.1668988977907482 0.9757579836748939 -0.1415666458278183 -0.1668988977907482 0.7419975155705617 0.1391518965907396 0.655802132172742 -0.7419975155705617 -0.1391518965907396 -0.655802132172742 0.6897713813801563 0.1108430655201028 0.7154923173976208 -0.6897713813801563 -0.1108430655201028 -0.7154923173976208 0.6647871628790784 0.1067286098731158 0.7393693474209881 -0.6647871628790784 -0.1067286098731158 -0.7393693474209881 0.4461970877580111 0.1722484814124183 0.8782019241196101 -0.4461970877580111 -0.1722484814124183 -0.8782019241196101 -0.05563229514765632 0.5289117773130566 0.8468514507020388 0.05563229514765632 -0.5289117773130566 -0.8468514507020388 -0.435165702110851 0.4515896568508939 0.7789079493314098 0.435165702110851 -0.4515896568508939 -0.7789079493314098 -0.9351368442133152 0.1146554042918252 -0.3352211521688928 0.9351368442133152 -0.1146554042918252 0.3352211521688928 -0.978895673913228 0.147226222079519 0.1417310803111279 0.978895673913228 -0.147226222079519 -0.1417310803111279 -0.7476966889115523 0.4263167318637315 0.5091205216093028 0.7476966889115523 -0.4263167318637315 -0.5091205216093028 -0.8950751141167099 0.4457783992915338 0.01105254785271177 0.8950751141167099 -0.4457783992915338 -0.01105254785271177 -0.8045196442390664 0.3681117434220877 -0.4660921436671046 0.8045196442390664 -0.3681117434220877 0.4660921436671046 -0.959812087916502 0.2719516153311274 0.0693042192666197 0.959812087916502 -0.2719516153311274 -0.0693042192666197 0.6459848051780541 0.5996263944146406 0.4723894776562762 -0.6459848051780541 -0.5996263944146406 -0.4723894776562762 0.7457844295604762 0.1824636226309696 0.640712580679932 -0.7457844295604762 -0.1824636226309696 -0.640712580679932 0.5768067994535729 0.1625941184643131 0.8005354887479621 -0.5768067994535729 -0.1625941184643131 -0.8005354887479621 0.4503136938074429 0.4919927923707287 0.7450910477416499 -0.4503136938074429 -0.4919927923707287 -0.7450910477416499 -0.7666597499316146 0.508869338847824 -0.3915160581832792 0.7666597499316146 -0.508869338847824 0.3915160581832792 -0.965191148852219 0.2074110258106779 0.1593320826120586 0.965191148852219 -0.2074110258106779 -0.1593320826120586 0.6720191798213647 0.2479001060540849 0.6978078240967164 0.915635216907809 0.1723123688035635 0.3632087514302132 -0.915635216907809 -0.1723123688035635 -0.3632087514302132 -0.6720191798213647 -0.2479001060540849 -0.6978078240967164 -0.5180563146018837 0.5370719857658701 -0.6657111513311301 0.5180563146018837 -0.5370719857658701 0.6657111513311301 -0.9061218933420621 0.4189367196019224 0.05861006206597097 0.9061218933420621 -0.4189367196019224 -0.05861006206597097 0.6184195938279667 0.7458954947469703 0.2473805103192755 -0.6184195938279667 -0.7458954947469703 -0.2473805103192755 -0.6923879750287439 0.6725876114897066 -0.2611987689598995 0.6923879750287439 -0.6725876114897066 0.2611987689598995 -0.9606390840088881 0.2313098313454677 0.1538450915612705 0.9606390840088881 -0.2313098313454677 -0.1538450915612705 0.3069822403524479 0.7901164364290533 0.5305449283452308 -0.3069822403524479 -0.7901164364290533 -0.5305449283452308 0.3746982762224805 0.3208309892232409 0.8698670462489877 -0.3746982762224805 -0.3208309892232409 -0.8698670462489877 -0.1488282554927515 0.9155661090944683 -0.3736159127293701 0.1488282554927515 -0.9155661090944683 0.3736159127293701 -0.8374524352939948 0.4900488263066086 0.241920578818076 0.8374524352939948 -0.4900488263066086 -0.241920578818076 0.02013432366244061 0.9948608492919433 0.09922952966113069 -0.02013432366244061 -0.9948608492919433 -0.09922952966113069 -0.5180285247407579 0.8233112786731716 0.2319590178554426 0.5180285247407579 -0.8233112786731716 -0.2319590178554426 -0.975224393760161 0.2198350414258225 0.02469689001540941 0.975224393760161 -0.2198350414258225 -0.02469689001540941 0.2427050512818961 0.9516342080442651 -0.1883788527468427 -0.2427050512818961 -0.9516342080442651 0.1883788527468427 -0.2346210444548571 0.9689518614398232 0.07800804901555697 0.2346210444548571 -0.9689518614398232 -0.07800804901555697 -0.819474038561389 0.5635690772945599 0.1041738702422332 0.819474038561389 -0.5635690772945599 -0.1041738702422332 -0.05451759974655495 0.9941628349827284 0.0931025716990618 0.05451759974655495 -0.9941628349827284 -0.0931025716990618 -0.02236446271528624 0.9851014015947033 0.1705141031809617 0.02236446271528624 -0.9851014015947033 -0.1705141031809617 -0.4496591405956503 0.886703902231043 0.1075306795617989 0.4496591405956503 -0.886703902231043 -0.1075306795617989 -0.9776483495819677 0.2082474605589881 -0.02892576239941774 0.9776483495819677 -0.2082474605589881 0.02892576239941774 0.1956975435479542 0.9610457712487652 -0.195175554345729 -0.1956975435479542 -0.9610457712487652 0.195175554345729 -0.04381310747323911 0.9905954208196149 0.1296191492980425 0.04381310747323911 -0.9905954208196149 -0.1296191492980425 -0.2045470172969875 0.9728342701465432 0.1084158685034084 0.2045470172969875 -0.9728342701465432 -0.1084158685034084 -0.8061701085817001 0.590311466549336 -0.04027565629188418 0.8061701085817001 -0.590311466549336 0.04027565629188418 -0.01476168874444083 0.9980629191000056 0.06043593354113075 0.01476168874444083 -0.9980629191000056 -0.06043593354113075 -0.419392606116148 0.903488272462289 -0.08842388511151307 0.419392606116148 -0.903488272462289 0.08842388511151307 -0.9604116408479968 0.2414820489055198 -0.1389096835359247 0.9604116408479968 -0.2414820489055198 0.1389096835359247 0.06838160924233415 0.9976586547835161 -0.001078912866593481 -0.06838160924233415 -0.9976586547835161 0.001078912866593481 0.04222899237231256 0.999029792746431 0.0124974160626191 -0.04222899237231256 -0.999029792746431 -0.0124974160626191 -0.1703502280819691 0.9826233292457884 -0.07370340978777087 0.1703502280819691 -0.9826233292457884 0.07370340978777087 -0.743332148657051 0.6421560784117094 -0.1873309577506773 0.743332148657051 -0.6421560784117094 0.1873309577506773 -0.3686957111908107 0.9044387687211277 -0.2146019249301191 0.3686957111908107 -0.9044387687211277 0.2146019249301191 -0.8917894335220302 0.2447762468689626 -0.3805209524155026 0.8917894335220302 -0.2447762468689626 0.3805209524155026 0.06630971025854703 0.9976983597810961 0.01417763081541426 -0.06630971025854703 -0.9976983597810961 -0.01417763081541426 0.04403933478065045 0.9976015098838473 -0.05340191447453794 -0.04403933478065045 -0.9976015098838473 0.05340191447453794 -0.2225625318643727 0.9576445604125241 -0.1827096475898951 0.2225625318643727 -0.9576445604125241 0.1827096475898951 -0.7124877891680587 0.6192867656417471 -0.3299167352339004 0.7124877891680587 -0.6192867656417471 0.3299167352339004 0.05913006371641766 0.998026649424209 0.02112918843636627 -0.05913006371641766 -0.998026649424209 -0.02112918843636627 -0.4033096759206618 0.8742863152187486 -0.2701198702983436 0.4033096759206618 -0.8742863152187486 0.2701198702983436 -0.8134171882056506 0.211723434582368 -0.5417800893169285 0.8134171882056506 -0.211723434582368 0.5417800893169285 0.01657746807843397 0.9998193993815981 -0.009292802178504271 -0.01657746807843397 -0.9998193993815981 0.009292802178504271 -0.02580076011921999 0.9936985509212223 -0.1090757107441127 0.02580076011921999 -0.9936985509212223 0.1090757107441127 -0.2734955781683317 0.9192954085383365 -0.2830125802198605 0.2734955781683317 -0.9192954085383365 0.2830125802198605 -0.5880241288714962 0.5915554449308768 -0.5516246726149496 0.5880241288714962 -0.5915554449308768 0.5516246726149496 -0.3472030503156433 0.7613958998613115 -0.5474726710310721 0.3472030503156433 -0.7613958998613115 0.5474726710310721 -0.6116960464249118 0.289453862162385 -0.7362366524884584 0.6116960464249118 -0.289453862162385 0.7362366524884584 0.002326696679450597 0.9915085948100195 -0.1300203557156428 -0.002326696679450597 -0.9915085948100195 0.1300203557156428 -0.01557989416257686 0.9619313418665531 -0.2728467709772202 0.01557989416257686 -0.9619313418665531 0.2728467709772202 -0.1534675911282402 0.7918643444445248 -0.5910994488838054 0.1534675911282402 -0.7918643444445248 0.5910994488838054 -0.3471650544122291 0.4496793716837986 -0.8229610486997658 0.3471650544122291 -0.4496793716837986 0.8229610486997658 0.009548372349849251 0.9875451512375372 -0.1570458622590819 -0.009548372349849251 -0.9875451512375372 0.1570458622590819 -0.009566344304074151 0.8013399289201441 -0.5981327640038742 0.009566344304074151 -0.8013399289201441 0.5981327640038742 -0.1286511849964354 0.5174474660113633 -0.8459887661886724 0.1286511849964354 -0.5174474660113633 0.8459887661886724 -0.2579593021808977 0.3380197859589668 -0.905096471498259 0.2579593021808977 -0.3380197859589668 0.905096471498259 0.00101513059537807 0.9767277244806438 -0.2144805859296778 -0.00101513059537807 -0.9767277244806438 0.2144805859296778 0.01572335456579693 0.4801689348661454 -0.8770351019832158 -0.01572335456579693 -0.4801689348661454 0.8770351019832158 -0.08149115589158218 0.3325277535703116 -0.939566115085541 0.08149115589158218 -0.3325277535703116 0.939566115085541 -0.0316252922276885 0.8553539284748959 -0.5170778451394682 0.0316252922276885 -0.8553539284748959 0.5170778451394682 0.006817937470603061 0.4762750335139073 -0.8792699290775122 -0.006817937470603061 -0.4762750335139073 0.8792699290775122 5.835773135693002e-018 0.3078858683395854 -0.9514232980523336 -5.835773135693002e-018 -0.3078858683395854 0.9514232980523336 0 0.3078858683395855 -0.9514232980523336 -0 -0.3078858683395855 0.9514232980523336 0.02307212455675351 0.3132164083073376 -0.9494014738957851 -0.02307212455675351 -0.3132164083073376 0.9494014738957851 -9.880966486775119e-018 0.3078858683395854 -0.9514232980523336 9.880966486775119e-018 -0.3078858683395854 0.9514232980523336 -0.02929681047929539 0.4931386002173482 -0.8694573122766952 0.02929681047929539 -0.4931386002173482 0.8694573122766952 0.01001146315705132 0.3023485085216996 -0.9531448735633838 -0.01001146315705132 -0.3023485085216996 0.9531448735633838 0.01611345675114597 0.2259029614738796 -0.97401653400179 -0.01611345675114597 -0.2259029614738796 0.97401653400179</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"297\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 0 2 6 2 1 8 10 0 6 6 2 12 2 8 14 10 6 16 2 14 12 6 12 18 14 8 20 16 6 18 22 10 16 12 14 24 18 12 26 14 20 28 30 16 18 32 22 16 26 12 24 14 28 24 34 18 26 28 20 36 32 16 30 30 18 34 38 22 32 26 24 40 24 28 42 34 26 44 28 36 46 32 30 48 30 34 50 52 38 32 24 42 40 26 40 54 28 56 42 34 44 58 26 54 44 28 46 56 48 30 50 52 32 48 50 34 58 60 38 52 54 40 62 58 44 64 44 54 66 48 50 68 52 48 70 50 58 72 60 52 74 54 62 76 58 64 78 64 44 66 54 76 66 70 48 68 68 50 72 74 52 70 72 58 78 80 60 74 78 64 82 64 66 84 66 76 86 70 68 88 68 72 90 92 74 70 72 78 94 96 80 74 78 82 98 64 84 82 84 66 86 86 76 100 70 88 92 88 68 90 90 72 94 96 74 92 94 78 98 98 82 102 82 84 104 84 86 106 86 100 108 92 88 110 88 90 112 90 94 114 116 92 117 94 98 120 98 102 122 82 104 102 84 106 104 86 108 106 108 100 124 110 88 112 92 110 117 112 90 114 114 94 120 120 98 122 122 102 126 102 104 128 104 106 130 106 108 132 108 124 134 110 112 136 117 110 138 112 114 136 114 120 140 120 122 142 102 128 126 122 126 144 104 130 128 106 132 130 132 108 134 134 124 146 110 136 138 136 114 140 140 120 142 142 122 144 126 128 148 144 126 150 128 130 152 130 132 154 132 134 156 134 146 158 138 136 160 136 140 160 140 142 162 142 144 164 128 152 148 126 148 150 144 150 166 130 154 152 132 156 154 156 134 158 158 146 168 160 140 162 162 142 164 164 144 166 148 152 170 150 148 172 166 150 174 152 154 176 154 156 178 156 158 180 168 146 182 158 168 184 152 176 170 172 148 170 150 172 174 154 178 176 156 180 178 158 184 180 168 182 186 168 186 184 170 176 188 172 170 190 174 172 192 176 178 194 178 180 196 180 184 198 186 182 200 184 186 202 176 194 188 190 170 188 172 190 192 178 196 194 180 198 196 198 184 202 186 200 204 182 206 200 202 186 204 188 194 208 190 188 210 192 190 212 194 196 214 196 198 216 198 202 218 200 220 204 206 222 200 202 204 224 194 214 208 210 188 208 190 210 212 196 216 214 198 218 216 202 224 218 204 220 226 220 200 228 200 222 230 204 226 224 208 214 232 234 210 208 212 210 236 214 216 238 226 220 240 220 228 240 200 230 228 222 242 230 232 214 238 244 208 245 234 208 244 210 234 236 240 228 248 230 250 228 230 242 250 252 244 245 236 234 244 248 228 254 250 254 228 242 256 250 244 252 258 236 244 260 248 254 262 264 254 250 250 256 264 266 258 252 260 244 258 268 262 254 264 268 254 256 270 264 272 266 252 268 274 262 264 276 268 264 270 276 278 266 272 262 274 280 282 274 268 276 282 268 270 284 276 286 278 272 262 280 286 274 288 280 282 290 274 276 292 282 276 284 292 280 278 286 288 294 280 274 290 288 282 296 290 292 296 282 284 298 292 280 294 278 288 300 294 290 302 288 296 304 290 306 296 292 298 306 292 302 300 288 290 304 302 296 308 304 306 308 296 298 310 306 302 312 300 304 314 302 308 316 304 306 318 308 310 318 306 320 312 302 314 320 302 304 316 314 308 322 316 318 322 308 310 324 318 314 326 320 316 328 314 322 330 316 332 322 318 324 332 318 328 326 314 316 330 328 334 330 322 332 334 322 324 336 332 328 338 326 330 340 328 334 342 330 332 344 334 332 336 344 328 346 338 340 346 328 330 348 340 342 348 330 334 350 342 334 344 350 344 336 352 340 354 346 340 348 354 342 356 348 342 350 356 344 358 350 344 352 358 348 360 354 348 356 362 350 364 356 350 358 366 348 362 360 356 368 362 356 370 368 362 372 360 362 368 374 362 374 372 372 374 376</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID272\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"297\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 7 3 5 9 4 3 7 5 11 13 3 7 15 9 3 17 7 11 13 15 3 19 13 7 21 9 15 19 7 17 17 11 23 25 15 13 27 13 19 29 21 15 19 17 31 17 23 33 25 13 27 25 29 15 27 19 35 37 21 29 31 17 33 35 19 31 33 23 39 41 25 27 43 29 25 45 27 35 47 37 29 49 31 33 51 35 31 33 39 53 41 43 25 55 41 27 43 57 29 59 45 35 45 55 27 57 47 29 51 31 49 49 33 53 59 35 51 53 39 61 63 41 55 65 45 59 67 55 45 69 51 49 71 49 53 73 59 51 75 53 61 77 63 55 79 65 59 67 45 65 67 77 55 69 49 71 73 51 69 71 53 75 79 59 73 75 61 81 83 65 79 85 67 65 87 77 67 89 69 71 91 73 69 71 75 93 95 79 73 75 81 97 99 83 79 83 85 65 87 67 85 101 77 87 93 89 71 91 69 89 95 73 91 93 75 97 99 79 95 103 83 99 105 85 83 107 87 85 109 101 87 111 89 93 113 91 89 115 95 91 118 93 119 121 99 95 123 103 99 103 105 83 105 107 85 107 109 87 125 101 109 113 89 111 118 111 93 115 91 113 121 95 115 123 99 121 127 103 123 129 105 103 131 107 105 133 109 107 135 125 109 137 113 111 139 111 118 137 115 113 141 121 115 143 123 121 127 129 103 145 127 123 129 131 105 131 133 107 135 109 133 147 125 135 139 137 111 141 115 137 143 121 141 145 123 143 149 129 127 151 127 145 153 131 129 155 133 131 157 135 133 159 147 135 161 137 139 161 141 137 163 143 141 165 145 143 149 153 129 151 149 127 167 151 145 153 155 131 155 157 133 159 135 157 169 147 159 163 141 161 165 143 163 167 145 165 171 153 149 173 149 151 175 151 167 177 155 153 179 157 155 181 159 157 183 147 169 185 169 159 171 177 153 171 149 173 175 173 151 177 179 155 179 181 157 181 185 159 187 183 169 185 187 169 189 177 171 191 171 173 193 173 175 195 179 177 197 181 179 199 185 181 201 183 187 203 187 185 189 195 177 189 171 191 193 191 173 195 197 179 197 199 181 203 185 199 205 201 187 201 207 183 205 187 203 209 195 189 211 189 191 213 191 193 215 197 195 217 199 197 219 203 199 205 221 201 201 223 207 225 205 203 209 215 195 209 189 211 213 211 191 215 217 197 217 219 199 219 225 203 227 221 205 229 201 221 231 223 201 225 227 205 233 215 209 209 211 235 237 211 213 239 217 215 241 221 227 241 229 221 229 231 201 231 243 223 239 215 233 246 209 247 247 209 235 237 235 211 249 229 241 229 251 231 251 243 231 246 247 253 247 235 237 255 229 249 229 255 251 251 257 243 259 253 247 261 247 237 263 255 249 251 255 265 265 257 251 253 259 267 259 247 261 255 263 269 255 269 265 265 271 257 253 267 273 263 275 269 269 277 265 277 271 265 273 267 279 281 275 263 269 275 283 269 283 277 277 285 271 273 279 287 287 281 263 281 289 275 275 291 283 283 293 277 293 285 277 287 279 281 281 295 289 289 291 275 291 297 283 283 297 293 293 299 285 279 295 281 295 301 289 289 303 291 291 305 297 293 297 307 293 307 299 289 301 303 303 305 291 305 309 297 297 309 307 307 311 299 301 313 303 303 315 305 305 317 309 309 319 307 307 319 311 303 313 321 303 321 315 315 317 305 317 323 309 309 323 319 319 325 311 321 327 315 315 329 317 317 331 323 319 323 333 319 333 325 315 327 329 329 331 317 323 331 335 323 335 333 333 337 325 327 339 329 329 341 331 331 343 335 335 345 333 345 337 333 339 347 329 329 347 341 341 349 331 331 349 343 343 351 335 351 345 335 353 337 345 347 355 341 355 349 341 349 357 343 357 351 343 351 359 345 359 353 345 355 361 349 363 357 349 357 365 351 367 359 351 361 363 349 363 369 357 369 371 357 361 373 363 375 369 363 373 375 363 377 375 373</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID272\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID275\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID278\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID276\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID277\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID276\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID280\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID280\">-0.7116498351097107 1.906256556510925 0.2465686351060867 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6608441472053528 1.925890922546387 0.04520654678344727</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID277\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID281\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID281\">-0.435165702110851 0.4515896568508939 0.7789079493314098 -0.06368333310271433 0.7816356971273526 0.620475680475203 -0.05563229514765632 0.5289117773130566 0.8468514507020388 0.05563229514765632 -0.5289117773130566 -0.8468514507020388 0.06368333310271433 -0.7816356971273526 -0.620475680475203 0.435165702110851 -0.4515896568508939 -0.7789079493314098 0.4503136938074429 0.4919927923707287 0.7450910477416499 -0.4503136938074429 -0.4919927923707287 -0.7450910477416499 -0.357955641606925 0.726460486063723 0.5866199117229437 0.357955641606925 -0.726460486063723 -0.5866199117229437 0.3587988135093599 0.7857758001028901 0.5038053229144552 -0.3587988135093599 -0.7857758001028901 -0.5038053229144552 -0.7476966889115523 0.4263167318637315 0.5091205216093028 0.7476966889115523 -0.4263167318637315 -0.5091205216093028 0.6459848051780541 0.5996263944146406 0.4723894776562762 -0.6459848051780541 -0.5996263944146406 -0.4723894776562762 -0.6026294861515171 0.7116628314326922 0.3610730075455128 0.6026294861515171 -0.7116628314326922 -0.3610730075455128 0.5614139557093099 0.7664281898127975 0.3120932556065631 -0.5614139557093099 -0.7664281898127975 -0.3120932556065631 -0.8950751141167099 0.4457783992915338 0.01105254785271177 0.8950751141167099 -0.4457783992915338 -0.01105254785271177 0.7167870052363519 0.6972488856121056 0.007770497859147317 -0.7167870052363519 -0.6972488856121056 -0.007770497859147317 -0.7799109052037205 0.6257604651572392 -0.01276010150857372 0.7799109052037205 -0.6257604651572392 0.01276010150857372 0.6184195938279667 0.7458954947469703 0.2473805103192755 -0.6184195938279667 -0.7458954947469703 -0.2473805103192755 -0.6469293907248533 0.6898739395188838 -0.3248943074125266 0.6469293907248533 -0.6898739395188838 0.3248943074125266 0.2427050512818961 0.9516342080442651 -0.1883788527468427 -0.2427050512818961 -0.9516342080442651 0.1883788527468427 -0.7666597499316146 0.508869338847824 -0.3915160581832792 0.7666597499316146 -0.508869338847824 0.3915160581832792 0.6935024192222105 0.6221495312494236 -0.3632965115426569 -0.6935024192222105 -0.6221495312494236 0.3632965115426569 -0.5180563146018837 0.5370719857658701 -0.6657111513311301 0.5180563146018837 -0.5370719857658701 0.6657111513311301 0.1956975435479542 0.9610457712487652 -0.195175554345729 -0.1956975435479542 -0.9610457712487652 0.195175554345729 -0.3920370787496035 0.7299200010228979 -0.5599318896010566 0.3920370787496035 -0.7299200010228979 0.5599318896010566 0.436009300540624 0.6523065459228311 -0.6199935967316932 -0.436009300540624 -0.6523065459228311 0.6199935967316932 -0.1488282554927515 0.9155661090944683 -0.3736159127293701 0.1488282554927515 -0.9155661090944683 0.3736159127293701 -0.03258556170756263 0.82269437928504 -0.5675492396796997 0.03258556170756263 -0.82269437928504 0.5675492396796997</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID279\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"72\" source=\"#ID282\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID282\">0.7188386542691355 -8.291532658220529 0.1749896748126473 -8.320893956598498 0.2041830542323292 -8.150311163627059 9.672250224643861 -7.059456281068957 9.121063736486267 -7.00015437808274 9.635808610670308 -6.88973862863807 0.6639147781687854 -8.886877481008773 0.2324867331287822 -8.753934829114037 0.7762688155175496 -8.723816519917641 9.839906616466639 -6.307174060427218 9.339995661571731 -6.435828230921108 9.288313773784795 -6.250258337511604 -4.191559614331788 -6.836501395105861 -4.69878214040593 -6.693971572480447 -4.555776490174386 -6.546509488265469 15.85579309369449 -2.88317807879961 15.3954110245283 -3.130225793674685 15.7542839453301 -2.710804965467504 -4.177611420914334 -6.813955883605757 -4.384548454898964 -6.904087306834577 -4.684900128791502 -6.671571896546428 15.13162762342031 -2.942603618617635 14.94554878944722 -2.851268576834669 15.4106366706707 -2.609737105537482 -8.226513411480296 -0.7098504223906802 -8.043831377542412 -1.259634095720322 -8.44139085504138 -0.7876381362217108 16.68586566671936 -0.4969757365175341 16.59975977698542 -0.8734360458787314 16.49519576895906 -0.4117015401201064 -9.850781302299073 -2.029177671362245 -10.11583197132906 -2.034445504716346 -10.23693653686281 -1.551358442944537 17.68092000924953 -0.333467071248151 17.79621260351479 0.1513689572324142 17.91670649074802 -0.307956751485418 -10.32315030913376 4.40779187417157 -10.0581001196428 4.41307461787261 -10.45954325990876 3.982258596677514 17.1422727178355 2.524676465625354 17.10145403098541 2.971463949908351 17.33720217749696 2.997192587960516 -8.658483753761287 3.758285282074407 -8.809672350536607 3.247939079297819 -9.068603822892037 3.332556943658334 18.85280106037276 1.76687791656905 18.57308203040395 1.669767787113157 18.78896415663697 2.136613287842372 -6.327562815075143 7.424957543166874 -6.590166251534956 7.147744147272575 -6.581760019008222 7.518035654996087 17.00806838718614 4.873788786955079 16.64914884213192 5.308447629415089 16.91766513457668 5.423474394581779 -4.633608847655582 7.295671634646289 -4.875549018316793 7.380359627722972 -4.604236027962772 7.665300658634502 17.70326608388892 4.685070745077654 17.53146206826799 4.509947453012988 17.46142862806131 5.061469611505912 -1.852210723918644 10.55642798035522 -2.446473941138867 10.31730615529452 -2.085243986845924 10.65537294062357 12.79719115790005 8.928718448525228 13.23698361062379 8.581924978490923 12.68436991297344 8.726092390013315 0.9968152046229961 8.751937142296828 0.946469134028074 8.916366648893565 1.39957890577551 9.0595932442054 10.14359480581646 8.249131720626881 10.13688624953656 8.080081984372791 9.647226693335407 8.382708553762887</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 3 6 4 2 5 8 6 1 7 0 8 1 9 10 10 6 11 12 12 8 13 0 14 10 15 14 16 6 17 12 18 16 19 8 20 18 21 14 22 10 23 12 24 20 25 16 26 18 27 22 28 14 29 20 30 24 31 16 32 26 33 14 34 22 35 24 36 20 37 28 38 30 39 26 40 22 41 20 42 32 43 28 44 34 45 30 46 22 47 32 48 36 49 28 50 38 51 30 52 34 53 36 54 40 55 28 56 42 57 38 58 34 59 36 60 44 61 40 62 42 63 44 64 38 65 44 66 46 67 40 68 46 69 44 70 42 71</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID278\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID279\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 7 4 5 4 9 7 11 4 5 9 13 7 15 11 9 17 13 11 15 19 17 21 13 15 23 19 17 25 21 23 15 27 29 21 25 23 27 31 29 33 21 23 31 35 29 37 33 35 31 39 29 41 37 35 39 43 41 45 37 39 45 43 41 47 45 43 45 47</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID278\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID283\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID286\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID284\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID285\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID284\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID287\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID287\">-0.7070872783660889 1.922605037689209 0.06054756790399551 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6617981791496277 1.944134831428528 0.1425205767154694 -0.6617981791496277 1.944134831428528 0.1425205767154694 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID285\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID288\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID288\">-0.165409139121686 0.9724881256473652 -0.1640325033945932 -0.03936888359639548 0.9820447570333709 -0.1844944069278004 -0.05154784640370621 0.9986705258475552 -1.828954190066948e-005 0.05154784640370621 -0.9986705258475552 1.828954190066948e-005 0.03936888359639548 -0.9820447570333709 0.1844944069278004 0.165409139121686 -0.9724881256473652 0.1640325033945932 -0.2344195103292229 0.9677138782286453 -0.09261394636166778 0.2344195103292229 -0.9677138782286453 0.09261394636166778 0.07133911037849994 0.9829624583428812 -0.1693975702863634 -0.07133911037849994 -0.9829624583428812 0.1693975702863634 -0.2642754452526631 0.9643255572820237 0.01532020264946916 0.2642754452526631 -0.9643255572820237 -0.01532020264946916 0.1253419610089993 0.9875266825606484 -0.09529136393807591 -0.1253419610089993 -0.9875266825606484 0.09529136393807591 -0.2333211288655121 0.9667719534384546 0.1044664581084193 0.2333211288655121 -0.9667719534384546 -0.1044664581084193 0.1531163977687427 0.9876600812654266 0.03290794142900599 -0.1531163977687427 -0.9876600812654266 -0.03290794142900599 -0.1663136067224484 0.9732003845942406 0.1588105652801244 0.1663136067224484 -0.9732003845942406 -0.1588105652801244 0.1453191391419066 0.9831280205923531 0.1110929472343633 -0.1453191391419066 -0.9831280205923531 -0.1110929472343633 -0.04191050783459503 0.9827371062147273 0.1801979173069162 0.04191050783459503 -0.9827371062147273 -0.1801979173069162 0.08898259893596822 0.9845879358947005 0.1505612618744073 -0.08898259893596822 -0.9845879358947005 -0.1505612618744073</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 6 2 10 11 3 7 8 12 2 3 13 9 10 2 14 15 3 11 2 12 16 17 13 3 14 2 18 19 3 15 2 16 20 21 17 3 18 2 22 23 3 19 2 20 24 25 21 3 2 24 22 23 25 3</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID286\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID289\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID292\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID290\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID291\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID290\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID293\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID293\">-0.546968400478363 1.912085294723511 0.1417621821165085 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.546968400478363 1.912085294723511 0.1417621821165085</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID291\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID294\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID294\">0.9632631188235522 -0.001770734784068651 0.2685535857378334 0.9632631188235522 -0.001770734784068651 0.2685535857378334 0.9632631188235522 -0.001770734784068651 0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID292\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID295\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID298\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID296\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID297\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID296\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"204\" source=\"#ID299\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"612\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID299\">-0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.6028463840484619 1.335630416870117 0.1818975508213043 -0.6028463840484619 1.335630416870117 0.1818975508213043 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.6028463840484619 1.430773377418518 0.1891794055700302 -0.6028463840484619 1.430773377418518 0.1891794055700302 -0.6050586104393005 1.530340790748596 0.1673334091901779 -0.6050586104393005 1.530340790748596 0.1673334091901779 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.6008648872375488 1.63359522819519 0.123851403594017 -0.6008648872375488 1.63359522819519 0.123851403594017 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.6027937531471252 1.674088478088379 0.08723254501819611 -0.6027937531471252 1.674088478088379 0.08723254501819611 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.6027937531471252 1.703011274337769 0.06053215265274048 -0.6027937531471252 1.703011274337769 0.06053215265274048 -0.6044416427612305 1.727086067199707 0.03279396891593933 -0.6044416427612305 1.727086067199707 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.60619056224823 1.760315418243408 -0.0219960268586874 -0.60619056224823 1.760315418243408 -0.0219960268586874 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.6044694781303406 1.775644421577454 -0.07519237697124481 -0.6044694781303406 1.775644421577454 -0.07519237697124481 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.6044694781303406 1.788490056991577 -0.1259496361017227 -0.6044694781303406 1.788490056991577 -0.1259496361017227 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.6044694781303406 1.792240262031555 -0.1946214586496353 -0.6044694781303406 1.792240262031555 -0.1946214586496353 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.6074553728103638 1.788490056991577 -0.264063835144043 -0.6074553728103638 1.788490056991577 -0.264063835144043 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.6052919626235962 1.761277794837952 -0.2947392761707306 -0.6052919626235962 1.761277794837952 -0.2947392761707306 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.5915260314941406 1.761277794837952 -0.3425095975399017 -0.5915260314941406 1.761277794837952 -0.3425095975399017 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.5757541060447693 1.778753638267517 -0.3605347573757172</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID297\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"204\" source=\"#ID300\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"612\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID300\">0.003154775786052327 0.7279221052632761 -0.6856525767900384 0.00203187706716806 0.704169472516569 -0.7100290314144352 -0.005578169835515358 0.9529680193264487 -0.3030195342916218 0.005578169835515358 -0.9529680193264487 0.3030195342916218 -0.00203187706716806 -0.704169472516569 0.7100290314144352 -0.003154775786052327 -0.7279221052632761 0.6856525767900384 0.009873696533179039 0.2940161067184299 -0.9557494646124096 -0.009873696533179039 -0.2940161067184299 0.9557494646124096 -0.003893262529684494 0.9526976940201263 -0.3038946302842631 0.003893262529684494 -0.9526976940201263 0.3038946302842631 0.008412698300353367 0.295838201885185 -0.9552010180127784 -0.008412698300353367 -0.295838201885185 0.9552010180127784 -0.002151784389725178 0.9027479772971301 -0.4301644561210053 0.002151784389725178 -0.9027479772971301 0.4301644561210053 0.9967239721974597 0.07970595424672489 -0.01372166551612808 0.994807368507486 -0.08790384280203133 -0.05129536025652839 0.9641445631344157 0.263879925291912 0.02815397674009587 -0.9641445631344157 -0.263879925291912 -0.02815397674009587 -0.994807368507486 0.08790384280203133 0.05129536025652839 -0.9967239721974597 -0.07970595424672489 0.01372166551612808 0.9998659225120776 -0.004781490074433051 -0.01566123723529287 -0.9998659225120776 0.004781490074433051 0.01566123723529287 0.00862185958196769 0.2207983508858853 -0.9752813705712944 -0.00862185958196769 -0.2207983508858853 0.9752813705712944 0.003991036288046091 0.9093356525074643 -0.4160441595650297 -0.003991036288046091 -0.9093356525074643 0.4160441595650297 0.9960935768753003 0.08614723225758705 -0.01939691939787533 -0.9960935768753003 -0.08614723225758705 0.01939691939787533 0.9905918755147362 -0.1363080438040944 -0.01215949663836422 -0.9905918755147362 0.1363080438040944 0.01215949663836422 0.005673301987295233 0.2264394723743121 -0.9740087160777382 -0.005673301987295233 -0.2264394723743121 0.9740087160777382 0.004720636310207403 0.7943622490834562 -0.6074259895854802 -0.004720636310207403 -0.7943622490834562 0.6074259895854802 0.9968271721108338 0.04461136360658059 -0.06591976318737446 -0.9968271721108338 -0.04461136360658059 0.06591976318737446 0.9980321071246151 -0.06250502152018732 0.005003542061573886 -0.9980321071246151 0.06250502152018732 -0.005003542061573886 0.004096602433148256 0.1253146873242252 -0.9921085862894931 -0.004096602433148256 -0.1253146873242252 0.9921085862894931 0.008661291044890985 0.800806736223715 -0.5988602117824801 -0.008661291044890985 -0.800806736223715 0.5988602117824801 0.8956747356556694 0.0008618938289220829 0.4447089217085428 -0.8956747356556694 -0.0008618938289220829 -0.4447089217085428 0.9852524477210616 -0.1710581732994747 -0.004088472465827907 -0.9852524477210616 0.1710581732994747 0.004088472465827907 0.005601650806890374 0.1304529279567728 -0.9914386794430319 -0.005601650806890374 -0.1304529279567728 0.9914386794430319 0.006660255799076443 0.62615586728002 -0.7796694625695538 -0.006660255799076443 -0.62615586728002 0.7796694625695538 0.9759876233675472 0.1309203157675931 -0.1740920157637353 -0.9759876233675472 -0.1309203157675931 0.1740920157637353 0.9827040068018349 -0.1847034700396569 0.01332153035235797 -0.9827040068018349 0.1847034700396569 -0.01332153035235797 0.01726207897819288 0.07004635942544597 -0.9973943694249492 -0.01726207897819288 -0.07004635942544597 0.9973943694249492 0.009504062429951832 0.6333564301194223 -0.7738018513958912 -0.009504062429951832 -0.6333564301194223 0.7738018513958912 0.960647311568589 0.006749071895014515 0.2776890217574298 -0.960647311568589 -0.006749071895014515 -0.2776890217574298 0.9710424030277641 -0.2387866027887111 0.007590115327941624 -0.9710424030277641 0.2387866027887111 -0.007590115327941624 0.02864701649948257 0.06098741739664127 -0.9977273592344587 -0.02864701649948257 -0.06098741739664127 0.9977273592344587 0.0122678743552204 0.408942547431161 -0.9124776666633092 -0.0122678743552204 -0.408942547431161 0.9124776666633092 0.9258007050101661 0.1301718437275705 -0.3548920197795999 -0.9258007050101661 -0.1301718437275705 0.3548920197795999 0.9844961877060547 -0.1748438068751519 -0.01403209142106429 -0.9844961877060547 0.1748438068751519 0.01403209142106429 -0.0003328446250290773 -0.9999540637905197 0.009579119128647748 0.009719844425970807 -0.9998397863798134 0.01503084150353108 0.01129802889254054 -0.9997986187078636 0.01658543255363933 -0.01129802889254054 0.9997986187078636 -0.01658543255363933 -0.009719844425970807 0.9998397863798134 -0.01503084150353108 0.0003328446250290773 0.9999540637905197 -0.009579119128647748 0.005829775791856834 0.3941443923859961 -0.9190300384997712 -0.005829775791856834 -0.3941443923859961 0.9190300384997712 0.9125357698546387 -0.1130702210936151 -0.3930567310677209 -0.9125357698546387 0.1130702210936151 0.3930567310677209 0.0584403134379483 -0.9982850189476406 -0.003427930860333971 0.07339187183949321 -0.9972987116424856 -0.002985448732408235 -0.07339187183949321 0.9972987116424856 0.002985448732408235 -0.0584403134379483 0.9982850189476406 0.003427930860333971 -0.008795869253130913 -0.9999350758860359 0.007244080125832215 0.008795869253130913 0.9999350758860359 -0.007244080125832215 -0.001709771075087474 0.1630913164699768 -0.9866094967994991 0.001709771075087474 -0.1630913164699768 0.9866094967994991 0.5477061066700305 0.06663861518257813 -0.8340127790884894 -0.5477061066700305 -0.06663861518257813 0.8340127790884894 -0.01146976780842381 -0.9999016954466101 -0.008064977955058951 0.01146976780842381 0.9999016954466101 0.008064977955058951 -0.07999252346564843 -0.9966968905818605 -0.01401800606535597 0.07999252346564843 0.9966968905818605 0.01401800606535597 0.8175796316467974 -0.1036266295353065 -0.5664142190724379 -0.8175796316467974 0.1036266295353065 0.5664142190724379 -0.1171614320668039 -0.9928592035054589 -0.02244550847189105 0.1171614320668039 0.9928592035054589 0.02244550847189105 0.0005074685993279611 -0.07314158556779575 -0.9973214381212556 -0.0005074685993279611 0.07314158556779575 0.9973214381212556 0.4671843293411222 -0.05410079983313199 -0.8825032044562227 -0.4671843293411222 0.05410079983313199 0.8825032044562227 0.4157909467608663 -0.2893045046693474 -0.8622185292428631 -0.4157909467608663 0.2893045046693474 0.8622185292428631 0.00125164063339767 -0.2989056791747194 -0.9542818390563789 -0.00125164063339767 0.2989056791747194 0.9542818390563789 0.7357186249502042 -0.2286613752319258 -0.6375202587984362 -0.7357186249502042 0.2286613752319258 0.6375202587984362 0.003126663485774014 -0.5245013036690988 -0.8514039032238826 -0.003126663485774014 0.5245013036690988 0.8514039032238826 0.7444360956075482 -0.2640628572513944 -0.6132582710219399 -0.7444360956075482 0.2640628572513944 0.6132582710219399 0.453646658642683 -0.4631728809210656 -0.7613642961694551 -0.453646658642683 0.4631728809210656 0.7613642961694551 0.001292287114555989 -0.6679956796251377 -0.7441640289587799 -0.001292287114555989 0.6679956796251377 0.7441640289587799 0.8074365638431011 -0.3017915337183512 -0.5069201766996171 -0.8074365638431011 0.3017915337183512 0.5069201766996171 0.4413654101371363 -0.6003888253962572 -0.6668806737893819 -0.4413654101371363 0.6003888253962572 0.6668806737893819 -0.001171495476863823 -0.7300817285972934 -0.6833588348494045 0.001171495476863823 0.7300817285972934 0.6833588348494045 0.4526027224778333 -0.635258761474257 -0.6257771820511247 -0.4526027224778333 0.635258761474257 0.6257771820511247 0.4748307092488027 -0.6940603301408 -0.5411248060097805 -0.4748307092488027 0.6940603301408 0.5411248060097805 0.002717381677525309 -0.8075924325322345 -0.5897347528791967 -0.002717381677525309 0.8075924325322345 0.5897347528791967 0.8464322837763881 -0.3623231834195628 -0.3902233972198512 -0.8464322837763881 0.3623231834195628 0.3902233972198512 -0.0003509631312579686 -0.919550123560017 -0.3929725780326637 0.0003509631312579686 0.919550123560017 0.3929725780326637 0.5001644196760581 -0.7853667004844724 -0.3647392206224129 -0.5001644196760581 0.7853667004844724 0.3647392206224129 0.7953598593833767 -0.5959557967894432 -0.1106317420757499 -0.7953598593833767 0.5959557967894432 0.1106317420757499 0.00256577070308407 -0.9705573239926624 -0.2408565914914959 -0.00256577070308407 0.9705573239926624 0.2408565914914959 0.6770063870684798 -0.7260984694438274 0.1201805497566687 -0.6770063870684798 0.7260984694438274 -0.1201805497566687 0.5130715501709678 -0.8343890419510267 -0.2013765405334188 -0.5130715501709678 0.8343890419510267 0.2013765405334188 0.5045078836468269 -0.02905227361918602 -0.8629181657235846 0.3740154694987343 0.08517409969750246 -0.9235030055805781 -0.3740154694987343 -0.08517409969750246 0.9235030055805781 -0.5045078836468269 0.02905227361918602 0.8629181657235846 0.004738754576579228 -0.9886901059625701 -0.1498980272611502 -0.004738754576579228 0.9886901059625701 0.1498980272611502 0.8761960434976746 -0.4814018184795852 -0.0230820823057494 -0.8761960434976746 0.4814018184795852 0.0230820823057494 0.8175550262034389 -0.3652865767667861 -0.4451623254089426 -0.8175550262034389 0.3652865767667861 0.4451623254089426 0.4805228882716853 -0.8689358673983149 -0.1185251542744236 -0.4805228882716853 0.8689358673983149 0.1185251542744236 0.8246367447315011 -0.5481831095965644 0.1395332132206313 -0.8246367447315011 0.5481831095965644 -0.1395332132206313 0.00010182183726732 -0.9999807024157885 0.006211636526666983 -0.00010182183726732 0.9999807024157885 -0.006211636526666983 0.3573934484380254 -0.9320419610155467 0.05973027640879219 -0.3573934484380254 0.9320419610155467 -0.05973027640879219 0.7326226935095296 -0.6427578869681038 0.223889007535297 -0.7326226935095296 0.6427578869681038 -0.223889007535297 -0.0003121471177735471 -0.9401959828614036 0.3406338450234447 0.0003121471177735471 0.9401959828614036 -0.3406338450234447 0.281088461575212 -0.8836047623771194 0.3744755007657446 -0.281088461575212 0.8836047623771194 -0.3744755007657446 0.5938773958340341 -0.6788819111953476 0.4317742342580647 -0.5938773958340341 0.6788819111953476 -0.4317742342580647 -0.0008582256848451016 -0.9269980685706961 0.3750651200989938 0.0008582256848451016 0.9269980685706961 -0.3750651200989938 0.5354989973352612 -0.8308293100162483 0.1515370630270194 -0.5354989973352612 0.8308293100162483 -0.1515370630270194 0.3066480515466414 -0.3948527167845805 0.8660590652666156 -0.3066480515466414 0.3948527167845805 -0.8660590652666156 0.1380021439462748 -0.9128750179141473 0.3842064678457104 -0.1380021439462748 0.9128750179141473 -0.3842064678457104 0.5540930953588987 -0.8216196774116014 0.1338728776326658 -0.5540930953588987 0.8216196774116014 -0.1338728776326658 0.5143594831915055 -0.7538234116189816 0.4088821176648433 -0.5143594831915055 0.7538234116189816 -0.4088821176648433 0.1704962860405792 -0.2412262551434388 0.9553747486069755 -0.1704962860405792 0.2412262551434388 -0.9553747486069755 -0.03773370260261522 -0.9621258501780877 -0.2699815106761744 0.03773370260261522 0.9621258501780877 0.2699815106761744 0.4358498792710058 -0.4621916880777535 0.7722782699333747 -0.4358498792710058 0.4621916880777535 -0.7722782699333747 0.01286360673163864 -0.9648903405124554 -0.2623378707080084 -0.01286360673163864 0.9648903405124554 0.2623378707080084 0.3481882744279781 -0.2117944960202763 0.9131856421376676 -0.3481882744279781 0.2117944960202763 -0.9131856421376676 -0.1087425189090441 -0.9469588072574531 -0.3023972254152774 0.1087425189090441 0.9469588072574531 0.3023972254152774 0.109509698468203 -0.9934846561267767 0.0315573126559204 -0.109509698468203 0.9934846561267767 -0.0315573126559204 -0.06105980458301809 -0.8594249915838784 -0.507602584809548 0.06105980458301809 0.8594249915838784 0.507602584809548 4.131844054970268e-016 -0.7503520187156 -0.6610384618230805 -4.131844054970268e-016 0.7503520187156 0.6610384618230805 0.006610566334737722 -0.7456954882692445 -0.6662541100718458 2.234526453262779e-016 -0.7503520187156001 -0.6610384618230801 -2.234526453262779e-016 0.7503520187156001 0.6610384618230801 -0.006610566334737722 0.7456954882692445 0.6662541100718458 0.02829381865111946 -0.7299337328155146 -0.6829320650871116 -0.02829381865111946 0.7299337328155146 0.6829320650871116</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"212\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 2 1 8 9 4 3 6 10 1 4 11 7 2 8 12 13 9 3 14 15 16 17 18 19 20 15 14 19 18 21 6 22 10 11 23 7 8 24 12 13 25 9 16 15 26 27 18 17 20 28 15 18 29 21 10 22 30 31 23 11 12 24 32 33 25 13 26 15 34 35 18 27 36 28 20 21 29 37 22 38 30 31 39 23 24 40 32 33 41 25 34 15 42 43 18 35 36 44 28 29 45 37 38 46 30 31 47 39 32 40 48 49 41 33 34 42 50 51 43 35 52 44 36 37 45 53 38 54 46 47 55 39 48 40 56 57 41 49 50 42 58 59 43 51 52 60 44 45 61 53 54 62 46 47 63 55 64 48 56 57 49 65 66 50 58 59 51 67 60 68 44 45 69 61 70 71 72 73 74 75 76 64 56 57 65 77 66 58 78 79 59 67 70 80 81 82 83 75 70 72 84 85 73 75 86 64 76 77 65 87 88 66 78 79 67 89 70 90 80 83 91 75 70 84 92 93 85 75 86 76 88 89 77 87 88 78 94 95 79 89 70 96 90 91 97 75 70 92 96 97 93 75 98 86 88 89 87 99 100 88 94 95 89 101 100 98 88 89 99 101 100 94 102 103 95 101 104 98 100 101 99 105 102 104 100 101 105 103 102 94 106 107 95 103 108 104 102 103 105 109 102 106 110 111 107 103 108 102 112 113 103 109 102 110 112 113 111 103 114 108 112 113 109 115 112 110 116 117 111 113 118 114 112 113 115 119 118 112 116 117 113 119 120 114 118 119 115 121 122 118 116 117 119 123 122 120 118 119 121 123 124 122 116 117 123 125 122 126 120 121 127 123 124 126 122 123 127 125 124 116 128 129 117 125 124 130 126 127 131 125 132 124 128 129 125 133 132 130 124 125 131 133 132 128 134 135 129 133 132 136 130 131 137 133 138 132 134 135 133 139 140 136 132 133 137 141 142 132 143 144 133 145 146 136 140 141 137 147 140 132 148 149 133 141 150 132 142 145 133 151 152 146 140 141 147 153 154 140 148 149 141 155 148 132 150 151 133 149 156 146 152 153 147 157 152 140 154 155 141 153 158 156 152 153 157 159 160 152 154 155 153 161 162 156 158 159 157 163 158 152 160 161 153 159 164 162 158 159 163 165 166 158 160 161 159 167 168 162 164 165 163 169 170 164 158 159 165 171 172 158 166 167 159 173 174 168 164 165 169 175 176 170 158 159 171 177 170 178 164 165 179 171 158 172 180 181 173 159 182 168 174 175 169 183 184 174 164 165 175 185 184 164 178 179 165 185 186 182 174 175 183 187 188 174 184 185 175 189 190 182 186 187 183 191 192 186 174 175 187 193 194 190 186 187 191 195 196 194 186 187 195 197 198 199 186 187 200 201 202 198 186 187 201 203</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID298\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID301\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID304\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID302\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID303\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID302\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"102\" source=\"#ID306\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"306\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID306\">-0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6165045499801636 1.934720396995544 -0.1188463941216469 -0.6165045499801636 1.934720396995544 -0.1188463941216469 -0.6165045499801636 1.934478163719177 -0.148460179567337 -0.6165045499801636 1.934478163719177 -0.148460179567337 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6339040398597717 1.933767676353455 -0.1080069318413734 -0.6339040398597717 1.933767676353455 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.933767676353455 -0.1592995822429657 -0.6339040398597717 1.933767676353455 -0.1592995822429657 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.690280020236969 1.923469066619873 -0.1336532384157181 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.690280020236969 1.923469066619873 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.690280020236969 1.930925488471985 -0.1040394529700279 -0.690280020236969 1.930925488471985 -0.1040394529700279 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.930925488471985 -0.1632670909166336 -0.690280020236969 1.930925488471985 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.920978307723999 -0.1080069318413734 -0.7484694719314575 1.920978307723999 -0.1080069318413734 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.920978307723999 -0.1592995822429657 -0.7484694719314575 1.920978307723999 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7658695578575134 1.920978307723999 -0.1188463941216469 -0.7658695578575134 1.920978307723999 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7658695578575134 1.920978307723999 -0.148460179567337 -0.7658695578575134 1.920978307723999 -0.148460179567337 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID303\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"102\" source=\"#ID307\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"306\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID307\">0.2685032900269681 0.9630576308432356 0.02063935365529308 0.4525875977984503 0.8917052376508322 0.005122056725679501 0.197574767091013 0.960017639689952 0.1983187910740314 -0.197574767091013 -0.960017639689952 -0.1983187910740314 -0.4525875977984503 -0.8917052376508322 -0.005122056725679501 -0.2685032900269681 -0.9630576308432356 -0.02063935365529308 0.6826818001107279 0.5175042953428181 0.5158826068974507 -0.6826818001107279 -0.5175042953428181 -0.5158826068974507 0.6836944016697715 0.4960176053006482 -0.5352835700422942 -0.6836944016697715 -0.4960176053006482 0.5352835700422942 0.9999982787388297 -2.764381330880746e-017 0.001855402753470593 0.9999999999992953 -1.344529174791133e-017 1.187132519731373e-006 -0.9999999999992953 1.344529174791133e-017 -1.187132519731373e-006 -0.9999982787388297 2.764381330880746e-017 -0.001855402753470593 0.04316331056239178 0.9022464637821981 0.4290550631490245 -0.04316331056239178 -0.9022464637821981 -0.4290550631490245 0.762814706200499 -2.629409797658931e-017 -0.6466171386564437 -0.762814706200499 2.629409797658931e-017 0.6466171386564437 0.1886860822774901 0.956809299814221 -0.2211640254286229 -0.1886860822774901 -0.956809299814221 0.2211640254286229 0.7628146924144519 1.553973405980757e-017 0.6466171549198531 -0.7628146924144519 -1.553973405980757e-017 -0.6466171549198531 0.2966896142403783 0.3930092177325965 0.8703556902664036 -0.2966896142403783 -0.3930092177325965 -0.8703556902664036 0.3190228087349438 -3.247041946735389e-017 -0.9477470377199115 -0.3190228087349438 3.247041946735389e-017 0.9477470377199115 0.3015186508611372 0.4026945547667087 -0.8642474175513177 -0.3015186508611372 -0.4026945547667087 0.8642474175513177 -0.06798932660550203 -0.9976860485482023 -6.586060030642062e-008 0.1719351211168655 -0.9851082753314626 1.5342658739515e-009 -0.07003507829713505 -0.9973648774176054 -0.01893116746740961 0.07003507829713505 0.9973648774176054 0.01893116746740961 -0.1719351211168655 0.9851082753314626 -1.5342658739515e-009 0.06798932660550203 0.9976860485482023 6.586060030642062e-008 -0.07003508202665411 -0.997364879841995 0.0189310259437501 0.07003508202665411 0.997364879841995 -0.0189310259437501 -0.09074012681344057 0.8894532850476279 0.4479275422474753 0.09074012681344057 -0.8894532850476279 -0.4479275422474753 -0.07444730486362687 -0.9972153156526353 -0.004383266630817152 0.07444730486362687 0.9972153156526353 0.004383266630817152 0.05077249430285804 0.904499556128183 -0.4234415033817376 -0.05077249430285804 -0.904499556128183 0.4234415033817376 -0.0744472981544605 -0.9972153161907268 0.004383258163692835 0.0744472981544605 0.9972153161907268 -0.004383258163692835 0.3190237254244892 -3.387300576113519e-007 0.9477467291508663 -0.3190237254244892 3.387300576113519e-007 -0.9477467291508663 -0.03242831273582751 0.3315141411543863 0.9428927716064944 0.03242831273582751 -0.3315141411543863 -0.9428927716064944 0.1684288053257849 -0.9857138213175917 3.261995871790642e-017 -0.1684288053257849 0.9857138213175917 -3.261995871790642e-017 -0.005344422354575714 2.736307797239866e-016 -0.9999857184728669 0.005344422354575714 -2.736307797239866e-016 0.9999857184728669 -0.03778745893588001 0.3316848763063766 -0.9426331475058539 0.03778745893588001 -0.3316848763063766 0.9426331475058539 0.1684287910083168 -0.9857138237640154 -7.29699613754242e-018 -0.1684287910083168 0.9857138237640154 7.29699613754242e-018 -0.2484756132977017 0.8848234007634721 0.3941413693812095 0.2484756132977017 -0.8848234007634721 -0.3941413693812095 0.4283917724313258 -0.8995378958168598 -0.08551060345081933 -0.4283917724313258 0.8995378958168598 0.08551060345081933 -0.09662107353385505 0.8889262837349113 -0.4477437104353393 0.09662107353385505 -0.8889262837349113 0.4477437104353393 -0.005344410133169654 -7.18550191482743e-006 0.9999857185123682 0.005344410133169654 7.18550191482743e-006 -0.9999857185123682 0.428391672085077 -0.8995379593972396 0.08551043732552045 -0.428391672085077 0.8995379593972396 -0.08551043732552045 -0.3421974281014101 0.3781955923776879 0.8601563893309577 0.3421974281014101 -0.3781955923776879 -0.8601563893309577 0.4241540399827718 -0.9051261212181009 -0.02898370326526637 -0.4241540399827718 0.9051261212181009 0.02898370326526637 -0.370286485472462 -1.499824138001414e-018 -0.9289176059675327 0.370286485472462 1.499824138001414e-018 0.9289176059675327 -0.3291557229804519 0.3380558114720414 -0.8816885948900528 0.3291557229804519 -0.3380558114720414 0.8816885948900528 -0.3702874190200642 1.094756924120515e-017 0.9289172338348878 0.3702874190200642 -1.094756924120515e-017 -0.9289172338348878 0.4241539996507208 -0.9051261422282078 0.02898363737315737 -0.4241539996507208 0.9051261422282078 -0.02898363737315737 -0.3251796430928072 0.9178164481615403 0.2277524252388309 0.3251796430928072 -0.9178164481615403 -0.2277524252388309 0.4199582781990328 -0.9075434119490392 3.99096900070165e-009 -0.4199582781990328 0.9075434119490392 -3.99096900070165e-009 -0.8007715958187883 -7.155616565122561e-018 -0.5989698250578498 0.8007715958187883 7.155616565122561e-018 0.5989698250578498 -0.2265429325203143 0.8870890848101631 -0.4021831116988422 0.2265429325203143 -0.8870890848101631 0.4021831116988422 -0.6796599789034551 0.4735252770862831 0.5602107862557749 0.6796599789034551 -0.4735252770862831 -0.5602107862557749 -0.8007712843829574 6.359232916259598e-018 0.5989702414207808 0.8007712843829574 -6.359232916259598e-018 -0.5989702414207808 -0.9999999999994651 -1.645457276881922e-017 1.034295879815327e-006 -0.6891858043226757 0.4665554888991755 -0.5543905689116273 0.6891858043226757 -0.4665554888991755 0.5543905689116273 0.9999999999994651 1.645457276881922e-017 -1.034295879815327e-006 -0.9999999999992956 4.946327360675922e-018 1.187017885930274e-006 0.9999999999992956 -4.946327360675922e-018 -1.187017885930274e-006 -0.3230544891964065 0.9463803659259006 8.550144065327416e-008 0.3230544891964065 -0.9463803659259006 -8.550144065327416e-008 -0.3136885055110143 0.9395308213807142 -0.1374094508610924 0.3136885055110143 -0.9395308213807142 0.1374094508610924 -0.4168041023770971 0.9089963367591745 1.538922139574083e-007 0.4168041023770971 -0.9089963367591745 -1.538922139574083e-007</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID305\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"177\" source=\"#ID308\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"354\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID308\">14.74662494168064 -3.24670831878189 14.50632766822221 -3.24670831878189 14.78792300082874 -3.159258918565324 13.820349457531 -1.340223392086619 13.53790646303778 -1.425964394727856 13.60571068596005 -1.309425604163282 14.74662494168064 -0.2015677638513016 14.57252871304809 -0.31838760226104 14.50632766822222 -0.2015677638513016 19.3234646320343 0.9305684636762152 19.18007493019104 0.9305684636762152 19.34720396995544 1.05736601641011 12.39923564859679 -6.827449107672569 12.18558988491392 -6.79263974045073 12.520128137449 -6.756504929536055 19.18007493019104 -2.98907029529415 19.3234646320343 -2.862272042610564 19.34478163719177 -2.98907029529415 13.58985134138688 0.913600590386324 13.37428921549126 0.8823677125805266 13.54688959584556 1.000553205744748 19.18007493019104 0.930568463676214 19.18007493019104 1.057366016410109 19.34720396995544 1.057366016410109 19.18007493019104 -2.862272042610565 19.3234646320343 -2.862272042610565 12.71867148612623 -7.495234252113192 12.38442227660791 -7.532988091064745 12.54477580412482 -7.432242123407382 19.34478163719177 -4.733932057985893 19.19373035430908 -4.895195827090482 19.18007493019104 -4.733932057985893 12.33878138412339 5.382247156809008 12.17677293324015 5.481214797596579 12.3912040801708 5.516942167621013 -7.391282448218876 -1.48143095627047 -8.194581123679953 -1.48143095627047 -7.454820262563747 -1.364900655355888 19.18007493019104 3.622039261057927 19.33767676353455 3.783303278093615 19.34720396995544 3.622039261057927 -7.391282448218877 -0.6204842998191036 -7.454820262563748 -0.7370153623541556 -8.194581123679953 -0.6204842998191036 7.481154949549515 -12.79431255424122 7.067416291608053 -12.83379782656899 6.915524424990057 -12.74212319853608 -7.584380995427704 -1.247007601423149 -7.758909944543412 -1.332278807745487 -8.324154097693995 -1.130524639056481 19.33767676353455 -4.895195827090483 19.19373035430908 -4.895195827090483 19.34478163719177 -4.733932057985895 13.04180262783345 5.175172548692535 12.86707806501732 5.11361630106685 12.92234562026518 5.247605683200089 -7.584380812078765 -0.8557737698764369 -8.324153914352896 -0.9722559702773169 -7.758909761188733 -0.7705020946637685 19.19373035430908 3.783303278093616 19.33767676353455 3.783303278093616 19.18007493019104 3.622039261057928 7.648027143859386 -12.25948167563143 7.65188684485852 -12.35890188523497 7.085797861905361 -12.30988511571698 -7.713240890911518 -1.253156713644663 -8.278486734327558 -1.284367781877518 -8.278486734327558 -1.051405475536982 19.33767676353455 -5.062382866966574 19.23469066619873 -5.506970809153192 19.19373035430908 -5.062382866966574 7.367540623698635 11.41985850957108 7.776061332728784 11.27693054705916 7.214183829069861 11.32970587279734 -7.713240890911518 -0.8496545304854714 -8.278486734327558 -1.051405475536983 -8.278486734327558 -0.8184441655874255 19.19373035430909 4.914761442931146 19.30925488471985 5.359349368659267 19.33767676353455 4.914761442931146 2.285092063151581 -12.97430384402288 2.693655733061326 -13.10863367222362 2.262290508523929 -13.0721396923397 1.331404262185989 -1.284367781877517 0.6969924656801174 -1.253156713644663 1.331404262185989 -1.051405475536982 19.30925488471986 -5.506970809153168 19.23469066619874 -5.506970809153168 19.33767676353456 -5.06238286696655 7.304855699042223 11.14301553668178 7.302790777804189 11.0435620935058 6.890760040675517 11.18011256878542 19.233906454615 5.361065771843718 19.30847067265508 5.361072451178341 19.19301018033664 4.916474230813738 1.331404262185988 -1.051405475536982 0.6969924656801174 -0.8496545304854711 1.331404262185988 -0.8184441655874253 2.304331396739664 -13.42647922400892 2.121104136094343 -13.5156493816709 1.71639695895628 -13.37427954811462 1.544746040377931 -2.885022299798933 1.345972632848547 -2.799301999221842 2.178608611574747 -2.682205560965344 -19.30925488471981 5.330255816417758 -18.98195147514339 5.789075628693167 -19.23469066619869 5.330255816417758 1.845480971048728 11.74717148847956 2.458561636177985 11.6990816018842 1.870243297278053 11.64963089452367 -19.23549984096779 -5.471528107735983 -19.21066047540473 -5.930350160969313 -19.31006405897643 -5.471521214608823 -18.98195147514343 -5.932117994536131 -19.20978307723999 -5.932117994536131 -19.23469066619873 -5.473298230104304 2.178605235350849 0.5904376500551031 1.345969254092779 0.7075333192271444 1.544742659768699 0.7932540888905315 -3.959798216985414 -7.753429402214679 -4.087096411535118 -7.683919229159401 -3.885150574633056 -7.624847108754293 1.813176726206721 -1.081169652224882 0.9804013739520012 -1.197651123867453 0.9101107092265193 -1.081169652224882 -19.20978307723999 4.334972713557193 -18.88520956039429 4.496240462481415 -18.98195147514343 4.334972713557193 -19.20978307723999 5.789075628693066 -18.98195147514344 5.789075628693066 -19.30925488471985 5.330255816417655 2.481569112179163 12.40655007166253 2.66317520668856 12.31535119031279 2.050599478808898 12.36727062188914 -18.98195147514343 -5.446823632817054 -19.20978307723999 -5.608091629666255 -19.20978307723999 -5.446823632817054 -18.88520956039429 -5.608091629666257 -19.20978307723999 -5.608091629666257 -18.98195147514343 -5.446823632817055 1.813176726206721 -1.021637471001535 0.9101107092265193 -1.021637471001535 0.9804013739520012 -0.9051567613036898 0.367684899701497 -8.845277138547667 0.145718255611641 -8.880676763911682 0.2049359424005293 -8.74721646374895 -18.85544061660767 1.434091526799194 -18.88520956039429 1.307296052883267 -19.20978307723999 1.307296052883267 -19.20978307723999 4.496240462481416 -18.88520956039429 4.496240462481416 -19.20978307723999 4.334972713557194 -2.117223969310845 8.529395214753574 -2.31561130205695 8.595508854169639 -1.962439484181925 8.635134824541277 -19.20978307723999 -3.239066383758993 -18.88520956039429 -3.239066383758993 -19.20978307723999 -3.365861157709891 -18.85544061660767 -3.365861157709891 -1.225341157779861 -3.905255980985561 -1.267926982609724 -3.818192018720132 -1.044961102637988 -3.786919029566556 -19.20978307723999 1.434091526799194 -18.85544061660767 1.434091526799194 -19.20978307723999 1.307296052883267 -0.806110026159208 2.735666626985071 -1.160395921178498 2.702765752179635 -1.02897991537746 2.767360336190219 -0.9871177962192335 -3.90522116068271 -1.225379355844962 -3.905221160682709 -1.044999251680502 -3.786884255506705 -1.044972846114296 1.717034101611527 -1.26793873007405 1.748307188552936 -0.9870913567213968 1.835371746509942 -0.9871177962192357 1.835423300068112 -1.267965144607175 1.748358692275823 -1.225379355844964 1.835423300068112</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"60\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 3 1 4 6 5 0 6 8 7 1 8 10 9 11 10 6 11 2 12 6 13 14 14 16 15 10 16 8 17 18 18 8 19 0 20 11 21 20 22 6 23 16 15 11 24 10 25 14 26 6 27 22 28 8 29 24 30 16 31 26 32 8 33 18 34 28 35 29 36 30 37 20 38 22 39 6 40 28 41 34 42 29 43 36 44 14 45 22 46 34 47 38 48 29 49 26 50 24 51 8 52 40 53 26 54 18 55 30 56 29 57 42 58 44 59 22 60 20 61 46 62 36 63 22 64 38 65 48 66 29 67 26 68 50 69 24 70 40 71 52 72 26 73 42 74 29 75 54 76 44 77 46 78 22 79 46 80 56 81 36 82 48 83 58 84 29 85 52 86 50 87 26 88 60 89 52 90 40 91 62 92 46 93 44 94 29 95 64 96 54 97 66 98 56 99 46 100 58 101 68 102 29 103 52 104 70 105 50 106 60 107 72 108 52 109 62 110 66 111 46 112 74 113 66 114 62 115 29 116 76 117 64 118 78 119 56 120 66 121 29 122 68 123 80 124 72 125 82 126 70 127 72 128 70 129 52 130 84 131 72 132 60 133 74 134 86 135 66 136 88 137 86 138 74 139 29 140 80 141 76 142 86 143 78 144 66 145 90 146 82 147 91 148 91 149 82 150 72 151 72 152 84 153 91 154 86 155 88 156 94 157 88 156 90 158 94 157 96 159 78 160 86 161 94 162 90 163 91 164 91 165 84 166 98 167 100 168 96 169 86 170 91 171 98 172 100 173 100 174 98 175 96 176</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID304\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID305\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"60\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 7 4 3 4 9 5 7 12 13 15 7 3 9 13 17 5 9 19 7 21 12 13 12 17 23 7 15 17 25 9 19 9 27 31 32 33 7 23 21 32 35 33 23 15 37 32 39 35 9 25 27 19 27 41 43 32 31 21 23 45 23 37 47 32 49 39 25 51 27 27 53 41 55 32 43 23 47 45 37 57 47 32 59 49 27 51 53 41 53 61 45 47 63 55 65 32 47 57 67 32 69 59 51 71 53 53 73 61 47 67 63 63 67 75 65 77 32 67 57 79 81 69 32 71 83 73 53 71 73 61 73 85 67 87 75 75 87 89 77 81 32 67 79 87 92 83 93 73 83 92 92 85 73 95 89 87 95 93 89 87 79 97 92 93 95 99 85 92 87 97 101 101 99 92 97 99 101</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID304\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID309\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID312\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID310\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID311\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID310\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID313\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID313\">-0.690280020236969 1.940856695175171 -0.1336532384157181 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.690280020236969 1.940856695175171 -0.1336532384157181 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7458943724632263 1.930909156799316 -0.1445471495389938</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID311\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID314\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID314\">-0.1092906432207105 0.9940098366235635 -7.695194953645212e-009 0.2685032900269681 0.9630576308432356 0.02063935365529308 0.197574767091013 0.960017639689952 0.1983187910740314 -0.197574767091013 -0.960017639689952 -0.1983187910740314 -0.2685032900269681 -0.9630576308432356 -0.02063935365529308 0.1092906432207105 -0.9940098366235635 7.695194953645212e-009 0.04316331056239178 0.9022464637821981 0.4290550631490245 -0.04316331056239178 -0.9022464637821981 -0.4290550631490245 0.1886860822774901 0.956809299814221 -0.2211640254286229 -0.1886860822774901 -0.956809299814221 0.2211640254286229 -0.09074012681344057 0.8894532850476279 0.4479275422474753 0.09074012681344057 -0.8894532850476279 -0.4479275422474753 0.05077249430285804 0.904499556128183 -0.4234415033817376 -0.05077249430285804 -0.904499556128183 0.4234415033817376 -0.2484756132977017 0.8848234007634721 0.3941413693812095 0.2484756132977017 -0.8848234007634721 -0.3941413693812095 -0.09662107353385505 0.8889262837349113 -0.4477437104353393 0.09662107353385505 -0.8889262837349113 0.4477437104353393 -0.3251796430928072 0.9178164481615403 0.2277524252388309 0.3251796430928072 -0.9178164481615403 -0.2277524252388309 -0.2265429325203143 0.8870890848101631 -0.4021831116988422 0.2265429325203143 -0.8870890848101631 0.4021831116988422 -0.3230544891964065 0.9463803659259006 8.550144065327416e-008 0.3230544891964065 -0.9463803659259006 -8.550144065327416e-008 -0.3136885055110143 0.9395308213807142 -0.1374094508610924 0.3136885055110143 -0.9395308213807142 0.1374094508610924</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 0 2 6 0 8 1 0 6 10 12 8 0 14 0 10 16 12 0 18 0 14 20 16 0 22 0 18 24 20 0 22 24 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID312\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 7 3 5 4 9 5 11 7 5 5 9 13 11 5 15 5 13 17 15 5 19 5 17 21 19 5 23 5 21 25 5 25 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID312\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID315\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID318\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID316\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID317\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID316\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID320\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID320\">-0.7051355838775635 1.922352433204651 0.230619490146637 -0.6617981791496277 1.832582235336304 0.1425205767154694 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6617981791496277 1.832582235336304 0.1425205767154694 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID317\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID321\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID321\">0.2454983722499582 0.7367784293995229 -0.6299905516705731 -0.01355272467147211 0.9997780551212078 0.01612960483195176 -0.0255551309807017 0.7356609327778424 -0.6768677324743689 0.0255551309807017 -0.7356609327778424 0.6768677324743689 0.01355272467147211 -0.9997780551212078 -0.01612960483195176 -0.2454983722499582 -0.7367784293995229 0.6299905516705731 0.5063254148146489 0.7555293494449054 -0.4157041934358274 -0.5063254148146489 -0.7555293494449054 0.4157041934358274 -0.3613240372427959 0.7363722211506463 -0.5720147655683642 0.3613240372427959 -0.7363722211506463 0.5720147655683642 0.6680473200367499 0.7436922615332333 0.02519123512853581 -0.6680473200367499 -0.7436922615332333 -0.02519123512853581 -0.6179795511991585 0.7228706523012989 -0.3091266639117071 0.6179795511991585 -0.7228706523012989 0.3091266639117071 0.5707110805360036 0.7192114718924991 0.3962621875118188 -0.5707110805360036 -0.7192114718924991 -0.3962621875118188 -0.6999537629947992 0.7141776562948755 0.003873618279981795 0.6999537629947992 -0.7141776562948755 -0.003873618279981795 0.3273966486538866 0.7209092289414518 0.6108202011044208 -0.3273966486538866 -0.7209092289414518 -0.6108202011044208 -0.6309130786522602 0.7132712578771855 0.3052749578197078 0.6309130786522602 -0.7132712578771855 -0.3052749578197078 -0.01337508127704687 0.7218060427142515 0.6919661436096599 0.01337508127704687 -0.7218060427142515 -0.6919661436096599 -0.3801739812245751 0.7237156406791439 0.5759369891196715 0.3801739812245751 -0.7237156406791439 -0.5759369891196715</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID319\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"36\" source=\"#ID322\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"72\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID322\">10.62254496526318 10.58597901468444 10.02435287981894 9.65120515883069 10.19367564998362 10.72394999514477 14.96110814048428 7.718424838868263 13.8945885778913 7.112516974760296 14.67366561987308 7.960827729676313 1.933627046348441 10.97743010008375 1.202271169615731 11.89978789719242 1.696142772314045 12.04214687284743 18.3961081709604 2.641137417643054 17.11711045647631 2.616524038178354 18.26468471539078 3.122552538824543 -5.548728912979404 7.65138727776807 -6.785922521949193 8.084323930772092 -6.52071943268769 8.424102862944066 18.38599620971365 -1.222997101699112 17.22446535028297 -0.8189539529047211 18.50345185026655 -0.7939825504753987 -8.05029492928022 3.289034660604903 -9.425405248137516 3.308304911706402 -9.309935028138126 3.679868275081967 16.94411386082575 -4.063997537821977 16.69445513940783 -4.360936482954553 15.81224755184468 -3.610839220933176 -8.149844598314363 -1.106574484923794 -9.448921067989758 -1.455600782491445 -9.524954727489204 -1.087295859215323 11.48831525242079 -8.75386128287732 11.04736864805656 -8.918917385485216 10.83216194436042 -7.871902693084232 -7.021471257962126 -6.293757665802318 -7.322809907298218 -5.944937819296826 -6.040699822826644 -5.559035419713093 1.441548375341257 -10.58282918537751 0.9523591449902585 -10.43376135329469 1.690367232773703 -9.540434004979337</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 1 4 0 5 1 6 8 7 2 8 10 9 1 10 6 11 1 12 12 13 8 14 14 15 1 16 10 17 1 18 16 19 12 20 14 21 18 22 1 23 1 24 20 25 16 26 18 27 22 28 1 29 24 30 20 31 1 32 22 33 24 34 1 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID318\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID319\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 5 4 7 3 9 4 7 4 11 9 13 4 11 4 15 13 17 4 4 19 15 17 21 4 4 23 19 4 21 25 4 25 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID318\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID330\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID333\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID331\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID332\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID331\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"128\" source=\"#ID335\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"384\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID335\">-0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID332\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"128\" source=\"#ID336\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"384\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID336\">-0.902466236746562 0.1795708561871048 0.3915469309555731 -0.9024665938061016 0.2869970887591513 0.3212268950567254 -0.9024662367466551 0.1795709440136923 0.3915468906764066 -0.9024665938125612 0.2869979446047657 0.3212261303894707 0.9024665938125612 -0.2869979446047657 -0.3212261303894707 0.902466236746562 -0.1795708561871048 -0.3915469309555731 0.9024665938061016 -0.2869970887591513 -0.3212268950567254 0.9024662367466551 -0.1795709440136923 -0.3915468906764066 -0.9024668903167546 0.05618340562307148 0.4270795438962162 -0.9024668903001765 0.05618563690832937 0.4270792503940392 0.9024668903167546 -0.05618340562307148 -0.4270795438962162 0.9024668903001765 -0.05618563690832937 -0.4270792503940392 -0.9024690894613248 0.3689289867002785 0.2223531995253341 -0.902469089464752 0.3689290774500262 0.2223530489391454 0.902469089464752 -0.3689290774500262 -0.2223530489391454 0.9024690894613248 -0.3689289867002785 -0.2223531995253341 -0.9999555776890411 0.006279922634141023 0.007028884711349623 -0.9999999999999999 -3.944088456120249e-009 1.649036539061831e-008 -0.9999555775055583 0.003929272324182818 0.008567603779806768 0.9999555775055583 -0.003929272324182818 -0.008567603779806768 0.9999999999999999 3.944088456120249e-009 -1.649036539061831e-008 0.9999555776890411 -0.006279922634141023 -0.007028884711349623 -0.9024674946036678 -0.07219701394895309 0.4246645880699658 -0.9024674946038228 -0.07219707389978321 0.424664577877421 0.9024674946036678 0.07219701394895309 -0.4246645880699658 0.9024674946038228 0.07219707389978321 -0.424664577877421 -0.9999555778310314 0.001229424558499158 0.009345099243102516 0.9999555778310314 -0.001229424558499158 -0.009345099243102516 -0.9024695789502093 0.4180784961390021 0.1037257448061106 -0.9024695789497297 0.4180784539420578 0.1037259148897536 0.9024695789497297 -0.4180784539420578 -0.1037259148897536 0.9024695789502093 -0.4180784961390021 -0.1037257448061106 -0.9999555784085298 0.008072791231372301 0.004865311027822405 0.9999555784085298 -0.008072791231372301 -0.004865311027822405 -0.9024683401951699 -0.1941614071388285 0.3845155951625956 -0.9024683401956324 -0.1941614450021188 0.3845155760424143 0.9024683401951699 0.1941614071388285 -0.3845155951625956 0.9024683401956324 0.1941614450021188 -0.3845155760424143 -0.9999555778376283 -0.001579793115735819 0.009292287400107886 0.9999555778376283 0.001579793115735819 -0.009292287400107886 -0.9024695599145399 0.4300784014704719 -0.02410937610681846 -0.9024695599118074 0.4300783861399769 -0.02410964968268119 0.9024695599118074 -0.4300783861399769 0.02410964968268119 0.9024695599145399 -0.4300784014704719 0.02410937610681846 -0.9999555771365172 0.009148344649372987 0.002269701247122971 0.9999555771365172 -0.009148344649372987 -0.002269701247122971 -0.9024699496610145 -0.298869595953435 0.3102014741639317 -0.9024699496784561 -0.298870415416041 0.3102006845840415 0.9024699496610145 0.298869595953435 -0.3102014741639317 0.9024699496784561 0.298870415416041 -0.3102006845840415 -0.9999555776015303 -0.004248627287482877 0.008413797582663555 0.9999555776015303 0.004248627287482877 -0.008413797582663555 -0.9024682165406183 0.4038669616350336 -0.1498085292421026 -0.902468216543048 0.4038670647292976 -0.1498082512966218 0.9024682165406183 -0.4038669616350336 0.1498085292421026 0.902468216543048 -0.4038670647292976 0.1498082512966218 -0.999955577745935 0.009410860694318868 -0.0005274806018676984 0.999955577745935 -0.009410860694318868 0.0005274806018676984 -0.9024707715227106 -0.3770220929027301 0.2083287018402623 -0.9024707715194342 -0.3770227739999134 0.2083274692366014 0.9024707715227106 0.3770220929027301 -0.2083287018402623 0.9024707715194342 0.3770227739999134 -0.2083274692366014 -0.9999555770671936 -0.006539895081909356 0.006787758432154178 0.9999555770671936 0.006539895081909356 -0.006787758432154178 -0.9024668466034375 0.3417689209700612 -0.2621976266875958 -0.9024668466014079 0.3417688417781226 -0.262197729919524 0.9024668466034375 -0.3417689209700612 0.2621976266875958 0.9024668466014079 -0.3417688417781226 0.262197729919524 -0.9999555775200822 0.008837293966907273 -0.003277990515714328 0.9999555775200822 -0.008837293966907273 0.003277990515714328 -0.902469637953096 -0.4216810734117544 0.08794103080541284 -0.9024696379339142 -0.4216812607433428 0.08794013273434857 0.902469637953096 0.4216810734117544 -0.08794103080541284 0.9024696379339142 0.4216812607433428 -0.08794013273434857 -0.9999555769430629 -0.008249995118261777 0.004558697293603463 0.9999555769430629 0.008249995118261777 -0.004558697293603463 -0.902465509489143 0.2493039587819413 -0.3512884004890483 -0.9024655094892364 0.2493038174778161 -0.3512885007701228 0.902465509489143 -0.2493039587819413 0.3512884004890483 0.9024655094892364 -0.2493038174778161 0.3512885007701228 -0.9999555779597974 0.00747843989793408 -0.005737163391514847 0.9999555779597974 -0.00747843989793408 0.005737163391514847 -0.9024672758692717 -0.4288731719288677 -0.04025690480859202 -0.9024672758646049 -0.4288730763736164 -0.04025792288916159 0.9024672758692717 0.4288731719288677 0.04025690480859202 0.9024672758646049 0.4288730763736164 0.04025792288916159 -0.9999555776764442 -0.009227086398497142 0.001924461057970694 0.9999555776764442 0.009227086398497142 -0.001924461057970694 -0.9024664086806516 0.1346861044661979 -0.4091626015006348 -0.9024664086756207 0.134686627996427 -0.4091624291782907 0.9024664086806516 -0.1346861044661979 0.4091626015006348 0.9024664086756207 -0.134686627996427 0.4091624291782907 -0.9999555777995033 0.005455079717335024 -0.007686646403922885 0.9999555777995033 -0.005455079717335024 0.007686646403922885 -0.902467892340141 -0.3979517141178801 -0.1648821898380311 -0.9024678923401798 -0.3979516028754097 -0.1648824583270336 0.9024678923401798 0.3979516028754097 0.1648824583270336 0.902467892340141 0.3979517141178801 0.1648821898380311 -0.9999555778851129 -0.009384369994094055 -0.000880827034032532 0.9999555778851129 0.009384369994094055 0.000880827034032532 -0.9024663791541479 0.008097340179231503 -0.430684185428747 -0.9024663791250542 0.008094825123542416 -0.4306842327681999 0.9024663791541479 -0.008097340179231503 0.430684185428747 0.9024663791250542 -0.008094825123542416 0.4306842327681999 -0.9999555777991002 0.002947080780235639 -0.008953052180265634 0.9999555777991002 -0.002947080780235639 0.008953052180265634 -0.9024662331196897 -0.3316729654395058 -0.2748594951522004 -0.9024662331163754 -0.3316728008946313 -0.2748596937192685 0.9024662331163754 0.3316728008946313 0.2748596937192685 0.9024662331196897 0.3316729654395058 0.2748594951522004 -0.999955578177709 -0.008707751861328623 -0.003607870397508076 0.999955578177709 0.008707751861328623 0.003607870397508076 -0.9024648168310505 -0.1192080340211159 -0.4139404534554687 -0.9024648168337509 -0.1192074838149737 -0.4139406118994938 0.9024648168310505 0.1192080340211159 0.4139404534554687 0.9024648168337509 0.1192074838149737 0.4139406118994938 -0.9999555778745281 0.0001771432880129035 -0.009423953410019359 0.9999555778745281 -0.0001771432880129035 0.009423953410019359 -0.902465654171666 -0.2359217875784709 -0.3604117828072296 -0.9024656541724766 -0.2359218880318137 -0.3604117170494711 0.9024656541724766 0.2359218880318137 0.3604117170494711 0.902465654171666 0.2359217875784709 0.3604117828072296 -0.9999555777101306 -0.007257512103960586 -0.006014243465287442 0.9999555777101306 0.007257512103960586 0.006014243465287442 -0.9999555776620278 -0.002608402576862527 -0.009057534907320045 0.9999555776620278 0.002608402576862527 0.009057534907320045 -0.9999555782419665 -0.005162296496035368 -0.007886205530005717 0.9999555782419665 0.005162296496035368 0.007886205530005717</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID334\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"147\" source=\"#ID337\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"294\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID337\">0.3968896729741346 0.1922852666439943 0.4737327008967246 -0.9152355322345628 0.9630262887515753 -0.6354626856147748 -0.3524052240098752 -0.2361568945663559 0.4655388858093918 0.08953581466919515 0.09695620062060414 -0.9810664844640712 0.6730670627304097 -0.8361327489468616 -0.4167537122269166 -0.1324198059202896 0.2973352684969716 0.2683873916988639 0.7882870625951499 -0.7713646321021612 1.150086384430147 -0.3900178469634608 -0.2567247963027225 -0.31560409935685 -1.289966888573064 1.118085413747316 0.06212354191532857 -0.07234147090675236 -0.783870346512475 1.378704611404 -0.4367617780734336 -0.01462412283998805 0.3039367921445285 -0.9584067804719864 0.4893324111284635 -0.02983363233461241 -0.3008224430983176 -0.9484756688791239 -0.8016174477820905 1.372301469794169 0.04433562663634652 -0.07875933781474324 -0.2203908618967485 1.503989911589727 0.1809070857644482 0.3155180012112068 1.022592991639205 -0.5743581365222055 1.234023150294384 -0.1285484832020004 -0.1429120515214738 -0.367198117649849 -1.66136548078844 0.7619376860652442 0.07671628909398423 -0.06208436965356513 -1.275396677288614 1.12832667461258 -0.4073515623064179 0.1011264290438674 -0.09476487502684913 -0.9804405628471385 0.4626568454837426 -0.1490324395691673 -0.6628716918210396 -0.8170859861489843 -0.2397426200746382 1.50198664557768 0.02493089743164573 -0.08076808610367456 0.3650414996825432 1.493042349004655 0.05736325230823958 0.3346473762187736 1.17267479942198 -0.3439402612969316 1.223643632931941 0.1302055707804858 -0.02066572129329647 -0.3914599007726098 -1.882760478217731 0.3355170423070947 0.08682001596138418 -0.04889598984901968 -1.651269230232574 0.7751163069047897 -0.3353501529221609 0.1995466050261453 -0.4668875889383237 -0.9047897006971836 0.3922070304645184 -0.2514821593426724 -0.9419647060013334 -0.6102700701630079 0.005635596625816379 -0.07818806575251706 0.9203364240227525 1.346830328258524 0.3457982769905845 1.495615404073835 1.126355299807839 0.3752155678757479 0.1040111679385125 -0.388637340607042 1.238011217856225 -0.09244888651659929 -0.06697561493530457 0.3275468783499481 -1.93459673056012 -0.123302009428372 0.09153118311425376 -0.03395832490335624 -1.878050069741289 0.3504523016984736 -0.2344980136134975 0.272067017744716 -0.7734592826352205 -0.7528807175430338 0.2920443195803396 -0.3274591628500121 -1.117289405717435 -0.3613891006095253 -0.01183525826232684 -0.07124871822464581 1.39616406775141 1.078353125365281 0.9029042283172811 1.35375431886067 0.9447253547904824 0.5959672029532446 0.2257787374954082 -0.3581771099131729 1.214189184550729 0.169958907902574 -0.186897061406765 0.2942037124704471 -1.93569205005432 -0.1079301547813531 -1.812203419199725 -0.5737500453082663 0.09043585409260579 -0.01858633654730853 -0.1179073442473178 0.3167816077142103 -0.9983469950028587 -0.5495662572713074 0.1755912440477331 -0.3743751425856143 -1.190013434193229 -0.09824780362384109 -0.02592837582048213 -0.06056746696411634 1.75026303628513 0.7114738979672752 1.382091246066081 1.089018993299208 0.6794575272154855 0.7773668085625854 0.3372907202383119 -0.2986409217881123 1.092513136402134 0.4297375884811659 -0.2952586744430266 0.2337084769733447 -1.819006096267833 -0.5593221080025462 -1.526489466348473 -0.9758143642852514 0.08363089132390443 -0.004153551560189934 0.005430313511846641 0.3347777810011712 -1.13847441899684 -0.3136789370305894 0.05211876781394509 -0.3929897756725005 -1.168978557164991 0.1615496775993526 -0.03539234262457076 -0.04709359816704189 1.951177325817038 0.2788063115482746 1.740805216807092 0.7249390145054863 0.3383174364586705 0.8966761424705388 0.4270405228667517 -0.2102904844304112 0.8659105981995169 0.6639631861579365 -0.3809160440027784 0.146093917292971 -1.538389610930159 -0.9636106058033177 -1.102793304223511 -1.293774310216109 0.07171849013542153 0.008062775638568245 -1.060803453390981 0.4063081240514468 -0.07222633956791902 -0.3845717407713823 0.1297449779240717 0.3265826019173688 -1.192697017918619 -0.05808015184411099 -0.03938788681399102 -0.0320215229750103 1.981042651962162 -0.1812112976198525 1.947182244123232 0.2938766420839853 -0.0524315242956043 0.9283402239298384 0.4802244090786475 -0.09863015383275404 0.5419672336339126 0.840067431844499 -0.4299897675531783 0.03654607664910618 -1.118723112271001 -1.28487983214167 -0.5787908752940257 -1.499364633663538 0.05575920687481053 0.01697370996765415 -0.8675436049402432 0.6248879863575346 -0.1921656442747269 -0.3487502314162322 0.2497335503953799 0.2916925404031848 -1.156099853862085 0.2066797400671177 -0.03755897012292375 -0.01669365819150997 1.837226823603213 -0.6277221656035168 1.982871524296908 -0.1658838045780912 0.1549471133513004 0.926271017659403 -0.4314797661798583 -0.08241555601430506 0.4850983193021703 0.02291896507682182 -0.4435596451746486 0.8574897570892256 -0.5973340108549068 -1.494561963904799 -0.0009938348333969052 -1.574320909725511 0.03716949338786759 0.02178844157197701 -0.590668199735378 0.8003619256414625 -0.3002610023705488 -0.2850266574071003 0.3573215388483328 0.2282013813533236 -1.020058250736914 0.4652208336946513 -0.03006746412218775 -0.00246891752738707 1.53248244939769 -1.021051126561889 1.844715281581389 -0.6135032123919676 -0.2397379242648021 0.9092043715946208 -0.3847025093323656 -0.1940833813882925 0.44076218466755 0.1365952386707551 -0.7787690196498813 0.6932719536246276 -0.02050822442818087 -1.574031800828231 0.5791832437635509 -1.51196408310349 0.01760077999626869 0.02207835371030489 -0.017581589667695 0.009384382415771322 1.093911919977969 -1.326263772815833 1.544954207250127 -1.00921122784879 -0.001204457374191035 0.01781819349283538 0.560426229320167 -1.516213318070019 1.110257215438868 -1.317846356961747</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"126\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 2 5 9 6 2 5 8 4 0 7 5 7 10 4 7 5 11 6 7 5 10 4 3 8 12 9 1 10 12 9 3 8 13 11 14 11 4 8 15 9 6 10 15 9 4 8 16 12 17 13 18 14 19 14 20 13 21 12 8 15 22 16 23 17 22 16 8 15 9 18 11 18 10 15 24 16 25 17 24 16 10 15 18 19 17 20 26 21 27 21 20 20 19 19 13 22 28 23 12 24 28 23 13 22 29 25 30 25 14 22 31 23 15 24 31 23 14 22 32 26 17 27 16 28 21 28 20 27 33 26 23 29 34 30 35 31 34 30 23 29 22 32 24 32 25 29 36 30 37 31 36 30 25 29 26 33 17 34 38 35 39 35 20 34 27 33 29 36 40 37 28 38 40 37 29 36 41 39 42 39 30 36 43 37 31 38 43 37 30 36 44 40 17 41 32 42 33 42 20 41 45 40 35 43 46 44 47 45 46 44 35 43 34 46 36 46 37 43 48 44 49 45 48 44 37 43 17 47 50 48 38 49 39 49 51 48 20 47 40 50 52 51 53 52 52 51 40 50 41 53 42 53 43 50 54 51 55 52 54 51 43 50 56 54 17 55 44 56 45 56 20 55 57 54 47 57 58 58 59 59 58 58 47 57 46 60 48 60 49 57 60 58 61 59 60 58 49 57 17 61 62 62 50 63 51 63 63 62 20 61 53 64 64 65 65 66 64 65 53 64 52 67 54 67 55 64 66 65 67 66 66 65 55 64 56 68 68 69 17 70 20 70 69 69 57 68 59 71 70 72 71 73 70 72 59 71 58 74 60 74 61 71 72 72 73 73 72 72 61 71 17 75 74 76 62 77 63 77 75 76 20 75 65 78 76 79 77 80 76 79 65 78 64 81 66 81 67 78 78 79 79 80 78 79 67 78 68 82 80 83 17 84 20 84 81 83 69 82 71 85 82 86 83 87 82 86 71 85 70 88 72 88 73 85 84 86 85 87 84 86 73 85 17 89 86 90 74 91 75 91 87 90 20 89 77 92 88 93 89 94 88 93 77 92 76 95 78 95 79 92 90 93 91 94 90 93 79 92 80 96 92 97 17 98 20 98 93 97 81 96 82 99 94 100 83 101 94 100 82 99 95 102 96 102 84 99 97 100 85 101 97 100 84 99 17 103 98 104 86 105 87 105 99 104 20 103 89 106 100 107 101 108 100 107 89 106 88 109 90 109 91 106 102 107 103 108 102 107 91 106 92 110 104 111 17 112 20 112 105 111 93 110 95 113 106 114 94 115 106 114 95 113 107 116 108 116 96 113 109 114 97 115 109 114 96 113 17 117 110 118 98 119 99 119 111 118 20 117 112 120 100 121 113 122 100 121 112 120 101 123 103 123 114 120 102 121 115 122 102 121 114 120 104 124 116 125 17 126 20 126 117 125 105 124 107 127 118 128 106 129 118 128 107 127 119 130 120 130 108 127 121 128 109 129 121 128 108 127 17 131 122 132 110 133 111 133 123 132 20 131 119 134 113 135 118 136 113 135 119 134 112 137 114 137 120 134 115 135 121 136 115 135 120 134 116 138 124 139 17 140 20 140 125 139 117 138 17 141 126 142 122 143 123 143 127 142 20 141 17 144 124 145 126 146 127 146 125 145 20 144</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID333\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID334\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID338\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID341\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID339\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID340\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID339\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1000\" source=\"#ID343\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"3000\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID343\">-0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 -0.3788313495221017 0.7391863847872159 -0.7918046221566382 -0.3788313495221017 0.7391863847872159</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID340\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1000\" source=\"#ID344\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"3000\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID344\">-0.6131685433316286 -0.6352305123706656 -0.4695812321865837 -0.6107430305208749 -0.4313432930897734 -0.6640300551757034 -0.6100330350797705 -0.432978057042589 -0.6636186391527805 0.6100330350797705 0.432978057042589 0.6636186391527805 0.6107430305208749 0.4313432930897734 0.6640300551757034 0.6131685433316286 0.6352305123706656 0.4695812321865837 -0.6414932949073833 -0.1910191354735049 -0.7429657074669219 0.6414932949073833 0.1910191354735049 0.7429657074669219 -0.9119812894775979 0.2460334925802348 0.3282646008505167 -0.9087638176408079 0.2443143590689556 0.3383176284198477 -0.9230582056960787 0.2076733531501404 0.3237828397066665 0.9230582056960787 -0.2076733531501404 -0.3237828397066665 0.9087638176408079 -0.2443143590689556 -0.3383176284198477 0.9119812894775979 -0.2460334925802348 -0.3282646008505167 -0.5814085771430504 -0.6235265193762986 -0.5226650419331412 0.5814085771430504 0.6235265193762986 0.5226650419331412 -0.6219866060717065 -0.2255011033331463 -0.7498545954136263 0.6219866060717065 0.2255011033331463 0.7498545954136263 -0.9234677517021199 0.1707487320338378 0.3435872262978766 -0.9210274254689069 0.188359605763954 0.3409239511248287 0.9210274254689069 -0.188359605763954 -0.3409239511248287 0.9234677517021199 -0.1707487320338378 -0.3435872262978766 -0.9243339167159471 0.2082873548390461 0.319723612238305 0.9243339167159471 -0.2082873548390461 -0.319723612238305 -0.9018502407217643 0.249016537502691 0.3530678509299122 0.9018502407217643 -0.249016537502691 -0.3530678509299122 -0.4688809399671691 -0.7410968956416455 -0.4805476619502169 0.4688809399671691 0.7410968956416455 0.4805476619502169 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.5313074129219958 -0.1516791908637951 -0.8334901655286883 0.5313074129219958 0.1516791908637951 0.8334901655286883 -0.9193974272347317 0.1904939904256795 0.3441226676722378 0.9193974272347317 -0.1904939904256795 -0.3441226676722378 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 -0.9064264101263384 0.2873078457702411 0.3095890256200023 0.9064264101263384 -0.2873078457702411 -0.3095890256200023 -0.4125080872329844 -0.7444765374883888 -0.5249683448520343 0.4125080872329844 0.7444765374883888 0.5249683448520343 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 -0.4893414839082547 -0.1788419456180993 -0.8535575379633175 0.4893414839082547 0.1788419456180993 0.8535575379633175 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 -0.8847877951732008 0.3876305483478212 0.2586370342779885 0.8847877951732008 -0.3876305483478212 -0.2586370342779885 0.04569831620770311 0.6180154536524877 -0.7848366472983348 0.04971157032437513 0.7278710826830646 -0.683909677347578 0.05401064972997639 0.5993988161129192 -0.7986262636291001 -0.05401064972997639 -0.5993988161129192 0.7986262636291001 -0.04971157032437513 -0.7278710826830646 0.683909677347578 -0.04569831620770311 -0.6180154536524877 0.7848366472983348 -0.9126387109060857 0.2012446850352883 0.3557965150204898 0.9126387109060857 -0.2012446850352883 -0.3557965150204898 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 -0.5954974211095998 -0.6204561645494262 0.5103106596225786 -0.5750104179820392 -0.5638465179981029 0.5928238552500531 -0.5884703132773211 -0.5886073228299992 0.554296048968593 0.5884703132773211 0.5886073228299992 -0.554296048968593 0.5750104179820392 0.5638465179981029 -0.5928238552500531 0.5954974211095998 0.6204561645494262 -0.5103106596225786 -0.4435911602170827 0.5573645162302835 -0.7018345094284296 -0.4368753109454024 0.552964815618193 -0.7094856414154525 -0.4492936185982592 0.5610742779696141 -0.6952200363106335 0.4492936185982592 -0.5610742779696141 0.6952200363106335 0.4368753109454024 -0.552964815618193 0.7094856414154525 0.4435911602170827 -0.5573645162302835 0.7018345094284296 0.02921517395714277 -0.972018298904142 0.2330813167247683 0.007288799048047151 -0.9575732679774761 0.2880977435929935 0.0331249413609678 -0.9196095857015579 0.391434474906901 -0.0331249413609678 0.9196095857015579 -0.391434474906901 -0.007288799048047151 0.9575732679774761 -0.2880977435929935 -0.02921517395714277 0.972018298904142 -0.2330813167247683 -0.9092595095315058 0.2346197211408815 0.3438033315404329 0.9092595095315058 -0.2346197211408815 -0.3438033315404329 0.02784385059247752 0.01284876764323613 -0.9995297039879475 0.02557206782593211 -0.2876548247142446 -0.9573926943348394 0.0278811390736898 -0.1294666985918035 -0.9911917150782147 -0.0278811390736898 0.1294666985918035 0.9911917150782147 -0.02557206782593211 0.2876548247142446 0.9573926943348394 -0.02784385059247752 -0.01284876764323613 0.9995297039879475 0.0271922736872749 -0.5474159088744459 -0.8364187963950122 0.009825431372019862 -0.4178389509239254 -0.9084679807176186 -0.009825431372019862 0.4178389509239254 0.9084679807176186 -0.0271922736872749 0.5474159088744459 0.8364187963950122 0.03669397673521557 0.6999623410633172 -0.7132364777298733 -0.03669397673521557 -0.6999623410633172 0.7132364777298733 -0.9111139540391022 0.1995854796515729 0.3606064323711994 0.9111139540391022 -0.1995854796515729 -0.3606064323711994 -0.6085378327787385 -0.4363385207717332 0.6627898621491521 0.6085378327787385 0.4363385207717332 -0.6627898621491521 -0.4290146282623736 0.5477739795014404 -0.7182549102637957 0.4290146282623736 -0.5477739795014404 0.7182549102637957 0.0355140718306879 -0.9496263193448361 0.3113657083071032 -0.0355140718306879 0.9496263193448361 -0.3113657083071032 0.02589537248138592 -0.5533675459134304 -0.8325345571288905 0.02066161520126121 -0.7708648855079502 -0.6366635107716556 0.0193163073801767 -0.6584185702951814 -0.7524040580430462 0.02675587691421818 -0.5599249416657842 -0.8281112139991341 -0.02675587691421818 0.5599249416657842 0.8281112139991341 -0.02589537248138592 0.5533675459134304 0.8325345571288905 -0.02066161520126121 0.7708648855079502 0.6366635107716556 -0.0193163073801767 0.6584185702951814 0.7524040580430462 0.019948224836587 -0.9244137174900406 -0.380869199650106 0.01414311661247775 -0.8602383968027927 -0.5096958631563011 -0.01414311661247775 0.8602383968027927 0.5096958631563011 -0.019948224836587 0.9244137174900406 0.380869199650106 -0.3869225765070412 0.8727213960493712 -0.2977386180306301 -0.4189594113912097 0.8690844326029823 -0.2629928908048341 -0.5897023076858039 0.8014515282654252 -0.09963250549419947 0.5897023076858039 -0.8014515282654252 0.09963250549419947 0.4189594113912097 -0.8690844326029823 0.2629928908048341 0.3869225765070412 -0.8727213960493712 0.2977386180306301 -0.9099990926414894 0.2258504072914317 0.3476970591160654 0.9099990926414894 -0.2258504072914317 -0.3476970591160654 0.03481463620808104 0.01941661477622277 -0.9992051521966502 -0.03481463620808104 -0.01941661477622277 0.9992051521966502 0.02635295136991371 0.002234022109095546 -0.9996502043711644 -0.02635295136991371 -0.002234022109095546 0.9996502043711644 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.03784136067587975 0.8144840404498097 -0.578950584484333 0.03784136067587975 -0.8144840404498097 0.578950584484333 -0.9173890060384352 0.2293469628645768 0.3252650953062846 0.9173890060384352 -0.2293469628645768 -0.3252650953062846 -0.6122597140083652 -0.4503628205385982 0.6498548857082733 0.6122597140083652 0.4503628205385982 -0.6498548857082733 -0.03958647210302838 -0.8552382005688831 0.5167209416252983 0.03958647210302838 0.8552382005688831 -0.5167209416252983 0.03026716317725075 -0.2976749896778023 -0.9541873502376365 -0.03026716317725075 0.2976749896778023 0.9541873502376365 0.02910907021181551 -0.7855610775535136 -0.6180990660600988 -0.02910907021181551 0.7855610775535136 0.6180990660600988 0.01961372260044477 -0.9291073014986491 -0.3692897564076902 -0.01961372260044477 0.9291073014986491 0.3692897564076902 -0.5991542260006512 0.7982237271597008 -0.06207330235162312 0.5991542260006512 -0.7982237271597008 0.06207330235162312 -0.9157317949075062 0.1970830215706734 0.3501336350653144 0.9157317949075062 -0.1970830215706734 -0.3501336350653144 0.0299077864524713 0.3064717907049849 -0.9514097780723052 -0.0299077864524713 -0.3064717907049849 0.9514097780723052 0.02136018720689605 0.2992869541934073 -0.9539240333758867 -0.02136018720689605 -0.2992869541934073 0.9539240333758867 -0.005482260976492941 0.139386230751211 0.9902229160605989 -0.007408558792217734 0.4165322447531742 0.909090755831069 -0.006913157180589681 0.1302289306279806 0.9914598498604414 0.006913157180589681 -0.1302289306279806 -0.9914598498604414 0.007408558792217734 -0.4165322447531742 -0.909090755831069 0.005482260976492941 -0.139386230751211 -0.9902229160605989 -0.003797720091156379 0.4255976902132539 0.9049045161823717 -0.003802609351618076 0.6663786935817081 0.7456037666900933 0.003802609351618076 -0.6663786935817081 -0.7456037666900933 0.003797720091156379 -0.4255976902132539 -0.9049045161823717 -0.0008944920513999811 0.6733396999513402 0.7393327047773614 0.001295306138674836 0.8564789233090522 0.5161803716816183 -0.001295306138674836 -0.8564789233090522 -0.5161803716816183 0.0008944920513999811 -0.6733396999513402 -0.7393327047773614 0.002908326967066847 0.8606855222858298 0.5091286412703778 0.006332432417781015 0.9251165065025596 0.3796305436818457 -0.006332432417781015 -0.9251165065025596 -0.3796305436818457 -0.002908326967066847 -0.8606855222858298 -0.5091286412703778 -0.001404844418161865 0.99551776389769 0.09456430709471765 0.007293336385795456 0.9730925818604524 0.2302990107936251 0.01231533713361633 0.9984524360191881 -0.05423159114975583 -0.01231533713361633 -0.9984524360191881 0.05423159114975583 -0.007293336385795456 -0.9730925818604524 -0.2302990107936251 0.001404844418161865 -0.99551776389769 -0.09456430709471765 0.0120157990965055 0.998198666219562 -0.05877961661630734 0.01023761722016337 0.980868485680595 -0.1944021733219808 -0.01023761722016337 -0.980868485680595 0.1944021733219808 -0.0120157990965055 -0.998198666219562 0.05877961661630734 0.01646393589398393 0.9369218021430217 -0.3491510783084469 0.02512467636456076 0.7906507610061087 -0.611751685537553 0.01414019568378701 0.8726596648110707 -0.4881241279406847 -0.01414019568378701 -0.8726596648110707 0.4881241279406847 -0.02512467636456076 -0.7906507610061087 0.611751685537553 -0.01646393589398393 -0.9369218021430217 0.3491510783084469 0.02402975912977263 0.7849144902682695 -0.6191379601050702 0.03469207648931452 0.5770147196282489 -0.8159966134495859 -0.03469207648931452 -0.5770147196282489 0.8159966134495859 -0.02402975912977263 -0.7849144902682695 0.6191379601050702 0.02921019489462125 0.5707659558659806 -0.8205930709789181 0.03508365640598449 0.3143465129616109 -0.9486597951015225 -0.03508365640598449 -0.3143465129616109 0.9486597951015225 -0.02921019489462125 -0.5707659558659806 0.8205930709789181 0.01492656118699344 -0.9952036424557336 -0.09667940739356572 -0.01492656118699344 0.9952036424557336 0.09667940739356572 0.008347472633542526 -0.9795541238063974 0.2010075576552121 0.01346271275209136 -0.9964377721902609 -0.08324975386068219 -0.01346271275209136 0.9964377721902609 0.08324975386068219 -0.008347472633542526 0.9795541238063974 -0.2010075576552121 0.002143504963585591 -0.8767179422043012 0.4810000573841198 0.008249685662450967 -0.976765905206645 0.2141502022233793 -0.008249685662450967 0.976765905206645 -0.2141502022233793 -0.002143504963585591 0.8767179422043012 -0.4810000573841198 0.002686763416736887 -0.7899672717419514 0.6131431243020837 0.003370248980950642 -0.8703013678452798 0.4925080411002865 -0.003370248980950642 0.8703013678452798 -0.4925080411002865 -0.002686763416736887 0.7899672717419514 -0.6131431243020837 -0.0007244517714074711 -0.686530526938509 0.7271006194132722 -0.006791809893397876 -0.4554923169053546 0.890213806092988 -0.009335567978409306 -0.5787453233274817 0.8154549024299805 0.009335567978409306 0.5787453233274817 -0.8154549024299805 0.006791809893397876 0.4554923169053546 -0.890213806092988 0.0007244517714074711 0.686530526938509 -0.7271006194132722 -0.9824989449431362 0.08503230673662772 -0.1657266725565704 -0.9999899824504387 -0.00260493943261591 0.003639957324477385 -0.9869176053607741 0.09681709921543918 -0.1289189261841074 0.9869176053607741 -0.09681709921543918 0.1289189261841074 0.9999899824504387 0.00260493943261591 -0.003639957324477385 0.9824989449431362 -0.08503230673662772 0.1657266725565704 -0.003997307821499382 -0.4458837485294091 0.8950819539726755 -0.007381002033179414 -0.3156791974855449 0.9488372700752583 0.007381002033179414 0.3156791974855449 -0.9488372700752583 0.003997307821499382 0.4458837485294091 -0.8950819539726755 -0.9999905288897614 -0.001370765720624478 0.004130754424404623 -0.9841485037669431 0.06359518961047951 -0.1655517272386327 0.9841485037669431 -0.06359518961047951 0.1655517272386327 0.9999905288897614 0.001370765720624478 -0.004130754424404623 -0.004057949462573538 -0.1654053068756676 0.9862173277242321 -0.002427302614937988 -0.01243128957560056 0.9999197824033201 0.002427302614937988 0.01243128957560056 -0.9999197824033201 0.004057949462573538 0.1654053068756676 -0.9862173277242321 -0.05001318370946404 0.8414267630942929 -0.5380517482583845 0.05001318370946404 -0.8414267630942929 0.5380517482583845 -0.9187981593551595 0.2316284903157012 0.3196219404853802 0.9187981593551595 -0.2316284903157012 -0.3196219404853802 -0.5116852732955495 -0.4542311857591191 0.7292819831699693 0.5116852732955495 0.4542311857591191 -0.7292819831699693 -0.05172784220055365 -0.8363317719908131 0.5457777913216892 0.05172784220055365 0.8363317719908131 -0.5457777913216892 -0.5143076157204272 0.8449925937235406 -0.1465441672818575 0.5143076157204272 -0.8449925937235406 0.1465441672818575 -0.9157810847001926 0.1934753844391117 0.3520117619078609 0.9157810847001926 -0.1934753844391117 -0.3520117619078609 0.03964917043178988 0.3525170978793918 0.9349650469331792 0.04335475963781485 0.2054908490064289 0.9776982539574081 0.03592728837289261 0.3424796949339312 0.9388380523328466 -0.03592728837289261 -0.3424796949339312 -0.9388380523328466 -0.04335475963781485 -0.2054908490064289 -0.9776982539574081 -0.03964917043178988 -0.3525170978793918 -0.9349650469331792 0.01644376297839757 0.9974451863900713 -0.06951764384949995 -0.01644376297839757 -0.9974451863900713 0.06951764384949995 0.03346756875724736 0.3104113722911479 -0.9500130008551491 0.02135092118153528 0.2802821764875909 -0.9596801757398549 0.03793714202236574 0.1449358727658069 -0.9887134903705868 -0.03793714202236574 -0.1449358727658069 0.9887134903705868 -0.02135092118153528 -0.2802821764875909 0.9596801757398549 -0.03346756875724736 -0.3104113722911479 0.9500130008551491 0.04741565844858901 -0.9527313725054269 -0.3000911314547839 0.04731999989724039 -0.988143031769225 -0.1460622003656307 0.04357592730064158 -0.986621286913195 -0.1570973417013809 -0.04357592730064158 0.986621286913195 0.1570973417013809 -0.04731999989724039 0.988143031769225 0.1460622003656307 -0.04741565844858901 0.9527313725054269 0.3000911314547839 -0.9612697098559012 0.1241480665562238 -0.2460646307048266 0.9612697098559012 -0.1241480665562238 0.2460646307048266 0.03145112195807651 0.7894354586032027 0.613027310670193 0.02684474802398928 0.6624818840923926 0.7485967624515366 0.002788247194464847 0.7096494163407977 0.7045494528879771 -0.002788247194464847 -0.7096494163407977 -0.7045494528879771 -0.02684474802398928 -0.6624818840923926 -0.7485967624515366 -0.03145112195807651 -0.7894354586032027 -0.613027310670193 -0.06757829711111801 0.7710133873258493 -0.6332231283867335 0.06757829711111801 -0.7710133873258493 0.6332231283867335 -0.9294521394256079 0.253452618746215 0.268105372135372 0.9294521394256079 -0.253452618746215 -0.268105372135372 -0.5121653214427434 -0.4705831108144322 0.7184971950729265 0.5121653214427434 0.4705831108144322 -0.7184971950729265 -0.06755689289069129 -0.8758167307604269 0.4778923731794361 0.06755689289069129 0.8758167307604269 -0.4778923731794361 0.01533915038481843 -0.931302781136795 -0.363922849395779 -0.01533915038481843 0.931302781136795 0.363922849395779 -0.5141693164024285 0.8420130928550114 -0.1632294873207583 0.5141693164024285 -0.8420130928550114 0.1632294873207583 -0.9325766854234757 0.1309140125917365 0.3363959677399454 0.9325766854234757 -0.1309140125917365 -0.3363959677399454 0.001200659249239651 -0.1460802454730157 0.9892720153223333 -0.001200659249239651 0.1460802454730157 -0.9892720153223333 -0.002061751646003162 0.149208950471754 0.9888035387675693 0.002061751646003162 -0.149208950471754 -0.9888035387675693 -0.0009318520237067135 0.433722340755988 0.9010460935939696 0.0009318520237067135 -0.433722340755988 -0.9010460935939696 0.001230385039251648 0.6798257005461618 0.7333726904034371 -0.001230385039251648 -0.6798257005461618 -0.7333726904034371 0.004958609525564488 0.865332610935552 0.5011735075231268 -0.004958609525564488 -0.865332610935552 -0.5011735075231268 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.03665747372773916 0.2635154343631972 0.9639584251783245 -0.03665747372773916 -0.2635154343631972 -0.9639584251783245 0.009900852030461732 0.9748308572254344 0.2227257796713161 -0.009900852030461732 -0.9748308572254344 -0.2227257796713161 0.02459906767420807 0.9291593642459279 -0.3688600841832339 -0.02459906767420807 -0.9291593642459279 0.3688600841832339 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.03526949973342622 0.2184273294063683 -0.9752156500779486 -0.03526949973342622 -0.2184273294063683 0.9752156500779486 0.01810657254151843 0.7819003011516978 -0.6231404906517333 -0.01810657254151843 -0.7819003011516978 0.6231404906517333 0.01159606897749572 -0.9972521189634576 -0.07316927228805119 -0.01159606897749572 0.9972521189634576 0.07316927228805119 0.007746355397098426 -0.9745611152693888 0.2239880054443695 -0.007746355397098426 0.9745611152693888 -0.2239880054443695 0.004188632105367766 -0.8653193803481177 0.5012033772382579 -0.004188632105367766 0.8653193803481177 -0.5012033772382579 0.03694298968752306 -0.9660546355743256 -0.2556827264370916 -0.03694298968752306 0.9660546355743256 0.2556827264370916 0.001214459778276763 -0.6793050578937298 0.7338550016232387 -0.001214459778276763 0.6793050578937298 -0.7338550016232387 -0.9165260464188996 0.2413126785897623 -0.3189799325781723 0.9165260464188996 -0.2413126785897623 0.3189799325781723 0.001434244776386382 -0.4349910787918278 0.9004336201594448 -0.001434244776386382 0.4349910787918278 -0.9004336201594448 0.03479758506284582 0.7257101728783496 0.6871199844675382 -0.03479758506284582 -0.7257101728783496 -0.6871199844675382 -0.9053555865328123 0.1174765612269161 -0.4080815108481708 0.9053555865328123 -0.1174765612269161 0.4080815108481708 -0.06837815441249286 0.7838010835826982 -0.61723600783957 0.06837815441249286 -0.7838010835826982 0.61723600783957 -0.925181050407382 0.2544784030417004 0.2815684043930342 0.925181050407382 -0.2544784030417004 -0.2815684043930342 -0.5094027305261349 -0.4031696580921826 0.7602388341346096 0.5094027305261349 0.4031696580921826 -0.7602388341346096 -0.06822779517691434 -0.8673864003091556 0.4929358990010996 0.06822779517691434 0.8673864003091556 -0.4929358990010996 -0.5108147009650829 0.8560080643809171 -0.07948921305931028 0.5108147009650829 -0.8560080643809171 0.07948921305931028 -0.9295497348399154 0.141402496183842 0.3405034868133092 0.9295497348399154 -0.141402496183842 -0.3405034868133092 0.01921047962226295 0.5651345907762262 -0.8247750310120148 -0.01921047962226295 -0.5651345907762262 0.8247750310120148 -0.924489198402029 -0.3808644361577947 0.0161865162458993 -0.9243377794016469 -0.3811886557337647 0.0171720211599593 -0.9072210144294771 -0.4193680273961145 0.03287078604844312 0.9072210144294771 0.4193680273961145 -0.03287078604844312 0.9243377794016469 0.3811886557337647 -0.0171720211599593 0.924489198402029 0.3808644361577947 -0.0161865162458993 -0.03780903634253117 0.08541542107879442 0.9956277831663706 0.03780903634253117 -0.08541542107879442 -0.9956277831663706 -0.915264571564772 -0.4027493562430763 -0.009149867984932962 0.915264571564772 0.4027493562430763 0.009149867984932962 -0.03805664037554967 -0.009784856047856541 -0.9992276761156334 0.03805664037554967 0.009784856047856541 0.9992276761156334 -0.03988346302587386 -0.9059913707647226 -0.4214130342988013 0.03988346302587386 0.9059913707647226 0.4214130342988013 -0.8756294668438924 0.3525945089564383 -0.3300759746610601 0.8756294668438924 -0.3525945089564383 0.3300759746610601 -0.7066995161370085 -0.3328394342728472 0.6243346097123314 -0.6992610303780938 -0.1874041802288657 0.6898649756490857 -0.706699211393621 -0.332866770111896 0.6243203808709985 0.706699211393621 0.332866770111896 -0.6243203808709985 0.6992610303780938 0.1874041802288657 -0.6898649756490857 0.7066995161370085 0.3328394342728472 -0.6243346097123314 -0.038009535614359 0.8723927326412684 0.4873255536467188 0.038009535614359 -0.8723927326412684 -0.4873255536467188 -0.6961182166882092 -0.4697752474880487 0.5428910067797866 0.6961182166882092 0.4697752474880487 -0.5428910067797866 -0.8876323827149847 0.1162542163379045 -0.4456385422507556 0.8876323827149847 -0.1162542163379045 0.4456385422507556 -0.06016248758640132 0.7467500003972328 -0.6623782242753371 0.06016248758640132 -0.7467500003972328 0.6623782242753371 -0.9245527864503199 0.237309528475381 0.298138110213608 0.9245527864503199 -0.237309528475381 -0.298138110213608 -0.5139497895077154 -0.4058857625891543 0.755719763928664 0.5139497895077154 0.4058857625891543 -0.755719763928664 -0.0600348953330893 -0.8956050067033663 0.4407805387153662 0.0600348953330893 0.8956050067033663 -0.4407805387153662 -0.515859789786745 0.8519771407680433 -0.08957471121854281 0.515859789786745 -0.8519771407680433 0.08957471121854281 -0.9272834517509151 0.1632925520749501 0.3368693256230941 0.9272834517509151 -0.1632925520749501 -0.3368693256230941 -0.9059645702483528 -0.4228100787491342 0.02144375813304393 0.9059645702483528 0.4228100787491342 -0.02144375813304393 -0.04998584997638523 0.03649578989508206 0.9980828984218056 0.04998584997638523 -0.03649578989508206 -0.9980828984218056 -0.9126672826667309 -0.4084995448882047 -0.01290554050999234 -0.9026800271055669 -0.4300978238059344 -0.01358788512213859 -0.9111165739877291 -0.4120009636975097 -0.01103605532726058 0.9111165739877291 0.4120009636975097 0.01103605532726058 0.9026800271055669 0.4300978238059344 0.01358788512213859 0.9126672826667309 0.4084995448882047 0.01290554050999234 -0.9164192555908047 -0.4001603245189633 -0.006889315152686308 0.9164192555908047 0.4001603245189633 0.006889315152686308 -0.9100128209423325 -0.4141053938628353 0.01983402365341829 -0.9098768749122155 -0.4144813710644892 0.01814567553114639 0.9098768749122155 0.4144813710644892 -0.01814567553114639 0.9100128209423325 0.4141053938628353 -0.01983402365341829 -0.05007447950133898 -0.04460336033844332 -0.9977490098963712 0.05007447950133898 0.04460336033844332 0.9977490098963712 -0.05223146845994098 -0.8838556721519534 -0.4648344054685892 0.05223146845994098 0.8838556721519534 0.4648344054685892 -0.9055099122664467 0.08478975686936037 -0.415767357926577 -0.9134603460440244 0.100090271838512 -0.3944263349326765 -0.9150871129800877 0.09156365276906278 -0.3927234054004866 0.9150871129800877 -0.09156365276906278 0.3927234054004866 0.9134603460440244 -0.100090271838512 0.3944263349326765 0.9055099122664467 -0.08478975686936037 0.415767357926577 -0.8628976978143381 0.3867850561445824 -0.3252766260430459 0.8628976978143381 -0.3867850561445824 0.3252766260430459 -0.9158353220314106 0.1680129671192036 0.3647153764230731 -0.8250636447121634 0.1563131469686213 0.542988197163665 -0.9156800465471477 0.12306795282666 0.3826020535000676 0.9156800465471477 -0.12306795282666 -0.3826020535000676 0.8250636447121634 -0.1563131469686213 -0.542988197163665 0.9158353220314106 -0.1680129671192036 -0.3647153764230731 -0.9301712002434255 0.04356903436083521 0.3645315863989973 0.9301712002434255 -0.04356903436083521 -0.3645315863989973 -0.9102915714758219 0.1919571037046917 -0.3667720344265427 -0.9098752187950685 0.1899053550703858 -0.3688672421593123 0.9098752187950685 -0.1899053550703858 0.3688672421593123 0.9102915714758219 -0.1919571037046917 0.3667720344265427 -0.05002206568014039 0.8883803733443121 0.4563749611905901 0.05002206568014039 -0.8883803733443121 -0.4563749611905901 -0.9161764556186254 -0.3981519670093227 0.04577896172588378 -0.9335057704990215 -0.3295072998576136 0.1413927713342278 -0.9152454586525087 -0.3912460761204535 0.09618866012325544 0.9152454586525087 0.3912460761204535 -0.09618866012325544 0.9335057704990215 0.3295072998576136 -0.1413927713342278 0.9161764556186254 0.3981519670093227 -0.04577896172588378 -0.8008752262028298 -0.5581038891156944 0.2170689314676397 0.8008752262028298 0.5581038891156944 -0.2170689314676397 -0.9078252336262972 0.2546053228708254 -0.3332108563015343 0.9078252336262972 -0.2546053228708254 0.3332108563015343 -0.06214391660331564 0.7497897154320584 -0.6587514829292707 0.06214391660331564 -0.7497897154320584 0.6587514829292707 -0.9105068842497451 0.232294596580093 0.3420766495005371 0.9105068842497451 -0.232294596580093 -0.3420766495005371 -0.5636529765645513 -0.1834260551652416 0.805388232032502 0.5636529765645513 0.1834260551652416 -0.805388232032502 -0.06204321152616367 -0.8915755561120776 0.4486019033028719 0.06204321152616367 0.8915755561120776 -0.4486019033028719 -0.563551722335448 0.8122020272639635 0.1507890021223632 0.563551722335448 -0.8122020272639635 -0.1507890021223632 -0.9128754411958339 0.2045282989941302 0.3533080861968483 0.9128754411958339 -0.2045282989941302 -0.3533080861968483 -0.8841694971092278 -0.4670196417475235 0.01170276051322128 0.8841694971092278 0.4670196417475235 -0.01170276051322128 -0.7948062792220184 0.5103440598305962 -0.328377707990168 -0.6271806346804609 0.7782902294104336 -0.0301458170575845 -0.6099115313195107 0.7918454994605457 -0.03144247044315008 0.6099115313195107 -0.7918454994605457 0.03144247044315008 0.6271806346804609 -0.7782902294104336 0.0301458170575845 0.7948062792220184 -0.5103440598305962 0.328377707990168 -0.06757420297446912 0.1542219217613901 0.9857227429356539 0.06757420297446912 -0.1542219217613901 -0.9857227429356539 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 -0.9173919056680412 -0.396652180679767 0.03254441544636197 0.9173919056680412 0.396652180679767 -0.03254441544636197 -0.7044687220678403 0.6666170076972114 0.2436094921732724 0.7044687220678403 -0.6666170076972114 -0.2436094921732724 -0.9056948139282527 -0.4239285587280207 -0.001217012017516861 0.9056948139282527 0.4239285587280207 0.001217012017516861 -0.9062955794800263 -0.4218840716820903 0.02534073155818777 0.9062955794800263 0.4218840716820903 -0.02534073155818777 -0.9178702577263617 -0.3968043330700363 -0.007778896977463935 0.9178702577263617 0.3968043330700363 0.007778896977463935 -0.0673402010633347 0.03284261300743482 -0.9971893802541189 0.0673402010633347 -0.03284261300743482 0.9971893802541189 -0.06783519718058229 -0.9323282921296917 -0.3551933863657993 0.06783519718058229 0.9323282921296917 0.3551933863657993 -0.9036091026635394 0.0556782963512844 -0.424724047940556 0.9036091026635394 -0.0556782963512844 0.424724047940556 -0.9151772240300315 0.1669447966678817 -0.3668515823629565 0.9151772240300315 -0.1669447966678817 0.3668515823629565 -0.5462375627474104 0.7832296524327782 0.2969441641012638 -0.6297975146368566 0.6855810967237255 0.3651488057933807 -0.6447186628852124 0.6879675290323077 0.3332244359657386 0.6447186628852124 -0.6879675290323077 -0.3332244359657386 0.6297975146368566 -0.6855810967237255 -0.3651488057933807 0.5462375627474104 -0.7832296524327782 -0.2969441641012638 -0.8004665242590809 0.1327927671656561 0.584482184954404 0.8004665242590809 -0.1327927671656561 -0.584482184954404 -0.9178727869669794 0.2036829255299642 -0.3406212160054408 0.9178727869669794 -0.2036829255299642 0.3406212160054408 -0.06731641938335971 0.8494783472765206 0.5233116062058579 0.06731641938335971 -0.8494783472765206 -0.5233116062058579 -0.7668641844162472 -0.5810340615428355 0.2726146400812705 0.7668641844162472 0.5810340615428355 -0.2726146400812705 -0.6233448385994473 -0.603445758421776 -0.4972870688387107 -0.6450470615181747 -0.7070854542103706 -0.2897316842716416 -0.6476791120465277 -0.7033306111846984 -0.2929809194967823 0.6476791120465277 0.7033306111846984 0.2929809194967823 0.6450470615181747 0.7070854542103706 0.2897316842716416 0.6233448385994473 0.603445758421776 0.4972870688387107 -0.0732053161087646 0.6786547872505393 -0.7308000146656684 0.0732053161087646 -0.6786547872505393 0.7308000146656684 -0.9271360714165975 0.212632426034943 0.3085549488773313 0.9271360714165975 -0.212632426034943 -0.3085549488773313 -0.5682440159721127 -0.2499810897182357 0.7839695103096603 0.5682440159721127 0.2499810897182357 -0.7839695103096603 -0.07326583168045271 -0.9382150080750226 0.3382080964893607 0.07326583168045271 0.9382150080750226 -0.3382080964893607 -0.5680807927105938 0.8189688158964524 0.08108200504714996 0.5680807927105938 -0.8189688158964524 -0.08108200504714996 -0.927548465775947 0.18590322006679 0.3241817953023973 0.927548465775947 -0.18590322006679 -0.3241817953023973 -0.8928491632893021 -0.4470013707692716 0.05486479876920774 0.8928491632893021 0.4470013707692716 -0.05486479876920774 -0.6779678389035451 0.5914850813119577 -0.4364687938419465 -0.7930586724642184 0.5380222435700273 -0.2856396461508205 0.7930586724642184 -0.5380222435700273 0.2856396461508205 0.6779678389035451 -0.5914850813119577 0.4364687938419465 -0.06837946245005622 0.133948004867257 0.9886264112935294 0.06837946245005622 -0.133948004867257 -0.9886264112935294 -0.9187989142657232 -0.3929531117095517 0.0373685314390171 0.9187989142657232 0.3929531117095517 -0.0373685314390171 -0.5792112105076253 -0.03535317024093707 -0.8144105395782932 -0.5626671069308074 -0.09424735772971241 -0.8212935908303943 -0.6084903667744845 -0.3361198159561551 -0.7188622558350478 0.6084903667744845 0.3361198159561551 0.7188622558350478 0.5626671069308074 0.09424735772971241 0.8212935908303943 0.5792112105076253 0.03535317024093707 0.8144105395782932 -0.6142586567780607 -0.3121905317741047 -0.7247229639274684 -0.5114901394861176 -0.3977120680449375 -0.7617105409142576 0.5114901394861176 0.3977120680449375 0.7617105409142576 0.6142586567780607 0.3121905317741047 0.7247229639274684 -0.7165913554401721 0.6650103775153866 0.2103759185488212 0.7165913554401721 -0.6650103775153866 -0.2103759185488212 -0.764937702624227 0.5192485317920021 0.3811184505318785 0.764937702624227 -0.5192485317920021 -0.3811184505318785 -0.5301106299440702 -0.2511652486673166 0.809875754595843 -0.6030031272843839 -0.3014611009609044 0.7385854270784746 -0.5174518251755897 -0.2411286674177418 0.8210362807889765 0.5174518251755897 0.2411286674177418 -0.8210362807889765 0.6030031272843839 0.3014611009609044 -0.7385854270784746 0.5301106299440702 0.2511652486673166 -0.809875754595843 -0.6060304150691775 -0.3080632070317224 0.7333649817685672 -0.5145052688849753 -0.2999231163421164 0.803324624652595 0.5145052688849753 0.2999231163421164 -0.803324624652595 0.6060304150691775 0.3080632070317224 -0.7333649817685672 -0.9180481665079123 -0.3962927934772661 -0.01181464385606148 0.9180481665079123 0.3962927934772661 0.01181464385606148 -0.06822609440622343 0.01557927206212744 -0.9975482375925926 0.06822609440622343 -0.01557927206212744 0.9975482375925926 -0.06836592527621122 -0.9248117108838933 -0.374231745945121 0.06836592527621122 0.9248117108838933 0.374231745945121 -0.9159377876348976 0.1653334364994017 -0.3656813147506822 0.9159377876348976 -0.1653334364994017 0.3656813147506822 -0.6049336713798291 0.7946676713190241 0.05058206590601672 -0.5557652605442751 0.7376308132429826 0.3834393805109877 0.5557652605442751 -0.7376308132429826 -0.3834393805109877 0.6049336713798291 -0.7946676713190241 -0.05058206590601672 -0.5113431291935486 0.8587529234400222 0.03273561836539834 -0.6114792617679662 0.7887888748458873 0.06249178623677078 0.6114792617679662 -0.7887888748458873 -0.06249178623677078 0.5113431291935486 -0.8587529234400222 -0.03273561836539834 -0.6410831753865172 -0.6305734637185176 -0.4374808213972034 -0.6084825682336931 -0.495113360886253 -0.6201707216788357 0.6084825682336931 0.495113360886253 0.6201707216788357 0.6410831753865172 0.6305734637185176 0.4374808213972034 -0.6086877370165386 -0.4987726994136522 -0.6170291995726814 -0.5145324763372529 -0.5486089202616341 -0.6590027188135252 0.5145324763372529 0.5486089202616341 0.6590027188135252 0.6086877370165386 0.4987726994136522 0.6170291995726814 -0.9180510116488734 0.2069327617052255 -0.3381732871525023 0.9180510116488734 -0.2069327617052255 0.3381732871525023 -0.06820506512298212 0.8583605711733054 0.5084930667635563 0.06820506512298212 -0.8583605711733054 -0.5084930667635563 -0.07788897801981856 0.7203251955069255 -0.6892495337836203 0.07788897801981856 -0.7203251955069255 0.6892495337836203 -0.9186236678224693 0.2137604419261941 0.3323206740242198 0.9186236678224693 -0.2137604419261941 -0.3323206740242198 -0.5912354405693278 -0.06373945870929254 0.8039763275235403 0.5912354405693278 0.06373945870929254 -0.8039763275235403 -0.07801011213032839 -0.9149104860515087 0.3960469983706556 0.07801011213032839 0.9149104860515087 -0.3960469983706556 -0.5911901739412696 0.7634359260444917 0.2601149074157052 0.5911901739412696 -0.7634359260444917 -0.2601149074157052 -0.918427191400784 0.2082707995037445 0.3363253903138127 0.918427191400784 -0.2082707995037445 -0.3363253903138127 -0.5611802421407521 0.1223351114562133 -0.8186029906712061 -0.5552116476461365 0.1310993066410967 -0.8213117545221707 0.5552116476461365 -0.1310993066410967 0.8213117545221707 0.5611802421407521 -0.1223351114562133 0.8186029906712061 -0.6408955186930352 0.6368247591987463 -0.4286107327058484 0.6408955186930352 -0.6368247591987463 0.4286107327058484 -0.06018780181180793 0.1916292067335681 0.9796201690654016 0.06018780181180793 -0.1916292067335681 -0.9796201690654016 -0.9294544655857993 -0.3596552207152826 0.08223453419858177 0.9294544655857993 0.3596552207152826 -0.08223453419858177 -0.5119734798882151 -0.3801411073322832 -0.7703089603576846 0.5119734798882151 0.3801411073322832 0.7703089603576846 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 -0.7827724052343109 0.4885261484066231 0.3854991101503113 0.7827724052343109 -0.4885261484066231 -0.3854991101503113 -0.6653394530452826 0.165916713449703 0.7278702194893354 -0.6147039237146543 0.238512470860314 0.7518316882214503 -0.6840994787240873 0.1363722874922993 0.7165266934410397 0.6840994787240873 -0.1363722874922993 -0.7165266934410397 0.6147039237146543 -0.238512470860314 -0.7518316882214503 0.6653394530452826 -0.165916713449703 -0.7278702194893354 -0.5846765150393855 0.2775554521153094 0.7623098738455811 0.5846765150393855 -0.2775554521153094 -0.7623098738455811 -0.5144696680899629 -0.2827869085697489 0.8095384641615049 0.5144696680899629 0.2827869085697489 -0.8095384641615049 -0.9325779507189076 -0.3562891568629708 -0.0579344675887886 0.9325779507189076 0.3562891568629708 0.0579344675887886 -0.06008517546283819 0.07478840775462761 -0.9953875957410397 0.06008517546283819 -0.07478840775462761 0.9953875957410397 -0.06016537746400757 -0.9456188928128914 -0.3196639437126669 0.06016537746400757 0.9456188928128914 0.3196639437126669 -0.9294575191574707 0.1069983269701304 -0.3530723411812842 0.9294575191574707 -0.1069983269701304 0.3530723411812842 -0.5118224780352834 0.8574987258211545 0.05228466498810563 0.5118224780352834 -0.8574987258211545 -0.05228466498810563 -0.514493135926281 -0.5625126092319087 -0.6472065957172033 0.514493135926281 0.5625126092319087 0.6472065957172033 -0.9325781432366856 0.2270966540840191 -0.280579964468348 0.9325781432366856 -0.2270966540840191 0.280579964468348 -0.06002763057924118 0.8270709642152402 0.5588830859125324 0.06002763057924118 -0.8270709642152402 -0.5588830859125324 -0.07605661316331486 0.6351470128865732 -0.7686375372146413 0.07605661316331486 -0.6351470128865732 0.7686375372146413 -0.9208305953623421 0.2088271071494026 0.3293360805685381 0.9208305953623421 -0.2088271071494026 -0.3293360805685381 -0.8621478316094056 0.2290208849793479 0.4519408707944841 0.8621478316094056 -0.2290208849793479 -0.4519408707944841 -0.6042033250166701 -0.04459964845335795 0.7955810539452516 0.6042033250166701 0.04459964845335795 -0.7955810539452516 -0.0760742450757196 -0.9574640025019078 0.27834401942414 0.0760742450757196 0.9574640025019078 -0.27834401942414 -0.6041792882639404 0.748119712716962 0.2743798153603302 0.6041792882639404 -0.748119712716962 -0.2743798153603302 -0.8666360269162206 0.3018712000249856 0.3972603371170386 0.8666360269162206 -0.3018712000249856 -0.3972603371170386 -0.06215953815997215 0.1869805446352334 0.9803950569763448 0.06215953815997215 -0.1869805446352334 -0.9803950569763448 -0.9251817572127729 -0.3717791800066462 0.07628209117657712 0.9251817572127729 0.3717791800066462 -0.07628209117657712 -0.5094391278008816 -0.4503793007937866 -0.7332327464604789 0.5094391278008816 0.4503793007937866 0.7332327464604789 -0.5107042903204709 -0.3659351517327707 0.7779926687151866 0.5107042903204709 0.3659351517327707 -0.7779926687151866 -0.9295512194985515 -0.3651508688837732 -0.05098404929172666 0.9295512194985515 0.3651508688837732 0.05098404929172666 -0.06207876760437363 0.06602698698797134 -0.9958848646314555 0.06207876760437363 -0.06602698698797134 0.9958848646314555 -0.06213739111210562 -0.9439802191053086 -0.3240991986470726 0.06213739111210562 0.9439802191053086 0.3240991986470726 -0.9251831321196651 0.1181898446877643 -0.3606484890498343 0.9251831321196651 -0.1181898446877643 0.3606484890498343 -0.5092947909307791 0.8601651410365301 -0.027106199962007 0.5092947909307791 -0.8601651410365301 0.027106199962007 -0.5105354677853689 -0.4940289674119409 -0.703767657320984 0.5105354677853689 0.4940289674119409 0.703767657320984 -0.9295504993104691 0.2254579596928901 -0.2917268887894581 0.9295504993104691 -0.2254579596928901 0.2917268887894581 -0.06203113682986364 0.8318660453007373 0.551498885528617 0.06203113682986364 -0.8318660453007373 -0.551498885528617 -0.07783629645161526 0.6386398399740993 -0.7655590543861087 0.07783629645161526 -0.6386398399740993 0.7655590543861087 -0.9138229107542849 0.2183939193754576 0.3423912729033732 0.9138229107542849 -0.2183939193754576 -0.3423912729033732 -0.5345884589721218 0.4034395796788172 0.7425979296243637 -0.5524074943628621 0.4050841393154985 0.7285278307976754 -0.4787989807562905 0.4668933018719641 0.7434797782682678 0.4787989807562905 -0.4668933018719641 -0.7434797782682678 0.5524074943628621 -0.4050841393154985 -0.7285278307976754 0.5345884589721218 -0.4034395796788172 -0.7425979296243637 -0.06467178653120824 -0.4384108387102168 -0.8964449210789618 -0.06712979634411644 -0.500579809610561 -0.8630836834589403 -0.05182109757684491 -0.4514163579221916 -0.8908074122088315 0.05182109757684491 0.4514163579221916 0.8908074122088315 0.06712979634411644 0.500579809610561 0.8630836834589403 0.06467178653120824 0.4384108387102168 0.8964449210789618 -0.07792118493082251 -0.9559677627777016 0.2829380240773106 0.07792118493082251 0.9559677627777016 -0.2829380240773106 -0.5296654684248241 0.4971931921921262 0.687206971149242 -0.544217945097606 0.4868904901393766 0.6832016384974328 0.544217945097606 -0.4868904901393766 -0.6832016384974328 0.5296654684248241 -0.4971931921921262 -0.687206971149242 -0.06331144630405373 -0.6168950586009265 -0.784494835827903 -0.04893206091694585 -0.6042992393415967 -0.7952534707535631 -0.06556201067145182 -0.5654470917961071 -0.8221746828600607 0.06556201067145182 0.5654470917961071 0.8221746828600607 0.04893206091694585 0.6042992393415967 0.7952534707535631 0.06331144630405373 0.6168950586009265 0.784494835827903 -0.07317435867671789 0.2852169995987944 0.9556656195407013 0.07317435867671789 -0.2852169995987944 -0.9556656195407013 -0.9245447371101613 -0.3773552231352665 0.05310428094265093 0.9245447371101613 0.3773552231352665 -0.05310428094265093 -0.5139838480450424 -0.4451092818304552 -0.7332791631958371 0.5139838480450424 0.4451092818304552 0.7332791631958371 -0.5157659772286117 -0.3552253929522392 0.7796155314867339 0.5157659772286117 0.3552253929522392 -0.7796155314867339 -0.9272834542399263 -0.373133423886244 -0.03027942324085647 0.9272834542399263 0.373133423886244 0.03027942324085647 -0.07322677161913004 0.1848207446832606 -0.980040372766839 0.07322677161913004 -0.1848207446832606 0.980040372766839 -0.07315269852634401 -0.9712587534489104 -0.2265063278303333 0.07315269852634401 0.9712587534489104 0.2265063278303333 -0.924551007271137 0.1411219268150242 -0.3539633268093474 0.924551007271137 -0.1411219268150242 0.3539633268093474 -0.5138680084800981 0.857573090590434 -0.02254027852243685 0.5138680084800981 -0.857573090590434 0.02254027852243685 -0.5156107881351871 -0.500749424973523 -0.6952665161988583 0.5156107881351871 0.500749424973523 0.6952665161988583 -0.9272779039266812 0.2114525434248893 -0.3089393318573824 0.9272779039266812 -0.2114525434248893 0.3089393318573824 -0.07323009189041933 0.7592000544660637 0.6467245402336659 0.07323009189041933 -0.7592000544660637 -0.6467245402336659 -0.07384419633644265 -0.4918662305097807 -0.8675336569560422 -0.07183856815325576 -0.5367001228199709 -0.8407093423358147 0.07183856815325576 0.5367001228199709 0.8407093423358147 0.07384419633644265 0.4918662305097807 0.8675336569560422 -0.4571428387213803 0.4708925370562133 0.7545068876759978 0.4571428387213803 -0.4708925370562133 -0.7545068876759978 -0.07317072936235344 -0.5741876618940569 -0.815447468138333 0.07317072936235344 0.5741876618940569 0.815447468138333 -0.07786128607335852 0.2282437525088427 0.9704856565512368 0.07786128607335852 -0.2282437525088427 -0.9704856565512368 -0.910518420051696 -0.4126184541394979 0.02649939716473525 0.910518420051696 0.4126184541394979 -0.02649939716473525 -0.5636615363401881 -0.6008612160141833 -0.5667905005736916 0.5636615363401881 0.6008612160141833 0.5667905005736916 -0.5636121577228427 -0.5422177340050004 0.6231703335344874 0.5636121577228427 0.5422177340050004 -0.6231703335344874 -0.9128840725037823 -0.4082071319792981 -0.003099608063125092 0.9128840725037823 0.4082071319792981 0.003099608063125092 -0.07794444694945403 0.123244223494892 -0.9893106309773917 0.07794444694945403 -0.123244223494892 0.9893106309773917 -0.07784980261668228 -0.9558510645399539 -0.2833516378113609 0.07784980261668228 0.9558510645399539 0.2833516378113609 -0.910506959134482 0.181741629865931 -0.3714122471612288 0.910506959134482 -0.181741629865931 0.3714122471612288 -0.5638170052827519 0.7901416633769365 -0.2403883032718469 0.5638170052827519 -0.7901416633769365 0.2403883032718469 -0.5636943070143379 -0.2718931151353536 -0.7799505511130938 0.5636943070143379 0.2718931151353536 0.7799505511130938 -0.9128734660900318 0.2052562609143245 -0.3528907795115115 0.9128734660900318 -0.2052562609143245 0.3528907795115115 -0.07796022575618454 0.7978022440562502 0.597857660801345 0.07796022575618454 -0.7978022440562502 -0.597857660801345 -0.07293523093475945 -0.536747093346532 -0.840584921273599 0.07293523093475945 0.536747093346532 0.840584921273599 -0.07604770112068858 0.3398450615732017 0.9374017715358579 0.07604770112068858 -0.3398450615732017 -0.9374017715358579 -0.9271339304211422 -0.3737861328003613 0.02658198615595467 0.9271339304211422 0.3737861328003613 -0.02658198615595467 -0.56821021807484 -0.5485574908562504 -0.6133692422194298 0.56821021807484 0.5485574908562504 0.6133692422194298 -0.5681978066790452 -0.4856242309667716 0.664319470422969 0.5681978066790452 0.4856242309667716 -0.664319470422969 -0.9275538218035446 -0.3736639910290091 -0.004373724489596332 0.9275538218035446 0.3736639910290091 0.004373724489596332 -0.07601198010694718 0.2461619642348556 -0.9662434818637893 0.07601198010694718 -0.2461619642348556 0.9662434818637893 -0.07603488379294941 -0.9824986161570616 -0.1700445991381432 0.07603488379294941 0.9824986161570616 0.1700445991381432 -0.9271175633615203 0.1624153764230984 -0.3377488256203726 0.9271175633615203 -0.1624153764230984 0.3377488256203726 -0.5684223245221804 0.8045495901676812 -0.1720349323417111 0.5684223245221804 -0.8045495901676812 0.1720349323417111 -0.5682562327497746 -0.3357303571020874 -0.7512456197949771 0.5682562327497746 0.3357303571020874 0.7512456197949771 -0.9275500865344358 0.1892090791949394 -0.3222588421132365 0.9275500865344358 -0.1892090791949394 0.3222588421132365 -0.07602359932507562 0.7168034810914563 0.6931184471941507 0.07602359932507562 -0.7168034810914563 -0.6931184471941507 -0.07788522860997994 0.33527590521265 0.9388950732367325 0.07788522860997994 -0.33527590521265 -0.9388950732367325 -0.9186365967429201 -0.3947997214296697 0.01549138740205839 -0.8622039110363094 -0.5055471860195102 -0.0320383910558382 0.8622039110363094 0.5055471860195102 0.0320383910558382 0.9186365967429201 0.3947997214296697 -0.01549138740205839 -0.5911920785065153 -0.6603884431093904 -0.4630108319669223 0.5911920785065153 0.6603884431093904 0.4630108319669223 -0.5913185191009809 -0.6117206410194161 0.5254905006934163 0.5913185191009809 0.6117206410194161 -0.5254905006934163 -0.9184398770765989 -0.3954642704709246 0.008729431620756456 0.9184398770765989 0.3954642704709246 -0.008729431620756456 -0.8666694425626617 -0.4954474410657432 0.05844579086240863 0.8666694425626617 0.4954474410657432 -0.05844579086240863 -0.07784647127831051 0.2414764141318304 -0.967279209084713 0.07784647127831051 -0.2414764141318304 0.967279209084713 -0.07789085419739079 -0.9815182421211756 -0.1747997574819787 0.07789085419739079 0.9815182421211756 0.1747997574819787 -0.9186099994929518 0.1824781962483763 -0.3505101663653969 -0.8621876343713294 0.2786709173777909 -0.4230543735088806 0.8621876343713294 -0.2786709173777909 0.4230543735088806 0.9186099994929518 -0.1824781962483763 0.3505101663653969 -0.5914357760694816 0.729508062189148 -0.3435428793995359 0.5914357760694816 -0.729508062189148 0.3435428793995359 -0.5912701432089158 -0.1528401862184598 -0.7918582545041852 0.5912701432089158 0.1528401862184598 0.7918582545041852 -0.9184311868293691 0.1886543416202624 -0.3476977055532891 0.9184311868293691 -0.1886543416202624 0.3476977055532891 -0.8666393501579606 0.1951110697023345 -0.45920355751823 0.8666393501579606 -0.1951110697023345 0.45920355751823 -0.07785123444427876 0.7200157100790545 0.6895770896243993 0.07785123444427876 -0.7200157100790545 -0.6895770896243993 -0.06463126882157386 0.9949142282440756 0.07725592228437379 -0.06710589855194701 0.997722592184132 0.006813767306884728 -0.05175606910108979 0.9966603560649529 0.06316204524621295 0.05175606910108979 -0.9966603560649529 -0.06316204524621295 0.06710589855194701 -0.997722592184132 -0.006813767306884728 0.06463126882157386 -0.9949142282440756 -0.07725592228437379 -0.9208481389957095 -0.3897131234716203 0.01274308840634989 0.9208481389957095 0.3897131234716203 -0.01274308840634989 -0.6041265859342664 -0.6628633493676761 -0.4423157788644598 0.6041265859342664 0.6628633493676761 0.4423157788644598 -0.6043510956270248 -0.616247919108277 0.504973519512789 0.6043510956270248 0.616247919108277 -0.504973519512789 -0.06544351105841843 0.9954089662035404 -0.06984366014138725 -0.06320711920580965 0.9890618334347577 -0.1332724642391598 -0.04887595123153411 0.9919269240416067 -0.1170133272433938 0.04887595123153411 -0.9919269240416067 0.1170133272433938 0.06320711920580965 -0.9890618334347577 0.1332724642391598 0.06544351105841843 -0.9954089662035404 0.06984366014138725 -0.06467060858579891 -0.5607537460364631 0.8254531777703786 -0.06715572110431041 -0.500971452014702 0.8628543987192979 -0.05176292428173093 -0.5493551863579695 0.8339840999032322 0.05176292428173093 0.5493551863579695 -0.8339840999032322 0.06715572110431041 0.500971452014702 -0.8628543987192979 0.06467060858579891 0.5607537460364631 -0.8254531777703786 -0.9208229918529777 0.1823261521974405 -0.3447349589174365 0.9208229918529777 -0.1823261521974405 0.3447349589174365 -0.6044052953115482 0.7127115897051575 -0.3560006023861583 0.6044052953115482 -0.7127115897051575 0.3560006023861583 -0.6042208852079725 -0.1329109324677061 -0.7856537442850122 0.6042208852079725 0.1329109324677061 0.7856537442850122 -0.06330197836798127 -0.3750046590734298 0.9248591055982096 -0.0489311245994604 -0.3905865829625489 0.9192648509842373 -0.06555032380382546 -0.4332602793100031 0.8988819084960116 0.06555032380382546 0.4332602793100031 -0.8988819084960116 0.0489311245994604 0.3905865829625489 -0.9192648509842373 0.06330197836798127 0.3750046590734298 -0.9248591055982096 -0.07380847313489657 0.9971350212817937 0.01655471615135637 0.07380847313489657 -0.9971350212817937 -0.01655471615135637 -0.9138485014307795 -0.4058014096885466 0.01435730920149108 0.9138485014307795 0.4058014096885466 -0.01435730920149108 -0.5523468059055555 -0.8333556620290644 -0.020768884660241 -0.4787759179973137 -0.8775837507625626 0.02490744353284692 -0.5345304218766152 -0.844640307144783 -0.02932540937096353 0.5345304218766152 0.844640307144783 0.02932540937096353 0.4787759179973137 0.8775837507625626 -0.02490744353284692 0.5523468059055555 0.8333556620290644 0.020768884660241 -0.5444019885151931 -0.8356723357134307 0.07265137454971396 -0.529810937761632 -0.8443800785050153 0.07951511335591559 0.529810937761632 0.8443800785050153 -0.07951511335591559 0.5444019885151931 0.8356723357134307 -0.07265137454971396 -0.0730429405716595 0.9940521145746529 -0.08077822938333205 0.0730429405716595 -0.9940521145746529 0.08077822938333205 -0.07388662353121546 -0.5091637543312346 0.8574922962560529 0.07388662353121546 0.5091637543312346 -0.8574922962560529 -0.9138168602334956 0.1889226119874796 -0.3595093776702133 0.9138168602334956 -0.1889226119874796 0.3595093776702133 -0.5347331070637321 0.444464319308261 -0.7186876742172578 -0.5525632992352004 0.4314208972124874 -0.7131267838096413 -0.4788900951458034 0.4137789169757429 -0.7742423939811258 0.4788900951458034 -0.4137789169757429 0.7742423939811258 0.5525632992352004 -0.4314208972124874 0.7131267838096413 0.5347331070637321 -0.444464319308261 0.7186876742172578 -0.5297627038662381 0.3498802766270966 -0.7726158616153819 -0.5443231062547118 0.3515163285545688 -0.7616748825822854 0.5443231062547118 -0.3515163285545688 0.7616748825822854 0.5297627038662381 -0.3498802766270966 0.7726158616153819 -0.0731648938415657 -0.4230767780001828 0.9031350608996067 0.0731648938415657 0.4230767780001828 -0.9031350608996067 -0.0717598100444269 0.9967833931070906 -0.03568468702823421 0.0717598100444269 -0.9967833931070906 0.03568468702823421 -0.4570938974721754 -0.8891267751684072 0.02277600870049867 0.4570938974721754 0.8891267751684072 -0.02277600870049867 -0.07186207300492192 -0.4636242428793894 0.8831129055097929 0.07186207300492192 0.4636242428793894 -0.8831129055097929 -0.4572184704652873 0.4213675234050111 -0.7831990043947393 0.4572184704652873 -0.4213675234050111 0.7831990043947393 -0.07284731910756336 0.9966994105687711 -0.03582670890139447 0.07284731910756336 -0.9966994105687711 0.03582670890139447 -0.07295841153948711 -0.4634759310171773 0.8831008614837808 0.07295841153948711 0.4634759310171773 -0.8831008614837808</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID342\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"1235\" source=\"#ID345\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2470\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID345\">-2.661799060038712 0.5143268679627622 -2.305498782632804 0.7612421416708729 -2.382152232341637 0.8114993214080721 -1.041160221479432 1.808590267548293 -0.7402787510683859 2.096312634686256 -1.10929632536876 1.865939697634436 2.972256478969288 -4.376182215124748 3.770492703260866 -4.471450631513128 4.117109534675268 -4.221737622712427 -2.388085444237092 0.8134970265397964 -2.741971876010438 0.5644427639446815 -2.64317861492822 0.5288504886875456 -0.8199817364353834 1.712364972440952 -0.4647338457287636 1.921831414400039 -0.5108777407253806 1.994641913414265 3.590480138856723 -4.394738788375328 4.008359773378214 -4.223632152308475 4.159072087260633 -3.60131408385592 2.944593614898622 -4.289383837459042 4.089733578634366 -4.1362612050151 3.720629425418393 -3.737994030932695 2.918110384210961 -4.566913844047221 3.577025552436587 -4.858740273202045 3.715949880857402 -4.664217122611951 -3.63466691595626 -1.375454603305033 -3.778377344265582 -1.567813990875131 -3.532893088158519 -1.405402268119589 2.016960844485938 -3.372595413195628 2.505112526826225 -2.980634682784841 2.166877960838995 -3.20534782375026 3.161264493954209 -2.789679773232189 2.90664991550928 -2.831647031589939 2.177397347012687 2.237394119727016 2.426208068189768 2.382798047632238 2.158320842907479 2.317355631430848 3.263520854441227 -3.993286695212771 3.619577955234709 -4.398837879978945 4.186501325658662 -3.604674619844945 4.118628753531486 -4.214430668958741 4.393196497476434 -4.169263296937372 4.264289486993383 -3.591368647410786 1.088541638290198 -2.918995386648729 1.338783932921017 -3.066679041718678 2.141709561156012 -2.539653586511744 3.043585516181242 -4.434309064416466 3.752219223354113 -4.925163319361463 3.705354160579695 -4.722111991503434 -4.647535569853533 -0.6416093864536248 -4.87356633634843 -0.8206456622006494 -4.720195001665112 -0.838111930340065 5.591129172591309 -4.47290649595115 5.700563982511904 -4.661067300428671 5.976463061569919 -4.01551000878934 0.733154928316176 3.383342872493777 0.7020392817537015 3.483545504538939 0.4940113330114128 3.302791294675418 2.134980860030076 -2.543645943407094 3.07355461487074 -2.178877951918392 2.984341750436177 -1.945595238278266 4.353781662995391 -3.563669890075839 4.486729766309145 -4.140997679661525 4.715175540128614 -4.237778325771608 5.39894081999101 -2.780519209470858 6.205863006664616 -3.061082790207338 6.229541255743985 -2.815692720273948 3.243896960758899 -4.281959803351813 4.226158437872415 -5.067116002014613 3.95954576161025 -4.766474747050036 -5.362925845386348 -4.061579228975656 -5.444027986460442 -4.257840651882353 -5.20917675816532 -4.076852570570276 -3.302965120206075 -5.295307391122558 -3.503674895768212 -5.500147149562402 -3.414236209071933 -5.48280054980703 7.060600724299492 -1.127963471288239 7.357365789459331 -1.181805828420435 7.153708221003003 -1.055334577185998 -5.546105656382263 -2.541558169230477 -6.376601944710836 -2.548300528389567 -6.376055494793524 -2.791910837103957 5.579123822736869 -2.942901892769273 6.001290330568972 -3.594786402053359 6.292020490288079 -3.896997050653707 -5.410310060843501 -1.264541462392171 -5.639737196896117 -0.3708988937511936 -6.445697115556035 -0.5327398872694064 -5.548733127301645 -0.4984393686878871 -6.402386873826202 0.3474497948727556 -6.378040758730448 -0.5490869415448467 5.436007331621839 -2.753141288256818 5.589949262777724 -3.009778769479917 6.249443067828077 -3.021812954622691 2.733685449622757 -4.60808068335111 3.550020822014475 -5.480747652159369 3.685386022701926 -5.416193428280835 -3.150145197377329 -5.815183648067049 -3.23901928547867 -5.834241632626324 -3.214384247080245 -6.200299681307078 7.077515231345002 -1.077833697990142 7.255757232167886 -1.180810893730796 7.37374899284945 -1.133457200799908 -5.64053701285209 -2.362387587081174 -6.473061319915687 -2.607393325339736 -5.813898093729755 -2.627781693529012 -5.571323704244727 -0.4508006085162343 -5.590385402988608 0.4192953775659653 -6.420823099055467 0.4090219793829775 -4.1449948999066 -0.3925930562476963 -6.412003022809788 0.3723260551637551 -6.402434335445965 -0.5259414841779818 -5.571948609914557 -0.5184370324832719 7.511011023866709 -2.787130807200926 7.386028045278803 -2.821643815884106 7.79264834779636 -3.094623924357429 4.528469987559812 -3.533326890439096 5.16365295085847 -4.520813777264999 5.288427740176394 -4.450421141627921 -5.37737609444318 -1.393369944667684 -6.43794403232774 -0.6842351375800343 -6.177999987344328 -1.570835269398446 -4.06048470052598 -0.8115314550383995 -5.627977588762684 -0.09354875387037062 -5.468981652152383 -0.9966139960495889 -5.698594924431132 0.04705198934153895 -6.523407502400124 -0.04000140227339736 -5.604833719540404 -0.8427021686719978 3.397833450122788 1.436453299966811 3.0682720466757 0.4699448618913633 3.120099824776935 -0.2576073983579654 2.698888249206223 2.153148196856395 2.746116622930116 1.15315754419546 2.182281272233411 1.731316065892566 1.762515223752795 2.675938097440283 1.426866649410332 2.153052203845308 0.6739441528367607 2.964104390912614 0.5470052852914087 2.380889252754579 -0.4762730165452944 2.975353590359535 -0.379127025517807 2.394587160073535 -1.269257263899759 2.192925190064263 -1.579665433403898 2.725371249155675 -2.044294447642872 1.793827010075304 -2.540424688596996 2.230643059343542 -2.635383615910281 1.232752438402079 -3.273119380180543 1.535119347208355 -2.989941374167471 0.5595534147310203 -3.076513428396748 -0.1659543789840967 3.797178894091073 0.589535539530324 3.584954115964931 -1.189073698497411 3.86146279790015 -0.3123520279787206 3.002871332391609 -1.96190235463934 2.897061565363328 -0.9648552907429856 2.135972779385058 -2.5645770483233 2.418887774560047 -1.588964928439499 1.728132329397168 -2.074478232231995 1.100337098236535 -2.939288573049616 0.8861221859959634 -2.378246195955483 -0.0462380938019025 -3.05896025402176 -0.03227092295787773 -2.473295078857695 -0.9454591957336178 -2.351161398673499 -1.178273536083925 -2.907562735203924 -1.772319464308227 -2.022702851046091 -2.203293041006291 -2.500402028373014 -2.439402056737099 -1.517112239780935 -3.030200242278591 -1.873660853038731 -2.887398122901175 -0.8793125957286936 -3.595833115298375 -1.078161158264579 -3.710588442244218 0.7070679054892642 -3.819964906568851 -0.198740607318797 5.603135835129864 -3.288385875698955 6.810870890825931 -4.291665963233803 6.262701037578077 -3.297688588377309 3.401754136409783 -5.385730003367606 4.499503752106183 -6.170792077931217 3.537805570138652 -5.322074800046389 -2.456301864786447 -5.979189118527012 -2.487130147304622 -6.36684873423582 -2.402367420971701 -6.32348935043586 -6.510171301073201 -2.96837143036549 -7.11732698224412 -3.953428325490446 -5.851137594154357 -2.991204346202717 -5.60265637794168 -0.5278164021063335 -6.465043856691065 0.3240294976779706 -6.431600829084085 -0.5856926335526124 -4.209404235825325 0.3044258401130099 -5.633236098381424 0.2161519211681857 -4.153220584432583 -0.5919371519429612 -4.215291073560992 -0.5744977462204292 -4.263529414155157 0.3221991449134441 -5.686973105331986 0.2076154673473941 -5.65143262943119 0.3334005600536639 -6.481253406832044 0.2821448753630127 -5.629668278170908 -0.6018165566198391 7.289855802678771 -2.825890216437976 7.611421202677152 -3.106627870969063 7.70924221545971 -3.086643914958204 5.18297450631685 -4.530079671339261 5.895028297840041 -5.457121340977217 5.307646526988149 -4.459574441591602 5.332209067274681 -1.615896687539317 6.143014995752494 -1.761979428609921 5.629008267869499 -0.7463477273334715 4.036035568395636 -0.9993909140033963 5.449746623983231 -1.157975509815105 4.221778863882256 -0.1138895382488578 -3.997216344816255 -1.156592358935419 -4.250909299071609 -0.2815645921801652 -5.638210010572456 -0.5486783925207119 -4.161558112449938 -0.6357893580252552 -5.649991922666122 0.162673834209167 -5.584920386969356 -0.7286636150463668 5.494720606752197 0.2501486147772298 6.275923150491728 -0.65523344044532 6.325862417864055 0.2471940347496744 5.493856655715302 0.366706868280492 6.307487637225778 -0.5247153149898205 6.324667251178918 0.3785027462624838 6.335973878144486 0.4200649213385262 5.505412349689225 0.4046323204088624 6.330840177740377 -0.4832391865050514 6.354965736662829 0.4299973635642851 5.524514761868456 0.413796645671067 6.355104265392128 -0.4667206081220865 6.348686999878188 0.4271997584595754 5.518228264842925 0.4008358708994737 6.348532651289016 -0.4826861760209525 6.405593025417301 0.3823184502673627 5.575015698521129 0.3688125470936636 6.402526849244486 -0.514599815300171 5.580948395643242 0.4157367094855328 6.402189221181026 -0.5113951445993928 6.411353286003433 0.4000658934411254 5.626549839694851 0.2839681310038151 6.428226229766665 -0.6163174962283112 6.457616882721426 0.2866889367729694 5.679613144525984 0.09802792271163478 6.425760748703323 -0.8323530921485491 6.504640036469908 0.06882814165186642 5.638390409749905 -0.3908745494751295 6.259225536954721 -1.368874127389776 6.462225544659513 -0.479789751691096 -6.409194594973165 0.4107466294511674 -6.405189489514616 -0.4925506539050644 -5.574851926507346 -0.4467662664155951 -6.3822125066093 0.4234890959370029 -6.382694340672956 -0.479815042264443 -5.552194299191942 -0.4361777819642201 -6.357692766381553 0.4191095339513883 -6.358135509214947 -0.4841960030603822 -5.527660594977107 -0.4414161723271314 -6.337686374565175 0.3978657857529473 -6.333509171185731 -0.5054400229986481 -5.503241243690558 -0.4621172308995953 -5.479788392845236 -0.5041294043719613 -6.324676198831939 0.3526571860783325 -6.309573809879248 -0.5505412985441708 1.745957532312295 2.657713232886528 2.682327380740597 2.134919811093426 2.727282558497929 2.374467822102313 -5.455101643277436 -0.57908685677795 -6.324274572841182 0.2666680609225586 -6.28355707143229 -0.6362917545517316 0.6652336964723358 2.943428855169668 1.753803744658647 2.655260171310598 0.8867903543797634 3.118978236478919 -5.290951497203457 -1.319381353096898 -6.327435422916969 -0.5524335438192431 -6.107009504749997 -1.440571652735586 5.762356183245927 -3.083708496260667 6.572423246359725 -4.03807808733024 7.047109981082493 -4.025925235254194 3.610847825014008 -5.236842748222333 4.559405230702663 -6.109249604868882 4.719319310056894 -6.012525550950048 -1.964009241795349 -6.507755706175733 -2.046393508680486 -6.553864915925065 -1.635076611744317 -7.643805512306598 -5.495336325949821 -3.347602026111755 -6.684777216062551 -4.368633898008876 -6.226933058893753 -4.35715210192923 -5.604000275338401 0.3645158178360241 -5.59045265464766 -0.5707972914437972 -4.164155400215128 -0.4808138035478431 7.684874037027289 -2.989922987339559 7.58708621916952 -3.010007229700875 8.498994210341262 -3.863426396329256 5.143033007068749 -4.539180625640339 5.717787806425276 -5.541268897230905 5.860507161178415 -5.472263804657364 4.192676241827535 0.04192978539679174 5.490996361882291 -0.9480844056190318 5.615427661959771 -0.05307178236898648 -5.462209449669895 -0.8043086080673315 -5.545667306279297 0.1291291351249389 -6.371687425542625 0.05659531610126218 5.523758680554177 -0.4338833848854653 6.354207285310459 -0.4112716340542739 5.523565805979221 0.4664539955697984 5.536572228151663 -0.4226032985896472 6.366920291787105 -0.4012123226992183 5.53167411224067 0.4777514955588634 5.547326545969745 0.4777114329058925 5.554125450147815 -0.4226259836262465 6.384470114428415 -0.403345774636922 5.559616742817855 0.4536184898915917 5.564444714190893 -0.4525417513668846 6.394798530817934 -0.4242064713489063 5.880914549031902 -2.06864522518943 6.734858187658725 -2.229716846200112 6.706382990873093 -1.992428992817538 5.594342931635121 0.4536484752102395 5.59609063437345 -0.441977094805049 6.426673737565221 -0.4286928413741457 5.554394599787321 0.3625400882458029 5.552652560288326 -0.5062900454127818 6.383108753397958 -0.5201741029379436 4.127093708298099 0.349085374462541 5.780362907360219 2.088063182125595 6.60870069498146 2.039406599150892 6.630766041321724 2.290072167503032 5.652179197504132 0.4063675696246454 5.630277932583336 -0.5294891830228586 6.461347556712913 -0.5273102266094472 5.689181062059775 0.241125792540077 5.646284167170914 -0.6502602675244906 6.471783918825218 -0.6694862709089748 5.604943682381954 -0.8548758041057144 6.435385846454905 -0.8886697541752605 5.705258546267622 0.04954383269713061 -5.625878457091545 0.4128913173724724 -6.456279603494737 0.3681045028935301 -5.61868898488491 -0.4874466767329562 -5.597398384708466 0.4398433145490905 -6.428081916010963 0.3996480928002333 -5.598883524092275 -0.4605082447537164 -5.571119059021333 0.4515076979844473 -6.401896102512689 0.4147173528205499 -5.576957820490299 -0.4488343226107577 -5.548918425932076 0.4519197748685152 -6.379668149979191 0.417815089717694 -5.555720079221102 -0.4484087783848311 -6.476678532968182 2.647031326878516 -6.475752441667305 2.404888014658125 -5.644588786272323 2.432043406180553 -5.532783473477472 0.4443536015118346 -6.363430823466654 0.4123864931825314 -5.537898422956329 -0.4559979435743079 2.254016958954333 3.634765079931456 3.232240892558104 3.344958568234572 2.52699327365733 4.053668724156345 -5.513894893397796 0.3670495865317552 -6.344343569199598 0.3621523079421049 -5.499906396557383 -0.4989705720211488 6.349136616735253 2.738226221440089 5.520765150887098 2.493018469052865 6.351232608300514 2.490855442909809 1.697980286874242 3.981481675466966 2.558079519991281 3.509863443645249 2.83617451174444 3.92667842082563 7.05576917080125 -3.869350706402243 6.581129811636943 -3.882599263004092 7.662203559623302 -4.913533654818638 4.699553073210266 -6.171834810212214 5.781796714671636 -6.755173925272217 4.858615578581932 -6.074245668090698 -3.154857143866117 -6.287097760729689 -3.004235976416077 -7.446203671646552 -2.923013648991004 -7.410697797244424 -6.238904897399809 -4.261501314141265 -6.696771126747163 -4.272424854255496 -7.233100912016699 -5.2780072099835 -4.172281427259849 0.4236948597737338 -5.599138070426414 0.3723794843949643 -4.160046578622444 -0.4737436785604704 7.688724458774837 -2.997587991844135 8.493484725290733 -3.878498459511783 8.583971388279348 -3.861854811376837 5.630635840262678 -5.49305586462806 6.194793007120643 -6.435297706577472 5.773769347551276 -5.42458368153758 4.149493655589789 -0.666422043308793 5.576712249359321 -0.7002834793214141 5.637463441909986 0.2063136648478206 -2.752395262503766 -2.388220319902878 -4.557148381589244 -2.4438330958985 -3.791997104759317 -3.160289595899267 4.080557974305158 0.3597441476089266 5.479408896688173 -0.5431689211380512 5.508185884087253 0.3568838258145871 4.078734300599257 0.4094231397152907 5.49610738001893 -0.4792775997923502 5.506171941511711 0.4210506271797914 5.512567720610957 0.4401719054329141 4.0852749331553 0.4248645746183525 5.509503751461832 -0.460178170981151 5.523701160329052 0.4353960044653995 4.096473844284713 0.4192446804514229 5.523730938822248 -0.4707721957735811 -3.966759717564554 0.6230881827453207 -3.797079964430929 -0.1886666454908832 -3.68214331192589 0.7048003957772115 5.914682744017741 -1.996607342708859 6.117129859104871 -2.221333120763166 6.770678563460123 -2.150790600524764 5.551529312835765 0.4495228068059489 4.124268810346557 0.4384218376475834 5.55221507049154 -0.4461036560030883 4.137603457175834 0.4528163016298624 4.138560890324671 -0.4446638803693676 5.565864599723549 -0.4313945211553699 4.213980714084771 0.4205838582382181 4.205959402934985 -0.4768728165044885 5.634227758319667 -0.4402423970654657 -3.875394710153257 -1.003386691537358 -3.568804610354984 -1.073847359963925 -3.798495665402174 -0.1820849155691501 5.916121464420085 1.806762106662963 6.776703735835856 1.98005265820314 6.123994606683545 2.05525332117598 5.585205845377178 -0.4925639279401325 4.169597344998032 0.4024386876104048 4.15762018592527 -0.4950097606756016 5.597675479733299 0.443399893764163 4.156617820371098 0.3621291455754826 5.572485063851977 -0.5270898869408937 5.584202678227232 0.3648870756734438 -5.55421954180395 0.4325579296179262 -5.552090815762549 -0.4677962709606923 -4.124925005749004 -0.4221101842327787 -5.538576477063474 0.4352706727699609 -5.538876324918283 -0.4650816136418131 -4.111622469373085 -0.4214203977710727 -5.52426233743118 0.4295055149755776 -5.52435757429008 -0.4708482185904604 -4.097125150651432 -0.4279153426255751 -5.512878698675422 0.4153870811823178 -5.51008541062717 -0.4849546898017661 -4.082981753191275 -0.4413168658447663 -5.803781728166912 2.695243922016638 -6.463048840774564 2.677056089199609 -5.631193550035248 2.461507415414935 -4.069649252612988 -0.4640573414130001 -5.505886766735717 0.3892222330192646 -5.496456165566158 -0.5111077385403589 3.395628482009644 4.365034469375767 4.067083141014313 3.636295497457961 3.834919411783258 4.229177482280971 -4.056840720569126 -0.4789649353516526 -5.506608144241801 0.3286859050130154 -5.482838903136125 -0.5372022959242325 5.472318711552627 2.507915073080861 6.28695098665998 2.780121525531526 5.627346059598288 2.772713745747252 1.77785141209766 4.72216774587029 2.915784678967103 4.664107656039868 2.539091054934751 4.89062216698243 6.619178588444171 -3.828609251683794 7.310729392674782 -4.86625049600592 7.719439946235701 -4.846904017109719 4.932253880902296 -5.959704110981211 5.850334017365131 -6.675404868943827 6.022785877259992 -6.533411281220287 -2.438202460806775 -7.566816113078535 -2.517246359618165 -7.605244271636148 -2.225179099355021 -8.573899165916442 -6.147305757602014 -4.334075845317214 -7.127119524533855 -5.359187381576786 -6.717869201020857 -5.349149792973891 8.588931033037188 -3.936947027258597 8.498392206892227 -3.953414187342754 9.271520465878172 -4.829384250182987 5.390870613633427 -5.57345836591487 5.785867199317528 -6.590653648012299 6.001688404292493 -6.520400303231552 4.179845061663457 0.3098219691396784 4.137508093891616 -0.6053915677220051 5.612246399584024 0.2811336414350372 -4.137244533226672 -0.3906263536147895 -4.109915944167414 0.5066086495387171 -5.538764975333309 0.4681121719386963 -4.093491571230447 0.4281509816797937 -5.520719793072696 0.4014243121698805 -4.093491571230447 -0.4693098312026066 4.095955679305225 0.4666987771532346 4.095370697688034 -0.4307901038188899 5.522613030223019 -0.4088759348981764 4.103119696156001 -0.4247646836698221 5.530293461700541 -0.4036800185450093 4.100600948168641 0.4727237170128614 4.109778224059697 0.4720632539261433 4.113528349182373 -0.4254116217219571 5.540696074459932 -0.4062771507909478 4.131128445010857 0.4687326012540565 4.135579146547521 -0.4287439876988017 5.562829411054837 -0.4168563095352443 -6.57558798965443 -0.4291223668602024 -5.949686005033862 -0.4066665999772727 -6.106218164610338 0.4067214157437564 6.906160533801982 -0.6164503317486078 8.588008637681035 -1.014951336896927 7.484402007252639 -0.3666865768634973 -6.594235457051168 -0.1072712048355581 -6.038886626027283 -0.9065050245338635 -5.968331417790047 -0.08485090619073749 6.094257506179066 -2.609111482345269 6.38760915225589 -3.073919155086647 7.785043341838376 -3.027241022869439 4.158247094811467 -0.515202285144675 5.590918326588575 -0.533762702622409 4.182569284383959 0.3628143594684092 -4.154959419916142 0.4418540299037406 -5.582161926964881 0.3971661449070394 -4.151049002528265 -0.4556168108391424 -4.138039279917377 0.4497783237258486 -5.565399234233393 0.4095546653307514 -4.138993010500824 -0.4477007573165332 -4.122737751398939 0.4504695718699686 -5.550147546112627 0.4135444010196748 -4.126058856890215 -0.4470074540046948 -4.110066034056458 0.4463155858593719 -5.537457493840162 0.4119462391451804 -4.11381972194354 -0.4511845102803854 -7.084231717134023 3.932564416781103 -6.487814456845412 2.963892194643452 -5.828619448587592 2.983631213287548 -4.100749980947755 0.4387628393962917 -5.52807408050241 0.4063539597087571 -4.103273851978412 -0.4587102997819708 4.427237314102075 4.211817097101426 4.633612095804903 3.613061858163787 4.717344599847353 4.192502098342859 0.2782028819448612 -1.450158226014998 0.6921164850603934 -1.628641759935543 0.3206106848921589 -1.391178060408406 6.848525411149121 4.203593104396327 5.634213361410922 3.188008916534419 6.293848033120097 3.193539879314641 -2.299859201895115 0.0619301615705932 -1.948271184522626 -0.1883172081444611 -1.891328164057275 -0.1374743576887198 1.568678405240158 5.068661018134691 2.326785986090503 5.245640623360807 2.155429516005429 5.433102250304442 7.732827786625975 -4.70339119690072 7.324212926387032 -4.723950566267607 8.319111193875182 -5.609547578366657 5.538615148466631 -6.572469865395896 5.953360540920912 -6.578961989440483 5.713279785731879 -6.432160030464202 -2.330512122076828 -7.585630805526254 -2.104055885263323 -8.590898403140145 -2.028798512837025 -8.548366861161911 -6.72869513150474 -5.250866900269577 -7.137958890888548 -5.260559550807522 -7.608945487818658 -6.255703576101399 8.496674351625121 -3.951322323121277 9.179300321773068 -4.839084543618871 9.27065934491648 -4.826824061750197 5.650766369438735 -6.458977061674541 5.741440448300319 -6.687316064812344 5.867141115348349 -6.389785434634255 -6.656295097298122 -0.05912841987920928 -6.586162527374134 -0.4246975448627076 -6.116633110672703 0.4110907662336733 -4.81651597652847 -3.918431791851718 -6.154981253152326 -4.374781149297583 -6.224683474972785 -4.744352959566725 -7.718550954367429 0.477881345093763 -6.339258681834792 0.6682309068354281 -7.714038473572953 0.6023579286995218 -6.610675455021291 -0.467456379308435 -6.019037035461805 -0.8972475817193066 -6.574245482658096 -0.09795340618191402 -7.624303380680911 -0.9476220364064913 -7.617857677143023 -1.06830930505799 -6.219167844454492 -1.070784404659 -6.909048470343557 -0.0813386710929849 -8.650674722245444 -0.3398743600165811 -8.259673190808709 -0.551958884871283 -6.715952600713422 4.289071664462673 -5.523929073475165 3.290676722131466 -6.262729427223396 4.280205518061553 3.463533200456307 4.110800280381099 4.069298934555739 5.075875895797951 3.937843837902142 5.147301601424823 5.102250521171852 3.458752088073406 5.450196430193508 4.151242919036542 5.209205622771145 4.035822782958834 4.099195002689461 1.148160626873494 4.389280951963332 1.1286483224619 4.095337276055221 1.204356443781205 2.351942138015295 1.100568588629236 2.769151279432363 0.9159566178321216 2.771021747791493 0.9722150784720091 2.195182696189024 4.692738226224547 3.069583945778339 5.566693212579978 2.935863018679035 5.626067172882261 6.54043165342027 4.011409472370985 5.735592185692652 3.036957278107067 7.015206002807851 4.001647704310436 -0.6317786240502441 2.516375579235664 -0.201766641564953 2.347215580046476 -0.5745818156162452 2.549565507132114 -1.605305603904998 3.543518012266425 -1.400727010858305 3.377949627684427 -1.343223786508591 3.410810264610257 1.807530471990459 4.915030062690574 2.402231215159181 5.271407892927533 2.41298121115136 5.483652071981339 7.295398628059252 -4.757193145759694 7.898642013392817 -5.666257972030044 8.280825905442994 -5.649319198347968 5.529399941378703 -6.811400320934341 5.833464914441211 -7.051644702807992 5.944142243046866 -6.818013508429276 -1.736609375029659 -8.599979835830487 -1.810456390209519 -8.644014698631873 -1.697471362572419 -8.866096477070775 -6.785103664943274 -5.211197734496072 -7.672080099481478 -6.212367473911156 -7.289404194507263 -6.205034285805037 9.271905004153444 -4.866476039442853 9.180531261399484 -4.878668450017517 9.400274494745993 -5.083337609184246 6.154288376155829 -6.665795398995026 6.467954122720688 -6.67559446441701 6.272982820837651 -6.366489343458639 -7.300822201226315 0.4995800430167435 -7.157860533619931 0.3007726256670714 -6.61782679821126 0.7707276170720391 2.4673256467482 0.9193765930242428 2.414069527238531 0.5491065533840862 2.513799392591445 0.5514798227418101 4.05665024727122 -5.593268903064636 4.516995633749293 -6.879723111970071 4.497717665920813 -5.731831628612675 -7.379442888224687 -1.044659418331918 -6.924392869678563 -1.04217891225324 -6.004154607457918 -0.8371542672269368 -8.968287821898736 0.2934255125263521 -7.542023281758183 0.4771849648315717 -7.537423955761589 0.6016595813773412 2.557945762132749 -0.6005614891247557 2.458215345371251 -0.6029203753848054 2.534015244132297 -0.9706957197685954 -6.99273692576547 -0.9065747945953878 -6.293570957011183 -1.129650712023979 -6.885079482756589 -0.6997488815661535 -7.63261541801149 -1.0054346037006 -6.227488975147699 -1.128661156671277 -7.154016454095761 -1.004976464628402 -8.922697736279979 -0.9064193612649891 -7.547280308312806 -1.067918414717907 -7.553775809653298 -0.9472327983245749 -3.98597483593536 5.652457902991198 -3.905101183939973 6.020618958475664 -5.05305560476592 6.622148164113315 -7.27772491667968 5.206817501283571 -6.72868968733474 4.136058323286965 -6.275449585183051 4.127744945274094 3.129344250468945 4.228303088262042 3.573350367991242 5.273079094114264 3.354175750142323 4.951616781581719 3.772065297827613 5.060605702879127 3.90441428202094 4.990208963003467 4.269826941252457 6.128012269342688 6.943140012061708 2.225444299620932 6.655360169729002 2.163960619423023 6.702412297663996 2.1096849018762 3.500449096548218 -0.3224776095588098 3.789307562308364 -0.4094590512181034 3.765924924014517 -0.3463911266747499 2.73421192946776 4.403165535243263 3.38025674050513 4.943435513391906 3.64298411173188 5.25514485092069 2.877940667869294 5.585437524330192 3.011909711981109 5.52641071277909 3.774958042568282 6.421429065416803 7.609975503683925 4.890018825072455 6.543176739322377 3.920145912335438 7.017936891579413 3.909965806713123 -2.844537059602854 2.008309631066081 -2.586835986024328 1.870394885037136 -2.761677657248522 2.029500599706688 -4.008092862297267 4.777051305618736 -3.918084073209415 4.576787760213856 -3.835270694369624 4.598089772890178 8.282079997379809 -5.637824583607729 7.899901978429571 -5.654845163920292 8.467885565626732 -5.943713672615953 5.932658345836569 -7.048441644263794 6.207313497316516 -6.865170711259076 6.042017955053143 -6.814426757901017 -0.7708877180182611 -8.67837023956853 -0.7033889763933321 -8.94094689105154 -0.654931246901786 -8.87572412908016 -7.29247008265804 -6.16825830814427 -7.675148319401016 -6.175515803589196 -7.828473878628092 -6.498814991450156 9.163513299032058 -4.884771330406955 9.288607905876326 -5.078632244589382 9.383696738578189 -5.089147503819769 6.156160333179555 -6.85925835793994 6.463426586427903 -6.72963564814617 6.149763548693514 -6.719783069680686 -7.342427430768073 0.2680930777047664 -7.099418415463823 0.185251862407488 -6.416444883919922 0.4564335272708737 -0.9387513316986113 3.177981314570622 -0.9486586336982406 2.928653260658535 -0.8733676025194243 2.955435193762439 0.1623900218977226 1.096942491253779 0.2049310777999552 0.7494616287782674 0.2390899787757239 1.121124098115781 2.561736891303922 -6.107532364065592 2.351259293116423 -7.267382833582784 2.697162291991673 -7.439733174679802 -8.930165451960262 0.295333508518245 -8.914208763313722 0.1371312959481615 -7.483393821633138 0.4455058785349199 -6.95826376736089 3.067299847819562 -6.977197707339149 3.142543371988218 -7.432231818739337 3.138655979150429 -8.076504999067801 1.942273857748956 -8.129971552498796 2.009779509810612 -9.538039950976902 1.753491054251887 1.514655812151018 -0.7334080930896799 1.495417258704747 -1.082469132367868 1.586050509773324 -1.101728573334035 0.9056622836245004 -3.026816851248352 0.9386843079517104 -2.804837975377466 0.848532342347732 -2.78422799511566 -7.107027252437868 -0.7876375390194846 -6.180492195800953 -0.9112870973468583 -6.87969655198374 -0.6882856501199133 -7.128542655161807 -3.081103406424559 -7.625633710012609 -3.157201018721693 -7.147035477462651 -3.156399070821825 -7.67646206602808 -2.797370727957003 -9.085934916881605 -2.809746725564581 -7.718161150097957 -2.869832060215034 -8.908472463734093 -0.9456976228573982 -7.529679053645937 -0.9754095865071504 -8.90510072222548 -0.8139328844854772 -5.881338388599651 4.50406112808743 -7.253841230344557 5.1963013655474 -7.210690829545285 4.875994604011638 -7.193159703222822 5.269845207239835 -6.201636592931429 4.184642820135692 -6.783802307654304 5.26301819230866 4.462075121711869 4.808897275595138 5.053724850986439 5.865516110681777 4.873549189960155 5.93692711853209 7.561292571124231 3.105880725196114 7.19840840418086 2.838397488863771 7.292904795002277 2.808409441747124 8.1446895956849 4.306100996550779 7.33108804176471 3.332484017562069 7.430419082646078 3.317686977760138 6.976466929022937 1.872974094695157 6.78298815180057 1.772553044467654 7.068893513549147 1.839229311548257 -3.375200879283819 5.745125750166509 -3.431496126799863 6.131233491670329 -3.45919853437108 5.75786510951576 -2.955184331484319 6.221493854929197 -2.872356450278772 7.328422963449643 -3.044170914533516 6.259261082509404 3.025786591428482 5.50585552532548 3.931373325290601 6.336109984127391 3.791337376614206 6.408479467987543 7.238755424174864 4.860237867715482 6.567221837176867 3.884141568478665 7.647720248807206 4.84458354354674 -3.854266820333741 4.863838823179988 -3.683295487647069 4.683780487940838 -3.769795641590861 4.853212271834425 7.967133376560895 -5.610343800351751 8.197397358396524 -5.907933248492452 8.540483215386344 -5.892575601653754 5.80543341433306 -7.001506192640144 6.197624860810667 -6.97081610700894 6.081375034645086 -6.819435075955772 2.694052004896493 -8.635718625076724 2.672106037527454 -8.709265195113094 2.8140929380626 -8.79297493691973 -7.172208132465931 -6.266624957468202 -7.704084751759124 -6.601281756698698 -7.360840524520197 -6.588309894264103 9.263260326210883 -5.103814835884413 9.405523130976883 -5.249161905572431 9.358294433600234 -5.114631927304724 6.099371398642951 -6.823128462645105 6.241312786510573 -6.960253543023304 6.407080260315937 -6.694157141549344 -3.00608556832405 5.019451911661345 -2.940368701141873 5.082412968960504 -3.130554944520676 5.227407523900158 1.353517222041405 2.969811712864057 1.392768651892923 2.763381990809926 1.443907975064636 3.009566474741562 4.266942852427738 -6.615506992460908 4.716744199031261 -7.743148165624424 4.650737616699059 -6.727729441427135 -10.28668002886894 -0.0937828797595812 -9.055407814662802 0.1362472901876673 -9.071140312411432 0.2944633974503092 -3.608858147557148 4.770238110183211 -3.750680886215156 4.97120033830512 -3.773360530426287 4.896600557490119 -7.100705157999414 2.711278583091485 -7.576834581716011 2.773091943295637 -7.53289520959112 2.701458828563071 -8.17428369246934 1.941646553319781 -9.62934706237974 1.724115776184242 -9.577442512528513 1.663494001273091 -7.780241514356955 -0.1627572382919025 -7.925738781038671 -0.7049677603238156 -7.81789872000735 -0.5108880977619668 -0.4003858537230914 -3.128404622530123 -0.3271898303935311 -3.163058982880862 -0.3664504784439115 -2.918283023253877 -3.210576798330826 -4.677163784487616 -3.334860453426127 -4.865370207353467 -3.148104590430492 -4.723003393556979 -1.316512064019561 -5.240797323619147 -1.443959236100936 -5.377229732235214 -1.395218845609698 -5.443644561343438 -7.287339521616378 -2.718342435752688 -7.744361347278708 -2.709899126802834 -7.787263952156327 -2.781924358475356 -7.666572568824681 -2.976800579108238 -9.03710292577769 -2.925003092659073 -9.076011327401556 -2.99138269813291 -10.16170857392661 -0.6825958909967832 -8.851696614398072 -0.9458017672404062 -8.848305698669181 -0.8140373333688989 -0.6418995047070736 7.398626793913742 -0.3851475606342147 7.649532137868212 -1.040226995247436 8.578003799303744 -7.687594056897973 6.085286508094633 -7.200547990069486 5.143462673449845 -6.791185263749208 5.136836418696446 4.936590354621746 5.981307350482459 5.116453585483766 5.909410591143172 5.328590197088473 6.927864112478795 7.306308382958497 3.212871115809425 7.037176307619113 2.935283787564428 7.40562559675408 3.198016750009801 8.188880842524677 4.269016917995517 7.473686813896915 3.279455971915816 8.280426782920902 4.256599975095995 -3.080035187647084 5.826761646029444 -3.032336604943796 6.176772711451529 -3.121678174578922 6.214017685437319 -3.997509586052842 5.931604622387955 -3.978727878031649 7.010881474673525 -4.064391166869241 7.039200860234 3.73907649699957 6.378775164524912 3.87935099306713 6.306692144878103 4.716810930553826 7.113391170709449 8.224676172670373 5.705182593954473 7.244516300415924 4.759328148477268 7.653443140774132 4.743071349325396 8.246228042817288 -5.420226833230213 8.685476913952527 -5.517917613663904 8.589069989065436 -5.401804206253233 5.716535945349822 -6.99827792502101 5.829734031808918 -7.151083490739215 5.950380016897553 -6.888351573934867 5.938075065571109 -7.477345904830089 6.079310741766163 -7.560349740341263 6.329976887835218 -7.444445810242726 3.506912979032589 -8.46166022371338 3.642055186490267 -8.611141909815 3.648030716630628 -8.533174653926585 -7.415617247831406 -6.123164672229621 -7.758917757279447 -6.135179534202703 -7.838113406866619 -6.259107765244684 9.199320618261513 -5.189777088698508 9.242747120781061 -5.317344943838871 9.338938362228362 -5.336702837402881 6.20428809670488 -6.752999988327257 6.586311701542256 -6.745322910101302 6.441712748022574 -6.609927054303896 7.313221789611619 -6.849888355574418 7.521171262621915 -6.706452308652097 7.45901239198993 -6.576650445976441 4.791985438184079 -6.393448434642259 4.96101672126361 -7.410250837308657 5.327297900583988 -7.497732947390289 -10.24084246468124 -0.1040529529873537 -10.18786210624122 -0.2959617694932749 -8.973048322673785 0.09368805104582501 -9.791558687129761 0.9814944629179719 -9.849740241730554 1.038480174062652 -11.03574671084916 0.6911650590541538 -9.415230739134167 -2.222866846366144 -10.75659909304071 -2.068782967820127 -9.461761610005713 -2.286137886242992 -10.13482258713969 -0.6655093740248087 -8.789002283949557 -0.747684339765454 -10.09884371873968 -0.48395379180013 0.7062362991890919 7.398958754048512 0.5215751719474426 8.610576067740357 0.2420699431879769 8.404827397964192 -7.738195418593551 6.050153291287474 -6.837541269088914 5.104195416427717 -7.355456083926312 6.045252120048752 4.669626389314941 6.035463120990829 5.087364117575771 6.997668551183808 4.849663849320372 7.057734058926635 8.887757765929553 5.204713154954328 8.19978347435528 4.33905670336054 8.291339532033625 4.326686009564462 -3.706736949528631 7.154787763625316 -3.646455252176806 8.220131701559021 -3.791426498015353 7.184865016877708 4.017462302655394 6.193364490230405 5.007217863813386 6.917949964255357 4.832422322582662 7.039874860515124 7.815867115999467 5.747013697197486 7.225753052870662 4.782860808236814 8.198275477145513 5.733581468844197 8.255934873121877 -5.425000924755263 8.354061003959405 -5.553084446659128 8.695492439150057 -5.521828640662377 6.214707203613981 -7.128945943891515 6.448048886577796 -6.99394840958314 6.32941090754643 -6.864572112469428 8.221420654770943 -6.011596916810401 8.268057903211902 -6.080553301519491 8.46005302508858 -5.928526389953852 -7.400535590715782 0.8717983867746344 -7.710056807611661 1.143598374101608 -7.739636148797682 0.9160539968145308 -7.397728585105807 -6.149469981422893 -7.820072536121256 -6.285705449040004 -7.476335612334193 -6.285611833348003 8.889699937979515 -5.367090655374562 8.802036041508512 -5.579571116364043 8.983551949191488 -5.392582583260899 6.214109891629436 -6.929543324702434 6.331806366037938 -7.059450696779978 6.596129007660912 -6.921729238484499 -7.479397580784825 0.4238032242109914 -7.823134473615471 0.4236551229774854 -7.840906910557184 0.2065396890655799 5.03613177516775 -7.371151395670309 5.44714017930667 -7.793709156066238 5.403250354818505 -7.456433614001966 -10.18932270967896 -0.3660431812972971 -9.901968525166041 -0.2877602649081492 -9.956211444287531 -0.09606984461399371 -9.785553559477243 0.9997840159759621 -11.03088046238132 0.7124922133221913 -10.96888940766614 0.6583064165969161 -9.410114233620595 -2.228385051922737 -10.70081004544833 -2.014953416345824 -10.75176751996626 -2.075844082053425 -10.17781002545755 -0.4324686368727615 -9.919087785409818 -0.6709566358517062 -9.882478990765385 -0.4894789985166593 1.760118758233272 8.266274949732306 2.073456556903941 8.439249232768111 1.973086817548392 8.775162110542233 -7.895675249693724 6.35572890440783 -7.738632574130896 6.040031310379674 -7.355893051787491 6.035139217269675 4.698653201530358 6.866233768884938 4.936890879330538 6.807500633840543 4.755953259092024 7.10117505962285 8.789778937523959 5.215777509063605 8.193911464926989 4.342014878462916 8.881865056477553 5.207681510575066 -3.636679076312206 7.174520399546183 -3.485281170383963 8.205188246932353 -3.567023200653953 8.239510501697062 4.608467887856551 6.942351551755317 4.784623973985226 6.821644505099476 5.002730093696144 6.988347316600743 8.382336284135629 6.009072709059925 7.818517792135292 5.708527979604562 8.200915224598788 5.694904571137292 -7.300328622433423 0.3133705363867954 -7.610227136120761 0.5768796973943583 -7.640754077580986 0.3502904432559122 8.683624809932937 -5.213540875446535 8.520711222363763 -5.352586884343154 8.752295864988689 -5.257974310796413 -7.092818134246431 1.331112866636004 -7.045255851850174 1.56780133338496 -7.383512819161629 1.615486151864548 9.080826027969591 -4.769648828027862 9.155802633392856 -4.807249290353734 9.216058004429662 -4.588944696320829 -7.184763006546485 1.174210970859951 -7.527235853374553 1.196529730501106 -7.563888096290102 0.9487953516270735 -7.287457386560325 0.1498170140715543 -7.260875675639328 0.3771226435993637 -7.630302431797364 0.1682635791268916 3.685928652310532 -7.859516517881581 3.710282400354488 -8.207401766278244 4.021944197128372 -8.321277962077289 -10.62889198449577 -0.004829544958635267 -10.44103046175671 -0.2056412825270085 -10.20681813314493 0.06374166861326873 -11.00590139692624 0.3907337674933596 -11.06989655349128 0.4434580411120462 -11.33757060876102 0.3299332866368258 -10.88077384336795 -1.431837684361402 -11.21906661463155 -1.401026336483101 -10.93675582579856 -1.489933784228467 -10.5596395438532 -0.7878020949513485 -10.12317404566467 -0.8221614784880638 -10.3823927298437 -0.5840073204946437 -1.615834864721014 8.293094617417673 -1.611430049953948 8.828839023972686 -1.814730889983079 8.61089390575034 -7.797266256922559 6.442545277235023 -7.260221681247103 6.119122849391917 -7.453867248912717 6.432445277851455 5.220278369457862 7.120775325574897 5.393343910433234 6.824179257647212 5.53582304901841 7.144123675288182 8.997431426691051 5.445946787423706 8.792789899193275 5.231813030241208 8.884875029733228 5.223710077424811 -3.138175189433178 8.317365019032891 -3.142359261060369 8.585258492464037 -3.218528724881931 8.353659643728127 4.54585703049935 7.161736605889143 4.939970439093995 7.208514868594181 4.814130817532872 7.434740768529738 8.090778324723388 5.987275507851667 7.865836740895702 5.680391139333189 8.434102477119943 5.975707014455302 -7.282057632106239 0.3420229973445143 -7.24953389326128 0.5767685969397471 -7.591005943910796 0.6062217419930539 -7.160381284168206 1.173992512444623 -7.54050878292817 0.9496240426249764 -7.199326808919533 0.9181592597770775 5.914689599860319 -7.02337559921768 6.29919748455012 -7.216898010070527 6.249641386265783 -7.083776125206647 -10.68063472916411 -0.03014462824183809 -10.63789637362116 -0.3114805503609948 -10.49291382516479 -0.2310377280508252 -10.98767111651761 0.4919174817930945 -11.32050148029596 0.4351794222741164 -11.23691440893257 0.3979838735056778 -10.86032803082546 -1.479091414228765 -11.12090449503825 -1.406631697688325 -11.1989547701045 -1.450640802191977 -10.61528799819944 -0.760199929410775 -10.43811890949309 -0.5563633344249114 -10.59175004968914 -0.4865325643419837 5.168886315289541 7.365943063405671 5.496535504559187 7.447443103446951 5.532248318194387 7.583289295059242 -7.911031530225858 6.136667593078347 -7.830448785404514 6.01329483810173 -7.487027993879361 6.003664093610519 5.196321233049179 7.312074496055821 5.209522134444327 7.172888476327961 5.52505120131981 7.196367035854346 8.940196896659442 5.490580774524839 8.846094317593119 5.475450592245355 8.736560394668635 5.275854911380717 -2.300373506391011 8.476309098196238 -2.219830157215937 8.684287937402377 -2.279150689010646 8.74370209437417 4.920373935155845 7.438211336220197 5.044873738304256 7.211527141739645 5.201938026693515 7.276423649238595 8.554216058595706 5.609838941235937 8.117312848289828 5.50583931127758 8.460523032565412 5.492339300060463 5.794782989367736 -7.095646520287728 5.838978350849863 -7.241079413747425 6.176397673910426 -7.292681087399546 -11.32324141032872 -0.05684265905028527 -11.14133237321608 0.2182022158056376 -11.30737918634648 0.1715256504883076 -10.74131848652431 -0.3051059973261299 -10.51661884714693 -0.3111780448464778 -10.55983482506775 -0.02988727853457548 -11.33513745992419 -0.3186119544810304 -11.4677873213602 -0.4112938962804223 -11.24791499099993 -0.3502225672437868 -11.47568516644927 -0.3709429057436157 -11.33426853498595 -0.4552433648619497 -11.25043997430787 -0.4183930563986958 -10.74388029507606 -0.5088916691470116 -10.54454376524947 -0.7603525242860809 -10.52085334959071 -0.486693300899215 -11.27212812476224 -0.7479573568234509 -11.24399792535239 -0.9644057792185449 -11.0734791832724 -0.9997547129525994 4.978979388225893 7.45691012177773 5.337233013825129 7.679442414591668 5.006846435673423 7.604819984842863 -7.552507478035663 6.163501045937264 -7.896230321513499 6.161101792884907 -7.472314108315947 6.027926149526729 6.381417688566287 7.364138822885103 6.568033924868935 7.091055228351658 6.612442373854851 7.225289807666986 5.108519115953327 7.241921539249105 5.437859442009398 7.127293216737903 5.229994844828195 7.390708196312395 8.899210574551541 5.707140730405462 8.769964914876876 5.554447965853877 8.863857021041271 5.57036678242239 0.6017656373906116 8.849027341067513 0.6831017678459112 9.02094398084264 0.5630702990475844 8.918172808578168 4.84918506126741 7.404696269567971 5.131383779189833 7.243594294828876 5.225877649618224 7.404059473402316 4.852034509448656 7.891839684728685 5.228726971077487 7.891158075813983 4.980384828495451 7.986939090479169 8.219528150327255 5.64268143251085 8.124451070387782 5.513201857738595 8.561642221226299 5.616449946382111 7.477964839792466 -0.3164301919684322 7.820002119320475 -0.5629349420333912 7.82095570648282 -0.3342272036161624 -10.73223469003857 -0.09750802350088886 -10.51385019564315 -0.3178100812963506 -10.50753475833932 -0.1035733729477003 -11.26210337181495 -0.2232559555111391 -11.4828768075653 -0.2822812359787225 -11.38964063218413 -0.3091237266096786 -11.38820264429764 -0.4634149773922885 -11.47856677714294 -0.4958093755231466 -11.25267877158462 -0.5413292099811872 -10.70926736066075 -0.7241433480761172 -10.48624088283821 -0.7019420723149915 -10.51035120217984 -0.4674430017563528 7.844049478789012 0.1933800494995118 7.502764762946278 -0.0432567612130923 7.845644128403817 -0.02419302449264853 -7.479089971007023 -0.2255670009436816 -7.845559445012757 -0.001841097336704264 -7.822783260867139 -0.2298481961284706 5.251847388980799 7.175966403540889 5.480262055549751 7.059138797071849 5.604855525251153 7.206321351226547 8.776750423011515 5.835196226157819 8.682652265325375 5.810220989327786 8.651500581638176 5.680456463118566 1.485772983708301 8.791928779812089 1.608273387713923 8.882207753686709 1.584619933842702 8.958069629267971 4.708393688786927 7.404342806766388 4.976298403093658 7.299798120732598 4.799109858124441 7.566151518812774 -7.454962337104237 -0.6596704191253112 -7.793178801377531 -0.7079307177167631 -7.761536119210644 -0.924080850109646 7.271660093477241 -0.5028294652796737 7.269619430338604 -0.742481892834188 7.613136989127534 -0.7498145417369845 -10.92051144681378 -0.2102256539428505 -10.90482643731967 -0.43775430480715 -10.70221595034152 -0.4305822903290932 -11.27725068815328 -0.173088120066662 -11.28100018826619 -0.3873621256739218 -11.18280299208395 -0.1971672534214698 -11.2630806435167 -0.2184774645733396 -11.24894199331346 -0.4534792626938192 -11.15625228072694 -0.4254444442964471 -10.90845917228694 -0.3742419134110793 -10.90502832334284 -0.6236457186092163 -10.70584857138288 -0.3670718909140796 7.618644319240165 0.413273990567097 7.275205169583114 0.4039696451474449 7.278378418002919 0.1757309639274631 -7.319965044724375 0.02637050699736276 -7.662310025337017 0.002872670088507172 -7.287293167286048 -0.2119090496941094 5.205967696573508 7.371192744173923 5.558892750505161 7.402139770442199 5.304261758068236 7.510718828934936 8.037753861832558 6.122809874252642 8.127594706888372 6.156102077184638 7.943854768287891 6.314353166684216 7.273791869601489 6.668048104795911 7.539061909339335 6.588340650501213 7.310957907657844 6.740480419146932 5.165539756279554 7.582007533895836 5.336979005721872 7.313335759549505 5.436421504585031 7.452357326752184 -7.110207297837602 -1.240657627793926 -7.392083045804741 -1.521561313377225 -7.056068249124015 -1.464908348649675 7.305131176915099 0.2880279903068188 7.649873525010325 0.05285049253222032 7.648649290072918 0.2807114310127205 -10.86392768529901 -0.3402247460209299 -10.96094106120326 -0.5307952075667954 -10.87205009150995 -0.5292217281837912 -10.88594628879937 -0.04402942136596071 -10.97483706903287 -0.04560951047551233 -10.87046564296891 -0.2533508204590864 7.659150054302678 -0.2763464000623481 7.315970564608313 -0.5349705400006876 7.65941400470839 -0.5257647217229292 -7.172426749101089 -1.140875959246738 -7.55519119575834 -0.9454712612601799 -7.513933166500292 -1.170992836758235 8.459571746985008 5.397204563665892 8.593907679644593 5.240374159134416 8.530400067812826 5.439495416581214 7.787513651940996 5.987941707509287 7.84955355450045 6.038053002042353 7.59007991289359 6.128803043075938 -7.332300693067998 -0.2484377953323516 -7.671599965303634 -0.2912972040263326 -7.631753046015854 -0.5387552600929779 7.290719076346226 0.2755267402021296 7.291975651081154 0.03940138049878873 7.635489710447182 0.04037490460496442 7.636853380435862 -0.2578290348497467 7.293339314235867 -0.2588010655243426 7.293684783939276 -0.5164621196727895 -7.156160674413737 -1.141481673185987 -7.199692840819402 -0.9078650066005928 -7.539607897009619 -0.9469071451194763 -7.305606594538739 -0.293280564857082 -7.603196841502352 -0.5847805386810494 -7.262747511722701 -0.5487342049231557</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"884\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 9 7 10 8 11 8 12 7 13 6 1 9 0 10 14 11 15 11 5 10 4 9 1 12 16 13 6 14 7 14 17 13 4 12 10 15 18 16 19 17 20 17 21 16 11 15 8 18 10 19 22 20 23 20 11 19 13 18 8 21 24 22 9 23 12 23 25 22 13 21 0 24 26 25 14 26 15 26 27 25 5 24 28 27 29 28 30 29 31 29 32 28 33 27 29 28 34 30 35 31 36 31 37 30 32 28 16 32 38 33 6 34 7 34 39 33 17 32 22 35 10 36 19 37 20 37 11 36 23 35 18 38 40 39 19 40 20 40 41 39 21 38 42 41 43 42 44 43 45 43 46 42 47 41 8 44 48 45 24 46 25 46 49 45 13 44 14 47 26 48 50 49 51 49 27 48 15 47 52 50 53 51 54 52 55 52 56 51 57 50 58 53 38 54 16 55 17 55 39 54 59 53 60 56 61 57 62 58 63 58 64 57 65 56 19 59 40 60 66 61 67 61 41 60 20 59 68 62 69 63 70 64 71 64 72 63 73 62 8 65 74 66 48 67 49 67 75 66 13 65 76 68 77 69 78 70 79 70 80 69 81 68 82 71 83 72 84 73 85 73 86 72 87 71 88 74 89 75 90 76 91 76 92 75 93 74 94 77 95 78 96 79 97 79 98 78 99 77 19 80 66 81 100 82 101 82 67 81 20 80 102 83 103 84 104 85 105 85 106 84 107 83 103 86 108 87 109 88 110 88 111 87 106 86 68 89 112 90 69 91 72 91 113 90 73 89 8 92 114 93 74 94 75 94 115 93 13 92 84 95 83 96 116 97 117 97 86 96 85 95 88 98 118 99 89 100 92 100 119 99 93 98 94 101 96 102 120 103 121 103 97 102 99 101 122 104 123 105 124 106 123 105 122 104 125 107 126 107 127 104 128 105 129 106 128 105 127 104 130 108 131 109 123 110 128 110 132 109 133 108 134 111 135 112 136 113 137 113 138 112 139 111 19 114 100 115 140 116 141 116 101 115 20 114 102 117 104 118 142 119 143 119 105 118 107 117 144 120 103 121 102 122 107 122 106 121 145 120 122 123 108 124 103 125 106 125 111 124 127 123 146 126 147 127 148 128 147 127 146 126 149 129 147 127 149 129 150 130 150 130 149 129 151 131 151 131 149 129 152 132 151 131 152 132 153 133 153 133 152 132 154 134 153 133 154 134 155 135 155 135 154 134 156 136 155 135 156 136 157 137 157 137 156 136 158 138 158 138 156 136 159 139 158 138 159 139 160 140 160 140 159 139 161 141 160 140 161 141 162 142 162 142 161 141 163 143 162 142 163 143 164 144 164 144 163 143 165 145 166 146 167 147 168 148 167 147 166 146 146 126 167 147 146 126 169 149 169 149 146 126 148 128 169 149 148 128 170 150 169 149 170 150 171 151 171 151 170 150 172 152 171 151 172 152 173 153 171 151 173 153 174 154 174 154 173 153 175 155 174 154 175 155 176 156 176 156 175 155 177 157 176 156 177 157 178 158 176 156 178 158 179 159 179 159 178 158 180 160 179 159 180 160 181 161 181 161 180 160 182 162 181 161 182 162 183 163 183 163 182 162 184 164 183 163 184 164 165 145 183 163 165 145 185 165 185 165 165 145 163 143 185 165 163 143 186 166 185 165 186 166 187 167 188 167 189 166 190 165 189 166 191 143 190 165 191 143 192 145 190 165 190 165 192 145 193 163 192 145 194 164 193 163 194 164 195 162 193 163 193 163 195 162 196 161 195 162 197 160 196 161 196 161 197 160 198 159 197 160 199 158 198 159 198 159 199 158 200 156 199 158 201 157 200 156 201 157 202 155 200 156 200 156 202 155 203 154 202 155 204 153 203 154 203 154 204 153 205 151 204 153 206 152 205 151 206 152 207 150 205 151 205 151 207 150 208 149 207 150 209 128 208 149 209 128 210 126 208 149 208 149 210 126 211 147 210 126 212 146 211 147 213 148 211 147 212 146 192 145 191 143 214 144 214 144 191 143 215 142 191 143 216 141 215 142 215 142 216 141 217 140 216 141 218 139 217 140 217 140 218 139 219 138 218 139 220 136 219 138 219 138 220 136 221 137 221 137 220 136 222 135 220 136 223 134 222 135 222 135 223 134 224 133 223 134 225 132 224 133 224 133 225 132 226 131 225 132 227 129 226 131 226 131 227 129 228 130 228 130 227 129 229 127 227 129 210 126 229 127 209 128 229 127 210 126 112 168 230 169 69 170 72 170 231 169 113 168 114 171 232 172 74 173 75 173 233 172 115 171 84 174 116 175 234 176 235 176 117 175 85 174 96 177 236 178 120 179 121 179 237 178 97 177 122 180 124 181 108 182 111 182 129 181 127 180 125 183 122 184 238 185 239 185 127 184 126 183 125 186 240 187 123 188 128 188 241 187 126 186 242 189 130 190 123 191 128 191 133 190 243 189 135 192 244 193 136 194 137 194 245 193 138 192 100 195 246 196 140 197 141 197 247 196 101 195 102 198 142 199 248 200 249 200 143 199 107 198 144 201 102 202 250 203 251 203 107 202 145 201 144 204 238 205 103 206 106 206 239 205 145 204 238 207 122 208 103 209 106 209 127 208 239 207 252 210 253 211 254 212 255 212 256 211 257 210 258 213 259 214 253 215 256 215 260 214 261 213 259 216 262 217 263 218 264 218 265 217 260 216 263 219 266 220 267 221 268 221 269 220 264 219 270 222 271 223 272 224 273 224 274 223 275 222 272 225 276 226 277 227 278 227 279 226 273 225 280 228 281 229 282 230 283 230 284 229 285 228 286 231 287 232 281 233 284 233 288 232 289 231 290 234 291 235 287 236 288 236 292 235 293 234 248 237 142 238 291 239 292 239 143 238 249 237 294 240 130 241 242 242 243 242 133 241 295 240 296 243 294 244 297 245 298 245 295 244 299 243 300 246 296 247 301 248 302 248 299 247 303 246 304 249 300 250 305 251 306 251 303 250 307 249 308 252 309 253 310 254 311 254 312 253 313 252 314 255 315 256 316 257 317 257 318 256 319 255 320 258 321 259 309 260 312 260 322 259 323 258 324 261 314 262 325 263 326 263 319 262 327 261 328 264 254 265 329 266 330 266 255 265 331 264 112 267 332 268 230 269 231 269 333 268 113 267 114 270 334 271 232 272 233 272 335 271 115 270 234 273 116 274 336 275 337 275 117 274 235 273 120 276 236 277 338 278 339 278 237 277 121 276 242 279 123 280 240 281 241 281 128 280 243 279 136 282 244 283 340 284 341 284 245 283 137 282 140 285 246 286 342 287 343 287 247 286 141 285 250 288 102 289 248 290 249 290 107 289 251 288 328 291 252 292 254 293 255 293 257 292 331 291 258 294 253 295 252 296 257 296 256 295 261 294 262 297 259 298 258 299 261 299 260 298 265 297 262 300 266 301 263 302 264 302 269 301 265 300 266 303 271 304 267 305 268 305 274 304 269 303 344 306 345 307 346 308 347 308 348 307 349 306 271 309 276 310 272 311 273 311 279 310 274 309 276 312 280 313 277 314 280 313 276 312 350 315 351 315 279 312 285 313 278 314 285 313 279 312 352 316 353 317 354 318 355 318 356 317 357 316 280 319 286 320 281 321 284 321 289 320 285 319 286 322 290 323 287 324 288 324 293 323 289 322 248 325 291 326 290 327 293 327 292 326 249 325 297 328 294 329 242 330 243 330 295 329 298 328 301 331 296 332 297 333 298 333 299 332 302 331 305 334 300 335 301 336 302 336 303 335 306 334 308 337 304 338 305 339 306 339 307 338 313 337 358 340 359 341 360 342 361 342 362 341 363 340 320 343 309 344 308 345 313 345 312 344 323 343 314 346 316 347 364 348 365 348 317 347 319 346 328 349 321 350 320 351 323 351 322 350 331 349 366 352 367 353 368 354 369 354 370 353 371 352 325 355 314 356 364 357 365 357 319 356 326 355 230 358 332 359 372 360 373 360 333 359 231 358 334 361 374 362 232 363 233 363 375 362 335 361 234 364 336 365 376 366 377 366 337 365 235 364 338 367 236 368 378 369 379 369 237 368 339 367 380 370 242 371 240 372 241 372 243 371 381 370 244 373 382 374 340 375 341 375 383 374 245 373 246 376 384 377 342 378 343 378 385 377 247 376 250 379 248 380 290 381 293 381 249 380 251 379 386 382 252 383 328 384 331 384 257 383 387 382 388 385 258 386 252 387 257 387 261 386 389 385 390 388 262 389 258 390 261 390 265 389 391 388 262 391 392 392 266 393 269 393 393 392 265 391 266 394 394 395 271 396 274 396 395 395 269 394 396 397 397 398 398 399 399 399 400 398 401 397 344 400 402 401 345 402 348 402 403 401 349 400 271 403 404 404 276 405 279 405 405 404 274 403 404 406 350 407 276 408 279 408 351 407 405 406 350 409 406 410 280 411 285 411 407 410 351 409 408 412 409 413 410 414 411 414 412 413 413 412 352 415 354 416 414 417 415 417 355 416 357 415 286 418 406 419 416 420 406 419 286 418 280 421 285 421 289 418 407 419 417 420 407 419 289 418 416 422 290 423 286 424 289 424 293 423 417 422 297 425 242 426 380 427 381 427 243 426 298 425 301 428 297 429 418 430 419 430 298 429 302 428 305 431 301 432 420 433 421 433 302 432 306 431 308 434 305 435 422 436 423 436 306 435 313 434 424 437 358 438 360 439 361 439 363 438 425 437 426 440 320 441 308 442 313 442 323 441 427 440 364 443 316 444 428 445 429 445 317 444 365 443 430 446 328 447 320 448 323 448 331 447 431 446 367 449 366 450 432 451 433 451 371 450 370 449 325 452 364 453 434 454 435 454 365 453 326 452 332 455 436 456 372 457 373 457 437 456 333 455 334 458 438 459 374 460 375 460 439 459 335 458 376 461 336 462 440 463 441 463 337 462 377 461 338 464 378 465 442 466 443 466 379 465 339 464 340 467 382 468 444 469 445 469 383 468 341 467 342 470 384 471 446 472 447 472 385 471 343 470 448 473 250 474 290 475 293 475 251 474 449 473 430 476 386 477 328 478 331 478 387 477 431 476 388 479 252 480 386 481 387 481 257 480 389 479 388 482 390 483 258 484 261 484 391 483 389 482 392 485 262 486 390 487 391 487 265 486 393 485 392 488 394 489 266 490 269 490 395 489 393 488 394 491 404 492 271 493 274 493 405 492 395 491 450 494 451 495 452 496 453 496 454 495 455 494 402 497 456 498 345 499 348 499 457 498 403 497 450 500 458 501 451 502 454 502 459 501 455 500 414 503 354 504 460 505 461 505 355 504 415 503 448 506 290 507 416 508 417 508 293 507 449 506 418 509 297 510 380 511 381 511 298 510 419 509 420 512 301 513 418 514 419 514 302 513 421 512 422 515 305 516 420 517 421 517 306 516 423 515 426 518 308 519 422 520 423 520 313 519 427 518 462 521 358 522 424 523 425 523 363 522 463 521 430 524 320 525 426 526 427 526 323 525 431 524 428 527 316 528 464 529 465 529 317 528 429 527 466 530 467 531 468 532 469 532 470 531 471 530 472 533 432 534 366 535 371 535 433 534 473 533 474 536 466 537 468 538 469 538 471 537 475 536 325 539 434 540 476 541 477 541 435 540 326 539 372 542 436 543 478 544 479 544 437 543 373 542 438 545 480 546 374 547 375 547 481 546 439 545 376 548 440 549 482 550 483 550 441 549 377 548 442 551 378 552 484 553 485 553 379 552 443 551 382 554 486 555 444 556 445 556 487 555 383 554 384 557 488 558 446 559 447 559 489 558 385 557 490 560 450 561 452 562 453 562 455 561 491 560 402 563 492 564 456 565 457 565 493 564 403 563 494 566 495 567 496 568 497 568 498 567 499 566 500 569 458 570 450 571 455 571 459 570 501 569 502 572 503 573 458 574 459 574 504 573 505 572 414 575 460 576 506 577 507 577 461 576 415 575 462 578 424 579 508 580 509 580 425 579 463 578 510 581 511 582 512 583 513 583 514 582 515 581 316 584 516 585 464 586 465 586 517 585 317 584 518 587 519 588 520 589 521 589 522 588 523 587 524 590 518 591 520 592 521 592 523 591 525 590 325 593 526 594 527 595 528 595 529 594 326 593 530 596 432 597 472 598 473 598 433 597 531 596 532 599 533 600 534 601 535 601 536 600 537 599 538 602 532 603 534 604 535 604 537 603 539 602 325 605 476 606 540 607 541 607 477 606 326 605 436 608 542 609 478 610 479 610 543 609 437 608 438 611 544 612 480 613 481 613 545 612 439 611 482 614 440 615 546 616 547 616 441 615 483 614 442 617 484 618 548 619 549 619 485 618 443 617 444 620 486 621 550 622 551 622 487 621 445 620 488 623 552 624 446 625 447 625 553 624 489 623 554 626 490 627 452 628 453 628 491 627 555 626 556 629 557 630 558 631 559 631 560 630 561 629 492 632 562 633 456 634 457 634 563 633 493 632 564 635 565 636 566 637 567 637 568 636 569 635 570 638 494 639 496 640 497 640 499 639 571 638 558 641 557 642 572 643 573 643 560 642 559 641 574 644 458 645 500 646 501 646 459 645 575 644 502 647 458 648 576 649 577 649 459 648 505 647 578 650 503 651 502 652 505 652 504 651 579 650 506 653 460 654 580 655 581 655 461 654 507 653 582 656 462 657 508 658 509 658 463 657 583 656 510 659 512 660 584 661 585 661 513 660 515 659 512 662 511 663 586 664 587 664 514 663 513 662 588 665 589 666 590 667 591 667 592 666 593 665 520 668 519 669 594 670 595 670 522 669 521 668 325 671 540 672 526 673 529 673 541 672 326 671 527 674 526 675 596 676 597 676 529 675 528 674 598 677 530 678 472 679 473 679 531 678 599 677 538 680 534 681 600 682 601 682 535 681 539 680 602 683 603 684 604 685 605 685 606 684 607 683 478 686 542 687 608 688 609 688 543 687 479 686 544 689 610 690 480 691 481 691 611 690 545 689 482 692 546 693 612 694 613 694 547 693 483 692 548 695 484 696 614 697 615 697 485 696 549 695 486 698 616 699 550 700 551 700 617 699 487 698 618 701 552 702 488 703 489 703 553 702 619 701 620 704 554 705 452 706 453 706 555 705 621 704 622 707 623 708 556 709 561 709 624 708 625 707 623 710 557 711 556 712 561 712 560 711 624 710 492 713 626 714 562 715 563 715 627 714 493 713 628 716 570 717 496 718 497 718 571 717 629 716 630 719 631 720 632 721 633 721 634 720 635 719 636 722 632 723 637 724 638 724 633 723 639 722 557 725 640 726 572 727 573 727 641 726 560 725 642 728 572 729 640 730 641 730 573 729 643 728 576 731 458 732 574 733 575 733 459 732 577 731 644 734 645 735 646 736 647 736 648 735 649 734 650 737 651 738 645 739 648 739 652 738 653 737 654 740 503 741 578 742 579 742 504 741 655 740 506 743 580 744 656 745 657 745 581 744 507 743 582 746 508 747 658 748 659 748 509 747 583 746 511 749 660 750 586 751 587 751 661 750 514 749 662 752 663 753 588 754 593 754 664 753 665 752 666 755 667 756 662 757 665 757 668 756 669 755 663 758 589 759 588 760 593 760 592 759 664 758 670 761 671 762 602 763 607 763 672 762 673 761 674 764 675 765 671 766 672 766 676 765 677 764 527 767 596 768 678 769 679 769 597 768 528 767 680 770 530 771 598 772 599 772 531 771 681 770 602 773 604 774 670 775 673 775 605 774 607 773 542 776 682 777 608 778 609 778 683 777 543 776 544 779 684 780 610 781 611 781 685 780 545 779 612 782 546 783 686 784 687 784 547 783 613 782 548 785 614 786 688 787 689 787 615 786 549 785 616 788 690 789 550 790 551 790 691 789 617 788 618 791 692 792 552 793 553 793 693 792 619 791 694 794 695 795 631 796 634 796 696 795 697 794 698 797 623 798 622 799 625 799 624 798 699 797 626 800 700 801 562 802 563 802 701 801 627 800 702 803 570 804 628 805 629 805 571 804 703 803 694 806 631 807 630 808 635 808 634 807 697 806 630 809 632 810 636 811 639 811 633 810 635 809 636 812 637 813 704 814 705 814 638 813 639 812 706 815 707 816 708 817 709 817 710 816 711 815 712 818 642 819 640 820 641 820 643 819 713 818 714 821 715 822 716 823 717 823 718 822 719 821 714 824 720 825 715 826 718 826 721 825 719 824 644 827 650 828 645 829 648 829 653 828 649 827 650 830 722 831 651 832 652 832 723 831 653 830 724 833 654 834 578 835 579 835 655 834 725 833 656 836 580 837 726 838 727 838 581 837 657 836 728 839 582 840 658 841 659 841 583 840 729 839 586 842 660 843 730 844 731 844 661 843 587 842 667 845 663 846 662 847 665 847 664 846 668 845 732 848 667 849 666 850 669 850 668 849 733 848 670 851 674 852 671 853 672 853 677 852 673 851 674 854 734 855 675 856 676 856 735 855 677 854 678 857 596 858 736 859 737 859 597 858 679 857 738 860 680 861 598 862 599 862 681 861 739 860 682 863 740 864 608 865 609 865 741 864 683 863 610 866 684 867 742 868 743 868 685 867 611 866 544 869 744 870 684 871 685 871 745 870 545 869 612 872 686 873 746 874 747 874 687 873 613 872 688 875 614 876 748 877 749 877 615 876 689 875 616 878 750 879 690 880 691 880 751 879 617 878 742 881 692 882 618 883 619 883 693 882 743 881 692 884 752 885 552 886 553 886 753 885 693 884 626 887 754 888 700 889 701 889 755 888 627 887 756 890 702 891 628 892 629 892 703 891 757 890 704 893 637 894 758 895 759 895 638 894 705 893 722 896 760 897 651 898 652 898 761 897 723 896 762 899 654 900 724 901 725 901 655 900 763 899 656 902 726 903 764 904 765 904 727 903 657 902 728 905 658 906 766 907 767 907 659 906 729 905 660 908 768 909 730 910 731 910 769 909 661 908 770 911 732 912 666 913 669 913 733 912 771 911 734 914 772 915 675 916 676 916 773 915 735 914 678 917 736 918 774 919 775 919 737 918 679 917 776 920 680 921 738 922 739 922 681 921 777 920 682 923 778 924 740 925 741 925 779 924 683 923 684 926 780 927 742 928 743 928 781 927 685 926 782 929 783 930 784 931 785 931 786 930 787 929 788 932 789 933 790 934 791 934 792 933 793 932 688 935 748 936 794 937 795 937 749 936 689 935 796 938 784 939 797 940 798 940 785 939 799 938 742 941 780 942 692 943 693 943 781 942 743 941 800 944 801 945 802 946 803 946 804 945 805 944 754 947 806 948 700 949 701 949 807 948 755 947 808 950 702 951 756 952 757 952 703 951 809 950 704 953 758 954 810 955 811 955 759 954 705 953 722 956 812 957 760 958 761 958 813 957 723 956 814 959 762 960 724 961 725 961 763 960 815 959 764 962 726 963 816 964 817 964 727 963 765 962 818 965 728 966 766 967 767 967 729 966 819 965 730 968 768 969 820 970 821 970 769 969 731 968 822 971 732 972 770 973 771 973 733 972 823 971 734 974 824 975 772 976 773 976 825 975 735 974 774 977 736 978 826 979 827 979 737 978 775 977 828 980 776 981 738 982 739 982 777 981 829 980 830 983 831 984 789 985 792 985 832 984 833 983 834 986 782 987 784 988 785 988 787 987 835 986 788 989 830 990 789 991 792 991 833 990 793 989 834 992 784 993 796 994 799 994 785 993 835 992 836 995 802 996 831 997 832 997 803 996 837 995 836 998 800 999 802 1000 803 1000 805 999 837 998 754 1001 838 1002 806 1003 807 1003 839 1002 755 1001 840 1004 808 1005 756 1006 757 1006 809 1005 841 1004 810 1007 758 1008 842 1009 843 1009 759 1008 811 1007 812 1010 844 1011 760 1012 761 1012 845 1011 813 1010 846 1013 762 1014 814 1015 815 1015 763 1014 847 1013 764 1016 816 1017 848 1018 849 1018 817 1017 765 1016 818 1019 766 1020 850 1021 851 1021 767 1020 819 1019 820 1022 768 1023 852 1024 853 1024 769 1023 821 1022 854 1025 822 1026 770 1027 771 1027 823 1026 855 1025 824 1028 856 1029 772 1030 773 1030 857 1029 825 1028 774 1031 826 1032 858 1033 859 1033 827 1032 775 1031 860 1034 776 1035 828 1036 829 1036 777 1035 861 1034 830 1037 862 1038 831 1039 832 1039 863 1038 833 1037 836 1040 831 1041 862 1042 863 1042 832 1041 837 1040 838 1043 864 1044 806 1045 807 1045 865 1044 839 1043 840 1046 866 1047 808 1048 809 1048 867 1047 841 1046 810 1049 842 1050 868 1051 869 1051 843 1050 811 1049 812 1052 870 1053 844 1054 845 1054 871 1053 813 1052 846 1055 814 1056 872 1057 873 1057 815 1056 847 1055 848 1058 816 1059 874 1060 875 1060 817 1059 849 1058 876 1061 818 1062 850 1063 851 1063 819 1062 877 1061 878 1064 820 1065 852 1066 853 1066 821 1065 879 1064 854 1067 880 1068 822 1069 823 1069 881 1068 855 1067 824 1070 882 1071 856 1072 857 1072 883 1071 825 1070 858 1073 826 1074 884 1075 885 1075 827 1074 859 1073 886 1076 860 1077 828 1078 829 1078 861 1077 887 1076 838 1079 888 1080 864 1081 865 1081 889 1080 839 1079 890 1082 840 1083 891 1084 892 1084 841 1083 893 1082 890 1085 866 1086 840 1087 841 1087 867 1086 893 1085 842 1088 894 1089 868 1090 869 1090 895 1089 843 1088 896 1091 844 1092 870 1093 871 1093 845 1092 897 1091 898 1094 846 1095 872 1096 873 1096 847 1095 899 1094 898 1097 900 1098 846 1099 847 1099 901 1098 899 1097 848 1100 874 1101 902 1102 903 1102 875 1101 849 1100 904 1103 876 1104 850 1105 851 1105 877 1104 905 1103 906 1106 852 1107 907 1108 908 1108 853 1107 909 1106 878 1109 852 1110 906 1111 909 1111 853 1110 879 1109 910 1112 880 1113 854 1114 855 1114 881 1113 911 1112 882 1115 912 1116 856 1117 857 1117 913 1116 883 1115 858 1118 884 1119 914 1120 915 1120 885 1119 859 1118 858 1121 914 1122 916 1123 917 1123 915 1122 859 1121 918 1124 860 1125 886 1126 887 1126 861 1125 919 1124 920 1127 921 1128 922 1129 923 1129 924 1128 925 1127 890 1130 926 1131 866 1132 867 1132 927 1131 893 1130 868 1133 894 1134 928 1135 929 1135 895 1134 869 1133 930 1136 896 1137 870 1138 871 1138 897 1137 931 1136 898 1139 872 1140 926 1141 927 1141 873 1140 899 1139 932 1142 933 1143 934 1144 935 1144 936 1143 937 1142 938 1145 939 1146 940 1147 941 1147 942 1146 943 1145 944 1148 878 1149 906 1150 909 1150 879 1149 945 1148 910 1151 946 1152 880 1153 881 1153 947 1152 911 1151 882 1154 948 1155 912 1156 913 1156 949 1155 883 1154 884 1157 944 1158 914 1159 915 1159 945 1158 885 1157 950 1160 951 1161 952 1162 953 1162 954 1161 955 1160 920 1163 956 1164 921 1165 924 1165 957 1164 925 1163 890 1166 958 1167 926 1168 927 1168 959 1167 893 1166 960 1169 961 1170 962 1171 963 1171 964 1170 965 1169 961 1172 966 1173 967 1174 968 1174 969 1173 964 1172 958 1175 898 1176 926 1177 927 1177 899 1176 959 1175 932 1178 970 1179 933 1180 936 1180 971 1179 937 1178 972 1181 939 1182 938 1183 943 1183 942 1182 973 1181 944 1184 906 1185 974 1186 975 1186 909 1185 945 1184 976 1187 977 1188 978 1189 979 1189 980 1188 981 1187 982 1190 978 1191 983 1192 984 1192 979 1191 985 1190 914 1193 944 1194 974 1195 975 1195 945 1194 915 1193 950 1196 952 1197 986 1198 987 1198 953 1197 955 1196 956 1199 988 1200 921 1201 924 1201 989 1200 957 1199 962 1202 961 1203 990 1204 991 1204 964 1203 963 1202 990 1205 961 1206 967 1207 968 1207 964 1206 991 1205 988 1208 970 1209 932 1210 937 1210 971 1209 989 1208 972 1211 992 1212 939 1213 942 1213 993 1212 973 1211 994 1214 976 1215 978 1216 979 1216 981 1215 995 1214 994 1217 978 1218 982 1219 985 1219 979 1218 995 1217 986 1220 952 1221 992 1222 993 1222 953 1221 987 1220 956 1223 996 1224 988 1225 989 1225 997 1224 957 1223 988 1226 996 1227 970 1228 971 1228 997 1227 989 1226 972 1229 998 1230 992 1231 993 1231 999 1230 973 1229 986 1232 992 1233 998 1234 999 1234 993 1233 987 1232</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID341\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID342\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID346\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID354\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID352\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID353\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID352\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"288\" source=\"#ID356\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"864\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID356\">-0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035627 -0.3378135984617037 -1.272300980758927</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID353\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"288\" source=\"#ID357\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"864\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID357\">-0.9999410261811262 -1.189599814927649e-005 -0.01086020341990315 -0.9999410269663441 -0.002736872445651152 -0.01050962029330042 -0.9999410263908806 7.648229374381802e-005 -0.01085992130776995 -0.9999410267352775 -0.00282230173442009 -0.01048702362534358 0.9999410267352775 0.00282230173442009 0.01048702362534358 0.9999410261811262 1.189599814927649e-005 0.01086020341990315 0.9999410269663441 0.002736872445651152 0.01050962029330042 0.9999410263908806 -7.648229374381802e-005 0.01085992130776995 -0.9999410251909873 0.002884647210172477 -0.01047019343041532 -0.9999410250023675 0.002799366906628021 -0.01049333417637169 0.9999410251909873 -0.002884647210172477 0.01047019343041532 0.9999410250023675 -0.002799366906628021 0.01049333417637169 9.286956521859729e-019 -0.2567189364859594 -0.9664861031848921 -5.715048115234753e-019 0.002173823798311303 -0.9999976372422557 -5.715048115234815e-019 0.002173823798316985 -0.9999976372422557 9.286956521860817e-019 -0.2567189364859696 -0.9664861031848894 -9.286956521860817e-019 0.2567189364859696 0.9664861031848894 -9.286956521859729e-019 0.2567189364859594 0.9664861031848921 5.715048115234753e-019 -0.002173823798311303 0.9999976372422557 5.715048115234815e-019 -0.002173823798316985 0.9999976372422557 -0.999941027241365 -0.005363709391798363 -0.009443127715125572 -0.999941027016906 -0.005440356935925922 -0.009399202348336674 0.999941027016906 0.005440356935925922 0.009399202348336674 0.999941027241365 0.005363709391798363 0.009443127715125572 0.004942785664726246 -0.2568034608485688 -0.9664510082596376 0.003828242018622541 0.004557013776478851 -0.999982288937403 0.0038266651399871 -0.2544110204982774 -0.9670886150105025 -0.0038266651399871 0.2544110204982774 0.9670886150105025 -0.003828242018622541 -0.004557013776478851 0.999982288937403 -0.004942785664726246 0.2568034608485688 0.9664510082596376 -0.9999410238180577 0.005496359094067572 -0.009366905700582823 -0.9999410236206152 0.005419907617564657 -0.009411369824492982 0.9999410238180577 -0.005496359094067572 0.009366905700582823 0.9999410236206152 -0.005419907617564657 0.009411369824492982 1.643076813688965e-018 0.26091795302378 -0.9653609800431552 1.643076813689116e-018 0.2609179530237881 -0.9653609800431529 -1.643076813689116e-018 -0.2609179530237881 0.9653609800431529 -1.643076813688965e-018 -0.26091795302378 0.9653609800431552 0.004944863497418337 0.002079709308106825 -0.9999856114635779 0.003826725799420876 0.2632158559531372 -0.9647293762213907 -0.003826725799420876 -0.2632158559531372 0.9647293762213907 -0.004944863497418337 -0.002079709308106825 0.9999856114635779 5.715048112518241e-019 -0.4981166872421474 -0.8671100079522257 5.715048112519107e-019 -0.4981166872421416 -0.8671100079522289 -5.715048112519107e-019 0.4981166872421416 0.8671100079522289 -5.715048112518241e-019 0.4981166872421474 0.8671100079522257 -0.9999410279774628 -0.007624925862152798 -0.007733115347123785 -0.999941027776978 -0.007687610089140697 -0.007670829123266627 0.999941027776978 0.007687610089140697 0.007670829123266627 0.9999410279774628 0.007624925862152798 0.007733115347123785 0.004945237506788235 -0.498190537464372 -0.8670534775934884 0.003830007769246236 -0.4960444625889477 -0.8682886744483829 -0.003830007769246236 0.4960444625889477 0.8682886744483829 -0.004945237506788235 0.498190537464372 0.8670534775934884 -0.9999410231812367 0.007733425532157156 -0.007625240245423564 -0.9999410229394634 0.007671116821697991 -0.00768795222977871 0.9999410231812367 -0.007733425532157156 0.007625240245423564 0.9999410229394634 -0.007671116821697991 0.00768795222977871 3.714782186172493e-018 0.5018825991966418 -0.8649357528878217 3.714782186172491e-018 0.5018825991966421 -0.8649357528878214 -3.714782186172491e-018 -0.5018825991966421 0.8649357528878214 -3.714782186172493e-018 -0.5018825991966418 0.8649357528878217 0.004941675560377144 0.2608252386265301 -0.9653733861765972 0.003821063636068529 0.5039417767426235 -0.8637291734833188 -0.003821063636068529 -0.5039417767426235 0.8637291734833188 -0.004941675560377144 -0.2608252386265301 0.9653733861765972 -1.143009550785445e-018 -0.7055662686997609 -0.7086439447798146 -1.143009550785445e-018 -0.7055662686997598 -0.7086439447798156 1.143009550785445e-018 0.7055662686997598 0.7086439447798156 1.143009550785445e-018 0.7055662686997609 0.7086439447798146 -0.9999410273711995 -0.009366649538182812 -0.005496149220936206 -0.9999410270511003 -0.009411083689174002 -0.005419771562170325 0.9999410270511003 0.009411083689174002 0.005419771562170325 0.9999410273711995 0.009366649538182812 0.005496149220936206 0.004947190279231937 -0.705623059879875 -0.7085701254456779 0.003831559424319163 -0.7038698595571158 -0.7103186186208439 -0.003831559424319163 0.7038698595571158 0.7103186186208439 -0.004947190279231937 0.705623059879875 0.7085701254456779 -0.9999410254789244 0.009443272316692088 -0.005363783376497059 -0.9999410251117098 0.009399334675645549 -0.00544047848980481 0.9999410254789244 -0.009443272316692088 0.005363783376497059 0.9999410251117098 -0.009399334675645549 0.00544047848980481 4.000533201430981e-018 0.7086421448071734 -0.7055680765192605 4.00053320143097e-018 0.7086421448071717 -0.7055680765192622 -4.00053320143097e-018 -0.7086421448071717 0.7055680765192622 -4.000533201430981e-018 -0.7086421448071734 0.7055680765192605 0.004938464558228079 0.5017959577429818 -0.8649719234522071 0.003824929807736708 0.7103168903995655 -0.7038716396652572 -0.003824929807736708 -0.7103168903995655 0.7038716396652572 -0.004938464558228079 -0.5017959577429818 0.8649719234522071 -4.572041747584274e-018 -0.864936467361332 -0.5018813678833869 -4.572041747584255e-018 -0.8649364673613317 -0.5018813678833874 4.572041747584274e-018 0.864936467361332 0.5018813678833869 4.572041747584255e-018 0.8649364673613317 0.5018813678833874 -0.9999410254124463 -0.01047018167537675 -0.00288461310922097 -0.9999410251383567 -0.01049332216834374 -0.002799363342558378 0.9999410251383567 0.01049332216834374 0.002799363342558378 0.9999410254124463 0.01047018167537675 0.00288461310922097 0.003832821996489258 -0.8637292188850311 -0.5039416096332962 0.004949545639221747 -0.8649707823906792 -0.5017978154679645 -0.004949545639221747 0.8649707823906792 0.5017978154679645 -0.003832821996489258 0.8637292188850311 0.5039416096332962 -0.9999410277040745 0.01050954553455601 -0.0027368899825801 -0.9999410274483728 0.01048696668360297 -0.002822260666456722 0.9999410277040745 -0.01050954553455601 0.0027368899825801 0.9999410274483728 -0.01048696668360297 0.002822260666456722 5.715048312027202e-019 0.8671086552386754 -0.4981190420072052 5.715048312025381e-019 0.8671086552386785 -0.4981190420071999 -5.715048312027202e-019 -0.8671086552386754 0.4981190420072052 -5.715048312025381e-019 -0.8671086552386785 0.4981190420071999 0.0049414496731202 0.7085678671176957 -0.7056253678570574 0.003820269720511365 0.8682920451375475 -0.4960386374972395 -0.003820269720511365 -0.8682920451375475 0.4960386374972395 -0.0049414496731202 -0.7085678671176957 0.7056253678570574 -7.429561417819622e-018 -0.9653613948153605 -0.2609164184181239 -7.429561417819627e-018 -0.9653613948153605 -0.2609164184181246 7.429561417819622e-018 0.9653613948153605 0.2609164184181239 7.429561417819627e-018 0.9653613948153605 0.2609164184181246 -0.9999410239817562 -0.01086014318859406 -7.647378754804853e-005 -0.9999410236950654 -0.0108604323189624 1.189578101152491e-005 0.9999410236950654 0.0108604323189624 -1.189578101152491e-005 0.9999410239817562 0.01086014318859406 7.647378754804853e-005 0.003828924557667887 -0.9647294463450653 -0.2632155669626615 0.004947196804022776 -0.9653740421109739 -0.2608227061858341 -0.004947196804022776 0.9653740421109739 0.2608227061858341 -0.003828924557667887 0.9647294463450653 0.2632155669626615 -0.9999410275599662 0.01085981393770593 7.644316398962921e-005 -0.9999410273536835 0.01086009544374367 -1.190852621266681e-005 0.9999410275599662 -0.01085981393770593 -7.644316398962921e-005 0.9999410273536835 -0.01086009544374367 1.190852621266681e-005 2.286020727136626e-018 0.9664860372523969 -0.2567191847060875 2.28602072713672e-018 0.9664860372523976 -0.2567191847060854 -2.286020727136626e-018 -0.9664860372523969 0.2567191847060875 -2.28602072713672e-018 -0.9664860372523976 0.2567191847060854 0.004937611921748164 0.8670557886269709 -0.4981865909445694 0.003827393334498319 0.9670875751500726 -0.2544149623167159 -0.003827393334498319 -0.9670875751500726 0.2544149623167159 -0.004937611921748164 -0.8670557886269709 0.4981865909445694 -5.143545129757725e-018 -0.9999976392143629 -0.002172916404493806 -5.14354512975772e-018 -0.9999976392143629 -0.002172916404493386 5.143545129757725e-018 0.9999976392143629 0.002172916404493806 5.14354512975772e-018 0.9999976392143629 0.002172916404493386 -0.999941022673983 -0.01048738397334414 0.002822401655441478 -0.999941022932187 -0.01050997881948693 0.002736969591659315 0.999941022673983 0.01048738397334414 -0.002822401655441478 0.999941022932187 0.01050997881948693 -0.002736969591659315 0.003823753939118948 -0.9999822999605859 -0.004558362792749011 0.00494289717588586 -0.9999856224609727 -0.002079095680684648 -0.00494289717588586 0.9999856224609727 0.002079095680684648 -0.003823753939118948 0.9999822999605859 0.004558362792749011 -0.9999410261363435 0.01049322892617458 0.002799356372282648 -0.9999410263259161 0.01047008550038063 0.002884645539441912 0.9999410263259161 -0.01047008550038063 -0.002884645539441912 0.9999410261363435 -0.01049322892617458 -0.002799356372282648 8.00106323387303e-018 0.9999976415480206 0.002171842166549161 8.001063233873028e-018 0.9999976415480205 0.002171842166550713 -8.00106323387303e-018 -0.9999976415480206 -0.002171842166549161 -8.001063233873028e-018 -0.9999976415480205 -0.002171842166550713 0.004943655417316188 0.9664498920219311 -0.2568076449055063 0.003820960518357111 0.9999823146921165 0.004557473391502327 -0.003820960518357111 -0.9999823146921165 -0.004557473391502327 -0.004943655417316188 -0.9664498920219311 0.2568076449055063 -6.858057229063156e-018 -0.966486022918216 0.2567192386708286 -6.858057229063177e-018 -0.9664860229182158 0.2567192386708294 6.858057229063156e-018 0.966486022918216 -0.2567192386708286 6.858057229063177e-018 0.9664860229182158 -0.2567192386708294 -0.9999410247043286 -0.009399388050470537 0.005440461150824826 -0.9999410247948612 -0.009443327762755185 0.005363813286095222 0.9999410247043286 0.009399388050470537 -0.005440461150824826 0.9999410247948612 0.009443327762755185 -0.005363813286095222 0.003820755532216115 -0.9670893318392673 0.2544083844330651 0.004936272458468085 -0.9664516804695458 0.2568010563292271 -0.004936272458468085 0.9664516804695458 -0.2568010563292271 -0.003820755532216115 0.9670893318392673 -0.2544083844330651 -0.9999410253685213 0.009411196694760312 0.005419885766598052 -0.9999410256117496 0.009366813524850533 0.005496189854195041 0.9999410256117496 -0.009366813524850533 -0.005496189854195041 0.9999410253685213 -0.009411196694760312 -0.005419885766598052 3.429033357918545e-018 0.965360504839634 0.2609197112058935 3.429033357918479e-018 0.9653605048396337 0.2609197112058954 -3.429033357918545e-018 -0.965360504839634 -0.2609197112058935 -3.429033357918479e-018 -0.9653605048396337 -0.2609197112058954 0.004934312890925137 0.9999856557972721 0.002083448102078534 0.003817824858266475 0.9647289711546364 0.263217469838665 -0.003817824858266475 -0.9647289711546364 -0.263217469838665 -0.004934312890925137 -0.9999856557972721 -0.002083448102078534 -9.144078984033087e-018 -0.867110662481631 0.4981155478507642 -9.144078984033078e-018 -0.8671106624816305 0.4981155478507653 9.144078984033087e-018 0.867110662481631 -0.4981155478507642 9.144078984033078e-018 0.8671106624816305 -0.4981155478507653 -0.9999410258568779 -0.007670953598774204 0.007687735634113518 -0.9999410261583621 -0.007733206562220277 0.007625071909699455 0.9999410258568779 0.007670953598774204 -0.007687735634113518 0.9999410261583621 0.007733206562220277 -0.007625071909699455 0.003833002046245444 -0.8682878081597345 0.4960459558311885 0.004943216518040933 -0.8670551900821601 0.4981875770852226 -0.004943216518040933 0.8670551900821601 -0.4981875770852226 -0.003833002046245444 0.8682878081597345 -0.4960459558311885 -0.9999410269360286 0.00768770199564354 0.007670846638225618 -0.9999410272625215 0.00762500257451162 0.007733132154028003 0.9999410272625215 -0.00762500257451162 -0.007733132154028003 0.9999410269360286 -0.00768770199564354 -0.007670846638225618 1.854995159308181e-033 0.8649358526966459 0.501882427187809 0 0.8649358526966459 0.5018824271878087 -1.854995159308181e-033 -0.8649358526966459 -0.501882427187809 -0 -0.8649358526966459 -0.5018824271878087 0.00493577675738415 0.965373481876459 0.2608249961133392 0.003824655911536794 0.8637325256144357 0.5039360040747896 -0.003824655911536794 -0.8637325256144357 -0.5039360040747896 -0.00493577675738415 -0.965373481876459 -0.2608249961133392 -4.000534401751088e-018 -0.7086423925289491 0.7055678277181058 -4.000534401751267e-018 -0.7086423925289535 0.7055678277181015 4.000534401751088e-018 0.7086423925289491 -0.7055678277181058 4.000534401751267e-018 0.7086423925289535 -0.7055678277181015 -0.9999410250620634 -0.005419835344405121 0.009411258293619431 -0.9999410252935886 -0.005496284586928853 0.009366791902600188 0.9999410250620634 0.005419835344405121 -0.009411258293619431 0.9999410252935886 0.005496284586928853 -0.009366791902600188 0.003839165997742563 -0.7103157740092257 0.7038726887712835 0.004956122332517188 -0.7085675751092042 0.7056255581789024 -0.004956122332517188 0.7085675751092042 -0.7056255581789024 -0.003839165997742563 0.7103157740092257 -0.7038726887712835 -0.9999410283762649 0.005440312684114939 0.009399083344507243 -0.9999410286150683 0.005363601809037949 0.00944304335864537 0.9999410286150683 -0.005363601809037949 -0.00944304335864537 0.9999410283762649 -0.005440312684114939 -0.009399083344507243 1.143010565603663e-018 0.7055700372479684 0.708640192578646 1.143010565603663e-018 0.7055700372479702 0.7086401925786443 -1.143010565603663e-018 -0.7055700372479684 -0.708640192578646 -1.143010565603663e-018 -0.7055700372479702 -0.7086401925786443 0.004943198463052079 0.8649741663126888 0.5017920449754302 0.003828663124196161 0.7038699749626737 0.7103185198801497 -0.003828663124196161 -0.7038699749626737 -0.7103185198801497 -0.004943198463052079 -0.8649741663126888 -0.5017920449754302 1.143009736610791e-018 -0.5018818905357418 0.864936164090894 1.143009736610772e-018 -0.5018818905357437 0.8649361640908929 -1.143009736610772e-018 0.5018818905357437 -0.8649361640908929 -1.143009736610791e-018 0.5018818905357418 -0.864936164090894 -0.9999410255099235 -0.002799393181743322 0.01049327880009495 -0.9999410257213326 -0.002884592461343174 0.01047015786420724 0.9999410255099235 0.002799393181743322 -0.01049327880009495 0.9999410257213326 0.002884592461343174 -0.01047015786420724 0.004945242852861994 -0.5017941450757408 0.8649729363054273 0.003824873531433713 -0.5039411440157595 0.863729525783712 -0.003824873531433713 0.5039411440157595 -0.863729525783712 -0.004945242852861994 0.5017941450757408 -0.8649729363054273 -0.9999410274584727 0.002822277484269053 0.01048696119453971 -0.9999410276338193 0.002736849005709989 0.0105095628901078 0.9999410276338193 -0.002736849005709989 -0.0105095628901078 0.9999410274584727 -0.002822277484269053 -0.01048696119453971 3.143276138552537e-018 0.4981161284324288 0.8671103289636725 3.143276138552654e-018 0.4981161284324221 0.8671103289636764 -3.143276138552654e-018 -0.4981161284324221 -0.8671103289636764 -3.143276138552537e-018 -0.4981161284324288 -0.8671103289636725 0.004946838745694068 0.705624759428811 0.7085684354157024 0.003832358652013756 0.4960426150147506 0.8682897195731909 -0.003832358652013756 -0.4960426150147506 -0.8682897195731909 -0.004946838745694068 -0.705624759428811 -0.7085684354157024 1.357324303737726e-018 -0.2609183436732318 0.9653608744582605 1.357324303737725e-018 -0.2609183436732317 0.9653608744582606 -1.357324303737726e-018 0.2609183436732318 -0.9653608744582605 -1.357324303737725e-018 0.2609183436732317 -0.9653608744582606 -0.999941026412113 -7.640534256199236e-005 0.01085991989442496 -0.999941026192585 1.181962340437762e-005 0.01086020244821933 0.999941026412113 7.640534256199236e-005 -0.01085991989442496 0.999941026192585 -1.181962340437762e-005 -0.01086020244821933 0.004940850776478425 -0.2608260194767013 0.9653731794272844 0.003825647232711771 -0.2632147699247492 0.9647296768093704 -0.003825647232711771 0.2632147699247492 -0.9647296768093704 -0.004940850776478425 0.2608260194767013 -0.9653731794272844 3.143278067595227e-018 0.2567179580818204 0.9664863630689782 3.143278067595215e-018 0.2567179580818195 0.9664863630689783 -3.143278067595227e-018 -0.2567179580818204 -0.9664863630689782 -3.143278067595215e-018 -0.2567179580818195 -0.9664863630689783 0.004950182655957406 0.4981916449537949 0.8670528130338454 0.003832480658714482 0.2544130730309406 0.9670880520216109 -0.003832480658714482 -0.2544130730309406 -0.9670880520216109 -0.004950182655957406 -0.4981916449537949 -0.8670528130338454 7.858190309334453e-019 -0.002175164586431004 0.9999976343267127 7.858190309334296e-019 -0.002175164586436765 0.9999976343267127 -7.858190309334453e-019 0.002175164586431004 -0.9999976343267127 -7.858190309334296e-019 0.002175164586436765 -0.9999976343267127 0.004940921873113072 -0.002084718490196847 0.9999856205165454 0.00382758993817654 -0.004556349394965424 0.999982294460985 -0.00382758993817654 0.004556349394965424 -0.999982294460985 -0.004940921873113072 0.002084718490196847 -0.9999856205165454 0.004946892765949841 0.2568047730411928 0.9664506385714813 -0.004946892765949841 -0.2568047730411928 -0.9664506385714813</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID355\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"672\" source=\"#ID358\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1344\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID358\">0.04500165965700093 21.74008679032289 -6.710953503131737 20.09757480725083 0.1000627746095763 20.77921931956998 -7.080247872229587 21.0145052715412 -3.540123936114794 10.5072526357706 0.02250082982850047 10.87004339516144 -3.355476751565869 10.04878740362542 0.05003138730478817 10.38960965978499 0.07534380260125198 21.74001127780054 6.933554213792702 20.05073484708986 7.196528629951274 20.99006307575776 0.1303669829364637 20.77914246233489 0.06518349146823182 10.38957123116744 0.03767190130062599 10.87000563890027 3.466777106896351 10.02536742354493 3.598264314975637 10.49503153787888 -12.86224447874705 -2.82602362217035 -10.61044593144633 2.825940115185436 -12.86224447874711 2.825940115185495 -10.61044593144635 -2.826023622170461 -5.305222965723173 -1.41301181108523 -6.431122239373526 -1.413011811085175 -5.305222965723164 1.412970057592718 -6.431122239373552 1.412970057592747 -7.109527114000408 21.00841184581578 -13.09484172604693 18.04624503956301 -6.740198911846502 20.0914898144459 -13.75322553755872 18.85673535189866 -6.876612768779358 9.42836767594933 -3.554763557000204 10.50420592290789 -6.547420863023467 9.023122519781506 -3.370099455923251 10.04574490722295 -4.327947130481451 -2.831682395143322 -10.59673960971082 2.494519512677447 -10.42638530473695 -2.905002536116535 -5.213192652368477 -1.452501268058267 -5.298369804855411 1.247259756338724 -2.163973565240725 -1.415841197571661 7.225755851347815 20.9838244764124 13.29449402849827 17.95567810305388 13.85751213473528 18.80944566772061 6.962746893829194 20.04450223255975 3.481373446914597 10.02225111627987 3.612877925673907 10.4919122382062 6.647247014249137 8.977839051526939 6.928756067367642 9.404722833860303 10.61044593144633 2.825981580630943 12.86224447874709 -2.825992595740977 12.86224447874711 2.825981580630883 10.61044593144633 -2.825992595741062 5.305222965723164 -1.412996297870531 5.305222965723164 1.412990790315471 6.431122239373543 -1.412996297870488 6.431122239373552 1.412990790315442 4.495704241856068 2.664961531154151 10.43221711685011 -2.891879332533704 10.59158413280459 2.507848288547653 5.295792066402295 1.253924144273827 5.216108558425053 -1.445939666266852 2.247852120928034 1.332480765577075 -12.86224447874696 -2.825947916893363 -10.61044593144635 2.826018007123239 -12.86224447874705 2.826018007123342 -10.6104459314464 -2.825947916893278 -5.3052229657232 -1.412973958446639 -6.431122239373481 -1.412973958446681 -5.305222965723173 1.413009003561619 -6.431122239373526 1.413009003561671 -13.77936642589772 18.84494910367416 -18.58612139372733 14.76504876496961 -13.1209585274604 18.03447090017816 -19.48876166620547 15.41386975725847 -9.744380833102735 7.706934878629236 -6.889683212948862 9.42247455183708 -9.293060696863666 7.382524382484806 -6.560479263730202 9.01723545008908 -4.388737822148864 -2.773106452524509 -10.54092074314131 2.636624072452559 -10.48787858864871 -2.764407581528367 -5.243939294324353 -1.382203790764184 -5.270460371570657 1.31831203622628 -2.194368911074432 -1.386553226262254 -4.202713000993107 -2.847316927641705 -4.496732087605833 2.554385096985135 -10.59227251636439 2.389322457437515 -5.296136258182196 1.194661228718757 -2.248366043802917 1.277192548492567 -2.101356500496554 -1.423658463820853 -4.39962318408665 2.65699263316773 -10.49869520647 2.632675389960963 -4.30720657991396 -2.74923276937071 -2.15360328995698 -1.374616384685355 -5.249347603234998 1.316337694980481 -2.199811592043325 1.328496316583865 13.88355461244131 18.79753048361999 18.74912252010727 14.63692954201792 19.57388520321002 15.34696485517103 13.32051131828215 17.94377319846329 6.660255659141074 8.971886599231643 6.941777306220654 9.398765241809993 9.374561260053634 7.318464771008959 9.786942601605007 7.673482427585516 10.61044593144633 2.826024849709162 12.86224447874698 -2.825950054937781 12.86224447874709 2.826024849709241 10.61044593144633 -2.825950054937781 5.305222965723164 -1.41297502746889 5.305222965723164 1.413012424854581 6.43112223937349 -1.41297502746889 6.431122239373543 1.41301242485462 4.442089363119534 2.720080828020509 10.48866032343423 -2.762877897270078 10.54035182778038 2.638199660780892 5.270175913890189 1.319099830390446 5.244330161717117 -1.381438948635039 2.221044681559767 1.360040414010254 4.208186488432563 -2.842408495161039 10.29981134249543 -3.080686268385806 4.491944073349894 2.559656761580416 2.245972036674947 1.279828380790208 5.149905671247714 -1.540343134192903 2.104093244216282 -1.421204247580519 -12.86224447874695 -2.82600768666433 -10.6104459314464 2.825974081103952 -12.86224447874696 2.825974081103872 -10.61044593144626 -2.826007686664317 -5.305222965723129 -1.413003843332158 -6.431122239373472 -1.413003843332165 -5.3052229657232 1.412987040551976 -6.431122239373481 1.412987040551936 -19.50998122430807 15.39728158332552 -22.81065927108942 10.47772735264272 -18.60732806298233 14.74847168761938 -23.89600667514926 10.92066306974483 -11.94800333757463 5.460331534872416 -9.754990612154034 7.698640791662758 -11.40532963554471 5.238863676321358 -9.303664031491167 7.374235843809688 -4.401245236452727 -2.76072003842497 -10.52885884924632 2.666219038494773 -10.50030773036436 -2.734916554904787 -5.250153865182178 -1.367458277452394 -5.26442942462316 1.333109519247386 -2.200622618226364 -1.380360019212485 -4.378491287508375 2.678448496215526 -10.47763817691943 2.68387523224497 -4.32864380715561 -2.728077418327247 -2.164321903577805 -1.364038709163623 -5.238819088459714 1.341937616122485 -2.189245643754187 1.339224248107763 19.5949665952896 15.33027302281989 22.92595043396204 10.32077586296335 23.95620936789129 10.83867888613798 18.77018998656991 14.62024772013757 9.385094993284955 7.310123860068783 9.797483297644799 7.665136511409947 11.46297521698102 5.160387931481677 11.97810468394564 5.41933944306899 10.61044593144633 2.826049461490449 12.86224447874695 -2.825897195613273 12.86224447874698 2.826049461490449 10.6104459314464 -2.825897195613247 5.3052229657232 -1.412948597806623 5.305222965723164 1.413024730745224 6.431122239373472 -1.412948597806637 6.43112223937349 1.413024730745224 4.430291040022829 2.732353085540517 10.50094812248903 -2.734076931910342 10.52887684445967 2.667030953698378 5.264438422229835 1.333515476849189 5.250474061244517 -1.367038465955171 2.215145520011415 1.366176542770259 4.307926494970575 -2.748488817035858 10.405646661895 -2.852414177822029 4.399105344315679 2.657705380890611 2.199552672157839 1.328852690445306 5.202823330947497 -1.426207088911014 2.153963247485287 -1.374244408517929 -10.61044593144626 2.825894995370698 -12.86224447874705 -2.82609222888195 -10.61044593144633 -2.826092228881945 -12.86224447874695 2.82589499537068 -6.431122239373472 1.41294749768534 -5.305222965723129 1.412947497685349 -6.431122239373526 -1.413046114440975 -5.305222965723164 -1.413046114440972 -23.91094160824194 10.90046653479481 -25.480634378765 5.476511141612718 -22.82558978287088 10.45753752207573 -26.67466626827587 5.683381458330269 -13.33733313413794 2.841690729165134 -11.95547080412097 5.450233267397406 -12.7403171893825 2.738255570806359 -11.41279489143544 5.228768761037864 -10.52299040682837 2.680227784306265 -10.5061668122532 -2.720959260215462 -4.407169166769916 -2.754967482411306 -2.203584583384958 -1.377483741205653 -5.253083406126599 -1.360479630107731 -5.261495203414187 1.340113892153132 -10.46739654333959 2.708275296133268 -4.338942229388606 -2.718106829418196 -4.36829736990867 2.688553868555497 -2.184148684954335 1.344276934277748 -2.169471114694303 -1.359053414709098 -5.233698271669796 1.354137648066634 23.97097124693982 10.81840765627475 25.54024123667234 5.301444883669677 26.70589873035085 5.591928469817038 22.94070725863429 10.30051085556732 11.47035362931715 5.150255427783658 11.98548562346991 5.409203828137374 12.77012061833617 2.650722441834839 13.35294936517543 2.795964234908519 12.86224447874695 2.825978074745911 10.61044593144626 -2.826022509369519 12.86224447874705 -2.826022509369585 10.6104459314464 2.825978074745936 5.3052229657232 1.412989037372968 6.431122239373472 1.412989037372956 5.305222965723129 -1.41301125468476 6.431122239373526 -1.413011254684793 4.424277996020746 2.737940602897313 10.50650593923221 -2.720529992983924 10.52299403178044 2.680668671248751 5.261497015890218 1.340334335624375 5.253252969616103 -1.360264996491962 2.212138998010373 1.368970301448656 4.378331935230842 2.678689137250321 4.328980138760369 -2.727871931832631 10.42739215514632 -2.802536852443821 5.21369607757316 -1.40126842622191 2.164490069380185 -1.363935965916316 2.189165967615421 1.339344568625161 -10.61044593144629 -2.825904747399156 -12.86224447874705 2.826069973237946 -12.86224447874705 -2.825904747399128 -10.61044593144633 2.826069973237937 -5.305222965723164 1.413034986618969 -5.305222965723146 -1.412952373699578 -6.431122239373526 1.413034986618973 -6.431122239373526 -1.412952373699564 -26.68240515494901 5.660952007740802 -26.41417937681512 0.1022416071421344 -25.48837270451038 5.454083694207584 -27.63562791825015 0.05894696417114838 -13.81781395912508 0.02947348208557419 -13.34120257747451 2.830476003870401 -13.20708968840756 0.05112080357106722 -12.74418635225519 2.727041847103792 -10.51923878233571 2.689544116394612 -10.51013701455871 -2.711656587826044 -4.411191943823121 -2.751040942821268 -2.20559597191156 -1.375520471410634 -5.255068507279354 -1.355828293913022 -5.259619391167854 1.344772058197306 -10.46055017487655 2.724534513404098 -4.345629980062277 -2.711270388115964 -4.361511748855548 2.695401719720111 -2.180755874427774 1.347700859860056 -2.172814990031139 -1.355635194057982 -5.230275087438276 1.362267256702049 26.71345124453584 5.569463238081498 26.41427114481721 -0.07904357354193686 27.6356806405396 -0.03575631278366894 25.54779300121115 5.278981513532999 12.77389650060558 2.6394907567665 13.35672562226792 2.784731619040749 13.20713557240861 -0.03952178677096843 13.8178403202698 -0.01787815639183447 12.86224447874705 2.825904567781341 10.61044593144638 -2.826080473249799 12.86224447874712 -2.826080473249835 10.61044593144626 2.825904567781381 5.305222965723129 1.412952283890691 6.431122239373526 1.41295228389067 5.305222965723191 -1.4130402366249 6.431122239373561 -1.413040236624918 4.420634634695935 2.742095775502585 10.51058248831772 -2.711008433256825 10.51942773562302 2.690148952244857 5.259713867811509 1.345074476122429 5.255291244158862 -1.355504216628413 2.210317317347967 1.371047887751293 4.368439727116307 2.688941036790968 4.339422289735736 -2.717691662957049 10.43808803086309 -2.778188160359191 5.219044015431544 -1.389094080179595 2.169711144867868 -1.358845831478525 2.184219863558154 1.344470518395484 -10.61044593144636 -2.825999911941941 -12.86224447874705 2.825969956194804 -12.86224447874705 -2.82599991194193 -10.61044593144629 2.825969956194813 -5.305222965723146 1.412984978097406 -5.305222965723181 -1.41299995597097 -6.431122239373525 1.412984978097402 -6.431122239373525 -1.412999955970965 -26.41427583939755 0.07904742262653271 -26.71345594367574 -5.569460127254565 -25.54793886530002 -5.278983127411783 -27.63572438081653 0.03575277887220742 -13.81786219040827 0.01787638943610371 -13.20713791969877 0.03952371131326635 -13.35672797183787 -2.784730063627282 -12.77396943265001 -2.639491563705891 -10.51629208656035 2.697135660162628 -10.51334257328524 -2.704033755330998 -4.414444895310771 -2.747727539370401 -2.207222447655385 -1.373863769685201 -5.256671286642618 -1.352016877665499 -5.258146043280174 1.348567830081314 -10.45521431322128 2.737626225312479 -4.351142237181914 -2.705693483194667 -4.356241648110164 2.700981605799032 -2.178120824055082 1.350490802899516 -2.175571118590957 -1.352846741597333 -5.227607156610642 1.36881311265624 26.41417720728785 -0.1022377360609355 26.68242100433726 -5.660947693454984 27.6355867030183 -0.05895047794281139 25.48830445552332 -5.454082925036311 12.74415222776166 -2.727041462518156 13.20708860364393 -0.05111886803046777 13.34121050216863 -2.830473846727492 13.81779335150915 -0.0294752389714057 12.86224447874712 2.826052632890059 10.61044593144626 -2.82592204733246 12.86224447874695 -2.825922047332492 10.61044593144638 2.826052632890082 5.305222965723191 1.413026316445041 6.431122239373561 1.41302631644503 5.305222965723129 -1.41296102366623 6.431122239373472 -1.412961023666246 4.417217997697089 2.744713837406366 10.51330575549122 -2.704166435394285 10.51606746666478 2.697041471798994 5.258033733332388 1.348520735899497 5.256652877745612 -1.352083217697142 2.208608998848545 1.372356918703183 4.361514299577717 2.695541103625278 4.345847193716227 -2.711126089156569 10.44465127714765 -2.762265554347846 5.222325638573823 -1.381132777173923 2.172923596858114 -1.355563044578285 2.180757149788859 1.347770551812639 -10.6104459314464 -2.825930766618026 -12.86224447874705 2.826041266166101 -12.86224447874691 -2.825930766618044 -10.61044593144636 2.826041266166125 -5.305222965723182 1.413020633083062 -5.3052229657232 -1.412965383309013 -6.431122239373526 1.41302063308305 -6.431122239373455 -1.412965383309022 -25.54038650199819 -5.301448515743764 -23.97101290175442 -10.81841542886811 -22.94071136809923 -10.30052099361089 -26.70590282994665 -5.591927379275652 -13.35295141497332 -2.795963689637826 -12.77019325099909 -2.650724257871882 -11.98550645087721 -5.409207714434054 -11.47035568404961 -5.150260496805447 -10.51363540807846 2.703735574337612 -10.51638582391865 -2.697463741985649 -4.417536498075453 -2.745135983150786 -2.208768249037727 -1.372567991575393 -5.258192911959323 -1.348731870992824 -5.256817704039229 1.351867787168806 -10.45023670146809 2.749406257350436 -4.356258630087857 -2.700933213781691 -4.351338578301006 2.705750945986859 -2.175669289150503 1.352875472993429 -2.178129315043929 -1.350466606890846 -5.225118350734043 1.374703128675218 25.48056850699846 -5.4765109888474 23.91084720343317 -10.90046224804534 26.67468449563205 -5.683377758338963 22.82558998950295 -10.45752259924669 11.41279499475147 -5.228761299623346 12.74028425349923 -2.7382554944237 11.95542360171659 -5.450231124022667 13.33734224781603 -2.841688879169482 12.86224447874695 2.82582712160258 10.61044593144633 -2.826129032011907 12.86224447874705 -2.82612903201192 10.61044593144626 2.825827121602595 5.305222965723129 1.412913560801298 6.431122239373472 1.41291356080129 5.305222965723164 -1.413064516005953 6.431122239373526 -1.41306451600596 4.4146364097076 2.747910046670556 10.51647688693124 -2.696955842399996 10.51353388990205 2.704223658516902 5.256766944951025 1.352111829258451 5.258238443465622 -1.348477921199998 2.2073182048538 1.373955023335278 4.35645153003614 2.70087991621506 4.351538024872898 -2.705808272904777 10.45043595056386 -2.749456155586584 5.225217975281929 -1.374728077793292 2.175769012436449 -1.352904136452389 2.17822576501807 1.35043995810753 -10.6104459314464 2.825966664539571 -12.86224447874705 -2.826015326484667 -10.61044593144629 -2.826015326484686 -12.86224447874691 2.825966664539562 -6.431122239373455 1.412983332269781 -5.3052229657232 1.412983332269786 -6.431122239373526 -1.413007663242334 -5.305222965723146 -1.413007663242343 -22.92594750356043 -10.32078231370186 -19.59503874243783 -15.33026292526798 -18.77019605670036 -14.62023762439384 -23.95624398101459 -10.83868297384684 -11.97812199050729 -5.419341486923419 -11.46297375178022 -5.160391156850932 -9.797519371218915 -7.665131462633992 -9.385098028350182 -7.310118812196918 -10.51025774098094 2.711469903985125 -10.519136567093 -2.689735512526468 -4.420343528520512 -2.741685283211833 -2.210171764260256 -1.370842641605917 -5.2595682835465 -1.344867756263234 -5.25512887049047 1.355734951992562 -10.44496489620798 2.762230408910285 -4.361795749282214 -2.695581765113801 -4.346160956957755 2.711090981816287 -2.173080478478878 1.355545490908144 -2.180897874641107 -1.3477908825569 -5.222482448103991 1.381115204455142 22.81066195964529 -10.47771276851302 19.50999293442922 -15.39728354324274 23.89591475193814 -10.92065912129808 18.60733076095817 -14.74847483060988 9.303665380479083 -7.374237415304939 11.40533097982264 -5.23885638425651 9.754996467214612 -7.698641771621368 11.94795737596907 -5.460329560649042 12.86224447874705 2.826225508708164 10.61044593144644 -2.825782753959264 12.86224447874696 -2.825782753959264 10.61044593144633 2.826225508708167 5.305222965723164 1.413112754354084 6.431122239373526 1.413112754354082 5.305222965723218 -1.412891376979632 6.431122239373481 -1.412891376979632 4.411525367456426 2.750835793495604 10.51953671685669 -2.689732105727344 10.51046993801221 2.711434912783619 5.255234969006104 1.355717456391809 5.259768358428346 -1.344866052863672 2.205762683728213 1.375417896747802 4.351468090508527 2.705965589278195 4.356556746050451 -2.700699764144963 10.4555289323171 -2.737359948082401 5.227764466158549 -1.3686799740412 2.178278373025226 -1.350349882072481 2.175734045254263 1.352982794639098 -10.61044593144629 2.825979287301716 -12.86224447874705 -2.825992100767848 -10.61044593144633 -2.825992100767798 -12.86224447874705 2.825979287301734 -6.431122239373526 1.412989643650867 -5.305222965723146 1.412989643650858 -6.431122239373526 -1.412996050383924 -5.305222965723164 -1.412996050383899 -18.74913042428991 -14.63692005507998 -13.88360005709505 -18.79752453568512 -13.32055676393909 -17.94376725013277 -19.57395918633143 -15.34695536581981 -9.786979593165713 -7.673477682909906 -9.374565212144953 -7.31846002753999 -6.941800028547526 -9.398762267842558 -6.660278381969544 -8.971883625066383 -10.50600177760153 2.720649408174218 -10.52258142340395 -2.680531625677441 -4.423865910935081 -2.737831791075885 -2.211932955467541 -1.368915895537943 -5.261290711701975 -1.34026581283872 -5.253000888800764 1.360324704087109 -10.43779947743348 2.778124667649001 -4.368203459203839 -2.688987647016699 -4.339133801438258 2.717625466155597 -2.169566900719129 1.358812733077798 -2.184101729601919 -1.344493823508349 -5.218899738716739 1.389062333824501 18.5861204811644 -14.76505058173662 13.77936550939809 -18.84494501053288 19.48876976388837 -15.41387039274213 13.12090955371273 -18.03447626008716 6.560454776856362 -9.01723813004358 9.2930602405822 -7.382525290868308 6.889682754699045 -9.422472505266441 9.744384881944184 -7.706935196371063 12.86224447874696 2.825791620706781 10.61044593144629 -2.826150515554888 12.86224447874705 -2.826150515554875 10.61044593144644 2.825791620706781 5.305222965723218 1.412895810353391 6.431122239373481 1.412895810353391 5.305222965723146 -1.413075257777444 6.431122239373526 -1.413075257777438 4.407346409174058 2.754875420631839 10.52313453471532 -2.680309961522778 10.50634358496391 2.720891158259654 5.253171792481954 1.360445579129827 5.261567267357662 -1.340154980761389 2.203673204587029 1.37743771031592 4.345862822087661 2.711004199695371 4.36172004203437 -2.695664125246008 10.46075794161088 -2.724776304844964 5.230378970805441 -1.362388152422482 2.180860021017185 -1.347832062623004 2.17293141104383 1.355502099847685 -12.86224447874695 -2.825976183967639 -10.61044593144633 2.825990416027972 -12.86224447874705 2.825990416027897 -10.61044593144638 -2.825976183967614 -5.305222965723191 -1.412988091983807 -6.431122239373472 -1.412988091983819 -5.305222965723164 1.412995208013986 -6.431122239373526 1.412995208013948 -13.29454013808028 -17.95567278723111 -7.225792948281573 -20.98382388441372 -6.962728423460445 -20.04450400512787 -13.85755824385552 -18.80944035209259 -6.928779121927762 -9.404720176046295 -6.647270069040138 -8.977836393615556 -3.612896474140786 -10.49191194220686 -3.481364211730222 -10.02225200256394 -4.430171035067845 -2.732341685834769 -10.50077901065932 2.734066663135995 -10.52875653309172 -2.667019882103738 -5.264378266545858 -1.333509941051869 -5.25038950532966 1.367033331567997 -2.215085517533923 -1.366170842917385 -4.328518097775763 2.728095874626715 -10.42692928344672 2.802797985646838 -4.378004242621763 -2.678465056738759 -2.189002121310882 -1.339232528369379 -5.21346464172336 1.401398992823419 -2.164259048887882 1.364047937313357 13.09479295026678 -18.04624987728669 7.109488848458013 -21.00842022412065 13.75322481972926 -18.85673073724269 6.740151636101647 -20.09147929057193 3.370075818050824 -10.04573964528597 6.547396475133392 -9.023124938643347 3.554744424229007 -10.50421011206032 6.876612409864629 -9.428365368621344 10.61044593144629 2.826043208161488 12.862244478747 -2.82594132410737 12.86224447874705 2.826043208161514 10.61044593144629 -2.825941324107447 5.305222965723146 -1.412970662053724 5.305222965723146 1.413021604080744 6.431122239373499 -1.412970662053685 6.431122239373526 1.413021604080757 4.401303486300014 2.760784370702243 10.52890011716264 -2.666196886704789 10.50036585142223 2.734971001562761 5.250182925711115 1.367485500781381 5.264450058581321 -1.333098443352395 2.200651743150007 1.380392185351122 4.338997338335714 2.717948747950908 4.368342022762667 -2.688678959368056 10.46744109647829 -2.708407758160335 5.233720548239147 -1.354203879080168 2.184171011381333 -1.344339479684028 2.169498669167857 1.358974373975454 -10.61044593144636 -2.826003796516174 -12.86224447874694 2.825979469314216 -12.86224447874705 -2.826003796516174 -10.61044593144638 2.825979469314233 -5.30522296572319 1.412989734657116 -5.305222965723181 -1.413001898258087 -6.431122239373472 1.412989734657108 -6.431122239373525 -1.413001898258087 -0.1303295216944846 -20.7791541441071 -7.196566260968286 -20.990062942279 -0.07540959329038582 -21.74001114445558 -6.933536276452181 -20.05073707708879 -3.466768138226091 -10.0253685385444 -0.06516476084724229 -10.38957707205355 -3.598283130484143 -10.4950314711395 -0.03770479664519291 -10.87000557222779 -4.442085949347874 -2.719981088299503 -10.48865422912526 2.762966583080145 -10.54034897368759 -2.638160548550109 -5.270174486843797 -1.319080274275055 -5.24432711456263 1.381483291540072 -2.221042974673937 -1.359990544149752 -4.39903924405151 -2.657516153234907 -4.307800004700079 2.748704857416722 -10.40551982253659 2.852631559912603 -5.202759911268297 1.426315779956301 -2.153900002350039 1.374352428708361 -2.199519622025755 -1.328758076617453 6.71090713895255 -20.09756546865577 -0.04506717194452021 -21.74008690407053 7.080210519352136 -21.01451483490556 -0.1000250353029242 -20.77923124592329 -0.05001251765146209 -10.38961562296164 3.355453569476275 -10.04878273432789 -0.0225335859722601 -10.87004345203527 3.540105259676068 -10.50725741745278 12.862244478747 2.825946327616524 10.61044593144629 -2.826051856133897 12.86224447874703 -2.826051856133904 10.61044593144629 2.82594632761644 5.305222965723146 1.41297316380822 6.431122239373499 1.412973163808262 5.305222965723146 -1.413025928066949 6.431122239373517 -1.413025928066952 4.388634374310819 2.773181238710972 10.54086775703753 -2.636542126831748 10.48777562266277 2.764482314003959 5.243887811331383 1.38224115700198 5.270433878518763 -1.318271063415874 2.19431718715541 1.386590619355486 4.328497143600641 2.728049645213909 4.378387600123009 -2.678476127130542 10.47753497153215 -2.683902847387294 5.238767485766075 -1.341951423693647 2.189193800061505 -1.339238063565271 2.164248571800321 1.364024822606955 -10.61044593144629 -2.825941511668355 -12.86224447874705 2.826010708320168 -12.86224447874705 -2.8259415116683 -10.61044593144636 2.826010708320168 -5.305222965723182 1.413005354160084 -5.305222965723146 -1.412970755834178 -6.431122239373526 1.413005354160084 -6.431122239373526 -1.41297075583415 -4.495704144051983 -2.664967449207419 -10.4322800455154 2.891766839544133 -10.59158817915015 -2.507978354408405 -5.295794089575077 -1.253989177204203 -5.216140022757697 1.445883419772067 -2.247852072025991 -1.332483724603709 -4.208366568860864 2.842306276570779 -10.30000224773623 3.080400759006474 -4.491947727247955 -2.559759000559964 -2.245973863623977 -1.279879500279982 -5.150001123868115 1.540200379503237 -2.104183284430432 1.421153138285389 12.86224447874703 2.82603951587651 10.61044593144629 -2.825944977148527 12.86224447874705 -2.825944977148583 10.61044593144629 2.826039515876513 5.305222965723146 1.413019757938257 6.431122239373517 1.413019757938255 5.305222965723146 -1.412972488574264 6.431122239373526 -1.412972488574291 4.32761740458788 2.831720453845512 10.59673143731553 -2.494209468150155 10.42605207004991 2.905243259815798 5.213026035024954 1.452621629907899 5.298365718657763 -1.247104734075077 2.16380870229394 1.415860226922756 4.399491681506321 -2.656972876258102 10.4985636977804 -2.632587427674483 4.306952304418521 2.749261829601255 2.153476152209261 1.374630914800627 5.249281848890198 -1.316293713837241 2.199745840753161 -1.328486438129051 4.496740578981384 -2.554476881970431 10.59228532888561 -2.389536449472878 4.203006248744854 2.847276271266106 2.101503124372427 1.423638135633053 5.296142664442805 -1.194768224736439 2.248370289490692 -1.277238440985215</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 0 8 8 9 9 10 8 9 0 8 2 11 12 16 13 17 14 18 13 17 12 16 15 19 3 24 20 25 1 26 20 25 3 24 21 27 24 32 25 33 26 34 9 38 30 39 31 40 30 39 9 38 8 41 13 46 34 47 14 48 34 47 13 46 35 49 38 54 39 55 25 56 42 60 15 61 12 62 15 61 42 60 43 63 21 68 46 69 20 70 46 69 21 68 47 71 50 76 26 77 51 78 24 82 38 83 25 84 24 88 26 89 50 90 31 94 54 95 55 96 54 95 31 94 30 97 35 102 58 103 34 104 58 103 35 102 59 105 62 110 63 111 39 112 62 116 39 117 38 118 66 122 43 123 42 124 43 123 66 122 67 125 47 130 70 131 46 132 70 131 47 130 71 133 74 138 51 139 75 140 50 144 51 145 74 146 55 150 78 151 79 152 78 151 55 150 54 153 59 158 82 159 58 160 82 159 59 158 83 161 86 166 87 167 63 168 86 172 63 173 62 174 67 178 90 179 91 180 90 179 67 178 66 181 71 186 94 187 70 188 94 187 71 186 95 189 75 194 98 195 99 196 75 200 99 201 74 202 79 206 102 207 103 208 102 207 79 206 78 209 82 214 106 215 107 216 106 215 82 214 83 217 110 222 111 223 87 224 86 228 110 229 87 230 114 234 90 235 115 236 90 235 114 234 91 237 95 242 118 243 94 244 118 243 95 242 119 245 98 250 122 251 123 252 98 256 123 257 99 258 103 262 126 263 127 264 126 263 103 262 102 265 107 270 130 271 131 272 130 271 107 270 106 273 134 278 135 279 111 280 110 284 134 285 111 286 138 290 115 291 139 292 115 291 138 290 114 293 118 298 142 299 143 300 142 299 118 298 119 301 122 306 146 307 147 308 122 312 147 313 123 314 126 318 150 319 127 320 150 319 126 318 151 321 131 326 154 327 155 328 154 327 131 326 130 329 158 334 159 335 135 336 134 340 158 341 135 342 162 346 139 347 163 348 139 347 162 346 138 349 143 354 166 355 167 356 166 355 143 354 142 357 146 362 170 363 171 364 146 368 171 369 147 370 151 374 174 375 150 376 174 375 151 374 175 377 155 382 178 383 179 384 178 383 155 382 154 385 182 390 183 391 159 392 158 396 182 397 159 398 162 402 186 403 187 404 186 403 162 402 163 405 167 410 190 411 191 412 190 411 167 410 166 413 170 418 194 419 195 420 170 424 195 425 171 426 175 430 198 431 174 432 198 431 175 430 199 433 179 438 202 439 203 440 202 439 179 438 178 441 206 446 207 447 183 448 182 452 206 453 183 454 187 458 210 459 211 460 210 459 187 458 186 461 191 466 214 467 215 468 214 467 191 466 190 469 194 474 218 475 219 476 194 480 219 481 195 482 199 486 222 487 198 488 222 487 199 486 223 489 203 494 226 495 227 496 226 495 203 494 202 497 230 502 231 503 207 504 206 508 230 509 207 510 234 514 211 515 210 516 211 515 234 514 235 517 215 522 238 523 239 524 238 523 215 522 214 525 242 530 218 531 243 532 219 536 218 537 242 538 223 542 246 543 222 544 246 543 223 542 247 545 226 550 250 551 227 552 250 551 226 550 251 553 254 558 255 559 231 560 230 564 254 565 231 566 258 570 234 571 259 572 234 571 258 570 235 573 262 578 238 579 263 580 238 579 262 578 239 581 266 586 243 587 267 588 266 592 242 593 243 594 247 598 263 599 246 600 263 599 247 598 262 601 250 606 270 607 271 608 270 607 250 606 251 609 274 614 275 615 255 616 254 620 274 621 255 622 278 626 259 627 279 628 259 627 278 626 258 629 282 634 267 635 283 636 266 640 267 641 282 642 271 646 278 647 279 648 278 647 271 646 270 649 286 654 283 655 275 656 286 660 275 661 274 662 282 666 283 667 286 668</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID354\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID355\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4 4 5 5 6 6 7 7 6 6 5 5 7 12 5 13 10 14 11 15 10 14 5 13 16 20 17 21 18 22 19 23 18 22 17 21 22 28 4 29 23 30 6 31 23 30 4 29 27 35 28 36 29 37 10 42 11 43 32 44 33 45 32 44 11 43 36 50 18 51 37 52 19 53 37 52 18 51 28 57 40 58 41 59 44 64 45 65 16 66 17 67 16 66 45 65 48 72 22 73 49 74 23 75 49 74 22 73 52 79 27 80 53 81 28 85 41 86 29 87 53 91 27 92 29 93 32 98 33 99 56 100 57 101 56 100 33 99 60 106 36 107 61 108 37 109 61 108 36 107 40 113 64 114 65 115 41 119 40 120 65 121 68 126 69 127 44 128 45 129 44 128 69 127 72 134 48 135 73 136 49 137 73 136 48 135 76 141 52 142 77 143 77 147 52 148 53 149 56 154 57 155 80 156 81 157 80 156 57 155 84 162 60 163 85 164 61 165 85 164 60 163 64 169 88 170 89 171 65 175 64 176 89 177 69 182 68 183 92 184 93 185 92 184 68 183 96 190 72 191 97 192 73 193 97 192 72 191 100 197 101 198 76 199 77 203 100 204 76 205 80 210 81 211 104 212 105 213 104 212 81 211 84 218 85 219 108 220 109 221 108 220 85 219 88 225 112 226 113 227 88 231 113 232 89 233 93 238 116 239 92 240 117 241 92 240 116 239 120 246 96 247 121 248 97 249 121 248 96 247 124 253 125 254 101 255 100 259 124 260 101 261 104 266 105 267 128 268 129 269 128 268 105 267 108 274 109 275 132 276 133 277 132 276 109 275 112 281 136 282 137 283 112 287 137 288 113 289 116 294 140 295 117 296 141 297 117 296 140 295 120 302 121 303 144 304 145 305 144 304 121 303 148 309 149 310 125 311 124 315 148 316 125 317 152 322 128 323 153 324 129 325 153 324 128 323 132 330 133 331 156 332 157 333 156 332 133 331 136 337 160 338 161 339 136 343 161 344 137 345 140 350 164 351 141 352 165 353 141 352 164 351 144 358 145 359 168 360 169 361 168 360 145 359 172 365 173 366 149 367 148 371 172 372 149 373 176 378 152 379 177 380 153 381 177 380 152 379 156 386 157 387 180 388 181 389 180 388 157 387 160 393 184 394 185 395 160 399 185 400 161 401 165 406 164 407 188 408 189 409 188 408 164 407 168 414 169 415 192 416 193 417 192 416 169 415 196 421 197 422 173 423 172 427 196 428 173 429 200 434 176 435 201 436 177 437 201 436 176 435 180 442 181 443 204 444 205 445 204 444 181 443 184 449 208 450 209 451 184 455 209 456 185 457 188 462 189 463 212 464 213 465 212 464 189 463 192 470 193 471 216 472 217 473 216 472 193 471 220 477 221 478 197 479 196 483 220 484 197 485 224 490 200 491 225 492 201 493 225 492 200 491 204 498 205 499 228 500 229 501 228 500 205 499 208 505 232 506 233 507 208 511 233 512 209 513 236 518 237 519 213 520 212 521 213 520 237 519 216 526 217 527 240 528 241 529 240 528 217 527 244 533 221 534 245 535 245 539 221 540 220 541 248 546 224 547 249 548 225 549 249 548 224 547 252 554 228 555 253 556 229 557 253 556 228 555 232 561 256 562 257 563 232 567 257 568 233 569 236 574 260 575 237 576 261 577 237 576 260 575 241 582 264 583 240 584 265 585 240 584 264 583 268 589 244 590 269 591 244 595 245 596 269 597 264 602 248 603 265 604 249 605 265 604 248 603 252 610 253 611 272 612 273 613 272 612 253 611 256 617 276 618 277 619 256 623 277 624 257 625 260 630 280 631 261 632 281 633 261 632 280 631 284 637 268 638 285 639 285 643 268 644 269 645 272 650 273 651 280 652 281 653 280 652 273 651 276 657 284 658 287 659 277 663 276 664 287 665 287 669 284 670 285 671</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID354\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID355\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID359\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID362\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID360\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID361\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID360\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID364\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID364\">-0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID361\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID365\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID365\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.357324008988185e-018 0.002095735273219623 -0.999997803944421 1.428762637497407e-018 0.2608439886717864 -0.9653809681021234 1.357324008988168e-018 0.002095735273213525 -0.999997803944421 1.428762637497411e-018 0.2608439886717847 -0.9653809681021238 -1.428762637497411e-018 -0.2608439886717847 0.9653809681021238 -1.357324008988185e-018 -0.002095735273219623 0.999997803944421 -1.428762637497407e-018 -0.2608439886717864 0.9653809681021234 -1.357324008988168e-018 -0.002095735273213525 0.999997803944421 5.000666824631841e-019 -0.2567918074288612 -0.9664667441963116 5.000666824631774e-019 -0.2567918074288629 -0.9664667441963111 -5.000666824631774e-019 0.2567918074288629 0.9664667441963111 -5.000666824631841e-019 0.2567918074288612 0.9664667441963116 -2.286020591985056e-018 -0.4981832167412074 -0.8670717862768821 -2.286020591985096e-018 -0.4981832167412094 -0.867071786276881 2.286020591985056e-018 0.4981832167412074 0.8670717862768821 2.286020591985096e-018 0.4981832167412094 0.867071786276881 -6.858055771993613e-018 -0.7056226073427964 -0.7085878463583424 -6.858055771993708e-018 -0.7056226073428004 -0.7085878463583386 6.858055771993708e-018 0.7056226073428004 0.7085878463583386 6.858055771993613e-018 0.7056226073427964 0.7085878463583424 -8.001070223829628e-018 -0.8649741646300232 -0.5018163952309587 -8.001070223829614e-018 -0.8649741646300241 -0.5018163952309572 8.001070223829628e-018 0.8649741646300232 0.5018163952309587 8.001070223829614e-018 0.8649741646300241 0.5018163952309572 -5.715045332456655e-019 -0.9653796265175301 -0.2608489538121138 -5.715045332456722e-019 -0.96537962651753 -0.260848953812114 5.715045332456655e-019 0.9653796265175301 0.2608489538121138 5.715045332456722e-019 0.96537962651753 0.260848953812114 2.286022406958772e-018 -0.9999977996832321 -0.002097767550154592 2.286022406958698e-018 -0.9999977996832321 -0.002097767550151775 -2.286022406958772e-018 0.9999977996832321 0.002097767550154592 -2.286022406958698e-018 0.9999977996832321 0.002097767550151775 -5.1435407892633e-018 -0.9664655322690486 0.2567963686189982 -5.143540789263351e-018 -0.9664655322690482 0.2567963686189999 5.1435407892633e-018 0.9664655322690486 -0.2567963686189982 5.143540789263351e-018 0.9664655322690482 -0.2567963686189999 -8.001071306872786e-018 -0.8670714378610992 0.498183823147125 -8.001071306872821e-018 -0.8670714378611013 0.4981838231471211 8.001071306872786e-018 0.8670714378610992 -0.498183823147125 8.001071306872821e-018 0.8670714378611013 -0.4981838231471211 -5.715047892338878e-018 -0.708586537670636 0.7056239215275657 -5.715047892338916e-018 -0.7085865376706391 0.7056239215275628 5.715047892338878e-018 0.708586537670636 -0.7056239215275657 5.715047892338916e-018 0.7085865376706391 -0.7056239215275628 -3.714781434290872e-018 -0.5018152321358096 0.8649748394008253 -3.714781434290843e-018 -0.5018152321358057 0.8649748394008278 3.714781434290872e-018 0.5018152321358096 -0.8649748394008253 3.714781434290843e-018 0.5018152321358057 -0.8649748394008278 -1.357324087236494e-018 -0.2608455302381308 0.9653805515726887 -1.357324087236548e-018 -0.2608455302381353 0.9653805515726874 1.357324087236548e-018 0.2608455302381353 -0.9653805515726874 1.357324087236494e-018 0.2608455302381308 -0.9653805515726887 5.00066824342e-019 -0.002098394659843867 0.9999977983675022 5.00066824341991e-019 -0.0020983946598471 0.9999977983675022 -5.00066824341991e-019 0.0020983946598471 -0.9999977983675022 -5.00066824342e-019 0.002098394659843867 -0.9999977983675022 1.285886092699162e-018 0.2567924015669348 0.9664665863326504 1.285886092699151e-018 0.2567924015669318 0.966466586332651 -1.285886092699162e-018 -0.2567924015669348 -0.9664665863326504 -1.285886092699151e-018 -0.2567924015669318 -0.966466586332651 -2.000267021076344e-018 0.4981821975151394 0.8670723718807943 -2.000267021076362e-018 0.4981821975151401 0.867072371880794 2.000267021076344e-018 -0.4981821975151394 -0.8670723718807943 2.000267021076362e-018 -0.4981821975151401 -0.867072371880794 -4.000536746314618e-018 0.7056247595919799 0.7085857031092008 -4.00053674631458e-018 0.7056247595919819 0.7085857031091989 4.00053674631458e-018 -0.7056247595919819 -0.7085857031091989 4.000536746314618e-018 -0.7056247595919799 -0.7085857031092008 4.204657661605452e-033 0.8649761689145237 0.5018129404568533 -1.21193073775685e-032 0.8649761689145231 0.5018129404568542 1.21193073775685e-032 -0.8649761689145231 -0.5018129404568542 -4.204657661605452e-033 -0.8649761689145237 -0.5018129404568533 2.286019992337455e-018 0.9653804430920453 0.2608459317210191 2.286019992337455e-018 0.9653804430920455 0.2608459317210175 -2.286019992337455e-018 -0.9653804430920455 -0.2608459317210175 -2.286019992337455e-018 -0.9653804430920453 -0.2608459317210191 4.000536773496116e-018 0.9999978094868985 0.002093088962490353 4.00053677349617e-018 0.9999978094868985 0.002093088962486192 -4.00053677349617e-018 -0.9999978094868985 -0.002093088962486192 -4.000536773496116e-018 -0.9999978094868985 -0.002093088962490353 7.429555745771746e-018 0.9664663526289716 -0.256793281134948 7.429555745771715e-018 0.9664663526289721 -0.2567932811349458 -7.429555745771715e-018 -0.9664663526289721 0.2567932811349458 -7.429555745771746e-018 -0.9664663526289716 0.256793281134948 8.001073065904097e-018 0.8670738131462032 -0.498179689024054 8.001073065904117e-018 0.8670738131462042 -0.4981796890240521 -8.001073065904117e-018 -0.8670738131462042 0.4981796890240521 -8.001073065904097e-018 -0.8670738131462032 0.498179689024054 2.286020065195515e-018 0.7085865942299627 -0.705623864730766 2.286020065195486e-018 0.7085865942299621 -0.7056238647307667 -2.286020065195486e-018 -0.7085865942299621 0.7056238647307667 -2.286020065195515e-018 -0.7085865942299627 0.705623864730766 -5.715046975223761e-019 0.5018142835855971 -0.8649753897016226 -5.715046975224879e-019 0.5018142835856045 -0.8649753897016184 5.715046975223761e-019 -0.5018142835855971 0.8649753897016226 5.715046975224879e-019 -0.5018142835856045 0.8649753897016184</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID363\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"288\" source=\"#ID366\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID366\">27.57592606178605 5.763926047288433 27.54501506067751 -5.854844720127505 28.53273433475351 -0.04706980378245257 27.52202780079212 -0.04706980378244907 26.59974397119641 5.558144204924854 24.73998964194365 11.18211185132277 23.86467605623466 10.78457791436985 20.2179874206012 15.8382655546944 19.50326776451671 15.27607259060124 14.31814331951038 19.41505375671623 13.81280957653182 18.72650799807924 7.442587205730431 21.66875226978101 7.180994110594869 20.90077510041938 0.05980164344527855 22.44574392129143 0.05980164344524746 21.65067841029049 -7.326991595764483 21.69310909336947 -7.065454819865953 20.9251390127225 -13.70921071502846 18.77357233764413 -14.21458200416499 19.46211927773357 -19.41873183844568 15.34262262532737 -20.1333673911358 15.90482031523034 -23.80492209641044 10.86610404027797 -24.68017861195908 11.26362616270643 -26.5687879146979 5.649065240668816 -27.54503608652599 5.854853581020853 -27.52206684879615 0.04706611174358209 26.56880593685397 -5.64906110558527 24.68013205472282 -11.26361907399176 23.80482748009175 -10.8660993144682 20.13340493729391 -15.90483331120719 19.4187408495236 -15.34262380677985 14.21454295616055 -19.46214172533002 13.70921071502838 -18.77356879328679 7.327029141922628 -21.6931232707988 7.065417273707942 -20.92514846434208 -0.05986734922203147 -22.44576046162567 -0.05986734922203591 -21.65067841029053 -7.442633762966584 -21.66874754397123 -7.181031656752985 -20.90077510041939 -13.81285613376801 -18.72650327226948 -14.3181898767466 -19.4150537567162 -19.50334285683298 -15.27606432043412 -20.21802346491327 -15.83825019581263 -23.86471360239281 -10.78458382163206 -24.74002718810177 -11.18212484729964 -26.59974397119644 -5.55814125129378 -27.57601917625835 -5.763931954550666 -28.53282744922561 0.04706611174357161 -14.2664137246128 0.0235330558717858 -13.77251804326299 2.927426790510427 -13.78800958812917 -2.881965977275333 -13.76103342439808 0.02353305587179104 -13.29987198559822 -2.77907062564689 -12.37001359405088 -5.591062423649821 -11.9323568011964 -5.39229191081603 -10.10901173245664 -7.919125097906314 -9.751671428416488 -7.638032160217059 -7.159094938373302 -9.707526878358099 -6.906428066884002 -9.363251636134741 -3.721316881483292 -10.83437377198561 -3.590515828376493 -10.4503875502097 -0.02993367461101796 -10.82533920514526 -0.02993367461101574 -11.22288023081283 3.532708636853971 -10.46257423217104 3.663514570961314 -10.8465616353994 6.854605357514191 -9.386784396643396 7.107271478080275 -9.731070862665009 9.709370424761799 -7.671311903389926 10.06670246864696 -7.952416655603594 11.90241374004588 -5.433049657234099 12.34006602736141 -5.631809536995879 13.28440296842699 -2.824530552792635 13.76101390039606 -0.02353490189122454 13.77250753033876 -2.927422360063753 -13.28439395734895 2.824532620334408 -12.34008930597954 5.631813081353213 -11.90246104820522 5.433052020138987 -10.0666836955679 7.95241015761517 -9.709365919222838 7.671311312663686 -7.107291002082496 9.731059638866784 -6.854605357514229 9.386786168822065 -3.663495797882241 10.84655454668474 -3.532727409932976 10.46256950636125 0.02990082172262373 10.82533920514525 0.02990082172263927 11.22287196064572 3.590497055297435 10.45038755020969 3.721293602865216 10.8343761348905 6.906404788265909 9.363253999039621 7.159071659755192 9.707526878358115 9.751633882258355 7.638036295300619 10.1089937103006 7.919132777347199 11.93233802811733 5.392288957184925 12.36999482097183 5.591055925661383 13.2998719855982 2.779072102462427 13.78796303089303 2.881963023644217 14.26636716737676 -0.02353490189122628 12.86224447874703 2.929743190342062 15.27491705001244 -2.92979227890684 15.2749170500126 2.929743190342119 12.86224447874696 -2.929792278906809 6.431122239373481 -1.464896139453405 6.431122239373517 1.464871595171031 7.637458525006222 -1.46489613945342 7.637458525006302 1.46487159517106 -15.27491705001257 -2.929731850741423 -12.86224447874703 2.929750167992304 -15.2749170500126 2.929750167992251 -12.86224447874705 -2.92973185074145 -6.431122239373526 -1.464865925370725 -7.637458525006284 -1.464865925370711 -6.431122239373517 1.464875083996152 -7.637458525006302 1.464875083996125 -12.86224447874709 -2.929852871110114 -15.27491705001257 2.929721881732551 -15.27491705001264 -2.929852871110166 -12.86224447874705 2.929721881732527 -6.431122239373525 1.464860940866263 -6.431122239373543 -1.464926435555057 -7.637458525006283 1.464860940866276 -7.637458525006319 -1.464926435555083 -15.27491705001234 -2.929677555424733 -12.86224447874709 2.929823033031287 -15.27491705001264 2.929823033031245 -12.86224447874695 -2.929677555424782 -6.431122239373472 -1.464838777712391 -7.637458525006169 -1.464838777712367 -6.431122239373543 1.464911516515643 -7.63745852500632 1.464911516515623 -12.86224447874695 2.929697425929892 -15.2749170500125 -2.929855373115951 -12.86224447874691 -2.929855373116002 -15.27491705001234 2.929697425929927 -7.637458525006169 1.464848712964963 -6.431122239373472 1.464848712964946 -7.637458525006249 -1.464927686557976 -6.431122239373455 -1.464927686558001 -12.86224447874709 -2.929773314130085 -15.2749170500125 2.929742869038943 -15.27491705001257 -2.929773314130076 -12.86224447874691 2.92974286903891 -6.431122239373455 1.464871434519455 -6.431122239373543 -1.464886657065043 -7.637458525006249 1.464871434519471 -7.637458525006284 -1.464886657065038 -12.86224447874709 2.929540399646413 -15.27491705001243 -2.930000664061414 -12.86224447874695 -2.930000664061421 -15.27491705001257 2.929540399646405 -7.637458525006284 1.464770199823202 -6.431122239373543 1.464770199823206 -7.637458525006213 -1.465000332030707 -6.431122239373472 -1.465000332030711 -12.86224447874695 -2.929581822242644 -15.27491705001243 2.929960781087207 -15.27491705001232 -2.929581822242648 -12.86224447874695 2.9299607810872 -6.431122239373472 1.4649803905436 -6.431122239373472 -1.464790911121322 -7.637458525006213 1.464980390543604 -7.63745852500616 -1.464790911121324 -12.86224447874698 -2.929795632432642 -15.27491705001232 2.929734008047276 -15.27491705001264 -2.929795632432599 -12.86224447874695 2.929734008047279 -6.431122239373472 1.46486700402364 -6.43112223937349 -1.464897816216321 -7.63745852500616 1.464867004023638 -7.63745852500632 -1.4648978162163 -12.86224447874698 2.929854278460752 -15.27491705001246 -2.929664031079308 -12.86224447874705 -2.929664031079275 -15.27491705001264 2.929854278460836 -7.63745852500632 1.464927139230418 -6.43112223937349 1.464927139230376 -7.637458525006231 -1.464832015539654 -6.431122239373526 -1.464832015539638 -12.86224447874709 -2.929746866326544 -15.27491705001246 2.929799501924643 -15.2749170500126 -2.929746866326596 -12.86224447874705 2.929799501924695 -6.431122239373526 1.464899750962348 -6.431122239373543 -1.464873433163272 -7.637458525006231 1.464899750962321 -7.637458525006302 -1.464873433163298 -15.2749170500125 -2.92977425536968 -12.86224447874709 2.929742564000939 -15.2749170500126 2.929742564000883 -12.86224447874695 -2.929774255369613 -6.431122239373472 -1.464887127684806 -7.637458525006249 -1.46488712768484 -6.431122239373543 1.46487128200047 -7.637458525006302 1.464871282000442 -15.27491705001246 -2.929781790797626 -12.86224447874695 2.929741567953739 -15.2749170500125 2.92974156795366 -12.86224447874693 -2.929781790797601 -6.431122239373464 -1.4648908953988 -7.637458525006231 -1.464890895398813 -6.431122239373472 1.464870783976869 -7.637458525006249 1.46487078397683 12.86224447874707 2.929790045178396 15.27491705001246 -2.929772829085463 15.27491705001257 2.929790045178342 12.86224447874693 -2.929772829085486 6.431122239373464 -1.464886414542743 6.431122239373535 1.464895022589198 7.637458525006231 -1.464886414542731 7.637458525006284 1.464895022589171 12.86224447874705 2.929757835224654 15.27491705001257 -2.929758053031452 15.2749170500126 2.929757835224672 12.86224447874707 -2.9297580530314 6.431122239373535 -1.4648790265157 6.431122239373526 1.464878917612327 7.637458525006284 -1.464879026515726 7.637458525006302 1.464878917612336 15.2749170500125 2.929803538710692 12.86224447874705 -2.929750667340226 15.2749170500126 -2.929750667340216 12.86224447874705 2.929803538710713 6.431122239373526 1.464901769355357 7.637458525006249 1.464901769355346 6.431122239373526 -1.464875333670113 7.637458525006302 -1.464875333670108 15.27491705001246 2.929593042074761 12.86224447874705 -2.92993527925525 15.2749170500125 -2.929935279255278 12.86224447874705 2.929593042074726 6.431122239373526 1.464796521037363 7.637458525006231 1.464796521037381 6.431122239373526 -1.464967639627625 7.637458525006249 -1.464967639627639 15.27491705001232 2.929842954384168 12.86224447874705 -2.9296825896425 15.27491705001246 -2.929682589642478 12.86224447874696 2.929842954384198 6.431122239373481 1.464921477192099 7.63745852500616 1.464921477192084 6.431122239373526 -1.46484129482125 7.637458525006231 -1.464841294821239 15.27491705001232 -2.929740962824745 12.86224447874705 2.92978013852247 12.86224447874696 -2.929740962824737 15.2749170500125 2.929780138522509 7.637458525006249 1.464890069261254 7.63745852500616 -1.464870481412373 6.431122239373526 1.464890069261235 6.431122239373481 -1.464870481412369 15.2749170500125 -2.9299561138927 12.862244478747 2.929584292566244 12.86224447874705 -2.929956113892731 15.27491705001248 2.92958429256624 7.63745852500624 1.46479214628312 7.637458525006249 -1.46497805694635 6.431122239373499 1.464792146283122 6.431122239373526 -1.464978056946366 15.27491705001248 -2.929568316003488 12.86224447874695 2.929938126060063 12.862244478747 -2.929568316003465 15.27491705001243 2.929938126060052 7.637458525006213 1.464969063030026 7.63745852500624 -1.464784158001744 6.431122239373472 1.464969063030032 6.431122239373499 -1.464784158001733 15.27491705001243 -2.929777731100098 12.86224447874698 2.929762392715941 12.86224447874695 -2.929777731100067 15.27491705001244 2.929762392715948 7.637458525006222 1.464881196357974 7.637458525006213 -1.464888865550049 6.43112223937349 1.464881196357971 6.431122239373472 -1.464888865550033 12.86224447874698 2.929710500811676 15.27491705001244 -2.929833042641431 15.27491705001246 2.929710500811587 12.86224447874698 -2.929833042641436 6.43112223937349 -1.464916521320718 6.43112223937349 1.464855250405838 7.637458525006222 -1.464916521320715 7.637458525006231 1.464855250405794 15.27491705001244 2.92982644805314 12.86224447874698 -2.929692188965083 15.27491705001246 -2.929692188965185 12.86224447874696 2.929826448053173 6.431122239373481 1.464913224026587 7.637458525006222 1.46491322402657 6.43112223937349 -1.464846094482541 7.637458525006231 -1.464846094482593</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 1 1 26 26 27 27 26 26 1 1 3 3 27 27 26 26 28 28 27 27 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 25 25 46 46 25 25 24 24 46 46 24 24 47 47 96 96 97 97 98 98 97 97 96 96 99 99 104 104 96 105 98 106 96 105 104 104 105 107 108 112 104 113 109 114 104 113 108 112 105 115 112 120 108 121 109 122 108 121 112 120 113 123 113 128 116 129 117 130 116 129 113 128 112 131 120 136 116 137 121 138 116 137 120 136 117 139 120 144 124 145 125 146 124 145 120 144 121 147 128 152 124 153 129 154 124 153 128 152 125 155 132 160 129 161 133 162 129 161 132 160 128 163 132 168 136 169 137 170 136 169 132 168 133 171 140 176 136 177 141 178 136 177 140 176 137 179 144 184 140 185 141 186 140 185 144 184 145 187 148 192 145 193 144 194 145 193 148 192 149 195 152 200 148 201 153 202 148 201 152 200 149 203 156 208 153 209 157 210 153 209 156 208 152 211 160 216 156 217 157 218 156 217 160 216 161 219 164 224 161 225 160 226 161 225 164 224 165 227 168 232 165 233 164 234 165 233 168 232 169 235 168 240 172 241 169 242 172 241 168 240 173 243 173 248 176 249 172 250 176 249 173 248 177 251 177 256 180 257 176 258 180 257 177 256 181 259 181 264 184 265 180 266 184 265 181 264 185 267 188 272 185 273 189 274 185 273 188 272 184 275 97 280 188 281 189 282 188 281 97 280 99 283</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID362\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID363\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">48 48 49 49 50 50 49 49 51 51 50 50 51 51 52 52 50 50 50 50 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 58 58 60 60 59 59 60 60 61 61 59 59 59 59 61 61 62 62 61 61 63 63 62 62 62 62 63 63 64 64 63 63 65 65 64 64 64 64 65 65 66 66 65 65 67 67 66 66 66 66 67 67 68 68 67 67 69 69 68 68 68 68 69 69 70 70 69 69 71 71 70 70 72 72 73 73 71 71 70 70 71 71 73 73 51 51 49 49 74 74 49 49 75 75 74 74 74 74 75 75 76 76 75 75 77 77 76 76 76 76 77 77 78 78 77 77 79 79 78 78 78 78 79 79 80 80 79 79 81 81 80 80 80 80 81 81 82 82 82 82 81 81 83 83 81 81 84 84 83 83 83 83 84 84 85 85 84 84 86 86 85 85 85 85 86 86 87 87 86 86 88 88 87 87 87 87 88 88 89 89 88 88 90 90 89 89 89 89 90 90 91 91 90 90 92 92 91 91 91 91 92 92 93 93 92 92 94 94 93 93 93 93 94 94 72 72 72 72 94 94 73 73 95 95 73 73 94 94 100 100 101 101 102 102 103 103 102 102 101 101 106 108 107 109 101 110 103 111 101 110 107 109 106 116 110 117 107 118 111 119 107 118 110 117 114 124 115 125 110 126 111 127 110 126 115 125 115 132 114 133 118 134 119 135 118 134 114 133 119 140 122 141 118 142 123 143 118 142 122 141 123 148 122 149 126 150 127 151 126 150 122 149 127 156 130 157 126 158 131 159 126 158 130 157 130 164 134 165 131 166 135 167 131 166 134 165 135 172 134 173 138 174 139 175 138 174 134 173 139 180 142 181 138 182 143 183 138 182 142 181 146 188 147 189 142 190 143 191 142 190 147 189 150 196 151 197 146 198 147 199 146 198 151 197 150 204 154 205 151 206 155 207 151 206 154 205 154 212 158 213 155 214 159 215 155 214 158 213 162 220 163 221 158 222 159 223 158 222 163 221 166 228 167 229 162 230 163 231 162 230 167 229 170 236 171 237 166 238 167 239 166 238 171 237 174 244 171 245 175 246 170 247 175 246 171 245 178 252 174 253 179 254 175 255 179 254 174 253 182 260 178 261 183 262 179 263 183 262 178 261 186 268 182 269 187 270 183 271 187 270 182 269 187 276 190 277 186 278 191 279 186 278 190 277 100 284 102 285 190 286 191 287 190 286 102 285</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID362\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID363\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID367\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID370\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID368\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID369\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID368\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID372\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID372\">-0.763745852500616 -1.436485524582849 0.3818088725044516 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.7637458525006249 -1.28872021610141 0.7405885836107022</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID369\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID373\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID373\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762080882819e-018 0.5017398950377737 -0.8650185418402798 5.715050599695061e-019 0.7085275831213713 -0.7056831186560921 5.715050599694446e-019 0.7085275831213729 -0.7056831186560907 1.428762080881852e-018 0.5017398950377386 -0.8650185418403001 -1.428762080881852e-018 -0.5017398950377386 0.8650185418403001 -1.428762080882819e-018 -0.5017398950377737 0.8650185418402798 -5.715050599695061e-019 -0.7085275831213713 0.7056831186560921 -5.715050599694446e-019 -0.7085275831213729 0.7056831186560907 -9.286952941388407e-019 0.2607625543991058 -0.9654029677928556 -9.286952941388763e-019 0.2607625543991116 -0.9654029677928541 9.286952941388763e-019 -0.2607625543991116 0.9654029677928541 9.286952941388407e-019 -0.2607625543991058 0.9654029677928556 -7.14381254244789e-020 0.002012725556721015 -0.9999979744658651 -7.143812542448248e-020 0.002012725556727595 -0.9999979744658651 7.14381254244789e-020 -0.002012725556721015 0.9999979744658651 7.143812542448248e-020 -0.002012725556727595 0.9999979744658651 -8.572571838953785e-019 -0.2568741755083748 -0.9664448551039488 -8.572571838953487e-019 -0.2568741755083704 -0.9664448551039501 8.572571838953487e-019 0.2568741755083704 0.9664448551039501 8.572571838953785e-019 0.2568741755083748 0.9664448551039488 -2.000267235225416e-018 -0.4982546428953812 -0.8670307438800519 -2.000267235225424e-018 -0.4982546428953847 -0.8670307438800501 2.000267235225424e-018 0.4982546428953847 0.8670307438800501 2.000267235225416e-018 0.4982546428953812 0.8670307438800519 1.045111957692991e-006 -0.7056819897722565 -0.7085287074706123 1.045111957693077e-006 -0.7056819897722642 -0.7085287074706047 -1.045111957692991e-006 0.7056819897722565 0.7085287074706123 -1.045111957693077e-006 0.7056819897722642 0.7085287074706047 1.703558339410631e-006 -0.8650181793754788 -0.5017405199373778 1.703555472269594e-006 -0.8650186691821249 -0.5017396754926639 -1.703558339410631e-006 0.8650181793754788 0.5017405199373778 -1.703555472269594e-006 0.8650186691821249 0.5017396754926639 6.584446236329073e-007 -0.9654035292207907 -0.2607604758540074 6.584446236328554e-007 -0.9654035292207932 -0.2607604758539974 -6.584446236329073e-007 0.9654035292207907 0.2607604758540074 -6.584446236328554e-007 0.9654035292207932 0.2607604758539974 -6.286553020284208e-018 -0.999997973793477 -0.002013059596886011 -6.286553020284232e-018 -0.999997973793477 -0.002013059596885226 6.286553020284208e-018 0.999997973793477 0.002013059596886011 6.286553020284232e-018 0.999997973793477 0.002013059596885226 -8.001067536444891e-018 -0.9664454482419091 0.2568719439185513 -8.001067536444849e-018 -0.9664454482419086 0.2568719439185535 8.001067536444891e-018 0.9664454482419091 -0.2568719439185513 8.001067536444849e-018 0.9664454482419086 -0.2568719439185535 -6.858064911194342e-018 -0.8670284530084556 0.4982586293018563 -6.858064911194386e-018 -0.8670284530084529 0.4982586293018606 6.858064911194342e-018 0.8670284530084556 -0.4982586293018563 6.858064911194386e-018 0.8670284530084529 -0.4982586293018606 -1.714512912291224e-018 -0.7085272435711623 0.7056834595747947 -1.714512912290773e-018 -0.7085272435711557 0.7056834595748014 1.714512912291224e-018 0.7085272435711623 -0.7056834595747947 1.714512912290773e-018 0.7085272435711557 -0.7056834595748014 2.000267850227171e-018 -0.50174509130913 0.8650155278069827 2.000267850227025e-018 -0.5017450913091236 0.8650155278069864 -2.000267850227171e-018 0.50174509130913 -0.8650155278069827 -2.000267850227025e-018 0.5017450913091236 -0.8650155278069864 -9.286958702615267e-019 -0.2607603696967824 0.9654035578946233 -9.286958702616151e-019 -0.260760369696751 0.9654035578946318 9.286958702616151e-019 0.260760369696751 -0.9654035578946318 9.286958702615267e-019 0.2607603696967824 -0.9654035578946233 -9.286950770806969e-019 -0.002010277094332024 0.9999979793909607 -9.286950770806418e-019 -0.002010277094311723 0.9999979793909607 9.286950770806969e-019 0.002010277094332024 -0.9999979793909607 9.286950770806418e-019 0.002010277094311723 -0.9999979793909607 5.715048573591528e-019 0.2568730418156993 0.9664451564306947 5.715048573588878e-019 0.2568730418156698 0.9664451564307025 -5.715048573591528e-019 -0.2568730418156993 -0.9664451564306947 -5.715048573588878e-019 -0.2568730418156698 -0.9664451564307025 2.000267221612142e-018 0.4982543657066462 0.8670309031714313 2.000267221612171e-018 0.4982543657066573 0.8670309031714246 -2.000267221612171e-018 -0.4982543657066573 -0.8670309031714246 -2.000267221612142e-018 -0.4982543657066462 -0.8670309031714313 4.572040930296596e-018 0.7056830209675885 0.70852768041768 4.572040930296914e-018 0.7056830209676014 0.7085276804176672 -4.572040930296596e-018 -0.7056830209675885 -0.70852768041768 -4.572040930296914e-018 -0.7056830209676014 -0.7085276804176672 -1.14300938579175e-018 0.8650179182246978 0.5017409701730664 -1.143009385792095e-018 0.8650179182247008 0.5017409701730615 1.143009385792095e-018 -0.8650179182247008 -0.5017409701730615 1.14300938579175e-018 -0.8650179182246978 -0.5017409701730664 -2.857524059864703e-018 0.9654022143532335 0.2607653437899165 -2.857524059865316e-018 0.9654022143532302 0.2607653437899289 2.857524059865316e-018 -0.9654022143532302 -0.2607653437899289 2.857524059864703e-018 -0.9654022143532335 -0.2607653437899165 8.572576927432837e-018 0.9999979724130936 0.002013745192837731 8.572576927432834e-018 0.9999979724130936 0.002013745192837834 -8.572576927432834e-018 -0.9999979724130936 -0.002013745192837834 -8.572576927432837e-018 -0.9999979724130936 -0.002013745192837731 1.028708566471013e-017 0.9664447927409161 -0.2568744101384328 1.028708566471029e-017 0.9664447927409177 -0.2568744101384266 -1.028708566471029e-017 -0.9664447927409177 0.2568744101384266 -1.028708566471013e-017 -0.9664447927409161 0.2568744101384328 1.714514848940942e-018 0.8670306548123118 -0.4982547978853128 1.714514848941008e-018 0.8670306548123127 -0.4982547978853114 -1.714514848941008e-018 -0.8670306548123127 0.4982547978853114 -1.714514848940942e-018 -0.8670306548123118 0.4982547978853128</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID371\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"288\" source=\"#ID374\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID374\">28.72971049165699 6.007126260736706 28.69872439823219 -6.09804847793303 29.72717074101186 -0.04706980378243859 28.53273433475355 -0.04706980378241763 27.57592606178616 5.76392604728844 25.7744043220282 11.65192704880838 24.73998964194376 11.18211185132279 21.062597259995 16.50268132861221 20.2179874206012 15.8382655546944 14.91535251156158 20.22880748247864 14.31814331951052 19.41505375671623 7.751723499126264 22.57635112608661 7.442587205730467 21.66875226978099 0.05980164344520748 23.38537904207242 0.05980164344520748 22.44574392129145 -7.636156424240395 22.60071976419947 -7.326991595764447 21.69310909336947 -14.21458200416507 19.46211927773357 -14.81179119621629 20.27586473332886 -20.13336739113572 15.90482031523034 -20.97801477668778 16.56924081495793 -24.68017861195898 11.26362616270643 -25.71460380496778 11.73344963035913 -27.54503608652592 5.854853581020838 -28.69876344623657 6.098035481956177 -28.53282744922561 0.0470661117435786 27.5450150606774 -5.854844720127502 25.71453772372937 -11.73342718276273 24.68013205472289 -11.26361907399176 20.97795770652724 -16.56924435931522 20.13340493729391 -15.90483331120722 14.81174313713382 -20.27586000751904 14.21454295616059 -19.46214172533004 7.636146662239294 -22.60070086096038 7.327029141922557 -21.6931232707988 -0.05986734922217803 -23.38535305011864 -0.05986734922200039 -22.44576046162567 -7.442633762966477 -21.6687475439712 -7.751770807285503 -22.57637002932572 -14.31818987674653 -19.41505375671621 -14.91540807987584 -20.22880748247863 -20.21802346491317 -15.83825019581262 -21.06255070275907 -16.50266951408773 -24.74002718810198 -11.18212484729966 -25.77444337003271 -11.65193295607063 -27.57601917625835 -5.76393195455067 -28.72973752489099 -6.007128032915357 -29.72717074101174 0.0470661117435751 -14.86358537050587 0.02353305587178755 -14.34938172311829 3.049017740978088 -14.3648687624455 -3.003564016457678 -14.2664137246128 0.0235330558717893 -13.78800958812917 -2.881965977275335 -12.88722168501636 -5.825966478035316 -12.37001359405099 -5.591062423649832 -10.53127535137954 -8.251334757043864 -10.10901173245659 -7.919125097906307 -7.45770403993792 -10.11440374123932 -7.159094938373267 -9.707526878358106 -3.875885403642752 -11.28818501466286 -3.721316881483239 -10.8343737719856 -0.02993367461108901 -11.69267652505932 -0.0299336746110002 -11.22288023081284 3.663514570961278 -10.8465616353994 3.818073331119647 -11.30035043048019 7.107271478080293 -9.731070862665019 7.405871568566908 -10.13793000375952 10.06670246864696 -7.952416655603611 10.48897885326362 -8.28462217965761 12.34006602736145 -5.631809536995879 12.85726886186469 -5.866713591381362 13.7725075303387 -2.927422360063751 14.26636716737677 -0.02353490189120882 14.34936219911609 -3.049024238966515 -13.77251804326296 2.927426790510419 -12.85730190248389 5.866724815179567 -12.34008930597949 5.631813081353215 -10.48900738834389 8.284620407478963 -10.06668369556786 7.952410157615169 -7.405895598108147 10.13793236666443 -7.107291002082534 9.731059638866787 -3.818078212120197 11.30035988209974 -3.663495797882224 10.84655454668473 0.02990082172260374 11.22287196064572 0.02990082172260374 11.69268952103621 3.721293602865234 10.83437613489049 3.875861749563132 11.28817556304331 7.159071659755262 9.707526878358113 7.45767625578079 10.11440374123932 10.1089937103006 7.919132777347201 10.5312986299975 8.251340664306103 12.36999482097188 5.591055925661395 12.8872021610141 5.825963524404191 13.78796303089308 2.88196302364422 14.36485524582849 3.003563130368353 14.86358537050593 -0.0235349018912193 16.15957962910908 3.052369011605017 15.2749170500125 -3.052489088735269 16.15957962910919 -3.05248908873528 15.27491705001234 3.052369011605174 7.637458525006169 1.526184505802587 8.079789814554541 1.526184505802509 7.637458525006249 -1.526244544367635 8.079789814554594 -1.52624454436764 16.1595796291089 3.052393434432479 15.27491705001234 -3.05240474671089 16.15957962910908 -3.052404746711059 15.27491705001257 3.052393434432461 7.637458525006284 1.52619671721623 8.079789814554452 1.526196717216239 7.637458525006169 -1.526202373355445 8.079789814554541 -1.526202373355529 15.27491705001246 3.052465505274848 16.1595796291089 -3.052357776085077 16.15957962910905 3.05246550527482 15.27491705001257 -3.052357776085104 7.637458525006284 -1.526178888042552 7.637458525006231 1.526232752637424 8.079789814554452 -1.526178888042539 8.079789814554523 1.52623275263741 -16.15957962910892 -3.05237354033085 -15.27491705001246 3.052416952581463 -16.15957962910905 3.052416952581491 -15.27491705001257 -3.052373540330827 -7.637458525006284 -1.526186770165414 -8.079789814554461 -1.526186770165425 -7.637458525006231 1.526208476290732 -8.079789814554523 1.526208476290746 -16.1595796291089 -3.052465806413212 -15.27491705001257 3.052375467693421 -16.15957962910892 3.052375467693405 -15.27491705001257 -3.052465806413236 -7.637458525006284 -1.526232903206618 -8.079789814554452 -1.526232903206606 -7.637458525006284 1.526187733846711 -8.079789814554461 1.526187733846702 -15.2749170500126 -3.052461191049092 -16.1595796291089 3.052369534568117 -16.15957962910917 -3.052461191049134 -15.27491705001257 3.052369534568098 -7.637458525006284 1.526184767284049 -7.637458525006302 -1.526230595524546 -8.079789814554452 1.526184767284059 -8.079789814554585 -1.526230595524567 -15.2748497760961 -3.052427910611382 -16.15952474692822 3.052390554465293 -16.15951235518956 -3.05243276531964 -15.27486216783468 3.05239166573236 -7.637431083917338 1.52619583286618 -7.637424888048051 -1.526213955305691 -8.079762373464108 1.526195277232647 -8.079756177594778 -1.52621638265982 -15.27488067987029 3.052479826373591 -16.15953903824096 -3.052340909406815 -15.27487645914545 -3.052340530900251 -16.15954325896589 3.052475085430112 -8.079771629482943 1.526237542715056 -7.637440339935146 1.526239913186796 -8.079769519120479 -1.526170454703408 -7.637438229572727 -1.526170265450126 -15.2749170500125 3.052418165791669 -16.15957962910889 -3.052394161251984 -15.2749170500123 -3.052394161251988 -16.15957962910889 3.052418165791704 -8.079789814554443 1.526209082895852 -7.637458525006249 1.526209082895835 -8.079789814554443 -1.526197080625992 -7.637458525006151 -1.526197080625994 -15.2749170500123 3.052374063043222 -16.15957962910892 -3.052455040458447 -15.27491705001232 -3.052455040458483 -16.15957962910888 3.052374063043219 -8.079789814554442 1.52618703152161 -7.63745852500615 1.526187031521611 -8.079789814554459 -1.526227520229223 -7.637458525006159 -1.526227520229242 -15.27491705001232 3.052318411927153 -16.15957962910915 -3.052488191674192 -15.27491705001257 -3.052488191674224 -16.15957962910892 3.05231841192716 -8.079789814554461 1.52615920596358 -7.63745852500616 1.526159205963577 -8.079789814554577 -1.526244095837096 -7.637458525006284 -1.526244095837112 -15.27491705001232 -3.052197806521551 -16.15957962910915 3.05265172018527 -16.1595796291089 -3.052197806521591 -15.27491705001257 3.052651720185259 -7.637458525006284 1.52632586009263 -7.63745852500616 -1.526098903260776 -8.079789814554577 1.526325860092635 -8.079789814554452 -1.526098903260796 -15.27491705001257 -3.0525561576722 -16.1595796291089 3.052245515360641 -16.15957962910915 -3.052556157672223 -15.27491705001232 3.05224551536068 -7.63745852500616 1.52612275768034 -7.637458525006284 -1.5262780788361 -8.079789814554452 1.526122757680321 -8.079789814554577 -1.526278078836111 -16.15957962910908 -3.052423131493118 -15.27491705001257 3.052388317079474 -16.15957962910915 3.052388317079447 -15.27491705001248 -3.052423131493245 -7.63745852500624 -1.526211565746623 -8.079789814554541 -1.526211565746559 -7.637458525006284 1.526194158539737 -8.079789814554577 1.526194158539723 -15.27491705001243 -3.052249109402259 -16.15957962910908 3.052553877330226 -16.15957962910915 -3.052249109402342 -15.27491705001248 3.052553877330089 -7.63745852500624 1.526276938665044 -7.637458525006213 -1.52612455470113 -8.079789814554541 1.526276938665113 -8.079789814554577 -1.526124554701171 15.27491705001246 3.052416535812357 16.15957962910915 -3.05241669005392 16.15957962910915 3.052416535812224 15.27491705001243 -3.052416690054004 7.637458525006213 -1.526208345027002 7.637458525006231 1.526208267906179 8.079789814554577 -1.52620834502696 8.079789814554577 1.526208267906112 16.15957962910905 3.052438862169345 15.27491705001246 -3.052369155945408 16.15957962910915 -3.052369155945526 15.27491705001246 3.052438862169398 7.637458525006231 1.526219431084699 8.079789814554523 1.526219431084672 7.637458525006231 -1.526184577972704 8.079789814554577 -1.526184577972763 15.27491705001264 3.05243197721078 16.15957962910905 -3.052388094537172 16.15957962910919 3.052431977210855 15.27491705001246 -3.052388094537107 7.637458525006231 -1.526194047268554 7.63745852500632 1.52621598860539 8.079789814554523 -1.526194047268586 8.079789814554594 1.526215988605428 16.15957962910919 -3.052517161824061 15.27491705001257 3.052318676844949 15.27491705001264 -3.052517161824126 16.15957962910915 3.052318676844975 8.079789814554577 1.526159338422487 8.079789814554594 -1.526258580912031 7.637458525006284 1.526159338422474 7.63745852500632 -1.526258580912063 16.15957962910915 -3.052362761715934 15.27491705001246 3.05243305502342 15.27491705001257 -3.052362761715977 16.1595796291089 3.052433055023369 8.07978981455445 1.526216527511684 8.079789814554575 -1.526181380857967 7.63745852500623 1.52621652751171 7.637458525006283 -1.526181380857988 16.15957962910901 3.052501452363778 15.27491705001246 -3.052324167367494 16.1595796291089 -3.052324167367532 15.27491705001232 3.052501452363784 7.63745852500616 1.526250726181892 8.079789814554506 1.526250726181889 7.637458525006231 -1.526162083683747 8.079789814554452 -1.526162083683766 16.15957962910922 3.052376857360143 15.27491705001232 -3.052456883429417 16.15957962910901 -3.052456883429418 15.27491705001232 3.052376857360129 7.637458525006159 1.526188428680064 8.07978981455461 1.526188428680072 7.637458525006159 -1.526228441714708 8.079789814554504 -1.526228441714709 16.15957962910922 -3.052351123981224 15.2749170500125 3.052455255490937 15.27491705001232 -3.052351123981252 16.15957962910908 3.052455255490922 8.079789814554541 1.526227627745461 8.079789814554612 -1.526175561990612 7.637458525006249 1.526227627745469 7.63745852500616 -1.526175561990626 16.15957962910919 3.052429041414678 15.2749170500125 -3.052393678245672 16.15957962910908 -3.052393678245677 15.2749170500125 3.052429041414679 7.637458525006248 1.52621452070734 8.079789814554593 1.526214520707339 7.637458525006248 -1.526196839122836 8.079789814554539 -1.526196839122838</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 1 1 26 26 27 27 26 26 1 1 3 3 27 27 26 26 28 28 27 27 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 35 35 37 37 38 38 38 38 37 37 39 39 38 38 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 25 25 46 46 25 25 24 24 46 46 24 24 47 47 96 96 97 97 98 98 97 97 96 96 99 99 104 104 99 105 96 106 99 105 104 104 105 107 108 112 104 113 109 114 104 113 108 112 105 115 112 120 108 121 109 122 108 121 112 120 113 123 116 128 113 129 112 130 113 129 116 128 117 131 120 136 116 137 121 138 116 137 120 136 117 139 124 144 121 145 125 146 121 145 124 144 120 147 124 152 128 153 129 154 128 153 124 152 125 155 129 160 132 161 133 162 132 161 129 160 128 163 133 168 136 169 137 170 136 169 133 168 132 171 137 176 140 177 141 178 140 177 137 176 136 179 144 184 140 185 145 186 140 185 144 184 141 187 148 192 145 193 149 194 145 193 148 192 144 195 152 200 148 201 149 202 148 201 152 200 153 203 156 208 152 209 157 210 152 209 156 208 153 211 160 216 157 217 161 218 157 217 160 216 156 219 164 224 160 225 161 226 160 225 164 224 165 227 168 232 164 233 169 234 164 233 168 232 165 235 169 240 172 241 168 242 172 241 169 240 173 243 173 248 176 249 172 250 176 249 173 248 177 251 180 256 176 257 177 258 176 257 180 256 181 259 184 264 181 265 180 266 181 265 184 264 185 267 184 272 188 273 185 274 188 273 184 272 189 275 98 280 188 281 189 282 188 281 98 280 97 283</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID370\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID371\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">48 48 49 49 50 50 49 49 51 51 50 50 51 51 52 52 50 50 50 50 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 58 58 60 60 59 59 59 59 60 60 61 61 60 60 62 62 61 61 62 62 63 63 61 61 61 61 63 63 64 64 63 63 65 65 64 64 64 64 65 65 66 66 65 65 67 67 66 66 66 66 67 67 68 68 67 67 69 69 68 68 68 68 69 69 70 70 69 69 71 71 70 70 72 72 73 73 71 71 70 70 71 71 73 73 51 51 49 49 74 74 49 49 75 75 74 74 74 74 75 75 76 76 75 75 77 77 76 76 76 76 77 77 78 78 77 77 79 79 78 78 78 78 79 79 80 80 79 79 81 81 80 80 80 80 81 81 82 82 82 82 81 81 83 83 81 81 84 84 83 83 83 83 84 84 85 85 84 84 86 86 85 85 85 85 86 86 87 87 86 86 88 88 87 87 87 87 88 88 89 89 88 88 90 90 89 89 89 89 90 90 91 91 90 90 92 92 91 91 91 91 92 92 93 93 92 92 94 94 93 93 93 93 94 94 72 72 72 72 94 94 73 73 95 95 73 73 94 94 100 100 101 101 102 102 103 103 102 102 101 101 106 108 107 109 100 110 101 111 100 110 107 109 106 116 110 117 107 118 111 119 107 118 110 117 114 124 115 125 110 126 111 127 110 126 115 125 118 132 119 133 114 134 115 135 114 134 119 133 118 140 122 141 119 142 123 143 119 142 122 141 122 148 126 149 123 150 127 151 123 150 126 149 127 156 126 157 130 158 131 159 130 158 126 157 130 164 131 165 134 166 135 167 134 166 131 165 134 172 135 173 138 174 139 175 138 174 135 173 138 180 139 181 142 182 143 183 142 182 139 181 143 188 146 189 142 190 147 191 142 190 146 189 146 196 150 197 147 198 151 199 147 198 150 197 154 204 155 205 150 206 151 207 150 206 155 205 154 212 158 213 155 214 159 215 155 214 158 213 158 220 162 221 159 222 163 223 159 222 162 221 166 228 167 229 162 230 163 231 162 230 167 229 166 236 170 237 167 238 171 239 167 238 170 237 174 244 171 245 175 246 170 247 175 246 171 245 178 252 174 253 179 254 175 255 179 254 174 253 182 260 183 261 179 262 178 263 179 262 183 261 186 268 187 269 182 270 183 271 182 270 187 269 190 276 187 277 191 278 186 279 191 278 187 277 102 284 103 285 191 286 190 287 191 286 103 285</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID370\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID371\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID375\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID378\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID376\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID377\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID376\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID380\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID380\">0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035627 -0.3578613696232667 1.324001740206996 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151409 -0.35666972965487 1.31956378430982 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 0.6831636119784472 1.189256688460091 0.848191442515148 0.680868640605695 1.185278447723705 0.848191442515148 0.680868640605695 1.185278447723705 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035627 -0.6883468591155371 1.186265836591588 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.6860480580346522 1.182286995116669 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151387 0.9644406560028058 0.9686694797989038 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 0.6883464085616424 -1.186264860391474 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151387 0.6860518126504815 -1.182286394378136 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151333 -0.6808676644055873 -1.185277922077488 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.3508928026645748 -1.321112338057901 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035609 0.002993367461099794 -1.371508293416812 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151387 0.002993367461098018 -1.366914445870862 -0.2249169753035609 0.002993367461099794 -1.371508293416812</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID377\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID381\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID381\">-0.00428062881210491 -0.2567048492765375 -0.9664803653333486 -0.004280981952864871 0.002183299616824533 -0.999988453131486 -0.004280628810128404 -0.2567062461107217 -0.9664799943220406 -0.004280981954898488 0.002184853357166072 -0.9999884497379504 0.004280981954898488 -0.002184853357166072 0.9999884497379504 0.00428062881210491 0.2567048492765375 0.9664803653333486 0.004280981952864871 -0.002183299616824533 0.999988453131486 0.004280628810128404 0.2567062461107217 0.9664799943220406 -0.004281638786373565 0.2609241043035803 -0.9653498222730853 -0.00428163879072645 0.2609252439511864 -0.9653495142373459 0.00428163879072645 -0.2609252439511864 0.9653495142373459 0.004281638786373565 -0.2609241043035803 0.9653498222730853 -0.004280369372364794 -0.4981020763274863 -0.8671078364288279 -0.00428036937316088 -0.4981009455189371 -0.867108486010355 0.00428036937316088 0.4981009455189371 0.867108486010355 0.004280369372364794 0.4981020763274863 0.8671078364288279 -0.004282256411797012 0.5018836420376206 -0.864924547076262 -0.004282256413127314 0.5018847979083912 -0.8649238763662763 0.004282256413127314 -0.5018847979083912 0.8649238763662763 0.004282256411797012 -0.5018836420376206 0.864924547076262 -0.004279848666279009 -0.705555224291424 -0.7086420170794786 -0.004279848671315645 -0.7055541584054808 -0.708643078320874 0.004279848671315645 0.7055541584054808 0.708643078320874 0.004279848666279009 0.705555224291424 0.7086420170794786 -0.004281892798924736 0.7086451305096495 -0.7055520848236652 -0.0042818928041386 0.7086441543526577 -0.7055530652586102 0.004281892798924736 -0.7086451305096495 0.7055520848236652 0.0042818928041386 -0.7086441543526577 0.7055530652586102 -0.004279390712496793 -0.8649233212950592 -0.5018857789328697 -0.004279390712642355 -0.8649226644398191 -0.5018869109206303 0.004279390712496793 0.8649233212950592 0.5018857789328697 0.004279390712642355 0.8649226644398191 0.5018869109206303 -0.004281359113397748 0.8671102266169878 -0.4980979069022258 -0.004281359112962919 0.8671110173025061 -0.4980965304403946 0.004281359113397748 -0.8671102266169878 0.4980979069022258 0.004281359112962919 -0.8671110173025061 0.4980965304403946 -0.004280028371695556 -0.965348902363104 -0.2609275341229588 -0.004280028364445989 -0.9653485192918171 -0.260928951360894 0.004280028371695556 0.965348902363104 0.2609275341229588 0.004280028364445989 0.9653485192918171 0.260928951360894 -0.004281468576927181 0.9664802791478765 -0.2567051597554433 -0.004281468578594852 0.9664806579291112 -0.2567037336614381 0.004281468576927181 -0.9664802791478765 0.2567051597554433 0.004281468578594852 -0.9664806579291112 0.2567037336614381 -0.004280447389466799 -0.9999884506049243 -0.002185503811303777 -0.00428044738673919 -0.9999884540002806 -0.002183949701340417 0.004280447389466799 0.9999884506049243 0.002185503811303777 0.00428044738673919 0.9999884540002806 0.002183949701340417 -0.004280716988099828 0.9999884543797312 0.002183247421708556 -0.004280716977420427 0.9999884509864663 0.002184801100054285 0.004280716988099828 -0.9999884543797312 -0.002183247421708556 0.004280716977420427 -0.9999884509864663 -0.002184801100054285 -0.004279849309618837 -0.9664798642304419 0.2567067488925707 -0.004279849305227373 -0.9664794597692433 0.256708271651063 0.004279849309618837 0.9664798642304419 -0.2567067488925707 0.004279849305227373 0.9664794597692433 -0.256708271651063 -0.004279550911469715 0.9653495572584627 0.2609251190377931 -0.004279550914307764 0.9653499365637356 0.2609237157108637 0.004279550911469715 -0.9653495572584627 -0.2609251190377931 0.004279550914307764 -0.9653499365637356 -0.2609237157108637 -0.004279366945403445 -0.8671083352607096 0.4981012165614008 -0.004279366943950962 -0.8671074945846607 0.4981026800306053 0.004279366945403445 0.8671083352607096 -0.4981012165614008 0.004279366943950962 0.8671074945846607 -0.4981026800306053 -0.004280137578717258 0.8649244175304505 0.5018838833653839 -0.004280137569418133 0.8649251493016499 0.5018826222613267 0.004280137578717258 -0.8649244175304505 -0.5018838833653839 0.004280137569418133 -0.8649251493016499 -0.5018826222613267 -0.004279503727668084 -0.7086453482994729 0.7055518805738978 -0.004279503731088207 -0.708644065358699 0.7055531691373169 0.004279503727668084 0.7086453482994729 -0.7055518805738978 0.004279503731088207 0.708644065358699 -0.7055531691373169 -0.004280820620104977 0.7055523445921659 0.7086448783525611 -0.004280820622493526 0.7055537732692776 0.7086434559073291 0.004280820620104977 -0.7055523445921659 -0.7086448783525611 0.004280820622493526 -0.7055537732692776 -0.7086434559073291 -0.004279856789499468 -0.5018853069956759 0.8649235928379554 -0.004279856787992766 -0.5018869261655592 0.8649226532875417 0.004279856787992766 0.5018869261655592 -0.8649226532875417 0.004279856789499468 0.5018853069956759 -0.8649235928379554 -0.004280325599923767 0.4981013730755701 0.8671082406210833 -0.004280325596508693 0.4981002179615462 0.8671089041633976 0.004280325596508693 -0.4981002179615462 -0.8671089041633976 0.004280325599923767 -0.4981013730755701 -0.8671082406210833 -0.004280271874951132 -0.2609268930036005 0.9653490745736302 -0.004280271879293935 -0.2609251102153328 0.965349556446656 0.004280271874951132 0.2609268930036005 -0.9653490745736302 0.004280271879293935 0.2609251102153328 -0.965349556446656 -0.004280237443075813 0.2567064328691884 0.966479946450524 -0.004280237446015731 0.256704930550933 0.9664803454795375 0.004280237446015731 -0.256704930550933 -0.9664803454795375 0.004280237443075813 -0.2567064328691884 -0.966479946450524 -0.004280534257630148 -0.002183750939241975 0.9999884540624979 -0.004280534258190548 -0.002185305100490302 0.9999884506673475 0.004280534258190548 0.002185305100490302 -0.9999884506673475 0.004280534257630148 0.002183750939241975 -0.9999884540624979</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID379\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"192\" source=\"#ID382\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"384\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID382\">16.72264492845211 -3.239903109249033 -4.493906290557893 2.933910303838056 -4.728586341386173 -2.696140844848241 16.95653956603488 2.371301515704383 8.478269783017442 1.185650757852192 8.361322464226053 -1.619951554624516 -2.246953145278947 1.466955151919028 -2.364293170693086 -1.348070422424121 -16.95324444480733 2.385627098572262 4.724869775837585 -2.700043436932254 4.497951786028732 2.930243137362552 -16.72708843421687 -3.225761471737048 -8.363544217108437 -1.612880735868524 -8.476622222403663 1.192813549286131 2.362434887918793 -1.350021718466127 2.248975893014366 1.465121568681276 -4.650377267339515 -2.779097278612486 16.8845397929188 2.670381715873585 -4.576559850465017 2.853718301221435 16.81096911007859 -2.94358313064525 8.405484555039294 -1.471791565322625 -2.325188633669757 -1.389548639306243 8.442269896459401 1.335190857936793 -2.288279925232509 1.426859150610718 -16.88407653528399 2.671868009696685 4.649988302077555 -2.779450835817336 4.577047968530231 2.853401927377038 -16.81138055951746 -2.942128119354722 -8.405690279758728 -1.471064059677361 -8.442038267641994 1.335934004848342 2.324994151038777 -1.389725417908668 2.288523984265115 1.426700963688519 -4.633528105959257 -2.796443786905329 16.86821789600814 2.73349127372693 -4.593746885068567 2.836588465561602 16.82856995092033 -2.880655093693082 8.414284975460165 -1.440327546846541 -2.316764052979628 -1.398221893452664 8.434108948004072 1.366745636863465 -2.296873442534284 1.418294232780801 4.593973352083259 2.836523718218725 -16.82868561620813 -2.880198764756717 4.633415836383876 -2.796499481809613 -16.86799572512858 2.733954476238326 -8.433997862564288 1.366977238119163 2.296986676041629 1.418261859109362 -8.414342808104063 -1.440099382378358 2.316707918191938 -1.398249740904807 16.86025756741855 2.763878992145286 -4.625368403466258 -2.804667302171011 16.83691785074735 -2.850323934358243 -4.601950849363642 2.828377057234473 -2.300975424681821 1.414188528617236 8.430128783709277 1.381939496072643 -2.312684201733129 -1.402333651085505 8.418458925373676 -1.425161967179121 4.625321723249752 -2.804583041773303 -16.86010532359727 2.764157331875902 -16.83696537367468 -2.850054064282261 4.602104112393668 2.82847806387397 2.301052056196834 1.414239031936985 2.312660861624876 -1.402291520886652 -8.430052661798635 1.382078665937951 -8.41848268683734 -1.42502703214113 16.85496166571006 2.783686677685021 -4.620007726224934 -2.810278447092262 16.84234184440923 -2.830551225302984 -4.607345360204824 2.822837129837691 -2.303672680102412 1.411418564918846 8.42748083285503 1.391843338842511 -2.310003863112467 -1.405139223546131 8.421170922204613 -1.415275612651492 4.619984400096286 -2.809976726827539 -16.85483529246015 2.784011826299676 -16.84236541118916 -2.830188792266932 4.60747210773349 2.823105087936984 2.303736053866745 1.411552543968492 2.309992200048143 -1.404988363413769 -8.427417646230072 1.392005913149838 -8.421182705594578 -1.415094396133466 16.84661280771467 -2.814593484597931 -4.611683716472709 2.81851480107025 -4.615752153365286 -2.814589810342543 16.85066790715681 2.799634925290195 8.425333953578404 1.399817462645097 8.423306403857335 -1.407296742298966 -2.305841858236355 1.409257400535125 -2.307876076682643 -1.407294905171272 4.615710287708393 -2.814561377896678 -16.85057595863294 2.799689708006414 -16.84665468625737 -2.814561337141796 4.611775836897464 2.818552915409719 2.305887918448732 1.409276457704859 2.307855143854197 -1.407280688948339 -8.425287979316471 1.399844854003207 -8.423327343128683 -1.407280668570898 16.85061274891556 -2.799737230245905 -4.615671991269269 2.81450515557137 -4.611738806717524 -2.818601982494837 16.84669296982185 2.814502371962669 8.423346484910923 1.407251185981335 8.425306374457781 -1.399868615122952 -2.307835995634635 1.407252577785685 -2.305869403358762 -1.409300991247418 4.615728155487668 2.814609614993135 -16.85069104536705 -2.799615976508483 4.611660413818911 -2.818490959721189 -16.8466368184738 2.8146110332504 -8.423318409236899 1.4073055166252 2.307864077743834 1.407304807496568 -8.425345522683527 -1.399807988254242 2.305830206909456 -1.409245479860595 16.85488174045585 -2.783822084320475 -4.619932794077956 2.810191868402641 -4.607425572770014 -2.822910867387297 16.84241677434491 2.830407356558213 8.421208387172452 1.415203678279107 8.427440870227924 -1.391911042160237 -2.309966397038978 1.405095934201321 -2.303712786385007 -1.411455433693649 4.620004557216717 2.810058274546969 -16.85496420879204 -2.783885263391031 4.607342998617686 -2.823023215688412 -16.84234483497815 2.830335643376079 -8.421172417489073 1.41516782168804 2.310002278608359 1.405029137273484 -8.427482104396022 -1.391942631695516 2.303671499308843 -1.411511607844206 16.86015697964571 -2.764128945178626 -4.625258428899851 2.804623625608292 -4.602052139363532 -2.828459741286155 16.83702861702645 2.850080276962824 8.418514308513226 1.425040138481412 8.430078489822854 -1.382064472589313 -2.312629214449926 1.402311812804146 -2.301026069681766 -1.414229870643077 4.625415304190483 2.804724666538888 -16.86021964902263 -2.763862037364986 4.601989023202723 -2.828331854061645 -16.83687108925824 2.850382876463817 -8.418435544629118 1.425191438231908 2.312707652095241 1.402362333269444 -8.430109824511312 -1.381931018682493 2.300994511601362 -1.414165927030822 -4.593914234547086 -2.836549647844413 16.82876921869526 2.880127300163432 -4.633332011394352 2.796435274276993 16.86805470199861 -2.733989105220428 8.434027350999303 -1.366994552610214 -2.296957117273543 -1.418274823922207 8.414384609347628 1.440063650081716 -2.316666005697176 1.398217637138496 -16.82855802294511 2.880666116932571 4.593755417573123 -2.836541457565994 4.633540441894999 2.796500506525937 -16.86820930785124 -2.733438833984344 -8.434104653925619 -1.366719416992172 -8.414279011472553 1.440333058466285 2.296877708786562 -1.418270728782997 2.316770220947499 1.398250253262969 16.88411675624425 -2.671921487800922 -4.649910896461154 2.779418514975413 -4.577007912454192 -2.853430276512045 16.81145811289813 2.942066762377245 8.405729056449063 1.471033381188622 8.442058378122125 -1.335960743900461 -2.324955448230577 1.389709257487706 -2.288503956227096 -1.426715138256022 -16.81098620107458 2.943539550568779 4.576551096657347 -2.853740970625229 4.650360429397084 2.779075221069198 -16.88454891053257 -2.670436317040372 -8.442274455266283 -1.335218158520186 -8.405493100537289 1.47176977528439 2.288275548328674 -1.426870485312614 2.325180214698542 1.389537610534599 -4.497954252672803 -2.930183803648829 16.72711886388277 3.225770011282844 -4.724839231514265 2.700053591480886 16.95324496794547 -2.385640017490524 8.476622483972733 -1.192820008745262 -2.248977126336401 -1.465091901824415 8.363559431941386 1.612885005641422 -2.362419615757132 1.350026795740443 -16.72266364813068 3.23986216331764 4.493904609166451 -2.933941311184089 4.728569530450034 2.696148379731193 -16.95654291422808 -2.371371245078102 -8.478271457114039 -1.185685622539051 -8.361331824065339 1.61993108165882 2.246952304583226 -1.466970655592045 2.364284765225017 1.348074189865597</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 8 8 9 1 10 8 9 3 8 9 11 12 16 0 17 2 18 0 17 12 16 13 19 9 24 16 25 8 26 16 25 9 24 17 27 20 32 13 33 12 34 13 33 20 32 21 35 16 40 24 41 25 42 24 41 16 40 17 43 21 48 28 49 29 50 28 49 21 48 20 51 32 56 24 57 33 58 24 57 32 56 25 59 29 64 36 65 37 66 36 65 29 64 28 67 40 72 33 73 41 74 33 73 40 72 32 75 44 80 36 81 45 82 36 81 44 80 37 83 48 88 41 89 49 90 41 89 48 88 40 91 52 96 45 97 53 98 45 97 52 96 44 99 48 104 56 105 57 106 56 105 48 104 49 107 60 112 53 113 61 114 53 113 60 112 52 115 57 120 64 121 65 122 64 121 57 120 56 123 68 128 61 129 69 130 61 129 68 128 60 131 65 136 72 137 73 138 72 137 65 136 64 139 76 144 68 145 69 146 68 145 76 144 77 147 72 152 80 153 73 154 80 153 72 152 81 155 84 160 76 161 85 162 76 161 84 160 77 163 81 168 88 169 80 170 88 169 81 168 89 171 92 176 84 177 85 178 84 177 92 176 93 179 89 184 92 185 88 186 92 185 89 184 93 187</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID378\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID379\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4 4 5 5 6 6 7 7 6 6 5 5 10 12 4 13 11 14 6 15 11 14 4 13 14 20 15 21 5 22 7 23 5 22 15 21 18 28 10 29 19 30 11 31 19 30 10 29 22 36 23 37 14 38 15 39 14 38 23 37 18 44 19 45 26 46 27 47 26 46 19 45 23 52 22 53 30 54 31 55 30 54 22 53 27 60 34 61 26 62 35 63 26 62 34 61 30 68 31 69 38 70 39 71 38 70 31 69 34 76 42 77 35 78 43 79 35 78 42 77 39 84 46 85 38 86 47 87 38 86 46 85 42 92 50 93 43 94 51 95 43 94 50 93 46 100 54 101 47 102 55 103 47 102 54 101 51 108 50 109 58 110 59 111 58 110 50 109 54 116 62 117 55 118 63 119 55 118 62 117 58 124 59 125 66 126 67 127 66 126 59 125 62 132 70 133 63 134 71 135 63 134 70 133 66 140 67 141 74 142 75 143 74 142 67 141 78 148 79 149 70 150 71 151 70 150 79 149 82 156 74 157 83 158 75 159 83 158 74 157 78 164 86 165 79 166 87 167 79 166 86 165 90 172 82 173 91 174 83 175 91 174 82 173 94 180 95 181 86 182 87 183 86 182 95 181 94 188 90 189 95 190 91 191 95 190 90 189</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID378\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID379\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID383\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID388\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID386\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID387\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID386\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID390\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID390\">-0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID387\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID391\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID391\">-0.9082500329767456 0.0007516867371791146 -0.4184271890840621 -0.9082492745359263 -0.1074503430176522 -0.4043979217186361 -0.9082500344776737 0.0008765598473410654 -0.4184269428635523 -0.9082492736520922 -0.1075708369032307 -0.4043658887176134 0.9082492736520922 0.1075708369032307 0.4043658887176134 0.9082500329767456 -0.0007516867371791146 0.4184271890840621 0.9082492745359263 0.1074503430176522 0.4043979217186361 0.9082500344776737 -0.0008765598473410654 0.4184269428635523 -0.9082506050830315 0.1091435923435764 -0.4039412266860695 -0.9082506046354215 0.1090229161292429 -0.4039738146688064 0.9082506050830315 -0.1091435923435764 0.4039412266860695 0.9082506046354215 -0.1090229161292429 0.4039738146688064 -0.9082482427168129 -0.2084560405691885 -0.3628101552493231 -0.9082482405359982 -0.2085640638359936 -0.3627480735158756 0.9082482405359982 0.2085640638359936 0.3627480735158756 0.9082482427168129 0.2084560405691885 0.3628101552493231 -0.9082491615154812 0.2099738865158217 -0.3619315233409027 -0.9082491645414247 0.209866585626633 -0.3619937449006862 0.9082491615154812 -0.2099738865158217 0.3619315233409027 0.9082491645414247 -0.209866585626633 0.3619937449006862 -0.9082465712478778 -0.2952584160994148 -0.2964972740834871 -0.908246568910591 -0.2953461497473803 -0.2964098883160561 0.908246568910591 0.2953461497473803 0.2964098883160561 0.9082465712478778 0.2952584160994148 0.2964972740834871 -0.9082473909658394 0.2964969062159364 -0.295256263960858 -0.9082473912470552 0.2964072177461657 -0.2953463010787428 0.9082473909658394 -0.2964969062159364 0.295256263960858 0.9082473912470552 -0.2964072177461657 0.2953463010787428 -0.9082474673790382 -0.3619345433051908 -0.2099760090153772 -0.9082474712734822 -0.3619966089766116 -0.2098689734447648 0.9082474712734822 0.3619966089766116 0.2098689734447648 0.9082474673790382 0.3619345433051908 0.2099760090153772 -0.9082484639023035 0.3628095932970937 -0.2084560549149473 -0.908248460723703 0.3627472515016051 -0.2085645346674632 0.9082484639023035 -0.3628095932970937 0.2084560549149473 0.908248460723703 -0.3627472515016051 0.2085645346674632 -0.9082511405035336 -0.4039399392223229 -0.1091439016853281 -0.9082511440516279 -0.403972551902783 -0.1090231013962746 0.9082511440516279 0.403972551902783 0.1090231013962746 0.9082511405035336 0.4039399392223229 0.1091439016853281 -0.9082495969998886 0.4043972754492359 -0.1074500495987548 -0.908249596623721 0.404365212715167 -0.1075706511027334 0.9082495969998886 -0.4043972754492359 0.1074500495987548 0.908249596623721 -0.404365212715167 0.1075706511027334 -0.9082514585655601 -0.4184238527729456 -0.0008760389129415635 -0.9082514553289773 -0.4184241025164883 -0.0007512163908289862 0.9082514553289773 0.4184241025164883 0.0007512163908289862 0.9082514585655601 0.4184238527729456 0.0008760389129415635 -0.9082505851953316 0.4184257471815965 0.0008766914283048339 -0.9082505828752954 0.418425995279139 0.0007517854403690022 0.9082505851953316 -0.4184257471815965 -0.0008766914283048339 0.9082505828752954 -0.418425995279139 -0.0007517854403690022 -0.9082490302929679 -0.4043664017146101 0.1075709632580378 -0.9082490333533763 -0.4043984855098431 0.1074502597949525 0.9082490302929679 0.4043664017146101 -0.1075709632580378 0.9082490333533763 0.4043984855098431 -0.1074502597949525 -0.9082505698761868 0.4039735439268114 0.1090242089024017 -0.9082505682264853 0.4039407217202315 0.1091457679088157 0.9082505682264853 -0.4039407217202315 -0.1091457679088157 0.9082505698761868 -0.4039735439268114 -0.1090242089024017 -0.9082486494484744 -0.3627467689190975 0.2085645521505931 -0.9082486481231678 -0.3628091637581442 0.2084559998550159 0.9082486494484744 0.3627467689190975 -0.2085645521505931 0.9082486481231678 0.3628091637581442 -0.2084559998550159 -0.9082483686281029 0.3619950655307562 0.2098677522054624 -0.9082483661589828 0.3619328652568282 0.209975013790977 0.9082483661589828 -0.3619328652568282 -0.209975013790977 0.9082483686281029 -0.3619950655307562 -0.2098677522054624 -0.9082506197478876 -0.2964042575108705 0.2953393435643274 -0.9082506167666825 -0.2964919493568599 0.2952513185567682 0.9082506197478876 0.2964042575108705 -0.2953393435643274 0.9082506167666825 0.2964919493568599 -0.2952513185567682 -0.9082480131803266 0.2953441289205035 0.2964074764006107 -0.90824801524225 0.295256581095625 0.2964946780774259 0.90824801524225 -0.295256581095625 -0.2964946780774259 0.9082480131803266 -0.2953441289205035 -0.2964074764006107 -0.9082502482972585 -0.2098653041311184 0.3619917686770259 -0.9082502533146946 -0.2099721613881187 0.3619297843446915 0.9082502482972585 0.2098653041311184 -0.3619917686770259 0.9082502533146946 0.2099721613881187 -0.3619297843446915 -0.9082493143264231 0.2085638932647763 0.3627454830205625 -0.9082493159583445 0.2084540785156279 0.3628085958344974 0.9082493159583445 -0.2084540785156279 -0.3628085958344974 0.9082493143264231 -0.2085638932647763 -0.3627454830205625 -0.9082485879667209 -0.1090232989628911 0.4039782453792602 -0.9082485869772989 -0.1091444703673541 0.4039455270726108 0.9082485879667209 0.1090232989628911 -0.4039782453792602 0.9082485869772989 0.1091444703673541 -0.4039455270726108 -0.9082511946939681 0.107569634709001 0.4043618936368158 -0.9082511981082746 0.1074499269831152 0.4043937120260486 0.9082511981082746 -0.1074499269831152 -0.4043937120260486 0.9082511946939681 -0.107569634709001 -0.4043618936368158 -0.9082509090819749 -0.0008773896933384607 0.4184250426768125 -0.9082509125925561 -0.000752468406024658 0.4184252783545552 0.9082509090819749 0.0008773896933384607 -0.4184250426768125 0.9082509125925561 0.000752468406024658 -0.4184252783545552</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID389\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"96\" source=\"#ID392\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"192\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID392\">-4.542699139165971 13.57301502275557 -0.4760628845307824 14.03057851338626 -4.293205956690974 12.84291939320605 -0.4520778451937232 13.27480097802665 0.5262263144851437 13.27311290434169 0.5509308441970694 14.02887609692691 4.364922551878471 12.82793928468497 4.615115580867611 13.5578951401443 -9.200497557095831 12.02549805985014 -5.460294461359973 13.36213689623786 -8.700673353099646 11.37978305347014 -5.167760694787276 12.6419962786728 5.236482058585006 12.62448183080072 5.529599615995658 13.34448409699993 8.762464862805501 11.35038498428026 9.262826653654555 11.9958490506677 -12.99216162462306 9.619703772942543 -9.850935596277633 11.70231789836429 -12.28897078609038 9.104402023815595 -9.321713719835559 11.07126571357382 9.379208433918393 11.04116980481799 9.908805909503144 11.67203388437624 12.33621713888454 9.064756673517946 13.03968184989838 9.57981702183138 -15.70518465917443 6.660142705593261 -13.3525193171996 9.309346053102276 -14.85691765236203 6.30484509550176 -12.63441802294289 8.80693061639283 12.67792072561648 8.768150175948428 13.39616309803314 9.270430520945231 14.8880027823071 6.259267456761666 15.73641299818794 6.614399205461904 -17.30591011175082 3.414281264193431 -15.85447136542427 6.437527688275801 -16.37252037394564 3.234169117888085 -15.00127260492471 6.089614567846071 15.03012559609594 6.045417211916162 15.88339658588965 6.393267460950476 16.38777273810398 3.18595789568538 17.32115792288254 3.365996716390026 -17.84158673383741 0.07271931827509812 -17.34754144405634 3.280923251307002 -16.88054368036996 0.07271501916888513 -16.4134956469478 3.102928287245775 16.42781917250773 3.055684031940567 17.36184157354511 3.233666018167433 16.88077042213474 0.02413597414263838 17.84180938374336 0.0241319283408874 -17.84181214267261 -0.02413337543565036 -16.88076908897763 -0.02413745264056083 -17.36185361655219 -3.23366717946566 -16.42782986626323 -3.055684287849731 16.4134818910754 -3.102935319425331 16.88054701756033 -0.07271698671732821 17.34751954079551 -3.280922069425896 17.84158597896712 -0.07272124314771755 -17.3211786305619 -3.365991047406652 -16.3877919244592 -3.185951882083677 -15.88340587967561 -6.393257993900284 -15.03015255389675 -6.045413601251539 15.00124014052953 -6.089609450990861 16.37250085551697 -3.234178633475433 15.85445263950981 -6.437525411168315 17.3058822788614 -3.414283177660608 -15.73639731955359 -6.614409163697935 -14.8880059792257 -6.259281506746234 -13.39617422300147 -9.270432463617809 -12.67787981034289 -8.768156485934776 12.63438003713352 -8.806939261801423 14.85687775431837 -6.30484505352637 13.35248086666035 -9.309357964262242 15.70515852596362 -6.660145524742545 -13.03968789063718 -9.579816255505966 -12.33617009607184 -9.064760126010743 -9.908816153169438 -11.67204170025707 -9.379206298367013 -11.04117126199523 9.321679514522458 -11.07126762305999 12.28893385344979 -9.104409654094303 9.850928337812352 -11.70231246863167 12.99212427033344 -9.61971454210361 -9.262873717913241 -11.99585669306635 -8.762497622106514 -11.35038698937884 -5.529610632032458 -13.34446963758883 -5.236511265108912 -12.62449364339831 5.167749101606612 -12.64198777028426 8.700643486461816 -11.37978310462293 5.460273663042221 -13.36213548128276 9.200495491064043 -12.02549128880329 -4.364955882694339 -12.82794829884673 -0.5262691202224505 -13.27310290361913 -4.615130655374084 -13.55787759450954 -0.5509741484817764 -14.02888433511281 0.4520367491142101 -13.27478359432735 4.293193018885061 -12.84290598107812 0.4760213753747136 -14.03057938515311 4.542676807114459 -13.57300831123361</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 1 0 3 0 8 9 8 0 2 3 12 1 12 3 13 9 16 17 16 9 8 13 20 12 20 13 21 17 24 25 24 17 16 21 28 20 28 21 29 25 32 33 32 25 24 29 36 28 36 29 37 33 40 41 40 33 32 37 44 36 44 37 45 41 48 49 48 41 40 44 52 53 52 44 45 48 56 49 56 48 57 53 60 61 60 53 52 57 64 56 64 57 65 61 68 69 68 61 60 65 72 64 72 65 73 69 76 77 76 69 68 73 80 72 80 73 81 77 84 85 84 77 76 81 88 80 88 81 89 92 84 93 84 92 85 89 93 88 93 89 92</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID388\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4 0 5 1 6 2 7 3 6 2 5 1 7 4 5 5 10 6 11 7 10 6 5 5 14 8 4 9 15 10 6 11 15 10 4 9 10 12 11 13 18 14 19 15 18 14 11 13 22 16 14 17 23 18 15 19 23 18 14 17 18 20 19 21 26 22 27 23 26 22 19 21 30 24 22 25 31 26 23 27 31 26 22 25 26 28 27 29 34 30 35 31 34 30 27 29 38 32 30 33 39 34 31 35 39 34 30 33 34 36 35 37 42 38 43 39 42 38 35 37 46 40 38 41 47 42 39 43 47 42 38 41 42 44 43 45 50 46 51 47 50 46 43 45 46 48 47 49 54 50 55 51 54 50 47 49 58 52 50 53 59 54 51 55 59 54 50 53 54 56 55 57 62 58 63 59 62 58 55 57 66 60 58 61 67 62 59 63 67 62 58 61 62 64 63 65 70 66 71 67 70 66 63 65 74 68 66 69 75 70 67 71 75 70 66 69 70 72 71 73 78 74 79 75 78 74 71 73 82 76 74 77 83 78 75 79 83 78 74 77 78 80 79 81 86 82 87 83 86 82 79 81 90 84 82 85 91 86 83 87 91 86 82 85 87 88 94 89 86 90 95 91 86 90 94 89 94 92 90 93 95 94 91 95 95 94 90 93</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID388\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID389\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID393\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID396\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID394\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID395\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID394\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID398\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID398\">-0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.848191442515148 -1.821721723044679 -0.002991724816678865</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID395\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID399\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID399\">-1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID397\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"48\" source=\"#ID400\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID400\">-18.21719920829072 0.02353305587178056 -17.58874109970749 3.731832569171651 -17.60424916488311 -3.686367916216107 -15.79154768106481 -7.14505990410002 -15.76162339299344 7.185815878339411 -15.73645395039408 0.02353305587178406 -15.20798726843623 -3.181281342099942 -13.6431234692418 -6.169288878862472 -12.90268619664868 -10.11682217439248 -11.14849664574191 -8.7368715422037 -9.134543999449482 -12.39913428420196 -7.894159355730627 -10.70906301849755 -4.743844447887168 -13.83647042450765 -4.101781864347913 -11.95141933613647 -0.02993367461101796 -14.33087164735588 -0.02993367461098022 -12.37934495576256 4.043974672825356 -11.9636131068125 4.686051523904595 -13.84865828792145 7.842322378820725 -10.73257746649335 9.082687498537359 -12.42266290962708 11.106162601468 -8.770158964817435 12.86035665791355 -10.15009187521957 13.61317214793644 -6.210043671649416 15.19249872726272 -3.226737724888358 15.73644944485523 -0.02353490189122628 15.7615948579133 -7.185808789624735 -15.19252726234299 3.226739497067041 -13.61319017009239 6.210048988185412 -12.86033863575761 10.15009660102933 -11.10619113654815 8.770154239007669 -9.082711528078582 12.42266290962708 -7.842317873281745 10.73258573666044 -4.686070296983688 13.84864765484944 -4.043988564903902 11.96361546971739 0.0299008217225882 12.37933786704789 0.0299008217226215 14.33087282880834 4.101776983347349 11.95143942082804 4.743848953426131 13.83646333579298 7.894117304033426 10.70905592978288 9.134510958830333 12.39913428420196 11.14846360512272 8.736878630918373 12.90263363202708 10.11682099294002 13.64312346924178 6.169292423219798 15.20797224997292 3.181279569921278 15.79154317552588 7.145053996837801 17.58872307755159 -3.731830796992965 17.60422062980293 3.686373823478347 18.21721723044679 -0.02353490189120707</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 6 7 8 8 7 9 9 7 10 9 10 11 11 10 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 18 16 19 18 19 20 20 19 21 20 21 22 22 21 23 22 23 24 24 23 25 4 26 27 26 4 5 27 26 28 27 28 29 27 29 30 30 29 31 30 31 32 32 31 33 32 33 34 34 33 35 34 35 36 34 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 25 43 25 23 43 23 45 43 45 46 46 45 47</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID396\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">48 0 49 1 50 2 50 2 49 1 51 3 49 1 52 4 51 3 52 4 53 5 51 3 53 5 54 6 51 3 54 6 55 7 51 3 51 3 55 7 56 8 55 7 57 9 56 8 56 8 57 9 58 10 57 9 59 11 58 10 58 10 59 11 60 12 59 11 61 13 60 12 60 12 61 13 62 14 61 13 63 15 62 14 63 15 64 16 62 14 62 14 64 16 65 17 64 16 66 18 65 17 65 17 66 18 67 19 66 18 68 20 67 19 67 19 68 20 69 21 68 20 70 22 69 21 70 22 71 23 69 21 72 24 73 25 71 23 69 21 71 23 73 25 53 5 52 4 74 26 74 26 52 4 75 27 52 4 76 28 75 27 75 27 76 28 77 29 76 28 78 30 77 29 77 29 78 30 79 31 78 30 80 32 79 31 79 31 80 32 81 33 81 33 80 32 82 34 80 32 83 35 82 34 82 34 83 35 84 36 83 35 85 37 84 36 84 36 85 37 86 38 85 37 87 39 86 38 86 38 87 39 88 40 87 39 89 41 88 40 88 40 89 41 90 42 90 42 89 41 91 43 89 41 92 44 91 43 91 43 92 44 72 24 72 24 92 44 73 25 73 25 92 44 93 45 92 44 94 46 93 45 95 47 93 45 94 46</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID396\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID397\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID401\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID404\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID402\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID403\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID402\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID406\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID406\">-0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151516 1.286033863575761 1.29026651708 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950979 -0.9639834939807769 1.663688891962011 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006284 0.9616870958540129 -1.659710651225625 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.7637458525006196 -0.956506702224935 -1.66269977597085 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950926 -0.9588031003517052 -1.6666787676304 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006284 0.4993573332498595 -1.852061121441011 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID403\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID407\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID407\">-0.7524585417620626 0.1695187983675101 0.6364507207391202 -0.752458751757041 -0.001116951969874288 0.6586384283675927 -0.7524587513418458 -0.0009841473680792699 0.6586386406695468 -0.7524585421170914 0.1693892527612725 0.6364852107032804 0.7524585421170914 -0.1693892527612725 -0.6364852107032804 0.7524585417620626 -0.1695187983675101 -0.6364507207391202 0.752458751757041 0.001116951969874288 -0.6586384283675927 0.7524587513418458 0.0009841473680792699 -0.6586386406695468 -0.7524565325827145 -0.1715493318107424 0.6359087932470239 -0.7524565358976068 -0.1714184440870872 0.6359440845009378 0.7524565325827145 0.1715493318107424 -0.6359087932470239 0.7524565358976068 0.1714184440870872 -0.6359440845009378 -0.003023428365700127 -0.001557416609379177 0.9999942166504876 -0.003023523763512286 0.2573134050059734 0.9663232740176982 -0.003023428365418651 -0.001558199390591175 0.9999942154310586 -0.003023523763771853 0.2573140904666033 0.9663230914923821 0.003023523763771853 -0.2573140904666033 -0.9663230914923821 0.003023428365700127 0.001557416609379177 -0.9999942166504876 0.003023523763512286 -0.2573134050059734 -0.9663232740176982 0.003023428365418651 0.001558199390591175 -0.9999942154310586 -0.752458965034369 0.3283526619799974 0.5709553706815058 -0.7524589655183874 0.3284673404373135 0.5708894038927644 0.7524589655183874 -0.3284673404373135 -0.5708894038927644 0.752458965034369 -0.3283526619799974 -0.5709553706815058 -0.7524536793556657 -0.3302908594592792 0.5698433193271392 -0.7524536801024093 -0.3301728027602695 0.5699117296720337 0.7524536793556657 0.3302908594592792 -0.5698433193271392 0.7524536801024093 0.3301728027602695 -0.5699117296720337 -0.003023637205282373 -0.2603221403258926 0.9655170847137802 -0.00302363720643009 -0.2603227088345894 0.9655169314326214 0.003023637205282373 0.2603221403258926 -0.9655170847137802 0.00302363720643009 0.2603227088345894 -0.9655169314326214 -0.003023769458048854 0.4986487925159631 0.8667988454887539 -0.003023769456780855 0.4986480616163927 0.8667992659575149 0.003023769458048854 -0.4986487925159631 -0.8667988454887539 0.003023769456780855 -0.4986480616163927 -0.8667992659575149 -0.7524604277183468 0.4649355000609762 0.4665171867155301 -0.7524604292449857 0.4650302144511048 0.4664227718154544 0.7524604292449857 -0.4650302144511048 -0.4664227718154544 0.7524604277183468 -0.4649355000609762 -0.4665171867155301 -0.7524523992911886 -0.4665217526188665 0.4649439118155596 -0.7524523999108818 -0.4664284121355344 0.4650375492592817 0.7524523992911886 0.4665217526188665 -0.4649439118155596 0.7524523999108818 0.4664284121355344 -0.4650375492592817 -0.003024220271891797 -0.5013452460737722 0.8652420460951814 -0.003024220270688767 -0.5013448265809373 0.8652422891608365 0.003024220270688767 0.5013448265809373 -0.8652422891608365 0.003024220271891797 0.5013452460737722 -0.8652420460951814 -0.003023789150446498 0.7060009776560012 0.7082044028724647 -0.003023789151712843 0.7060003159894974 0.7082050624797142 0.003023789150446498 -0.7060009776560012 -0.7082044028724647 0.003023789151712843 -0.7060003159894974 -0.7082050624797142 -0.7524618458997252 0.5698351311725082 0.3302863814128411 -0.7524618457279603 0.5699021833508379 0.3301706712226562 0.7524618457279603 -0.5699021833508379 -0.3301706712226562 0.7524618458997252 -0.5698351311725082 -0.3302863814128411 -0.7524479855813711 -0.5709672528893324 0.3283571609125437 -0.75244799164648 -0.5709000097533534 0.3284740457491269 0.7524479855813711 0.5709672528893324 -0.3283571609125437 0.75244799164648 0.5709000097533534 -0.3284740457491269 -0.003024450878027729 -0.7082033825184431 0.7060019983585898 -0.003024450877476187 -0.7082039104336583 0.7060014687968891 0.003024450878027729 0.7082033825184431 -0.7060019983585898 0.003024450877476187 0.7082039104336583 -0.7060014687968891 -0.003023198803451891 0.8652412822109276 0.5013465705746725 -0.003023198805660467 0.8652409285580689 0.5013471809205194 0.003023198803451891 -0.8652412822109276 -0.5013465705746725 0.003023198805660467 -0.8652409285580689 -0.5013471809205194 -0.7524650029900875 0.6358998698302749 0.1715452559092408 -0.7524650076588183 0.6359345265441972 0.1714167150485116 0.7524650076588183 -0.6359345265441972 -0.1714167150485116 0.7524650029900875 -0.6358998698302749 -0.1715452559092408 -0.7524485695931888 -0.6364956983395131 0.1693941442685062 -0.7524485617789981 -0.6364614586825991 0.1695227816204527 0.7524485695931888 0.6364956983395131 -0.1693941442685062 0.7524485617789981 0.6364614586825991 -0.1695227816204527 -0.003024642282712115 -0.8667991712589429 0.4986482209372369 -0.00302464228433073 -0.8667995384389017 0.4986475826685202 0.003024642282712115 0.8667991712589429 -0.4986482209372369 0.00302464228433073 0.8667995384389017 -0.4986475826685202 -0.003021941420137833 0.9655175454494209 0.2603204511738924 -0.003021941424746023 0.9655173587289867 0.2603211437110447 0.003021941420137833 -0.9655175454494209 -0.2603204511738924 0.003021941424746023 -0.9655173587289867 -0.2603211437110447 -0.7524649227682221 0.6586313785893013 0.001116754659718303 -0.7524649176522377 0.6586315962545964 0.0009839297400806876 0.7524649176522377 -0.6586315962545964 -0.0009839297400806876 0.7524649227682221 -0.6586313785893013 -0.001116754659718303 -0.7524562762274313 -0.6586412570388478 -0.001116643288669679 -0.7524562723022982 -0.6586414735750391 -0.0009836461920094291 0.7524562762274313 0.6586412570388478 0.001116643288669679 0.7524562723022982 0.6586414735750391 0.0009836461920094291 -0.00302424272530191 -0.966322583003932 0.2573159915989429 -0.003024242721690821 -0.9663227607441889 0.2573153241136048 0.00302424272530191 0.966322583003932 -0.2573159915989429 0.003024242721690821 0.9663227607441889 -0.2573153241136048 -0.003021067751355109 0.9999942264063256 0.001555732514273759 -0.003021067751511359 0.9999942251911452 0.001556513412098616 0.003021067751355109 -0.9999942264063256 -0.001555732514273759 0.003021067751511359 -0.9999942251911452 -0.001556513412098616 -0.7524581266761962 0.6364513097928596 -0.1695184292692185 -0.7524581327993718 0.6364858961559734 -0.1693884954139764 0.7524581266761962 -0.6364513097928596 0.1695184292692185 0.7524581327993718 -0.6364858961559734 0.1693884954139764 -0.7524554877062412 -0.6359441915615974 -0.1714226479781157 -0.7524554835789596 -0.6359095448500886 -0.171551146893593 0.7524554835789596 0.6359095448500886 0.171551146893593 0.7524554877062412 0.6359441915615974 0.1714226479781157 -0.003022939996113761 -0.9999942166299063 -0.001558377528098246 -0.003022939999784108 -0.9999942178488096 -0.001557595167271352 0.003022939996113761 0.9999942166299063 0.001558377528098246 0.003022939999784108 0.9999942178488096 0.001557595167271352 -0.003022243473153594 0.9663240542030337 -0.2573104900951403 -0.00302224347973812 0.966323868653908 -0.2573111869198347 0.003022243473153594 -0.9663240542030337 0.2573104900951403 0.00302224347973812 -0.966323868653908 0.2573111869198347 -0.752453954284854 0.5708942615132673 -0.3284703774350259 -0.7524539551700281 0.5709604990173309 -0.3283552251919589 0.752453954284854 -0.5708942615132673 0.3284703774350259 0.7524539551700281 -0.5709604990173309 0.3283552251919589 -0.75245270637364 -0.5699112482350072 -0.3301758528514779 -0.7524527067090119 -0.5698454450886161 -0.3302894077593754 0.7524527067090119 0.5698454450886161 0.3302894077593754 0.75245270637364 0.5699112482350072 0.3301758528514779 -0.003022956207305731 -0.9655159878608529 -0.2603262163533472 -0.003022956203584093 -0.9655161881351868 -0.2603254735608669 0.003022956207305731 0.9655159878608529 0.2603262163533472 0.003022956203584093 0.9655161881351868 0.2603254735608669 -0.003023860053777756 0.8667994464540276 -0.4986477473100291 -0.003023860056238176 0.866799054464471 -0.4986484287048933 0.003023860053777756 -0.8667994464540276 0.4986477473100291 0.003023860056238176 -0.866799054464471 0.4986484287048933 -0.7524520034872866 0.4664284183759522 -0.4650381844314248 -0.7524520059884629 0.4665225652234435 -0.4649437329626844 0.7524520034872866 -0.4664284183759522 0.4650381844314248 0.7524520059884629 -0.4665225652234435 0.4649437329626844 -0.7524541205941244 -0.4650354160681895 -0.4664277631136556 -0.7524541226695466 -0.4649429710307974 -0.4665199105790212 0.7524541226695466 0.4649429710307974 0.4665199105790212 0.7524541205941244 0.4650354160681895 0.4664277631136556 -0.003023625947355671 -0.8652411650582806 -0.5013467701847889 -0.003023625947147205 -0.8652415864938384 -0.5013460428563862 0.003023625947355671 0.8652411650582806 0.5013467701847889 0.003023625947147205 0.8652415864938384 0.5013460428563862 -0.003024498956473901 0.7082035258586333 -0.7060018543654559 -0.003024498957837877 0.7082029736233368 -0.7060024083224629 0.003024498956473901 -0.7082035258586333 0.7060018543654559 0.003024498957837877 -0.7082029736233368 0.7060024083224629 -0.7524548626014672 0.3301727897440394 -0.5699101759576202 -0.7524548560904877 0.3302906965735977 -0.5698418599074405 0.7524548626014672 -0.3301727897440394 0.5699101759576202 0.7524548560904877 -0.3302906965735977 0.5698418599074405 -0.7524550849515038 -0.3284703658453776 -0.5708927779294718 -0.7524550849804075 -0.3283542750975831 -0.5709595564593596 0.7524550849804075 0.3283542750975831 0.5709595564593596 0.7524550849515038 0.3284703658453776 0.5708927779294718 -0.003023436767652145 -0.7060015557338235 -0.7082038280972031 -0.003023436769444781 -0.7060023070751241 -0.7082030790915156 0.003023436767652145 0.7060015557338235 0.7082038280972031 0.003023436769444781 0.7060023070751241 0.7082030790915156 -0.003024066204165313 0.5013465000752155 -0.86524132002923 -0.003024066201718197 0.5013460802322781 -0.8652415632985611 0.003024066201718197 -0.5013460802322781 0.8652415632985611 0.003024066204165313 -0.5013465000752155 0.86524132002923 -0.7524593774133471 0.1714196849035536 -0.6359403879061972 -0.7524593773351924 0.171545207486858 -0.6359065397121069 0.7524593774133471 -0.1714196849035536 0.6359403879061972 0.7524593773351924 -0.171545207486858 0.6359065397121069 -0.7524551617968616 -0.1695201961406735 -0.6364543444628897 -0.7524551621628105 -0.169389900494532 -0.6364890341121294 0.7524551621628105 0.169389900494532 0.6364890341121294 0.7524551617968616 0.1695201961406735 0.6364543444628897 -0.003023456200964241 -0.498649628175152 -0.8667983658460503 -0.00302345619967725 -0.4986502339698029 -0.8667980173457189 0.00302345619967725 0.4986502339698029 0.8667980173457189 0.003023456200964241 0.498649628175152 0.8667983658460503 -0.003023170420924781 0.260321986899808 -0.9655171275420972 -0.00302317041934693 0.2603211190972351 -0.9655173615179473 0.00302317041934693 -0.2603211190972351 0.9655173615179473 0.003023170420924781 -0.260321986899808 0.9655171275420972 -0.7524572925624328 0.0009838075905523819 -0.6586403077494104 -0.7524572962038846 0.001116597773462055 -0.6586400918551432 0.7524572925624328 -0.0009838075905523819 0.6586403077494104 0.7524572962038846 -0.001116597773462055 0.6586400918551432 -0.003023757163787752 -0.2573148938061689 -0.9663228768471408 -0.003023757164135984 -0.257314121269845 -0.9663230825597305 0.003023757163787752 0.2573148938061689 0.9663228768471408 0.003023757164135984 0.257314121269845 0.9663230825597305 -0.003023376607918181 0.00155726701169435 -0.9999942170399491 -0.003023376605318863 0.001558049788827533 -0.9999942158206505 0.003023376607918181 -0.00155726701169435 0.9999942170399491 0.003023376605318863 -0.001558049788827533 0.9999942158206505</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID405\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"192\" source=\"#ID408\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"384\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID408\">-3.696624459452266 5.823858262090928 -4.040246963321643 6.795564893228256 0.9890827628466336 6.463093582785248 0.8935679007835635 7.468892618247301 -0.9529481975090883 6.466222128749999 -0.8551161998463231 7.471883329228509 3.729258442558688 5.811233706692518 4.07507250558566 6.782456078829257 -7.669972009859915 -1.835835337729923 -7.554321652554542 2.111785202383856 7.520717237189627 -2.106470744697186 7.63609149265897 1.831723202669839 -6.629265165315137 5.393041111258648 -2.241789872750055 7.291664938508001 -5.90273736965205 4.562006538717816 -1.735763312451184 6.364938643819828 1.768131448370683 6.359083708982839 2.27580128791188 7.285250498133096 5.926144752668277 4.543403046768413 6.654145913192843 5.373626057838043 7.555789239779621 2.108606428206098 7.668686127052055 -1.839057708593067 -7.634813705495054 1.834989415906823 -7.522186994038186 -2.10322894330467 -7.595724971270944 2.017799588171895 7.598413731494718 1.926247716636706 -7.632211106838805 -1.930765085388588 7.562014832044193 -2.012872824046142 -8.324555039492182 3.660162647609309 -4.81941465461502 6.4734078982287 -7.324240456616781 3.029240377010939 -3.995200295744808 5.700833126747577 4.020265958111306 5.689488510288188 4.845342759447187 6.461479132204169 7.337817537611757 3.009063783125704 8.338854610045059 3.639262429833399 7.632062042614949 -1.931080970865312 -7.562169654384618 -2.01252978617579 7.595891934628797 2.017484888043871 -7.598253173295223 1.926593136966556 -7.604280525974141 1.99775209317084 7.590162806256027 1.94624081239991 -7.623955884291689 -1.950882992818789 7.570534444041288 -1.992951860281939 -9.221774272756345 1.91194394298594 -6.718836162952989 5.323810449893363 -8.053104492918207 1.49712621750965 -5.675786398794395 4.737275524689899 5.693691067492606 4.723354330334615 6.737080334535841 5.309500309403943 8.058934044048545 1.477726111620418 9.227804990882156 1.892125520133433 7.604353213083794 1.997658685379888 7.623905935675444 -1.950977619621975 -7.590091221085666 1.946343936349168 -7.570585176680469 -1.992873761941959 -7.608357971913602 1.988098722674424 7.586171209310034 1.955863353392116 -7.619941292962327 -1.960561098109789 7.574615404368769 -1.983378289115803 -9.530272482541513 0.2746756156189894 -8.039325504952567 4.035248474488306 -8.274409480860204 0.07154880520611728 -6.858172886042456 3.642920142785312 6.870173671642146 3.627808949292373 8.051367441154209 4.019989372762995 8.274442799196638 0.05352251049803518 9.530305767400433 0.2564839307956014 7.608407674373749 1.988121343208024 7.619919383937229 -1.960542415976749 -7.586121691995373 1.955936271722545 -7.574637547254818 -1.98328952605131 -7.611019100226375 1.981758278354976 7.583544916727871 1.962188646121968 -7.617277576123059 -1.966904209989248 7.577301328813645 -1.977040668559802 -9.405511470881637 -1.240742243288395 -8.907815301433299 2.678985865460446 -8.123357840021573 -1.240750832424818 -7.650419727648758 2.481813686900803 7.657930885613808 2.465945293105961 8.915288502883657 2.663096804961726 8.119140709179817 -1.257537690235669 9.401272865435805 -1.257546018046028 7.611084735482613 1.981768564680788 7.617292804392591 -1.966902198835446 -7.583479377394854 1.962214253446523 -7.577286260901328 -1.977014389700738 -7.613120069812265 1.976745737194301 7.581459565158655 1.967310797641272 -7.615123097651352 -1.971918595009516 7.579461129931657 -1.971921953343625 -9.40150003157304 1.257442113621577 -8.119346403993839 1.257431712139362 -8.915537713431498 -2.663206671196163 -7.658166793412561 -2.466041118855443 7.650148767210773 -2.481713396774992 8.123108074390222 1.240849617657296 8.907523179620583 -2.678883862796719 9.4052402334673 1.240842837764527 -7.581390237913452 1.967188101395981 7.613189535885248 1.976618480108285 -7.57943764585014 -1.972050019822055 7.615146667941806 -1.972047747371725 7.579485914074268 1.97196708429726 7.581436772792678 -1.967275288237997 -7.615098313537803 1.971965794024384 -7.613142864168738 -1.976698898278629 -9.530625737779101 -0.25656725043594 -8.274749853594916 -0.05359064644060455 -8.051667980628185 -4.020064251666414 -6.870443660400792 -3.627887047345771 6.857934007589495 -3.64281816651194 8.274163615890476 -0.07144692779477511 8.039062677012478 -4.035156716714083 9.530005361959193 -0.2745723376109419 -7.579437553117938 1.972059733917022 7.615146760673897 1.972057399417009 -7.581436910305003 -1.967173248538126 7.613142749986364 -1.976607435662339 7.577315792308811 1.976949996703046 7.583505855838784 -1.96227509970517 -7.617263129816307 1.966838229966558 -7.611058272200855 -1.981825946153671 -9.227871799659241 -1.89215435520369 -8.058966808118642 -1.477763534671876 -6.737129216083037 -5.309523955305282 -5.693760167031574 -4.723377340212994 5.67558565569558 -4.737197305973607 8.052840575659085 -1.49704295134452 6.718603029494449 -5.323738691458113 9.221486487586468 -1.911869754300307 -7.577285369609861 1.977050570888327 7.617293560270303 1.966914482853697 -7.58353067722906 -1.962188734427586 7.611033394817669 -1.981754273956296 7.574638852779416 1.983381936755945 7.586122794998227 -1.955846374730674 -7.619918079974323 1.960632188041886 -7.608406550904774 -1.988032733024195 -8.338839386390088 -3.639205298984838 -7.337822183067741 -3.009007241083356 -4.845341235349157 -6.46142968527283 -4.020258889731459 -5.689438975694102 3.995128624001985 -5.700755173353182 7.324198181243452 -3.029144275291806 4.819358432886512 -6.47331750582667 8.324474868783517 -3.660076593319374 -7.574614745364233 1.983312116988463 7.619942024878952 1.960505775974488 -7.586170583499415 -1.95591014113808 7.60835859070232 -1.988135387999505 -7.604356035217696 -1.99769600445393 -7.623909739917847 1.950936307139087 7.590088410733276 -1.946377631840885 7.570581331427527 1.992838049551194 -6.654222092787895 -5.373730949672475 -5.926219203160268 -4.543505385850812 -2.275894023815066 -7.285346259589042 -1.768164791791738 -6.359189590593228 1.735701167858861 -6.364888541509357 5.902663718800884 -4.56193950172254 2.241735351137526 -7.291601797073808 6.629208755942161 -5.392962666056423 7.604268587691806 -1.997775046101012 -7.590174738516678 -1.946265886184374 7.623938984367359 1.950861077277974 -7.570551389136386 1.992910516343811 -7.59588595364065 -2.017442116402822 -7.632050366310129 1.931128964526406 7.59825903017894 -1.926544287206376 7.562181491525478 2.012562850542992 -4.075150813204585 -6.782473277036217 -3.729273224583506 -5.811255341959331 0.8550672826260229 -7.471889629038476 0.9528974804567071 -6.466230103660284 -0.9891114730239413 -6.463016631894419 3.696609987697176 -5.823790531437526 -0.8935970025749593 -7.468813907025647 4.040236589761045 -6.795486286170825 7.632213683143744 1.930717081479863 7.595726351403361 -2.01783708517383 -7.562012115608883 2.012838846303647 -7.598412396963864 -1.926287761518784 -7.668671507496315 1.83911283206964 7.522201914891844 2.103271019508454 -7.555790432103792 -2.108548548224249 7.634813601656944 -1.834968467158941 7.669984821502206 1.835824551549613 7.554320332815763 -2.111817851860591 -7.52070372868721 2.106484885781963 -7.636091856533377 -1.831723312270308</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 1 0 3 2 8 9 8 2 1 12 13 14 13 12 15 0 20 3 20 0 21 9 24 25 24 9 8 28 14 29 14 28 12 13 32 33 32 13 15 21 36 20 36 21 37 25 40 41 40 25 24 44 28 29 28 44 45 33 48 49 48 33 32 37 52 36 52 37 53 41 56 57 56 41 40 60 44 61 44 60 45 49 64 65 64 49 48 53 68 52 68 53 69 57 72 73 72 57 56 76 61 77 61 76 60 65 80 81 80 65 64 69 84 68 84 69 85 73 88 89 88 73 72 92 77 93 77 92 76 81 96 97 96 81 80 84 100 101 100 84 85 88 104 89 104 88 105 92 108 109 108 92 93 112 96 113 96 112 97 101 116 117 116 101 100 105 120 104 120 105 121 109 124 125 124 109 108 128 113 129 113 128 112 117 132 133 132 117 116 121 136 120 136 121 137 125 140 141 140 125 124 144 129 145 129 144 128 133 148 149 148 133 132 137 152 136 152 137 153 141 156 157 156 141 140 145 160 144 160 145 161 149 164 165 164 149 148 153 168 152 168 153 169 172 157 156 157 172 173 161 176 160 176 161 177 165 180 181 180 165 164 169 180 168 180 169 181 184 172 185 172 184 173 176 188 189 188 176 177 188 185 189 185 188 184</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID404\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4 0 5 1 6 2 7 3 6 2 5 1 6 4 7 5 10 6 11 7 10 6 7 5 16 8 17 9 18 10 19 11 18 10 17 9 22 12 5 13 23 14 4 15 23 14 5 13 10 16 11 17 26 18 27 19 26 18 11 17 17 20 30 21 19 22 31 23 19 22 30 21 16 24 18 25 34 26 35 27 34 26 18 25 38 28 22 29 39 30 23 31 39 30 22 29 26 32 27 33 42 34 43 35 42 34 27 33 46 36 47 37 30 38 31 39 30 38 47 37 34 40 35 41 50 42 51 43 50 42 35 41 54 44 38 45 55 46 39 47 55 46 38 45 42 48 43 49 58 50 59 51 58 50 43 49 46 52 62 53 47 54 63 55 47 54 62 53 50 56 51 57 66 58 67 59 66 58 51 57 70 60 54 61 71 62 55 63 71 62 54 61 58 64 59 65 74 66 75 67 74 66 59 65 62 68 78 69 63 70 79 71 63 70 78 69 66 72 67 73 82 74 83 75 82 74 67 73 86 76 70 77 87 78 71 79 87 78 70 77 74 80 75 81 90 82 91 83 90 82 75 81 78 84 94 85 79 86 95 87 79 86 94 85 82 88 83 89 98 90 99 91 98 90 83 89 86 92 87 93 102 94 103 95 102 94 87 93 106 96 90 97 107 98 91 99 107 98 90 97 95 100 94 101 110 102 111 103 110 102 94 101 99 104 114 105 98 106 115 107 98 106 114 105 102 108 103 109 118 110 119 111 118 110 103 109 122 112 106 113 123 114 107 115 123 114 106 113 110 116 111 117 126 118 127 119 126 118 111 117 114 120 130 121 115 122 131 123 115 122 130 121 118 124 119 125 134 126 135 127 134 126 119 125 138 128 122 129 139 130 123 131 139 130 122 129 126 132 127 133 142 134 143 135 142 134 127 133 130 136 146 137 131 138 147 139 131 138 146 137 134 140 135 141 150 142 151 143 150 142 135 141 154 144 138 145 155 146 139 147 155 146 138 145 142 148 143 149 158 150 159 151 158 150 143 149 162 152 147 153 163 154 146 155 163 154 147 153 150 156 151 157 166 158 167 159 166 158 151 157 170 160 154 161 171 162 155 163 171 162 154 161 174 164 175 165 159 166 158 167 159 166 175 165 178 168 162 169 179 170 163 171 179 170 162 169 166 172 167 173 182 174 183 175 182 174 167 173 183 176 170 177 182 178 171 179 182 178 170 177 174 180 186 181 175 182 187 183 175 182 186 181 178 184 179 185 190 186 191 187 190 186 179 185 186 188 190 189 187 190 191 191 187 190 190 189</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID404\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID405\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID409\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID412\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID410\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID411\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID410\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID414\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID414\">0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 0.4757403116530008 1.787046344116789 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.9220519445225366 1.603022710678486 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 0.9220519445225366 1.603022710678486 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151476 1.785497189630175 0.4815196415974014 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.7557056430950975 1.361733376410932 -1.357502525122301 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151387 1.309760632593005 -1.305527979088765 0.7557056430950975 1.361733376410932 -1.357502525122301 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.84819144251514 1.603025714371136 -0.9220525452610677 0.84819144251514 1.603025714371136 -0.9220525452610677 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.7557056430950979 1.858045828870668 -0.494764837365608 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.7557056430950979 1.858045828870668 -0.494764837365608 0.7557056430950908 1.922786669424786 0.002991490153192444 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151409 1.849288112382276 0.00299149015319311 0.7557056430950908 1.922786669424786 0.002991490153192444 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.60003328556399 0.9272330890747753 0.7557056430950908 1.663689943254438 0.9639850709194202 0.7557056430950908 1.663689943254438 0.9639850709194202 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.7557056430950904 1.357503426230103 1.361732775672407 0.7557056430950904 1.357503426230103 1.361732775672407 0.8481914425151351 1.305526777611701 1.309757628900341</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID411\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID415\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID415\">0.6221918684034155 -0.001303781729081092 0.7828637040033659 0.6221941339063147 0.2014863019961419 0.7564904030062049 0.6221918691918711 -0.001174692367902513 0.7828639077191937 0.6221941321218698 0.2013597797845118 0.7565240915121251 -0.6221941321218698 -0.2013597797845118 -0.7565240915121251 -0.6221918684034155 0.001303781729081092 -0.7828637040033659 -0.6221941339063147 -0.2014863019961419 -0.7564904030062049 -0.6221918691918711 0.001174692367902513 -0.7828639077191937 0.6221901218932683 -0.2038805206493446 0.7558519600544753 0.6221901229061849 -0.2037543408673254 0.755885983158643 -0.6221901218932683 0.2038805206493446 -0.7558519600544753 -0.6221901229061849 0.2037543408673254 -0.755885983158643 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 0.622195876340844 0.3903006052975382 0.678629301584322 0.6221958765038165 0.3904133786148501 0.6785644295571243 -0.622195876340844 -0.3903006052975382 -0.678629301584322 -0.6221958765038165 -0.3904133786148501 -0.6785644295571243 0.6221894238249361 -0.3924488889485895 0.677395150885664 0.6221894242877948 -0.392561562997384 0.6773298602316846 -0.6221894242877948 0.392561562997384 -0.6773298602316846 -0.6221894238249361 0.3924488889485895 -0.677395150885664 0.6221894259644839 -0.5544921390400044 0.5526470717925018 0.6221894262295475 -0.5543996744161857 0.5527398293007061 -0.6221894259644839 0.5544921390400044 -0.5526470717925018 -0.6221894262295475 0.5543996744161857 -0.5527398293007061 0.6221935983998548 -0.6785663445167995 0.3904136808557666 0.6221936044128955 -0.6786309659335652 0.3903013332077736 -0.6221935983998548 0.6785663445167995 -0.3904136808557666 -0.6221936044128955 0.6786309659335652 -0.3903013332077736 0.6222050039132737 -0.7564827860628643 0.2014813328719305 0.6222050124535287 -0.7565155769512322 0.2013581493455097 -0.6222050039132737 0.7564827860628643 -0.2014813328719305 -0.6222050124535287 0.7565155769512322 -0.2013581493455097 0.6222055415468412 -0.7828530407950558 -0.001174983547447636 0.6222055340692866 -0.7828528419120427 -0.001304332699868602 -0.6222055415468412 0.7828530407950558 0.001174983547447636 -0.6222055340692866 0.7828528419120427 0.001304332699868602 0.6221917009441136 -0.7558510087740555 -0.203879228494502 0.6221917107911614 -0.7558845909667217 -0.2037546567856542 -0.6221917009441136 0.7558510087740555 0.203879228494502 -0.6221917107911614 0.7558845909667217 0.2037546567856542 0.6221815841653294 -0.6773359418068746 -0.392563495834897 0.6221815865170676 -0.6773995833087608 -0.3924536634205645 -0.6221815841653294 0.6773359418068746 0.392563495834897 -0.6221815865170676 0.6773995833087608 0.3924536634205645 0.6221798007864562 -0.5526539130480859 -0.554496120713179 0.6221798004943125 -0.5527449429825729 -0.5544053786391775 -0.6221798007864562 0.5526539130480859 0.554496120713179 -0.6221798004943125 0.5527449429825729 0.5544053786391775 0.6221838439383094 -0.3903078065454426 -0.678636191557623 0.622183838657477 -0.3904185239302142 -0.6785725068742466 -0.6221838439383094 0.3903078065454426 0.678636191557623 -0.622183838657477 0.3904185239302142 0.6785725068742466 0.6221885184214142 -0.201487412154011 -0.7564947258825042 0.6221885190971537 -0.2013628297434559 -0.7565278960497087 -0.6221885190971537 0.2013628297434559 0.7565278960497087 -0.6221885184214142 0.201487412154011 0.7564947258825042 0.6221871363076309 0.00130441775786443 -0.7828674638197849 0.6221871383491345 0.001175274353274519 -0.7828676667247855 -0.6221871363076309 -0.00130441775786443 0.7828674638197849 -0.6221871383491345 -0.001175274353274519 0.7828676667247855 0.6221898070491942 0.2038792279466273 -0.7558525679098893 0.6221898011836357 0.2037549411636534 -0.7558860861627658 -0.6221898070491942 -0.2038792279466273 0.7558525679098893 -0.6221898011836357 -0.2037549411636534 0.7558860861627658 0.6221939030436636 0.3925585914201147 -0.6773274683028494 0.6221939035143759 0.3924479534520299 -0.6773915782328985 -0.6221939030436636 -0.3925585914201147 0.6773274683028494 -0.6221939035143759 -0.3924479534520299 0.6773915782328985 0.6221903896076413 0.5543987480332496 -0.5527396740410957 0.6221903859354878 0.5544908010891638 -0.5526473334387365 -0.6221903859354878 -0.5544908010891638 0.5526473334387365 -0.6221903896076413 -0.5543987480332496 0.5527396740410957 0.6221910156914612 0.678568769305014 -0.3904135823927066 0.6221910202362403 0.6786331798213453 -0.3903016033568862 -0.6221910202362403 -0.6786331798213453 0.3903016033568862 -0.6221910156914612 -0.678568769305014 0.3904135823927066 0.6221853496726847 0.7564982237091488 -0.2014840643266405 0.6221853387884145 0.7565314500689442 -0.2013593038658174 -0.6221853387884145 -0.7565314500689442 0.2013593038658174 -0.6221853496726847 -0.7564982237091488 0.2014840643266405 0.6221793638195623 0.7828738475245173 0.001173924718077005 0.622179367250408 0.7828736406861537 0.00130295306474845 -0.622179367250408 -0.7828736406861537 -0.00130295306474845 -0.6221793638195623 -0.7828738475245173 -0.001173924718077005 0.622189223507684 0.7558868877678742 0.2037537313805625 0.6221892329183988 0.7558531905054573 0.2038786718691672 -0.6221892329183988 -0.7558531905054573 -0.2038786718691672 -0.622189223507684 -0.7558868877678742 -0.2037537313805625 0.6221951309101329 0.6773259154460521 0.3925593246082557 0.6221951326288879 0.6773907079233851 0.3924475070018612 -0.6221951326288879 -0.6773907079233851 -0.3924475070018612 -0.6221951309101329 -0.6773259154460521 -0.3925593246082557 0.6221949112080535 0.5526439122938858 0.554489133050694 0.6221949093854745 0.55273621248258 0.5543971267468953 -0.6221949093854745 -0.55273621248258 -0.5543971267468953 -0.6221949112080535 -0.5526439122938858 -0.554489133050694</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID413\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"144\" source=\"#ID416\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID416\">-1.399394685447692 3.99758154621831 3.662193290876626 4.107473716139581 -1.250023878680641 4.919473912535772 3.325059649491211 3.216767926096336 -3.346531992851785 3.203384761442292 1.219983462261442 4.924407217212858 -3.68705615598036 4.093286913307604 1.372898142287666 4.002874476983909 -13.05527828904129 -10.30342549923025 -13.66913394578432 -0.02353490189121231 -16.00031333163775 -7.294225363887784 -13.19562582832752 -2.805824911607605 -11.82288121501415 -5.396910799146412 -9.220524701687543 -12.61044414255163 -9.644378024947853 -7.620210540823365 -6.808676644055874 -9.324186320342909 -4.757417384070129 -14.05810026995697 -3.508928026645748 -10.39275039272216 0.02993367461101789 -14.54771542895396 0.02993367461098014 -10.75306030751745 3.56674422924643 -10.38057079947547 4.815205427051927 -14.04592303961512 6.860518126504815 -9.300652969108006 9.272333143517251 -12.58691433567411 9.686716574760796 -7.58692666256699 13.09760632593005 -10.27015343549829 11.8527964920076 -5.35615068982347 13.21113689719592 -2.760366756640539 16.03025714371136 -7.2534800227204 13.66916248086444 0.02353305587179104 16.0003328556399 7.294233634054899 17.85497189630175 3.787954513899558 17.87046043747516 -3.742493405301364 18.49288112382276 0.0235330558717858 -17.85496739076283 -3.787953332447107 -17.87042739685603 3.742497540384916 -18.4927970204285 -0.02353490189122628 -16.03022410309207 7.253473524731939 -13.09757328531092 10.27014516533118 -13.2110843325745 2.760368233456089 -11.85278748092962 5.356150689823473 -9.272324132439298 12.58691788003143 -9.686702307220683 7.586924890388302 -6.860480580346522 9.300657694917794 -4.815191534973343 14.0459159509005 -3.5666972965487 10.38056843657058 -0.02990082172258827 14.54770834023929 -0.02990082172260382 10.75306267042233 3.508941918724347 10.39274802981726 4.757403116530008 14.05809790705208 6.80868640605695 9.324190455426477 9.220519445225365 12.61044532400409 9.644406560028058 7.620199907751378 13.05526777611702 10.30342668068269 11.8228864714763 5.396912571325081 13.19564835602249 2.805823139428946 1.162658492477524 4.932771090314962 4.606236932793788 2.014872649270415 5.339868907720868 2.743315371972167 0.5886060988810937 4.120513442521916 -5.353301219116173 2.726315394172552 -0.611291521408307 4.117988780848812 -1.187571050858884 4.929264283026042 -4.617667416210899 1.999131421715409 -5.164343543501015 0.8290711333373181 -2.99636583736415 4.428807317739661 -6.141480814850693 1.351387648974424 -2.139599332309027 3.788942846944112 -3.20239465897159 3.292826485442597 -6.372640036501849 0.1891437608247533 -5.26773872097306 -0.1397922540547897 -4.225021602925385 3.758142633215543 -3.943277568442837 2.750953874283442 -6.301440743977258 -0.7720073775261384 -5.136984467603375 -0.9288234656837572 -5.060075937571718 3.054007997932716 -4.477181062845431 2.188046769828072 -6.045781765648268 -1.597450497087772 -4.864377425616241 -1.59744239333856 -5.642996750969768 2.338482509684357 -4.471180360231378 -2.195912950284375 -6.049493045559932 1.588934727628423 -5.636963394135375 -2.34637225796323 -4.868088702938565 1.588940824409902 -3.935010939522044 -2.758405912819115 -6.303369004477561 0.7623055482335482 -5.051724644990093 -3.061634706345457 -5.138980702977859 0.9193062601172498 -3.190956910517112 -3.299940318090963 -6.372186186701201 -0.2009621428356244 -4.213235749099931 -3.765702618015408 -5.267538473975297 0.1284836752139618 -2.123166668350666 -3.794862669340203 -6.13638914881693 -1.36597498609087 -2.978922285784557 -4.43555752449242 -5.160082680879592 -0.8427219285103885 -1.16256291986312 -4.932657257001637 -4.606122629645602 -2.014735477800759 -5.339735788379853 -2.743176144763794 -0.5885197661079195 -4.120399914351149 1.399436221034114 -3.997516865119874 -3.662179849014553 -4.107398405247095 1.250064419912603 -4.919404685624561 -3.325063773367089 -3.216692463880472 3.346512787926854 -3.203272247311469 -1.21997784929461 -4.924298380406616 3.68705418545108 -4.093164790378991 -1.372895805521925 -4.00277042444336 4.617747902423629 -1.999222052002686 1.187652019463948 -4.929337193170962 5.353407928182614 -2.726409124851045 0.6113642978876138 -4.118071356985403 6.141565090651655 -1.351438121476672 2.139663964115627 -3.788989196166075 2.996454837881586 -4.42885565877945 5.164438050886696 -0.8291264049415041 6.372654774740514 -0.1890906805768049 3.202401858901243 -3.292778259440419 4.225021696139704 -3.75808538423671 5.267743730206006 0.1398428529100231 6.301322821900057 0.7719723381833509 3.943189382779365 -2.750992348204655 5.059997234893208 -3.054044110362204 5.136887609411004 0.9287968784213682 6.04489261921601 1.597565779340973 4.476345343562111 -2.187929742582891 5.642141342295993 -2.338367823715728 4.863551817964225 1.597558026222105 5.636555464348028 2.346311909831038 4.86769810624192 -1.589009864038318 6.049038901895399 -1.588997567746211 4.470751428024356 2.195852734366363 6.303703735283573 -0.7621972952458326 3.935311944199161 2.758511066035775 5.13929496892643 -0.9192004917269404 5.05203837862957 3.061732231587077 6.372547766122596 0.2010852094342388 3.191244841452139 3.300055229866782 5.267888059821077 -0.1283553981323895 4.213545717048607 3.765827006196082 2.979191962199724 4.435783737510645 5.160386065421639 0.8429754464373749 6.136714648690377 1.366238049433706 2.123424527614135 3.795082979436403</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"192\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 2 5 9 6 2 5 8 4 0 7 5 7 10 4 7 5 11 6 7 5 10 4 12 8 13 9 14 10 13 9 12 8 15 11 15 11 12 8 16 12 16 12 12 8 17 13 16 12 17 13 18 14 18 14 17 13 19 15 19 15 17 13 20 16 19 15 20 16 21 17 21 17 20 16 22 18 21 17 22 18 23 19 23 19 22 18 24 20 24 20 22 18 25 21 24 20 25 21 26 22 26 22 25 21 27 23 26 22 27 23 28 24 28 24 27 23 29 25 28 24 29 25 30 26 30 26 29 25 31 27 31 27 29 25 32 28 31 27 32 28 33 29 33 29 32 28 34 30 34 30 32 28 35 31 35 31 32 28 36 32 35 31 36 32 37 33 38 34 39 35 40 36 39 35 38 34 41 37 41 37 38 34 14 10 41 37 14 10 42 38 42 38 14 10 13 9 42 38 13 9 43 39 42 38 43 39 44 40 42 38 44 40 45 41 45 41 44 40 46 42 45 41 46 42 47 43 45 41 47 43 48 44 48 44 47 43 49 45 48 44 49 45 50 46 50 46 49 45 51 47 50 46 51 47 52 48 50 46 52 48 53 49 53 49 52 48 54 50 53 49 54 50 55 51 55 51 54 50 56 52 55 51 56 52 57 53 57 53 56 52 58 54 57 53 58 54 59 55 57 53 59 55 34 30 34 30 59 55 33 29 60 29 61 55 62 30 62 30 61 55 63 53 61 55 64 54 63 53 64 54 65 52 63 53 63 53 65 52 66 51 65 52 67 50 66 51 66 51 67 50 68 49 67 50 69 48 68 49 68 49 69 48 70 46 69 48 71 47 70 46 71 47 72 45 70 46 70 46 72 45 73 44 72 45 74 43 73 44 73 44 74 43 75 41 74 43 76 42 75 41 76 42 77 40 75 41 75 41 77 40 78 38 77 40 79 39 78 38 79 39 80 9 78 38 80 9 81 10 78 38 78 38 81 10 82 37 81 10 83 34 82 37 82 37 83 34 84 35 85 36 84 35 83 34 86 33 87 32 88 31 87 32 89 28 88 31 88 31 89 28 62 30 62 30 89 28 60 29 60 29 89 28 90 27 89 28 91 25 90 27 90 27 91 25 92 26 92 26 91 25 93 24 91 25 94 23 93 24 93 24 94 23 95 22 94 23 96 21 95 22 95 22 96 21 97 20 96 21 98 18 97 20 97 20 98 18 99 19 99 19 98 18 100 17 98 18 101 16 100 17 100 17 101 16 102 15 101 16 103 13 102 15 102 15 103 13 104 14 104 14 103 13 105 12 103 13 106 8 105 12 105 12 106 8 107 11 107 11 106 8 80 9 81 10 80 9 106 8 1 56 108 57 109 58 108 57 1 56 3 59 4 59 6 56 110 57 111 58 110 57 6 56 112 60 8 61 9 62 8 61 112 60 113 63 114 63 115 60 10 61 11 62 10 61 115 60 116 64 112 65 117 66 112 65 116 64 113 67 114 67 118 64 115 65 119 66 115 65 118 64 116 68 120 69 121 70 120 69 116 68 117 71 119 71 118 68 122 69 123 70 122 69 118 68 121 72 124 73 125 74 124 73 121 72 120 75 122 75 123 72 126 73 127 74 126 73 123 72 125 76 128 77 129 78 128 77 125 76 124 79 126 79 127 76 130 77 131 78 130 77 127 76 132 80 128 81 133 82 128 81 132 80 129 83 131 83 134 80 130 81 135 82 130 81 134 80 136 84 133 85 137 86 133 85 136 84 132 87 134 87 138 84 135 85 139 86 135 85 138 84 140 88 137 89 141 90 137 89 140 88 136 91 138 91 142 88 139 89 143 90 139 89 142 88 144 92 141 93 145 94 141 93 144 92 140 95 142 95 146 92 143 93 147 94 143 93 146 92 148 96 144 97 145 98 144 97 148 96 149 99 150 99 151 96 146 97 147 98 146 97 151 96 152 100 148 101 153 102 148 101 152 100 149 103 150 103 154 100 151 101 155 102 151 101 154 100 156 104 153 105 157 106 153 105 156 104 152 107 154 107 158 104 155 105 159 106 155 105 158 104 160 108 157 109 161 110 157 109 160 108 156 111 158 111 162 108 159 109 163 110 159 109 162 108 164 112 160 113 161 114 160 113 164 112 165 115 166 115 167 112 162 113 163 114 162 113 167 112 168 116 165 117 164 118 165 117 168 116 169 119 170 119 171 116 166 117 167 118 166 117 171 116 172 120 169 121 168 122 169 121 172 120 173 123 174 123 175 120 170 121 171 122 170 121 175 120 176 124 173 125 172 126 173 125 176 124 177 127 178 127 179 124 174 125 175 126 174 125 179 124 180 128 177 129 176 130 177 129 180 128 181 131 182 131 183 128 178 129 179 130 178 129 183 128 180 132 184 133 181 134 184 133 180 132 185 135 186 135 183 132 187 133 182 134 187 133 183 132 185 136 188 137 184 138 188 137 185 136 189 139 190 139 186 136 191 137 187 138 191 137 186 136 109 140 188 141 189 142 188 141 109 140 108 143 110 143 111 140 191 141 190 142 191 141 111 140</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID412\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID413\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID417\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID420\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID418\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID419\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID418\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID422\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID422\">-0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID419\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID423\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID423\">-0.9015424253173537 0.203441541780783 0.381880602323241 -0.913408876044686 0.2046884346174862 0.3518335826731535 -0.914297075399253 0.215116645721763 0.3431991938361602 0.914297075399253 -0.215116645721763 -0.3431991938361602 0.913408876044686 -0.2046884346174862 -0.3518335826731535 0.9015424253173537 -0.203441541780783 -0.381880602323241 -0.9136510681511446 0.2298793945988548 0.3352569009060609 0.9136510681511446 -0.2298793945988548 -0.3352569009060609 -0.9117782845679017 0.2541872650090479 0.3225665731250447 0.9117782845679017 -0.2541872650090479 -0.3225665731250447 -0.9120084709463099 0.1943087758477377 0.3612265889310024 0.9120084709463099 -0.1943087758477377 -0.3612265889310024 -0.9141809063392639 0.1816931123289236 0.3622994388857799 0.9141809063392639 -0.1816931123289236 -0.3622994388857799 -0.914761389475236 0.2626135214064524 0.306994688390269 0.914761389475236 -0.2626135214064524 -0.306994688390269 -0.9126379924856676 0.2390954511057188 0.3315497849980955 0.9126379924856676 -0.2390954511057188 -0.3315497849980955 -0.9141710218943564 0.2509149231036151 0.3183285159902191 0.9141710218943564 -0.2509149231036151 -0.3183285159902191 -0.9164054954864268 0.1852852093678754 0.3547821289633675 0.9164054954864268 -0.1852852093678754 -0.3547821289633675 -0.8960867889457255 0.2095902619358588 0.3912804477335874 0.8960867889457255 -0.2095902619358588 -0.3912804477335874 -0.907217225171867 0.2176423778275239 0.3599843076094281 0.907217225171867 -0.2176423778275239 -0.3599843076094281 -0.8562445711454921 0.1718809545737532 0.4871367075459286 0.8562445711454921 -0.1718809545737532 -0.4871367075459286 -0.8755394211216304 0.1676337555122239 0.4531331438714985 0.8755394211216304 -0.1676337555122239 -0.4531331438714985</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID421\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"78\" source=\"#ID424\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"156\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID424\">7.438147269351948 -8.945061733813203 11.48721830684091 -14.18013834552815 11.91024662259696 -14.00044492351452 5.955123311298482 -7.00022246175726 5.743609153420457 -7.090069172764073 3.719073634675974 -4.472530866906602 8.254929826970962 -8.487481463314271 12.88197936170507 -13.45581934143577 13.28861338462427 -13.18460323054936 6.644306692312134 -6.592301615274679 6.440989680852535 -6.727909670717886 4.127464913485481 -4.243740731657136 8.460166676803608 -8.414954825070682 12.39471472312215 -13.45941836602513 12.70973102284357 -13.55074890505256 6.354865511421787 -6.775374452526281 6.197357361561076 -6.729709183012567 4.230083338401804 -4.207477412535341 7.486582909888019 -8.962355583693171 12.38139310001852 -13.74944422881806 12.3713572617144 -13.48543642483197 6.185678630857198 -6.742718212415983 6.19069655000926 -6.874722114409029 3.74329145494401 -4.481177791846585 7.360925690233538 -8.961744858697601 10.65623561054411 -13.82917257110459 11.08396695669552 -14.10459549978603 5.54198347834776 -7.052297749893013 5.328117805272056 -6.914586285552295 3.680462845116769 -4.480872429348801 8.419948186108105 -8.356981608688461 13.46124800907294 -12.7724965200221 13.26768441638996 -12.36521479670056 6.633842208194981 -6.182607398350278 6.730624004536471 -6.386248260011051 4.209974093054052 -4.17849080434423 8.259253079178057 -8.537099214004153 9.876498001695808 -11.98045450806011 11.72036966567479 -13.33278326480139 5.860184832837393 -6.666391632400697 4.938249000847904 -5.990227254030056 4.129626539589029 -4.268549607002076 8.323250129800233 -8.425467281546748 13.15729410283716 -12.4439210471574 11.97966509082454 -10.58711210718703 5.989832545412269 -5.293556053593514 6.578647051418579 -6.221960523578701 4.161625064900116 -4.212733640773374 6.956289496105613 -10.6269661093069 8.850256094164777 -12.34833197236433 7.350777491034236 -8.872150234277518 3.675388745517118 -4.436075117138759 4.425128047082389 -6.174165986182165 3.478144748052807 -5.313483054653452 7.951820622852295 -8.756422366433158 11.57804377148073 -10.94931484447147 10.13372814794584 -9.101011452070644 5.066864073972921 -4.550505726035322 5.789021885740366 -5.474657422235735 3.975910311426147 -4.378211183216579 7.059350620025528 -10.00408034766921 7.554866048665636 -10.57803416141198 7.911156915166181 -8.818168903335222 3.955578457583091 -4.409084451667611 3.777433024332818 -5.28901708070599 3.529675310012764 -5.002040173834605 7.514844530510416 -9.783809952703798 9.68941088965202 -10.15601053307976 9.193989107545409 -9.508454846182369 4.596994553772705 -4.754227423091185 4.84470544482601 -5.078005266539878 3.757422265255208 -4.891904976351899 7.370703582872622 -9.539412442323325 9.051855465856226 -9.271744288876676 8.659595885478712 -9.110994827756787 4.329797942739356 -4.555497413878394 4.525927732928113 -4.635872144438338 3.685351791436311 -4.769706221161663</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"13\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 0 6 2 7 6 8 0 12 8 13 1 14 0 18 6 19 10 20 0 24 12 25 8 26 0 30 10 31 14 32 0 36 16 37 12 38 0 42 14 43 18 44 20 48 16 49 0 50 0 54 18 55 22 56 24 60 20 61 0 62 0 66 22 67 26 68 0 72 26 73 28 74</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID420\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID421\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"13\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 3 4 4 5 5 7 9 3 10 5 11 4 15 9 16 5 17 11 21 7 22 5 23 9 27 13 28 5 29 15 33 11 34 5 35 13 39 17 40 5 41 19 45 15 46 5 47 5 51 17 52 21 53 23 57 19 58 5 59 5 63 21 64 25 65 27 69 23 70 5 71 29 75 27 76 5 77</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID420\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID421\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID425\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID428\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID426\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID427\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID426\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID430\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"102\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID430\">-0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID427\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID431\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"102\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID431\">-0.9142974941597579 -0.4048897335756242 0.01115328732918963 -0.9119121534907809 -0.4102455541326406 0.01071492558113266 -0.9134093689969149 -0.4070360955457695 -0.002222960079090378 0.9134093689969149 0.4070360955457695 0.002222960079090378 0.9119121534907809 0.4102455541326406 -0.01071492558113266 0.9142974941597579 0.4048897335756242 -0.01115328732918963 -0.9136502264216238 -0.4055454024125849 0.02786019277984999 0.9136502264216238 0.4055454024125849 -0.02786019277984999 -0.9117790669024211 -0.4069450223696586 0.05526917700770017 0.9117790669024211 0.4069450223696586 -0.05526917700770017 -0.9120015951730859 -0.4098723359248514 -0.01605486360118063 0.9120015951730859 0.4098723359248514 0.01605486360118063 -0.9141814459760682 -0.4043812773638791 -0.02735080164569932 0.9141814459760682 0.4043812773638791 0.02735080164569932 -0.9147624108846287 -0.3977990536394137 0.07046732970766671 0.9147624108846287 0.3977990536394137 -0.07046732970766671 -0.9126372670989114 -0.4070248176210724 0.03773614371876295 0.9126372670989114 0.4070248176210724 -0.03773614371876295 -0.9144871313551589 -0.4004184535448701 0.05812356360846403 0.9144871313551589 0.4004184535448701 -0.05812356360846403 -0.9204794639534302 -0.3894229249437765 -0.03267020000305571 0.9204794639534302 0.3894229249437765 0.03267020000305571 -0.9088875917936953 -0.4158717928127509 0.03120893183313543 0.9088875917936953 0.4158717928127509 -0.03120893183313543 -0.9109205019190907 -0.4117843417158877 -0.0256416672836413 0.9109205019190907 0.4117843417158877 0.0256416672836413 -0.9100402409371641 -0.4142768079748553 0.01419458520680808 0.9100402409371641 0.4142768079748553 -0.01419458520680808 -0.8630221137902762 -0.5042508634437252 0.03039568760896014 0.8630221137902762 0.5042508634437252 -0.03039568760896014 -0.9456945690175788 -0.3202907360795988 0.05545833131500434 0.9456945690175788 0.3202907360795988 -0.05545833131500434 -0.8815078276401288 -0.4717714966614515 0.01938052494116135 0.8815078276401288 0.4717714966614515 -0.01938052494116135</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID429\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"90\" source=\"#ID432\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID432\">-21.27670996781477 -0.5024825625750654 -13.45535559221688 -0.2253901856971766 -21.24412297407829 -0.125142413745954 -10.62206148703914 -0.06257120687297701 -6.727677796108438 -0.1126950928485883 -10.63835498390739 -0.2512412812875327 -21.24619008053712 -1.035354676238285 -21.18446660970853 -1.451884809972818 -13.42484942034366 -0.7580228247401991 -6.712424710171829 -0.3790114123700996 -10.59223330485427 -0.7259424049864089 -10.62309504026856 -0.5176773381191425 -21.25751011054963 -0.7668235939129079 -13.46874671677735 -0.8672629349756258 -20.98510383527625 -0.6124360400889033 -10.49255191763812 -0.3062180200444516 -6.734373358388677 -0.4336314674878129 -10.62875505527481 -0.3834117969564539 -21.26028882019027 -0.9262762329989754 -20.97141608118763 -1.060835085065468 -13.50058237987369 -0.2330322036721792 -6.750291189936846 -0.1165161018360896 -10.48570804059382 -0.5304175425327341 -10.63014441009513 -0.4631381164994877 -20.9479230613187 0.06512407169546448 -13.43154180529066 -0.1892618490922838 -20.42396479385608 0.2036061404282778 -10.21198239692804 0.1018030702141389 -6.71577090264533 -0.09463092454614187 -10.47396153065935 0.03256203584773224 -20.85307675263828 -1.723023086473669 -20.31535974206487 -1.82375838440512 -13.38256041331185 -0.8934496676200572 -6.691280206655926 -0.4467248338100286 -10.15767987103244 -0.9118791922025602 -10.42653837631914 -0.8615115432368344 -20.47295909683744 -0.3353143390356228 -13.48055350387107 -0.7283738844541267 -18.02003060176221 0.1220255335760297 -9.010015300881104 0.06101276678801487 -6.740276751935537 -0.3641869422270633 -10.23647954841872 -0.1676571695178114 -20.33158400188232 -1.748210110450446 -17.71476096729495 -2.009425410882813 -13.39863503439812 -0.8185917493552359 -6.699317517199058 -0.409295874677618 -8.857380483647473 -1.004712705441407 -10.16579200094116 -0.8741050552252229 -17.86863127354823 0.6202423415971474 -13.32897297677283 -0.2295582768528615 -15.0082564826709 0.9665192416528483 -7.504128241335451 0.4832596208264242 -6.664486488386415 -0.1147791384264307 -8.934315636774112 0.3101211707985737 -17.76961962851651 -1.883509276524634 -15.02644916115231 -1.943272607151886 -13.4529889311389 -0.693808394268258 -6.72649446556945 -0.346904197134129 -7.513224580576157 -0.9716363035759428 -8.884809814258253 -0.9417546382623171 -14.89071638258296 1.073873522804769 -13.21218803543074 -0.1228597901630481 -14.02614066497001 1.087155530817702 -7.013070332485004 0.5435777654088512 -6.60609401771537 -0.06142989508152404 -7.445358191291481 0.5369367614023844 -15.35883216443236 -1.675075450976801 -14.44465413117839 -1.686613223182673 -13.78397498742696 -0.4267008592463119 -6.891987493713481 -0.213350429623156 -7.222327065589196 -0.8433066115913365 -7.679416082216179 -0.8375377254884004 -15.11723179364458 0.6225414511188454 -14.30189428277912 -0.5868967377974099 -14.69836427084818 0.4732769352801142 -7.349182135424091 0.2366384676400571 -7.150947141389562 -0.293448368898705 -7.558615896822288 0.3112707255594227 -13.29140723759785 -2.096895835997954 -12.92434911954095 -1.920022184078838 -12.63674340539486 -0.8350418093976046 -6.318371702697432 -0.4175209046988023 -6.462174559770474 -0.960011092039419 -6.645703618798926 -1.048447917998977 -14.41809006551084 0.5267253828811376 -14.02024496794676 -0.5331294523352237 -14.1800185543271 0.1536412372854066 -7.090009277163551 0.07682061864270329 -7.010122483973378 -0.2665647261676118 -7.209045032755421 0.2633626914405688</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"15\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 0 6 6 7 1 8 2 12 1 13 8 14 6 18 10 19 1 20 8 24 1 25 12 26 10 30 14 31 1 32 12 36 1 37 16 38 14 42 18 43 1 44 16 48 1 49 20 50 18 54 22 55 1 56 20 60 1 61 24 62 22 66 26 67 1 68 24 72 1 73 28 74 26 78 30 79 1 80 28 84 1 85 32 86</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID428\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID429\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"15\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 3 4 4 5 5 4 9 7 10 5 11 9 15 4 16 3 17 4 21 11 22 7 23 13 27 4 28 9 29 4 33 15 34 11 35 17 39 4 40 13 41 4 45 19 46 15 47 21 51 4 52 17 53 4 57 23 58 19 59 25 63 4 64 21 65 4 69 27 70 23 71 29 75 4 76 25 77 4 81 31 82 27 83 33 87 4 88 29 89</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID428\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID429\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID433\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID436\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID434\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID435\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID434\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID438\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID438\">-0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID435\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID439\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID439\">-0.9105526100805975 0.1847929401693026 -0.369791175582917 -0.9047258764599201 0.221095053799041 -0.3641264418432539 -0.9056830514341907 0.2001496463545517 -0.3737356410740096 0.9056830514341907 -0.2001496463545517 0.3737356410740096 0.9047258764599201 -0.221095053799041 0.3641264418432539 0.9105526100805975 -0.1847929401693026 0.369791175582917 -0.9051369888889698 0.176876174222501 -0.386577094946688 0.9051369888889698 -0.176876174222501 0.386577094946688 -0.904493813809657 0.1911218988267972 -0.3812654725632798 0.904493813809657 -0.1911218988267972 0.3812654725632798 -0.9048570575862879 0.1960303289645085 -0.3778965671481442 0.9048570575862879 -0.1960303289645085 0.3778965671481442 -0.9032828455301246 0.283194694223623 -0.3223055477874834 0.9032828455301246 -0.283194694223623 0.3223055477874834 -0.903932511685058 0.08979039239145804 -0.4181431570083751 0.903932511685058 -0.08979039239145804 0.4181431570083751 -0.9053391715144735 0.2442462075276558 -0.347425926824473 0.9053391715144735 -0.2442462075276558 0.347425926824473 -0.9034477096128234 0.08055611706507812 -0.4210616914405072 0.9034477096128234 -0.08055611706507812 0.4210616914405072 -0.9051167199063447 0.3004841266895872 -0.3007873217966073 0.9051167199063447 -0.3004841266895872 0.3007873217966073 -0.9038086622089847 0.07690250391578957 -0.4209701972913139 0.9038086622089847 -0.07690250391578957 0.4209701972913139 -0.8916242092027337 0.2877059539723708 -0.3496162948325602 0.8916242092027337 -0.2877059539723708 0.3496162948325602 -0.8974554480062785 0.08990498062023532 -0.4318458212180883 0.8974554480062785 -0.08990498062023532 0.4318458212180883 -0.8779052696244868 0.2831733692969536 -0.3861284507603243 0.8779052696244868 -0.2831733692969536 0.3861284507603243 -0.8787757289941988 0.135225059641794 -0.4576760878346039 0.8787757289941988 -0.135225059641794 0.4576760878346039 -0.9571766001854924 0.2406762368571569 -0.1608971878859901 0.9571766001854924 -0.2406762368571569 0.1608971878859901 -0.9663187840262552 -0.06408349179479717 -0.2492414767196787 0.9663187840262552 0.06408349179479717 0.2492414767196787</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID437\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"96\" source=\"#ID440\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"192\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID440\">7.247890561596551 9.017184793018476 11.62241699167023 14.15859673204485 11.23701380701663 14.38472431556303 5.618506903508315 7.192362157781517 5.811208495835114 7.079298366022423 3.623945280798275 4.508592396509238 6.312270124388578 9.4365141150515 10.09506839990886 14.89571032499116 9.610237607549587 15.07004322533177 4.805118803774794 7.535021612665886 5.047534199954431 7.447855162495579 3.156135062194289 4.71825705752575 6.493139303682451 9.389856794481524 10.73290706126174 14.34965055071956 10.70820329278883 14.61305107737053 5.354101646394414 7.306525538685265 5.366453530630868 7.174825275359781 3.246569651841226 4.694928397240762 6.929856889300352 9.19065053817757 10.37099973231822 14.77093216045764 10.07214180933752 14.65062086041686 5.036070904668759 7.32531043020843 5.185499866159109 7.385466080228818 3.464928444650176 4.595325269088785 7.821705813732769 8.685069065969902 12.17351499889409 13.08321338276301 12.31835537755474 13.50282029479082 6.159177688777371 6.751410147395411 6.086757499447046 6.541606691381505 3.910852906866384 4.342534532984951 5.370170743512229 9.751768766821881 8.151522194221171 15.33158858879169 7.77529816670016 15.01302132937492 3.88764908335008 7.506510664687459 4.075761097110585 7.665794294395843 2.685085371756115 4.87588438341094 7.211427886669418 9.036025413102365 10.6191642510143 11.62672481508899 11.45974683281593 13.49634638012442 5.729873416407967 6.748173190062207 5.309582125507149 5.813362407544494 3.605713943334709 4.518012706551183 5.235798096827196 9.792612949944351 7.610509003207477 15.06240894843653 6.043161989998992 13.39339577620473 3.021580994999496 6.696697888102364 3.805254501603738 7.531204474218267 2.617899048413598 4.896306474972175 7.980285588588723 8.469341774523125 10.22937862915607 8.939277822018701 11.46063465620553 10.99959879798778 5.730317328102766 5.499799398993892 5.114689314578033 4.46963891100935 3.990142794294362 4.234670887261562 4.605625825318914 11.54493689437456 5.204683511179758 9.799429035524494 6.007223952446729 13.40087908685941 3.003611976223365 6.700439543429704 2.602341755589879 4.899714517762247 2.302812912659457 5.772468447187281 7.838690672075432 8.780226490960692 9.603947610001866 8.670713562118595 10.08534950006962 9.25731378331802 5.042674750034811 4.62865689165901 4.801973805000933 4.335356781059297 3.919345336037716 4.390113245480346 4.061243782257101 10.93449054480636 5.113560001846171 9.800622461742714 4.507682296432314 11.54467298219238 2.253841148216157 5.772336491096191 2.556780000923085 4.900311230871357 2.030621891128551 5.46724527240318 7.906737286793971 9.178667328377136 9.276434081040812 8.875378320044581 9.671671521288179 9.065981605457438 4.835835760644089 4.532990802728719 4.638217040520406 4.43768916002229 3.953368643396986 4.589333664188568 5.196960240007307 11.11464310537072 5.184839687325803 10.74959644287122 6.191963544606201 9.949194390801255 3.0959817723031 4.974597195400627 2.592419843662901 5.374798221435611 2.598480120003654 5.557321552685361 7.116338653487188 7.625819840706948 7.961446468619004 7.383621000725571 8.493525136113068 7.344301545890064 4.246762568056534 3.672150772945032 3.980723234309502 3.691810500362786 3.558169326743594 3.812909920353474 2.15770661357887 9.356257960679804 2.510419584926491 9.040122526603774 3.248034811266818 8.626432983016079 1.624017405633409 4.313216491508039 1.255209792463246 4.520061263301887 1.078853306789435 4.678128980339902</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"16\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 0 6 2 7 6 8 0 12 8 13 1 14 0 18 6 19 10 20 0 24 12 25 8 26 0 30 10 31 14 32 0 36 16 37 12 38 0 42 14 43 18 44 0 48 20 49 16 50 22 54 0 55 18 56 0 60 24 61 20 62 26 66 0 67 22 68 0 72 28 73 24 74 26 78 30 79 0 80 0 84 32 85 28 86 30 90 34 91 0 92</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID436\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID437\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"16\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 3 4 4 5 5 7 9 3 10 5 11 4 15 9 16 5 17 11 21 7 22 5 23 9 27 13 28 5 29 15 33 11 34 5 35 13 39 17 40 5 41 19 45 15 46 5 47 17 51 21 52 5 53 19 57 5 58 23 59 21 63 25 64 5 65 23 69 5 70 27 71 25 75 29 76 5 77 5 81 31 82 27 83 29 87 33 88 5 89 5 93 35 94 31 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID436\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID437\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID441\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID444\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID442\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID443\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID442\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID446\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID446\">-0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID443\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID447\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID447\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1357431839025557 0.7497550114468473 0.6476428111500465 -0.1366815993397975 0.7492072263892851 0.6480792176331454 -0.1339049186988217 0.7508247768900788 0.6467856114325872 0.1339049186988217 -0.7508247768900788 -0.6467856114325872 0.1366815993397975 -0.7492072263892851 -0.6480792176331454 0.1357431839025557 -0.7497550114468473 -0.6476428111500465 -0.1390632020355034 0.9113651292871443 -0.3873951818996452 -0.1334097867881871 0.9103994814047611 -0.3916307100408146 -0.1520463180641854 0.9134113510277387 -0.3775733319195171 0.1520463180641854 -0.9134113510277387 0.3775733319195171 0.1334097867881871 -0.9103994814047611 0.3916307100408146 0.1390632020355034 -0.9113651292871443 0.3873951818996452 -0.1620999136155048 0.09272970269960207 -0.9824076649961 -0.1662539374228294 0.0953143051630216 -0.9814656445962314 -0.1567944187057105 0.08942895644361149 -0.9835740805918715 0.1567944187057105 -0.08942895644361149 0.9835740805918715 0.1662539374228294 -0.0953143051630216 0.9814656445962314 0.1620999136155048 -0.09272970269960207 0.9824076649961 -0.1839627565907119 -0.7773362748139587 -0.6015862532055601 -0.1731947688567061 -0.7836915051681265 -0.5965158814046685 -0.1804827978264776 -0.7794077832683366 -0.5999578877466854 0.1804827978264776 0.7794077832683366 0.5999578877466854 0.1731947688567061 0.7836915051681265 0.5965158814046685 0.1839627565907119 0.7773362748139587 0.6015862532055601 -0.1454069155601703 -0.830330389039357 0.5379667963220666 -0.159394116583764 -0.8338018904044722 0.5285526682899351 -0.1498802405936568 -0.8314662140399025 0.5349764933057699 0.1498802405936568 0.8314662140399025 -0.5349764933057699 0.159394116583764 0.8338018904044722 -0.5285526682899351 0.1454069155601703 0.830330389039357 -0.5379667963220666 -0.1178688308120367 -0.1336192904808511 0.9839983861442035 -0.1169608422628643 -0.1329517455880777 0.9841971320432936 -0.1200646820303652 -0.1352334059142434 0.9835122765140153 0.1200646820303652 0.1352334059142434 -0.9835122765140153 0.1169608422628643 0.1329517455880777 -0.9841971320432936 0.1178688308120367 0.1336192904808511 -0.9839983861442035 -0.1149780011914516 -0.1314937652318465 0.9846265530378361 0.1149780011914516 0.1314937652318465 -0.9846265530378361 -0.1383533907224121 0.748228527281576 0.6488546911579324 0.1383533907224121 -0.748228527281576 -0.6488546911579324 -0.1218391275179259 0.9082828720398434 -0.4002217527380592 0.1218391275179259 -0.9082828720398434 0.4002217527380592 -0.171069294297384 0.09831063701288102 -0.9803419378965262 0.171069294297384 -0.09831063701288102 0.9803419378965262 -0.1903801350748161 -0.7734717985712226 -0.6045632977479636 0.1903801350748161 0.7734717985712226 0.6045632977479636 -0.1369570666554436 -0.8281195642851391 0.5435630130365088 0.1369570666554436 0.8281195642851391 -0.5435630130365088</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID445\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID448\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID448\">-2.556691561629541 -2.602862605502018 -2.586245081388976 -3.138366854245081 -2.334681128296288 -2.878373475755785 -2.951301684127827 -2.560178796236892 -3.07457980125035 -3.103438394186436 -3.22750530352778 -2.812409736805045 3.575431113631269 -3.789832146312027 3.841902111534349 -4.161649426798395 3.890396129634985 -3.830929293644298 3.566726244310392 -1.436325568056493 3.912498830598775 -1.754485825277173 3.887388388210999 -1.440193123441505 -0.6269127531905233 3.417011356515528 -0.02789107994044388 3.434714660158956 -0.4520798298547238 3.628218854229932 -4.876425679403012 -2.926478984311723 -4.930711116245211 -3.25041739217853 -4.616564961458593 -3.307009919642491 -4.878537780603065 -1.515035859425156 -4.836851909935116 -1.83958610627239 -4.513663973358447 -1.850958396857737 -4.790052294242987 -1.141577079945387 -5.308185798548161 -1.055748647629636 -5.046195202738853 -1.291777653134048 -4.796520925120116 -1.098375304575961 -5.090443691600591 -0.8300736736479857 -5.313828097940997 -1.009515787560939 3.552114816996843 -3.802895821126935 3.495993835408513 -4.170866329638131 3.816637853167348 -4.175572887189126 3.688828852934125 -1.375709284375783 3.713607575865441 -1.738790116719466 4.0296039108369 -1.697189035132493 -0.6101368924396966 3.352691153528167 -0.1460547981744018 3.138679991438502 -0.01104629650652111 3.368886973135145 -4.906343357164033 -2.861941179468713 -4.653434003548693 -3.245359532973397 -4.583199311398975 -2.874060766680606 -4.518465614885066 -1.386244061110217 -4.835281606577187 -1.418604677661858 -4.476160721886599 -1.758342063168315</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 42 24 48 25 43 26 46 26 49 25 47 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 24 33 54 34 25 35 28 35 55 34 29 33 30 36 32 37 56 38 57 38 33 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID444\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID445\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID449\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID452\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID450\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID451\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID450\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID454\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID454\">-0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID451\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID455\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID455\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211700042938787 0.789903523489808 0.6011407935232872 -0.1116879029147231 0.7955488162724242 0.5955064174885576 -0.1556107303666403 0.7682758938062599 0.6209166220926551 0.1556107303666403 -0.7682758938062599 -0.6209166220926551 0.1116879029147231 -0.7955488162724242 -0.5955064174885576 0.1211700042938787 -0.789903523489808 -0.6011407935232872 -0.07906121212958679 0.7719592340661052 -0.6307362885364001 -0.1090844255234062 0.783426245276965 -0.6118365029315144 -0.1244233597649755 0.7888847891485317 -0.60181360652188 0.1244233597649755 -0.7888847891485317 0.60181360652188 0.1090844255234062 -0.783426245276965 0.6118365029315144 0.07906121212958679 -0.7719592340661052 0.6307362885364001 -0.1697468595286489 -0.006068861490700951 -0.9854690114865956 -0.1572201673390395 -0.01588452934778078 -0.9874358210584038 -0.2018053130177652 0.01921618423162401 -0.979237128534952 0.2018053130177652 -0.01921618423162401 0.979237128534952 0.1572201673390395 0.01588452934778078 0.9874358210584038 0.1697468595286489 0.006068861490700951 0.9854690114865956 -0.1343567494298995 -0.8462231442695603 -0.5156109521578944 -0.1086210651978576 -0.8602669808478003 -0.4981387215006411 -0.1301145213637191 -0.8486119901717154 -0.5127649573314177 0.1301145213637191 0.8486119901717154 0.5127649573314177 0.1086210651978576 0.8602669808478003 0.4981387215006411 0.1343567494298995 0.8462231442695603 0.5156109521578944 -0.1133150330807146 -0.8395891544271424 0.5312718278303796 -0.1395139141062699 -0.8459706197122566 0.5146548147587942 -0.1233984985839719 -0.8421416557768033 0.5249478470788555 0.1233984985839719 0.8421416557768033 -0.5249478470788555 0.1395139141062699 0.8459706197122566 -0.5146548147587942 0.1133150330807146 0.8395891544271424 -0.5312718278303796 -0.1260546410823167 0.1544903123830586 0.9799198798072183 -0.1302224134692138 0.1510864416931907 0.9799056128866409 -0.1131147639969138 0.1650111135103676 0.9797838448270062 0.1131147639969138 -0.1650111135103676 -0.9797838448270062 0.1302224134692138 -0.1510864416931907 -0.9799056128866409 0.1260546410823167 -0.1544903123830586 -0.9799198798072183 -0.1420492710714026 0.1413865864036689 0.9797100784278996 0.1420492710714026 -0.1413865864036689 -0.9797100784278996 -0.07903885031514943 0.8139813077432695 0.5754887407981291 0.07903885031514943 -0.8139813077432695 -0.5754887407981291 -0.1506678535050407 0.7975887197008246 -0.5840816998727005 0.1506678535050407 -0.7975887197008246 0.5840816998727005 -0.1263475132736118 -0.03992446121385578 -0.9911822956885165 0.1263475132736118 0.03992446121385578 0.9911822956885165 -0.1536418730879432 -0.8349919501480647 -0.5283773443496233 0.1536418730879432 0.8349919501480647 0.5283773443496233 -0.09890193715248216 -0.8357326912076589 0.5401567139953833 0.09890193715248216 0.8357326912076589 -0.5401567139953833</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID453\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID456\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID456\">2.761839076668994 -2.686682816693547 2.821044674853094 -3.223738017132682 2.994709736256524 -2.987806394483918 2.418521699517856 -3.217524168002713 2.38695007375611 -2.736350782082216 2.1541310401361 -2.962968129024459 4.546856623073591 -1.394885293464188 4.816630126722004 -1.72556996709557 4.862848037992812 -1.436471730911179 4.674295548158963 -3.13614816966916 4.356729313977708 -3.137265300856367 4.701232558523698 -3.464185464245616 2.790045554862084 2.35347060364349 3.232835120194977 2.574608855939533 2.832124689239227 2.605261509879871 -4.067706033708806 -1.206600595934767 -4.089461011924668 -1.478694176529454 -3.773819348498676 -1.514619174466891 -3.969045730769214 -3.701827264759665 -3.931153506527283 -4.05303378018515 -3.610399023948869 -4.057492832424999 5.001577739208429 -0.581536198764107 5.043212311869807 -0.9815096230854541 5.255177150779224 -0.7332430780051124 4.606137713813613 -1.534142956742709 4.850872795825993 -1.696794596249568 4.9024837554483 -1.297541471095555 4.37016457834615 -1.331467340770913 4.347788412930141 -1.649491048209251 4.665354963484203 -1.648431032989956 4.483803267194991 -3.009115504783515 4.536459444617076 -3.384541965459336 4.849233383170659 -3.32165800873397 1.04044806537555 3.226749937533368 1.452060210471746 3.329977995737437 1.340664256104527 3.565066468173025 -3.862250629639993 -0.9756131540381329 -3.57981940945645 -1.290193905695045 -3.541497141569373 -0.9801162596498589 -3.807240998867626 -3.6140169568218 -4.122520570283084 -3.650081136837909 -3.774866068728113 -4.012438122951902</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 6 5 7 4 8 3 7 4 9 0 8 3 8 3 9 0 10 1 11 2 10 1 9 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 19 30 52 31 20 32 21 32 53 31 22 30 24 33 54 34 25 35 28 35 55 34 29 33 30 36 32 37 56 38 57 38 33 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID452\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID453\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID457\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID460\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID458\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID459\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID458\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID462\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID462\">-0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID459\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID463\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID463\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1281283390755502 0.939946060968536 0.3163613933391273 -0.1346201936039555 0.9376228862790311 0.3205319431816625 -0.1162781854949556 0.9440221721569896 0.3087094460070827 0.1162781854949556 -0.9440221721569896 -0.3087094460070827 0.1346201936039555 -0.9376228862790311 -0.3205319431816625 0.1281283390755502 -0.939946060968536 -0.3163613933391273 -0.1649346685400534 0.70700699320098 -0.687704636220007 -0.138001516637389 0.6955840009988096 -0.7050662940179939 -0.1262440609561076 0.6903675011133202 -0.7123588635511321 0.1262440609561076 -0.6903675011133202 0.7123588635511321 0.138001516637389 -0.6955840009988096 0.7050662940179939 0.1649346685400534 -0.70700699320098 0.687704636220007 -0.1286676828647164 -0.2510584934495154 -0.9593822284434316 -0.1249639091624064 -0.2537058685940289 -0.959175350834142 -0.1349838365174811 -0.2465273866193998 -0.9596893307344993 0.1349838365174811 0.2465273866193998 0.9596893307344993 0.1249639091624064 0.2537058685940289 0.959175350834142 0.1286676828647164 0.2510584934495154 0.9593822284434316 -0.1434766227141468 -0.9644040248531957 -0.2221245947244455 -0.1258995814562067 -0.9694811380793162 -0.2103701934628239 -0.137528258736553 -0.9661754887229821 -0.2181533933721836 0.137528258736553 0.9661754887229821 0.2181533933721836 0.1258995814562067 0.9694811380793162 0.2103701934628239 0.1434766227141468 0.9644040248531957 0.2221245947244455 -0.1200262461105332 -0.6312838785604785 0.7662077818152547 -0.1185484243271057 -0.6305364008267925 0.7670528784392604 -0.1239625549634292 -0.6332652192933885 0.7639426987675421 0.1239625549634292 0.6332652192933885 -0.7639426987675421 0.1185484243271057 0.6305364008267925 -0.7670528784392604 0.1200262461105332 0.6312838785604785 -0.7662077818152547 -0.1074482883687536 0.2164917070285634 0.9703536500237859 -0.1045482762700885 0.2188615063811693 0.9701388039623601 -0.1167974670152386 0.208822637995721 0.9709538905423534 0.1167974670152386 -0.208822637995721 -0.9709538905423534 0.1045482762700885 -0.2188615063811693 -0.9701388039623601 0.1074482883687536 -0.2164917070285634 -0.9703536500237859 -0.09592521523731801 0.2258827503490979 0.9694201030391322 0.09592521523731801 -0.2258827503490979 -0.9694201030391322 -0.1453360876391361 0.933647648128806 0.3273827893663605 0.1453360876391361 -0.933647648128806 -0.3273827893663605 -0.1018954951506087 0.6791262154425009 -0.7269146384320226 0.1018954951506087 -0.6791262154425009 0.7269146384320226 -0.1190712048485406 -0.2579031796181484 -0.9588055058867603 0.1190712048485406 0.2579031796181484 0.9588055058867603 -0.154126908222058 -0.9610952896026681 -0.2292176704913324 0.154126908222058 0.9610952896026681 0.2292176704913324 -0.115015487565636 -0.6287414646692523 0.7690615113406746 0.115015487565636 0.6287414646692523 -0.7690615113406746</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID461\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID464\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID464\">4.360066392024481 1.345881974146346 4.569212760641203 0.8212451680291688 4.659980598047449 1.15030729017397 4.139088478041265 0.7343252686688629 3.993090241948528 1.28379398993862 3.858881499525051 0.9609417295217747 4.615259486836989 2.070469394477851 4.916285000295099 1.711163197031581 4.932691922661467 2.050594508079105 5.237714155139309 -0.7850202068611257 4.917103607755755 -0.805118177735519 5.301373169335704 -1.097168139238578 -1.662795203246673 4.446608370819519 -1.733459754836062 4.880174696214064 -1.940032066892782 4.570920503433157 -3.840719447785261 1.984768461447111 -3.852408664159016 1.648173959859722 -3.534587250218728 1.624071027479026 -3.179303377019544 -2.513625773284166 -3.557127484714577 -2.219977571431748 -3.499512347452446 -2.523060644294281 5.765266348757652 1.69019121520112 5.857553404921535 1.299387320327408 6.036691952030751 1.558880138713572 5.379672069378961 1.860096852462629 5.68267868581342 1.783065168379234 5.53875939098732 2.16409055123303 4.72200273180184 2.074276447220133 4.697355198809692 1.697146151252073 5.018382483950596 1.712588065047657 4.680145291440302 -1.1477025667911 4.730220832293885 -1.507328388868188 5.042709028738651 -1.456450100848597 -1.849061549422705 4.695147414247404 -2.15044191010415 4.778099156923561 -2.043781256662477 4.349112368737373 -3.363423892743181 2.083472085264609 -3.683758735701449 2.077217382872447 -3.380644054737866 1.71494630994848 -3.246199033616235 -2.51847405722835 -3.308006398490402 -2.172864553124199 -3.620464559827389 -2.222019128872433</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 6 5 7 4 8 3 7 4 9 0 8 3 8 3 9 0 10 1 11 2 10 1 9 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 19 30 52 31 20 32 21 32 53 31 22 30 54 33 25 34 24 35 29 35 28 34 55 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 58 40 37 41 40 41 59 40 41 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID460\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID461\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID465\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID468\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID466\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID467\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID466\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID470\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID470\">-0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID467\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID471\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID471\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1135576304247743 0.5024134134834092 0.8571379273630698 -0.1060549371234037 0.5081935363673253 0.8546880599998006 -0.1410029563660657 0.4807853474390595 0.8654268403417659 0.1410029563660657 -0.4807853474390595 -0.8654268403417659 0.1060549371234037 -0.5081935363673253 -0.8546880599998006 0.1135576304247743 -0.5024134134834092 -0.8571379273630698 -0.1001724357446263 0.9948230072652543 0.01710752269338355 -0.0992313783360488 0.9949317552839722 0.01624610356613912 -0.1067686555805312 0.994014375944963 0.02314896542551481 0.1067686555805312 -0.994014375944963 -0.02314896542551481 0.0992313783360488 -0.9949317552839722 -0.01624610356613912 0.1001724357446263 -0.9948230072652543 -0.01710752269338355 -0.1204055105956813 0.4823208077810515 -0.8676803278855798 -0.1287480142985737 0.4875078415387097 -0.8635739998705626 -0.09891909191161409 0.4687497692647048 -0.8777748384806138 0.09891909191161409 -0.4687497692647048 0.8777748384806138 0.1287480142985737 -0.4875078415387097 0.8635739998705626 0.1204055105956813 -0.4823208077810515 0.8676803278855798 -0.148440743472404 -0.4706111030796328 -0.869764643645355 -0.1437557280381843 -0.4742852702663527 -0.8685549913877557 -0.1646652191806799 -0.4577190077569442 -0.8737154431107287 0.1646652191806799 0.4577190077569442 0.8737154431107287 0.1437557280381843 0.4742852702663527 0.8685549913877557 0.148440743472404 0.4706111030796328 0.869764643645355 -0.09475985240703004 -0.9954707181582593 0.007656347776652718 -0.1039611698752289 -0.994581356731652 -1.567513741408958e-017 -0.09646331398013955 -0.9953169813336709 0.006239849741635174 0.09646331398013955 0.9953169813336709 -0.006239849741635174 0.1039611698752289 0.994581356731652 1.567513741408958e-017 0.09475985240703004 0.9954707181582593 -0.007656347776652718 -0.1004692751834205 -0.4547958960035424 0.8849105139631087 -0.1080393619639094 -0.4596758574940459 0.881490557126703 -0.08050414354804245 -0.4417526345097378 0.8935175951123192 0.08050414354804245 0.4417526345097378 -0.8935175951123192 0.1080393619639094 0.4596758574940459 -0.881490557126703 0.1004692751834205 0.4547958960035424 -0.8849105139631087 -0.1261670868981231 -0.4712139498534301 0.8729486122602924 0.1261670868981231 0.4712139498534301 -0.8729486122602924 -0.08066176544082679 0.5273398224729309 0.8458169963001376 0.08066176544082679 -0.5273398224729309 -0.8458169963001376 -0.09298631847472325 0.9956116753904154 0.01053263513122168 0.09298631847472325 -0.9956116753904154 -0.01053263513122168 -0.1480979007488019 0.499360107511594 -0.8536430722613565 0.1480979007488019 -0.499360107511594 0.8536430722613565 -0.128617271239178 -0.4860099095104769 -0.8644373692735674 0.128617271239178 0.4860099095104769 0.8644373692735674 -0.08787557746910753 -0.9960416408784326 0.01337656610159817 0.08787557746910753 0.9960416408784326 -0.01337656610159817</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID469\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID472\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID472\">0.3783244763866356 3.599650192905323 0.04688576503043994 3.183664922406017 0.3783244763866733 3.320256183830747 0.027122406016975 3.736241749693183 -0.3004302779671875 3.329571050263488 -0.2925268116698577 3.596545335882117 4.000044726454139 1.10793485062912 4.21481509604171 0.7529116011386672 4.304771798895633 1.03172710660281 4.10347570606989 3.588741106063421 4.420431663145973 3.314529897656492 4.421275731804731 3.581575744406544 4.004262736190113 2.404159357085891 4.391308998608645 2.132013168039903 4.319595171864108 2.43657218669946 -3.898880727774464 2.528130711158829 -4.085679924831708 2.901690795312082 -4.197876129968127 2.620891524746142 -4.41453160017797 3.599650192905323 -4.414531600177956 3.320256183830747 -4.096804965313124 3.297878293086227 -4.021893908100886 0.8163003856027347 -4.40070684784139 1.094589961698369 -4.337741485997127 0.7903962326542223 -4.014861215834311 1.087495689805327 -4.318740986045711 1.009222180880419 -3.915494554730933 0.7530582966662636 4.117569520822965 1.609168978682243 4.06494067866972 1.289160856444053 4.382412656505274 1.275732923953219 4.113749018618937 3.59761042930563 4.11338677832698 3.307928508737795 4.430786423268708 3.323457494963106 4.004673048262786 2.396474751015988 4.306625459163545 2.483105444542788 3.896458540050114 2.733419148329708 -4.010318426120987 2.335558842294007 -3.918374393230021 2.65249310587964 -4.232313562344972 2.697004915989215 -4.110337663997246 3.602853878806665 -4.427552647176091 3.591221143347064 -4.109867458805556 3.289422241500907</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 54 33 25 34 24 35 29 35 28 34 55 33 30 36 56 37 31 38 34 38 57 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID468\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID469\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID473\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID476\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID474\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID475\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID474\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID478\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID478\">-0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID475\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID479\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID479\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1038929795673725 0.5024082937966418 0.8583659797085161 -0.101645225647281 0.504024634304494 0.8576872484287816 -0.1094074020686247 0.4984230333416132 0.8600026163955198 0.1094074020686247 -0.4984230333416132 -0.8600026163955198 0.101645225647281 -0.504024634304494 -0.8576872484287816 0.1038929795673725 -0.5024082937966418 -0.8583659797085161 -0.1067289061750859 0.9771652234428873 -0.1837309627702476 -0.1087690994352792 0.9772346523405453 -0.1821584949237671 -0.1018222525483512 0.9769718064996613 -0.1875055150942714 0.1018222525483512 -0.9769718064996613 0.1875055150942714 0.1087690994352792 -0.9772346523405453 0.1821584949237671 0.1067289061750859 -0.9771652234428873 0.1837309627702476 -0.1384934920200037 0.3534641008466894 -0.9251392771257453 -0.1359909180218172 0.3518821215535716 -0.9261130831310727 -0.1433289414998819 0.3565134591932102 -0.9232307230278977 0.1433289414998819 -0.3565134591932102 0.9232307230278977 0.1359909180218172 -0.3518821215535716 0.9261130831310727 0.1384934920200037 -0.3534641008466894 0.9251392771257453 -0.1222124372058731 -0.6679776222096131 -0.7340776637518621 -0.1173622889185317 -0.6711286400381099 -0.731992104916713 -0.1349675165566499 -0.6595557153030317 -0.7394389953780073 0.1349675165566499 0.6595557153030317 0.7394389953780073 0.1173622889185317 0.6711286400381099 0.731992104916713 0.1222124372058731 0.6679776222096131 0.7340776637518621 -0.1005580890291001 -0.9698016599802893 0.2221999348116262 -0.1176512528335321 -0.9707395559761901 0.209339191671912 -0.1058191295169145 -0.9701374026818134 0.2182561150255999 0.1058191295169145 0.9701374026818134 -0.2182561150255999 0.1176512528335321 0.9707395559761901 -0.209339191671912 0.1005580890291001 0.9698016599802893 -0.2221999348116262 -0.09416004869071552 -0.2485813326810608 0.9640234469519244 -0.09548416722338041 -0.2496875094316789 0.9636072443913355 -0.08585473045780438 -0.2416308289560064 0.9665627283089551 0.08585473045780438 0.2416308289560064 -0.9665627283089551 0.09548416722338041 0.2496875094316789 -0.9636072443913355 0.09416004869071552 0.2485813326810608 -0.9640234469519244 -0.1032242823055442 -0.256142923912011 0.9611116220670267 0.1032242823055442 0.256142923912011 -0.9611116220670267 -0.09649147165714225 0.5077129698964091 0.8561056804486271 0.09649147165714225 -0.5077129698964091 -0.8561056804486271 -0.1131851789208752 0.9773627740502681 -0.1787487711102216 0.1131851789208752 -0.9773627740502681 0.1787487711102216 -0.1315202965520038 0.349049637920842 -0.9278290585351389 0.1315202965520038 -0.349049637920842 0.9278290585351389 -0.1057405989715317 -0.6785643004438799 -0.7268902364815817 0.1057405989715317 0.6785643004438799 0.7268902364815817 -0.08943516453163014 -0.968954655637462 0.2304956109423514 0.08943516453163014 0.968954655637462 -0.2304956109423514</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID477\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID480\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID480\">-3.832275540913754 1.38313464652574 -4.037474306459234 0.861597233214203 -3.745473328734743 1.066488851161099 -4.163760809506149 1.448324091080901 -4.43604104310682 0.9826730704162471 -4.51102072099726 1.290001193398601 3.171026590337021 -2.606554836662415 3.406816483430799 -2.972177582241644 3.48126989775373 -2.661916721724257 3.668382965150461 2.008969601292834 3.994159350684655 1.684526607744221 3.986386895219333 1.997404066098809 2.195936011940815 4.503074526773451 2.648891197907055 4.264915060407883 2.500220450372008 4.580014812517327 -4.885016970408737 -1.255419445917819 -5.138103206570871 -0.8942667761061519 -5.196643413251278 -1.19861087185011 -4.90668503084679 1.890274882143592 -4.89624123966273 1.566454220558648 -4.577487831674194 1.559607900813885 -5.196980618279403 2.02817604302201 -5.613737620860929 2.214624445873762 -5.502753935253568 1.960405471812763 -5.419548725810715 2.156634437970546 -5.709881774726242 2.054336581082488 -5.28394018282753 1.881208739224467 3.310138597047183 -2.520016467100998 3.240017181379571 -2.859050560085873 3.557132004722975 -2.881032731401244 3.611445236497108 1.98282659750306 3.620759139691174 1.628873567018144 3.938085392640403 1.658921497886375 2.474798949672067 4.128983753580942 2.766926089553627 4.231515357916557 2.320203332516909 4.476851663613845 -4.68279295752764 -0.9992583488947533 -5.001424279837343 -0.9895101278624701 -4.732582976568755 -1.343547542461741 -4.494532730293797 1.981060250884132 -4.811397957767102 1.963200932487673 -4.484848678126927 1.630913117934281</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 54 33 25 34 24 35 29 35 28 34 55 33 56 36 31 37 30 38 35 38 34 37 57 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID476\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID477\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID481\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID484\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID482\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID483\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID482\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID486\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID486\">-0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID483\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID487\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID487\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6659834446608215 0.3807686437826488 0.6414680750821734 -0.6631750828133616 0.3731148991519088 0.6488328610407705 -0.6729842940505703 0.1624422630054802 0.7215986773483681 0.6729842940505703 -0.1624422630054802 -0.7215986773483681 0.6631750828133616 -0.3731148991519088 -0.6488328610407705 0.6659834446608215 -0.3807686437826488 -0.6414680750821734 -0.6145137989325163 0.4655985671337754 0.6368600829102905 -0.6113335516860552 0.4667959055536873 0.6390405864585023 0.6113335516860552 -0.4667959055536873 -0.6390405864585023 0.6145137989325163 -0.4655985671337754 -0.6368600829102905 -0.6629988808447853 -0.7286899444755632 -0.1715909345471451 -0.6112712807697465 -0.7468583700018094 -0.2618205424796805 -0.6144500916695223 -0.7444263356970634 -0.2613054066948456 0.6144500916695223 0.7444263356970634 0.2613054066948456 0.6112712807697465 0.7468583700018094 0.2618205424796805 0.6629988808447853 0.7286899444755632 0.1715909345471451 -0.6729924006868499 -0.7380291832850042 0.04893008519735241 -0.6658161315575506 -0.7238380484211855 -0.180962312693964 0.6658161315575506 0.7238380484211855 0.180962312693964 0.6729924006868499 0.7380291832850042 -0.04893008519735241 -0.6289565476282814 -0.7476459025257273 0.2131648789833918 -0.6701345713609732 -0.7408307531705968 0.04571051764672113 0.6701345713609732 0.7408307531705968 -0.04571051764672113 0.6289565476282814 0.7476459025257273 -0.2131648789833918 -0.6586335051836426 -0.4503276787562835 0.602832387646422 -0.6194244385915946 -0.5603481644919415 0.5498393396493199 -0.6253103361580007 -0.5580893712997171 0.545456906763728 0.6253103361580007 0.5580893712997171 -0.545456906763728 0.6194244385915946 0.5603481644919415 -0.5498393396493199 0.6586335051836426 0.4503276787562835 -0.602832387646422 -0.6252441215267333 -0.3647786176751771 0.6899321333169304 -0.6193457640666231 -0.3683472929438279 0.6933477455892423 0.6193457640666231 0.3683472929438279 -0.6933477455892423 0.6252441215267333 0.3647786176751771 -0.6899321333169304 -0.6701201336408642 0.1663084455640048 0.7233813015438224 -0.6289128458978669 0.007652928515795015 0.7774381422015375 0.6289128458978669 -0.007652928515795015 -0.7774381422015375 0.6701201336408642 -0.1663084455640048 -0.7233813015438224 -0.622078851308744 -0.7522767596266303 0.2170197679476473 0.622078851308744 0.7522767596266303 -0.2170197679476473 -0.6633240955833247 -0.4478538037142369 0.5995232395139108 0.6633240955833247 0.4478538037142369 -0.5995232395139108 -0.6220261755595516 0.005266994658404282 0.7829787325885845 0.6220261755595516 -0.005266994658404282 -0.7829787325885845</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID485\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID488\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID488\">-4.22725624399334 -5.808877949883205 -4.55134529488531 -5.976060559444166 -4.338167595264546 -6.491496952334127 -4.986782358868105 -5.199964448886369 -5.184941219754366 -5.408638486833185 -5.944453442550639 -4.799730893098601 -6.05632672639457 -5.091645344449993 -6.745726004323971 -4.816560978528544 -6.74510123625174 -5.077039638609257 -7.849986300628801 -5.500677176589291 -7.923492667272267 -5.229891230022745 -10.06436935037758 -6.764499303685906 -10.25054723218782 -6.567089824067745 -4.190221839946828 -7.423786392543641 -4.020489550882155 -6.418076771645296 -4.541160899478318 -7.445155913627095 -5.145381836570095 -9.567177416708539 -5.438809568305453 -9.482737238346916 -5.505193325159312 -7.604034168790181 -5.336475990643389 -7.742358147485223 -4.269678334633769 -7.17228634502103 -5.689347174156868 -9.800731856029373 -5.511200601136377 -9.91390228982233 -3.661673248818458 -8.175413593687873 -6.015019925488002 -7.266096214065682 -6.619985055648084 -9.486958521750623 -6.397152300006442 -9.528426778102082 -5.916495195503265 -6.398410337512396 -6.028516018800286 -7.409110337784746 -5.79271183303645 -7.457467891379393 -6.058299012606727 -5.672970773922897 -5.918451089773818 -6.293838969348061 -5.673245435811727 -6.290409739551873 -6.611867500289026 -4.289528229207675 -6.048613951193245 -5.018529849581411 -5.831542273483992 -4.949930903754136 -7.208078507396563 -3.680070861867471 -7.32929965042728 -3.837447967747981 -6.506198159929273 -4.392862628766582 -6.660239379493177 -5.681909366053281 -6.612063954614971 -5.871073215402708 -5.811153776812445 -5.845724523787836 -6.31321530276293 -9.510799849948398 -4.202315597411297 -7.952433032619871 -4.387052615037615 -7.827415091763079 -5.571264021655384 -7.567302934022142 -4.332306682772676 -7.141703510882534 -4.446445643616539 -6.970949011293415 -6.035007605903449 -7.19101390246045 -6.473568664496056 -9.447001600170312 -5.799661110009105 -7.240732120036159 -5.673040901826159 -6.386349889532563 -5.918247615980235 -6.389731880133182 -5.796727443660892 -7.448951623798941 -5.819314759100421 -5.528107959488318 -6.041028142086967 -5.586805558446977 -5.664342994491257 -6.207430836053704 -6.610934274938454 -4.510184301514173 -5.81103562343381 -5.155932387550443 -6.42137595324032 -4.391696199990871 -6.752987524416816 -5.516952551322585 -5.907464823598496 -5.691800534694194 -5.87571544118804 -5.509489278649395 -6.262434736188439 -4.53591418972004 -7.16680172405666 -3.98054871024504 -6.431552494877005 -4.672209874291356</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 9 9 7 7 10 10 9 9 10 10 11 11 11 11 10 10 12 12 0 0 13 13 14 14 13 13 0 0 2 2 13 13 2 2 15 15 13 13 15 15 16 16 16 16 15 15 17 17 18 17 19 15 20 16 20 16 19 15 21 13 19 15 22 2 21 13 22 2 23 0 21 13 24 14 21 13 23 0 25 12 26 10 27 11 27 11 26 10 28 9 26 10 29 7 28 9 28 9 29 7 30 8 30 8 29 7 31 6 29 7 32 5 31 6 31 6 32 5 33 4 32 5 34 3 33 4 33 4 34 3 35 1 34 3 23 0 35 1 22 2 35 1 23 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 37 23 40 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 46 28 53 29 54 29 51 28 55 27 56 30 52 31 57 32 58 32 55 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 60 38 65 38 68 37 69 36 70 39 38 40 71 41 72 41 39 40 73 39 42 42 37 43 36 44 41 44 40 43 45 42 36 45 38 46 70 47 73 47 39 46 41 45 46 48 48 49 53 50 54 50 49 49 51 48 57 51 52 52 53 53 54 53 55 52 58 51 74 54 56 55 57 56 58 56 59 55 75 54 60 57 62 58 76 59 77 59 63 58 65 57 70 60 71 61 78 62 79 62 72 61 73 60 76 63 66 64 60 65 65 65 69 64 77 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID484\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID485\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID489\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID492\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID490\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID491\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID490\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID494\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID494\">-0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID491\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID495\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID495\">-0.1088396993734213 0.9391143652329044 0.3259112284863811 -0.1164463359679276 0.9328196483828717 0.3410099037132209 -0.115277788968267 0.9330479626690824 0.3407822335886396 0.115277788968267 -0.9330479626690824 -0.3407822335886396 0.1164463359679276 -0.9328196483828717 -0.3410099037132209 0.1088396993734213 -0.9391143652329044 -0.3259112284863811 -0.110822325248955 0.938063640003709 0.3282605969796052 0.110822325248955 -0.938063640003709 -0.3282605969796052 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1169850955608708 0.9419046119998733 0.3148494708745472 0.1169850955608708 -0.9419046119998733 -0.3148494708745472 -0.5580107354442373 0.8289599112591531 0.03807209810606934 -0.4971810650748229 0.8663223338632058 0.04792287951357918 -0.5145250095588039 0.8558675183312584 0.05248624204499802 0.5145250095588039 -0.8558675183312584 -0.05248624204499802 0.4971810650748229 -0.8663223338632058 -0.04792287951357918 0.5580107354442373 -0.8289599112591531 -0.03807209810606934 -0.545158170653844 0.8382267271768401 0.01336124304687095 -0.5582784877518608 0.8289230506726751 0.03480957019271046 0.5582784877518608 -0.8289230506726751 -0.03480957019271046 0.545158170653844 -0.8382267271768401 -0.01336124304687095 -0.1318695905464307 0.9596171302456248 0.2484861654665474 -0.1321549003024238 0.9557169747171905 0.2629451398361978 -0.1365860819270675 0.9570595346721975 0.2556976521535723 0.1365860819270675 -0.9570595346721975 -0.2556976521535723 0.1321549003024238 -0.9557169747171905 -0.2629451398361978 0.1318695905464307 -0.9596171302456248 -0.2484861654665474 -0.1289657532660433 0.9574337946917685 0.2582409016144471 -0.1269044865420529 0.9532261396277257 0.2743267723462684 0.1269044865420529 -0.9532261396277257 -0.2743267723462684 0.1289657532660433 -0.9574337946917685 -0.2582409016144471 -0.1240825368586034 0.9470375050500011 0.2961815120418608 -0.1256954876265769 0.946399129432289 0.2975387910846624 -0.1260690186249341 0.9534847853620122 0.2738126487693791 0.1260690186249341 -0.9534847853620122 -0.2738126487693791 0.1240825368586034 -0.9470375050500011 -0.2961815120418608 0.1256954876265769 -0.946399129432289 -0.2975387910846624 -0.1211441855015404 0.9401500394776983 0.3184995911916539 0.1211441855015404 -0.9401500394776983 -0.3184995911916539 -0.5536072311495947 0.7950907964196508 0.2476886333032765 -0.6328306015520273 0.7446519113729666 0.2121767202779013 -0.6307694948426644 0.7463033893518946 0.2125114006772442 0.6307694948426644 -0.7463033893518946 -0.2125114006772442 0.6328306015520273 -0.7446519113729666 -0.2121767202779013 0.5536072311495947 -0.7950907964196508 -0.2476886333032765 -0.5039674104246305 0.8086833501771441 0.3033942787465886 -0.5497408771862887 0.7964870254649378 0.2517804325527812 0.5497408771862887 -0.7964870254649378 -0.2517804325527812 0.5039674104246305 -0.8086833501771441 -0.3033942787465886 -0.4609956099973669 0.7886395059681967 0.4068547372089872 -0.49850465150458 0.8115072862067282 0.3048754448322932 0.49850465150458 -0.8115072862067282 -0.3048754448322932 0.4609956099973669 -0.7886395059681967 -0.4068547372089872 -0.4569339343695998 0.6598239237892639 0.5965264195464085 -0.4573880925719646 0.794515332784318 0.399426487283961 0.4573880925719646 -0.794515332784318 -0.399426487283961 0.4569339343695998 -0.6598239237892639 -0.5965264195464085 -0.4287005991166544 0.541309811422194 0.7233252963743838 -0.4542025713545716 0.645235326881341 0.6143056219173191 0.4542025713545716 -0.645235326881341 -0.6143056219173191 0.4287005991166544 -0.541309811422194 -0.7233252963743838 -0.3063228392035632 0.9519258992836576 -0.001844032339199885 -0.3523470247597167 0.9358104485918809 0.01050611484984737 0.3523470247597167 -0.9358104485918809 -0.01050611484984737 0.3063228392035632 -0.9519258992836576 0.001844032339199885 -0.5412614551618135 0.8407681758003589 0.01203792828742119 0.5412614551618135 -0.8407681758003589 -0.01203792828742119 -0.4272410976619026 0.5422294182526325 0.7235000362474522 0.4272410976619026 -0.5422294182526325 -0.7235000362474522</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID493\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID496\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID496\">3.76825062863832 -7.313630254900839 3.596381102692845 -10.48973263072317 4.591982473100826 -10.49532155130045 3.796584343130128 -7.304870234576655 4.631787065582489 -10.48471036339275 4.788649302747732 -7.361376930524428 -1.233424149184261 -2.753147786843712 -0.7088761597558091 -3.338546544481618 -0.694556993678912 -2.849561690363584 -0.7853905368619629 -4.383741487515724 -1.146439087214903 -5.03998101979383 -1.55270259855911 -5.546970027708173 -1.390357703847656 -3.215229491993068 -1.75673311539269 -4.219410608791835 -1.883282441546899 -6.176047377569198 -2.160556126454998 -5.312462941343926 -2.261771182375565 -7.026766978130183 -2.433741973391066 -5.946419099073036 -3.334680812059787 -9.988933491671299 -2.830459374017382 -6.858879041460048 -4.18747608939894 -9.796708225378035 -0.7842970050049303 -4.827816971326995 3.846359672297336 -6.358789390875086 3.803908500346693 -7.294419494786282 4.796023997542307 -7.350374402013268 4.056342725136757 -3.460756783488558 4.017070421792077 -4.507227523838949 4.189805728167312 -4.506856094946615 3.870196798047121 -2.901029633565524 3.862151086380763 -3.39010326253353 4.041586134627782 -3.375623115899968 3.928024266704107 -3.013988383563838 4.902261330893889 -3.531575789521651 4.924433338735429 -3.053604799231155 3.919683204120139 -3.486961206510021 4.865011689683587 -4.583100420342436 4.914626931451051 -3.539105977826516 4.875488640555209 -4.580879223037842 3.826540600621813 -5.700099691054323 4.822529489921589 -5.718396071753157 3.879494827284836 -4.562583285591289 3.823573876076065 -5.724436591786642 4.783442973528894 -6.411767901669563 4.819555400866464 -5.742979411248102 3.807368354643659 -6.37459105667303 4.751878529572747 -7.369217884205696 4.801955210030906 -6.405668232595182 2.459913955440844 -7.711138893628805 1.765124464725816 -10.7423214537102 1.957060357039899 -10.75365200785607 3.149980037999058 -6.910862697284486 2.933665600069839 -7.795972115472037 3.112360206094057 -7.803950315529296 3.543814988888633 -6.287816333452746 3.368556206581121 -6.954419143262834 3.538235007196647 -6.973994288736734 3.78465959479941 -5.80854108379769 3.571658995865501 -6.383955407013207 3.730204477851461 -6.425917052375335 3.519029084241668 -5.520774225638371 3.291859972225696 -5.827754909589918 3.450220969145402 -5.87097057055601 4.662182803330457 -4.380360850124628 4.662517777683195 -4.824437088967236 4.81826881172313 -4.865116337961796 4.189859564349691 -4.520942806572722 4.017124258375433 -4.521314350847296 4.169439869693115 -5.006811491088558 4.054308477449268 -3.46818554239393 3.874875918312202 -3.482684764307377 4.004600561683029 -4.529075056857496 3.954605625143068 -2.881286514067027 4.12622640779107 -3.355828234508149 4.13083736103226 -2.887771090306144 3.943337637863319 -2.998836062633428 3.923906485213045 -3.463165909205145 4.918885407229313 -3.514893431760281 3.928797703118019 -3.481218209051338 3.879818224823473 -4.558188850263479 4.875812890540187 -4.576456053667682 3.841555000386308 -5.715504750840945 3.808597935928527 -6.370329666730073 4.803189826014569 -6.40130696790807 2.948827516519374 -7.691092086442025 2.529718595190085 -10.74144726110512 3.127530081582867 -7.698959191979644 3.405436347186381 -6.871638496491231 3.386085399216066 -7.765086638555999 3.575179329102383 -6.890866213050533 3.787685574673548 -6.22844919458952 3.799988017323743 -6.914572938978153 3.947379466551694 -6.267623306827016 3.764036350977447 -5.816332960126295 3.707505967984392 -6.43359348176798 3.926023634899166 -5.850225398106103 3.560052651719282 -5.497587420403937 3.494701207686569 -5.848193276457293 3.706070434976303 -5.556515053892731</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 2 4 6 5 7 5 3 4 5 3 8 6 9 7 10 8 9 7 8 6 11 9 11 9 8 6 12 10 12 10 8 6 13 11 13 11 8 6 14 12 13 11 14 12 15 13 13 11 15 13 16 14 16 14 15 13 17 15 16 14 17 15 18 16 18 16 17 15 19 17 18 16 19 17 20 18 20 18 19 17 21 19 20 18 21 19 22 20 12 10 23 21 11 9 24 9 25 21 26 10 27 20 28 19 29 18 28 19 30 17 29 18 29 18 30 17 31 16 30 17 32 15 31 16 31 16 32 15 33 14 32 15 34 13 33 14 33 14 34 13 35 11 34 13 36 12 35 11 36 12 37 6 35 11 35 11 37 6 26 10 26 10 37 6 24 9 24 9 37 6 38 7 39 8 38 7 37 6 40 22 0 23 6 24 7 24 5 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 42 29 49 30 50 30 47 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 59 37 62 38 63 39 62 38 59 37 64 40 65 40 60 37 66 38 67 39 66 38 60 37 62 41 68 42 63 43 67 43 69 42 66 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 70 51 77 52 78 52 75 51 79 50 80 53 76 54 81 55 82 55 79 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 43 62 92 63 93 64 94 64 95 63 46 62 44 65 43 66 93 67 94 67 46 66 45 65 49 68 42 69 44 70 45 70 47 69 50 68 48 71 49 72 96 73 97 73 50 72 51 71 52 74 58 75 53 76 56 76 61 75 57 74 58 77 64 78 59 79 60 79 65 78 61 77 62 80 40 81 68 82 69 82 41 81 66 80 70 83 72 84 77 85 78 85 73 84 75 83 76 86 77 87 81 88 82 88 78 87 79 86 80 89 81 90 85 91 86 91 82 90 83 89 84 92 85 93 89 94 90 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID492\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID493\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID497\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID500\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID498\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID499\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID498\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID502\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID502\">-0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID499\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID503\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID503\">-0.1164097430468417 -0.5916084081534543 -0.7977770760844811 -0.10882822046992 -0.5789017034806163 -0.8081022436156152 -0.1152454256731035 -0.591455387657384 -0.7980595317847402 0.1152454256731035 0.591455387657384 0.7980595317847402 0.10882822046992 0.5789017034806163 0.8081022436156152 0.1164097430468417 0.5916084081534543 0.7977770760844811 -0.1108221458520233 -0.5808630075720961 -0.8064221093342195 0.1108221458520233 0.5808630075720961 0.8064221093342195 -0.1170077107804017 -0.5691015957689537 -0.8138996064080387 0.1170077107804017 0.5691015957689537 0.8138996064080387 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211696670977339 -0.5721039063745667 -0.8111812572331694 0.1211696670977339 0.5721039063745667 0.8111812572331694 -0.1289674607165914 -0.5192099234538959 -0.844860017673528 -0.1321663082555465 -0.5232428882080906 -0.8418722865742495 -0.1268981050915295 -0.533447946261532 -0.8362596244908234 0.1268981050915295 0.533447946261532 0.8362596244908234 0.1321663082555465 0.5232428882080906 0.8418722865742495 0.1289674607165914 0.5192099234538959 0.844860017673528 -0.1318813258933644 -0.5104743797675104 -0.8497194969409517 -0.1366069441971335 -0.5166761365997606 -0.8452125843037756 0.1366069441971335 0.5166761365997606 0.8452125843037756 0.1318813258933644 0.5104743797675104 0.8497194969409517 -0.558031261867371 -0.2716463664879751 -0.78409780152261 -0.5451296895268838 -0.2505730592629967 -0.8000292266960662 -0.5582991414998946 -0.2685090417213844 -0.7849872375487035 0.5582991414998946 0.2685090417213844 0.7849872375487035 0.5451296895268838 0.2505730592629967 0.8000292266960662 0.558031261867371 0.2716463664879751 0.78409780152261 -0.5143888624622276 -0.293110942014941 -0.8059094700063585 -0.497052555982873 -0.2917024651576237 -0.8172199388242178 0.497052555982873 0.2917024651576237 0.8172199388242178 0.5143888624622276 0.293110942014941 0.8059094700063585 -0.3523806686222084 -0.2755513168992308 -0.8943709164191694 -0.306415783897025 -0.2682897565392926 -0.9133071629604461 0.306415783897025 0.2682897565392926 0.9133071629604461 0.3523806686222084 0.2755513168992308 0.8943709164191694 -0.4286828954205195 -0.847176126038426 -0.3138846709293164 -0.4541605104685136 -0.7721228532482589 -0.4444823171091813 -0.456893286178551 -0.7592058438957603 -0.4635245534375617 0.456893286178551 0.7592058438957603 0.4635245534375617 0.4541605104685136 0.7721228532482589 0.4444823171091813 0.4286828954205195 0.847176126038426 0.3138846709293164 -0.4574134951468932 -0.6083801890432725 -0.6485726173969845 -0.4610282434667641 -0.6138335702605229 -0.6408286094949022 0.4610282434667641 0.6138335702605229 0.6408286094949022 0.4574134951468932 0.6083801890432725 0.6485726173969845 -0.4985789755177557 -0.522521104138984 -0.69165793633923 -0.5040410792207913 -0.5203001144828611 -0.6893695535248579 0.5040410792207913 0.5203001144828611 0.6893695535248579 0.4985789755177557 0.522521104138984 0.69165793633923 -0.5536165038480039 -0.4630501931675085 -0.6921656487248167 -0.5497531637915774 -0.4673687586348154 -0.6923423303202705 0.5497531637915774 0.4673687586348154 0.6923423303202705 0.5536165038480039 0.4630501931675085 0.6921656487248167 -0.6328486545725545 -0.4146821088617343 -0.6538664458401979 -0.6307873335127643 -0.4154716222280389 -0.6553553776410614 0.6307873335127643 0.4154716222280389 0.6553553776410614 0.6328486545725545 0.4146821088617343 0.6538664458401979 -0.1240913043504173 -0.5526586540230366 -0.8241175646217339 -0.1256979469617381 -0.5537729312787706 -0.823125486613385 0.1256979469617381 0.5537729312787706 0.823125486613385 0.1240913043504173 0.5526586540230366 0.8241175646217339 -0.1260575905833764 -0.5330255257953374 -0.8366560061978389 0.1260575905833764 0.5330255257953374 0.8366560061978389 -0.5412201697451934 -0.2500231718377586 -0.8028506345548783 0.5412201697451934 0.2500231718377586 0.8028506345548783 -0.4272344532522728 -0.8476012840976981 -0.3147106371735229 0.4272344532522728 0.8476012840976981 0.3147106371735229</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID501\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID504\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID504\">-6.161466385372765 -9.739583828584451 -5.534782427677182 -6.599055031610398 -7.138963213337921 -9.590815887125158 -5.453974869115332 -6.64082692448904 -6.442251176197418 -6.552312786454574 -7.020912501436172 -9.64477766665155 -5.308720537271718 -5.689141638149316 -6.478772582362814 -6.522289149874103 -5.491014958906135 -6.614316476552948 -3.324449483955088 -1.304083515806536 -3.572826706871928 -1.932684592651026 -3.054065519073461 -1.683218989209923 -3.916435254479966 -1.453588938535106 -4.692973909088815 -2.493915854454659 -5.168852690973136 -1.807773613133746 -5.910816590358083 -3.108575940139804 -5.710456022755999 -1.932931811574967 -5.866347671529796 -2.26628703653867 -6.369100491594986 -2.716571791351699 -6.606115120661046 -3.494493541298796 -7.042161934252819 -3.144381333275127 -7.605823633967948 -4.052573869433889 -7.9717957997741 -3.671216674709287 -10.80202970911157 -5.90961685543797 -11.2782606739596 -5.320825261743578 -5.406867405753555 -5.632958163486499 -6.388217779204394 -5.501977139414676 -6.591891121267537 -6.452906138227753 -4.869366170504851 -2.672663225915323 -5.851698291102253 -2.537936179978868 -6.117810543867646 -3.561478629224226 -4.783295469245281 -2.147838056814312 -5.759915324541431 -1.987415610829698 -5.892517064855022 -2.454203569649013 -5.685275317190505 1.018545122632574 -5.145451942425918 1.261211835115473 -5.7562003319981 1.149012728635336 -5.946862418828762 0.7642798521704014 -7.130976261011481 0.2767553873179948 -7.036424047085478 0.1630502095845917 -7.281644872447997 -0.3986048403960985 -7.834279527146465 -0.6456774898488107 -7.689126942260445 -0.7059138880145554 -7.188071436753713 -2.505819076414183 -7.416547296366069 -2.811190375613943 -7.259177835029453 -2.856584011353963 -7.575012072795065 -2.706222549244504 -8.018917079536788 -3.217136703021234 -7.861456431581737 -3.261559665315641 -8.102290839309255 -2.644916224219954 -8.698178247785402 -3.146031785827807 -8.557885289507643 -3.223633364054006 -9.379701635931678 -3.470919080308647 -8.684971497927776 -2.754199168926557 -9.506351967249945 -3.371429820198309 -12.25623907044876 -4.989462679559276 -9.490624175621949 -2.809199905568493 -12.37770881846667 -4.872005277182687 -5.318589154545419 -4.950828734137319 -6.296049610050064 -4.799287875721132 -6.444857026542284 -5.458380516152987 -5.392057858255205 -4.876556620212218 -6.08813702729078 -3.598391158750079 -6.367006455932359 -4.715312852682593 -5.113185334491933 -3.759627421801614 -5.281056882911339 -4.974112230283341 -6.403242112042205 -5.487229736398297 -5.422269957287876 -5.619952481288294 -4.853940277352765 -2.690709885832792 -6.096300623064521 -3.58478531167352 -5.121764907583199 -3.747570384158296 -4.892686598708286 -2.620119059241625 -4.767264819600784 -2.166119404674233 -5.873559466293838 -2.478965772395742 -5.839645049230055 0.7939477636360648 -5.917332136334101 0.9220098715437491 -7.042920849049135 0.3363783258394972 -5.177910156173502 1.294964790723312 -5.271800528567625 1.412461230707683 -5.787526407421514 1.179018042887779 -7.052366363064595 0.117928942085436 -7.147894061445859 0.2311284178204125 -7.650128474823353 -0.0521237149128579 -7.330237832350131 -2.497391177424061 -7.397103799309265 -2.828987567036165 -7.169448987281526 -2.523237030315316 -7.737670076202681 -2.636262514374005 -8.030026041788469 -3.199266105371076 -7.584247127016653 -2.689362640162711 -8.015596352434937 -2.86584519018703 -8.170034062009835 -2.815279621232072 -8.584674860058595 -3.385887706682498 -8.626894580693087 -2.948706082022819 -8.7639835389675 -2.867638261066807 -9.418099806598537 -3.589866553505813 -9.444421399327453 -3.12265942849865 -9.566235995890917 -3.01950100195389 -12.16085591726943 -5.324233997524462</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 6 7 1 8 4 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 14 13 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 16 15 18 17 19 18 16 15 19 18 20 19 20 19 19 18 21 20 20 19 21 20 22 21 22 21 21 20 23 22 22 21 23 22 24 23 24 23 23 22 25 24 26 24 27 22 28 23 28 23 27 22 29 21 27 22 30 20 29 21 29 21 30 20 31 19 30 20 32 18 31 19 31 19 32 18 33 15 32 18 34 17 33 15 34 17 35 16 33 15 35 16 36 14 33 15 33 15 36 14 37 13 36 14 38 12 37 13 37 13 38 12 39 10 38 12 40 9 39 10 41 11 39 10 40 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 54 37 60 38 61 39 62 39 63 38 59 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 75 49 78 50 79 51 80 51 81 50 76 49 82 52 79 53 83 54 84 54 80 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 90 61 46 62 91 63 46 62 90 61 94 64 95 64 93 61 47 62 92 63 47 62 93 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 44 71 50 72 45 73 48 73 53 72 49 71 54 74 56 75 60 76 63 76 57 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 61 80 60 81 64 82 67 82 63 81 62 80 98 83 69 84 68 85 73 85 72 84 99 83 69 86 74 87 70 88 71 88 77 87 72 86 75 89 74 90 78 91 81 91 77 90 76 89 79 92 78 93 83 94 84 94 81 93 80 92 82 95 83 96 87 97 88 97 84 96 85 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID500\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID501\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID505\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID508\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID506\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID507\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID506\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID510\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID510\">-0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID507\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID511\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID511\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6729884580762607 0.7375072073159738 0.05629968430755275 -0.6658436797422771 0.7251760043223742 -0.1754193743641215 -0.6630305151580132 0.7299655905773456 -0.1659541278256337 0.6630305151580132 -0.7299655905773456 0.1659541278256337 0.6658436797422771 -0.7251760043223742 0.1754193743641215 0.6729884580762607 -0.7375072073159738 -0.05629968430755275 -0.6144800241452068 0.7457833801420833 -0.257335286795953 -0.6113107337789397 0.7482110703485606 -0.2578359574894776 0.6113107337789397 -0.7482110703485606 0.2578359574894776 0.6144800241452068 -0.7457833801420833 0.257335286795953 -0.6144572319660114 -0.469525830568726 0.6340250819276909 -0.6630446878927789 -0.3784166032630609 0.645889012317143 -0.6112832145498026 -0.4707347038740193 0.6361931076161541 0.6112832145498026 0.4707347038740193 -0.6361931076161541 0.6630446878927789 0.3784166032630609 -0.645889012317143 0.6144572319660114 0.469525830568726 -0.6340250819276909 -0.6658562154288208 -0.3859655043248172 0.6384873764187492 -0.6729915547513984 -0.1696569719422396 0.71992977373122 0.6729915547513984 0.1696569719422396 -0.71992977373122 0.6658562154288208 0.3859655043248172 -0.6384873764187492 -0.6701267456751917 -0.1735325142790268 0.72167625097323 -0.6289091309737778 -0.01542730369521124 0.7773257382066434 0.6289091309737778 0.01542730369521124 -0.7773257382066434 0.6701267456751917 0.1735325142790268 -0.72167625097323 -0.6252368259778801 0.3578597082949858 0.6935526949123143 -0.6586051859823896 0.4442906086005776 0.6073261595769036 -0.6193427745518753 0.3613913988662995 0.6970012800819265 0.6193427745518753 -0.3613913988662995 -0.6970012800819265 0.6586051859823896 -0.4442906086005776 -0.6073261595769036 0.6252368259778801 -0.3578597082949858 -0.6935526949123143 -0.6253034624160696 0.5526101220855131 0.5510150931318574 -0.6194223535536992 0.5548231614226238 0.5554162470319005 0.6194223535536992 -0.5548231614226238 -0.5554162470319005 0.6253034624160696 -0.5526101220855131 -0.5510150931318574 -0.628982358135911 0.7454560785608687 0.2206273511839385 -0.67013650131323 0.7403345362785804 0.05312103162442063 0.67013650131323 -0.7403345362785804 -0.05312103162442063 0.628982358135911 -0.7454560785608687 -0.2206273511839385 -0.6220189146899646 -0.01309573882381509 0.7828926946859175 0.6220189146899646 0.01309573882381509 -0.7828926946859175 -0.6632923012885572 0.441848588696277 0.6039976388351515 0.6632923012885572 -0.441848588696277 -0.6039976388351515 -0.6221076599331773 0.7500464868654583 0.2245268959239637 0.6221076599331773 -0.7500464868654583 -0.2245268959239637</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID509\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID512\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID512\">7.795591679423524 -5.323227745288749 9.929583898964312 -6.871125386769826 10.11824808736943 -6.675185043266 7.718649839306408 -5.593427100716775 6.623133292318746 -4.900658240318208 6.619185689247543 -5.161112975986945 5.822099524111708 -4.877519494199655 5.930260994757609 -5.170298768740171 5.05490498188978 -5.48043594259001 4.859378482153733 -5.270196480154701 4.414072035031004 -6.042836842313367 4.092155780313024 -5.873100523294384 4.194417247662015 -6.556555994075766 4.385226823545771 -7.511775063321221 4.975203874607814 -9.634970930132152 5.269730206931626 -9.552833993310438 4.034559973661107 -7.487651576590498 3.87764031107622 -6.480658898337778 5.822179128624093 -6.457005021127549 5.689472813873823 -7.515378658893742 5.925653000357565 -7.46826496498529 5.916109472248006 -7.310813277664289 6.288098685998339 -9.573629295500691 6.511257923774214 -9.533277001644295 5.546090981562797 -9.850025254076742 3.526461403957602 -8.209666149461569 5.366702388850225 -9.961973302364093 5.329292279186206 -7.665955408862323 4.100724298898611 -7.222142695431995 5.158417602448649 -7.80262028114791 6.489769452481003 -5.779453223070861 5.637638242695263 -5.933192605821058 6.437987728279937 -5.968028370914714 7.098762251858164 -3.787052743699775 6.386063448597975 -4.493172816030821 7.217578390551652 -3.945559541713974 5.729712477188441 -5.034440475430622 5.946010344400233 -5.104542875128599 6.517499784057383 -4.37952604699279 5.967022270105487 -5.74343876346228 5.576548159483153 -6.35877397416587 5.82171707979354 -6.36355039909147 5.927577537499342 -7.239119522850759 5.691826745769582 -7.287545814181028 6.355060939941811 -9.495860674564316 5.577040359522241 -6.444146991745441 5.691612126075604 -7.507383079612655 5.822211657743393 -6.448847275944787 4.064972331357362 -7.995403824306254 6.168526379568627 -9.569136817559707 4.251113033307034 -7.871692637448878 4.281639333974275 -7.022897481686874 4.164842777836451 -7.1925382682496 5.397026101555857 -7.63010449077775 5.701364756438144 -5.601711277529612 5.729387676422575 -5.784399080729091 6.578380074322135 -5.620264617403369 7.051363306255356 -4.085489202208199 6.13862237800544 -4.632304826311748 6.30564364571233 -4.770181180200111 5.734267381965052 -5.596749296751172 5.573646081394728 -6.275246632246977 5.955497993585017 -5.656571920937295 5.704254899531289 -5.239542710890913 6.511544613865906 -4.599494280401795 6.323365246363862 -4.479665053217046</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 7 7 6 6 8 8 8 8 6 6 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 15 15 14 14 13 13 16 16 16 16 13 13 12 12 16 16 12 12 11 11 16 16 11 11 17 17 18 17 19 11 20 16 19 11 21 12 20 16 21 12 22 13 20 16 20 16 22 13 23 14 24 15 23 14 22 13 21 12 19 11 25 10 19 11 26 9 25 10 25 10 26 9 27 8 26 9 28 6 27 8 27 8 28 6 29 7 29 7 28 6 30 5 28 6 31 4 30 5 30 5 31 4 32 3 31 4 33 0 32 3 32 3 33 0 34 1 35 2 34 1 33 0 36 18 37 19 38 20 39 20 40 19 41 18 38 21 42 22 43 23 44 23 45 22 39 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 47 29 50 29 54 28 55 27 56 30 57 31 53 32 54 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 70 39 71 40 36 41 41 41 72 40 73 39 38 42 37 43 42 44 45 44 40 43 39 42 71 45 37 46 36 47 41 47 40 46 72 45 47 48 46 49 52 50 55 50 51 49 50 48 56 51 53 52 52 53 55 53 54 52 59 51 74 54 57 55 56 56 59 56 58 55 75 54 60 57 76 58 61 59 64 59 77 58 65 57 78 60 71 61 70 62 73 62 72 61 79 60 66 63 61 64 76 65 77 65 64 64 69 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID508\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID509\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID513\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID516\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID514\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID515\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID514\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID518\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID518\">-0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID515\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID519\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID519\">-0.1164164008736633 0.5995543045607452 -0.7918218596946564 -0.1152524072062661 0.5994041612018266 -0.792105759458354 -0.108837402926013 0.5869636604169701 -0.8022643461317676 0.108837402926013 -0.5869636604169701 0.8022643461317676 0.1152524072062661 -0.5994041612018266 0.792105759458354 0.1164164008736633 -0.5995543045607452 0.7918218596946564 -0.1108295971226472 0.5889064001271712 -0.8005660824010021 0.1108295971226472 -0.5889064001271712 0.8005660824010021 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.117010717209138 0.5772025840593379 -0.8081742813362881 0.117010717209138 -0.5772025840593379 0.8081742813362881 -0.55805116068878 0.2794674820048999 -0.7813301661626451 -0.4972069966061667 0.2998409485598932 -0.8141748019268212 -0.5145432086037881 0.301138149130455 -0.8028456275137845 0.5145432086037881 -0.301138149130455 0.8028456275137845 0.4972069966061667 -0.2998409485598932 0.8141748019268212 0.55805116068878 -0.2794674820048999 0.7813301661626451 -0.5583170886261052 0.2763353231468237 -0.7822536786295161 -0.5451735392333464 0.2585521366823797 -0.7974563340627268 0.5451735392333464 -0.2585521366823797 0.7974563340627268 0.5583170886261052 -0.2763353231468237 0.7822536786295161 -0.1318899009461685 0.5189517552672971 -0.8445674216623568 -0.1321751191906274 0.5316379949383054 -0.8365947526759427 -0.1366137379887484 0.525105648062938 -0.8400004434315159 0.1366137379887484 -0.525105648062938 0.8400004434315159 0.1321751191906274 -0.5316379949383054 0.8365947526759427 0.1318899009461685 -0.5189517552672971 0.8445674216623568 -0.1289772731066859 0.5276362262001799 -0.8396218647839013 -0.1269133562014147 0.541783060402261 -0.8308815291477196 0.1269133562014147 -0.541783060402261 0.8308815291477196 0.1289772731066859 -0.5276362262001799 0.8396218647839013 -0.1260730475475516 0.541364594212308 -0.8312821198699127 -0.1257237932527103 0.5619705390732921 -0.8175467210036521 -0.1241088849423676 0.5608577831136058 -0.8185569814003505 0.1241088849423676 -0.5608577831136058 0.8185569814003505 0.1260730475475516 -0.541364594212308 0.8312821198699127 0.1257237932527103 -0.5619705390732921 0.8175467210036521 -0.1211792230471033 0.5801840317827792 -0.8054204399976321 0.1211792230471033 -0.5801840317827792 0.8054204399976321 -0.6328077900805511 0.4212204572764466 -0.6497134962313701 -0.630745177755128 0.4220252385451681 -0.6511952232391957 -0.5535170558317795 0.4699781182489695 -0.6875604971713225 0.5535170558317795 -0.4699781182489695 0.6875604971713225 0.630745177755128 -0.4220252385451681 0.6511952232391957 0.6328077900805511 -0.4212204572764466 0.6497134962313701 -0.5496579690091841 0.4742995180535889 -0.6876889444209731 -0.5040577082147066 0.5271615428562393 -0.6841246483812488 0.5040577082147066 -0.5271615428562393 0.6841246483812488 0.5496579690091841 -0.4742995180535889 0.6876889444209731 -0.4611603796146424 0.6201725230534618 -0.6345999889089049 -0.4986083373847545 0.5294053531974816 -0.6863815978712283 0.4986083373847545 -0.5294053531974816 0.6863815978712283 0.4611603796146424 -0.6201725230534618 0.6345999889089049 -0.4569158452101462 0.7637801850174524 -0.4559251466749819 -0.4575413346766589 0.6147893824288844 -0.6424094818065907 0.4575413346766589 -0.6147893824288844 0.6424094818065907 0.4569158452101462 -0.7637801850174524 0.4559251466749819 -0.4287765424434085 0.8502341030875822 -0.3053729631076245 -0.4541857773435357 0.7765036889450471 -0.4367577139714671 0.4541857773435357 -0.7765036889450471 0.4367577139714671 0.4287765424434085 -0.8502341030875822 0.3053729631076245 -0.3064595936731795 0.2773796356690582 -0.9105729268772327 -0.3524563901464338 0.2844550069979994 -0.8915491248600456 0.3524563901464338 -0.2844550069979994 0.8915491248600456 0.3064595936731795 -0.2773796356690582 0.9105729268772327 -0.5412696949613353 0.2580312515619297 -0.8002793203212533 0.5412696949613353 -0.2580312515619297 0.8002793203212533 -0.427351177790763 0.8506607779687953 -0.3061816644842928 0.427351177790763 -0.8506607779687953 0.3061816644842928</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID517\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID520\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID520\">6.113201900217518 -9.742250853991777 7.091288569950677 -9.595896339223589 5.499103420584213 -6.600182416334707 5.420290547408211 -6.640748761512123 6.975901634042057 -9.648330521578423 6.408896219694804 -6.554535211264102 7.876456342147549 -3.761524831997849 10.67805680033176 -6.022078132143546 11.16176846173632 -5.437065414091726 7.505618194240906 -4.139992194044065 6.953548495402975 -3.227415287865078 6.513094513763935 -3.57407440575762 6.285949643299203 -2.794328788599893 5.822719035721721 -3.182704696932027 5.788941760897649 -2.3401120123712 4.612728757974727 -2.558494340414665 5.637283441458915 -2.005547866194009 5.097247661780172 -1.876136291272333 3.849480692439346 -1.51211513898687 3.499790042667428 -1.988486954492802 3.259391378364231 -1.357956861170158 2.984224971584125 -1.734949918247632 5.276829500861391 -5.688413843343613 5.455377910186199 -6.614016405360451 6.443502443529829 -6.524454426903926 5.918364098679632 0.6946835222532575 6.996622144483922 0.08107890823026182 7.093346623752447 0.1936633434774049 5.659837046645889 0.9479949494725006 5.733164416645455 1.077643543196735 5.12457596617492 1.196888661312207 4.758236997495068 -2.149699721033194 5.865618505324296 -2.460175025701383 5.735808099411976 -1.992899477220481 4.843545496099361 -2.673703235409213 6.087171796191482 -3.566690023565987 5.826602908377137 -2.54228182317705 5.082764984602673 -3.760757070883378 6.331641412255999 -4.720481401818463 6.058548585046148 -3.602661679311559 5.35585679491965 -4.878577887491488 5.285915461951562 -4.952279500389528 6.40989096811075 -5.463018791418008 6.264065004454752 -4.803501560120678 5.3725854730318 -5.6341428049648 6.554020323273361 -6.45725466293534 6.354500477194964 -5.5058065265386 12.14541253552307 -5.10293046955647 12.26851450157659 -4.986537430148319 9.41056898809822 -2.898791439095068 9.298610626780286 -3.549173966198144 9.42651991423803 -3.450700016896117 8.613182971989794 -2.826927959732564 8.038933125624038 -2.704561851470576 8.487838424714864 -3.286514222629172 8.629014812798161 -3.209905916204647 7.523789324761757 -2.751687845226335 7.805375665433106 -3.308562304365771 7.96324250441662 -3.265004189452493 7.150832450639896 -2.549082256247872 7.219812768339646 -2.90011231837174 7.377457688057052 -2.855312596780183 7.635697253095525 -0.8035006671235652 7.782229223622522 -0.7453506809080558 7.235310741891112 -0.4904196007434802 7.011895007764506 0.03672512252392931 7.606548193301278 -0.1401008424521096 7.109563867316364 0.1488038753349426 5.810559197299331 0.7254211548792295 7.005536879862811 0.2545755458081305 5.890502313623793 0.8526266988596412 5.158474751740419 1.229593571299443 5.765798087273703 1.106421549715725 5.254634222010645 1.345955951793201 4.742685627602766 -2.167049408315839 4.865427715803005 -2.621495704933041 5.847127653942131 -2.483938036577421 5.090846327701405 -3.748857617575201 6.066241502050971 -3.589285790193484 4.828626099140562 -2.691145961250775 5.249019993973442 -4.974806095254356 5.387368148386617 -5.621069559526315 6.368925063442006 -5.491049143458817 9.362675427690499 -3.207509091704578 12.04798571922787 -5.432569415147625 9.485908542837471 -3.105411685193395 8.55510598041441 -3.016987279469245 9.338158193561835 -3.664297378796833 8.693206550649377 -2.936984635025157 7.953234205976306 -2.919923603102037 8.516550120266997 -3.44382944239968 8.108248304215895 -2.870429459557781 7.686443725701371 -2.683559650169936 7.532549763138777 -2.735810750521659 7.973800953496667 -3.248171677254486 7.293828092787273 -2.540400614243558 7.132876063535401 -2.565649444134168 7.358713154635643 -2.872239896407073</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 8 6 9 7 10 8 9 7 8 6 11 9 11 9 8 6 12 10 11 9 12 10 13 11 13 11 12 10 14 12 13 11 14 12 15 13 15 13 14 12 16 14 15 13 16 14 17 15 17 15 16 14 18 16 17 15 18 16 19 17 17 15 19 17 20 18 17 15 20 18 21 19 21 19 20 18 22 20 21 19 22 20 23 21 24 21 25 20 26 19 25 20 27 18 26 19 26 19 27 18 28 15 27 18 29 17 28 15 29 17 30 16 28 15 30 16 31 14 28 15 28 15 31 14 32 13 31 14 33 12 32 13 32 13 33 12 34 11 33 12 35 10 34 11 34 11 35 10 36 9 35 10 37 6 36 9 36 9 37 6 38 7 39 8 38 7 37 6 40 22 2 23 6 24 7 24 3 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 42 28 48 29 49 30 50 30 51 29 47 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 62 37 63 38 59 39 63 38 62 37 64 40 65 40 66 37 67 38 60 39 67 38 66 37 64 41 68 42 63 43 67 43 69 42 65 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 72 50 76 51 77 52 78 52 79 51 73 50 80 53 77 54 81 55 82 55 78 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 92 62 93 63 43 64 46 64 94 63 95 62 43 65 93 66 44 67 45 67 94 66 46 65 42 68 44 69 48 70 51 70 45 69 47 68 49 71 48 72 96 73 97 73 51 72 50 71 52 74 58 75 53 76 56 76 61 75 57 74 62 77 59 78 58 79 61 79 60 78 66 77 64 80 40 81 68 82 69 82 41 81 65 80 72 83 71 84 76 85 79 85 74 84 73 83 77 86 76 87 81 88 82 88 79 87 78 86 80 89 81 90 85 91 86 91 82 90 83 89 89 92 84 93 85 94 86 94 87 93 90 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID516\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID517\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID521\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID524\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID522\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID523\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID522\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID526\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID526\">-0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID523\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID527\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID527\">-0.1088358859381834 -0.9423316096583713 0.3164899482933284 -0.115264363165527 -0.9364085327492276 0.3314410752735454 -0.1164308334372561 -0.9361829241127744 0.3316706101311379 0.1164308334372561 0.9361829241127744 -0.3316706101311379 0.115264363165527 0.9364085327492276 -0.3314410752735454 0.1088358859381834 0.9423316096583713 -0.3164899482933284 -0.1108265020245895 -0.9413013605670106 0.3188561353395736 0.1108265020245895 0.9413013605670106 -0.3188561353395736 -0.1170061438965575 -0.9450112108173462 0.3053905265721109 0.1170061438965575 0.9450112108173462 -0.3053905265721109 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211767870245431 -0.9432883615922447 0.3090683632645491 0.1211767870245431 0.9432883615922447 -0.3090683632645491 -0.1289832713335865 -0.9599617263082118 0.2486700620087674 -0.1321753098522585 -0.9582917932523017 0.2533900677823568 -0.1269172199874076 -0.9559205324775958 0.2647790680141043 0.1269172199874076 0.9559205324775958 -0.2647790680141043 0.1321753098522585 0.9582917932523017 -0.2533900677823568 0.1289832713335865 0.9599617263082118 -0.2486700620087674 -0.1318905450426279 -0.9620432799504404 0.238909212109029 -0.1366015841177712 -0.9595604633487854 0.2461376127177232 0.1366015841177712 0.9595604633487854 -0.2461376127177232 0.1318905450426279 0.9620432799504404 -0.238909212109029 -0.5450709898174925 -0.8383750888433897 0.004982616402794485 -0.5582559972072337 -0.8292442885329374 0.02653585343755587 -0.5579936818601086 -0.8293100066025989 0.02979872401626703 0.5579936818601086 0.8293100066025989 -0.02979872401626703 0.5582559972072337 0.8292442885329374 -0.02653585343755587 0.5450709898174925 0.8383750888433897 -0.004982616402794485 -0.5144490778171239 -0.8563961092508181 0.04390729316607478 -0.4971056987735406 -0.8668022854730181 0.03923929338842273 0.4971056987735406 0.8668022854730181 -0.03923929338842273 0.5144490778171239 0.8563961092508181 -0.04390729316607478 -0.352304512060553 -0.9358847587336349 0.001117654625490362 -0.3062977673774491 -0.9518676260712704 -0.01138859679831438 0.3062977673774491 0.9518676260712704 0.01138859679831438 0.352304512060553 0.9358847587336349 -0.001117654625490362 -0.4286372452159311 -0.5485409186912338 0.7178948199667378 -0.4542014913136462 -0.6513390540662555 0.6078309320333537 -0.4569466615946189 -0.6657511171996592 0.5898942264549963 0.4569466615946189 0.6657511171996592 -0.5898942264549963 0.4542014913136462 0.6513390540662555 -0.6078309320333537 0.4286372452159311 0.5485409186912338 -0.7178948199667378 -0.4574340725793243 -0.7984546202919721 0.3914387417947999 -0.4610431429742561 -0.7926530874053718 0.3989239317754095 0.4610431429742561 0.7926530874053718 -0.3989239317754095 0.4574340725793243 0.7984546202919721 -0.3914387417947999 -0.4985522816593612 -0.8144906939653281 0.2967330987539529 -0.504011286993974 -0.8116541095840285 0.2952799163133784 0.504011286993974 0.8116541095840285 -0.2952799163133784 0.4985522816593612 0.8144906939653281 -0.2967330987539529 -0.5497181193307189 -0.7989775362978114 0.2438132190242709 -0.5535803758470984 -0.7975432953446792 0.2397362290679806 0.5535803758470984 0.7975432953446792 -0.2397362290679806 0.5497181193307189 0.7989775362978114 -0.2438132190242709 -0.6307130915381779 -0.7484351601869926 0.2050507428863028 -0.6327733709944583 -0.7467813291086449 0.2047327708380742 0.6327733709944583 0.7467813291086449 -0.2047327708380742 0.6307130915381779 0.7484351601869926 -0.2050507428863028 -0.1241102328803618 -0.949950385418969 0.2866895800979427 -0.12572764539914 -0.9493235337335358 0.288057958546645 0.12572764539914 0.9493235337335358 -0.288057958546645 0.1241102328803618 0.949950385418969 -0.2866895800979427 -0.1260763385258006 -0.9561757449318785 0.2642587778445488 0.1260763385258006 0.9561757449318785 -0.2642587778445488 -0.5411572163250612 -0.8409136120021787 0.0036282735233317 0.5411572163250612 0.8409136120021787 -0.0036282735233317 -0.4271593597663426 -0.5494736951569242 0.7180623508405128 0.4271593597663426 0.5494736951569242 -0.7180623508405128</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID525\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID528\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID528\">-3.786473319759188 -7.323412140034409 -4.615531269323347 -10.50426780891869 -3.619923147946738 -10.4997124189645 -3.81352480912883 -7.314962732852594 -4.805676486616894 -7.37051953241552 -4.653673804142658 -10.49401698912256 -3.861453874929484 -6.370197921834446 -4.812624718306279 -7.36088743703495 -3.820425668882074 -7.305856672633955 2.694805104503927 -6.908588653047397 3.159237001412372 -10.04246510191542 4.01444950041533 -9.85695107623112 2.124028407813262 -7.071998294227972 2.309722319644435 -5.993056934305602 2.044608896717736 -5.356969436367257 1.756362347080652 -6.218346919426859 1.654720203610757 -4.260796592547062 1.433822075213695 -5.58669282178515 1.301124565657046 -3.253791213680578 1.034025889616375 -5.076538702772943 1.150057598209742 -2.790499405865308 0.6099842723727789 -2.882667464664047 0.6813313594591697 -4.417481111052449 0.6181083223495576 -3.371747130340732 0.6745777442559287 -4.861532670451762 -3.824119757917572 -6.385272312822708 -4.818761116653899 -6.415319624856644 -4.770302607309429 -7.378913320643741 -3.932374746135774 -3.499523185868613 -4.927413575326117 -3.550563414087187 -4.879652942044097 -4.594604717966694 -3.940378453159533 -3.027190444375211 -4.936862069573945 -3.065660927447276 -4.915571062373914 -3.5436583785342 -3.918064205042312 -2.911394748494002 -4.09282702520373 -3.385230939043493 -3.913500117488176 -3.40050299024049 -4.103959653848396 -3.470749325366316 -4.244247793447956 -4.516291113672466 -4.071526949273308 -4.517354419797227 -4.694071954369298 -4.397249817793164 -4.852048441064388 -4.881619431869657 -4.696140705790722 -4.841330176768042 -3.612092296619232 -5.493643733810828 -3.54728384340591 -5.844317579836226 -3.388429709736816 -5.80223159735321 -3.853333020430924 -5.800397365438651 -3.80351443586253 -6.41800547167999 -3.644650972120329 -6.376784300125662 -3.613854860136208 -6.28799614187596 -3.613167292398807 -6.974182995811063 -3.443345100842655 -6.955360092461058 -3.229723261065653 -6.914445467807718 -3.198837732959714 -7.807696212394419 -3.020090597742209 -7.800548950638829 -2.556309598949435 -7.719435323674952 -2.07909737595266 -10.76451173411055 -1.887081515124395 -10.7541844740011 -3.839915993991579 -5.735080854880583 -4.835935624615236 -5.752527526608549 -4.800992548081733 -6.42136775030822 -3.842653010323232 -5.712728447491024 -4.889675796800544 -4.592379227370737 -4.838679085328147 -5.729945936031485 -3.893651563408266 -4.575157380439522 -3.857120588539961 -5.72660297898442 -4.819904359823177 -6.41140743340478 -3.825258441823209 -6.381453665091004 -3.941118556409633 -3.493999293346616 -4.890027573496783 -4.588206715689682 -3.894002460961315 -4.571016362072552 -3.954943057750661 -3.012787565415254 -4.93138635985045 -3.527791052174538 -3.936315166081157 -3.477142797519195 -4.105939758987547 -3.476609754896952 -4.063770219756945 -4.537696388468241 -3.926614997645129 -3.491897394819695 -4.000934001956216 -2.89206782663573 -4.177193689864259 -2.897812676959156 -4.175804411867014 -3.36587945210828 -4.244396603139681 -4.53007578126498 -4.22716918693565 -5.016005951249156 -4.071675761691439 -4.531139361422384 -3.652170740556171 -5.469963595447143 -3.798853510505536 -5.527848467073778 -3.590817288257763 -5.821021844290655 -3.833509888572388 -5.808143101871867 -3.995755863268846 -5.841267620548126 -3.781669341089509 -6.425648218290957 -3.850258232861662 -6.228912249916991 -4.010205632191378 -6.267452237426695 -3.866956363979578 -6.914973573831331 -3.477759105263607 -6.875094619680589 -3.647638875630202 -6.893593195818973 -3.464546362080003 -7.768615286749084 -3.033317435407952 -7.697846838450428 -3.212070745508375 -7.704897883551319 -2.636818840382449 -10.75008068999862</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 6 7 0 8 5 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 13 12 10 9 14 13 13 12 14 13 15 14 13 12 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 20 19 19 18 21 20 20 19 21 20 22 21 20 19 22 21 23 22 23 22 22 21 24 23 25 24 20 19 23 22 26 22 27 19 28 24 29 23 30 21 26 22 26 22 30 21 27 19 30 21 31 20 27 19 31 20 32 18 27 19 27 19 32 18 33 17 32 18 34 16 33 17 33 17 34 16 35 15 34 16 36 14 35 15 35 15 36 14 37 12 36 14 38 13 37 12 38 13 39 9 37 12 37 12 39 9 40 10 41 11 40 10 39 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 56 37 60 38 61 39 62 39 63 38 57 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 75 49 78 50 79 51 80 51 81 50 76 49 79 52 82 53 83 54 84 54 85 53 80 52 83 55 86 56 87 57 88 57 89 56 84 55 90 58 91 59 42 60 43 60 92 59 93 58 90 61 46 62 91 63 46 62 90 61 94 64 95 64 93 61 47 62 92 63 47 62 93 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 55 74 60 75 56 76 57 76 63 75 58 74 54 77 96 78 55 79 58 79 97 78 59 77 60 80 64 81 61 82 62 82 67 81 63 80 68 83 98 84 69 85 72 85 99 84 73 83 70 86 69 87 74 88 77 88 72 87 71 86 75 89 74 90 78 91 81 91 77 90 76 89 79 92 78 93 82 94 85 94 81 93 80 92 83 95 82 96 86 97 89 97 85 96 84 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID524\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID525\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID529\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID532\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID530\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID531\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID530\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID534\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID534\">-0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID531\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID535\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID535\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID533\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID536\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"120\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID536\">4.048226775239526 -14.15776759814488 5.275854736254216 -20.25943781854545 6.074311336163872 -20.10514721805505 3.331770984800639 -14.38222820365034 3.34628257493822 -12.47232526311665 2.743403913001568 -11.2463545094255 2.619482817920047 -12.7497492002406 1.930445109493735 -10.2117235234207 2.016557223285633 -11.52379262397881 1.315964684678752 -10.70622398827427 1.252530450429137 -9.803638625415397 -0.1147598324848787 -10.49443800458955 1.185360373440858 -8.832837379884129 1.034377884849387 -6.712951942821705 1.02924344771786 -5.77682455434737 -0.08553014833978972 -5.880332193704978 -1.198492142265195 -5.712091593480277 -1.215528711540519 -6.648138052462246 -1.547887303772093 -10.63899816275007 -1.472992104737583 -9.736992302315027 -1.393422409009268 -8.766741022896534 -2.156041200933601 -10.13969745661595 -2.258842582037208 -11.4510186977769 -2.982122386725945 -11.16788361953795 -2.877321672698945 -12.67215376661415 -3.610391638133557 -14.29897361281646 -3.600610863927081 -12.38904113597162 -4.32388128207585 -14.06887039043778 -5.629060832817041 -20.16055024897072 -6.425433245485834 -20.00001212795564 -3.212716622742917 -10.00000606397782 -2.161940641037925 -7.034435195218892 -2.814530416408521 -10.08027512448536 -1.805195819066778 -7.149486806408228 -1.80030543196354 -6.194520567985809 -1.491061193362973 -5.583941809768977 -1.438660836349472 -6.336076883307075 -1.129421291018604 -5.725509348888448 -1.0780206004668 -5.069848728307975 -0.7739436518860465 -5.319499081375033 -0.7364960523687913 -4.868496151157514 -0.6967112045046342 -4.383370511448267 -0.6077643557702595 -3.324069026231123 -0.05737991624243935 -5.247219002294777 -0.5992460711325975 -2.856045796740138 -0.04276507416989486 -2.940166096852489 0.5146217238589301 -2.888412277173685 0.5171889424246934 -3.356475971410852 0.592680186720429 -4.416418689942065 0.6262652252145684 -4.901819312707699 0.657982342339376 -5.353111994137136 0.9652225547468674 -5.105861761710349 1.008278611642817 -5.761896311989403 1.309741408960023 -6.374874600120302 1.371701956500784 -5.623177254712751 1.66588549240032 -7.191114101825169 1.67314128746911 -6.236162631558325 2.024113387619763 -7.07888379907244 2.637927368127108 -10.12971890927273 3.037155668081936 -10.05257360902752</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 3 3 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 9 9 7 7 10 10 9 9 10 10 11 11 11 11 10 10 12 12 11 11 12 12 13 13 11 11 13 13 14 14 11 11 14 14 15 15 11 11 15 15 16 16 11 11 16 16 17 17 11 11 17 17 18 18 18 18 17 17 19 19 19 19 17 17 20 20 18 18 19 19 21 21 18 18 21 21 22 22 22 22 21 21 23 23 22 22 23 23 24 24 24 24 23 23 25 25 25 25 23 23 26 26 25 25 26 26 27 27 25 25 27 27 28 28 28 28 27 27 29 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID532\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID533\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 34 34 35 35 33 33 33 33 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 41 41 42 42 40 40 40 40 42 42 39 39 39 39 42 42 43 43 42 42 44 44 43 43 44 44 45 45 43 43 45 45 46 46 43 43 46 46 47 47 43 43 47 47 48 48 43 43 48 48 49 49 43 43 43 43 49 49 50 50 49 49 51 51 50 50 50 50 51 51 52 52 52 52 51 51 53 53 51 51 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 56 56 57 57 55 55 55 55 57 57 58 58 59 59 58 58 57 57</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID532\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID533\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID537\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID540\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID538\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID539\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID538\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID542\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID542\">-0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID539\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID543\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID543\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6630779028754261 -0.686790694066647 -0.2977351797517055 -0.6729311871649365 -0.562029832840137 -0.4809221187868957 -0.6658892428368299 -0.6885143064564592 -0.2872969997737087 0.6658892428368299 0.6885143064564592 0.2872969997737087 0.6729311871649365 0.562029832840137 0.4809221187868957 0.6630779028754261 0.686790694066647 0.2977351797517055 -0.6113217468963009 -0.7555949016953774 -0.2352914497035711 -0.6145076962834851 -0.7533304730451725 -0.23425091160954 0.6145076962834851 0.7533304730451725 0.23425091160954 0.6113217468963009 0.7555949016953774 0.2352914497035711 -0.6113552837420216 0.7554994400131816 -0.2355107496070638 -0.614536014802447 0.753238837863779 -0.234471191501963 -0.6630217725658703 0.6867913760071885 -0.2978585821254177 0.6630217725658703 -0.6867913760071885 0.2978585821254177 0.614536014802447 -0.753238837863779 0.234471191501963 0.6113552837420216 -0.7554994400131816 0.2355107496070638 -0.6658367060927759 0.6885118877851151 -0.2874245313088283 -0.6729662109479289 0.5620113969532229 -0.480894654386046 0.6729662109479289 -0.5620113969532229 0.480894654386046 0.6658367060927759 -0.6885118877851151 0.2874245313088283 -0.6701069292073644 0.5661758691150767 -0.4800016548513805 -0.6289247236154029 0.4714099301382881 -0.6182445873538268 0.6289247236154029 -0.4714099301382881 0.6182445873538268 0.6701069292073644 -0.5661758691150767 0.4800016548513805 -0.6252698128776827 0.1206693193046023 -0.7710230713036228 -0.6586069297905275 -2.229606074873209e-006 -0.7524871507387512 -0.6193819127185333 0.1198559305827131 -0.7758869776593 0.6193819127185333 -0.1198559305827131 0.7758869776593 0.6586069297905275 2.229606074873209e-006 0.7524871507387512 0.6252698128776827 -0.1206693193046023 0.7710230713036228 -0.6252581822364834 -0.120672201244489 -0.7710320521178985 -0.6193686517759511 -0.1198585530154133 -0.7758971584342167 0.6193686517759511 0.1198585530154133 0.7758971584342167 0.6252581822364834 0.120672201244489 0.7710320521178985 -0.6288757300373609 -0.4714242768409007 -0.6182834846371121 -0.67006535899179 -0.5661918537004904 -0.4800408310575318 0.67006535899179 0.5661918537004904 0.4800408310575318 0.6288757300373609 0.4714242768409007 0.6182834846371121 -0.6220449068117597 0.4728131159400871 -0.6241056731873016 0.6220449068117597 -0.4728131159400871 0.6241056731873016 -0.6632952763355497 -2.144258925662945e-006 -0.7483577863471115 0.6632952763355497 2.144258925662945e-006 0.7483577863471115 -0.6219938106167091 -0.472827546613443 -0.6241456646633203 0.6219938106167091 0.472827546613443 0.6241456646633203</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID541\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID544\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID544\">2.916716979171949 10.15761536438385 2.360348620683812 7.925327132511852 3.216081884900745 10.0871098268747 2.095474554515417 8.10766186966894 1.731248660526263 7.039697384405099 1.53253561834532 7.248080785050663 1.102106460940886 6.648978065149996 0.9696623879520416 6.935506865534766 0.03037484196967586 6.518738882791184 0.03037484196966032 6.779216066056368 -1.04136616354108 6.648978065150011 -0.9088939309335409 6.935506865534769 -1.471814094024708 7.248080785050666 -1.670494283317261 7.039697384405096 -2.034706097497008 8.107661869668936 -2.299594243474685 7.925327132511855 -2.856924722266216 10.15761536438385 -3.156233308757805 10.08710982687471 -1.40781128757764 8.740863958144171 -1.852121515551163 7.788450679867976 -1.168223810341762 8.705845242068937 -1.353723762346343 10.77235392063934 -1.891963265655392 8.548125708057006 -1.127976746028978 10.74215769727934 1.390907857481091 10.76412350460084 1.165152667342891 10.73392563091469 1.92977610017306 8.539773730394375 1.451024695764368 8.728401408360952 1.211452728307992 8.693382385382428 1.895306010249322 7.775979783153745 0.9074623347642705 7.685547256742304 1.633385363252757 7.302298032340775 1.117617843992585 7.784976980384649 -0.2901796556002942 6.749254765222319 0.8549824061199894 6.711683130854517 -0.197239063084682 6.918126269644701 0.3497466618996286 6.756248688697456 0.2568369789646587 6.925123544849952 -0.7953736304985473 6.718676308614904 -1.583745696748875 7.318291702219283 -0.8578410112294874 7.701550924618476 -1.06798004515442 7.800983242129445 -0.7399734769562733 10.71852904030233 -1.55024617473669 8.534797514554935 -1.310273488089885 8.50145099047988 -1.78574637488333 7.791442475072095 -1.566410502550131 7.70517274122652 -1.095319278789253 8.705805411636872 0.7810767299616233 10.71158619287857 1.352006114122691 8.494388859175095 1.591962985362013 8.527737177369552 1.138657808235052 8.693800988211841 1.609739214986294 7.693184525529069 1.829089859934408 7.779452862022374 1.08537548281971 7.599211858902786 1.642118984845298 7.065808738801556 1.799210093489108 7.202159495554009 0.8075133592585561 6.667004022123 0.8413662356912078 6.855588981904453 -0.303908425543867 6.890972967685572 -1.594006231623408 7.083719623542236 -1.037267018645942 7.617144552937642 -1.751077057674244 7.220075955278533 0.3635172617960516 6.897601249431154 -0.7817156750263035 6.862217289076101 -0.7478615787589549 6.673632464807028</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 10 10 12 12 13 13 13 13 12 12 14 14 13 13 14 14 15 15 15 15 14 14 16 16 15 15 16 16 17 17 18 17 19 16 20 15 19 16 21 14 20 15 20 15 21 14 22 13 21 14 23 12 22 13 22 13 23 12 24 10 23 12 25 11 24 10 25 11 26 9 24 10 24 10 26 9 27 8 26 9 28 7 27 8 27 8 28 7 29 6 28 7 30 5 29 6 29 6 30 5 31 4 30 5 32 3 31 4 31 4 32 3 33 1 32 3 34 0 33 1 35 2 33 1 34 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 36 22 43 23 44 23 41 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 48 27 52 28 53 29 54 29 55 28 49 27 56 30 57 31 53 32 54 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 70 39 71 40 37 41 40 41 72 40 73 39 43 42 36 43 38 44 39 44 41 43 44 42 37 45 71 46 38 47 39 47 72 46 40 45 47 48 52 49 48 50 49 50 55 49 50 48 52 51 56 52 53 53 54 53 59 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 76 57 61 58 60 59 65 59 64 58 77 57 78 60 71 61 70 62 73 62 72 61 79 60 66 63 61 64 76 65 77 65 64 64 69 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID540\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID541\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID545\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID548\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID546\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID547\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID546\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID550\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID550\">-0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID547\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID551\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID551\">-0.1164409580977757 -0.9514088463688938 0.2850661507936061 -0.1152736558224273 -0.9514554511327701 0.2853848432959771 -0.1088414049293589 -0.947410974285598 0.3009418455054356 0.1088414049293589 0.947410974285598 -0.3009418455054356 0.1152736558224273 0.9514554511327701 -0.2853848432959771 0.1164409580977757 0.9514088463688938 -0.2850661507936061 -0.1108291057697727 -0.947976074128154 0.2984263262429192 0.1108291057697727 0.947976074128154 -0.2984263262429192 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170025511882888 -0.9430258041624864 0.3114686753096171 0.1170025511882888 0.9430258041624864 -0.3114686753096171 -0.4971366770465531 -0.7227409499224468 0.4801048256790497 -0.5144747560634457 -0.7170989215866322 0.4701966206096629 -0.5580530298785489 -0.6868819057170897 0.4655857208311168 0.5580530298785489 0.6868819057170897 -0.4655857208311168 0.5144747560634457 0.7170989215866322 -0.4701966206096629 0.4971366770465531 0.7227409499224468 -0.4801048256790497 -0.5583224479878474 -0.6848994354787804 0.4681760431223551 -0.5451847648562986 -0.6795279363612947 0.4909331480692076 0.5451847648562986 0.6795279363612947 -0.4909331480692076 0.5583224479878474 0.6848994354787804 -0.4681760431223551 -0.132187031375201 -0.9230309666043481 0.3613037827447346 -0.1366215138279231 -0.9197698814859678 0.3679102160455122 -0.1319019164971365 -0.9175016921677499 0.375223305904228 0.1319019164971365 0.9175016921677499 -0.375223305904228 0.1366215138279231 0.9197698814859678 -0.3679102160455122 0.132187031375201 0.9230309666043481 -0.3613037827447346 -0.1268997631170716 -0.9278451148530309 0.3507134057377864 -0.1289849043901566 -0.9215886923010116 0.3661108802840657 0.1289849043901566 0.9215886923010116 -0.3661108802840657 0.1268997631170716 0.9278451148530309 -0.3507134057377864 -0.1260530155511802 -0.927743067690427 0.3512882543194544 -0.1256997483470361 -0.9362686863122588 0.3280251824122791 -0.1240889977263835 -0.935968365345372 0.3294922453047622 0.1240889977263835 0.935968365345372 -0.3294922453047622 0.1260530155511802 0.927743067690427 -0.3512882543194544 0.1256997483470361 0.9362686863122588 -0.3280251824122791 -0.1211640169608956 -0.9438046778011408 0.3074931074911838 0.1211640169608956 0.9438046778011408 -0.3074931074911838 -0.6328548543715852 -0.7235364593406309 0.2756623392905591 -0.6307922097387901 -0.7250610588406663 0.2763831562988343 -0.5535665584026356 -0.7852409048141928 0.2774180722751294 0.5535665584026356 0.7852409048141928 -0.2774180722751294 0.6307922097387901 0.7250610588406663 -0.2763831562988343 0.6328548543715852 0.7235364593406309 -0.2756623392905591 -0.5497036183937712 -0.7888062471367417 0.2749738831286428 -0.5040203107265815 -0.8294161793038206 0.2408989993423235 0.5040203107265815 0.8294161793038206 -0.2408989993423235 0.5497036183937712 0.7888062471367417 -0.2749738831286428 -0.4985502972453628 -0.8325691162757212 0.2414047798624232 -0.460851692936173 -0.8753739730121579 0.146068903229857 0.460851692936173 0.8753739730121579 -0.146068903229857 0.4985502972453628 0.8325691162757212 -0.2414047798624232 -0.4572416734112509 -0.8756361354271367 0.1555358814881895 -0.4569279317681941 -0.8856200811699702 -0.08302973562848467 0.4569279317681941 0.8856200811699702 0.08302973562848467 0.4572416734112509 0.8756361354271367 -0.1555358814881895 -0.4542038175253678 -0.8845680751983658 -0.1060104357374351 -0.4286788938903839 -0.8665692927857499 -0.2555231236771386 0.4286788938903839 0.8665692927857499 0.2555231236771386 0.4542038175253678 0.8845680751983658 0.1060104357374351 -0.3524105864353466 -0.7559917297368691 0.5516187842502752 -0.3064282572468343 -0.7615096868410569 0.5711433445361185 0.3064282572468343 0.7615096868410569 -0.5711433445361185 0.3524105864353466 0.7559917297368691 -0.5516187842502752 -0.5412831574712219 -0.6807737084399571 0.4935176808736367 0.5412831574712219 0.6807737084399571 -0.4935176808736367 -0.4272120245077655 -0.8674148026834218 -0.2551106548179773 0.4272120245077655 0.8674148026834218 0.2551106548179773</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID549\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID552\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID552\">-4.616909317180718 10.23948786492563 -5.610078521260624 10.18451102473239 -4.476007576609035 7.062446497286024 -5.582273135016021 10.1941861999994 -5.451980479202522 7.070081426959295 -4.457317962308713 7.070081426959296 -1.33218931828335 3.230435375675426 -1.6114341764961 2.609907015700216 -1.106382029703872 2.786350440244579 -1.802609827421979 4.207418866483767 -1.971952387364679 3.008396156954229 -2.310670360138509 5.273218044780612 -2.705824901930551 3.881759770422776 -2.574112979026264 5.90973500068239 -2.950461588838496 6.827506162532062 -2.915820564645328 4.577486397015233 -2.976053988909622 5.174927108690099 -4.098294577175903 9.820029505899221 -3.189794693172454 5.834534961886438 -3.533778702362138 6.694277314763351 -4.927754917204618 9.572531168459182 -3.044538181434562 4.237025474007779 -4.457317962308713 7.061712810444016 -5.451980479202522 7.061712810444018 -4.414598464887224 6.126107772952492 -5.763048222846655 3.122267891642199 -5.924772333389478 3.074542164180131 -5.33596872995056 2.130714035845917 -5.218756704377096 1.966856877840273 -5.377440342691845 1.899378453086448 -4.987916614829788 1.512708834556799 -5.29019606874273 3.166224867289707 -5.257018934731138 2.688642967424494 -4.260154754836963 2.720485635982612 -5.351085900066831 4.23457763899701 -5.285625910594948 3.191125460069592 -4.288675503379187 3.206941579033968 -4.351493664629199 4.291039244739512 -5.414233208841241 5.380670171341812 -5.345933874498217 4.243665053434983 -4.41979236804897 5.428040042772467 -5.444478208186572 6.07674149299513 -5.409786663689427 5.40789315121728 -4.415291528805324 5.454552311874554 -5.479987793634328 7.049459215875197 -5.432744773063641 6.08583337300607 -4.438155718111392 6.116919218057375 -7.120928170141183 9.270667048401974 -7.302381745519437 9.220150285118146 -6.203185173507943 6.276398871968053 -6.246087340236969 6.477690060269889 -6.416833798944759 6.43548686015438 -6.05090352278245 5.589542698505411 -6.057282581899993 5.716607486391731 -6.225849311089496 5.691759027822195 -5.947800219407116 5.041376582275624 -6.110213799958335 5.176780817884009 -5.915069665924102 4.577268658835078 -5.942953322128933 5.176183896234631 -5.911078840908683 4.364150946875863 -6.078344164688114 4.355576795346951 -5.968821493453951 4.011867773493208 -6.077940492615052 3.895396330804702 -5.788129089640393 3.450333224929001 -5.914572748051512 3.883135267461919 -6.122288302219893 3.554007002763703 -5.926698155432084 3.092878339107605 -5.764906912468319 3.140463050621411 -5.870819298278879 3.017708812526331 -5.411299025384771 2.019532791723905 -5.25185851333697 2.085897937376482 -5.418215817904647 1.905293193501272 -5.20087948499223 1.469582089575572 -5.03425269375542 1.515196952579786 -4.289073233445126 3.18393522163202 -5.286018809997048 3.167931777298792 -4.257505459531929 2.720014403967389 -4.351952313245739 4.286247223369609 -5.34638380163261 4.238759873238242 -4.285980849598744 3.209841492506433 -4.438928614152006 6.112609013456504 -5.433512735694054 6.081425640721875 -4.405753380254583 5.457778096002004 -7.23775406617386 9.323170269276911 -6.415450211855801 6.313277663626342 -6.244958820165806 6.356114253185693 -6.408634890764557 6.478828975510515 -6.226509457877878 5.603684553087598 -6.058025690602193 5.628878803242282 -6.210238106228282 5.734211264659076 -6.110019128929388 5.081703461357701 -5.942758739870094 5.081091340191565 -6.111403487118982 5.175334618298088 -6.083282415819649 4.567569574095214 -5.91599523908132 4.575875699918768 -6.075915714967462 4.348926781517354 -6.129123088814952 4.015794026888997 -5.965547817296141 4.005385117475852</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 14 12 16 14 17 15 17 15 16 14 18 16 18 16 16 14 19 17 18 16 19 17 20 18 20 18 19 17 21 19 21 19 19 17 22 20 23 21 14 12 17 15 24 15 25 12 26 21 27 20 28 17 29 19 29 19 28 17 30 18 30 18 28 17 31 16 28 17 32 14 31 16 31 16 32 14 24 15 24 15 32 14 25 12 32 14 33 13 25 12 33 13 34 11 25 12 25 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 2 22 6 23 40 24 41 24 7 23 3 22 42 25 43 26 44 27 45 27 46 26 47 25 44 28 48 29 49 30 50 30 51 29 45 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 52 35 59 36 60 36 57 35 61 34 62 37 63 38 58 39 63 38 62 37 64 40 65 40 66 37 67 38 61 39 67 38 66 37 68 41 63 42 64 43 65 43 67 42 69 41 6 44 68 45 40 46 41 46 69 45 7 44 70 47 71 48 72 49 73 49 74 48 75 47 72 50 76 51 77 52 78 52 79 51 73 50 77 53 80 54 81 55 82 55 83 54 78 53 84 56 85 57 81 58 82 58 86 57 87 56 85 59 88 60 89 61 90 61 91 60 86 59 92 62 42 63 93 64 94 64 47 63 95 62 92 65 43 66 42 67 47 67 46 66 95 65 43 68 48 69 44 70 45 70 51 69 46 68 48 71 96 72 49 73 50 73 97 72 51 71 59 74 52 75 54 76 55 76 57 75 60 74 62 77 58 78 59 79 60 79 61 78 66 77 40 80 68 81 64 82 65 82 69 81 41 80 71 83 76 84 72 85 73 85 79 84 74 83 76 86 80 87 77 88 78 88 83 87 79 86 80 89 84 90 81 91 82 91 87 90 83 89 84 92 88 93 85 94 86 94 91 93 87 92 88 95 98 96 89 97 90 97 99 96 91 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID548\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID549\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID553\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID556\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID554\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID555\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID554\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID558\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID558\">-0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID555\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID559\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID559\">-0.1164499499977552 0.9514072021990337 0.2850679651404685 -0.1088253784222441 0.9474097604849766 0.3009514624471104 -0.1152785401318226 0.9514539780096277 0.2853877816493387 0.1152785401318226 -0.9514539780096277 -0.2853877816493387 0.1088253784222441 -0.9474097604849766 -0.3009514624471104 0.1164499499977552 -0.9514072021990337 -0.2850679651404685 -0.1108158709414702 0.9479756505698795 0.2984325864815992 0.1108158709414702 -0.9479756505698795 -0.2984325864815992 -0.1170020873176061 0.9430265699053393 0.3114665311327904 0.1170020873176061 -0.9430265699053393 -0.3114665311327904 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211732142097103 0.9438073403036035 0.3074813108908012 0.1211732142097103 -0.9438073403036035 -0.3074813108908012 -0.1269033028027753 0.9278449706028746 0.3507125065701218 -0.1289786499144217 0.9215964103368728 0.3660936551218056 -0.1321716117428985 0.9230345567260386 0.3613002520603185 0.1321716117428985 -0.9230345567260386 -0.3613002520603185 0.1289786499144217 -0.9215964103368728 -0.3660936551218056 0.1269033028027753 -0.9278449706028746 -0.3507125065701218 -0.1318868020555722 0.9175152480092108 0.3751954705405586 -0.1365916059617619 0.9197763476074805 0.3679051556619317 0.1365916059617619 -0.9197763476074805 -0.3679051556619317 0.1318868020555722 -0.9175152480092108 -0.3751954705405586 -0.5580352589138925 0.686896283790861 0.4655858085500564 -0.5451072798952581 0.6795683929083647 0.4909631888086266 -0.5582998943323946 0.6849160643720522 0.4681786120206002 0.5582998943323946 -0.6849160643720522 -0.4681786120206002 0.5451072798952581 -0.6795683929083647 -0.4909631888086266 0.5580352589138925 -0.686896283790861 -0.4655858085500564 -0.497074599178697 0.7227721921072363 0.4801220690281148 -0.5144099610105722 0.7171316315973716 0.4702176251222334 0.5144099610105722 -0.7171316315973716 -0.4702176251222334 0.497074599178697 -0.7227721921072363 -0.4801220690281148 -0.352403313346486 0.7560131466980314 0.5515940778889484 -0.3064402809272837 0.7615293823458688 0.5711106320575088 0.3064402809272837 -0.7615293823458688 -0.5711106320575088 0.352403313346486 -0.7560131466980314 -0.5515940778889484 -0.4568215763294453 0.8856767481496878 -0.08301051250820768 -0.4286481079664477 0.8665788463267886 -0.2555423695509543 -0.4540888561829713 0.8846296580586545 -0.1059890502526975 0.4540888561829713 -0.8846296580586545 0.1059890502526975 0.4286481079664477 -0.8665788463267886 0.2555423695509543 0.4568215763294453 -0.8856767481496878 0.08301051250820768 -0.4574195148530338 0.8755517285042376 0.1554881286299919 -0.4610442893976508 0.8752815563959685 0.1460149315887465 0.4610442893976508 -0.8752815563959685 -0.1460149315887465 0.4574195148530338 -0.8755517285042376 -0.1554881286299919 -0.5040953384354201 0.8293748738257591 0.2408842220532205 -0.4986342763500318 0.8325237471962924 0.2413877975439595 0.4986342763500318 -0.8325237471962924 -0.2413877975439595 0.5040953384354201 -0.8293748738257591 -0.2408842220532205 -0.5535993933396806 0.7852192614320004 0.2774138121473434 -0.5497405090277223 0.7887818631232486 0.2749700804483234 0.5497405090277223 -0.7887818631232486 -0.2749700804483234 0.5535993933396806 -0.7852192614320004 -0.2774138121473434 -0.6327739567192011 0.7235964141618628 0.2756906765018007 -0.6307142225357303 0.7251185372018276 0.2764103407932322 0.6307142225357303 -0.7251185372018276 -0.2764103407932322 0.6327739567192011 -0.7235964141618628 -0.2756906765018007 -0.1241004601015495 0.9359706713431454 0.329481377604328 -0.1257158798169777 0.9362722954747478 0.3280086984948568 0.1257158798169777 -0.9362722954747478 -0.3280086984948568 0.1241004601015495 -0.9359706713431454 -0.329481377604328 -0.1260584581940911 0.9277432077180657 0.3512859314728144 0.1260584581940911 -0.9277432077180657 -0.3512859314728144 -0.5411915379110214 0.6808183023324969 0.4935566416355883 0.5411915379110214 -0.6808183023324969 -0.4935566416355883 -0.4272108780820152 0.8674072480996509 -0.2551382597584773 0.4272108780820152 -0.8674072480996509 0.2551382597584773</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID557\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID560\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID560\">4.624208775236756 10.25279109822444 4.483294934126929 7.075747942042431 5.617378929991789 10.19781422708152 5.588996955066634 10.20763462219114 4.464061036837125 7.083520870205009 5.458721422938665 7.083520870205004 5.458721422938665 7.076423884248994 4.464061036837125 7.076423884248999 4.421346952999289 6.140815188881417 4.158114993700223 9.82002950589921 3.593575840268438 6.694277314763352 4.987579839267953 9.572531168459182 3.010244459204613 6.827506162532067 3.2495779390001 5.834534961886451 3.035846245815374 5.174927108690105 2.975650367709245 4.577486397015233 2.633905235931875 5.90973500068239 2.765668784803665 3.88175977042276 2.031777497158823 3.008396156954226 2.370486083393128 5.273218044780597 1.862425550676504 4.207418866483772 1.671278059369284 2.609907015700215 1.391990961728664 3.230435375675429 1.166188366418925 2.786350440244582 3.10435390468914 4.237025474007778 5.487502565849463 7.063677282062665 4.445669499516969 6.131139493031489 5.440259090957746 6.100053721609197 5.359399117465306 4.250949577599662 4.296992243910657 3.223309561720638 5.293941409287112 3.207493381871648 5.298962164022343 3.183399341581381 4.268933211202332 2.737661070040306 5.265793053665141 2.705818470045893 5.257114503965267 1.984286605816789 5.026294682284743 1.530141409702067 5.415796362687616 1.916808604102276 5.797934195308944 3.14048579679244 5.370891361201542 2.148913571710389 5.959649671694621 3.092759185175174 6.100274528703595 3.920387757089989 5.936906742911044 3.908127033707534 5.810472141374266 3.475336991400121 5.937866076838642 4.353177406087491 5.995585169795275 4.000895026903539 6.105118350408258 4.344603273888446 6.137981372295337 5.179637239087242 5.970701324597152 5.179040319610356 5.942823095099554 4.580127261937448 6.087918494432243 5.725176464399121 5.978424246796603 5.049948518067148 6.256494040726642 5.700328114675888 6.280019180205057 6.487347366001216 6.084814463887035 5.599199516900355 6.450770346717195 6.445144142728336 7.160276736564839 9.280524494546649 6.242625006838358 6.286231003209693 7.341713869329332 9.230007304171149 5.452393926001093 6.09104426690505 4.423201973780691 5.468860483384689 5.417699803672306 5.422201727503866 5.422292833750023 5.396900100893685 4.359547899167656 4.307272427779807 5.353987874597794 4.259895192131318 4.427849072468621 5.444266645087963 4.446466439651513 6.127255214550647 4.413290633479596 5.472425483488996 5.441051096828423 6.096071898312635 4.360018074793429 4.302764210820874 4.294045878582681 3.226357187596779 5.354449558780775 4.25527680367496 4.297427948320241 3.201644465293737 4.265866408531684 2.73773186676205 5.294372291942167 3.185641304488297 5.908260563923147 3.034311935547308 5.289309405852778 2.102497103108806 5.44874766786911 2.036131675611467 5.455634220373443 1.92359810915547 5.071713689974774 1.533491951675666 5.238326230219618 1.487875929105176 6.157026842955437 3.572135238052842 5.799683556714631 3.158588099668047 5.961466416325745 3.111003021527154 6.102338909262918 4.338121338358671 5.991977498616147 3.994577086405462 6.155552762072252 4.004986074229297 6.13932621225063 5.17824259034208 5.943923440480776 4.578781900045646 6.111197565143103 4.570475749670344 6.23799435261363 5.743683457483806 5.970467508847646 5.090572949560249 6.137747467825764 5.091185061900924 6.439857234582204 6.489474903673819 6.089209544512898 5.639527272863173 6.257702125498454 5.614333098042479 7.272565028641802 9.334630861843838 6.279722914979196 6.367584550843858 6.450219087665467 6.324748101400834</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 6 6 1 7 8 8 9 8 4 7 7 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 15 14 13 12 16 15 16 15 13 12 17 16 16 15 17 16 18 17 18 17 17 16 19 18 19 18 17 16 20 19 19 18 20 19 21 20 19 18 21 20 22 21 22 21 21 20 23 22 22 21 23 22 24 23 18 17 25 24 16 15 26 15 27 24 28 17 29 23 30 22 31 21 30 22 32 20 31 21 31 21 32 20 33 18 32 20 34 19 33 18 34 19 35 16 33 18 33 18 35 16 28 17 28 17 35 16 26 15 35 16 36 12 26 15 26 15 36 12 37 14 37 14 36 12 38 13 38 13 36 12 39 10 36 12 40 9 39 10 41 11 39 10 40 9 6 25 8 26 42 27 43 27 9 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 46 31 50 32 51 33 52 33 53 32 47 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 54 38 61 39 62 39 59 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 75 50 79 51 80 51 76 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 94 62 44 63 94 62 91 61 90 64 93 64 92 61 95 62 49 63 95 62 92 61 8 65 90 66 42 67 43 67 93 66 9 65 94 68 45 69 44 70 49 70 48 69 95 68 45 71 50 72 46 73 47 73 53 72 48 71 61 74 54 75 56 76 57 76 59 75 62 74 56 77 55 78 96 79 97 79 58 78 57 77 64 80 60 81 61 82 62 82 63 81 67 80 70 83 69 84 98 85 99 85 72 84 71 83 74 86 68 87 70 88 71 88 73 87 77 86 79 89 75 90 74 91 77 91 76 90 80 89 83 92 78 93 79 94 80 94 81 93 84 92 87 95 82 96 83 97 84 97 85 96 88 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID556\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID557\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID561\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID564\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID562\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID563\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID562\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID566\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID566\">-0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID563\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID567\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID567\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6631686390966892 -0.5040032000643614 0.5533426880727064 -0.6729749463518688 -0.637361758729642 0.3753327991153409 -0.665978872098829 -0.4946710441241405 0.5583660985617809 0.665978872098829 0.4946710441241405 -0.5583660985617809 0.6729749463518688 0.637361758729642 -0.3753327991153409 0.6631686390966892 0.5040032000643614 -0.5533426880727064 -0.6144927450388785 -0.4648298128754873 0.6374416925152632 -0.6113023930812731 -0.4665479271234981 0.6392514496736599 0.6113023930812731 0.4665479271234981 -0.6392514496736599 0.6144927450388785 0.4648298128754873 -0.6374416925152632 -0.6144856224526448 0.02115082100305797 -0.788644446230291 -0.6629772102952537 -0.05946182801509716 -0.7462744197935675 -0.6113024351803775 0.02089648161452121 -0.7911211473590341 0.6113024351803775 -0.02089648161452121 0.7911211473590341 0.6629772102952537 0.05946182801509716 0.7462744197935675 0.6144856224526448 -0.02115082100305797 0.788644446230291 -0.6657964087760006 -0.04905406275857674 -0.7445192012217402 -0.6729865574698508 -0.2722723663025976 -0.6877185848970954 0.6729865574698508 0.2722723663025976 0.6877185848970954 0.6657964087760006 0.04905406275857674 0.7445192012217402 -0.6701219898639051 -0.2700944235726152 -0.6913649695029515 -0.6289126479749136 -0.4316287370285187 -0.6466571847496542 0.6289126479749136 0.4316287370285187 0.6466571847496542 0.6701219898639051 0.2700944235726152 0.6913649695029515 -0.6585492725804401 -0.7117353213657445 -0.2444293106486486 -0.6193536905515095 -0.6949069317223108 -0.3653838560261096 -0.625235720980833 -0.6900477813844846 -0.3645742072828637 0.625235720980833 0.6900477813844846 0.3645742072828637 0.6193536905515095 0.6949069317223108 0.3653838560261096 0.6585492725804401 0.7117353213657445 0.2444293106486486 -0.6252889641002037 -0.7683994078132589 -0.1362940257191311 -0.6194174598878585 -0.7727236736317268 -0.1386367000298329 0.6194174598878585 0.7727236736317268 0.1386367000298329 0.6252889641002037 0.7683994078132589 0.1362940257191311 -0.6701143216290043 -0.6378674916840043 0.3795679899576043 -0.6289491677379813 -0.7378166084535101 0.2450501921889897 0.6289491677379813 0.7378166084535101 -0.2450501921889897 0.6701143216290043 0.6378674916840043 -0.3795679899576043 -0.6220235325541719 -0.4367230682693095 -0.6498920576451671 0.6220235325541719 0.4367230682693095 0.6498920576451671 -0.66322861238516 -0.7078364633944363 -0.2430953492004979 0.66322861238516 0.7078364633944363 0.2430953492004979 -0.6220739496306955 -0.7438120858740276 0.2444740928986038 0.6220739496306955 0.7438120858740276 -0.2444740928986038</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID565\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID568\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID568\">-7.899110943071706 3.579476892421579 -8.214175023921374 3.499343108218881 -8.021211049481213 2.979020818746164 -8.759556250140577 4.335206239657886 -9.064802010625483 4.197342553950783 -11.08282841508071 5.669081998703718 -11.2648379224095 5.469276533528866 -7.825205836228406 2.14481334522609 -7.633701656418383 2.984495669372309 -8.138397114707948 2.229419222292963 -8.32989678897887 1.389732320018504 -8.631364655027486 1.58133806218634 -9.003990750986796 1.048556618282334 -9.189994418622993 1.264051624233875 -10.27307042155825 0.8681266778283273 -10.40627893432769 1.124434441577344 -13.15255137381423 0.9279589001163017 -13.1400950603756 1.173564403059267 -9.479935146563065 4.69355806947108 -8.826029735810842 3.819095263127729 -9.293499526711592 4.817014898978647 -11.27238326129256 6.122746934237442 -11.4451814866472 6.004559867052301 -9.598333715416914 4.269996002902563 -13.01122109678588 3.368945949801105 -10.11869071105481 3.450892066657108 -12.99649077872279 3.548711561631994 -10.9099599054405 1.675370038626291 -9.691000544009365 2.135289745490901 -10.93441203049134 1.86609666716912 -9.948650378751601 0.3300733873617702 -9.807669465111511 0.1722143048301494 -9.373139815182823 0.7689770988787354 -8.44894854732777 1.148049050310268 -8.784749024975916 0.3368814101118945 -8.577158506658666 0.2520704532656712 -7.929857688637407 2.612187149318454 -8.163454103892477 2.60234989713821 -8.283231792898336 1.754479953103737 -8.347904821053195 4.082333036170931 -8.575064803892623 4.009635864995857 -8.393267123014773 3.395516742139427 -11.4967703490366 5.776114209361791 -9.712549747783164 3.988124977535597 -9.538143212337962 4.122019508445817 -9.336631246940229 4.75423905497862 -8.857708853722354 3.759685808930915 -8.635265013996062 3.840908182472945 -12.99262703403099 3.273043651450185 -10.11874372708642 3.156863270877688 -10.099789347737 3.347976657609713 -9.576302614795329 2.006517442139522 -9.664307303095521 2.186591215072741 -10.88782026707182 1.734216017891711 -9.120028776210594 0.3225903730954203 -9.313113161111691 0.4264642055287746 -9.715984028727405 -0.1838898453009026 -8.597687662062889 1.298337143620016 -8.748456669163948 0.4045346212719758 -8.362142656158987 1.254366929361164 -8.171197827192739 4.170460074055694 -8.229032362201163 3.484223882823618 -7.995450381775688 3.494271011514753 -8.079339290991934 2.696767466467675 -8.439711847109324 1.84086418270131 -8.20339914665017 1.799521614731336</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 0 0 7 7 8 8 7 7 0 0 9 9 7 7 9 9 10 10 9 9 0 0 2 2 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 18 17 19 15 20 16 20 16 19 15 21 14 19 15 22 13 21 14 21 14 22 13 23 12 22 13 24 11 23 12 23 12 24 11 25 10 24 11 26 9 25 10 27 2 28 0 26 9 25 10 26 9 29 7 26 9 28 0 29 7 30 8 29 7 28 0 31 6 32 5 33 4 32 5 34 3 33 4 33 4 34 3 35 1 34 3 28 0 35 1 27 2 35 1 28 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 36 23 41 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 47 29 50 29 54 28 55 27 53 30 56 31 57 32 58 32 59 31 54 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 60 38 65 38 68 37 69 36 70 39 37 40 71 41 72 41 40 40 73 39 42 42 36 43 38 44 39 44 41 43 45 42 38 45 37 46 70 47 73 47 40 46 39 45 46 48 52 49 47 50 50 50 55 49 51 48 56 51 53 52 52 53 55 53 54 52 59 51 74 54 57 55 56 56 59 56 58 55 75 54 60 57 62 58 76 59 77 59 63 58 65 57 70 60 71 61 78 62 79 62 72 61 73 60 66 63 60 64 76 65 77 65 65 64 69 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID564\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID565\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID569\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID572\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID570\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID571\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID570\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID574\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID574\">-0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.36399123050046 -0.05397436236353959</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID571\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID575\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID575\">-0.1164223673367788 -0.03939636620354328 0.9924181370338092 -0.1152576241861024 -0.03911071598773939 0.9925653791876389 -0.1088382594273443 -0.0230925907380549 0.9937912082212393 0.1088382594273443 0.0230925907380549 -0.9937912082212393 0.1152576241861024 0.03911071598773939 -0.9925653791876389 0.1164223673367788 0.03939636620354328 -0.9924181370338092 -0.1108273234566798 -0.02565555069468248 0.9935084786220906 0.1108273234566798 0.02565555069468248 -0.9935084786220906 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170010640450718 -0.01171259707753706 0.993062720114908 0.1170010640450718 0.01171259707753706 -0.993062720114908 -0.3063605024253654 0.292841831319583 0.9057521208272551 -0.3523453743815874 0.2761690730154793 0.8941942631563176 -0.49707423312389 0.2193373097837861 0.8395286482908776 0.49707423312389 -0.2193373097837861 -0.8395286482908776 0.3523453743815874 -0.2761690730154793 -0.8941942631563176 0.3063605024253654 -0.292841831319583 -0.9057521208272551 -0.5580248035340664 0.2172606952515568 0.8008783359159973 -0.514413700169338 0.2117991293092924 0.830975134346339 0.514413700169338 -0.2117991293092924 -0.830975134346339 0.5580248035340664 -0.2172606952515568 -0.8008783359159973 -0.5582941772828572 0.2203572971939314 0.7998439055124711 -0.545145087248696 0.2436486159674788 0.8021547143698301 0.545145087248696 -0.2436486159674788 -0.8021547143698301 0.5582941772828572 -0.2203572971939314 -0.7998439055124711 -0.131888714653345 0.05687624445573066 0.9896314767446013 -0.1321734375085311 0.04191912395636385 0.9903398252437945 -0.1366090766113033 0.0492215304934492 0.9894014357798807 0.1366090766113033 -0.0492215304934492 -0.9894014357798807 0.1321734375085311 -0.04191912395636385 -0.9903398252437945 0.131888714653345 -0.05687624445573066 -0.9896314767446013 -0.1289755249516954 0.04693082498186052 0.9905366281112257 -0.1269026228341467 0.03033545622924269 0.9914512012263529 0.1269026228341467 -0.03033545622924269 -0.9914512012263529 0.1289755249516954 -0.04693082498186052 -0.9905366281112257 -0.126060444224836 0.03090911601848133 0.9915409174354799 -0.1257051481658395 0.006141985696806098 0.9920486337555757 -0.124092777366998 0.0076289036136885 0.992241292446045 0.124092777366998 -0.0076289036136885 -0.992241292446045 0.126060444224836 -0.03090911601848133 -0.9915409174354799 0.1257051481658395 -0.006141985696806098 -0.9920486337555757 -0.121164189425585 -0.01572761942446628 0.9925078746227056 0.121164189425585 0.01572761942446628 -0.9925078746227056 -0.5535966397540385 0.007327883701034462 0.8327527019310723 -0.6328191074081528 0.02571473448560696 0.7738725539321597 -0.6307579737542808 0.02590113406437414 0.7755472324749624 0.6307579737542808 -0.02590113406437414 -0.7755472324749624 0.6328191074081528 -0.02571473448560696 -0.7738725539321597 0.5535966397540385 -0.007327883701034462 -0.8327527019310723 -0.50401691956796 -0.04154329558212729 0.8626940937443589 -0.5497328291718073 0.003855971050269636 0.8353316395408592 0.5497328291718073 -0.003855971050269636 -0.8353316395408592 0.50401691956796 0.04154329558212729 -0.8626940937443589 -0.4985583850107261 -0.04209033687011798 0.8658336677894066 -0.4610763548051719 -0.1461813753387184 0.8752368825316127 0.4610763548051719 0.1461813753387184 -0.8752368825316127 0.4985583850107261 0.04209033687011798 -0.8658336677894066 -0.4574584754158474 -0.1372954494769191 0.8785679841783102 -0.4568954263623595 -0.3661495419449712 0.8106670600824024 0.4568954263623595 0.3661495419449712 -0.8106670600824024 0.4574584754158474 0.1372954494769191 -0.8785679841783102 -0.4541605407154716 -0.3875438698506286 0.8022144053794031 -0.4286977599895537 -0.5231200390841958 0.736589203890804 0.4286977599895537 0.5231200390841958 -0.736589203890804 0.4541605407154716 0.3875438698506286 -0.8022144053794031 -0.4272529523562543 -0.5230063251151536 0.7375088464502692 0.4272529523562543 0.5230063251151536 -0.7375088464502692 -0.5412401970068317 0.2456900208751192 0.8041737764851509 0.5412401970068317 -0.2456900208751192 -0.8041737764851509</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID573\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID576\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID576\">-13.80735445879598 0.2458649066213103 -14.09510292357247 -0.5039355294692868 -9.982481491239387 -0.7801007211882352 -9.988301163081676 -0.7356641740735505 -14.09879580861296 -0.4405539083059194 -10.34526016737302 -1.466008715794491 -3.709288218786411 0.08183865699999136 -4.257382154934284 -0.4900517056751142 -3.661200976693986 -0.3512310434882693 -4.316527116072848 0.05807392568797635 -5.545750788810404 -0.7523932208971403 -5.643938497996714 0.02538830541298317 -6.082881246769018 -0.8890069299183254 -7.090320138584049 -0.006447222908070464 -6.450420964679379 -0.6826635284399174 -7.188240519124049 -0.5334174714432312 -7.941139361618053 0.004288303168351604 -8.050713318734761 -0.478223336087835 -9.166790892866176 0.02237652469014133 -9.196091163788671 -0.4549016494423948 -13.13740525360347 0.1403214759947992 -13.10922761281063 -0.5571905098427091 -9.444849024834038 -2.637915891572029 -9.56365659142571 -3.414782035487321 -8.25892496550161 -2.716294787433218 -0.8383862270638492 -6.024387405365547 -0.760980155205736 -6.138226240003666 -0.4501075387385644 -5.702039180101661 -1.931797432665722 -4.455539334599414 -3.11972454521867 -4.927496814587837 -3.036946117474684 -5.046749768110493 -1.942059996843278 -4.288237917025894 -1.840201626763001 -4.405347099302408 -1.39198761903897 -4.060249812509751 -2.072054116570976 -3.996942288506867 -2.315112412340436 -4.901759201329516 -1.743825325723805 -4.738097079607221 -3.210764357994353 -3.909876114437887 -4.29745234114743 -4.921683762233218 -3.006142084263772 -4.677607628037944 -4.63326543236224 -4.104402683678466 -5.817027785622174 -5.11390335315071 -4.404478357282174 -4.86718369880627 -6.045846395112246 -4.351127992404424 -7.574657362153948 -2.511963867763529 -8.526584459177135 -3.206102051772249 -7.68254055900837 -3.291082013018551 -8.486035206263603 -2.245302060931764 -9.850251925139794 -2.869509604712622 -8.639203837906873 -3.01900298997022 -8.979394940552526 -3.648259713923244 -12.88930466061255 -3.809766395600264 -12.8594219210069 -3.959341569141119 -8.247053604057138 -3.436684447776327 -9.391545189087976 -3.394260442828891 -9.376131742660215 -3.534536530901836 -8.688221694559164 -2.944754120167723 -8.7058236215713 -3.078954991981029 -7.8341142891939 -3.053992018602209 -8.706594682299912 -1.318227486458866 -8.793910115866449 -1.430479012716069 -8.040918009984427 -1.609661502807112 -8.080882217779717 0.5073250354274762 -8.204757539203133 0.4184993788204998 -7.846467309198026 0.203731956450229 -7.836967917690922 0.2422817623004304 -8.193916486682584 0.4584273007660447 -7.973663933481603 0.1708422317066539 -3.184266115108013 -4.914833768129049 -3.657392430113825 -5.248806784060694 -3.102673325396043 -5.034591316029415 -2.258730892786211 -4.273571014922622 -3.394592342438381 -4.827589234947812 -2.162892915154069 -4.393783806136414 -1.204920604791744 -4.132968849313659 -1.64240444746631 -4.486484675650029 -1.124263670823358 -4.256400851632963 -1.573574662755514 -4.13323415933467 -2.106744346024158 -4.33304282629061 -1.707878264920318 -5.051978381616294 -4.376892342551905 -4.270486949557792 -4.102647352655998 -5.023934951648005 -3.055364651970826 -3.986730453637497 -7.39868796456141 -2.814896261844453 -8.22936812025759 -2.7654805562517 -8.304432996410977 -3.546277958346702 -8.87990583956584 -3.966989383531663 -12.75388280914387 -4.321676615539797 -8.85003260959982 -4.105813515261139 -8.187762571847973 -3.592890692650113 -9.315494873795004 -3.699917069303213 -8.18877059368268 -3.727801701899872 -7.814820248641656 -3.142791349253691 -8.686391782372066 -3.170572816674207 -7.860413932309075 -3.269408970252542 -8.035881586078531 -1.62343299194266 -8.789396298041625 -1.445615269068238 -8.113196821760255 -1.740424407903711</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 16 14 15 13 17 15 17 15 15 13 18 16 17 15 18 16 19 17 19 17 18 16 20 18 19 17 20 18 21 19 21 19 20 18 22 20 21 19 22 20 23 21 24 21 25 20 26 19 25 20 27 18 26 19 26 19 27 18 28 17 27 18 29 16 28 17 28 17 29 16 30 15 29 16 31 13 30 15 30 15 31 13 32 14 32 14 31 13 33 12 31 13 34 11 33 12 33 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 2 22 6 23 40 24 41 24 7 23 3 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 44 29 49 30 50 30 45 29 51 28 48 31 52 32 53 33 54 33 55 32 51 31 56 34 57 35 58 36 59 36 60 35 61 34 62 37 63 38 57 39 60 39 64 38 65 37 66 40 67 41 63 42 67 41 66 40 68 43 69 43 70 40 71 41 64 42 71 41 70 40 68 44 72 45 67 46 71 46 73 45 69 44 40 47 6 48 72 49 73 49 7 48 41 47 74 50 75 51 76 52 77 52 78 51 79 50 80 53 74 54 81 55 82 55 79 54 83 53 80 56 84 57 85 58 86 58 87 57 83 56 85 59 88 60 89 61 90 61 91 60 86 59 89 62 92 63 93 64 94 64 95 63 90 62 93 65 92 66 96 67 97 67 95 66 94 65 44 68 43 69 49 70 50 70 46 69 45 68 48 71 49 72 52 73 55 73 50 72 51 71 53 74 52 75 98 76 99 76 55 75 54 74 56 77 62 78 57 79 60 79 65 78 61 77 66 80 63 81 62 82 65 82 64 81 70 80 68 83 40 84 72 85 73 85 41 84 69 83 74 86 76 87 81 88 82 88 77 87 79 86 80 89 81 90 84 91 87 91 82 90 83 89 85 92 84 93 88 94 91 94 87 93 86 92 89 95 88 96 92 97 95 97 91 96 90 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID572\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID573\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID577\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID580\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID578\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID579\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID578\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID582\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID582\">-0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID579\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID583\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID583\">-0.1088481568860517 0.5923386087106918 -0.7983026063925831 -0.1152614763458105 0.5789463800012497 -0.8071777258782806 -0.1164251204271865 0.5786308311400867 -0.8072369866325796 0.1164251204271865 -0.5786308311400867 0.8072369866325796 0.1152614763458105 -0.5789463800012497 0.8071777258782806 0.1088481568860517 -0.5923386087106918 0.7983026063925831 -0.1108311632331452 0.590147562033904 -0.7996513667104105 0.1108311632331452 -0.590147562033904 0.7996513667104105 -0.1169877446230861 0.6008761854127825 -0.7907348970494391 0.1169877446230861 -0.6008761854127825 0.7907348970494391 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211500310125118 0.5973661817498072 -0.7927649808659082 0.1211500310125118 -0.5973661817498072 0.7927649808659082 -0.1289733966194932 0.6455983790150909 -0.7527075102438648 -0.1321771951964776 0.641516467688795 -0.7556360306087073 -0.1268970330673193 0.6330602330777329 -0.763630725085285 0.1268970330673193 -0.6330602330777329 0.763630725085285 0.1321771951964776 -0.641516467688795 0.7556360306087073 0.1289733966194932 -0.6455983790150909 0.7527075102438648 -0.1318920760546484 0.6528924852832206 -0.7458792683368364 -0.1366192134527518 0.6467025975280807 -0.7504071833784541 0.1366192134527518 -0.6467025975280807 0.7504071833784541 0.1318920760546484 -0.6528924852832206 0.7458792683368364 -0.5584055108423882 0.6651998527735585 -0.4956737246726797 -0.5581385279990985 0.6633895104200506 -0.4983931590899352 -0.5451959861481726 0.685035348561869 -0.4832058649360955 0.5451959861481726 -0.685035348561869 0.4832058649360955 0.5581385279990985 -0.6633895104200506 0.4983931590899352 0.5584055108423882 -0.6651998527735585 0.4956737246726797 -0.5144129314214905 0.6776483658738426 -0.5255207210137955 -0.4970796441004287 0.6888461887919656 -0.5276388496005341 0.4970796441004287 -0.6888461887919656 0.5276388496005341 0.5144129314214905 -0.6776483658738426 0.5255207210137955 -0.3524751158962745 0.7672119047738485 -0.5358611628464889 -0.3065368645499978 0.7874550645024714 -0.5347426222597793 0.3065368645499978 -0.7874550645024714 0.5347426222597793 0.3524751158962745 -0.7672119047738485 0.5358611628464889 -0.4568675187823961 0.2091268429512146 -0.864602818546687 -0.4286959899151095 0.03977866415051463 -0.9025726597394278 -0.454140017835944 0.1871034341906217 -0.8710620810906903 0.454140017835944 -0.1871034341906217 0.8710620810906903 0.4286959899151095 -0.03977866415051463 0.9025726597394278 0.4568675187823961 -0.2091268429512146 0.864602818546687 -0.4574112545118764 0.4314471465815102 -0.7775784873262276 -0.4610330568129479 0.4223904034843316 -0.7804068602786966 0.4610330568129479 -0.4223904034843316 0.7804068602786966 0.4574112545118764 -0.4314471465815102 0.7775784873262276 -0.5040287169911085 0.4972319905766404 -0.7061978476287568 -0.4985686990456941 0.4987245144832661 -0.7090155929070352 0.4985686990456941 -0.4987245144832661 0.7090155929070352 0.5040287169911085 -0.4972319905766404 0.7061978476287568 -0.5497106232233426 0.5162657272219958 -0.6567251553057397 -0.5535723758972673 0.5174191484113569 -0.6525603799655021 0.5535723758972673 -0.5174191484113569 0.6525603799655021 0.5497106232233426 -0.5162657272219958 0.6567251553057397 -0.6328126226365115 0.4957425846370723 -0.5948003651724295 -0.6307511085987073 0.4969187375520394 -0.5960073886045282 0.6307511085987073 -0.4969187375520394 0.5960073886045282 0.6328126226365115 -0.4957425846370723 0.5948003651724295 -0.1240850473728673 0.6156224677283072 -0.7782106901389768 -0.1257030963027143 0.6143256787305055 -0.7789754116993772 0.1257030963027143 -0.6143256787305055 0.7789754116993772 0.1240850473728673 -0.6156224677283072 0.7782106901389768 -0.1260524294574446 0.6335694907637545 -0.7633482071775848 0.1260524294574446 -0.6335694907637545 0.7633482071775848 -0.5412748879965412 0.687898621088518 -0.4835462570725241 0.5412748879965412 -0.687898621088518 0.4835462570725241 -0.4272470439601668 0.04043528853901111 -0.9032302867309456 0.4272470439601668 -0.04043528853901111 0.9032302867309456</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID581\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID584\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID584\">2.646808655273745 7.626911531842514 2.986714499689779 10.86290628058702 1.998937623161384 10.76476841980763 2.753392543137154 7.603757279601984 3.73149548145001 7.745943970176235 3.137910672426441 10.83666032021479 2.986360958528956 6.654920534525154 3.799485555325677 7.718958628996464 2.820184296480023 7.581971421901169 -2.95700400690178 2.488800756097747 -2.971172988345912 1.772671627247351 -2.594993336245468 2.091126521667093 -3.76863480279438 3.318475734997433 -3.431737630961593 2.084911934129343 -4.453542058358801 2.75223422874128 -4.08577743896114 3.685864912838015 -4.53685698336594 3.700681803303125 -5.569883206520585 3.476406390468299 -5.235605254682731 3.939530432036485 -5.959241747873955 4.31281594366269 -6.249633121797126 3.879151418789206 -6.88113622380909 4.847979343375632 -7.230760792342645 4.457246732780551 -9.888780236097874 6.819957862866433 -10.45577002727441 6.283216928777442 2.835843568044133 6.696637019396241 3.81895079101609 6.819175129102827 3.625763036746231 7.771438100407487 3.373113844173326 3.843845654733742 4.353287423553801 3.987980441594453 4.147409147623762 5.020072757806616 3.441920088820501 3.382462419447546 4.425017633747888 3.516183683878827 4.329822052382522 3.988576604581577 2.230352107905733 4.329484501746936 2.056359603288195 4.291999654325147 2.288473777971453 3.838233246252393 2.009452657357155 5.389437917116684 1.846819489349988 5.343682783349156 2.335103140462541 4.369785709347631 3.459288365190417 5.567061823306501 3.317376742139041 5.502219060815397 3.432423115070612 5.067446679764254 -4.074900648768324 5.522217060790011 -3.625507904080766 5.488165434978679 -4.027123668961578 5.648598042583979 -0.4737934490769319 6.534086009615941 -0.9192721422585309 7.044197939014103 -1.028756012507091 6.944701516300213 -0.7779385115273918 7.439108605446435 -0.2529975353390784 6.897934716972006 -0.6357437305888969 7.514537810738175 -0.9697804840218809 7.326856963524517 -1.497398853673659 8.118176192147216 -1.653891145271553 8.049854498656151 -4.608304711025181 10.23293734499374 -2.240674467155615 7.779841628900575 -4.443807657891354 10.31154936901565 2.910250464513155 6.064224792957607 3.895902912319825 6.178304156875717 3.75622254964643 6.838662211659464 3.960090801378393 6.133215747935012 3.191931818886059 4.899905221596626 4.178668992404626 5.008016229071481 2.9733499521145 6.025115824772509 2.981756068882562 6.041430594450256 3.836421506115961 6.809938349919037 2.853014213669746 6.688899456137831 3.403561010679153 3.827721629442527 4.186013224173247 5.000603531797977 3.19913319123502 4.893302521149462 3.493767507501942 3.347032692092354 4.38943376548893 3.946035659923494 3.408140364595802 3.806695969447152 1.628068030784827 5.400671769098429 1.994848645956156 4.389698935824643 2.168577740868163 4.427932373500567 2.393635605078873 4.309488781848157 2.442902545374851 3.817638953721654 2.605226202472054 3.872011356930058 1.76553688369938 5.855830345560892 1.832450069184318 5.358546584306009 1.995011165963287 5.404459939837887 -3.582332382251634 5.498604840327278 -3.558007158969994 5.626281209275753 -3.982493890322007 5.661270718905809 -0.5199101826953312 6.531590478244566 -0.4026134045726859 6.625773062040189 -0.9689320567369109 7.039776299560601 0.3219388629227055 6.921678714189059 0.4484293081867797 7.007795171809001 -0.01524134949612947 7.554529442168967 -0.4343023409365476 7.391532441464667 -0.2892066006479271 7.463461634669913 -0.9145523620121765 8.201304268657363 -1.364385652116661 7.987424724987632 -1.205987261730729 8.052971772803227 -3.35620196045869 10.62525094866661</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 6 7 0 8 5 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 15 14 13 12 16 15 15 14 16 15 17 16 15 14 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 18 17 20 19 21 20 21 20 20 19 22 21 21 20 22 21 23 22 23 22 22 21 24 23 23 22 24 23 25 24 26 24 27 23 28 22 27 23 29 21 28 22 28 22 29 21 30 20 29 21 31 19 30 20 30 20 31 19 32 17 31 19 33 18 32 17 33 18 34 16 32 17 32 17 34 16 35 14 34 16 36 15 35 14 36 15 37 12 35 14 35 14 37 12 38 13 38 13 37 12 39 10 37 12 40 9 39 10 41 11 39 10 40 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 55 39 58 39 62 38 63 37 64 40 65 41 61 42 62 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 68 46 74 47 75 48 76 48 77 47 73 46 78 49 75 50 79 51 80 51 76 50 81 49 78 52 82 53 83 54 84 54 85 53 81 52 86 55 83 56 87 57 88 57 84 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 94 62 46 63 94 62 91 61 90 64 93 64 92 61 95 62 47 63 95 62 92 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 60 74 55 75 54 76 59 76 58 75 63 74 54 77 56 78 96 79 97 79 57 78 59 77 64 80 61 81 60 82 63 82 62 81 67 80 69 83 98 84 70 85 71 85 99 84 72 83 68 86 70 87 74 88 77 88 71 87 73 86 75 89 74 90 79 91 80 91 77 90 76 89 78 92 79 93 82 94 85 94 80 93 81 92 83 95 82 96 87 97 88 97 85 96 84 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID580\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID581\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID585\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID588\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID586\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID587\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID586\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID590\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID590\">-0.5298591187803394 0.3053530486319291 0.657905410261265 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID587\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID591\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID591\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID589\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID592\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"120\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID592\">-6.107060972638583 10.3510451214439 -6.227565367325356 8.494179944032663 -5.98671614912405 9.138399969870253 -6.540672166948984 11.6205228613906 -6.901978847139394 10.23735513419642 -6.853807126191143 9.252082277676843 -7.239162120697529 13.30684774139463 -7.335486789514798 11.50684232576269 -10.06778605077227 19.04794340165244 -7.985814033393162 13.15527448152569 -10.82793655825754 18.80162710738276 -4.083905012052296 5.898375335431962 -4.306234587730349 4.811018489749948 -3.385471377541194 5.140468275977997 -5.553161274050962 7.679445612741617 -5.041763826525845 4.277439417764588 -5.726108265179133 5.043303854792981 -7.390247861223824 6.714910200247886 -7.717772010128141 8.570258983447072 -8.150745295211088 7.481316037858777 -8.858556458189856 8.193395738456855 -9.003512412931656 7.511347968262671 -10.02743369272711 8.549250986811536 -10.42232541141175 7.994811895109255 -11.41290570274134 9.284142171201117 -11.80775011326652 8.729689492795748 -13.18353596539283 10.30339123710937 -13.60830466398959 9.797102239768163 -19.04886463418979 14.25191163615645 -19.59188570890547 13.76630396384998 -9.795942854452735 6.88315198192499 -9.524432317094897 7.125955818078223 -6.804152331994795 4.898551119884082 -6.591767982696415 5.151695618554686 -5.903875056633261 4.364844746397874 -5.706452851370669 4.642071085600558 -5.211162705705876 3.997405947554627 -5.013716846363556 4.274625493405768 -4.501756206465828 3.755673984131335 -4.429278229094928 4.096697869228428 -4.075372647605544 3.740658018929389 -3.858886005064071 4.285129491723536 -3.695123930611912 3.357455100123943 -3.426903563095571 4.626041138838422 -3.270336083474492 5.8102614306953 -3.113782683662678 4.247089972016331 -2.863054132589566 2.521651927396491 -2.776580637025481 3.839722806370808 -2.520881913262922 2.138719708882294 -2.153117293865174 2.405509244874974 -2.041952506026148 2.949187667715981 -1.692735688770597 2.570234137988999 -5.413968279128769 9.400813553691382 -5.033893025386136 9.52397170082622 -3.992907016696581 6.577637240762844 -3.667743394757399 5.753421162881343 -3.619581060348764 6.653423870697313 -3.450989423569697 5.118677567098211 -3.053530486319291 5.175522560721952 -2.993358074562025 4.569199984935127</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 4 4 5 5 4 4 3 3 6 6 4 4 6 6 7 7 7 7 6 6 8 8 7 7 8 8 9 9 9 9 8 8 10 10 11 11 12 12 13 13 12 12 11 11 14 14 12 12 14 14 15 15 15 15 14 14 16 16 16 16 14 14 1 1 16 16 1 1 17 17 17 17 1 1 5 5 5 5 1 1 3 3 17 17 5 5 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 25 25 24 24 26 26 25 25 26 26 27 27 27 27 26 26 28 28 27 27 28 28 29 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID588\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID589\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 33 33 35 35 34 34 34 34 35 35 36 36 35 35 37 37 36 36 36 36 37 37 38 38 37 37 39 39 38 38 38 38 39 39 40 40 39 39 41 41 40 40 40 40 41 41 42 42 41 41 43 43 42 42 44 44 45 45 43 43 43 43 45 45 42 42 42 42 45 45 46 46 45 45 47 47 46 46 46 46 47 47 48 48 48 48 47 47 49 49 47 47 50 50 49 49 51 51 49 49 50 50 52 52 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 55 55 56 56 57 57 56 56 44 44 57 57 43 43 57 57 44 44 44 44 58 58 45 45 59 59 45 45 58 58</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID588\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID589\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID593\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID596\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID594\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID595\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID594\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID598\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID598\">-0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID595\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID599\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID599\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6658812119562829 0.05557583132515614 -0.7439849047770725 -0.6630700206644244 0.06601587505827476 -0.7456406989538392 -0.672990936518585 0.2791484701318099 -0.6849520647365829 0.672990936518585 -0.2791484701318099 0.6849520647365829 0.6630700206644244 -0.06601587505827476 0.7456406989538392 0.6658812119562829 -0.05557583132515614 0.7439849047770725 -0.6145075341081261 -0.01519103171901108 -0.7887646816888181 -0.6113304972219287 -0.01491894967988539 -0.791234761690131 0.6113304972219287 0.01491894967988539 0.791234761690131 0.6145075341081261 0.01519103171901108 0.7887646816888181 -0.6145579693011508 0.4591343117628982 0.6414937148019891 -0.6630483910174163 0.498855229375798 0.5581310699948852 -0.6113858088080906 0.4608262320043037 0.643309083322156 0.6113858088080906 -0.4608262320043037 -0.643309083322156 0.6630483910174163 -0.498855229375798 -0.5581310699948852 0.6145579693011508 -0.4591343117628982 -0.6414937148019891 -0.6730103961097779 0.633535161008159 0.3816938648898171 -0.6658642050055886 0.4894684515523368 0.563067931449868 0.6658642050055886 -0.4894684515523368 -0.563067931449868 0.6730103961097779 -0.633535161008159 -0.3816938648898171 -0.6701444240931888 0.6340128793903517 0.3859198357482596 -0.6288817366873886 0.7353849506127249 0.2524217416812069 0.6288817366873886 -0.7353849506127249 -0.2524217416812069 0.6701444240931888 -0.6340128793903517 -0.3859198357482596 -0.6252123795686114 0.7697839976649213 -0.1286160074530658 -0.658578304891523 0.7141210938325098 -0.2372881785291209 -0.6193201491348418 0.7741457966357958 -0.1309230248150662 0.6193201491348418 -0.7741457966357958 0.1309230248150662 0.658578304891523 -0.7141210938325098 0.2372881785291209 0.6252123795686114 -0.7697839976649213 0.1286160074530658 -0.6252712636549731 0.6936274305614512 -0.3576546300833142 -0.6193894345161001 0.698494696426414 -0.3584158024892286 0.6193894345161001 -0.698494696426414 0.3584158024892286 0.6252712636549731 -0.6936274305614512 0.3576546300833142 -0.6289250440898284 0.438067046954839 -0.6423009818526467 -0.6701291299022093 0.2769832769238545 -0.6886270496872973 0.6701291299022093 -0.2769832769238545 0.6886270496872973 0.6289250440898284 -0.438067046954839 0.6423009818526467 -0.6219814506780375 0.7414065190456863 0.2519036492967151 0.6219814506780375 -0.7414065190456863 -0.2519036492967151 -0.6632653245983359 0.7102034419860702 -0.2359876695435651 0.6632653245983359 -0.7102034419860702 0.2359876695435651 -0.6220409688791525 0.4431898766144704 -0.6454825840426184 0.6220409688791525 -0.4431898766144704 0.6454825840426184</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID597\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID600\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID600\">11.17320201782601 5.536950720255618 9.132267951340403 4.075553710198706 11.35265838639835 5.335723967790457 8.828758325209945 4.21581308609941 8.272822123002557 3.384285294404218 7.958813840120982 3.46689333538805 8.073268797801365 2.865498302382628 13.17319575342934 1.025474877244218 10.29819330692128 0.7370029567927344 13.18256427081902 0.7797863034262775 10.43461727267754 0.9922419491244857 9.220172518723757 1.141427050559116 9.031436992618183 0.9274041343529934 8.665601494827795 1.463091360543377 8.36173593111768 1.273861371559148 8.18085731407338 2.115010321233234 7.866647783783838 2.032874418182379 7.685815723975792 2.874023367856466 10.95406190306286 1.514596294059031 10.9820680884364 1.705023222924476 9.743740101464573 1.988437824085204 13.08422968449263 3.199757330669627 13.07267779495826 3.379665889560748 10.18916535332233 3.309702731294755 11.36545721424794 6.006842844578951 9.664606296230362 4.161713060886227 11.53679451320826 5.887322116789082 8.87938669524374 3.718691191733911 9.54294143455537 4.58860161283133 9.357925723043625 4.713345186989823 8.394680517829666 3.989110993373233 8.433829724268323 3.302053148008258 8.621195066914398 3.915152656841173 7.959361423291862 2.521603384444761 8.30581624406488 1.662156996532964 8.192850961276159 2.510608965499221 8.468953380353767 1.050766553539041 8.589066946989393 0.1540948178637264 8.797428992253618 0.2377375302496965 9.395660232283182 0.6451734807435667 9.821862682408826 0.04469772784885676 9.9650088203073 0.2013483060752452 13.05993379571968 3.110797586965738 10.16431663537896 3.21133071886602 10.18010204372508 3.02003618013284 9.626254877814432 1.862045396082188 10.93264464736882 1.574955679289271 9.717512492742973 2.041116121749284 9.604226472762715 4.0114184348044 9.776872146541788 3.876144995495381 11.58740893055048 5.655514610796291 8.689895478581324 3.740148740343702 8.911424637990344 3.657371138622741 9.401641036197944 4.648499728985229 8.215118084369612 4.081528994233212 8.033717664007693 3.406265074033831 8.267186516090369 3.395002083835391 8.111839397566158 2.603469864687234 8.228261606106596 1.705594495213734 8.464930288377673 1.745696425622322 9.135802437258771 0.2031367210126086 9.724851614784443 -0.308343230978199 9.330301350185701 0.305373195999198 8.620257114820655 1.19753825098844 8.384287130441004 1.154964469876548 8.762482845796232 0.3028705175705735</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 7 7 8 8 9 9 8 8 7 7 10 10 8 8 10 10 11 11 8 8 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 6 6 16 16 6 6 5 5 16 16 5 5 17 17 18 17 19 5 20 16 19 5 21 6 20 16 21 6 22 15 20 16 20 16 22 15 23 14 22 15 24 13 23 14 23 14 24 13 25 12 24 13 26 11 25 12 25 12 26 11 27 8 26 11 28 10 27 8 28 10 29 7 27 8 30 9 27 8 29 7 21 6 19 5 31 4 19 5 32 3 31 4 31 4 32 3 33 1 32 3 34 0 33 1 35 2 33 1 34 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 37 23 40 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 47 28 53 29 54 29 50 28 55 27 56 30 57 31 52 32 55 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 70 39 71 40 38 41 39 41 72 40 73 39 42 42 37 43 36 44 41 44 40 43 45 42 71 45 36 46 38 47 39 47 41 46 72 45 53 48 47 49 46 50 51 50 50 49 54 48 56 51 52 52 53 53 54 53 55 52 59 51 56 54 74 55 57 56 58 56 75 55 59 54 60 57 76 58 61 59 64 59 77 58 65 57 78 60 71 61 70 62 73 62 72 61 79 60 61 63 76 64 66 65 69 65 77 64 64 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID596\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID597\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID601\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID604\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID602\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID603\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID602\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID606\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID606\">-0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID603\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID607\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID607\">-0.1088540514781176 -0.584331089942785 -0.8041815546274835 -0.1164339797874606 -0.5705294778991202 -0.8129816991784074 -0.1152698562505582 -0.5708457404589754 -0.8129255813663509 0.1152698562505582 0.5708457404589754 0.8129255813663509 0.1164339797874606 0.5705294778991202 0.8129816991784074 0.1088540514781176 0.584331089942785 0.8041815546274835 -0.1108435503727157 -0.5821217352458851 -0.8055110133915557 0.1108435503727157 0.5821217352458851 0.8055110133915557 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170176206764311 -0.5929274844702175 -0.7967081489548396 0.1170176206764311 0.5929274844702175 0.7967081489548396 -0.5144163086132454 -0.6723630224863056 -0.5322629307267247 -0.5581062161838647 -0.6583968034238775 -0.505006040259074 -0.4970751144160029 -0.683545041602595 -0.5344927564792851 0.4970751144160029 0.683545041602595 0.5344927564792851 0.5581062161838647 0.6583968034238775 0.505006040259074 0.5144163086132454 0.6723630224863056 0.5322629307267247 -0.5583798869887992 -0.6602297154995238 -0.5023033192980051 -0.5452373970371485 -0.6801451362856548 -0.4900191572368603 0.5452373970371485 0.6801451362856548 0.4900191572368603 0.5583798869887992 0.6602297154995238 0.5023033192980051 -0.1318903393557705 -0.6453922059420187 -0.7523787868447079 -0.1321750213771143 -0.6339255398774245 -0.7620158617870596 -0.1366232935947715 -0.6391496733784974 -0.7568498996944356 0.1366232935947715 0.6391496733784974 0.7568498996944356 0.1321750213771143 0.6339255398774245 0.7620158617870596 0.1318903393557705 0.6453922059420187 0.7523787868447079 -0.1289732790216521 -0.6380369665418767 -0.7591276062852959 -0.1269071717687836 -0.6253899701404045 -0.7699233435878096 0.1269071717687836 0.6253899701404045 0.7699233435878096 0.1289732790216521 0.6380369665418767 0.7591276062852959 -0.1241010714283334 -0.6078068716321187 -0.7843275660507647 -0.1257095939325673 -0.6065122404802681 -0.7850732450803013 -0.1260674500275698 -0.6258988106438125 -0.7696477615625263 0.1260674500275698 0.6258988106438125 0.7696477615625263 0.1241010714283334 0.6078068716321187 0.7843275660507647 0.1257095939325673 0.6065122404802681 0.7850732450803013 -0.1211769958232875 -0.5894025390301889 -0.7986994319942953 0.1211769958232875 0.5894025390301889 0.7986994319942953 -0.5535679708898417 -0.5108673680079583 -0.6577058870874768 -0.6327553060025942 -0.489798292648837 -0.5997652501136153 -0.630695063396688 -0.4909614247884672 -0.6009830416714983 0.630695063396688 0.4909614247884672 0.6009830416714983 0.6327553060025942 0.489798292648837 0.5997652501136153 0.5535679708898417 0.5108673680079583 0.6577058870874768 -0.5040208671260086 -0.4901460352175064 -0.7111398102076026 -0.5497067787296889 -0.5096714306261669 -0.6618591165966555 0.5497067787296889 0.5096714306261669 0.6618591165966555 0.5040208671260086 0.4901460352175064 0.7111398102076026 -0.4985571397014289 -0.4916144428633812 -0.7139720008661804 -0.4609719154458496 -0.4145896076660237 -0.7846147783374444 0.4609719154458496 0.4145896076660237 0.7846147783374444 0.4985571397014289 0.4916144428633812 0.7139720008661804 -0.4568505475577015 -0.2004861491589987 -0.8666561493416083 -0.4573491576022501 -0.4236797699590816 -0.7818741590357953 0.4573491576022501 0.4236797699590816 0.7818741590357953 0.4568505475577015 0.2004861491589987 0.8666561493416083 -0.4286900949630499 -0.03074629865061099 -0.9029282737847225 -0.4541268962482883 -0.1783764702348078 -0.8728978158813705 0.4541268962482883 0.1783764702348078 0.8728978158813705 0.4286900949630499 0.03074629865061099 0.9029282737847225 -0.3523735052985816 -0.7618774628075067 -0.5434847232715808 -0.3063976859348787 -0.7821413631807209 -0.5425636792631395 0.3063976859348787 0.7821413631807209 0.5425636792631395 0.3523735052985816 0.7618774628075067 0.5434847232715808 -0.5413340802838006 -0.6829922424325828 -0.4903865927002937 0.5413340802838006 0.6829922424325828 0.4903865927002937 -0.4272481797681519 -0.03139308917336886 -0.9035892135461523 0.4272481797681519 0.03139308917336886 0.9035892135461523</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID605\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID608\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID608\">-2.610060487118674 7.619753708788435 -1.948631865258435 10.75586386611057 -2.935981608932602 10.85663512075862 -2.719262994468259 7.596384747860257 -3.090772258404805 10.83022540427713 -3.69679133168683 7.740997122795123 9.993834386692768 6.697166556715506 7.305900416866997 4.355477009968277 10.55396224199972 6.155992813056084 6.961259725370663 4.748945569060884 6.317450494552758 3.785131728647392 6.032602059962001 4.221058734951406 5.632646490923408 3.387754924869541 5.304258404919437 3.853486727345086 4.50713919916442 2.672402010274958 4.602543987106065 3.620146029906336 4.151239165752258 3.608874678226097 3.476915045794671 2.013146968314747 3.829487363207134 3.243997859007959 3.007344018484941 2.420750867493745 3.012389283490861 1.704548783954941 2.640320935711225 2.025948153228608 -2.788788460198426 7.572962376067476 -3.767581555079931 7.71218000849874 -2.958384683729662 6.646322239064626 -1.949330144772716 5.368941012682137 -2.284182369127702 4.351127936247142 -1.787116026856405 5.322273542286981 -2.178006254645743 4.308764307005029 -2.240688841859411 3.817870637244726 -2.004373405150739 4.27027736655339 -3.424324889167503 3.37281876876143 -4.309776294106773 3.981152767028634 -4.406878702077174 3.508993181485741 -3.353896149640327 3.834780310909004 -4.123486029284101 5.012918456920043 -4.33348685434635 3.981344992154811 -4.15522701980411 5.000954905113102 -2.945912001956207 6.015132060051506 -3.932224531327764 6.125626458280218 -3.168915308745923 4.890452789232343 -2.880014071898048 6.056684529967771 -3.722631041023821 6.8333627787756 -3.865167419372976 6.173403206929011 -2.803637068433257 6.688943611917154 -3.589002991997068 7.76577639285253 -3.786233442174673 6.814013616893653 2.352155135876836 7.732019785561647 4.750224669518837 10.16676035099951 4.58673566867724 10.24664292795459 1.077703269353097 7.292616194349058 1.771051416478688 8.010154330456691 1.615439914209591 8.079710179245698 0.8917779093368455 7.409005396259467 0.7506151581350007 7.485622764389828 0.3595836739408692 6.872236538923343 0.6025386688846102 6.509881421450357 1.164565261957301 6.91447012137925 1.05683395826347 7.015137815428471 3.803209898733897 5.402796817356368 4.253535901802713 5.428742796817378 4.209437347221686 5.555948874626798 -3.4228971200836 5.548400610587399 -3.398703655180526 5.048706996552484 -3.281343791480293 5.483076573831793 -1.700902869676162 5.834124829345437 -1.934455908459623 5.38406533167012 -1.772317777748014 5.337234730377968 -1.563862617851588 5.377877017135567 -2.113718735031875 4.408380312461595 -1.940368773200062 4.369112149830636 -2.342549230029242 4.289545610607819 -2.558103344791782 3.853272065013154 -2.396266153697702 3.797994575249178 -3.477653760136398 3.336397819512019 -3.390320269200981 3.795864862738408 -4.371090681150245 3.937463004736838 -3.384938017023071 3.81842371163158 -3.176364284525369 4.883517101095137 -4.162826579523441 4.993184227830971 -2.821558507236654 6.680662886123442 -3.804473587643869 6.804173406389755 -2.952987580260624 6.033504265500596 1.47307452581419 7.94934296837219 3.496248995700073 10.57238716409893 1.315460912566759 8.016050776524924 0.538204523295595 7.363180085962341 1.02837778858371 8.169264935007575 0.3940072705090324 7.436216706816778 -0.2216517634023708 6.902275859416785 0.1235323511647279 7.532459053158027 -0.3470360049582089 6.989381151517559 0.6495041291754328 6.506652750037433 1.107371202240202 7.009909940338497 0.5338562939897318 6.602089407485308 3.762660802913122 5.413427654679166 4.167566621199896 5.568730472320866 3.74214220390277 5.54151624829845</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 2 4 6 5 7 5 3 4 5 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 16 14 15 13 17 15 16 14 17 15 18 16 16 14 18 16 19 17 19 17 18 16 20 18 19 17 20 18 21 19 19 17 21 19 22 20 22 20 21 19 23 21 24 21 25 19 26 20 26 20 25 19 27 17 25 19 28 18 27 17 28 18 29 16 27 17 27 17 29 16 30 14 29 16 31 15 30 14 31 15 32 13 30 14 30 14 32 13 33 12 32 13 34 11 33 12 33 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 0 22 6 23 40 24 41 24 7 23 5 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 43 30 46 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 59 37 62 38 63 39 62 38 59 37 64 40 65 40 60 37 66 38 67 39 66 38 60 37 62 41 68 42 63 43 67 43 69 42 66 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 70 51 77 52 78 52 75 51 79 50 76 53 80 54 81 55 82 55 83 54 79 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 92 62 44 63 93 64 94 64 45 63 95 62 92 65 42 66 44 67 45 67 47 66 95 65 42 68 48 69 43 70 46 70 51 69 47 68 48 71 96 72 49 73 50 73 97 72 51 71 52 74 58 75 53 76 56 76 61 75 57 74 58 77 64 78 59 79 60 79 65 78 61 77 40 80 68 81 62 82 66 82 69 81 41 80 70 83 72 84 77 85 78 85 73 84 75 83 76 86 77 87 80 88 83 88 78 87 79 86 81 89 80 90 85 91 86 91 83 90 82 89 84 92 85 93 89 94 90 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID604\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID605\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID609\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID612\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID610\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID611\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID610\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID614\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID614\">-0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5473779309113525 1.195018672079414</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID611\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID615\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID615\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID613\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID616\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"120\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID616\">10.18738032658465 19.04794340165245 8.105455617364823 13.15527448152571 10.94755861822705 18.80162710738278 7.358775169589009 13.30684774139464 7.455165168721541 11.50684232576267 7.021610669109959 10.23735513419643 6.660275453839438 11.62052286139061 6.973438948161821 9.252082277676829 6.226729965305786 10.35104512144388 6.34719681383455 8.494179944032666 6.106319436014469 9.138399969870267 19.2668110713613 14.01201653592069 13.76983724756887 9.60023445609569 19.80366406321081 13.52217335660197 13.3515820564935 10.10985633078179 11.95582315006028 8.547050531634294 11.56802765527242 9.104569669858437 10.56113355821253 7.823090735984151 10.17331027926723 8.380616962922931 9.136256855185536 7.350812800878698 8.999992836063413 8.033974680727708 8.283114275883213 7.327495655441081 7.849390818560094 8.493335205535086 7.512957717242513 6.567116406747775 5.827651849983826 4.90867469051484 5.672811493639108 7.679445612741619 5.133601729440363 4.148245525455751 4.203545845101182 5.898375335431982 4.414968261826749 4.748609150477415 3.505102824050252 5.140468275978011 1.752551412025126 2.570234137989006 2.101772922550591 2.949187667715991 2.207484130913374 2.374304575238707 2.566800864720181 2.074122762727876 2.836405746819554 3.839722806370809 2.913825924991913 2.45433734525742 3.173598406917275 4.247089972016333 3.330137726919719 5.810261430695305 3.48671947408091 4.626041138838414 3.756478858621256 3.283558203373887 3.924695409280047 4.246667602767543 4.141557137941606 3.66374782772054 4.499996418031707 4.016987340363854 4.568128427592768 3.675406400439349 5.086655139633613 4.190308481461465 5.280566779106266 3.911545367992075 5.784013827636212 4.552284834929218 5.977911575030141 4.273525265817147 6.675791028246748 5.054928165390897 6.884918623784433 4.800117228047845 9.633405535680648 7.006008267960344 9.901832031605407 6.761086678300985 3.053159718007235 4.569199984935134 3.113364982652893 5.175522560721941 3.51080533455498 5.118677567098216 3.679387584794505 6.65342387069732 3.72758258436077 5.753421162881336 4.052727808682412 6.577637240762856 5.093690163292324 9.523971700826227 5.473779309113525 9.400813553691391</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 5 5 6 6 7 7 8 8 9 9 6 6 9 9 8 8 10 10 11 11 12 12 13 13 12 12 11 11 14 14 12 12 14 14 15 15 15 15 14 14 16 16 15 15 16 16 17 17 17 17 16 16 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 7 7 23 23 7 7 24 24 24 24 7 7 9 9 9 9 7 7 6 6 24 24 9 9 25 25 24 24 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID612\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID613\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 33 33 34 34 35 35 34 34 36 36 35 35 37 37 38 38 36 36 36 36 38 38 35 35 35 35 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 47 47 46 46 48 48 47 47 47 47 48 48 49 49 48 48 50 50 49 49 51 51 49 49 50 50 52 52 53 53 36 36 37 37 36 36 53 53 38 38 37 37 54 54 37 37 55 55 54 54 54 54 55 55 56 56 56 56 55 55 57 57 55 55 58 58 57 57 59 59 57 57 58 58</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID612\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID613\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID617\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID620\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID618\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID619\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID618\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID622\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID622\">-0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID619\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID623\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID623\">-0.1088387569614722 0.01315362923910896 0.9939723874539582 -0.1152536654891546 0.0291861515433436 0.9929072268592888 -0.1164175568789908 0.02947304770899976 0.9927629585702068 0.1164175568789908 -0.02947304770899976 -0.9927629585702068 0.1152536654891546 -0.0291861515433436 -0.9929072268592888 0.1088387569614722 -0.01315362923910896 -0.9939723874539582 -0.1108275343076859 0.0157188274115992 0.9937153395737044 0.1108275343076859 -0.0157188274115992 -0.9937153395737044 -0.1169992818606147 0.001779387199382528 0.9931304052466096 0.1169992818606147 -0.001779387199382528 -0.9931304052466096 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211613462438688 0.005798762209368286 0.9926158887168858 0.1211613462438688 -0.005798762209368286 -0.9926158887168858 -0.1289723073749611 -0.05683794718569368 0.990017975437868 -0.1321721693293524 -0.05182041772276032 0.9898712855527286 -0.1269009350449967 -0.04024779597736024 0.9910985155894797 0.1269009350449967 0.04024779597736024 -0.9910985155894797 0.1321721693293524 0.05182041772276032 -0.9898712855527286 0.1289723073749611 0.05683794718569368 -0.990017975437868 -0.1318875386354734 -0.06677197077271543 0.9890132360447983 -0.1366133769342704 -0.05910629755485246 0.9888595607223364 0.1366133769342704 0.05910629755485246 -0.9888595607223364 0.1318875386354734 0.06677197077271543 -0.9890132360447983 -0.558028898390844 -0.2252503846026686 0.7986651443484001 -0.5451251899441658 -0.2516490044651679 0.7996945078215975 -0.5582945311177081 -0.2283387439749839 0.7976018019814056 0.5582945311177081 0.2283387439749839 -0.7976018019814056 0.5451251899441658 0.2516490044651679 -0.7996945078215975 0.558028898390844 0.2252503846026686 -0.7986651443484001 -0.5144576180718076 -0.2200898906441139 0.8287905641621072 -0.4971178181320478 -0.2277136551304314 0.8372695898948984 0.4971178181320478 0.2277136551304314 -0.8372695898948984 0.5144576180718076 0.2200898906441139 -0.8287905641621072 -0.3523674383661242 -0.2850989537794993 0.8913785811500805 -0.306373651989246 -0.301890195052002 0.9027721171470885 0.306373651989246 0.301890195052002 -0.9027721171470885 0.3523674383661242 0.2850989537794993 -0.8913785811500805 -0.4569170898122744 0.3580322882283826 0.8142724689091671 -0.4287165572106656 0.5157236689642438 0.7417757146493089 -0.4541867966104732 0.3794965782313983 0.8060376547627145 0.4541867966104732 -0.3794965782313983 -0.8060376547627145 0.4287165572106656 -0.5157236689642438 -0.7417757146493089 0.4569170898122744 -0.3580322882283826 -0.8142724689091671 -0.4610519398068395 0.1374069943415377 0.8766700785964896 -0.4574434326879626 0.128523092512843 0.8799018812240311 0.4574434326879626 -0.128523092512843 -0.8799018812240311 0.4610519398068395 -0.1374069943415377 -0.8766700785964896 -0.4985584274964397 0.03343317632154487 0.8662111273201989 -0.5040157149677988 0.03292087746401979 0.8630668426561742 0.5040157149677988 -0.03292087746401979 -0.8630668426561742 0.4985584274964397 -0.03343317632154487 -0.8662111273201989 -0.5535759670464742 -0.01565705409007048 0.8326514909407067 -0.5497125255609511 -0.01221039753376431 0.8352646559225813 0.5497125255609511 0.01221039753376431 -0.8352646559225813 0.5535759670464742 0.01565705409007048 -0.8326514909407067 -0.6307597955618702 -0.0336555489308815 0.7752479502255447 -0.6328213274262273 -0.03345237151289191 0.7735748873862641 0.6328213274262273 0.03345237151289191 -0.7735748873862641 0.6307597955618702 0.0336555489308815 -0.7752479502255447 -0.1240902978453498 -0.0175498111580307 0.9921157201198707 -0.1257023489127471 -0.01606129966648226 0.9919379789739081 0.1257023489127471 0.01606129966648226 -0.9919379789739081 0.1240902978453498 0.0175498111580307 -0.9921157201198707 -0.1260595472930294 -0.0408216577978071 0.9911824165061218 0.1260595472930294 0.0408216577978071 -0.9911824165061218 -0.5412148349373932 -0.2537132226334566 0.8016957671739552 0.5412148349373932 0.2537132226334566 -0.8016957671739552 -0.4272661229037248 0.5156003108204946 0.7426977714391153 0.4272661229037248 -0.5156003108204946 -0.7426977714391153</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID621\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID624\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID624\">9.891501356083198 -1.398559899101458 14.0190207913705 -1.378322775502937 13.80728166277617 -0.6130167098138849 9.892292853868527 -1.396358040448894 10.16976395576887 -2.147763991652776 14.01980057287232 -1.374692521388983 9.112972347923334 -3.318913266075672 7.922917617543023 -3.31064759363729 9.13990034236501 -4.10109427719969 9.185461095484014 -0.09440081931622046 13.12035929778858 -0.7049523672064595 13.15740834483686 -0.007683132925823285 9.208683394319904 -0.571882978597314 8.06307501585481 -0.5861914753075564 7.959654123141069 -0.1028398972043406 7.199978199095067 -0.6346024122160491 7.108731272710429 -0.10688175677692 6.460281336741163 -0.7780344309739375 5.66281971002354 -0.06367290266154251 6.090137041837841 -0.981480541855419 5.554770877852206 -0.8406449125250893 4.335914825773608 -0.02054527340170165 4.269814814293227 -0.5681835556315917 3.728999951832195 0.007992341182690677 3.675384037947553 -0.4246823111445474 8.240503349031185 -2.792558387712522 8.312030923974277 -3.573561015301703 9.534613588802479 -3.503157893577027 2.866400881466295 -4.09043929177291 2.592754049921546 -4.844748037579367 3.858647062123191 -5.16058960318777 1.764387869163704 -4.104380020650059 1.377297237169688 -4.827743230540988 1.934313392358909 -5.019461920039144 1.877196734483731 -4.342754535484429 1.33150791732068 -4.108270374199182 1.773090404879941 -4.458637017925284 1.855718646494166 -4.509721762035793 2.948315257028529 -5.11514745525924 3.033601055682589 -4.996987230377251 0.3417500518942679 -5.735767157626841 0.643265683683088 -6.176002351858831 0.7230910765086479 -6.063201128471859 8.098827313590068 0.4251827631843959 7.860758236876446 0.1233516168670555 8.221633022424319 0.3354410191769293 8.692700701586954 -1.456731561340594 8.020550205059355 -1.738846683847045 8.777424033680292 -1.570199514101096 7.775142777459928 -3.195329571672053 8.646044617348052 -3.233748210890571 8.631777309452774 -3.099303113019177 9.330348977001862 -3.552345717479117 8.185074552308338 -3.578387594753834 9.311692834307262 -3.69237575750201 8.92396389964752 -3.788083846687805 12.79728635458154 -4.147255281525537 12.83018579927031 -3.998070213710835 7.317289624280975 -2.980140061228889 7.346533038834244 -3.763528691237196 8.196485417401426 -3.731313273001689 5.336390733417921 -5.449619584766261 4.251179605034944 -4.373769397749731 3.951018182975293 -5.121079041999575 5.636561508752498 -4.702312727263123 7.093366192879808 -3.295908493898871 7.918442027052564 -4.084159963801527 7.9264042430006 -3.301158048278965 2.698973295573131 -4.160805864112061 3.648222878151388 -5.254826617090851 3.990976447294812 -4.518942246687931 1.264659737377111 -4.215067749817517 1.327014570610913 -5.138559858782626 1.781220271575089 -4.440238296359105 2.190316269496892 -4.331888373982719 2.092057563700482 -4.450888635141769 3.314877001865865 -4.899940379907601 1.141746521037105 -4.178758122598253 1.05871830345268 -4.301210512261891 1.572352064691836 -4.537480266369492 3.097661168592327 -4.985281801077196 3.013530619634568 -5.103953439875546 3.563681401541414 -5.3253843708294 7.851589781199859 0.1624999726829313 7.987420609990448 0.09004473225368445 8.21113041698956 0.3759870027255349 8.015398979144715 -1.752248997002818 8.090091306673514 -1.870291468803673 8.772747345371998 -1.584925376850224 7.744361237538513 -3.295161361764044 7.786369406217942 -3.422538761892946 8.614935622004783 -3.33792690271419 8.114139814095902 -3.742617406280015 8.111754056698198 -3.877517115416049 9.238931812302894 -3.867268169121407 8.806680473794703 -4.11759385727599 8.773640424439241 -4.255971035984555 12.67194791268335 -4.5269585570712</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 0 6 8 7 6 8 7 8 9 7 5 6 10 9 11 10 12 11 11 10 10 9 13 12 13 12 10 9 14 13 14 13 10 9 15 14 14 13 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 20 19 19 18 21 20 21 20 19 18 22 21 21 20 22 21 23 22 23 22 22 21 24 23 23 22 24 23 25 24 26 24 27 23 28 22 27 23 29 21 28 22 28 22 29 21 30 20 29 21 31 18 30 20 30 20 31 18 32 19 32 19 31 18 33 17 31 18 34 16 33 17 33 17 34 16 35 15 34 16 36 14 35 15 35 15 36 14 37 13 36 14 38 9 37 13 37 13 38 9 39 12 39 12 38 9 40 10 41 11 40 10 38 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 54 37 60 38 61 39 62 39 63 38 59 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 68 47 75 48 76 48 73 47 77 46 74 49 78 50 79 51 80 51 81 50 77 49 82 52 79 53 83 54 84 54 80 53 85 52 82 55 86 56 87 57 88 57 89 56 85 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 94 62 46 63 94 62 91 61 90 64 93 64 92 61 95 62 47 63 95 62 92 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 54 74 56 75 60 76 63 76 57 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 61 80 60 81 64 82 67 82 63 81 62 80 69 83 98 84 70 85 71 85 99 84 72 83 68 86 70 87 75 88 76 88 71 87 73 86 74 89 75 90 78 91 81 91 76 90 77 89 79 92 78 93 83 94 84 94 81 93 80 92 82 95 83 96 86 97 89 97 84 96 85 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID620\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID621\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID625\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID630\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID628\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID629\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID628\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID632\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID632\">-0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID629\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID633\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID633\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID631\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"30\" source=\"#ID634\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"60\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID634\">3.295252840429122 -1.288182790405501 3.553954881384697 -0.9130679473510686 3.861528503676829 -1.431814179263339 3.653175485382575 -0.4978760590883997 4.220446497283755 -0.6391021215311316 5.122854141660617 -1.809345535610677 5.526358198109146 -0.9067158682851475 5.700755221866416 -1.981511659262586 5.845294038790562 -2.297413730313628 6.124135088072079 -1.029998510971301 6.237853014667429 -2.141924398637036 6.348994523888187 -2.758800446062714 6.627065876926979 -2.5283351085099 7.000331008498487 -3.170403709446711 7.278421134616336 -2.939943688429858 7.915026008602089 -3.68870217088264 8.159474776988487 -3.454130399997072 11.21097795849668 -5.348585849823603 11.42530494601942 -5.07263695607616 6.348834577254241 -1.615424885060101 6.474741113180418 -0.8385239100247427 6.679996197963138 -1.144255152347283 7.225110846459248 -0.6922914059295819 7.281870875630058 -1.006895651470734 8.059207761561993 -0.6539708482222155 8.115944512114693 -0.9685740599925033 9.186441801135759 -0.6488213400628682 9.21274739048158 -0.9514208473190707 13.06654213649594 -1.122084458825146 13.09524992904242 -0.79949167490136</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 13 14 15 14 13 16 16 13 17 16 17 18 18 17 19 18 19 20 20 19 12 20 12 21 21 12 11 21 11 22 21 22 23 23 22 24 24 22 25 24 25 26 26 25 27 26 27 28 26 28 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID630\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">30 0 31 1 32 2 31 1 33 3 32 2 33 3 34 4 32 2 32 2 34 4 35 5 34 4 36 6 35 5 35 5 36 6 37 7 37 7 36 6 38 8 36 6 39 9 38 8 39 9 40 10 38 8 38 8 40 10 41 11 40 10 42 12 41 11 41 11 42 12 43 13 42 12 44 14 43 13 43 13 44 14 45 15 44 14 46 16 45 15 45 15 46 16 47 17 48 18 47 17 46 16 40 10 39 9 49 19 39 9 50 20 49 19 49 19 50 20 51 21 50 20 52 22 51 21 51 21 52 22 53 23 52 22 54 24 53 23 53 23 54 24 55 25 54 24 56 26 55 25 55 25 56 26 57 27 57 27 56 26 58 28 59 29 58 28 56 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID630\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID631\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID635\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID638\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID636\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID637\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID636\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID640\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID640\">-0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID637\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID641\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID641\">-0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID639\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID642\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"116\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID642\">-5.942143510265987 -3.537919751528921 -3.014275322117851 -6.330159141483323 -2.722917134621747 -5.429709253919597 -4.532998647519656 -5.776067396796974 -3.761988289242532 -8.403663709214172 -5.054129935863941 -5.15141281351586 -5.946686595406146 -5.057682875228573 -6.957166350571083 -4.013129460871145 -6.563991993162109 -5.617669476879784 -9.272628914606271 -5.165311420703098 -7.710539025580329 -12.82943654886498 -8.196902947598092 -11.50317111573932 -9.781350822898569 -10.19751021323684 -11.70834131037578 -6.394627456981616 -11.82235097061978 -9.37266146756806 -13.07634609667806 -7.142739684942715 -13.57695803480326 -9.381946502322247 -15.03078282578663 -8.21146679775252 -16.05001083580809 -10.25921156711687 -21.52269079340287 -11.99864627882594 -20.67270284231222 -12.96009691898834 -4.569559219049879 -10.58978432392038 -5.12072743462904 -6.367588736361021 -5.093403218011745 -11.83399197753575 -5.841838948681586 -13.61146945795768 -6.191243496727681 -6.283137334198752 -8.616810169633229 -19.58292117139953 -8.078369726216202 -14.94382291552136 -10.02986884390828 -19.21441079518665 -5.014934421954141 -9.607205397593324 -4.039184863108101 -7.471911457760681 -4.308405084816615 -9.791460585699765 -3.855269512790164 -6.414718274432491 -3.478583175285542 -2.006564730435573 -3.281995996581054 -2.808834738439892 -3.095621748363841 -3.141568667099376 -2.920919474340793 -6.805734728978842 -2.56036371731452 -3.18379436818051 -2.546701609005873 -5.916995988767874 -2.284779609524939 -5.294892161960191 -2.266499323759828 -2.888033698398487 -1.880994144621266 -4.201831854607086 -10.33635142115611 -6.480048459494169 -10.76134539670144 -5.999323139412972 -8.025005417904044 -5.129605783558433 -7.515391412893316 -4.10573339887626 -6.788479017401629 -4.690973251161124 -6.53817304833903 -3.571369842471357 -5.911175485309891 -4.68633073378403 -5.854170655187891 -3.197313728490808 -4.890675411449284 -5.098755106618421 -4.636314457303135 -2.582655710351549 -4.098451473799046 -5.751585557869662 -2.973343297703073 -2.528841437614287 -2.971071755132994 -1.768959875764461 -2.52706496793197 -2.57570640675793 -1.507137661058926 -3.165079570741662 -1.361458567310874 -2.714854626959799</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 3 3 0 0 5 5 5 5 0 0 6 6 6 6 0 0 7 7 6 6 7 7 8 8 9 9 10 10 7 7 10 10 9 9 11 11 11 11 9 9 12 12 12 12 9 9 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 16 16 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 3 3 21 21 4 4 21 21 3 3 22 22 21 21 22 22 23 23 23 23 22 22 24 24 24 24 22 22 25 25 24 24 25 25 26 26 26 26 25 25 8 8 26 26 8 8 10 10 10 10 8 8 7 7 26 26 10 10 27 27 26 26 27 27 28 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID638\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID639\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">29 29 30 30 31 31 30 30 32 32 31 31 33 33 34 34 32 32 32 32 34 34 31 31 34 34 35 35 31 31 31 31 35 35 36 36 35 35 37 37 36 36 36 36 37 37 38 38 38 38 37 37 39 39 37 37 40 40 39 39 41 41 39 39 40 40 42 42 43 43 44 44 43 43 45 45 44 44 44 44 45 45 46 46 45 45 47 47 46 46 46 46 47 47 48 48 47 47 49 49 48 48 48 48 49 49 50 50 49 49 51 51 50 50 50 50 51 51 52 52 52 52 51 51 32 32 33 33 32 32 51 51 34 34 33 33 53 53 33 33 54 54 53 53 53 53 54 54 55 55 55 55 54 54 40 40 41 41 40 40 56 56 40 40 54 54 56 56 57 57 56 56 54 54</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID638\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID639\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID643\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID646\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID644\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID645\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID644\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID648\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID648\">-0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID645\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID649\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID649\">-0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID647\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID650\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"116\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID650\">14.82902591557052 -8.384892502619829 20.41029086447709 -13.17764101175096 21.27248131697755 -12.2229423723072 15.79670305040769 -10.44749344574282 13.33494263193682 -9.550817708016966 12.88835961543644 -7.300830137085 11.5805232985438 -9.527731536536132 11.52980744991694 -6.541998000371912 9.529151400085357 -10.33648417410537 9.109835905503532 -5.293563109915906 7.928136657948257 -11.62962404360425 6.809176289792611 -4.123239947803949 7.424943045986368 -12.95197178042472 5.800264086731488 -3.640068430440598 6.099572673222684 -5.983272599215604 5.548610961513447 -5.312678419743834 2.557177127561046 -5.506438392768292 4.71279593362039 -5.407517741830074 4.245346264840824 -5.927683489544283 3.55839236819476 -8.488419045241628 2.837121282969626 -6.409136584333087 7.765917730597559 -15.06914637484883 8.270848227836648 -19.70532053592662 9.688516068491094 -19.34793117157087 5.571861419967594 -13.71230731538016 5.676042622384449 -6.509790425305303 4.812696874597001 -6.53714695665132 4.846150501537627 -11.92903008491025 4.338197914026393 -10.68076768650679 1.77919618409738 -4.244209522620814 2.122673132420412 -2.963841744772142 2.169098957013197 -5.340383843253396 2.406348437298501 -3.26857347832566 2.423075250768814 -5.964515042455125 2.785930709983797 -6.856153657690079 2.838021311192224 -3.254895212652651 3.049786336611342 -2.991636299607802 3.404588144896306 -2.061619973901975 3.712471522993184 -6.475985890212362 3.88295886529878 -7.534573187424415 4.135424113918324 -9.85266026796331 4.844258034245547 -9.673965585785433 1.418560641484813 -3.204568292166544 1.278588563780523 -2.753219196384146 2.356397966810195 -2.703758870915037 2.774305480756723 -2.656339209871917 2.900132043365744 -1.820034215220299 3.964068328974129 -5.814812021802124 4.554917952751766 -2.646781554957953 4.764575700042679 -5.168242087052686 5.764903724958471 -3.270999000185956 5.790261649271899 -4.763865768268066 6.444179807718218 -3.6504150685425 6.667471315968408 -4.775408854008483 7.414512957785258 -4.192446251309915 7.898351525203847 -5.223746722871408 10.20514543223855 -6.588820505875478 10.63624065848878 -6.111471186153602</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 11 11 14 14 13 13 15 15 15 15 13 13 16 16 15 15 16 16 17 17 17 17 16 16 18 18 18 18 16 16 19 19 19 19 16 16 20 20 21 21 22 22 23 23 22 22 21 21 24 24 24 24 21 21 12 12 24 24 12 12 11 11 24 24 11 11 14 14 24 24 14 14 25 25 24 24 25 25 26 26 24 24 26 26 27 27 27 27 26 26 28 28 28 28 26 26 18 18 28 28 18 18 19 19</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID646\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID647\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">29 29 30 30 31 31 30 30 32 32 31 31 31 31 32 32 33 33 33 33 32 32 34 34 32 32 35 35 34 34 35 35 36 36 34 34 36 36 37 37 34 34 37 37 38 38 34 34 38 38 39 39 34 34 34 34 39 39 40 40 41 41 40 40 39 39 42 42 43 43 29 29 29 29 43 43 30 30 30 30 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 36 36 37 37 36 36 46 46 38 38 37 37 47 47 37 37 48 48 47 47 47 47 48 48 49 49 48 48 50 50 49 49 49 49 50 50 51 51 50 50 52 52 51 51 51 51 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 55 55 54 54 56 56 57 57 56 56 54 54</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID646\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID647\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID651\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID654\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID652\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID653\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID652\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID656\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID656\">-0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086261 -0.4057228466663786 1.255007445577006</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID653\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID657\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID657\">-0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID655\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID658\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"116\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID658\">6.702103108885646 20.11553924734162 5.794715717549207 13.65502883900708 8.114458168158471 19.74546699100114 5.035936020298975 15.78554439442911 5.041999724845416 11.87869973036162 4.515123873609423 10.63526002083553 3.72203637432034 13.91843838723838 3.499059127413852 8.503668162237371 2.323357503165463 13.08490005884943 2.520531152860973 6.490504505913559 2.068972894939293 5.631935926042748 0.06075091877033985 12.78483712999241 0.8120119978442776 7.222580289126928 0.8227126529265449 6.595773100139321 0.04362987063896788 7.548865554982541 -2.201940144480685 13.08490005885077 -0.6525134482231259 7.207434068793488 -0.6603042760459281 6.628102364821207 -1.949292046070537 5.631935926043967 -2.400906623229417 6.490504505914989 -3.600572082937799 13.91843838724053 -3.379425211242822 8.503668162239411 -4.395536890136512 10.63526002083815 -4.914377863521055 15.78554439443209 -4.922422127911656 11.87869973036458 -6.582432022018011 20.11553924734553 -5.675109960996605 13.65502883901048 -7.994833638526947 19.7454669910059 0.1023145158150442 6.277101703712805 -0.3301521380229641 3.314051182410604 0.05115725790752209 3.138550851856402 -0.9746460230352685 2.815967963021984 0.4113563264632725 3.297886550069661 1.034486447469647 2.815967963021374 -3.997416819263473 9.872733495502947 -3.291216011009006 10.05776962367277 -2.837554980498303 6.82751441950524 -2.461211063955828 5.939349865182291 -2.457188931760527 7.892772197216043 -2.197768445068256 5.317630010419073 -1.8002860414689 6.959219193620267 -1.689712605621411 4.251834081119705 -1.200453311614709 3.245252252957494 -1.100970072240343 6.542450029425386 -0.3262567241115629 3.603717034396744 0.02181493531948394 3.774432777491271 0.03037545938516992 6.392418564996206 0.4060059989221388 3.611290144563464 1.161678751582732 6.542450029424717 1.260265576430486 3.245252252956779 1.749529563706926 4.251834081118686 1.86101818716017 6.959219193619191 2.257561936804712 5.317630010417767 2.517968010149487 7.892772197214557 2.520999862422708 5.939349865180811 2.897357858774603 6.827514419503538 3.351051554442823 10.05776962367081 4.057229084079236 9.872733495500569</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 5 5 6 6 7 7 7 7 6 6 8 8 7 7 8 8 9 9 9 9 8 8 10 10 10 10 8 8 11 11 10 10 11 11 12 12 10 10 12 12 13 13 12 12 11 11 14 14 14 14 11 11 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 18 18 15 15 19 19 19 19 15 15 20 20 19 19 20 20 21 21 21 21 20 20 22 22 22 22 20 20 23 23 22 22 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 26 26 25 25 27 27 10 10 28 28 18 18 28 28 10 10 13 13 18 18 28 28 17 17</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID654\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID655\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">29 29 30 30 31 31 32 32 33 33 30 30 31 31 30 30 33 33 34 34 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 41 41 40 40 42 42 40 40 43 43 42 42 42 42 43 43 31 31 31 31 43 43 29 29 29 29 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 47 47 32 32 47 47 33 33 47 47 46 46 33 33 46 46 48 48 33 33 33 33 48 48 49 49 49 49 48 48 50 50 48 48 51 51 50 50 50 50 51 51 52 52 51 51 53 53 52 52 52 52 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 57 57 55 55 56 56</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID654\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID655\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID659\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID662\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID660\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID661\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID660\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID664\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID664\">-0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID661\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID665\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID665\">-0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID663\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID666\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"116\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID666\">-6.984665430113307 3.983443023641084 -7.40422572564607 0.3789239175328026 -6.09915843792158 3.36857647914322 -7.410646117683638 2.119594723555238 -7.616745992036167 2.801032421564928 -9.087203731092407 5.365323263029861 -8.3423442719905 2.953155647545233 -9.093473939508872 2.602729468533396 -11.31992357356801 6.813667586479245 -14.53491699533404 8.746494248780024 -15.52040002022607 7.299823452712065 -14.97250845787214 5.988482126861165 -21.10379608906077 12.45059281253822 -17.33840302157449 8.883806786916869 -22.00748405742919 11.51994145614131 -8.583146557493567 0.3217766936036152 -8.054646834917762 1.646710999030179 -8.931546370346142 1.906224412462378 -11.32126622418493 0.2476387067093099 -12.6437260187638 7.60952939642481 -14.21409408474354 0.1839639580231964 -15.88012976177167 0.1958135568310805 -15.34672951463004 4.207573708536487 -16.44238348055336 2.621577179361666 -18.26023629726925 0.2127637073613848 -17.89873287521094 1.85170038214918 -20.57025466836452 1.480585937066035 -26.33609653088566 0.4649613457242628 -26.32221346343603 1.636013390160535 -13.16110673171801 0.8180066950802676 -10.28512733418226 0.7402929685330173 -13.16804826544283 0.2324806728621314 -9.130118148634626 0.1063818536806924 -8.949366437605471 0.9258501910745902 -8.22119174027668 1.310788589680833 -7.940064880885833 0.09790677841554024 -7.673364757315019 2.103786854268244 -7.486254228936068 2.994241063430582 -7.267458497667017 4.373247124390012 -7.107047042371768 0.09198197901159821 -6.321863009381899 3.804764698212405 -5.660633112092466 0.123819353354655 -5.659961786784004 3.406833793239623 -4.546736969754436 1.301364734266698 -4.465773185173071 0.953112206231189 -4.291573278746784 0.1608883468018076 -4.027323417458881 0.8233554995150897 -3.705323058841819 1.059797361777619 -3.702112862823035 0.1894619587664013 -11.00374202871459 5.759970728070657 -10.55189804453039 6.225296406269112 -8.669201510787243 4.441903393458435 -7.760200010113037 3.649911726356033 -4.543601865546203 2.682661631514931 -4.17117213599525 1.476577823772616 -3.808372996018083 1.400516210782464 -3.492332715056654 1.991721511820542 -3.04957921896079 1.68428823957161</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 7 7 5 5 8 8 9 9 10 10 11 11 10 10 9 9 12 12 10 10 12 12 13 13 13 13 12 12 14 14 3 3 15 15 1 1 15 15 3 3 16 16 15 15 16 16 17 17 15 15 17 17 18 18 18 18 17 17 7 7 18 18 7 7 8 8 18 18 8 8 19 19 18 18 19 19 20 20 20 20 19 19 9 9 20 20 9 9 21 21 21 21 9 9 11 11 21 21 11 11 22 22 21 21 22 22 23 23 21 21 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 24 24 26 26 27 27 27 27 26 26 28 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID662\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID663\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">29 29 30 30 31 31 31 31 30 30 32 32 30 30 33 33 32 32 33 33 34 34 32 32 32 32 34 34 35 35 34 34 36 36 35 35 36 36 37 37 35 35 37 37 38 38 35 35 35 35 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 41 41 41 41 44 44 45 45 44 44 46 46 45 45 46 46 47 47 45 45 48 48 45 45 47 47 49 49 50 50 51 51 51 51 50 50 52 52 50 50 38 38 52 52 37 37 52 52 38 38 42 42 53 53 43 43 43 43 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 55 55 56 56 47 47 47 47 56 56 48 48 57 57 48 48 56 56</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID662\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID663\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID667\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID670\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID668\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID669\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID668\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID672\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID672\">-0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID669\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID673\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID673\">-0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID671\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID674\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"116\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID674\">20.61719888652537 1.218148136177216 26.37837451250605 0.1684497917821321 26.37941679385733 1.339544146984344 18.29973586318679 -0.02022262547900209 17.95056710501454 1.610244438259214 15.91953471137129 -0.01844121671260754 16.50403527979898 2.391555627588657 15.42855411374404 3.986084458633338 14.25340591987107 -0.01718592348860902 15.07707401407439 5.769850515057511 14.68308415411048 8.542387413325084 12.77760761527535 7.420370888018093 11.36156327050402 0.06924101484297966 11.44368572952684 6.634956071308992 9.192662885861024 5.204233701788687 9.425026296851021 2.312795134179659 8.738063013666524 2.754604887566969 7.072628075169551 3.838965865215587 7.924071315350075 2.605400439849607 7.606327939590292 1.892705793038809 7.446428614955478 0.2313362901843486 6.179339266233333 3.231097654269962 9.207521402500165 1.59536744141203 8.624532442400788 0.1649128185498039 8.27845148027766 1.398775674567985 21.29872623692821 12.19463380149279 17.47963465401062 8.646417845385683 22.19043848268239 11.25691735948019 15.64156248019065 7.076826964854104 7.538537007037196 2.884925257528756 7.34154207705524 4.271193706662542 7.820781240095327 3.538413482427052 8.739817327005309 4.323208922692841 10.64936311846411 6.097316900746395 11.09521924134119 5.628458679740094 3.803163969795146 0.9463528965194042 4.13922574013883 0.6993878372839926 3.723214307477739 0.1156681450921743 4.312266221200394 0.08245640927490194 4.603760701250082 0.797683720706015 4.712513148425511 1.156397567089829 5.680781635252012 0.03462050742148983 3.089669633116666 1.615548827134981 3.536314037584776 1.919482932607794 3.962035657675037 1.302700219924803 4.369031506833262 1.377302443783485 4.596331442930512 2.602116850894344 5.721842864763418 3.317478035654496 6.388803807637676 3.710185444009047 7.126702959935534 -0.00859296174430451 7.714277056872022 1.993042229316669 7.959767355685644 -0.009220608356303768 8.252017639899492 1.195777813794329 8.975283552507268 0.8051222191296068 9.149867931593397 -0.01011131273950105 10.30859944326268 0.609074068088608 13.18918725625302 0.08422489589106605 13.18970839692866 0.6697720734921721</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 5 5 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 8 8 10 10 11 11 8 8 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 12 12 14 14 15 15 15 15 14 14 16 16 16 16 14 14 17 17 16 16 17 17 18 18 18 18 17 17 19 19 19 19 17 17 20 20 20 20 17 17 21 21 12 12 22 22 23 23 22 22 12 12 15 15 23 23 22 22 24 24 23 23 24 24 20 20 20 20 24 24 19 19 25 25 26 26 27 27 26 26 25 25 10 10 26 26 10 10 28 28 28 28 10 10 9 9</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID670\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID671\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">29 29 30 30 31 31 31 31 30 30 32 32 30 30 33 33 32 32 34 34 32 32 33 33 35 35 36 36 37 37 37 37 36 36 38 38 36 36 39 39 38 38 40 40 41 41 39 39 38 38 39 39 41 41 42 42 43 43 37 37 37 37 43 43 35 35 35 35 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 40 40 40 40 46 46 41 41 46 46 47 47 41 41 47 47 48 48 41 41 41 41 48 48 49 49 48 48 30 30 49 49 30 30 29 29 49 49 29 29 50 50 49 49 49 49 50 50 51 51 50 50 52 52 51 51 52 52 53 53 51 51 51 51 53 53 54 54 53 53 55 55 54 54 54 54 55 55 56 56 57 57 56 56 55 55</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID670\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID671\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID675\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID678\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID676\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID677\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID676\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID680\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID680\">-0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803394 0.6383334991085194 -0.1943718802796175</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID677\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID681\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID681\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID679\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID682\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"120\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID682\">-12.93127233964243 -1.486071496671276 -12.62543034616549 -4.129144983791254 -12.23498784722559 -1.874505443854724 -12.76666998217039 -3.058117583065982 -13.34961163411208 -2.09427775069872 -14.42832176977398 -1.181805033857142 -14.54974604533614 -1.810114365788693 -16.09538020415581 -1.092060798588364 -16.21682400372031 -1.72034805212735 -18.34966205435873 -1.064030839351062 -18.40995067147561 -1.668797885313605 -26.17068750133516 -1.303845305457521 -26.12148100826749 -1.949461217357851 -7.159292431165309 -1.69744618722385 -7.854985196129549 -2.746417347632534 -6.718791141366869 -2.468068923971035 -7.2798246100092 -0.8491966345196895 -8.417877199601666 -1.122717643494433 -10.38703202271997 -3.481579675358059 -11.03641160156596 -1.637361946361363 -11.54718953748084 -3.816798493870874 -11.84430204918045 -4.446292896444675 -12.86330478225409 -5.361104519921764 -13.4136083098111 -4.895822555464352 -14.17645312960758 -6.174030638247034 -14.72672962393063 -5.708741585074908 -16.01893622609624 -7.196171309012338 -16.5018368904839 -6.72319749841732 -22.65270559410508 -10.46391163633777 -23.07439550773097 -9.908684515855253 -11.53719775386548 -4.954342257927626 -8.250918445241952 -3.36159874920866 -11.32635279705254 -5.231955818168884 -8.009468113048119 -3.598085654506169 -7.363364811965314 -2.854370792537454 -7.088226564803792 -3.087015319123517 -6.70680415490555 -2.447911277732176 -6.431652391127047 -2.680552259960882 -6.312715173082745 -2.064572491895627 -5.922151024590223 -2.223146448222337 -6.117493923612793 -0.937252721927362 -5.77359476874042 -1.908399246935437 -5.518205800782978 -0.8186809731806815 -5.193516011359987 -1.74078983767903 -4.208938599800833 -0.5613588217472164 -3.927492598064775 -1.373208673816267 -3.6399123050046 -0.4245983172598448 -3.579646215582655 -0.8487230936119248 -3.359395570683434 -1.234034461985518 -13.06074050413374 -0.9747306086789257 -13.08534375066758 -0.6519226527287603 -9.204975335737807 -0.8343989426568027 -9.174831027179364 -0.5320154196755311 -8.108412001860152 -0.860174026063675 -8.047690102077906 -0.5460303992941817 -7.274873022668071 -0.9050571828943463 -7.214160884886991 -0.5909025169285711 -6.674805817056042 -1.04713887534936 -6.465636169821214 -0.7430357483356379 -6.383334991085194 -1.529058791532991</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 15 15 14 14 13 13 16 16 14 14 16 16 17 17 14 14 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 20 20 19 19 2 2 20 20 2 2 21 21 21 21 2 2 1 1 21 21 1 1 22 22 22 22 1 1 23 23 22 22 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID678\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID679\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 33 33 34 34 35 35 34 34 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 46 46 47 47 45 45 48 48 45 45 47 47 49 49 50 50 51 51 50 50 52 52 51 51 51 51 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 59 59 58 58 38 38 40 40 38 38 58 58</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID678\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID679\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID683\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID686\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID684\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID685\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID684\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID688\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID688\">-0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.270747921471866 -0.3435928533137942</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID685\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID689\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID689\">1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID687\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"48\" source=\"#ID690\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID690\">-13.23998135775804 -2.815179652060345 -12.70747921471866 -2.702930446068514 -13.16378218064985 -0.02353490189121056 -11.86264785299155 -5.414977569922251 -11.3852296786218 -5.19814619357484 -9.676892997933901 -7.645755905570643 -9.287060999525936 -7.339102244252365 -6.831627108706453 -9.35548004195716 -6.556009772566556 -8.979918166834205 -3.520815891249638 -10.42765167937458 -3.378135984617037 -10.00876771530356 0.02993367461099795 -10.78919857487892 0.02993367461107122 -10.35552755201697 3.578613696232724 -10.41547563048526 3.435947306217084 -9.996572763175115 6.607832481936404 -8.956385406325536 6.883464085616424 -9.331950235079592 9.329413065955807 -7.305833134151492 9.719179734048568 -7.612483251112466 11.41515847223228 -5.15738785643058 11.89255787352293 -5.374217460599311 12.72300830574298 -2.657477903000535 13.25550293955077 -2.769719724914605 13.16380470834466 0.02353305587178231 13.24002340945525 2.815181424239013 13.71509494893863 0.02353305587177882 -13.25547891000948 2.769721792456383 -13.71506791570486 -0.02353490189120707 -12.72297526512372 2.657477016911196 -11.89256237906191 5.374217460599315 -11.415120926074 5.157382539894559 -9.719207518205637 7.612483251112464 -9.329352241179443 7.305826045436834 -6.883468591155371 9.331957914520494 -6.607781419161219 8.956387769230418 -3.578613696232667 10.41548035629503 -3.435919522059974 9.9965833962471 -0.02990082172260377 10.7891985748789 -0.02990082172267482 10.35552991492187 3.378140490156039 10.00875944513644 3.520825277789115 10.42765758663682 6.556009772566611 8.979915213203102 6.831636119784472 9.35548594921938 9.287065505064954 7.339104016431012 9.676888492394975 7.645755905570645 11.38526271924082 5.198144421396179 11.86263358545151 5.414979342100926 12.70754829964972 2.702938420872503</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 15 15 13 13 16 16 15 15 16 16 17 17 17 17 16 16 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 24 24 22 22 25 25 0 0 26 26 27 27 26 26 0 0 2 2 26 26 2 2 28 28 26 26 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 47 47 46 46 47 47 24 24 24 24 47 47 23 23 48 23 49 47 50 24 50 24 49 47 51 46 49 47 52 45 51 46 51 46 52 45 53 44 52 45 54 43 53 44 53 44 54 43 55 42 54 43 56 41 55 42 55 42 56 41 57 40 56 41 58 39 57 40 57 40 58 39 59 37 58 39 60 38 59 37 60 38 61 36 59 37 59 37 61 36 62 35 61 36 63 34 62 35 62 35 63 34 64 33 63 34 65 32 64 33 64 33 65 32 66 31 65 32 67 30 66 31 66 31 67 30 68 29 67 30 69 28 68 29 68 29 69 28 70 26 69 28 71 2 70 26 71 2 72 0 70 26 73 27 70 26 72 0 74 25 75 22 50 24 50 24 75 22 48 23 48 23 75 22 76 21 75 22 77 20 76 21 76 21 77 20 78 19 77 20 79 18 78 19 78 19 79 18 80 17 79 18 81 16 80 17 80 17 81 16 82 15 81 16 83 13 82 15 82 15 83 13 84 14 84 14 83 13 85 12 83 13 86 11 85 12 85 12 86 11 87 10 86 11 88 9 87 10 87 10 88 9 89 8 88 9 90 7 89 8 89 8 90 7 91 6 90 7 92 5 91 6 91 6 92 5 93 4 92 5 94 3 93 4 93 4 94 3 95 1 94 3 72 0 95 1 71 2 95 1 72 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID686\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID687\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID691\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID695\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID695\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID694\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID694\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID696\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID696\">-0.4478128033659967 0.2778640982455765 -0.362934906886154 -0.4478128033659949 0.307457980125035 -0.3945048806169198</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID697\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID699\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID699\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID698\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID698\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID700\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID700\">-0.4478128033659896 -0.2592153908032857 -0.3790163769896233 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID701\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID703\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID703\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID702\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID702\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID704\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID704\">-0.4478128033659967 -0.4253519781642065 0.1347814339741829 -0.4478128033659914 -0.4139088478041265 0.0933464324579063</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID705\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID707\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID707\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID706\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID706\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID708\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID708\">-0.4478128033659932 -0.003894005930508371 0.4410080127493087 -0.4478128033659967 0.03004302779671875 0.423250557236884</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID709\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID711\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID711\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID710\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID710\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID712\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID712\">-0.4478128033659976 0.4132203263553758 0.1481986756257214 -0.4478128033659941 0.443604104310682 0.1249160682732518</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID713\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID715\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID715\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID714\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID714\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID716\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID716\">-0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.005569503239401641 -0.6325761712128029</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID717\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID719\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID719\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID718\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID718\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID720\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID720\">-0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803314 -0.6020747235977453 -0.1948699676140677</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID721\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID723\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID723\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID722\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID722\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID724\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID724\">-0.5298591187803314 0.005242382336229534 -0.5675233220841833 -0.529859118780335 -0.05171889424246934 -0.426670674331888</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID725\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID727\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID727\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID726\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID726\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID728\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID728\">-0.5298591187803421 0.004574999374554745 -0.4344675846323871 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID729\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID731\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID731\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID730\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID730\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID732\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID732\">-0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.365877924949132 0.5166904045363489</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID733\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID735\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID735\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID734\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID734\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID736\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID736\">-0.5298591187803314 -0.3342368387947641 0.459116412202264 -0.5298591187803323 -0.2836405746819554 0.488100356742052</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID737\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID739\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID739\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID738\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID738\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID740\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID740\">-0.5298591187803341 0.328054863850014 0.4637080820710361 -0.5298591187803368 0.2863054132589566 0.3205489738215878</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID741\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID743\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID743\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID742\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID742\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID744\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID744\">-0.5298591187803421 0.2506140352906494 0.3552348656737639 -0.5298591187803332 0.2520881913262922 0.2718711494341899</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID745\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID747\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID747\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID746\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID746\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID748\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID748\">-0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.3723203951393453 0.5119000403984736</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID749\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID751\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID751\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID750\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID750\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID752\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID752\">-0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2562910144078499 0.3510828613173088</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID753\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID757\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID757\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID756\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID756\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID758\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID758\">-0.5298591187803385 -0.540087405646254 -0.1750670537230961 -0.529859118780335 -0.4220446497283755 -0.0812417951098896</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID759\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID761\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID761\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID760\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID760\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID762\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID762\">-0.529859118780335 -0.4132513394820253 -0.1345502998244115 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID763\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID765\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID765\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID764\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID764\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID766\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID766\">-0.5298591187803394 0.5432375283177788 -0.1650388315610469 -0.5298591187803332 0.5193516011359987 -0.221286843772758</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID767\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID769\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID769\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID768\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID768\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID770\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID770\">-0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.6054177208838552 -0.184220112484069</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID771\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID773\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID773\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID772\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID772\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID774\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID774\">-0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.4160034728768081 -0.1257918324128582</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID775\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID777\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID777\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID776\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID776\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID778\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID778\">0.4736113844101926 1.42012168249506 1.065790132799686 0.8846653631423393 1.420121682495051 1.065790132799686</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID784\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID787\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID785\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID786\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID785\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"128\" source=\"#ID789\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"384\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID789\">-0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID786\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"128\" source=\"#ID790\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"384\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID790\">-0.9024665938125612 0.2869979446047657 0.3212261303894707 -0.902466236746562 0.1795708561871048 0.3915469309555731 -0.9024665938061016 0.2869970887591513 0.3212268950567254 -0.9024662367466551 0.1795709440136923 0.3915468906764066 0.902466236746562 -0.1795708561871048 -0.3915469309555731 0.9024665938061016 -0.2869970887591513 -0.3212268950567254 0.9024662367466551 -0.1795709440136923 -0.3915468906764066 0.9024665938125612 -0.2869979446047657 -0.3212261303894707 -0.9024668903167546 0.05618340562307148 0.4270795438962162 -0.9024668903001765 0.05618563690832937 0.4270792503940392 0.9024668903167546 -0.05618340562307148 -0.4270795438962162 0.9024668903001765 -0.05618563690832937 -0.4270792503940392 -0.902469089464752 0.3689290774500262 0.2223530489391454 -0.9024690894613248 0.3689289867002785 0.2223531995253341 0.9024690894613248 -0.3689289867002785 -0.2223531995253341 0.902469089464752 -0.3689290774500262 -0.2223530489391454 -0.9999555775055583 0.003929272324182818 0.008567603779806768 -0.9999999999999999 -3.944088456120249e-009 1.649036539061831e-008 -0.9999555776890411 0.006279922634141023 0.007028884711349623 0.9999555776890411 -0.006279922634141023 -0.007028884711349623 0.9999999999999999 3.944088456120249e-009 -1.649036539061831e-008 0.9999555775055583 -0.003929272324182818 -0.008567603779806768 -0.9024674946036678 -0.07219701394895309 0.4246645880699658 -0.9024674946038228 -0.07219707389978321 0.424664577877421 0.9024674946036678 0.07219701394895309 -0.4246645880699658 0.9024674946038228 0.07219707389978321 -0.424664577877421 -0.9999555778310314 0.001229424558499158 0.009345099243102516 0.9999555778310314 -0.001229424558499158 -0.009345099243102516 -0.9024695789497297 0.4180784539420578 0.1037259148897536 -0.9024695789502093 0.4180784961390021 0.1037257448061106 0.9024695789502093 -0.4180784961390021 -0.1037257448061106 0.9024695789497297 -0.4180784539420578 -0.1037259148897536 -0.9999555784085298 0.008072791231372301 0.004865311027822405 0.9999555784085298 -0.008072791231372301 -0.004865311027822405 -0.9024683401951699 -0.1941614071388285 0.3845155951625956 -0.9024683401956324 -0.1941614450021188 0.3845155760424143 0.9024683401951699 0.1941614071388285 -0.3845155951625956 0.9024683401956324 0.1941614450021188 -0.3845155760424143 -0.9999555778376283 -0.001579793115735819 0.009292287400107886 0.9999555778376283 0.001579793115735819 -0.009292287400107886 -0.9024695599118074 0.4300783861399769 -0.02410964968268119 -0.9024695599145399 0.4300784014704719 -0.02410937610681846 0.9024695599145399 -0.4300784014704719 0.02410937610681846 0.9024695599118074 -0.4300783861399769 0.02410964968268119 -0.9999555771365172 0.009148344649372987 0.002269701247122971 0.9999555771365172 -0.009148344649372987 -0.002269701247122971 -0.9024699496610145 -0.298869595953435 0.3102014741639317 -0.9024699496784561 -0.298870415416041 0.3102006845840415 0.9024699496610145 0.298869595953435 -0.3102014741639317 0.9024699496784561 0.298870415416041 -0.3102006845840415 -0.9999555776015303 -0.004248627287482877 0.008413797582663555 0.9999555776015303 0.004248627287482877 -0.008413797582663555 -0.9024682165406183 0.4038669616350336 -0.1498085292421026 -0.902468216543048 0.4038670647292976 -0.1498082512966218 0.9024682165406183 -0.4038669616350336 0.1498085292421026 0.902468216543048 -0.4038670647292976 0.1498082512966218 -0.999955577745935 0.009410860694318868 -0.0005274806018676984 0.999955577745935 -0.009410860694318868 0.0005274806018676984 -0.9024707715227106 -0.3770220929027301 0.2083287018402623 -0.9024707715194342 -0.3770227739999134 0.2083274692366014 0.9024707715227106 0.3770220929027301 -0.2083287018402623 0.9024707715194342 0.3770227739999134 -0.2083274692366014 -0.9999555770671936 -0.006539895081909356 0.006787758432154178 0.9999555770671936 0.006539895081909356 -0.006787758432154178 -0.9024668466034375 0.3417689209700612 -0.2621976266875958 -0.9024668466014079 0.3417688417781226 -0.262197729919524 0.9024668466034375 -0.3417689209700612 0.2621976266875958 0.9024668466014079 -0.3417688417781226 0.262197729919524 -0.9999555775200822 0.008837293966907273 -0.003277990515714328 0.9999555775200822 -0.008837293966907273 0.003277990515714328 -0.902469637953096 -0.4216810734117544 0.08794103080541284 -0.9024696379339142 -0.4216812607433428 0.08794013273434857 0.902469637953096 0.4216810734117544 -0.08794103080541284 0.9024696379339142 0.4216812607433428 -0.08794013273434857 -0.9999555769430629 -0.008249995118261777 0.004558697293603463 0.9999555769430629 0.008249995118261777 -0.004558697293603463 -0.902465509489143 0.2493039587819413 -0.3512884004890483 -0.9024655094892364 0.2493038174778161 -0.3512885007701228 0.902465509489143 -0.2493039587819413 0.3512884004890483 0.9024655094892364 -0.2493038174778161 0.3512885007701228 -0.9999555779597974 0.00747843989793408 -0.005737163391514847 0.9999555779597974 -0.00747843989793408 0.005737163391514847 -0.9024672758692717 -0.4288731719288677 -0.04025690480859202 -0.9024672758646049 -0.4288730763736164 -0.04025792288916159 0.9024672758692717 0.4288731719288677 0.04025690480859202 0.9024672758646049 0.4288730763736164 0.04025792288916159 -0.9999555776764442 -0.009227086398497142 0.001924461057970694 0.9999555776764442 0.009227086398497142 -0.001924461057970694 -0.9024664086806516 0.1346861044661979 -0.4091626015006348 -0.9024664086756207 0.134686627996427 -0.4091624291782907 0.9024664086806516 -0.1346861044661979 0.4091626015006348 0.9024664086756207 -0.134686627996427 0.4091624291782907 -0.9999555777995033 0.005455079717335024 -0.007686646403922885 0.9999555777995033 -0.005455079717335024 0.007686646403922885 -0.9024678923401798 -0.3979516028754097 -0.1648824583270336 -0.902467892340141 -0.3979517141178801 -0.1648821898380311 0.902467892340141 0.3979517141178801 0.1648821898380311 0.9024678923401798 0.3979516028754097 0.1648824583270336 -0.9999555778851129 -0.009384369994094055 -0.000880827034032532 0.9999555778851129 0.009384369994094055 0.000880827034032532 -0.9024663791541479 0.008097340179231503 -0.430684185428747 -0.9024663791250542 0.008094825123542416 -0.4306842327681999 0.9024663791541479 -0.008097340179231503 0.430684185428747 0.9024663791250542 -0.008094825123542416 0.4306842327681999 -0.9999555777991002 0.002947080780235639 -0.008953052180265634 0.9999555777991002 -0.002947080780235639 0.008953052180265634 -0.9024662331163754 -0.3316728008946313 -0.2748596937192685 -0.9024662331196897 -0.3316729654395058 -0.2748594951522004 0.9024662331196897 0.3316729654395058 0.2748594951522004 0.9024662331163754 0.3316728008946313 0.2748596937192685 -0.999955578177709 -0.008707751861328623 -0.003607870397508076 0.999955578177709 0.008707751861328623 0.003607870397508076 -0.9024648168310505 -0.1192080340211159 -0.4139404534554687 -0.9024648168337509 -0.1192074838149737 -0.4139406118994938 0.9024648168310505 0.1192080340211159 0.4139404534554687 0.9024648168337509 0.1192074838149737 0.4139406118994938 -0.9999555778745281 0.0001771432880129035 -0.009423953410019359 0.9999555778745281 -0.0001771432880129035 0.009423953410019359 -0.9024656541724766 -0.2359218880318137 -0.3604117170494711 -0.902465654171666 -0.2359217875784709 -0.3604117828072296 0.902465654171666 0.2359217875784709 0.3604117828072296 0.9024656541724766 0.2359218880318137 0.3604117170494711 -0.9999555777101306 -0.007257512103960586 -0.006014243465287442 0.9999555777101306 0.007257512103960586 0.006014243465287442 -0.9999555776620278 -0.002608402576862527 -0.009057534907320045 0.9999555776620278 0.002608402576862527 0.009057534907320045 -0.9999555782419665 -0.005162296496035368 -0.007886205530005717 0.9999555782419665 0.005162296496035368 0.007886205530005717</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID788\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"147\" source=\"#ID791\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"294\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID791\">-0.3524052240098752 -0.2361568945663559 0.3968896729741346 0.1922852666439943 0.4737327008967246 -0.9152355322345628 0.9630262887515753 -0.6354626856147748 -0.4167537122269166 -0.1324198059202896 0.4655388858093918 0.08953581466919515 0.09695620062060414 -0.9810664844640712 0.6730670627304097 -0.8361327489468616 -0.2567247963027225 -0.31560409935685 0.2973352684969716 0.2683873916988639 0.7882870625951499 -0.7713646321021612 1.150086384430147 -0.3900178469634608 -0.783870346512475 1.378704611404 0.06212354191532857 -0.07234147090675236 -1.289966888573064 1.118085413747316 -0.3008224430983176 -0.9484756688791239 -0.4367617780734336 -0.01462412283998805 0.3039367921445285 -0.9584067804719864 0.4893324111284635 -0.02983363233461241 -0.2203908618967485 1.503989911589727 0.04433562663634652 -0.07875933781474324 -0.8016174477820905 1.372301469794169 -0.1429120515214738 -0.367198117649849 0.1809070857644482 0.3155180012112068 1.022592991639205 -0.5743581365222055 1.234023150294384 -0.1285484832020004 -1.275396677288614 1.12832667461258 0.07671628909398423 -0.06208436965356513 -1.66136548078844 0.7619376860652442 -0.6628716918210396 -0.8170859861489843 -0.4073515623064179 0.1011264290438674 -0.09476487502684913 -0.9804405628471385 0.4626568454837426 -0.1490324395691673 0.3650414996825432 1.493042349004655 0.02493089743164573 -0.08076808610367456 -0.2397426200746382 1.50198664557768 -0.02066572129329647 -0.3914599007726098 0.05736325230823958 0.3346473762187736 1.17267479942198 -0.3439402612969316 1.223643632931941 0.1302055707804858 -1.651269230232574 0.7751163069047897 0.08682001596138418 -0.04889598984901968 -1.882760478217731 0.3355170423070947 -0.9419647060013334 -0.6102700701630079 -0.3353501529221609 0.1995466050261453 -0.4668875889383237 -0.9047897006971836 0.3922070304645184 -0.2514821593426724 0.3457982769905845 1.495615404073835 0.9203364240227525 1.346830328258524 0.005635596625816379 -0.07818806575251706 -0.06697561493530457 0.3275468783499481 1.126355299807839 0.3752155678757479 0.1040111679385125 -0.388637340607042 1.238011217856225 -0.09244888651659929 -1.878050069741289 0.3504523016984736 0.09153118311425376 -0.03395832490335624 -1.93459673056012 -0.123302009428372 -1.117289405717435 -0.3613891006095253 -0.2344980136134975 0.272067017744716 -0.7734592826352205 -0.7528807175430338 0.2920443195803396 -0.3274591628500121 0.9029042283172811 1.35375431886067 1.39616406775141 1.078353125365281 -0.01183525826232684 -0.07124871822464581 -0.186897061406765 0.2942037124704471 0.9447253547904824 0.5959672029532446 0.2257787374954082 -0.3581771099131729 1.214189184550729 0.169958907902574 0.09043585409260579 -0.01858633654730853 -1.812203419199725 -0.5737500453082663 -1.93569205005432 -0.1079301547813531 -1.190013434193229 -0.09824780362384109 -0.1179073442473178 0.3167816077142103 -0.9983469950028587 -0.5495662572713074 0.1755912440477331 -0.3743751425856143 1.382091246066081 1.089018993299208 1.75026303628513 0.7114738979672752 -0.02592837582048213 -0.06056746696411634 -0.2952586744430266 0.2337084769733447 0.6794575272154855 0.7773668085625854 0.3372907202383119 -0.2986409217881123 1.092513136402134 0.4297375884811659 0.08363089132390443 -0.004153551560189934 -1.526489466348473 -0.9758143642852514 -1.819006096267833 -0.5593221080025462 -1.168978557164991 0.1615496775993526 0.005430313511846641 0.3347777810011712 -1.13847441899684 -0.3136789370305894 0.05211876781394509 -0.3929897756725005 1.740805216807092 0.7249390145054863 1.951177325817038 0.2788063115482746 -0.03539234262457076 -0.04709359816704189 -0.3809160440027784 0.146093917292971 0.3383174364586705 0.8966761424705388 0.4270405228667517 -0.2102904844304112 0.8659105981995169 0.6639631861579365 0.07171849013542153 0.008062775638568245 -1.102793304223511 -1.293774310216109 -1.538389610930159 -0.9636106058033177 -1.192697017918619 -0.05808015184411099 -1.060803453390981 0.4063081240514468 -0.07222633956791902 -0.3845717407713823 0.1297449779240717 0.3265826019173688 1.947182244123232 0.2938766420839853 1.981042651962162 -0.1812112976198525 -0.03938788681399102 -0.0320215229750103 -0.4299897675531783 0.03654607664910618 -0.0524315242956043 0.9283402239298384 0.4802244090786475 -0.09863015383275404 0.5419672336339126 0.840067431844499 0.05575920687481053 0.01697370996765415 -0.5787908752940257 -1.499364633663538 -1.118723112271001 -1.28487983214167 -1.156099853862085 0.2066797400671177 -0.8675436049402432 0.6248879863575346 -0.1921656442747269 -0.3487502314162322 0.2497335503953799 0.2916925404031848 1.982871524296908 -0.1658838045780912 1.837226823603213 -0.6277221656035168 -0.03755897012292375 -0.01669365819150997 -0.4435596451746486 0.8574897570892256 0.1549471133513004 0.926271017659403 -0.4314797661798583 -0.08241555601430506 0.4850983193021703 0.02291896507682182 0.03716949338786759 0.02178844157197701 -0.0009938348333969052 -1.574320909725511 -0.5973340108549068 -1.494561963904799 -1.020058250736914 0.4652208336946513 -0.590668199735378 0.8003619256414625 -0.3002610023705488 -0.2850266574071003 0.3573215388483328 0.2282013813533236 1.844715281581389 -0.6135032123919676 1.53248244939769 -1.021051126561889 -0.03006746412218775 -0.00246891752738707 -0.7787690196498813 0.6932719536246276 -0.2397379242648021 0.9092043715946208 -0.3847025093323656 -0.1940833813882925 0.44076218466755 0.1365952386707551 0.01760077999626869 0.02207835371030489 0.5791832437635509 -1.51196408310349 -0.02050822442818087 -1.574031800828231 1.544954207250127 -1.00921122784879 1.093911919977969 -1.326263772815833 -0.017581589667695 0.009384382415771322 1.110257215438868 -1.317846356961747 0.560426229320167 -1.516213318070019 -0.001204457374191035 0.01781819349283538</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"126\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 3 2 2 1 1 4 1 5 2 6 3 5 2 4 1 7 0 1 4 8 5 3 6 9 7 3 6 8 5 10 5 6 6 11 7 6 6 10 5 4 4 12 8 0 9 13 10 2 11 13 10 0 9 7 9 14 10 5 11 14 10 7 9 15 8 16 12 17 13 18 14 19 14 20 13 21 12 9 15 8 16 22 17 23 18 22 17 8 16 10 16 24 17 25 18 24 17 10 16 11 15 26 19 17 20 16 21 21 21 20 20 27 19 28 22 12 23 29 24 13 25 29 24 12 23 15 23 30 24 14 25 30 24 15 23 31 22 18 26 17 27 32 28 33 28 20 27 19 26 22 29 23 30 34 31 35 32 34 31 23 30 25 30 36 31 37 32 36 31 25 30 24 29 38 33 17 34 26 35 27 35 20 34 39 33 40 36 28 37 41 38 29 39 41 38 28 37 31 37 42 38 30 39 42 38 31 37 43 36 32 40 17 41 44 42 45 42 20 41 33 40 34 43 35 44 46 45 47 46 46 45 35 44 37 44 48 45 49 46 48 45 37 44 36 43 38 47 50 48 17 49 20 49 51 48 39 47 40 50 41 51 52 52 53 53 52 52 41 51 42 51 54 52 55 53 54 52 42 51 43 50 44 54 17 55 56 56 57 56 20 55 45 54 46 57 47 58 58 59 59 60 58 59 47 58 49 58 60 59 61 60 60 59 49 58 48 57 50 61 62 62 17 63 20 63 63 62 51 61 52 64 53 65 64 66 65 67 64 66 53 65 55 65 66 66 67 67 66 66 55 65 54 64 17 68 68 69 56 70 57 70 69 69 20 68 58 71 59 72 70 73 71 74 70 73 59 72 61 72 72 73 73 74 72 73 61 72 60 71 62 75 74 76 17 77 20 77 75 76 63 75 64 78 65 79 76 80 77 81 76 80 65 79 67 79 78 80 79 81 78 80 67 79 66 78 17 82 80 83 68 84 69 84 81 83 20 82 70 85 71 86 82 87 83 88 82 87 71 86 73 86 84 87 85 88 84 87 73 86 72 85 74 89 86 90 17 91 20 91 87 90 75 89 76 92 77 93 88 94 89 95 88 94 77 93 79 93 90 94 91 95 90 94 79 93 78 92 17 96 92 97 80 98 81 98 93 97 20 96 94 99 82 100 95 101 83 102 95 101 82 100 84 100 96 101 85 102 96 101 84 100 97 99 86 103 98 104 17 105 20 105 99 104 87 103 88 106 89 107 100 108 101 109 100 108 89 107 91 107 102 108 103 109 102 108 91 107 90 106 17 110 104 111 92 112 93 112 105 111 20 110 106 113 94 114 107 115 95 116 107 115 94 114 97 114 108 115 96 116 108 115 97 114 109 113 98 117 110 118 17 119 20 119 111 118 99 117 101 120 112 121 100 122 113 123 100 122 112 121 114 121 102 122 115 123 102 122 114 121 103 120 17 124 116 125 104 126 105 126 117 125 20 124 118 127 106 128 119 129 107 130 119 129 106 128 109 128 120 129 108 130 120 129 109 128 121 127 110 131 122 132 17 133 20 133 123 132 111 131 112 134 118 135 113 136 119 137 113 136 118 135 121 135 115 136 120 137 115 136 121 135 114 134 17 138 124 139 116 140 117 140 125 139 20 138 122 141 126 142 17 143 20 143 127 142 123 141 126 144 124 145 17 146 20 146 125 145 127 144</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID787\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID788\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID792\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID795\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID793\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID794\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID793\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1000\" source=\"#ID797\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"3000\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID797\">-0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 -0.3788313495221017 0.7391863847872159 -0.7918046221566382 -0.3788313495221017 0.7391863847872159</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID794\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1000\" source=\"#ID798\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"3000\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID798\">-0.6100330350797705 -0.432978057042589 -0.6636186391527805 -0.6107430305208749 -0.4313432930897734 -0.6640300551757034 -0.6131685433316286 -0.6352305123706656 -0.4695812321865837 0.6131685433316286 0.6352305123706656 0.4695812321865837 0.6107430305208749 0.4313432930897734 0.6640300551757034 0.6100330350797705 0.432978057042589 0.6636186391527805 -0.6414932949073833 -0.1910191354735049 -0.7429657074669219 0.6414932949073833 0.1910191354735049 0.7429657074669219 -0.9230582056960787 0.2076733531501404 0.3237828397066665 -0.9087638176408079 0.2443143590689556 0.3383176284198477 -0.9119812894775979 0.2460334925802348 0.3282646008505167 0.9119812894775979 -0.2460334925802348 -0.3282646008505167 0.9087638176408079 -0.2443143590689556 -0.3383176284198477 0.9230582056960787 -0.2076733531501404 -0.3237828397066665 -0.5814085771430504 -0.6235265193762986 -0.5226650419331412 0.5814085771430504 0.6235265193762986 0.5226650419331412 -0.6219866060717065 -0.2255011033331463 -0.7498545954136263 0.6219866060717065 0.2255011033331463 0.7498545954136263 -0.9210274254689069 0.188359605763954 0.3409239511248287 -0.9234677517021199 0.1707487320338378 0.3435872262978766 0.9234677517021199 -0.1707487320338378 -0.3435872262978766 0.9210274254689069 -0.188359605763954 -0.3409239511248287 -0.9243339167159471 0.2082873548390461 0.319723612238305 0.9243339167159471 -0.2082873548390461 -0.319723612238305 -0.9018502407217643 0.249016537502691 0.3530678509299122 0.9018502407217643 -0.249016537502691 -0.3530678509299122 -0.4688809399671691 -0.7410968956416455 -0.4805476619502169 0.4688809399671691 0.7410968956416455 0.4805476619502169 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.5313074129219958 -0.1516791908637951 -0.8334901655286883 0.5313074129219958 0.1516791908637951 0.8334901655286883 -0.9193974272347317 0.1904939904256795 0.3441226676722378 0.9193974272347317 -0.1904939904256795 -0.3441226676722378 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 -0.9064264101263384 0.2873078457702411 0.3095890256200023 0.9064264101263384 -0.2873078457702411 -0.3095890256200023 -0.4125080872329844 -0.7444765374883888 -0.5249683448520343 0.4125080872329844 0.7444765374883888 0.5249683448520343 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 -0.4893414839082547 -0.1788419456180993 -0.8535575379633175 0.4893414839082547 0.1788419456180993 0.8535575379633175 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 -0.8847877951732008 0.3876305483478212 0.2586370342779885 0.8847877951732008 -0.3876305483478212 -0.2586370342779885 0.05401064972997639 0.5993988161129192 -0.7986262636291001 0.04971157032437513 0.7278710826830646 -0.683909677347578 0.04569831620770311 0.6180154536524877 -0.7848366472983348 -0.04569831620770311 -0.6180154536524877 0.7848366472983348 -0.04971157032437513 -0.7278710826830646 0.683909677347578 -0.05401064972997639 -0.5993988161129192 0.7986262636291001 -0.9126387109060857 0.2012446850352883 0.3557965150204898 0.9126387109060857 -0.2012446850352883 -0.3557965150204898 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 -0.5884703132773211 -0.5886073228299992 0.554296048968593 -0.5750104179820392 -0.5638465179981029 0.5928238552500531 -0.5954974211095998 -0.6204561645494262 0.5103106596225786 0.5954974211095998 0.6204561645494262 -0.5103106596225786 0.5750104179820392 0.5638465179981029 -0.5928238552500531 0.5884703132773211 0.5886073228299992 -0.554296048968593 -0.4492936185982592 0.5610742779696141 -0.6952200363106335 -0.4368753109454024 0.552964815618193 -0.7094856414154525 -0.4435911602170827 0.5573645162302835 -0.7018345094284296 0.4435911602170827 -0.5573645162302835 0.7018345094284296 0.4368753109454024 -0.552964815618193 0.7094856414154525 0.4492936185982592 -0.5610742779696141 0.6952200363106335 0.0331249413609678 -0.9196095857015579 0.391434474906901 0.007288799048047151 -0.9575732679774761 0.2880977435929935 0.02921517395714277 -0.972018298904142 0.2330813167247683 -0.02921517395714277 0.972018298904142 -0.2330813167247683 -0.007288799048047151 0.9575732679774761 -0.2880977435929935 -0.0331249413609678 0.9196095857015579 -0.391434474906901 -0.9092595095315058 0.2346197211408815 0.3438033315404329 0.9092595095315058 -0.2346197211408815 -0.3438033315404329 0.0278811390736898 -0.1294666985918035 -0.9911917150782147 0.02557206782593211 -0.2876548247142446 -0.9573926943348394 0.02784385059247752 0.01284876764323613 -0.9995297039879475 -0.02784385059247752 -0.01284876764323613 0.9995297039879475 -0.02557206782593211 0.2876548247142446 0.9573926943348394 -0.0278811390736898 0.1294666985918035 0.9911917150782147 0.009825431372019862 -0.4178389509239254 -0.9084679807176186 0.0271922736872749 -0.5474159088744459 -0.8364187963950122 -0.0271922736872749 0.5474159088744459 0.8364187963950122 -0.009825431372019862 0.4178389509239254 0.9084679807176186 0.03669397673521557 0.6999623410633172 -0.7132364777298733 -0.03669397673521557 -0.6999623410633172 0.7132364777298733 -0.9111139540391022 0.1995854796515729 0.3606064323711994 0.9111139540391022 -0.1995854796515729 -0.3606064323711994 -0.6085378327787385 -0.4363385207717332 0.6627898621491521 0.6085378327787385 0.4363385207717332 -0.6627898621491521 -0.4290146282623736 0.5477739795014404 -0.7182549102637957 0.4290146282623736 -0.5477739795014404 0.7182549102637957 0.0355140718306879 -0.9496263193448361 0.3113657083071032 -0.0355140718306879 0.9496263193448361 -0.3113657083071032 0.02675587691421818 -0.5599249416657842 -0.8281112139991341 0.02589537248138592 -0.5533675459134304 -0.8325345571288905 0.02066161520126121 -0.7708648855079502 -0.6366635107716556 0.0193163073801767 -0.6584185702951814 -0.7524040580430462 -0.02589537248138592 0.5533675459134304 0.8325345571288905 -0.02066161520126121 0.7708648855079502 0.6366635107716556 -0.0193163073801767 0.6584185702951814 0.7524040580430462 -0.02675587691421818 0.5599249416657842 0.8281112139991341 0.01414311661247775 -0.8602383968027927 -0.5096958631563011 0.019948224836587 -0.9244137174900406 -0.380869199650106 -0.019948224836587 0.9244137174900406 0.380869199650106 -0.01414311661247775 0.8602383968027927 0.5096958631563011 -0.5897023076858039 0.8014515282654252 -0.09963250549419947 -0.4189594113912097 0.8690844326029823 -0.2629928908048341 -0.3869225765070412 0.8727213960493712 -0.2977386180306301 0.3869225765070412 -0.8727213960493712 0.2977386180306301 0.4189594113912097 -0.8690844326029823 0.2629928908048341 0.5897023076858039 -0.8014515282654252 0.09963250549419947 -0.9099990926414894 0.2258504072914317 0.3476970591160654 0.9099990926414894 -0.2258504072914317 -0.3476970591160654 0.03481463620808104 0.01941661477622277 -0.9992051521966502 -0.03481463620808104 -0.01941661477622277 0.9992051521966502 0.02635295136991371 0.002234022109095546 -0.9996502043711644 -0.02635295136991371 -0.002234022109095546 0.9996502043711644 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.03784136067587975 0.8144840404498097 -0.578950584484333 0.03784136067587975 -0.8144840404498097 0.578950584484333 -0.9173890060384352 0.2293469628645768 0.3252650953062846 0.9173890060384352 -0.2293469628645768 -0.3252650953062846 -0.6122597140083652 -0.4503628205385982 0.6498548857082733 0.6122597140083652 0.4503628205385982 -0.6498548857082733 -0.03958647210302838 -0.8552382005688831 0.5167209416252983 0.03958647210302838 0.8552382005688831 -0.5167209416252983 0.03026716317725075 -0.2976749896778023 -0.9541873502376365 -0.03026716317725075 0.2976749896778023 0.9541873502376365 0.02910907021181551 -0.7855610775535136 -0.6180990660600988 -0.02910907021181551 0.7855610775535136 0.6180990660600988 0.01961372260044477 -0.9291073014986491 -0.3692897564076902 -0.01961372260044477 0.9291073014986491 0.3692897564076902 -0.5991542260006512 0.7982237271597008 -0.06207330235162312 0.5991542260006512 -0.7982237271597008 0.06207330235162312 -0.9157317949075062 0.1970830215706734 0.3501336350653144 0.9157317949075062 -0.1970830215706734 -0.3501336350653144 0.0299077864524713 0.3064717907049849 -0.9514097780723052 -0.0299077864524713 -0.3064717907049849 0.9514097780723052 0.02136018720689605 0.2992869541934073 -0.9539240333758867 -0.02136018720689605 -0.2992869541934073 0.9539240333758867 -0.006913157180589681 0.1302289306279806 0.9914598498604414 -0.007408558792217734 0.4165322447531742 0.909090755831069 -0.005482260976492941 0.139386230751211 0.9902229160605989 0.005482260976492941 -0.139386230751211 -0.9902229160605989 0.007408558792217734 -0.4165322447531742 -0.909090755831069 0.006913157180589681 -0.1302289306279806 -0.9914598498604414 -0.003802609351618076 0.6663786935817081 0.7456037666900933 -0.003797720091156379 0.4255976902132539 0.9049045161823717 0.003797720091156379 -0.4255976902132539 -0.9049045161823717 0.003802609351618076 -0.6663786935817081 -0.7456037666900933 0.001295306138674836 0.8564789233090522 0.5161803716816183 -0.0008944920513999811 0.6733396999513402 0.7393327047773614 0.0008944920513999811 -0.6733396999513402 -0.7393327047773614 -0.001295306138674836 -0.8564789233090522 -0.5161803716816183 0.006332432417781015 0.9251165065025596 0.3796305436818457 0.002908326967066847 0.8606855222858298 0.5091286412703778 -0.002908326967066847 -0.8606855222858298 -0.5091286412703778 -0.006332432417781015 -0.9251165065025596 -0.3796305436818457 0.01231533713361633 0.9984524360191881 -0.05423159114975583 0.007293336385795456 0.9730925818604524 0.2302990107936251 -0.001404844418161865 0.99551776389769 0.09456430709471765 0.001404844418161865 -0.99551776389769 -0.09456430709471765 -0.007293336385795456 -0.9730925818604524 -0.2302990107936251 -0.01231533713361633 -0.9984524360191881 0.05423159114975583 0.01023761722016337 0.980868485680595 -0.1944021733219808 0.0120157990965055 0.998198666219562 -0.05877961661630734 -0.0120157990965055 -0.998198666219562 0.05877961661630734 -0.01023761722016337 -0.980868485680595 0.1944021733219808 0.01414019568378701 0.8726596648110707 -0.4881241279406847 0.02512467636456076 0.7906507610061087 -0.611751685537553 0.01646393589398393 0.9369218021430217 -0.3491510783084469 -0.01646393589398393 -0.9369218021430217 0.3491510783084469 -0.02512467636456076 -0.7906507610061087 0.611751685537553 -0.01414019568378701 -0.8726596648110707 0.4881241279406847 0.03469207648931452 0.5770147196282489 -0.8159966134495859 0.02402975912977263 0.7849144902682695 -0.6191379601050702 -0.02402975912977263 -0.7849144902682695 0.6191379601050702 -0.03469207648931452 -0.5770147196282489 0.8159966134495859 0.03508365640598449 0.3143465129616109 -0.9486597951015225 0.02921019489462125 0.5707659558659806 -0.8205930709789181 -0.02921019489462125 -0.5707659558659806 0.8205930709789181 -0.03508365640598449 -0.3143465129616109 0.9486597951015225 0.01492656118699344 -0.9952036424557336 -0.09667940739356572 -0.01492656118699344 0.9952036424557336 0.09667940739356572 0.01346271275209136 -0.9964377721902609 -0.08324975386068219 0.008347472633542526 -0.9795541238063974 0.2010075576552121 -0.008347472633542526 0.9795541238063974 -0.2010075576552121 -0.01346271275209136 0.9964377721902609 0.08324975386068219 0.008249685662450967 -0.976765905206645 0.2141502022233793 0.002143504963585591 -0.8767179422043012 0.4810000573841198 -0.002143504963585591 0.8767179422043012 -0.4810000573841198 -0.008249685662450967 0.976765905206645 -0.2141502022233793 0.003370248980950642 -0.8703013678452798 0.4925080411002865 0.002686763416736887 -0.7899672717419514 0.6131431243020837 -0.002686763416736887 0.7899672717419514 -0.6131431243020837 -0.003370248980950642 0.8703013678452798 -0.4925080411002865 -0.009335567978409306 -0.5787453233274817 0.8154549024299805 -0.006791809893397876 -0.4554923169053546 0.890213806092988 -0.0007244517714074711 -0.686530526938509 0.7271006194132722 0.0007244517714074711 0.686530526938509 -0.7271006194132722 0.006791809893397876 0.4554923169053546 -0.890213806092988 0.009335567978409306 0.5787453233274817 -0.8154549024299805 -0.9869176053607741 0.09681709921543918 -0.1289189261841074 -0.9999899824504387 -0.00260493943261591 0.003639957324477385 -0.9824989449431362 0.08503230673662772 -0.1657266725565704 0.9824989449431362 -0.08503230673662772 0.1657266725565704 0.9999899824504387 0.00260493943261591 -0.003639957324477385 0.9869176053607741 -0.09681709921543918 0.1289189261841074 -0.007381002033179414 -0.3156791974855449 0.9488372700752583 -0.003997307821499382 -0.4458837485294091 0.8950819539726755 0.003997307821499382 0.4458837485294091 -0.8950819539726755 0.007381002033179414 0.3156791974855449 -0.9488372700752583 -0.9841485037669431 0.06359518961047951 -0.1655517272386327 -0.9999905288897614 -0.001370765720624478 0.004130754424404623 0.9999905288897614 0.001370765720624478 -0.004130754424404623 0.9841485037669431 -0.06359518961047951 0.1655517272386327 -0.002427302614937988 -0.01243128957560056 0.9999197824033201 -0.004057949462573538 -0.1654053068756676 0.9862173277242321 0.004057949462573538 0.1654053068756676 -0.9862173277242321 0.002427302614937988 0.01243128957560056 -0.9999197824033201 -0.05001318370946404 0.8414267630942929 -0.5380517482583845 0.05001318370946404 -0.8414267630942929 0.5380517482583845 -0.9187981593551595 0.2316284903157012 0.3196219404853802 0.9187981593551595 -0.2316284903157012 -0.3196219404853802 -0.5116852732955495 -0.4542311857591191 0.7292819831699693 0.5116852732955495 0.4542311857591191 -0.7292819831699693 -0.05172784220055365 -0.8363317719908131 0.5457777913216892 0.05172784220055365 0.8363317719908131 -0.5457777913216892 -0.5143076157204272 0.8449925937235406 -0.1465441672818575 0.5143076157204272 -0.8449925937235406 0.1465441672818575 -0.9157810847001926 0.1934753844391117 0.3520117619078609 0.9157810847001926 -0.1934753844391117 -0.3520117619078609 0.03592728837289261 0.3424796949339312 0.9388380523328466 0.04335475963781485 0.2054908490064289 0.9776982539574081 0.03964917043178988 0.3525170978793918 0.9349650469331792 -0.03964917043178988 -0.3525170978793918 -0.9349650469331792 -0.04335475963781485 -0.2054908490064289 -0.9776982539574081 -0.03592728837289261 -0.3424796949339312 -0.9388380523328466 0.01644376297839757 0.9974451863900713 -0.06951764384949995 -0.01644376297839757 -0.9974451863900713 0.06951764384949995 0.03793714202236574 0.1449358727658069 -0.9887134903705868 0.02135092118153528 0.2802821764875909 -0.9596801757398549 0.03346756875724736 0.3104113722911479 -0.9500130008551491 -0.03346756875724736 -0.3104113722911479 0.9500130008551491 -0.02135092118153528 -0.2802821764875909 0.9596801757398549 -0.03793714202236574 -0.1449358727658069 0.9887134903705868 0.04357592730064158 -0.986621286913195 -0.1570973417013809 0.04731999989724039 -0.988143031769225 -0.1460622003656307 0.04741565844858901 -0.9527313725054269 -0.3000911314547839 -0.04741565844858901 0.9527313725054269 0.3000911314547839 -0.04731999989724039 0.988143031769225 0.1460622003656307 -0.04357592730064158 0.986621286913195 0.1570973417013809 -0.9612697098559012 0.1241480665562238 -0.2460646307048266 0.9612697098559012 -0.1241480665562238 0.2460646307048266 0.002788247194464847 0.7096494163407977 0.7045494528879771 0.02684474802398928 0.6624818840923926 0.7485967624515366 0.03145112195807651 0.7894354586032027 0.613027310670193 -0.03145112195807651 -0.7894354586032027 -0.613027310670193 -0.02684474802398928 -0.6624818840923926 -0.7485967624515366 -0.002788247194464847 -0.7096494163407977 -0.7045494528879771 -0.06757829711111801 0.7710133873258493 -0.6332231283867335 0.06757829711111801 -0.7710133873258493 0.6332231283867335 -0.9294521394256079 0.253452618746215 0.268105372135372 0.9294521394256079 -0.253452618746215 -0.268105372135372 -0.5121653214427434 -0.4705831108144322 0.7184971950729265 0.5121653214427434 0.4705831108144322 -0.7184971950729265 -0.06755689289069129 -0.8758167307604269 0.4778923731794361 0.06755689289069129 0.8758167307604269 -0.4778923731794361 0.01533915038481843 -0.931302781136795 -0.363922849395779 -0.01533915038481843 0.931302781136795 0.363922849395779 -0.5141693164024285 0.8420130928550114 -0.1632294873207583 0.5141693164024285 -0.8420130928550114 0.1632294873207583 -0.9325766854234757 0.1309140125917365 0.3363959677399454 0.9325766854234757 -0.1309140125917365 -0.3363959677399454 0.001200659249239651 -0.1460802454730157 0.9892720153223333 -0.001200659249239651 0.1460802454730157 -0.9892720153223333 -0.002061751646003162 0.149208950471754 0.9888035387675693 0.002061751646003162 -0.149208950471754 -0.9888035387675693 -0.0009318520237067135 0.433722340755988 0.9010460935939696 0.0009318520237067135 -0.433722340755988 -0.9010460935939696 0.001230385039251648 0.6798257005461618 0.7333726904034371 -0.001230385039251648 -0.6798257005461618 -0.7333726904034371 0.004958609525564488 0.865332610935552 0.5011735075231268 -0.004958609525564488 -0.865332610935552 -0.5011735075231268 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.03665747372773916 0.2635154343631972 0.9639584251783245 -0.03665747372773916 -0.2635154343631972 -0.9639584251783245 0.009900852030461732 0.9748308572254344 0.2227257796713161 -0.009900852030461732 -0.9748308572254344 -0.2227257796713161 0.02459906767420807 0.9291593642459279 -0.3688600841832339 -0.02459906767420807 -0.9291593642459279 0.3688600841832339 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.03526949973342622 0.2184273294063683 -0.9752156500779486 -0.03526949973342622 -0.2184273294063683 0.9752156500779486 0.01810657254151843 0.7819003011516978 -0.6231404906517333 -0.01810657254151843 -0.7819003011516978 0.6231404906517333 0.01159606897749572 -0.9972521189634576 -0.07316927228805119 -0.01159606897749572 0.9972521189634576 0.07316927228805119 0.007746355397098426 -0.9745611152693888 0.2239880054443695 -0.007746355397098426 0.9745611152693888 -0.2239880054443695 0.004188632105367766 -0.8653193803481177 0.5012033772382579 -0.004188632105367766 0.8653193803481177 -0.5012033772382579 0.03694298968752306 -0.9660546355743256 -0.2556827264370916 -0.03694298968752306 0.9660546355743256 0.2556827264370916 0.001214459778276763 -0.6793050578937298 0.7338550016232387 -0.001214459778276763 0.6793050578937298 -0.7338550016232387 -0.9165260464188996 0.2413126785897623 -0.3189799325781723 0.9165260464188996 -0.2413126785897623 0.3189799325781723 0.001434244776386382 -0.4349910787918278 0.9004336201594448 -0.001434244776386382 0.4349910787918278 -0.9004336201594448 0.03479758506284582 0.7257101728783496 0.6871199844675382 -0.03479758506284582 -0.7257101728783496 -0.6871199844675382 -0.9053555865328123 0.1174765612269161 -0.4080815108481708 0.9053555865328123 -0.1174765612269161 0.4080815108481708 -0.06837815441249286 0.7838010835826982 -0.61723600783957 0.06837815441249286 -0.7838010835826982 0.61723600783957 -0.925181050407382 0.2544784030417004 0.2815684043930342 0.925181050407382 -0.2544784030417004 -0.2815684043930342 -0.5094027305261349 -0.4031696580921826 0.7602388341346096 0.5094027305261349 0.4031696580921826 -0.7602388341346096 -0.06822779517691434 -0.8673864003091556 0.4929358990010996 0.06822779517691434 0.8673864003091556 -0.4929358990010996 -0.5108147009650829 0.8560080643809171 -0.07948921305931028 0.5108147009650829 -0.8560080643809171 0.07948921305931028 -0.9295497348399154 0.141402496183842 0.3405034868133092 0.9295497348399154 -0.141402496183842 -0.3405034868133092 0.01921047962226295 0.5651345907762262 -0.8247750310120148 -0.01921047962226295 -0.5651345907762262 0.8247750310120148 -0.9072210144294771 -0.4193680273961145 0.03287078604844312 -0.9243377794016469 -0.3811886557337647 0.0171720211599593 -0.924489198402029 -0.3808644361577947 0.0161865162458993 0.924489198402029 0.3808644361577947 -0.0161865162458993 0.9243377794016469 0.3811886557337647 -0.0171720211599593 0.9072210144294771 0.4193680273961145 -0.03287078604844312 -0.03780903634253117 0.08541542107879442 0.9956277831663706 0.03780903634253117 -0.08541542107879442 -0.9956277831663706 -0.915264571564772 -0.4027493562430763 -0.009149867984932962 0.915264571564772 0.4027493562430763 0.009149867984932962 -0.03805664037554967 -0.009784856047856541 -0.9992276761156334 0.03805664037554967 0.009784856047856541 0.9992276761156334 -0.03988346302587386 -0.9059913707647226 -0.4214130342988013 0.03988346302587386 0.9059913707647226 0.4214130342988013 -0.8756294668438924 0.3525945089564383 -0.3300759746610601 0.8756294668438924 -0.3525945089564383 0.3300759746610601 -0.706699211393621 -0.332866770111896 0.6243203808709985 -0.6992610303780938 -0.1874041802288657 0.6898649756490857 -0.7066995161370085 -0.3328394342728472 0.6243346097123314 0.7066995161370085 0.3328394342728472 -0.6243346097123314 0.6992610303780938 0.1874041802288657 -0.6898649756490857 0.706699211393621 0.332866770111896 -0.6243203808709985 -0.038009535614359 0.8723927326412684 0.4873255536467188 0.038009535614359 -0.8723927326412684 -0.4873255536467188 -0.6961182166882092 -0.4697752474880487 0.5428910067797866 0.6961182166882092 0.4697752474880487 -0.5428910067797866 -0.8876323827149847 0.1162542163379045 -0.4456385422507556 0.8876323827149847 -0.1162542163379045 0.4456385422507556 -0.06016248758640132 0.7467500003972328 -0.6623782242753371 0.06016248758640132 -0.7467500003972328 0.6623782242753371 -0.9245527864503199 0.237309528475381 0.298138110213608 0.9245527864503199 -0.237309528475381 -0.298138110213608 -0.5139497895077154 -0.4058857625891543 0.755719763928664 0.5139497895077154 0.4058857625891543 -0.755719763928664 -0.0600348953330893 -0.8956050067033663 0.4407805387153662 0.0600348953330893 0.8956050067033663 -0.4407805387153662 -0.515859789786745 0.8519771407680433 -0.08957471121854281 0.515859789786745 -0.8519771407680433 0.08957471121854281 -0.9272834517509151 0.1632925520749501 0.3368693256230941 0.9272834517509151 -0.1632925520749501 -0.3368693256230941 -0.9059645702483528 -0.4228100787491342 0.02144375813304393 0.9059645702483528 0.4228100787491342 -0.02144375813304393 -0.04998584997638523 0.03649578989508206 0.9980828984218056 0.04998584997638523 -0.03649578989508206 -0.9980828984218056 -0.9111165739877291 -0.4120009636975097 -0.01103605532726058 -0.9026800271055669 -0.4300978238059344 -0.01358788512213859 -0.9126672826667309 -0.4084995448882047 -0.01290554050999234 0.9126672826667309 0.4084995448882047 0.01290554050999234 0.9026800271055669 0.4300978238059344 0.01358788512213859 0.9111165739877291 0.4120009636975097 0.01103605532726058 -0.9164192555908047 -0.4001603245189633 -0.006889315152686308 0.9164192555908047 0.4001603245189633 0.006889315152686308 -0.9098768749122155 -0.4144813710644892 0.01814567553114639 -0.9100128209423325 -0.4141053938628353 0.01983402365341829 0.9100128209423325 0.4141053938628353 -0.01983402365341829 0.9098768749122155 0.4144813710644892 -0.01814567553114639 -0.05007447950133898 -0.04460336033844332 -0.9977490098963712 0.05007447950133898 0.04460336033844332 0.9977490098963712 -0.05223146845994098 -0.8838556721519534 -0.4648344054685892 0.05223146845994098 0.8838556721519534 0.4648344054685892 -0.9150871129800877 0.09156365276906278 -0.3927234054004866 -0.9134603460440244 0.100090271838512 -0.3944263349326765 -0.9055099122664467 0.08478975686936037 -0.415767357926577 0.9055099122664467 -0.08478975686936037 0.415767357926577 0.9134603460440244 -0.100090271838512 0.3944263349326765 0.9150871129800877 -0.09156365276906278 0.3927234054004866 -0.8628976978143381 0.3867850561445824 -0.3252766260430459 0.8628976978143381 -0.3867850561445824 0.3252766260430459 -0.9156800465471477 0.12306795282666 0.3826020535000676 -0.8250636447121634 0.1563131469686213 0.542988197163665 -0.9158353220314106 0.1680129671192036 0.3647153764230731 0.9158353220314106 -0.1680129671192036 -0.3647153764230731 0.8250636447121634 -0.1563131469686213 -0.542988197163665 0.9156800465471477 -0.12306795282666 -0.3826020535000676 -0.9301712002434255 0.04356903436083521 0.3645315863989973 0.9301712002434255 -0.04356903436083521 -0.3645315863989973 -0.9098752187950685 0.1899053550703858 -0.3688672421593123 -0.9102915714758219 0.1919571037046917 -0.3667720344265427 0.9102915714758219 -0.1919571037046917 0.3667720344265427 0.9098752187950685 -0.1899053550703858 0.3688672421593123 -0.05002206568014039 0.8883803733443121 0.4563749611905901 0.05002206568014039 -0.8883803733443121 -0.4563749611905901 -0.9152454586525087 -0.3912460761204535 0.09618866012325544 -0.9335057704990215 -0.3295072998576136 0.1413927713342278 -0.9161764556186254 -0.3981519670093227 0.04577896172588378 0.9161764556186254 0.3981519670093227 -0.04577896172588378 0.9335057704990215 0.3295072998576136 -0.1413927713342278 0.9152454586525087 0.3912460761204535 -0.09618866012325544 -0.8008752262028298 -0.5581038891156944 0.2170689314676397 0.8008752262028298 0.5581038891156944 -0.2170689314676397 -0.9078252336262972 0.2546053228708254 -0.3332108563015343 0.9078252336262972 -0.2546053228708254 0.3332108563015343 -0.06214391660331564 0.7497897154320584 -0.6587514829292707 0.06214391660331564 -0.7497897154320584 0.6587514829292707 -0.9105068842497451 0.232294596580093 0.3420766495005371 0.9105068842497451 -0.232294596580093 -0.3420766495005371 -0.5636529765645513 -0.1834260551652416 0.805388232032502 0.5636529765645513 0.1834260551652416 -0.805388232032502 -0.06204321152616367 -0.8915755561120776 0.4486019033028719 0.06204321152616367 0.8915755561120776 -0.4486019033028719 -0.563551722335448 0.8122020272639635 0.1507890021223632 0.563551722335448 -0.8122020272639635 -0.1507890021223632 -0.9128754411958339 0.2045282989941302 0.3533080861968483 0.9128754411958339 -0.2045282989941302 -0.3533080861968483 -0.8841694971092278 -0.4670196417475235 0.01170276051322128 0.8841694971092278 0.4670196417475235 -0.01170276051322128 -0.6099115313195107 0.7918454994605457 -0.03144247044315008 -0.6271806346804609 0.7782902294104336 -0.0301458170575845 -0.7948062792220184 0.5103440598305962 -0.328377707990168 0.7948062792220184 -0.5103440598305962 0.328377707990168 0.6271806346804609 -0.7782902294104336 0.0301458170575845 0.6099115313195107 -0.7918454994605457 0.03144247044315008 -0.06757420297446912 0.1542219217613901 0.9857227429356539 0.06757420297446912 -0.1542219217613901 -0.9857227429356539 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 -0.9173919056680412 -0.396652180679767 0.03254441544636197 0.9173919056680412 0.396652180679767 -0.03254441544636197 -0.7044687220678403 0.6666170076972114 0.2436094921732724 0.7044687220678403 -0.6666170076972114 -0.2436094921732724 -0.9056948139282527 -0.4239285587280207 -0.001217012017516861 0.9056948139282527 0.4239285587280207 0.001217012017516861 -0.9062955794800263 -0.4218840716820903 0.02534073155818777 0.9062955794800263 0.4218840716820903 -0.02534073155818777 -0.9178702577263617 -0.3968043330700363 -0.007778896977463935 0.9178702577263617 0.3968043330700363 0.007778896977463935 -0.0673402010633347 0.03284261300743482 -0.9971893802541189 0.0673402010633347 -0.03284261300743482 0.9971893802541189 -0.06783519718058229 -0.9323282921296917 -0.3551933863657993 0.06783519718058229 0.9323282921296917 0.3551933863657993 -0.9036091026635394 0.0556782963512844 -0.424724047940556 0.9036091026635394 -0.0556782963512844 0.424724047940556 -0.9151772240300315 0.1669447966678817 -0.3668515823629565 0.9151772240300315 -0.1669447966678817 0.3668515823629565 -0.6447186628852124 0.6879675290323077 0.3332244359657386 -0.6297975146368566 0.6855810967237255 0.3651488057933807 -0.5462375627474104 0.7832296524327782 0.2969441641012638 0.5462375627474104 -0.7832296524327782 -0.2969441641012638 0.6297975146368566 -0.6855810967237255 -0.3651488057933807 0.6447186628852124 -0.6879675290323077 -0.3332244359657386 -0.8004665242590809 0.1327927671656561 0.584482184954404 0.8004665242590809 -0.1327927671656561 -0.584482184954404 -0.9178727869669794 0.2036829255299642 -0.3406212160054408 0.9178727869669794 -0.2036829255299642 0.3406212160054408 -0.06731641938335971 0.8494783472765206 0.5233116062058579 0.06731641938335971 -0.8494783472765206 -0.5233116062058579 -0.7668641844162472 -0.5810340615428355 0.2726146400812705 0.7668641844162472 0.5810340615428355 -0.2726146400812705 -0.6476791120465277 -0.7033306111846984 -0.2929809194967823 -0.6450470615181747 -0.7070854542103706 -0.2897316842716416 -0.6233448385994473 -0.603445758421776 -0.4972870688387107 0.6233448385994473 0.603445758421776 0.4972870688387107 0.6450470615181747 0.7070854542103706 0.2897316842716416 0.6476791120465277 0.7033306111846984 0.2929809194967823 -0.0732053161087646 0.6786547872505393 -0.7308000146656684 0.0732053161087646 -0.6786547872505393 0.7308000146656684 -0.9271360714165975 0.212632426034943 0.3085549488773313 0.9271360714165975 -0.212632426034943 -0.3085549488773313 -0.5682440159721127 -0.2499810897182357 0.7839695103096603 0.5682440159721127 0.2499810897182357 -0.7839695103096603 -0.07326583168045271 -0.9382150080750226 0.3382080964893607 0.07326583168045271 0.9382150080750226 -0.3382080964893607 -0.5680807927105938 0.8189688158964524 0.08108200504714996 0.5680807927105938 -0.8189688158964524 -0.08108200504714996 -0.927548465775947 0.18590322006679 0.3241817953023973 0.927548465775947 -0.18590322006679 -0.3241817953023973 -0.8928491632893021 -0.4470013707692716 0.05486479876920774 0.8928491632893021 0.4470013707692716 -0.05486479876920774 -0.7930586724642184 0.5380222435700273 -0.2856396461508205 -0.6779678389035451 0.5914850813119577 -0.4364687938419465 0.6779678389035451 -0.5914850813119577 0.4364687938419465 0.7930586724642184 -0.5380222435700273 0.2856396461508205 -0.06837946245005622 0.133948004867257 0.9886264112935294 0.06837946245005622 -0.133948004867257 -0.9886264112935294 -0.9187989142657232 -0.3929531117095517 0.0373685314390171 0.9187989142657232 0.3929531117095517 -0.0373685314390171 -0.6084903667744845 -0.3361198159561551 -0.7188622558350478 -0.5626671069308074 -0.09424735772971241 -0.8212935908303943 -0.5792112105076253 -0.03535317024093707 -0.8144105395782932 0.5792112105076253 0.03535317024093707 0.8144105395782932 0.5626671069308074 0.09424735772971241 0.8212935908303943 0.6084903667744845 0.3361198159561551 0.7188622558350478 -0.5114901394861176 -0.3977120680449375 -0.7617105409142576 -0.6142586567780607 -0.3121905317741047 -0.7247229639274684 0.6142586567780607 0.3121905317741047 0.7247229639274684 0.5114901394861176 0.3977120680449375 0.7617105409142576 -0.7165913554401721 0.6650103775153866 0.2103759185488212 0.7165913554401721 -0.6650103775153866 -0.2103759185488212 -0.764937702624227 0.5192485317920021 0.3811184505318785 0.764937702624227 -0.5192485317920021 -0.3811184505318785 -0.5174518251755897 -0.2411286674177418 0.8210362807889765 -0.6030031272843839 -0.3014611009609044 0.7385854270784746 -0.5301106299440702 -0.2511652486673166 0.809875754595843 0.5301106299440702 0.2511652486673166 -0.809875754595843 0.6030031272843839 0.3014611009609044 -0.7385854270784746 0.5174518251755897 0.2411286674177418 -0.8210362807889765 -0.5145052688849753 -0.2999231163421164 0.803324624652595 -0.6060304150691775 -0.3080632070317224 0.7333649817685672 0.6060304150691775 0.3080632070317224 -0.7333649817685672 0.5145052688849753 0.2999231163421164 -0.803324624652595 -0.9180481665079123 -0.3962927934772661 -0.01181464385606148 0.9180481665079123 0.3962927934772661 0.01181464385606148 -0.06822609440622343 0.01557927206212744 -0.9975482375925926 0.06822609440622343 -0.01557927206212744 0.9975482375925926 -0.06836592527621122 -0.9248117108838933 -0.374231745945121 0.06836592527621122 0.9248117108838933 0.374231745945121 -0.9159377876348976 0.1653334364994017 -0.3656813147506822 0.9159377876348976 -0.1653334364994017 0.3656813147506822 -0.5557652605442751 0.7376308132429826 0.3834393805109877 -0.6049336713798291 0.7946676713190241 0.05058206590601672 0.6049336713798291 -0.7946676713190241 -0.05058206590601672 0.5557652605442751 -0.7376308132429826 -0.3834393805109877 -0.6114792617679662 0.7887888748458873 0.06249178623677078 -0.5113431291935486 0.8587529234400222 0.03273561836539834 0.5113431291935486 -0.8587529234400222 -0.03273561836539834 0.6114792617679662 -0.7887888748458873 -0.06249178623677078 -0.6084825682336931 -0.495113360886253 -0.6201707216788357 -0.6410831753865172 -0.6305734637185176 -0.4374808213972034 0.6410831753865172 0.6305734637185176 0.4374808213972034 0.6084825682336931 0.495113360886253 0.6201707216788357 -0.5145324763372529 -0.5486089202616341 -0.6590027188135252 -0.6086877370165386 -0.4987726994136522 -0.6170291995726814 0.6086877370165386 0.4987726994136522 0.6170291995726814 0.5145324763372529 0.5486089202616341 0.6590027188135252 -0.9180510116488734 0.2069327617052255 -0.3381732871525023 0.9180510116488734 -0.2069327617052255 0.3381732871525023 -0.06820506512298212 0.8583605711733054 0.5084930667635563 0.06820506512298212 -0.8583605711733054 -0.5084930667635563 -0.07788897801981856 0.7203251955069255 -0.6892495337836203 0.07788897801981856 -0.7203251955069255 0.6892495337836203 -0.9186236678224693 0.2137604419261941 0.3323206740242198 0.9186236678224693 -0.2137604419261941 -0.3323206740242198 -0.5912354405693278 -0.06373945870929254 0.8039763275235403 0.5912354405693278 0.06373945870929254 -0.8039763275235403 -0.07801011213032839 -0.9149104860515087 0.3960469983706556 0.07801011213032839 0.9149104860515087 -0.3960469983706556 -0.5911901739412696 0.7634359260444917 0.2601149074157052 0.5911901739412696 -0.7634359260444917 -0.2601149074157052 -0.918427191400784 0.2082707995037445 0.3363253903138127 0.918427191400784 -0.2082707995037445 -0.3363253903138127 -0.5552116476461365 0.1310993066410967 -0.8213117545221707 -0.5611802421407521 0.1223351114562133 -0.8186029906712061 0.5611802421407521 -0.1223351114562133 0.8186029906712061 0.5552116476461365 -0.1310993066410967 0.8213117545221707 -0.6408955186930352 0.6368247591987463 -0.4286107327058484 0.6408955186930352 -0.6368247591987463 0.4286107327058484 -0.06018780181180793 0.1916292067335681 0.9796201690654016 0.06018780181180793 -0.1916292067335681 -0.9796201690654016 -0.9294544655857993 -0.3596552207152826 0.08223453419858177 0.9294544655857993 0.3596552207152826 -0.08223453419858177 -0.5119734798882151 -0.3801411073322832 -0.7703089603576846 0.5119734798882151 0.3801411073322832 0.7703089603576846 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 -0.7827724052343109 0.4885261484066231 0.3854991101503113 0.7827724052343109 -0.4885261484066231 -0.3854991101503113 -0.6840994787240873 0.1363722874922993 0.7165266934410397 -0.6147039237146543 0.238512470860314 0.7518316882214503 -0.6653394530452826 0.165916713449703 0.7278702194893354 0.6653394530452826 -0.165916713449703 -0.7278702194893354 0.6147039237146543 -0.238512470860314 -0.7518316882214503 0.6840994787240873 -0.1363722874922993 -0.7165266934410397 -0.5846765150393855 0.2775554521153094 0.7623098738455811 0.5846765150393855 -0.2775554521153094 -0.7623098738455811 -0.5144696680899629 -0.2827869085697489 0.8095384641615049 0.5144696680899629 0.2827869085697489 -0.8095384641615049 -0.9325779507189076 -0.3562891568629708 -0.0579344675887886 0.9325779507189076 0.3562891568629708 0.0579344675887886 -0.06008517546283819 0.07478840775462761 -0.9953875957410397 0.06008517546283819 -0.07478840775462761 0.9953875957410397 -0.06016537746400757 -0.9456188928128914 -0.3196639437126669 0.06016537746400757 0.9456188928128914 0.3196639437126669 -0.9294575191574707 0.1069983269701304 -0.3530723411812842 0.9294575191574707 -0.1069983269701304 0.3530723411812842 -0.5118224780352834 0.8574987258211545 0.05228466498810563 0.5118224780352834 -0.8574987258211545 -0.05228466498810563 -0.514493135926281 -0.5625126092319087 -0.6472065957172033 0.514493135926281 0.5625126092319087 0.6472065957172033 -0.9325781432366856 0.2270966540840191 -0.280579964468348 0.9325781432366856 -0.2270966540840191 0.280579964468348 -0.06002763057924118 0.8270709642152402 0.5588830859125324 0.06002763057924118 -0.8270709642152402 -0.5588830859125324 -0.07605661316331486 0.6351470128865732 -0.7686375372146413 0.07605661316331486 -0.6351470128865732 0.7686375372146413 -0.9208305953623421 0.2088271071494026 0.3293360805685381 0.9208305953623421 -0.2088271071494026 -0.3293360805685381 -0.8621478316094056 0.2290208849793479 0.4519408707944841 0.8621478316094056 -0.2290208849793479 -0.4519408707944841 -0.6042033250166701 -0.04459964845335795 0.7955810539452516 0.6042033250166701 0.04459964845335795 -0.7955810539452516 -0.0760742450757196 -0.9574640025019078 0.27834401942414 0.0760742450757196 0.9574640025019078 -0.27834401942414 -0.6041792882639404 0.748119712716962 0.2743798153603302 0.6041792882639404 -0.748119712716962 -0.2743798153603302 -0.8666360269162206 0.3018712000249856 0.3972603371170386 0.8666360269162206 -0.3018712000249856 -0.3972603371170386 -0.06215953815997215 0.1869805446352334 0.9803950569763448 0.06215953815997215 -0.1869805446352334 -0.9803950569763448 -0.9251817572127729 -0.3717791800066462 0.07628209117657712 0.9251817572127729 0.3717791800066462 -0.07628209117657712 -0.5094391278008816 -0.4503793007937866 -0.7332327464604789 0.5094391278008816 0.4503793007937866 0.7332327464604789 -0.5107042903204709 -0.3659351517327707 0.7779926687151866 0.5107042903204709 0.3659351517327707 -0.7779926687151866 -0.9295512194985515 -0.3651508688837732 -0.05098404929172666 0.9295512194985515 0.3651508688837732 0.05098404929172666 -0.06207876760437363 0.06602698698797134 -0.9958848646314555 0.06207876760437363 -0.06602698698797134 0.9958848646314555 -0.06213739111210562 -0.9439802191053086 -0.3240991986470726 0.06213739111210562 0.9439802191053086 0.3240991986470726 -0.9251831321196651 0.1181898446877643 -0.3606484890498343 0.9251831321196651 -0.1181898446877643 0.3606484890498343 -0.5092947909307791 0.8601651410365301 -0.027106199962007 0.5092947909307791 -0.8601651410365301 0.027106199962007 -0.5105354677853689 -0.4940289674119409 -0.703767657320984 0.5105354677853689 0.4940289674119409 0.703767657320984 -0.9295504993104691 0.2254579596928901 -0.2917268887894581 0.9295504993104691 -0.2254579596928901 0.2917268887894581 -0.06203113682986364 0.8318660453007373 0.551498885528617 0.06203113682986364 -0.8318660453007373 -0.551498885528617 -0.07783629645161526 0.6386398399740993 -0.7655590543861087 0.07783629645161526 -0.6386398399740993 0.7655590543861087 -0.9138229107542849 0.2183939193754576 0.3423912729033732 0.9138229107542849 -0.2183939193754576 -0.3423912729033732 -0.4787989807562905 0.4668933018719641 0.7434797782682678 -0.5524074943628621 0.4050841393154985 0.7285278307976754 -0.5345884589721218 0.4034395796788172 0.7425979296243637 0.5345884589721218 -0.4034395796788172 -0.7425979296243637 0.5524074943628621 -0.4050841393154985 -0.7285278307976754 0.4787989807562905 -0.4668933018719641 -0.7434797782682678 -0.05182109757684491 -0.4514163579221916 -0.8908074122088315 -0.06712979634411644 -0.500579809610561 -0.8630836834589403 -0.06467178653120824 -0.4384108387102168 -0.8964449210789618 0.06467178653120824 0.4384108387102168 0.8964449210789618 0.06712979634411644 0.500579809610561 0.8630836834589403 0.05182109757684491 0.4514163579221916 0.8908074122088315 -0.07792118493082251 -0.9559677627777016 0.2829380240773106 0.07792118493082251 0.9559677627777016 -0.2829380240773106 -0.544217945097606 0.4868904901393766 0.6832016384974328 -0.5296654684248241 0.4971931921921262 0.687206971149242 0.5296654684248241 -0.4971931921921262 -0.687206971149242 0.544217945097606 -0.4868904901393766 -0.6832016384974328 -0.06556201067145182 -0.5654470917961071 -0.8221746828600607 -0.04893206091694585 -0.6042992393415967 -0.7952534707535631 -0.06331144630405373 -0.6168950586009265 -0.784494835827903 0.06331144630405373 0.6168950586009265 0.784494835827903 0.04893206091694585 0.6042992393415967 0.7952534707535631 0.06556201067145182 0.5654470917961071 0.8221746828600607 -0.07317435867671789 0.2852169995987944 0.9556656195407013 0.07317435867671789 -0.2852169995987944 -0.9556656195407013 -0.9245447371101613 -0.3773552231352665 0.05310428094265093 0.9245447371101613 0.3773552231352665 -0.05310428094265093 -0.5139838480450424 -0.4451092818304552 -0.7332791631958371 0.5139838480450424 0.4451092818304552 0.7332791631958371 -0.5157659772286117 -0.3552253929522392 0.7796155314867339 0.5157659772286117 0.3552253929522392 -0.7796155314867339 -0.9272834542399263 -0.373133423886244 -0.03027942324085647 0.9272834542399263 0.373133423886244 0.03027942324085647 -0.07322677161913004 0.1848207446832606 -0.980040372766839 0.07322677161913004 -0.1848207446832606 0.980040372766839 -0.07315269852634401 -0.9712587534489104 -0.2265063278303333 0.07315269852634401 0.9712587534489104 0.2265063278303333 -0.924551007271137 0.1411219268150242 -0.3539633268093474 0.924551007271137 -0.1411219268150242 0.3539633268093474 -0.5138680084800981 0.857573090590434 -0.02254027852243685 0.5138680084800981 -0.857573090590434 0.02254027852243685 -0.5156107881351871 -0.500749424973523 -0.6952665161988583 0.5156107881351871 0.500749424973523 0.6952665161988583 -0.9272779039266812 0.2114525434248893 -0.3089393318573824 0.9272779039266812 -0.2114525434248893 0.3089393318573824 -0.07323009189041933 0.7592000544660637 0.6467245402336659 0.07323009189041933 -0.7592000544660637 -0.6467245402336659 -0.07183856815325576 -0.5367001228199709 -0.8407093423358147 -0.07384419633644265 -0.4918662305097807 -0.8675336569560422 0.07384419633644265 0.4918662305097807 0.8675336569560422 0.07183856815325576 0.5367001228199709 0.8407093423358147 -0.4571428387213803 0.4708925370562133 0.7545068876759978 0.4571428387213803 -0.4708925370562133 -0.7545068876759978 -0.07317072936235344 -0.5741876618940569 -0.815447468138333 0.07317072936235344 0.5741876618940569 0.815447468138333 -0.07786128607335852 0.2282437525088427 0.9704856565512368 0.07786128607335852 -0.2282437525088427 -0.9704856565512368 -0.910518420051696 -0.4126184541394979 0.02649939716473525 0.910518420051696 0.4126184541394979 -0.02649939716473525 -0.5636615363401881 -0.6008612160141833 -0.5667905005736916 0.5636615363401881 0.6008612160141833 0.5667905005736916 -0.5636121577228427 -0.5422177340050004 0.6231703335344874 0.5636121577228427 0.5422177340050004 -0.6231703335344874 -0.9128840725037823 -0.4082071319792981 -0.003099608063125092 0.9128840725037823 0.4082071319792981 0.003099608063125092 -0.07794444694945403 0.123244223494892 -0.9893106309773917 0.07794444694945403 -0.123244223494892 0.9893106309773917 -0.07784980261668228 -0.9558510645399539 -0.2833516378113609 0.07784980261668228 0.9558510645399539 0.2833516378113609 -0.910506959134482 0.181741629865931 -0.3714122471612288 0.910506959134482 -0.181741629865931 0.3714122471612288 -0.5638170052827519 0.7901416633769365 -0.2403883032718469 0.5638170052827519 -0.7901416633769365 0.2403883032718469 -0.5636943070143379 -0.2718931151353536 -0.7799505511130938 0.5636943070143379 0.2718931151353536 0.7799505511130938 -0.9128734660900318 0.2052562609143245 -0.3528907795115115 0.9128734660900318 -0.2052562609143245 0.3528907795115115 -0.07796022575618454 0.7978022440562502 0.597857660801345 0.07796022575618454 -0.7978022440562502 -0.597857660801345 -0.07293523093475945 -0.536747093346532 -0.840584921273599 0.07293523093475945 0.536747093346532 0.840584921273599 -0.07604770112068858 0.3398450615732017 0.9374017715358579 0.07604770112068858 -0.3398450615732017 -0.9374017715358579 -0.9271339304211422 -0.3737861328003613 0.02658198615595467 0.9271339304211422 0.3737861328003613 -0.02658198615595467 -0.56821021807484 -0.5485574908562504 -0.6133692422194298 0.56821021807484 0.5485574908562504 0.6133692422194298 -0.5681978066790452 -0.4856242309667716 0.664319470422969 0.5681978066790452 0.4856242309667716 -0.664319470422969 -0.9275538218035446 -0.3736639910290091 -0.004373724489596332 0.9275538218035446 0.3736639910290091 0.004373724489596332 -0.07601198010694718 0.2461619642348556 -0.9662434818637893 0.07601198010694718 -0.2461619642348556 0.9662434818637893 -0.07603488379294941 -0.9824986161570616 -0.1700445991381432 0.07603488379294941 0.9824986161570616 0.1700445991381432 -0.9271175633615203 0.1624153764230984 -0.3377488256203726 0.9271175633615203 -0.1624153764230984 0.3377488256203726 -0.5684223245221804 0.8045495901676812 -0.1720349323417111 0.5684223245221804 -0.8045495901676812 0.1720349323417111 -0.5682562327497746 -0.3357303571020874 -0.7512456197949771 0.5682562327497746 0.3357303571020874 0.7512456197949771 -0.9275500865344358 0.1892090791949394 -0.3222588421132365 0.9275500865344358 -0.1892090791949394 0.3222588421132365 -0.07602359932507562 0.7168034810914563 0.6931184471941507 0.07602359932507562 -0.7168034810914563 -0.6931184471941507 -0.07788522860997994 0.33527590521265 0.9388950732367325 0.07788522860997994 -0.33527590521265 -0.9388950732367325 -0.8622039110363094 -0.5055471860195102 -0.0320383910558382 -0.9186365967429201 -0.3947997214296697 0.01549138740205839 0.9186365967429201 0.3947997214296697 -0.01549138740205839 0.8622039110363094 0.5055471860195102 0.0320383910558382 -0.5911920785065153 -0.6603884431093904 -0.4630108319669223 0.5911920785065153 0.6603884431093904 0.4630108319669223 -0.5913185191009809 -0.6117206410194161 0.5254905006934163 0.5913185191009809 0.6117206410194161 -0.5254905006934163 -0.9184398770765989 -0.3954642704709246 0.008729431620756456 0.9184398770765989 0.3954642704709246 -0.008729431620756456 -0.8666694425626617 -0.4954474410657432 0.05844579086240863 0.8666694425626617 0.4954474410657432 -0.05844579086240863 -0.07784647127831051 0.2414764141318304 -0.967279209084713 0.07784647127831051 -0.2414764141318304 0.967279209084713 -0.07789085419739079 -0.9815182421211756 -0.1747997574819787 0.07789085419739079 0.9815182421211756 0.1747997574819787 -0.8621876343713294 0.2786709173777909 -0.4230543735088806 -0.9186099994929518 0.1824781962483763 -0.3505101663653969 0.9186099994929518 -0.1824781962483763 0.3505101663653969 0.8621876343713294 -0.2786709173777909 0.4230543735088806 -0.5914357760694816 0.729508062189148 -0.3435428793995359 0.5914357760694816 -0.729508062189148 0.3435428793995359 -0.5912701432089158 -0.1528401862184598 -0.7918582545041852 0.5912701432089158 0.1528401862184598 0.7918582545041852 -0.9184311868293691 0.1886543416202624 -0.3476977055532891 0.9184311868293691 -0.1886543416202624 0.3476977055532891 -0.8666393501579606 0.1951110697023345 -0.45920355751823 0.8666393501579606 -0.1951110697023345 0.45920355751823 -0.07785123444427876 0.7200157100790545 0.6895770896243993 0.07785123444427876 -0.7200157100790545 -0.6895770896243993 -0.05175606910108979 0.9966603560649529 0.06316204524621295 -0.06710589855194701 0.997722592184132 0.006813767306884728 -0.06463126882157386 0.9949142282440756 0.07725592228437379 0.06463126882157386 -0.9949142282440756 -0.07725592228437379 0.06710589855194701 -0.997722592184132 -0.006813767306884728 0.05175606910108979 -0.9966603560649529 -0.06316204524621295 -0.9208481389957095 -0.3897131234716203 0.01274308840634989 0.9208481389957095 0.3897131234716203 -0.01274308840634989 -0.6041265859342664 -0.6628633493676761 -0.4423157788644598 0.6041265859342664 0.6628633493676761 0.4423157788644598 -0.6043510956270248 -0.616247919108277 0.504973519512789 0.6043510956270248 0.616247919108277 -0.504973519512789 -0.04887595123153411 0.9919269240416067 -0.1170133272433938 -0.06320711920580965 0.9890618334347577 -0.1332724642391598 -0.06544351105841843 0.9954089662035404 -0.06984366014138725 0.06544351105841843 -0.9954089662035404 0.06984366014138725 0.06320711920580965 -0.9890618334347577 0.1332724642391598 0.04887595123153411 -0.9919269240416067 0.1170133272433938 -0.05176292428173093 -0.5493551863579695 0.8339840999032322 -0.06715572110431041 -0.500971452014702 0.8628543987192979 -0.06467060858579891 -0.5607537460364631 0.8254531777703786 0.06467060858579891 0.5607537460364631 -0.8254531777703786 0.06715572110431041 0.500971452014702 -0.8628543987192979 0.05176292428173093 0.5493551863579695 -0.8339840999032322 -0.9208229918529777 0.1823261521974405 -0.3447349589174365 0.9208229918529777 -0.1823261521974405 0.3447349589174365 -0.6044052953115482 0.7127115897051575 -0.3560006023861583 0.6044052953115482 -0.7127115897051575 0.3560006023861583 -0.6042208852079725 -0.1329109324677061 -0.7856537442850122 0.6042208852079725 0.1329109324677061 0.7856537442850122 -0.06555032380382546 -0.4332602793100031 0.8988819084960116 -0.0489311245994604 -0.3905865829625489 0.9192648509842373 -0.06330197836798127 -0.3750046590734298 0.9248591055982096 0.06330197836798127 0.3750046590734298 -0.9248591055982096 0.0489311245994604 0.3905865829625489 -0.9192648509842373 0.06555032380382546 0.4332602793100031 -0.8988819084960116 -0.07380847313489657 0.9971350212817937 0.01655471615135637 0.07380847313489657 -0.9971350212817937 -0.01655471615135637 -0.9138485014307795 -0.4058014096885466 0.01435730920149108 0.9138485014307795 0.4058014096885466 -0.01435730920149108 -0.5345304218766152 -0.844640307144783 -0.02932540937096353 -0.4787759179973137 -0.8775837507625626 0.02490744353284692 -0.5523468059055555 -0.8333556620290644 -0.020768884660241 0.5523468059055555 0.8333556620290644 0.020768884660241 0.4787759179973137 0.8775837507625626 -0.02490744353284692 0.5345304218766152 0.844640307144783 0.02932540937096353 -0.529810937761632 -0.8443800785050153 0.07951511335591559 -0.5444019885151931 -0.8356723357134307 0.07265137454971396 0.5444019885151931 0.8356723357134307 -0.07265137454971396 0.529810937761632 0.8443800785050153 -0.07951511335591559 -0.0730429405716595 0.9940521145746529 -0.08077822938333205 0.0730429405716595 -0.9940521145746529 0.08077822938333205 -0.07388662353121546 -0.5091637543312346 0.8574922962560529 0.07388662353121546 0.5091637543312346 -0.8574922962560529 -0.9138168602334956 0.1889226119874796 -0.3595093776702133 0.9138168602334956 -0.1889226119874796 0.3595093776702133 -0.4788900951458034 0.4137789169757429 -0.7742423939811258 -0.5525632992352004 0.4314208972124874 -0.7131267838096413 -0.5347331070637321 0.444464319308261 -0.7186876742172578 0.5347331070637321 -0.444464319308261 0.7186876742172578 0.5525632992352004 -0.4314208972124874 0.7131267838096413 0.4788900951458034 -0.4137789169757429 0.7742423939811258 -0.5443231062547118 0.3515163285545688 -0.7616748825822854 -0.5297627038662381 0.3498802766270966 -0.7726158616153819 0.5297627038662381 -0.3498802766270966 0.7726158616153819 0.5443231062547118 -0.3515163285545688 0.7616748825822854 -0.0731648938415657 -0.4230767780001828 0.9031350608996067 0.0731648938415657 0.4230767780001828 -0.9031350608996067 -0.0717598100444269 0.9967833931070906 -0.03568468702823421 0.0717598100444269 -0.9967833931070906 0.03568468702823421 -0.4570938974721754 -0.8891267751684072 0.02277600870049867 0.4570938974721754 0.8891267751684072 -0.02277600870049867 -0.07186207300492192 -0.4636242428793894 0.8831129055097929 0.07186207300492192 0.4636242428793894 -0.8831129055097929 -0.4572184704652873 0.4213675234050111 -0.7831990043947393 0.4572184704652873 -0.4213675234050111 0.7831990043947393 -0.07284731910756336 0.9966994105687711 -0.03582670890139447 0.07284731910756336 -0.9966994105687711 0.03582670890139447 -0.07295841153948711 -0.4634759310171773 0.8831008614837808 0.07295841153948711 0.4634759310171773 -0.8831008614837808</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID796\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"1235\" source=\"#ID799\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2470\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID799\">-2.382152232341637 0.8114993214080721 -2.305498782632804 0.7612421416708729 -2.661799060038712 0.5143268679627622 -1.10929632536876 1.865939697634436 -0.7402787510683859 2.096312634686256 -1.041160221479432 1.808590267548293 4.117109534675268 -4.221737622712427 3.770492703260866 -4.471450631513128 2.972256478969288 -4.376182215124748 -2.64317861492822 0.5288504886875456 -2.741971876010438 0.5644427639446815 -2.388085444237092 0.8134970265397964 -0.5108777407253806 1.994641913414265 -0.4647338457287636 1.921831414400039 -0.8199817364353834 1.712364972440952 4.159072087260633 -3.60131408385592 4.008359773378214 -4.223632152308475 3.590480138856723 -4.394738788375328 3.720629425418393 -3.737994030932695 4.089733578634366 -4.1362612050151 2.944593614898622 -4.289383837459042 3.715949880857402 -4.664217122611951 3.577025552436587 -4.858740273202045 2.918110384210961 -4.566913844047221 -3.532893088158519 -1.405402268119589 -3.778377344265582 -1.567813990875131 -3.63466691595626 -1.375454603305033 2.166877960838995 -3.20534782375026 2.505112526826225 -2.980634682784841 2.016960844485938 -3.372595413195628 2.90664991550928 -2.831647031589939 3.161264493954209 -2.789679773232189 2.158320842907479 2.317355631430848 2.426208068189768 2.382798047632238 2.177397347012687 2.237394119727016 4.186501325658662 -3.604674619844945 3.619577955234709 -4.398837879978945 3.263520854441227 -3.993286695212771 4.264289486993383 -3.591368647410786 4.393196497476434 -4.169263296937372 4.118628753531486 -4.214430668958741 2.141709561156012 -2.539653586511744 1.338783932921017 -3.066679041718678 1.088541638290198 -2.918995386648729 3.705354160579695 -4.722111991503434 3.752219223354113 -4.925163319361463 3.043585516181242 -4.434309064416466 -4.720195001665112 -0.838111930340065 -4.87356633634843 -0.8206456622006494 -4.647535569853533 -0.6416093864536248 5.976463061569919 -4.01551000878934 5.700563982511904 -4.661067300428671 5.591129172591309 -4.47290649595115 0.4940113330114128 3.302791294675418 0.7020392817537015 3.483545504538939 0.733154928316176 3.383342872493777 2.984341750436177 -1.945595238278266 3.07355461487074 -2.178877951918392 2.134980860030076 -2.543645943407094 4.715175540128614 -4.237778325771608 4.486729766309145 -4.140997679661525 4.353781662995391 -3.563669890075839 6.229541255743985 -2.815692720273948 6.205863006664616 -3.061082790207338 5.39894081999101 -2.780519209470858 3.95954576161025 -4.766474747050036 4.226158437872415 -5.067116002014613 3.243896960758899 -4.281959803351813 -5.20917675816532 -4.076852570570276 -5.444027986460442 -4.257840651882353 -5.362925845386348 -4.061579228975656 -3.414236209071933 -5.48280054980703 -3.503674895768212 -5.500147149562402 -3.302965120206075 -5.295307391122558 7.153708221003003 -1.055334577185998 7.357365789459331 -1.181805828420435 7.060600724299492 -1.127963471288239 -6.376055494793524 -2.791910837103957 -6.376601944710836 -2.548300528389567 -5.546105656382263 -2.541558169230477 6.292020490288079 -3.896997050653707 6.001290330568972 -3.594786402053359 5.579123822736869 -2.942901892769273 -6.445697115556035 -0.5327398872694064 -5.639737196896117 -0.3708988937511936 -5.410310060843501 -1.264541462392171 -6.378040758730448 -0.5490869415448467 -6.402386873826202 0.3474497948727556 -5.548733127301645 -0.4984393686878871 6.249443067828077 -3.021812954622691 5.589949262777724 -3.009778769479917 5.436007331621839 -2.753141288256818 3.685386022701926 -5.416193428280835 3.550020822014475 -5.480747652159369 2.733685449622757 -4.60808068335111 -3.214384247080245 -6.200299681307078 -3.23901928547867 -5.834241632626324 -3.150145197377329 -5.815183648067049 7.37374899284945 -1.133457200799908 7.255757232167886 -1.180810893730796 7.077515231345002 -1.077833697990142 -5.813898093729755 -2.627781693529012 -6.473061319915687 -2.607393325339736 -5.64053701285209 -2.362387587081174 -4.1449948999066 -0.3925930562476963 -5.571323704244727 -0.4508006085162343 -5.590385402988608 0.4192953775659653 -6.420823099055467 0.4090219793829775 -5.571948609914557 -0.5184370324832719 -6.402434335445965 -0.5259414841779818 -6.412003022809788 0.3723260551637551 7.79264834779636 -3.094623924357429 7.386028045278803 -2.821643815884106 7.511011023866709 -2.787130807200926 5.288427740176394 -4.450421141627921 5.16365295085847 -4.520813777264999 4.528469987559812 -3.533326890439096 -6.177999987344328 -1.570835269398446 -6.43794403232774 -0.6842351375800343 -5.37737609444318 -1.393369944667684 -5.468981652152383 -0.9966139960495889 -5.627977588762684 -0.09354875387037062 -4.06048470052598 -0.8115314550383995 -5.604833719540404 -0.8427021686719978 -6.523407502400124 -0.04000140227339736 -5.698594924431132 0.04705198934153895 -3.819964906568851 -0.198740607318797 -3.710588442244218 0.7070679054892642 -3.595833115298375 -1.078161158264579 -3.273119380180543 1.535119347208355 -3.076513428396748 -0.1659543789840967 -3.030200242278591 -1.873660853038731 -2.887398122901175 -0.8793125957286936 -2.439402056737099 -1.517112239780935 -2.203293041006291 -2.500402028373014 -1.772319464308227 -2.022702851046091 -1.178273536083925 -2.907562735203924 -0.9454591957336178 -2.351161398673499 -0.0462380938019025 -3.05896025402176 -0.03227092295787773 -2.473295078857695 0.8861221859959634 -2.378246195955483 1.100337098236535 -2.939288573049616 1.728132329397168 -2.074478232231995 2.135972779385058 -2.5645770483233 2.418887774560047 -1.588964928439499 2.897061565363328 -0.9648552907429856 3.002871332391609 -1.96190235463934 3.120099824776935 -0.2576073983579654 3.397833450122788 1.436453299966811 3.584954115964931 -1.189073698497411 3.797178894091073 0.589535539530324 3.86146279790015 -0.3123520279787206 -2.989941374167471 0.5595534147310203 -2.635383615910281 1.232752438402079 -2.540424688596996 2.230643059343542 -2.044294447642872 1.793827010075304 -1.579665433403898 2.725371249155675 -1.269257263899759 2.192925190064263 -0.4762730165452944 2.975353590359535 -0.379127025517807 2.394587160073535 0.5470052852914087 2.380889252754579 0.6739441528367607 2.964104390912614 1.426866649410332 2.153052203845308 1.762515223752795 2.675938097440283 2.182281272233411 1.731316065892566 2.698888249206223 2.153148196856395 2.746116622930116 1.15315754419546 3.0682720466757 0.4699448618913633 6.262701037578077 -3.297688588377309 6.810870890825931 -4.291665963233803 5.603135835129864 -3.288385875698955 3.537805570138652 -5.322074800046389 4.499503752106183 -6.170792077931217 3.401754136409783 -5.385730003367606 -2.402367420971701 -6.32348935043586 -2.487130147304622 -6.36684873423582 -2.456301864786447 -5.979189118527012 -5.851137594154357 -2.991204346202717 -7.11732698224412 -3.953428325490446 -6.510171301073201 -2.96837143036549 -6.431600829084085 -0.5856926335526124 -6.465043856691065 0.3240294976779706 -5.60265637794168 -0.5278164021063335 -4.153220584432583 -0.5919371519429612 -5.633236098381424 0.2161519211681857 -4.209404235825325 0.3044258401130099 -5.686973105331986 0.2076154673473941 -4.263529414155157 0.3221991449134441 -4.215291073560992 -0.5744977462204292 -5.629668278170908 -0.6018165566198391 -6.481253406832044 0.2821448753630127 -5.65143262943119 0.3334005600536639 7.70924221545971 -3.086643914958204 7.611421202677152 -3.106627870969063 7.289855802678771 -2.825890216437976 5.307646526988149 -4.459574441591602 5.895028297840041 -5.457121340977217 5.18297450631685 -4.530079671339261 5.629008267869499 -0.7463477273334715 6.143014995752494 -1.761979428609921 5.332209067274681 -1.615896687539317 4.221778863882256 -0.1138895382488578 5.449746623983231 -1.157975509815105 4.036035568395636 -0.9993909140033963 -5.638210010572456 -0.5486783925207119 -4.250909299071609 -0.2815645921801652 -3.997216344816255 -1.156592358935419 -5.584920386969356 -0.7286636150463668 -5.649991922666122 0.162673834209167 -4.161558112449938 -0.6357893580252552 6.325862417864055 0.2471940347496744 6.275923150491728 -0.65523344044532 5.494720606752197 0.2501486147772298 6.324667251178918 0.3785027462624838 6.307487637225778 -0.5247153149898205 5.493856655715302 0.366706868280492 6.330840177740377 -0.4832391865050514 5.505412349689225 0.4046323204088624 6.335973878144486 0.4200649213385262 6.355104265392128 -0.4667206081220865 5.524514761868456 0.413796645671067 6.354965736662829 0.4299973635642851 6.348532651289016 -0.4826861760209525 5.518228264842925 0.4008358708994737 6.348686999878188 0.4271997584595754 6.402526849244486 -0.514599815300171 5.575015698521129 0.3688125470936636 6.405593025417301 0.3823184502673627 6.411353286003433 0.4000658934411254 6.402189221181026 -0.5113951445993928 5.580948395643242 0.4157367094855328 6.457616882721426 0.2866889367729694 6.428226229766665 -0.6163174962283112 5.626549839694851 0.2839681310038151 6.504640036469908 0.06882814165186642 6.425760748703323 -0.8323530921485491 5.679613144525984 0.09802792271163478 6.462225544659513 -0.479789751691096 6.259225536954721 -1.368874127389776 5.638390409749905 -0.3908745494751295 -5.574851926507346 -0.4467662664155951 -6.405189489514616 -0.4925506539050644 -6.409194594973165 0.4107466294511674 -5.552194299191942 -0.4361777819642201 -6.382694340672956 -0.479815042264443 -6.3822125066093 0.4234890959370029 -5.527660594977107 -0.4414161723271314 -6.358135509214947 -0.4841960030603822 -6.357692766381553 0.4191095339513883 -5.503241243690558 -0.4621172308995953 -6.333509171185731 -0.5054400229986481 -6.337686374565175 0.3978657857529473 -6.309573809879248 -0.5505412985441708 -6.324676198831939 0.3526571860783325 -5.479788392845236 -0.5041294043719613 2.727282558497929 2.374467822102313 2.682327380740597 2.134919811093426 1.745957532312295 2.657713232886528 -6.28355707143229 -0.6362917545517316 -6.324274572841182 0.2666680609225586 -5.455101643277436 -0.57908685677795 0.8867903543797634 3.118978236478919 1.753803744658647 2.655260171310598 0.6652336964723358 2.943428855169668 -6.107009504749997 -1.440571652735586 -6.327435422916969 -0.5524335438192431 -5.290951497203457 -1.319381353096898 7.047109981082493 -4.025925235254194 6.572423246359725 -4.03807808733024 5.762356183245927 -3.083708496260667 4.719319310056894 -6.012525550950048 4.559405230702663 -6.109249604868882 3.610847825014008 -5.236842748222333 -1.635076611744317 -7.643805512306598 -2.046393508680486 -6.553864915925065 -1.964009241795349 -6.507755706175733 -6.226933058893753 -4.35715210192923 -6.684777216062551 -4.368633898008876 -5.495336325949821 -3.347602026111755 -4.164155400215128 -0.4808138035478431 -5.59045265464766 -0.5707972914437972 -5.604000275338401 0.3645158178360241 8.498994210341262 -3.863426396329256 7.58708621916952 -3.010007229700875 7.684874037027289 -2.989922987339559 5.860507161178415 -5.472263804657364 5.717787806425276 -5.541268897230905 5.143033007068749 -4.539180625640339 5.615427661959771 -0.05307178236898648 5.490996361882291 -0.9480844056190318 4.192676241827535 0.04192978539679174 -6.371687425542625 0.05659531610126218 -5.545667306279297 0.1291291351249389 -5.462209449669895 -0.8043086080673315 5.523565805979221 0.4664539955697984 6.354207285310459 -0.4112716340542739 5.523758680554177 -0.4338833848854653 5.53167411224067 0.4777514955588634 6.366920291787105 -0.4012123226992183 5.536572228151663 -0.4226032985896472 6.384470114428415 -0.403345774636922 5.554125450147815 -0.4226259836262465 5.547326545969745 0.4777114329058925 6.394798530817934 -0.4242064713489063 5.564444714190893 -0.4525417513668846 5.559616742817855 0.4536184898915917 6.706382990873093 -1.992428992817538 6.734858187658725 -2.229716846200112 5.880914549031902 -2.06864522518943 6.426673737565221 -0.4286928413741457 5.59609063437345 -0.441977094805049 5.594342931635121 0.4536484752102395 4.127093708298099 0.349085374462541 5.554394599787321 0.3625400882458029 5.552652560288326 -0.5062900454127818 6.383108753397958 -0.5201741029379436 6.630766041321724 2.290072167503032 6.60870069498146 2.039406599150892 5.780362907360219 2.088063182125595 6.461347556712913 -0.5273102266094472 5.630277932583336 -0.5294891830228586 5.652179197504132 0.4063675696246454 6.471783918825218 -0.6694862709089748 5.646284167170914 -0.6502602675244906 5.689181062059775 0.241125792540077 5.705258546267622 0.04954383269713061 6.435385846454905 -0.8886697541752605 5.604943682381954 -0.8548758041057144 -5.61868898488491 -0.4874466767329562 -6.456279603494737 0.3681045028935301 -5.625878457091545 0.4128913173724724 -5.598883524092275 -0.4605082447537164 -6.428081916010963 0.3996480928002333 -5.597398384708466 0.4398433145490905 -5.576957820490299 -0.4488343226107577 -6.401896102512689 0.4147173528205499 -5.571119059021333 0.4515076979844473 -5.555720079221102 -0.4484087783848311 -6.379668149979191 0.417815089717694 -5.548918425932076 0.4519197748685152 -5.644588786272323 2.432043406180553 -6.475752441667305 2.404888014658125 -6.476678532968182 2.647031326878516 -5.537898422956329 -0.4559979435743079 -6.363430823466654 0.4123864931825314 -5.532783473477472 0.4443536015118346 2.52699327365733 4.053668724156345 3.232240892558104 3.344958568234572 2.254016958954333 3.634765079931456 -5.499906396557383 -0.4989705720211488 -6.344343569199598 0.3621523079421049 -5.513894893397796 0.3670495865317552 6.351232608300514 2.490855442909809 5.520765150887098 2.493018469052865 6.349136616735253 2.738226221440089 2.83617451174444 3.92667842082563 2.558079519991281 3.509863443645249 1.697980286874242 3.981481675466966 7.662203559623302 -4.913533654818638 6.581129811636943 -3.882599263004092 7.05576917080125 -3.869350706402243 4.858615578581932 -6.074245668090698 5.781796714671636 -6.755173925272217 4.699553073210266 -6.171834810212214 -2.923013648991004 -7.410697797244424 -3.004235976416077 -7.446203671646552 -3.154857143866117 -6.287097760729689 -7.233100912016699 -5.2780072099835 -6.696771126747163 -4.272424854255496 -6.238904897399809 -4.261501314141265 -4.160046578622444 -0.4737436785604704 -5.599138070426414 0.3723794843949643 -4.172281427259849 0.4236948597737338 8.583971388279348 -3.861854811376837 8.493484725290733 -3.878498459511783 7.688724458774837 -2.997587991844135 5.773769347551276 -5.42458368153758 6.194793007120643 -6.435297706577472 5.630635840262678 -5.49305586462806 5.637463441909986 0.2063136648478206 5.576712249359321 -0.7002834793214141 4.149493655589789 -0.666422043308793 -3.791997104759317 -3.160289595899267 -4.557148381589244 -2.4438330958985 -2.752395262503766 -2.388220319902878 5.508185884087253 0.3568838258145871 5.479408896688173 -0.5431689211380512 4.080557974305158 0.3597441476089266 5.506171941511711 0.4210506271797914 5.49610738001893 -0.4792775997923502 4.078734300599257 0.4094231397152907 5.509503751461832 -0.460178170981151 4.0852749331553 0.4248645746183525 5.512567720610957 0.4401719054329141 5.523730938822248 -0.4707721957735811 4.096473844284713 0.4192446804514229 5.523701160329052 0.4353960044653995 -3.68214331192589 0.7048003957772115 -3.797079964430929 -0.1886666454908832 -3.966759717564554 0.6230881827453207 6.770678563460123 -2.150790600524764 6.117129859104871 -2.221333120763166 5.914682744017741 -1.996607342708859 5.55221507049154 -0.4461036560030883 4.124268810346557 0.4384218376475834 5.551529312835765 0.4495228068059489 5.565864599723549 -0.4313945211553699 4.138560890324671 -0.4446638803693676 4.137603457175834 0.4528163016298624 5.634227758319667 -0.4402423970654657 4.205959402934985 -0.4768728165044885 4.213980714084771 0.4205838582382181 -3.798495665402174 -0.1820849155691501 -3.568804610354984 -1.073847359963925 -3.875394710153257 -1.003386691537358 6.123994606683545 2.05525332117598 6.776703735835856 1.98005265820314 5.916121464420085 1.806762106662963 5.597675479733299 0.443399893764163 5.585205845377178 -0.4925639279401325 4.169597344998032 0.4024386876104048 4.15762018592527 -0.4950097606756016 5.584202678227232 0.3648870756734438 5.572485063851977 -0.5270898869408937 4.156617820371098 0.3621291455754826 -4.124925005749004 -0.4221101842327787 -5.552090815762549 -0.4677962709606923 -5.55421954180395 0.4325579296179262 -4.111622469373085 -0.4214203977710727 -5.538876324918283 -0.4650816136418131 -5.538576477063474 0.4352706727699609 -4.097125150651432 -0.4279153426255751 -5.52435757429008 -0.4708482185904604 -5.52426233743118 0.4295055149755776 -4.082981753191275 -0.4413168658447663 -5.51008541062717 -0.4849546898017661 -5.512878698675422 0.4153870811823178 -5.631193550035248 2.461507415414935 -6.463048840774564 2.677056089199609 -5.803781728166912 2.695243922016638 -5.496456165566158 -0.5111077385403589 -5.505886766735717 0.3892222330192646 -4.069649252612988 -0.4640573414130001 3.834919411783258 4.229177482280971 4.067083141014313 3.636295497457961 3.395628482009644 4.365034469375767 -5.482838903136125 -0.5372022959242325 -5.506608144241801 0.3286859050130154 -4.056840720569126 -0.4789649353516526 5.627346059598288 2.772713745747252 6.28695098665998 2.780121525531526 5.472318711552627 2.507915073080861 2.539091054934751 4.89062216698243 2.915784678967103 4.664107656039868 1.77785141209766 4.72216774587029 7.719439946235701 -4.846904017109719 7.310729392674782 -4.86625049600592 6.619178588444171 -3.828609251683794 6.022785877259992 -6.533411281220287 5.850334017365131 -6.675404868943827 4.932253880902296 -5.959704110981211 -2.225179099355021 -8.573899165916442 -2.517246359618165 -7.605244271636148 -2.438202460806775 -7.566816113078535 -6.717869201020857 -5.349149792973891 -7.127119524533855 -5.359187381576786 -6.147305757602014 -4.334075845317214 9.271520465878172 -4.829384250182987 8.498392206892227 -3.953414187342754 8.588931033037188 -3.936947027258597 6.001688404292493 -6.520400303231552 5.785867199317528 -6.590653648012299 5.390870613633427 -5.57345836591487 5.612246399584024 0.2811336414350372 4.137508093891616 -0.6053915677220051 4.179845061663457 0.3098219691396784 -5.538764975333309 0.4681121719386963 -4.109915944167414 0.5066086495387171 -4.137244533226672 -0.3906263536147895 -4.093491571230447 -0.4693098312026066 -5.520719793072696 0.4014243121698805 -4.093491571230447 0.4281509816797937 5.522613030223019 -0.4088759348981764 4.095370697688034 -0.4307901038188899 4.095955679305225 0.4666987771532346 4.100600948168641 0.4727237170128614 5.530293461700541 -0.4036800185450093 4.103119696156001 -0.4247646836698221 5.540696074459932 -0.4062771507909478 4.113528349182373 -0.4254116217219571 4.109778224059697 0.4720632539261433 5.562829411054837 -0.4168563095352443 4.135579146547521 -0.4287439876988017 4.131128445010857 0.4687326012540565 -6.106218164610338 0.4067214157437564 -5.949686005033862 -0.4066665999772727 -6.57558798965443 -0.4291223668602024 7.484402007252639 -0.3666865768634973 8.588008637681035 -1.014951336896927 6.906160533801982 -0.6164503317486078 -5.968331417790047 -0.08485090619073749 -6.038886626027283 -0.9065050245338635 -6.594235457051168 -0.1072712048355581 7.785043341838376 -3.027241022869439 6.38760915225589 -3.073919155086647 6.094257506179066 -2.609111482345269 4.182569284383959 0.3628143594684092 5.590918326588575 -0.533762702622409 4.158247094811467 -0.515202285144675 -4.151049002528265 -0.4556168108391424 -5.582161926964881 0.3971661449070394 -4.154959419916142 0.4418540299037406 -4.138993010500824 -0.4477007573165332 -5.565399234233393 0.4095546653307514 -4.138039279917377 0.4497783237258486 -4.126058856890215 -0.4470074540046948 -5.550147546112627 0.4135444010196748 -4.122737751398939 0.4504695718699686 -4.11381972194354 -0.4511845102803854 -5.537457493840162 0.4119462391451804 -4.110066034056458 0.4463155858593719 -5.828619448587592 2.983631213287548 -6.487814456845412 2.963892194643452 -7.084231717134023 3.932564416781103 -4.103273851978412 -0.4587102997819708 -5.52807408050241 0.4063539597087571 -4.100749980947755 0.4387628393962917 4.717344599847353 4.192502098342859 4.633612095804903 3.613061858163787 4.427237314102075 4.211817097101426 0.3206106848921589 -1.391178060408406 0.6921164850603934 -1.628641759935543 0.2782028819448612 -1.450158226014998 6.293848033120097 3.193539879314641 5.634213361410922 3.188008916534419 6.848525411149121 4.203593104396327 -1.891328164057275 -0.1374743576887198 -1.948271184522626 -0.1883172081444611 -2.299859201895115 0.0619301615705932 2.155429516005429 5.433102250304442 2.326785986090503 5.245640623360807 1.568678405240158 5.068661018134691 8.319111193875182 -5.609547578366657 7.324212926387032 -4.723950566267607 7.732827786625975 -4.70339119690072 5.713279785731879 -6.432160030464202 5.953360540920912 -6.578961989440483 5.538615148466631 -6.572469865395896 -2.028798512837025 -8.548366861161911 -2.104055885263323 -8.590898403140145 -2.330512122076828 -7.585630805526254 -7.608945487818658 -6.255703576101399 -7.137958890888548 -5.260559550807522 -6.72869513150474 -5.250866900269577 9.27065934491648 -4.826824061750197 9.179300321773068 -4.839084543618871 8.496674351625121 -3.951322323121277 5.867141115348349 -6.389785434634255 5.741440448300319 -6.687316064812344 5.650766369438735 -6.458977061674541 -6.116633110672703 0.4110907662336733 -6.586162527374134 -0.4246975448627076 -6.656295097298122 -0.05912841987920928 -6.224683474972785 -4.744352959566725 -6.154981253152326 -4.374781149297583 -4.81651597652847 -3.918431791851718 -7.714038473572953 0.6023579286995218 -6.339258681834792 0.6682309068354281 -7.718550954367429 0.477881345093763 -6.574245482658096 -0.09795340618191402 -6.019037035461805 -0.8972475817193066 -6.610675455021291 -0.467456379308435 -6.219167844454492 -1.070784404659 -7.617857677143023 -1.06830930505799 -7.624303380680911 -0.9476220364064913 -8.259673190808709 -0.551958884871283 -8.650674722245444 -0.3398743600165811 -6.909048470343557 -0.0813386710929849 -6.262729427223396 4.280205518061553 -5.523929073475165 3.290676722131466 -6.715952600713422 4.289071664462673 3.937843837902142 5.147301601424823 4.069298934555739 5.075875895797951 3.463533200456307 4.110800280381099 5.209205622771145 4.035822782958834 5.450196430193508 4.151242919036542 5.102250521171852 3.458752088073406 4.095337276055221 1.204356443781205 4.389280951963332 1.1286483224619 4.099195002689461 1.148160626873494 2.771021747791493 0.9722150784720091 2.769151279432363 0.9159566178321216 2.351942138015295 1.100568588629236 2.935863018679035 5.626067172882261 3.069583945778339 5.566693212579978 2.195182696189024 4.692738226224547 7.015206002807851 4.001647704310436 5.735592185692652 3.036957278107067 6.54043165342027 4.011409472370985 -0.5745818156162452 2.549565507132114 -0.201766641564953 2.347215580046476 -0.6317786240502441 2.516375579235664 -1.343223786508591 3.410810264610257 -1.400727010858305 3.377949627684427 -1.605305603904998 3.543518012266425 2.41298121115136 5.483652071981339 2.402231215159181 5.271407892927533 1.807530471990459 4.915030062690574 8.280825905442994 -5.649319198347968 7.898642013392817 -5.666257972030044 7.295398628059252 -4.757193145759694 5.944142243046866 -6.818013508429276 5.833464914441211 -7.051644702807992 5.529399941378703 -6.811400320934341 -1.697471362572419 -8.866096477070775 -1.810456390209519 -8.644014698631873 -1.736609375029659 -8.599979835830487 -7.289404194507263 -6.205034285805037 -7.672080099481478 -6.212367473911156 -6.785103664943274 -5.211197734496072 9.400274494745993 -5.083337609184246 9.180531261399484 -4.878668450017517 9.271905004153444 -4.866476039442853 6.272982820837651 -6.366489343458639 6.467954122720688 -6.67559446441701 6.154288376155829 -6.665795398995026 -6.61782679821126 0.7707276170720391 -7.157860533619931 0.3007726256670714 -7.300822201226315 0.4995800430167435 2.513799392591445 0.5514798227418101 2.414069527238531 0.5491065533840862 2.4673256467482 0.9193765930242428 4.497717665920813 -5.731831628612675 4.516995633749293 -6.879723111970071 4.05665024727122 -5.593268903064636 -6.004154607457918 -0.8371542672269368 -6.924392869678563 -1.04217891225324 -7.379442888224687 -1.044659418331918 -7.537423955761589 0.6016595813773412 -7.542023281758183 0.4771849648315717 -8.968287821898736 0.2934255125263521 2.534015244132297 -0.9706957197685954 2.458215345371251 -0.6029203753848054 2.557945762132749 -0.6005614891247557 -6.885079482756589 -0.6997488815661535 -6.293570957011183 -1.129650712023979 -6.99273692576547 -0.9065747945953878 -7.154016454095761 -1.004976464628402 -6.227488975147699 -1.128661156671277 -7.63261541801149 -1.0054346037006 -7.553775809653298 -0.9472327983245749 -7.547280308312806 -1.067918414717907 -8.922697736279979 -0.9064193612649891 -5.05305560476592 6.622148164113315 -3.905101183939973 6.020618958475664 -3.98597483593536 5.652457902991198 -6.275449585183051 4.127744945274094 -6.72868968733474 4.136058323286965 -7.27772491667968 5.206817501283571 3.354175750142323 4.951616781581719 3.573350367991242 5.273079094114264 3.129344250468945 4.228303088262042 4.269826941252457 6.128012269342688 3.90441428202094 4.990208963003467 3.772065297827613 5.060605702879127 6.702412297663996 2.1096849018762 6.655360169729002 2.163960619423023 6.943140012061708 2.225444299620932 3.765924924014517 -0.3463911266747499 3.789307562308364 -0.4094590512181034 3.500449096548218 -0.3224776095588098 3.64298411173188 5.25514485092069 3.38025674050513 4.943435513391906 2.73421192946776 4.403165535243263 3.774958042568282 6.421429065416803 3.011909711981109 5.52641071277909 2.877940667869294 5.585437524330192 7.017936891579413 3.909965806713123 6.543176739322377 3.920145912335438 7.609975503683925 4.890018825072455 -2.761677657248522 2.029500599706688 -2.586835986024328 1.870394885037136 -2.844537059602854 2.008309631066081 -3.835270694369624 4.598089772890178 -3.918084073209415 4.576787760213856 -4.008092862297267 4.777051305618736 8.467885565626732 -5.943713672615953 7.899901978429571 -5.654845163920292 8.282079997379809 -5.637824583607729 6.042017955053143 -6.814426757901017 6.207313497316516 -6.865170711259076 5.932658345836569 -7.048441644263794 -0.654931246901786 -8.87572412908016 -0.7033889763933321 -8.94094689105154 -0.7708877180182611 -8.67837023956853 -7.828473878628092 -6.498814991450156 -7.675148319401016 -6.175515803589196 -7.29247008265804 -6.16825830814427 9.383696738578189 -5.089147503819769 9.288607905876326 -5.078632244589382 9.163513299032058 -4.884771330406955 6.149763548693514 -6.719783069680686 6.463426586427903 -6.72963564814617 6.156160333179555 -6.85925835793994 -6.416444883919922 0.4564335272708737 -7.099418415463823 0.185251862407488 -7.342427430768073 0.2680930777047664 -0.8733676025194243 2.955435193762439 -0.9486586336982406 2.928653260658535 -0.9387513316986113 3.177981314570622 0.2390899787757239 1.121124098115781 0.2049310777999552 0.7494616287782674 0.1623900218977226 1.096942491253779 2.697162291991673 -7.439733174679802 2.351259293116423 -7.267382833582784 2.561736891303922 -6.107532364065592 -7.483393821633138 0.4455058785349199 -8.914208763313722 0.1371312959481615 -8.930165451960262 0.295333508518245 -7.432231818739337 3.138655979150429 -6.977197707339149 3.142543371988218 -6.95826376736089 3.067299847819562 -9.538039950976902 1.753491054251887 -8.129971552498796 2.009779509810612 -8.076504999067801 1.942273857748956 1.586050509773324 -1.101728573334035 1.495417258704747 -1.082469132367868 1.514655812151018 -0.7334080930896799 0.848532342347732 -2.78422799511566 0.9386843079517104 -2.804837975377466 0.9056622836245004 -3.026816851248352 -6.87969655198374 -0.6882856501199133 -6.180492195800953 -0.9112870973468583 -7.107027252437868 -0.7876375390194846 -7.147035477462651 -3.156399070821825 -7.625633710012609 -3.157201018721693 -7.128542655161807 -3.081103406424559 -7.718161150097957 -2.869832060215034 -9.085934916881605 -2.809746725564581 -7.67646206602808 -2.797370727957003 -8.90510072222548 -0.8139328844854772 -7.529679053645937 -0.9754095865071504 -8.908472463734093 -0.9456976228573982 -7.210690829545285 4.875994604011638 -7.253841230344557 5.1963013655474 -5.881338388599651 4.50406112808743 -6.783802307654304 5.26301819230866 -6.201636592931429 4.184642820135692 -7.193159703222822 5.269845207239835 4.873549189960155 5.93692711853209 5.053724850986439 5.865516110681777 4.462075121711869 4.808897275595138 7.292904795002277 2.808409441747124 7.19840840418086 2.838397488863771 7.561292571124231 3.105880725196114 7.430419082646078 3.317686977760138 7.33108804176471 3.332484017562069 8.1446895956849 4.306100996550779 7.068893513549147 1.839229311548257 6.78298815180057 1.772553044467654 6.976466929022937 1.872974094695157 -3.45919853437108 5.75786510951576 -3.431496126799863 6.131233491670329 -3.375200879283819 5.745125750166509 -3.044170914533516 6.259261082509404 -2.872356450278772 7.328422963449643 -2.955184331484319 6.221493854929197 3.791337376614206 6.408479467987543 3.931373325290601 6.336109984127391 3.025786591428482 5.50585552532548 7.647720248807206 4.84458354354674 6.567221837176867 3.884141568478665 7.238755424174864 4.860237867715482 -3.769795641590861 4.853212271834425 -3.683295487647069 4.683780487940838 -3.854266820333741 4.863838823179988 8.540483215386344 -5.892575601653754 8.197397358396524 -5.907933248492452 7.967133376560895 -5.610343800351751 6.081375034645086 -6.819435075955772 6.197624860810667 -6.97081610700894 5.80543341433306 -7.001506192640144 2.8140929380626 -8.79297493691973 2.672106037527454 -8.709265195113094 2.694052004896493 -8.635718625076724 -7.360840524520197 -6.588309894264103 -7.704084751759124 -6.601281756698698 -7.172208132465931 -6.266624957468202 9.358294433600234 -5.114631927304724 9.405523130976883 -5.249161905572431 9.263260326210883 -5.103814835884413 6.407080260315937 -6.694157141549344 6.241312786510573 -6.960253543023304 6.099371398642951 -6.823128462645105 -3.130554944520676 5.227407523900158 -2.940368701141873 5.082412968960504 -3.00608556832405 5.019451911661345 1.443907975064636 3.009566474741562 1.392768651892923 2.763381990809926 1.353517222041405 2.969811712864057 4.650737616699059 -6.727729441427135 4.716744199031261 -7.743148165624424 4.266942852427738 -6.615506992460908 -9.071140312411432 0.2944633974503092 -9.055407814662802 0.1362472901876673 -10.28668002886894 -0.0937828797595812 -3.773360530426287 4.896600557490119 -3.750680886215156 4.97120033830512 -3.608858147557148 4.770238110183211 -7.53289520959112 2.701458828563071 -7.576834581716011 2.773091943295637 -7.100705157999414 2.711278583091485 -9.577442512528513 1.663494001273091 -9.62934706237974 1.724115776184242 -8.17428369246934 1.941646553319781 -7.81789872000735 -0.5108880977619668 -7.925738781038671 -0.7049677603238156 -7.780241514356955 -0.1627572382919025 -0.3664504784439115 -2.918283023253877 -0.3271898303935311 -3.163058982880862 -0.4003858537230914 -3.128404622530123 -3.148104590430492 -4.723003393556979 -3.334860453426127 -4.865370207353467 -3.210576798330826 -4.677163784487616 -1.395218845609698 -5.443644561343438 -1.443959236100936 -5.377229732235214 -1.316512064019561 -5.240797323619147 -7.787263952156327 -2.781924358475356 -7.744361347278708 -2.709899126802834 -7.287339521616378 -2.718342435752688 -9.076011327401556 -2.99138269813291 -9.03710292577769 -2.925003092659073 -7.666572568824681 -2.976800579108238 -8.848305698669181 -0.8140373333688989 -8.851696614398072 -0.9458017672404062 -10.16170857392661 -0.6825958909967832 -1.040226995247436 8.578003799303744 -0.3851475606342147 7.649532137868212 -0.6418995047070736 7.398626793913742 -6.791185263749208 5.136836418696446 -7.200547990069486 5.143462673449845 -7.687594056897973 6.085286508094633 5.328590197088473 6.927864112478795 5.116453585483766 5.909410591143172 4.936590354621746 5.981307350482459 7.40562559675408 3.198016750009801 7.037176307619113 2.935283787564428 7.306308382958497 3.212871115809425 8.280426782920902 4.256599975095995 7.473686813896915 3.279455971915816 8.188880842524677 4.269016917995517 -3.121678174578922 6.214017685437319 -3.032336604943796 6.176772711451529 -3.080035187647084 5.826761646029444 -4.064391166869241 7.039200860234 -3.978727878031649 7.010881474673525 -3.997509586052842 5.931604622387955 4.716810930553826 7.113391170709449 3.87935099306713 6.306692144878103 3.73907649699957 6.378775164524912 7.653443140774132 4.743071349325396 7.244516300415924 4.759328148477268 8.224676172670373 5.705182593954473 8.589069989065436 -5.401804206253233 8.685476913952527 -5.517917613663904 8.246228042817288 -5.420226833230213 5.950380016897553 -6.888351573934867 5.829734031808918 -7.151083490739215 5.716535945349822 -6.99827792502101 6.329976887835218 -7.444445810242726 6.079310741766163 -7.560349740341263 5.938075065571109 -7.477345904830089 3.648030716630628 -8.533174653926585 3.642055186490267 -8.611141909815 3.506912979032589 -8.46166022371338 -7.838113406866619 -6.259107765244684 -7.758917757279447 -6.135179534202703 -7.415617247831406 -6.123164672229621 9.338938362228362 -5.336702837402881 9.242747120781061 -5.317344943838871 9.199320618261513 -5.189777088698508 6.441712748022574 -6.609927054303896 6.586311701542256 -6.745322910101302 6.20428809670488 -6.752999988327257 7.45901239198993 -6.576650445976441 7.521171262621915 -6.706452308652097 7.313221789611619 -6.849888355574418 5.327297900583988 -7.497732947390289 4.96101672126361 -7.410250837308657 4.791985438184079 -6.393448434642259 -8.973048322673785 0.09368805104582501 -10.18786210624122 -0.2959617694932749 -10.24084246468124 -0.1040529529873537 -11.03574671084916 0.6911650590541538 -9.849740241730554 1.038480174062652 -9.791558687129761 0.9814944629179719 -9.461761610005713 -2.286137886242992 -10.75659909304071 -2.068782967820127 -9.415230739134167 -2.222866846366144 -10.09884371873968 -0.48395379180013 -8.789002283949557 -0.747684339765454 -10.13482258713969 -0.6655093740248087 0.2420699431879769 8.404827397964192 0.5215751719474426 8.610576067740357 0.7062362991890919 7.398958754048512 -7.355456083926312 6.045252120048752 -6.837541269088914 5.104195416427717 -7.738195418593551 6.050153291287474 4.849663849320372 7.057734058926635 5.087364117575771 6.997668551183808 4.669626389314941 6.035463120990829 8.291339532033625 4.326686009564462 8.19978347435528 4.33905670336054 8.887757765929553 5.204713154954328 -3.791426498015353 7.184865016877708 -3.646455252176806 8.220131701559021 -3.706736949528631 7.154787763625316 4.832422322582662 7.039874860515124 5.007217863813386 6.917949964255357 4.017462302655394 6.193364490230405 8.198275477145513 5.733581468844197 7.225753052870662 4.782860808236814 7.815867115999467 5.747013697197486 8.695492439150057 -5.521828640662377 8.354061003959405 -5.553084446659128 8.255934873121877 -5.425000924755263 6.32941090754643 -6.864572112469428 6.448048886577796 -6.99394840958314 6.214707203613981 -7.128945943891515 8.46005302508858 -5.928526389953852 8.268057903211902 -6.080553301519491 8.221420654770943 -6.011596916810401 -7.739636148797682 0.9160539968145308 -7.710056807611661 1.143598374101608 -7.400535590715782 0.8717983867746344 -7.476335612334193 -6.285611833348003 -7.820072536121256 -6.285705449040004 -7.397728585105807 -6.149469981422893 8.983551949191488 -5.392582583260899 8.802036041508512 -5.579571116364043 8.889699937979515 -5.367090655374562 6.596129007660912 -6.921729238484499 6.331806366037938 -7.059450696779978 6.214109891629436 -6.929543324702434 -7.840906910557184 0.2065396890655799 -7.823134473615471 0.4236551229774854 -7.479397580784825 0.4238032242109914 5.403250354818505 -7.456433614001966 5.44714017930667 -7.793709156066238 5.03613177516775 -7.371151395670309 -9.956211444287531 -0.09606984461399371 -9.901968525166041 -0.2877602649081492 -10.18932270967896 -0.3660431812972971 -10.96888940766614 0.6583064165969161 -11.03088046238132 0.7124922133221913 -9.785553559477243 0.9997840159759621 -10.75176751996626 -2.075844082053425 -10.70081004544833 -2.014953416345824 -9.410114233620595 -2.228385051922737 -9.882478990765385 -0.4894789985166593 -9.919087785409818 -0.6709566358517062 -10.17781002545755 -0.4324686368727615 1.973086817548392 8.775162110542233 2.073456556903941 8.439249232768111 1.760118758233272 8.266274949732306 -7.355893051787491 6.035139217269675 -7.738632574130896 6.040031310379674 -7.895675249693724 6.35572890440783 4.755953259092024 7.10117505962285 4.936890879330538 6.807500633840543 4.698653201530358 6.866233768884938 8.881865056477553 5.207681510575066 8.193911464926989 4.342014878462916 8.789778937523959 5.215777509063605 -3.567023200653953 8.239510501697062 -3.485281170383963 8.205188246932353 -3.636679076312206 7.174520399546183 5.002730093696144 6.988347316600743 4.784623973985226 6.821644505099476 4.608467887856551 6.942351551755317 8.200915224598788 5.694904571137292 7.818517792135292 5.708527979604562 8.382336284135629 6.009072709059925 -7.640754077580986 0.3502904432559122 -7.610227136120761 0.5768796973943583 -7.300328622433423 0.3133705363867954 8.752295864988689 -5.257974310796413 8.520711222363763 -5.352586884343154 8.683624809932937 -5.213540875446535 -7.383512819161629 1.615486151864548 -7.045255851850174 1.56780133338496 -7.092818134246431 1.331112866636004 9.216058004429662 -4.588944696320829 9.155802633392856 -4.807249290353734 9.080826027969591 -4.769648828027862 -7.563888096290102 0.9487953516270735 -7.527235853374553 1.196529730501106 -7.184763006546485 1.174210970859951 -7.630302431797364 0.1682635791268916 -7.260875675639328 0.3771226435993637 -7.287457386560325 0.1498170140715543 4.021944197128372 -8.321277962077289 3.710282400354488 -8.207401766278244 3.685928652310532 -7.859516517881581 -10.20681813314493 0.06374166861326873 -10.44103046175671 -0.2056412825270085 -10.62889198449577 -0.004829544958635267 -11.33757060876102 0.3299332866368258 -11.06989655349128 0.4434580411120462 -11.00590139692624 0.3907337674933596 -10.93675582579856 -1.489933784228467 -11.21906661463155 -1.401026336483101 -10.88077384336795 -1.431837684361402 -10.3823927298437 -0.5840073204946437 -10.12317404566467 -0.8221614784880638 -10.5596395438532 -0.7878020949513485 -1.814730889983079 8.61089390575034 -1.611430049953948 8.828839023972686 -1.615834864721014 8.293094617417673 -7.453867248912717 6.432445277851455 -7.260221681247103 6.119122849391917 -7.797266256922559 6.442545277235023 5.53582304901841 7.144123675288182 5.393343910433234 6.824179257647212 5.220278369457862 7.120775325574897 8.884875029733228 5.223710077424811 8.792789899193275 5.231813030241208 8.997431426691051 5.445946787423706 -3.218528724881931 8.353659643728127 -3.142359261060369 8.585258492464037 -3.138175189433178 8.317365019032891 4.814130817532872 7.434740768529738 4.939970439093995 7.208514868594181 4.54585703049935 7.161736605889143 8.434102477119943 5.975707014455302 7.865836740895702 5.680391139333189 8.090778324723388 5.987275507851667 -7.591005943910796 0.6062217419930539 -7.24953389326128 0.5767685969397471 -7.282057632106239 0.3420229973445143 -7.199326808919533 0.9181592597770775 -7.54050878292817 0.9496240426249764 -7.160381284168206 1.173992512444623 6.249641386265783 -7.083776125206647 6.29919748455012 -7.216898010070527 5.914689599860319 -7.02337559921768 -10.49291382516479 -0.2310377280508252 -10.63789637362116 -0.3114805503609948 -10.68063472916411 -0.03014462824183809 -11.23691440893257 0.3979838735056778 -11.32050148029596 0.4351794222741164 -10.98767111651761 0.4919174817930945 -11.1989547701045 -1.450640802191977 -11.12090449503825 -1.406631697688325 -10.86032803082546 -1.479091414228765 -10.59175004968914 -0.4865325643419837 -10.43811890949309 -0.5563633344249114 -10.61528799819944 -0.760199929410775 5.532248318194387 7.583289295059242 5.496535504559187 7.447443103446951 5.168886315289541 7.365943063405671 -7.487027993879361 6.003664093610519 -7.830448785404514 6.01329483810173 -7.911031530225858 6.136667593078347 5.52505120131981 7.196367035854346 5.209522134444327 7.172888476327961 5.196321233049179 7.312074496055821 8.736560394668635 5.275854911380717 8.846094317593119 5.475450592245355 8.940196896659442 5.490580774524839 -2.279150689010646 8.74370209437417 -2.219830157215937 8.684287937402377 -2.300373506391011 8.476309098196238 5.201938026693515 7.276423649238595 5.044873738304256 7.211527141739645 4.920373935155845 7.438211336220197 8.460523032565412 5.492339300060463 8.117312848289828 5.50583931127758 8.554216058595706 5.609838941235937 6.176397673910426 -7.292681087399546 5.838978350849863 -7.241079413747425 5.794782989367736 -7.095646520287728 -11.30737918634648 0.1715256504883076 -11.14133237321608 0.2182022158056376 -11.32324141032872 -0.05684265905028527 -10.55983482506775 -0.02988727853457548 -10.51661884714693 -0.3111780448464778 -10.74131848652431 -0.3051059973261299 -11.24791499099993 -0.3502225672437868 -11.4677873213602 -0.4112938962804223 -11.33513745992419 -0.3186119544810304 -11.25043997430787 -0.4183930563986958 -11.33426853498595 -0.4552433648619497 -11.47568516644927 -0.3709429057436157 -10.52085334959071 -0.486693300899215 -10.54454376524947 -0.7603525242860809 -10.74388029507606 -0.5088916691470116 -11.0734791832724 -0.9997547129525994 -11.24399792535239 -0.9644057792185449 -11.27212812476224 -0.7479573568234509 5.006846435673423 7.604819984842863 5.337233013825129 7.679442414591668 4.978979388225893 7.45691012177773 -7.472314108315947 6.027926149526729 -7.896230321513499 6.161101792884907 -7.552507478035663 6.163501045937264 6.612442373854851 7.225289807666986 6.568033924868935 7.091055228351658 6.381417688566287 7.364138822885103 5.229994844828195 7.390708196312395 5.437859442009398 7.127293216737903 5.108519115953327 7.241921539249105 8.863857021041271 5.57036678242239 8.769964914876876 5.554447965853877 8.899210574551541 5.707140730405462 0.5630702990475844 8.918172808578168 0.6831017678459112 9.02094398084264 0.6017656373906116 8.849027341067513 5.225877649618224 7.404059473402316 5.131383779189833 7.243594294828876 4.84918506126741 7.404696269567971 4.980384828495451 7.986939090479169 5.228726971077487 7.891158075813983 4.852034509448656 7.891839684728685 8.561642221226299 5.616449946382111 8.124451070387782 5.513201857738595 8.219528150327255 5.64268143251085 7.82095570648282 -0.3342272036161624 7.820002119320475 -0.5629349420333912 7.477964839792466 -0.3164301919684322 -10.50753475833932 -0.1035733729477003 -10.51385019564315 -0.3178100812963506 -10.73223469003857 -0.09750802350088886 -11.38964063218413 -0.3091237266096786 -11.4828768075653 -0.2822812359787225 -11.26210337181495 -0.2232559555111391 -11.25267877158462 -0.5413292099811872 -11.47856677714294 -0.4958093755231466 -11.38820264429764 -0.4634149773922885 -10.51035120217984 -0.4674430017563528 -10.48624088283821 -0.7019420723149915 -10.70926736066075 -0.7241433480761172 7.845644128403817 -0.02419302449264853 7.502764762946278 -0.0432567612130923 7.844049478789012 0.1933800494995118 -7.822783260867139 -0.2298481961284706 -7.845559445012757 -0.001841097336704264 -7.479089971007023 -0.2255670009436816 5.604855525251153 7.206321351226547 5.480262055549751 7.059138797071849 5.251847388980799 7.175966403540889 8.651500581638176 5.680456463118566 8.682652265325375 5.810220989327786 8.776750423011515 5.835196226157819 1.584619933842702 8.958069629267971 1.608273387713923 8.882207753686709 1.485772983708301 8.791928779812089 4.799109858124441 7.566151518812774 4.976298403093658 7.299798120732598 4.708393688786927 7.404342806766388 -7.761536119210644 -0.924080850109646 -7.793178801377531 -0.7079307177167631 -7.454962337104237 -0.6596704191253112 7.613136989127534 -0.7498145417369845 7.269619430338604 -0.742481892834188 7.271660093477241 -0.5028294652796737 -10.70221595034152 -0.4305822903290932 -10.90482643731967 -0.43775430480715 -10.92051144681378 -0.2102256539428505 -11.18280299208395 -0.1971672534214698 -11.28100018826619 -0.3873621256739218 -11.27725068815328 -0.173088120066662 -11.15625228072694 -0.4254444442964471 -11.24894199331346 -0.4534792626938192 -11.2630806435167 -0.2184774645733396 -10.70584857138288 -0.3670718909140796 -10.90502832334284 -0.6236457186092163 -10.90845917228694 -0.3742419134110793 7.278378418002919 0.1757309639274631 7.275205169583114 0.4039696451474449 7.618644319240165 0.413273990567097 -7.287293167286048 -0.2119090496941094 -7.662310025337017 0.002872670088507172 -7.319965044724375 0.02637050699736276 5.304261758068236 7.510718828934936 5.558892750505161 7.402139770442199 5.205967696573508 7.371192744173923 7.943854768287891 6.314353166684216 8.127594706888372 6.156102077184638 8.037753861832558 6.122809874252642 7.310957907657844 6.740480419146932 7.539061909339335 6.588340650501213 7.273791869601489 6.668048104795911 5.436421504585031 7.452357326752184 5.336979005721872 7.313335759549505 5.165539756279554 7.582007533895836 -7.056068249124015 -1.464908348649675 -7.392083045804741 -1.521561313377225 -7.110207297837602 -1.240657627793926 7.648649290072918 0.2807114310127205 7.649873525010325 0.05285049253222032 7.305131176915099 0.2880279903068188 -10.87205009150995 -0.5292217281837912 -10.96094106120326 -0.5307952075667954 -10.86392768529901 -0.3402247460209299 -10.87046564296891 -0.2533508204590864 -10.97483706903287 -0.04560951047551233 -10.88594628879937 -0.04402942136596071 7.65941400470839 -0.5257647217229292 7.315970564608313 -0.5349705400006876 7.659150054302678 -0.2763464000623481 -7.513933166500292 -1.170992836758235 -7.55519119575834 -0.9454712612601799 -7.172426749101089 -1.140875959246738 8.530400067812826 5.439495416581214 8.593907679644593 5.240374159134416 8.459571746985008 5.397204563665892 7.59007991289359 6.128803043075938 7.84955355450045 6.038053002042353 7.787513651940996 5.987941707509287 -7.631753046015854 -0.5387552600929779 -7.671599965303634 -0.2912972040263326 -7.332300693067998 -0.2484377953323516 7.635489710447182 0.04037490460496442 7.291975651081154 0.03940138049878873 7.290719076346226 0.2755267402021296 7.293684783939276 -0.5164621196727895 7.293339314235867 -0.2588010655243426 7.636853380435862 -0.2578290348497467 -7.539607897009619 -0.9469071451194763 -7.199692840819402 -0.9078650066005928 -7.156160674413737 -1.141481673185987 -7.262747511722701 -0.5487342049231557 -7.603196841502352 -0.5847805386810494 -7.305606594538739 -0.293280564857082</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"884\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 9 7 10 8 11 8 12 7 13 6 14 9 2 10 1 11 4 11 3 10 15 9 6 12 16 13 1 14 4 14 17 13 7 12 18 15 19 16 8 17 13 17 20 16 21 15 22 18 8 19 10 20 11 20 13 19 23 18 9 21 24 22 10 23 11 23 25 22 12 21 14 24 26 25 2 26 3 26 27 25 15 24 28 27 29 28 30 29 31 29 32 28 33 27 34 30 35 31 29 28 32 28 36 31 37 30 6 32 38 33 16 34 17 34 39 33 7 32 18 35 8 36 22 37 23 37 13 36 21 35 18 38 40 39 19 40 20 40 41 39 21 38 42 41 43 42 44 43 45 43 46 42 47 41 24 44 48 45 10 46 11 46 49 45 25 44 50 47 26 48 14 49 15 49 27 48 51 47 52 50 53 51 54 52 55 52 56 51 57 50 16 53 38 54 58 55 59 55 39 54 17 53 60 56 61 57 62 58 63 58 64 57 65 56 66 59 40 60 18 61 21 61 41 60 67 59 68 62 69 63 70 64 71 64 72 63 73 62 48 65 74 66 10 67 11 67 75 66 49 65 76 68 77 69 78 70 79 70 80 69 81 68 82 71 83 72 84 73 85 73 86 72 87 71 88 74 89 75 90 76 91 76 92 75 93 74 94 77 95 78 96 79 97 79 98 78 99 77 100 80 66 81 18 82 21 82 67 81 101 80 102 83 103 84 104 85 105 85 106 84 107 83 108 86 109 87 103 88 106 88 110 87 111 86 69 89 112 90 70 91 71 91 113 90 72 89 74 92 114 93 10 94 11 94 115 93 75 92 116 95 83 96 82 97 87 97 86 96 117 95 89 98 118 99 90 100 91 100 119 99 92 98 120 101 94 102 96 103 97 103 99 102 121 101 122 104 123 105 124 106 125 107 124 106 123 105 126 105 127 106 128 107 127 106 126 105 129 104 124 108 130 109 131 110 132 110 133 109 127 108 134 111 135 112 136 113 137 113 138 112 139 111 140 114 100 115 18 116 21 116 101 115 141 114 142 117 102 118 104 119 105 119 107 118 143 117 104 120 103 121 144 122 145 122 106 121 105 120 103 123 109 124 123 125 126 125 110 124 106 123 146 126 147 127 148 128 147 127 149 129 148 128 149 129 150 130 148 128 148 128 150 130 151 131 150 130 152 132 151 131 152 132 153 133 151 131 151 131 153 133 154 134 153 133 155 135 154 134 154 134 155 135 156 136 155 135 157 137 156 136 156 136 157 137 158 138 157 137 159 139 158 138 159 139 160 140 158 138 158 138 160 140 161 141 160 140 162 142 161 141 161 141 162 142 163 143 162 142 164 144 163 143 164 144 165 145 163 143 163 143 165 145 166 146 165 145 167 147 166 146 167 147 168 148 166 146 166 146 168 148 169 149 168 148 170 150 169 149 171 151 169 149 170 150 150 130 149 129 172 152 172 152 149 129 173 153 149 129 174 154 173 153 173 153 174 154 175 155 174 154 176 156 175 155 175 155 176 156 177 157 176 156 178 158 177 157 177 157 178 158 179 159 179 159 178 158 180 160 178 158 181 161 180 160 180 160 181 161 182 162 181 161 183 163 182 162 182 162 183 163 184 164 183 163 185 165 184 164 184 164 185 165 186 166 186 166 185 165 187 167 185 165 168 148 187 167 167 147 187 167 168 148 188 148 189 167 190 147 189 167 188 148 191 165 189 167 191 165 192 166 192 166 191 165 193 164 193 164 191 165 194 163 193 164 194 163 195 162 195 162 194 163 196 161 195 162 196 161 197 160 197 160 196 161 198 158 197 160 198 158 199 159 199 159 198 158 200 157 200 157 198 158 201 156 200 157 201 156 202 155 202 155 201 156 203 154 202 155 203 154 204 153 204 153 203 154 205 129 204 153 205 129 206 152 206 152 205 129 207 130 208 150 209 149 210 151 209 149 208 150 188 148 209 149 188 148 211 146 211 146 188 148 190 147 211 146 190 147 212 145 211 146 212 145 213 143 213 143 212 145 214 144 213 143 214 144 215 142 213 143 215 142 216 141 216 141 215 142 217 140 216 141 217 140 218 138 218 138 217 140 219 139 218 138 219 139 220 137 218 138 220 137 221 136 221 136 220 137 222 135 221 136 222 135 223 134 223 134 222 135 224 133 223 134 224 133 225 131 225 131 224 133 226 132 225 131 226 132 207 130 225 131 207 130 227 128 227 128 207 130 205 129 227 128 205 129 228 127 227 128 228 127 229 126 69 168 230 169 112 170 113 170 231 169 72 168 74 171 232 172 114 173 115 173 233 172 75 171 234 174 116 175 82 176 87 176 117 175 235 174 120 177 236 178 94 179 99 179 237 178 121 177 109 180 125 181 123 182 126 182 128 181 110 180 238 183 123 184 122 185 129 185 126 184 239 183 124 186 240 187 122 188 129 188 241 187 127 186 124 189 131 190 242 191 243 191 132 190 127 189 134 192 244 193 135 194 138 194 245 193 139 192 140 195 246 196 100 197 101 197 247 196 141 195 248 198 142 199 104 200 105 200 143 199 249 198 250 201 104 202 144 203 145 203 105 202 251 201 103 204 238 205 144 206 145 206 239 205 106 204 103 207 123 208 238 209 239 209 126 208 106 207 252 210 253 211 254 212 255 212 256 211 257 210 253 213 258 214 259 215 260 215 261 214 256 213 262 216 263 217 258 218 261 218 264 217 265 216 266 219 267 220 262 221 265 221 268 220 269 219 270 222 271 223 272 224 273 224 274 223 275 222 276 225 277 226 270 227 275 227 278 226 279 225 280 228 281 229 282 230 283 230 284 229 285 228 281 231 286 232 287 233 288 233 289 232 284 231 286 234 290 235 291 236 292 236 293 235 289 234 290 237 142 238 248 239 249 239 143 238 293 237 242 240 131 241 294 242 295 242 132 241 243 240 296 243 294 244 297 245 298 245 295 244 299 243 300 246 297 247 301 248 302 248 298 247 303 246 304 249 301 250 305 251 306 251 302 250 307 249 308 252 309 253 310 254 311 254 312 253 313 252 314 255 315 256 316 257 317 257 318 256 319 255 309 258 320 259 321 260 322 260 323 259 312 258 324 261 316 262 325 263 326 263 317 262 327 261 328 264 252 265 329 266 330 266 257 265 331 264 230 267 332 268 112 269 113 269 333 268 231 267 232 270 334 271 114 272 115 272 335 271 233 270 336 273 116 274 234 275 235 275 117 274 337 273 338 276 236 277 120 278 121 278 237 277 339 276 240 279 124 280 242 281 243 281 127 280 241 279 340 282 244 283 134 284 139 284 245 283 341 282 342 285 246 286 140 287 141 287 247 286 343 285 248 288 104 289 250 290 251 290 105 289 249 288 252 291 254 292 329 293 330 293 255 292 257 291 254 294 253 295 259 296 260 296 256 295 255 294 259 297 258 298 263 299 264 299 261 298 260 297 262 300 267 301 263 302 264 302 268 301 265 300 266 303 271 304 267 305 268 305 274 304 269 303 344 306 345 307 346 308 347 308 348 307 349 306 270 309 277 310 271 311 274 311 278 310 275 309 350 312 277 313 282 314 276 315 282 314 277 313 278 313 283 314 279 315 283 314 278 313 351 312 352 316 353 317 354 318 355 318 356 317 357 316 281 319 287 320 282 321 283 321 288 320 284 319 286 322 291 323 287 324 288 324 292 323 289 322 291 325 290 326 248 327 249 327 293 326 292 325 242 328 294 329 296 330 299 330 295 329 243 328 296 331 297 332 300 333 303 333 298 332 299 331 300 334 301 335 304 336 307 336 302 335 303 334 304 337 305 338 310 339 311 339 306 338 307 337 358 340 359 341 360 342 361 342 362 341 363 340 310 343 309 344 321 345 322 345 312 344 311 343 364 346 314 347 316 348 317 348 319 347 365 346 321 349 320 350 329 351 330 351 323 350 322 349 366 352 367 353 368 354 369 354 370 353 371 352 364 355 316 356 324 357 327 357 317 356 365 355 372 358 332 359 230 360 231 360 333 359 373 358 232 361 374 362 334 363 335 363 375 362 233 361 376 364 336 365 234 366 235 366 337 365 377 364 378 367 236 368 338 369 339 369 237 368 379 367 240 370 242 371 380 372 381 372 243 371 241 370 340 373 382 374 244 375 245 375 383 374 341 373 342 376 384 377 246 378 247 378 385 377 343 376 291 379 248 380 250 381 251 381 249 380 292 379 329 382 254 383 386 384 387 384 255 383 330 382 254 385 259 386 388 387 389 387 260 386 255 385 259 388 263 389 390 390 391 390 264 389 260 388 267 391 392 392 263 393 264 393 393 392 268 391 271 394 394 395 267 396 268 396 395 395 274 394 396 397 397 398 398 399 399 399 400 398 401 397 345 400 402 401 346 402 347 402 403 401 348 400 277 403 404 404 271 405 274 405 405 404 278 403 277 406 350 407 404 408 405 408 351 407 278 406 282 409 406 410 350 411 351 411 407 410 283 409 408 412 409 413 410 414 411 414 412 413 413 412 414 415 352 416 354 417 355 417 357 416 415 415 282 418 287 419 406 420 416 421 406 420 287 419 288 419 407 420 417 421 407 420 288 419 283 418 287 422 291 423 416 424 417 424 292 423 288 422 380 425 242 426 296 427 299 427 243 426 381 425 418 428 296 429 300 430 303 430 299 429 419 428 420 431 300 432 304 433 307 433 303 432 421 431 422 434 304 435 310 436 311 436 307 435 423 434 358 437 360 438 424 439 425 439 361 438 363 437 310 440 321 441 426 442 427 442 322 441 311 440 428 443 314 444 364 445 365 445 319 444 429 443 321 446 329 447 430 448 431 448 330 447 322 446 432 449 368 450 367 451 370 451 369 450 433 449 434 452 364 453 324 454 327 454 365 453 435 452 372 455 436 456 332 457 333 457 437 456 373 455 374 458 438 459 334 460 335 460 439 459 375 458 440 461 336 462 376 463 377 463 337 462 441 461 442 464 378 465 338 466 339 466 379 465 443 464 444 467 382 468 340 469 341 469 383 468 445 467 446 470 384 471 342 472 343 472 385 471 447 470 291 473 250 474 448 475 449 475 251 474 292 473 329 476 386 477 430 478 431 478 387 477 330 476 386 479 254 480 388 481 389 481 255 480 387 479 259 482 390 483 388 484 389 484 391 483 260 482 390 485 263 486 392 487 393 487 264 486 391 485 267 488 394 489 392 490 393 490 395 489 268 488 271 491 404 492 394 493 395 493 405 492 274 491 450 494 451 495 452 496 453 496 454 495 455 494 345 497 456 498 402 499 403 499 457 498 348 497 451 500 458 501 452 502 453 502 459 501 454 500 460 503 352 504 414 505 415 505 357 504 461 503 416 506 291 507 448 508 449 508 292 507 417 506 380 509 296 510 418 511 419 511 299 510 381 509 418 512 300 513 420 514 421 514 303 513 419 512 420 515 304 516 422 517 423 517 307 516 421 515 422 518 310 519 426 520 427 520 311 519 423 518 424 521 360 522 462 523 463 523 361 522 425 521 426 524 321 525 430 526 431 526 322 525 427 524 464 527 314 528 428 529 429 529 319 528 465 527 466 530 467 531 468 532 469 532 470 531 471 530 368 533 432 534 472 535 473 535 433 534 369 533 466 536 468 537 474 538 475 538 469 537 471 536 476 539 434 540 324 541 327 541 435 540 477 539 478 542 436 543 372 544 373 544 437 543 479 542 374 545 480 546 438 547 439 547 481 546 375 545 482 548 440 549 376 550 377 550 441 549 483 548 484 551 378 552 442 553 443 553 379 552 485 551 444 554 486 555 382 556 383 556 487 555 445 554 446 557 488 558 384 559 385 559 489 558 447 557 450 560 452 561 490 562 491 562 453 561 455 560 456 563 492 564 402 565 403 565 493 564 457 563 494 566 495 567 496 568 497 568 498 567 499 566 452 569 458 570 500 571 501 571 459 570 453 569 458 572 502 573 503 574 504 574 505 573 459 572 506 575 460 576 414 577 415 577 461 576 507 575 508 578 424 579 462 580 463 580 425 579 509 578 510 581 511 582 512 583 513 583 514 582 515 581 464 584 516 585 314 586 319 586 517 585 465 584 518 587 519 588 520 589 521 589 522 588 523 587 518 590 520 591 524 592 525 592 521 591 523 590 526 593 527 594 324 595 327 595 528 594 529 593 472 596 432 597 530 598 531 598 433 597 473 596 532 599 533 600 534 601 535 601 536 600 537 599 532 602 534 603 538 604 539 604 535 603 537 602 540 605 476 606 324 607 327 607 477 606 541 605 478 608 542 609 436 610 437 610 543 609 479 608 480 611 544 612 438 613 439 613 545 612 481 611 546 614 440 615 482 616 483 616 441 615 547 614 548 617 484 618 442 619 443 619 485 618 549 617 550 620 486 621 444 622 445 622 487 621 551 620 446 623 552 624 488 625 489 625 553 624 447 623 450 626 490 627 554 628 555 628 491 627 455 626 556 629 557 630 558 631 559 631 560 630 561 629 456 632 562 633 492 634 493 634 563 633 457 632 564 635 565 636 566 637 567 637 568 636 569 635 494 638 496 639 570 640 571 640 497 639 499 638 572 641 557 642 556 643 561 643 560 642 573 641 500 644 458 645 574 646 575 646 459 645 501 644 576 647 458 648 503 649 504 649 459 648 577 647 503 650 502 651 578 652 579 652 505 651 504 650 580 653 460 654 506 655 507 655 461 654 581 653 508 656 462 657 582 658 583 658 463 657 509 656 584 659 510 660 512 661 513 661 515 660 585 659 586 662 511 663 510 664 515 664 514 663 587 662 588 665 589 666 590 667 591 667 592 666 593 665 594 668 519 669 518 670 523 670 522 669 595 668 527 671 540 672 324 673 327 673 541 672 528 671 596 674 527 675 526 676 529 676 528 675 597 674 472 677 530 678 598 679 599 679 531 678 473 677 600 680 532 681 538 682 539 682 537 681 601 680 602 683 603 684 604 685 605 685 606 684 607 683 608 686 542 687 478 688 479 688 543 687 609 686 480 689 610 690 544 691 545 691 611 690 481 689 612 692 546 693 482 694 483 694 547 693 613 692 614 695 484 696 548 697 549 697 485 696 615 695 550 698 616 699 486 700 487 700 617 699 551 698 488 701 552 702 618 703 619 703 553 702 489 701 450 704 554 705 620 706 621 706 555 705 455 704 558 707 622 708 623 709 624 709 625 708 559 707 558 710 557 711 622 712 625 712 560 711 559 710 562 713 626 714 492 715 493 715 627 714 563 713 494 716 570 717 628 718 629 718 571 717 499 716 630 719 631 720 632 721 633 721 634 720 635 719 636 722 630 723 637 724 638 724 635 723 639 722 572 725 640 726 557 727 560 727 641 726 573 725 640 728 572 729 642 730 643 730 573 729 641 728 574 731 458 732 576 733 577 733 459 732 575 731 644 734 645 735 646 736 647 736 648 735 649 734 645 737 650 738 651 739 652 739 653 738 648 737 578 740 502 741 654 742 655 742 505 741 579 740 656 743 580 744 506 745 507 745 581 744 657 743 658 746 508 747 582 748 583 748 509 747 659 746 586 749 660 750 511 751 514 751 661 750 587 749 590 752 662 753 663 754 664 754 665 753 591 752 663 755 666 756 667 757 668 757 669 756 664 755 590 758 589 759 662 760 665 760 592 759 591 758 604 761 670 762 671 763 672 763 673 762 605 761 670 764 674 765 675 766 676 766 677 765 673 764 678 767 596 768 526 769 529 769 597 768 679 767 598 770 530 771 680 772 681 772 531 771 599 770 671 773 602 774 604 775 605 775 607 774 672 773 608 776 682 777 542 778 543 778 683 777 609 776 610 779 684 780 544 781 545 781 685 780 611 779 686 782 546 783 612 784 613 784 547 783 687 782 688 785 614 786 548 787 549 787 615 786 689 785 550 788 690 789 616 790 617 790 691 789 551 788 552 791 692 792 618 793 619 793 693 792 553 791 631 794 694 795 695 796 696 796 697 795 634 794 623 797 622 798 698 799 699 799 625 798 624 797 562 800 700 801 626 802 627 802 701 801 563 800 628 803 570 804 702 805 703 805 571 804 629 803 632 806 631 807 695 808 696 808 634 807 633 806 637 809 630 810 632 811 633 811 635 810 638 809 704 812 636 813 637 814 638 814 639 813 705 812 706 815 707 816 708 817 709 817 710 816 711 815 640 818 642 819 712 820 713 820 643 819 641 818 714 821 715 822 716 823 717 823 718 822 719 821 715 824 720 825 716 826 717 826 721 825 718 824 645 827 651 828 646 829 647 829 652 828 648 827 650 830 722 831 651 832 652 832 723 831 653 830 578 833 654 834 724 835 725 835 655 834 579 833 726 836 580 837 656 838 657 838 581 837 727 836 658 839 582 840 728 841 729 841 583 840 659 839 730 842 660 843 586 844 587 844 661 843 731 842 663 845 662 846 666 847 669 847 665 846 664 845 667 848 666 849 732 850 733 850 669 849 668 848 670 851 675 852 671 853 672 853 676 852 673 851 674 854 734 855 675 856 676 856 735 855 677 854 736 857 596 858 678 859 679 859 597 858 737 857 598 860 680 861 738 862 739 862 681 861 599 860 608 863 740 864 682 865 683 865 741 864 609 863 742 866 684 867 610 868 611 868 685 867 743 866 684 869 744 870 544 871 545 871 745 870 685 869 746 872 686 873 612 874 613 874 687 873 747 872 748 875 614 876 688 877 689 877 615 876 749 875 690 878 750 879 616 880 617 880 751 879 691 878 618 881 692 882 742 883 743 883 693 882 619 881 552 884 752 885 692 886 693 886 753 885 553 884 700 887 754 888 626 889 627 889 755 888 701 887 628 890 702 891 756 892 757 892 703 891 629 890 758 893 636 894 704 895 705 895 639 894 759 893 650 896 760 897 722 898 723 898 761 897 653 896 724 899 654 900 762 901 763 901 655 900 725 899 764 902 726 903 656 904 657 904 727 903 765 902 766 905 658 906 728 907 729 907 659 906 767 905 730 908 768 909 660 910 661 910 769 909 731 908 667 911 732 912 770 913 771 913 733 912 668 911 674 914 772 915 734 916 735 916 773 915 677 914 774 917 736 918 678 919 679 919 737 918 775 917 738 920 680 921 776 922 777 922 681 921 739 920 740 923 778 924 682 925 683 925 779 924 741 923 742 926 780 927 684 928 685 928 781 927 743 926 782 929 783 930 784 931 785 931 786 930 787 929 788 932 789 933 790 934 791 934 792 933 793 932 794 935 748 936 688 937 689 937 749 936 795 935 796 938 782 939 797 940 798 940 787 939 799 938 692 941 780 942 742 943 743 943 781 942 693 941 800 944 801 945 802 946 803 946 804 945 805 944 700 947 806 948 754 949 755 949 807 948 701 947 756 950 702 951 808 952 809 952 703 951 757 950 810 953 758 954 704 955 705 955 759 954 811 953 760 956 812 957 722 958 723 958 813 957 761 956 724 959 762 960 814 961 815 961 763 960 725 959 816 962 726 963 764 964 765 964 727 963 817 962 766 965 728 966 818 967 819 967 729 966 767 965 820 968 768 969 730 970 731 970 769 969 821 968 770 971 732 972 822 973 823 973 733 972 771 971 772 974 824 975 734 976 735 976 825 975 773 974 826 977 736 978 774 979 775 979 737 978 827 977 738 980 776 981 828 982 829 982 777 981 739 980 789 983 830 984 831 985 832 985 833 984 792 983 782 986 784 987 834 988 835 988 785 987 787 986 789 989 831 990 790 991 791 991 832 990 792 989 797 992 782 993 834 994 835 994 787 993 798 992 830 995 800 996 836 997 837 997 805 996 833 995 800 998 802 999 836 1000 837 1000 803 999 805 998 806 1001 838 1002 754 1003 755 1003 839 1002 807 1001 756 1004 808 1005 840 1006 841 1006 809 1005 757 1004 842 1007 758 1008 810 1009 811 1009 759 1008 843 1007 760 1010 844 1011 812 1012 813 1012 845 1011 761 1010 814 1013 762 1014 846 1015 847 1015 763 1014 815 1013 848 1016 816 1017 764 1018 765 1018 817 1017 849 1016 850 1019 766 1020 818 1021 819 1021 767 1020 851 1019 852 1022 768 1023 820 1024 821 1024 769 1023 853 1022 770 1025 822 1026 854 1027 855 1027 823 1026 771 1025 772 1028 856 1029 824 1030 825 1030 857 1029 773 1028 858 1031 826 1032 774 1033 775 1033 827 1032 859 1031 828 1034 776 1035 860 1036 861 1036 777 1035 829 1034 830 1037 862 1038 831 1039 832 1039 863 1038 833 1037 862 1040 830 1041 836 1042 837 1042 833 1041 863 1040 806 1043 864 1044 838 1045 839 1045 865 1044 807 1043 808 1046 866 1047 840 1048 841 1048 867 1047 809 1046 868 1049 842 1050 810 1051 811 1051 843 1050 869 1049 844 1052 870 1053 812 1054 813 1054 871 1053 845 1052 872 1055 814 1056 846 1057 847 1057 815 1056 873 1055 874 1058 816 1059 848 1060 849 1060 817 1059 875 1058 850 1061 818 1062 876 1063 877 1063 819 1062 851 1061 852 1064 820 1065 878 1066 879 1066 821 1065 853 1064 822 1067 880 1068 854 1069 855 1069 881 1068 823 1067 856 1070 882 1071 824 1072 825 1072 883 1071 857 1070 884 1073 826 1074 858 1075 859 1075 827 1074 885 1073 828 1076 860 1077 886 1078 887 1078 861 1077 829 1076 864 1079 888 1080 838 1081 839 1081 889 1080 865 1079 890 1082 840 1083 891 1084 892 1084 841 1083 893 1082 840 1085 866 1086 891 1087 892 1087 867 1086 841 1085 868 1088 894 1089 842 1090 843 1090 895 1089 869 1088 870 1091 844 1092 896 1093 897 1093 845 1092 871 1091 872 1094 846 1095 898 1096 899 1096 847 1095 873 1094 846 1097 900 1098 898 1099 899 1099 901 1098 847 1097 902 1100 874 1101 848 1102 849 1102 875 1101 903 1100 850 1103 876 1104 904 1105 905 1105 877 1104 851 1103 906 1106 852 1107 907 1108 908 1108 853 1107 909 1106 907 1109 852 1110 878 1111 879 1111 853 1110 908 1109 854 1112 880 1113 910 1114 911 1114 881 1113 855 1112 856 1115 912 1116 882 1117 883 1117 913 1116 857 1115 914 1118 884 1119 858 1120 859 1120 885 1119 915 1118 916 1121 914 1122 858 1123 859 1123 915 1122 917 1121 886 1124 860 1125 918 1126 919 1126 861 1125 887 1124 920 1127 921 1128 922 1129 923 1129 924 1128 925 1127 866 1130 926 1131 891 1132 892 1132 927 1131 867 1130 928 1133 894 1134 868 1135 869 1135 895 1134 929 1133 870 1136 896 1137 930 1138 931 1138 897 1137 871 1136 926 1139 872 1140 898 1141 899 1141 873 1140 927 1139 932 1142 933 1143 934 1144 935 1144 936 1143 937 1142 938 1145 939 1146 940 1147 941 1147 942 1146 943 1145 907 1148 878 1149 944 1150 945 1150 879 1149 908 1148 880 1151 946 1152 910 1153 911 1153 947 1152 881 1151 912 1154 948 1155 882 1156 883 1156 949 1155 913 1154 914 1157 944 1158 884 1159 885 1159 945 1158 915 1157 950 1160 951 1161 952 1162 953 1162 954 1161 955 1160 921 1163 956 1164 922 1165 923 1165 957 1164 924 1163 926 1166 958 1167 891 1168 892 1168 959 1167 927 1166 960 1169 961 1170 962 1171 963 1171 964 1170 965 1169 966 1172 967 1173 961 1174 964 1174 968 1173 969 1172 926 1175 898 1176 958 1177 959 1177 899 1176 927 1175 933 1178 970 1179 934 1180 935 1180 971 1179 936 1178 940 1181 939 1182 972 1183 973 1183 942 1182 941 1181 974 1184 907 1185 944 1186 945 1186 908 1185 975 1184 976 1187 977 1188 978 1189 979 1189 980 1188 981 1187 982 1190 976 1191 983 1192 984 1192 981 1191 985 1190 974 1193 944 1194 914 1195 915 1195 945 1194 975 1193 986 1196 950 1197 952 1198 953 1198 955 1197 987 1196 921 1199 988 1200 956 1201 957 1201 989 1200 924 1199 990 1202 961 1203 960 1204 965 1204 964 1203 991 1202 966 1205 961 1206 990 1207 991 1207 964 1206 969 1205 934 1208 970 1209 988 1210 989 1210 971 1209 935 1208 939 1211 992 1212 972 1213 973 1213 993 1212 942 1211 976 1214 978 1215 994 1216 995 1216 979 1215 981 1214 983 1217 976 1218 994 1219 995 1219 981 1218 984 1217 992 1220 950 1221 986 1222 987 1222 955 1221 993 1220 988 1223 996 1224 956 1225 957 1225 997 1224 989 1223 970 1226 996 1227 988 1228 989 1228 997 1227 971 1226 992 1229 998 1230 972 1231 973 1231 999 1230 993 1229 998 1232 992 1233 986 1234 987 1234 993 1233 999 1232</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID795\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID796\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID800\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID803\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID801\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID802\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID801\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"288\" source=\"#ID805\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"864\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID805\">-0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035627 -0.3378135984617037 -1.272300980758927</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID802\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"288\" source=\"#ID806\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"864\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID806\">-0.9999410267352775 -0.00282230173442009 -0.01048702362534358 -0.9999410261811262 -1.189599814927649e-005 -0.01086020341990315 -0.9999410269663441 -0.002736872445651152 -0.01050962029330042 -0.9999410263908806 7.648229374381802e-005 -0.01085992130776995 0.9999410261811262 1.189599814927649e-005 0.01086020341990315 0.9999410269663441 0.002736872445651152 0.01050962029330042 0.9999410263908806 -7.648229374381802e-005 0.01085992130776995 0.9999410267352775 0.00282230173442009 0.01048702362534358 -0.9999410251909873 0.002884647210172477 -0.01047019343041532 -0.9999410250023675 0.002799366906628021 -0.01049333417637169 0.9999410251909873 -0.002884647210172477 0.01047019343041532 0.9999410250023675 -0.002799366906628021 0.01049333417637169 9.286956521860817e-019 -0.2567189364859696 -0.9664861031848894 9.286956521859729e-019 -0.2567189364859594 -0.9664861031848921 -5.715048115234753e-019 0.002173823798311303 -0.9999976372422557 -5.715048115234815e-019 0.002173823798316985 -0.9999976372422557 -9.286956521859729e-019 0.2567189364859594 0.9664861031848921 5.715048115234753e-019 -0.002173823798311303 0.9999976372422557 5.715048115234815e-019 -0.002173823798316985 0.9999976372422557 -9.286956521860817e-019 0.2567189364859696 0.9664861031848894 -0.999941027016906 -0.005440356935925922 -0.009399202348336674 -0.999941027241365 -0.005363709391798363 -0.009443127715125572 0.999941027241365 0.005363709391798363 0.009443127715125572 0.999941027016906 0.005440356935925922 0.009399202348336674 0.0038266651399871 -0.2544110204982774 -0.9670886150105025 0.003828242018622541 0.004557013776478851 -0.999982288937403 0.004942785664726246 -0.2568034608485688 -0.9664510082596376 -0.004942785664726246 0.2568034608485688 0.9664510082596376 -0.003828242018622541 -0.004557013776478851 0.999982288937403 -0.0038266651399871 0.2544110204982774 0.9670886150105025 -0.9999410238180577 0.005496359094067572 -0.009366905700582823 -0.9999410236206152 0.005419907617564657 -0.009411369824492982 0.9999410238180577 -0.005496359094067572 0.009366905700582823 0.9999410236206152 -0.005419907617564657 0.009411369824492982 1.643076813689116e-018 0.2609179530237881 -0.9653609800431529 1.643076813688965e-018 0.26091795302378 -0.9653609800431552 -1.643076813688965e-018 -0.26091795302378 0.9653609800431552 -1.643076813689116e-018 -0.2609179530237881 0.9653609800431529 0.003826725799420876 0.2632158559531372 -0.9647293762213907 0.004944863497418337 0.002079709308106825 -0.9999856114635779 -0.004944863497418337 -0.002079709308106825 0.9999856114635779 -0.003826725799420876 -0.2632158559531372 0.9647293762213907 5.715048112519107e-019 -0.4981166872421416 -0.8671100079522289 5.715048112518241e-019 -0.4981166872421474 -0.8671100079522257 -5.715048112518241e-019 0.4981166872421474 0.8671100079522257 -5.715048112519107e-019 0.4981166872421416 0.8671100079522289 -0.999941027776978 -0.007687610089140697 -0.007670829123266627 -0.9999410279774628 -0.007624925862152798 -0.007733115347123785 0.9999410279774628 0.007624925862152798 0.007733115347123785 0.999941027776978 0.007687610089140697 0.007670829123266627 0.003830007769246236 -0.4960444625889477 -0.8682886744483829 0.004945237506788235 -0.498190537464372 -0.8670534775934884 -0.004945237506788235 0.498190537464372 0.8670534775934884 -0.003830007769246236 0.4960444625889477 0.8682886744483829 -0.9999410231812367 0.007733425532157156 -0.007625240245423564 -0.9999410229394634 0.007671116821697991 -0.00768795222977871 0.9999410231812367 -0.007733425532157156 0.007625240245423564 0.9999410229394634 -0.007671116821697991 0.00768795222977871 3.714782186172491e-018 0.5018825991966421 -0.8649357528878214 3.714782186172493e-018 0.5018825991966418 -0.8649357528878217 -3.714782186172493e-018 -0.5018825991966418 0.8649357528878217 -3.714782186172491e-018 -0.5018825991966421 0.8649357528878214 0.003821063636068529 0.5039417767426235 -0.8637291734833188 0.004941675560377144 0.2608252386265301 -0.9653733861765972 -0.004941675560377144 -0.2608252386265301 0.9653733861765972 -0.003821063636068529 -0.5039417767426235 0.8637291734833188 -1.143009550785445e-018 -0.7055662686997598 -0.7086439447798156 -1.143009550785445e-018 -0.7055662686997609 -0.7086439447798146 1.143009550785445e-018 0.7055662686997609 0.7086439447798146 1.143009550785445e-018 0.7055662686997598 0.7086439447798156 -0.9999410270511003 -0.009411083689174002 -0.005419771562170325 -0.9999410273711995 -0.009366649538182812 -0.005496149220936206 0.9999410273711995 0.009366649538182812 0.005496149220936206 0.9999410270511003 0.009411083689174002 0.005419771562170325 0.003831559424319163 -0.7038698595571158 -0.7103186186208439 0.004947190279231937 -0.705623059879875 -0.7085701254456779 -0.004947190279231937 0.705623059879875 0.7085701254456779 -0.003831559424319163 0.7038698595571158 0.7103186186208439 -0.9999410254789244 0.009443272316692088 -0.005363783376497059 -0.9999410251117098 0.009399334675645549 -0.00544047848980481 0.9999410254789244 -0.009443272316692088 0.005363783376497059 0.9999410251117098 -0.009399334675645549 0.00544047848980481 4.00053320143097e-018 0.7086421448071717 -0.7055680765192622 4.000533201430981e-018 0.7086421448071734 -0.7055680765192605 -4.000533201430981e-018 -0.7086421448071734 0.7055680765192605 -4.00053320143097e-018 -0.7086421448071717 0.7055680765192622 0.003824929807736708 0.7103168903995655 -0.7038716396652572 0.004938464558228079 0.5017959577429818 -0.8649719234522071 -0.004938464558228079 -0.5017959577429818 0.8649719234522071 -0.003824929807736708 -0.7103168903995655 0.7038716396652572 -4.572041747584274e-018 -0.864936467361332 -0.5018813678833869 -4.572041747584255e-018 -0.8649364673613317 -0.5018813678833874 4.572041747584274e-018 0.864936467361332 0.5018813678833869 4.572041747584255e-018 0.8649364673613317 0.5018813678833874 -0.9999410251383567 -0.01049332216834374 -0.002799363342558378 -0.9999410254124463 -0.01047018167537675 -0.00288461310922097 0.9999410254124463 0.01047018167537675 0.00288461310922097 0.9999410251383567 0.01049332216834374 0.002799363342558378 0.004949545639221747 -0.8649707823906792 -0.5017978154679645 0.003832821996489258 -0.8637292188850311 -0.5039416096332962 -0.003832821996489258 0.8637292188850311 0.5039416096332962 -0.004949545639221747 0.8649707823906792 0.5017978154679645 -0.9999410277040745 0.01050954553455601 -0.0027368899825801 -0.9999410274483728 0.01048696668360297 -0.002822260666456722 0.9999410277040745 -0.01050954553455601 0.0027368899825801 0.9999410274483728 -0.01048696668360297 0.002822260666456722 5.715048312027202e-019 0.8671086552386754 -0.4981190420072052 5.715048312025381e-019 0.8671086552386785 -0.4981190420071999 -5.715048312027202e-019 -0.8671086552386754 0.4981190420072052 -5.715048312025381e-019 -0.8671086552386785 0.4981190420071999 0.003820269720511365 0.8682920451375475 -0.4960386374972395 0.0049414496731202 0.7085678671176957 -0.7056253678570574 -0.0049414496731202 -0.7085678671176957 0.7056253678570574 -0.003820269720511365 -0.8682920451375475 0.4960386374972395 -7.429561417819622e-018 -0.9653613948153605 -0.2609164184181239 -7.429561417819627e-018 -0.9653613948153605 -0.2609164184181246 7.429561417819622e-018 0.9653613948153605 0.2609164184181239 7.429561417819627e-018 0.9653613948153605 0.2609164184181246 -0.9999410236950654 -0.0108604323189624 1.189578101152491e-005 -0.9999410239817562 -0.01086014318859406 -7.647378754804853e-005 0.9999410239817562 0.01086014318859406 7.647378754804853e-005 0.9999410236950654 0.0108604323189624 -1.189578101152491e-005 0.004947196804022776 -0.9653740421109739 -0.2608227061858341 0.003828924557667887 -0.9647294463450653 -0.2632155669626615 -0.003828924557667887 0.9647294463450653 0.2632155669626615 -0.004947196804022776 0.9653740421109739 0.2608227061858341 -0.9999410275599662 0.01085981393770593 7.644316398962921e-005 -0.9999410273536835 0.01086009544374367 -1.190852621266681e-005 0.9999410275599662 -0.01085981393770593 -7.644316398962921e-005 0.9999410273536835 -0.01086009544374367 1.190852621266681e-005 2.286020727136626e-018 0.9664860372523969 -0.2567191847060875 2.28602072713672e-018 0.9664860372523976 -0.2567191847060854 -2.286020727136626e-018 -0.9664860372523969 0.2567191847060875 -2.28602072713672e-018 -0.9664860372523976 0.2567191847060854 0.003827393334498319 0.9670875751500726 -0.2544149623167159 0.004937611921748164 0.8670557886269709 -0.4981865909445694 -0.004937611921748164 -0.8670557886269709 0.4981865909445694 -0.003827393334498319 -0.9670875751500726 0.2544149623167159 -5.143545129757725e-018 -0.9999976392143629 -0.002172916404493806 -5.14354512975772e-018 -0.9999976392143629 -0.002172916404493386 5.143545129757725e-018 0.9999976392143629 0.002172916404493806 5.14354512975772e-018 0.9999976392143629 0.002172916404493386 -0.999941022673983 -0.01048738397334414 0.002822401655441478 -0.999941022932187 -0.01050997881948693 0.002736969591659315 0.999941022673983 0.01048738397334414 -0.002822401655441478 0.999941022932187 0.01050997881948693 -0.002736969591659315 0.00494289717588586 -0.9999856224609727 -0.002079095680684648 0.003823753939118948 -0.9999822999605859 -0.004558362792749011 -0.003823753939118948 0.9999822999605859 0.004558362792749011 -0.00494289717588586 0.9999856224609727 0.002079095680684648 -0.9999410263259161 0.01047008550038063 0.002884645539441912 -0.9999410261363435 0.01049322892617458 0.002799356372282648 0.9999410261363435 -0.01049322892617458 -0.002799356372282648 0.9999410263259161 -0.01047008550038063 -0.002884645539441912 8.00106323387303e-018 0.9999976415480206 0.002171842166549161 8.001063233873028e-018 0.9999976415480205 0.002171842166550713 -8.00106323387303e-018 -0.9999976415480206 -0.002171842166549161 -8.001063233873028e-018 -0.9999976415480205 -0.002171842166550713 0.003820960518357111 0.9999823146921165 0.004557473391502327 0.004943655417316188 0.9664498920219311 -0.2568076449055063 -0.004943655417316188 -0.9664498920219311 0.2568076449055063 -0.003820960518357111 -0.9999823146921165 -0.004557473391502327 -6.858057229063156e-018 -0.966486022918216 0.2567192386708286 -6.858057229063177e-018 -0.9664860229182158 0.2567192386708294 6.858057229063156e-018 0.966486022918216 -0.2567192386708286 6.858057229063177e-018 0.9664860229182158 -0.2567192386708294 -0.9999410247043286 -0.009399388050470537 0.005440461150824826 -0.9999410247948612 -0.009443327762755185 0.005363813286095222 0.9999410247043286 0.009399388050470537 -0.005440461150824826 0.9999410247948612 0.009443327762755185 -0.005363813286095222 0.004936272458468085 -0.9664516804695458 0.2568010563292271 0.003820755532216115 -0.9670893318392673 0.2544083844330651 -0.003820755532216115 0.9670893318392673 -0.2544083844330651 -0.004936272458468085 0.9664516804695458 -0.2568010563292271 -0.9999410256117496 0.009366813524850533 0.005496189854195041 -0.9999410253685213 0.009411196694760312 0.005419885766598052 0.9999410253685213 -0.009411196694760312 -0.005419885766598052 0.9999410256117496 -0.009366813524850533 -0.005496189854195041 3.429033357918545e-018 0.965360504839634 0.2609197112058935 3.429033357918479e-018 0.9653605048396337 0.2609197112058954 -3.429033357918545e-018 -0.965360504839634 -0.2609197112058935 -3.429033357918479e-018 -0.9653605048396337 -0.2609197112058954 0.003817824858266475 0.9647289711546364 0.263217469838665 0.004934312890925137 0.9999856557972721 0.002083448102078534 -0.004934312890925137 -0.9999856557972721 -0.002083448102078534 -0.003817824858266475 -0.9647289711546364 -0.263217469838665 -9.144078984033087e-018 -0.867110662481631 0.4981155478507642 -9.144078984033078e-018 -0.8671106624816305 0.4981155478507653 9.144078984033087e-018 0.867110662481631 -0.4981155478507642 9.144078984033078e-018 0.8671106624816305 -0.4981155478507653 -0.9999410258568779 -0.007670953598774204 0.007687735634113518 -0.9999410261583621 -0.007733206562220277 0.007625071909699455 0.9999410258568779 0.007670953598774204 -0.007687735634113518 0.9999410261583621 0.007733206562220277 -0.007625071909699455 0.004943216518040933 -0.8670551900821601 0.4981875770852226 0.003833002046245444 -0.8682878081597345 0.4960459558311885 -0.003833002046245444 0.8682878081597345 -0.4960459558311885 -0.004943216518040933 0.8670551900821601 -0.4981875770852226 -0.9999410272625215 0.00762500257451162 0.007733132154028003 -0.9999410269360286 0.00768770199564354 0.007670846638225618 0.9999410269360286 -0.00768770199564354 -0.007670846638225618 0.9999410272625215 -0.00762500257451162 -0.007733132154028003 1.854995159308181e-033 0.8649358526966459 0.501882427187809 0 0.8649358526966459 0.5018824271878087 -1.854995159308181e-033 -0.8649358526966459 -0.501882427187809 -0 -0.8649358526966459 -0.5018824271878087 0.003824655911536794 0.8637325256144357 0.5039360040747896 0.00493577675738415 0.965373481876459 0.2608249961133392 -0.00493577675738415 -0.965373481876459 -0.2608249961133392 -0.003824655911536794 -0.8637325256144357 -0.5039360040747896 -4.000534401751088e-018 -0.7086423925289491 0.7055678277181058 -4.000534401751267e-018 -0.7086423925289535 0.7055678277181015 4.000534401751088e-018 0.7086423925289491 -0.7055678277181058 4.000534401751267e-018 0.7086423925289535 -0.7055678277181015 -0.9999410250620634 -0.005419835344405121 0.009411258293619431 -0.9999410252935886 -0.005496284586928853 0.009366791902600188 0.9999410250620634 0.005419835344405121 -0.009411258293619431 0.9999410252935886 0.005496284586928853 -0.009366791902600188 0.004956122332517188 -0.7085675751092042 0.7056255581789024 0.003839165997742563 -0.7103157740092257 0.7038726887712835 -0.003839165997742563 0.7103157740092257 -0.7038726887712835 -0.004956122332517188 0.7085675751092042 -0.7056255581789024 -0.9999410286150683 0.005363601809037949 0.00944304335864537 -0.9999410283762649 0.005440312684114939 0.009399083344507243 0.9999410283762649 -0.005440312684114939 -0.009399083344507243 0.9999410286150683 -0.005363601809037949 -0.00944304335864537 1.143010565603663e-018 0.7055700372479684 0.708640192578646 1.143010565603663e-018 0.7055700372479702 0.7086401925786443 -1.143010565603663e-018 -0.7055700372479684 -0.708640192578646 -1.143010565603663e-018 -0.7055700372479702 -0.7086401925786443 0.003828663124196161 0.7038699749626737 0.7103185198801497 0.004943198463052079 0.8649741663126888 0.5017920449754302 -0.004943198463052079 -0.8649741663126888 -0.5017920449754302 -0.003828663124196161 -0.7038699749626737 -0.7103185198801497 1.143009736610772e-018 -0.5018818905357437 0.8649361640908929 1.143009736610791e-018 -0.5018818905357418 0.864936164090894 -1.143009736610791e-018 0.5018818905357418 -0.864936164090894 -1.143009736610772e-018 0.5018818905357437 -0.8649361640908929 -0.9999410255099235 -0.002799393181743322 0.01049327880009495 -0.9999410257213326 -0.002884592461343174 0.01047015786420724 0.9999410255099235 0.002799393181743322 -0.01049327880009495 0.9999410257213326 0.002884592461343174 -0.01047015786420724 0.003824873531433713 -0.5039411440157595 0.863729525783712 0.004945242852861994 -0.5017941450757408 0.8649729363054273 -0.004945242852861994 0.5017941450757408 -0.8649729363054273 -0.003824873531433713 0.5039411440157595 -0.863729525783712 -0.9999410276338193 0.002736849005709989 0.0105095628901078 -0.9999410274584727 0.002822277484269053 0.01048696119453971 0.9999410274584727 -0.002822277484269053 -0.01048696119453971 0.9999410276338193 -0.002736849005709989 -0.0105095628901078 3.143276138552654e-018 0.4981161284324221 0.8671103289636764 3.143276138552537e-018 0.4981161284324288 0.8671103289636725 -3.143276138552537e-018 -0.4981161284324288 -0.8671103289636725 -3.143276138552654e-018 -0.4981161284324221 -0.8671103289636764 0.003832358652013756 0.4960426150147506 0.8682897195731909 0.004946838745694068 0.705624759428811 0.7085684354157024 -0.004946838745694068 -0.705624759428811 -0.7085684354157024 -0.003832358652013756 -0.4960426150147506 -0.8682897195731909 1.357324303737726e-018 -0.2609183436732318 0.9653608744582605 1.357324303737725e-018 -0.2609183436732317 0.9653608744582606 -1.357324303737726e-018 0.2609183436732318 -0.9653608744582605 -1.357324303737725e-018 0.2609183436732317 -0.9653608744582606 -0.999941026412113 -7.640534256199236e-005 0.01085991989442496 -0.999941026192585 1.181962340437762e-005 0.01086020244821933 0.999941026412113 7.640534256199236e-005 -0.01085991989442496 0.999941026192585 -1.181962340437762e-005 -0.01086020244821933 0.003825647232711771 -0.2632147699247492 0.9647296768093704 0.004940850776478425 -0.2608260194767013 0.9653731794272844 -0.004940850776478425 0.2608260194767013 -0.9653731794272844 -0.003825647232711771 0.2632147699247492 -0.9647296768093704 3.143278067595227e-018 0.2567179580818204 0.9664863630689782 3.143278067595215e-018 0.2567179580818195 0.9664863630689783 -3.143278067595227e-018 -0.2567179580818204 -0.9664863630689782 -3.143278067595215e-018 -0.2567179580818195 -0.9664863630689783 0.003832480658714482 0.2544130730309406 0.9670880520216109 0.004950182655957406 0.4981916449537949 0.8670528130338454 -0.004950182655957406 -0.4981916449537949 -0.8670528130338454 -0.003832480658714482 -0.2544130730309406 -0.9670880520216109 7.858190309334453e-019 -0.002175164586431004 0.9999976343267127 7.858190309334296e-019 -0.002175164586436765 0.9999976343267127 -7.858190309334453e-019 0.002175164586431004 -0.9999976343267127 -7.858190309334296e-019 0.002175164586436765 -0.9999976343267127 0.00382758993817654 -0.004556349394965424 0.999982294460985 0.004940921873113072 -0.002084718490196847 0.9999856205165454 -0.004940921873113072 0.002084718490196847 -0.9999856205165454 -0.00382758993817654 0.004556349394965424 -0.999982294460985 0.004946892765949841 0.2568047730411928 0.9664506385714813 -0.004946892765949841 -0.2568047730411928 -0.9664506385714813</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID804\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"672\" source=\"#ID807\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1344\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID807\">-7.080247872229587 21.0145052715412 0.04500165965700093 21.74008679032289 -6.710953503131737 20.09757480725083 0.1000627746095763 20.77921931956998 0.02250082982850047 10.87004339516144 -3.355476751565869 10.04878740362542 0.05003138730478817 10.38960965978499 -3.540123936114794 10.5072526357706 0.1303669829364637 20.77914246233489 0.07534380260125198 21.74001127780054 6.933554213792702 20.05073484708986 7.196528629951274 20.99006307575776 0.03767190130062599 10.87000563890027 3.466777106896351 10.02536742354493 3.598264314975637 10.49503153787888 0.06518349146823182 10.38957123116744 -10.61044593144635 -2.826023622170461 -12.86224447874705 -2.82602362217035 -10.61044593144633 2.825940115185436 -12.86224447874711 2.825940115185495 -6.431122239373526 -1.413011811085175 -5.305222965723164 1.412970057592718 -6.431122239373552 1.412970057592747 -5.305222965723173 -1.41301181108523 -13.75322553755872 18.85673535189866 -7.109527114000408 21.00841184581578 -13.09484172604693 18.04624503956301 -6.740198911846502 20.0914898144459 -3.554763557000204 10.50420592290789 -6.547420863023467 9.023122519781506 -3.370099455923251 10.04574490722295 -6.876612768779358 9.42836767594933 -10.42638530473695 -2.905002536116535 -10.59673960971082 2.494519512677447 -4.327947130481451 -2.831682395143322 -2.163973565240725 -1.415841197571661 -5.298369804855411 1.247259756338724 -5.213192652368477 -1.452501268058267 6.962746893829194 20.04450223255975 7.225755851347815 20.9838244764124 13.29449402849827 17.95567810305388 13.85751213473528 18.80944566772061 3.612877925673907 10.4919122382062 6.647247014249137 8.977839051526939 6.928756067367642 9.404722833860303 3.481373446914597 10.02225111627987 10.61044593144633 -2.825992595741062 10.61044593144633 2.825981580630943 12.86224447874709 -2.825992595740977 12.86224447874711 2.825981580630883 5.305222965723164 1.412990790315471 6.431122239373543 -1.412996297870488 6.431122239373552 1.412990790315442 5.305222965723164 -1.412996297870531 10.59158413280459 2.507848288547653 10.43221711685011 -2.891879332533704 4.495704241856068 2.664961531154151 2.247852120928034 1.332480765577075 5.216108558425053 -1.445939666266852 5.295792066402295 1.253924144273827 -10.6104459314464 -2.825947916893278 -12.86224447874696 -2.825947916893363 -10.61044593144635 2.826018007123239 -12.86224447874705 2.826018007123342 -6.431122239373481 -1.412973958446681 -5.305222965723173 1.413009003561619 -6.431122239373526 1.413009003561671 -5.3052229657232 -1.412973958446639 -19.48876166620547 15.41386975725847 -13.77936642589772 18.84494910367416 -18.58612139372733 14.76504876496961 -13.1209585274604 18.03447090017816 -6.889683212948862 9.42247455183708 -9.293060696863666 7.382524382484806 -6.560479263730202 9.01723545008908 -9.744380833102735 7.706934878629236 -10.48787858864871 -2.764407581528367 -10.54092074314131 2.636624072452559 -4.388737822148864 -2.773106452524509 -2.194368911074432 -1.386553226262254 -5.270460371570657 1.31831203622628 -5.243939294324353 -1.382203790764184 -10.59227251636439 2.389322457437515 -4.496732087605833 2.554385096985135 -4.202713000993107 -2.847316927641705 -2.101356500496554 -1.423658463820853 -2.248366043802917 1.277192548492567 -5.296136258182196 1.194661228718757 -4.30720657991396 -2.74923276937071 -10.49869520647 2.632675389960963 -4.39962318408665 2.65699263316773 -2.199811592043325 1.328496316583865 -5.249347603234998 1.316337694980481 -2.15360328995698 -1.374616384685355 13.32051131828215 17.94377319846329 13.88355461244131 18.79753048361999 18.74912252010727 14.63692954201792 19.57388520321002 15.34696485517103 6.941777306220654 9.398765241809993 9.374561260053634 7.318464771008959 9.786942601605007 7.673482427585516 6.660255659141074 8.971886599231643 10.61044593144633 -2.825950054937781 10.61044593144633 2.826024849709162 12.86224447874698 -2.825950054937781 12.86224447874709 2.826024849709241 5.305222965723164 1.413012424854581 6.43112223937349 -1.41297502746889 6.431122239373543 1.41301242485462 5.305222965723164 -1.41297502746889 10.54035182778038 2.638199660780892 10.48866032343423 -2.762877897270078 4.442089363119534 2.720080828020509 2.221044681559767 1.360040414010254 5.244330161717117 -1.381438948635039 5.270175913890189 1.319099830390446 4.491944073349894 2.559656761580416 10.29981134249543 -3.080686268385806 4.208186488432563 -2.842408495161039 2.104093244216282 -1.421204247580519 5.149905671247714 -1.540343134192903 2.245972036674947 1.279828380790208 -10.61044593144626 -2.826007686664317 -12.86224447874695 -2.82600768666433 -10.6104459314464 2.825974081103952 -12.86224447874696 2.825974081103872 -6.431122239373472 -1.413003843332165 -5.3052229657232 1.412987040551976 -6.431122239373481 1.412987040551936 -5.305222965723129 -1.413003843332158 -23.89600667514926 10.92066306974483 -19.50998122430807 15.39728158332552 -22.81065927108942 10.47772735264272 -18.60732806298233 14.74847168761938 -9.754990612154034 7.698640791662758 -11.40532963554471 5.238863676321358 -9.303664031491167 7.374235843809688 -11.94800333757463 5.460331534872416 -10.50030773036436 -2.734916554904787 -10.52885884924632 2.666219038494773 -4.401245236452727 -2.76072003842497 -2.200622618226364 -1.380360019212485 -5.26442942462316 1.333109519247386 -5.250153865182178 -1.367458277452394 -4.32864380715561 -2.728077418327247 -10.47763817691943 2.68387523224497 -4.378491287508375 2.678448496215526 -2.189245643754187 1.339224248107763 -5.238819088459714 1.341937616122485 -2.164321903577805 -1.364038709163623 18.77018998656991 14.62024772013757 19.5949665952896 15.33027302281989 22.92595043396204 10.32077586296335 23.95620936789129 10.83867888613798 9.797483297644799 7.665136511409947 11.46297521698102 5.160387931481677 11.97810468394564 5.41933944306899 9.385094993284955 7.310123860068783 10.6104459314464 -2.825897195613247 10.61044593144633 2.826049461490449 12.86224447874695 -2.825897195613273 12.86224447874698 2.826049461490449 5.305222965723164 1.413024730745224 6.431122239373472 -1.412948597806637 6.43112223937349 1.413024730745224 5.3052229657232 -1.412948597806623 10.52887684445967 2.667030953698378 10.50094812248903 -2.734076931910342 4.430291040022829 2.732353085540517 2.215145520011415 1.366176542770259 5.250474061244517 -1.367038465955171 5.264438422229835 1.333515476849189 4.399105344315679 2.657705380890611 10.405646661895 -2.852414177822029 4.307926494970575 -2.748488817035858 2.153963247485287 -1.374244408517929 5.202823330947497 -1.426207088911014 2.199552672157839 1.328852690445306 -12.86224447874695 2.82589499537068 -10.61044593144626 2.825894995370698 -12.86224447874705 -2.82609222888195 -10.61044593144633 -2.826092228881945 -5.305222965723129 1.412947497685349 -6.431122239373526 -1.413046114440975 -5.305222965723164 -1.413046114440972 -6.431122239373472 1.41294749768534 -26.67466626827587 5.683381458330269 -23.91094160824194 10.90046653479481 -25.480634378765 5.476511141612718 -22.82558978287088 10.45753752207573 -11.95547080412097 5.450233267397406 -12.7403171893825 2.738255570806359 -11.41279489143544 5.228768761037864 -13.33733313413794 2.841690729165134 -4.407169166769916 -2.754967482411306 -10.5061668122532 -2.720959260215462 -10.52299040682837 2.680227784306265 -5.261495203414187 1.340113892153132 -5.253083406126599 -1.360479630107731 -2.203584583384958 -1.377483741205653 -4.36829736990867 2.688553868555497 -4.338942229388606 -2.718106829418196 -10.46739654333959 2.708275296133268 -5.233698271669796 1.354137648066634 -2.169471114694303 -1.359053414709098 -2.184148684954335 1.344276934277748 22.94070725863429 10.30051085556732 23.97097124693982 10.81840765627475 25.54024123667234 5.301444883669677 26.70589873035085 5.591928469817038 11.98548562346991 5.409203828137374 12.77012061833617 2.650722441834839 13.35294936517543 2.795964234908519 11.47035362931715 5.150255427783658 10.6104459314464 2.825978074745936 12.86224447874695 2.825978074745911 10.61044593144626 -2.826022509369519 12.86224447874705 -2.826022509369585 6.431122239373472 1.412989037372956 5.305222965723129 -1.41301125468476 6.431122239373526 -1.413011254684793 5.3052229657232 1.412989037372968 10.52299403178044 2.680668671248751 10.50650593923221 -2.720529992983924 4.424277996020746 2.737940602897313 2.212138998010373 1.368970301448656 5.253252969616103 -1.360264996491962 5.261497015890218 1.340334335624375 10.42739215514632 -2.802536852443821 4.328980138760369 -2.727871931832631 4.378331935230842 2.678689137250321 2.189165967615421 1.339344568625161 2.164490069380185 -1.363935965916316 5.21369607757316 -1.40126842622191 -10.61044593144633 2.826069973237937 -10.61044593144629 -2.825904747399156 -12.86224447874705 2.826069973237946 -12.86224447874705 -2.825904747399128 -5.305222965723146 -1.412952373699578 -6.431122239373526 1.413034986618973 -6.431122239373526 -1.412952373699564 -5.305222965723164 1.413034986618969 -27.63562791825015 0.05894696417114838 -26.68240515494901 5.660952007740802 -26.41417937681512 0.1022416071421344 -25.48837270451038 5.454083694207584 -13.34120257747451 2.830476003870401 -13.20708968840756 0.05112080357106722 -12.74418635225519 2.727041847103792 -13.81781395912508 0.02947348208557419 -4.411191943823121 -2.751040942821268 -10.51013701455871 -2.711656587826044 -10.51923878233571 2.689544116394612 -5.259619391167854 1.344772058197306 -5.255068507279354 -1.355828293913022 -2.20559597191156 -1.375520471410634 -4.361511748855548 2.695401719720111 -4.345629980062277 -2.711270388115964 -10.46055017487655 2.724534513404098 -5.230275087438276 1.362267256702049 -2.172814990031139 -1.355635194057982 -2.180755874427774 1.347700859860056 25.54779300121115 5.278981513532999 26.71345124453584 5.569463238081498 26.41427114481721 -0.07904357354193686 27.6356806405396 -0.03575631278366894 13.35672562226792 2.784731619040749 13.20713557240861 -0.03952178677096843 13.8178403202698 -0.01787815639183447 12.77389650060558 2.6394907567665 10.61044593144626 2.825904567781381 12.86224447874705 2.825904567781341 10.61044593144638 -2.826080473249799 12.86224447874712 -2.826080473249835 6.431122239373526 1.41295228389067 5.305222965723191 -1.4130402366249 6.431122239373561 -1.413040236624918 5.305222965723129 1.412952283890691 10.51942773562302 2.690148952244857 10.51058248831772 -2.711008433256825 4.420634634695935 2.742095775502585 2.210317317347967 1.371047887751293 5.255291244158862 -1.355504216628413 5.259713867811509 1.345074476122429 10.43808803086309 -2.778188160359191 4.339422289735736 -2.717691662957049 4.368439727116307 2.688941036790968 2.184219863558154 1.344470518395484 2.169711144867868 -1.358845831478525 5.219044015431544 -1.389094080179595 -10.61044593144629 2.825969956194813 -10.61044593144636 -2.825999911941941 -12.86224447874705 2.825969956194804 -12.86224447874705 -2.82599991194193 -5.305222965723181 -1.41299995597097 -6.431122239373525 1.412984978097402 -6.431122239373525 -1.412999955970965 -5.305222965723146 1.412984978097406 -27.63572438081653 0.03575277887220742 -26.41427583939755 0.07904742262653271 -26.71345594367574 -5.569460127254565 -25.54793886530002 -5.278983127411783 -13.20713791969877 0.03952371131326635 -13.35672797183787 -2.784730063627282 -12.77396943265001 -2.639491563705891 -13.81786219040827 0.01787638943610371 -4.414444895310771 -2.747727539370401 -10.51334257328524 -2.704033755330998 -10.51629208656035 2.697135660162628 -5.258146043280174 1.348567830081314 -5.256671286642618 -1.352016877665499 -2.207222447655385 -1.373863769685201 -4.356241648110164 2.700981605799032 -4.351142237181914 -2.705693483194667 -10.45521431322128 2.737626225312479 -5.227607156610642 1.36881311265624 -2.175571118590957 -1.352846741597333 -2.178120824055082 1.350490802899516 25.48830445552332 -5.454082925036311 26.41417720728785 -0.1022377360609355 26.68242100433726 -5.660947693454984 27.6355867030183 -0.05895047794281139 13.20708860364393 -0.05111886803046777 13.34121050216863 -2.830473846727492 13.81779335150915 -0.0294752389714057 12.74415222776166 -2.727041462518156 10.61044593144638 2.826052632890082 12.86224447874712 2.826052632890059 10.61044593144626 -2.82592204733246 12.86224447874695 -2.825922047332492 6.431122239373561 1.41302631644503 5.305222965723129 -1.41296102366623 6.431122239373472 -1.412961023666246 5.305222965723191 1.413026316445041 10.51606746666478 2.697041471798994 10.51330575549122 -2.704166435394285 4.417217997697089 2.744713837406366 2.208608998848545 1.372356918703183 5.256652877745612 -1.352083217697142 5.258033733332388 1.348520735899497 10.44465127714765 -2.762265554347846 4.345847193716227 -2.711126089156569 4.361514299577717 2.695541103625278 2.180757149788859 1.347770551812639 2.172923596858114 -1.355563044578285 5.222325638573823 -1.381132777173923 -10.61044593144636 2.826041266166125 -10.6104459314464 -2.825930766618026 -12.86224447874705 2.826041266166101 -12.86224447874691 -2.825930766618044 -5.3052229657232 -1.412965383309013 -6.431122239373526 1.41302063308305 -6.431122239373455 -1.412965383309022 -5.305222965723182 1.413020633083062 -26.70590282994665 -5.591927379275652 -25.54038650199819 -5.301448515743764 -23.97101290175442 -10.81841542886811 -22.94071136809923 -10.30052099361089 -12.77019325099909 -2.650724257871882 -11.98550645087721 -5.409207714434054 -11.47035568404961 -5.150260496805447 -13.35295141497332 -2.795963689637826 -4.417536498075453 -2.745135983150786 -10.51638582391865 -2.697463741985649 -10.51363540807846 2.703735574337612 -5.256817704039229 1.351867787168806 -5.258192911959323 -1.348731870992824 -2.208768249037727 -1.372567991575393 -4.351338578301006 2.705750945986859 -4.356258630087857 -2.700933213781691 -10.45023670146809 2.749406257350436 -5.225118350734043 1.374703128675218 -2.178129315043929 -1.350466606890846 -2.175669289150503 1.352875472993429 22.82558998950295 -10.45752259924669 25.48056850699846 -5.4765109888474 23.91084720343317 -10.90046224804534 26.67468449563205 -5.683377758338963 12.74028425349923 -2.7382554944237 11.95542360171659 -5.450231124022667 13.33734224781603 -2.841688879169482 11.41279499475147 -5.228761299623346 10.61044593144626 2.825827121602595 12.86224447874695 2.82582712160258 10.61044593144633 -2.826129032011907 12.86224447874705 -2.82612903201192 6.431122239373472 1.41291356080129 5.305222965723164 -1.413064516005953 6.431122239373526 -1.41306451600596 5.305222965723129 1.412913560801298 10.51353388990205 2.704223658516902 10.51647688693124 -2.696955842399996 4.4146364097076 2.747910046670556 2.2073182048538 1.373955023335278 5.258238443465622 -1.348477921199998 5.256766944951025 1.352111829258451 10.45043595056386 -2.749456155586584 4.351538024872898 -2.705808272904777 4.35645153003614 2.70087991621506 2.17822576501807 1.35043995810753 2.175769012436449 -1.352904136452389 5.225217975281929 -1.374728077793292 -12.86224447874691 2.825966664539562 -10.6104459314464 2.825966664539571 -12.86224447874705 -2.826015326484667 -10.61044593144629 -2.826015326484686 -5.3052229657232 1.412983332269786 -6.431122239373526 -1.413007663242334 -5.305222965723146 -1.413007663242343 -6.431122239373455 1.412983332269781 -23.95624398101459 -10.83868297384684 -22.92594750356043 -10.32078231370186 -19.59503874243783 -15.33026292526798 -18.77019605670036 -14.62023762439384 -11.46297375178022 -5.160391156850932 -9.797519371218915 -7.665131462633992 -9.385098028350182 -7.310118812196918 -11.97812199050729 -5.419341486923419 -4.420343528520512 -2.741685283211833 -10.519136567093 -2.689735512526468 -10.51025774098094 2.711469903985125 -5.25512887049047 1.355734951992562 -5.2595682835465 -1.344867756263234 -2.210171764260256 -1.370842641605917 -4.346160956957755 2.711090981816287 -4.361795749282214 -2.695581765113801 -10.44496489620798 2.762230408910285 -5.222482448103991 1.381115204455142 -2.180897874641107 -1.3477908825569 -2.173080478478878 1.355545490908144 18.60733076095817 -14.74847483060988 22.81066195964529 -10.47771276851302 19.50999293442922 -15.39728354324274 23.89591475193814 -10.92065912129808 11.40533097982264 -5.23885638425651 9.754996467214612 -7.698641771621368 11.94795737596907 -5.460329560649042 9.303665380479083 -7.374237415304939 10.61044593144633 2.826225508708167 12.86224447874705 2.826225508708164 10.61044593144644 -2.825782753959264 12.86224447874696 -2.825782753959264 6.431122239373526 1.413112754354082 5.305222965723218 -1.412891376979632 6.431122239373481 -1.412891376979632 5.305222965723164 1.413112754354084 10.51046993801221 2.711434912783619 10.51953671685669 -2.689732105727344 4.411525367456426 2.750835793495604 2.205762683728213 1.375417896747802 5.259768358428346 -1.344866052863672 5.255234969006104 1.355717456391809 10.4555289323171 -2.737359948082401 4.356556746050451 -2.700699764144963 4.351468090508527 2.705965589278195 2.175734045254263 1.352982794639098 2.178278373025226 -1.350349882072481 5.227764466158549 -1.3686799740412 -12.86224447874705 2.825979287301734 -10.61044593144629 2.825979287301716 -12.86224447874705 -2.825992100767848 -10.61044593144633 -2.825992100767798 -5.305222965723146 1.412989643650858 -6.431122239373526 -1.412996050383924 -5.305222965723164 -1.412996050383899 -6.431122239373526 1.412989643650867 -19.57395918633143 -15.34695536581981 -18.74913042428991 -14.63692005507998 -13.88360005709505 -18.79752453568512 -13.32055676393909 -17.94376725013277 -9.374565212144953 -7.31846002753999 -6.941800028547526 -9.398762267842558 -6.660278381969544 -8.971883625066383 -9.786979593165713 -7.673477682909906 -4.423865910935081 -2.737831791075885 -10.52258142340395 -2.680531625677441 -10.50600177760153 2.720649408174218 -5.253000888800764 1.360324704087109 -5.261290711701975 -1.34026581283872 -2.211932955467541 -1.368915895537943 -4.339133801438258 2.717625466155597 -4.368203459203839 -2.688987647016699 -10.43779947743348 2.778124667649001 -5.218899738716739 1.389062333824501 -2.184101729601919 -1.344493823508349 -2.169566900719129 1.358812733077798 13.12090955371273 -18.03447626008716 18.5861204811644 -14.76505058173662 13.77936550939809 -18.84494501053288 19.48876976388837 -15.41387039274213 9.2930602405822 -7.382525290868308 6.889682754699045 -9.422472505266441 9.744384881944184 -7.706935196371063 6.560454776856362 -9.01723813004358 10.61044593144644 2.825791620706781 12.86224447874696 2.825791620706781 10.61044593144629 -2.826150515554888 12.86224447874705 -2.826150515554875 6.431122239373481 1.412895810353391 5.305222965723146 -1.413075257777444 6.431122239373526 -1.413075257777438 5.305222965723218 1.412895810353391 10.50634358496391 2.720891158259654 10.52313453471532 -2.680309961522778 4.407346409174058 2.754875420631839 2.203673204587029 1.37743771031592 5.261567267357662 -1.340154980761389 5.253171792481954 1.360445579129827 10.46075794161088 -2.724776304844964 4.36172004203437 -2.695664125246008 4.345862822087661 2.711004199695371 2.17293141104383 1.355502099847685 2.180860021017185 -1.347832062623004 5.230378970805441 -1.362388152422482 -10.61044593144638 -2.825976183967614 -12.86224447874695 -2.825976183967639 -10.61044593144633 2.825990416027972 -12.86224447874705 2.825990416027897 -6.431122239373472 -1.412988091983819 -5.305222965723164 1.412995208013986 -6.431122239373526 1.412995208013948 -5.305222965723191 -1.412988091983807 -13.85755824385552 -18.80944035209259 -13.29454013808028 -17.95567278723111 -7.225792948281573 -20.98382388441372 -6.962728423460445 -20.04450400512787 -6.647270069040138 -8.977836393615556 -3.612896474140786 -10.49191194220686 -3.481364211730222 -10.02225200256394 -6.928779121927762 -9.404720176046295 -10.52875653309172 -2.667019882103738 -10.50077901065932 2.734066663135995 -4.430171035067845 -2.732341685834769 -2.215085517533923 -1.366170842917385 -5.25038950532966 1.367033331567997 -5.264378266545858 -1.333509941051869 -4.378004242621763 -2.678465056738759 -10.42692928344672 2.802797985646838 -4.328518097775763 2.728095874626715 -2.164259048887882 1.364047937313357 -5.21346464172336 1.401398992823419 -2.189002121310882 -1.339232528369379 6.740151636101647 -20.09147929057193 13.09479295026678 -18.04624987728669 7.109488848458013 -21.00842022412065 13.75322481972926 -18.85673073724269 6.547396475133392 -9.023124938643347 3.554744424229007 -10.50421011206032 6.876612409864629 -9.428365368621344 3.370075818050824 -10.04573964528597 10.61044593144629 -2.825941324107447 10.61044593144629 2.826043208161488 12.862244478747 -2.82594132410737 12.86224447874705 2.826043208161514 5.305222965723146 1.413021604080744 6.431122239373499 -1.412970662053685 6.431122239373526 1.413021604080757 5.305222965723146 -1.412970662053724 10.50036585142223 2.734971001562761 10.52890011716264 -2.666196886704789 4.401303486300014 2.760784370702243 2.200651743150007 1.380392185351122 5.264450058581321 -1.333098443352395 5.250182925711115 1.367485500781381 10.46744109647829 -2.708407758160335 4.368342022762667 -2.688678959368056 4.338997338335714 2.717948747950908 2.169498669167857 1.358974373975454 2.184171011381333 -1.344339479684028 5.233720548239147 -1.354203879080168 -10.61044593144638 2.825979469314233 -10.61044593144636 -2.826003796516174 -12.86224447874694 2.825979469314216 -12.86224447874705 -2.826003796516174 -5.305222965723181 -1.413001898258087 -6.431122239373472 1.412989734657108 -6.431122239373525 -1.413001898258087 -5.30522296572319 1.412989734657116 -6.933536276452181 -20.05073707708879 -0.1303295216944846 -20.7791541441071 -7.196566260968286 -20.990062942279 -0.07540959329038582 -21.74001114445558 -0.06516476084724229 -10.38957707205355 -3.598283130484143 -10.4950314711395 -0.03770479664519291 -10.87000557222779 -3.466768138226091 -10.0253685385444 -10.54034897368759 -2.638160548550109 -10.48865422912526 2.762966583080145 -4.442085949347874 -2.719981088299503 -2.221042974673937 -1.359990544149752 -5.24432711456263 1.381483291540072 -5.270174486843797 -1.319080274275055 -10.40551982253659 2.852631559912603 -4.307800004700079 2.748704857416722 -4.39903924405151 -2.657516153234907 -2.199519622025755 -1.328758076617453 -2.153900002350039 1.374352428708361 -5.202759911268297 1.426315779956301 -0.1000250353029242 -20.77923124592329 6.71090713895255 -20.09756546865577 -0.04506717194452021 -21.74008690407053 7.080210519352136 -21.01451483490556 3.355453569476275 -10.04878273432789 -0.0225335859722601 -10.87004345203527 3.540105259676068 -10.50725741745278 -0.05001251765146209 -10.38961562296164 10.61044593144629 2.82594632761644 12.862244478747 2.825946327616524 10.61044593144629 -2.826051856133897 12.86224447874703 -2.826051856133904 6.431122239373499 1.412973163808262 5.305222965723146 -1.413025928066949 6.431122239373517 -1.413025928066952 5.305222965723146 1.41297316380822 10.48777562266277 2.764482314003959 10.54086775703753 -2.636542126831748 4.388634374310819 2.773181238710972 2.19431718715541 1.386590619355486 5.270433878518763 -1.318271063415874 5.243887811331383 1.38224115700198 10.47753497153215 -2.683902847387294 4.378387600123009 -2.678476127130542 4.328497143600641 2.728049645213909 2.164248571800321 1.364024822606955 2.189193800061505 -1.339238063565271 5.238767485766075 -1.341951423693647 -10.61044593144636 2.826010708320168 -10.61044593144629 -2.825941511668355 -12.86224447874705 2.826010708320168 -12.86224447874705 -2.8259415116683 -5.305222965723146 -1.412970755834178 -6.431122239373526 1.413005354160084 -6.431122239373526 -1.41297075583415 -5.305222965723182 1.413005354160084 -10.59158817915015 -2.507978354408405 -10.4322800455154 2.891766839544133 -4.495704144051983 -2.664967449207419 -2.247852072025991 -1.332483724603709 -5.216140022757697 1.445883419772067 -5.295794089575077 -1.253989177204203 -4.491947727247955 -2.559759000559964 -10.30000224773623 3.080400759006474 -4.208366568860864 2.842306276570779 -2.104183284430432 1.421153138285389 -5.150001123868115 1.540200379503237 -2.245973863623977 -1.279879500279982 10.61044593144629 2.826039515876513 12.86224447874703 2.82603951587651 10.61044593144629 -2.825944977148527 12.86224447874705 -2.825944977148583 6.431122239373517 1.413019757938255 5.305222965723146 -1.412972488574264 6.431122239373526 -1.412972488574291 5.305222965723146 1.413019757938257 10.42605207004991 2.905243259815798 10.59673143731553 -2.494209468150155 4.32761740458788 2.831720453845512 2.16380870229394 1.415860226922756 5.298365718657763 -1.247104734075077 5.213026035024954 1.452621629907899 4.306952304418521 2.749261829601255 10.4985636977804 -2.632587427674483 4.399491681506321 -2.656972876258102 2.199745840753161 -1.328486438129051 5.249281848890198 -1.316293713837241 2.153476152209261 1.374630914800627 4.203006248744854 2.847276271266106 10.59228532888561 -2.389536449472878 4.496740578981384 -2.554476881970431 2.248370289490692 -1.277238440985215 5.296142664442805 -1.194768224736439 2.101503124372427 1.423638135633053</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 3 2 2 1 1 3 8 1 9 8 10 9 11 8 10 1 9 12 16 13 17 14 18 15 19 14 18 13 17 20 24 0 25 21 26 2 27 21 26 0 25 24 32 25 33 26 34 8 38 9 39 30 40 31 41 30 40 9 39 34 46 14 47 35 48 15 49 35 48 14 47 25 54 38 55 39 56 42 60 43 61 12 62 13 63 12 62 43 61 46 68 20 69 47 70 21 71 47 70 20 69 50 76 24 77 51 78 25 82 39 83 26 84 51 88 24 89 26 90 30 94 31 95 54 96 55 97 54 96 31 95 58 102 34 103 59 104 35 105 59 104 34 103 38 110 62 111 63 112 39 116 38 117 63 118 66 122 67 123 42 124 43 125 42 124 67 123 70 130 46 131 71 132 47 133 71 132 46 131 74 138 50 139 75 140 75 144 50 145 51 146 54 150 55 151 78 152 79 153 78 152 55 151 82 158 58 159 83 160 59 161 83 160 58 159 62 166 86 167 87 168 63 172 62 173 87 174 67 178 66 179 90 180 91 181 90 180 66 179 94 186 70 187 95 188 71 189 95 188 70 187 98 194 99 195 74 196 75 200 98 201 74 202 78 206 79 207 102 208 103 209 102 208 79 207 82 214 83 215 106 216 107 217 106 216 83 215 86 222 110 223 111 224 86 228 111 229 87 230 91 234 114 235 90 236 115 237 90 236 114 235 118 242 94 243 119 244 95 245 119 244 94 243 122 250 123 251 99 252 98 256 122 257 99 258 102 262 103 263 126 264 127 265 126 264 103 263 106 270 107 271 130 272 131 273 130 272 107 271 110 278 134 279 135 280 110 284 135 285 111 286 114 290 138 291 115 292 139 293 115 292 138 291 118 298 119 299 142 300 143 301 142 300 119 299 146 306 147 307 123 308 122 312 146 313 123 314 150 318 126 319 151 320 127 321 151 320 126 319 130 326 131 327 154 328 155 329 154 328 131 327 134 334 158 335 159 336 134 340 159 341 135 342 138 346 162 347 139 348 163 349 139 348 162 347 142 354 143 355 166 356 167 357 166 356 143 355 170 362 171 363 147 364 146 368 170 369 147 370 174 374 150 375 175 376 151 377 175 376 150 375 154 382 155 383 178 384 179 385 178 384 155 383 158 390 182 391 183 392 158 396 183 397 159 398 163 402 162 403 186 404 187 405 186 404 162 403 166 410 167 411 190 412 191 413 190 412 167 411 194 418 195 419 171 420 170 424 194 425 171 426 198 430 174 431 199 432 175 433 199 432 174 431 178 438 179 439 202 440 203 441 202 440 179 439 182 446 206 447 207 448 182 452 207 453 183 454 186 458 187 459 210 460 211 461 210 460 187 459 190 466 191 467 214 468 215 469 214 468 191 467 218 474 219 475 195 476 194 480 218 481 195 482 222 486 198 487 223 488 199 489 223 488 198 487 202 494 203 495 226 496 227 497 226 496 203 495 206 502 230 503 231 504 206 508 231 509 207 510 234 514 235 515 211 516 210 517 211 516 235 515 214 522 215 523 238 524 239 525 238 524 215 523 242 530 219 531 243 532 243 536 219 537 218 538 246 542 222 543 247 544 223 545 247 544 222 543 250 550 226 551 251 552 227 553 251 552 226 551 230 558 254 559 255 560 230 564 255 565 231 566 234 570 258 571 235 572 259 573 235 572 258 571 239 578 262 579 238 580 263 581 238 580 262 579 266 586 242 587 267 588 242 592 243 593 267 594 262 598 246 599 263 600 247 601 263 600 246 599 250 606 251 607 270 608 271 609 270 608 251 607 254 614 274 615 275 616 254 620 275 621 255 622 258 626 278 627 259 628 279 629 259 628 278 627 282 634 266 635 283 636 283 640 266 641 267 642 270 646 271 647 278 648 279 649 278 648 271 647 274 654 282 655 286 656 275 660 274 661 286 662 286 666 282 667 283 668</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID803\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID804\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4 4 5 5 6 6 5 5 4 4 7 7 4 12 10 13 11 14 10 13 4 12 6 15 16 20 17 21 18 22 17 21 16 20 19 23 7 28 22 29 5 30 22 29 7 28 23 31 27 35 28 36 29 37 11 42 32 43 33 44 32 43 11 42 10 45 17 50 36 51 18 52 36 51 17 50 37 53 40 57 41 58 28 59 44 64 19 65 16 66 19 65 44 64 45 67 23 72 48 73 22 74 48 73 23 72 49 75 52 79 29 80 53 81 27 85 40 86 28 87 27 91 29 92 52 93 33 98 56 99 57 100 56 99 33 98 32 101 37 106 60 107 36 108 60 107 37 106 61 109 64 113 65 114 41 115 64 119 41 120 40 121 68 126 45 127 44 128 45 127 68 126 69 129 49 134 72 135 48 136 72 135 49 134 73 137 76 141 53 142 77 143 52 147 53 148 76 149 57 154 80 155 81 156 80 155 57 154 56 157 61 162 84 163 60 164 84 163 61 162 85 165 88 169 89 170 65 171 88 175 65 176 64 177 69 182 92 183 93 184 92 183 69 182 68 185 73 190 96 191 72 192 96 191 73 190 97 193 77 197 100 198 101 199 77 203 101 204 76 205 81 210 104 211 105 212 104 211 81 210 80 213 84 218 108 219 109 220 108 219 84 218 85 221 112 225 113 226 89 227 88 231 112 232 89 233 116 238 92 239 117 240 92 239 116 238 93 241 97 246 120 247 96 248 120 247 97 246 121 249 100 253 124 254 125 255 100 259 125 260 101 261 105 266 128 267 129 268 128 267 105 266 104 269 109 274 132 275 133 276 132 275 109 274 108 277 136 281 137 282 113 283 112 287 136 288 113 289 140 294 117 295 141 296 117 295 140 294 116 297 120 302 144 303 145 304 144 303 120 302 121 305 124 309 148 310 149 311 124 315 149 316 125 317 128 322 152 323 129 324 152 323 128 322 153 325 133 330 156 331 157 332 156 331 133 330 132 333 160 337 161 338 137 339 136 343 160 344 137 345 164 350 141 351 165 352 141 351 164 350 140 353 145 358 168 359 169 360 168 359 145 358 144 361 148 365 172 366 173 367 148 371 173 372 149 373 153 378 176 379 152 380 176 379 153 378 177 381 157 386 180 387 181 388 180 387 157 386 156 389 184 393 185 394 161 395 160 399 184 400 161 401 164 406 188 407 189 408 188 407 164 406 165 409 169 414 192 415 193 416 192 415 169 414 168 417 172 421 196 422 197 423 172 427 197 428 173 429 177 434 200 435 176 436 200 435 177 434 201 437 181 442 204 443 205 444 204 443 181 442 180 445 208 449 209 450 185 451 184 455 208 456 185 457 189 462 212 463 213 464 212 463 189 462 188 465 193 470 216 471 217 472 216 471 193 470 192 473 196 477 220 478 221 479 196 483 221 484 197 485 201 490 224 491 200 492 224 491 201 490 225 493 205 498 228 499 229 500 228 499 205 498 204 501 232 505 233 506 209 507 208 511 232 512 209 513 236 518 213 519 212 520 213 519 236 518 237 521 217 526 240 527 241 528 240 527 217 526 216 529 244 533 220 534 245 535 221 539 220 540 244 541 225 546 248 547 224 548 248 547 225 546 249 549 228 554 252 555 229 556 252 555 228 554 253 557 256 561 257 562 233 563 232 567 256 568 233 569 260 574 236 575 261 576 236 575 260 574 237 577 264 582 240 583 265 584 240 583 264 582 241 585 268 589 245 590 269 591 268 595 244 596 245 597 249 602 265 603 248 604 265 603 249 602 264 605 252 610 272 611 273 612 272 611 252 610 253 613 276 617 277 618 257 619 256 623 276 624 257 625 280 630 261 631 281 632 261 631 280 630 260 633 284 637 269 638 285 639 268 643 269 644 284 645 273 650 280 651 281 652 280 651 273 650 272 653 287 657 285 658 277 659 287 663 277 664 276 665 284 669 285 670 287 671</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID803\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID804\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID808\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID811\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID809\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID810\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID809\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID813\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID813\">-0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID810\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID814\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID814\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762637497411e-018 0.2608439886717847 -0.9653809681021238 1.357324008988185e-018 0.002095735273219623 -0.999997803944421 1.428762637497407e-018 0.2608439886717864 -0.9653809681021234 1.357324008988168e-018 0.002095735273213525 -0.999997803944421 -1.357324008988185e-018 -0.002095735273219623 0.999997803944421 -1.428762637497407e-018 -0.2608439886717864 0.9653809681021234 -1.357324008988168e-018 -0.002095735273213525 0.999997803944421 -1.428762637497411e-018 -0.2608439886717847 0.9653809681021238 5.000666824631774e-019 -0.2567918074288629 -0.9664667441963111 5.000666824631841e-019 -0.2567918074288612 -0.9664667441963116 -5.000666824631841e-019 0.2567918074288612 0.9664667441963116 -5.000666824631774e-019 0.2567918074288629 0.9664667441963111 -2.286020591985056e-018 -0.4981832167412074 -0.8670717862768821 -2.286020591985096e-018 -0.4981832167412094 -0.867071786276881 2.286020591985056e-018 0.4981832167412074 0.8670717862768821 2.286020591985096e-018 0.4981832167412094 0.867071786276881 -6.858055771993708e-018 -0.7056226073428004 -0.7085878463583386 -6.858055771993613e-018 -0.7056226073427964 -0.7085878463583424 6.858055771993613e-018 0.7056226073427964 0.7085878463583424 6.858055771993708e-018 0.7056226073428004 0.7085878463583386 -8.001070223829628e-018 -0.8649741646300232 -0.5018163952309587 -8.001070223829614e-018 -0.8649741646300241 -0.5018163952309572 8.001070223829628e-018 0.8649741646300232 0.5018163952309587 8.001070223829614e-018 0.8649741646300241 0.5018163952309572 -5.715045332456655e-019 -0.9653796265175301 -0.2608489538121138 -5.715045332456722e-019 -0.96537962651753 -0.260848953812114 5.715045332456655e-019 0.9653796265175301 0.2608489538121138 5.715045332456722e-019 0.96537962651753 0.260848953812114 2.286022406958772e-018 -0.9999977996832321 -0.002097767550154592 2.286022406958698e-018 -0.9999977996832321 -0.002097767550151775 -2.286022406958772e-018 0.9999977996832321 0.002097767550154592 -2.286022406958698e-018 0.9999977996832321 0.002097767550151775 -5.1435407892633e-018 -0.9664655322690486 0.2567963686189982 -5.143540789263351e-018 -0.9664655322690482 0.2567963686189999 5.1435407892633e-018 0.9664655322690486 -0.2567963686189982 5.143540789263351e-018 0.9664655322690482 -0.2567963686189999 -8.001071306872786e-018 -0.8670714378610992 0.498183823147125 -8.001071306872821e-018 -0.8670714378611013 0.4981838231471211 8.001071306872786e-018 0.8670714378610992 -0.498183823147125 8.001071306872821e-018 0.8670714378611013 -0.4981838231471211 -5.715047892338878e-018 -0.708586537670636 0.7056239215275657 -5.715047892338916e-018 -0.7085865376706391 0.7056239215275628 5.715047892338878e-018 0.708586537670636 -0.7056239215275657 5.715047892338916e-018 0.7085865376706391 -0.7056239215275628 -3.714781434290872e-018 -0.5018152321358096 0.8649748394008253 -3.714781434290843e-018 -0.5018152321358057 0.8649748394008278 3.714781434290872e-018 0.5018152321358096 -0.8649748394008253 3.714781434290843e-018 0.5018152321358057 -0.8649748394008278 -1.357324087236548e-018 -0.2608455302381353 0.9653805515726874 -1.357324087236494e-018 -0.2608455302381308 0.9653805515726887 1.357324087236494e-018 0.2608455302381308 -0.9653805515726887 1.357324087236548e-018 0.2608455302381353 -0.9653805515726874 5.00066824341991e-019 -0.0020983946598471 0.9999977983675022 5.00066824342e-019 -0.002098394659843867 0.9999977983675022 -5.00066824342e-019 0.002098394659843867 -0.9999977983675022 -5.00066824341991e-019 0.0020983946598471 -0.9999977983675022 1.285886092699162e-018 0.2567924015669348 0.9664665863326504 1.285886092699151e-018 0.2567924015669318 0.966466586332651 -1.285886092699162e-018 -0.2567924015669348 -0.9664665863326504 -1.285886092699151e-018 -0.2567924015669318 -0.966466586332651 -2.000267021076344e-018 0.4981821975151394 0.8670723718807943 -2.000267021076362e-018 0.4981821975151401 0.867072371880794 2.000267021076344e-018 -0.4981821975151394 -0.8670723718807943 2.000267021076362e-018 -0.4981821975151401 -0.867072371880794 -4.00053674631458e-018 0.7056247595919819 0.7085857031091989 -4.000536746314618e-018 0.7056247595919799 0.7085857031092008 4.000536746314618e-018 -0.7056247595919799 -0.7085857031092008 4.00053674631458e-018 -0.7056247595919819 -0.7085857031091989 -1.21193073775685e-032 0.8649761689145231 0.5018129404568542 4.204657661605452e-033 0.8649761689145237 0.5018129404568533 -4.204657661605452e-033 -0.8649761689145237 -0.5018129404568533 1.21193073775685e-032 -0.8649761689145231 -0.5018129404568542 2.286019992337455e-018 0.9653804430920455 0.2608459317210175 2.286019992337455e-018 0.9653804430920453 0.2608459317210191 -2.286019992337455e-018 -0.9653804430920453 -0.2608459317210191 -2.286019992337455e-018 -0.9653804430920455 -0.2608459317210175 4.00053677349617e-018 0.9999978094868985 0.002093088962486192 4.000536773496116e-018 0.9999978094868985 0.002093088962490353 -4.000536773496116e-018 -0.9999978094868985 -0.002093088962490353 -4.00053677349617e-018 -0.9999978094868985 -0.002093088962486192 7.429555745771715e-018 0.9664663526289721 -0.2567932811349458 7.429555745771746e-018 0.9664663526289716 -0.256793281134948 -7.429555745771746e-018 -0.9664663526289716 0.256793281134948 -7.429555745771715e-018 -0.9664663526289721 0.2567932811349458 8.001073065904117e-018 0.8670738131462042 -0.4981796890240521 8.001073065904097e-018 0.8670738131462032 -0.498179689024054 -8.001073065904097e-018 -0.8670738131462032 0.498179689024054 -8.001073065904117e-018 -0.8670738131462042 0.4981796890240521 2.286020065195486e-018 0.7085865942299621 -0.7056238647307667 2.286020065195515e-018 0.7085865942299627 -0.705623864730766 -2.286020065195515e-018 -0.7085865942299627 0.705623864730766 -2.286020065195486e-018 -0.7085865942299621 0.7056238647307667 -5.715046975223761e-019 0.5018142835855971 -0.8649753897016226 -5.715046975224879e-019 0.5018142835856045 -0.8649753897016184 5.715046975223761e-019 -0.5018142835855971 0.8649753897016226 5.715046975224879e-019 -0.5018142835856045 0.8649753897016184</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID812\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"288\" source=\"#ID815\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID815\">-28.53282744922561 0.04706611174357161 -27.54503608652599 5.854853581020853 -27.57601917625835 -5.763931954550666 -27.52206684879615 0.04706611174358209 -26.59974397119644 -5.55814125129378 -24.74002718810177 -11.18212484729964 -23.86471360239281 -10.78458382163206 -20.21802346491327 -15.83825019581263 -19.50334285683298 -15.27606432043412 -14.3181898767466 -19.4150537567162 -13.81285613376801 -18.72650327226948 -7.442633762966584 -21.66874754397123 -7.181031656752985 -20.90077510041939 -0.05986734922203591 -21.65067841029053 -0.05986734922203147 -22.44576046162567 7.065417273707942 -20.92514846434208 7.327029141922628 -21.6931232707988 13.70921071502838 -18.77356879328679 14.21454295616055 -19.46214172533002 19.4187408495236 -15.34262380677985 20.13340493729391 -15.90483331120719 23.80482748009175 -10.8660993144682 24.68013205472282 -11.26361907399176 26.56880593685397 -5.64906110558527 27.52202780079212 -0.04706980378244907 27.54501506067751 -5.854844720127505 -26.5687879146979 5.649065240668816 -24.68017861195908 11.26362616270643 -23.80492209641044 10.86610404027797 -20.1333673911358 15.90482031523034 -19.41873183844568 15.34262262532737 -14.21458200416499 19.46211927773357 -13.70921071502846 18.77357233764413 -7.326991595764483 21.69310909336947 -7.065454819865953 20.9251390127225 0.05980164344524746 21.65067841029049 0.05980164344527855 22.44574392129143 7.180994110594869 20.90077510041938 7.442587205730431 21.66875226978101 13.81280957653182 18.72650799807924 14.31814331951038 19.41505375671623 19.50326776451671 15.27607259060124 20.2179874206012 15.8382655546944 23.86467605623466 10.78457791436985 24.73998964194365 11.18211185132277 26.59974397119641 5.558144204924854 27.57592606178605 5.763926047288433 28.53273433475351 -0.04706980378245257 13.78796303089303 2.881963023644217 13.77250753033876 -2.927422360063753 14.26636716737676 -0.02353490189122628 13.76101390039606 -0.02353490189122454 13.2998719855982 2.779072102462427 12.36999482097183 5.591055925661383 11.93233802811733 5.392288957184925 10.1089937103006 7.919132777347199 9.751633882258355 7.638036295300619 7.159071659755192 9.707526878358115 6.906404788265909 9.363253999039621 3.721293602865216 10.8343761348905 3.590497055297435 10.45038755020969 0.02990082172263927 11.22287196064572 0.02990082172262373 10.82533920514525 -3.663495797882241 10.84655454668474 -3.532727409932976 10.46256950636125 -6.854605357514229 9.386786168822065 -7.107291002082496 9.731059638866784 -9.709365919222838 7.671311312663686 -10.0666836955679 7.95241015761517 -11.90246104820522 5.433052020138987 -12.34008930597954 5.631813081353213 -13.28439395734895 2.824532620334408 -13.77251804326299 2.927426790510427 -13.76103342439808 0.02353305587179104 13.28440296842699 -2.824530552792635 12.34006602736141 -5.631809536995879 11.90241374004588 -5.433049657234099 10.06670246864696 -7.952416655603594 9.709370424761799 -7.671311903389926 7.107271478080275 -9.731070862665009 6.854605357514191 -9.386784396643396 3.663514570961314 -10.8465616353994 3.532708636853971 -10.46257423217104 -0.02993367461101574 -11.22288023081283 -0.02993367461101796 -10.82533920514526 -3.721316881483292 -10.83437377198561 -3.590515828376493 -10.4503875502097 -6.906428066884002 -9.363251636134741 -7.159094938373302 -9.707526878358099 -9.751671428416488 -7.638032160217059 -10.10901173245664 -7.919125097906314 -11.9323568011964 -5.39229191081603 -12.37001359405088 -5.591062423649821 -13.29987198559822 -2.77907062564689 -13.78800958812917 -2.881965977275333 -14.2664137246128 0.0235330558717858 12.86224447874696 -2.929792278906809 12.86224447874703 2.929743190342062 15.27491705001244 -2.92979227890684 15.2749170500126 2.929743190342119 6.431122239373517 1.464871595171031 7.637458525006222 -1.46489613945342 7.637458525006302 1.46487159517106 6.431122239373481 -1.464896139453405 -12.86224447874705 -2.92973185074145 -15.27491705001257 -2.929731850741423 -12.86224447874703 2.929750167992304 -15.2749170500126 2.929750167992251 -7.637458525006284 -1.464865925370711 -6.431122239373517 1.464875083996152 -7.637458525006302 1.464875083996125 -6.431122239373526 -1.464865925370725 -12.86224447874705 2.929721881732527 -12.86224447874709 -2.929852871110114 -15.27491705001257 2.929721881732551 -15.27491705001264 -2.929852871110166 -6.431122239373543 -1.464926435555057 -7.637458525006283 1.464860940866276 -7.637458525006319 -1.464926435555083 -6.431122239373525 1.464860940866263 -12.86224447874695 -2.929677555424782 -15.27491705001234 -2.929677555424733 -12.86224447874709 2.929823033031287 -15.27491705001264 2.929823033031245 -7.637458525006169 -1.464838777712367 -6.431122239373543 1.464911516515643 -7.63745852500632 1.464911516515623 -6.431122239373472 -1.464838777712391 -15.27491705001234 2.929697425929927 -12.86224447874695 2.929697425929892 -15.2749170500125 -2.929855373115951 -12.86224447874691 -2.929855373116002 -6.431122239373472 1.464848712964946 -7.637458525006249 -1.464927686557976 -6.431122239373455 -1.464927686558001 -7.637458525006169 1.464848712964963 -12.86224447874691 2.92974286903891 -12.86224447874709 -2.929773314130085 -15.2749170500125 2.929742869038943 -15.27491705001257 -2.929773314130076 -6.431122239373543 -1.464886657065043 -7.637458525006249 1.464871434519471 -7.637458525006284 -1.464886657065038 -6.431122239373455 1.464871434519455 -15.27491705001257 2.929540399646405 -12.86224447874709 2.929540399646413 -15.27491705001243 -2.930000664061414 -12.86224447874695 -2.930000664061421 -6.431122239373543 1.464770199823206 -7.637458525006213 -1.465000332030707 -6.431122239373472 -1.465000332030711 -7.637458525006284 1.464770199823202 -12.86224447874695 2.9299607810872 -12.86224447874695 -2.929581822242644 -15.27491705001243 2.929960781087207 -15.27491705001232 -2.929581822242648 -6.431122239373472 -1.464790911121322 -7.637458525006213 1.464980390543604 -7.63745852500616 -1.464790911121324 -6.431122239373472 1.4649803905436 -12.86224447874695 2.929734008047279 -12.86224447874698 -2.929795632432642 -15.27491705001232 2.929734008047276 -15.27491705001264 -2.929795632432599 -6.43112223937349 -1.464897816216321 -7.63745852500616 1.464867004023638 -7.63745852500632 -1.4648978162163 -6.431122239373472 1.46486700402364 -15.27491705001264 2.929854278460836 -12.86224447874698 2.929854278460752 -15.27491705001246 -2.929664031079308 -12.86224447874705 -2.929664031079275 -6.43112223937349 1.464927139230376 -7.637458525006231 -1.464832015539654 -6.431122239373526 -1.464832015539638 -7.63745852500632 1.464927139230418 -12.86224447874705 2.929799501924695 -12.86224447874709 -2.929746866326544 -15.27491705001246 2.929799501924643 -15.2749170500126 -2.929746866326596 -6.431122239373543 -1.464873433163272 -7.637458525006231 1.464899750962321 -7.637458525006302 -1.464873433163298 -6.431122239373526 1.464899750962348 -12.86224447874695 -2.929774255369613 -15.2749170500125 -2.92977425536968 -12.86224447874709 2.929742564000939 -15.2749170500126 2.929742564000883 -7.637458525006249 -1.46488712768484 -6.431122239373543 1.46487128200047 -7.637458525006302 1.464871282000442 -6.431122239373472 -1.464887127684806 -12.86224447874693 -2.929781790797601 -15.27491705001246 -2.929781790797626 -12.86224447874695 2.929741567953739 -15.2749170500125 2.92974156795366 -7.637458525006231 -1.464890895398813 -6.431122239373472 1.464870783976869 -7.637458525006249 1.46487078397683 -6.431122239373464 -1.4648908953988 12.86224447874693 -2.929772829085486 12.86224447874707 2.929790045178396 15.27491705001246 -2.929772829085463 15.27491705001257 2.929790045178342 6.431122239373535 1.464895022589198 7.637458525006231 -1.464886414542731 7.637458525006284 1.464895022589171 6.431122239373464 -1.464886414542743 12.86224447874707 -2.9297580530314 12.86224447874705 2.929757835224654 15.27491705001257 -2.929758053031452 15.2749170500126 2.929757835224672 6.431122239373526 1.464878917612327 7.637458525006284 -1.464879026515726 7.637458525006302 1.464878917612336 6.431122239373535 -1.4648790265157 12.86224447874705 2.929803538710713 15.2749170500125 2.929803538710692 12.86224447874705 -2.929750667340226 15.2749170500126 -2.929750667340216 7.637458525006249 1.464901769355346 6.431122239373526 -1.464875333670113 7.637458525006302 -1.464875333670108 6.431122239373526 1.464901769355357 12.86224447874705 2.929593042074726 15.27491705001246 2.929593042074761 12.86224447874705 -2.92993527925525 15.2749170500125 -2.929935279255278 7.637458525006231 1.464796521037381 6.431122239373526 -1.464967639627625 7.637458525006249 -1.464967639627639 6.431122239373526 1.464796521037363 12.86224447874696 2.929842954384198 15.27491705001232 2.929842954384168 12.86224447874705 -2.9296825896425 15.27491705001246 -2.929682589642478 7.63745852500616 1.464921477192084 6.431122239373526 -1.46484129482125 7.637458525006231 -1.464841294821239 6.431122239373481 1.464921477192099 15.2749170500125 2.929780138522509 15.27491705001232 -2.929740962824745 12.86224447874705 2.92978013852247 12.86224447874696 -2.929740962824737 7.63745852500616 -1.464870481412373 6.431122239373526 1.464890069261235 6.431122239373481 -1.464870481412369 7.637458525006249 1.464890069261254 15.27491705001248 2.92958429256624 15.2749170500125 -2.9299561138927 12.862244478747 2.929584292566244 12.86224447874705 -2.929956113892731 7.637458525006249 -1.46497805694635 6.431122239373499 1.464792146283122 6.431122239373526 -1.464978056946366 7.63745852500624 1.46479214628312 15.27491705001243 2.929938126060052 15.27491705001248 -2.929568316003488 12.86224447874695 2.929938126060063 12.862244478747 -2.929568316003465 7.63745852500624 -1.464784158001744 6.431122239373472 1.464969063030032 6.431122239373499 -1.464784158001733 7.637458525006213 1.464969063030026 15.27491705001244 2.929762392715948 15.27491705001243 -2.929777731100098 12.86224447874698 2.929762392715941 12.86224447874695 -2.929777731100067 7.637458525006213 -1.464888865550049 6.43112223937349 1.464881196357971 6.431122239373472 -1.464888865550033 7.637458525006222 1.464881196357974 12.86224447874698 -2.929833042641436 12.86224447874698 2.929710500811676 15.27491705001244 -2.929833042641431 15.27491705001246 2.929710500811587 6.43112223937349 1.464855250405838 7.637458525006222 -1.464916521320715 7.637458525006231 1.464855250405794 6.43112223937349 -1.464916521320718 12.86224447874696 2.929826448053173 15.27491705001244 2.92982644805314 12.86224447874698 -2.929692188965083 15.27491705001246 -2.929692188965185 7.637458525006222 1.46491322402657 6.43112223937349 -1.464846094482541 7.637458525006231 -1.464846094482593 6.431122239373481 1.464913224026587</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 12 12 13 13 11 11 11 11 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 24 24 25 25 23 23 22 22 23 23 25 25 3 3 1 1 26 26 1 1 27 27 26 26 26 26 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 34 34 33 33 35 35 33 33 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 24 24 24 24 46 46 25 25 47 47 25 25 46 46 96 96 97 97 98 98 99 99 98 98 97 97 104 104 105 105 97 106 99 107 97 106 105 105 104 112 108 113 105 114 109 115 105 114 108 113 112 120 113 121 108 122 109 123 108 122 113 121 113 128 112 129 116 130 117 131 116 130 112 129 117 136 120 137 116 138 121 139 116 138 120 137 121 144 120 145 124 146 125 147 124 146 120 145 125 152 128 153 124 154 129 155 124 154 128 153 128 160 132 161 129 162 133 163 129 162 132 161 133 168 132 169 136 170 137 171 136 170 132 169 137 176 140 177 136 178 141 179 136 178 140 177 144 184 145 185 140 186 141 187 140 186 145 185 148 192 149 193 144 194 145 195 144 194 149 193 148 200 152 201 149 202 153 203 149 202 152 201 152 208 156 209 153 210 157 211 153 210 156 209 160 216 161 217 156 218 157 219 156 218 161 217 164 224 165 225 160 226 161 227 160 226 165 225 168 232 169 233 164 234 165 235 164 234 169 233 172 240 169 241 173 242 168 243 173 242 169 241 176 248 172 249 177 250 173 251 177 250 172 249 180 256 176 257 181 258 177 259 181 258 176 257 184 264 180 265 185 266 181 267 185 266 180 265 185 272 188 273 184 274 189 275 184 274 188 273 96 280 98 281 188 282 189 283 188 282 98 281</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID811\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID812\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">48 48 49 49 50 50 49 49 48 48 51 51 51 51 48 48 52 52 52 52 48 48 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59 58 58 59 59 60 60 60 60 59 59 61 61 60 60 61 61 62 62 62 62 61 61 63 63 62 62 63 63 64 64 64 64 63 63 65 65 65 65 63 63 66 66 65 65 66 66 67 67 67 67 66 66 68 68 67 67 68 68 69 69 69 69 68 68 70 70 69 69 70 70 71 71 71 71 70 70 72 72 71 71 72 72 73 73 49 49 74 74 75 75 74 74 49 49 51 51 75 75 74 74 76 76 75 75 76 76 77 77 77 77 76 76 78 78 77 77 78 78 79 79 79 79 78 78 80 80 79 79 80 80 81 81 81 81 80 80 82 82 81 81 82 82 83 83 83 83 82 82 84 84 83 83 84 84 85 85 85 85 84 84 86 86 85 85 86 86 87 87 85 85 87 87 88 88 88 88 87 87 89 89 88 88 89 89 90 90 90 90 89 89 91 91 90 90 91 91 92 92 92 92 91 91 93 93 92 92 93 93 94 94 94 94 93 93 73 73 94 94 73 73 72 72 94 94 72 72 95 95 100 100 101 101 102 102 101 101 100 100 103 103 106 108 100 109 102 110 100 109 106 108 107 111 110 116 106 117 111 118 106 117 110 116 107 119 114 124 110 125 111 126 110 125 114 124 115 127 115 132 118 133 119 134 118 133 115 132 114 135 122 140 118 141 123 142 118 141 122 140 119 143 122 148 126 149 127 150 126 149 122 148 123 151 130 156 126 157 131 158 126 157 130 156 127 159 134 164 131 165 135 166 131 165 134 164 130 167 134 172 138 173 139 174 138 173 134 172 135 175 142 180 138 181 143 182 138 181 142 180 139 183 146 188 142 189 143 190 142 189 146 188 147 191 150 196 147 197 146 198 147 197 150 196 151 199 154 204 150 205 155 206 150 205 154 204 151 207 158 212 155 213 159 214 155 213 158 212 154 215 162 220 158 221 159 222 158 221 162 220 163 223 166 228 163 229 162 230 163 229 166 228 167 231 170 236 167 237 166 238 167 237 170 236 171 239 170 244 174 245 171 246 174 245 170 244 175 247 175 252 178 253 174 254 178 253 175 252 179 255 179 260 182 261 178 262 182 261 179 260 183 263 183 268 186 269 182 270 186 269 183 268 187 271 190 276 187 277 191 278 187 277 190 276 186 279 101 284 190 285 191 286 190 285 101 284 103 287</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID811\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID812\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID816\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID819\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID817\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID818\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID817\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID821\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID821\">-0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.8079789814554541 -1.288720216101408 0.7405885836107005</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID818\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID822\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID822\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762080881852e-018 0.5017398950377386 -0.8650185418403001 1.428762080882819e-018 0.5017398950377737 -0.8650185418402798 5.715050599695061e-019 0.7085275831213713 -0.7056831186560921 5.715050599694446e-019 0.7085275831213729 -0.7056831186560907 -1.428762080882819e-018 -0.5017398950377737 0.8650185418402798 -5.715050599695061e-019 -0.7085275831213713 0.7056831186560921 -5.715050599694446e-019 -0.7085275831213729 0.7056831186560907 -1.428762080881852e-018 -0.5017398950377386 0.8650185418403001 -9.286952941388763e-019 0.2607625543991116 -0.9654029677928541 -9.286952941388407e-019 0.2607625543991058 -0.9654029677928556 9.286952941388407e-019 -0.2607625543991058 0.9654029677928556 9.286952941388763e-019 -0.2607625543991116 0.9654029677928541 -7.14381254244789e-020 0.002012725556721015 -0.9999979744658651 -7.143812542448248e-020 0.002012725556727595 -0.9999979744658651 7.14381254244789e-020 -0.002012725556721015 0.9999979744658651 7.143812542448248e-020 -0.002012725556727595 0.9999979744658651 -8.572571838953487e-019 -0.2568741755083704 -0.9664448551039501 -8.572571838953785e-019 -0.2568741755083748 -0.9664448551039488 8.572571838953785e-019 0.2568741755083748 0.9664448551039488 8.572571838953487e-019 0.2568741755083704 0.9664448551039501 -2.000267235225424e-018 -0.4982546428953847 -0.8670307438800501 -2.000267235225416e-018 -0.4982546428953812 -0.8670307438800519 2.000267235225416e-018 0.4982546428953812 0.8670307438800519 2.000267235225424e-018 0.4982546428953847 0.8670307438800501 1.045111957692991e-006 -0.7056819897722565 -0.7085287074706123 1.045111957693077e-006 -0.7056819897722642 -0.7085287074706047 -1.045111957692991e-006 0.7056819897722565 0.7085287074706123 -1.045111957693077e-006 0.7056819897722642 0.7085287074706047 1.703558339410631e-006 -0.8650181793754788 -0.5017405199373778 1.703555472269594e-006 -0.8650186691821249 -0.5017396754926639 -1.703558339410631e-006 0.8650181793754788 0.5017405199373778 -1.703555472269594e-006 0.8650186691821249 0.5017396754926639 6.584446236329073e-007 -0.9654035292207907 -0.2607604758540074 6.584446236328554e-007 -0.9654035292207932 -0.2607604758539974 -6.584446236329073e-007 0.9654035292207907 0.2607604758540074 -6.584446236328554e-007 0.9654035292207932 0.2607604758539974 -6.286553020284208e-018 -0.999997973793477 -0.002013059596886011 -6.286553020284232e-018 -0.999997973793477 -0.002013059596885226 6.286553020284208e-018 0.999997973793477 0.002013059596886011 6.286553020284232e-018 0.999997973793477 0.002013059596885226 -8.001067536444891e-018 -0.9664454482419091 0.2568719439185513 -8.001067536444849e-018 -0.9664454482419086 0.2568719439185535 8.001067536444891e-018 0.9664454482419091 -0.2568719439185513 8.001067536444849e-018 0.9664454482419086 -0.2568719439185535 -6.858064911194342e-018 -0.8670284530084556 0.4982586293018563 -6.858064911194386e-018 -0.8670284530084529 0.4982586293018606 6.858064911194342e-018 0.8670284530084556 -0.4982586293018563 6.858064911194386e-018 0.8670284530084529 -0.4982586293018606 -1.714512912291224e-018 -0.7085272435711623 0.7056834595747947 -1.714512912290773e-018 -0.7085272435711557 0.7056834595748014 1.714512912291224e-018 0.7085272435711623 -0.7056834595747947 1.714512912290773e-018 0.7085272435711557 -0.7056834595748014 2.000267850227171e-018 -0.50174509130913 0.8650155278069827 2.000267850227025e-018 -0.5017450913091236 0.8650155278069864 -2.000267850227171e-018 0.50174509130913 -0.8650155278069827 -2.000267850227025e-018 0.5017450913091236 -0.8650155278069864 -9.286958702616151e-019 -0.260760369696751 0.9654035578946318 -9.286958702615267e-019 -0.2607603696967824 0.9654035578946233 9.286958702615267e-019 0.2607603696967824 -0.9654035578946233 9.286958702616151e-019 0.260760369696751 -0.9654035578946318 -9.286950770806969e-019 -0.002010277094332024 0.9999979793909607 -9.286950770806418e-019 -0.002010277094311723 0.9999979793909607 9.286950770806969e-019 0.002010277094332024 -0.9999979793909607 9.286950770806418e-019 0.002010277094311723 -0.9999979793909607 5.715048573591528e-019 0.2568730418156993 0.9664451564306947 5.715048573588878e-019 0.2568730418156698 0.9664451564307025 -5.715048573591528e-019 -0.2568730418156993 -0.9664451564306947 -5.715048573588878e-019 -0.2568730418156698 -0.9664451564307025 2.000267221612171e-018 0.4982543657066573 0.8670309031714246 2.000267221612142e-018 0.4982543657066462 0.8670309031714313 -2.000267221612142e-018 -0.4982543657066462 -0.8670309031714313 -2.000267221612171e-018 -0.4982543657066573 -0.8670309031714246 4.572040930296596e-018 0.7056830209675885 0.70852768041768 4.572040930296914e-018 0.7056830209676014 0.7085276804176672 -4.572040930296596e-018 -0.7056830209675885 -0.70852768041768 -4.572040930296914e-018 -0.7056830209676014 -0.7085276804176672 -1.143009385792095e-018 0.8650179182247008 0.5017409701730615 -1.14300938579175e-018 0.8650179182246978 0.5017409701730664 1.14300938579175e-018 -0.8650179182246978 -0.5017409701730664 1.143009385792095e-018 -0.8650179182247008 -0.5017409701730615 -2.857524059865316e-018 0.9654022143532302 0.2607653437899289 -2.857524059864703e-018 0.9654022143532335 0.2607653437899165 2.857524059864703e-018 -0.9654022143532335 -0.2607653437899165 2.857524059865316e-018 -0.9654022143532302 -0.2607653437899289 8.572576927432834e-018 0.9999979724130936 0.002013745192837834 8.572576927432837e-018 0.9999979724130936 0.002013745192837731 -8.572576927432837e-018 -0.9999979724130936 -0.002013745192837731 -8.572576927432834e-018 -0.9999979724130936 -0.002013745192837834 1.028708566471029e-017 0.9664447927409177 -0.2568744101384266 1.028708566471013e-017 0.9664447927409161 -0.2568744101384328 -1.028708566471013e-017 -0.9664447927409161 0.2568744101384328 -1.028708566471029e-017 -0.9664447927409177 0.2568744101384266 1.714514848941008e-018 0.8670306548123127 -0.4982547978853114 1.714514848940942e-018 0.8670306548123118 -0.4982547978853128 -1.714514848940942e-018 -0.8670306548123118 0.4982547978853128 -1.714514848941008e-018 -0.8670306548123127 0.4982547978853114</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID820\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"288\" source=\"#ID823\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID823\">-29.72717074101174 0.0470661117435751 -28.69876344623657 6.098035481956177 -28.72973752489099 -6.007128032915357 -28.53282744922561 0.0470661117435786 -27.57601917625835 -5.76393195455067 -25.77444337003271 -11.65193295607063 -24.74002718810198 -11.18212484729966 -21.06255070275907 -16.50266951408773 -20.21802346491317 -15.83825019581262 -14.91540807987584 -20.22880748247863 -14.31818987674653 -19.41505375671621 -7.751770807285503 -22.57637002932572 -7.442633762966477 -21.6687475439712 -0.05986734922217803 -23.38535305011864 -0.05986734922200039 -22.44576046162567 7.327029141922557 -21.6931232707988 7.636146662239294 -22.60070086096038 14.21454295616059 -19.46214172533004 14.81174313713382 -20.27586000751904 20.13340493729391 -15.90483331120722 20.97795770652724 -16.56924435931522 24.68013205472289 -11.26361907399176 25.71453772372937 -11.73342718276273 27.5450150606774 -5.854844720127502 28.53273433475355 -0.04706980378241763 28.69872439823219 -6.09804847793303 -27.54503608652592 5.854853581020838 -25.71460380496778 11.73344963035913 -24.68017861195898 11.26362616270643 -20.97801477668778 16.56924081495793 -20.13336739113572 15.90482031523034 -14.81179119621629 20.27586473332886 -14.21458200416507 19.46211927773357 -7.636156424240395 22.60071976419947 -7.326991595764447 21.69310909336947 0.05980164344520748 22.44574392129145 0.05980164344520748 23.38537904207242 7.442587205730467 21.66875226978099 7.751723499126264 22.57635112608661 14.31814331951052 19.41505375671623 14.91535251156158 20.22880748247864 20.2179874206012 15.8382655546944 21.062597259995 16.50268132861221 24.73998964194376 11.18211185132279 25.7744043220282 11.65192704880838 27.57592606178616 5.76392604728844 28.72971049165699 6.007126260736706 29.72717074101186 -0.04706980378243859 14.36485524582849 3.003563130368353 14.34936219911609 -3.049024238966515 14.86358537050593 -0.0235349018912193 14.26636716737677 -0.02353490189120882 13.78796303089308 2.88196302364422 12.8872021610141 5.825963524404191 12.36999482097188 5.591055925661395 10.5312986299975 8.251340664306103 10.1089937103006 7.919132777347201 7.45767625578079 10.11440374123932 7.159071659755262 9.707526878358113 3.875861749563132 11.28817556304331 3.721293602865234 10.83437613489049 0.02990082172260374 11.69268952103621 0.02990082172260374 11.22287196064572 -3.818078212120197 11.30035988209974 -3.663495797882224 10.84655454668473 -7.107291002082534 9.731059638866787 -7.405895598108147 10.13793236666443 -10.06668369556786 7.952410157615169 -10.48900738834389 8.284620407478963 -12.34008930597949 5.631813081353215 -12.85730190248389 5.866724815179567 -13.77251804326296 2.927426790510419 -14.34938172311829 3.049017740978088 -14.2664137246128 0.0235330558717893 13.7725075303387 -2.927422360063751 12.85726886186469 -5.866713591381362 12.34006602736145 -5.631809536995879 10.48897885326362 -8.28462217965761 10.06670246864696 -7.952416655603611 7.405871568566908 -10.13793000375952 7.107271478080293 -9.731070862665019 3.818073331119647 -11.30035043048019 3.663514570961278 -10.8465616353994 -0.02993367461108901 -11.69267652505932 -0.0299336746110002 -11.22288023081284 -3.721316881483239 -10.8343737719856 -3.875885403642752 -11.28818501466286 -7.159094938373267 -9.707526878358106 -7.45770403993792 -10.11440374123932 -10.10901173245659 -7.919125097906307 -10.53127535137954 -8.251334757043864 -12.37001359405099 -5.591062423649832 -12.88722168501636 -5.825966478035316 -13.78800958812917 -2.881965977275335 -14.3648687624455 -3.003564016457678 -14.86358537050587 0.02353305587178755 15.27491705001234 3.052369011605174 16.15957962910908 3.052369011605017 15.2749170500125 -3.052489088735269 16.15957962910919 -3.05248908873528 8.079789814554541 1.526184505802509 7.637458525006249 -1.526244544367635 8.079789814554594 -1.52624454436764 7.637458525006169 1.526184505802587 15.27491705001257 3.052393434432461 16.1595796291089 3.052393434432479 15.27491705001234 -3.05240474671089 16.15957962910908 -3.052404746711059 8.079789814554452 1.526196717216239 7.637458525006169 -1.526202373355445 8.079789814554541 -1.526202373355529 7.637458525006284 1.52619671721623 15.27491705001257 -3.052357776085104 15.27491705001246 3.052465505274848 16.1595796291089 -3.052357776085077 16.15957962910905 3.05246550527482 7.637458525006231 1.526232752637424 8.079789814554452 -1.526178888042539 8.079789814554523 1.52623275263741 7.637458525006284 -1.526178888042552 -15.27491705001257 -3.052373540330827 -16.15957962910892 -3.05237354033085 -15.27491705001246 3.052416952581463 -16.15957962910905 3.052416952581491 -8.079789814554461 -1.526186770165425 -7.637458525006231 1.526208476290732 -8.079789814554523 1.526208476290746 -7.637458525006284 -1.526186770165414 -15.27491705001257 -3.052465806413236 -16.1595796291089 -3.052465806413212 -15.27491705001257 3.052375467693421 -16.15957962910892 3.052375467693405 -8.079789814554452 -1.526232903206606 -7.637458525006284 1.526187733846711 -8.079789814554461 1.526187733846702 -7.637458525006284 -1.526232903206618 -15.27491705001257 3.052369534568098 -15.2749170500126 -3.052461191049092 -16.1595796291089 3.052369534568117 -16.15957962910917 -3.052461191049134 -7.637458525006302 -1.526230595524546 -8.079789814554452 1.526184767284059 -8.079789814554585 -1.526230595524567 -7.637458525006284 1.526184767284049 -15.27486216783468 3.05239166573236 -15.2748497760961 -3.052427910611382 -16.15952474692822 3.052390554465293 -16.15951235518956 -3.05243276531964 -7.637424888048051 -1.526213955305691 -8.079762373464108 1.526195277232647 -8.079756177594778 -1.52621638265982 -7.637431083917338 1.52619583286618 -16.15954325896589 3.052475085430112 -15.27488067987029 3.052479826373591 -16.15953903824096 -3.052340909406815 -15.27487645914545 -3.052340530900251 -7.637440339935146 1.526239913186796 -8.079769519120479 -1.526170454703408 -7.637438229572727 -1.526170265450126 -8.079771629482943 1.526237542715056 -16.15957962910889 3.052418165791704 -15.2749170500125 3.052418165791669 -16.15957962910889 -3.052394161251984 -15.2749170500123 -3.052394161251988 -7.637458525006249 1.526209082895835 -8.079789814554443 -1.526197080625992 -7.637458525006151 -1.526197080625994 -8.079789814554443 1.526209082895852 -16.15957962910888 3.052374063043219 -15.2749170500123 3.052374063043222 -16.15957962910892 -3.052455040458447 -15.27491705001232 -3.052455040458483 -7.63745852500615 1.526187031521611 -8.079789814554459 -1.526227520229223 -7.637458525006159 -1.526227520229242 -8.079789814554442 1.52618703152161 -16.15957962910892 3.05231841192716 -15.27491705001232 3.052318411927153 -16.15957962910915 -3.052488191674192 -15.27491705001257 -3.052488191674224 -7.63745852500616 1.526159205963577 -8.079789814554577 -1.526244095837096 -7.637458525006284 -1.526244095837112 -8.079789814554461 1.52615920596358 -15.27491705001257 3.052651720185259 -15.27491705001232 -3.052197806521551 -16.15957962910915 3.05265172018527 -16.1595796291089 -3.052197806521591 -7.63745852500616 -1.526098903260776 -8.079789814554577 1.526325860092635 -8.079789814554452 -1.526098903260796 -7.637458525006284 1.52632586009263 -15.27491705001232 3.05224551536068 -15.27491705001257 -3.0525561576722 -16.1595796291089 3.052245515360641 -16.15957962910915 -3.052556157672223 -7.637458525006284 -1.5262780788361 -8.079789814554452 1.526122757680321 -8.079789814554577 -1.526278078836111 -7.63745852500616 1.52612275768034 -15.27491705001248 -3.052423131493245 -16.15957962910908 -3.052423131493118 -15.27491705001257 3.052388317079474 -16.15957962910915 3.052388317079447 -8.079789814554541 -1.526211565746559 -7.637458525006284 1.526194158539737 -8.079789814554577 1.526194158539723 -7.63745852500624 -1.526211565746623 -15.27491705001248 3.052553877330089 -15.27491705001243 -3.052249109402259 -16.15957962910908 3.052553877330226 -16.15957962910915 -3.052249109402342 -7.637458525006213 -1.52612455470113 -8.079789814554541 1.526276938665113 -8.079789814554577 -1.526124554701171 -7.63745852500624 1.526276938665044 15.27491705001243 -3.052416690054004 15.27491705001246 3.052416535812357 16.15957962910915 -3.05241669005392 16.15957962910915 3.052416535812224 7.637458525006231 1.526208267906179 8.079789814554577 -1.52620834502696 8.079789814554577 1.526208267906112 7.637458525006213 -1.526208345027002 15.27491705001246 3.052438862169398 16.15957962910905 3.052438862169345 15.27491705001246 -3.052369155945408 16.15957962910915 -3.052369155945526 8.079789814554523 1.526219431084672 7.637458525006231 -1.526184577972704 8.079789814554577 -1.526184577972763 7.637458525006231 1.526219431084699 15.27491705001246 -3.052388094537107 15.27491705001264 3.05243197721078 16.15957962910905 -3.052388094537172 16.15957962910919 3.052431977210855 7.63745852500632 1.52621598860539 8.079789814554523 -1.526194047268586 8.079789814554594 1.526215988605428 7.637458525006231 -1.526194047268554 16.15957962910915 3.052318676844975 16.15957962910919 -3.052517161824061 15.27491705001257 3.052318676844949 15.27491705001264 -3.052517161824126 8.079789814554594 -1.526258580912031 7.637458525006284 1.526159338422474 7.63745852500632 -1.526258580912063 8.079789814554577 1.526159338422487 16.1595796291089 3.052433055023369 16.15957962910915 -3.052362761715934 15.27491705001246 3.05243305502342 15.27491705001257 -3.052362761715977 8.079789814554575 -1.526181380857967 7.63745852500623 1.52621652751171 7.637458525006283 -1.526181380857988 8.07978981455445 1.526216527511684 15.27491705001232 3.052501452363784 16.15957962910901 3.052501452363778 15.27491705001246 -3.052324167367494 16.1595796291089 -3.052324167367532 8.079789814554506 1.526250726181889 7.637458525006231 -1.526162083683747 8.079789814554452 -1.526162083683766 7.63745852500616 1.526250726181892 15.27491705001232 3.052376857360129 16.15957962910922 3.052376857360143 15.27491705001232 -3.052456883429417 16.15957962910901 -3.052456883429418 8.07978981455461 1.526188428680072 7.637458525006159 -1.526228441714708 8.079789814554504 -1.526228441714709 7.637458525006159 1.526188428680064 16.15957962910908 3.052455255490922 16.15957962910922 -3.052351123981224 15.2749170500125 3.052455255490937 15.27491705001232 -3.052351123981252 8.079789814554612 -1.526175561990612 7.637458525006249 1.526227627745469 7.63745852500616 -1.526175561990626 8.079789814554541 1.526227627745461 15.2749170500125 3.052429041414679 16.15957962910919 3.052429041414678 15.2749170500125 -3.052393678245672 16.15957962910908 -3.052393678245677 8.079789814554593 1.526214520707339 7.637458525006248 -1.526196839122836 8.079789814554539 -1.526196839122838 7.637458525006248 1.52621452070734</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 14 14 15 15 13 13 13 13 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 24 24 25 25 23 23 22 22 23 23 25 25 3 3 1 1 26 26 1 1 27 27 26 26 26 26 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 34 34 33 33 35 35 33 33 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 24 24 24 24 46 46 25 25 47 47 25 25 46 46 96 96 97 97 98 98 99 99 98 98 97 97 104 104 105 105 96 106 97 107 96 106 105 105 104 112 108 113 105 114 109 115 105 114 108 113 112 120 113 121 108 122 109 123 108 122 113 121 116 128 117 129 112 130 113 131 112 130 117 129 116 136 120 137 117 138 121 139 117 138 120 137 120 144 124 145 121 146 125 147 121 146 124 145 125 152 124 153 128 154 129 155 128 154 124 153 128 160 129 161 132 162 133 163 132 162 129 161 132 168 133 169 136 170 137 171 136 170 133 169 136 176 137 177 140 178 141 179 140 178 137 177 141 184 144 185 140 186 145 187 140 186 144 185 144 192 148 193 145 194 149 195 145 194 148 193 152 200 153 201 148 202 149 203 148 202 153 201 152 208 156 209 153 210 157 211 153 210 156 209 156 216 160 217 157 218 161 219 157 218 160 217 164 224 165 225 160 226 161 227 160 226 165 225 164 232 168 233 165 234 169 235 165 234 168 233 172 240 169 241 173 242 168 243 173 242 169 241 176 248 172 249 177 250 173 251 177 250 172 249 180 256 181 257 177 258 176 259 177 258 181 257 184 264 185 265 180 266 181 267 180 266 185 265 188 272 185 273 189 274 184 275 189 274 185 273 98 280 99 281 189 282 188 283 189 282 99 281</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID819\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID820\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">48 48 49 49 50 50 49 49 48 48 51 51 51 51 48 48 52 52 52 52 48 48 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59 58 58 59 59 60 60 60 60 59 59 61 61 60 60 61 61 62 62 62 62 61 61 63 63 62 62 63 63 64 64 64 64 63 63 65 65 65 65 63 63 66 66 65 65 66 66 67 67 67 67 66 66 68 68 67 67 68 68 69 69 69 69 68 68 70 70 69 69 70 70 71 71 71 71 70 70 72 72 71 71 72 72 73 73 49 49 74 74 75 75 74 74 49 49 51 51 75 75 74 74 76 76 75 75 76 76 77 77 77 77 76 76 78 78 77 77 78 78 79 79 79 79 78 78 80 80 79 79 80 80 81 81 81 81 80 80 82 82 81 81 82 82 83 83 83 83 82 82 84 84 83 83 84 84 85 85 83 83 85 85 86 86 86 86 85 85 87 87 86 86 87 87 88 88 88 88 87 87 89 89 88 88 89 89 90 90 90 90 89 89 91 91 90 90 91 91 92 92 92 92 91 91 93 93 92 92 93 93 94 94 94 94 93 93 73 73 94 94 73 73 72 72 94 94 72 72 95 95 100 100 101 101 102 102 101 101 100 100 103 103 106 108 103 109 100 110 103 109 106 108 107 111 110 116 106 117 111 118 106 117 110 116 107 119 114 124 110 125 111 126 110 125 114 124 115 127 118 132 115 133 114 134 115 133 118 132 119 135 122 140 118 141 123 142 118 141 122 140 119 143 126 148 123 149 127 150 123 149 126 148 122 151 126 156 130 157 131 158 130 157 126 156 127 159 131 164 134 165 135 166 134 165 131 164 130 167 135 172 138 173 139 174 138 173 135 172 134 175 139 180 142 181 143 182 142 181 139 180 138 183 146 188 142 189 147 190 142 189 146 188 143 191 150 196 147 197 151 198 147 197 150 196 146 199 154 204 150 205 151 206 150 205 154 204 155 207 158 212 154 213 159 214 154 213 158 212 155 215 162 220 159 221 163 222 159 221 162 220 158 223 166 228 162 229 163 230 162 229 166 228 167 231 170 236 166 237 171 238 166 237 170 236 167 239 171 244 174 245 170 246 174 245 171 244 175 247 175 252 178 253 174 254 178 253 175 252 179 255 182 260 178 261 179 262 178 261 182 260 183 263 186 268 183 269 182 270 183 269 186 268 187 271 186 276 190 277 187 278 190 277 186 276 191 279 102 284 190 285 191 286 190 285 102 284 101 287</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID819\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID820\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID824\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID827\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID825\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID826\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID825\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID829\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID829\">0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035627 -0.3578613696232667 1.324001740206996 0.8481914425151409 -0.35666972965487 1.31956378430982 0.848191442515148 0.680868640605695 1.185278447723705 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035609 0.6831636119784472 1.189256688460091 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151351 -0.6860480580346522 1.182286995116669 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035627 -0.6883468591155371 1.186265836591588 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151387 0.9644406560028058 0.9686694797989038 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151387 0.6860518126504815 -1.182286394378136 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035627 0.6883464085616424 -1.186264860391474 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151333 -0.6808676644055873 -1.185277922077488 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151351 -0.3508928026645748 -1.321112338057901 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461098018 -1.366914445870862 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035609 0.002993367461099794 -1.371508293416812 0.8481914425151387 0.002993367461098018 -1.366914445870862</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID826\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID830\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID830\">-0.004280981954898488 0.002184853357166072 -0.9999884497379504 -0.00428062881210491 -0.2567048492765375 -0.9664803653333486 -0.004280981952864871 0.002183299616824533 -0.999988453131486 -0.004280628810128404 -0.2567062461107217 -0.9664799943220406 0.00428062881210491 0.2567048492765375 0.9664803653333486 0.004280981952864871 -0.002183299616824533 0.999988453131486 0.004280628810128404 0.2567062461107217 0.9664799943220406 0.004280981954898488 -0.002184853357166072 0.9999884497379504 -0.00428163879072645 0.2609252439511864 -0.9653495142373459 -0.004281638786373565 0.2609241043035803 -0.9653498222730853 0.004281638786373565 -0.2609241043035803 0.9653498222730853 0.00428163879072645 -0.2609252439511864 0.9653495142373459 -0.00428036937316088 -0.4981009455189371 -0.867108486010355 -0.004280369372364794 -0.4981020763274863 -0.8671078364288279 0.004280369372364794 0.4981020763274863 0.8671078364288279 0.00428036937316088 0.4981009455189371 0.867108486010355 -0.004282256413127314 0.5018847979083912 -0.8649238763662763 -0.004282256411797012 0.5018836420376206 -0.864924547076262 0.004282256411797012 -0.5018836420376206 0.864924547076262 0.004282256413127314 -0.5018847979083912 0.8649238763662763 -0.004279848671315645 -0.7055541584054808 -0.708643078320874 -0.004279848666279009 -0.705555224291424 -0.7086420170794786 0.004279848666279009 0.705555224291424 0.7086420170794786 0.004279848671315645 0.7055541584054808 0.708643078320874 -0.004281892798924736 0.7086451305096495 -0.7055520848236652 -0.0042818928041386 0.7086441543526577 -0.7055530652586102 0.004281892798924736 -0.7086451305096495 0.7055520848236652 0.0042818928041386 -0.7086441543526577 0.7055530652586102 -0.004279390712496793 -0.8649233212950592 -0.5018857789328697 -0.004279390712642355 -0.8649226644398191 -0.5018869109206303 0.004279390712496793 0.8649233212950592 0.5018857789328697 0.004279390712642355 0.8649226644398191 0.5018869109206303 -0.004281359113397748 0.8671102266169878 -0.4980979069022258 -0.004281359112962919 0.8671110173025061 -0.4980965304403946 0.004281359113397748 -0.8671102266169878 0.4980979069022258 0.004281359112962919 -0.8671110173025061 0.4980965304403946 -0.004280028371695556 -0.965348902363104 -0.2609275341229588 -0.004280028364445989 -0.9653485192918171 -0.260928951360894 0.004280028371695556 0.965348902363104 0.2609275341229588 0.004280028364445989 0.9653485192918171 0.260928951360894 -0.004281468576927181 0.9664802791478765 -0.2567051597554433 -0.004281468578594852 0.9664806579291112 -0.2567037336614381 0.004281468576927181 -0.9664802791478765 0.2567051597554433 0.004281468578594852 -0.9664806579291112 0.2567037336614381 -0.004280447389466799 -0.9999884506049243 -0.002185503811303777 -0.00428044738673919 -0.9999884540002806 -0.002183949701340417 0.004280447389466799 0.9999884506049243 0.002185503811303777 0.00428044738673919 0.9999884540002806 0.002183949701340417 -0.004280716988099828 0.9999884543797312 0.002183247421708556 -0.004280716977420427 0.9999884509864663 0.002184801100054285 0.004280716988099828 -0.9999884543797312 -0.002183247421708556 0.004280716977420427 -0.9999884509864663 -0.002184801100054285 -0.004279849309618837 -0.9664798642304419 0.2567067488925707 -0.004279849305227373 -0.9664794597692433 0.256708271651063 0.004279849309618837 0.9664798642304419 -0.2567067488925707 0.004279849305227373 0.9664794597692433 -0.256708271651063 -0.004279550911469715 0.9653495572584627 0.2609251190377931 -0.004279550914307764 0.9653499365637356 0.2609237157108637 0.004279550911469715 -0.9653495572584627 -0.2609251190377931 0.004279550914307764 -0.9653499365637356 -0.2609237157108637 -0.004279366945403445 -0.8671083352607096 0.4981012165614008 -0.004279366943950962 -0.8671074945846607 0.4981026800306053 0.004279366945403445 0.8671083352607096 -0.4981012165614008 0.004279366943950962 0.8671074945846607 -0.4981026800306053 -0.004280137578717258 0.8649244175304505 0.5018838833653839 -0.004280137569418133 0.8649251493016499 0.5018826222613267 0.004280137578717258 -0.8649244175304505 -0.5018838833653839 0.004280137569418133 -0.8649251493016499 -0.5018826222613267 -0.004279503727668084 -0.7086453482994729 0.7055518805738978 -0.004279503731088207 -0.708644065358699 0.7055531691373169 0.004279503727668084 0.7086453482994729 -0.7055518805738978 0.004279503731088207 0.708644065358699 -0.7055531691373169 -0.004280820620104977 0.7055523445921659 0.7086448783525611 -0.004280820622493526 0.7055537732692776 0.7086434559073291 0.004280820620104977 -0.7055523445921659 -0.7086448783525611 0.004280820622493526 -0.7055537732692776 -0.7086434559073291 -0.004279856787992766 -0.5018869261655592 0.8649226532875417 -0.004279856789499468 -0.5018853069956759 0.8649235928379554 0.004279856789499468 0.5018853069956759 -0.8649235928379554 0.004279856787992766 0.5018869261655592 -0.8649226532875417 -0.004280325596508693 0.4981002179615462 0.8671089041633976 -0.004280325599923767 0.4981013730755701 0.8671082406210833 0.004280325599923767 -0.4981013730755701 -0.8671082406210833 0.004280325596508693 -0.4981002179615462 -0.8671089041633976 -0.004280271874951132 -0.2609268930036005 0.9653490745736302 -0.004280271879293935 -0.2609251102153328 0.965349556446656 0.004280271874951132 0.2609268930036005 -0.9653490745736302 0.004280271879293935 0.2609251102153328 -0.965349556446656 -0.004280237446015731 0.256704930550933 0.9664803454795375 -0.004280237443075813 0.2567064328691884 0.966479946450524 0.004280237443075813 -0.2567064328691884 -0.966479946450524 0.004280237446015731 -0.256704930550933 -0.9664803454795375 -0.004280534258190548 -0.002185305100490302 0.9999884506673475 -0.004280534257630148 -0.002183750939241975 0.9999884540624979 0.004280534257630148 0.002183750939241975 -0.9999884540624979 0.004280534258190548 0.002185305100490302 -0.9999884506673475</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID828\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"192\" source=\"#ID831\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"384\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID831\">16.95653956603488 2.371301515704383 16.72264492845211 -3.239903109249033 -4.493906290557893 2.933910303838056 -4.728586341386173 -2.696140844848241 8.361322464226053 -1.619951554624516 -2.246953145278947 1.466955151919028 -2.364293170693086 -1.348070422424121 8.478269783017442 1.185650757852192 -16.72708843421687 -3.225761471737048 -16.95324444480733 2.385627098572262 4.724869775837585 -2.700043436932254 4.497951786028732 2.930243137362552 -8.476622222403663 1.192813549286131 2.362434887918793 -1.350021718466127 2.248975893014366 1.465121568681276 -8.363544217108437 -1.612880735868524 16.81096911007859 -2.94358313064525 -4.650377267339515 -2.779097278612486 16.8845397929188 2.670381715873585 -4.576559850465017 2.853718301221435 -2.325188633669757 -1.389548639306243 8.442269896459401 1.335190857936793 -2.288279925232509 1.426859150610718 8.405484555039294 -1.471791565322625 -16.81138055951746 -2.942128119354722 -16.88407653528399 2.671868009696685 4.649988302077555 -2.779450835817336 4.577047968530231 2.853401927377038 -8.442038267641994 1.335934004848342 2.324994151038777 -1.389725417908668 2.288523984265115 1.426700963688519 -8.405690279758728 -1.471064059677361 16.82856995092033 -2.880655093693082 -4.633528105959257 -2.796443786905329 16.86821789600814 2.73349127372693 -4.593746885068567 2.836588465561602 -2.316764052979628 -1.398221893452664 8.434108948004072 1.366745636863465 -2.296873442534284 1.418294232780801 8.414284975460165 -1.440327546846541 -16.86799572512858 2.733954476238326 4.593973352083259 2.836523718218725 -16.82868561620813 -2.880198764756717 4.633415836383876 -2.796499481809613 2.296986676041629 1.418261859109362 -8.414342808104063 -1.440099382378358 2.316707918191938 -1.398249740904807 -8.433997862564288 1.366977238119163 -4.601950849363642 2.828377057234473 16.86025756741855 2.763878992145286 -4.625368403466258 -2.804667302171011 16.83691785074735 -2.850323934358243 8.430128783709277 1.381939496072643 -2.312684201733129 -1.402333651085505 8.418458925373676 -1.425161967179121 -2.300975424681821 1.414188528617236 4.602104112393668 2.82847806387397 4.625321723249752 -2.804583041773303 -16.86010532359727 2.764157331875902 -16.83696537367468 -2.850054064282261 2.312660861624876 -1.402291520886652 -8.430052661798635 1.382078665937951 -8.41848268683734 -1.42502703214113 2.301052056196834 1.414239031936985 -4.607345360204824 2.822837129837691 16.85496166571006 2.783686677685021 -4.620007726224934 -2.810278447092262 16.84234184440923 -2.830551225302984 8.42748083285503 1.391843338842511 -2.310003863112467 -1.405139223546131 8.421170922204613 -1.415275612651492 -2.303672680102412 1.411418564918846 4.60747210773349 2.823105087936984 4.619984400096286 -2.809976726827539 -16.85483529246015 2.784011826299676 -16.84236541118916 -2.830188792266932 2.309992200048143 -1.404988363413769 -8.427417646230072 1.392005913149838 -8.421182705594578 -1.415094396133466 2.303736053866745 1.411552543968492 16.85066790715681 2.799634925290195 16.84661280771467 -2.814593484597931 -4.611683716472709 2.81851480107025 -4.615752153365286 -2.814589810342543 8.423306403857335 -1.407296742298966 -2.305841858236355 1.409257400535125 -2.307876076682643 -1.407294905171272 8.425333953578404 1.399817462645097 4.611775836897464 2.818552915409719 4.615710287708393 -2.814561377896678 -16.85057595863294 2.799689708006414 -16.84665468625737 -2.814561337141796 2.307855143854197 -1.407280688948339 -8.425287979316471 1.399844854003207 -8.423327343128683 -1.407280668570898 2.305887918448732 1.409276457704859 16.84669296982185 2.814502371962669 16.85061274891556 -2.799737230245905 -4.615671991269269 2.81450515557137 -4.611738806717524 -2.818601982494837 8.425306374457781 -1.399868615122952 -2.307835995634635 1.407252577785685 -2.305869403358762 -1.409300991247418 8.423346484910923 1.407251185981335 -16.8466368184738 2.8146110332504 4.615728155487668 2.814609614993135 -16.85069104536705 -2.799615976508483 4.611660413818911 -2.818490959721189 2.307864077743834 1.407304807496568 -8.425345522683527 -1.399807988254242 2.305830206909456 -1.409245479860595 -8.423318409236899 1.4073055166252 16.84241677434491 2.830407356558213 16.85488174045585 -2.783822084320475 -4.619932794077956 2.810191868402641 -4.607425572770014 -2.822910867387297 8.427440870227924 -1.391911042160237 -2.309966397038978 1.405095934201321 -2.303712786385007 -1.411455433693649 8.421208387172452 1.415203678279107 -16.84234483497815 2.830335643376079 4.620004557216717 2.810058274546969 -16.85496420879204 -2.783885263391031 4.607342998617686 -2.823023215688412 2.310002278608359 1.405029137273484 -8.427482104396022 -1.391942631695516 2.303671499308843 -1.411511607844206 -8.421172417489073 1.41516782168804 16.83702861702645 2.850080276962824 16.86015697964571 -2.764128945178626 -4.625258428899851 2.804623625608292 -4.602052139363532 -2.828459741286155 8.430078489822854 -1.382064472589313 -2.312629214449926 1.402311812804146 -2.301026069681766 -1.414229870643077 8.418514308513226 1.425040138481412 -16.83687108925824 2.850382876463817 4.625415304190483 2.804724666538888 -16.86021964902263 -2.763862037364986 4.601989023202723 -2.828331854061645 2.312707652095241 1.402362333269444 -8.430109824511312 -1.381931018682493 2.300994511601362 -1.414165927030822 -8.418435544629118 1.425191438231908 16.86805470199861 -2.733989105220428 -4.593914234547086 -2.836549647844413 16.82876921869526 2.880127300163432 -4.633332011394352 2.796435274276993 -2.296957117273543 -1.418274823922207 8.414384609347628 1.440063650081716 -2.316666005697176 1.398217637138496 8.434027350999303 -1.366994552610214 -16.86820930785124 -2.733438833984344 -16.82855802294511 2.880666116932571 4.593755417573123 -2.836541457565994 4.633540441894999 2.796500506525937 -8.414279011472553 1.440333058466285 2.296877708786562 -1.418270728782997 2.316770220947499 1.398250253262969 -8.434104653925619 -1.366719416992172 16.81145811289813 2.942066762377245 16.88411675624425 -2.671921487800922 -4.649910896461154 2.779418514975413 -4.577007912454192 -2.853430276512045 8.442058378122125 -1.335960743900461 -2.324955448230577 1.389709257487706 -2.288503956227096 -1.426715138256022 8.405729056449063 1.471033381188622 -16.88454891053257 -2.670436317040372 -16.81098620107458 2.943539550568779 4.576551096657347 -2.853740970625229 4.650360429397084 2.779075221069198 -8.405493100537289 1.47176977528439 2.288275548328674 -1.426870485312614 2.325180214698542 1.389537610534599 -8.442274455266283 -1.335218158520186 16.95324496794547 -2.385640017490524 -4.497954252672803 -2.930183803648829 16.72711886388277 3.225770011282844 -4.724839231514265 2.700053591480886 -2.248977126336401 -1.465091901824415 8.363559431941386 1.612885005641422 -2.362419615757132 1.350026795740443 8.476622483972733 -1.192820008745262 -16.95654291422808 -2.371371245078102 -16.72266364813068 3.23986216331764 4.493904609166451 -2.933941311184089 4.728569530450034 2.696148379731193 -8.361331824065339 1.61993108165882 2.246952304583226 -1.466970655592045 2.364284765225017 1.348074189865597 -8.478271457114039 -1.185685622539051</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 3 2 2 1 1 8 8 0 9 9 10 2 11 9 10 0 9 12 16 13 17 1 18 3 19 1 18 13 17 16 24 8 25 17 26 9 27 17 26 8 25 20 32 21 33 12 34 13 35 12 34 21 33 16 40 17 41 24 42 25 43 24 42 17 41 21 48 20 49 28 50 29 51 28 50 20 49 25 56 32 57 24 58 33 59 24 58 32 57 28 64 29 65 36 66 37 67 36 66 29 65 32 72 40 73 33 74 41 75 33 74 40 73 37 80 44 81 36 82 45 83 36 82 44 81 40 88 48 89 41 90 49 91 41 90 48 89 44 96 52 97 45 98 53 99 45 98 52 97 49 104 48 105 56 106 57 107 56 106 48 105 52 112 60 113 53 114 61 115 53 114 60 113 56 120 57 121 64 122 65 123 64 122 57 121 60 128 68 129 61 130 69 131 61 130 68 129 64 136 65 137 72 138 73 139 72 138 65 137 76 144 77 145 68 146 69 147 68 146 77 145 80 152 72 153 81 154 73 155 81 154 72 153 76 160 84 161 77 162 85 163 77 162 84 161 88 168 80 169 89 170 81 171 89 170 80 169 92 176 93 177 84 178 85 179 84 178 93 177 92 184 88 185 93 186 89 187 93 186 88 185</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID827\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID828\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4 4 5 5 6 6 5 5 4 4 7 7 7 12 10 13 5 14 10 13 7 12 11 15 14 20 4 21 6 22 4 21 14 20 15 23 11 28 18 29 10 30 18 29 11 28 19 31 22 36 15 37 14 38 15 37 22 36 23 39 18 44 26 45 27 46 26 45 18 44 19 47 23 52 30 53 31 54 30 53 23 52 22 55 34 60 26 61 35 62 26 61 34 60 27 63 31 68 38 69 39 70 38 69 31 68 30 71 42 76 35 77 43 78 35 77 42 76 34 79 46 84 38 85 47 86 38 85 46 84 39 87 50 92 43 93 51 94 43 93 50 92 42 95 54 100 47 101 55 102 47 101 54 100 46 103 50 108 58 109 59 110 58 109 50 108 51 111 62 116 55 117 63 118 55 117 62 116 54 119 59 124 66 125 67 126 66 125 59 124 58 127 70 132 63 133 71 134 63 133 70 132 62 135 67 140 74 141 75 142 74 141 67 140 66 143 78 148 70 149 71 150 70 149 78 148 79 151 74 156 82 157 75 158 82 157 74 156 83 159 86 164 78 165 87 166 78 165 86 164 79 167 83 172 90 173 82 174 90 173 83 172 91 175 94 180 86 181 87 182 86 181 94 180 95 183 91 188 94 189 90 190 94 189 91 188 95 191</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID827\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID828\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID832\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID835\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID833\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID834\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID833\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID837\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID837\">-0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID834\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID838\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID838\">-0.9082492736520922 -0.1075708369032307 -0.4043658887176134 -0.9082500329767456 0.0007516867371791146 -0.4184271890840621 -0.9082492745359263 -0.1074503430176522 -0.4043979217186361 -0.9082500344776737 0.0008765598473410654 -0.4184269428635523 0.9082500329767456 -0.0007516867371791146 0.4184271890840621 0.9082492745359263 0.1074503430176522 0.4043979217186361 0.9082500344776737 -0.0008765598473410654 0.4184269428635523 0.9082492736520922 0.1075708369032307 0.4043658887176134 -0.9082506050830315 0.1091435923435764 -0.4039412266860695 -0.9082506046354215 0.1090229161292429 -0.4039738146688064 0.9082506050830315 -0.1091435923435764 0.4039412266860695 0.9082506046354215 -0.1090229161292429 0.4039738146688064 -0.9082482405359982 -0.2085640638359936 -0.3627480735158756 -0.9082482427168129 -0.2084560405691885 -0.3628101552493231 0.9082482427168129 0.2084560405691885 0.3628101552493231 0.9082482405359982 0.2085640638359936 0.3627480735158756 -0.9082491615154812 0.2099738865158217 -0.3619315233409027 -0.9082491645414247 0.209866585626633 -0.3619937449006862 0.9082491615154812 -0.2099738865158217 0.3619315233409027 0.9082491645414247 -0.209866585626633 0.3619937449006862 -0.908246568910591 -0.2953461497473803 -0.2964098883160561 -0.9082465712478778 -0.2952584160994148 -0.2964972740834871 0.9082465712478778 0.2952584160994148 0.2964972740834871 0.908246568910591 0.2953461497473803 0.2964098883160561 -0.9082473909658394 0.2964969062159364 -0.295256263960858 -0.9082473912470552 0.2964072177461657 -0.2953463010787428 0.9082473909658394 -0.2964969062159364 0.295256263960858 0.9082473912470552 -0.2964072177461657 0.2953463010787428 -0.9082474712734822 -0.3619966089766116 -0.2098689734447648 -0.9082474673790382 -0.3619345433051908 -0.2099760090153772 0.9082474673790382 0.3619345433051908 0.2099760090153772 0.9082474712734822 0.3619966089766116 0.2098689734447648 -0.9082484639023035 0.3628095932970937 -0.2084560549149473 -0.908248460723703 0.3627472515016051 -0.2085645346674632 0.9082484639023035 -0.3628095932970937 0.2084560549149473 0.908248460723703 -0.3627472515016051 0.2085645346674632 -0.9082511440516279 -0.403972551902783 -0.1090231013962746 -0.9082511405035336 -0.4039399392223229 -0.1091439016853281 0.9082511405035336 0.4039399392223229 0.1091439016853281 0.9082511440516279 0.403972551902783 0.1090231013962746 -0.9082495969998886 0.4043972754492359 -0.1074500495987548 -0.908249596623721 0.404365212715167 -0.1075706511027334 0.9082495969998886 -0.4043972754492359 0.1074500495987548 0.908249596623721 -0.404365212715167 0.1075706511027334 -0.9082514553289773 -0.4184241025164883 -0.0007512163908289862 -0.9082514585655601 -0.4184238527729456 -0.0008760389129415635 0.9082514585655601 0.4184238527729456 0.0008760389129415635 0.9082514553289773 0.4184241025164883 0.0007512163908289862 -0.9082505851953316 0.4184257471815965 0.0008766914283048339 -0.9082505828752954 0.418425995279139 0.0007517854403690022 0.9082505851953316 -0.4184257471815965 -0.0008766914283048339 0.9082505828752954 -0.418425995279139 -0.0007517854403690022 -0.9082490302929679 -0.4043664017146101 0.1075709632580378 -0.9082490333533763 -0.4043984855098431 0.1074502597949525 0.9082490302929679 0.4043664017146101 -0.1075709632580378 0.9082490333533763 0.4043984855098431 -0.1074502597949525 -0.9082505682264853 0.4039407217202315 0.1091457679088157 -0.9082505698761868 0.4039735439268114 0.1090242089024017 0.9082505698761868 -0.4039735439268114 -0.1090242089024017 0.9082505682264853 -0.4039407217202315 -0.1091457679088157 -0.9082486494484744 -0.3627467689190975 0.2085645521505931 -0.9082486481231678 -0.3628091637581442 0.2084559998550159 0.9082486494484744 0.3627467689190975 -0.2085645521505931 0.9082486481231678 0.3628091637581442 -0.2084559998550159 -0.9082483661589828 0.3619328652568282 0.209975013790977 -0.9082483686281029 0.3619950655307562 0.2098677522054624 0.9082483686281029 -0.3619950655307562 -0.2098677522054624 0.9082483661589828 -0.3619328652568282 -0.209975013790977 -0.9082506197478876 -0.2964042575108705 0.2953393435643274 -0.9082506167666825 -0.2964919493568599 0.2952513185567682 0.9082506197478876 0.2964042575108705 -0.2953393435643274 0.9082506167666825 0.2964919493568599 -0.2952513185567682 -0.90824801524225 0.295256581095625 0.2964946780774259 -0.9082480131803266 0.2953441289205035 0.2964074764006107 0.9082480131803266 -0.2953441289205035 -0.2964074764006107 0.90824801524225 -0.295256581095625 -0.2964946780774259 -0.9082502482972585 -0.2098653041311184 0.3619917686770259 -0.9082502533146946 -0.2099721613881187 0.3619297843446915 0.9082502482972585 0.2098653041311184 -0.3619917686770259 0.9082502533146946 0.2099721613881187 -0.3619297843446915 -0.9082493159583445 0.2084540785156279 0.3628085958344974 -0.9082493143264231 0.2085638932647763 0.3627454830205625 0.9082493143264231 -0.2085638932647763 -0.3627454830205625 0.9082493159583445 -0.2084540785156279 -0.3628085958344974 -0.9082485879667209 -0.1090232989628911 0.4039782453792602 -0.9082485869772989 -0.1091444703673541 0.4039455270726108 0.9082485879667209 0.1090232989628911 -0.4039782453792602 0.9082485869772989 0.1091444703673541 -0.4039455270726108 -0.9082511981082746 0.1074499269831152 0.4043937120260486 -0.9082511946939681 0.107569634709001 0.4043618936368158 0.9082511946939681 -0.107569634709001 -0.4043618936368158 0.9082511981082746 -0.1074499269831152 -0.4043937120260486 -0.9082509090819749 -0.0008773896933384607 0.4184250426768125 -0.9082509125925561 -0.000752468406024658 0.4184252783545552 0.9082509090819749 0.0008773896933384607 -0.4184250426768125 0.9082509125925561 0.000752468406024658 -0.4184252783545552</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID836\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"96\" source=\"#ID839\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"192\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID839\">-0.4760628845307824 14.03057851338626 -4.293205956690974 12.84291939320605 -0.4520778451937232 13.27480097802665 -4.542699139165971 13.57301502275557 0.5509308441970694 14.02887609692691 4.364922551878471 12.82793928468497 4.615115580867611 13.5578951401443 0.5262263144851437 13.27311290434169 -5.460294461359973 13.36213689623786 -8.700673353099646 11.37978305347014 -5.167760694787276 12.6419962786728 -9.200497557095831 12.02549805985014 5.529599615995658 13.34448409699993 8.762464862805501 11.35038498428026 9.262826653654555 11.9958490506677 5.236482058585006 12.62448183080072 -9.850935596277633 11.70231789836429 -12.28897078609038 9.104402023815595 -9.321713719835559 11.07126571357382 -12.99216162462306 9.619703772942543 9.908805909503144 11.67203388437624 12.33621713888454 9.064756673517946 13.03968184989838 9.57981702183138 9.379208433918393 11.04116980481799 -13.3525193171996 9.309346053102276 -14.85691765236203 6.30484509550176 -12.63441802294289 8.80693061639283 -15.70518465917443 6.660142705593261 13.39616309803314 9.270430520945231 14.8880027823071 6.259267456761666 15.73641299818794 6.614399205461904 12.67792072561648 8.768150175948428 -15.85447136542427 6.437527688275801 -16.37252037394564 3.234169117888085 -15.00127260492471 6.089614567846071 -17.30591011175082 3.414281264193431 15.88339658588965 6.393267460950476 16.38777273810398 3.18595789568538 17.32115792288254 3.365996716390026 15.03012559609594 6.045417211916162 -17.34754144405634 3.280923251307002 -16.88054368036996 0.07271501916888513 -16.4134956469478 3.102928287245775 -17.84158673383741 0.07271931827509812 17.36184157354511 3.233666018167433 16.88077042213474 0.02413597414263838 17.84180938374336 0.0241319283408874 16.42781917250773 3.055684031940567 -16.88076908897763 -0.02413745264056083 -17.36185361655219 -3.23366717946566 -16.42782986626323 -3.055684287849731 -17.84181214267261 -0.02413337543565036 16.88054701756033 -0.07271698671732821 17.34751954079551 -3.280922069425896 17.84158597896712 -0.07272124314771755 16.4134818910754 -3.102935319425331 -16.3877919244592 -3.185951882083677 -15.88340587967561 -6.393257993900284 -15.03015255389675 -6.045413601251539 -17.3211786305619 -3.365991047406652 16.37250085551697 -3.234178633475433 15.85445263950981 -6.437525411168315 17.3058822788614 -3.414283177660608 15.00124014052953 -6.089609450990861 -14.8880059792257 -6.259281506746234 -13.39617422300147 -9.270432463617809 -12.67787981034289 -8.768156485934776 -15.73639731955359 -6.614409163697935 14.85687775431837 -6.30484505352637 13.35248086666035 -9.309357964262242 15.70515852596362 -6.660145524742545 12.63438003713352 -8.806939261801423 -12.33617009607184 -9.064760126010743 -9.908816153169438 -11.67204170025707 -9.379206298367013 -11.04117126199523 -13.03968789063718 -9.579816255505966 12.28893385344979 -9.104409654094303 9.850928337812352 -11.70231246863167 12.99212427033344 -9.61971454210361 9.321679514522458 -11.07126762305999 -8.762497622106514 -11.35038698937884 -5.529610632032458 -13.34446963758883 -5.236511265108912 -12.62449364339831 -9.262873717913241 -11.99585669306635 8.700643486461816 -11.37978310462293 5.460273663042221 -13.36213548128276 9.200495491064043 -12.02549128880329 5.167749101606612 -12.64198777028426 -0.5262691202224505 -13.27310290361913 -4.615130655374084 -13.55787759450954 -0.5509741484817764 -14.02888433511281 -4.364955882694339 -12.82794829884673 4.293193018885061 -12.84290598107812 0.4760213753747136 -14.03057938515311 4.542676807114459 -13.57300831123361 0.4520367491142101 -13.27478359432735</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 2 1 3 1 8 9 8 1 12 0 13 2 13 0 8 9 16 17 16 9 20 12 21 13 21 12 16 17 24 25 24 17 28 20 29 21 29 20 24 25 32 33 32 25 36 28 37 29 37 28 32 33 40 41 40 33 44 36 45 37 45 36 40 41 48 49 48 41 44 45 52 53 52 45 56 48 57 49 57 48 52 53 60 61 60 53 64 56 65 57 65 56 60 61 68 69 68 61 72 64 73 65 73 64 68 69 76 77 76 69 80 72 81 73 81 72 76 77 84 85 84 77 88 80 89 81 89 80 85 92 84 93 84 92 92 88 93 89 93 88</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID835\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4 0 5 1 6 2 5 1 4 0 7 3 4 4 10 5 11 6 10 5 4 4 6 7 7 8 14 9 5 10 14 9 7 8 15 11 11 12 18 13 19 14 18 13 11 12 10 15 15 16 22 17 14 18 22 17 15 16 23 19 19 20 26 21 27 22 26 21 19 20 18 23 23 24 30 25 22 26 30 25 23 24 31 27 27 28 34 29 35 30 34 29 27 28 26 31 31 32 38 33 30 34 38 33 31 32 39 35 35 36 42 37 43 38 42 37 35 36 34 39 39 40 46 41 38 42 46 41 39 40 47 43 43 44 50 45 51 46 50 45 43 44 42 47 46 48 54 49 55 50 54 49 46 48 47 51 50 52 58 53 51 54 58 53 50 52 59 55 55 56 62 57 63 58 62 57 55 56 54 59 59 60 66 61 58 62 66 61 59 60 67 63 63 64 70 65 71 66 70 65 63 64 62 67 67 68 74 69 66 70 74 69 67 68 75 71 71 72 78 73 79 74 78 73 71 72 70 75 75 76 82 77 74 78 82 77 75 76 83 79 79 80 86 81 87 82 86 81 79 80 78 83 83 84 90 85 82 86 90 85 83 84 91 87 94 88 86 89 95 90 86 89 94 88 87 91 91 92 95 93 90 94 95 93 91 92 94 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID835\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID836\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID840\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID843\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID841\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID842\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID841\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID845\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID845\">-0.848191442515148 1.821719920829072 0.002991490153192444 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.848191442515148 1.821719920829072 0.002991490153192444</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID842\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID846\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID846\">-1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID844\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"48\" source=\"#ID847\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID847\">17.60422062980293 3.686373823478347 17.58872307755159 -3.731830796992965 18.21721723044679 -0.02353490189120707 15.79154317552588 7.145053996837801 15.7615948579133 -7.185808789624735 15.73644944485523 -0.02353490189122628 15.20797224997292 3.181279569921278 12.90263363202708 10.11682099294002 13.64312346924178 6.169292423219798 11.14846360512272 8.736878630918373 9.134510958830333 12.39913428420196 7.894117304033426 10.70905592978288 4.743848953426131 13.83646333579298 4.101776983347349 11.95143942082804 0.0299008217226215 14.33087282880834 0.0299008217225882 12.37933786704789 -4.686070296983688 13.84864765484944 -4.043988564903902 11.96361546971739 -7.842317873281745 10.73258573666044 -9.082711528078582 12.42266290962708 -11.10619113654815 8.770154239007669 -12.86033863575761 10.15009660102933 -13.61319017009239 6.210048988185412 -15.76162339299344 7.185815878339411 -15.19252726234299 3.226739497067041 -15.73645395039408 0.02353305587178406 15.19249872726272 -3.226737724888358 12.86035665791355 -10.15009187521957 13.61317214793644 -6.210043671649416 11.106162601468 -8.770158964817435 9.082687498537359 -12.42266290962708 7.842322378820725 -10.73257746649335 4.686051523904595 -13.84865828792145 4.043974672825356 -11.9636131068125 -0.02993367461101796 -14.33087164735588 -0.02993367461098022 -12.37934495576256 -4.101781864347913 -11.95141933613647 -4.743844447887168 -13.83647042450765 -7.894159355730627 -10.70906301849755 -9.134543999449482 -12.39913428420196 -11.14849664574191 -8.7368715422037 -12.90268619664868 -10.11682217439248 -13.6431234692418 -6.169288878862472 -15.79154768106481 -7.14505990410002 -15.20798726843623 -3.181281342099942 -17.58874109970749 3.731832569171651 -17.60424916488311 -3.686367916216107 -18.21719920829072 0.02353305587178056</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 2 1 3 1 4 3 4 5 3 5 6 3 6 7 3 3 7 8 7 9 8 8 9 10 9 11 10 10 11 12 11 13 12 12 13 14 13 15 14 15 16 14 14 16 17 16 18 17 17 18 19 18 20 19 19 20 21 20 22 21 22 23 21 24 25 23 21 23 25 5 4 26 26 4 27 4 28 27 27 28 29 28 30 29 29 30 31 30 32 31 31 32 33 33 32 34 32 35 34 34 35 36 35 37 36 36 37 38 37 39 38 38 39 40 39 41 40 40 41 42 42 41 43 41 44 43 43 44 24 24 44 25 25 44 45 44 46 45 47 45 46</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID843\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">48 0 49 1 50 2 49 1 48 0 51 3 49 1 51 3 52 4 52 4 51 3 53 5 53 5 51 3 54 6 54 6 51 3 55 7 54 6 55 7 56 8 56 8 55 7 57 9 57 9 55 7 58 10 57 9 58 10 59 11 59 11 58 10 60 12 59 11 60 12 61 13 61 13 60 12 62 14 61 13 62 14 63 15 63 15 62 14 64 16 63 15 64 16 65 17 65 17 64 16 66 18 66 18 64 16 67 19 66 18 67 19 68 20 68 20 67 19 69 21 68 20 69 21 70 22 70 22 69 21 71 23 70 22 71 23 72 24 72 24 71 23 73 25 52 4 74 26 75 27 74 26 52 4 53 5 75 27 74 26 76 28 75 27 76 28 77 29 75 27 77 29 78 30 78 30 77 29 79 31 78 30 79 31 80 32 80 32 79 31 81 33 80 32 81 33 82 34 82 34 81 33 83 35 82 34 83 35 84 36 82 34 84 36 85 37 85 37 84 36 86 38 85 37 86 38 87 39 87 39 86 38 88 40 87 39 88 40 89 41 89 41 88 40 90 42 89 41 90 42 91 43 91 43 90 42 92 44 91 43 92 44 73 25 91 43 73 25 71 23 91 43 71 23 93 45 91 43 93 45 94 46 94 46 93 45 95 47</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID843\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID844\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID848\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID851\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID849\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID850\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID849\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID853\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID853\">-0.8481914425151489 0.4686070296983689 1.760421312057132 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950957 0.4947663767580937 1.858045979055305 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151516 1.286033863575761 1.29026651708 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950979 -0.9639834939807769 1.663688891962011 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.7637458525006284 0.9616870958540129 -1.659710651225625 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 0.7557056430950926 -0.9588031003517052 -1.6666787676304 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006196 -0.956506702224935 -1.66269977597085 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.7637458525006284 0.4993573332498595 -1.852061121441011 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID850\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID854\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID854\">-0.7524585421170914 0.1693892527612725 0.6364852107032804 -0.7524585417620626 0.1695187983675101 0.6364507207391202 -0.752458751757041 -0.001116951969874288 0.6586384283675927 -0.7524587513418458 -0.0009841473680792699 0.6586386406695468 0.7524585417620626 -0.1695187983675101 -0.6364507207391202 0.752458751757041 0.001116951969874288 -0.6586384283675927 0.7524587513418458 0.0009841473680792699 -0.6586386406695468 0.7524585421170914 -0.1693892527612725 -0.6364852107032804 -0.7524565325827145 -0.1715493318107424 0.6359087932470239 -0.7524565358976068 -0.1714184440870872 0.6359440845009378 0.7524565325827145 0.1715493318107424 -0.6359087932470239 0.7524565358976068 0.1714184440870872 -0.6359440845009378 -0.003023523763771853 0.2573140904666033 0.9663230914923821 -0.003023428365700127 -0.001557416609379177 0.9999942166504876 -0.003023523763512286 0.2573134050059734 0.9663232740176982 -0.003023428365418651 -0.001558199390591175 0.9999942154310586 0.003023428365700127 0.001557416609379177 -0.9999942166504876 0.003023523763512286 -0.2573134050059734 -0.9663232740176982 0.003023428365418651 0.001558199390591175 -0.9999942154310586 0.003023523763771853 -0.2573140904666033 -0.9663230914923821 -0.7524589655183874 0.3284673404373135 0.5708894038927644 -0.752458965034369 0.3283526619799974 0.5709553706815058 0.752458965034369 -0.3283526619799974 -0.5709553706815058 0.7524589655183874 -0.3284673404373135 -0.5708894038927644 -0.7524536793556657 -0.3302908594592792 0.5698433193271392 -0.7524536801024093 -0.3301728027602695 0.5699117296720337 0.7524536793556657 0.3302908594592792 -0.5698433193271392 0.7524536801024093 0.3301728027602695 -0.5699117296720337 -0.003023637205282373 -0.2603221403258926 0.9655170847137802 -0.00302363720643009 -0.2603227088345894 0.9655169314326214 0.003023637205282373 0.2603221403258926 -0.9655170847137802 0.00302363720643009 0.2603227088345894 -0.9655169314326214 -0.003023769458048854 0.4986487925159631 0.8667988454887539 -0.003023769456780855 0.4986480616163927 0.8667992659575149 0.003023769458048854 -0.4986487925159631 -0.8667988454887539 0.003023769456780855 -0.4986480616163927 -0.8667992659575149 -0.7524604292449857 0.4650302144511048 0.4664227718154544 -0.7524604277183468 0.4649355000609762 0.4665171867155301 0.7524604277183468 -0.4649355000609762 -0.4665171867155301 0.7524604292449857 -0.4650302144511048 -0.4664227718154544 -0.7524523992911886 -0.4665217526188665 0.4649439118155596 -0.7524523999108818 -0.4664284121355344 0.4650375492592817 0.7524523992911886 0.4665217526188665 -0.4649439118155596 0.7524523999108818 0.4664284121355344 -0.4650375492592817 -0.003024220270688767 -0.5013448265809373 0.8652422891608365 -0.003024220271891797 -0.5013452460737722 0.8652420460951814 0.003024220271891797 0.5013452460737722 -0.8652420460951814 0.003024220270688767 0.5013448265809373 -0.8652422891608365 -0.003023789150446498 0.7060009776560012 0.7082044028724647 -0.003023789151712843 0.7060003159894974 0.7082050624797142 0.003023789150446498 -0.7060009776560012 -0.7082044028724647 0.003023789151712843 -0.7060003159894974 -0.7082050624797142 -0.7524618457279603 0.5699021833508379 0.3301706712226562 -0.7524618458997252 0.5698351311725082 0.3302863814128411 0.7524618458997252 -0.5698351311725082 -0.3302863814128411 0.7524618457279603 -0.5699021833508379 -0.3301706712226562 -0.7524479855813711 -0.5709672528893324 0.3283571609125437 -0.75244799164648 -0.5709000097533534 0.3284740457491269 0.7524479855813711 0.5709672528893324 -0.3283571609125437 0.75244799164648 0.5709000097533534 -0.3284740457491269 -0.003024450878027729 -0.7082033825184431 0.7060019983585898 -0.003024450877476187 -0.7082039104336583 0.7060014687968891 0.003024450878027729 0.7082033825184431 -0.7060019983585898 0.003024450877476187 0.7082039104336583 -0.7060014687968891 -0.003023198803451891 0.8652412822109276 0.5013465705746725 -0.003023198805660467 0.8652409285580689 0.5013471809205194 0.003023198803451891 -0.8652412822109276 -0.5013465705746725 0.003023198805660467 -0.8652409285580689 -0.5013471809205194 -0.7524650076588183 0.6359345265441972 0.1714167150485116 -0.7524650029900875 0.6358998698302749 0.1715452559092408 0.7524650029900875 -0.6358998698302749 -0.1715452559092408 0.7524650076588183 -0.6359345265441972 -0.1714167150485116 -0.7524485695931888 -0.6364956983395131 0.1693941442685062 -0.7524485617789981 -0.6364614586825991 0.1695227816204527 0.7524485695931888 0.6364956983395131 -0.1693941442685062 0.7524485617789981 0.6364614586825991 -0.1695227816204527 -0.003024642282712115 -0.8667991712589429 0.4986482209372369 -0.00302464228433073 -0.8667995384389017 0.4986475826685202 0.003024642282712115 0.8667991712589429 -0.4986482209372369 0.00302464228433073 0.8667995384389017 -0.4986475826685202 -0.003021941420137833 0.9655175454494209 0.2603204511738924 -0.003021941424746023 0.9655173587289867 0.2603211437110447 0.003021941420137833 -0.9655175454494209 -0.2603204511738924 0.003021941424746023 -0.9655173587289867 -0.2603211437110447 -0.7524649176522377 0.6586315962545964 0.0009839297400806876 -0.7524649227682221 0.6586313785893013 0.001116754659718303 0.7524649227682221 -0.6586313785893013 -0.001116754659718303 0.7524649176522377 -0.6586315962545964 -0.0009839297400806876 -0.7524562762274313 -0.6586412570388478 -0.001116643288669679 -0.7524562723022982 -0.6586414735750391 -0.0009836461920094291 0.7524562762274313 0.6586412570388478 0.001116643288669679 0.7524562723022982 0.6586414735750391 0.0009836461920094291 -0.00302424272530191 -0.966322583003932 0.2573159915989429 -0.003024242721690821 -0.9663227607441889 0.2573153241136048 0.00302424272530191 0.966322583003932 -0.2573159915989429 0.003024242721690821 0.9663227607441889 -0.2573153241136048 -0.003021067751355109 0.9999942264063256 0.001555732514273759 -0.003021067751511359 0.9999942251911452 0.001556513412098616 0.003021067751355109 -0.9999942264063256 -0.001555732514273759 0.003021067751511359 -0.9999942251911452 -0.001556513412098616 -0.7524581266761962 0.6364513097928596 -0.1695184292692185 -0.7524581327993718 0.6364858961559734 -0.1693884954139764 0.7524581266761962 -0.6364513097928596 0.1695184292692185 0.7524581327993718 -0.6364858961559734 0.1693884954139764 -0.7524554835789596 -0.6359095448500886 -0.171551146893593 -0.7524554877062412 -0.6359441915615974 -0.1714226479781157 0.7524554877062412 0.6359441915615974 0.1714226479781157 0.7524554835789596 0.6359095448500886 0.171551146893593 -0.003022939996113761 -0.9999942166299063 -0.001558377528098246 -0.003022939999784108 -0.9999942178488096 -0.001557595167271352 0.003022939996113761 0.9999942166299063 0.001558377528098246 0.003022939999784108 0.9999942178488096 0.001557595167271352 -0.003022243473153594 0.9663240542030337 -0.2573104900951403 -0.00302224347973812 0.966323868653908 -0.2573111869198347 0.003022243473153594 -0.9663240542030337 0.2573104900951403 0.00302224347973812 -0.966323868653908 0.2573111869198347 -0.752453954284854 0.5708942615132673 -0.3284703774350259 -0.7524539551700281 0.5709604990173309 -0.3283552251919589 0.752453954284854 -0.5708942615132673 0.3284703774350259 0.7524539551700281 -0.5709604990173309 0.3283552251919589 -0.7524527067090119 -0.5698454450886161 -0.3302894077593754 -0.75245270637364 -0.5699112482350072 -0.3301758528514779 0.75245270637364 0.5699112482350072 0.3301758528514779 0.7524527067090119 0.5698454450886161 0.3302894077593754 -0.003022956207305731 -0.9655159878608529 -0.2603262163533472 -0.003022956203584093 -0.9655161881351868 -0.2603254735608669 0.003022956207305731 0.9655159878608529 0.2603262163533472 0.003022956203584093 0.9655161881351868 0.2603254735608669 -0.003023860053777756 0.8667994464540276 -0.4986477473100291 -0.003023860056238176 0.866799054464471 -0.4986484287048933 0.003023860053777756 -0.8667994464540276 0.4986477473100291 0.003023860056238176 -0.866799054464471 0.4986484287048933 -0.7524520034872866 0.4664284183759522 -0.4650381844314248 -0.7524520059884629 0.4665225652234435 -0.4649437329626844 0.7524520034872866 -0.4664284183759522 0.4650381844314248 0.7524520059884629 -0.4665225652234435 0.4649437329626844 -0.7524541226695466 -0.4649429710307974 -0.4665199105790212 -0.7524541205941244 -0.4650354160681895 -0.4664277631136556 0.7524541205941244 0.4650354160681895 0.4664277631136556 0.7524541226695466 0.4649429710307974 0.4665199105790212 -0.003023625947355671 -0.8652411650582806 -0.5013467701847889 -0.003023625947147205 -0.8652415864938384 -0.5013460428563862 0.003023625947355671 0.8652411650582806 0.5013467701847889 0.003023625947147205 0.8652415864938384 0.5013460428563862 -0.003024498956473901 0.7082035258586333 -0.7060018543654559 -0.003024498957837877 0.7082029736233368 -0.7060024083224629 0.003024498956473901 -0.7082035258586333 0.7060018543654559 0.003024498957837877 -0.7082029736233368 0.7060024083224629 -0.7524548626014672 0.3301727897440394 -0.5699101759576202 -0.7524548560904877 0.3302906965735977 -0.5698418599074405 0.7524548626014672 -0.3301727897440394 0.5699101759576202 0.7524548560904877 -0.3302906965735977 0.5698418599074405 -0.7524550849804075 -0.3283542750975831 -0.5709595564593596 -0.7524550849515038 -0.3284703658453776 -0.5708927779294718 0.7524550849515038 0.3284703658453776 0.5708927779294718 0.7524550849804075 0.3283542750975831 0.5709595564593596 -0.003023436767652145 -0.7060015557338235 -0.7082038280972031 -0.003023436769444781 -0.7060023070751241 -0.7082030790915156 0.003023436767652145 0.7060015557338235 0.7082038280972031 0.003023436769444781 0.7060023070751241 0.7082030790915156 -0.003024066201718197 0.5013460802322781 -0.8652415632985611 -0.003024066204165313 0.5013465000752155 -0.86524132002923 0.003024066204165313 -0.5013465000752155 0.86524132002923 0.003024066201718197 -0.5013460802322781 0.8652415632985611 -0.7524593774133471 0.1714196849035536 -0.6359403879061972 -0.7524593773351924 0.171545207486858 -0.6359065397121069 0.7524593774133471 -0.1714196849035536 0.6359403879061972 0.7524593773351924 -0.171545207486858 0.6359065397121069 -0.7524551621628105 -0.169389900494532 -0.6364890341121294 -0.7524551617968616 -0.1695201961406735 -0.6364543444628897 0.7524551617968616 0.1695201961406735 0.6364543444628897 0.7524551621628105 0.169389900494532 0.6364890341121294 -0.00302345619967725 -0.4986502339698029 -0.8667980173457189 -0.003023456200964241 -0.498649628175152 -0.8667983658460503 0.003023456200964241 0.498649628175152 0.8667983658460503 0.00302345619967725 0.4986502339698029 0.8667980173457189 -0.00302317041934693 0.2603211190972351 -0.9655173615179473 -0.003023170420924781 0.260321986899808 -0.9655171275420972 0.003023170420924781 -0.260321986899808 0.9655171275420972 0.00302317041934693 -0.2603211190972351 0.9655173615179473 -0.7524572925624328 0.0009838075905523819 -0.6586403077494104 -0.7524572962038846 0.001116597773462055 -0.6586400918551432 0.7524572925624328 -0.0009838075905523819 0.6586403077494104 0.7524572962038846 -0.001116597773462055 0.6586400918551432 -0.003023757163787752 -0.2573148938061689 -0.9663228768471408 -0.003023757164135984 -0.257314121269845 -0.9663230825597305 0.003023757163787752 0.2573148938061689 0.9663228768471408 0.003023757164135984 0.257314121269845 0.9663230825597305 -0.003023376607918181 0.00155726701169435 -0.9999942170399491 -0.003023376605318863 0.001558049788827533 -0.9999942158206505 0.003023376607918181 -0.00155726701169435 0.9999942170399491 0.003023376605318863 -0.001558049788827533 0.9999942158206505</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID852\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"192\" source=\"#ID855\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"384\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID855\">-4.040246963321643 6.795564893228256 0.9890827628466336 6.463093582785248 0.8935679007835635 7.468892618247301 -3.696624459452266 5.823858262090928 -0.8551161998463231 7.471883329228509 3.729258442558688 5.811233706692518 4.07507250558566 6.782456078829257 -0.9529481975090883 6.466222128749999 -7.554321652554542 2.111785202383856 7.520717237189627 -2.106470744697186 7.63609149265897 1.831723202669839 -7.669972009859915 -1.835835337729923 -2.241789872750055 7.291664938508001 -5.90273736965205 4.562006538717816 -1.735763312451184 6.364938643819828 -6.629265165315137 5.393041111258648 2.27580128791188 7.285250498133096 5.926144752668277 4.543403046768413 6.654145913192843 5.373626057838043 1.768131448370683 6.359083708982839 7.668686127052055 -1.839057708593067 -7.634813705495054 1.834989415906823 -7.522186994038186 -2.10322894330467 7.555789239779621 2.108606428206098 7.598413731494718 1.926247716636706 -7.632211106838805 -1.930765085388588 7.562014832044193 -2.012872824046142 -7.595724971270944 2.017799588171895 -4.81941465461502 6.4734078982287 -7.324240456616781 3.029240377010939 -3.995200295744808 5.700833126747577 -8.324555039492182 3.660162647609309 4.845342759447187 6.461479132204169 7.337817537611757 3.009063783125704 8.338854610045059 3.639262429833399 4.020265958111306 5.689488510288188 -7.562169654384618 -2.01252978617579 7.595891934628797 2.017484888043871 -7.598253173295223 1.926593136966556 7.632062042614949 -1.931080970865312 7.590162806256027 1.94624081239991 -7.623955884291689 -1.950882992818789 7.570534444041288 -1.992951860281939 -7.604280525974141 1.99775209317084 -6.718836162952989 5.323810449893363 -8.053104492918207 1.49712621750965 -5.675786398794395 4.737275524689899 -9.221774272756345 1.91194394298594 6.737080334535841 5.309500309403943 8.058934044048545 1.477726111620418 9.227804990882156 1.892125520133433 5.693691067492606 4.723354330334615 7.623905935675444 -1.950977619621975 -7.590091221085666 1.946343936349168 -7.570585176680469 -1.992873761941959 7.604353213083794 1.997658685379888 7.586171209310034 1.955863353392116 -7.619941292962327 -1.960561098109789 7.574615404368769 -1.983378289115803 -7.608357971913602 1.988098722674424 -8.039325504952567 4.035248474488306 -8.274409480860204 0.07154880520611728 -6.858172886042456 3.642920142785312 -9.530272482541513 0.2746756156189894 8.051367441154209 4.019989372762995 8.274442799196638 0.05352251049803518 9.530305767400433 0.2564839307956014 6.870173671642146 3.627808949292373 7.619919383937229 -1.960542415976749 -7.586121691995373 1.955936271722545 -7.574637547254818 -1.98328952605131 7.608407674373749 1.988121343208024 7.583544916727871 1.962188646121968 -7.617277576123059 -1.966904209989248 7.577301328813645 -1.977040668559802 -7.611019100226375 1.981758278354976 -8.907815301433299 2.678985865460446 -8.123357840021573 -1.240750832424818 -7.650419727648758 2.481813686900803 -9.405511470881637 -1.240742243288395 8.915288502883657 2.663096804961726 8.119140709179817 -1.257537690235669 9.401272865435805 -1.257546018046028 7.657930885613808 2.465945293105961 7.617292804392591 -1.966902198835446 -7.583479377394854 1.962214253446523 -7.577286260901328 -1.977014389700738 7.611084735482613 1.981768564680788 7.581459565158655 1.967310797641272 -7.615123097651352 -1.971918595009516 7.579461129931657 -1.971921953343625 -7.613120069812265 1.976745737194301 -8.119346403993839 1.257431712139362 -8.915537713431498 -2.663206671196163 -7.658166793412561 -2.466041118855443 -9.40150003157304 1.257442113621577 8.123108074390222 1.240849617657296 8.907523179620583 -2.678883862796719 9.4052402334673 1.240842837764527 7.650148767210773 -2.481713396774992 7.613189535885248 1.976618480108285 -7.57943764585014 -1.972050019822055 7.615146667941806 -1.972047747371725 -7.581390237913452 1.967188101395981 7.581436772792678 -1.967275288237997 -7.615098313537803 1.971965794024384 -7.613142864168738 -1.976698898278629 7.579485914074268 1.97196708429726 -8.274749853594916 -0.05359064644060455 -8.051667980628185 -4.020064251666414 -6.870443660400792 -3.627887047345771 -9.530625737779101 -0.25656725043594 8.274163615890476 -0.07144692779477511 8.039062677012478 -4.035156716714083 9.530005361959193 -0.2745723376109419 6.857934007589495 -3.64281816651194 7.615146760673897 1.972057399417009 -7.581436910305003 -1.967173248538126 7.613142749986364 -1.976607435662339 -7.579437553117938 1.972059733917022 7.583505855838784 -1.96227509970517 -7.617263129816307 1.966838229966558 -7.611058272200855 -1.981825946153671 7.577315792308811 1.976949996703046 -8.058966808118642 -1.477763534671876 -6.737129216083037 -5.309523955305282 -5.693760167031574 -4.723377340212994 -9.227871799659241 -1.89215435520369 8.052840575659085 -1.49704295134452 6.718603029494449 -5.323738691458113 9.221486487586468 -1.911869754300307 5.67558565569558 -4.737197305973607 7.617293560270303 1.966914482853697 -7.58353067722906 -1.962188734427586 7.611033394817669 -1.981754273956296 -7.577285369609861 1.977050570888327 7.586122794998227 -1.955846374730674 -7.619918079974323 1.960632188041886 -7.608406550904774 -1.988032733024195 7.574638852779416 1.983381936755945 -7.337822183067741 -3.009007241083356 -4.845341235349157 -6.46142968527283 -4.020258889731459 -5.689438975694102 -8.338839386390088 -3.639205298984838 7.324198181243452 -3.029144275291806 4.819358432886512 -6.47331750582667 8.324474868783517 -3.660076593319374 3.995128624001985 -5.700755173353182 7.619942024878952 1.960505775974488 -7.586170583499415 -1.95591014113808 7.60835859070232 -1.988135387999505 -7.574614745364233 1.983312116988463 -7.623909739917847 1.950936307139087 7.590088410733276 -1.946377631840885 7.570581331427527 1.992838049551194 -7.604356035217696 -1.99769600445393 -5.926219203160268 -4.543505385850812 -2.275894023815066 -7.285346259589042 -1.768164791791738 -6.359189590593228 -6.654222092787895 -5.373730949672475 5.902663718800884 -4.56193950172254 2.241735351137526 -7.291601797073808 6.629208755942161 -5.392962666056423 1.735701167858861 -6.364888541509357 -7.590174738516678 -1.946265886184374 7.623938984367359 1.950861077277974 -7.570551389136386 1.992910516343811 7.604268587691806 -1.997775046101012 -7.632050366310129 1.931128964526406 7.59825903017894 -1.926544287206376 7.562181491525478 2.012562850542992 -7.59588595364065 -2.017442116402822 -3.729273224583506 -5.811255341959331 0.8550672826260229 -7.471889629038476 0.9528974804567071 -6.466230103660284 -4.075150813204585 -6.782473277036217 3.696609987697176 -5.823790531437526 -0.8935970025749593 -7.468813907025647 4.040236589761045 -6.795486286170825 -0.9891114730239413 -6.463016631894419 7.595726351403361 -2.01783708517383 -7.562012115608883 2.012838846303647 -7.598412396963864 -1.926287761518784 7.632213683143744 1.930717081479863 7.522201914891844 2.103271019508454 -7.555790432103792 -2.108548548224249 7.634813601656944 -1.834968467158941 -7.668671507496315 1.83911283206964 7.554320332815763 -2.111817851860591 -7.52070372868721 2.106484885781963 -7.636091856533377 -1.831723312270308 7.669984821502206 1.835824551549613</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 2 1 2 3 8 9 8 3 12 13 14 15 14 13 20 1 21 0 21 1 8 9 24 25 24 9 13 28 15 29 15 28 12 14 32 33 32 14 36 20 37 21 37 20 24 25 40 41 40 25 44 45 28 29 28 45 32 33 48 49 48 33 52 36 53 37 53 36 40 41 56 57 56 41 44 60 45 61 45 60 48 49 64 65 64 49 68 52 69 53 69 52 56 57 72 73 72 57 60 76 61 77 61 76 64 65 80 81 80 65 84 68 85 69 85 68 72 73 88 89 88 73 76 92 77 93 77 92 80 81 96 97 96 81 84 85 100 101 100 85 104 88 105 89 105 88 93 92 108 109 108 92 97 112 96 113 96 112 100 101 116 117 116 101 120 104 121 105 121 104 108 109 124 125 124 109 112 128 113 129 113 128 116 117 132 133 132 117 136 120 137 121 137 120 124 125 140 141 140 125 128 144 129 145 129 144 132 133 148 149 148 133 152 136 153 137 153 136 140 141 156 157 156 141 160 145 161 144 161 145 148 149 164 165 164 149 168 152 169 153 169 152 172 173 157 156 157 173 176 160 177 161 177 160 164 165 180 181 180 165 181 168 180 169 180 168 172 184 173 185 173 184 176 177 188 189 188 177 184 188 185 189 185 188</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID851\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4 0 5 1 6 2 5 1 4 0 7 3 6 4 10 5 11 6 10 5 6 4 5 7 16 8 17 9 18 10 17 9 16 8 19 11 4 12 22 13 7 14 22 13 4 12 23 15 11 16 26 17 27 18 26 17 11 16 10 19 30 20 18 21 31 22 18 21 30 20 16 23 17 24 34 25 35 26 34 25 17 24 19 27 23 28 38 29 22 30 38 29 23 28 39 31 27 32 42 33 43 34 42 33 27 32 26 35 46 36 30 37 31 38 30 37 46 36 47 39 35 40 50 41 51 42 50 41 35 40 34 43 39 44 54 45 38 46 54 45 39 44 55 47 43 48 58 49 59 50 58 49 43 48 42 51 62 52 46 53 63 54 46 53 62 52 47 55 51 56 66 57 67 58 66 57 51 56 50 59 55 60 70 61 54 62 70 61 55 60 71 63 59 64 74 65 75 66 74 65 59 64 58 67 78 68 63 69 79 70 63 69 78 68 62 71 67 72 82 73 83 74 82 73 67 72 66 75 71 76 86 77 70 78 86 77 71 76 87 79 75 80 90 81 91 82 90 81 75 80 74 83 94 84 79 85 95 86 79 85 94 84 78 87 83 88 98 89 99 90 98 89 83 88 82 91 86 92 102 93 103 94 102 93 86 92 87 95 90 96 106 97 91 98 106 97 90 96 107 99 94 100 110 101 111 102 110 101 94 100 95 103 114 104 98 105 115 106 98 105 114 104 99 107 103 108 118 109 119 110 118 109 103 108 102 111 107 112 122 113 106 114 122 113 107 112 123 115 111 116 126 117 127 118 126 117 111 116 110 119 130 120 115 121 131 122 115 121 130 120 114 123 119 124 134 125 135 126 134 125 119 124 118 127 123 128 138 129 122 130 138 129 123 128 139 131 127 132 142 133 143 134 142 133 127 132 126 135 146 136 131 137 147 138 131 137 146 136 130 139 135 140 150 141 151 142 150 141 135 140 134 143 139 144 154 145 138 146 154 145 139 144 155 147 143 148 158 149 159 150 158 149 143 148 142 151 147 152 162 153 146 154 162 153 147 152 163 155 151 156 166 157 167 158 166 157 151 156 150 159 155 160 170 161 154 162 170 161 155 160 171 163 174 164 159 165 158 166 159 165 174 164 175 167 163 168 178 169 162 170 178 169 163 168 179 171 167 172 182 173 183 174 182 173 167 172 166 175 171 176 182 177 170 178 182 177 171 176 183 179 186 180 174 181 187 182 174 181 186 180 175 183 178 184 190 185 191 186 190 185 178 184 179 187 190 188 187 189 191 190 187 189 190 188 186 191</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID851\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID852\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID856\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID859\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID857\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID858\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID857\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID861\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID861\">0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 0.9220519445225366 1.603022710678486 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151476 1.785497189630175 0.4815196415974014 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 0.4757403116530008 1.787046344116789 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.9220519445225366 1.603022710678486 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151387 1.309760632593005 -1.305527979088765 0.7557056430950975 1.361733376410932 -1.357502525122301 0.7557056430950975 1.361733376410932 -1.357502525122301 0.8481914425151387 1.309760632593005 -1.305527979088765 0.84819144251514 1.603025714371136 -0.9220525452610677 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.7557056430950979 1.858045828870668 -0.494764837365608 0.7557056430950979 1.858045828870668 -0.494764837365608 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.7557056430950908 1.922786669424786 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950926 1.856498927153553 0.500544129763853 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950908 1.663689943254438 0.9639850709194202 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.60003328556399 0.9272330890747753 0.7557056430950908 1.663689943254438 0.9639850709194202 0.7557056430950904 1.357503426230103 1.361732775672407 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151351 1.305526777611701 1.309757628900341 0.7557056430950904 1.357503426230103 1.361732775672407</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID858\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID862\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"576\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID862\">0.6221941321218698 0.2013597797845118 0.7565240915121251 0.6221918684034155 -0.001303781729081092 0.7828637040033659 0.6221941339063147 0.2014863019961419 0.7564904030062049 0.6221918691918711 -0.001174692367902513 0.7828639077191937 -0.6221918684034155 0.001303781729081092 -0.7828637040033659 -0.6221941339063147 -0.2014863019961419 -0.7564904030062049 -0.6221918691918711 0.001174692367902513 -0.7828639077191937 -0.6221941321218698 -0.2013597797845118 -0.7565240915121251 0.6221901218932683 -0.2038805206493446 0.7558519600544753 0.6221901229061849 -0.2037543408673254 0.755885983158643 -0.6221901218932683 0.2038805206493446 -0.7558519600544753 -0.6221901229061849 0.2037543408673254 -0.755885983158643 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 0.622195876340844 0.3903006052975382 0.678629301584322 0.6221958765038165 0.3904133786148501 0.6785644295571243 -0.622195876340844 -0.3903006052975382 -0.678629301584322 -0.6221958765038165 -0.3904133786148501 -0.6785644295571243 0.6221894242877948 -0.392561562997384 0.6773298602316846 0.6221894238249361 -0.3924488889485895 0.677395150885664 -0.6221894238249361 0.3924488889485895 -0.677395150885664 -0.6221894242877948 0.392561562997384 -0.6773298602316846 0.6221894259644839 -0.5544921390400044 0.5526470717925018 0.6221894262295475 -0.5543996744161857 0.5527398293007061 -0.6221894259644839 0.5544921390400044 -0.5526470717925018 -0.6221894262295475 0.5543996744161857 -0.5527398293007061 0.6221935983998548 -0.6785663445167995 0.3904136808557666 0.6221936044128955 -0.6786309659335652 0.3903013332077736 -0.6221935983998548 0.6785663445167995 -0.3904136808557666 -0.6221936044128955 0.6786309659335652 -0.3903013332077736 0.6222050039132737 -0.7564827860628643 0.2014813328719305 0.6222050124535287 -0.7565155769512322 0.2013581493455097 -0.6222050039132737 0.7564827860628643 -0.2014813328719305 -0.6222050124535287 0.7565155769512322 -0.2013581493455097 0.6222055415468412 -0.7828530407950558 -0.001174983547447636 0.6222055340692866 -0.7828528419120427 -0.001304332699868602 -0.6222055415468412 0.7828530407950558 0.001174983547447636 -0.6222055340692866 0.7828528419120427 0.001304332699868602 0.6221917009441136 -0.7558510087740555 -0.203879228494502 0.6221917107911614 -0.7558845909667217 -0.2037546567856542 -0.6221917009441136 0.7558510087740555 0.203879228494502 -0.6221917107911614 0.7558845909667217 0.2037546567856542 0.6221815841653294 -0.6773359418068746 -0.392563495834897 0.6221815865170676 -0.6773995833087608 -0.3924536634205645 -0.6221815841653294 0.6773359418068746 0.392563495834897 -0.6221815865170676 0.6773995833087608 0.3924536634205645 0.6221798007864562 -0.5526539130480859 -0.554496120713179 0.6221798004943125 -0.5527449429825729 -0.5544053786391775 -0.6221798007864562 0.5526539130480859 0.554496120713179 -0.6221798004943125 0.5527449429825729 0.5544053786391775 0.6221838439383094 -0.3903078065454426 -0.678636191557623 0.622183838657477 -0.3904185239302142 -0.6785725068742466 -0.6221838439383094 0.3903078065454426 0.678636191557623 -0.622183838657477 0.3904185239302142 0.6785725068742466 0.6221885190971537 -0.2013628297434559 -0.7565278960497087 0.6221885184214142 -0.201487412154011 -0.7564947258825042 -0.6221885184214142 0.201487412154011 0.7564947258825042 -0.6221885190971537 0.2013628297434559 0.7565278960497087 0.6221871363076309 0.00130441775786443 -0.7828674638197849 0.6221871383491345 0.001175274353274519 -0.7828676667247855 -0.6221871363076309 -0.00130441775786443 0.7828674638197849 -0.6221871383491345 -0.001175274353274519 0.7828676667247855 0.6221898070491942 0.2038792279466273 -0.7558525679098893 0.6221898011836357 0.2037549411636534 -0.7558860861627658 -0.6221898070491942 -0.2038792279466273 0.7558525679098893 -0.6221898011836357 -0.2037549411636534 0.7558860861627658 0.6221939030436636 0.3925585914201147 -0.6773274683028494 0.6221939035143759 0.3924479534520299 -0.6773915782328985 -0.6221939030436636 -0.3925585914201147 0.6773274683028494 -0.6221939035143759 -0.3924479534520299 0.6773915782328985 0.6221903859354878 0.5544908010891638 -0.5526473334387365 0.6221903896076413 0.5543987480332496 -0.5527396740410957 -0.6221903896076413 -0.5543987480332496 0.5527396740410957 -0.6221903859354878 -0.5544908010891638 0.5526473334387365 0.6221910202362403 0.6786331798213453 -0.3903016033568862 0.6221910156914612 0.678568769305014 -0.3904135823927066 -0.6221910156914612 -0.678568769305014 0.3904135823927066 -0.6221910202362403 -0.6786331798213453 0.3903016033568862 0.6221853387884145 0.7565314500689442 -0.2013593038658174 0.6221853496726847 0.7564982237091488 -0.2014840643266405 -0.6221853496726847 -0.7564982237091488 0.2014840643266405 -0.6221853387884145 -0.7565314500689442 0.2013593038658174 0.622179367250408 0.7828736406861537 0.00130295306474845 0.6221793638195623 0.7828738475245173 0.001173924718077005 -0.6221793638195623 -0.7828738475245173 -0.001173924718077005 -0.622179367250408 -0.7828736406861537 -0.00130295306474845 0.6221892329183988 0.7558531905054573 0.2038786718691672 0.622189223507684 0.7558868877678742 0.2037537313805625 -0.622189223507684 -0.7558868877678742 -0.2037537313805625 -0.6221892329183988 -0.7558531905054573 -0.2038786718691672 0.6221951326288879 0.6773907079233851 0.3924475070018612 0.6221951309101329 0.6773259154460521 0.3925593246082557 -0.6221951309101329 -0.6773259154460521 -0.3925593246082557 -0.6221951326288879 -0.6773907079233851 -0.3924475070018612 0.6221949093854745 0.55273621248258 0.5543971267468953 0.6221949112080535 0.5526439122938858 0.554489133050694 -0.6221949112080535 -0.5526439122938858 -0.554489133050694 -0.6221949093854745 -0.55273621248258 -0.5543971267468953</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID860\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"144\" source=\"#ID863\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID863\">3.325059649491211 3.216767926096336 -1.399394685447692 3.99758154621831 3.662193290876626 4.107473716139581 -1.250023878680641 4.919473912535772 1.372898142287666 4.002874476983909 -3.346531992851785 3.203384761442292 1.219983462261442 4.924407217212858 -3.68705615598036 4.093286913307604 13.66916248086444 0.02353305587179104 13.19564835602249 2.805823139428946 16.0003328556399 7.294233634054899 13.05526777611702 10.30342668068269 11.8228864714763 5.396912571325081 9.644406560028058 7.620199907751378 9.220519445225365 12.61044532400409 6.80868640605695 9.324190455426477 4.757403116530008 14.05809790705208 3.508941918724347 10.39274802981726 -0.02990082172258827 14.54770834023929 -0.02990082172260382 10.75306267042233 -3.5666972965487 10.38056843657058 -4.815191534973343 14.0459159509005 -6.860480580346522 9.300657694917794 -9.272324132439298 12.58691788003143 -9.686702307220683 7.586924890388302 -11.85278748092962 5.356150689823473 -13.09757328531092 10.27014516533118 -13.2110843325745 2.760368233456089 -13.66913394578432 -0.02353490189121231 -16.00031333163775 -7.294225363887784 -16.03022410309207 7.253473524731939 -17.85496739076283 -3.787953332447107 -17.87042739685603 3.742497540384916 -18.4927970204285 -0.02353490189122628 18.49288112382276 0.0235330558717858 17.87046043747516 -3.742493405301364 17.85497189630175 3.787954513899558 16.03025714371136 -7.2534800227204 13.21113689719592 -2.760366756640539 13.09760632593005 -10.27015343549829 11.8527964920076 -5.35615068982347 9.686716574760796 -7.58692666256699 9.272333143517251 -12.58691433567411 6.860518126504815 -9.300652969108006 4.815205427051927 -14.04592303961512 3.56674422924643 -10.38057079947547 0.02993367461101789 -14.54771542895396 0.02993367461098014 -10.75306030751745 -3.508928026645748 -10.39275039272216 -4.757417384070129 -14.05810026995697 -6.808676644055874 -9.324186320342909 -9.220524701687543 -12.61044414255163 -9.644378024947853 -7.620210540823365 -11.82288121501415 -5.396910799146412 -13.05527828904129 -10.30342549923025 -13.19562582832752 -2.805824911607605 0.5886060988810937 4.120513442521916 1.162658492477524 4.932771090314962 4.606236932793788 2.014872649270415 5.339868907720868 2.743315371972167 -4.617667416210899 1.999131421715409 -5.353301219116173 2.726315394172552 -0.611291521408307 4.117988780848812 -1.187571050858884 4.929264283026042 -2.139599332309027 3.788942846944112 -5.164343543501015 0.8290711333373181 -2.99636583736415 4.428807317739661 -6.141480814850693 1.351387648974424 -4.225021602925385 3.758142633215543 -3.20239465897159 3.292826485442597 -6.372640036501849 0.1891437608247533 -5.26773872097306 -0.1397922540547897 -5.060075937571718 3.054007997932716 -3.943277568442837 2.750953874283442 -6.301440743977258 -0.7720073775261384 -5.136984467603375 -0.9288234656837572 -5.642996750969768 2.338482509684357 -4.477181062845431 2.188046769828072 -6.045781765648268 -1.597450497087772 -4.864377425616241 -1.59744239333856 -4.868088702938565 1.588940824409902 -4.471180360231378 -2.195912950284375 -6.049493045559932 1.588934727628423 -5.636963394135375 -2.34637225796323 -5.138980702977859 0.9193062601172498 -3.935010939522044 -2.758405912819115 -6.303369004477561 0.7623055482335482 -5.051724644990093 -3.061634706345457 -5.267538473975297 0.1284836752139618 -3.190956910517112 -3.299940318090963 -6.372186186701201 -0.2009621428356244 -4.213235749099931 -3.765702618015408 -5.160082680879592 -0.8427219285103885 -2.123166668350666 -3.794862669340203 -6.13638914881693 -1.36597498609087 -2.978922285784557 -4.43555752449242 -0.5885197661079195 -4.120399914351149 -1.16256291986312 -4.932657257001637 -4.606122629645602 -2.014735477800759 -5.339735788379853 -2.743176144763794 -3.325063773367089 -3.216692463880472 1.399436221034114 -3.997516865119874 -3.662179849014553 -4.107398405247095 1.250064419912603 -4.919404685624561 -1.372895805521925 -4.00277042444336 3.346512787926854 -3.203272247311469 -1.21997784929461 -4.924298380406616 3.68705418545108 -4.093164790378991 0.6113642978876138 -4.118071356985403 4.617747902423629 -1.999222052002686 1.187652019463948 -4.929337193170962 5.353407928182614 -2.726409124851045 5.164438050886696 -0.8291264049415041 6.141565090651655 -1.351438121476672 2.139663964115627 -3.788989196166075 2.996454837881586 -4.42885565877945 5.267743730206006 0.1398428529100231 6.372654774740514 -0.1890906805768049 3.202401858901243 -3.292778259440419 4.225021696139704 -3.75808538423671 5.136887609411004 0.9287968784213682 6.301322821900057 0.7719723381833509 3.943189382779365 -2.750992348204655 5.059997234893208 -3.054044110362204 4.863551817964225 1.597558026222105 6.04489261921601 1.597565779340973 4.476345343562111 -2.187929742582891 5.642141342295993 -2.338367823715728 4.470751428024356 2.195852734366363 5.636555464348028 2.346311909831038 4.86769810624192 -1.589009864038318 6.049038901895399 -1.588997567746211 5.05203837862957 3.061732231587077 6.303703735283573 -0.7621972952458326 3.935311944199161 2.758511066035775 5.13929496892643 -0.9192004917269404 4.213545717048607 3.765827006196082 6.372547766122596 0.2010852094342388 3.191244841452139 3.300055229866782 5.267888059821077 -0.1283553981323895 2.123424527614135 3.795082979436403 2.979191962199724 4.435783737510645 5.160386065421639 0.8429754464373749 6.136714648690377 1.366238049433706</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"192\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 3 2 2 1 1 4 1 5 2 6 3 5 2 4 1 7 0 1 4 8 5 3 6 9 7 3 6 8 5 10 5 6 6 11 7 6 6 10 5 4 4 12 8 13 9 14 10 14 10 13 9 15 11 13 9 16 12 15 11 16 12 17 13 15 11 15 11 17 13 18 14 17 13 19 15 18 14 18 14 19 15 20 16 19 15 21 17 20 16 20 16 21 17 22 18 21 17 23 19 22 18 23 19 24 20 22 18 22 18 24 20 25 21 24 20 26 22 25 21 25 21 26 22 27 23 26 22 28 24 27 23 28 24 29 25 27 23 27 23 29 25 30 26 29 25 31 27 30 26 31 27 32 28 30 26 32 28 33 29 30 26 30 26 33 29 34 30 33 29 35 31 34 30 34 30 35 31 36 32 37 33 36 32 35 31 38 34 39 35 40 36 39 35 41 37 40 36 40 36 41 37 14 10 14 10 41 37 12 8 12 8 41 37 42 38 41 37 43 39 42 38 42 38 43 39 44 40 44 40 43 39 45 41 43 39 46 42 45 41 45 41 46 42 47 43 46 42 48 44 47 43 47 43 48 44 49 45 48 44 50 46 49 45 49 45 50 46 51 47 51 47 50 46 52 48 50 46 53 49 52 48 52 48 53 49 54 50 53 49 55 51 54 50 54 50 55 51 56 52 56 52 55 51 57 53 55 51 58 54 57 53 57 53 58 54 59 55 59 55 58 54 32 28 33 29 32 28 58 54 60 54 61 28 62 29 61 28 60 54 63 55 63 55 60 54 64 53 64 53 60 54 65 51 64 53 65 51 66 52 66 52 65 51 67 50 67 50 65 51 68 49 67 50 68 49 69 48 69 48 68 49 70 46 69 48 70 46 71 47 71 47 70 46 72 45 72 45 70 46 73 44 72 45 73 44 74 43 74 43 73 44 75 42 74 43 75 42 76 41 76 41 75 42 77 39 76 41 77 39 78 40 78 40 77 39 79 38 79 38 77 39 80 37 79 38 80 37 81 8 81 8 80 37 82 10 82 10 80 37 83 36 83 36 80 37 84 35 83 36 84 35 85 34 86 31 87 32 88 33 87 32 86 31 89 30 89 30 86 31 62 29 89 30 62 29 90 26 90 26 62 29 61 28 90 26 61 28 91 27 90 26 91 27 92 25 90 26 92 25 93 23 93 23 92 25 94 24 93 23 94 24 95 22 93 23 95 22 96 21 96 21 95 22 97 20 96 21 97 20 98 18 98 18 97 20 99 19 98 18 99 19 100 17 98 18 100 17 101 16 101 16 100 17 102 15 101 16 102 15 103 14 103 14 102 15 104 13 103 14 104 13 105 11 105 11 104 13 106 12 105 11 106 12 107 9 105 11 107 9 82 10 82 10 107 9 81 8 0 56 2 57 108 58 109 59 108 58 2 57 5 57 110 58 111 59 110 58 5 57 7 56 112 60 113 61 8 62 9 63 8 62 113 61 114 61 10 62 11 63 10 62 114 61 115 60 112 64 116 65 113 66 117 67 113 66 116 65 118 65 114 66 119 67 114 66 118 65 115 64 117 68 116 69 120 70 121 71 120 70 116 69 118 69 122 70 123 71 122 70 118 69 119 68 120 72 121 73 124 74 125 75 124 74 121 73 123 73 126 74 127 75 126 74 123 73 122 72 124 76 125 77 128 78 129 79 128 78 125 77 127 77 130 78 131 79 130 78 127 77 126 76 129 80 132 81 128 82 133 83 128 82 132 81 134 81 130 82 135 83 130 82 134 81 131 80 132 84 136 85 133 86 137 87 133 86 136 85 138 85 135 86 139 87 135 86 138 85 134 84 136 88 140 89 137 90 141 91 137 90 140 89 142 89 139 90 143 91 139 90 142 89 138 88 140 92 144 93 141 94 145 95 141 94 144 93 146 93 143 94 147 95 143 94 146 93 142 92 148 96 149 97 144 98 145 99 144 98 149 97 150 97 146 98 147 99 146 98 150 97 151 96 148 100 152 101 149 102 153 103 149 102 152 101 154 101 150 102 155 103 150 102 154 101 151 100 152 104 156 105 153 106 157 107 153 106 156 105 158 105 155 106 159 107 155 106 158 105 154 104 156 108 160 109 157 110 161 111 157 110 160 109 162 109 159 110 163 111 159 110 162 109 158 108 164 112 165 113 160 114 161 115 160 114 165 113 166 113 162 114 163 115 162 114 166 113 167 112 168 116 169 117 164 118 165 119 164 118 169 117 170 117 167 118 166 119 167 118 170 117 171 116 172 120 173 121 168 122 169 123 168 122 173 121 174 121 171 122 170 123 171 122 174 121 175 120 176 124 177 125 172 126 173 127 172 126 177 125 178 125 175 126 174 127 175 126 178 125 179 124 180 128 181 129 176 130 177 131 176 130 181 129 182 129 179 130 178 131 179 130 182 129 183 128 184 132 181 133 185 134 180 135 185 134 181 133 182 133 186 134 183 135 186 134 182 133 187 132 188 136 184 137 189 138 185 139 189 138 184 137 187 137 190 138 186 139 190 138 187 137 191 136 108 140 109 141 189 142 188 143 189 142 109 141 111 141 190 142 191 143 190 142 111 141 110 140</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID859\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID860\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID864\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID867\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID865\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID866\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID865\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID869\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID869\">-0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID866\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID870\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID870\">-0.914297075399253 0.215116645721763 0.3431991938361602 -0.913408876044686 0.2046884346174862 0.3518335826731535 -0.9015424253173537 0.203441541780783 0.381880602323241 0.9015424253173537 -0.203441541780783 -0.381880602323241 0.913408876044686 -0.2046884346174862 -0.3518335826731535 0.914297075399253 -0.215116645721763 -0.3431991938361602 -0.9136510681511446 0.2298793945988548 0.3352569009060609 0.9136510681511446 -0.2298793945988548 -0.3352569009060609 -0.9117782845679017 0.2541872650090479 0.3225665731250447 0.9117782845679017 -0.2541872650090479 -0.3225665731250447 -0.9120084709463099 0.1943087758477377 0.3612265889310024 0.9120084709463099 -0.1943087758477377 -0.3612265889310024 -0.9141809063392639 0.1816931123289236 0.3622994388857799 0.9141809063392639 -0.1816931123289236 -0.3622994388857799 -0.914761389475236 0.2626135214064524 0.306994688390269 0.914761389475236 -0.2626135214064524 -0.306994688390269 -0.9126379924856676 0.2390954511057188 0.3315497849980955 0.9126379924856676 -0.2390954511057188 -0.3315497849980955 -0.9141710218943564 0.2509149231036151 0.3183285159902191 0.9141710218943564 -0.2509149231036151 -0.3183285159902191 -0.9164054954864268 0.1852852093678754 0.3547821289633675 0.9164054954864268 -0.1852852093678754 -0.3547821289633675 -0.8960867889457255 0.2095902619358588 0.3912804477335874 0.8960867889457255 -0.2095902619358588 -0.3912804477335874 -0.907217225171867 0.2176423778275239 0.3599843076094281 0.907217225171867 -0.2176423778275239 -0.3599843076094281 -0.8562445711454921 0.1718809545737532 0.4871367075459286 0.8562445711454921 -0.1718809545737532 -0.4871367075459286 -0.8755394211216304 0.1676337555122239 0.4531331438714985 0.8755394211216304 -0.1676337555122239 -0.4531331438714985</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID868\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"78\" source=\"#ID871\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"156\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID871\">11.91024662259696 -14.00044492351452 11.48721830684091 -14.18013834552815 7.438147269351948 -8.945061733813203 3.719073634675974 -4.472530866906602 5.743609153420457 -7.090069172764073 5.955123311298482 -7.00022246175726 13.28861338462427 -13.18460323054936 12.88197936170507 -13.45581934143577 8.254929826970962 -8.487481463314271 4.127464913485481 -4.243740731657136 6.440989680852535 -6.727909670717886 6.644306692312134 -6.592301615274679 12.70973102284357 -13.55074890505256 12.39471472312215 -13.45941836602513 8.460166676803608 -8.414954825070682 4.230083338401804 -4.207477412535341 6.197357361561076 -6.729709183012567 6.354865511421787 -6.775374452526281 12.3713572617144 -13.48543642483197 12.38139310001852 -13.74944422881806 7.486582909888019 -8.962355583693171 3.74329145494401 -4.481177791846585 6.19069655000926 -6.874722114409029 6.185678630857198 -6.742718212415983 11.08396695669552 -14.10459549978603 10.65623561054411 -13.82917257110459 7.360925690233538 -8.961744858697601 3.680462845116769 -4.480872429348801 5.328117805272056 -6.914586285552295 5.54198347834776 -7.052297749893013 13.26768441638996 -12.36521479670056 13.46124800907294 -12.7724965200221 8.419948186108105 -8.356981608688461 4.209974093054052 -4.17849080434423 6.730624004536471 -6.386248260011051 6.633842208194981 -6.182607398350278 11.72036966567479 -13.33278326480139 9.876498001695808 -11.98045450806011 8.259253079178057 -8.537099214004153 4.129626539589029 -4.268549607002076 4.938249000847904 -5.990227254030056 5.860184832837393 -6.666391632400697 11.97966509082454 -10.58711210718703 13.15729410283716 -12.4439210471574 8.323250129800233 -8.425467281546748 4.161625064900116 -4.212733640773374 6.578647051418579 -6.221960523578701 5.989832545412269 -5.293556053593514 7.350777491034236 -8.872150234277518 8.850256094164777 -12.34833197236433 6.956289496105613 -10.6269661093069 3.478144748052807 -5.313483054653452 4.425128047082389 -6.174165986182165 3.675388745517118 -4.436075117138759 10.13372814794584 -9.101011452070644 11.57804377148073 -10.94931484447147 7.951820622852295 -8.756422366433158 3.975910311426147 -4.378211183216579 5.789021885740366 -5.474657422235735 5.066864073972921 -4.550505726035322 7.911156915166181 -8.818168903335222 7.554866048665636 -10.57803416141198 7.059350620025528 -10.00408034766921 3.529675310012764 -5.002040173834605 3.777433024332818 -5.28901708070599 3.955578457583091 -4.409084451667611 9.193989107545409 -9.508454846182369 9.68941088965202 -10.15601053307976 7.514844530510416 -9.783809952703798 3.757422265255208 -4.891904976351899 4.84470544482601 -5.078005266539878 4.596994553772705 -4.754227423091185 8.659595885478712 -9.110994827756787 9.051855465856226 -9.271744288876676 7.370703582872622 -9.539412442323325 3.685351791436311 -4.769706221161663 4.525927732928113 -4.635872144438338 4.329797942739356 -4.555497413878394</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"13\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 6 0 7 2 8 1 12 8 13 2 14 10 18 6 19 2 20 8 24 12 25 2 26 14 30 10 31 2 32 12 36 16 37 2 38 18 42 14 43 2 44 2 48 16 49 20 50 22 54 18 55 2 56 2 60 20 61 24 62 26 66 22 67 2 68 28 72 26 73 2 74</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID867\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID868\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"13\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 3 4 4 5 5 3 9 5 10 7 11 3 15 9 16 4 17 3 21 7 22 11 23 3 27 13 28 9 29 3 33 11 34 15 35 3 39 17 40 13 41 3 45 15 46 19 47 21 51 17 52 3 53 3 57 19 58 23 59 25 63 21 64 3 65 3 69 23 70 27 71 3 75 27 76 29 77</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID867\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID868\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID872\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID875\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID873\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID874\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID873\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID877\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"102\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID877\">-0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID874\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID878\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"102\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID878\">-0.9134093689969149 -0.4070360955457695 -0.002222960079090378 -0.9119121534907809 -0.4102455541326406 0.01071492558113266 -0.9142974941597579 -0.4048897335756242 0.01115328732918963 0.9142974941597579 0.4048897335756242 -0.01115328732918963 0.9119121534907809 0.4102455541326406 -0.01071492558113266 0.9134093689969149 0.4070360955457695 0.002222960079090378 -0.9136502264216238 -0.4055454024125849 0.02786019277984999 0.9136502264216238 0.4055454024125849 -0.02786019277984999 -0.9117790669024211 -0.4069450223696586 0.05526917700770017 0.9117790669024211 0.4069450223696586 -0.05526917700770017 -0.9120015951730859 -0.4098723359248514 -0.01605486360118063 0.9120015951730859 0.4098723359248514 0.01605486360118063 -0.9141814459760682 -0.4043812773638791 -0.02735080164569932 0.9141814459760682 0.4043812773638791 0.02735080164569932 -0.9147624108846287 -0.3977990536394137 0.07046732970766671 0.9147624108846287 0.3977990536394137 -0.07046732970766671 -0.9126372670989114 -0.4070248176210724 0.03773614371876295 0.9126372670989114 0.4070248176210724 -0.03773614371876295 -0.9144871313551589 -0.4004184535448701 0.05812356360846403 0.9144871313551589 0.4004184535448701 -0.05812356360846403 -0.9204794639534302 -0.3894229249437765 -0.03267020000305571 0.9204794639534302 0.3894229249437765 0.03267020000305571 -0.9088875917936953 -0.4158717928127509 0.03120893183313543 0.9088875917936953 0.4158717928127509 -0.03120893183313543 -0.9109205019190907 -0.4117843417158877 -0.0256416672836413 0.9109205019190907 0.4117843417158877 0.0256416672836413 -0.9100402409371641 -0.4142768079748553 0.01419458520680808 0.9100402409371641 0.4142768079748553 -0.01419458520680808 -0.8630221137902762 -0.5042508634437252 0.03039568760896014 0.8630221137902762 0.5042508634437252 -0.03039568760896014 -0.9456945690175788 -0.3202907360795988 0.05545833131500434 0.9456945690175788 0.3202907360795988 -0.05545833131500434 -0.8815078276401288 -0.4717714966614515 0.01938052494116135 0.8815078276401288 0.4717714966614515 -0.01938052494116135</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID876\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"90\" source=\"#ID879\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID879\">-21.24412297407829 -0.125142413745954 -13.45535559221688 -0.2253901856971766 -21.27670996781477 -0.5024825625750654 -10.63835498390739 -0.2512412812875327 -6.727677796108438 -0.1126950928485883 -10.62206148703914 -0.06257120687297701 -13.42484942034366 -0.7580228247401991 -21.18446660970853 -1.451884809972818 -21.24619008053712 -1.035354676238285 -10.62309504026856 -0.5176773381191425 -10.59223330485427 -0.7259424049864089 -6.712424710171829 -0.3790114123700996 -20.98510383527625 -0.6124360400889033 -13.46874671677735 -0.8672629349756258 -21.25751011054963 -0.7668235939129079 -10.62875505527481 -0.3834117969564539 -6.734373358388677 -0.4336314674878129 -10.49255191763812 -0.3062180200444516 -13.50058237987369 -0.2330322036721792 -20.97141608118763 -1.060835085065468 -21.26028882019027 -0.9262762329989754 -10.63014441009513 -0.4631381164994877 -10.48570804059382 -0.5304175425327341 -6.750291189936846 -0.1165161018360896 -20.42396479385608 0.2036061404282778 -13.43154180529066 -0.1892618490922838 -20.9479230613187 0.06512407169546448 -10.47396153065935 0.03256203584773224 -6.71577090264533 -0.09463092454614187 -10.21198239692804 0.1018030702141389 -13.38256041331185 -0.8934496676200572 -20.31535974206487 -1.82375838440512 -20.85307675263828 -1.723023086473669 -10.42653837631914 -0.8615115432368344 -10.15767987103244 -0.9118791922025602 -6.691280206655926 -0.4467248338100286 -18.02003060176221 0.1220255335760297 -13.48055350387107 -0.7283738844541267 -20.47295909683744 -0.3353143390356228 -10.23647954841872 -0.1676571695178114 -6.740276751935537 -0.3641869422270633 -9.010015300881104 0.06101276678801487 -13.39863503439812 -0.8185917493552359 -17.71476096729495 -2.009425410882813 -20.33158400188232 -1.748210110450446 -10.16579200094116 -0.8741050552252229 -8.857380483647473 -1.004712705441407 -6.699317517199058 -0.409295874677618 -15.0082564826709 0.9665192416528483 -13.32897297677283 -0.2295582768528615 -17.86863127354823 0.6202423415971474 -8.934315636774112 0.3101211707985737 -6.664486488386415 -0.1147791384264307 -7.504128241335451 0.4832596208264242 -13.4529889311389 -0.693808394268258 -15.02644916115231 -1.943272607151886 -17.76961962851651 -1.883509276524634 -8.884809814258253 -0.9417546382623171 -7.513224580576157 -0.9716363035759428 -6.72649446556945 -0.346904197134129 -14.02614066497001 1.087155530817702 -13.21218803543074 -0.1228597901630481 -14.89071638258296 1.073873522804769 -7.445358191291481 0.5369367614023844 -6.60609401771537 -0.06142989508152404 -7.013070332485004 0.5435777654088512 -13.78397498742696 -0.4267008592463119 -14.44465413117839 -1.686613223182673 -15.35883216443236 -1.675075450976801 -7.679416082216179 -0.8375377254884004 -7.222327065589196 -0.8433066115913365 -6.891987493713481 -0.213350429623156 -14.69836427084818 0.4732769352801142 -14.30189428277912 -0.5868967377974099 -15.11723179364458 0.6225414511188454 -7.558615896822288 0.3112707255594227 -7.150947141389562 -0.293448368898705 -7.349182135424091 0.2366384676400571 -12.63674340539486 -0.8350418093976046 -12.92434911954095 -1.920022184078838 -13.29140723759785 -2.096895835997954 -6.645703618798926 -1.048447917998977 -6.462174559770474 -0.960011092039419 -6.318371702697432 -0.4175209046988023 -14.1800185543271 0.1536412372854066 -14.02024496794676 -0.5331294523352237 -14.41809006551084 0.5267253828811376 -7.209045032755421 0.2633626914405688 -7.010122483973378 -0.2665647261676118 -7.090009277163551 0.07682061864270329</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"15\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 6 6 7 2 8 8 12 1 13 0 14 1 18 10 19 6 20 12 24 1 25 8 26 1 30 14 31 10 32 16 36 1 37 12 38 1 42 18 43 14 44 20 48 1 49 16 50 1 54 22 55 18 56 24 60 1 61 20 62 1 66 26 67 22 68 28 72 1 73 24 74 1 78 30 79 26 80 32 84 1 85 28 86</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID875\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID876\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"15\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 3 4 4 5 5 3 9 7 10 4 11 5 15 4 16 9 17 7 21 11 22 4 23 9 27 4 28 13 29 11 33 15 34 4 35 13 39 4 40 17 41 15 45 19 46 4 47 17 51 4 52 21 53 19 57 23 58 4 59 21 63 4 64 25 65 23 69 27 70 4 71 25 75 4 76 29 77 27 81 31 82 4 83 29 87 4 88 33 89</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID875\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID876\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID880\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID883\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID881\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID882\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID881\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID885\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID885\">-0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID882\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID886\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID886\">-0.9056830514341907 0.2001496463545517 -0.3737356410740096 -0.9047258764599201 0.221095053799041 -0.3641264418432539 -0.9105526100805975 0.1847929401693026 -0.369791175582917 0.9105526100805975 -0.1847929401693026 0.369791175582917 0.9047258764599201 -0.221095053799041 0.3641264418432539 0.9056830514341907 -0.2001496463545517 0.3737356410740096 -0.9051369888889698 0.176876174222501 -0.386577094946688 0.9051369888889698 -0.176876174222501 0.386577094946688 -0.904493813809657 0.1911218988267972 -0.3812654725632798 0.904493813809657 -0.1911218988267972 0.3812654725632798 -0.9048570575862879 0.1960303289645085 -0.3778965671481442 0.9048570575862879 -0.1960303289645085 0.3778965671481442 -0.9032828455301246 0.283194694223623 -0.3223055477874834 0.9032828455301246 -0.283194694223623 0.3223055477874834 -0.903932511685058 0.08979039239145804 -0.4181431570083751 0.903932511685058 -0.08979039239145804 0.4181431570083751 -0.9053391715144735 0.2442462075276558 -0.347425926824473 0.9053391715144735 -0.2442462075276558 0.347425926824473 -0.9034477096128234 0.08055611706507812 -0.4210616914405072 0.9034477096128234 -0.08055611706507812 0.4210616914405072 -0.9051167199063447 0.3004841266895872 -0.3007873217966073 0.9051167199063447 -0.3004841266895872 0.3007873217966073 -0.9038086622089847 0.07690250391578957 -0.4209701972913139 0.9038086622089847 -0.07690250391578957 0.4209701972913139 -0.8916242092027337 0.2877059539723708 -0.3496162948325602 0.8916242092027337 -0.2877059539723708 0.3496162948325602 -0.8974554480062785 0.08990498062023532 -0.4318458212180883 0.8974554480062785 -0.08990498062023532 0.4318458212180883 -0.8779052696244868 0.2831733692969536 -0.3861284507603243 0.8779052696244868 -0.2831733692969536 0.3861284507603243 -0.8787757289941988 0.135225059641794 -0.4576760878346039 0.8787757289941988 -0.135225059641794 0.4576760878346039 -0.9571766001854924 0.2406762368571569 -0.1608971878859901 0.9571766001854924 -0.2406762368571569 0.1608971878859901 -0.9663187840262552 -0.06408349179479717 -0.2492414767196787 0.9663187840262552 0.06408349179479717 0.2492414767196787</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID884\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"96\" source=\"#ID887\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"192\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID887\">11.23701380701663 14.38472431556303 11.62241699167023 14.15859673204485 7.247890561596551 9.017184793018476 3.623945280798275 4.508592396509238 5.811208495835114 7.079298366022423 5.618506903508315 7.192362157781517 9.610237607549587 15.07004322533177 10.09506839990886 14.89571032499116 6.312270124388578 9.4365141150515 3.156135062194289 4.71825705752575 5.047534199954431 7.447855162495579 4.805118803774794 7.535021612665886 10.70820329278883 14.61305107737053 10.73290706126174 14.34965055071956 6.493139303682451 9.389856794481524 3.246569651841226 4.694928397240762 5.366453530630868 7.174825275359781 5.354101646394414 7.306525538685265 10.07214180933752 14.65062086041686 10.37099973231822 14.77093216045764 6.929856889300352 9.19065053817757 3.464928444650176 4.595325269088785 5.185499866159109 7.385466080228818 5.036070904668759 7.32531043020843 12.31835537755474 13.50282029479082 12.17351499889409 13.08321338276301 7.821705813732769 8.685069065969902 3.910852906866384 4.342534532984951 6.086757499447046 6.541606691381505 6.159177688777371 6.751410147395411 7.77529816670016 15.01302132937492 8.151522194221171 15.33158858879169 5.370170743512229 9.751768766821881 2.685085371756115 4.87588438341094 4.075761097110585 7.665794294395843 3.88764908335008 7.506510664687459 11.45974683281593 13.49634638012442 10.6191642510143 11.62672481508899 7.211427886669418 9.036025413102365 3.605713943334709 4.518012706551183 5.309582125507149 5.813362407544494 5.729873416407967 6.748173190062207 6.043161989998992 13.39339577620473 7.610509003207477 15.06240894843653 5.235798096827196 9.792612949944351 2.617899048413598 4.896306474972175 3.805254501603738 7.531204474218267 3.021580994999496 6.696697888102364 11.46063465620553 10.99959879798778 10.22937862915607 8.939277822018701 7.980285588588723 8.469341774523125 3.990142794294362 4.234670887261562 5.114689314578033 4.46963891100935 5.730317328102766 5.499799398993892 6.007223952446729 13.40087908685941 5.204683511179758 9.799429035524494 4.605625825318914 11.54493689437456 2.302812912659457 5.772468447187281 2.602341755589879 4.899714517762247 3.003611976223365 6.700439543429704 10.08534950006962 9.25731378331802 9.603947610001866 8.670713562118595 7.838690672075432 8.780226490960692 3.919345336037716 4.390113245480346 4.801973805000933 4.335356781059297 5.042674750034811 4.62865689165901 4.507682296432314 11.54467298219238 5.113560001846171 9.800622461742714 4.061243782257101 10.93449054480636 2.030621891128551 5.46724527240318 2.556780000923085 4.900311230871357 2.253841148216157 5.772336491096191 9.671671521288179 9.065981605457438 9.276434081040812 8.875378320044581 7.906737286793971 9.178667328377136 3.953368643396986 4.589333664188568 4.638217040520406 4.43768916002229 4.835835760644089 4.532990802728719 6.191963544606201 9.949194390801255 5.184839687325803 10.74959644287122 5.196960240007307 11.11464310537072 2.598480120003654 5.557321552685361 2.592419843662901 5.374798221435611 3.0959817723031 4.974597195400627 8.493525136113068 7.344301545890064 7.961446468619004 7.383621000725571 7.116338653487188 7.625819840706948 3.558169326743594 3.812909920353474 3.980723234309502 3.691810500362786 4.246762568056534 3.672150772945032 3.248034811266818 8.626432983016079 2.510419584926491 9.040122526603774 2.15770661357887 9.356257960679804 1.078853306789435 4.678128980339902 1.255209792463246 4.520061263301887 1.624017405633409 4.313216491508039</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"16\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 6 0 7 2 8 1 12 8 13 2 14 10 18 6 19 2 20 8 24 12 25 2 26 14 30 10 31 2 32 12 36 16 37 2 38 18 42 14 43 2 44 16 48 20 49 2 50 18 54 2 55 22 56 20 60 24 61 2 62 22 66 2 67 26 68 24 72 28 73 2 74 2 78 30 79 26 80 28 84 32 85 2 86 2 90 34 91 30 92</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID883\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID884\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"16\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 3 4 4 5 5 3 9 5 10 7 11 3 15 9 16 4 17 3 21 7 22 11 23 3 27 13 28 9 29 3 33 11 34 15 35 3 39 17 40 13 41 3 45 15 46 19 47 3 51 21 52 17 53 23 57 3 58 19 59 3 63 25 64 21 65 27 69 3 70 23 71 3 75 29 76 25 77 27 81 31 82 3 83 3 87 33 88 29 89 31 93 35 94 3 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID883\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID884\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID888\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID891\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID889\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID890\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID889\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID893\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID893\">-0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID890\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID894\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID894\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1339049186988217 0.7508247768900788 0.6467856114325872 -0.1366815993397975 0.7492072263892851 0.6480792176331454 -0.1357431839025557 0.7497550114468473 0.6476428111500465 0.1357431839025557 -0.7497550114468473 -0.6476428111500465 0.1366815993397975 -0.7492072263892851 -0.6480792176331454 0.1339049186988217 -0.7508247768900788 -0.6467856114325872 -0.1520463180641854 0.9134113510277387 -0.3775733319195171 -0.1334097867881871 0.9103994814047611 -0.3916307100408146 -0.1390632020355034 0.9113651292871443 -0.3873951818996452 0.1390632020355034 -0.9113651292871443 0.3873951818996452 0.1334097867881871 -0.9103994814047611 0.3916307100408146 0.1520463180641854 -0.9134113510277387 0.3775733319195171 -0.1567944187057105 0.08942895644361149 -0.9835740805918715 -0.1662539374228294 0.0953143051630216 -0.9814656445962314 -0.1620999136155048 0.09272970269960207 -0.9824076649961 0.1620999136155048 -0.09272970269960207 0.9824076649961 0.1662539374228294 -0.0953143051630216 0.9814656445962314 0.1567944187057105 -0.08942895644361149 0.9835740805918715 -0.1804827978264776 -0.7794077832683366 -0.5999578877466854 -0.1731947688567061 -0.7836915051681265 -0.5965158814046685 -0.1839627565907119 -0.7773362748139587 -0.6015862532055601 0.1839627565907119 0.7773362748139587 0.6015862532055601 0.1731947688567061 0.7836915051681265 0.5965158814046685 0.1804827978264776 0.7794077832683366 0.5999578877466854 -0.1498802405936568 -0.8314662140399025 0.5349764933057699 -0.159394116583764 -0.8338018904044722 0.5285526682899351 -0.1454069155601703 -0.830330389039357 0.5379667963220666 0.1454069155601703 0.830330389039357 -0.5379667963220666 0.159394116583764 0.8338018904044722 -0.5285526682899351 0.1498802405936568 0.8314662140399025 -0.5349764933057699 -0.1200646820303652 -0.1352334059142434 0.9835122765140153 -0.1169608422628643 -0.1329517455880777 0.9841971320432936 -0.1178688308120367 -0.1336192904808511 0.9839983861442035 0.1178688308120367 0.1336192904808511 -0.9839983861442035 0.1169608422628643 0.1329517455880777 -0.9841971320432936 0.1200646820303652 0.1352334059142434 -0.9835122765140153 -0.1149780011914516 -0.1314937652318465 0.9846265530378361 0.1149780011914516 0.1314937652318465 -0.9846265530378361 -0.1383533907224121 0.748228527281576 0.6488546911579324 0.1383533907224121 -0.748228527281576 -0.6488546911579324 -0.1218391275179259 0.9082828720398434 -0.4002217527380592 0.1218391275179259 -0.9082828720398434 0.4002217527380592 -0.171069294297384 0.09831063701288102 -0.9803419378965262 0.171069294297384 -0.09831063701288102 0.9803419378965262 -0.1903801350748161 -0.7734717985712226 -0.6045632977479636 0.1903801350748161 0.7734717985712226 0.6045632977479636 -0.1369570666554436 -0.8281195642851391 0.5435630130365088 0.1369570666554436 0.8281195642851391 -0.5435630130365088</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID892\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID895\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID895\">-3.22750530352778 -2.812409736805045 -2.951301684127827 -2.560178796236892 -3.07457980125035 -3.103438394186436 -2.586245081388976 -3.138366854245081 -2.556691561629541 -2.602862605502018 -2.334681128296288 -2.878373475755785 3.890396129634985 -3.830929293644298 3.841902111534349 -4.161649426798395 3.575431113631269 -3.789832146312027 3.887388388210999 -1.440193123441505 3.912498830598775 -1.754485825277173 3.566726244310392 -1.436325568056493 -0.4520798298547238 3.628218854229932 -0.02789107994044388 3.434714660158956 -0.6269127531905233 3.417011356515528 -4.616564961458593 -3.307009919642491 -4.930711116245211 -3.25041739217853 -4.876425679403012 -2.926478984311723 -4.513663973358447 -1.850958396857737 -4.836851909935116 -1.83958610627239 -4.878537780603065 -1.515035859425156 -5.046195202738853 -1.291777653134048 -5.308185798548161 -1.055748647629636 -4.790052294242987 -1.141577079945387 -5.313828097940997 -1.009515787560939 -5.090443691600591 -0.8300736736479857 -4.796520925120116 -1.098375304575961 3.816637853167348 -4.175572887189126 3.495993835408513 -4.170866329638131 3.552114816996843 -3.802895821126935 4.0296039108369 -1.697189035132493 3.713607575865441 -1.738790116719466 3.688828852934125 -1.375709284375783 -0.01104629650652111 3.368886973135145 -0.1460547981744018 3.138679991438502 -0.6101368924396966 3.352691153528167 -4.583199311398975 -2.874060766680606 -4.653434003548693 -3.245359532973397 -4.906343357164033 -2.861941179468713 -4.476160721886599 -1.758342063168315 -4.835281606577187 -1.418604677661858 -4.518465614885066 -1.386244061110217</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 43 24 48 25 44 26 45 26 49 25 46 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 25 33 54 34 26 35 27 35 55 34 28 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID891\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID892\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID896\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID899\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID897\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID898\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID897\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID901\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID901\">-0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID898\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID902\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID902\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1556107303666403 0.7682758938062599 0.6209166220926551 -0.1116879029147231 0.7955488162724242 0.5955064174885576 -0.1211700042938787 0.789903523489808 0.6011407935232872 0.1211700042938787 -0.789903523489808 -0.6011407935232872 0.1116879029147231 -0.7955488162724242 -0.5955064174885576 0.1556107303666403 -0.7682758938062599 -0.6209166220926551 -0.1244233597649755 0.7888847891485317 -0.60181360652188 -0.1090844255234062 0.783426245276965 -0.6118365029315144 -0.07906121212958679 0.7719592340661052 -0.6307362885364001 0.07906121212958679 -0.7719592340661052 0.6307362885364001 0.1090844255234062 -0.783426245276965 0.6118365029315144 0.1244233597649755 -0.7888847891485317 0.60181360652188 -0.2018053130177652 0.01921618423162401 -0.979237128534952 -0.1572201673390395 -0.01588452934778078 -0.9874358210584038 -0.1697468595286489 -0.006068861490700951 -0.9854690114865956 0.1697468595286489 0.006068861490700951 0.9854690114865956 0.1572201673390395 0.01588452934778078 0.9874358210584038 0.2018053130177652 -0.01921618423162401 0.979237128534952 -0.1301145213637191 -0.8486119901717154 -0.5127649573314177 -0.1086210651978576 -0.8602669808478003 -0.4981387215006411 -0.1343567494298995 -0.8462231442695603 -0.5156109521578944 0.1343567494298995 0.8462231442695603 0.5156109521578944 0.1086210651978576 0.8602669808478003 0.4981387215006411 0.1301145213637191 0.8486119901717154 0.5127649573314177 -0.1233984985839719 -0.8421416557768033 0.5249478470788555 -0.1395139141062699 -0.8459706197122566 0.5146548147587942 -0.1133150330807146 -0.8395891544271424 0.5312718278303796 0.1133150330807146 0.8395891544271424 -0.5312718278303796 0.1395139141062699 0.8459706197122566 -0.5146548147587942 0.1233984985839719 0.8421416557768033 -0.5249478470788555 -0.1131147639969138 0.1650111135103676 0.9797838448270062 -0.1302224134692138 0.1510864416931907 0.9799056128866409 -0.1260546410823167 0.1544903123830586 0.9799198798072183 0.1260546410823167 -0.1544903123830586 -0.9799198798072183 0.1302224134692138 -0.1510864416931907 -0.9799056128866409 0.1131147639969138 -0.1650111135103676 -0.9797838448270062 -0.1420492710714026 0.1413865864036689 0.9797100784278996 0.1420492710714026 -0.1413865864036689 -0.9797100784278996 -0.07903885031514943 0.8139813077432695 0.5754887407981291 0.07903885031514943 -0.8139813077432695 -0.5754887407981291 -0.1506678535050407 0.7975887197008246 -0.5840816998727005 0.1506678535050407 -0.7975887197008246 0.5840816998727005 -0.1263475132736118 -0.03992446121385578 -0.9911822956885165 0.1263475132736118 0.03992446121385578 0.9911822956885165 -0.1536418730879432 -0.8349919501480647 -0.5283773443496233 0.1536418730879432 0.8349919501480647 0.5283773443496233 -0.09890193715248216 -0.8357326912076589 0.5401567139953833 0.09890193715248216 0.8357326912076589 -0.5401567139953833</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID900\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID903\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID903\">2.1541310401361 -2.962968129024459 2.38695007375611 -2.736350782082216 2.418521699517856 -3.217524168002713 2.761839076668994 -2.686682816693547 2.821044674853094 -3.223738017132682 2.994709736256524 -2.987806394483918 4.862848037992812 -1.436471730911179 4.816630126722004 -1.72556996709557 4.546856623073591 -1.394885293464188 4.701232558523698 -3.464185464245616 4.356729313977708 -3.137265300856367 4.674295548158963 -3.13614816966916 2.832124689239227 2.605261509879871 3.232835120194977 2.574608855939533 2.790045554862084 2.35347060364349 -3.773819348498676 -1.514619174466891 -4.089461011924668 -1.478694176529454 -4.067706033708806 -1.206600595934767 -3.610399023948869 -4.057492832424999 -3.931153506527283 -4.05303378018515 -3.969045730769214 -3.701827264759665 5.255177150779224 -0.7332430780051124 5.043212311869807 -0.9815096230854541 5.001577739208429 -0.581536198764107 4.9024837554483 -1.297541471095555 4.850872795825993 -1.696794596249568 4.606137713813613 -1.534142956742709 4.665354963484203 -1.648431032989956 4.347788412930141 -1.649491048209251 4.37016457834615 -1.331467340770913 4.849233383170659 -3.32165800873397 4.536459444617076 -3.384541965459336 4.483803267194991 -3.009115504783515 1.340664256104527 3.565066468173025 1.452060210471746 3.329977995737437 1.04044806537555 3.226749937533368 -3.541497141569373 -0.9801162596498589 -3.57981940945645 -1.290193905695045 -3.862250629639993 -0.9756131540381329 -3.774866068728113 -4.012438122951902 -4.122520570283084 -3.650081136837909 -3.807240998867626 -3.6140169568218</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 5 5 4 4 3 3 6 3 7 4 8 5 7 4 6 3 9 2 9 2 6 3 10 1 9 2 10 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 18 30 52 31 19 32 22 32 53 31 23 30 25 33 54 34 26 35 27 35 55 34 28 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID899\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID900\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID904\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID907\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID905\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID906\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID905\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID909\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID909\">-0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID906\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID910\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID910\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1162781854949556 0.9440221721569896 0.3087094460070827 -0.1346201936039555 0.9376228862790311 0.3205319431816625 -0.1281283390755502 0.939946060968536 0.3163613933391273 0.1281283390755502 -0.939946060968536 -0.3163613933391273 0.1346201936039555 -0.9376228862790311 -0.3205319431816625 0.1162781854949556 -0.9440221721569896 -0.3087094460070827 -0.1262440609561076 0.6903675011133202 -0.7123588635511321 -0.138001516637389 0.6955840009988096 -0.7050662940179939 -0.1649346685400534 0.70700699320098 -0.687704636220007 0.1649346685400534 -0.70700699320098 0.687704636220007 0.138001516637389 -0.6955840009988096 0.7050662940179939 0.1262440609561076 -0.6903675011133202 0.7123588635511321 -0.1349838365174811 -0.2465273866193998 -0.9596893307344993 -0.1249639091624064 -0.2537058685940289 -0.959175350834142 -0.1286676828647164 -0.2510584934495154 -0.9593822284434316 0.1286676828647164 0.2510584934495154 0.9593822284434316 0.1249639091624064 0.2537058685940289 0.959175350834142 0.1349838365174811 0.2465273866193998 0.9596893307344993 -0.137528258736553 -0.9661754887229821 -0.2181533933721836 -0.1258995814562067 -0.9694811380793162 -0.2103701934628239 -0.1434766227141468 -0.9644040248531957 -0.2221245947244455 0.1434766227141468 0.9644040248531957 0.2221245947244455 0.1258995814562067 0.9694811380793162 0.2103701934628239 0.137528258736553 0.9661754887229821 0.2181533933721836 -0.1239625549634292 -0.6332652192933885 0.7639426987675421 -0.1185484243271057 -0.6305364008267925 0.7670528784392604 -0.1200262461105332 -0.6312838785604785 0.7662077818152547 0.1200262461105332 0.6312838785604785 -0.7662077818152547 0.1185484243271057 0.6305364008267925 -0.7670528784392604 0.1239625549634292 0.6332652192933885 -0.7639426987675421 -0.1167974670152386 0.208822637995721 0.9709538905423534 -0.1045482762700885 0.2188615063811693 0.9701388039623601 -0.1074482883687536 0.2164917070285634 0.9703536500237859 0.1074482883687536 -0.2164917070285634 -0.9703536500237859 0.1045482762700885 -0.2188615063811693 -0.9701388039623601 0.1167974670152386 -0.208822637995721 -0.9709538905423534 -0.09592521523731801 0.2258827503490979 0.9694201030391322 0.09592521523731801 -0.2258827503490979 -0.9694201030391322 -0.1453360876391361 0.933647648128806 0.3273827893663605 0.1453360876391361 -0.933647648128806 -0.3273827893663605 -0.1018954951506087 0.6791262154425009 -0.7269146384320226 0.1018954951506087 -0.6791262154425009 0.7269146384320226 -0.1190712048485406 -0.2579031796181484 -0.9588055058867603 0.1190712048485406 0.2579031796181484 0.9588055058867603 -0.154126908222058 -0.9610952896026681 -0.2292176704913324 0.154126908222058 0.9610952896026681 0.2292176704913324 -0.115015487565636 -0.6287414646692523 0.7690615113406746 0.115015487565636 0.6287414646692523 -0.7690615113406746</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID908\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID911\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID911\">3.858881499525051 0.9609417295217747 3.993090241948528 1.28379398993862 4.139088478041265 0.7343252686688629 4.360066392024481 1.345881974146346 4.569212760641203 0.8212451680291688 4.659980598047449 1.15030729017397 4.932691922661467 2.050594508079105 4.916285000295099 1.711163197031581 4.615259486836989 2.070469394477851 5.301373169335704 -1.097168139238578 4.917103607755755 -0.805118177735519 5.237714155139309 -0.7850202068611257 -1.940032066892782 4.570920503433157 -1.733459754836062 4.880174696214064 -1.662795203246673 4.446608370819519 -3.534587250218728 1.624071027479026 -3.852408664159016 1.648173959859722 -3.840719447785261 1.984768461447111 -3.499512347452446 -2.523060644294281 -3.557127484714577 -2.219977571431748 -3.179303377019544 -2.513625773284166 6.036691952030751 1.558880138713572 5.857553404921535 1.299387320327408 5.765266348757652 1.69019121520112 5.53875939098732 2.16409055123303 5.68267868581342 1.783065168379234 5.379672069378961 1.860096852462629 5.018382483950596 1.712588065047657 4.697355198809692 1.697146151252073 4.72200273180184 2.074276447220133 5.042709028738651 -1.456450100848597 4.730220832293885 -1.507328388868188 4.680145291440302 -1.1477025667911 -2.043781256662477 4.349112368737373 -2.15044191010415 4.778099156923561 -1.849061549422705 4.695147414247404 -3.380644054737866 1.71494630994848 -3.683758735701449 2.077217382872447 -3.363423892743181 2.083472085264609 -3.620464559827389 -2.222019128872433 -3.308006398490402 -2.172864553124199 -3.246199033616235 -2.51847405722835</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 5 5 4 4 3 3 6 3 7 4 8 5 7 4 6 3 9 2 9 2 6 3 10 1 9 2 10 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 18 30 52 31 19 32 22 32 53 31 23 30 26 33 25 34 54 35 55 35 28 34 27 33 30 36 32 37 56 38 57 38 33 37 35 36 37 39 58 40 38 41 39 41 59 40 40 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID907\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID908\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID912\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID915\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID913\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID914\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID913\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID917\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID917\">-0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID914\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID918\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID918\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1410029563660657 0.4807853474390595 0.8654268403417659 -0.1060549371234037 0.5081935363673253 0.8546880599998006 -0.1135576304247743 0.5024134134834092 0.8571379273630698 0.1135576304247743 -0.5024134134834092 -0.8571379273630698 0.1060549371234037 -0.5081935363673253 -0.8546880599998006 0.1410029563660657 -0.4807853474390595 -0.8654268403417659 -0.1067686555805312 0.994014375944963 0.02314896542551481 -0.0992313783360488 0.9949317552839722 0.01624610356613912 -0.1001724357446263 0.9948230072652543 0.01710752269338355 0.1001724357446263 -0.9948230072652543 -0.01710752269338355 0.0992313783360488 -0.9949317552839722 -0.01624610356613912 0.1067686555805312 -0.994014375944963 -0.02314896542551481 -0.09891909191161409 0.4687497692647048 -0.8777748384806138 -0.1287480142985737 0.4875078415387097 -0.8635739998705626 -0.1204055105956813 0.4823208077810515 -0.8676803278855798 0.1204055105956813 -0.4823208077810515 0.8676803278855798 0.1287480142985737 -0.4875078415387097 0.8635739998705626 0.09891909191161409 -0.4687497692647048 0.8777748384806138 -0.1646652191806799 -0.4577190077569442 -0.8737154431107287 -0.1437557280381843 -0.4742852702663527 -0.8685549913877557 -0.148440743472404 -0.4706111030796328 -0.869764643645355 0.148440743472404 0.4706111030796328 0.869764643645355 0.1437557280381843 0.4742852702663527 0.8685549913877557 0.1646652191806799 0.4577190077569442 0.8737154431107287 -0.09646331398013955 -0.9953169813336709 0.006239849741635174 -0.1039611698752289 -0.994581356731652 -1.567513741408958e-017 -0.09475985240703004 -0.9954707181582593 0.007656347776652718 0.09475985240703004 0.9954707181582593 -0.007656347776652718 0.1039611698752289 0.994581356731652 1.567513741408958e-017 0.09646331398013955 0.9953169813336709 -0.006239849741635174 -0.08050414354804245 -0.4417526345097378 0.8935175951123192 -0.1080393619639094 -0.4596758574940459 0.881490557126703 -0.1004692751834205 -0.4547958960035424 0.8849105139631087 0.1004692751834205 0.4547958960035424 -0.8849105139631087 0.1080393619639094 0.4596758574940459 -0.881490557126703 0.08050414354804245 0.4417526345097378 -0.8935175951123192 -0.1261670868981231 -0.4712139498534301 0.8729486122602924 0.1261670868981231 0.4712139498534301 -0.8729486122602924 -0.08066176544082679 0.5273398224729309 0.8458169963001376 0.08066176544082679 -0.5273398224729309 -0.8458169963001376 -0.09298631847472325 0.9956116753904154 0.01053263513122168 0.09298631847472325 -0.9956116753904154 -0.01053263513122168 -0.1480979007488019 0.499360107511594 -0.8536430722613565 0.1480979007488019 -0.499360107511594 0.8536430722613565 -0.128617271239178 -0.4860099095104769 -0.8644373692735674 0.128617271239178 0.4860099095104769 0.8644373692735674 -0.08787557746910753 -0.9960416408784326 0.01337656610159817 0.08787557746910753 0.9960416408784326 -0.01337656610159817</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID916\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID919\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID919\">-0.2925268116698577 3.596545335882117 0.027122406016975 3.736241749693183 -0.3004302779671875 3.329571050263488 0.04688576503043994 3.183664922406017 0.3783244763866356 3.599650192905323 0.3783244763866733 3.320256183830747 4.304771798895633 1.03172710660281 4.21481509604171 0.7529116011386672 4.000044726454139 1.10793485062912 4.421275731804731 3.581575744406544 4.420431663145973 3.314529897656492 4.10347570606989 3.588741106063421 4.319595171864108 2.43657218669946 4.391308998608645 2.132013168039903 4.004262736190113 2.404159357085891 -4.197876129968127 2.620891524746142 -4.085679924831708 2.901690795312082 -3.898880727774464 2.528130711158829 -4.096804965313124 3.297878293086227 -4.414531600177956 3.320256183830747 -4.41453160017797 3.599650192905323 -4.337741485997127 0.7903962326542223 -4.40070684784139 1.094589961698369 -4.021893908100886 0.8163003856027347 -3.915494554730933 0.7530582966662636 -4.318740986045711 1.009222180880419 -4.014861215834311 1.087495689805327 4.382412656505274 1.275732923953219 4.06494067866972 1.289160856444053 4.117569520822965 1.609168978682243 4.430786423268708 3.323457494963106 4.11338677832698 3.307928508737795 4.113749018618937 3.59761042930563 3.896458540050114 2.733419148329708 4.306625459163545 2.483105444542788 4.004673048262786 2.396474751015988 -4.232313562344972 2.697004915989215 -3.918374393230021 2.65249310587964 -4.010318426120987 2.335558842294007 -4.109867458805556 3.289422241500907 -4.427552647176091 3.591221143347064 -4.110337663997246 3.602853878806665</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 26 33 25 34 54 35 55 35 28 34 27 33 31 36 56 37 32 38 33 38 57 37 34 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID915\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID916\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID920\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID923\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID921\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID922\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID921\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID925\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID925\">-0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID922\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID926\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID926\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1094074020686247 0.4984230333416132 0.8600026163955198 -0.101645225647281 0.504024634304494 0.8576872484287816 -0.1038929795673725 0.5024082937966418 0.8583659797085161 0.1038929795673725 -0.5024082937966418 -0.8583659797085161 0.101645225647281 -0.504024634304494 -0.8576872484287816 0.1094074020686247 -0.4984230333416132 -0.8600026163955198 -0.1018222525483512 0.9769718064996613 -0.1875055150942714 -0.1087690994352792 0.9772346523405453 -0.1821584949237671 -0.1067289061750859 0.9771652234428873 -0.1837309627702476 0.1067289061750859 -0.9771652234428873 0.1837309627702476 0.1087690994352792 -0.9772346523405453 0.1821584949237671 0.1018222525483512 -0.9769718064996613 0.1875055150942714 -0.1433289414998819 0.3565134591932102 -0.9232307230278977 -0.1359909180218172 0.3518821215535716 -0.9261130831310727 -0.1384934920200037 0.3534641008466894 -0.9251392771257453 0.1384934920200037 -0.3534641008466894 0.9251392771257453 0.1359909180218172 -0.3518821215535716 0.9261130831310727 0.1433289414998819 -0.3565134591932102 0.9232307230278977 -0.1349675165566499 -0.6595557153030317 -0.7394389953780073 -0.1173622889185317 -0.6711286400381099 -0.731992104916713 -0.1222124372058731 -0.6679776222096131 -0.7340776637518621 0.1222124372058731 0.6679776222096131 0.7340776637518621 0.1173622889185317 0.6711286400381099 0.731992104916713 0.1349675165566499 0.6595557153030317 0.7394389953780073 -0.1058191295169145 -0.9701374026818134 0.2182561150255999 -0.1176512528335321 -0.9707395559761901 0.209339191671912 -0.1005580890291001 -0.9698016599802893 0.2221999348116262 0.1005580890291001 0.9698016599802893 -0.2221999348116262 0.1176512528335321 0.9707395559761901 -0.209339191671912 0.1058191295169145 0.9701374026818134 -0.2182561150255999 -0.08585473045780438 -0.2416308289560064 0.9665627283089551 -0.09548416722338041 -0.2496875094316789 0.9636072443913355 -0.09416004869071552 -0.2485813326810608 0.9640234469519244 0.09416004869071552 0.2485813326810608 -0.9640234469519244 0.09548416722338041 0.2496875094316789 -0.9636072443913355 0.08585473045780438 0.2416308289560064 -0.9665627283089551 -0.1032242823055442 -0.256142923912011 0.9611116220670267 0.1032242823055442 0.256142923912011 -0.9611116220670267 -0.09649147165714225 0.5077129698964091 0.8561056804486271 0.09649147165714225 -0.5077129698964091 -0.8561056804486271 -0.1131851789208752 0.9773627740502681 -0.1787487711102216 0.1131851789208752 -0.9773627740502681 0.1787487711102216 -0.1315202965520038 0.349049637920842 -0.9278290585351389 0.1315202965520038 -0.349049637920842 0.9278290585351389 -0.1057405989715317 -0.6785643004438799 -0.7268902364815817 0.1057405989715317 0.6785643004438799 0.7268902364815817 -0.08943516453163014 -0.968954655637462 0.2304956109423514 0.08943516453163014 0.968954655637462 -0.2304956109423514</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID924\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID927\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID927\">-4.51102072099726 1.290001193398601 -4.163760809506149 1.448324091080901 -4.43604104310682 0.9826730704162471 -4.037474306459234 0.861597233214203 -3.832275540913754 1.38313464652574 -3.745473328734743 1.066488851161099 3.48126989775373 -2.661916721724257 3.406816483430799 -2.972177582241644 3.171026590337021 -2.606554836662415 3.986386895219333 1.997404066098809 3.994159350684655 1.684526607744221 3.668382965150461 2.008969601292834 2.500220450372008 4.580014812517327 2.648891197907055 4.264915060407883 2.195936011940815 4.503074526773451 -5.196643413251278 -1.19861087185011 -5.138103206570871 -0.8942667761061519 -4.885016970408737 -1.255419445917819 -4.577487831674194 1.559607900813885 -4.89624123966273 1.566454220558648 -4.90668503084679 1.890274882143592 -5.502753935253568 1.960405471812763 -5.613737620860929 2.214624445873762 -5.196980618279403 2.02817604302201 -5.28394018282753 1.881208739224467 -5.709881774726242 2.054336581082488 -5.419548725810715 2.156634437970546 3.557132004722975 -2.881032731401244 3.240017181379571 -2.859050560085873 3.310138597047183 -2.520016467100998 3.938085392640403 1.658921497886375 3.620759139691174 1.628873567018144 3.611445236497108 1.98282659750306 2.320203332516909 4.476851663613845 2.766926089553627 4.231515357916557 2.474798949672067 4.128983753580942 -4.732582976568755 -1.343547542461741 -5.001424279837343 -0.9895101278624701 -4.68279295752764 -0.9992583488947533 -4.484848678126927 1.630913117934281 -4.811397957767102 1.963200932487673 -4.494532730293797 1.981060250884132</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 26 33 25 34 54 35 55 35 28 34 27 33 32 36 31 37 56 38 57 38 34 37 33 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID923\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID924\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID928\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID931\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID929\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID930\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID929\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID933\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID933\">-0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID930\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID934\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID934\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6729842940505703 0.1624422630054802 0.7215986773483681 -0.6631750828133616 0.3731148991519088 0.6488328610407705 -0.6659834446608215 0.3807686437826488 0.6414680750821734 0.6659834446608215 -0.3807686437826488 -0.6414680750821734 0.6631750828133616 -0.3731148991519088 -0.6488328610407705 0.6729842940505703 -0.1624422630054802 -0.7215986773483681 -0.6113335516860552 0.4667959055536873 0.6390405864585023 -0.6145137989325163 0.4655985671337754 0.6368600829102905 0.6145137989325163 -0.4655985671337754 -0.6368600829102905 0.6113335516860552 -0.4667959055536873 -0.6390405864585023 -0.6144500916695223 -0.7444263356970634 -0.2613054066948456 -0.6112712807697465 -0.7468583700018094 -0.2618205424796805 -0.6629988808447853 -0.7286899444755632 -0.1715909345471451 0.6629988808447853 0.7286899444755632 0.1715909345471451 0.6112712807697465 0.7468583700018094 0.2618205424796805 0.6144500916695223 0.7444263356970634 0.2613054066948456 -0.6658161315575506 -0.7238380484211855 -0.180962312693964 -0.6729924006868499 -0.7380291832850042 0.04893008519735241 0.6729924006868499 0.7380291832850042 -0.04893008519735241 0.6658161315575506 0.7238380484211855 0.180962312693964 -0.6701345713609732 -0.7408307531705968 0.04571051764672113 -0.6289565476282814 -0.7476459025257273 0.2131648789833918 0.6289565476282814 0.7476459025257273 -0.2131648789833918 0.6701345713609732 0.7408307531705968 -0.04571051764672113 -0.6253103361580007 -0.5580893712997171 0.545456906763728 -0.6194244385915946 -0.5603481644919415 0.5498393396493199 -0.6586335051836426 -0.4503276787562835 0.602832387646422 0.6586335051836426 0.4503276787562835 -0.602832387646422 0.6194244385915946 0.5603481644919415 -0.5498393396493199 0.6253103361580007 0.5580893712997171 -0.545456906763728 -0.6193457640666231 -0.3683472929438279 0.6933477455892423 -0.6252441215267333 -0.3647786176751771 0.6899321333169304 0.6252441215267333 0.3647786176751771 -0.6899321333169304 0.6193457640666231 0.3683472929438279 -0.6933477455892423 -0.6289128458978669 0.007652928515795015 0.7774381422015375 -0.6701201336408642 0.1663084455640048 0.7233813015438224 0.6701201336408642 -0.1663084455640048 -0.7233813015438224 0.6289128458978669 -0.007652928515795015 -0.7774381422015375 -0.622078851308744 -0.7522767596266303 0.2170197679476473 0.622078851308744 0.7522767596266303 -0.2170197679476473 -0.6633240955833247 -0.4478538037142369 0.5995232395139108 0.6633240955833247 0.4478538037142369 -0.5995232395139108 -0.6220261755595516 0.005266994658404282 0.7829787325885845 0.6220261755595516 -0.005266994658404282 -0.7829787325885845</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID932\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID935\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID935\">-5.438809568305453 -9.482737238346916 -4.541160899478318 -7.445155913627095 -5.145381836570095 -9.567177416708539 -4.190221839946828 -7.423786392543641 -4.338167595264546 -6.491496952334127 -4.22725624399334 -5.808877949883205 -4.020489550882155 -6.418076771645296 -10.25054723218782 -6.567089824067745 -7.923492667272267 -5.229891230022745 -10.06436935037758 -6.764499303685906 -7.849986300628801 -5.500677176589291 -6.745726004323971 -4.816560978528544 -6.74510123625174 -5.077039638609257 -6.05632672639457 -5.091645344449993 -5.944453442550639 -4.799730893098601 -5.184941219754366 -5.408638486833185 -4.986782358868105 -5.199964448886369 -4.55134529488531 -5.976060559444166 -4.269678334633769 -7.17228634502103 -5.336475990643389 -7.742358147485223 -5.505193325159312 -7.604034168790181 -3.661673248818458 -8.175413593687873 -5.511200601136377 -9.91390228982233 -5.689347174156868 -9.800731856029373 -6.397152300006442 -9.528426778102082 -6.619985055648084 -9.486958521750623 -6.015019925488002 -7.266096214065682 -5.79271183303645 -7.457467891379393 -6.028516018800286 -7.409110337784746 -5.916495195503265 -6.398410337512396 -5.673245435811727 -6.290409739551873 -5.918451089773818 -6.293838969348061 -6.058299012606727 -5.672970773922897 -5.831542273483992 -4.949930903754136 -6.048613951193245 -5.018529849581411 -6.611867500289026 -4.289528229207675 -6.506198159929273 -4.392862628766582 -7.32929965042728 -3.837447967747981 -7.208078507396563 -3.680070861867471 -5.811153776812445 -5.845724523787836 -6.612063954614971 -5.871073215402708 -6.660239379493177 -5.681909366053281 -4.387052615037615 -7.827415091763079 -4.202315597411297 -7.952433032619871 -6.31321530276293 -9.510799849948398 -4.446445643616539 -6.970949011293415 -4.332306682772676 -7.141703510882534 -5.571264021655384 -7.567302934022142 -5.799661110009105 -7.240732120036159 -6.473568664496056 -9.447001600170312 -6.035007605903449 -7.19101390246045 -5.796727443660892 -7.448951623798941 -5.918247615980235 -6.389731880133182 -5.673040901826159 -6.386349889532563 -5.664342994491257 -6.207430836053704 -6.041028142086967 -5.586805558446977 -5.819314759100421 -5.528107959488318 -6.42137595324032 -4.391696199990871 -5.81103562343381 -5.155932387550443 -6.610934274938454 -4.510184301514173 -5.87571544118804 -5.509489278649395 -5.907464823598496 -5.691800534694194 -6.752987524416816 -5.516952551322585 -6.431552494877005 -4.672209874291356 -7.16680172405666 -3.98054871024504 -6.262434736188439 -4.53591418972004</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 6 6 3 3 5 5 7 7 8 8 9 9 9 9 8 8 10 10 8 8 11 11 10 10 10 10 11 11 12 12 12 12 11 11 13 13 11 11 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 5 5 17 17 4 4 17 17 5 5 18 5 19 17 20 4 19 17 18 5 21 16 19 17 21 16 22 15 22 15 21 16 23 14 22 15 23 14 24 13 24 13 23 14 25 11 24 13 25 11 26 12 26 12 25 11 27 10 27 10 25 11 28 8 27 10 28 8 29 9 29 9 28 8 30 7 18 5 31 3 32 6 31 3 18 5 20 4 31 3 20 4 33 1 31 3 33 1 34 2 34 2 33 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 37 21 42 22 43 23 44 23 45 22 40 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 48 28 53 29 54 29 49 28 55 27 56 30 53 31 57 32 58 32 54 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 62 36 66 37 67 38 68 38 69 37 63 36 70 39 36 40 71 41 72 41 41 40 73 39 38 42 37 43 43 44 44 44 40 43 39 42 71 45 36 46 38 47 39 47 41 46 72 45 52 48 46 49 48 50 49 50 51 49 55 48 52 51 53 52 56 53 59 53 54 52 55 51 56 54 57 55 74 56 75 56 58 55 59 54 76 57 60 58 62 59 63 59 65 58 77 57 78 60 70 61 71 62 72 62 73 61 79 60 62 63 67 64 76 65 77 65 68 64 63 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID931\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID932\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID936\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID939\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID937\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID938\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID937\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID941\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID941\">-0.5150356702529333 0.418747608939894 -1.245344265937886 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID938\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID942\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID942\">-0.115277788968267 0.9330479626690824 0.3407822335886396 -0.1164463359679276 0.9328196483828717 0.3410099037132209 -0.1088396993734213 0.9391143652329044 0.3259112284863811 0.1088396993734213 -0.9391143652329044 -0.3259112284863811 0.1164463359679276 -0.9328196483828717 -0.3410099037132209 0.115277788968267 -0.9330479626690824 -0.3407822335886396 -0.110822325248955 0.938063640003709 0.3282605969796052 0.110822325248955 -0.938063640003709 -0.3282605969796052 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1169850955608708 0.9419046119998733 0.3148494708745472 0.1169850955608708 -0.9419046119998733 -0.3148494708745472 -0.5145250095588039 0.8558675183312584 0.05248624204499802 -0.4971810650748229 0.8663223338632058 0.04792287951357918 -0.5580107354442373 0.8289599112591531 0.03807209810606934 0.5580107354442373 -0.8289599112591531 -0.03807209810606934 0.4971810650748229 -0.8663223338632058 -0.04792287951357918 0.5145250095588039 -0.8558675183312584 -0.05248624204499802 -0.5582784877518608 0.8289230506726751 0.03480957019271046 -0.545158170653844 0.8382267271768401 0.01336124304687095 0.545158170653844 -0.8382267271768401 -0.01336124304687095 0.5582784877518608 -0.8289230506726751 -0.03480957019271046 -0.1365860819270675 0.9570595346721975 0.2556976521535723 -0.1321549003024238 0.9557169747171905 0.2629451398361978 -0.1318695905464307 0.9596171302456248 0.2484861654665474 0.1318695905464307 -0.9596171302456248 -0.2484861654665474 0.1321549003024238 -0.9557169747171905 -0.2629451398361978 0.1365860819270675 -0.9570595346721975 -0.2556976521535723 -0.1269044865420529 0.9532261396277257 0.2743267723462684 -0.1289657532660433 0.9574337946917685 0.2582409016144471 0.1289657532660433 -0.9574337946917685 -0.2582409016144471 0.1269044865420529 -0.9532261396277257 -0.2743267723462684 -0.1260690186249341 0.9534847853620122 0.2738126487693791 -0.1240825368586034 0.9470375050500011 0.2961815120418608 -0.1256954876265769 0.946399129432289 0.2975387910846624 0.1240825368586034 -0.9470375050500011 -0.2961815120418608 0.1256954876265769 -0.946399129432289 -0.2975387910846624 0.1260690186249341 -0.9534847853620122 -0.2738126487693791 -0.1211441855015404 0.9401500394776983 0.3184995911916539 0.1211441855015404 -0.9401500394776983 -0.3184995911916539 -0.6307694948426644 0.7463033893518946 0.2125114006772442 -0.6328306015520273 0.7446519113729666 0.2121767202779013 -0.5536072311495947 0.7950907964196508 0.2476886333032765 0.5536072311495947 -0.7950907964196508 -0.2476886333032765 0.6328306015520273 -0.7446519113729666 -0.2121767202779013 0.6307694948426644 -0.7463033893518946 -0.2125114006772442 -0.5497408771862887 0.7964870254649378 0.2517804325527812 -0.5039674104246305 0.8086833501771441 0.3033942787465886 0.5039674104246305 -0.8086833501771441 -0.3033942787465886 0.5497408771862887 -0.7964870254649378 -0.2517804325527812 -0.49850465150458 0.8115072862067282 0.3048754448322932 -0.4609956099973669 0.7886395059681967 0.4068547372089872 0.4609956099973669 -0.7886395059681967 -0.4068547372089872 0.49850465150458 -0.8115072862067282 -0.3048754448322932 -0.4573880925719646 0.794515332784318 0.399426487283961 -0.4569339343695998 0.6598239237892639 0.5965264195464085 0.4569339343695998 -0.6598239237892639 -0.5965264195464085 0.4573880925719646 -0.794515332784318 -0.399426487283961 -0.4542025713545716 0.645235326881341 0.6143056219173191 -0.4287005991166544 0.541309811422194 0.7233252963743838 0.4287005991166544 -0.541309811422194 -0.7233252963743838 0.4542025713545716 -0.645235326881341 -0.6143056219173191 -0.3523470247597167 0.9358104485918809 0.01050611484984737 -0.3063228392035632 0.9519258992836576 -0.001844032339199885 0.3063228392035632 -0.9519258992836576 0.001844032339199885 0.3523470247597167 -0.9358104485918809 -0.01050611484984737 -0.5412614551618135 0.8407681758003589 0.01203792828742119 0.5412614551618135 -0.8407681758003589 -0.01203792828742119 -0.4272410976619026 0.5422294182526325 0.7235000362474522 0.4272410976619026 -0.5422294182526325 -0.7235000362474522</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID940\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID943\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID943\">4.591982473100826 -10.49532155130045 3.596381102692845 -10.48973263072317 3.76825062863832 -7.313630254900839 4.788649302747732 -7.361376930524428 4.631787065582489 -10.48471036339275 3.796584343130128 -7.304870234576655 -0.7853905368619629 -4.383741487515724 -0.7842970050049303 -4.827816971326995 -1.146439087214903 -5.03998101979383 -4.18747608939894 -9.796708225378035 -2.830459374017382 -6.858879041460048 -3.334680812059787 -9.988933491671299 -2.433741973391066 -5.946419099073036 -2.261771182375565 -7.026766978130183 -2.160556126454998 -5.312462941343926 -1.883282441546899 -6.176047377569198 -1.75673311539269 -4.219410608791835 -1.55270259855911 -5.546970027708173 -1.390357703847656 -3.215229491993068 -1.233424149184261 -2.753147786843712 -0.7088761597558091 -3.338546544481618 -0.694556993678912 -2.849561690363584 4.796023997542307 -7.350374402013268 3.803908500346693 -7.294419494786282 3.846359672297336 -6.358789390875086 4.189805728167312 -4.506856094946615 4.017070421792077 -4.507227523838949 4.056342725136757 -3.460756783488558 4.041586134627782 -3.375623115899968 3.862151086380763 -3.39010326253353 3.870196798047121 -2.901029633565524 4.924433338735429 -3.053604799231155 4.902261330893889 -3.531575789521651 3.928024266704107 -3.013988383563838 4.914626931451051 -3.539105977826516 4.865011689683587 -4.583100420342436 3.919683204120139 -3.486961206510021 3.879494827284836 -4.562583285591289 4.875488640555209 -4.580879223037842 3.826540600621813 -5.700099691054323 4.822529489921589 -5.718396071753157 4.819555400866464 -5.742979411248102 4.783442973528894 -6.411767901669563 3.823573876076065 -5.724436591786642 4.801955210030906 -6.405668232595182 4.751878529572747 -7.369217884205696 3.807368354643659 -6.37459105667303 1.957060357039899 -10.75365200785607 1.765124464725816 -10.7423214537102 2.459913955440844 -7.711138893628805 3.112360206094057 -7.803950315529296 2.933665600069839 -7.795972115472037 3.149980037999058 -6.910862697284486 3.538235007196647 -6.973994288736734 3.368556206581121 -6.954419143262834 3.543814988888633 -6.287816333452746 3.730204477851461 -6.425917052375335 3.571658995865501 -6.383955407013207 3.78465959479941 -5.80854108379769 3.450220969145402 -5.87097057055601 3.291859972225696 -5.827754909589918 3.519029084241668 -5.520774225638371 4.81826881172313 -4.865116337961796 4.662517777683195 -4.824437088967236 4.662182803330457 -4.380360850124628 4.169439869693115 -5.006811491088558 4.017124258375433 -4.521314350847296 4.189859564349691 -4.520942806572722 4.004600561683029 -4.529075056857496 3.874875918312202 -3.482684764307377 4.054308477449268 -3.46818554239393 4.13083736103226 -2.887771090306144 4.12622640779107 -3.355828234508149 3.954605625143068 -2.881286514067027 4.918885407229313 -3.514893431760281 3.923906485213045 -3.463165909205145 3.943337637863319 -2.998836062633428 4.875812890540187 -4.576456053667682 3.879818224823473 -4.558188850263479 3.928797703118019 -3.481218209051338 4.803189826014569 -6.40130696790807 3.808597935928527 -6.370329666730073 3.841555000386308 -5.715504750840945 3.127530081582867 -7.698959191979644 2.529718595190085 -10.74144726110512 2.948827516519374 -7.691092086442025 3.575179329102383 -6.890866213050533 3.386085399216066 -7.765086638555999 3.405436347186381 -6.871638496491231 3.947379466551694 -6.267623306827016 3.799988017323743 -6.914572938978153 3.787685574673548 -6.22844919458952 3.926023634899166 -5.850225398106103 3.707505967984392 -6.43359348176798 3.764036350977447 -5.816332960126295 3.706070434976303 -5.556515053892731 3.494701207686569 -5.848193276457293 3.560052651719282 -5.497587420403937</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 8 6 9 7 10 8 11 9 12 10 13 11 12 10 14 12 13 11 13 11 14 12 15 13 14 12 16 14 15 13 15 13 16 14 17 15 16 14 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 20 18 21 19 19 17 19 17 21 19 10 8 10 8 21 19 8 6 8 6 21 19 22 20 23 21 22 20 21 19 24 19 25 20 26 21 25 20 24 19 27 6 27 6 24 19 28 8 28 8 24 19 29 17 29 17 24 19 30 18 29 17 30 18 31 16 29 17 31 16 32 15 32 15 31 16 33 14 32 15 33 14 34 13 34 13 33 14 35 12 34 13 35 12 36 11 36 11 35 12 37 10 36 11 37 10 38 9 28 8 39 7 27 6 6 22 2 23 40 24 41 24 3 23 7 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 44 29 49 30 50 30 45 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 58 38 63 39 64 40 63 39 58 38 61 38 65 39 66 40 65 39 61 38 67 37 64 41 68 42 63 43 65 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 72 51 77 52 78 52 73 51 79 50 80 53 77 54 81 55 82 55 78 54 83 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 92 62 93 63 43 64 46 64 94 63 95 62 92 65 43 66 42 67 47 67 46 66 95 65 42 68 44 69 48 70 51 70 45 69 47 68 96 71 48 72 49 73 50 73 51 72 97 71 53 74 59 75 54 76 55 76 60 75 56 74 58 77 62 78 59 79 60 79 67 78 61 77 68 80 40 81 63 82 65 82 41 81 69 80 76 83 70 84 72 85 73 85 75 84 79 83 80 86 76 87 77 88 78 88 79 87 83 86 84 89 80 90 81 91 82 91 83 90 87 89 88 92 84 93 85 94 86 94 87 93 91 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID939\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID940\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID944\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID947\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID945\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID946\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID945\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID949\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID949\">-0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID946\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID950\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID950\">-0.1152454256731035 -0.591455387657384 -0.7980595317847402 -0.10882822046992 -0.5789017034806163 -0.8081022436156152 -0.1164097430468417 -0.5916084081534543 -0.7977770760844811 0.1164097430468417 0.5916084081534543 0.7977770760844811 0.10882822046992 0.5789017034806163 0.8081022436156152 0.1152454256731035 0.591455387657384 0.7980595317847402 -0.1108221458520233 -0.5808630075720961 -0.8064221093342195 0.1108221458520233 0.5808630075720961 0.8064221093342195 -0.1170077107804017 -0.5691015957689537 -0.8138996064080387 0.1170077107804017 0.5691015957689537 0.8138996064080387 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211696670977339 -0.5721039063745667 -0.8111812572331694 0.1211696670977339 0.5721039063745667 0.8111812572331694 -0.1268981050915295 -0.533447946261532 -0.8362596244908234 -0.1321663082555465 -0.5232428882080906 -0.8418722865742495 -0.1289674607165914 -0.5192099234538959 -0.844860017673528 0.1289674607165914 0.5192099234538959 0.844860017673528 0.1321663082555465 0.5232428882080906 0.8418722865742495 0.1268981050915295 0.533447946261532 0.8362596244908234 -0.1366069441971335 -0.5166761365997606 -0.8452125843037756 -0.1318813258933644 -0.5104743797675104 -0.8497194969409517 0.1318813258933644 0.5104743797675104 0.8497194969409517 0.1366069441971335 0.5166761365997606 0.8452125843037756 -0.5582991414998946 -0.2685090417213844 -0.7849872375487035 -0.5451296895268838 -0.2505730592629967 -0.8000292266960662 -0.558031261867371 -0.2716463664879751 -0.78409780152261 0.558031261867371 0.2716463664879751 0.78409780152261 0.5451296895268838 0.2505730592629967 0.8000292266960662 0.5582991414998946 0.2685090417213844 0.7849872375487035 -0.497052555982873 -0.2917024651576237 -0.8172199388242178 -0.5143888624622276 -0.293110942014941 -0.8059094700063585 0.5143888624622276 0.293110942014941 0.8059094700063585 0.497052555982873 0.2917024651576237 0.8172199388242178 -0.306415783897025 -0.2682897565392926 -0.9133071629604461 -0.3523806686222084 -0.2755513168992308 -0.8943709164191694 0.3523806686222084 0.2755513168992308 0.8943709164191694 0.306415783897025 0.2682897565392926 0.9133071629604461 -0.456893286178551 -0.7592058438957603 -0.4635245534375617 -0.4541605104685136 -0.7721228532482589 -0.4444823171091813 -0.4286828954205195 -0.847176126038426 -0.3138846709293164 0.4286828954205195 0.847176126038426 0.3138846709293164 0.4541605104685136 0.7721228532482589 0.4444823171091813 0.456893286178551 0.7592058438957603 0.4635245534375617 -0.4610282434667641 -0.6138335702605229 -0.6408286094949022 -0.4574134951468932 -0.6083801890432725 -0.6485726173969845 0.4574134951468932 0.6083801890432725 0.6485726173969845 0.4610282434667641 0.6138335702605229 0.6408286094949022 -0.5040410792207913 -0.5203001144828611 -0.6893695535248579 -0.4985789755177557 -0.522521104138984 -0.69165793633923 0.4985789755177557 0.522521104138984 0.69165793633923 0.5040410792207913 0.5203001144828611 0.6893695535248579 -0.5497531637915774 -0.4673687586348154 -0.6923423303202705 -0.5536165038480039 -0.4630501931675085 -0.6921656487248167 0.5536165038480039 0.4630501931675085 0.6921656487248167 0.5497531637915774 0.4673687586348154 0.6923423303202705 -0.6307873335127643 -0.4154716222280389 -0.6553553776410614 -0.6328486545725545 -0.4146821088617343 -0.6538664458401979 0.6328486545725545 0.4146821088617343 0.6538664458401979 0.6307873335127643 0.4154716222280389 0.6553553776410614 -0.1256979469617381 -0.5537729312787706 -0.823125486613385 -0.1240913043504173 -0.5526586540230366 -0.8241175646217339 0.1240913043504173 0.5526586540230366 0.8241175646217339 0.1256979469617381 0.5537729312787706 0.823125486613385 -0.1260575905833764 -0.5330255257953374 -0.8366560061978389 0.1260575905833764 0.5330255257953374 0.8366560061978389 -0.5412201697451934 -0.2500231718377586 -0.8028506345548783 0.5412201697451934 0.2500231718377586 0.8028506345548783 -0.4272344532522728 -0.8476012840976981 -0.3147106371735229 0.4272344532522728 0.8476012840976981 0.3147106371735229</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID948\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID951\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID951\">-7.138963213337921 -9.590815887125158 -5.534782427677182 -6.599055031610398 -6.161466385372765 -9.739583828584451 -7.020912501436172 -9.64477766665155 -6.442251176197418 -6.552312786454574 -5.453974869115332 -6.64082692448904 -5.491014958906135 -6.614316476552948 -6.478772582362814 -6.522289149874103 -5.308720537271718 -5.689141638149316 -11.2782606739596 -5.320825261743578 -7.9717957997741 -3.671216674709287 -10.80202970911157 -5.90961685543797 -7.605823633967948 -4.052573869433889 -7.042161934252819 -3.144381333275127 -6.606115120661046 -3.494493541298796 -6.369100491594986 -2.716571791351699 -5.910816590358083 -3.108575940139804 -5.866347671529796 -2.26628703653867 -5.710456022755999 -1.932931811574967 -5.168852690973136 -1.807773613133746 -4.692973909088815 -2.493915854454659 -3.916435254479966 -1.453588938535106 -3.572826706871928 -1.932684592651026 -3.324449483955088 -1.304083515806536 -3.054065519073461 -1.683218989209923 -6.591891121267537 -6.452906138227753 -6.388217779204394 -5.501977139414676 -5.406867405753555 -5.632958163486499 -6.117810543867646 -3.561478629224226 -5.851698291102253 -2.537936179978868 -4.869366170504851 -2.672663225915323 -5.892517064855022 -2.454203569649013 -5.759915324541431 -1.987415610829698 -4.783295469245281 -2.147838056814312 -5.7562003319981 1.149012728635336 -5.145451942425918 1.261211835115473 -5.685275317190505 1.018545122632574 -7.036424047085478 0.1630502095845917 -7.130976261011481 0.2767553873179948 -5.946862418828762 0.7642798521704014 -7.689126942260445 -0.7059138880145554 -7.834279527146465 -0.6456774898488107 -7.281644872447997 -0.3986048403960985 -7.259177835029453 -2.856584011353963 -7.416547296366069 -2.811190375613943 -7.188071436753713 -2.505819076414183 -7.861456431581737 -3.261559665315641 -8.018917079536788 -3.217136703021234 -7.575012072795065 -2.706222549244504 -8.557885289507643 -3.223633364054006 -8.698178247785402 -3.146031785827807 -8.102290839309255 -2.644916224219954 -9.506351967249945 -3.371429820198309 -8.684971497927776 -2.754199168926557 -9.379701635931678 -3.470919080308647 -12.37770881846667 -4.872005277182687 -9.490624175621949 -2.809199905568493 -12.25623907044876 -4.989462679559276 -6.444857026542284 -5.458380516152987 -6.296049610050064 -4.799287875721132 -5.318589154545419 -4.950828734137319 -5.113185334491933 -3.759627421801614 -5.392057858255205 -4.876556620212218 -6.08813702729078 -3.598391158750079 -6.367006455932359 -4.715312852682593 -5.422269957287876 -5.619952481288294 -6.403242112042205 -5.487229736398297 -5.281056882911339 -4.974112230283341 -5.121764907583199 -3.747570384158296 -6.096300623064521 -3.58478531167352 -4.853940277352765 -2.690709885832792 -5.873559466293838 -2.478965772395742 -4.767264819600784 -2.166119404674233 -4.892686598708286 -2.620119059241625 -7.042920849049135 0.3363783258394972 -5.917332136334101 0.9220098715437491 -5.839645049230055 0.7939477636360648 -5.787526407421514 1.179018042887779 -5.271800528567625 1.412461230707683 -5.177910156173502 1.294964790723312 -7.650128474823353 -0.0521237149128579 -7.147894061445859 0.2311284178204125 -7.052366363064595 0.117928942085436 -7.169448987281526 -2.523237030315316 -7.397103799309265 -2.828987567036165 -7.330237832350131 -2.497391177424061 -7.584247127016653 -2.689362640162711 -8.030026041788469 -3.199266105371076 -7.737670076202681 -2.636262514374005 -8.584674860058595 -3.385887706682498 -8.170034062009835 -2.815279621232072 -8.015596352434937 -2.86584519018703 -9.418099806598537 -3.589866553505813 -8.7639835389675 -2.867638261066807 -8.626894580693087 -2.948706082022819 -12.16085591726943 -5.324233997524462 -9.566235995890917 -3.01950100195389 -9.444421399327453 -3.12265942849865</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 1 6 6 7 8 8 9 8 7 7 4 6 10 9 11 10 12 11 12 11 11 10 13 12 11 10 14 13 13 12 13 12 14 13 15 14 14 13 16 15 15 14 15 14 16 15 17 16 16 15 18 17 17 16 18 17 19 18 17 16 19 18 20 19 17 16 17 16 20 19 21 20 20 19 22 21 21 20 21 20 22 21 23 22 22 21 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 21 27 22 29 21 30 20 30 20 29 21 31 19 30 20 31 19 32 16 32 16 31 19 33 18 32 16 33 18 34 17 32 16 34 17 35 15 32 16 35 15 36 14 36 14 35 15 37 13 36 14 37 13 38 12 38 12 37 13 39 10 38 12 39 10 40 11 40 11 39 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 56 39 57 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 79 50 74 51 77 51 80 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 83 56 87 57 88 57 84 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 94 61 91 62 44 63 90 64 44 63 91 62 92 62 49 63 93 64 49 63 92 62 95 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 45 71 51 72 46 73 47 73 52 72 48 71 61 74 54 75 56 76 57 76 59 75 62 74 54 77 96 78 55 79 58 79 97 78 59 77 65 80 61 81 60 82 63 82 62 81 66 80 70 83 69 84 98 85 99 85 72 84 71 83 68 86 75 87 69 88 72 88 76 87 73 86 79 89 75 90 74 91 77 91 76 90 80 89 82 92 79 93 78 94 81 94 80 93 85 92 86 95 82 96 83 97 84 97 85 96 89 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID947\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID948\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID952\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID955\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID953\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID954\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID953\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID957\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID957\">-0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID954\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID958\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID958\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6630305151580132 0.7299655905773456 -0.1659541278256337 -0.6658436797422771 0.7251760043223742 -0.1754193743641215 -0.6729884580762607 0.7375072073159738 0.05629968430755275 0.6729884580762607 -0.7375072073159738 -0.05629968430755275 0.6658436797422771 -0.7251760043223742 0.1754193743641215 0.6630305151580132 -0.7299655905773456 0.1659541278256337 -0.6113107337789397 0.7482110703485606 -0.2578359574894776 -0.6144800241452068 0.7457833801420833 -0.257335286795953 0.6144800241452068 -0.7457833801420833 0.257335286795953 0.6113107337789397 -0.7482110703485606 0.2578359574894776 -0.6112832145498026 -0.4707347038740193 0.6361931076161541 -0.6630446878927789 -0.3784166032630609 0.645889012317143 -0.6144572319660114 -0.469525830568726 0.6340250819276909 0.6144572319660114 0.469525830568726 -0.6340250819276909 0.6630446878927789 0.3784166032630609 -0.645889012317143 0.6112832145498026 0.4707347038740193 -0.6361931076161541 -0.6729915547513984 -0.1696569719422396 0.71992977373122 -0.6658562154288208 -0.3859655043248172 0.6384873764187492 0.6658562154288208 0.3859655043248172 -0.6384873764187492 0.6729915547513984 0.1696569719422396 -0.71992977373122 -0.6289091309737778 -0.01542730369521124 0.7773257382066434 -0.6701267456751917 -0.1735325142790268 0.72167625097323 0.6701267456751917 0.1735325142790268 -0.72167625097323 0.6289091309737778 0.01542730369521124 -0.7773257382066434 -0.6193427745518753 0.3613913988662995 0.6970012800819265 -0.6586051859823896 0.4442906086005776 0.6073261595769036 -0.6252368259778801 0.3578597082949858 0.6935526949123143 0.6252368259778801 -0.3578597082949858 -0.6935526949123143 0.6586051859823896 -0.4442906086005776 -0.6073261595769036 0.6193427745518753 -0.3613913988662995 -0.6970012800819265 -0.6194223535536992 0.5548231614226238 0.5554162470319005 -0.6253034624160696 0.5526101220855131 0.5510150931318574 0.6253034624160696 -0.5526101220855131 -0.5510150931318574 0.6194223535536992 -0.5548231614226238 -0.5554162470319005 -0.67013650131323 0.7403345362785804 0.05312103162442063 -0.628982358135911 0.7454560785608687 0.2206273511839385 0.628982358135911 -0.7454560785608687 -0.2206273511839385 0.67013650131323 -0.7403345362785804 -0.05312103162442063 -0.6220189146899646 -0.01309573882381509 0.7828926946859175 0.6220189146899646 0.01309573882381509 -0.7828926946859175 -0.6632923012885572 0.441848588696277 0.6039976388351515 0.6632923012885572 -0.441848588696277 -0.6039976388351515 -0.6221076599331773 0.7500464868654583 0.2245268959239637 0.6221076599331773 -0.7500464868654583 -0.2245268959239637</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID956\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID959\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID959\">3.87764031107622 -6.480658898337778 4.092155780313024 -5.873100523294384 4.034559973661107 -7.487651576590498 4.194417247662015 -6.556555994075766 4.385226823545771 -7.511775063321221 4.975203874607814 -9.634970930132152 5.269730206931626 -9.552833993310438 4.414072035031004 -6.042836842313367 4.859378482153733 -5.270196480154701 5.05490498188978 -5.48043594259001 5.822099524111708 -4.877519494199655 5.930260994757609 -5.170298768740171 6.619185689247543 -5.161112975986945 6.623133292318746 -4.900658240318208 7.718649839306408 -5.593427100716775 7.795591679423524 -5.323227745288749 9.929583898964312 -6.871125386769826 10.11824808736943 -6.675185043266 5.925653000357565 -7.46826496498529 5.689472813873823 -7.515378658893742 5.822179128624093 -6.457005021127549 6.511257923774214 -9.533277001644295 6.288098685998339 -9.573629295500691 5.916109472248006 -7.310813277664289 5.366702388850225 -9.961973302364093 3.526461403957602 -8.209666149461569 5.546090981562797 -9.850025254076742 5.158417602448649 -7.80262028114791 4.100724298898611 -7.222142695431995 5.329292279186206 -7.665955408862323 6.437987728279937 -5.968028370914714 5.637638242695263 -5.933192605821058 6.489769452481003 -5.779453223070861 7.217578390551652 -3.945559541713974 6.386063448597975 -4.493172816030821 7.098762251858164 -3.787052743699775 6.517499784057383 -4.37952604699279 5.946010344400233 -5.104542875128599 5.729712477188441 -5.034440475430622 5.82171707979354 -6.36355039909147 5.576548159483153 -6.35877397416587 5.967022270105487 -5.74343876346228 6.355060939941811 -9.495860674564316 5.691826745769582 -7.287545814181028 5.927577537499342 -7.239119522850759 5.822211657743393 -6.448847275944787 5.691612126075604 -7.507383079612655 5.577040359522241 -6.444146991745441 4.251113033307034 -7.871692637448878 6.168526379568627 -9.569136817559707 4.064972331357362 -7.995403824306254 5.397026101555857 -7.63010449077775 4.164842777836451 -7.1925382682496 4.281639333974275 -7.022897481686874 6.578380074322135 -5.620264617403369 5.729387676422575 -5.784399080729091 5.701364756438144 -5.601711277529612 6.30564364571233 -4.770181180200111 6.13862237800544 -4.632304826311748 7.051363306255356 -4.085489202208199 5.955497993585017 -5.656571920937295 5.573646081394728 -6.275246632246977 5.734267381965052 -5.596749296751172 6.323365246363862 -4.479665053217046 6.511544613865906 -4.599494280401795 5.704254899531289 -5.239542710890913</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 6 6 5 5 4 4 3 3 1 1 7 7 1 1 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 11 11 10 10 12 12 10 10 13 13 12 12 12 12 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 17 17 16 16 15 15 18 15 19 16 20 17 19 16 18 15 21 14 21 14 18 15 22 13 21 14 22 13 23 12 23 12 22 13 24 10 23 12 24 10 25 11 25 11 24 10 26 9 26 9 24 10 27 8 26 9 27 8 28 7 28 7 27 8 29 1 28 7 29 1 30 3 31 4 32 5 33 6 32 5 31 4 34 2 34 2 31 4 30 3 34 2 30 3 29 1 34 2 29 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 36 23 41 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 47 27 52 28 53 29 54 29 55 28 50 27 52 30 56 31 57 32 58 32 59 31 55 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 38 39 70 40 71 41 72 41 73 40 39 39 43 42 37 43 36 44 41 44 40 43 44 42 38 45 37 46 70 47 73 47 40 46 39 45 53 48 48 49 47 50 50 50 49 49 54 48 53 51 52 52 57 53 58 53 55 52 54 51 57 54 56 55 74 56 75 56 59 55 58 54 61 57 76 58 62 59 63 59 77 58 64 57 71 60 70 61 78 62 79 62 73 61 72 60 76 63 61 64 67 65 68 65 64 64 77 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID955\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID956\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID960\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID963\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID961\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID962\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID961\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID965\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID965\">-0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID962\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID966\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID966\">-0.108837402926013 0.5869636604169701 -0.8022643461317676 -0.1152524072062661 0.5994041612018266 -0.792105759458354 -0.1164164008736633 0.5995543045607452 -0.7918218596946564 0.1164164008736633 -0.5995543045607452 0.7918218596946564 0.1152524072062661 -0.5994041612018266 0.792105759458354 0.108837402926013 -0.5869636604169701 0.8022643461317676 -0.1108295971226472 0.5889064001271712 -0.8005660824010021 0.1108295971226472 -0.5889064001271712 0.8005660824010021 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.117010717209138 0.5772025840593379 -0.8081742813362881 0.117010717209138 -0.5772025840593379 0.8081742813362881 -0.5145432086037881 0.301138149130455 -0.8028456275137845 -0.4972069966061667 0.2998409485598932 -0.8141748019268212 -0.55805116068878 0.2794674820048999 -0.7813301661626451 0.55805116068878 -0.2794674820048999 0.7813301661626451 0.4972069966061667 -0.2998409485598932 0.8141748019268212 0.5145432086037881 -0.301138149130455 0.8028456275137845 -0.5451735392333464 0.2585521366823797 -0.7974563340627268 -0.5583170886261052 0.2763353231468237 -0.7822536786295161 0.5583170886261052 -0.2763353231468237 0.7822536786295161 0.5451735392333464 -0.2585521366823797 0.7974563340627268 -0.1366137379887484 0.525105648062938 -0.8400004434315159 -0.1321751191906274 0.5316379949383054 -0.8365947526759427 -0.1318899009461685 0.5189517552672971 -0.8445674216623568 0.1318899009461685 -0.5189517552672971 0.8445674216623568 0.1321751191906274 -0.5316379949383054 0.8365947526759427 0.1366137379887484 -0.525105648062938 0.8400004434315159 -0.1269133562014147 0.541783060402261 -0.8308815291477196 -0.1289772731066859 0.5276362262001799 -0.8396218647839013 0.1289772731066859 -0.5276362262001799 0.8396218647839013 0.1269133562014147 -0.541783060402261 0.8308815291477196 -0.1241088849423676 0.5608577831136058 -0.8185569814003505 -0.1260730475475516 0.541364594212308 -0.8312821198699127 -0.1257237932527103 0.5619705390732921 -0.8175467210036521 0.1260730475475516 -0.541364594212308 0.8312821198699127 0.1257237932527103 -0.5619705390732921 0.8175467210036521 0.1241088849423676 -0.5608577831136058 0.8185569814003505 -0.1211792230471033 0.5801840317827792 -0.8054204399976321 0.1211792230471033 -0.5801840317827792 0.8054204399976321 -0.5535170558317795 0.4699781182489695 -0.6875604971713225 -0.630745177755128 0.4220252385451681 -0.6511952232391957 -0.6328077900805511 0.4212204572764466 -0.6497134962313701 0.6328077900805511 -0.4212204572764466 0.6497134962313701 0.630745177755128 -0.4220252385451681 0.6511952232391957 0.5535170558317795 -0.4699781182489695 0.6875604971713225 -0.5040577082147066 0.5271615428562393 -0.6841246483812488 -0.5496579690091841 0.4742995180535889 -0.6876889444209731 0.5496579690091841 -0.4742995180535889 0.6876889444209731 0.5040577082147066 -0.5271615428562393 0.6841246483812488 -0.4986083373847545 0.5294053531974816 -0.6863815978712283 -0.4611603796146424 0.6201725230534618 -0.6345999889089049 0.4611603796146424 -0.6201725230534618 0.6345999889089049 0.4986083373847545 -0.5294053531974816 0.6863815978712283 -0.4575413346766589 0.6147893824288844 -0.6424094818065907 -0.4569158452101462 0.7637801850174524 -0.4559251466749819 0.4569158452101462 -0.7637801850174524 0.4559251466749819 0.4575413346766589 -0.6147893824288844 0.6424094818065907 -0.4541857773435357 0.7765036889450471 -0.4367577139714671 -0.4287765424434085 0.8502341030875822 -0.3053729631076245 0.4287765424434085 -0.8502341030875822 0.3053729631076245 0.4541857773435357 -0.7765036889450471 0.4367577139714671 -0.3524563901464338 0.2844550069979994 -0.8915491248600456 -0.3064595936731795 0.2773796356690582 -0.9105729268772327 0.3064595936731795 -0.2773796356690582 0.9105729268772327 0.3524563901464338 -0.2844550069979994 0.8915491248600456 -0.5412696949613353 0.2580312515619297 -0.8002793203212533 0.5412696949613353 -0.2580312515619297 0.8002793203212533 -0.427351177790763 0.8506607779687953 -0.3061816644842928 0.427351177790763 -0.8506607779687953 0.3061816644842928</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID964\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID967\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID967\">5.499103420584213 -6.600182416334707 7.091288569950677 -9.595896339223589 6.113201900217518 -9.742250853991777 6.408896219694804 -6.554535211264102 6.975901634042057 -9.648330521578423 5.420290547408211 -6.640748761512123 2.984224971584125 -1.734949918247632 3.259391378364231 -1.357956861170158 3.499790042667428 -1.988486954492802 3.849480692439346 -1.51211513898687 4.612728757974727 -2.558494340414665 5.097247661780172 -1.876136291272333 5.637283441458915 -2.005547866194009 5.788941760897649 -2.3401120123712 5.822719035721721 -3.182704696932027 6.285949643299203 -2.794328788599893 6.513094513763935 -3.57407440575762 6.953548495402975 -3.227415287865078 7.505618194240906 -4.139992194044065 7.876456342147549 -3.761524831997849 10.67805680033176 -6.022078132143546 11.16176846173632 -5.437065414091726 6.443502443529829 -6.524454426903926 5.455377910186199 -6.614016405360451 5.276829500861391 -5.688413843343613 7.093346623752447 0.1936633434774049 6.996622144483922 0.08107890823026182 5.918364098679632 0.6946835222532575 5.12457596617492 1.196888661312207 5.733164416645455 1.077643543196735 5.659837046645889 0.9479949494725006 5.735808099411976 -1.992899477220481 5.865618505324296 -2.460175025701383 4.758236997495068 -2.149699721033194 5.826602908377137 -2.54228182317705 6.087171796191482 -3.566690023565987 4.843545496099361 -2.673703235409213 5.35585679491965 -4.878577887491488 5.082764984602673 -3.760757070883378 6.331641412255999 -4.720481401818463 6.058548585046148 -3.602661679311559 6.264065004454752 -4.803501560120678 6.40989096811075 -5.463018791418008 5.285915461951562 -4.952279500389528 6.354500477194964 -5.5058065265386 6.554020323273361 -6.45725466293534 5.3725854730318 -5.6341428049648 9.41056898809822 -2.898791439095068 12.26851450157659 -4.986537430148319 12.14541253552307 -5.10293046955647 8.613182971989794 -2.826927959732564 9.42651991423803 -3.450700016896117 9.298610626780286 -3.549173966198144 8.629014812798161 -3.209905916204647 8.487838424714864 -3.286514222629172 8.038933125624038 -2.704561851470576 7.96324250441662 -3.265004189452493 7.805375665433106 -3.308562304365771 7.523789324761757 -2.751687845226335 7.377457688057052 -2.855312596780183 7.219812768339646 -2.90011231837174 7.150832450639896 -2.549082256247872 7.235310741891112 -0.4904196007434802 7.782229223622522 -0.7453506809080558 7.635697253095525 -0.8035006671235652 7.109563867316364 0.1488038753349426 7.606548193301278 -0.1401008424521096 7.011895007764506 0.03672512252392931 5.890502313623793 0.8526266988596412 7.005536879862811 0.2545755458081305 5.810559197299331 0.7254211548792295 5.254634222010645 1.345955951793201 5.765798087273703 1.106421549715725 5.158474751740419 1.229593571299443 5.847127653942131 -2.483938036577421 4.865427715803005 -2.621495704933041 4.742685627602766 -2.167049408315839 4.828626099140562 -2.691145961250775 6.066241502050971 -3.589285790193484 5.090846327701405 -3.748857617575201 6.368925063442006 -5.491049143458817 5.387368148386617 -5.621069559526315 5.249019993973442 -4.974806095254356 9.485908542837471 -3.105411685193395 12.04798571922787 -5.432569415147625 9.362675427690499 -3.207509091704578 8.693206550649377 -2.936984635025157 9.338158193561835 -3.664297378796833 8.55510598041441 -3.016987279469245 8.108248304215895 -2.870429459557781 8.516550120266997 -3.44382944239968 7.953234205976306 -2.919923603102037 7.973800953496667 -3.248171677254486 7.532549763138777 -2.735810750521659 7.686443725701371 -2.683559650169936 7.358713154635643 -2.872239896407073 7.132876063535401 -2.565649444134168 7.293828092787273 -2.540400614243558</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 9 7 10 8 9 7 11 9 10 8 10 8 11 9 12 10 11 9 13 11 12 10 13 11 14 12 12 10 14 12 15 13 12 10 12 10 15 13 16 14 15 13 17 15 16 14 16 14 17 15 18 16 17 15 19 17 18 16 18 16 19 17 20 18 19 17 21 19 20 18 20 18 21 19 22 20 23 21 22 20 21 19 24 19 25 20 26 21 25 20 24 19 27 18 27 18 24 19 28 17 27 18 28 17 29 16 29 16 28 17 30 15 29 16 30 15 31 14 31 14 30 15 32 13 31 14 32 13 33 10 33 10 32 13 34 12 33 10 34 12 35 11 33 10 35 11 36 9 33 10 36 9 37 8 37 8 36 9 38 7 37 8 38 7 39 6 6 22 0 23 40 24 41 24 5 23 7 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 44 30 45 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 63 38 64 39 58 40 64 39 63 38 65 38 66 39 61 40 66 39 65 38 67 37 64 41 68 42 62 43 67 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 77 51 70 52 75 52 78 51 79 50 80 53 76 54 81 55 82 55 79 54 83 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 43 62 92 63 93 64 94 64 95 63 46 62 42 65 92 66 43 67 46 67 95 66 47 65 49 68 42 69 44 70 45 70 47 69 50 68 96 71 49 72 48 73 51 73 50 72 97 71 53 74 59 75 54 76 55 76 60 75 56 74 59 77 58 78 63 79 65 79 61 78 60 77 68 80 40 81 62 82 67 82 41 81 69 80 77 83 71 84 70 85 75 85 74 84 78 83 80 86 77 87 76 88 79 88 78 87 83 86 84 89 80 90 81 91 82 91 83 90 87 89 84 92 85 93 88 94 91 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID963\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID964\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID968\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID971\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID969\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID970\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID969\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID973\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID973\">-0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID970\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID974\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID974\">-0.1164308334372561 -0.9361829241127744 0.3316706101311379 -0.115264363165527 -0.9364085327492276 0.3314410752735454 -0.1088358859381834 -0.9423316096583713 0.3164899482933284 0.1088358859381834 0.9423316096583713 -0.3164899482933284 0.115264363165527 0.9364085327492276 -0.3314410752735454 0.1164308334372561 0.9361829241127744 -0.3316706101311379 -0.1108265020245895 -0.9413013605670106 0.3188561353395736 0.1108265020245895 0.9413013605670106 -0.3188561353395736 -0.1170061438965575 -0.9450112108173462 0.3053905265721109 0.1170061438965575 0.9450112108173462 -0.3053905265721109 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211767870245431 -0.9432883615922447 0.3090683632645491 0.1211767870245431 0.9432883615922447 -0.3090683632645491 -0.1269172199874076 -0.9559205324775958 0.2647790680141043 -0.1321753098522585 -0.9582917932523017 0.2533900677823568 -0.1289832713335865 -0.9599617263082118 0.2486700620087674 0.1289832713335865 0.9599617263082118 -0.2486700620087674 0.1321753098522585 0.9582917932523017 -0.2533900677823568 0.1269172199874076 0.9559205324775958 -0.2647790680141043 -0.1366015841177712 -0.9595604633487854 0.2461376127177232 -0.1318905450426279 -0.9620432799504404 0.238909212109029 0.1318905450426279 0.9620432799504404 -0.238909212109029 0.1366015841177712 0.9595604633487854 -0.2461376127177232 -0.5579936818601086 -0.8293100066025989 0.02979872401626703 -0.5582559972072337 -0.8292442885329374 0.02653585343755587 -0.5450709898174925 -0.8383750888433897 0.004982616402794485 0.5450709898174925 0.8383750888433897 -0.004982616402794485 0.5582559972072337 0.8292442885329374 -0.02653585343755587 0.5579936818601086 0.8293100066025989 -0.02979872401626703 -0.4971056987735406 -0.8668022854730181 0.03923929338842273 -0.5144490778171239 -0.8563961092508181 0.04390729316607478 0.5144490778171239 0.8563961092508181 -0.04390729316607478 0.4971056987735406 0.8668022854730181 -0.03923929338842273 -0.3062977673774491 -0.9518676260712704 -0.01138859679831438 -0.352304512060553 -0.9358847587336349 0.001117654625490362 0.352304512060553 0.9358847587336349 -0.001117654625490362 0.3062977673774491 0.9518676260712704 0.01138859679831438 -0.4569466615946189 -0.6657511171996592 0.5898942264549963 -0.4542014913136462 -0.6513390540662555 0.6078309320333537 -0.4286372452159311 -0.5485409186912338 0.7178948199667378 0.4286372452159311 0.5485409186912338 -0.7178948199667378 0.4542014913136462 0.6513390540662555 -0.6078309320333537 0.4569466615946189 0.6657511171996592 -0.5898942264549963 -0.4610431429742561 -0.7926530874053718 0.3989239317754095 -0.4574340725793243 -0.7984546202919721 0.3914387417947999 0.4574340725793243 0.7984546202919721 -0.3914387417947999 0.4610431429742561 0.7926530874053718 -0.3989239317754095 -0.504011286993974 -0.8116541095840285 0.2952799163133784 -0.4985522816593612 -0.8144906939653281 0.2967330987539529 0.4985522816593612 0.8144906939653281 -0.2967330987539529 0.504011286993974 0.8116541095840285 -0.2952799163133784 -0.5535803758470984 -0.7975432953446792 0.2397362290679806 -0.5497181193307189 -0.7989775362978114 0.2438132190242709 0.5497181193307189 0.7989775362978114 -0.2438132190242709 0.5535803758470984 0.7975432953446792 -0.2397362290679806 -0.6327733709944583 -0.7467813291086449 0.2047327708380742 -0.6307130915381779 -0.7484351601869926 0.2050507428863028 0.6307130915381779 0.7484351601869926 -0.2050507428863028 0.6327733709944583 0.7467813291086449 -0.2047327708380742 -0.12572764539914 -0.9493235337335358 0.288057958546645 -0.1241102328803618 -0.949950385418969 0.2866895800979427 0.1241102328803618 0.949950385418969 -0.2866895800979427 0.12572764539914 0.9493235337335358 -0.288057958546645 -0.1260763385258006 -0.9561757449318785 0.2642587778445488 0.1260763385258006 0.9561757449318785 -0.2642587778445488 -0.5411572163250612 -0.8409136120021787 0.0036282735233317 0.5411572163250612 0.8409136120021787 -0.0036282735233317 -0.4271593597663426 -0.5494736951569242 0.7180623508405128 0.4271593597663426 0.5494736951569242 -0.7180623508405128</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID972\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID975\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID975\">-3.619923147946738 -10.4997124189645 -4.615531269323347 -10.50426780891869 -3.786473319759188 -7.323412140034409 -4.653673804142658 -10.49401698912256 -4.805676486616894 -7.37051953241552 -3.81352480912883 -7.314962732852594 -3.820425668882074 -7.305856672633955 -4.812624718306279 -7.36088743703495 -3.861453874929484 -6.370197921834446 0.6813313594591697 -4.417481111052449 1.034025889616375 -5.076538702772943 0.6745777442559287 -4.861532670451762 0.6181083223495576 -3.371747130340732 0.6099842723727789 -2.882667464664047 1.150057598209742 -2.790499405865308 1.301124565657046 -3.253791213680578 1.433822075213695 -5.58669282178515 1.654720203610757 -4.260796592547062 1.756362347080652 -6.218346919426859 2.044608896717736 -5.356969436367257 2.124028407813262 -7.071998294227972 2.309722319644435 -5.993056934305602 2.694805104503927 -6.908588653047397 3.159237001412372 -10.04246510191542 4.01444950041533 -9.85695107623112 -4.770302607309429 -7.378913320643741 -4.818761116653899 -6.415319624856644 -3.824119757917572 -6.385272312822708 -4.879652942044097 -4.594604717966694 -4.927413575326117 -3.550563414087187 -3.932374746135774 -3.499523185868613 -4.915571062373914 -3.5436583785342 -4.936862069573945 -3.065660927447276 -3.940378453159533 -3.027190444375211 -3.913500117488176 -3.40050299024049 -4.09282702520373 -3.385230939043493 -3.918064205042312 -2.911394748494002 -4.071526949273308 -4.517354419797227 -4.244247793447956 -4.516291113672466 -4.103959653848396 -3.470749325366316 -4.696140705790722 -4.841330176768042 -4.852048441064388 -4.881619431869657 -4.694071954369298 -4.397249817793164 -3.388429709736816 -5.80223159735321 -3.54728384340591 -5.844317579836226 -3.612092296619232 -5.493643733810828 -3.644650972120329 -6.376784300125662 -3.80351443586253 -6.41800547167999 -3.853333020430924 -5.800397365438651 -3.443345100842655 -6.955360092461058 -3.613167292398807 -6.974182995811063 -3.613854860136208 -6.28799614187596 -3.020090597742209 -7.800548950638829 -3.198837732959714 -7.807696212394419 -3.229723261065653 -6.914445467807718 -1.887081515124395 -10.7541844740011 -2.07909737595266 -10.76451173411055 -2.556309598949435 -7.719435323674952 -4.800992548081733 -6.42136775030822 -4.835935624615236 -5.752527526608549 -3.839915993991579 -5.735080854880583 -3.893651563408266 -4.575157380439522 -3.842653010323232 -5.712728447491024 -4.889675796800544 -4.592379227370737 -4.838679085328147 -5.729945936031485 -3.825258441823209 -6.381453665091004 -4.819904359823177 -6.41140743340478 -3.857120588539961 -5.72660297898442 -3.894002460961315 -4.571016362072552 -4.890027573496783 -4.588206715689682 -3.941118556409633 -3.493999293346616 -3.936315166081157 -3.477142797519195 -4.93138635985045 -3.527791052174538 -3.954943057750661 -3.012787565415254 -3.926614997645129 -3.491897394819695 -4.063770219756945 -4.537696388468241 -4.105939758987547 -3.476609754896952 -4.175804411867014 -3.36587945210828 -4.177193689864259 -2.897812676959156 -4.000934001956216 -2.89206782663573 -4.071675761691439 -4.531139361422384 -4.22716918693565 -5.016005951249156 -4.244396603139681 -4.53007578126498 -3.590817288257763 -5.821021844290655 -3.798853510505536 -5.527848467073778 -3.652170740556171 -5.469963595447143 -3.781669341089509 -6.425648218290957 -3.995755863268846 -5.841267620548126 -3.833509888572388 -5.808143101871867 -3.866956363979578 -6.914973573831331 -4.010205632191378 -6.267452237426695 -3.850258232861662 -6.228912249916991 -3.464546362080003 -7.768615286749084 -3.647638875630202 -6.893593195818973 -3.477759105263607 -6.875094619680589 -2.636818840382449 -10.75008068999862 -3.212070745508375 -7.704897883551319 -3.033317435407952 -7.697846838450428</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 2 6 6 7 8 8 9 8 7 7 3 6 10 9 11 10 12 11 13 12 14 13 10 9 10 9 14 13 11 10 14 13 15 14 11 10 15 14 16 15 11 10 11 10 16 15 17 16 16 15 18 17 17 16 17 16 18 17 19 18 18 17 20 19 19 18 19 18 20 19 21 20 20 19 22 21 21 20 22 21 23 22 21 20 21 20 23 22 24 23 25 24 24 23 23 22 26 22 27 23 28 24 27 23 26 22 29 20 29 20 26 22 30 21 29 20 30 21 31 19 29 20 31 19 32 18 32 18 31 19 33 17 32 18 33 17 34 16 34 16 33 17 35 15 34 16 35 15 36 10 36 10 35 15 37 14 36 10 37 14 38 13 36 10 38 13 39 9 39 9 38 13 40 12 41 11 36 10 39 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 54 39 59 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 79 50 74 51 77 51 80 50 81 49 82 52 83 53 78 54 81 54 84 53 85 52 86 55 87 56 82 57 85 57 88 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 94 61 91 62 44 63 90 64 44 63 91 62 92 62 49 63 93 64 49 63 92 62 95 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 54 74 61 75 55 76 58 76 62 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 60 80 65 81 61 82 62 82 66 81 63 80 69 83 98 84 70 85 71 85 99 84 72 83 75 86 69 87 68 88 73 88 72 87 76 86 79 89 75 90 74 91 77 91 76 90 80 89 83 92 79 93 78 94 81 94 80 93 84 92 87 95 83 96 82 97 85 97 84 96 88 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID971\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID972\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID976\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID979\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID977\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID978\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID977\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID981\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID981\">-0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803332 0.3212716622742917 -1.271187211522604</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID978\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID982\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID982\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID980\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID983\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"120\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID983\">-6.425433245485834 -20.00001212795564 -4.32388128207585 -14.06887039043778 -5.629060832817041 -20.16055024897072 -3.610391638133557 -14.29897361281646 -3.600610863927081 -12.38904113597162 -2.982122386725945 -11.16788361953795 -2.877321672698945 -12.67215376661415 -2.258842582037208 -11.4510186977769 -2.156041200933601 -10.13969745661595 -1.547887303772093 -10.63899816275007 -1.472992104737583 -9.736992302315027 -1.393422409009268 -8.766741022896534 -1.215528711540519 -6.648138052462246 -0.1147598324848787 -10.49443800458955 -1.198492142265195 -5.712091593480277 -0.08553014833978972 -5.880332193704978 1.02924344771786 -5.77682455434737 1.034377884849387 -6.712951942821705 1.185360373440858 -8.832837379884129 1.252530450429137 -9.803638625415397 1.315964684678752 -10.70622398827427 1.930445109493735 -10.2117235234207 2.016557223285633 -11.52379262397881 2.619482817920047 -12.7497492002406 2.743403913001568 -11.2463545094255 3.331770984800639 -14.38222820365034 3.34628257493822 -12.47232526311665 4.048226775239526 -14.15776759814488 5.275854736254216 -20.25943781854545 6.074311336163872 -20.10514721805505 2.024113387619763 -7.07888379907244 2.637927368127108 -10.12971890927273 3.037155668081936 -10.05257360902752 1.66588549240032 -7.191114101825169 1.67314128746911 -6.236162631558325 1.371701956500784 -5.623177254712751 1.309741408960023 -6.374874600120302 0.9652225547468674 -5.105861761710349 1.008278611642817 -5.761896311989403 0.657982342339376 -5.353111994137136 0.6262652252145684 -4.901819312707699 -0.05737991624243935 -5.247219002294777 0.592680186720429 -4.416418689942065 0.5171889424246934 -3.356475971410852 0.5146217238589301 -2.888412277173685 -0.04276507416989486 -2.940166096852489 -0.5992460711325975 -2.856045796740138 -0.6077643557702595 -3.324069026231123 -0.7739436518860465 -5.319499081375033 -0.7364960523687913 -4.868496151157514 -0.6967112045046342 -4.383370511448267 -1.0780206004668 -5.069848728307975 -1.129421291018604 -5.725509348888448 -1.491061193362973 -5.583941809768977 -1.438660836349472 -6.336076883307075 -1.805195819066778 -7.149486806408228 -1.80030543196354 -6.194520567985809 -2.161940641037925 -7.034435195218892 -2.814530416408521 -10.08027512448536 -3.212716622742917 -10.00000606397782</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 3 3 5 5 6 6 6 6 5 5 7 7 5 5 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 11 11 12 12 10 10 10 10 12 12 9 9 9 9 12 12 13 13 12 12 14 14 13 13 14 14 15 15 13 13 15 15 16 16 13 13 16 16 17 17 13 13 17 17 18 18 13 13 18 18 19 19 13 13 13 13 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 22 22 21 21 23 23 21 21 24 24 23 23 23 23 24 24 25 25 24 24 26 26 25 25 26 26 27 27 25 25 25 25 27 27 28 28 29 29 28 28 27 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID979\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID980\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">30 30 31 31 32 32 31 31 30 30 33 33 33 33 30 30 34 34 33 33 34 34 35 35 33 33 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 39 39 37 37 40 40 39 39 40 40 41 41 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 41 41 44 44 45 45 41 41 45 45 46 46 41 41 46 46 47 47 41 41 47 47 48 48 48 48 47 47 49 49 49 49 47 47 50 50 48 48 49 49 51 51 48 48 51 51 52 52 52 52 51 51 53 53 52 52 53 53 54 54 54 54 53 53 55 55 55 55 53 53 56 56 55 55 56 56 57 57 55 55 57 57 58 58 58 58 57 57 59 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID979\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID980\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID984\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID987\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID985\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID986\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID985\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID989\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID989\">-0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID986\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID990\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID990\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6658892428368299 -0.6885143064564592 -0.2872969997737087 -0.6729311871649365 -0.562029832840137 -0.4809221187868957 -0.6630779028754261 -0.686790694066647 -0.2977351797517055 0.6630779028754261 0.686790694066647 0.2977351797517055 0.6729311871649365 0.562029832840137 0.4809221187868957 0.6658892428368299 0.6885143064564592 0.2872969997737087 -0.6145076962834851 -0.7533304730451725 -0.23425091160954 -0.6113217468963009 -0.7555949016953774 -0.2352914497035711 0.6113217468963009 0.7555949016953774 0.2352914497035711 0.6145076962834851 0.7533304730451725 0.23425091160954 -0.6630217725658703 0.6867913760071885 -0.2978585821254177 -0.614536014802447 0.753238837863779 -0.234471191501963 -0.6113552837420216 0.7554994400131816 -0.2355107496070638 0.6113552837420216 -0.7554994400131816 0.2355107496070638 0.614536014802447 -0.753238837863779 0.234471191501963 0.6630217725658703 -0.6867913760071885 0.2978585821254177 -0.6729662109479289 0.5620113969532229 -0.480894654386046 -0.6658367060927759 0.6885118877851151 -0.2874245313088283 0.6658367060927759 -0.6885118877851151 0.2874245313088283 0.6729662109479289 -0.5620113969532229 0.480894654386046 -0.6289247236154029 0.4714099301382881 -0.6182445873538268 -0.6701069292073644 0.5661758691150767 -0.4800016548513805 0.6701069292073644 -0.5661758691150767 0.4800016548513805 0.6289247236154029 -0.4714099301382881 0.6182445873538268 -0.6193819127185333 0.1198559305827131 -0.7758869776593 -0.6586069297905275 -2.229606074873209e-006 -0.7524871507387512 -0.6252698128776827 0.1206693193046023 -0.7710230713036228 0.6252698128776827 -0.1206693193046023 0.7710230713036228 0.6586069297905275 2.229606074873209e-006 0.7524871507387512 0.6193819127185333 -0.1198559305827131 0.7758869776593 -0.6193686517759511 -0.1198585530154133 -0.7758971584342167 -0.6252581822364834 -0.120672201244489 -0.7710320521178985 0.6252581822364834 0.120672201244489 0.7710320521178985 0.6193686517759511 0.1198585530154133 0.7758971584342167 -0.67006535899179 -0.5661918537004904 -0.4800408310575318 -0.6288757300373609 -0.4714242768409007 -0.6182834846371121 0.6288757300373609 0.4714242768409007 0.6182834846371121 0.67006535899179 0.5661918537004904 0.4800408310575318 -0.6220449068117597 0.4728131159400871 -0.6241056731873016 0.6220449068117597 -0.4728131159400871 0.6241056731873016 -0.6632952763355497 -2.144258925662945e-006 -0.7483577863471115 0.6632952763355497 2.144258925662945e-006 0.7483577863471115 -0.6219938106167091 -0.472827546613443 -0.6241456646633203 0.6219938106167091 0.472827546613443 0.6241456646633203</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID988\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID991\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID991\">-3.156233308757805 10.08710982687471 -2.856924722266216 10.15761536438385 -2.299594243474685 7.925327132511855 -2.034706097497008 8.107661869668936 -1.670494283317261 7.039697384405096 -1.471814094024708 7.248080785050666 -1.04136616354108 6.648978065150011 -0.9088939309335409 6.935506865534769 0.03037484196966032 6.779216066056368 0.03037484196967586 6.518738882791184 0.9696623879520416 6.935506865534766 1.102106460940886 6.648978065149996 1.53253561834532 7.248080785050663 1.731248660526263 7.039697384405099 2.095474554515417 8.10766186966894 2.360348620683812 7.925327132511852 2.916716979171949 10.15761536438385 3.216081884900745 10.0871098268747 -1.168223810341762 8.705845242068937 -1.852121515551163 7.788450679867976 -1.40781128757764 8.740863958144171 -1.127976746028978 10.74215769727934 -1.891963265655392 8.548125708057006 -1.353723762346343 10.77235392063934 1.92977610017306 8.539773730394375 1.165152667342891 10.73392563091469 1.390907857481091 10.76412350460084 1.895306010249322 7.775979783153745 1.211452728307992 8.693382385382428 1.451024695764368 8.728401408360952 1.117617843992585 7.784976980384649 1.633385363252757 7.302298032340775 0.9074623347642705 7.685547256742304 -0.197239063084682 6.918126269644701 0.8549824061199894 6.711683130854517 -0.2901796556002942 6.749254765222319 -0.7953736304985473 6.718676308614904 0.2568369789646587 6.925123544849952 0.3497466618996286 6.756248688697456 -1.06798004515442 7.800983242129445 -0.8578410112294874 7.701550924618476 -1.583745696748875 7.318291702219283 -1.310273488089885 8.50145099047988 -1.55024617473669 8.534797514554935 -0.7399734769562733 10.71852904030233 -1.095319278789253 8.705805411636872 -1.566410502550131 7.70517274122652 -1.78574637488333 7.791442475072095 1.591962985362013 8.527737177369552 1.352006114122691 8.494388859175095 0.7810767299616233 10.71158619287857 1.829089859934408 7.779452862022374 1.609739214986294 7.693184525529069 1.138657808235052 8.693800988211841 1.799210093489108 7.202159495554009 1.642118984845298 7.065808738801556 1.08537548281971 7.599211858902786 -0.303908425543867 6.890972967685572 0.8413662356912078 6.855588981904453 0.8075133592585561 6.667004022123 -1.751077057674244 7.220075955278533 -1.037267018645942 7.617144552937642 -1.594006231623408 7.083719623542236 -0.7478615787589549 6.673632464807028 -0.7817156750263035 6.862217289076101 0.3635172617960516 6.897601249431154</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 3 3 5 5 4 4 4 4 5 5 6 6 5 5 7 7 6 6 7 7 8 8 6 6 6 6 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 17 17 15 15 16 16 18 16 19 15 20 17 19 15 18 16 21 14 19 15 21 14 22 13 22 13 21 14 23 12 22 13 23 12 24 11 24 11 23 12 25 10 24 11 25 10 26 9 26 9 25 10 27 8 26 9 27 8 28 6 28 6 27 8 29 7 28 6 29 7 30 5 28 6 30 5 31 4 31 4 30 5 32 3 31 4 32 3 33 2 33 2 32 3 34 1 33 2 34 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 38 22 43 23 44 23 39 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 46 29 51 29 54 28 55 27 52 30 56 31 57 32 58 32 59 31 55 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 37 39 70 40 71 41 72 41 73 40 40 39 36 42 38 43 42 44 45 44 39 43 41 42 36 45 70 46 37 47 40 47 73 46 41 45 46 48 53 49 47 50 50 50 54 49 51 48 52 51 57 52 53 53 54 53 58 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 62 57 61 58 76 59 77 59 64 58 63 57 71 60 70 61 78 62 79 62 73 61 72 60 76 63 61 64 67 65 68 65 64 64 77 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID987\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID988\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID992\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID995\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID993\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID994\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID993\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID997\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID997\">-0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID994\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID998\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID998\">-0.1088414049293589 -0.947410974285598 0.3009418455054356 -0.1152736558224273 -0.9514554511327701 0.2853848432959771 -0.1164409580977757 -0.9514088463688938 0.2850661507936061 0.1164409580977757 0.9514088463688938 -0.2850661507936061 0.1152736558224273 0.9514554511327701 -0.2853848432959771 0.1088414049293589 0.947410974285598 -0.3009418455054356 -0.1108291057697727 -0.947976074128154 0.2984263262429192 0.1108291057697727 0.947976074128154 -0.2984263262429192 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170025511882888 -0.9430258041624864 0.3114686753096171 0.1170025511882888 0.9430258041624864 -0.3114686753096171 -0.5580530298785489 -0.6868819057170897 0.4655857208311168 -0.5144747560634457 -0.7170989215866322 0.4701966206096629 -0.4971366770465531 -0.7227409499224468 0.4801048256790497 0.4971366770465531 0.7227409499224468 -0.4801048256790497 0.5144747560634457 0.7170989215866322 -0.4701966206096629 0.5580530298785489 0.6868819057170897 -0.4655857208311168 -0.5451847648562986 -0.6795279363612947 0.4909331480692076 -0.5583224479878474 -0.6848994354787804 0.4681760431223551 0.5583224479878474 0.6848994354787804 -0.4681760431223551 0.5451847648562986 0.6795279363612947 -0.4909331480692076 -0.1319019164971365 -0.9175016921677499 0.375223305904228 -0.1366215138279231 -0.9197698814859678 0.3679102160455122 -0.132187031375201 -0.9230309666043481 0.3613037827447346 0.132187031375201 0.9230309666043481 -0.3613037827447346 0.1366215138279231 0.9197698814859678 -0.3679102160455122 0.1319019164971365 0.9175016921677499 -0.375223305904228 -0.1289849043901566 -0.9215886923010116 0.3661108802840657 -0.1268997631170716 -0.9278451148530309 0.3507134057377864 0.1268997631170716 0.9278451148530309 -0.3507134057377864 0.1289849043901566 0.9215886923010116 -0.3661108802840657 -0.1240889977263835 -0.935968365345372 0.3294922453047622 -0.1260530155511802 -0.927743067690427 0.3512882543194544 -0.1256997483470361 -0.9362686863122588 0.3280251824122791 0.1260530155511802 0.927743067690427 -0.3512882543194544 0.1256997483470361 0.9362686863122588 -0.3280251824122791 0.1240889977263835 0.935968365345372 -0.3294922453047622 -0.1211640169608956 -0.9438046778011408 0.3074931074911838 0.1211640169608956 0.9438046778011408 -0.3074931074911838 -0.5535665584026356 -0.7852409048141928 0.2774180722751294 -0.6307922097387901 -0.7250610588406663 0.2763831562988343 -0.6328548543715852 -0.7235364593406309 0.2756623392905591 0.6328548543715852 0.7235364593406309 -0.2756623392905591 0.6307922097387901 0.7250610588406663 -0.2763831562988343 0.5535665584026356 0.7852409048141928 -0.2774180722751294 -0.5040203107265815 -0.8294161793038206 0.2408989993423235 -0.5497036183937712 -0.7888062471367417 0.2749738831286428 0.5497036183937712 0.7888062471367417 -0.2749738831286428 0.5040203107265815 0.8294161793038206 -0.2408989993423235 -0.460851692936173 -0.8753739730121579 0.146068903229857 -0.4985502972453628 -0.8325691162757212 0.2414047798624232 0.4985502972453628 0.8325691162757212 -0.2414047798624232 0.460851692936173 0.8753739730121579 -0.146068903229857 -0.4569279317681941 -0.8856200811699702 -0.08302973562848467 -0.4572416734112509 -0.8756361354271367 0.1555358814881895 0.4572416734112509 0.8756361354271367 -0.1555358814881895 0.4569279317681941 0.8856200811699702 0.08302973562848467 -0.4286788938903839 -0.8665692927857499 -0.2555231236771386 -0.4542038175253678 -0.8845680751983658 -0.1060104357374351 0.4542038175253678 0.8845680751983658 0.1060104357374351 0.4286788938903839 0.8665692927857499 0.2555231236771386 -0.3064282572468343 -0.7615096868410569 0.5711433445361185 -0.3524105864353466 -0.7559917297368691 0.5516187842502752 0.3524105864353466 0.7559917297368691 -0.5516187842502752 0.3064282572468343 0.7615096868410569 -0.5711433445361185 -0.5412831574712219 -0.6807737084399571 0.4935176808736367 0.5412831574712219 0.6807737084399571 -0.4935176808736367 -0.4272120245077655 -0.8674148026834218 -0.2551106548179773 0.4272120245077655 0.8674148026834218 0.2551106548179773</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID996\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID999\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID999\">-4.476007576609035 7.062446497286024 -5.610078521260624 10.18451102473239 -4.616909317180718 10.23948786492563 -4.457317962308713 7.070081426959296 -5.451980479202522 7.070081426959295 -5.582273135016021 10.1941861999994 -2.915820564645328 4.577486397015233 -2.705824901930551 3.881759770422776 -3.044538181434562 4.237025474007779 -4.927754917204618 9.572531168459182 -4.098294577175903 9.820029505899221 -3.533778702362138 6.694277314763351 -3.189794693172454 5.834534961886438 -2.976053988909622 5.174927108690099 -2.950461588838496 6.827506162532062 -2.574112979026264 5.90973500068239 -2.310670360138509 5.273218044780612 -1.971952387364679 3.008396156954229 -1.802609827421979 4.207418866483767 -1.6114341764961 2.609907015700216 -1.33218931828335 3.230435375675426 -1.106382029703872 2.786350440244579 -4.414598464887224 6.126107772952492 -5.451980479202522 7.061712810444018 -4.457317962308713 7.061712810444016 -5.33596872995056 2.130714035845917 -5.924772333389478 3.074542164180131 -5.763048222846655 3.122267891642199 -4.987916614829788 1.512708834556799 -5.377440342691845 1.899378453086448 -5.218756704377096 1.966856877840273 -4.260154754836963 2.720485635982612 -5.257018934731138 2.688642967424494 -5.29019606874273 3.166224867289707 -4.288675503379187 3.206941579033968 -5.285625910594948 3.191125460069592 -5.351085900066831 4.23457763899701 -4.41979236804897 5.428040042772467 -4.351493664629199 4.291039244739512 -5.414233208841241 5.380670171341812 -5.345933874498217 4.243665053434983 -4.415291528805324 5.454552311874554 -5.409786663689427 5.40789315121728 -5.444478208186572 6.07674149299513 -4.438155718111392 6.116919218057375 -5.432744773063641 6.08583337300607 -5.479987793634328 7.049459215875197 -6.203185173507943 6.276398871968053 -7.302381745519437 9.220150285118146 -7.120928170141183 9.270667048401974 -6.05090352278245 5.589542698505411 -6.416833798944759 6.43548686015438 -6.246087340236969 6.477690060269889 -5.947800219407116 5.041376582275624 -6.225849311089496 5.691759027822195 -6.057282581899993 5.716607486391731 -5.942953322128933 5.176183896234631 -5.915069665924102 4.577268658835078 -6.110213799958335 5.176780817884009 -5.968821493453951 4.011867773493208 -6.078344164688114 4.355576795346951 -5.911078840908683 4.364150946875863 -5.914572748051512 3.883135267461919 -5.788129089640393 3.450333224929001 -6.077940492615052 3.895396330804702 -5.764906912468319 3.140463050621411 -5.926698155432084 3.092878339107605 -6.122288302219893 3.554007002763703 -5.25185851333697 2.085897937376482 -5.411299025384771 2.019532791723905 -5.870819298278879 3.017708812526331 -5.03425269375542 1.515196952579786 -5.20087948499223 1.469582089575572 -5.418215817904647 1.905293193501272 -4.257505459531929 2.720014403967389 -5.286018809997048 3.167931777298792 -4.289073233445126 3.18393522163202 -4.285980849598744 3.209841492506433 -5.34638380163261 4.238759873238242 -4.351952313245739 4.286247223369609 -4.405753380254583 5.457778096002004 -5.433512735694054 6.081425640721875 -4.438928614152006 6.112609013456504 -6.244958820165806 6.356114253185693 -6.415450211855801 6.313277663626342 -7.23775406617386 9.323170269276911 -6.058025690602193 5.628878803242282 -6.226509457877878 5.603684553087598 -6.408634890764557 6.478828975510515 -5.942758739870094 5.081091340191565 -6.110019128929388 5.081703461357701 -6.210238106228282 5.734211264659076 -5.91599523908132 4.575875699918768 -6.083282415819649 4.567569574095214 -6.111403487118982 5.175334618298088 -5.965547817296141 4.005385117475852 -6.129123088814952 4.015794026888997 -6.075915714967462 4.348926781517354</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 9 7 10 8 11 9 12 10 13 11 13 11 12 10 14 12 14 12 12 10 15 13 12 10 16 14 15 13 15 13 16 14 8 6 8 6 16 14 9 7 16 14 17 15 9 7 17 15 18 16 9 7 9 7 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 7 30 7 29 16 31 15 30 7 31 15 32 14 30 7 32 14 33 6 33 6 32 14 34 13 34 13 32 14 35 10 34 13 35 10 36 12 36 12 35 10 37 11 37 11 35 10 38 9 39 8 30 7 33 6 40 22 6 23 0 24 5 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 42 30 47 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 54 35 59 36 60 36 55 35 61 34 62 37 63 38 64 39 59 40 64 39 63 38 65 38 66 39 60 40 66 39 65 38 67 37 62 41 64 42 68 43 69 43 66 42 67 41 40 44 68 45 6 46 7 46 69 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 77 51 70 52 75 52 78 51 79 50 80 53 81 54 76 55 79 55 82 54 83 53 80 56 84 57 85 58 86 58 87 57 83 56 88 59 89 60 84 61 87 61 90 60 91 59 92 62 44 63 93 64 94 64 45 63 95 62 44 65 43 66 93 67 94 67 46 66 45 65 42 68 49 69 43 70 46 70 50 69 47 68 48 71 96 72 49 73 50 73 97 72 51 71 52 74 54 75 58 76 61 76 55 75 57 74 58 77 59 78 63 79 65 79 60 78 61 77 62 80 68 81 40 82 41 82 69 81 67 80 70 83 77 84 71 85 74 85 78 84 75 83 76 86 81 87 77 88 78 88 82 87 79 86 80 89 85 90 81 91 82 91 86 90 83 89 84 92 89 93 85 94 86 94 90 93 87 92 88 95 98 96 89 97 90 97 99 96 91 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID995\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID996\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1000\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1003\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1001\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1002\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1001\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1005\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1005\">-0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1002\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1006\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1006\">-0.1152785401318226 0.9514539780096277 0.2853877816493387 -0.1088253784222441 0.9474097604849766 0.3009514624471104 -0.1164499499977552 0.9514072021990337 0.2850679651404685 0.1164499499977552 -0.9514072021990337 -0.2850679651404685 0.1088253784222441 -0.9474097604849766 -0.3009514624471104 0.1152785401318226 -0.9514539780096277 -0.2853877816493387 -0.1108158709414702 0.9479756505698795 0.2984325864815992 0.1108158709414702 -0.9479756505698795 -0.2984325864815992 -0.1170020873176061 0.9430265699053393 0.3114665311327904 0.1170020873176061 -0.9430265699053393 -0.3114665311327904 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211732142097103 0.9438073403036035 0.3074813108908012 0.1211732142097103 -0.9438073403036035 -0.3074813108908012 -0.1321716117428985 0.9230345567260386 0.3613002520603185 -0.1289786499144217 0.9215964103368728 0.3660936551218056 -0.1269033028027753 0.9278449706028746 0.3507125065701218 0.1269033028027753 -0.9278449706028746 -0.3507125065701218 0.1289786499144217 -0.9215964103368728 -0.3660936551218056 0.1321716117428985 -0.9230345567260386 -0.3613002520603185 -0.1365916059617619 0.9197763476074805 0.3679051556619317 -0.1318868020555722 0.9175152480092108 0.3751954705405586 0.1318868020555722 -0.9175152480092108 -0.3751954705405586 0.1365916059617619 -0.9197763476074805 -0.3679051556619317 -0.5582998943323946 0.6849160643720522 0.4681786120206002 -0.5451072798952581 0.6795683929083647 0.4909631888086266 -0.5580352589138925 0.686896283790861 0.4655858085500564 0.5580352589138925 -0.686896283790861 -0.4655858085500564 0.5451072798952581 -0.6795683929083647 -0.4909631888086266 0.5582998943323946 -0.6849160643720522 -0.4681786120206002 -0.5144099610105722 0.7171316315973716 0.4702176251222334 -0.497074599178697 0.7227721921072363 0.4801220690281148 0.497074599178697 -0.7227721921072363 -0.4801220690281148 0.5144099610105722 -0.7171316315973716 -0.4702176251222334 -0.3064402809272837 0.7615293823458688 0.5711106320575088 -0.352403313346486 0.7560131466980314 0.5515940778889484 0.352403313346486 -0.7560131466980314 -0.5515940778889484 0.3064402809272837 -0.7615293823458688 -0.5711106320575088 -0.4540888561829713 0.8846296580586545 -0.1059890502526975 -0.4286481079664477 0.8665788463267886 -0.2555423695509543 -0.4568215763294453 0.8856767481496878 -0.08301051250820768 0.4568215763294453 -0.8856767481496878 0.08301051250820768 0.4286481079664477 -0.8665788463267886 0.2555423695509543 0.4540888561829713 -0.8846296580586545 0.1059890502526975 -0.4610442893976508 0.8752815563959685 0.1460149315887465 -0.4574195148530338 0.8755517285042376 0.1554881286299919 0.4574195148530338 -0.8755517285042376 -0.1554881286299919 0.4610442893976508 -0.8752815563959685 -0.1460149315887465 -0.4986342763500318 0.8325237471962924 0.2413877975439595 -0.5040953384354201 0.8293748738257591 0.2408842220532205 0.5040953384354201 -0.8293748738257591 -0.2408842220532205 0.4986342763500318 -0.8325237471962924 -0.2413877975439595 -0.5497405090277223 0.7887818631232486 0.2749700804483234 -0.5535993933396806 0.7852192614320004 0.2774138121473434 0.5535993933396806 -0.7852192614320004 -0.2774138121473434 0.5497405090277223 -0.7887818631232486 -0.2749700804483234 -0.6307142225357303 0.7251185372018276 0.2764103407932322 -0.6327739567192011 0.7235964141618628 0.2756906765018007 0.6327739567192011 -0.7235964141618628 -0.2756906765018007 0.6307142225357303 -0.7251185372018276 -0.2764103407932322 -0.1257158798169777 0.9362722954747478 0.3280086984948568 -0.1241004601015495 0.9359706713431454 0.329481377604328 0.1241004601015495 -0.9359706713431454 -0.329481377604328 0.1257158798169777 -0.9362722954747478 -0.3280086984948568 -0.1260584581940911 0.9277432077180657 0.3512859314728144 0.1260584581940911 -0.9277432077180657 -0.3512859314728144 -0.5411915379110214 0.6808183023324969 0.4935566416355883 0.5411915379110214 -0.6808183023324969 -0.4935566416355883 -0.4272108780820152 0.8674072480996509 -0.2551382597584773 0.4272108780820152 -0.8674072480996509 0.2551382597584773</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1004\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID1007\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1007\">5.617378929991789 10.19781422708152 4.483294934126929 7.075747942042431 4.624208775236756 10.25279109822444 5.458721422938665 7.083520870205004 4.464061036837125 7.083520870205009 5.588996955066634 10.20763462219114 4.421346952999289 6.140815188881417 4.464061036837125 7.076423884248999 5.458721422938665 7.076423884248994 2.975650367709245 4.577486397015233 3.10435390468914 4.237025474007778 2.765668784803665 3.88175977042276 1.166188366418925 2.786350440244582 1.391990961728664 3.230435375675429 1.671278059369284 2.609907015700215 1.862425550676504 4.207418866483772 2.031777497158823 3.008396156954226 2.370486083393128 5.273218044780597 2.633905235931875 5.90973500068239 3.010244459204613 6.827506162532067 3.035846245815374 5.174927108690105 3.2495779390001 5.834534961886451 3.593575840268438 6.694277314763352 4.158114993700223 9.82002950589921 4.987579839267953 9.572531168459182 5.440259090957746 6.100053721609197 4.445669499516969 6.131139493031489 5.487502565849463 7.063677282062665 5.293941409287112 3.207493381871648 4.296992243910657 3.223309561720638 5.359399117465306 4.250949577599662 5.265793053665141 2.705818470045893 4.268933211202332 2.737661070040306 5.298962164022343 3.183399341581381 5.415796362687616 1.916808604102276 5.026294682284743 1.530141409702067 5.257114503965267 1.984286605816789 5.959649671694621 3.092759185175174 5.370891361201542 2.148913571710389 5.797934195308944 3.14048579679244 5.810472141374266 3.475336991400121 5.936906742911044 3.908127033707534 6.100274528703595 3.920387757089989 6.105118350408258 4.344603273888446 5.995585169795275 4.000895026903539 5.937866076838642 4.353177406087491 5.942823095099554 4.580127261937448 5.970701324597152 5.179040319610356 6.137981372295337 5.179637239087242 6.256494040726642 5.700328114675888 5.978424246796603 5.049948518067148 6.087918494432243 5.725176464399121 6.450770346717195 6.445144142728336 6.084814463887035 5.599199516900355 6.280019180205057 6.487347366001216 7.341713869329332 9.230007304171149 6.242625006838358 6.286231003209693 7.160276736564839 9.280524494546649 5.417699803672306 5.422201727503866 4.423201973780691 5.468860483384689 5.452393926001093 6.09104426690505 4.427849072468621 5.444266645087963 5.422292833750023 5.396900100893685 4.359547899167656 4.307272427779807 5.353987874597794 4.259895192131318 5.441051096828423 6.096071898312635 4.413290633479596 5.472425483488996 4.446466439651513 6.127255214550647 5.354449558780775 4.25527680367496 4.294045878582681 3.226357187596779 4.360018074793429 4.302764210820874 5.294372291942167 3.185641304488297 4.265866408531684 2.73773186676205 4.297427948320241 3.201644465293737 5.44874766786911 2.036131675611467 5.289309405852778 2.102497103108806 5.908260563923147 3.034311935547308 5.238326230219618 1.487875929105176 5.071713689974774 1.533491951675666 5.455634220373443 1.92359810915547 5.961466416325745 3.111003021527154 5.799683556714631 3.158588099668047 6.157026842955437 3.572135238052842 6.155552762072252 4.004986074229297 5.991977498616147 3.994577086405462 6.102338909262918 4.338121338358671 6.111197565143103 4.570475749670344 5.943923440480776 4.578781900045646 6.13932621225063 5.17824259034208 6.137747467825764 5.091185061900924 5.970467508847646 5.090572949560249 6.23799435261363 5.743683457483806 6.257702125498454 5.614333098042479 6.089209544512898 5.639527272863173 6.439857234582204 6.489474903673819 6.450219087665467 6.324748101400834 6.279722914979196 6.367584550843858 7.272565028641802 9.334630861843838</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 1 7 6 8 7 8 4 7 9 6 10 9 11 10 12 11 13 12 14 13 15 14 14 13 16 15 15 14 15 14 16 15 17 16 16 15 18 17 17 16 18 17 19 18 17 16 17 16 19 18 12 11 12 11 19 18 10 9 19 18 20 19 10 9 10 9 20 19 21 20 21 20 20 19 22 21 22 21 20 19 23 22 20 19 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 19 27 22 29 19 30 21 30 21 29 19 31 20 31 20 29 19 32 9 32 9 29 19 33 18 32 9 33 18 34 11 34 11 33 18 35 16 35 16 33 18 36 17 35 16 36 17 37 15 35 16 37 15 38 14 38 14 37 15 39 13 38 14 39 13 40 12 34 11 41 10 32 9 42 25 8 26 6 27 7 27 9 26 43 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 44 33 49 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 56 38 61 39 62 39 57 38 63 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 78 49 74 50 79 51 80 51 77 50 81 49 82 52 79 53 83 54 84 54 80 53 85 52 86 55 83 56 87 57 88 57 84 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 90 62 94 63 46 64 94 63 90 62 93 62 95 63 47 64 95 63 93 62 92 61 42 65 91 66 8 67 9 67 92 66 43 65 46 68 45 69 94 70 95 70 48 69 47 68 44 71 51 72 45 73 48 73 52 72 49 71 54 74 56 75 60 76 63 76 57 75 59 74 96 77 55 78 54 79 59 79 58 78 97 77 60 80 61 81 65 82 66 82 62 81 63 80 98 83 69 84 68 85 73 85 72 84 99 83 68 86 70 87 75 88 76 88 71 87 73 86 75 89 74 90 78 91 81 91 77 90 76 89 78 92 79 93 82 94 85 94 80 93 81 92 82 95 83 96 86 97 89 97 84 96 85 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1003\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1004\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1008\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1011\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1009\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1010\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1009\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1013\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1013\">-0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1010\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1014\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1014\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.665978872098829 -0.4946710441241405 0.5583660985617809 -0.6729749463518688 -0.637361758729642 0.3753327991153409 -0.6631686390966892 -0.5040032000643614 0.5533426880727064 0.6631686390966892 0.5040032000643614 -0.5533426880727064 0.6729749463518688 0.637361758729642 -0.3753327991153409 0.665978872098829 0.4946710441241405 -0.5583660985617809 -0.6113023930812731 -0.4665479271234981 0.6392514496736599 -0.6144927450388785 -0.4648298128754873 0.6374416925152632 0.6144927450388785 0.4648298128754873 -0.6374416925152632 0.6113023930812731 0.4665479271234981 -0.6392514496736599 -0.6113024351803775 0.02089648161452121 -0.7911211473590341 -0.6629772102952537 -0.05946182801509716 -0.7462744197935675 -0.6144856224526448 0.02115082100305797 -0.788644446230291 0.6144856224526448 -0.02115082100305797 0.788644446230291 0.6629772102952537 0.05946182801509716 0.7462744197935675 0.6113024351803775 -0.02089648161452121 0.7911211473590341 -0.6729865574698508 -0.2722723663025976 -0.6877185848970954 -0.6657964087760006 -0.04905406275857674 -0.7445192012217402 0.6657964087760006 0.04905406275857674 0.7445192012217402 0.6729865574698508 0.2722723663025976 0.6877185848970954 -0.6289126479749136 -0.4316287370285187 -0.6466571847496542 -0.6701219898639051 -0.2700944235726152 -0.6913649695029515 0.6701219898639051 0.2700944235726152 0.6913649695029515 0.6289126479749136 0.4316287370285187 0.6466571847496542 -0.625235720980833 -0.6900477813844846 -0.3645742072828637 -0.6193536905515095 -0.6949069317223108 -0.3653838560261096 -0.6585492725804401 -0.7117353213657445 -0.2444293106486486 0.6585492725804401 0.7117353213657445 0.2444293106486486 0.6193536905515095 0.6949069317223108 0.3653838560261096 0.625235720980833 0.6900477813844846 0.3645742072828637 -0.6194174598878585 -0.7727236736317268 -0.1386367000298329 -0.6252889641002037 -0.7683994078132589 -0.1362940257191311 0.6252889641002037 0.7683994078132589 0.1362940257191311 0.6194174598878585 0.7727236736317268 0.1386367000298329 -0.6289491677379813 -0.7378166084535101 0.2450501921889897 -0.6701143216290043 -0.6378674916840043 0.3795679899576043 0.6701143216290043 0.6378674916840043 -0.3795679899576043 0.6289491677379813 0.7378166084535101 -0.2450501921889897 -0.6220235325541719 -0.4367230682693095 -0.6498920576451671 0.6220235325541719 0.4367230682693095 0.6498920576451671 -0.66322861238516 -0.7078364633944363 -0.2430953492004979 0.66322861238516 0.7078364633944363 0.2430953492004979 -0.6220739496306955 -0.7438120858740276 0.2444740928986038 0.6220739496306955 0.7438120858740276 -0.2444740928986038</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1012\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID1015\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1015\">-13.1400950603756 1.173564403059267 -10.40627893432769 1.124434441577344 -13.15255137381423 0.9279589001163017 -10.27307042155825 0.8681266778283273 -9.189994418622993 1.264051624233875 -9.003990750986796 1.048556618282334 -8.631364655027486 1.58133806218634 -8.32989678897887 1.389732320018504 -8.138397114707948 2.229419222292963 -8.021211049481213 2.979020818746164 -7.899110943071706 3.579476892421579 -7.825205836228406 2.14481334522609 -7.633701656418383 2.984495669372309 -11.2648379224095 5.469276533528866 -11.08282841508071 5.669081998703718 -9.064802010625483 4.197342553950783 -8.759556250140577 4.335206239657886 -8.214175023921374 3.499343108218881 -9.293499526711592 4.817014898978647 -8.826029735810842 3.819095263127729 -9.479935146563065 4.69355806947108 -9.598333715416914 4.269996002902563 -11.4451814866472 6.004559867052301 -11.27238326129256 6.122746934237442 -12.99649077872279 3.548711561631994 -10.11869071105481 3.450892066657108 -13.01122109678588 3.368945949801105 -10.93441203049134 1.86609666716912 -9.691000544009365 2.135289745490901 -10.9099599054405 1.675370038626291 -9.373139815182823 0.7689770988787354 -9.807669465111511 0.1722143048301494 -9.948650378751601 0.3300733873617702 -8.577158506658666 0.2520704532656712 -8.784749024975916 0.3368814101118945 -8.44894854732777 1.148049050310268 -8.283231792898336 1.754479953103737 -8.163454103892477 2.60234989713821 -7.929857688637407 2.612187149318454 -8.393267123014773 3.395516742139427 -8.575064803892623 4.009635864995857 -8.347904821053195 4.082333036170931 -9.538143212337962 4.122019508445817 -9.712549747783164 3.988124977535597 -11.4967703490366 5.776114209361791 -8.635265013996062 3.840908182472945 -8.857708853722354 3.759685808930915 -9.336631246940229 4.75423905497862 -10.099789347737 3.347976657609713 -10.11874372708642 3.156863270877688 -12.99262703403099 3.273043651450185 -10.88782026707182 1.734216017891711 -9.664307303095521 2.186591215072741 -9.576302614795329 2.006517442139522 -9.715984028727405 -0.1838898453009026 -9.313113161111691 0.4264642055287746 -9.120028776210594 0.3225903730954203 -8.362142656158987 1.254366929361164 -8.748456669163948 0.4045346212719758 -8.597687662062889 1.298337143620016 -7.995450381775688 3.494271011514753 -8.229032362201163 3.484223882823618 -8.171197827192739 4.170460074055694 -8.20339914665017 1.799521614731336 -8.439711847109324 1.84086418270131 -8.079339290991934 2.696767466467675</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 9 9 10 10 8 8 7 7 8 8 11 11 8 8 10 10 11 11 12 12 11 11 10 10 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 10 10 17 17 9 9 17 17 10 10 18 10 19 17 20 9 19 17 18 10 21 16 19 17 21 16 22 15 22 15 21 16 23 14 22 15 23 14 24 13 18 10 25 11 26 12 25 11 18 10 27 8 25 11 27 8 28 7 27 8 18 10 20 9 28 7 27 8 29 6 28 7 29 6 30 5 30 5 29 6 31 4 30 5 31 4 32 3 32 3 31 4 33 1 32 3 33 1 34 2 34 2 33 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 38 21 42 22 43 23 44 23 45 22 39 21 46 24 47 25 48 26 49 26 50 25 51 24 47 27 52 28 53 29 54 29 55 28 50 27 56 30 57 31 52 32 55 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 62 36 66 37 67 38 68 38 69 37 63 36 70 39 37 40 71 41 72 41 40 40 73 39 36 42 38 43 43 44 44 44 39 43 41 42 71 45 37 46 36 47 41 47 40 46 72 45 47 48 53 49 48 50 49 50 54 49 50 48 53 51 52 52 57 53 58 53 55 52 54 51 57 54 56 55 74 56 75 56 59 55 58 54 76 57 60 58 62 59 63 59 65 58 77 57 78 60 70 61 71 62 72 62 73 61 79 60 76 63 62 64 67 65 68 65 63 64 77 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1011\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1012\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1016\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1019\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1017\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1018\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1017\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1021\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1021\">-0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.36399123050046 -0.05397436236353959</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1018\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1022\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1022\">-0.1088382594273443 -0.0230925907380549 0.9937912082212393 -0.1152576241861024 -0.03911071598773939 0.9925653791876389 -0.1164223673367788 -0.03939636620354328 0.9924181370338092 0.1164223673367788 0.03939636620354328 -0.9924181370338092 0.1152576241861024 0.03911071598773939 -0.9925653791876389 0.1088382594273443 0.0230925907380549 -0.9937912082212393 -0.1108273234566798 -0.02565555069468248 0.9935084786220906 0.1108273234566798 0.02565555069468248 -0.9935084786220906 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170010640450718 -0.01171259707753706 0.993062720114908 0.1170010640450718 0.01171259707753706 -0.993062720114908 -0.49707423312389 0.2193373097837861 0.8395286482908776 -0.3523453743815874 0.2761690730154793 0.8941942631563176 -0.3063605024253654 0.292841831319583 0.9057521208272551 0.3063605024253654 -0.292841831319583 -0.9057521208272551 0.3523453743815874 -0.2761690730154793 -0.8941942631563176 0.49707423312389 -0.2193373097837861 -0.8395286482908776 -0.514413700169338 0.2117991293092924 0.830975134346339 -0.5580248035340664 0.2172606952515568 0.8008783359159973 0.5580248035340664 -0.2172606952515568 -0.8008783359159973 0.514413700169338 -0.2117991293092924 -0.830975134346339 -0.545145087248696 0.2436486159674788 0.8021547143698301 -0.5582941772828572 0.2203572971939314 0.7998439055124711 0.5582941772828572 -0.2203572971939314 -0.7998439055124711 0.545145087248696 -0.2436486159674788 -0.8021547143698301 -0.1366090766113033 0.0492215304934492 0.9894014357798807 -0.1321734375085311 0.04191912395636385 0.9903398252437945 -0.131888714653345 0.05687624445573066 0.9896314767446013 0.131888714653345 -0.05687624445573066 -0.9896314767446013 0.1321734375085311 -0.04191912395636385 -0.9903398252437945 0.1366090766113033 -0.0492215304934492 -0.9894014357798807 -0.1269026228341467 0.03033545622924269 0.9914512012263529 -0.1289755249516954 0.04693082498186052 0.9905366281112257 0.1289755249516954 -0.04693082498186052 -0.9905366281112257 0.1269026228341467 -0.03033545622924269 -0.9914512012263529 -0.124092777366998 0.0076289036136885 0.992241292446045 -0.126060444224836 0.03090911601848133 0.9915409174354799 -0.1257051481658395 0.006141985696806098 0.9920486337555757 0.126060444224836 -0.03090911601848133 -0.9915409174354799 0.1257051481658395 -0.006141985696806098 -0.9920486337555757 0.124092777366998 -0.0076289036136885 -0.992241292446045 -0.121164189425585 -0.01572761942446628 0.9925078746227056 0.121164189425585 0.01572761942446628 -0.9925078746227056 -0.6307579737542808 0.02590113406437414 0.7755472324749624 -0.6328191074081528 0.02571473448560696 0.7738725539321597 -0.5535966397540385 0.007327883701034462 0.8327527019310723 0.5535966397540385 -0.007327883701034462 -0.8327527019310723 0.6328191074081528 -0.02571473448560696 -0.7738725539321597 0.6307579737542808 -0.02590113406437414 -0.7755472324749624 -0.5497328291718073 0.003855971050269636 0.8353316395408592 -0.50401691956796 -0.04154329558212729 0.8626940937443589 0.50401691956796 0.04154329558212729 -0.8626940937443589 0.5497328291718073 -0.003855971050269636 -0.8353316395408592 -0.4610763548051719 -0.1461813753387184 0.8752368825316127 -0.4985583850107261 -0.04209033687011798 0.8658336677894066 0.4985583850107261 0.04209033687011798 -0.8658336677894066 0.4610763548051719 0.1461813753387184 -0.8752368825316127 -0.4568954263623595 -0.3661495419449712 0.8106670600824024 -0.4574584754158474 -0.1372954494769191 0.8785679841783102 0.4574584754158474 0.1372954494769191 -0.8785679841783102 0.4568954263623595 0.3661495419449712 -0.8106670600824024 -0.4286977599895537 -0.5231200390841958 0.736589203890804 -0.4541605407154716 -0.3875438698506286 0.8022144053794031 0.4541605407154716 0.3875438698506286 -0.8022144053794031 0.4286977599895537 0.5231200390841958 -0.736589203890804 -0.4272529523562543 -0.5230063251151536 0.7375088464502692 0.4272529523562543 0.5230063251151536 -0.7375088464502692 -0.5412401970068317 0.2456900208751192 0.8041737764851509 0.5412401970068317 -0.2456900208751192 -0.8041737764851509</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1020\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID1023\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1023\">-9.982481491239387 -0.7801007211882352 -14.09510292357247 -0.5039355294692868 -13.80735445879598 0.2458649066213103 -10.34526016737302 -1.466008715794491 -14.09879580861296 -0.4405539083059194 -9.988301163081676 -0.7356641740735505 -13.10922761281063 -0.5571905098427091 -13.13740525360347 0.1403214759947992 -9.196091163788671 -0.4549016494423948 -9.166790892866176 0.02237652469014133 -8.050713318734761 -0.478223336087835 -7.941139361618053 0.004288303168351604 -7.188240519124049 -0.5334174714432312 -7.090320138584049 -0.006447222908070464 -6.450420964679379 -0.6826635284399174 -6.082881246769018 -0.8890069299183254 -5.643938497996714 0.02538830541298317 -5.545750788810404 -0.7523932208971403 -4.316527116072848 0.05807392568797635 -4.257382154934284 -0.4900517056751142 -3.709288218786411 0.08183865699999136 -3.661200976693986 -0.3512310434882693 -8.25892496550161 -2.716294787433218 -9.56365659142571 -3.414782035487321 -9.444849024834038 -2.637915891572029 -0.4501075387385644 -5.702039180101661 -0.760980155205736 -6.138226240003666 -0.8383862270638492 -6.024387405365547 -3.036946117474684 -5.046749768110493 -3.11972454521867 -4.927496814587837 -1.931797432665722 -4.455539334599414 -1.39198761903897 -4.060249812509751 -1.840201626763001 -4.405347099302408 -1.942059996843278 -4.288237917025894 -1.743825325723805 -4.738097079607221 -2.315112412340436 -4.901759201329516 -2.072054116570976 -3.996942288506867 -3.006142084263772 -4.677607628037944 -4.29745234114743 -4.921683762233218 -3.210764357994353 -3.909876114437887 -6.045846395112246 -4.351127992404424 -4.63326543236224 -4.104402683678466 -5.817027785622174 -5.11390335315071 -4.404478357282174 -4.86718369880627 -7.68254055900837 -3.291082013018551 -8.526584459177135 -3.206102051772249 -7.574657362153948 -2.511963867763529 -8.639203837906873 -3.01900298997022 -9.850251925139794 -2.869509604712622 -8.486035206263603 -2.245302060931764 -12.8594219210069 -3.959341569141119 -12.88930466061255 -3.809766395600264 -8.979394940552526 -3.648259713923244 -9.376131742660215 -3.534536530901836 -9.391545189087976 -3.394260442828891 -8.247053604057138 -3.436684447776327 -7.8341142891939 -3.053992018602209 -8.7058236215713 -3.078954991981029 -8.688221694559164 -2.944754120167723 -8.040918009984427 -1.609661502807112 -8.793910115866449 -1.430479012716069 -8.706594682299912 -1.318227486458866 -7.846467309198026 0.203731956450229 -8.204757539203133 0.4184993788204998 -8.080882217779717 0.5073250354274762 -7.973663933481603 0.1708422317066539 -8.193916486682584 0.4584273007660447 -7.836967917690922 0.2422817623004304 -3.102673325396043 -5.034591316029415 -3.657392430113825 -5.248806784060694 -3.184266115108013 -4.914833768129049 -2.162892915154069 -4.393783806136414 -3.394592342438381 -4.827589234947812 -2.258730892786211 -4.273571014922622 -1.124263670823358 -4.256400851632963 -1.64240444746631 -4.486484675650029 -1.204920604791744 -4.132968849313659 -1.707878264920318 -5.051978381616294 -2.106744346024158 -4.33304282629061 -1.573574662755514 -4.13323415933467 -3.055364651970826 -3.986730453637497 -4.102647352655998 -5.023934951648005 -4.376892342551905 -4.270486949557792 -8.304432996410977 -3.546277958346702 -8.22936812025759 -2.7654805562517 -7.39868796456141 -2.814896261844453 -8.85003260959982 -4.105813515261139 -12.75388280914387 -4.321676615539797 -8.87990583956584 -3.966989383531663 -8.18877059368268 -3.727801701899872 -9.315494873795004 -3.699917069303213 -8.187762571847973 -3.592890692650113 -7.860413932309075 -3.269408970252542 -8.686391782372066 -3.170572816674207 -7.814820248641656 -3.142791349253691 -8.113196821760255 -1.740424407903711 -8.789396298041625 -1.445615269068238 -8.035881586078531 -1.62343299194266</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 9 7 10 8 9 7 11 9 10 8 10 8 11 9 12 10 11 9 13 11 12 10 12 10 13 11 14 12 13 11 15 13 14 12 14 12 15 13 16 14 16 14 15 13 17 15 15 13 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 15 30 15 29 16 31 13 30 15 31 13 32 14 32 14 31 13 33 12 33 12 31 13 34 11 33 12 34 11 35 10 35 10 34 11 36 9 35 10 36 9 37 8 37 8 36 9 38 7 37 8 38 7 39 6 40 22 6 23 0 24 5 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 42 29 49 30 50 30 47 29 51 28 52 31 53 32 49 33 50 33 54 32 55 31 56 34 57 35 58 36 59 36 60 35 61 34 57 37 62 38 63 39 64 39 65 38 60 37 66 40 67 41 68 42 62 43 68 42 67 41 69 41 70 42 65 43 70 42 69 41 71 40 68 44 72 45 66 46 71 46 73 45 70 44 72 47 6 48 40 49 41 49 7 48 73 47 74 50 75 51 76 52 77 52 78 51 79 50 80 53 76 54 81 55 82 55 77 54 83 53 84 56 85 57 81 58 82 58 86 57 87 56 88 59 89 60 84 61 87 61 90 60 91 59 92 62 93 63 88 64 91 64 94 63 95 62 96 65 93 66 92 67 95 67 94 66 97 65 48 68 43 69 42 70 47 70 46 69 51 68 53 71 48 72 49 73 50 73 51 72 54 71 98 74 53 75 52 76 55 76 54 75 99 74 57 77 63 78 58 79 59 79 64 78 60 77 63 80 62 81 67 82 69 82 65 81 64 80 72 83 40 84 66 85 71 85 41 84 73 83 80 86 74 87 76 88 77 88 79 87 83 86 85 89 80 90 81 91 82 91 83 90 86 89 89 92 85 93 84 94 87 94 86 93 90 92 93 95 89 96 88 97 91 97 90 96 94 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1019\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1020\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1024\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1027\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1025\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1026\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1025\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1029\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1029\">-0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1026\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1030\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1030\">-0.1164251204271865 0.5786308311400867 -0.8072369866325796 -0.1152614763458105 0.5789463800012497 -0.8071777258782806 -0.1088481568860517 0.5923386087106918 -0.7983026063925831 0.1088481568860517 -0.5923386087106918 0.7983026063925831 0.1152614763458105 -0.5789463800012497 0.8071777258782806 0.1164251204271865 -0.5786308311400867 0.8072369866325796 -0.1108311632331452 0.590147562033904 -0.7996513667104105 0.1108311632331452 -0.590147562033904 0.7996513667104105 -0.1169877446230861 0.6008761854127825 -0.7907348970494391 0.1169877446230861 -0.6008761854127825 0.7907348970494391 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211500310125118 0.5973661817498072 -0.7927649808659082 0.1211500310125118 -0.5973661817498072 0.7927649808659082 -0.1268970330673193 0.6330602330777329 -0.763630725085285 -0.1321771951964776 0.641516467688795 -0.7556360306087073 -0.1289733966194932 0.6455983790150909 -0.7527075102438648 0.1289733966194932 -0.6455983790150909 0.7527075102438648 0.1321771951964776 -0.641516467688795 0.7556360306087073 0.1268970330673193 -0.6330602330777329 0.763630725085285 -0.1366192134527518 0.6467025975280807 -0.7504071833784541 -0.1318920760546484 0.6528924852832206 -0.7458792683368364 0.1318920760546484 -0.6528924852832206 0.7458792683368364 0.1366192134527518 -0.6467025975280807 0.7504071833784541 -0.5451959861481726 0.685035348561869 -0.4832058649360955 -0.5581385279990985 0.6633895104200506 -0.4983931590899352 -0.5584055108423882 0.6651998527735585 -0.4956737246726797 0.5584055108423882 -0.6651998527735585 0.4956737246726797 0.5581385279990985 -0.6633895104200506 0.4983931590899352 0.5451959861481726 -0.685035348561869 0.4832058649360955 -0.4970796441004287 0.6888461887919656 -0.5276388496005341 -0.5144129314214905 0.6776483658738426 -0.5255207210137955 0.5144129314214905 -0.6776483658738426 0.5255207210137955 0.4970796441004287 -0.6888461887919656 0.5276388496005341 -0.3065368645499978 0.7874550645024714 -0.5347426222597793 -0.3524751158962745 0.7672119047738485 -0.5358611628464889 0.3524751158962745 -0.7672119047738485 0.5358611628464889 0.3065368645499978 -0.7874550645024714 0.5347426222597793 -0.454140017835944 0.1871034341906217 -0.8710620810906903 -0.4286959899151095 0.03977866415051463 -0.9025726597394278 -0.4568675187823961 0.2091268429512146 -0.864602818546687 0.4568675187823961 -0.2091268429512146 0.864602818546687 0.4286959899151095 -0.03977866415051463 0.9025726597394278 0.454140017835944 -0.1871034341906217 0.8710620810906903 -0.4610330568129479 0.4223904034843316 -0.7804068602786966 -0.4574112545118764 0.4314471465815102 -0.7775784873262276 0.4574112545118764 -0.4314471465815102 0.7775784873262276 0.4610330568129479 -0.4223904034843316 0.7804068602786966 -0.4985686990456941 0.4987245144832661 -0.7090155929070352 -0.5040287169911085 0.4972319905766404 -0.7061978476287568 0.5040287169911085 -0.4972319905766404 0.7061978476287568 0.4985686990456941 -0.4987245144832661 0.7090155929070352 -0.5535723758972673 0.5174191484113569 -0.6525603799655021 -0.5497106232233426 0.5162657272219958 -0.6567251553057397 0.5497106232233426 -0.5162657272219958 0.6567251553057397 0.5535723758972673 -0.5174191484113569 0.6525603799655021 -0.6307511085987073 0.4969187375520394 -0.5960073886045282 -0.6328126226365115 0.4957425846370723 -0.5948003651724295 0.6328126226365115 -0.4957425846370723 0.5948003651724295 0.6307511085987073 -0.4969187375520394 0.5960073886045282 -0.1257030963027143 0.6143256787305055 -0.7789754116993772 -0.1240850473728673 0.6156224677283072 -0.7782106901389768 0.1240850473728673 -0.6156224677283072 0.7782106901389768 0.1257030963027143 -0.6143256787305055 0.7789754116993772 -0.1260524294574446 0.6335694907637545 -0.7633482071775848 0.1260524294574446 -0.6335694907637545 0.7633482071775848 -0.5412748879965412 0.687898621088518 -0.4835462570725241 0.5412748879965412 -0.687898621088518 0.4835462570725241 -0.4272470439601668 0.04043528853901111 -0.9032302867309456 0.4272470439601668 -0.04043528853901111 0.9032302867309456</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1028\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID1031\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1031\">1.998937623161384 10.76476841980763 2.986714499689779 10.86290628058702 2.646808655273745 7.626911531842514 3.137910672426441 10.83666032021479 3.73149548145001 7.745943970176235 2.753392543137154 7.603757279601984 2.820184296480023 7.581971421901169 3.799485555325677 7.718958628996464 2.986360958528956 6.654920534525154 -10.45577002727441 6.283216928777442 -9.888780236097874 6.819957862866433 -7.230760792342645 4.457246732780551 -6.88113622380909 4.847979343375632 -6.249633121797126 3.879151418789206 -5.959241747873955 4.31281594366269 -5.569883206520585 3.476406390468299 -5.235605254682731 3.939530432036485 -4.53685698336594 3.700681803303125 -4.453542058358801 2.75223422874128 -4.08577743896114 3.685864912838015 -3.76863480279438 3.318475734997433 -3.431737630961593 2.084911934129343 -2.971172988345912 1.772671627247351 -2.95700400690178 2.488800756097747 -2.594993336245468 2.091126521667093 3.625763036746231 7.771438100407487 3.81895079101609 6.819175129102827 2.835843568044133 6.696637019396241 4.147409147623762 5.020072757806616 4.353287423553801 3.987980441594453 3.373113844173326 3.843845654733742 4.329822052382522 3.988576604581577 4.425017633747888 3.516183683878827 3.441920088820501 3.382462419447546 2.288473777971453 3.838233246252393 2.056359603288195 4.291999654325147 2.230352107905733 4.329484501746936 2.335103140462541 4.369785709347631 1.846819489349988 5.343682783349156 2.009452657357155 5.389437917116684 3.432423115070612 5.067446679764254 3.317376742139041 5.502219060815397 3.459288365190417 5.567061823306501 -4.027123668961578 5.648598042583979 -3.625507904080766 5.488165434978679 -4.074900648768324 5.522217060790011 -1.028756012507091 6.944701516300213 -0.9192721422585309 7.044197939014103 -0.4737934490769319 6.534086009615941 -0.6357437305888969 7.514537810738175 -0.2529975353390784 6.897934716972006 -0.7779385115273918 7.439108605446435 -1.653891145271553 8.049854498656151 -1.497398853673659 8.118176192147216 -0.9697804840218809 7.326856963524517 -4.443807657891354 10.31154936901565 -2.240674467155615 7.779841628900575 -4.608304711025181 10.23293734499374 3.75622254964643 6.838662211659464 3.895902912319825 6.178304156875717 2.910250464513155 6.064224792957607 2.9733499521145 6.025115824772509 3.960090801378393 6.133215747935012 3.191931818886059 4.899905221596626 4.178668992404626 5.008016229071481 2.853014213669746 6.688899456137831 3.836421506115961 6.809938349919037 2.981756068882562 6.041430594450256 3.19913319123502 4.893302521149462 4.186013224173247 5.000603531797977 3.403561010679153 3.827721629442527 3.408140364595802 3.806695969447152 4.38943376548893 3.946035659923494 3.493767507501942 3.347032692092354 2.168577740868163 4.427932373500567 1.994848645956156 4.389698935824643 1.628068030784827 5.400671769098429 2.605226202472054 3.872011356930058 2.442902545374851 3.817638953721654 2.393635605078873 4.309488781848157 1.995011165963287 5.404459939837887 1.832450069184318 5.358546584306009 1.76553688369938 5.855830345560892 -3.982493890322007 5.661270718905809 -3.558007158969994 5.626281209275753 -3.582332382251634 5.498604840327278 -0.9689320567369109 7.039776299560601 -0.4026134045726859 6.625773062040189 -0.5199101826953312 6.531590478244566 -0.01524134949612947 7.554529442168967 0.4484293081867797 7.007795171809001 0.3219388629227055 6.921678714189059 -0.9145523620121765 8.201304268657363 -0.2892066006479271 7.463461634669913 -0.4343023409365476 7.391532441464667 -3.35620196045869 10.62525094866661 -1.205987261730729 8.052971772803227 -1.364385652116661 7.987424724987632</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 2 6 6 7 8 8 9 8 7 7 3 6 10 9 11 10 12 11 11 10 13 12 12 11 12 11 13 12 14 13 13 12 15 14 14 13 14 13 15 14 16 15 15 14 17 16 16 15 17 16 18 17 16 15 16 15 18 17 19 18 18 17 20 19 19 18 20 19 21 20 19 18 19 18 21 20 22 21 22 21 21 20 23 22 21 20 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 20 27 22 29 20 30 21 30 21 29 20 31 18 31 18 29 20 32 19 31 18 32 19 33 17 31 18 33 17 34 15 34 15 33 17 35 16 34 15 35 16 36 14 34 15 36 14 37 13 37 13 36 14 38 12 37 13 38 12 39 11 39 11 38 12 40 10 39 11 40 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 55 37 60 38 61 39 62 39 63 38 58 37 60 40 64 41 65 42 66 42 67 41 63 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 70 48 71 48 76 47 77 46 78 49 74 50 79 51 80 51 77 50 81 49 82 52 83 53 79 54 80 54 84 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 90 62 94 63 44 64 94 63 90 62 93 62 95 63 49 64 95 63 93 62 92 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 56 74 55 75 61 76 62 76 58 75 57 74 96 77 54 78 56 79 57 79 59 78 97 77 61 80 60 81 65 82 66 82 63 81 62 80 68 83 98 84 69 85 72 85 99 84 73 83 75 86 68 87 70 88 71 88 73 87 76 86 78 89 75 90 74 91 77 91 76 90 81 89 83 92 78 93 79 94 80 94 81 93 84 92 86 95 83 96 82 97 85 97 84 96 89 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1027\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1028\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1032\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1035\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1033\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1034\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1033\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1037\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1037\">-0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.9795942854452735 0.8749769468548716</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1034\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1038\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1038\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1036\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID1039\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"120\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1039\">-19.59188570890547 13.76630396384998 -19.04886463418979 14.25191163615645 -13.60830466398959 9.797102239768163 -13.18353596539283 10.30339123710937 -11.80775011326652 8.729689492795748 -11.41290570274134 9.284142171201117 -10.42232541141175 7.994811895109255 -10.02743369272711 8.549250986811536 -9.003512412931656 7.511347968262671 -8.858556458189856 8.193395738456855 -8.150745295211088 7.481316037858777 -7.717772010128141 8.570258983447072 -7.390247861223824 6.714910200247886 -6.853807126191143 9.252082277676843 -6.540672166948984 11.6205228613906 -6.227565367325356 8.494179944032663 -5.726108265179133 5.043303854792981 -5.553161274050962 7.679445612741617 -5.041763826525845 4.277439417764588 -4.306234587730349 4.811018489749948 -4.083905012052296 5.898375335431962 -3.385471377541194 5.140468275977997 -10.82793655825754 18.80162710738276 -10.06778605077227 19.04794340165244 -7.985814033393162 13.15527448152569 -7.335486789514798 11.50684232576269 -7.239162120697529 13.30684774139463 -6.901978847139394 10.23735513419642 -6.107060972638583 10.3510451214439 -5.98671614912405 9.138399969870253 -3.053530486319291 5.175522560721952 -3.113782683662678 4.247089972016331 -2.993358074562025 4.569199984935127 -3.270336083474492 5.8102614306953 -3.450989423569697 5.118677567098211 -3.426903563095571 4.626041138838422 -3.619581060348764 6.653423870697313 -3.667743394757399 5.753421162881343 -5.033893025386136 9.52397170082622 -3.992907016696581 6.577637240762844 -5.413968279128769 9.400813553691382 -2.041952506026148 2.949187667715981 -2.153117293865174 2.405509244874974 -1.692735688770597 2.570234137988999 -2.776580637025481 3.839722806370808 -2.520881913262922 2.138719708882294 -2.863054132589566 2.521651927396491 -3.695123930611912 3.357455100123943 -3.858886005064071 4.285129491723536 -4.075372647605544 3.740658018929389 -4.429278229094928 4.096697869228428 -4.501756206465828 3.755673984131335 -5.013716846363556 4.274625493405768 -5.211162705705876 3.997405947554627 -5.706452851370669 4.642071085600558 -5.903875056633261 4.364844746397874 -6.591767982696415 5.151695618554686 -6.804152331994795 4.898551119884082 -9.524432317094897 7.125955818078223 -9.795942854452735 6.88315198192499</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 3 3 5 5 4 4 4 4 5 5 6 6 5 5 7 7 6 6 6 6 7 7 8 8 7 7 9 9 8 8 8 8 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 11 11 13 13 12 12 14 14 15 15 13 13 13 13 15 15 12 12 12 12 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 18 18 17 17 19 19 17 17 20 20 19 19 21 21 19 19 20 20 22 22 23 23 24 24 24 24 23 23 25 25 23 23 26 26 25 25 25 25 26 26 27 27 26 26 14 14 27 27 13 13 27 27 14 14 14 14 28 28 15 15 29 29 15 15 28 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1035\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1036\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">30 30 31 31 32 32 31 31 30 30 33 33 33 33 34 34 35 35 34 34 33 33 36 36 34 34 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 39 39 38 38 40 40 41 41 42 42 43 43 42 42 41 41 44 44 42 42 44 44 45 45 45 45 44 44 46 46 46 46 44 44 31 31 46 46 31 31 47 47 47 47 31 31 35 35 35 35 31 31 33 33 47 47 35 35 48 48 47 47 48 48 49 49 49 49 48 48 50 50 49 49 50 50 51 51 51 51 50 50 52 52 51 51 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 55 55 54 54 56 56 55 55 56 56 57 57 57 57 56 56 58 58 57 57 58 58 59 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1035\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1036\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1040\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1043\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1041\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1042\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1041\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1045\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1045\">-0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1042\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1046\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1046\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.672990936518585 0.2791484701318099 -0.6849520647365829 -0.6630700206644244 0.06601587505827476 -0.7456406989538392 -0.6658812119562829 0.05557583132515614 -0.7439849047770725 0.6658812119562829 -0.05557583132515614 0.7439849047770725 0.6630700206644244 -0.06601587505827476 0.7456406989538392 0.672990936518585 -0.2791484701318099 0.6849520647365829 -0.6113304972219287 -0.01491894967988539 -0.791234761690131 -0.6145075341081261 -0.01519103171901108 -0.7887646816888181 0.6145075341081261 0.01519103171901108 0.7887646816888181 0.6113304972219287 0.01491894967988539 0.791234761690131 -0.6113858088080906 0.4608262320043037 0.643309083322156 -0.6630483910174163 0.498855229375798 0.5581310699948852 -0.6145579693011508 0.4591343117628982 0.6414937148019891 0.6145579693011508 -0.4591343117628982 -0.6414937148019891 0.6630483910174163 -0.498855229375798 -0.5581310699948852 0.6113858088080906 -0.4608262320043037 -0.643309083322156 -0.6658642050055886 0.4894684515523368 0.563067931449868 -0.6730103961097779 0.633535161008159 0.3816938648898171 0.6730103961097779 -0.633535161008159 -0.3816938648898171 0.6658642050055886 -0.4894684515523368 -0.563067931449868 -0.6288817366873886 0.7353849506127249 0.2524217416812069 -0.6701444240931888 0.6340128793903517 0.3859198357482596 0.6701444240931888 -0.6340128793903517 -0.3859198357482596 0.6288817366873886 -0.7353849506127249 -0.2524217416812069 -0.6193201491348418 0.7741457966357958 -0.1309230248150662 -0.658578304891523 0.7141210938325098 -0.2372881785291209 -0.6252123795686114 0.7697839976649213 -0.1286160074530658 0.6252123795686114 -0.7697839976649213 0.1286160074530658 0.658578304891523 -0.7141210938325098 0.2372881785291209 0.6193201491348418 -0.7741457966357958 0.1309230248150662 -0.6193894345161001 0.698494696426414 -0.3584158024892286 -0.6252712636549731 0.6936274305614512 -0.3576546300833142 0.6252712636549731 -0.6936274305614512 0.3576546300833142 0.6193894345161001 -0.698494696426414 0.3584158024892286 -0.6701291299022093 0.2769832769238545 -0.6886270496872973 -0.6289250440898284 0.438067046954839 -0.6423009818526467 0.6289250440898284 -0.438067046954839 0.6423009818526467 0.6701291299022093 -0.2769832769238545 0.6886270496872973 -0.6219814506780375 0.7414065190456863 0.2519036492967151 0.6219814506780375 -0.7414065190456863 -0.2519036492967151 -0.6632653245983359 0.7102034419860702 -0.2359876695435651 0.6632653245983359 -0.7102034419860702 0.2359876695435651 -0.6220409688791525 0.4431898766144704 -0.6454825840426184 0.6220409688791525 -0.4431898766144704 0.6454825840426184</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1044\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID1047\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1047\">7.685815723975792 2.874023367856466 7.958813840120982 3.46689333538805 7.866647783783838 2.032874418182379 8.073268797801365 2.865498302382628 8.18085731407338 2.115010321233234 8.36173593111768 1.273861371559148 8.665601494827795 1.463091360543377 9.031436992618183 0.9274041343529934 9.220172518723757 1.141427050559116 10.29819330692128 0.7370029567927344 10.43461727267754 0.9922419491244857 13.17319575342934 1.025474877244218 13.18256427081902 0.7797863034262775 8.272822123002557 3.384285294404218 8.828758325209945 4.21581308609941 9.132267951340403 4.075553710198706 11.17320201782601 5.536950720255618 11.35265838639835 5.335723967790457 9.743740101464573 1.988437824085204 10.9820680884364 1.705023222924476 10.95406190306286 1.514596294059031 10.18916535332233 3.309702731294755 13.07267779495826 3.379665889560748 13.08422968449263 3.199757330669627 11.53679451320826 5.887322116789082 9.664606296230362 4.161713060886227 11.36545721424794 6.006842844578951 9.357925723043625 4.713345186989823 9.54294143455537 4.58860161283133 8.87938669524374 3.718691191733911 8.621195066914398 3.915152656841173 8.433829724268323 3.302053148008258 8.394680517829666 3.989110993373233 8.192850961276159 2.510608965499221 8.30581624406488 1.662156996532964 7.959361423291862 2.521603384444761 8.797428992253618 0.2377375302496965 8.589066946989393 0.1540948178637264 8.468953380353767 1.050766553539041 9.9650088203073 0.2013483060752452 9.821862682408826 0.04469772784885676 9.395660232283182 0.6451734807435667 10.18010204372508 3.02003618013284 10.16431663537896 3.21133071886602 13.05993379571968 3.110797586965738 9.717512492742973 2.041116121749284 10.93264464736882 1.574955679289271 9.626254877814432 1.862045396082188 11.58740893055048 5.655514610796291 9.776872146541788 3.876144995495381 9.604226472762715 4.0114184348044 9.401641036197944 4.648499728985229 8.911424637990344 3.657371138622741 8.689895478581324 3.740148740343702 8.267186516090369 3.395002083835391 8.033717664007693 3.406265074033831 8.215118084369612 4.081528994233212 8.464930288377673 1.745696425622322 8.228261606106596 1.705594495213734 8.111839397566158 2.603469864687234 9.330301350185701 0.305373195999198 9.724851614784443 -0.308343230978199 9.135802437258771 0.2031367210126086 8.762482845796232 0.3028705175705735 8.384287130441004 1.154964469876548 8.620257114820655 1.19753825098844</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 10 10 11 11 9 9 12 12 9 9 11 11 3 3 1 1 13 13 1 1 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 17 17 15 15 16 16 18 16 19 15 20 17 19 15 18 16 21 14 19 15 21 14 22 13 22 13 21 14 23 1 22 13 23 1 24 3 25 11 26 9 27 12 26 9 25 11 28 10 26 9 28 10 29 8 26 9 29 8 30 7 30 7 29 8 31 6 30 7 31 6 32 5 32 5 31 6 33 4 32 5 33 4 34 2 34 2 33 4 24 3 34 2 24 3 23 1 34 2 23 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 37 21 42 22 43 23 44 23 45 22 40 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 47 28 53 29 54 29 50 28 55 27 53 30 56 31 57 32 58 32 59 31 54 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 36 39 70 40 71 41 72 41 73 40 41 39 38 42 37 43 43 44 44 44 40 43 39 42 36 45 38 46 70 47 73 47 39 46 41 45 48 48 47 49 52 50 55 50 50 49 49 48 52 51 53 52 57 53 58 53 54 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 61 57 76 58 62 59 63 59 77 58 64 57 71 60 70 61 78 62 79 62 73 61 72 60 67 63 76 64 61 65 64 65 77 64 68 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1043\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1044\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1048\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1051\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1049\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1050\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1049\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1053\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1053\">-0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1050\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1054\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1054\">-0.1152698562505582 -0.5708457404589754 -0.8129255813663509 -0.1164339797874606 -0.5705294778991202 -0.8129816991784074 -0.1088540514781176 -0.584331089942785 -0.8041815546274835 0.1088540514781176 0.584331089942785 0.8041815546274835 0.1164339797874606 0.5705294778991202 0.8129816991784074 0.1152698562505582 0.5708457404589754 0.8129255813663509 -0.1108435503727157 -0.5821217352458851 -0.8055110133915557 0.1108435503727157 0.5821217352458851 0.8055110133915557 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170176206764311 -0.5929274844702175 -0.7967081489548396 0.1170176206764311 0.5929274844702175 0.7967081489548396 -0.4970751144160029 -0.683545041602595 -0.5344927564792851 -0.5581062161838647 -0.6583968034238775 -0.505006040259074 -0.5144163086132454 -0.6723630224863056 -0.5322629307267247 0.5144163086132454 0.6723630224863056 0.5322629307267247 0.5581062161838647 0.6583968034238775 0.505006040259074 0.4970751144160029 0.683545041602595 0.5344927564792851 -0.5452373970371485 -0.6801451362856548 -0.4900191572368603 -0.5583798869887992 -0.6602297154995238 -0.5023033192980051 0.5583798869887992 0.6602297154995238 0.5023033192980051 0.5452373970371485 0.6801451362856548 0.4900191572368603 -0.1366232935947715 -0.6391496733784974 -0.7568498996944356 -0.1321750213771143 -0.6339255398774245 -0.7620158617870596 -0.1318903393557705 -0.6453922059420187 -0.7523787868447079 0.1318903393557705 0.6453922059420187 0.7523787868447079 0.1321750213771143 0.6339255398774245 0.7620158617870596 0.1366232935947715 0.6391496733784974 0.7568498996944356 -0.1269071717687836 -0.6253899701404045 -0.7699233435878096 -0.1289732790216521 -0.6380369665418767 -0.7591276062852959 0.1289732790216521 0.6380369665418767 0.7591276062852959 0.1269071717687836 0.6253899701404045 0.7699233435878096 -0.1260674500275698 -0.6258988106438125 -0.7696477615625263 -0.1241010714283334 -0.6078068716321187 -0.7843275660507647 -0.1257095939325673 -0.6065122404802681 -0.7850732450803013 0.1241010714283334 0.6078068716321187 0.7843275660507647 0.1257095939325673 0.6065122404802681 0.7850732450803013 0.1260674500275698 0.6258988106438125 0.7696477615625263 -0.1211769958232875 -0.5894025390301889 -0.7986994319942953 0.1211769958232875 0.5894025390301889 0.7986994319942953 -0.630695063396688 -0.4909614247884672 -0.6009830416714983 -0.6327553060025942 -0.489798292648837 -0.5997652501136153 -0.5535679708898417 -0.5108673680079583 -0.6577058870874768 0.5535679708898417 0.5108673680079583 0.6577058870874768 0.6327553060025942 0.489798292648837 0.5997652501136153 0.630695063396688 0.4909614247884672 0.6009830416714983 -0.5497067787296889 -0.5096714306261669 -0.6618591165966555 -0.5040208671260086 -0.4901460352175064 -0.7111398102076026 0.5040208671260086 0.4901460352175064 0.7111398102076026 0.5497067787296889 0.5096714306261669 0.6618591165966555 -0.4609719154458496 -0.4145896076660237 -0.7846147783374444 -0.4985571397014289 -0.4916144428633812 -0.7139720008661804 0.4985571397014289 0.4916144428633812 0.7139720008661804 0.4609719154458496 0.4145896076660237 0.7846147783374444 -0.4573491576022501 -0.4236797699590816 -0.7818741590357953 -0.4568505475577015 -0.2004861491589987 -0.8666561493416083 0.4568505475577015 0.2004861491589987 0.8666561493416083 0.4573491576022501 0.4236797699590816 0.7818741590357953 -0.4541268962482883 -0.1783764702348078 -0.8728978158813705 -0.4286900949630499 -0.03074629865061099 -0.9029282737847225 0.4286900949630499 0.03074629865061099 0.9029282737847225 0.4541268962482883 0.1783764702348078 0.8728978158813705 -0.3063976859348787 -0.7821413631807209 -0.5425636792631395 -0.3523735052985816 -0.7618774628075067 -0.5434847232715808 0.3523735052985816 0.7618774628075067 0.5434847232715808 0.3063976859348787 0.7821413631807209 0.5425636792631395 -0.5413340802838006 -0.6829922424325828 -0.4903865927002937 0.5413340802838006 0.6829922424325828 0.4903865927002937 -0.4272481797681519 -0.03139308917336886 -0.9035892135461523 0.4272481797681519 0.03139308917336886 0.9035892135461523</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1052\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID1055\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1055\">-2.935981608932602 10.85663512075862 -1.948631865258435 10.75586386611057 -2.610060487118674 7.619753708788435 -3.69679133168683 7.740997122795123 -3.090772258404805 10.83022540427713 -2.719262994468259 7.596384747860257 2.640320935711225 2.025948153228608 3.007344018484941 2.420750867493745 3.012389283490861 1.704548783954941 3.476915045794671 2.013146968314747 3.829487363207134 3.243997859007959 4.151239165752258 3.608874678226097 4.50713919916442 2.672402010274958 4.602543987106065 3.620146029906336 5.304258404919437 3.853486727345086 5.632646490923408 3.387754924869541 6.032602059962001 4.221058734951406 6.317450494552758 3.785131728647392 6.961259725370663 4.748945569060884 7.305900416866997 4.355477009968277 9.993834386692768 6.697166556715506 10.55396224199972 6.155992813056084 -2.958384683729662 6.646322239064626 -3.767581555079931 7.71218000849874 -2.788788460198426 7.572962376067476 -1.787116026856405 5.322273542286981 -2.284182369127702 4.351127936247142 -1.949330144772716 5.368941012682137 -2.004373405150739 4.27027736655339 -2.240688841859411 3.817870637244726 -2.178006254645743 4.308764307005029 -4.406878702077174 3.508993181485741 -4.309776294106773 3.981152767028634 -3.424324889167503 3.37281876876143 -4.33348685434635 3.981344992154811 -4.123486029284101 5.012918456920043 -3.353896149640327 3.834780310909004 -3.168915308745923 4.890452789232343 -4.15522701980411 5.000954905113102 -2.945912001956207 6.015132060051506 -3.932224531327764 6.125626458280218 -3.865167419372976 6.173403206929011 -3.722631041023821 6.8333627787756 -2.880014071898048 6.056684529967771 -3.786233442174673 6.814013616893653 -3.589002991997068 7.76577639285253 -2.803637068433257 6.688943611917154 4.58673566867724 10.24664292795459 4.750224669518837 10.16676035099951 2.352155135876836 7.732019785561647 1.615439914209591 8.079710179245698 1.771051416478688 8.010154330456691 1.077703269353097 7.292616194349058 0.3595836739408692 6.872236538923343 0.7506151581350007 7.485622764389828 0.8917779093368455 7.409005396259467 1.05683395826347 7.015137815428471 1.164565261957301 6.91447012137925 0.6025386688846102 6.509881421450357 4.209437347221686 5.555948874626798 4.253535901802713 5.428742796817378 3.803209898733897 5.402796817356368 -3.281343791480293 5.483076573831793 -3.398703655180526 5.048706996552484 -3.4228971200836 5.548400610587399 -1.772317777748014 5.337234730377968 -1.934455908459623 5.38406533167012 -1.700902869676162 5.834124829345437 -1.940368773200062 4.369112149830636 -2.113718735031875 4.408380312461595 -1.563862617851588 5.377877017135567 -2.396266153697702 3.797994575249178 -2.558103344791782 3.853272065013154 -2.342549230029242 4.289545610607819 -4.371090681150245 3.937463004736838 -3.390320269200981 3.795864862738408 -3.477653760136398 3.336397819512019 -4.162826579523441 4.993184227830971 -3.176364284525369 4.883517101095137 -3.384938017023071 3.81842371163158 -2.952987580260624 6.033504265500596 -3.804473587643869 6.804173406389755 -2.821558507236654 6.680662886123442 1.315460912566759 8.016050776524924 3.496248995700073 10.57238716409893 1.47307452581419 7.94934296837219 0.3940072705090324 7.436216706816778 1.02837778858371 8.169264935007575 0.538204523295595 7.363180085962341 -0.3470360049582089 6.989381151517559 0.1235323511647279 7.532459053158027 -0.2216517634023708 6.902275859416785 0.5338562939897318 6.602089407485308 1.107371202240202 7.009909940338497 0.6495041291754328 6.506652750037433 3.74214220390277 5.54151624829845 4.167566621199896 5.568730472320866 3.762660802913122 5.413427654679166</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 8 6 9 7 10 8 10 8 9 7 11 9 9 7 12 10 11 9 12 10 13 11 11 9 11 9 13 11 14 12 13 11 15 13 14 12 15 13 16 14 14 12 14 12 16 14 17 15 16 14 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 15 30 15 29 16 31 14 30 15 31 14 32 12 32 12 31 14 33 13 32 12 33 13 34 11 32 12 34 11 35 9 35 9 34 11 36 10 35 9 36 10 37 7 35 9 37 7 38 8 38 8 37 7 39 6 40 22 6 23 2 24 3 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 43 28 48 29 49 30 50 30 51 29 46 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 58 38 63 39 64 40 63 39 58 38 61 38 65 39 66 40 65 39 61 38 67 37 64 41 68 42 63 43 65 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 72 51 77 52 78 52 73 51 79 50 80 53 81 54 77 55 78 55 82 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 92 62 42 63 93 64 94 64 47 63 95 62 42 65 44 66 93 67 94 67 45 66 47 65 43 68 49 69 44 70 45 70 50 69 46 68 48 71 96 72 49 73 50 73 97 72 51 71 53 74 59 75 54 76 55 76 60 75 56 74 58 77 62 78 59 79 60 79 67 78 61 77 63 80 68 81 40 82 41 82 69 81 65 80 76 83 70 84 72 85 73 85 75 84 79 83 81 86 76 87 77 88 78 88 79 87 82 86 84 89 81 90 80 91 83 91 82 90 87 89 88 92 84 93 85 94 86 94 87 93 91 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1051\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1052\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1056\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1059\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1057\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1058\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1057\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1061\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1061\">-0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.5298591187803385 -0.1752551412025126 0.3267246785579244</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1058\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1062\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1062\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1060\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID1063\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"120\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1063\">3.505102824050252 5.140468275978011 4.203545845101182 5.898375335431982 4.414968261826749 4.748609150477415 5.133601729440363 4.148245525455751 5.672811493639108 7.679445612741619 5.827651849983826 4.90867469051484 6.34719681383455 8.494179944032666 6.660275453839438 11.62052286139061 6.973438948161821 9.252082277676829 7.512957717242513 6.567116406747775 7.849390818560094 8.493335205535086 8.283114275883213 7.327495655441081 8.999992836063413 8.033974680727708 9.136256855185536 7.350812800878698 10.17331027926723 8.380616962922931 10.56113355821253 7.823090735984151 11.56802765527242 9.104569669858437 11.95582315006028 8.547050531634294 13.3515820564935 10.10985633078179 13.76983724756887 9.60023445609569 19.2668110713613 14.01201653592069 19.80366406321081 13.52217335660197 6.106319436014469 9.138399969870267 6.226729965305786 10.35104512144388 7.021610669109959 10.23735513419643 7.358775169589009 13.30684774139464 7.455165168721541 11.50684232576267 8.105455617364823 13.15527448152571 10.18738032658465 19.04794340165245 10.94755861822705 18.80162710738278 5.093690163292324 9.523971700826227 4.052727808682412 6.577637240762856 5.473779309113525 9.400813553691391 3.679387584794505 6.65342387069732 3.72758258436077 5.753421162881336 3.51080533455498 5.118677567098216 3.330137726919719 5.810261430695305 3.48671947408091 4.626041138838414 3.113364982652893 5.175522560721941 3.173598406917275 4.247089972016333 3.053159718007235 4.569199984935134 9.633405535680648 7.006008267960344 6.884918623784433 4.800117228047845 9.901832031605407 6.761086678300985 6.675791028246748 5.054928165390897 5.977911575030141 4.273525265817147 5.784013827636212 4.552284834929218 5.280566779106266 3.911545367992075 5.086655139633613 4.190308481461465 4.568128427592768 3.675406400439349 4.499996418031707 4.016987340363854 4.141557137941606 3.66374782772054 3.924695409280047 4.246667602767543 3.756478858621256 3.283558203373887 2.913825924991913 2.45433734525742 2.836405746819554 3.839722806370809 2.566800864720181 2.074122762727876 2.101772922550591 2.949187667715991 2.207484130913374 2.374304575238707 1.752551412025126 2.570234137989006</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 7 7 8 8 6 6 6 6 8 8 5 5 5 5 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 18 18 17 17 17 17 18 18 19 19 18 18 20 20 19 19 21 21 19 19 20 20 22 22 23 23 6 6 7 7 6 6 23 23 8 8 7 7 24 24 7 7 25 25 24 24 24 24 25 25 26 26 26 26 25 25 27 27 25 25 28 28 27 27 29 29 27 27 28 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1059\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1060\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">30 30 31 31 32 32 31 31 30 30 33 33 31 31 33 33 34 34 34 34 33 33 35 35 35 35 33 33 36 36 35 35 36 36 37 37 38 38 39 39 36 36 39 39 38 38 40 40 41 41 42 42 43 43 42 42 41 41 44 44 42 42 44 44 45 45 45 45 44 44 46 46 45 45 46 46 47 47 47 47 46 46 48 48 47 47 48 48 49 49 49 49 48 48 50 50 49 49 50 50 51 51 51 51 50 50 52 52 51 51 52 52 53 53 53 53 52 52 37 37 53 53 37 37 54 54 54 54 37 37 39 39 39 39 37 37 36 36 54 54 39 39 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1059\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1060\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1064\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1067\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1065\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1066\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1065\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1069\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1069\">-0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1066\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1070\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1070\">-0.1164175568789908 0.02947304770899976 0.9927629585702068 -0.1152536654891546 0.0291861515433436 0.9929072268592888 -0.1088387569614722 0.01315362923910896 0.9939723874539582 0.1088387569614722 -0.01315362923910896 -0.9939723874539582 0.1152536654891546 -0.0291861515433436 -0.9929072268592888 0.1164175568789908 -0.02947304770899976 -0.9927629585702068 -0.1108275343076859 0.0157188274115992 0.9937153395737044 0.1108275343076859 -0.0157188274115992 -0.9937153395737044 -0.1169992818606147 0.001779387199382528 0.9931304052466096 0.1169992818606147 -0.001779387199382528 -0.9931304052466096 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211613462438688 0.005798762209368286 0.9926158887168858 0.1211613462438688 -0.005798762209368286 -0.9926158887168858 -0.1269009350449967 -0.04024779597736024 0.9910985155894797 -0.1321721693293524 -0.05182041772276032 0.9898712855527286 -0.1289723073749611 -0.05683794718569368 0.990017975437868 0.1289723073749611 0.05683794718569368 -0.990017975437868 0.1321721693293524 0.05182041772276032 -0.9898712855527286 0.1269009350449967 0.04024779597736024 -0.9910985155894797 -0.1366133769342704 -0.05910629755485246 0.9888595607223364 -0.1318875386354734 -0.06677197077271543 0.9890132360447983 0.1318875386354734 0.06677197077271543 -0.9890132360447983 0.1366133769342704 0.05910629755485246 -0.9888595607223364 -0.5582945311177081 -0.2283387439749839 0.7976018019814056 -0.5451251899441658 -0.2516490044651679 0.7996945078215975 -0.558028898390844 -0.2252503846026686 0.7986651443484001 0.558028898390844 0.2252503846026686 -0.7986651443484001 0.5451251899441658 0.2516490044651679 -0.7996945078215975 0.5582945311177081 0.2283387439749839 -0.7976018019814056 -0.4971178181320478 -0.2277136551304314 0.8372695898948984 -0.5144576180718076 -0.2200898906441139 0.8287905641621072 0.5144576180718076 0.2200898906441139 -0.8287905641621072 0.4971178181320478 0.2277136551304314 -0.8372695898948984 -0.306373651989246 -0.301890195052002 0.9027721171470885 -0.3523674383661242 -0.2850989537794993 0.8913785811500805 0.3523674383661242 0.2850989537794993 -0.8913785811500805 0.306373651989246 0.301890195052002 -0.9027721171470885 -0.4541867966104732 0.3794965782313983 0.8060376547627145 -0.4287165572106656 0.5157236689642438 0.7417757146493089 -0.4569170898122744 0.3580322882283826 0.8142724689091671 0.4569170898122744 -0.3580322882283826 -0.8142724689091671 0.4287165572106656 -0.5157236689642438 -0.7417757146493089 0.4541867966104732 -0.3794965782313983 -0.8060376547627145 -0.4574434326879626 0.128523092512843 0.8799018812240311 -0.4610519398068395 0.1374069943415377 0.8766700785964896 0.4610519398068395 -0.1374069943415377 -0.8766700785964896 0.4574434326879626 -0.128523092512843 -0.8799018812240311 -0.5040157149677988 0.03292087746401979 0.8630668426561742 -0.4985584274964397 0.03343317632154487 0.8662111273201989 0.4985584274964397 -0.03343317632154487 -0.8662111273201989 0.5040157149677988 -0.03292087746401979 -0.8630668426561742 -0.5497125255609511 -0.01221039753376431 0.8352646559225813 -0.5535759670464742 -0.01565705409007048 0.8326514909407067 0.5535759670464742 0.01565705409007048 -0.8326514909407067 0.5497125255609511 0.01221039753376431 -0.8352646559225813 -0.6328213274262273 -0.03345237151289191 0.7735748873862641 -0.6307597955618702 -0.0336555489308815 0.7752479502255447 0.6307597955618702 0.0336555489308815 -0.7752479502255447 0.6328213274262273 0.03345237151289191 -0.7735748873862641 -0.1257023489127471 -0.01606129966648226 0.9919379789739081 -0.1240902978453498 -0.0175498111580307 0.9921157201198707 0.1240902978453498 0.0175498111580307 -0.9921157201198707 0.1257023489127471 0.01606129966648226 -0.9919379789739081 -0.1260595472930294 -0.0408216577978071 0.9911824165061218 0.1260595472930294 0.0408216577978071 -0.9911824165061218 -0.5412148349373932 -0.2537132226334566 0.8016957671739552 0.5412148349373932 0.2537132226334566 -0.8016957671739552 -0.4272661229037248 0.5156003108204946 0.7426977714391153 0.4272661229037248 -0.5156003108204946 -0.7426977714391153</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1068\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID1071\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"196\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1071\">13.80728166277617 -0.6130167098138849 14.0190207913705 -1.378322775502937 9.891501356083198 -1.398559899101458 14.01980057287232 -1.374692521388983 10.16976395576887 -2.147763991652776 9.892292853868527 -1.396358040448894 9.13990034236501 -4.10109427719969 7.922917617543023 -3.31064759363729 9.112972347923334 -3.318913266075672 3.675384037947553 -0.4246823111445474 3.728999951832195 0.007992341182690677 4.269814814293227 -0.5681835556315917 4.335914825773608 -0.02054527340170165 5.554770877852206 -0.8406449125250893 5.66281971002354 -0.06367290266154251 6.090137041837841 -0.981480541855419 6.460281336741163 -0.7780344309739375 7.108731272710429 -0.10688175677692 7.199978199095067 -0.6346024122160491 7.959654123141069 -0.1028398972043406 8.06307501585481 -0.5861914753075564 9.185461095484014 -0.09440081931622046 9.208683394319904 -0.571882978597314 13.12035929778858 -0.7049523672064595 13.15740834483686 -0.007683132925823285 9.534613588802479 -3.503157893577027 8.312030923974277 -3.573561015301703 8.240503349031185 -2.792558387712522 3.858647062123191 -5.16058960318777 2.592754049921546 -4.844748037579367 2.866400881466295 -4.09043929177291 1.934313392358909 -5.019461920039144 1.377297237169688 -4.827743230540988 1.764387869163704 -4.104380020650059 1.773090404879941 -4.458637017925284 1.33150791732068 -4.108270374199182 1.877196734483731 -4.342754535484429 3.033601055682589 -4.996987230377251 2.948315257028529 -5.11514745525924 1.855718646494166 -4.509721762035793 0.7230910765086479 -6.063201128471859 0.643265683683088 -6.176002351858831 0.3417500518942679 -5.735767157626841 8.221633022424319 0.3354410191769293 7.860758236876446 0.1233516168670555 8.098827313590068 0.4251827631843959 8.777424033680292 -1.570199514101096 8.020550205059355 -1.738846683847045 8.692700701586954 -1.456731561340594 8.631777309452774 -3.099303113019177 8.646044617348052 -3.233748210890571 7.775142777459928 -3.195329571672053 9.311692834307262 -3.69237575750201 8.185074552308338 -3.578387594753834 9.330348977001862 -3.552345717479117 12.83018579927031 -3.998070213710835 12.79728635458154 -4.147255281525537 8.92396389964752 -3.788083846687805 8.196485417401426 -3.731313273001689 7.346533038834244 -3.763528691237196 7.317289624280975 -2.980140061228889 5.636561508752498 -4.702312727263123 5.336390733417921 -5.449619584766261 4.251179605034944 -4.373769397749731 3.951018182975293 -5.121079041999575 7.9264042430006 -3.301158048278965 7.918442027052564 -4.084159963801527 7.093366192879808 -3.295908493898871 3.990976447294812 -4.518942246687931 3.648222878151388 -5.254826617090851 2.698973295573131 -4.160805864112061 1.781220271575089 -4.440238296359105 1.327014570610913 -5.138559858782626 1.264659737377111 -4.215067749817517 3.314877001865865 -4.899940379907601 2.092057563700482 -4.450888635141769 2.190316269496892 -4.331888373982719 1.572352064691836 -4.537480266369492 1.05871830345268 -4.301210512261891 1.141746521037105 -4.178758122598253 3.563681401541414 -5.3253843708294 3.013530619634568 -5.103953439875546 3.097661168592327 -4.985281801077196 8.21113041698956 0.3759870027255349 7.987420609990448 0.09004473225368445 7.851589781199859 0.1624999726829313 8.772747345371998 -1.584925376850224 8.090091306673514 -1.870291468803673 8.015398979144715 -1.752248997002818 8.614935622004783 -3.33792690271419 7.786369406217942 -3.422538761892946 7.744361237538513 -3.295161361764044 9.238931812302894 -3.867268169121407 8.111754056698198 -3.877517115416049 8.114139814095902 -3.742617406280015 12.67194791268335 -4.5269585570712 8.773640424439241 -4.255971035984555 8.806680473794703 -4.11759385727599</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 6 6 8 7 2 8 3 8 9 7 7 6 10 9 11 10 12 11 11 10 13 12 12 11 12 11 13 12 14 13 13 12 15 14 14 13 14 13 15 14 16 15 16 15 15 14 17 16 15 14 18 17 17 16 17 16 18 17 19 18 18 17 20 19 19 18 19 18 20 19 21 20 20 19 22 21 21 20 21 20 22 21 23 22 23 22 22 21 24 23 25 24 24 23 22 21 26 21 27 23 28 24 27 23 26 21 29 22 29 22 26 21 30 20 30 20 26 21 31 19 30 20 31 19 32 18 32 18 31 19 33 17 32 18 33 17 34 16 34 16 33 17 35 14 34 16 35 14 36 15 36 15 35 14 37 13 37 13 35 14 38 12 37 13 38 12 39 11 39 11 38 12 40 10 39 11 40 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 56 39 57 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 70 47 75 48 76 48 71 47 77 46 78 49 79 50 75 51 76 51 80 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 87 56 83 57 84 57 88 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 90 62 94 63 44 64 94 63 90 62 93 62 95 63 49 64 95 63 93 62 92 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 61 74 54 75 56 76 57 76 59 75 62 74 54 77 96 78 55 79 58 79 97 78 59 77 65 80 61 81 60 82 63 82 62 81 66 80 68 83 98 84 69 85 72 85 99 84 73 83 74 86 68 87 70 88 71 88 73 87 77 86 79 89 74 90 75 91 76 91 77 90 80 89 82 92 79 93 78 94 81 94 80 93 85 92 87 95 82 96 83 97 84 97 85 96 88 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1067\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1068\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1072\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1075\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1073\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1074\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1073\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1077\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1077\">-0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803385 -0.3295252840429122 -0.163752049627818</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1074\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1078\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1078\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1076\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"30\" source=\"#ID1079\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"60\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1079\">9.186441801135759 -0.6488213400628682 13.06654213649594 -1.122084458825146 13.09524992904242 -0.79949167490136 9.21274739048158 -0.9514208473190707 8.115944512114693 -0.9685740599925033 8.059207761561993 -0.6539708482222155 7.281870875630058 -1.006895651470734 7.225110846459248 -0.6922914059295819 6.679996197963138 -1.144255152347283 6.474741113180418 -0.8385239100247427 6.348834577254241 -1.615424885060101 6.124135088072079 -1.029998510971301 6.237853014667429 -2.141924398637036 8.159474776988487 -3.454130399997072 11.21097795849668 -5.348585849823603 11.42530494601942 -5.07263695607616 7.915026008602089 -3.68870217088264 7.278421134616336 -2.939943688429858 7.000331008498487 -3.170403709446711 6.627065876926979 -2.5283351085099 6.348994523888187 -2.758800446062714 5.845294038790562 -2.297413730313628 5.526358198109146 -0.9067158682851475 5.700755221866416 -1.981511659262586 5.122854141660617 -1.809345535610677 4.220446497283755 -0.6391021215311316 3.861528503676829 -1.431814179263339 3.653175485382575 -0.4978760590883997 3.553954881384697 -0.9130679473510686 3.295252840429122 -1.288182790405501</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 1 3 2 3 4 2 2 4 5 4 6 5 5 6 7 7 6 8 6 9 8 9 10 8 8 10 11 10 12 11 11 12 13 12 14 13 13 14 15 14 16 15 15 16 17 18 17 16 10 9 19 9 20 19 19 20 21 20 22 21 21 22 23 22 24 23 23 24 25 24 26 25 25 26 27 27 26 28 29 28 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1075\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">30 0 31 1 32 2 31 1 30 0 33 3 33 3 30 0 34 4 34 4 30 0 35 5 34 4 35 5 36 6 36 6 35 5 37 7 36 6 37 7 38 8 38 8 37 7 39 9 38 8 39 9 40 10 40 10 39 9 41 11 40 10 41 11 42 12 43 13 44 14 45 15 44 14 43 13 46 16 46 16 43 13 47 17 46 16 47 17 48 18 48 18 47 17 49 19 48 18 49 19 50 20 50 20 49 19 42 12 50 20 42 12 51 21 51 21 42 12 41 11 51 21 41 11 52 22 51 21 52 22 53 23 53 23 52 22 54 24 54 24 52 22 55 25 54 24 55 25 56 26 56 26 55 25 57 27 56 26 57 27 58 28 56 26 58 28 59 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1075\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1076\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1080\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1083\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1081\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1082\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1081\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1085\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1085\">-0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.5014927709964905 -1.221254125201766</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1082\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1086\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1086\">-0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1084\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID1087\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"116\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1087\">-10.02986884390828 -19.21441079518665 -8.078369726216202 -14.94382291552136 -8.616810169633229 -19.58292117139953 -7.710539025580329 -12.82943654886498 -6.957166350571083 -4.013129460871145 -6.563991993162109 -5.617669476879784 -6.191243496727681 -6.283137334198752 -5.841838948681586 -13.61146945795768 -5.12072743462904 -6.367588736361021 -5.093403218011745 -11.83399197753575 -4.569559219049879 -10.58978432392038 -4.532998647519656 -5.776067396796974 -3.761988289242532 -8.403663709214172 -20.67270284231222 -12.96009691898834 -21.52269079340287 -11.99864627882594 -16.05001083580809 -10.25921156711687 -15.03078282578663 -8.21146679775252 -13.57695803480326 -9.381946502322247 -13.07634609667806 -7.142739684942715 -11.82235097061978 -9.37266146756806 -11.70834131037578 -6.394627456981616 -9.781350822898569 -10.19751021323684 -9.272628914606271 -5.165311420703098 -8.196902947598092 -11.50317111573932 -5.946686595406146 -5.057682875228573 -5.942143510265987 -3.537919751528921 -5.054129935863941 -5.15141281351586 -3.014275322117851 -6.330159141483323 -2.722917134621747 -5.429709253919597 -2.971071755132994 -1.768959875764461 -1.507137661058926 -3.165079570741662 -1.361458567310874 -2.714854626959799 -2.266499323759828 -2.888033698398487 -1.880994144621266 -4.201831854607086 -2.52706496793197 -2.57570640675793 -2.973343297703073 -2.528841437614287 -3.478583175285542 -2.006564730435573 -3.281995996581054 -2.808834738439892 -4.636314457303135 -2.582655710351549 -3.855269512790164 -6.414718274432491 -4.098451473799046 -5.751585557869662 -4.890675411449284 -5.098755106618421 -5.854170655187891 -3.197313728490808 -5.911175485309891 -4.68633073378403 -6.53817304833903 -3.571369842471357 -6.788479017401629 -4.690973251161124 -7.515391412893316 -4.10573339887626 -8.025005417904044 -5.129605783558433 -10.76134539670144 -5.999323139412972 -10.33635142115611 -6.480048459494169 -2.284779609524939 -5.294892161960191 -2.56036371731452 -3.18379436818051 -2.546701609005873 -5.916995988767874 -2.920919474340793 -6.805734728978842 -3.095621748363841 -3.141568667099376 -4.308405084816615 -9.791460585699765 -4.039184863108101 -7.471911457760681 -5.014934421954141 -9.607205397593324</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 4 4 5 5 3 3 3 3 5 5 2 2 5 5 6 6 2 2 2 2 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 9 9 8 8 10 10 8 8 11 11 10 10 12 12 10 10 11 11 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 18 18 17 17 17 17 18 18 19 19 18 18 20 20 19 19 19 19 20 20 21 21 20 20 22 22 21 21 21 21 22 22 23 23 23 23 22 22 3 3 4 4 3 3 22 22 5 5 4 4 24 24 4 4 25 25 24 24 24 24 25 25 26 26 26 26 25 25 11 11 12 12 11 11 27 27 11 11 25 25 27 27 28 28 27 27 25 25</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1083\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1084\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">29 29 30 30 31 31 30 30 29 29 32 32 30 30 32 32 33 33 32 32 29 29 34 34 34 34 29 29 35 35 35 35 29 29 36 36 35 35 36 36 37 37 38 38 39 39 36 36 39 39 38 38 40 40 40 40 38 38 41 41 41 41 38 38 42 42 41 41 42 42 43 43 43 43 42 42 44 44 43 43 44 44 45 45 45 45 44 44 46 46 45 45 46 46 47 47 47 47 46 46 48 48 47 47 48 48 49 49 32 32 50 50 33 33 50 50 32 32 51 51 50 50 51 51 52 52 52 52 51 51 53 53 53 53 51 51 54 54 53 53 54 54 55 55 55 55 54 54 37 37 55 55 37 37 39 39 39 39 37 37 36 36 55 55 39 39 56 56 55 55 56 56 57 57</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1083\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1084\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1088\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1091\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1089\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1090\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1089\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1093\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1093\">-0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1090\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1094\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1094\">-0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1092\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID1095\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"116\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1095\">3.55839236819476 -8.488419045241628 4.245346264840824 -5.927683489544283 4.338197914026393 -10.68076768650679 4.812696874597001 -6.53714695665132 4.846150501537627 -11.92903008491025 5.571861419967594 -13.71230731538016 5.676042622384449 -6.509790425305303 6.099572673222684 -5.983272599215604 6.809176289792611 -4.123239947803949 7.424943045986368 -12.95197178042472 7.765917730597559 -15.06914637484883 8.270848227836648 -19.70532053592662 9.688516068491094 -19.34793117157087 2.837121282969626 -6.409136584333087 2.557177127561046 -5.506438392768292 4.71279593362039 -5.407517741830074 5.548610961513447 -5.312678419743834 5.800264086731488 -3.640068430440598 7.928136657948257 -11.62962404360425 9.109835905503532 -5.293563109915906 9.529151400085357 -10.33648417410537 11.52980744991694 -6.541998000371912 11.5805232985438 -9.527731536536132 12.88835961543644 -7.300830137085 13.33494263193682 -9.550817708016966 14.82902591557052 -8.384892502619829 15.79670305040769 -10.44749344574282 20.41029086447709 -13.17764101175096 21.27248131697755 -12.2229423723072 7.414512957785258 -4.192446251309915 10.20514543223855 -6.588820505875478 10.63624065848878 -6.111471186153602 7.898351525203847 -5.223746722871408 6.667471315968408 -4.775408854008483 6.444179807718218 -3.6504150685425 5.790261649271899 -4.763865768268066 5.764903724958471 -3.270999000185956 4.764575700042679 -5.168242087052686 4.554917952751766 -2.646781554957953 3.964068328974129 -5.814812021802124 3.404588144896306 -2.061619973901975 3.712471522993184 -6.475985890212362 2.900132043365744 -1.820034215220299 3.049786336611342 -2.991636299607802 2.774305480756723 -2.656339209871917 1.278588563780523 -2.753219196384146 2.356397966810195 -2.703758870915037 2.122673132420412 -2.963841744772142 1.77919618409738 -4.244209522620814 1.418560641484813 -3.204568292166544 3.88295886529878 -7.534573187424415 4.135424113918324 -9.85266026796331 4.844258034245547 -9.673965585785433 2.785930709983797 -6.856153657690079 2.838021311192224 -3.254895212652651 2.406348437298501 -3.26857347832566 2.423075250768814 -5.964515042455125 2.169098957013197 -5.340383843253396</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 4 4 3 3 5 5 3 3 6 6 5 5 6 6 7 7 5 5 7 7 8 8 5 5 8 8 9 9 5 5 9 9 10 10 5 5 5 5 10 10 11 11 12 12 11 11 10 10 13 13 14 14 0 0 0 0 14 14 1 1 1 1 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 7 7 8 8 7 7 17 17 9 9 8 8 18 18 8 8 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 22 22 23 23 24 24 23 23 25 25 24 24 24 24 25 25 26 26 26 26 25 25 27 27 28 28 27 27 25 25</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1091\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1092\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 33 33 29 29 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 39 39 38 38 40 40 39 39 40 40 41 41 42 42 43 43 40 40 43 43 42 42 44 44 44 44 42 42 45 45 44 44 45 45 46 46 46 46 45 45 47 47 47 47 45 45 48 48 48 48 45 45 49 49 50 50 51 51 52 52 51 51 50 50 53 53 53 53 50 50 41 41 53 53 41 41 40 40 53 53 40 40 43 43 53 53 43 43 54 54 53 53 54 54 55 55 53 53 55 55 56 56 56 56 55 55 57 57 57 57 55 55 47 47 57 57 47 47 48 48</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1091\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1092\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1096\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1099\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1097\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1098\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1097\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1101\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1101\">-0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4161909408446167 -0.00511566405237196 0.3989672790630737</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1098\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1102\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1102\">-0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1100\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID1103\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"116\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1103\">-0.6603042760459281 6.628102364821207 0.1023145158150442 6.277101703712805 -1.949292046070537 5.631935926043967 0.8227126529265449 6.595773100139321 2.068972894939293 5.631935926042748 -7.994833638526947 19.7454669910059 -6.582432022018011 20.11553924734553 -5.675109960996605 13.65502883901048 -4.922422127911656 11.87869973036458 -4.914377863521055 15.78554439443209 -4.395536890136512 10.63526002083815 -3.600572082937799 13.91843838724053 -3.379425211242822 8.503668162239411 -2.400906623229417 6.490504505914989 -2.201940144480685 13.08490005885077 -0.6525134482231259 7.207434068793488 0.04362987063896788 7.548865554982541 0.06075091877033985 12.78483712999241 0.8120119978442776 7.222580289126928 2.323357503165463 13.08490005884943 2.520531152860973 6.490504505913559 3.499059127413852 8.503668162237371 3.72203637432034 13.91843838723838 4.515123873609423 10.63526002083553 5.035936020298975 15.78554439442911 5.041999724845416 11.87869973036162 5.794715717549207 13.65502883900708 6.702103108885646 20.11553924734162 8.114458168158471 19.74546699100114 3.351051554442823 10.05776962367081 2.897357858774603 6.827514419503538 4.057229084079236 9.872733495500569 2.517968010149487 7.892772197214557 2.520999862422708 5.939349865180811 2.257561936804712 5.317630010417767 1.86101818716017 6.959219193619191 1.749529563706926 4.251834081118686 1.161678751582732 6.542450029424717 1.260265576430486 3.245252252956779 1.034486447469647 2.815967963021374 0.03037545938516992 6.392418564996206 0.4060059989221388 3.611290144563464 0.4113563264632725 3.297886550069661 0.02181493531948394 3.774432777491271 -1.100970072240343 6.542450029425386 -0.3262567241115629 3.603717034396744 -0.3301521380229641 3.314051182410604 -0.9746460230352685 2.815967963021984 -1.200453311614709 3.245252252957494 -1.8002860414689 6.959219193620267 -1.689712605621411 4.251834081119705 -2.197768445068256 5.317630010419073 -2.457188931760527 7.892772197216043 -2.461211063955828 5.939349865182291 -3.291216011009006 10.05776962367277 -2.837554980498303 6.82751441950524 -3.997416819263473 9.872733495502947 0.05115725790752209 3.138550851856402</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 3 4 4 1 1 2 2 1 1 4 4 5 5 6 6 7 7 7 7 6 6 8 8 6 6 9 9 8 8 8 8 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 12 12 11 11 13 13 11 11 14 14 13 13 13 13 14 14 2 2 2 2 14 14 0 0 0 0 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 18 18 3 3 18 18 4 4 18 18 17 17 4 4 17 17 19 19 4 4 4 4 19 19 20 20 20 20 19 19 21 21 19 19 22 22 21 21 21 21 22 22 23 23 22 22 24 24 23 23 23 23 24 24 25 25 25 25 24 24 26 26 24 24 27 27 26 26 28 28 26 26 27 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1099\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1100\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">29 29 30 30 31 31 30 30 29 29 32 32 30 30 32 32 33 33 33 33 32 32 34 34 34 34 32 32 35 35 34 34 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 39 39 37 37 40 40 39 39 40 40 41 41 39 39 41 41 42 42 41 41 40 40 43 43 43 43 40 40 44 44 43 43 44 44 45 45 45 45 44 44 46 46 46 46 44 44 47 47 47 47 44 44 48 48 48 48 44 44 49 49 48 48 49 49 50 50 50 50 49 49 51 51 51 51 49 49 52 52 51 51 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 55 55 54 54 56 56 39 39 57 57 47 47 57 57 39 39 42 42 47 47 57 57 46 46</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1099\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1100\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1104\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1107\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1105\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1106\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1105\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1109\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1109\">-0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086244 1.316109687941657 0.1039835031210425</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1106\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1110\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1110\">-0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1108\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID1111\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"116\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1111\">-26.32221346343603 1.636013390160535 -20.57025466836452 1.480585937066035 -26.33609653088566 0.4649613457242628 -18.26023629726925 0.2127637073613848 -17.89873287521094 1.85170038214918 -16.44238348055336 2.621577179361666 -15.88012976177167 0.1958135568310805 -15.34672951463004 4.207573708536487 -14.97250845787214 5.988482126861165 -14.53491699533404 8.746494248780024 -14.21409408474354 0.1839639580231964 -12.6437260187638 7.60952939642481 -11.32126622418493 0.2476387067093099 -11.31992357356801 6.813667586479245 -9.093473939508872 2.602729468533396 -8.931546370346142 1.906224412462378 -8.583146557493567 0.3217766936036152 -8.054646834917762 1.646710999030179 -7.410646117683638 2.119594723555238 -7.40422572564607 0.3789239175328026 -22.00748405742919 11.51994145614131 -21.10379608906077 12.45059281253822 -17.33840302157449 8.883806786916869 -15.52040002022607 7.299823452712065 -9.087203731092407 5.365323263029861 -8.3423442719905 2.953155647545233 -7.616745992036167 2.801032421564928 -6.984665430113307 3.983443023641084 -6.09915843792158 3.36857647914322 -3.492332715056654 1.991721511820542 -3.702112862823035 0.1894619587664013 -3.04957921896079 1.68428823957161 -3.705323058841819 1.059797361777619 -3.808372996018083 1.400516210782464 -4.543601865546203 2.682661631514931 -4.17117213599525 1.476577823772616 -4.546736969754436 1.301364734266698 -5.659961786784004 3.406833793239623 -7.267458497667017 4.373247124390012 -7.760200010113037 3.649911726356033 -7.486254228936068 2.994241063430582 -10.55189804453039 6.225296406269112 -8.669201510787243 4.441903393458435 -11.00374202871459 5.759970728070657 -4.291573278746784 0.1608883468018076 -4.027323417458881 0.8233554995150897 -4.465773185173071 0.953112206231189 -5.660633112092466 0.123819353354655 -6.321863009381899 3.804764698212405 -7.107047042371768 0.09198197901159821 -7.940064880885833 0.09790677841554024 -7.673364757315019 2.103786854268244 -8.22119174027668 1.310788589680833 -9.130118148634626 0.1063818536806924 -8.949366437605471 0.9258501910745902 -10.28512733418226 0.7402929685330173 -13.16804826544283 0.2324806728621314 -13.16110673171801 0.8180066950802676</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 3 3 5 5 6 6 5 5 7 7 6 6 7 7 8 8 6 6 8 8 9 9 6 6 6 6 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 11 11 13 13 12 12 13 13 14 14 12 12 14 14 15 15 12 12 12 12 15 15 16 16 15 15 17 17 16 16 17 17 18 18 16 16 19 19 16 16 18 18 20 20 21 21 22 22 22 22 21 21 23 23 21 21 9 9 23 23 8 8 23 23 9 9 13 13 24 24 14 14 14 14 24 24 25 25 25 25 24 24 26 26 24 24 27 27 26 26 26 26 27 27 18 18 18 18 27 27 19 19 28 28 19 19 27 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1107\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1108\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 33 33 29 29 34 34 33 33 34 34 35 35 35 35 34 34 36 36 36 36 34 34 37 37 38 38 39 39 40 40 39 39 38 38 41 41 39 39 41 41 42 42 42 42 41 41 43 43 32 32 44 44 30 30 44 44 32 32 45 45 44 44 45 45 46 46 44 44 46 46 47 47 47 47 46 46 36 36 47 47 36 36 37 37 47 47 37 37 48 48 47 47 48 48 49 49 49 49 48 48 38 38 49 49 38 38 50 50 50 50 38 38 40 40 50 50 40 40 51 51 50 50 51 51 52 52 50 50 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 53 53 55 55 56 56 56 56 55 55 57 57</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1107\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1108\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1112\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1115\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1113\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1114\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1113\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1117\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1117\">-0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086244 -0.7820770884023743 0.4497980564798922</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1114\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1118\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1118\">-0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1116\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID1119\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"116\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1119\">15.07707401407439 5.769850515057511 14.68308415411048 8.542387413325084 15.64156248019065 7.076826964854104 17.47963465401062 8.646417845385683 21.29872623692821 12.19463380149279 22.19043848268239 11.25691735948019 7.606327939590292 1.892705793038809 8.27845148027766 1.398775674567985 7.446428614955478 0.2313362901843486 8.624532442400788 0.1649128185498039 9.207521402500165 1.59536744141203 9.425026296851021 2.312795134179659 11.36156327050402 0.06924101484297966 6.179339266233333 3.231097654269962 7.072628075169551 3.838965865215587 7.924071315350075 2.605400439849607 8.738063013666524 2.754604887566969 9.192662885861024 5.204233701788687 11.44368572952684 6.634956071308992 12.77760761527535 7.420370888018093 14.25340591987107 -0.01718592348860902 15.42855411374404 3.986084458633338 15.91953471137129 -0.01844121671260754 16.50403527979898 2.391555627588657 17.95056710501454 1.610244438259214 18.29973586318679 -0.02022262547900209 20.61719888652537 1.218148136177216 26.37837451250605 0.1684497917821321 26.37941679385733 1.339544146984344 10.30859944326268 0.609074068088608 13.18918725625302 0.08422489589106605 13.18970839692866 0.6697720734921721 9.149867931593397 -0.01011131273950105 8.975283552507268 0.8051222191296068 7.959767355685644 -0.009220608356303768 8.252017639899492 1.195777813794329 7.714277056872022 1.993042229316669 7.126702959935534 -0.00859296174430451 7.538537007037196 2.884925257528756 7.34154207705524 4.271193706662542 6.388803807637676 3.710185444009047 5.680781635252012 0.03462050742148983 5.721842864763418 3.317478035654496 4.596331442930512 2.602116850894344 4.712513148425511 1.156397567089829 4.369031506833262 1.377302443783485 3.536314037584776 1.919482932607794 3.962035657675037 1.302700219924803 3.803163969795146 0.9463528965194042 3.723214307477739 0.1156681450921743 3.089669633116666 1.615548827134981 4.603760701250082 0.797683720706015 4.312266221200394 0.08245640927490194 4.13922574013883 0.6993878372839926 10.64936311846411 6.097316900746395 8.739817327005309 4.323208922692841 11.09521924134119 5.628458679740094 7.820781240095327 3.538413482427052</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 6 7 7 8 8 8 8 7 7 9 9 7 7 10 10 9 9 11 11 12 12 10 10 9 9 10 10 12 12 13 13 14 14 8 8 8 8 14 14 6 6 6 6 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 11 11 11 11 17 17 12 12 17 17 18 18 12 12 18 18 19 19 12 12 12 12 19 19 20 20 19 19 1 1 20 20 1 1 0 0 20 20 0 0 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 23 23 24 24 22 22 22 22 24 24 25 25 24 24 26 26 25 25 25 25 26 26 27 27 28 28 27 27 26 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1115\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1116\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"29\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 32 32 33 33 34 34 34 34 33 33 35 35 34 34 35 35 36 36 34 34 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 37 37 40 40 41 41 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 44 44 43 43 45 45 45 45 43 43 46 46 45 45 46 46 47 47 47 47 46 46 48 48 48 48 46 46 49 49 49 49 46 46 50 50 41 41 51 51 52 52 51 51 41 41 44 44 52 52 51 51 53 53 52 52 53 53 49 49 49 49 53 53 48 48 54 54 55 55 56 56 55 55 54 54 39 39 55 55 39 39 57 57 57 57 39 39 38 38</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1115\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1116\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1120\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1123\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1121\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1122\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1121\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1125\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1125\">-0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.529859118780335 1.153719775386548 -0.6297892700755456</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1122\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1126\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1126\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1124\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID1127\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"120\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1127\">-23.07439550773097 -9.908684515855253 -16.5018368904839 -6.72319749841732 -22.65270559410508 -10.46391163633777 -16.01893622609624 -7.196171309012338 -14.72672962393063 -5.708741585074908 -14.17645312960758 -6.174030638247034 -13.4136083098111 -4.895822555464352 -12.86330478225409 -5.361104519921764 -12.62543034616549 -4.129144983791254 -11.84430204918045 -4.446292896444675 -12.23498784722559 -1.874505443854724 -11.54718953748084 -3.816798493870874 -11.03641160156596 -1.637361946361363 -10.38703202271997 -3.481579675358059 -8.417877199601666 -1.122717643494433 -7.854985196129549 -2.746417347632534 -7.2798246100092 -0.8491966345196895 -7.159292431165309 -1.69744618722385 -6.718791141366869 -2.468068923971035 -26.12148100826749 -1.949461217357851 -26.17068750133516 -1.303845305457521 -18.40995067147561 -1.668797885313605 -18.34966205435873 -1.064030839351062 -16.21682400372031 -1.72034805212735 -16.09538020415581 -1.092060798588364 -14.54974604533614 -1.810114365788693 -14.42832176977398 -1.181805033857142 -13.34961163411208 -2.09427775069872 -12.93127233964243 -1.486071496671276 -12.76666998217039 -3.058117583065982 -6.465636169821214 -0.7430357483356379 -6.312715173082745 -2.064572491895627 -6.117493923612793 -0.937252721927362 -6.383334991085194 -1.529058791532991 -6.674805817056042 -1.04713887534936 -7.214160884886991 -0.5909025169285711 -7.274873022668071 -0.9050571828943463 -8.047690102077906 -0.5460303992941817 -8.108412001860152 -0.860174026063675 -9.174831027179364 -0.5320154196755311 -9.204975335737807 -0.8343989426568027 -13.08534375066758 -0.6519226527287603 -13.06074050413374 -0.9747306086789257 -3.579646215582655 -0.8487230936119248 -3.927492598064775 -1.373208673816267 -3.359395570683434 -1.234034461985518 -3.6399123050046 -0.4245983172598448 -4.208938599800833 -0.5613588217472164 -5.193516011359987 -1.74078983767903 -5.518205800782978 -0.8186809731806815 -5.77359476874042 -1.908399246935437 -5.922151024590223 -2.223146448222337 -6.431652391127047 -2.680552259960882 -6.70680415490555 -2.447911277732176 -7.088226564803792 -3.087015319123517 -7.363364811965314 -2.854370792537454 -8.009468113048119 -3.598085654506169 -8.250918445241952 -3.36159874920866 -11.32635279705254 -5.231955818168884 -11.53719775386548 -4.954342257927626</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 16 16 17 17 15 15 18 18 15 15 17 17 19 19 20 20 21 21 20 20 22 22 21 21 21 21 22 22 23 23 22 22 24 24 23 23 23 23 24 24 25 25 24 24 26 26 25 25 25 25 26 26 27 27 26 26 28 28 27 27 27 27 28 28 29 29 29 29 28 28 8 8 10 10 8 8 28 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1123\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1124\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">30 30 31 31 32 32 31 31 30 30 33 33 33 33 30 30 34 34 34 34 30 30 35 35 34 34 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 38 38 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 43 43 44 44 45 45 44 44 43 43 46 46 44 44 46 46 47 47 44 44 47 47 48 48 48 48 47 47 49 49 48 48 49 49 50 50 50 50 49 49 32 32 50 50 32 32 51 51 51 51 32 32 31 31 51 51 31 31 52 52 52 52 31 31 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1123\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1124\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1128\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1131\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1129\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1130\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1129\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID1133\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1133\">-0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.270754829964972 0.3435938670600639</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1130\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID1134\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1134\">1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1132\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"48\" source=\"#ID1135\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1135\">13.16380470834466 0.02353305587178231 12.70754829964972 2.702938420872503 13.24002340945525 2.815181424239013 11.86263358545151 5.414979342100926 11.38526271924082 5.198144421396179 9.676888492394975 7.645755905570645 9.287065505064954 7.339104016431012 6.831636119784472 9.35548594921938 6.556009772566611 8.979915213203102 3.520825277789115 10.42765758663682 3.378140490156039 10.00875944513644 -0.02990082172260377 10.7891985748789 -0.02990082172267482 10.35552991492187 -3.435919522059974 9.9965833962471 -3.578613696232667 10.41548035629503 -6.607781419161219 8.956387769230418 -6.883468591155371 9.331957914520494 -9.329352241179443 7.305826045436834 -9.719207518205637 7.612483251112464 -11.415120926074 5.157382539894559 -11.89256237906191 5.374217460599315 -12.72297526512372 2.657477016911196 -13.25547891000948 2.769721792456383 -13.16378218064985 -0.02353490189121056 -13.23998135775804 -2.815179652060345 -13.71506791570486 -0.02353490189120707 13.71509494893863 0.02353305587177882 13.25550293955077 -2.769719724914605 12.72300830574298 -2.657477903000535 11.89255787352293 -5.374217460599311 11.41515847223228 -5.15738785643058 9.719179734048568 -7.612483251112466 9.329413065955807 -7.305833134151492 6.883464085616424 -9.331950235079592 6.607832481936404 -8.956385406325536 3.578613696232724 -10.41547563048526 3.435947306217084 -9.996572763175115 0.02993367461107122 -10.35552755201697 0.02993367461099795 -10.78919857487892 -3.378135984617037 -10.00876771530356 -3.520815891249638 -10.42765167937458 -6.556009772566556 -8.979918166834205 -6.831627108706453 -9.35548004195716 -9.287060999525936 -7.339102244252365 -9.676892997933901 -7.645755905570643 -11.3852296786218 -5.19814619357484 -11.86264785299155 -5.414977569922251 -12.70747921471866 -2.702930446068514</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 12 12 13 13 11 11 11 11 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 23 23 24 24 22 22 25 25 22 22 24 24 26 26 27 27 2 2 2 2 27 27 0 0 0 0 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 33 33 35 35 34 34 34 34 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 47 47 46 46 24 24 47 47 23 23 47 47 24 24 48 24 49 47 50 23 49 47 48 24 51 46 49 47 51 46 52 45 52 45 51 46 53 44 52 45 53 44 54 43 54 43 53 44 55 42 54 43 55 42 56 41 56 41 55 42 57 40 56 41 57 40 58 39 58 39 57 40 59 38 58 39 59 38 60 37 60 37 59 38 61 35 60 37 61 35 62 36 62 36 61 35 63 34 63 34 61 35 64 33 63 34 64 33 65 32 65 32 64 33 66 31 65 32 66 31 67 30 67 30 66 31 68 29 67 30 68 29 69 28 69 28 68 29 70 27 69 28 70 27 71 0 71 0 70 27 72 2 72 2 70 27 73 26 48 24 74 22 75 25 74 22 48 24 50 23 74 22 50 23 76 21 74 22 76 21 77 20 77 20 76 21 78 19 77 20 78 19 79 18 79 18 78 19 80 17 79 18 80 17 81 16 81 16 80 17 82 15 81 16 82 15 83 14 83 14 82 15 84 13 83 14 84 13 85 11 85 11 84 13 86 12 85 11 86 12 87 10 85 11 87 10 88 9 88 9 87 10 89 8 88 9 89 8 90 7 90 7 89 8 91 6 90 7 91 6 92 5 92 5 91 6 93 4 92 5 93 4 94 3 94 3 93 4 95 1 94 3 95 1 72 2 72 2 95 1 71 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1131\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1132\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1136\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1138\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1138\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1137\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1137\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1139\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1139\">-0.4478128033659967 0.2778640982455765 -0.362934906886154 -0.4478128033659949 0.307457980125035 -0.3945048806169198</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1140\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1142\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1142\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1141\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1141\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1143\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1143\">-0.4478128033659896 -0.2592153908032857 -0.3790163769896233 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1144\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1146\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1146\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1145\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1145\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1147\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1147\">-0.4478128033659967 -0.4253519781642065 0.1347814339741829 -0.4478128033659914 -0.4139088478041265 0.0933464324579063</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1148\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1150\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1150\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1149\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1149\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1151\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1151\">-0.4478128033659932 -0.003894005930508371 0.4410080127493087 -0.4478128033659967 0.03004302779671875 0.423250557236884</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1152\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1154\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1154\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1153\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1153\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1155\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1155\">-0.4478128033659976 0.4132203263553758 0.1481986756257214 -0.4478128033659941 0.443604104310682 0.1249160682732518</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1156\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1158\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1158\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1157\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1157\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1159\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1159\">-0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.005569503239401641 -0.6325761712128029</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1160\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1162\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1162\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1161\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1161\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1163\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1163\">-0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803314 -0.6020747235977453 -0.1948699676140677</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1164\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1166\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1166\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1165\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1165\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1167\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1167\">-0.5298591187803314 0.005242382336229534 -0.5675233220841833 -0.529859118780335 -0.05171889424246934 -0.426670674331888</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1168\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1170\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1170\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1169\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1169\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1171\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1171\">-0.5298591187803421 0.004574999374554745 -0.4344675846323871 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1172\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1174\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1174\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1173\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1173\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1175\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1175\">-0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.365877924949132 0.5166904045363489</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1176\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1178\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1178\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1177\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1177\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1179\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1179\">-0.5298591187803314 -0.3342368387947641 0.459116412202264 -0.5298591187803323 -0.2836405746819554 0.488100356742052</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1180\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1182\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1182\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1181\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1181\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1183\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1183\">-0.5298591187803341 0.328054863850014 0.4637080820710361 -0.5298591187803368 0.2863054132589566 0.3205489738215878</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1184\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1186\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1186\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1185\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1185\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1187\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1187\">-0.5298591187803421 0.2506140352906494 0.3552348656737639 -0.5298591187803332 0.2520881913262922 0.2718711494341899</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1188\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1190\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1190\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1189\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1189\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1191\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1191\">-0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.3723203951393453 0.5119000403984736</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1192\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1194\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1194\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1193\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1193\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1195\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1195\">-0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2562910144078499 0.3510828613173088</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1196\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1198\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1198\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1197\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1197\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1199\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1199\">-0.5298591187803385 -0.540087405646254 -0.1750670537230961 -0.529859118780335 -0.4220446497283755 -0.0812417951098896</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1200\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1202\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1202\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1201\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1201\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1203\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1203\">-0.529859118780335 -0.4132513394820253 -0.1345502998244115 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1204\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1206\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1206\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1205\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1205\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1207\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1207\">-0.5298591187803394 0.5432375283177788 -0.1650388315610469 -0.5298591187803332 0.5193516011359987 -0.221286843772758</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1208\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1210\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1210\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1209\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1209\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1211\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1211\">-0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.6054177208838552 -0.184220112484069</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1212\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1214\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1214\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1213\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1213\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1215\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1215\">-0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.4160034728768081 -0.1257918324128582</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1216\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">1 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1218\"></input>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1218\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1217\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1217\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1219\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1219\">0.4736113844101926 1.42012168249506 1.065790132799686 0.8846653631423393 1.420121682495051 1.065790132799686</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1222\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1230\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1228\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1229\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1228\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"336\" source=\"#ID1232\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1008\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1232\">-0.3969897627830505 0.2017256319522858 0.5573908686637878 -0.3969897627830505 0.216172605752945 0.555826723575592 -0.3344528675079346 0.2122509032487869 0.5473707914352417 -0.3344528675079346 0.2122509032487869 0.5473707914352417 -0.3969897627830505 0.216172605752945 0.555826723575592 -0.3969897627830505 0.2017256319522858 0.5573908686637878 -0.4577676355838776 0.1979141235351563 0.5491738319396973 -0.4577676355838776 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.2218439280986786 0.535342276096344 -0.3362122476100922 0.2218439280986786 0.535342276096344 -0.4535223543643951 0.1872304528951645 0.5396941304206848 -0.4535223543643951 0.1872304528951645 0.5396941304206848 -0.4595263302326202 0.2122509032487869 0.5473707914352417 -0.4595263302326202 0.2122509032487869 0.5473707914352417 -0.3969897627830505 0.190775528550148 0.5473343729972839 -0.3969897627830505 0.190775528550148 0.5473343729972839 -0.2774728834629059 0.2008335143327713 0.5227594971656799 -0.2774728834629059 0.2008335143327713 0.5227594971656799 -0.2808338701725006 0.2107474654912949 0.5114217400550842 -0.2808338701725006 0.2107474654912949 0.5114217400550842 -0.3969897627830505 0.2256553471088409 0.5435583591461182 -0.3969897627830505 0.2256553471088409 0.5435583591461182 -0.5050317049026489 0.1769081056118012 0.5174409151077271 -0.5050317049026489 0.1769081056118012 0.5174409151077271 -0.513146698474884 0.1868172287940979 0.5252532958984375 -0.513146698474884 0.1868172287940979 0.5252532958984375 -0.3404567539691925 0.1872304528951645 0.5396941304206848 -0.3404567539691925 0.1872304528951645 0.5396941304206848 -0.2808338701725006 0.1868172287940979 0.5252532958984375 -0.2808338701725006 0.1868172287940979 0.5252532958984375 -0.2889475822448731 0.2107493579387665 0.4978778660297394 -0.2889475822448731 0.2107493579387665 0.4978778660297394 -0.3404567539691925 0.2210730165243149 0.5201323628425598 -0.3404567539691925 0.2210730165243149 0.5201323628425598 -0.4969178736209869 0.1769112795591354 0.5039008259773254 -0.4969178736209869 0.1769112795591354 0.5039008259773254 -0.449276864528656 0.1864599287509918 0.5244837999343872 -0.449276864528656 0.1864599287509918 0.5244837999343872 -0.5165071487426758 0.2008335143327713 0.5227594971656799 -0.5165071487426758 0.2008335143327713 0.5227594971656799 -0.4577676355838776 0.2218439280986786 0.535342276096344 -0.4577676355838776 0.2218439280986786 0.535342276096344 -0.3969897627830505 0.1897388398647308 0.531552791595459 -0.3969897627830505 0.1897388398647308 0.531552791595459 -0.2311128377914429 0.1829331666231155 0.4841702878475189 -0.2311128377914429 0.1829331666231155 0.4841702878475189 -0.2357764393091202 0.1933503299951553 0.4739169776439667 -0.2357764393091202 0.1933503299951553 0.4739169776439667 -0.2470376193523407 0.1945692449808121 0.4629979431629181 -0.2470376193523407 0.1945692449808121 0.4629979431629181 -0.3969897627830505 0.2246185094118118 0.5277756452560425 -0.3969897627830505 0.2246185094118118 0.5277756452560425 -0.5356808304786682 0.1619468927383423 0.4716387093067169 -0.5356808304786682 0.1619468927383423 0.4716387093067169 -0.546941876411438 0.1607280522584915 0.4825592339038849 -0.546941876411438 0.1607280522584915 0.4825592339038849 -0.5582029819488525 0.1694204658269882 0.4877499043941498 -0.5582029819488525 0.1694204658269882 0.4877499043941498 -0.3447033762931824 0.1864599287509918 0.5244837999343872 -0.3447033762931824 0.1864599287509918 0.5244837999343872 -0.2889475822448731 0.1769081056118012 0.5174409151077271 -0.2889475822448731 0.1769081056118012 0.5174409151077271 -0.2357764393091202 0.1694204658269882 0.4877499043941498 -0.2357764393091202 0.1694204658269882 0.4877499043941498 -0.2582992911338806 0.1858771443367004 0.4578079283237457 -0.2582992911338806 0.1858771443367004 0.4578079283237457 -0.2970618903636932 0.2008417099714279 0.490065723657608 -0.2970618903636932 0.2008417099714279 0.490065723657608 -0.3447033762931824 0.2103893458843231 0.5106498599052429 -0.3447033762931824 0.2103893458843231 0.5106498599052429 -0.5310156345367432 0.1723641604185104 0.4613868892192841 -0.5310156345367432 0.1723641604185104 0.4613868892192841 -0.4935570359230042 0.1868250817060471 0.4925611317157745 -0.4935570359230042 0.1868250817060471 0.4925611317157745 -0.4475182890892029 0.1960520446300507 0.5124538540840149 -0.4475182890892029 0.1960520446300507 0.5124538540840149 -0.5628681778907776 0.1829331666231155 0.4841702878475189 -0.5628681778907776 0.1829331666231155 0.4841702878475189 -0.513146698474884 0.2107474654912949 0.5114217400550842 -0.513146698474884 0.2107474654912949 0.5114217400550842 -0.4535223543643951 0.2210730165243149 0.5201323628425598 -0.4535223543643951 0.2210730165243149 0.5201323628425598 -0.3969897627830505 0.1992211937904358 0.5192845463752747 -0.3969897627830505 0.1992211937904358 0.5192845463752747 -0.1994902491569519 0.160144031047821 0.4350440502166748 -0.1994902491569519 0.160144031047821 0.4350440502166748 -0.2050454169511795 0.1712013632059097 0.4261728525161743 -0.2050454169511795 0.1712013632059097 0.4261728525161743 -0.2184522151947022 0.1739687025547028 0.4185889363288879 -0.2184522151947022 0.1739687025547028 0.4185889363288879 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.3969897627830505 0.2136686891317368 0.5177204012870789 -0.3969897627830505 0.2136686891317368 0.5177204012870789 -0.5565645694732666 0.1539511382579804 0.4216945171356201 -0.5565645694732666 0.1539511382579804 0.4216945171356201 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5755271911621094 0.1401268541812897 0.4381494522094727 -0.5755271911621094 0.1401268541812897 0.4381494522094727 -0.5889348983764648 0.1472729295492172 0.4400050044059753 -0.5889348983764648 0.1472729295492172 0.4400050044059753 -0.3464618027210236 0.1960520446300507 0.5124538540840149 -0.3464618027210236 0.1960520446300507 0.5124538540840149 -0.2970618903636932 0.1769112795591354 0.5039008259773254 -0.2970618903636932 0.1769112795591354 0.5039008259773254 -0.2470376193523407 0.1607280522584915 0.4825592339038849 -0.2470376193523407 0.1607280522584915 0.4825592339038849 -0.2050454169511795 0.1472729295492172 0.4400050044059753 -0.2050454169511795 0.1472729295492172 0.4400050044059753 -0.2374149113893509 0.1539511382579804 0.4216945171356201 -0.2374149113893509 0.1539511382579804 0.4216945171356201 -0.2629641890525818 0.1723641604185104 0.4613868892192841 -0.2629641890525818 0.1723641604185104 0.4613868892192841 -0.3004229962825775 0.1868250817060471 0.4925611317157745 -0.3004229962825775 0.1868250817060471 0.4925611317157745 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5356808304786682 0.1858771443367004 0.4578079283237457 -0.5356808304786682 0.1858771443367004 0.4578079283237457 -0.4969178736209869 0.2008417099714279 0.490065723657608 -0.4969178736209869 0.2008417099714279 0.490065723657608 -0.449276864528656 0.2103893458843231 0.5106498599052429 -0.449276864528656 0.2103893458843231 0.5106498599052429 -0.5944892168045044 0.160144031047821 0.4350440502166748 -0.5944892168045044 0.160144031047821 0.4350440502166748 -0.5582029819488525 0.1933503299951553 0.4739169776439667 -0.5582029819488525 0.1933503299951553 0.4739169776439667 -0.5050317049026489 0.2107493579387665 0.4978778660297394 -0.5050317049026489 0.2107493579387665 0.4978778660297394 -0.1854178756475449 0.1344887018203735 0.379740834236145 -0.1854178756475449 0.1344887018203735 0.379740834236145 -0.1913672238588333 0.1462691277265549 0.3724253475666046 -0.1913672238588333 0.1462691277265549 0.3724253475666046 -0.205731064081192 0.1507763862609863 0.3685949742794037 -0.205731064081192 0.1507763862609863 0.3685949742794037 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2260439544916153 0.1332219839096069 0.3770101070404053 -0.2260439544916153 0.1332219839096069 0.3770101070404053 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5679354667663574 0.1332219839096069 0.3770102262496948 -0.5679354667663574 0.1332219839096069 0.3770102262496948 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5882483720779419 0.1169347614049912 0.3881564140319824 -0.5882483720779419 0.1169347614049912 0.3881564140319824 -0.602612316608429 0.1223383918404579 0.3862566649913788 -0.602612316608429 0.1223383918404579 0.3862566649913788 -0.2582992911338806 0.1619468927383423 0.4716387093067169 -0.2582992911338806 0.1619468927383423 0.4716387093067169 -0.2184522151947022 0.1401268541812897 0.4381494522094727 -0.2184522151947022 0.1401268541812897 0.4381494522094727 -0.1913672238588333 0.1223383918404579 0.3862566649913788 -0.1913672238588333 0.1223383918404579 0.3862566649913788 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.5882483720779419 0.1507763862609863 0.3685950040817261 -0.5882483720779419 0.1507763862609863 0.3685950040817261 -0.5755271911621094 0.1739687025547028 0.4185889363288879 -0.5755271911621094 0.1739687025547028 0.4185889363288879 -0.546941876411438 0.1945692449808121 0.4629979431629181 -0.546941876411438 0.1945692449808121 0.4629979431629181 -0.6085617542266846 0.1344887018203735 0.379740834236145 -0.6085617542266846 0.1344887018203735 0.379740834236145 -0.5889348983764648 0.1712013632059097 0.4261728525161743 -0.5889348983764648 0.1712013632059097 0.4261728525161743 -0.1901445388793945 0.108248382806778 0.3231741487979889 -0.1901445388793945 0.108248382806778 0.3231741487979889 -0.1959603577852249 0.1207654625177383 0.3174494504928589 -0.1959603577852249 0.1207654625177383 0.3174494504928589 -0.2100040912628174 0.1270548850297928 0.3174593448638916 -0.2100040912628174 0.1270548850297928 0.3174593448638916 -0.2240462750196457 0.1234327480196953 0.323198676109314 -0.2240462750196457 0.1234327480196953 0.323198676109314 -0.2298634797334671 0.1120201274752617 0.3313052952289581 -0.2298634797334671 0.1120201274752617 0.3313052952289581 -0.2240462750196457 0.09950244426727295 0.3370305299758911 -0.2240462750196457 0.09950244426727295 0.3370305299758911 -0.5839760303497315 0.1270548850297928 0.3174594044685364 -0.5839760303497315 0.1270548850297928 0.3174594044685364 -0.5699338316917419 0.1234327480196953 0.323198676109314 -0.5699338316917419 0.1234327480196953 0.323198676109314 -0.5641167759895325 0.1120201274752617 0.3313052952289581 -0.5641167759895325 0.1120201274752617 0.3313052952289581 -0.5699338316917419 0.09950244426727295 0.3370305597782135 -0.5699338316917419 0.09950244426727295 0.3370305597782135 -0.5839760303497315 0.09321287274360657 0.3370204567909241 -0.5839760303497315 0.09321287274360657 0.3370204567909241 -0.5980189442634583 0.09683530032634735 0.3312812447547913 -0.5980189442634583 0.09683530032634735 0.3312812447547913 -0.205731064081192 0.1169347614049912 0.3881563544273377 -0.205731064081192 0.1169347614049912 0.3881563544273377 -0.1959603577852249 0.09683530032634735 0.3312811255455017 -0.1959603577852249 0.09683530032634735 0.3312811255455017 -0.2100040912628174 0.09321287274360657 0.3370203971862793 -0.2100040912628174 0.09321287274360657 0.3370203971862793 -0.5980189442634583 0.1207654625177383 0.3174495100975037 -0.5980189442634583 0.1207654625177383 0.3174495100975037 -0.602612316608429 0.1462691277265549 0.372425377368927 -0.602612316608429 0.1462691277265549 0.372425377368927 -0.6038353443145752 0.108248382806778 0.3231741487979889 -0.6038353443145752 0.108248382806778 0.3231741487979889 -0.2132495641708374 0.08375199884176254 0.2703697681427002 -0.2132495641708374 0.08375199884176254 0.2703697681427002 -0.2184157222509384 0.09695863723754883 0.2661298215389252 -0.2184157222509384 0.09695863723754883 0.2661298215389252 -0.2308897227048874 0.1049110144376755 0.2697240114212036 -0.2308897227048874 0.1049110144376755 0.2697240114212036 -0.2433643490076065 0.1029518842697144 0.2790485918521881 -0.2433643490076065 0.1029518842697144 0.2790485918521881 -0.2485314607620239 0.09222786128520966 0.2886408567428589 -0.2485314607620239 0.09222786128520966 0.2886408567428589 -0.2433643490076065 0.0790218710899353 0.2928808033466339 -0.2433643490076065 0.0790218710899353 0.2928808033466339 -0.2308897227048874 0.07106951624155045 0.2892857789993286 -0.2308897227048874 0.07106951624155045 0.2892857789993286 -0.5755632519721985 0.09695863723754883 0.2661299407482147 -0.5755632519721985 0.09695863723754883 0.2661299407482147 -0.5630897283554077 0.1049110144376755 0.2697240114212036 -0.5630897283554077 0.1049110144376755 0.2697240114212036 -0.550615668296814 0.1029518842697144 0.2790486514568329 -0.550615668296814 0.1029518842697144 0.2790486514568329 -0.5454484224319458 0.09222786128520966 0.2886409163475037 -0.5454484224319458 0.09222786128520966 0.2886409163475037 -0.550615668296814 0.0790218710899353 0.2928808629512787 -0.550615668296814 0.0790218710899353 0.2928808629512787 -0.5630897283554077 0.07106951624155045 0.2892858386039734 -0.5630897283554077 0.07106951624155045 0.2892858386039734 -0.5755632519721985 0.07302837073802948 0.2799610495567322 -0.5755632519721985 0.07302837073802948 0.2799610495567322 -0.2184157222509384 0.07302837073802948 0.2799609899520874 -0.2184157222509384 0.07302837073802948 0.2799609899520874 -0.5807303786277771 0.08375222980976105 0.2703697681427002 -0.5807303786277771 0.08375222980976105 0.2703697681427002 -0.2526813745498657 0.0631781592965126 0.2260204702615738 -0.2526813745498657 0.0631781592965126 0.2260204702615738 -0.2567388117313385 0.07696282863616943 0.2230269759893417 -0.2567388117313385 0.07696282863616943 0.2230269759893417 -0.2665359377861023 0.08631247282028198 0.2296321243047714 -0.2665359377861023 0.08631247282028198 0.2296321243047714 -0.2763324975967407 0.08574993163347244 0.2419681996107101 -0.2763324975967407 0.08574993163347244 0.2419681996107101 -0.2803907990455627 0.07560457289218903 0.2528066337108612 -0.2803907990455627 0.07560457289218903 0.2528066337108612 -0.2763324975967407 0.06182022392749786 0.255800187587738 -0.2763324975967407 0.06182022392749786 0.255800187587738 -0.2665359377861023 0.05247067660093308 0.2491944879293442 -0.2665359377861023 0.05247067660093308 0.2491944879293442 -0.2567388117313385 0.05303321778774262 0.2368583828210831 -0.2567388117313385 0.05303321778774262 0.2368583828210831 -0.5412995219230652 0.0631781592965126 0.2260205298662186 -0.5412995219230652 0.0631781592965126 0.2260205298662186 -0.5372412204742432 0.07696282863616943 0.2230269759893417 -0.5372412204742432 0.07696282863616943 0.2230269759893417 -0.5274438858032227 0.08631247282028198 0.229632243514061 -0.5274438858032227 0.08631247282028198 0.229632243514061 -0.5176466703414917 0.08574993163347244 0.2419681996107101 -0.5176466703414917 0.08574993163347244 0.2419681996107101 -0.5135881304740906 0.07560480386018753 0.252806693315506 -0.5135881304740906 0.07560480386018753 0.252806693315506 -0.5176466703414917 0.06182022392749786 0.2558001279830933 -0.5176466703414917 0.06182022392749786 0.2558001279830933 -0.5274438858032227 0.05247067660093308 0.249194547533989 -0.5274438858032227 0.05247067660093308 0.249194547533989 -0.5372412204742432 0.05303321778774262 0.2368584722280502 -0.5372412204742432 0.05303321778774262 0.2368584722280502 -0.3049343228340149 0.04835595190525055 0.1940678507089615 -0.3049343228340149 0.04835595190525055 0.1940678507089615 -0.3075232207775116 0.06255754083395004 0.1919737458229065 -0.3075232207775116 0.06255754083395004 0.1919737458229065 -0.3137733042240143 0.07291240990161896 0.2007463872432709 -0.3137733042240143 0.07291240990161896 0.2007463872432709 -0.3200229704380035 0.07335587590932846 0.2152515798807144 -0.3200229704380035 0.07335587590932846 0.2152515798807144 -0.3226109147071838 0.06362755596637726 0.2269887775182724 -0.3226109147071838 0.06362755596637726 0.2269887775182724 -0.3200229704380035 0.04942680522799492 0.2290833741426468 -0.3200229704380035 0.04942680522799492 0.2290833741426468 -0.3137733042240143 0.03907079249620438 0.2203076630830765 -0.3137733042240143 0.03907079249620438 0.2203076630830765 -0.3075232207775116 0.03862743079662323 0.2058039754629135 -0.3075232207775116 0.03862743079662323 0.2058039754629135 -0.4864564538002014 0.03862784057855606 0.2058040350675583 -0.4864564538002014 0.03862784057855606 0.2058040350675583 -0.4890454411506653 0.04835615679621697 0.1940679997205734 -0.4890454411506653 0.04835615679621697 0.1940679997205734 -0.4864564538002014 0.06255754083395004 0.1919737756252289 -0.4864564538002014 0.06255754083395004 0.1919737756252289 -0.4802065193653107 0.07291240990161896 0.2007464468479157 -0.4802065193653107 0.07291240990161896 0.2007464468479157 -0.4739566445350647 0.07335587590932846 0.2152516394853592 -0.4739566445350647 0.07335587590932846 0.2152516394853592 -0.4713678061962128 0.06362777203321457 0.2269886881113052 -0.4713678061962128 0.06362777203321457 0.2269886881113052 -0.4739566445350647 0.04942680522799492 0.2290834337472916 -0.4739566445350647 0.04942680522799492 0.2290834337472916 -0.4802065193653107 0.03907079249620438 0.2203076630830765 -0.4802065193653107 0.03907079249620438 0.2203076630830765 -0.365368127822876 0.04060065001249313 0.1773498803377152 -0.365368127822876 0.04060065001249313 0.1773498803377152 -0.3662575781345367 0.05502000823616982 0.1757262051105499 -0.3662575781345367 0.05502000823616982 0.1757262051105499 -0.3684046268463135 0.06590185314416885 0.185634508728981 -0.3684046268463135 0.06590185314416885 0.185634508728981 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3714402318000794 0.05736114829778671 0.2134792059659958 -0.3714402318000794 0.05736114829778671 0.2134792059659958 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3684046268463135 0.03205951303243637 0.2051951140165329 -0.3684046268463135 0.03205951303243637 0.2051951140165329 -0.3662575781345367 0.03109009563922882 0.1895565390586853 -0.3662575781345367 0.03109009563922882 0.1895565390586853 -0.4255755841732025 0.03205951303243637 0.2051951140165329 -0.4255755841732025 0.03205951303243637 0.2051951140165329 -0.4277224540710449 0.03109009563922882 0.1895565390586853 -0.4277224540710449 0.03109009563922882 0.1895565390586853 -0.4286115169525147 0.04060065001249313 0.1773498803377152 -0.4286115169525147 0.04060065001249313 0.1773498803377152 -0.4277224540710449 0.05502000823616982 0.1757262051105499 -0.4277224540710449 0.05502000823616982 0.1757262051105499 -0.4255755841732025 0.06590185314416885 0.185634508728981 -0.4255755841732025 0.06590185314416885 0.185634508728981 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4225397408008575 0.05736114829778671 0.2134792059659958 -0.4225397408008575 0.05736114829778671 0.2134792059659958 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.4233378767967224 0.04165389388799667 0.2158837467432022</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1229\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"336\" source=\"#ID1233\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1008\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1233\">1.100715383596115e-005 -0.2879526679489293 0.9576446422864466 -5.00212074441366e-007 0.4861331523678775 0.8738847510791226 0.2915133493835332 0.4649853603216409 0.8359477147631591 -0.2915133493835332 -0.4649853603216409 -0.8359477147631591 5.00212074441366e-007 -0.4861331523678775 -0.8738847510791226 -1.100715383596115e-005 0.2879526679489293 -0.9576446422864466 -0.2165908462952944 -0.3036360506308182 0.9278434965329054 0.2165908462952944 0.3036360506308182 -0.9278434965329054 0.2165672156771486 -0.3036348934200792 0.9278493911145411 -0.2165672156771486 0.3036348934200792 -0.9278493911145411 0.2012191114973859 0.935966109203319 0.2889261351816466 -0.2012191114973859 -0.935966109203319 -0.2889261351816466 -0.01338570612357837 -0.8872174650094622 0.4611572320302012 0.01338570612357837 0.8872174650094622 -0.4611572320302012 -0.2915081904689192 0.4649882673554808 0.8359478967682641 0.2915081904689192 -0.4649882673554808 -0.8359478967682641 9.286556119569346e-006 -0.886195944691421 0.4633106382614584 -9.286556119569346e-006 0.886195944691421 -0.4633106382614584 0.5586933627804324 0.4030607494604687 0.7248474036853946 -0.5586933627804324 -0.4030607494604687 -0.7248474036853946 0.3872031794044685 0.8971003565986427 0.2128018986044513 -0.3872031794044685 -0.8971003565986427 -0.2128018986044513 -4.215760203857162e-006 0.9491698563782013 0.3147643304525022 4.215760203857162e-006 -0.9491698563782013 -0.3147643304525022 -0.02489908720408136 -0.8902586988205591 0.4547741028584725 0.02489908720408136 0.8902586988205591 -0.4547741028584725 -0.4127100464423818 -0.3494503553924499 0.8411628062875923 0.4127100464423818 0.3494503553924499 -0.8411628062875923 0.01337168713847178 -0.8872144590180767 0.4611634218932942 -0.01337168713847178 0.8872144590180767 -0.4611634218932942 0.4127213451782525 -0.3494520919706329 0.8411565411096807 -0.4127213451782525 0.3494520919706329 -0.8411565411096807 0.01371745529342166 0.9156097785848437 -0.4018340015231245 -0.01371745529342166 -0.9156097785848437 0.4018340015231245 0.006620618646293013 0.9162693618435276 -0.4005079574185703 -0.006620618646293013 -0.9162693618435276 0.4005079574185703 0.363455227687781 -0.9155786834854502 -0.1720929162210725 -0.363455227687781 0.9155786834854502 0.1720929162210725 0.1887453159836821 -0.9514474668815823 -0.2431520583068137 -0.1887453159836821 0.9514474668815823 0.2431520583068137 -0.5586849146318411 0.4030614471027265 0.7248535272882849 0.5586849146318411 -0.4030614471027265 -0.7248535272882849 -0.2012099022502427 0.9359642253928665 0.2889386509644896 0.2012099022502427 -0.9359642253928665 -0.2889386509644896 -5.812806568932802e-007 -0.9636132872443618 -0.2673002668269849 5.812806568932802e-007 0.9636132872443618 0.2673002668269849 0.7781572839386454 0.3051784083299842 0.5489420557239244 -0.7781572839386454 -0.3051784083299842 -0.5489420557239244 0.5429990370358453 0.8347584459073265 0.09127093055584411 -0.5429990370358453 -0.8347584459073265 -0.09127093055584411 0.0216401567875206 0.9177460426900622 -0.3965777411062578 -0.0216401567875206 -0.9177460426900622 0.3965777411062578 -2.059688964850534e-006 0.9164211759940478 -0.4002152273283016 2.059688964850534e-006 -0.9164211759940478 0.4002152273283016 0.5222649138591139 -0.8510833480847447 -0.05381908922114634 -0.5222649138591139 0.8510833480847447 0.05381908922114634 -0.03319586646515618 -0.8907586118954389 0.453262760199576 0.03319586646515618 0.8907586118954389 -0.453262760199576 -0.5698524653192305 -0.4205778588907226 0.7059620615730641 0.5698524653192305 0.4205778588907226 -0.7059620615730641 -0.1887331923837483 -0.9514500233658778 -0.2431514654072841 0.1887331923837483 0.9514500233658778 0.2431514654072841 0.02490777566955089 -0.8902587869583333 0.4547734545404692 -0.02490777566955089 0.8902587869583333 -0.4547734545404692 0.5698689534768392 -0.4205476238758168 0.7059667640304439 -0.5698689534768392 0.4205476238758168 -0.7059667640304439 -0.5544686309274808 0.4664188183525423 -0.6892155128869512 0.5544686309274808 -0.4664188183525423 0.6892155128869512 -0.3952795905222943 0.3983177432788594 -0.827705878138946 0.3952795905222943 -0.3983177432788594 0.827705878138946 -0.207927917002811 0.3537115165398592 -0.911950735729702 0.207927917002811 -0.3537115165398592 0.911950735729702 0.7794515084571977 -0.3099762539564684 -0.5443988133224705 -0.7794515084571977 0.3099762539564684 0.5443988133224705 0.5575192502637445 -0.4076386593834047 -0.7231894696146043 -0.5575192502637445 0.4076386593834047 0.7231894696146043 0.2907385042740951 -0.4698676619789975 -0.8334839544699421 -0.2907385042740951 0.4698676619789975 0.8334839544699421 -0.7781654779003928 0.3051658714372215 0.5489374098328645 0.7781654779003928 -0.3051658714372215 -0.5489374098328645 -0.3872146420584227 0.8970965729133288 0.2127969920904148 0.3872146420584227 -0.8970965729133288 -0.2127969920904148 -0.00660748602147272 0.916263273565502 -0.4005221025655215 0.00660748602147272 -0.916263273565502 0.4005221025655215 8.541388568576863e-006 -0.4910278000528664 -0.8711439028669642 -8.541388568576863e-006 0.4910278000528664 0.8711439028669642 0.9293599606018972 0.179336702210366 0.3226893411167321 -0.9293599606018972 -0.179336702210366 -0.3226893411167321 0.6544140873167479 0.7531369058381351 -0.06728300963800632 -0.6544140873167479 -0.7531369058381351 0.06728300963800632 0.08491776977295618 0.9176703790828461 -0.3881623986564549 -0.08491776977295618 -0.9176703790828461 0.3881623986564549 -0.6089327437528342 0.5904872166633667 -0.5296468262368759 0.6089327437528342 -0.5904872166633667 0.5296468262368759 2.974362482897488e-006 0.3383138927599808 -0.9410333203222624 -2.974362482897488e-006 -0.3383138927599808 0.9410333203222624 0.930509737814023 -0.1808882794953763 -0.3184824299305707 -0.930509737814023 0.1808882794953763 0.3184824299305707 0.5871771771243384 -0.8010775837051904 0.116179462683157 -0.5871771771243384 0.8010775837051904 -0.116179462683157 -0.09343537945941918 -0.8868205441743211 0.4525694999617577 0.09343537945941918 0.8868205441743211 -0.4525694999617577 -0.6732692549969293 -0.5099273050840194 0.5354275430024397 0.6732692549969293 0.5099273050840194 -0.5354275430024397 -0.290749099116707 -0.4698652454584595 -0.833481620956986 0.290749099116707 0.4698652454584595 0.833481620956986 -0.3634643232123655 -0.9155783093509572 -0.1720756961276642 0.3634643232123655 0.9155783093509572 0.1720756961276642 0.03305816323114872 -0.894752363067841 0.4453373627131425 -0.03305816323114872 0.894752363067841 -0.4453373627131425 0.673259410583817 -0.5099398597757813 0.5354279647834881 -0.673259410583817 0.5099398597757813 -0.5354279647834881 -0.9303034464617545 -0.1771334335109996 -0.3211841282410853 0.9303034464617545 0.1771334335109996 0.3211841282410853 -0.7795733875872093 -0.3052459198546588 -0.5468914533779863 0.7795733875872093 0.3052459198546588 0.5468914533779863 -0.557525300036653 -0.4076416721374287 -0.7231831074880283 0.557525300036653 0.4076416721374287 0.7231831074880283 0.6083105377611066 0.5964914058014206 -0.5235993625414743 -0.6083105377611066 -0.5964914058014206 0.5235993625414743 0.5460609384515709 0.4719230165382369 -0.6921749186143923 -0.5460609384515709 -0.4719230165382369 0.6921749186143923 0.3952953118344753 0.3983059077837897 -0.8277040656334943 -0.3952953118344753 -0.3983059077837897 0.8277040656334943 0.2079168365125522 0.3537163887637413 -0.9119513722861271 -0.2079168365125522 -0.3537163887637413 0.9119513722861271 -0.9293620016168114 0.1793367018887206 0.3226834630198296 0.9293620016168114 -0.1793367018887206 -0.3226834630198296 -0.5429698145779854 0.8347806377526564 0.09124180670293802 0.5429698145779854 -0.8347806377526564 -0.09124180670293802 -0.0137147172176815 0.915604316800109 -0.4018465398490383 0.0137147172176815 -0.915604316800109 0.4018465398490383 0.9971363129691673 0.03671384203629936 0.06611555914600223 -0.9971363129691673 -0.03671384203629936 -0.06611555914600223 0.7098166461020702 0.6583800844002149 -0.250391679936803 -0.7098166461020702 -0.6583800844002149 0.250391679936803 0.09262093803667669 0.9028998927923957 -0.419753672327815 -0.09262093803667669 -0.9028998927923957 0.419753672327815 -0.6320131605804139 0.6764909543610331 -0.3780467610241551 0.6320131605804139 -0.6764909543610331 0.3780467610241551 -0.9968574878858364 -0.04248596266388211 -0.06685874529530655 0.9968574878858364 0.04248596266388211 0.06685874529530655 0.6377644486983164 0.6763436168742892 -0.3685319794670977 -0.6377644486983164 -0.6763436168742892 0.3685319794670977 0.9967452301006394 -0.03912097567410024 -0.07048755587995632 -0.9967452301006394 0.03912097567410024 0.07048755587995632 0.6293091094626061 -0.7298048971572618 0.2671232989326467 -0.6293091094626061 0.7298048971572618 -0.2671232989326467 -0.0878470981311025 -0.9032670839852487 0.4199898359945516 0.0878470981311025 0.9032670839852487 -0.4199898359945516 -0.7139595591759941 -0.6085786298290158 0.3462568398987349 0.7139595591759941 0.6085786298290158 -0.3462568398987349 -0.5124184657129083 -0.8570967194989182 -0.05303328596854585 0.5124184657129083 0.8570967194989182 0.05303328596854585 0.08429227443152722 -0.8856210560847648 0.4566948187690176 -0.08429227443152722 0.8856210560847648 -0.4566948187690176 0.7139661310468548 -0.6085710049990598 0.34625669032153 -0.7139661310468548 0.6085710049990598 -0.34625669032153 -0.6384249373570429 -0.7202899272963328 0.2712858639813348 0.6384249373570429 0.7202899272963328 -0.2712858639813348 -0.5817646013022528 -0.8027559971512503 0.1308921606106814 0.5817646013022528 0.8027559971512503 -0.1308921606106814 -0.0975350277309561 0.9057875738450613 -0.4123539613407385 0.0975350277309561 -0.9057875738450613 0.4123539613407385 -0.07861868255715707 0.9197678292123763 -0.3845077932876396 0.07861868255715707 -0.9197678292123763 0.3845077932876396 -0.02133435285472708 0.9141485480559647 -0.4048175854325521 0.02133435285472708 -0.9141485480559647 0.4048175854325521 -0.9971359471075431 0.03672338310102496 0.06611577814378743 0.9971359471075431 -0.03672338310102496 -0.06611577814378743 -0.6544282329626999 0.753125001996044 -0.06727866875746516 0.6544282329626999 -0.753125001996044 0.06727866875746516 0.9743393554807079 -0.1093163319607265 -0.1967555842361046 -0.9743393554807079 0.1093163319607265 0.1967555842361046 0.701768580865077 0.5586859060907931 -0.4420304483246886 -0.701768580865077 -0.5586859060907931 0.4420304483246886 0.03706289722461273 0.9026851440191707 -0.4287025453813015 -0.03706289722461273 -0.9026851440191707 0.4287025453813015 -0.6503264580190576 0.7378384316224732 -0.1807482968696412 0.6503264580190576 -0.7378384316224732 0.1807482968696412 -0.9751811664482191 0.1061087405855619 0.1943260861954379 0.9751811664482191 -0.1061087405855619 -0.1943260861954379 -0.6723224793925161 -0.6002392068805169 0.4332382464960218 0.6723224793925161 0.6002392068805169 -0.4332382464960218 -0.04106258774338166 0.8990879536256117 -0.4358379464125708 0.04106258774338166 -0.8990879536256117 0.4358379464125708 0.6586147483838466 0.7298865062220813 -0.1830090195761027 -0.6586147483838466 -0.7298865062220813 0.1830090195761027 0.9748193469988046 0.111417186237971 0.1931669001864392 -0.9748193469988046 -0.111417186237971 -0.1931669001864392 0.6651896065333129 -0.6032270776840166 0.440045315971955 -0.6651896065333129 0.6032270776840166 -0.440045315971955 -0.03185468267752745 -0.9097173842164842 0.4140042995499341 0.03185468267752745 0.9097173842164842 -0.4140042995499341 -0.6897283700466407 -0.7069106424900996 0.1566911582924795 0.6897283700466407 0.7069106424900996 -0.1566911582924795 0.09347567343550103 -0.9000933710169554 0.4255516677527101 -0.09347567343550103 0.9000933710169554 -0.4255516677527101 0.6897375445398015 -0.7069016727983516 0.1566912398543636 -0.6897375445398015 0.7069016727983516 -0.1566912398543636 0.03593812209819782 -0.9127512269897633 0.4069319955579026 -0.03593812209819782 0.9127512269897633 -0.4069319955579026 -0.7017590213569223 0.5586946081510511 -0.4420346262083076 0.7017590213569223 -0.5586946081510511 0.4420346262083076 -0.709818748063382 0.6583775987073595 -0.2503922571048552 0.709818748063382 -0.6583775987073595 0.2503922571048552 -0.974338443766663 -0.1093171781621164 -0.1967596288800864 0.974338443766663 0.1093171781621164 0.1967596288800864 0.8633889564679328 -0.2451083098381773 -0.4410004833302183 -0.8633889564679328 0.2451083098381773 0.4410004833302183 0.6290046103695766 0.4634642747900084 -0.6241426648829487 -0.6290046103695766 -0.4634642747900084 0.6241426648829487 0.03554156252135575 0.8973259468323727 -0.4399351571253733 -0.03554156252135575 -0.8973259468323727 0.4399351571253733 -0.5694245203325242 0.8219547043962799 -0.01209047413871957 0.5694245203325242 -0.8219547043962799 0.01209047413871957 -0.8627114190412447 0.2482474767330248 0.4405703096572987 0.8627114190412447 -0.2482474767330248 -0.4405703096572987 -0.5992748592906593 -0.5084212250092343 0.6183668013260982 0.5992748592906593 0.5084212250092343 -0.6183668013260982 0.02512503278738687 -0.9129947515708048 0.4071969011812309 -0.02512503278738687 0.9129947515708048 -0.4071969011812309 -0.6289899427792813 0.4634856608255055 -0.6241415657458338 0.6289899427792813 -0.4634856608255055 0.6241415657458338 -0.03554759284476012 0.8973269535253716 -0.439932616567377 0.03554759284476012 -0.8973269535253716 0.439932616567377 0.5694218016437607 0.8219566749752858 -0.01208454700623923 -0.5694218016437607 -0.8219566749752858 0.01208454700623923 0.8627077507767076 0.248248209645723 0.4405770797005759 -0.8627077507767076 -0.248248209645723 -0.4405770797005759 0.5992774056691878 -0.5084208416781608 0.6183646487321849 -0.5992774056691878 0.5084208416781608 -0.6183646487321849 -0.02512235848010955 -0.9129943206482132 0.407198032373076 0.02512235848010955 0.9129943206482132 -0.407198032373076 -0.6050543403621613 -0.7960244965541471 -0.01594509625641305 0.6050543403621613 0.7960244965541471 0.01594509625641305 0.605062878180421 -0.7960177516385063 -0.01595783583078501 -0.605062878180421 0.7960177516385063 0.01595783583078501 -0.8633931629464862 -0.2450969105560301 -0.4409985834593485 0.8633931629464862 0.2450969105560301 0.4409985834593485 0.6757257263860772 -0.3582131733021387 -0.6442655238120539 -0.6757257263860772 0.3582131733021387 0.6442655238120539 0.497191645673142 0.3821475813859728 -0.7789503793655177 -0.497191645673142 -0.3821475813859728 0.7789503793655177 0.02947926195039484 0.8923438960447034 -0.4503924336693717 -0.02947926195039484 -0.8923438960447034 0.4503924336693717 -0.4412794085392349 0.8892751887941607 0.1202585639128165 0.4412794085392349 -0.8892751887941607 -0.1202585639128165 -0.6746014688802863 0.3624176619489304 0.6430912038677179 0.6746014688802863 -0.3624176619489304 -0.6430912038677179 -0.4754566145998638 -0.4300698529820409 0.7674509294992365 0.4754566145998638 0.4300698529820409 -0.7674509294992365 0.01748884856509388 -0.9150062616010659 0.4030603942422384 -0.01748884856509388 0.9150062616010659 -0.4030603942422384 0.4697897548825131 -0.8686441130557135 -0.1573371890592981 -0.4697897548825131 0.8686441130557135 0.1573371890592981 -0.675734036367169 -0.3582105659598173 -0.6442582576340646 0.675734036367169 0.3582105659598173 0.6442582576340646 -0.4971853572315199 0.3821684436042292 -0.7789441579906016 0.4971853572315199 -0.3821684436042292 0.7789441579906016 -0.02948069239466262 0.8923420790190162 -0.4503959400216118 0.02948069239466262 -0.8923420790190162 0.4503959400216118 0.4412707421759817 0.8892806518473205 0.1202499661100279 -0.4412707421759817 -0.8892806518473205 -0.1202499661100279 0.6745953782164265 0.3624208822881841 0.6430957780692472 -0.6745953782164265 -0.3624208822881841 -0.6430957780692472 0.475445493356882 -0.4300732761216662 0.7674559010214257 -0.475445493356882 0.4300732761216662 -0.7674559010214257 -0.01749034331298835 -0.9150054223823763 0.4030622345266829 0.01749034331298835 0.9150054223823763 -0.4030622345266829 -0.4697815306159824 -0.8686507780892173 -0.1573249478534862 0.4697815306159824 0.8686507780892173 0.1573249478534862 0.4296030359012069 -0.4388818302217858 -0.7891919732521624 -0.4296030359012069 0.4388818302217858 0.7891919732521624 0.3183998410294463 0.3229962732788499 -0.8912322641603577 -0.3183998410294463 -0.3229962732788499 0.8912322641603577 0.03038741195228124 0.8869362814384787 -0.4608911345024181 -0.03038741195228124 -0.8869362814384787 0.4608911345024181 -0.2670054108262962 0.9367771694262486 0.226178348723361 0.2670054108262962 -0.9367771694262486 -0.226178348723361 -0.4259850899852302 0.4459367148158626 0.7871957504264814 0.4259850899852302 -0.4459367148158626 -0.7871957504264814 -0.3010341479674957 -0.3735542393901423 0.8774027991698773 0.3010341479674957 0.3735542393901423 -0.8774027991698773 0.01009041759120744 -0.9160154494001691 0.4010160594453058 -0.01009041759120744 0.9160154494001691 -0.4010160594453058 0.2970481968236596 -0.9196343318873466 -0.256972886464557 -0.2970481968236596 0.9196343318873466 0.256972886464557 -0.2970484422515409 -0.9196320989134578 -0.2569805938275515 0.2970484422515409 0.9196320989134578 0.2569805938275515 -0.4295979640396049 -0.4388908348945468 -0.7891897264527675 0.4295979640396049 0.4388908348945468 0.7891897264527675 -0.3183968437424108 0.3229971010153391 -0.8912330349748924 0.3183968437424108 -0.3229971010153391 0.8912330349748924 -0.01947852840250339 0.8885028919470697 -0.4584574112531792 0.01947852840250339 -0.8885028919470697 0.4584574112531792 0.2702220342571353 0.9389866831721295 0.2128005193305185 -0.2702220342571353 -0.9389866831721295 -0.2128005193305185 0.4240429041274266 0.4414033343789021 0.7907911935892845 -0.4240429041274266 -0.4414033343789021 -0.7907911935892845 0.2983027650498462 -0.3667050530799812 0.881216695489381 -0.2983027650498462 0.3667050530799812 -0.881216695489381 -0.01622450498842495 -0.9165547656188361 0.3995799382592689 0.01622450498842495 0.9165547656188361 -0.3995799382592689 0.1472679733307151 -0.4807855014462627 -0.8643826962810682 -0.1472679733307151 0.4807855014462627 0.8643826962810682 0.1095684548527651 0.2918769691750159 -0.9501592437935783 -0.1095684548527651 -0.2918769691750159 0.9501592437935783 0.01814557456022227 0.8484106733494172 -0.5290274732664344 -0.01814557456022227 -0.8484106733494172 0.5290274732664344 -0.08166489083295546 0.9750941196064656 0.2062093681531785 0.08166489083295546 -0.9750941196064656 -0.2062093681531785 -0.1423373977113889 0.4764771508096741 0.8675883758840045 0.1423373977113889 -0.4764771508096741 -0.8675883758840045 -0.09161509243024273 -0.3783895678159515 0.9211015198158428 0.09161509243024273 0.3783895678159515 -0.9211015198158428 0.01429840890886133 -0.9315300536387764 0.3633831513298508 -0.01429840890886133 0.9315300536387764 -0.3633831513298508 0.1015501957394042 -0.9458455719011187 -0.3083240371108524 -0.1015501957394042 0.9458455719011187 0.3083240371108524 -0.009943928546088702 -0.9334025049453157 0.3586932980233676 0.009943928546088702 0.9334025049453157 -0.3586932980233676 -0.1015534747776958 -0.9458444330921899 -0.3083264506153984 0.1015534747776958 0.9458444330921899 0.3083264506153984 -0.147266657557691 -0.4807868808128261 -0.8643821532227857 0.147266657557691 0.4807868808128261 0.8643821532227857 -0.1095691102264438 0.291874995190177 -0.9501597745994721 0.1095691102264438 -0.291874995190177 0.9501597745994721 -0.02566642895233784 0.8527891332854933 -0.5216243174690112 0.02566642895233784 -0.8527891332854933 0.5216243174690112 0.06924176205058456 0.9778832794164339 0.1973572147804362 -0.06924176205058456 -0.9778832794164339 -0.1973572147804362 0.1449489124022483 0.4719675827323842 0.8696185449052678 -0.1449489124022483 -0.4719675827323842 -0.8696185449052678 0.09738220292944767 -0.3725574388083665 0.9228855082517864 -0.09738220292944767 0.3725574388083665 -0.9228855082517864</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1231\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"1002\" source=\"#ID1234\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2004\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1234\">8.02231418666651 5.767267780802827 8.252088057911237 5.589311019664747 7.431385573142238 4.627258133742329 1.606075704142272 -6.664116171898536 2.403748798413335 -7.599058137546133 1.376311979132671 -6.842086032861725 7.225737949685353 4.830108071600177 8.023678022363086 5.764812889299482 7.43235358172829 4.625008508021419 7.363995635106627 6.533390653799618 7.297642829302479 6.835913372468743 8.544185864865252 7.048583972946593 -9.353644995208162 9.496317571299793 -9.456248184920225 9.776109948263965 -8.251432643860941 10.01863490878347 2.406236697679825 -7.597681970312806 2.199605115929212 -7.802763113320637 1.378608390915007 -6.840969840094465 -7.590335541155204 10.70602694802739 -7.571895639415195 11.00280147164252 -6.367080428351595 10.76031072335507 4.966023898041894 10.00672256238572 5.243664226169317 9.91913432926051 4.839027801587744 8.723565081277133 8.007737987502445 8.528718158347967 6.920853200511596 7.959932833629308 7.888919430143502 8.814733613483142 8.575346384537509 6.74049066075222 7.363867878052579 6.533863598668274 8.544070322159202 7.049028936628958 -10.6474920219949 8.111744241615781 -9.826387542111165 9.005408973160634 -9.693951711360347 8.738440923612204 -8.23270430587667 9.723159798408275 -9.353379702169475 9.497690138106181 -8.251133017061301 10.01993501712986 -2.076341590827678 -5.446531966539086 -2.747292704012422 -4.372146411011835 -2.469653090599756 -4.284561418814406 8.36450869076322 5.248636055142397 7.086689606986296 5.152756972189283 7.117970209082349 5.461294787847897 -6.469701209238219 10.47974138353815 -7.590377992084248 10.70524599506641 -6.367123258373397 10.75953831236817 4.571922371945806 8.84539763252314 4.96501638536636 10.00742870724498 4.838216032068572 8.724251868207164 6.920818075007783 7.960006058168995 6.770569825654725 8.229591706489064 7.888897956771724 8.814791376665028 6.369864240073535 10.21852039588463 6.209602950654397 10.49059365702833 7.338289473943722 10.97111630784981 7.036948750544099 10.6454234430234 6.953010084715945 10.9502757685996 8.170900501940615 11.11495073965689 -9.258150899043443 10.5071703098472 -9.418417710349523 10.77916637951357 -8.368582196735387 11.22619350350597 -10.64730331774392 8.113789988750014 -10.85135259844804 8.333778046742935 -9.826089290604813 9.007354055240066 -8.772087774188769 10.74251265572863 -8.856046438867478 11.04737288696119 -7.723218056485544 11.20050605659699 -2.077924500427836 -5.446783367694267 -2.34421369354931 -5.567932998300748 -2.748731068066101 -4.372307557346347 8.298218277099975 4.945222462917677 7.086734774222069 5.151862307460801 8.364553402206269 5.247747464753283 -7.000573116885825 10.99152509365734 -8.132295327164709 10.82834839739508 -8.13340981920302 11.14465832752162 -5.747197968884668 11.34771865661842 -5.614785283970845 11.61469325889407 -4.589597508688529 10.94102483346657 3.600188297201517 11.08574969555976 3.882049501761424 11.00737322589368 3.546444374582394 9.794570462850089 6.99670435438618 9.55955763258903 6.092887770699351 8.735608954423846 6.814469531908987 9.808638799461429 6.647959731086218 10.23822650913605 5.755524825279502 9.532889735268309 6.490809983562573 10.51210877794677 7.41997173218677 10.66527665403989 6.370133579721438 10.2182263388499 7.338564645077707 10.97081474691645 8.169805699052926 10.79857588292758 7.036968516098395 10.64538167454566 8.170920417540495 11.11490860880507 -8.740919240116529 10.83978666178993 -9.566338625551969 10.18739078053096 -8.898077287828695 11.11359071720087 -8.28684292727478 10.92038831944528 -9.257843112603737 10.50691625709059 -8.368270315967777 11.22593438525606 -10.70207184086822 7.859646832739864 -11.38157048740469 6.947354717371921 -10.92180453057965 8.063971084084493 -7.724344382085194 10.8842171823605 -8.772099555649737 10.74253351947274 -7.723229921896868 11.20052711259926 -3.655488084653787 -2.338871853116272 -4.263545100703079 -1.238570008658045 -3.981686478920031 -1.160193451602171 7.361321654529953 4.312137890551743 6.124180677253954 4.611336636689946 6.242986094475011 4.897355864011173 8.90362543194138 11.00610886361448 7.686842502579204 10.85445098157452 7.685727858736397 11.17078370771504 -7.084553032983659 10.68665734821619 -8.132293932533601 10.82834098437742 -7.000571717824942 10.99151764991668 -4.794009342179233 10.72139473624548 -5.747598954692891 11.3480105177875 -4.589976545268181 10.9413791756188 3.274668987659907 9.906720870699749 3.600953888569323 11.08539287268543 3.547076298694634 9.794219210659854 6.09288381772793 8.735612996503775 5.884514685839049 8.960870719261866 6.814458782371375 9.808647412005715 5.755658541536009 9.532800255145016 5.531478612772006 9.75360210527751 6.490951328416285 10.51201356954455 3.605290948896335 10.38141642767636 3.33455265833195 10.51716039845814 4.014028828894553 11.42943895203155 5.589979773123033 11.53341126438089 4.840404163330653 10.68682665382721 4.636374353864254 10.90679269216684 7.533368318126436 10.93688718677573 6.515314143438632 10.43149938548117 6.412693034774826 10.71133130046171 -5.623218934403118 4.408422528738681 -5.831607429130463 4.633650344396608 -5.054071071988054 5.342434346091068 -9.566143887607765 10.18733400003877 -9.790321147955863 10.40816513457345 -8.897877965835795 11.1135306292603 -7.080356331707753 4.053971967280779 -7.23060879446113 4.323584921403613 -6.295565336252739 4.812966406053784 -11.38154062340129 6.946934657969052 -11.65227155783105 7.082692552127814 -10.92180663684189 8.063564187879415 -8.181179189229288 4.911309043923017 -8.247506721794631 5.213846656682764 -7.20526833652511 5.391622673994847 -3.655653795968758 -2.338906340375719 -3.928071478759999 -2.451409328531153 -4.263698117344093 -1.238597480587634 7.36141480199807 4.312676224611774 7.211174320131137 4.043088922317519 6.124272005539162 4.611867448607266 8.819661913325041 10.7013222488483 7.686833079872884 10.85451661169397 8.903615990191723 11.00617464652251 -7.414680419786158 6.801473658954425 -8.488180523016553 6.670718688023931 -8.456904346591537 6.979250293358286 -6.263600740604844 10.54523868733316 -7.394884629014753 10.68671664530804 -7.31343401982421 10.99226281712368 -3.292621517860952 10.54167626392773 -4.242831137437234 11.31821873024799 -4.023119003917025 11.52254472997818 2.551809972545656 9.664317185975541 2.6236274458066 10.95547984480436 2.905003578692951 10.86778812080018 5.193624988674518 8.580056277800161 5.692767334986558 9.773034138616049 5.915652172224851 9.562128742488907 5.937110580194192 9.489415672846647 5.262547314077408 8.578135569452515 5.716187416262216 9.713476051139757 3.176137914244959 10.68649459689848 2.834873189666084 9.69182847940672 2.899293108193951 10.80930583801228 4.234461290235831 11.22486887962152 3.605942037354565 10.38119795908854 4.014763754588621 11.42918778233066 5.589504880842169 11.53356933265291 5.721950122961196 11.26655762799355 4.839977335964876 10.6869421673126 7.533143785096657 10.93687425265906 7.551591709610324 10.64012137186822 6.515105828923725 10.43145378207258 -4.162820841888336 5.683229236242456 -3.785455540905263 6.710550714605108 -3.562552804087732 6.499677047211517 -4.872389408174831 5.093837840595416 -5.623779512367979 4.40896397538488 -5.054609188486499 5.342962105285681 -8.887746741103829 10.83526687679533 -9.525692247198936 10.01031531247674 -9.107133392035042 11.0608579480509 -6.176474298564618 4.526406989595827 -7.080055569335768 4.053426788815008 -6.295280344376946 4.812437533749789 -11.31857231475265 7.207002239849808 -11.68082557747522 6.132629915955798 -11.5941746043776 7.332576212619316 -7.173977897034508 5.083030682715448 -8.181164024524115 4.911246986479281 -7.205253998235585 5.391562295675325 -5.064701339923504 1.894592448432216 -4.721524901407358 0.7249575728427193 -5.346087968207796 1.806900478081168 5.956868974092837 4.582459303872925 4.844680692420677 5.181156372358337 5.026908626978211 5.430239683354471 9.472188816692448 10.72397226626382 8.262063269598878 10.89895199625093 8.343486758075576 11.20449002484071 8.289909445598125 9.953360197058817 9.410573323369611 9.727789472525593 8.27146697812546 9.656606977076205 -7.481007247740252 6.498971555125469 -8.488182100825481 6.670754732288192 -7.414681949864845 6.801509311352131 -6.26357202431161 10.54538716088015 -6.423847746747091 10.27339065209758 -7.394855765646165 10.68686629489177 -3.292568142589447 10.54167249367159 -3.563299937621667 10.40591384363897 -4.242772177916078 11.31822179306155 2.551014626765364 9.664570003049022 2.279565712514537 9.786101771501294 2.622698378662749 10.9557400928255 5.193794640470326 8.579934506661576 4.950006967750503 8.762408130938974 5.692974766025896 9.772896559926084 5.262729318767912 8.578022902558102 4.991162906919249 8.733644753001784 5.716394133052781 9.71335350989146 3.628339580450876 9.410096179628415 3.343259316224513 9.476119751452627 3.791720391302833 10.51744087914368 -2.543497724329717 9.820157007470904 -2.848652052517384 9.677531866782541 -3.132722358266544 10.69001710564758 -3.873097941905428 10.89286343072251 -3.320076696099827 9.991416069596967 -3.592497529002921 9.878920394021563 -5.238846009887677 9.80758299599721 -4.634251248975909 8.929086183173229 -4.900537747090571 8.8078942451424 -8.214277558189956 5.481786058120083 -7.321064523486167 4.882925935033296 -7.527661981317388 4.677793400510733 4.377614265992437 0.7281219543282957 4.073595089472888 0.8692070938502872 4.394109549297308 1.830549502300379 -3.537676791819183 5.376926876400024 -3.811855606249014 5.583853884632541 -3.17471002551291 6.409423422083563 3.97394736107426 -2.367570675376053 3.701523387203382 -2.255077662628404 3.972653577627958 -1.275216590961533 -10.36711544436186 9.788610904639777 -10.63722024298047 9.923741161134938 -9.99021332211368 10.85480794770453 2.405243483742395 -5.482637948843198 2.138955835681639 -5.361451513027145 2.46589077455381 -4.395385817039694 -11.68072628394697 6.132280067793281 -11.98353862516836 6.177170132947989 -11.5941092281414 7.332228813223198 -2.108601609355256 -7.748206068148464 -2.315165169803018 -7.543038888934133 -1.651511075343576 -6.766188339209613 -4.721607784662597 0.7249281405996211 -4.993049772383447 0.6033964299868833 -5.346166221861001 1.806873718311953 5.957238957132517 4.583363214343673 5.748849837769354 4.358110775196654 4.845041714752265 5.18204363639175 9.472304078310044 10.72461316264121 9.31201810079169 10.45253915697316 8.262178858055076 10.89959515296517 9.410594163350751 9.728071431052994 9.307990612543218 9.448239951301609 8.271487518594194 9.656893728748518 -8.212551034223413 5.484377895292075 -7.982782368570982 5.662358312422271 -7.319611670762221 4.885109787038521 -6.901073416418869 8.239933947756155 -7.954920374718853 8.443296667457076 -7.836119496150149 8.729328991386085 -5.586655222954788 9.822978924250215 -6.636258537640909 10.25454365534416 -6.479091496931305 10.52834820115506 -2.602420738045671 9.709493464092688 -3.267466644683721 10.73896569644136 -2.991862575009607 10.86453843503981 1.578587327183264 8.616623560601905 1.717743461392392 9.90224185360913 1.995689528240346 9.796409591444695 4.352990694981493 7.476449471708879 4.67407626424998 8.728944349425365 4.921550948121843 8.551503278166209 5.36216474635061 8.436915836161079 4.950843260216593 7.383133306463973 5.093068539573298 8.596771107822468 3.539780496745524 9.457279058321062 3.431838494209256 8.415414457869801 3.254074064554408 9.520538078961783 -1.911819010740019 9.727529858260962 -1.560214478487912 8.779557572046723 -2.224358608507 9.601911011762139 -2.597596011191904 10.8406810002062 -2.312286468233244 9.868305447743705 -2.878987540687646 10.75300435365292 -3.873742899600679 10.89269934021582 -3.591884319513478 10.9711322781505 -3.320647345935045 9.991297569800498 -5.239716594033536 9.807178809229182 -4.962070710154135 9.894783771798668 -4.635008456639771 8.928760034592838 5.337713155207496 3.462758609268935 5.393465189571801 4.573231349241489 5.70505027354063 4.449750938917815 5.129220193628463 0.9198204399797194 5.102133984892365 2.022038626272866 5.383840597970641 1.935373272153651 -2.227268869578842 7.054369051497821 -2.034900411214426 8.149204375606008 -1.755890989466358 7.948838331591519 4.252846068985002 -1.354174780213079 3.972139728465299 -2.368093965309794 3.970989358694878 -1.275739720450518 -10.19313023741471 10.03250173789567 -10.53232842096415 9.035484642111983 -10.46177202297931 10.17051760475854 2.742152961264321 -4.483278004021566 2.403715482025087 -5.482913926852961 2.46450769472513 -4.39566988852989 -11.64163930689924 6.726216799847979 -11.68206775371864 5.595744450929492 -11.94487170416447 6.7681756510519 -1.415135332853638 -6.94608800957697 -2.101288255754695 -7.750494143941382 -1.644927001856219 -6.768137293212735 -6.040314688080228 4.585570830692188 -5.634910717157917 3.438957385634206 -6.318254047018166 4.479738783865751 3.772799252705641 6.794011187827457 4.515734982915213 5.783518579648719 3.549899250107047 6.583107714048141 9.845815772556408 10.33921330332771 8.72919618033063 10.82374885991195 8.88637049790432 11.09763221655218 9.851713168959194 8.925334765489707 10.80529367403964 8.298672400676939 9.719293013185254 8.658317822126612 -6.901067860907201 8.240207827987678 -7.051326483111327 7.970596969093 -7.95491621140005 8.443563333066301 -5.586682549038167 9.82295175808374 -5.81087235396957 9.60212059242105 -6.636286790182588 10.25451423594288 -2.602139271092833 9.709540968608463 -2.904935435372564 9.664650374919933 -3.267147498582656 10.73903754096013 1.57906352729198 8.616547117844673 1.312847838604522 8.755549052967469 1.718269194621227 9.902160048390355 4.352689875045941 7.476531527549001 4.088748369108377 7.622855452442973 4.673772905118243 8.729027056202934 4.950684882683941 7.383317938390422 4.650677824799282 7.464055681726327 5.092860829896539 8.596961519928501 3.485437118801275 8.39470371481638 3.18930951732058 8.376616343648747 3.314412612124502 9.500890420785105 -1.598690305595134 8.762447828867947 -1.899933665045985 8.601317540266477 -2.264923659557595 9.583109588253944 -4.014504204957136 7.810915601141399 -4.31044475881743 7.646321463655264 -4.782135122017676 8.540628683683423 -4.944918115545426 8.916342100839811 -5.221899578824482 8.710983236931227 -5.814321154642443 9.53314649738221 -6.010383345488194 9.011817357987011 -6.218766714484236 8.786587269027372 -6.970145529470814 9.471478083619513 12.1442212012655 6.488431451935157 11.84971286259486 6.50445092814584 11.72931439275864 7.550679691730608 5.436096370687942 3.474098083261125 5.135131007202009 3.637393151327177 5.488416272723167 4.584737819363221 12.01932916880682 7.491045479827514 11.7289601973689 7.428774637327286 11.31174713342957 8.389041456769789 -2.39134695514438 7.08531697164199 -2.688828499347872 7.248095610817745 -2.198341011465316 8.180040094807449 11.6103318338582 7.058012136265086 11.33960582649887 6.922264435752206 10.7111442100928 7.765984863512145 -10.45780460366582 9.087031108132035 -10.74805210172731 9.151539204082358 -10.38147545947754 10.22169048139711 10.80522796946904 8.299426142429587 10.60120330713986 8.07946236572252 9.719217761431199 8.659042733514418 -11.68216800417867 5.595901151841711 -11.98844735752957 5.552942729837733 -11.9449518098545 6.768336867292641 -5.634496435233625 3.439184867669541 -5.900713396455597 3.30018383903054 -6.317853489068273 4.47995725505486 4.515824471600816 5.783647666803651 4.272044803960049 5.601173690129581 3.549987279452767 6.58323503844122 9.845588602994498 10.33886278974944 9.621409732253103 10.11806138536246 8.728966521278007 10.82339260922394 -6.010423861258278 9.011941989207395 -6.970193554858753 9.471587034582777 -6.787968605968723 9.720708966139664 -5.042628918682938 8.816203776538053 -5.938130179876525 9.503409018794248 -5.717198770774001 9.727500037880455 -2.4771281657538 8.609333718139764 -2.823820427044403 9.782772886274298 -2.520604148431285 9.824732043656677 0.4940333704000091 6.884722314694114 0.7434816770441161 8.153401315576275 1.01370411297787 8.02235870422696 3.579048963009202 5.527249581922334 3.767987851475939 6.806380999142068 4.029731018408183 6.656160081433367 4.987430164885366 7.149493275445536 4.871659888438184 6.024804147658597 4.688389354051153 7.233739411470873 3.692162256277692 7.359146195942491 3.197147972982466 8.365396172811582 3.493291293792061 8.383224321743267 -0.9252138314459013 7.941778656958044 -0.5010888893011865 7.024536617868603 -1.230796721377351 7.78903825988127 -3.583457915889256 6.865153699605307 -3.221365219127212 5.881871791901279 -3.87761673597965 6.697396046793376 -4.507248736247584 8.731902211037241 -4.021559745944325 7.803848348223497 -4.789252495370334 8.533496379906529 -5.655596031237238 9.703362544822191 -5.005465970002792 8.882122257586087 -5.879015884294735 9.493039482114664 12.14478024890936 6.736805458154219 11.94023890165135 5.624830788396087 11.85024427758389 6.752308579129163 12.14283763709443 6.442043886399361 11.73125571185489 7.505584812508928 12.02185570015984 7.566768504754241 6.268038727420731 5.474776872629459 6.437817250366501 6.556154450177642 6.743247791385032 6.401371977377769 11.94837906263659 6.158904965374388 11.31052831244434 7.107701851895589 11.58612788215819 7.233260150820028 -1.161015913433849 8.890149066805394 -1.073395569348677 9.991665786302482 -0.7779209136219883 9.825272029397965 11.61033482922322 7.05916121664057 10.71110780030712 7.767083893015066 10.93080057539455 7.97140033992074 -10.40959229367743 9.199877177991784 -10.44082428807349 8.154377363048935 -10.6996207909959 9.265362865873017 -11.4592516894927 5.204423171008229 -12.03267423410591 6.2623036348526 -11.72610224262008 6.303121306840652 -6.991555867399386 6.618692905334878 -6.486489299443168 5.513057706673341 -7.261779009522398 6.487650126571119 2.594874711865614 8.532891592041368 3.179902013339848 7.426720616761154 2.34740764779583 8.355450529378375 10.02678762383469 9.888296594928445 9.080636181045295 10.64395596575919 9.301557082651641 10.86801707684183 -4.908080489198695 8.827277128001134 -5.171691680823249 8.688617412622387 -5.785647758998728 9.537241381157172 -2.477356966879039 8.609267980107019 -2.783634433798757 8.65222484643942 -2.824082129607023 9.782697427019917 0.4942974535608793 6.884675877025379 0.2386820867089246 7.047718489624774 0.7437538596373056 8.153353285366208 3.579019696709793 5.527247574791911 3.304264902654809 5.644802179261861 3.767961516094372 6.806378559086036 4.871671759983433 6.024758632758172 4.563916490311018 6.02454101335168 4.688411113318542 7.233695395474622 3.131865063576585 7.495146351122008 2.845350157739452 7.371832530066978 2.578489150401894 8.470519743897006 -0.2995594809006691 7.190644557877686 -0.5550029855080121 7.02733308637674 -1.026197123972311 7.958064922804658 -3.364466087299869 5.756434020851 -3.63924298866122 5.638867507453358 -4.01388909856642 6.577406380998356 -4.595208407807088 6.220843177572365 -4.902936610581055 6.221062566755599 -4.996186739518726 7.264738208188124 -4.5801979245055 7.680872387890022 -4.872535989311253 7.618357848562964 -5.208623099405675 8.610438098348078 9.930435795209954 8.723360458360926 9.622695485060167 8.723578076682632 9.506893312035652 9.848262337106252 11.68679383842413 4.820806528320301 11.4010933228296 4.945995181335735 11.6709817879123 5.951759745750621 10.04349825550007 9.365039409526721 9.743489424522231 9.284300831811486 9.332208169824803 10.33809864246232 6.754756775286062 5.428533295660523 6.499138699141653 5.591569262435212 6.91902076309531 6.510762270686894 10.0264207380193 9.888097497687822 9.754836146645381 9.732476048171769 9.080260517751327 10.6437458782189 -1.695201464579465 8.909158721601118 -1.970122869278565 9.026384550142128 -1.618544575515055 10.01149266800221 -9.591302846728635 8.822595493203158 -9.899031319075601 8.822373286436831 -9.78321586192828 9.947065951688893 -11.45924781968514 5.204421096615239 -11.74577848271567 5.081109433850616 -12.0326708752261 6.262301283511819 -6.486248434573849 5.513244118226436 -6.741869014961592 5.350199016100515 -7.261540555938209 6.487834619938462 3.179105813721875 7.425997878045219 2.915163522363724 7.279674511815227 2.346612301949778 8.3547285559653 -4.571867659767827 7.685001879234275 -5.19800283550379 8.616111621538478 -4.935183100948795 8.756265694426407 -2.540742087517667 8.566909293518494 -2.827630048306525 7.385714519013615 -2.847312146644797 8.607725686728166 -0.8141520036824412 4.787247278753537 -0.4098877686924643 6.015532093705279 -0.1545507334713725 5.852053936942369 2.825907391035651 2.91447464078058 2.925963511056933 4.203776059192933 3.195347959271043 4.074387879869384 5.072049316640039 4.636612424534547 4.563860349506689 5.750794012321112 4.871615609433643 5.751025002883836 3.819561550989884 6.356088346280721 3.024697696615445 7.153515715233586 3.312968409168299 7.272667240672091 0.5078875531633522 5.922246885641981 1.040830647940628 5.061918861623786 0.2525454068644117 5.758776982927945 -2.899864803665365 4.123037899357319 -2.582070981663241 3.125168581569071 -3.169270650466771 3.993636507156769 -4.595210131123386 5.767368898608199 -4.795624677444554 4.652969215294837 -4.902938321178672 5.767605456015868 -4.551751286835951 6.370503943752767 -4.892659326416026 7.43553078191047 -4.600764251184403 7.500082132145554 9.931094966858455 9.09603213633477 9.715593417550867 7.897930479543868 9.62335466645721 9.096263129355123 9.930735827967505 8.723240740338639 9.507213151533417 9.848150076420589 9.806255898006034 9.932396455442374 11.8210066322793 5.641957047386217 11.27328617849653 4.65094501386657 11.53273560497294 5.761107365348592 10.04286228329696 9.365040585658122 9.331545345119851 10.3380801892938 9.600660148426115 10.49793464954639 7.535739623001351 6.593692710145172 7.831890891357638 7.647449006016194 8.087231527084098 7.48397886482603 -0.5241565780873642 10.2562204738642 -0.4864394008526751 11.34992170397917 -0.217035001175078 11.22051945101113 -9.406536758183124 8.082332868907633 -9.899645775372855 9.112810577833072 -9.591917313190002 9.113046440972934 -11.03306145856628 4.858172341658545 -11.86906432189366 5.730018181815798 -11.58077780285274 5.849167122095434 -7.929185938596586 7.741276002141859 -7.288134711684656 6.706399437704047 -8.184528376761124 7.577795649447086 1.501843717442459 10.20233969252613 1.965537662966534 9.040762659994472 1.240099738841787 10.05211935322896 -2.827699190618862 7.385692878294297 -3.114245837009395 7.509005844610631 -2.847390549560736 8.607703896819539 -0.8142387846834531 4.787281714610788 -1.051017422478481 4.980689694303933 -0.4099715308854265 6.015565535980942 2.825863560250873 2.914464272130583 2.545775655456215 3.010294430635846 2.925926509520307 4.203765160541554 5.072050792302683 4.636426793683894 4.779368647532038 4.552517088168444 4.563890708589148 5.750621555024526 3.819606376355887 6.356099602651848 3.57245010124174 6.162515789484883 3.024745146625805 7.153529587802932 1.040750145448171 5.061814419743752 0.8039557843155296 4.868386050648546 0.2524662820454121 5.758674099467705 -2.582061023304272 3.125174822309014 -2.862143473626441 3.02934388643336 -3.16926160391908 3.993642131390482 -4.795648217881778 4.653056670178607 -5.088339457465029 4.736985317881022 -4.902938859512489 5.767695125229697 -3.565535127923351 6.176115265244123 -3.812677839446398 6.369703167130202 -3.264977022005007 7.360700876068053 0.8403367238430468 10.23718379894077 0.5602462057335531 10.14135523217399 0.1908371556963209 11.30127999331571 9.715279811570234 7.898164399687699 9.422605508712325 7.982071061332078 9.623011104925984 9.096494743366428 1.965753936980625 9.040883578076532 1.690994369615404 8.923329790133387 1.240320107445503 10.05224320831427 11.27329027881219 4.650949558498282 11.02614506513587 4.844534047078025 11.53273910555405 5.761112050140519 7.535684312874684 6.593713095228133 7.29888869613132 6.787141360236949 7.831834683618196 7.647469643366902 -0.5243639138978562 10.25621995077311 -0.8044472733028646 10.35205112217272 -0.4866562948651038 11.34992151046864 -9.406679726772429 8.082195684650662 -9.699361351824194 7.998267172378847 -9.899801537804553 9.112667271309139 -11.03307087735487 4.858169344732327 -11.28020427240938 4.664581839190625 -11.86907291533646 5.730015976303339 -7.288344436481048 6.706182540603755 -7.525136251228246 6.512774038618834 -8.184740686029647 7.577576093726885 -2.9766841745925 7.241548697681889 -3.565543648095952 6.176113404817853 -3.264986470492337 7.360699251177363 -2.447883322974987 2.751568552554161 -1.842477514017635 3.89427599955851 -1.614034516523058 3.69108995963267 2.003331820157259 -0.1121430521644828 2.058836564324649 1.179529586358521 2.331326469065933 1.063849400045171 5.590202303166725 3.422160988082945 4.776235014799291 4.339683957172108 5.06699202493466 4.430039021249202 4.792858524577 5.351708305204213 3.811958992720328 5.9163916658123 4.062104287424121 6.106097355200138 1.961101285046039 3.826234095799287 2.634831518947544 3.067113124415407 1.732641496307822 3.623029203228422 -2.020157793277054 1.09577077218773 -1.738045133809642 0.08407938248913949 -2.292642079395596 0.9800899134956276 -4.815052538517008 4.360912519372523 -5.338295125527744 3.35305854322367 -5.105817903968173 4.45128774765985 -3.757921129518451 5.992529127627781 -4.607363580042399 5.115621178425016 -4.00805316343177 6.182238803780592 -0.6027579114285769 11.93512829791986 -0.2653383113282294 10.72511841245179 -0.8752508527681888 11.81945025564948 0.4600121899457396 11.43059484807465 0.8401312322340304 10.23711634359213 0.1906229618076444 11.30120722624912 9.961904685985054 7.921317673188637 9.399438483820717 6.837739257140222 9.671155628119442 8.011670098567954 11.38672699552658 5.073226793175415 10.59662327021988 4.257574427615073 11.13659264145704 5.26293318678408 8.209859950819201 6.723645760614549 8.678594971015968 7.712374678279593 8.907055491034399 7.509169243790011 0.5636269487086308 10.7579458860558 0.5637591081185163 11.85131753997724 0.8362441670383727 11.73563610545614 -9.148746431801881 7.100180552171004 -9.923439640128624 7.94197383515283 -9.632683886221651 8.032348723175383 -10.40054945299948 4.523433465522471 -11.44077742670279 5.149367724775502 -11.19065494879698 5.339077459104777 -8.796927104377645 7.780796373855483 -7.986534988438879 6.86769660754922 -9.025385134024679 7.577611382133364 -2.447892436598347 2.751575933223066 -2.652886586709821 2.981172518037141 -1.842485880906245 3.894282984607421 2.003168542977567 -0.1121808863049317 1.721200557589594 -0.03050824392382967 2.058702137872348 1.179490512144429 5.590195069697714 3.422055694461649 5.338722500134333 3.256005850783021 4.776238298562009 4.339587993653761 4.792795272598981 5.351648803674095 4.602007058565834 5.100676746162371 3.811893721850205 5.91632865729288 2.634784447227349 3.067013910342503 2.42977377423855 2.837408746390241 1.732596091264525 3.622932693977843 -1.737830524364876 0.08416656496258945 -2.019797238494305 0.002493112357009886 -2.292451735554148 0.9801620760153762 -5.338230787118782 3.352811588678597 -5.589690939112673 3.518873465351141 -5.105795936552603 4.451049761509455 -4.607296183997103 5.115620237273077 -4.798095314695769 5.366593423150325 -4.007980502882582 6.182234904595543 -7.986555889325445 6.867667979007165 -8.191559998099267 6.638073613249739 -9.025406708161478 7.577581768393026 -0.2658513924094679 10.72501539099795 -0.5478243079042257 10.64334171938851 -0.8757989830207733 11.81932769923068 9.399457966750671 6.837717751034001 9.147982137033422 7.003769477635871 9.671177663608312 8.011648001645453 10.59660707242216 4.257565553010063 10.40580607527824 4.508535786249877 11.13657856985533 5.262923170214947 8.209868148312985 6.723639797819137 8.004859697248556 6.953245674626219 8.678603577310881 7.712368521680295 0.5639647615244471 10.75793337704772 0.2819922366942799 10.83960535262652 0.5641211542755882 11.85130502777144 -9.148596913292062 7.10036550451596 -9.400067489701645 6.934305838027768 -9.923274874606658 7.942172818902312 -10.40053026270629 4.523460414640201 -10.59133362882067 4.272487777171353 -11.44075930953975 5.149392890475632 -3.424488619818151 2.051510872033782 -4.451447721073044 1.320914993730629 -3.607048434730841 2.29931948229028 1.25371906925343 -2.068980133225255 0.9100342911362658 -3.244662667896889 0.9829208397823459 -1.955645742096218 6.427844467605201 2.657369518137107 5.360460969395073 3.26317312659965 5.602447748904911 3.442765449294591 5.963050307158162 4.598401472884455 4.862897871431918 4.888020304292075 5.05696668467419 5.136464285890265 4.566975869361551 1.677618748944787 3.554610122510936 2.020117489460222 3.737188382645553 2.26793412788283 -0.6344515222543741 -3.052113042568756 -1.200876406250898 -2.153962787728282 -0.930079256085121 -2.040628396656744 -5.404912574038195 3.292132349355072 -6.230314461078931 2.506727066998844 -5.646887013182357 3.471735037880793 -4.807767079003931 4.950234886829042 -5.860966101770035 4.324810658490876 -5.001847324719297 5.198679461186795 -8.424882873013623 5.988174923117744 -9.605562586612063 6.45041964919662 -9.422991708989319 6.698226291653528 -2.128911530962449 11.39370619047285 -1.858108794091689 11.50704281919493 -1.504539573232881 10.29731278098825 9.827835858960567 6.402761707059793 8.940439791553009 5.558433182247473 9.585846775178787 6.582357230862296 10.67860142778535 4.504886653852445 9.698961064470598 3.923137010221114 10.48451955824054 4.753328410402241 9.475381065925804 6.418838346460516 8.616699388997306 5.807979933582672 9.292803232787765 6.666654121823592 1.804515688494758 11.42193482798765 2.075320240595833 11.30860473085816 1.789653651069088 10.33114660586087 -8.777986349147227 5.884762204148979 -9.783395815642388 6.431566205911736 -9.541410130717059 6.611166294790215 -9.560048236954533 4.233786674396139 -10.73377188997996 4.567113960877165 -10.53968755340356 4.815558038235333 -4.451445388161562 1.32091150302849 -4.605144881901487 1.589257774717442 -3.607046360323376 2.299316214686616 0.911036215103248 -3.244569414619009 0.6302815542887075 -3.165285501969137 0.983746179428347 -1.95554251611689 6.427837637908099 2.657239812949093 6.247832911031965 2.418709446125305 5.360460556278488 3.263054726837308 5.963041769819713 4.598377594103866 5.842530324928217 4.30624879890488 4.862889228392628 4.887996023993652 4.566949491164673 1.677515046485934 4.413267843553816 1.409146381545383 3.554584669588645 2.020016521937351 -0.6343308283330909 -3.052077616634356 -0.9150620653111302 -3.131377159015987 -1.200769992778023 -2.153936368019525 -6.230355841487682 2.506952398274932 -6.410349313279072 2.745551901517965 -5.646903438454379 3.471945281263957 -5.860956446689808 4.324806852545208 -5.981476839089077 4.616905572027501 -5.0018371782836 5.198675172178971 -9.560036157906882 4.233835501329801 -9.680555144833743 3.941738909819654 -10.73376020318313 4.567161406600481 -8.424843361141196 5.988249141808261 -8.578539572529392 5.719905180363528 -9.605521278105222 6.450498456879819 -2.128002541521889 11.39390767417695 -1.503710088307944 10.29746899243481 -1.784459266712324 10.21817791926077 8.940289758199278 5.558664658271775 8.760286641389778 5.797195116769234 9.585670957141998 6.582604959215122 9.698953334175988 3.923134326470514 9.578437925476589 4.215263271704036 10.48451321445017 4.75332441468671 8.616695792321206 5.807984438043635 8.463004396435052 6.076345229884326 9.292799280948527 6.666658905933183 1.508981687625615 10.41044201964916 1.804587711918147 11.42192402718496 1.789719178778943 10.33113589358192 -8.778070540410155 5.884638780422247 -8.958068784782792 5.646039814873298 -9.78348840858556 6.431427333718194 -5.470301552639625 1.49112445145663 -6.665204895598771 1.080079427803008 -5.581515389563202 1.779680751651247 -0.7296916084496221 -4.847825225879011 -1.239323924915554 -5.965180848058259 -0.983402713437965 -4.703812054329481 6.429372105238576 3.070798693737436 7.484425162189432 2.632960455440022 6.272223592574061 2.816627919331381 7.309598879931788 4.100114165975394 6.172386671636989 4.114089657735745 6.296584270959485 4.404670451417599 6.673165340113267 1.46069710806245 5.596511227521427 1.504273208093048 5.707708117320678 1.792847359453377 1.671539516001294 -5.76057523486305 0.9391731330657233 -4.970479558128506 1.189951666304455 -4.821454150550515 -7.373905047151883 2.420445369343553 -6.47597200022688 3.112499440921925 -6.318837669790733 2.858262985955836 -6.033213721615906 4.212408827890807 -7.217274505620218 3.886515904012549 -6.15656019014606 4.503325440700059 -8.531387785648066 4.071560705961415 -9.756070774288414 4.083774492867834 -9.632726737808362 4.374689417968849 -8.30493748442003 4.330441993887243 -9.577449855087568 4.441364589949741 -9.466235265510377 4.729916703274379 -4.223502876719913 9.587379479106971 -3.969797935985473 9.731396764551324 -3.445407544471821 8.581711696651405 9.236966853624979 4.947401304070755 9.394113356902082 4.693230341527976 8.259831785298545 4.22248881572931 9.704809832242122 4.035789645949894 8.603472821994846 3.73267274812119 9.581467689801546 4.326736376942702 9.490922071357993 4.298600231082052 8.499707389419065 3.92265445724289 9.384156338551122 4.58884088651304 3.896539175924027 9.654215450822882 4.150228742439791 9.510185577491333 3.726479854733768 8.581304777485496 -9.423216318515408 4.472155017098237 -9.27255740290623 4.730284297664632 -8.288675878665934 4.342030565834466 -6.66522566276802 1.08014405010757 -6.742837437992399 1.380267567573475 -5.581533433821307 1.779741156120973 -1.238853797483174 -5.965278003164967 -1.507311542582164 -5.853615238692918 -0.9830102772306847 -4.703893449025443 7.484424883292007 2.633010383882151 7.406514263464952 2.345939879885023 6.272222931238717 2.816675323673188 7.313853897789303 4.322100817522392 7.275717967010026 4.025212024150625 6.17664659304196 4.336469780392419 6.661012628610327 1.088548563306246 6.56636052877616 0.7409570961453518 5.584453830074927 1.134419119775722 2.351564991295644 -5.401406404498824 2.074093047184209 -5.557442487260533 1.55075082268886 -4.68077587183498 -7.395552620997582 3.131023308700499 -7.452434806027009 3.415760819294903 -6.457330494885647 3.767389427237792 -7.217251753191022 3.88649397765239 -7.257883350292583 4.200173622039879 -6.156536674490829 4.50330220183436 -8.318962544481733 4.428387293992502 -8.385053749840118 4.14527160788125 -9.454913042633246 4.545565996067015 -8.531387766736476 4.071564738885102 -8.572015826007476 3.75788512580678 -9.756070755442112 4.083778519245252 -8.304936126238683 4.330442324466572 -8.382542219297406 4.030317796828685 -9.57744845601994 4.441365389578568 -4.223053139952752 9.587572180154115 -3.445006685817724 8.581866582107013 -3.713464068600874 8.470204180724483 9.236995531655577 4.947344928234697 8.259855461770449 4.22243918171893 8.181948701807347 4.50951019832294 8.521518244742271 3.901937992931166 8.477299227918195 4.198338886371126 9.490271124852209 4.51095639480711 8.423503269721058 4.130100135004379 8.325702677385262 4.476698785747071 9.285303626375194 4.82533710714792 4.484670822436756 8.19170513651676 5.071017670644485 9.072023935372219 4.759512355616062 8.031340542406799 -7.30736255645752 2.298931442533629 -8.572230339050293 2.298931442533629 -7.325151562690735 2.608416926275309 -7.325151562690734 -0.7002259076981166 -8.554449081420897 -0.7002259076981166 -7.307362556457519 -0.4100161815854154 7.36809253692627 3.474163313404961 8.51151168346405 3.474163313404961 7.325151562690735 3.179824033527633 8.466757535934448 4.213194162628142 7.36809253692627 3.916873597429247 7.410417795181274 4.213194162628142 8.450794816017149 2.424425283844014 7.410417795181274 2.064646501630932 7.428804636001586 2.424425283844014 8.466757535934448 -0.1701258822565584 7.428804636001587 -0.4879306383211063 7.410417795181274 -0.1701258822565584 -7.36809253692627 3.482318071436428 -8.51151168346405 3.482318071436428 -7.410417795181274 3.769580330403504 -7.325151562690735 3.822338718081032 -8.554449081420898 3.822338718081032 -7.36809253692627 4.135710571823177 -8.466757535934448 3.769580330403504 -8.51151168346405 4.135710571823177 -7.325151562690735 2.608416926275308 -8.572230339050293 2.298931442533628 -8.554449081420898 2.608416926275308 -8.554449081420898 -0.7002259076981161 -8.572230339050293 -0.4100161815854152 -7.30736255645752 -0.4100161815854152 8.51151168346405 3.474163313404961 8.554449081420898 3.179824033527634 7.325151562690735 3.179824033527634 8.51151168346405 3.916873597429247 8.466757535934448 2.064646501630932 7.410417795181274 2.064646501630932 8.450794816017151 2.424425283844015 8.466757535934448 -0.1701258822565581 8.450794816017151 -0.4879306383211062 7.428804636001587 -0.4879306383211062</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"336\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 10 9 2 10 1 11 12 12 6 13 0 14 6 15 14 16 1 17 16 18 0 19 8 20 8 21 2 22 18 23 10 24 20 25 2 26 22 27 10 28 1 29 24 30 6 31 12 32 16 33 12 34 0 35 26 36 14 37 6 38 14 39 22 40 1 41 28 42 16 43 8 44 30 45 8 46 18 47 20 48 18 49 2 50 32 51 20 52 10 53 34 54 10 55 22 56 36 57 24 58 12 59 24 60 26 61 6 62 38 63 12 64 16 65 26 66 40 67 14 68 42 69 22 70 14 71 28 72 44 73 16 74 28 75 8 76 30 77 30 78 18 79 46 80 20 81 48 82 18 83 32 84 50 85 20 86 34 87 32 88 10 89 52 90 34 91 22 92 36 93 54 94 24 95 38 96 36 97 12 98 24 99 56 100 26 101 44 102 38 103 16 104 58 105 40 106 26 107 40 108 42 109 14 110 42 111 52 112 22 113 60 114 44 115 28 116 62 117 28 118 30 119 64 120 30 121 46 122 48 123 46 124 18 125 50 126 48 127 20 128 66 129 50 130 32 131 34 132 68 133 32 134 52 135 70 136 34 137 72 138 54 139 36 140 54 141 56 142 24 143 74 144 36 145 38 146 56 147 58 148 26 149 76 150 38 151 44 152 58 153 78 154 40 155 40 156 80 157 42 158 82 159 52 160 42 161 60 162 84 163 44 164 62 165 60 166 28 167 64 168 62 169 30 170 86 171 64 172 46 173 88 174 46 175 48 176 50 177 90 178 48 179 66 180 92 181 50 182 68 183 66 184 32 185 34 186 70 187 68 188 52 189 94 190 70 191 96 192 54 193 72 194 74 195 72 196 36 197 54 198 98 199 56 200 76 201 74 202 38 203 56 204 100 205 58 206 84 207 76 208 44 209 58 210 102 211 78 212 78 213 80 214 40 215 80 216 82 217 42 218 52 219 82 220 94 221 104 222 84 223 60 224 62 225 106 226 60 227 64 228 108 229 62 230 86 231 110 232 64 233 88 234 86 235 46 236 90 237 88 238 48 239 92 240 90 241 50 242 112 243 92 244 66 245 68 246 114 247 66 248 70 249 116 250 68 251 94 252 104 253 70 254 118 255 96 256 72 257 96 258 98 259 54 260 120 261 72 262 74 263 98 264 100 265 56 266 122 267 74 268 76 269 100 270 102 271 58 272 124 273 76 274 84 275 102 276 126 277 78 278 78 279 128 280 80 281 80 282 130 283 82 284 82 285 124 286 94 287 94 288 84 289 104 290 106 291 104 292 60 293 108 294 106 295 62 296 110 297 108 298 64 299 132 300 110 301 86 302 134 303 86 304 88 305 90 306 136 307 88 308 92 309 138 310 90 311 112 312 140 313 92 314 114 315 112 316 66 317 68 318 116 319 114 320 70 321 104 322 116 323 142 324 96 325 118 326 118 327 72 328 120 329 144 330 98 331 96 332 122 333 120 334 74 335 98 336 146 337 100 338 124 339 122 340 76 341 100 342 148 343 102 344 94 345 124 346 84 347 102 348 150 349 126 350 78 351 126 352 128 353 128 354 130 355 80 356 82 357 130 358 124 359 106 360 116 361 104 362 108 363 152 364 106 365 110 366 154 367 108 368 132 369 156 370 110 371 134 372 132 373 86 374 136 375 134 376 88 377 138 378 136 379 90 380 140 381 138 382 92 383 158 384 140 385 112 386 160 387 112 388 114 389 152 390 114 391 116 392 162 393 142 394 118 395 142 396 144 397 96 398 164 399 118 400 120 401 144 402 146 403 98 404 166 405 120 406 122 407 146 408 148 409 100 410 130 411 122 412 124 413 148 414 150 415 102 416 150 417 168 418 126 419 126 420 170 421 128 422 128 423 166 424 130 425 152 426 116 427 106 428 154 429 152 430 108 431 156 432 154 433 110 434 172 435 156 436 132 437 174 438 132 439 134 440 136 441 176 442 134 443 178 444 136 445 138 446 140 447 180 448 138 449 158 450 182 451 140 452 160 453 158 454 112 455 152 456 160 457 114 458 162 459 184 460 142 461 162 462 118 463 164 464 186 465 144 466 142 467 164 468 120 469 166 470 188 471 146 472 144 473 166 474 122 475 130 476 146 477 190 478 148 479 192 480 150 481 148 482 150 483 194 484 168 485 126 486 168 487 170 488 170 489 166 490 128 491 154 492 160 493 152 494 156 495 196 496 154 497 172 498 198 499 156 500 174 501 172 502 132 503 176 504 174 505 134 506 178 507 176 508 136 509 180 510 178 511 138 512 182 513 180 514 140 515 200 516 182 517 158 518 196 519 158 520 160 521 202 522 184 523 162 524 184 525 186 526 142 527 204 528 162 529 164 530 186 531 188 532 144 533 170 534 164 535 166 536 188 537 190 538 146 539 190 540 192 541 148 542 192 543 194 544 150 545 194 546 206 547 168 548 168 549 204 550 170 551 196 552 160 553 154 554 156 555 198 556 196 557 208 558 198 559 172 560 210 561 172 562 174 563 212 564 174 565 176 566 214 567 176 568 178 569 180 570 216 571 178 572 182 573 218 574 180 575 200 576 220 577 182 578 200 579 158 580 196 581 202 582 222 583 184 584 202 585 162 586 204 587 184 588 224 589 186 590 204 591 164 592 170 593 226 594 188 595 186 596 228 597 190 598 188 599 230 600 192 601 190 602 232 603 194 604 192 605 194 606 234 607 206 608 168 609 206 610 204 611 198 612 200 613 196 614 208 615 236 616 198 617 210 618 208 619 172 620 212 621 210 622 174 623 214 624 212 625 176 626 216 627 214 628 178 629 218 630 216 631 180 632 220 633 218 634 182 635 236 636 220 637 200 638 238 639 222 640 202 641 222 642 224 643 184 644 206 645 202 646 204 647 224 648 226 649 186 650 226 651 228 652 188 653 228 654 230 655 190 656 230 657 232 658 192 659 232 660 234 661 194 662 234 663 238 664 206 665 198 666 236 667 200 668 240 669 236 670 208 671 242 672 208 673 210 674 244 675 210 676 212 677 246 678 212 679 214 680 216 681 248 682 214 683 218 684 250 685 216 686 220 687 252 688 218 689 236 690 254 691 220 692 238 693 256 694 222 695 206 696 238 697 202 698 222 699 258 700 224 701 224 702 260 703 226 704 262 705 228 706 226 707 264 708 230 709 228 710 266 711 232 712 230 713 268 714 234 715 232 716 234 717 270 718 238 719 240 720 254 721 236 722 242 723 240 724 208 725 244 726 242 727 210 728 246 729 244 730 212 731 248 732 246 733 214 734 250 735 248 736 216 737 252 738 250 739 218 740 254 741 252 742 220 743 270 744 256 745 238 746 256 747 258 748 222 749 258 750 260 751 224 752 260 753 262 754 226 755 262 756 264 757 228 758 264 759 266 760 230 761 266 762 268 763 232 764 268 765 270 766 234 767 240 768 272 769 254 770 242 771 274 772 240 773 276 774 242 775 244 776 278 777 244 778 246 779 280 780 246 781 248 782 282 783 248 784 250 785 252 786 284 787 250 788 254 789 286 790 252 791 288 792 256 793 270 794 258 795 256 796 290 797 258 798 292 799 260 800 260 801 294 802 262 803 262 804 296 805 264 806 266 807 264 808 298 809 300 810 268 811 266 812 302 813 270 814 268 815 272 816 286 817 254 818 274 819 272 820 240 821 276 822 274 823 242 824 278 825 276 826 244 827 280 828 278 829 246 830 282 831 280 832 248 833 284 834 282 835 250 836 286 837 284 838 252 839 302 840 288 841 270 842 288 843 290 844 256 845 258 846 290 847 292 848 292 849 294 850 260 851 294 852 296 853 262 854 296 855 298 856 264 857 300 858 266 859 298 860 300 861 302 862 268 863 272 864 304 865 286 866 274 867 306 868 272 869 276 870 308 871 274 872 310 873 276 874 278 875 312 876 278 877 280 878 314 879 280 880 282 881 316 882 282 883 284 884 286 885 318 886 284 887 320 888 288 889 302 890 322 891 290 892 288 893 292 894 290 895 324 896 294 897 292 898 326 899 294 900 328 901 296 902 296 903 330 904 298 905 300 906 298 907 332 908 302 909 300 910 334 911 304 912 318 913 286 914 306 915 304 916 272 917 308 918 306 919 274 920 310 921 308 922 276 923 312 924 310 925 278 926 314 927 312 928 280 929 316 930 314 931 282 932 318 933 316 934 284 935 334 936 320 937 302 938 320 939 322 940 288 941 322 942 324 943 290 944 292 945 324 946 326 947 294 948 326 949 328 950 328 951 330 952 296 953 330 954 332 955 298 956 334 957 300 958 332 959 304 960 324 961 318 962 306 963 326 964 304 965 308 966 328 967 306 968 330 969 308 970 310 971 332 972 310 973 312 974 334 975 312 976 314 977 316 978 320 979 314 980 318 981 322 982 316 983 314 980 320 979 334 984 316 983 322 982 320 985 318 986 324 987 322 988 326 989 324 990 304 991 328 992 326 993 306 994 328 995 308 970 330 969 330 996 310 997 332 998 334 999 332 1000 312 1001</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1230\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1231\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"336\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 4 7 5 3 5 9 4 3 11 5 7 13 4 15 7 9 5 17 19 3 9 3 21 11 4 11 23 13 7 25 5 13 17 7 15 27 4 23 15 9 17 29 19 9 31 3 19 21 11 21 33 23 11 35 13 25 37 7 27 25 17 13 39 15 41 27 15 23 43 17 45 29 31 9 29 47 19 31 19 49 21 21 51 33 11 33 35 23 35 53 25 55 37 13 37 39 27 57 25 17 39 45 27 41 59 15 43 41 23 53 43 29 45 61 31 29 63 47 31 65 19 47 49 21 49 51 33 51 67 33 69 35 35 71 53 37 55 73 25 57 55 39 37 75 27 59 57 45 39 77 41 79 59 43 81 41 43 53 83 45 85 61 29 61 63 31 63 65 47 65 87 49 47 89 49 91 51 51 93 67 33 67 69 69 71 35 71 95 53 73 55 97 37 73 75 57 99 55 39 75 77 59 101 57 45 77 85 79 103 59 41 81 79 43 83 81 95 83 53 61 85 105 61 107 63 63 109 65 65 111 87 47 87 89 49 89 91 51 91 93 67 93 113 67 115 69 69 117 71 71 105 95 73 97 119 55 99 97 75 73 121 57 101 99 77 75 123 59 103 101 85 77 125 79 127 103 81 129 79 83 131 81 95 125 83 105 85 95 61 105 107 63 107 109 65 109 111 87 111 133 89 87 135 89 137 91 91 139 93 93 141 113 67 113 115 115 117 69 117 105 71 119 97 143 121 73 119 97 99 145 75 121 123 101 147 99 77 123 125 103 149 101 85 125 95 127 151 103 129 127 79 81 131 129 125 131 83 105 117 107 107 153 109 109 155 111 111 157 133 87 133 135 89 135 137 91 137 139 93 139 141 113 141 159 115 113 161 117 115 153 119 143 163 97 145 143 121 119 165 99 147 145 123 121 167 101 149 147 125 123 131 103 151 149 127 169 151 129 171 127 131 167 129 107 117 153 109 153 155 111 155 157 133 157 173 135 133 175 135 177 137 139 137 179 139 181 141 141 183 159 113 159 161 115 161 153 143 185 163 165 119 163 143 145 187 167 121 165 145 147 189 131 123 167 149 191 147 149 151 193 169 195 151 171 169 127 129 167 171 153 161 155 155 197 157 157 199 173 133 173 175 135 175 177 137 177 179 139 179 181 141 181 183 159 183 201 161 159 197 163 185 203 143 187 185 165 163 205 145 189 187 167 165 171 147 191 189 149 193 191 151 195 193 169 207 195 171 205 169 155 161 197 197 199 157 173 199 209 175 173 211 177 175 213 179 177 215 179 217 181 181 219 183 183 221 201 197 159 201 185 223 203 205 163 203 187 225 185 171 165 205 187 189 227 189 191 229 191 193 231 193 195 233 207 235 195 205 207 169 197 201 199 199 237 209 173 209 211 175 211 213 177 213 215 179 215 217 181 217 219 183 219 221 201 221 237 203 223 239 185 225 223 205 203 207 187 227 225 189 229 227 191 231 229 193 233 231 195 235 233 207 239 235 201 237 199 209 237 241 211 209 243 213 211 245 215 213 247 215 249 217 217 251 219 219 253 221 221 255 237 223 257 239 203 239 207 225 259 223 227 261 225 227 229 263 229 231 265 231 233 267 233 235 269 239 271 235 237 255 241 209 241 243 211 243 245 213 245 247 215 247 249 217 249 251 219 251 253 221 253 255 239 257 271 223 259 257 225 261 259 227 263 261 229 265 263 231 267 265 233 269 267 235 271 269 255 273 241 241 275 243 245 243 277 247 245 279 249 247 281 251 249 283 251 285 253 253 287 255 271 257 289 291 257 259 261 293 259 263 295 261 265 297 263 299 265 267 267 269 301 269 271 303 255 287 273 241 273 275 243 275 277 245 277 279 247 279 281 249 281 283 251 283 285 253 285 287 271 289 303 257 291 289 293 291 259 261 295 293 263 297 295 265 299 297 299 267 301 269 303 301 287 305 273 273 307 275 275 309 277 279 277 311 281 279 313 283 281 315 285 283 317 285 319 287 303 289 321 289 291 323 325 291 293 327 293 295 297 329 295 299 331 297 333 299 301 335 301 303 287 319 305 273 305 307 275 307 309 277 309 311 279 311 313 281 313 315 283 315 317 285 317 319 303 321 335 289 323 321 291 325 323 327 325 293 329 327 295 297 331 329 299 333 331 333 301 335 319 325 305 305 327 307 307 329 309 311 309 331 313 311 333 315 313 335 315 321 317 317 323 319 335 321 315 321 323 317 323 325 319 305 325 327 307 327 329 331 309 329 333 311 331 313 333 335</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1230\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1235\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1238\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1236\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1237\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1236\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"158\" source=\"#ID1240\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"474\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1240\">-0.2632333636283875 0.1463004350662231 0.4053278565406799 -0.2554321587085724 0.1350731551647186 0.3807511031627655 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2554321587085724 0.1350731551647186 0.3807511031627655 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2632333636283875 0.1463004350662231 0.4053278565406799 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.3599225878715515 0.1203248128294945 0.3703152239322662 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3599225878715515 0.1203248128294945 0.3703152239322662 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.3616665303707123 0.1178532540798187 0.3428008258342743 -0.3616665303707123 0.1178532540798187 0.3428008258342743 -0.3599225878715515 0.2193765044212341 0.3321252465248108 -0.3599225878715515 0.2193765044212341 0.3321252465248108 -0.3686836659908295 0.1289883852005005 0.3880452811717987 -0.3686836659908295 0.1289883852005005 0.3880452811717987 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.3685232102870941 0.112412266433239 0.3536622524261475 -0.3685232102870941 0.112412266433239 0.3536622524261475 -0.3686836659908295 0.2251724451780319 0.3510836064815521 -0.3686836659908295 0.2251724451780319 0.3510836064815521 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.3948188722133637 0.1214067563414574 0.3719117343425751 -0.3948188722133637 0.1214067563414574 0.3719117343425751 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.3685232102870941 0.213781014084816 0.3145064115524292 -0.3685232102870941 0.213781014084816 0.3145064115524292 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.331480085849762 0.3918247520923615 0.2766976058483124 -0.331480085849762 0.3918247520923615 0.2766976058483124 -0.380407452583313 0.1333868056535721 0.3983803391456604 -0.380407452583313 0.1333868056535721 0.3983803391456604 -0.3475818336009979 0.391990065574646 0.2504473626613617 -0.3475818336009979 0.391990065574646 0.2504473626613617 -0.3847377300262451 0.1070445701479912 0.3405502736568451 -0.3847377300262451 0.1070445701479912 0.3405502736568451 -0.3477009534835815 0.3914711475372315 0.3060665428638458 -0.3477009534835815 0.3914711475372315 0.3060665428638458 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.406432032585144 0.1333922743797302 0.3976973593235016 -0.406432032585144 0.1333922743797302 0.3976973593235016 -0.377187043428421 0.3922291398048401 0.2198213487863541 -0.377187043428421 0.3922291398048401 0.2198213487863541 -0.3847377300262451 0.2087883651256561 0.3013535141944885 -0.3847377300262451 0.2087883651256561 0.3013535141944885 -0.4076659083366394 0.1068173423409462 0.3408112823963165 -0.4076659083366394 0.1068173423409462 0.3408112823963165 -0.4203027784824371 0.1285581141710281 0.3884540498256683 -0.4203027784824371 0.1285581141710281 0.3884540498256683 -0.4076659083366394 0.2091143876314163 0.301336407661438 -0.4076659083366394 0.2091143876314163 0.301336407661438 -0.4257177710533142 0.1123063191771507 0.352569580078125 -0.4257177710533142 0.1123063191771507 0.352569580078125 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.4285887479782105 0.1201155632734299 0.3699979782104492 -0.4285887479782105 0.1201155632734299 0.3699979782104492 -0.4184880256652832 0.3922127485275269 0.2197222262620926 -0.4184880256652832 0.3922127485275269 0.2197222262620926 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.3817976415157318 0.07198629528284073 0.2429685145616531 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4114072024822235 0.07156319916248322 0.2420414835214615 -0.3817976415157318 0.07198629528284073 0.2429685145616531 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4114072024822235 0.07156319916248322 0.2420414835214615 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.4257177710533142 0.2131323367357254 0.3136953711509705 -0.4257177710533142 0.2131323367357254 0.3136953711509705 -0.449212372303009 0.3919951915740967 0.2502450942993164 -0.449212372303009 0.3919951915740967 0.2502450942993164 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4313807189464569 0.1182028353214264 0.3435654938220978 -0.4313807189464569 0.1182028353214264 0.3435654938220978 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4203027784824371 0.2257343530654907 0.3509951531887054 -0.4203027784824371 0.2257343530654907 0.3509951531887054 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4393015503883362 0.3914935886859894 0.3062659204006195 -0.4393015503883362 0.3914935886859894 0.3062659204006195 -0.4285887479782105 0.2193097323179245 0.331741213798523 -0.4285887479782105 0.2193097323179245 0.331741213798523 -0.5296262502670288 0.1466700881719589 0.4061391949653626 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.5353522300720215 0.135115921497345 0.3808478713035584 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.5353522300720215 0.135115921497345 0.3808478713035584 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.5296262502670288 0.1466700881719589 0.4061391949653626 -0.455159991979599 0.3916418254375458 0.2787977755069733 -0.455159991979599 0.3916418254375458 0.2787977755069733 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5619023442268372 0.1410554200410843 0.431704044342041</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1237\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"158\" source=\"#ID1241\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"474\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1241\">7.154997292855769e-005 -0.9095757112452636 0.4155382297614439 6.852755594235001e-005 -0.909576342414341 0.4155368486959054 0.0001263487641218279 -0.9095642658499487 0.4155632687387494 0.0001263487641218279 -0.9095642658499487 0.4155632687387494 -6.852755594235001e-005 0.909576342414341 -0.4155368486959054 -0.0001263487641218279 0.9095642658499487 -0.4155632687387494 -0.0001263487641218279 0.9095642658499487 -0.4155632687387494 -7.154997292855769e-005 0.9095757112452636 -0.4155382297614439 0.9447151072035335 -0.3209045653834627 0.06733220728200723 0.4384268685113827 -0.8133494384010177 0.3824193666906158 0.7939855858878951 -0.1106473800233164 0.5977826082249566 -0.7939855858878951 0.1106473800233164 -0.5977826082249566 -0.4384268685113827 0.8133494384010177 -0.3824193666906158 -0.9447151072035335 0.3209045653834627 -0.06733220728200723 3.04203672274447e-005 -0.9095842994173099 0.4155194355600263 3.04203672274447e-005 -0.9095842994173099 0.4155194355600263 -3.04203672274447e-005 0.9095842994173099 -0.4155194355600263 -3.04203672274447e-005 0.9095842994173099 -0.4155194355600263 0.7459218330116282 -0.529476007767462 -0.4040492250149765 -0.7459218330116282 0.529476007767462 0.4040492250149765 0.9995435931490206 -0.02557286258534972 -0.01608210477319518 -0.9995435931490206 0.02557286258534972 0.01608210477319518 0.3268345149983279 -0.7222415736188392 0.609545986076843 -0.3268345149983279 0.7222415736188392 -0.609545986076843 -0.5591657910973846 -0.7999263466458474 0.2178335557444341 -0.525736770613326 -0.8229577751390799 0.2152704075417861 -0.5429581458881555 -0.8113378986682585 0.2166270204712956 0.5429581458881555 0.8113378986682585 -0.2166270204712956 0.525736770613326 0.8229577751390799 -0.2152704075417861 0.5591657910973846 0.7999263466458474 -0.2178335557444341 0.3232419702666449 -0.931578117861167 0.1663635746802267 -0.3232419702666449 0.931578117861167 -0.1663635746802267 0.8161955627422841 0.1770353984243641 0.5499847916665811 -0.8161955627422841 -0.1770353984243641 -0.5499847916665811 0.367804967138664 0.05323771252511472 0.9283777529180778 -0.367804967138664 -0.05323771252511472 -0.9283777529180778 0.001422634435665874 -0.9075303617627482 0.4199840694479229 -0.001422634435665874 0.9075303617627482 -0.4199840694479229 -0.5742241777860956 -0.7888937276389303 0.2188910234290935 0.5742241777860956 0.7888937276389303 -0.2188910234290935 0.7961764647920196 -0.2076752187963572 -0.5683080506285011 -0.7961764647920196 0.2076752187963572 0.5683080506285011 0.3256245194348662 -0.653574442369451 -0.6832343087289117 -0.3256245194348662 0.653574442369451 0.6832343087289117 0.974033649817812 -0.1940885357400465 -0.1165679600785597 -0.974033649817812 0.1940885357400465 0.1165679600785597 0.1616895397440462 -0.6332904620999461 0.7568353079439377 -0.1616895397440462 0.6332904620999461 -0.7568353079439377 0.7462209594081926 -0.3077281488075161 -0.590303029105743 -0.7462209594081926 0.3077281488075161 0.590303029105743 0.1363240481501958 -0.9903877858573049 0.02340486104654377 -0.1363240481501958 0.9903877858573049 -0.02340486104654377 0.8043460974294051 0.05891508458270945 0.5912329222554325 -0.8043460974294051 -0.05891508458270945 -0.5912329222554325 0.3600849068814223 0.2993654758240678 0.8835831436377829 -0.3600849068814223 -0.2993654758240678 -0.8835831436377829 -0.3440377057128069 0.03357744818432158 0.9383552696187609 0.3440377057128069 -0.03357744818432158 -0.9383552696187609 -0.1305064306091962 -0.6524378774858333 0.7465205205427564 0.1305064306091962 0.6524378774858333 -0.7465205205427564 0.334771657383111 -0.3926254953009006 -0.8566056022772017 -0.334771657383111 0.3926254953009006 0.8566056022772017 0.3459775000900096 -0.3151107792028358 -0.8837447404435566 -0.3459775000900096 0.3151107792028358 0.8837447404435566 -0.1260648181863209 -0.9917475145758299 0.02333514406028312 0.1260648181863209 0.9917475145758299 -0.02333514406028312 -0.3146699866686367 -0.7026366235699806 0.6381885103228808 0.3146699866686367 0.7026366235699806 -0.6381885103228808 -0.3091364483100864 -0.3196699407816844 -0.8956817433033117 0.3091364483100864 0.3196699407816844 0.8956817433033117 -0.4045527655689166 -0.9035508367343974 0.1411840830515661 0.4045527655689166 0.9035508367343974 -0.1411840830515661 -0.3085605894463301 -0.6493048447907174 -0.6951212708382872 0.3085605894463301 0.6493048447907174 0.6951212708382872 0.4043726751136649 0.1731169967969206 0.8980608248005439 -0.4043726751136649 -0.1731169967969206 -0.8980608248005439 -0.7740390339621123 -0.09553922007584777 0.6258880341804747 0.7740390339621123 0.09553922007584777 -0.6258880341804747 -0.4056396103659939 -0.8085508928082049 0.4262651290466761 0.4056396103659939 0.8085508928082049 -0.4262651290466761 -0.3279646841002163 -0.4003026479086039 -0.8556850799566426 0.3279646841002163 0.4003026479086039 0.8556850799566426 -2.754448984373484e-005 -0.9090599037003082 0.4166654422023591 -1.434938109444597e-005 -0.9093464648875964 0.4160396694914158 -2.754448984373484e-005 -0.9090599037003082 0.4166654422023591 -1.363567733812147e-005 -0.9093619522663444 0.4160058167675192 1.434938109444597e-005 0.9093464648875964 -0.4160396694914158 2.754448984373484e-005 0.9090599037003082 -0.4166654422023591 1.363567733812147e-005 0.9093619522663444 -0.4160058167675192 2.754448984373484e-005 0.9090599037003082 -0.4166654422023591 -0.3299024776612259 0.3083376942217712 0.8922400022163241 0.3299024776612259 -0.3083376942217712 -0.8922400022163241 -0.8455678684091331 -0.1881845255135273 -0.4996014053936233 0.8455678684091331 0.1881845255135273 0.4996014053936233 -0.8183546287287127 -0.2907122829469654 -0.4957641275667838 0.8183546287287127 0.2907122829469654 0.4957641275667838 -0.9458502421880254 -0.2838528046477783 0.1574639788854709 0.9458502421880254 0.2838528046477783 -0.1574639788854709 -0.7896396980138031 -0.4780241226557592 -0.3846584010259772 0.7896396980138031 0.4780241226557592 0.3846584010259772 -3.728876776365491e-006 -0.9095767996909002 0.4155358533871124 -3.728876776365491e-006 -0.9095767996909002 0.4155358533871124 3.728876776365491e-006 0.9095767996909002 -0.4155358533871124 3.728876776365491e-006 0.9095767996909002 -0.4155358533871124 -0.7919122321604043 0.1926328944419546 0.5794545577814024 0.7919122321604043 -0.1926328944419546 -0.5794545577814024 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 0 0.9928578450812609 0.1193033924940749 0 0.9928578450812609 0.1193033924940749 0 0.9928578450812609 0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0.7816935535743665 0.06795371568789234 0.6199495792598683 0.7816935535743665 -0.06795371568789234 -0.6199495792598683 -0.9929097945071276 0.02385699098022405 0.1164516378295436 0.9929097945071276 -0.02385699098022405 -0.1164516378295436 -5.859460411438772e-005 -0.9095740687183863 0.4155418271146151 -0.0001156458150618025 -0.9095662717086603 0.4155588815030348 -5.978439340967497e-005 -0.9095739061471146 0.4155421827950879 -0.0001156458150618025 -0.9095662717086603 0.4155588815030348 0.0001156458150618025 0.9095662717086603 -0.4155588815030348 5.978439340967497e-005 0.9095739061471146 -0.4155421827950879 0.0001156458150618025 0.9095662717086603 -0.4155588815030348 5.859460411438772e-005 0.9095740687183863 -0.4155418271146151 -0.9890238215101863 -0.1175613266145401 0.08950539073160209 0.9890238215101863 0.1175613266145401 -0.08950539073160209 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 -0.3463720517402847 0.1847738626352813 0.9197200777737015 0.3463720517402847 -0.1847738626352813 -0.9197200777737015 -1.483031748329013e-005 -0.9095800476225388 0.4155287435870616 -1.483031748329013e-005 -0.9095800476225388 0.4155287435870616 1.483031748329013e-005 0.9095800476225388 -0.4155287435870616 1.483031748329013e-005 0.9095800476225388 -0.4155287435870616 0.5807092003594135 -0.7878595155234006 0.2050712276677619 0.5777978740210455 -0.7889102339766428 0.2092134305050199 0.5752096050775968 -0.7898221279238338 0.21287300549469 -0.5752096050775968 0.7898221279238338 -0.21287300549469 -0.5777978740210455 0.7889102339766428 -0.2092134305050199 -0.5807092003594135 0.7878595155234006 -0.2050712276677619 0.5729543618345776 -0.7905998681501759 0.2160443189154868 -0.5729543618345776 0.7905998681501759 -0.2160443189154868</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1239\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"244\" source=\"#ID1242\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"488\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1242\">-2.63213038303705 3.378607622204579 -2.554133930553064 3.166048461566486 -3.587391906179787 3.213099664198045 -3.50313724758169 3.025141641425929 -1.045319997864637 3.894876806025977 -1.160862126351026 3.94820031540899 -1.015187397600491 4.092764163498988 -2.632284705724435 3.378530270152548 -2.53997460493407 3.46794460018157 -2.554276411449781 3.165973798754651 -2.417760943946474 3.122053832822153 -1.968270958422909 2.944184880112239 -2.117713939615053 2.773720815463494 -2.088736626084283 2.990275045555151 1.962256326470615 3.443412943408657 2.076606523626401 3.621259255608264 2.880180304337664 3.178785496016955 -1.610510223683513 3.934838441292375 -1.608181009007588 4.104677324854946 -1.477774829738932 4.086917556437528 -2.752215170559102 2.855029146521831 -2.953567051477624 3.177199976881162 -2.712584059120986 3.305623980831408 0.9262408536690879 1.135273511479787 1.031456717394809 1.325083520305112 1.940257989943857 1.041639633748331 -1.991581193229378 2.765433417334989 -2.079062651350002 2.850908629070537 -1.962284483885672 2.9819610514638 3.0451415689917 3.243791996790366 2.251318087510055 3.697026584523082 3.123671631587728 3.402710175634945 -1.373648664845498 4.173606268015004 -1.299628758783695 4.338301173687359 -1.244354189338972 4.151378445934692 -3.609732514477293 3.023515457575924 -3.958777436169807 3.037469723625358 -3.698106505987994 3.178484654265517 -2.483947490368943 2.900519119337377 -2.736047809243717 2.823433714152102 -2.703970739913745 3.274400369748774 1.889351512430463 0.9735185433538492 0.9367106543766401 1.219089245779115 1.950873127176101 1.12643457960694 -3.6099706886097 3.024834741402522 -3.695257113375188 2.879532741405246 -3.959017175547804 3.038764757168724 -2.715953227610941 2.311948976600159 -2.917988703346826 2.195736082177195 -2.801558566947437 2.398591749173 2.139780247186715 3.575680708223637 2.196425072156733 3.740258156433743 3.868317254469622 3.09451357754042 2.770953920766503 3.679310685817001 2.910212431396204 3.836884914240899 3.606214276684401 3.324599139223731 -1.388274266682096 4.303677939285445 -1.272571655037253 4.344387171593602 -1.347709011128989 4.180005708010928 -3.665593177900184 3.220691373475351 -3.928131927426224 3.081837356524855 -3.78210775391995 3.309640463856862 1.130311605295193 1.126377820761716 1.206299475270031 1.275214239361596 2.907066575813981 0.5852342416995015 1.075584867740999 -0.8051297767572097 0.05284343010698259 -0.6419163210803518 0.1694911801936667 -0.4677180556519611 -3.718476757910115 2.863521288867862 -3.87887026624569 2.750507641232472 -3.984108898022294 3.020815664882268 -2.965268422994861 2.222128669978276 -3.0176028482097 2.320260662551189 -2.848097127192144 2.42472007513564 0.8346455045968398 0.6332092869589715 2.552734102432543 0.129416192031585 2.499370292160392 -0.1091776051487044 2.337403123774756 3.799527166530098 3.995023245851485 3.394946101639595 3.994761601601176 3.130999170019357 3.658828574919182 3.277701144631026 2.97219994711978 3.797755710265468 3.745284641653469 3.385474241904113 -3.80407452583313 1.900967347094276 -4.117704927921295 1.994636624096851 -3.76063346862793 1.994636624096851 -3.962779579329583 3.041395312246116 -4.080372196636212 3.264611387099298 -3.820145293746886 3.270523676416271 0.3801030424848884 -0.3465349114581305 2.08373234170659 -1.017605435598144 1.960784316884723 -1.338437785425406 1.011564768524706 -0.8679895976751437 0.07835258162855172 -0.55549004156412 1.102073393762526 -0.7148585526376634 -3.830687475043129 2.804184661643422 -4.059977335877058 2.806447143685902 -3.929307467255845 3.076032806541181 -3.840650724818295 2.282253252091462 -3.801559492599367 2.180375066078454 -4.06994220151686 2.284412015148941 2.806324945484714 3.776306591838458 2.862592946750355 3.895811282485938 4.41521860624963 3.264266924492304 -4.148633308407015 1.858109092092074 -4.209966339227252 1.950404146035647 -3.889037958600043 1.873540194319601 -3.91024878588611 3.091265282919711 -4.162843133981847 3.235502402638323 -4.022756456893595 3.316097428165297 1.804807190581595 -1.483917399848166 0.1327346838318974 -0.6080369253746125 0.250299370182768 -0.4667385074936911 -3.871135737455754 -0.922493003367199 -4.100439852056908 -0.9230012540089677 -3.821057423243681 -0.1255950877840216 -4.075401395101349 2.78586827125366 -4.255855413971 2.88801979264803 -3.946759728136424 3.056056913209712 -3.80853533744812 2.166517314017002 -4.106560349464417 2.166517314017002 -4.076659083366394 2.27096666118209 2.884313037022852 3.883343937946692 4.464238345634785 3.45766940877569 4.433186107104556 3.24612279044892 -4.116867083721242 0.8355899834767357 -4.027425087298078 1.009292965064785 -3.911392188290299 0.9591490281471551 -3.932537492759314 3.075582033218262 -4.27037241076195 3.059062345964517 -4.186452856359546 3.218376547966553 -3.654507412820775 0.1045054500660082 -3.789056795842323 0.09287938346886765 -3.604199663229611 0.2351718893821941 -4.162080062192815 -2.134557563507187 -3.835212772701145 -0.5537914285606398 -3.749076225537093 -2.132638084670926 -4.076659083366395 -0.9609096291555792 -4.106560349464417 -0.1611151102336025 -3.808535337448121 -0.1611151102336027 -4.23375680939343 -2.075608589924791 -4.102573149155481 -0.4997027753894155 -3.873268508805136 -0.4993724616566957 -4.242544917072 2.909227215851943 -4.270258826944595 3.059580446390041 -3.932423128148093 3.076090249226915 -4.153657258174265 2.738967934813566 -4.198452213939097 2.63786798315234 -4.340722410538401 2.833473573004768 -3.808568989192585 2.711296288180668 -3.817998225232173 1.973450218548164 -4.106594001072074 2.711293328307002 -4.114093706563162 1.965431016429906 0.732578898063736 0.1227938792054498 0.8775865696850392 -0.0259031933701444 -0.02550715650289914 -0.3041852114695976 -3.776598173440457 1.620656936664281 -3.769765041652121 1.448290098568495 -3.911604173469502 1.612976061742652 -3.385369088698196 3.594503282257561 -2.370403948015334 3.77963298969028 -3.289356085657654 3.436664800728592 -5.394351889746344 2.310255168302022 -5.531872946933133 2.633321255562824 -3.713732337249778 3.174091889593237 -3.889304833134624 2.365421909394091 -4.089795617994382 2.466351634785759 -3.963381092801987 2.505727375327931 -4.121228868352374 2.707894396648292 -4.336747437386265 2.83253564941946 -4.258426856026714 2.905729610370996 -4.114074958573479 1.96581464507311 -3.817979366256187 1.973831313140475 -4.199585029464345 1.853778971787298 -3.740375050887728 1.853779587175583 1.056613651199812 -0.3380899033010843 0.2599314411611681 -0.7503730004179626 0.1637812586082857 -0.6361592099273964 -3.625609780677588 1.470019006260463 -3.749122315784419 1.425305607118445 -3.773776743402028 1.631220182217955 -5.648011933897507 2.435838676545936 -3.984133733066641 3.177350696966402 -3.858569836676477 3.032917600025752 -3.319925345597347 3.645233257028249 -2.432301748736574 4.002032074398338 -2.301567409380017 3.818449438756614 -3.644154888198931 2.686037288831495 -3.725814568994564 2.615137532808995 -3.846415389615387 2.784757725480801 -4.233378767967224 1.105920625207006 -4.19958233833313 1.321346009862422 -3.740372359752655 1.321346009862422 3.740372359752655 1.72767490928385 4.233378767967224 1.497410698066083 4.19958233833313 1.72767490928385 -1.229035429433876 -1.135141619079729 -2.798357227829818 -1.702964175906817 -1.288276156667242 -1.006323504849119 -0.2856228011415883 1.764231067308358 -1.074809300350776 1.300467174443276 -1.157417466045279 1.46022175021733 -5.296448941949752 3.385283044686555 -4.297830011210234 3.225214911140218 -5.353694049117336 3.166543500717179 -4.386127765099642 3.030401783887719 -0.4408526238691178 1.958105914965327 -0.3215888104597184 1.773783870337314 -1.236038297165288 1.500727647207349 -4.754764565415463 2.731318227310149 -2.946988463528547 3.011638785558609 -4.746216689148262 2.501964216298292 -1.455300936847106 3.769211273504801 -1.355374774016136 3.591468562779232 -2.30160619104441 3.344906032491399 -4.233378767967224 1.105920625207006 -3.740372359752655 1.321346009862423 -3.705208897590637 1.105920625207006 3.705208897590637 1.497410698066083 -2.90680081264382 -1.56447180063519 -2.954947297464281 -1.326590688235755 -1.382410700753786 -0.887391473981207 -2.251513409819251 1.229897929918368 -2.187152370213687 1.065030952520911 -3.908840734075562 0.8468919766099712 -5.296286415903058 3.38548417288662 -5.353544330087429 3.166746703318761 -5.421686338526626 3.465686649193497 -5.519764233846809 3.147562017189221 -1.076216311928042 3.430300695985917 -1.933439566116338 3.019782772118031 -1.993828948218517 3.163892373159887 -2.931510696520517 2.881073904661668 -2.865565543124608 2.738479308013299 -4.67447627507849 2.462725569490671 -3.811898130570406 0.3234380588460911 -2.093010548006573 0.5548424321950821 -3.809698603504408 0.07393165446856226 -3.64755428466631 3.617721750936123 -3.910352172916965 3.670072295123552 -3.468904282222147 3.913365430898217 -3.504503565450099 3.939119908911015 -3.945426023973666 3.695237842850044 -3.722119223755929 4.070378628286982</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"86\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 3 2 2 1 1 8 4 9 5 10 6 0 7 14 8 1 9 15 10 1 9 14 8 8 11 18 12 9 13 8 14 10 15 20 16 9 17 22 18 10 19 24 20 25 21 26 22 18 23 8 24 20 25 18 26 30 27 9 28 20 29 10 30 32 31 22 32 34 33 10 34 9 35 36 36 22 37 38 38 24 39 26 40 40 41 18 42 20 43 9 44 30 45 36 46 18 47 42 48 30 49 20 50 32 51 44 52 10 53 34 54 32 55 46 56 34 57 22 58 22 59 36 60 46 61 40 62 20 63 48 64 40 65 42 66 18 67 30 68 50 69 36 70 42 71 50 72 30 73 20 74 44 75 48 76 32 77 52 78 44 79 32 80 34 81 54 82 46 83 56 84 34 85 36 86 58 87 46 88 40 89 48 90 60 91 62 92 42 93 40 94 50 95 64 96 36 97 50 98 42 99 64 100 32 101 54 102 52 103 58 104 56 105 46 106 36 107 66 108 58 109 60 110 62 111 40 112 62 113 68 114 42 115 64 116 70 117 36 118 42 119 72 120 64 121 54 122 74 123 52 124 76 125 56 126 58 127 36 128 78 129 66 130 66 131 76 132 58 133 80 134 62 135 60 136 68 137 72 138 42 139 80 140 68 141 62 142 70 143 78 144 36 145 64 146 72 147 70 148 82 149 83 150 84 151 85 152 84 151 83 150 56 153 76 154 90 155 66 156 78 157 76 158 92 159 72 160 68 161 80 162 94 163 68 164 70 165 96 166 78 167 72 168 98 169 70 170 85 171 83 172 100 173 101 174 100 173 83 172 76 175 104 176 90 177 78 178 96 179 76 180 94 181 92 182 68 183 92 184 98 185 72 186 70 187 98 188 96 189 106 190 107 191 108 192 115 193 116 194 117 195 104 196 118 197 90 198 76 199 120 200 104 201 122 202 123 203 124 204 125 205 124 204 123 203 76 206 96 207 120 208 130 209 92 210 94 211 96 212 98 213 92 214 132 215 133 216 134 217 141 193 142 218 143 194 118 219 144 220 90 221 104 222 120 223 118 224 122 225 124 226 146 227 147 228 146 227 124 226 96 229 92 230 120 231 120 232 92 233 130 234 118 235 120 236 130 237 150 238 151 239 152 240 152 241 151 242 156 243</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1238\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1239\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"86\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">4 5 6 5 4 7 11 12 13 16 4 17 4 16 7 12 19 13 21 11 13 11 23 12 27 28 29 21 13 19 12 31 19 33 11 21 11 35 23 23 37 12 27 29 39 21 19 41 37 31 12 31 43 19 45 33 21 33 35 11 23 35 47 47 37 23 49 21 41 19 43 41 37 51 31 31 51 43 49 45 21 45 53 33 55 35 33 35 57 47 47 59 37 61 49 41 41 43 63 37 65 51 65 43 51 53 55 33 47 57 59 59 67 37 41 63 61 43 69 63 37 71 65 65 73 43 53 75 55 59 57 77 67 79 37 59 77 67 61 63 81 43 73 69 63 69 81 37 79 71 71 73 65 86 87 88 87 86 89 91 77 57 77 79 67 69 73 93 69 95 81 79 97 71 71 99 73 86 102 103 102 86 88 91 105 77 77 97 79 69 93 95 73 99 93 97 99 71 109 110 111 112 113 114 91 119 105 105 121 77 126 127 128 127 126 129 121 97 77 95 93 131 93 99 97 135 136 137 138 139 140 91 145 119 119 121 105 127 148 149 148 127 129 121 93 97 131 93 121 131 121 119 153 154 155 157 154 153</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1238\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1243\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1246\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1244\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1245\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1244\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"12\" source=\"#ID1247\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"36\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1247\">-0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.367525190114975 0.391314297914505 0.3244994282722473</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1245\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"12\" source=\"#ID1248\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"36\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1248\">-0.3440377057128069 0.03357744818432158 0.9383552696187609 -0.3299024776612259 0.3083376942217712 0.8922400022163241 0.3600849068814223 0.2993654758240678 0.8835831436377829 -0.3600849068814223 -0.2993654758240678 -0.8835831436377829 0.3299024776612259 -0.3083376942217712 -0.8922400022163241 0.3440377057128069 -0.03357744818432158 -0.9383552696187609 -0.3463720517402847 0.1847738626352813 0.9197200777737015 0.3463720517402847 -0.1847738626352813 -0.9197200777737015 0.367804967138664 0.05323771252511472 0.9283777529180778 -0.367804967138664 -0.05323771252511472 -0.9283777529180778 0.4043726751136649 0.1731169967969206 0.8980608248005439 -0.4043726751136649 -0.1731169967969206 -0.8980608248005439</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"8\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 0 2 8 9 3 5 2 6 10 11 7 3</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1246\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1249\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1252\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1250\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1251\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1250\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1253\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1253\">-0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5519742369651794 0.1341030150651932 0.3786295652389526</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1251\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1254\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1254\">0.5855516228701534 0.6673756912043336 -0.4601510444882938 0.5847287981283337 0.6684276671237125 -0.4596701931417198 0.5840114434190137 0.66934247689241 -0.4592507839766566 -0.5840114434190137 -0.66934247689241 0.4592507839766566 -0.5847287981283337 -0.6684276671237125 0.4596701931417198 -0.5855516228701534 -0.6673756912043336 0.4601510444882938 0.5865086810349907 0.6661485009135626 -0.4607100409164197 -0.5865086810349907 -0.6661485009135626 0.4607100409164197</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1252\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1255\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1258\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1256\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1257\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1256\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1259\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1259\">-0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2540025115013123 0.1510234326124191 0.4156664907932282</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1257\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1260\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1260\">-0.5664893720279264 0.680870144856998 -0.46422584721428 -0.5784378393100765 0.6758352019951724 -0.456789279425902 -0.5524855132419443 0.6865142307862299 -0.4727134106261178 0.5524855132419443 -0.6865142307862299 0.4727134106261178 0.5784378393100765 -0.6758352019951724 0.456789279425902 0.5664893720279264 -0.680870144856998 0.46422584721428 -0.5389551592185798 0.691712799742818 -0.4806877770690945 0.5389551592185798 -0.691712799742818 0.4806877770690945</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1258\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1261\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1264\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1262\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1263\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1262\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1265\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1265\">-0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.5398718118667603 0.5160609483718872 -0.2822246551513672 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5398718118667603 0.5160609483718872 -0.2822246551513672 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4597278535366058 0.5886020064353943 -0.2516790628433228 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4597278535366058 0.5886020064353943 -0.2516790628433228 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5398718118667603 0.5885813236236572 -0.2513153851032257 -0.5398718118667603 0.5885813236236572 -0.2513153851032257 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4733552634716034 0.6066198348999023 -0.2439994066953659 -0.4733552634716034 0.6066198348999023 -0.2439994066953659 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5270576477050781 0.606323778629303 -0.2437526285648346 -0.5270576477050781 0.606323778629303 -0.2437526285648346 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5270576477050781 0.4954752027988434 -0.2909989953041077 -0.5270576477050781 0.4954752027988434 -0.2909989953041077 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4597278535366058 0.5160419344902039 -0.2826054692268372 -0.4597278535366058 0.5160419344902039 -0.2826054692268372 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4733411073684692 0.4960610568523407 -0.2911213934421539 -0.4733411073684692 0.4960610568523407 -0.2911213934421539</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1263\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1266\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1266\">1.018605038254633e-017 -0.3920865992729213 0.9199283117018389 -1.492644435246423e-006 -0.3920905111252245 0.9199266444034179 1.263479483478821e-017 -0.392094972052365 0.9199247430585043 -1.263479483478821e-017 0.392094972052365 -0.9199247430585043 1.492644435246423e-006 0.3920905111252245 -0.9199266444034179 -1.018605038254633e-017 0.3920865992729213 -0.9199283117018389 -7.160122051603417e-007 -0.3920995868816517 0.9199227760886918 7.160122051603417e-007 0.3920995868816517 -0.9199227760886918 -0.9657779994111223 -0.2556768389188145 -0.04361433129067741 -0.961816197635081 -0.2697193962519665 -0.04648708694110092 -0.952955038844713 0.2700497766246847 0.137658316441213 0.952955038844713 -0.2700497766246847 -0.137658316441213 0.961816197635081 0.2697193962519665 0.04648708694110092 0.9657779994111223 0.2556768389188145 0.04361433129067741 4.226078624807187e-017 -0.3920867037195872 0.9199282671851697 -4.226078624807187e-017 0.3920867037195872 -0.9199282671851697 0.9556301563420309 0.2865716167704185 0.06817413550089126 0.9464262773971828 0.3144432018787364 0.07350356620164039 0.4461077867563716 0.8529219849936016 0.2711308357784226 -0.4461077867563716 -0.8529219849936016 -0.2711308357784226 -0.9464262773971828 -0.3144432018787364 -0.07350356620164039 -0.9556301563420309 -0.2865716167704185 -0.06817413550089126 -5.489730722854122e-006 -0.392084984740443 0.9199289998206108 5.489730722854122e-006 0.392084984740443 -0.9199289998206108 -0.9617606342588828 0.2423096741065457 0.1276812602707654 0.9617606342588828 -0.2423096741065457 -0.1276812602707654 -0.4995310403535877 -0.8292392942562499 -0.2506609913501879 0.4995310403535877 0.8292392942562499 0.2506609913501879 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9634604031238594 -0.2417599937723264 -0.1153089633272929 -0.9634604031238594 0.2417599937723264 0.1153089633272929 0.4722805523885353 0.8390374649568232 0.2701244384249742 -0.4722805523885353 -0.8390374649568232 -0.2701244384249742 -0.4554289994794556 0.8379380261111193 0.3007395731029473 -0.4946133559482358 0.8179775718930541 0.2937180961356777 0.4946133559482358 -0.8179775718930541 -0.2937180961356777 0.4554289994794556 -0.8379380261111193 -0.3007395731029473 -0.496138447156815 -0.8307139620940133 -0.2525093155408146 0.496138447156815 0.8307139620940133 0.2525093155408146 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9563447960919848 -0.2662293121312899 -0.1205262807435803 -0.9563447960919848 0.2662293121312899 0.1205262807435803 0.4944995435269457 -0.8167100971460085 -0.2974135482310776 -0.4944995435269457 0.8167100971460085 0.2974135482310776 0.4800780324579885 -0.8242189406550274 -0.3003135371853403 -0.4800780324579885 0.8242189406550274 0.3003135371853403</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"44\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 0 2 3 5 15 16 17 18 19 20 21 1 22 6 7 23 4 10 9 24 25 12 11 8 26 9 12 27 13 28 0 14 15 5 29 30 17 16 21 20 31 16 18 32 33 19 21 34 35 18 19 36 37 10 24 34 37 25 11 26 38 9 12 39 27 40 28 14 15 29 41 42 30 16 21 31 43 35 32 18 19 33 36 34 24 35 36 25 37 44 38 26 27 39 45 44 30 42 43 31 45 46 38 44 45 39 47 46 44 42 43 45 47</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1264\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1267\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1270\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1268\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1269\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1268\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"50\" source=\"#ID1271\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"150\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1271\">-0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.4343203604221344 0.5160609483718872 -0.2822246551513672 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4343203604221344 0.5160609483718872 -0.2822246551513672 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.354176789522171 0.5886020064353943 -0.2516790628433228 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.354176789522171 0.5886020064353943 -0.2516790628433228 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4343203604221344 0.5885813236236572 -0.2513153851032257 -0.4343203604221344 0.5885813236236572 -0.2513153851032257 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3678038418292999 0.6066198348999023 -0.2439994066953659 -0.3678038418292999 0.6066198348999023 -0.2439994066953659 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4215061962604523 0.606323778629303 -0.2437526285648346 -0.4215061962604523 0.606323778629303 -0.2437526285648346 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4215061962604523 0.4954752027988434 -0.2909989953041077 -0.4215061962604523 0.4954752027988434 -0.2909989953041077 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.354176789522171 0.5160419344902039 -0.2826054692268372 -0.354176789522171 0.5160419344902039 -0.2826054692268372 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.3677899539470673 0.4960610568523407 -0.2911213934421539 -0.3677899539470673 0.4960610568523407 -0.2911213934421539</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1269\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"50\" source=\"#ID1272\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"150\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1272\">1.577987075014722e-017 -0.3920865992778976 0.919928311699718 -1.49264799376819e-006 -0.3920905111273643 0.9199266444025057 9.377758992654222e-018 -0.3920949720469876 0.9199247430607962 -9.377758992654222e-018 0.3920949720469876 -0.9199247430607962 1.49264799376819e-006 0.3920905111273643 -0.9199266444025057 -1.577987075014722e-017 0.3920865992778976 -0.919928311699718 -7.160187554859395e-007 -0.3920995868705536 0.9199227760934221 7.160187554859395e-007 0.3920995868705536 -0.9199227760934221 -0.9657782097535681 -0.2556749505845612 -0.04362074287280278 -0.9618163096584675 -0.2697179776438742 -0.04649299958773773 -0.9529549464436813 0.2700530802757604 0.1376524750307613 0.9529549464436813 -0.2700530802757604 -0.1376524750307613 0.9618163096584675 0.2697179776438742 0.04649299958773773 0.9657782097535681 0.2556749505845612 0.04362074287280278 4.398390274986898e-017 -0.3920867037122621 0.9199282671882916 -4.398390274986898e-017 0.3920867037122621 -0.9199282671882916 0.9556306576448407 0.2865699003687983 0.06817432340629723 0.9464258468055602 0.3144451341472773 0.07350084427732247 0.4461060594785385 0.8529213522706366 0.2711356681393269 -0.4461060594785385 -0.8529213522706366 -0.2711356681393269 -0.9464258468055602 -0.3144451341472773 -0.07350084427732247 -0.9556306576448407 -0.2865699003687983 -0.06817432340629723 -5.489764998567177e-006 -0.3920849847041301 0.9199289998360877 5.489764998567177e-006 0.3920849847041301 -0.9199289998360877 -0.9617605142813323 0.2423129442383939 0.127675957892739 0.9617605142813323 -0.2423129442383939 -0.127675957892739 -0.4995316796696845 -0.8292382630216973 -0.2506631288146341 0.4995316796696845 0.8292382630216973 0.2506631288146341 1.401435880184439e-017 -0.3920801801035452 0.9199310476171416 -1.401435880184439e-017 0.3920801801035452 -0.9199310476171416 0.9634607759132623 -0.2417572975523022 -0.1153115014073698 -0.9634607759132623 0.2417572975523022 0.1153115014073698 0.4722914400859864 0.8390289711358017 0.2701317849056331 -0.4722914400859864 -0.8390289711358017 -0.2701317849056331 -0.4554294014629058 0.8379385721984621 0.3007374428054177 -0.4946125368993921 0.8179786090951815 0.2937165868735704 0.4946125368993921 -0.8179786090951815 -0.2937165868735704 0.4554294014629058 -0.8379385721984621 -0.3007374428054177 -0.496137727824831 -0.8307138391627682 -0.2525111333234005 0.496137727824831 0.8307138391627682 0.2525111333234005 0 -0.3920801801035452 0.9199310476171416 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9563451698804476 -0.266226810714687 -0.120528840129754 -0.9563451698804476 0.266226810714687 0.120528840129754 0.4945017044715873 -0.8167083583261001 -0.2974147301580424 -0.4945017044715873 0.8167083583261001 0.2974147301580424 0.4800785693254803 -0.8242181053042629 -0.3003149715932439 -0.4800785693254803 0.8242181053042629 0.3003149715932439</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"44\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 0 2 3 5 15 16 17 18 19 20 21 1 22 6 7 23 4 10 9 24 25 12 11 8 26 9 12 27 13 28 0 14 15 5 29 30 17 16 21 20 31 16 18 32 33 19 21 34 35 18 19 36 37 10 24 34 37 25 11 26 38 9 12 39 27 40 41 14 15 42 43 44 30 16 21 31 45 35 32 18 19 33 36 34 24 35 36 25 37 46 38 26 27 39 47 46 30 44 45 31 47 48 38 46 47 39 49 48 46 44 45 47 49</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1270\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1273\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1276\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1274\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1275\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1274\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1277\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"246\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1277\">-0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3090353906154633 0.5463404059410095 -0.2693190574645996 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3090353906154633 0.5463404059410095 -0.2693190574645996 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.6342289447784424 -0.232231467962265 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2288918197154999 0.6342289447784424 -0.232231467962265 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.3090353906154633 0.6342087984085083 -0.2318678945302963 -0.3090353906154633 0.6342087984085083 -0.2318678945302963 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2425188422203064 0.6522464156150818 -0.2245520353317261 -0.2425188422203064 0.6522464156150818 -0.2245520353317261 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.2962212562561035 0.6519521474838257 -0.2243053764104843 -0.2962212562561035 0.6519521474838257 -0.2243053764104843 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.3262083530426025 0.5177374482154846 -0.2815103232860565 -0.3262083530426025 0.5177374482154846 -0.2815103232860565 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.2288918197154999 0.5177167654037476 -0.2818911969661713 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5177167654037476 -0.2818911969661713 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.2425051629543304 0.4977369606494904 -0.2904066741466522 -0.2425051629543304 0.4977369606494904 -0.2904066741466522</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1275\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1278\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"246\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1278\">4.719033471891902e-017 -0.3920905752870032 0.9199266170576362 -2.884976234942127e-006 -0.3920858289120519 0.9199286400357509 3.370173609169518e-018 -0.3920945522236592 0.9199249219999034 -3.370173609169518e-018 0.3920945522236592 -0.9199249219999034 2.884976234942127e-006 0.3920858289120519 -0.9199286400357509 -4.719033471891902e-017 0.3920905752870032 -0.9199266170576362 -1.383915055981403e-006 -0.3920969058693643 0.9199239188138092 1.383915055981403e-006 0.3920969058693643 -0.9199239188138092 -0.9706832903972148 0.2078131408484302 0.1207793369510993 -0.9650271046384095 0.2288071805736214 0.1279451500884601 -0.9529537582915173 0.2700616675338173 0.1376438530662601 0.9529537582915173 -0.2700616675338173 -0.1376438530662601 0.9650271046384095 -0.2288071805736214 -0.1279451500884601 0.9706832903972148 -0.2078131408484302 -0.1207793369510993 -4.719033471891901e-017 -0.3920905752870033 0.9199266170576362 -4.719033471891901e-017 -0.3920905752870033 0.9199266170576362 4.719033471891901e-017 0.3920905752870033 -0.9199266170576362 4.719033471891901e-017 0.3920905752870033 -0.9199266170576362 0.95563218680553 0.2865661400237065 0.06816869467133878 0.9464256864674265 0.3144455718013523 0.07350103651773379 0.4461113649611553 0.8529273245609877 0.2711081501352002 -0.4461113649611553 -0.8529273245609877 -0.2711081501352002 -0.9464256864674265 -0.3144455718013523 -0.07350103651773379 -0.95563218680553 -0.2865661400237065 -0.06816869467133878 -1.061068912738696e-005 -0.3920686822882367 0.9199359479095156 1.061068912738696e-005 0.3920686822882367 -0.9199359479095156 -0.9617597641238146 0.2423166136760486 0.1276746445034306 0.9617597641238146 -0.2423166136760486 -0.1276746445034306 -0.993909052903077 0.07939780418357825 0.07642501716149437 0.993909052903077 -0.07939780418357825 -0.07642501716149437 0 -0.3920945895234322 0.919924906101825 0 -0.3920898773552489 0.9199269145293805 0 -0.3920898773552489 0.9199269145293805 -0 0.3920898773552489 -0.9199269145293805 -0 0.3920898773552489 -0.9199269145293805 -0 0.3920945895234322 -0.919924906101825 0.9995077430572552 0.01230109785848254 -0.02886095216842587 -0.9995077430572552 -0.01230109785848254 0.02886095216842587 0.4723017897819827 0.83903742859678 0.2700874169272593 -0.4723017897819827 -0.83903742859678 -0.2700874169272593 -0.4554410407912898 0.8379186725669763 0.3007752591662806 -0.494612554153276 0.8179656278243028 0.2937527071738518 0.494612554153276 -0.8179656278243028 -0.2937527071738518 0.4554410407912898 -0.8379186725669763 -0.3007752591662806 -0.9966295060997636 0.04754817778887997 0.06684907149914918 0.9966295060997636 -0.04754817778887997 -0.06684907149914918 -9.303577740844134e-018 -0.3920932922423561 0.9199254590338015 0 -0.392089877355249 0.9199269145293805 -0 0.392089877355249 -0.9199269145293805 9.303577740844134e-018 0.3920932922423561 -0.9199254590338015 0.999507737305549 0.01230113833683166 -0.0288611341073107 0.999507737305549 0.01230113833683166 -0.0288611341073107 -0.999507737305549 -0.01230113833683166 0.0288611341073107 -0.999507737305549 -0.01230113833683166 0.0288611341073107 -0.9439128184700081 -0.3237861883456118 -0.06473866977800677 0.9439128184700081 0.3237861883456118 0.06473866977800677 0.963462018835475 -0.2417599248694221 -0.1152956069787658 0.9995077372826678 0.0123011480951978 -0.02886113074051997 0.9995077372826678 0.0123011480951978 -0.02886113074051997 -0.9995077372826678 -0.0123011480951978 0.02886113074051997 -0.9995077372826678 -0.0123011480951978 0.02886113074051997 -0.963462018835475 0.2417599248694221 0.1152956069787658 0 -0.392098647750297 0.9199231763752823 -0 0.392098647750297 -0.9199231763752823 -0.9443667124121585 -0.3230491775558667 -0.06173120255049157 0.9443667124121585 0.3230491775558667 0.06173120255049157 0.9563417668586146 -0.2662410739890978 -0.1205243356458564 0.9995077430203615 0.01230117529490369 -0.02886092044109709 -0.9995077430203615 -0.01230117529490369 0.02886092044109709 -0.9563417668586146 0.2662410739890978 0.1205243356458564 -3.14513905962739e-017 -0.3920986477502967 0.9199231763752823 -3.14513905962739e-017 -0.3920986477502967 0.9199231763752823 3.14513905962739e-017 0.3920986477502967 -0.9199231763752823 3.14513905962739e-017 0.3920986477502967 -0.9199231763752823 0.4937060730407563 -0.8168181655729783 -0.2984332384850423 0.0009918824747248147 -0.9489850171414499 -0.3153196051789331 -6.163859535989389e-018 -0.9503574393807658 -0.3111603082233241 6.163859535989389e-018 0.9503574393807658 0.3111603082233241 -0.0009918824747248147 0.9489850171414499 0.3153196051789331 -0.4937060730407563 0.8168181655729783 0.2984332384850423 0.478545962683365 -0.8250059356649211 -0.3005976841512581 -0.478545962683365 0.8250059356649211 0.3005976841512581</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"56\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 15 2 3 16 17 18 19 20 21 22 23 1 24 6 7 25 4 10 9 26 27 12 11 8 28 9 12 29 13 30 31 32 33 34 35 36 19 18 23 22 37 18 20 38 39 21 23 40 41 20 21 42 43 10 26 40 43 27 11 28 44 9 12 45 29 46 30 47 48 35 49 50 51 18 23 52 53 41 38 20 21 39 42 40 26 41 42 27 43 28 54 44 45 55 29 56 57 58 59 60 61 62 30 46 49 35 63 54 64 44 45 65 55 66 56 67 68 61 69 70 71 46 49 72 73 74 75 76 77 78 79 74 56 66 69 61 79 80 75 74 79 78 81 80 74 66 69 79 81</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1276\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1279\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1282\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1280\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1281\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1280\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1284\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1284\">-0.04600401967763901 0.08707708120346069 -0.01083299890160561 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04600401967763901 0.08707708120346069 -0.01083299890160561 -0.0460008941590786 -0.02191586047410965 -0.01119139418005943 -0.0460008941590786 -0.02191586047410965 -0.01119139418005943 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.04103969037532806 0.08707645535469055 -0.01081464067101479 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 0.04103180021047592 -0.02191830426454544 -0.01120293512940407 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 0.04103180021047592 -0.02191830426454544 -0.01120293512940407 -0.03807717561721802 0.08011185377836227 -0.004252579063177109 -0.03807717561721802 0.08011185377836227 -0.004252579063177109 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.03397076576948166 0.08009880036115646 -0.004249315708875656 0.03397076576948166 0.08009880036115646 -0.004249315708875656 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.03397389501333237 -0.01386075466871262 -0.004252579063177109 0.03397389501333237 -0.01386075466871262 -0.004252579063177109 -0.03824574872851372 -0.01380164921283722 -0.004176754504442215 -0.03824574872851372 -0.01380164921283722 -0.004176754504442215 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.04096663743257523 -0.02193134278059006 -0.01722836121916771</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1281\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1285\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1285\">-0.6486441876550205 0.6402461338216394 0.4115162280491523 -0.999996480949607 -2.046947438069042e-005 -0.002652860607489197 -0.9999970690292698 -3.40381449223314e-005 -0.002420903607070828 0.9999970690292698 3.40381449223314e-005 0.002420903607070828 0.999996480949607 2.046947438069042e-005 0.002652860607489197 0.6486441876550205 -0.6402461338216394 -0.4115162280491523 -0.6446719316482925 -0.644822687491583 0.4106114979405608 0.6446719316482925 0.644822687491583 -0.4106114979405608 7.611822237619043e-006 0.9999890564764319 0.004678340457441075 0.6505553393427764 0.6452539138369123 0.4005310688707574 -0.6505553393427764 -0.6452539138369123 -0.4005310688707574 -7.611822237619043e-006 -0.9999890564764319 -0.004678340457441075 0.646379155313016 -0.6486622084704848 0.4017851750363935 -2.514981772618891e-005 -0.9999956140211347 0.002961639069878762 2.514981772618891e-005 0.9999956140211347 -0.002961639069878762 -0.646379155313016 0.6486622084704848 -0.4017851750363935 -0.2617607029099485 0.2921712109796223 0.9198463555870572 0.2617607029099485 -0.2921712109796223 -0.9198463555870572 3.539189288607463e-005 0.9999906878303608 0.004315437402608491 -3.539189288607463e-005 -0.9999906878303608 -0.004315437402608491 0.2865456530664451 0.2878643484044356 0.9137974095095774 -0.2865456530664451 -0.2878643484044356 -0.9137974095095774 2.99402056733925e-005 -0.9999976589943478 0.002163587162167933 -2.99402056733925e-005 0.9999976589943478 -0.002163587162167933 0.3011043870364404 -0.2680404608962498 0.9151450483010523 -0.3011043870364404 0.2680404608962498 -0.9151450483010523 -0.2822290812437018 -0.2697570257358308 0.9206399365476681 0.2822290812437018 0.2697570257358308 -0.9206399365476681 0.9999419530695684 -3.618336592114948e-005 -0.01077446899763445 0.9999520259284223 -9.383437398849214e-005 -0.009794745364441736 -0.9999520259284223 9.383437398849214e-005 0.009794745364441736 -0.9999419530695684 3.618336592114948e-005 0.01077446899763445</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1283\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"54\" source=\"#ID1286\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1286\">-0.8707864704909432 -0.08434327720870816 0.2193234052329562 -0.1345068892009654 -0.8710984953321045 -0.1366050456523515 0.219149440263566 -0.08707526051738947 0.2193298965176322 -0.1344195170941046 -0.8707799769185171 -0.08425587433581898 0.460045595066703 -0.08843597314605903 0.4598847762189375 -0.1406981648935765 -0.41039150548504 -0.08829155347246408 0.4103240692412902 -0.08864631410412539 -0.4598426450664129 -0.1358998265072047 -0.460002874797282 -0.08855552489452194 0.2173279417038078 -0.3349111044485853 -0.8725929847974866 -0.3305062472124367 -0.8026261008891247 -0.2496295959706924 0.4599102052639029 -0.140437032640179 -0.4097160864162608 -0.1402346022057112 -0.4103660852034731 -0.08803051127773137 -0.3398813958454692 -0.4817281392132452 0.4598513028877966 -0.5572988052567657 -0.4105857758064011 -0.5570880807014496 0.4096598078376315 -0.1359027548422077 -0.4598552837208138 -0.1357560359272202 0.410311439520114 -0.0885026253266744 -0.4600364788878897 -0.1880195805409327 0.3397215291036052 -0.1044438552799327 0.4102904548644768 -0.188158587445632 0.139042925418609 -0.244706074045336 0.220392977764265 -0.3268400886053832 -0.8000932453864994 -0.2455938994646215 0.3808784947774433 -0.4810168158123215 0.4601562152297449 -0.556389830578105 -0.3396009300866689 -0.4809794369128 -0.2192749842084334 -0.1323665538265052 0.870803060896964 -0.08190953177439291 0.8710894002196447 -0.1341156409114885 -0.2175838531507747 -0.2966763144834158 0.8023045473003625 -0.2164605455912662 0.8723557892252097 -0.292197015768231 -0.219299554992477 -0.1320367727938727 -0.2191691477657872 -0.08463398247406859 0.8707784504735122 -0.08157922078266909 -0.1386068791570084 -0.2139009042944786 0.8009886710783843 -0.2138643169869433 -0.2191822364392242 -0.2918252702643436 -0.4600956096947584 -0.1878844921633072 -0.3825120598021665 -0.1035254300397508 0.3396840872636271 -0.1044373070507742 0.1231824674503541 0.3047815613493842 0.8674396054230038 -0.1457932893168431 -0.3167144351205317 -0.145793289316843 -0.3807736822210102 0.6302120878700486 0.3397057323850419 0.6301094009879676 0.3397370233452011 -0.1090390990261831</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 1 4 0 5 0 6 8 7 9 8 12 9 13 10 6 11 6 12 0 13 16 14 8 15 18 16 9 17 20 18 0 19 9 20 22 21 13 22 12 23 6 24 24 25 12 26 26 27 6 28 16 29 16 30 0 31 20 32 28 33 9 34 29 35 12 36 20 37 9 38 28 39 12 40 9 41 24 42 20 43 12 44 6 45 26 46 24 47 26 48 16 49 24 50 16 51 20 52 24 53</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1282\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1283\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 5 4 7 10 11 5 7 14 15 17 5 7 10 19 11 10 5 21 15 14 23 15 25 7 17 7 27 21 5 17 30 10 31 10 21 15 10 15 31 15 21 25 25 27 7 25 17 27 25 21 17</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1282\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1287\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1290\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1288\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1289\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1288\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"90\" source=\"#ID1292\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"270\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1292\">0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03052753955125809 0.03227363899350166 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.007473953068256378 0.03052753955125809 0.03227363899350166 0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.004581844434142113 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03819084912538528 -0.00840609148144722 -0.002400107681751251 0.03819084912538528 -0.00840609148144722 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.004581844434142113 0.03738900274038315 0.03356627002358437 0.004581844434142113 0.03738900274038315 0.03356627002358437 0.004581844434142113 0.0236658900976181 0.03098114207386971 0.004581844434142113 0.0236658900976181 0.03098114207386971 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.007473953068256378 0.0236976221203804 0.06852835416793823 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.004581844434142113 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 0.004581844434142113 0.03055736422538757 0.06982077658176422 0.004581844434142113 0.03055736422538757 0.06982077658176422 -0.002400107681751251 0.04023017734289169 0.03410175070166588 -0.002400107681751251 0.04023017734289169 0.03410175070166588 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.002400107681751251 0.0208236575126648 0.03044562414288521 -0.002400107681751251 0.0208236575126648 0.03044562414288521 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.002400107681751251 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.03055736422538757 0.06982077658176422 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.03055736422538757 0.06982077658176422 -0.002400107681751251 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.03738900274038315 0.03356627002358437 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.009382165037095547 0.03738900274038315 0.03356627002358437 -0.009382165037095547 0.0236658900976181 0.03098114207386971 -0.009382165037095547 0.0236658900976181 0.03098114207386971 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.01227427553385496 0.03052753955125809 0.03227363899350166 -0.01227427553385496 0.03052753955125809 0.03227363899350166 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.01227427553385496 0.0236976221203804 0.06852835416793823</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1289\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"90\" source=\"#ID1293\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"270\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1293\">0.9999999999843209 5.59463077948367e-006 -2.416152423186181e-007 0.9999999999777997 6.557605099620334e-006 -1.182487493608621e-006 0.7071262376961327 0.6948662526521028 0.1308945181699234 -0.7071262376961327 -0.6948662526521028 -0.1308945181699234 -0.9999999999777997 -6.557605099620334e-006 1.182487493608621e-006 -0.9999999999843209 -5.59463077948367e-006 2.416152423186181e-007 1.092972036851802e-005 0.1851295783395137 -0.9827141187061349 2.740400571134737e-011 0.1851357863769715 -0.9827129492392885 0 0.185136694083701 -0.9827127782336801 -0 -0.185136694083701 0.9827127782336801 -2.740400571134737e-011 -0.1851357863769715 0.9827129492392885 -1.092972036851802e-005 -0.1851295783395137 0.9827141187061349 0.7070687980160841 0.6949183363800148 0.1309283034142069 -0.7070687980160841 -0.6949183363800148 -0.1309283034142069 0.7071193471183617 -0.6948704469520933 -0.1309094759117928 -0.7071193471183617 0.6948704469520933 0.1309094759117928 1.152910625477662e-010 0.1851188374083177 -0.9827161421471579 -1.152910625477662e-010 -0.1851188374083177 0.9827161421471579 9.082784110290093e-006 0.1851419944086071 -0.9827117796301753 -9.082784110290093e-006 -0.1851419944086071 0.9827117796301753 0.9999999981982459 5.683518537357934e-005 1.932019074476484e-005 -0.9999999981982459 -5.683518537357934e-005 -1.932019074476484e-005 -7.322717337165324e-006 0.9827132657669674 0.1851341060744877 7.322717337165324e-006 -0.9827132657669674 -0.1851341060744877 0.7071207355928849 -0.6948684197189324 -0.1309127364769786 -0.7071207355928849 0.6948684197189324 0.1309127364769786 0.7070877969633483 -0.6949008947275105 -0.1309182718050604 -0.7070877969633483 0.6949008947275105 0.1309182718050604 -1.092945993357549e-005 0.1851295784335574 -0.9827141186884213 1.092945993357549e-005 -0.1851295784335574 0.9827141186884213 9.582577601239217e-011 0.1851509204028663 -0.9827100979810738 -9.582577601239217e-011 -0.1851509204028663 0.9827100979810738 0.707133719216717 0.6948560980324883 0.1309080065305341 -0.707133719216717 -0.6948560980324883 -0.1309080065305341 6.699664853351547e-006 0.9827125128654742 0.1851381025416967 -6.699664853351547e-006 -0.9827125128654742 -0.1851381025416967 3.679930986933653e-006 -0.9827113486993524 -0.185144281909969 -3.679930986933653e-006 0.9827113486993524 0.185144281909969 9.809428192896419e-007 -0.982711713156937 -0.1851423474605306 -9.809428192896419e-007 0.982711713156937 0.1851423474605306 2.07520584667854e-018 0.1851366940837009 -0.9827127782336801 -2.07520584667854e-018 -0.1851366940837009 0.9827127782336801 -0.7071163400283342 0.6948735133440726 0.1309094424317747 0.7071163400283342 -0.6948735133440726 -0.1309094424317747 -1.718584229658197e-006 -0.9827120775996558 -0.1851404130297176 1.718584229658197e-006 0.9827120775996558 0.1851404130297176 -9.08256768208233e-006 0.1851419943304572 -0.9827117796449008 9.08256768208233e-006 -0.1851419943304572 0.9827117796449008 -2.079226534932906e-011 -0.185132285854762 0.9827136087050951 -1.544303238000122e-005 -0.1851341913731198 0.9827132496034303 -2.077496026233396e-018 -0.1851400068869456 0.9827121541173194 2.077496026233396e-018 0.1851400068869456 -0.9827121541173194 1.544303238000122e-005 0.1851341913731198 -0.9827132496034303 2.079226534932906e-011 0.185132285854762 -0.9827136087050951 4.149734441407028e-018 -0.1851306440014455 0.9827139180105317 -4.149734441407028e-018 0.1851306440014455 -0.9827139180105317 5.306861256704692e-007 -0.1851301225601347 0.9827140162430716 5.306861256704692e-007 -0.1851301225601347 0.9827140162430716 -5.306861256704692e-007 0.1851301225601347 -0.9827140162430716 -5.306861256704692e-007 0.1851301225601347 -0.9827140162430716 -0.7070712434321569 0.6949188944884924 0.1309121338692294 -0.999999999992516 3.673648708004297e-006 -1.21340366347125e-006 0.999999999992516 -3.673648708004297e-006 1.21340366347125e-006 0.7070712434321569 -0.6949188944884924 -0.1309121338692294 -0.7071171656275636 -0.6948719811382966 -0.1309131158584951 0.7071171656275636 0.6948719811382966 0.1309131158584951 -0.7070833248779243 -0.6949067594280631 -0.1309112958486298 0.7070833248779243 0.6949067594280631 0.1309112958486298 -1.628881000492389e-010 -0.1851190103732217 0.9827161095649339 1.628881000492389e-010 0.1851190103732217 -0.9827161095649339 2.072275978801209e-005 0.9827117597734726 0.1851420988686585 -2.072275978801209e-005 -0.9827117597734726 -0.1851420988686585 -5.306781267168944e-007 -0.1851301225601347 0.9827140162430716 -5.306781267168944e-007 -0.1851301225601347 0.9827140162430716 5.306781267168944e-007 0.1851301225601347 -0.9827140162430716 5.306781267168944e-007 0.1851301225601347 -0.9827140162430716 -0.7071208444863583 -0.6948680619418981 -0.1309140473211718 0.7071208444863583 0.6948680619418981 0.1309140473211718 -0.9999999999686882 6.26256998439923e-006 4.837770999284142e-006 0.9999999999686882 -6.26256998439923e-006 -4.837770999284142e-006 1.544266439301172e-005 -0.185134191506031 0.9827132495783969 -1.544266439301172e-005 0.185134191506031 -0.9827132495783969 0 -0.1851306440014456 0.9827139180105317 2.076191813833597e-018 -0.1851400068869453 0.9827121541173194 -2.076191813833597e-018 0.1851400068869453 -0.9827121541173194 -0 0.1851306440014456 -0.9827139180105317 -0.7071485051525848 0.6948381123294621 0.1309236010614372 0.7071485051525848 -0.6948381123294621 -0.1309236010614372 -0.999999998002033 6.258929378344746e-005 8.860817899594689e-006 0.999999998002033 -6.258929378344746e-005 -8.860817899594689e-006</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1291\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"144\" source=\"#ID1294\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"288\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1294\">0.6510872705125546 -0.1556902917672408 0.5091323331628461 0.4859498357783174 0.7999895375563727 -0.1353021326776318 -0.09163688868284226 0.6758417122097311 0.04800215363502502 0.5659956989651277 -0.1494790613651276 0.5659956989651277 0.5091398819643883 0.4859528635768757 0.6580499782604877 0.5063414818440127 0.7999982320181107 -0.1352987729461431 0.4729394207015694 0.4809972847452069 0.6218529516300301 0.5013837912807035 0.7638095683241661 -0.1402561063415956 0.04811526319480644 0.7213531073913666 0.04809234652788788 0.5659965854206529 -0.09153049147923925 0.6758553449678909 0.04800215363502502 0.565997478692822 -0.09163688868284226 0.4561468467564381 -0.1494790613651276 0.565997478692822 0.5091402582228589 0.485950990043552 0.3826219470117034 1.057795420483731 0.658050352644889 0.506339616781079 0.4163477624840881 -0.2182112697822676 0.2655901037478704 -0.2267597005850756 0.2060534626632536 0.4228385905839157 0.4729395515342789 0.4809964563939979 0.3464105655850779 1.052837079788438 0.621853079895568 0.5013829745340264 0.6148997267801072 -0.1606454691514448 0.4729381179354542 0.4809963655769018 0.763807486615806 -0.1402572512020607 0.04788904511082719 0.7213618711601205 0.1875369044727172 0.6758641087366354 0.04791196143232645 0.5660053491893753 0.04807709459996988 0.5659894528942754 0.0480580547087076 0.4106440228522598 -0.09157541091939606 0.4561494129102339 0.3825954800209273 1.057783002296572 0.5314738466463114 1.078168385901833 0.6580197401679548 0.5063259172927894 0.3464117597140501 1.052838829051515 0.4953354491949941 1.07322932668225 0.6218556839459112 0.5013851596091921 0.4161977624350172 -0.2182497707848508 0.2059276593544127 0.4228050014573921 0.3566741815061503 0.4313559367715039 0.2682872546432723 0.4263529644979455 0.06447197816393442 0.9967390040575556 0.215225639192149 1.005288852695318 0.3278292532561891 -0.2232425473342045 0.1175387683668979 0.417807654733203 0.2682932696752419 0.4263591477695988 0.1876433007419109 0.6758417122097311 0.2454855106770992 0.5659956989651277 0.04800215363502501 0.5659956989651277 -0.1771212857929688 -0.2317991959130784 -0.3278808897344198 -0.223250717587511 -0.2683332221435008 0.4263536238589009 0.3277879802678649 -0.2232535352137678 0.1770382567541186 -0.2318049380274199 0.1175081133203516 0.4177988223024968 0.04792721333757736 0.5659967346302373 0.1875818234430332 0.4561566946461803 0.04794625294185437 0.4106513045881997 -0.04800215363502504 0.5660205297415833 0.09163688868284223 0.6758459780352492 0.1494790613651275 0.5660205297415833 0.3566755498470675 0.4313391620893886 0.205929031215576 0.4227881883703239 0.1528723625255549 1.001728466640204 0.09163688868284226 0.4561372364875994 -0.04800215363502502 0.5660016543558335 0.1494790613651276 0.5660016543558335 -0.04800135138284162 0.4106342368739969 -0.0480007950229394 0.5660012351480476 0.09163785387650254 0.4561365078338856 0.268293561735544 0.4263552504214559 0.1175390617829038 0.417803742594852 0.06447633242992115 0.9967408581486913 0.2454855106770992 0.5659974786928219 0.1876433007419109 0.4561468467564381 0.04800215363502505 0.5659974786928219 -0.6218441919080547 0.501383848524292 -0.6148889278733198 -0.1606447289196409 -0.7637912106097812 -0.140256575350682 -0.1174492761242781 0.417809338909525 -0.1769603112941838 -0.2317904042619489 -0.2681977522331389 0.4263602278180171 -0.2060029524054107 0.4228198476894341 -0.2655432373483784 -0.2267833374526798 -0.3567594013726532 0.4313713619072311 -0.2655036338905208 -0.226783065550902 -0.4162553089038189 -0.218231682781948 -0.3567309898836858 0.431370673836562 -0.04808123348330946 0.5659837339676254 -0.04811361390934024 0.7213334608495877 0.09153491548227659 0.6758271926694005 0.3568779477726087 0.4314031715482364 0.1530400304974734 1.001784796028239 0.3038042615818714 1.010334821786139 -0.04800295587472177 0.4106340241257506 -0.1876442659206286 0.4561362950856394 -0.04800351222623805 0.5660010223998012 -0.1529369738513216 1.001757681771448 -0.2059970122914718 0.4228204135917049 -0.3036925848774558 1.010307526190229 -0.6580482066325464 0.5063387778905422 -0.6510962043071398 -0.1556894494846782 -0.8000039794399367 -0.1353012352707589 -0.6218541365516803 0.5013845337171072 -0.4729440270315344 0.4809959098166953 -0.6149001735083197 -0.1606440521845235 -0.1174492839826364 0.4178092431173398 -0.2681977600723241 0.4263601322350106 -0.2151605257598007 1.005293849772534 -0.2060029338035077 0.4228201003191478 -0.3567593828654816 0.4313716135034493 -0.3036964347252453 1.010307426110565 -0.6580482484236974 0.5063393173290812 -0.5091347038764172 0.4859528069456206 -0.6510971306454888 -0.1556889157940269 -0.04792307364234808 0.5659961173990309 -0.1875413277420207 0.6758395761008507 -0.04789069370438232 0.7213458442810562 -0.1876433007419109 0.4561372364875994 -0.2454855106770992 0.5660016543558336 -0.04800215363502502 0.5660016543558336 -0.4953053611168168 1.073218739524393 -0.4729455980262873 0.4809882274780117 -0.6218557012413173 0.5013768798761702 -0.06457727243628572 0.9967267806838426 -0.117669046741589 0.4177884940441474 -0.2153434451407594 1.005276892152473 -0.3826043543167069 1.057794075527375 -0.5091348448501433 0.4859536581559255 -0.5315280563267647 1.078184581926353 -0.5315295409942268 1.078183713276601 -0.5091347033733921 0.4859528275585371 -0.6580482481193694 0.5063393370438158 -0.2454855106770992 0.5660205297415832 -0.1876433007419109 0.675845978035249 -0.04800215363502502 0.5660205297415832 -0.3463907463326202 1.052831956001588 -0.4729045888168348 0.4809869137284013 -0.4952691330856551 1.073217314052622</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 1 6 12 7 2 8 14 9 1 10 0 11 16 12 7 13 6 14 7 15 18 16 8 17 1 18 20 19 12 20 22 21 2 22 12 23 14 24 24 25 1 26 26 27 14 28 0 29 16 30 28 31 7 32 7 33 30 34 18 35 20 36 32 37 12 38 24 39 20 40 1 41 22 42 12 43 34 44 14 45 36 46 24 47 26 48 38 49 14 50 28 51 40 52 7 53 42 54 22 55 34 56 26 57 44 58 38 59 7 60 46 61 30 62 48 63 49 64 50 65 34 66 12 67 32 68 54 69 48 70 50 71 56 72 48 73 57 74 14 75 38 76 36 77 40 78 46 79 7 80 60 81 61 82 42 83 60 84 42 85 34 86 38 87 44 88 64 89 44 90 66 91 64 92 48 93 68 94 49 95 34 96 32 97 70 98 72 99 73 100 48 101 36 102 38 103 76 104 78 105 66 106 61 107 60 108 78 109 61 110 60 111 34 112 70 113 38 114 64 115 76 116 78 117 64 118 66 119 48 120 80 121 68 122 82 123 83 124 48 125 86 126 78 127 60 128 86 129 60 130 70 131 76 132 64 133 88 134 88 135 64 136 78 137 83 138 80 139 48 140 88 141 78 142 86 143</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1290\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1291\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 9 10 11 3 13 4 5 4 15 11 10 17 9 19 10 13 21 4 13 3 23 4 25 15 5 15 27 10 29 17 19 31 10 13 33 21 4 21 25 35 13 23 25 37 15 15 39 27 10 41 29 35 23 43 39 45 27 31 47 10 51 52 53 33 13 35 51 53 55 58 53 59 37 39 15 10 47 41 43 62 63 35 43 63 65 45 39 65 67 45 52 69 53 71 33 35 53 74 75 77 39 37 62 67 79 62 79 63 71 35 63 77 65 39 67 65 79 69 81 53 53 84 85 63 79 87 71 63 87 89 65 77 79 65 89 53 81 84 87 79 89</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1290\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1295\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1298\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1296\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1297\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1296\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"132\" source=\"#ID1300\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"396\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1300\">0.00151330791413784 0.02864761650562286 0.06481364369392395 0.003007436171174049 0.02510105818510056 0.0641457736492157 0.0124336164444685 0.02437891811132431 0.06798277795314789 0.0124336164444685 0.02437891811132431 0.06798277795314789 0.003007436171174049 0.02510105818510056 0.0641457736492157 0.00151330791413784 0.02864761650562286 0.06481364369392395 -0.002093736082315445 0.02519572526216507 0.06365212798118591 -0.002093736082315445 0.02519572526216507 0.06365212798118591 0.008178489282727242 0.03447502106428146 0.06988455355167389 0.008178489282727242 0.03447502106428146 0.06988455355167389 0.008178489282727242 0.01428460329771042 0.0660809725522995 0.008178489282727242 0.01428460329771042 0.0660809725522995 -0.002093736082315445 0.03011453151702881 0.06509023904800415 -0.002093736082315445 0.03011453151702881 0.06509023904800415 0.00151330791413784 0.02155684679746628 0.06347811222076416 0.00151330791413784 0.02155684679746628 0.06347811222076416 0.01964792050421238 0.02304359525442123 0.07507239282131195 0.01964792050421238 0.02304359525442123 0.07507239282131195 0.0132798757404089 0.007935501635074616 0.0722261369228363 0.0132798757404089 0.007935501635074616 0.0722261369228363 -0.005700994282960892 0.02864761650562286 0.06481364369392395 -0.005700994282960892 0.02864761650562286 0.06481364369392395 -0.002093736082315445 0.02008949965238571 0.06320127844810486 -0.002093736082315445 0.02008949965238571 0.06320127844810486 0.0132798757404089 0.03815094381570816 0.07791852951049805 0.0132798757404089 0.03815094381570816 0.07791852951049805 -0.002093736082315445 0.03865481913089752 0.07067219913005829 -0.002093736082315445 0.03865481913089752 0.07067219913005829 -0.002093736082315445 0.001676708459854126 0.07104742527008057 -0.002093736082315445 0.001676708459854126 0.07104742527008057 -0.002093736082315445 0.01010248810052872 0.06529328227043152 -0.002093736082315445 0.01010248810052872 0.06529328227043152 -0.007195173762738705 0.02510105818510056 0.0641457736492157 -0.007195173762738705 0.02510105818510056 0.0641457736492157 -0.005700994282960892 0.02155684679746628 0.06347811222076416 -0.005700994282960892 0.02155684679746628 0.06347811222076416 0.02355220727622509 0.02117396146059036 0.08431173861026764 0.02355220727622509 0.02117396146059036 0.08431173861026764 0.01604082249104977 0.007562488317489624 0.08174745738506317 0.01604082249104977 0.007562488317489624 0.08174745738506317 -0.002093736082315445 0.001921959221363068 0.08068540692329407 -0.002093736082315445 0.001921959221363068 0.08068540692329407 -0.01236628275364637 0.03447502106428146 0.06988455355167389 -0.01236628275364637 0.03447502106428146 0.06988455355167389 -0.01236628275364637 0.01428460329771042 0.0660809725522995 -0.01236628275364637 0.01428460329771042 0.0660809725522995 0.01604076288640499 0.03478480130434036 0.0868762880563736 0.01604076288640499 0.03478480130434036 0.0868762880563736 -0.002093736082315445 0.04440972954034805 0.07909753918647766 -0.002093736082315445 0.04440972954034805 0.07909753918647766 -0.020228561013937 0.007562488317489624 0.08174745738506317 -0.020228561013937 0.007562488317489624 0.08174745738506317 -0.01746771670877934 0.007935501635074616 0.0722261369228363 -0.01746771670877934 0.007935501635074616 0.0722261369228363 -0.01662124134600163 0.02437891811132431 0.06798277795314789 -0.01662124134600163 0.02437891811132431 0.06798277795314789 0.02355220727622509 0.01847297698259354 0.0950017124414444 0.02355220727622509 0.01847297698259354 0.0950017124414444 0.01604082249104977 0.0006505176424980164 0.09164398908615112 0.01604082249104977 0.0006505176424980164 0.09164398908615112 -0.002093736082315445 -0.006729543209075928 0.0902535617351532 -0.002093736082315445 -0.006729543209075928 0.0902535617351532 -0.020228561013937 0.0006505176424980164 0.09164398908615112 -0.020228561013937 0.0006505176424980164 0.09164398908615112 -0.01746771670877934 0.03815094381570816 0.07791852951049805 -0.01746771670877934 0.03815094381570816 0.07791852951049805 -0.02383571118116379 0.02304359525442123 0.07507239282131195 -0.02383571118116379 0.02304359525442123 0.07507239282131195 0.01604076288640499 0.03629373759031296 0.0983588844537735 0.01604076288640499 0.03629373759031296 0.0983588844537735 -0.002093736082315445 0.04042350500822067 0.08793878555297852 -0.002093736082315445 0.04042350500822067 0.08793878555297852 -0.02773984149098396 0.01847297698259354 0.0950017124414444 -0.02773984149098396 0.01847297698259354 0.0950017124414444 -0.02773984149098396 0.02117396146059036 0.08431173861026764 -0.02773984149098396 0.02117396146059036 0.08431173861026764 0.01964792050421238 0.01672781258821487 0.1042646914720535 0.01964792050421238 0.01672781258821487 0.1042646914720535 0.0132798757404089 0.001620359718799591 0.1014187186956406 0.0132798757404089 0.001620359718799591 0.1014187186956406 -0.002093736082315445 -0.004638850688934326 0.1002393662929535 -0.002093736082315445 -0.004638850688934326 0.1002393662929535 -0.01746771670877934 0.001620359718799591 0.1014187186956406 -0.01746771670877934 0.001620359718799591 0.1014187186956406 -0.02383571118116379 0.01672781258821487 0.1042646914720535 -0.02383571118116379 0.01672781258821487 0.1042646914720535 -0.020228561013937 0.03478480130434036 0.0868762880563736 -0.020228561013937 0.03478480130434036 0.0868762880563736 0.0132798757404089 0.03183591365814209 0.1071109622716904 0.0132798757404089 0.03183591365814209 0.1071109622716904 -0.002093736082315445 0.04367602616548538 0.0997496098279953 -0.002093736082315445 0.04367602616548538 0.0997496098279953 -0.01746771670877934 0.03183591365814209 0.1071109622716904 -0.01746771670877934 0.03183591365814209 0.1071109622716904 -0.020228561013937 0.03629373759031296 0.0983588844537735 -0.020228561013937 0.03629373759031296 0.0983588844537735 0.0124336164444685 0.01539282500743866 0.1113545000553131 0.0124336164444685 0.01539282500743866 0.1113545000553131 0.008178489282727242 0.005297861993312836 0.1094527095556259 0.008178489282727242 0.005297861993312836 0.1094527095556259 -0.002093736082315445 0.001115962862968445 0.108664870262146 -0.002093736082315445 0.001115962862968445 0.108664870262146 -0.01236628275364637 0.005297861993312836 0.1094527095556259 -0.01236628275364637 0.005297861993312836 0.1094527095556259 -0.01662124134600163 0.01539282500743866 0.1113545000553131 -0.01662124134600163 0.01539282500743866 0.1113545000553131 -0.01236628275364637 0.02548617869615555 0.113256186246872 -0.01236628275364637 0.02548617869615555 0.113256186246872 0.008178489282727242 0.02548617869615555 0.113256186246872 0.008178489282727242 0.02548617869615555 0.113256186246872 -0.002093736082315445 0.03809449821710587 0.1082897335290909 -0.002093736082315445 0.03809449821710587 0.1082897335290909 -0.002093736082315445 0.02966859936714172 0.1140438467264175 -0.002093736082315445 0.02966859936714172 0.1140438467264175 0.003007436171174049 0.0146685466170311 0.1151914745569229 0.003007436171174049 0.0146685466170311 0.1151914745569229 0.00151330791413784 0.01112633943557739 0.114523395895958 0.00151330791413784 0.01112633943557739 0.114523395895958 -0.002093736082315445 0.009656563401222229 0.1142469793558121 -0.002093736082315445 0.009656563401222229 0.1142469793558121 -0.005700994282960892 0.01112633943557739 0.114523395895958 -0.005700994282960892 0.01112633943557739 0.114523395895958 -0.007195173762738705 0.0146685466170311 0.1151914745569229 -0.007195173762738705 0.0146685466170311 0.1151914745569229 -0.005700994282960892 0.01821445673704147 0.1158591508865356 -0.005700994282960892 0.01821445673704147 0.1158591508865356 -0.002093736082315445 0.01968275755643845 0.116135448217392 -0.002093736082315445 0.01968275755643845 0.116135448217392 0.00151330791413784 0.01821445673704147 0.1158591508865356 0.00151330791413784 0.01821445673704147 0.1158591508865356 -0.002093736082315445 0.01457632333040237 0.1156851947307587 -0.002093736082315445 0.01457632333040237 0.1156851947307587</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1297\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"132\" source=\"#ID1301\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"396\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1301\">0.1956903806374744 0.3702693627518756 -0.9080781210519722 0.2767978448031712 0.1778221379204244 -0.9443316368616107 0.5872577302173264 0.1498232412232817 -0.7954126945739199 -0.5872577302173264 -0.1498232412232817 0.7954126945739199 -0.2767978448031712 -0.1778221379204244 0.9443316368616107 -0.1956903806374744 -0.3702693627518756 0.9080781210519722 2.4069769204625e-006 0.1851429709867631 -0.982711595682274 -2.4069769204625e-006 -0.1851429709867631 0.982711595682274 0.41523124678526 0.5579861698652578 -0.7184945691738096 -0.41523124678526 -0.5579861698652578 0.7184945691738096 0.4152520124328477 -0.2582140384559897 -0.8722908210652679 -0.4152520124328477 0.2582140384559897 0.8722908210652679 3.092309193832321e-005 0.4499216971921687 -0.8930680071749748 -3.092309193832321e-005 -0.4499216971921687 0.8930680071749748 0.195734922284424 -0.01445646791097698 -0.980550279554215 -0.195734922284424 0.01445646791097698 0.980550279554215 0.8528754350002218 0.07814618017484649 -0.5162331516836778 -0.8528754350002218 -0.07814618017484649 0.5162331516836778 0.6090890771932528 -0.620433230571093 -0.4940375516567427 -0.6090890771932528 0.620433230571093 0.4940375516567427 -0.1957192350159142 0.370234229083485 -0.9080862275465601 0.1957192350159142 -0.370234229083485 0.9080862275465601 2.257090650783234e-006 -0.0940749441470593 -0.9955651183516993 -2.257090650783234e-006 0.0940749441470593 0.9955651183516993 0.606843164777356 0.753827945089025 -0.2519619069737745 -0.606843164777356 -0.753827945089025 0.2519619069737745 4.52876460394671e-005 0.7269386552422567 -0.6867024024012211 -4.52876460394671e-005 -0.7269386552422567 0.6867024024012211 0.01668560911036096 -0.897510430114174 -0.4406774537968637 -0.01668560911036096 0.897510430114174 0.4406774537968637 7.089180052383154e-006 -0.4272513667247607 -0.9041328827011919 -7.089180052383154e-006 0.4272513667247607 0.9041328827011919 -0.2768174520306065 0.1778350597500305 -0.9443234561181808 0.2768174520306065 -0.1778350597500305 0.9443234561181808 -0.1957398696738184 -0.0144574372588037 -0.9805492776643019 0.1957398696738184 0.0144574372588037 0.9805492776643019 0.9825994497321882 0.04768106420081351 -0.1795127781041752 -0.9825994497321882 -0.04768106420081351 0.1795127781041752 0.6916137433321561 -0.6245883168010983 -0.3627118202508069 -0.6916137433321561 0.6245883168010983 0.3627118202508069 -8.052169911274337e-006 -0.9324818027209991 -0.3612169535464225 8.052169911274337e-006 0.9324818027209991 0.3612169535464225 -0.4152638558557382 0.5579383902303894 -0.7185128271137172 0.4152638558557382 -0.5579383902303894 0.7185128271137172 -0.4152548156556983 -0.2582057259968227 -0.8722919471926848 0.4152548156556983 0.2582057259968227 0.8722919471926848 0.7021791044699796 0.7119894581709351 0.003939124166071239 -0.7021791044699796 -0.7119894581709351 -0.003939124166071239 -0.01649914634204176 0.9972916561361611 -0.07167378022106048 0.01649914634204176 -0.9972916561361611 0.07167378022106048 -0.7034998926438633 -0.6446120515784689 -0.2992711212427118 0.7034998926438633 0.6446120515784689 0.2992711212427118 -0.6053376996549881 -0.6041444851763438 -0.5182429067603512 0.6053376996549881 0.6041444851763438 0.5182429067603512 -0.5872558020230481 0.1498361060737085 -0.7954116948517509 0.5872558020230481 -0.1498361060737085 0.7954116948517509 0.9849598354450867 -0.02379272750458698 0.1711374555083724 -0.9849598354450867 0.02379272750458698 -0.1711374555083724 0.6738930300558093 -0.7322553035040448 -0.09833796079032518 -0.6738930300558093 0.7322553035040448 0.09833796079032518 -0.01089455672182331 -0.9695025713242476 -0.2448388711571495 0.01089455672182331 0.9695025713242476 0.2448388711571495 -0.6732345283280943 -0.7291622953401415 -0.1227909480423722 0.6732345283280943 0.7291622953401415 0.1227909480423722 -0.6102173515399514 0.7601218285598231 -0.2232702166130507 0.6102173515399514 -0.7601218285598231 0.2232702166130507 -0.8531517942983409 0.1190310212392098 -0.5079012028616121 0.8531517942983409 -0.1190310212392098 0.5079012028616121 0.6768015028084661 0.7109748341810475 0.1909306443644764 -0.6768015028084661 -0.7109748341810475 -0.1909306443644764 0.0002619427007181099 0.9976283903600751 0.068829689332344 -0.0002619427007181099 -0.9976283903600751 -0.068829689332344 -0.9851563358757249 -0.05627531599207819 0.1621730023583073 0.9851563358757249 0.05627531599207819 -0.1621730023583073 -0.9822286559208107 0.03686212846388164 -0.184032744295982 0.9822286559208107 -0.03686212846388164 0.184032744295982 0.8451646013890729 -0.0989653286562158 0.5252643718003502 -0.8451646013890729 0.0989653286562158 -0.5252643718003502 0.5976308884055098 -0.6861926602264394 0.4147010420471637 -0.5976308884055098 0.6861926602264394 -0.4147010420471637 -2.769287440755231e-005 -0.9295143678751611 0.3687858987905372 2.769287440755231e-005 0.9295143678751611 -0.3687858987905372 -0.5976089936893609 -0.6862253529501121 0.4146784967056808 0.5976089936893609 0.6862253529501121 -0.4146784967056808 -0.8451601416135406 -0.09895473138994973 0.5252735441304108 0.8451601416135406 0.09895473138994973 -0.5252735441304108 -0.6943501393017593 0.7169794268532971 -0.06179308635070134 0.6943501393017593 -0.7169794268532971 0.06179308635070134 0.5976185875585842 0.4883301075234018 0.6359133037534798 -0.5976185875585842 -0.4883301075234018 -0.6359133037534798 0.01187222206486697 0.9858258610195975 0.1673511938655115 -0.01187222206486697 -0.9858258610195975 -0.1673511938655115 -0.5976220854673472 0.4883263199428125 0.635912925024149 0.5976220854673472 -0.4883263199428125 -0.635912925024149 -0.6763329695767453 0.7043165012944799 0.2156663633203012 0.6763329695767453 -0.7043165012944799 -0.2156663633203012 0.5872548942566114 -0.1498419288211753 0.7954112681743992 -0.5872548942566114 0.1498419288211753 -0.7954112681743992 0.4152537891845273 -0.5579015597107579 0.7185472428728649 -0.4152537891845273 0.5579015597107579 -0.7185472428728649 5.672463972588586e-008 -0.7269265674754418 0.6867151996995324 -5.672463972588586e-008 0.7269265674754418 -0.6867151996995324 -0.4152446317486396 -0.5579093061341975 0.7185465203678847 0.4152446317486396 0.5579093061341975 -0.7185465203678847 -0.5872665062521697 -0.1498228226207654 0.7954062939506557 0.5872665062521697 0.1498228226207654 -0.7954062939506557 -0.4152537205038676 0.2581954684019092 0.8722955048058053 0.4152537205038676 -0.2581954684019092 -0.8722955048058053 0.4152483299874877 0.2582110277020007 0.872293465306074 -0.4152483299874877 -0.2582110277020007 -0.872293465306074 6.775138903465313e-006 0.7315970759914494 0.6817372795695269 -6.775138903465313e-006 -0.7315970759914494 -0.6817372795695269 8.512239439668168e-006 0.4272458985545937 0.9041354666728984 -8.512239439668168e-006 -0.4272458985545937 -0.9041354666728984 0.2767973318869605 -0.1780315720475731 0.9442923257204464 -0.2767973318869605 0.1780315720475731 -0.9442923257204464 0.1957835389452804 -0.3702209790276415 0.9080777679064038 -0.1957835389452804 0.3702209790276415 -0.9080777679064038 -5.137564631330466e-005 -0.4499066475089857 0.8930755880034837 5.137564631330466e-005 0.4499066475089857 -0.8930755880034837 -0.1956889170168902 -0.3703019887117289 0.9080651325278903 0.1956889170168902 0.3703019887117289 -0.9080651325278903 -0.2767603498626814 -0.1779618944664103 0.9443162991613628 0.2767603498626814 0.1779618944664103 -0.9443162991613628 -0.1956928545008283 0.0145078660224017 0.9805579169640077 0.1956928545008283 -0.0145078660224017 -0.9805579169640077 -1.827556367716609e-005 0.09414657368914475 0.9955583470237183 1.827556367716609e-005 -0.09414657368914475 -0.9955583470237183 0.1956948075932166 0.01448265239006214 0.9805578999022968 -0.1956948075932166 -0.01448265239006214 -0.9805578999022968 2.405554025817842e-006 -0.1851566190805033 0.9827090242818015 -2.405554025817842e-006 0.1851566190805033 -0.9827090242818015</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1299\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"384\" source=\"#ID1302\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"768\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1302\">0.2080582420229697 0.3882045639627037 0.171383566938535 0.3776320810910839 0.1046905764235344 0.4383724341029862 0.1010017631055067 0.3294286417634476 0.1202050940286545 0.2920410646281706 0.07309387706344146 0.307930832875431 0.2090662446480763 0.4685215090185798 0.2080315582321686 0.3882634996152287 0.1046564174161391 0.4384218369377809 0.2496123824858481 0.2200480093324486 0.1394726711780237 0.2602934649331121 0.2386395607208875 0.2998444509836821 0.06376238275677403 0.3676674803682631 0.05673238008998306 0.3277340851400835 0.02596570958586805 0.3599869945924319 0.1589088718957364 0.2396154021835559 0.1086236296223543 0.2317627961669785 0.1161818469373493 0.2618915737983167 0.1464213323988043 0.533592116390885 0.09817371566666291 0.604310598754456 0.2549750272269263 0.5525622137268859 0.103825972067229 0.4724434417343824 0.06509943028128994 0.4685762677249725 0.01727397236375587 0.5394743884514127 0.2649373005417774 0.4105097867300601 0.1571726437905581 0.388986221498794 0.1062425157039879 0.4585337399394807 0.2496140858291876 0.2200245139129967 0.2147949831452184 0.206138284531609 0.1394763887758067 0.2602733806614553 -0.02231501358307491 0.3721826220829955 0.01548370099147176 0.3645021277390662 -0.01528541984169108 0.3322491823064301 0.1247570099462456 0.2206571694598572 0.1033248141235846 0.1840256789465968 0.07674430986559575 0.2065184020678076 0.254964509120884 0.552582383197711 0.09816146859795036 0.6043275260536403 0.2605997383241684 0.6327157898210546 0.2649362945355829 0.4105211844224449 0.1062408657725533 0.4585438208054554 0.2675298292567629 0.4907552629770638 0.1276331686020876 0.5504554024377412 0.1038775357813703 0.4724001927331763 0.01733835202234516 0.5394413787095309 0.1384203174032103 0.2614922151725247 -0.01085229198658636 0.3255561382136697 0.1544275092811839 0.340760731290634 0.1438308082842277 0.005171244455458367 0.0452312589261509 0.06095763251281533 0.1520765339589031 0.08516605074963499 -0.06263340927464314 0.3422366332281409 -0.03472552967862196 0.3207385988470679 -0.08183952982352577 0.3048486639301516 -0.08732518098070186 0.5580348656151252 -0.02485981102038577 0.4761082008774138 -0.06358822450061247 0.4799761398409971 0.10631886024611 -0.003338514110620998 0.04523073783769346 0.06095640886336243 0.1438299019628124 0.005169599450056709 -0.08674402536572262 0.2344196707044798 -0.03872978573575731 0.2202807567916615 -0.06531287802638468 0.1977878005772124 0.1221074455191948 0.6280235097575183 0.08829727228098044 0.703753494718967 0.285842149394967 0.6513517727745747 0.1489079664835728 0.6196372241314372 0.03812327434693984 0.6122692549671323 0.002326090532160327 0.6874224568079909 0.1200074108369201 0.5674038945552706 0.1259503105362105 0.6453054766934032 0.2837585702440268 0.590691403734369 0.1528789556923448 0.5684602092775959 -0.01310889317377053 0.5591850992389119 -0.01218794922812959 0.6350249708269947 0.02798624290204783 0.2513443940562198 -0.01085177440272786 0.3255667206167832 0.1384221967330916 0.2615047611748251 -0.08153584686102669 0.2801217377832773 -0.07397905136523253 0.2499925822418439 -0.1242658053286974 0.2578452867549194 -0.1819365595642197 0.4902346623673546 -0.1442088430693662 0.3994057130453525 -0.1808846373144836 0.4099762411847058 0.02288594704291429 0.5470312648394177 -0.02492679807781306 0.4761272149880436 -0.08741198483382286 0.5580445273350287 -0.1394450479261169 0.01613795932540049 -0.1852058514391318 0.1046420371559939 -0.07835760972878399 0.08043328459741525 -0.1769541244099746 0.02464457027635999 -0.185204818429171 0.1046396117936526 -0.139441008528674 0.0161364959594385 0.06741342792232763 0.6808947856999051 0.2228588296250281 0.7011366573705343 0.2657729754807748 0.630433478214673 0.1352566951232709 0.6206283495429738 0.2902567707110412 0.6429042249500787 0.2911088085944585 0.5626421563380348 0.1489626486947834 0.6196133995722869 0.002387909799050052 0.6874081822758681 0.1682023498449169 0.6984386902146473 0.1506261487647364 0.5603116479083441 -0.01411168737255509 0.6273789999156675 0.1757988307631528 0.6357992196468209 -0.02568429657156245 0.6347703883653577 -0.02495908944858601 0.5589292021810814 -0.2156018516536662 0.643127653372318 -0.06514438190551528 0.2633726167132439 -0.1915922019484218 0.352800069700637 -0.02630892620494943 0.3375957727410948 -0.2479516845314106 0.2505007583338688 -0.2369886348386537 0.3302972074025672 -0.2131316044867787 0.2366157045391757 -0.181867065913399 0.4902492869963763 -0.07745886651356443 0.4601475953214236 -0.144161252169029 0.3994147093794894 0.001359886543496893 0.6182124634845919 -0.1094276578114278 0.6255816144805028 -0.1286571737077494 0.7044084431602284 -0.1755853420183451 0.2735265650159313 -0.1915919410095564 0.3527953443888429 -0.06514645085925339 0.2633658527220589 -0.236965033320896 0.3303158736430435 -0.1377995039188114 0.2907638994653895 -0.213122803815267 0.2366320389842904 0.07756392616899793 0.6304498435742529 0.05366712537029805 0.7151253977820606 0.2329941519881805 0.6507637048681906 0.1932670534730516 0.5379296285845305 0.02730019389423506 0.5284229376606484 -0.01129022340284161 0.6006518969316107 0.138284401693455 0.6404778035460549 0.07615862066183092 0.7218970631011209 0.2935508929381908 0.6615742729914216 0.176599968659267 0.4818190296465187 -0.01310071310947299 0.470855685318903 -0.04269214992280118 0.5696259222882558 -0.0261304068675559 0.5251982967325118 -0.2159192031756957 0.5352032708817965 -0.1929730855310471 0.628432874748292 -0.02579307327864677 0.5520117546201454 -0.1917753686403668 0.5613856719066962 -0.2157922616770364 0.6371056923739527 -0.125094583659455 0.551031642965349 -0.233647954502779 0.570000547687834 -0.2392878783191334 0.6501339370444887 0.03707694644989035 0.6933791868335899 0.001287706720952842 0.6182234440958171 -0.1287410399310728 0.7044085138252826 -0.2766006809446024 0.5138713407498793 -0.1153121323528152 0.4816592282457536 -0.1662437506292764 0.4121121695409867 -0.2740092436721249 0.4336369129846999 -0.2766035107276342 0.513871899331205 -0.1662451406294676 0.4121136944166516 0.2556632473040211 0.6941827097584667 0.07613108897525486 0.7581895240206594 0.2695143022305876 0.7846351439976531 0.06590489319615893 0.7285601847238541 0.259285526863961 0.7550914667326976 0.2843435659551222 0.6706239033359103 0.1617965981833127 0.4442247481849591 -0.04080049484237337 0.5107678252204927 0.1490544489404103 0.5198569286160608 0.1773340919812732 0.5423554378049972 -0.04716662747071239 0.6215991558867381 0.1484220901923369 0.6345525160244437 0.01003422637323316 0.5847062943806605 -0.02716728418582717 0.4875414780077202 -0.1854264661766825 0.5988261138125302 -0.07669825523228402 0.7353170697687607 -0.1414713327027521 0.655184667415497 -0.2699311341538568 0.7625046186014222 -0.157344457189635 0.6507872178140571 -0.1484700983558898 0.5730585792750997 -0.3126460023175801 0.6717210882007215 -0.07681739075579377 0.6217440960200278 -0.1250691239449588 0.5510263051573182 -0.2392550393970368 0.6501338608937675 0.005646298457818357 0.4408160893341088 -0.1602739329270165 0.4508488223597982 -0.1441685953371539 0.5260830347811247 -0.2878860286894726 0.6668763501632932 -0.1300129888345546 0.5620410501109798 -0.2934317215176717 0.5867306020968504 0.1015232348939078 0.5866750997084917 0.09720003321684195 0.6668629984245904 0.2942986226919566 0.6157375177931697 0.1373413603375052 0.7237529430955545 -0.05256313650851326 0.7153287971421402 -0.0481843548750184 0.8063700168014226 0.07570508625083916 0.6592520854617144 0.07241333498619998 0.7394768146881223 0.268853543301056 0.6868101313368737 0.1517674658002891 0.6997244517686309 -0.04400127574436411 0.6885804100920228 -0.03638949172855385 0.7686149563678284 0.004998956006142696 0.6862408483747942 -0.1907722065023648 0.6973853942935883 -0.1685891660654876 0.7757317551434142 -0.2543749297989185 0.7544038215594972 -0.09393675393800623 0.6508236897929691 -0.2870849600325312 0.6783810647268174 -0.2927235876658776 0.7568772729065211 -0.1611857191789751 0.6518900510986958 -0.3166207076123774 0.672201774437577 -0.2347778985046108 0.710483796899215 -0.1128779830293311 0.6168726118426419 -0.2767838310329202 0.6394439938315563 0.0841389162801193 0.5829415879532797 0.04743476569016653 0.5101068455946162 -0.105753089981269 0.5915806611126669 -0.03673915749690032 0.7102227954984445 -0.0730018702055297 0.6351987822433595 -0.1920594005484161 0.7310470828487421 0.0972006896596182 0.6668669704030218 0.2606319063263749 0.6915065253920528 0.2942993536290568 0.6157416674978724 0.07241670287206464 0.7395035949661424 0.2361453857394986 0.7628609343992937 0.2688574826135216 0.6868382306077284 0.1650885440251674 0.7423708403751169 -0.0189626455091732 0.8270042884992223 0.1768001133898592 0.8382999474881305 0.1517608075590242 0.6996736720411803 -0.03639401679218882 0.7685677820582493 0.1295796612097496 0.7780205881684124 -0.002604180917756822 0.7663214238895806 0.005010321853939543 0.6862870376575062 -0.1685813223016391 0.7757737164068272 -0.09065528838327473 0.7310249783205859 -0.09394779220725852 0.6508004863863935 -0.2543836567215877 0.754382833644238 -0.08406438233962031 0.6538138320318847 -0.08838826351847956 0.5736264274176743 -0.247495419168689 0.6784533208505356 -0.06783662193725235 0.7199435960856713 -0.09289436582891378 0.6354759784948433 -0.2612011993119516 0.7464705386397327 0.09567019989317839 0.7392873824859151 -0.09422137123556697 0.7479323725353121 -0.1034184211764667 0.8440309126814857 -0.0476654507798161 0.6794313502269357 -0.2031153618598148 0.6996480116237488 -0.2162479199072611 0.7901667433545733 0.1233343970809288 0.5214166957459726 0.2820263719437469 0.4733929648057076 0.1207371656860335 0.4411819771735436 0.2006501146604302 0.5183762525620003 0.005029331790608622 0.5056491440348117 0.01160227546055524 0.5857430621380582 0.08161017703864065 0.5779366673242971 0.08725860645803901 0.6580740760745135 0.2440492058866474 0.6063246612429023 0.1305743452376824 0.6584494751579818 -0.03524161102812632 0.6474158926183059 -0.01600154488583202 0.7262417747470411 -0.004223759032836607 0.6414631458429357 -0.1700431486384346 0.6524965984240604 -0.1342590765612526 0.7276587441820807 -0.2171399658048231 0.6596095700459324 -0.102949530992559 0.5605012715081108 -0.2653882882540545 0.5888895289933324 -0.1116692834863443 0.418030489126575 -0.2729578219881398 0.450242930628122 -0.2220198422858973 0.5197910101150416 -0.2474956980842612 0.678452789270064 -0.08838860081279965 0.5736258410028052 -0.2811633898565886 0.6026880952129459 0.05409249544158197 0.8073395572925669 0.05966025944387264 0.7163385405005769 -0.1416985174983493 0.8183612303317118 0.1233291602950166 0.5213706510168323 0.2310849248397054 0.5428932217507596 0.282019649796565 0.4733438827122014 0.08725861575139056 0.6580743091594025 0.1958017724451708 0.6770442728344743 0.2440492238456599 0.6063249105757141 0.2006513188047662 0.5183804059416854 0.01160334398944389 0.585746980003428 0.1774426994942418 0.5965343702039254 0.1305748135810249 0.658460743190107 -0.01600182655903531 0.7262520392295695 0.09479064695705169 0.7336226615917477 -0.02346344094958563 0.7202787574019434 -0.004224923338314924 0.6414526413781714 -0.1342588794123853 0.7276495107459581 -0.1085966439099987 0.640643569267857 -0.1029476864153791 0.5605059964387001 -0.2171391271351572 0.6596135777394324 -0.1142545077211706 0.4982870351788154 -0.1116541954595357 0.4180514559230356 -0.2220099714195967 0.5198084756169563 -0.007739909084885002 0.3667732939438934 0.00826160109455059 0.2875004536900948 -0.1181799302189235 0.3769340437589404 0.02648622302457283 0.57874511957447 0.03305907657106505 0.4986512882814798 -0.1393565486291509 0.5895325357957912 0.03305971296194421 0.4986526400923563 -0.1625640946810289 0.5113797199135576 -0.1393560029338519 0.5895337811261071 0.1477670252786445 0.3251474826058816 0.2579173242316524 0.284900112650938 0.1587588837187196 0.2453515516988695 0.04489251775895983 0.3788118852243066 0.1941670260061251 0.3147455280013232 0.02888817239001664 0.2995395883191777 0.09340040653540357 0.408957019524095 0.09443325949047135 0.4892189907694559 0.1977978177184108 0.4390597401728739 -0.01700424292782076 0.4916737909751708 0.006765468393145828 0.5697291266390435 0.09329828349014012 0.5026902472052257 -0.1335211427572895 0.4950467490333376 -0.08572101886471382 0.5659605325024991 -0.02321586824066765 0.4840287800018171 -0.1205927518739747 0.387292188398676 -0.2249920317252153 0.4173894234732767 -0.1582728790865721 0.4781123703852491 -0.1604314491502845 0.2148771169737214 -0.2595886569148715 0.2544264682782443 -0.1842723229005086 0.3085603014123665 -0.1038340372901505 0.1056829109646204 -0.05806716518954648 0.01718763258847805 -0.1649164670862111 0.04139669522916714 -0.1181642265434135 0.3769626624200317 0.008282488544084487 0.2875336079700712 -0.1569998946990238 0.3027388807033044 0.1477661879727247 0.3251199328738696 0.1826025400776905 0.3390062713382762 0.2579148488932883 0.2848697887431579 0.09441109444261013 0.4894653628017057 0.1310455411064328 0.500034700779838 0.1977958265194056 0.4393318484204865 0.155341211678657 0.3890139057296106 0.1941814072320926 0.3147915900584225 0.04490407271647314 0.3788538718982092 0.006801692781106001 0.5695807395810987 0.04553908455198724 0.573447099210587 0.09330861190876177 0.5025211808494376 -0.02321802396029496 0.4841270912619529 -0.08576115238161489 0.566040906577534 -0.04702152290862134 0.5621760547641354 -0.120633676237802 0.3872629880546628 -0.1582450040765638 0.4781008164818528 -0.1216129381345534 0.4675259254091417 -0.1494293674300025 0.2946669358965301 -0.1604129358621988 0.2148711223650165 -0.1842665688488493 0.3085522968429815 -0.06623956381366637 0.09719929106545393 -0.05794927563359222 0.0172095069455723 -0.1037623795280825 0.1056899803016136 0.1369209661971957 0.125083638802776 0.1979812565786531 0.06078440868974403 0.09940135812491932 0.1165898096804462 0.06457760427489892 0.2611078435790685 0.1148573908294561 0.2689606230022873 0.1072944986554617 0.23882018376842 0.09944066821653162 0.1166923458920594 0.1980381408147453 0.06090616171214715 0.09119066960290964 0.0367005362591048 0.05839749350901192 0.2935323672363474 0.03914909840766832 0.330895245008053 0.08626643021294608 0.3150174476167217 -0.006831296614083174 0.3289837123361127 0.0002444636612285904 0.3689196089610778 0.03097801309104284 0.3366591568939948 -0.03460728754184527 0.324440008484787 -0.07241863793649281 0.3321154617135932 -0.04168263633880348 0.3643759502252016 -0.09677293437997288 0.2807476421119609 -0.1246418658234179 0.3022329471600883 -0.07752175078445497 0.3181109105842664 -0.141934830421964 0.2205948741971674 -0.1494963004299555 0.2507356913852268 -0.0992150020156706 0.2428828134899558 -0.08010388262469373 0.1847174117292542 -0.1281037157479544 0.1988746742058536 -0.1015066903322446 0.2213608795203222 0.04208799284752866 0.1984597971967464 0.06349184826195159 0.235102886276443 0.09008628595217623 0.2126169133576009</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"128\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 1 9 10 10 2 11 12 12 6 13 0 14 6 15 14 16 1 17 2 18 16 19 8 20 12 21 0 22 8 23 2 24 10 25 18 26 1 27 14 28 10 29 12 30 20 31 6 32 6 33 22 34 14 35 8 36 16 37 24 38 2 39 18 40 16 41 26 42 12 43 8 44 10 45 28 46 18 47 14 48 30 49 10 50 20 51 32 52 6 53 26 54 20 55 12 56 22 57 30 58 14 59 6 60 34 61 22 62 16 63 36 64 24 65 26 66 8 67 24 68 18 69 38 70 16 71 18 72 28 73 40 74 30 75 28 76 10 77 32 78 34 79 6 80 42 81 32 82 20 83 42 84 20 85 26 86 22 87 44 88 30 89 34 90 44 91 22 92 36 93 46 94 24 95 38 96 36 97 16 98 26 99 24 100 48 101 18 102 40 103 38 104 40 105 28 106 50 107 30 108 52 109 28 110 32 111 54 112 34 113 42 114 54 115 32 116 42 117 26 118 48 119 44 120 52 121 30 122 54 123 44 124 34 125 36 126 56 127 46 128 48 129 24 130 46 131 38 132 58 133 36 134 38 135 40 136 60 137 40 138 50 139 62 140 28 141 52 142 50 143 54 144 42 145 64 146 64 147 42 148 48 149 66 150 52 151 44 152 54 153 66 154 44 155 46 156 56 157 68 158 58 159 56 160 36 161 48 162 46 163 70 164 38 165 60 166 58 167 60 168 40 169 62 170 62 171 50 172 72 173 50 174 52 175 74 176 66 177 54 178 64 179 64 180 48 181 70 182 74 183 52 184 66 185 56 186 76 187 68 188 70 189 46 190 68 191 58 192 78 193 56 194 58 195 60 196 80 197 60 198 62 199 82 200 84 201 62 202 72 203 72 204 50 205 74 206 86 207 66 208 64 209 86 210 64 211 70 212 74 213 66 214 86 215 76 216 88 217 68 218 78 219 76 220 56 221 70 222 68 223 90 224 58 225 80 226 78 227 80 228 60 229 82 230 82 231 62 232 84 233 84 234 72 235 92 236 72 237 74 238 94 239 86 240 70 241 90 242 74 243 86 244 94 245 96 246 88 247 76 248 90 249 68 250 88 251 78 252 98 253 76 254 78 255 80 256 100 257 80 258 82 259 102 260 104 261 82 262 84 263 84 264 92 265 106 266 92 267 72 268 94 269 94 270 86 271 90 272 96 273 108 274 88 275 98 276 96 277 76 278 90 279 88 280 110 281 78 282 100 283 98 284 100 285 80 286 102 287 102 288 82 289 104 290 104 291 84 292 106 293 106 294 92 295 112 296 92 297 94 298 110 299 94 300 90 301 110 302 114 303 108 304 96 305 108 306 110 307 88 308 98 309 116 310 96 311 100 312 118 313 98 314 102 315 120 316 100 317 102 318 104 319 122 320 104 321 106 322 124 323 126 324 106 325 112 326 112 327 92 328 110 329 114 330 128 331 108 332 116 333 114 334 96 335 112 336 110 337 108 338 118 339 116 340 98 341 100 342 120 343 118 344 102 345 122 346 120 347 122 348 104 349 124 350 124 351 106 352 126 353 126 354 112 355 128 356 130 357 128 358 114 359 128 360 112 361 108 362 116 363 130 364 114 365 118 366 130 367 116 368 118 369 120 370 130 371 120 372 122 373 130 374 122 375 124 376 130 377 130 378 124 379 126 380 130 381 126 382 128 383</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1298\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1299\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"128\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 4 7 5 3 5 9 3 11 4 5 7 13 4 15 7 9 17 3 9 5 13 19 11 3 11 15 4 7 21 13 15 23 7 25 17 9 17 19 3 9 13 27 19 29 11 11 31 15 7 33 21 13 21 27 15 31 23 23 35 7 25 37 17 25 9 27 17 39 19 41 29 19 11 29 31 7 35 33 21 33 43 27 21 43 31 45 23 23 45 35 25 47 37 17 37 39 49 25 27 39 41 19 51 29 41 29 53 31 35 55 33 33 55 43 49 27 43 31 53 45 35 45 55 47 57 37 47 25 49 37 59 39 61 41 39 63 51 41 51 53 29 65 43 55 49 43 65 45 53 67 45 67 55 69 57 47 37 57 59 71 47 49 59 61 39 63 41 61 73 51 63 75 53 51 65 55 67 71 49 65 67 53 75 69 77 57 69 47 71 57 79 59 81 61 59 83 63 61 73 63 85 75 51 73 65 67 87 71 65 87 87 67 75 69 89 77 57 77 79 91 69 71 79 81 59 83 61 81 85 63 83 93 73 85 95 75 73 91 71 87 95 87 75 77 89 97 89 69 91 77 99 79 101 81 79 103 83 81 85 83 105 107 93 85 95 73 93 91 87 95 89 109 97 77 97 99 111 89 91 99 101 79 103 81 101 105 83 103 107 85 105 113 93 107 111 95 93 111 91 95 97 109 115 89 111 109 97 117 99 99 119 101 101 121 103 123 105 103 125 107 105 113 107 127 111 93 113 109 129 115 97 115 117 109 111 113 99 117 119 119 121 101 121 123 103 125 105 123 127 107 125 129 113 127 115 129 131 109 113 129 115 131 117 117 131 119 131 121 119 131 123 121 131 125 123 127 125 131 129 127 131</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1298\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1303\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1308\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1306\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1307\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1306\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"174\" source=\"#ID1309\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"522\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1309\">0.5757430791854858 -0.2640672326087952 -0.04370040446519852 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5220236778259277 0.04897113516926765 -0.04865696281194687 0.5220236778259277 0.04897113516926765 -0.04865696281194687 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5757430791854858 -0.2640672326087952 -0.04370040446519852 0.5596339106559753 -0.4551787674427033 -0.0152185931801796 0.5596339106559753 -0.4551787674427033 -0.0152185931801796 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.1914478987455368 0.04898110404610634 -0.04865696281194687 0.1914478987455368 0.04898110404610634 -0.04865696281194687 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5609543919563294 -0.5950192809104919 0.115213468670845 0.5609543919563294 -0.5950192809104919 0.115213468670845 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.574457585811615 -0.06990624219179153 -0.2623734772205353 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.574457585811615 -0.06990624219179153 -0.2623734772205353 0.1425719261169434 -0.2640497386455536 -0.04370040446519852 0.1425719261169434 -0.2640497386455536 -0.04370040446519852 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.1586782038211823 -0.4551669061183929 -0.0152185931801796 0.1586782038211823 -0.4551669061183929 -0.0152185931801796 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5491922497749329 -0.6375892162322998 0.3780633807182312 0.5491922497749329 -0.6375892162322998 0.3780633807182312 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.1438722163438797 -0.06989359110593796 -0.2623734772205353 0.1438722163438797 -0.06989359110593796 -0.2623734772205353 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.1573539972305298 -0.595005989074707 0.1152148991823196 0.1573539972305298 -0.595005989074707 0.1152148991823196 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5184099674224854 -0.8335617780685425 0.3569554090499878 0.5184099674224854 -0.8335617780685425 0.3569554090499878 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1950476169586182 -0.8335521221160889 0.3569565713405609 0.1950476169586182 -0.8335521221160889 0.3569565713405609 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.2369584441184998 -0.8251082301139832 0.4601387679576874 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.2369584441184998 -0.8251082301139832 0.4601387679576874 0.3958669900894165 -0.85288006067276 0.4996026456356049 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.3958669900894165 -0.85288006067276 0.4996026456356049 0.4764984846115112 -0.8251250982284546 0.4601365625858307 0.4764984846115112 -0.8251250982284546 0.4601365625858307 0.4596176445484161 -0.8469366431236267 0.4531694352626801 0.4596176445484161 -0.8469366431236267 0.4531694352626801 0.3175884783267975 -0.8528740406036377 0.4996022284030914 0.3175884783267975 -0.8528740406036377 0.4996022284030914 0.2538373470306397 -0.8469233512878418 0.4531687796115875 0.2538373470306397 -0.8469233512878418 0.4531687796115875</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1307\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"174\" source=\"#ID1310\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"522\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1310\">-0.5623456695593759 -0.02902424062761077 0.8263927282979973 -0.6776788756103134 -0.06952626265423349 0.7320638225953225 -0.08364715755509074 0.3839984169292143 0.9195370404876635 0.08364715755509074 -0.3839984169292143 -0.9195370404876635 0.6776788756103134 0.06952626265423349 -0.7320638225953225 0.5623456695593759 0.02902424062761077 -0.8263927282979973 -0.6954869493704354 0.3760430533359256 0.6122822268310583 0.6954869493704354 -0.3760430533359256 -0.6122822268310583 -0.3204674790414629 -0.04817752523915629 0.9460335728390615 0.3204674790414629 0.04817752523915629 -0.9460335728390615 0.6878997258483419 -0.0773037578987384 0.7216772798089942 -0.6878997258483419 0.0773037578987384 -0.7216772798089942 -0.9200618122166246 0.3674044358970494 0.1360155953699105 0.9200618122166246 -0.3674044358970494 -0.1360155953699105 -0.07128196911654768 -0.02119409286438933 0.9972310120060061 0.07128196911654768 0.02119409286438933 -0.9972310120060061 -0.278925631441701 0.0822711107392837 0.9567820841040937 0.278925631441701 -0.0822711107392837 -0.9567820841040937 0.08407854415395319 0.387336020948779 0.9180967298103827 -0.08407854415395319 -0.387336020948779 -0.9180967298103827 2.255743400527115e-005 0.8234880555100644 0.5673336072571545 2.140412797513351e-005 0.8234874830219355 0.5673344382708149 3.033972759434882e-005 0.9277932590582046 0.373094716560897 -3.033972759434882e-005 -0.9277932590582046 -0.373094716560897 -2.140412797513351e-005 -0.8234874830219355 -0.5673344382708149 -2.255743400527115e-005 -0.8234880555100644 -0.5673336072571545 -0.6145553697712602 0.7034281203016348 0.3570862319583578 0.6145553697712602 -0.7034281203016348 -0.3570862319583578 -0.05429496829919668 0.4036684937205148 0.9132928356199889 0.05429496829919668 -0.4036684937205148 -0.9132928356199889 0.9726035301304553 -0.1616463061327001 -0.1670713766371429 0.9746476165022039 -0.06780241782248969 -0.2132248948504782 0.9720490564290999 0.04311552109500944 -0.2307849296119713 -0.9720490564290999 -0.04311552109500944 0.2307849296119713 -0.9746476165022039 0.06780241782248969 0.2132248948504782 -0.9726035301304553 0.1616463061327001 0.1670713766371429 0.0336392230587115 0.7307994210963498 0.6817628684500544 -0.0336392230587115 -0.7307994210963498 -0.6817628684500544 0.7374793544197982 0.4572059492354973 -0.4970783859596251 0.8838275377583784 0.3740634335566644 -0.2809367031481668 -0.8838275377583784 -0.3740634335566644 0.2809367031481668 -0.7374793544197982 -0.4572059492354973 0.4970783859596251 0.5785150252202893 -0.02554248858252377 0.8152717012575499 -0.5785150252202893 0.02554248858252377 -0.8152717012575499 2.595741966724495e-005 0.9277954126478304 0.3730893614080339 -2.595741966724495e-005 -0.9277954126478304 -0.3730893614080339 -0.04629672257949584 0.8986462600662638 0.4362241542456291 0.04629672257949584 -0.8986462600662638 -0.4362241542456291 -0.904333663484486 0.4260001815927788 0.02654186074200746 0.904333663484486 -0.4260001815927788 -0.02654186074200746 0.9834693286842997 -0.1261076284381207 -0.1299420855110674 -0.9834693286842997 0.1261076284381207 0.1299420855110674 0.3527001788631265 0.7653825052469869 -0.5383235128542731 -0.3527001788631265 -0.7653825052469869 0.5383235128542731 -0.03456069332299173 0.7307200114792106 0.6818018944685153 0.03456069332299173 -0.7307200114792106 -0.6818018944685153 0.3308857098890422 -0.04606984733465251 0.94254560428543 -0.3308857098890422 0.04606984733465251 -0.94254560428543 0.7083231229345967 0.370005918120624 0.6011438879934609 -0.7083231229345967 -0.370005918120624 -0.6011438879934609 0.9329916499520448 0.3380979339269275 0.1233546439908304 -0.9329916499520448 -0.3380979339269275 -0.1233546439908304 4.175137933241703e-005 0.9624971715928647 0.2712917118759023 -4.175137933241703e-005 -0.9624971715928647 -0.2712917118759023 -0.06316387502239948 0.9659005428502105 0.251090553812411 0.06316387502239948 -0.9659005428502105 -0.251090553812411 -0.5338774675678342 0.7433939804543349 0.4029146801093459 0.5338774675678342 -0.7433939804543349 -0.4029146801093459 0.9282916758272926 -0.3528729355165036 -0.1172828033844797 -0.9282916758272926 0.3528729355165036 0.1172828033844797 -0.7371727916115995 0.4555778108195047 -0.4990241813744788 0.7371727916115995 -0.4555778108195047 0.4990241813744788 0.2927453765890279 0.08075837779410651 0.9527739652728829 -0.2927453765890279 -0.08075837779410651 -0.9527739652728829 -0.3690024290606827 0.7579722564310877 -0.5378803452702854 0.3690024290606827 -0.7579722564310877 0.5378803452702854 0.07128622684052716 -0.02118911041509052 0.9972308135344886 -0.07128622684052716 0.02118911041509052 -0.9972308135344886 0.6341081704417082 0.6888848242950419 0.351204394954076 -0.6341081704417082 -0.6888848242950419 -0.351204394954076 0.9204352528465152 0.3903257781933799 0.02108867456964116 0.9181639455430147 0.3957148118369558 0.01961521852354617 -0.9181639455430147 -0.3957148118369558 -0.01961521852354617 -0.9204352528465152 -0.3903257781933799 -0.02108867456964116 5.178125723876811e-005 0.9624944681935413 0.271301301168154 -5.178125723876811e-005 -0.9624944681935413 -0.271301301168154 -0.06528031215682842 0.9705532911741637 0.2318723567735187 0.06528031215682842 -0.9705532911741637 -0.2318723567735187 -0.8071345011136001 0.5825913322456345 -0.09550516585167916 0.8071345011136001 -0.5825913322456345 0.09550516585167916 -0.06764256345976379 0.8384986448583431 0.540688918121422 0.06764256345976379 -0.8384986448583431 -0.540688918121422 0.593262699854513 -0.8040659702966354 -0.03895233461892018 -0.593262699854513 0.8040659702966354 0.03895233461892018 -0.8897101437617623 0.3619257650191408 -0.2782545609738211 0.8897101437617623 -0.3619257650191408 0.2782545609738211 -0.9720327846987922 0.04319680535765318 -0.2308382582623698 0.9720327846987922 -0.04319680535765318 0.2308382582623698 -0.9746323213825966 -0.06775027945219549 -0.2133113633881711 0.9746323213825966 0.06775027945219549 0.2133113633881711 0.05226532367732852 0.4064698286281858 0.9121680844865584 -0.05226532367732852 -0.4064698286281858 -0.9121680844865584 0.9142349564372279 0.4047881480732629 0.01791646191741633 -0.9142349564372279 -0.4047881480732629 -0.01791646191741633 0.07205264813033455 0.7714983133929116 0.6321382509620019 0.079094426078098 0.6673578487483389 0.7405252011088925 0.08490175081320314 0.4049533256248704 0.9103870038473806 -0.08490175081320314 -0.4049533256248704 -0.9103870038473806 -0.079094426078098 -0.6673578487483389 -0.7405252011088925 -0.07205264813033455 -0.7714983133929116 -0.6321382509620019 5.013457659817343e-005 0.8714767518656733 0.4904368139161049 -5.013457659817343e-005 -0.8714767518656733 -0.4904368139161049 0.9447989913515391 -0.3276488849487459 -0.001036403858430049 -0.9447989913515391 0.3276488849487459 0.001036403858430049 -0.7920052855989604 0.6051280337239494 0.08091780017212312 0.7920052855989604 -0.6051280337239494 -0.08091780017212312 -3.138986537923502e-005 -0.9199607579002272 -0.3920104627918951 -3.138986537923502e-005 -0.9199607579002272 -0.3920104627918951 3.138986537923502e-005 0.9199607579002272 0.3920104627918951 3.138986537923502e-005 0.9199607579002272 0.3920104627918951 -0.9732157750163402 -0.1580442816411232 -0.1669522695260109 0.9732157750163402 0.1580442816411232 0.1669522695260109 -0.9834711209303843 -0.126096114110478 -0.1299396948671616 0.9834711209303843 0.126096114110478 0.1299396948671616 0.0437178963006298 0.8972403367035504 0.4393728755113896 -0.0437178963006298 -0.8972403367035504 -0.4393728755113896 0.06426418018846064 0.9662185317857469 0.2495833808139088 -0.06426418018846064 -0.9662185317857469 -0.2495833808139088 0.06429709081035219 0.9708344238347439 0.2309684082527008 -0.06429709081035219 -0.9708344238347439 -0.2309684082527008 0.7196572827450084 0.6620618477432274 -0.2092068477724722 0.7747789695478524 0.623234240124659 -0.1062856071281851 0.8171431206070383 0.5764162239823395 -0.004632188956936927 -0.8171431206070383 -0.5764162239823395 0.004632188956936927 -0.7747789695478524 -0.623234240124659 0.1062856071281851 -0.7196572827450084 -0.6620618477432274 0.2092068477724722 0.6594272425643234 0.6888982854805503 -0.3009565816292633 -0.6594272425643234 -0.6888982854805503 0.3009565816292633 6.682663927711848e-005 0.8714617897975016 0.4904633976731961 -6.682663927711848e-005 -0.8714617897975016 -0.4904633976731961 0.9335593015579758 -0.3287625002337843 0.1427664138185698 -0.9335593015579758 0.3287625002337843 -0.1427664138185698 -0.6594020609505565 0.6888906318398524 -0.3010292666460313 0.6594020609505565 -0.6888906318398524 0.3010292666460313 0.8221498543273054 -0.3070330188316616 0.4793749496758327 -0.8221498543273054 0.3070330188316616 -0.4793749496758327 -3.066908308931682e-005 -0.9199606115312351 -0.392010806344013 -0.6076623147201187 -0.7932324038290286 -0.03910070056416476 0.6076623147201187 0.7932324038290286 0.03910070056416476 3.066908308931682e-005 0.9199606115312351 0.392010806344013 -0.9333115515423831 -0.3394665247283948 -0.1170129323894408 0.9333115515423831 0.3394665247283948 0.1170129323894408 -0.7396363893425982 -0.6554726337331369 -0.1526225343361504 -0.8661412983354875 -0.2914642771454225 0.4060145643518379 -0.937612648422409 -0.3458272918389665 0.03586092215270673 0.937612648422409 0.3458272918389665 -0.03586092215270673 0.8661412983354875 0.2914642771454225 -0.4060145643518379 0.7396363893425982 0.6554726337331369 0.1526225343361504 -0.6855657172326377 -0.4195975644837834 0.5949264922951209 -0.3246046366813378 -0.2814634871269046 0.9030006286040668 0.3246046366813378 0.2814634871269046 -0.9030006286040668 0.6855657172326377 0.4195975644837834 -0.5949264922951209 0.1775861564188749 -0.8016171053217112 0.57085302268098 0.3245515382109805 -0.2814412062072947 0.9030266587944508 -0.3245515382109805 0.2814412062072947 -0.9030266587944508 -0.1775861564188749 0.8016171053217112 -0.57085302268098 0.6855528672262897 -0.4196299680603711 0.5949184449514615 -0.6855528672262897 0.4196299680603711 -0.5949184449514615 0.3674568997501367 -0.8965543114883223 0.2473171918361488 -0.3674568997501367 0.8965543114883223 -0.2473171918361488 -0.1776701550306539 -0.8016016592896061 0.5708485752242301 0.1776701550306539 0.8016016592896061 -0.5708485752242301 -0.3675430122840427 -0.8965104567949764 0.2473482059333262 0.3675430122840427 0.8965104567949764 -0.2473482059333262</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"94\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 14 0 8 2 16 8 10 18 2 20 21 22 26 12 6 28 6 14 30 31 32 2 36 16 38 32 39 18 36 2 10 42 18 20 22 44 26 6 46 48 12 26 30 50 31 46 6 28 30 32 38 38 39 52 54 36 18 42 56 18 10 58 42 10 60 58 44 22 62 26 46 64 66 12 48 30 68 50 70 38 52 54 18 72 74 70 52 56 72 18 76 56 42 76 42 58 60 78 58 60 80 81 22 84 62 64 46 86 88 12 66 66 64 90 92 68 30 94 70 74 96 70 94 96 98 70 100 76 58 78 100 58 60 102 78 60 81 102 104 105 106 62 84 110 92 112 68 64 86 90 114 88 66 114 66 90 116 117 92 98 120 70 122 120 98 124 100 78 124 78 126 128 126 105 130 131 132 128 105 104 131 130 136 84 138 110 92 140 112 88 114 142 92 144 140 92 146 147 150 120 122 124 126 128 152 153 154 158 153 159 162 159 163 166 163 144 92 166 144 92 147 168 150 147 120 154 147 150 153 147 154 158 159 170 158 147 153 170 159 162 162 163 166 92 168 166 147 172 168 172 158 170 172 147 158 172 170 162 168 162 166 168 172 162</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1308\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"94\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 15 9 17 3 3 19 11 23 24 25 7 13 27 15 7 29 33 34 35 17 37 3 40 33 41 3 37 19 19 43 11 45 23 25 47 7 27 27 13 49 34 51 35 29 7 47 41 33 35 53 40 41 19 37 55 19 57 43 43 59 11 59 61 11 63 23 45 65 47 27 49 13 67 51 69 35 53 41 71 73 19 55 53 71 75 19 73 57 43 57 77 59 43 77 59 79 61 82 83 61 63 85 23 87 47 65 67 13 89 91 65 67 35 69 93 75 71 95 95 71 97 71 99 97 59 77 101 59 101 79 79 103 61 103 82 61 107 108 109 111 85 63 69 113 93 91 87 65 67 89 115 91 67 115 93 118 119 71 121 99 99 121 123 79 101 125 127 79 125 108 127 129 133 134 135 109 108 129 137 135 134 111 139 85 113 141 93 143 115 89 141 145 93 148 149 93 123 121 151 129 127 125 155 156 157 160 156 161 164 160 165 145 164 167 145 167 93 169 148 93 121 148 151 151 148 155 155 148 156 171 160 161 156 148 161 165 160 171 167 164 165 167 169 93 169 173 148 171 161 173 161 148 173 165 171 173 167 165 169 165 173 169</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1308\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1311\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1314\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1312\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1313\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1312\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"174\" source=\"#ID1315\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"522\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1315\">-0.1579605340957642 -0.2640672326087952 -0.04370040446519852 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.2116810828447342 0.04897113516926765 -0.04865696281194687 -0.2116810828447342 0.04897113516926765 -0.04865696281194687 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.1579605340957642 -0.2640672326087952 -0.04370040446519852 -0.1740687191486359 -0.4551787674427033 -0.0152185931801796 -0.1740687191486359 -0.4551787674427033 -0.0152185931801796 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.5422577261924744 0.04898110404610634 -0.04865696281194687 -0.5422577261924744 0.04898110404610634 -0.04865696281194687 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.172749400138855 -0.5950192809104919 0.115213468670845 -0.172749400138855 -0.5950192809104919 0.115213468670845 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.1592455804347992 -0.06990624219179153 -0.2623733282089233 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1592455804347992 -0.06990624219179153 -0.2623733282089233 -0.591135561466217 -0.2640497386455536 -0.04370040446519852 -0.591135561466217 -0.2640497386455536 -0.04370040446519852 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.5750284194946289 -0.4551669061183929 -0.0152185931801796 -0.5750284194946289 -0.4551669061183929 -0.0152185931801796 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1845105141401291 -0.6375892162322998 0.3780633807182312 -0.1845105141401291 -0.6375892162322998 0.3780633807182312 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.5898348093032837 -0.06989359110593796 -0.2623733282089233 -0.5898348093032837 -0.06989359110593796 -0.2623733282089233 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.5763527154922485 -0.595005989074707 0.1152148991823196 -0.5763527154922485 -0.595005989074707 0.1152148991823196 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.2152939885854721 -0.8335617780685425 0.3569554090499878 -0.2152939885854721 -0.8335617780685425 0.3569554090499878 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5386579036712647 -0.8335521221160889 0.3569565713405609 -0.5386579036712647 -0.8335521221160889 0.3569565713405609 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.4967458844184876 -0.8251082301139832 0.4601387679576874 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4967458844184876 -0.8251082301139832 0.4601387679576874 -0.3378376364707947 -0.85288006067276 0.4996026456356049 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.3378376364707947 -0.85288006067276 0.4996026456356049 -0.2572067081928253 -0.8251250982284546 0.4601365625858307 -0.2572067081928253 -0.8251250982284546 0.4601365625858307 -0.27408766746521 -0.8469366431236267 0.4531694352626801 -0.27408766746521 -0.8469366431236267 0.4531694352626801 -0.4161160886287689 -0.8528740406036377 0.4996022284030914 -0.4161160886287689 -0.8528740406036377 0.4996022284030914 -0.4798671901226044 -0.8469233512878418 0.4531687796115875 -0.4798671901226044 -0.8469233512878418 0.4531687796115875</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1313\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"174\" source=\"#ID1316\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"522\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1316\">-0.5623413782526318 -0.02902591286613609 0.8263955897070229 -0.677675404794203 -0.06952438551774405 0.7320672138235622 -0.08364765397423228 0.3839963828085615 0.9195378447755958 0.08364765397423228 -0.3839963828085615 -0.9195378447755958 0.677675404794203 0.06952438551774405 -0.7320672138235622 0.5623413782526318 0.02902591286613609 -0.8263955897070229 -0.695482362370099 0.3760445437328366 0.6122865217860584 0.695482362370099 -0.3760445437328366 -0.6122865217860584 -0.3204593099152888 -0.0481776503756154 0.9460363337065347 0.3204593099152888 0.0481776503756154 -0.9460363337065347 0.6878959204722767 -0.07730026101703819 0.7216812816225021 -0.6878959204722767 0.07730026101703819 -0.7216812816225021 -0.9200589462427619 0.3674108354986236 0.1360176951608199 0.9200589462427619 -0.3674108354986236 -0.1360176951608199 -0.07128014245902452 -0.02119425833209892 0.9972311390569257 0.07128014245902452 0.02119425833209892 -0.9972311390569257 -0.2789192657441723 0.08227147538685829 0.9567839084842519 0.2789192657441723 -0.08227147538685829 -0.9567839084842519 0.08407837059411352 0.3873346347619575 0.9180973305222382 -0.08407837059411352 -0.3873346347619575 -0.9180973305222382 2.255739283483661e-005 0.8234880555114981 0.5673336072550753 2.140409195340843e-005 0.8234874830248066 0.5673344382666489 3.033968594614084e-005 0.9277932184238439 0.3730948176083784 -3.033968594614084e-005 -0.9277932184238439 -0.3730948176083784 -2.140409195340843e-005 -0.8234874830248066 -0.5673344382666489 -2.255739283483661e-005 -0.8234880555114981 -0.5673336072550753 -0.6145538793548455 0.7034298561426827 0.3570853775457554 0.6145538793548455 -0.7034298561426827 -0.3570853775457554 -0.05429544957895544 0.403668201025771 0.9132929363767339 0.05429544957895544 -0.403668201025771 -0.9132929363767339 0.9726028806148421 -0.1616484893202991 -0.1670730454626849 0.9746474771901317 -0.06780566333342517 -0.2132244995933303 0.9720479865498597 0.04311735512513346 -0.230789093181148 -0.9720479865498597 -0.04311735512513346 0.230789093181148 -0.9746474771901317 0.06780566333342517 0.2132244995933303 -0.9726028806148421 0.1616484893202991 0.1670730454626849 0.03363914623609972 0.7307988193148688 0.6817635173053045 -0.03363914623609972 -0.7307988193148688 -0.6817635173053045 0.7374772903514135 0.4572062697034959 -0.4970811534948304 0.8838245448984975 0.374067643048655 -0.2809405137373174 -0.8838245448984975 -0.374067643048655 0.2809405137373174 -0.7374772903514135 -0.4572062697034959 0.4970811534948304 0.5785078095990561 -0.02554278550114724 0.8152768120962013 -0.5785078095990561 0.02554278550114724 -0.8152768120962013 2.595736406077767e-005 0.9277954038468378 0.3730893832942695 -2.595736406077767e-005 -0.9277954038468378 -0.3730893832942695 -0.04629593633056625 0.8986463460660794 0.4362240605255061 0.04629593633056625 -0.8986463460660794 -0.4362240605255061 -0.9043343512161365 0.4259983832059894 0.02654729207230666 0.9043343512161365 -0.4259983832059894 -0.02654729207230666 0.9834689833887162 -0.1261096567901756 -0.1299427303723811 -0.9834689833887162 0.1261096567901756 0.1299427303723811 0.3526969098823379 0.7653832506285668 -0.5383245948465466 -0.3526969098823379 -0.7653832506285668 0.5383245948465466 -0.03456054493227085 0.7307198857760062 0.681802036712626 0.03456054493227085 -0.7307198857760062 -0.681802036712626 0.3308812010916427 -0.04607141258674735 0.9425471106031853 -0.3308812010916427 0.04607141258674735 -0.9425471106031853 0.7083195658882379 0.3700095213471906 0.6011458614116222 -0.7083195658882379 -0.3700095213471906 -0.6011458614116222 0.9329876653634008 0.3381076251655933 0.1233582185532577 -0.9329876653634008 -0.3381076251655933 -0.1233582185532577 4.175134927565876e-005 0.9624972903196903 0.2712912906528304 -4.175134927565876e-005 -0.9624972903196903 -0.2712912906528304 -0.0631634402754065 0.965900669977191 0.2510901741410616 0.0631634402754065 -0.965900669977191 -0.2510901741410616 -0.533871373943583 0.7433977055760073 0.4029158813299858 0.533871373943583 -0.7433977055760073 -0.4029158813299858 0.9282903521594874 -0.3528761504278969 -0.1172836073234571 -0.9282903521594874 0.3528761504278969 0.1172836073234571 -0.7371721457438576 0.4555775508361483 -0.4990253728153849 0.7371721457438576 -0.4555775508361483 0.4990253728153849 0.292743715322472 0.08075455144167999 0.9527748000239347 -0.292743715322472 -0.08075455144167999 -0.9527748000239347 -0.368999017402634 0.7579737893133243 -0.5378805256466265 0.368999017402634 -0.7579737893133243 0.5378805256466265 0.07128671084572642 -0.02118923355026286 0.9972307763192781 -0.07128671084572642 0.02118923355026286 -0.9972307763192781 0.6341018364624005 0.6888896156433952 0.3512064328193694 -0.6341018364624005 -0.6888896156433952 -0.3512064328193694 0.9204315623145812 0.3903344223627087 0.02108975613680669 0.9181604324338736 0.3957229027240721 0.01961643628381157 -0.9181604324338736 -0.3957229027240721 -0.01961643628381157 -0.9204315623145812 -0.3903344223627087 -0.02108975613680669 5.178130880145423e-005 0.9624944376759281 0.2713014094353274 -5.178130880145423e-005 -0.9624944376759281 -0.2713014094353274 -0.06527977768556016 0.9705533066587464 0.2318724424313881 0.06527977768556016 -0.9705533066587464 -0.2318724424313881 -0.8071252456732988 0.5826058726144744 -0.09549468567383179 0.8071252456732988 -0.5826058726144744 0.09549468567383179 -0.06764276738943618 0.8384989893984246 0.5406883582968282 0.06764276738943618 -0.8384989893984246 -0.5406883582968282 0.5932608855457696 -0.8040674217601206 -0.03895000571863708 -0.5932608855457696 0.8040674217601206 0.03895000571863708 -0.889706350667824 0.3619341275934684 -0.2782558119150394 0.889706350667824 -0.3619341275934684 0.2782558119150394 -0.9720318059751443 0.04320074092632786 -0.23084164302854 0.9720318059751443 -0.04320074092632786 0.23084164302854 -0.9746315500638775 -0.0677533314633561 -0.2133139181949928 0.9746315500638775 0.0677533314633561 0.2133139181949928 0.05226561043417893 0.4064695056671582 0.9121682119700502 -0.05226561043417893 -0.4064695056671582 -0.9121682119700502 0.9142315574047728 0.404795774692041 0.01791759572917519 -0.9142315574047728 -0.404795774692041 -0.01791759572917519 0.07205190362702056 0.7714993399204356 0.6321370829860044 0.07909377644207545 0.6673572130602039 0.7405258433739153 0.08490095446075462 0.4049538320230013 0.9103868528606617 -0.08490095446075462 -0.4049538320230013 -0.9103868528606617 -0.07909377644207545 -0.6673572130602039 -0.7405258433739153 -0.07205190362702056 -0.7714993399204356 -0.6321370829860044 5.013466762419966e-005 0.8714767519895718 0.4904368136959355 -5.013466762419966e-005 -0.8714767519895718 -0.4904368136959355 0.9447976547977393 -0.3276527353948617 -0.001037534075002607 -0.9447976547977393 0.3276527353948617 0.001037534075002607 -0.7919943496495504 0.6051402722477143 0.08093331222153129 0.7919943496495504 -0.6051402722477143 -0.08093331222153129 -3.138965815380397e-005 -0.9199607238787885 -0.3920105426325991 -3.138965815380397e-005 -0.9199607238787885 -0.3920105426325991 3.138965815380397e-005 0.9199607238787885 0.3920105426325991 3.138965815380397e-005 0.9199607238787885 0.3920105426325991 -0.9732150206109642 -0.1580472657677843 -0.1669538422454788 0.9732150206109642 0.1580472657677843 0.1669538422454788 -0.9834706541117561 -0.1260987934752365 -0.1299406279232339 0.9834706541117561 0.1260987934752365 0.1299406279232339 0.04371821291222033 0.8972403291110204 0.4393728595128624 -0.04371821291222033 -0.8972403291110204 -0.4393728595128624 0.06426401791437653 0.9662185050152043 0.2495835262345739 -0.06426401791437653 -0.9662185050152043 -0.2495835262345739 0.06429683232106599 0.9708344231682075 0.2309684830125767 -0.06429683232106599 -0.9708344231682075 -0.2309684830125767 0.7196515342741144 0.6620689141402413 -0.2092042593879843 0.774773632654447 0.6232414768956255 -0.1062820757248923 0.8171375224633035 0.5764241827179299 -0.004629358540970275 -0.8171375224633035 -0.5764241827179299 0.004629358540970275 -0.774773632654447 -0.6232414768956255 0.1062820757248923 -0.7196515342741144 -0.6620689141402413 0.2092042593879843 0.6594220440648094 0.6889046228283825 -0.3009534655840876 -0.6594220440648094 -0.6889046228283825 0.3009534655840876 6.682698108115185e-005 0.8714617897650312 0.4904633977308434 -6.682698108115185e-005 -0.8714617897650312 -0.4904633977308434 0.9335580875933367 -0.3287665807871548 0.1427649552467095 -0.9335580875933367 0.3287665807871548 -0.1427649552467095 -0.6593962739985512 0.6889030861991201 -0.3010134409991609 0.6593962739985512 -0.6889030861991201 0.3010134409991609 0.8221468749188605 -0.3070399146782842 0.4793756427432495 -0.8221468749188605 0.3070399146782842 -0.4793756427432495 -3.066889184531668e-005 -0.9199605775121815 -0.3920108861790355 -0.6076610753347634 -0.7932334874382245 -0.03909797858701984 0.6076610753347634 0.7932334874382245 0.03909797858701984 3.066889184531668e-005 0.9199605775121815 0.3920108861790355 -0.9333101311172105 -0.3394700156761205 -0.1170141342352701 0.9333101311172105 0.3394700156761205 0.1170141342352701 -0.7396277501350566 -0.6554808718826581 -0.1526290202618907 -0.8661382076886683 -0.2914696843078111 0.4060172758779682 -0.937610986303589 -0.3458318488782075 0.0358604331302899 0.937610986303589 0.3458318488782075 -0.0358604331302899 0.8661382076886683 0.2914696843078111 -0.4060172758779682 0.7396277501350566 0.6554808718826581 0.1526290202618907 -0.6855618799634182 -0.4195984413714799 0.5949302956982847 -0.3246028309346458 -0.2814634160625591 0.903001299870387 0.3246028309346458 0.2814634160625591 -0.903001299870387 0.6855618799634182 0.4195984413714799 -0.5949302956982847 0.1775873766266002 -0.8016168874161663 0.5708529490789194 0.3245524342354843 -0.2814434746436617 0.9030256297649164 -0.3245524342354843 0.2814434746436617 -0.9030256297649164 -0.1775873766266002 0.8016168874161663 -0.5708529490789194 0.6855484573798776 -0.4196354047042378 0.5949196918095591 -0.6855484573798776 0.4196354047042378 -0.5949196918095591 0.3674545694908423 -0.8965556991366327 0.2473156236591688 -0.3674545694908423 0.8965556991366327 -0.2473156236591688 -0.1776713711439905 -0.8016010428185574 0.5708490623869115 0.1776713711439905 0.8016010428185574 -0.5708490623869115 -0.3675432537537296 -0.8965097759246182 0.2473503149213933 0.3675432537537296 0.8965097759246182 -0.2473503149213933</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"94\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 14 0 8 2 16 8 10 18 2 20 21 22 26 12 6 28 6 14 30 31 32 2 36 16 38 32 39 18 36 2 10 42 18 20 22 44 26 6 46 48 12 26 30 50 31 46 6 28 30 32 38 38 39 52 54 36 18 42 56 18 10 58 42 10 60 58 44 22 62 26 46 64 66 12 48 30 68 50 70 38 52 54 18 72 74 70 52 56 72 18 76 56 42 76 42 58 60 78 58 60 80 81 22 84 62 64 46 86 88 12 66 66 64 90 92 68 30 94 70 74 96 70 94 96 98 70 100 76 58 78 100 58 60 102 78 60 81 102 104 105 106 62 84 110 92 112 68 64 86 90 114 88 66 114 66 90 116 117 92 98 120 70 122 120 98 124 100 78 124 78 126 128 126 105 130 131 132 128 105 104 131 130 136 84 138 110 92 140 112 88 114 142 92 144 140 92 146 147 150 120 122 124 126 128 152 153 154 158 153 159 162 159 163 166 163 144 92 166 144 92 147 168 150 147 120 154 147 150 153 147 154 158 159 170 158 147 153 170 159 162 162 163 166 92 168 166 147 172 168 172 158 170 172 147 158 172 170 162 168 162 166 168 172 162</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1314\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"94\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 15 9 17 3 3 19 11 23 24 25 7 13 27 15 7 29 33 34 35 17 37 3 40 33 41 3 37 19 19 43 11 45 23 25 47 7 27 27 13 49 34 51 35 29 7 47 41 33 35 53 40 41 19 37 55 19 57 43 43 59 11 59 61 11 63 23 45 65 47 27 49 13 67 51 69 35 53 41 71 73 19 55 53 71 75 19 73 57 43 57 77 59 43 77 59 79 61 82 83 61 63 85 23 87 47 65 67 13 89 91 65 67 35 69 93 75 71 95 95 71 97 71 99 97 59 77 101 59 101 79 79 103 61 103 82 61 107 108 109 111 85 63 69 113 93 91 87 65 67 89 115 91 67 115 93 118 119 71 121 99 99 121 123 79 101 125 127 79 125 108 127 129 133 134 135 109 108 129 137 135 134 111 139 85 113 141 93 143 115 89 141 145 93 148 149 93 123 121 151 129 127 125 155 156 157 160 156 161 164 160 165 145 164 167 145 167 93 169 148 93 121 148 151 151 148 155 155 148 156 171 160 161 156 148 161 165 160 171 167 164 165 167 169 93 169 173 148 171 161 173 161 148 173 165 171 173 167 165 169 165 173 169</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1314\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1317\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1320\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1318\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1319\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1318\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"64\" source=\"#ID1321\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"192\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1321\">0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.082414269447327 0.1612508594989777</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1319\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"64\" source=\"#ID1322\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"192\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1322\">-1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 -1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 -1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.0799147073227571 -0.9968017052320478 0 -0.0799147073227571 -0.9968017052320478 0 -0.0799147073227571 -0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1 0 0 -1 -0 -0 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 -1 0 0 1 -0 -0 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 38 40 41 43 57 58 59 60 61 62 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1320\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1323\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1326\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1324\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1325\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1324\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"322\" source=\"#ID1327\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"966\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1327\">0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1117984429001808 1.667413234710693 0.115709200501442 0.1117984429001808 1.667413234710693 0.115709200501442 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1117984429001808 1.667413234710693 0.115709200501442 0.1117984429001808 1.667413234710693 0.115709200501442 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.09066395461559296 1.60400927066803 0.1203010678291321 0.1119078770279884 1.560610055923462 0.1241858452558518 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1115833297371864 1.673897385597229 0.2029488384723663 0.1115833297371864 1.673897385597229 0.2029488384723663 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.09066395461559296 1.60400927066803 0.1203010678291321 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09044858813285828 1.561036467552185 0.124122679233551 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1115833297371864 1.673897385597229 0.2029488384723663 0.1115833297371864 1.673897385597229 0.2029488384723663 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.07645327597856522 1.567093849182129 0.2114255875349045 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.1116053834557533 1.522350549697876 0.1273301094770432 0.1116053834557533 1.522350549697876 0.1273301094770432 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.05172950774431229 1.567497491836548 0.2110787779092789 -0.05172950774431229 1.567497491836548 0.2110787779092789 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.08998314291238785 1.525822281837463 0.126566618680954 0.1116053834557533 1.522350549697876 0.1273301094770432 0.1116053834557533 1.522350549697876 0.1273301094770432 -0.05172950774431229 1.567497491836548 0.2110787779092789 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.05172950774431229 1.567497491836548 0.2110787779092789 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1075886934995651 1.45469856262207 0.2205129116773605 -0.08888807147741318 1.61049234867096 0.2075405865907669 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.1117819771170616 1.44821560382843 0.1332732439041138 0.1117819771170616 1.44821560382843 0.1332732439041138 -0.09107325971126556 1.454367280006409 0.2200525850057602 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09107325971126556 1.454367280006409 0.2200525850057602 0.1117819771170616 1.44821560382843 0.1332732439041138 0.1117819771170616 1.44821560382843 0.1332732439041138 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09107325971126556 1.454367280006409 0.2200525850057602 -0.09107325971126556 1.454367280006409 0.2200525850057602 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.05548623204231262 1.409258842468262 0.2237561196088791 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.05548623204231262 1.409258842468262 0.2237561196088791 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09051128476858139 1.402777671813965 0.1365166902542114 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1079739183187485 1.36528754234314 0.227682426571846 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1079739183187485 1.36528754234314 0.227682426571846 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.09036904573440552 1.244997978210449 0.1491470038890839 0.08007287234067917 1.249786019325256 0.2368745058774948 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.08007287234067917 1.249786019325256 0.2368745058774948 0.08007287234067917 1.249786019325256 0.2368745058774948 0.08007287234067917 1.249786019325256 0.2368745058774948 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.06330171227455139 1.251481771469116 0.2363867312669754 0.1115483716130257 1.243325471878052 0.1499182283878326 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1120293214917183 1.201940059661865 0.1530233770608902 -0.08816695958375931 1.208342671394348 0.2397843152284622 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09032661467790604 1.131766676902771 0.1581645011901856 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09032661467790604 1.131766676902771 0.1581645011901856 0.1115765795111656 1.083741784095764 0.1624274700880051 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1092481017112732 1.136982560157776 0.2459899932146072 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.09032661467790604 1.131766676902771 0.1581645011901856 -0.09032661467790604 1.131766676902771 0.1581645011901856 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1117357686161995 1.130521655082703 0.1590335518121719 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.09047000855207443 1.083552598953247 0.162391409277916 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1115765795111656 1.083741784095764 0.1624274700880051 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 0.1115765795111656 1.083741784095764 0.1624274700880051 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.08826761692762375 1.138250350952148 0.245403990149498 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.05714914947748184 1.090012192726135 0.2493478506803513</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1325\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"322\" source=\"#ID1328\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"966\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1328\">-0.0024166884015165 0.07992091046628912 0.9967982783328879 -0.0024166884015165 0.07992091046628912 0.9967982783328879 -0.0024166884015165 0.07992091046628912 0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 -0.003110631363261071 0.07783347408664396 0.9969615209646388 -0.003110631363261071 0.07783347408664396 0.9969615209646388 -0.003110631363261071 0.07783347408664396 0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.9836178943881302 -0.1019900524990053 0.1486400586339742 0.9383821690531233 -0.3444700849915576 0.02791532462760632 0.999993085877236 -0.00259857559576065 0.002660000488053514 -0.999993085877236 0.00259857559576065 -0.002660000488053514 -0.9383821690531233 0.3444700849915576 -0.02791532462760632 -0.9836178943881302 0.1019900524990053 -0.1486400586339742 -0.001995957895499944 0.07990977967405556 0.9968001019585238 -0.001995957895499944 0.07990977967405556 0.9968001019585238 -0.001995957895499944 0.07990977967405556 0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.9610347439268059 0.1218714046724881 0.2481120345503079 0.9654052662832268 0.0893224290906193 0.2449779081753355 -0.9654052662832268 -0.0893224290906193 -0.2449779081753355 -0.9610347439268059 -0.1218714046724881 -0.2481120345503079 0.9999930844790407 -0.002600124498239249 0.00265901235195945 -0.9999930844790407 0.002600124498239249 -0.00265901235195945 -0.9997677002701824 -0.001962063264229214 0.02146382547958299 -0.9997146380314173 -0.002416057679974692 0.02376563003581787 -0.9997652412158105 7.096798190734332e-007 0.02166708231831937 0.9997652412158105 -7.096798190734332e-007 -0.02166708231831937 0.9997146380314173 0.002416057679974692 -0.02376563003581787 0.9997677002701824 0.001962063264229214 -0.02146382547958299 -0.0001447480486744699 0.07898002261828373 0.9968761884382722 -0.0001242652016906591 0.08858072054682997 0.9960689938480989 -0.001884638334509741 0.08147407185733846 0.9966736796732084 0.001884638334509741 -0.08147407185733846 -0.9966736796732084 0.0001242652016906591 -0.08858072054682997 -0.9960689938480989 0.0001447480486744699 -0.07898002261828373 -0.9968761884382722 0.9559355522797811 0.2607780009126028 0.1348408474000981 -0.9559355522797811 -0.2607780009126028 -0.1348408474000981 -0.002445224016861097 0.07991358786941463 0.9967987958225796 -0.002445224016861097 0.07991358786941463 0.9967987958225796 -0.002445224016861097 0.07991358786941463 0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 -0.00244232132186794 0.07992222073353468 0.9967981108025743 -0.00244232132186794 0.07992222073353468 0.9967981108025743 -0.00244232132186794 0.07992222073353468 0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 -0.9569652647069851 -0.2408069165882212 0.1619552748988548 0.9569652647069851 0.2408069165882212 -0.1619552748988548 -0.9539867307263839 -0.1064385090943651 0.2803215321372131 0.9539867307263839 0.1064385090943651 -0.2803215321372131 -0.001398335844479897 0.07526812206716654 0.9971623511030429 0.001398335844479897 -0.07526812206716654 -0.9971623511030429 -0.002443871020245489 0.07991829436837256 0.9967984218083847 -0.002444424462418968 0.07991536596824644 0.9967986552314407 -0.002444424462418968 0.07991536596824644 0.9967986552314407 0.002444424462418968 -0.07991536596824644 -0.9967986552314407 0.002444424462418968 -0.07991536596824644 -0.9967986552314407 0.002443871020245489 -0.07991829436837256 -0.9967984218083847 0.9989575248213486 6.802289991542292e-005 0.04564930421912409 -0.9989575248213486 -6.802289991542292e-005 -0.04564930421912409 -0.002444750279150375 0.0799185331884759 0.996798400504874 -0.002444750279150375 0.0799185331884759 0.996798400504874 -0.002444750279150375 0.0799185331884759 0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 -0.9616780887009002 -0.0003991166626293087 0.2741807696000454 0.9616780887009002 0.0003991166626293087 -0.2741807696000454 -0.9791900689292776 0.1393278140334234 0.1475620857366297 0.9791900689292776 -0.1393278140334234 -0.1475620857366297 -0.002381608891005497 0.08090506957136846 0.9967189662370946 0.002381608891005497 -0.08090506957136846 -0.9967189662370946 -0.002445265856695502 0.07991799161119449 0.9967984426611648 -0.002444579976353827 0.07991582004189891 0.9967986184459579 0.002444579976353827 -0.07991582004189891 -0.9967986184459579 0.002445265856695502 -0.07991799161119449 -0.9967984426611648 -0.002443667558720246 0.07991812532567823 0.9967984358601753 -0.002444421147860942 0.07991555159334562 0.9967986403576118 0.002444421147860942 -0.07991555159334562 -0.9967986403576118 0.002443667558720246 -0.07991812532567823 -0.9967984358601753 0.9510292064959941 -0.3017074737471085 0.06720155263636195 -0.9510292064959941 0.3017074737471085 -0.06720155263636195 -0.002445270659689314 0.0799165646360902 0.9967985570556203 -0.002445270659689314 0.0799165646360902 0.9967985570556203 0.002445270659689314 -0.0799165646360902 -0.9967985570556203 0.002445270659689314 -0.0799165646360902 -0.9967985570556203 -0.9137266110828168 0.4050395357152827 -0.0323520433150555 0.9137266110828168 -0.4050395357152827 0.0323520433150555 -0.002394921818000142 0.07906623005156864 0.9968664883598597 0.002394921818000142 -0.07906623005156864 -0.9968664883598597 -0.002443729418870228 0.07991713631775732 0.9967985150015506 -0.002442987674479496 0.07991918003998787 0.9967983529646096 0.002442987674479496 -0.07991918003998787 -0.9967983529646096 0.002443729418870228 -0.07991713631775732 -0.9967985150015506 0.9802656257872744 -0.09160270883204402 0.1751806114686077 -0.9802656257872744 0.09160270883204402 -0.1751806114686077 -0.9999953927080971 0.001598781537811305 -0.00258039922741558 0.9999953927080971 -0.001598781537811305 0.00258039922741558 -0.002043259112987656 0.08061333388167614 0.9967433548776127 0.002043259112987656 -0.08061333388167614 -0.9967433548776127 -0.9667576730943045 -0.2181100199662426 0.1334451973793394 0.9667576730943045 0.2181100199662426 -0.1334451973793394 -0.002443338460478632 0.0799196743506909 0.9967983124729131 0.002443338460478632 -0.0799196743506909 -0.9967983124729131 0.9584067278384761 0.1063003813176155 0.2648712384644182 -0.9584067278384761 -0.1063003813176155 -0.2648712384644182 -0.002278182316047894 0.07872327552518302 0.9968939039716919 0.002278182316047894 -0.07872327552518302 -0.9968939039716919 -0.9623422278865017 -0.1024231927397928 0.2518073192252984 0.9623422278865017 0.1024231927397928 -0.2518073192252984 -0.002445857659568367 0.07991052514313757 0.9967990398027363 0.002445857659568367 -0.07991052514313757 -0.9967990398027363 0.9578191650142742 0.1254879398364993 0.2585250937277644 -0.9578191650142742 -0.1254879398364993 -0.2585250937277644 -0.001577468944671645 0.08182061186603903 0.9966458242854357 0.001577468944671645 -0.08182061186603903 -0.9966458242854357 -0.9669997358230092 -0.04406785290913275 0.2509373134035851 0.9669997358230092 0.04406785290913275 -0.2509373134035851 -0.002445817810539561 0.07992501388276625 0.9967978782737639 -0.002445817810539561 0.07992501388276625 0.9967978782737639 -0.002445817810539561 0.07992501388276625 0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.9610764950953273 0.2399997840510825 0.1368651680695834 -0.9610764950953273 -0.2399997840510825 -0.1368651680695834 -0.00158449559484253 0.07788846641257956 0.9969608197785942 -0.00158449559484253 0.07788846641257956 0.9969608197785942 -0.00158449559484253 0.07788846641257956 0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 -0.9840427171014795 0.124301408755054 0.1273149272514676 0.9840427171014795 -0.124301408755054 -0.1273149272514676 -0.9403492166118542 0.3390969407785543 -0.02750664596234511 0.9403492166118542 -0.3390969407785543 0.02750664596234511 -0.00244355684856112 0.07991609501014736 0.9967985989096581 -0.00244355684856112 0.07991609501014736 0.9967985989096581 -0.00244355684856112 0.07991609501014736 0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.9989802704922386 0.009779687184768413 0.0440769427912357 -0.9989802704922386 -0.009779687184768413 -0.0440769427912357 -0.002381196982845648 0.0817170499956124 0.9966527246944864 -0.002381196982845648 0.0817170499956124 0.9966527246944864 -0.002381196982845648 0.0817170499956124 0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 -0.9999969486514102 0.000139643403180076 -0.002466411885425263 0.9999969486514102 -0.000139643403180076 0.002466411885425263 -0.002443516755476382 0.07992008569338822 0.9967982790558114 -0.002443516755476382 0.07992008569338822 0.9967982790558114 -0.002443516755476382 0.07992008569338822 0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.9504660443541458 -0.30389861198688 0.06526815580534208 -0.9504660443541458 0.30389861198688 -0.06526815580534208 -0.002398955504286184 0.07991844676457421 0.9967985186983508 -0.002398955504286184 0.07991844676457421 0.9967985186983508 -0.002398955504286184 0.07991844676457421 0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 -0.968220462326018 -0.2223397110796081 0.1145172004994391 0.968220462326018 0.2223397110796081 -0.1145172004994391 -0.002443761099980847 0.07992071991256082 0.9967982276069437 -0.002443761099980847 0.07992071991256082 0.9967982276069437 -0.002443761099980847 0.07992071991256082 0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.9833765888465397 -0.08333360548540723 0.1613257409880592 -0.9833765888465397 0.08333360548540723 -0.1613257409880592 -0.003795766429472628 0.08361081189266659 0.996491256505476 -0.003795766429472628 0.08361081189266659 0.996491256505476 -0.003795766429472628 0.08361081189266659 0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 -0.9784827002644059 -0.0745133946312441 0.1924041561500301 0.9784827002644059 0.0745133946312441 -0.1924041561500301 -0.002444991716577943 0.07991751699015108 0.9967984813860998 -0.002445551076435985 0.07990965451043451 0.9967991103507042 -0.002443767676182471 0.07991733785490238 0.9967984987497376 0.002443767676182471 -0.07991733785490238 -0.9967984987497376 0.002445551076435985 -0.07990965451043451 -0.9967991103507042 0.002444991716577943 -0.07991751699015108 -0.9967984813860998 0.9693050042447923 0.08319554462812245 0.2313575373745867 -0.9693050042447923 -0.08319554462812245 -0.2313575373745867 -0.003456718727903946 0.07669146954277205 0.9970488802435948 -0.003213004740076926 0.08123887225724388 0.9966894813505917 -0.00380606245701583 0.07821620482660538 0.9969291545496579 0.00380606245701583 -0.07821620482660538 -0.9969291545496579 0.003213004740076926 -0.08123887225724388 -0.9966894813505917 0.003456718727903946 -0.07669146954277205 -0.9970488802435948 -0.9739892050184895 -0.0922701735317274 0.2069571056617187 0.9739892050184895 0.0922701735317274 -0.2069571056617187 -0.002809236550367398 0.07987191534697595 0.9968011764282834 0.002809236550367398 -0.07987191534697595 -0.9968011764282834 -0.002446251211139701 0.07991196601776093 0.996798923325155 0.002446251211139701 -0.07991196601776093 -0.996798923325155 0.9685060428241819 0.1121048662211712 0.2223253111604196 -0.9685060428241819 -0.1121048662211712 -0.2223253111604196 -0.9609854155315478 0.1850092940482606 0.2056175874078444 0.9609854155315478 -0.1850092940482606 -0.2056175874078444 -0.002730819450908612 0.0795900882636436 0.996823936548131 0.002730819450908612 -0.0795900882636436 -0.996823936548131 -0.002446316978625154 0.07991709286511523 0.9967985121383503 0.002446316978625154 -0.07991709286511523 -0.9967985121383503 0.9665484020399958 0.2298013491319769 0.1139101683391513 -0.9665484020399958 -0.2298013491319769 -0.1139101683391513 -0.8667040419528477 0.4987022577925894 -0.01096183083112856 0.8667040419528477 -0.4987022577925894 0.01096183083112856 -0.002935468462640064 0.07965440775023729 0.9968182173048723 0.002935468462640064 -0.07965440775023729 -0.9968182173048723 0.9995874389300169 0.005994783610162951 0.02808940196580926 -0.9995874389300169 -0.005994783610162951 -0.02808940196580926 -0.002445480732065667 0.07991923298229058 0.9967983426067238 -0.002446450689720361 0.07991678813471327 0.9967985362415288 0.002446450689720361 -0.07991678813471327 -0.9967985362415288 0.002445480732065667 -0.07991923298229058 -0.9967983426067238 -0.9996776451341545 0.001994494988195014 0.02531062640026721 -0.9995283515176999 -0.004230687603517372 0.03041670256143396 -0.9996516075833083 6.011857201776541e-005 0.02639431457463623 0.9996516075833083 -6.011857201776541e-005 -0.02639431457463623 0.9995283515176999 0.004230687603517372 -0.03041670256143396 0.9996776451341545 -0.001994494988195014 -0.02531062640026721 -0.5499063532088864 -0.8312969104678514 -0.08092248974857767 -0.5053849952022258 -0.8592625535158552 0.07908141848663544 -0.5211302495544821 -0.8530062356488047 0.02834827937528588 0.5211302495544821 0.8530062356488047 -0.02834827937528588 0.5053849952022258 0.8592625535158552 -0.07908141848663544 0.5499063532088864 0.8312969104678514 0.08092248974857767 -0.003264430936771524 0.07768920491457423 0.996972281926835 0.003264430936771524 -0.07768920491457423 -0.996972281926835 0.9600985396372078 -0.2755269031283226 0.04791367069028046 -0.9600985396372078 0.2755269031283226 -0.04791367069028046 -0.002445359849831862 0.07991908453884576 0.9967983548048611 -0.0024464506121011 0.07991642136050764 0.9967985656472086 0.0024464506121011 -0.07991642136050764 -0.9967985656472086 0.002445359849831862 -0.07991908453884576 -0.9967983548048611 -0.9724788741558994 -0.1821300782318736 0.1453047622197095 0.9724788741558994 0.1821300782318736 -0.1453047622197095 -0.002295832167474499 0.08251084577785184 0.9965875222396087 0.002295832167474499 -0.08251084577785184 -0.9965875222396087 -0.5630349425936618 -0.8140319658878363 -0.142631034250392 0.5630349425936618 0.8140319658878363 0.142631034250392 0.9856814792948521 -0.08674609407977396 0.14459300307074 -0.9856814792948521 0.08674609407977396 -0.14459300307074 -0.002444373616892614 0.0799221279444856 0.9967981132117207 0.002444373616892614 -0.0799221279444856 -0.9967981132117207 -0.9728132926628291 -0.180687705249497 0.1448663204135999 0.9728132926628291 0.180687705249497 -0.1448663204135999 -0.003308252190807438 0.07460958167797054 0.9972073334012742 0.003308252190807438 -0.07460958167797054 -0.9972073334012742 0.9409405930065078 0.02131297530999618 0.3379002182834409 0.9174339737188549 -0.365243963553171 0.1578345683125247 -0.9174339737188549 0.365243963553171 -0.1578345683125247 -0.9409405930065078 -0.02131297530999618 -0.3379002182834409 -0.002444379353908034 0.07992126607955948 0.9967981823006173 -0.002444379353908034 0.07992126607955948 0.9967981823006173 0.002444379353908034 -0.07992126607955948 -0.9967981823006173 0.002444379353908034 -0.07992126607955948 -0.9967981823006173 -0.8017203786756358 -0.4891027836453612 0.3435446134733509 0.8017203786756358 0.4891027836453612 -0.3435446134733509 -0.0002595716808050765 0.08733536323079442 0.9961789332001998 0.0002595716808050765 -0.08733536323079442 -0.9961789332001998 -0.002445010281564422 0.07991906958635045 0.9967983568611936 -0.002444552802717854 0.0799211787639864 0.9967981888760481 -0.002444462435903807 0.07992097684034019 0.996798205287452 0.002444462435903807 -0.07992097684034019 -0.996798205287452 0.002444552802717854 -0.0799211787639864 -0.9967981888760481 0.002445010281564422 -0.07991906958635045 -0.9967983568611936</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"204\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 18 19 20 21 22 23 24 25 12 17 26 27 14 13 28 29 16 15 12 25 13 16 26 17 30 31 32 33 34 35 36 37 38 39 40 41 24 42 25 26 43 27 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 30 32 33 35 63 64 30 62 63 35 65 66 36 38 39 41 67 68 69 70 71 72 73 74 42 24 27 43 75 76 77 78 79 80 81 82 83 84 85 86 87 88 64 62 63 65 89 90 64 88 89 65 91 92 66 38 39 67 93 68 94 95 96 97 73 98 68 99 100 73 101 74 102 42 43 103 75 94 104 105 106 107 97 90 88 108 109 89 91 66 92 110 111 93 67 112 113 98 101 114 115 116 102 74 75 103 117 118 90 108 109 91 119 120 66 110 111 67 121 122 118 108 109 119 123 124 112 98 101 115 125 116 126 102 103 127 117 128 120 110 111 121 129 130 118 122 123 119 131 132 112 124 125 115 133 134 126 116 117 127 135 136 120 128 129 121 137 138 130 122 123 131 139 140 141 142 143 144 145 140 141 142 143 144 145 134 146 126 127 147 135 148 149 150 151 152 153 148 149 150 151 152 153 154 130 138 139 131 155 156 154 138 139 155 157 158 159 160 161 162 163 164 165 166 167 168 169 170 146 134 135 147 171 172 173 174 175 176 177 178 179 180 181 182 183 184 154 156 157 155 185 186 187 188 189 190 191 192 193 194 195 196 197 170 198 146 147 199 171 200 201 202 203 204 205 200 201 202 203 204 205 206 184 156 157 185 207 208 209 210 211 212 213 214 215 216 217 218 219 220 198 170 171 199 221 222 223 224 225 226 227 222 223 224 225 226 227 228 184 206 207 185 229 230 231 232 233 234 235 220 236 198 199 237 221 238 239 240 241 242 243 244 228 206 207 229 245 246 239 238 243 242 247 248 231 230 235 234 249 250 236 220 221 237 251 252 228 244 245 229 253 246 238 254 255 243 247 248 230 256 257 235 249 250 258 236 237 259 251 260 252 244 245 253 261 262 246 254 255 247 263 264 258 250 251 259 265 266 248 267 268 249 269 270 271 272 273 274 275 276 277 278 279 280 281 282 262 254 255 263 283 264 284 258 259 285 265 286 266 287 288 269 289 290 270 272 273 275 291 292 262 282 283 263 293 276 278 294 295 279 281 296 284 264 265 285 297 298 266 286 289 269 299 300 270 290 291 275 301 302 292 282 283 293 303 304 305 296 297 306 307 296 305 284 285 306 297 308 309 286 289 310 311 312 300 290 291 301 313 314 292 302 303 293 315 316 317 318 319 320 321</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1326\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1329\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1332\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1330\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1331\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1330\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"64\" source=\"#ID1333\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"192\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1333\">0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.062657833099365 0.1071692258119583</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1331\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"64\" source=\"#ID1334\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"192\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1334\">0 -0.07991391507360633 -0.9968017687472311 0 -0.07991391507360633 -0.9968017687472311 0 -0.07991391507360633 -0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 1 0 0 -1 -0 -0 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 1.147561669525629e-017 0.07991600494652802 0.996801601199249 1.147561669525629e-017 0.07991600494652802 0.996801601199249 1.147561669525629e-017 0.07991600494652802 0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1 0 0 1 -0 -0 5.737808347628146e-018 0.07991600494652806 0.996801601199249 5.737808347628146e-018 0.07991600494652806 0.996801601199249 5.737808347628146e-018 0.07991600494652806 0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 38 40 41 43 57 58 59 60 61 62 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1332\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1335\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1338\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1336\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1337\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1336\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"94\" source=\"#ID1339\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"282\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1339\">0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.0440603718161583 1.045381546020508 0.2065596729516983 0.0440603718161583 1.045381546020508 0.2065596729516983 0.07561483234167099 1.003175139427185 0.2072263807058334 0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.06279636174440384 1.001669645309448 0.1831667721271515 0.002107266336679459 0.9911500215530396 0.2126912921667099 0.002107266336679459 0.9911500215530396 0.2126912921667099 0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.03254434466362 1.04327380657196 0.1803381443023682 0.03254434466362 1.04327380657196 0.1803381443023682 0.03597279638051987 1.047588586807251 0.2340257316827774 0.03597279638051987 1.047588586807251 0.2340257316827774 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03010775707662106 1.00167453289032 0.1743656992912293 0.0719255730509758 1.00575578212738 0.235799714922905 0.0719255730509758 1.00575578212738 0.235799714922905 0.04405999183654785 1.087227463722229 0.2031978219747543 0.04405999183654785 1.087227463722229 0.2031978219747543 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03597242385149002 1.089434146881104 0.2306637018918991 0.03597242385149002 1.089434146881104 0.2306637018918991 0.0719255730509758 1.00575578212738 0.235799714922905 0.0719255730509758 1.00575578212738 0.235799714922905 -0.02109381183981895 1.000947713851929 0.1777425706386566 -0.02109381183981895 1.000947713851929 0.1777425706386566 0.04016397893428803 1.007267832756043 0.2528495788574219 0.04016397893428803 1.007267832756043 0.2528495788574219 0.03254392743110657 1.085119843482971 0.1769760102033615 0.03254392743110657 1.085119843482971 0.1769760102033615 0.006812980398535729 1.042252779006958 0.1676288843154907 0.006812980398535729 1.042252779006958 0.1676288843154907 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206574775278568 1.048860192298889 0.2498844712972641 0.01206574775278568 1.048860192298889 0.2498844712972641 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.02109381183981895 1.000947713851929 0.1777425706386566 -0.02109381183981895 1.000947713851929 0.1777425706386566 0.04016397893428803 1.007267832756043 0.2528495788574219 0.04016397893428803 1.007267832756043 0.2528495788574219 -0.0164741575717926 1.006759405136108 0.2500763237476349 -0.0164741575717926 1.006759405136108 0.2500763237476349 0.03254392743110657 1.085119843482971 0.1769760102033615 0.04405999183654785 1.087227463722229 0.2031978219747543 0.002163510769605637 1.087440609931946 0.2058562785387039 0.002163510769605637 1.087440609931946 0.2058562785387039 0.04405999183654785 1.087227463722229 0.2031978219747543 0.03254392743110657 1.085119843482971 0.1769760102033615 0.03597242385149002 1.089434146881104 0.2306637018918991 0.03597242385149002 1.089434146881104 0.2306637018918991 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206542737782002 1.090707302093506 0.2465221434831619 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.02109413221478462 1.042794585227966 0.1743806302547455 -0.02109413221478462 1.042794585227966 0.1743806302547455 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.0164746418595314 1.048605918884277 0.2467141896486282 -0.0164746418595314 1.048605918884277 0.2467141896486282 -0.0164741575717926 1.006759405136108 0.2500763237476349 -0.0164741575717926 1.006759405136108 0.2500763237476349 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03811760619282723 1.044645190238953 0.1974330991506577 -0.03811760619282723 1.044645190238953 0.1974330991506577 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03629376366734505 1.046942353248596 0.2259997576475143 -0.03629376366734505 1.046942353248596 0.2259997576475143 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1337\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"94\" source=\"#ID1340\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"282\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1340\">0.6276871539837947 0.4309998440177499 -0.6482653555299707 0.7756951975660233 0.6093867961617383 -0.1641483875544934 0.9404190385916551 0.327759812088853 -0.09047395997648566 -0.9404190385916551 -0.327759812088853 0.09047395997648566 -0.7756951975660233 -0.6093867961617383 0.1641483875544934 -0.6276871539837947 -0.4309998440177499 0.6482653555299707 0.1648427918008577 -0.9850664580310059 0.04970842236027692 0.129387054397268 -0.9878566338463108 -0.08601314504326615 -0.05568244469267168 -0.9964744984836782 0.06275379848861432 0.05568244469267168 0.9964744984836782 -0.06275379848861432 -0.129387054397268 0.9878566338463108 0.08601314504326615 -0.1648427918008577 0.9850664580310059 -0.04970842236027692 0.6563058127916149 0.128948669986271 -0.7433941892459947 -0.6563058127916149 -0.128948669986271 0.7433941892459947 0.7479255132941836 0.3269821441431697 0.5776591589987712 -0.7479255132941836 -0.3269821441431697 -0.5776591589987712 0.03982993058637029 -0.9705873949438616 -0.2374314330613652 -0.03982993058637029 0.9705873949438616 0.2374314330613652 0.1452430843573787 -0.9735269213220822 0.1764930024321196 -0.1452430843573787 0.9735269213220822 -0.1764930024321196 0.997980356608158 -0.00507857796887716 -0.06331994843702948 -0.997980356608158 0.00507857796887716 0.06331994843702948 0.1918851097947965 0.01069227642552562 -0.9813591492740459 -0.1918851097947965 -0.01069227642552562 0.9813591492740459 0.8053359431313069 0.04748302428073999 0.5909140217544032 -0.8053359431313069 -0.04748302428073999 -0.5909140217544032 0.715602061077506 0.6137473135264319 0.3335085086181657 -0.715602061077506 -0.6137473135264319 -0.3335085086181657 -0.1366997851774793 -0.9737080860083718 -0.1822244000520906 0.1366997851774793 0.9737080860083718 0.1822244000520906 0.07059561893914663 -0.9470573698230294 0.3132069553034937 -0.07059561893914663 0.9470573698230294 -0.3132069553034937 0.7236637528950451 -0.05526205440008075 -0.687936681744288 -0.7236637528950451 0.05526205440008075 0.687936681744288 0.08437475756259349 -0.0702733835124722 -0.9939529927798209 -0.08437475756259349 0.0702733835124722 0.9939529927798209 0.2358549030278205 0.07783122909426544 0.968666487752835 -0.2358549030278205 -0.07783122909426544 -0.968666487752835 0.1654666873681945 0.1148860508075438 0.9795008783565447 -0.1654666873681945 -0.1148860508075438 -0.9795008783565447 -0.2772541405953719 -0.9607904196022034 -0.003451249533688699 0.2772541405953719 0.9607904196022034 0.003451249533688699 -0.5103626176939258 -0.1084744471579512 -0.8530904364569917 0.5103626176939258 0.1084744471579512 0.8530904364569917 0.2995652230669426 0.2766979128121305 0.913071159425301 -0.2995652230669426 -0.2766979128121305 -0.913071159425301 -0.1158973363211239 -0.9357427097883285 0.333096665416609 0.1158973363211239 0.9357427097883285 -0.333096665416609 1.970778470046658e-005 0.9967884877806362 -0.08007939959562506 -1.150195081025581e-005 0.9967868070093873 -0.08010031984790116 -7.282118987466312e-007 0.9967885040606478 -0.08007919937165804 7.282118987466312e-007 -0.9967885040606478 0.08007919937165804 1.150195081025581e-005 -0.9967868070093873 0.08010031984790116 -1.970778470046658e-005 -0.9967884877806362 0.08007939959562506 -1.889549755688283e-005 0.9967887057027286 -0.08007668715949433 1.889549755688283e-005 -0.9967887057027286 0.08007668715949433 2.329386935487206e-005 0.9967886177533125 -0.08007778078116733 -2.329386935487206e-005 -0.9967886177533125 0.08007778078116733 -0.2605487185606611 -0.9462888235931847 0.1914466703785265 0.2605487185606611 0.9462888235931847 -0.1914466703785265 -0.9595220654229494 -0.02256570486844812 -0.2807279731880444 -0.5540160790910454 -0.06667433737339892 -0.8298317400801218 0.5540160790910454 0.06667433737339892 0.8298317400801218 0.9595220654229494 0.02256570486844812 0.2807279731880444 -0.4357782588810896 0.063090866032614 0.8978401036430822 0.4357782588810896 -0.063090866032614 -0.8978401036430822 -0.4168015697498971 0.07279112339523536 0.9060783099759541 0.4168015697498971 -0.07279112339523536 -0.9060783099759541 1.845361895121706e-005 0.9967908784027425 -0.08004963705447339 -1.845361895121706e-005 -0.9967908784027425 0.08004963705447339 0.1107318538263125 -0.07958489032305821 -0.9906587211449031 -0.1107318538263125 0.07958489032305821 0.9906587211449031 7.579804948945358e-006 0.9967850151258243 -0.08012261580325931 -7.579804948945358e-006 -0.9967850151258243 0.08012261580325931 -0.4439788070510328 0.07175525117515293 0.8931595617907993 0.4439788070510328 -0.07175525117515293 -0.8931595617907993 -0.9160709345376484 0.03210037665102224 0.3997294193753845 -0.9595223797540715 -0.02256522993427959 -0.2807269369852064 0.9595223797540715 0.02256522993427959 0.2807269369852064 0.9160709345376484 -0.03210037665102224 -0.3997294193753845 -0.9160688904640111 0.03210634924118765 0.3997336241329201 0.9160688904640111 -0.03210634924118765 -0.3997336241329201 -7.835666853594533e-006 0.9967902102202908 -0.08005795867739281 7.835666853594533e-006 -0.9967902102202908 0.08005795867739281 -3.309266463157973e-005 0.9967870438756097 -0.08009736616518035 3.309266463157973e-005 -0.9967870438756097 0.08009736616518035 -0.5540120246036621 -0.06667498928042141 -0.8298343945625578 0.5540120246036621 0.06667498928042141 0.8298343945625578 -0.9160696316409548 0.03210638439341102 0.3997319227512211 0.9160696316409548 -0.03210638439341102 -0.3997319227512211 -4.263568844941531e-006 0.9967907668418901 -0.08005102822936799 4.263568844941531e-006 -0.9967907668418901 0.08005102822936799 -0.9595207149823204 -0.02256288350226006 -0.2807328156947099 0.9595207149823204 0.02256288350226006 0.2807328156947099</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 7 16 8 9 17 10 6 8 18 19 9 11 12 2 20 21 3 13 12 22 0 5 23 13 2 14 24 25 15 3 1 26 14 15 27 4 16 28 8 9 29 17 18 8 30 31 9 19 32 12 20 21 13 33 20 2 24 25 3 21 34 22 12 13 23 35 36 24 14 15 25 37 38 14 26 27 15 39 28 40 8 9 41 29 34 42 22 23 43 35 44 38 26 27 39 45 8 46 30 31 47 9 48 49 50 51 52 53 32 34 12 13 35 33 50 49 54 55 52 51 50 54 56 57 55 51 38 36 14 15 37 39 8 40 58 59 41 9 60 42 61 62 43 63 61 42 34 35 43 62 64 38 44 45 39 65 66 64 44 45 65 67 8 58 46 47 59 9 68 48 50 51 53 69 70 34 32 33 35 71 72 50 56 57 51 73 74 36 38 39 37 75 76 60 77 78 63 79 60 61 77 78 62 63 70 61 34 35 62 71 64 74 38 39 75 65 66 80 64 65 81 67 66 76 80 81 79 67 82 68 50 51 69 83 84 50 72 73 51 85 76 77 80 81 78 79 77 61 86 87 62 78 86 61 70 71 62 87 64 88 74 75 89 65 64 80 88 89 81 65 90 82 50 51 83 91 90 50 84 85 51 91 80 77 92 93 78 81 77 86 92 93 87 78 80 92 88 89 93 81</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1338\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1341\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1344\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1342\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1343\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1342\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"146\" source=\"#ID1345\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"438\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1345\">-0.2801137268543243 1.370505452156067 0.08972623944282532 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2717342674732208 1.375396370887756 0.1507259011268616 -0.2717342674732208 1.375396370887756 0.1507259011268616 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1343\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"146\" source=\"#ID1346\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"438\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1346\">-0.1356700480673765 -0.07917526411310574 -0.987585396616422 -0.1356717587444433 -0.07918105062319039 -0.9875846976849111 -0.131471833847658 -0.3228375455041391 -0.9372785477741379 0.131471833847658 0.3228375455041391 0.9372785477741379 0.1356717587444433 0.07918105062319039 0.9875846976849111 0.1356700480673765 0.07917526411310574 0.987585396616422 0.9907549594614613 -0.01084161144827005 -0.1352296926112117 0.9907553066324637 -0.01084267929951237 -0.1352270634348798 0.9907545025340931 -0.01084171762083586 -0.1352330317172986 -0.9907545025340931 0.01084171762083586 0.1352330317172986 -0.9907553066324637 0.01084267929951237 0.1352270634348798 -0.9907549594614613 0.01084161144827005 0.1352296926112117 -0.1314728281855081 -0.3228414075762337 -0.9372770780314113 0.1314728281855081 0.3228414075762337 0.9372770780314113 -0.1314692192096207 0.1693882077956309 -0.9767412551234831 0.1314692192096207 -0.1693882077956309 0.9767412551234831 0.9907553387548729 -0.01084410526579882 -0.1352267137428888 -0.9907553387548729 0.01084410526579882 0.1352267137428888 0.9907553433962273 -0.0108397264534755 -0.1352270308120293 -0.9907553433962273 0.0108397264534755 0.1352270308120293 -0.9907545485809562 0.01084668739650943 0.135232295841888 -0.9907535624333586 0.01084306642662415 0.1352398108401405 -0.9907537588504309 0.01084231220904852 0.1352384323692929 0.9907537588504309 -0.01084231220904852 -0.1352384323692929 0.9907535624333586 -0.01084306642662415 -0.1352398108401405 0.9907545485809562 -0.01084668739650943 -0.135232295841888 -0.1152753808899663 -0.5929332692716832 -0.7969577935822366 0.1152753808899663 0.5929332692716832 0.7969577935822366 -0.9907546911898524 0.01083669708757584 0.1352320519756046 0.9907546911898524 -0.01083669708757584 -0.1352320519756046 -0.1314704096508954 0.1693831609902619 -0.9767419701022235 0.1314704096508954 -0.1693831609902619 0.9767419701022235 0.9907552515571781 -0.01084377265302208 -0.1352273792784672 0.9907545280392873 -0.01084287687524467 -0.1352327519157898 -0.9907545280392873 0.01084287687524467 0.1352327519157898 -0.9907552515571781 0.01084377265302208 0.1352273792784672 0.9907553910903142 -0.01083804725477862 -0.1352268159692522 -0.9907553910903142 0.01083804725477862 0.1352268159692522 -0.990752856690359 0.0108439365066572 0.1352449111831305 0.990752856690359 -0.0108439365066572 -0.1352449111831305 -0.1152730989501126 -0.5929230807293835 -0.7969657037770286 0.1152730989501126 0.5929230807293835 0.7969657037770286 -0.9907528892232725 0.01084143558253761 0.1352448733603154 0.9907528892232725 -0.01084143558253761 -0.1352448733603154 -0.11527371476005 0.4583767681188761 -0.8812506505724197 0.11527371476005 -0.4583767681188761 0.8812506505724197 0.990754380856577 -0.01084218444689922 -0.1352338857310568 -0.990754380856577 0.01084218444689922 0.1352338857310568 -0.07441361952230829 -0.8769020836287289 -0.4748740348315358 0.07441361952230829 0.8769020836287289 0.4748740348315358 -0.1152751037892964 0.4583732049641491 -0.8812523222194998 0.1152751037892964 -0.4583732049641491 0.8812523222194998 0.9907553006407596 -0.01083849785456402 -0.1352274425421666 0.9907544045609922 -0.0108406531823145 -0.1352338348253676 -0.9907544045609922 0.0108406531823145 0.1352338348253676 -0.9907553006407596 0.01083849785456402 0.1352274425421666 -0.9907530489548243 0.01084127892656997 0.1352437157799057 0.9907530489548243 -0.01084127892656997 -0.1352437157799057 -0.9907530808765145 0.01084411850094725 0.1352432542777355 0.9907530808765145 -0.01084411850094725 -0.1352432542777355 0.9907542375847659 -0.01084303923369326 -0.1352348668354655 -0.9907542375847659 0.01084303923369326 0.1352348668354655 -0.07441248060794727 -0.8769001220509307 -0.4748778355291333 3.192874926016029e-006 -0.9968024692705665 0.07990517659017407 -3.192874926016029e-006 0.9968024692705665 -0.07990517659017407 0.07441248060794727 0.8769001220509307 0.4748778355291333 -0.0744176951841353 0.7900494079782563 -0.6085096051803028 0.0744176951841353 -0.7900494079782563 0.6085096051803028 -0.07441523278592301 0.7900546838570458 -0.608503056397386 0.07441523278592301 -0.7900546838570458 0.608503056397386 0.9907543028327227 -0.01084167648458662 -0.1352344980744529 -0.9907543028327227 0.01084167648458662 0.1352344980744529 -0.9907538262053057 0.0108422411242947 0.1352379446270524 -0.9907538262053057 0.0108422411242947 0.1352379446270524 0.9907538262053057 -0.0108422411242947 -0.1352379446270524 0.9907538262053057 -0.0108422411242947 -0.1352379446270524 -0.9907539146927812 0.01084211309693643 0.1352373066299488 0.9907539146927812 -0.01084211309693643 -0.1352373066299488 0.9907538401461802 -0.0108431721144034 -0.1352377678538621 -0.9907538401461802 0.0108431721144034 0.1352377678538621 2.928640909464708e-006 -0.9968023333952469 0.07990687160197312 0.07441770000105559 -0.7900488052496225 0.6085103871341859 -0.07441770000105559 0.7900488052496225 -0.6085103871341859 -2.928640909464708e-006 0.9968023333952469 -0.07990687160197312 -1.162098143399065e-006 0.9968021881199078 -0.07990868387111294 1.162098143399065e-006 -0.9968021881199078 0.07990868387111294 5.807865462094241e-006 0.9968037713732912 -0.07988893128745632 -5.807865462094241e-006 -0.9968037713732912 0.07988893128745632 0.9907543186649002 -0.01084091741884598 -0.1352344429365815 -0.9907543186649002 0.01084091741884598 0.1352344429365815 -0.9907542998263837 0.01084096646404351 0.1352345770195546 -0.9907537518170448 0.01084228453618815 0.1352384861142942 -0.9907537518170448 0.01084228453618815 0.1352384861142942 0.9907537518170448 -0.01084228453618815 -0.1352384861142942 0.9907537518170448 -0.01084228453618815 -0.1352384861142942 0.9907542998263837 -0.01084096646404351 -0.1352345770195546 -0.9907543337021733 0.01084276611543772 0.1352341845589668 -0.9907538409807305 0.01084215611410985 0.1352378431975552 -0.9907538409807305 0.01084215611410985 0.1352378431975552 0.9907538409807305 -0.01084215611410985 -0.1352378431975552 0.9907538409807305 -0.01084215611410985 -0.1352378431975552 0.9907543337021733 -0.01084276611543772 -0.1352341845589668 0.9907541247954318 -0.0108440271202516 -0.1352356139360237 -0.9907541247954318 0.0108440271202516 0.1352356139360237 0.07441831678586862 -0.7900528107385049 0.6085051112118504 0.11527576302403 -0.4583805966872975 0.881248391226801 -0.11527576302403 0.4583805966872975 -0.881248391226801 -0.07441831678586862 0.7900528107385049 -0.6085051112118504 0.07441513256072134 0.8769111714498417 0.474857015776788 -0.07441513256072134 -0.8769111714498417 -0.474857015776788 0.07442050729758486 0.876903121439521 0.4748710390234334 -0.07442050729758486 -0.876903121439521 -0.4748710390234334 0.9907539142897456 -0.0108411707924452 -0.1352373851248114 -0.9907539142897456 0.0108411707924452 0.1352373851248114 -0.9907541204724976 0.01084425063052422 0.1352356276837962 0.9907541204724976 -0.01084425063052422 -0.1352356276837962 -0.9907540773735396 0.01083963900090975 0.1352363131486376 0.9907540773735396 -0.01083963900090975 -0.1352363131486376 0.9907535193266759 -0.01084215616411869 -0.1352401996135736 -0.9907535193266759 0.01084215616411869 0.1352401996135736 0.1152759311751334 -0.4583833867458709 0.8812469179787758 0.1314739000021054 -0.1693891771649449 0.9767404569677756 -0.1314739000021054 0.1693891771649449 -0.9767404569677756 -0.1152759311751334 0.4583833867458709 -0.8812469179787758 0.1152753987928035 0.5929345763565147 0.7969568185253705 -0.1152753987928035 -0.5929345763565147 -0.7969568185253705 0.1152756976317288 0.5929321630903564 0.7969585707604311 -0.1152756976317288 -0.5929321630903564 -0.7969585707604311 0.9907541370054225 -0.0108397014107838 -0.1352358712766903 -0.9907541370054225 0.0108397014107838 0.1352358712766903 -0.9907528498073734 0.01084446748582026 0.1352449190303184 0.9907528498073734 -0.01084446748582026 -0.1352449190303184 -0.9907528440645809 0.01084106895587919 0.135245233564213 0.9907528440645809 -0.01084106895587919 -0.135245233564213 0.1314730277390396 -0.1693844129615158 0.9767414005881046 0.1356732411329711 0.07917733423144563 0.987584791997364 -0.1356732411329711 -0.07917733423144563 -0.987584791997364 -0.1314730277390396 0.1693844129615158 -0.9767414005881046 0.131473404914537 0.3228332179285216 0.937279817985053 -0.131473404914537 -0.3228332179285216 -0.937279817985053 0.1314713272349154 0.322840250832319 0.9372776870050918 -0.1314713272349154 -0.322840250832319 -0.9372776870050918 -0.9907544778676863 0.01084184676513502 0.1352332020764488 0.9907544778676863 -0.01084184676513502 -0.1352332020764488 0.1356735801070929 0.07917500836808616 0.987584931897423 -0.1356735801070929 -0.07917500836808616 -0.987584931897423</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"128\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 14 0 30 31 5 15 32 33 8 9 34 35 18 8 36 37 9 19 38 20 22 23 25 39 12 40 26 27 41 13 22 28 42 43 29 23 44 14 30 31 15 45 33 46 8 9 47 34 26 40 48 49 41 27 44 30 50 51 31 45 52 8 53 54 9 55 56 38 22 23 39 57 22 42 58 59 43 23 46 60 8 9 61 47 48 62 63 64 65 49 48 40 62 65 41 49 66 44 50 51 45 67 66 50 68 69 51 67 53 8 70 71 9 54 72 56 73 74 57 75 22 58 76 77 59 23 60 78 8 9 79 61 63 80 81 82 83 64 63 62 80 83 65 64 66 68 84 85 69 67 68 86 84 85 87 69 8 88 70 71 89 9 90 91 92 93 94 95 96 97 98 99 100 101 78 102 8 9 103 79 81 104 105 106 107 82 81 80 104 107 83 82 84 86 108 109 87 85 86 110 108 109 111 87 8 112 88 89 113 9 114 90 22 23 95 115 116 22 96 101 23 117 8 102 118 119 103 9 105 120 121 122 123 106 104 120 105 106 123 107 108 110 124 125 111 109 110 126 124 125 127 111 8 128 112 113 129 9 130 114 22 23 115 131 132 22 116 117 23 133 8 118 128 129 119 9 121 134 135 136 137 122 120 134 121 122 137 123 138 124 126 127 125 139 138 126 140 141 127 139 130 22 142 143 23 131 142 22 132 133 23 143 144 140 135 136 141 145 134 144 135 136 145 137 144 138 140 141 139 145</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1344\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1347\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1350\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1348\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1349\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1348\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"68\" source=\"#ID1351\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"204\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1351\">-0.211421862244606 1.405271649360657 0.100438803434372 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.405271649360657 0.100438803434372 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.405271649360657 0.100438803434372 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.211421862244606 1.405271649360657 0.100438803434372 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.341523766517639 0.187200739979744</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1349\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"68\" source=\"#ID1352\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"204\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1352\">-0.1692952967771664 -0.07876468768567274 -0.9824129612657346 -0.1692952967771664 -0.07876468768567274 -0.9824129612657346 -0.1692952967771664 -0.07876468768567274 -0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 -3.607747919905091e-006 0.9968011265815032 -0.07992192460664423 2.292340680649794e-006 0.9968014598728446 -0.07991776767472422 2.292364934457254e-006 0.9968014598742147 -0.07991776765763606 -2.292364934457254e-006 -0.9968014598742147 0.07991776765763606 -2.292340680649794e-006 -0.9968014598728446 0.07991776767472422 3.607747919905091e-006 -0.9968011265815032 0.07992192460664423 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -0.985566788375241 0.01352899279242671 0.1687455836629085 -0.985566788375241 0.01352899279242671 0.1687455836629085 -0.985566788375241 0.01352899279242671 0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 8.192430132416068e-006 0.9968017931121987 -0.07991361073803248 -8.192430132416068e-006 -0.9968017931121987 0.07991361073803248 0.169292302696274 0.07876082619117925 0.9824137868054765 0.169292302696274 0.07876082619117925 0.9824137868054765 0.169292302696274 0.07876082619117925 0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.9855666474151553 0.01352822838162632 0.1687464682288358 -0.9855666474151553 0.01352822838162632 0.1687464682288358 -0.9855666474151553 0.01352822838162632 0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.1692940095783117 0.07875907644888579 0.9824136329458265 0.1692940095783117 0.07875907644888579 0.9824136329458265 0.1692940095783117 0.07875907644888579 0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 19 48 20 21 49 22 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1350\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1353\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1356\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1354\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1355\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1354\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"150\" source=\"#ID1357\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"450\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1357\">-0.2801137268543243 1.601384282112122 0.07121631503105164 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1355\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"150\" source=\"#ID1358\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"450\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1358\">-0.1356692217318193 -0.0791759307796135 -0.9875854566870982 -0.1356698493860474 -0.07917859868270143 -0.9875851565704148 -0.1314681476065477 -0.3228358283250789 -0.9372796563003826 0.1314681476065477 0.3228358283250789 0.9372796563003826 0.1356698493860474 0.07917859868270143 0.9875851565704148 0.1356692217318193 0.0791759307796135 0.9875854566870982 0.990755038883388 -0.01084157807576591 -0.1352291134038946 0.9907553094818479 -0.01084286333397569 -0.1352270278023179 0.9907545150269511 -0.01084163096386696 -0.1352329471384623 -0.9907545150269511 0.01084163096386696 0.1352329471384623 -0.9907553094818479 0.01084286333397569 0.1352270278023179 -0.990755038883388 0.01084157807576591 0.1352291134038946 -0.1314688471447525 -0.3228407589476306 -0.9372778598646976 0.1314688471447525 0.3228407589476306 0.9372778598646976 -0.1314702534478887 0.1693883395937448 -0.9767410930579414 0.1314702534478887 -0.1693883395937448 0.9767410930579414 0.9907553225442187 -0.01084392916864213 -0.135226846633672 -0.9907553225442187 0.01084392916864213 0.135226846633672 0.9907553502238049 -0.01083952063097537 -0.135226997287511 -0.9907553502238049 0.01083952063097537 0.135226997287511 -0.990754664616892 0.01084708955208488 0.1352314134663949 -0.9907537198654387 0.01084286954524533 0.1352386732884534 -0.9907537742528971 0.01084220172669491 0.1352383283886532 0.9907537742528971 -0.01084220172669491 -0.1352383283886532 0.9907537198654387 -0.01084286954524533 -0.1352386732884534 0.990754664616892 -0.01084708955208488 -0.1352314134663949 -0.115269717371056 -0.5929125925150331 -0.7969739957453436 0.115269717371056 0.5929125925150331 0.7969739957453436 -0.9907547608051255 0.01083646901163245 0.1352315602266675 0.9907547608051255 -0.01083646901163245 -0.1352315602266675 -0.1314706361830664 0.1693873924460705 -0.9767412057970836 0.1314706361830664 -0.1693873924460705 0.9767412057970836 0.9907552486948316 -0.01084364746921769 -0.135227410288026 0.9907544686782243 -0.01084268175388495 -0.1352332024560302 -0.9907544686782243 0.01084268175388495 0.1352332024560302 -0.9907552486948316 0.01084364746921769 0.135227410288026 0.9907553600312666 -0.01083830286003287 -0.1352270230406248 -0.9907553600312666 0.01083830286003287 0.1352270230406248 -0.9907528949808248 0.0108438867540005 0.1352446346705895 0.9907528949808248 -0.0108438867540005 -0.1352446346705895 -0.1152728223332582 -0.5929306852146626 -0.7969600861788473 0.1152728223332582 0.5929306852146626 0.7969600861788473 -0.9907530246285961 0.01084120938957167 0.1352438995602404 0.9907530246285961 -0.01084120938957167 -0.1352438995602404 -0.1152763180923769 0.4583634432222098 -0.8812572407671583 0.1152763180923769 -0.4583634432222098 0.8812572407671583 0.9907543117722588 -0.01084193425789373 -0.1352344119158477 -0.9907543117722588 0.01084193425789373 0.1352344119158477 -0.07441634651649491 -0.8769018501917213 -0.4748740385633572 0.07441634651649491 0.8769018501917213 0.4748740385633572 -0.1152716199714295 0.4583767549267875 -0.8812509314445858 0.1152716199714295 -0.4583767549267875 0.8812509314445858 0.9907552724987844 -0.01083873891871537 -0.1352276294050575 0.9907544579576236 -0.0108406981143271 -0.1352334400268269 -0.9907544579576236 0.0108406981143271 0.1352334400268269 -0.9907552724987844 0.01083873891871537 0.1352276294050575 -0.9907530102878968 0.0108410673081059 0.1352440160047461 0.9907530102878968 -0.0108410673081059 -0.1352440160047461 -0.9907531370540285 0.01084393251738769 0.1352428576493415 0.9907531370540285 -0.01084393251738769 -0.1352428576493415 0.990754216923581 -0.01084271563818988 -0.1352350441480726 0.9907546154829099 -0.01084175701065832 -0.1352322010625927 -0.9907546154829099 0.01084175701065832 0.1352322010625927 -0.990754216923581 0.01084271563818988 0.1352350441480726 -0.07441916213512102 -0.8769111782314245 -0.4748563717587472 -4.235417158476926e-006 -0.9968004622671232 0.07993020959631503 4.235417158476926e-006 0.9968004622671232 -0.07993020959631503 0.07441916213512102 0.8769111782314245 0.4748563717587472 -0.07441374131601436 0.7900357613279838 -0.6085278062063114 0.07441374131601436 -0.7900357613279838 0.6085278062063114 -0.07441502969023559 0.7900314892178472 -0.6085331949864627 0.07441502969023559 -0.7900314892178472 0.6085331949864627 0.9907543765916157 -0.01084162177413705 -0.1352339620874339 -0.9907543765916157 0.01084162177413705 0.1352339620874339 -0.9907537574304999 0.0108419922220309 0.1352384684252361 -0.9907537574304999 0.0108419922220309 0.1352384684252361 0.9907537574304999 -0.0108419922220309 -0.1352384684252361 0.9907537574304999 -0.0108419922220309 -0.1352384684252361 -0.9907538895728028 0.0108421226586768 0.1352374898932132 -0.9907538895728028 0.0108421226586768 0.1352374898932132 0.9907538895728028 -0.0108421226586768 -0.1352374898932132 0.9907538895728028 -0.0108421226586768 -0.1352374898932132 0.9907538673674123 -0.0108427181255508 -0.1352376048300391 -0.9907538673674123 0.0108427181255508 0.1352376048300391 -2.57462444777998e-006 -0.9968024550084911 0.07990535452906993 0.07441418381058321 -0.7900491071668576 0.6085104251470602 -0.07441418381058321 0.7900491071668576 -0.6085104251470602 2.57462444777998e-006 0.9968024550084911 -0.07990535452906993 1.067839092478683e-006 0.9968001981039093 -0.07993350398216555 -1.067839092478683e-006 -0.9968001981039093 0.07993350398216555 -1.347711116124554e-006 0.9967996693632567 -0.0799400972946978 1.347711116124554e-006 -0.9967996693632567 0.0799400972946978 0.9907542594744274 -0.01084074886987405 -0.135234890088392 -0.9907542594744274 0.01084074886987405 0.135234890088392 -0.990754285377745 0.01084072616952699 0.1352347021357721 -0.9907537594868053 0.01084199102203542 0.1352384534569954 -0.9907537594868053 0.01084199102203542 0.1352384534569954 0.9907537594868053 -0.01084199102203542 -0.1352384534569954 0.9907537594868053 -0.01084199102203542 -0.1352384534569954 0.990754285377745 -0.01084072616952699 -0.1352347021357721 -0.9907542347739401 0.01084268184047282 0.1352349160831287 -0.9907538171999085 0.01084216489426355 0.1352380167120766 -0.9907538171999085 0.01084216489426355 0.1352380167120766 0.9907538171999085 -0.01084216489426355 -0.1352380167120766 0.9907538171999085 -0.01084216489426355 -0.1352380167120766 0.9907542347739401 -0.01084268184047282 -0.1352349160831287 0.9907541447492104 -0.01084372969831687 -0.1352354916007271 -0.9907541447492104 0.01084372969831687 0.1352354916007271 0.07441486581928107 -0.790057000203266 0.6085000938166855 0.115274064337515 -0.458377227782483 0.8812503657539986 -0.115274064337515 0.458377227782483 -0.8812503657539986 -0.07441486581928107 0.790057000203266 -0.6085000938166855 0.07442034387648687 0.8768891770633528 0.4748968135989771 -0.07442034387648687 -0.8768891770633528 -0.4748968135989771 0.07441722469855183 0.8768924517460316 0.474891255698606 -0.07441722469855183 -0.8768924517460316 -0.474891255698606 0.9907538211855245 -0.01084133154978273 -0.1352380543209258 -0.9907538211855245 0.01084133154978273 0.1352380543209258 -0.9907540170982758 0.01084435679705766 0.1352363765016191 0.9907540170982758 -0.01084435679705766 -0.1352363765016191 -0.9907539455884662 0.01083975691409952 0.1352372691639772 0.9907539455884662 -0.01083975691409952 -0.1352372691639772 0.9907535072974634 -0.0108417617890564 -0.1352403193544176 -0.9907535072974634 0.0108417617890564 0.1352403193544176 0.1152751208156897 -0.4583785629178389 0.8812495330939499 0.1314731089687768 -0.1693813640998348 0.9767419183764785 -0.1314731089687768 0.1693813640998348 -0.9767419183764785 -0.1152751208156897 0.4583785629178389 -0.8812495330939499 0.1152735228554939 0.5929025989580536 0.7969808799947897 -0.1152735228554939 -0.5929025989580536 -0.7969808799947897 0.115268135674773 0.5929178457434806 0.7969703163211114 -0.115268135674773 -0.5929178457434806 -0.7969703163211114 0.9907542573323389 -0.01084017946061422 -0.1352349514256858 -0.9907542573323389 0.01084017946061422 0.1352349514256858 -0.990752711050512 0.01084431889758902 0.1352459474206457 0.990752711050512 -0.01084431889758902 -0.1352459474206457 -0.9907528726464318 0.01084160231982215 0.1352449814299302 0.9907528726464318 -0.01084160231982215 -0.1352449814299302 0.1314753993869377 -0.1693935009502534 0.9767395052888265 0.135673890395719 0.07916904731405634 0.9875853671517592 -0.135673890395719 -0.07916904731405634 -0.9875853671517592 -0.1314753993869377 0.1693935009502534 -0.9767395052888265 0.1314685987065968 0.322842898002442 0.9372771579226225 -0.1314685987065968 -0.322842898002442 -0.9372771579226225 0.1314699454240871 0.3228410598408602 0.9372776021707856 -0.1314699454240871 -0.3228410598408602 -0.9372776021707856 -0.9907544541490362 0.01084113343017222 0.1352334330326444 0.9907544541490362 -0.01084113343017222 -0.1352334330326444 0.1356723079532084 0.07917457048518277 0.9875851417691218 -0.1356723079532084 -0.07917457048518277 -0.9875851417691218</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"128\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 14 0 30 31 5 15 32 33 8 9 34 35 18 8 36 37 9 19 38 20 22 23 25 39 12 40 26 27 41 13 22 28 42 43 29 23 44 14 30 31 15 45 33 46 8 9 47 34 26 40 48 49 41 27 44 30 50 51 31 45 52 8 53 54 9 55 56 38 22 23 39 57 22 42 58 59 43 23 46 60 61 62 63 47 48 64 65 66 67 49 48 40 64 67 41 49 68 44 50 51 45 69 68 50 70 71 51 69 53 8 72 73 9 54 74 56 75 76 57 77 78 58 79 80 59 81 60 82 8 9 83 63 65 84 85 86 87 66 65 64 84 87 67 66 68 70 88 89 71 69 70 90 88 89 91 71 8 92 72 73 93 9 94 95 96 97 98 99 100 101 102 103 104 105 82 106 8 9 107 83 85 108 109 110 111 86 85 84 108 111 87 86 88 90 112 113 91 89 90 114 112 113 115 91 8 116 92 93 117 9 118 94 22 23 99 119 120 22 100 105 23 121 8 106 122 123 107 9 109 124 125 126 127 110 108 124 109 110 127 111 112 114 128 129 115 113 114 130 128 129 131 115 8 132 116 117 133 9 134 118 22 23 119 135 136 22 120 121 23 137 8 122 132 133 123 9 125 138 139 140 141 126 124 138 125 126 141 127 142 128 130 131 129 143 142 130 144 145 131 143 134 22 146 147 23 135 146 22 136 137 23 147 148 144 139 140 145 149 138 148 139 140 149 141 148 142 144 145 143 149</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1356\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1359\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1362\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1360\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1361\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1360\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1363\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"168\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1363\">-0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1361\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1364\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"168\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1364\">-0.1692923417467978 -0.07875995462953699 -0.9824138499495204 -0.1692938326651547 -0.07876144204660998 -0.9824134737819312 -0.1692938326907131 -0.07876144207210842 -0.9824134737754826 0.1692938326907131 0.07876144207210842 0.9824134737754826 0.1692938326651547 0.07876144204660998 0.9824134737819312 0.1692923417467978 0.07875995462953699 0.9824138499495204 0.985565970216552 -0.01352869035001519 -0.1687503863359133 0.985565970216552 -0.01352869035001519 -0.1687503863359133 0.985565970216552 -0.01352869035001519 -0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.1692953236140108 -0.0787629294945232 -0.9824130976019551 0.1692953236140108 0.0787629294945232 0.9824130976019551 4.192985630659793e-006 0.996801436518354 -0.07991805889387653 1.096906230813379e-005 0.9968018192187224 -0.07991328476495892 1.09690889451969e-005 0.9968018192202266 -0.07991328474619158 -1.09690889451969e-005 -0.9968018192202266 0.07991328474619158 -1.096906230813379e-005 -0.9968018192187224 0.07991328476495892 -4.192985630659793e-006 -0.996801436518354 0.07991805889387653 9.582506172782085e-007 -0.996801371888121 0.07991886511357456 -5.671514406445729e-006 -0.9968017463641189 0.07991419406636696 -5.671498187858583e-006 -0.996801746363203 0.07991419407779388 5.671498187858583e-006 0.996801746363203 -0.07991419407779388 5.671514406445729e-006 0.9968017463641189 -0.07991419406636696 -9.582506172782085e-007 0.996801371888121 -0.07991886511357456 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -1.230130500121009e-005 -0.9968021207758588 0.07990952299587543 1.230130500121009e-005 0.9968021207758588 -0.07990952299587543 -0.985566806953075 0.01352881908006203 0.1687454890852473 -0.985566806953075 0.01352881908006203 0.1687454890852473 -0.985566806953075 0.01352881908006203 0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 1.774514664156804e-005 0.9968022018508893 -0.07990851062514436 -1.774514664156804e-005 -0.9968022018508893 0.07990851062514436 0.1692896681507659 0.07876208895893308 0.9824141395563425 0.1692914505875623 0.07876026173301266 0.9824139788957129 0.1692914506032995 0.07876026171688015 0.9824139788942946 -0.1692914506032995 -0.07876026171688015 -0.9824139788942946 -0.1692914505875623 -0.07876026173301266 -0.9824139788957129 -0.1692896681507659 -0.07876208895893308 -0.9824141395563425 -0.985566674990484 0.01352810345769673 0.1687463171895607 -0.985566674990484 0.01352810345769673 0.1687463171895607 -0.985566674990484 0.01352810345769673 0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.1692932330193621 0.07875843451056407 0.9824138182290074 -0.1692932330193621 -0.07875843451056407 -0.9824138182290074</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 21 32 22 23 33 24 34 35 36 37 38 39 15 40 16 17 41 18 42 43 44 45 46 47 48 49 50 51 52 53 43 54 44 45 55 46</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1362\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1365\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1368\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1366\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1367\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1366\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1369\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1369\">-0.1229010000824928 1.402469992637634 0.07537984848022461 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1123381182551384 1.404854774475098 0.1051209568977356 -0.1123381182551384 1.404854774475098 0.1051209568977356 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.2154930233955383 1.407772421836853 0.1415231823921204 -0.2154930233955383 1.407772421836853 0.1415231823921204 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.420804738998413 0.1686054915189743</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1367\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1370\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1370\">-0.3337266271680724 -0.07532520667226132 -0.9396556026325833 -0.3337254443835178 -0.07531800304052706 -0.939656600141249 -0.2556522031940139 -0.6984222253960624 -0.6684671615531003 0.2556522031940139 0.6984222253960624 0.6684671615531003 0.3337254443835178 0.07531800304052706 0.939656600141249 0.3337266271680724 0.07532520667226132 0.9396556026325833 0.9426693299249394 -0.02667009523577694 -0.3326608489723134 0.9426698480710878 -0.02666549239372739 -0.3326597496737959 0.942668346931451 -0.02667054805145014 -0.3326635981891633 -0.942668346931451 0.02667054805145014 0.3326635981891633 -0.9426698480710878 0.02666549239372739 0.3326597496737959 -0.9426693299249394 0.02667009523577694 0.3326608489723134 -0.2556517063393704 -0.6984267968755661 -0.6684625752066491 0.2556517063393704 0.6984267968755661 0.6684625752066491 -0.255639269038604 0.5830513834916339 -0.7711677173831254 0.255639269038604 -0.5830513834916339 0.7711677173831254 0.94266992556121 -0.02666708717482581 -0.3326594022480552 -0.94266992556121 0.02666708717482581 0.3326594022480552 0.9426698844777661 -0.02667432654829168 -0.3326589382563925 -0.9426698844777661 0.02667432654829168 0.3326589382563925 -0.9426692985040845 0.02667097289356337 0.3326608676456075 -0.9426700925419396 0.02667093112104283 0.3326586209015298 -0.9426726158260356 0.02666887460036563 0.3326516353473254 0.9426726158260356 -0.02666887460036563 -0.3326516353473254 0.9426700925419396 -0.02667093112104283 -0.3326586209015298 0.9426692985040845 -0.02667097289356337 -0.3326608676456075 -0.05795608011964645 -0.9947370444312012 -0.08449440936206237 0.05795608011964645 0.9947370444312012 0.08449440936206237 -0.9426700925637542 0.02666824235994739 0.3326588364004093 0.9426700925637542 -0.02666824235994739 -0.3326588364004093 -0.2556454488961971 0.5830389603010273 -0.7711750613380591 0.2556454488961971 -0.5830389603010273 0.7711750613380591 0.9426676632894262 -0.02667050683223612 -0.3326655387228512 -0.9426676632894262 0.02667050683223612 0.3326655387228512 0.942669672464622 -0.02667280394461036 -0.3326596611330787 -0.942669672464622 0.02667280394461036 0.3326596611330787 -0.9426708263224173 0.02666902468531293 0.3326566943906968 0.9426708263224173 -0.02666902468531293 -0.3326566943906968 -0.05795410471479303 -0.9947383245080389 -0.08448069307034842 0.05795410471479303 0.9947383245080389 0.08448069307034842 -0.9426700638303835 0.02666835112717045 0.3326589091038728 -0.9426711799215867 0.02666751137953105 0.3326558136904663 0.9426711799215867 -0.02666751137953105 -0.3326558136904663 0.9426700638303835 -0.02666835112717045 -0.3326589091038728 -0.05795203583627952 0.968575292156016 -0.2418748952812563 0.05795203583627952 -0.968575292156016 0.2418748952812563 0.942665841501148 -0.02667405932079358 -0.3326704162174381 -0.942665841501148 0.02667405932079358 0.3326704162174381 0.1668648430655019 -0.8255867437633917 0.5390386374564307 -0.1668648430655019 0.8255867437633917 -0.5390386374564307 -0.05795097760768985 0.9685756112144538 -0.2418738711702036 0.05795097760768985 -0.9685756112144538 0.2418738711702036 0.942667165956151 -0.02667077309447859 -0.3326669266559897 -0.942667165956151 0.02667077309447859 0.3326669266559897 -0.9426750123298155 0.02666608750429935 0.3326450674610936 0.9426750123298155 -0.02666608750429935 -0.3326450674610936 -0.9426743676767683 0.02666977656740232 0.3326465985742982 0.9426743676767683 -0.02666977656740232 -0.3326465985742982 0.9426659987069123 -0.02667273395274511 -0.3326700770213422 0.9426657124675998 -0.02667044983034913 -0.332671071245757 -0.9426657124675998 0.02667044983034913 0.332671071245757 -0.9426659987069123 0.02667273395274511 0.3326700770213422 0.1668651044540556 -0.8255855666711214 0.5390403593608371 0.3136006934420363 -0.270121277291786 0.9103236241177795 -0.3136006934420363 0.270121277291786 -0.9103236241177795 -0.1668651044540556 0.8255855666711214 -0.5390403593608371 0.1668518724339733 0.9009418074566474 0.4005799698462547 -0.1668518724339733 -0.9009418074566474 -0.4005799698462547 0.1668533512389299 0.9009402941734973 0.4005827573859245 -0.1668533512389299 -0.9009402941734973 -0.4005827573859245 -0.9426764526599932 0.02666602774790375 0.3326409905055594 0.9426764526599932 -0.02666602774790375 -0.3326409905055594 -0.9426762338578055 0.02667124274608742 0.3326411924732764 0.9426762338578055 -0.02667124274608742 -0.3326411924732764 0.3136004230653525 -0.270117527812872 0.9103248298390494 0.3135922239403754 0.4117529551857169 0.8556397729067756 -0.3135922239403754 -0.4117529551857169 -0.8556397729067756 -0.3136004230653525 0.270117527812872 -0.9103248298390494 0.3135992515083158 0.4117307509759519 0.8556478821070047 -0.3135992515083158 -0.4117307509759519 -0.8556478821070047</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"72\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 21 28 29 24 23 14 0 30 31 5 15 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 22 40 41 42 43 23 14 30 44 45 31 15 32 46 8 9 47 33 48 26 38 39 27 49 30 50 44 45 51 31 8 52 34 35 53 9 54 36 22 23 37 55 56 22 41 42 23 57 8 58 59 60 61 9 48 62 63 64 65 49 48 38 62 65 39 49 44 50 66 67 51 45 50 68 66 67 69 51 8 59 52 53 60 9 70 54 22 23 55 71 72 22 56 57 23 73 63 74 75 76 77 64 62 74 63 64 77 65 66 68 78 79 69 67 68 75 78 79 76 69 70 22 72 73 23 71 74 78 75 76 79 77</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1368\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1371\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1374\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1372\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1373\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1372\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1375\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"246\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1375\">-0.121831588447094 1.560251235961914 0.06273014843463898 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.2144237756729126 1.565554141998291 0.1288736164569855 -0.2144237756729126 1.565554141998291 0.1288736164569855 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2044984251260757 1.578587532043457 0.1559560894966126</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1373\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1376\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"246\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1376\">-0.3337284789644306 -0.07535968965900289 -0.9396521800658937 -0.3337242968039064 -0.07533479758929397 -0.939655661396726 -0.2556476260153263 -0.6984382220308391 -0.6684521982304555 0.2556476260153263 0.6984382220308391 0.6684521982304555 0.3337242968039064 0.07533479758929397 0.939655661396726 0.3337284789644306 0.07535968965900289 0.9396521800658937 0.9426694128352491 -0.02666973091874628 -0.3326606432350672 0.9426694127314597 -0.02667813209137133 -0.3326599698921414 0.942668926506434 -0.02666950286440723 -0.3326620396380881 -0.942668926506434 0.02666950286440723 0.3326620396380881 -0.9426694127314597 0.02667813209137133 0.3326599698921414 -0.9426694128352491 0.02666973091874628 0.3326606432350672 -0.255646262106825 -0.6984564686954649 -0.6684336541559452 0.255646262106825 0.6984564686954649 0.6684336541559452 -0.2556503053192089 0.583016594440822 -0.7711903604148728 0.2556503053192089 -0.583016594440822 0.7711903604148728 0.9426699931672807 -0.02668006749924834 -0.3326581698684618 0.942669259790379 -0.02667984675927415 -0.3326602657714937 -0.942669259790379 0.02667984675927415 0.3326602657714937 -0.9426699931672807 0.02668006749924834 0.3326581698684618 0.9426697523001979 -0.02666004568836103 -0.3326604576173405 -0.9426697523001979 0.02666004568836103 0.3326604576173405 -0.9426707722604234 0.02666917946059317 0.3326568351812961 -0.94267117412886 0.02666943846076941 0.3326556756147475 -0.9426731217563237 0.02666860222138295 0.3326502234686538 0.9426731217563237 -0.02666860222138295 -0.3326502234686538 0.94267117412886 -0.02666943846076941 -0.3326556756147475 0.9426707722604234 -0.02666917946059317 -0.3326568351812961 -0.05795423941257186 -0.994738707658848 -0.08447608903894131 0.05795423941257186 0.994738707658848 0.08447608903894131 -0.9426708768647963 0.02666948294379122 0.3326565144266181 0.9426708768647963 -0.02666948294379122 -0.3326565144266181 -0.255652140417525 0.583012347109947 -0.7711929630237095 0.255652140417525 -0.583012347109947 0.7711929630237095 0.9426680003299808 -0.02668065199421859 -0.332663770138918 -0.9426680003299808 0.02668065199421859 0.332663770138918 0.9426695663783524 -0.02665915632357748 -0.3326610557431757 -0.9426695663783524 0.02665915632357748 0.3326610557431757 -0.9426733099111155 0.02666872421876396 0.3326496804894987 0.9426733099111155 -0.02666872421876396 -0.3326496804894987 -0.0579498436027994 -0.994741411996432 -0.08444725505163428 0.0579498436027994 0.994741411996432 0.08444725505163428 -0.9426731236378981 0.0266686940813683 0.3326502107721603 0.9426731236378981 -0.0266686940813683 -0.3326502107721603 -0.05795127045210659 0.9685752051750813 -0.241875426972307 0.05795127045210659 -0.9685752051750813 0.241875426972307 0.9426682123690319 -0.02667545368174198 -0.3326635861645327 -0.9426682123690319 0.02667545368174198 0.3326635861645327 0.1668598278491472 -0.8255880097559711 0.5390382509593614 -0.1668598278491472 0.8255880097559711 -0.5390382509593614 -0.05795438103376407 0.9685733722687513 -0.2418820213470451 0.05795438103376407 -0.9685733722687513 0.2418820213470451 0.9426682383299377 -0.02665834859776295 -0.3326648837703971 -0.9426682383299377 0.02665834859776295 0.3326648837703971 -0.942674597705025 0.02667283037220496 0.332645701853496 0.942674597705025 -0.02667283037220496 -0.332645701853496 -0.9426756674865577 0.02666678017256694 0.3326431552940793 0.9426756674865577 -0.02666678017256694 -0.3326431552940793 0.9426689503533277 -0.02666923001243467 -0.3326619939372389 0.9426681929053484 -0.02666318732849757 -0.3326646246988855 -0.9426681929053484 0.02666318732849757 0.3326646246988855 -0.9426689503533277 0.02666923001243467 0.3326619939372389 0.1668582087259924 -0.8255983909538566 0.53902285205282 0.3135987183210398 -0.2701335159881868 0.9103206728440595 -0.3135987183210398 0.2701335159881868 -0.9103206728440595 -0.1668582087259924 0.8255983909538566 -0.53902285205282 0.1668622050623149 0.9009256888053704 0.4006119166628858 -0.1668622050623149 -0.9009256888053704 -0.4006119166628858 0.1668585745490759 0.9009288777610089 0.4006062572099185 -0.1668585745490759 -0.9009288777610089 -0.4006062572099185 -0.9426738098360217 0.02666876774876723 0.3326482602930651 0.9426738098360217 -0.02666876774876723 -0.3326482602930651 -0.9426749672617724 0.0266638276274031 0.3326453763308198 -0.9426752609315559 0.02666617088208003 0.3326443562697421 0.9426752609315559 -0.02666617088208003 -0.3326443562697421 0.9426749672617724 -0.0266638276274031 -0.3326453763308198 0.3135995234629018 -0.2701506651186825 0.9103153063745411 0.3135975129665967 0.4117207496375949 0.8556533317757969 -0.3135975129665967 -0.4117207496375949 -0.8556533317757969 -0.3135995234629018 0.2701506651186825 -0.9103153063745411 0.3136011967334145 0.41170988785074 0.8556572080297702 -0.3136011967334145 -0.41170988785074 -0.8556572080297702</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"72\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 16 17 8 9 18 19 6 8 20 21 9 11 22 23 24 25 26 27 28 2 12 13 3 29 24 23 30 31 26 25 14 0 32 33 5 15 17 34 8 9 35 18 20 8 36 37 9 21 38 22 24 25 27 39 28 12 40 41 13 29 24 30 42 43 31 25 14 32 44 45 33 15 34 46 8 9 47 35 48 28 40 41 29 49 32 50 44 45 51 33 8 52 36 37 53 9 54 38 24 25 39 55 56 24 42 43 25 57 58 46 59 60 47 61 48 62 63 64 65 49 48 40 62 65 41 49 44 50 66 67 51 45 50 68 66 67 69 51 8 59 52 53 60 9 70 54 24 25 55 71 72 24 73 74 25 75 63 76 77 78 79 64 62 76 63 64 79 65 66 68 80 81 69 67 68 77 80 81 78 69 70 24 72 75 25 71 76 80 77 78 81 79</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1374\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1377\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1380\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1378\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1379\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1378\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1381\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1381\">-0.121831588447094 1.632965445518494 0.05580605939030647 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.1112687066197395 1.635351061820984 0.08554725348949432 -0.1112687066197395 1.635351061820984 0.08554725348949432 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2144237756729126 1.63826847076416 0.1219496876001358 -0.2144237756729126 1.63826847076416 0.1219496876001358 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.651299953460693 0.1490315943956375</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1379\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1382\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"240\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1382\">-0.333730378141187 -0.07535403620761856 -0.9396519589363719 -0.333726883852007 -0.07533113375164462 -0.9396550363203088 -0.2556565374133898 -0.6984324284783076 -0.6684548434469525 0.2556565374133898 0.6984324284783076 0.6684548434469525 0.333726883852007 0.07533113375164462 0.9396550363203088 0.333730378141187 0.07535403620761856 0.9396519589363719 0.9426698651042278 -0.02666926967659147 -0.3326593986035781 0.9426706627335539 -0.02667644281289909 -0.3326565631703853 0.9426693154071472 -0.02667025725170954 -0.3326608771225557 -0.9426693154071472 0.02667025725170954 0.3326608771225557 -0.9426706627335539 0.02667644281289909 0.3326565631703853 -0.9426698651042278 0.02666926967659147 0.3326593986035781 -0.2556565162415049 -0.6984283547388395 -0.6684591079490616 0.2556565162415049 0.6984283547388395 0.6684591079490616 -0.2556544916264227 0.5830074241203893 -0.7711959052872001 0.2556544916264227 -0.5830074241203893 0.7711959052872001 0.9426701864689276 -0.02667871855776842 -0.3326577302855785 -0.9426701864689276 0.02667871855776842 0.3326577302855785 0.9426703818063023 -0.0266627993108055 -0.3326584530687176 -0.9426703818063023 0.0266627993108055 0.3326584530687176 -0.942670682789034 0.02666641547402317 0.3326573102996888 -0.9426715774722685 0.02666939845816986 0.3326545358353379 -0.9426726866031083 0.02666879491651253 0.3326514411665441 0.9426726866031083 -0.02666879491651253 -0.3326514411665441 0.9426715774722685 -0.02666939845816986 -0.3326545358353379 0.942670682789034 -0.02666641547402317 -0.3326573102996888 -0.05795034002025325 -0.9947409900488647 -0.08445188457424339 0.05795034002025325 0.9947409900488647 0.08445188457424339 -0.9426715774692825 0.0266696397275071 0.332654516500798 -0.9426706530564586 0.02667313881978869 0.3326568555307563 0.9426706530564586 -0.02667313881978869 -0.3326568555307563 0.9426715774692825 -0.0266696397275071 -0.332654516500798 -0.2556600729310317 0.5829964967063355 -0.7712023158270722 0.2556600729310317 -0.5829964967063355 0.7712023158270722 0.9426679717584315 -0.02668017002983864 -0.3326638897566493 -0.9426679717584315 0.02668017002983864 0.3326638897566493 0.9426693238288924 -0.02666202804200823 -0.3326615129116476 -0.9426693238288924 0.02666202804200823 0.3326615129116476 -0.9426725348063688 0.02666425905578586 0.3326522349402474 0.9426725348063688 -0.02666425905578586 -0.3326522349402474 -0.05795252513498193 -0.9947392447197427 -0.08447094083100366 0.05795252513498193 0.9947392447197427 0.08447094083100366 -0.9426734261757909 0.02667385572371525 0.3326489395786893 0.9426734261757909 -0.02667385572371525 -0.3326489395786893 -0.05796483274626623 0.96857007026727 -0.241892738930198 0.05796483274626623 -0.96857007026727 0.241892738930198 0.9426680303599566 -0.02667357815985674 -0.3326642523106893 -0.9426680303599566 0.02667357815985674 0.3326642523106893 0.1668674553623587 -0.8255766404347668 0.5390533026606321 -0.1668674553623587 0.8255766404347668 -0.5390533026606321 -0.05796124807593681 0.9685715880919653 -0.2418875202702447 0.05796124807593681 -0.9685715880919653 0.2418875202702447 0.9426683879472891 -0.02666417007570079 -0.3326639932409778 -0.9426683879472891 0.02666417007570079 0.3326639932409778 -0.9426744820301379 0.02666664481774934 0.3326465255844037 0.9426744820301379 -0.02666664481774934 -0.3326465255844037 -0.9426746561069067 0.02666737641715492 0.3326459736247396 0.9426746561069067 -0.02666737641715492 -0.3326459736247396 0.9426690297862003 -0.02666515139479778 -0.3326620958014853 -0.9426690297862003 0.02666515139479778 0.3326620958014853 0.1668667127256855 -0.8255788199028996 0.5390501946125792 0.3135970278251287 -0.2701501860406067 0.9103163082805179 -0.3135970278251287 0.2701501860406067 -0.9103163082805179 -0.1668667127256855 0.8255788199028996 -0.5390501946125792 0.1668686049155389 0.9009099015269486 0.4006447528974333 -0.1668686049155389 -0.9009099015269486 -0.4006447528974333 0.1668609828112135 0.9009170600359566 0.4006318301775889 -0.1668609828112135 -0.9009170600359566 -0.4006318301775889 0.9426690267813482 -0.02666512741588473 -0.332662106238448 -0.9426690267813482 0.02666512741588473 0.332662106238448 -0.9426734572124721 0.02667010445225194 0.3326491524047397 0.9426734572124721 -0.02667010445225194 -0.3326491524047397 -0.942672710193572 0.026667841495269 0.3326514507503151 0.942672710193572 -0.026667841495269 -0.3326514507503151 0.3135950812842684 -0.270120249285133 0.9103258624912568 0.313594948705331 0.411703538656981 0.8556625528815787 -0.313594948705331 -0.411703538656981 -0.8556625528815787 -0.3135950812842684 0.270120249285133 -0.9103258624912568 0.3135997197807662 0.4116882149507133 0.8556681771715717 -0.3135997197807662 -0.4116882149507133 -0.8556681771715717</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"72\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 28 29 30 31 23 14 0 32 33 5 15 16 34 8 9 35 17 18 8 36 37 9 19 38 20 22 23 25 39 26 12 40 41 13 27 22 29 42 43 30 23 14 32 44 45 33 15 34 46 8 9 47 35 48 26 40 41 27 49 32 50 44 45 51 33 8 52 36 37 53 9 54 38 22 23 39 55 56 22 42 43 23 57 8 46 58 59 47 9 48 60 61 62 63 49 48 40 60 63 41 49 44 50 64 65 51 45 50 66 64 65 67 51 8 68 52 53 69 9 70 54 22 23 55 71 72 22 56 57 23 73 61 74 75 76 77 62 60 74 61 62 77 63 64 66 78 79 67 65 66 75 78 79 76 67 70 22 72 73 23 71 74 78 75 76 79 77</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1380\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1383\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1386\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1384\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1385\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1384\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1387\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"246\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1387\">-0.1239700987935066 1.32936418056488 0.08014623820781708 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1134073734283447 1.331748962402344 0.1098872125148773 -0.1134073734283447 1.331748962402344 0.1098872125148773 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.32611608505249 0.1751019805669785</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1385\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1388\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"246\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1388\">-0.3337276167891264 -0.075333276831864 -0.939654604199875 -0.3337309577305596 -0.07535292865709133 -0.9396518419047784 -0.2556555199327572 -0.6984359506995821 -0.6684515523942498 0.2556555199327572 0.6984359506995821 0.6684515523942498 0.3337309577305596 0.07535292865709133 0.9396518419047784 0.3337276167891264 0.075333276831864 0.939654604199875 0.9426704146675395 -0.02666821468598398 -0.3326579258577669 0.9426719908397363 -0.02667014439399164 -0.332653304634498 0.9426704041214337 -0.02666958664825751 -0.3326578457537778 -0.9426704041214337 0.02666958664825751 0.3326578457537778 -0.9426719908397363 0.02667014439399164 0.332653304634498 -0.9426704146675395 0.02666821468598398 0.3326579258577669 -0.2556553714157113 -0.6984335117424741 -0.6684541575466264 0.2556553714157113 0.6984335117424741 0.6684541575466264 -0.255661960777685 0.5829995249413289 -0.7711994007579975 0.255661960777685 -0.5829995249413289 0.7711994007579975 0.9426702483678892 -0.02667440003294516 -0.3326579011911561 -0.9426702483678892 0.02667440003294516 0.3326579011911561 0.9426715215503717 -0.02666734987902996 -0.3326548585370981 -0.9426715215503717 0.02666734987902996 0.3326548585370981 -0.9426736657977303 0.02667311100922879 0.3326483202431038 -0.9426761082832638 0.02667120236097125 0.3326415515784829 -0.9426735152706354 0.02666898903716784 0.3326490773037535 0.9426735152706354 -0.02666898903716784 -0.3326490773037535 0.9426761082832638 -0.02667120236097125 -0.3326415515784829 0.9426736657977303 -0.02667311100922879 -0.3326483202431038 -0.05796044901938876 -0.9947380448489566 -0.08447963351924584 0.05796044901938876 0.9947380448489566 0.08447963351924584 -0.942674955676002 0.02666551330546385 0.3326452740403869 0.942674955676002 -0.02666551330546385 -0.3326452740403869 -0.2556428475158868 0.5830371083732807 -0.7711773238196857 0.2556428475158868 -0.5830371083732807 0.7711773238196857 0.9426693620251326 -0.02666865831024714 -0.3326608732073263 -0.9426693620251326 0.02666865831024714 0.3326608732073263 0.9426698305620523 -0.02666526531686748 -0.3326598174918229 -0.9426698305620523 0.02666526531686748 0.3326598174918229 -0.9426728524084502 0.02666545790151182 0.3326512388178031 0.9426728524084502 -0.02666545790151182 -0.3326512388178031 -0.05796238945661559 -0.9947363993485305 -0.0844976758236609 0.05796238945661559 0.9947363993485305 0.0844976758236609 -0.9426738031800903 0.02666987603224691 0.3326481903008177 -0.9426738031800903 0.02666987603224691 0.3326481903008177 0.9426738031800903 -0.02666987603224691 -0.3326481903008177 0.9426738031800903 -0.02666987603224691 -0.3326481903008177 -0.05794658213933268 0.9685775282560405 -0.241867247422607 0.05794658213933268 -0.9685775282560405 0.241867247422607 0.9426711761204227 -0.02666912724864952 -0.3326556949212423 -0.9426711761204227 0.02666912724864952 0.3326556949212423 0.1668609813859133 -0.8255905717489268 0.5390339699223137 -0.1668609813859133 0.8255905717489268 -0.5390339699223137 -0.05793367877946438 0.9685830448084376 -0.2418482461641892 0.05793367877946438 -0.9685830448084376 0.2418482461641892 0.9426686652623827 -0.02666981781125841 -0.332662754678597 -0.9426686652623827 0.02666981781125841 0.332662754678597 -0.9426734123039166 0.0266680332057299 0.3326494457236154 0.9426734123039166 -0.0266680332057299 -0.3326494457236154 -0.9426726990613483 0.02666801150120607 0.3326514686679803 -0.9426738963327904 0.02666980594554911 0.3326479319394343 0.9426738963327904 -0.02666980594554911 -0.3326479319394343 0.9426726990613483 -0.02666801150120607 -0.3326514686679803 0.942670427945132 -0.02667330231420939 -0.3326574803328437 -0.942670427945132 0.02667330231420939 0.3326574803328437 0.1668612428472993 -0.8255908640540989 0.5390334412871441 0.3135988286385334 -0.2701201898894522 0.9103245891936711 -0.3135988286385334 0.2701201898894522 -0.9103245891936711 -0.1668612428472993 0.8255908640540989 -0.5390334412871441 0.1668796441514547 0.9009087185794509 0.4006428149304759 -0.1668796441514547 -0.9009087185794509 -0.4006428149304759 0.1668653875440422 0.9009213997699368 0.4006202364788306 -0.1668653875440422 -0.9009213997699368 -0.4006202364788306 -0.9426723431580075 0.02667011828838743 0.3326523083272915 0.9426723431580075 -0.02667011828838743 -0.3326523083272915 -0.9426718367008743 0.02666889046501486 0.3326538419624301 0.9426718367008743 -0.02666889046501486 -0.3326538419624301 0.3135988204463492 -0.2701250551890383 0.9103231483235926 0.3135955801410653 0.4117195158224673 0.8556546338371001 -0.3135955801410653 -0.4117195158224673 -0.8556546338371001 -0.3135988204463492 0.2701250551890383 -0.9103231483235926 0.3136012111030773 0.4117025885446904 0.8556607148749348 -0.3136012111030773 -0.4117025885446904 -0.8556607148749348 -0.9426721716935939 0.02667156403007993 0.3326526783097842 0.9426721716935939 -0.02667156403007993 -0.3326526783097842</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"72\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 21 28 29 24 23 14 0 30 31 5 15 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 40 28 41 42 29 43 14 30 44 45 31 15 32 46 8 9 47 33 48 26 38 39 27 49 30 50 44 45 51 31 8 52 34 35 53 9 54 36 22 23 37 55 56 22 57 58 23 59 8 46 60 61 47 9 48 62 63 64 65 49 48 38 62 65 39 49 44 50 66 67 51 45 50 68 66 67 69 51 8 60 52 53 61 9 70 54 22 23 55 71 72 22 56 59 23 73 63 74 75 76 77 64 62 74 63 64 77 65 66 68 78 79 69 67 68 75 78 79 76 69 80 22 72 73 23 81 74 78 75 76 79 77</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1386\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1389\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1392\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1390\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1391\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1390\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1393\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1393\">-0.1687647700309753 1.267630815505981 0.05896011367440224 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.2957886457443237 1.262829661369324 0.1834776252508164</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1391\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1394\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1394\">-0.01079581468578262 -0.1023463330354198 -0.9946902424873149 -0.004458380291245571 -0.09581628524271313 -0.9953890507371808 -0.004460959319859007 -0.09581894420101469 -0.995388783227011 0.004460959319859007 0.09581894420101469 0.995388783227011 0.004458380291245571 0.09581628524271313 0.9953890507371808 0.01079581468578262 0.1023463330354198 0.9946902424873149 0.9006312732702783 0.184235557488107 0.3935995032575677 0.9140735431317246 0.1655938409318771 0.3702002668719231 0.9216773985449562 0.1543073910567798 0.3559494375282138 -0.9216773985449562 -0.1543073910567798 -0.3559494375282138 -0.9140735431317246 -0.1655938409318771 -0.3702002668719231 -0.9006312732702783 -0.184235557488107 -0.3935995032575677 0.0008007850258315159 -0.09039150978887539 -0.9959059863769422 -0.0008007850258315159 0.09039150978887539 0.9959059863769422 -0.01075649788807149 0.9995620510894315 0.02756816597223926 -0.006716028346641294 0.999475288903926 0.03168661915794756 -0.006315207491680864 0.999464867974066 0.03209510616776137 0.006315207491680864 -0.999464867974066 -0.03209510616776137 0.006716028346641294 -0.999475288903926 -0.03168661915794756 0.01075649788807149 -0.9995620510894315 -0.02756816597223926 -1.157259076034438e-020 -0.9999999979197582 -6.450181205663836e-005 0.004671067444897015 -0.9999665336340035 0.006716601887925604 0.006204736968704651 -0.9999407596261793 0.008943068677412352 -0.006204736968704651 0.9999407596261793 -0.008943068677412352 -0.004671067444897015 0.9999665336340035 -0.006716601887925604 1.157259076034438e-020 0.9999999979197582 6.450181205663836e-005 0.9338681191719526 0.1348394762169404 0.3312229636480253 -0.9338681191719526 -0.1348394762169404 -0.3312229636480253 0.00897295824350252 -0.9998757315918625 0.01296176662334557 -0.00897295824350252 0.9998757315918625 -0.01296176662334557 -0.9339444544418049 0.1407940027916114 0.3285191087217226 -0.9294909902303715 0.1299033390301004 0.3452124296565728 -0.9399623412950603 0.1572199293011113 0.3029070662392382 0.9399623412950603 -0.1572199293011113 -0.3029070662392382 0.9294909902303715 -0.1299033390301004 -0.3452124296565728 0.9339444544418049 -0.1407940027916114 -0.3285191087217226 1.172950410623281e-017 0.9992574657191585 0.03852943296396869 -1.172950410623281e-017 -0.9992574657191585 -0.03852943296396869 0 0.07991461157145938 0.9968017129085318 0 0.07991461157145938 0.9968017129085318 0 0.07991461157145938 0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0.9218001741158475 0.1128702562766233 0.3708702525790428 0.9218001741158475 -0.1128702562766233 -0.3708702525790428 0 0.07991461157145938 0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 7 26 8 9 27 10 21 28 22 23 29 24 30 31 32 33 34 35 16 15 36 37 18 17 38 39 40 41 42 43 44 31 30 35 34 45 38 46 39 42 47 43</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1392\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1395\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1398\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1396\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1397\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1396\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"76\" source=\"#ID1399\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"228\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1399\">-0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3322747349739075 0.9441547989845276 0.1811926662921906 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3322747349739075 0.9441547989845276 0.1811926662921906 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3322747349739075 1.074667453765869 0.1964417695999146 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3322747349739075 1.074667453765869 0.1964417695999146 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 1.075878262519836 0.1860643476247788</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1397\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"76\" source=\"#ID1400\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"228\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1400\">-0.7660484854148862 -0.0745931702744352 0.6384399556277536 -0.999999999880804 9.129351145749808e-007 -1.541294222891259e-005 -0.999999999994756 1.099899772535657e-006 -3.046035710492433e-006 0.999999999994756 -1.099899772535657e-006 3.046035710492433e-006 0.999999999880804 -9.129351145749808e-007 1.541294222891259e-005 0.7660484854148862 0.0745931702744352 -0.6384399556277536 -1.162476943371287e-005 -0.9932434439682124 -0.1160493898261838 3.427597121637712e-022 -0.9932460392063136 -0.1160271761311556 2.37112327817461e-005 -0.9932400230976206 -0.1160786627887123 -2.37112327817461e-005 0.9932400230976206 0.1160786627887123 -3.427597121637712e-022 0.9932460392063136 0.1160271761311556 1.162476943371287e-005 0.9932434439682124 0.1160493898261838 -0.766051153372814 -0.07459198157284841 0.6384368932801559 0.766051153372814 0.07459198157284841 -0.6384368932801559 -0.7660502336723536 0.0745925132308464 -0.6384379346972096 0.7660502336723536 -0.0745925132308464 0.6384379346972096 1.522862207152876e-005 -0.9932426439875201 -0.1160562360787638 -1.522862207152876e-005 0.9932426439875201 0.1160562360787638 5.612146763604787e-005 -0.9932475702882814 -0.1160140550399245 -5.612146763604787e-005 0.9932475702882814 0.1160140550399245 -3.471916287413821e-018 0.993242000120007 0.1160617473485916 1.585121066035665e-005 0.9932438862712563 0.1160456036802376 8.070319983265988e-006 0.9932398287754397 0.1160803276572105 -8.070319983265988e-006 -0.9932398287754397 -0.1160803276572105 -1.585121066035665e-005 -0.9932438862712563 -0.1160456036802376 3.471916287413821e-018 -0.993242000120007 -0.1160617473485916 -0.1736487374015801 -0.1142829697488939 0.9781541385815481 0.1736487374015801 0.1142829697488939 -0.9781541385815481 2.222021911968254e-005 0.9932461275554015 0.1160264176920982 -2.222021911968254e-005 -0.9932461275554015 -0.1160264176920982 -0.7660486120073445 0.07459292706600855 -0.6384398321481405 0.7660486120073445 -0.07459292706600855 0.6384398321481405 -4.106049424604954e-005 -0.9932435989717825 -0.1160480564922013 4.106049424604954e-005 0.9932435989717825 0.1160480564922013 3.396163110747765e-005 -0.9932414115337033 -0.1160667793175307 -3.396163110747765e-005 0.9932414115337033 0.1160667793175307 6.647656232279825e-006 0.9932389066328453 0.1160882177768221 -6.647656232279825e-006 -0.9932389066328453 -0.1160882177768221 -0.1736515678230348 -0.1142833672265894 0.9781535896616412 0.1736515678230348 0.1142833672265894 -0.9781535896616412 2.504259532865034e-005 0.9932488028377058 0.1160035130258264 -2.504259532865034e-005 -0.9932488028377058 -0.1160035130258264 -0.1736579387619272 0.114283511484801 -0.9781524417531564 0.1736579387619272 -0.114283511484801 0.9781524417531564 -6.420171219164083e-005 -0.9932449077149694 -0.1160368440471479 6.420171219164083e-005 0.9932449077149694 0.1160368440471479 0.4999990993658716 -0.1004992050061297 0.8601748720036253 -0.4999990993658716 0.1004992050061297 -0.8601748720036253 -0.1736658952266699 0.1142845472302315 -0.9781509081422458 0.1736658952266699 -0.1142845472302315 0.9781509081422458 -5.946023309051964e-005 -0.9932419979460728 -0.1160617507216493 5.946023309051964e-005 0.9932419979460728 0.1160617507216493 -4.466557373368193e-006 0.9932389923049177 0.116087484877405 4.466557373368193e-006 -0.9932389923049177 -0.116087484877405 2.894799536756943e-005 0.993246845080762 0.1160202736556259 -2.894799536756943e-005 -0.993246845080762 -0.1160202736556259 -6.892321585256021e-005 -0.9932427930824257 -0.1160549406075073 6.892321585256021e-005 0.9932427930824257 0.1160549406075073 0.9396912244112444 -0.03969080372930595 0.3397131773479175 0.4999973724122661 -0.1004992598769736 0.8601758694272993 -0.4999973724122661 0.1004992598769736 -0.8601758694272993 -0.9396912244112444 0.03969080372930595 -0.3397131773479175 0.4999924063535025 0.100500966161157 -0.8601785566901258 -0.4999924063535025 -0.100500966161157 0.8601785566901258 0.5000055265544119 0.1005000820859015 -0.8601710335251777 -0.5000055265544119 -0.1005000820859015 0.8601710335251777 1.351536742928827e-005 0.9932451346926782 0.1160349181352688 -1.351536742928827e-005 -0.9932451346926782 -0.1160349181352688 4.268433620980341e-005 0.9932483331576502 0.1160075293142519 -4.268433620980341e-005 -0.9932483331576502 -0.1160075293142519 0.9396938380138644 0.03969024141156683 -0.3397060133931466 0.9396891726750086 -0.03969085591167384 0.3397188465692719 -0.9396891726750086 0.03969085591167384 -0.3397188465692719 -0.9396938380138644 -0.03969024141156683 0.3397060133931466 0.9396930255132888 0.03969063850974941 -0.339708214525893 -0.9396930255132888 -0.03969063850974941 0.339708214525893</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"72\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 6 8 16 17 9 11 6 18 7 10 19 11 20 21 22 23 24 25 0 12 26 27 13 5 20 28 21 24 29 25 1 30 14 15 31 4 32 6 16 17 11 33 34 18 6 11 19 35 22 21 36 37 24 23 26 12 38 39 13 27 28 40 21 24 41 29 14 30 42 43 31 15 44 6 32 33 11 45 26 38 46 47 39 27 42 30 48 49 31 43 50 34 6 11 35 51 21 52 36 37 53 24 40 54 21 24 55 41 56 6 44 45 11 57 58 46 59 60 47 61 46 38 59 60 39 47 42 48 62 63 49 43 62 48 64 65 49 63 56 50 6 11 51 57 21 66 52 53 67 24 54 68 21 24 69 55 70 58 71 72 61 73 58 59 71 72 60 61 64 74 62 63 75 65 64 70 74 75 73 65 21 68 66 67 69 24 70 71 74 75 72 73</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1398\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1401\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1404\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1402\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1403\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1402\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1405\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1405\">-0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8554512858390808 0.2614400088787079</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1403\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1406\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1406\">0 -0.4786973748340194 -0.877979967497561 0 -0.4786973748340194 -0.877979967497561 0 -0.4786973748340194 -0.877979967497561 -0 0.4786973748340194 0.877979967497561 -0 0.4786973748340194 0.877979967497561 -0 0.4786973748340194 0.877979967497561 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 0 -0.9968021350235882 0.07990934621442103 0 -0.9968021350235882 0.07990934621442103 0 -0.9968021350235882 0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 1 0 0 -1 -0 -0 0 -0.9968021350235882 0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.9968010375962467 -0.07992303452100592 0 0.9968010375962467 -0.07992303452100592 0 0.9968010375962467 -0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 0 0.4786932702954678 0.877982205385639 0 0.4786932702954678 0.877982205385639 0 0.4786932702954678 0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -1 0 0 1 -0 -0 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 25 32 26 27 33 28 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 34 36 37 39 53 54 55 56 57 58 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1404\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1407\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1410\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1408\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1409\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1408\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"44\" source=\"#ID1411\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1411\">0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.6798586249351502 0.2174845784902573 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.8228713870048523 0.2210390418767929 0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.1889988780021668 0.6943401694297791 0.2454363852739334 -0.1889988780021668 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.02375267259776592 0.8228713870048523 0.2210390418767929 0.02375267259776592 0.8228713870048523 0.2210390418767929 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.6798586249351502 0.2174845784902573 0.02375267259776592 0.8228713870048523 0.2210390418767929 0.02375267259776592 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.6943401694297791 0.2454363852739334 -0.1889988780021668 0.6943401694297791 0.2454363852739334</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1409\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"44\" source=\"#ID1412\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1412\">0.001387337141682634 -0.2220524090996359 -0.9750337444974421 0.001387337141682634 -0.2220524090996359 -0.9750337444974421 0.001387337141682634 -0.2220524090996359 -0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 0.5871770811767491 0.1797423846289223 0.7892501191058904 0.3330322933170721 0.1873578318890383 0.9241139185391649 0.644964467798049 0.1429182379491617 0.7507297866339702 -0.644964467798049 -0.1429182379491617 -0.7507297866339702 -0.3330322933170721 -0.1873578318890383 -0.9241139185391649 -0.5871770811767491 -0.1797423846289223 -0.7892501191058904 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 3.614714750383517e-005 0.9997049233532446 -0.02429125185467766 6.972200714376944e-006 0.9996998649392079 -0.02449857122197072 3.414267295072655e-005 0.9997045772159082 -0.02430549583613239 -3.414267295072655e-005 -0.9997045772159082 0.02430549583613239 -6.972200714376944e-006 -0.9996998649392079 0.02449857122197072 -3.614714750383517e-005 -0.9997049233532446 0.02429125185467766 -1.667872850933478e-017 -0.8849633272774763 0.4656607234607388 -0.0001258651819107453 -0.8854385084749843 0.4647565296663953 -0.0006245036285647431 -0.8873118148838094 0.4611695492579906 0.0006245036285647431 0.8873118148838094 -0.4611695492579906 0.0001258651819107453 0.8854385084749843 -0.4647565296663953 1.667872850933478e-017 0.8849633272774763 -0.4656607234607388 0.3689954470602589 0.1683477590433835 0.9140576524890925 -0.3689954470602589 -0.1683477590433835 -0.9140576524890925 -0.0006556404756979402 -0.8874283031096446 0.4609453080089909 0.0006556404756979402 0.8874283031096446 -0.4609453080089909 -0.5324369513931456 0.1663152504389824 0.829969957445805 -0.5742615086464369 0.1817890206747265 0.7982333441101306 -0.3017067920176465 0.1897741692638221 0.9343226296791952 0.3017067920176465 -0.1897741692638221 -0.9343226296791952 0.5742615086464369 -0.1817890206747265 -0.7982333441101306 0.5324369513931456 -0.1663152504389824 -0.829969957445805 6.960335564674304e-019 0.9996986495932743 -0.02454811604551317 -6.960335564674304e-019 -0.9996986495932743 0.02454811604551317 -0.2795365000399969 0.1790523481666212 0.9432918963721716 0.2795365000399969 -0.1790523481666212 -0.9432918963721716</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 7 30 8 9 31 10 25 32 26 27 33 28 34 35 36 37 38 39 20 19 40 41 22 21 7 42 30 31 43 10 42 34 36 37 39 43 42 36 30 31 37 43</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1410\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1413\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1416\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1414\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1415\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1414\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1417\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"168\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1417\">0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.01764903031289578 0.6965709924697876 0.2436218112707138 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.0158530380576849 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.7263770699501038 0.3404266238212585</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1415\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1418\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"168\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1418\">-9.169722976373865e-018 -0.1821198965755864 -0.983276331084654 -0.005848219727591161 -0.1918366380413361 -0.9814094469848022 -0.003043484746153533 -0.1871796094987132 -0.9823209918293049 0.003043484746153533 0.1871796094987132 0.9823209918293049 0.005848219727591161 0.1918366380413361 0.9814094469848022 9.169722976373865e-018 0.1821198965755864 0.983276331084654 0.9814788691163255 0.04935029315769431 0.1851047758524577 0.9843960977963142 0.03227702870119385 0.1729812592786051 0.9845849359046324 0.03107424619155901 0.1721246502198257 -0.9845849359046324 -0.03107424619155901 -0.1721246502198257 -0.9843960977963142 -0.03227702870119385 -0.1729812592786051 -0.9814788691163255 -0.04935029315769431 -0.1851047758524577 -0.008858386551980338 -0.1968286115952417 -0.9803978920036421 0.008858386551980338 0.1968286115952417 0.9803978920036421 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 1.572333825322655e-017 -0.9557235430893282 0.2942660517028448 0.0006579533516455556 -0.9553377050857177 0.2955155433119237 0.001385184622082391 -0.9549088580608247 0.2968958640003838 -0.001385184622082391 0.9549088580608247 -0.2968958640003838 -0.0006579533516455556 0.9553377050857177 -0.2955155433119237 -1.572333825322655e-017 0.9557235430893282 -0.2942660517028448 0.9873699300492289 0.01134341927737611 0.1580251501302195 -0.9873699300492289 -0.01134341927737611 -0.1580251501302195 0.001969717348993657 -0.954562346254986 0.2980047773538896 -0.001969717348993657 0.954562346254986 -0.2980047773538896 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.9968014312424773 -0.07991812480876104 0 0.9968014312424773 -0.07991812480876104 0 0.9968014312424773 -0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 0 0.1862758884093816 0.9824974775526376 0 0.1862758884093816 0.9824974775526376 0 0.1862758884093816 0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -1 0 0 1 -0 -0 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 8 7 26 27 10 9 21 28 22 23 29 24 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 30 32 33 35 49 50 51 52 53 54 55</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1416\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1419\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1422\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1420\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1421\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1420\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"52\" source=\"#ID1423\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"156\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1423\">0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.2837311029434204 1.419497728347778 -0.1022137701511383 0.2837311029434204 1.419497728347778 -0.1022137701511383 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1487234085798264 1.461263656616211 -0.04204044118523598 0.1487234085798264 1.461263656616211 -0.04204044118523598 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.2972021996974945 1.449135422706604 -0.1123467683792114 0.2972021996974945 1.449135422706604 -0.1123467683792114 0.3032180666923523 1.409106135368347 -0.07835546880960465 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.3032180666923523 1.409106135368347 -0.07835546880960465 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.316688597202301 1.438741087913513 -0.08848993480205536 0.316688597202301 1.438741087913513 -0.08848993480205536 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1421\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"52\" source=\"#ID1424\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"156\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1424\">-0.2117507404386459 0.321455254932216 -0.9229453629550066 -0.2600110696684296 0.01043847675148996 -0.9655492125484789 0.007326895033529043 -0.6541949177868747 -0.756290503808551 -0.007326895033529043 0.6541949177868747 0.756290503808551 0.2600110696684296 -0.01043847675148996 0.9655492125484789 0.2117507404386459 -0.321455254932216 0.9229453629550066 -0.5340335661942859 0.5457193397975845 0.6457542507399403 -0.8707103579114028 0.4699527830000934 0.1449408651011291 -0.7822641140321018 0.4093452656265391 0.4695735399345974 0.7822641140321018 -0.4093452656265391 -0.4695735399345974 0.8707103579114028 -0.4699527830000934 -0.1449408651011291 0.5340335661942859 -0.5457193397975845 -0.6457542507399403 0.1465548072432481 0.04878246053037574 -0.9879989676201573 -0.1465548072432481 -0.04878246053037574 0.9879989676201573 0.3202308478076849 -0.9465922625117664 -0.03762037566567392 -0.1790162912968978 -0.9771273884804481 -0.1147834227215927 0.1790162912968978 0.9771273884804481 0.1147834227215927 -0.3202308478076849 0.9465922625117664 0.03762037566567392 -0.9573953783632936 0.2484317593297414 0.1472268672659153 0.9573953783632936 -0.2484317593297414 -0.1472268672659153 -0.6678373175942008 0.2933145627367843 0.6840759347580586 0.6678373175942008 -0.2933145627367843 -0.6840759347580586 0.5620522173348252 -0.4846545636370911 -0.6702292584890242 -0.5620522173348252 0.4846545636370911 0.6702292584890242 -0.1052168161437504 0.6907663114035757 -0.715381943181732 0.1052168161437504 -0.6907663114035757 0.715381943181732 -0.0793312004268637 -0.9684364386380066 0.2362994391803917 0.0793312004268637 0.9684364386380066 -0.2362994391803917 -0.8727059715511012 0.2560767326326131 0.4157030120449623 0.8727059715511012 -0.2560767326326131 -0.4157030120449623 -0.8484371084385745 0.2185231540830602 0.482081014098234 0.8484371084385745 -0.2185231540830602 -0.482081014098234 0.5620589706866968 -0.4846631741876052 -0.6702173685133847 -0.5620589706866968 0.4846631741876052 0.6702173685133847 -0.1052741459759133 0.6906784752780507 -0.7154583132346911 0.1052741459759133 -0.6906784752780507 0.7154583132346911 0.5620476210655032 -0.4846406454961437 -0.6702431770541867 -0.5620476210655032 0.4846406454961437 0.6702431770541867 0.2437385669028079 -0.08741448486360912 0.9658934821398245 -0.2437385669028079 0.08741448486360912 -0.9658934821398245 0.2162155226341925 0.8876420744044321 0.406623161562422 0.1694938574646845 0.9428451667909947 0.2869056007480554 0.2541860079556013 0.660310801664626 0.7066676153359613 -0.2541860079556013 -0.660310801664626 -0.7066676153359613 -0.1694938574646845 -0.9428451667909947 -0.2869056007480554 -0.2162155226341925 -0.8876420744044321 -0.406623161562422 0.2050441197686757 -0.270224688595742 0.9407101182732243 -0.2050441197686757 0.270224688595742 -0.9407101182732243 0.5620695889105933 -0.4846418345315089 -0.6702238950110704 -0.5620695889105933 0.4846418345315089 0.6702238950110704 0.2529610287947978 0.6542028453927553 0.7127617799735758 -0.2529610287947978 -0.6542028453927553 -0.7127617799735758</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 8 7 18 19 10 9 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 28 8 18 19 9 29 30 20 8 9 21 31 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 40 41 42 43 44 45 26 46 38 39 47 27 32 22 48 49 23 33 22 36 48 49 37 23 46 42 50 51 43 47 41 50 42 43 51 44 38 46 50 51 47 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1422\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1425\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1428\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1426\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1427\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1426\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1429\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1429\">0.1553212702274323 1.314650535583496 -0.05614136904478073 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3060109317302704 1.261957168579102 -0.09241525828838348 0.3060109317302704 1.261957168579102 -0.09241525828838348 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1553212702274323 1.314650535583496 -0.05614136904478073 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1456548571586609 1.300154447555542 -0.03195736929774284 0.1456548571586609 1.300154447555542 -0.03195736929774284 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3194818496704102 1.291594505310059 -0.1025481522083283 0.3194818496704102 1.291594505310059 -0.1025481522083283 0.3254974186420441 1.251564621925354 -0.06855690479278565 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3254974186420441 1.251564621925354 -0.06855690479278565 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.3389680683612824 1.281198859214783 -0.07869188487529755 0.3389680683612824 1.281198859214783 -0.07869188487529755 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1427\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1430\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1430\">-0.5270872587659297 0.4829598615392093 -0.6992344340696084 -0.2373091719483964 -0.009947946585583324 -0.97138323810322 0.0302289803388917 -0.6523592771410928 -0.7573067953449394 -0.0302289803388917 0.6523592771410928 0.7573067953449394 0.2373091719483964 0.009947946585583324 0.97138323810322 0.5270872587659297 -0.4829598615392093 0.6992344340696084 -0.5821281597074549 0.5128590065675404 0.6309535997663915 -0.7838480433492671 0.4685158370778919 0.4075231960818029 0.7838480433492671 -0.4685158370778919 -0.4075231960818029 0.5821281597074549 -0.5128590065675404 -0.6309535997663915 0.1563350658793139 0.05170904550473698 -0.9863495941041895 -0.1563350658793139 -0.05170904550473698 0.9863495941041895 0.3285388353453203 -0.9437967567357263 -0.03619275680388343 -0.1506281647881631 -0.9803261545184075 -0.1275609138400202 0.1506281647881631 0.9803261545184075 0.1275609138400202 -0.3285388353453203 0.9437967567357263 0.03619275680388343 -0.6094776194613598 0.704008224981229 -0.3645674841980472 0.6094776194613598 -0.704008224981229 0.3645674841980472 -0.8193965941596137 0.04187406713262325 0.5716955343374633 0.8193965941596137 -0.04187406713262325 -0.5716955343374633 0.5620468045841043 -0.4846723610466129 -0.6702209276755684 -0.5620468045841043 0.4846723610466129 0.6702209276755684 -0.04262652272856061 -0.9574414427167757 0.2854625427766147 0.04262652272856061 0.9574414427167757 -0.2854625427766147 -0.8189515769899407 0.46942592209402 0.3300872887765723 0.8189515769899407 -0.46942592209402 -0.3300872887765723 -0.943859419131144 0.09540917204895222 0.3162696425620914 0.943859419131144 -0.09540917204895222 -0.3162696425620914 0.5620475949657969 -0.4846744725247572 -0.6702187379326335 -0.5620475949657969 0.4846744725247572 0.6702187379326335 -0.1052551056785802 0.6906696782463675 -0.7154696068175436 0.1052551056785802 -0.6906696782463675 0.7154696068175436 0.5620622113175559 -0.4846776506083926 -0.6702041820292888 -0.5620622113175559 0.4846776506083926 0.6702041820292888 0.2169583513266659 -0.05765775487784369 0.9744766067443905 -0.2169583513266659 0.05765775487784369 -0.9744766067443905 0.2033241252333373 0.8550932664263433 0.4769431892903231 0.1441081999331713 0.9399395443921297 0.3094292804502138 0.232953018600208 0.5645718045526801 0.7918279918196762 -0.232953018600208 -0.5645718045526801 -0.7918279918196762 -0.1441081999331713 -0.9399395443921297 -0.3094292804502138 -0.2033241252333373 -0.8550932664263433 -0.4769431892903231 0.189215187049918 -0.2702283709857141 0.9440202542869892 -0.189215187049918 0.2702283709857141 -0.9440202542869892 0.5620737986969204 -0.484671044609835 -0.6701992415209267 -0.5620737986969204 0.484671044609835 0.6701992415209267 0.2152998076267679 0.6552577786690892 0.7240740544512888 -0.2152998076267679 -0.6552577786690892 -0.7240740544512888</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 7 8 5 9 0 2 10 11 3 5 12 2 13 14 3 15 7 0 16 17 5 8 6 7 18 19 8 9 10 2 20 21 3 11 16 0 10 11 5 17 2 12 20 21 15 3 12 13 22 23 14 15 24 7 16 17 8 25 26 18 7 8 19 27 10 20 28 29 21 11 16 10 30 31 11 17 20 12 32 33 15 21 12 22 34 35 23 15 26 7 24 25 8 27 36 37 38 39 40 41 22 42 34 35 43 23 28 20 44 45 21 29 20 32 44 45 33 21 42 38 46 47 39 43 37 46 38 39 47 40 34 42 46 47 43 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1428\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1431\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1434\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1432\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1433\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1432\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"46\" source=\"#ID1435\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"138\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1435\">0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.3287272155284882 1.101558089256287 -0.07955601811408997 0.3287272155284882 1.101558089256287 -0.07955601811408997 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.1151409223675728 1.132263422012329 -0.01849719509482384 0.1151409223675728 1.132263422012329 -0.01849719509482384 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.342198371887207 1.131192564964294 -0.08968864381313324 0.342198371887207 1.131192564964294 -0.08968864381313324 0.3482146561145783 1.091163873672485 -0.05569736659526825 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.3482146561145783 1.091163873672485 -0.05569736659526825 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.105472669005394 1.10316526889801 -0.008405376225709915 0.105472669005394 1.10316526889801 -0.008405376225709915 0.3616852462291718 1.12079918384552 -0.06583249568939209 0.3616852462291718 1.12079918384552 -0.06583249568939209 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.105472669005394 1.10316526889801 -0.008405376225709915 0.105472669005394 1.10316526889801 -0.008405376225709915 0.1518978178501129 1.152041435241699 -0.004814382642507553 0.1518978178501129 1.152041435241699 -0.004814382642507553 0.1460323482751846 1.123474359512329 0.005232919007539749 0.1460323482751846 1.123474359512329 0.005232919007539749 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1433\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"46\" source=\"#ID1436\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"138\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1436\">-0.1526069341708608 0.2014247147177761 -0.9675428713725471 -0.154409281518514 0.06995639787526577 -0.9855272072232476 0.09500311225222836 -0.6364217107878273 -0.7654683629649796 -0.09500311225222836 0.6364217107878273 0.7654683629649796 0.154409281518514 -0.06995639787526577 0.9855272072232476 0.1526069341708608 -0.2014247147177761 0.9675428713725471 -0.2900583322876976 0.6155294324973895 0.7327957980228336 -0.4305008441564028 0.7745127584729289 0.4634641411622686 -0.4376760788393953 0.6090235893184742 0.6614604430088121 0.4376760788393953 -0.6090235893184742 -0.6614604430088121 0.4305008441564028 -0.7745127584729289 -0.4634641411622686 0.2900583322876976 -0.6155294324973895 -0.7327957980228336 0.177896048170807 0.05895478953893228 -0.9822816952563201 -0.177896048170807 -0.05895478953893228 0.9822816952563201 0.3543751582787857 -0.934605232097684 -0.03051732836471479 -0.04369649900807408 -0.9987996309860718 -0.02213398103650087 0.04369649900807408 0.9987996309860718 0.02213398103650087 -0.3543751582787857 0.934605232097684 0.03051732836471479 -0.2117804347327577 0.8531466670474889 0.4767492128679035 0.2117804347327577 -0.8531466670474889 -0.4767492128679035 -0.3287200085374632 0.4051046469262522 0.8531315144957938 0.3287200085374632 -0.4051046469262522 -0.8531315144957938 0.5620632890462979 -0.4846637448481013 -0.6702133343468127 -0.5620632890462979 0.4846637448481013 0.6702133343468127 -0.1052500340877712 0.6906722531251714 -0.7154678672641575 0.1052500340877712 -0.6906722531251714 0.7154678672641575 -0.008154407886818508 -0.97842746915962 0.2064296326255428 0.008154407886818508 0.97842746915962 -0.2064296326255428 -0.1491645848139461 0.6469968928687555 0.7477599529631548 0.1491645848139461 -0.6469968928687555 -0.7477599529631548 -0.1013988600854753 -0.1025717765919676 0.9895439868040904 0.1013988600854753 0.1025717765919676 -0.9895439868040904 0.5620712952768785 -0.4846411792026707 -0.6702229378697933 -0.5620712952768785 0.4846411792026707 0.6702229378697933 -0.1052822686682469 0.6906021664222173 -0.7155307761634067 0.1052822686682469 -0.6906021664222173 0.7155307761634067 0.562089467608081 -0.484678935656285 -0.6701803934278854 -0.562089467608081 0.484678935656285 0.6701803934278854 0.1948791177058165 -0.03431924276733405 0.9802266671837078 -0.1948791177058165 0.03431924276733405 -0.9802266671837078 0.1115421042893579 0.9377788356412317 0.3288300691756725 -0.1115421042893579 -0.9377788356412317 -0.3288300691756725 0.5620918735784156 -0.4846569278382608 -0.6701942911988175 -0.5620918735784156 0.4846569278382608 0.6701942911988175 0.1788184282318766 0.6574281446431123 0.7319919428216382 -0.1788184282318766 -0.6574281446431123 -0.7319919428216382</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 7 18 8 9 19 10 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 8 18 28 29 19 9 20 8 30 31 9 21 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 18 40 28 29 41 19 26 30 38 39 31 27 32 22 42 43 23 33 22 36 42 43 37 23 30 28 44 45 29 31 40 44 28 29 45 41 38 30 44 45 31 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1434\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1437\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1440\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1438\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1439\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1438\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1441\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"162\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1441\">0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.2623249590396881 1.570870399475098 -0.1115184426307678 0.2623249590396881 1.570870399475098 -0.1115184426307678 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1539330631494522 1.616379618644714 -0.05164474248886108 0.1539330631494522 1.616379618644714 -0.05164474248886108 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.275795191526413 1.600508689880371 -0.1216493099927902 0.275795191526413 1.600508689880371 -0.1216493099927902 0.2818127274513245 1.560474872589111 -0.08765904605388641 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.2818127274513245 1.560474872589111 -0.08765904605388641 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.2952823638916016 1.590112090110779 -0.09779312461614609 0.2952823638916016 1.590112090110779 -0.09779312461614609 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.160272628068924 1.631876587867737 -0.03761931881308556 0.160272628068924 1.631876587867737 -0.03761931881308556 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.160272628068924 1.631876587867737 -0.03761931881308556 0.160272628068924 1.631876587867737 -0.03761931881308556 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1439\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1442\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"162\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1442\">-0.2612649648831572 0.2154767763815477 -0.9409093351459635 -0.3120238526800682 -0.07529301042391109 -0.9470860984831274 -0.01732523752695652 -0.6643846957284765 -0.7471899438739886 0.01732523752695652 0.6643846957284765 0.7471899438739886 0.3120238526800682 0.07529301042391109 0.9470860984831274 0.2612649648831572 -0.2154767763815477 0.9409093351459635 -0.5116776227184808 0.4929719940946034 0.7036793470378068 -0.61982026767674 0.4991510477646793 0.6055337045058326 -0.8170728539503203 0.3730756256143977 0.439552646346151 0.8170728539503203 -0.3730756256143977 -0.439552646346151 0.61982026767674 -0.4991510477646793 -0.6055337045058326 0.5116776227184808 -0.4929719940946034 -0.7036793470378068 0.1410729471083749 0.04728219640286073 -0.9888694643366631 -0.1410729471083749 -0.04728219640286073 0.9888694643366631 0.3067464724749431 -0.9509680058590948 -0.03957844686891629 -0.222264189367348 -0.9710011656212904 -0.08806455863155831 0.222264189367348 0.9710011656212904 0.08806455863155831 -0.3067464724749431 0.9509680058590948 0.03957844686891629 -0.8461142536324233 0.3228838989908336 0.4240715241236134 0.8461142536324233 -0.3228838989908336 -0.4240715241236134 -0.7522535916241838 0.3506204932206724 0.5578349250649412 0.7522535916241838 -0.3506204932206724 -0.5578349250649412 0.5620416863427057 -0.4846401836812222 -0.6702484876331157 -0.5620416863427057 0.4846401836812222 0.6702484876331157 -0.1052279702985872 0.6907230101808186 -0.7154221113954954 0.1052279702985872 -0.6907230101808186 0.7154221113954954 -0.08911847962830034 -0.9484448676391016 0.3041549434709021 0.08911847962830034 0.9484448676391016 -0.3041549434709021 -0.9555879694916472 0.2506915569620883 0.1549366832959687 0.9555879694916472 -0.2506915569620883 -0.1549366832959687 -0.9556014649654541 0.2506460825295659 0.1549270198140411 0.9556014649654541 -0.2506460825295659 -0.1549270198140411 0.5620181180033185 -0.4846701760122687 -0.6702465632289694 -0.5620181180033185 0.4846701760122687 0.6702465632289694 -0.1052660889666847 0.6906765086185261 -0.7154613972508797 0.1052660889666847 -0.6906765086185261 0.7154613972508797 0.5620558193373243 -0.4846561231327442 -0.6702251101376221 -0.5620558193373243 0.4846561231327442 0.6702251101376221 0.2614239168632214 -0.107974508427586 0.9591658048646816 -0.2614239168632214 0.107974508427586 -0.9591658048646816 0.2835840095916742 0.8451598330638175 0.4530838400113706 0.2044205305712835 0.9410969837991859 0.2693486843573391 0.3059738327077238 0.5779843669752629 0.7565144316074548 -0.3059738327077238 -0.5779843669752629 -0.7565144316074548 -0.2044205305712835 -0.9410969837991859 -0.2693486843573391 -0.2835840095916742 -0.8451598330638175 -0.4530838400113706 0.2225006061998179 -0.2761711370454932 0.9349989215521658 -0.2225006061998179 0.2761711370454932 -0.9349989215521658 0.562042227331252 -0.4846734199866424 -0.6702240003573262 -0.562042227331252 0.4846734199866424 0.6702240003573262 0.5620425693420601 -0.4846750527563176 -0.6702225328076016 -0.5620425693420601 0.4846750527563176 0.6702225328076016 0.2889663716664621 0.6493798714439022 0.7034232144373833 -0.2889663716664621 -0.6493798714439022 -0.7034232144373833</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 8 7 18 19 10 9 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 28 8 18 19 9 29 30 20 8 9 21 31 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 40 41 42 43 44 45 26 46 38 39 47 27 32 22 48 49 23 33 22 36 50 51 37 23 46 42 52 53 43 47 41 52 42 43 53 44 38 46 52 53 47 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1440\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1443\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1446\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1444\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1445\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1444\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"70\" source=\"#ID1447\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"210\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1447\">0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3140751421451569 1.607973217964172 -0.1055402606725693 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3140751421451569 1.607973217964172 -0.1055402606725693 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.339216023683548 1.609411358833313 -0.1320241838693619 0.339216023683548 1.609411358833313 -0.1320241838693619 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4216348826885223 0.8485112190246582 -0.04465353116393089 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4216348826885223 0.8485112190246582 -0.04465353116393089 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.339216023683548 1.609411358833313 -0.1320241838693619 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.339216023683548 1.609411358833313 -0.1320241838693619 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2889344394207001 1.602334499359131 -0.131456732749939 0.2889344394207001 1.602334499359131 -0.131456732749939 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2889344394207001 1.602334499359131 -0.131456732749939 0.2889344394207001 1.602334499359131 -0.131456732749939 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1445\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"70\" source=\"#ID1448\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"210\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1448\">0.7121836708119679 0.1557404146299578 0.6844993369461211 0.3868375999335935 0.1280001794504949 0.9132210166976327 0.7121878203325724 0.1557409396922177 0.6844949001079004 -0.7121878203325724 -0.1557409396922177 -0.6844949001079004 -0.3868375999335935 -0.1280001794504949 -0.9132210166976327 -0.7121836708119679 -0.1557404146299578 -0.6844993369461211 -0.1397991539385844 0.9870137805752409 -0.07912012078242896 -0.1397854057744817 0.9870158887178813 -0.07911811266021804 -0.1397921558860157 0.9870139522999297 -0.07913034258747995 0.1397921558860157 -0.9870139522999297 0.07913034258747995 0.1397854057744817 -0.9870158887178813 0.07911811266021804 0.1397991539385844 -0.9870137805752409 0.07912012078242896 0.7121835415319054 0.1557403982713827 0.6844994751768214 0.3868305965648333 0.1279992383157068 0.9132241151830661 -0.3868305965648333 -0.1279992383157068 -0.9132241151830661 -0.7121835415319054 -0.1557403982713827 -0.6844994751768214 0.3868164037145685 -0.0191313024773292 -0.9219582762158214 0.7121601037797707 0.0446929504145383 -0.7005929822426357 0.7121674042622895 0.04469407932465986 -0.7005854891300802 -0.7121674042622895 -0.04469407932465986 0.7005854891300802 -0.7121601037797707 -0.0446929504145383 0.7005929822426357 -0.3868164037145685 0.0191313024773292 0.9219582762158214 -0.1397999796143324 0.9870142551838378 -0.07911274084321916 0.1397999796143324 -0.9870142551838378 0.07911274084321916 -0.1397936820510165 0.9870155914581198 -0.07910719737923563 0.1397936820510165 -0.9870155914581198 0.07910719737923563 0.1398000093145633 -0.9870133953731055 0.07912341467417676 0.1397920699189058 -0.9870142472339551 0.07912681558723841 0.1397945789315667 -0.9870143200804079 0.07912147406081613 -0.1397945789315667 0.9870143200804079 -0.07912147406081613 -0.1397920699189058 0.9870142472339551 -0.07912681558723841 -0.1398000093145633 0.9870133953731055 -0.07912341467417676 -0.3868504373152667 0.01912515861491171 0.9219441238258104 0.3868504373152667 -0.01912515861491171 -0.9219441238258104 0.139796916829866 -0.9870134878570978 0.07912772480635578 -0.139796916829866 0.9870134878570978 -0.07912772480635578 0.3868216047912728 -0.01913054427063408 -0.9219561097702068 0.7121676317021652 0.04469411449494164 -0.7005852556864456 -0.7121676317021652 -0.04469411449494164 0.7005852556864456 -0.3868216047912728 0.01913054427063408 0.9219561097702068 -0.139797317906358 0.9870138655822434 -0.07912230440644323 0.139797317906358 -0.9870138655822434 0.07912230440644323 -0.1398015061678415 0.9870126308571869 -0.07913030646710245 0.1398015061678415 -0.9870126308571869 0.07913030646710245 0.1397897769542053 -0.987013750024252 0.07913706794010708 -0.1397897769542053 0.987013750024252 -0.07913706794010708 -0.3868511661520297 0.01912511454953269 0.9219438189175532 0.3868511661520297 -0.01912511454953269 -0.9219438189175532 0.1397921147097734 -0.9870147120373068 0.07912093835946439 -0.1397921147097734 0.9870147120373068 -0.07912093835946439 -0.3868356486941172 -0.1280000544911218 -0.9132218607488934 0.3868356486941172 0.1280000544911218 0.9132218607488934 -0.7122127191321335 -0.0447050027962357 0.7005387251475835 0.7122127191321335 0.0447050027962357 -0.7005387251475835 -0.3868353003950386 -0.1279997158045518 -0.9132220557576531 0.3868353003950386 0.1279997158045518 0.9132220557576531 0.1397926979644894 -0.9870138933571084 0.07913012015567621 -0.1397926979644894 0.9870138933571084 -0.07913012015567621 0.1397926979655048 -0.9870146754240228 0.07912036459178133 -0.1397926979655048 0.9870146754240228 -0.07912036459178133 -0.7121911290598167 -0.1557408636965086 -0.6844914747924689 -0.7121862825202999 -0.1557409163686991 -0.6844965054392562 0.7121862825202999 0.1557409163686991 0.6844965054392562 0.7121911290598167 0.1557408636965086 0.6844914747924689 -0.7122094375937212 -0.04470403383812917 0.7005421231882025 -0.7122126199852392 -0.04470497352052413 0.7005388278149118 0.7122126199852392 0.04470497352052413 -0.7005388278149118 0.7122094375937212 0.04470403383812917 -0.7005421231882025 -0.7121861315320546 -0.1557409180095111 -0.6844966621620312 0.7121861315320546 0.1557409180095111 0.6844966621620312</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 1 4 14 15 16 17 18 19 20 21 6 8 22 23 9 11 24 7 6 11 10 25 26 27 28 29 30 31 32 1 13 14 4 33 26 34 27 30 35 31 36 16 37 38 21 39 40 6 22 23 11 41 42 24 6 11 25 43 28 27 44 45 30 29 46 32 13 14 33 47 34 48 27 30 49 35 36 50 16 21 51 39 42 6 40 41 11 43 46 52 32 33 53 47 36 54 50 51 55 39 27 56 44 45 57 30 27 58 56 57 59 30 60 61 54 55 62 63 46 64 65 66 67 47 68 50 54 55 51 69</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1446\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1449\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1452\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1450\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1451\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1450\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"76\" source=\"#ID1453\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"228\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1453\">0.4633594453334808 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.988379180431366 0.1358994990587235 0.4633594453334808 0.988379180431366 0.1358994990587235 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 1.00645387172699 0.1104805320501328 0.3092793822288513 1.00645387172699 0.1104805320501328 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.988379180431366 0.1358994990587235 0.3092793822288513 0.988379180431366 0.1358994990587235 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.3092793822288513 1.00645387172699 0.1104805320501328 0.3092793822288513 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.018564820289612 0.1280457824468613 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 1.016549944877625 0.1492861360311508 0.3092793822288513 1.016549944877625 0.1492861360311508 0.4633594453334808 1.001353979110718 0.1642626523971558 0.4633594453334808 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 1.016549944877625 0.1492861360311508 0.3092793822288513 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.4633594453334808 1.001353979110718 0.1642626523971558 0.4633594453334808 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 1.001353979110718 0.1642626523971558</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1451\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"76\" source=\"#ID1454\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"228\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1454\">-1.776339763670333e-019 -0.07991900300950217 -0.9968013608327225 -2.027870309745611e-018 -0.07991900300950217 -0.9968013608327225 0 -0.7019467038801081 -0.7122294748968564 -0 0.7019467038801081 0.7122294748968564 2.027870309745611e-018 0.07991900300950217 0.9968013608327225 1.776339763670333e-019 0.07991900300950217 0.9968013608327225 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.7019467038801081 -0.7122294748968564 -0 0.7019467038801081 0.7122294748968564 2.898738914260018e-018 0.5795037448550457 -0.8149695759345732 -2.898738914260018e-018 -0.5795037448550457 0.8149695759345732 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 -0.9955340971290169 -0.09440265596641433 -0 0.9955340971290169 0.09440265596641433 -1 0 0 1 -0 -0 4.748950731204071e-018 0.5795037448550459 -0.8149695759345731 -4.748950731204071e-018 -0.5795037448550459 0.8149695759345731 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 1.843061888750653e-018 -0.995534097129017 -0.09440265596641415 -1.843061888750653e-018 0.995534097129017 0.09440265596641415 -1 0 0 1 -0 -0 5.730896300542484e-018 0.9677823485561018 -0.2517882559279441 -5.730896300542484e-018 -0.9677823485561018 0.2517882559279441 1 0 0 -1 -0 -0 -4.62053728699901e-018 -0.8232985997773137 0.5676085055781978 4.62053728699901e-018 0.8232985997773137 -0.5676085055781978 4.835062976132084e-018 0.9677823485561018 -0.251788255927944 -4.835062976132084e-018 -0.9677823485561018 0.251788255927944 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -2.777492070114276e-018 -0.8232985997773136 0.567608505578198 -5.287825904614969e-018 -0.2658319714319039 0.964019378936247 5.287825904614969e-018 0.2658319714319039 -0.964019378936247 2.777492070114276e-018 0.8232985997773136 -0.567608505578198 8.958142244258213e-019 0.9032019239526054 0.4292158950555213 -8.958142244258213e-019 -0.9032019239526054 -0.4292158950555213 0 0.9032019239526051 0.4292158950555214 -0 -0.9032019239526051 -0.4292158950555214 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 -4.393083191022361e-018 -0.2658319714319036 0.9640193789362471 -4.044203278242868e-019 0.4160212955636348 0.9093548711243343 4.044203278242868e-019 -0.4160212955636348 -0.9093548711243343 4.393083191022361e-018 0.2658319714319036 -0.9640193789362471 4.903180125159446e-019 0.4160212955636352 0.9093548711243343 -4.903180125159446e-019 -0.4160212955636352 -0.9093548711243343</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"72\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 30 14 0 5 15 31 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 22 28 40 41 29 23 14 30 42 43 31 15 32 44 8 9 45 33 26 38 46 47 39 27 42 30 48 49 31 43 8 50 34 35 51 9 52 36 22 23 37 53 54 22 40 41 23 55 8 44 56 57 45 9 46 58 59 60 61 47 46 38 58 61 39 47 42 48 62 63 49 43 62 48 64 65 49 63 8 56 50 51 57 9 66 52 22 23 53 67 68 22 54 55 23 69 59 70 71 72 73 60 58 70 59 60 73 61 74 62 64 65 63 75 71 74 64 65 75 72 66 22 68 69 23 67 70 74 71 72 75 73</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1452\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1455\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1458\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1456\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1457\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1456\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"296\" source=\"#ID1460\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"888\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1460\">-0.001449317671358585 0.240059107542038 0.2575531899929047 -0.001449317671358585 0.1619613170623779 0.1178073287010193 -0.1529100686311722 0.240059107542038 0.2577010691165924 -0.1529100686311722 0.240059107542038 0.2577010691165924 -0.001449317671358585 0.1619613170623779 0.1178073287010193 -0.001449317671358585 0.240059107542038 0.2575531899929047 0.1500110626220703 0.240059107542038 0.2577010691165924 0.1500110626220703 0.240059107542038 0.2577010691165924 -0.1523515284061432 0.2470187544822693 0.3542184829711914 -0.1523515284061432 0.2470187544822693 0.3542184829711914 -0.1529100686311722 0.1619613170623779 0.1178135275840759 -0.1529100686311722 0.1619613170623779 0.1178135275840759 0.1500110626220703 0.1619613170623779 0.1178135275840759 0.1500110626220703 0.1619613170623779 0.1178135275840759 0.1494526416063309 0.2470187544822693 0.3542184829711914 0.1494526416063309 0.2470187544822693 0.3542184829711914 -0.001449317671358585 0.2470187544822693 0.3542184829711914 -0.001449317671358585 0.2470187544822693 0.3542184829711914 -0.1628827601671219 0.2536900639533997 0.3536399900913239 -0.1628827601671219 0.2536900639533997 0.3536399900913239 -0.1630400717258453 0.1643714010715485 0.1090982854366303 -0.1630400717258453 0.1643714010715485 0.1090982854366303 -0.001449317671358585 0.1496018767356873 0.01143438369035721 -0.001449317671358585 0.1496018767356873 0.01143438369035721 0.1601412743330002 0.1643714010715485 0.1090982854366303 0.1601412743330002 0.1643714010715485 0.1090982854366303 0.1599837839603424 0.2536900639533997 0.3536399900913239 0.1599837839603424 0.2536900639533997 0.3536399900913239 -0.001449264585971832 0.261539101600647 0.4428333342075348 -0.001449264585971832 0.261539101600647 0.4428333342075348 -0.1540883034467697 0.261539101600647 0.4380881488323212 -0.1540883034467697 0.261539101600647 0.4380881488323212 -0.1634102165699005 0.2467786967754364 0.2577041983604431 -0.1634102165699005 0.2467786967754364 0.2577041983604431 -0.09997250139713287 0.1520867645740509 -0.001049425452947617 -0.09997250139713287 0.1520867645740509 -0.001049425452947617 -0.09253218770027161 0.1496018767356873 0.01143438369035721 -0.09253218770027161 0.1496018767356873 0.01143438369035721 0.08963353931903839 0.1496018767356873 0.01143438369035721 0.08963353931903839 0.1496018767356873 0.01143438369035721 0.09707370400428772 0.1520867645740509 -0.001049425452947617 0.09707370400428772 0.1520867645740509 -0.001049425452947617 0.1605114936828613 0.2467786967754364 0.2577041983604431 0.1605114936828613 0.2467786967754364 0.2577041983604431 0.1511895954608917 0.261539101600647 0.4380881488323212 0.1511895954608917 0.261539101600647 0.4380881488323212 -0.163021519780159 0.2689068913459778 0.4383325576782227 -0.163021519780159 0.2689068913459778 0.4383325576782227 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1630400717258453 0.3184337615966797 0.1096392124891281 -0.1630400717258453 0.3184337615966797 0.1096392124891281 -0.1097900420427322 0.3173555135726929 -0.0002152398228645325 -0.1097900420427322 0.3173555135726929 -0.0002152398228645325 -0.001449317671358585 0.1354821473360062 -0.008116859942674637 -0.001449317671358585 0.1354821473360062 -0.008116859942674637 0.1068910136818886 0.3173555135726929 -0.0002152398228645325 0.1068910136818886 0.3173555135726929 -0.0002152398228645325 0.1601412743330002 0.3184337615966797 0.1096392124891281 0.1601412743330002 0.3184337615966797 0.1096392124891281 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1601225733757019 0.2689068913459778 0.4383325576782227 0.1601225733757019 0.2689068913459778 0.4383325576782227 -0.001449317671358585 0.2768021523952484 0.4565147459506989 -0.001449317671358585 0.2768021523952484 0.4565147459506989 -0.1456240266561508 0.2768021523952484 0.4514736533164978 -0.1456240266561508 0.2768021523952484 0.4514736533164978 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.09238605946302414 0.1354821473360062 -0.008116859942674637 -0.09238605946302414 0.1354821473360062 -0.008116859942674637 -0.1097748056054115 0.3184337615966797 -0.02075992710888386 -0.1097748056054115 0.3184337615966797 -0.02075992710888386 0.08948712050914764 0.1354821473360062 -0.008116859942674637 0.08948712050914764 0.1354821473360062 -0.008116859942674637 0.1068758368492127 0.3184337615966797 -0.02075992710888386 0.1068758368492127 0.3184337615966797 -0.02075992710888386 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1427254229784012 0.2768021523952484 0.4514736533164978 0.1427254229784012 0.2768021523952484 0.4514736533164978 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.354182094335556 0.298282265663147 0.3550088405609131 -0.354182094335556 0.298282265663147 0.3550088405609131 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.3544719517230988 0.298282265663147 0.2575727701187134 -0.3544719517230988 0.298282265663147 0.2575727701187134 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1696929037570953 0.4537642896175385 0.1070729941129684 -0.1696929037570953 0.4537642896175385 0.1070729941129684 -0.09995711594820023 0.1357338577508926 -0.01938049495220184 -0.09995711594820023 0.1357338577508926 -0.01938049495220184 -0.1371392905712128 0.4597870707511902 -0.02026660554111004 -0.1371392905712128 0.4597870707511902 -0.02026660554111004 -0.001449317671358585 0.04650413244962692 -0.01317102089524269 -0.001449317671358585 0.04650413244962692 -0.01317102089524269 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.09705853462219238 0.1357338577508926 -0.01938049495220184 0.09705853462219238 0.1357338577508926 -0.01938049495220184 0.1342403590679169 0.4597870707511902 -0.02026660554111004 0.1342403590679169 0.4597870707511902 -0.02026660554111004 0.1667940318584442 0.4537642896175385 0.1070729941129684 0.1667940318584442 0.4537642896175385 0.1070729941129684 0.170243501663208 0.4526919424533844 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.3515732288360596 0.298282265663147 0.2575727701187134 0.3515732288360596 0.298282265663147 0.2575727701187134 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.3512834012508392 0.298282265663147 0.3550088405609131 0.3512834012508392 0.298282265663147 0.3550088405609131 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1599837839603424 0.3077715933322907 0.438141942024231 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.09300129115581513 0.0464128889143467 -0.01317102089524269 -0.09300129115581513 0.0464128889143467 -0.01317102089524269 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.3181760609149933 -0.273921549320221 -0.1097748056054115 0.3181760609149933 -0.273921549320221 0.09010248631238937 0.0464128889143467 -0.01317102089524269 0.09010248631238937 0.0464128889143467 -0.01317102089524269 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.1427799314260483 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5756529569625855 0.2870831191539764 0.3586305379867554 -0.5756529569625855 0.2870831191539764 0.3586305379867554 -0.603806734085083 0.2870831191539764 0.2575727701187134 -0.603806734085083 0.2870831191539764 0.2575727701187134 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.09995711594820023 0.04646233096718788 -0.02443481422960758 -0.09995711594820023 0.04646233096718788 -0.02443481422960758 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.09995711594820023 0.1377387195825577 -0.2734987437725067 -0.09995711594820023 0.1377387195825577 -0.2734987437725067 -0.001449317671358585 -0.3543172776699066 -0.08908890932798386 -0.001449317671358585 -0.3543172776699066 -0.08908890932798386 0.09705853462219238 0.04646233096718788 -0.02443481422960758 0.09705853462219238 0.04646233096718788 -0.02443481422960758 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.09705853462219238 0.1377387195825577 -0.2734987437725067 0.09705853462219238 0.1377387195825577 -0.2734987437725067 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.57275390625 0.2870831191539764 0.3586305379867554 0.57275390625 0.2870831191539764 0.3586305379867554 0.600908100605011 0.2870831191539764 0.2575727701187134 0.600908100605011 0.2870831191539764 0.2575727701187134 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.1427799314260483 0.3090838491916657 0.4529981315135956 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.09210735559463501 -0.3543172776699066 -0.08908890932798386 -0.09210735559463501 -0.3543172776699066 -0.08908890932798386 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 0.08920849859714508 -0.3543172776699066 -0.08908890932798386 0.08920849859714508 -0.3543172776699066 -0.08908890932798386 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.5986962914466858 0.2943861186504364 0.2461786717176437 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.1048265770077705 0.04720093682408333 -0.2734573781490326 -0.1048265770077705 0.04720093682408333 -0.2734573781490326 -0.1013187915086746 -0.3543172776699066 -0.09922146797180176 -0.1013187915086746 -0.3543172776699066 -0.09922146797180176 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 0.09842002391815186 -0.3543172776699066 -0.09922146797180176 0.09842002391815186 -0.3543172776699066 -0.09922146797180176 0.1019275709986687 0.04720093682408333 -0.2734573781490326 0.1019275709986687 0.04720093682408333 -0.2734573781490326 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6997751593589783 0.2703775763511658 0.354082316160202 0.6997751593589783 0.2703775763511658 0.354082316160202 0.7538297772407532 0.2898140251636505 0.2332167774438858 0.7538297772407532 0.2898140251636505 0.2332167774438858 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.09248960018157959 -0.7727522850036621 -0.08908890932798386 -0.09248960018157959 -0.7727522850036621 -0.08908890932798386 0.08959063142538071 -0.7727522850036621 -0.08908890932798386 0.08959063142538071 -0.7727522850036621 -0.08908890932798386 0.7403134107589722 0.280442476272583 0.2985353469848633 0.7403134107589722 0.280442476272583 0.2985353469848633 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.6621055603027344 0.3010430932044983 0.2265639156103134 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.1043468117713928 -0.3548235893249512 -0.273533433675766 -0.1043468117713928 -0.3548235893249512 -0.273533433675766 -0.1016295403242111 -0.7727522850036621 -0.09962338954210281 -0.1016295403242111 -0.7727522850036621 -0.09962338954210281 0.09873109310865402 -0.7727522850036621 -0.09962338954210281 0.09873109310865402 -0.7727522850036621 -0.09962338954210281 0.1014480292797089 -0.3548235893249512 -0.273533433675766 0.1014480292797089 -0.3548235893249512 -0.273533433675766 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.6748431324958801 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.1036523431539536 -0.6999796628952026 -0.273533433675766 -0.1036523431539536 -0.6999796628952026 -0.273533433675766 0.100753627717495 -0.6999796628952026 -0.273533433675766 0.100753627717495 -0.6999796628952026 -0.273533433675766 0.6823241114616394 0.310824066400528 0.0157061405479908 0.6823241114616394 0.310824066400528 0.0157061405479908 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.8011427521705627 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1457\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"296\" source=\"#ID1461\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"888\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1461\">-3.234952956545837e-010 -0.9579877817902355 0.2868090130045148 -6.217357242973127e-011 -0.9515595232544742 0.3074645893492739 -0.2812065349451302 -0.9162931207527727 0.2851838031258053 0.2812065349451302 0.9162931207527727 -0.2851838031258053 6.217357242973127e-011 0.9515595232544742 -0.3074645893492739 3.234952956545837e-010 0.9579877817902355 -0.2868090130045148 0.2812005918009352 -0.916294768072033 0.2851843704949887 -0.2812005918009352 0.916294768072033 -0.2851843704949887 -0.2756918473565419 -0.9544959188559045 0.1137169564689446 0.2756918473565419 0.9544959188559045 -0.1137169564689446 -0.2442800039146172 -0.9227793826871448 0.2980025009542817 0.2442800039146172 0.9227793826871448 -0.2980025009542817 0.2442758821752764 -0.9227803713982717 0.2980028180228472 -0.2442758821752764 0.9227803713982717 -0.2980028180228472 0.2756935896854381 -0.9544954774242553 0.1137164376112813 -0.2756935896854381 0.9544954774242553 -0.1137164376112813 1.490483751561444e-018 -0.9931464214067424 0.1168767968716687 -1.490483751561444e-018 0.9931464214067424 -0.1168767968716687 -0.8704887825702192 -0.4886119739719802 0.05922514930857357 0.8704887825702192 0.4886119739719802 -0.05922514930857357 -0.8046057671952051 -0.5876209018924398 -0.0855057603634472 0.8046057671952051 0.5876209018924398 0.0855057603634472 -9.200784490519991e-013 -0.9321223686831632 0.3621434657708033 9.200784490519991e-013 0.9321223686831632 -0.3621434657708033 0.804604821940701 -0.5876223945276238 -0.08550439731028192 -0.804604821940701 0.5876223945276238 0.08550439731028192 0.8704895216285693 -0.4886106534106326 0.05922518137160225 -0.8704895216285693 0.4886106534106326 -0.05922518137160225 2.974499319537437e-008 -0.8735363385033532 0.4867589396345526 -2.974499319537437e-008 0.8735363385033532 -0.4867589396345526 -0.3116860285389407 -0.8228945555233569 0.4750751204847921 0.3116860285389407 0.8228945555233569 -0.4750751204847921 -0.9015170437079738 -0.4167464578187631 0.1165736239444807 0.9015170437079738 0.4167464578187631 -0.1165736239444807 -0.9185766413583475 -0.3939973318069229 0.03135373151386103 0.9185766413583475 0.3939973318069229 -0.03135373151386103 -0.2086040935063664 -0.949799062777097 0.2331653330152989 0.2086040935063664 0.949799062777097 -0.2331653330152989 0.2086063702315061 -0.9497992489494362 0.2331625377154804 -0.2086063702315061 0.9497992489494362 -0.2331625377154804 0.9185766708178467 -0.3939969993628236 0.03135704581577447 -0.9185766708178467 0.3939969993628236 -0.03135704581577447 0.9015146128661709 -0.4167510528800471 0.1165759954370121 -0.9015146128661709 0.4167510528800471 -0.1165759954370121 0.3116915687490797 -0.8228931038431774 0.4750740001495339 -0.3116915687490797 0.8228931038431774 -0.4750740001495339 -0.8174019137252895 -0.3563103952147633 0.4526555132770762 0.8174019137252895 0.3563103952147633 -0.4526555132770762 -0.9999820905342003 1.551754390397572e-005 0.005984845031944604 0.9999820905342003 -1.551754390397572e-005 -0.005984845031944604 -0.9733205705292534 -0.02918463832305922 -0.2275858604363652 0.9733205705292534 0.02918463832305922 0.2275858604363652 -0.9708137837163441 -0.09990252189294425 -0.2180368855624793 0.9708137837163441 0.09990252189294425 0.2180368855624793 -4.973308797008195e-005 -0.4802883840395421 0.8771106348023067 4.973308797008195e-005 0.4802883840395421 -0.8771106348023067 0.9708140150792235 -0.09990213515044862 -0.2180360326141954 -0.9708140150792235 0.09990213515044862 0.2180360326141954 0.9733203282558441 -0.02918431405002838 -0.2275869381519185 -0.9733203282558441 0.02918431405002838 0.2275869381519185 0.999982070663732 1.552603589011465e-005 0.005988164160817121 -0.999982070663732 -1.552603589011465e-005 -0.005988164160817121 0.8174051349614597 -0.3563064286015123 0.4526528186986943 -0.8174051349614597 0.3563064286015123 -0.4526528186986943 -1.533467956234012e-008 -0.3933849529556973 0.9193738514815634 1.533467956234012e-008 0.3933849529556973 -0.9193738514815634 -0.2774641446396492 -0.2995144511443457 0.9128552689200458 0.2774641446396492 0.2995144511443457 -0.9128552689200458 -0.9999975879857992 0.0004976203717153804 0.002139251399367902 0.9999975879857992 -0.0004976203717153804 -0.002139251399367902 -0.9996865263546504 -0.02493816425449222 -0.00222193352487478 0.9996865263546504 0.02493816425449222 0.00222193352487478 -0.5031715502941616 -0.4429180687134052 0.7420525421974897 0.5031715502941616 0.4429180687134052 -0.7420525421974897 -0.9938297139390042 -0.1089172766501073 -0.02096488824298363 0.9938297139390042 0.1089172766501073 0.02096488824298363 0.5031644996780427 -0.4429142935026257 0.742059576364873 -0.5031644996780427 0.4429142935026257 -0.742059576364873 0.9938298285119792 -0.1089165278974066 -0.02096334683736273 -0.9938298285119792 0.1089165278974066 0.02096334683736273 0.9996865289447992 -0.02493807414508746 -0.002221779519478998 -0.9996865289447992 0.02493807414508746 0.002221779519478998 0.9999975853886962 0.0004977304266776404 0.00214043948749002 -0.9999975853886962 -0.0004977304266776404 -0.00214043948749002 0.2774684575642872 -0.2995131211223426 0.912854394376479 -0.2774684575642872 0.2995131211223426 -0.912854394376479 -0.8994705543474922 -0.009788394691910805 0.4368717308217256 0.8994705543474922 0.009788394691910805 -0.4368717308217256 0.04493718847070125 -0.9989737508561716 0.00566517366904504 0.04076621903261399 -0.9683858721428929 -0.2461034701499217 0.0468698340447171 -0.9989001860101959 -0.00127947075645433 -0.0468698340447171 0.9989001860101959 0.00127947075645433 -0.04076621903261399 0.9683858721428929 0.2461034701499217 -0.04493718847070125 0.9989737508561716 -0.00566517366904504 0.02366492200974112 -0.5517765660279215 -0.8336561597257634 0.04462576523667903 -0.9752630527249254 -0.2164960024266041 -0.04462576523667903 0.9752630527249254 0.2164960024266041 -0.02366492200974112 0.5517765660279215 0.8336561597257634 -0.9990570470692374 -0.0375993076012986 -0.02170964691556774 0.9990570470692374 0.0375993076012986 0.02170964691556774 -0.9851454615818815 -0.06161690562177455 -0.1602865448695515 0.9851454615818815 0.06161690562177455 0.1602865448695515 -0.9690913892938591 -0.1070782175622976 0.2222524117308507 0.9690913892938591 0.1070782175622976 -0.2222524117308507 -0.9763006140656918 -0.175860789299445 -0.1261352201485753 0.9763006140656918 0.175860789299445 0.1261352201485753 9.869805431426705e-007 -0.1216014839457632 0.9925790039594904 -9.869805431426705e-007 0.1216014839457632 -0.9925790039594904 -1.837198440433751e-005 -0.05666264686922608 0.9983933814445304 1.837198440433751e-005 0.05666264686922608 -0.9983933814445304 0.9690892642041279 -0.1070789280220219 0.2222613353193871 -0.9690892642041279 0.1070789280220219 -0.2222613353193871 0.9763005019376909 -0.1758613568419084 -0.1261352967489112 -0.9763005019376909 0.1758613568419084 0.1261352967489112 0.985145322931821 -0.06161747969626393 -0.1602871763474503 -0.985145322931821 0.06161747969626393 0.1602871763474503 0.9990570199402463 -0.0375998952982182 -0.02170987751410551 -0.9990570199402463 0.0375998952982182 0.02170987751410551 -0.02366493571792748 -0.5517768020638852 -0.8336560031101667 -0.04076619997730011 -0.9683859664691773 -0.2461031021441385 -0.04462578548346446 -0.975263111227018 -0.2164957347149845 0.04462578548346446 0.975263111227018 0.2164957347149845 0.04076619997730011 0.9683859664691773 0.2461031021441385 0.02366493571792748 0.5517768020638852 0.8336560031101667 -0.04493713660936019 -0.9989737535032993 0.005665118258344553 -0.04686985171654567 -0.9989001851420066 -0.001279501205082898 0.04686985171654567 0.9989001851420066 0.001279501205082898 0.04493713660936019 0.9989737535032993 -0.005665118258344553 0.8994719120219989 -0.009786118546536363 0.4368689865019977 -0.8994719120219989 0.009786118546536363 -0.4368689865019977 7.367702913516951e-009 -0.02830913765764351 0.9995992160486525 -7.367702913516951e-009 0.02830913765764351 -0.9995992160486525 -0.1992518788334495 -0.01139878853772022 0.9798820114693465 0.1992518788334495 0.01139878853772022 -0.9798820114693465 0.05313815940111782 -0.9984565021845745 0.01615392400645438 0.04894046550362478 -0.9988003242091736 0.001656259622829284 -0.04894046550362478 0.9988003242091736 -0.001656259622829284 -0.05313815940111782 0.9984565021845745 -0.01615392400645438 0.02541770183677723 -0.5744325664555302 -0.818157177459594 -0.02541770183677723 0.5744325664555302 0.818157177459594 -0.4776759646854844 -0.1060206642515086 0.8721154118082427 0.4776759646854844 0.1060206642515086 -0.8721154118082427 -0.948167466935901 -0.3110276407063832 -0.06511728926312721 0.948167466935901 0.3110276407063832 0.06511728926312721 -0.9996321410519423 -0.02712136582566339 -0.0001187082981316481 0.9996321410519423 0.02712136582566339 0.0001187082981316481 0.4777126476003307 -0.1060674432822479 0.8720896305989708 -0.4777126476003307 0.1060674432822479 -0.8720896305989708 0.9481669711281279 -0.3110291485060471 -0.06511730677258731 -0.9481669711281279 0.3110291485060471 0.06511730677258731 0.9996321700259963 -0.02712029790701727 -0.0001187036323516585 -0.9996321700259963 0.02712029790701727 0.0001187036323516585 -0.02541772641987503 -0.5744328089866907 -0.8181570064133806 0.02541772641987503 0.5744328089866907 0.8181570064133806 -0.04894045645718776 -0.9988003246976386 0.001656232367120277 0.04894045645718776 0.9988003246976386 -0.001656232367120277 -0.05313800065321193 -0.9984564967070155 0.01615478474424408 0.05313800065321193 0.9984564967070155 -0.01615478474424408 0.1992520465395727 -0.01139743910568457 0.9798819930642794 -0.1992520465395727 0.01139743910568457 -0.9798819930642794 0.05698037502494026 -0.9982593360277356 0.01521627074816993 0.06301398155012374 -0.9978973057251951 0.01517251975109406 -0.06301398155012374 0.9978973057251951 -0.01517251975109406 -0.05698037502494026 0.9982593360277356 -0.01521627074816993 0.07220965848694676 -0.9972581577389953 -0.01618431475916849 -0.07220965848694676 0.9972581577389953 0.01618431475916849 0.08464117416450329 -0.9962514551856712 -0.01785804234755087 -0.08464117416450329 0.9962514551856712 0.01785804234755087 0.05804349935847929 -0.9543882301332066 -0.2928720853298034 -0.05804349935847929 0.9543882301332066 0.2928720853298034 -0.9997155845505343 -0.02376206962614927 -0.002028313059047507 0.9997155845505343 0.02376206962614927 0.002028313059047507 -0.9947201077769768 -0.08705250788645738 -0.0543485791427706 0.9947201077769768 0.08705250788645738 0.0543485791427706 -0.9567690259522409 -0.03346676688157008 0.2889169543188745 0.9567690259522409 0.03346676688157008 -0.2889169543188745 -0.9596228460909934 -0.2794338093639866 0.03226049355717801 0.9596228460909934 0.2794338093639866 -0.03226049355717801 -0.9999512956216323 -0.006497377633779611 0.007429028772524331 0.9999512956216323 0.006497377633779611 -0.007429028772524331 -3.901761616862526e-013 -0.09347540603174656 0.9956215889921231 3.901761616862526e-013 0.09347540603174656 -0.9956215889921231 0.9567670008545158 -0.03346797143143741 0.2889235209603388 -0.9567670008545158 0.03346797143143741 -0.2889235209603388 0.9947199598846177 -0.08705306808189042 -0.05435038863407004 -0.9947199598846177 0.08705306808189042 0.05435038863407004 0.9596226115168612 -0.2794344652553429 0.03226178998474629 -0.9596226115168612 0.2794344652553429 -0.03226178998474629 0.9999512957144556 -0.006498115259404758 0.007428371090393464 -0.9999512957144556 0.006498115259404758 -0.007428371090393464 0.9997155503841998 -0.02376330161955009 -0.00203071813770353 -0.9997155503841998 0.02376330161955009 0.00203071813770353 -0.08464106271132993 -0.9962514626526612 -0.01785815403477691 0.08464106271132993 0.9962514626526612 0.01785815403477691 -0.05804348823879056 -0.9543881044087331 -0.2928724972341693 0.05804348823879056 0.9543881044087331 0.2928724972341693 -0.07220971410323639 -0.9972581543863262 -0.01618427320294488 0.07220971410323639 0.9972581543863262 0.01618427320294488 -0.05697975250352784 -0.9982593489102732 0.01521775666365164 0.05697975250352784 0.9982593489102732 -0.01521775666365164 -0.06301300009297557 -0.9978973426808896 0.01517416520609868 0.06301300009297557 0.9978973426808896 -0.01517416520609868 0.1159152314789492 -0.5849783904363448 -0.8027228300189829 -0.1159152314789492 0.5849783904363448 0.8027228300189829 -0.9901595337418041 -0.1398104911772548 0.006092971113353422 0.9901595337418041 0.1398104911772548 -0.006092971113353422 -0.4132302658222034 -0.0853117835344339 0.906621556658943 0.4132302658222034 0.0853117835344339 -0.906621556658943 -0.9921051517240733 -0.1036476073615039 0.07060128476726806 0.9921051517240733 0.1036476073615039 -0.07060128476726806 0.4132279345911737 -0.08531204065782463 0.9066225950153186 -0.4132279345911737 0.08531204065782463 -0.9066225950153186 0.9901595172279322 -0.1398106134766217 0.006092848450349776 -0.9901595172279322 0.1398106134766217 -0.006092848450349776 0.9921051154436165 -0.1036470165708205 0.07060266189440977 -0.9921051154436165 0.1036470165708205 -0.07060266189440977 -0.1159164628534591 -0.5849792717652266 -0.8027220099415288 0.1159164628534591 0.5849792717652266 0.8027220099415288 0.1250974713162175 -0.9921180956036373 0.007232361032191726 -0.1250974713162175 0.9921180956036373 -0.007232361032191726 0.06485830889529796 -0.9936291449251408 -0.09216573182357687 -0.06485830889529796 0.9936291449251408 0.09216573182357687 -0.3954628486908789 -0.9144944149380586 -0.0854932766502305 0.3954628486908789 0.9144944149380586 0.0854932766502305 -0.9994575407345154 0.02665766213240324 0.0193389068602394 0.9994575407345154 -0.02665766213240324 -0.0193389068602394 -0.9362204999204865 -0.02944462073358915 0.3501773691124108 0.9362204999204865 0.02944462073358915 -0.3501773691124108 0 0 1 -0 -0 -1 0.9362197042172463 -0.02944465744666143 0.3501794933790681 -0.9362197042172463 0.02944465744666143 -0.3501794933790681 0.9994576316254423 0.02665534148774293 0.01933740819844515 -0.9994576316254423 -0.02665534148774293 -0.01933740819844515 -0.1250972968983719 -0.9921181191248688 0.007232151329507097 0.1250972968983719 0.9921181191248688 -0.007232151329507097 -0.06485814056062322 -0.9936291286457055 -0.09216602578930233 0.06485814056062322 0.9936291286457055 0.09216602578930233 0.3954580285428707 -0.9144961465914285 -0.08549704983456716 -0.3954580285428707 0.9144961465914285 0.08549704983456716 -0.100695794754597 -0.9856927002483367 -0.1351675167926194 0.100695794754597 0.9856927002483367 0.1351675167926194 0.3120306604070797 -0.7954287677809169 -0.5195478248943536 -0.3120306604070797 0.7954287677809169 0.5195478248943536 -0.4151053597124028 -2.915928035469865e-005 0.9097733451183172 0.4151053597124028 2.915928035469865e-005 -0.9097733451183172 0.4150926689286753 -2.886845055806662e-005 0.9097791354874445 -0.4150926689286753 2.886845055806662e-005 -0.9097791354874445 0.1006962484761042 -0.9856925593885402 -0.1351682059839063 -0.1006962484761042 0.9856925593885402 0.1351682059839063 -0.3120320962622111 -0.7954273829439994 -0.5195490827295054 0.3120320962622111 0.7954273829439994 0.5195490827295054 0.01779273758949539 -0.9952231201370434 -0.0959914560456267 -0.01779273758949539 0.9952231201370434 0.0959914560456267 -0.9998629779706079 -0.0005771715810145362 0.01654364399743302 0.9998629779706079 0.0005771715810145362 -0.01654364399743302 -0.9145873298303341 -0.0005385388398137522 0.404388088461737 0.9145873298303341 0.0005385388398137522 -0.404388088461737 0.9145808842121449 -0.0005380349770274592 0.4044026665986449 -0.9145808842121449 0.0005380349770274592 -0.4044026665986449 0.9998629826075197 -0.0005765823352515847 0.01654338429721482 -0.9998629826075197 0.0005765823352515847 -0.01654338429721482 -0.01779270708697304 -0.9952231309454234 -0.09599134963998564 0.01779270708697304 0.9952231309454234 0.09599134963998564 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 -0.5805296449644594 0.7970800414865904 0.1662790990508843 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 0.5805288259387089 0.79708037182807 0.1662803749714611 -0.01939252250667103 -0.9996859402873071 -0.01587296011180408 0.01939252250667103 0.9996859402873071 0.01587296011180408 -0.9999397759429392 -0.002011921118868233 0.01078872840496727 0.9999397759429392 0.002011921118868233 -0.01078872840496727 0.9999397920931323 -0.002011726887975461 0.01078726766476841 -0.9999397920931323 0.002011726887975461 -0.01078726766476841 0.01939245868370844 -0.9996859421610532 -0.0158729200769155 -0.01939245868370844 0.9996859421610532 0.0158729200769155 -0.02872498908936132 -0.9993173359750012 -0.02323224099484929 0.02872498908936132 0.9993173359750012 0.02323224099484929 0.02872489305492778 -0.999317340439856 -0.0232321676818156 -0.02872489305492778 0.999317340439856 0.0232321676818156 -0.0338039231267008 -0.9985855403020367 -0.04103917008095537 0.0338039231267008 0.9985855403020367 0.04103917008095537 0.03380383430301043 -0.9985855458828281 -0.04103910745019926 -0.03380383430301043 0.9985855458828281 0.04103910745019926 -0.03095060591091806 -0.9988632126208304 -0.03625386140179363 0.03095060591091806 0.9988632126208304 0.03625386140179363 0.03095052874497888 -0.9988632158995391 -0.03625383694503856 -0.03095052874497888 0.9988632158995391 0.03625383694503856 -0.02363192930817951 -0.9986858878964992 -0.0454755894250371 0.02363192930817951 0.9986858878964992 0.0454755894250371 0.02363189189260647 -0.9986858900590736 -0.04547556137633117 -0.02363189189260647 0.9986858900590736 0.04547556137633117 -0.01337538710735877 -0.9993032316896482 -0.03484465747218112 0.01337538710735877 0.9993032316896482 0.03484465747218112 0.01337535277071187 -0.9993032331787931 -0.03484462794563845 -0.01337535277071187 0.9993032331787931 0.03484462794563845</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1459\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"602\" source=\"#ID1462\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1204\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1462\">-0.02636663033366615 6.838755345493062 -0.02721889647085817 3.636995278897075 -3.055581198595796 6.842143449215987 -0.03075380607900271 3.636979847311833 -0.03160607430193035 6.838739913907263 2.997601080631402 6.84212801763019 -0.02864833987362354 5.483028193469725 -3.057863351562802 5.485993454889168 -3.046682747609613 7.421353608982838 -0.0289123393400924 3.636263891157869 -3.058127357745602 3.636405881443521 -3.058091668136631 6.840639902274836 3.000147237397563 3.636405235727331 -0.02906036768025068 3.63626324544168 3.00011154770125 6.840639256558645 2.9998832306968 5.48599316172996 -0.02932436766466735 5.483027900310498 2.988705010905401 7.421353315835564 -0.02898635342717174 7.420855085281451 -0.02898635342717174 5.482544939601901 -3.047030568122864 7.420855085281451 -5.159912367381772 5.296856146763377 -5.474658075878946 7.219549253258736 -5.225329501062905 7.231142715651031 -4.373547947010668 2.495708889645916 -4.566221446976303 2.304321095525766 -5.284730168103733 5.567656581500462 -0.02897094982604534 2.714251480314225 -0.02897212529120171 0.5724803258323166 -3.058185968988067 2.714376292021933 -0.02900058159730653 0.5724802940152011 -0.0290017570653396 2.714251448497109 3.000205848768988 2.714376260204818 4.51912475598531 2.318306065720881 4.326447095963328 2.509694088595111 5.23761693820873 5.581645452160142 5.425781084175483 7.221534450837133 5.111034404777476 5.298841441446934 5.176454019892085 7.233127912643904 2.989052832126617 7.420855085281451 -0.02898635342717165 5.482544939601901 -0.02898635342717165 7.420855085281451 -0.02898635342717178 7.790007593915478 -3.047030568122864 7.790007593915478 -0.02898529171943672 9.585939924497836 -5.233578201713131 7.355735839827242 -5.482903018040604 7.344061827949919 -5.41974110645347 9.048229402814595 -5.16381046254205 5.295773823995131 -5.413134337179937 5.295836535495962 -5.478754947755846 7.218434380103668 -5.163568618199661 5.683786140393082 -4.518427213087274 2.405157487470111 -5.412892491165275 5.683855181014641 -2.615203760778698 -0.06186090152526974 -3.899768724483668 2.141380444338674 -3.691532640562677 2.315708005786755 -0.02898635342717171 0.5724606318597649 -1.850643754005432 0.5724606318597649 -3.058201372623444 2.714354935577812 1.792670786380768 0.572460631859765 -0.02898635342717171 0.572460631859765 3.000221252441406 2.714354935577812 3.843183514386036 2.141180313622572 2.558618446146386 -0.06206097129407832 3.6349433670269 2.315507870248307 4.469578241634467 2.418372813017507 5.114699187858625 5.697005749432438 5.36402783025949 5.6970747901442 5.364272833238893 5.297829338659803 5.114944189165764 5.297766627151653 5.429887681453169 7.220427407740841 5.434128262689799 7.348232666916337 5.184804956831304 7.359906676366162 5.370971728479812 9.052399887415888 2.989052832126617 7.790007593915478 -0.02898635342717164 7.790007593915478 -0.02898529171943657 9.585939924497836 -3.073559076940085 7.820103220942611 -3.109856074710857 9.522417415152312 -0.05711945621795228 9.618731098239561 -5.699618030456981 8.965286654319527 -5.736105240871591 7.260339372503561 -5.93120865529341 8.970221092247884 -5.073759430605529 7.054785231902612 -4.935531951542906 5.136040407634792 -6.127173639791447 5.133255636556745 -4.935545297933068 5.162224262445908 -3.287399448785889 2.190096748478799 -6.368646659170224 2.200915323218838 -2.568644366127439 0.1413895475487604 -2.725268582380571 -0.1084508522356947 -3.798823731668918 2.270371778376013 -3.466273929253212 3.41033496303592 -3.149763314163041 0.8796827536958151 -6.460951685521415 0.8988482333115089 -0.02898635342717163 1.937154820393069 -0.02898635342717164 1.454819714509872 -1.850643754005432 1.937154820393069 1.792670786380768 1.937154820393069 -0.02898635342717174 1.454819714509872 -0.02898635342717175 1.937154820393069 2.669317919921736 -0.1090026243704966 2.512696550149399 0.140837784823799 3.742868755891826 2.269820095835775 3.146487813238784 0.8511975929225955 3.462996692318609 3.381850019386242 6.457675910666511 0.8703630741826385 3.287399951146515 2.189953668002609 4.935545800267551 5.162081185696131 6.368647161530801 2.200772242756213 4.935532676480418 5.136350543601128 5.073760155673227 7.055095395720951 6.127174364728862 5.133565772482659 3.051882784571162 9.522470531624158 3.015582208849378 7.820156340730565 -0.0008502575972435707 9.618784214523791 5.691293807880778 7.265349514273309 5.65481379488936 8.970296396698309 5.886400741133047 8.975230833470755 -3.261216748434335 9.662302326147335 -0.2208518809264089 10.214249374523 -0.2102702694532389 9.804438774077401 -5.647174495173614 7.133758925437891 -5.878680504139493 7.141729747383367 -5.701452783863372 7.570295796680164 -5.378161089582958 8.77197701868781 -5.073824521938459 7.078123397081378 -6.12567424477393 7.073539197708593 -6.125572868107976 7.050180529447786 -5.073723145548264 7.05476479209345 -6.12713723702111 5.13323513221534 -6.127167100909393 5.130431462038796 -4.935525412693865 5.133216247242905 -6.253308388634133 4.896900817283603 -6.258978668700247 4.928608914566635 -4.94119507295335 5.164920888226908 -6.374281494973109 2.203604719333665 -3.281873387043052 3.388242983490191 -6.343363832797683 0.9586469866169477 -6.363116134675763 3.400265596412329 -3.516931398666756 0.2462875400800124 -3.279106132294992 -0.1733490150808107 -3.640044025700155 -0.02165769974764224 -6.466114527036964 0.002688284437034642 -3.15491272167495 -0.0139955519073096 -6.487623499595503 -0.4082085088720726 -0.02898635342717157 1.454819714509872 -1.847721189260483 1.454819714509872 -1.850643754005432 1.937154820393069 1.789742410182953 1.454819714509872 -0.02898635342717174 1.454819714509872 1.792670786380768 1.937154820393069 3.247335937252875 -0.1557451567850106 3.485164049653188 0.2638898259161639 3.608275259725327 -0.004054409868652941 3.151473509965481 -0.01422365240314152 6.462675041408438 0.002460183750547187 6.484184086812314 -0.4084366048630124 6.343462499663039 0.9333591743451106 3.281972038222571 3.362957176328559 6.363214785816568 3.374979799172784 4.941097925178682 5.164730528058628 6.258881521802579 4.928418553681022 6.374184336321573 2.203414350176213 4.935526244668555 5.133572133463288 6.127167932883925 5.130787348191338 6.253309220582092 4.897256697747134 5.07372449927955 7.055075300019057 6.12557422183897 7.050491037306701 6.127138590509018 5.133545612186522 0.1523347741752135 9.805934192734966 0.1629142784383076 10.21574484758487 3.203277673848404 9.663797725935616 5.073824113164295 7.078029599300062 5.378160680817295 8.771883221881627 6.125673835999754 7.073445399924637 5.601492339008226 7.161883139375415 5.655776694769287 7.598418447210583 5.832994668995053 7.169853932774302 -3.29229548917307 9.577208045340949 -3.135585968901885 9.988246606589721 -0.2544853944912711 10.14304715713552 -5.345153759990367 2.659266773740501 -6.12243651836439 2.652960177864921 -5.506542168678719 3.09404522880144 -5.366463836624983 8.76685689293635 -6.113982155565933 7.068421344626113 -6.143762830504425 8.763044579849012 -2.998909066793914 7.061671293003088 -3.009383622791294 5.144753875142473 -6.828240068496953 7.093632513089244 -3.006583778138543 1.558678636976905 -3.002738232531304 1.293285723944899 -6.831232731187104 1.55885611133052 -6.46510561082901 4.935179111872872 -6.579529808405709 2.210137881213651 -9.272240772076914 4.681736501928362 -6.547779309438316 3.229453125679772 -6.464223432163376 0.7891846968995643 -9.257544872562866 3.172448047115339 -3.277546589312663 -0.08843876873491094 -3.371355981309236 -0.3431960830523758 -3.634946533166137 0.07141021680080344 -6.648717845179229 0.00585761924331976 -6.669831971640257 -0.4050596526205177 -9.549385618892208 -0.3951926563523799 -3.14399619025572 -0.1065724795831643 -2.817386681209193 -0.4735937208030097 -6.476656430358466 -0.5012124531603661 -0.02898635342717163 0.913646990879659 -1.847721189260483 2.696075859143994 -0.02898635342717148 2.696075859143994 1.781119207154543 2.701809827268504 0.8152532076377372 1.729123404493221 -0.03760036592324648 2.696037187182018 -0.03194300973043898 0.9136173373610622 3.33699263842763 -0.321367168751961 3.243177321967573 -0.06660778468474321 3.600577886942102 0.09324249952771058 6.658814698157106 -0.4056713099979922 6.637700346328465 0.005245949403433635 9.538368487016358 -0.3958043140291034 2.814292429173244 -0.4709099327871273 3.140901745352777 -0.1038885235339979 6.473561762450731 -0.498528677789164 6.46084564322932 0.7640001628475446 6.544401249173743 3.204270616938121 9.254166738134776 3.147265491062098 6.575504533891243 2.209782281736347 6.461080479726541 4.934823526191813 9.268215374267234 4.681380914964183 2.944816367723171 1.294447701317205 2.948661020057206 1.55984063228462 6.773309973105766 1.560018106650228 2.95146016768939 5.144755718026892 2.940980549594411 7.061673136108093 6.770317208793428 7.093634356197926 0.196560697793166 10.14483968800053 3.077661907383472 9.990039162658695 3.23436934961255 9.579000668333457 6.114186672050714 7.068417750818075 5.366668350899943 8.766853299129746 6.143967346907679 8.763040986042407 5.507121974816171 3.14030772055557 6.123016175449285 2.699228291979475 5.345733414294688 2.705534807467032 -2.124944464071637 5.929230350296569 -4.793328873308041 4.831765829292571 -2.424087179380182 6.662759231684621 -6.329741855409807 3.517445271705451 -6.336494444822557 3.972765392797835 -5.691831002047781 3.926042402504652 -2.94268139914473 8.872257638594711 -2.944185181676458 7.177373413464506 -6.790849362496888 8.959695619745167 -2.998922106546994 7.060106920966361 -6.828253108172078 7.092068150392605 -6.845712750985853 8.842156164075469 -3.006445803952361 5.150512521979542 -6.831094757930405 5.150668686150087 -6.825302785272073 7.099390110382316 -2.972522825755776 1.776907481445139 -6.805192167810611 1.776907481445138 -6.801570916553547 2.03437296505763 -9.214528240608519 4.745969262161818 -6.522646409043738 2.27346763816126 -9.232525146047564 2.222123536139848 -9.604528261047836 2.393860449313284 -6.677475086746783 0.1768921183055275 -9.57627511056608 -0.2374426242850861 -2.765936644393134 -1.116894091628714 -0.9858012394810384 -1.238632662674646 -2.775689648758619 -1.388199031006643 -9.549072857123221 -0.3020218693831952 -6.669519401796959 -0.3119447185681393 -9.461015396905538 -5.376912490753298 -2.818037903687294 -0.3877109797521869 -6.472161291438469 -5.478532074706668 -6.477307879814198 -0.4152996229269818 -1.859099769337564 0.9136935523578336 -1.845019758784917 2.697931230696875 -0.02805939028729755 0.9136935523578337 1.796439903317344 2.691611429166005 1.804340486741244 0.9073356961307943 0.8250993973108234 1.724391901254001 -0.02668547621783949 0.9136798124634822 0.9839940938471216 -1.206368748089032 2.764129395093635 -1.084628390063306 2.773882667123692 -1.355937311880331 6.664504339654775 0.1626841406920702 9.591558611604032 2.379652713535864 9.563304722542457 -0.2516506470958837 6.658520920728246 -0.3180065740152979 9.538074517660286 -0.3080837246826926 9.450016779080851 -5.382974421571861 6.469046392546575 -5.478528909275005 2.814923421156487 -0.3877078143211198 6.474192981507066 -0.4152964574959116 6.51976775696096 2.27186243653367 9.211649476928296 4.744364060265751 9.229646420799721 2.220518334517832 6.773172053771983 5.150669074791106 2.948523099793939 5.150512910620561 6.76738067662801 7.099390499020172 6.747277703375682 1.778054512055766 2.91461282674071 1.778054512055766 6.743660030372366 2.035519925276201 6.770330240658309 7.092070927097284 2.940993581537236 7.060109697668658 6.787787501226327 8.842158940910547 2.07129614789165 5.951108811215057 2.370438806936668 6.684637715548111 4.739681227361353 4.853644255882038 2.886279891113184 7.177322034931364 2.884776109860868 8.872206260062704 6.732947347352482 8.959644241213219 5.688532992642515 3.969893912367153 6.333196440557649 4.016616713248672 6.326440875495734 3.561298437991529 -5.934439181466193 2.564486783206475 -6.382239992335672 3.030585942245407 -4.400330850436354 5.135936699598823 -2.863256667798199 8.858152859487548 -2.861252783238947 9.133225387838984 -2.51820719905027 9.155310854924538 -2.943009276547118 8.858157393776786 -6.791177314412912 8.945592095501487 -2.941058130282403 9.133230301267204 -6.751782475507639 7.092730904472949 -10.87570375166805 8.415305835162611 -6.769268352832716 8.842818656232213 -6.77333752277042 7.099227913273971 -6.779127273668858 5.150506482439512 -11.20841424702214 7.171661862608203 -6.814614871242686 2.040519201239409 -6.818460430289814 1.783056970246015 -11.80633820404197 2.04051920123941 -9.09171907599913 4.75479704864049 -9.112398907492434 2.230971879985942 -12.78866513764523 4.063980984403791 -9.173804071530416 2.850006625405597 -9.27450811171625 0.220479519264528 -14.21774104770318 2.814837196482078 -0.9926681972144869 -1.18325607489457 -0.9985162440230233 -1.447962315251344 -2.782857030104402 -1.329182627647969 -6.368675231933594 -0.4151985421776772 -6.363521218299866 -5.478430986404419 -9.211796522140503 -5.451368689537048 -9.184447614364222 -0.6590180415941973 -8.896168158166821 -5.726479328106876 -11.23707257527814 -5.726479328106876 -2.819283219477624 -0.3868174287271915 -2.859321231360607 -5.469182872040909 -6.473405966243857 -5.477638983772041 -0.03604880720977874 -7.294108674436618 -1.859099769337564 0.8648414790412329 -0.02805939028729712 0.864841479041232 -0.02192385777758977 -7.294165442551623 -0.02991328949181006 0.8647847109117424 1.801123699545969 0.8647847109117429 0.9964932391849524 -1.417559054370042 0.9906448802719919 -1.15285047148747 2.780833955293622 -1.298778315622266 9.27275597825315 0.2060561641657651 9.172052478769913 2.835583586177344 14.21598956540136 2.800414153029118 6.363521218299866 -5.478430986404419 6.368675231933594 -0.4151985421776772 9.211796522140503 -5.451368689537048 8.864198284825417 -5.730925506599281 9.15247965980455 -0.6634642487763759 11.20510771234817 -5.730925506599281 2.856167736454677 -5.469207712156813 2.816129719907828 -0.3868422688798363 6.470252050363343 -5.477663823887884 9.111763185916413 2.229381236623932 9.091083522079005 4.753206406652221 12.78802963708831 4.062390342039505 6.721226272527701 5.150507018182688 6.715437116939103 7.099228449012697 11.15050669776064 7.171662398346762 11.74842402563137 2.041615635174673 6.760540894601352 1.784153471565902 6.756698906493762 2.041615635174672 10.81780787399817 8.415309040742367 6.693892549552362 7.092734109939539 6.711376046269765 8.842821861848547 5.89261878482687 2.604508803106154 4.358522115839356 5.175966387100329 6.340418136713105 3.070609351969068 6.733274958915194 8.945555555684942 2.885103646949781 8.858120852209627 2.88315964419209 9.13319376520754 2.80340188434552 9.133180134758289 2.805398626466703 8.858107599537522 2.460351541592808 9.15526560239538 -6.77460312273808 7.021203173047983 -11.20967975574413 7.093642709070672 -10.89849197034851 8.343879214946197 -6.814614871242685 5.072583397887066 -11.80633820404197 5.072583397887066 -11.24382979373957 7.093896667381135 -6.869369183801485 0.7670959441529462 -11.80662675423104 0.7739615289177348 -11.85622182531548 1.043704364313447 -12.84480794438212 3.950526219131178 -9.168223069684583 2.118156324435814 -14.2121676338043 2.084092525164981 -14.48303158559042 2.144125741160916 -9.49824297019198 -0.3694625458418844 -15.5213641316082 -1.618177852494305 -2.714677155017853 -0.3876098990440369 -0.9292466193437576 -0.4886962845921516 -2.754774391651154 -5.469974875450134 -1.141758391497902 -1.132155274230674 6.818692493820374 -2.91283442237678 -1.159196012549074 -1.396351267211961 -9.355459686440179 -0.6597511565328875 -11.36906450694955 -5.742843595913961 -14.57962206144768 -4.68136921340893 -1.8421471118927 -7.294158452063673 -1.860025823116302 0.8630026274965318 -0.0289863534271717 -7.294158452063673 1.784169971942906 -7.294158452063673 -0.02898635342716709 -7.294158452063674 1.802049726247787 0.8630026274965329 -6.825540455410093 -2.882790235124071 1.134906988487327 -1.102095691848085 1.152345667236225 -1.366293968975637 0.9292466193437576 -0.4886962845921516 2.714677155017853 -0.3876098990440369 2.754774391651154 -5.469974875450134 9.489753801293103 -0.3709603909915806 14.47454318235925 2.142627979824022 15.51287503815869 -1.619675739281022 9.166575014905702 2.11859637962785 12.84316013339381 3.950966229592697 14.21051968951901 2.084532581188558 11.36526920227416 -5.735877480657661 9.351664591353453 -0.652783738407381 14.57581694983691 -4.674402826081583 11.15177162177318 7.09367909750699 6.716702132197051 7.021239561509185 10.8405850282281 8.343915602953048 11.74842402563136 5.072614769542129 6.75669890649376 5.072614769542129 11.18590727867735 7.093928043603475 11.74869750490922 0.77510221082015 6.811431000110176 0.7682366242140287 11.79828899240948 1.044845118560229 -10.80496632019039 6.977662048894169 -12.46155548835796 7.657098334252402 -10.49529891741161 8.228276001342932 -11.21487106341044 4.881022912592136 -13.21899380723216 6.8125123245248 -10.65669909416979 6.903537955267404 -11.51251320636103 0.5578575936245883 -14.61233982042884 0.2524251237269393 -11.5684994504771 0.8263467159237325 -9.481788910771552 -0.4489778016980909 -14.72705052423376 -4.443037756452817 -15.50488449584283 -1.697816468325149 -0.8205209546146492 -0.5288734822450359 -0.8300404743074754 -5.510289665520177 -2.643413216704172 -5.511117138271891 6.688313272222799 -3.315611715802851 6.658101382735414 -3.587815610413396 -1.244508051282861 -1.578725988619197 -0.02898635342717171 -15.45504570007324 -1.8421471118927 -7.086345553398132 -0.02898635342717171 -7.086345553398132 1.784169971942902 -7.086345553398132 -6.667602453628678 -3.549646618820059 -6.697815009734231 -3.277441587974647 1.235004835475794 -1.540548610673851 0.8331646414142193 -5.5091467110538 0.8236442068899232 -0.5277306955751653 2.646536927669105 -5.509974183777642 14.71921589675338 -4.441333888747046 9.473963539051594 -0.4472738422507893 15.49705920225716 -1.696112537563038 12.40393384027185 7.657276229073564 10.74734348798995 6.977839945846476 10.43767726880506 8.228453894372517 13.1615240929437 6.812788755903888 11.15740491040168 4.881299309953024 10.59922465227442 6.903814388249673 14.55454565970635 0.2549110852172093 11.45473337963093 0.5603437143635875 11.51071612648785 0.8288329766496544 -10.67083552423818 7.305298660398512 -13.23313184952681 7.214318423797966 -12.32748189269051 7.984595464340071 -12.10251372621878 4.076419314872052 -14.88997705397223 4.908523114067743 -14.07829490287512 6.03689070274844 -12.04632824074949 4.268192840440507 -15.10444972929663 3.776010808033947 -14.83508302186561 5.095958089172433 -12.78301536129654 0.2962467436444843 -14.62950192805164 0.4509841625962124 -11.52928819755993 0.7524619498734347 -0.9297487410889054 -0.5276811829171171 7.085836338187223 -2.023700170738353 -0.9445453203016435 -5.509084486554984 7.088025415829121 -2.553216429840028 15.45672905434624 -2.553216429840028 7.088193710545637 -2.827091748524344 -1.849792003631592 -15.45504570007324 1.791812628507614 -15.45504570007324 -7.088140225495319 -2.788095125751982 -15.45667561482647 -2.514218604200972 -7.087971978350901 -2.514218604200972 -7.085850612107634 -2.022563490992714 0.9297344638217198 -0.5265445530501437 0.9445310551610517 -5.507947690603388 13.17564725650051 7.21417585087989 10.61334620353099 7.305156086916923 12.26999375690795 7.984452886651061 14.83200498227364 4.908476323045658 12.04454165399633 4.076372525604834 14.02031925564632 6.036843909346684 14.57169925216748 0.4533441194975119 12.72520792726563 0.2986069485387188 11.47149979120349 0.7548214236054923 15.04646703475571 3.776053864359719 11.98835627572861 4.268235893980133 14.77711105823558 5.096001138026241 -12.6266160603829 2.297591583870821 -15.12178814565102 0.7325988359478599 -14.47438377006741 2.436194618030055 7.08391559836993 -2.019479612635523 7.093969354055942 -5.506245102356618 -0.9465268942683268 -5.50472376224181 15.4548777945726 -2.559000053247869 15.45486120822411 -2.837936446359119 7.086161659917741 -2.827294198155631 -15.45486788703943 -2.799944950337141 -15.45488434305973 -2.521001721354575 -7.086168334303783 -2.789302441324948 -7.094039863961248 -5.505237706008601 -7.083986074240761 -2.018472221561888 0.9464563790294733 -5.503716365896093 15.06409865668014 0.7342359878714846 12.56892409316339 2.29922863371934 14.41669653760615 2.437831658838328 -13.46262675968666 2.193185871354747 -15.7924982468157 2.177528096152326 -13.26693739714533 3.692991203840863 15.45651721013149 -2.02727151420398 7.097984951813347 -5.505997022377133 7.087814756859743 -2.019231870341796 -7.097944413422521 -5.504989922836323 -15.45647663035068 -2.026264419961787 -7.087774172317961 -2.01822477611185 15.7345131545799 2.177569303028596 13.40465358825945 2.193227078345851 13.20894992640147 3.693032421831513 -13.67575051186454 0.3119285146293583 -15.79802331059779 3.026710069019142 -13.46815091855662 3.042232609582492 15.45092476634052 -2.014616342788127 13.99539387109469 -5.493019668618155 7.092258426701513 -5.493019668618155 -13.99551091456761 -5.49239127305972 -15.45104179173041 -2.01398800205036 -7.092375472872663 -5.49239127305972 15.74003799321126 3.026710239021875 13.61776877069671 0.3119286846437253 13.41017752197328 3.042232779585159 -13.86518791625325 0.1692229827221521 -16.18437295613618 0.2123764109855858 -15.98639586710108 2.88483664257106 16.12642020221242 0.2123388549923344 13.80722562885067 0.169185426859677 15.92843001220545 2.884799078478925 -13.86446578634248 0.2080251464501503 -13.87008147872469 -2.473959308767584 -16.18365094042712 0.2511724367599241 13.81212377347374 -2.47398692214609 13.8065033197383 0.2079975307914403 16.12569800729954 0.2511448210645306 -13.92494684437629 -2.517198155654229 -16.24051475529805 -2.526288577242352 -16.23794953086601 0.2084146666107355 16.18257905510459 -2.526342953705542 13.8670063789047 -2.517252532117403 16.18001383595163 0.2083602901524978 -13.52001637528098 -5.33607329619298 -16.23979030598128 -2.707268479957214 -13.92422244310166 -2.698165829005447 16.18185434755122 -2.707388557209061 13.46207921431993 -5.336193364330121 13.86628171939325 -2.698285906288855 -13.3838787709003 -5.214761861270069 -15.70455385173568 -5.214761861270069 -16.10638680846293 -2.588788711866555 15.64659092828793 -5.214788734311799 13.32590988752191 -5.214788734311799 16.04841912021596 -2.588815587613281</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"204\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 3 0 4 6 5 0 6 2 7 8 8 1 9 10 10 2 11 12 12 1 13 6 14 6 15 0 16 14 17 16 18 0 19 8 20 2 21 18 22 8 23 10 24 20 25 2 26 1 27 22 28 10 29 22 30 1 31 12 32 24 33 12 34 6 35 26 36 6 37 14 38 14 39 0 40 16 41 16 42 8 43 28 44 8 45 18 46 30 47 2 48 32 49 18 50 2 51 20 52 32 53 34 54 20 55 10 56 22 57 36 58 10 59 38 60 22 61 12 62 24 63 40 64 12 65 24 66 6 67 42 68 42 69 6 70 26 71 26 72 14 73 44 74 14 75 16 76 28 77 8 78 30 79 28 80 30 81 18 82 46 83 18 84 32 85 48 86 32 87 20 88 50 89 36 90 34 91 10 92 20 93 34 94 52 95 22 96 54 97 36 98 38 99 54 100 22 101 40 102 38 103 12 104 40 105 24 106 56 107 24 108 42 109 58 110 42 111 26 112 60 113 44 114 14 115 28 116 26 117 44 118 62 119 30 120 64 121 28 122 30 123 46 124 66 125 46 126 18 127 68 128 68 129 18 130 48 131 48 132 32 133 70 134 70 135 32 136 50 137 20 138 52 139 50 140 36 141 72 142 34 143 52 144 34 145 74 146 54 147 72 148 36 149 76 150 54 151 38 152 76 153 38 154 40 155 40 156 56 157 78 158 56 159 24 160 58 161 42 162 80 163 58 164 42 165 60 166 80 167 26 168 82 169 60 170 28 171 64 172 44 173 26 174 62 175 82 176 44 177 84 178 62 179 30 180 66 181 64 182 46 183 86 184 66 185 46 186 68 187 86 188 88 189 89 190 90 191 89 192 94 193 95 194 70 195 50 196 98 197 50 198 52 199 100 200 72 201 102 202 34 203 52 204 74 205 104 206 34 207 102 208 74 209 106 210 72 211 54 212 76 213 108 214 54 215 106 216 54 215 108 214 110 217 76 218 40 219 78 220 56 221 112 222 110 223 40 224 78 225 56 226 58 227 114 228 58 229 80 230 116 231 118 232 119 233 120 234 119 235 124 236 125 237 64 238 84 239 44 240 82 241 62 242 128 243 84 244 128 245 62 246 64 247 66 248 130 249 86 250 132 251 66 252 134 253 88 254 135 255 88 256 90 257 135 258 89 259 95 260 90 261 94 262 138 263 95 264 98 265 50 266 100 267 100 268 52 269 104 270 72 271 140 272 102 273 104 274 74 275 142 276 102 277 144 278 74 279 140 280 72 281 106 282 76 283 146 284 108 285 106 286 108 285 146 284 146 287 76 288 110 289 56 290 114 291 112 292 78 293 112 294 148 295 150 296 110 297 78 298 58 299 116 300 114 301 120 302 119 303 125 304 152 305 118 306 120 307 125 308 124 309 154 310 64 311 130 312 84 313 124 314 156 315 154 316 84 317 158 318 128 319 66 320 132 321 130 322 134 323 160 324 161 325 134 326 135 327 160 328 90 329 164 330 135 331 90 332 95 333 166 334 95 335 138 336 168 337 98 338 100 339 170 340 100 341 104 342 172 343 140 344 174 345 102 346 74 347 144 348 142 349 104 350 142 351 176 352 102 353 178 354 144 355 180 356 140 357 106 358 180 359 106 360 146 361 182 362 146 363 110 364 112 365 114 366 184 367 150 368 78 369 148 370 148 371 112 372 186 373 188 374 110 375 150 376 114 377 116 378 190 379 120 380 125 381 192 382 194 383 152 384 120 385 196 386 125 387 154 388 84 389 130 390 158 391 154 392 156 393 198 394 198 395 156 396 200 397 90 398 166 399 164 400 95 401 168 402 166 403 138 404 202 405 168 406 170 407 100 408 172 409 172 410 104 411 204 412 102 413 174 414 178 415 140 416 206 417 174 418 104 419 176 420 208 421 206 422 140 423 180 424 210 425 180 426 146 427 210 428 146 429 182 430 182 431 110 432 188 433 112 434 184 435 212 436 114 437 190 438 184 439 186 440 112 441 214 442 192 443 125 444 196 445 194 446 120 447 192 448 216 449 152 450 194 451 166 452 218 453 164 454 168 455 220 456 166 457 202 458 222 459 168 460 104 461 208 462 204 463 174 464 224 465 178 466 206 467 226 468 174 469 228 470 206 471 180 472 228 470 180 472 210 473 230 474 210 475 182 476 232 477 182 478 188 479 214 480 112 481 212 482 234 483 192 484 196 485 236 486 194 487 192 488 238 489 216 490 194 491 166 492 220 493 218 494 168 495 240 496 220 497 168 498 222 499 240 500 242 501 222 502 202 503 174 504 226 505 224 506 206 507 244 508 226 509 244 510 206 471 228 470 228 470 210 473 246 511 230 512 246 513 210 514 230 515 182 516 232 517 236 518 192 519 234 520 248 521 194 522 236 523 238 524 250 525 216 526 238 527 194 528 248 529 242 530 252 531 222 532 226 533 254 534 224 535 244 536 256 537 226 538 258 539 246 540 230 541 260 542 230 543 232 544 262 545 250 546 238 547 264 548 252 549 242 550 256 551 254 552 226 553 260 554 258 555 230 556 262 557 266 558 250 559 268 560 252 561 264 562 256 563 270 564 254 565 272 566 258 567 260 568 262 569 274 570 266 571 268 572 276 573 252 574 278 575 274 576 262 577 268 578 280 579 276 580 282 581 274 582 278 583 280 584 284 585 276 586 286 587 282 588 278 589 288 590 284 591 280 592 286 593 290 594 282 595 288 596 292 597 284 598 294 599 290 600 286 601</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1458\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1459\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"204\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 7 5 4 9 3 5 3 11 4 7 4 13 15 5 7 9 5 17 9 19 3 3 21 11 11 23 4 13 4 23 7 13 25 15 7 27 17 5 15 29 9 17 31 19 9 19 33 3 33 21 3 11 21 35 11 37 23 13 23 39 13 41 25 43 7 25 27 7 43 45 15 27 29 17 15 29 31 9 47 19 31 49 33 19 51 21 33 11 35 37 53 35 21 37 55 23 23 55 39 13 39 41 57 25 41 59 43 25 61 27 43 29 15 45 63 45 27 29 65 31 67 47 31 69 19 47 49 19 69 71 33 49 51 33 71 51 53 21 35 73 37 75 35 53 37 73 55 39 55 77 41 39 77 79 57 41 59 25 57 59 81 43 81 61 43 61 83 27 45 65 29 83 63 27 63 85 45 65 67 31 67 87 47 87 69 47 91 92 93 96 97 92 99 51 71 101 53 51 35 103 73 105 75 53 75 103 35 55 73 107 109 55 107 55 109 77 41 77 111 113 57 79 79 41 111 115 59 57 117 81 59 121 122 123 126 127 122 45 85 65 129 63 83 63 129 85 131 67 65 67 133 87 136 93 137 136 91 93 91 96 92 96 139 97 101 51 99 105 53 101 103 141 73 143 75 105 75 145 103 107 73 141 147 109 107 109 147 77 111 77 147 113 115 57 149 113 79 79 111 151 115 117 59 126 122 121 121 123 153 155 127 126 85 131 65 155 157 127 129 159 85 131 133 67 162 163 137 163 136 137 136 165 91 167 96 91 169 139 96 171 101 99 173 105 101 103 175 141 143 145 75 177 143 105 145 179 103 107 141 181 147 107 181 111 147 183 185 115 113 149 79 151 187 113 149 151 111 189 191 117 115 193 126 121 121 153 195 155 126 197 159 131 85 199 157 155 201 157 199 165 167 91 167 169 96 169 203 139 173 101 171 205 105 173 179 175 103 175 207 141 209 177 105 181 141 207 147 181 211 183 147 211 189 111 183 213 185 113 185 191 115 215 113 187 197 126 193 193 121 195 195 153 217 165 219 167 167 221 169 169 223 203 205 209 105 179 225 175 175 227 207 181 207 229 211 181 229 183 211 231 189 183 233 213 113 215 197 193 235 193 195 237 195 217 239 219 221 167 221 241 169 241 223 169 203 223 243 225 227 175 227 245 207 229 207 245 247 211 229 211 247 231 233 183 231 235 193 237 237 195 249 217 251 239 249 195 239 223 253 243 225 255 227 227 257 245 231 247 259 233 231 261 239 251 263 243 253 265 227 255 257 231 259 261 251 267 263 265 253 269 255 271 257 261 259 273 267 275 263 253 277 269 263 275 279 277 281 269 279 275 283 277 285 281 279 283 287 281 285 289 283 291 287 285 293 289 287 291 295</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1458\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1463\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1466\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1464\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1465\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1464\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1467\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1467\">-0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7728267908096314 0.3120907545089722 0.236614540219307 -0.7728267908096314 0.3120907545089722 0.236614540219307 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1465\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1468\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1468\">-0.100695794754597 -0.9856927002483367 -0.1351675167926194 -0.3954628486908789 -0.9144944149380586 -0.0854932766502305 -0.7920645011639883 -0.5938971135727662 0.1411383877114198 0.7920645011639883 0.5938971135727662 -0.1411383877114198 0.3954628486908789 0.9144944149380586 0.0854932766502305 0.100695794754597 0.9856927002483367 0.1351675167926194 -0.7834146661868462 -0.5940033022008459 0.1828155840672318 0.7834146661868462 0.5940033022008459 -0.1828155840672318</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1466\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1469\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1472\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1470\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1471\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1470\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID1473\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1473\">-0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.3545526266098023 0.4489807486534119 0.2332167774438858 -0.3545526266098023 0.4489807486534119 0.2332167774438858 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.5312814712524414 0.4448592662811279 0.2332167774438858 -0.5312814712524414 0.4448592662811279 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.5847116112709045 0.447659969329834 0.2332167774438858 -0.5847116112709045 0.447659969329834 0.2332167774438858 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5898233652114868 0.6375383734703064 0.1986889690160751</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1471\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID1474\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1474\">0.1159152314789492 -0.5849783904363448 -0.8027228300189829 0.02541770183677723 -0.5744325664555302 -0.818157177459594 0.002455958872292993 -0.134052915566394 -0.990971131816748 -0.002455958872292993 0.134052915566394 0.990971131816748 -0.02541770183677723 0.5744325664555302 0.818157177459594 -0.1159152314789492 0.5849783904363448 0.8027228300189829 0.01360116452442704 -0.1197858586092047 -0.9927065812216794 -0.01360116452442704 0.1197858586092047 0.9927065812216794 0.003485675612845834 -0.1357584235591588 -0.990735837899414 -0.003485675612845834 0.1357584235591588 0.990735837899414 0.3120306604070797 -0.7954287677809169 -0.5195478248943536 -0.3120306604070797 0.7954287677809169 0.5195478248943536 0.001228544436429594 -0.530792278723088 -0.8475010604869587 -0.001228544436429594 0.530792278723088 0.8475010604869587 0.0009837850219002171 -0.5287955729337499 -0.8487486519651727 -0.0009837850219002171 0.5287955729337499 0.8487486519651727 0.02366492200974112 -0.5517765660279215 -0.8336561597257634 -0.02366492200974112 0.5517765660279215 0.8336561597257634 0.3639947690900174 -0.1116367124113476 -0.9246864617355932 -0.3639947690900174 0.1116367124113476 0.9246864617355932 -0.002892945757292406 -0.5261264371370477 -0.8504014363877342 0.002892945757292406 0.5261264371370477 0.8504014363877342 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 -0.5805296449644594 0.7970800414865904 0.1662790990508843 0.5344913977113528 -0.4762571258614551 -0.6982106385889222 -0.5344913977113528 0.4762571258614551 0.6982106385889222</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 2 1 8 9 4 3 10 0 6 7 5 11 12 6 2 3 7 13 14 2 8 9 3 15 8 1 16 17 4 9 18 10 6 7 11 19 20 6 12 13 7 21 12 2 14 15 3 13 22 10 18 19 11 23 20 18 6 7 19 21 22 18 24 25 19 23 24 18 20 21 19 25</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1472\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1475\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1478\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1476\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1477\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1476\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID1479\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"198\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1479\">-0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5370995402336121 0.7065956592559815 0.1053698509931564 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5370995402336121 0.7065956592559815 0.1053698509931564 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.3720340728759766 0.7059378027915955 0.1053698509931564 -0.3720340728759766 0.7059378027915955 0.1053698509931564 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5370995402336121 0.7579361200332642 -0.08268103003501892 -0.5370995402336121 0.7579361200332642 -0.08268103003501892 -0.374770998954773 0.7579371929168701 -0.08268103003501892 -0.374770998954773 0.7579371929168701 -0.08268103003501892 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.5373399257659912 0.7229641675949097 -0.2198816239833832 -0.5373399257659912 0.7229641675949097 -0.2198816239833832 -0.3733293414115906 0.7212921380996704 -0.2198816239833832 -0.3733293414115906 0.7212921380996704 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.3628515005111694 0.5584809184074402 -0.2725684344768524 -0.3628515005111694 0.5584809184074402 -0.2725684344768524 -0.5319955945014954 0.5639436841011047 -0.2725684344768524 -0.5319955945014954 0.5639436841011047 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.5847000479698181 0.5650895833969116 -0.2725684344768524 -0.5847000479698181 0.5650895833969116 -0.2725684344768524 -0.5855176448822022 0.4595295786857605 -0.2725684344768524 -0.5855176448822022 0.4595295786857605 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.3558951914310455 0.4595295786857605 -0.2725684344768524 -0.3558951914310455 0.4595295786857605 -0.2725684344768524 -0.5304210782051086 0.4595295786857605 -0.2725684344768524 -0.5304210782051086 0.4595295786857605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.1097748056054115 0.3181760609149933 -0.273921549320221 -0.1097748056054115 0.3181760609149933 -0.273921549320221</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1477\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID1480\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"198\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1480\">-0.002892945757292406 -0.5261264371370477 -0.8504014363877342 0.008706503524001734 -0.8994941718400871 -0.4368460044708004 0.5344913977113528 -0.4762571258614551 -0.6982106385889222 -0.5344913977113528 0.4762571258614551 0.6982106385889222 -0.008706503524001734 0.8994941718400871 0.4368460044708004 0.002892945757292406 0.5261264371370477 0.8504014363877342 0.02363037582786412 -0.902347833097122 -0.4303603065376295 -0.02363037582786412 0.902347833097122 0.4303603065376295 -0.001023532765410392 -0.8995423755520391 -0.4368323098934793 0.001023532765410392 0.8995423755520391 0.4368323098934793 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 0.9696804631133598 -0.2296304749271341 -0.08360409344642968 -0.9696804631133598 0.2296304749271341 0.08360409344642968 -0.5805296449644594 0.7970800414865904 0.1662790990508843 -0.0005890438034978813 -0.9999601116063219 -0.008912251324439506 0.0005890438034978813 0.9999601116063219 0.008912251324439506 -0.002310012349595028 -0.9999946975497346 -0.002295368240525906 0.002310012349595028 0.9999946975497346 0.002295368240525906 0.001228544436429594 -0.530792278723088 -0.8475010604869587 -0.001228544436429594 0.530792278723088 0.8475010604869587 0.9738575501752567 -0.2231741112042929 -0.04236493898049872 -0.9738575501752567 0.2231741112042929 0.04236493898049872 0.004762179403278648 -0.9999158367782302 -0.01206818161209902 -0.004762179403278648 0.9999158367782302 0.01206818161209902 -0.0001054259024026388 -0.9999945805237475 0.00329056355564671 0.0001054259024026388 0.9999945805237475 -0.00329056355564671 -0.0002528615801463851 -0.8990032443558421 -0.4379418942036619 0.0002528615801463851 0.8990032443558421 0.4379418942036619 0.9735632488975363 -0.2269778489099383 0.02560579036645414 -0.9735632488975363 0.2269778489099383 -0.02560579036645414 0.01015304597198024 -0.7326994030879146 0.6804766714385618 -0.01015304597198024 0.7326994030879146 -0.6804766714385618 -0.006235246769021037 -0.7266493421561909 0.6869802437055265 0.006235246769021037 0.7266493421561909 -0.6869802437055265 -0.004959970467436007 -0.7176069837348265 0.6964306251077467 0.004959970467436007 0.7176069837348265 -0.6964306251077467 0.0009837850219002171 -0.5287955729337499 -0.8487486519651727 -0.0009837850219002171 0.5287955729337499 0.8487486519651727 0.9570454198941 -0.2670495177232334 0.1129097840911679 -0.9570454198941 0.2670495177232334 -0.1129097840911679 0.0324233640709075 -0.720253582420105 0.692952741875902 -0.0324233640709075 0.720253582420105 -0.692952741875902 0.9623630987746608 -0.206648239703785 0.1765043091376513 -0.9623630987746608 0.206648239703785 -0.1765043091376513 -0.001696972163550282 -0.1552309794340162 0.9878767449988041 0.001696972163550282 0.1552309794340162 -0.9878767449988041 -0.003501671595040209 -0.161037683266441 0.9869420463554169 0.003501671595040209 0.161037683266441 -0.9869420463554169 -0.0009664958691925261 -0.1310146610866349 0.9913799596855328 0.0009664958691925261 0.1310146610866349 -0.9913799596855328 0.5189876165657845 -0.1695060220436144 0.8378063990817426 -0.5189876165657845 0.1695060220436144 -0.8378063990817426 0.4533044710605235 -0.06671512823443905 0.8888555271703055 -0.4533044710605235 0.06671512823443905 -0.8888555271703055 2.506645839339887e-005 -0.005818798789160718 0.9999830703328551 -2.506645839339887e-005 0.005818798789160718 -0.9999830703328551 0.0008486584163376593 -0.002669914770303769 0.9999960756593056 -0.0008486584163376593 0.002669914770303769 -0.9999960756593056 0 0 1 -0 -0 -1 0.8647397467261543 -0.493715428752364 0.09203393854364951 -0.8647397467261543 0.493715428752364 -0.09203393854364951 0.0009780771413953171 -0.002169760516917563 0.9999971677481916 -0.0009780771413953171 0.002169760516917563 -0.9999971677481916 0.0008261095942327029 -0.008133842201674421 0.9999665785184907 -0.0008261095942327029 0.008133842201674421 -0.9999665785184907</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"42\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 1 6 2 8 1 0 10 2 11 14 6 1 8 16 1 18 8 0 20 10 11 14 22 6 16 14 1 24 16 8 26 8 18 20 11 28 30 22 14 16 32 14 24 34 16 26 24 8 36 26 18 38 20 28 32 30 14 30 40 22 34 32 16 42 38 28 30 32 44 40 30 46 32 34 48 50 38 42 44 32 48 46 30 44 50 40 46 52 38 50 44 48 54 46 44 56 50 46 58 60 38 52 52 50 58 56 44 54 58 46 56 62 52 58 64 56 54 62 58 56 62 56 64</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1478\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"42\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 7 4 5 4 9 12 3 13 4 7 15 4 17 9 5 9 19 12 13 21 7 23 15 4 15 17 9 17 25 19 9 27 29 12 21 15 23 31 15 33 17 17 35 25 9 25 27 19 27 37 29 21 39 15 31 33 23 41 31 17 33 35 29 39 43 45 33 31 47 31 41 49 35 33 43 39 51 49 33 45 45 31 47 47 41 51 51 39 53 55 49 45 57 45 47 59 47 51 53 39 61 59 51 53 55 45 57 57 47 59 59 53 63 55 57 65 57 59 63 65 57 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1478\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1481\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1484\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1482\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1483\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1482\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1024\" source=\"#ID1485\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"3072\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1485\">-0.7704972624778748 0.4213694334030151 -0.2747071981430054 -0.7704972624778748 0.3214001655578613 -0.2747071981430054 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7704972624778748 0.3214001655578613 -0.2747071981430054 -0.7704972624778748 0.4213694334030151 -0.2747071981430054 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7711951732635498 0.8992693424224854 -0.2752210795879364 -0.7711951732635498 0.8992693424224854 -0.2752210795879364 -0.7704972624778748 -0.4633741080760956 -0.2747071981430054 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7704972624778748 -0.4633741080760956 -0.2747071981430054 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.7809916734695435 0.9031000733375549 -0.2496751993894577 -0.7809916734695435 0.9031000733375549 -0.2496751993894577 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8140090107917786 -0.7940167188644409 -0.08648346364498138 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.8140090107917786 -0.7940167188644409 -0.08648346364498138 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8207589983940125 -0.8301818370819092 -0.02805159240961075 -0.8207589983940125 -0.8301818370819092 -0.02805159240961075 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.7726795077323914 0.312279224395752 0.2324964851140976 -0.7726795077323914 0.312279224395752 0.2324964851140976 -0.8207589983940125 -0.8697569370269775 0.02455062046647072 -0.8207589983940125 -0.8697569370269775 0.02455062046647072 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.8194112181663513 -0.9438937306404114 0.07964269816875458 -0.8194112181663513 -0.9438937306404114 0.07964269816875458 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7497841715812683 0.2803181707859039 0.2984566986560822 -0.7497841715812683 0.2803181707859039 0.2984566986560822 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7746564745903015 -0.8304092884063721 0.2270265072584152 -0.7746564745903015 -0.8304092884063721 0.2270265072584152 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.8160943388938904 -1.033355116844177 0.1124019175767899 -0.8160943388938904 -1.033355116844177 0.1124019175767899 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7746564745903015 -1.029682159423828 0.2270265072584152 -0.7746564745903015 -1.029682159423828 0.2270265072584152 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.8116487264633179 -1.128642797470093 0.1301879435777664 -0.8116487264633179 -1.128642797470093 0.1301879435777664 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7481676936149597 -1.030174612998962 0.297200620174408 -0.7481676936149597 -1.030174612998962 0.297200620174408 -0.7481676936149597 -0.8389725685119629 0.2947215437889099 -0.7481676936149597 -0.8389725685119629 0.2947215437889099 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7746564745903015 -1.188867688179016 0.2275206297636032 -0.7746564745903015 -1.188867688179016 0.2275206297636032 -0.7211520075798035 -0.8380235433578491 0.3453765213489533 -0.7211520075798035 -0.8380235433578491 0.3453765213489533 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.8134415149688721 -1.233547210693359 0.1249729543924332 -0.8134415149688721 -1.233547210693359 0.1249729543924332 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.7181724905967712 -1.030174612998962 0.3453765213489533 -0.7181724905967712 -1.030174612998962 0.3453765213489533 -0.7464496493339539 -1.17504346370697 0.2979675829410553 -0.7464496493339539 -1.17504346370697 0.2979675829410553 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.7746564745903015 -1.300840497016907 0.2215401381254196 -0.7746564745903015 -1.300840497016907 0.2215401381254196 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.818085253238678 -1.344445824623108 0.08846646547317505 -0.818085253238678 -1.344445824623108 0.08846646547317505 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7163878679275513 -1.179451704025269 0.3430816829204559 -0.7163878679275513 -1.179451704025269 0.3430816829204559 -0.7474802732467651 -1.294782400131226 0.2903444766998291 -0.7474802732467651 -1.294782400131226 0.2903444766998291 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7786112427711487 -1.4743812084198 0.2122804075479507 -0.7786112427711487 -1.4743812084198 0.2122804075479507 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.8198900818824768 -1.411396861076355 0.03317912295460701 -0.8198900818824768 -1.411396861076355 0.03317912295460701 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.6794602870941162 -1.172713875770569 0.3437448143959045 -0.6794602870941162 -1.172713875770569 0.3437448143959045 -0.7141572833061218 -1.303147315979004 0.3360871374607086 -0.7141572833061218 -1.303147315979004 0.3360871374607086 -0.7498881816864014 -1.477022528648377 0.2740126550197601 -0.7498881816864014 -1.477022528648377 0.2740126550197601 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.7819064259529114 -1.59941303730011 0.1968471556901932 -0.7819064259529114 -1.59941303730011 0.1968471556901932 -0.6524924635887146 -1.173845291137695 0.3425645530223846 -0.6524924635887146 -1.173845291137695 0.3425645530223846 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1598972976207733 0.3079861700534821 0.4518939852714539 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.604820966720581 0.05439910665154457 -0.8011427521705627 -1.604820966720581 0.05439910665154457 -0.6765456199645996 -1.305132031440735 0.3258563876152039 -0.6765456199645996 -1.305132031440735 0.3258563876152039 -0.6524924635887146 -1.303990125656128 0.3261548578739166 -0.6524924635887146 -1.303990125656128 0.3261548578739166 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.71500164270401 -1.478913545608521 0.3202499747276306 -0.71500164270401 -1.478913545608521 0.3202499747276306 -0.7503867149353027 -1.605847239494324 0.2616663873195648 -0.7503867149353027 -1.605847239494324 0.2616663873195648 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3520008623600006 0.4234864413738251 0.4407898485660553 -0.8153771162033081 -1.476347208023071 -0.05023443698883057 -0.8153771162033081 -1.476347208023071 -0.05023443698883057 -0.8011427521705627 -1.597437262535095 -0.02763602323830128 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.597437262535095 -0.02763602323830128 -0.7843642234802246 -1.743004322052002 0.1827057152986527 -0.7843642234802246 -1.743004322052002 0.1827057152986527 -0.6225963234901428 -1.305356502532959 0.3261548578739166 -0.6225963234901428 -1.305356502532959 0.3261548578739166 -0.6213556528091431 -1.173213005065918 0.3425645530223846 -0.6213556528091431 -1.173213005065918 0.3425645530223846 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.5571752190589905 0.2870903313159943 0.4211375415325165 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.597437262535095 -0.09717599302530289 -0.8011427521705627 -1.597437262535095 -0.09717599302530289 -0.8011427521705627 -1.746039509773254 0.05331587418913841 -0.8011427521705627 -1.746039509773254 0.05331587418913841 -0.6745424270629883 -1.473710179328919 0.3142852187156677 -0.6745424270629883 -1.473710179328919 0.3142852187156677 -0.6521297693252564 -1.473981022834778 0.2955112159252167 -0.6521297693252564 -1.473981022834778 0.2955112159252167 -0.6222109794616699 -1.473212003707886 0.2955112159252167 -0.6222109794616699 -1.473212003707886 0.2955112159252167 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.7156392335891724 -1.612327575683594 0.3050930202007294 -0.7156392335891724 -1.612327575683594 0.3050930202007294 -0.7640226483345032 -1.752110004425049 0.2460802644491196 -0.7640226483345032 -1.752110004425049 0.2460802644491196 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5573503971099854 0.4234864413738251 0.4212178885936737 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.731833338737488 -0.09522708505392075 -0.8011427521705627 -1.731833338737488 -0.09522708505392075 -0.8011427521705627 -1.739925384521484 -0.0306595154106617 -0.8011427521705627 -1.739925384521484 -0.0306595154106617 -0.7859653830528259 -1.849237442016602 0.1747838407754898 -0.7859653830528259 -1.849237442016602 0.1747838407754898 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.4741233587265015 -1.305356502532959 0.3261548578739166 -0.4741233587265015 -1.305356502532959 0.3261548578739166 -0.513939380645752 -1.173213005065918 0.3425645530223846 -0.513939380645752 -1.173213005065918 0.3425645530223846 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6549683213233948 0.2769641578197479 0.3925894796848297 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.7960734963417053 -1.730340600013733 -0.1583104282617569 -0.7960734963417053 -1.730340600013733 -0.1583104282617569 -0.8011427521705627 -1.85834276676178 0.05595642700791359 -0.8011427521705627 -1.85834276676178 0.05595642700791359 -0.6725387573242188 -1.600142955780029 0.2973578274250031 -0.6725387573242188 -1.600142955780029 0.2973578274250031 -0.6505559682846069 -1.602483987808228 0.2705280482769013 -0.6505559682846069 -1.602483987808228 0.2705280482769013 -0.6175405383110046 -1.602517247200012 0.2705280482769013 -0.6175405383110046 -1.602517247200012 0.2705280482769013 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.7154456973075867 -1.752095222473145 0.2910460829734802 -0.7154456973075867 -1.752095222473145 0.2910460829734802 -0.7698361277580261 -1.831026315689087 0.2328774482011795 -0.7698361277580261 -1.831026315689087 0.2328774482011795 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 -0.8006090521812439 -1.604159355163574 -0.155659943819046 -0.8006090521812439 -1.604159355163574 -0.155659943819046 -0.8011427521705627 -1.861560702323914 -0.0306595154106617 -0.8011427521705627 -1.861560702323914 -0.0306595154106617 -0.8011427521705627 -1.859525799751282 -0.0991249606013298 -0.8011427521705627 -1.859525799751282 -0.0991249606013298 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2030248194932938 -1.17602002620697 0.3425645530223846 -0.2030248194932938 -1.17602002620697 0.3425645530223846 0.6997751593589783 0.2703775763511658 0.354082316160202 0.6997751593589783 0.2703775763511658 0.354082316160202 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7820540070533752 -1.731492161750794 -0.2158130407333374 -0.7820540070533752 -1.731492161750794 -0.2158130407333374 -0.7960734963417053 -1.858019590377808 -0.1583313196897507 -0.7960734963417053 -1.858019590377808 -0.1583313196897507 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.6705343127250671 -1.744048237800598 0.2750363051891327 -0.6705343127250671 -1.744048237800598 0.2750363051891327 -0.6491485834121704 -1.744982481002808 0.2377863973379135 -0.6491485834121704 -1.744982481002808 0.2377863973379135 -0.6203603148460388 -1.742636442184448 0.2377863973379135 -0.6203603148460388 -1.742636442184448 0.2377863973379135 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7660660147666931 -1.904120802879334 0.2353758960962296 0.6885963678359985 0.4193951189517975 0.3593906462192535 0.6885963678359985 0.4193951189517975 0.3593906462192535 -0.7805264592170715 -1.615131855010986 -0.2230612486600876 -0.7805264592170715 -1.615131855010986 -0.2230612486600876 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7879398465156555 -1.996179938316345 -0.0991249606013298 -0.7879398465156555 -1.996179938316345 -0.0991249606013298 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449317671358585 -1.17882776260376 0.3425645530223846 -0.001449317671358585 -1.17882776260376 0.3425645530223846 0.7468852996826172 0.2803181707859039 0.2984566986560822 0.7468852996826172 0.2803181707859039 0.2984566986560822 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7820540070533752 -1.859680533409119 -0.2195352166891098 -0.7820540070533752 -1.859680533409119 -0.2195352166891098 -0.764397144317627 -1.623394966125488 -0.2698330581188202 -0.764397144317627 -1.623394966125488 -0.2698330581188202 -0.7849075794219971 -1.98232901096344 -0.1583313196897507 -0.7849075794219971 -1.98232901096344 -0.1583313196897507 -0.6673435568809509 -1.82667601108551 0.2628661394119263 -0.6673435568809509 -1.82667601108551 0.2628661394119263 -0.6485981941223145 -1.828809261322022 0.2115316838026047 -0.6485981941223145 -1.828809261322022 0.2115316838026047 -0.6190515756607056 -1.828675627708435 0.2114831358194351 -0.6190515756607056 -1.828675627708435 0.2114831358194351 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 0.7468852996826172 0.4189915955066681 0.2977039515972138 0.7468852996826172 0.4189915955066681 0.2977039515972138 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7655863761901856 -1.73902428150177 -0.2654593288898468 -0.7655863761901856 -1.73902428150177 -0.2654593288898468 -0.7655726671218872 -2.044322729110718 -0.09895889461040497 -0.7655726671218872 -2.044322729110718 -0.09895889461040497 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.6603543758392334 -1.904120802879334 0.2353758960962296 0.2001260668039322 -1.17602002620697 0.3425645530223846 0.2001260668039322 -1.17602002620697 0.3425645530223846 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 0.7697807550430298 0.312279224395752 0.2324964851140976 0.7697807550430298 0.312279224395752 0.2324964851140976 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7572376728057861 -1.859680533409119 -0.2654593288898468 -0.7572376728057861 -1.859680533409119 -0.2654593288898468 -0.7723438739776611 -1.952685952186585 -0.2173483222723007 -0.7723438739776611 -1.952685952186585 -0.2173483222723007 -0.7361075282096863 -1.634256482124329 -0.3076135516166687 -0.7361075282096863 -1.634256482124329 -0.3076135516166687 -0.7605022788047791 -2.023205518722534 -0.1581518948078156 -0.7605022788047791 -2.023205518722534 -0.1581518948078156 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.7695745229721069 0.423301488161087 0.2328356057405472 0.7695745229721069 0.423301488161087 0.2328356057405472 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7277590036392212 -1.743023633956909 -0.3158882260322571 -0.7277590036392212 -1.743023633956909 -0.3158882260322571 -0.7142770290374756 -2.065832376480103 -0.09944543987512589 -0.7142770290374756 -2.065832376480103 -0.09944543987512589 0.5110407471656799 -1.173213005065918 0.3425645530223846 0.5110407471656799 -1.173213005065918 0.3425645530223846 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011 -0.7003812193870544 -1.598517417907715 -0.3394664824008942 -0.7003812193870544 -1.598517417907715 -0.3394664824008942 -0.7305502891540527 -1.908180832862854 -0.2644224464893341 -0.7305502891540527 -1.908180832862854 -0.2644224464893341 -0.7482796907424927 -1.984729170799255 -0.2173768430948257 -0.7482796907424927 -1.984729170799255 -0.2173768430948257 -0.6821182370185852 -1.645132303237915 -0.3384934365749359 -0.6821182370185852 -1.645132303237915 -0.3384934365749359 -0.7097958326339722 -2.044126987457275 -0.1583652049303055 -0.7097958326339722 -2.044126987457275 -0.1583652049303055 -0.4238884449005127 -1.952623009681702 0.1164684295654297 -0.4238884449005127 -1.952623009681702 0.1164684295654297 0.4712246954441071 -1.305356502532959 0.3261548578739166 0.4712246954441071 -1.305356502532959 0.3261548578739166 0.7870740294456482 0.4261996150016785 0.1537329405546188 0.7870740294456482 0.4261996150016785 0.1537329405546188 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6998868584632874 -1.74457848072052 -0.3189045786857605 -0.6998868584632874 -1.74457848072052 -0.3189045786857605 -0.666880190372467 -2.044580698013306 -0.09905537962913513 -0.666880190372467 -2.044580698013306 -0.09905537962913513 -0.3737652599811554 -1.973503470420837 0.07559454441070557 -0.3737652599811554 -1.973503470420837 0.07559454441070557 0.6184563636779785 -1.173213005065918 0.3425645530223846 0.6184563636779785 -1.173213005065918 0.3425645530223846 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.619949996471405 -1.078431725502014 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.7982441186904907 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 -0.425421267747879 -1.598517417907715 -0.3394664824008942 -0.425421267747879 -1.598517417907715 -0.3394664824008942 -0.6535030603408814 -1.644188165664673 -0.3349318206310272 -0.6535030603408814 -1.644188165664673 -0.3349318206310272 -0.6806384921073914 -1.948326945304871 -0.2634786665439606 -0.6806384921073914 -1.948326945304871 -0.2634786665439606 -0.6979761719703674 -2.006107807159424 -0.2173768430948257 -0.6979761719703674 -2.006107807159424 -0.2173768430948257 -0.6668106913566589 -1.748111844062805 -0.3100372552871704 -0.6668106913566589 -1.748111844062805 -0.3100372552871704 -0.6619876027107239 -2.02424168586731 -0.1575844436883926 -0.6619876027107239 -2.02424168586731 -0.1575844436883926 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.6040789484977722 -1.973503470420837 0.07559454441070557 -0.6040789484977722 -1.973503470420837 0.07559454441070557 0.6196975111961365 -1.305356502532959 0.3261548578739166 0.6196975111961365 -1.305356502532959 0.3261548578739166 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.7982441186904907 0.4255830943584442 0.01974329724907875 0.7982441186904907 0.4255830943584442 0.01974329724907875 -0.001449264585971832 -1.553421497344971 -0.3157995939254761 -0.001449264585971832 -1.553421497344971 -0.3157995939254761 -0.6268174052238464 -1.647485733032227 -0.3367124497890472 -0.6268174052238464 -1.647485733032227 -0.3367124497890472 -0.6384567618370056 -1.997578978538513 -0.09881686419248581 -0.6384567618370056 -1.997578978538513 -0.09881686419248581 -0.6342340707778931 -1.982501149177551 -0.1579913049936295 -0.6342340707778931 -1.982501149177551 -0.1579913049936295 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.3774064481258392 -2.007932424545288 -0.03081386722624302 -0.3774064481258392 -2.007932424545288 -0.03081386722624302 0.6495939493179321 -1.173845291137695 0.3425645530223846 0.6495939493179321 -1.173845291137695 0.3425645530223846 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.7982441186904907 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 -0.001449264585971832 -1.33904230594635 -0.2504197061061859 -0.001449264585971832 -1.33904230594635 -0.2504197061061859 -0.001449317671358585 -1.642231822013855 -0.3354183435440064 -0.001449317671358585 -1.642231822013855 -0.3354183435440064 -0.6034112572669983 -1.647485733032227 -0.3367124497890472 -0.6034112572669983 -1.647485733032227 -0.3367124497890472 -0.6429769396781921 -1.748111844062805 -0.3091297447681427 -0.6429769396781921 -1.748111844062805 -0.3091297447681427 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6601085662841797 -1.986837506294251 -0.216516375541687 -0.6601085662841797 -1.986837506294251 -0.216516375541687 -0.6524618268013001 -1.911460518836975 -0.2634730935096741 -0.6524618268013001 -1.911460518836975 -0.2634730935096741 -0.6338272094726563 -1.951573252677918 -0.2168276309967041 -0.6338272094726563 -1.951573252677918 -0.2168276309967041 -0.1949691921472549 -2.007932424545288 -0.03081386722624302 -0.1949691921472549 -2.007932424545288 -0.03081386722624302 -0.6168754100799561 -2.006487607955933 -0.03038886189460754 -0.6168754100799561 -2.006487607955933 -0.03038886189460754 0.6495939493179321 -1.303990125656128 0.3261548578739166 0.6495939493179321 -1.303990125656128 0.3261548578739166 0.6193124651908875 -1.473212003707886 0.2955112159252167 0.6193124651908875 -1.473212003707886 0.2955112159252167 0.7970438599586487 0.4232206344604492 -0.1200132966041565 0.7970438599586487 0.4232206344604492 -0.1200132966041565 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4225226640701294 -1.598517417907715 -0.3394666016101837 0.4225226640701294 -1.598517417907715 -0.3394666016101837 -0.1931811571121216 -1.642231822013855 -0.3354183435440064 -0.1931811571121216 -1.642231822013855 -0.3354183435440064 -0.3914590775966644 -1.642231822013855 -0.3383925259113312 -0.3914590775966644 -1.642231822013855 -0.3383925259113312 -0.6225053668022156 -1.746745824813843 -0.3130424916744232 -0.6225053668022156 -1.746745824813843 -0.3130424916744232 -0.6155943870544434 -1.99778163433075 -0.09729073196649551 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6155943870544434 -1.99778163433075 -0.09729073196649551 -0.613030731678009 -1.981651902198792 -0.1575021743774414 -0.613030731678009 -1.981651902198792 -0.1575021743774414 -0.6093374490737915 -1.951626658439636 -0.2170951366424561 -0.6093374490737915 -1.951626658439636 -0.2170951366424561 -0.001449264585971832 -2.007932424545288 -0.03081386722624302 -0.001449264585971832 -2.007932424545288 -0.03081386722624302 -0.1945523172616959 -1.99778163433075 -0.09787315130233765 -0.1945523172616959 -1.99778163433075 -0.09787315130233765 -0.4005182683467865 -1.99778163433075 -0.09787315130233765 -0.4005182683467865 -1.99778163433075 -0.09787315130233765 0.6765615344047546 -1.172713875770569 0.3437448143959045 0.6765615344047546 -1.172713875770569 0.3437448143959045 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.1902825087308884 -1.642231822013855 -0.3354183435440064 0.1902825087308884 -1.642231822013855 -0.3354183435440064 -0.1965046674013138 -1.744363188743591 -0.3111516833305359 -0.1965046674013138 -1.744363188743591 -0.3111516833305359 -0.6007706522941589 -1.744363188743591 -0.3092606365680695 -0.6007706522941589 -1.744363188743591 -0.3092606365680695 -0.6303516626358032 -1.911460518836975 -0.261831134557724 -0.6303516626358032 -1.911460518836975 -0.261831134557724 -0.6051907539367676 -1.911460518836975 -0.2640201151371002 -0.6051907539367676 -1.911460518836975 -0.2640201151371002 -0.001449317671358585 -1.99778163433075 -0.09787315130233765 -0.001449317671358585 -1.99778163433075 -0.09787315130233765 -0.001449317671358585 -1.975146889686585 0.06838828325271606 -0.001449317671358585 -1.975146889686585 0.06838828325271606 0.6736465096473694 -1.305132031440735 0.3258563876152039 0.6736465096473694 -1.305132031440735 0.3258563876152039 0.6492306590080261 -1.473981022834778 0.2955112159252167 0.6492306590080261 -1.473981022834778 0.2955112159252167 0.614641547203064 -1.602517247200012 0.2705280482769013 0.614641547203064 -1.602517247200012 0.2705280482769013 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.7780932784080505 0.4214316308498383 -0.2512775957584381 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 0.6974818110466003 -1.598517417907715 -0.3394666016101837 0.6974818110466003 -1.598517417907715 -0.3394666016101837 0.1936057955026627 -1.744363188743591 -0.3111516833305359 0.1936057955026627 -1.744363188743591 -0.3111516833305359 0.3885605037212372 -1.642231822013855 -0.3383925259113312 0.3885605037212372 -1.642231822013855 -0.3383925259113312 -0.001449317671358585 -1.744363188743591 -0.3139945566654205 -0.001449317671358585 -1.744363188743591 -0.3139945566654205 -0.3942905366420746 -1.744363188743591 -0.3111516833305359 -0.3942905366420746 -1.744363188743591 -0.3111516833305359 -0.4007205367088318 -1.982554078102112 -0.1579129248857498 -0.4007205367088318 -1.982554078102112 -0.1579129248857498 -0.3937298357486725 -1.951626658439636 -0.2179252803325653 -0.3937298357486725 -1.951626658439636 -0.2179252803325653 -0.3913251757621765 -1.911460518836975 -0.2640201151371002 -0.3913251757621765 -1.911460518836975 -0.2640201151371002 0.192070484161377 -2.007932424545288 -0.03081386722624302 0.192070484161377 -2.007932424545288 -0.03081386722624302 0.1927159428596497 -1.975192189216614 0.06858637928962708 0.1927159428596497 -1.975192189216614 0.06858637928962708 -0.1971269398927689 -1.982554078102112 -0.1579129248857498 -0.1971269398927689 -1.982554078102112 -0.1579129248857498 -0.001449317671358585 -1.982554078102112 -0.1579129248857498 -0.001449317671358585 -1.982554078102112 -0.1579129248857498 0.7112580537796021 -1.303147315979004 0.3360871374607086 0.7112580537796021 -1.303147315979004 0.3360871374607086 0.7134889364242554 -1.179451704025269 0.3430816829204559 0.7134889364242554 -1.179451704025269 0.3430816829204559 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.7675982117652893 0.4213694334030151 -0.2747071981430054 0.7675982117652893 0.4213694334030151 -0.2747071981430054 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.623918354511261 -1.647485733032227 -0.3367124497890472 0.623918354511261 -1.647485733032227 -0.3367124497890472 0.3913919627666473 -1.744363188743591 -0.3111516833305359 0.3913919627666473 -1.744363188743591 -0.3111516833305359 0.600512683391571 -1.647485733032227 -0.3367124497890472 0.600512683391571 -1.647485733032227 -0.3367124497890472 -0.1950719803571701 -1.911460518836975 -0.2640201151371002 -0.1950719803571701 -1.911460518836975 -0.2640201151371002 0.1916532665491104 -1.99778163433075 -0.09787315130233765 0.1916532665491104 -1.99778163433075 -0.09787315130233765 0.6716429591178894 -1.473710179328919 0.3142852187156677 0.6716429591178894 -1.473710179328919 0.3142852187156677 0.7121022939682007 -1.478913545608521 0.3202499747276306 0.7121022939682007 -1.478913545608521 0.3202499747276306 0.7152735590934753 -1.030174612998962 0.3453765213489533 0.7152735590934753 -1.030174612998962 0.3453765213489533 0.6476567387580872 -1.602483987808228 0.2705280482769013 0.6476567387580872 -1.602483987808228 0.2705280482769013 0.6174612641334534 -1.742636442184448 0.2377863973379135 0.6174612641334534 -1.742636442184448 0.2377863973379135 0.7675982117652893 0.3214001655578613 -0.2747071981430054 0.7675982117652893 0.3214001655578613 -0.2747071981430054 0.7682967782020569 0.8992693424224854 -0.2752210795879364 0.7682967782020569 0.8992693424224854 -0.2752210795879364 0.7332086563110352 -1.634256482124329 -0.3076135516166687 0.7332086563110352 -1.634256482124329 -0.3076135516166687 0.6506040692329407 -1.644188165664673 -0.3349318206310272 0.6506040692329407 -1.644188165664673 -0.3349318206310272 0.1921732872724533 -1.911460518836975 -0.264020174741745 0.1921732872724533 -1.911460518836975 -0.264020174741745 0.388426661491394 -1.911460518836975 -0.264020174741745 0.388426661491394 -1.911460518836975 -0.264020174741745 0.5978718400001526 -1.744363188743591 -0.3092606365680695 0.5978718400001526 -1.744363188743591 -0.3092606365680695 -0.001449264585971832 -1.911460518836975 -0.264020174741745 -0.001449264585971832 -1.911460518836975 -0.264020174741745 -0.198796808719635 -1.951626658439636 -0.2179252803325653 -0.198796808719635 -1.951626658439636 -0.2179252803325653 0.3745077848434448 -2.007932424545288 -0.03081386722624302 0.3745077848434448 -2.007932424545288 -0.03081386722624302 0.37086620926857 -1.973503470420837 0.07559454441070557 0.37086620926857 -1.973503470420837 0.07559454441070557 -0.001449264585971832 -1.951626658439636 -0.2179252803325653 -0.001449264585971832 -1.951626658439636 -0.2179252803325653 0.1942282319068909 -1.982554078102112 -0.1579129248857498 0.1942282319068909 -1.982554078102112 -0.1579129248857498 0.7445815801620483 -1.294782400131226 0.2903444766998291 0.7445815801620483 -1.294782400131226 0.2903444766998291 0.746989369392395 -1.477022528648377 0.2740126550197601 0.746989369392395 -1.477022528648377 0.2740126550197601 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.7435510754585266 -1.17504346370697 0.2979675829410553 0.7435510754585266 -1.17504346370697 0.2979675829410553 0.5079431533813477 -1.828675627708435 0.210712805390358 0.5079431533813477 -1.828675627708435 0.210712805390358 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7780932784080505 0.9031000733375549 -0.2496751993894577 0.7780932784080505 0.9031000733375549 -0.2496751993894577 0.7614982724189758 -1.623395562171936 -0.2698330581188202 0.7614982724189758 -1.623395562171936 -0.2698330581188202 0.6792197823524475 -1.645132303237915 -0.3384934961795807 0.6792197823524475 -1.645132303237915 -0.3384934961795807 0.6400778889656067 -1.748111844062805 -0.3091297447681427 0.6400778889656067 -1.748111844062805 -0.3091297447681427 0.6196064352989197 -1.746745824813843 -0.313042551279068 0.6196064352989197 -1.746745824813843 -0.313042551279068 0.6022922396659851 -1.911460518836975 -0.264020174741745 0.6022922396659851 -1.911460518836975 -0.264020174741745 0.3976193964481354 -1.99778163433075 -0.09787315130233765 0.3976193964481354 -1.99778163433075 -0.09787315130233765 0.351957768201828 -1.969097256660461 0.0834038257598877 0.351957768201828 -1.969097256660461 0.0834038257598877 0.7127406597137451 -1.612327575683594 0.3050930202007294 0.7127406597137451 -1.612327575683594 0.3050930202007294 0.6696393489837647 -1.600142955780029 0.2973578274250031 0.6696393489837647 -1.600142955780029 0.2973578274250031 0.7474879622459412 -1.605847239494324 0.2616663873195648 0.7474879622459412 -1.605847239494324 0.2616663873195648 0.7182532548904419 -0.8380235433578491 0.3453765213489533 0.7182532548904419 -0.8380235433578491 0.3453765213489533 0.7452688217163086 -1.030174612998962 0.297200620174408 0.7452688217163086 -1.030174612998962 0.297200620174408 0.6462497711181641 -1.744982481002808 0.2377863973379135 0.6462497711181641 -1.744982481002808 0.2377863973379135 0.6161529421806335 -1.828675627708435 0.2114831358194351 0.6161529421806335 -1.828675627708435 0.2114831358194351 0.7675982117652893 -0.4633741080760956 -0.2747071981430054 0.7675982117652893 -0.4633741080760956 -0.2747071981430054 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.7626872658729553 -1.73902428150177 -0.2654593288898468 0.7626872658729553 -1.73902428150177 -0.2654593288898468 0.7248597741127014 -1.743023633956909 -0.3158882260322571 0.7248597741127014 -1.743023633956909 -0.3158882260322571 0.6639117002487183 -1.748111844062805 -0.3100373148918152 0.6639117002487183 -1.748111844062805 -0.3100373148918152 0.3908311724662781 -1.951626658439636 -0.2179252803325653 0.3908311724662781 -1.951626658439636 -0.2179252803325653 0.1958980262279511 -1.951626658439636 -0.2179252803325653 0.1958980262279511 -1.951626658439636 -0.2179252803325653 0.6064390540122986 -1.951626658439636 -0.2170951366424561 0.6064390540122986 -1.951626658439636 -0.2170951366424561 0.6274524927139282 -1.911460518836975 -0.2618311941623688 0.6274524927139282 -1.911460518836975 -0.2618311941623688 0.613976776599884 -2.00648832321167 -0.03038886189460754 0.613976776599884 -2.00648832321167 -0.03038886189460754 0.6011803150177002 -1.973503470420837 0.07559454441070557 0.6011803150177002 -1.973503470420837 0.07559454441070557 0.4209894239902496 -1.952623009681702 0.1164684295654297 0.4209894239902496 -1.952623009681702 0.1164684295654297 0.3978218138217926 -1.982554078102112 -0.1579129248857498 0.3978218138217926 -1.982554078102112 -0.1579129248857498 0.7757121920585632 -1.4743812084198 0.2122804075479507 0.7757121920585632 -1.4743812084198 0.2122804075479507 0.7717577815055847 -1.300840497016907 0.2215401381254196 0.7717577815055847 -1.300840497016907 0.2215401381254196 0.7790074944496155 -1.59941303730011 0.1968471556901932 0.7790074944496155 -1.59941303730011 0.1968471556901932 0.7452688217163086 -0.8389725685119629 0.2947215437889099 0.7452688217163086 -0.8389725685119629 0.2947215437889099 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7717577815055847 -1.188867688179016 0.2275206297636032 0.7717577815055847 -1.188867688179016 0.2275206297636032 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7776272892951965 -1.615131855010986 -0.2230612486600876 0.7776272892951965 -1.615131855010986 -0.2230612486600876 0.7791553735733032 -1.731492877006531 -0.2158130407333374 0.7791553735733032 -1.731492877006531 -0.2158130407333374 0.6969878077507019 -1.74457848072052 -0.3189046382904053 0.6969878077507019 -1.74457848072052 -0.3189046382904053 0.6495630145072937 -1.911460518836975 -0.2634732127189636 0.6495630145072937 -1.911460518836975 -0.2634732127189636 0.6309284567832947 -1.951574444770813 -0.2168276309967041 0.6309284567832947 -1.951574444770813 -0.2168276309967041 0.6126948595046997 -1.99778163433075 -0.09729073196649551 0.6126948595046997 -1.99778163433075 -0.09729073196649551 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7125467658042908 -1.752095222473145 0.2910460829734802 0.7125467658042908 -1.752095222473145 0.2910460829734802 0.7611239552497864 -1.752110004425049 0.2460802644491196 0.7611239552497864 -1.752110004425049 0.2460802644491196 0.6676357984542847 -1.744048237800598 0.2750363051891327 0.6676357984542847 -1.744048237800598 0.2750363051891327 0.7814652919769287 -1.743004322052002 0.1827057152986527 0.7814652919769287 -1.743004322052002 0.1827057152986527 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.7717577815055847 -1.029682159423828 0.2270265072584152 0.7717577815055847 -1.029682159423828 0.2270265072584152 0.7717577815055847 -0.8304092884063721 0.2270265072584152 0.7717577815055847 -0.8304092884063721 0.2270265072584152 0.6456993222236633 -1.828809261322022 0.2115316838026047 0.6456993222236633 -1.828809261322022 0.2115316838026047 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7791553735733032 -1.859680533409119 -0.2195352166891098 0.7791553735733032 -1.859680533409119 -0.2195352166891098 0.7543383836746216 -1.859680533409119 -0.2654593288898468 0.7543383836746216 -1.859680533409119 -0.2654593288898468 0.7276512980461121 -1.908180832862854 -0.2644224464893341 0.7276512980461121 -1.908180832862854 -0.2644224464893341 0.6777392029762268 -1.948328375816345 -0.2634787857532501 0.6777392029762268 -1.948328375816345 -0.2634787857532501 0.6101319193840027 -1.981651902198792 -0.1575021743774414 0.6101319193840027 -1.981651902198792 -0.1575021743774414 0.6313349008560181 -1.982501864433289 -0.1579913049936295 0.6313349008560181 -1.982501864433289 -0.1579913049936295 0.6572094559669495 -1.986838221549988 -0.216516375541687 0.6572094559669495 -1.986838221549988 -0.216516375541687 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.604820966720581 0.05439910665154457 0.7982441186904907 -1.604820966720581 0.05439910665154457 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.7977098822593689 -1.604159355163574 -0.155659943819046 0.7977098822593689 -1.604159355163574 -0.155659943819046 0.7931743264198303 -1.858019590377808 -0.1583313196897507 0.7931743264198303 -1.858019590377808 -0.1583313196897507 0.6590888500213623 -2.02424168586731 -0.1575844436883926 0.6590888500213623 -2.02424168586731 -0.1575844436883926 0.6355575323104858 -1.997578978538513 -0.09881686419248581 0.6355575323104858 -1.997578978538513 -0.09881686419248581 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7669368982315064 -1.831026315689087 0.2328774482011795 0.7669368982315064 -1.831026315689087 0.2328774482011795 0.7830662131309509 -1.849237442016602 0.1747838407754898 0.7830662131309509 -1.849237442016602 0.1747838407754898 0.6644447445869446 -1.82667601108551 0.2628661394119263 0.6644447445869446 -1.82667601108551 0.2628661394119263 0.7982441186904907 -1.746039509773254 0.05331587418913841 0.7982441186904907 -1.746039509773254 0.05331587418913841 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7931743264198303 -1.730340600013733 -0.1583104282617569 0.7931743264198303 -1.730340600013733 -0.1583104282617569 0.7820088863372803 -1.98232901096344 -0.1583313196897507 0.7820088863372803 -1.98232901096344 -0.1583313196897507 0.7694445252418518 -1.952685952186585 -0.2173483222723007 0.7694445252418518 -1.952685952186585 -0.2173483222723007 0.7453804016113281 -1.984729170799255 -0.2173768430948257 0.7453804016113281 -1.984729170799255 -0.2173768430948257 0.6950770616531372 -2.006107807159424 -0.2173768430948257 0.6950770616531372 -2.006107807159424 -0.2173768430948257 0.6639816164970398 -2.044581174850464 -0.09905537962913513 0.6639816164970398 -2.044581174850464 -0.09905537962913513 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7117041945457459 -1.817547917366028 0.285483330488205 0.8151856660842896 -1.344445824623108 0.08846646547317505 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.8151856660842896 -1.344445824623108 0.08846646547317505 0.8169910311698914 -1.411396861076355 0.03317912295460701 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.8169910311698914 -1.411396861076355 0.03317912295460701 0.7982441186904907 -1.597437262535095 -0.02763602323830128 0.7982441186904907 -1.597437262535095 -0.02763602323830128 0.8105422854423523 -1.233547210693359 0.1249729543924332 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.8105422854423523 -1.233547210693359 0.1249729543924332 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.8087496757507324 -1.128642797470093 0.1301879435777664 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.8087496757507324 -1.128642797470093 0.1301879435777664 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.8111097812652588 -0.7940167188644409 -0.08648346364498138 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.8111097812652588 -0.7940167188644409 -0.08648346364498138 0.7982441186904907 -1.597437262535095 -0.09717599302530289 0.7982441186904907 -1.597437262535095 -0.09717599302530289 0.7982441186904907 -1.859525799751282 -0.0991249606013298 0.7982441186904907 -1.859525799751282 -0.0991249606013298 0.7850413918495178 -1.996179938316345 -0.0991249606013298 0.7850413918495178 -1.996179938316345 -0.0991249606013298 0.7068971991539002 -2.044126987457275 -0.1583652049303055 0.7068971991539002 -2.044126987457275 -0.1583652049303055 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7982441186904907 -1.85834276676178 0.05595642700791359 0.7982441186904907 -1.85834276676178 0.05595642700791359 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.739925384521484 -0.0306595154106617 0.7982441186904907 -1.739925384521484 -0.0306595154106617 0.8131956458091736 -1.033355116844177 0.1124019175767899 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.8131956458091736 -1.033355116844177 0.1124019175767899 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.8178597688674927 -0.8301818370819092 -0.02805159240961075 0.8178597688674927 -0.8301818370819092 -0.02805159240961075 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.731833338737488 -0.09522708505392075 0.7982441186904907 -1.731833338737488 -0.09522708505392075 0.7626733183860779 -2.044323444366455 -0.09895889461040497 0.7626733183860779 -2.044323444366455 -0.09895889461040497 0.7576038241386414 -2.023205518722534 -0.1581518948078156 0.7576038241386414 -2.023205518722534 -0.1581518948078156 0.7113782167434692 -2.065833806991577 -0.09944543987512589 0.7113782167434692 -2.065833806991577 -0.09944543987512589 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.8124783635139465 -1.476347923278809 -0.05023443698883057 0.8124783635139465 -1.476347923278809 -0.05023443698883057 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.8165122270584106 -0.9438937306404114 0.07964269816875458 0.8165122270584106 -0.9438937306404114 0.07964269816875458 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -1.861560702323914 -0.0306595154106617 0.7982441186904907 -1.861560702323914 -0.0306595154106617 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.8178598284721375 -0.8697569370269775 0.02455062046647072 0.8178598284721375 -0.8697569370269775 0.02455062046647072 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1483\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1024\" source=\"#ID1486\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"3072\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1486\">-0.9771900185215559 -0.001586737603416483 -0.2123608955660601 -0.9790417160505522 3.292227695633877e-018 -0.2036598100578263 -0.9999689324618893 1.894445986804272e-005 -0.007882496567513529 0.9999689324618893 -1.894445986804272e-005 0.007882496567513529 0.9790417160505522 -3.292227695633877e-018 0.2036598100578263 0.9771900185215559 0.001586737603416483 0.2123608955660601 -0.9502911551307772 0.0007757361223652627 -0.3113617168402076 0.9502911551307772 -0.0007757361223652627 0.3113617168402076 -0.9999188006678761 -0.0001738576127736409 -0.01274212872509091 0.9999188006678761 0.0001738576127736409 0.01274212872509091 -0.9999689326413301 -8.358683530417662e-019 -0.007882496568928017 0.9999689326413301 8.358683530417662e-019 0.007882496568928017 -0.9432849430408019 0.01059441770911542 -0.3318151210326555 0.9432849430408019 -0.01059441770911542 0.3318151210326555 -0.9472204709051849 -0.002797125391854481 -0.3205706717522704 0.9472204709051849 0.002797125391854481 0.3205706717522704 -0.9822519876469651 -0.005061664463367821 -0.1874977661638847 0.9822519876469651 0.005061664463367821 0.1874977661638847 -0.9790417160505522 -1.045811182739211e-019 -0.2036598100578265 -0.9999689326413301 2.170208064185533e-019 -0.007882496568928015 0.9999689326413301 -2.170208064185533e-019 0.007882496568928015 0.9790417160505522 1.045811182739211e-019 0.2036598100578265 -0.9968881233310588 0.008087498311279936 -0.07841340403620074 0.9968881233310588 -0.008087498311279936 0.07841340403620074 -0.9989409175778646 -0.0347494603399221 -0.0301582193568878 0.9989409175778646 0.0347494603399221 0.0301582193568878 -0.9999689326413301 0 -0.007882496568928017 -0.9999689326413301 0 -0.007882496568928017 0.9999689326413301 -0 0.007882496568928017 0.9999689326413301 -0 0.007882496568928017 -0.8994369480327905 7.741777964543919e-018 -0.4370505422871128 0.8994369480327905 -7.741777964543919e-018 0.4370505422871128 -0.9970361569647415 0.007947672178051453 -0.07652278230651169 0.9970361569647415 -0.007947672178051453 0.07652278230651169 -0.9639392879483925 -0.000743497724044367 -0.266121206146148 0.9639392879483925 0.000743497724044367 0.266121206146148 -0.9974070143424252 -0.06128363998301194 -0.03773013664117783 0.9974070143424252 0.06128363998301194 0.03773013664117783 -0.9781157939340335 1.481576469783222e-018 -0.2080612738036459 -0.9999689326413301 3.8116225473858e-019 -0.007882496568928013 0.9999689326413301 -3.8116225473858e-019 0.007882496568928013 0.9781157939340335 -1.481576469783222e-018 0.2080612738036459 -0.9663092415749675 0.004883560455926994 -0.2573375224954274 0.9663092415749675 -0.004883560455926994 0.2573375224954274 -0.9991782421800318 0.001610189992179519 0.04049997089148081 0.9991782421800318 -0.001610189992179519 -0.04049997089148081 -0.9790874310059494 0.0008247154921036521 -0.2034382517879249 0.9790874310059494 -0.0008247154921036521 0.2034382517879249 -0.9852274316154588 -0.004011911017639334 -0.1712040086049179 0.9852274316154588 0.004011911017639334 0.1712040086049179 -0.9999689326413301 0 -0.007882496568928019 -0.9999689326413301 0 -0.007882496568928019 0.9999689326413301 -0 0.007882496568928019 0.9999689326413301 -0 0.007882496568928019 -0.9971892225895257 0.02017482648119507 -0.07215698668702252 0.9971892225895257 -0.02017482648119507 0.07215698668702252 -0.9992120642586049 0.001957573758255666 0.03964112189430344 0.9992120642586049 -0.001957573758255666 -0.03964112189430344 -0.9856172416564362 0.002474734662910435 -0.1689749349397905 0.9856172416564362 -0.002474734662910435 0.1689749349397905 -0.9663855598534248 -0.001290974715952425 -0.2570939188138557 0.9663855598534248 0.001290974715952425 0.2570939188138557 -0.9999575158879286 -0.001434488811743013 -0.009105419325431454 0.9999575158879286 0.001434488811743013 0.009105419325431454 -0.9890265936715046 0.006176024749959835 0.1476084473491557 0.9890265936715046 -0.006176024749959835 -0.1476084473491557 -0.984522798150021 -0.0004074915144433557 -0.1752560808460546 0.984522798150021 0.0004074915144433557 0.1752560808460546 -0.9996823142354346 0.002893836478710463 0.02503789758186764 0.9996823142354346 -0.002893836478710463 -0.02503789758186764 -0.8613334865459467 0.4933852669413169 0.1211429045377775 -0.8645448626999024 0.4903430408955166 0.1101175854463976 -0.8544213626011464 0.5186865821214917 0.03046907707701686 0.8544213626011464 -0.5186865821214917 -0.03046907707701686 0.8645448626999024 -0.4903430408955166 -0.1101175854463976 0.8613334865459467 -0.4933852669413169 -0.1211429045377775 -0.9891518293142284 0.006988410326678562 0.1467304354434402 0.9891518293142284 -0.006988410326678562 -0.1467304354434402 -0.9837721987850511 -0.003801302179372787 -0.1793817465612573 0.9837721987850511 0.003801302179372787 0.1793817465612573 -1 0 0 1 -0 -0 -0.850767997898328 0.4522143794921146 0.2677610291521756 0.850767997898328 -0.4522143794921146 -0.2677610291521756 -0.9618276394508243 0.002839871854348845 0.2736412379673534 0.9618276394508243 -0.002839871854348845 -0.2736412379673534 -0.8572897278184025 0.4462273448013313 0.2567790476822494 0.8572897278184025 -0.4462273448013313 -0.2567790476822494 -0.9982061105512535 0.003222709143129392 0.05978440435361971 0.9982061105512535 -0.003222709143129392 -0.05978440435361971 -0.9591399644253476 0.0013276724258438 0.2829289061373419 0.9591399644253476 -0.0013276724258438 -0.2829289061373419 -0.8876118350170518 0.3295661439206302 0.3217629362107274 0.8876118350170518 -0.3295661439206302 -0.3217629362107274 -0.8977361771613399 0.3250774706096561 0.2973119478221008 0.8977361771613399 -0.3250774706096561 -0.2973119478221008 -0.9902348384620743 0.004109082403179794 0.1393487715690145 0.9902348384620743 -0.004109082403179794 -0.1393487715690145 -0.8566503694453361 0.002446876006654095 0.5158916139335636 0.8566503694453361 -0.002446876006654095 -0.5158916139335636 -0.9020856819345563 0.1863441929453943 0.3892521858695155 0.9020856819345563 -0.1863441929453943 -0.3892521858695155 -0.9867764024740569 0.004515207692181317 0.1620245179590255 0.9867764024740569 -0.004515207692181317 -0.1620245179590255 -0.8425063325319582 0.01555040831455135 0.5384619433579316 0.8425063325319582 -0.01555040831455135 -0.5384619433579316 -0.906121976113601 0.1894976602978684 0.3781978333433655 0.906121976113601 -0.1894976602978684 -0.3781978333433655 -0.9598789165785798 -0.003077378431222278 0.280397923048518 0.9598789165785798 0.003077378431222278 -0.280397923048518 -0.6347609883576616 0.01155324137621323 0.7726221652741446 0.6347609883576616 -0.01155324137621323 -0.7726221652741446 -0.8966819075516134 0.07771590752586575 0.435800177130564 0.8966819075516134 -0.07771590752586575 -0.435800177130564 -0.9785891255823827 0.003221788367465404 0.2057983075042719 0.9785891255823827 -0.003221788367465404 -0.2057983075042719 -0.9607776263730951 0.00201443888784302 0.277312629890614 0.9607776263730951 -0.00201443888784302 -0.277312629890614 -0.6983489367023467 0.04961210116549678 0.7140359949082725 0.6983489367023467 -0.04961210116549678 -0.7140359949082725 -0.900604689928327 0.09010029011729324 0.425197754227232 0.900604689928327 -0.09010029011729324 -0.425197754227232 -0.9588346583016721 0.0008326970514992843 0.2839637382750413 0.9588346583016721 -0.0008326970514992843 -0.2839637382750413 -0.9164147169425765 -0.00910325530792762 0.4001264766468924 0.9164147169425765 0.00910325530792762 -0.4001264766468924 -0.4464505246919321 0.03803327876922855 0.8939996637070737 0.4464505246919321 -0.03803327876922855 -0.8939996637070737 -0.8969034603948126 0.0200156497148593 0.4417731957671298 0.8969034603948126 -0.0200156497148593 -0.4417731957671298 -0.9765428707314156 0.0004992186759849619 0.2153224846697605 0.9765428707314156 -0.0004992186759849619 -0.2153224846697605 -0.895520692734899 -0.0002651310475007681 0.445019795727262 0.895520692734899 0.0002651310475007681 -0.445019795727262 -0.9072315228553386 -0.007386263429703882 0.4205667688371613 0.9072315228553386 0.007386263429703882 -0.4205667688371613 -0.5151201333405083 0.05762348945996668 0.8551788010057979 0.5151201333405083 -0.05762348945996668 -0.8551788010057979 -0.8963849877349819 0.01799898941747728 0.4429108151121465 0.8963849877349819 -0.01799898941747728 -0.4429108151121465 -0.9550607048378887 -0.008595199200161906 0.296285626761179 0.9550607048378887 0.008595199200161906 -0.296285626761179 -0.6083268790154661 -0.01773804223761951 0.7934883553807698 0.6083268790154661 0.01773804223761951 -0.7934883553807698 -0.206533912779653 0.01312869502328621 0.9783513582751915 0.206533912779653 -0.01312869502328621 -0.9783513582751915 -0.8950561340727541 -0.05500856952533083 0.4425478213001536 0.8950561340727541 0.05500856952533083 -0.4425478213001536 -0.974817159690307 -0.01264423724930605 0.2226468693642596 0.974817159690307 0.01264423724930605 -0.2226468693642596 -0.4492757287568513 -0.01816108521842438 0.8932085392189718 0.4492757287568513 0.01816108521842438 -0.8932085392189718 -0.8847410800965309 -0.01757427319378755 0.4657513994732964 0.8847410800965309 0.01757427319378755 -0.4657513994732964 -0.5575023998409231 0.02727996565469962 0.8297269898258644 0.5575023998409231 -0.02727996565469962 -0.8297269898258644 -0.1934309920620744 0.00141326582144325 0.9811128650617114 0.1934309920620744 -0.00141326582144325 -0.9811128650617114 -0.8919664970414266 -0.06944743650307948 0.4467357403642531 0.8919664970414266 0.06944743650307948 -0.4467357403642531 -0.9558315403963276 -0.00754370464283368 0.2938182412714452 0.9558315403963276 0.00754370464283368 -0.2938182412714452 -0.2476666920797232 -0.02438408932794591 0.9685383966688849 0.2476666920797232 0.02438408932794591 -0.9685383966688849 -0.07432341848991311 0.01114049535973943 0.9971719605098774 0.07432341848991311 -0.01114049535973943 -0.9971719605098774 -0.8879690242672579 -0.2040393937551356 0.4121637268585031 0.8879690242672579 0.2040393937551356 -0.4121637268585031 -0.984245975666149 -0.01640619454133032 0.1760417455198129 0.984245975666149 0.01640619454133032 -0.1760417455198129 -0.470586420836446 -0.03092208977332432 0.8818119101534031 0.470586420836446 0.03092208977332432 -0.8818119101534031 -0.8765304281839281 -0.02677057613336905 0.4806014406149725 0.8765304281839281 0.02677057613336905 -0.4806014406149725 -0.1228183054958481 -0.111129705670554 0.9861875340688021 0.1228183054958481 0.111129705670554 -0.9861875340688021 -0.1422524387013631 0.08650520172209436 0.9860431500489898 0.1422524387013631 -0.08650520172209436 -0.9860431500489898 -0.07722944505424488 0.01429695874918533 0.9969108334184845 0.07722944505424488 -0.01429695874918533 -0.9969108334184845 -0.8856001506157596 -0.207145051657605 0.4156961640466651 0.8856001506157596 0.207145051657605 -0.4156961640466651 -0.9565582953355224 -0.01332882085912952 0.2912362789202348 0.9565582953355224 0.01332882085912952 -0.2912362789202348 -0.3283505887844118 0.3306960167614941 0.8847745675272385 0.3283505887844118 -0.3306960167614941 -0.8847745675272385 9.355723527338429e-009 0.0186001828842623 0.9998270016341188 -9.355723527338429e-009 -0.0186001828842623 -0.9998270016341188 -0.8949706469360677 -0.3243746580670968 0.3062819327461068 0.8949706469360677 0.3243746580670968 -0.3062819327461068 -0.9951376548752913 -0.01258038220657256 0.09768716309138305 0.9951376548752913 0.01258038220657256 -0.09768716309138305 0.02441341528062479 -0.04018947456705912 0.9988937837870248 -0.02441341528062479 0.04018947456705912 -0.9988937837870248 -0.3415286992173654 -0.08847586848124532 0.9356976906604951 0.3415286992173654 0.08847586848124532 -0.9356976906604951 -0.8571769674024923 -0.04022818316830723 0.5134484782659736 0.8571769674024923 0.04022818316830723 -0.5134484782659736 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 7.367702913516951e-009 -0.02830913765764351 0.9995992160486525 -0.1992518788334495 -0.01139878853772022 0.9798820114693465 -0.05013526873064869 0.01986799350556079 0.9985448000282053 0.05013526873064869 -0.01986799350556079 -0.9985448000282053 0.1992518788334495 0.01139878853772022 -0.9798820114693465 -7.367702913516951e-009 0.02830913765764351 -0.9995992160486525 -0.8971048502216629 -0.321983413427523 0.3025385416543298 0.8971048502216629 0.321983413427523 -0.3025385416543298 -0.9578180503286586 -0.01408032653443589 0.2870301845961338 0.9578180503286586 0.01408032653443589 -0.2870301845961338 0.02350686145086761 -0.05281539590359781 0.9983275822195219 -0.02350686145086761 0.05281539590359781 -0.9983275822195219 0.05013529181632081 0.01986798553163498 0.9985447990277688 0.1992520465395727 -0.01139743910568457 0.9798819930642794 0.07722949104593611 0.01429697516615458 0.996910829620124 -0.1992520465395727 0.01139743910568457 -0.9798819930642794 -0.07722949104593611 -0.01429697516615458 -0.996910829620124 -0.05013529181632081 -0.01986798553163498 -0.9985447990277688 -0.873379065742168 -0.435637042386647 0.2177828616396445 0.873379065742168 0.435637042386647 -0.2177828616396445 -0.9978102123183206 -0.0002979809767365266 0.06614144994332498 0.9978102123183206 0.0002979809767365266 -0.06614144994332498 0.1392324360751088 -0.1282270959827192 0.9819226754691173 -0.1392324360751088 0.1282270959827192 -0.9819226754691173 -0.004151361905557766 -0.1530036777795603 0.988216899663357 0.004151361905557766 0.1530036777795603 -0.988216899663357 -0.1091464427993047 -0.1854747968576843 0.9765685607036809 0.1091464427993047 0.1854747968576843 -0.9765685607036809 -0.3680833179199177 -0.08538772445546562 0.9258637089665964 0.3680833179199177 0.08538772445546562 -0.9258637089665964 -0.8512027761381504 -0.02536012167907416 0.5242239007553247 0.8512027761381504 0.02536012167907416 -0.5242239007553247 0.07432345455429569 0.01114044357539076 0.997171958400385 -0.07432345455429569 -0.01114044357539076 -0.997171958400385 -0.8574598469235982 -0.4841012329394283 0.1743806387770306 0.8574598469235982 0.4841012329394283 -0.1743806387770306 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 -0.9733832727178078 0.007736198347291853 0.229052735474391 0.9733832727178078 -0.007736198347291853 -0.229052735474391 -0.003101175158944016 -0.1523881894354768 0.9883158515541531 0.003101175158944016 0.1523881894354768 -0.9883158515541531 0.001450612072996214 -0.04482941980428752 0.9989936030048563 -0.001450612072996214 0.04482941980428752 -0.9989936030048563 0.1934307639629917 0.001412657525049151 0.9811129109085307 -0.1934307639629917 -0.001412657525049151 -0.9811129109085307 -0.8682198219329231 -0.4898573784628851 0.07895625097630328 0.8682198219329231 0.4898573784628851 -0.07895625097630328 -0.9999426757569431 -0.005924605813726535 -0.008918758097251045 0.9999426757569431 0.005924605813726535 0.008918758097251045 -0.9979816137896427 0.0007788093903403534 0.06349875584414082 0.9979816137896427 -0.0007788093903403534 -0.06349875584414082 0.4190664890064954 -0.09024923546223157 0.9034591043817376 -0.4190664890064954 0.09024923546223157 -0.9034591043817376 0.3293576436016264 -0.1512844787638046 0.932006732318146 -0.3293576436016264 0.1512844787638046 -0.932006732318146 0.003468750218861239 -0.1849306565179608 0.9827454502829077 -0.003468750218861239 0.1849306565179608 -0.9827454502829077 -0.0771747638042234 -0.2197377985821765 0.9725015967627102 0.0771747638042234 0.2197377985821765 -0.9725015967627102 -0.3332161310673002 -0.08667606909295655 0.9388579599934874 0.3332161310673002 0.08667606909295655 -0.9388579599934874 -0.8471829494023482 -0.01871022510968509 0.5309717296789758 0.8471829494023482 0.01871022510968509 -0.5309717296789758 0.206534672424648 0.01312835379791649 0.9783512024896787 -0.206534672424648 -0.01312835379791649 -0.9783512024896787 -0.8751933954880818 -0.4789510829348484 0.06813501779245279 0.8751933954880818 0.4789510829348484 -0.06813501779245279 -0.9999943641874873 0.0002114853066728545 -0.003350651761670484 0.9999943641874873 -0.0002114853066728545 0.003350651761670484 -0.9992194764740899 0.0003249760845030904 -0.03950104081401198 0.9992194764740899 -0.0003249760845030904 0.03950104081401198 -1 0 0 1 -0 -0 -0.9765685441597449 -0.04566527106811754 0.2103058762279164 0.9765685441597449 0.04566527106811754 -0.2103058762279164 0.003607103899563249 -0.1873518661177469 0.9822862449732541 -0.003607103899563249 0.1873518661177469 -0.9822862449732541 0.00602688632923911 -0.1563124366892208 0.9876892723814776 -0.00602688632923911 0.1563124366892208 -0.9876892723814776 0.001251671320043853 -0.04183185705672599 0.9991238807345625 -0.001251671320043853 0.04183185705672599 -0.9991238807345625 0.5151195527131143 0.05762274208745132 0.8551792011075597 -0.5151195527131143 -0.05762274208745132 -0.8551792011075597 -0.9903947707187708 -0.004947155871302164 -0.1381800411843137 0.9903947707187708 0.004947155871302164 0.1381800411843137 -0.9878663656498398 -0.009852017467930564 -0.1549934881522087 0.9878663656498398 0.009852017467930564 0.1549934881522087 -0.996482872850571 -0.05726756133441097 0.06117442712671616 0.996482872850571 0.05726756133441097 -0.06117442712671616 0.526348044934525 -0.1131629593586895 0.8427050968297194 -0.526348044934525 0.1131629593586895 -0.8427050968297194 0.4173686971612756 -0.1778874320780186 0.8911562332939087 -0.4173686971612756 0.1778874320780186 -0.8911562332939087 0.005222164543497156 -0.2092035110452315 0.9778581798828645 -0.005222164543497156 0.2092035110452315 -0.9778581798828645 0.007545316719704674 -0.2110414645011939 0.9774479875966754 -0.007545316719704674 0.2110414645011939 -0.9774479875966754 -0.01969785890737417 -0.2616664220722393 0.9649573451269117 0.01969785890737417 0.2616664220722393 -0.9649573451269117 -0.2014758556225803 -0.1015170915729863 0.9742185379675912 0.2014758556225803 0.1015170915729863 -0.9742185379675912 -0.868201468219757 -0.02383906889302845 0.4956388900957751 0.868201468219757 0.02383906889302845 -0.4956388900957751 0.4464522679055878 0.03803370703448546 0.8939987749494807 -0.4464522679055878 -0.03803370703448546 -0.8939987749494807 -0.9898172877087869 -0.01510264998941633 -0.1415402660592297 0.9898172877087869 0.01510264998941633 0.1415402660592297 -0.9981408894568261 -0.06091817756761343 0.001934020728103332 0.9981408894568261 0.06091817756761343 -0.001934020728103332 -0.9978372472000537 -0.05127472324472305 -0.04113065591983561 0.9978372472000537 0.05127472324472305 0.04113065591983561 -0.986834032541885 -0.03790333343156378 0.1572320881114841 0.986834032541885 0.03790333343156378 -0.1572320881114841 0.02477291592964374 -0.1906352083191541 0.9813483173600776 -0.02477291592964374 0.1906352083191541 -0.9813483173600776 -0.002328718950658374 -0.1360208146346536 0.990703242678742 0.002328718950658374 0.1360208146346536 -0.990703242678742 -0.001031618229602105 -0.04511816296389461 0.9989811245136676 0.001031618229602105 0.04511816296389461 -0.9989811245136676 0.6983491129304112 0.04961305488200415 0.7140357562857639 -0.6983491129304112 -0.04961305488200415 -0.7140357562857639 -0.9509233179690119 -0.008522740260876977 -0.3093092404718151 0.9509233179690119 0.008522740260876977 0.3093092404718151 -0.9603612407120864 -0.004049774339899059 -0.2787290560127123 0.9603612407120864 0.004049774339899059 0.2787290560127123 -0.9870724976498742 -0.04346784834016133 -0.1542673994851666 0.9870724976498742 0.04346784834016133 0.1542673994851666 -0.9981388138662855 -0.05180664955192778 0.03217109441421623 0.9981388138662855 0.05180664955192778 -0.03217109441421623 0.6592718697604481 -0.1055100362959731 0.7444650656568009 -0.6592718697604481 0.1055100362959731 -0.7444650656568009 0.5028544664240005 -0.2156034093731595 0.8370499121701784 -0.5028544664240005 0.2156034093731595 -0.8370499121701784 0.01543515840224038 -0.257605509409122 0.9661268847346939 -0.01543515840224038 0.257605509409122 -0.9661268847346939 0.01238193944210214 -0.2569872685258789 0.9663354652455121 -0.01238193944210214 0.2569872685258789 -0.9663354652455121 0.005615760653294178 -0.2129790952388896 0.9770406174891138 -0.005615760653294178 0.2129790952388896 -0.9770406174891138 -0.005662748884652038 -0.3003436078411413 0.9538142641542096 0.005662748884652038 0.3003436078411413 -0.9538142641542096 -0.6724794224102589 -0.05649842023248849 0.737956201238256 0.6724794224102589 0.05649842023248849 -0.737956201238256 -0.8365327615396679 -0.08000809676405099 0.5420439496231012 0.8365327615396679 0.08000809676405099 -0.5420439496231012 0.6347615283535828 0.01155433665977158 0.772621705252044 -0.6347615283535828 -0.01155433665977158 -0.772621705252044 -0.9519190478961309 -0.005574400389519616 -0.3062989590462578 0.9519190478961309 0.005574400389519616 0.3062989590462578 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 -0.964539282200069 -0.2580563926064153 -0.05541544304559113 0.964539282200069 0.2580563926064153 0.05541544304559113 0.442655489608497 -0.1319682527915336 0.8869275606128225 -0.442655489608497 0.1319682527915336 -0.8869275606128225 2.605657906526417e-009 -0.1300025924816046 0.9915136539392998 -2.605657906526417e-009 0.1300025924816046 -0.9915136539392998 -7.067358788118902e-011 -0.04362721548871919 0.9990478797678822 7.067358788118902e-011 0.04362721548871919 -0.9990478797678822 0.8425057926680641 0.01555117100145642 0.5384627660305216 -0.8425057926680641 -0.01555117100145642 -0.5384627660305216 -0.9015863992712774 -0.01219373558413136 -0.4324271932494034 0.9015863992712774 0.01219373558413136 0.4324271932494034 -0.9371645856471843 -0.05885413476929844 -0.3438876709469223 0.9371645856471843 0.05885413476929844 0.3438876709469223 -0.8891099819974205 -0.01775480320450284 -0.4573491083141148 0.8891099819974205 0.01775480320450284 0.4573491083141148 -0.9238625911297171 -0.298752180278987 -0.239217573538477 0.9238625911297171 0.298752180278987 0.239217573538477 0.714460437130116 -0.1454390921233625 0.684392982326803 -0.714460437130116 0.1454390921233625 -0.684392982326803 0.5669657547679409 -0.2605372480570189 0.7814538855846162 -0.5669657547679409 0.2605372480570189 -0.7814538855846162 0.005018164881382924 -0.3337214114980939 0.9426583885633985 -0.005018164881382924 0.3337214114980939 -0.9426583885633985 0.008334074846322034 -0.3314169967032203 0.9434475700814931 -0.008334074846322034 0.3314169967032203 -0.9434475700814931 -1.07869099120766e-009 -0.2576574119967494 0.9662363365363245 1.07869099120766e-009 0.2576574119967494 -0.9662363365363245 -0.6255914375192391 -0.09499054398525243 0.7743462725783586 0.6255914375192391 0.09499054398525243 -0.7743462725783586 0.8566494289754592 0.002447052947409265 0.515893174763819 -0.8566494289754592 -0.002447052947409265 -0.515893174763819 -0.9224100075395584 -0.3862095043714823 -0.001413054848939107 0.9224100075395584 0.3862095043714823 0.001413054848939107 -0.8828076860501695 -0.01967706819265308 -0.4693222799293541 0.8828076860501695 0.01967706819265308 0.4693222799293541 -0.6615076437520473 -0.7266804356183233 -0.1853191348651796 0.6615076437520473 0.7266804356183233 0.1853191348651796 0.8505881097345353 -0.07656512545695393 0.5202284586044782 -0.8505881097345353 0.07656512545695393 -0.5202284586044782 0.001031618759408731 -0.04511816235489764 0.9989811245406254 -0.001031618759408731 0.04511816235489764 -0.9989811245406254 0.005662748672241021 -0.3003435921545434 0.9538142690949744 -0.005662748672241021 0.3003435921545434 -0.9538142690949744 0.6341513258495346 -0.07317274126097195 0.7697388166512276 -0.6341513258495346 0.07317274126097195 -0.7697388166512276 0.9591405385262183 0.001327998537806206 0.282926958375337 -0.9591405385262183 -0.001327998537806206 -0.282926958375337 -0.4469774344299156 0.513470208436643 -0.7325022308215047 0.4469774344299156 -0.513470208436643 0.7325022308215047 -0.6952119327195182 -0.184416700421677 -0.6947451685402165 0.6952119327195182 0.184416700421677 0.6947451685402165 -0.7722612531751347 -0.3004697649391121 -0.5597593029167134 0.7722612531751347 0.3004697649391121 0.5597593029167134 -0.6908010466491781 -0.05284287290219791 -0.7211113261708225 0.6908010466491781 0.05284287290219791 0.7211113261708225 -0.5948201101151525 -0.6913376571153824 -0.4101722570540478 0.5948201101151525 0.6913376571153824 0.4101722570540478 0.9845608053297705 0.005789609544017289 0.1749471378151744 -0.9845608053297705 -0.005789609544017289 -0.1749471378151744 0.003174899820202929 -0.6896700314217814 0.724116819145786 -0.003174899820202929 0.6896700314217814 -0.724116819145786 0.004057326653133169 -0.789447614806144 0.6138045304307553 -0.004057326653133169 0.789447614806144 -0.6138045304307553 0.002328722508645825 -0.1360208178701879 0.9907032422261487 -0.002328722508645825 0.1360208178701879 -0.9907032422261487 0.9618278313538345 0.002838815778547771 0.2736405744003531 -0.9618278313538345 -0.002838815778547771 -0.2736405744003531 -0.03258879221096398 -0.992925889807309 -0.1141759518138322 -0.03507863000728281 -0.9993638928866502 -0.006426454018542583 0.03507863000728281 0.9993638928866502 0.006426454018542583 0.03258879221096398 0.992925889807309 0.1141759518138322 -0.4888251582665992 -0.1400022890829338 -0.8610745169247391 0.4888251582665992 0.1400022890829338 0.8610745169247391 -0.03524828916784289 -0.9772415642552044 -0.2091805038783054 0.03524828916784289 0.9772415642552044 0.2091805038783054 -0.001251671724717876 -0.04183185849651849 0.9991238806737735 0.001251671724717876 0.04183185849651849 -0.9991238806737735 0.01969778337526758 -0.2616666146433107 0.9649572944494539 -0.01969778337526758 0.2616666146433107 -0.9649572944494539 0.9891517491442294 0.006985270438849279 0.1467311254022397 -0.9891517491442294 -0.006985270438849279 -0.1467311254022397 -0.2711734956875576 0.1051523120706788 -0.9567695263242767 0.2711734956875576 -0.1051523120706788 0.9567695263242767 -0.385463035904434 -0.3423335113386137 -0.8568698938379807 0.385463035904434 0.3423335113386137 0.8568698938379807 -0.4541983832729183 -0.5664546984294635 -0.6876284630957713 0.4541983832729183 0.5664546984294635 0.6876284630957713 -0.1226959874954221 -0.105219651549913 -0.9868508091805155 0.1226959874954221 0.105219651549913 0.9868508091805155 0.00342297481961079 -0.9004525847666326 -0.4349407153055167 -0.00342297481961079 0.9004525847666326 0.4349407153055167 0.03166910955675777 -0.8815383232987408 0.4710490972876683 -0.03166910955675777 0.8815383232987408 -0.4710490972876683 -0.006026882282988452 -0.1563124458061748 0.9876892709633118 0.006026882282988452 0.1563124458061748 -0.9876892709633118 0.9890263553172155 0.006172431079916526 0.1476101947106241 -0.9890263553172155 -0.006172431079916526 -0.1476101947106241 -0.1337631166327554 0.5108285547050319 -0.8492123505500023 0.1337631166327554 -0.5108285547050319 0.8492123505500023 0.5488649620174 -0.8350332471836223 -0.03829790552515543 -0.5488649620174 0.8350332471836223 0.03829790552515543 0.03815920939920633 -0.2349458118875155 -0.9712591519334805 -0.03815920939920633 0.2349458118875155 0.9712591519334805 0.6394382168331546 -0.7392226720858357 -0.2113494923758103 -0.6394382168331546 0.7392226720858357 0.2113494923758103 0.007514645778823581 -0.921398025935363 0.3885475619550775 -0.007514645778823581 0.921398025935363 -0.3885475619550775 -0.00145059792117709 -0.04482942654834016 0.9989936027227692 0.00145059792117709 0.04482942654834016 -0.9989936027227692 -0.005615740926310768 -0.2129790948974011 0.9770406176769378 0.005615740926310768 0.2129790948974011 -0.9770406176769378 0.07717520035315093 -0.2197372978899333 0.9725016752512469 -0.07717520035315093 0.2197372978899333 -0.9725016752512469 0.9992120137663731 0.001956494929291655 0.03964244786262546 -0.9992120137663731 -0.001956494929291655 -0.03964244786262546 0.00051765045677645 0.2244249960784471 -0.9744912278585137 -0.00051765045677645 -0.2244249960784471 0.9744912278585137 -0.009337471849616528 -0.1906882854260363 -0.9816062293102749 0.009337471849616528 0.1906882854260363 0.9816062293102749 0.1248461329420074 -0.4911711065753458 -0.8620698273080766 -0.1248461329420074 0.4911711065753458 0.8620698273080766 0.02873404700195586 -0.7438727809243705 -0.6677032576996559 -0.02873404700195586 0.7438727809243705 0.6677032576996559 0.1375879447662982 -0.2442634976772494 -0.9598983806411293 -0.1375879447662982 0.2442634976772494 0.9598983806411293 0.6109216499255123 -0.7321214414072957 -0.3012854670972261 -0.6109216499255123 0.7321214414072957 0.3012854670972261 0.01095452666231913 -0.881965730537646 0.4711862142537712 -0.01095452666231913 0.881965730537646 -0.4711862142537712 0.002759994826984163 -0.9365555159321531 0.3505084136017472 -0.002759994826984163 0.9365555159321531 -0.3505084136017472 0.003101137519958726 -0.1523881820302551 0.9883158528140668 -0.003101137519958726 0.1523881820302551 -0.9883158528140668 -0.02477283165215043 -0.1906352669757192 0.9813483080930188 0.02477283165215043 0.1906352669757192 -0.9813483080930188 0.9991782585581174 0.001611336279199616 0.04049952123375587 -0.9991782585581174 -0.001611336279199616 -0.04049952123375587 -1.02530016735507e-007 0.2636233694851336 -0.9646256885762965 1.02530016735507e-007 -0.2636233694851336 0.9646256885762965 -0.0351849297132265 -0.1621484141288771 -0.9861388910881496 0.0351849297132265 0.1621484141288771 0.9861388910881496 0.5143809167910157 -0.8427232925643818 -0.1588386747951559 -0.5143809167910157 0.8427232925643818 0.1588386747951559 0.4862319033164969 -0.8180756479873211 -0.3071331476206068 -0.4862319033164969 0.8180756479873211 0.3071331476206068 0.001922941174372306 -0.9487328369278876 0.3160732611784843 -0.001922941174372306 0.9487328369278876 -0.3160732611784843 0.01058462495978283 -0.9372415837114693 0.3485199843287005 -0.01058462495978283 0.9372415837114693 -0.3485199843287005 -0.001655665923785194 -0.9967332534053051 0.08074701434991111 0.001655665923785194 0.9967332534053051 -0.08074701434991111 -0.02350702559942529 -0.05281540246072417 0.9983275780075294 0.02350702559942529 0.05281540246072417 -0.9983275780075294 -0.003607093997184266 -0.1873518799749329 0.9822862423666299 0.003607093997184266 0.1873518799749329 -0.9822862423666299 0.1091488696533336 -0.1854757037912854 0.9765681172127867 -0.1091488696533336 0.1854757037912854 -0.9765681172127867 0.9970360989926174 0.007952043551113014 -0.07652308350390141 -0.9970360989926174 -0.007952043551113014 0.07652308350390141 -2.171072517093037e-008 0.2472169324000076 -0.9689601582803751 2.171072517093037e-008 -0.2472169324000076 0.9689601582803751 -5.84617728037201e-008 -0.008881558328595218 -0.9999605581829977 5.84617728037201e-008 0.008881558328595218 0.9999605581829977 0.006159025862486746 -0.1559530855423624 -0.9877452614466149 -0.006159025862486746 0.1559530855423624 0.9877452614466149 -0.06704875134860357 -0.2521927092765705 -0.9653513880087066 0.06704875134860357 0.2521927092765705 0.9653513880087066 0.9554196933123231 -0.280007949107208 -0.09364164707949933 -0.9554196933123231 0.280007949107208 0.09364164707949933 0.5580519801572651 -0.6424666100918869 -0.5251805807144766 -0.5580519801572651 0.6424666100918869 0.5251805807144766 0.2213501855596587 -0.3636856818823712 -0.9048407706035683 -0.2213501855596587 0.3636856818823712 0.9048407706035683 0.4176489384104904 -0.7475845573333596 -0.5164171703974174 -0.4176489384104904 0.7475845573333596 0.5164171703974174 0.000543654461523819 -0.9965146488499961 0.08341617988852952 -0.000543654461523819 0.9965146488499961 -0.08341617988852952 0.01776409704298866 -0.9960145399706042 0.0874040789860125 -0.01776409704298866 0.9960145399706042 -0.0874040789860125 0.004151389166419962 -0.1530036796870666 0.9882168992535022 -0.004151389166419962 0.1530036796870666 -0.9882168992535022 -0.003468795617832963 -0.1849306395670129 0.9827454533124522 0.003468795617832963 0.1849306395670129 -0.9827454533124522 0.9968880601904836 0.008091956229407032 -0.07841374684349815 -0.9968880601904836 -0.008091956229407032 0.07841374684349815 -0.001043001060514516 0.2456279899096795 -0.9693636070751357 0.001043001060514516 -0.2456279899096795 0.9693636070751357 0.1337633194460965 0.5108296595896843 -0.8492116539792946 -0.1337633194460965 -0.5108296595896843 0.8492116539792946 -0.0005177218023518647 0.2244242470440256 -0.97449140032268 0.0005177218023518647 -0.2244242470440256 0.97449140032268 0.001565852237767074 -0.1619392335587709 -0.9867994896336172 -0.001565852237767074 0.1619392335587709 0.9867994896336172 0.00641168821081358 -0.1389593965367389 -0.9902773229598024 -0.00641168821081358 0.1389593965367389 0.9902773229598024 0.01706464709692535 -0.2680552022445862 -0.9632524105181733 -0.01706464709692535 0.2680552022445862 0.9632524105181733 0.003679893357355509 -0.9807448154713261 -0.1952589698605237 0.03520220708547025 -0.9955675555630086 0.08721265347762125 -0.03520220708547025 0.9955675555630086 -0.08721265347762125 -0.003679893357355509 0.9807448154713261 0.1952589698605237 0.01913276905228145 -0.9353993121726628 -0.3530751533814035 -0.01913276905228145 0.9353993121726628 0.3530751533814035 -0.001994112838259068 -0.8302319855317633 -0.5574144541667129 0.001994112838259068 0.8302319855317633 0.5574144541667129 -1.364018447764835e-010 -0.9964469582527105 0.08422267740294874 1.364018447764835e-010 0.9964469582527105 -0.08422267740294874 5.41970020038079e-019 -0.9802037300795121 -0.1979915340064092 -5.41970020038079e-019 0.9802037300795121 0.1979915340064092 -0.001766313770587881 -0.9804977542855673 -0.1965223498145266 0.001766313770587881 0.9804977542855673 0.1965223498145266 -0.02441358428433715 -0.04018937462395292 0.9988937836775875 0.02441358428433715 0.04018937462395292 -0.9988937836775875 0.1228143137468341 -0.1111288314674064 0.9861881296971603 -0.1228143137468341 0.1111288314674064 -0.9861881296971603 -0.007545313160508039 -0.2110414854128979 0.9774479831090899 0.007545313160508039 0.2110414854128979 -0.9774479831090899 0.9502869607144168 0.0007765411933242198 -0.311374516105496 -0.9502869607144168 -0.0007765411933242198 0.311374516105496 2.537875881418471e-010 -0.2697717871999729 -0.9629242871747148 -2.537875881418471e-010 0.2697717871999729 0.9629242871747148 0.001043003155523745 0.2456281415727075 -0.9693635686428263 -0.001043003155523745 -0.2456281415727075 0.9693635686428263 -0.001565851058636335 -0.1619405677985199 -0.9867992706784673 0.001565851058636335 0.1619405677985199 0.9867992706784673 -0.004611174646379514 -0.2494173833582457 -0.9683851020885783 0.004611174646379514 0.2494173833582457 0.9683851020885783 0.0866390342236773 -0.2729801568117363 -0.9581103859868279 -0.0866390342236773 0.2729801568117363 0.9581103859868279 0.04754809025452786 -0.4924470298485574 -0.869042635263933 -0.04754809025452786 0.4924470298485574 0.869042635263933 -0.0349422049523222 -0.5274602944483731 -0.8488608131451854 0.0349422049523222 0.5274602944483731 0.8488608131451854 -3.75971853423118e-018 -0.980203730079512 -0.1979915340064091 3.75971853423118e-018 0.980203730079512 0.1979915340064091 -1.339987576635483e-010 -0.9494894852049263 0.3137988487634778 1.339987576635483e-010 0.9494894852049263 -0.3137988487634778 -0.1392326954818779 -0.1282268657791879 0.9819226687480521 0.1392326954818779 0.1282268657791879 -0.9819226687480521 -0.3293614164730073 -0.1512838249825715 0.9320055051540935 0.3293614164730073 0.1512838249825715 -0.9320055051540935 -0.005222168794586046 -0.2092035074705264 0.9778581806249362 0.005222168794586046 0.2092035074705264 -0.9778581806249362 0.9472163939976568 -0.002797653202538041 -0.3205827133184727 -0.9472163939976568 0.002797653202538041 0.3205827133184727 0.0005327402026250499 -0.2855058741792734 -0.958376811070158 -0.0005327402026250499 0.2855058741792734 0.958376811070158 0.2711703080685523 0.1051545366733732 -0.956770185279106 -0.2711703080685523 -0.1051545366733732 0.956770185279106 0.004611184001270919 -0.2494172177081709 -0.9683851447088711 -0.004611184001270919 0.2494172177081709 0.9683851447088711 -0.00641169077383815 -0.138960756374078 -0.9902771321248233 0.00641169077383815 0.138960756374078 0.9902771321248233 -3.265894096845424e-008 -0.2425354887703818 -0.9701425342118091 3.265894096845424e-008 0.2425354887703818 0.9701425342118091 -0.0007672322097599292 -0.2614437891938212 -0.9652183983154864 0.0007672322097599292 0.2614437891938212 0.9652183983154864 -0.001596423311002504 -0.9348817568566014 -0.3549557044608905 0.001596423311002504 0.9348817568566014 0.3549557044608905 -0.001610422576868236 -0.8275150490717169 -0.561441225863365 0.001610422576868236 0.8275150490717169 0.561441225863365 -0.0005274653425915593 -0.5352782164951003 -0.8446756494217983 0.0005274653425915593 0.5352782164951003 0.8446756494217983 -0.0005436553252101591 -0.996514648972146 0.08341617842366074 0.0005436553252101591 0.996514648972146 -0.08341617842366074 -0.001922888543134675 -0.9487332505075247 0.3160720200857349 0.001922888543134675 0.9487332505075247 -0.3160720200857349 -7.396599460252093e-018 -0.9351479406582195 -0.3542574333485339 7.396599460252093e-018 0.9351479406582195 0.3542574333485339 -2.293528301419984e-018 -0.9351479406582196 -0.3542574333485339 2.293528301419984e-018 0.9351479406582196 0.3542574333485339 0.3415245336174704 -0.08847644274145106 0.9356991567898243 -0.3415245336174704 0.08847644274145106 -0.9356991567898243 0.4705842001746854 -0.03092247994198945 0.8818130815429019 -0.4705842001746854 0.03092247994198945 -0.8818130815429019 -0.01238196350419059 -0.2569854266098262 0.9663359547745009 0.01238196350419059 0.2569854266098262 -0.9663359547745009 0.9771876480280277 -0.001587207294657635 -0.2123717997156287 -0.9771876480280277 0.001587207294657635 0.2123717997156287 -0.000532740161792093 -0.2855057619596127 -0.9583768445010455 0.000532740161792093 0.2855057619596127 0.9583768445010455 0.4469772352428111 0.5134695466944448 -0.7325028162349238 -0.4469772352428111 -0.5134695466944448 0.7325028162349238 0.03518499885919119 -0.1621494165226706 -0.986138723799363 -0.03518499885919119 0.1621494165226706 0.986138723799363 0.0007672363316913843 -0.2614436288699845 -0.9652184417382965 -0.0007672363316913843 0.2614436288699845 0.9652184417382965 -0.006159121280631435 -0.1559541201625387 -0.9877450974970105 0.006159121280631435 0.1559541201625387 0.9877450974970105 -0.001969321035844544 -0.5365270886895071 -0.843880800159015 0.001969321035844544 0.5365270886895071 0.843880800159015 -8.837531091392778e-019 -0.9802037300795119 -0.1979915340064091 8.837531091392778e-019 0.9802037300795119 0.1979915340064091 -0.4190697444091525 -0.09024864078020417 0.9034576537714277 0.4190697444091525 0.09024864078020417 -0.9034576537714277 0.3680797257813653 -0.08538783222646242 0.9258651270980997 -0.3680797257813653 0.08538783222646242 -0.9258651270980997 0.4492746531252486 -0.01816073048124067 0.8932090874636104 -0.4492746531252486 0.01816073048124067 -0.8932090874636104 -0.4173701553929433 -0.1778880338757434 0.891155430209059 0.4173701553929433 0.1778880338757434 -0.891155430209059 -0.01543465121279611 -0.2576051549014911 0.9661269873624885 0.01543465121279611 0.2576051549014911 -0.9661269873624885 0.979039599996785 3.723198623051503e-018 -0.2036699821724724 -0.979039599996785 -3.723198623051503e-018 0.2036699821724724 0.9822516255750345 -0.00506035999292398 -0.1874996981649415 -0.9822516255750345 0.00506035999292398 0.1874996981649415 0.6908014509118093 -0.05284299212726929 -0.7211109301634363 -0.6908014509118093 0.05284299212726929 0.7211109301634363 0.009337283033500718 -0.1906891812700813 -0.9816060570779391 -0.009337283033500718 0.1906891812700813 0.9816060570779391 0.001969230634495697 -0.536527240943499 -0.8438807035690913 -0.001969230634495697 0.536527240943499 0.8438807035690913 0.0005274653854330695 -0.5352783480696075 -0.8446755660418618 -0.0005274653854330695 0.5352783480696075 0.8446755660418618 -0.08664067818260744 -0.2729798777103628 -0.9581103168473312 0.08664067818260744 0.2729798777103628 0.9581103168473312 -8.682525665784773e-008 -0.541578389631433 -0.8406502530090716 8.682525665784773e-008 0.541578389631433 0.8406502530090716 -3.921503028202469e-008 -0.8274109878084094 -0.5615968814495951 3.921503028202469e-008 0.8274109878084094 0.5615968814495951 0.001654855532108666 -0.9967332357435745 0.08074724897673978 -0.001654855532108666 0.9967332357435745 -0.08074724897673978 -0.007507578153535655 -0.9214029086402269 0.3885361195816913 0.007507578153535655 0.9214029086402269 -0.3885361195816913 1.166034280447703e-017 -0.8274111517833948 -0.5615966398621667 -1.166034280447703e-017 0.8274111517833948 0.5615966398621667 6.519206129915245e-018 -0.9351479406582196 -0.354257433348534 -6.519206129915245e-018 0.9351479406582196 0.354257433348534 0.8765287252543467 -0.02677196831588556 0.480604468889422 -0.8765287252543467 0.02677196831588556 -0.480604468889422 0.8571758297539573 -0.04022835732976661 0.5134503638640867 -0.8571758297539573 0.04022835732976661 -0.5134503638640867 0.2476665877536164 -0.02438400563172669 0.9685384254534418 -0.2476665877536164 0.02438400563172669 -0.9685384254534418 0.884740255987156 -0.01757400060212124 0.4657529752332437 -0.884740255987156 0.01757400060212124 -0.4657529752332437 -0.008331180739317903 -0.3314190500550238 0.9434468743326858 0.008331180739317903 0.3314190500550238 -0.9434468743326858 0.9432798258574218 0.01059364971511918 -0.3318296923364535 -0.9432798258574218 -0.01059364971511918 0.3318296923364535 0.9999689460896092 1.894030449980373e-005 -0.007880767583261984 -0.9999689460896092 -1.894030449980373e-005 0.007880767583261984 0.99991876650967 -0.0001743193360556289 -0.01274480264849827 -0.99991876650967 0.0001743193360556289 0.01274480264849827 0.963940371883855 -0.0007430628977369711 -0.2661172811185801 -0.963940371883855 0.0007430628977369711 0.2661172811185801 0.8891107244168913 -0.01775462431207951 -0.457347671954726 -0.8891107244168913 0.01775462431207951 0.457347671954726 0.1227000911442241 -0.1052200392904613 -0.9868502576201279 -0.1227000911442241 0.1052200392904613 0.9868502576201279 0.0670495281157894 -0.2521921100028625 -0.9653514906145605 -0.0670495281157894 0.2521921100028625 0.9653514906145605 -0.0170646773798094 -0.2680546801232958 -0.9632525552781683 0.0170646773798094 0.2680546801232958 0.9632525552781683 0.03494104891599838 -0.5274582057490552 -0.8488621585915097 -0.03494104891599838 0.5274582057490552 0.8488621585915097 0.001765561878675717 -0.980497605028382 -0.1965231012498518 -0.001765561878675717 0.980497605028382 0.1965231012498518 -0.01094685603328983 -0.8819912528699143 0.471138616761506 0.01094685603328983 0.8819912528699143 -0.471138616761506 0.3332198513983277 -0.08667457196835998 0.9388567777931722 -0.3332198513983277 0.08667457196835998 -0.9388567777931722 -0.5263482937354177 -0.1131636951629167 0.8427048426221894 0.5263482937354177 0.1131636951629167 -0.8427048426221894 0.8512036730938258 -0.0253588199466456 0.5242225073024747 -0.8512036730938258 0.0253588199466456 -0.5242225073024747 0.6083282053285112 -0.01773846461560139 0.793487329120556 -0.6083282053285112 0.01773846461560139 -0.793487329120556 0.8955201128425246 -0.0002645525043728441 0.4450209629966709 -0.8955201128425246 0.0002645525043728441 -0.4450209629966709 -0.5028522588127636 -0.2156046685228307 0.8370509140536563 0.5028522588127636 0.2156046685228307 -0.8370509140536563 -0.00501692700507513 -0.3337218280837456 0.9426582476719061 0.00501692700507513 0.3337218280837456 -0.9426582476719061 0.979039599996785 1.8305164934997e-018 -0.2036699821724724 -0.979039599996785 -1.8305164934997e-018 0.2036699821724724 0.9999689462689712 -1.671736728866068e-018 -0.007880767584675541 -0.9999689462689712 1.671736728866068e-018 0.007880767584675541 0.9989411528411329 -0.03474272973627807 -0.03015818116034828 -0.9989411528411329 0.03474272973627807 0.03015818116034828 0.9852263379833788 -0.004009932625759784 -0.1712103483560439 -0.9852263379833788 0.004009932625759784 0.1712103483560439 0.9790951786464889 0.000824466295486361 -0.2034009621573309 -0.9790951786464889 -0.000824466295486361 0.2034009621573309 0.9015877380131129 -0.01219416928485135 -0.4324243898068783 -0.9015877380131129 0.01219416928485135 0.4324243898068783 0.882805259821104 -0.01967849854219704 -0.4693267837310353 -0.882805259821104 0.01967849854219704 0.4693267837310353 0.4888256144894809 -0.1400032866549034 -0.8610740957343952 -0.4888256144894809 0.1400032866549034 0.8610740957343952 -0.1375895520841367 -0.2442624196218493 -0.9598984245834381 0.1375895520841367 0.2442624196218493 0.9598984245834381 0.001610421043702095 -0.8275152308916418 -0.561440957881071 -0.001610421043702095 0.8275152308916418 0.561440957881071 3.826848737184621e-018 -0.8274111517833948 -0.5615966398621665 -3.826848737184621e-018 0.8274111517833948 0.5615966398621665 0.001974657072815 -0.8302327332466417 -0.5574134097555021 -0.001974657072815 0.8302327332466417 0.5574134097555021 -0.04754584098955737 -0.4924427086165555 -0.8690452069570294 0.04754584098955737 0.4924427086165555 0.8690452069570294 -0.01775173400364818 -0.9960150402472624 0.08740088981874049 0.01775173400364818 0.9960150402472624 -0.08740088981874049 -0.002760499121996385 -0.9365546305067288 0.350510775470601 0.002760499121996385 0.9365546305067288 -0.350510775470601 -0.03166756980589452 -0.8815390907118107 0.4710477646370724 0.03166756980589452 0.8815390907118107 -0.4710477646370724 0.001596424580051864 -0.9348817574377485 -0.3549557029245579 -0.001596424580051864 0.9348817574377485 0.3549557029245579 0.956558491032075 -0.0133283327265745 0.2912356584986964 -0.956558491032075 0.0133283327265745 -0.2912356584986964 0.9558326378297177 -0.007543621672339141 0.2938146732747506 -0.9558326378297177 0.007543621672339141 -0.2938146732747506 0.9578180647728783 -0.01408003476693324 0.2870301507084225 -0.9578180647728783 0.01408003476693324 -0.2870301507084225 0.9072313656561679 -0.007386427186210549 0.4205671050653715 -0.9072313656561679 0.007386427186210549 -0.4205671050653715 0.5575043664877837 0.02727866862154784 0.829725711054738 -0.5575043664877837 -0.02727866862154784 -0.829725711054738 0.955061983574575 -0.008595504674960005 0.2962814959290931 -0.955061983574575 0.008595504674960005 -0.2962814959290931 -0.004056581686613388 -0.7894483875484434 0.6138035414871621 0.004056581686613388 0.7894483875484434 -0.6138035414871621 0.8994373316751744 4.749529601802568e-018 -0.4370497527616764 -0.8994373316751744 -4.749529601802568e-018 0.4370497527616764 0.9999689462689712 2.170208093761268e-019 -0.007880767584675538 -0.9999689462689712 -2.170208093761268e-019 0.007880767584675538 0.997407803994539 -0.06127178855395159 -0.03772850988564364 -0.997407803994539 0.06127178855395159 0.03772850988564364 0.9663855875540297 -0.001291832929411919 -0.2570938103796652 -0.9663855875540297 0.001291832929411919 0.2570938103796652 0.9856181589139861 0.002472889974129722 -0.1689696115701884 -0.9856181589139861 -0.002472889974129722 0.1689696115701884 0.9519198641335414 -0.005572174531889075 -0.3062964628247709 -0.9519198641335414 0.005572174531889075 0.3062964628247709 0.9603614077941031 -0.004049466913913244 -0.2787284847973766 -0.9603614077941031 0.004049466913913244 0.2787284847973766 -0.03815805929900767 -0.2349450670776329 -0.9712593772862224 0.03815805929900767 0.2349450670776329 0.9712593772862224 -0.2213583936854587 -0.3636822296313745 -0.9048401501897149 0.2213583936854587 0.3636822296313745 0.9048401501897149 -0.4176656747506726 -0.7475790938819354 -0.5164115437572342 0.4176656747506726 0.7475790938819354 0.5164115437572342 -0.003678226109313476 -0.9807441849824888 -0.1952621680605918 0.003678226109313476 0.9807441849824888 0.1952621680605918 -0.003174899851690268 -0.6896701426261755 0.7241167132313149 0.003174899851690268 0.6896701426261755 -0.7241167132313149 0.2014731996283661 -0.101518830700172 0.9742189060189594 -0.2014731996283661 0.101518830700172 -0.9742189060189594 0.8471832164661007 -0.01871259358130396 0.530971220104831 -0.8471832164661007 0.01871259358130396 -0.530971220104831 -0.6592700716512461 -0.1055123068662708 0.7444663361930605 0.6592700716512461 0.1055123068662708 -0.7444663361930605 0.9733834031071185 0.007735325110119988 0.2290522108626014 -0.9733834031071185 -0.007735325110119988 -0.2290522108626014 0.9164151976740033 -0.009103539561407248 0.4001253691526837 -0.9164151976740033 0.009103539561407248 -0.4001253691526837 0.1422539534903038 0.08650680782154999 0.9860427906114946 -0.1422539534903038 -0.08650680782154999 -0.9860427906114946 0.9588345703509946 0.0008323912160688985 0.2839640361466345 -0.9588345703509946 -0.0008323912160688985 -0.2839640361466345 0.9598790634568707 -0.003077495641744351 0.2803974189569793 -0.9598790634568707 0.003077495641744351 -0.2803974189569793 -0.5669650605659093 -0.2605368662497732 0.7814545165409452 0.5669650605659093 0.2605368662497732 -0.7814545165409452 0.9781135818534934 1.34430433349115e-018 -0.2080716727325698 -0.9781135818534934 -1.34430433349115e-018 0.2080716727325698 0.9663115335897946 0.004882744349163951 -0.2573289312513458 -0.9663115335897946 -0.004882744349163951 0.2573289312513458 0.9999689462689712 -2.170208093761268e-019 -0.007880767584675541 0.9999689462689712 -2.170208093761268e-019 -0.007880767584675541 -0.9999689462689712 2.170208093761268e-019 0.007880767584675541 -0.9999689462689712 2.170208093761268e-019 0.007880767584675541 0.9845241791459773 -0.0004086970412225588 -0.1752483199453504 -0.9845241791459773 0.0004086970412225588 0.1752483199453504 0.9509242474571021 -0.008522673049577493 -0.3093063847421095 -0.9509242474571021 0.008522673049577493 0.3093063847421095 0.9371635595269554 -0.05885583532215234 -0.3438901762820491 -0.9371635595269554 0.05885583532215234 0.3438901762820491 0.695209612036329 -0.184417268281811 -0.694747340039364 -0.695209612036329 0.184417268281811 0.694747340039364 0.3854694816538004 -0.3423323407385548 -0.8568674618621087 -0.3854694816538004 0.3423323407385548 0.8568674618621087 -0.1248496818334184 -0.4911743379772181 -0.862067472219394 0.1248496818334184 0.4911743379772181 0.862067472219394 -0.01914711607387571 -0.9353999608355318 -0.3530726571329746 0.01914711607387571 0.9353999608355318 0.3530726571329746 -0.4862404515351986 -0.8180727855420281 -0.3071272388544412 0.4862404515351986 0.8180727855420281 0.3071272388544412 -0.5580514886342289 -0.6424719998950559 -0.5251745094575406 0.5580514886342289 0.6424719998950559 0.5251745094575406 -0.03517707448840293 -0.9955686973253226 0.08720976055693352 0.03517707448840293 0.9955686973253226 -0.08720976055693352 -0.01058259043784989 -0.9372406732639375 0.3485224944811823 0.01058259043784989 0.9372406732639375 -0.3485224944811823 0.9842462036749082 -0.01640469791371886 0.1760406101951788 -0.9842462036749082 0.01640469791371886 -0.1760406101951788 0.9951374926014686 -0.01257896904630131 0.09768899813486875 -0.9951374926014686 0.01257896904630131 -0.09768899813486875 0.9748192624683028 -0.01264279127167541 0.222637744665219 -0.9748192624683028 0.01264279127167541 -0.222637744665219 0.9978101430840221 -0.0002980269199170782 0.06614249419698789 -0.9978101430840221 0.0002980269199170782 -0.06614249419698789 0.3283493187707493 0.3306983436379725 0.8847741691402875 -0.3283493187707493 -0.3306983436379725 -0.8847741691402875 0.9765438230670186 0.0004985906997081331 0.2153181669923967 -0.9765438230670186 -0.0004985906997081331 -0.2153181669923967 0.9999689462689712 3.811622599330838e-019 -0.007880767584675538 -0.9999689462689712 -3.811622599330838e-019 0.007880767584675538 0.9971892143428791 0.02017313827773756 -0.07215757264666442 -0.9971892143428791 -0.02017313827773756 0.07215757264666442 0.9837731791909455 -0.003803803578565293 -0.1793763166721725 -0.9837731791909455 0.003803803578565293 0.1793763166721725 0.9898167070083889 -0.0151019980822362 -0.1415443965015694 -0.9898167070083889 0.0151019980822362 0.1415443965015694 0.9870725569722861 -0.04346651375319539 -0.1542673959537012 -0.9870725569722861 0.04346651375319539 0.1542673959537012 -0.6109158080307132 -0.7321255433242386 -0.3012873450883211 0.6109158080307132 0.7321255433242386 0.3012873450883211 -0.5143786487068958 -0.8427253558269834 -0.1588350729554152 0.5143786487068958 0.8427253558269834 0.1588350729554152 -0.4426563640097903 -0.1319682946309932 0.8869271179831065 0.4426563640097903 0.1319682946309932 -0.8869271179831065 0.8682017986762796 -0.02384011395508521 0.4956382609745554 -0.8682017986762796 0.02384011395508521 -0.4956382609745554 0.9765681864789892 -0.04566472509215266 0.2103076556842293 -0.9765681864789892 0.04566472509215266 -0.2103076556842293 -0.7144594929188609 -0.1454395098621124 0.684393879245857 0.7144594929188609 0.1454395098621124 -0.684393879245857 0.9979815238056222 0.0007785418897066691 0.06350017334727653 -0.9979815238056222 -0.0007785418897066691 -0.06350017334727653 0.9607774046779956 0.002014716084005299 0.2773133959608085 -0.9607774046779956 -0.002014716084005299 -0.2773133959608085 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 0.9785895810056572 0.003221874091712548 0.2057961405724349 -0.9785895810056572 -0.003221874091712548 -0.2057961405724349 -0.9845592136282013 0.005778961781360174 0.1749564473248911 0.9845592136282013 -0.005778961781360174 -0.1749564473248911 0.9999689462689712 -3.81162259933084e-019 -0.007880767584675541 0.9999689462689712 -3.81162259933084e-019 -0.007880767584675541 -0.9999689462689712 3.81162259933084e-019 0.007880767584675541 -0.9999689462689712 3.81162259933084e-019 0.007880767584675541 0.9999574977946593 -0.001434794235076954 -0.009107358000382792 -0.9999574977946593 0.001434794235076954 0.009107358000382792 0.990394137619684 -0.004947048548015723 -0.1381845826394031 -0.990394137619684 0.004947048548015723 0.1381845826394031 0.9878664051229494 -0.009852100486114623 -0.1549932312892155 -0.9878664051229494 0.009852100486114623 0.1549932312892155 0.9238623772605025 -0.2987503600454748 -0.2392206727172045 -0.9238623772605025 0.2987503600454748 0.2392206727172045 0.7722566517449084 -0.3004713563895385 -0.559764796879166 -0.7722566517449084 0.3004713563895385 0.559764796879166 0.4541969113379238 -0.5664532909165588 -0.6876305948260959 -0.4541969113379238 0.5664532909165588 0.6876305948260959 -0.02872876545232268 -0.7438757857110302 -0.6677001373883212 0.02872876545232268 0.7438757857110302 0.6677001373883212 -0.6394400882197744 -0.7392207940664073 -0.2113503990942941 0.6394400882197744 0.7392207940664073 0.2113503990942941 -0.9554201128959187 -0.2800080264120052 -0.09363713482803654 -0.5488772901889137 -0.8350252574485036 -0.03829542711519779 0.5488772901889137 0.8350252574485036 0.03829542711519779 0.9554201128959187 0.2800080264120052 0.09363713482803654 0.6724831580142987 -0.05649631950853753 0.7379529578971176 -0.6724831580142987 0.05649631950853753 -0.7379529578971176 0.8879735761679941 -0.2040308333966141 0.412158157811909 0.8856056710704745 -0.2071367107747284 0.415688559401436 0.8919673020626285 -0.06944885009471929 0.4467339132768373 -0.8919673020626285 0.06944885009471929 -0.4467339132768373 -0.8856056710704745 0.2071367107747284 -0.415688559401436 -0.8879735761679941 0.2040308333966141 -0.412158157811909 0.8949774379466016 -0.3243624985815883 0.3062749664606072 0.8971127254100035 -0.3219710774562727 0.3025283179953283 -0.8971127254100035 0.3219710774562727 -0.3025283179953283 -0.8949774379466016 0.3243624985815883 -0.3062749664606072 1 0 0 -1 -0 -0 0.8950565235662222 -0.05501086320564266 0.4425467484355961 0.8963859747980307 0.01799744263674584 0.4429088802947186 -0.8963859747980307 -0.01799744263674584 -0.4429088802947186 -0.8950565235662222 0.05501086320564266 -0.4425467484355961 0.9902347700892529 0.004108876318823506 0.1393492635132362 -0.9902347700892529 -0.004108876318823506 -0.1393492635132362 0.9867767988482539 0.00451540126637684 0.1620220985118897 -0.9867767988482539 -0.00451540126637684 -0.1620220985118897 0.896904250736173 0.02001407858138542 0.441771662366343 0.9006047635162565 0.0901014076929148 0.4251973615435342 -0.9006047635162565 -0.0901014076929148 -0.4251973615435342 -0.896904250736173 -0.02001407858138542 -0.441771662366343 -0.8505869295512368 -0.07656434047780775 0.5202305037613593 0.8505869295512368 0.07656434047780775 -0.5202305037613593 0.9996823061849715 0.002893873138954182 0.02503821477167236 -0.9996823061849715 -0.002893873138954182 -0.02503821477167236 0.8645545832379741 0.4903277633869822 0.110109295947855 0.8613428925296286 0.4933706707004632 0.1211354728445291 0.8544312098838555 0.5186707182013584 0.03046298831202012 -0.8544312098838555 -0.5186707182013584 -0.03046298831202012 -0.8613428925296286 -0.4933706707004632 -0.1211354728445291 -0.8645545832379741 -0.4903277633869822 -0.110109295947855 0.9999426356173807 -0.005924578645249221 -0.008923275320326694 -0.9999426356173807 0.005924578645249221 0.008923275320326694 0.9978370846623687 -0.0512747743709475 -0.04113453519505445 -0.9978370846623687 0.0512747743709475 0.04113453519505445 0.9645386096877072 -0.258059021394777 -0.0554149068254659 -0.9645386096877072 0.258059021394777 0.0554149068254659 -0.003424724626311721 -0.9004485623674271 -0.434949028958185 0.003424724626311721 0.9004485623674271 0.434949028958185 0.8365363380127288 -0.08000022603088255 0.5420395917451615 -0.8365363380127288 0.08000022603088255 -0.5420395917451615 0.9868338077903163 -0.03790197884639443 0.1572338252463278 -0.9868338077903163 0.03790197884639443 -0.1572338252463278 0.9964827847970811 -0.05726715295511971 0.0611762437182037 -0.9964827847970811 0.05726715295511971 -0.0611762437182037 0.873378472098167 -0.4356367472142845 0.2177858327624385 -0.873378472098167 0.4356367472142845 -0.2177858327624385 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 0.8966813609712228 0.07771580569472812 0.4358013199062331 0.9061208994149789 0.1894983809113076 0.3782000519240881 -0.9061208994149789 -0.1894983809113076 -0.3782000519240881 -0.8966813609712228 -0.07771580569472812 -0.4358013199062331 1 0 0 -1 -0 -0 0.8507754953433536 0.4522042923304711 0.2677542427696876 -0.8507754953433536 -0.4522042923304711 -0.2677542427696876 0.9999943528527163 0.0002116978693424881 -0.003354019482552267 -0.9999943528527163 -0.0002116978693424881 0.003354019482552267 0.9992193119948976 0.0003250103045750034 -0.03950520098348688 -0.9992193119948976 -0.0003250103045750034 0.03950520098348688 0.6615091298782606 -0.7266790865525058 -0.1853191200468062 -0.6615091298782606 0.7266790865525058 0.1853191200468062 0.594824018870023 -0.6913328274830446 -0.4101747288895473 -0.594824018870023 0.6913328274830446 0.4101747288895473 0.03524428480282053 -0.9772404059165154 -0.2091865899929102 -0.03524428480282053 0.9772404059165154 0.2091865899929102 -0.6341573082842825 -0.07317161945134183 0.7697339946088529 0.6341573082842825 0.07317161945134183 -0.7697339946088529 0.625589589694931 -0.09499442026280379 0.7743472899056741 -0.625589589694931 0.09499442026280379 -0.7743472899056741 0.8574560540041059 -0.4841070563899792 0.1743831224778856 -0.8574560540041059 0.4841070563899792 -0.1743831224778856 0.9982059251327112 0.003221613185180923 0.05978755922792781 -0.9982059251327112 -0.003221613185180923 -0.05978755922792781 0.9020852017429797 0.1863446310950731 0.3892530889516085 -0.9020852017429797 -0.1863446310950731 -0.3892530889516085 0.8572964449490628 0.4462177410166214 0.2567733106841953 -0.8572964449490628 -0.4462177410166214 -0.2567733106841953 0.8751946504592248 -0.478949811212292 0.06812783680159866 0.8682201907639653 -0.4898576719033636 0.07895037445889835 -0.8682201907639653 0.4898576719033636 -0.07895037445889835 -0.8751946504592248 0.478949811212292 -0.06812783680159866 0.9981408261253131 -0.06091922746013796 0.001933635833697217 -0.9981408261253131 0.06091922746013796 -0.001933635833697217 0.9763108033078525 -0.2123747784436454 -0.04140252196893392 -0.9763108033078525 0.2123747784436454 0.04140252196893392 0.9224089668347014 -0.3862119958074538 -0.001411452217341778 -0.9224089668347014 0.3862119958074538 0.001411452217341778 0.0350836217122919 -0.9993641268128589 -0.006362509498693735 -0.0350836217122919 0.9993641268128589 0.006362509498693735 0.9981387801496015 -0.05180774196831358 0.03217038130968378 -0.9981387801496015 0.05180774196831358 -0.03217038130968378 0.8977399542408993 0.3250712691215336 0.2973073234067127 -0.8977399542408993 -0.3250712691215336 -0.2973073234067127 0.8876171555381039 0.3295593733851059 0.3217551935998261 -0.8876171555381039 -0.3295593733851059 -0.3217551935998261 0.03260687053562721 -0.9929270011109181 -0.114161124988988 -0.03260687053562721 0.9929270011109181 0.114161124988988</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"748\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 16 0 8 1 18 19 12 18 1 6 14 22 14 0 16 16 8 24 18 26 27 30 18 12 32 6 22 14 16 34 16 24 36 18 38 39 30 38 18 42 30 12 32 22 44 46 14 34 34 16 48 48 16 36 38 50 51 54 42 12 56 32 44 58 46 34 34 48 60 62 42 54 56 44 64 66 58 34 66 34 60 68 62 54 70 71 72 76 56 64 66 60 78 80 62 68 82 71 70 84 76 64 86 82 70 88 80 68 90 76 84 92 82 86 94 92 86 96 88 68 98 90 84 100 92 94 102 88 96 104 90 98 106 100 94 108 102 96 104 98 110 112 100 106 114 102 108 116 108 96 118 104 110 120 112 106 122 114 108 124 108 116 118 110 126 128 112 120 122 130 114 132 122 108 134 108 124 136 118 126 138 128 120 140 130 122 134 132 108 132 140 122 142 134 124 136 126 144 146 128 138 140 148 130 150 132 134 152 140 132 150 134 142 142 124 154 136 144 156 158 146 138 160 148 140 150 152 132 160 140 152 150 142 162 142 154 162 156 144 164 158 166 146 160 168 148 170 152 150 172 160 152 150 162 174 154 176 162 178 156 164 180 166 158 182 168 160 170 150 174 170 172 152 182 160 172 176 154 184 178 164 186 180 188 166 182 190 168 170 174 192 194 172 170 196 182 172 198 176 184 200 201 186 201 202 186 178 186 202 206 188 180 182 208 190 194 170 192 192 174 210 194 196 172 196 208 182 212 213 214 214 213 186 200 186 213 206 218 188 208 220 190 194 192 222 224 192 210 174 226 210 228 196 194 230 208 196 186 232 214 218 234 188 236 237 190 220 236 190 240 220 208 228 194 222 222 192 224 224 210 242 210 226 244 228 230 196 230 240 208 214 232 246 218 248 234 236 250 237 220 252 236 240 252 220 228 222 254 222 224 256 224 242 258 242 210 244 226 260 244 262 230 228 264 240 230 246 232 266 248 268 234 250 270 237 236 272 250 252 274 236 276 252 240 262 228 254 254 222 256 256 224 258 258 242 278 242 244 280 244 260 282 262 264 230 264 276 240 246 266 284 250 286 270 274 272 236 272 288 250 252 290 274 276 290 252 262 254 292 254 256 294 256 258 296 298 258 278 278 242 280 244 282 280 260 300 282 264 262 302 304 276 264 266 306 284 250 308 286 274 310 272 288 308 250 272 312 288 290 310 274 314 290 276 302 262 292 294 292 254 294 256 296 296 258 298 278 280 316 280 282 318 282 300 320 304 264 302 314 276 304 284 306 322 308 324 286 310 312 272 288 326 308 312 328 288 330 310 290 314 330 290 302 292 332 294 334 292 336 294 296 338 296 298 316 280 340 340 280 318 318 282 320 320 300 342 304 302 344 346 314 304 306 348 322 308 350 324 310 352 312 328 326 288 326 350 308 312 354 328 330 352 310 356 302 332 334 332 292 334 294 336 336 296 338 318 320 358 320 342 360 346 304 344 362 322 348 350 364 324 352 354 312 328 366 326 326 368 350 354 370 328 356 332 372 334 374 332 334 336 376 336 338 378 320 360 358 360 342 380 346 344 382 384 362 348 350 368 364 352 386 354 366 388 326 370 366 328 326 388 368 354 390 370 356 372 392 374 372 332 374 334 376 376 336 378 358 360 394 360 380 396 398 356 392 400 362 384 368 402 364 386 390 354 366 404 388 370 406 366 388 408 368 390 410 370 412 392 372 374 412 372 414 374 376 376 378 416 358 394 418 360 396 394 400 384 420 368 408 402 390 422 423 404 426 388 366 406 404 370 410 406 388 426 408 428 410 390 414 376 416 418 394 430 394 396 432 434 400 420 402 408 436 428 390 423 404 438 426 404 406 440 410 440 406 408 426 442 444 410 428 446 414 416 448 418 430 430 394 432 434 420 450 402 436 452 436 408 442 454 428 423 426 438 456 404 440 438 444 440 410 426 456 442 444 428 458 446 460 414 448 430 462 464 418 448 430 432 466 468 434 450 452 436 470 436 442 472 458 428 454 456 438 474 438 440 476 476 440 444 442 456 478 480 444 458 482 460 446 460 484 414 448 462 486 462 430 466 488 464 448 490 468 450 452 470 492 436 494 470 436 472 494 442 478 472 458 454 496 438 476 474 456 474 478 476 444 480 480 458 498 500 460 482 484 502 414 460 504 484 486 462 506 508 448 486 462 466 510 488 448 508 512 468 490 514 452 492 470 516 492 494 518 470 472 520 494 472 478 520 454 522 496 458 496 498 474 476 524 478 474 526 524 476 480 480 498 528 500 530 460 532 502 484 530 504 460 504 532 484 534 486 506 506 462 510 536 508 486 538 512 490 540 452 514 514 492 542 492 516 544 470 546 516 470 518 548 494 550 518 494 520 550 478 526 520 552 496 553 556 498 496 474 524 526 524 480 528 558 528 498 560 530 500 532 553 502 530 562 504 504 564 532 534 506 566 536 486 534 506 510 568 570 508 536 572 512 538 574 540 514 514 542 576 492 544 542 516 578 544 546 580 516 470 548 546 518 582 548 518 550 582 520 526 550 556 496 552 552 553 532 558 498 556 526 524 584 524 528 584 558 586 528 560 588 530 590 560 500 562 564 504 588 562 530 564 552 532 592 534 566 566 506 568 594 536 534 596 570 536 598 572 538 600 540 574 574 514 576 542 544 602 578 516 604 578 606 544 516 580 608 610 580 546 548 610 546 582 610 548 550 584 582 526 584 550 612 556 552 614 558 556 586 584 528 616 586 558 618 588 560 560 590 620 562 622 564 588 624 562 564 612 552 594 534 592 592 566 626 566 568 628 596 536 594 630 570 596 632 572 598 574 576 634 542 602 636 544 638 602 516 608 604 578 604 640 544 606 642 606 578 640 580 644 608 610 616 580 582 586 610 584 586 582 612 614 556 614 616 558 610 586 616 646 588 618 618 560 620 624 622 562 622 612 564 646 624 588 648 594 592 626 566 628 592 626 650 628 568 652 654 596 594 630 596 656 658 572 632 632 598 660 636 602 662 638 664 602 544 642 638 608 666 604 604 668 640 606 670 642 606 640 670 580 616 644 608 644 672 674 614 612 644 616 614 676 646 618 618 620 678 624 680 622 622 674 612 682 624 646 648 592 650 654 594 648 684 626 628 686 650 626 568 688 652 690 628 652 656 596 654 692 630 656 658 694 572 696 658 632 632 660 698 660 598 700 662 702 636 602 704 662 638 706 664 664 704 602 642 708 638 604 666 668 608 672 666 640 668 710 642 670 708 670 640 710 672 644 674 674 644 614 712 646 676 676 618 678 678 620 714 680 674 622 682 680 624 712 682 646 648 650 716 718 654 648 686 626 684 684 628 690 720 650 686 652 688 722 724 690 652 726 656 654 728 692 656 730 694 658 732 658 696 696 632 698 698 660 734 660 700 736 598 738 700 636 702 740 662 742 702 704 744 662 638 708 706 664 706 746 664 746 704 668 666 748 666 672 750 710 668 752 708 670 754 670 710 754 680 672 674 712 676 756 758 676 678 678 714 760 750 680 682 762 682 712 718 648 716 720 716 650 726 654 718 764 686 684 766 684 690 768 720 686 770 652 722 722 688 772 774 690 724 724 652 770 728 656 726 776 692 728 730 778 694 780 730 658 734 660 782 660 736 782 736 700 784 738 786 700 702 788 740 742 790 702 744 742 662 704 792 744 706 708 794 706 794 746 704 746 792 668 748 752 748 666 750 750 672 680 710 752 796 708 754 794 754 710 796 798 712 756 756 676 758 758 678 800 678 760 800 762 750 682 762 712 798 802 718 716 804 716 720 806 726 718 766 764 684 768 686 764 774 766 690 808 720 768 770 722 810 810 722 772 688 812 772 774 724 814 724 770 816 818 728 726 776 728 800 820 778 730 778 822 694 824 730 825 700 828 784 786 828 700 740 788 830 702 790 788 742 832 790 744 834 742 744 792 836 746 794 838 746 838 792 752 748 840 748 750 762 796 752 842 794 754 844 796 844 754 846 798 756 848 756 758 848 758 800 800 760 776 840 762 798 806 718 802 802 716 804 808 804 720 818 726 806 850 764 766 768 764 852 854 766 774 856 808 768 816 770 810 812 858 772 814 724 816 860 774 814 800 728 818 862 820 730 822 864 694 784 828 866 788 868 830 788 790 868 832 870 790 834 832 742 744 836 834 792 838 836 794 844 838 748 762 840 842 752 840 842 872 796 872 844 796 874 798 846 846 756 848 874 840 798 876 806 802 802 804 878 880 804 808 882 818 806 850 766 854 852 764 850 856 768 852 854 774 860 884 808 856 816 810 886 888 858 812 890 814 816 860 814 890 892 818 882 894 820 895 822 898 864 830 868 900 790 902 868 790 870 902 832 904 870 834 906 832 836 908 834 838 910 836 838 844 910 842 840 874 912 872 842 910 844 872 914 915 874 882 806 876 918 802 878 880 878 804 884 880 808 920 921 922 926 927 921 930 856 852 932 922 933 884 856 930 816 886 936 938 890 816 940 933 941 944 892 882 898 946 864 948 949 950 868 954 900 868 902 954 870 956 902 904 958 870 906 904 832 834 908 906 836 910 908 874 912 842 960 872 912 960 910 872 915 912 874 944 882 876 962 918 878 880 964 878 966 880 884 920 922 932 926 921 920 968 927 926 970 930 852 940 932 933 972 884 930 938 816 936 974 941 975 974 940 941 898 978 946 948 980 949 900 954 982 902 984 954 956 984 902 958 956 870 986 958 904 988 904 906 908 988 906 908 910 960 990 960 912 990 912 915 992 944 876 964 962 878 994 918 962 966 964 880 966 884 972 996 968 926 954 930 970 984 972 930 998 938 936 1000 974 975 980 1002 949 978 998 946 1004 1005 996 982 954 970 954 984 930 956 1008 984 958 1010 956 986 1012 958 988 986 904 908 960 988 988 960 990 990 915 1014 1016 964 966 1008 966 972 1005 968 996 1008 972 984 1000 975 1018 998 936 946 980 1020 1002 1020 1018 1002 1010 1008 956 1012 1010 958 1022 986 1014 988 990 986 986 990 1014 1008 1016 966 1020 1000 1018 1010 1016 1008</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1484\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"748\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 17 20 21 4 4 21 13 23 15 7 17 5 15 25 9 17 28 29 21 13 21 31 23 7 33 35 17 15 37 25 17 40 41 21 21 41 31 13 31 43 45 23 33 35 15 47 49 17 35 37 17 49 52 53 41 13 43 55 45 33 57 35 47 59 61 49 35 55 43 63 65 45 57 35 59 67 61 35 67 55 63 69 73 74 75 65 57 77 79 61 67 69 63 81 75 74 83 65 77 85 75 83 87 69 81 89 85 77 91 87 83 93 87 93 95 69 89 97 85 91 99 95 93 101 97 89 103 99 91 105 95 101 107 97 103 109 111 99 105 107 101 113 109 103 115 97 109 117 111 105 119 107 113 121 109 115 123 117 109 125 127 111 119 121 113 129 115 131 123 109 123 133 125 109 135 127 119 137 121 129 139 123 131 141 109 133 135 123 141 133 125 135 143 145 127 137 139 129 147 131 149 141 135 133 151 133 141 153 143 135 151 155 125 143 157 145 137 139 147 159 141 149 161 133 153 151 153 141 161 163 143 151 163 155 143 165 145 157 147 167 159 149 169 161 151 153 171 153 161 173 175 163 151 163 177 155 165 157 179 159 167 181 161 169 183 175 151 171 153 173 171 173 161 183 185 155 177 187 165 179 167 189 181 169 191 183 193 175 171 171 173 195 173 183 197 185 177 199 203 187 179 187 203 204 187 204 205 181 189 207 191 209 183 193 171 195 211 175 193 173 197 195 183 209 197 215 187 205 187 215 216 216 215 217 189 219 207 191 221 209 223 193 195 211 193 225 211 227 175 195 197 229 197 209 231 216 233 187 189 235 219 191 238 239 191 239 221 209 221 241 223 195 229 225 193 223 243 211 225 245 227 211 197 231 229 209 241 231 247 233 216 235 249 219 238 251 239 239 253 221 221 253 241 255 223 229 257 225 223 259 243 225 245 211 243 245 261 227 229 231 263 231 241 265 267 233 247 235 269 249 238 271 251 251 273 239 239 275 253 241 253 277 255 229 263 257 223 255 259 225 257 279 243 259 281 245 243 283 261 245 231 265 263 241 277 265 285 267 247 271 287 251 239 273 275 251 289 273 275 291 253 253 291 277 293 255 263 295 257 255 297 259 257 279 259 299 281 243 279 281 283 245 283 301 261 303 263 265 265 277 305 285 307 267 287 309 251 273 311 275 251 309 289 289 313 273 275 311 291 277 291 315 293 263 303 255 293 295 297 257 295 299 259 297 317 281 279 319 283 281 321 301 283 303 265 305 305 277 315 323 307 285 287 325 309 273 313 311 309 327 289 289 329 313 291 311 331 291 331 315 333 293 303 293 335 295 297 295 337 299 297 339 341 281 317 319 281 341 321 283 319 343 301 321 345 303 305 305 315 347 323 349 307 325 351 309 313 353 311 289 327 329 309 351 327 329 355 313 311 353 331 333 303 357 293 333 335 337 295 335 339 297 337 359 321 319 361 343 321 345 305 347 349 323 363 325 365 351 313 355 353 327 367 329 351 369 327 329 371 355 373 333 357 333 375 335 377 337 335 379 339 337 359 361 321 381 343 361 383 345 347 349 363 385 365 369 351 355 387 353 327 389 367 329 367 371 369 389 327 371 391 355 393 373 357 333 373 375 377 335 375 379 337 377 395 361 359 397 381 361 393 357 399 385 363 401 365 403 369 355 391 387 389 405 367 367 407 371 369 409 389 371 411 391 373 393 413 373 413 375 377 375 415 417 379 377 419 395 359 395 397 361 421 385 401 403 409 369 424 425 391 389 427 405 405 407 367 407 411 371 409 427 389 391 411 429 417 377 415 431 395 419 433 397 395 421 401 435 437 409 403 424 391 429 427 439 405 441 407 405 407 441 411 443 427 409 429 411 445 417 415 447 431 419 449 433 395 431 451 421 435 453 437 403 443 409 437 424 429 455 457 439 427 439 441 405 411 441 445 443 457 427 459 429 445 415 461 447 463 431 449 449 419 465 467 433 431 451 435 469 471 437 453 473 443 437 455 429 459 475 439 457 477 441 439 445 441 477 479 457 443 459 445 481 447 461 483 415 485 461 487 463 449 467 431 463 449 465 489 451 469 491 493 471 453 471 495 437 495 473 437 473 479 443 497 455 459 475 477 439 479 475 457 481 445 477 499 459 481 483 461 501 415 503 485 485 505 461 507 463 487 487 449 509 511 467 463 509 449 489 491 469 513 493 453 515 493 517 471 471 519 495 495 521 473 521 479 473 497 523 455 499 497 459 525 477 475 527 475 479 481 477 525 529 499 481 461 531 501 485 503 533 461 505 531 485 533 505 507 487 535 511 463 507 487 509 537 491 513 539 515 453 541 543 493 515 545 517 493 517 547 471 549 519 471 519 551 495 551 521 495 521 527 479 554 497 555 497 499 557 527 525 475 529 481 525 499 529 559 501 531 561 503 554 533 505 563 531 533 565 505 567 507 535 535 487 537 569 511 507 537 509 571 539 513 573 515 541 575 577 543 515 543 545 493 545 579 517 517 581 547 547 549 471 549 583 519 583 551 519 551 527 521 555 497 557 533 554 555 557 499 559 585 525 527 585 529 525 529 587 559 531 589 561 501 561 591 505 565 563 531 563 589 533 555 565 567 535 593 569 507 567 535 537 595 537 571 597 539 573 599 575 541 601 577 515 575 603 545 543 605 517 579 545 607 579 609 581 517 547 581 611 547 611 549 549 611 583 583 585 551 551 585 527 555 557 613 557 559 615 529 585 587 559 587 617 561 589 619 621 591 561 565 623 563 563 625 589 555 613 565 593 535 595 627 567 593 629 569 567 595 537 597 597 571 631 599 573 633 635 577 575 637 603 543 603 639 545 605 609 517 641 605 579 643 607 545 641 579 607 609 645 581 581 617 611 611 587 583 583 587 585 557 615 613 559 617 615 617 587 611 619 589 647 621 561 619 563 623 625 565 613 623 589 625 647 593 595 649 629 567 627 651 627 593 653 569 629 595 597 655 657 597 631 633 573 659 661 599 633 663 603 637 603 665 639 639 643 545 605 667 609 641 669 605 643 671 607 671 641 607 645 617 581 673 645 609 613 615 675 615 617 645 619 647 677 679 621 619 623 681 625 613 675 623 647 625 683 651 593 649 649 595 655 629 627 685 627 651 687 653 689 569 653 629 691 655 597 657 657 631 693 573 695 659 633 659 697 699 661 633 701 599 661 637 703 663 663 705 603 665 707 639 603 705 665 639 709 643 669 667 605 667 673 609 711 669 641 709 671 643 711 641 671 675 645 673 615 645 675 677 647 713 679 619 677 715 621 679 623 675 681 625 681 683 647 683 713 717 651 649 649 655 719 685 627 687 691 629 685 687 651 721 723 689 653 653 691 725 655 657 727 657 693 729 659 695 731 697 659 733 699 633 697 735 661 699 737 701 661 701 739 599 741 703 637 703 743 663 663 745 705 707 709 639 747 707 665 705 747 665 749 667 669 751 673 667 753 669 711 755 671 709 755 711 671 675 673 681 757 677 713 679 677 759 761 715 679 683 681 751 713 683 763 717 649 719 651 717 721 719 655 727 685 687 765 691 685 767 687 721 769 723 653 771 773 689 723 725 691 775 771 653 725 727 657 729 729 693 777 695 779 731 659 731 781 783 661 735 783 737 661 785 701 737 701 787 739 741 789 703 703 791 743 663 743 745 745 793 705 795 709 707 747 795 707 793 747 705 753 749 669 751 667 749 681 673 751 797 753 711 795 755 709 797 711 755 757 713 799 759 677 757 801 679 759 801 761 679 683 751 763 799 713 763 717 719 803 721 717 805 719 727 807 685 765 767 765 687 769 691 767 775 769 721 809 811 723 771 773 723 811 773 813 689 815 725 775 817 771 725 727 729 819 801 729 777 731 779 821 695 823 779 826 731 827 785 829 701 701 829 787 831 789 741 789 791 703 791 833 743 743 835 745 837 793 745 839 795 747 793 839 747 841 749 753 763 751 749 843 753 797 845 755 795 755 845 797 757 799 847 759 757 849 801 759 849 777 761 801 799 763 841 803 719 807 805 717 803 721 805 809 807 727 819 767 765 851 853 765 769 775 767 855 769 809 857 811 771 817 773 859 813 817 725 815 815 775 861 819 729 801 731 821 863 695 865 823 867 829 785 831 869 789 869 791 789 791 871 833 743 833 835 835 837 745 837 839 793 839 845 795 841 763 749 841 753 843 797 873 843 797 845 873 847 799 875 849 757 847 799 841 875 803 807 877 879 805 803 809 805 881 807 819 883 855 767 851 851 765 853 853 769 857 861 775 855 857 809 885 887 811 817 813 859 889 817 815 891 891 815 861 883 819 893 896 821 897 865 899 823 901 869 831 869 903 791 903 871 791 871 905 833 833 907 835 835 909 837 837 911 839 911 845 839 875 841 843 843 873 913 873 845 911 875 916 917 877 807 883 879 803 919 805 879 881 809 881 885 923 924 925 924 928 929 853 857 931 934 923 935 931 857 885 937 887 817 817 891 939 942 934 943 883 893 945 865 947 899 951 952 953 901 955 869 955 903 869 903 957 871 871 959 905 833 905 907 907 909 835 909 911 837 843 913 875 913 873 961 873 911 961 875 913 916 877 883 945 879 919 963 879 965 881 885 881 967 935 923 925 925 924 929 929 928 969 853 931 971 934 935 943 931 885 973 937 817 939 976 942 977 942 943 977 947 979 899 952 981 953 983 955 901 955 985 903 903 985 957 871 957 959 905 959 987 907 905 989 907 989 909 961 911 909 913 961 991 916 913 991 877 945 993 879 963 965 963 919 995 881 965 967 973 885 967 929 969 997 971 931 955 931 973 985 937 939 999 976 977 1001 952 1003 981 947 999 979 997 1006 1007 971 955 983 931 985 955 985 1009 957 957 1011 959 959 1013 987 905 987 989 989 961 909 991 961 989 1015 916 991 967 965 1017 973 967 1009 997 969 1006 985 973 1009 1019 976 1001 947 937 999 1003 1021 981 1003 1019 1021 957 1009 1011 959 1011 1013 1015 987 1023 987 991 989 1015 991 987 967 1017 1009 1019 1001 1021 1009 1017 1011</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1484\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1487\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1490\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1488\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1489\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1488\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1120\" source=\"#ID1491\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"3360\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1491\">-0.4284909069538117 1.845905065536499 -0.3419413566589356 -0.4284909069538117 1.778753757476807 -0.3575156927108765 -0.2499992847442627 1.845905065536499 -0.3415195643901825 -0.2499992847442627 1.845905065536499 -0.3415195643901825 -0.4284909069538117 1.778753757476807 -0.3575156927108765 -0.4284909069538117 1.845905065536499 -0.3419413566589356 -0.492791086435318 1.735238432884216 -0.341511458158493 -0.492791086435318 1.735238432884216 -0.341511458158493 -0.2530297040939331 1.885210990905762 -0.2984420955181122 -0.2530297040939331 1.885210990905762 -0.2984420955181122 -0.2518970370292664 1.778753757476807 -0.3580342233181 -0.2518970370292664 1.778753757476807 -0.3580342233181 -0.5439662933349609 1.630160927772522 -0.3612952828407288 -0.5439662933349609 1.630160927772522 -0.3612952828407288 -0.4274950623512268 1.892464756965637 -0.2981753945350647 -0.4274950623512268 1.892464756965637 -0.2981753945350647 -0.001449317671358585 1.893650889396668 -0.2984420955181122 -0.001449317671358585 1.893650889396668 -0.2984420955181122 -0.001449317671358585 1.840989470481873 -0.3415195643901825 -0.001449317671358585 1.840989470481873 -0.3415195643901825 -0.5402756929397583 1.730631828308106 -0.05429454147815704 -0.5402756929397583 1.730631828308106 -0.05429454147815704 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.001449317671358585 1.903719186782837 -0.2660267651081085 -0.001449317671358585 1.903719186782837 -0.2660267651081085 -0.2510687708854675 1.897168397903442 -0.2660267651081085 -0.2510687708854675 1.897168397903442 -0.2660267651081085 -0.001449317671358585 1.790218114852905 -0.3580342829227448 -0.001449317671358585 1.790218114852905 -0.3580342829227448 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4942575693130493 1.810338735580444 -0.1560795605182648 -0.4942575693130493 1.810338735580444 -0.1560795605182648 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.4262329339981079 1.900443553924561 -0.2676746845245361 0.2471002340316773 1.845904111862183 -0.3415195643901825 0.2471002340316773 1.845904111862183 -0.3415195643901825 0.2501309812068939 1.885210514068604 -0.2984420955181122 0.2501309812068939 1.885210514068604 -0.2984420955181122 0.2489985525608063 1.778753399848938 -0.3580342829227448 0.2489985525608063 1.778753399848938 -0.3580342829227448 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.5022329092025757 1.826841831207275 0.03412822261452675 -0.5022329092025757 1.826841831207275 0.03412822261452675 -0.5121397972106934 1.815709233283997 -0.1209307163953781 -0.5121397972106934 1.815709233283997 -0.1209307163953781 -0.4660681784152985 1.811052560806274 -0.1879515945911408 -0.4660681784152985 1.811052560806274 -0.1879515945911408 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.253710150718689 1.913546323776245 -0.1969181150197983 0.248169869184494 1.897167801856995 -0.2660267651081085 0.248169869184494 1.897167801856995 -0.2660267651081085 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.001449317671358585 1.915921688079834 -0.1955144852399826 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 -0.001449264585971832 1.536692500114441 -0.3334604203701019 -0.001449264585971832 1.536692500114441 -0.3334604203701019 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.4583899974822998 1.827001571655273 0.05228543654084206 -0.4583899974822998 1.827001571655273 0.05228543654084206 -0.5234936475753784 1.823414206504822 0.00754820927977562 -0.5234936475753784 1.823414206504822 0.00754820927977562 -0.5227372050285339 1.817952036857605 -0.07677430659532547 -0.5227372050285339 1.817952036857605 -0.07677430659532547 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4287169277667999 1.813359618186951 -0.1959136426448822 0.425592303276062 1.778753399848938 -0.3575156927108765 0.425592303276062 1.778753399848938 -0.3575156927108765 0.425592303276062 1.845904111862183 -0.3419413566589356 0.425592303276062 1.845904111862183 -0.3419413566589356 0.424596518278122 1.892464280128479 -0.2981753945350647 0.424596518278122 1.892464280128479 -0.2981753945350647 0.5410676598548889 1.630160927772522 -0.3612952828407288 0.5410676598548889 1.630160927772522 -0.3612952828407288 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.5042721629142761 1.629883885383606 0.1692219376564026 -0.5042721629142761 1.629883885383606 0.1692219376564026 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.531063973903656 1.821377754211426 -0.03405506536364555 -0.531063973903656 1.821377754211426 -0.03405506536364555 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.5112505555152893 1.913546323776245 -0.1217374056577683 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.5500150322914124 1.538213133811951 -0.362256646156311 0.5500150322914124 1.538213133811951 -0.362256646156311 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4982104897499085 1.831614017486572 0.1618779003620148 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4982104897499085 1.831614017486572 0.1618779003620148 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.4839866459369659 1.627110838890076 0.1684880554676056 -0.4839866459369659 1.627110838890076 0.1684880554676056 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.5210548639297485 1.913546323776245 -0.07925551384687424 0.4898924827575684 1.735237956047058 -0.341511458158493 0.4898924827575684 1.735237956047058 -0.341511458158493 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.5500150322914124 1.538213133811951 -0.362256646156311 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5500150322914124 1.538213133811951 -0.362256646156311 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.1436953097581863 1.441868185997009 -0.2887334525585175 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.5120450258255005 1.535624384880066 0.1684880554676056 -0.5120450258255005 1.535624384880066 0.1684880554676056 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.3280232548713684 1.530326366424561 -0.02723223529756069 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.3280232548713684 1.530326366424561 -0.02723223529756069 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.3179892599582672 1.440020799636841 -0.02723223529756069 -0.3179892599582672 1.440020799636841 -0.02723223529756069 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.4811488389968872 1.900608420372009 0.1218080669641495 -0.4811488389968872 1.900608420372009 0.1218080669641495 -0.3965325653553009 1.825424194335938 0.07977844774723053 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3965325653553009 1.825424194335938 0.07977844774723053 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3392848372459412 1.63602614402771 -0.02723223529756069 -0.3392848372459412 1.63602614402771 -0.02723223529756069 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 0.5373769402503967 1.730631828308106 -0.05429454147815704 0.5373769402503967 1.730631828308106 -0.05429454147815704 0.425817996263504 1.813359618186951 -0.1959136426448822 0.425817996263504 1.813359618186951 -0.1959136426448822 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5607179403305054 1.441428422927856 -0.371430516242981 0.5607179403305054 1.441428422927856 -0.371430516242981 0.174921989440918 1.441850662231445 -0.06437790393829346 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.174921989440918 1.441850662231445 -0.06437790393829346 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.146251991391182 1.636475563049316 -0.2887333929538727 -0.146251991391182 1.636475563049316 -0.2887333929538727 -0.3129720091819763 1.329645752906799 -0.02723223529756069 -0.3129720091819763 1.329645752906799 -0.02723223529756069 -0.001449264585971832 1.800307512283325 -0.2640757858753204 -0.001449264585971832 1.800307512283325 -0.2640757858753204 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.4740534126758575 1.535303473472595 0.1684880554676056 -0.4740534126758575 1.535303473472595 0.1684880554676056 0.4913583993911743 1.810338258743286 -0.1560795605182648 0.4913583993911743 1.810338258743286 -0.1560795605182648 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.425817996263504 1.813359618186951 -0.1959136426448822 0.463169276714325 1.811052083969116 -0.1879515945911408 0.463169276714325 1.811052083969116 -0.1879515945911408 0.425817996263504 1.813359618186951 -0.1959136426448822 0.5607179403305054 1.441428422927856 -0.371430516242981 0.5607179403305054 1.441428422927856 -0.371430516242981 0.501373291015625 1.629883170127869 0.1692219376564026 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5520590543746948 1.631603479385376 0.1968967169523239 0.501373291015625 1.629883170127869 0.1692219376564026 0.4799154102802277 1.733479738235474 0.1646009534597397 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4799154102802277 1.733479738235474 0.1646009534597397 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.332428932189941 -0.06246279180049896 0.174921989440918 1.332428932189941 -0.06246279180049896 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5218863487243652 1.436050415039063 0.1684880554676056 -0.5218863487243652 1.436050415039063 0.1684880554676056 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.4668075442314148 1.436590313911438 0.1684880554676056 -0.4668075442314148 1.436590313911438 0.1684880554676056 -0.001449264585971832 1.825429081916809 0.07037267088890076 -0.001449264585971832 1.825429081916809 0.07037267088890076 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 0.499333918094635 1.826841831207275 0.03412822261452675 0.499333918094635 1.826841831207275 0.03412822261452675 0.5092408657073975 1.815709233283997 -0.1209307163953781 0.5092408657073975 1.815709233283997 -0.1209307163953781 0.425817996263504 1.813359618186951 -0.1959136426448822 0.425817996263504 1.813359618186951 -0.1959136426448822 0.57486492395401 1.437644124031067 0.2137537151575089 0.57486492395401 1.437644124031067 0.2137537151575089 0.5091465711593628 1.535624027252197 0.1684880554676056 0.5091465711593628 1.535624027252197 0.1684880554676056 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.174921989440918 1.635286450386047 -0.06640081107616425 0.174921989440918 1.635286450386047 -0.06640081107616425 0.174921989440918 1.441850662231445 -0.06437790393829346 0.174921989440918 1.537016987800598 -0.06437790393829346 0.3251246511936188 1.530326366424561 -0.02723223529756069 0.3251246511936188 1.530326366424561 -0.02723223529756069 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.441850662231445 -0.06437790393829346 0.174921989440918 1.332428932189941 -0.06246279180049896 0.31509068608284 1.440020322799683 -0.02723223529756069 0.31509068608284 1.440020322799683 -0.02723223529756069 0.174921989440918 1.332428932189941 -0.06246279180049896 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.3129720091819763 1.236830115318298 -0.02777358889579773 -0.3129720091819763 1.236830115318298 -0.02777358889579773 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.4615717530250549 1.331655025482178 0.1681370437145233 -0.4615717530250549 1.331655025482178 0.1681370437145233 0.3936337828636169 1.825424194335938 0.07977844774723053 0.3936337828636169 1.825424194335938 0.07977844774723053 -0.001449317671358585 1.738980174064636 -0.3044333755970001 -0.001449317671358585 1.738980174064636 -0.3044333755970001 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.001449317671358585 1.847941994667053 0.08541373908519745 0.4554912447929382 1.827001571655273 0.05228543654084206 0.4554912447929382 1.827001571655273 0.05228543654084206 0.5205953121185303 1.823413729667664 0.00754820927977562 0.5205953121185303 1.823413729667664 0.00754820927977562 0.5198380947113037 1.817951560020447 -0.07677430659532547 0.5198380947113037 1.817951560020447 -0.07677430659532547 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.57486492395401 1.437644124031067 0.2137537151575089 0.57486492395401 1.437644124031067 0.2137537151575089 0.4810881018638611 1.627110362052918 0.1684880554676056 0.4810881018638611 1.627110362052918 0.1684880554676056 0.4953119158744812 1.831613540649414 0.1618779003620148 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4953119158744812 1.831613540649414 0.1618779003620148 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.174921989440918 1.238158345222473 -0.06665239483118057 0.174921989440918 1.238158345222473 -0.06665239483118057 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.174921989440918 1.635286450386047 -0.06640081107616425 0.3363863527774811 1.636025667190552 -0.02723223529756069 0.3363863527774811 1.636025667190552 -0.02723223529756069 0.174921989440918 1.635286450386047 -0.06640081107616425 0.1433530896902084 1.636475563049316 -0.2887334525585175 0.1433530896902084 1.636475563049316 -0.2887334525585175 0.3100736141204834 1.329645752906799 -0.02723223529756069 0.3100736141204834 1.329645752906799 -0.02723223529756069 -0.59349524974823 1.231308460235596 0.211546465754509 -0.59349524974823 1.231308460235596 0.211546465754509 -0.5315014719963074 1.332691550254822 0.1684880554676056 -0.5315014719963074 1.332691550254822 0.1684880554676056 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 0.391455739736557 1.843269467353821 0.09250524640083313 0.391455739736557 1.843269467353821 0.09250524640083313 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.4959137439727783 1.913545846939087 0.03620735183358192 0.4959137439727783 1.913545846939087 0.03620735183358192 0.528164803981781 1.821377277374268 -0.03405506536364555 0.528164803981781 1.821377277374268 -0.03405506536364555 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5189875960350037 1.436050415039063 0.1684880554676056 0.5189875960350037 1.436050415039063 0.1684880554676056 0.4711544513702393 1.535303473472595 0.1684880554676056 0.4711544513702393 1.535303473472595 0.1684880554676056 0.47825026512146 1.900608062744141 0.1218080669641495 0.47825026512146 1.900608062744141 0.1218080669641495 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.4799154102802277 1.733479738235474 0.1646009534597397 0.4799154102802277 1.733479738235474 0.1646009534597397 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.174921989440918 1.238158345222473 -0.06665239483118057 0.174921989440918 1.238158345222473 -0.06665239483118057 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.4639089703559876 1.436590313911438 0.1684880554676056 0.4639089703559876 1.436590313911438 0.1684880554676056 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.59349524974823 1.231308460235596 0.211546465754509 -0.59349524974823 1.231308460235596 0.211546465754509 -0.4589178562164307 1.23185932636261 0.1681370437145233 -0.4589178562164307 1.23185932636261 0.1681370437145233 -0.3018067181110382 1.0907301902771 -0.02723223529756069 -0.3018067181110382 1.0907301902771 -0.02723223529756069 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.002916331402957439 1.098329663276672 -0.2887333929538727 -0.002916331402957439 1.098329663276672 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.536308765411377 1.230878353118897 0.1681370437145233 -0.536308765411377 1.230878353118897 0.1681370437145233 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5822999477386475 1.338033080101013 0.2104835957288742 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.097799062728882 -0.06455764919519424 0.174921989440918 1.097799062728882 -0.06455764919519424 0.3100736141204834 1.236830115318298 -0.02777358889579773 0.3100736141204834 1.236830115318298 -0.02777358889579773 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.4586731791496277 1.331655025482178 0.1681370437145233 0.4586731791496277 1.331655025482178 0.1681370437145233 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.001449264585971832 0.9224953055381775 -0.4125895202159882 -0.001449264585971832 0.9224953055381775 -0.4125895202159882 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.5905963182449341 1.231308460235596 0.211546465754509 0.5905963182449341 1.231308460235596 0.211546465754509 0.5286024808883667 1.332691550254822 0.1684880554676056 0.5286024808883667 1.332691550254822 0.1684880554676056 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.174921989440918 1.097799062728882 -0.06455764919519424 0.174921989440918 1.097799062728882 -0.06455764919519424 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.4476439952850342 1.085452318191528 0.1687992811203003 -0.4476439952850342 1.085452318191528 0.1687992811203003 -0.5506917834281921 1.079741597175598 0.1681370437145233 -0.5506917834281921 1.079741597175598 0.1681370437145233 -0.2962236702442169 0.9798537492752075 -0.02685293555259705 -0.2962236702442169 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.406062126159668 0.9056558609008789 -0.4102611839771271 -0.406062126159668 0.9056558609008789 -0.4102611839771271 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.1434928178787231 1.029773592948914 -0.290567547082901 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.5905963182449341 1.231308460235596 0.211546465754509 0.5905963182449341 1.231308460235596 0.211546465754509 0.174921989440918 1.021738171577454 -0.06246279180049896 0.174921989440918 1.021738171577454 -0.06246279180049896 0.2989078760147095 1.0907301902771 -0.02723223529756069 0.2989078760147095 1.0907301902771 -0.02723223529756069 0.4560191333293915 1.23185932636261 0.1681370437145233 0.4560191333293915 1.23185932636261 0.1681370437145233 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 1.764297485351563e-005 1.098328948020935 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 1.764297485351563e-005 1.098328948020935 -0.2887334525585175 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.5334103107452393 1.230877995491028 0.1681370437145233 0.5334103107452393 1.230877995491028 0.1681370437145233 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.001449264585971832 0.4225348234176636 -0.4125895202159882 -0.001449264585971832 0.4225348234176636 -0.4125895202159882 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.4369345605373383 0.8832268714904785 0.1687992811203003 -0.4369345605373383 0.8832268714904785 0.1687992811203003 -0.001449264585971832 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 0.9798537492752075 -0.02685293555259705 0.59018474817276 1.083053469657898 0.2102400213479996 0.59018474817276 1.083053469657898 0.2102400213479996 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.174921989440918 1.021738171577454 -0.06246279180049896 0.174921989440918 1.021738171577454 -0.06246279180049896 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.2021754086017609 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.5537700057029724 0.8805091977119446 0.1687992811203003 -0.5537700057029724 0.8805091977119446 0.1687992811203003 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.4031637907028198 0.9056558609008789 -0.4102611839771271 0.4031637907028198 0.9056558609008789 -0.4102611839771271 -0.3065129816532135 0.8859434127807617 0.1687992811203003 -0.3065129816532135 0.8859434127807617 0.1687992811203003 0.6102513670921326 0.878864586353302 -0.178733304142952 0.6102513670921326 0.878864586353302 -0.178733304142952 0.59018474817276 1.083053469657898 0.2102400213479996 0.59018474817276 1.083053469657898 0.2102400213479996 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.2933250367641449 0.9798537492752075 -0.02685293555259705 0.2933250367641449 0.9798537492752075 -0.02685293555259705 0.4447450339794159 1.085452318191528 0.1687992811203003 0.4447450339794159 1.085452318191528 0.1687992811203003 0.5477932691574097 1.079741597175598 0.1681370437145233 0.5477932691574097 1.079741597175598 0.1681370437145233 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.7692805528640747 0.9785095453262329 -0.3779011070728302 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7665115594863892 0.9050183892250061 -0.4102611839771271 -0.4568682312965393 0.7821235656738281 0.1939517259597778 -0.4568682312965393 0.7821235656738281 0.1939517259597778 0.3036143779754639 0.8859434127807617 0.1687992811203003 0.3036143779754639 0.8859434127807617 0.1687992811203003 -0.001449317671358585 0.8832268714904785 0.1687992811203003 -0.001449317671358585 0.8832268714904785 0.1687992811203003 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.6102513670921326 0.878864586353302 -0.178733304142952 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.6102513670921326 0.878864586353302 -0.178733304142952 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.4340358078479767 0.8832268714904785 0.1687992811203003 0.4340358078479767 0.8832268714904785 0.1687992811203003 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.5659343004226685 0.7770506739616394 0.1939517259597778 -0.5659343004226685 0.7770506739616394 0.1939517259597778 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 -0.3224376142024994 0.7821235656738281 0.1939517259597778 -0.3224376142024994 0.7821235656738281 0.1939517259597778 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.5508714914321899 0.8805091977119446 0.1687992811203003 0.5508714914321899 0.8805091977119446 0.1687992811203003 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.001449264585971832 -0.4657838642597199 -0.401268482208252 -0.001449264585971832 -0.4657838642597199 -0.401268482208252 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 -0.4873052835464478 0.6395153403282166 0.2242447286844254 -0.4873052835464478 0.6395153403282166 0.2242447286844254 -0.5904378294944763 0.6395494937896729 0.2237000018358231 -0.5904378294944763 0.6395494937896729 0.2237000018358231 0.3195390701293945 0.7821230292320252 0.1939517259597778 0.3195390701293945 0.7821230292320252 0.1939517259597778 0.4539692401885986 0.7821230292320252 0.1939517259597778 0.4539692401885986 0.7821230292320252 0.1939517259597778 -0.001449317671358585 0.7846598029136658 0.1939517259597778 -0.001449317671358585 0.7846598029136658 0.1939517259597778 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.620998740196228 0.7615718245506287 -0.2084415704011917 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.3351199328899384 0.6414915919303894 0.2242447286844254 -0.3351199328899384 0.6414915919303894 0.2242447286844254 -0.5904378294944763 0.6395494937896729 0.2237000018358231 -0.5904378294944763 0.6395494937896729 0.2237000018358231 0.5630353093147278 0.7770506739616394 0.1939517259597778 0.5630353093147278 0.7770506739616394 0.1939517259597778 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7813732028007507 0.6196871995925903 -0.2350356727838516 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 0.3322211503982544 0.6414915919303894 0.2242447286844254 0.3322211503982544 0.6414915919303894 0.2242447286844254 0.484406590461731 0.6395153403282166 0.2242447286844254 0.484406590461731 0.6395153403282166 0.2242447286844254 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.5875386595726013 0.6395494937896729 0.2237000018358231 -0.001449317671358585 0.64403235912323 0.2242447286844254 -0.001449317671358585 0.64403235912323 0.2242447286844254 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6330281496047974 0.6197859644889832 -0.2311255186796188 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.001449264585971832 -0.7595747113227844 -0.3996257781982422 -0.001449264585971832 -0.7595747113227844 -0.3996257781982422 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4915523529052734 -0.7594550848007202 -0.401268482208252 -0.3487512469291687 0.4234864413738251 0.2671858966350555 -0.3487512469291687 0.4234864413738251 0.2671858966350555 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.7780932784080505 0.4214316308498383 -0.2512775957584381 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 -0.3487512469291687 0.4234864413738251 0.2671858966350555 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.3487512469291687 0.4234864413738251 0.2671858966350555 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 -0.001449264585971832 0.4234864413738251 0.2770070433616638 -0.001449264585971832 0.4234864413738251 0.2770070433616638 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.6541249752044678 0.4215267300605774 -0.2490309327840805 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.4983565807342529 -1.144771337509155 -0.05335938557982445 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4983565807342529 -1.144771337509155 -0.05335938557982445 -0.001449264585971832 -0.994135320186615 -0.3598018288612366 -0.001449264585971832 -0.994135320186615 -0.3598018288612366 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.354899525642395 0.4234864413738251 0.4407898485660553 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 -0.001449264585971832 0.4234864413738251 0.2770070433616638 -0.001449264585971832 0.4234864413738251 0.2770070433616638 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.6541249752044678 0.4215267300605774 -0.2490309327840805 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4954578280448914 -1.144771337509155 -0.05335938557982445 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4954578280448914 -1.144771337509155 -0.05335938557982445 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6173088550567627 0.4206523001194 0.2673260569572449 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.001449317671358585 0.4255315661430359 0.4577548205852509 0.7970438599586487 0.4232206344604492 -0.1200132966041565 0.7970438599586487 0.4232206344604492 -0.1200132966041565 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.6885963678359985 0.4193951189517975 0.3593906462192535 0.6885963678359985 0.4193951189517975 0.3593906462192535 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.7982441186904907 0.4255830943584442 0.01974329724907875 0.7982441186904907 0.4255830943584442 0.01974329724907875 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.4872207045555115 -1.537930369377136 -0.2763937413692474 -0.4872207045555115 -1.537930369377136 -0.2763937413692474 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7870740294456482 0.4261996150016785 0.1537329405546188 0.7870740294456482 0.4261996150016785 0.1537329405546188 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 0.4843221306800842 -1.537930369377136 -0.2763938009738922 0.4843221306800842 -1.537930369377136 -0.2763938009738922 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.7695745229721069 0.423301488161087 0.2328356057405472 0.7695745229721069 0.423301488161087 0.2328356057405472 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.7468852996826172 0.4189915955066681 0.2977039515972138 0.7468852996826172 0.4189915955066681 0.2977039515972138 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5133307576179504 -1.001767039299011 0.1643165051937103 -0.5133307576179504 -1.001767039299011 0.1643165051937103 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5133307576179504 -1.001767039299011 0.1643165051937103 -0.5133307576179504 -1.001767039299011 0.1643165051937103 0.523284912109375 -1.491312742233276 -0.023659847676754 0.523284912109375 -1.491312742233276 -0.023659847676754 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5104317665100098 -1.001767039299011 0.1643165051937103 0.5104317665100098 -1.001767039299011 0.1643165051937103 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.5102030634880066 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.491312742233276 -0.023659847676754 0.523284912109375 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.440359592437744 0.05794682726264 0.523284912109375 -1.440359592437744 0.05794682726264 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5104317665100098 -1.001767039299011 0.1643165051937103 0.5104317665100098 -1.001767039299011 0.1643165051937103 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.523284912109375 -1.440359592437744 0.05794682726264 0.523284912109375 -1.440359592437744 0.05794682726264 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7923230528831482 -1.368424773216248 0.1249729543924332</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1489\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1120\" source=\"#ID1492\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"3360\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1492\">-0.3624737800293703 0.4859647467451019 -0.7952678943049244 -0.1545443154350269 0.1639940879950334 -0.9742802439079815 -0.003853141030227453 0.5060249083727283 -0.8625102581480253 0.003853141030227453 -0.5060249083727283 0.8625102581480253 0.1545443154350269 -0.1639940879950334 0.9742802439079815 0.3624737800293703 -0.4859647467451019 0.7952678943049244 -0.7324920660122415 0.457917387625513 -0.5037529546705845 0.7324920660122415 -0.457917387625513 0.5037529546705845 -0.0004069113151989066 0.8510737583644934 -0.5250459906013161 0.0004069113151989066 -0.8510737583644934 0.5250459906013161 0.03299238499774464 0.01579987216850699 -0.9993307093107963 -0.03299238499774464 -0.01579987216850699 0.9993307093107963 -0.6599367575566504 0.1574799509539804 -0.7346315682525131 0.6599367575566504 -0.1574799509539804 0.7346315682525131 -0.4825950502217278 0.7718517995669966 -0.41394059598773 0.4825950502217278 -0.7718517995669966 0.41394059598773 1.071540052998343e-006 0.8368601856344831 -0.5474166874499445 -1.071540052998343e-006 -0.8368601856344831 0.5474166874499445 6.813683993455388e-007 0.4721141919303452 -0.8815374012357574 -6.813683993455388e-007 -0.4721141919303452 0.8815374012357574 -0.9974871553865196 0.06924404581483046 -0.01498789371802915 0.9974871553865196 -0.06924404581483046 0.01498789371802915 -0.9711284224999425 0.2245742194279648 0.08047364152996804 0.9711284224999425 -0.2245742194279648 -0.08047364152996804 1.061019862232905e-006 0.9717634124067937 -0.2359573484898874 -1.061019862232905e-006 -0.9717634124067937 0.2359573484898874 0.004512754540973932 0.9589012500145845 -0.2837041201091738 -0.004512754540973932 -0.9589012500145845 0.2837041201091738 -7.330408345447807e-008 0.05702732137435288 -0.998372618122543 7.330408345447807e-008 -0.05702732137435288 0.998372618122543 0.03150240910259435 -0.120950970924864 -0.9921584857536954 -0.03150240910259435 0.120950970924864 0.9921584857536954 -0.9385416613712174 0.3443531983703549 0.02367328964597491 0.9385416613712174 -0.3443531983703549 -0.02367328964597491 -0.8761981556018987 0.2259556718250015 -0.425700395219388 0.8761981556018987 -0.2259556718250015 0.425700395219388 -0.9664102261534006 0.1792971905669148 0.1841298244200134 0.9664102261534006 -0.1792971905669148 -0.1841298244200134 0.009571043662882323 0.9761844930476938 -0.2167307792087227 -0.009571043662882323 -0.9761844930476938 0.2167307792087227 0.003853817547659413 0.5060234076335159 -0.862511135590303 -0.003853817547659413 -0.5060234076335159 0.862511135590303 0.0004077021893716645 0.851072916055885 -0.5250473553262195 -0.0004077021893716645 -0.851072916055885 0.5250473553262195 -0.03299219064653936 0.01580101445099036 -0.9993306976665243 0.03299219064653936 -0.01580101445099036 0.9993306976665243 0.1854924483388497 0.0297144551440979 -0.9821963157967701 -0.1854924483388497 -0.0297144551440979 0.9821963157967701 -0.9827438492098397 0.1835206260197056 -0.02312372516623031 0.9827438492098397 -0.1835206260197056 0.02312372516623031 -0.7396135861098553 0.2706010337434902 0.6162360130491191 0.7396135861098553 -0.2706010337434902 -0.6162360130491191 -0.929203404900106 0.004851496540596717 -0.3695368659597662 0.929203404900106 -0.004851496540596717 0.3695368659597662 -0.4572957004858343 0.5678939809349656 -0.684380792201978 0.4572957004858343 -0.5678939809349656 0.684380792201978 -0.9996755617097963 0.02513946843080167 -0.004096150292636169 0.9996755617097963 -0.02513946843080167 0.004096150292636169 -0.1444513541761632 0.8970155625046075 -0.4177282452758196 0.1444513541761632 -0.8970155625046075 0.4177282452758196 -0.0003142089705117116 0.844635117266066 -0.5353423390258441 0.0003142089705117116 -0.844635117266066 0.5353423390258441 -0.004511777179443033 0.9589014785861503 -0.2837033630959952 0.004511777179443033 -0.9589014785861503 0.2837033630959952 9.386065420688752e-007 0.8779194969412163 -0.4788082673571967 -9.386065420688752e-007 -0.8779194969412163 0.4788082673571967 -0.03150232463048155 -0.1209510078656186 -0.9921584839324648 0.03150232463048155 0.1209510078656186 0.9921584839324648 1.421110156752401e-007 -0.09647637482302918 -0.9953352747195219 -1.421110156752401e-007 0.09647637482302918 0.9953352747195219 -0.9939519189231681 0.1071781674738492 -0.02392536908596283 0.9939519189231681 -0.1071781674738492 0.02392536908596283 0.1874073137697865 0.004104856223899814 -0.9822737138399735 -0.1874073137697865 -0.004104856223899814 0.9822737138399735 0.4766670216020972 -0.03148357499934053 0.8785199684823598 0.4740065005530203 0.06433251425393863 0.8781680733454425 0.6770012810427748 0.06137130979137885 0.7334185897568538 -0.6770012810427748 -0.06137130979137885 -0.7334185897568538 -0.4740065005530203 -0.06433251425393863 -0.8781680733454425 -0.4766670216020972 0.03148357499934053 -0.8785199684823598 -0.75716505701647 0.4316397027746605 0.4902940377180294 0.75716505701647 -0.4316397027746605 -0.4902940377180294 -0.8837170001912241 -0.08811553730210767 0.4596519505658436 0.8837170001912241 0.08811553730210767 -0.4596519505658436 -0.9732376766669912 0.0742968484610015 -0.2174589686000547 0.9732376766669912 -0.0742968484610015 0.2174589686000547 -0.7577190848040959 0.3973032107154196 -0.5176987031844511 0.7577190848040959 -0.3973032107154196 0.5176987031844511 -0.457138707571557 0.3553778220514752 -0.8153102511521345 0.457138707571557 -0.3553778220514752 0.8153102511521345 -0.2089924216546803 0.008762989339713465 -0.9778779973538337 -0.1006180874477454 0.6177155415554498 -0.779938145111018 0.1006180874477454 -0.6177155415554498 0.779938145111018 0.2089924216546803 -0.008762989339713465 0.9778779973538337 0.1545449189804481 0.1639953826160094 -0.9742799302551375 -0.1545449189804481 -0.1639953826160094 0.9742799302551375 0.3624719227926648 0.4859633171358438 -0.7952696143983599 -0.3624719227926648 -0.4859633171358438 0.7952696143983599 0.4825976504425874 0.7718509711554245 -0.4139391091860277 -0.4825976504425874 -0.7718509711554245 0.4139391091860277 0.6599378617402222 0.1574791258733538 -0.7346307532059271 -0.6599378617402222 -0.1574791258733538 0.7346307532059271 -0.9930809860323686 0.1146799591334536 -0.02527176594795086 0.9930809860323686 -0.1146799591334536 0.02527176594795086 0.1977659800341587 0.0464019048807483 -0.9791503870011831 -0.1977659800341587 -0.0464019048807483 0.9791503870011831 0.9907202004319288 -0.004481338298964892 0.1358432996624015 0.9903889769166423 0.0008426209381802807 0.1383074994060737 0.9902665732855567 -0.0009229499262855498 0.1391806811188776 -0.9902665732855567 0.0009229499262855498 -0.1391806811188776 -0.9903889769166423 -0.0008426209381802807 -0.1383074994060737 -0.9907202004319288 0.004481338298964892 -0.1358432996624015 0.9506355888777646 -0.03521948841048554 0.3083043379440672 -0.9506355888777646 0.03521948841048554 -0.3083043379440672 0.2785982112331046 -0.01731088269238537 0.9602517222260656 -0.2785982112331046 0.01731088269238537 -0.9602517222260656 -0.9385111508363014 0.3147102088340285 -0.1419658557948474 0.9385111508363014 -0.3147102088340285 0.1419658557948474 -0.5374118567073094 0.4163750394213115 0.7333623407411262 0.5374118567073094 -0.4163750394213115 -0.7333623407411262 -0.9984558984029656 0.05542846701277118 0.00367477740021313 0.9984558984029656 -0.05542846701277118 -0.00367477740021313 -0.8244249006574319 0.4220939913763589 0.3770414375369871 0.8244249006574319 -0.4220939913763589 -0.3770414375369871 -0.8609538082186087 0.3950426369975656 -0.3204681810537273 0.8609538082186087 -0.3950426369975656 0.3204681810537273 -0.00957148868517114 0.9761843977801478 -0.2167311886530402 0.00957148868517114 -0.9761843977801478 0.2167311886530402 0.0003145381297959222 0.8446308682000966 -0.5353490427275611 -0.0003145381297959222 -0.8446308682000966 0.5353490427275611 -0.185492318012902 0.029714409387343 -0.9821963417937178 0.185492318012902 -0.029714409387343 0.9821963417937178 -0.9948953864089095 0.09776053599842396 -0.02502094529723696 0.9948953864089095 -0.09776053599842396 0.02502094529723696 0.5153709162730268 0.007115690917785558 0.8569376789490958 -0.5153709162730268 -0.007115690917785558 -0.8569376789490958 0.1990967315569903 0.004305444266122145 -0.9799703845693475 -0.1990967315569903 -0.004305444266122145 0.9799703845693475 0.9902788853317449 0.001416575145139241 0.1390889017174802 -0.9902788853317449 -0.001416575145139241 -0.1390889017174802 0.9909381866633921 -0.00339928129879528 0.1342756683056169 -0.9909381866633921 0.00339928129879528 -0.1342756683056169 0.7837827076589627 -0.0777275116834283 0.6161518490618102 0.7789570757840516 -0.0003647030452540897 0.627077141249502 0.807881193541539 0.1421292548319688 0.5719503929912172 -0.807881193541539 -0.1421292548319688 -0.5719503929912172 -0.7789570757840516 0.0003647030452540897 -0.627077141249502 -0.7837827076589627 0.0777275116834283 -0.6161518490618102 0.97886734548447 -0.09340764649124664 0.1819168258329987 -0.97886734548447 0.09340764649124664 -0.1819168258329987 0.4487402694777954 0.03338026433872194 0.8930385929519914 -0.4487402694777954 -0.03338026433872194 -0.8930385929519914 -0.9947296916848576 0.03826608924145202 -0.09512385029377941 0.9947296916848576 -0.03826608924145202 0.09512385029377941 -0.1102595056986163 0.6041944645946928 0.7891716482212404 0.1102595056986163 -0.6041944645946928 -0.7891716482212404 -0.904888817089381 0.4255285472945364 0.01008385561096054 0.904888817089381 -0.4255285472945364 -0.01008385561096054 -0.8988689238162904 0.3942461495617065 -0.1913233685494596 0.8988689238162904 -0.3942461495617065 0.1913233685494596 0.732492058088297 0.4579188953728411 -0.5037515956283295 -0.732492058088297 -0.4579188953728411 0.5037515956283295 0.9711282967358724 0.2245734737144611 0.08047724015337268 -0.9711282967358724 -0.2245734737144611 -0.08047724015337268 0.9939518227067535 0.1071790024554668 -0.0239256258136243 0.9827435946668154 0.1835219798413784 -0.02312379848656081 -0.9827435946668154 -0.1835219798413784 0.02312379848656081 -0.9939518227067535 -0.1071790024554668 0.0239256258136243 -0.187407160819612 0.004104808380183385 -0.9822737432211522 0.187407160819612 -0.004104808380183385 0.9822737432211522 -0.9962646189382179 0.08335278637210813 -0.02256373319938482 0.9962646189382179 -0.08335278637210813 0.02256373319938482 0.282762654895606 -0.01355152068251251 0.9590941753986312 -0.282762654895606 0.01355152068251251 -0.9590941753986312 0.9905045084774971 0.00430583151241134 0.1374128032635193 -0.9905045084774971 -0.00430583151241134 -0.1374128032635193 0.2033008390474977 0.02159626358807922 -0.9788781181748919 -0.2033008390474977 -0.02159626358807922 0.9788781181748919 0.9901476793937345 0.0009945214277502505 0.1400235120197049 -0.9901476793937345 -0.0009945214277502505 -0.1400235120197049 0.2505953805537095 0.01319931024358321 0.9680019284351841 0.5544622414410764 0.05792895198666866 0.8301902549041778 0.2384622152970593 0.01130057266012134 0.9710860255060683 -0.2384622152970593 -0.01130057266012134 -0.9710860255060683 -0.5544622414410764 -0.05792895198666866 -0.8301902549041778 -0.2505953805537095 -0.01319931024358321 -0.9680019284351841 0.2536853763433732 -0.01385342089267899 0.9671875787866031 0.5517721355645144 0.04180008004943988 0.8329467352252697 -0.5517721355645144 -0.04180008004943988 -0.8329467352252697 -0.2536853763433732 0.01385342089267899 -0.9671875787866031 0.8556501718362605 0.2205237944821925 0.4682222116727841 -0.8556501718362605 -0.2205237944821925 -0.4682222116727841 0.01092354614888393 -0.9096493391911312 0.415233375162295 -0.0210116343912583 -0.9819081657303571 0.1881883771444284 -0.05251364681989335 -0.965692631172645 0.2543227457317366 0.05251364681989335 0.965692631172645 -0.2543227457317366 0.0210116343912583 0.9819081657303571 -0.1881883771444284 -0.01092354614888393 0.9096493391911312 -0.415233375162295 0.199686066098458 0.9695763853543423 0.1415878101014707 0.1705977330597303 0.9606879073294415 0.2190323222400281 0.2344657761266083 0.9511198135383904 0.2009898010348905 -0.2344657761266083 -0.9511198135383904 -0.2009898010348905 -0.1705977330597303 -0.9606879073294415 -0.2190323222400281 -0.199686066098458 -0.9695763853543423 -0.1415878101014707 0.5595943241498509 0.03064844215397503 0.8281997738304483 -0.5595943241498509 -0.03064844215397503 -0.8281997738304483 0.8927890657270788 0.2334357383356926 0.385273202008445 -0.8927890657270788 -0.2334357383356926 -0.385273202008445 0.9974870555249193 0.06924543025848322 -0.01498814359899946 -0.9974870555249193 -0.06924543025848322 0.01498814359899946 0.9664101543029536 0.1792973560538182 0.1841300403851904 -0.9664101543029536 -0.1792973560538182 -0.1841300403851904 0.1006180685619479 0.6177085888725438 -0.7799436540622367 -0.1006180685619479 -0.6177085888725438 0.7799436540622367 0.9930807542926085 0.1146818707139896 -0.02527219783010267 -0.9930807542926085 -0.1146818707139896 0.02527219783010267 0.9385419000274274 0.3443525048755634 0.02367391557878455 -0.9385419000274274 -0.3443525048755634 -0.02367391557878455 -0.1977659061729414 0.04640222383028751 -0.9791503868043964 0.1977659061729414 -0.04640222383028751 0.9791503868043964 -0.9903888581766679 0.0008425838663977495 0.1383083498995786 -0.9907200813861874 -0.004481335275896335 0.1358441679730533 -0.9902664316060748 -0.0009233398319787592 0.1391816865745136 0.9902664316060748 0.0009233398319787592 -0.1391816865745136 0.9907200813861874 0.004481335275896335 -0.1358441679730533 0.9903888581766679 -0.0008425838663977495 -0.1383083498995786 -0.9956332832031598 0.09060838061056614 -0.02246078229331045 0.9956332832031598 -0.09060838061056614 0.02246078229331045 0.609302980938861 -0.04851120027734063 0.7914521721915162 -0.609302980938861 0.04851120027734063 -0.7914521721915162 0.9900164870656073 0.002237715452367364 0.1409338425213349 -0.9900164870656073 -0.002237715452367364 -0.1409338425213349 0.2037279884680405 0.003408292205479992 -0.9790215984640012 -0.2037279884680405 -0.003408292205479992 0.9790215984640012 0.2354288757230134 0.01033069315864383 0.9718366741663231 -0.2354288757230134 -0.01033069315864383 -0.9718366741663231 0.9899604319430478 -0.002011784228226916 0.1413304493425017 -0.9899604319430478 0.002011784228226916 -0.1413304493425017 0.5547653430423216 0.006299757779836354 0.8319830089677616 -0.5547653430423216 -0.006299757779836354 -0.8319830089677616 -4.394328509024803e-007 -0.8604107253640477 0.5096012006248809 4.394328509024803e-007 0.8604107253640477 -0.5096012006248809 0.1724366937858562 -0.5852573613334642 0.7923000742403056 -0.1724366937858562 0.5852573613334642 -0.7923000742403056 0.1714073010240002 0.9747916390754533 0.1428313605069244 -0.1714073010240002 -0.9747916390754533 -0.1428313605069244 0.5503810947730992 0.001214969156718686 0.8349126746949726 -0.5503810947730992 -0.001214969156718686 -0.8349126746949726 0.450037116531388 0.04310610239371941 0.8919688658695077 -0.450037116531388 -0.04310610239371941 -0.8919688658695077 0.8761978087912092 0.2259548846055289 -0.4257015268851939 -0.8761978087912092 -0.2259548846055289 0.4257015268851939 0.9996755819224945 0.02513868544375044 -0.004096022715052424 -0.9996755819224945 -0.02513868544375044 0.004096022715052424 0.1444621315590783 0.897014967628634 -0.4177257957028849 0.4573000724444853 0.5678945186820267 -0.6843774246665197 -0.4573000724444853 -0.5678945186820267 0.6843774246665197 -0.1444621315590783 -0.897014967628634 0.4177257957028849 0.9948955834759435 0.09775843681465128 -0.02502131114905634 -0.9948955834759435 -0.09775843681465128 0.02502131114905634 -0.2785981445243947 -0.01731150240502203 0.9602517304082537 -0.4766671925824109 -0.03148473006323069 0.8785198343170451 -0.515371312570275 0.00711481025181893 0.8569374479241017 0.515371312570275 -0.00711481025181893 -0.8569374479241017 0.4766671925824109 0.03148473006323069 -0.8785198343170451 0.2785981445243947 0.01731150240502203 -0.9602517304082537 -0.6770023525194214 0.06137146879587433 0.7334175873954796 -0.4740073313116037 0.06433442568254497 0.8781674848996339 0.4740073313116037 -0.06433442568254497 -0.8781674848996339 0.6770023525194214 -0.06137146879587433 -0.7334175873954796 -0.1990967204008648 0.004305648388343431 -0.9799703859390732 0.1990967204008648 -0.004305648388343431 0.9799703859390732 -0.990278754510625 0.001416584633724603 0.139089833031969 0.990278754510625 -0.001416584633724603 -0.139089833031969 -0.9909380630799358 -0.003399242763365023 0.1342765813089576 0.9909380630799358 0.003399242763365023 -0.1342765813089576 -0.9968199301215862 0.07708524078587133 -0.0201963502985076 0.9968199301215862 -0.07708524078587133 0.0201963502985076 0.3314473236246197 -0.03404005513124647 0.942859452044014 -0.3314473236246197 0.03404005513124647 -0.942859452044014 0.2690640104709645 -0.007413334523900739 0.9630937652900248 -0.2690640104709645 0.007413334523900739 -0.9630937652900248 0.9892307285286091 0.01363532297325122 0.1457279784467367 -0.9892307285286091 -0.01363532297325122 -0.1457279784467367 0.2193871989700671 0.04480102687666464 -0.9746087034902083 -0.2193871989700671 -0.04480102687666464 0.9746087034902083 0.9899973159602924 -0.001154469275832887 0.1410814714698849 -0.9899973159602924 0.001154469275832887 -0.1410814714698849 0.4465459218696992 0.02656812732855649 0.8943661857828673 -0.4465459218696992 -0.02656812732855649 -0.8943661857828673 -1.148944981636436e-008 -0.8668010893336193 0.4986540599755013 1.148944981636436e-008 0.8668010893336193 -0.4986540599755013 -0.001024137529105541 -0.5316213354677284 0.8469815268456746 0.001024137529105541 0.5316213354677284 -0.8469815268456746 0.2602016548448433 0.9646775598081155 0.04113762777147901 -0.2602016548448433 -0.9646775598081155 -0.04113762777147901 0.2346650363901175 0 0.972076293660135 -0.2346650363901175 -0 -0.972076293660135 0.7396104306978107 0.2705991214933103 0.6162406398883861 -0.7396104306978107 -0.2705991214933103 -0.6162406398883861 0.9292033977608823 0.004849915305961162 -0.3695369046673911 -0.9292033977608823 -0.004849915305961162 0.3695369046673911 0.2089923606738436 0.00876284107834017 -0.9778780117152702 -0.2089923606738436 -0.00876284107834017 0.9778780117152702 0.9962647277989406 0.0833513433905458 -0.02256425710485266 -0.9962647277989406 -0.0833513433905458 0.02256425710485266 -0.2827633455471794 -0.0135519361059265 0.9590939659088401 0.2827633455471794 0.0135519361059265 -0.9590939659088401 -0.9506354482239151 -0.03521547083878675 0.3083052305649686 0.9506354482239151 0.03521547083878675 -0.3083052305649686 -0.9905043599947265 0.004306145735177295 0.1374138637123065 0.9905043599947265 -0.004306145735177295 -0.1374138637123065 -0.203300842541363 0.02159634962472388 -0.9788781155510927 0.203300842541363 -0.02159634962472388 0.9788781155510927 -0.9901475184290349 0.0009944306250129018 0.1400246508888931 0.9901475184290349 -0.0009944306250129018 -0.1400246508888931 -0.2505953057574743 0.01319924367291896 0.9680019487060865 -0.2384621371886398 0.01130063956788524 0.9710860439079448 -0.5544623521168383 0.05792931606360777 0.8301901555821206 0.5544623521168383 -0.05792931606360777 -0.8301901555821206 0.2384621371886398 -0.01130063956788524 -0.9710860439079448 0.2505953057574743 -0.01319924367291896 -0.9680019487060865 -0.2536850281599741 -0.0138535557623779 0.9671876681803858 -0.551772243987951 0.04179930726748266 0.8329467021823543 0.551772243987951 -0.04179930726748266 -0.8329467021823543 0.2536850281599741 0.0138535557623779 -0.9671876681803858 -0.9959826638017204 0.08218396933776975 -0.03555739853135363 0.9959826638017204 -0.08218396933776975 0.03555739853135363 0.6153083634408196 -0.05148481002412313 0.7866034148264042 -0.6153083634408196 0.05148481002412313 -0.7866034148264042 0.5727285138006848 0.02121515963538596 0.8194705403376649 -0.5727285138006848 -0.02121515963538596 -0.8194705403376649 0.9893888310005082 0.00274175030615532 0.1452660452298001 -0.9893888310005082 -0.00274175030615532 -0.1452660452298001 0.2097557314495232 0.01720629354741938 -0.9776024123264199 -0.2097557314495232 -0.01720629354741938 0.9776024123264199 0.9897895976065745 -0.004342237901327167 0.1424699878564741 -0.9897895976065745 0.004342237901327167 -0.1424699878564741 0.4503054884335412 0.01362090150421649 0.892770652591606 -0.4503054884335412 -0.01362090150421649 -0.892770652591606 -0.01092992491029081 -0.9096482954439253 0.415235493831412 0.01092992491029081 0.9096482954439253 -0.415235493831412 -6.080638707766665e-007 -0.549717805339878 0.8353504261637377 6.080638707766665e-007 0.549717805339878 -0.8353504261637377 3.440188208490243e-008 -0.5555299093164049 0.8314965543253354 -3.440188208490243e-008 0.5555299093164049 -0.8314965543253354 0.7571660530837381 0.4316386416869186 0.4902934336295622 -0.7571660530837381 -0.4316386416869186 -0.4902934336295622 0.8837149458269733 -0.08812159394410893 0.4596547391279451 -0.8837149458269733 0.08812159394410893 -0.4596547391279451 0.9732381178375368 0.07429979006275535 -0.2174559890752135 -0.9732381178375368 -0.07429979006275535 0.2174559890752135 0.7577242285038515 0.3972933108754175 -0.5176987721367438 -0.7577242285038515 -0.3972933108754175 0.5176987721367438 0.4571384098397874 0.3553681588594452 -0.8153146300159212 -0.4571384098397874 -0.3553681588594452 0.8153146300159212 0.9956332479540522 0.09060858342719801 -0.02246152661288552 -0.9956332479540522 -0.09060858342719801 0.02246152661288552 -0.60930239163265 -0.04851017134711085 0.7914526889376313 0.60930239163265 0.04851017134711085 -0.7914526889376313 -0.4487398167543257 0.03338053044725342 0.8930388104927769 0.4487398167543257 -0.03338053044725342 -0.8930388104927769 -0.7789583409897993 -0.000363824971310878 0.6270755701140092 -0.7837836806675312 -0.07772604490380559 0.6161507963663354 -0.8078824561640882 0.1421267736203982 0.5719492261053741 0.8078824561640882 -0.1421267736203982 -0.5719492261053741 0.7837836806675312 0.07772604490380559 -0.6161507963663354 0.7789583409897993 0.000363824971310878 -0.6270755701140092 0.9385102612342132 0.3147124102554416 -0.1419668566578107 -0.9385102612342132 -0.3147124102554416 0.1419668566578107 -0.9788676032683243 -0.09340394251875722 0.1819173405524587 0.9788676032683243 0.09340394251875722 -0.1819173405524587 -0.9900163262707898 0.002237773630536223 0.1409349711266421 0.9900163262707898 -0.002237773630536223 -0.1409349711266421 -0.2037279640935901 0.003408228659399518 -0.9790216037573869 0.2037279640935901 -0.003408228659399518 0.9790216037573869 -0.2354286825828318 0.01033067541157402 0.9718367211434505 -0.5595946128675985 0.03064871190227865 0.8281995687684784 0.5595946128675985 -0.03064871190227865 -0.8281995687684784 0.2354286825828318 -0.01033067541157402 -0.9718367211434505 -0.9899603075635177 -0.002011262428334605 0.1413313279927344 0.9899603075635177 0.002011262428334605 -0.1413313279927344 -0.5547654368374926 0.006299470406166929 0.8319829486011763 0.5547654368374926 -0.006299470406166929 -0.8319829486011763 -0.9985425728218029 0.05396971174717015 2.182525293931658e-005 0.9985425728218029 -0.05396971174717015 -2.182525293931658e-005 0.328951013776384 -0.02646334594056419 0.9439761235630481 -0.328951013776384 0.02646334594056419 -0.9439761235630481 0.2841570197766841 0.02309268086450633 0.9584996172154285 -0.2841570197766841 -0.02309268086450633 -0.9584996172154285 0.9891669386176245 0.007070011516571865 0.1466246312288359 -0.9891669386176245 -0.007070011516571865 -0.1466246312288359 0.147731337883644 0.5587010131958488 -0.8161057711234742 -0.147731337883644 -0.5587010131958488 0.8161057711234742 -0.1724417686133558 -0.5852546171744093 0.7923009967894356 0.1724417686133558 0.5852546171744093 -0.7923009967894356 0.02100936362367406 -0.9819079119043689 0.1881899550447116 -0.02100936362367406 0.9819079119043689 -0.1881899550447116 0.001023400392436381 -0.5316206646494037 0.8469819487860194 -0.001023400392436381 0.5316206646494037 -0.8469819487860194 0.5374137069235633 0.4163662298492717 0.7333659865659014 -0.5374137069235633 -0.4163662298492717 -0.7333659865659014 0.9984558285342023 0.05543043573489472 0.003664049715707952 -0.9984558285342023 -0.05543043573489472 -0.003664049715707952 0.8244304220700673 0.42208399743857 0.3770405525558863 -0.8244304220700673 -0.42208399743857 -0.3770405525558863 0.8609593490701201 0.3950356538503604 -0.3204619032518112 -0.8609593490701201 -0.3950356538503604 0.3204619032518112 0.9968199900682904 0.0770843016658484 -0.02019697593557614 -0.9968199900682904 -0.0770843016658484 0.02019697593557614 -0.3314467288794468 -0.03403931238868394 0.9428596879319956 0.3314467288794468 0.03403931238868394 -0.9428596879319956 -0.4500384764145335 0.04310675662060656 0.8919681481309393 0.4500384764145335 -0.04310675662060656 -0.8919681481309393 -0.8556511006454337 0.2205202335716528 0.4682221914324025 0.8556511006454337 -0.2205202335716528 -0.4682221914324025 0.9947292441872121 0.03826670708435793 -0.0951282812188765 -0.9947292441872121 -0.03826670708435793 0.0951282812188765 0.05250119610140889 -0.9656931304469213 0.2543234205014291 -0.05250119610140889 0.9656931304469213 -0.2543234205014291 -0.1705956336861564 0.9606885189129935 0.2190312749266132 -0.1996848346137059 0.9695768355687583 0.1415864638790379 -0.2344624242422771 0.9511207570385238 0.2009892463513906 0.2344624242422771 -0.9511207570385238 -0.2009892463513906 0.1996848346137059 -0.9695768355687583 -0.1415864638790379 0.1705956336861564 -0.9606885189129935 -0.2190312749266132 -0.9892305482017425 0.01363551190350415 0.1457291848587969 0.9892305482017425 -0.01363551190350415 -0.1457291848587969 -0.2690636223426728 -0.007413233922668227 0.9630938744975213 0.2690636223426728 0.007413233922668227 -0.9630938744975213 -0.2193871688498107 0.04480051646010619 -0.9746087337331696 0.2193871688498107 -0.04480051646010619 0.9746087337331696 -0.5503813245396799 0.001214963109203446 0.834912523239765 0.5503813245396799 -0.001214963109203446 -0.834912523239765 -0.9899971732306971 -0.001153879037670049 0.1410824778574415 0.9899971732306971 0.001153879037670049 -0.1410824778574415 -0.4465456466954729 0.02656714329178133 0.8943663524052299 0.4465456466954729 -0.02656714329178133 -0.8943663524052299 -0.9983834563885684 0.05683670962253818 -0.0002498977763939091 0.9983834563885684 -0.05683670962253818 0.0002498977763939091 0.6061218733991877 -0.01969442439617812 0.7951279169006473 -0.6061218733991877 0.01969442439617812 -0.7951279169006473 0.4419258402810651 0.0239470611798888 0.8967318941315297 -0.4419258402810651 -0.0239470611798888 -0.8967318941315297 0.570230995658594 0.03991175871994512 0.8205142674604075 -0.570230995658594 -0.03991175871994512 -0.8205142674604075 0.9479143263943628 -0.2903074595404179 0.131072532406718 -0.9479143263943628 0.2903074595404179 -0.131072532406718 0.06336221035526715 0.329066082673738 -0.9421787216513943 -0.06336221035526715 -0.329066082673738 0.9421787216513943 0.9885657644415824 -0.03036804094180219 0.1477007497048907 -0.9885657644415824 0.03036804094180219 -0.1477007497048907 -0.001802792156686485 -0.02305023658463695 0.9997326825376031 -0.0008256944294643935 -0.02505255330090537 0.9996857945383711 -0.002734208924138677 -0.02114140788636196 0.9997727566673047 0.002734208924138677 0.02114140788636196 -0.9997727566673047 0.0008256944294643935 0.02505255330090537 -0.9996857945383711 0.001802792156686485 0.02305023658463695 -0.9997326825376031 0.3220491945008595 -0.01398584764411414 0.9466196239181941 -0.3220491945008595 0.01398584764411414 -0.9466196239181941 0.1102607918778887 0.6041870483927864 0.7891771463549068 -0.1102607918778887 -0.6041870483927864 -0.7891771463549068 0.904891680280896 0.4255225800980013 0.01007872934236248 -0.904891680280896 -0.4255225800980013 -0.01007872934236248 0.8988743871289552 0.3942317592744247 -0.1913273533578971 -0.8988743871289552 -0.3942317592744247 0.1913273533578971 0.9959824002825762 0.08218668947580367 -0.0355584926616104 -0.9959824002825762 -0.08218668947580367 0.0355584926616104 -0.6153067761488915 -0.05148347473506788 0.7866047438545368 0.6153067761488915 0.05148347473506788 -0.7866047438545368 -0.8927893756465019 0.2334317597510517 0.3852748944224846 0.8927893756465019 -0.2334317597510517 -0.3852748944224846 -0.1714068147238466 0.9747919519341297 0.1428298089009226 0.1714068147238466 -0.9747919519341297 -0.1428298089009226 -0.9893886561191522 0.002741776618111332 0.1452672358232045 0.9893886561191522 -0.002741776618111332 -0.1452672358232045 -0.5727289759413263 0.02121602657569409 0.8194701949024987 0.5727289759413263 -0.02121602657569409 -0.8194701949024987 -0.2097555208802006 0.0172061271122594 -0.9776024604357706 0.2097555208802006 -0.0172061271122594 0.9776024604357706 -0.2346648726773565 3.783173416404959e-017 0.972076333181361 0.2346648726773565 -3.783173416404959e-017 -0.972076333181361 -0.989789563809418 -0.004340030956380254 0.1424702899037547 0.989789563809418 0.004340030956380254 -0.1424702899037547 -0.4503056651465148 0.01362115755138225 0.8927705595526296 0.4503056651465148 -0.01362115755138225 -0.8927705595526296 -0.9989954996840046 -0.000137660845391611 0.04481040794946183 0.9989954996840046 0.000137660845391611 -0.04481040794946183 -0.9972216916799506 0.07119311484437237 -0.02191889690960671 0.9972216916799506 -0.07119311484437237 0.02191889690960671 0.2214779324102707 0.196197245236413 0.9552246680320364 -0.2214779324102707 -0.196197245236413 -0.9552246680320364 1.780389104542476e-007 0.4337085547787001 -0.9010532112543296 -1.780389104542476e-007 -0.4337085547787001 0.9010532112543296 -0.9865277944392574 0.05217622602417737 -0.1550501603891077 -0.9736896225321698 0.05084994715485541 -0.2221323971137686 0.9736896225321698 -0.05084994715485541 0.2221323971137686 0.9865277944392574 -0.05217622602417737 0.1550501603891077 0.8744760066387074 -0.4712393770442262 0.1150007101551506 -0.8744760066387074 0.4712393770442262 -0.1150007101551506 -0.003554629011209123 -0.01945995380215752 0.9998043182596337 0.003554629011209123 0.01945995380215752 -0.9998043182596337 -0.2602011346471293 0.9646777618329538 0.04113618058727868 0.2602011346471293 -0.9646777618329538 -0.04113618058727868 0.9985425731774548 0.05396970529110465 2.151600848150853e-005 -0.9985425731774548 -0.05396970529110465 -2.151600848150853e-005 -0.3289498256034926 -0.02646299455308964 0.9439765474601131 0.3289498256034926 0.02646299455308964 -0.9439765474601131 -0.9891667803014308 0.007069732576932015 0.1466257127157151 0.9891667803014308 -0.007069732576932015 -0.1466257127157151 -0.2841572966473706 0.02309293508627453 0.9584995290093571 0.2841572966473706 -0.02309293508627453 -0.9584995290093571 -0.1477311316684 0.5587017574653437 -0.8161052989296846 0.1477311316684 -0.5587017574653437 0.8161052989296846 -0.9973266047647974 0.05600939024017728 0.04693177637001751 0.9973266047647974 -0.05600939024017728 -0.04693177637001751 0.6914289920974853 0.004286087141038797 0.7224317118898334 -0.6914289920974853 -0.004286087141038797 -0.7224317118898334 -0.001583130968168075 0.9869731748496333 -0.1608771140453886 -0.001126925678352958 0.9966247613602267 -0.08208419508155551 -0.005838407715201528 0.9856277375830695 -0.1688309092027607 0.005838407715201528 -0.9856277375830695 0.1688309092027607 0.001126925678352958 -0.9966247613602267 0.08208419508155551 0.001583130968168075 -0.9869731748496333 0.1608771140453886 -0.9968756305926255 0.07737442659515952 -0.01588002643654866 0.9968756305926255 -0.07737442659515952 0.01588002643654866 0.447907665072911 0.03186390273533372 0.8935118439457903 -0.447907665072911 -0.03186390273533372 -0.8935118439457903 0.3961548121424567 -0.003715527347467818 0.9181762138461795 -0.3961548121424567 0.003715527347467818 -0.9181762138461795 0.402695768400104 0.4873827922562387 0.7747865073200242 -0.402695768400104 -0.4873827922562387 -0.7747865073200242 8.132231258095106e-007 0.8321193877225259 -0.5545965421598185 -8.132231258095106e-007 -0.8321193877225259 0.5545965421598185 -0.003655777851620025 0.009903831423077426 -0.9999442731529806 0.003655777851620025 -0.009903831423077426 0.9999442731529806 -0.0128535655306012 0.9750745821463159 -0.2215047293069336 0.0005688769515589375 0.9848479174845526 -0.1734193063224333 -0.0005688769515589375 -0.9848479174845526 0.1734193063224333 0.0128535655306012 -0.9750745821463159 0.2215047293069336 0.01108124840155184 0.8707973362884408 0.4915172479647275 -0.01108124840155184 -0.8707973362884408 -0.4915172479647275 0.1752279006153873 0.9590644972035478 0.2224645433538342 5.430323419212678e-007 0.9853891688670527 0.1703178965323498 -5.430323419212678e-007 -0.9853891688670527 -0.1703178965323498 -0.1752279006153873 -0.9590644972035478 -0.2224645433538342 0.998383435854744 0.05683706859506152 -0.0002502886265367268 -0.998383435854744 -0.05683706859506152 0.0002502886265367268 -0.6061240476733609 -0.01969603041895944 0.7951262196769748 0.6061240476733609 0.01969603041895944 -0.7951262196769748 -0.9479154558277739 -0.2903029525775037 0.1310743465656306 0.9479154558277739 0.2903029525775037 -0.1310743465656306 -0.5702310738101326 0.03991203788247619 0.8205141995684235 0.5702310738101326 -0.03991203788247619 -0.8205141995684235 -0.4419261685556237 0.0239478688565466 0.8967317107825372 0.4419261685556237 -0.0239478688565466 -0.8967317107825372 -0.06336302353539842 0.3290683811726526 -0.9421778641853471 0.06336302353539842 -0.3290683811726526 0.9421778641853471 -0.9885656140756707 -0.03036796316458268 0.1477017720964342 0.9885656140756707 0.03036796316458268 -0.1477017720964342 0.001802970942108782 -0.02304999440336087 0.9997326877989871 0.002734444657222303 -0.02114104111121133 0.9997727637784253 0.0008258177220701067 -0.02505243310216891 0.9996857974487541 -0.0008258177220701067 0.02505243310216891 -0.9996857974487541 -0.002734444657222303 0.02114104111121133 -0.9997727637784253 -0.001802970942108782 0.02304999440336087 -0.9997326877989871 -0.322051282173163 -0.01398702650755865 0.9466188962513364 0.322051282173163 0.01398702650755865 -0.9466188962513364 -0.9969246471896264 0.06302065782301529 0.04657944303438513 0.9969246471896264 -0.06302065782301529 -0.04657944303438513 -0.00212881274995628 -0.2683718283930491 0.9633130487444087 -0.001005174475925616 -0.2694076348507848 0.9630257088512118 -0.001639758244104681 -0.2716436840334383 0.9623964983922387 0.001639758244104681 0.2716436840334383 -0.9623964983922387 0.001005174475925616 0.2694076348507848 -0.9630257088512118 0.00212881274995628 0.2683718283930491 -0.9633130487444087 0.001038111635286944 0.9956823341796562 -0.09282031957919484 -0.001038111635286944 -0.9956823341796562 0.09282031957919484 -0.01055405555417334 -0.2587200214695265 0.9658946952966286 0.01055405555417334 0.2587200214695265 -0.9658946952966286 0.001393652670393064 0.9997215447667671 0.02355611728157328 -0.001393652670393064 -0.9997215447667671 -0.02355611728157328 -2.184619363978431e-010 -0.004499848741330991 -0.9999898756294011 2.184619363978431e-010 0.004499848741330991 0.9999898756294011 -0.004163240460725096 0.03105645564005462 -0.9995089614365362 0.004163240460725096 -0.03105645564005462 0.9995089614365362 -0.02234166972565267 0.5339027079899825 -0.8452507013867739 0.02234166972565267 -0.5339027079899825 0.8452507013867739 0.0009277835913001386 0.9998004819989514 0.01995333085657497 -0.0009277835913001386 -0.9998004819989514 -0.01995333085657497 0.1556278945893801 0.2809026446796918 0.9470341401647734 -0.1556278945893801 -0.2809026446796918 -0.9470341401647734 -3.541958887443474e-010 0.9631080259860416 0.2691150874277956 3.541958887443474e-010 -0.9631080259860416 -0.2691150874277956 0.9989955276880921 -0.0001368748650612091 0.04480978603454567 -0.9989955276880921 0.0001368748650612091 -0.04480978603454567 0.9972216595772164 0.07119431950687306 -0.02191644451127155 -0.9972216595772164 -0.07119431950687306 0.02191644451127155 -0.2214778855070592 0.1961979907061468 0.9552245257918122 0.2214778855070592 -0.1961979907061468 -0.9552245257918122 0.9736909147966711 0.05084773715865913 -0.2221272384654028 0.9865278216836982 0.05217386120331387 -0.1550507828137432 -0.9865278216836982 -0.05217386120331387 0.1550507828137432 -0.9736909147966711 -0.05084773715865913 0.2221272384654028 -0.8744793070848513 -0.4712326775356765 0.1150030656241631 0.8744793070848513 0.4712326775356765 -0.1150030656241631 0.003554918847038024 -0.01945946918911573 0.9998043266614068 -0.003554918847038024 0.01945946918911573 -0.9998043266614068 -0.9956402565366229 0.08230549210112352 0.04388946950784167 0.9956402565366229 -0.08230549210112352 -0.04388946950784167 0.8246343825300643 -0.01411444302695114 0.5654899801475696 -0.8246343825300643 0.01411444302695114 -0.5654899801475696 -0.01087594253182367 -0.2146052472578675 0.976640313382278 0.01087594253182367 0.2146052472578675 -0.976640313382278 0.4401942536872691 0.07256629869602126 0.8949654469946131 -0.4401942536872691 -0.07256629869602126 -0.8949654469946131 -0.175225918065263 0.9590652604319062 0.2224628145800227 -0.01108109537805878 0.8707975440991215 0.4915168832463043 0.01108109537805878 -0.8707975440991215 -0.4915168832463043 0.175225918065263 -0.9590652604319062 -0.2224628145800227 0.003655776094791184 0.009903878800838617 -0.9999442726901551 -0.003655776094791184 -0.009903878800838617 0.9999442726901551 -0.005741523756654533 0.633379681744303 0.7738198845070068 0.005741523756654533 -0.633379681744303 -0.7738198845070068 0.997326663603473 0.05600807958972717 0.04693209015413619 -0.997326663603473 -0.05600807958972717 -0.04693209015413619 -0.6914294736212706 0.004286908751857613 0.722431246155069 0.6914294736212706 -0.004286908751857613 -0.722431246155069 0.001126942549455734 0.9966247498934016 -0.08208433407420153 0.001583162336782136 0.9869731804581573 -0.160877079328676 0.005838414458393801 0.9856277529672934 -0.1688308191570955 -0.005838414458393801 -0.9856277529672934 0.1688308191570955 -0.001583162336782136 -0.9869731804581573 0.160877079328676 -0.001126942549455734 -0.9966247498934016 0.08208433407420153 0.9968755542992248 0.07737574505142088 -0.01587839155427141 -0.9968755542992248 -0.07737574505142088 0.01587839155427141 -0.4026962970868477 0.4873823656380145 0.7747865009004961 0.4026962970868477 -0.4873823656380145 -0.7747865009004961 -0.4479081988270762 0.03186402010616231 0.8935115721948757 0.4479081988270762 -0.03186402010616231 -0.8935115721948757 -0.3961550658726484 -0.00371524072142496 0.9181761055319505 0.3961550658726484 0.00371524072142496 -0.9181761055319505 0.01285199485402978 0.9750752153123479 -0.2215020332002622 -0.0005698567566058358 0.9848490615899062 -0.1734128056077704 0.0005698567566058358 -0.9848490615899062 0.1734128056077704 -0.01285199485402978 -0.9750752153123479 0.2215020332002622 -0.9932673995775939 0.1101566052120566 0.03585240946602527 0.9932673995775939 -0.1101566052120566 -0.03585240946602527 -0.01947042315387116 -0.2047452333996747 0.9786216286299428 0.01947042315387116 0.2047452333996747 -0.9786216286299428 -3.649169004302243e-006 0.002404705578097014 -0.9999971086847034 3.649169004302243e-006 -0.002404705578097014 0.9999971086847034 0.004163232182903801 0.03105646358866811 -0.9995089612240387 -0.004163232182903801 -0.03105646358866811 0.9995089612240387 -0.005539235710457793 0.2257622422815508 0.9741666832876962 0.005539235710457793 -0.2257622422815508 -0.9741666832876962 0.005741541568387194 0.6333792388219084 0.7738202469112567 -0.005741541568387194 -0.6333792388219084 -0.7738202469112567 9.129794179690531e-008 0.6271054976389598 0.7789343328105293 -9.129794179690531e-008 -0.6271054976389598 -0.7789343328105293 0.9969248065263503 0.0630173633110655 0.04658049005452914 -0.9969248065263503 -0.0630173633110655 -0.04658049005452914 0.002128530445273913 -0.2683715989666407 0.9633131132846848 0.001639764983917454 -0.2716436780894816 0.9623965000584819 0.001005197093830429 -0.2694069088834613 0.9630259119175667 -0.001005197093830429 0.2694069088834613 -0.9630259119175667 -0.001639764983917454 0.2716436780894816 -0.9623965000584819 -0.002128530445273913 0.2683715989666407 -0.9633131132846848 -0.001037056060731555 0.9956816563005005 -0.09282760269132624 0.001037056060731555 -0.9956816563005005 0.09282760269132624 0.01055406525834097 -0.2587200319160666 0.9658946923924329 -0.01055406525834097 0.2587200319160666 -0.9658946923924329 -0.001392086521481292 0.9997216255719778 0.0235527802783202 0.001392086521481292 -0.9997216255719778 -0.0235527802783202 -0.0009266258992287946 0.9998006871929479 0.01994310038464602 0.0009266258992287946 -0.9998006871929479 -0.01994310038464602 0.02234158084566133 0.5339013868798324 -0.8452515382139852 -0.02234158084566133 -0.5339013868798324 0.8452515382139852 -0.1556280380849506 0.2809020143766772 0.9470343035397156 0.1556280380849506 -0.2809020143766772 -0.9470343035397156 -0.9949922403436752 0.09349449262480997 0.03534432775854178 0.9949922403436752 -0.09349449262480997 -0.03534432775854178 0.771127959994469 0.08874154827928825 0.6304653891561086 -0.771127959994469 -0.08874154827928825 -0.6304653891561086 -0.02384731832305925 -0.1218724595508653 0.9922592448608485 0.02384731832305925 0.1218724595508653 -0.9922592448608485 0.4249547264085437 0.1646834045613325 0.8901083399031425 -0.4249547264085437 -0.1646834045613325 -0.8901083399031425 0.004123423268501376 -0.003767271156499045 -0.9999844024026487 -0.004123423268501376 0.003767271156499045 0.9999844024026487 3.649170348330782e-006 0.002404705577239728 -0.9999971086847054 -3.649170348330782e-006 -0.002404705577239728 0.9999971086847054 -0.0004978541198465981 0.2232745900914064 0.9747554614162414 0.0004978541198465981 -0.2232745900914064 -0.9747554614162414 0.995640216310576 0.08230536122088525 0.04389062746565749 -0.995640216310576 -0.08230536122088525 -0.04389062746565749 -0.8246374845250392 -0.01411276082802709 0.5654854985744786 0.8246374845250392 0.01411276082802709 -0.5654854985744786 0.01087546504665527 -0.2146050196655245 0.9766403687101916 -0.01087546504665527 0.2146050196655245 -0.9766403687101916 -0.4401972825385715 0.07256682050643808 0.894963914919056 0.4401972825385715 -0.07256682050643808 -0.894963914919056 -0.9938736768183237 0.1060759675041956 0.0310323000384265 0.9938736768183237 -0.1060759675041956 -0.0310323000384265 -0.02469285204551572 -0.1223257360684622 0.9921827842455073 0.02469285204551572 0.1223257360684622 -0.9921827842455073 -1.975234189968038e-009 -0.0092096358929908 -0.9999575904040723 1.975234189968038e-009 0.0092096358929908 0.9999575904040723 -0.004123424047886496 -0.003767272097554435 -0.9999844023958895 0.004123424047886496 0.003767272097554435 0.9999844023958895 -0.003656799258033165 0.2025676661135156 0.979261440303104 0.003656799258033165 -0.2025676661135156 -0.979261440303104 -0.005991095453674735 0.2026514220813025 0.9792326117443653 0.005991095453674735 -0.2026514220813025 -0.9792326117443653 0.0004979735973291479 0.2232744541324763 0.97475549249755 -0.0004979735973291479 -0.2232744541324763 -0.97475549249755 0.005538729495513114 0.2257617772353544 0.9741667939398827 -0.005538729495513114 -0.2257617772353544 -0.9741667939398827 1.270040682074497e-007 0.229068254948915 0.973410362886405 -1.270040682074497e-007 -0.229068254948915 -0.973410362886405 0.9932672326084836 0.1101579073625746 0.03585303434555028 -0.9932672326084836 -0.1101579073625746 -0.03585303434555028 0.01946975905828728 -0.204745561519798 0.9786215731937217 -0.01946975905828728 0.204745561519798 -0.9786215731937217 -0.9939120391092525 0.1054061652209854 0.03206865833012031 0.9939120391092525 -0.1054061652209854 -0.03206865833012031 0.9242746092440277 -0.03269483896492043 0.3803255108612332 -0.9242746092440277 0.03269483896492043 -0.3803255108612332 -0.02133260597046953 -0.08559868170729368 0.9961012928475107 0.02133260597046953 0.08559868170729368 -0.9961012928475107 0.02101322130799316 -0.00641634108519356 -0.999758608413721 -0.02101322130799316 0.00641634108519356 0.999758608413721 -0.001748214336487093 0.2024396979067454 0.9792931698209986 0.001748214336487093 -0.2024396979067454 -0.9792931698209986 0.9166413971056587 -0.0669061911394007 0.3940712000380186 -0.9166413971056587 0.0669061911394007 -0.3940712000380186 -0.4249567961679917 0.1646831342390139 0.8901074017711855 0.4249567961679917 -0.1646831342390139 -0.8901074017711855 0.994992237216198 0.09349442076486945 0.03534460588755371 -0.994992237216198 -0.09349442076486945 -0.03534460588755371 -0.7711318273143256 0.08873899184190973 0.6304610188027099 0.7711318273143256 -0.08873899184190973 -0.6304610188027099 0.02384718136722833 -0.1218726623496858 0.9922592232439254 -0.02384718136722833 0.1218726623496858 -0.9922592232439254 -0.9931293348599229 0.1133726637291741 0.02899591970672322 0.9931293348599229 -0.1133726637291741 -0.02899591970672322 -0.01798191713551359 -0.08803433048368339 0.9959551231418118 0.01798191713551359 0.08803433048368339 -0.9959551231418118 0.01427091325176062 -0.06851877216335224 -0.997547752689658 -0.01427091325176062 0.06851877216335224 0.997547752689658 -0.02101322846933548 -0.006416343807304026 -0.9997586082457315 0.02101322846933548 0.006416343807304026 0.9997586082457315 -0.003101143724149982 0.1954095786057839 0.980716819217817 0.003101143724149982 -0.1954095786057839 -0.980716819217817 -0.005416480598996744 0.1962979641407612 0.9805293320508637 0.005416480598996744 -0.1962979641407612 -0.9805293320508637 0.9817272518583401 -0.02642165932822021 0.1884502557096029 -0.9817272518583401 0.02642165932822021 -0.1884502557096029 0.001748277811602291 0.2024400378841402 0.9792930994274193 -0.001748277811602291 -0.2024400378841402 -0.9792930994274193 0.003656811932388367 0.2025680473072131 0.979261361402886 -0.003656811932388367 -0.2025680473072131 -0.979261361402886 0.005990923095397907 0.2026516007718099 0.9792325758189869 -0.005990923095397907 -0.2026516007718099 -0.9792325758189869 -2.83832460254903e-009 0.2145028510253935 0.9767233625249155 2.83832460254903e-009 -0.2145028510253935 -0.9767233625249155 0.9938735231494315 0.1060775467690079 0.03103182324655636 -0.9938735231494315 -0.1060775467690079 -0.03103182324655636 0.02469291859595026 -0.1223257281918692 0.9921827835603391 -0.02469291859595026 0.1223257281918692 -0.9921827835603391 0.00748251340675228 0.9999710413922299 -0.001388657645822813 -0.0007751097969328722 0.9999996026545626 0.000440335690215953 -0.03029640124837576 0.9994606427639767 0.01267089725377578 0.03029640124837576 -0.9994606427639767 -0.01267089725377578 0.0007751097969328722 -0.9999996026545626 -0.000440335690215953 -0.00748251340675228 -0.9999710413922299 0.001388657645822813 0.989503388961654 -0.02233416760546805 0.1427733455192977 -0.989503388961654 0.02233416760546805 -0.1427733455192977 -3.404876009399591e-010 -0.08815295950554364 -0.9961069499458449 3.404876009399591e-010 0.08815295950554364 0.9961069499458449 0.0411386407770415 -3.064684165570203e-018 -0.9991534477921885 -0.0411386407770415 3.064684165570203e-018 0.9991534477921885 -0.01427092404631581 -0.0685187381006679 -0.9975477548749014 0.01427092404631581 0.0685187381006679 0.9975477548749014 -0.004907800722363624 0.2005341877099537 0.9796744117570789 0.004907800722363624 -0.2005341877099537 -0.9796744117570789 -0.9242723716676167 -0.03269417253723511 0.3803310059067297 -0.9166378344760666 -0.06690351820570036 0.3940799406957 0.9166378344760666 0.06690351820570036 -0.3940799406957 0.9242723716676167 0.03269417253723511 -0.3803310059067297 0.9939122830165466 0.1054039787532497 0.03206828545183944 -0.9939122830165466 -0.1054039787532497 -0.03206828545183944 0.02133270175206617 -0.08559872865015414 0.9961012867622624 -0.02133270175206617 0.08559872865015414 -0.9961012867622624 0.04084427492219095 0.9991334508123856 -0.00800579001814427 -0.04084427492219095 -0.9991334508123856 0.00800579001814427 -0.02589161929896242 0.9996281125004789 -0.008559249313332249 -0.01033024795755935 0.9999409324432032 -0.003378994192503816 -0.02567501078340835 0.9996355603729615 -0.008339080231465297 0.02567501078340835 -0.9996355603729615 0.008339080231465297 0.01033024795755935 -0.9999409324432032 0.003378994192503816 0.02589161929896242 -0.9996281125004789 0.008559249313332249 0.001654889868512676 -0.4444033375107274 -0.8958252814856531 -0.001654889868512676 0.4444033375107274 0.8958252814856531 0 -1 0 0 -1 0 0 -0.9990387165311067 -0.04383654721666857 -0 0.9990387165311067 0.04383654721666857 -0 1 -0 -0 1 -0 -0.041138663034018 -6.129374969030033e-018 -0.9991534468757908 0.041138663034018 6.129374969030033e-018 0.9991534468757908 0 1 0 -0.01356751355233308 0.9998984483959967 -0.004360673260583247 0.01356751355233308 -0.9998984483959967 0.004360673260583247 -0 -1 -0 0.004907790606368402 0.2005341840537439 0.9796744125561631 -0.004907790606368402 -0.2005341840537439 -0.9796744125561631 0.00310114401148762 0.1954095771429339 0.9807168195083839 -0.00310114401148762 -0.1954095771429339 -0.9807168195083839 0.00541648995331054 0.1962979667575549 0.9805293314753187 -0.00541648995331054 -0.1962979667575549 -0.9805293314753187 -0.9817269690373728 -0.02642036875922447 0.1884519099911692 0.9817269690373728 0.02642036875922447 -0.1884519099911692 -4.734138847979123e-009 0.2326694570985017 0.9725558717798625 4.734138847979123e-009 -0.2326694570985017 -0.9725558717798625 0.9931295480912079 0.1133709359390444 0.02899537191446477 -0.9931295480912079 -0.1133709359390444 -0.02899537191446477 0.0179820440594617 -0.08803435978545028 0.9959551182601603 -0.0179820440594617 0.08803435978545028 -0.9959551182601603 -0.03887165794655145 0.9989838002767033 0.02281142242829177 0.03887165794655145 -0.9989838002767033 -0.02281142242829177 -0.9973482542834168 -0.01150372475800906 -0.0718618396265561 -0.9976513058438805 -0.04571807180863672 -0.05100715496967237 -0.999705072602087 -0.009892700087384557 -0.02217887054467122 0.999705072602087 0.009892700087384557 0.02217887054467122 0.9976513058438805 0.04571807180863672 0.05100715496967237 0.9973482542834168 0.01150372475800906 0.0718618396265561 2.961086036837299e-010 -0.4429273754907279 -0.8965574939962833 -2.961086036837299e-010 0.4429273754907279 0.8965574939962833 -0.001654890613376401 -0.4444033561486889 -0.8958252722383084 0.001654890613376401 0.4444033561486889 0.8958252722383084 -3.394031304407869e-019 -0.9994409791871446 -0.03343245610842094 3.394031304407869e-019 0.9994409791871446 0.03343245610842094 0 -1 0 0 -1 0 -4.805460757006482e-019 -0.9990387077873204 -0.04383674648786176 4.805460757006482e-019 0.9990387077873204 0.04383674648786176 -0 1 -0 -0 1 -0 -0.0008164578700198733 0.9999981144611564 -0.00176195081614317 0.0008164578700198733 -0.9999981144611564 0.00176195081614317 -0.9895034220085447 -0.02233271772348092 0.1427733432839038 0.9895034220085447 0.02233271772348092 -0.1427733432839038 9.255161719245658e-010 0.9999676468122628 -0.008043962254118291 -9.255161719245658e-010 -0.9999676468122628 0.008043962254118291 0.0007751050476572073 0.9999996026584948 0.0004403351199602355 -0.007482544509399058 0.9999710411432887 -0.001388669317023434 0.03029662795841154 0.9994606353720725 0.01267093824475535 -0.03029662795841154 -0.9994606353720725 -0.01267093824475535 0.007482544509399058 -0.9999710411432887 0.001388669317023434 -0.0007751050476572073 -0.9999996026584948 -0.0004403351199602355 0.1045832752325765 0.9943930580433587 -0.01564559544423735 -0.1045832752325765 -0.9943930580433587 0.01564559544423735 -0.9908954987600042 -0.08453192428526146 -0.1047877107002216 0.9908954987600042 0.08453192428526146 0.1047877107002216 -0.987600324858768 -0.072703700674905 -0.1391393914282716 0.987600324858768 0.072703700674905 0.1391393914282716 0.0005327402026250499 -0.2855058741792734 -0.958376811070158 -0.0005327402026250499 0.2855058741792734 0.958376811070158 0.9976185190063851 -0.04573625020724208 -0.05162834446781926 0.9932415657032433 -0.09013428504885948 -0.07312320300766836 0.9997023733211127 -0.009759694602735259 -0.02235873738375898 0.9973354014790976 -0.01165276589655645 -0.07201603990422566 -0.9932415657032433 0.09013428504885948 0.07312320300766836 -0.9997023733211127 0.009759694602735259 0.02235873738375898 -0.9973354014790976 0.01165276589655645 0.07201603990422566 -0.9976185190063851 0.04573625020724208 0.05162834446781926 1.410291816654595e-018 -0.9999323261610292 0.0116337052650082 -1.410291816654595e-018 0.9999323261610292 -0.0116337052650082 3.123119780309943e-019 -0.9994409852759545 -0.03343227408701486 -3.123119780309943e-019 0.9994409852759545 0.03343227408701486 0 1 0 0.0008164581756783618 0.9999981144609226 -0.001761950807225865 -0.0008164581756783618 -0.9999981144609226 0.001761950807225865 -0 -1 -0 0.01033025013843936 0.9999409323895296 -0.003379003408602833 0.01356758032274603 0.9998984472588524 -0.004360726260850447 -0.01356758032274603 -0.9998984472588524 0.004360726260850447 -0.01033025013843936 -0.9999409323895296 0.003379003408602833 0.02589163339415156 0.9996281121180106 -0.008559251343714632 0.02567508100579211 0.9996355580756299 -0.008339139414213367 -0.02567508100579211 -0.9996355580756299 0.008339139414213367 -0.02589163339415156 -0.9996281121180106 0.008559251343714632 -7.364137691395697e-010 0.9999359938074939 -0.01131407478406496 7.364137691395697e-010 -0.9999359938074939 0.01131407478406496 -0.04084474853355217 0.9991334304944088 -0.008005909423994038 0.04084474853355217 -0.9991334304944088 0.008005909423994038 0.08663380591301835 0.9962037664858618 -0.008522869963094761 -0.08663380591301835 -0.9962037664858618 0.008522869963094761 -0.9967825298993301 -0.0447105348500445 -0.06652485370832326 0.9967825298993301 0.0447105348500445 0.06652485370832326 -0.8783033298547853 -0.2320437595006832 -0.4180178877067167 0.8783033298547853 0.2320437595006832 0.4180178877067167 -0.000532740161792093 -0.2855057619596127 -0.9583768445010455 0.000532740161792093 0.2855057619596127 0.9583768445010455 2.537875881418471e-010 -0.2697717871999729 -0.9629242871747148 -2.537875881418471e-010 0.2697717871999729 0.9629242871747148 0.990690887480761 -0.08575286944409223 -0.1057261124069503 -0.990690887480761 0.08575286944409223 0.1057261124069503 0.9875995101078402 -0.07270673036156833 -0.1391435912821163 -0.9875995101078402 0.07270673036156833 0.1391435912821163 -4.820625318444053e-019 -0.9995796764235522 -0.02899086892431474 4.820625318444053e-019 0.9995796764235522 0.02899086892431474 -2.652849202070998e-019 -0.9999323232579478 0.01163395478601814 2.652849202070998e-019 0.9999323232579478 -0.01163395478601814 0.03887190050625438 0.9989837896533671 0.02281147432387656 -0.03887190050625438 -0.9989837896533671 -0.02281147432387656 -0.02212740826631281 0.9987424994696821 0.04498663753236129 0.02212740826631281 -0.9987424994696821 -0.04498663753236129 -0.1337631166327554 0.5108285547050319 -0.8492123505500023 0.1337631166327554 -0.5108285547050319 0.8492123505500023 -0.9323640263889717 -0.1914068041724176 -0.3066932630695479 0.9323640263889717 0.1914068041724176 0.3066932630695479 0.9967824449025985 -0.04470756018247908 -0.06652812635666128 -0.9967824449025985 0.04470756018247908 0.06652812635666128 0.878304663953519 -0.2320436175285829 -0.4180151634112627 -0.878304663953519 0.2320436175285829 0.4180151634112627 -3.173857528627368e-018 -0.999448507723101 -0.0332066320193234 3.173857528627368e-018 0.999448507723101 0.0332066320193234 5.592757879193317e-019 -0.9995796950832848 -0.02899022554598833 -5.592757879193317e-019 0.9995796950832848 0.02899022554598833 -0.1045815532024361 0.9943932453543304 -0.01564520129139864 0.1045815532024361 -0.9943932453543304 0.01564520129139864 -0.1210075744333001 0.9867713021129483 0.1078868122436016 0.1210075744333001 -0.9867713021129483 -0.1078868122436016 -0.462088132140393 0.7429386187509101 -0.4842693123701861 0.462088132140393 -0.7429386187509101 0.4842693123701861 -8.717775860082275e-019 -0.9999830350033698 -0.005824921068072554 8.717775860082275e-019 0.9999830350033698 0.005824921068072554 -0.9965103101143514 -0.07678665601015007 -0.03272630890549316 0.9965103101143514 0.07678665601015007 0.03272630890549316 0.1337633194460965 0.5108296595896843 -0.8492116539792946 -0.1337633194460965 -0.5108296595896843 0.8492116539792946 0.9323701490761447 -0.1913997652358318 -0.3066790422891596 -0.9323701490761447 0.1913997652358318 0.3066790422891596 7.973626678796302e-018 -0.9994485322936126 -0.03320589249129963 -7.973626678796302e-018 0.9994485322936126 0.03320589249129963 -0.08663352748993097 0.9962037903422601 -0.008522911613152079 0.08663352748993097 -0.9962037903422601 0.008522911613152079 -0.4469774344299156 0.513470208436643 -0.7325022308215047 0.4469774344299156 -0.513470208436643 0.7325022308215047 -0.9256712522559258 0.167853255079391 -0.3390545936957635 0.9256712522559258 -0.167853255079391 0.3390545936957635 -2.319304073202425e-018 -0.9649737693459085 -0.2623463826210484 2.319304073202425e-018 0.9649737693459085 0.2623463826210484 -0.9963121731378012 -0.07650231110023816 -0.03885164158377934 0.9963121731378012 0.07650231110023816 0.03885164158377934 0 -0.9656326893104121 -0.259910579498298 -0 0.9656326893104121 0.259910579498298 0.4620909004634785 0.7429386393024869 -0.4842666393013472 -0.4620909004634785 -0.7429386393024869 0.4842666393013472 3.720313159902421e-018 -0.9999830322203812 -0.005825398813118429 -3.720313159902421e-018 0.9999830322203812 0.005825398813118429 0.996510362992616 -0.07678573609388789 -0.03272685717945185 -0.996510362992616 0.07678573609388789 0.03272685717945185 0.02212732636862875 0.9987425008261646 0.04498664769990116 -0.02212732636862875 -0.9987425008261646 -0.04498664769990116 5.197460848859656e-018 0.9771494445064004 -0.2125534358716255 -5.197460848859656e-018 -0.9771494445064004 0.2125534358716255 -8.475559142478103e-019 0.9884947513402278 -0.1512551704002918 8.475559142478103e-019 -0.9884947513402278 0.1512551704002918 -0.9692342821730617 0.1297429946546814 -0.2091689785759472 0.9692342821730617 -0.1297429946546814 0.2091689785759472 -4.134891109695223e-018 -0.8867350737852805 -0.4622779563412182 -4.134891109695223e-018 -0.8867350737852805 -0.4622779563412182 4.134891109695223e-018 0.8867350737852805 0.4622779563412182 4.134891109695223e-018 0.8867350737852805 0.4622779563412182 -0.9962900253079109 -0.08038413385825094 -0.03073396322996985 0.9962900253079109 0.08038413385825094 0.03073396322996985 0.9256731243617642 0.1678507207473665 -0.3390507371750123 -0.9256731243617642 -0.1678507207473665 0.3390507371750123 0.4469772352428111 0.5134695466944448 -0.7325028162349238 -0.4469772352428111 -0.5134695466944448 0.7325028162349238 5.661456373090657e-018 -0.9649736978135386 -0.2623466457343516 -5.661456373090657e-018 0.9649736978135386 0.2623466457343516 0.9963122674049834 -0.07650133516965876 -0.03885114587242723 -0.9963122674049834 0.07650133516965876 0.03885114587242723 -2.234569429237177e-018 -0.9656327065041755 -0.2599105156191658 2.234569429237177e-018 0.9656327065041755 0.2599105156191658 0.1210067927792891 0.9867714148828135 0.1078866575227938 -0.1210067927792891 -0.9867714148828135 -0.1078866575227938 0 0.9866422485374621 -0.1629020362087006 -0 -0.9866422485374621 0.1629020362087006 -0.9967221314255439 0.07840569708791045 -0.01993838987179611 0.9967221314255439 -0.07840569708791045 0.01993838987179611 0 0.9851390618417552 -0.1717586353973112 -0 -0.9851390618417552 0.1717586353973112 2.166155574562098e-017 -0.7895706811088429 -0.6136596284043119 -2.166155574562098e-017 0.7895706811088429 0.6136596284043119 8.914895848239008e-018 -0.7865841596254477 -0.6174830846479343 -8.914895848239008e-018 0.7865841596254477 0.6174830846479343 -0.9962003996229454 -0.08647837290293989 -0.01030799743615296 0.9962003996229454 0.08647837290293989 0.01030799743615296 -1.677845589769437e-018 0.9771494362869531 -0.2125534736580186 1.971565419576037e-019 0.9884947661902032 -0.1512550733515274 -1.971565419576037e-019 -0.9884947661902032 0.1512550733515274 1.677845589769437e-018 -0.9771494362869531 0.2125534736580186 0.9692337674164756 0.1297439298009559 -0.2091707837616668 -0.9692337674164756 -0.1297439298009559 0.2091707837616668 -1.128780193505647e-018 -0.8867350737852805 -0.4622779563412182 -1.021695108512319e-017 -0.8867350737852805 -0.4622779563412181 1.021695108512319e-017 0.8867350737852805 0.4622779563412181 1.128780193505647e-018 0.8867350737852805 0.4622779563412182 0.9962901134102942 -0.08038250755747767 -0.03073536073767557 -0.9962901134102942 0.08038250755747767 0.03073536073767557 -0.9965359278681637 0.0774194785836184 -0.03037052524699822 0.9965359278681637 -0.0774194785836184 0.03037052524699822 0 0.9856521593871221 -0.1687892789708608 -3.533073050874074e-018 0.9801115654826196 -0.1984472705965206 3.533073050874074e-018 -0.9801115654826196 0.1984472705965206 -0 -0.9856521593871221 0.1687892789708608 2.342884402904967e-017 -0.5793540694270123 -0.8150759855610766 -2.342884402904967e-017 0.5793540694270123 0.8150759855610766 1.489903192868899e-017 -0.5683954036936462 -0.8227555317710948 -1.489903192868899e-017 0.5683954036936462 0.8227555317710948 -0.9973577217584451 -0.06876329520585735 -0.02343467689634523 0.9973577217584451 0.06876329520585735 0.02343467689634523 1.257941559232004e-018 0.9866422701885081 -0.1629019050756211 -1.257941559232004e-018 -0.9866422701885081 0.1629019050756211 0.9967223493904013 0.07840420476392516 -0.01993336150816342 -0.9967223493904013 -0.07840420476392516 0.01993336150816342 0 0.9851390633231312 -0.1717586269007288 -0 -0.9851390633231312 0.1717586269007288 -1.793119758484267e-017 -0.7895708206534031 -0.6136594488580058 1.793119758484267e-017 0.7895708206534031 0.6136594488580058 -2.200042870792001e-017 -0.7865842902176107 -0.6174829182923667 2.200042870792001e-017 0.7865842902176107 0.6174829182923667 0.9962004199280746 -0.08647795103243808 -0.01030957420843498 -0.9962004199280746 0.08647795103243808 0.01030957420843498 -3.550744942707794e-018 0.9800675422696868 -0.1986645730608647 5.086179847342662e-018 0.9205827353896554 -0.3905475992788838 -5.086179847342662e-018 -0.9205827353896554 0.3905475992788838 3.550744942707794e-018 -0.9800675422696868 0.1986645730608647 -0.9961397036751403 0.08149595572681781 -0.03262054509318518 0.9961397036751403 -0.08149595572681781 0.03262054509318518 1.727393988152528e-018 -0.3156358666850648 -0.9488803927060397 -1.727393988152528e-018 0.3156358666850648 0.9488803927060397 -0.999042756123289 -0.01552591487896637 -0.04089642288457383 0.999042756123289 0.01552591487896637 0.04089642288457383 7.537306358416392e-018 -0.3069588727487859 -0.9517227802468504 -7.537306358416392e-018 0.3069588727487859 0.9517227802468504 0.9965360246287977 0.07741852079323409 -0.03036979182048899 -0.9965360246287977 -0.07741852079323409 0.03036979182048899 0 0.9856521659491153 -0.168789240651819 0 0.9801115435030257 -0.1984473791515443 -0 -0.9801115435030257 0.1984473791515443 -0 -0.9856521659491153 0.168789240651819 -1.83948316947542e-017 -0.579354092442289 -0.8150759692018723 1.83948316947542e-017 0.579354092442289 0.8150759692018723 -2.337933897370917e-017 -0.5683954594514145 -0.8227554932511939 2.337933897370917e-017 0.5683954594514145 0.8227554932511939 0.9973577533466965 -0.068763183598015 -0.02343365999360792 -0.9973577533466965 0.068763183598015 0.02343365999360792 -8.536066060444724e-018 0.9205827353896554 -0.3905475992788838 8.536066060444724e-018 -0.9205827353896554 0.3905475992788838 -0.9958122648008684 0.0910603185000064 -0.008121063159624241 0.9958122648008684 -0.0910603185000064 0.008121063159624241 -1.469169304093626e-017 0.770026188855712 -0.6380122792520121 1.469169304093626e-017 -0.770026188855712 0.6380122792520121 3.962650399660909e-018 -0.06049888400598817 -0.9981682648902588 -3.056940938661591e-019 -0.05846806307024186 -0.9982892795181236 3.056940938661591e-019 0.05846806307024186 0.9982892795181236 -3.962650399660909e-018 0.06049888400598817 0.9981682648902588 -0.9979843206367407 0.05931566859490737 -0.02255985865119938 0.9979843206367407 -0.05931566859490737 0.02255985865119938 0 0.9800675200453534 -0.1986646826996457 0 0.920584787765236 -0.3905427614682356 -0 -0.920584787765236 0.3905427614682356 -0 -0.9800675200453534 0.1986646826996457 0.9961398268241957 0.08149416357364148 -0.0326212617489593 -0.9961398268241957 -0.08149416357364148 0.0326212617489593 -1.727394869965462e-018 -0.3156357440700538 -0.9488804334927259 1.727394869965462e-018 0.3156357440700538 0.9488804334927259 0.9990426691746329 -0.01552723854632595 -0.04089804434872643 -0.9990426691746329 0.01552723854632595 0.04089804434872643 2.287870097440066e-018 -0.3069588983703188 -0.9517227719831444 -2.287870097440066e-018 0.3069588983703188 0.9517227719831444 -1.299528321634852e-017 0.773243148676752 -0.6341096380157475 -3.446381906211511e-017 0.5575799631598709 -0.8301232346360611 3.446381906211511e-017 -0.5575799631598709 0.8301232346360611 1.299528321634852e-017 -0.773243148676752 0.6341096380157475 1.226597955325728e-017 0.2590089053646115 -0.9658749333851801 -1.226597955325728e-017 -0.2590089053646115 0.9658749333851801 -1.310032251613415e-017 0.247952238821439 -0.9687722576867258 1.310032251613415e-017 -0.247952238821439 0.9687722576867258 -6.811152637076217e-018 0.920584787765236 -0.3905427614682356 6.811152637076217e-018 -0.920584787765236 0.3905427614682356 0.9958123003023679 0.09105983567328287 -0.008122123716212848 -0.9958123003023679 -0.09105983567328287 0.008122123716212848 1.771824390044765e-017 0.7700293506231545 -0.6380084632502011 -1.771824390044765e-017 -0.7700293506231545 0.6380084632502011 1.378782026995277e-017 -0.05846796210489705 -0.9982892854314825 1.578927059184854e-018 -0.06049903045249035 -0.9981682560141394 -1.578927059184854e-018 0.06049903045249035 0.9981682560141394 -1.378782026995277e-017 0.05846796210489705 0.9982892854314825 0.9979844310784948 0.05931458544750328 -0.02255782077515118 -0.9979844310784948 -0.05931458544750328 0.02255782077515118 1.555532412505964e-018 0.5688883171801603 -0.8224147874253753 -1.555532412505964e-018 -0.5688883171801603 0.8224147874253753 1.223150988481862e-017 0.5575780441067687 -0.8301245236288773 -1.191923178912958e-017 0.7732464394526523 -0.6341056251712294 1.191923178912958e-017 -0.7732464394526523 0.6341056251712294 -1.223150988481862e-017 -0.5575780441067687 0.8301245236288773 -2.087010853048018e-017 0.2590068889601615 -0.9658754741016975 2.087010853048018e-017 -0.2590068889601615 0.9658754741016975 -3.148965933286888e-018 0.2479506096265221 -0.9687726746692622 3.148965933286888e-018 -0.2479506096265221 0.9687726746692622 -2.338814768352773e-017 0.5688867081291823 -0.8224159004505826 2.338814768352773e-017 -0.5688867081291823 0.8224159004505826</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1256\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 0 2 8 9 3 5 1 10 2 3 11 4 6 12 1 4 13 7 6 0 14 15 5 7 8 2 16 17 3 9 14 0 8 9 5 15 2 10 18 19 11 3 1 12 10 11 13 4 20 12 6 7 13 21 6 14 22 23 15 7 16 2 18 19 3 17 8 16 24 25 17 9 14 8 26 27 9 15 18 10 28 29 11 19 10 12 30 31 13 11 12 20 32 33 21 13 20 6 34 35 7 21 36 6 22 23 7 37 38 14 26 27 15 39 16 18 40 41 19 17 16 42 24 25 43 17 26 8 24 25 9 27 18 28 44 45 29 19 10 30 28 29 31 11 12 46 30 31 47 13 48 12 32 33 13 49 32 20 50 51 21 33 20 34 52 53 35 21 6 54 34 35 55 7 36 22 56 57 23 37 6 58 54 55 59 7 38 26 60 61 27 39 40 18 44 45 19 41 16 40 42 43 41 17 24 42 62 63 43 25 26 24 64 65 25 27 28 66 44 45 67 29 28 30 68 69 31 29 70 12 48 49 13 71 46 72 30 31 73 47 74 75 76 77 78 79 50 80 32 33 81 51 20 82 50 51 83 21 20 52 84 85 53 21 52 34 86 87 35 53 34 54 88 89 55 35 54 90 91 92 93 55 38 60 91 92 61 39 60 26 64 65 27 61 40 44 94 95 45 41 40 96 42 43 97 41 42 98 62 63 99 43 24 62 64 65 63 25 44 66 100 101 67 45 28 68 66 67 69 29 102 70 48 49 71 103 46 104 72 73 105 47 106 107 108 109 110 111 76 75 112 113 78 77 114 74 76 77 79 115 32 80 116 117 81 33 50 118 80 81 119 51 20 120 82 83 121 21 50 82 122 123 83 51 20 84 120 121 85 21 84 52 124 125 53 85 124 52 86 87 53 125 86 34 88 89 35 87 88 54 91 92 55 89 96 40 94 95 41 97 94 44 100 101 45 95 98 42 96 97 43 99 98 126 62 63 127 99 62 128 64 65 129 63 100 66 130 131 67 101 102 132 70 71 133 103 134 74 114 115 79 135 104 136 72 73 137 105 107 138 108 109 139 110 140 107 106 111 110 141 142 143 144 145 146 147 148 76 112 113 77 149 150 114 76 77 115 151 116 80 152 153 81 117 80 118 154 155 119 81 118 50 122 123 51 119 82 120 156 157 121 83 122 82 156 157 83 123 120 84 158 159 85 121 158 84 124 125 85 159 96 94 160 161 95 97 160 94 100 101 95 161 96 160 98 99 161 97 98 160 162 163 161 99 62 126 128 129 127 63 100 164 165 166 167 101 66 168 130 131 169 67 170 132 102 103 133 171 172 134 114 115 135 173 174 140 106 111 141 175 104 176 136 137 177 105 108 138 178 179 139 109 180 181 182 183 184 185 186 187 180 185 188 189 144 143 190 191 146 145 192 193 194 195 196 197 198 199 200 201 202 203 172 114 150 151 115 173 204 150 76 77 151 205 144 190 206 207 191 145 156 120 158 159 121 157 100 208 160 161 209 101 160 210 162 163 211 161 128 126 212 213 127 129 164 214 165 166 215 167 100 165 216 217 166 101 130 168 218 219 169 131 220 221 222 223 224 225 170 226 132 133 227 171 228 134 172 173 135 229 230 140 174 175 141 231 136 176 232 233 177 137 182 204 234 235 205 183 108 178 236 237 179 109 181 204 182 183 205 184 187 181 180 185 184 188 238 187 186 189 188 239 240 193 192 197 196 241 192 194 242 243 195 197 198 244 199 202 245 203 204 76 246 247 77 205 172 150 248 249 151 173 181 150 204 205 151 184 208 100 216 217 101 209 160 208 250 251 209 161 162 210 252 253 211 163 254 160 255 256 161 257 258 214 164 167 215 259 260 261 262 263 264 265 266 267 261 264 268 269 168 270 218 219 271 169 272 220 222 223 225 273 220 274 221 224 275 225 276 226 170 171 227 277 278 228 172 173 229 279 280 238 186 189 239 281 282 230 174 175 231 283 176 284 232 233 285 177 204 246 234 235 247 205 236 178 286 287 179 237 181 187 248 249 188 184 238 288 187 188 289 239 290 240 192 197 241 291 292 193 240 241 196 293 192 242 290 291 243 197 198 294 244 245 295 203 234 246 296 297 247 235 278 172 248 249 173 279 181 248 150 151 249 184 208 216 298 299 217 209 250 208 300 301 209 251 255 160 250 251 161 256 212 302 255 256 303 213 258 304 214 215 305 259 260 266 261 264 269 265 306 260 262 263 265 307 266 308 267 268 309 269 274 310 221 224 311 275 218 270 312 313 271 219 272 222 314 315 223 273 316 317 318 319 320 321 322 316 323 324 321 325 326 226 276 277 227 327 328 228 278 279 229 329 330 238 280 281 239 331 332 230 282 283 231 333 232 284 334 335 285 233 236 286 336 337 287 237 187 288 248 249 289 188 238 338 288 289 339 239 240 290 340 341 291 241 342 292 240 241 293 343 242 344 290 291 345 243 278 248 288 289 249 279 346 298 216 217 299 347 348 208 298 299 209 349 300 208 350 351 209 301 250 300 352 353 301 251 255 250 354 355 251 256 354 212 255 256 213 355 356 304 258 259 305 357 306 262 358 359 263 307 360 266 260 265 269 361 360 260 306 307 265 361 362 363 364 365 366 367 346 216 368 369 217 347 266 370 308 309 371 269 274 372 310 311 373 275 270 374 312 313 375 271 317 376 377 378 379 320 314 222 380 381 223 315 318 317 377 378 320 319 323 316 318 319 321 324 382 322 323 324 325 383 384 326 276 277 327 385 386 328 278 279 329 387 238 330 338 339 331 239 388 330 280 281 331 389 390 332 282 283 333 391 334 284 392 393 285 335 386 288 338 339 289 387 290 394 340 341 395 291 396 240 340 341 241 397 342 240 398 399 241 343 290 344 394 395 345 291 386 278 288 289 279 387 346 400 298 299 401 347 402 208 348 349 209 403 348 298 404 405 299 349 350 208 402 403 209 351 300 350 406 407 351 301 352 300 406 407 301 353 354 250 352 353 251 355 356 408 304 305 409 357 410 306 358 359 307 411 360 377 266 269 378 361 412 360 306 307 361 413 362 364 414 415 365 367 346 368 416 417 369 347 396 340 418 419 341 397 420 421 422 423 424 425 372 426 310 311 427 373 428 322 382 383 325 429 312 374 430 431 375 313 377 376 432 433 379 378 314 380 434 435 381 315 360 318 377 378 319 361 323 318 412 413 319 324 436 382 323 324 383 437 384 438 326 327 439 385 440 328 386 387 329 441 330 442 338 339 443 331 444 330 388 389 331 445 446 332 390 391 333 447 284 448 392 393 449 285 450 446 390 391 447 451 452 453 454 455 456 457 458 386 338 339 387 459 340 394 418 419 395 341 398 240 396 397 241 399 346 460 400 401 461 347 404 298 400 401 299 405 402 348 462 463 349 403 462 348 404 405 349 463 350 402 464 465 403 351 406 350 464 465 351 407 356 466 408 409 467 357 410 358 468 469 359 411 412 306 410 411 307 413 266 377 432 433 378 269 412 318 360 361 319 413 414 364 470 471 365 415 472 421 420 425 424 473 372 474 426 427 475 373 476 428 382 383 429 477 374 478 430 431 479 375 376 480 432 433 481 379 434 380 482 483 381 435 436 323 412 413 324 437 484 382 436 437 383 485 486 438 384 385 439 487 438 488 326 327 489 439 458 440 386 387 441 459 444 442 330 331 443 445 458 338 442 443 339 459 490 444 388 389 445 491 448 492 392 393 493 449 494 495 326 327 496 497 498 446 450 451 447 499 452 454 500 501 455 457 502 421 472 473 424 503 464 402 462 463 403 465 466 504 408 409 505 467 506 410 468 469 411 507 436 412 410 411 413 437 474 508 426 427 509 475 510 428 476 477 429 511 476 382 484 485 383 477 478 512 430 431 513 479 484 436 506 507 437 485 514 438 486 487 439 515 516 440 458 459 441 517 518 519 520 521 522 523 488 524 326 327 525 489 444 526 442 443 527 445 528 458 442 443 459 529 530 444 490 491 445 531 492 532 392 393 533 493 448 534 492 493 535 449 536 448 537 538 449 539 524 494 326 327 497 525 540 530 490 491 531 541 542 543 540 541 544 545 546 504 466 467 505 547 506 468 548 549 469 507 436 410 506 507 411 437 474 550 508 509 551 475 552 510 476 477 511 553 554 476 484 485 477 555 430 512 556 557 513 431 550 558 508 509 559 551 560 561 562 563 564 565 484 506 566 567 507 485 568 514 486 487 515 569 570 571 572 573 574 575 528 516 458 459 517 529 576 519 518 523 522 577 571 578 572 573 579 574 580 519 576 577 522 581 528 442 526 527 443 529 530 526 444 445 527 531 532 492 512 513 493 533 492 534 582 583 535 493 448 584 534 535 585 449 586 448 536 539 449 587 536 537 588 589 538 539 588 537 580 581 538 589 530 540 590 591 541 531 540 543 592 593 544 541 546 594 504 505 595 547 596 546 466 467 547 597 566 506 548 549 507 567 598 510 552 553 511 599 554 552 476 477 553 555 554 484 566 567 485 555 600 601 466 467 602 603 492 556 512 513 557 493 550 604 558 559 605 551 606 561 560 565 564 607 608 514 568 569 515 609 610 516 528 529 517 611 612 571 570 575 574 613 588 580 576 577 581 589 614 528 526 527 529 615 530 590 526 527 591 531 543 616 617 618 619 544 534 584 582 583 585 535 492 582 620 621 583 493 586 584 448 449 585 587 590 540 622 623 541 591 592 543 617 618 544 593 540 592 622 623 593 541 546 624 594 595 625 547 626 566 548 549 567 627 628 629 630 631 632 633 634 596 466 467 597 635 636 598 552 553 599 637 638 552 554 555 553 639 554 566 640 641 567 555 601 634 466 467 635 602 556 642 643 644 645 557 492 620 556 557 621 493 617 598 636 637 599 618 646 608 568 569 609 647 648 612 570 575 613 649 614 610 528 529 611 615 614 526 590 591 527 615 584 650 582 583 651 585 620 582 652 653 583 621 654 590 622 623 591 655 592 617 656 657 618 593 622 592 658 659 593 623 624 660 594 595 661 625 662 663 664 665 666 667 640 566 626 627 567 641 628 668 629 632 669 633 664 663 670 671 666 665 628 672 668 669 673 633 638 636 552 553 637 639 638 554 640 641 555 639 643 674 672 673 675 644 556 676 642 645 677 557 643 642 674 675 645 644 556 620 652 653 621 557 617 636 678 679 637 618 680 608 646 647 609 681 614 682 610 611 683 615 684 612 648 649 613 685 686 614 590 591 615 687 650 688 582 583 689 651 652 582 690 691 583 653 692 654 622 623 655 693 654 686 590 591 687 655 658 592 656 657 593 659 656 617 678 679 618 657 692 622 658 659 623 693 624 694 660 661 695 625 696 640 626 627 641 697 698 662 664 665 667 699 672 674 668 669 675 673 678 636 638 639 637 679 638 640 700 701 641 639 676 556 652 653 557 677 702 680 646 647 681 703 704 684 648 649 685 705 686 682 614 615 683 687 582 688 706 707 689 583 690 582 708 709 583 691 710 654 692 693 655 711 712 686 654 655 687 713 658 656 714 715 657 659 656 678 716 717 679 657 718 692 658 659 693 719 694 720 660 661 721 695 722 662 698 699 667 723 696 700 640 641 701 697 678 638 700 701 639 679 724 680 702 703 681 725 726 682 686 687 683 727 728 684 704 705 685 729 688 730 706 707 731 689 582 706 708 709 707 583 732 710 692 693 711 733 710 712 654 655 713 711 734 726 686 687 727 735 718 658 714 715 659 719 714 656 716 717 657 715 716 678 736 737 679 717 732 692 718 719 693 733 694 738 720 721 739 695 740 700 696 697 701 741 742 722 698 699 723 743 678 700 736 737 701 679 744 724 702 703 725 745 746 728 704 705 729 747 730 748 706 707 749 731 708 706 750 751 707 709 752 710 732 733 711 753 754 712 710 711 713 755 756 726 734 735 727 757 718 714 758 759 715 719 714 716 760 761 717 715 716 736 762 763 737 717 764 732 718 719 733 765 738 766 720 721 767 739 768 722 742 743 723 769 740 736 700 701 737 741 770 771 772 773 774 775 756 776 726 727 777 757 706 748 778 779 749 707 730 780 748 749 781 731 706 782 750 751 783 707 784 752 732 733 753 785 752 754 710 711 755 753 764 718 758 759 719 765 758 714 760 761 715 759 760 716 762 763 717 761 786 787 736 737 788 789 784 732 764 765 733 785 738 790 766 767 791 739 740 786 736 737 789 741 792 768 742 743 769 793 794 770 772 773 775 795 796 797 798 799 800 801 748 802 778 779 803 749 706 778 782 783 779 707 804 805 806 807 808 809 750 782 810 811 783 751 797 812 813 814 815 800 764 758 816 817 759 765 758 760 818 819 761 759 760 762 820 821 763 761 786 822 787 788 823 789 784 764 824 825 765 785 790 826 766 767 827 791 828 768 792 793 769 829 830 794 772 773 795 831 798 797 813 814 800 799 832 833 834 835 836 837 778 802 838 839 803 779 778 840 782 783 841 779 842 804 806 807 809 843 844 845 846 847 848 849 813 812 850 851 815 814 824 764 816 817 765 825 816 758 818 819 759 817 818 760 820 821 761 819 852 822 786 789 823 853 812 854 850 851 855 815 856 857 858 859 860 861 862 794 830 831 795 863 832 864 833 836 865 837 866 832 834 835 837 867 778 838 840 841 839 779 802 868 838 839 869 803 870 871 872 873 872 871 874 875 876 875 874 877 842 806 878 879 807 843 846 845 880 881 848 847 854 882 883 884 885 855 882 886 887 888 889 885 886 890 891 892 893 889 850 854 894 895 855 851 857 896 858 859 897 860 898 862 830 831 863 899 900 864 832 837 865 901 902 832 866 867 837 903 838 904 840 841 905 839 838 868 906 907 869 839 870 908 871 873 871 908 909 874 876 874 909 877 872 873 910 911 876 875 912 842 878 879 843 913 846 880 914 915 881 847 854 883 894 895 884 855 882 887 883 884 888 885 886 891 887 888 892 889 896 916 858 859 917 897 918 898 830 831 899 919 920 900 832 837 901 921 832 902 922 923 903 837 838 906 904 905 907 839 908 924 873 876 925 909 873 926 910 911 927 876 912 878 928 929 879 913 914 880 930 931 881 915 896 932 916 917 933 897 934 918 830 831 919 935 936 920 832 837 921 937 938 912 928 929 913 939 940 832 922 923 837 941 924 942 873 876 943 925 926 873 944 945 876 927 914 930 946 947 931 915 932 948 916 917 949 933 950 920 936 937 921 951 952 936 832 837 937 953 938 928 954 955 929 939 956 832 940 941 837 957 958 938 954 955 939 959 942 960 873 876 961 943 946 930 962 963 931 947 873 964 944 945 965 876 948 966 916 917 967 949 968 950 936 937 951 969 968 936 970 971 937 969 972 952 832 837 953 973 974 958 975 976 959 977 978 832 956 957 837 979 958 954 975 976 955 959 960 980 873 876 981 961 942 982 960 961 983 943 946 962 984 985 963 947 873 986 964 965 987 876 984 962 988 989 963 985 966 990 916 917 991 967 992 968 970 971 969 993 994 972 832 837 973 995 992 970 996 997 971 993 974 975 998 999 976 977 1000 974 998 999 977 1001 1002 832 978 979 837 1003 960 1004 1005 1006 1007 961 980 1008 873 876 1009 981 960 982 1004 1007 983 961 1010 988 1011 1012 989 1013 873 1014 986 987 1015 876 984 988 1010 1013 989 985 1016 994 832 837 995 1017 1018 996 1019 1020 997 1021 1018 992 996 997 993 1021 998 1022 1000 1001 1023 999 1000 1022 1024 1025 1023 1001 1026 832 1002 1003 837 1027 1005 1004 1028 1029 1007 1006 1008 1030 873 876 1031 1009 1005 1028 1032 1033 1029 1006 1010 1011 1034 1035 1012 1013 1034 1011 1036 1037 1012 1035 873 1038 1014 1015 1039 876 1040 1019 1041 1042 1020 1043 1044 1016 832 837 1017 1045 1040 1018 1019 1020 1021 1043 1022 1046 1024 1025 1047 1023 1048 832 1026 1027 837 1049 1024 1046 1050 1051 1047 1025 1030 1052 873 876 1053 1031 1032 1054 1055 1056 1057 1033 1032 1028 1054 1057 1029 1033 1036 1058 1034 1035 1059 1037 1036 1060 1058 1059 1061 1037 873 1062 1038 1039 1063 876 1064 1040 1041 1042 1043 1065 1066 1044 832 837 1045 1067 1064 1041 1068 1069 1042 1065 1050 1070 1071 1072 1073 1051 1074 832 1048 1049 837 1075 1046 1070 1050 1051 1073 1047 1055 1076 1077 1078 1079 1056 1052 1080 873 876 1081 1053 1055 1054 1076 1079 1057 1056 1060 1082 1058 1059 1083 1061 873 1084 1062 1063 1085 876 1060 1086 1082 1083 1087 1061 1074 1066 832 837 1067 1075 1088 1068 1089 1090 1069 1091 1088 1064 1068 1069 1065 1091 1070 1092 1071 1072 1093 1073 1092 1094 1071 1072 1095 1093 1077 1076 1096 1097 1079 1078 1080 1098 873 876 1099 1081 1077 1096 1100 1101 1097 1078 1086 1102 1103 1104 1105 1087 873 1106 1084 1085 1107 876 1086 1103 1082 1083 1104 1087 1108 1089 1094 1095 1090 1109 1108 1088 1089 1090 1091 1109 1092 1108 1094 1095 1109 1093 1098 1106 873 876 1107 1099 1110 1100 1111 1112 1101 1113 1100 1096 1111 1112 1097 1101 1103 1102 1114 1115 1105 1104 1102 1116 1114 1115 1117 1105 1116 1110 1118 1119 1113 1117 1118 1110 1111 1112 1113 1119 1114 1116 1118 1119 1117 1115</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1490\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1493\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1496\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1494\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1495\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1494\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"146\" source=\"#ID1497\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"438\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1497\">-0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.2027863264083862 -1.073487997055054 0.3571899831295013 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.2027863264083862 -1.073487997055054 0.3571899831295013 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.001449317671358585 -1.071282982826233 0.3571899831295013 -0.001449317671358585 -1.071282982826233 0.3571899831295013 -0.5202267169952393 -1.066875219345093 0.3566815555095673 -0.5202267169952393 -1.066875219345093 0.3566815555095673 0.1998874694108963 -1.073487997055054 0.3571899831295013 0.1998874694108963 -1.073487997055054 0.3571899831295013 -0.2034463435411453 -1.0250403881073 0.4070454835891724 -0.2034463435411453 -1.0250403881073 0.4070454835891724 -0.5110751390457153 -1.023176193237305 0.4070454835891724 -0.5110751390457153 -1.023176193237305 0.4070454835891724 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.5227118730545044 -1.09248673915863 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.2005475461483002 -1.0250403881073 0.4070454835891724 0.2005475461483002 -1.0250403881073 0.4070454835891724 -0.001449264585971832 -1.0250403881073 0.4070454835891724 -0.001449264585971832 -1.0250403881073 0.4070454835891724 -0.5803182721138001 -1.014520287513733 0.4069845676422119 -0.5803182721138001 -1.014520287513733 0.4069845676422119 -0.6076786518096924 -1.055238604545593 0.3565012812614441 -0.6076786518096924 -1.055238604545593 0.3565012812614441 0.5173282623291016 -1.066875219345093 0.3566815555095673 0.5173282623291016 -1.066875219345093 0.3566815555095673 0.5081762075424194 -1.023176193237305 0.4070454835891724 0.5081762075424194 -1.023176193237305 0.4070454835891724 -0.2034463435411453 -0.9802029728889465 0.4227888584136963 -0.2034463435411453 -0.9802029728889465 0.4227888584136963 -0.5032289624214172 -0.9798094630241394 0.4227888584136963 -0.5032289624214172 -0.9798094630241394 0.4227888584136963 -0.5651706457138062 -0.9790123105049133 0.4227888584136963 -0.5651706457138062 -0.9790123105049133 0.4227888584136963 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.6228487491607666 -1.078431725502014 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5003302693367004 -0.9798094630241394 0.4227888584136963 0.5003302693367004 -0.9798094630241394 0.4227888584136963 0.2005475461483002 -0.9802029728889465 0.4227888584136963 0.2005475461483002 -0.9802029728889465 0.4227888584136963 -0.001449264585971832 -0.9774380326271057 0.4227888584136963 -0.001449264585971832 -0.9774380326271057 0.4227888584136963 -0.5889738202095032 -0.9703580737113953 0.4228299856185913 -0.5889738202095032 -0.9703580737113953 0.4228299856185913 -0.6072395443916321 -1.003041625022888 0.4070454835891724 -0.6072395443916321 -1.003041625022888 0.4070454835891724 -0.6396746635437012 -1.03993558883667 0.3565011620521545 -0.6396746635437012 -1.03993558883667 0.3565011620521545 0.6047801375389099 -1.055238604545593 0.3565012812614441 0.6047801375389099 -1.055238604545593 0.3565012812614441 0.5774192214012146 -1.014520287513733 0.4069845676422119 0.5774192214012146 -1.014520287513733 0.4069845676422119 0.5622721910476685 -0.9790123105049133 0.4227888584136963 0.5622721910476685 -0.9790123105049133 0.4227888584136963 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.6555055379867554 -1.058401465415955 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.2032903134822846 -0.9188514351844788 0.4277473092079163 0.2032903134822846 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.6052019596099854 -0.9562928080558777 0.4228299856185913 -0.6052019596099854 -0.9562928080558777 0.4228299856185913 -0.6279228329658508 -0.9917994141578674 0.4070454835891724 -0.6279228329658508 -0.9917994141578674 0.4070454835891724 -0.6603804230690002 -1.012173652648926 0.3565012216567993 -0.6603804230690002 -1.012173652648926 0.3565012216567993 0.636775553226471 -1.03993558883667 0.3565011620521545 0.636775553226471 -1.03993558883667 0.3565011620521545 0.6043407917022705 -1.003041625022888 0.4070454835891724 0.6043407917022705 -1.003041625022888 0.4070454835891724 0.5860748887062073 -0.9703580737113953 0.4228299856185913 0.5860748887062073 -0.9703580737113953 0.4228299856185913 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.683056652545929 -1.024173378944397 0.3421223759651184 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.6526064276695252 -1.058401465415955 0.3392031490802765 -0.6355372071266174 -0.8487778306007385 0.4070375561714172 -0.6355372071266174 -0.8487778306007385 0.4070375561714172 -0.6531206369400024 -0.8487778306007385 0.3929504156112671 -0.6531206369400024 -0.8487778306007385 0.3929504156112671 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.6910825967788696 -0.8380230665206909 0.352030873298645 0.6574813723564148 -1.012173652648926 0.3565012216567993 0.6574813723564148 -1.012173652648926 0.3565012216567993 0.6250237822532654 -0.9917994141578674 0.4070454835891724 0.6250237822532654 -0.9917994141578674 0.4070454835891724 0.602303683757782 -0.9562928080558777 0.4228299856185913 0.602303683757782 -0.9562928080558777 0.4228299856185913 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6718029379844666 -0.8377653956413269 0.3578441739082336 -0.6718029379844666 -0.8377653956413269 0.3578441739082336 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6502217650413513 -0.8487778306007385 0.3929504156112671 0.6502217650413513 -0.8487778306007385 0.3929504156112671 0.6326382160186768 -0.8487778306007385 0.4070375561714172 0.6326382160186768 -0.8487778306007385 0.4070375561714172 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 0.6689043045043945 -0.8377653956413269 0.3578441739082336 0.6689043045043945 -0.8377653956413269 0.3578441739082336 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1495\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"146\" source=\"#ID1498\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"438\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1498\">-0.005662748884652038 -0.3003436078411413 0.9538142641542096 -0.004958250870822625 -0.663702973508031 0.7479797983267328 -1.07869099120766e-009 -0.2576574119967494 0.9662363365363245 1.07869099120766e-009 0.2576574119967494 -0.9662363365363245 0.004958250870822625 0.663702973508031 -0.7479797983267328 0.005662748884652038 0.3003436078411413 -0.9538142641542096 -2.372597894113113e-009 -0.6365373962141622 0.7712458383815724 2.372597894113113e-009 0.6365373962141622 -0.7712458383815724 -0.05062296754243888 -0.658588521188452 0.7507985581472603 0.05062296754243888 0.658588521188452 -0.7507985581472603 0.004958239794221573 -0.6637029536472272 0.7479798160231928 -0.004958239794221573 0.6637029536472272 -0.7479798160231928 0.0003101519018471342 -0.5400639855969268 0.8416239036927126 -0.0003101519018471342 0.5400639855969268 -0.8416239036927126 -0.03373737267444298 -0.571531831791014 0.8198860621663439 0.03373737267444298 0.571531831791014 -0.8198860621663439 -0.01969785890737417 -0.2616664220722393 0.9649573451269117 0.01969785890737417 0.2616664220722393 -0.9649573451269117 0.005662748672241021 -0.3003435921545434 0.9538142690949744 -0.005662748672241021 0.3003435921545434 -0.9538142690949744 -0.0003101511477583259 -0.5400639863074525 0.8416239032370512 0.0003101511477583259 0.5400639863074525 -0.8416239032370512 -1.047140219661615e-009 -0.5417635515779979 0.8405309358861184 1.047140219661615e-009 0.5417635515779979 -0.8405309358861184 -0.1456617391791251 -0.5690161591534998 0.8093227220098986 0.1456617391791251 0.5690161591534998 -0.8093227220098986 -0.1803519318601171 -0.6134749525573249 0.7688443686853091 0.1803519318601171 0.6134749525573249 -0.7688443686853091 0.05062320118724138 -0.6585884825921694 0.750798576249649 -0.05062320118724138 0.6585884825921694 -0.750798576249649 0.03373728297714376 -0.571531725438843 0.8198861399939744 -0.03373728297714376 0.571531725438843 -0.8198861399939744 -0.001154009035315631 -0.2065151984626948 0.9784427122049916 0.001154009035315631 0.2065151984626948 -0.9784427122049916 -0.001686019370673894 -0.1977884537775508 0.9802432784217228 0.001686019370673894 0.1977884537775508 -0.9802432784217228 -0.04843642768347421 -0.2158089521412255 0.975233514933203 0.04843642768347421 0.2158089521412255 -0.975233514933203 -0.0771747638042234 -0.2197377985821765 0.9725015967627102 0.0771747638042234 0.2197377985821765 -0.9725015967627102 0.01969778337526758 -0.2616666146433107 0.9649572944494539 -0.01969778337526758 0.2616666146433107 -0.9649572944494539 0.001686017598503319 -0.1977884587910386 0.9802432774131753 -0.001686017598503319 0.1977884587910386 -0.9802432774131753 0.001154004466121158 -0.2065152029394589 0.9784427112654918 -0.001154004466121158 0.2065152029394589 -0.9784427112654918 -1.213845109435125e-009 -0.183784508905539 0.9829665580712041 1.213845109435125e-009 0.183784508905539 -0.9829665580712041 -0.1145861315951627 -0.1902762129514024 0.9750205029797725 0.1145861315951627 0.1902762129514024 -0.9750205029797725 -0.2521009452976371 -0.5079576817782719 0.8236650453324347 0.2521009452976371 0.5079576817782719 -0.8236650453324347 -0.4123732310645685 -0.5040732699400515 0.7588533829622899 0.4123732310645685 0.5040732699400515 -0.7588533829622899 0.1803539988353248 -0.6134741762408932 0.7688445032577559 -0.1803539988353248 0.6134741762408932 -0.7688445032577559 0.1456605441840856 -0.569016061049941 0.8093230060582769 -0.1456605441840856 0.569016061049941 -0.8093230060582769 0.04843747151955567 -0.2158095166861311 0.9752333381609197 -0.04843747151955567 0.2158095166861311 -0.9752333381609197 0.009401250144782504 0.3008855372065615 0.9536139208273095 -0.009401250144782504 -0.3008855372065615 -0.9536139208273095 0.05052979851625714 0.2432052738812564 0.9686578003703111 -0.05052979851625714 -0.2432052738812564 -0.9686578003703111 0.1138664131417217 0.232912953725105 0.9658084675261892 -0.1138664131417217 -0.232912953725105 -0.9658084675261892 -0.1091464427993047 -0.1854747968576843 0.9765685607036809 0.1091464427993047 0.1854747968576843 -0.9765685607036809 0.07717520035315093 -0.2197372978899333 0.9725016752512469 -0.07717520035315093 0.2197372978899333 -0.9725016752512469 -0.05052997868541467 0.2432047259207096 0.9686579285505717 0.05052997868541467 -0.2432047259207096 -0.9686579285505717 -0.009401248097297095 0.3008855179818873 0.9536139269132895 0.009401248097297095 -0.3008855179818873 -0.9536139269132895 1.715447736761821e-009 0.2481218125350861 0.9687288403595217 -1.715447736761821e-009 -0.2481218125350861 -0.9687288403595217 -0.2784405634250393 -0.0765847600931651 0.9573952303834706 0.2784405634250393 0.0765847600931651 -0.9573952303834706 -0.5315739033317701 -0.3193684087267559 0.7844953822706452 0.5315739033317701 0.3193684087267559 -0.7844953822706452 -0.5943067986228019 -0.2534906281099632 0.7632443452598471 0.5943067986228019 0.2534906281099632 -0.7632443452598471 0.4123749716343679 -0.5040727249996686 0.7588527990862015 -0.4123749716343679 0.5040727249996686 -0.7588527990862015 0.2521017102364427 -0.5079580221528142 0.8236646012950064 -0.2521017102364427 0.5079580221528142 -0.8236646012950064 0.1145832480102491 -0.1902760513495413 0.9750208733961794 -0.1145832480102491 0.1902760513495413 -0.9750208733961794 -0.1138663683946042 0.2329141275011871 0.9658081897348899 0.1138663683946042 -0.2329141275011871 -0.9658081897348899 0.1030468669472135 0.2216429896176415 0.9696678443496605 -0.1030468669472135 -0.2216429896176415 -0.9696678443496605 -0.1228183054958481 -0.111129705670554 0.9861875340688021 0.1228183054958481 0.111129705670554 -0.9861875340688021 0.1091488696533336 -0.1854757037912854 0.9765681172127867 -0.1091488696533336 0.1854757037912854 -0.9765681172127867 -0.4531054072318778 0.04326566030068675 0.8904064086561708 0.4531054072318778 -0.04326566030068675 -0.8904064086561708 -0.76979622301074 -0.018849408134265 0.6380113438265709 0.76979622301074 0.018849408134265 -0.6380113438265709 -0.2476666920797232 -0.02438408932794591 0.9685383966688849 0.2476666920797232 0.02438408932794591 -0.9685383966688849 0.5943031912732282 -0.2534917515070076 0.7632467810350505 -0.5943031912732282 0.2534917515070076 -0.7632467810350505 0.5315755300349619 -0.3193689405572947 0.784494063505493 -0.5315755300349619 0.3193689405572947 -0.784494063505493 0.2784462538371627 -0.07658606360023611 0.9573934711424926 -0.2784462538371627 0.07658606360023611 -0.9573934711424926 0.1114224209044949 0.1676835182573328 0.979524007783691 -0.1114224209044949 -0.1676835182573328 -0.979524007783691 -0.6323090853057036 -0.03335460635571474 0.7739978623192184 0.6323090853057036 0.03335460635571474 -0.7739978623192184 0.1228143137468341 -0.1111288314674064 0.9861881296971603 -0.1228143137468341 0.1111288314674064 -0.9861881296971603 -0.1030444216764338 0.2216419275986339 0.9696683469577272 0.1030444216764338 -0.2216419275986339 -0.9696683469577272 -0.5736763948085086 0.3276465503718861 0.7506950992706128 0.5736763948085086 -0.3276465503718861 -0.7506950992706128 -0.2441943401385535 0.4431550853429167 0.8625443145595528 0.2441943401385535 -0.4431550853429167 -0.8625443145595528 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 -0.1422524387013631 0.08650520172209436 0.9860431500489898 0.1422524387013631 -0.08650520172209436 -0.9860431500489898 0.2476665877536164 -0.02438400563172669 0.9685384254534418 -0.2476665877536164 0.02438400563172669 -0.9685384254534418 0.7697936430402944 -0.01885005181698557 0.63801443767461 -0.7697936430402944 0.01885005181698557 -0.63801443767461 0.4531049316146203 0.04326603676424462 0.8904066323928778 -0.4531049316146203 -0.04326603676424462 -0.8904066323928778 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 0.6323069370255796 -0.03335520396877564 0.7739995915745248 -0.6323069370255796 0.03335520396877564 -0.7739995915745248 -0.1114237979693154 0.1676831763354625 0.9795239096725221 0.1114237979693154 -0.1676831763354625 -0.9795239096725221 0.1422539534903038 0.08650680782154999 0.9860427906114946 -0.1422539534903038 -0.08650680782154999 -0.9860427906114946 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 0.5736724490507156 0.3276483942267879 0.7506973098131908 -0.5736724490507156 -0.3276483942267879 -0.7506973098131908 0.2441976709347891 0.4431556628268767 0.8625430748748124 -0.2441976709347891 -0.4431556628268767 -0.8625430748748124 -0.1983818612641697 0.4627947061566479 0.8639824634069522 0.1983818612641697 -0.4627947061566479 -0.8639824634069522</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"220\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 2 1 6 7 4 3 8 1 0 5 4 9 2 6 10 11 7 3 6 1 12 13 4 7 1 8 14 15 9 4 16 8 0 5 9 17 18 2 10 11 3 19 10 6 20 21 7 11 22 6 12 13 7 23 12 1 14 15 4 13 8 24 14 15 25 9 16 26 8 9 27 17 18 10 28 29 11 19 30 10 20 21 11 31 20 6 22 23 7 21 12 32 22 23 33 13 14 34 12 13 35 15 24 36 14 15 37 25 8 26 24 25 27 9 38 26 16 17 27 39 18 28 40 41 29 19 28 10 30 31 11 29 20 42 30 31 43 21 20 22 44 45 23 21 22 32 46 47 33 23 12 34 32 33 35 13 14 36 34 35 37 15 24 48 36 37 49 25 26 50 24 25 51 27 38 52 26 27 53 39 40 28 54 55 29 41 56 28 30 31 29 57 30 42 58 59 43 31 20 44 42 43 45 21 22 46 44 45 47 23 32 60 46 47 61 33 34 62 32 33 63 35 36 62 34 35 63 37 50 48 24 25 49 51 36 48 64 65 49 37 26 52 50 51 53 27 66 52 38 39 53 67 40 54 68 69 55 41 54 28 56 57 29 55 30 58 56 57 59 31 42 70 58 59 71 43 42 44 70 71 45 43 44 46 72 73 47 45 62 60 32 33 61 63 46 60 74 75 61 47 36 64 62 63 65 37 50 76 48 49 77 51 48 76 64 65 77 49 52 78 50 51 79 53 66 80 52 53 81 67 68 54 82 83 55 69 56 84 54 55 85 57 56 58 86 87 59 57 70 88 58 59 89 71 44 72 70 71 73 45 46 74 72 73 75 47 50 78 76 77 79 51 76 90 64 65 91 77 52 80 78 79 81 53 92 80 66 67 81 93 68 82 94 95 83 69 54 84 82 83 85 55 56 86 84 85 87 57 58 88 86 87 89 59 78 96 76 77 97 79 76 96 90 91 97 77 78 80 98 99 81 79 92 100 80 81 101 93 94 82 102 103 83 95 84 104 82 83 105 85 86 106 84 85 107 87 86 88 106 107 89 87 98 96 78 79 97 99 96 108 90 91 109 97 98 80 110 111 81 99 100 110 80 81 111 101 94 102 112 113 103 95 102 82 104 105 83 103 84 106 104 105 107 85 88 114 106 107 115 89 98 116 96 97 117 99 96 118 108 109 119 97 98 110 120 121 111 99 100 122 110 111 123 101 112 102 124 125 103 113 102 104 126 127 105 103 104 106 128 129 107 105 106 114 128 129 115 107 116 98 120 121 99 117 116 118 96 97 119 117 118 130 108 109 131 119 122 120 110 111 121 123 102 132 124 125 133 103 102 126 132 133 127 103 104 128 126 127 129 105 114 134 128 129 135 115 124 132 136 137 133 125 132 126 138 139 127 133 126 128 140 141 129 127 128 134 142 143 135 129 132 138 136 137 139 133 138 126 140 141 127 139 128 142 140 141 143 129 134 144 142 143 145 135</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1496\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1499\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1502\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1500\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1501\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1500\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"256\" source=\"#ID1503\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"768\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1503\">-0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9008265137672424 0.407900333404541 -0.001449264585971832 -0.9008265137672424 0.407900333404541 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 0.2032903134822846 -0.9188514351844788 0.4277473092079163 0.2032903134822846 -0.9188514351844788 0.4277473092079163 -0.2058618664741516 -0.8905866146087647 0.4041489362716675 -0.2058618664741516 -0.8905866146087647 0.4041489362716675 0.2029633522033691 -0.8905866146087647 0.4041489362716675 0.2029633522033691 -0.8905866146087647 0.4041489362716675 -0.001449264585971832 -0.8642953038215637 0.2873175442218781 -0.001449264585971832 -0.8642953038215637 0.2873175442218781 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 -0.2091975510120392 -0.8604845404624939 0.28980353474617 -0.2091975510120392 -0.8604845404624939 0.28980353474617 -0.5089024901390076 -0.88034588098526 0.4033911228179932 -0.5089024901390076 -0.88034588098526 0.4033911228179932 0.5060030221939087 -0.88034588098526 0.4033911228179932 0.5060030221939087 -0.88034588098526 0.4033911228179932 0.2062989473342896 -0.8604845404624939 0.28980353474617 0.2062989473342896 -0.8604845404624939 0.28980353474617 -0.2169111371040344 -0.850664496421814 0.2308530360460281 -0.2169111371040344 -0.850664496421814 0.2308530360460281 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.5592859983444214 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.2140122205018997 -0.850664496421814 0.2308530360460281 0.2140122205018997 -0.850664496421814 0.2308530360460281 -0.001449264585971832 -0.8544549345970154 0.226887509226799 -0.001449264585971832 -0.8544549345970154 0.226887509226799 -0.4991267025470734 -0.8247990608215332 0.2303560227155685 -0.4991267025470734 -0.8247990608215332 0.2303560227155685 -0.4822732210159302 -0.8412036895751953 0.3024190962314606 -0.4822732210159302 -0.8412036895751953 0.3024190962314606 -0.5360015034675598 -0.8629845380783081 0.4011168479919434 -0.5360015034675598 -0.8629845380783081 0.4011168479919434 0.5331027507781982 -0.8629845380783081 0.4011168479919434 0.5331027507781982 -0.8629845380783081 0.4011168479919434 0.4793746471405029 -0.8412036895751953 0.3024190962314606 0.4793746471405029 -0.8412036895751953 0.3024190962314606 0.4962282776832581 -0.8247990608215332 0.2303560227155685 0.4962282776832581 -0.8247990608215332 0.2303560227155685 -0.2233303785324097 -0.8408377170562744 0.155529111623764 -0.2233303785324097 -0.8408377170562744 0.155529111623764 -0.5103840827941895 -0.8105360865592957 0.1526265740394592 -0.5103840827941895 -0.8105360865592957 0.1526265740394592 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5074851512908936 -0.8105360865592957 0.1526265740394592 0.5074851512908936 -0.8105360865592957 0.1526265740394592 0.2204316407442093 -0.8408377170562744 0.155529111623764 0.2204316407442093 -0.8408377170562744 0.155529111623764 -0.001449264585971832 -0.8478066325187683 0.1633798182010651 -0.001449264585971832 -0.8478066325187683 0.1633798182010651 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5080633759498596 -0.8316804766654968 0.2988536059856415 0.5080633759498596 -0.8316804766654968 0.2988536059856415 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.5774928331375122 -0.7780205607414246 0.1524880826473236 -0.2308849394321442 -0.8047881722450256 0.0218891017138958 -0.2308849394321442 -0.8047881722450256 0.0218891017138958 -0.5296268463134766 -0.7695713043212891 0.02064040675759316 -0.5296268463134766 -0.7695713043212891 0.02064040675759316 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5267279148101807 -0.7695713043212891 0.02064040675759316 0.5267279148101807 -0.7695713043212891 0.02064040675759316 0.2279863953590393 -0.8047881722450256 0.0218891017138958 0.2279863953590393 -0.8047881722450256 0.0218891017138958 -0.001449264585971832 -0.811660647392273 0.02170788124203682 -0.001449264585971832 -0.811660647392273 0.02170788124203682 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5562193989753723 -0.8102383017539978 0.2943964898586273 -0.2359215766191483 -0.7559671401977539 -0.10956010222435 -0.2359215766191483 -0.7559671401977539 -0.10956010222435 -0.5445342063903809 -0.7176461219787598 -0.1151830404996872 -0.5445342063903809 -0.7176461219787598 -0.1151830404996872 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5416357517242432 -0.7176461219787598 -0.1151830404996872 0.5416357517242432 -0.7176461219787598 -0.1151830404996872 0.2330227941274643 -0.7559671401977539 -0.10956010222435 0.2330227941274643 -0.7559671401977539 -0.10956010222435 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449264585971832 -0.7628392577171326 -0.1150786280632019 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449264585971832 -0.7628392577171326 -0.1150786280632019 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.596644401550293 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 -0.2399774938821793 -0.6989214420318604 -0.2486914843320847 -0.2399774938821793 -0.6989214420318604 -0.2486914843320847 -0.5503517985343933 -0.6690559387207031 -0.2467941492795944 -0.5503517985343933 -0.6690559387207031 -0.2467941492795944 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.5474526286125183 -0.6690559387207031 -0.2467941492795944 0.5474526286125183 -0.6690559387207031 -0.2467941492795944 0.2370787858963013 -0.6989214420318604 -0.2486914843320847 0.2370787858963013 -0.6989214420318604 -0.2486914843320847 -0.001449264585971832 -0.7057934999465942 -0.2469800859689713 -0.001449264585971832 -0.7057934999465942 -0.2469800859689713 0.6237722635269165 -0.666684091091156 0.3805446624755859 0.6237722635269165 -0.666684091091156 0.3805446624755859 -0.2416535615921021 -0.6776809096336365 -0.2738118767738342 -0.2416535615921021 -0.6776809096336365 -0.2738118767738342 -0.5451606512069702 -0.6392850279808044 -0.2739138007164002 -0.5451606512069702 -0.6392850279808044 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5422620177268982 -0.6392850279808044 -0.2739138603210449 0.5422620177268982 -0.6392850279808044 -0.2739138603210449 0.2387548983097076 -0.6776809096336365 -0.2738119065761566 0.2387548983097076 -0.6776809096336365 -0.2738119065761566 -0.001449264585971832 -0.684722900390625 -0.2738119065761566 -0.001449264585971832 -0.684722900390625 -0.2738119065761566 0.6344869732856751 -0.6666867136955261 0.380647212266922 0.6344869732856751 -0.6666867136955261 0.380647212266922 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.6099106073379517 -0.6618664264678955 0.2912401556968689 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.4858808219432831 -0.459694117307663 -0.2738118767738342 -0.4858808219432831 -0.459694117307663 -0.2738118767738342 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.4829820096492767 -0.459694117307663 -0.2738119065761566 0.4829820096492767 -0.459694117307663 -0.2738119065761566 0.08564969897270203 -0.4586217701435089 -0.2738119065761566 0.08564969897270203 -0.4586217701435089 -0.2738119065761566 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 -0.08879685401916504 -0.07529165595769882 -0.2738118767738342 -0.08879685401916504 -0.07529165595769882 -0.2738118767738342 -0.4861236810684204 -0.07529165595769882 -0.2738118767738342 -0.4861236810684204 -0.07529165595769882 -0.2738118767738342 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.4832248687744141 -0.07529165595769882 -0.2738119065761566 0.4832248687744141 -0.07529165595769882 -0.2738119065761566 0.0858980268239975 -0.07529165595769882 -0.2738119065761566 0.0858980268239975 -0.07529165595769882 -0.2738119065761566 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 0.6728364825248718 -0.6232461929321289 0.151445209980011 0.6728364825248718 -0.6232461929321289 0.151445209980011 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 -0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 -0.1051686182618141 0.3285070955753326 -0.2738118767738342 -0.1051686182618141 0.3285070955753326 -0.2738118767738342 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.6822202205657959 -0.5696841478347778 0.01786315068602562 0.6822202205657959 -0.5696841478347778 0.01786315068602562 0.1022694855928421 0.3285070955753326 -0.2738119065761566 0.1022694855928421 0.3285070955753326 -0.2738119065761566 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.6822202205657959 -0.5125510692596436 -0.1188254952430725 0.6822202205657959 -0.5125510692596436 -0.1188254952430725 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1501\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"256\" source=\"#ID1504\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"768\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1504\">1.715447736761821e-009 0.2481218125350861 0.9687288403595217 0.009401250144782504 0.3008855372065615 0.9536139208273095 2.035422321482497e-009 0.7939846868735797 0.6079377575132702 -2.035422321482497e-009 -0.7939846868735797 -0.6079377575132702 -0.009401250144782504 -0.3008855372065615 -0.9536139208273095 -1.715447736761821e-009 -0.2481218125350861 -0.9687288403595217 -0.009401248097297095 0.3008855179818873 0.9536139269132895 0.009401248097297095 -0.3008855179818873 -0.9536139269132895 0.02583369656101249 0.8431526023843547 0.5370533578840037 -0.02583369656101249 -0.8431526023843547 -0.5370533578840037 -0.02583373351476824 0.843152589493277 0.5370533763449116 0.02583373351476824 -0.843152589493277 -0.5370533763449116 -8.169983004136007e-009 0.9756019101559423 0.219547063064111 8.169983004136007e-009 -0.9756019101559423 -0.219547063064111 0.05052979851625714 0.2432052738812564 0.9686578003703111 -0.05052979851625714 -0.2432052738812564 -0.9686578003703111 -0.05052997868541467 0.2432047259207096 0.9686579285505717 0.05052997868541467 -0.2432047259207096 -0.9686579285505717 0.04201646249544194 0.9757956725274732 0.2146099307022518 -0.04201646249544194 -0.9757956725274732 -0.2146099307022518 0.2080929561113531 0.742062843676496 0.6372127255882378 -0.2080929561113531 -0.742062843676496 -0.6372127255882378 -0.208089506830558 0.7420653365720928 0.6372109489055893 0.208089506830558 -0.7420653365720928 -0.6372109489055893 -0.04201651599233937 0.975795648809786 0.2146100280689472 0.04201651599233937 -0.975795648809786 -0.2146100280689472 0.05801343365966621 0.9880929435038131 0.1425018474020108 -0.05801343365966621 -0.9880929435038131 -0.1425018474020108 0.1138664131417217 0.232912953725105 0.9658084675261892 -0.1138664131417217 -0.232912953725105 -0.9658084675261892 -0.1138663683946042 0.2329141275011871 0.9658081897348899 0.1138663683946042 -0.2329141275011871 -0.9658081897348899 -0.05801332090299661 0.9880929317009803 0.142501975145496 0.05801332090299661 -0.9880929317009803 -0.142501975145496 -1.571396074608873e-008 0.9908900542609914 0.134673309778327 1.571396074608873e-008 -0.9908900542609914 -0.134673309778327 0.227388534602158 0.9595246946824242 0.1661529856068916 -0.227388534602158 -0.9595246946824242 -0.1661529856068916 0.1755717558524631 0.9424091495213978 0.2846744692543377 -0.1755717558524631 -0.9424091495213978 -0.2846744692543377 0.4545401320225986 0.6272147484516137 0.6324515220201922 -0.4545401320225986 -0.6272147484516137 -0.6324515220201922 -0.4545377758904722 0.6272169812874293 0.6324510010057913 0.4545377758904722 -0.6272169812874293 -0.6324510010057913 -0.1755711219142102 0.9424094696764631 0.2846738003644047 0.1755711219142102 -0.9424094696764631 -0.2846738003644047 -0.2273888042380214 0.9595245256886391 0.1661535925256964 0.2273888042380214 -0.9595245256886391 -0.1661535925256964 0.0638410034790694 0.9793792180325037 0.1916785683398832 -0.0638410034790694 -0.9793792180325037 -0.1916785683398832 0.2571540481453198 0.9471230925857829 0.1919105078238738 -0.2571540481453198 -0.9471230925857829 -0.1919105078238738 0.1030468669472135 0.2216429896176415 0.9696678443496605 -0.1030468669472135 -0.2216429896176415 -0.9696678443496605 -0.1030444216764338 0.2216419275986339 0.9696683469577272 0.1030444216764338 -0.2216419275986339 -0.9696683469577272 -0.257153388496056 0.947123103862737 0.1919113360758331 0.257153388496056 -0.947123103862737 -0.1919113360758331 -0.06384107734919033 0.9793792351847296 0.1916784560973631 0.06384107734919033 -0.9793792351847296 -0.1916784560973631 -8.739514482084267e-009 0.984322838181471 0.1763761611850463 8.739514482084267e-009 -0.984322838181471 -0.1763761611850463 0.345541571839725 0.9120028016585794 0.2210246861720067 -0.345541571839725 -0.9120028016585794 -0.2210246861720067 0.7923653450499429 0.6086502283222469 0.04125602413176856 -0.7923653450499429 -0.6086502283222469 -0.04125602413176856 0.6550020983156387 0.4876283129803074 0.5772268874386309 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.6550028074066617 0.4876263453328185 0.57722774502509 0.6550028074066617 -0.4876263453328185 -0.57722774502509 -0.345541217123833 0.9120031117774368 0.221023961092123 0.345541217123833 -0.9120031117774368 -0.221023961092123 -0.7923653544809333 0.608650103731723 0.0412576810505382 0.7923653544809333 -0.608650103731723 -0.0412576810505382 0.06889339436928037 0.9515744320927353 0.2995993998653323 -0.06889339436928037 -0.9515744320927353 -0.2995993998653323 0.2570777685290928 0.922056222251064 0.289349864240851 -0.2570777685290928 -0.922056222251064 -0.289349864240851 0.7244552439627415 0.6850948378838646 0.07622114273458253 -0.7244552439627415 -0.6850948378838646 -0.07622114273458253 0.7968674597543884 0.5870317053962028 0.1428146646679311 -0.7968674597543884 -0.5870317053962028 -0.1428146646679311 0.1114224209044949 0.1676835182573328 0.979524007783691 -0.1114224209044949 -0.1676835182573328 -0.979524007783691 -0.1114237979693154 0.1676831763354625 0.9795239096725221 0.1114237979693154 -0.1676831763354625 -0.9795239096725221 -0.7244565686574949 0.6850933441356621 0.07622197812982619 0.7244565686574949 -0.6850933441356621 -0.07622197812982619 -0.7968685932815799 0.5870304906792523 0.1428133329010719 0.7968685932815799 -0.5870304906792523 -0.1428133329010719 -0.2570767790947514 0.9220564773034056 0.2893499305565886 0.2570767790947514 -0.9220564773034056 -0.2893499305565886 -0.06889346903278142 0.9515744364678358 0.2995993688003195 0.06889346903278142 -0.9515744364678358 -0.2995993688003195 -1.062354948045608e-008 0.9560443774783194 0.2932220119501479 1.062354948045608e-008 -0.9560443774783194 -0.2932220119501479 0.7476117988063761 0.6572838630161918 0.09515525053304569 -0.7476117988063761 -0.6572838630161918 -0.09515525053304569 0.8216288131614381 0.2706515877970226 0.5016710191010413 -0.8216288131614381 -0.2706515877970226 -0.5016710191010413 -0.8216292782168875 0.2706545588897141 0.5016686545211001 0.8216292782168875 -0.2706545588897141 -0.5016686545211001 -0.7476141706463564 0.6572814401000713 0.09515335174725628 0.7476141706463564 -0.6572814401000713 -0.09515335174725628 0.0686384617992974 0.9314733218746919 0.3572761007925849 -0.0686384617992974 -0.9314733218746919 -0.3572761007925849 0.3044284030251505 0.8973732926014187 0.3194440814246603 -0.3044284030251505 -0.8973732926014187 -0.3194440814246603 0.8188535649683953 0.5430980693366506 0.1858045376769702 -0.8188535649683953 -0.5430980693366506 -0.1858045376769702 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 -0.1983818612641697 0.4627947061566479 0.8639824634069522 0.1983818612641697 -0.4627947061566479 -0.8639824634069522 -0.8188546049565538 0.5430968997890379 0.1858033728999071 0.8188546049565538 -0.5430968997890379 -0.1858033728999071 -0.3044293230567004 0.8973731718340767 0.3194435438942034 0.3044293230567004 -0.8973731718340767 -0.3194435438942034 -0.06863843041400655 0.9314732955013412 0.3572761755815422 0.06863843041400655 -0.9314732955013412 -0.3572761755815422 1.116069999838444e-008 0.9423171754854557 0.3347212882162006 -3.747649454434864e-008 0.9318290390368441 0.3628975640696287 -1.116069999838444e-008 -0.9423171754854557 -0.3347212882162006 3.747649454434864e-008 -0.9318290390368441 -0.3628975640696287 0.7753776474116275 0.4751149390666444 0.4159991569343728 -0.7753776474116275 -0.4751149390666444 -0.4159991569343728 -0.7753733229355523 0.4751248107874208 0.4159959425933109 0.7753733229355523 -0.4751248107874208 -0.4159959425933109 0.05864831235288941 0.8527161846489071 0.5190717521653139 -0.05864831235288941 -0.8527161846489071 -0.5190717521653139 0.3054264818168302 0.7913895422415095 0.5295443858976955 -0.3054264818168302 -0.7913895422415095 -0.5295443858976955 0.7904399506188402 0.4467527980245364 0.4190663693532726 -0.7904399506188402 -0.4467527980245364 -0.4190663693532726 -0.3839601059320404 0.8794258325261762 0.2813980137426312 0.3839601059320404 -0.8794258325261762 -0.2813980137426312 -0.7904401366226477 0.4467532877527571 0.4190654964299407 0.7904401366226477 -0.4467532877527571 -0.4190654964299407 -0.3054229704142912 0.7913907101155595 0.5295446658083733 0.3054229704142912 -0.7913907101155595 -0.5295446658083733 -0.05864834861013611 0.8527163737529747 0.5190714374138505 0.05864834861013611 -0.8527163737529747 -0.5190714374138505 9.520451530020358e-009 0.8593676434638604 0.5113582436681463 -9.520451530020358e-009 -0.8593676434638604 -0.5113582436681463 -0.08976430741077263 0.8138330291007455 0.5741238279846687 0.08976430741077263 -0.8138330291007455 -0.5741238279846687 0.03370352932777578 0.4328829088361045 0.9008198817457596 -0.03370352932777578 -0.4328829088361045 -0.9008198817457596 0.165091213986121 0.3819560318732822 0.9093153912588333 -0.165091213986121 -0.3819560318732822 -0.9093153912588333 0.4644031292697052 0.1881536417132338 0.8654062286779275 -0.4644031292697052 -0.1881536417132338 -0.8654062286779275 0.2441976709347891 0.4431556628268767 0.8625430748748124 -0.2441976709347891 -0.4431556628268767 -0.8625430748748124 0.2331018669884867 0.8320242126565701 0.5033877522940903 -0.2331018669884867 -0.8320242126565701 -0.5033877522940903 -0.4644038303505231 0.1881541816406321 0.8654057350670302 0.4644038303505231 -0.1881541816406321 -0.8654057350670302 -0.165092715159511 0.3819576415429155 0.9093144425710142 0.165092715159511 -0.3819576415429155 -0.9093144425710142 -0.03370352026973898 0.4328831985936684 0.9008197428435624 0.03370352026973898 -0.4328831985936684 -0.9008197428435624 4.846721671527672e-008 0.5015666720711498 0.8651189938196187 -4.846721671527672e-008 -0.5015666720711498 -0.8651189938196187 0.09447211453588736 0.7839513607472624 0.6135921149734847 -0.09447211453588736 -0.7839513607472624 -0.6135921149734847 -0.4543309600657438 0.8834859794272519 0.1141748785031492 0.4543309600657438 -0.8834859794272519 -0.1141748785031492 1.215795615369895e-007 -8.497444814096651e-008 0.9999999999999891 -1.215795615369895e-007 8.497444814096651e-008 -0.9999999999999891 -0.0002808496167795781 -0.0001564916449623308 0.9999999483169277 0.0002808496167795781 0.0001564916449623308 -0.9999999483169277 0.5736724490507156 0.3276483942267879 0.7506973098131908 -0.5736724490507156 -0.3276483942267879 -0.7506973098131908 -0.355210421201735 0.9270152150350377 0.1202844452255927 0.355210421201735 -0.9270152150350377 -0.1202844452255927 0.0002807284206540641 -0.0001565349119740308 0.9999999483441864 -0.0002807284206540641 0.0001565349119740308 -0.9999999483441864 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 0.2818142223592027 0.1785573489795022 0.9427078111490802 -0.2818142223592027 -0.1785573489795022 -0.9427078111490802 -0.03348084013298106 0.9726744552437342 0.2297464634337051 0.03348084013298106 -0.9726744552437342 -0.2297464634337051 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 -0.2818180752902821 0.1785579729115788 0.9427065411618766 0.2818180752902821 -0.1785579729115788 -0.9427065411618766 0.001011990533916156 -0.0008954261137955052 0.9999990870432002 -0.001011990533916156 0.0008954261137955052 -0.9999990870432002 0.002221217822754517 -0.002345727983024854 0.9999947818621923 -0.002221217822754517 0.002345727983024854 -0.9999947818621923 -0.4390785855880069 0.8722665560520438 0.2153161649090516 0.4390785855880069 -0.8722665560520438 -0.2153161649090516 0.3283493187707493 0.3306983436379725 0.8847741691402875 -0.3283493187707493 -0.3306983436379725 -0.8847741691402875 -0.002221262159606195 -0.002345712392918114 0.9999947818002793 0.002221262159606195 0.002345712392918114 -0.9999947818002793 -0.001011990290598944 -0.0008954263256683121 0.9999990870432569 0.001011990290598944 0.0008954263256683121 -0.9999990870432569 0.1362496104767762 0.3488194948181901 0.9272329824158057 -0.1362496104767762 -0.3488194948181901 -0.9272329824158057 -0.008441607087187315 0.9540781587225472 0.2994388189904235 0.008441607087187315 -0.9540781587225472 -0.2994388189904235 -0.136250489327595 0.3488184035330123 0.9272332638094212 0.136250489327595 -0.3488184035330123 -0.9272332638094212 0.4374558677757206 -0.004190114349567642 0.8992301188741004 -0.4374558677757206 0.004190114349567642 -0.8992301188741004 0.4245302778687223 0.4022424278976751 0.8111566262884677 -0.4245302778687223 -0.4022424278976751 -0.8111566262884677 -0.01296507097444566 0.9520060979013328 0.3058043434833871 0.01296507097444566 -0.9520060979013328 -0.3058043434833871 -0.3813913782069187 0.8843791144645131 0.2690988638556295 0.3813913782069187 -0.8843791144645131 -0.2690988638556295 -0.4374569246052411 -0.004190067454014929 0.899229604967305 0.4374569246052411 0.004190067454014929 -0.899229604967305 -0.4245302747465338 0.4022424534965067 0.8111566152283682 0.4245302747465338 -0.4022424534965067 -0.8111566152283682 0.003439997739732104 0.0001394725262926738 0.9999940734639207 -0.003439997739732104 -0.0001394725262926738 -0.9999940734639207 -0.01478300939640896 0.9790725836662425 0.202973738563131 0.01478300939640896 -0.9790725836662425 -0.202973738563131 -0.01238376079733685 0.9254422777560835 0.378686193318619 0.01238376079733685 -0.9254422777560835 -0.378686193318619 0.002610959995311266 0.9247620000521626 0.3805370233596553 -0.002610959995311266 -0.9247620000521626 -0.3805370233596553 -0.003439994610727402 0.0001394697970728227 0.9999940734750652 0.003439994610727402 -0.0001394697970728227 -0.9999940734750652 -0.008243773311861815 0.9182764608397499 0.3958539903413963 0.008243773311861815 -0.9182764608397499 -0.3958539903413963 0.809062268051393 -0.005296295934975697 0.5876990689671925 -0.809062268051393 0.005296295934975697 -0.5876990689671925 -0.384970124415974 0.9206201242962624 0.06524254783409289 0.384970124415974 -0.9206201242962624 -0.06524254783409289 -0.3135274238242752 0.882947604923759 0.3494339443578869 0.3135274238242752 -0.882947604923759 -0.3494339443578869 -0.2493540230310667 0.8484132149469607 0.4669235353905227 0.2493540230310667 -0.8484132149469607 -0.4669235353905227 0.8895615761176244 0 0.4568152824666966 -0.8895615761176244 -0 -0.4568152824666966 -0.0175951655914716 0.9948258934248654 0.1000592420480349 0.0175951655914716 -0.9948258934248654 -0.1000592420480349 -0.01241268125867795 0.9276093213098375 0.3733455133828087 0.01241268125867795 -0.9276093213098375 -0.3733455133828087 -0.001902567885113303 0.9285006741488983 0.371325838503711 0.001902567885113303 -0.9285006741488983 -0.371325838503711 -0.2820162498870407 0.8935441405364961 0.3493504024794374 0.2820162498870407 -0.8935441405364961 -0.3493504024794374 -0.2771330402511802 0.960779697982544 0.009982481941339451 0.2771330402511802 -0.960779697982544 -0.009982481941339451 -0.0170119865673869 0.999555120818576 -0.02449801539702913 0.0170119865673869 -0.999555120818576 0.02449801539702913 -0.01248522173395713 0.9329216369708445 0.3598629440632834 0.01248522173395713 -0.9329216369708445 -0.3598629440632834</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"179\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 0 2 6 1 8 2 2 10 6 8 12 2 1 14 8 6 10 16 12 10 2 18 12 8 14 20 8 10 22 16 12 24 10 26 12 18 20 18 8 14 28 20 16 22 30 24 22 10 12 32 24 26 34 12 36 26 18 38 18 20 28 40 20 22 42 30 24 44 22 32 46 24 34 32 12 48 34 26 36 18 38 36 50 26 40 38 20 28 52 40 30 42 54 44 42 22 24 46 44 56 46 32 34 58 32 48 60 34 50 48 26 62 36 38 64 50 36 62 38 40 52 66 40 42 68 54 44 70 42 46 70 44 56 72 46 58 56 32 60 58 34 48 74 60 50 76 48 78 36 62 78 64 36 64 80 50 52 82 66 54 68 84 68 42 70 46 86 70 72 86 46 88 72 56 90 56 58 92 58 60 74 94 60 76 74 48 80 76 50 96 78 62 82 98 66 68 100 84 70 102 68 86 102 70 90 88 56 92 90 58 94 92 60 104 94 74 76 106 74 80 108 76 96 62 66 82 110 98 84 100 112 114 88 90 116 90 92 94 118 92 94 104 120 121 120 104 106 104 74 108 106 76 110 124 98 100 126 112 116 114 90 118 116 92 94 120 118 121 118 120 128 121 104 106 130 104 108 132 106 126 134 112 136 114 116 138 116 118 121 140 118 128 142 121 130 128 104 132 130 106 134 144 112 138 136 116 140 138 118 142 140 121 128 146 142 130 148 128 132 150 130 144 152 112 134 154 144 138 156 136 140 158 138 160 140 142 146 162 142 148 146 128 130 150 148 144 164 152 134 166 154 144 154 164 138 158 156 160 158 140 162 160 142 146 168 162 148 170 146 148 150 170 164 172 152 166 174 154 164 154 172 158 176 156 160 176 158 162 178 160 146 170 180 150 182 170 166 184 174 186 172 154 156 176 188 160 178 176 170 190 180 182 192 170 194 184 166 154 196 186 176 198 188 178 200 176 170 192 190 182 202 192 194 204 184 176 200 198 188 198 206 192 208 190 202 210 192 204 212 184 214 204 194 198 200 216 206 198 218 208 220 190 210 208 192 184 212 222 204 224 212 214 226 204 198 216 218 200 228 216 206 218 230 210 232 208 184 222 234 226 224 204 236 226 214 206 230 238 210 240 232 234 222 242 226 244 224 246 226 236 238 230 248 234 242 250 246 244 226 248 246 236 230 246 248 250 242 252 246 254 244 230 254 246</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1502\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"179\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 7 3 5 3 9 4 7 11 3 3 13 9 9 15 4 17 11 7 3 11 13 9 13 19 9 21 15 17 23 11 11 25 13 19 13 27 9 19 21 21 29 15 31 23 17 11 23 25 25 33 13 13 35 27 19 27 37 21 19 39 21 41 29 31 43 23 23 45 25 25 47 33 13 33 35 27 35 49 39 19 37 27 51 37 21 39 41 41 53 29 55 43 31 23 43 45 45 47 25 33 47 57 33 59 35 35 61 49 27 49 51 39 37 63 37 51 65 41 39 63 41 67 53 55 69 43 43 71 45 45 71 47 47 73 57 33 57 59 35 59 61 61 75 49 49 77 51 63 37 79 37 65 79 51 81 65 67 83 53 85 69 55 71 43 69 71 87 47 47 87 73 57 73 89 59 57 91 61 59 93 61 95 75 49 75 77 51 77 81 63 79 97 67 99 83 85 101 69 69 103 71 71 103 87 57 89 91 59 91 93 61 93 95 75 95 105 75 107 77 77 109 81 67 63 97 99 111 83 113 101 85 91 89 115 93 91 117 93 119 95 105 122 123 122 105 95 75 105 107 77 107 109 99 125 111 113 127 101 91 115 117 93 117 119 122 119 123 119 122 95 105 123 129 105 131 107 107 133 109 113 135 127 117 115 137 119 117 139 119 141 123 123 143 129 105 129 131 107 131 133 113 145 135 117 137 139 119 139 141 123 141 143 143 147 129 129 149 131 131 151 133 113 153 145 145 155 135 137 157 139 139 159 141 143 141 161 143 163 147 129 147 149 149 151 131 153 165 145 155 167 135 165 155 145 157 159 139 141 159 161 143 161 163 163 169 147 147 171 149 171 151 149 153 173 165 155 175 167 173 155 165 157 177 159 159 177 161 161 179 163 181 171 147 171 183 151 175 185 167 155 173 187 189 177 157 177 179 161 181 191 171 171 193 183 167 185 195 187 197 155 189 199 177 177 201 179 191 193 171 193 203 183 185 205 195 199 201 177 207 199 189 191 209 193 193 211 203 185 213 205 195 205 215 217 201 199 219 199 207 191 221 209 193 209 211 223 213 185 213 225 205 205 227 215 219 217 199 217 229 201 231 219 207 209 233 211 235 223 185 205 225 227 215 227 237 239 231 207 233 241 211 243 223 235 225 245 227 237 227 247 249 231 239 251 243 235 227 245 247 237 247 249 249 247 231 253 243 251 245 255 247 247 255 231</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1502\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1505\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1508\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1506\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1507\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1506\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1509\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1509\">-0.5360015034675598 -0.8629845380783081 0.4011168479919434 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5360015034675598 -0.8629845380783081 0.4011168479919434</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1507\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1510\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1510\">0.4545401320225986 0.6272147484516137 0.6324515220201922 0.6550020983156387 0.4876283129803074 0.5772268874386309 0.345541571839725 0.9120028016585794 0.2210246861720067 -0.345541571839725 -0.9120028016585794 -0.2210246861720067 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.4545401320225986 -0.6272147484516137 -0.6324515220201922</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1508\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1511\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1514\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1512\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1513\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1512\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"108\" source=\"#ID1515\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"324\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1515\">-0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5942209959030151 -0.7019175291061401 0.2899888455867767 -0.5942209959030151 -0.7019175291061401 0.2899888455867767 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.6056320667266846 -0.6565739512443543 0.2298039048910141 -0.6056320667266846 -0.6565739512443543 0.2298039048910141 -0.6020826697349548 -0.6751006841659546 0.2901735305786133 -0.6020826697349548 -0.6751006841659546 0.2901735305786133 -0.6089040040969849 -0.6353139281272888 0.1513132899999619 -0.6089040040969849 -0.6353139281272888 0.1513132899999619 -0.6128094792366028 -0.6618664264678955 0.2912401556968689 -0.6128094792366028 -0.6618664264678955 0.2912401556968689 -0.6167487502098084 -0.6420672535896301 0.2305959314107895 -0.6167487502098084 -0.6420672535896301 0.2305959314107895 -0.6211212873458862 -0.623186469078064 0.1507736295461655 -0.6211212873458862 -0.623186469078064 0.1507736295461655 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.6087551116943359 -0.6622411012649536 0.3692092895507813 -0.6087551116943359 -0.6622411012649536 0.3692092895507813 -0.6310858130455017 -0.5694386959075928 0.02023929730057716 -0.6310858130455017 -0.5694386959075928 0.02023929730057716 -0.6167565584182739 -0.5806991457939148 0.01851669326424599 -0.6167565584182739 -0.5806991457939148 0.01851669326424599 -0.663953423500061 -0.6420672535896301 0.2324964851140976 -0.663953423500061 -0.6420672535896301 0.2324964851140976 -0.652129054069519 -0.6622440814971924 0.3726666569709778 -0.652129054069519 -0.6622440814971924 0.3726666569709778 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6851193904876709 -0.5696841478347778 0.01786315068602562 -0.6851193904876709 -0.5696841478347778 0.01786315068602562 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.654255211353302 -0.6612551212310791 0.2933478653430939 -0.654255211353302 -0.6612551212310791 0.2933478653430939 -0.6266710758209229 -0.666684091091156 0.3805446624755859 -0.6266710758209229 -0.666684091091156 0.3805446624755859 -0.6365204453468323 -0.5123711824417114 -0.1182090491056442 -0.6365204453468323 -0.5123711824417114 -0.1182090491056442 -0.6851193904876709 -0.5125510692596436 -0.1188254952430725 -0.6851193904876709 -0.5125510692596436 -0.1188254952430725 -0.6213362812995911 -0.523088812828064 -0.1182090491056442 -0.6213362812995911 -0.523088812828064 -0.1182090491056442 -0.662648618221283 -0.6536641716957092 0.2969664335250855 -0.662648618221283 -0.6536641716957092 0.2969664335250855 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.637385904788971 -0.6666867136955261 0.380647212266922 -0.637385904788971 -0.6666867136955261 0.380647212266922 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.6374267935752869 -0.4625494778156281 -0.2498909682035446 -0.6374267935752869 -0.4625494778156281 -0.2498909682035446 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6226447820663452 -0.4733588397502899 -0.2504602670669556 -0.6226447820663452 -0.4733588397502899 -0.2504602670669556 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1513\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"108\" source=\"#ID1516\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"324\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1516\">0.7476117988063761 0.6572838630161918 0.09515525053304569 0.6550020983156387 0.4876283129803074 0.5772268874386309 0.8216288131614381 0.2706515877970226 0.5016710191010413 -0.8216288131614381 -0.2706515877970226 -0.5016710191010413 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.7476117988063761 -0.6572838630161918 -0.09515525053304569 0.9584177845989502 0.2850008742348596 -0.01448626417700434 -0.9584177845989502 -0.2850008742348596 0.01448626417700434 0.7244552439627415 0.6850948378838646 0.07622114273458253 -0.7244552439627415 -0.6850948378838646 -0.07622114273458253 0.7753776474116275 0.4751149390666444 0.4159991569343728 -0.7753776474116275 -0.4751149390666444 -0.4159991569343728 0.8881477781735072 0.4524796353460257 0.08034739399999649 -0.8881477781735072 -0.4524796353460257 -0.08034739399999649 0.8941930136861405 0.4475389692309519 0.01130156159982143 -0.8941930136861405 -0.4475389692309519 -0.01130156159982143 0.8752548469912496 0.4733750407807403 0.09922209221820005 -0.8752548469912496 -0.4733750407807403 -0.09922209221820005 0.4543224241270784 0.8834901017645209 0.11417694609426 -0.4543224241270784 -0.8834901017645209 -0.11417694609426 0.4390754791618005 0.8722680660772021 0.2153163823325404 -0.4390754791618005 -0.8722680660772021 -0.2153163823325404 0.3813948965532262 0.8843778726692496 0.269097958402078 -0.3813948965532262 -0.8843778726692496 -0.269097958402078 0.7923653450499429 0.6086502283222469 0.04125602413176856 -0.7923653450499429 -0.6086502283222469 -0.04125602413176856 0.383967075534481 0.8794224081425625 0.2813992056887057 -0.383967075534481 -0.8794224081425625 -0.2813992056887057 0.3135360072946354 0.8829453143304613 0.3494320306320262 -0.3135360072946354 -0.8829453143304613 -0.3494320306320262 0.8653510967847383 0.4780680927149463 0.1503940757521522 -0.8653510967847383 -0.4780680927149463 -0.1503940757521522 0.03348087307887111 0.9726744395591567 0.2297465250360863 -0.03348087307887111 -0.9726744395591567 -0.2297465250360863 -0.2331067307112813 0.8320228762697379 0.503387708889411 0.2331067307112813 -0.8320228762697379 -0.503387708889411 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 0.008441628187206814 0.9540781631986869 0.2994388041336138 -0.008441628187206814 -0.9540781631986869 -0.2994388041336138 -0.002610862372902 0.9247620023780555 0.3805370183771865 0.002610862372902 -0.9247620023780555 -0.3805370183771865 0.7968674597543884 0.5870317053962028 0.1428146646679311 -0.7968674597543884 -0.5870317053962028 -0.1428146646679311 0.3552230113875264 0.9270105580432917 0.1202831553337471 -0.3552230113875264 -0.9270105580432917 -0.1202831553337471 0.08976514704597118 0.8138320965427058 0.5741250186263609 -0.08976514704597118 -0.8138320965427058 -0.5741250186263609 0.2820189569398525 0.8935433688248957 0.3493501910055495 -0.2820189569398525 -0.8935433688248957 -0.3493501910055495 0.001902625878580924 0.9285006704963633 0.3713258473397318 -0.001902625878580924 -0.9285006704963633 -0.3713258473397318 0.8445678230404525 0.5026257642637024 0.1845874681094032 -0.8445678230404525 -0.5026257642637024 -0.1845874681094032 0.3849831700521143 0.9206148005691767 0.06524069090375866 -0.3849831700521143 -0.9206148005691767 -0.06524069090375866 0.01296510866664954 0.9520061052465042 0.3058043190189504 -0.01296510866664954 -0.9520061052465042 -0.3058043190189504 -0.09447285823394672 0.7839505576979712 0.6135930264777693 0.09447285823394672 -0.7839505576979712 -0.6135930264777693 -0.2441943401385535 0.4431550853429167 0.8625443145595528 0.2441943401385535 -0.4431550853429167 -0.8625443145595528 0.01238381535827511 0.9254422776884952 0.378686191699542 -0.01238381535827511 -0.9254422776884952 -0.378686191699542 0.01241273853124808 0.9276093124790017 0.3733455334196308 -0.01241273853124808 -0.9276093124790017 -0.3733455334196308 0.8188535649683953 0.5430980693366506 0.1858045376769702 -0.8188535649683953 -0.5430980693366506 -0.1858045376769702 0.01478301714399302 0.9790725865523251 0.2029737240774287 -0.01478301714399302 -0.9790725865523251 -0.2029737240774287 -0.5736763948085086 0.3276465503718861 0.7506950992706128 0.5736763948085086 -0.3276465503718861 -0.7506950992706128 0.2771369959745497 0.9607785545357305 0.009982715383835508 -0.2771369959745497 -0.9607785545357305 -0.009982715383835508 0.2493525773637736 0.8484138635542167 0.4669231288885251 -0.2493525773637736 -0.8484138635542167 -0.4669231288885251 0.008243433979804274 0.9182764917626426 0.3958539256750068 -0.008243433979804274 -0.9182764917626426 -0.3958539256750068 0.01248526471267345 0.9329216223065805 0.3598629805883239 -0.01248526471267345 -0.9329216223065805 -0.3598629805883239 0.7773720159345992 0.4537323794727712 0.4356830001959617 -0.7773720159345992 -0.4537323794727712 -0.4356830001959617 0.0175951555574402 0.9948258762089856 0.1000594149789708 -0.0175951555574402 -0.9948258762089856 -0.1000594149789708 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 -0.3283505887844118 0.3306960167614941 0.8847745675272385 0.3283505887844118 -0.3306960167614941 -0.8847745675272385 0.7904399506188402 0.4467527980245364 0.4190663693532726 -0.7904399506188402 -0.4467527980245364 -0.4190663693532726 0.01701204558444335 0.9995551163423349 -0.02449815705097821 -0.01701204558444335 -0.9995551163423349 0.02449815705097821 0.1362496104767762 0.3488194948181901 0.9272329824158057 -0.1362496104767762 -0.3488194948181901 -0.9272329824158057 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 0.2818142223592027 0.1785573489795022 0.9427078111490802 -0.2818142223592027 -0.1785573489795022 -0.9427078111490802 0.4245302778687223 0.4022424278976751 0.8111566262884677 -0.4245302778687223 -0.4022424278976751 -0.8111566262884677 0 0 1 -0 -0 -1 0.4644031292697052 0.1881536417132338 0.8654062286779275 -0.4644031292697052 -0.1881536417132338 -0.8654062286779275</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 0 2 6 7 3 5 8 0 6 7 5 9 6 2 10 11 3 7 8 6 12 13 7 9 14 6 10 11 7 15 6 14 12 13 15 7 8 12 16 17 13 9 14 10 18 19 11 15 12 14 20 21 15 13 22 16 12 13 17 23 24 8 16 17 9 25 14 18 20 21 19 15 10 26 18 19 27 11 12 20 22 23 21 13 22 28 16 17 29 23 24 16 30 31 17 25 32 20 18 19 21 33 18 26 34 35 27 19 36 26 10 11 27 37 38 22 20 21 23 39 28 30 16 17 31 29 40 28 22 23 29 41 42 24 30 31 25 43 32 18 44 45 19 33 38 20 32 33 21 39 34 26 46 47 27 35 44 18 34 35 19 45 46 26 36 37 27 47 40 22 38 39 23 41 48 30 28 29 31 49 40 50 28 29 51 41 42 30 52 53 31 43 32 44 54 55 45 33 56 38 32 33 39 57 34 46 58 59 47 35 54 44 34 35 45 55 60 46 36 37 47 61 62 40 38 39 41 63 48 52 30 31 53 49 50 48 28 29 49 51 64 50 40 41 51 65 66 42 52 53 43 67 68 32 54 55 33 69 56 62 38 39 63 57 68 56 32 33 57 69 58 46 60 61 47 59 70 34 58 59 35 71 72 54 34 35 55 73 62 64 40 41 65 63 48 74 52 53 75 49 50 76 48 49 77 51 78 50 64 65 51 79 66 52 80 81 53 67 82 68 54 55 69 83 70 58 60 61 59 71 70 84 34 35 85 71 84 86 34 35 87 85 82 54 72 73 55 83 76 74 48 49 75 77 74 80 52 53 81 75 78 76 50 51 77 79 88 66 80 81 67 89 82 72 90 91 73 83 76 92 74 75 93 77 92 80 74 75 81 93 94 95 96 97 98 99 88 80 100 101 81 89 102 92 76 77 93 103 92 100 80 81 101 93 95 104 96 97 105 98 106 88 100 101 89 107</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1514\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1517\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1520\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1518\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1519\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1518\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"178\" source=\"#ID1521\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"534\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1521\">-0.3606338500976563 -1.926416754722595 -0.09349501132965088 -0.3624692857265472 -1.826847672462463 -0.1463934928178787 -0.2926522493362427 -1.851223945617676 -0.1463934928178787 -0.2926522493362427 -1.851223945617676 -0.1463934928178787 -0.3624692857265472 -1.826847672462463 -0.1463934928178787 -0.3606338500976563 -1.926416754722595 -0.09349501132965088 -0.001449317671358585 -1.628891706466675 -0.1275773644447327 -0.001449317671358585 -1.628891706466675 -0.1275773644447327 -0.4921964704990387 -1.894847393035889 -0.09349501132965088 -0.4921964704990387 -1.894847393035889 -0.09349501132965088 -0.235410675406456 -1.933972954750061 -0.09592393785715103 -0.235410675406456 -1.933972954750061 -0.09592393785715103 -0.3976570665836334 -1.780892610549927 -0.1463934928178787 -0.3976570665836334 -1.780892610549927 -0.1463934928178787 -0.1878064125776291 -1.864198327064514 -0.1463934928178787 -0.1878064125776291 -1.864198327064514 -0.1463934928178787 -0.4105052947998047 -1.968539357185364 -0.01854868978261948 -0.4105052947998047 -1.968539357185364 -0.01854868978261948 -0.2646690011024475 -1.9807208776474 -0.01785293966531754 -0.2646690011024475 -1.9807208776474 -0.01785293966531754 -0.4050852954387665 -1.714909911155701 -0.1463934928178787 -0.4050852954387665 -1.714909911155701 -0.1463934928178787 -0.001449264585971832 -1.864198327064514 -0.1463934928178787 -0.001449264585971832 -1.864198327064514 -0.1463934928178787 -0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.5109597444534302 -1.817365527153015 -0.09349501132965088 -0.5109597444534302 -1.817365527153015 -0.09349501132965088 -0.001366172917187214 -1.941106200218201 -0.09592393785715103 -0.001366172917187214 -1.941106200218201 -0.09592393785715103 -0.4193870723247528 -1.601637005805969 -0.1275773644447327 -0.4193870723247528 -1.601637005805969 -0.1275773644447327 0.1849076002836227 -1.864198327064514 -0.1463934928178787 0.1849076002836227 -1.864198327064514 -0.1463934928178787 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.001449317671358585 -1.9807208776474 -0.01785293966531754 -0.001449317671358585 -1.9807208776474 -0.01785293966531754 -0.3988296985626221 -1.515700936317444 -0.1028623208403587 -0.3988296985626221 -1.515700936317444 -0.1028623208403587 -0.4935618042945862 -1.730852842330933 -0.09349501132965088 -0.4935618042945862 -1.730852842330933 -0.09349501132965088 0.2897535860538483 -1.851223945617676 -0.1463934928178787 0.2897535860538483 -1.851223945617676 -0.1463934928178787 0.2325120717287064 -1.933972954750061 -0.09592393785715103 0.2325120717287064 -1.933972954750061 -0.09592393785715103 -0.5515520572662354 -1.828812718391419 -0.01854868978261948 -0.5515520572662354 -1.828812718391419 -0.01854868978261948 -0.001449317671358585 -1.975146889686585 0.06838828325271606 -0.001449317671358585 -1.975146889686585 0.06838828325271606 0.2617702782154083 -1.9807208776474 -0.01785293966531754 0.2617702782154083 -1.9807208776474 -0.01785293966531754 -0.3782610595226288 -1.453732490539551 -0.08835642039775848 -0.3782610595226288 -1.453732490539551 -0.08835642039775848 -0.4942137002944946 -1.606165766716003 -0.07467878609895706 -0.4942137002944946 -1.606165766716003 -0.07467878609895706 0.35957071185112 -1.826847672462463 -0.1463934928178787 0.35957071185112 -1.826847672462463 -0.1463934928178787 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.317712277173996 -1.412886142730713 -0.08004907518625259 -0.317712277173996 -1.412886142730713 -0.08004907518625259 -0.5008955001831055 -1.484931826591492 -0.05118564888834953 -0.5008955001831055 -1.484931826591492 -0.05118564888834953 -0.541976809501648 -1.741774439811707 -0.01074292883276939 -0.541976809501648 -1.741774439811707 -0.01074292883276939 0.3947583734989166 -1.780892610549927 -0.1463934928178787 0.3947583734989166 -1.780892610549927 -0.1463934928178787 0.3577354252338409 -1.926417708396912 -0.09349501132965088 0.3577354252338409 -1.926417708396912 -0.09349501132965088 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.5108418464660645 -1.82867443561554 0.210712805390358 0.1927159428596497 -1.975192189216614 0.06858637928962708 0.1927159428596497 -1.975192189216614 0.06858637928962708 -0.1767936646938324 -1.406760692596436 -0.08004907518625259 -0.1767936646938324 -1.406760692596436 -0.08004907518625259 -0.4652675688266754 -1.396878957748413 -0.0271506030112505 -0.4652675688266754 -1.396878957748413 -0.0271506030112505 -0.5288583636283875 -1.602755665779114 0.02520615234971046 -0.5288583636283875 -1.602755665779114 0.02520615234971046 0.4021864235401154 -1.714909911155701 -0.1463934928178787 0.4021864235401154 -1.714909911155701 -0.1463934928178787 0.4892977476119995 -1.894847393035889 -0.09349501132965088 0.4892977476119995 -1.894847393035889 -0.09349501132965088 0.4076065123081207 -1.968539357185364 -0.01854868978261948 0.4076065123081207 -1.968539357185364 -0.01854868978261948 -0.001449264585971832 -1.40310525894165 -0.08004907518625259 -0.001449264585971832 -1.40310525894165 -0.08004907518625259 -0.3848465085029602 -1.370032668113709 -0.0271506030112505 -0.3848465085029602 -1.370032668113709 -0.0271506030112505 -0.5189878940582275 -1.473042607307434 0.0858701765537262 -0.5189878940582275 -1.473042607307434 0.0858701765537262 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.5151616930961609 -1.741188645362854 0.2367520481348038 0.4164886176586151 -1.601638078689575 -0.1275773644447327 0.4164886176586151 -1.601638078689575 -0.1275773644447327 0.5080612301826477 -1.81736695766449 -0.09349501132965088 0.5080612301826477 -1.81736695766449 -0.09349501132965088 0.351957768201828 -1.969097256660461 0.0834038257598877 0.351957768201828 -1.969097256660461 0.0834038257598877 0.1738950163125992 -1.406760692596436 -0.08004907518625259 0.1738950163125992 -1.406760692596436 -0.08004907518625259 -0.2127160131931305 -1.348718166351318 -0.0271506030112505 -0.2127160131931305 -1.348718166351318 -0.0271506030112505 -0.5000548958778381 -1.364248633384705 0.1308065205812454 -0.5000548958778381 -1.364248633384705 0.1308065205812454 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5150116086006165 -1.602635979652405 0.2695119678974152 0.3959312736988068 -1.515700936317444 -0.1028623208403587 0.3959312736988068 -1.515700936317444 -0.1028623208403587 0.4906633496284485 -1.730852842330933 -0.09349501132965088 0.4906633496284485 -1.730852842330933 -0.09349501132965088 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.314813494682312 -1.412886142730713 -0.08004907518625259 0.314813494682312 -1.412886142730713 -0.08004907518625259 0.2098170965909958 -1.348718166351318 -0.0271506030112505 0.2098170965909958 -1.348718166351318 -0.0271506030112505 -0.001449264585971832 -1.346470355987549 -0.0247164648026228 -0.001449264585971832 -1.346470355987549 -0.0247164648026228 -0.4503773152828217 -1.332709312438965 0.1465340554714203 -0.4503773152828217 -1.332709312438965 0.1465340554714203 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.5091840028762817 -1.473127722740173 0.2953929603099823 0.3753623962402344 -1.453732490539551 -0.08835642039775848 0.3753623962402344 -1.453732490539551 -0.08835642039775848 0.4913150072097778 -1.606165766716003 -0.07467878609895706 0.4913150072097778 -1.606165766716003 -0.07467878609895706 0.5486531853675842 -1.828812718391419 -0.01854868978261948 0.5486531853675842 -1.828812718391419 -0.01854868978261948 0.3819479644298554 -1.370032668113709 -0.0271506030112505 0.3819479644298554 -1.370032668113709 -0.0271506030112505 -0.2346685528755188 -1.304289698600769 0.1577682644128799 -0.2346685528755188 -1.304289698600769 0.1577682644128799 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.4488465189933777 -1.36491858959198 0.3139463365077972 0.4979969263076782 -1.484931826591492 -0.05118564888834953 0.4979969263076782 -1.484931826591492 -0.05118564888834953 0.5390774607658386 -1.741774439811707 -0.01074292883276939 0.5390774607658386 -1.741774439811707 -0.01074292883276939 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.4623689949512482 -1.396880269050598 -0.0271506030112505 0.4623689949512482 -1.396880269050598 -0.0271506030112505 0.4474785029888153 -1.332709312438965 0.1465340554714203 0.4474785029888153 -1.332709312438965 0.1465340554714203 0.2317695468664169 -1.304289698600769 0.1577682644128799 0.2317695468664169 -1.304289698600769 0.1577682644128799 -0.001449317671358585 -1.30136251449585 0.1578548401594162 -0.001449317671358585 -1.30136251449585 0.1578548401594162 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.3898182511329651 -1.332667946815491 0.3197168409824371 0.5259599089622498 -1.60275661945343 0.02520615234971046 0.5259599089622498 -1.60275661945343 0.02520615234971046 0.5079431533813477 -1.828675627708435 0.210712805390358 0.5079431533813477 -1.828675627708435 0.210712805390358 0.4971560835838318 -1.364249706268311 0.1308065205812454 0.4971560835838318 -1.364249706268311 0.1308065205812454 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2033214420080185 -1.304823517799377 0.3252071440219879 0.5160892605781555 -1.473042607307434 0.0858701765537262 0.5160892605781555 -1.473042607307434 0.0858701765537262 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.2004226595163345 -1.304823517799377 0.3252071440219879 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449264585971832 -1.302743792533875 0.3265746533870697 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.5062857866287231 -1.473127722740173 0.2953929603099823</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1519\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"178\" source=\"#ID1522\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"534\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1522\">0.1102844365530712 0.6884343880834366 0.7168650056728645 0.1033700632704769 0.2084592851432369 0.9725530095871527 0.04521304169707321 0.259030171588043 0.9648104223460522 -0.04521304169707321 -0.259030171588043 -0.9648104223460522 -0.1033700632704769 -0.2084592851432369 -0.9725530095871527 -0.1102844365530712 -0.6884343880834366 -0.7168650056728645 -4.307140260861875e-008 -0.1462111153925923 0.98925341027244 4.307140260861875e-008 0.1462111153925923 -0.98925341027244 0.5321740367225489 0.4647669008979348 0.7076598918040757 -0.5321740367225489 -0.4647669008979348 -0.7076598918040757 0.0413459562307197 0.7207422630431816 0.6919690037615563 -0.0413459562307197 -0.7207422630431816 -0.6919690037615563 0.1961331907637079 0.06135705273615555 0.9786557533476109 -0.1961331907637079 -0.06135705273615555 -0.9786557533476109 0.01033695112433616 0.2777725719850512 0.9605912479792135 -0.01033695112433616 -0.2777725719850512 -0.9605912479792135 0.2164019946925166 0.9532943408112349 0.2107132565131422 -0.2164019946925166 -0.9532943408112349 -0.2107132565131422 0.05566140920335683 0.9755575218522317 0.2125778188876468 -0.05566140920335683 -0.9755575218522317 -0.2125778188876468 0.234471846381218 -0.0643979059398732 0.9699875581496608 -0.234471846381218 0.0643979059398732 -0.9699875581496608 5.093929862705434e-006 0.2528021849297338 0.9675179870518195 -5.093929862705434e-006 -0.2528021849297338 -0.9675179870518195 0.7043444308093231 0.6885011446313276 0.1728152094847037 -0.7043444308093231 -0.6885011446313276 -0.1728152094847037 0.716448435581581 0.0321284880729666 0.69689984890718 -0.716448435581581 -0.0321284880729666 -0.69689984890718 -5.784214901150153e-006 0.7419429016926926 0.6704630717603842 5.784214901150153e-006 -0.7419429016926926 -0.6704630717603842 0.3123301514282754 -0.232653174309777 0.9210441775465361 -0.3123301514282754 0.232653174309777 -0.9210441775465361 -0.01033691087861853 0.277772542345011 0.9605912569832584 0.01033691087861853 -0.277772542345011 -0.9605912569832584 0.1493590760120027 0.9875730596760047 -0.04890110648048201 -0.1493590760120027 -0.9875730596760047 0.04890110648048201 0.01854079080984633 0.9975812603195948 -0.06699155271610174 -0.01854079080984633 -0.9975812603195948 0.06699155271610174 2.790039622087009e-018 0.9795646181507258 0.2011297065756883 -2.790039622087009e-018 -0.9795646181507258 -0.2011297065756883 0.2153401244752097 -0.2706544164613817 0.9382829091702301 -0.2153401244752097 0.2706544164613817 -0.9382829091702301 0.7095592943048024 -0.1085354821195478 0.6962367822707647 -0.7095592943048024 0.1085354821195478 -0.6962367822707647 -0.04521192352943625 0.2590288814080347 0.9648108211288216 0.04521192352943625 -0.2590288814080347 -0.9648108211288216 -0.0413438662129717 0.7207413543092698 0.6919700751586035 0.0413438662129717 -0.7207413543092698 -0.6919700751586035 0.9805421601871839 0.1026497737848967 0.1673322922730709 -0.9805421601871839 -0.1026497737848967 -0.1673322922730709 4.377473158451889e-011 0.9979296639472881 -0.06431474025487947 -4.377473158451889e-011 -0.9979296639472881 0.06431474025487947 -0.05565935011423944 0.9755584605081817 0.2125740503348586 0.05565935011423944 -0.9755584605081817 -0.2125740503348586 0.1816563073119213 -0.3539460384193683 0.9174547334343161 -0.1816563073119213 0.3539460384193683 -0.9174547334343161 0.7610440641787706 -0.1404914023157347 0.6333041119822434 -0.7610440641787706 0.1404914023157347 -0.6333041119822434 -0.1033703901796722 0.2084578250215096 0.9725532878055599 0.1033703901796722 -0.2084578250215096 -0.9725532878055599 0.747043425910407 0.6504555146670747 -0.1372360857909948 -0.747043425910407 -0.6504555146670747 0.1372360857909948 0.06541783064119561 -0.5082262244283293 0.8587354727956247 -0.06541783064119561 0.5082262244283293 -0.8587354727956247 0.7656897381547677 -0.274108269361712 0.5818796108749732 -0.7656897381547677 0.274108269361712 -0.5818796108749732 0.9780136521515699 -0.09947584929131725 0.1832862559302234 -0.9780136521515699 0.09947584929131725 -0.1832862559302234 -0.1961330129413249 0.06135674483668833 0.9786558082889019 0.1961330129413249 -0.06135674483668833 -0.9786558082889019 -0.1102849643238392 0.6884360637011642 0.7168633153117381 0.1102849643238392 -0.6884360637011642 -0.7168633153117381 0.9753070585279619 0.1705312787247317 -0.1403396756517649 -0.9753070585279619 -0.1705312787247317 0.1403396756517649 -0.01854023728564532 0.9975813585017789 -0.06699024385040971 0.01854023728564532 -0.9975813585017789 0.06699024385040971 0.02138505679844553 -0.4553018746991844 0.8900802673024132 -0.02138505679844553 0.4553018746991844 -0.8900802673024132 0.5689659860680157 -0.6358120761339294 0.5215560473620385 -0.5689659860680157 0.6358120761339294 -0.5215560473620385 0.990482205730385 -0.08332503075027384 0.1095533631703609 -0.990482205730385 0.08332503075027384 -0.1095533631703609 -0.2344705609306409 -0.06439821856471613 0.9699878481210792 0.2344705609306409 0.06439821856471613 -0.9699878481210792 -0.5321715949501727 0.4647679909086325 0.7076610121766936 0.5321715949501727 -0.4647679909086325 -0.7076610121766936 -0.216402336378506 0.9532941923770181 0.2107135771377177 0.216402336378506 -0.9532941923770181 -0.2107135771377177 -2.812811688057497e-009 -0.469904473165833 0.8827172741590259 2.812811688057497e-009 0.469904473165833 -0.8827172741590259 0.1938866687187758 -0.8326174796938357 0.5188025560860518 -0.1938866687187758 0.8326174796938357 -0.5188025560860518 0.9825476572045379 -0.171768516677661 0.07138401782073113 -0.9825476572045379 0.171768516677661 -0.07138401782073113 0.9958208103188742 0.02618308965014393 -0.08749491157909338 -0.9958208103188742 -0.02618308965014393 0.08749491157909338 -0.3123299092873392 -0.2326510344493272 0.9210448001776137 0.3123299092873392 0.2326510344493272 -0.9210448001776137 -0.7164482581224304 0.03213212483050044 0.6968998636728325 0.7164482581224304 -0.03213212483050044 -0.6968998636728325 -0.149357994953947 0.9875735034865902 -0.04889544513099698 0.149357994953947 -0.9875735034865902 0.04889544513099698 -0.0213850771991602 -0.4553019057041807 0.89008025095231 0.0213850771991602 0.4553019057041807 -0.89008025095231 0.05873867013076143 -0.8544479039721123 0.5162059163056284 -0.05873867013076143 0.8544479039721123 -0.5162059163056284 0.7955663513823786 -0.6002896085858349 0.08201564711684241 -0.7955663513823786 0.6002896085858349 -0.08201564711684241 0.9984411485218635 -0.01772472490393671 -0.05292548597246906 -0.9984411485218635 0.01772472490393671 0.05292548597246906 -0.2153405394920977 -0.2706533764593418 0.9382831139173347 0.2153405394920977 0.2706533764593418 -0.9382831139173347 -0.7095609051348071 -0.1085351406263525 0.6962351938486673 0.7095609051348071 0.1085351406263525 -0.6962351938486673 -0.7043453961272412 0.6885000654906582 0.1728155744535739 0.7043453961272412 -0.6885000654906582 -0.1728155744535739 -0.06541868829408093 -0.5082262645592816 0.8587353837090919 0.06541868829408093 0.5082262645592816 -0.8587353837090919 -0.05873856335209898 -0.8544479846210449 0.5162057949620151 0.05873856335209898 0.8544479846210449 -0.5162057949620151 -4.505566842810803e-009 -0.8699258848861241 0.4931824761739755 4.505566842810803e-009 0.8699258848861241 -0.4931824761739755 0.3623917214846428 -0.9289771709492192 0.0753236752593929 -0.3623917214846428 0.9289771709492192 -0.0753236752593929 0.9687409037377627 -0.2150856712682755 -0.1236091236131779 -0.9687409037377627 0.2150856712682755 0.1236091236131779 -0.1816568763454598 -0.3539484409708389 0.9174536938781831 0.1816568763454598 0.3539484409708389 -0.9174536938781831 -0.7610442542995036 -0.1404904499567133 0.6333040947828087 0.7610442542995036 0.1404904499567133 -0.6333040947828087 -0.9805431581954143 0.1026452389617377 0.1673292258831386 0.9805431581954143 -0.1026452389617377 -0.1673292258831386 -0.1938926420317465 -0.8326148238787625 0.5188045859697908 0.1938926420317465 0.8326148238787625 -0.5188045859697908 0.07586902325831367 -0.9913590887010482 0.1070095722805057 -0.07586902325831367 0.9913590887010482 -0.1070095722805057 0.6730663500074919 -0.7101697307652958 -0.2064961064822766 -0.6730663500074919 0.7101697307652958 0.2064961064822766 -0.7656894567676184 -0.2741104707790182 0.5818789441148515 0.7656894567676184 0.2741104707790182 -0.5818789441148515 -0.9780139960392903 -0.09947648931692157 0.1832840735700717 0.9780139960392903 0.09947648931692157 -0.1832840735700717 -0.747044926563488 0.6504540070975241 -0.1372350623803081 0.747044926563488 -0.6504540070975241 0.1372350623803081 -0.5689687714554724 -0.6358099364793625 0.5215556171517662 0.5689687714554724 0.6358099364793625 -0.5215556171517662 -0.3623985485590152 -0.9289743956436117 0.07532505719151701 0.3623985485590152 0.9289743956436117 -0.07532505719151701 -0.07586897640646192 -0.9913590911749723 0.1070095825791727 0.07586897640646192 0.9913590911749723 -0.1070095825791727 -6.861687268936658e-009 -0.993110212151613 0.1171840711025953 6.861687268936658e-009 0.993110212151613 -0.1171840711025953 0.2765227344053635 -0.9567016942412029 -0.09086828705875856 -0.2765227344053635 0.9567016942412029 0.09086828705875856 -0.9904823390352332 -0.08332329393080694 0.1095534789398025 0.9904823390352332 0.08332329393080694 -0.1095534789398025 -0.9753074974216965 0.1705307485558667 -0.1403372697112316 0.9753074974216965 -0.1705307485558667 0.1403372697112316 -0.7955693304830882 -0.6002854616638265 0.08201710132489212 0.7955693304830882 0.6002854616638265 -0.08201710132489212 0.0714146009854829 -0.997297786611956 -0.01723599677934504 -0.0714146009854829 0.997297786611956 0.01723599677934504 -0.9825473850294997 -0.1717699905701884 0.07138421752186797 0.9825473850294997 0.1717699905701884 -0.07138421752186797 -0.9958208935248408 0.02618264676288238 -0.08749409710304948 0.9958208935248408 -0.02618264676288238 0.08749409710304948 -0.6730654741557118 -0.7101711958038869 -0.2064939227919899 0.6730654741557118 0.7101711958038869 0.2064939227919899 -0.2765217054096677 -0.9567020119458887 -0.09086807346927529 0.2765217054096677 0.9567020119458887 0.09086807346927529 -0.07141472484110054 -0.9972977789648503 -0.0172359260745187 0.07141472484110054 0.9972977789648503 0.0172359260745187 -8.531464836120813e-009 -0.9999664897077552 -0.008186541488936034 8.531464836120813e-009 0.9999664897077552 0.008186541488936034 -0.9984411168865852 -0.0177237495391565 -0.05292640940533804 0.9984411168865852 0.0177237495391565 0.05292640940533804 -0.9687413035679741 -0.2150852523239042 -0.1236067190495125 0.9687413035679741 0.2150852523239042 0.1236067190495125</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"304\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 2 1 6 7 4 3 8 1 0 5 4 9 0 2 10 11 3 5 1 12 6 7 13 4 14 2 6 7 3 15 8 0 16 17 5 9 8 12 1 4 13 9 10 2 14 15 3 11 0 10 18 19 11 5 12 20 6 7 21 13 14 6 22 23 7 15 24 8 16 17 9 25 16 0 18 19 5 17 8 26 12 13 27 9 10 14 22 23 15 11 10 28 18 19 29 11 20 30 6 7 31 21 26 20 12 13 21 27 22 6 32 33 7 23 24 16 34 35 17 25 8 24 26 27 25 9 16 18 36 37 19 17 10 22 28 29 23 11 18 28 38 39 29 19 30 40 6 7 41 31 42 30 20 21 31 43 26 42 20 21 43 27 32 6 44 45 7 33 22 32 46 47 33 23 16 36 34 35 37 17 24 48 26 27 49 25 18 50 36 37 51 19 28 22 46 47 23 29 18 38 50 51 39 19 38 28 52 53 29 39 40 54 6 7 55 41 30 56 40 41 57 31 42 56 30 31 57 43 26 48 42 43 49 27 44 6 58 59 7 45 46 32 44 45 33 47 24 60 48 49 61 25 28 46 52 53 47 29 38 52 50 51 53 39 54 62 6 7 63 55 40 64 54 55 65 41 56 64 40 41 65 57 42 66 56 57 67 43 48 66 42 43 67 49 58 6 68 69 7 59 70 44 58 59 45 71 46 44 70 71 45 47 48 60 72 73 61 49 46 70 52 53 71 47 50 52 74 75 53 51 62 76 6 7 77 63 54 78 62 63 79 55 64 78 54 55 79 65 56 80 64 65 81 57 56 66 80 81 67 57 48 72 66 67 73 49 68 6 82 83 7 69 58 68 84 85 69 59 70 58 84 85 59 71 70 86 52 53 87 71 52 86 74 75 87 53 6 76 88 89 77 7 76 62 90 91 63 77 78 90 62 63 91 79 64 92 78 79 93 65 64 80 92 93 81 65 66 94 80 81 95 67 66 72 94 95 73 67 82 6 96 97 7 83 68 82 98 99 83 69 84 68 98 99 69 85 70 84 86 87 85 71 74 86 100 101 87 75 6 88 102 103 89 7 76 104 88 89 105 77 90 104 76 77 105 91 90 78 106 107 79 91 78 92 106 107 93 79 80 108 92 93 109 81 80 94 108 109 95 81 6 110 96 97 111 7 82 96 112 113 97 83 82 112 98 99 113 83 114 84 98 99 85 115 86 84 114 115 85 87 86 114 100 101 115 87 6 102 116 117 103 7 102 88 118 119 89 103 88 104 120 121 105 89 104 90 122 123 91 105 90 106 122 123 107 91 92 124 106 107 125 93 108 124 92 93 125 109 6 126 110 111 127 7 96 110 128 129 111 97 112 96 128 129 97 113 130 98 112 113 99 131 130 114 98 99 115 131 6 116 126 127 117 7 116 102 132 133 103 117 102 118 132 133 119 103 88 120 118 119 121 89 120 104 134 135 105 121 104 122 134 135 123 105 122 106 136 137 107 123 124 136 106 107 137 125 110 126 138 139 127 111 128 110 138 139 111 129 140 112 128 129 113 141 140 130 112 113 131 141 142 114 130 131 115 143 126 116 144 145 117 127 116 132 144 145 133 117 132 118 146 147 119 133 118 120 148 149 121 119 120 134 150 151 135 121 134 122 152 153 123 135 122 136 152 153 137 123 126 144 138 139 145 127 154 128 138 139 129 155 140 128 154 155 129 141 156 130 140 141 131 157 142 130 156 157 131 143 144 132 158 159 133 145 158 132 146 147 133 159 146 118 148 149 119 147 148 120 150 151 121 149 150 134 160 161 135 151 134 152 160 161 153 135 162 138 144 145 139 163 154 138 162 163 139 155 164 140 154 155 141 165 156 140 164 165 141 157 162 144 158 159 145 163 158 146 166 167 147 159 146 148 168 169 149 147 148 150 170 171 151 149 150 160 172 173 161 151 174 154 162 163 155 175 164 154 174 175 155 165 176 162 158 159 163 177 166 176 158 159 177 167 166 146 168 169 147 167 168 148 170 171 149 169 170 150 172 173 151 171 176 174 162 163 175 177</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1520\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1523\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1526\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1524\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1525\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1524\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1527\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1527\">-0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.5167703032493591 -1.931200861930847 -0.01854868978261948</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1525\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1528\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1528\">0.7043444308093231 0.6885011446313276 0.1728152094847037 0.1493590760120027 0.9875730596760047 -0.04890110648048201 0.747043425910407 0.6504555146670747 -0.1372360857909948 -0.747043425910407 -0.6504555146670747 0.1372360857909948 -0.1493590760120027 -0.9875730596760047 0.04890110648048201 -0.7043444308093231 -0.6885011446313276 -0.1728152094847037</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1526\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1526\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1529\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1532\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1530\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1531\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1530\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"202\" source=\"#ID1534\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"606\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1534\">-0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.2516766786575317 1.928897380828857 -0.1850217580795288 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.2508114874362946 1.913545846939087 -0.1969181150197983 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.001449317671358585 1.913302659988403 -0.1713338941335678 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.2487779557704926 1.928897380828857 -0.1850217580795288 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.2549293041229248 1.913302659988403 -0.1713338941335678 -0.2549293041229248 1.913302659988403 -0.1713338941335678 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.4201467633247376 1.927762508392334 -0.1845976114273071 0.25203076004982 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4172481298446655 1.927762508392334 -0.1845976114273071 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.4117976725101471 1.911528825759888 -0.1705324798822403 -0.4117976725101471 1.911528825759888 -0.1705324798822403 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.4610534906387329 1.913545846939087 -0.1884861141443253 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.45652174949646 1.927762508392334 -0.1764486581087112 0.408898800611496 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4536233246326447 1.927762508392334 -0.1764486581087112 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4486589431762695 1.911528825759888 -0.1648858040571213 -0.4486589431762695 1.911528825759888 -0.1648858040571213 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4900375604629517 1.913545846939087 -0.156715527176857 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4769005477428436 1.927762508392334 -0.1519266217947006 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.4740022420883179 1.927762508392334 -0.1519266217947006 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4662005603313446 1.911528825759888 -0.1489890366792679 -0.4662005603313446 1.911528825759888 -0.1489890366792679 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5083516836166382 1.913545846939087 -0.1217374056577683 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4958158433437347 1.927762508392334 -0.1193308234214783 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.492917001247406 1.927762508392334 -0.1193308234214783 0.492917001247406 1.927762508392334 -0.1193308234214783 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.4822799563407898 1.911528825759888 -0.1171957403421402 -0.4822799563407898 1.911528825759888 -0.1171957403421402 0.492917001247406 1.927762508392334 -0.1193308234214783 0.492917001247406 1.927762508392334 -0.1193308234214783 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5181557536125183 1.913545846939087 -0.07925551384687424 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.5063496232032776 1.927762508392334 -0.07853657007217407 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5034509897232056 1.927762508392334 -0.07853657007217407 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.4914830029010773 1.911528825759888 -0.0755583867430687 -0.4914830029010773 1.911528825759888 -0.0755583867430687 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5266676545143127 1.913545846939087 -0.03383167833089829 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.5109774470329285 1.927762508392334 -0.0344013050198555 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5080784559249878 1.927762508392334 -0.0344013050198555 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.4949836730957031 1.911528825759888 -0.03233586996793747 -0.4949836730957031 1.911528825759888 -0.03233586996793747 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5185676217079163 1.913545846939087 0.008449893444776535 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.502662718296051 1.927762508392334 0.00562204048037529 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4997647404670715 1.927762508392334 0.00562204048037529 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4959137439727783 1.913545846939087 0.03620735183358192 0.4959137439727783 1.913545846939087 0.03620735183358192 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4801041185855866 1.927762508392334 0.02575856074690819 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4772054851055145 1.927762508392334 0.02575856074690819 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4692228436470032 1.911528825759888 0.009228713810443878 -0.4692228436470032 1.911528825759888 0.009228713810443878 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 -0.3920661807060242 1.913546323776245 0.05386548116803169 -0.3920661807060242 1.913546323776245 0.05386548116803169 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4434280395507813 1.923323154449463 0.0383446104824543 0.4663237631320953 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 0.440529465675354 1.923323154449463 0.0383446104824543 0.440529465675354 1.923323154449463 0.0383446104824543 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.4382359385490418 1.911528825759888 0.01968160644173622 -0.4382359385490418 1.911528825759888 0.01968160644173622 0.440529465675354 1.923323154449463 0.0383446104824543 0.440529465675354 1.923323154449463 0.0383446104824543 0.3891672492027283 1.913545846939087 0.05386548116803169 0.3891672492027283 1.913545846939087 0.05386548116803169 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.001449317671358585 1.913545846939087 0.05373930558562279 -0.001449317671358585 1.913545846939087 0.05373930558562279 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.3894325792789459 1.927762508392334 0.03898162022233009 0.4353374838829041 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 0.3865337669849396 1.927762508392334 0.03898162022233009 0.3865337669849396 1.927762508392334 0.03898162022233009 0.391455739736557 1.843269467353821 0.09250524640083313 0.391455739736557 1.843269467353821 0.09250524640083313 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.3876460790634155 1.911528825759888 0.01913142576813698 -0.3876460790634155 1.911528825759888 0.01913142576813698 0.3865337669849396 1.927762508392334 0.03898162022233009 0.3865337669849396 1.927762508392334 0.03898162022233009 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.001449317671358585 1.928503632545471 0.03217223659157753 0.3847475349903107 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.911528825759888 0.01366442814469338</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1531\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"202\" source=\"#ID1535\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"606\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1535\">6.128600361442149e-007 0.6840769881677191 -0.7294098122859376 -0.0003142089705117116 0.844635117266066 -0.5353423390258441 9.386065420688752e-007 0.8779194969412163 -0.4788082673571967 -9.386065420688752e-007 -0.8779194969412163 0.4788082673571967 0.0003142089705117116 -0.844635117266066 0.5353423390258441 -6.128600361442149e-007 -0.6840769881677191 0.7294098122859376 -0.001925969402956692 0.6114911657791373 -0.791248914574883 0.001925969402956692 -0.6114911657791373 0.791248914574883 0.0003145381297959222 0.8446308682000966 -0.5353490427275611 -0.0003145381297959222 -0.8446308682000966 0.5353490427275611 -0.1006180874477454 0.6177155415554498 -0.779938145111018 0.1006180874477454 -0.6177155415554498 0.779938145111018 4.969367531929439e-010 0.894881490157497 0.4463038410920274 -0.001291978520968337 0.6585055303928173 0.7525747784995027 1.001052099419736e-009 0.6063749440270834 0.7951788649455865 -1.001052099419736e-009 -0.6063749440270834 -0.7951788649455865 0.001291978520968337 -0.6585055303928173 -0.7525747784995027 -4.969367531929439e-010 -0.894881490157497 -0.4463038410920274 0.001925917791914164 0.6114792511770825 -0.7912581223725752 -0.001925917791914164 -0.6114792511770825 0.7912581223725752 -0.06164021264500252 0.6013047843270357 -0.7966385884016014 0.06164021264500252 -0.6013047843270357 0.7966385884016014 -0.002644288432719418 0.9089634573760564 0.4168674140463013 0.002644288432719418 -0.9089634573760564 -0.4168674140463013 0.001291971215169704 0.6585055365302968 0.7525747731417293 -0.001291971215169704 -0.6585055365302968 -0.7525747731417293 0.1006180685619479 0.6177085888725438 -0.7799436540622367 -0.1006180685619479 -0.6177085888725438 0.7799436540622367 -0.457138707571557 0.3553778220514752 -0.8153102511521345 0.457138707571557 -0.3553778220514752 0.8153102511521345 0.09331129554943694 0.6791844739812039 0.7280119864574765 -0.09331129554943694 -0.6791844739812039 -0.7280119864574765 0.002644295945974327 0.9089634594849646 0.4168674094002494 -0.002644295945974327 -0.9089634594849646 -0.4168674094002494 0.06164146348256043 0.6012926394439115 -0.7966476584603147 -0.06164146348256043 -0.6012926394439115 0.7966476584603147 -0.3534342557912457 0.7119731748590228 -0.6067770802481349 0.3534342557912457 -0.7119731748590228 0.6067770802481349 0.02924273660338733 0.9041888065487982 0.4261308067575084 -0.02924273660338733 -0.9041888065487982 -0.4261308067575084 -0.09331117542665858 0.6791852066164548 0.7280113183556001 0.09331117542665858 -0.6791852066164548 -0.7280113183556001 0.4571384098397874 0.3553681588594452 -0.8153146300159212 -0.4571384098397874 -0.3553681588594452 0.8153146300159212 -0.7577190848040959 0.3973032107154196 -0.5176987031844511 0.7577190848040959 -0.3973032107154196 0.5176987031844511 0.3817826116955557 0.6639727354523177 0.6429480880933445 -0.3817826116955557 -0.6639727354523177 -0.6429480880933445 -0.02924227528812681 0.9041889475495584 0.4261305392308737 0.02924227528812681 -0.9041889475495584 -0.4261305392308737 0.3534405366926419 0.7119593419342024 -0.606789652560947 -0.3534405366926419 -0.7119593419342024 0.606789652560947 -0.5510939953671437 0.7400984093180693 -0.385421526118018 0.5510939953671437 -0.7400984093180693 0.385421526118018 0.2241640399453825 0.8706733606552441 0.4378108978093943 -0.2241640399453825 -0.8706733606552441 -0.4378108978093943 -0.3817811736126304 0.6639780421091951 0.642943461800338 0.3817811736126304 -0.6639780421091951 -0.642943461800338 0.7577242285038515 0.3972933108754175 -0.5176987721367438 -0.7577242285038515 -0.3972933108754175 0.5176987721367438 -0.8609538082186087 0.3950426369975656 -0.3204681810537273 0.8609538082186087 -0.3950426369975656 0.3204681810537273 0.6673193653866828 0.5618732751990277 0.4888591690835232 -0.6673193653866828 -0.5618732751990277 -0.4888591690835232 -0.2241599652446266 0.8706753570527359 0.4378090138435005 0.2241599652446266 -0.8706753570527359 -0.4378090138435005 0.5511053480631766 0.7400875112290761 -0.38542621999407 -0.5511053480631766 -0.7400875112290761 0.38542621999407 -0.6339896614048989 0.7262465481499139 -0.2657499962973408 0.6339896614048989 -0.7262465481499139 0.2657499962973408 0.3998168551749346 0.8534018871285293 0.3344423737559136 -0.3998168551749346 -0.8534018871285293 -0.3344423737559136 -0.66731407538091 0.5618897450471379 0.4888474600623219 0.66731407538091 -0.5618897450471379 -0.4888474600623219 0.8609593490701201 0.3950356538503604 -0.3204619032518112 -0.8609593490701201 -0.3950356538503604 0.3204619032518112 -0.8988689238162904 0.3942461495617065 -0.1913233685494596 0.8988689238162904 -0.3942461495617065 0.1913233685494596 0.7283537775783645 0.6275371629439781 0.2751324841082005 -0.7283537775783645 -0.6275371629439781 -0.2751324841082005 -0.3998115996034019 0.8534065930400281 0.3344366483781063 0.3998115996034019 -0.8534065930400281 -0.3344366483781063 0.6340044397489889 0.7262338056222191 -0.2657495624644367 -0.6340044397489889 -0.7262338056222191 0.2657495624644367 -0.6726026519052687 0.725781149555615 -0.1443862721997141 0.6726026519052687 -0.725781149555615 0.1443862721997141 0.4201432233616178 0.8931283013615952 0.1606284818152159 -0.4201432233616178 -0.8931283013615952 -0.1606284818152159 -0.728355216334616 0.6275344039178031 0.2751349682204766 0.728355216334616 -0.6275344039178031 -0.2751349682204766 0.8988743871289552 0.3942317592744247 -0.1913273533578971 -0.8988743871289552 -0.3942317592744247 0.1913273533578971 -0.904888817089381 0.4255285472945364 0.01008385561096054 0.904888817089381 -0.4255285472945364 -0.01008385561096054 0.7259477785303447 0.6767357693169247 0.1225908698634929 -0.7259477785303447 -0.6767357693169247 -0.1225908698634929 -0.4201461494678589 0.8931264266291222 0.1606312520776282 0.4201461494678589 -0.8931264266291222 -0.1606312520776282 0.6726225954035205 0.7257611192617377 -0.1443940508489927 -0.6726225954035205 -0.7257611192617377 0.1443940508489927 -0.6045394279521578 0.7960919868723888 0.02774217887711796 0.6045394279521578 -0.7960919868723888 -0.02774217887711796 0.4055797586912695 0.9118155828195894 0.06401095427584386 -0.4055797586912695 -0.9118155828195894 -0.06401095427584386 -0.7259411183171096 0.6767440188828733 0.122584769212008 0.7259411183171096 -0.6767440188828733 -0.122584769212008 0.904891680280896 0.4255225800980013 0.01007872934236248 -0.904891680280896 -0.4255225800980013 -0.01007872934236248 -0.8244249006574319 0.4220939913763589 0.3770414375369871 0.8244249006574319 -0.4220939913763589 -0.3770414375369871 0.7178561239409382 0.6953700531279656 -0.03380938528430715 -0.7178561239409382 -0.6953700531279656 0.03380938528430715 -0.4055734414635172 0.9118187127533433 0.06400639540135789 0.4055734414635172 -0.9118187127533433 -0.06400639540135789 0.6045479253195766 0.7960855311013991 0.02774226311603459 -0.6045479253195766 -0.7960855311013991 -0.02774226311603459 -0.520461789693991 0.7996555798249611 0.2994502949127498 0.520461789693991 -0.7996555798249611 -0.2994502949127498 0.4169491499270961 0.9082925536082132 -0.0340300372456919 -0.4169491499270961 -0.9082925536082132 0.0340300372456919 -0.7178499013754158 0.6953767735306654 -0.03380328281968029 0.7178499013754158 -0.6953767735306654 0.03380328281968029 0.8244304220700673 0.42208399743857 0.3770405525558863 -0.8244304220700673 -0.42208399743857 -0.3770405525558863 -0.5374118567073094 0.4163750394213115 0.7333623407411262 0.5374118567073094 -0.4163750394213115 -0.7333623407411262 0.6153207668073935 0.7069640641929612 -0.3486863431156029 -0.6153207668073935 -0.7069640641929612 0.3486863431156029 -0.4169425741389288 0.9082957376618707 -0.03402561998968118 0.4169425741389288 -0.9082957376618707 0.03402561998968118 0.5204810111627883 0.7996418884984935 0.2994534474296871 -0.5204810111627883 -0.7996418884984935 -0.2994534474296871 -0.2699000820828266 0.8084765996171364 0.5229909497909081 0.2699000820828266 -0.8084765996171364 -0.5229909497909081 0.3563384704058399 0.8984507696935942 -0.2565328613371287 -0.3563384704058399 -0.8984507696935942 0.2565328613371287 -0.6153069154673361 0.7069814264632994 -0.3486755833349832 0.6153069154673361 -0.7069814264632994 0.3486755833349832 0.5374137069235633 0.4163662298492717 0.7333659865659014 -0.5374137069235633 -0.4163662298492717 -0.7333659865659014 -0.1102595056986163 0.6041944645946928 0.7891716482212404 0.1102595056986163 -0.6041944645946928 -0.7891716482212404 0.3497908904793823 0.7485760896646085 -0.563276282937676 -0.3497908904793823 -0.7485760896646085 0.563276282937676 -0.3563267758811212 0.8984562983297307 -0.2565297424896443 0.3563267758811212 -0.8984562983297307 0.2565297424896443 0.2699024119542983 0.8084670402013563 0.5230045247694426 -0.2699024119542983 -0.8084670402013563 -0.5230045247694426 -0.03236051657316586 0.8431449359226038 0.5367116674669802 0.03236051657316586 -0.8431449359226038 -0.5367116674669802 0.15167984215981 0.9399767739299777 -0.3056744836497922 -0.15167984215981 -0.9399767739299777 0.3056744836497922 -0.3497863484367549 0.7485814332558655 -0.5632720019953729 0.3497863484367549 -0.7485814332558655 0.5632720019953729 0.1102607918778887 0.6041870483927864 0.7891771463549068 -0.1102607918778887 -0.6041870483927864 -0.7891771463549068 -0.01255478291219509 0.6182595626877923 0.7858737115918354 0.01255478291219509 -0.6182595626877923 -0.7858737115918354 0.0871192663472851 0.8369719858849694 -0.5402667195699559 -0.0871192663472851 -0.8369719858849694 0.5402667195699559 -0.1516789233016182 0.9399777592119516 -0.3056719097544625 0.1516789233016182 -0.9399777592119516 0.3056719097544625 0.03236331531330518 0.8431339299655836 0.5367287880882876 -0.03236331531330518 -0.8431339299655836 -0.5367287880882876 0.09431746603273164 0.5380671052349956 0.8376085039355778 -0.09431746603273164 -0.5380671052349956 -0.8376085039355778 -0.03019305672699172 0.7278128100128949 0.6851108617637107 0.03019305672699172 -0.7278128100128949 -0.6851108617637107 0.03067908811827804 0.9512473880934572 -0.3068993323511907 -0.03067908811827804 -0.9512473880934572 0.3068993323511907 -0.08712026188797994 0.8369724020630891 -0.5402659142989795 0.08712026188797994 -0.8369724020630891 0.5402659142989795 0.01255462315995493 0.6182537225919658 0.7858783086066747 -0.01255462315995493 -0.6182537225919658 -0.7858783086066747 2.380743700391382e-007 0.4408306292320842 0.8975903053903757 -2.380743700391382e-007 -0.4408306292320842 -0.8975903053903757 0.2553438641265905 0.6261687724546333 0.7366900158516871 -0.2553438641265905 -0.6261687724546333 -0.7366900158516871 1.437911629610173e-007 0.6476662694700774 0.7619241454309559 -1.437911629610173e-007 -0.6476662694700774 -0.7619241454309559 -0.01722143407120868 0.7827482930805981 -0.6221000979649022 0.01722143407120868 -0.7827482930805981 0.6221000979649022 -0.03068035818936333 0.9512472595490038 -0.3068996038151283 0.03068035818936333 -0.9512472595490038 0.3068996038151283 0.03019317537246524 0.7278014255281793 0.6851229503965529 -0.03019317537246524 -0.7278014255281793 -0.6851229503965529 -0.09431575631846477 0.5380684094560438 0.8376078586400196 0.09431575631846477 -0.5380684094560438 -0.8376078586400196 -1.903637264665041e-009 0.8217151404454917 0.5698984365329017 1.903637264665041e-009 -0.8217151404454917 -0.5698984365329017 -0.006609870843098183 0.9419276296900147 -0.3357508749564002 0.006609870843098183 -0.9419276296900147 0.3357508749564002 0.01722136611832838 0.7827483236145768 -0.6221000614270894 -0.01722136611832838 -0.7827483236145768 0.6221000614270894 -0.2553377958902426 0.6261678416535161 0.7366929102881947 0.2553377958902426 -0.6261678416535161 -0.7366929102881947 -9.862734229464834e-010 0.7385473108944132 -0.6742016534914694 9.862734229464834e-010 -0.7385473108944132 0.6742016534914694 0.006609858237680783 0.9419276456734308 -0.3357508303641045 -0.006609858237680783 -0.9419276456734308 0.3357508303641045 -5.914188849881876e-010 0.9347435500271971 -0.3553230863348913 5.914188849881876e-010 -0.9347435500271971 0.3553230863348913</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1533\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"312\" source=\"#ID1536\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"624\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1536\">-0.05380870815511803 10.02615970184128 2.469327384643551 9.869515624641515 -0.0533492419844185 9.885573640941855 2.695509980669273 11.09340950000694 2.714420445137348 10.94051719289138 0.1933439381652574 11.11649030137573 0.08283134771281404 10.02610094892601 0.08237163622220682 9.885514888522888 -2.440304755920862 9.869456872279237 3.917851124051062 10.98062779597724 2.192658991959701 10.96319908686411 2.169567624052186 11.11573559076327 -0.1655737740176625 -12.78515855351413 2.335121354259058 -12.96272995353259 -0.1670414371732786 -12.93943206437335 -2.666529615291092 11.09373316119279 -0.1643644549579891 11.11681441138162 -2.685440586750941 10.94083788099445 4.002737599078533 11.57203397921939 4.065199224210197 11.4226589805636 2.318009211600533 11.56625389074455 2.549293041229248 -12.20109509134276 2.516766786575317 -12.36432661201445 0.01449317671358563 -12.20109509134276 0.1945589067152743 -12.78498790905135 0.1960265703843204 -12.93926141990754 -2.30613534556603 -12.96255930906632 -2.140578639992576 11.11556974847594 -2.163670740596903 10.96303029430335 -3.888861079008852 10.98045934051256 0.6315873549859696 11.27431109715125 0.2651173038680699 11.18407150777661 0.1737275907395747 11.32392373563129 2.475224153187638 -12.20323771530714 4.126826737481165 -12.36133839440843 2.44209458583373 -12.36639413197201 0.01449317671358574 -12.20109509134276 -2.487779557704926 -12.36432661201445 -2.5203076004982 -12.20109509134276 -3.973750784243558 11.57198732316051 -2.289021503369634 11.56620711579573 -4.036210388611464 11.42260925202844 0.08228287036970761 10.1013326287451 0.1868423606318254 9.966703678166272 -0.2720222552018592 10.01019335227733 4.014792876585607 -12.2685279360334 4.09740678853818 -12.43776498794701 2.446036325079714 -12.2781708593734 -2.446238966445645 -12.20317121662351 -2.413107611266176 -12.36632762923594 -4.097840656967279 -12.36127189179793 -0.1452202178875478 11.32042239558104 -0.236609804368596 11.18056739333164 -0.6030812903635374 11.27080877288327 -8.022286860006334 5.593261486731232 -8.167981207212625 5.701679535064567 -7.792875250136092 5.879410405840596 8.739995187286191 -10.84044096350622 8.385363300433259 -10.93079034335959 8.267845782222405 -10.77484689111856 -3.985804373263655 -12.26843523952335 -2.417051099865585 -12.2780781633298 -4.068420667613448 -12.43767229962311 -0.0539118208473538 10.09787861455891 0.3003947571417248 10.00673767966941 -0.1584712148151629 9.963247214195681 -7.061976761004196 5.184606121782157 -7.44117463541251 5.012332592839834 -7.275030817548849 5.226414065630704 8.058384143284908 -11.8030467490348 8.16659818377264 -11.94851691915868 7.69657085052069 -11.87408655367555 -8.23955135980237 -10.77842060139959 -8.357070947486893 -10.93436387847232 -8.711705015920382 -10.84401460010668 8.191255306804186 5.695031534054818 8.045558458843509 5.586612580813333 7.816147521064625 5.872763888256488 -7.730668185584237 3.167776477787669 -7.944421259824952 3.207314744907487 -7.585321762754447 3.456563622575323 16.46611971504321 -5.474538374457483 16.2980198494438 -5.370032995525104 16.61541297319499 -5.252907565510547 -8.029911154756903 -11.80643646820372 -7.668097493578577 -11.87747606863542 -8.138129135209356 -11.95190622016309 7.465085244636752 5.006713775956396 7.085885088693217 5.178988191552556 7.298942258767398 5.22079635057736 -8.441671786793989 4.045887376002375 -8.795823948881619 3.792295743166499 -8.651318680868776 4.066102843541724 17.53888569422124 -5.401548196061816 17.73175217697868 -5.431685628113611 17.42459909925773 -5.564637171484631 -16.27663497001927 -5.377734917012615 -16.44473700847936 -5.482240075722087 -16.59403301421012 -5.260609733815044 7.967753567962989 3.203040242451181 7.753997314570496 3.163502001417317 7.608657415129363 3.452288955673404 -8.893471066252115 1.163615445163711 -9.10327908769538 1.182768515764871 -8.820198992148935 1.501712627489478 18.21313751638797 -3.692606818175909 18.01918197613998 -3.667159552472572 18.32798399354051 -3.410240891940054 -17.51982134757863 -5.41278623894306 -17.40553230134771 -5.575873952955945 -17.71269103070093 -5.44292343789721 8.818296075081838 3.787063216178194 8.464147260825534 4.040654650115789 8.673797171430994 4.060870101799641 -9.44481667624879 1.794327895487298 -9.725538419038109 1.474096433930082 -9.64934725501584 1.800072789742478 17.32529019022485 -3.678105730668172 17.43287758364442 -3.410915674581981 17.64409043916598 -3.428858858631469 -18.31022646007288 -3.417863523895226 -18.00142150737727 -3.674780213682573 -18.19538021287728 -3.700227284187649 9.125261741698838 1.180443847057856 8.915450708245798 1.16129077824844 8.842181588537358 1.499387928945664 -9.474646054522664 1.143525837893942 -9.679178527573013 1.149228844032068 -9.413183324947861 1.503849442994916 17.80951438488398 -2.260050022788326 17.59819015422691 -2.242937601662701 17.87855371886245 -1.933089236309175 -17.41354326494719 -3.416890403162804 -17.3059550593323 -3.684081144780982 -17.62475477720695 -3.434833633249285 9.747071760034585 1.47141517142829 9.466350995741708 1.791647165612336 9.67088146016896 1.797392069422744 -7.717269545573585 0.3042754695831612 -7.680552920451054 0.6521793938305373 -7.446535059711652 0.6566695755527798 17.14807018289559 -2.117295267826407 17.21167733516982 -1.785595462078189 17.43175062511593 -1.809320861181577 -17.85961717355434 -1.936399726504026 -17.57925413269361 -2.24624838514796 -17.79057702499381 -2.263360822471536 9.700676675036 1.147325899379445 9.496144316272888 1.141622884759032 9.434680060174202 1.501947025782269 -7.365922553757773 -1.934956066044626 -7.599939764880167 -1.939467151009083 -7.430403382971643 -1.600112621366761 17.53937998476847 -1.184786782725471 17.31926709982417 -1.16128979106497 17.57098702004867 -0.8365725056749495 -17.19151097042277 -1.788152872528991 -17.12790601969691 -2.119852171994886 -17.41158728655829 -1.811878235419665 7.703677431307231 0.6512296301189862 7.740391028713226 0.3033258025207887 7.469653833058668 0.6557198105938373 -7.277169507095795 -2.049438454343182 -7.344226170140487 -1.732221820826337 -7.108525561792963 -1.709808851939396 17.01432816492904 -1.044346485594764 17.03902608469128 -0.703769713619851 17.26691184597801 -0.7200445457025309 -17.551056120922 -0.8378084385110383 -17.29933515195096 -1.162525552957664 -17.51945105836678 -1.186022532248465 7.62314572605751 -1.937863479616851 7.3891227774384 -1.933352394983213 7.453602315184695 -1.598508974861046 -6.362828502231192 -6.069120517714572 -6.598201956491736 -6.093568700597403 -6.550735961317874 -5.829143606752477 17.45140341847328 0.8585311205752961 17.22353562204133 0.8749608794588334 17.3938590916468 1.176901778452265 -17.01849989635089 -0.7046791388334163 -16.99380285037305 -1.045255855238144 -17.24638733125057 -0.7209539682606144 7.368170362462248 -1.730417311119357 7.301123392545696 -2.047633569055367 7.132471153464324 -1.708004368769112 -3.609431739334912 -6.566014062281595 -3.813794288459234 -6.390686311648089 -3.584116150451824 -6.299709170919823 16.79275177785766 1.111610850259286 16.73653810964288 1.365447152584783 16.9604724151008 1.414452080066858 -17.37371202841378 1.17921589028315 -17.2033804271112 0.8772758598705845 -17.43124990248817 0.8608461482498537 6.622757713056812 -6.088408624530629 6.387385689375017 -6.063960291505319 6.575288669845557 -5.82398190678425 -1.070664898439768 -9.10248158322648 -1.292130162331143 -9.205290982842362 -1.485995838992753 -8.92873692126939 15.39845217984451 5.505958467381132 15.17795653455731 5.44810323459475 15.2159568444035 5.695629069246537 -16.71527400723095 1.368069988257085 -16.77148802860013 1.114234073532352 -16.93921574627554 1.417074840910039 3.840162049355425 -6.386761718092833 3.6357940925184 -6.562090788560848 3.610479456259792 -6.29578389250567 3.336803069423739 -7.463342982331089 2.97442271292554 -7.349328937631624 3.099283388677669 -7.20872904478977 11.51826065585274 7.035744374802508 11.35088847557238 7.12821780049199 11.51148367367722 7.285011787033255 -15.15416185348659 5.455622738459792 -15.37466508242597 5.513477827337386 -15.19216085011591 5.703147957417179 1.319874456606009 -9.201299470312357 1.098404946621058 -9.098488965808315 1.51373869210039 -8.92474243662488 4.552118182182312 -7.664626745175032 4.434280395507813 -7.808928913568809 3.920661807060242 -7.664626745175032 11.24483992100088 7.480637013323874 11.08608965271641 7.322684619291019 10.88574069705672 7.600904109249646 -11.32383549790549 7.132850771450945 -11.49120822426326 7.04037759881887 -11.48443440188923 7.289644328918891 -2.945349655131783 -7.348738723830701 -3.307728792902329 -7.462753979116228 -3.070209379436171 -7.208137338117762 3.943541049957273 -12.35581500746084 4.55211818218231 -12.98671323878099 3.92066180706024 -12.98671323878099 2.628585590388074 -10.28710414578369 2.08684181598452 -10.28024522552557 2.126269005759161 -10.11998517144959 8.262191974363937 6.995507731040081 7.958045262470991 7.090038433186434 8.031569136812552 7.258817252443395 -11.05889938787842 7.327172846147806 -11.2176536103565 7.485124686592735 -10.85855476705862 7.60539136100915 -3.891672492027283 -7.664909854313903 -4.40529465675354 -7.809214022037327 -4.523130357265472 -7.664909854313903 4.328884036974373 -12.29754953042057 4.320734485693432 -12.92867187812786 0.4016776935553612 -12.41337861786099 11.24639974346111 -8.218459380038901 11.44064970086064 -8.985911243392785 10.61176139123148 -8.53641050438708 3.900297128442823 -10.25243517339981 0.02042066034977062 -10.09188964063419 3.92658910476724 -10.09051700491245 2.992779383146418 8.625072438692831 2.94976641275648 8.449896296879995 2.451018764299815 8.631051589117122 -7.929664764260844 7.092175497915052 -8.233805105814426 6.997644807516901 -8.003187874585274 7.260954296196313 -2.057979506169385 -10.2789983789781 -2.599725654599161 -10.2858574109507 -2.097405948464584 -10.11873571467056 -3.914557397365568 -12.35579316755734 -3.891672492027281 -12.986688111843 -4.523130357265471 -12.986688111843 0.02687899325162695 -12.79901199847697 3.933486458816073 -13.36981634318971 0.02731870266585258 -13.37209924485815 4.091938431373729 -8.371881898406425 0.2123861419828262 -8.43707022536165 0.2108512462680907 -8.230602030692712 4.212015702232384 9.663859545268688 3.706137154243328 9.658266304365233 3.72255627737955 9.860067139782384 -2.920868219725448 8.44896669889777 -2.963880040260758 8.624142796778127 -2.422117045149522 8.630121945702905 0.008588849727731681 -10.09208049180067 -3.871285678251858 -10.2526285762621 -3.897576633068511 -10.09070783426238 -0.3726934217549541 -12.41377619472284 -4.291747019996334 -12.92906683723967 -4.299902495320053 -12.29794769570773 -10.58480197896604 -8.542838562289346 -11.41368134563579 -8.992341397305667 -11.21943894774718 -8.224885955343089 0.002129902643298674 -12.79902576207975 0.001690993740716476 -13.37211300884068 -3.904473800800141 -13.36983010717072 -0.1834014049554984 -8.437203570058866 -4.062951924705676 -8.372015243104659 -0.1818665085408016 -8.230735375393149 3.564617618765245 9.675722731788627 -0.29960241337697 9.808336336221796 3.579836285876353 9.877581793384563 -3.677153188720006 9.658136852898412 -4.183032630820126 9.663730093468221 -3.693569632525103 9.859937676277907 0.3285849908930763 9.808099469443674 -3.535635954205661 9.675485879299483 -3.550851938882881 9.877344919145314 3.627972635438376 10.3005003741877 -0.2336695137521053 10.24214598982511 -0.2358732435270384 10.43969715816428 0.2626533657364339 10.24194590423555 -3.598989696227069 10.30030028859921 0.264857094990649 10.43949707257832</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"104\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 1 4 0 5 0 6 2 7 8 8 10 9 1 10 6 11 12 12 13 13 14 14 18 15 0 16 8 17 20 18 10 19 6 20 22 21 13 22 12 23 12 24 14 25 24 26 18 27 8 28 26 29 28 30 10 31 20 32 22 33 30 34 13 35 12 36 24 37 32 38 34 39 18 40 26 41 36 42 28 43 20 44 38 45 30 46 22 47 32 48 24 49 40 50 34 51 26 52 42 53 28 54 36 55 44 56 46 57 30 58 38 59 48 60 32 61 40 62 50 63 34 64 42 65 44 66 36 67 52 68 54 69 46 70 38 71 48 72 40 73 56 74 50 75 42 76 58 77 44 78 52 79 60 80 46 81 54 82 62 83 64 84 48 85 56 86 50 87 58 88 66 89 60 90 52 91 68 92 70 93 62 94 54 95 64 96 56 97 72 98 66 99 58 100 74 101 60 102 68 103 76 104 62 105 70 106 78 107 80 108 64 109 72 110 66 111 74 112 82 113 76 114 68 115 84 116 70 117 86 118 78 119 88 120 80 121 72 122 82 123 74 124 90 125 76 126 84 127 92 128 78 129 86 130 94 131 96 132 80 133 88 134 82 135 90 136 98 137 84 138 100 139 92 140 86 141 102 142 94 143 104 144 96 145 88 146 98 147 90 148 106 149 92 150 100 151 108 152 94 153 102 154 110 155 112 156 96 157 104 158 114 159 98 160 106 161 100 162 116 163 108 164 102 165 118 166 110 167 120 168 112 169 104 170 114 171 106 172 122 173 108 174 116 175 124 176 110 177 118 178 126 179 128 180 112 181 120 182 130 183 114 184 122 185 116 186 132 187 124 188 118 189 134 190 126 191 136 192 128 193 120 194 130 195 122 196 138 197 124 198 132 199 140 200 126 201 134 202 142 203 144 204 128 205 136 206 146 207 130 208 138 209 132 210 148 211 140 212 134 213 150 214 142 215 144 216 136 217 152 218 146 219 138 220 154 221 140 222 148 223 156 224 142 225 150 226 158 227 160 228 144 229 152 230 162 231 146 232 154 233 164 234 140 235 156 236 148 237 166 238 156 239 150 240 168 241 158 242 160 243 152 244 170 245 172 246 162 247 154 248 164 249 156 250 174 251 176 252 140 253 164 254 166 255 178 256 156 257 158 258 168 259 180 260 182 261 160 262 170 263 184 264 162 265 172 266 186 267 172 268 154 269 174 270 156 271 178 272 166 273 188 274 178 275 168 276 190 277 180 278 182 279 170 280 192 281 178 282 184 283 172 284 174 285 172 286 186 287 186 288 154 289 194 290 174 291 178 292 172 293 188 294 184 295 178 296 190 297 196 298 180 299 198 300 182 301 192 302 196 303 198 304 192 305 190 306 200 307 196 308 200 309 198 310 196 311</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1532\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1533\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"104\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 5 4 7 9 3 5 7 4 11 15 16 17 9 5 19 7 11 21 17 16 23 25 15 17 27 9 19 21 11 29 16 31 23 33 25 17 27 19 35 21 29 37 23 31 39 41 25 33 43 27 35 45 37 29 39 31 47 41 33 49 43 35 51 53 37 45 39 47 55 57 41 49 59 43 51 61 53 45 63 55 47 57 49 65 67 59 51 69 53 61 55 63 71 73 57 65 75 59 67 77 69 61 79 71 63 73 65 81 83 75 67 85 69 77 79 87 71 73 81 89 91 75 83 93 85 77 95 87 79 89 81 97 99 91 83 93 101 85 95 103 87 89 97 105 107 91 99 109 101 93 111 103 95 105 97 113 107 99 115 109 117 101 111 119 103 105 113 121 123 107 115 125 117 109 127 119 111 121 113 129 123 115 131 125 133 117 127 135 119 121 129 137 139 123 131 141 133 125 143 135 127 137 129 145 139 131 147 141 149 133 143 151 135 153 137 145 155 139 147 157 149 141 159 151 143 153 145 161 155 147 163 157 141 165 157 167 149 159 169 151 171 153 161 155 163 173 175 157 165 165 141 177 157 179 167 181 169 159 171 161 183 173 163 185 155 173 187 179 157 175 179 189 167 181 191 169 193 171 183 173 185 179 187 173 175 195 155 187 173 179 175 179 185 189 181 197 191 193 183 199 193 199 197 197 201 191 197 199 201</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1532\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1537\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1545\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1543\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1544\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1543\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1547\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1547\">-0.2549293041229248 1.913302659988403 -0.1713338941335678 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.2549293041229248 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 -0.3876460790634155 1.911528825759888 0.01913142576813698 -0.3876460790634155 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 -0.4117976725101471 1.911528825759888 -0.1705324798822403 -0.4117976725101471 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 -0.4382359385490418 1.911528825759888 0.01968160644173622 -0.4382359385490418 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 -0.4486589431762695 1.911528825759888 -0.1648858040571213 -0.4486589431762695 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 -0.4662005603313446 1.911528825759888 -0.1489890366792679 -0.4662005603313446 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 -0.4692228436470032 1.911528825759888 0.009228713810443878 -0.4692228436470032 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 -0.4822799563407898 1.911528825759888 -0.1171957403421402 -0.4822799563407898 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 -0.4914830029010773 1.911528825759888 -0.0755583867430687 -0.4914830029010773 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 -0.4949836730957031 1.911528825759888 -0.03233586996793747 -0.4949836730957031 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1544\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1548\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1548\">-0.002644288432719418 0.9089634573760564 0.4168674140463013 4.969367531929439e-010 0.894881490157497 0.4463038410920274 -5.914188849881876e-010 0.9347435500271971 -0.3553230863348913 5.914188849881876e-010 -0.9347435500271971 0.3553230863348913 -4.969367531929439e-010 -0.894881490157497 -0.4463038410920274 0.002644288432719418 -0.9089634573760564 -0.4168674140463013 0.002644295945974327 0.9089634594849646 0.4168674094002494 -0.002644295945974327 -0.9089634594849646 -0.4168674094002494 -0.006609870843098183 0.9419276296900147 -0.3357508749564002 0.006609870843098183 -0.9419276296900147 0.3357508749564002 0.006609858237680783 0.9419276456734308 -0.3357508303641045 -0.006609858237680783 -0.9419276456734308 0.3357508303641045 0.02924273660338733 0.9041888065487982 0.4261308067575084 -0.02924273660338733 -0.9041888065487982 -0.4261308067575084 -0.02924227528812681 0.9041889475495584 0.4261305392308737 0.02924227528812681 -0.9041889475495584 -0.4261305392308737 0.03067908811827804 0.9512473880934572 -0.3068993323511907 -0.03067908811827804 -0.9512473880934572 0.3068993323511907 -0.03068035818936333 0.9512472595490038 -0.3068996038151283 0.03068035818936333 -0.9512472595490038 0.3068996038151283 0.2241640399453825 0.8706733606552441 0.4378108978093943 -0.2241640399453825 -0.8706733606552441 -0.4378108978093943 -0.2241599652446266 0.8706753570527359 0.4378090138435005 0.2241599652446266 -0.8706753570527359 -0.4378090138435005 0.3998168551749346 0.8534018871285293 0.3344423737559136 -0.3998168551749346 -0.8534018871285293 -0.3344423737559136 -0.3998115996034019 0.8534065930400281 0.3344366483781063 0.3998115996034019 -0.8534065930400281 -0.3344366483781063 0.15167984215981 0.9399767739299777 -0.3056744836497922 -0.15167984215981 -0.9399767739299777 0.3056744836497922 -0.1516789233016182 0.9399777592119516 -0.3056719097544625 0.1516789233016182 -0.9399777592119516 0.3056719097544625 0.4201432233616178 0.8931283013615952 0.1606284818152159 -0.4201432233616178 -0.8931283013615952 -0.1606284818152159 -0.4201461494678589 0.8931264266291222 0.1606312520776282 0.4201461494678589 -0.8931264266291222 -0.1606312520776282 0.3563384704058399 0.8984507696935942 -0.2565328613371287 -0.3563384704058399 -0.8984507696935942 0.2565328613371287 -0.3563267758811212 0.8984562983297307 -0.2565297424896443 0.3563267758811212 -0.8984562983297307 0.2565297424896443 0.4055797586912695 0.9118155828195894 0.06401095427584386 -0.4055797586912695 -0.9118155828195894 -0.06401095427584386 -0.4055734414635172 0.9118187127533433 0.06400639540135789 0.4055734414635172 -0.9118187127533433 -0.06400639540135789 0.4169491499270961 0.9082925536082132 -0.0340300372456919 -0.4169491499270961 -0.9082925536082132 0.0340300372456919 -0.4169425741389288 0.9082957376618707 -0.03402561998968118 0.4169425741389288 -0.9082957376618707 0.03402561998968118</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1546\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"38\" source=\"#ID1549\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"76\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1549\">5.098586082458496 -3.793412971426244 0.02898635342717173 -3.793412971426244 0.02898635342717173 -0.09327644780219568 0.02898635342717169 -3.793412971426244 -5.040615200996399 -3.793412971426244 0.02898635342717169 -0.09327644780219568 5.10368117777181 -3.786432228989693 0.03407676994508434 -0.08630211584569986 7.758011929317281 0.02304267326305717 0.02389593761035827 -0.08630218760122092 -5.045710295607492 -3.786432300744443 -7.700041047154103 0.02304260150751324 7.803433022620331 -3.465786126433319 4.665865079960936 -3.481814428052453 7.320431992283355 0.3274959133999949 -4.607896991491319 -3.481812852925806 -7.74545837805893 -3.465784551307054 -7.262463903943627 0.3274974884361274 8.235953450202942 -3.410649597644806 7.752921581268311 0.3826285153627396 8.764718770980835 0.3936321288347244 -7.694950699806213 0.3826285153627396 -8.177976012229919 -3.410649597644806 -8.706749677658081 0.3936321288347244 8.973178863525391 -3.297716081142426 -8.915202021598816 -3.297716081142426 9.324011206626892 -2.979780733585358 -9.26603376865387 -2.979780733585358 9.384456872940064 0.1845742762088776 -9.326475262641907 0.1845742762088776 9.645599126815796 -2.343914806842804 -9.587626457214356 -2.343914806842804 9.744054079055786 -0.0104040652513504 -9.686073064804077 -0.0104040652513504 9.829660058021545 -1.511167734861374 -9.771678447723389 -1.511167734861374 9.899673461914063 -0.6467173993587494 -9.841688871383667 -0.6467173993587494</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"44\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 0 6 2 7 8 8 9 8 3 7 5 6 2 9 6 10 10 11 11 11 7 10 3 9 12 12 0 13 8 14 9 14 5 13 13 12 6 15 14 16 10 17 11 17 15 16 7 15 12 18 8 19 16 20 17 20 9 19 13 18 10 21 14 22 18 23 19 23 15 22 11 21 20 24 12 18 16 20 17 20 13 18 21 24 14 22 22 25 18 23 19 23 23 25 15 22 24 26 20 24 16 20 17 20 21 24 25 26 22 25 26 27 18 23 19 23 27 27 23 25 28 28 24 26 16 20 17 20 25 26 29 28 26 27 30 29 18 23 19 23 31 29 27 27 32 30 24 26 28 28 29 28 25 26 33 30 26 27 34 31 30 29 31 29 35 31 27 27 36 32 32 30 28 28 29 28 33 30 37 32 34 31 38 33 30 29 31 29 39 33 35 31 40 34 32 30 36 32 37 32 33 30 41 34 34 31 42 35 38 33 39 33 43 35 35 31 44 36 40 34 36 32 37 32 41 34 45 36 42 35 46 37 38 33 39 33 47 37 43 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1545\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1546\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1550\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1555\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1553\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1554\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1553\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1556\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1556\">-0.75937420129776 -2.059271097183228 0.09401828050613403 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.75937420129776 -2.059271097183228 0.09401828050613403 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7132100462913513 -2.062207937240601 0.09551356732845306 -0.7132100462913513 -2.062207937240601 0.09551356732845306 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.6684518456459045 -2.059271097183228 0.09401828050613403 -0.6684518456459045 -2.059271097183228 0.09401828050613403 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1554\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1557\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1557\">-0.5561338226597609 -0.8009804129341711 0.2216879549945059 -0.9436279770637638 -0.294802001739216 -0.1505258139758768 -0.9853335926304631 -0.1499911356522045 0.08136565897052001 0.9853335926304631 0.1499911356522045 -0.08136565897052001 0.9436279770637638 0.294802001739216 0.1505258139758768 0.5561338226597609 0.8009804129341711 -0.2216879549945059 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 0.5592988209446661 0.8285232037662215 -0.02709482812018735 -0.5933286735546096 -0.641507705513458 0.4862396003050205 0.5933286735546096 0.641507705513458 -0.4862396003050205 0.00102079149857841 -0.9650401052263313 0.2621002733487091 -0.00102079149857841 0.9650401052263313 -0.2621002733487091 -0.0001897054169267276 -0.8685858618862585 0.4955386609974646 0.0001897054169267276 0.8685858618862585 -0.4955386609974646 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 0.0003259087856735385 -0.9990110688943522 0.04446097176206857 -0.0003259087856735385 0.9990110688943522 -0.04446097176206857 0.5519712570922619 -0.8023479070624949 0.2270805305974565 -0.5519712570922619 0.8023479070624949 -0.2270805305974565 0.537584015006585 -0.8419809394557429 0.04551400226989654 -0.537584015006585 0.8419809394557429 -0.04551400226989654 0.5697731445095979 -0.6724564716572923 0.4723990447935624 -0.5697731445095979 0.6724564716572923 -0.4723990447935624 0.9834002721368989 -0.1574388066126764 0.09020491634855526 -0.9834002721368989 0.1574388066126764 -0.09020491634855526 0.9534207476003748 -0.2793935727768806 -0.1137018449107683 -0.9534207476003748 0.2793935727768806 0.1137018449107683 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"16\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 0 6 1 8 0 2 6 0 10 12 0 8 8 2 14 10 0 12 16 6 10 18 10 12 20 16 10 18 12 22 18 20 10 18 22 24 20 18 26 26 18 24 24 22 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1555\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"16\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 4 7 5 3 5 9 11 5 7 9 5 13 15 3 9 13 5 11 11 7 17 13 11 19 11 17 21 23 13 19 11 21 19 25 23 19 27 19 21 25 19 27 29 23 25</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1555\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1558\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1561\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1559\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1560\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1559\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID1562\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"114\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1562\">-0.7442749738693237 -1.974473595619202 0.2335336655378342 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7442749738693237 -1.974473595619202 0.2335336655378342 -0.7132100462913513 -1.981115937232971 0.2377601712942123 -0.7132100462913513 -1.981115937232971 0.2377601712942123 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.732620894908905 -1.956179261207581 0.2581743896007538 -0.732620894908905 -1.956179261207581 0.2581743896007538 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.7132100462913513 -1.961442589759827 0.2600972652435303 -0.7132100462913513 -1.961442589759827 0.2600972652435303 -0.7190929651260376 -1.930104374885559 0.2703545987606049 -0.7190929651260376 -1.930104374885559 0.2703545987606049 -0.6792644262313843 -1.974473595619202 0.2335336655378342 -0.6792644262313843 -1.974473595619202 0.2335336655378342 -0.6959635019302368 -1.956179261207581 0.2581743896007538 -0.6959635019302368 -1.956179261207581 0.2581743896007538 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.7073091864585877 -1.930104374885559 0.2703545987606049 -0.7073091864585877 -1.930104374885559 0.2703545987606049 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1560\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID1563\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"114\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1563\">-0.6038443360950649 -0.5112675941819026 0.6115369693692765 -0.5933286735546096 -0.641507705513458 0.4862396003050205 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 0.5933286735546096 0.641507705513458 -0.4862396003050205 0.6038443360950649 0.5112675941819026 -0.6115369693692765 -0.002391138459624213 -0.7580277718353075 0.6522178927193474 0.002391138459624213 0.7580277718353075 -0.6522178927193474 -0.8510242709127007 -0.1534738216882031 0.5021986423457593 0.8510242709127007 0.1534738216882031 -0.5021986423457593 -0.0001897054169267276 -0.8685858618862585 0.4955386609974646 0.0001897054169267276 0.8685858618862585 -0.4955386609974646 -0.4816332037904218 -0.4003286159953588 0.7795937764129565 0.4816332037904218 0.4003286159953588 -0.7795937764129565 0.5697731445095979 -0.6724564716572923 0.4723990447935624 -0.5697731445095979 0.6724564716572923 -0.4723990447935624 0.01324367386319167 -0.5911598887815612 0.8064456528485832 -0.01324367386319167 0.5911598887815612 -0.8064456528485832 -0.5934713821303773 -0.1497793578805715 0.7907957147994312 0.5934713821303773 0.1497793578805715 -0.7907957147994312 0.6132460904981805 -0.4994353159705884 0.6119588202240867 -0.6132460904981805 0.4994353159705884 -0.6119588202240867 0.4595277406161648 -0.4008535545887295 0.7925595771787654 -0.4595277406161648 0.4008535545887295 -0.7925595771787654 -0.6121179836118351 -0.1235081349179034 0.7810616587364163 0.6121179836118351 0.1235081349179034 -0.7810616587364163 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937 0.5987942084567582 -0.1559010396415385 0.7855828166128199 -0.5987942084567582 0.1559010396415385 -0.7855828166128199 -0.6312255978924052 -0.232565300120417 0.7399105525300177 0.6312255978924052 0.232565300120417 -0.7399105525300177 0.8533897397826985 -0.1412687265943303 0.5017659802338482 -0.8533897397826985 0.1412687265943303 -0.5017659802338482 0.6300652721750066 -0.2328232920063185 0.7408178369196948 -0.6300652721750066 0.2328232920063185 -0.7408178369196948 0.6120888028889895 -0.123428166670594 0.7810971674831884 -0.6120888028889895 0.123428166670594 -0.7810971674831884</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 1 0 6 0 2 8 10 1 6 6 0 12 12 0 8 14 10 6 6 12 16 12 8 18 20 14 6 22 6 16 12 18 16 18 8 24 14 20 26 20 6 22 16 28 22 16 18 30 30 18 24 26 20 32 20 22 32 22 28 32 16 34 28 34 36 28 28 36 32</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1561\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 7 5 4 9 3 5 7 4 11 13 5 7 9 5 13 7 11 15 17 13 7 19 9 13 7 15 21 17 7 23 17 19 13 25 9 19 27 21 15 23 7 21 23 29 17 31 19 17 25 19 31 33 21 27 33 23 21 33 29 23 29 35 17 29 37 35 33 37 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1561\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1564\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1567\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1565\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1566\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1565\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1569\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"162\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1569\">-0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7841270565986633 -2.018415689468384 -0.01978804916143417</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1566\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1570\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"162\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1570\">-0.03507863000728281 -0.9993638928866502 -0.006426454018542583 -0.03258879221096398 -0.992925889807309 -0.1141759518138322 0.0003259087856735385 -0.9990110688943522 0.04446097176206857 -0.0003259087856735385 0.9990110688943522 -0.04446097176206857 0.03258879221096398 0.992925889807309 0.1141759518138322 0.03507863000728281 0.9993638928866502 0.006426454018542583 0.537584015006585 -0.8419809394557429 0.04551400226989654 -0.537584015006585 0.8419809394557429 -0.04551400226989654 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 0.5592988209446661 0.8285232037662215 -0.02709482812018735 0.5488649620174 -0.8350332471836223 -0.03829790552515543 -0.5488649620174 0.8350332471836223 0.03829790552515543 -0.9224100075395584 -0.3862095043714823 -0.001413054848939107 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 0.9224100075395584 0.3862095043714823 0.001413054848939107 0.9534207476003748 -0.2793935727768806 -0.1137018449107683 -0.9534207476003748 0.2793935727768806 0.1137018449107683 0.9554196933123231 -0.280007949107208 -0.09364164707949933 -0.9554196933123231 0.280007949107208 0.09364164707949933 0.9834002721368989 -0.1574388066126764 0.09020491634855526 -0.9834002721368989 0.1574388066126764 -0.09020491634855526 0.9999030608777266 0.0091911144929521 0.01045907556770696 -0.9999030608777266 -0.0091911144929521 -0.01045907556770696 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937 0.9845608053297705 0.005789609544017289 0.1749471378151744 -0.9845608053297705 -0.005789609544017289 -0.1749471378151744 0.8533897397826985 -0.1412687265943303 0.5017659802338482 -0.8533897397826985 0.1412687265943303 -0.5017659802338482 0.8505881097345353 -0.07656512545695393 0.5202284586044782 -0.8505881097345353 0.07656512545695393 -0.5202284586044782 0.6120888028889895 -0.123428166670594 0.7810971674831884 -0.6120888028889895 0.123428166670594 -0.7810971674831884 0.6341513258495346 -0.07317274126097195 0.7697388166512276 -0.6341513258495346 0.07317274126097195 -0.7697388166512276 -0.6121179836118351 -0.1235081349179034 0.7810616587364163 -0.8510242709127007 -0.1534738216882031 0.5021986423457593 -0.6255914375192391 -0.09499054398525243 0.7743462725783586 0.6255914375192391 0.09499054398525243 -0.7743462725783586 0.8510242709127007 0.1534738216882031 -0.5021986423457593 0.6121179836118351 0.1235081349179034 -0.7810616587364163 -0.8365327615396679 -0.08000809676405099 0.5420439496231012 0.8365327615396679 0.08000809676405099 -0.5420439496231012 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 -0.986834032541885 -0.03790333343156378 0.1572320881114841 0.986834032541885 0.03790333343156378 -0.1572320881114841 -0.9853335926304631 -0.1499911356522045 0.08136565897052001 0.9853335926304631 0.1499911356522045 -0.08136565897052001 -0.9981388138662855 -0.05180664955192778 0.03217109441421623 0.9981388138662855 0.05180664955192778 -0.03217109441421623 -0.9436279770637638 -0.294802001739216 -0.1505258139758768 0.9436279770637638 0.294802001739216 0.1505258139758768</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1568\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"69\" source=\"#ID1571\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"138\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1571\">-6.306092317982453 -1.271501018627536 -6.784815808535565 -1.286086166393232 -6.306369069507085 -1.185650880848618 -7.489267850228599 -1.171509235018648 -7.960392566110251 -1.242774628416125 -7.960111184225731 -1.156924499951786 -6.784817513680201 -1.286081136919438 -6.785094264637429 -1.200230589696816 -6.306370773987924 -1.185645853331707 -7.489550428628045 -1.257354880306367 -7.960393762555639 -1.242769734407629 -7.489269046334202 -1.171504342400244 16.22989170620917 -0.4325477354765682 16.23634433632682 -0.5182483619599257 15.62580784216991 -0.5234426142540005 -21.35518248273874 -0.3254202931075205 -21.34902642173081 -0.2397061667655785 -20.84021281446976 -0.2449004456687551 -21.59802244816052 0.3505792080735636 -21.08461437258555 0.4370503163289707 -20.98446818310251 0.345000167392186 -20.16364743902301 -0.3092719751842178 -20.2725391110552 -0.2235871018883999 -19.94171877301929 0.5993853514445762 -20.16364623668031 -0.3092722004508784 -19.94171757385895 0.5993851266589149 -19.83282590152668 0.5137016747808543 -19.38718969248185 0.8819730681369841 -19.49594649604843 0.9677624583550557 -19.12270220684322 1.627962861283831 -19.54988191260408 0.8983130588275439 -19.28656884661604 1.644559913419114 -19.12893707137241 1.652943780736948 -19.19823782851327 2.393227254796936 -19.35585556866196 2.384681651035667 -19.05768570728569 2.898233168553988 -19.58089838569085 2.25643435415043 -19.44853918039593 2.76280839742426 -19.30240151704015 2.785425753413094 -20.21626233545632 2.216000657861116 -20.04819653781429 2.804765886351715 -20.0743637675117 2.251597876075918 -20.04811880715953 2.805177302875323 -19.90621096466235 2.840771842231666 -20.07430436054864 2.252009829195494 16.58836098419017 -5.730743485420502 16.75644603800339 -6.319506967773847 16.44645311290055 -5.69514901710096 16.75599268744965 -6.319961358425972 16.61409424247359 -6.284363836867083 16.44602310623511 -5.695596235526827 18.82129313582166 0.2435889040443392 19.11037059099694 -0.2731696219641182 18.67517545389078 0.2662860105638668 19.58954765192474 0.1591349106955591 19.43201586527058 0.1502098457519561 19.14581736895401 0.6942703692766635 19.52270398761788 0.8858351267101063 19.89352402824985 0.2247900018658341 19.36515905154538 0.8770548724480094 20.19502555639999 0.4151013409679305 20.08623901514947 0.3293352869389188 19.66464977633564 1.06635550902239 19.74101486272088 0.7572303592065931 20.07183513911413 -0.06574207473235705 19.63212318776349 0.6715469093930906 20.07183384833129 -0.06574251590433804 19.96294217361733 -0.1514273870910756 19.63212189488597 0.6715464674480196</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"23\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 2 8 10 9 0 10 6 11 8 12 12 13 13 14 10 15 6 16 16 17 10 18 16 19 18 20 18 21 16 22 20 23 18 24 20 25 22 26 22 27 20 28 24 29 22 30 24 31 26 32 26 33 24 34 28 35 26 36 28 37 30 38 28 39 32 40 30 41 32 42 34 43 30 44 36 45 37 46 38 47 37 48 42 49 38 50 37 51 44 52 42 53 44 54 46 55 42 56 44 57 48 58 46 59 48 60 50 61 46 62 48 63 52 64 50 65 52 66 13 67 50 68</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1567\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1568\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"23\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 5 7 3 9 4 7 5 11 14 15 9 17 7 11 19 17 11 21 17 19 23 21 19 25 21 23 27 25 23 29 25 27 31 29 27 31 33 29 31 35 33 39 40 41 39 43 40 43 45 40 43 47 45 47 49 45 47 51 49 51 53 49 51 14 53</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1567\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1572\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1575\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1573\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1574\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1573\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1576\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1576\">-0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7841270565986633 -2.018415689468384 -0.01978804916143417</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1574\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1577\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1577\">-0.9436279770637638 -0.294802001739216 -0.1505258139758768 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 0.5592988209446661 0.8285232037662215 -0.02709482812018735 0.9436279770637638 0.294802001739216 0.1505258139758768</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1575\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1578\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1581\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1579\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1580\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1579\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1582\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1582\">-0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6489370465278626 0.3227427005767822 -0.2719404995441437</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1580\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1583\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1583\">0.158445906171609 -0.9873674686534116 0.0006137282883339717 0.158445906171609 -0.9873674686534116 0.0006137282883339717 0.158445906171609 -0.9873674686534116 0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1581\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1584\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1587\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1585\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1586\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1585\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1588\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1588\">0.7538297772407532 0.2898140251636505 0.2332167774438858 0.7403134107589722 0.280442476272583 0.2985353469848633 0.769927978515625 0.3120907545089722 0.236614540219307 0.769927978515625 0.3120907545089722 0.236614540219307 0.7403134107589722 0.280442476272583 0.2985353469848633 0.7538297772407532 0.2898140251636505 0.2332167774438858 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1586\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1589\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1589\">0.3954580285428707 -0.9144961465914285 -0.08549704983456716 0.1006962484761042 -0.9856925593885402 -0.1351682059839063 0.7920595892200424 -0.5939052573171069 0.1411316848042239 -0.7920595892200424 0.5939052573171069 -0.1411316848042239 -0.1006962484761042 0.9856925593885402 0.1351682059839063 -0.3954580285428707 0.9144961465914285 0.08549704983456716 0.7834096988866806 -0.5940114822015261 0.1828102915675878 -0.7834096988866806 0.5940114822015261 -0.1828102915675878</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1587\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1590\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1593\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1591\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1592\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1591\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID1594\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1594\">0.3516539335250855 0.4489807486534119 0.2332167774438858 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3516539335250855 0.4489807486534119 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.5283824801445007 0.4448592662811279 0.2332167774438858 0.5283824801445007 0.4448592662811279 0.2332167774438858 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5818127393722534 0.447659969329834 0.2332167774438858 0.5818127393722534 0.447659969329834 0.2332167774438858 0.6719444394111633 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 0.5869252681732178 0.6375383734703064 0.1986889690160751 0.5869252681732178 0.6375383734703064 0.1986889690160751</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1592\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID1595\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"78\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1595\">-0.002455960715664099 -0.1340529164618239 -0.9909711316910512 -0.02541772641987503 -0.5744328089866907 -0.8181570064133806 -0.1159164628534591 -0.5849792717652266 -0.8027220099415288 0.1159164628534591 0.5849792717652266 0.8027220099415288 0.02541772641987503 0.5744328089866907 0.8181570064133806 0.002455960715664099 0.1340529164618239 0.9909711316910512 -0.003485674259203649 -0.135758403562462 -0.9907358406442811 0.003485674259203649 0.135758403562462 0.9907358406442811 -0.01360116989091377 -0.1197858847249975 -0.992706577996866 0.01360116989091377 0.1197858847249975 0.992706577996866 -0.0009837846824466707 -0.5287955557962981 -0.8487486626427067 0.0009837846824466707 0.5287955557962981 0.8487486626427067 -0.02366493571792748 -0.5517768020638852 -0.8336560031101667 0.02366493571792748 0.5517768020638852 0.8336560031101667 -0.001228812053990985 -0.5307931439620783 -0.8475005181967668 0.001228812053990985 0.5307931439620783 0.8475005181967668 -0.3120320962622111 -0.7954273829439994 -0.5195490827295054 0.3120320962622111 0.7954273829439994 0.5195490827295054 0.002893224898524778 -0.5261266435823435 -0.8504013077144604 -0.002893224898524778 0.5261266435823435 0.8504013077144604 -0.3639931181795807 -0.1116354944085396 -0.9246872586480613 0.3639931181795807 0.1116354944085396 0.9246872586480613 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 0.5805288259387089 0.79708037182807 0.1662803749714611 -0.534492854911476 -0.4762568934147193 -0.6982096816311992 0.534492854911476 0.4762568934147193 0.6982096816311992</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"28\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 10 6 0 5 7 11 6 12 1 4 13 7 14 0 8 9 5 15 8 2 16 17 3 9 10 0 14 15 5 11 14 8 18 19 9 15 20 8 16 17 9 21 18 8 20 21 9 19 16 22 20 21 23 17 18 20 24 25 21 19 20 22 24 25 23 21</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1593\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1596\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1599\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1597\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1598\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1597\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID1600\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"198\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1600\">0.5869252681732178 0.6375383734703064 0.1986889690160751 0.534200131893158 0.7065956592559815 0.1053698509931564 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.534200131893158 0.7065956592559815 0.1053698509931564 0.5869252681732178 0.6375383734703064 0.1986889690160751 0.3691354095935822 0.7059374451637268 0.1053698509931564 0.3691354095935822 0.7059374451637268 0.1053698509931564 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3718721866607666 0.7579371929168701 -0.08268103003501892 0.3718721866607666 0.7579371929168701 -0.08268103003501892 0.534200131893158 0.7579361200332642 -0.08268103003501892 0.534200131893158 0.7579361200332642 -0.08268103003501892 0.6719444394111633 0.310824066400528 0.1522213369607925 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.6719444394111633 0.310824066400528 0.1522213369607925 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.6823241114616394 0.310824066400528 0.0157061405479908 0.6823241114616394 0.310824066400528 0.0157061405479908 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.3704305589199066 0.7212921380996704 -0.2198816239833832 0.3704305589199066 0.7212921380996704 -0.2198816239833832 0.5344406366348267 0.7229641675949097 -0.2198816239833832 0.5344406366348267 0.7229641675949097 -0.2198816239833832 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.359952837228775 0.5584809184074402 -0.2725684344768524 0.359952837228775 0.5584809184074402 -0.2725684344768524 0.5290966629981995 0.5639436841011047 -0.2725684344768524 0.5290966629981995 0.5639436841011047 -0.2725684344768524 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5818012356758118 0.5650895833969116 -0.2725684344768524 0.5818012356758118 0.5650895833969116 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.352996438741684 0.4595295786857605 -0.2725684344768524 0.352996438741684 0.4595295786857605 -0.2725684344768524 0.5275225043296814 0.4595295786857605 -0.2725684344768524 0.5275225043296814 0.4595295786857605 -0.2725684344768524 0.5826190710067749 0.4595295786857605 -0.2725684344768524 0.5826190710067749 0.4595295786857605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1598\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID1601\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"198\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1601\">-0.534492854911476 -0.4762568934147193 -0.6982096816311992 -0.008708290630548747 -0.8994943682349239 -0.4368455644595113 0.002893224898524778 -0.5261266435823435 -0.8504013077144604 -0.002893224898524778 0.5261266435823435 0.8504013077144604 0.008708290630548747 0.8994943682349239 0.4368455644595113 0.534492854911476 0.4762568934147193 0.6982096816311992 0.001023643364597451 -0.8995424763256171 -0.4368321021173226 -0.001023643364597451 0.8995424763256171 0.4368321021173226 -0.0236357229016307 -0.9023480103169261 -0.4303596413233958 0.0236357229016307 0.9023480103169261 0.4303596413233958 -0.001228812053990985 -0.5307931439620783 -0.8475005181967668 0.001228812053990985 0.5307931439620783 0.8475005181967668 0.002310619850038598 -0.9999946954244299 -0.002295682667614813 -0.002310619850038598 0.9999946954244299 0.002295682667614813 0.0005887579113936776 -0.9999601086645632 -0.008912600275817318 -0.0005887579113936776 0.9999601086645632 0.008912600275817318 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 -0.9696809579224759 -0.2296289695838888 -0.08360248902031012 0.9696809579224759 0.2296289695838888 0.08360248902031012 0.5805288259387089 0.79708037182807 0.1662803749714611 0.0002517151608787327 -0.8990035483622607 -0.4379412708018532 -0.0002517151608787327 0.8990035483622607 0.4379412708018532 0.0001049664590907936 -0.9999945765291868 0.003291791951931407 -0.0001049664590907936 0.9999945765291868 -0.003291791951931407 -0.004762183782822505 -0.99991582039779 -0.01206953701817792 0.004762183782822505 0.99991582039779 0.01206953701817792 -0.9738578787136809 -0.22317279432954 -0.04236432388737434 0.9738578787136809 0.22317279432954 0.04236432388737434 -0.0009837846824466707 -0.5287955557962981 -0.8487486626427067 0.0009837846824466707 0.5287955557962981 0.8487486626427067 0.004960938197936508 -0.7176065544393218 0.6964310605637294 -0.004960938197936508 0.7176065544393218 -0.6964310605637294 0.006236033036651492 -0.7266495822650051 0.6869799825948784 -0.006236033036651492 0.7266495822650051 -0.6869799825948784 -0.01015286975425089 -0.7326993687073732 0.6804767110868452 0.01015286975425089 0.7326993687073732 -0.6804767110868452 -0.9735634800605109 -0.2269766006540034 0.02560806607341277 0.9735634800605109 0.2269766006540034 -0.02560806607341277 -0.03242314820124487 -0.720253991249472 0.692952327039837 0.03242314820124487 0.720253991249472 -0.692952327039837 -0.9570457757608381 -0.2670484824654185 0.1129092162369959 0.9570457757608381 0.2670484824654185 -0.1129092162369959 0.0009666724662604464 -0.131014841647294 0.991379935651553 -0.0009666724662604464 0.131014841647294 -0.991379935651553 0.001696977507081195 -0.155230976216615 0.9878767454951943 -0.001696977507081195 0.155230976216615 -0.9878767454951943 0.00350166923253529 -0.1610376828668566 0.9869420464289985 -0.00350166923253529 0.1610376828668566 -0.9869420464289985 -0.9623626947490217 -0.206647714191229 0.1765071272638618 0.9623626947490217 0.206647714191229 -0.1765071272638618 -0.5189880486035221 -0.1695065661790611 0.8378060213610854 0.5189880486035221 0.1695065661790611 -0.8378060213610854 -2.50664681986786e-005 -0.005818806173580303 0.9999830702898858 2.50664681986786e-005 0.005818806173580303 -0.9999830702898858 -0.0008486584844322239 -0.002669912908706293 0.9999960756642182 0.0008486584844322239 0.002669912908706293 -0.9999960756642182 0 0 1 -0 -0 -1 -0.4533059364850565 -0.06671574964729424 0.8888547331799531 0.4533059364850565 0.06671574964729424 -0.8888547331799531 -0.8647407894750915 -0.4937134355135344 0.09203483368496382 0.8647407894750915 0.4937134355135344 -0.09203483368496382 -0.0008261090318084516 -0.008133841918222379 0.9999665785212609 0.0008261090318084516 0.008133841918222379 -0.9999665785212609 -0.0009780757563540878 -0.002169755771291285 0.999997167759843 0.0009780757563540878 0.002169755771291285 -0.999997167759843</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"42\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 1 6 2 8 1 0 2 6 10 1 12 6 8 14 1 0 16 17 6 20 10 12 22 6 14 12 1 24 14 8 16 26 17 10 20 28 6 22 20 12 30 22 14 32 12 24 34 14 17 26 36 32 30 12 34 32 14 38 34 24 26 40 36 42 30 32 44 32 34 46 34 38 40 48 36 44 42 32 46 44 34 46 38 50 40 50 48 52 42 44 54 44 46 56 46 50 40 58 50 54 52 44 56 54 46 56 50 58 40 60 58 62 52 54 54 56 64 56 58 64 62 54 64</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1599\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"42\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 7 4 5 4 9 11 7 3 7 13 4 4 15 9 18 19 5 11 21 7 7 23 13 4 13 15 9 15 25 18 27 19 29 21 11 21 23 7 23 31 13 13 33 15 15 35 25 37 27 18 13 31 33 15 33 35 25 35 39 37 41 27 33 31 43 35 33 45 39 35 47 37 49 41 33 43 45 35 45 47 51 39 47 49 51 41 45 43 53 47 45 55 51 47 57 51 59 41 45 53 55 47 55 57 59 51 57 59 61 41 55 53 63 65 57 55 65 59 57 65 55 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1599\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1602\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1605\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1603\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1604\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1603\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"52\" source=\"#ID1606\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"156\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1606\">0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5913218855857849 -0.7019175291061401 0.2899888455867767 0.5913218855857849 -0.7019175291061401 0.2899888455867767 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5991842150688171 -0.6751006841659546 0.2901735305786133 0.5991842150688171 -0.6751006841659546 0.2901735305786133 0.6027332544326782 -0.6565739512443543 0.2298039048910141 0.6027332544326782 -0.6565739512443543 0.2298039048910141 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.606005072593689 -0.6353139281272888 0.1513132899999619 0.606005072593689 -0.6353139281272888 0.1513132899999619 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6138572096824646 -0.5806991457939148 0.01851669326424599 0.6138572096824646 -0.5806991457939148 0.01851669326424599 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6184371709823608 -0.523088812828064 -0.1182090491056442 0.6184371709823608 -0.523088812828064 -0.1182090491056442 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6197459101676941 -0.4733588397502899 -0.2504602670669556 0.6197459101676941 -0.4733588397502899 -0.2504602670669556 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5905120968818665 -0.6027178764343262 -0.2739138007164002</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1604\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"52\" source=\"#ID1607\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"156\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1607\">-0.6550028074066617 0.4876263453328185 0.57722774502509 -0.7476141706463564 0.6572814401000713 0.09515335174725628 -0.8216292782168875 0.2706545588897141 0.5016686545211001 0.8216292782168875 -0.2706545588897141 -0.5016686545211001 0.7476141706463564 -0.6572814401000713 -0.09515335174725628 0.6550028074066617 -0.4876263453328185 -0.57722774502509 -0.9584160287978759 0.2850066878088134 -0.01448805188969848 0.9584160287978759 -0.2850066878088134 0.01448805188969848 -0.7753733229355523 0.4751248107874208 0.4159959425933109 0.7753733229355523 -0.4751248107874208 -0.4159959425933109 -0.7244565686574949 0.6850933441356621 0.07622197812982619 0.7244565686574949 -0.6850933441356621 -0.07622197812982619 -0.8941909770901743 0.4475430250016918 0.01130209108326358 0.8941909770901743 -0.4475430250016918 -0.01130209108326358 -0.8881486012223843 0.4524779345091655 0.08034787445254196 0.8881486012223843 -0.4524779345091655 -0.08034787445254196 -0.4543309600657438 0.8834859794272519 0.1141748785031492 0.4543309600657438 -0.8834859794272519 -0.1141748785031492 -0.8752530071759646 0.4733778114794652 0.09922510281346596 0.8752530071759646 -0.4733778114794652 -0.09922510281346596 -0.3839601059320404 0.8794258325261762 0.2813980137426312 0.3839601059320404 -0.8794258325261762 -0.2813980137426312 -0.4390785855880069 0.8722665560520438 0.2153161649090516 0.4390785855880069 -0.8722665560520438 -0.2153161649090516 -0.3813913782069187 0.8843791144645131 0.2690988638556295 0.3813913782069187 -0.8843791144645131 -0.2690988638556295 -0.7923653544809333 0.608650103731723 0.0412576810505382 0.7923653544809333 -0.608650103731723 -0.0412576810505382 -0.3135274238242752 0.882947604923759 0.3494339443578869 0.3135274238242752 -0.882947604923759 -0.3494339443578869 -0.8653479516275449 0.4780730382160567 0.1503964519025673 0.8653479516275449 -0.4780730382160567 -0.1503964519025673 -0.7968685932815799 0.5870304906792523 0.1428133329010719 0.7968685932815799 -0.5870304906792523 -0.1428133329010719 -0.2820162498870407 0.8935441405364961 0.3493504024794374 0.2820162498870407 -0.8935441405364961 -0.3493504024794374 -0.8445674453171055 0.5026266180178239 0.1845868716092845 0.8445674453171055 -0.5026266180178239 -0.1845868716092845 -0.8188546049565538 0.5430968997890379 0.1858033728999071 0.8188546049565538 -0.5430968997890379 -0.1858033728999071 -0.2493540230310667 0.8484132149469607 0.4669235353905227 0.2493540230310667 -0.8484132149469607 -0.4669235353905227 -0.7773761696034033 0.4537299634695453 0.4356781050072014 0.7773761696034033 -0.4537299634695453 -0.4356781050072014 -0.7904401366226477 0.4467532877527571 0.4190654964299407 0.7904401366226477 -0.4467532877527571 -0.4190654964299407 -0.136250489327595 0.3488184035330123 0.9272332638094212 0.136250489327595 -0.3488184035330123 -0.9272332638094212 -0.2818180752902821 0.1785579729115788 0.9427065411618766 0.2818180752902821 -0.1785579729115788 -0.9427065411618766 -0.4644038303505231 0.1881541816406321 0.8654057350670302 0.4644038303505231 -0.1881541816406321 -0.8654057350670302</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"62\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 2 1 6 7 4 3 2 6 8 9 7 3 1 10 6 7 11 4 6 12 8 9 13 7 6 10 14 15 11 7 8 12 16 17 13 9 12 6 14 15 7 13 14 10 18 19 11 15 20 8 16 17 9 21 16 12 22 23 13 17 12 14 22 23 15 13 18 24 14 15 25 19 10 26 18 19 27 11 22 14 24 25 15 23 28 24 18 19 25 29 18 26 30 31 27 19 30 28 18 19 29 31 26 32 30 31 33 27 30 34 28 29 35 31 30 32 36 37 33 31 36 34 30 31 35 37 32 38 36 37 39 33 36 40 34 35 41 37 36 38 42 43 39 37 42 40 36 37 41 43 38 44 42 43 45 39 42 46 40 41 47 43 42 44 48 49 45 43 48 46 42 43 47 49 44 50 48 49 51 45</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1605\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1608\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1611\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1609\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1610\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1609\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1612\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"30\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1612\">0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6610545516014099 -0.6420672535896301 0.2324964851140976</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1610\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1613\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"30\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1613\">-0.384970124415974 0.9206201242962624 0.06524254783409289 -0.2771330402511802 0.960779697982544 0.009982481941339451 0.2331018669884867 0.8320242126565701 0.5033877522940903 -0.2331018669884867 -0.8320242126565701 -0.5033877522940903 0.2771330402511802 -0.960779697982544 -0.009982481941339451 0.384970124415974 -0.9206201242962624 -0.06524254783409289 -0.355210421201735 0.9270152150350377 0.1202844452255927 0.355210421201735 -0.9270152150350377 -0.1202844452255927 -0.03348084013298106 0.9726744552437342 0.2297464634337051 0.03348084013298106 -0.9726744552437342 -0.2297464634337051</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 6 8 0 5 9 7</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1611\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1614\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1617\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1615\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1616\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1615\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"22\" source=\"#ID1618\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"66\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1618\">0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6621965765953064 0.320149302482605 -0.2725684344768524</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1616\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"22\" source=\"#ID1619\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"66\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1619\">-0.8895615761176244 0 0.4568152824666966 -0.4245302747465338 0.4022424534965067 0.8111566152283682 -0.8090636576108965 -0.00529621518445905 0.5876971567380582 0.8090636576108965 0.00529621518445905 -0.5876971567380582 0.4245302747465338 -0.4022424534965067 -0.8111566152283682 0.8895615761176244 -0 -0.4568152824666966 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.4374569246052411 -0.004190067454014929 0.899229604967305 0.4374569246052411 0.004190067454014929 -0.899229604967305 0 0 1 -0 -0 -1 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"10\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 8 7 14 15 10 9 16 17 18 19 20 21</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1617\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1620\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1623\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1621\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1622\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1621\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1624\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1624\">0.351957768201828 -1.969097256660461 0.0834038257598877 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.351957768201828 -1.969097256660461 0.0834038257598877</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1622\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1625\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1625\">-0.149357994953947 0.9875735034865902 -0.04889544513099698 -0.7043453961272412 0.6885000654906582 0.1728155744535739 -0.747044926563488 0.6504540070975241 -0.1372350623803081 0.747044926563488 -0.6504540070975241 0.1372350623803081 0.7043453961272412 -0.6885000654906582 -0.1728155744535739 0.149357994953947 -0.9875735034865902 0.04889544513099698</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1623\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1623\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1626\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1629\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1627\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1628\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1627\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1630\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1630\">0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.756475567817688 -2.059271097183228 0.09401828050613403 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.756475567817688 -2.059271097183228 0.09401828050613403 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.756475567817688 -2.010841131210327 0.1919151991605759 0.756475567817688 -2.010841131210327 0.1919151991605759 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.062207937240601 0.09551356732845306 0.7103111147880554 -2.062207937240601 0.09551356732845306 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.6655531525611877 -2.059271097183228 0.09401828050613403 0.6655531525611877 -2.059271097183228 0.09401828050613403 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1628\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1631\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1631\">0.943627143899562 -0.2948034789954753 -0.1505281437742455 0.5561347809388669 -0.800980889787665 0.2216838280638415 0.9853337997491376 -0.1499904908385696 0.08136433942416936 -0.9853337997491376 0.1499904908385696 -0.08136433942416936 -0.5561347809388669 0.800980889787665 -0.2216838280638415 -0.943627143899562 0.2948034789954753 0.1505281437742455 0.5933281384221253 -0.6415076825928938 0.4862402835335944 -0.5933281384221253 0.6415076825928938 -0.4862402835335944 0.5592979853536424 -0.8285238041283055 0.0270937183147329 -0.5592979853536424 0.8285238041283055 -0.0270937183147329 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 0.0001897390297503977 -0.8685842107168599 0.4955415551620975 -0.0001897390297503977 0.8685842107168599 -0.4955415551620975 -0.001021169911253755 -0.9650411311786424 0.2620964943402691 0.001021169911253755 0.9650411311786424 -0.2620964943402691 -0.000319951151868398 -0.9990084344300625 0.04452017035969026 0.000319951151868398 0.9990084344300625 -0.04452017035969026 -0.5519720940320964 -0.8023482870868035 0.2270771534494271 0.5519720940320964 0.8023482870868035 -0.2270771534494271 -0.5375902063391951 -0.8419767167272813 0.04551899095244997 0.5375902063391951 0.8419767167272813 -0.04551899095244997 -0.5697713573672883 -0.6724576161103255 0.4723995711884758 0.5697713573672883 0.6724576161103255 -0.4723995711884758 -0.9834003406516149 -0.1574389615609065 0.09020389896734656 0.9834003406516149 0.1574389615609065 -0.09020389896734656 -0.9534206114498375 -0.279393753748928 -0.1137025418744073 0.9534206114498375 0.279393753748928 0.1137025418744073 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"16\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 1 6 2 8 1 0 2 6 10 1 12 6 1 8 14 1 14 12 8 16 14 14 18 12 16 20 14 12 18 22 20 18 14 22 18 24 18 20 26 18 26 24 22 24 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1629\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"16\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 7 4 5 4 9 11 7 3 7 13 4 15 9 4 13 15 4 15 17 9 13 19 15 15 21 17 23 19 13 15 19 21 25 19 23 27 21 19 25 27 19 29 25 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1629\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1632\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1635\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1633\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1634\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1633\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID1636\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"114\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1636\">0.756475567817688 -2.010841131210327 0.1919151991605759 0.7413764595985413 -1.974473595619202 0.2335336655378342 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7413764595985413 -1.974473595619202 0.2335336655378342 0.756475567817688 -2.010841131210327 0.1919151991605759 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7103111147880554 -1.981115937232971 0.2377601712942123 0.7103111147880554 -1.981115937232971 0.2377601712942123 0.7297222018241882 -1.956180214881897 0.2581743896007538 0.7297222018241882 -1.956180214881897 0.2581743896007538 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7161936759948731 -1.930104374885559 0.2703545987606049 0.7161936759948731 -1.930104374885559 0.2703545987606049 0.7103111147880554 -1.961444020271301 0.2600972652435303 0.7103111147880554 -1.961444020271301 0.2600972652435303 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.6930640935897827 -1.956180214881897 0.2581743896007538 0.6930640935897827 -1.956180214881897 0.2581743896007538 0.6763654351234436 -1.974473595619202 0.2335336655378342 0.6763654351234436 -1.974473595619202 0.2335336655378342 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7044104337692261 -1.930104374885559 0.2703545987606049 0.7044104337692261 -1.930104374885559 0.2703545987606049 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.91874897480011 0.2325675636529923</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1634\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID1637\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"114\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1637\">0.5933281384221253 -0.6415076825928938 0.4862402835335944 0.6038475476821412 -0.5112670930340427 0.6115342171447025 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 -0.6038475476821412 0.5112670930340427 -0.6115342171447025 -0.5933281384221253 0.6415076825928938 -0.4862402835335944 0.8510247683157842 -0.1534714959402908 0.5021985101998162 -0.8510247683157842 0.1534714959402908 -0.5021985101998162 0.002390214720458501 -0.7580324268348783 0.6522124858820286 -0.002390214720458501 0.7580324268348783 -0.6522124858820286 0.4816343039379686 -0.4003304091070729 0.7795921759576298 -0.4816343039379686 0.4003304091070729 -0.7795921759576298 0.0001897390297503977 -0.8685842107168599 0.4955415551620975 -0.0001897390297503977 0.8685842107168599 -0.4955415551620975 0.593480914577841 -0.1497719923081683 0.7907899558997266 -0.593480914577841 0.1497719923081683 -0.7907899558997266 -0.01324242902615902 -0.5911708723841617 0.8064376217154284 0.01324242902615902 0.5911708723841617 -0.8064376217154284 -0.5697713573672883 -0.6724576161103255 0.4723995711884758 0.5697713573672883 0.6724576161103255 -0.4723995711884758 0.6121141719640919 -0.1235155841382136 0.7810634679433613 -0.6121141719640919 0.1235155841382136 -0.7810634679433613 -0.4595343448738955 -0.4008536781948491 0.7925556854625295 0.4595343448738955 0.4008536781948491 -0.7925556854625295 -0.6132519451184463 -0.499434195720541 0.6119538675042576 0.6132519451184463 0.499434195720541 -0.6119538675042576 0.6312475923018771 -0.2325527198214028 0.7398957424642685 -0.6312475923018771 0.2325527198214028 -0.7398957424642685 -0.5988004092927477 -0.1558923629322883 0.7855798119925344 0.5988004092927477 0.1558923629322883 -0.7855798119925344 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482 -0.630075658131957 -0.2328132967471215 0.7408121448027956 -0.6120926070614714 -0.1234322633736009 0.781093539045844 0.6120926070614714 0.1234322633736009 -0.781093539045844 0.630075658131957 0.2328132967471215 -0.7408121448027956 -0.8533897187137808 -0.1412637953393277 0.5017674044016239 0.8533897187137808 0.1412637953393277 -0.5017674044016239</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 2 1 6 8 1 0 1 10 6 1 8 10 0 12 8 10 14 6 10 8 16 12 18 8 14 20 6 16 14 10 8 22 16 18 24 8 26 20 14 16 26 14 8 24 22 22 28 16 24 18 30 32 28 33 16 28 32 22 24 36 22 36 28 24 30 36 28 36 33</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1635\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 7 4 3 5 4 9 7 11 4 11 9 4 9 13 5 7 15 11 17 9 11 9 19 13 7 21 15 11 15 17 17 23 9 9 25 19 15 21 27 15 27 17 23 25 9 17 29 23 31 19 25 34 29 35 35 29 17 37 25 23 29 37 23 37 31 25 34 37 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1635\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1638\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1641\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1639\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1640\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1639\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1643\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"162\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1643\">0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7769084572792053 -1.932552456855774 0.167515367269516 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1640\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1644\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"162\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1644\">0.03260687053562721 -0.9929270011109181 -0.114161124988988 0.0350836217122919 -0.9993641268128589 -0.006362509498693735 -0.000319951151868398 -0.9990084344300625 0.04452017035969026 0.000319951151868398 0.9990084344300625 -0.04452017035969026 -0.0350836217122919 0.9993641268128589 0.006362509498693735 -0.03260687053562721 0.9929270011109181 0.114161124988988 -0.5375902063391951 -0.8419767167272813 0.04551899095244997 0.5375902063391951 0.8419767167272813 -0.04551899095244997 0.5592979853536424 -0.8285238041283055 0.0270937183147329 -0.5592979853536424 0.8285238041283055 -0.0270937183147329 -0.5488772901889137 -0.8350252574485036 -0.03829542711519779 0.5488772901889137 0.8350252574485036 0.03829542711519779 0.9224089668347014 -0.3862119958074538 -0.001411452217341778 0.9763108033078525 -0.2123747784436454 -0.04140252196893392 -0.9763108033078525 0.2123747784436454 0.04140252196893392 -0.9224089668347014 0.3862119958074538 0.001411452217341778 -0.9534206114498375 -0.279393753748928 -0.1137025418744073 0.9534206114498375 0.279393753748928 0.1137025418744073 0.943627143899562 -0.2948034789954753 -0.1505281437742455 -0.943627143899562 0.2948034789954753 0.1505281437742455 -0.9554201128959187 -0.2800080264120052 -0.09363713482803654 0.9554201128959187 0.2800080264120052 0.09363713482803654 0.9981387801496015 -0.05180774196831358 0.03217038130968378 -0.9981387801496015 0.05180774196831358 -0.03217038130968378 -0.9834003406516149 -0.1574389615609065 0.09020389896734656 0.9834003406516149 0.1574389615609065 -0.09020389896734656 0.9853337997491376 -0.1499904908385696 0.08136433942416936 -0.9853337997491376 0.1499904908385696 -0.08136433942416936 -0.9999030821333683 0.009189671904800476 0.01045831107171379 0.9999030821333683 -0.009189671904800476 -0.01045831107171379 0.9868338077903163 -0.03790197884639443 0.1572338252463278 -0.9868338077903163 0.03790197884639443 -0.1572338252463278 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 -0.9845592136282013 0.005778961781360174 0.1749564473248911 0.9845592136282013 -0.005778961781360174 -0.1749564473248911 0.8365363380127288 -0.08000022603088255 0.5420395917451615 -0.8365363380127288 0.08000022603088255 -0.5420395917451615 -0.8533897187137808 -0.1412637953393277 0.5017674044016239 0.8533897187137808 0.1412637953393277 -0.5017674044016239 0.8510247683157842 -0.1534714959402908 0.5021985101998162 -0.8510247683157842 0.1534714959402908 -0.5021985101998162 -0.8505869295512368 -0.07656434047780775 0.5202305037613593 0.8505869295512368 0.07656434047780775 -0.5202305037613593 0.625589589694931 -0.09499442026280379 0.7743472899056741 -0.625589589694931 0.09499442026280379 -0.7743472899056741 -0.6120926070614714 -0.1234322633736009 0.781093539045844 0.6120926070614714 0.1234322633736009 -0.781093539045844 0.6121141719640919 -0.1235155841382136 0.7810634679433613 -0.6121141719640919 0.1235155841382136 -0.7810634679433613 -0.6341573082842825 -0.07317161945134183 0.7697339946088529 0.6341573082842825 0.07317161945134183 -0.7697339946088529</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1642\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"72\" source=\"#ID1645\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1645\">6.755113598492128 -1.28818411616344 6.276391367870363 -1.273598846461514 6.276668932229784 -1.187747990949572 7.931538674230804 -1.244918489932155 7.460416922470831 -1.173652500424159 7.93125667663631 -1.159067643361002 6.756122927852144 -1.200172844248997 6.755846175862104 -1.286023391469558 6.277401224106905 -1.185588107884238 7.932052753930135 -1.242815736372001 7.461212451825801 -1.257400882197142 7.460930856031394 -1.171550344724229 -16.24728231087358 -0.5177389912904121 -16.24082968313403 -0.4320383646962481 -15.63674559141635 -0.522933243591203 21.33544447558737 -0.2403093091453216 21.34160053997291 -0.3260234353371425 20.8266311479033 -0.245503588039401 -14.79313507739231 5.22963607387074 -14.28798007840902 5.22391645303245 -14.19140803992131 5.129532450942014 21.07322891855065 0.4447104957203296 21.58663672369534 0.3582394118802513 20.97308269046432 0.3526603727741297 -19.9633255362985 -0.1517282072863839 -20.07221720636866 -0.06604333244753349 -19.63250515425505 0.6712456823300048 20.27214182428386 -0.2232742610814208 20.16325015490548 -0.3089591364643262 19.94132142720788 0.5996982122972813 -20.07221849283267 -0.06604289288495532 -19.74139811312834 0.7569295761315995 -19.63250644281464 0.671246122666006 19.94132023358347 0.5996979883382857 20.16324895809792 -0.3089593609044395 19.83242856390492 0.514014534373161 -20.08491412531244 0.3303765089605132 -20.19370065774289 0.4161425699128248 -19.6633247007291 1.067396790538526 19.49744157309759 0.9665899046439173 19.38868477230044 0.8808005122531655 19.12419723176296 1.626790324292759 -19.89337726924902 0.2264197868138914 -19.52255720459599 0.887465042970309 -19.36501226868057 0.8786847869640739 19.28749393754247 1.64325076531458 19.55080638375404 0.8970037444619536 19.12986222150346 1.651634634500309 -19.43161350839342 0.1546049060511749 -19.58914529491563 0.1635299724358948 -19.14541499575194 0.6986655174245279 19.35649336917293 2.380108223234186 19.1988756900863 2.388653849969002 19.05833933438694 2.89366112135713 -19.11172399431847 -0.2679135574191213 -18.82266012345276 0.2488447054826669 -18.6765281188492 0.2715418004460036 19.44731916119307 2.757970496121026 19.5796641290889 2.25159550389601 19.30116719062189 2.780587894495063 -16.76336612554423 -6.302297048279994 -16.45337271801021 -5.677936043669404 -16.62145283987993 -6.266699761521001 20.20919753439371 2.199007422694983 20.06728409754036 2.234604336452552 20.04109973271386 2.787767615572082 -16.59522296582594 -5.713583036091153 -16.45332255721194 -5.677988345851003 -16.76331323493317 -6.30235018920447 20.041108713796 2.787719521374515 20.06729093591975 2.234556179490449 19.8992081362568 2.823313794863152</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 3 6 4 2 5 8 6 0 7 2 8 1 9 10 10 6 11 12 12 8 13 13 14 6 15 10 16 16 17 8 18 18 19 13 20 16 21 10 22 20 23 13 24 18 25 22 26 16 27 20 28 24 29 18 30 26 31 22 32 24 33 20 34 28 35 22 36 26 37 30 38 24 39 28 40 32 41 26 42 34 43 30 44 32 45 28 46 36 47 30 48 34 49 38 50 32 51 36 52 40 53 34 54 42 55 38 56 40 57 36 58 44 59 42 60 46 61 38 62 40 63 44 64 48 65 50 66 46 67 42 68 48 69 44 70 52 71</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1641\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1642\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 7 4 3 5 9 7 11 4 14 9 15 17 11 7 14 19 9 21 11 17 23 19 14 25 21 17 23 27 19 29 21 25 31 27 23 33 29 25 31 35 27 37 29 33 39 35 31 41 37 33 39 43 35 45 37 41 39 47 43 49 45 41 43 47 51 53 45 49</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1641\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1646\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1649\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1647\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1648\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1647\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"72\" source=\"#ID1651\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"216\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1651\">0.006833886727690697 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.1739678084850311 -0.02579164505004883 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 -0.003804403357207775 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.003717809915542603 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1648\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"72\" source=\"#ID1652\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"216\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1652\">0.9998049716621695 0.003265724132970699 -0.01947700401745051 0.6962336060517574 -0.1186870162805717 0.7079351368385252 0.9998049107848057 -0.003265929304979619 0.01948009436223057 -0.9998049107848057 0.003265929304979619 -0.01948009436223057 -0.6962336060517574 0.1186870162805717 -0.7079351368385252 -0.9998049716621695 -0.003265724132970699 0.01947700401745051 2.619829425874514e-011 0.9963636286193238 0.08520281429937872 -4.558107797513391e-018 0.9963634276886537 0.08520516395452349 -1.705110882004213e-005 0.9963684474014146 0.08514644286260223 1.705110882004213e-005 -0.9963684474014146 -0.08514644286260223 4.558107797513391e-018 -0.9963634276886537 -0.08520516395452349 -2.619829425874514e-011 -0.9963636286193238 -0.08520281429937872 0.7159194915021295 -0.1154425096916523 0.6885726603949834 -0.7159194915021295 0.1154425096916523 -0.6885726603949834 0.6962354344651125 0.118687547969271 -0.707933249503241 -0.6962354344651125 -0.118687547969271 0.707933249503241 8.864681295471469e-011 0.9963669954613724 0.08516343320508928 -8.864681295471469e-011 -0.9963669954613724 -0.08516343320508928 -2.176765036235961e-005 0.9963588062953948 0.08525918509923451 2.176765036235961e-005 -0.9963588062953948 -0.08525918509923451 6.96112966911225e-024 -0.9963651261403207 -0.08518530044193647 1.566060733247115e-011 -0.9963648425785238 -0.08518861704167753 -8.274059926537097e-006 -0.9963661779121036 -0.08517299715500586 8.274059926537097e-006 0.9963661779121036 0.08517299715500586 -1.566060733247115e-011 0.9963648425785238 0.08518861704167753 -6.96112966911225e-024 0.9963651261403207 0.08518530044193647 -2.471863667802537e-006 -0.1653464355874766 0.9862355480474259 2.471863667802537e-006 0.1653464355874766 -0.9862355480474259 -1.493160568799804e-005 -0.9963635068379099 -0.08520423709364172 3.03852199377559e-018 -0.9963647790799293 -0.08518935971706705 -3.03852199377559e-018 0.9963647790799293 0.08518935971706705 1.493160568799804e-005 0.9963635068379099 0.08520423709364172 0.7159269080944584 0.1154408704105128 -0.6885652240021801 -0.7159269080944584 -0.1154408704105128 0.6885652240021801 1.705156827135167e-005 0.9963684473730702 0.08514644319419053 -1.705156827135167e-005 -0.9963684473730702 -0.08514644319419053 1.131742397740694e-010 0.99636066224498 0.08523749603751304 -1.131742397740694e-010 -0.99636066224498 -0.08523749603751304 4.302158584745926e-011 -0.9963668826780806 -0.08516475269948359 -4.302158584745926e-011 0.9963668826780806 0.08516475269948359 -2.593857004538737e-006 -0.1653464337092199 0.98623554836201 2.593857004538737e-006 0.1653464337092199 -0.98623554836201 7.76297641547973e-011 -0.9963622345947807 -0.08521911448316716 -7.76297641547973e-011 0.9963622345947807 0.08521911448316716 -1.559712169649621e-006 0.1653464004706182 -0.9862355539367748 1.559712169649621e-006 -0.1653464004706182 0.9862355539367748 0 0.9963634276886574 0.08520516395448119 -0 -0.9963634276886574 -0.08520516395448119 -0.6962457922026375 -0.1186868026290101 0.7079231877271882 0.6962457922026375 0.1186868026290101 -0.7079231877271882 -1.627571474248932e-006 0.1653464000348263 -0.9862355540097275 1.627571474248932e-006 -0.1653464000348263 0.9862355540097275 2.176823690354987e-005 0.9963588063316035 0.08525918467594232 -2.176823690354987e-005 -0.9963588063316035 -0.08525918467594232 8.274282878190502e-006 -0.9963661779258559 -0.08517299699410662 -8.274282878190502e-006 0.9963661779258559 0.08517299699410662 1.493200802520914e-005 -0.9963635068130742 -0.08520423738399643 -1.493200802520914e-005 0.9963635068130742 0.08520423738399643 -0.7159325878051063 -0.1154387083727279 0.6885596810211297 -0.9998049490353376 -0.003265232502298848 0.01947824789738779 0.9998049490353376 0.003265232502298848 -0.01947824789738779 0.7159325878051063 0.1154387083727279 -0.6885596810211297 -0.6962484674923013 0.1186859181289345 -0.7079207048480173 0.6962484674923013 -0.1186859181289345 0.7079207048480173 -0.7159407679065135 0.1154380930984608 -0.6885512787811979 0.7159407679065135 -0.1154380930984608 0.6885512787811979 0 -0.9963651261403206 -0.08518530044193662 -0 0.9963651261403206 0.08518530044193662 0 -0.9963647790799293 -0.08518935971706705 -0 0.9963647790799293 0.08518935971706705 -0.999805002135868 0.003265123499963573 -0.01947554036804029 0.999805002135868 -0.003265123499963573 0.01947554036804029</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1650\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"95\" source=\"#ID1653\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"190\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1653\">-3.78385647797872 -0.5368291555505009 -1.739423843074547 -0.1799178917846214 -1.730899181380262 -0.2436144662387565 0.03804403357207777 -0.08565411079277659 -0.06833886727690695 -0.08565411079277659 -0.03717809915542601 -0.02648206485871089 -3.783857775120314 -0.5368237240548432 -3.792386478312588 -0.4731251089819596 -1.739424462173343 -0.1799148638363466 -3.784698469383545 -0.5599226070787846 -3.793227792223549 -0.4962241689968014 -1.740270053687452 -0.2030113945499858 0.03810357741858603 -0.08560710535715624 -0.03711833609852653 -0.02643488697022119 0.03810388751150448 -0.001919473357293152 0.03804403357207775 -0.08544425710045202 -0.03717809915542603 -0.1446184544504857 -0.06833886727690697 -0.08544425710045202 0.06833886727690698 -0.2181024719236225 -0.03804403357207774 -0.2181024719236225 0.03717809915542604 -0.1589278689549507 -3.517503574711176 -1.209469476160321 -1.637576351005736 -0.4899506188661591 -1.60714885377694 -0.5493620486491635 0.06833886727690695 -0.2180778897768378 0.03717809915542601 -0.2772523574934656 -0.03804403357207777 -0.2180778897768378 -3.784698522544912 -0.5599223776129466 -1.740270065876921 -0.2030113103218567 -1.731733911942559 -0.2667089309541987 0.1132058439606109 -0.02643471249641912 0.03798448923867157 -0.08560693088335417 0.03798417914344956 -0.001919298883491098 0.03811965220128281 -0.1691909148496111 -0.03710236454502762 -0.1446784631501363 0.03812004841057926 -0.08550448624906966 0.03724127751810454 -0.1589778357249278 -0.03798096162057727 -0.2181523549831544 -0.03798081115040063 -0.1344687724317231 -3.547781940744175 -1.150334764731821 -1.637511752180902 -0.4900819857319114 -3.517351359849356 -1.209742491236282 0.03729172604245902 -0.2771623376993361 -0.03793048631065454 -0.3016756919196557 -0.03793021458618022 -0.2179877188646143 -1.622869320241991 -0.5449599752267526 -3.502771782515439 -1.264521850803344 -3.533202545114582 -1.205112314602253 0.144423209130764 -0.08565411079277664 0.03804403357207775 -0.08565411079277664 0.1132656075060368 -0.02648206485871096 3.519634907072213 -1.200727860576276 1.578861299940099 -0.600021575930721 1.609289010118138 -0.5406106514737369 -1.592426711040016 -0.6043974690281462 -3.502736577798566 -1.264582249258277 -1.622854449132616 -0.5449874998115688 0.1131898722603979 -0.1446782402197432 0.03796841430849378 -0.169190691919218 0.03796801809625403 -0.08550426331867661 -0.03810710598162181 -0.2181524396493085 -0.1133287863275493 -0.1589779203910819 -0.03810725645291624 -0.1344688570978772 -0.03815758164282528 -0.3016758448048321 -0.1133792352029856 -0.2771624905845126 -0.03815785336931814 -0.2179878717497908 0.144423209130764 -0.08544425710045202 0.1132656075060368 -0.1446184544504857 1.734209016599792 -0.2025127584334603 3.787171555676506 -0.4957207377102524 1.725684806598952 -0.2662084117049909 3.489078071152921 -1.26036719741202 1.578795133082179 -0.6001312260728746 3.519507670502645 -1.200959597629099 1.620728963620361 -0.5537166486525158 3.561488423218359 -1.154458092708701 3.531057906240408 -1.213867268921171 1.65114379992236 -0.4943292451528582 3.561461871548045 -1.15450872025842 1.620716584679031 -0.5537389422427166 -0.03804403357207775 -0.2181024719236225 -0.144423209130764 -0.2181024719236225 -0.1132656075060368 -0.1589278689549507 -0.03804403357207775 -0.2180778897768378 -0.1132656075060368 -0.2772523574934656 -0.144423209130764 -0.2180778897768378 1.74548602931454 -0.1804100699957148 3.798444775978536 -0.473618476292029 1.736950304149554 -0.2441067676099537 3.787172504572145 -0.4957159662352187 3.778644209862403 -0.5594136565925029 1.725685475162031 -0.2662051984582139 3.798444758146664 -0.4736185545995512 3.789915866690295 -0.5373160698634416 1.736950303257186 -0.2441067517590004</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 0 6 12 7 1 8 14 9 0 10 2 11 6 12 8 13 16 14 6 15 18 16 7 17 20 18 21 19 22 20 12 21 26 22 1 23 20 24 28 25 29 26 14 27 2 28 32 29 34 30 6 31 16 32 36 33 18 34 6 35 22 36 21 37 38 38 40 39 26 40 12 41 28 42 42 43 21 44 32 45 44 46 14 47 46 48 6 49 34 50 40 51 48 52 26 53 50 54 44 55 32 56 52 57 36 58 6 59 21 60 54 61 38 62 42 63 56 64 21 65 46 66 52 67 6 15 48 68 58 69 59 70 58 71 48 72 40 73 50 74 62 75 44 76 64 77 62 78 50 79 21 80 66 81 54 82 68 83 56 84 66 85 59 86 70 87 64 88 58 89 70 90 59 91 70 92 62 93 64 94</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1649\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1650\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 9 10 11 4 13 5 3 5 15 17 9 11 10 19 11 23 24 25 4 27 13 30 31 25 33 3 15 17 11 35 11 19 37 39 24 23 13 27 41 24 43 31 15 45 33 35 11 47 27 49 41 33 45 51 11 37 53 39 55 24 24 57 43 11 53 47 60 61 49 41 49 61 45 63 51 51 63 65 55 67 24 67 57 69 65 71 60 60 71 61 65 63 71</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1649\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1654\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1657\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1655\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1656\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1655\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1659\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1659\">0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1656\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1660\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"144\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1660\">-0.0006593742600013772 -0.9466403948768872 0.3222910610192537 -0.002128573944177214 -0.9461004970595006 0.3238662048388656 -0.01833442080583775 -0.9398353448568709 0.3411354182307682 0.01833442080583775 0.9398353448568709 -0.3411354182307682 0.002128573944177214 0.9461004970595006 -0.3238662048388656 0.0006593742600013772 0.9466403948768872 -0.3222910610192537 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.01522418468072721 -0.9521791109850349 0.305160883477152 -0.01522418468072721 0.9521791109850349 -0.305160883477152 0.02689478553277844 -0.1144978889026558 0.9930593657722489 0.0210125908849934 -0.1114018274912128 0.9935532717755591 0.01363640320789622 -0.1075131122113731 0.9941101444056268 -0.01363640320789622 0.1075131122113731 -0.9941101444056268 -0.0210125908849934 0.1114018274912128 -0.9935532717755591 -0.02689478553277844 0.1144978889026558 -0.9930593657722489 0.03896795812420601 -0.07191116297063634 -0.996649528610655 -0.04549002213706894 -0.03999100863499665 -0.9981640031148813 0.01346607256353736 -0.06232216632515028 -0.9979652361050727 -0.01346607256353736 0.06232216632515028 0.9979652361050727 0.04549002213706894 0.03999100863499665 0.9981640031148813 -0.03896795812420601 0.07191116297063634 0.996649528610655 -1 0 0 1 -0 -0 -0.07063030013069079 -0.03039912455602881 -0.9970392439265747 0.07063030013069079 0.03039912455602881 0.9970392439265747 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0.007591344819378201 -0.1043209431433819 0.9945147119603152 -0.007591344819378201 0.1043209431433819 -0.9945147119603152 -0.02847752976912464 0.9412040415617694 0.3366362761884698 -0.01944613168993581 0.9390402948574675 0.3432567152967266 -0.01571426971207608 0.938110735387483 0.3459787708489812 0.01571426971207608 -0.938110735387483 -0.3459787708489812 0.01944613168993581 -0.9390402948574675 -0.3432567152967266 0.02847752976912464 -0.9412040415617694 -0.3366362761884698 1 0 0 -1 -0 -0 -0.006449925473110886 0.9357134779221441 0.3527019785828205 0.006449925473110886 -0.9357134779221441 -0.3527019785828205</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1658\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"32\" source=\"#ID1661\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"64\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1661\">0.5962178185185005 -3.153222447198755 -0.3076784558028441 -3.788853636176019 -0.3132526899849421 -3.129932065461746 9.122759699821472 -0.7230144093434017 9.408553242683411 -1.342410018046697 7.024862170219421 -1.477709011236827 0.2672582030481958 -3.587867602238631 -0.6416294861636938 -3.53482038775765 0.2714787355169092 -2.907390154659175 -1.685713180447373 -7.121351341609589 -2.564360875834735 -6.935206370602908 -1.290641924854021 -5.788995093053979 -3.77882935994712 4.538055591439239 -4.914503516199181 6.192265767175461 -2.972304828267201 4.869390074315862 7.431445717811585 -0.5834498077630997 6.603824181796629 1.760979977168799 8.447879157900552 3.168090786832034 8.812832047182409 2.511125951417969 -9.414598345756531 -1.39292692343394 -9.150596261024475 -0.7449076980352403 -7.422901391983032 -0.5882037063439688 -1.152089188980093 -7.16611278359242 -1.029338308238922 -5.831802174445271 -0.1220151584815939 -5.87725193204454 0.703505908083516 0.4640800664009921 -0.2056379982005104 0.4928598836778991 0.7158020717300879 1.413768038128628 -7.009677290916443 -1.450608934958776 -0.3694934503598784 0.5882635765330485 -0.3666451411266298 1.509896919897033 0.5424926673391237 1.514977305889284</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 12 6 1 7 0 8 14 9 15 10 16 11 20 12 21 13 22 14 26 15 6 3 8 5 22 16 21 17 28 18 30 19 31 20 32 21 15 22 36 23 16 24 38 25 39 26 40 27 30 19 32 21 44 28 39 29 46 30 40 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1657\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1658\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 9 10 11 5 4 13 17 18 19 23 24 25 9 11 27 29 24 23 33 34 35 17 37 18 41 42 43 45 33 35 41 47 42</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1657\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1662\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1665\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1663\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1664\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1663\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1666\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"30\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1666\">0.5354120135307312 -1.17527174949646 -0.07834970951080322 0.562521755695343 -1.151860475540161 -0.07491381466388702 0.5547160506248474 -1.150959491729736 -0.06465452164411545 0.5547160506248474 -1.150959491729736 -0.06465452164411545 0.562521755695343 -1.151860475540161 -0.07491381466388702 0.5354120135307312 -1.17527174949646 -0.07834970951080322 0.5319939255714417 -1.170861482620239 -0.06753732264041901 0.5319939255714417 -1.170861482620239 -0.06753732264041901 0.4903435707092285 -1.175581336021423 -0.08379843086004257 0.4903435707092285 -1.175581336021423 -0.08379843086004257</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1664\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1667\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"30\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1667\">-0.2763363380720035 0.8551502778352715 -0.4385843483062444 -0.5409053186076919 0.695722716937777 -0.4726429280531225 -0.5430156278659727 0.6958912225936584 -0.4699674820776719 0.5430156278659727 -0.6958912225936584 0.4699674820776719 0.5409053186076919 -0.695722716937777 0.4726429280531225 0.2763363380720035 -0.8551502778352715 0.4385843483062444 -0.2920370970250125 0.849742049015813 -0.4389222984716212 0.2920370970250125 -0.849742049015813 0.4389222984716212 0.03799590451241128 0.9294106667549519 -0.3670859896024359 -0.03799590451241128 -0.9294106667549519 0.3670859896024359</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 8 0 6 7 5 9</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1665\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1668\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1671\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1669\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1670\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1669\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1672\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1672\">0.5576969385147095 -1.15022337436676 -0.1041795313358307 0.5330261588096619 -1.171381711959839 -0.1073039323091507 0.5314076542854309 -1.169530868530273 -0.09279186278581619 0.5314076542854309 -1.169530868530273 -0.09279186278581619 0.5330261588096619 -1.171381711959839 -0.1073039323091507 0.5576969385147095 -1.15022337436676 -0.1041795313358307</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1670\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1673\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1673\">0.6295919600173455 -0.7587678132981195 0.1669891295393434 0.6295919600173455 -0.7587678132981195 0.1669891295393434 0.6295919600173455 -0.7587678132981195 0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1671\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1674\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1677\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1675\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1676\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1675\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1679\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4554\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1679\">0.4636488556861877 -1.158051013946533 -0.2167745679616928 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4636488556861877 -1.158051013946533 -0.2167745679616928 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4745834171772003 -1.166073203086853 -0.2129503935575485 0.4745834171772003 -1.166073203086853 -0.2129503935575485 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4532370567321777 -1.161874890327454 -0.2219637185335159 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4532370567321777 -1.161874890327454 -0.2219637185335159 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4667462110519409 -1.171931743621826 -0.2178431153297424 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4667462110519409 -1.171931743621826 -0.2178431153297424 0.4605698585510254 -1.126953125 -0.2246965765953064 0.4605698585510254 -1.126953125 -0.2246965765953064 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4839742183685303 -1.178971529006958 -0.21320441365242 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839742183685303 -1.178971529006958 -0.21320441365242 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4885714054107666 -1.171796083450317 -0.2086967974901199 0.4885714054107666 -1.171796083450317 -0.2086967974901199 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.5035322308540344 -1.182219982147217 -0.2082613259553909 0.5035322308540344 -1.182219982147217 -0.2082613259553909 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4692953824996948 -1.117928266525269 -0.2261810004711151 0.4692953824996948 -1.117928266525269 -0.2261810004711151 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.5044348835945129 -1.174407243728638 -0.2041947245597839 0.5044348835945129 -1.174407243728638 -0.2041947245597839 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5234974026679993 -1.181341052055359 -0.2032404690980911 0.5234974026679993 -1.181341052055359 -0.2032404690980911 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.481840968132019 -1.111177086830139 -0.2272232472896576 0.481840968132019 -1.111177086830139 -0.2272232472896576 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5206239223480225 -1.173695206642151 -0.1996323019266129 0.5206239223480225 -1.173695206642151 -0.1996323019266129 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.5355482697486877 -1.169721484184265 -0.1951994001865387 0.5355482697486877 -1.169721484184265 -0.1951994001865387 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5419154763221741 -1.176581740379334 -0.1983370929956436 0.5419154763221741 -1.176581740379334 -0.1983370929956436 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.49695885181427 -1.107329487800598 -0.2279713302850723 0.49695885181427 -1.107329487800598 -0.2279713302850723 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4944649934768677 -1.099338173866272 -0.232122465968132 0.4944649934768677 -1.099338173866272 -0.232122465968132 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5477467775344849 -1.16288423538208 -0.1910746395587921 0.5477467775344849 -1.16288423538208 -0.1910746395587921 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5569940805435181 -1.168012976646423 -0.1938970983028412 0.5569940805435181 -1.168012976646423 -0.1938970983028412 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5131818056106567 -1.106769561767578 -0.2286092787981033 0.5131818056106567 -1.106769561767578 -0.2286092787981033 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5144700407981873 -1.09870171546936 -0.2323014289140701 0.5144700407981873 -1.09870171546936 -0.2323014289140701 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5560302138328552 -1.153861403465271 -0.1874096095561981 0.5560302138328552 -1.153861403465271 -0.1874096095561981 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5289202332496643 -1.109543561935425 -0.2293297797441483 0.5289202332496643 -1.109543561935425 -0.2293297797441483 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5338693857192993 -1.102164149284363 -0.232584223151207 0.5338693857192993 -1.102164149284363 -0.232584223151207 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5716711282730103 -1.144144535064697 -0.1867542266845703 0.5716711282730103 -1.144144535064697 -0.1867542266845703 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5426270365715027 -1.115358591079712 -0.2303158938884735 0.5426270365715027 -1.115358591079712 -0.2303158938884735 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5507592558860779 -1.10938823223114 -0.233196958899498 0.5507592558860779 -1.10938823223114 -0.233196958899498 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5698375701904297 -1.131062269210815 -0.1842824816703796 0.5698375701904297 -1.131062269210815 -0.1842824816703796 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5580675601959229 -1.132967352867127 -0.1818155646324158 0.5580675601959229 -1.132967352867127 -0.1818155646324158 0.5529654026031494 -1.12365186214447 -0.2317251414060593 0.5529654026031494 -1.12365186214447 -0.2317251414060593 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5634716749191284 -1.119650483131409 -0.234331026673317 0.5634716749191284 -1.119650483131409 -0.234331026673317 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5516188144683838 -1.123155951499939 -0.1799236834049225 0.5516188144683838 -1.123155951499939 -0.1799236834049225 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5619267821311951 -1.118939995765686 -0.1825531870126724 0.5619267821311951 -1.118939995765686 -0.1825531870126724 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5707834362983704 -1.131942868232727 -0.2361352443695068 0.5707834362983704 -1.131942868232727 -0.2361352443695068 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5408812165260315 -1.115089893341065 -0.1785658150911331 0.5408812165260315 -1.115089893341065 -0.1785658150911331 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5485350489616394 -1.108938336372376 -0.1814902722835541 0.5485350489616394 -1.108938336372376 -0.1814902722835541 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.5719619989395142 -1.145043611526489 -0.2386840134859085 0.5719619989395142 -1.145043611526489 -0.2386840134859085 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5268968939781189 -1.109560012817383 -0.1776151955127716 0.5268968939781189 -1.109560012817383 -0.1776151955127716 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5314382910728455 -1.10209047794342 -0.1809175610542297 0.5314382910728455 -1.10209047794342 -0.1809175610542297 0.5558396577835083 -1.154414772987366 -0.2393956333398819 0.5558396577835083 -1.154414772987366 -0.2393956333398819 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5667877793312073 -1.157662510871887 -0.2419774681329727 0.5667877793312073 -1.157662510871887 -0.2419774681329727 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5119343400001526 -1.099033117294312 -0.180652067065239 0.5119343400001526 -1.099033117294312 -0.180652067065239 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5110345482826233 -1.107124924659729 -0.1769119054079056 0.5110345482826233 -1.107124924659729 -0.1769119054079056 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5473005175590515 -1.163247227668762 -0.2431076467037201 0.5473005175590515 -1.163247227668762 -0.2431076467037201 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5560925006866455 -1.168561935424805 -0.2459687143564224 0.5560925006866455 -1.168561935424805 -0.2459687143564224 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4919718503952026 -1.100103139877319 -0.1804688721895218 0.4919718503952026 -1.100103139877319 -0.1804688721895218 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.494856595993042 -1.108041167259216 -0.1762722134590149 0.494856595993042 -1.108041167259216 -0.1762722134590149 0.5345627069473267 -1.169810295104981 -0.2472778558731079 0.5345627069473267 -1.169810295104981 -0.2472778558731079 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5405961871147156 -1.176667809486389 -0.2504985928535461 0.5405961871147156 -1.176667809486389 -0.2504985928535461 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.4799317121505737 -1.112206339836121 -0.1754997223615646 0.4799317121505737 -1.112206339836121 -0.1754997223615646 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.5194347500801086 -1.173466086387634 -0.251732736825943 0.5194347500801086 -1.173466086387634 -0.251732736825943 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5219248533248901 -1.18116819858551 -0.2553885877132416 0.5219248533248901 -1.18116819858551 -0.2553885877132416 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4677366316318512 -1.119231224060059 -0.1744198352098465 0.4677366316318512 -1.119231224060059 -0.1744198352098465 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.5032081604003906 -1.173833608627319 -0.2562981843948364 0.5032081604003906 -1.173833608627319 -0.2562981843948364 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5019099116325378 -1.181609272956848 -0.2604122757911682 0.5019099116325378 -1.181609272956848 -0.2604122757911682 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4594584703445435 -1.128440141677856 -0.172881230711937 0.4594584703445435 -1.128440141677856 -0.172881230711937 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4870093464851379 -1.170987844467163 -0.2608384788036346 0.4870093464851379 -1.170987844467163 -0.2608384788036346 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4819841086864471 -1.178058624267578 -0.2653992772102356 0.4819841086864471 -1.178058624267578 -0.2653992772102356 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4729524850845337 -1.164982080459595 -0.2651008367538452 0.4729524850845337 -1.164982080459595 -0.2651008367538452 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4647094905376434 -1.170600295066834 -0.2700395882129669 0.4647094905376434 -1.170600295066834 -0.2700395882129669 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.4627623558044434 -1.156416177749634 -0.2688753008842468 0.4627623558044434 -1.156416177749634 -0.2688753008842468 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4649145305156708 -1.160146474838257 -0.1646309047937393 0.4649145305156708 -1.160146474838257 -0.1646309047937393 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4546861052513123 -1.164170503616333 -0.1697998344898224 0.4546861052513123 -1.164170503616333 -0.1697998344898224 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.47580885887146 -1.168325185775757 -0.1607684940099716 0.47580885887146 -1.168325185775757 -0.1607684940099716 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4680851995944977 -1.174239277839661 -0.1656459718942642 0.4680851995944977 -1.174239277839661 -0.1656459718942642 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4899028539657593 -1.173924684524536 -0.1565033048391342 0.4899028539657593 -1.173924684524536 -0.1565033048391342 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4854431748390198 -1.181017994880676 -0.1610624641180039 0.4854431748390198 -1.181017994880676 -0.1610624641180039 0.4604437947273254 -1.125065088272095 -0.276747465133667 0.4604437947273254 -1.125065088272095 -0.276747465133667 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.5050500631332398 -1.184240102767944 -0.1560435742139816 0.5050500631332398 -1.184240102767944 -0.1560435742139816 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5058070421218872 -1.176416993141174 -0.1519948393106461 0.5058070421218872 -1.176416993141174 -0.1519948393106461 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.469342440366745 -1.116126656532288 -0.2782136499881744 0.469342440366745 -1.116126656532288 -0.2782136499881744 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5249907970428467 -1.183200836181641 -0.151024729013443 0.5249907970428467 -1.183200836181641 -0.151024729013443 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.521974503993988 -1.175574421882629 -0.1474335044622421 0.521974503993988 -1.175574421882629 -0.1474335044622421 0.4820057153701782 -1.109466791152954 -0.2792381644248962 0.4820057153701782 -1.109466791152954 -0.2792381644248962 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.5368162989616394 -1.171478390693665 -0.1430082470178604 0.5368162989616394 -1.171478390693665 -0.1430082470178604 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5433157086372376 -1.178148150444031 -0.1461730748414993 0.5433157086372376 -1.178148150444031 -0.1461730748414993 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.4971978068351746 -1.105741739273071 -0.2799796760082245 0.4971978068351746 -1.105741739273071 -0.2799796760082245 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4948467612266541 -1.097743153572083 -0.2841138243675232 0.4948467612266541 -1.097743153572083 -0.2841138243675232 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5488884449005127 -1.164548993110657 -0.1389009952545166 0.5488884449005127 -1.164548993110657 -0.1389009952545166 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5582281947135925 -1.169593691825867 -0.1417096853256226 0.5582281947135925 -1.169593691825867 -0.1417096853256226 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5134349465370178 -1.10530686378479 -0.2806179523468018 0.5134349465370178 -1.10530686378479 -0.2806179523468018 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5148717761039734 -1.097256898880005 -0.2842935025691986 0.5148717761039734 -1.097256898880005 -0.2842935025691986 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5570006370544434 -1.155444264411926 -0.1352554857730866 0.5570006370544434 -1.155444264411926 -0.1352554857730866 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5291153788566589 -1.108209729194641 -0.2813448011875153 0.5291153788566589 -1.108209729194641 -0.2813448011875153 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5342056155204773 -1.100881338119507 -0.2845841646194458 0.5342056155204773 -1.100881338119507 -0.2845841646194458 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5724602341651917 -1.145607948303223 -0.1346215158700943 0.5724602341651917 -1.145607948303223 -0.1346215158700943 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5427180528640747 -1.114132642745972 -0.2823444902896881 0.5427180528640747 -1.114132642745972 -0.2823444902896881 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5509542226791382 -1.108233690261841 -0.2852115333080292 0.5509542226791382 -1.108233690261841 -0.2852115333080292 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5703842043876648 -1.132545948028565 -0.1321807950735092 0.5703842043876648 -1.132545948028565 -0.1321807950735092 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5586453080177307 -1.134552240371704 -0.12970831990242 0.5586453080177307 -1.134552240371704 -0.12970831990242 0.552798330783844 -1.122508764266968 -0.2837682664394379 0.552798330783844 -1.122508764266968 -0.2837682664394379 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5634849667549133 -1.118594884872437 -0.2863717079162598 0.5634849667549133 -1.118594884872437 -0.2863717079162598 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5520180463790894 -1.124776363372803 -0.1278393864631653 0.5520180463790894 -1.124776363372803 -0.1278393864631653 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5622471570968628 -1.120481729507446 -0.1304780244827271 0.5622471570968628 -1.120481729507446 -0.1304780244827271 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5705611705780029 -1.130938291549683 -0.2882024645805359 0.5705611705780029 -1.130938291549683 -0.2882024645805359 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5411297678947449 -1.116797208786011 -0.1264989823102951 0.5411297678947449 -1.116797208786011 -0.1264989823102951 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.548848032951355 -1.110594391822815 -0.1294268220663071 0.548848032951355 -1.110594391822815 -0.1294268220663071 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5715000629425049 -1.144049525260925 -0.2907814383506775 0.5715000629425049 -1.144049525260925 -0.2907814383506775 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5270463824272156 -1.111389398574829 -0.1255616396665573 0.5270463824272156 -1.111389398574829 -0.1255616396665573 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5314984917640686 -1.103869557380676 -0.1288754492998123 0.5314984917640686 -1.103869557380676 -0.1288754492998123 0.5552088022232056 -1.153280735015869 -0.2915137708187103 0.5552088022232056 -1.153280735015869 -0.2915137708187103 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5118945837020874 -1.100982189178467 -0.1286222636699677 0.5118945837020874 -1.100982189178467 -0.1286222636699677 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5111450552940369 -1.109081149101257 -0.1248650401830673 0.5111450552940369 -1.109081149101257 -0.1248650401830673 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5463075637817383 -1.162050008773804 -0.2952521145343781 0.5463075637817383 -1.162050008773804 -0.2952521145343781 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5551921725273132 -1.167435169219971 -0.2981182038784027 0.5551921725273132 -1.167435169219971 -0.2981182038784027 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4919535517692566 -1.102204203605652 -0.1284358650445938 0.4919535517692566 -1.102204203605652 -0.1284358650445938 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.4949806928634644 -1.110114693641663 -0.1242219507694244 0.4949806928634644 -1.110114693641663 -0.1242219507694244 0.5336343050003052 -1.168520212173462 -0.2994299232959747 0.5336343050003052 -1.168520212173462 -0.2994299232959747 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5396984219551086 -1.17541229724884 -0.3026644587516785 0.5396984219551086 -1.17541229724884 -0.3026644587516785 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.480143129825592 -1.114396691322327 -0.1234430968761444 0.480143129825592 -1.114396691322327 -0.1234430968761444 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.5184391140937805 -1.17204761505127 -0.3038930296897888 0.5184391140937805 -1.17204761505127 -0.3038930296897888 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5207850933074951 -1.179760098457336 -0.3075655698776245 0.5207850933074951 -1.179760098457336 -0.3075655698776245 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4683116972446442 -1.121699452400208 -0.1222783178091049 0.4683116972446442 -1.121699452400208 -0.1222783178091049 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.461048811674118 -1.131386756896973 -0.1205792278051376 0.461048811674118 -1.131386756896973 -0.1205792278051376 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4607804119586945 -1.152724027633667 -0.1155533939599991 0.4607804119586945 -1.152724027633667 -0.1155533939599991 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4680401384830475 -1.162484645843506 -0.1121409386396408 0.4680401384830475 -1.162484645843506 -0.1121409386396408 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4580906927585602 -1.166784763336182 -0.1172759383916855 0.4580906927585602 -1.166784763336182 -0.1172759383916855 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4794342219829559 -1.170353889465332 -0.1082139611244202 0.4794342219829559 -1.170353889465332 -0.1082139611244202 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4721178412437439 -1.176489114761353 -0.1130447238683701 0.4721178412437439 -1.176489114761353 -0.1130447238683701 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4938605427742004 -1.175561666488648 -0.1039053350687027 0.4938605427742004 -1.175561666488648 -0.1039053350687027 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4898883104324341 -1.182911038398743 -0.1083405017852783 0.4898883104324341 -1.182911038398743 -0.1083405017852783 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.5096529722213745 -1.185441017150879 -0.1033653542399406 0.5096529722213745 -1.185441017150879 -0.1033653542399406 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098979473114014 -1.177605509757996 -0.0993800014257431 0.5098979473114014 -1.177605509757996 -0.0993800014257431 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5294449925422669 -1.183813214302063 -0.09840545058250427 0.5294449925422669 -1.183813214302063 -0.09840545058250427 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5259718894958496 -1.176306962966919 -0.0948249101638794 0.5259718894958496 -1.176306962966919 -0.0948249101638794 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5405214428901672 -1.171802759170532 -0.09043388068675995 0.5405214428901672 -1.171802759170532 -0.09043388068675995 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5474494099617004 -1.178286552429199 -0.093544140458107 0.5474494099617004 -1.178286552429199 -0.093544140458107 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5521175265312195 -1.164524674415588 -0.08638119697570801 0.5521175265312195 -1.164524674415588 -0.08638119697570801 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5617793798446655 -1.169313788414002 -0.08915026485919952 0.5617793798446655 -1.169313788414002 -0.08915026485919952 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5596198439598084 -1.155208110809326 -0.08280808478593826 0.5596198439598084 -1.155208110809326 -0.08280808478593826 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5744172930717468 -1.144819259643555 -0.08224614709615707 0.5744172930717468 -1.144819259643555 -0.08224614709615707 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5714950561523438 -1.131919503211975 -0.07991252094507217 0.5714950561523438 -1.131919503211975 -0.07991252094507217 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.559681236743927 -1.134244561195374 -0.07743934541940689 0.559681236743927 -1.134244561195374 -0.07743934541940689 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5526447892189026 -1.124674439430237 -0.07563516497612 0.5526447892189026 -1.124674439430237 -0.07563516497612 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5625854730606079 -1.12008547782898 -0.07830538600683212 0.5625854730606079 -1.12008547782898 -0.07830538600683212 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5412472486495972 -1.116996884346008 -0.07435604929924011 0.5412472486495972 -1.116996884346008 -0.07435604929924011 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5485594868659973 -1.110581040382385 -0.07733217626810074 0.5485594868659973 -1.110581040382385 -0.07733217626810074 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5268322229385376 -1.111981153488159 -0.07346238195896149 0.5268322229385376 -1.111981153488159 -0.07346238195896149 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5307966470718384 -1.104349851608276 -0.0768328532576561 0.5307966470718384 -1.104349851608276 -0.0768328532576561 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5110327005386353 -1.102004647254944 -0.07660330086946487 0.5110327005386353 -1.102004647254944 -0.07660330086946487 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5107991099357605 -1.110127329826355 -0.07278375327587128 0.5107991099357605 -1.110127329826355 -0.07278375327587128 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5108838081359863 -1.106828689575195 -0.07990724593400955</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1676\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1680\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4554\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1680\">0.7116708837850373 0.7019521713401213 0.02806603505151321 0.5353173971062792 0.682865854756012 0.4971212213974565 0.737245834253374 0.3797311575543762 0.558813768493995 -0.737245834253374 -0.3797311575543762 -0.558813768493995 -0.5353173971062792 -0.682865854756012 -0.4971212213974565 -0.7116708837850373 -0.7019521713401213 -0.02806603505151321 0.7293853031182515 0.4062619024414093 0.5504074365593031 -0.7293853031182515 -0.4062619024414093 -0.5504074365593031 0.3217641207685286 0.832196716188115 0.4515711197051622 -0.3217641207685286 -0.832196716188115 -0.4515711197051622 0.8551425374279981 0.1137214122970094 -0.5057654407592304 0.8413495777315172 0.1893711133358783 -0.5062306485041452 -0.8413495777315172 -0.1893711133358783 0.5062306485041452 -0.8551425374279981 -0.1137214122970094 0.5057654407592304 -0.3800054119371152 -0.01453889161881108 0.9248699949338827 -0.3750179728961746 0.09078606260087684 0.9225613317510514 -0.379253227111593 -0.05515227528217267 0.9236477771621829 0.379253227111593 0.05515227528217267 -0.9236477771621829 0.3750179728961746 -0.09078606260087684 -0.9225613317510514 0.3800054119371152 0.01453889161881108 -0.9248699949338827 0.8189175815511282 -0.02914902590783115 0.5731704187369371 -0.8189175815511282 0.02914902590783115 -0.5731704187369371 -0.3666652985344028 -0.1470296851004238 0.9186614341257324 -0.3567323136201435 -0.1797042290898553 0.9167597539521685 0.3567323136201435 0.1797042290898553 -0.9167597539521685 0.3666652985344028 0.1470296851004238 -0.9186614341257324 0.4686066523877808 0.8829418569476178 0.02866151754199518 -0.4686066523877808 -0.8829418569476178 -0.02866151754199518 0.7524101408696786 0.4659479230344618 -0.465587277464002 -0.7524101408696786 -0.4659479230344618 0.465587277464002 0.8259665881004755 -0.2402942949423648 -0.5099390622023489 -0.8259665881004755 0.2402942949423648 0.5099390622023489 -0.362814134912121 0.111554295612124 0.925160279431868 0.362814134912121 -0.111554295612124 -0.925160279431868 0.8229490491338481 0.02578359544042075 0.5675297954608728 -0.8229490491338481 -0.02578359544042075 -0.5675297954608728 0.8318497362912086 -0.2056747177206577 -0.5154841672862265 -0.8318497362912086 0.2056747177206577 0.5154841672862265 -0.3282798987083118 -0.2624462240004592 0.9073887191341764 0.3282798987083118 0.2624462240004592 -0.9073887191341764 0.122880769654211 0.895041873632129 0.4287194431026854 -0.122880769654211 -0.895041873632129 -0.4287194431026854 -0.2545333500310454 -0.3210229160174924 -0.9122264308348006 -0.2471679512239378 -0.2985262902585059 -0.9218405816149861 -0.152416296237888 -0.4664354693319945 -0.8713249827648502 0.152416296237888 0.4664354693319945 0.8713249827648502 0.2471679512239378 0.2985262902585059 0.9218405816149861 0.2545333500310454 0.3210229160174924 0.9122264308348006 -0.3131325503241589 -0.1234551955288698 -0.9416511140674219 -0.2995098322824998 -0.1347925511896848 -0.9445235987045982 0.2995098322824998 0.1347925511896848 0.9445235987045982 0.3131325503241589 0.1234551955288698 0.9416511140674219 -0.7112062640457456 -0.7025334994503608 -0.02514621506555601 -0.5589728191536472 -0.6498545269164316 -0.5150130884682884 -0.9359964274276729 -0.3517817543255671 -0.01266037780873084 0.9359964274276729 0.3517817543255671 0.01266037780873084 0.5589728191536472 0.6498545269164316 0.5150130884682884 0.7112062640457456 0.7025334994503608 0.02514621506555601 -0.332993880196678 0.2202540363226734 0.9168441717299244 0.332993880196678 -0.2202540363226734 -0.9168441717299244 -0.328938048740701 -0.8033638405159231 -0.4963932914959336 -0.466090014478561 -0.8841596436575528 -0.03196596519306006 0.466090014478561 0.8841596436575528 0.03196596519306006 0.328938048740701 0.8033638405159231 0.4963932914959336 0.8306556856039417 -0.5565983328246119 0.0144716229465927 -0.8306556856039417 0.5565983328246119 -0.0144716229465927 0.6945338870796753 -0.5290705524739058 -0.4875520794776212 -0.6945338870796753 0.5290705524739058 0.4875520794776212 -0.1306456276842966 -0.866194015653377 -0.4823273237265885 -0.2464385877352586 -0.9684724233977866 -0.0364580250846064 0.2464385877352586 0.9684724233977866 0.0364580250846064 0.1306456276842966 0.866194015653377 0.4823273237265885 -0.3138510212708438 -0.2841832337118347 0.9059455977730303 0.3138510212708438 0.2841832337118347 -0.9059455977730303 0.2540901770460554 0.9666107038501276 0.03319531790878375 -0.2540901770460554 -0.9666107038501276 -0.03319531790878375 0.5643088165704985 0.7140801601412177 -0.4143007173943784 -0.5643088165704985 -0.7140801601412177 0.4143007173943784 -0.3139222174966849 0.05128821237034839 -0.9480624244393497 0.3139222174966849 -0.05128821237034839 0.9480624244393497 -0.9597648161928933 -0.2806352262868117 -0.00976562159678172 0.9597648161928933 0.2806352262868117 0.00976562159678172 -0.322037179718785 0.2144970607378 0.9221079469420136 0.322037179718785 -0.2144970607378 -0.9221079469420136 0.7616350347395199 -0.3651610676273299 0.5353218364186153 -0.7616350347395199 0.3651610676273299 -0.5353218364186153 -0.31677346396858 0.09264401157420453 -0.9439659208068825 0.31677346396858 -0.09264401157420453 0.9439659208068825 0.06287306268676872 -0.8760278543005509 -0.4781445142192458 -0.06287306268676872 0.8760278543005509 0.4781445142192458 -0.2570814061046293 -0.3475596914782427 0.9017269051629854 0.2570814061046293 0.3475596914782427 -0.9017269051629854 -0.07307391728897358 0.9059654040739069 0.4169974690969323 0.07307391728897358 -0.9059654040739069 -0.4169974690969323 -0.03938863183529962 -0.538048317326203 -0.8419931970655016 0.03938863183529962 0.538048317326203 0.8419931970655016 -0.9931138443770341 0.1171074856303961 0.003275502403372714 -0.9848207832588084 0.1734761948025066 0.005833926495086407 0.9848207832588084 -0.1734761948025066 -0.005833926495086407 0.9931138443770341 -0.1171074856303961 -0.003275502403372714 -0.8474248755763526 0.5305787100121511 0.01890271769469281 -0.8283161743331357 0.5598719726514161 0.02087317842424748 0.8283161743331357 -0.5598719726514161 -0.02087317842424748 0.8474248755763526 -0.5305787100121511 -0.01890271769469281 -0.2700042395207376 0.3208992526405757 0.9078113131568413 0.2700042395207376 -0.3208992526405757 -0.9078113131568413 0.07034711482529543 -0.5595881892235496 -0.8257798386478478 -0.07034711482529543 0.5595881892235496 0.8257798386478478 0.587272046502337 -0.8093880343899205 -0.001597868385652056 -0.587272046502337 0.8093880343899205 0.001597868385652056 0.5099095310147842 -0.7296686651050987 -0.4556049926680197 -0.5099095310147842 0.7296686651050987 0.4556049926680197 -0.2828630320997383 0.2426507848307525 -0.9279596444309216 0.2828630320997383 -0.2426507848307525 0.9279596444309216 0.1787474381172575 -0.5392555554077365 -0.8229537042436902 -0.1787474381172575 0.5392555554077365 0.8229537042436902 -0.03438013672743311 -0.9987521835622533 -0.0362226728477399 0.03438013672743311 0.9987521835622533 0.0362226728477399 -0.2512280346402211 -0.3570550449326406 0.8996644760681405 0.2512280346402211 0.3570550449326406 -0.8996644760681405 0.04869907658823495 0.9982759987746035 0.03276324480299457 -0.04869907658823495 -0.9982759987746035 -0.03276324480299457 0.3711498313041716 0.8484665325741075 -0.3772960983426096 -0.3711498313041716 -0.8484665325741075 0.3772960983426096 -0.6057320559409027 0.795127545577512 0.02934046130327287 0.6057320559409027 -0.795127545577512 -0.02934046130327287 -0.2698658743382608 0.2961595472264194 0.9162215520573003 0.2698658743382608 -0.2961595472264194 -0.9162215520573003 0.5816068301066244 -0.663602821211347 0.470494198533484 -0.5816068301066244 0.663602821211347 -0.470494198533484 -0.2686309993082194 0.2880621993603541 -0.9191613326888503 0.2686309993082194 -0.2880621993603541 0.9191613326888503 -0.5932621022767013 0.804464749553707 0.0296064980657997 0.5932621022767013 -0.804464749553707 -0.0296064980657997 0.2823812218328424 -0.4806794641766704 -0.830185580623405 -0.2823812218328424 0.4806794641766704 0.830185580623405 0.2505482073841761 -0.8378586389163725 -0.4849932957987971 -0.2505482073841761 0.8378586389163725 0.4849932957987971 -0.1747254219544659 -0.3953249454357398 0.9017700452105643 0.1747254219544659 0.3953249454357398 -0.9017700452105643 -0.269787438181167 0.8647912808873121 0.423498262925511 0.269787438181167 -0.8647912808873121 -0.423498262925511 -0.2021770691781843 0.3530693316193985 0.9134913681958636 -0.1918981575903566 0.3817008057313711 0.9041457802906834 0.1918981575903566 -0.3817008057313711 -0.9041457802906834 0.2021770691781843 -0.3530693316193985 -0.9134913681958636 0.1692723764072049 0.9176857401311533 -0.3594436603216075 -0.1692723764072049 -0.9176857401311533 0.3594436603216075 0.350213950657196 -0.9365358264104842 -0.0158377591442387 -0.350213950657196 0.9365358264104842 0.0158377591442387 0.3115077194688655 -0.8473674173878394 -0.4300365108461951 -0.3115077194688655 0.8473674173878394 0.4300365108461951 -0.2053704330187628 0.4066247173330662 -0.8902130781422446 0.2053704330187628 -0.4066247173330662 0.8902130781422446 -0.3625291776399519 0.9313584765223022 0.03382282616453856 0.3625291776399519 -0.9313584765223022 -0.03382282616453856 -0.03190857183921407 0.93184815621673 -0.3614427434583004 -0.1549911753047212 0.9873781432922444 0.03259045452922111 0.1549911753047212 -0.9873781432922444 -0.03259045452922111 0.03190857183921407 -0.93184815621673 0.3614427434583004 0.1733093536903892 -0.9842603919487195 -0.03457381616733454 -0.1733093536903892 0.9842603919487195 0.03457381616733454 -0.1804048848422663 -0.4056306790331152 0.8960568228366898 0.1804048848422663 0.4056306790331152 -0.8960568228366898 -0.108805433348809 0.4031123833662217 0.9086593333315748 0.108805433348809 -0.4031123833662217 -0.9086593333315748 0.3631414463665614 -0.8364782339863709 0.4104052314455118 -0.3631414463665614 0.8364782339863709 -0.4104052314455118 -0.1858169195835328 0.4347471399737442 -0.8811736472915747 0.1858169195835328 -0.4347471399737442 0.8811736472915747 -0.3566777150334399 0.933613505802546 0.03386486943136579 0.3566777150334399 -0.933613505802546 -0.03386486943136579 -0.1232384028517292 0.3821397865521475 0.9158501403594552 0.1232384028517292 -0.3821397865521475 -0.9158501403594552 -0.3718386216031298 0.9277963706743407 0.03049482001596008 0.3718386216031298 -0.9277963706743407 -0.03049482001596008 0.3769085707966882 -0.3788840177068252 -0.8452140737034208 -0.3769085707966882 0.3788840177068252 0.8452140737034208 0.4429179332453602 -0.7517449794132562 -0.4885726049796708 -0.4429179332453602 0.7517449794132562 0.4885726049796708 -0.08868578433421416 -0.404843097298547 0.9100752156974414 0.08868578433421416 0.404843097298547 -0.9100752156974414 -0.4722049908017236 0.7597220128569533 0.4470401658045096 0.4722049908017236 -0.7597220128569533 -0.4470401658045096 0.1349569415431963 -0.9904765886164998 -0.02725346458576107 -0.1349569415431963 0.9904765886164998 0.02725346458576107 0.1148517625882883 -0.9010483209033618 -0.4182355747991743 -0.1148517625882883 0.9010483209033618 0.4182355747991743 -0.1350424427577856 0.8787885333691383 -0.4577054208472182 0.1350424427577856 -0.8787885333691383 0.4577054208472182 -0.1391785592704044 0.989617306401859 0.03587360463270809 0.1391785592704044 -0.989617306401859 -0.03587360463270809 -0.02950439234126823 0.3883875311015432 0.9210236785867235 0.02950439234126823 -0.3883875311015432 -0.9210236785867235 -0.2379891605344312 0.891093379186692 -0.3864113728111002 0.2379891605344312 -0.891093379186692 0.3864113728111002 0.4018188507707239 -0.9154802688229474 -0.0209162272209588 -0.4018188507707239 0.9154802688229474 0.0209162272209588 -0.100085503680128 -0.4247726450810115 0.8997505720720472 0.100085503680128 0.4247726450810115 -0.8997505720720472 0.149269000632694 -0.9164617465126577 0.3712366261955926 -0.149269000632694 0.9164617465126577 -0.3712366261955926 -0.08635669052636709 0.5298659996736879 -0.8436732450369257 0.08635669052636709 -0.5298659996736879 0.8436732450369257 -0.03900572845106688 0.3769642007921201 0.9254061510867322 0.03900572845106688 -0.3769642007921201 -0.9254061510867322 -0.667625789639097 0.5691203515451191 0.4799769061797995 0.667625789639097 -0.5691203515451191 -0.4799769061797995 -0.6097550454350776 0.7922787176737801 0.022208513855214 0.6097550454350776 -0.7922787176737801 -0.022208513855214 0.4545986938444905 -0.2369848167058383 -0.8585908363159855 -0.4545986938444905 0.2369848167058383 0.8585908363159855 0.6358716013457333 -0.5907649801212694 -0.4966528413935922 -0.6358716013457333 0.5907649801212694 0.4966528413935922 -0.007502297839772759 -0.3776969063399905 0.925898894301275 0.007502297839772759 0.3776969063399905 -0.925898894301275 -0.06862623427926712 -0.9970195165030676 -0.03524944936642797 0.06862623427926712 0.9970195165030676 0.03524944936642797 -0.08052297485908085 -0.9028420140569938 -0.4223651834294049 0.08052297485908085 0.9028420140569938 0.4223651834294049 0.05900428262862644 0.89880510324023 -0.4343591613179128 -0.05900428262862644 -0.89880510324023 0.4343591613179128 0.07261340932901327 0.9967048932856687 0.03614759308751523 -0.07261340932901327 -0.9967048932856687 -0.03614759308751523 0.04179663426654825 0.3419041216917153 0.938804885444364 -0.04179663426654825 -0.3419041216917153 -0.938804885444364 -0.015040960508501 -0.4057912697378742 0.9138420076312457 0.015040960508501 0.4057912697378742 -0.9138420076312457 -0.4517263098586344 0.7788118881748393 -0.435195799404179 0.4517263098586344 -0.7788118881748393 0.435195799404179 0.6413006735416574 -0.7670395894745782 -0.01958862664117091 -0.6413006735416574 0.7670395894745782 0.01958862664117091 -0.054347935502678 -0.9322939027710796 0.3575952750840892 0.054347935502678 0.9322939027710796 -0.3575952750840892 0.02122241934069372 0.5779986549452476 -0.815761707730151 -0.02122241934069372 -0.5779986549452476 0.815761707730151 0.0435010045089644 0.3322311570815762 0.9421943116316018 -0.0435010045089644 -0.3322311570815762 -0.9421943116316018 0.06238736218192513 -0.3162640646319618 0.9466175882913077 -0.06238736218192513 0.3162640646319618 -0.9466175882913077 -0.8151742883947546 0.2813160644072832 0.5063123062364794 0.8151742883947546 -0.2813160644072832 -0.5063123062364794 -0.8495097889871003 0.5275543050046959 0.004424215874554589 0.8495097889871003 -0.5275543050046959 -0.004424215874554589 0.4986818555958908 -0.0546081901313145 -0.8650632072109072 -0.4986818555958908 0.0546081901313145 0.8650632072109072 0.8439535395437307 -0.5361077387325823 -0.01819108470228664 -0.8439535395437307 0.5361077387325823 0.01819108470228664 -0.2769446260576919 -0.9598235560561156 -0.04517095679259156 0.2769446260576919 0.9598235560561156 0.04517095679259156 -0.2862441926806097 -0.8449631923969382 -0.4517759020255516 0.2862441926806097 0.8449631923969382 0.4517759020255516 0.2515240060345187 0.8702968979477529 -0.4234607228667922 -0.2515240060345187 -0.8702968979477529 0.4234607228667922 0.285022113988306 0.9578448162586878 0.035995867873935 -0.285022113988306 -0.9578448162586878 -0.035995867873935 0.1022641569809444 0.2645290245048019 0.9589402678955111 -0.1022641569809444 -0.2645290245048019 -0.9589402678955111 0.8727466539507099 -0.4878051827691275 -0.01895736483317585 -0.8727466539507099 0.4878051827691275 0.01895736483317585 0.06497119151503472 -0.3441637413544276 0.9366589899264509 -0.06497119151503472 0.3441637413544276 -0.9366589899264509 -0.6577171642732842 0.5643165632134004 -0.4989538538816246 0.6577171642732842 -0.5643165632134004 0.4989538538816246 0.4964578187488516 -0.01406200872446651 -0.8679469419922888 -0.4964578187488516 0.01406200872446651 0.8679469419922888 -0.2544265746159438 -0.8958214392384447 0.3643776435649682 0.2544265746159438 0.8958214392384447 -0.3643776435649682 0.1346525740323371 0.5836816827901039 -0.8007398937743633 -0.1346525740323371 -0.5836816827901039 0.8007398937743633 0.1124481173905443 0.2448637316454644 0.9630146280404989 -0.1124481173905443 -0.2448637316454644 -0.9630146280404989 0.8819697538892645 0.007598171866789702 -0.471244757009341 -0.8819697538892645 -0.007598171866789702 0.471244757009341 0.1171398320703514 -0.2299441770171356 0.9661283223249602 -0.1171398320703514 0.2299441770171356 -0.9661283223249602 -0.8597805182002386 -0.06612450851032715 0.5063645029991706 0.8597805182002386 0.06612450851032715 -0.5063645029991706 -0.8025564832620339 0.1985573670928974 -0.5625638302870289 0.8025564832620339 -0.1985573670928974 0.5625638302870289 0.4943676037891732 0.1453010501104848 -0.857022915189869 -0.4943676037891732 -0.1453010501104848 0.857022915189869 -0.5011081975069153 -0.8640068972210966 -0.04881245687059649 0.5011081975069153 0.8640068972210966 0.04881245687059649 -0.4953971625889056 -0.7179255223596246 -0.4890445742910574 0.4953971625889056 0.7179255223596246 0.4890445742910574 0.4523361541883907 0.78269789407462 -0.4275231107498302 -0.4523361541883907 -0.78269789407462 0.4275231107498302 0.5160103324743733 0.8561743149607777 0.02643632313938037 -0.5160103324743733 -0.8561743149607777 -0.02643632313938037 0.1456798900475802 0.1553296146775426 0.977061963459765 -0.1456798900475802 -0.1553296146775426 -0.977061963459765 0.9975819344811169 -0.06940501209422294 -0.003637072052292452 -0.9975819344811169 0.06940501209422294 0.003637072052292452 0.1299031228142292 -0.2399521483669082 0.9620541279872025 -0.1299031228142292 0.2399521483669082 -0.9620541279872025 -0.8574309484630749 -0.02498433355687328 0.5139921708493532 0.8574309484630749 0.02498433355687328 -0.5139921708493532 -0.7991850679086362 0.2325782180646128 -0.5542658204451704 0.7991850679086362 -0.2325782180646128 0.5542658204451704 -0.4545593221843078 -0.8001107826523628 0.3914058738685027 0.4545593221843078 0.8001107826523628 -0.3914058738685027 0.248556603048201 0.5432161265870228 -0.801957514396449 -0.248556603048201 -0.5432161265870228 0.801957514396449 0.1547328152558442 0.122294846017621 0.9803579583603773 -0.1547328152558442 -0.122294846017621 -0.9803579583603773 0.4386407978618918 0.3279107683376264 -0.8367011285156191 -0.4386407978618918 -0.3279107683376264 0.8367011285156191 0.8139565735366405 0.3698909682614625 -0.4479457199204939 -0.8139565735366405 -0.3698909682614625 0.4479457199204939 0.1540882353378779 -0.1214346133398591 0.9805663926595983 -0.1540882353378779 0.1214346133398591 -0.9805663926595983 -0.7859346199362765 -0.3952550220605985 0.4754789592836855 0.7859346199362765 0.3952550220605985 -0.4754789592836855 -0.9306770059150464 -0.363141929097298 -0.04436496356921191 0.9306770059150464 0.363141929097298 0.04436496356921191 -0.7418398379539286 -0.6686780926148429 -0.05043077712532803 0.7418398379539286 0.6686780926148429 0.05043077712532803 -0.6931837386825032 -0.4794121952214146 -0.538200939704802 0.6931837386825032 0.4794121952214146 0.538200939704802 0.6572311903075883 0.6158016613381416 -0.4345520410492345 -0.6572311903075883 -0.6158016613381416 0.4345520410492345 0.751979601982272 0.6588136627921902 0.02216384264791805 -0.751979601982272 -0.6588136627921902 -0.02216384264791805 0.1709113901269176 0.02371991789714821 0.9850008437660535 -0.1709113901269176 -0.02371991789714821 -0.9850008437660535 -0.806985682832787 -0.1634898584380173 -0.5674902412295894 0.806985682832787 0.1634898584380173 0.5674902412295894 0.9307984716769429 0.3653080137814092 0.01281640319859835 -0.9307984716769429 -0.3653080137814092 -0.01281640319859835 0.1665332574936393 -0.1041946282880731 0.9805152490320931 -0.1665332574936393 0.1041946282880731 -0.9805152490320931 -0.6462181275664664 -0.6271355390768563 0.4348599167907648 0.6462181275664664 0.6271355390768563 -0.4348599167907648 0.3568816664825016 0.4535565930443404 -0.8166528595643825 -0.3568816664825016 -0.4535565930443404 0.8166528595643825 0.1682901928002351 -0.008553425957378354 0.985700385467943 -0.1682901928002351 0.008553425957378354 -0.985700385467943 -0.7170554180673224 -0.6951505316171346 -0.05096337717138435 0.7170554180673224 0.6951505316171346 0.05096337717138435 0.3464688034355574 0.4660440007429664 -0.8141021788555926 -0.3464688034355574 -0.4660440007429664 0.8141021788555926 0.6355101789920478 0.6397366600929556 -0.4322774781672137 -0.6355101789920478 -0.6397366600929556 0.4322774781672137 0.1685699882457755 0.005747924127919781 0.9856729277153952 -0.1685699882457755 -0.005747924127919781 -0.9856729277153952 -0.6279723658398444 -0.6490434333612153 0.4294104439253827 0.6279723658398444 0.6490434333612153 -0.4294104439253827 -0.7973251583280008 -0.3587315378057597 0.4853702459779992 0.7973251583280008 0.3587315378057597 -0.4853702459779992 -0.8133914914443122 -0.1226105341873485 -0.5686483434885663 0.8133914914443122 0.1226105341873485 0.5686483434885663 0.8277403482845291 0.3350766609950497 -0.450077267897652 -0.8277403482845291 -0.3350766609950497 0.450077267897652 0.9459914682312661 0.3239907301155634 0.01140827913568343 -0.9459914682312661 -0.3239907301155634 -0.01140827913568343 0.1643055508453276 -0.1191819882641469 0.9791829959894208 -0.1643055508453276 0.1191819882641469 -0.9791829959894208 -0.6747092881545888 -0.509981513077707 -0.5335599617633439 0.6747092881545888 0.509981513077707 0.5335599617633439 0.7259849856952051 0.6873476337686363 0.02233899948049431 -0.7259849856952051 -0.6873476337686363 -0.02233899948049431 0.1700273526739748 0.03942770412635237 0.9846502706494346 -0.1700273526739748 -0.03942770412635237 -0.9846502706494346 -0.7985791720875104 -0.363552001419785 0.4796886992328414 0.7985791720875104 0.363552001419785 -0.4796886992328414 -0.8005820443769667 -0.1773037046999857 -0.5723912879498229 0.8005820443769667 0.1773037046999857 0.5723912879498229 0.4462219555270105 0.310754437046979 -0.8392363470806455 -0.4462219555270105 -0.310754437046979 0.8392363470806455 0.1512091593896242 -0.1336481090587945 0.9794253279661964 -0.1512091593896242 0.1336481090587945 -0.9794253279661964 -0.4336952871383574 -0.8129939531323626 0.3885218527756087 0.4336952871383574 0.8129939531323626 -0.3885218527756087 -0.476892863167146 -0.8776635498063434 -0.04774819788819028 0.476892863167146 0.8776635498063434 0.04774819788819028 0.2380035050945923 0.552747386812773 -0.7986392539403127 -0.2380035050945923 -0.552747386812773 0.7986392539403127 0.4293210067423389 0.7959884213628337 -0.4267152519257412 -0.4293210067423389 -0.7959884213628337 0.4267152519257412 0.1533393076810733 0.1385717365111475 0.9784093880171909 -0.1533393076810733 -0.1385717365111475 -0.9784093880171909 -0.8569261781032325 0.01555967142405624 0.5152042526091591 0.8569261781032325 -0.01555967142405624 -0.5152042526091591 -0.7895538112070181 0.2718086027881717 -0.5502043826241432 0.7895538112070181 -0.2718086027881717 0.5502043826241432 0.8795771108593874 -0.03296431319738044 -0.474612958217196 -0.8795771108593874 0.03296431319738044 0.474612958217196 0.9931770550638256 -0.1165144114890372 -0.004871263707719249 -0.9931770550638256 0.1165144114890372 0.004871263707719249 0.1241152025120477 -0.2522053788639627 0.9596811258837378 -0.1241152025120477 0.2522053788639627 -0.9596811258837378 0.1440231793131058 0.1695717310208471 0.974937306630092 -0.1440231793131058 -0.1695717310208471 -0.974937306630092 -0.4731693583086877 -0.7368229619348619 -0.482910634717524 0.4731693583086877 0.7368229619348619 0.482910634717524 0.4914126934498371 0.8706243101949823 0.02295376252136903 -0.4914126934498371 -0.8706243101949823 -0.02295376252136903 -0.860938007212393 -0.02971517484011645 0.5078412705968026 0.860938007212393 0.02971517484011645 -0.5078412705968026 -0.7938388756252783 0.2406792724284641 -0.5584741062657237 0.7938388756252783 -0.2406792724284641 0.5584741062657237 0.4981231555934732 0.1224106765943749 -0.8584223599821407 -0.4981231555934732 -0.1224106765943749 0.8584223599821407 0.1121129923186101 -0.2398355057457572 0.9643182084442065 -0.1121129923186101 0.2398355057457572 -0.9643182084442065 0.1062857836713503 0.2553732186660098 0.9609827529032606 -0.1062857836713503 -0.2553732186660098 -0.9609827529032606 -0.2334720756407013 -0.9021215824597253 0.3628600837187571 0.2334720756407013 0.9021215824597253 -0.3628600837187571 -0.2546686456171097 -0.9661263003323787 -0.0417594629469482 0.2546686456171097 0.9661263003323787 0.0417594629469482 0.122600930984431 0.5856207422677188 -0.8012598566929189 -0.122600930984431 -0.5856207422677188 0.8012598566929189 0.2322407150442801 0.8745496591760359 -0.4257078151864269 -0.2322407150442801 -0.8745496591760359 0.4257078151864269 -0.8298561313882098 0.5579087855247387 0.008751470259655452 0.8298561313882098 -0.5579087855247387 -0.008751470259655452 -0.6382078320153407 0.5920859297022119 -0.4920620032099067 0.6382078320153407 -0.5920859297022119 0.4920620032099067 0.7845392952351216 -0.3705904072518202 -0.4971527373804845 -0.7845392952351216 0.3705904072518202 0.4971527373804845 0.8531057511976792 -0.5209817000929371 -0.02808283179661205 -0.8531057511976792 0.5209817000929371 0.02808283179661205 0.05742405221231209 -0.353113506087878 0.9338165398223807 -0.05742405221231209 0.353113506087878 -0.9338165398223807 0.2641960348307784 0.9638996132824373 0.03313594262521669 -0.2641960348307784 -0.9638996132824373 -0.03313594262521669 0.09615837488984069 0.2735020116739096 0.9570528807484307 -0.09615837488984069 -0.2735020116739096 -0.9570528807484307 -0.2628332742021519 -0.8574239266200959 -0.4424283897214923 0.2628332742021519 0.8574239266200959 0.4424283897214923 -0.8054615164145194 0.3138603555421823 0.5027160458888875 0.8054615164145194 -0.3138603555421823 -0.5027160458888875 0.5011963936528531 -0.07682531249453754 -0.8619164961581204 -0.5011963936528531 0.07682531249453754 0.8619164961581204 0.05593817161375906 -0.3240685888605996 0.9443783514409938 -0.05593817161375906 0.3240685888605996 -0.9443783514409938 0.03897668307371886 0.899180937822316 -0.4358376523816537 -0.03897668307371886 -0.899180937822316 0.4358376523816537 0.03524796927851993 0.3387274965168724 0.9402240497696029 -0.03524796927851993 -0.3387274965168724 -0.9402240497696029 -0.03380508164456341 -0.9335848275237068 0.356758442468479 0.03380508164456341 0.9335848275237068 -0.356758442468479 -0.04789256857390976 -0.9982543317458711 -0.03456285616087879 0.04789256857390976 0.9982543317458711 0.03456285616087879 0.00988376543882104 0.5750260384461712 -0.8180754037921276 -0.00988376543882104 -0.5750260384461712 0.8180754037921276 -0.5854676341618266 0.8104246664582965 0.0209644781693344 0.5854676341618266 -0.8104246664582965 -0.0209644781693344 -0.4340338561009833 0.7959874828626293 -0.4219224323073219 0.4340338561009833 -0.7959874828626293 0.4219224323073219 0.6153551915075027 -0.6092477810503327 -0.5001551055122906 -0.6153551915075027 0.6092477810503327 0.5001551055122906 0.6198722765427641 -0.7840918033200787 -0.03095811266789722 -0.6198722765427641 0.7840918033200787 0.03095811266789722 -0.0240890152515117 -0.4096357119910222 0.9119310844607836 0.0240890152515117 0.4096357119910222 -0.9119310844607836 0.05032314782727924 0.9980454334989849 0.03705257703017323 -0.05032314782727924 -0.9980454334989849 -0.03705257703017323 0.03482642477584477 0.3480616475002124 0.9368245351594772 -0.03482642477584477 -0.3480616475002124 -0.9368245351594772 -0.06078781811973539 -0.9051555509277223 -0.4207116230780575 0.06078781811973539 0.9051555509277223 0.4207116230780575 -0.648244348193578 0.6028199139261126 0.4651746085172723 0.648244348193578 -0.6028199139261126 -0.4651746085172723 0.4478888839578471 -0.254166375648369 -0.8572018438598732 -0.4478888839578471 0.254166375648369 0.8572018438598732 -0.01559188035809234 -0.3809853597316547 0.9244495924262397 0.01559188035809234 0.3809853597316547 -0.9244495924262397 -0.09714637419523878 0.5223268542527806 -0.8471937436661776 0.09714637419523878 -0.5223268542527806 0.8471937436661776 -0.1553367019142123 0.8736819979580711 -0.4610317510567014 0.1553367019142123 -0.8736819979580711 0.4610317510567014 -0.04773954315524366 0.3792351705057024 0.9240679744860978 0.04773954315524366 -0.3792351705057024 -0.9240679744860978 0.1710113448355263 -0.9112302410561427 0.374719318587004 -0.1710113448355263 0.9112302410561427 -0.374719318587004 0.1565670680249241 -0.9873307068236811 -0.02578426987775575 -0.1565670680249241 0.9873307068236811 0.02578426987775575 -0.3468667454040835 0.9373968143656501 0.03115563111076062 0.3468667454040835 -0.9373968143656501 -0.03115563111076062 -0.2151392028201705 0.8989116209247668 -0.3816713523128371 0.2151392028201705 -0.8989116209247668 0.3816713523128371 0.4229025381987818 -0.7599193955709881 -0.4936354478965752 -0.4229025381987818 0.7599193955709881 0.4936354478965752 0.3770488932395795 -0.9255375705175457 -0.03484734806678229 -0.3770488932395795 0.9255375705175457 0.03484734806678229 -0.1086298674624796 -0.4243898270490075 0.8989398348011938 0.1086298674624796 0.4243898270490075 -0.8989398348011938 0.1350396414025762 -0.898050863893943 -0.4186513359696902 -0.1350396414025762 0.898050863893943 0.4186513359696902 -0.161212579139658 0.9862882694139366 0.03529807280293992 0.161212579139658 -0.9862882694139366 -0.03529807280293992 -0.03730059635445455 0.3914554395165683 0.9194407563211957 0.03730059635445455 -0.3914554395165683 -0.9194407563211957 -0.4512943497619424 0.7735069445809086 0.4449948500354278 0.4512943497619424 -0.7735069445809086 -0.4449948500354278 0.3680389534659732 -0.3929713986181781 -0.842686660983633 -0.3680389534659732 0.3929713986181781 0.842686660983633 -0.09727941991731651 -0.4055490045254993 0.9088821262347099 0.09727941991731651 0.4055490045254993 -0.9088821262347099 0.3736525375605955 -0.9274559743706151 -0.01446363643004581 -0.3736525375605955 0.9274559743706151 0.01446363643004581 -0.1954342410551409 0.4220188002486209 -0.8852714779433005 0.1954342410551409 -0.4220188002486209 0.8852714779433005 -0.3804029272399221 0.9242065059515137 0.03370381735343186 0.3804029272399221 -0.9242065059515137 -0.03370381735343186 -0.1318258194384319 0.380539017198842 0.9153207141317874 0.1318258194384319 -0.380539017198842 -0.9153207141317874 0.3857828423291087 -0.8237000262929853 0.4155597011855332 -0.3857828423291087 0.8237000262929853 -0.4155597011855332 -0.1338340648369891 0.990448749506782 0.03316199164194668 0.1338340648369891 -0.990448749506782 -0.03316199164194668 -0.01119721103801772 0.9329614249593895 -0.3598021706475875 0.01119721103801772 -0.9329614249593895 0.3598021706475875 0.2325288884947923 -0.8440977660700394 -0.4831451928053774 -0.2325288884947923 0.8440977660700394 0.4831451928053774 0.1545306786828613 -0.9873150556191783 -0.03645888497352928 -0.1545306786828613 0.9873150556191783 0.03645888497352928 -0.188385323455448 -0.4022629462123833 0.8959327497145752 0.188385323455448 0.4022629462123833 -0.8959327497145752 0.3322826921166519 -0.8385561379056643 -0.431754346938681 -0.3322826921166519 0.8385561379056643 0.431754346938681 -0.2152423523879837 0.391658948099139 -0.8945803474883423 0.2152423523879837 -0.391658948099139 0.8945803474883423 -0.3868290367640545 0.9215290834905184 0.03387395160472276 0.3868290367640545 -0.9215290834905184 -0.03387395160472276 -0.1173952291246271 0.4026765469559839 0.9077829909787811 0.1173952291246271 -0.4026765469559839 -0.9077829909787811 -0.2489266544343785 0.8717552409187929 0.4219932708500514 0.2489266544343785 -0.8717552409187929 -0.4219932708500514 0.2718519283454329 -0.4882152724018878 -0.8293023434480454 -0.2718519283454329 0.4882152724018878 0.8293023434480454 -0.1836666092848303 -0.3924574694225748 0.9012456442769875 0.1836666092848303 0.3924574694225748 -0.9012456442769875 0.6033474415446439 -0.6384829790022293 0.4778193699568609 -0.6033474415446439 0.6384829790022293 -0.4778193699568609 0.6131352150534856 -0.7899777710976196 0.0005737882476074437 -0.6131352150534856 0.7899777710976196 -0.0005737882476074437 -0.2753808237963566 0.2694940130538956 -0.9227883716288078 0.2753808237963566 -0.2694940130538956 0.9227883716288078 -0.6186543257883074 0.7850985118013816 0.02978509611652962 0.6186543257883074 -0.7850985118013816 -0.02978509611652962 -0.2101296655536507 0.3486871822500865 0.9133798621541893 0.2101296655536507 -0.3486871822500865 -0.9133798621541893 0.06461220227132994 0.9973959955887958 0.03203890293196258 -0.06461220227132994 -0.9973959955887958 -0.03203890293196258 0.1834471411803039 0.9148563256495362 -0.3597013341812944 -0.1834471411803039 -0.9148563256495362 0.3597013341812944 0.04706446276303368 -0.8766449495836062 -0.4788304174907683 -0.04706446276303368 0.8766449495836062 0.4788304174907683 -0.05240410698773285 -0.9979334573656791 -0.03718365556263761 0.05240410698773285 0.9979334573656791 0.03718365556263761 -0.2558783423962933 -0.3504893468067221 0.900934787688611 0.2558783423962933 0.3504893468067221 -0.900934787688611 -0.2006920968280758 0.3777441372672295 0.9038982514813195 0.2006920968280758 -0.3777441372672295 -0.9038982514813195 0.530521993908302 -0.7131828725865238 -0.4581665682137816 -0.530521993908302 0.7131828725865238 0.4581665682137816 -0.2881229732548578 0.2233331766299601 -0.9311860418300691 0.2881229732548578 -0.2233331766299601 0.9311860418300691 -0.6320293355882027 0.7743886006494227 0.02934645021402401 0.6320293355882027 -0.7743886006494227 -0.02934645021402401 -0.05526060814531907 0.9079152834422599 0.4154950099331765 0.05526060814531907 -0.9079152834422599 -0.4154950099331765 0.169324867786248 -0.5435456118555541 -0.822123626337147 -0.169324867786248 0.5435456118555541 0.822123626337147 -0.262425063392403 -0.3400792848199952 0.9030388508474119 0.262425063392403 0.3400792848199952 -0.9030388508474119 -0.2785256252605083 0.2831471851144514 0.917742419001653 0.2785256252605083 -0.2831471851144514 -0.917742419001653 0.7799928739812686 -0.3127646575647681 0.5420234178675621 -0.7799928739812686 0.3127646575647681 -0.5420234178675621 0.8613617624052101 -0.5077492879164336 0.0157027031604448 -0.8613617624052101 0.5077492879164336 -0.0157027031604448 -0.3203826022531021 0.06507348339724793 -0.9450504906787143 0.3203826022531021 -0.06507348339724793 0.9450504906787143 -0.8569955182629497 0.514965341673612 0.01921922350664027 0.8569955182629497 -0.514965341673612 -0.01921922350664027 0.2668604861589438 0.9632172055238382 0.03159265594818225 -0.2668604861589438 -0.9632172055238382 -0.03159265594818225 0.3848259988989242 0.8411153441483907 -0.3800446400221686 -0.3848259988989242 -0.8411153441483907 0.3800446400221686 -0.1463452204061559 -0.8637105572618807 -0.4822728996518934 0.1463452204061559 0.8637105572618807 0.4822728996518934 -0.2614906007336944 -0.964583089536215 -0.03467173356931733 0.2614906007336944 0.964583089536215 0.03467173356931733 -0.3128205817555215 -0.2727530831994496 0.9098071439790585 0.3128205817555215 0.2727530831994496 -0.9098071439790585 -0.877251335563384 0.4797023225995196 0.01777008567467638 0.877251335563384 -0.4797023225995196 -0.01777008567467638 -0.2802057379684856 0.3069626073985923 0.9095376309249628 0.2802057379684856 -0.3069626073985923 -0.9095376309249628 0.7175372919484939 -0.4930483606966952 -0.4919792156966829 -0.7175372919484939 0.4930483606966952 0.4919792156966829 -0.3153542051832245 0.02589270463782779 -0.9486207319681534 0.3153542051832245 -0.02589270463782779 0.9486207319681534 0.139251626078047 0.8939704795085888 0.4259410362970489 -0.139251626078047 -0.8939704795085888 -0.4259410362970489 0.06132171006327589 -0.5593056598669248 -0.8266902846385335 -0.06132171006327589 0.5593056598669248 0.8266902846385335 -0.3280033984977638 -0.249834438430717 0.9110414501810141 0.3280033984977638 0.249834438430717 -0.9110414501810141 -0.9954158731747244 0.09554874053023407 0.004204475578096453 0.9954158731747244 -0.09554874053023407 -0.004204475578096453 -0.3316173720207138 0.1947632518625393 0.9230911083408855 0.3316173720207138 -0.1947632518625393 -0.9230911083408855 0.817575153764345 0.09709929153633617 0.5675760702587355 -0.817575153764345 -0.09709929153633617 -0.5675760702587355 0.8458775383286142 -0.1331990427620946 -0.5164776908622341 -0.8458775383286142 0.1331990427620946 0.5164776908622341 -0.3083759824560517 -0.1573796570753727 -0.9381555825038312 0.3083759824560517 0.1573796570753727 0.9381555825038312 0.4990163719993245 0.8660150067876759 0.03163334467257348 -0.4990163719993245 -0.8660150067876759 -0.03163334467257348 0.5956789501138251 0.6858391035791073 -0.4180805094633062 -0.5956789501138251 -0.6858391035791073 0.4180805094633062 -0.3620953882820228 -0.7880951880868865 -0.4977880114056444 0.3620953882820228 0.7880951880868865 0.4977880114056444 -0.4980481988525364 -0.8665885920918063 -0.03118018082188514 0.4980481988525364 0.8665885920918063 0.03118018082188514 -0.3599611320206116 -0.1644710035956224 0.9183557439307976 0.3599611320206116 0.1644710035956224 -0.9183557439307976 -0.2943256424314859 -0.1612840048859618 -0.9419978163325211 0.2943256424314859 0.1612840048859618 0.9419978163325211 -0.9995122683368192 0.0311708959594342 0.001897548226659741 0.9995122683368192 -0.0311708959594342 -0.001897548226659741 -0.3430764110087483 0.1961104572649701 0.9186072418398849 0.3430764110087483 -0.1961104572649701 -0.9186072418398849 0.8174352215529376 0.0463851767321013 0.5741498706298134 -0.8174352215529376 -0.0463851767321013 -0.5741498706298134 0.8407491762812339 -0.1769459966637989 -0.5116941829326203 -0.8407491762812339 0.1769459966637989 0.5116941829326203 0.351330893026568 0.8170314435160931 0.4571938581293095 -0.351330893026568 -0.8170314435160931 -0.4571938581293095 -0.05311202123594302 -0.5295486039395305 -0.8466152545672248 0.05311202123594302 0.5295486039395305 0.8466152545672248 -0.37190415890185 -0.1265488341316491 0.9196046374238375 0.37190415890185 0.1265488341316491 -0.9196046374238375 -0.2430519777419506 -0.3409754151362031 -0.908108750309356 0.2430519777419506 0.3409754151362031 0.908108750309356 -0.9393301647007613 -0.342807994740731 -0.01189623575252639 0.9393301647007613 0.342807994740731 0.01189623575252639 -0.3671425430842894 0.09387747790844114 0.9254152431201633 0.3671425430842894 -0.09387747790844114 -0.9254152431201633 0.7105810854744179 0.4478938837629632 0.5426468371360209 -0.7105810854744179 -0.4478938837629632 -0.5426468371360209 0.832248097536002 0.2410706283649829 -0.499247490016142 -0.832248097536002 -0.2410706283649829 0.499247490016142 0.7492661764034824 0.6617274221376309 0.02677714863071222 -0.7492661764034824 -0.6617274221376309 -0.02677714863071222 0.771790659619931 0.4268693530229965 -0.4712979240068435 -0.771790659619931 -0.4268693530229965 0.4712979240068435 -0.1704960135927644 -0.4188404448990791 -0.8919101922647355 0.1704960135927644 0.4188404448990791 0.8919101922647355 -0.7457577804628064 -0.6658070536922155 -0.02337306425952852 0.7457577804628064 0.6658070536922155 0.02337306425952852 -0.3832894174236852 -0.03328216608980961 0.9230284502177506 0.3832894174236852 0.03328216608980961 -0.9230284502177506 0.8487181325949951 0.1690921359116911 -0.5010842054757729 -0.8487181325949951 -0.1690921359116911 0.5010842054757729 -0.2376092621617667 -0.3172641265836313 -0.918087856644486 0.2376092621617667 0.3172641265836313 0.918087856644486 -0.9142861257012683 -0.4047971558969609 -0.01483721429029009 0.9142861257012683 0.4047971558969609 0.01483721429029009 -0.3773104254029742 0.07298334062249158 0.9232065179979007 0.3773104254029742 -0.07298334062249158 -0.9232065179979007 0.7162880539923326 0.4292135047673638 0.5501883232432265 -0.7162880539923326 -0.4292135047673638 -0.5501883232432265 0.5634627908216059 0.6543478710563656 0.5043198855920013 -0.5634627908216059 -0.6543478710563656 -0.5043198855920013 -0.1654917863658059 -0.4500086473228867 -0.877556087085082 0.1654917863658059 0.4500086473228867 0.877556087085082 -0.7849727204841929 -0.6191489520560974 -0.02173483985406269 0.7849727204841929 0.6191489520560974 0.02173483985406269 -0.3812090940806548 0.001936728282550633 0.9244868174688949 0.3812090940806548 -0.001936728282550633 -0.9244868174688949 0.7062604362073617 0.7074454334915477 0.02677974757430267 -0.7062604362073617 -0.7074454334915477 -0.02677974757430267 -0.1468902033780271 -0.4681736318872253 -0.8713419068064423 0.1468902033780271 0.4681736318872253 0.8713419068064423 -0.5453491082515233 -0.6597150224060673 -0.5170787554532 0.5453491082515233 0.6597150224060673 0.5170787554532 -0.3800962827451415 -0.01950687838726434 0.9247412057105005 0.3800962827451415 0.01950687838726434 -0.9247412057105005 0.5268268176928848 0.690872562717454 0.4951248390495125 -0.5268268176928848 -0.690872562717454 -0.4951248390495125 0.7478602442038386 0.3581124738567753 0.5589816734093839 -0.7478602442038386 -0.3581124738567753 -0.5589816734093839 0.8574544598189914 0.09220009470449439 -0.5062321521525515 -0.8574544598189914 -0.09220009470449439 0.5062321521525515 -0.2503197381908354 -0.2899055413683712 -0.9237395768050555 0.2503197381908354 0.2899055413683712 0.9237395768050555 -0.9458652848475723 -0.3243628032144416 -0.01129755774892723 0.9458652848475723 0.3243628032144416 0.01129755774892723 -0.3740395889501752 0.1012831300126014 0.9218655614962708 0.3740395889501752 -0.1012831300126014 -0.9218655614962708 0.7456116067161954 0.4793411569132378 -0.4629204977306279 -0.7456116067161954 -0.4793411569132378 0.4629204977306279 -0.7019985273356816 -0.7116016075999861 -0.0286569307437078 0.7019985273356816 0.7116016075999861 0.0286569307437078 -0.3797481066952388 -0.05574983828455482 0.9234085395926482 0.3797481066952388 0.05574983828455482 -0.9234085395926482 0.7412720626271601 0.3839166967398176 0.5505667072506862 -0.7412720626271601 -0.3839166967398176 -0.5505667072506862 0.8464349456429571 0.1647903424594057 -0.5063516819627598 -0.8464349456429571 -0.1647903424594057 0.5063516819627598 -0.2583514331959643 -0.3088208194943954 -0.9153601686835632 0.2583514331959643 0.3088208194943954 0.9153601686835632 -0.9667079460379267 -0.2557261280812135 -0.008938371424594471 0.9667079460379267 0.2557261280812135 0.008938371424594471 -0.3620990946634469 0.1188843009914378 0.9245273217280761 0.3620990946634469 -0.1188843009914378 -0.9245273217280761 0.319761704224191 0.8329906729542334 0.4515296128526839 -0.319761704224191 -0.8329906729542334 -0.4515296128526839 0.4674235674928223 0.8835645762532153 0.02878972286700408 -0.4674235674928223 -0.8835645762532153 -0.02878972286700408 -0.03702291901141228 -0.5386610444372147 -0.8417087279300859 0.03702291901141228 0.5386610444372147 0.8417087279300859 -0.3259297431167805 -0.8059261183550209 -0.4942194798923228 0.3259297431167805 0.8059261183550209 0.4942194798923228 -0.3683647448944613 -0.1472065661969778 0.9179529626224501 0.3683647448944613 0.1472065661969778 -0.9179529626224501 0.8188414523304987 -0.04539498950297801 0.5722219594469477 -0.8188414523304987 0.04539498950297801 -0.5722219594469477 0.8222351799247571 -0.2531189896746004 -0.5097647358931486 -0.8222351799247571 0.2531189896746004 0.5097647358931486 -0.3007669408721845 -0.1278712170447151 -0.9450863448013052 0.3007669408721845 0.1278712170447151 0.9450863448013052 -0.9912196725870244 0.1321124366424652 0.005464866042518272 0.9912196725870244 -0.1321124366424652 -0.005464866042518272 -0.3334531898166117 0.2261849219163817 0.9152318565799635 0.3334531898166117 -0.2261849219163817 -0.9152318565799635 -0.3572509335391731 -0.1813572351176351 0.916232134208289 0.3572509335391731 0.1813572351176351 -0.916232134208289 0.5652910635408757 0.7136397675557669 -0.4137200691817796 -0.5652910635408757 -0.7136397675557669 0.4137200691817796 -0.4590092833981768 -0.8877795503597669 -0.03402863084671884 0.4590092833981768 0.8877795503597669 0.03402863084671884 0.8236552113892361 0.0100891157115191 0.5670011485839446 -0.8236552113892361 -0.0100891157115191 -0.5670011485839446 0.8284238845313932 -0.2197766705392278 -0.5151816015975425 -0.8284238845313932 0.2197766705392278 0.5151816015975425 -0.3143545530052891 -0.1151609002877546 -0.9422946365387838 0.3143545530052891 0.1151609002877546 0.9422946365387838 -0.9814011140988709 0.1918121627780759 0.007742574241940405 0.9814011140988709 -0.1918121627780759 -0.007742574241940405 -0.3228697798530805 0.2179416238368772 0.9210084439661607 0.3228697798530805 -0.2179416238368772 -0.9210084439661607 -0.3242603454229419 -0.26278932832013 0.9087337328982836 0.3242603454229419 0.26278932832013 -0.9087337328982836 0.117408333593584 0.8977407286122229 0.4245902346893686 -0.117408333593584 -0.8977407286122229 -0.4245902346893686 0.2470104206640791 0.9685291661992058 0.0306121920944245 -0.2470104206640791 -0.9685291661992058 -0.0306121920944245 0.07434944066558483 -0.5619908898762065 -0.8237951203842275 -0.07434944066558483 0.5619908898762065 0.8237951203842275 -0.1220431256235842 -0.8647778253340694 -0.487098335347703 0.1220431256235842 0.8647778253340694 0.487098335347703 0.8216033761799422 -0.569899124762224 0.01352330747160687 -0.8216033761799422 0.569899124762224 -0.01352330747160687 0.6878039565639096 -0.5387580380347037 -0.4864827785112528 -0.6878039565639096 0.5387580380347037 0.4864827785112528 -0.3137263906325912 0.05871167165584165 -0.9476965186345381 0.3137263906325912 -0.05871167165584165 0.9476965186345381 -0.8392362141851329 0.5433656482746885 0.02088897018124987 0.8392362141851329 -0.5433656482746885 -0.02088897018124987 -0.2680687356060446 0.3235076137467493 0.9074590772252271 0.2680687356060446 -0.3235076137467493 -0.9074590772252271 -0.2377803173828305 -0.9701737056791269 -0.04715401864265265 0.2377803173828305 0.9701737056791269 0.04715401864265265 -0.3107264998112969 -0.2832606490249422 0.907310557102136 0.3107264998112969 0.2832606490249422 -0.907310557102136 0.3634875532057154 0.8517395637612272 -0.3773811259037166 -0.3634875532057154 -0.8517395637612272 0.3773811259037166 0.7564741380647571 -0.3790849739850686 0.5329554023911599 -0.7564741380647571 0.3790849739850686 -0.5329554023911599 -0.3158301950430751 0.1010014341521823 -0.9434246118255849 0.3158301950430751 -0.1010014341521823 0.9434246118255849 -0.8201546778133422 0.5717219841423917 0.02191523007362344 0.8201546778133422 -0.5717219841423917 -0.02191523007362344 -0.2680279304866537 0.2977166802809032 0.9162564088515616 0.2680279304866537 -0.2977166802809032 -0.9162564088515616 0.06943503471947671 -0.8752562718779137 -0.4786493857636093 -0.06943503471947671 0.8752562718779137 0.4786493857636093 -0.2548440377212501 -0.3496896180200109 0.9015385113720594 0.2548440377212501 0.3496896180200109 -0.9015385113720594 -0.07988208919618244 0.9055631098653776 0.4166224980442116 0.07988208919618244 -0.9055631098653776 -0.4166224980442116 0.04085328202072017 0.9986139180224687 0.03318511835069635 -0.04085328202072017 -0.9986139180224687 -0.03318511835069635 0.1825432294880344 -0.537504617058687 -0.8232659084455477 -0.1825432294880344 0.537504617058687 0.8232659084455477 0.5778141449209872 -0.8161653615313131 -0.00221733301270339 -0.5778141449209872 0.8161653615313131 0.00221733301270339 0.5021146877112246 -0.7356145625900777 -0.4546999622719005 -0.5021146877112246 0.7356145625900777 0.4546999622719005 -0.2805128566256279 0.2496901615118323 -0.9268049204184908 0.2805128566256279 -0.2496901615118323 0.9268049204184908 -0.5959281025117016 0.8024830981153345 0.02984248441429266 0.5959281025117016 -0.8024830981153345 -0.02984248441429266 -0.1886773154703058 0.3827046229957719 0.9043992714308115 0.1886773154703058 -0.3827046229957719 -0.9043992714308115 -0.02640921272806773 -0.9989879478236353 -0.0364092513821016 0.02640921272806773 0.9989879478236353 0.0364092513821016 -0.2495445260554905 -0.3595971644574081 0.8991203528059704 0.2495445260554905 0.3595971644574081 -0.8991203528059704 0.1610895679762224 0.919489204049207 -0.3585941364916466 -0.1610895679762224 -0.919489204049207 0.3585941364916466 0.5735083298594795 -0.6719851894797322 0.4685339909778998 -0.5735083298594795 0.6719851894797322 -0.4685339909778998 -0.2658005393205428 0.2945847544311872 -0.9179160613877642 0.2658005393205428 -0.2945847544311872 0.9179160613877642 -0.5837520942757996 0.8113702867369903 0.0301952020849721 0.5837520942757996 -0.8113702867369903 -0.0301952020849721 -0.1992068250247359 0.3545104032779222 0.9135858004759538 0.1992068250247359 -0.3545104032779222 -0.9135858004759538 0.2861913866710729 -0.4776759500918658 -0.830614337041639 -0.2861913866710729 0.4776759500918658 0.830614337041639 0.2596318044898602 -0.8356783259833757 -0.4839763027039257 -0.2596318044898602 0.8356783259833757 0.4839763027039257 -0.1711688674842123 -0.3974652104131658 0.9015113007141897 0.1711688674842123 0.3974652104131658 -0.9015113007141897 -0.2759588185517231 0.8621143631909254 0.4249771232001111 0.2759588185517231 -0.8621143631909254 -0.4249771232001111 -0.1627320990026209 0.9861135152307041 0.03314210363789748 0.1627320990026209 -0.9861135152307041 -0.03314210363789748 0.3417012434807117 -0.939666226372916 -0.01635980494440938 -0.3417012434807117 0.939666226372916 0.01635980494440938 0.3037790949308605 -0.8502658120976109 -0.4298445187052845 -0.3037790949308605 0.8502658120976109 0.4298445187052845 -0.2017856073853346 0.4122559507173126 -0.8884411065176443 0.2017856073853346 -0.4122559507173126 0.8884411065176443 -0.353383081220885 0.9348236989469535 0.03500071133518485 0.353383081220885 -0.9348236989469535 -0.03500071133518485 -0.1058642773528767 0.4039725874490634 0.9086247318724392 0.1058642773528767 -0.4039725874490634 -0.9086247318724392 -0.03908713698263171 0.9310460057487885 -0.3628023303421956 0.03908713698263171 -0.9310460057487885 0.3628023303421956 0.1852977366561001 -0.9820238636952331 -0.03597054243701098 -0.1852977366561001 0.9820238636952331 0.03597054243701098 -0.1773562520115273 -0.4078832717296075 0.8956427839912378 0.1773562520115273 0.4078832717296075 -0.8956427839912378 0.3549033669302498 -0.8408083423102349 0.4087602373556992 -0.3549033669302498 0.8408083423102349 -0.4087602373556992 -0.1821962809216112 0.4398357752132144 -0.8794026416044724 0.1821962809216112 -0.4398357752132144 0.8794026416044724 -0.3477733437344215 0.9369257507071379 0.03498341106361896 0.3477733437344215 -0.9369257507071379 -0.03498341106361896 -0.1202939555411783 0.3835446138356098 0.9156543526123544 0.1202939555411783 -0.3835446138356098 -0.9156543526123544 -0.3816928160809102 0.9236570684072814 0.03417914764138207 0.3816928160809102 -0.9236570684072814 -0.03417914764138207 0.3808577460685767 -0.3762245883194242 -0.8446315388401284 -0.3808577460685767 0.3762245883194242 0.8446315388401284 0.4502494234029147 -0.7431755873906194 -0.4949398984037865 -0.4502494234029147 0.7431755873906194 0.4949398984037865 -0.08540093500703064 -0.4049584619435693 0.9103380275481322 0.08540093500703064 0.4049584619435693 -0.9103380275481322 -0.4839614745690746 0.7462630882213914 0.4570259229969331 0.4839614745690746 -0.7462630882213914 -0.4570259229969331 0.1272613134699524 -0.9915110894095429 -0.02665178552750414 -0.1272613134699524 0.9915110894095429 0.02665178552750414 0.1074872954876126 -0.9023021340846562 -0.4174893293666727 -0.1074872954876126 0.9023021340846562 0.4174893293666727 -0.1272965915932204 0.8805005225712929 -0.4566337783393045 0.1272965915932204 -0.8805005225712929 0.4566337783393045 -0.1306424101633403 0.9907860809176877 0.03571417822774105 0.1306424101633403 -0.9907860809176877 -0.03571417822774105 -0.02654519648341589 0.3880500181022754 0.9212559557443742 0.02654519648341589 -0.3880500181022754 -0.9212559557443742 -0.2461620453906043 0.8881319108602231 -0.3881055994454122 0.2461620453906043 -0.8881319108602231 0.3881055994454122 0.4100579418481921 -0.9114198883774879 -0.03415071591039503 -0.4100579418481921 0.9114198883774879 0.03415071591039503 -0.09587537643338889 -0.4238610962026208 0.9006384864748278 0.09587537643338889 0.4238610962026208 -0.9006384864748278 0.1414243282584529 -0.9177596944437224 0.3711014721490754 -0.1414243282584529 0.9177596944437224 -0.3711014721490754 -0.08231361666613409 0.5327125572456595 -0.8422836813474013 0.08231361666613409 -0.5327125572456595 0.8422836813474013 -0.0357738988202156 0.3767866784866152 0.9256090033476472 0.0357738988202156 -0.3767866784866152 -0.9256090033476472 -0.6747147755791466 0.5584902983883989 0.4825438407245698 0.6747147755791466 -0.5584902983883989 -0.4825438407245698 -0.6195773714114743 0.7846165788034097 0.02237644077329868 0.6195773714114743 -0.7846165788034097 -0.02237644077329868 0.4569721173514396 -0.2307612450082885 -0.8590260367215694 -0.4569721173514396 0.2307612450082885 0.8590260367215694 0.6402024441693123 -0.5821756253416732 -0.501210905445672 -0.6402024441693123 0.5821756253416732 0.501210905445672 -0.004103715279616589 -0.3751858317991564 0.9269405326870106 0.004103715279616589 0.3751858317991564 -0.9269405326870106 -0.07705662111402463 -0.996390105839737 -0.03562350526221716 0.07705662111402463 0.996390105839737 0.03562350526221716 -0.08906834893946965 -0.901889651168439 -0.4226841448794457 0.08906834893946965 0.901889651168439 0.4226841448794457 0.06621860718030846 0.8987904080853973 -0.4333484722446644 -0.06621860718030846 -0.8987904080853973 0.4333484722446644 0.08027133921803603 0.9960947495142613 0.03676631733345015 -0.08027133921803603 -0.9960947495142613 -0.03676631733345015 0.04440000070647108 0.339511262952567 0.9395534802583716 -0.04440000070647108 -0.339511262952567 -0.9395534802583716 -0.01160310818029262 -0.4044697119215308 0.9144777854156274 0.01160310818029262 0.4044697119215308 -0.9144777854156274 -0.4608981076396527 0.7725726231779423 -0.4366972364123002 0.4608981076396527 -0.7725726231779423 0.4366972364123002 0.6528599392294456 -0.7569500091748925 -0.02829458180384909 -0.6528599392294456 0.7569500091748925 0.02829458180384909 -0.06266948071216899 -0.9322056042347686 0.3564621264882947 0.06266948071216899 0.9322056042347686 -0.3564621264882947 0.02541222647829463 0.5792942106514886 -0.8147223062191711 -0.02541222647829463 -0.5792942106514886 0.8147223062191711 0.04651274091202064 0.3295208045599909 0.9430019110770601 -0.04651274091202064 -0.3295208045599909 -0.9430019110770601 0.06468452150063614 -0.3132026605496621 0.9474808737398591 -0.06468452150063614 0.3132026605496621 -0.9474808737398591 -0.8189912238312458 0.2678190603133242 0.5074705175872646 0.8189912238312458 -0.2678190603133242 -0.5074705175872646 -0.8580826706007079 0.5134990070261529 0.003591684550717541 0.8580826706007079 -0.5134990070261529 -0.003591684550717541 0.4994221860388733 -0.04701482210331644 -0.8650821270808609 -0.4994221860388733 0.04701482210331644 0.8650821270808609 0.8539350250635807 -0.5200075136972855 -0.01967634793423746 -0.8539350250635807 0.5200075136972855 0.01967634793423746 -0.2852383295094946 -0.9574724353983852 -0.04342385094528022 0.2852383295094946 0.9574724353983852 0.04342385094528022 -0.2923937270020495 -0.8450148886231683 -0.4477228455361924 0.2923937270020495 0.8450148886231683 0.4477228455361924 0.2599973302445103 0.8674538926089805 -0.4241758272971886 -0.2599973302445103 -0.8674538926089805 0.4241758272971886 0.2946043865131284 0.9549829925430863 0.03486745474901904 -0.2946043865131284 -0.9549829925430863 -0.03486745474901904 0.1034208991949439 0.260849244371909 0.9598238324402627 -0.1034208991949439 -0.260849244371909 -0.9598238324402627 0.8820023309921814 -0.4709110062872414 -0.01774013195824339 -0.8820023309921814 0.4709110062872414 0.01774013195824339 0.06788770271577643 -0.3406675967151395 0.9377296243418493 -0.06788770271577643 0.3406675967151395 -0.9377296243418493 -0.663998397715294 0.5539954384782575 -0.5021903841938887 0.663998397715294 -0.5539954384782575 0.5021903841938887 0.4964854153761558 -0.007182893173776466 -0.8680153445443347 -0.4964854153761558 0.007182893173776466 0.8680153445443347 -0.2615383452944082 -0.8933672340881239 0.3653664995568126 0.2615383452944082 0.8933672340881239 -0.3653664995568126 0.138234137089511 0.58318797932163 -0.8004892904454577 -0.138234137089511 -0.58318797932163 0.8004892904454577 0.1141353834988266 0.2414910802766948 0.9636675632085843 -0.1141353834988266 -0.2414910802766948 -0.9636675632085843 0.8822869759273295 0.02221257835460109 -0.4701875088428538 -0.8822869759273295 -0.02221257835460109 0.4701875088428538 0.1188090796556892 -0.2260232352277939 0.9668494710804414 -0.1188090796556892 0.2260232352277939 -0.9668494710804414 -0.8587355829409947 -0.08016053196359224 0.5061101537277273 0.8587355829409947 0.08016053196359224 -0.5061101537277273 -0.8050817861859301 0.1826543429245913 -0.5643409506339746 0.8050817861859301 -0.1826543429245913 0.5643409506339746 0.4926074062465193 0.1528286611391779 -0.8567271115387227 -0.4926074062465193 -0.1528286611391779 0.8567271115387227 -0.5097963798255546 -0.8590980614326789 -0.04536708012834995 0.5097963798255546 0.8590980614326789 0.04536708012834995 -0.5032437954977744 -0.7119934393276318 -0.489705038413333 0.5032437954977744 0.7119934393276318 0.489705038413333 0.4603550888754805 0.778908558202372 -0.4258810281117847 -0.4603550888754805 -0.778908558202372 0.4258810281117847 0.5234788386839879 0.8515032728047226 0.03020069292101319 -0.5234788386839879 -0.8515032728047226 -0.03020069292101319 0.1518556239521084 0.1545007228608813 0.976252731678422 -0.1518556239521084 -0.1545007228608813 -0.976252731678422 0.9986607577249228 -0.05168645363632656 -0.00228067770253558 -0.9986607577249228 0.05168645363632656 0.00228067770253558 0.1318177949197178 -0.2349826358603667 0.9630198491135152 -0.1318177949197178 0.2349826358603667 -0.9630198491135152 -0.8570263845191761 -0.04026866888180463 0.5136966133278249 0.8570263845191761 0.04026866888180463 -0.5136966133278249 -0.8020591645631245 0.2179712583136024 -0.5560482237085983 0.8020591645631245 -0.2179712583136024 0.5560482237085983 -0.4616293207635678 -0.7910058913438179 0.4015072229371958 0.4616293207635678 0.7910058913438179 -0.4015072229371958 0.252555832078979 0.5415387773077612 -0.8018424435978114 -0.252555832078979 -0.5415387773077612 0.8018424435978114 0.1597918980779847 0.1228009126198238 0.9794827640996923 -0.1597918980779847 -0.1228009126198238 -0.9794827640996923 0.43533046034932 0.3341460369124196 -0.8359628079692141 -0.43533046034932 -0.3341460369124196 0.8359628079692141 0.8085218084328519 0.3823038566077889 -0.4473658977965149 -0.8085218084328519 -0.3823038566077889 0.4473658977965149 0.1551443768086196 -0.1168564902557366 0.9809560556058442 -0.1551443768086196 0.1168564902557366 -0.9809560556058442 -0.7805802054304413 -0.4068145480406504 0.4745486975987306 0.7805802054304413 0.4068145480406504 -0.4745486975987306 -0.9244807062414688 -0.3785924093579286 -0.04475724928805827 0.9244807062414688 0.3785924093579286 0.04475724928805827 -0.7501932453694553 -0.6593635372132038 -0.04949566037276468 0.7501932453694553 0.6593635372132038 0.04949566037276468 -0.697842370438045 -0.4623248219804261 -0.5470573873024455 0.697842370438045 0.4623248219804261 0.5470573873024455 0.664914727913751 0.6072439449909418 -0.4349059621058563 -0.664914727913751 -0.6072439449909418 0.4349059621058563 0.7604819999119626 0.6489570574122129 0.02284437446689475 -0.7604819999119626 -0.6489570574122129 -0.02284437446689475 0.1719287864699752 0.01941246406533368 0.9849180923416291 -0.1719287864699752 -0.01941246406533368 -0.9849180923416291 -0.8041096581556844 -0.1784964749614651 -0.5670508496484942 0.8041096581556844 0.1784964749614651 0.5670508496484942 0.9246610726829869 0.3805584205546403 0.01331124373247689 -0.9246610726829869 -0.3805584205546403 -0.01331124373247689 0.1673333523979098 -0.09873223940876282 0.9809441849955621 -0.1673333523979098 0.09873223940876282 -0.9809441849955621 -0.6515875564377071 -0.6172434749691158 0.4409582167321395 0.6515875564377071 0.6172434749691158 -0.4409582167321395 0.3609516342520132 0.4491983126357995 -0.8172727779976226 -0.3609516342520132 -0.4491983126357995 0.8172727779976226 0.1680765945439185 -0.01327555933124413 0.985684542787885 -0.1680765945439185 0.01327555933124413 -0.985684542787885 -0.7077230417893935 -0.7046661999761413 -0.05073108249932461 0.7077230417893935 0.7046661999761413 0.05073108249932461 0.3422843836739553 0.4701521679440835 -0.8135098891042559 -0.3422843836739553 -0.4701521679440835 0.8135098891042559 0.6285613170124984 0.6463117594752375 -0.4326566540798099 -0.6285613170124984 -0.6463117594752375 0.4326566540798099 0.1684890695428452 0.01078571029425203 0.985644510915591 -0.1684890695428452 -0.01078571029425203 -0.985644510915591 -0.6208654125576584 -0.6569322432545512 0.4277454468046993 0.6208654125576584 0.6569322432545512 -0.4277454468046993 -0.8016865899686199 -0.3477296061211744 0.4861920736615304 0.8016865899686199 0.3477296061211744 -0.4861920736615304 -0.8149279964462595 -0.108071750513553 -0.5693969242532153 0.8149279964462595 0.108071750513553 0.5693969242532153 0.8324412887316971 0.3218681243093255 -0.4510459082713287 -0.8324412887316971 -0.3218681243093255 0.4510459082713287 0.9513162046913369 0.3080467120941872 0.01023239266405334 -0.9513162046913369 -0.3080467120941872 -0.01023239266405334 0.1634427347217502 -0.1247272176778069 0.9786365993753906 -0.1634427347217502 0.1247272176778069 -0.9786365993753906 -0.6678615635047543 -0.5214529767142511 -0.5310816557449818 0.6678615635047543 0.5214529767142511 0.5310816557449818 0.7182704099668077 0.6953221181158507 0.02479456039136455 -0.7182704099668077 -0.6953221181158507 -0.02479456039136455 0.1693906938899092 0.04483850883956429 0.9845284662967035 -0.1693906938899092 -0.04483850883956429 -0.9845284662967035 -0.8048827537658515 -0.3506513833950874 0.4787560548060056 0.8048827537658515 0.3506513833950874 -0.4787560548060056 -0.8033590027119337 -0.1702033941689896 -0.5706532374174729 0.8033590027119337 0.1702033941689896 0.5706532374174729 0.4492489151208772 0.3040901989692398 -0.8400622376666881 -0.4492489151208772 -0.3040901989692398 0.8400622376666881 0.1500447169283141 -0.138173474524132 0.9789763397855082 -0.1500447169283141 0.138173474524132 -0.9789763397855082 -0.4259168336932312 -0.8178708918854935 0.3868876516292036 0.4259168336932312 0.8178708918854935 -0.3868876516292036 -0.4675528058744584 -0.8826984411395502 -0.04730576845088733 0.4675528058744584 0.8826984411395502 0.04730576845088733 0.2320331210174481 0.552451721304366 -0.8005983552186111 -0.2320331210174481 -0.552451721304366 0.8005983552186111 0.423552817016082 0.800072550116941 -0.424837528647266 -0.423552817016082 -0.800072550116941 0.424837528647266 0.1520176940995982 0.1435779793503188 0.9778936468381009 -0.1520176940995982 -0.1435779793503188 -0.9778936468381009 -0.8563320272399652 0.03082560515181998 0.5155048410928027 0.8563320272399652 -0.03082560515181998 -0.5155048410928027 -0.7854929334559505 0.2863061653322473 -0.548661672785251 0.7854929334559505 -0.2863061653322473 0.548661672785251 0.8789014297648528 -0.04562048212722426 -0.4748168577122944 -0.8789014297648528 0.04562048212722426 0.4748168577122944 0.990959560209696 -0.1340304237963209 -0.005915701647684131 -0.990959560209696 0.1340304237963209 0.005915701647684131 0.1214820122370588 -0.2566134302884692 0.9588491372986786 -0.1214820122370588 0.2566134302884692 -0.9588491372986786 0.1424440772897258 0.1742521583025163 0.9743438151761387 -0.1424440772897258 -0.1742521583025163 -0.9743438151761387 -0.4649789463636549 -0.7434132489006698 -0.4807611889467537 0.4649789463636549 0.7434132489006698 0.4807611889467537 0.4806943639689125 0.8763139387563154 0.03173025669476218 -0.4806943639689125 -0.8763139387563154 -0.03173025669476218 -0.860825508538414 -0.01637030433322081 0.5086368616071968 0.860825508538414 0.01637030433322081 -0.5086368616071968 -0.7900884051782785 0.2562287310294556 -0.5568726509695724 0.7900884051782785 -0.2562287310294556 0.5568726509695724 0.4980018128158077 0.116895785697058 -0.8592610602828669 -0.4980018128158077 -0.116895785697058 0.8592610602828669 0.1096753208974513 -0.2434453283727799 0.9636937771302202 -0.1096753208974513 0.2434453283727799 -0.9636937771302202 0.1039430968539143 0.2597255547324514 0.9600721164763293 -0.1039430968539143 -0.2597255547324514 -0.9600721164763293 -0.2255378127122263 -0.9042298971151196 0.3626306498355663 0.2255378127122263 0.9042298971151196 -0.3626306498355663 -0.2462918182893521 -0.96830953209926 -0.04143658153657273 0.2462918182893521 0.96830953209926 0.04143658153657273 0.1176930609954982 0.5855060654368791 -0.8020791673707371 -0.1176930609954982 -0.5855060654368791 0.8020791673707371 0.2245571584220953 0.8769448063270271 -0.4249022114056911 -0.2245571584220953 -0.8769448063270271 0.4249022114056911 -0.8181617821641836 0.5749329272460735 0.007964130472813039 0.8181617821641836 -0.5749329272460735 -0.007964130472813039 -0.6304609217472185 0.6022863710895903 -0.4896633061087792 0.6304609217472185 -0.6022863710895903 0.4896633061087792 0.4950013122049483 -0.03894530890403111 -0.8680189881735012 -0.4950013122049483 0.03894530890403111 0.8680189881735012 0.8451068423974378 -0.5342149866024907 -0.0202181359757254 -0.8451068423974378 0.5342149866024907 0.0202181359757254 0.05381813097046343 -0.3554000960565684 0.9331636407950258 -0.05381813097046343 0.3554000960565684 -0.9331636407950258 0.2549211886610694 0.9663190211123204 0.03525247520606934 -0.2549211886610694 -0.9663190211123204 -0.03525247520606934 0.09422609105449224 0.2772421142827128 0.9561685279450699 -0.09422609105449224 -0.2772421142827128 -0.9561685279450699 -0.2549063720897547 -0.8600353702113481 -0.4419976283346649 0.2549063720897547 0.8600353702113481 0.4419976283346649 -0.7992910972255116 0.3271170577276409 0.5041112698994628 0.7992910972255116 -0.3271170577276409 -0.5041112698994628 0.4949280783144888 -0.08220662998103046 -0.8650365699108271 -0.4949280783144888 0.08220662998103046 0.8650365699108271 0.8144052318136436 -0.5798883687887207 -0.02176231003644295 -0.8144052318136436 0.5798883687887207 0.02176231003644295 0.05283031180687196 -0.3265213348335798 0.9437122315901633 -0.05283031180687196 0.3265213348335798 -0.9437122315901633 0.03142046943407338 0.8992579101895374 -0.4362888550743516 -0.03142046943407338 -0.8992579101895374 0.4362888550743516 0.03222159564070842 0.3414367672048336 0.9393522783147328 -0.03222159564070842 -0.3414367672048336 -0.9393522783147328 -0.02592514452303629 -0.9334526254606158 0.3577626069087477 0.02592514452303629 0.9334526254606158 -0.3577626069087477 -0.0404770076713309 -0.9985696498028432 -0.0349323108683382 0.0404770076713309 0.9985696498028432 0.0349323108683382 0.005341845474849757 0.5749862201913398 -0.81814565407206 -0.005341845474849757 -0.5749862201913398 0.81814565407206 -0.574906489257205 0.8178669076457746 0.02400520751614118 0.574906489257205 -0.8178669076457746 -0.02400520751614118 -0.421387756392962 0.8001699473257764 -0.4268025470387568 0.421387756392962 -0.8001699473257764 0.4268025470387568 0.6075099102665565 -0.6169939087150959 -0.5002501629548846 -0.6075099102665565 0.6169939087150959 0.5002501629548846 0.6082797322516791 -0.7931780715012599 -0.02939922144152161 -0.6082797322516791 0.7931780715012599 0.02939922144152161 -0.02730706582291779 -0.4112336310983517 0.9111208618014449 0.02730706582291779 0.4112336310983517 -0.9111208618014449 0.04234098605252406 0.9984387177568578 0.03643305894571202 -0.04234098605252406 -0.9984387177568578 -0.03643305894571202 0.03222062748171443 0.3506876557753391 0.9359380317368676 -0.03222062748171443 -0.3506876557753391 -0.9359380317368676 -0.05359885155536436 -0.905109373875957 -0.4217868945733366 0.05359885155536436 0.905109373875957 0.4217868945733366 -0.6412398403612154 0.6027366805185808 0.4748894198557863 0.6412398403612154 -0.6027366805185808 -0.4748894198557863 0.4462003108871671 -0.2575534308846376 -0.8570714747346032 -0.4462003108871671 0.2575534308846376 0.8570714747346032 -0.01844543975861133 -0.3829315652906932 0.923592541143621 0.01844543975861133 0.3829315652906932 -0.923592541143621 -0.1011384811445885 0.5194155014906922 -0.8485154945214249 0.1011384811445885 -0.5194155014906922 0.8485154945214249 -0.1630305828156131 0.871816205858354 -0.4619064107257507 0.1630305828156131 -0.871816205858354 0.4619064107257507 -0.05106358717678178 0.3804744010172239 0.9233806042121655 0.05106358717678178 -0.3804744010172239 -0.9233806042121655 0.178902982933125 -0.909502291302828 0.3752323344443225 -0.178902982933125 0.909502291302828 -0.3752323344443225 0.1644525628000263 -0.9860484084502497 -0.02576607811121025 -0.1644525628000263 0.9860484084502497 0.02576607811121025 -0.3395235070082521 0.940104617936637 0.03044824334878762 0.3395235070082521 -0.940104617936637 -0.03044824334878762 -0.2081541630010026 0.9007482565618307 -0.381214405192373 0.2081541630010026 -0.9007482565618307 0.381214405192373 0.4170563673189221 -0.7630525398774261 -0.4937760705677763 -0.4170563673189221 0.7630525398774261 0.4937760705677763 0.36720841985559 -0.9296698343243465 -0.02952923186442408 -0.36720841985559 0.9296698343243465 0.02952923186442408 -0.1118294411162269 -0.4246407291739832 0.8984288659800619 0.1118294411162269 0.4246407291739832 -0.8984288659800619 0.1429901777364974 -0.8969709229870444 -0.4183263945612977 -0.1429901777364974 0.8969709229870444 0.4183263945612977 -0.1697446487579901 0.9848270794668116 0.03608847138488001 0.1697446487579901 -0.9848270794668116 -0.03608847138488001 -0.04028722686337445 0.392989375681737 0.9186600513535665 0.04028722686337445 -0.392989375681737 -0.9186600513535665 -0.4425101174830575 0.7807516343174299 0.441148140011712 0.4425101174830575 -0.7807516343174299 -0.441148140011712 0.3615447145108744 -0.3924531599859243 -0.8457339632687769 -0.3615447145108744 0.3924531599859243 0.8457339632687769 -0.1003791110580368 -0.4059871763102075 0.9083492977565748 0.1003791110580368 0.4059871763102075 -0.9083492977565748 0.3904613070520585 -0.9205045247519884 -0.01453917488421713 -0.3904613070520585 0.9205045247519884 0.01453917488421713 -0.2027938743593213 0.4136934196415589 -0.8875428998463166 0.2027938743593213 -0.4136934196415589 0.8875428998463166 -0.3965966468495452 0.9173871351526347 0.03334582378857478 0.3965966468495452 -0.9173871351526347 -0.03334582378857478 -0.1368383598079337 0.3784286616007553 0.915459999871177 0.1368383598079337 -0.3784286616007553 -0.915459999871177 0.4037435534212635 -0.8135795210505415 0.4184250303195815 -0.4037435534212635 0.8135795210505415 -0.4184250303195815 -0.2130408944280989 0.9762376935143398 -0.03966790973920272 0.2130408944280989 -0.9762376935143398 0.03966790973920272 -0.1082278509567285 0.9240489369501362 -0.3666337333069769 0.1082278509567285 -0.9240489369501362 0.3666337333069769 0.3281946322400866 -0.7677392652593321 -0.5503314491720924 -0.3281946322400866 0.7677392652593321 0.5503314491720924 0.2328783177023817 -0.9718833678048814 -0.03479092594844219 -0.2328783177023817 0.9718833678048814 0.03479092594844219 -0.1473896970475713 -0.3971277019566815 0.9058509069062251 0.1473896970475713 0.3971277019566815 -0.9058509069062251 0.3468643571967391 -0.8319756076699162 -0.4330146717476977 -0.3468643571967391 0.8319756076699162 0.4330146717476977 -0.2233698916078353 0.3809815401075 -0.8971950499308505 0.2233698916078353 -0.3809815401075 0.8971950499308505 -0.4038432049329347 0.9142219902761136 0.03329892378256747 0.4038432049329347 -0.9142219902761136 -0.03329892378256747 -0.1223518925781642 0.4012286904715316 0.9077695480269434 0.1223518925781642 -0.4012286904715316 -0.9077695480269434 -0.3151267980724777 0.8509676693573339 0.4201774944533978 0.3151267980724777 -0.8509676693573339 -0.4201774944533978 0.3363313341491097 -0.4604980154032345 -0.8214759956804354 -0.3363313341491097 0.4604980154032345 0.8214759956804354 -0.1477826541164828 -0.3878707196895589 0.9097893118463153 0.1477826541164828 0.3878707196895589 -0.9097893118463153 0.6420208181518405 -0.5915231226189216 0.4877598430240047 -0.6420208181518405 0.5915231226189216 -0.4877598430240047 0.65653122842572 -0.7542974888116372 0.001429851136826754 -0.65653122842572 0.7542974888116372 -0.001429851136826754 -0.2874144392910325 0.2414427372665864 -0.9268755821081055 0.2874144392910325 -0.2414427372665864 0.9268755821081055 -0.6582580876005819 0.7522645242817573 0.02818466986796277 0.6582580876005819 -0.7522645242817573 -0.02818466986796277 -0.2201120227169055 0.3382984877345638 0.9149343313331178 0.2201120227169055 -0.3382984877345638 -0.9149343313331178 -0.2116578245121082 0.3682512626748039 0.9053131904822851 0.2116578245121082 -0.3682512626748039 -0.9053131904822851 0.5633763436292277 -0.6828683868338715 -0.4650783393170105 -0.5633763436292277 0.6828683868338715 0.4650783393170105 -0.2983763754703027 0.1912008658930078 -0.9351009397080986 0.2983763754703027 -0.1912008658930078 0.9351009397080986 -0.6749332731683019 0.7373564838805623 0.02775774575891243 0.6749332731683019 -0.7373564838805623 -0.02775774575891243 -0.2877855553736377 0.2722912126200352 0.918170446947732 0.2877855553736377 -0.2722912126200352 -0.918170446947732 0.7965483089217491 -0.25331969064047 0.5489443741288532 -0.7965483089217491 0.25331969064047 -0.5489443741288532 0.8952256744516675 -0.4451837288087445 0.01955605805113435 -0.8952256744516675 0.4451837288087445 -0.01955605805113435 -0.3232824650890451 0.02811582924454463 -0.9458847434607676 0.3232824650890451 -0.02811582924454463 0.9458847434607676 -0.8886118728611181 0.4583255718674542 0.01751027077537788 0.8886118728611181 -0.4583255718674542 -0.01751027077537788 -0.9067575697746833 0.4213139181950124 0.01689058884340025 0.9067575697746833 -0.4213139181950124 -0.01689058884340025 -0.2922720892736487 0.2931609731637135 0.9102931778527843 0.2922720892736487 -0.2931609731637135 -0.9102931778527843 0.7420188942410478 -0.4512429732643064 -0.4957698454614613 -0.7420188942410478 0.4512429732643064 0.4957698454614613 -0.3148535364835675 -0.004871793888643465 -0.9491277659978646 0.3148535364835675 0.004871793888643465 0.9491277659978646 -0.9986403082252574 0.05205747715350662 0.002748428673804703 0.9986403082252574 -0.05205747715350662 -0.002748428673804703 -0.3382050028932526 0.1884684216310399 0.9220070661691697 0.3382050028932526 -0.1884684216310399 -0.9220070661691697 0.8102448085935331 0.1385233204286664 0.5694862946943025 -0.8102448085935331 -0.1385233204286664 -0.5694862946943025 0.850292163442842 -0.1027524680073306 -0.5161832689133712 -0.850292163442842 0.1027524680073306 0.5161832689133712 -0.3038564751406507 -0.1820363668605298 -0.9351652279973406 0.3038564751406507 0.1820363668605298 0.9351652279973406 -0.2901697835728679 -0.1816600180615158 -0.9395749754751691 0.2901697835728679 0.1816600180615158 0.9395749754751691 -0.9998129191060721 -0.01934078147536413 0.0002469018372241945 0.9998129191060721 0.01934078147536413 -0.0002469018372241945 -0.3506145778820866 0.1891215684172913 0.9172254085752041 0.3506145778820866 -0.1891215684172913 -0.9172254085752041 0.8136157480820356 0.08554507510620872 0.5750751729973943 -0.8136157480820356 -0.08554507510620872 -0.5750751729973943 0.8477309982821077 -0.1457122358244851 -0.5100197044062617 -0.8477309982821077 0.1457122358244851 0.5100197044062617 -0.2332418363908272 -0.3605133273120471 -0.9031214683459979 0.2332418363908272 0.3605133273120471 0.9031214683459979 -0.9227566296420373 -0.3850317492158972 -0.01645462085294679 0.9227566296420373 0.3850317492158972 0.01645462085294679 -0.3711117305023067 0.08354994880662744 0.924821869085065 0.3711117305023067 -0.08354994880662744 -0.924821869085065 0.6915525193962799 0.4814310474029508 0.5384972233105345 -0.6915525193962799 -0.4814310474029508 -0.5384972233105345 0.8981535665174812 0.4388266490999631 0.02741063646882945 -0.8981535665174812 -0.4388266490999631 -0.02741063646882945 0.8429352430834632 0.2038986239245007 -0.4978810371258556 -0.8429352430834632 -0.2038986239245007 0.4978810371258556 -0.2289950518611368 -0.3335850885685384 -0.9144846936432756 0.2289950518611368 0.3335850885685384 0.9144846936432756 -0.8927785079939059 -0.4501277377975449 -0.01820866083598725 0.8927785079939059 0.4501277377975449 0.01820866083598725 -0.3806718630014748 0.05862662374499314 0.9228498532845144 0.3806718630014748 -0.05862662374499314 -0.9228498532845144 0.6731402347726009 0.739007696052626 0.02738338009226562 -0.6731402347726009 -0.739007696052626 -0.02738338009226562 -0.1328738513841334 -0.4812144041162298 -0.8664740255134076 0.1328738513841334 0.4812144041162298 0.8664740255134076 -0.5162158849207206 -0.6859595176090008 -0.5128164392422929 0.5162158849207206 0.6859595176090008 0.5128164392422929 -0.3820861233216923 -0.03800548351507161 0.9233448855047532 0.3820861233216923 0.03800548351507161 -0.9233448855047532 0.4981736372697926 0.7158538915589526 0.489260904905847 -0.4981736372697926 -0.7158538915589526 -0.489260904905847 0.7240770488769371 0.517255732976564 -0.4562443796832387 -0.7240770488769371 -0.517255732976564 0.4562443796832387 -0.6700269848456324 -0.7418464818371532 -0.02697474679230343 0.6700269848456324 0.7418464818371532 0.02697474679230343 -0.3799114723477743 -0.07529745765768819 0.9219531257329924 0.3799114723477743 0.07529745765768819 -0.9219531257329924 0.2919749971374274 0.8457010469135147 0.4466993847051776 -0.2919749971374274 -0.8457010469135147 -0.4466993847051776 0.4366617916404663 0.8991652104182367 0.02878200991706404 -0.4366617916404663 -0.8991652104182367 -0.02878200991706404 -0.02177044887002021 -0.544129826311796 -0.8387185342377337 0.02177044887002021 0.544129826311796 0.8387185342377337 -0.2991009114274306 -0.8171307614867489 -0.492783891188994 0.2991009114274306 0.8171307614867489 0.492783891188994 -0.3640544368667302 -0.1638864704625395 0.9168454568775367 0.3640544368667302 0.1638864704625395 -0.9168454568775367 -0.3516856267179471 -0.196019897617879 0.9153651837916281 0.3516856267179471 0.196019897617879 -0.9153651837916281 0.5385161458900962 0.7373175566309818 -0.4078764289578351 -0.5385161458900962 -0.7373175566309818 0.4078764289578351 -0.4313189614731646 -0.9015982752540596 -0.03293180123551914 0.4313189614731646 0.9015982752540596 0.03293180123551914 -0.3161452063528133 -0.2763503626536033 0.9075696587928439 0.3161452063528133 0.2763503626536033 -0.9075696587928439 0.09038315820220927 0.9018744521072597 0.4224374005099746 -0.09038315820220927 -0.9018744521072597 -0.4224374005099746 0.2181619494371877 0.9753973184674988 0.03170859416906728 -0.2181619494371877 -0.9753973184674988 -0.03170859416906728 0.08967458377019724 -0.5583310478931445 -0.8247574855581399 -0.08967458377019724 0.5583310478931445 0.8247574855581399 -0.09608809114761942 -0.8715032637221102 -0.4808837074192855 0.09608809114761942 0.8715032637221102 0.4808837074192855 -0.2086381313968603 -0.9773338619956301 -0.03589780388732829 0.2086381313968603 0.9773338619956301 0.03589780388732829 -0.3037588754766067 -0.2968283103013384 0.9053306024722899 0.3037588754766067 0.2968283103013384 -0.9053306024722899 0.3354134538968336 0.865290934758583 -0.3725176682650289 -0.3354134538968336 -0.865290934758583 0.3725176682650289 0.09634526151574765 -0.8729893959564508 -0.4781287537170853 -0.09634526151574765 0.8729893959564508 0.4781287537170853 -0.2454519458640523 -0.3778207053344043 0.8927512850128885 0.2454519458640523 0.3778207053344043 -0.8927512850128885 -0.1068596453381972 0.9026835445539788 0.4168254245960288 0.1068596453381972 -0.9026835445539788 -0.4168254245960288 0.01341617214996129 0.9993634397870952 0.0330563389041718 -0.01341617214996129 -0.9993634397870952 -0.0330563389041718 0.1974038384609054 -0.5321711683649947 -0.8233016288833256 -0.1974038384609054 0.5321711683649947 0.8233016288833256 0.003027027676952878 -0.9993161318622146 -0.03685248571513117 -0.003027027676952878 0.9993161318622146 0.03685248571513117 -0.2410784854031796 -0.3871111001126082 0.8899585159125762 0.2410784854031796 0.3871111001126082 -0.8899585159125762 0.1343276141167968 0.9239282355531835 -0.3582076320142694 -0.1343276141167968 -0.9239282355531835 0.3582076320142694 0.2993722838353061 -0.4646129549562232 -0.8333732883636714 -0.2993722838353061 0.4646129549562232 0.8333732883636714 0.2850152925201461 -0.8250136651719049 -0.4879741133597926 -0.2850152925201461 0.8250136651719049 0.4879741133597926 -0.1571424745819219 -0.4017635371120054 0.9021597989987807 0.1571424745819219 0.4017635371120054 -0.9021597989987807 -0.3048747392502304 0.8512690426142484 0.4270742446621255 0.3048747392502304 -0.8512690426142484 -0.4270742446621255 -0.191661035085276 0.980913794752465 0.03277460746308981 0.191661035085276 -0.980913794752465 -0.03277460746308981 -0.06722178414629125 0.9289421994874978 -0.3640709020884793 0.06722178414629125 -0.9289421994874978 0.3640709020884793 0.2140686791785048 -0.9760684691549257 -0.03827458838877772 -0.2140686791785048 0.9760684691549257 0.03827458838877772 -0.1633917211133873 -0.4107405372276532 0.8969923949229134 0.1633917211133873 0.4107405372276532 -0.8969923949229134 -0.4114640890829475 0.9109562830814607 0.02925668657845718 0.4114640890829475 -0.9109562830814607 -0.02925668657845718 0.392675059128166 -0.358586445760263 -0.8468896379432878 -0.392675059128166 0.358586445760263 0.8468896379432878 0.4758242106397891 -0.7262213496936595 -0.4961792738699808 -0.4758242106397891 0.7262213496936595 0.4961792738699808 -0.07402654048899283 -0.4019009932307778 0.9126859607462723 0.07402654048899283 0.4019009932307778 -0.9126859607462723 -0.5074201901332889 0.7336684332419206 0.4519462143988402 0.5074201901332889 -0.7336684332419206 -0.4519462143988402 -0.2747979300910873 0.8774232036407563 -0.3932106551588422 0.2747979300910873 -0.8774232036407563 0.3932106551588422 0.4416148108064678 -0.8965736984884186 -0.03364464378123158 -0.4416148108064678 0.8965736984884186 0.03364464378123158 -0.08548628211920895 -0.423666707208808 0.9017752584609322 0.08548628211920895 0.423666707208808 -0.9017752584609322 -0.6983849305252001 0.5260925321892732 0.4852681077404427 0.6983849305252001 -0.5260925321892732 -0.4852681077404427 -0.652935709757424 0.7571546896547233 0.01979229287951628 0.652935709757424 -0.7571546896547233 -0.01979229287951628 0.4651313472448723 -0.2078324456462522 -0.8604989856745141 -0.4651313472448723 0.2078324456462522 0.8604989856745141 0.6654114949270703 -0.5535400797209197 -0.500820249751824 -0.6654114949270703 0.5535400797209197 0.500820249751824 0.005395287547259124 -0.3680561013165262 0.9297879312810859 -0.005395287547259124 0.3680561013165262 -0.9297879312810859 -0.000867225763679104 -0.3981886224855724 0.917303149914202 0.000867225763679104 0.3981886224855724 -0.917303149914202 -0.4894566363220897 0.7496441153331802 -0.4454951195092927 0.4894566363220897 -0.7496441153331802 0.4454951195092927 0.6864967735788914 -0.7266359314524244 -0.02687755546994618 -0.6864967735788914 0.7266359314524244 0.02687755546994618 0.0725868616834736 -0.3044345845642266 0.949763513319053 -0.0725868616834736 0.3044345845642266 -0.949763513319053 -0.8316075752541561 0.2226775441602132 0.5087666971281429 0.8316075752541561 -0.2226775441602132 -0.5087666971281429 -0.8847522436102832 0.4660615723940678 -0.0002795785034157092 0.8847522436102832 -0.4660615723940678 0.0002795785034157092 0.5016079384743974 -0.02021602861251859 -0.864858825616414 -0.5016079384743974 0.02021602861251859 0.864858825616414 0.8822555810296323 -0.4704188499675612 -0.01819877296036858 -0.8822555810296323 0.4704188499675612 0.01819877296036858 0.9073054664746716 -0.4200752144590276 -0.01826484881898978 -0.9073054664746716 0.4200752144590276 0.01826484881898978 0.07682261342699291 -0.3297455999359967 0.9409389594384412 -0.07682261342699291 0.3297455999359967 -0.9409389594384412 -0.6901848685364405 0.5152374056275222 -0.5081094991097458 0.6901848685364405 -0.5152374056275222 0.5081094991097458 0.4967362894971037 0.01610327605483461 -0.8677521208253837 -0.4967362894971037 -0.01610327605483461 0.8677521208253837 0.881137121676604 0.07683693444745683 -0.466576315631416 -0.881137121676604 -0.07683693444745683 0.466576315631416 0.121346200908773 -0.213182952753967 0.9694473313079507 -0.121346200908773 0.213182952753967 -0.9694473313079507 -0.8530883309270968 -0.1294128720969493 0.5054627663553852 0.8530883309270968 0.1294128720969493 -0.5054627663553852 -0.8141432837357056 0.1226372975117968 -0.5675656850154398 0.8141432837357056 -0.1226372975117968 0.5675656850154398 0.4880880001696214 0.1805403350483941 -0.8539176140067805 -0.4880880001696214 -0.1805403350483941 0.8539176140067805 0.9999911939194426 0.00358340787864473 -0.002184324047165417 -0.9999911939194426 -0.00358340787864473 0.002184324047165417 0.1346498631346914 -0.2158552630592423 0.9670966444815297 -0.1346498631346914 0.2158552630592423 -0.9670966444815297 -0.852543754197059 -0.09185104189736706 0.5145216548231503 0.852543754197059 0.09185104189736706 -0.5145216548231503 -0.8136703326963612 0.1551561998301619 -0.5602384700679308 0.8136703326963612 -0.1551561998301619 0.5602384700679308 0.4242136223232629 0.3566618937050531 -0.8323671643055735 -0.4242136223232629 -0.3566618937050531 0.8323671643055735 0.7885484681636336 0.4252011479454887 -0.4442919053309724 -0.7885484681636336 -0.4252011479454887 0.4442919053309724 0.1578814167796198 -0.1001769572785845 0.9823634945711617 -0.1578814167796198 0.1001769572785845 -0.9823634945711617 -0.7547596030705374 -0.4463957743418704 0.4806961142161715 0.7547596030705374 0.4463957743418704 -0.4806961142161715 -0.9002422811471575 -0.432446934138268 -0.05053201351000254 0.9002422811471575 0.432446934138268 0.05053201351000254 -0.784429404362836 -0.2204048515778357 -0.5797346039110642 0.784429404362836 0.2204048515778357 0.5797346039110642 0.9025741462529998 0.4302707163807931 0.01506722073999456 -0.9025741462529998 -0.4302707163807931 -0.01506722073999456 0.1694471870219152 -0.07902390383136461 0.9823659569801935 -0.1694471870219152 0.07902390383136461 -0.9823659569801935 -0.6778132556286053 -0.7334246779500521 -0.05155028872871112 0.6778132556286053 0.7334246779500521 0.05155028872871112 0.3277239054474204 0.4836963039014177 -0.8115632614839077 -0.3277239054474204 -0.4836963039014177 0.8115632614839077 0.6008326756885273 0.6729871147698903 -0.4313796925895602 -0.6008326756885273 -0.6729871147698903 0.4313796925895602 0.1681094028706255 0.02892216114368819 0.985343969008417 -0.1681094028706255 -0.02892216114368819 -0.985343969008417 -0.5960298095862601 -0.6811322263594015 0.4252144827016733 0.5960298095862601 0.6811322263594015 -0.4252144827016733 -0.6424561725011055 -0.5590930582546198 -0.524084934554244 0.6424561725011055 0.5590930582546198 0.524084934554244 0.6860325639933897 0.7271010793847965 0.02614080140545522 -0.6860325639933897 -0.7271010793847965 -0.02614080140545522 0.1672300435761301 0.06358661083851493 0.9838652628523872 -0.1672300435761301 -0.06358661083851493 -0.9838652628523872 -0.3992045197284531 -0.8338741797123846 0.381168734076357 0.3992045197284531 0.8338741797123846 -0.381168734076357 -0.4366474483440545 -0.8983639980873879 -0.04776120596331298 0.4366474483440545 0.8983639980873879 0.04776120596331298 0.21652768302515 0.5604449753332692 -0.799385509067716 -0.21652768302515 -0.5604449753332692 0.799385509067716 0.3958710000720266 0.8145634474200975 -0.4239959214769163 -0.3958710000720266 -0.8145634474200975 0.4239959214769163 0.1470166178175257 0.1606718982912375 0.9759972618737133 -0.1470166178175257 -0.1606718982912375 -0.9759972618737133 0.1367856755483046 0.1896587772198493 0.9722752836456687 -0.1367856755483046 -0.1896587772198493 -0.9722752836456687 -0.4363458210862009 -0.7642315505540981 -0.4749236376074457 0.4363458210862009 0.7642315505540981 0.4749236376074457 0.4488835511081195 0.8930107740742522 0.03217631010338277 -0.4488835511081195 -0.8930107740742522 -0.03217631010338277 0.09538016543152474 0.2729069538911774 0.9573005894493608 -0.09538016543152474 -0.2729069538911774 -0.9573005894493608 -0.1991257440922289 -0.911641678242569 0.3595252265568972 0.1991257440922289 0.911641678242569 -0.3595252265568972 -0.21763138543582 -0.9751835671834637 -0.0406643623904359 0.21763138543582 0.9751835671834637 0.0406643623904359 0.1020096596484588 0.5870233287360724 -0.8031174514714685 -0.1020096596484588 -0.5870233287360724 0.8031174514714685 0.1981179938194849 0.882839950676482 -0.4258437295704719 -0.1981179938194849 -0.882839950676482 0.4258437295704719 0.2257180373774269 0.9735631159368801 0.03501752261020089 -0.2257180373774269 -0.9735631159368801 -0.03501752261020089 0.08665528999423607 0.2887177158272826 0.9534846308585636 -0.08665528999423607 -0.2887177158272826 -0.9534846308585636 -0.22658225065359 -0.8704022707202611 -0.4371045307632571 0.22658225065359 0.8704022707202611 0.4371045307632571 0.1011007468646662 0.8940055806808013 -0.4365004704407433 -0.1011007468646662 -0.8940055806808013 0.4365004704407433 0.06443326429145652 0.3425219535590591 0.9372977466007442 -0.06443326429145652 -0.3425219535590591 -0.9372977466007442 -0.09417717869610834 -0.929341111713472 0.357009463588865 0.09417717869610834 0.929341111713472 -0.357009463588865 -0.1141361063721672 -0.9931842134820167 -0.02362344835770253 0.1141361063721672 0.9931842134820167 0.02362344835770253 0.05548436446878843 0.5705421072592388 -0.819391963069984 -0.05548436446878843 -0.5705421072592388 0.819391963069984 0.1183676936289435 0.9923371121115479 0.03544213637857988 -0.1183676936289435 -0.9923371121115479 -0.03544213637857988 0.06845085986894042 0.3516465771793187 0.9336268872206244 -0.06845085986894042 -0.3516465771793187 -0.9336268872206244 -0.1175175581890131 -0.9006103052869663 -0.4184384082851493 0.1175175581890131 0.9006103052869663 0.4184384082851493</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1678\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2670\" source=\"#ID1681\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"5340\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1681\">-11.74144888926981 0.2995156568493015 -11.72844578741597 0.3612383321323039 -11.62607680371758 0.2695236410015677 -11.78256668186463 0.262761006242173 -11.65678044938733 0.2324514479488458 -11.67940949101347 0.1715944909997955 -9.580882603731697 1.421600639414946 -9.607195934743855 1.36255963073953 -9.727642328860437 1.456478716738787 -12.34296233652733 -1.662321588895963 -12.47259485116248 -1.563632893161546 -12.35690281990772 -1.592852254899214 11.25359972635966 3.202696558467046 11.12205437894896 3.192040233868029 11.22505410564551 3.256420738249801 -12.2778256741957 -2.055348678266946 -12.27481420880708 -1.991985827857275 -12.17174214833166 -2.08069444679817 12.57910007025483 0.03536161511213354 12.43937175444395 0.008946513143718278 12.55876004226043 0.08460807200294225 -9.467294573785217 1.521881094364595 -9.601346415461196 1.556031399693923 -9.586767854433372 1.616566234433712 -12.462725789786 -1.723326776848073 -12.46730567443074 -1.654941739996449 -12.33663307886079 -1.752777897535181 -11.28869336132121 0.4398648638747889 -11.28298616308152 0.5100510143314823 -11.17184969501088 0.4156940846380962 11.07615252924521 3.347637650004606 11.0612927033548 3.408852629792498 11.19269111039786 3.420577286670575 12.41561520551233 0.2612536600144755 12.41016093304932 0.3193238275237464 12.54904096458563 0.3483757592762649 -12.13571358259024 -2.203830549269758 -12.24023606917502 -2.116178483286911 -12.1236442051423 -2.141281075889086 -11.21175291259949 0.6206576612046281 -11.10526099853357 0.5963948490635626 -11.10146977004413 0.5256831566832035 12.42295638218037 -2.240499018688151 12.41762828509784 -2.188888247691884 12.57370146367941 -2.147123103745953 -7.586069925680303 1.949817941538308 -7.60819537041221 1.890715946886392 -7.749304143157143 1.988341492969443 -11.38058480781225 -3.271030873764528 -11.36067456409951 -3.337695502945139 -11.51496513825033 -3.237689075113913 9.522000295042211 4.628290408179952 9.462781273686264 4.668011820203072 9.633060442370404 4.683730091613124 11.76523208046429 1.72660165246162 11.71574001668296 1.774431773310611 11.86479566838173 1.780438597084393 12.26293617741474 -1.640409236288337 12.2600949049113 -1.712061773181668 12.11792521977338 -1.667086849452554 8.582894749084975 5.650800462674184 8.442122972975994 5.654527718153445 8.544366554184844 5.705255006519111 10.69429534297361 -1.561597904695199 10.52788443167712 -1.522357153209414 10.69630887454192 -1.489913897716416 -9.900225467786489 -4.636824579757597 -9.910425623077938 -4.574069523589055 -9.789317732973457 -4.656192700655551 -8.116123295485657 1.988761401734192 -8.101080489202101 2.058539639742051 -7.994956948560539 1.970766669297734 8.867639124559188 -1.423482573657848 8.682830784924246 -1.388297678149426 8.869004640289541 -1.35179908183861 12.4814838856345 -2.535243935387405 12.32361028046125 -2.572587378820387 12.46077931862412 -2.493028243144972 -7.467743502836397 2.038189770179729 -7.617401495150659 2.075532089734611 -7.608093276448374 2.136490070290303 -11.32310925696379 -3.341949109365313 -11.47003562461896 -3.307732454895078 -11.47779287200183 -3.242319126658382 9.345263057604573 4.996263702353766 9.470591739150775 5.05977166077629 9.51526332418165 5.013750705311483 11.69207919916437 1.956179677677225 11.80411877732831 2.016810328045327 11.84108299496973 1.962935924976196 11.53250658600702 -3.2937293863427 11.65661798818057 -3.244338195426174 11.66710759314982 -3.305456648502024 12.11873944609426 -1.665530933477226 12.26090874005484 -1.710506622428359 12.11573781677575 -1.737184806741658 10.69481208164027 -1.560248948535748 10.52640090788366 -1.59267802114744 10.5284012816735 -1.521007904880169 8.618093920705027 5.813962404226531 8.500860657116686 5.757708680955643 8.477340463340058 5.818095675446084 8.863835676057466 -1.43583079714488 8.67773387194017 -1.472342261358682 8.679026700309082 -1.400647969371447 -9.651361284927219 -4.665461375826346 -9.773549465450035 -4.584334530269455 -9.652501269993472 -4.603005449856767 -7.989509410617246 2.167613199549099 -7.878378916217077 2.149052074777905 -7.884060026655901 2.079338842195392 11.58286659727549 -3.207762407974214 11.717654063922 -3.218079582774465 11.60866230772046 -3.263443251872617 6.8024959949886 -1.315169183001223 6.604245192873673 -1.354082244872524 6.604863575770278 -1.282392355259058 11.56007032580767 -4.512516076480284 11.55093439552774 -4.467841717403029 11.72558156553137 -4.418324245411744 -5.32706318121881 2.330758983969183 -5.343308444112894 2.270707543166831 -5.500806707047188 2.370979239898025 -9.826589170379434 -3.974607359006392 -9.81029134104285 -4.039041553451645 -9.976624520188517 -3.938214189792536 6.876764242952964 5.946212405802218 6.819011396469598 5.982111922878704 7.011396664271641 6.003770116684303 11.71583660752506 -1.725252336186162 11.84708922395542 -1.776039007761535 11.71371726709966 -1.796926660236255 8.785357077343116 -1.645965651398126 8.920027470748808 -1.702637621248604 8.78224832741803 -1.717616460982631 11.84807912321745 -1.708398896539467 11.84459315430042 -1.780039199584147 11.71334063005863 -1.729252380568548 6.647801241743226 6.377228777611297 6.799473637701535 6.443314285184105 6.839782541090891 6.40100200948506 5.442131985907679 7.094449136178818 5.485940593849181 7.041522291144609 5.328097840241385 7.057449095653953 4.42124092548154 6.964040605521635 4.592010374627861 7.032737066621546 4.621381257541662 6.990114533605977 -5.658289412791666 -5.80177853690927 -5.677452900271285 -5.74116267308825 -5.533056881975005 -5.815300248078828 -4.171628216484647 2.511730079263448 -4.308183490024966 2.524016656431328 -4.287791378959351 2.592006132494689 7.243050797876385 -7.790876490447768 7.224362489216523 -7.848287411221677 7.092176616415644 -7.819598782151662 2.096998671710746 7.340669616702345 2.280459009696378 7.411437032476648 2.297043273553935 7.366325298233281 6.797944273614725 -1.332168338789559 6.6003112185224 -1.299393883842578 6.79851282549804 -1.260482466016632 11.53173238421809 -4.690202647446402 11.35516371564881 -4.735306374773988 11.50440471180585 -4.654589799965487 -5.259056507240328 2.356389715352195 -5.418447200525968 2.395472743371997 -5.416163797169103 2.457040261511123 -9.733313145750167 -4.008711148135379 -9.896791658206171 -3.971258390226221 -9.900126551066935 -3.908375954930581 8.902223862974255 -1.659890107778779 8.90028411629473 -1.731567578837551 8.765611732637771 -1.674898535885492 4.886278355500735 -1.510110149169463 4.883899426680693 -1.581778252261581 4.731457784751854 -1.519715201032139 4.628567068798929 6.584826676335769 4.579836239075592 6.621244609343353 4.780336367366727 6.645547777093944 5.628892475123588 7.188550491108445 5.500078713141996 7.149740799693046 5.471304793045595 7.205970412741817 2.299889899483088 6.950322569585003 2.262372408423257 6.988786366947189 2.462758520709198 7.012736027295794 -5.377745294550071 -5.720513876955472 -5.522807977343678 -5.647186116354863 -5.38631330642562 -5.659668017166704 -4.060375952524813 2.671271332259083 -4.069921487613713 2.603857562684286 -4.185656402419397 2.684515495011054 7.396324549621735 -7.608717857458358 7.529531508741336 -7.634317416186927 7.397141033844306 -7.663371343043143 4.73128336449428 -1.519980003883965 4.883725038692171 -1.582043006063475 4.728976788938931 -1.591648050335046 -0.2623939151831403 7.192021975820668 -0.2882031907343582 7.234366400791881 -0.09856620857761261 7.255684692062035 4.600984050270906 -1.25497677049042 4.401147185348393 -1.294499925841812 4.401034565651177 -1.222812712557103 10.34843091374799 -6.102023026030048 10.32865731907952 -6.063442410896943 10.51594670131318 -6.007619749890765 -3.024566038011676 2.614173059664148 -3.033320735940625 2.552965586811446 -3.199731901498446 2.655063304862684 -7.869327831525308 -4.396665505132675 -7.859232112623701 -4.459099537014789 -8.029118937316149 -4.358607758926194 2.80338546977934 7.817560174019732 2.651174619007168 7.793309069816327 2.625530491847687 7.844952543933458 2.501163748330692 7.639824342170074 2.545905629507471 7.590475487409764 2.367395524972351 7.61508978971215 -7.789523853502827 -4.41638889590269 -7.963648209580031 -4.377043011570966 -7.959731909486614 -4.316234069489483 -1.452510394040529 -5.753264390215425 -1.594887257913027 -5.744142072134474 -1.615132328423253 -5.685031944660874 -0.6805255439388658 2.446925120460911 -0.8355996490348416 2.454796094465432 -0.8154635459344278 2.520751271812972 2.206032798767428 -9.232251956037208 2.177164481613696 -9.281967985823835 2.030900249366722 -9.245132810952153 1.18078117221213 -1.512357968187159 1.006539800950368 -1.445972828189044 1.182269970665983 -1.440676522659683 -5.699138178084543 -4.723544166976328 -5.874720303201966 -4.68374440348691 -5.862301994908608 -4.624578427908912 -0.2472358015268761 7.56848280017925 -0.4366062880899663 7.545745711628018 -0.2519689592964963 7.617707515150494 4.603779124356972 -1.244203004424983 4.40382998669326 -1.212037611753788 4.603675541672037 -1.172513637404377 9.996371707486201 -6.299288350336639 10.14814460439911 -6.219257254932239 10.18623724756709 -6.249139634979684 -2.924899355663001 2.658345360810463 -3.085560799920206 2.697903569888154 -3.090838590846902 2.76091732316388 -0.2425418896444004 7.759050048208717 -0.2033617495848006 7.71296278464953 -0.3965134596743597 7.743115340900113 -5.797455951671555 -4.72888951395918 -5.795755319060717 -4.789761749946327 -5.958540525269064 -4.690410918465032 -1.346012285661594 -5.572166732864312 -1.33801683863705 -5.632068485196453 -1.500993267249134 -5.564361484786845 -0.5873198502714261 2.598794170090538 -0.5950487446150343 2.533777516879111 -0.7296950531256075 2.607932517163409 2.39871123418593 -9.091707786376636 2.546232638608836 -9.125297466938982 2.392123971019934 -9.141003364633905 1.178743975734375 -1.515679005070357 1.002977098907413 -1.520986627162868 1.004502142666655 -1.44929461518139 0.124197980807792 8.013735527304492 -0.0508325942405391 8.000322499871041 -0.06794789182396233 8.047632544815455 -3.462659446866571 -5.088523691965518 -3.469555344496901 -5.148244870947446 -3.616068461591926 -5.050932896824789 -3.190935871667016 7.152346912506171 -3.2075366039817 7.19995355679202 -3.036510958986105 7.21606128078029 2.184128383719081 -1.195890384387676 1.993906149719048 -1.23448887110764 1.993099842741572 -1.162802263894674 8.85340002942193 -7.37705073251813 8.820881506475359 -7.343338260105415 9.010989805826339 -7.284395031560132 -0.3721558219405674 2.922912716702614 -0.3741360009975697 2.859781547657486 -0.5389588898993131 2.962843513785378 1.841010860811883 -5.339151004110392 1.685044987527295 -5.33275759033376 1.669306136396076 -5.273812819038381 2.284246773658898 2.199535898117158 2.114348079412392 2.204579909077931 2.130035244899707 2.268703560682782 -1.574382956317714 -9.07560624458185 -1.598843878068589 -9.12128588575635 -1.766745344757587 -9.080675506967056 -1.929664949831288 -1.494754635054952 -2.12136419378335 -1.425536299440526 -1.928892107442987 -1.423055163383718 -2.789005220763803 7.608930183053209 -2.759875383825831 7.565405457637623 -2.958477020432813 7.598235637733082 -0.2305862254098634 2.984710626421055 -0.3835328563344093 3.023449877844294 -0.3947774450083669 3.088394675990279 -3.360529271533014 -5.074723276154611 -3.527773611387869 -5.03589488259901 -3.507442583608847 -4.977785405454979 -3.164103394036962 7.498919628037291 -3.334948320080214 7.481665859646864 -3.161665334791502 7.554469576134271 2.141946816386589 -1.347016227446665 1.950914292275701 -1.313942341068258 2.141550528157461 -1.275684769070103 8.367545931313082 -7.521889161878075 8.510904523052702 -7.443822241932844 8.560669073191862 -7.469360101513356 1.935564192398618 -5.150695691254837 1.937625305694038 -5.210663637304537 1.765664580042745 -5.145743430516593 2.352257450953568 2.340008797729845 2.35030451613772 2.277053980511773 2.196298392948655 2.346504281828393 -1.436569806362055 -8.957979159587007 -1.267486835270482 -8.995433275758586 -1.437147823229758 -9.004116153599394 -1.929011731256789 -1.493625859443813 -2.121456364780773 -1.496098091524942 -2.120710804885195 -1.424407231915603 -2.396398774805084 7.919002447977963 -2.588716161691157 7.912445480916588 -2.593738818145487 7.956244148618748 2.84725765789131 3.15343715271799 2.849139194257781 3.087909424565146 2.696417707258635 3.191008792351492 -0.653755907212582 -5.529349150344372 -0.6675606502791859 -5.588633021257145 -0.7923726897496097 -5.493801660748249 -6.51669874472976 6.504786669363671 -6.531014767564402 6.559216844638987 -6.379514552670415 6.56676647444814 -0.9922128335761016 -1.328294778651259 -1.165643109812238 -1.363229300725369 -1.166513227596551 -1.291900445344396 7.108951019253105 -8.425929485828988 7.06372407601108 -8.395615705091698 7.24391227245696 -8.335699164961863 4.573621223592019 -4.916651511719975 4.411314280187598 -4.911262491498004 4.403269182855177 -4.851607402140906 4.904112069894061 1.918793779259097 4.727402268474455 1.922791412813862 4.736237152207083 1.985380271621021 -4.437798329623791 -8.397316982537653 -4.451040071313446 -8.442264935614094 -4.637930829928404 -8.399912369502895 -4.597358119168579 -1.507892447416386 -4.797520813419397 -1.437615233207941 -4.597312546022032 -1.436199197686443 -5.25814206742687 7.196860485896443 -5.241338446088387 7.154917703844793 -5.434563461629423 7.187607580935707 6.497323518171333 -8.52474281684847 6.622369366610961 -8.44848361847532 6.680889858458037 -8.471549336480635 3.015012548645007 3.202968935163313 2.876850300405353 3.23959512920371 2.863088353439498 3.306794710839682 -0.5529586887712751 -5.517447700459916 -0.7041704637670615 -5.480869536733048 -0.6782037517688422 -5.422970305899322 -6.431651721616982 6.769318716729861 -6.583112641813516 6.761295992214714 -6.426791496494857 6.829938492278095 -0.9795284992144193 -1.290583599234043 -1.153827927395088 -1.254186403510166 -0.9824627614352688 -1.21896596610352 4.64657151577039 -4.760996021544277 4.640355262090291 -4.821849173762274 4.469828209252315 -4.757089485762245 4.950214427835618 2.045401205283817 4.955626831047628 1.984088816903914 4.787915037566915 2.050929208458205 -4.182367516991635 -8.341623084630752 -4.358971374696691 -8.347879702256856 -4.370280096107651 -8.302167619387358 -4.596201381844119 -1.505827281507136 -4.796353063114546 -1.5072360563653 -4.7963637397194 -1.435549474411177 -5.057470471956677 7.582553290774086 -4.865669217241129 7.545031703597378 -5.065817293544431 7.540918553991048 4.957591516893525 -9.323477817304287 4.903639879733459 -9.294322505478187 5.067308156413816 -9.234710711719869 6.654209712705845 2.946736603795653 6.654873907429679 2.878672557132365 6.522398766810107 2.980568470682666 2.923934359186434 -5.922054866367398 2.907208536146099 -5.982025405549064 2.802982723945541 -5.889461530968069 -9.802638322290378 4.800814161494554 -9.820299511097669 4.859944077207221 -9.684135151580561 4.857534280005362 -4.860752889845385 -1.41028527103227 -4.864187674367006 -1.338681412253571 -4.70940169383392 -1.379459452976369 6.958807523722374 -4.563540491940228 6.799021687318941 -4.557461396095697 6.799650798308866 -4.496414082661399 7.284856738574284 1.609208457925939 7.109567093749364 1.613872955632837 7.110902738525677 1.675324021364 -6.789442135413402 -7.534503654495818 -6.788979414593166 -7.581071930070149 -6.986459445370556 -7.538395863380834 -7.008129643592699 -1.549175893199101 -7.205871408085209 -1.479708683959871 -7.008829431586213 -1.477491424499945 -7.832844768012574 6.298513577097724 -7.827612006397824 6.256565743114188 -8.006139552828646 6.285788516270243 -4.809665896933416 -1.209971681952114 -4.657252871414563 -1.179092909372824 -4.654884380676176 -1.250760207850114 4.210688179725525 -9.378079285201636 4.311158735613041 -9.302915101020057 4.378167916048067 -9.325424874845838 6.697864003470544 3.055986178291118 6.829321579968937 2.953277954181535 6.708648164460842 2.986503354732487 3.065895121767051 -5.887984999060847 2.933787341464837 -5.854709724497033 2.960982918963832 -5.795902234497583 -9.670129115792346 5.037702401030357 -9.806288946486646 5.040265670107184 -9.671903276790584 5.103116196075329 7.043136576742679 -4.40595530181414 7.028554200167543 -4.468134874763893 6.869188407948853 -4.401316131635946 7.352803372952859 1.769272242920003 7.366683665009312 1.708971074642476 7.193031605693971 1.775576025144588 -6.565620979244169 -7.515410889788616 -6.740790494041411 -7.522325461626006 -6.764030400945428 -7.475491577683311 -7.00044973843489 -1.535394491632223 -7.197508846279785 -1.537620689163504 -7.198189008208616 -1.465922887936483 -7.639853404915388 6.727583692399423 -7.462811141342913 6.693220984734914 -7.659634417423792 6.685590613259228 -9.091993175251236 -1.400163686848697 -9.095104423048859 -1.328513963169547 -8.957198678408712 -1.374794444840026 2.088802938963234 -9.997176616541324 2.027730622655659 -9.965915446612344 2.167946043729305 -9.907699787770394 10.37420003917934 1.776465948431914 10.3674006851155 1.706671799040516 10.2568571852293 1.805140932588809 7.332845110279943 -5.645878000589251 7.32011928773478 -5.707650147655692 7.225554091578649 -5.617044665746957 -12.00365085640907 2.103529000028071 -12.11083833930589 2.056083463161218 -12.13936301001261 2.117543901426363 9.128422547300703 -4.167615688441376 8.979583680000857 -4.159240890501897 8.988062650575198 -4.096364795214314 9.62942118449809 1.180079220242551 9.468566151109352 1.187702421762954 9.462964868310205 1.248825602015191 -8.856260462870637 -6.481852542666997 -8.844030139595029 -6.531199063870697 -9.039758192796155 -6.490164318717562 -9.231914109724617 -1.608956791029672 -9.418010000617326 -1.542047426818185 -9.233337730757027 -1.537265740118989 -10.55432641586378 4.272124490870982 -10.55468275467456 4.227341829008037 -10.71373661621766 4.247774287076543 -11.96096458773688 2.293891907884383 -12.09652153339656 2.308807428075515 -11.97451007278699 2.360528953007108 -9.095146740151805 -1.328592620864423 -8.960384110906421 -1.303225258190149 -8.957240991936562 -1.374873095942348 1.094721441473835 -9.972217113667822 1.171234339606149 -9.896583233264874 1.23975293336472 -9.921829482104302 10.39408689113141 1.80897667360674 10.5034567901416 1.709699847662922 10.39601587426526 1.73818566891451 7.483868840123264 -5.591557105054264 7.36655530723886 -5.562501044965872 7.388357740887591 -5.501567722421501 9.21742561308921 -4.018882356122719 9.195921656679007 -4.082676604849426 9.055290784876068 -4.011757143174085 9.629174249886784 1.255980265621598 9.646737705419934 1.195861539282453 9.480371447671427 1.2647426972968 -8.675520694219362 -6.523252221111428 -8.836062699078173 -6.534223681332305 -8.872044167421587 -6.484641757133002 -9.250791470911054 -1.642268815319364 -9.434490888544763 -1.647091110091293 -9.436893779928141 -1.575370499087178 -10.45707069175856 4.726532492156542 -10.29913629310245 4.701291922158695 -10.48184197192814 4.679613162712742 -12.63977616208932 -0.9273837207853625 -12.74979171327828 -0.9632254569319163 -12.78919055579869 -0.9032802440668931 -12.12116219307873 -1.481798284927145 -12.12450508476186 -1.410156043194183 -11.98906089864303 -1.462353739325835 -2.535001836699398 -9.906907097943615 -2.412670307475611 -9.853889246526428 -2.478112408157837 -9.946148530229237 12.50865967383724 -0.2513612785534403 12.49146251114397 -0.3208641598353222 12.39295065094641 -0.2289750108097736 11.31895732277467 -3.810554978819632 11.31814963420504 -3.873852936035063 11.21343409370321 -3.786668892533225 11.07707933209384 -3.550728295677646 10.94469483375759 -3.538567788386231 10.95833133003168 -3.473446396453449 11.63106600647887 0.2061548452155761 11.48698905095698 0.2180093359482591 11.48046761016169 0.2794816087649741 -10.6712569807544 -5.117824792180593 -10.64809699011871 -5.171932325189414 -10.83379115271743 -5.133620797087398 -11.27988741507947 -1.748918738247703 -11.44541448108541 -1.686180825741681 -11.28293958390806 -1.6772134093654 -12.39938061167506 -0.4161167486264854 -12.38865371823923 -0.4662161340696799 -12.52963891058665 -0.4659498291942053 11.30927551074504 -3.664382577826464 11.41503851120376 -3.75078062260317 11.29980337060023 -3.727178829093584 -12.66463773237975 -0.6781409895137429 -12.64104808831509 -0.741897834317016 -12.79002850106259 -0.716185648479387 -12.12526583663069 -1.411368076138394 -11.99325727439361 -1.391927485522272 -11.98982170169331 -1.463565854456969 -3.632906423484318 -9.660405237300248 -3.566552739560311 -9.582546796987295 -3.505217974087447 -9.615885002960656 12.52991061831078 -0.3724242446203644 12.42393325626139 -0.3498166024465829 12.4323418599017 -0.2799144889856022 11.15233775538905 -3.421362161783144 11.12729216168632 -3.487077713208864 11.00819875187688 -3.410125439206657 11.65777484585111 0.2767919104626061 11.67564296320735 0.2157896464781605 11.52550440551939 0.2896976605287122 -10.51807316836586 -5.240924733950831 -10.66130814058692 -5.257961011479553 -10.70453960265825 -5.205009393716994 -11.26384167887985 -1.721771597922077 -11.42721805654077 -1.730696341314952 -11.42936266179998 -1.659023754208922 -12.52972168922306 -0.3846057967100768 -12.38873673943226 -0.3849423132242902 -12.53591580490833 -0.4398196182138159 12.62792554990162 -1.101263352783651 12.6400791714095 -1.163773215646772 12.51119708843168 -1.083369849221743 -11.86485453032099 -3.402588128043231 -11.99008255230615 -3.427512120177802 -12.03463162676741 -3.371110583381843 -12.58964605089722 -1.427822778329626 -12.59259175567948 -1.356170908843144 -12.44489492035745 -1.414216302568857 -9.383061769334239 -6.801552598409037 -9.256724540624576 -6.768127164853158 -9.352222490927115 -6.854946803153172 12.41861655384095 -2.060790323269516 12.39461041287445 -2.128417416854343 12.2910786336016 -2.044728136316965 12.45813533263003 -2.402572675965091 12.34280676518138 -2.385298577056727 12.35654189842645 -2.317549214513047 12.52165489348191 -1.616972652003023 12.64858877083594 -1.697364788690704 12.52305040564574 -1.67956377972338 -12.08278393720486 -3.202849801472213 -12.05594895768474 -3.262135795159361 -12.22298998974308 -3.229226508116268 -12.6516029425873 -1.773830985726373 -12.50857597536363 -1.75963628194757 -12.50568850042542 -1.831292728905742 -9.343902537534031 -6.935784564243342 -9.257470007907044 -6.861887306191102 -9.215933138648033 -6.906660176224864 12.36268158078461 -2.196490795645535 12.2456680767882 -2.179789116329019 12.25976053359167 -2.112336626754983 12.50719410694841 -1.024809426739362 12.6368248416923 -1.104464511988787 12.50950434925755 -1.087312927530483 -11.96484813240372 -3.218363235038317 -11.93796267029835 -3.27703910065273 -12.10709183690796 -3.243472356547868 -12.59326632727019 -1.357352994966052 -12.4483492725467 -1.343747833019326 -12.4455687913008 -1.415397285402063 -9.877332938997045 -6.199439506866744 -9.839047067623984 -6.245437223394697 -9.968073484456209 -6.271748555655978 12.51067197777951 -2.264394422211805 12.48707835841465 -2.332238428219439 12.38479057784987 -2.247731725578681 12.63240496506322 -1.701099363938241 12.64351064881452 -1.763772357297994 12.51738461037265 -1.682597194654001 -11.98937488519044 -3.412015789481183 -12.11259730909406 -3.437965774524124 -12.15705428745152 -3.38118091886831 -12.64844737687594 -1.844992647812353 -12.65133571213523 -1.773334687458416 -12.50542168328711 -1.830797080135709 -8.656578494107571 -7.45388394231253 -8.531792649229395 -7.417193489479274 -8.621547105244462 -7.505938558919116 10.97555340259266 -3.12495378456293 10.95065784997287 -3.190445665850969 10.82933501696498 -3.114233826382925 11.47346684383802 0.7713484604645637 11.49162006441407 0.7104710682554059 11.33940731064752 0.7837407097749916 -10.33527373714022 -5.153424382142408 -10.48058855160338 -5.169670767153617 -10.52340699636314 -5.117177205175353 -11.04069175363465 -1.302988737267793 -11.20783564497405 -1.311353676934393 -11.20985138859328 -1.239688386468351 -12.48444414933543 0.491694038411598 -12.34128613440473 0.4874768722513266 -12.4945254589186 0.4372881367572089 12.42541345905517 -0.4991480218042001 12.31989503692353 -0.4758992407401852 12.32742995315252 -0.4058124407485412 10.99733374286901 -4.265374068443967 11.10124592985135 -4.352311553958974 10.98646045081967 -4.328072274064161 -12.66567049967682 -0.5787927298188667 -12.64275324487363 -0.6430002116656972 -12.78990107422398 -0.6182692529406896 -11.91816445190107 -1.816697026754288 -11.78657867307373 -1.796639591553614 -11.78325237076993 -1.868285798063717 -3.03661008545884 -9.886142970834346 -2.970469711943867 -9.808508856148313 -2.907759085318206 -9.840687205965677 -12.35686802520185 0.388155113470278 -12.34850347190673 0.339079343109507 -12.49170032758256 0.342381093573635 10.88906956943895 -3.269372934687003 10.75490927218324 -3.257674969762436 10.76814069664601 -3.192774596174574 11.44305494885871 0.6971207847463162 11.29698743446772 0.7084441200533634 11.29039165657002 0.7698080386748657 -10.47450039479497 -5.064020869488842 -10.45348956660261 -5.116971269781486 -10.64094982682822 -5.078626965614672 -11.06949987109534 -1.351997602225283 -11.23866903046987 -1.288713004914383 -11.07302684333547 -1.280265968585814 12.39289100820223 -0.3836486901399827 12.37672940311273 -0.4532790525142293 12.27776342596203 -0.3605871649456335 10.99680138746255 -4.410459568927757 10.99459695654076 -4.473688554938871 10.89173243654458 -4.385983431962557 -12.64852390106491 -0.8453489149761317 -12.75762377908674 -0.8824337353252709 -12.79607724188367 -0.8221612998089154 -11.91438449032938 -1.887684993837084 -11.91776011481119 -1.816045856628485 -11.7828480176952 -1.867634602068566 -1.933703828158792 -10.07868929536656 -1.81026501520841 -10.02473356046239 -1.875686140215478 -10.11676003594861 -10.17706018306459 5.097687172114565 -10.01725217847693 5.071354279007315 -10.20095668611738 5.051879504055433 8.995147568145498 -3.696204126959678 8.974272125570424 -3.759849373325496 8.831458980904374 -3.689412356531054 9.400596252401385 1.682104356206595 9.417770529397334 1.622021736905093 9.2502975424471 1.690531282780614 -8.45640697574469 -6.382028951600566 -8.619824479915039 -6.392241901847838 -8.653110732555769 -6.343341259016498 -9.038068919105529 -1.24788696516011 -9.222240593653645 -1.252393929910638 -9.225225480908765 -1.180647070927984 10.05675776997463 1.643108930239682 10.16820728874696 1.543330011735562 10.059810790726 1.572368137454234 6.998934761922653 -6.035054778172777 6.880632778123195 -6.005502360400557 6.903312709457032 -5.944818003328651 -11.74457042749066 2.489837794344858 -11.87918610599331 2.503635272383705 -11.75613173818142 2.556659312516994 -8.670913047531144 -1.724799554574812 -8.534977760678501 -1.698829678135716 -8.531851816781167 -1.770475826390209 1.485425508101299 -10.06843254090519 1.564093993658654 -9.992824421600794 1.632754902427563 -10.01762387632426 -9.02391560484867 -1.22302474044927 -9.21106794281592 -1.155777571130257 -9.025790632366473 -1.151290994180673 -10.27446063735071 4.690293434642577 -10.27490244014704 4.645887228578312 -10.43582367873811 4.667623486146511 8.913467909195871 -3.838523047499619 8.763137088026813 -3.830458369733087 8.770889745621997 -3.76779204998402 9.360019475549045 1.568404717229265 9.196334975332707 1.575493977360676 9.192263655233109 1.636484690979623 -8.661253801899644 -6.366194588792125 -8.649440463393031 -6.415375118327732 -8.845249100216865 -6.373972631867829 10.03340020791131 1.599414314214787 10.02750044884798 1.529709581156705 9.914903397122924 1.628687998814944 6.853934287475052 -6.079798110897198 6.840378967730652 -6.141342012782307 6.745636531592738 -6.050532874361013 -11.798215440735 2.243726706561286 -11.90627848130967 2.195688543891689 -11.93298986374412 2.256529284951512 -8.621247131419645 -1.706807212065337 -8.62392013129776 -1.635202834720432 -8.484864646119997 -1.680889930087116 2.435780704926944 -10.0619895946401 2.374970751312699 -10.031181497431 2.517677819352089 -9.972776275313359 -6.764268467558409 -1.147253245800262 -6.961689712012028 -1.149343042150286 -6.962895703967666 -1.077600405002238 -7.348261144312024 6.98402052889424 -7.169409761167305 6.949110522036535 -7.367288455792304 6.942211602050309 6.794298856602808 -4.063250246811537 6.780510794048428 -4.125271320167731 6.619619264772761 -4.058767166544976 7.102789637265532 2.135591705515717 7.114675123131672 2.075236888191242 6.942343096858249 2.141722453699808 -6.332418529825498 -7.359341531255688 -6.506967826071922 -7.366219647931042 -6.529785341266063 -7.319498210145622 6.430823141387458 2.750723014481685 6.562552201241535 2.647755997665314 6.441537606303928 2.681374281013077 2.644283802694815 -6.225210952991415 2.510218440309529 -6.191554350243303 2.537567006580673 -6.132915613534858 -9.355826973640905 5.036597614380479 -9.492855318043128 5.037883858320361 -9.356904150321803 5.100959264180673 -4.494624287318655 -1.525973817509648 -4.341150799821101 -1.494621520714359 -4.339576505329961 -1.56624606056034 4.472284172518158 -9.457221279901232 4.575456510418413 -9.382123781945879 4.64194587567867 -9.404522966263153 -6.562998102176331 -7.400945008980378 -6.563966135535728 -7.447263729996825 -6.760382188291946 -7.404611872568815 -6.753648041943365 -1.128215647802435 -6.952271945189014 -1.058556925125039 -6.754216078794794 -1.05651140982454 -7.547955162615296 6.577112494790191 -7.541697627712216 6.535292898393608 -7.722052059055042 6.56503499319368 6.718925135536847 -4.211698638346738 6.558466337379583 -4.205769742937711 6.558213828802286 -4.144925359838098 7.057051119940247 2.006429283631081 6.882381850272501 2.01105322098368 6.884512304638858 2.072582115892741 6.169857353068333 2.527969920420695 6.170038855887454 2.460789918122341 6.036112087882685 2.56198727054916 2.67862509952272 -6.154060816581917 2.663999153976167 -6.213608002844778 2.55719983182038 -6.121371755901471 -9.482021656755968 4.822189384605398 -9.498751468852149 4.880856389207573 -9.361722204302287 4.879632311053638 -4.528751805469526 -1.685335543553132 -4.531103428842284 -1.613666035805749 -4.376050928750205 -1.653927036019258 5.235676004327856 -9.372783672994176 5.181000303094324 -9.343697319571449 5.346725306317451 -9.283745814227659 -3.902345644681797 -8.188450922791049 -4.078676241945887 -8.194789082512166 -4.08867326440851 -8.149136522546895 -4.327690351277358 -1.088238499736795 -4.527601804844657 -1.089680638999548 -4.52746346555077 -1.017975091231807 -4.79947061981522 7.78193419980953 -4.606635102665683 7.744276694443797 -4.806417106789312 7.740181965700497 4.387417903032164 -4.407854659546714 4.382133547516519 -4.46855719281075 4.210971058523595 -4.403936426526169 4.681718741610681 2.442432361484705 4.686367937986903 2.38098940092198 4.519706775186822 2.447973052733856 2.476831900306799 2.716574320402483 2.335078071260506 2.753282953091385 2.322415237819073 2.819720465299218 -0.8495766814528855 -5.774371647432403 -1.002707635119836 -5.737629929984101 -0.9790738337904092 -5.679901341697414 -6.071758205456579 6.677088089301477 -6.224041331265969 6.667414535635049 -6.066577875337789 6.737074892068213 -0.603000168508987 -1.600932722750944 -0.7793963174765101 -1.564909228730366 -0.6045114858098177 -1.529249202034462 6.70547068815338 -8.606727274878164 6.832839897149201 -8.530298598614294 6.891944206870454 -8.553411110576478 4.637206991234515 2.320151978438376 4.46076634823816 2.32417045170247 4.470391535050927 2.386897525562452 -4.161879116041738 -8.263382461045596 -4.176476253040675 -8.308291472603296 -4.361769972694257 -8.266061222019705 -4.336992906053219 -1.104783608457802 -4.536768711631513 -1.034524935495792 -4.336927146500251 -1.033097672776584 -5.001450248918326 7.419336624268841 -4.983329668157889 7.377315062324037 -5.17758152973672 7.410160257254966 4.298966063716758 -4.588667483190155 4.136946941045659 -4.583257838637099 4.128020234244661 -4.523692774115456 2.484855667067577 2.789012963088577 2.486445910335214 2.723714722672173 2.332074113184158 2.826902418716778 -1.046989673823427 -5.847260349220556 -1.060382942890412 -5.906539020698793 -1.189097759635383 -5.81140936995679 -6.146239914780912 6.392685852270479 -6.159389527583137 6.445813851573554 -6.007048796865194 6.454908809726416 -0.60076057330336 -1.59410819447996 -0.7756371006096985 -1.629763143934852 -0.7771564598577757 -1.558083905279896 7.301209059354632 -8.484636073484849 7.257233861067239 -8.454047762899966 7.440374990276014 -8.394007409282501 2.06803911632309 2.737769939167325 2.065327229402503 2.674623546000769 1.91312958157923 2.744481654770203 -1.085763499124732 -8.796770273188072 -0.9189585077525481 -8.833920236310153 -1.087378176596949 -8.843106727841482 -1.626913881604018 -1.092671610911676 -1.817993393265908 -1.095358427071946 -1.81723355860426 -1.023674964812309 -2.13322646002044 8.09807582376013 -2.324178927807937 8.090987503568474 -2.330545061576794 8.135077551150664 1.618299095932219 -4.828931019078644 1.621124506788383 -4.888867402070411 1.449631634185229 -4.823763440210499 -0.526703063943198 2.599859309825714 -0.6808456436704596 2.638770696695628 -0.6915268286746495 2.703538147112178 -3.627946778109352 -5.414580689639528 -3.796489413940117 -5.375580232539402 -3.776878688799414 -5.317382522403903 -2.831180103493431 7.294171544058458 -3.004226880453705 7.276283520025179 -2.828418811434614 7.348253626233903 2.384310184686598 -1.604284260452886 2.191513321852315 -1.57108577423952 2.38357500279351 -1.532597390340951 8.54957863899463 -7.591958080748714 8.694371719356722 -7.513685233859774 8.742967469453195 -7.539587880709598 1.530720740360913 -5.009527037301059 1.375804350051337 -5.00291396835108 1.359469765756647 -4.944030215581829 1.994722808651195 2.594395626625812 1.826031627198952 2.599663348134984 1.842304716504712 2.663955668709898 -1.230188828532585 -8.932765496567605 -1.255554628742061 -8.978672107389132 -1.421166755824111 -8.938354502977786 -1.623548050405513 -1.086890318599028 -1.813866864484138 -1.017892199499018 -1.622732729965817 -1.015192423542869 -2.52433515747498 7.813396953095524 -2.493986601513873 7.769672185517139 -2.692542401511045 7.802322348963337 -0.6789744603693282 2.523575595231862 -0.6815984130075842 2.460667918481013 -0.8471022097428899 2.563674171800625 -3.71955093586108 -5.419688800708901 -3.725594302735853 -5.479495385044515 -3.874166855982458 -5.381957471144198 -2.865162023902458 6.948440991182726 -2.88256355845516 6.99548191542547 -2.709338924917071 7.012270865625154 2.382390142265855 -1.61121454396324 2.190337654589732 -1.649707131131667 2.189593049550067 -1.578016883926444 9.018525333863623 -7.422902961848025 8.987350590271735 -7.388781861755396 9.177789302006772 -7.330101556697305 -1.734840241074575 -5.237012503188767 -1.726541311988324 -5.296927396016576 -1.888064613997089 -5.228781993322624 -0.9343831352841131 2.981186092474813 -0.9424780710862002 2.915941712039061 -1.075018360585027 2.990666902811253 2.879638810031646 -8.860838831828378 3.025151230380163 -8.893887984753487 2.873038903464342 -8.910624774351719 1.538114101585074 -1.111345728594263 1.364447079257619 -1.117042581622354 1.366026765647388 -1.045352587476172 0.4017533075938273 8.171196412326729 0.2288697599364914 8.156834237209869 0.2106361456114381 8.204542608298826 -3.181248914916064 2.258494138680487 -3.342174126764455 2.29807164957007 -3.346656646867972 2.360914327616166 -5.926349958980843 -5.06625658958029 -6.102200572384774 -5.026432565121168 -6.090668504000481 -4.967127170047029 0.03574799594463524 7.336786246313772 -0.1551556582812577 7.313608638095359 0.02987760622357699 7.38556038550886 4.843810405557674 -1.662258023769051 4.643599147677852 -1.630117199620958 4.843775193465255 -1.590565388951407 10.15214888561591 -6.339933274769392 10.3041786765267 -6.259841996109039 10.34108758160019 -6.290217166385594 0.03538291129991822 7.938883458342072 0.07537975947526532 7.892534215055209 -0.1167220988954792 7.92217278993467 -1.850600471716873 -5.426529386050101 -1.991235154178143 -5.417043593907985 -2.011729940428158 -5.357809422857985 -1.033841117868534 2.826126203028453 -1.187076858600957 2.834362496567488 -1.166697703646944 2.900502985901227 2.678207242450373 -9.024066749886115 2.649555917360691 -9.074552129300455 2.5053206830967 -9.03820302863493 1.544461811700419 -1.10108425941019 1.372375919480135 -1.035088788568971 1.546070719287427 -1.029407568048758 -3.292508124898563 2.199341571516821 -3.302010601473206 2.138329323654655 -3.467945166414737 2.240220777393406 -6.020979430218435 -5.066676307681636 -6.018376983691343 -5.127690501302943 -6.182331141876469 -5.02818840631396 0.02654210223308778 6.931692715332654 -0.0004457597454907147 6.973550817262883 0.190740740374836 6.995237711350105 4.84555470151556 -1.655510726685842 4.645365517852461 -1.69505807017009 4.645343664165999 -1.623369052427622 10.49805273155337 -6.111395293942536 10.47938283660226 -6.072165176631619 10.66572932337091 -6.016724088369951 3.102348802430499 7.933502846369441 2.952697980710364 7.90795570433971 2.926472332432486 7.960038482065441 -5.840321407958555 -5.330936839917112 -5.983139800278881 -5.256838325824224 -5.848569170131905 -5.269891554470393 -4.450702103163462 3.005103805866383 -4.460197113508072 2.937459260404336 -4.574251263814028 3.01885466453023 7.943893635454855 -7.141913835124806 8.076472608614363 -7.166312855754238 7.946647222001136 -7.197159556594382 5.163246012492278 -1.117714900073078 5.313443090294662 -1.179269555505842 5.160788520402234 -1.189376693575992 -5.389259396377673 1.958338642300305 -5.552358789030637 1.99775064261208 -5.548972140961457 2.059161362022441 -7.875828986749958 -4.784830431849331 -8.053825766287021 -4.745134763497052 -8.051083700878257 -4.68412435418221 2.289061699829304 7.081129402044353 2.476728056986634 7.152507556084055 2.494896636996879 7.107802367516557 6.923315659644519 -1.735031695388572 6.721568045365858 -1.702598765740075 6.923969103668046 -1.663344518567312 11.60620272298837 -4.749799098219619 11.42773978052086 -4.795881116940632 11.58007216565808 -4.713300346350442 5.308641939536588 -1.118435504130821 5.30624722769184 -1.190103914756658 5.156048844720216 -1.128551230192833 2.810780822408498 7.783362550281193 2.855705105938886 7.733674022955864 2.679216825708374 7.757563963387368 -6.115439472472932 -5.404563151923239 -6.134086655511664 -5.343737657615951 -5.991950256816617 -5.418643294124607 -4.559069854247967 2.849935141477938 -4.693701891053848 2.862775396947482 -4.67355214217529 2.930957736777195 7.811948520213087 -7.337528698838748 7.795477730888241 -7.395699225801588 7.663840744841885 -7.368325238486968 -5.50145245314144 1.881265092103241 -5.518773719895751 1.821686496073894 -5.679089124715823 1.921915560587383 -7.943159315760849 -4.756189822174432 -7.931662356416103 -4.818796447116341 -8.106655857986439 -4.717809657474035 2.494337055136485 6.67547359716108 2.454966310932485 6.713500120556995 2.661158912192207 6.738404930453302 6.920255931322688 -1.746841740351618 6.717866785987352 -1.786097314133124 6.71850789687507 -1.714410428183297 11.64429563392608 -4.519348819292599 11.63628996857907 -4.47357687761575 11.81256480465637 -4.422548434737205 9.407406470594957 -1.262136784813376 9.542673219289938 -1.317912163644785 9.404289811265478 -1.333788014731307 6.253732902396818 7.134431086163533 6.124291599389031 7.092843252678284 6.097602218918007 7.150089030176484 -10.26290308418997 -3.972719949134878 -10.38279108496317 -3.890470452135454 -10.26138530886212 -3.910161990690205 -8.656844822433374 2.310417244970755 -8.546241828981769 2.290879783888999 -8.549772754970995 2.220934272486494 11.87531791095878 -2.244158917229915 12.01420443028966 -2.251642967548273 11.90591421676997 -2.298678393724654 -7.623607648579411 1.609053413946567 -7.775015845034464 1.646441049340284 -7.764555077366621 1.707001432455249 -9.867434151347112 -4.348764056329122 -10.03296462756189 -4.311126714488231 -10.03732134579322 -4.247963100685223 4.629350314123354 6.711883495506523 4.80198327387759 6.781159402920771 4.833139363168596 6.738679451910256 9.020287560180325 -1.855205638108501 8.83343608063967 -1.820032905691768 9.021650452684609 -1.783524995757172 12.51946170319711 -2.507211751598441 12.36153290831863 -2.544874825907662 12.49936523022057 -2.463797454452632 11.84951486019543 -2.304579654823831 11.97278306643314 -2.252622739703133 11.98829948574294 -2.313154032494368 9.546788166750069 -1.244734472388702 9.543697495405235 -1.3163825107356 9.408430854647296 -1.260606969909894 6.077497518052693 7.055427066833151 6.120346229457305 7.001993631060697 5.963995239100615 7.01622629795399 -10.51213878607093 -3.92479448163076 -10.52042041971787 -3.861844166002971 -10.40179501108615 -3.945218872980798 -8.772780334495117 2.136129060071057 -8.759206881541326 2.206115055414994 -8.651459538570904 2.117135106131407 -7.728839161207974 1.528558995582689 -7.752236912433713 1.469616016356739 -7.893884662722856 1.566936828031893 -9.908294568453352 -4.292637413521375 -9.890347902417892 -4.357184603066536 -10.06008873121019 -4.256231171523289 4.843593585418221 6.308114476659102 4.793128669348505 6.344454751318796 4.997303606373547 6.369366587658844 9.02130879258814 -1.851845878495564 8.833155852809799 -1.888369842997336 8.834457480864748 -1.816672594376324 12.43912935850406 -2.240405695724614 12.43522336433228 -2.187747316429558 12.59157169365658 -2.146203486778124 11.49402236278089 2.491336944193565 11.44196618525643 2.537554441272767 11.59794844380999 2.546054530721898 11.99060753637678 -1.323865960497666 12.12498734381802 -1.373491897610147 11.98738336172206 -1.395510357908704 9.193701576120317 5.560736267461 9.075423531901116 5.501053444315247 9.053593253000045 5.561851641265711 -12.36259419343729 -1.288563893963514 -12.24216711289985 -1.314857938220127 -12.25632669275038 -1.377156506041721 -11.65682314128354 0.5461271657592528 -11.54517527586237 0.5207279007337042 -11.53901091853103 0.4500983110608039 -9.931828991437335 0.9990095623593351 -10.06331861283669 1.03290457993383 -10.04913073169398 1.093637546638904 -11.75240798306647 -3.449854181697886 -11.76005233971442 -3.384055276445229 -11.60914839163295 -3.483546629822345 7.045854807670821 6.058967473158784 7.191973529833671 6.125430180177156 7.233043903328235 6.08238625132066 11.05441371495044 -1.992047285819952 10.89271591663927 -1.952196063597097 11.05653685935817 -1.920362180415097 12.46475238117098 0.4688473995782341 12.32626294349365 0.4441457396488355 12.44253518149371 0.5186156868772237 -11.7064333499875 0.3889537461494134 -11.70412534448503 0.459091255688088 -11.58560085130863 0.3636063492832632 11.40112471645486 2.739979586395068 11.51739580529257 2.801918313389274 11.55700694559627 2.749548115938441 12.1279939110552 -1.302377135290846 12.12467143926534 -1.37402621865195 11.99029167902811 -1.324400202437869 9.185772754082921 5.425035435736002 9.045663230792716 5.426053245024225 9.149955825922403 5.480230210119204 -12.37661344837803 -1.242203117709605 -12.37042846956559 -1.179175972023946 -12.26535867193886 -1.268648271677662 -10.00639875127156 0.9370219716282171 -10.03166110505072 0.8776080608921254 -10.14972968865928 0.9716440052608725 -11.68272755083222 -3.455317847211425 -11.83270512839736 -3.354963382779449 -11.70090864286917 -3.388112649421537 7.267043876681645 5.63265133736134 7.209500233534502 5.669337467038668 7.397084304861492 5.690711140751803 11.05331525113629 -1.994793905262312 10.88944634029167 -2.026608988448495 10.89161720027761 -1.954943317187773 12.28612602379153 0.7108669385735174 12.27746929648367 0.7691719838338954 12.41519918837009 0.7963750411686446 -12.34856340660054 -1.479771390745623 -12.48148139345204 -1.380608568178576 -12.36334344712432 -1.410580492210075 9.276707521053739 5.028618018300326 9.217787171578857 5.068181204600121 9.390156909603837 5.085472769549537 12.05668347276712 -1.248890233995446 12.20104707917173 -1.292993058252718 12.05385279070249 -1.320552384434651 11.20983808074964 3.331052729982874 11.19446727308732 3.391832166527687 11.32742640367338 3.40648227147286 -11.67019791010287 0.740410999773072 -11.54177374301834 0.7092751996803449 -11.56482166293863 0.648716467158813 -11.86011193620283 -0.1977464485696365 -11.8475151704687 -0.1358856883258326 -11.74493314011552 -0.2277591628032306 -12.45162304445733 -1.888628516929203 -12.45537080457958 -1.819981544393522 -12.32556100599877 -1.918098184957783 9.536978925267567 4.66422627225294 9.660485091603505 4.728210306524845 9.705320206050196 4.681830997219107 12.31854013554872 -2.059681960987298 12.31564040994777 -2.131331673667286 12.17464832343649 -2.086220046635131 11.03303546332057 3.318596146552173 10.90027268380914 3.308325911882873 11.00329787871924 3.372434746885128 -11.61454327488999 0.7934822348016178 -11.60120460944142 0.8550394872478138 -11.49674254072749 0.7626998964175838 -12.46748036750243 -1.509335310362308 -12.47229587360645 -1.441162276366993 -12.33862010593852 -1.539692711522541 9.099873893864729 5.357595381784607 9.227131317571855 5.421982117480596 9.271950371913921 5.376608774755344 12.20731609617598 -1.215157272801693 12.20409599903379 -1.286968686155147 12.05973374626652 -1.242863119947411 11.3943753839447 3.199659974258058 11.26120491807419 3.186250269918912 11.36553075979545 3.252887088884078 -11.91062286996956 -0.2643539151282401 -11.78502774377633 -0.2946316209082915 -11.80700887801265 -0.3555079257078837 -12.3241425430299 -1.844631417711465 -12.45317510216577 -1.745882362920325 -12.33764463007565 -1.775046606873426 9.701573112228534 4.311767033288764 9.643132417721008 4.352305486159655 9.811737959371968 4.368268671331372 12.17534193218787 -2.084908062443002 12.31633363804273 -2.130020425710703 12.17235078940941 -2.156560351364473 10.97198046768064 3.546291437560214 10.85624208327961 3.473988594873646 10.83934999866612 3.53501278438576 -9.645483191836284 1.800788195159089 -9.670581109214606 1.741546430859303 -9.79215969083244 1.836093629779995 -11.47187316251818 -2.86496606589652 -11.45354420573529 -2.931704449242993 -11.6068129648284 -2.831214107572199 6.867133204543505 6.226843680856156 6.810644959444466 6.263273864668945 7.001209531720384 6.285467061214239 10.74136253194078 -1.127131668761829 10.57376281562699 -1.159826986220972 10.57608788956758 -1.08799419114843 12.42751632653647 0.5240458871917365 12.41929637764344 0.5815454362173664 12.5591173345161 0.611609730538909 -12.22556260541854 -2.510056909099419 -12.22245351548211 -2.446819659825185 -12.11888299322155 -2.535194557593524 -11.1805352717619 0.1636557725206742 -11.17520488691826 0.2339215675086613 -11.06377031148741 0.1397183147273343 11.74031249664773 1.647453380557038 11.85245807396038 1.707939759353359 11.88859530474086 1.653637216901723 11.76539563976768 -2.116613731691715 11.76199157330927 -2.188254616000427 11.6319646956527 -2.13725735156381 8.455844250518283 5.547693248480998 8.314437949829083 5.55193550155163 8.416948548971313 5.602138631030913 12.59726805529594 0.2701429102855949 12.45644840070009 0.2431167178063067 12.57588514082611 0.3188292712014195 -9.568502549918181 1.856830802983324 -9.703134651220706 1.891334807373945 -9.689358052799605 1.951949968211019 -11.39044827376524 -2.938774342873005 -11.53744511220677 -2.904288118536661 -11.54439757547641 -2.838929844390844 6.655606854539049 6.593312683415472 6.806146126184824 6.659854544762145 6.845799299435067 6.617400483461004 10.73196397616225 -1.151491097104088 10.56668715559906 -1.112359312279817 10.73401485999725 -1.079827300854991 -12.08088402820533 -2.6477630053221 -12.18576927259354 -2.560352930530136 -12.0692266799461 -2.58521614158271 -11.10319217059368 0.3450579422479534 -10.99612125272448 0.3209718443542478 -10.99258888133999 0.25025036190555 11.80968273231142 1.405814557636461 11.76087880795927 1.454000771050924 11.90920593615931 1.459487540272102 11.63167374589668 -2.137717227448651 11.76170061290552 -2.18871450868585 11.62828626381446 -2.209367044286528 8.493264998848581 5.71492167655479 8.376826026194479 5.659661944827525 8.351880536625716 5.719592706312391 12.42160597004817 -2.191689468957073 12.41626913264293 -2.140350501684493 12.57315094325855 -2.098282296104488 -7.492963786032458 2.334175902216748 -7.515004825038322 2.275091116646372 -7.656669510425816 2.372592074488226 -9.761450156183038 -3.623960061355933 -9.745338831219963 -3.688310512075075 -9.912017340509349 -3.587498971372419 4.557536204359291 6.839050374406378 4.509188347564309 6.875503686973955 4.709950779347495 6.899769343178097 8.741101864319731 -1.019439105203981 8.554761744415805 -1.055516542513835 8.556037629630342 -0.9838416150760361 -9.744751999399297 -5.048119737146935 -9.755298058729467 -4.985450926885065 -9.633295069987362 -5.067261186780085 -7.95830288070798 1.672339155563685 -7.943088679739913 1.742095909332836 -7.836688785660706 1.65457461290219 11.41626537571705 -3.636196009305314 11.54120330482786 -3.587542135558419 11.55039307892587 -3.648727317551346 8.759899201414649 -2.032709288667752 8.756786200472496 -2.104366810480081 8.621688515798034 -2.047468045499825 5.360334818855622 6.90740915643771 5.404957143048305 6.855020456556098 5.245568253235189 6.871284674799691 8.771807560103289 -0.9210703944025453 8.586749376067742 -0.8854534434550553 8.773553566395822 -0.8488183355714642 12.48451468444921 -2.432517852822418 12.32597291397993 -2.470540383775541 12.46317769539996 -2.390473393376261 -7.402046846608363 2.391646228617125 -7.552263854057411 2.428990472157417 -7.543112769015149 2.489682956953894 -9.681251666514095 -3.660784878569707 -9.845279350554231 -3.623200107078743 -9.848323616903944 -3.56037718183123 4.354281668687017 7.196984233116653 4.525920107431199 7.26450082097733 4.554695827691159 7.222970505021299 -9.490166520642905 -5.076109068943691 -9.613256464947316 -4.995312687271215 -9.491875139303247 -5.013705756931108 -7.837459935101392 1.846455804932724 -7.725788812337279 1.82810317725126 -7.731688088601177 1.75846466450187 11.47441714812592 -3.55673480308616 11.60875792182651 -3.567763588459859 11.4989817614926 -3.612604496064194 8.623679604165812 -2.044552916215587 8.758777033071473 -2.101452057009262 8.620634843427039 -2.116198953238602 5.567935311688869 7.038297109457089 5.437169717013191 7.000125266167434 5.408844334005877 7.056275990035505 6.765559098201202 -0.7936087604780515 6.566876320977782 -0.833140497396606 6.567647415609427 -0.7608779301899279 11.58528452648304 -4.35031587650545 11.57505880479942 -4.305765159566232 11.75021394494332 -4.255099604628661 -5.295141635197718 2.679771178556884 -5.310994730184532 2.619939140035927 -5.469162233682212 2.72013946673693 -7.814300715167843 -4.043097857336617 -7.80454769582162 -4.105496493312833 -7.974297870740199 -4.004970755252076 2.236489778626236 7.190694810087972 2.199833902498322 7.228187263065463 2.399785381492636 7.252871982601729 -5.466753151928634 -6.160242652390536 -5.486256297514611 -6.099739855213911 -5.340910892394801 -6.17356594191517 -4.009488964703396 2.149967279611272 -4.146706653837466 2.162074996238527 -4.126214334909601 2.229980700145121 7.024165130624047 -8.027860484645059 7.004595496875917 -8.08493803403019 6.872155409524989 -8.055797956143129 4.72843336227485 -1.982197320672569 4.575073661752587 -1.919951510193588 4.730715318819804 -1.910533737619413 2.387307200098002 7.460099458288207 2.431832250990889 7.41087982027978 2.252727580309843 7.435775626898996 2.014316783777129 7.59309989024561 2.197756937827875 7.66498349234721 2.213873897873271 7.61968627136445 6.732694121844202 -0.9164665257472985 6.534777069807451 -0.8837557940011735 6.733264098078946 -0.8447802793763075 11.52435613383678 -4.551081451412544 11.34693915299813 -4.596617080832574 11.49646599204208 -4.515784694007481 -5.184653418642398 2.746475510558088 -5.344257242103688 2.78560951664586 -5.342239998541112 2.84724068057069 -7.714439504122781 -4.048260815140622 -7.888817807670372 -4.008889820918976 -7.884601281074504 -3.94816664725183 -5.202451819625299 -6.089579192889955 -5.348382206312138 -6.016470742126772 -5.211180209075206 -6.028742240987849 -3.894933975222198 2.314225785687906 -3.904531105545545 2.246891686083626 -4.020818669428834 2.327298642214918 7.179702031988827 -7.864912338704983 7.31317580027523 -7.890970779092383 7.179928466027126 -7.919451264279131 4.725926433044577 -1.986020410667492 4.570283283646218 -1.995440418799354 4.572566256937288 -1.923775325315378 2.695076435902459 7.661061965266521 2.541931857413301 7.637274094410984 2.516649344211394 7.688805792929841 -0.3698445108058149 7.453488717860072 -0.3952989717585217 7.496051840537323 -0.2063389654605621 7.517240049820471 4.515918699687586 -0.8393387980662707 4.316249118334187 -0.8788466468877427 4.31612899876572 -0.8071590605465268 10.30485371860901 -6.001201054318452 10.28459294262881 -5.962818761835691 10.47223928593306 -5.906872450912127 -2.938501361369633 3.006617235003971 -2.947002569396036 2.945329435304808 -3.113533836915765 3.047486358113979 -5.718205139175695 -4.359722446777262 -5.716856770521808 -4.420526897234973 -5.879140019153367 -4.321262435429309 -1.317171084655176 -6.108452060814098 -1.460162259544871 -6.099492312357857 -1.480366500252042 -6.040368189323569 -0.5645865119736526 2.071141367184692 -0.7203694705909897 2.078847428744961 -0.7003867035881961 2.144754698464442 2.029345654287545 -9.405432250419249 2.000439532636525 -9.455004844401778 1.853474228735507 -9.417872323385714 1.037229569638983 -1.918048788614067 0.862239285371042 -1.851528348295805 1.038688067181828 -1.846370377598734 -0.3415059436527473 7.569954266639446 -0.3027434724742456 7.52389720553111 -0.496260766229028 7.554267652011123 -5.635589728228762 -4.363558339894523 -5.810918821675529 -4.323746273856592 -5.79818970980217 -4.264615156559517 -0.3523577227348151 7.809265353143129 -0.5410580242089885 7.786690220767343 -0.3566093495609768 7.858655653168618 4.515485805132868 -0.8410027561567854 4.315696051118508 -0.8088232226260013 4.515380272364803 -0.7693143339499299 9.941295152995236 -6.179408871339137 10.09312811367236 -6.099640101588622 10.13157038100183 -6.12925749870301 -2.82618486091816 3.060393695973454 -2.986682021334212 3.099969472485129 -2.992190700392496 3.163078476023416 -1.207496587028629 -5.925593980249909 -1.199669725326454 -5.985478026594858 -1.363226630820564 -5.917933100082081 -0.4729956394597623 2.223734660237116 -0.4804706718709007 2.158776479735584 -0.6159846801350177 2.232715461974108 2.226674139061502 -9.280767392920096 2.374920921507335 -9.314600961175254 2.220040689712028 -9.329863156063558 1.041460852905896 -1.911123834948141 0.8650018540111748 -1.916285449041143 0.8664715569511983 -1.844601785732089 0.01555739350644139 7.836576546842011 -0.1602331515344417 7.823534767753698 -0.1769757855709346 7.870598218226059 -3.371045457446532 -4.738527668990224 -3.378194683407445 -4.798236383189997 -3.523966528169564 -4.700972500495921 -3.31950339507936 7.386220307546418 -3.335764832454265 7.434042315532138 -3.165537438445921 7.449896024721483 1.990952794153078 -0.794301863207289 1.800873117040144 -0.8324918601336201 1.800058934935638 -0.7608062510942829 8.791423880104997 -7.27043802749428 8.758476871357217 -7.236972157502552 8.948533693457904 -7.178066836602934 -0.2951623346060905 3.322587602154639 -0.2968720255190893 3.259344289539156 -0.4632284125750602 3.36263616348693 1.95619008696065 -5.695072869730268 1.799800415117131 -5.688739350864791 1.784312015099943 -5.62978551853464 2.401249254238791 1.815872394107089 2.230977048957919 1.820845639886842 2.246422160905807 1.884927755754067 -1.704545758230504 -9.242583819217362 -1.728777046018541 -9.288127940177166 -1.897435285471872 -9.24748621079967 -2.037287167596162 -1.892904068553259 -2.229581024032743 -1.823618281792473 -2.036592650860404 -1.821213163940699 -2.878992602768241 7.406988912774769 -2.850347945369914 7.363622240913537 -3.048949264113406 7.396414355001799 -0.07592872800912309 3.447476459058427 -0.2283303797216346 3.486316303097001 -0.2412998257332361 3.551742843935231 -3.264736926777666 -4.720466754106278 -3.431556722778725 -4.681699525668206 -3.41092521489787 -4.623590437275364 -3.281244212679644 7.695838698016365 -3.451310724976913 7.67895024004497 -3.277624373470368 7.750705745551207 1.993124369130136 -0.7866312688620434 1.802230766442821 -0.7531347520216162 1.992266794691588 -0.7149389143416736 8.320804586917859 -7.385845346409994 8.465266382435967 -7.307301725538728 8.513754288195907 -7.333080183788806 2.04339030631442 -5.518528912334286 2.045130314503581 -5.578534592163575 1.8730165363144 -5.51363265332439 2.458320082436398 1.945240049825693 2.456592126953376 1.882381007478111 2.301937070191282 1.951674525511828 -1.57456143403115 -9.143997773465767 -1.404745360288789 -9.181537442923032 -1.574790531085726 -9.190054921100517 -2.044893155000779 -1.906099714813112 -2.237859075511692 -1.908506354491039 -2.237189028987264 -1.836817393347053 -2.487223103494111 7.74038816037992 -2.680066389377364 7.734029933285218 -2.684561388224735 7.777601030272265 3.124503043639733 3.626647404675496 3.127443276339544 3.560470550474426 2.976079560891939 3.664159249923833 -0.5396567529731716 -5.184956032361135 -0.553707648967835 -5.244267969709651 -0.6776173971474248 -5.149519879826631 -6.653734747338472 6.689172984141466 -6.666825254069089 6.743140156944046 -6.517181117049558 6.750903853205761 -1.086589498616595 -0.78422802616515 -1.25850225696438 -0.8193585587526251 -1.26014777792732 -0.7476747171529783 7.017786738957272 -8.328748700634764 6.973980755895396 -8.298221015688425 7.153590525520563 -8.238650052595556 4.663665539788083 -5.288366739821417 4.501255195215487 -5.282973516835888 4.493544616641717 -5.223259506164044 4.989095297036961 1.523544818016136 4.812262991224277 1.527546637891884 4.820812251942096 1.590059642268411 -4.526624981459384 -8.580682148720971 -4.539323854414262 -8.625643216579517 -4.72691499555313 -8.583279951014488 -4.69161048776627 -1.922169901065071 -4.891936047374309 -1.851894312156033 -4.691629537544647 -1.850479003712745 -5.357828321895757 6.993676402184764 -5.341512802323475 6.951888721855984 -5.534352977043232 6.98440571602306 6.408035537186003 -8.402038505772289 6.530582252696229 -8.326233675610846 6.590979218592096 -8.349116967331526 3.151633318516139 3.57640480636253 3.014121496524458 3.612904582949041 3.000388115497104 3.680200470823879 -0.4139711090741488 -5.15596766273602 -0.5644978615418062 -5.119522335759868 -0.5384089976975576 -5.061648887326983 -6.572938285279893 6.943744311546604 -6.722538923445383 6.935478093730819 -6.56818483266882 7.004611278737533 -1.087894671073633 -0.7880754491256219 -1.261453102026516 -0.7515225856906145 -1.089500803017993 -0.7164060861554753 4.750081876964079 -5.115959186366008 4.743565224223874 -5.176820829293575 4.573233912439122 -5.112054898983798 5.038845685473962 1.656762792982082 5.044549730654726 1.595503841975917 4.87644282530279 1.66229373187832 -4.271526767372488 -8.541590942140692 -4.448254046038575 -8.547835486346314 -4.460139430447081 -8.502134332072298 -4.684233127320541 -1.908962697287057 -4.884542293299398 -1.910377144235648 -4.884556521351725 -1.838683288294857 -5.151397631783981 7.409441118889362 -4.960006882914137 7.371997852621876 -5.160252591464357 7.367865723672731 4.879907596298446 -9.227739958717748 4.824005816342195 -9.198633819923883 4.986802317450687 -9.138900628341862 6.818366883296587 3.286812406137304 6.818806668116153 3.21865571565823 6.687161155696851 3.320460777096002 3.105136375445501 -5.564541851484951 3.088415858145972 -5.624521227335868 2.984729266269326 -5.53209267039398 -9.930011817071847 4.936524218704519 -9.947990209783102 4.995843238968276 -9.812250271109953 4.992960715800802 -5.063117719388234 -0.879775590197084 -5.06555625158882 -0.8081207642899929 -4.912639681043252 -0.8491490300287995 7.043833246952805 -4.918718453727871 6.884389349493025 -4.912587850899379 6.885347967170201 -4.85151534305512 7.38893079278795 1.213416027666563 7.215298962011859 1.218274031275709 7.216443370953684 1.279690506259362 -6.872543926388105 -7.720063000584813 -6.871528454692539 -7.766703935272252 -7.069206212194869 -7.724057565211616 -7.085460401778228 -1.953814347816976 -7.282842567164233 -1.884405848869345 -7.086179438519924 -1.882122722407894 -7.928797813112159 6.099000294691537 -7.923953075196081 6.057018011829091 -8.101736184299917 6.086030956983156 -5.067350791792155 -0.8122836020138835 -4.916807556105715 -0.7816469406124569 -4.914434026842691 -0.8533114193579594 4.110930028857236 -9.26373436105564 4.210500129604794 -9.188566322535746 4.277639095865341 -9.211101364387835 6.87747635928748 3.396608088620244 7.008006566036567 3.293918145568711 6.887884282947002 3.32701415432634 3.214404750168435 -5.548211672136048 3.08310451610041 -5.51507025616875 3.110169943087202 -5.456165494929545 -9.795692840599257 5.160583222514068 -9.93142628115389 5.163649265953787 -9.797825469959694 5.226139370354115 7.127199503208617 -4.764813459291362 7.112271247637003 -4.827021935788306 6.953579509582307 -4.760121010634209 7.436880455331188 1.348831713234827 7.449711873178442 1.2885437837349 7.277450382965372 1.355180921345015 -6.648983202732421 -7.718741714087121 -6.822484486637244 -7.725928122136549 -6.847591722566838 -7.678861228464416 -7.087543715143064 -1.957556829563276 -7.28425004385158 -1.959844843465908 -7.284926555487864 -1.888149518457082 -7.732442454363511 6.556022419027978 -7.556164965878786 6.521793116343225 -7.752590292824291 6.513852055204032 -9.262362620543998 -0.9982610265921572 -9.265431373128871 -0.9266128859795643 -9.12788631365718 -0.9731158902532068 1.950180839681862 -9.916711313632785 1.889080999859249 -9.885293286695218 2.028367727486693 -9.827089988307804 10.52286538669712 2.065146281759869 10.51551482730427 1.995311366964083 10.40577293714618 2.093615155603636 7.52111787249818 -5.273899497310464 7.508853107780256 -5.335786557518499 7.414292697664784 -5.245212397101912 -12.08431270744813 2.196093485976012 -12.19128707591015 2.149047890931748 -12.22033312289464 2.210515938221928 9.199457341029337 -4.520190071452821 9.051150894347089 -4.511699164043895 9.059958026507999 -4.448772184552951 9.669691796684516 0.753360214058832 9.508240145469834 0.7609521533103458 9.503498561134443 0.8219653569383332 -8.921587146112858 -6.669966323949844 -8.907569886315399 -6.719804087994952 -9.104286002616078 -6.678503718230066 -9.324038835693287 -2.030183037586843 -9.508564438758199 -1.963448650971783 -9.325439036827589 -1.958494199056971 -10.60599221786575 4.089910737059385 -10.60662944468108 4.044862993918632 -10.7662950282064 4.064835981792844 -12.04143354217628 2.377086426874083 -12.1772867240961 2.392453396183923 -12.0553928578485 2.443722520172197 -9.267837549188249 -0.9310471242582803 -9.133413303858129 -0.9058945534221484 -9.130292302324495 -0.9775497855284092 0.9479796548154323 -9.868300889684225 1.023695726492549 -9.792488994938639 1.092114544290961 -9.817929410036772 10.53623588670695 2.091421124707996 10.64483644214927 1.992336050057641 10.53783793416231 2.020620562636231 7.578610021389456 -5.124587369069729 7.674140448169284 -5.214529400491242 7.557220039841097 -5.185629502084914 9.248660695682039 -4.424783009195661 9.225085482810178 -4.488804878413693 9.085481007625125 -4.41751426874457 9.703647827910444 0.8624343743937109 9.721302149155008 0.8023152308608818 9.555379135053091 0.8713239533769561 -8.729616780509579 -6.730094086031299 -8.890756388093246 -6.741045432981515 -8.927184794724571 -6.691391928617982 -9.325516693352057 -2.032784362284588 -9.508429923758628 -2.037722327752077 -9.510042819401726 -1.966050870582934 -10.55771085711433 4.487660258475979 -10.39894084242473 4.463672700849949 -10.58000601058593 4.441562148147697 -12.65257406103908 -0.8144460656515057 -12.76303655065152 -0.8498721179081807 -12.8027059717406 -0.7899796649965601 -12.2088925959948 -1.075004728866367 -12.21215032807042 -1.003353263060955 -12.07663315924217 -1.055804126495541 -2.762777199480826 -9.799910230420966 -2.64082009568663 -9.747235043604697 -2.70636780441321 -9.839595663160447 12.56514827402928 0.02621527134906461 12.54768310754997 -0.04325083913083788 12.44927162896445 0.04835732556534333 11.44645299374619 -3.379799133354346 11.44624021100312 -3.44311780906447 11.34082058533418 -3.356134394409414 11.15158224797604 -3.91397944806601 11.02069010905071 -3.901613426206277 11.03580612241227 -3.836028782075375 11.68284991976453 -0.203584460076076 11.53944526903806 -0.1915152855845707 11.53297615464903 -0.1300230787323312 -10.7213018571439 -5.281466400770705 -10.69784016135745 -5.335743939901509 -10.88300945774196 -5.297638907282837 -11.31979072714832 -2.137674283481226 -11.48458296453805 -2.075134861174838 -11.32216416519158 -2.066015916383278 -12.38651771823724 -0.6942693835357292 -12.3741535119025 -0.7426226895315506 -12.51497053451344 -0.7431947815588879 11.43397392136102 -3.230024288088108 11.54045022315169 -3.316207533749339 11.42491432129546 -3.292852691533721 -12.68046711594635 -0.5828946779229147 -12.65653270953471 -0.6464768443492177 -12.80622590301123 -0.6203999083251425 -12.2119079911996 -1.002969579672727 -12.07967570715272 -0.9837700450213652 -12.07639080066768 -1.055420408405151 -3.869929745865673 -9.519464737527869 -3.803415572468722 -9.441606603762649 -3.742590848385259 -9.475369423853087 12.58230329810353 -0.0981976794319511 12.47621695814002 -0.07582480933020433 12.484816741565 -0.005979543912745515 11.24627603075263 -3.76232573747763 11.22058929470643 -3.828343276630022 11.10430498040334 -3.750862145429234 11.73940073486214 -0.1264601345604492 11.75768076529818 -0.1879173364969197 11.60862897452939 -0.1133295857564735 -10.57042428796328 -5.422818079844593 -10.71295262364756 -5.440159567732102 -10.75635901643806 -5.387094030580002 -11.3179454351192 -2.134532054307301 -11.48054090956381 -2.143662211054009 -11.48273687812214 -2.071991336639826 -12.51434750350248 -0.650580813859589 -12.37353185978491 -0.6498274134242043 -12.51983891596024 -0.7060533553217917 12.63958050495457 -0.6693547964434079 12.65198352598792 -0.731828798096542 12.5221328162481 -0.651691222853194 -11.83462611313661 -3.25307820474858 -11.9605286250438 -3.277596497196791 -12.0052031508993 -3.221363921453147 -12.58250281806942 -1.015046530271011 -12.58528579872573 -0.9433830155386896 -12.43698451464761 -1.001648766609163 -9.655464840408483 -6.514825842457736 -9.528604502594481 -6.482686502146462 -9.626160197578194 -6.568658861140238 12.40024141668809 -1.753199306494514 12.37619883512541 -1.820774510109404 12.27206791113328 -1.737364164996175 12.44657289345614 -2.769530930851455 12.33204167285077 -2.751948366573266 12.34683587159214 -2.683895528262178 12.50359033416776 -2.060438594993016 12.6298464498674 -2.141716106848167 12.50495292832494 -2.123546688312313 -12.11239440981136 -3.325770736080165 -12.08559598487972 -3.385247611446262 -12.25173706902597 -3.35258701561263 -12.65359948292654 -2.186435630159274 -12.51127527650821 -2.172022624119048 -12.5083384750712 -2.243677080142132 -9.094376039244555 -7.212058789567762 -9.009492746513812 -7.137624585116146 -8.966801636117909 -7.181986746492179 12.34575627928272 -1.884543078536829 12.22803114568178 -1.86806206583168 12.2421675796568 -1.800715955727265 12.51463740134587 -0.5872590298221754 12.64529440888101 -0.6665814394666298 12.51737822269537 -0.6497039335917156 -11.93742043501262 -3.086640748076639 -11.91061202692907 -3.14513654200913 -12.08053448882132 -3.111317530780448 -12.5854364412165 -0.9436425349592006 -12.43993409235087 -0.9302505669090631 -12.43713501742452 -1.001908065963351 -10.10626095412997 -5.904965002461295 -10.06927576034501 -5.951373557172462 -10.19862236532301 -5.97664674374756 12.52689379923964 -2.564429694384292 12.50276351476397 -2.632160172276806 12.40159987216635 -2.547566698791825 12.61860799010647 -2.07157490265327 12.63071247558316 -2.134070790287479 12.50436027662797 -2.05288573196875 -12.02217889485638 -3.552433880925095 -12.1446982041293 -3.578770994341044 -12.18895028811796 -3.521825751571051 -12.6506109294987 -2.258069628247561 -12.65359355466221 -2.186424059880305 -12.50833255829316 -2.243665527901626 -8.371711296460484 -7.711058531133934 -8.247493324895878 -7.673278536577046 -8.33526926066186 -7.762582516942481 10.92081324715679 -2.781893670447513 10.89598809710243 -2.847298419544966 10.77389037552655 -2.771354714339896 11.41909956563652 1.176088603862243 11.43741133559371 1.115289727710095 11.28433698302148 1.188297566200957 -10.28317486014378 -4.970754249946205 -10.42929398469201 -4.986742463350395 -10.47187985914567 -4.934357291864098 -11.02080708112402 -0.8895196254789614 -11.18732886843113 -0.897792518239128 -11.18936508156011 -0.8261190930710749 -12.47060931995162 0.8211727458480483 -12.32692890558392 0.8157345692125834 -12.48189717357242 0.7671225504100739 12.35737763565091 -0.7610649615736504 12.25110646693393 -0.73758325334747 12.2590339506434 -0.6675199869267502 10.85958640769515 -4.696877842611122 10.96376175377825 -4.784017579808633 10.84911064754874 -4.759555551762515 -12.64738279739117 -0.6705078456432573 -12.62484614593904 -0.7348530040563482 -12.77130993133742 -0.7105102352840176 -11.81966874191324 -2.221216928577346 -11.68814189401062 -2.200933905113122 -11.68477240812853 -2.272568859774362 -2.813837005937617 -10.02175846134583 -2.747730045187505 -9.944225755608683 -2.684584726814461 -9.975990867798494 -12.34712717847993 0.711068567427408 -12.33956233899112 0.6621577329345746 -12.4833067550381 0.6664226720683839 10.8341790913295 -2.928026544613575 10.69932087865276 -2.916489536031525 10.71246538689819 -2.851702319205666 11.39026777054721 1.102973270925174 11.24342278414055 1.114109912454478 11.23677318122472 1.175433037698627 -10.44480332973878 -4.891435348338514 -10.4227137964753 -4.944847588370251 -10.61062682259548 -4.905997593885506 -11.02046413612363 -0.8889369615822576 -11.18902199551489 -0.8255361971176556 -11.02251895736931 -0.8172662058665945 12.32972769345473 -0.6571501199675645 12.31397725318278 -0.7268343890666958 12.21481564695536 -0.6338252937164728 10.85686994610952 -4.839283370499927 10.85418283551526 -4.902475788041593 10.75105040469853 -4.81457168848571 -12.63310231493371 -0.9496811178036727 -12.74189688413779 -0.987207398137782 -12.77995673749219 -0.9268411838871186 -11.81758591857441 -2.295070005443553 -11.82103415492809 -2.223430057712653 -11.6861378518861 -2.274782038886273 -1.700680309258098 -10.1847686180246 -1.576911440637717 -10.13042462988106 -1.642357880487287 -10.22243727512909 -10.07489593405453 5.317865131622324 -9.914212043539097 5.290983115074772 -10.09887128280329 5.272346325687641 8.926739659517338 -3.333700991142646 8.906055126422018 -3.397258317156485 8.762487648304621 -3.32703020223145 9.322637233375367 2.072371933533065 9.339731769609148 2.01231322404564 9.171855318009799 2.080670833352711 -8.389721987007942 -6.192875430508777 -8.55369073492459 -6.202934797632022 -8.588287626146517 -6.153801221723152 -8.953615184345583 -0.7905433555926199 -9.139687651119626 -0.794883308664731 -9.140975068249894 -0.7232014806574122 9.916681593819769 1.355376862847567 10.02890419320369 1.255402500478206 9.920180365030419 1.2846531573443 6.806571625771529 -6.414021707408567 6.687836312696602 -6.384293090103021 6.710808514383312 -6.323702891380686 -11.70770455946561 2.327646037062097 -11.84237110709834 2.340842626216489 -11.71945801068183 2.394391966093911 -8.497812747680163 -2.125569904993155 -8.361422144933348 -2.099387563293242 -8.358261214048065 -2.171035711933601 1.647171871169038 -10.17810927867025 1.726491109724755 -10.10245365700075 1.79514528646327 -10.1270924823156 -8.95332294793722 -0.7900298055367276 -9.140682730464413 -0.7226877560546117 -8.954591924157162 -0.7183431001338305 -10.182430584409 4.923837330807495 -10.18266462648535 4.879634520720614 -10.34450278856321 4.901821467802213 8.839585991712525 -3.485217008954383 8.688773749948515 -3.477266435189169 8.696271217218778 -3.414670201888944 9.288538652900973 1.965996370032669 9.124309544921923 1.972946970572734 9.120416123885098 2.033978688334276 -8.587658393071976 -6.193333549739277 -8.575865719793248 -6.242524934708914 -8.773568499488418 -6.200830912026516 9.890862181544346 1.305687024710952 9.88534748018013 1.236021162589624 9.77197480422123 1.33518926633466 6.665538242502155 -6.452944035834532 6.651807514522332 -6.514386963890035 6.556891616352036 -6.423516395302233 -11.75101458588584 2.114149917366381 -11.8589344778326 2.06515187335709 -11.8858029850785 2.126552785291868 -8.497014745379723 -2.201529350571034 -8.500061384445765 -2.129882272843588 -8.360509649708535 -2.175347697790068 2.591126072632715 -10.14678966530765 2.530477444128616 -10.11615706904937 2.673833530764338 -10.05754682408608 -6.673280126673509 -0.7225446577926918 -6.871434112871212 -0.724537688939901 -6.871984446148782 -0.6528453404657015 -7.25799830404261 7.162579420947893 -7.078469010283276 7.127490702602729 -7.276450317435023 7.1208275330605 6.716704057231503 -3.702182447020491 6.703222601122889 -3.764155022811938 6.541750659983299 -3.697743607190727 7.02276182648545 2.52952846852613 7.034419215835821 2.469111966056694 6.862116333526764 2.535600225585909 -6.258451424956638 -7.156337190288912 -6.433325467948533 -7.163179576646859 -6.456044912435761 -7.116420380834304 6.12148523600438 2.432855809288773 6.25615285277576 2.329841047502787 6.133010334498379 2.363646324428206 2.482131981882935 -6.578948038907051 2.347397337717577 -6.54511569793694 2.374685842992014 -6.48654031337502 -9.226883617228856 4.949918969721494 -9.364300424677927 4.950734550338548 -9.227331453626954 5.014855107582775 -4.144388904626483 -2.059837602090552 -4.30091436112659 -2.019724650321638 -4.146690846255067 -1.98817332472513 4.58366395416181 -9.57844883091896 4.687797825325956 -9.503157336036267 4.75401390710288 -9.525546124816136 -6.480623026832273 -7.212833170771361 -6.482062634754204 -7.258941925857334 -6.678743437251233 -7.216326884488593 -6.674115931306228 -0.7240396627997361 -6.872820514184492 -0.6543408101834938 -6.674674293542323 -0.652348144219881 -7.459838911950114 6.776905529532344 -7.453197270593202 6.73512117752022 -7.634232373204485 6.765041439828853 6.640026708949564 -3.854609266625648 6.479369334592612 -3.84873527494939 6.478738437322397 -3.787922221610563 6.983802994338966 2.410197361084788 6.808810192667448 2.41479142626565 6.811319571334433 2.47639529799676 6.070038885237254 2.30442542891948 6.071263036094379 2.236711245752523 5.935553584784401 2.338876406096 2.352162169744286 -6.602427208229413 2.335520940445758 -6.662218054347383 2.228692780121906 -6.569367996641364 -9.352558283623353 4.681432156679366 -9.369069035535254 4.739923671642124 -9.231651764626596 4.739157938824222 -4.144147157576669 -2.059248813414291 -4.298406531952122 -2.090796906347824 -4.300672587376654 -2.01913579716988 5.318857115998671 -9.475497878340921 5.264506578007724 -9.446406902090407 5.431054043365919 -9.386478061742478 -3.798437635028153 -7.988997234969305 -3.974687229717874 -7.995376371805689 -3.984202140860202 -7.949865124205307 -4.239991226707238 -0.6854206447204622 -4.43977561736835 -0.6868879570074055 -4.439645894320549 -0.6151951654697432 -4.70736126842966 7.959147464083581 -4.51415759813757 7.92149520321366 -4.713837501285989 7.917347047259822 4.29228277170574 -4.052848656795728 4.287355328842573 -4.113540076474784 4.115968003424621 -4.048916083437927 4.602153769781864 2.84892743796308 4.606437271493864 2.787384127466765 4.440207456119154 2.854502823893526 2.501540817132148 2.458421236806983 2.360894878367134 2.49541657796471 2.347214760178243 2.562277059063196 -0.995987370844324 -6.193340856458598 -1.14982734784705 -6.156379658505479 -1.124472851279751 -6.098513453078377 -6.021111357985751 6.468295099512081 -6.173156786121 6.458297194800057 -6.016431170743815 6.52809812707032 -0.4673611767382618 -2.012142972794287 -0.6445168387110728 -1.976256813940504 -0.468805931694829 -1.940468705341978 6.770791638712933 -8.743876822142328 6.899332350587947 -8.667446781248739 6.958090127764787 -8.690637162682506 4.539717524041055 2.706829269539442 4.363356280612857 2.710870355417722 4.373278723959134 2.773626692411378 -4.069659760668041 -8.087473990802284 -4.084730298185056 -8.132364966101234 -4.269422606780978 -8.090208960337565 -4.239811057065991 -0.6851008210236675 -4.439465672741036 -0.6148752503924861 -4.23972471180077 -0.6134209565716047 -4.909868340854303 7.617742079432595 -4.891256859307714 7.575729809148655 -5.085869538237439 7.608586064309732 4.214459294067448 -4.220588294909764 4.052505424544329 -4.215150427434201 4.04326125207857 -4.15565456024358 2.313009045770565 2.381868346057378 2.314475444715103 2.316766841332019 2.159267758698982 2.419806410991602 -1.098011577230085 -6.203634390694601 -1.111064161653627 -6.262929803788139 -1.239118732682174 -6.167742373348917 -6.107052651180744 6.220643665716459 -6.119745850805267 6.27426029218976 -5.967650873234329 6.283780382622252 -0.4924884353088443 -2.089383935684647 -0.6667519852174547 -2.12515907898624 -0.6696466591109601 -2.053505604099753 7.361945856571936 -8.600266542189791 7.318191678102082 -8.569583331019507 7.502172404554232 -8.509610303663143 1.961866993229882 3.121420198292064 1.958855011039579 3.05822469283424 1.807479363525461 3.128187325946219 -0.9534596355512204 -8.616875581533371 -0.7875150586268281 -8.65393563374966 -0.9553964181431812 -8.663280655942394 -1.51554266047925 -0.6737276652590656 -1.706051469211878 -0.6764903426647987 -1.705250544440307 -0.6048132151761321 -2.045058043252404 8.274174214337881 -2.235433419952746 8.266902856311152 -2.242357602555838 8.311058497063025 1.503540247707399 -4.466496658125283 1.506635251235516 -4.526385834563106 1.335329230917145 -4.461239476627109 -0.656613062860214 2.182939504566808 -0.8111416065795968 2.221849701690229 -0.8214786410022695 2.286451640181053 -3.723373662074076 -5.770770407697359 -3.892365640552052 -5.731735655616535 -3.872998263873556 -5.673518365337237 -2.722161985294747 7.121072471250257 -2.895915131563711 7.102752784121488 -2.718419346985435 7.175531454212196 2.502047898251155 -2.059457062259479 2.307258732297215 -2.026349521758462 2.499797868375544 -1.987789267103908 8.60232885134681 -7.732012325644101 8.747377381387175 -7.653778516002554 8.795771051466248 -7.679795656206258 1.416206611738852 -4.648816687372756 1.261812103455085 -4.642147384413928 1.245142400618741 -4.58327829393803 1.884090460540353 2.975302765977744 1.715925736702129 2.980632017713818 1.732481879783885 3.044952568735773 -1.101939570557584 -8.770828551072645 -1.127596089301494 -8.816850064327529 -1.292339017399659 -8.776608818779309 -1.519352831643749 -0.680248378444777 -1.709061696274642 -0.6113355990130359 -1.518494808126481 -0.6085562156311978 -2.432832418340815 8.014027739704867 -2.402052538621178 7.970192476512427 -2.600568684462753 8.002787713078721 -0.7887234807686039 2.121535479458697 -0.7915802586981796 2.058723468682336 -0.9570349319695676 2.161652285090936 -3.814700094223602 -5.774321532089809 -3.820414909471595 -5.834135546616221 -3.969682280101117 -5.736544379247184 -2.735030482338774 6.715111064731046 -2.752681918904458 6.761933194069331 -2.578715199213051 6.778952396307427 2.512021352067604 -2.022946996562845 2.317962934978308 -2.061527020896144 2.317233307623482 -1.989835372920374 9.068258403170781 -7.539931851525441 9.037582147125956 -7.505617190798471 9.228077681181993 -7.447079154052003 -2.135624988089351 -4.88392659388195 -2.127787708236893 -4.943922613996008 -2.287825372741574 -4.875016067259235 -1.265266249581897 3.361322696758975 -1.272981469490768 3.295978028257124 -1.404182385817391 3.37155812642724 3.377144303257839 -8.614972367176044 3.522939210648212 -8.64677302543765 3.372142215560619 -8.665070813338549 1.880044486869489 -0.7099514351381803 1.706315315811077 -0.7161579521971155 1.707983358657299 -0.6444746211323323 0.6337253384765141 8.349045894123551 0.4609188363799184 8.333314393872879 0.4429084197343792 8.381346533202356 0.2695293010936289 8.1364090602647 0.3104024884032453 8.089717936087684 0.1186430588494392 8.118356841517262 -2.273763436104708 -5.093778321852651 -2.412676028745445 -5.083513173020799 -2.433325245719731 -5.024192203367654 -1.352700378083153 3.220124235178913 -1.504857610480996 3.229056740737732 -1.484182202929981 3.295401634304913 3.147647696784186 -8.819590970392428 3.119343838084017 -8.870722796612172 2.974893776662716 -8.835327339648192 1.886046075813324 -0.7001921648486493 1.713986269026166 -0.634713201971237 1.88776685392225 -0.6285039010011156 3.699286847979196 8.021822719626043 3.551952280515458 7.992681642936506 3.526917347250496 8.045842285832848 -6.836616185196524 -4.819791454772719 -6.974650412903761 -4.743853791100033 -6.842495237258248 -4.758460733709759 -5.459351615402195 3.312165022183192 -5.33863699750301 3.296910802299307 -5.346121993929955 3.228855582043298 9.041019153931364 -6.223731286472436 9.17630563324073 -6.244424906221747 9.050258749720699 -6.279024996016408 6.041048416374899 -0.7390722020015017 6.189725108657427 -0.7993394197908873 6.03839393747066 -0.8107428311457778 6.190729492069909 -0.7300320553835483 6.188178023715594 -0.8016900164781685 6.039501070505297 -0.7414231970392802 3.426548616858394 7.90026039116947 3.471178173534864 7.849667070041692 3.298289751271667 7.871255638637174 -7.174730556041649 -4.906914882122241 -7.19105403806215 -4.845489807090734 -7.054114516421728 -4.922644265753986 -5.548237129010005 3.181780743562215 -5.529544051101709 3.250467760491241 -5.415988493601526 3.167433313382298 8.937225232820152 -6.451378921063251 8.926680707431935 -6.511009150407484 8.792206600368742 -6.487263767881751 9.800177201884342 -0.8616435763712601 9.931073519539018 -0.9166810034770428 9.79701255595192 -0.9332864011530994 6.543709852027904 7.192855156707714 6.418256003569928 7.149474398751684 6.39047432061879 7.207047475399693 -10.6400071920669 -3.408831100365564 -10.75619133608059 -3.325594972389929 -10.63771319022588 -3.346104088131604 -8.981249019126471 2.571235861176958 -8.87372873114696 2.55103419758575 -8.877325153416768 2.48084769220877 12.06170687526851 -1.408798886311561 12.19939239644375 -1.414165055528784 12.09521623568925 -1.462925454458923 12.05148810165725 -1.446818324504842 12.16880426552161 -1.39314695239537 12.18912632739616 -1.452889081468752 9.949440569830106 -0.824816356737934 9.944926260336747 -0.8964329369946092 9.81403154190742 -0.8413931562028022 6.369941897162857 7.118594636873734 6.413417582830934 7.065469826911111 6.259985367198966 7.07827979375381 -10.85607504668656 -3.355543728139729 -10.86392437964178 -3.292489464994982 -10.74884128748 -3.376666859992118 -9.145558097532087 2.348930978149284 -9.131910200316611 2.41889883773728 -9.026943999321077 2.329259125943994 11.31957069538852 3.020063535695641 11.26583492276647 3.065205116143619 11.42096419302446 3.074562563346431 12.11838366928983 -0.916930972997013 12.24919422657635 -0.9661783164602587 12.1137980097633 -0.9885447479458788 9.380176606079347 5.589576159771561 9.266021591225567 5.52885695472803 9.243020805809994 5.589392515012531 -12.40786866375894 -0.6990625123970562 -12.29002405232616 -0.7258816563634604 -12.30443274239033 -0.7882153539158593 -11.80972128753171 0.7593281674162619 -11.69993427371322 0.7335394531590792 -11.69436938673955 0.6628881535085086 -11.86829958126493 0.580998676268116 -11.86624101006072 0.6509562222434236 -11.74995342578468 0.5552141355206599 11.21328869378885 3.273985903877301 11.3272664105408 3.335675764187015 11.36829230186353 3.284553751724773 12.25469266709176 -0.8918064921604529 12.25071985344918 -0.9636108793327785 12.11990880630248 -0.9143643410958979 9.381505479978991 5.459039563227266 9.244349645995575 5.458872224572826 9.345371550519099 5.513624454725724 -12.41324362251875 -0.6884910809370632 -12.40648445054843 -0.62555973916627 -12.30384427382546 -0.715279913644114 -12.32826371519772 -1.362403121319241 -12.4641364650429 -1.262973566421748 -12.34391070149085 -1.293517925765701 8.981203934996707 5.429316778188807 8.921911684114765 5.467780531960197 9.097381664687084 5.486188805898603 11.94236502335973 -0.8120089244758073 12.08925826584056 -0.8553680978831623 11.93906130248036 -0.8838342888720473 11.47787161521177 3.097568893933862 11.46388290660867 3.158119809795075 11.5966558362717 3.174562599256967 -11.34821614628667 1.255624421034312 -11.37199634600862 1.195303020831611 -11.47904374747924 1.287374896716945 -11.28751556120904 1.321710735149691 -11.40740462468705 1.353063397022768 -11.3935630011545 1.414495959264407 -12.44094075818664 -1.383219269771241 -12.44652625482842 -1.315413747877141 -12.30989459050788 -1.414197626557444 8.790311906755896 5.759914720469269 8.920833395116851 5.824940625231536 8.965450224087414 5.780183568122521 12.08695084765901 -0.7940576838640522 12.08419862447269 -0.8657165775385197 11.93730339714487 -0.8223615656621114 11.6677428890452 2.960337297373715 11.53468992322189 2.945360715295816 11.64097291766424 3.01325500917886 -9.369071727379923 2.270001709774427 -9.394095880381938 2.210798678097317 -9.518271409100272 2.305789280122922 -11.29147691600203 -2.630005990951341 -11.2730960361497 -2.696397365380065 -11.42869150098175 -2.595812799590735 6.576658927265195 6.554304857670149 6.520974822997713 6.590584892256295 6.713551668846446 6.613202537613497 10.52339895681859 -0.7207779304447626 10.35283549260919 -0.7540787061680859 10.35480122092476 -0.6824037917664646 12.51180493535195 0.2706465071181 12.50509077932547 0.327355149520634 12.64691539020935 0.3590274409921676 12.66778146565213 0.05892633726080144 12.52495608246687 0.0301714431453946 12.64674478859559 0.1068366988525202 -9.302510166488013 2.310149017915042 -9.439415499216281 2.345100915452966 -9.426070055047823 2.405635132471007 -11.20914066415681 -2.694165706725969 -11.35869759713432 -2.659180231377136 -11.3653588524073 -2.594180249874346 6.361798036712726 6.910066499029041 6.51560573550019 6.976942616822218 6.553995546503733 6.934599816498761 10.52299578483374 -0.7218641785146214 10.35439796509906 -0.6834902677926709 10.52494382013441 -0.6501968436860819 12.37000959761969 -2.336958627664024 12.36424737504895 -2.286473781923784 12.52368815173407 -2.242902055310073 -7.224685944093681 2.756019202345131 -7.245965853143572 2.696905971698105 -7.390269406292927 2.794788332272979 -9.530928646863446 -3.317543633379358 -9.515533077944276 -3.381619966434712 -9.683232503992896 -3.280780719023091 4.257134499501867 7.144053646115612 4.210186732294227 7.180672783186406 4.411524365462806 7.205010246440727 8.545973735453295 -0.592941878975351 8.357028163816624 -0.6299704831927728 8.35820892604297 -0.5582927843914641 8.546230575502396 -0.5920844654164418 8.358465807110765 -0.5574352332749095 8.54739793738338 -0.5203936384912864 12.41475282978748 -2.565479432249199 12.25351832280703 -2.604754525619022 12.39284133089804 -2.524392084192538 -7.128554081253577 2.81551315224877 -7.280503727026984 2.85317221179776 -7.272251546151035 2.913945760187608 -9.436436927120244 -3.342654604932382 -9.602337393165087 -3.304783873263495 -9.604596860468231 -3.242291066644484 4.043546367960193 7.507514708560755 4.217305617531318 7.576650856390418 4.244512810361858 7.533681961433697 6.458588815215814 -0.4911045874229971 6.259337848940884 -0.5302686320569416 6.259788327676025 -0.4585727995235803 11.45022029032948 -4.43438708186878 11.4389091848806 -4.390728059032241 11.61617969043561 -4.339166469793684 -5.006251699513427 3.100853315779034 -5.02112085534459 3.040863773969763 -5.181011700825348 3.142336909852881 -7.552485714177336 -3.699467933501392 -7.54377745695181 -3.761609553274425 -7.713189516733095 -3.661254097011805 1.883949753098416 7.515269190246045 1.848487499930221 7.554335453351069 2.047700650454797 7.578044841063513 1.689162816113156 7.860895420440947 1.873638509106969 7.931905728540796 1.888054153622193 7.886221660767003 6.457348208570663 -0.4957853571967956 6.25854755424382 -0.4632542000480829 6.457838105933594 -0.4241002986534197 11.2777955831601 -4.692609692730578 11.0974163655919 -4.737000543948343 11.24964601433964 -4.657753875375169 -4.894188290903335 3.164392141248226 -5.054484030439394 3.203652280341502 -5.053497485486894 3.266429849060887 -7.470913264088006 -3.712882289854652 -7.646001996777374 -3.673342907891183 -7.640648267248458 -3.612865098936539 -0.7302780596735581 7.710385280979263 -0.7542204343304731 7.753523337154497 -0.5673989491577319 7.774105028477619 4.19487860069561 -0.4224204991272711 3.996298338185958 -0.461464255093915 3.996095256625206 -0.3897783386373207 9.878641123504959 -6.202299018746859 9.858408393813962 -6.164194333899258 10.04825114846391 -6.11211180087455 -2.608771561801277 3.429134367301827 -2.61640780100766 3.366640053256094 -2.783219999291351 3.469005226175061 -5.438666118872652 -4.031915268882641 -5.438482305466206 -4.092539373380188 -5.598960862720181 -3.99348706643258 -5.339848911181261 -4.02173657458162 -5.51460469757868 -3.982004317795938 -5.5007060378602 -3.923065006203717 -0.7235561226348133 8.069782180759592 -0.9101067414326411 8.047732414326177 -0.7267770962588636 8.119347977291019 4.202241642346643 -0.3947040905378378 4.003459239982811 -0.3620583813129791 4.20195769221024 -0.3226515792289527 9.676123288116585 -6.246639807917428 9.827903993125302 -6.168116163994411 9.867218195010635 -6.197472680389462 -2.497942624891423 3.476350128791754 -2.657800587684473 3.515888260631241 -2.664241510416254 3.579230860433497 -3.039940524517814 -4.412230103514333 -3.048242970748799 -4.471818097288121 -3.191190959732303 -4.374922231239453 -3.763036890219274 7.590975318271896 -3.778704319162962 7.639051110321895 -3.611274597345889 7.654713604059981 1.650523539803778 -0.3535035296280499 1.462196838817967 -0.3917729921800831 1.461145487245244 -0.3197248815295568 8.592219930555833 -7.257072706052855 8.557921179424286 -7.224053261046919 8.747476541769197 -7.164935697135427 0.1406337610625319 3.733797810210173 0.1395419039069806 3.670258686393833 -0.02388507881883939 3.773426175556571 0.2709240254026241 3.777324967501047 0.1201334906623336 3.815767655541199 0.1080787144297618 3.881060097561499 -2.936354617074754 -4.394314621472311 -3.101275843536757 -4.355795668491951 -3.07971136218907 -4.297793192633391 -3.721072113896653 7.867935155099407 -3.888349492248882 7.851295778302021 -3.716943315756291 7.923624035620274 1.645064061037364 -0.3724507021735264 1.455685340335751 -0.3386743722916912 1.644100099668695 -0.3007641796892113 8.100940675740842 -7.347312867957174 8.241692624995373 -7.269464729778806 8.29346233362131 -7.294459136463427 3.469850849684725 3.900357043555614 3.472017456300336 3.834401550811186 3.322275567743667 3.937355519735375 -0.1023895106528927 -4.879835590156923 -0.1170898568501827 -4.939151136998811 -0.238029561536206 -4.844759002316809 -7.114636760554537 6.756816294661537 -7.127895730494763 6.81161600095514 -6.980733369026265 6.818051314912564 -1.550998060598423 -0.3778865650695223 -1.720065763427929 -0.4124693052699294 -1.721835239327647 -0.3407922871979483 6.80702682276617 -8.297761895734295 6.759729529718261 -8.26778005069659 6.938896502216644 -8.207586602382589 6.163368388470193 -8.350734524831868 6.284459955916631 -8.274759866409978 6.346039756643334 -8.297456563449998 3.643874164541265 3.941770590636395 3.508670096486394 3.977873807408855 3.49497507021792 4.045478249316951 0.005835663129068469 -4.860933560759089 -0.1421120931521958 -4.824876920903267 -0.1155740604464639 -4.766915566438251 -7.026139346161553 6.991237927096178 -7.17327156087129 6.984389301634262 -7.021802981148946 7.052850713371004 -1.554815807467813 -0.3887919030281837 -1.72565342438554 -0.351698874051286 -1.556549722259848 -0.3171079159341658 4.574721270117863 -9.206420184576434 4.517744107111181 -9.17721696821164 4.677354815083322 -9.117540535223441 7.353869995920599 3.5507029233354 7.353694124279022 3.482245578826975 7.225199208536866 3.583728155222878 3.647514931463742 -5.242838091940076 3.630918838176233 -5.303045250355286 3.529486700959499 -5.21084132776262 -10.33125851989274 4.830395726752738 -10.35048384214724 4.890220798922674 -10.2155357828808 4.885791695912404 -5.6362703403132 -0.4896387235804584 -5.638819120231366 -0.417969801788205 -5.488409815916429 -0.4597030815992176 -5.634811288321173 -0.4089858632164678 -5.486990394918814 -0.3790542862912318 -5.484402411438603 -0.4507200963404745 3.763031202477097 -9.218754706048724 3.859035375087246 -9.143704093001249 3.926740526010622 -9.166398178683943 7.408314102668021 3.645974968143622 7.535697521555866 3.543628900312736 7.417894719828418 3.576135708947374 3.791319289428732 -5.203325182469116 3.662355303616272 -5.170711020977769 3.689169757568529 -5.11161268549519 -10.19138273408183 5.04141668936046 -10.32631531885218 5.046128526909784 -10.19496663212064 5.107359031539379 -9.806781445342764 -0.6041624731399967 -9.810039044935884 -0.5325135653374357 -9.672624342500644 -0.5797765348465975 1.535922109075115 -9.865529604055389 1.474457187294036 -9.833688724408701 1.609684157394824 -9.776722218676373 10.93539100340914 2.177462147527562 10.92675072566646 2.107547018278384 10.81934835029744 2.205101865336883 8.072853190883647 -4.801022135136885 8.061390124508989 -4.863120881729041 7.968882449874977 -4.773024751161838 -12.27146224211327 2.015760399897205 -12.37926707659833 1.970167214977837 -12.40980259010493 2.031643386693846 -12.23230287926874 2.180127290769761 -12.37044845907693 2.197026830779392 -12.24796720187469 2.246514432487988 -9.7794452200131 -0.4770096666667782 -9.648176375190293 -0.4527164337478769 -9.642033647960231 -0.5242782681450098 0.6347877467500684 -9.7938824966912 0.7064899812011505 -9.71696929723729 0.774283166708718 -9.743687857519737 10.92258138251291 2.193204678530598 11.02901042879143 2.094991913303787 10.92479461569198 2.122419629650227 8.274267772584182 -4.533218815517539 8.368657229714991 -4.622098876869929 8.251571579293271 -4.5940434551654 -12.62322136483424 -0.9884926746096205 -12.73402258899104 -1.022165627830135 -12.77512460861654 -0.9628896790440884 -12.42656044648903 -0.6819918015620948 -12.43279392382107 -0.610434823620015 -12.29429478115778 -0.6636320508769412 -3.514888558759066 -9.587899785499472 -3.394188500635819 -9.536087997465549 -3.461425166322894 -9.630198417003474 12.67926010943561 0.112703683031725 12.66238027365438 0.04315350076231182 12.56225914008888 0.1340217108155918 11.89531750833988 -2.599964148209908 11.89459864827752 -2.663352588840468 11.7861060285692 -2.577088680193272 11.75577224359357 -2.625974774347513 11.86384865128812 -2.712561399909004 11.74866162454194 -2.689746790882088 -12.66282470131991 -0.7703015141692573 -12.63789468173582 -0.8332199780093381 -12.7893008948975 -0.8058556451738165 -12.42167249640617 -0.5929351130584185 -12.28646030539558 -0.5744824291765425 -12.2831707763391 -0.6461281874960041 -4.690159170759388 -9.215779302306514 -4.62245131688605 -9.137747522884199 -4.563762793138021 -9.17319511605838 12.70399787726469 -0.08200532495677756 12.59439955775383 -0.06030497090109629 12.60566385994444 0.0100626524788951 12.61640793213024 -0.1023569909323241 12.6304044421532 -0.1654198673449201 12.49827414866427 -0.08512560844670043 -11.67350323515287 -3.288010248492187 -11.80204843882791 -3.311238971525278 -11.846820292182 -3.255535621580952 -12.48538805670654 -0.59129550450552 -12.48811697465957 -0.5196351760705164 -12.33725850261272 -0.5786498228314776 -10.50563804373145 -5.580884561568996 -10.37647905207472 -5.5534926342502 -10.48223632086638 -5.636103579282757 12.26433931610314 -1.606192561422027 12.2382986223441 -1.67409303859007 12.13387420455086 -1.591030891722805 12.25008523136633 -1.651601640595737 12.13164251785821 -1.635736838902463 12.14548500515366 -1.568676501068125 12.45898529356781 0.06265792421729399 12.59305490883578 -0.01562164687526756 12.46274646214888 0.0004132969269934617 -11.78705701281359 -3.145702805812931 -11.76049531113983 -3.203525023142638 -11.93312207740811 -3.168849634525575 -12.48802585516416 -0.5194814619330627 -12.3398577858151 -0.5068274917863478 -12.33716744915971 -0.5784962131693596 -10.80976664562027 -5.00053219044899 -10.77723945394556 -5.048177494912495 -10.90821893477896 -5.069560801012446 10.68389964464171 -2.503523768390299 10.65940534287381 -2.568672673545232 10.53444531774685 -2.49359210205869 11.18407651756669 1.693274869997672 11.20252889825199 1.632674230747778 11.04684961283824 1.704870363887166 -10.06808402359556 -4.910543599436745 -10.21696107594429 -4.925582567577007 -10.25872359456791 -4.873614434076883 -10.7816665529123 -0.4648133065879106 -10.95109552754286 -0.4724726394720479 -10.95300623200576 -0.4007884327468569 -12.30908038002033 1.740118222142352 -12.16332030314266 1.730537365504907 -12.32385807588184 1.687300798036264 -12.20876008939372 1.568895762789303 -12.20352521299595 1.520487039089596 -12.34947627949594 1.52805768223384 10.60534147703649 -2.640136696809395 10.46803189022016 -2.629163630984892 10.48068895447858 -2.564740459846621 11.1572787914086 1.617496273057383 11.00776963092635 1.627958053809139 11.00123978666344 1.68921021825032 -10.22928332495867 -4.858430103010528 -10.20826288899793 -4.911140997368372 -10.39813383988574 -4.871837620040224 -10.78215597732558 -0.4656464671670826 -10.95349585095464 -0.4016219155005061 -10.78408957030241 -0.3939673121257168 -9.699595093495944 5.775912464707766 -9.536309214523842 5.747275989514788 -9.723468536318375 5.73110556445044 8.665189670607965 -2.996047723033286 8.645332841270562 -3.059336570399545 8.49905097107551 -2.989800264909472 9.040807845074188 2.520450967274743 9.057325119261686 2.460372842151566 8.888248850721846 2.528343927701152 -8.12958098266942 -6.08372138608525 -8.295508498011042 -6.093180139383154 -8.328721898618415 -6.044505563437614 -8.672207449606802 -0.3716241419591361 -8.860448226334816 -0.3755544401733517 -8.861624165207038 -0.3038651157676479 -8.673389915837582 -0.373705239891557 -8.862807031354816 -0.3059469055392942 -8.67458805903075 -0.3020321883300314 -9.832646750119491 5.392998362967258 -9.832473836806617 5.349290839839418 -9.997025549394298 5.373023407964293 8.575783519388756 -3.154262665406538 8.423197819176439 -3.146695911335647 8.429752763263647 -3.084400491640864 8.99728339693395 2.405265479481248 8.831127768129674 2.411791497874662 8.827933938632205 2.472814376969788 -8.334586758656092 -6.111197157968449 -8.324437661620836 -6.159874202813236 -8.522696161312483 -6.117982771918519 -6.377544179146341 -0.3103605142503153 -6.576570181989181 -0.3121674903087746 -6.577067006288759 -0.2404893070979254 -6.92624851164522 7.440383425074537 -6.744319709033606 7.404698113182658 -6.94324404247165 7.398770758029583 6.42893787304784 -3.3565738762113 6.416546647835457 -3.418317624762302 6.253206074137435 -3.352311352956643 6.716822531297657 2.942347538293593 6.72753624867111 2.881857282507835 6.555455076872859 2.948252037061713 -5.961504567206625 -7.033789168623536 -6.137089499438966 -7.040375504351062 -6.158074207712867 -6.993892333598071 -6.198563300694816 -7.116947799031139 -6.201960465062159 -7.162881452958369 -6.397561210177187 -7.120139189853734 -6.379592733052274 -0.3140210896168131 -6.579116187902246 -0.2441509917345677 -6.380062631985634 -0.2423322560992763 -7.130691912037596 7.081262166481328 -7.122500172632322 7.039563654134417 -7.30593463043105 7.070108838600221 6.340075997570792 -3.530611999909155 6.178698014784366 -3.524888339870417 6.176952111102356 -3.464274940928936 6.673710039240254 2.819823577916315 6.498014450153883 2.824219524485156 6.501442688301053 2.885918880306083</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"890\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 3 6 4 2 5 1 6 0 7 8 8 10 9 0 10 11 11 14 12 15 13 16 14 2 15 6 16 20 17 22 18 16 19 23 20 0 21 26 22 8 23 28 24 0 25 10 26 10 27 11 28 30 29 32 30 15 31 14 32 14 33 16 34 22 35 20 36 6 37 34 38 11 39 36 40 30 41 22 42 23 43 38 44 8 45 26 46 40 47 0 48 28 49 26 50 42 51 43 52 44 53 48 54 49 55 42 56 52 57 53 58 54 59 32 60 58 61 15 62 60 63 52 64 61 65 20 66 34 67 64 68 30 69 36 70 66 71 68 72 61 73 69 74 38 75 23 76 72 77 26 78 74 79 40 80 28 81 76 82 26 83 43 84 53 85 44 86 49 87 43 88 42 89 78 90 49 91 48 92 54 93 53 94 80 95 60 96 53 97 52 98 32 99 82 100 58 101 68 102 60 103 61 104 64 105 34 106 84 107 36 108 64 109 66 110 78 111 48 112 86 113 88 114 68 115 69 116 38 117 72 118 90 119 40 120 74 121 92 122 26 123 76 124 74 125 44 126 53 127 94 128 96 129 80 130 97 131 100 132 97 133 101 134 54 135 80 136 96 137 53 138 60 139 94 140 58 141 82 142 104 143 60 144 68 145 106 146 64 147 84 148 108 149 110 150 66 151 64 152 78 153 86 154 112 155 68 156 88 157 114 158 88 159 69 160 116 161 90 162 72 163 118 164 74 165 120 166 92 167 76 168 122 169 74 170 96 171 97 172 100 173 100 174 101 175 124 176 94 177 60 178 106 179 82 180 126 181 104 182 106 183 68 184 114 185 108 186 84 187 128 188 108 189 110 190 64 191 112 192 86 193 130 194 124 195 101 196 132 197 114 198 88 199 134 200 136 201 88 202 116 203 90 204 118 205 138 206 92 207 120 208 140 209 74 210 122 211 120 212 126 213 142 214 143 215 104 216 126 217 143 218 122 219 146 220 120 221 148 222 108 223 128 224 150 225 110 226 108 227 112 228 130 229 152 230 132 231 154 232 124 233 146 234 156 235 157 236 134 237 88 238 136 239 136 240 116 241 160 242 118 243 162 244 138 245 120 246 157 247 140 248 143 249 142 250 164 251 120 252 146 253 157 254 166 255 148 256 128 257 148 258 150 259 108 260 152 261 130 262 168 263 132 264 170 265 154 266 142 267 172 268 164 269 157 270 156 271 174 272 134 273 136 274 176 275 178 276 136 277 160 278 138 279 162 280 180 281 140 282 157 283 182 284 184 285 148 286 166 287 186 288 150 289 148 290 152 291 168 292 188 293 170 294 190 295 154 296 164 297 172 298 192 299 157 300 174 301 182 302 156 303 194 304 174 305 176 306 136 307 178 308 178 309 160 310 196 311 162 312 198 313 180 314 200 315 184 316 166 317 184 318 186 319 148 320 188 321 168 322 202 323 170 324 188 325 190 326 172 327 204 328 192 329 182 330 174 331 206 332 174 333 194 334 208 335 176 336 178 337 210 338 212 339 178 340 196 341 180 342 198 343 214 344 216 345 184 346 200 347 218 348 186 349 184 350 188 351 202 352 220 353 188 354 222 355 190 356 192 357 204 358 224 359 198 360 226 361 214 362 174 363 208 364 206 365 194 366 228 367 208 368 210 369 178 370 212 371 212 372 196 373 230 374 232 375 216 376 200 377 216 378 218 379 184 380 202 381 234 382 220 383 188 384 220 385 222 386 224 387 204 388 236 389 214 390 226 391 238 392 206 393 208 394 240 395 208 396 228 397 242 398 210 399 212 400 244 401 212 402 230 403 246 404 248 405 216 406 232 407 250 408 218 409 216 410 220 411 234 412 252 413 220 414 254 415 222 416 224 417 236 418 256 419 230 420 258 421 246 422 226 423 260 424 238 425 240 426 208 427 242 428 228 429 262 430 242 431 244 432 212 433 264 434 266 435 248 436 232 437 248 438 250 439 216 440 234 441 268 442 252 443 220 444 252 445 254 446 256 447 236 448 270 449 246 450 258 451 272 452 238 453 260 454 274 455 240 456 242 457 276 458 242 459 262 460 278 461 280 462 244 463 264 464 282 465 248 466 266 467 284 468 250 469 248 470 252 471 268 472 286 473 252 474 288 475 254 476 256 477 270 478 290 479 280 480 264 481 272 482 258 483 292 484 272 485 260 486 294 487 274 488 276 489 242 490 296 491 262 492 298 493 278 494 300 495 282 496 266 497 282 498 284 499 248 500 268 501 302 502 286 503 252 504 286 505 288 506 290 507 270 508 304 509 306 510 280 511 272 512 272 513 292 514 308 515 294 516 310 517 274 518 276 519 296 520 312 521 278 522 298 523 314 524 316 525 282 526 300 527 318 528 284 529 282 530 286 531 302 532 320 533 286 534 322 535 288 536 290 537 304 538 324 539 314 540 298 541 326 542 308 543 306 544 272 545 292 546 328 547 308 548 294 549 330 550 310 551 296 552 314 553 312 554 332 555 316 556 300 557 316 558 318 559 282 560 302 561 334 562 320 563 286 564 320 565 322 566 324 567 304 568 336 569 314 570 326 571 338 572 340 573 306 574 308 575 308 576 328 577 342 578 330 579 344 580 310 581 312 582 314 583 346 584 348 585 316 586 332 587 316 588 350 589 318 590 320 591 334 592 352 593 354 594 322 595 320 596 356 597 324 598 336 599 314 600 338 601 346 602 338 603 326 604 358 605 342 606 340 607 308 608 328 609 360 610 342 611 362 612 344 613 330 614 364 615 348 616 332 617 366 618 350 619 316 620 334 621 368 622 352 623 352 624 354 625 320 626 356 627 336 628 370 629 346 630 338 631 372 632 338 633 358 634 374 635 376 636 340 637 342 638 378 639 342 640 360 641 362 642 380 643 344 644 382 645 348 646 364 647 366 648 384 649 350 650 352 651 368 652 386 653 388 654 354 655 352 656 390 657 356 658 370 659 392 660 380 661 362 662 338 663 374 664 372 665 358 666 394 667 374 668 378 669 376 670 342 671 378 672 360 673 396 674 398 675 382 676 364 677 400 678 384 679 366 680 368 681 402 682 386 683 386 684 388 685 352 686 390 687 370 688 404 689 392 690 406 691 380 692 372 693 374 694 408 695 374 696 394 697 410 698 412 699 376 700 378 701 414 702 378 703 396 704 398 705 416 706 382 707 418 708 384 709 400 710 402 711 420 712 386 713 422 714 388 715 386 716 424 717 390 718 404 719 414 720 396 721 426 722 428 723 406 724 392 725 374 726 410 727 408 728 394 729 430 730 410 731 414 732 412 733 378 734 432 735 416 736 398 737 416 738 418 739 400 740 402 741 434 742 420 743 420 744 422 745 386 746 436 747 424 748 404 749 438 750 414 751 426 752 428 753 440 754 406 755 408 756 410 757 442 758 410 759 430 760 444 761 446 762 412 763 414 764 432 765 448 766 416 767 450 768 418 769 416 770 434 771 452 772 420 773 454 774 422 775 420 776 456 777 424 778 436 779 438 780 446 781 414 782 438 783 426 784 458 785 460 786 440 787 428 788 410 789 444 790 442 791 430 792 462 793 444 794 464 795 448 796 432 797 448 798 450 799 416 800 466 801 452 802 434 803 452 804 454 805 420 806 468 807 456 808 436 809 470 810 446 811 438 812 472 813 438 814 458 815 460 816 474 817 440 818 442 819 444 820 476 821 444 822 462 823 478 824 480 825 448 826 464 827 482 828 450 829 448 830 466 831 484 832 452 833 452 834 486 835 454 836 488 837 456 838 468 839 462 840 490 841 478 842 472 843 470 844 438 845 472 846 458 847 492 848 494 849 474 850 460 851 444 852 478 853 476 854 496 855 480 856 464 857 480 858 482 859 448 860 498 861 484 862 466 863 452 864 484 865 486 866 500 867 488 868 468 869 478 870 490 871 502 872 472 873 504 874 470 875 506 876 472 877 492 878 508 879 474 880 494 881 476 882 478 883 510 884 512 885 480 886 496 887 514 888 482 889 480 890 498 891 516 892 484 893 484 894 518 895 486 896 520 897 488 898 500 899 478 900 502 901 510 902 490 903 522 904 502 905 524 906 504 907 472 908 506 909 492 910 526 911 528 912 508 913 494 914 530 915 512 916 496 917 512 918 514 919 480 920 532 921 516 922 498 923 484 924 516 925 518 926 534 927 520 928 500 929 510 930 502 931 536 932 502 933 522 934 538 935 524 936 540 937 504 938 542 939 506 940 526 941 544 942 508 943 528 944 546 945 512 946 530 947 548 948 514 949 512 950 532 951 550 952 516 953 516 954 552 955 518 956 554 957 520 958 534 959 556 960 544 961 528 962 502 963 538 964 536 965 522 966 558 967 538 968 560 969 540 970 524 971 542 972 526 973 562 974 564 975 546 976 530 977 546 978 548 979 512 980 566 981 550 982 532 983 516 984 550 985 552 986 568 987 554 988 534 989 570 990 544 991 556 992 538 993 572 994 536 995 538 996 558 997 574 998 560 999 576 1000 540 1001 562 1002 578 1003 542 1004 580 1005 546 1006 564 1007 582 1008 548 1009 546 1010 584 1011 550 1012 566 1013 550 1014 586 1015 552 1016 568 1017 588 1018 554 1019 590 1020 578 1021 562 1022 592 1023 570 1024 556 1025 574 1026 572 1027 538 1028 558 1029 594 1030 574 1031 596 1032 576 1033 560 1034 598 1035 580 1036 564 1037 580 1038 582 1039 546 1040 600 1041 584 1042 566 1043 550 1044 584 1045 586 1046 602 1047 588 1048 568 1049 590 1050 604 1051 578 1052 606 1053 570 1054 592 1055 574 1056 608 1057 572 1058 610 1059 574 1060 594 1061 596 1062 612 1063 576 1064 614 1065 580 1066 598 1067 616 1068 582 1069 580 1070 618 1071 584 1072 600 1073 584 1074 620 1075 586 1076 602 1077 622 1078 588 1079 596 1080 624 1081 612 1082 626 1083 604 1084 590 1085 628 1086 606 1087 592 1088 630 1089 608 1090 574 1091 632 1092 610 1093 594 1094 634 1095 614 1096 598 1097 614 1098 616 1099 580 1100 636 1101 618 1102 600 1103 584 1104 618 1105 620 1106 638 1107 622 1108 602 1109 612 1110 624 1111 640 1112 626 1113 642 1114 604 1115 644 1116 606 1117 628 1118 646 1119 608 1120 630 1121 648 1122 610 1123 632 1124 650 1125 614 1126 634 1127 616 1128 614 1129 652 1130 654 1131 618 1132 636 1133 618 1134 656 1135 620 1136 638 1137 658 1138 622 1139 660 1140 648 1141 632 1142 624 1143 662 1144 640 1145 664 1146 642 1147 626 1148 644 1149 628 1150 666 1151 668 1152 646 1153 630 1154 670 1155 650 1156 634 1157 652 1158 614 1159 650 1160 672 1161 654 1162 636 1163 618 1164 674 1165 656 1166 676 1167 658 1168 638 1169 660 1170 678 1171 648 1172 640 1173 662 1174 680 1175 664 1176 682 1177 642 1178 644 1179 666 1180 684 1181 686 1182 646 1183 668 1184 650 1185 670 1186 688 1187 652 1188 650 1189 690 1190 692 1191 654 1192 672 1193 656 1194 674 1195 694 1196 676 1197 696 1198 658 1199 678 1200 686 1201 668 1202 698 1203 678 1204 660 1205 662 1206 682 1207 680 1208 700 1209 682 1210 664 1211 684 1212 666 1213 702 1214 670 1215 704 1216 688 1217 690 1218 650 1219 706 1220 708 1221 692 1222 672 1223 694 1224 674 1225 710 1226 676 1227 712 1228 696 1229 686 1230 678 1231 714 1232 678 1233 698 1234 716 1235 680 1236 682 1237 718 1238 720 1239 682 1240 700 1241 684 1242 702 1243 722 1244 688 1245 704 1246 724 1247 690 1248 706 1249 726 1250 728 1251 692 1252 708 1253 694 1254 710 1255 730 1256 712 1257 732 1258 696 1259 722 1260 702 1261 734 1262 678 1263 716 1264 714 1265 698 1266 736 1267 716 1268 682 1269 720 1270 718 1271 720 1272 700 1273 738 1274 724 1275 704 1276 740 1277 706 1278 742 1279 726 1280 744 1281 728 1282 708 1283 730 1284 710 1285 746 1286 712 1287 748 1288 732 1289 722 1290 734 1291 750 1292 714 1293 716 1294 752 1295 716 1296 736 1297 754 1298 718 1299 720 1300 756 1301 758 1302 720 1303 738 1304 724 1305 740 1306 760 1307 726 1308 742 1309 762 1310 764 1311 728 1312 744 1313 730 1314 746 1315 766 1316 732 1317 748 1318 768 1319 758 1320 738 1321 770 1322 750 1323 734 1324 772 1325 716 1326 754 1327 752 1328 736 1329 774 1330 754 1331 720 1332 758 1333 756 1334 760 1335 740 1336 776 1337 742 1338 760 1339 762 1340 764 1341 744 1342 778 1343 766 1344 746 1345 780 1346 748 1347 782 1348 768 1349 784 1350 758 1351 770 1352 750 1353 772 1354 786 1355 752 1356 754 1357 788 1358 754 1359 774 1360 790 1361 756 1362 758 1363 792 1364 760 1365 776 1366 794 1367 796 1368 762 1369 760 1370 764 1371 778 1372 798 1373 780 1374 800 1375 766 1376 768 1377 782 1378 802 1379 758 1380 784 1381 792 1382 784 1383 770 1384 804 1385 786 1386 772 1387 806 1388 754 1389 790 1390 788 1391 774 1392 808 1393 790 1394 794 1395 776 1396 810 1397 794 1398 796 1399 760 1400 798 1401 778 1402 812 1403 780 1404 814 1405 800 1406 782 1407 816 1408 802 1409 792 1410 784 1411 818 1412 820 1413 784 1414 804 1415 786 1416 806 1417 822 1418 788 1419 790 1420 824 1421 790 1422 808 1423 826 1424 828 1425 794 1426 810 1427 830 1428 796 1429 794 1430 798 1431 812 1432 832 1433 814 1434 834 1435 800 1436 802 1437 816 1438 836 1439 808 1440 838 1441 826 1442 818 1443 784 1444 820 1445 820 1446 804 1447 840 1448 806 1449 842 1450 822 1451 790 1452 826 1453 824 1454 844 1455 828 1456 810 1457 828 1458 830 1459 794 1460 832 1461 812 1462 846 1463 814 1464 848 1465 834 1466 816 1467 850 1468 836 1469 826 1470 838 1471 852 1472 818 1473 820 1474 854 1475 856 1476 820 1477 840 1478 822 1479 842 1480 858 1481 824 1482 826 1483 860 1484 862 1485 828 1486 844 1487 864 1488 830 1489 828 1490 832 1491 846 1492 866 1493 848 1494 868 1495 834 1496 836 1497 850 1498 870 1499 826 1500 852 1501 860 1502 838 1503 872 1504 852 1505 854 1506 820 1507 856 1508 856 1509 840 1510 874 1511 842 1512 876 1513 858 1514 878 1515 862 1516 844 1517 862 1518 864 1519 828 1520 866 1521 846 1522 880 1523 848 1524 866 1525 868 1526 850 1527 882 1528 870 1529 860 1530 852 1531 884 1532 852 1533 872 1534 886 1535 854 1536 856 1537 888 1538 890 1539 856 1540 874 1541 858 1542 876 1543 892 1544 894 1545 862 1546 878 1547 896 1548 864 1549 862 1550 866 1551 880 1552 898 1553 866 1554 900 1555 868 1556 870 1557 882 1558 902 1559 876 1560 904 1561 892 1562 852 1563 886 1564 884 1565 872 1566 906 1567 886 1568 888 1569 856 1570 890 1571 890 1572 874 1573 908 1574 910 1575 894 1576 878 1577 894 1578 896 1579 862 1580 880 1581 912 1582 898 1583 866 1584 898 1585 900 1586 902 1587 882 1588 914 1589 892 1590 904 1591 916 1592 884 1593 886 1594 918 1595 886 1596 906 1597 920 1598 888 1599 890 1600 922 1601 890 1602 908 1603 924 1604 926 1605 894 1606 910 1607 928 1608 896 1609 894 1610 898 1611 912 1612 930 1613 898 1614 932 1615 900 1616 902 1617 914 1618 934 1619 908 1620 936 1621 924 1622 904 1623 938 1624 916 1625 918 1626 886 1627 920 1628 906 1629 940 1630 920 1631 922 1632 890 1633 942 1634 944 1635 926 1636 910 1637 926 1638 928 1639 894 1640 912 1641 946 1642 930 1643 898 1644 930 1645 932 1646 934 1647 914 1648 948 1649 924 1650 936 1651 950 1652 916 1653 938 1654 952 1655 918 1656 920 1657 954 1658 920 1659 940 1660 956 1661 958 1662 922 1663 942 1664 960 1665 926 1666 944 1667 962 1668 928 1669 926 1670 930 1671 946 1672 964 1673 930 1674 966 1675 932 1676 934 1677 948 1678 968 1679 958 1680 942 1681 950 1682 936 1683 970 1684 950 1685 938 1686 972 1687 952 1688 954 1689 920 1690 974 1691 956 1692 940 1693 976 1694 978 1695 960 1696 944 1697 960 1698 962 1699 926 1700 946 1701 980 1702 964 1703 930 1704 964 1705 966 1706 968 1707 948 1708 982 1709 984 1710 958 1711 950 1712 950 1713 970 1714 986 1715 972 1716 988 1717 952 1718 954 1719 974 1720 990 1721 956 1722 976 1723 992 1724 994 1725 960 1726 978 1727 996 1728 962 1729 960 1730 964 1731 980 1732 998 1733 964 1734 1000 1735 966 1736 968 1737 982 1738 1002 1739 992 1740 976 1741 1004 1742 986 1743 984 1744 950 1745 970 1746 1006 1747 986 1748 972 1749 1008 1750 988 1751 974 1752 992 1753 990 1754 1010 1755 994 1756 978 1757 994 1758 996 1759 960 1760 980 1761 1012 1762 998 1763 964 1764 998 1765 1000 1766 1002 1767 982 1768 1014 1769 992 1770 1004 1771 1016 1772 1018 1773 984 1774 986 1775 986 1776 1006 1777 1020 1778 1008 1779 1022 1780 988 1781 990 1782 992 1783 1024 1784 1026 1785 994 1786 1010 1787 994 1788 1028 1789 996 1790 998 1791 1012 1792 1030 1793 1032 1794 1000 1795 998 1796 1034 1797 1002 1798 1014 1799 992 1800 1016 1801 1024 1802 1016 1803 1004 1804 1036 1805 1020 1806 1018 1807 986 1808 1006 1809 1038 1810 1020 1811 1040 1812 1022 1813 1008 1814 1042 1815 1026 1816 1010 1817 1044 1818 1028 1819 994 1820 1012 1821 1046 1822 1030 1823 1030 1824 1032 1825 998 1826 1034 1827 1014 1828 1048 1829 1024 1830 1016 1831 1050 1832 1016 1833 1036 1834 1052 1835 1054 1836 1018 1837 1020 1838 1056 1839 1020 1840 1038 1841 1040 1842 1058 1843 1022 1844 1060 1845 1026 1846 1042 1847 1044 1848 1062 1849 1028 1850 1030 1851 1046 1852 1064 1853 1066 1854 1032 1855 1030 1856 1068 1857 1034 1858 1048 1859 1070 1860 1058 1861 1040 1862 1016 1863 1052 1864 1050 1865 1036 1866 1072 1867 1052 1868 1056 1869 1054 1870 1020 1871 1056 1872 1038 1873 1074 1874 1076 1875 1060 1876 1042 1877 1078 1878 1062 1879 1044 1880 1046 1881 1080 1882 1064 1883 1064 1884 1066 1885 1030 1886 1068 1887 1048 1888 1082 1889 1070 1890 1084 1891 1058 1892 1050 1893 1052 1894 1086 1895 1052 1896 1072 1897 1088 1898 1090 1899 1054 1900 1056 1901 1092 1902 1056 1903 1074 1904 1076 1905 1094 1906 1060 1907 1096 1908 1062 1909 1078 1910 1080 1911 1098 1912 1064 1913 1100 1914 1066 1915 1064 1916 1102 1917 1068 1918 1082 1919 1092 1920 1074 1921 1104 1922 1106 1923 1084 1924 1070 1925 1052 1926 1088 1927 1086 1928 1072 1929 1108 1930 1088 1931 1092 1932 1090 1933 1056 1934 1110 1935 1094 1936 1076 1937 1094 1938 1096 1939 1078 1940 1080 1941 1112 1942 1098 1943 1114 1944 1100 1945 1064 1946 1116 1947 1102 1948 1082 1949 1118 1950 1092 1951 1104 1952 1106 1953 1120 1954 1084 1955 1086 1956 1088 1957 1122 1958 1088 1959 1108 1960 1124 1961 1126 1962 1090 1963 1092 1964 1110 1965 1128 1966 1094 1967 1130 1968 1096 1969 1094 1970 1112 1971 1132 1972 1098 1973 1114 1974 1134 1975 1100 1976 1136 1977 1102 1978 1116 1979 1118 1980 1126 1981 1092 1982 1118 1983 1104 1984 1138 1985 1140 1986 1120 1987 1106 1988 1088 1989 1124 1990 1122 1991 1108 1992 1142 1993 1124 1994 1144 1995 1128 1996 1110 1997 1128 1998 1130 1999 1094 2000 1146 2001 1132 2002 1112 2003 1114 2004 1132 2005 1134 2006 1148 2007 1136 2008 1116 2009 1150 2010 1126 2011 1118 2012 1152 2013 1118 2014 1138 2015 1140 2016 1154 2017 1120 2018 1122 2019 1124 2020 1156 2021 1124 2022 1142 2023 1158 2024 1160 2025 1128 2026 1144 2027 1162 2028 1130 2029 1128 2030 1146 2031 1164 2032 1132 2033 1132 2034 1166 2035 1134 2036 1168 2037 1136 2038 1148 2039 1142 2040 1170 2041 1158 2042 1152 2043 1150 2044 1118 2045 1152 2046 1138 2047 1172 2048 1174 2049 1154 2050 1140 2051 1124 2052 1158 2053 1156 2054 1176 2055 1160 2056 1144 2057 1160 2058 1162 2059 1128 2060 1178 2061 1164 2062 1146 2063 1132 2064 1164 2065 1166 2066 1180 2067 1168 2068 1148 2069 1158 2070 1170 2071 1182 2072 1152 2073 1184 2074 1150 2075 1186 2076 1152 2077 1172 2078 1188 2079 1154 2080 1174 2081 1156 2082 1158 2083 1190 2084 1192 2085 1160 2086 1176 2087 1194 2088 1162 2089 1160 2090 1178 2091 1196 2092 1164 2093 1164 2094 1198 2095 1166 2096 1200 2097 1168 2098 1180 2099 1158 2100 1182 2101 1190 2102 1170 2103 1202 2104 1182 2105 1204 2106 1184 2107 1152 2108 1186 2109 1172 2110 1206 2111 1208 2112 1188 2113 1174 2114 1210 2115 1192 2116 1176 2117 1192 2118 1194 2119 1160 2120 1212 2121 1196 2122 1178 2123 1164 2124 1196 2125 1198 2126 1214 2127 1200 2128 1180 2129 1190 2130 1182 2131 1216 2132 1182 2133 1202 2134 1218 2135 1204 2136 1220 2137 1184 2138 1222 2139 1186 2140 1206 2141 1224 2142 1188 2143 1208 2144 1226 2145 1224 2146 1208 2147 1182 2148 1218 2149 1216 2150 1202 2151 1228 2152 1218 2153 1230 2154 1220 2155 1204 2156 1222 2157 1206 2158 1232 2159 1234 2160 1224 2161 1226 2162 1218 2163 1236 2164 1216 2165 1238 2166 1218 2167 1228 2168 1230 2169 1240 2170 1220 2171 1232 2172 1242 2173 1222 2174 1244 2175 1242 2176 1232 2177 1246 2178 1234 2179 1226 2180 1238 2181 1236 2182 1218 2183 1248 2184 1238 2185 1228 2186 1250 2187 1240 2188 1230 2189 1244 2190 1252 2191 1242 2192 1254 2193 1234 2194 1246 2195 1238 2196 1256 2197 1236 2198 1258 2199 1238 2200 1248 2201 1250 2202 1260 2203 1240 2204 1250 2205 1262 2206 1260 2207 1264 2208 1252 2209 1244 2210 1266 2211 1254 2212 1246 2213 1268 2214 1256 2215 1238 2216 1270 2217 1258 2218 1248 2219 1260 2220 1262 2221 1272 2222 1264 2223 1274 2224 1252 2225 1276 2226 1254 2227 1266 2228 1278 2229 1256 2230 1268 2231 1280 2232 1258 2233 1270 2234 1282 2235 1280 2236 1270 2237 1262 2238 1284 2239 1272 2240 1286 2241 1274 2242 1264 2243 1276 2244 1266 2245 1288 2246 1280 2247 1278 2248 1268 2249 1282 2250 1290 2251 1280 2252 1272 2253 1284 2254 1292 2255 1286 2256 1294 2257 1274 2258 1276 2259 1288 2260 1296 2261 1278 2262 1280 2263 1298 2264 1280 2265 1290 2266 1298 2267 1300 2268 1290 2269 1282 2270 1284 2271 1294 2272 1292 2273 1302 2274 1294 2275 1286 2276 1296 2277 1288 2278 1304 2279 1298 2280 1290 2281 1306 2282 1290 2283 1300 2284 1308 2285 1292 2286 1294 2287 1310 2288 1312 2289 1294 2290 1302 2291 1296 2292 1304 2293 1314 2294 1314 2295 1304 2296 1316 2297 1290 2298 1308 2299 1306 2300 1300 2301 1318 2302 1308 2303 1294 2304 1312 2305 1310 2306 1312 2307 1302 2308 1320 2309 1314 2310 1316 2311 1322 2312 1306 2313 1308 2314 1324 2315 1308 2316 1318 2317 1326 2318 1310 2319 1312 2320 1328 2321 1330 2322 1312 2323 1320 2324 1330 2325 1320 2326 1332 2327 1322 2328 1316 2329 1334 2330 1308 2331 1326 2332 1324 2333 1318 2334 1336 2335 1326 2336 1312 2337 1330 2338 1328 2339 1338 2340 1330 2341 1332 2342 1322 2343 1334 2344 1340 2345 1324 2346 1326 2347 1342 2348 1326 2349 1336 2350 1344 2351 1328 2352 1330 2353 1346 2354 1330 2355 1338 2356 1346 2357 1338 2358 1332 2359 1348 2360 1340 2361 1334 2362 1350 2363 1326 2364 1344 2365 1342 2366 1336 2367 1352 2368 1344 2369 1346 2370 1338 2371 1354 2372 1356 2373 1338 2374 1348 2375 1340 2376 1350 2377 1358 2378 1342 2379 1344 2380 1360 2381 1344 2382 1352 2383 1362 2384 1352 2385 1364 2386 1362 2387 1354 2388 1338 2389 1356 2390 1356 2391 1348 2392 1366 2393 1350 2394 1368 2395 1358 2396 1344 2397 1362 2398 1360 2399 1362 2400 1364 2401 1370 2402 1354 2403 1356 2404 1372 2405 1374 2406 1356 2407 1366 2408 1358 2409 1368 2410 1376 2411 1360 2412 1362 2413 1378 2414 1362 2415 1370 2416 1378 2417 1364 2418 1380 2419 1370 2420 1372 2421 1356 2422 1374 2423 1374 2424 1366 2425 1382 2426 1368 2427 1384 2428 1376 2429 1378 2430 1370 2431 1386 2432 1370 2433 1380 2434 1388 2435 1372 2436 1374 2437 1390 2438 1392 2439 1374 2440 1382 2441 1376 2442 1384 2443 1394 2444 1384 2445 1396 2446 1394 2447 1370 2448 1388 2449 1386 2450 1380 2451 1398 2452 1388 2453 1390 2454 1374 2455 1392 2456 1392 2457 1382 2458 1400 2459 1394 2460 1396 2461 1402 2462 1386 2463 1388 2464 1404 2465 1388 2466 1398 2467 1406 2468 1390 2469 1392 2470 1408 2471 1392 2472 1400 2473 1410 2474 1400 2475 1412 2476 1410 2477 1396 2478 1414 2479 1402 2480 1404 2481 1388 2482 1406 2483 1398 2484 1416 2485 1406 2486 1408 2487 1392 2488 1418 2489 1410 2490 1412 2491 1420 2492 1402 2493 1414 2494 1422 2495 1404 2496 1406 2497 1424 2498 1406 2499 1416 2500 1426 2501 1428 2502 1408 2503 1418 2504 1428 2505 1418 2506 1420 2507 1412 2508 1430 2509 1420 2510 1414 2511 1432 2512 1422 2513 1424 2514 1406 2515 1434 2516 1426 2517 1416 2518 1436 2519 1438 2520 1428 2521 1420 2522 1420 2523 1430 2524 1440 2525 1432 2526 1442 2527 1422 2528 1424 2529 1434 2530 1444 2531 1426 2532 1436 2533 1446 2534 1446 2535 1436 2536 1448 2537 1440 2538 1438 2539 1420 2540 1430 2541 1450 2542 1440 2543 1432 2544 1452 2545 1442 2546 1434 2547 1446 2548 1444 2549 1446 2550 1448 2551 1454 2552 1456 2553 1438 2554 1440 2555 1440 2556 1450 2557 1458 2558 1452 2559 1460 2560 1442 2561 1444 2562 1446 2563 1462 2564 1446 2565 1454 2566 1462 2567 1454 2568 1448 2569 1464 2570 1458 2571 1456 2572 1440 2573 1450 2574 1466 2575 1458 2576 1468 2577 1460 2578 1452 2579 1462 2580 1454 2581 1470 2582 1454 2583 1464 2584 1472 2585 1474 2586 1456 2587 1458 2588 1476 2589 1458 2590 1466 2591 1468 2592 1478 2593 1460 2594 1480 2595 1478 2596 1468 2597 1454 2598 1472 2599 1470 2600 1464 2601 1482 2602 1472 2603 1476 2604 1474 2605 1458 2606 1476 2607 1466 2608 1484 2609 1480 2610 1486 2611 1478 2612 1470 2613 1472 2614 1488 2615 1472 2616 1482 2617 1490 2618 1492 2619 1474 2620 1476 2621 1494 2622 1476 2623 1484 2624 1494 2625 1484 2626 1496 2627 1498 2628 1486 2629 1480 2630 1472 2631 1490 2632 1488 2633 1482 2634 1500 2635 1490 2636 1494 2637 1492 2638 1476 2639 1502 2640 1494 2641 1496 2642 1498 2643 1504 2644 1486 2645 1488 2646 1490 2647 1506 2648 1490 2649 1500 2650 1508 2651 1510 2652 1492 2653 1494 2654 1502 2655 1510 2656 1494 2657 1502 2658 1496 2659 1512 2660 1514 2661 1504 2662 1498 2663 1490 2664 1508 2665 1506 2666 1500 2667 1516 2668 1508 2669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1677\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1678\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"890\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 7 4 9 5 4 12 5 13 17 18 19 21 7 3 24 17 25 9 27 5 13 5 29 31 12 13 19 18 33 25 17 19 35 7 21 31 37 12 39 24 25 41 27 9 27 29 5 45 46 47 47 50 51 55 56 57 18 59 33 62 57 63 65 35 21 67 37 31 70 62 71 73 24 39 41 75 27 27 77 29 45 56 46 47 46 50 51 50 79 81 56 55 57 56 63 59 83 33 62 63 71 85 35 65 67 65 37 87 51 79 70 71 89 91 73 39 93 75 41 75 77 27 95 56 45 98 81 99 102 98 103 99 81 55 95 63 56 105 83 59 107 71 63 109 85 65 65 67 111 113 87 79 115 89 71 117 70 89 119 73 91 93 121 75 75 123 77 103 98 99 125 102 103 107 63 95 105 127 83 115 71 107 129 85 109 65 111 109 131 87 113 133 102 125 135 89 115 117 89 137 139 119 91 141 121 93 121 123 75 144 145 127 144 127 105 121 147 123 129 109 149 109 111 151 153 131 113 125 155 133 158 159 147 137 89 135 161 117 137 139 163 119 141 158 121 165 145 144 158 147 121 129 149 167 109 151 149 169 131 153 155 171 133 165 173 145 175 159 158 177 137 135 161 137 179 181 163 139 183 158 141 167 149 185 149 151 187 189 169 153 155 191 171 193 173 165 183 175 158 175 195 159 179 137 177 197 161 179 181 199 163 167 185 201 149 187 185 203 169 189 191 189 171 193 205 173 207 175 183 209 195 175 211 179 177 197 179 213 215 199 181 201 185 217 185 187 219 221 203 189 191 223 189 225 205 193 215 227 199 207 209 175 209 229 195 213 179 211 231 197 213 201 217 233 185 219 217 221 235 203 223 221 189 237 205 225 239 227 215 241 209 207 243 229 209 245 213 211 247 231 213 233 217 249 217 219 251 253 235 221 223 255 221 257 237 225 247 259 231 239 261 227 243 209 241 243 263 229 265 213 245 233 249 267 217 251 249 253 269 235 255 253 221 271 237 257 273 259 247 275 261 239 277 243 241 279 263 243 265 245 281 267 249 283 249 251 285 287 269 253 255 289 253 291 271 257 273 265 281 273 293 259 275 295 261 297 243 277 279 299 263 267 283 301 249 285 283 287 303 269 289 287 253 305 271 291 273 281 307 309 293 273 275 311 295 313 297 277 315 299 279 301 283 317 283 285 319 321 303 287 289 323 287 325 305 291 327 299 315 273 307 309 309 329 293 311 331 295 313 315 297 301 317 333 283 319 317 321 335 303 323 321 287 337 305 325 339 327 315 309 307 341 343 329 309 311 345 331 347 315 313 333 317 349 319 351 317 353 335 321 321 323 355 337 325 357 347 339 315 359 327 339 309 341 343 343 361 329 331 345 363 333 349 365 317 351 367 353 369 335 321 355 353 371 337 357 373 339 347 375 359 339 343 341 377 361 343 379 345 381 363 365 349 383 351 385 367 387 369 353 353 355 389 371 357 391 363 381 393 373 375 339 375 395 359 343 377 379 397 361 379 365 383 399 367 385 401 387 403 369 353 389 387 405 371 391 381 407 393 409 375 373 411 395 375 379 377 413 397 379 415 383 417 399 401 385 419 387 421 403 387 389 423 405 391 425 427 397 415 393 407 429 409 411 375 411 431 395 379 413 415 399 417 433 401 419 417 421 435 403 387 423 421 405 425 437 427 415 439 407 441 429 443 411 409 445 431 411 415 413 447 417 449 433 417 419 451 421 453 435 421 423 455 437 425 457 415 447 439 459 427 439 429 441 461 443 445 411 445 463 431 433 449 465 417 451 449 435 453 467 421 455 453 437 457 469 439 447 471 459 439 473 441 475 461 477 445 443 479 463 445 465 449 481 449 451 483 453 485 467 455 487 453 469 457 489 479 491 463 439 471 473 493 459 473 461 475 495 477 479 445 465 481 497 449 483 481 467 485 499 487 485 453 469 489 501 503 491 479 471 505 473 493 473 507 495 475 509 511 479 477 497 481 513 481 483 515 485 517 499 487 519 485 501 489 521 511 503 479 503 523 491 473 505 525 527 493 507 495 509 529 497 513 531 481 515 513 499 517 533 519 517 485 501 521 535 537 503 511 539 523 503 505 541 525 527 507 543 529 509 545 531 513 547 513 515 549 517 551 533 519 553 517 535 521 555 529 545 557 537 539 503 539 559 523 525 541 561 563 527 543 531 547 565 513 549 547 533 551 567 553 551 517 535 555 569 557 545 571 537 573 539 575 559 539 541 577 561 543 579 563 565 547 581 547 549 583 567 551 585 553 587 551 555 589 569 563 579 591 557 571 593 539 573 575 575 595 559 561 577 597 565 581 599 547 583 581 567 585 601 587 585 551 569 589 603 579 605 591 593 571 607 573 609 575 595 575 611 577 613 597 599 581 615 581 583 617 601 585 619 587 621 585 589 623 603 613 625 597 591 605 627 593 607 629 575 609 631 595 611 633 599 615 635 581 617 615 601 619 637 621 619 585 603 623 639 641 625 613 605 643 627 629 607 645 631 609 647 633 611 649 635 615 651 653 615 617 637 619 655 621 657 619 623 659 639 633 649 661 641 663 625 627 643 665 667 629 645 631 647 669 635 651 671 651 615 653 637 655 673 657 675 619 639 659 677 649 679 661 681 663 641 643 683 665 685 667 645 669 647 687 689 671 651 691 651 653 673 655 693 695 675 657 659 697 677 669 687 679 661 679 699 681 683 663 665 683 701 703 667 685 689 705 671 707 651 691 673 693 709 711 675 695 697 713 677 715 679 687 717 699 679 719 683 681 701 683 721 723 703 685 725 705 689 727 707 691 709 693 729 731 711 695 697 733 713 735 703 723 715 717 679 717 737 699 719 721 683 739 701 721 741 705 725 727 743 707 709 729 745 747 711 731 733 749 713 751 735 723 753 717 715 755 737 717 757 721 719 739 721 759 761 741 725 763 743 727 745 729 765 767 747 731 769 749 733 771 739 759 773 735 751 753 755 717 755 775 737 757 759 721 777 741 761 763 761 743 779 745 765 781 747 767 769 783 749 771 759 785 787 773 751 789 755 753 791 775 755 793 759 757 795 777 761 761 763 797 799 779 765 767 801 781 803 783 769 793 785 759 805 771 785 807 773 787 789 791 755 791 809 775 811 777 795 761 797 795 813 779 799 801 815 781 803 817 783 819 785 793 805 785 821 823 807 787 825 791 789 827 809 791 811 795 829 795 797 831 833 813 799 801 835 815 837 817 803 827 839 809 821 785 819 841 805 821 823 843 807 825 827 791 811 829 845 795 831 829 847 813 833 835 849 815 837 851 817 853 839 827 855 821 819 841 821 857 859 843 823 861 827 825 845 829 863 829 831 865 867 847 833 835 869 849 871 851 837 861 853 827 853 873 839 857 821 855 875 841 857 859 877 843 845 863 879 829 865 863 881 847 867 869 867 849 871 883 851 885 853 861 887 873 853 889 857 855 875 857 891 893 877 859 879 863 895 863 865 897 899 881 867 869 901 867 903 883 871 893 905 877 885 887 853 887 907 873 891 857 889 909 875 891 879 895 911 863 897 895 899 913 881 901 899 867 915 883 903 917 905 893 919 887 885 921 907 887 923 891 889 925 909 891 911 895 927 895 897 929 931 913 899 901 933 899 935 915 903 925 937 909 917 939 905 921 887 919 921 941 907 943 891 923 911 927 945 895 929 927 931 947 913 933 931 899 949 915 935 951 937 925 953 939 917 955 921 919 957 941 921 943 923 959 945 927 961 927 929 963 965 947 931 933 967 931 969 949 935 951 943 959 951 971 937 953 973 939 975 921 955 977 941 957 945 961 979 927 963 961 965 981 947 967 965 931 983 949 969 951 959 985 987 971 951 953 989 973 991 975 955 993 977 957 979 961 995 961 963 997 999 981 965 967 1001 965 1003 983 969 1005 977 993 951 985 987 987 1007 971 989 1009 973 991 993 975 979 995 1011 961 997 995 999 1013 981 1001 999 965 1015 983 1003 1017 1005 993 987 985 1019 1021 1007 987 989 1023 1009 1025 993 991 1011 995 1027 997 1029 995 1031 1013 999 999 1001 1033 1015 1003 1035 1025 1017 993 1037 1005 1017 987 1019 1021 1021 1039 1007 1009 1023 1041 1011 1027 1043 995 1029 1045 1031 1047 1013 999 1033 1031 1049 1015 1035 1051 1017 1025 1053 1037 1017 1021 1019 1055 1039 1021 1057 1023 1059 1041 1043 1027 1061 1029 1063 1045 1065 1047 1031 1031 1033 1067 1049 1035 1069 1041 1059 1071 1051 1053 1017 1053 1073 1037 1021 1055 1057 1075 1039 1057 1043 1061 1077 1045 1063 1079 1065 1081 1047 1031 1067 1065 1083 1049 1069 1059 1085 1071 1087 1053 1051 1089 1073 1053 1057 1055 1091 1075 1057 1093 1061 1095 1077 1079 1063 1097 1065 1099 1081 1065 1067 1101 1083 1069 1103 1105 1075 1093 1071 1085 1107 1087 1089 1053 1089 1109 1073 1057 1091 1093 1077 1095 1111 1079 1097 1095 1099 1113 1081 1065 1101 1115 1083 1103 1117 1105 1093 1119 1085 1121 1107 1123 1089 1087 1125 1109 1089 1093 1091 1127 1095 1129 1111 1095 1097 1131 1099 1133 1113 1101 1135 1115 1117 1103 1137 1093 1127 1119 1139 1105 1119 1107 1121 1141 1123 1125 1089 1125 1143 1109 1111 1129 1145 1095 1131 1129 1113 1133 1147 1135 1133 1115 1117 1137 1149 1119 1127 1151 1139 1119 1153 1121 1155 1141 1157 1125 1123 1159 1143 1125 1145 1129 1161 1129 1131 1163 1133 1165 1147 1135 1167 1133 1149 1137 1169 1159 1171 1143 1119 1151 1153 1173 1139 1153 1141 1155 1175 1157 1159 1125 1145 1161 1177 1129 1163 1161 1147 1165 1179 1167 1165 1133 1149 1169 1181 1183 1171 1159 1151 1185 1153 1173 1153 1187 1175 1155 1189 1191 1159 1157 1177 1161 1193 1161 1163 1195 1165 1197 1179 1167 1199 1165 1181 1169 1201 1191 1183 1159 1183 1203 1171 1153 1185 1205 1207 1173 1187 1175 1189 1209 1177 1193 1211 1161 1195 1193 1179 1197 1213 1199 1197 1165 1181 1201 1215 1217 1183 1191 1219 1203 1183 1185 1221 1205 1207 1187 1223 1209 1189 1225 1209 1225 1227 1217 1219 1183 1219 1229 1203 1205 1221 1231 1233 1207 1223 1227 1225 1235 1217 1237 1219 1229 1219 1239 1221 1241 1231 1223 1243 1233 1233 1243 1245 1227 1235 1247 1219 1237 1239 1229 1239 1249 1231 1241 1251 1243 1253 1245 1247 1235 1255 1237 1257 1239 1249 1239 1259 1241 1261 1251 1261 1263 1251 1245 1253 1265 1247 1255 1267 1239 1257 1269 1249 1259 1271 1273 1263 1261 1253 1275 1265 1267 1255 1277 1269 1257 1279 1271 1259 1281 1271 1281 1283 1273 1285 1263 1265 1275 1287 1289 1267 1277 1269 1279 1281 1281 1291 1283 1293 1285 1273 1275 1295 1287 1297 1289 1277 1299 1281 1279 1299 1291 1281 1283 1291 1301 1293 1295 1285 1287 1295 1303 1305 1289 1297 1307 1291 1299 1309 1301 1291 1311 1295 1293 1303 1295 1313 1315 1305 1297 1317 1305 1315 1307 1309 1291 1309 1319 1301 1311 1313 1295 1321 1303 1313 1323 1317 1315 1325 1309 1307 1327 1319 1309 1329 1313 1311 1321 1313 1331 1333 1321 1331 1335 1317 1323 1325 1327 1309 1327 1337 1319 1329 1331 1313 1333 1331 1339 1341 1335 1323 1343 1327 1325 1345 1337 1327 1347 1331 1329 1347 1339 1331 1349 1333 1339 1351 1335 1341 1343 1345 1327 1345 1353 1337 1355 1339 1347 1349 1339 1357 1359 1351 1341 1361 1345 1343 1363 1353 1345 1363 1365 1353 1357 1339 1355 1367 1349 1357 1359 1369 1351 1361 1363 1345 1371 1365 1363 1373 1357 1355 1367 1357 1375 1377 1369 1359 1379 1363 1361 1379 1371 1363 1371 1381 1365 1375 1357 1373 1383 1367 1375 1377 1385 1369 1387 1371 1379 1389 1381 1371 1391 1375 1373 1383 1375 1393 1395 1385 1377 1395 1397 1385 1387 1389 1371 1389 1399 1381 1393 1375 1391 1401 1383 1393 1403 1397 1395 1405 1389 1387 1407 1399 1389 1409 1393 1391 1411 1401 1393 1411 1413 1401 1403 1415 1397 1407 1389 1405 1407 1417 1399 1419 1393 1409 1421 1413 1411 1423 1415 1403 1425 1407 1405 1427 1417 1407 1419 1409 1429 1421 1419 1429 1421 1431 1413 1423 1433 1415 1435 1407 1425 1437 1417 1427 1421 1429 1439 1441 1431 1421 1423 1443 1433 1445 1435 1425 1447 1437 1427 1449 1437 1447 1421 1439 1441 1441 1451 1431 1443 1453 1433 1445 1447 1435 1455 1449 1447 1441 1439 1457 1459 1451 1441 1443 1461 1453 1463 1447 1445 1463 1455 1447 1465 1449 1455 1441 1457 1459 1459 1467 1451 1453 1461 1469 1471 1455 1463 1473 1465 1455 1459 1457 1475 1467 1459 1477 1461 1479 1469 1469 1479 1481 1471 1473 1455 1473 1483 1465 1459 1475 1477 1485 1467 1477 1479 1487 1481 1489 1473 1471 1491 1483 1473 1477 1475 1493 1485 1477 1495 1497 1485 1495 1481 1487 1499 1489 1491 1473 1491 1501 1483 1477 1493 1495 1497 1495 1503 1487 1505 1499 1507 1491 1489 1509 1501 1491 1495 1493 1511 1495 1511 1503 1513 1497 1503 1499 1505 1515 1507 1509 1491 1509 1517 1501</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1677\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1682\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1685\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1683\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1684\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1683\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1686\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"30\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1686\">-0.5659469366073608 -1.151860475540161 -0.07378179579973221 -0.5388372540473938 -1.17527174949646 -0.07721765339374542 -0.5581417679786682 -1.150959491729736 -0.0635225921869278 -0.5581417679786682 -1.150959491729736 -0.0635225921869278 -0.5388372540473938 -1.17527174949646 -0.07721765339374542 -0.5659469366073608 -1.151860475540161 -0.07378179579973221 -0.5354199409484863 -1.170861482620239 -0.06640531122684479 -0.5354199409484863 -1.170861482620239 -0.06640531122684479 -0.4937689304351807 -1.175581336021423 -0.08266642689704895 -0.4937689304351807 -1.175581336021423 -0.08266642689704895</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1684\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1687\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"30\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1687\">0.5409137891857291 0.6957278621630106 -0.4726256599877156 0.2763324570536528 0.8551586518832471 -0.4385704655901018 0.5430258197750222 0.6958964898748292 -0.4699479060891291 -0.5430258197750222 -0.6958964898748292 0.4699479060891291 -0.2763324570536528 -0.8551586518832471 0.4385704655901018 -0.5409137891857291 -0.6957278621630106 0.4726256599877156 0.2920574673906872 0.8497416742821521 -0.4389094698562592 -0.2920574673906872 -0.8497416742821521 0.4389094698562592 -0.03799684812346563 0.9294092924482325 -0.3670893714663478 0.03799684812346563 -0.9294092924482325 0.3670893714663478</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 1 8 6 7 9 4</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1685\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1688\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1691\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1689\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1690\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1689\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1692\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1692\">-0.5364519953727722 -1.171381711959839 -0.1061717569828033 -0.5611231327056885 -1.15022337436676 -0.1030475050210953 -0.5348328948020935 -1.169529438018799 -0.09166005253791809 -0.5348328948020935 -1.169529438018799 -0.09166005253791809 -0.5611231327056885 -1.15022337436676 -0.1030475050210953 -0.5364519953727722 -1.171381711959839 -0.1061717569828033</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1690\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1693\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1693\">-0.6295684446900218 -0.7587649004087633 0.1670909912540662 -0.6295684446900218 -0.7587649004087633 0.1670909912540662 -0.6295684446900218 -0.7587649004087633 0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1691\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1694\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1697\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1695\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1696\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1695\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1699\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4554\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1699\">-0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4670745432376862 -1.158051013946533 -0.2156426906585693 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4670745432376862 -1.158051013946533 -0.2156426906585693 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4780085980892181 -1.166073203086853 -0.2118184715509415 -0.4780085980892181 -1.166073203086853 -0.2118184715509415 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4566622674465179 -1.161874890327454 -0.2208317667245865 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4566622674465179 -1.161874890327454 -0.2208317667245865 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4701715409755707 -1.171931743621826 -0.2167111337184906 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4701715409755707 -1.171931743621826 -0.2167111337184906 -0.4639952778816223 -1.126953125 -0.2235644310712814 -0.4639952778816223 -1.126953125 -0.2235644310712814 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4873996675014496 -1.178971529006958 -0.2120722085237503 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4873996675014496 -1.178971529006958 -0.2120722085237503 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4919966459274292 -1.171796083450317 -0.2075648158788681 -0.4919966459274292 -1.171796083450317 -0.2075648158788681 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.5069580674171448 -1.182219982147217 -0.2071293890476227 -0.5069580674171448 -1.182219982147217 -0.2071293890476227 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4727209806442261 -1.117928266525269 -0.2250491082668304 -0.4727209806442261 -1.117928266525269 -0.2250491082668304 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5078603625297546 -1.174407243728638 -0.2030627429485321 -0.5078603625297546 -1.174407243728638 -0.2030627429485321 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5269226431846619 -1.181341052055359 -0.2021083533763886 -0.5269226431846619 -1.181341052055359 -0.2021083533763886 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.4852666556835175 -1.111176490783691 -0.2260912507772446 -0.4852666556835175 -1.111176490783691 -0.2260912507772446 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5240494608879089 -1.173695206642151 -0.1985002011060715 -0.5240494608879089 -1.173695206642151 -0.1985002011060715 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.5389738082885742 -1.169721484184265 -0.1940673291683197 -0.5389738082885742 -1.169721484184265 -0.1940673291683197 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5453409552574158 -1.176581025123596 -0.1972052454948425 -0.5453409552574158 -1.176581025123596 -0.1972052454948425 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5003835558891296 -1.10732901096344 -0.2268392145633698 -0.5003835558891296 -1.10732901096344 -0.2268392145633698 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4978899359703064 -1.099338173866272 -0.2309906035661697 -0.4978899359703064 -1.099338173866272 -0.2309906035661697 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5511723160743713 -1.16288423538208 -0.1899425983428955 -0.5511723160743713 -1.16288423538208 -0.1899425983428955 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.5604198575019836 -1.168011784553528 -0.1927651613950729 -0.5604198575019836 -1.168011784553528 -0.1927651613950729 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5166073441505432 -1.10676920413971 -0.2274772375822067 -0.5166073441505432 -1.10676920413971 -0.2274772375822067 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.5178954601287842 -1.09870171546936 -0.2311694622039795 -0.5178954601287842 -1.09870171546936 -0.2311694622039795 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5594555735588074 -1.153860569000244 -0.1862775683403015 -0.5594555735588074 -1.153860569000244 -0.1862775683403015 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.5323457717895508 -1.109543561935425 -0.2281976342201233 -0.5323457717895508 -1.109543561935425 -0.2281976342201233 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5372952222824097 -1.102163672447205 -0.2314521372318268 -0.5372952222824097 -1.102163672447205 -0.2314521372318268 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5750964283943176 -1.14414381980896 -0.1856220960617065 -0.5750964283943176 -1.14414381980896 -0.1856220960617065 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5460524559020996 -1.115358591079712 -0.2291837930679321 -0.5460524559020996 -1.115358591079712 -0.2291837930679321 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5541844964027405 -1.109387874603272 -0.2320649176836014 -0.5541844964027405 -1.109387874603272 -0.2320649176836014 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5732637643814087 -1.131062269210815 -0.1831503957509995 -0.5732637643814087 -1.131062269210815 -0.1831503957509995 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5614937543869019 -1.132966756820679 -0.1806835681200028 -0.5614937543869019 -1.132966756820679 -0.1806835681200028 -0.5563911199569702 -1.12365186214447 -0.2305930256843567 -0.5563911199569702 -1.12365186214447 -0.2305930256843567 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.566897451877594 -1.119650483131409 -0.2331991493701935 -0.566897451877594 -1.119650483131409 -0.2331991493701935 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.555044412612915 -1.123155951499939 -0.1787916719913483 -0.555044412612915 -1.123155951499939 -0.1787916719913483 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5653523802757263 -1.118939995765686 -0.1814211159944534 -0.5653523802757263 -1.118939995765686 -0.1814211159944534 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5742090940475464 -1.131942391395569 -0.235003262758255 -0.5742090940475464 -1.131942391395569 -0.235003262758255 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.5443065166473389 -1.115089893341065 -0.1774336248636246 -0.5443065166473389 -1.115089893341065 -0.1774336248636246 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5519604086875916 -1.108938336372376 -0.1803582608699799 -0.5519604086875916 -1.108938336372376 -0.1803582608699799 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.575387716293335 -1.145042896270752 -0.2375518679618835 -0.575387716293335 -1.145042896270752 -0.2375518679618835 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5303224325180054 -1.109560012817383 -0.1764832884073257 -0.5303224325180054 -1.109560012817383 -0.1764832884073257 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5348636507987976 -1.10209047794342 -0.1797855794429779 -0.5348636507987976 -1.10209047794342 -0.1797855794429779 -0.55926513671875 -1.15441358089447 -0.2382635623216629 -0.55926513671875 -1.15441358089447 -0.2382635623216629 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5702131390571594 -1.157662510871887 -0.2408456802368164 -0.5702131390571594 -1.157662510871887 -0.2408456802368164 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5153597593307495 -1.099033117294312 -0.1795200258493424 -0.5153597593307495 -1.099033117294312 -0.1795200258493424 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5144603252410889 -1.107124924659729 -0.175779864192009 -0.5144603252410889 -1.107124924659729 -0.175779864192009 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.5507266521453857 -1.163246393203735 -0.2419756203889847 -0.5507266521453857 -1.163246393203735 -0.2419756203889847 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5595179796218872 -1.168561935424805 -0.2448366731405258 -0.5595179796218872 -1.168561935424805 -0.2448366731405258 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4953970909118652 -1.100103139877319 -0.179336816072464 -0.4953970909118652 -1.100103139877319 -0.179336816072464 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4982820451259613 -1.108041167259216 -0.1751401573419571 -0.4982820451259613 -1.108041167259216 -0.1751401573419571 -0.537988007068634 -1.169810295104981 -0.246146023273468 -0.537988007068634 -1.169810295104981 -0.246146023273468 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.5440220236778259 -1.176667809486389 -0.2493667304515839 -0.5440220236778259 -1.176667809486389 -0.2493667304515839 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.4833570420742035 -1.112205982208252 -0.1743675768375397 -0.4833570420742035 -1.112205982208252 -0.1743675768375397 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.5228596329689026 -1.173466086387634 -0.2506005465984345 -0.5228596329689026 -1.173466086387634 -0.2506005465984345 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5253502726554871 -1.18116819858551 -0.2542564868927002 -0.5253502726554871 -1.18116819858551 -0.2542564868927002 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.4711625874042511 -1.119231224060059 -0.1732877790927887 -0.4711625874042511 -1.119231224060059 -0.1732877790927887 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.506633460521698 -1.173833608627319 -0.2551662623882294 -0.506633460521698 -1.173833608627319 -0.2551662623882294 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5053356289863586 -1.181609272956848 -0.2592801749706268 -0.5053356289863586 -1.181609272956848 -0.2592801749706268 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4628840982913971 -1.12843930721283 -0.1717492789030075 -0.4628840982913971 -1.12843930721283 -0.1717492789030075 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4904350936412811 -1.170987844467163 -0.2597062885761261 -0.4904350936412811 -1.170987844467163 -0.2597062885761261 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4854094684123993 -1.178057670593262 -0.2642672657966614 -0.4854094684123993 -1.178057670593262 -0.2642672657966614 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4763774275779724 -1.164982080459595 -0.2639687359333038 -0.4763774275779724 -1.164982080459595 -0.2639687359333038 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4681350886821747 -1.170600295066834 -0.2689074873924255 -0.4681350886821747 -1.170600295066834 -0.2689074873924255 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4661877453327179 -1.156416177749634 -0.2677432894706726 -0.4661877453327179 -1.156416177749634 -0.2677432894706726 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.4683403670787811 -1.160146474838257 -0.1634988784790039 -0.4683403670787811 -1.160146474838257 -0.1634988784790039 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4581113755702972 -1.164169549942017 -0.1686679422855377 -0.4581113755702972 -1.164169549942017 -0.1686679422855377 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4792343080043793 -1.168325185775757 -0.1596363484859467 -0.4792343080043793 -1.168325185775757 -0.1596363484859467 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.4715106785297394 -1.174239277839661 -0.1645141541957855 -0.4715106785297394 -1.174239277839661 -0.1645141541957855 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4933280944824219 -1.17392373085022 -0.1553713232278824 -0.4933280944824219 -1.17392373085022 -0.1553713232278824 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.4888685941696167 -1.181017160415649 -0.1599304676055908 -0.4888685941696167 -1.181017160415649 -0.1599304676055908 -0.4638693332672119 -1.125065088272095 -0.2756152749061585 -0.4638693332672119 -1.125065088272095 -0.2756152749061585 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.5084754824638367 -1.184240102767944 -0.1549115777015686 -0.5084754824638367 -1.184240102767944 -0.1549115777015686 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.509232759475708 -1.176416993141174 -0.1508626490831375 -0.509232759475708 -1.176416993141174 -0.1508626490831375 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.4727680087089539 -1.116126298904419 -0.2770816385746002 -0.4727680087089539 -1.116126298904419 -0.2770816385746002 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.5284159779548645 -1.183200836181641 -0.1498926430940628 -0.5284159779548645 -1.183200836181641 -0.1498926430940628 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5254004597663879 -1.175574421882629 -0.1463013589382172 -0.5254004597663879 -1.175574421882629 -0.1463013589382172 -0.485431581735611 -1.109466314315796 -0.278106302022934 -0.485431581735611 -1.109466314315796 -0.278106302022934 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.5402413010597229 -1.17147707939148 -0.1418762654066086 -0.5402413010597229 -1.17147707939148 -0.1418762654066086 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5467411875724793 -1.178147196769714 -0.1450409889221191 -0.5467411875724793 -1.178147196769714 -0.1450409889221191 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.5006225109100342 -1.105741024017334 -0.2788476049900055 -0.5006225109100342 -1.105741024017334 -0.2788476049900055 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4982722103595734 -1.097743153572083 -0.2829819023609161 -0.4982722103595734 -1.097743153572083 -0.2829819023609161 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.5523137450218201 -1.164548993110657 -0.137769028544426 -0.5523137450218201 -1.164548993110657 -0.137769028544426 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5616535544395447 -1.169592380523682 -0.1405776739120483 -0.5616535544395447 -1.169592380523682 -0.1405776739120483 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5168607831001282 -1.10530686378479 -0.2794858813285828 -0.5168607831001282 -1.10530686378479 -0.2794858813285828 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5182973146438599 -1.097256898880005 -0.2831613123416901 -0.5182973146438599 -1.097256898880005 -0.2831613123416901 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5604264736175537 -1.155444264411926 -0.134123295545578 -0.5604264736175537 -1.155444264411926 -0.134123295545578 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.5325407385826111 -1.108209729194641 -0.2802126407623291 -0.5325407385826111 -1.108209729194641 -0.2802126407623291 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5376310348510742 -1.100880861282349 -0.283452033996582 -0.5376310348510742 -1.100880861282349 -0.283452033996582 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5758856534957886 -1.145607948303223 -0.1334896087646484 -0.5758856534957886 -1.145607948303223 -0.1334896087646484 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5461440086364746 -1.114132165908814 -0.2812126278877258 -0.5461440086364746 -1.114132165908814 -0.2812126278877258 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5543799996376038 -1.108233690261841 -0.284079521894455 -0.5543799996376038 -1.108233690261841 -0.284079521894455 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5738096833229065 -1.132545471191406 -0.1310487687587738 -0.5738096833229065 -1.132545471191406 -0.1310487687587738 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.5620707869529724 -1.134551882743835 -0.1285762786865234 -0.5620707869529724 -1.134551882743835 -0.1285762786865234 -0.5562236309051514 -1.122508764266968 -0.2826361358165741 -0.5562236309051514 -1.122508764266968 -0.2826361358165741 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5669103860855103 -1.118594884872437 -0.2852396965026856 -0.5669103860855103 -1.118594884872437 -0.2852396965026856 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.555444061756134 -1.124776363372803 -0.1267072409391403 -0.555444061756134 -1.124776363372803 -0.1267072409391403 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5656728148460388 -1.120481729507446 -0.1293461471796036 -0.5656728148460388 -1.120481729507446 -0.1293461471796036 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5739870071411133 -1.130938291549683 -0.2870706021785736 -0.5739870071411133 -1.130938291549683 -0.2870706021785736 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5445551872253418 -1.116797208786011 -0.1253669559955597 -0.5445551872253418 -1.116797208786011 -0.1253669559955597 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5522736310958862 -1.110593795776367 -0.1282949596643448 -0.5522736310958862 -1.110593795776367 -0.1282949596643448 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.57492595911026 -1.144049525260925 -0.2896494567394257 -0.57492595911026 -1.144049525260925 -0.2896494567394257 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5304718613624573 -1.111389398574829 -0.1244296282529831 -0.5304718613624573 -1.111389398574829 -0.1244296282529831 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5349233746528626 -1.103869080543518 -0.1277434676885605 -0.5349233746528626 -1.103869080543518 -0.1277434676885605 -0.5586347579956055 -1.153280735015869 -0.2903818190097809 -0.5586347579956055 -1.153280735015869 -0.2903818190097809 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5153201818466187 -1.100982189178467 -0.1274901926517487 -0.5153201818466187 -1.100982189178467 -0.1274901926517487 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.514570415019989 -1.10908055305481 -0.1237329840660095 -0.514570415019989 -1.10908055305481 -0.1237329840660095 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5497334003448486 -1.162050008773804 -0.294120192527771 -0.5497334003448486 -1.162050008773804 -0.294120192527771 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5586177706718445 -1.167435169219971 -0.2969862818717957 -0.5586177706718445 -1.167435169219971 -0.2969862818717957 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4953792691230774 -1.102204203605652 -0.1273037791252136 -0.4953792691230774 -1.102204203605652 -0.1273037791252136 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4984057247638702 -1.110114693641663 -0.1230899542570114 -0.4984057247638702 -1.110114693641663 -0.1230899542570114 -0.5370596647262573 -1.168520212173462 -0.2982980012893677 -0.5370596647262573 -1.168520212173462 -0.2982980012893677 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5431241989135742 -1.17541229724884 -0.301532506942749 -0.5431241989135742 -1.17541229724884 -0.301532506942749 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.4835685193538666 -1.114396214485169 -0.1223111301660538 -0.4835685193538666 -1.114396214485169 -0.1223111301660538 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.5218650698661804 -1.17204761505127 -0.3027612566947937 -0.5218650698661804 -1.17204761505127 -0.3027612566947937 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5242103338241577 -1.179760098457336 -0.306433379650116 -0.5242103338241577 -1.179760098457336 -0.306433379650116 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.4717373251914978 -1.121699452400208 -0.1211463361978531 -0.4717373251914978 -1.121699452400208 -0.1211463361978531 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.4644741714000702 -1.131386756896973 -0.1194473057985306 -0.4644741714000702 -1.131386756896973 -0.1194473057985306 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4642059803009033 -1.152724027633667 -0.1144214868545532 -0.4642059803009033 -1.152724027633667 -0.1144214868545532 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4714657664299011 -1.162484645843506 -0.1110089421272278 -0.4714657664299011 -1.162484645843506 -0.1110089421272278 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4615163803100586 -1.166784763336182 -0.1161440908908844 -0.4615163803100586 -1.166784763336182 -0.1161440908908844 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4828593134880066 -1.170353889465332 -0.1070819646120071 -0.4828593134880066 -1.170353889465332 -0.1070819646120071 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4755431711673737 -1.176489114761353 -0.1119127124547958 -0.4755431711673737 -1.176489114761353 -0.1119127124547958 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4972856640815735 -1.175560474395752 -0.1027733832597733 -0.4972856640815735 -1.175560474395752 -0.1027733832597733 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4933141171932221 -1.182911038398743 -0.1072084903717041 -0.4933141171932221 -1.182911038398743 -0.1072084903717041 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.5130786299705505 -1.185441017150879 -0.102233350276947 -0.5130786299705505 -1.185441017150879 -0.102233350276947 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.5133234262466431 -1.177604675292969 -0.09824811667203903 -0.5133234262466431 -1.177604675292969 -0.09824811667203903 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5328704714775085 -1.183813214302063 -0.09727362543344498 -0.5328704714775085 -1.183813214302063 -0.09727362543344498 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5293971300125122 -1.176306962966919 -0.09369296580553055 -0.5293971300125122 -1.176306962966919 -0.09369296580553055 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5439476370811462 -1.171802759170532 -0.08930191397666931 -0.5439476370811462 -1.171802759170532 -0.08930191397666931 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5508751273155212 -1.178285956382752 -0.0924120768904686 -0.5508751273155212 -1.178285956382752 -0.0924120768904686 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5555424094200134 -1.164524674415588 -0.08524921536445618 -0.5555424094200134 -1.164524674415588 -0.08524921536445618 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5652047991752625 -1.169313788414002 -0.08801811188459396 -0.5652047991752625 -1.169313788414002 -0.08801811188459396 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.5630452036857605 -1.155208110809326 -0.08167614042758942 -0.5630452036857605 -1.155208110809326 -0.08167614042758942 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5778428316116333 -1.144819259643555 -0.08111421018838882 -0.5778428316116333 -1.144819259643555 -0.08111421018838882 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.574921190738678 -1.131919503211975 -0.0787806510925293 -0.574921190738678 -1.131919503211975 -0.0787806510925293 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5631065368652344 -1.134244561195374 -0.076307512819767 -0.5631065368652344 -1.134244561195374 -0.076307512819767 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5560707449913025 -1.124674439430237 -0.07450312376022339 -0.5560707449913025 -1.124674439430237 -0.07450312376022339 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5660110712051392 -1.12008547782898 -0.07717347890138626 -0.5660110712051392 -1.12008547782898 -0.07717347890138626 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5446727871894836 -1.116996884346008 -0.07322388887405396 -0.5446727871894836 -1.116996884346008 -0.07322388887405396 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5519850254058838 -1.110580444335938 -0.0762002095580101 -0.5519850254058838 -1.110580444335938 -0.0762002095580101 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.530258059501648 -1.111981153488159 -0.07233035564422607 -0.530258059501648 -1.111981153488159 -0.07233035564422607 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.534221887588501 -1.104349851608276 -0.07570070773363113 -0.534221887588501 -1.104349851608276 -0.07570070773363113 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5144584774971008 -1.102004647254944 -0.07547114044427872 -0.5144584774971008 -1.102004647254944 -0.07547114044427872 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.514224648475647 -1.110127329826355 -0.07165177166461945 -0.514224648475647 -1.110127329826355 -0.07165177166461945 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5143094658851624 -1.106828689575195 -0.07877529412508011</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1696\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1700\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4554\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1700\">-0.535310170416145 0.6828597286651628 0.4971374180409053 -0.711679610756167 0.701944011990737 0.02804880860747333 -0.7372431242803319 0.3797272314562333 0.5588200116244577 0.7372431242803319 -0.3797272314562333 -0.5588200116244577 0.711679610756167 -0.701944011990737 -0.02804880860747333 0.535310170416145 -0.6828597286651628 -0.4971374180409053 -0.729385409062589 0.4062554931621462 0.5504120268691277 0.729385409062589 -0.4062554931621462 -0.5504120268691277 -0.855130798811114 0.1136943568170223 -0.5057913701840213 -0.8413435891190259 0.1893640378826544 -0.5062432480587691 0.8413435891190259 -0.1893640378826544 0.5062432480587691 0.855130798811114 -0.1136943568170223 0.5057913701840213 -0.3217641206506636 0.8321982925179576 0.4515682147717007 0.3217641206506636 -0.8321982925179576 -0.4515682147717007 0.379993968652636 -0.01452187984957496 0.9248749638698487 0.3792356722588351 -0.05515184004802218 0.9236550110434667 0.3750217319175143 0.09079787801754481 0.9225586409205104 -0.3750217319175143 -0.09079787801754481 -0.9225586409205104 -0.3792356722588351 0.05515184004802218 -0.9236550110434667 -0.379993968652636 0.01452187984957496 -0.9248749638698487 -0.81891872323098 -0.02916354235750145 0.5731680491259991 0.81891872323098 0.02916354235750145 -0.5731680491259991 -0.8259819640337442 -0.2402927006267335 -0.5099149077213467 0.8259819640337442 0.2402927006267335 0.5099149077213467 -0.7524074740264602 0.4659136678491019 -0.465625866056127 0.7524074740264602 -0.4659136678491019 0.465625866056127 0.3666695855979613 -0.1470453642187064 0.9186572134693155 0.3567388083380884 -0.1797184269164603 0.9167544434864733 -0.3567388083380884 0.1797184269164603 -0.9167544434864733 -0.3666695855979613 0.1470453642187064 -0.9186572134693155 -0.4686122420705575 0.8829390577970164 0.02865635702809793 0.4686122420705575 -0.8829390577970164 -0.02865635702809793 0.362818980110611 0.1115732442145029 0.9251560943143308 -0.362818980110611 -0.1115732442145029 -0.9251560943143308 -0.8229435868585475 0.02579388750379018 0.567537248306955 0.8229435868585475 -0.02579388750379018 -0.567537248306955 -0.8318735357222543 -0.2056588359136707 -0.5154520964896634 0.8318735357222543 0.2056588359136707 0.5154520964896634 0.3131079370299137 -0.1234465688639044 -0.9416604294567128 0.2545174903010224 -0.3210223259692432 -0.9122310635799277 0.2994850388200162 -0.1347916098286615 -0.9445315947297746 -0.2994850388200162 0.1347916098286615 0.9445315947297746 -0.2545174903010224 0.3210223259692432 0.9122310635799277 -0.3131079370299137 0.1234465688639044 0.9416604294567128 0.1523944153111659 -0.4664167061013169 -0.8713388539779263 0.2471519929915358 -0.2985266892247367 -0.9218447310587772 -0.2471519929915358 0.2985266892247367 0.9218447310587772 -0.1523944153111659 0.4664167061013169 0.8713388539779263 0.3282817590528282 -0.2624482480758333 0.9073874606556488 -0.3282817590528282 0.2624482480758333 -0.9073874606556488 -0.1228561251570979 0.8950510040663684 0.4287074441051489 0.1228561251570979 -0.8950510040663684 -0.4287074441051489 0.5589975536955726 -0.6498570818411518 -0.5149830173348129 0.7112410577589947 -0.7025013268705942 -0.02506079613501234 0.9360046751277166 -0.3517618957081072 -0.01260225642083865 -0.9360046751277166 0.3517618957081072 0.01260225642083865 -0.7112410577589947 0.7025013268705942 0.02506079613501234 -0.5589975536955726 0.6498570818411518 0.5149830173348129 0.3329806907099038 0.2202433885859086 0.9168515198212587 -0.3329806907099038 -0.2202433885859086 -0.9168515198212587 0.328949659917621 -0.8033618405725865 -0.4963888338308061 0.4661076996959741 -0.8841508505218183 -0.03195130366155524 -0.4661076996959741 0.8841508505218183 0.03195130366155524 -0.328949659917621 0.8033618405725865 0.4963888338308061 -0.8306623845255892 -0.5565875870647995 0.0145003744657297 0.8306623845255892 0.5565875870647995 -0.0145003744657297 -0.6945545646332318 -0.5290651887906086 -0.4875284430236858 0.6945545646332318 0.5290651887906086 0.4875284430236858 0.3139158622216069 0.05128541750858253 -0.948064679964735 -0.3139158622216069 -0.05128541750858253 0.948064679964735 -0.5643062696415467 0.7140844036848697 -0.4142968723720538 0.5643062696415467 -0.7140844036848697 0.4142968723720538 0.1306461037378148 -0.8661971870146993 -0.4823214994025772 0.2464364274691459 -0.9684731079097251 -0.03645444378840799 -0.2464364274691459 0.9684731079097251 0.03645444378840799 -0.1306461037378148 0.8661971870146993 0.4823214994025772 0.3138505278316415 -0.2841790770731234 0.9059470725896009 -0.3138505278316415 0.2841790770731234 -0.9059470725896009 -0.2540861679460684 0.9666121345141174 0.03318434372628529 0.2540861679460684 -0.9666121345141174 -0.03318434372628529 0.9597608241675195 -0.2806503197590552 -0.009724114994385009 -0.9597608241675195 0.2806503197590552 0.009724114994385009 0.3220258347742228 0.214498438267411 0.9221115885394817 -0.3220258347742228 -0.214498438267411 -0.9221115885394817 -0.7616207824844075 -0.3651471048914312 0.5353516372229054 0.7616207824844075 0.3651471048914312 -0.5353516372229054 0.3167748269163652 0.09263797783393953 -0.9439660555840689 -0.3167748269163652 -0.09263797783393953 0.9439660555840689 0.9848243133712018 0.1734566137781367 0.005820217312395853 0.847433960872483 0.5305646473937475 0.01889012694302194 0.8283273280770336 0.5598559803948217 0.02085950087886269 -0.8283273280770336 -0.5598559803948217 -0.02085950087886269 -0.847433960872483 -0.5305646473937475 -0.01889012694302194 -0.9848243133712018 -0.1734566137781367 -0.005820217312395853 0.99311480872505 0.117099537706675 0.00326725571241982 -0.99311480872505 -0.117099537706675 -0.00326725571241982 0.03937472706342653 -0.5380336305709434 -0.8420032323235643 -0.03937472706342653 0.5380336305709434 0.8420032323235643 -0.06288384653166469 -0.8760148156605907 -0.478166984000907 0.06288384653166469 0.8760148156605907 0.478166984000907 0.257077063885439 -0.3475015842572659 0.9017505376559153 -0.257077063885439 0.3475015842572659 -0.9017505376559153 0.07303455185892338 0.9060032613570995 0.4169221086067103 -0.07303455185892338 -0.9060032613570995 -0.4169221086067103 0.2700156883626287 0.3209112866746965 0.9078036539488298 -0.2700156883626287 -0.3209112866746965 -0.9078036539488298 -0.07035077711726034 -0.5595903559214819 -0.8257780583901869 0.07035077711726034 0.5595903559214819 0.8257780583901869 -0.5872649289636108 -0.8093931705807556 -0.00161202561925844 0.5872649289636108 0.8093931705807556 0.00161202561925844 -0.509882051398594 -0.7296644481425849 -0.4556424988720199 0.509882051398594 0.7296644481425849 0.4556424988720199 0.2828710356509407 0.2426484055828317 -0.9279578268746236 -0.2828710356509407 -0.2426484055828317 0.9279578268746236 0.6057325087479234 0.7951282343225092 0.02931243471831879 -0.6057325087479234 -0.7951282343225092 -0.02931243471831879 -0.371145693979263 0.8484694174731969 -0.3772936806432688 0.371145693979263 -0.8484694174731969 0.3772936806432688 -0.1787530742583322 -0.5392198561948459 -0.8229758715347643 0.1787530742583322 0.5392198561948459 0.8229758715347643 0.03438135610527487 -0.9987520891903908 -0.03622411752123286 -0.03438135610527487 0.9987520891903908 0.03622411752123286 0.2512244040277587 -0.3569957493692131 0.8996890205805623 -0.2512244040277587 0.3569957493692131 -0.8996890205805623 -0.04872205898106887 0.9982765115858446 0.0327134129164507 0.04872205898106887 -0.9982765115858446 -0.0327134129164507 0.2698800213758354 0.2961674361769304 0.9162148349653386 -0.2698800213758354 -0.2961674361769304 -0.9162148349653386 -0.5816032194955555 -0.6636002251380012 0.4705023233409152 0.5816032194955555 0.6636002251380012 -0.4705023233409152 0.2686367963209743 0.288060300556891 -0.9191602335313885 -0.2686367963209743 -0.288060300556891 0.9191602335313885 0.5932575987977159 0.8044689158088678 0.02958352524756113 -0.5932575987977159 -0.8044689158088678 -0.02958352524756113 0.1919079033946834 0.3816786325888079 0.9041530722393164 0.2021851966061355 0.3530580894870337 0.9134939144411987 -0.2021851966061355 -0.3530580894870337 -0.9134939144411987 -0.1919079033946834 -0.3816786325888079 -0.9041530722393164 -0.2823820210451418 -0.4806475230958568 -0.8302038019259361 0.2823820210451418 0.4806475230958568 0.8302038019259361 -0.2505474052630797 -0.8378549079901313 -0.4850001555389304 0.2505474052630797 0.8378549079901313 0.4850001555389304 0.1747230772131435 -0.3953057429770431 0.9017789173952439 -0.1747230772131435 0.3953057429770431 -0.9017789173952439 0.26978728423016 0.8647902119375572 0.4235005438068643 -0.26978728423016 -0.8647902119375572 -0.4235005438068643 -0.1692684314459983 0.9176875552732279 -0.359440883891159 0.1692684314459983 -0.9176875552732279 0.359440883891159 -0.3502329098367625 -0.9365294321543141 -0.01579656848787955 0.3502329098367625 0.9365294321543141 0.01579656848787955 -0.3115226959250829 -0.8473851427508421 -0.429990732189315 0.3115226959250829 0.8473851427508421 0.429990732189315 0.2053626087379487 0.4066091744468938 -0.8902219825346709 -0.2053626087379487 -0.4066091744468938 0.8902219825346709 0.3625395537087672 0.9313536382647069 0.03384482955698954 -0.3625395537087672 -0.9313536382647069 -0.03384482955698954 0.1088163998042708 0.4031873021297915 0.9086247798376056 -0.1088163998042708 -0.4031873021297915 -0.9086247798376056 0.03197152740742636 0.9318883559366843 -0.3613335211475126 0.1550225723017221 0.9873709613234915 0.03265864069556018 -0.1550225723017221 -0.9873709613234915 -0.03265864069556018 -0.03197152740742636 -0.9318883559366843 0.3613335211475126 -0.1733353671567152 -0.9842555908762638 -0.03458008561966801 0.1733353671567152 0.9842555908762638 0.03458008561966801 0.1804061394791801 -0.4056248164437825 0.8960592241158876 -0.1804061394791801 0.4056248164437825 -0.8960592241158876 -0.3631565580660195 -0.8364706749585888 0.4104072663440117 0.3631565580660195 0.8364706749585888 -0.4104072663440117 0.1858046722706848 0.4347309710258129 -0.8811842069586456 -0.1858046722706848 -0.4347309710258129 0.8811842069586456 0.3566880885534043 0.9336089901440405 0.03388009749607839 -0.3566880885534043 -0.9336089901440405 -0.03388009749607839 0.1232571526515191 0.3822050703645238 0.9158203745865722 -0.1232571526515191 -0.3822050703645238 -0.9158203745865722 0.3718249345779886 0.9278015722570135 0.03050345133731713 -0.3718249345779886 -0.9278015722570135 -0.03050345133731713 -0.3769218826360062 -0.3789209326972639 -0.845191588430673 0.3769218826360062 0.3789209326972639 0.845191588430673 -0.4429394053228697 -0.7517457624653662 -0.4885519336033661 0.4429394053228697 0.7517457624653662 0.4885519336033661 0.08866515045489541 -0.4048987009543537 0.9100524891786669 -0.08866515045489541 0.4048987009543537 -0.9100524891786669 0.4722008782443767 0.7597224242219586 0.447043810738444 -0.4722008782443767 -0.7597224242219586 -0.447043810738444 -0.1349743997069032 -0.990475062389603 -0.0272224577889874 0.1349743997069032 0.990475062389603 0.0272224577889874 -0.1148745169857842 -0.9010766916345416 -0.4181681971889206 0.1148745169857842 0.9010766916345416 0.4181681971889206 0.1350323407016534 0.878766484746587 -0.4577507315676939 -0.1350323407016534 -0.878766484746587 0.4577507315676939 0.1391599109902589 0.9896225055955918 0.03580245231665115 -0.1391599109902589 -0.9896225055955918 -0.03580245231665115 0.02951347803965053 0.3883416053264751 0.9210427526377151 -0.02951347803965053 -0.3883416053264751 -0.9210427526377151 0.2379697063315265 0.8911006352533213 -0.3864066209572686 -0.2379697063315265 -0.8911006352533213 0.3864066209572686 -0.4018422953209712 -0.915469856946197 -0.02092153708700449 0.4018422953209712 0.915469856946197 0.02092153708700449 0.1000694492240476 -0.4248366424042973 0.8997221418875046 -0.1000694492240476 0.4248366424042973 -0.8997221418875046 -0.149258376407865 -0.916465922743119 0.371230588075244 0.149258376407865 0.916465922743119 -0.371230588075244 0.08634970589385892 0.5298551962191168 -0.8436807449098535 -0.08634970589385892 -0.5298551962191168 0.8436807449098535 0.03901594064805804 0.3769126891822767 0.9254267021805303 -0.03901594064805804 -0.3769126891822767 -0.9254267021805303 0.6676355058203269 0.5690937041910978 0.4799949866593313 -0.6676355058203269 -0.5690937041910978 -0.4799949866593313 0.6097847373579887 0.7922549558333398 0.02224093169725167 -0.6097847373579887 -0.7922549558333398 -0.02224093169725167 -0.4546059078543376 -0.2369869510319531 -0.8585864275566627 0.4546059078543376 0.2369869510319531 0.8585864275566627 -0.6358582712225318 -0.5907494832679082 -0.4966883398436012 0.6358582712225318 0.5907494832679082 0.4966883398436012 0.007498331790333134 -0.3777105669550434 0.9258933538107194 -0.007498331790333134 0.3777105669550434 -0.9258933538107194 0.06864084590568426 -0.9970179924571337 -0.0352641034211662 -0.06864084590568426 0.9970179924571337 0.0352641034211662 0.08052190282451008 -0.9028331427755107 -0.4223843504103985 -0.08052190282451008 0.9028331427755107 0.4223843504103985 -0.05898967825784544 0.8988150489367441 -0.4343405641473913 0.05898967825784544 -0.8988150489367441 0.4343405641473913 -0.07260509816947629 0.9967060792391365 0.03613158351842422 0.07260509816947629 -0.9967060792391365 -0.03613158351842422 -0.04181228090555243 0.3419317653722825 0.9387941206648397 0.04181228090555243 -0.3419317653722825 -0.9387941206648397 0.01504041957043186 -0.4057949568608777 0.9138403792596516 -0.01504041957043186 0.4057949568608777 -0.9138403792596516 0.4517798446100684 0.7787948471666188 -0.4351707228557833 -0.4517798446100684 -0.7787948471666188 0.4351707228557833 -0.6412771318334352 -0.7670575183231125 -0.01965715573197376 0.6412771318334352 0.7670575183231125 0.01965715573197376 0.05436673979736359 -0.9322885250947756 0.3576064367155796 -0.05436673979736359 0.9322885250947756 -0.3576064367155796 -0.0212071890036439 0.5780475407181148 -0.8157274641718907 0.0212071890036439 -0.5780475407181148 0.8157274641718907 -0.04351368272639628 0.3322625189290334 0.9421826669656582 0.04351368272639628 -0.3322625189290334 -0.9421826669656582 -0.06237698712821529 -0.3162498352456724 0.9466230259104684 0.06237698712821529 0.3162498352456724 -0.9466230259104684 0.8151747555481969 0.2812969192611448 0.5063221910316851 -0.8151747555481969 -0.2812969192611448 -0.5063221910316851 0.8495200192304718 0.5275379171118494 0.004413947887178284 -0.8495200192304718 -0.5275379171118494 -0.004413947887178284 -0.4986760678817546 -0.0546023815812284 -0.8650669102720608 0.4986760678817546 0.0546023815812284 0.8650669102720608 -0.8439557844500474 -0.5361032111239543 -0.01822034346245837 0.8439557844500474 0.5361032111239543 0.01822034346245837 0.2769606513134717 -0.9598182468762322 -0.04518551302633956 -0.2769606513134717 0.9598182468762322 0.04518551302633956 0.2862523820680035 -0.8449411142000919 -0.4518120043720634 -0.2862523820680035 0.8449411142000919 0.4518120043720634 -0.2515239683296016 0.8702997792149998 -0.4234548236282732 0.2515239683296016 -0.8702997792149998 0.4234548236282732 -0.2850091085724672 0.9578491851140157 0.03598258755486267 0.2850091085724672 -0.9578491851140157 -0.03598258755486267 -0.1022652138103845 0.2645297637071581 0.9589399512781558 0.1022652138103845 -0.2645297637071581 -0.9589399512781558 -0.8727550771939916 -0.4877890895991029 -0.01898365876716792 0.8727550771939916 0.4877890895991029 0.01898365876716792 -0.06496053448506671 -0.3441482908946016 0.9366654060195345 0.06496053448506671 0.3441482908946016 -0.9366654060195345 0.6576786834479146 0.5643363169938016 -0.4989822348141159 -0.6576786834479146 -0.5643363169938016 0.4989822348141159 -0.4964548012322866 -0.01405178624130724 -0.8679488335361937 0.4964548012322866 0.01405178624130724 0.8679488335361937 0.2544372511161985 -0.8958142249090459 0.3643879247382352 -0.2544372511161985 0.8958142249090459 -0.3643879247382352 -0.1346599506753236 0.5836962910113674 -0.8007280047205121 0.1346599506753236 -0.5836962910113674 0.8007280047205121 -0.1124404606428646 0.2448652957053648 0.9630151243721693 0.1124404606428646 -0.2448652957053648 -0.9630151243721693 -0.8819596162681433 0.007606609768102142 -0.4712635937137361 0.8819596162681433 -0.007606609768102142 0.4712635937137361 -0.1171297377672967 -0.2299390039661313 0.9661307773721048 0.1171297377672967 0.2299390039661313 -0.9661307773721048 0.8597941689935817 -0.06610076241144321 0.5063444244516397 -0.8597941689935817 0.06610076241144321 -0.5063444244516397 0.8025443301909858 0.1986012381867819 -0.5625656817376785 -0.8025443301909858 -0.1986012381867819 0.5625656817376785 -0.4943665989696874 0.1452993819705873 -0.8570237776293663 0.4943665989696874 -0.1452993819705873 0.8570237776293663 0.5011082647832796 -0.8640069618754204 -0.04881062176101025 -0.5011082647832796 0.8640069618754204 0.04881062176101025 0.495393292699206 -0.7179196114702798 -0.4890571715198556 -0.495393292699206 0.7179196114702798 0.4890571715198556 -0.4523459423830585 0.7826873274957782 -0.427532099130696 0.4523459423830585 -0.7826873274957782 0.427532099130696 -0.5160344004894462 0.8561607522170113 0.02640575457545195 0.5160344004894462 -0.8561607522170113 -0.02640575457545195 -0.1456700287183111 0.1553266991594604 0.9770638972254747 0.1456700287183111 -0.1553266991594604 -0.9770638972254747 -0.9975799967319756 -0.06943171943913534 -0.003658750600534279 0.9975799967319756 0.06943171943913534 0.003658750600534279 -0.1298938066383518 -0.2399502853702611 0.9620558505345356 0.1298938066383518 0.2399502853702611 -0.9620558505345356 0.8574527099986579 -0.024943073842547 0.5139578710198363 -0.8574527099986579 0.024943073842547 -0.5139578710198363 0.7991923633604373 0.2325909216970215 -0.5542499702214594 -0.7991923633604373 -0.2325909216970215 0.5542499702214594 0.4545425258572903 -0.8001119199105381 0.3914230547685552 -0.4545425258572903 0.8001119199105381 -0.3914230547685552 -0.2485621394074033 0.5432107119168934 -0.8019594661277815 0.2485621394074033 -0.5432107119168934 0.8019594661277815 -0.1547297701498987 0.1222919404111891 0.9803588014292652 0.1547297701498987 -0.1222919404111891 -0.9803588014292652 -0.4386221089531073 0.3279040177656268 -0.8367135714631907 0.4386221089531073 -0.3279040177656268 0.8367135714631907 -0.8139596649067716 0.369876750153207 -0.4479518429485005 0.8139596649067716 -0.369876750153207 0.4479518429485005 -0.1540747872951352 -0.1214426860447951 0.9805675060525839 0.1540747872951352 0.1214426860447951 -0.9805675060525839 0.7859819010892829 -0.3952252448442107 0.4754255535811157 -0.7859819010892829 0.3952252448442107 -0.4754255535811157 0.9306780161615121 -0.3631421276095757 -0.04434214010241968 -0.9306780161615121 0.3631421276095757 0.04434214010241968 0.7418342663243822 -0.6686855396130648 -0.05041399031370274 -0.7418342663243822 0.6686855396130648 0.05041399031370274 0.6931728046754269 -0.4794465154382414 -0.5381844495082803 -0.6931728046754269 0.4794465154382414 0.5381844495082803 -0.6572266751115354 0.615817033732647 -0.4345370852833627 0.6572266751115354 -0.615817033732647 0.4345370852833627 -0.7519579582759212 0.6588368316709177 0.02220941735694816 0.7519579582759212 -0.6588368316709177 -0.02220941735694816 -0.1709405722559768 0.02372283740880488 0.9849957095043992 0.1709405722559768 -0.02372283740880488 -0.9849957095043992 0.8070332257881647 -0.1635417914939574 -0.5674076620110943 -0.8070332257881647 0.1635417914939574 0.5674076620110943 -0.9307959225689865 0.3653144447802395 0.01281822779696078 0.9307959225689865 -0.3653144447802395 -0.01281822779696078 -0.1665224790155269 -0.1042049381458482 0.98051598398422 0.1665224790155269 0.1042049381458482 -0.98051598398422 0.6462131120801343 -0.6271220006901789 0.4348868933712018 -0.6462131120801343 0.6271220006901789 -0.4348868933712018 -0.356871619837412 0.4535533681326124 -0.8166590409774356 0.356871619837412 -0.4535533681326124 0.8166590409774356 -0.1683124202182102 -0.008542688178951144 0.9856966834066989 0.1683124202182102 0.008542688178951144 -0.9856966834066989 0.7170352095489575 -0.6951740874276534 -0.05092638251645233 -0.7170352095489575 0.6951740874276534 0.05092638251645233 -0.3464664709718055 0.4660313447269559 -0.8141104164818971 0.3464664709718055 -0.4660313447269559 0.8141104164818971 -0.6354976406288125 0.6397473796149413 -0.4322800469961907 0.6354976406288125 -0.6397473796149413 0.4322800469961907 -0.1685700138354227 0.005739948138891548 0.9856729698185338 0.1685700138354227 -0.005739948138891548 -0.9856729698185338 0.627961198733126 -0.649050529225108 0.4294160493021458 -0.627961198733126 0.649050529225108 -0.4294160493021458 0.797309948167892 -0.3587410006949399 0.4853882373656234 -0.797309948167892 0.3587410006949399 -0.4853882373656234 0.8133505745047901 -0.1225610302085998 -0.5687175369433712 -0.8133505745047901 0.1225610302085998 0.5687175369433712 -0.827728804209694 0.3350726078951755 -0.4501015153495001 0.827728804209694 -0.3350726078951755 0.4501015153495001 -0.9459935076998534 0.3239857232554233 0.01138132313871105 0.9459935076998534 -0.3239857232554233 -0.01138132313871105 -0.1642946471614618 -0.1191759077197101 0.9791855656275137 0.1642946471614618 0.1191759077197101 -0.9791855656275137 0.6747183980805227 -0.5099847396469173 -0.5335453576022561 -0.6747183980805227 0.5099847396469173 0.5335453576022561 -0.725972841726008 0.6873609092027893 0.022325178077218 0.725972841726008 -0.6873609092027893 -0.022325178077218 -0.1700291583770809 0.03942041603916416 0.9846502506478534 0.1700291583770809 -0.03942041603916416 -0.9846502506478534 0.7985683741119738 -0.3635551752882126 0.4797042697217896 -0.7985683741119738 0.3635551752882126 -0.4797042697217896 0.8005407714938573 -0.177249530910696 -0.5724657867226284 -0.8005407714938573 0.177249530910696 0.5724657867226284 -0.4462067143413283 0.3107408208180051 -0.839249492316837 0.4462067143413283 -0.3107408208180051 0.839249492316837 -0.1512006834129393 -0.1336474753351201 0.9794267229721725 0.1512006834129393 0.1336474753351201 -0.9794267229721725 0.433676410702461 -0.8129828071542766 0.3885662441229072 -0.433676410702461 0.8129828071542766 -0.3885662441229072 0.4768903302031552 -0.8776658114493595 -0.04773192193556719 -0.4768903302031552 0.8776658114493595 0.04773192193556719 -0.238012317776634 0.5527815444245369 -0.7986129855757533 0.238012317776634 -0.5527815444245369 0.7986129855757533 -0.4293197939239346 0.7959816418674625 -0.4267291182414073 0.4293197939239346 -0.7959816418674625 0.4267291182414073 -0.1533284582499095 0.138567601006442 0.9784116740115201 0.1533284582499095 -0.138567601006442 -0.9784116740115201 0.856906041284654 0.0155227088499625 0.515238859093355 -0.856906041284654 -0.0155227088499625 -0.515238859093355 0.7895060350991036 0.2718495608044064 -0.5502527027035348 -0.7895060350991036 -0.2718495608044064 0.5502527027035348 -0.8795828893751583 -0.03295106831366036 -0.4746031687793886 0.8795828893751583 0.03295106831366036 0.4746031687793886 -0.9931749293461942 -0.1165321844306382 -0.004879519444127158 0.9931749293461942 0.1165321844306382 0.004879519444127158 -0.1241386851449203 -0.252215880966428 0.9596753285558711 0.1241386851449203 0.252215880966428 -0.9596753285558711 -0.1440117039784415 0.1695726396981693 0.9749388437143227 0.1440117039784415 -0.1695726396981693 -0.9749388437143227 0.4731713745155489 -0.7368035674240903 -0.4829382500591563 -0.4731713745155489 0.7368035674240903 0.4829382500591563 -0.4914271999019824 0.8706180904945938 0.02287897943624781 0.4914271999019824 -0.8706180904945938 -0.02287897943624781 0.8609196727568225 -0.02973249428943746 0.5078713378835374 -0.8609196727568225 0.02973249428943746 -0.5078713378835374 0.7938149946100161 0.240672771386379 -0.5585108516810573 -0.7938149946100161 -0.240672771386379 0.5585108516810573 -0.4981315225321004 0.1224069535905647 -0.8584180356752349 0.4981315225321004 -0.1224069535905647 0.8584180356752349 -0.1121383259459405 -0.2398450308899771 0.9643128937287047 0.1121383259459405 0.2398450308899771 -0.9643128937287047 -0.1062966699288113 0.2553977220723043 0.9609750368882238 0.1062966699288113 -0.2553977220723043 -0.9609750368882238 0.2334715834460491 -0.9021087639137927 0.3628922674749679 -0.2334715834460491 0.9021087639137927 -0.3628922674749679 0.2546730969055133 -0.9661253549653743 -0.04175418788079063 -0.2546730969055133 0.9661253549653743 0.04175418788079063 -0.1226019453821983 0.5856224846958062 -0.8012584279788954 0.1226019453821983 -0.5856224846958062 0.8012584279788954 -0.2322335972147434 0.8745422537674141 -0.4257269109418759 0.2322335972147434 -0.8745422537674141 0.4257269109418759 0.8298769241635319 0.5578774476779886 0.008777477608551191 -0.8298769241635319 -0.5578774476779886 -0.008777477608551191 0.6381503195400743 0.5921063201550033 -0.4921120556371302 -0.6381503195400743 -0.5921063201550033 0.4921120556371302 -0.7845301195558947 -0.3705924622541761 -0.4971656850889858 0.7845301195558947 0.3705924622541761 0.4971656850889858 -0.8531044413202037 -0.5209828221013414 -0.02810180198964397 0.8531044413202037 0.5209828221013414 0.02810180198964397 -0.05742407169246319 -0.3531049708559187 0.9338197660935966 0.05742407169246319 0.3531049708559187 -0.9338197660935966 -0.264181886575063 0.9639045097863968 0.03310629576208342 0.264181886575063 -0.9639045097863968 -0.03310629576208342 -0.0961714147092337 0.2735265109821333 0.9570445688591338 0.0961714147092337 -0.2735265109821333 -0.9570445688591338 0.2628301722769759 -0.8574191658827258 -0.4424394585904674 -0.2628301722769759 0.8574191658827258 0.4424394585904674 0.805436444413751 0.3138416009291293 0.5027679221433841 -0.805436444413751 -0.3138416009291293 -0.5027679221433841 -0.5011848910180647 -0.0768321832181772 -0.861922572298196 0.5011848910180647 0.0768321832181772 0.861922572298196 -0.05593530965330448 -0.3240535581092801 0.9443836787083438 0.05593530965330448 0.3240535581092801 -0.9443836787083438 -0.03897239308958518 0.8991793280296998 -0.4358413571713087 0.03897239308958518 -0.8991793280296998 0.4358413571713087 -0.03525158766491567 0.3387304469134816 0.9402228511905546 0.03525158766491567 -0.3387304469134816 -0.9402228511905546 0.03378643596204006 -0.9335658899859859 0.3568097613570249 -0.03378643596204006 0.9335658899859859 -0.3568097613570249 0.04789021286171039 -0.9982553370951237 -0.03453707389401745 -0.04789021286171039 0.9982553370951237 0.03453707389401745 -0.009885358226968684 0.5750224134681391 -0.8180779325357707 0.009885358226968684 -0.5750224134681391 0.8180779325357707 0.5855044421088986 0.8103976357524733 0.02098142601324613 -0.5855044421088986 -0.8103976357524733 -0.02098142601324613 0.4340609032382765 0.7959713587299389 -0.4219250269438712 -0.4340609032382765 -0.7959713587299389 0.4219250269438712 -0.6153560448574253 -0.6092572074248711 -0.5001425729312331 0.6153560448574253 0.6092572074248711 0.5001425729312331 -0.6198630903292977 -0.7840993120202319 -0.03095186806659787 0.6198630903292977 0.7840993120202319 0.03095186806659787 0.02409656358769302 -0.4096282971439647 0.9119342157207393 -0.02409656358769302 0.4096282971439647 -0.9119342157207393 -0.05031979474142957 0.9980457114744417 0.03704964324600307 0.05031979474142957 -0.9980457114744417 -0.03704964324600307 -0.0348206751678781 0.3480614376028201 0.9368248268671744 0.0348206751678781 -0.3480614376028201 -0.9368248268671744 0.06078477015216938 -0.9051564198478542 -0.4207101939884068 -0.06078477015216938 0.9051564198478542 0.4207101939884068 0.6482297321278429 0.6028398979148678 0.4651690787955032 -0.6482297321278429 -0.6028398979148678 -0.4651690787955032 -0.4478966020177788 -0.2541415579067543 -0.8572051693997507 0.4478966020177788 0.2541415579067543 0.8572051693997507 0.01559672925442231 -0.380983862705341 0.9244501275864925 -0.01559672925442231 0.380983862705341 -0.9244501275864925 0.09714985020961668 0.522333864264374 -0.8471890230915977 -0.09714985020961668 -0.522333864264374 0.8471890230915977 0.1553408786736751 0.8736838440230915 -0.4610268453202319 -0.1553408786736751 -0.8736838440230915 0.4610268453202319 0.04774165709909886 0.3792289904447429 0.9240704015299337 -0.04774165709909886 -0.3792289904447429 -0.9240704015299337 -0.1710161198878743 -0.9112221572522233 0.3747367967935634 0.1710161198878743 0.9112221572522233 -0.3747367967935634 -0.1565556598465962 -0.9873325668951926 -0.02578231405725385 0.1565556598465962 0.9873325668951926 0.02578231405725385 0.3468654255841545 0.9373977055235857 0.0311435099730263 -0.3468654255841545 -0.9373977055235857 -0.0311435099730263 0.2151468099413452 0.8989038256627896 -0.3816854233277242 -0.2151468099413452 -0.8989038256627896 0.3816854233277242 -0.4229049650401514 -0.7599165361481899 -0.4936377706708892 0.4229049650401514 0.7599165361481899 0.4936377706708892 -0.3770508568913159 -0.9255392515129642 -0.03478139195526916 0.3770508568913159 0.9255392515129642 0.03478139195526916 0.1086182708157457 -0.4244487475750574 0.8989134173695276 -0.1086182708157457 0.4244487475750574 -0.8989134173695276 -0.1350343542808518 -0.8980551277568514 -0.4186438948242033 0.1350343542808518 0.8980551277568514 0.4186438948242033 0.1612143466838741 0.9862880320014714 0.03529663374821999 -0.1612143466838741 -0.9862880320014714 -0.03529663374821999 0.03730645428521182 0.3914503345569155 0.9194426920933921 -0.03730645428521182 -0.3914503345569155 -0.9194426920933921 0.4512939907351913 0.7735056125491248 0.4449975295227023 -0.4512939907351913 -0.7735056125491248 -0.4449975295227023 -0.3680144667309154 -0.3929169477632095 -0.8427227447014842 0.3680144667309154 0.3929169477632095 0.8427227447014842 0.09726149813952741 -0.4055986414267697 0.9088618943780256 -0.09726149813952741 0.4055986414267697 -0.9088618943780256 -0.3736623046740656 -0.9274521783534832 -0.01445472009568674 0.3736623046740656 0.9274521783534832 0.01445472009568674 0.1954486345942783 0.4220317646660174 -0.8852621198538428 -0.1954486345942783 -0.4220317646660174 0.8852621198538428 0.3803994815951778 0.9242084766368134 0.03368866448496297 -0.3803994815951778 -0.9242084766368134 -0.03368866448496297 0.1318367886920812 0.3805656094993993 0.9153080781975599 -0.1318367886920812 -0.3805656094993993 -0.9153080781975599 -0.3857834882261922 -0.8237101252463507 0.4155390833347361 0.3857834882261922 0.8237101252463507 -0.4155390833347361 0.1338395089256006 0.9904472527131343 0.03318471701790733 -0.1338395089256006 -0.9904472527131343 -0.03318471701790733 0.01120160698955215 0.9329626622364952 -0.3597988255587321 -0.01120160698955215 -0.9329626622364952 0.3597988255587321 -0.2325309580868789 -0.8440969843494561 -0.4831455624792101 0.2325309580868789 0.8440969843494561 0.4831455624792101 -0.154527552306003 -0.9873161144596161 -0.03644345903837389 0.154527552306003 0.9873161144596161 0.03644345903837389 0.1883721494601096 -0.4022385583668752 0.8959464690876995 -0.1883721494601096 0.4022385583668752 -0.8959464690876995 -0.3323026476776037 -0.8385615661172768 -0.431728444948204 0.3323026476776037 0.8385615661172768 0.431728444948204 0.215248562815476 0.3916735621518621 -0.894572454816905 -0.215248562815476 -0.3916735621518621 0.894572454816905 0.3868280921821323 0.9215302862295679 0.03385201117189925 -0.3868280921821323 -0.9215302862295679 -0.03385201117189925 0.1173977769977951 0.4027091350504056 0.9077682052721003 -0.1173977769977951 -0.4027091350504056 -0.9077682052721003 0.2489458852328293 0.8717344856732384 0.4220248010646504 -0.2489458852328293 -0.8717344856732384 -0.4220248010646504 -0.2718556376875321 -0.4882131085991132 -0.8293024013286684 0.2718556376875321 0.4882131085991132 0.8293024013286684 0.1836613834871931 -0.3924336867930833 0.9012570652624913 -0.1836613834871931 0.3924336867930833 -0.9012570652624913 -0.6033355098507652 -0.6384923575383442 0.4778219039749477 0.6033355098507652 0.6384923575383442 -0.4778219039749477 -0.6131254961321928 -0.7899853147212744 0.0005731643582408101 0.6131254961321928 0.7899853147212744 -0.0005731643582408101 0.275362539101309 0.2694875496646566 -0.9227957155489069 -0.275362539101309 -0.2694875496646566 0.9227957155489069 0.6186506423816441 0.7851030912335202 0.02974086105596318 -0.6186506423816441 -0.7851030912335202 -0.02974086105596318 0.2101175513439924 0.3486731677630247 0.9133879989901894 -0.2101175513439924 -0.3486731677630247 -0.9133879989901894 -0.06461905806779944 0.997395885326813 0.03202850710809595 0.06461905806779944 -0.997395885326813 -0.03202850710809595 -0.1834497390466434 0.9148534576368063 -0.3597073036424178 0.1834497390466434 -0.9148534576368063 0.3597073036424178 -0.04706007671438661 -0.8766410006301814 -0.4788380782621098 0.04706007671438661 0.8766410006301814 0.4788380782621098 0.05240676047166495 -0.9979332119693068 -0.03718650165702653 -0.05240676047166495 0.9979332119693068 0.03718650165702653 0.2558861234443253 -0.3505181987180789 0.9009213529471198 -0.2558861234443253 0.3505181987180789 -0.9009213529471198 0.2006831002614205 0.3777160261579191 0.9039119961881992 -0.2006831002614205 -0.3777160261579191 -0.9039119961881992 -0.53050839092554 -0.713187852388419 -0.4581745675647977 0.53050839092554 0.713187852388419 0.4581745675647977 0.2881075812934133 0.2233228200054878 -0.9311932880267425 -0.2881075812934133 -0.2233228200054878 0.9311932880267425 0.6320216216874215 0.7743967147908979 0.02929842727291891 -0.6320216216874215 -0.7743967147908979 -0.02929842727291891 0.05525295018242418 0.9079180958221401 0.4154898828790391 -0.05525295018242418 -0.9079180958221401 -0.4154898828790391 -0.1693098597271242 -0.5435439754273672 -0.8221277991746753 0.1693098597271242 0.5435439754273672 0.8221277991746753 0.2624313659527194 -0.3401103022477795 0.9030253376672848 -0.2624313659527194 0.3401103022477795 -0.9030253376672848 0.2785082007361578 0.2831362367560196 0.9177510847492076 -0.2785082007361578 -0.2831362367560196 -0.9177510847492076 -0.779978121252102 -0.3127799279651076 0.5420358355590368 0.779978121252102 0.3127799279651076 -0.5420358355590368 -0.8613360645284098 -0.5077925879855756 0.0157121459267218 0.8613360645284098 0.5077925879855756 -0.0157121459267218 0.3203858618669948 0.06507575749340232 -0.9450492290364575 -0.3203858618669948 -0.06507575749340232 0.9450492290364575 0.8570000808160878 0.5149590853378663 0.01918337585533324 -0.8570000808160878 -0.5149590853378663 -0.01918337585533324 -0.2668584916686912 0.9632176658702873 0.03159546770830292 0.2668584916686912 -0.9632176658702873 -0.03159546770830292 -0.3848584408113122 0.8410886970001501 -0.3800707622468155 0.3848584408113122 -0.8410886970001501 0.3800707622468155 0.1463445884545457 -0.8636978191850746 -0.4822959035333138 -0.1463445884545457 0.8636978191850746 0.4822959035333138 0.2614864536151934 -0.9645813656025409 -0.03475088068073299 -0.2614864536151934 0.9645813656025409 0.03475088068073299 0.3128152317921457 -0.272750132100432 0.90980986815819 -0.3128152317921457 0.272750132100432 -0.90980986815819 0.8772517041359547 0.4797027255919508 0.01774098785910602 -0.8772517041359547 -0.4797027255919508 -0.01774098785910602 0.2801952750834338 0.3069638684701647 0.9095404286092786 -0.2801952750834338 -0.3069638684701647 -0.9095404286092786 -0.7175498325229612 -0.4930624735870243 -0.4919467806445282 0.7175498325229612 0.4930624735870243 0.4919467806445282 0.3153611958733363 0.02588977355127589 -0.948618487993357 -0.3153611958733363 -0.02588977355127589 0.948618487993357 -0.1392445525868265 0.8939663745427139 0.4259519641483658 0.1392445525868265 -0.8939663745427139 -0.4259519641483658 -0.06131327874475354 -0.5593307263178334 -0.8266739505066874 0.06131327874475354 0.5593307263178334 0.8266739505066874 0.3279961473473233 -0.2498327249204238 0.9110445306812115 -0.3279961473473233 0.2498327249204238 -0.9110445306812115 0.9954171290400191 0.09553601835509044 0.004196237669848525 -0.9954171290400191 -0.09553601835509044 -0.004196237669848525 0.331646199686615 0.1947660239000207 0.9230801667068806 -0.331646199686615 -0.1947660239000207 -0.9230801667068806 -0.8175661160704699 0.09712556361431309 0.5675845934713599 0.8175661160704699 -0.09712556361431309 -0.5675845934713599 -0.845898092456866 -0.133183130216802 -0.5164481300222606 0.845898092456866 0.133183130216802 0.5164481300222606 0.3083725906203965 -0.1573722168839604 -0.9381579455012324 -0.3083725906203965 0.1573722168839604 0.9381579455012324 -0.4989995426749803 0.866022516206001 0.03169318277464853 0.4989995426749803 -0.866022516206001 -0.03169318277464853 -0.5956907462458242 0.6858816290607149 -0.4179939302838174 0.5956907462458242 -0.6858816290607149 0.4179939302838174 0.3620907452817879 -0.7880871337618098 -0.4978041399791435 -0.3620907452817879 0.7880871337618098 0.4978041399791435 0.4980423443424801 -0.8665917528265352 -0.03118584895236354 -0.4980423443424801 0.8665917528265352 0.03118584895236354 0.3599700298658335 -0.1644817040127886 0.9183503398177847 -0.3599700298658335 0.1644817040127886 -0.9183503398177847 0.2943240018707259 -0.1612778925229903 -0.9419993754276824 -0.2943240018707259 0.1612778925229903 0.9419993754276824 0.9995125932000399 0.03116117905467866 0.001885988985655725 -0.9995125932000399 -0.03116117905467866 -0.001885988985655725 0.3431132187610625 0.1961239636348738 0.9185906106637333 -0.3431132187610625 -0.1961239636348738 -0.9185906106637333 -0.8174331647353583 0.04639253701091174 0.5741522042981528 0.8174331647353583 -0.04639253701091174 -0.5741522042981528 -0.8407693587693527 -0.1769326226913789 -0.5116656451063738 0.8407693587693527 0.1769326226913789 0.5116656451063738 -0.351344017464407 0.8170334422133354 0.4571802004647607 0.351344017464407 -0.8170334422133354 -0.4571802004647607 0.05308682866082147 -0.5294829636699153 -0.8466578882914042 -0.05308682866082147 0.5294829636699153 0.8466578882914042 0.3719130906702194 -0.1265632048515265 0.9195990475015922 -0.3719130906702194 0.1265632048515265 -0.9195990475015922 0.2430574879004985 -0.3409814292140196 -0.9081050173337133 -0.2430574879004985 0.3409814292140196 0.9081050173337133 0.9393255939314196 -0.3428193935498642 -0.01192862068678942 -0.9393255939314196 0.3428193935498642 0.01192862068678942 0.36716622020733 0.09385941434953689 0.9254076815526358 -0.36716622020733 -0.09385941434953689 -0.9254076815526358 -0.7106066404541951 0.4478795658527937 0.5426251901947745 0.7106066404541951 -0.4478795658527937 -0.5426251901947745 -0.8322407805009124 0.2410512179802989 -0.4992690593071502 0.8322407805009124 -0.2410512179802989 0.4992690593071502 -0.7492626143908922 0.6617306644805105 0.02679668565899822 0.7492626143908922 -0.6617306644805105 -0.02679668565899822 -0.7718117655767617 0.4268896522834806 -0.4712449716342559 0.7718117655767617 -0.4268896522834806 0.4712449716342559 0.1704561015336629 -0.4188039207007326 -0.8919349715397643 -0.1704561015336629 0.4188039207007326 0.8919349715397643 0.7457573191449481 -0.6658082115411176 -0.02335479364410316 -0.7457573191449481 0.6658082115411176 0.02335479364410316 0.3832945142782272 -0.03327922599264618 0.9230264397304924 -0.3832945142782272 0.03327922599264618 -0.9230264397304924 -0.8487072942267473 0.1690980125474086 -0.5011005796033666 0.8487072942267473 -0.1690980125474086 0.5011005796033666 0.2376184337326038 -0.3172723381324109 -0.9180826451940247 -0.2376184337326038 0.3172723381324109 0.9180826451940247 0.914282202159292 -0.4048044901428724 -0.01487882975655453 -0.914282202159292 0.4048044901428724 0.01487882975655453 0.3773336200634785 0.07297369323016359 0.9231978007264426 -0.3773336200634785 -0.07297369323016359 -0.9231978007264426 -0.716305029535777 0.4292096781431709 0.5501692074716518 0.716305029535777 -0.4292096781431709 -0.5501692074716518 -0.5635137014633063 0.6543319596569852 0.5042836452182177 0.5635137014633063 -0.6543319596569852 -0.5042836452182177 0.1654645754220075 -0.4499810960536757 -0.8775753457537122 -0.1654645754220075 0.4499810960536757 0.8775753457537122 0.7849717542644445 -0.6191505250492028 -0.02172492435652893 -0.7849717542644445 0.6191505250492028 0.02172492435652893 0.3812131251694482 0.001938054737225733 0.9244851524726496 -0.3812131251694482 -0.001938054737225733 -0.9244851524726496 -0.706263187382144 0.707442942431103 0.02677299671754465 0.706263187382144 -0.707442942431103 -0.02677299671754465 0.1468988514602051 -0.4682212046665963 -0.8713148862152154 -0.1468988514602051 0.4682212046665963 0.8713148862152154 0.5453443397134076 -0.6597043316735971 -0.5170974240059992 -0.5453443397134076 0.6597043316735971 0.5170974240059992 0.3801252730647183 -0.01953358577190619 0.9247287255213634 -0.3801252730647183 0.01953358577190619 -0.9247287255213634 -0.5268173003900145 0.6908686067102202 0.4951404853898096 0.5268173003900145 -0.6908686067102202 -0.4951404853898096 -0.7479084547054277 0.3581028584852424 0.5589233275905001 0.7479084547054277 -0.3581028584852424 -0.5589233275905001 -0.857463476648464 0.09220337702018273 -0.506216281326473 0.857463476648464 -0.09220337702018273 0.506216281326473 0.2503476186166397 -0.2899487472026017 -0.9237184602727281 -0.2503476186166397 0.2899487472026017 0.9237184602727281 0.9458611265874839 -0.3243741966978646 -0.01131855676626295 -0.9458611265874839 0.3243741966978646 0.01131855676626295 0.3740559177265709 0.1012911302250636 0.921858057051877 -0.3740559177265709 -0.1012911302250636 -0.921858057051877 -0.7456081572732178 0.479349187413293 -0.4629177381931395 0.7456081572732178 -0.479349187413293 0.4629177381931395 0.7019866539849511 -0.7116120731318623 -0.02868788943065985 -0.7019866539849511 0.7116120731318623 0.02868788943065985 0.3797707895361056 -0.05578521508747981 0.9233970744987049 -0.3797707895361056 0.05578521508747981 -0.9233970744987049 -0.7413372018600667 0.3838759711138743 0.5505073949909002 0.7413372018600667 -0.3838759711138743 -0.5505073949909002 -0.8464429439500593 0.1647919807723101 -0.5063377782768096 0.8464429439500593 -0.1647919807723101 0.5063377782768096 0.2583786506831493 -0.3088727730113479 -0.9153349567035204 -0.2583786506831493 0.3088727730113479 0.9153349567035204 0.9667052361602763 -0.2557355619573141 -0.008961513861014344 -0.9667052361602763 0.2557355619573141 0.008961513861014344 0.3621145849670063 0.1188741203512216 0.9245225637402779 -0.3621145849670063 -0.1188741203512216 -0.9245225637402779 -0.3197967591986774 0.8330108071813056 0.4514676377384902 0.3197967591986774 -0.8330108071813056 -0.4514676377384902 -0.4673945829500927 0.8835792856825052 0.02880884832309254 0.4673945829500927 -0.8835792856825052 -0.02880884832309254 0.0369972132086472 -0.5385792329872361 -0.8417622087084182 -0.0369972132086472 0.5385792329872361 0.8417622087084182 0.325919582977926 -0.8059328847832468 -0.4942151461220593 -0.325919582977926 0.8059328847832468 0.4942151461220593 0.3683543468231149 -0.1472162384577096 0.9179555840621478 -0.3683543468231149 0.1472162384577096 -0.9179555840621478 -0.8188355990647986 -0.04539334334400072 0.5722304658826251 0.8188355990647986 0.04539334334400072 -0.5722304658826251 -0.822254580904724 -0.2531097721189614 -0.5097380184360236 0.822254580904724 0.2531097721189614 0.5097380184360236 0.3007446134877924 -0.1278820455526602 -0.9450919848794326 -0.3007446134877924 0.1278820455526602 0.9450919848794326 0.9912207788015529 0.1321041308441238 0.005465005577446667 -0.9912207788015529 -0.1321041308441238 -0.005465005577446667 0.333464432219462 0.2262048617210932 0.91522283241749 -0.333464432219462 -0.2262048617210932 -0.91522283241749 0.3572482033442377 -0.1813374423690488 0.9162371162545022 -0.3572482033442377 0.1813374423690488 -0.9162371162545022 -0.5652732880236447 0.7136985729110916 -0.4136429098529417 0.5652732880236447 -0.7136985729110916 0.4136429098529417 0.4589963824499008 -0.8877897039360941 -0.03393762636022827 -0.4589963824499008 0.8877897039360941 0.03393762636022827 -0.823645160210407 0.01010080678141246 0.5670155410254093 0.823645160210407 -0.01010080678141246 -0.5670155410254093 -0.8284382484647666 -0.2197789923965592 -0.5151575127878687 0.8284382484647666 0.2197789923965592 0.5151575127878687 0.3143157204193575 -0.1151624860391426 -0.9423073966103337 -0.3143157204193575 0.1151624860391426 0.9423073966103337 0.981402156481385 0.1918066126499629 0.007747941496548565 -0.981402156481385 -0.1918066126499629 -0.007747941496548565 0.3228742433604697 0.2179475000854879 0.921005488681197 -0.3228742433604697 -0.2179475000854879 -0.921005488681197 0.3242555894649844 -0.2627546519260186 0.908745456985592 -0.3242555894649844 0.2627546519260186 -0.908745456985592 -0.1174200889755088 0.8977402856722788 0.4245879204429147 0.1174200889755088 -0.8977402856722788 -0.4245879204429147 -0.2470425728422168 0.9685221241356217 0.03057551738436241 0.2470425728422168 -0.9685221241356217 -0.03057551738436241 -0.07435657945962489 -0.5620431171607689 -0.8237588442883455 0.07435657945962489 0.5620431171607689 0.8237588442883455 0.122052206662836 -0.8647746579518298 -0.4871016832377279 -0.122052206662836 0.8647746579518298 0.4871016832377279 -0.8216029429713218 -0.5698993658412955 0.01353945769047497 0.8216029429713218 0.5698993658412955 -0.01353945769047497 -0.687814852997406 -0.5387613544941684 -0.4864636994676644 0.687814852997406 0.5387613544941684 0.4864636994676644 0.3136922875594778 0.05869778538725343 -0.9477086676380743 -0.3136922875594778 -0.05869778538725343 0.9477086676380743 0.8392381286762829 0.5433628842023259 0.02088395190715675 -0.8392381286762829 -0.5433628842023259 -0.02088395190715675 0.2680639167135812 0.3235094080333575 0.9074598610793101 -0.2680639167135812 -0.3235094080333575 -0.9074598610793101 0.2377993407915023 -0.9701661113154197 -0.047214298408886 -0.2377993407915023 0.9701661113154197 0.047214298408886 0.3107209325440185 -0.2832329611922849 0.9073211073116425 -0.3107209325440185 0.2832329611922849 -0.9073211073116425 -0.3635273000075052 0.851692513376756 -0.3774490227927974 0.3635273000075052 -0.851692513376756 0.3774490227927974 -0.7564678452367355 -0.3791042515503695 0.5329506220836264 0.7564678452367355 0.3791042515503695 -0.5329506220836264 0.3157961521326879 0.1009840434610352 -0.9434378693186151 -0.3157961521326879 -0.1009840434610352 0.9434378693186151 0.8201569852139139 0.5717187770962822 0.02191254253516401 -0.8201569852139139 -0.5717187770962822 -0.02191254253516401 0.2680197907289993 0.2977210426974458 0.9162573724193051 -0.2680197907289993 -0.2977210426974458 -0.9162573724193051 -0.06942815001823158 -0.8752597050279347 -0.4786441065546077 0.06942815001823158 0.8752597050279347 0.4786441065546077 0.2548514201025964 -0.3497432858298242 0.9015156059041062 -0.2548514201025964 0.3497432858298242 -0.9015156059041062 0.07986773118218563 0.905558053888146 0.41663624008735 -0.07986773118218563 -0.905558053888146 -0.41663624008735 -0.04084834986914429 0.9986125210912749 0.03323319173200137 0.04084834986914429 -0.9986125210912749 -0.03323319173200137 -0.1825339355083896 -0.5374471019079156 -0.8233055174348108 0.1825339355083896 0.5374471019079156 0.8233055174348108 -0.5778181017680943 -0.8161625429142692 -0.002223693510753986 0.5778181017680943 0.8161625429142692 0.002223693510753986 -0.5021307064919959 -0.7356131203733092 -0.4546846057790966 0.5021307064919959 0.7356131203733092 0.4546846057790966 0.2804724294980047 0.2496565340564341 -0.9268262141817177 -0.2804724294980047 -0.2496565340564341 0.9268262141817177 0.5959242985213953 0.8024852760343626 0.02985987575050859 -0.5959242985213953 -0.8024852760343626 -0.02985987575050859 0.1886829069587858 0.3827062994548023 0.9043973954955827 -0.1886829069587858 -0.3827062994548023 -0.9043973954955827 0.02641669813824826 -0.9989910161941067 -0.03631952123774438 -0.02641669813824826 0.9989910161941067 0.03631952123774438 0.2495535357316533 -0.3596536697663272 0.8990952511427498 -0.2495535357316533 0.3596536697663272 -0.8990952511427498 -0.1610502094959316 0.9195286051879728 -0.3585107728679537 0.1610502094959316 -0.9195286051879728 0.3585107728679537 -0.5735199496354257 -0.6719919437662193 0.468510079809898 0.5735199496354257 0.6719919437662193 -0.468510079809898 0.2657695805823602 0.2945433575572579 -0.9179383097768463 -0.2657695805823602 -0.2945433575572579 0.9179383097768463 0.5837519371941382 0.8113694555299569 0.03022056344796199 -0.5837519371941382 -0.8113694555299569 -0.03022056344796199 0.1992132108648616 0.3545177770346929 0.9135815466521268 -0.1992132108648616 -0.3545177770346929 -0.9135815466521268 -0.2862029651949788 -0.4777049899822951 -0.8305936462913842 0.2862029651949788 0.4777049899822951 0.8305936462913842 -0.259630524598282 -0.8356972204193286 -0.4839443630007778 0.259630524598282 0.8356972204193286 0.4839443630007778 0.171173079251343 -0.3974581639717709 0.9015136076797746 -0.171173079251343 0.3974581639717709 -0.9015136076797746 0.2759497417719133 0.8621233294073297 0.4249648278477118 -0.2759497417719133 -0.8621233294073297 -0.4249648278477118 0.1627627831762174 0.9861080321639755 0.03315456702210878 -0.1627627831762174 -0.9861080321639755 -0.03315456702210878 -0.3417068928269009 -0.9396636876767586 -0.01638760068771967 0.3417068928269009 0.9396636876767586 0.01638760068771967 -0.303785009541162 -0.8502631311565697 -0.429845641799358 0.303785009541162 0.8502631311565697 0.429845641799358 0.2017864719686995 0.41224349150772 -0.8884466913889372 -0.2017864719686995 -0.41224349150772 0.8884466913889372 0.3533781354598145 0.9348240537342529 0.03504114636828513 -0.3533781354598145 -0.9348240537342529 -0.03504114636828513 0.1058796997325965 0.403970480962094 0.9086238714098311 -0.1058796997325965 -0.403970480962094 -0.9086238714098311 0.03908976938190037 0.9310403854777442 -0.3628164694981797 -0.03908976938190037 -0.9310403854777442 0.3628164694981797 -0.1853003135714887 -0.982022781340319 -0.03598681312553404 0.1853003135714887 0.982022781340319 0.03598681312553404 0.1773610796877783 -0.407874054326998 0.8956460256255497 -0.1773610796877783 0.407874054326998 -0.8956460256255497 -0.3549193342244598 -0.840823918289625 0.4087143313192582 0.3549193342244598 0.840823918289625 -0.4087143313192582 0.1822055254325907 0.439830622007737 -0.8794033036361193 -0.1822055254325907 -0.439830622007737 0.8794033036361193 0.3477622130530788 0.9369285015570612 0.03502036753754913 -0.3477622130530788 -0.9369285015570612 -0.03502036753754913 0.1203037155984768 0.3835571539917935 0.9156478174685484 -0.1203037155984768 -0.3835571539917935 -0.9156478174685484 0.3817045715444365 0.9236517523580562 0.03419152567479299 -0.3817045715444365 -0.9236517523580562 -0.03419152567479299 -0.3808638825150635 -0.376271781229598 -0.8446077489852065 0.3808638825150635 0.376271781229598 0.8446077489852065 -0.4502588378367068 -0.7431572936698991 -0.4949588021392989 0.4502588378367068 0.7431572936698991 0.4949588021392989 0.0853863809066545 -0.4049841614163864 0.9103279601097232 -0.0853863809066545 0.4049841614163864 -0.9103279601097232 0.4839679574708264 0.7461911190259736 0.4571365551214228 -0.4839679574708264 -0.7461911190259736 -0.4571365551214228 -0.1272640715387168 -0.9915104379252862 -0.02666285019639791 0.1272640715387168 0.9915104379252862 0.02666285019639791 -0.1074964943735469 -0.902313169276024 -0.417463110045014 0.1074964943735469 0.902313169276024 0.417463110045014 0.1272910013469667 0.8805065804099733 -0.4566236555751592 -0.1272910013469667 -0.8805065804099733 0.4566236555751592 0.1306357975299962 0.9907866742362398 0.03572190587850656 -0.1306357975299962 -0.9907866742362398 -0.03572190587850656 0.02654281869850746 0.3881449395306496 0.9212160358419118 -0.02654281869850746 -0.3881449395306496 -0.9212160358419118 0.24608647452967 0.8881051220699402 -0.3882148106482991 -0.24608647452967 -0.8881051220699402 0.3882148106482991 -0.4100890657649051 -0.9114022377113701 -0.03424790847299099 0.4100890657649051 0.9114022377113701 0.03424790847299099 0.09586480764581787 -0.4238883735895807 0.900626773636344 -0.09586480764581787 0.4238883735895807 -0.900626773636344 -0.1414171634691401 -0.9177766694141802 0.3710622197898309 0.1414171634691401 0.9177766694141802 -0.3710622197898309 0.08231754639569727 0.532746798148681 -0.8422616402387804 -0.08231754639569727 -0.532746798148681 0.8422616402387804 0.03577593509908762 0.376879423980663 0.9255711654150584 -0.03577593509908762 -0.376879423980663 -0.9255711654150584 0.674701977245175 0.5584531599486828 0.4826047140722749 -0.674701977245175 -0.5584531599486828 -0.4826047140722749 0.6195348000722665 0.7846501978477477 0.02237629363650723 -0.6195348000722665 -0.7846501978477477 -0.02237629363650723 -0.4569983235447788 -0.2308211994285236 -0.8589959872849463 0.4569983235447788 0.2308211994285236 0.8589959872849463 -0.640204806147654 -0.5821627797804134 -0.5012228087625168 0.640204806147654 0.5821627797804134 0.5012228087625168 0.004104716059359423 -0.3751759950358459 0.9269445096956641 -0.004104716059359423 0.3751759950358459 -0.9269445096956641 0.07708188418723362 -0.9963873970472187 -0.03564460878750064 -0.07708188418723362 0.9963873970472187 0.03564460878750064 0.08908413621321892 -0.9018765858658367 -0.4227086946611419 -0.08908413621321892 0.9018765858658367 0.4227086946611419 -0.06621297605435472 0.8988127326352441 -0.4333030272855141 0.06621297605435472 -0.8988127326352441 0.4333030272855141 -0.08027734084685322 0.9960943927787809 0.03676287830447991 0.08027734084685322 -0.9960943927787809 -0.03676287830447991 -0.04438937087252709 0.3395012522623767 0.9395575998659259 0.04438937087252709 -0.3395012522623767 -0.9395575998659259 0.01160241142300691 -0.4044586493257089 0.9144826871159424 -0.01160241142300691 0.4044586493257089 -0.9144826871159424 0.460879652033973 0.7725758700024636 -0.4367109701289637 -0.460879652033973 -0.7725758700024636 0.4367109701289637 -0.652862642100236 -0.7569451882164892 -0.02836111044728642 0.652862642100236 0.7569451882164892 0.02836111044728642 0.06267172098493584 -0.9321992982217414 0.3564782234354281 -0.06267172098493584 0.9321992982217414 -0.3564782234354281 -0.02540906870737653 0.5793748184688801 -0.8146650839158238 0.02540906870737653 -0.5793748184688801 0.8146650839158238 -0.04650596936050504 0.3295030845688647 0.9430084369046989 0.04650596936050504 -0.3295030845688647 -0.9430084369046989 -0.06468376165068974 -0.3131914276879613 0.9474846387153163 0.06468376165068974 0.3131914276879613 -0.9474846387153163 0.8190040891150869 0.2677833677801808 0.5074685901147686 -0.8190040891150869 -0.2677833677801808 -0.5074685901147686 0.8580878426413556 0.5134904032115263 0.003586101053787535 -0.8580878426413556 -0.5134904032115263 -0.003586101053787535 -0.4994845441692579 -0.04703125899196081 -0.8650452305016542 0.4994845441692579 0.04703125899196081 0.8650452305016542 -0.8539216757964206 -0.5200262819562841 -0.01975949593881323 0.8539216757964206 0.5200262819562841 0.01975949593881323 0.2852085614390063 -0.9574829271713448 -0.04338802435333355 -0.2852085614390063 0.9574829271713448 0.04338802435333355 0.2923757519874668 -0.8450098693040526 -0.4477440568321495 -0.2923757519874668 0.8450098693040526 0.4477440568321495 -0.2599931803788589 0.8674723641581483 -0.4241405941175153 0.2599931803788589 -0.8674723641581483 0.4241405941175153 -0.2945837843567172 0.9549877330598857 0.03491165563555571 0.2945837843567172 -0.9549877330598857 -0.03491165563555571 -0.1034251404298343 0.26085776955375 0.9598210585262816 0.1034251404298343 -0.26085776955375 -0.9598210585262816 -0.8820069727444916 -0.4709006088845356 -0.01778529117757768 0.8820069727444916 0.4709006088845356 0.01778529117757768 -0.06788913571598272 -0.3406639787186241 0.9377308349709599 0.06788913571598272 0.3406639787186241 -0.9377308349709599 0.6640268346823709 0.5539656351546057 -0.5021856607764358 -0.6640268346823709 -0.5539656351546057 0.5021856607764358 -0.4965328229289699 -0.007212757334351909 -0.8679879791136649 0.4965328229289699 0.007212757334351909 0.8679879791136649 0.2614934444580715 -0.8933487023252803 0.3654439417464616 -0.2614934444580715 0.8933487023252803 -0.3654439417464616 -0.1382473958712453 0.583207717912289 -0.8004726199579592 0.1382473958712453 -0.583207717912289 0.8004726199579592 -0.114141413431016 0.2415027933932298 0.9636639136769817 0.114141413431016 -0.2415027933932298 -0.9636639136769817 -0.8822930021998877 0.02221209157725519 -0.4701762236192644 0.8822930021998877 -0.02221209157725519 0.4701762236192644 -0.1188250463877658 -0.2260188820695762 0.9668485265536502 0.1188250463877658 0.2260188820695762 -0.9668485265536502 0.8587563515222183 -0.08016604293207227 0.5060740403151119 -0.8587563515222183 0.08016604293207227 -0.5060740403151119 0.8050736187094051 0.1826511136534107 -0.564353647227793 -0.8050736187094051 -0.1826511136534107 0.564353647227793 -0.492612678330724 0.1528176287577358 -0.856726048097461 0.492612678330724 -0.1528176287577358 0.856726048097461 0.5098126035478107 -0.8590875699022332 -0.04538343864537134 -0.5098126035478107 0.8590875699022332 0.04538343864537134 0.5032434482250976 -0.7119749758641289 -0.4897322386384079 -0.5032434482250976 0.7119749758641289 0.4897322386384079 -0.4603753100173895 0.7788984058880536 -0.4258777374217175 0.4603753100173895 -0.7788984058880536 0.4258777374217175 -0.523498639095926 0.8514919385532362 0.03017703503601408 0.523498639095926 -0.8514919385532362 -0.03017703503601408 -0.1518535687965457 0.154520002132968 0.9762500000433191 0.1518535687965457 -0.154520002132968 -0.9762500000433191 -0.9986631704877207 -0.05164308480979089 -0.002205380407690168 0.9986631704877207 0.05164308480979089 0.002205380407690168 -0.1318326200590944 -0.234976129845822 0.9630194072245034 0.1318326200590944 0.234976129845822 -0.9630194072245034 0.8570540920898327 -0.04024487428179111 0.5136522494121047 -0.8570540920898327 0.04024487428179111 -0.5136522494121047 0.8020522544097641 0.2179622658222837 -0.556061715885774 -0.8020522544097641 -0.2179622658222837 0.556061715885774 0.4616480901245103 -0.79099306047077 0.4015109203639135 -0.4616480901245103 0.79099306047077 -0.4015109203639135 -0.25257374780988 0.5415648808669609 -0.8018191702178402 0.25257374780988 -0.5415648808669609 0.8018191702178402 -0.1597949684978955 0.1228200618629221 0.9794798621956169 0.1597949684978955 -0.1228200618629221 -0.9794798621956169 -0.4353175597640887 0.3341211481231659 -0.8359794737539293 0.4353175597640887 -0.3341211481231659 0.8359794737539293 -0.8085300793051226 0.3822941225048211 -0.4473592681024069 0.8085300793051226 -0.3822941225048211 0.4473592681024069 -0.1551321596947687 -0.1168575652958692 0.9809578596767339 0.1551321596947687 0.1168575652958692 -0.9809578596767339 0.7805990224724158 -0.4067995959297094 0.4745305626264066 -0.7805990224724158 0.4067995959297094 -0.4745305626264066 0.924486303246182 -0.3785777619601645 -0.04476553651461776 -0.924486303246182 0.3785777619601645 0.04476553651461776 0.7501967760572326 -0.6593607613057052 -0.04947912331170887 -0.7501967760572326 0.6593607613057052 0.04947912331170887 0.6978478847480852 -0.4622788558928253 -0.5470891967010899 -0.6978478847480852 0.4622788558928253 0.5470891967010899 -0.6649136060196553 0.6072581488774166 -0.434887844336804 0.6649136060196553 -0.6072581488774166 0.434887844336804 -0.760467105916375 0.6489733367243699 0.02287769743681768 0.760467105916375 -0.6489733367243699 -0.02287769743681768 -0.171953642694786 0.01941832872952423 0.9849136374694718 0.171953642694786 -0.01941832872952423 -0.9849136374694718 0.8041150128230653 -0.178476691563577 -0.5670494834854194 -0.8041150128230653 0.178476691563577 0.5670494834854194 -0.9246620643280678 0.3805553436602243 0.01333031148191201 0.9246620643280678 -0.3805553436602243 -0.01333031148191201 -0.1673212804961899 -0.09874576694697208 0.980944882551089 0.1673212804961899 0.09874576694697208 -0.980944882551089 0.6515713666903741 -0.6172349448124972 0.4409940782046305 -0.6515713666903741 0.6172349448124972 -0.4409940782046305 -0.3609566471516233 0.4491862863400353 -0.8172771739386255 0.3609566471516233 -0.4491862863400353 0.8172771739386255 -0.1680958210730742 -0.01327446757619972 0.9856812788362867 0.1680958210730742 0.01327446757619972 -0.9856812788362867 0.7077234985869574 -0.7046654485268453 -0.05073514758327681 -0.7077234985869574 0.7046654485268453 0.05073514758327681 -0.342296253152495 0.4701368124202711 -0.8135137692043508 0.342296253152495 -0.4701368124202711 0.8135137692043508 -0.6285692651519454 0.6463050638907462 -0.4326551089442051 0.6285692651519454 -0.6463050638907462 0.4326551089442051 -0.1684940725506878 0.01077890427230811 0.9856437301266476 0.1684940725506878 -0.01077890427230811 -0.9856437301266476 0.6208745200734542 -0.6569329412250992 0.4277311551160358 -0.6208745200734542 0.6569329412250992 -0.4277311551160358 0.8016952897873982 -0.3477265981354733 0.4861798795526515 -0.8016952897873982 0.3477265981354733 -0.4861798795526515 0.8149503753719954 -0.1081215601672776 -0.569355437234104 -0.8149503753719954 0.1081215601672776 0.569355437234104 -0.8324307492478874 0.3218681311364857 -0.4510653543172061 0.8324307492478874 -0.3218681311364857 0.4510653543172061 -0.951308818898382 0.308069603019877 0.01022989644818191 0.951308818898382 -0.308069603019877 -0.01022989644818191 -0.1634302060126187 -0.1247405643740396 0.9786369905957566 0.1634302060126187 0.1247405643740396 -0.9786369905957566 0.6678646842738194 -0.5214257130287312 -0.5311044994088369 -0.6678646842738194 0.5214257130287312 0.5311044994088369 -0.718278485553605 0.6953136880547992 0.02479702390314172 0.718278485553605 -0.6953136880547992 -0.02479702390314172 -0.1694016656235607 0.04483516685173435 0.9845267307175263 0.1694016656235607 -0.04483516685173435 -0.9845267307175263 0.8048888050458055 -0.3506580527077226 0.4787409963468383 -0.8048888050458055 0.3506580527077226 -0.4787409963468383 0.8033788736156395 -0.1702434220385553 -0.5706133215064897 -0.8033788736156395 0.1702434220385553 0.5706133215064897 -0.4492202155089497 0.3040881169407794 -0.840078338676521 0.4492202155089497 -0.3040881169407794 0.840078338676521 -0.1500286448931143 -0.1381858466799649 0.9789770566713384 0.1500286448931143 0.1381858466799649 -0.9789770566713384 0.4259236542733373 -0.8178625688033844 0.3868977374976181 -0.4259236542733373 0.8178625688033844 -0.3868977374976181 0.4675574684184699 -0.8826942109090509 -0.04733860743367385 -0.4675574684184699 0.8826942109090509 0.04733860743367385 -0.2320262889549334 0.5524684967797857 -0.8005887591639579 0.2320262889549334 -0.5524684967797857 0.8005887591639579 -0.4235561613148924 0.8000764739943699 -0.4248268046780114 0.4235561613148924 -0.8000764739943699 0.4248268046780114 -0.1520170731640112 0.1435797585607158 0.9778934821330462 0.1520170731640112 -0.1435797585607158 -0.9778934821330462 0.8563174279290809 0.03077461079569902 0.5155321386250295 -0.8563174279290809 -0.03077461079569902 -0.5155321386250295 0.785470581674461 0.2863404754438074 -0.5486757671399369 -0.785470581674461 -0.2863404754438074 0.5486757671399369 -0.8789037696885808 -0.04562595251895923 -0.4748120007791926 0.8789037696885808 0.04562595251895923 0.4748120007791926 -0.9909627935175657 -0.1340079579351373 -0.005882947723453319 0.9909627935175657 0.1340079579351373 0.005882947723453319 -0.1214837412088746 -0.2566053289175989 0.9588510863491715 0.1214837412088746 0.2566053289175989 -0.9588510863491715 -0.1424467051888185 0.1742469875797838 0.9743443557080939 0.1424467051888185 -0.1742469875797838 -0.9743443557080939 0.4649641777172875 -0.7433751702324944 -0.4808343474851776 -0.4649641777172875 0.7433751702324944 0.4808343474851776 -0.4806947298180828 0.8763132906175912 0.03174261192922667 0.4806947298180828 -0.8763132906175912 -0.03174261192922667 0.8608037503856283 -0.01643322137169287 0.5086716549576807 -0.8608037503856283 0.01643322137169287 -0.5086716549576807 0.7900847555419815 0.2562248601408235 -0.5568796100648529 -0.7900847555419815 -0.2562248601408235 0.5568796100648529 -0.4979955375276722 0.116898192729161 -0.859264369760076 0.4979955375276722 -0.116898192729161 0.859264369760076 -0.1096791654130207 -0.2434487385707459 0.9636924781083518 0.1096791654130207 0.2434487385707459 -0.9636924781083518 -0.1039480623327925 0.2597358875639912 0.9600687834986634 0.1039480623327925 -0.2597358875639912 -0.9600687834986634 0.2255224611613599 -0.904207791908424 0.3626953109206335 -0.2255224611613599 0.904207791908424 -0.3626953109206335 0.2462915013868555 -0.9683106333600775 -0.04141272348462648 -0.2462915013868555 0.9683106333600775 0.04141272348462648 -0.1176960056074974 0.5854780210354769 -0.8020992065501759 0.1176960056074974 -0.5854780210354769 0.8020992065501759 -0.224540275744401 0.8769444447397742 -0.4249118795805522 0.224540275744401 -0.8769444447397742 0.4249118795805522 0.8181774061953669 0.5749098000536865 0.008028312005125892 -0.8181774061953669 -0.5749098000536865 -0.008028312005125892 0.6305000530243112 0.6022946171061921 -0.4896027750546829 -0.6305000530243112 -0.6022946171061921 0.4896027750546829 -0.4949950778106962 -0.03895226334673744 -0.8680222313531776 0.4949950778106962 0.03895226334673744 0.8680222313531776 -0.8451084478559042 -0.5342109596224031 -0.02025739326505952 0.8451084478559042 0.5342109596224031 0.02025739326505952 -0.0538163228126221 -0.3553819643204697 0.9331706504357347 0.0538163228126221 0.3553819643204697 -0.9331706504357347 -0.2549154754785329 0.9663207723906242 0.03524578283909989 0.2549154754785329 -0.9663207723906242 -0.03524578283909989 -0.09422842523274229 0.2772615555168482 0.95616266069667 0.09422842523274229 -0.2772615555168482 -0.95616266069667 0.2548985531969059 -0.8600368136205863 -0.4419993289536457 -0.2548985531969059 0.8600368136205863 0.4419993289536457 0.7992879325211242 0.3271162399258568 0.5041168183098793 -0.7992879325211242 -0.3271162399258568 -0.5041168183098793 -0.4949187544227878 -0.08219062784281732 -0.8650434250460493 0.4949187544227878 0.08219062784281732 0.8650434250460493 -0.8143993150854482 -0.5798944858367074 -0.02182065270639956 0.8143993150854482 0.5798944858367074 0.02182065270639956 -0.05282635912663602 -0.3265000265018341 0.9437198252001096 0.05282635912663602 0.3265000265018341 -0.9437198252001096 -0.03140988032332349 0.8992719256145415 -0.4362607284865198 0.03140988032332349 -0.8992719256145415 0.4362607284865198 -0.03222483287965563 0.3414911777191863 0.9393323882874697 0.03222483287965563 -0.3414911777191863 -0.9393323882874697 0.02592929075766842 -0.9334593989305918 0.3577446329841197 -0.02592929075766842 0.9334593989305918 -0.3577446329841197 0.04047920242278022 -0.998569081342663 -0.03494601490421647 -0.04047920242278022 0.998569081342663 0.03494601490421647 -0.005328154191109313 0.5750362599656316 -0.818110573515374 0.005328154191109313 -0.5750362599656316 0.818110573515374 0.5749242631461603 0.8178528227190813 0.02405934363766486 -0.5749242631461603 -0.8178528227190813 -0.02405934363766486 0.4214741465651992 0.8001850432365848 -0.4266889269217117 -0.4214741465651992 -0.8001850432365848 0.4266889269217117 -0.607500139413018 -0.6169766682208152 -0.5002832912303845 0.607500139413018 0.6169766682208152 0.5002832912303845 -0.6082853638018145 -0.7931728257612001 -0.02942421891039525 0.6082853638018145 0.7931728257612001 0.02942421891039525 0.02732148043861099 -0.411197043048017 0.9111369427782027 -0.02732148043861099 0.411197043048017 -0.9111369427782027 -0.04233230297869504 0.99843938351606 0.03642490313768718 0.04233230297869504 -0.99843938351606 -0.03642490313768718 -0.03222572048387662 0.3507365514660342 0.9359195341507778 0.03222572048387662 -0.3507365514660342 -0.9359195341507778 0.0535986355584465 -0.9051101330327424 -0.4217852929485856 -0.0535986355584465 0.9051101330327424 0.4217852929485856 0.6412311608394218 0.6027462110192511 0.4748890433253478 -0.6412311608394218 -0.6027462110192511 -0.4748890433253478 -0.4461736197689663 -0.2574888449979427 -0.8571047752310586 0.4461736197689663 0.2574888449979427 0.8571047752310586 0.01845899878033352 -0.3828914709383621 0.9236088927932022 -0.01845899878033352 0.3828914709383621 -0.9236088927932022 0.1011375575336253 0.5194380772539559 -0.8485017845325052 -0.1011375575336253 -0.5194380772539559 0.8485017845325052 0.1630062188243885 0.8718097571228917 -0.4619271804190572 -0.1630062188243885 -0.8718097571228917 0.4619271804190572 0.05107088372148411 0.3804430891390565 0.9233931019680829 -0.05107088372148411 -0.3804430891390565 -0.9233931019680829 -0.1789110234207843 -0.9095031086441852 0.375226519671906 0.1789110234207843 0.9095031086441852 -0.375226519671906 -0.164464998711951 -0.9860462985513705 -0.02576744674622084 0.164464998711951 0.9860462985513705 0.02576744674622084 0.3395208403843986 0.9401053719795921 0.03045469618604664 -0.3395208403843986 -0.9401053719795921 -0.03045469618604664 0.2081649944077018 0.9007460282722055 -0.3812137558576403 -0.2081649944077018 -0.9007460282722055 0.3812137558576403 -0.4170652272044756 -0.7630490978978199 -0.4937739062103245 0.4170652272044756 0.7630490978978199 0.4937739062103245 -0.3672005745438822 -0.9296732929524478 -0.02951790008782431 0.3672005745438822 0.9296732929524478 0.02951790008782431 0.1118377840482386 -0.4246172504853856 0.8984389242733257 -0.1118377840482386 0.4246172504853856 -0.8984389242733257 -0.142990897232966 -0.896970561440987 -0.418326923848743 0.142990897232966 0.896970561440987 0.418326923848743 0.1697237926371042 0.9848328332159376 0.03602949947954706 -0.1697237926371042 -0.9848328332159376 -0.03602949947954706 0.04030372198163225 0.3929482365801176 0.9186769254547559 -0.04030372198163225 -0.3929482365801176 -0.9186769254547559 0.4425223119009562 0.7807305174758044 0.4411732795079453 -0.4425223119009562 -0.7807305174758044 -0.4411732795079453 -0.3615543092865395 -0.3924585997017193 -0.8457273372408504 0.3615543092865395 0.3924585997017193 0.8457273372408504 0.1003911431603658 -0.4059716081359349 0.9083549260957843 -0.1003911431603658 0.4059716081359349 -0.9083549260957843 -0.390456001742171 -0.9205063126905769 -0.01456842477125177 0.390456001742171 0.9205063126905769 0.01456842477125177 0.2028030013390004 0.4137140405601716 -0.8875312024324948 -0.2028030013390004 -0.4137140405601716 0.8875312024324948 0.3966129038026112 0.9173788643791272 0.03337998992995159 -0.3966129038026112 -0.9173788643791272 -0.03337998992995159 0.1368380461281864 0.3784294566205597 0.9154597181163616 -0.1368380461281864 -0.3784294566205597 -0.9154597181163616 -0.4037532977559437 -0.8135903237631738 0.4183946218943716 0.4037532977559437 0.8135903237631738 -0.4183946218943716 0.21303956080358 0.9762374115492939 -0.03968200882203873 -0.21303956080358 -0.9762374115492939 0.03968200882203873 0.1082255873183704 0.9240476898198827 -0.366637544706119 -0.1082255873183704 -0.9240476898198827 0.366637544706119 -0.3281825396220066 -0.7677697899706376 -0.5502960751229226 0.3281825396220066 0.7677697899706376 0.5502960751229226 -0.232870310831776 -0.9718855641032611 -0.03478316576733741 0.232870310831776 0.9718855641032611 0.03478316576733741 0.147399415242306 -0.3971111236085312 0.9058565934476583 -0.147399415242306 0.3971111236085312 -0.9058565934476583 -0.3468619440926344 -0.8319654750379002 -0.4330360724988613 0.3468619440926344 0.8319654750379002 0.4330360724988613 0.2233818142720267 0.3809947250783958 -0.8971864825748187 -0.2233818142720267 -0.3809947250783958 0.8971864825748187 0.4038637965610512 0.9142113244796445 0.03334198585069928 -0.4038637965610512 -0.9142113244796445 -0.03334198585069928 0.1223556349422535 0.4012342646726683 0.9077665798268084 -0.1223556349422535 -0.4012342646726683 -0.9077665798268084 0.3151262054911223 0.8509720714544223 0.4201690233909879 -0.3151262054911223 -0.8509720714544223 -0.4201690233909879 -0.3363285040587479 -0.460545695550053 -0.8214504243519037 0.3363285040587479 0.460545695550053 0.8214504243519037 0.1477922431507489 -0.3878572766046277 0.9097934852752637 -0.1477922431507489 0.3878572766046277 -0.9097934852752637 -0.6420223712039709 -0.5915254973598801 0.4877549188340153 0.6420223712039709 0.5915254973598801 -0.4877549188340153 -0.6565371471631942 -0.754292366419499 0.001414339452328107 0.6565371471631942 0.754292366419499 -0.001414339452328107 0.2874131142788096 0.2414302979496353 -0.926879233218927 -0.2874131142788096 -0.2414302979496353 0.926879233218927 0.6582517385598384 0.7522703007461163 0.0281787738962858 -0.6582517385598384 -0.7522703007461163 -0.0281787738962858 0.2201302461169165 0.3383242007378086 0.9149204391309819 -0.2201302461169165 -0.3383242007378086 -0.9149204391309819 0.211674352703625 0.3682913629543855 0.90529301354904 -0.211674352703625 -0.3682913629543855 -0.90529301354904 -0.5633788388508121 -0.6828498403304095 -0.4651025472902132 0.5633788388508121 0.6828498403304095 0.4651025472902132 0.2983727723315879 0.1911953128740891 -0.9351032248185981 -0.2983727723315879 -0.1911953128740891 0.9351032248185981 0.674927701277569 0.7373622019771242 0.02774132555634514 -0.674927701277569 -0.7373622019771242 -0.02774132555634514 0.2878281304533213 0.272313808334655 0.9181504000489368 -0.2878281304533213 -0.272313808334655 -0.9181504000489368 -0.7965447710859634 -0.2533387290974468 0.548940721749535 0.7965447710859634 0.2533387290974468 -0.548940721749535 -0.8952334756083304 -0.4451678348495047 0.01956075064083848 0.8952334756083304 0.4451678348495047 -0.01956075064083848 0.323305146806377 0.02811834809783417 -0.9458769161729004 -0.323305146806377 -0.02811834809783417 0.9458769161729004 0.8886035632950323 0.4583424303461484 0.01749067876778379 -0.8886035632950323 -0.4583424303461484 -0.01749067876778379 0.906754285544305 0.4213211032482745 0.01688767611880801 -0.906754285544305 -0.4213211032482745 -0.01688767611880801 0.2923095969905519 0.2931838782058966 0.910273757211187 -0.2923095969905519 -0.2931838782058966 -0.910273757211187 -0.7420274019922476 -0.4512271064426712 -0.4957715533428774 0.7420274019922476 0.4512271064426712 0.4957715533428774 0.3148774672198147 -0.004859640941630026 -0.9491198894381852 -0.3148774672198147 0.004859640941630026 0.9491198894381852 0.9986401715628105 0.05205829125818463 0.002782454362333355 -0.9986401715628105 -0.05205829125818463 -0.002782454362333355 0.3382231696957797 0.1884624621425752 0.9220016203044864 -0.3382231696957797 -0.1884624621425752 -0.9220016203044864 -0.8102135096867793 0.1385468360586977 0.5695251029929724 0.8102135096867793 -0.1385468360586977 -0.5695251029929724 -0.8502737882648265 -0.1027684743468968 -0.5162103502160649 0.8502737882648265 0.1027684743468968 0.5162103502160649 0.303877800446322 -0.1820341730033242 -0.935158725701098 -0.303877800446322 0.1820341730033242 0.935158725701098 0.2901892237089887 -0.1816512751772797 -0.93957066188214 -0.2901892237089887 0.1816512751772797 0.93957066188214 0.9998125299270766 -0.01936037700034898 0.0002842590771083226 -0.9998125299270766 0.01936037700034898 -0.0002842590771083226 0.3506254054122222 0.1891087030700747 0.9172239222254668 -0.3506254054122222 -0.1891087030700747 -0.9172239222254668 -0.8135822918348952 0.08558692183375054 0.5751162780027209 0.8135822918348952 -0.08558692183375054 -0.5751162780027209 -0.8477088503314019 -0.1457273455941529 -0.5100521991089688 0.8477088503314019 0.1457273455941529 0.5100521991089688 0.233260413971422 -0.3605413853497441 -0.9031054693245791 -0.233260413971422 0.3605413853497441 0.9031054693245791 0.9227544269434004 -0.3850370367752869 -0.01645441787676223 -0.9227544269434004 0.3850370367752869 0.01645441787676223 0.3711224996238446 0.08354633718180803 0.9248178738629855 -0.3711224996238446 -0.08354633718180803 -0.9248178738629855 -0.6915447098790261 0.481439542933741 0.5384996571383163 0.6915447098790261 -0.481439542933741 -0.5384996571383163 -0.8981601842993114 0.4388146585051151 0.02738574118891374 0.8981601842993114 -0.4388146585051151 -0.02738574118891374 -0.8429287075021802 0.2038949616908318 -0.4978936017522199 0.8429287075021802 -0.2038949616908318 0.4978936017522199 0.2290063307694923 -0.3335946999735647 -0.9144783631213158 -0.2290063307694923 0.3335946999735647 0.9144783631213158 0.8927780707210031 -0.4501282400025586 -0.01821768349386265 -0.8927780707210031 0.4501282400025586 0.01821768349386265 0.3806823163284625 0.05861925864707265 0.9228460091209498 -0.3806823163284625 -0.05861925864707265 -0.9228460091209498 -0.6731376809319953 0.739009762831531 0.02739038059574327 0.6731376809319953 -0.739009762831531 -0.02739038059574327 0.1328407661518205 -0.4811534645646102 -0.8665129395373562 -0.1328407661518205 0.4811534645646102 0.8665129395373562 0.51619967388126 -0.6859437923518563 -0.5128537904889018 -0.51619967388126 0.6859437923518563 0.5128537904889018 0.3820894849711712 -0.03801541506118901 0.9233430855820555 -0.3820894849711712 0.03801541506118901 -0.9233430855820555 -0.4982123819319361 0.7158544086919615 0.4892206946215469 0.4982123819319361 -0.7158544086919615 -0.4892206946215469 -0.7240796828342754 0.517304253506521 -0.4561851841200856 0.7240796828342754 -0.517304253506521 0.4561851841200856 0.6700291588090248 -0.7418444177367702 -0.02697751320012681 -0.6700291588090248 0.7418444177367702 0.02697751320012681 0.3799147067183139 -0.07529237210084216 0.9219522082638373 -0.3799147067183139 0.07529237210084216 -0.9219522082638373 -0.2919936616748643 0.8457083057970546 0.446673441171042 0.2919936616748643 -0.8457083057970546 -0.446673441171042 -0.4366467943183944 0.8991718161908844 0.0288031591922864 0.4366467943183944 -0.8991718161908844 -0.0288031591922864 0.02176310891147589 -0.5441273983997713 -0.838720299862358 -0.02176310891147589 0.5441273983997713 0.838720299862358 0.2991033077776762 -0.8171348416011702 -0.4927756709882125 -0.2991033077776762 0.8171348416011702 0.4927756709882125 0.3640512938492289 -0.1638710919855381 0.9168494536499271 -0.3640512938492289 0.1638710919855381 -0.9168494536499271 0.3516823252399595 -0.1960017035970046 0.9153703481656413 -0.3516823252399595 0.1960017035970046 -0.9153703481656413 -0.5385220158761696 0.7373253777364415 -0.4078545399557058 0.5385220158761696 -0.7373253777364415 0.4078545399557058 0.4313161246761184 -0.9015999330060595 -0.03292356903259632 -0.4313161246761184 0.9015999330060595 0.03292356903259632 0.3161408569706932 -0.276318589201155 0.9075808480877718 -0.3161408569706932 0.276318589201155 -0.9075808480877718 -0.09031941409519692 0.9018366056574806 0.4225318214450767 0.09031941409519692 -0.9018366056574806 -0.4225318214450767 -0.2181477144127747 0.9754001696778496 0.03171882231270052 0.2181477144127747 -0.9754001696778496 -0.03171882231270052 -0.0896782978087952 -0.5583215418063012 -0.8247635169290356 0.0896782978087952 0.5583215418063012 0.8247635169290356 0.0960842676760772 -0.8714986070373602 -0.4808929105706309 -0.0960842676760772 0.8714986070373602 0.4808929105706309 0.2086396917803162 -0.9773332616215297 -0.03590507961330022 -0.2086396917803162 0.9773332616215297 0.03590507961330022 0.303755031098276 -0.2967980573531617 0.9053418107178497 -0.303755031098276 0.2967980573531617 -0.9053418107178497 -0.3354200464215088 0.8652481196877145 -0.3726111697674499 0.3354200464215088 -0.8652481196877145 0.3726111697674499 -0.09634588207538014 -0.872989311001495 -0.4781287837855525 0.09634588207538014 0.872989311001495 0.4781287837855525 0.2454546829535896 -0.3778153799396332 0.8927527862164438 -0.2454546829535896 0.3778153799396332 -0.8927527862164438 0.1068701902825446 0.902645124026476 0.4169059156454855 -0.1068701902825446 -0.902645124026476 -0.4169059156454855 -0.01345127660992325 0.9993635619425534 0.03303837494574641 0.01345127660992325 -0.9993635619425534 -0.03303837494574641 -0.197404561831315 -0.5321700194341986 -0.823302198092287 0.197404561831315 0.5321700194341986 0.823302198092287 -0.003023102013275489 -0.9993161130292113 -0.03685331863490642 0.003023102013275489 0.9993161130292113 0.03685331863490642 0.24107826661194 -0.3871069096442774 0.8899603979239974 -0.24107826661194 0.3871069096442774 -0.8899603979239974 -0.1343592170136983 0.9238922681259719 -0.3582885397281262 0.1343592170136983 -0.9238922681259719 0.3582885397281262 -0.2993726317215964 -0.4646029928355155 -0.8333787172854652 0.2993726317215964 0.4646029928355155 0.8333787172854652 -0.2850223760582144 -0.8250074135917964 -0.4879805453752275 0.2850223760582144 0.8250074135917964 0.4879805453752275 0.1571476355888667 -0.4017430088752111 0.9021680416910815 -0.1571476355888667 0.4017430088752111 -0.9021680416910815 0.3048783085344589 0.8512515442137769 0.4271065738885638 -0.3048783085344589 -0.8512515442137769 -0.4271065738885638 0.1916387936300435 0.9809179758786124 0.03277952675417279 -0.1916387936300435 -0.9809179758786124 -0.03277952675417279 0.06722148092182911 0.9289434869574044 -0.3640676730253523 -0.06722148092182911 -0.9289434869574044 0.3640676730253523 -0.2140869666060625 -0.9760638362636109 -0.0382904461684297 0.2140869666060625 0.9760638362636109 0.0382904461684297 0.1633948649649251 -0.4107173382797202 0.8970024448904896 -0.1633948649649251 0.4107173382797202 -0.8970024448904896 0.4114800596926324 0.9109495221915634 0.02924258015822321 -0.4114800596926324 -0.9109495221915634 -0.02924258015822321 -0.3926793406448987 -0.3585905939007256 -0.8468858963264251 0.3926793406448987 0.3585905939007256 0.8468858963264251 -0.4758287826506283 -0.7262057498268171 -0.496197721195585 0.4758287826506283 0.7262057498268171 0.496197721195585 0.07403728528170142 -0.4018813093119968 0.9126937567518423 -0.07403728528170142 0.4018813093119968 -0.9126937567518423 0.5074483663098665 0.7336641542103471 0.4519215245551642 -0.5074483663098665 -0.7336641542103471 -0.4519215245551642 0.2748061558194914 0.877426979723126 -0.3931964801186126 -0.2748061558194914 -0.877426979723126 0.3931964801186126 -0.4416162494800723 -0.8965715608945203 -0.03368270164815051 0.4416162494800723 0.8965715608945203 0.03368270164815051 0.08549772772187718 -0.4236445040367092 0.9017846044116558 -0.08549772772187718 0.4236445040367092 -0.9017846044116558 0.6983955618814588 0.5261174618390851 0.485225777852208 -0.6983955618814588 -0.5261174618390851 -0.485225777852208 0.6529258623062569 0.7571641840513471 0.01975390395564597 -0.6529258623062569 -0.7571641840513471 -0.01975390395564597 -0.4651454729636889 -0.2078396388980428 -0.8604896126532367 0.4651454729636889 0.2078396388980428 0.8604896126532367 -0.6654104129941675 -0.5535469302112676 -0.5008141155484873 0.6654104129941675 0.5535469302112676 0.5008141155484873 -0.00537325195436097 -0.3680234573290827 0.9298009803280397 0.00537325195436097 0.3680234573290827 -0.9298009803280397 0.0008797982458484917 -0.398149274166836 0.9173202175006656 -0.0008797982458484917 0.398149274166836 -0.9173202175006656 0.4894395591614004 0.7496389984441606 -0.4455224909468991 -0.4894395591614004 -0.7496389984441606 0.4455224909468991 -0.6864868232200563 -0.7266462734301518 -0.0268520921961055 0.6864868232200563 0.7266462734301518 0.0268520921961055 -0.07261225421506358 -0.3044534169131987 0.9497555356341361 0.07261225421506358 0.3044534169131987 -0.9497555356341361 0.8316088337424303 0.222704652903695 0.5087527741610846 -0.8316088337424303 -0.222704652903695 -0.5087527741610846 0.8847442103228584 0.4660768166585395 -0.0002885716964004705 -0.8847442103228584 -0.4660768166585395 0.0002885716964004705 -0.5015710315013272 -0.02021660815949402 -0.8648802166272623 0.5015710315013272 0.02021660815949402 0.8648802166272623 -0.8822534233508295 -0.4704253684624868 -0.01813476475380031 0.8822534233508295 0.4704253684624868 0.01813476475380031 -0.9073069238785885 -0.4200745834998159 -0.01820687176395342 0.9073069238785885 0.4200745834998159 0.01820687176395342 -0.07684133681273105 -0.3297787419806832 0.9409258155106971 0.07684133681273105 0.3297787419806832 -0.9409258155106971 0.6901815481734175 0.5152408968621404 -0.508110469053376 -0.6901815481734175 -0.5152408968621404 0.508110469053376 -0.4966996466665293 0.01610676029339463 -0.8677730309673124 0.4966996466665293 -0.01610676029339463 0.8677730309673124 -0.881134842542127 0.07682235708589806 -0.4665830201690023 0.881134842542127 -0.07682235708589806 0.4665830201690023 -0.1213144463156395 -0.2131759170429181 0.9694528526483588 0.1213144463156395 0.2131759170429181 -0.9694528526483588 0.8530908677975752 -0.1294152237489294 0.5054578826592723 -0.8530908677975752 0.1294152237489294 -0.5054578826592723 0.8141298479637934 0.12262180609209 -0.5675883044295085 -0.8141298479637934 -0.12262180609209 0.5675883044295085 -0.4880811785711273 0.1805381361022135 -0.8539219780151801 0.4880811785711273 -0.1805381361022135 0.8539219780151801 -0.9999912747003552 0.003552551677254218 -0.002197703287318499 0.9999912747003552 -0.003552551677254218 0.002197703287318499 -0.1346111642919426 -0.2158289805333895 0.9671078976049597 0.1346111642919426 0.2158289805333895 -0.9671078976049597 0.8525449411428244 -0.09184820878287534 0.514520193845835 -0.8525449411428244 0.09184820878287534 -0.514520193845835 0.8136449843716227 0.1551782125971196 -0.56026918685759 -0.8136449843716227 -0.1551782125971196 0.56026918685759 -0.4241940190863471 0.3566789118496541 -0.8323698625089201 0.4241940190863471 -0.3566789118496541 0.8323698625089201 -0.7885453448267734 0.4251894335191658 -0.4443086593525678 0.7885453448267734 -0.4251894335191658 0.4443086593525678 -0.1578722346533842 -0.1001823560468188 0.982364419684699 0.1578722346533842 0.1001823560468188 -0.982364419684699 0.7547381467760184 -0.4464206061731968 0.4807067423960857 -0.7547381467760184 0.4464206061731968 -0.4807067423960857 0.9002415259777669 -0.4324451958902896 -0.05056033481525889 -0.9002415259777669 0.4324451958902896 0.05056033481525889 0.7844143326772589 -0.2204183251089915 -0.5797498742101094 -0.7844143326772589 0.2204183251089915 0.5797498742101094 -0.9025710500460156 0.4302776851145242 0.01505368098900894 0.9025710500460156 -0.4302776851145242 -0.01505368098900894 -0.169447414312871 -0.07903013995124253 0.982365416106435 0.169447414312871 0.07903013995124253 -0.982365416106435 0.6778264394276815 -0.7334119439036688 -0.05155810850131369 -0.6778264394276815 0.7334119439036688 0.05155810850131369 -0.3277013090801252 0.4836682562942458 -0.8115891016274529 0.3277013090801252 -0.4836682562942458 0.8115891016274529 -0.600818604466476 0.6729818318019348 -0.4314075319132346 0.600818604466476 -0.6729818318019348 0.4314075319132346 -0.168109825006838 0.02892536758904001 0.9853438028657862 0.168109825006838 -0.02892536758904001 -0.9853438028657862 0.5960519533842276 -0.6811383094854105 0.4251736965267298 -0.5960519533842276 0.6811383094854105 -0.4251736965267298 0.6424578954778484 -0.5591256064253487 -0.5240480977712446 -0.6424578954778484 0.5591256064253487 0.5240480977712446 -0.686028380622848 0.7271052101901491 0.02613569004889806 0.686028380622848 -0.7271052101901491 -0.02613569004889806 -0.1672295516339414 0.06358642472089836 0.9838653584975562 0.1672295516339414 -0.06358642472089836 -0.9838653584975562 0.39920329049152 -0.8338682103869164 0.3811830801161882 -0.39920329049152 0.8338682103869164 -0.3811830801161882 0.4366538340830543 -0.8983614567022195 -0.04775062609469216 -0.4366538340830543 0.8983614567022195 0.04775062609469216 -0.2165166026734769 0.5604185162959754 -0.7994070598633424 0.2165166026734769 -0.5604185162959754 0.7994070598633424 -0.3958679694135108 0.8145627101543547 -0.4240001674745147 0.3958679694135108 -0.8145627101543547 0.4240001674745147 -0.1469998294979731 0.1606429776852407 0.9760045511410211 0.1469998294979731 -0.1606429776852407 -0.9760045511410211 -0.136768733660074 0.1896331863226294 0.972282658560846 0.136768733660074 -0.1896331863226294 -0.972282658560846 0.4363462461146563 -0.7642185180490224 -0.4749442179589132 -0.4363462461146563 0.7642185180490224 0.4749442179589132 -0.4488771851408228 0.8930136607671422 0.03218500183811045 0.4488771851408228 -0.8930136607671422 -0.03218500183811045 -0.09539235174078843 0.2729278092741205 0.9572934294949438 0.09539235174078843 -0.2729278092741205 -0.9572934294949438 0.1991290195076902 -0.9116206733236647 0.3595766699312042 -0.1991290195076902 0.9116206733236647 -0.3595766699312042 0.2176395385321581 -0.975181896965417 -0.04066078083903718 -0.2176395385321581 0.975181896965417 0.04066078083903718 -0.1020037401273291 0.5870539910837483 -0.803095790396562 0.1020037401273291 -0.5870539910837483 0.803095790396562 -0.1981029154277355 0.8828490192222377 -0.4258319435615001 0.1981029154277355 -0.8828490192222377 0.4258319435615001 -0.2257163976554845 0.9735640404422717 0.03500238544942357 0.2257163976554845 -0.9735640404422717 -0.03500238544942357 -0.08666637759563388 0.2887481063349514 0.9534744202559556 0.08666637759563388 -0.2887481063349514 -0.9534744202559556 0.2265757343370749 -0.8703830190978558 -0.4371462417495055 -0.2265757343370749 0.8703830190978558 0.4371462417495055 -0.1011016926685244 0.89401217142831 -0.4364867524651776 0.1011016926685244 -0.89401217142831 0.4364867524651776 -0.06443845907698306 0.3425606426245449 0.9372832502058504 0.06443845907698306 -0.3425606426245449 -0.9372832502058504 0.09417392595617523 -0.9293129126988353 0.3570837184207755 -0.09417392595617523 0.9293129126988353 -0.3570837184207755 0.1141220961146377 -0.9931867733030305 -0.02358347969057617 -0.1141220961146377 0.9931867733030305 0.02358347969057617 -0.05548773687691596 0.5705667890661852 -0.8193745482201541 0.05548773687691596 -0.5705667890661852 0.8193745482201541 -0.1183653374329226 0.9923372552916334 0.03544599631351985 0.1183653374329226 -0.9923372552916334 -0.03544599631351985 -0.0684555174915373 0.3516846842717872 0.9336121919585343 0.0684555174915373 -0.3516846842717872 -0.9336121919585343 0.1174881387169572 -0.9006135153905983 -0.4184397604872339 -0.1174881387169572 0.9006135153905983 0.4184397604872339</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1698\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2670\" source=\"#ID1701\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"5340\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1701\">11.7511075700318 0.3583314504512882 11.764113826938 0.2966073494687605 11.64874163027524 0.2666148420055631 11.67922688523208 0.2294239948543417 11.80501203783262 0.2597329687951067 11.70185613652651 0.1685657368748619 12.4858343118004 -1.543659787895465 12.35620128229077 -1.642348030436472 12.37014213645811 -1.572879572693973 9.637226671642088 1.364680350481991 9.61090967342226 1.423722268179847 9.757669766177051 1.458600648579603 -11.25074513113561 3.231416896444896 -11.22220681876862 3.285138753740969 -11.11921110687334 3.22075585534248 12.28376747293778 -1.999560740149355 12.28677901128384 -2.062924884329317 12.18069024183013 -2.088268714019175 11.28139424357001 0.5316017122378138 11.28710312913186 0.4614164684313329 11.17025632694921 0.4372445316544859 12.48109906978448 -1.635202447978954 12.47651913007674 -1.703586392220001 12.35042744299495 -1.733039371291702 -12.58928054554183 0.06216301397643055 -12.56894162462897 0.1114081662110007 -12.44955023869925 0.03574905171129115 9.631860544165843 1.557870607934369 9.497812823158526 1.523720021818169 9.617284226333158 1.618405232764888 -11.18949272428132 3.449144239678994 -11.05810558974406 3.43741573475663 -11.07295892218207 3.376204414341373 -12.55834831527949 0.3756636750632473 -12.41946690482045 0.3466109327424751 -12.42491019409979 0.2885444991789321 12.24844684724029 -2.123312879461341 12.14391992483101 -2.210964781929535 12.13185524271816 -2.148416937708864 11.10362118619226 0.6174771547469791 11.21011850529769 0.6417374482883845 11.0998287403512 0.5467664045441286 -11.78599969953858 1.710751197689483 -11.8855620736632 1.764594262627711 -11.7365061258191 1.75858363054145 -9.551783259955178 4.621116664514966 -9.662840828898695 4.676559090480197 -9.492566268341244 4.660835091232268 11.38554323625563 -3.321557092137592 11.40545417650413 -3.254893710166193 11.53983003230635 -3.221550715986149 -12.59169677899354 -2.122796224044397 -12.43562082373348 -2.164560503438635 -12.44094884273218 -2.216169764530545 7.641202265041214 1.895696582249834 7.619078313030771 1.954798365316707 7.78231669517448 1.993322558346813 -12.27829459142965 -1.703748294304876 -12.28112793941384 -1.632093876578818 -12.13612110978789 -1.658772972090705 -8.529836727396535 5.731344266683108 -8.427594279923671 5.680615208045538 -8.568355625367685 5.676890862560271 -10.5558308832052 -1.514031454146504 -10.72224734746335 -1.553273941902001 -10.72426341194342 -1.481590562917722 9.901866227340285 -4.581370473984669 9.89166102092414 -4.644122839366019 9.780757662061093 -4.663490218918779 8.085695976323192 2.077879605760174 8.100738048913897 2.008102183714081 7.979575249341611 1.990108275138057 -11.53498190250259 -3.316681344740469 -11.66957947655568 -3.328412254481368 -11.65909370702121 -3.26729082813857 -11.86203026914572 1.946394878990668 -11.82506593710753 2.000265651709518 -11.713026213673 1.93963474658876 -9.54517036640582 5.006371453637729 -9.500495426647175 5.052390847586421 -9.37517508163147 4.98887710026371 11.49481847640153 -3.29179345705857 11.34789180389087 -3.326009518851614 11.50257438308278 -3.226382213565422 -8.71465421451237 -1.379804449027914 -8.899460891690383 -1.414986989341083 -8.900828348592878 -1.343305510481923 -12.50063398471393 -2.511359052459845 -12.47993075853214 -2.469142127872076 -12.34275826300758 -2.548703173253112 7.650634743547147 2.080423905513628 7.50097610545313 2.043081385727968 7.641332124451248 2.141381620377886 -12.27910664578102 -1.702197090834061 -12.13693355798749 -1.657220998159356 -12.13393898952275 -1.728875822664083 -10.55417121041747 -1.584826029616713 -10.72258337245052 -1.552396825609317 -10.55616698065188 -1.513154147695452 -8.603671478312631 5.840246622676532 -8.462928433540144 5.844376860225484 -8.48644593388109 5.783986722030788 -8.709550488865627 -1.463861396178413 -8.895653400495181 -1.427348187082769 -8.710846085865644 -1.392167718974344 9.764709467972942 -4.591052007709738 9.642523311769457 -4.672177889576204 9.643657442806868 -4.6097231772181 7.862503877508484 2.168602812129222 7.973630028976386 2.187163073485974 7.868184169538051 2.098889834440856 -11.61166209426751 -3.285533223111407 -11.720650116989 -3.240170193241426 -11.58586587098214 -3.229850551162238 -8.90736420001609 -1.693443132595279 -8.772693913946812 -1.636771872927451 -8.769584837417837 -1.708420563732345 -11.85026428899129 -1.767171044881302 -11.71900528080115 -1.716384959328101 -11.71689193397437 -1.788058345725621 -6.910016250360373 5.946662107887122 -7.044647341963542 6.00422187278154 -6.852260934187974 5.982559747848794 9.84019893164926 -4.025687024838435 9.856494955260382 -3.961254764056166 10.00653083457654 -3.924861096892743 -6.638067216646483 -1.345359288150344 -6.836321842966829 -1.306448341398115 -6.638687654145084 -1.273671399404968 -11.75081178992731 -4.397855854827554 -11.57616745796078 -4.447374111762949 -11.58530307794933 -4.492049290094289 5.37702291505806 2.278329959008511 5.360781901794482 2.338381304480409 5.53452326255626 2.378601581676305 -11.8477921893205 -1.771132958242384 -11.85126880573113 -1.699491605392131 -11.71653327095071 -1.720346729027851 -6.873148465588878 6.401151793126798 -6.83283778030713 6.443462808145918 -6.681166082739154 6.377374685653092 -5.419357012291193 7.116504678474972 -5.305319877557924 7.079502459234016 -5.463162153526112 7.063573211728421 -4.655459356693084 6.995325433674931 -4.626086921802587 7.037947735836165 -4.455317341538341 6.969248692357329 5.655498462954247 -5.744194604771449 5.636338991945853 -5.804809935915466 5.511105391974127 -5.81833438087417 4.283585811329357 2.540206830049731 4.147031272120611 2.527920480424545 4.263197487979614 2.608196705412749 -7.074561868724527 -7.838162061056226 -7.206749484574333 -7.866852398479714 -7.22543730235367 -7.809439463264817 -4.860412953377663 -1.572443924051376 -4.862792608842701 -1.500777945388903 -4.707971743798747 -1.510382878151699 -8.887450137124446 -1.722623963248056 -8.889384558544389 -1.650947450254618 -8.75277785457949 -1.665955639667139 9.92682210424201 -3.958075097241356 9.763342186171791 -3.995528131591063 9.930154544309971 -3.895194613015674 -2.330319142117059 7.376517372491382 -2.313740820499123 7.421629125285861 -2.130277411320018 7.350861169815547 -6.634153617248702 -1.290603569206118 -6.831788439712278 -1.323378146720922 -6.832354045656597 -1.251691206748372 -11.55804340649913 -4.67002850371146 -11.530709130997 -4.634411703614915 -11.38147995351786 -4.715138926864015 5.45307607714408 2.402224524503437 5.293682289993164 2.36314331618803 5.450795908844998 2.463789693471995 -4.662590396667173 6.590241969402697 -4.814359942244378 6.650965200477348 -4.613858225403444 6.626658547327783 -5.448690196724442 7.228036718382651 -5.477468473182723 7.171809039680968 -5.606277686037295 7.210616162132875 -2.333424534969861 6.960100846927293 -2.496289861475915 7.02251322564471 -2.295906294290259 6.998564669389739 5.500119052534039 -5.649457324518996 5.355057718673635 -5.722785370369828 5.363628386658954 -5.661937685694299 4.044262872012264 2.620843011852068 4.034715684694127 2.688257489338354 4.159997221182063 2.701504338703599 -7.37973307514139 -7.626900832922628 -7.380552123611244 -7.681554051268964 -7.512942145240753 -7.652501078363416 -4.860067011239304 -1.5729691477404 -4.707625737843752 -1.510908198846842 -4.705317447933381 -1.582574182751803 -2.59798018382316 7.862746505542849 -2.623622721562295 7.811097138050414 -2.775833724389388 7.83534876715802 7.892172907163152 -4.448153975156407 7.902265876591466 -4.385721714301504 8.062059351078105 -4.347663972675512 0.2319925919531207 7.206532343959895 0.06816130944851562 7.270195072340188 0.2577986262042703 7.248876571234666 -4.43534120218764 -1.285571043633246 -4.635172112616091 -1.246046483930129 -4.435225602062978 -1.213882780525905 -10.54612546316951 -5.990830709765972 -10.35883664835906 -6.046660837012703 -10.37861698032135 -6.085245858175693 3.068068152694514 2.562005730214306 3.059319668505497 2.623211315275878 3.234485811533379 2.664099184091551 -2.472932049716599 7.657072584354313 -2.339166786449916 7.632342579577592 -2.517676201589121 7.607725635676184 7.996780603426274 -4.366274002562983 7.822659858598535 -4.405619625459651 7.992866929057401 -4.305465943855684 1.565689220693328 -5.742197169311714 1.42330873092626 -5.751318637004019 1.585935596180436 -5.683085201673474 0.8043760332373917 2.468542627601334 0.6492970871679638 2.460670291018974 0.7842362549579163 2.534497982085871 -2.002206848136053 -9.254831269223828 -2.148472010363316 -9.29166463676035 -2.177339718573044 -9.241948655833635 -0.9758413610236072 -1.436931287834512 -1.150083786011975 -1.503314959292955 -1.151575058569062 -1.431635573601411 0.2738593675876695 7.772017653651676 0.4278347807192724 7.756084727066048 0.2346794831337724 7.72592419907197 5.907692453773043 -4.674037290780482 5.732105461036365 -4.7138328932742 5.895277582598436 -4.61487214835779 0.2169948912253811 7.583141731566467 0.2217385568439489 7.632372909850894 0.4063657043943875 7.560404402649126 -4.43803618764851 -1.203049876265611 -4.637982349412921 -1.235214921452726 -4.637884718486797 -1.163526013779914 -10.21674864212124 -6.233487484420487 -10.17865369403322 -6.203606866566421 -10.02688022158651 -6.283636451017741 3.11920870580907 2.708073989677151 2.958546819406385 2.668514531492299 3.124488026943278 2.771086794235044 5.829999443512676 -4.78088651738005 5.831702891637843 -4.72001531707514 5.992787959884518 -4.681535576454031 1.308602043108998 -5.629715596612606 1.31659896308892 -5.569811842992579 1.471583570219683 -5.562007864425807 0.5648566816230188 2.546352756926723 0.5571291965500386 2.61136778732703 0.6995080653232744 2.620504899957761 -2.370329924725453 -9.101516649727747 -2.363738140221217 -9.150816033798021 -2.517851275225941 -9.135107000968814 -0.9726322791411207 -1.51136897875968 -1.148399643763717 -1.506060530120493 -0.974156837499241 -1.43967747798365 0.09957568526473282 8.060394533306367 0.08245892179569114 8.013088107374479 -0.09257567520009835 8.026497024254699 3.502873504952592 -5.140317135331382 3.495977393425906 -5.080597239283649 3.649387245675078 -5.043008776893196 3.009193443669416 7.235149636369333 3.180226204520791 7.219042807089095 3.163618156076048 7.171430411620039 -2.026516353178367 -1.225163681072475 -2.216742678481948 -1.186567282184263 -2.025715681231137 -1.15347749930801 -8.885526573798463 -7.365420354994246 -9.043114890063302 -7.272760969419028 -8.853007748615546 -7.331708013177096 0.4057049713076188 2.87232590006109 0.4037260882408361 2.935456226480028 0.5705267224989513 2.975387309320226 -1.717992636299257 -5.327359896265246 -1.873948693069529 -5.33375228873334 -1.702251379332159 -5.268413365094089 -2.14760700104281 2.214573506194116 -2.317503393053847 2.20952979502062 -2.163292701861009 2.278695629013866 1.79960164067864 -9.082815688629138 1.631709543548545 -9.123426758343165 1.607244250217268 -9.077744055211763 2.154039047972187 -1.41612137665319 1.962340231720186 -1.485340371765077 1.961568395405093 -1.413641410927702 2.823096509336607 7.616372447388669 2.992569485321149 7.605674158391179 2.793965568158571 7.572851756385049 0.4150848726677803 3.036069234949429 0.2621382507692666 2.997330172514774 0.4263288971082052 3.101013111112003 3.56247695294758 -5.02893947682269 3.395230171748484 -5.067768839326921 3.542138793106454 -4.970829615629748 3.136739787378199 7.517745302135942 3.134298610467179 7.573288329370655 3.307592227919256 7.500494766055173 -1.983401902069153 -1.305061582832618 -2.174432891914137 -1.338137098609991 -2.174040019480891 -1.266804611055238 -8.592566560726386 -7.458813957527729 -8.54280462143106 -7.43327987065158 -8.399439946335676 -7.511336804765615 -1.970736828585861 -5.204901381841417 -1.968684285651651 -5.144935859453601 -1.798783248688915 -5.139980847887529 -2.383501143674551 2.286889515974018 -2.385444755339911 2.349843312064751 -2.229495494405385 2.356337495586558 1.469176764922531 -8.96021891054359 1.469761844121595 -9.006357142621646 1.300103194212152 -8.997674044870172 2.154739198336298 -1.487743235738178 1.962299481474927 -1.485269955171312 2.153998287116803 -1.416050941875147 2.626583967550852 7.96515046597017 2.621561240056742 7.921349035419765 2.429245197731841 7.927903919207108 -2.821810924508073 3.103279072080304 -2.819929521407584 3.168805828902164 -2.669086534438531 3.206378696803298 0.6994712725026153 -5.584734164094565 0.6856613655126798 -5.525449147132722 0.8242780405826661 -5.489901612203209 6.359847567979582 6.589840271805475 6.511351161794384 6.58228800079966 6.497037649384467 6.52786439367146 1.136118008815114 -1.3541367237635 0.9626827840905849 -1.319201502848362 1.136984378566509 -1.282806822627216 -7.142186791714643 -8.418934448869473 -7.27715216566976 -8.328716936560284 -7.096960415400679 -8.388625975593255 -4.445607926770279 -4.903486594153658 -4.607923164654693 -4.908876254736006 -4.437571541655934 -4.843833397309046 -4.761145117444076 1.930669373578067 -4.937848609126943 1.926672623221713 -4.769968480963281 1.993258031385614 4.672247525821237 -8.396131131384985 4.48536014044886 -8.438484996226077 4.472110237845285 -8.39353720406524 4.832225930426402 -1.429496464971109 4.632054761285418 -1.499775441303044 4.632012267672277 -1.428080786019686 5.292085139575017 7.200117601997333 5.468511597729046 7.190868992203569 5.275278896494793 7.158172579607357 -6.715005820992449 -8.465240445498786 -6.656489422356748 -8.442174378515569 -6.531440210530288 -8.518434485722098 -2.849982679187054 3.255365277084434 -2.988144808445621 3.218739012992571 -2.836218607018078 3.322565869735572 0.734969993620832 -5.47633085997393 0.5837553854295591 -5.512908790872454 0.7089989322123519 -5.418433266106486 6.412198333676442 6.792860814700982 6.407336258415766 6.853478030631758 6.563662556121248 6.78483469898197 1.123935753957899 -1.244013941565833 0.9496351537245562 -1.280411568368693 0.9525784213012262 -1.208792958390632 -4.674657192016141 -4.813979298478399 -4.680878664536808 -4.753124991120459 -4.504130581882922 -4.749220826745997 -4.990010106693942 1.992706002798677 -4.984602815867615 2.054019724902083 -4.822295137886973 2.059548482311019 4.404105797540058 -8.298331951209891 4.392792560769895 -8.34403881793688 4.216194945195725 -8.337784011839139 4.830596591689094 -1.498300723312047 4.630440144446198 -1.496892769522193 4.830610844677027 -1.426612966687759 5.092095789300098 7.585500342429687 5.100437957282588 7.543868787570436 4.900284440353532 7.547980499809358 -4.991638143498378 -9.321723271056177 -5.101360381809151 -9.232957379059158 -4.93769114344884 -9.292567457289668 -6.63641337613953 2.897417884133284 -6.63574941786656 2.965483196330755 -6.503943037327894 2.999314420254909 -2.881302304196173 -5.981597491235704 -2.898033400248121 -5.921628277178476 -2.777076513557294 -5.889035517929381 9.675283058297397 4.884296525830756 9.811434693990076 4.886706320707685 9.793775942725468 4.827578484436574 4.84072609155517 -1.328961652662674 4.837280128415219 -1.40056638481864 4.685938922503548 -1.369739957893678 -6.833094823957079 -4.547716051575298 -6.992881285607754 -4.553794311763161 -6.833728383212693 -4.486667286146808 -7.143331466529048 1.62000307921671 -7.318627382169347 1.615337223185641 -7.144672864113284 1.681455119599937 6.823118365998865 -7.525883711952497 7.020138991313406 -7.5297739747776 6.822650218416566 -7.572447512508213 7.23925462210762 -1.471029974841085 7.041513054906684 -1.540496814225599 7.042216254670835 -1.468811191097894 8.039520787999589 6.281863912698821 7.860993247654495 6.252645319094622 7.866229289366742 6.294589168663884 4.633838008214074 -1.169493925283726 4.786253878579575 -1.200372830625324 4.631471169748868 -1.24116161152163 -4.412441470159707 -9.324613633964388 -4.345425296990303 -9.302104496132902 -4.244962845538747 -9.377270140223084 -6.811545597743727 2.972434633492441 -6.68009424977297 3.075144575806786 -6.690867514628805 3.005660808374025 -2.906764265025755 -5.855044453140191 -3.038861478094021 -5.888319479971751 -2.933955318136298 -5.796234381253612 9.661217020761617 5.06470008623043 9.662991148507999 5.130116127504268 9.79736412588867 5.067263396495124 -7.062642844247717 -4.458264204339328 -7.077225594179336 -4.396084900478645 -6.903280703871185 -4.391445087277297 -7.400489864010549 1.71497372868682 -7.386610048936788 1.775278586424206 -7.226837658517611 1.781581596382792 6.797980664975434 -7.467107702454814 6.774738985824056 -7.513942737987394 6.599563245383362 -7.507026474287089 7.230952417738142 -1.529042443945376 7.033890040178047 -1.526817186432799 7.231629130590562 -1.457345984156113 7.673258851264183 6.724450475222787 7.693037061773406 6.682451958648745 7.496217711227494 6.690087758993939 9.084353693772274 -1.319111524507893 9.08124316964604 -1.390761621698644 8.94644289848916 -1.36539143410556 -2.122078387325774 -10.00208375805769 -2.201213981231016 -9.912604145826347 -2.060998365996196 -9.970823085498482 -10.36145395883319 1.727643073678281 -10.36826270687783 1.797436554639876 -10.25092063156426 1.826111407225745 -7.302788296765607 -5.71292485615856 -7.315508704058836 -5.651150793420963 -7.208225962874972 -5.622316462952615 12.00762164630643 2.130906965942405 12.14333425160431 2.144921389086459 12.11480815354829 2.083458970657563 -9.01147670431353 -4.147318988706797 -9.16031446642654 -4.155694193450678 -9.019956751590648 -4.084443195800464 -9.499784712387529 1.190562468879321 -9.66063584151215 1.182940296825713 -9.494184982983033 1.251689310027092 8.888488434605261 -6.468869195710479 9.071981134836666 -6.477181350394378 8.876257251821579 -6.518217194559831 9.449581017394744 -1.533583026767532 9.263489409902652 -1.600493421685321 9.264909378501219 -1.528803687710612 10.74204251640409 4.236081915180562 10.58298996135551 4.215641454556057 10.58263680816121 4.26042846500789 11.97817099479863 2.388032088762603 12.1001885963614 2.336309752118984 11.96463109449242 2.321395266244683 8.94955662573258 -1.293678761542919 9.084318075882242 -1.319045317964265 8.946407283605279 -1.365325233105614 -1.271938694101185 -9.928031437397038 -1.20341461049748 -9.902784568929347 -1.126905379762219 -9.978419947729694 -10.497825757819 1.730956984221029 -10.38846337788417 1.830231133288248 -10.39039268238785 1.75944282011681 -7.350080799852286 -5.567341679963051 -7.467394613473013 -5.596398825712132 -7.371884119760878 -5.50640797543516 -9.227624357317261 -4.070860691418731 -9.249125598694668 -4.007064973847591 -9.086996006926507 -3.999940703037678 -9.677836213188012 1.1985652706594 -9.660276671109934 1.25868548089124 -9.511474984713074 1.267448410283861 8.904589273219317 -6.471995615186978 8.868608555860567 -6.521578396033776 8.708070364481475 -6.510608542178119 9.466110887185232 -1.638715877420245 9.282416480764914 -1.633893235501636 9.468514529913994 -1.566993928649501 10.48592711437888 4.715293816681878 10.51070203369348 4.668373332705535 10.32799520245106 4.690042235478756 12.80486521953163 -0.8782814391745923 12.76547364041472 -0.9382285777631791 12.65545705626428 -0.9023891281087371 12.12899766129329 -1.401324537281521 12.1256474180299 -1.47296536932822 11.99355444745457 -1.453521176212834 2.450557641251624 -9.960457440974377 2.385112537396675 -9.868195954726444 2.507453081917199 -9.921215071861347 -12.50017367973961 -0.3002120353238359 -12.51736773444045 -0.2307114140535312 -12.4016543712185 -0.208325441626296 -11.31702622516923 -3.882319793084444 -11.31783722991399 -3.819021305481295 -11.21230911780348 -3.795136180876889 -10.97232743341756 -3.524036664092204 -11.10471425181361 -3.536197113836563 -10.98596087060906 -3.458913991657148 -11.51252168042142 0.2167492199166049 -11.65660456383353 0.2048937383174073 -11.50600445487997 0.2782225287412058 10.69986673017178 -5.100742504571175 10.86240712432025 -5.116540712177234 10.67670547056583 -5.154850177388828 11.4721612945527 -1.677785269115702 11.30663328587778 -1.740522549709934 11.30968541096649 -1.668815866040309 12.54453637999385 -0.4881931679631666 12.40354295669747 -0.4884526708754607 12.41427349473641 -0.4383515736005559 -11.41525151366383 -3.757926099376388 -11.30947888679122 -3.671534607656464 -11.30001538574395 -3.73432778173633 12.67982608702496 -0.6526133562864981 12.80520729639552 -0.6906594461761093 12.65623358192334 -0.7163771927821439 11.99779492031956 -1.383174232516103 12.12980745857956 -1.402614824016195 11.99436429876233 -1.45481154969608 3.60717405511408 -9.676036288434755 3.479477180020098 -9.63151417155848 3.540819205812205 -9.598174555880148 -12.43302030043936 -0.3287568177167912 -12.53900283543621 -0.3513625420158977 -12.44142228460851 -0.2588581133065578 -11.15471087317843 -3.472626616724449 -11.17976007256005 -3.406911101337614 -11.03561235820559 -3.395672867062525 -11.70086636038362 0.2141423120066185 -11.68299792789481 0.2751456870041583 -11.55072512587131 0.2880511314757954 10.73356229972205 -5.188328353794971 10.69032941602382 -5.241280019104381 10.54708863732899 -5.224242239066612 11.45383296354241 -1.722063991014747 11.29045016656386 -1.713137945542501 11.45597201205626 -1.650390602830048 12.54463663922744 -0.4076613325349839 12.55082262326936 -0.4628684289043794 12.4036434459555 -0.4079891775768366 -12.65569185398602 -1.169249139555992 -12.64353284420654 -1.106743826280584 -12.52680569774861 -1.088851847172841 12.05871853022702 -3.350578699342806 12.01416131808036 -3.406984902372559 11.88893433846377 -3.382057961237903 12.61119451716407 -1.347722082746238 12.60825385037884 -1.419372881934045 12.46349946185979 -1.405766526284072 9.372753069548914 -6.826669456542838 9.341903634887348 -6.880066072183239 9.246424773456054 -6.793235031655539 -12.41544912202189 -2.11068914694666 -12.43944944405991 -2.043064808079661 -12.31191969123731 -2.027002528104643 -12.36297081163629 -2.367266624861024 -12.47829684347289 -2.38454092736979 -12.37670701094712 -2.299516606085756 -12.66321426546362 -1.702928137463743 -12.53627522414027 -1.622539058675648 -12.53767311767731 -1.685131291994166 12.10574180111742 -3.181281925643665 12.24594327988267 -3.207657439083207 12.07890548625666 -3.240568229280981 12.52595228513887 -1.751084798291482 12.66898298612503 -1.765278581672329 12.52306856073473 -1.822742037189923 9.33534389651027 -6.958645758985928 9.20737179672318 -6.929528861830943 9.248900211368236 -6.884760127191098 -12.2665712719432 -2.162590626953528 -12.38358300437334 -2.179292666433531 -12.28066968680266 -2.095137082537539 -12.65285949788222 -1.109989690573223 -12.52323082400572 -1.030334582109835 -12.52553936775479 -1.092836865914159 11.98844996477916 -3.197436251760613 12.13069697648554 -3.222545336953552 11.96156052567574 -3.256113187209982 12.46693195861506 -1.335262028415724 12.61184729655287 -1.348868363108499 12.46415154922206 -1.406911716927027 9.960651652020729 -6.296388625829933 9.831631619741811 -6.270073037143662 9.869920573776625 -6.224081119200225 -12.50686129074443 -2.314236210271567 -12.53045450004144 -2.2463920063556 -12.40457651968336 -2.229729067781244 -12.65764569784601 -1.770379013887815 -12.64653912048994 -1.707703395993552 -12.53152156450983 -1.689200050655647 12.18052147902099 -3.359975420344078 12.13607137932328 -3.416758660398563 12.01284562633077 -3.390812983687816 12.66876876421716 -1.764878543277706 12.6658756697165 -1.836537275609132 12.52285468214147 -1.822342538278277 8.609688992076844 -7.529370084866654 8.519939622033421 -7.44061825578067 8.644724673637041 -7.477310262533923 -10.97872514983905 -3.176271397022086 -11.00362475730813 -3.110778589707141 -10.85739946068847 -3.100059011764498 -11.5176875760932 0.7092605091613835 -11.49953625105054 0.7701369617804559 -11.36547436901504 0.7825306793890203 10.55314563047167 -5.10071401653749 10.51032641872906 -5.153209647762414 10.36501128457285 -5.136964157061804 11.23519680359556 -1.302906009348238 11.06805100198852 -1.294541538735637 11.23721252493439 -1.23124048414316 12.50186716805469 0.4704908240560266 12.51194722056576 0.4160883379895734 12.35870483601279 0.466270169710504 -12.32799508885498 -0.4553170820301346 -12.43350405564735 -0.4785674476013411 -12.33553343845589 -0.3852304043669551 -11.09877758993566 -4.36067689981097 -10.99487070715988 -4.273731861119688 -10.98399332400003 -4.336432349041786 12.67978119066266 -0.5531317061606933 12.80400957092096 -0.5926070613969773 12.65686981033747 -0.6173361093411353 11.78944218985733 -1.78759904768878 11.92102975599541 -1.807658706785934 11.78611302416578 -1.859246062830769 3.009827715546834 -9.900687031758661 2.880976245831566 -9.855226303338512 2.943696062422529 -9.823047723827436 12.50888391781161 0.3216735036803493 12.36568269077752 0.3183687848415268 12.37404480769698 0.3674486865928813 -10.78304494723833 -3.243630274933168 -10.91720755594061 -3.255330048166043 -10.79627666252484 -3.178730341222819 -11.32346144242302 0.7076562092449756 -11.46952920599622 0.6963336073255722 -11.31686723566741 0.769023699798105 10.50373782542462 -5.04724955652355 10.67018938326244 -5.061853920087253 10.48272699052472 -5.100197873493039 11.26614980478779 -1.280471690910523 11.09697870003657 -1.343756897076463 11.1005080690211 -1.272025839606709 -12.384239433834 -0.432824104206995 -12.40041367429001 -0.3631932039182677 -12.28528561642618 -0.340131141351152 -10.99211139691699 -4.481750717083936 -10.99430616697351 -4.418520052553081 -10.88924686466424 -4.394042004634568 12.81067519578389 -0.7970280096254434 12.77222748151188 -0.8573021509194796 12.66312963038722 -0.8202125189009921 11.9208160002482 -1.807314416007229 11.91743341116261 -1.878950862335088 11.78589926007625 -1.858901758550291 1.848419662804386 -10.12978471306633 1.782984531484846 -10.03776233389912 1.906430436587999 -10.09171290314908 10.20666488269885 5.087294122505678 10.2305678746692 5.041484398560948 10.04685616923963 5.060956776633804 -9.006288800138961 -3.748441605221089 -9.027164882110668 -3.684796899778404 -8.863475201699187 -3.678004356093722 -9.449186803979133 1.625186316632568 -9.432011733925535 1.685272337035473 -9.281715206985069 1.693696897317436 8.685496093523531 -6.331191571803228 8.652209435617502 -6.380089789830738 8.488794948356155 -6.369875881142802 9.254008116316827 -1.244250730827939 9.069836441402108 -1.239744009708454 9.256997305459809 -1.172504485791101 -10.16122891842905 1.564891742858978 -10.04979012739954 1.664673375439497 -10.05283455540317 1.593930036935231 -6.862262658907012 -6.010351054192642 -6.980566207957457 -6.039904793698391 -6.884938134890659 -5.949664134598572 11.75802067617219 2.584466801050537 11.88108250228669 2.53143940402498 11.74646722921003 2.517644949600686 8.522399445709763 -1.689487240978495 8.658334509583158 -1.715454894054223 8.519266185796891 -1.761130704125859 -1.664165435586172 -10.02305670722691 -1.59551122158466 -9.998254150616866 -1.51683436536705 -10.07385749159181 9.242694828956012 -1.147379502241755 9.055538230655557 -1.214626373655277 9.057410761192328 -1.142893633184489 10.46501222902741 4.656623637030224 10.30408920376134 4.634886945094705 10.30364790952062 4.679293071907598 -8.795398834234536 -3.818856806584465 -8.945727459214881 -3.826919169142748 -8.803148251901336 -3.756188675287935 -9.227771109217517 1.578836572124709 -9.391452607341753 1.571746072678496 -9.223697770384634 1.639826471334134 8.693598956660441 -6.353753564243794 8.877594274087761 -6.361531191755919 8.681789113876736 -6.402933013520544 -10.01996557750031 1.550999274153101 -10.02587649754419 1.620706009993815 -9.907379428424823 1.649980627921826 -6.821919025668692 -6.14610654843118 -6.835464545181348 -6.084559739604354 -6.727168781035482 -6.055294668541154 11.80041999329114 2.271527478084729 11.93519378561261 2.28432826873254 11.90848383001835 2.2234872251927 8.611138849341353 -1.625472086113976 8.608466736303766 -1.697078852308228 8.472076281668169 -1.671158740253725 -2.468633823712594 -10.06620892042703 -2.550532120980076 -9.976997130530403 -2.407826778044897 -10.0354007225572 6.995528453012118 -1.140876074560704 6.798107797378934 -1.138785811654543 6.996732712130455 -1.06913446543155 7.382121241746031 6.981366301073618 7.401145999132933 6.93955674245358 7.203274077684113 6.946462103937839 -6.814484289843757 -4.115830522645906 -6.828269915909444 -4.053807534298573 -6.653588964125098 -4.049324897465911 -7.148491861092352 2.081354636374249 -7.136604853594141 2.141708529551244 -6.976160686034473 2.14784048489019 6.563786217306237 -7.311678873906014 6.54097211060618 -7.358399657742611 6.36642046685613 -7.351521303566818 -6.54453223029536 2.667205959665146 -6.412818768082149 2.770179291646056 -6.423520641465728 2.700826753839058 -2.482274595752971 -6.191574042000407 -2.616328001531191 -6.225231121947041 -2.509616234827305 -6.132931656751304 9.345558165255701 5.063449079855373 9.346634810264414 5.127810654644573 9.482585968803866 5.064737479412169 4.317137415221328 -1.484869527486346 4.470612995110384 -1.516221492013397 4.315564814228122 -1.556496458053652 -4.676235300981285 -9.403074500992307 -4.609747957676477 -9.380676349437215 -4.506572053698067 -9.455774414978977 6.596893943548481 -7.392897065063066 6.794277423457221 -7.396564769961881 6.597862369519566 -7.439215602822574 6.985984887813427 -1.0498681657361 6.787363344783888 -1.119525461935276 6.787935461027244 -1.047820539550652 7.755333398450116 6.562274915611136 7.574984539328181 6.532534429843814 7.581235023639417 6.574351236803325 -6.592371493893364 -4.19651823268738 -6.752827919446442 -4.202448375300211 -6.592113131376907 -4.135673155488729 -6.916136912060805 2.017210917283385 -7.090808537580687 2.012586859501398 -6.918270238023179 2.078739436371168 -6.149425158498467 2.478790466936847 -6.149253515248045 2.545970180994254 -6.015504705438904 2.579986852946841 -2.637472509766389 -6.212799151777316 -2.652095706301727 -6.153252163151674 -2.530672372543877 -6.12056296136997 9.351491749881207 4.906144350204793 9.488520477649306 4.90737041187993 9.471780340063642 4.848704335568009 4.507297532295667 -1.604395875697794 4.504944661909446 -1.676066060094372 4.352244615765225 -1.644659557820761 -5.270124677222283 -9.37029322018936 -5.381175090109571 -9.281254103902617 -5.215448961530498 -9.341207795089582 4.122873715004327 -8.146010565467357 4.112877663302318 -8.191663076201058 3.936544639553558 -8.18532608408208 4.561813399212211 -1.080709618089091 4.361900160071912 -1.079267361410594 4.561679228117796 -1.00900336095539 4.833668307301942 7.785733192443573 4.840620800523403 7.743985024605916 4.640833118274078 7.748079011563347 -4.41598624761245 -4.461376315547414 -4.421266357998611 -4.40067284271783 -4.244816876807863 -4.396754015369652 -4.720612583349852 2.389534302170822 -4.715966408932523 2.45097708950702 -4.553951170628647 2.456517917479299 -2.307617779750301 2.768522566204381 -2.449382623557622 2.731811741999078 -2.29496724698255 2.834961220887902 1.034081215329108 -5.73308776835111 0.8809392675790967 -5.769827445210334 1.010450103364412 -5.675359133583689 6.051864446645339 6.700095221426143 6.046697713305678 6.760083624629706 6.204155440353516 6.690419458153252 0.7488717005912665 -1.555686139636162 0.5724847766132585 -1.591709857400316 0.5739976009859282 -1.520025654516796 -6.926171551203142 -8.546557651729312 -6.867067328007344 -8.52344614993936 -6.739700382327774 -8.599876656362721 -4.494967276111895 2.332740730700843 -4.671410304881282 2.32872303384572 -4.504594488378645 2.395468373229717 4.395942794974027 -8.262772761993997 4.210647281638136 -8.305003158130973 4.19605015491683 -8.260093829183644 4.570996180733671 -1.025574562700629 4.371214418330106 -1.095833822139671 4.371148961019417 -1.024147534574344 5.035509217316668 7.422872573621149 5.211643039556949 7.413694765287754 5.017392164864599 7.380850961997692 -4.171122432750728 -4.57572133533232 -4.333144827386039 -4.581131115681554 -4.162191242596482 -4.516156289113875 -2.458669363867656 2.7387128058276 -2.457078264233756 2.8040125505039 -2.304297259137402 2.841902358948021 1.09231448622795 -5.902277782405346 1.078922433964342 -5.843001872384594 1.221041602584383 -5.807148883455373 5.987096467794622 6.478110335887901 6.139444998970969 6.469012359531159 6.126295812886302 6.415883228653295 0.7453169334198506 -1.621146816108716 0.5704435485795745 -1.58549054141068 0.7468302339666205 -1.549466100695817 -7.334485071759142 -8.477131431240766 -7.473649706707226 -8.386514171421744 -7.290506476301554 -8.446548564280741 -2.098847792893515 2.685493026713632 -2.101562623139219 2.748640097582635 -1.946652911427402 2.755352593217332 1.118042483791234 -8.799552045066756 1.11965665155499 -8.845888816318643 0.9512384933315982 -8.83670113599182 1.850926235173381 -1.086204573293112 1.65985189401549 -1.083517053319359 1.850166664877299 -1.014520757574574 2.363827407638545 8.144102598588487 2.357464296021962 8.100013130982363 2.166512633836213 8.107100324117647 -1.654018086113767 -4.883663261199155 -1.651188312030996 -4.823726610454544 -1.482529572603976 -4.818557729567542 0.7130155373425823 2.651006291596271 0.5588685652545239 2.612098167966966 0.7236986818861274 2.71577507161638 3.830562306201437 -5.368670940462613 3.662019833756067 -5.407673145590995 3.810951928235616 -5.310476143973094 2.80437199120271 7.313172771687545 2.801607994156937 7.367255815762408 2.977416671848828 7.295280933654035 -2.224616454200606 -1.562786838772382 -2.417419691672722 -1.595986983696869 -2.416688818738356 -1.524298689023984 -8.774736349927576 -7.528586471202103 -8.726139507055493 -7.502687951927533 -8.58134310482477 -7.580950619557902 -1.408873593820574 -4.997598241305949 -1.563790167595054 -5.004212007633296 -1.392542887173823 -4.938714711342757 -1.859160126505554 2.610188372488169 -2.027849870667152 2.604919982756548 -1.875433482005458 2.674480053033163 1.453679384195578 -8.941070146126073 1.288067980337448 -8.981386222634415 1.262706674973999 -8.935479853824777 1.846865663741822 -1.008850917499873 1.656551738177079 -1.077848656130837 1.655732390862155 -1.006151611841464 2.558181174890236 7.821672832349775 2.726379570216166 7.810596657096884 2.527826511619968 7.777949872365016 0.7132923215439879 2.473263725787787 0.7106770075571484 2.536171621576784 0.8787997701654743 2.576270691666576 3.759510439559334 -5.472440823096785 3.753463703825632 -5.412633011138889 3.908083878822776 -5.374904732296241 2.682091223494191 7.030559168182665 2.855314143943235 7.013768587108697 2.837913257548257 6.966726883859018 -2.223656849002984 -1.640635978902495 -2.415713396574841 -1.602145277088453 -2.222909955188781 -1.56894586500164 -9.050516483925627 -7.410757528668856 -9.209787098441 -7.317949596276657 -9.019348877702974 -7.376634490350832 1.697502317924618 -5.294682633479368 1.705796753595047 -5.23476822870661 1.859022430031686 -5.226539656524509 0.9127695908682582 2.929142619981067 0.9046753539880192 2.994386464476215 1.045306974506275 3.003866316954733 -2.852304508049135 -8.871373931110664 -2.845707726618828 -8.921158489681597 -2.997818615308108 -8.904422345486658 -1.334627950085952 -1.107925416321959 -1.508297041939358 -1.102230561117066 -1.336211244628552 -1.036236293883046 -0.1794628195224153 8.218083610584095 -0.1977017200032567 8.170375742098575 -0.3705828417329244 8.184733908601919 3.375767217196071 2.308153242887666 3.214846562542849 2.26857293635952 3.380259062582235 2.370995505285141 6.136315951452007 -5.017286823936844 5.960464097215232 -5.057110950476266 6.124780395559567 -4.957980398091789 -0.06704880469158514 7.350716944663623 -0.06117980584706029 7.399491795664938 0.1238503664716351 7.327540257551025 -4.67783035036379 -1.621194972144799 -4.878042204659717 -1.653334153169956 -4.878004608082469 -1.581641637668117 -10.37115670773018 -6.274220909050738 -10.33425308430402 -6.243844122877992 -10.18221957071258 -6.323940738275458 -0.004232924985846931 7.95240649886845 0.147873622055682 7.935698045174173 -0.04423009869420236 7.90605158290125 1.962749913697262 -5.415578131163847 1.822118865456829 -5.425063235931637 1.983243981756268 -5.356344002684999 1.156927904468648 2.848123352417505 1.003693724209805 2.839886841481066 1.13654545892024 2.914264281424826 -2.476916208744934 -9.048959457634956 -2.621151646294559 -9.085311566589974 -2.649805299482749 -9.034827409385668 -1.342398382200816 -1.02623461890846 -1.514482776209679 -1.092231150589784 -1.516090294364559 -1.020554580890207 3.336023835185211 2.147935042298134 3.326520467642515 2.208948332319827 3.501964781780644 2.249827246915131 6.052622359824317 -5.11857877159223 6.05522629012431 -5.057565183017478 6.216573657015632 -5.019074926685732 -0.05796615110722797 6.945523440983375 -0.222165372957612 7.009069692564981 -0.03098343685176613 6.987383305072504 -4.679601311064838 -1.686130291904414 -4.879787515265439 -1.646582948976887 -4.679575881593458 -1.614442917434452 -10.69460775802846 -6.000304079270098 -10.50825931221148 -6.055741141412557 -10.52692934012396 -6.094971580192127 -2.898582639239244 7.978473755161456 -2.924810950690469 7.926386604318082 -3.074461073923867 7.951937389010737 5.961235690597919 -5.259702621472934 5.818415232090239 -5.33379957274834 5.826665572644673 -5.27275469343931 4.434896957154498 2.954518283821356 4.425396474250939 3.022163397211926 4.548941619145452 3.035913493232552 -7.928733881473471 -7.161088971257506 -7.931487706704195 -7.216334315697288 -8.061309020115044 -7.185487106032205 -5.290413443198625 -1.170237123120773 -5.140213237867658 -1.108684532559328 -5.137758472341445 -1.180346242909811 5.586707111893005 2.005226148885543 5.423611946354424 1.965816605674983 5.58331964496062 2.066637961064173 8.086766887922842 -4.734242544178417 7.908772394784966 -4.773935602516881 8.084026552988988 -4.673232652652759 -2.528929756813687 7.117309148078553 -2.510768963715936 7.162016021661472 -2.323097951495859 7.090635940766004 -6.755354382104422 -1.693800891803944 -6.957102582424996 -1.726234064856547 -6.957752504053442 -1.654548510803827 -11.63160338534523 -4.730076255950982 -11.60547293920549 -4.69357706720524 -11.4531390611676 -4.776153301574279 -5.283216725116196 -1.181073503757906 -5.285608515755107 -1.109406222731755 -5.133015219781264 -1.119522876372159 -2.782413739378928 7.801418052945049 -2.650849913367678 7.775621166014061 -2.827340303880749 7.751731110995292 6.112393901533349 -5.347056820956262 6.093739862146821 -5.407880871683303 5.970254604697834 -5.421959946138604 4.669320995111029 2.879182415103628 4.534692555436073 2.866343082675042 4.649168409313785 2.947362842856425 -7.648030350845747 -7.387641485502368 -7.779664505991857 -7.41501161470896 -7.796137095031223 -7.356839996860479 5.552914865208011 1.829306659365208 5.535590155000075 1.888883788096568 5.71322432990287 1.929535255277966 7.964633224573237 -4.807871056112734 7.976133678429006 -4.745265185184799 8.139625789198648 -4.70688697786903 -2.528594867949669 6.684583377198657 -2.695417752298258 6.747507376544613 -2.489227998806731 6.722603735316603 -6.751848338029388 -1.776528706288633 -6.954242635055792 -1.737272293869908 -6.752494041217103 -1.704840635693085 -11.83725289052072 -4.401841155863288 -11.66097858024856 -4.452869222440723 -11.66898604983954 -4.498639490704582 -9.53249314499655 -1.308870011824171 -9.397222114022787 -1.25309476580195 -9.394109736128241 -1.324744920637735 -6.07664978592382 7.173193960766203 -6.103338704087622 7.115948318174731 -6.232783871517043 7.157537586842094 10.37648397206477 -3.897710789700178 10.25659062512971 -3.979962745491175 10.25507731374031 -3.917404858724004 8.532377408238872 2.311061616736219 8.642985367837051 2.330600433380355 8.535913937221793 2.241117638589904 -11.91205011993709 -2.320528819902856 -12.02034418655708 -2.273491796878998 -11.88145791361551 -2.266006419408402 7.807834323710092 1.651513842409313 7.656418858796545 1.614125069673707 7.797369590113298 1.71207296755184 10.06320249162475 -4.297709022518156 9.897670607826914 -4.335348400675064 10.06756059465632 -4.234545821510379 -4.867331534120142 6.743138454598218 -4.836175219394534 6.785610561645462 -4.663545020610643 6.716340799978944 -8.86483094254511 -1.810876003588292 -9.051675172817209 -1.846049770724518 -9.053044462274221 -1.774367993559676 -12.53796431191397 -2.482947997677218 -12.51786683559621 -2.439535546338487 -12.38003317543516 -2.520612948411473 -11.85528740434087 -2.327309914645031 -11.99407172913327 -2.335885993386978 -11.9785568191176 -2.27535506048683 -9.533607646370111 -1.30720552973486 -9.536698422091648 -1.235557963230162 -9.398336732194387 -1.251430108413614 -6.055979939673919 7.078045015240623 -5.9424757760723 7.038844661266436 -6.098830498806445 7.024616000014126 10.51473644385175 -3.869709999316458 10.50645336712173 -3.932660177131321 10.39610476477002 -3.953086368156631 8.745997637818071 2.225916445333043 8.759574378182951 2.15593206901716 8.638249174645935 2.136937988450678 7.785192566295808 1.474390119993029 7.761798058242829 1.533332604647699 7.926845051899381 1.571709504981269 9.919531204534646 -4.343346287313191 9.937478950054636 -4.27880301535551 10.08928126454663 -4.242397932228659 -4.877372381696564 6.313616204722505 -5.031078100311892 6.374878601486425 -4.826906612317598 6.349960281804901 -8.864356051845189 -1.879849833307386 -9.052503024976716 -1.84332657968205 -8.86565893110614 -1.808152364153048 -12.60903942234756 -2.121651783403514 -12.45268788305704 -2.163195346911977 -12.45659475734584 -2.215850644018715 -11.51691709922873 2.476461820338925 -11.62084392495891 2.53117823002547 -11.46486178049607 2.522679131101929 -12.13104627836616 -1.364738488656472 -11.9966660992387 -1.315112784977395 -11.99344198376447 -1.386756714956942 -9.18205942245195 5.586919646267766 -9.041947562561358 5.588038733954915 -9.063776573984292 5.527243334453584 12.25338539400007 -1.321155089707019 12.37380760929147 -1.294860363414141 12.26754818949819 -1.383453184652214 11.54664151536995 0.5417516285613228 11.65828698993112 0.5671488483402105 11.54047918918483 0.4711231424537827 10.0927984075173 1.033838649760322 9.961312217475891 0.9999430953316305 10.07861404678267 1.094570872183027 11.78322974669136 -3.367385784440664 11.77558251065819 -3.433180821791243 11.63231947639032 -3.466871295603748 -7.265919129208221 6.081844855271687 -7.224849007093395 6.124892761890315 -7.078729505847892 6.058419459761951 -10.91926882018418 -1.94383192007079 -11.08097045308499 -1.983684067927202 -11.08309483002521 -1.911998750482731 -12.4726821717837 0.496177088471065 -12.45046514123785 0.5459422040659078 -12.3341822002504 0.4714730027772049 11.70574035499175 0.480366920339075 11.70805645885311 0.4102288978730836 11.58722387565817 0.3848824012390528 -11.58016418241329 2.733974862100241 -11.5405552925432 2.786344405078555 -11.42428200007916 2.724407891622082 -12.13068296398171 -1.365352966054599 -12.13400475699386 -1.293704568748746 -11.99630283859884 -1.315727172312938 -9.138252340458594 5.506413496058661 -9.033963990818558 5.452237834898119 -9.174077058409401 5.451216598813812 12.38222238834931 -1.186004868217785 12.38841036225223 -1.249032337624003 12.27715789377621 -1.275475289412604 10.06111268902415 0.8783291807048352 10.03584408975434 0.9377413103906218 10.17918295237725 0.9723636798977079 11.85555814392415 -3.337898767948163 11.70557524831283 -3.438248405328156 11.72376463514016 -3.371047484659703 -7.29985252635149 5.632317092451797 -7.429891834498812 5.690382559485976 -7.242306974483165 5.669003058538641 -10.91599378072267 -2.018252132061735 -11.07986989305261 -1.986435654276152 -10.91816800630008 -1.946584143843258 -12.42227401924783 0.8240756248723802 -12.28453404134056 0.7968687796958828 -12.29319271164968 0.7385693871397112 12.49587540671732 -1.360860892365796 12.36295742521957 -1.460026814667689 12.37772912847813 -1.390834126925765 -9.307203493878756 5.021933024813878 -9.420655215874328 5.078787217490511 -9.24828496381245 5.061495627257565 -12.22005846191051 -1.284455335573171 -12.07570275014442 -1.24035236218049 -12.07287426756643 -1.312013860961375 -11.32541633850511 3.434413206941159 -11.19244566749135 3.419768997132918 -11.20782468994037 3.358986077727649 11.56536228873711 0.7062842546849588 11.69379309139232 0.7374199887769545 11.58840770718205 0.6457244067831381 11.86935030655957 -0.1394753845984964 11.88195605126427 -0.2013348809135664 11.76677739165537 -0.2313483582302403 12.46786528678107 -1.800299450787113 12.46410551101153 -1.868943189312627 12.33805436555191 -1.89841483110699 -9.734687322955081 4.674007459041356 -9.689850086554676 4.720386835041382 -9.566354565900097 4.656403604170048 -12.33255403938178 -2.122855165481417 -12.33545636569393 -2.051203137338621 -12.19156916029628 -2.077743322433938 -10.99941322477048 3.400618047498766 -10.89638257905871 3.336512341496549 -11.0291521818851 3.34678584470159 11.62484226876936 0.8525172438219261 11.63818476646006 0.7909569622150322 11.52037569022122 0.7601733153954268 12.48705474982978 -1.421880788829585 12.48223820570867 -1.490054199808836 12.35337655444479 -1.520412300898939 -9.302703979954591 5.369515914144409 -9.257876882689953 5.414884242836538 -9.130626889992897 5.350503041455451 -12.22308779399504 -1.278472813032307 -12.22631644227562 -1.206661203836048 -12.07873344403525 -1.234367081302732 -11.39281260164922 3.2274297996298 -11.36397060252387 3.280657370285635 -11.25963064459668 3.214026345768237 11.80679329429891 -0.2988756151001704 11.93239133630643 -0.2686005413702315 11.82878013004725 -0.3597496585694814 12.46525608673323 -1.725749216076382 12.33622436346849 -1.824498607881888 12.34972578035463 -1.754914317992754 -9.731010887276227 4.303406183702024 -9.841167973317862 4.359903175765347 -9.672570274553641 4.3439453136875 -12.33327546491873 -2.121491411150122 -12.19229098852439 -2.076378789293232 -12.1893013512536 -2.148028068226123 -10.96772363310613 3.574557208880395 -10.83508641568019 3.563274984844765 -10.85199430642135 3.502250296806055 9.700133063558514 1.743658575729361 9.675027660501458 1.80290205883731 9.821699615209198 1.838203548580862 11.47800853430719 -2.915348728565967 11.49633724071634 -2.848609871224103 11.6312737384087 -2.814856631457098 -6.900726105013796 6.22656702556824 -7.03479990182481 6.285183918536337 -6.844231722584246 6.262991198781813 -10.60144102941807 -1.15106999200425 -10.76904811710645 -1.118375178178658 -10.60377278843672 -1.079236897711498 -12.5682138679312 0.6378465452335149 -12.42839533722483 0.6077877373566288 -12.43660708192508 0.5502878556221654 12.23061907081295 -2.454653074775718 12.23373972650387 -2.517889021226826 12.12705473567593 -2.54302444309913 11.1732183855626 0.2551194588039639 11.17854851734805 0.184854247527237 11.06178346568833 0.1609178037127916 -11.90903053033802 1.636482560800483 -11.87289176243844 1.690784921230413 -11.76074688627157 1.630295798825836 -11.76441272620189 -2.179493610854456 -11.76781658168089 -2.107855769700681 -11.63438572200886 -2.128497280899822 -8.402633560607434 5.627589924418487 -8.30012860573321 5.577389588847734 -8.441540378288249 5.573145862066023 -12.60725249136976 0.2966003197098835 -12.58587124961738 0.3452825968043923 -12.46643685487813 0.2695750413438101 9.733639939633211 1.892563068586766 9.599010494811875 1.858059393910534 9.719859357185387 1.953172052342427 11.56166904672407 -2.88826796474278 11.41467808579627 -2.922752577261916 11.56862950572229 -2.822911710336432 -6.878912733142323 6.618128731079663 -6.839257541258856 6.660587239864112 -6.688718108597476 6.594034362371139 -10.59400251335704 -1.104556747342412 -10.75928011103576 -1.143689097738676 -10.76133003500066 -1.072023560709993 12.1934068264344 -2.567321203650689 12.08853369849534 -2.654732170220955 12.07687120306518 -2.592184588071366 10.99374630875812 0.3422381603101748 11.10082227227301 0.3663227964335915 10.99021769238728 0.2715174848468587 -11.82991125961936 1.389728808555362 -11.92943137613817 1.443405004548001 -11.78110346449207 1.437914064229647 -11.76419542175737 -2.179837089608198 -11.63416842548747 -2.128840747151753 -11.63078088358188 -2.200494548159048 -8.479123357701766 5.740564553119779 -8.33773345156629 5.745237460619619 -8.362680709555193 5.685310528419809 -12.59179923290041 -2.072861140566345 -12.4349141711313 -2.114938646808637 -12.44026222041529 -2.166272588026754 7.548567425267287 2.279468284446137 7.526524652985462 2.338546907745761 7.690229168981393 2.376964419762755 9.7746589063734 -3.67469305729071 9.790776293167403 -3.610345062445346 9.941338832644554 -3.573887342474415 -4.591195833967213 6.845400979153489 -4.743606185013491 6.906131183301143 -4.542844432461727 6.881857920826196 -8.586669441757142 -1.047834359754729 -8.773006016752229 -1.011755662961565 -8.587947467757003 -0.9761577324023332 9.746046869028515 -4.992806913775424 9.735501332799606 -5.055477088158096 9.624048336974289 -5.074617171066822 7.927281236121091 1.761312237896771 7.942498291265432 1.691556805161452 7.820883955473859 1.673793207042376 -11.41804881857539 -3.658784117870152 -11.55217715498363 -3.671312392569379 -11.54298452255754 -3.610126319802523 -8.743632838614316 -2.095042677601923 -8.74674550130467 -2.023381161205844 -8.608535158752799 -2.038142733453908 -5.336533579251965 6.929266462535714 -5.221771325583803 6.893142316736877 -5.381163294285627 6.876885518594103 -8.619091181742117 -0.87639890633865 -8.80414358943211 -0.9120165883444161 -8.805892209435326 -0.8397632979795607 -12.50421079878694 -2.407746354985607 -12.48286082571195 -2.365701460028077 -12.34566498521755 -2.445777045063263 7.584969237805654 2.434355210056633 7.434757668159982 2.39701230982394 7.57581571199032 2.495048626939908 9.876165215659061 -3.610345444401281 9.712135333773281 -3.647931832561251 9.87919985095373 -3.547520875429662 -4.588986709826833 7.227894232869366 -4.560210211050245 7.269418806958203 -4.388571840905032 7.201907492868052 9.603159259007891 -5.002101805391789 9.480072157754329 -5.082896700251764 9.481782508812453 -5.020496251124981 7.709410812740092 1.847629176148989 7.821078118529962 1.865979967641594 7.71531021759553 1.777990101274116 -11.50127362521604 -3.6344410218119 -11.61104781310153 -3.589597096185644 -11.47670646539864 -3.578571318966301 -8.745553419553815 -2.092230822813783 -8.610455985515149 -2.035330517473851 -8.6074108871167 -2.106977013601151 -5.3855096914852 7.078599933089281 -5.413841478065989 7.022448433670304 -5.544603736381786 7.06062766913001 -6.600949100753985 -0.8236757204749829 -6.79963317398951 -0.7841438049040456 -6.601720941284047 -0.7514118877313775 -11.77531102550626 -4.234864030729428 -11.60015286477251 -4.28553059781461 -11.61038530177011 -4.330084620940065 5.345743462367635 2.627743467682134 5.329890919169237 2.687576773212528 5.503917822739783 2.72794410936342 7.838516907312039 -4.095179849693305 7.848261878979759 -4.032779071047673 8.00826451629478 -3.994648510428144 -2.270160659111173 7.20001894211878 -2.433460326974444 7.262189589159905 -2.233506080694227 7.237506189842751 5.464057725378664 -6.102200099321551 5.444556958960229 -6.162700448572736 5.318712027937583 -6.176025420301502 4.121428592918026 2.178185604401238 3.984211037780418 2.16608008914457 4.100937647216597 2.246092148132916 -6.853741323553279 -8.074158982095822 -6.986184644844813 -8.103301490697229 -7.005754887700962 -8.046223382656194 -4.550849325210138 -1.910603855338458 -4.704212806341116 -1.972850122803083 -4.706495407863542 -1.90118608459101 -2.359013430442525 7.477419544385175 -2.224435368890001 7.453097514263935 -2.403540089663022 7.428197641230938 -2.246807954583327 7.630338741567051 -2.23068519837534 7.675640083496553 -2.047249435805684 7.603747231876121 -6.568413983279684 -0.8759097367367454 -6.766331658425485 -0.9086212826675217 -6.766901931486967 -0.8369362468612964 -11.54996257806058 -4.532079969467537 -11.52208236519743 -4.496786257821556 -11.37253871710033 -4.577607325276893 5.37905676770497 2.793456453140291 5.219446945263041 2.754320348810552 5.377040500854911 2.855085741502411 7.921176529983929 -3.997624391234151 7.746797839386731 -4.036994453534243 7.916964795233094 -3.936902801616408 5.325636603495221 -6.018304134052811 5.179705003796807 -6.091410672808749 5.188436436570532 -6.030574151138832 3.879068301748835 2.263007687264583 3.869469825209229 2.330338839324836 3.995357228276211 2.343413182231673 -7.162139612959358 -7.883046208129853 -7.162369274664934 -7.937587050663221 -7.295616511033068 -7.90910761739239 -4.546227946041681 -1.985834548114294 -4.701874465791489 -1.976416175929757 -4.548510541883238 -1.9141705835812 -2.488669022770686 7.706335545333952 -2.513947138538662 7.654801631882929 -2.667096369762327 7.678588884498444 0.3388590175924675 7.468478148370858 0.1753542530736604 7.532235547004794 0.3643194954648885 7.511044788144226 -4.350741773808331 -0.8708743110031407 -4.55040902106364 -0.8313659061705711 -4.350624105358602 -0.7991879312274119 -10.50156934925294 -5.891094912037254 -10.31392445509432 -5.947034203207001 -10.33417810116103 -5.985411559262474 2.980637668983736 2.955487618140717 2.97213560195912 3.016773438136553 3.147162612606374 3.057642527741412 5.750645944714265 -4.410891053863247 5.751996379331511 -4.350088419238669 5.912934270251835 -4.311630330695824 1.430402467901002 -6.097064217224641 1.287408108770822 -6.106025121561802 1.450609292630583 -6.03794080529733 0.6897896699171024 2.091816947294958 0.5340050743466696 2.084108880342424 0.6698063959186185 2.157721231848731 -1.824493103337637 -9.427390383578034 -1.971463972366836 -9.464523559769994 -2.000368815324718 -9.414948386213476 -0.8315657471380117 -1.842015932616758 -1.006557068983648 -1.908536419886093 -1.00801446078247 -1.83685913113244 0.3734857189804404 7.582539429119366 0.5282419085750479 7.566853049270059 0.3347261333977393 7.53647988067295 5.845593956585285 -4.314764894790497 5.670261584038721 -4.354575754623455 5.832863197667823 -4.255632828607601 0.3211095130233227 7.823580412029536 0.3253673410378433 7.872968805648823 0.5098158021235133 7.801006736965309 -4.350447388675633 -0.7998671768929282 -4.550232326016451 -0.8320450687059297 -4.550126945588144 -0.7603573492320419 -10.16213749662214 -6.113909484032706 -10.12369385405249 -6.084293342241298 -9.971867929590029 -6.164062962044499 3.020434695949662 3.110073951201482 2.859935075312371 3.070498640470921 3.025935355585586 3.173180632599592 1.169659927098823 -5.982591344324178 1.177491447400724 -5.922707038717424 1.333222824575716 -5.915046323848436 0.449518148898797 2.172009657669498 0.4420401809669095 2.236966542966661 0.5850323865735413 2.245948688574167 -2.198864159897617 -9.290070489322892 -2.192237066124712 -9.339165662774249 -2.347118453065111 -9.323899370052788 -0.8344320829141361 -1.906597539063247 -1.010895572889722 -1.901435918214815 -0.8359052639922848 -1.834913781935882 0.2086113656110601 7.883570127221148 0.1918706235153801 7.836507170659524 0.01607981075470791 7.849545683073208 3.410838817924859 -4.791637802790042 3.403691788149378 -4.731927768876296 3.556607180013546 -4.694373956769291 3.138622931071409 7.468530569028002 3.30884925679718 7.452680471551964 3.29258229934162 7.404861252907204 -1.833246071438417 -0.8233296533976419 -2.023331156945316 -0.7851396565345657 -1.832431748474177 -0.7516447482476861 -8.824003284140646 -7.258754957404084 -8.981115768265994 -7.166380724353695 -8.791055043966981 -7.2252899709947 0.3286330780608032 3.271599004679685 0.3269160481412842 3.33483944506435 0.494987308283692 3.374890432677392 -1.83260229101412 -5.682836527645144 -1.988981267121588 -5.689168121202413 -1.817111095797469 -5.623882503594423 -2.26424705438166 1.83146793043839 -2.434515194417165 1.826494417771494 -2.279694360297367 1.895548618076223 1.930587139717629 -9.249275243942394 1.761931924789639 -9.289915396855312 1.737703995769082 -9.244371378351325 2.262843051627058 -1.81404939662664 2.070554959718644 -1.883333659576222 2.069857864589424 -1.811642632463284 2.9121120246615 7.415023477624387 3.082066929279716 7.404452637564274 2.883472204797545 7.371655816552622 0.2576687618359552 3.500696085404013 0.1052740801429292 3.461854464771089 0.2706330966904003 3.56613013530968 3.465811524524859 -4.676273949985517 3.29900238339993 -4.715042845334135 3.445181147882065 -4.618160915125926 3.25450671250647 7.714766398356784 3.250875872441331 7.769631186069479 3.424572231780671 7.697881806160378 -1.83490907629404 -0.7428941968907465 -2.025808191936325 -0.7763901379726197 -2.024949654622004 -0.7046982132147882 -8.546364775114862 -7.322344112488144 -8.497877694543982 -7.296563882553099 -8.353408234722659 -7.375106879045785 -2.077991854826696 -5.572405801264205 -2.076257731982353 -5.512399930575265 -1.90588599994255 -5.507505551185946 -2.489563151122448 1.892568456672654 -2.491285634742426 1.955426830915729 -2.334913316264097 1.961859375032874 1.607208980558737 -9.145752172435831 1.607436247025817 -9.191805389838896 1.437395131002299 -9.183287952258565 2.271369091126892 -1.899367917802391 2.078409505047327 -1.896960574181735 2.270699680411801 -1.827679889700657 2.718268589138662 7.785272142096066 2.713774130832634 7.741703455943248 2.52093414050731 7.748064314234124 -3.101005212899266 3.577412279864564 -3.098069028167583 3.643596049513202 -2.949644236272518 3.681106778337159 0.5872056461813613 -5.241360867570392 0.5731554144250173 -5.182045209905461 0.7111112946336134 -5.146607270480946 6.497106443482595 6.774594643572343 6.646745284903194 6.766832542992263 6.633669263900449 6.712865037076929 1.229539747046159 -0.8090004658764198 1.057626280582487 -0.7738704057642062 1.231188679675817 -0.7373170954735064 -7.050928646088233 -8.322147175581945 -7.186739428373274 -8.232048897087489 -7.007125226184665 -8.291616529698787 -4.536023768756633 -5.274692221047742 -4.698445249312494 -5.280085347772605 -4.528317687225148 -5.214977765287023 -4.846572101938646 1.535523696535898 -5.023409164285574 1.531519876429212 -4.855116805167673 1.598036321270712 4.761390014391969 -8.57912216744227 4.573796470920078 -8.621485675739146 4.561099046232635 -8.576528386537017 4.926186251392148 -1.842966286034857 4.725855626782549 -1.91324328406501 4.725875272424887 -1.841553323505028 5.392513718735883 6.995502158967064 5.569041069876899 6.98622865430164 5.376198408111666 6.953716977861921 -6.624834436002091 -8.343266464487936 -6.564440614130068 -8.320389351523742 -6.441889442908324 -8.396190757723769 -2.986489052362143 3.629067475396462 -3.123996584609335 3.592567105804021 -2.972748076744523 3.696363111680439 0.5964536110836771 -5.115716446650194 0.4459197203542348 -5.152162699378244 0.5703589265084541 -5.057842800270785 6.552913385846088 6.967420827783103 6.548146641469678 7.028279956737866 6.702508814518651 6.959157090438652 1.232621748039976 -0.7415414329871886 1.059059182266867 -0.7780942535030593 1.060664802239573 -0.7064232200460062 -4.778045314998035 -5.168841092003929 -4.784558995688505 -5.107980045130107 -4.607708182119671 -5.10407349327342 -5.0793215695751 1.603982904602696 -5.073620795971975 1.665245649891377 -4.911206810490103 1.670776698192297 4.494229071368491 -8.497950518997337 4.48234475284956 -8.543650531964993 4.305612772192483 -8.537403701206808 4.918783662506996 -1.901439839381903 4.718473602689465 -1.90002750382157 4.918802060406136 -1.829746683366773 5.185219116056956 7.412708334574132 5.194079609769208 7.371133515766913 4.993829236448887 7.375259010168215 -4.914632941831193 -9.226011483115627 -5.021526081191493 -9.137175517212191 -4.858730927155893 -9.196914519097552 -6.800828468577338 3.237800398435974 -6.800387640670833 3.305957783600929 -6.669184604952434 3.33960943800739 -3.061235305347609 -5.624933477383353 -3.077961769544193 -5.564953369687144 -2.957551470760736 -5.532501659553968 9.803298403475026 5.020030796012997 9.939035915648196 5.022910612338249 9.921072548902576 4.963596157364883 5.042477062616952 -0.7981019346748194 5.04003739996108 -0.8697584004945983 4.889570338005955 -0.8391293284960959 -6.918251583513504 -4.902663835285465 -7.07769079771071 -4.908793682871439 -6.919207650204099 -4.841592092900788 -7.248962652349006 1.224322803810492 -7.422592943457921 1.219465241070507 -7.250110037170177 1.285742841018201 6.906114095346661 -7.711173731050049 7.102774332146746 -7.715168512703589 6.905097925564351 -7.757813369933015 7.316564191042545 -1.875752496459551 7.119183764639574 -1.945159098079595 7.119906921062253 -1.873468197674101 8.134667475511211 6.082345007988138 7.956888779050511 6.053336779734313 7.961729807695646 6.095319479138744 4.89369177710442 -0.7715354373199275 5.044231163922257 -0.8021706311137055 4.891324249168518 -0.8431975863876242 -4.311885536859164 -9.21044314927207 -4.244741349664362 -9.187908550459007 -4.145175828819955 -9.263078905357359 -6.989608733936294 3.313047149127845 -6.859074814876416 3.415736807845859 -6.86948293468914 3.346144921051305 -3.057136607144227 -5.514821298193825 -3.188446423579788 -5.547963762019459 -3.084210008014707 -5.455917359636779 9.786699342693437 5.187761707039861 9.788839147541859 5.253312413537652 9.922430373158782 5.190824752621799 -7.145525731979204 -4.817805868584787 -7.160457645539334 -4.755598122927399 -6.986837805824555 -4.750904001403897 -7.483295488943362 1.294369059431125 -7.470463793862006 1.354660613111123 -7.31103840698762 1.361009120311428 6.881649825720019 -7.670249048375972 6.856544048754383 -7.717318289784595 6.683044259209378 -7.710132874045667 7.317699265603245 -1.950701463566985 7.120994987223083 -1.948412976077941 7.318376001159224 -1.879007408459161 7.766049575695377 6.552356395311159 7.786194044848958 6.510191777413938 7.589774807722749 6.51813660449934 9.254894854813308 -0.9167324311530829 9.251828858045037 -0.9883781916903132 9.117351816742602 -0.9632363091250851 -1.982309787171781 -9.922074844160122 -2.060492157904909 -9.832445370463676 -1.921207073352141 -9.890653689399986 -10.51056860374297 2.016015618555436 -10.51792275925669 2.085848276703532 -10.40082334930702 2.114317789569848 -7.49314568257528 -5.340838364669041 -7.505417731384425 -5.27895082270685 -7.398593744524085 -5.250266616605737 12.08861960841357 2.223505573629072 12.2246392897392 2.237930092997413 12.19558824656419 2.176469155941045 -9.082413289877996 -4.500351682102474 -9.230723233076891 -4.508845476695185 -9.091222908222381 -4.437425103374943 -9.538971140293358 0.7639018314802899 -9.700426783931356 0.7563121786136131 -9.534228775932153 0.8249186147743608 8.953673465312455 -6.656840922109682 9.136377463864346 -6.66537959219897 8.939657763412649 -6.706680719685711 9.539691719965946 -1.954578911020664 9.355164015014479 -2.021311301104733 9.356565505040091 -1.949623746869203 10.7944562209931 4.052829613292501 10.63479582713684 4.032857501580568 10.63415601126062 4.07789891053692 12.05920402376165 2.471950311626575 12.18110101014687 2.420686182282084 12.04524913194961 2.405314162297308 9.12366088350826 -0.8974698045951367 9.258091254390305 -0.9226224614788939 9.120547968420148 -0.9691258857088608 -1.122937561091825 -9.824524100992694 -1.054521833974184 -9.799080539978482 -0.9788016713196168 -9.874896799058696 -10.63994222865009 2.013344136466253 -10.5313333906328 2.112424293986295 -10.53294434199304 2.041624391548812 -7.658675245157602 -5.219586359468224 -7.563154659508778 -5.129645800995207 -7.541765733577965 -5.190687244740161 -9.25693001115855 -4.476700069364923 -9.280497842167719 -4.412677530949329 -9.117321972355981 -4.405410063963603 -9.75194697604057 0.8050374882700758 -9.734291427957043 0.8651552426396674 -9.586019237741056 0.8740475798645565 8.959458485297599 -6.67860020564394 8.923030466450507 -6.72824937476961 8.761886579848687 -6.71730215270895 9.539899347741693 -2.02944867211821 9.356980925718609 -2.02450977523127 9.541509274825991 -1.957778487452107 10.58652388997379 4.475738711935919 10.60882456347228 4.429640890670481 10.42775883666963 4.451752938820059 12.81878013776671 -0.7652441303818351 12.77911016892721 -0.8251357831316858 12.66864828306061 -0.7897086307946575 12.2174057480242 -0.9947482030301438 12.21415962675243 -1.066400626299469 12.0818955755303 -1.047199080864409 2.680140713861819 -9.854129518448586 2.614587204288861 -9.76177390822841 2.736547990027956 -9.814443502461552 -12.55698078725072 -0.02273720273679344 -12.57443399692328 0.04673022257813429 -12.45856719501374 0.06886924070817679 -11.44604302940786 -3.451446251740729 -11.44625717491325 -3.388128464041027 -11.34062169835765 -3.364461700485352 -11.04851561536026 -3.886396738717834 -11.17940583363626 -3.898760344917689 -11.06362245131458 -3.820811774587051 -11.56489473465991 -0.1930486704129845 -11.70830084627451 -0.2051180758801964 -11.55842790029177 -0.1315574553065221 10.74996414946448 -5.26395477433929 10.91166911937525 -5.280126411087791 10.72650231030536 -5.318228148162276 11.51117713583039 -2.066834505920978 11.34639166853562 -2.12937481160158 11.348761264778 -2.05771767986751 12.52935446170226 -0.7642104022846729 12.38853103925172 -0.7636481978390624 12.40088535149176 -0.7152920271831872 -11.54096219727708 -3.323997394407981 -11.43448276973542 -3.237814100508409 -11.42542642437748 -3.300642255855967 12.69605081552178 -0.557769436970603 12.8218132780685 -0.5952775935331 12.6721201477554 -0.6213527715665864 12.08489271922964 -0.975098983348563 12.21712208686263 -0.9942991072373359 12.08161188898392 -1.046749944485742 3.84491264716146 -9.535431972259664 3.717574312810627 -9.491336030605259 3.778404646834254 -9.457580504182932 -12.48608670189704 -0.05521616486810895 -12.59217633466384 -0.07759047874737915 -12.49468872382924 0.01462665307592227 -11.24777770535109 -3.813626414247613 -11.27347093805358 -3.747607198916761 -11.13148889186723 -3.736144859558363 -11.78274753405902 -0.1901089938064303 -11.76446669890119 -0.1286500032508171 -11.63369688121841 -0.1155216047110243 10.78554273978905 -5.369913416267781 10.74214118692316 -5.422978702459687 10.59961140871281 -5.405636914741278 11.50697981210647 -2.135091010132068 11.34438709461597 -2.125960844131605 11.50917169502004 -2.063419124941607 12.52869414805493 -0.6720658251114389 12.53418964284194 -0.7275289658485421 12.38787205617552 -0.6713255647413392 -12.66812017787089 -0.7377636034755921 -12.6557152856829 -0.6752903732675847 -12.53827364064838 -0.6576259523312927 12.02975326339321 -3.200635946145051 11.98508371934015 -3.256871307150082 11.85918602032538 -3.232351940419628 12.60435450639438 -0.9349079872896567 12.60157650081571 -1.006572103563774 12.45606315085875 -0.9931755094944339 9.646099704192091 -6.540311077321691 9.616778072070421 -6.594137719524099 9.519244071721854 -6.508160679276509 -12.39737880649773 -1.803269368389568 -12.42142226650803 -1.735696711570993 -12.29325113874864 -1.719860038178735 -12.35201737779743 -2.734203352197723 -12.4665514071796 -2.751788587100053 -12.36681915305359 -2.666148389687829 -12.64378379789673 -2.148232168059666 -12.51753427489609 -2.066951456210427 -12.51889655292754 -2.130061439833859 12.13497871476274 -3.30423750600422 12.274323170788 -3.331055450699581 12.10818011923135 -3.36371192408869 12.52820093160765 -2.16348230398198 12.67052707297118 -2.177897199084264 12.52526689361987 -2.235137763657174 9.083727460491037 -7.235691707836772 8.956155993504925 -7.205611650119923 8.99884526827284 -7.161259838071032 -12.24950799258057 -1.850527582120462 -12.36722712375889 -1.867009383604301 -12.26364197454243 -1.783183058732165 -12.66188702262465 -0.6721380147752802 -12.53123560125465 -0.592814061286445 -12.53397521977916 -0.6552606075227748 11.96142489643524 -3.065586715165786 12.10453445883291 -3.090260905828021 11.93462105317904 -3.124079108265068 12.45901845887403 -0.9217868859907208 12.60451088997626 -0.9351777987968065 12.45621938669737 -0.9934450883106137 10.1922942062558 -6.001327089984576 10.06294871829891 -5.976050917545559 10.09993699390079 -5.929644293427442 -12.52213590676956 -2.614090488894461 -12.54626210722259 -2.546362135107309 -12.42097186366522 -2.529495936389581 -12.64475311492307 -2.140105917930304 -12.63265295654619 -2.077613511697214 -12.51840217321106 -2.058922789721463 12.21208464367354 -3.500534444088139 12.1678244191901 -3.557480530298427 12.04531208481726 -3.531140853334366 12.67054540006644 -2.177933302011313 12.66756563078661 -2.249579074857127 12.52528518350265 -2.235173808143825 8.320623204678105 -7.786959163113103 8.232874929095363 -7.697636149700083 8.357082193647491 -7.735438167397502 -10.92430361763545 -2.83306346094682 -10.94912627808307 -2.767660088846366 -10.80220340211371 -2.75712106249809 -11.46365995656451 1.11449201724629 -11.44534506784558 1.175291965449422 -11.3105776325685 1.187499866469894 10.50179575822348 -4.91802020301214 10.45921696766879 -4.970403694988755 10.3130884381685 -4.954416311874142 11.2150058757459 -0.8893648689627063 11.04848006968411 -0.8810920936825015 11.21704215856316 -0.8176907419769754 12.48882793122139 0.8001832150614913 12.50011544374162 0.746133328072065 12.34514220832967 0.7947446575729812 -12.25834708115401 -0.7167472920872547 -12.36460762954684 -0.7402274224586559 -12.26627320370312 -0.6466868541445741 -10.96165087025318 -4.791064051735776 -10.85747041594138 -4.703929326199413 -10.84699529529141 -4.766603113113328 12.66110003515725 -0.6448085608565688 12.78502636494957 -0.6848121031570447 12.63855556857809 -0.7091562363563319 11.69049556089854 -2.192029447741701 11.82201748319881 -2.212313174264094 11.68712959843341 -2.263664635868686 2.786442773881154 -10.03592408610541 2.657202691118821 -9.990154442073933 2.7203563364341 -9.958392385442188 12.50121610250245 0.645933275879893 12.35746638012572 0.641667854665042 12.36503647428866 0.690579099150778 -10.72767626807281 -2.902417657010436 -10.8625393063809 -2.913953713118199 -10.74082400116297 -2.837629898732242 -11.2701753075792 1.113743778931909 -11.41702951810472 1.102607233037831 -11.26352973655104 1.17507062539224 10.47431528209601 -4.874675603876916 10.64014284200808 -4.889237561558042 10.45222726449447 -4.9280861002243 11.21665097345873 -0.817026028592214 11.04808904603521 -0.8804276459384789 11.05014366576572 -0.8087556813547585 -12.32108748035685 -0.7063977391578555 -12.33684084971447 -0.6367128941778316 -12.22194144423427 -0.6133888617183338 -10.8508644666914 -4.910544994711315 -10.85354164840268 -4.847352146849595 -10.74773297143062 -4.822641437402077 12.79415567435181 -0.901735537730742 12.75609267059029 -0.9621013067410971 12.64729378391449 -0.9245750335657489 11.82346278774114 -2.214655706131431 11.82002304445178 -2.286294249986722 11.688574935385 -2.266007220419015 1.613855925203038 -10.23514118395188 1.548410783550392 -10.14313216949229 1.672170999325572 -10.19747212894398 10.10509617256335 5.307495219048317 10.12906687701174 5.261973918342235 9.944409369026371 5.280611820303632 -8.938545594816175 -3.385637841338056 -8.959231894214225 -3.322079906361745 -8.794975086676027 -3.315409192563738 -9.371371790257051 2.01601562795054 -9.354278062269634 2.076078003192116 -9.203496739719563 2.084377204684571 8.620490640664896 -6.142056151301214 8.585891689944674 -6.191186512474318 8.421924834222999 -6.181126961747228 9.171453351342711 -0.7862006098504798 8.985374646398356 -0.7818597160135269 9.172740030121522 -0.7145175685324635 -10.02184885624744 1.27664421782956 -9.909616753078108 1.376620927098016 -9.913116109148708 1.30589626836735 -6.668820369006065 -6.3888858489672 -6.787547417719502 -6.418614984929631 -6.691786442499998 -6.328294035798993 11.72108212861239 2.422488147860282 11.84399648985425 2.368936246423897 11.70933061303161 2.355741298847008 8.348507779772081 -2.090569958369155 8.484904921841803 -2.116752510561905 8.345353592093668 -2.162216634558236 -1.82738260852769 -10.13217269407754 -1.75873619458932 -10.10753064839566 -1.679407571285809 -10.18319392408976 9.172574094289658 -0.7142259494379865 8.985208768195092 -0.7815681961441532 8.986484830219609 -0.7098811786373334 10.3741582950887 4.891032705646279 10.21231675430306 4.868846279788393 10.2120809399966 4.913047224178735 -8.721015915563411 -3.466105233634645 -8.87182758105471 -3.474055929503595 -8.728511102395748 -3.403506917456138 -9.155565803861562 1.976448371447795 -9.319793013159728 1.969497366493955 -9.151669602591923 2.037480184017877 8.619823578614357 -6.181328665513821 8.805739843936904 -6.188827872184205 8.608037714300634 -6.230521110804173 -9.877284333470186 1.256905021379852 -9.882799551871313 1.326569015030331 -9.763898746457855 1.356073012091971 -6.634224302748915 -6.517920402656922 -6.647956918246396 -6.456481116238631 -6.539300411065627 -6.427054274292626 11.75295215948591 2.141939069617363 11.88773990574985 2.154340074702622 11.86086369420799 2.092941713259929 8.486623141134281 -2.120047596972245 8.483579289708688 -2.191693814469742 8.347071658155628 -2.165511429901186 -2.624212925449276 -10.15064480514148 -2.706920319159464 -10.06139568049478 -2.563563972384996 -10.12001192494219 6.905128364991542 -0.7157663462809335 6.706982149809622 -0.7137726112372038 6.905685887765163 -0.6440736422712722 7.291385085460716 7.16053165628489 7.309840309385741 7.118782615639108 7.111855348723685 7.12544493858975 -6.736892803753619 -3.755182909130092 -6.750374055509518 -3.69320837269109 -6.575421187924434 -3.688767774615201 -7.068584075832563 2.475211961078289 -7.05692673767198 2.535628676349578 -6.8962792139153 2.541700844445098 6.490424106918721 -7.108821293216964 6.467713749312748 -7.155583273790948 6.292837673619022 -7.148740808790945 -6.236143753315759 2.348465962161977 -6.101475582455138 2.45147931704271 -6.113000472235257 2.382271665968184 -2.319938076792037 -6.543427589147638 -2.454678179618663 -6.577258530081625 -2.347228569014471 -6.484856323560032 9.21657005487458 4.976425101198499 9.217030817197978 5.041360744536497 9.353995775891198 4.977238798808156 4.276763073580272 -2.009784836798928 4.120242250038147 -2.049900192570037 4.122539147813649 -1.978236748381537 -4.788173852738191 -9.523907708578999 -4.721957171919164 -9.501519083631466 -4.617822128234676 -9.576809867399767 6.514362576025462 -7.204773302166274 6.712475200188893 -7.208267905961661 6.515799130000541 -7.250878757087985 6.90649597847858 -0.6455226806804572 6.707791985152818 -0.7152211991066345 6.708346151468331 -0.6435301315091279 7.667558799678972 6.762320860708827 7.486522609131087 6.732405373730895 7.493166052638109 6.774187271445335 -6.513722224920572 -3.838874349262564 -6.674381637394875 -3.844748639390658 -6.513091796844782 -3.778060726471683 -6.842947048790961 2.420958041906638 -7.01794189797377 2.416364241220615 -6.845456297039751 2.48256248158162 -6.050637277326548 2.254905191196734 -6.049412758603382 2.322619185522681 -5.914926379359914 2.357068195700977 -2.308320482126599 -6.660328640144927 -2.324957880932171 -6.600542708138916 -2.201486606224465 -6.567485658682623 9.221337604460567 4.76580044886155 9.358763786175485 4.766564479856735 9.342243733787802 4.70806709794962 4.274390944644534 -2.081184769515353 4.120134128726166 -2.049636892959227 4.276654940332099 -2.009521508367151 -5.353563659506532 -9.472747231332079 -5.465757103480144 -9.383725404633548 -5.299210596634174 -9.443658526530237 4.01795733860726 -7.946677496125321 4.008440497215478 -7.99218509072781 3.832187822096989 -7.985806230715681 4.473964104932032 -0.6779511285841976 4.27418090413199 -0.67648369913303 4.473830216089857 -0.6062588129077937 4.741689778330031 7.962921652458548 4.748162475832153 7.921123172862993 4.548487343279458 7.9252669919763 -4.321388913700464 -4.105619606925039 -4.326317680033606 -4.044927686173337 -4.150000887048926 -4.040997928507854 -4.640229805035218 2.795979829008918 -4.635943867340972 2.857523599764584 -4.473993895036286 2.863098452121417 -2.332816992403701 2.510511649805565 -2.47346728346775 2.473516439511946 -2.319136483896051 2.577371894397588 1.180434235726424 -6.150961901526562 1.026599371140038 -6.187921333040047 1.155088899660314 -6.093098971734511 6.001738772212597 6.491536344311743 5.997068601180984 6.551347183971659 6.153785360024773 6.481536522915294 0.6140021512227728 -1.966802477791774 0.4368443898826924 -2.002690295403096 0.4382864708787215 -1.93101388333201 -6.992581283815026 -8.683527396401857 -6.933821119214811 -8.660339945850341 -6.805287334771601 -8.736773337055197 -4.39720013907419 2.719632112681811 -4.573564435054072 2.715590763550038 -4.40711974467781 2.782388416036915 4.303566820589536 -8.087105222503734 4.118870596494562 -8.129261142657084 4.103805166534269 -8.084370096625332 4.47403121436948 -0.6066156042287847 4.274381844560351 -0.6768403886719054 4.274295152810143 -0.6051626048469881 4.943522953238395 7.621805236916789 5.119526523107883 7.612654526523374 4.92491740810982 7.579786954825032 -4.086258799484165 -4.207741200740353 -4.248216324410707 -4.213178577697287 -4.077018241495186 -4.148246067965332 -2.286632422320452 2.331957827939785 -2.285160862709941 2.397061826453747 -2.131422429209602 2.434999272540071 1.143597543452929 -6.258630231775132 1.130538154720602 -6.199334636958288 1.271649420195784 -6.163442199649933 5.947954844830404 6.306211203100156 6.100051171157892 6.296690972733831 6.087351659536604 6.243076447623369 0.6363852053372954 -2.11616549622075 0.4621232387497143 -2.080390606912731 0.6392835740040764 -2.044510653228 -7.396000247538519 -8.592289674988017 -7.536228840858669 -8.501629477156589 -7.352252016604588 -8.561606714430482 -1.992251873627624 3.069137594556995 -1.99526290260837 3.132332819027415 -1.840880027947763 3.139099671517681 0.986303489507237 -8.619818257433765 0.9882378254537633 -8.666222437088377 0.8203571460677778 -8.656878952667265 1.73930313475289 -0.6680557020219697 1.548793345031301 -0.6652938532232062 1.738503396454447 -0.5963806467824427 2.275282391915863 8.320437653037011 2.26836478902093 8.276277202155798 2.077987181714787 8.283548893795921 -1.539422638859084 -4.52111182133746 -1.536330157966407 -4.461223639044718 -1.368119422486145 -4.455967101051516 0.8427943360052032 2.234275839124005 0.6882719276239152 2.195363910262767 0.8531371082192651 2.29887979499915 3.926471921077349 -5.724695422071401 3.757475357493761 -5.763730842403976 3.907097816369042 -5.666478387738177 2.694120461954414 7.139504741171798 2.690376907532083 7.193962526998284 2.867880763625536 7.121188405672213 -2.340657171133343 -2.017359950187927 -2.535454440634304 -2.050467478858239 -2.533200376064993 -1.978798301918892 -8.828661937859151 -7.668012617872336 -8.780273985907968 -7.641995380924155 -8.635228694626996 -7.720233015551211 -1.294830378688606 -4.636698978082613 -1.449220140721894 -4.643367878898248 -1.278157903380341 -4.577832460690896 -1.749405044982786 2.991742383849651 -1.91756898316699 2.986413745460856 -1.76596462792328 3.056063568143478 1.325422693043524 -8.779476032537506 1.160677743878615 -8.819717258011629 1.135022182389053 -8.773697838009975 1.741592942901703 -0.601668250011042 1.551882097384761 -0.6705801036120539 1.551023803178467 -0.5988889786872379 2.466267129561606 8.0228018553836 2.634003226567327 8.0115631732706 2.435490355614513 7.978966819008738 0.8237370965992558 2.070639919214244 0.8208815136375675 2.133453983703914 0.9891930140569999 2.173570874291884 3.854445954600101 -5.827005108856018 3.848735286997988 -5.767192321719023 4.003711552841845 -5.729413886187937 2.550374726944825 6.796833780674253 2.724348651612159 6.779818555476862 2.706697415328707 6.732995750532142 -2.351382516112003 -2.052469125242277 -2.545446165170833 -2.01389098677349 -2.350650018235103 -1.980779370948002 -9.100566873162702 -7.52730130613514 -9.260386493312403 -7.434443173150337 -9.069899885370543 -7.492984194590505 2.099363166726732 -4.94203785703949 2.107203094554858 -4.882044099013946 2.259402164738622 -4.873130464253538 1.243529233091322 3.310045858944677 1.235813553299132 3.375391656590128 1.37473014647636 3.385627353047777 -3.351342190965849 -8.626228931742908 -3.346345348927424 -8.676325475586459 -3.497144026037172 -8.658024668066801 -1.677284560510524 -0.70633768106393 -1.851016468452078 -0.7001310367739958 -1.678954119171283 -0.634655407848723 -0.4118333013120634 8.395431052259955 -0.4298418410845212 8.347399916026566 -0.6026516654263514 8.363131482196927 -0.2378507836692079 8.149854355964495 -0.08696647781522904 8.131797445751307 -0.278727906986147 8.103162072266287 2.384782100741672 -5.082399466842356 2.245869039417281 -5.092664783458099 2.405431214540438 -5.023076447958078 1.475431700269857 3.243216126390903 1.323272414485122 3.234281508318627 1.454753953233677 3.309560615052864 -2.948035965690998 -8.846868381591575 -3.0924920136427 -8.882261956682696 -3.120792491386729 -8.831130965139387 -1.684593072115199 -0.625485532760107 -1.856654181201284 -0.6909631785153511 -1.858376963653818 -0.6192761170688331 -3.500683618123513 8.064882940053439 -3.525719444789873 8.011719666304421 -3.673050247634391 8.040856603974447 6.955644786533308 -4.747620095717669 6.81761152413446 -4.823559727099589 6.823492521271798 -4.762227160851196 5.315804866404559 3.314816904079104 5.436521058611903 3.330070906469733 5.323293291429909 3.24676187210137 -9.029669298622906 -6.244294517972814 -9.038908690770507 -6.2995864057601 -9.164955249885221 -6.264990066024588 -6.168696811301597 -0.7901060687980691 -6.02002624362285 -0.7298413413179093 -6.01737032917005 -0.801510764651425 -6.16716278695688 -0.792436855045515 -6.169715512734515 -0.7207820874583649 -6.018491961441754 -0.7321725211963476 -3.399712071176042 7.918858619107905 -3.271454875195229 7.889857442398896 -3.444340954945617 7.868263918577964 7.17276412510656 -4.850090869232007 7.156443691189562 -4.911518846998646 7.03582601934696 -4.927247750974769 5.507385981112565 3.267901631020001 5.52607702653324 3.199214961373389 5.393829927214853 3.184869575963909 -8.780046658568089 -6.508224285157986 -8.91452077770985 -6.531969444126121 -8.925059965119072 -6.472337947996555 -9.922286454553056 -0.9076299356093774 -9.791389594947722 -0.8525954506810992 -9.788224450349521 -0.9242350953684234 -6.370729092607941 7.23003170987289 -6.398506628403295 7.1724565055405 -6.523965758672695 7.215836227131745 10.75180389353382 -3.333018557809622 10.63561920186676 -3.416254407804016 10.63332092034774 -3.353525140831295 8.861705302952519 2.5712636309005 8.96922414584018 2.591466117381528 8.86529907640135 2.501077716399933 -12.10395207533582 -1.484660583795291 -12.20813095702387 -1.435903437710017 -12.0704415276492 -1.430533718292126 -12.05997770552258 -1.469396477281094 -12.19761975125221 -1.475471628350712 -12.17729656161256 -1.415727212050378 -9.936513878679747 -0.8868328377047231 -9.941031714176686 -0.8152174882354868 -9.805618656606432 -0.8317959425747208 -6.350003871811573 7.141549793466944 -6.240040498119259 7.101239011052403 -6.393473694344706 7.088424407995349 10.86068419727297 -3.300221888996849 10.85283791380745 -3.363278468703162 10.74560599350948 -3.384403612544038 9.119938093338734 2.439500074086822 9.133588361276352 2.369530245826872 9.014974260452364 2.349857548717207 -11.34376110431816 3.005857236292954 -11.44515614595066 3.060354317536095 -11.29002185008157 3.050999593139427 -12.25670379789215 -0.9574911001626694 -12.12589329598696 -0.9082455332686441 -12.12130202099527 -0.9798579923255602 -9.368746114816725 5.616394312373524 -9.231590812440061 5.616210041075912 -9.254590353091588 5.555676288744566 12.30270697279117 -0.732113087700826 12.42055141167946 -0.7052916998320605 12.31711944278753 -0.7944483502396152 11.70206617194429 0.7552865135110995 11.81185224631584 0.7810748303386988 11.6965028844164 0.6846329028614195 11.86898635413291 0.6722763530350459 11.87104552223794 0.6023187115769892 11.75269972310422 0.576533515244516 -11.39277574246463 3.269682934449164 -11.35175394290062 3.320805416786018 -11.2377670077281 3.25911837798393 -12.25821608909728 -0.954946958328069 -12.26218871199502 -0.8831442064389639 -12.12740511085889 -0.9057021744526329 -9.333951301784506 5.540363222778258 -9.23292955156092 5.485609947104076 -9.370084887883374 5.485777856076087 12.41957133901145 -0.6324110322915311 12.4263289770214 -0.695343898136144 12.31693024407344 -0.7221315217553045 12.48016826144953 -1.243753167471799 12.34429480398159 -1.343183971445835 12.35994238710784 -1.274298751779843 -9.012147787148093 5.423597290302976 -9.128325238038466 5.480464172696799 -8.952856952283797 5.462060318680178 -12.10973869944608 -0.8469973304044502 -11.96284437797668 -0.8036370920067902 -11.95954120685193 -0.8754608307159759 -11.59627193385536 3.202584298451698 -11.4634983598959 3.186144490736025 -11.47748464315625 3.125592926579735 11.39625966559125 1.193500293933925 11.37247793831953 1.253822805125405 11.50329825389713 1.28557192066328 11.43225516515759 1.35086468307398 11.3123654752576 1.319512047249267 11.41840644118666 1.412295310967418 12.46281297284593 -1.296848130028971 12.45721780484478 -1.364651136073806 12.32617515034154 -1.395628597027183 -8.996283755064813 5.7748702589918 -8.951666168716843 5.819630807753827 -8.821147903244956 5.754601321140991 -12.10471953603337 -0.8572592189670679 -12.10747121001836 -0.7855993752540388 -11.95782322851087 -0.8139031445575967 -11.66785457757601 2.988319697594459 -11.64107809660029 3.041236477413251 -11.53480109354982 2.973345703310676 9.425181677324584 2.212623701020339 9.400153583337911 2.271824722148035 9.54936163552995 2.307611764388428 11.2983943217303 -2.680294155958691 11.3167793430654 -2.613905556663458 11.45398999527297 -2.579713660922916 -6.609979410302995 6.555939244904025 -6.746869313450294 6.614845996702235 -6.554293726341641 6.592222662943728 -10.38122554630156 -0.745612633570873 -10.55178606745953 -0.7123105628725666 -10.38319056391241 -0.6739367703322631 -12.65732301542027 0.3863514875253744 -12.51549067466984 0.3546774704142022 -12.52221478068862 0.2979685253638622 -12.67911423682639 0.08600577763682274 -12.65807679297375 0.1339171034732307 -12.53628126281827 0.0572487219030826 9.470443121160606 2.347147236634991 9.333542009577753 2.312195929114243 9.457104877662456 2.407680697034803 11.38447033618222 -2.643335396576386 11.23490984120818 -2.678319849214413 11.3911261480459 -2.578336467346423 -6.587708889966835 6.935378655373325 -6.549315343445682 6.977721645207256 -6.395511963141001 6.910843381360522 -10.3827479645972 -0.6751291178904675 -10.55134356040148 -0.7135026595921468 -10.55329357905936 -0.6418351223251259 -12.54321914504149 -2.218647066826399 -12.3837820178911 -2.262221731699633 -12.38954532724651 -2.312707613476549 7.279475221502429 2.702294269062388 7.258202288185225 2.761407272932601 7.423784776443614 2.800175566198119 9.545432887655039 -3.368731989611771 9.560826135908778 -3.304656729018584 9.713126490345431 -3.2678948843385 -4.291305521677162 7.150081122961999 -4.445698079219057 7.211038928586153 -4.244354307513261 7.186700167875324 -8.389282297838969 -0.6214431932966419 -8.578232357696681 -0.5844146002130058 -8.390465289713081 -0.5497652814628296 -8.390767151360857 -0.5487576391848469 -8.578534171083605 -0.583407119780339 -8.579698435852466 -0.5117154431111796 -12.43537005342288 -2.541751964905157 -12.41345742118862 -2.500664840718393 -12.27413943234457 -2.581031021514565 7.312801710123706 2.859883214523761 7.160856647368313 2.822222522147044 7.304553402565933 2.920660158772516 9.633311601774835 -3.292529013834861 9.467408900084184 -3.330402415249695 9.635557604886044 -3.23003540851381 -4.278571776868531 7.539863273500846 -4.251362540932578 7.58283139246282 -4.077599424388679 7.513693674238044 -6.29335632842592 -0.5214520223250756 -6.492605814868599 -0.4822880308652268 -6.293803551570187 -0.4497553586592444 -11.64235809494519 -4.319024808846037 -11.46509382688498 -4.370591264740194 -11.47640619199758 -4.414250226930309 5.054816115548261 3.050139743656006 5.039950924368886 3.110133004083711 5.214708111952201 3.151620237850744 7.577664411258514 -3.751820865648637 7.586360150911093 -3.689677659961227 7.747067274487477 -3.651462485883278 -1.917097294782449 7.525945587053175 -2.080846122094815 7.588721053652636 -1.881633387588275 7.565010948047002 -1.921127258480661 7.896927179977313 -1.906710346070583 7.94261089448567 -1.722236273243561 7.871600580651387 -6.292566439838838 -0.4544225744093013 -6.4913688695174 -0.4869546174149007 -6.491854624348844 -0.4152691934974535 -11.30505290103937 -4.673726136626675 -11.27690437572564 -4.638869538785145 -11.1246780624565 -4.718118237880796 5.088688143707718 3.212501917741875 4.928388931467554 3.17324083859975 5.087701423255209 3.275283794461239 7.679669553937385 -3.66347746606246 7.50458309063117 -3.703017469134509 7.67431021886715 -3.60299871434307 0.6996151188652344 7.725383840287953 0.5367390253324689 7.789101629120368 0.7235584372046083 7.768521460429608 -4.0304199872564 -0.4525178958320339 -4.228998470122891 -0.4134755536381191 -4.030212752661576 -0.3808316388062449 -10.07876403360383 -6.0974257405 -9.888916304351143 -6.149508101492421 -9.909146381347247 -6.187613894822916 2.649759067226831 3.377763100537905 2.642120622030253 3.440261576999215 2.81657339720568 3.480132420853204 5.473761289466534 -4.084697247308223 5.473939406137715 -4.024071885298348 5.634230440431742 -3.985641585990616 5.548812606004653 -3.973459956805778 5.374060335745256 -4.013190989162217 5.534912246617022 -3.91452025849031 0.6931165104629631 8.085070269535777 0.6963369416731116 8.134635959577771 0.879665016491066 8.063021733454999 -4.037599337315415 -0.3530293567286862 -4.236384110376655 -0.3856768302963634 -4.236104917286607 -0.3136223144064921 -9.898232527648123 -6.183104866159721 -9.858918028540105 -6.153749138227793 -9.707133812399878 -6.232274538142961 2.691798244858481 3.526463766325558 2.531943503059076 3.486924844189506 2.698247554331419 3.589806674028978 3.082081187941093 -4.465409680165303 3.07377663751358 -4.405821239983794 3.22503623500764 -4.368513175742105 3.58578458189039 7.674340291589815 3.75321249608593 7.658674571967698 3.73754410839752 7.610599105556862 -1.494450632672106 -0.3824210123169178 -1.682781354543124 -0.3441496521552638 -1.49340372038536 -0.3103708684648485 -8.625414143109291 -7.245785380893075 -8.780660692114449 -7.153643309371925 -8.591113416765756 -7.212767687665056 -0.1087167556986124 3.683453210426043 -0.1098028950304958 3.746993228289769 0.05471275126923469 3.786623270121855 -0.08865781898262037 3.82850185208538 -0.2394578044990775 3.790059610255885 -0.07660648582358653 3.893793921393367 3.134864807710613 -4.349260287608189 2.969944694451996 -4.387780244431911 3.113309190185412 -4.291258829799207 3.695737596866848 7.88766705489126 3.691603185322147 7.943354964450992 3.863013199932308 7.871024852929904 -1.488054154630252 -0.3289354281000696 -1.677432443479252 -0.3627119402626852 -1.676464332671698 -0.2910243414762917 -8.327004756704078 -7.284071928224889 -8.275235605677009 -7.259079190765347 -8.134490188075422 -7.336931313708036 -3.446700910458202 3.849860546874504 -3.444540810896324 3.915815413352899 -3.296965250116518 3.952813658761782 0.1476508044566194 -4.935405220347271 0.1329601974875749 -4.876091169627454 0.2685892390158162 -4.841014956222171 6.962508546912947 6.842232653552305 7.109665008093557 6.835797973849037 7.096414218120602 6.780997767936586 1.691057387326594 -0.4026909594992563 1.521995388945184 -0.3681074705290025 1.692832050902842 -0.331012909742998 -6.841311603229078 -8.291401132961235 -6.973176407778905 -8.201224289159466 -6.79401525273343 -8.261420355118384 -6.380805753141919 -8.292039825095348 -6.319222226811345 -8.269338376016222 -6.198141689366169 -8.345324135262887 -3.483386627440059 3.993444753164489 -3.618579957335738 3.957342610922335 -3.469685600219242 4.061048062723969 0.1734090589833454 -4.821658883697502 0.02545944937439482 -4.857715828022043 0.1468645784761846 -4.763697051195838 7.008004022004116 7.015533252580459 7.003667023039261 7.077145827039529 7.155130362017395 7.008685579427924 1.696837374782633 -0.3424533629032008 1.526000253588872 -0.3795466148189169 1.527735688721861 -0.3078637643182571 -4.609566789263434 -9.205519494100448 -4.712196887254752 -9.1166309698513 -4.552586593640797 -9.176311384342677 -7.335926336140776 3.501344658873248 -7.336090136062639 3.569801646769853 -7.207424733829447 3.602826827519697 -3.604855654207896 -5.30422825132537 -3.621458193344325 -5.244019973485324 -3.503427236732714 -5.212022770707214 10.20890948835965 4.912754188318949 10.34385705017712 4.917183668851282 10.32463024713863 4.857359080885999 5.617079606326176 -0.4087090388779297 5.614529778436362 -0.4803768235417171 5.466665880062625 -0.4504418947803532 5.465513998147964 -0.370397045064424 5.61334104460501 -0.400328856764548 5.462927715328628 -0.442062598113118 -3.959927008171782 -9.166617350452173 -3.892221284138974 -9.143924259315345 -3.796210649422447 -9.218964019946055 -7.518705425007282 3.56318260729297 -7.391316800806528 3.66552945671989 -7.400899399851348 3.595688743993093 -3.637354251897245 -5.171346676645626 -3.766315528500788 -5.203961660208352 -3.664166289010515 -5.112249941182268 10.18459634480319 5.068905936576128 10.18817943759912 5.134853659211896 10.31952839317151 5.073618818198497 9.801686196180491 -0.5237914814620348 9.798433179787889 -0.5954402230658886 9.664277113009604 -0.5710552978815334 -1.567008929643396 -9.871758577509121 -1.640781020201906 -9.78296132191822 -1.505544608527762 -9.839916934999756 -10.92318158987221 2.128753694533634 -10.93182117799355 2.198670496554331 -10.8157675181759 2.226307235163676 -8.046811891065453 -4.868776691289468 -8.058273959862701 -4.806679999265388 -7.95429548563077 -4.778681563323726 12.27753300923371 2.043204884569114 12.41587332788536 2.059088809975417 12.38533685313047 1.997607191448191 12.25374165118651 2.273918551406887 12.37622299280005 2.224433316395436 12.23807710365099 2.207534607744957 9.639405531462138 -0.443234258880393 9.770669066873262 -0.4675270877429548 9.633263139090937 -0.5147965807838888 -0.8068622647747287 -9.751157414050727 -0.7390683711478735 -9.72443536438672 -0.6673692466574432 -9.801359563882809 -11.02593410945303 2.116445005509541 -10.91949300436063 2.214656301674535 -10.92171054612782 2.143873712930612 -8.354324784230016 -4.627952817242197 -8.259931023427683 -4.539070976883634 -8.237237441851384 -4.599896794204487 12.79266206233665 -0.9385981505235493 12.75156240082418 -0.9978715662618307 12.640751986495 -0.9642003636433475 12.44014876984172 -0.6018753560009648 12.43391497842397 -0.673432786761746 12.30165062889963 -0.655073567767769 3.433798058562158 -9.646757419633014 3.366576847926532 -9.552636807777409 3.487265769094727 -9.604459259227655 -12.67366436821154 0.06327042355108598 -12.69054057867328 0.1328187313951262 -12.57355088575061 0.1541380154524462 -11.89780025416519 -2.671329031703041 -11.89850957366648 -2.607939973174148 -11.78930411163973 -2.58506654452211 -11.86679791899832 -2.720740160880428 -11.75871842641653 -2.634154602720348 -11.75160264488553 -2.697926282921187 12.67985626588935 -0.7454552885333471 12.80633042858929 -0.78101058651027 12.65491783461317 -0.808375809207925 12.29370488540646 -0.5657502789823955 12.42892083029588 -0.5842030792690948 12.29042011780475 -0.6373971477570675 4.666369350262223 -9.233255228807497 4.539976545409513 -9.19067103849998 4.598673959890117 -9.155226877193503 -12.60671987881273 -0.04008266309577988 -12.71631214269975 -0.06178105213171261 -12.61798780830803 0.03028756614059104 -12.64775302197637 -0.1716394666262745 -12.63376577286065 -0.1085752984250314 -12.51563622508443 -0.09134116209380108 11.8718498564201 -3.236091347128322 11.82706360313676 -3.291792186763279 11.69852394158044 -3.268560825178234 12.50858711201633 -0.5112305291553186 12.50586242915174 -0.5828919323844278 12.35772964751408 -0.5702459644825559 10.50172401220205 -5.605301514386396 10.47832242189326 -5.660524211899692 10.37256237910686 -5.577917520336098 -12.26057633247983 -1.657196858345917 -12.28662152440635 -1.58929437583228 -12.15615173504133 -1.574132887186072 -12.15411772740797 -1.618299883977775 -12.2725565886736 -1.63416595644146 -12.16795183082427 -1.551242387073698 -12.61131799242071 -0.02015374192480997 -12.47725567640437 0.05812361788573152 -12.48101455674324 -0.004117269420730918 11.81173465244481 -3.125727746290349 11.95780249175681 -3.148876677813699 11.78516755658687 -3.183549476282655 12.36031281982692 -0.4983958535245435 12.50847923160441 -0.5110484142038515 12.35762184619329 -0.5700639746462372 10.90620621368105 -5.09363532399637 10.77522502084391 -5.072258795960493 10.8077489459603 -5.024605676155583 -10.68864845065998 -2.55455621740603 -10.71313306542342 -2.489409085121871 -10.56367818363771 -2.479478575841482 -11.22977363661436 1.632251312131652 -11.21132626074843 1.692848965063889 -11.07409588962486 1.704445265413141 10.28908899766099 -4.858082536205109 10.24732473618666 -4.910050967066953 10.09844449383102 -4.895012793962303 10.97958363553207 -0.4640685802303887 10.81015082367626 -0.4564087800025247 10.98149539854754 -0.3923849763066227 12.32997748267721 1.719906435123948 12.34475518666718 1.667083206994886 12.18421600790133 1.710328105714628 12.36982989793857 1.508397449117879 12.22387765480027 1.500827385925978 12.22911457727385 1.549238358852193 -10.49704810409977 -2.615522139965255 -10.63436112072196 -2.626496325150515 -10.50970045751017 -2.551100829927615 -11.03538538335118 1.627905259033432 -11.18489774124952 1.617444806016395 -11.02886196560464 1.689158837988261 10.25924858758659 -4.842472303442993 10.4281027881423 -4.855881371326672 10.23822656986093 -4.895184834627975 10.98192110993328 -0.3931097750537854 10.81057636536067 -0.4571332976911415 10.81251018073159 -0.3854535266787559 9.730367119152808 5.767068993737939 9.754244433565511 5.722260792112578 9.567091049182192 5.738429733970274 -8.677996020170248 -3.048205804642975 -8.697847313106026 -2.984918359828509 -8.531714985668323 -2.978669862747076 -9.089362884542329 2.464115709916181 -9.072850819948432 2.524195731350672 -8.920294631802884 2.532087635379381 8.361553493798574 -6.033342915132951 8.328336447243949 -6.082018146740463 8.162411901259357 -6.072556959675273 8.892462674804984 -0.3668520613015502 8.704221058912331 -0.3629203536274807 8.89363833995432 -0.295162114521727 8.89497573996357 -0.2975159917516584 8.705558006249373 -0.3652734477418679 8.70676284588583 -0.2936022161711446 10.02759348426556 5.363335444688016 9.863049882418745 5.339606479460216 9.863221256372452 5.383311392066778 -8.455858395384974 -3.135704029654332 -8.608441279194427 -3.143269815162752 -8.46241171014479 -3.073407550625284 -8.863331305141637 2.415851805606997 -9.029484091262898 2.409324191094267 -8.860142972476787 2.476874456013834 8.366906520559503 -6.099632004239871 8.555016693227945 -6.10641963081676 8.356756027588144 -6.148305043552335 6.610614497481498 -0.3034504705566268 6.411593821678057 -0.3016433777460381 6.611118434348282 -0.2317740684684547 6.960088796820089 7.439059513171552 6.977086288713464 7.397450087739094 6.778157825414796 7.403377882836645 -6.450722167386379 -3.409408375563931 -6.46311260125781 -3.347663566968103 -6.287376973874669 -3.343401386641197 -6.761471839359336 2.888819790438602 -6.750762285145275 2.949310092292259 -6.589391875422425 2.955214371119521 6.192189404311118 -6.986634573495285 6.171206558458689 -7.033114258629384 5.995623802845925 -7.026531760350306 6.232673197980219 -7.109532399189411 6.431665779435432 -7.112723865213545 6.236069304306408 -7.155467054080994 6.613110217701095 -0.2353333759150206 6.413584994721523 -0.3052016066294995 6.414052518634684 -0.2335142881420584 7.339486247303872 7.068395044593074 7.156050049383133 7.037852634154685 7.164239462889271 7.079546035244175 -6.21273358368919 -3.516292226979891 -6.374114519069684 -3.522015703946565 -6.210986519573698 -3.455677150877848 -6.531647199667637 2.830929523977672 -6.707340474893881 2.82653589756132 -6.535073186614172 2.892629180248644</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"890\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 9 8 1 9 0 10 12 11 14 12 15 13 16 14 6 15 2 16 20 17 9 18 8 19 22 20 1 21 24 22 8 23 26 24 27 25 15 26 30 27 1 28 12 29 14 30 16 31 32 32 26 33 15 34 14 35 6 36 20 37 34 38 36 39 9 40 22 41 38 42 39 43 40 44 39 45 44 46 45 47 24 48 1 49 30 50 48 51 27 52 26 53 30 54 12 55 50 56 52 57 53 58 54 59 16 60 58 61 32 62 53 63 60 64 61 65 34 66 20 67 64 68 36 69 22 70 66 71 68 72 38 73 40 74 39 75 45 76 40 77 44 78 52 79 45 80 70 81 24 82 30 83 61 84 72 85 73 86 48 87 76 88 27 89 78 90 30 91 50 92 52 93 54 94 80 95 52 96 60 97 53 98 32 99 58 100 82 101 60 102 72 103 61 104 34 105 64 106 84 107 64 108 36 109 66 110 86 111 38 112 68 113 88 114 89 115 90 116 80 117 94 118 88 119 44 120 96 121 52 122 70 123 30 124 78 125 72 126 98 127 73 128 100 129 76 130 48 131 78 132 50 133 102 134 80 135 54 136 94 137 96 138 60 139 52 140 58 141 104 142 82 143 106 144 72 145 60 146 84 147 64 148 108 149 66 150 110 151 64 152 112 153 86 154 68 155 90 156 89 157 114 158 88 159 94 160 89 161 116 162 70 163 78 164 118 165 98 166 72 167 73 168 98 169 120 170 100 171 122 172 76 173 124 174 78 175 102 176 96 177 106 178 60 179 104 180 126 181 82 182 106 183 118 184 72 185 84 186 108 187 128 188 110 189 108 190 64 191 112 192 130 193 86 194 90 195 114 196 132 197 134 198 135 199 126 200 116 201 78 202 124 203 118 204 138 205 98 206 98 207 140 208 120 209 142 210 122 211 100 212 124 213 102 214 144 215 104 216 134 217 126 218 146 219 116 220 124 221 108 222 148 223 128 224 110 225 150 226 108 227 152 228 130 229 112 230 154 231 132 232 114 233 134 234 156 235 135 236 158 237 146 238 159 239 138 240 140 241 98 242 120 243 140 244 162 245 142 246 164 247 122 248 159 249 124 250 144 251 146 252 124 253 159 254 148 255 166 256 128 257 150 258 148 259 108 260 152 261 168 262 130 263 170 264 132 265 154 266 156 267 172 268 135 269 158 270 159 271 174 272 176 273 140 274 138 275 140 276 178 277 162 278 142 279 180 280 164 281 159 282 144 283 182 284 148 285 184 286 166 287 150 288 186 289 148 290 188 291 168 292 152 293 190 294 170 295 154 296 156 297 192 298 172 299 174 300 159 301 182 302 194 303 158 304 174 305 176 306 178 307 140 308 162 309 178 310 196 311 180 312 198 313 164 314 184 315 200 316 166 317 186 318 184 319 148 320 188 321 202 322 168 323 188 324 170 325 190 326 192 327 204 328 172 329 174 330 182 331 206 332 194 333 174 334 208 335 210 336 178 337 176 338 178 339 212 340 196 341 180 342 214 343 198 344 184 345 216 346 200 347 186 348 218 349 184 350 220 351 202 352 188 353 222 354 188 355 190 356 192 357 224 358 204 359 214 360 226 361 198 362 208 363 174 364 206 365 228 366 194 367 208 368 210 369 212 370 178 371 196 372 212 373 230 374 216 375 232 376 200 377 218 378 216 379 184 380 220 381 234 382 202 383 220 384 188 385 222 386 224 387 236 388 204 389 214 390 238 391 226 392 208 393 206 394 240 395 228 396 208 397 242 398 244 399 212 400 210 401 230 402 212 403 246 404 216 405 248 406 232 407 218 408 250 409 216 410 220 411 252 412 234 413 254 414 220 415 222 416 256 417 236 418 224 419 258 420 230 421 246 422 238 423 260 424 226 425 208 426 240 427 242 428 262 429 228 430 242 431 244 432 264 433 212 434 248 435 266 436 232 437 250 438 248 439 216 440 252 441 268 442 234 443 252 444 220 445 254 446 256 447 270 448 236 449 258 450 246 451 272 452 238 453 274 454 260 455 242 456 240 457 276 458 262 459 242 460 278 461 280 462 264 463 244 464 248 465 282 466 266 467 250 468 284 469 248 470 252 471 286 472 268 473 288 474 252 475 254 476 290 477 270 478 256 479 272 480 264 481 280 482 292 483 258 484 272 485 274 486 294 487 260 488 242 489 276 490 296 491 298 492 262 493 278 494 282 495 300 496 266 497 284 498 282 499 248 500 286 501 302 502 268 503 286 504 252 505 288 506 290 507 304 508 270 509 272 510 280 511 306 512 292 513 272 514 308 515 274 516 310 517 294 518 296 519 276 520 312 521 298 522 278 523 314 524 282 525 316 526 300 527 284 528 318 529 282 530 286 531 320 532 302 533 322 534 286 535 288 536 324 537 304 538 290 539 298 540 314 541 326 542 308 543 272 544 306 545 328 546 292 547 308 548 294 549 310 550 330 551 314 552 296 553 312 554 316 555 332 556 300 557 318 558 316 559 282 560 320 561 334 562 302 563 320 564 286 565 322 566 324 567 336 568 304 569 326 570 314 571 338 572 308 573 306 574 340 575 328 576 308 577 342 578 330 579 310 580 344 581 314 582 312 583 346 584 316 585 348 586 332 587 350 588 316 589 318 590 320 591 352 592 334 593 322 594 354 595 320 596 356 597 336 598 324 599 338 600 314 601 346 602 326 603 338 604 358 605 342 606 308 607 340 608 360 609 328 610 342 611 330 612 344 613 362 614 348 615 364 616 332 617 350 618 366 619 316 620 352 621 368 622 334 623 354 624 352 625 320 626 370 627 336 628 356 629 338 630 346 631 372 632 358 633 338 634 374 635 342 636 340 637 376 638 342 639 378 640 360 641 362 642 344 643 380 644 348 645 382 646 364 647 384 648 366 649 350 650 352 651 386 652 368 653 354 654 388 655 352 656 390 657 370 658 356 659 362 660 380 661 392 662 374 663 338 664 372 665 394 666 358 667 374 668 378 669 342 670 376 671 360 672 378 673 396 674 382 675 398 676 364 677 384 678 400 679 366 680 386 681 402 682 368 683 388 684 386 685 352 686 404 687 370 688 390 689 392 690 380 691 406 692 374 693 372 694 408 695 394 696 374 697 410 698 378 699 376 700 412 701 378 702 414 703 396 704 416 705 398 706 382 707 384 708 418 709 400 710 386 711 420 712 402 713 388 714 422 715 386 716 404 717 390 718 424 719 396 720 414 721 426 722 392 723 406 724 428 725 410 726 374 727 408 728 430 729 394 730 410 731 414 732 378 733 412 734 416 735 432 736 398 737 418 738 416 739 400 740 402 741 420 742 434 743 422 744 420 745 386 746 436 747 404 748 424 749 414 750 438 751 426 752 428 753 406 754 440 755 410 756 408 757 442 758 430 759 410 760 444 761 414 762 412 763 446 764 448 765 432 766 416 767 418 768 450 769 416 770 434 771 420 772 452 773 422 774 454 775 420 776 436 777 424 778 456 779 438 780 414 781 446 782 426 783 438 784 458 785 428 786 440 787 460 788 444 789 410 790 442 791 462 792 430 793 444 794 448 795 464 796 432 797 450 798 448 799 416 800 434 801 452 802 466 803 454 804 452 805 420 806 468 807 436 808 456 809 438 810 446 811 470 812 438 813 472 814 458 815 460 816 440 817 474 818 444 819 442 820 476 821 462 822 444 823 478 824 448 825 480 826 464 827 450 828 482 829 448 830 466 831 452 832 484 833 486 834 452 835 454 836 468 837 456 838 488 839 490 840 462 841 478 842 438 843 470 844 472 845 458 846 472 847 492 848 494 849 460 850 474 851 478 852 444 853 476 854 480 855 496 856 464 857 482 858 480 859 448 860 466 861 484 862 498 863 484 864 452 865 486 866 500 867 468 868 488 869 490 870 478 871 502 872 472 873 470 874 504 875 472 876 506 877 492 878 494 879 474 880 508 881 478 882 476 883 510 884 480 885 512 886 496 887 482 888 514 889 480 890 498 891 484 892 516 893 518 894 484 895 486 896 500 897 488 898 520 899 502 900 478 901 510 902 522 903 490 904 502 905 472 906 504 907 524 908 492 909 506 910 526 911 528 912 494 913 508 914 512 915 530 916 496 917 514 918 512 919 480 920 498 921 516 922 532 923 516 924 484 925 518 926 534 927 500 928 520 929 502 930 510 931 536 932 522 933 502 934 538 935 524 936 504 937 540 938 506 939 542 940 526 941 528 942 508 943 544 944 512 945 546 946 530 947 514 948 548 949 512 950 532 951 516 952 550 953 552 954 516 955 518 956 534 957 520 958 554 959 556 960 528 961 544 962 538 963 502 964 536 965 558 966 522 967 538 968 524 969 540 970 560 971 526 972 542 973 562 974 546 975 564 976 530 977 548 978 546 979 512 980 566 981 532 982 550 983 550 984 516 985 552 986 534 987 554 988 568 989 556 990 544 991 570 992 572 993 538 994 536 995 558 996 538 997 574 998 560 999 540 1000 576 1001 578 1002 562 1003 542 1004 546 1005 580 1006 564 1007 548 1008 582 1009 546 1010 566 1011 550 1012 584 1013 586 1014 550 1015 552 1016 568 1017 554 1018 588 1019 578 1020 590 1021 562 1022 592 1023 556 1024 570 1025 572 1026 574 1027 538 1028 594 1029 558 1030 574 1031 560 1032 576 1033 596 1034 580 1035 598 1036 564 1037 582 1038 580 1039 546 1040 600 1041 566 1042 584 1043 584 1044 550 1045 586 1046 568 1047 588 1048 602 1049 604 1050 590 1051 578 1052 592 1053 570 1054 606 1055 608 1056 574 1057 572 1058 574 1059 610 1060 594 1061 576 1062 612 1063 596 1064 580 1065 614 1066 598 1067 582 1068 616 1069 580 1070 600 1071 584 1072 618 1073 620 1074 584 1075 586 1076 602 1077 588 1078 622 1079 596 1080 612 1081 624 1082 604 1083 626 1084 590 1085 628 1086 592 1087 606 1088 608 1089 630 1090 574 1091 610 1092 632 1093 594 1094 614 1095 634 1096 598 1097 616 1098 614 1099 580 1100 636 1101 600 1102 618 1103 618 1104 584 1105 620 1106 602 1107 622 1108 638 1109 612 1110 640 1111 624 1112 642 1113 626 1114 604 1115 644 1116 628 1117 606 1118 608 1119 646 1120 630 1121 610 1122 648 1123 632 1124 614 1125 650 1126 634 1127 614 1128 616 1129 652 1130 636 1131 618 1132 654 1133 656 1134 618 1135 620 1136 638 1137 622 1138 658 1139 648 1140 660 1141 632 1142 640 1143 662 1144 624 1145 642 1146 664 1147 626 1148 666 1149 628 1150 644 1151 646 1152 668 1153 630 1154 650 1155 670 1156 634 1157 614 1158 652 1159 650 1160 672 1161 636 1162 654 1163 674 1164 618 1165 656 1166 638 1167 658 1168 676 1169 678 1170 660 1171 648 1172 640 1173 680 1174 662 1175 682 1176 664 1177 642 1178 684 1179 666 1180 644 1181 646 1182 686 1183 668 1184 670 1185 650 1186 688 1187 650 1188 652 1189 690 1190 672 1191 654 1192 692 1193 674 1194 656 1195 694 1196 658 1197 696 1198 676 1199 686 1200 678 1201 668 1202 678 1203 698 1204 660 1205 680 1206 682 1207 662 1208 682 1209 700 1210 664 1211 684 1212 702 1213 666 1214 704 1215 670 1216 688 1217 650 1218 690 1219 706 1220 708 1221 672 1222 692 1223 674 1224 694 1225 710 1226 676 1227 696 1228 712 1229 678 1230 686 1231 714 1232 698 1233 678 1234 716 1235 680 1236 718 1237 682 1238 682 1239 720 1240 700 1241 722 1242 702 1243 684 1244 704 1245 688 1246 724 1247 706 1248 690 1249 726 1250 708 1251 692 1252 728 1253 710 1254 694 1255 730 1256 696 1257 732 1258 712 1259 722 1260 734 1261 702 1262 716 1263 678 1264 714 1265 736 1266 698 1267 716 1268 718 1269 720 1270 682 1271 700 1272 720 1273 738 1274 704 1275 724 1276 740 1277 742 1278 706 1279 726 1280 744 1281 708 1282 728 1283 710 1284 730 1285 746 1286 712 1287 732 1288 748 1289 750 1290 734 1291 722 1292 716 1293 714 1294 752 1295 736 1296 716 1297 754 1298 718 1299 756 1300 720 1301 720 1302 758 1303 738 1304 740 1305 724 1306 760 1307 742 1308 726 1309 762 1310 764 1311 744 1312 728 1313 746 1314 730 1315 766 1316 732 1317 768 1318 748 1319 738 1320 758 1321 770 1322 750 1323 772 1324 734 1325 754 1326 716 1327 752 1328 774 1329 736 1330 754 1331 756 1332 758 1333 720 1334 740 1335 760 1336 776 1337 760 1338 742 1339 762 1340 778 1341 744 1342 764 1343 746 1344 766 1345 780 1346 768 1347 782 1348 748 1349 758 1350 784 1351 770 1352 786 1353 772 1354 750 1355 754 1356 752 1357 788 1358 774 1359 754 1360 790 1361 756 1362 792 1363 758 1364 776 1365 760 1366 794 1367 762 1368 796 1369 760 1370 798 1371 778 1372 764 1373 800 1374 780 1375 766 1376 768 1377 802 1378 782 1379 792 1380 784 1381 758 1382 770 1383 784 1384 804 1385 786 1386 806 1387 772 1388 790 1389 754 1390 788 1391 808 1392 774 1393 790 1394 776 1395 794 1396 810 1397 796 1398 794 1399 760 1400 798 1401 812 1402 778 1403 814 1404 780 1405 800 1406 802 1407 816 1408 782 1409 792 1410 818 1411 784 1412 784 1413 820 1414 804 1415 822 1416 806 1417 786 1418 790 1419 788 1420 824 1421 808 1422 790 1423 826 1424 794 1425 828 1426 810 1427 796 1428 830 1429 794 1430 832 1431 812 1432 798 1433 834 1434 814 1435 800 1436 802 1437 836 1438 816 1439 838 1440 808 1441 826 1442 818 1443 820 1444 784 1445 804 1446 820 1447 840 1448 822 1449 842 1450 806 1451 826 1452 790 1453 824 1454 828 1455 844 1456 810 1457 830 1458 828 1459 794 1460 832 1461 846 1462 812 1463 848 1464 814 1465 834 1466 836 1467 850 1468 816 1469 838 1470 826 1471 852 1472 854 1473 820 1474 818 1475 820 1476 856 1477 840 1478 822 1479 858 1480 842 1481 826 1482 824 1483 860 1484 828 1485 862 1486 844 1487 830 1488 864 1489 828 1490 866 1491 846 1492 832 1493 868 1494 848 1495 834 1496 836 1497 870 1498 850 1499 852 1500 826 1501 860 1502 872 1503 838 1504 852 1505 854 1506 856 1507 820 1508 840 1509 856 1510 874 1511 858 1512 876 1513 842 1514 862 1515 878 1516 844 1517 864 1518 862 1519 828 1520 866 1521 880 1522 846 1523 866 1524 848 1525 868 1526 870 1527 882 1528 850 1529 852 1530 860 1531 884 1532 872 1533 852 1534 886 1535 888 1536 856 1537 854 1538 856 1539 890 1540 874 1541 858 1542 892 1543 876 1544 862 1545 894 1546 878 1547 864 1548 896 1549 862 1550 898 1551 880 1552 866 1553 900 1554 866 1555 868 1556 870 1557 902 1558 882 1559 892 1560 904 1561 876 1562 886 1563 852 1564 884 1565 906 1566 872 1567 886 1568 888 1569 890 1570 856 1571 874 1572 890 1573 908 1574 894 1575 910 1576 878 1577 896 1578 894 1579 862 1580 898 1581 912 1582 880 1583 898 1584 866 1585 900 1586 902 1587 914 1588 882 1589 892 1590 916 1591 904 1592 886 1593 884 1594 918 1595 906 1596 886 1597 920 1598 922 1599 890 1600 888 1601 908 1602 890 1603 924 1604 894 1605 926 1606 910 1607 896 1608 928 1609 894 1610 898 1611 930 1612 912 1613 932 1614 898 1615 900 1616 934 1617 914 1618 902 1619 936 1620 908 1621 924 1622 916 1623 938 1624 904 1625 886 1626 918 1627 920 1628 940 1629 906 1630 920 1631 922 1632 942 1633 890 1634 926 1635 944 1636 910 1637 928 1638 926 1639 894 1640 930 1641 946 1642 912 1643 930 1644 898 1645 932 1646 934 1647 948 1648 914 1649 936 1650 924 1651 950 1652 916 1653 952 1654 938 1655 920 1656 918 1657 954 1658 940 1659 920 1660 956 1661 958 1662 942 1663 922 1664 926 1665 960 1666 944 1667 928 1668 962 1669 926 1670 930 1671 964 1672 946 1673 966 1674 930 1675 932 1676 968 1677 948 1678 934 1679 950 1680 942 1681 958 1682 970 1683 936 1684 950 1685 952 1686 972 1687 938 1688 920 1689 954 1690 974 1691 940 1692 956 1693 976 1694 960 1695 978 1696 944 1697 962 1698 960 1699 926 1700 964 1701 980 1702 946 1703 964 1704 930 1705 966 1706 968 1707 982 1708 948 1709 950 1710 958 1711 984 1712 970 1713 950 1714 986 1715 952 1716 988 1717 972 1718 974 1719 954 1720 990 1721 976 1722 956 1723 992 1724 960 1725 994 1726 978 1727 962 1728 996 1729 960 1730 964 1731 998 1732 980 1733 1000 1734 964 1735 966 1736 1002 1737 982 1738 968 1739 976 1740 992 1741 1004 1742 986 1743 950 1744 984 1745 1006 1746 970 1747 986 1748 972 1749 988 1750 1008 1751 992 1752 974 1753 990 1754 994 1755 1010 1756 978 1757 996 1758 994 1759 960 1760 998 1761 1012 1762 980 1763 998 1764 964 1765 1000 1766 1002 1767 1014 1768 982 1769 1004 1770 992 1771 1016 1772 986 1773 984 1774 1018 1775 1006 1776 986 1777 1020 1778 1008 1779 988 1780 1022 1781 992 1782 990 1783 1024 1784 994 1785 1026 1786 1010 1787 1028 1788 994 1789 996 1790 998 1791 1030 1792 1012 1793 1000 1794 1032 1795 998 1796 1034 1797 1014 1798 1002 1799 1016 1800 992 1801 1024 1802 1004 1803 1016 1804 1036 1805 1020 1806 986 1807 1018 1808 1038 1809 1006 1810 1020 1811 1008 1812 1022 1813 1040 1814 1026 1815 1042 1816 1010 1817 1028 1818 1044 1819 994 1820 1030 1821 1046 1822 1012 1823 1032 1824 1030 1825 998 1826 1048 1827 1014 1828 1034 1829 1016 1830 1024 1831 1050 1832 1036 1833 1016 1834 1052 1835 1020 1836 1018 1837 1054 1838 1020 1839 1056 1840 1038 1841 1040 1842 1022 1843 1058 1844 1026 1845 1060 1846 1042 1847 1062 1848 1044 1849 1028 1850 1030 1851 1064 1852 1046 1853 1032 1854 1066 1855 1030 1856 1068 1857 1048 1858 1034 1859 1040 1860 1058 1861 1070 1862 1052 1863 1016 1864 1050 1865 1072 1866 1036 1867 1052 1868 1056 1869 1020 1870 1054 1871 1038 1872 1056 1873 1074 1874 1060 1875 1076 1876 1042 1877 1062 1878 1078 1879 1044 1880 1064 1881 1080 1882 1046 1883 1066 1884 1064 1885 1030 1886 1082 1887 1048 1888 1068 1889 1070 1890 1058 1891 1084 1892 1052 1893 1050 1894 1086 1895 1072 1896 1052 1897 1088 1898 1056 1899 1054 1900 1090 1901 1056 1902 1092 1903 1074 1904 1094 1905 1076 1906 1060 1907 1062 1908 1096 1909 1078 1910 1064 1911 1098 1912 1080 1913 1066 1914 1100 1915 1064 1916 1082 1917 1068 1918 1102 1919 1074 1920 1092 1921 1104 1922 1070 1923 1084 1924 1106 1925 1088 1926 1052 1927 1086 1928 1108 1929 1072 1930 1088 1931 1092 1932 1056 1933 1090 1934 1094 1935 1110 1936 1076 1937 1096 1938 1094 1939 1078 1940 1080 1941 1098 1942 1112 1943 1100 1944 1114 1945 1064 1946 1116 1947 1082 1948 1102 1949 1092 1950 1118 1951 1104 1952 1106 1953 1084 1954 1120 1955 1088 1956 1086 1957 1122 1958 1108 1959 1088 1960 1124 1961 1092 1962 1090 1963 1126 1964 1128 1965 1110 1966 1094 1967 1096 1968 1130 1969 1094 1970 1112 1971 1098 1972 1132 1973 1134 1974 1114 1975 1100 1976 1116 1977 1102 1978 1136 1979 1118 1980 1092 1981 1126 1982 1104 1983 1118 1984 1138 1985 1106 1986 1120 1987 1140 1988 1124 1989 1088 1990 1122 1991 1142 1992 1108 1993 1124 1994 1128 1995 1144 1996 1110 1997 1130 1998 1128 1999 1094 2000 1112 2001 1132 2002 1146 2003 1132 2004 1114 2005 1134 2006 1148 2007 1116 2008 1136 2009 1118 2010 1126 2011 1150 2012 1118 2013 1152 2014 1138 2015 1140 2016 1120 2017 1154 2018 1124 2019 1122 2020 1156 2021 1142 2022 1124 2023 1158 2024 1128 2025 1160 2026 1144 2027 1130 2028 1162 2029 1128 2030 1146 2031 1132 2032 1164 2033 1166 2034 1132 2035 1134 2036 1148 2037 1136 2038 1168 2039 1170 2040 1142 2041 1158 2042 1118 2043 1150 2044 1152 2045 1138 2046 1152 2047 1172 2048 1174 2049 1140 2050 1154 2051 1158 2052 1124 2053 1156 2054 1160 2055 1176 2056 1144 2057 1162 2058 1160 2059 1128 2060 1146 2061 1164 2062 1178 2063 1164 2064 1132 2065 1166 2066 1180 2067 1148 2068 1168 2069 1170 2070 1158 2071 1182 2072 1152 2073 1150 2074 1184 2075 1152 2076 1186 2077 1172 2078 1174 2079 1154 2080 1188 2081 1158 2082 1156 2083 1190 2084 1160 2085 1192 2086 1176 2087 1162 2088 1194 2089 1160 2090 1178 2091 1164 2092 1196 2093 1198 2094 1164 2095 1166 2096 1180 2097 1168 2098 1200 2099 1182 2100 1158 2101 1190 2102 1202 2103 1170 2104 1182 2105 1152 2106 1184 2107 1204 2108 1172 2109 1186 2110 1206 2111 1208 2112 1174 2113 1188 2114 1192 2115 1210 2116 1176 2117 1194 2118 1192 2119 1160 2120 1178 2121 1196 2122 1212 2123 1196 2124 1164 2125 1198 2126 1214 2127 1180 2128 1200 2129 1182 2130 1190 2131 1216 2132 1202 2133 1182 2134 1218 2135 1204 2136 1184 2137 1220 2138 1186 2139 1222 2140 1206 2141 1208 2142 1188 2143 1224 2144 1226 2145 1208 2146 1224 2147 1218 2148 1182 2149 1216 2150 1228 2151 1202 2152 1218 2153 1204 2154 1220 2155 1230 2156 1206 2157 1222 2158 1232 2159 1226 2160 1224 2161 1234 2162 1236 2163 1218 2164 1216 2165 1218 2166 1238 2167 1228 2168 1230 2169 1220 2170 1240 2171 1242 2172 1232 2173 1222 2174 1242 2175 1244 2176 1232 2177 1246 2178 1226 2179 1234 2180 1236 2181 1238 2182 1218 2183 1238 2184 1248 2185 1228 2186 1230 2187 1240 2188 1250 2189 1252 2190 1244 2191 1242 2192 1246 2193 1234 2194 1254 2195 1256 2196 1238 2197 1236 2198 1238 2199 1258 2200 1248 2201 1240 2202 1260 2203 1250 2204 1250 2205 1260 2206 1262 2207 1252 2208 1264 2209 1244 2210 1266 2211 1246 2212 1254 2213 1256 2214 1268 2215 1238 2216 1258 2217 1270 2218 1248 2219 1260 2220 1272 2221 1262 2222 1274 2223 1264 2224 1252 2225 1276 2226 1266 2227 1254 2228 1256 2229 1278 2230 1268 2231 1258 2232 1280 2233 1270 2234 1280 2235 1282 2236 1270 2237 1272 2238 1284 2239 1262 2240 1274 2241 1286 2242 1264 2243 1288 2244 1266 2245 1276 2246 1278 2247 1280 2248 1268 2249 1290 2250 1282 2251 1280 2252 1272 2253 1292 2254 1284 2255 1294 2256 1286 2257 1274 2258 1296 2259 1288 2260 1276 2261 1280 2262 1278 2263 1298 2264 1290 2265 1280 2266 1298 2267 1290 2268 1300 2269 1282 2270 1292 2271 1294 2272 1284 2273 1294 2274 1302 2275 1286 2276 1296 2277 1304 2278 1288 2279 1290 2280 1298 2281 1306 2282 1300 2283 1290 2284 1308 2285 1292 2286 1310 2287 1294 2288 1294 2289 1312 2290 1302 2291 1314 2292 1304 2293 1296 2294 1314 2295 1316 2296 1304 2297 1308 2298 1290 2299 1306 2300 1318 2301 1300 2302 1308 2303 1310 2304 1312 2305 1294 2306 1302 2307 1312 2308 1320 2309 1322 2310 1316 2311 1314 2312 1308 2313 1306 2314 1324 2315 1318 2316 1308 2317 1326 2318 1310 2319 1328 2320 1312 2321 1312 2322 1330 2323 1320 2324 1320 2325 1330 2326 1332 2327 1322 2328 1334 2329 1316 2330 1326 2331 1308 2332 1324 2333 1336 2334 1318 2335 1326 2336 1328 2337 1330 2338 1312 2339 1330 2340 1338 2341 1332 2342 1340 2343 1334 2344 1322 2345 1326 2346 1324 2347 1342 2348 1336 2349 1326 2350 1344 2351 1328 2352 1346 2353 1330 2354 1346 2355 1338 2356 1330 2357 1332 2358 1338 2359 1348 2360 1340 2361 1350 2362 1334 2363 1344 2364 1326 2365 1342 2366 1352 2367 1336 2368 1344 2369 1346 2370 1354 2371 1338 2372 1338 2373 1356 2374 1348 2375 1358 2376 1350 2377 1340 2378 1344 2379 1342 2380 1360 2381 1352 2382 1344 2383 1362 2384 1364 2385 1352 2386 1362 2387 1354 2388 1356 2389 1338 2390 1348 2391 1356 2392 1366 2393 1358 2394 1368 2395 1350 2396 1362 2397 1344 2398 1360 2399 1364 2400 1362 2401 1370 2402 1372 2403 1356 2404 1354 2405 1356 2406 1374 2407 1366 2408 1358 2409 1376 2410 1368 2411 1362 2412 1360 2413 1378 2414 1370 2415 1362 2416 1378 2417 1380 2418 1364 2419 1370 2420 1372 2421 1374 2422 1356 2423 1366 2424 1374 2425 1382 2426 1376 2427 1384 2428 1368 2429 1370 2430 1378 2431 1386 2432 1380 2433 1370 2434 1388 2435 1390 2436 1374 2437 1372 2438 1374 2439 1392 2440 1382 2441 1376 2442 1394 2443 1384 2444 1394 2445 1396 2446 1384 2447 1388 2448 1370 2449 1386 2450 1398 2451 1380 2452 1388 2453 1390 2454 1392 2455 1374 2456 1382 2457 1392 2458 1400 2459 1394 2460 1402 2461 1396 2462 1388 2463 1386 2464 1404 2465 1398 2466 1388 2467 1406 2468 1408 2469 1392 2470 1390 2471 1400 2472 1392 2473 1410 2474 1412 2475 1400 2476 1410 2477 1402 2478 1414 2479 1396 2480 1388 2481 1404 2482 1406 2483 1416 2484 1398 2485 1406 2486 1408 2487 1418 2488 1392 2489 1412 2490 1410 2491 1420 2492 1402 2493 1422 2494 1414 2495 1406 2496 1404 2497 1424 2498 1416 2499 1406 2500 1426 2501 1428 2502 1418 2503 1408 2504 1420 2505 1418 2506 1428 2507 1430 2508 1412 2509 1420 2510 1422 2511 1432 2512 1414 2513 1406 2514 1424 2515 1434 2516 1416 2517 1426 2518 1436 2519 1420 2520 1428 2521 1438 2522 1430 2523 1420 2524 1440 2525 1422 2526 1442 2527 1432 2528 1434 2529 1424 2530 1444 2531 1436 2532 1426 2533 1446 2534 1436 2535 1446 2536 1448 2537 1440 2538 1420 2539 1438 2540 1450 2541 1430 2542 1440 2543 1432 2544 1442 2545 1452 2546 1446 2547 1434 2548 1444 2549 1448 2550 1446 2551 1454 2552 1440 2553 1438 2554 1456 2555 1450 2556 1440 2557 1458 2558 1452 2559 1442 2560 1460 2561 1446 2562 1444 2563 1462 2564 1454 2565 1446 2566 1462 2567 1448 2568 1454 2569 1464 2570 1458 2571 1440 2572 1456 2573 1466 2574 1450 2575 1458 2576 1452 2577 1460 2578 1468 2579 1454 2580 1462 2581 1470 2582 1464 2583 1454 2584 1472 2585 1458 2586 1456 2587 1474 2588 1458 2589 1476 2590 1466 2591 1468 2592 1460 2593 1478 2594 1468 2595 1478 2596 1480 2597 1472 2598 1454 2599 1470 2600 1482 2601 1464 2602 1472 2603 1476 2604 1458 2605 1474 2606 1466 2607 1476 2608 1484 2609 1480 2610 1478 2611 1486 2612 1472 2613 1470 2614 1488 2615 1482 2616 1472 2617 1490 2618 1476 2619 1474 2620 1492 2621 1476 2622 1494 2623 1484 2624 1484 2625 1494 2626 1496 2627 1480 2628 1486 2629 1498 2630 1490 2631 1472 2632 1488 2633 1500 2634 1482 2635 1490 2636 1494 2637 1476 2638 1492 2639 1494 2640 1502 2641 1496 2642 1498 2643 1486 2644 1504 2645 1490 2646 1488 2647 1506 2648 1500 2649 1490 2650 1508 2651 1494 2652 1492 2653 1510 2654 1502 2655 1494 2656 1510 2657 1496 2658 1502 2659 1512 2660 1498 2661 1504 2662 1514 2663 1508 2664 1490 2665 1506 2666 1516 2667 1500 2668 1508 2669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1697\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1698\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"890\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 5 7 10 11 4 13 5 4 17 18 19 21 3 7 23 11 10 11 25 4 18 28 29 13 4 31 33 17 19 19 18 29 35 21 7 23 10 37 41 42 43 46 47 42 31 4 25 29 28 49 51 13 31 55 56 57 33 59 17 62 63 56 65 21 35 67 23 37 41 43 69 41 46 42 46 57 47 31 25 71 74 75 62 28 77 49 51 31 79 81 55 57 56 63 57 83 59 33 62 75 63 85 65 35 67 37 65 69 43 87 91 92 93 93 95 81 57 97 47 79 31 71 74 99 75 49 77 101 103 51 79 95 55 81 57 63 97 83 105 59 63 75 107 109 65 85 65 111 67 69 87 113 115 92 91 92 95 93 79 71 117 75 99 119 121 99 74 77 123 101 103 79 125 63 107 97 83 127 105 75 119 107 129 109 85 65 109 111 87 131 113 133 115 91 127 136 137 125 79 117 99 139 119 121 141 99 101 123 143 145 103 125 127 137 105 125 117 147 129 149 109 109 151 111 113 131 153 115 133 155 136 157 137 160 147 161 99 141 139 163 141 121 123 165 143 145 125 160 160 125 147 129 167 149 109 149 151 131 169 153 155 133 171 136 173 157 175 160 161 139 141 177 163 179 141 165 181 143 183 145 160 167 185 149 149 187 151 153 169 189 155 171 191 173 193 157 183 160 175 175 161 195 141 179 177 197 179 163 165 199 181 167 201 185 149 185 187 169 203 189 191 171 189 173 205 193 207 183 175 209 175 195 177 179 211 197 213 179 199 215 181 201 217 185 185 219 187 189 203 221 191 189 223 205 225 193 199 227 215 207 175 209 209 195 229 179 213 211 231 213 197 201 233 217 185 217 219 203 235 221 223 189 221 205 237 225 227 239 215 241 207 209 243 209 229 211 213 245 247 213 231 233 249 217 217 251 219 235 253 221 223 221 255 225 237 257 247 231 259 227 261 239 243 241 209 243 229 263 213 265 245 233 267 249 217 249 251 235 269 253 255 221 253 237 271 257 273 247 259 261 275 239 277 241 243 279 243 263 245 265 281 267 283 249 249 285 251 269 287 253 255 253 289 257 271 291 281 265 273 273 259 293 261 295 275 297 277 243 279 263 299 267 301 283 249 283 285 269 303 287 289 253 287 271 305 291 307 281 273 309 273 293 295 311 275 313 277 297 315 279 299 301 317 283 283 319 285 303 321 287 289 287 323 291 305 325 327 315 299 307 273 309 309 293 329 331 311 295 313 297 315 301 333 317 283 317 319 303 335 321 323 287 321 305 337 325 339 315 327 341 307 309 343 309 329 345 311 331 347 313 315 333 349 317 319 317 351 335 353 321 321 355 323 325 337 357 347 315 339 359 339 327 341 309 343 343 329 361 363 345 331 333 365 349 317 367 351 335 369 353 321 353 355 357 337 371 373 347 339 375 339 359 377 341 343 361 379 343 381 345 363 365 383 349 351 367 385 369 387 353 353 389 355 357 371 391 393 381 363 373 339 375 375 359 395 377 343 379 397 379 361 365 399 383 367 401 385 369 403 387 353 387 389 391 371 405 407 381 393 409 373 375 411 375 395 413 377 379 397 415 379 383 399 417 401 419 385 403 421 387 387 423 389 425 391 405 427 415 397 429 407 393 409 375 411 411 395 431 413 379 415 399 433 417 401 417 419 435 421 403 387 421 423 425 405 437 427 439 415 441 407 429 443 409 411 445 411 431 447 413 415 417 433 449 417 451 419 453 421 435 421 455 423 457 425 437 447 415 439 459 439 427 461 441 429 443 411 445 445 431 463 433 465 449 417 449 451 467 453 435 421 453 455 457 437 469 471 447 439 459 473 439 475 441 461 477 443 445 479 445 463 465 481 449 449 483 451 485 453 467 455 453 487 489 457 469 479 463 491 473 471 439 493 473 459 475 461 495 477 445 479 465 497 481 449 481 483 499 485 467 487 453 485 489 469 501 503 479 491 505 471 473 493 507 473 509 475 495 511 477 479 497 513 481 481 515 483 517 485 499 487 485 519 521 489 501 511 479 503 503 491 523 525 505 473 527 507 493 509 495 529 497 531 513 481 513 515 533 517 499 519 485 517 521 501 535 537 511 503 539 503 523 541 505 525 527 543 507 545 509 529 531 547 513 513 549 515 551 517 533 519 517 553 555 521 535 545 529 557 537 503 539 539 523 559 561 541 525 563 543 527 531 565 547 513 547 549 551 533 567 553 517 551 569 555 535 571 545 557 537 539 573 575 539 559 577 541 561 543 563 579 565 581 547 547 583 549 585 551 567 553 551 587 589 555 569 563 591 579 571 557 593 539 575 573 575 559 595 597 577 561 565 599 581 547 581 583 585 567 601 587 551 585 603 589 569 579 591 605 607 571 593 573 575 609 595 611 575 597 613 577 599 615 581 581 617 583 619 585 601 587 585 621 623 589 603 625 613 597 591 627 605 607 593 629 575 631 609 595 633 611 599 635 615 581 615 617 619 601 637 621 585 619 639 623 603 625 641 613 605 627 643 607 629 645 631 647 609 633 649 611 635 651 615 653 617 615 655 619 637 621 619 657 659 623 639 633 661 649 625 663 641 627 665 643 645 629 667 631 669 647 635 671 651 651 653 615 655 637 673 657 619 675 677 659 639 649 661 679 663 681 641 643 665 683 645 667 685 669 687 647 689 651 671 691 653 651 693 655 673 695 657 675 677 697 659 669 679 687 661 699 679 663 683 681 665 701 683 667 703 685 689 671 705 707 691 651 693 673 709 711 695 675 713 697 677 715 687 679 717 679 699 683 719 681 701 721 683 685 703 723 725 689 705 727 691 707 729 693 709 731 695 711 713 733 697 703 735 723 715 679 717 717 699 737 683 721 719 739 721 701 741 725 705 727 707 743 729 709 745 747 731 711 749 733 713 723 735 751 753 715 717 755 717 737 721 757 719 739 759 721 761 725 741 763 727 743 729 745 765 767 731 747 749 769 733 771 759 739 735 773 751 753 717 755 755 737 775 721 759 757 777 761 741 763 743 761 765 745 779 781 767 747 749 783 769 771 785 759 751 773 787 789 753 755 791 755 775 759 793 757 795 761 777 761 797 763 765 779 799 767 781 801 783 803 769 759 785 793 805 785 771 773 807 787 789 755 791 791 775 809 811 795 777 761 795 797 779 813 799 801 781 815 783 817 803 785 819 793 805 821 785 787 807 823 825 789 791 827 791 809 811 829 795 795 831 797 799 813 833 801 815 835 817 837 803 827 809 839 785 821 819 841 821 805 807 843 823 825 791 827 811 845 829 795 829 831 813 847 833 835 815 849 817 851 837 853 827 839 819 821 855 841 857 821 843 859 823 861 825 827 845 863 829 829 865 831 833 847 867 835 849 869 851 871 837 861 827 853 853 839 873 821 857 855 875 857 841 843 877 859 845 879 863 829 863 865 847 881 867 869 849 867 851 883 871 885 861 853 887 853 873 855 857 889 875 891 857 877 893 859 879 895 863 863 897 865 867 881 899 869 867 901 883 903 871 877 905 893 885 853 887 887 873 907 857 891 889 909 891 875 879 911 895 863 895 897 881 913 899 901 867 899 883 915 903 905 917 893 919 885 887 921 887 907 889 891 923 925 891 909 911 927 895 895 929 897 913 931 899 901 899 933 903 915 935 925 909 937 905 939 917 921 919 887 921 907 941 891 943 923 911 945 927 895 927 929 913 947 931 933 899 931 915 949 935 951 925 937 939 953 917 955 919 921 957 921 941 923 943 959 945 961 927 927 963 929 947 965 931 933 931 967 935 949 969 959 943 951 951 937 971 939 973 953 975 955 921 977 957 941 945 979 961 927 961 963 947 981 965 967 931 965 949 983 969 985 959 951 987 951 971 973 989 953 991 955 975 993 957 977 979 995 961 961 997 963 981 999 965 967 965 1001 969 983 1003 1005 993 977 985 951 987 987 971 1007 1009 989 973 991 975 993 979 1011 995 961 995 997 981 1013 999 1001 965 999 983 1015 1003 1017 993 1005 1019 985 987 1021 987 1007 1023 989 1009 1025 991 993 1011 1027 995 997 995 1029 1013 1031 999 999 1033 1001 1003 1015 1035 1025 993 1017 1037 1017 1005 1019 987 1021 1021 1007 1039 1041 1023 1009 1011 1043 1027 995 1045 1029 1013 1047 1031 999 1031 1033 1035 1015 1049 1051 1025 1017 1053 1017 1037 1055 1019 1021 1039 1057 1021 1059 1023 1041 1043 1061 1027 1029 1045 1063 1047 1065 1031 1031 1067 1033 1035 1049 1069 1071 1059 1041 1051 1017 1053 1053 1037 1073 1055 1021 1057 1075 1057 1039 1043 1077 1061 1045 1079 1063 1047 1081 1065 1031 1065 1067 1069 1049 1083 1085 1059 1071 1087 1051 1053 1089 1053 1073 1091 1055 1057 1075 1093 1057 1061 1077 1095 1079 1097 1063 1081 1099 1065 1065 1101 1067 1103 1069 1083 1105 1093 1075 1107 1085 1071 1087 1053 1089 1089 1073 1109 1091 1057 1093 1077 1111 1095 1079 1095 1097 1113 1099 1081 1065 1115 1101 1103 1083 1117 1105 1119 1093 1121 1085 1107 1123 1087 1089 1125 1089 1109 1127 1091 1093 1095 1111 1129 1095 1131 1097 1133 1099 1113 1101 1115 1135 1137 1103 1117 1127 1093 1119 1139 1119 1105 1141 1121 1107 1123 1089 1125 1125 1109 1143 1111 1145 1129 1095 1129 1131 1147 1133 1113 1135 1115 1133 1137 1117 1149 1151 1127 1119 1139 1153 1119 1155 1121 1141 1157 1123 1125 1159 1125 1143 1145 1161 1129 1129 1163 1131 1165 1133 1147 1135 1133 1167 1169 1137 1149 1159 1143 1171 1153 1151 1119 1173 1153 1139 1155 1141 1175 1157 1125 1159 1145 1177 1161 1129 1161 1163 1179 1165 1147 1167 1133 1165 1169 1149 1181 1183 1159 1171 1185 1151 1153 1173 1187 1153 1189 1155 1175 1191 1157 1159 1177 1193 1161 1161 1195 1163 1197 1165 1179 1167 1165 1199 1201 1169 1181 1191 1159 1183 1183 1171 1203 1205 1185 1153 1207 1187 1173 1189 1175 1209 1177 1211 1193 1161 1193 1195 1213 1197 1179 1199 1165 1197 1201 1181 1215 1217 1191 1183 1219 1183 1203 1221 1185 1205 1207 1223 1187 1225 1189 1209 1225 1209 1227 1217 1183 1219 1219 1203 1229 1231 1221 1205 1233 1223 1207 1235 1225 1227 1217 1219 1237 1229 1239 1219 1241 1221 1231 1223 1233 1243 1233 1245 1243 1235 1227 1247 1219 1239 1237 1229 1249 1239 1251 1241 1231 1243 1245 1253 1255 1235 1247 1237 1239 1257 1249 1259 1239 1251 1261 1241 1263 1261 1251 1245 1265 1253 1255 1247 1267 1239 1269 1257 1249 1271 1259 1263 1273 1261 1253 1265 1275 1255 1267 1277 1269 1279 1257 1271 1281 1259 1271 1283 1281 1263 1285 1273 1265 1287 1275 1277 1267 1289 1269 1281 1279 1281 1283 1291 1285 1293 1273 1275 1287 1295 1277 1289 1297 1299 1279 1281 1299 1281 1291 1283 1301 1291 1285 1295 1293 1287 1303 1295 1289 1305 1297 1307 1299 1291 1309 1291 1301 1295 1311 1293 1303 1313 1295 1297 1305 1315 1305 1317 1315 1307 1291 1309 1309 1301 1319 1295 1313 1311 1321 1313 1303 1315 1317 1323 1325 1307 1309 1327 1309 1319 1313 1329 1311 1321 1331 1313 1333 1331 1321 1317 1335 1323 1325 1309 1327 1327 1319 1337 1313 1331 1329 1333 1339 1331 1323 1335 1341 1343 1325 1327 1345 1327 1337 1331 1347 1329 1331 1339 1347 1349 1339 1333 1335 1351 1341 1343 1327 1345 1345 1337 1353 1339 1355 1347 1349 1357 1339 1341 1351 1359 1361 1343 1345 1363 1345 1353 1363 1353 1365 1339 1357 1355 1367 1357 1349 1351 1369 1359 1361 1345 1363 1371 1363 1365 1355 1357 1373 1367 1375 1357 1369 1377 1359 1379 1361 1363 1379 1363 1371 1371 1365 1381 1357 1375 1373 1383 1375 1367 1369 1385 1377 1387 1379 1371 1389 1371 1381 1373 1375 1391 1383 1393 1375 1385 1395 1377 1385 1397 1395 1387 1371 1389 1389 1381 1399 1375 1393 1391 1401 1393 1383 1397 1403 1395 1405 1387 1389 1407 1389 1399 1391 1393 1409 1411 1393 1401 1411 1401 1413 1397 1415 1403 1407 1405 1389 1407 1399 1417 1393 1419 1409 1421 1411 1413 1415 1423 1403 1425 1405 1407 1427 1407 1417 1409 1419 1429 1429 1419 1421 1421 1413 1431 1415 1433 1423 1435 1425 1407 1437 1427 1417 1439 1429 1421 1441 1421 1431 1433 1443 1423 1445 1425 1435 1447 1427 1437 1449 1447 1437 1439 1421 1441 1441 1431 1451 1453 1443 1433 1445 1435 1447 1455 1447 1449 1457 1439 1441 1459 1441 1451 1461 1443 1453 1463 1445 1447 1463 1447 1455 1465 1455 1449 1457 1441 1459 1459 1451 1467 1469 1461 1453 1471 1463 1455 1473 1455 1465 1475 1457 1459 1467 1477 1459 1479 1461 1469 1481 1479 1469 1471 1455 1473 1473 1465 1483 1475 1459 1477 1485 1477 1467 1487 1479 1481 1489 1471 1473 1491 1473 1483 1493 1475 1477 1485 1495 1477 1497 1495 1485 1499 1487 1481 1489 1473 1491 1491 1483 1501 1493 1477 1495 1497 1503 1495 1505 1487 1499 1507 1489 1491 1509 1491 1501 1511 1493 1495 1511 1495 1503 1513 1503 1497 1515 1505 1499 1507 1491 1509 1509 1501 1517</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1697\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1702\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1705\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1703\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1704\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1703\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1706\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"30\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1706\">0.6481636166572571 1.373394846916199 -0.0007520765066146851 0.6752741932868958 1.396806240081787 0.002683687955141068 0.6674685478210449 1.397706627845764 0.01294291764497757 0.6674685478210449 1.397706627845764 0.01294291764497757 0.6752741932868958 1.396806240081787 0.002683687955141068 0.6481636166572571 1.373394846916199 -0.0007520765066146851 0.6447465419769287 1.377805113792419 0.01006027683615685 0.6447465419769287 1.377805113792419 0.01006027683615685 0.603096067905426 1.37308406829834 -0.006200850009918213 0.603096067905426 1.37308406829834 -0.006200850009918213</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1704\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1707\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"30\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1707\">-0.2763361914172779 0.8551604172472301 -0.4385646703583597 -0.5409128252787497 0.6957396053703466 -0.4726094761725324 -0.5430237831643805 0.695908146677322 -0.4699329976773058 0.5430237831643805 -0.695908146677322 0.4699329976773058 0.5409128252787497 -0.6957396053703466 0.4726094761725324 0.2763361914172779 -0.8551604172472301 0.4385646703583597 -0.2920676442762112 0.8497403540373408 -0.4389052538845249 0.2920676442762112 -0.8497403540373408 0.4389052538845249 0.03797377695879648 0.9294074683196612 -0.3670963771206708 -0.03797377695879648 -0.9294074683196612 0.3670963771206708</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 8 0 6 7 5 9</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1705\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1708\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1711\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1709\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1710\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1709\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1712\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1712\">0.6704499125480652 1.39844274520874 -0.02658201195299625 0.6457784771919251 1.377284526824951 -0.02970624901354313 0.6441598534584045 1.379136204719544 -0.0151943676173687 0.6441598534584045 1.379136204719544 -0.0151943676173687 0.6457784771919251 1.377284526824951 -0.02970624901354313 0.6704499125480652 1.39844274520874 -0.02658201195299625</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1710\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1713\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1713\">0.6295715759548037 -0.7587738394453171 0.1670385923168571 0.6295715759548037 -0.7587738394453171 0.1670385923168571 0.6295715759548037 -0.7587738394453171 0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1711\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1714\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1717\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1715\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1716\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1715\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1719\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4554\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1719\">0.5764011144638062 1.390616059303284 -0.139177218079567 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5764011144638062 1.390616059303284 -0.139177218079567 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.572441041469574 1.388842225074768 -0.1325118541717529 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5873357057571411 1.382593750953674 -0.1353528052568436 0.5873357057571411 1.382593750953674 -0.1353528052568436 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5646573305130005 1.41193699836731 -0.152768149971962 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557196855545044 1.412441611289978 -0.1504120379686356 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5659894943237305 1.386791586875916 -0.1443661153316498 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5659894943237305 1.386791586875916 -0.1443661153316498 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5794986486434937 1.376735687255859 -0.1402455270290375 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5794986486434937 1.376735687255859 -0.1402455270290375 0.5733222365379334 1.421713590621948 -0.1470988094806671 0.5733222365379334 1.421713590621948 -0.1470988094806671 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5967265367507935 1.369694590568543 -0.1356068253517151 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967265367507935 1.369694590568543 -0.1356068253517151 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.6013235449790955 1.376871228218079 -0.1310993880033493 0.6013235449790955 1.376871228218079 -0.1310993880033493 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5583849549293518 1.39915668964386 -0.147756814956665 0.557205080986023 1.412230134010315 -0.1413010209798813 0.557205080986023 1.412230134010315 -0.1413010209798813 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.6162846684455872 1.366446971893311 -0.1306639760732651 0.6162846684455872 1.366446971893311 -0.1306639760732651 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.557205080986023 1.412230134010315 -0.1413010209798813 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557205080986023 1.412230134010315 -0.1413010209798813 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5820477604866028 1.430738091468811 -0.1485836952924728 0.5820477604866028 1.430738091468811 -0.1485836952924728 0.578619122505188 1.433083534240723 -0.1561392545700073 0.578619122505188 1.433083534240723 -0.1561392545700073 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6171872019767761 1.374258875846863 -0.1265972405672073 0.6171872019767761 1.374258875846863 -0.1265972405672073 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.573066771030426 1.436009049415588 -0.1444292664527893 0.573066771030426 1.436009049415588 -0.1444292664527893 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.578619122505188 1.433083534240723 -0.1561392545700073 0.578619122505188 1.433083534240723 -0.1561392545700073 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6362500786781311 1.367325901985169 -0.1256429404020309 0.6362500786781311 1.367325901985169 -0.1256429404020309 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.573066771030426 1.436009049415588 -0.1444292664527893 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.573066771030426 1.436009049415588 -0.1444292664527893 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6168361306190491 1.371485948562622 -0.133814811706543 0.594593346118927 1.437490224838257 -0.1496256589889526 0.594593346118927 1.437490224838257 -0.1496256589889526 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6333761215209961 1.374970674514771 -0.1220347285270691 0.6333761215209961 1.374970674514771 -0.1220347285270691 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.6483002901077271 1.378945589065552 -0.1176018267869949 0.6483002901077271 1.378945589065552 -0.1176018267869949 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6546680331230164 1.372084975242615 -0.1207398623228073 0.6546680331230164 1.372084975242615 -0.1207398623228073 0.654680073261261 1.371889233589172 -0.1116740703582764 0.654680073261261 1.371889233589172 -0.1116740703582764 0.650735080242157 1.376069068908691 -0.1101703196763992 0.650735080242157 1.376069068908691 -0.1101703196763992 0.6097114086151123 1.441336512565613 -0.1503738611936569 0.6097114086151123 1.441336512565613 -0.1503738611936569 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6072173118591309 1.449327707290649 -0.1545247584581375 0.6072173118591309 1.449327707290649 -0.1545247584581375 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.654680073261261 1.371889233589172 -0.1116740703582764 0.654680073261261 1.371889233589172 -0.1116740703582764 0.650735080242157 1.376069068908691 -0.1101703196763992 0.650735080242157 1.376069068908691 -0.1101703196763992 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.660498857498169 1.385782361030579 -0.1134771406650543 0.660498857498169 1.385782361030579 -0.1134771406650543 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6697470545768738 1.380654454231262 -0.1162995100021362 0.6697470545768738 1.380654454231262 -0.1162995100021362 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6259343028068543 1.441896080970764 -0.1510118097066879 0.6259343028068543 1.441896080970764 -0.1510118097066879 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6272223591804504 1.449964761734009 -0.1547037810087204 0.6272223591804504 1.449964761734009 -0.1547037810087204 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6272338032722473 1.449633955955505 -0.14559705555439 0.626435399055481 1.444658279418945 -0.1437764018774033 0.626435399055481 1.444658279418945 -0.1437764018774033 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.626435399055481 1.444658279418945 -0.1437764018774033 0.626435399055481 1.444658279418945 -0.1437764018774033 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6687827706336975 1.394805312156677 -0.1098122596740723 0.6687827706336975 1.394805312156677 -0.1098122596740723 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6416727304458618 1.439122557640076 -0.151732012629509 0.6416727304458618 1.439122557640076 -0.151732012629509 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6466220617294312 1.446502447128296 -0.1549863368272781 0.6466220617294312 1.446502447128296 -0.1549863368272781 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6844237446784973 1.404522180557251 -0.1091566681861877 0.6844237446784973 1.404522180557251 -0.1091566681861877 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6553794741630554 1.433307886123657 -0.1527181565761566 0.6553794741630554 1.433307886123657 -0.1527181565761566 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6635121703147888 1.439278960227966 -0.1555992513895035 0.6635121703147888 1.439278960227966 -0.1555992513895035 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.675299882888794 1.416630387306213 -0.1108274012804031 0.675299882888794 1.416630387306213 -0.1108274012804031 0.6825904846191406 1.417605042457581 -0.1066848784685135 0.6825904846191406 1.417605042457581 -0.1066848784685135 0.682598352432251 1.417258620262146 -0.09757854789495468 0.682598352432251 1.417258620262146 -0.09757854789495468 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6708204746246338 1.415700078010559 -0.1042181849479675 0.6708204746246338 1.415700078010559 -0.1042181849479675 0.6657178997993469 1.425013899803162 -0.1541275084018707 0.6657178997993469 1.425013899803162 -0.1541275084018707 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6762241125106812 1.42901611328125 -0.1567336469888687 0.6762241125106812 1.42901611328125 -0.1567336469888687 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.675299882888794 1.416630387306213 -0.1108274012804031 0.675299882888794 1.416630387306213 -0.1108274012804031 0.682598352432251 1.417258620262146 -0.09757854789495468 0.682598352432251 1.417258620262146 -0.09757854789495468 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.664371132850647 1.425509691238403 -0.1023261845111847 0.664371132850647 1.425509691238403 -0.1023261845111847 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6746793389320374 1.429725646972656 -0.104955717921257 0.6746793389320374 1.429725646972656 -0.104955717921257 0.674686074256897 1.429399251937866 -0.09584938734769821 0.674686074256897 1.429399251937866 -0.09584938734769821 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.683535635471344 1.416723370552063 -0.1585377752780914 0.683535635471344 1.416723370552063 -0.1585377752780914 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.674686074256897 1.429399251937866 -0.09584938734769821 0.674686074256897 1.429399251937866 -0.09584938734769821 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.653633177280426 1.433576941490173 -0.1009682565927506 0.653633177280426 1.433576941490173 -0.1009682565927506 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6612877249717712 1.439727663993835 -0.1038927957415581 0.6612877249717712 1.439727663993835 -0.1038927957415581 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6847144961357117 1.403622508049011 -0.1610865443944931 0.6847144961357117 1.403622508049011 -0.1610865443944931 0.684719443321228 1.403284192085266 -0.1519800424575806 0.684719443321228 1.403284192085266 -0.1519800424575806 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.684719443321228 1.403284192085266 -0.1519800424575806 0.684719443321228 1.403284192085266 -0.1519800424575806 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6396493911743164 1.439105153083801 -0.1000177264213562 0.6396493911743164 1.439105153083801 -0.1000177264213562 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6441908478736877 1.44657564163208 -0.1033200994133949 0.6441908478736877 1.44657564163208 -0.1033200994133949 0.6685919761657715 1.39425265789032 -0.1617981195449829 0.6685919761657715 1.39425265789032 -0.1617981195449829 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6795402765274048 1.391004085540772 -0.1643800884485245 0.6795402765274048 1.391004085540772 -0.1643800884485245 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6246870160102844 1.449633955955505 -0.1030546501278877 0.6246870160102844 1.449633955955505 -0.1030546501278877 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6237871050834656 1.441540479660034 -0.09931465238332748 0.6237871050834656 1.441540479660034 -0.09931465238332748 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6600530743598938 1.385418653488159 -0.1655101180076599 0.6600530743598938 1.385418653488159 -0.1655101180076599 0.663275957107544 1.383595705032349 -0.1722719520330429 0.663275957107544 1.383595705032349 -0.1722719520330429 0.6688450574874878 1.38010573387146 -0.1683710515499115 0.6688450574874878 1.38010573387146 -0.1683710515499115 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6632908582687378 1.383078336715698 -0.157962441444397 0.663275957107544 1.383595705032349 -0.1722719520330429 0.663275957107544 1.383595705032349 -0.1722719520330429 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6047239303588867 1.448564052581787 -0.1028712913393974 0.6047239303588867 1.448564052581787 -0.1028712913393974 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6076093316078186 1.440625190734863 -0.09867467731237412 0.6076093316078186 1.440625190734863 -0.09867467731237412 0.6473151445388794 1.37885594367981 -0.1696802973747253 0.6473151445388794 1.37885594367981 -0.1696802973747253 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6533486247062683 1.371997594833374 -0.1729011684656143 0.6533486247062683 1.371997594833374 -0.1729011684656143 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.5926844477653503 1.436460614204407 -0.09790220111608505 0.5926844477653503 1.436460614204407 -0.09790220111608505 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.6321871280670166 1.375200867652893 -0.1741351038217545 0.6321871280670166 1.375200867652893 -0.1741351038217545 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6346774697303772 1.367498278617859 -0.1777908951044083 0.6346774697303772 1.367498278617859 -0.1777908951044083 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5804890394210815 1.429435133934021 -0.09682229161262512 0.5804890394210815 1.429435133934021 -0.09682229161262512 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.6159605383872986 1.374831795692444 -0.1787005662918091 0.6159605383872986 1.374831795692444 -0.1787005662918091 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6146628856658936 1.367056727409363 -0.1828146427869797 0.6146628856658936 1.367056727409363 -0.1828146427869797 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6146710515022278 1.366716861724854 -0.1737080514431 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5722107291221619 1.420226573944092 -0.09528376907110214 0.5722107291221619 1.420226573944092 -0.09528376907110214 0.567931592464447 1.421685934066773 -0.1029479652643204 0.567931592464447 1.421685934066773 -0.1029479652643204 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5997619032859802 1.37767767906189 -0.1832408457994461 0.5997619032859802 1.37767767906189 -0.1832408457994461 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5947365760803223 1.37060809135437 -0.1878018081188202 0.5947365760803223 1.37060809135437 -0.1878018081188202 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.567931592464447 1.421685934066773 -0.1029479652643204 0.567931592464447 1.421685934066773 -0.1029479652643204 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5857048630714417 1.383684992790222 -0.1875032186508179 0.5857048630714417 1.383684992790222 -0.1875032186508179 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5774619579315186 1.378065705299377 -0.1924419403076172 0.5774619579315186 1.378065705299377 -0.1924419403076172 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.559303879737854 1.396423816680908 -0.08659722656011581 0.559303879737854 1.396423816680908 -0.08659722656011581 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5755146741867065 1.392250299453735 -0.1912776529788971 0.5755146741867065 1.392250299453735 -0.1912776529788971 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.559303879737854 1.396423816680908 -0.08659722656011581 0.559303879737854 1.396423816680908 -0.08659722656011581 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5776671171188355 1.388520479202271 -0.08703336119651794 0.5776671171188355 1.388520479202271 -0.08703336119651794 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5674387216567993 1.384496212005615 -0.09220243245363236 0.5674387216567993 1.384496212005615 -0.09220243245363236 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5885612964630127 1.380340695381165 -0.08317101746797562 0.5885612964630127 1.380340695381165 -0.08317101746797562 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5808379054069519 1.374427676200867 -0.08804868161678314 0.5808379054069519 1.374427676200867 -0.08804868161678314 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6026553511619568 1.374741792678833 -0.07890588045120239 0.6026553511619568 1.374741792678833 -0.07890588045120239 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.5981957316398621 1.367648720741272 -0.08346498012542725 0.5981957316398621 1.367648720741272 -0.08346498012542725 0.5731960535049439 1.423600435256958 -0.1991498172283173 0.5731960535049439 1.423600435256958 -0.1991498172283173 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.6178026795387268 1.364426612854004 -0.07844620943069458 0.6178026795387268 1.364426612854004 -0.07844620943069458 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.618276834487915 1.368943214416504 -0.06729701906442642 0.618276834487915 1.368943214416504 -0.06729701906442642 0.6185595989227295 1.372249364852905 -0.07439717650413513 0.6185595989227295 1.372249364852905 -0.07439717650413513 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.5820948481559753 1.432539939880371 -0.2006160467863083 0.5820948481559753 1.432539939880371 -0.2006160467863083 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.618276834487915 1.368943214416504 -0.06729701906442642 0.618276834487915 1.368943214416504 -0.06729701906442642 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6377438306808472 1.36546528339386 -0.07342720776796341 0.6377438306808472 1.36546528339386 -0.07342720776796341 0.637752890586853 1.365134596824646 -0.06432016938924789 0.637752890586853 1.365134596824646 -0.06432016938924789 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6347270011901856 1.373091697692871 -0.06983600556850433 0.6347270011901856 1.373091697692871 -0.06983600556850433 0.5947583317756653 1.439199566841126 -0.2016407698392868 0.5947583317756653 1.439199566841126 -0.2016407698392868 0.592503547668457 1.44215738773346 -0.2090510278940201 0.592503547668457 1.44215738773346 -0.2090510278940201 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.637752890586853 1.365134596824646 -0.06432016938924789 0.637752890586853 1.365134596824646 -0.06432016938924789 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.592503547668457 1.44215738773346 -0.2090510278940201 0.592503547668457 1.44215738773346 -0.2090510278940201 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.6495687365531921 1.377189040184021 -0.06541077047586441 0.6495687365531921 1.377189040184021 -0.06541077047586441 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6560683846473694 1.370518207550049 -0.06857547909021378 0.6560683846473694 1.370518207550049 -0.06857547909021378 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.652233898639679 1.374327898025513 -0.05795620754361153 0.652233898639679 1.374327898025513 -0.05795620754361153 0.6099497675895691 1.442925214767456 -0.2023820877075195 0.6099497675895691 1.442925214767456 -0.2023820877075195 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6075994372367859 1.450924038887024 -0.2065163999795914 0.6075994372367859 1.450924038887024 -0.2065163999795914 0.60760897397995 1.450597167015076 -0.1974090039730072 0.60760897397995 1.450597167015076 -0.1974090039730072 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.652233898639679 1.374327898025513 -0.05795620754361153 0.652233898639679 1.374327898025513 -0.05795620754361153 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.60760897397995 1.450597167015076 -0.1974090039730072 0.60760897397995 1.450597167015076 -0.1974090039730072 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6616408824920654 1.384117484092712 -0.06130355969071388 0.6616408824920654 1.384117484092712 -0.06130355969071388 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6709807515144348 1.379074215888977 -0.06411219388246536 0.6709807515144348 1.379074215888977 -0.06411219388246536 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6261875033378601 1.44335949420929 -0.2030204385519028 0.6261875033378601 1.44335949420929 -0.2030204385519028 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6276242136955261 1.451410889625549 -0.2066955715417862 0.6276242136955261 1.451410889625549 -0.2066955715417862 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.674055278301239 1.391781568527222 -0.04999235644936562 0.674055278301239 1.391781568527222 -0.04999235644936562 0.6697533130645752 1.393221259117127 -0.05765779316425324 0.6697533130645752 1.393221259117127 -0.05765779316425324 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6418677568435669 1.440455317497253 -0.2037471383810043 0.6418677568435669 1.440455317497253 -0.2037471383810043 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6469581127166748 1.447785615921021 -0.2069866359233856 0.6469581127166748 1.447785615921021 -0.2069866359233856 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.674055278301239 1.391781568527222 -0.04999235644936562 0.674055278301239 1.391781568527222 -0.04999235644936562 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6852126121520996 1.403058409690857 -0.05702411383390427 0.6852126121520996 1.403058409690857 -0.05702411383390427 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6554705500602722 1.434533596038818 -0.2047469019889832 0.6554705500602722 1.434533596038818 -0.2047469019889832 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6637067198753357 1.440432906150818 -0.2076139599084854 0.6637067198753357 1.440432906150818 -0.2076139599084854 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.675865113735199 1.415092825889587 -0.05872093886137009 0.675865113735199 1.415092825889587 -0.05872093886137009 0.683136522769928 1.416121363639832 -0.05458316951990128 0.683136522769928 1.416121363639832 -0.05458316951990128 0.68314129114151 1.415789604187012 -0.04547535255551338 0.68314129114151 1.415789604187012 -0.04547535255551338 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6713975071907044 1.414113759994507 -0.05211071670055389 0.6713975071907044 1.414113759994507 -0.05211071670055389 0.6655508279800415 1.426157832145691 -0.2061705887317658 0.6655508279800415 1.426157832145691 -0.2061705887317658 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6762374043464661 1.430071353912354 -0.2087742984294891 0.6762374043464661 1.430071353912354 -0.2087742984294891 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.669693648815155 1.427335619926453 -0.1985236257314682 0.669693648815155 1.427335619926453 -0.1985236257314682 0.675865113735199 1.415092825889587 -0.05872093886137009 0.675865113735199 1.415092825889587 -0.05872093886137009 0.68314129114151 1.415789604187012 -0.04547535255551338 0.68314129114151 1.415789604187012 -0.04547535255551338 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.669693648815155 1.427335619926453 -0.1985236257314682 0.669693648815155 1.427335619926453 -0.1985236257314682 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6647707223892212 1.423890590667725 -0.05024185031652451 0.6647707223892212 1.423890590667725 -0.05024185031652451 0.668663501739502 1.425727844238281 -0.05691695213317871 0.668663501739502 1.425727844238281 -0.05691695213317871 0.6749993562698364 1.428184986114502 -0.05288051813840866 0.6749993562698364 1.428184986114502 -0.05288051813840866 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.675951361656189 1.416974186897278 -0.2147535979747772 0.675951361656189 1.416974186897278 -0.2147535979747772 0.6833136677742004 1.417727947235107 -0.2106049805879593 0.6833136677742004 1.417727947235107 -0.2106049805879593 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.668663501739502 1.425727844238281 -0.05691695213317871 0.668663501739502 1.425727844238281 -0.05691695213317871 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.675951361656189 1.416974186897278 -0.2147535979747772 0.675951361656189 1.416974186897278 -0.2147535979747772 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6538820266723633 1.431869506835938 -0.04890138283371925 0.6538820266723633 1.431869506835938 -0.04890138283371925 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6616003513336182 1.438071250915527 -0.05182943865656853 0.6616003513336182 1.438071250915527 -0.05182943865656853 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6842526197433472 1.404616117477417 -0.2131838649511337 0.6842526197433472 1.404616117477417 -0.2131838649511337 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.639799177646637 1.437276721000671 -0.04796412959694862 0.639799177646637 1.437276721000671 -0.04796412959694862 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6442509293556213 1.444796919822693 -0.05127810314297676 0.6442509293556213 1.444796919822693 -0.05127810314297676 0.6679614782333374 1.395384907722473 -0.2139163911342621 0.6679614782333374 1.395384907722473 -0.2139163911342621 0.672139048576355 1.39431893825531 -0.2205718755722046 0.672139048576355 1.39431893825531 -0.2205718755722046 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.678961455821991 1.391703963279724 -0.2074052393436432 0.678961455821991 1.391703963279724 -0.2074052393436432 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.672139048576355 1.39431893825531 -0.2205718755722046 0.672139048576355 1.39431893825531 -0.2205718755722046 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.678961455821991 1.391703963279724 -0.2074052393436432 0.678961455821991 1.391703963279724 -0.2074052393436432 0.6246472597122192 1.447684526443481 -0.05102457106113434 0.6246472597122192 1.447684526443481 -0.05102457106113434 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6238974332809448 1.43958580493927 -0.04726743698120117 0.6238974332809448 1.43958580493927 -0.04726743698120117 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6590602397918701 1.386616110801697 -0.2176548689603806 0.6590602397918701 1.386616110801697 -0.2176548689603806 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6679444909095764 1.381230473518372 -0.2205207496881485 0.6679444909095764 1.381230473518372 -0.2205207496881485 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6047060489654541 1.446462512016296 -0.05083831399679184 0.6047060489654541 1.446462512016296 -0.05083831399679184 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6077330112457275 1.438551783561707 -0.04662448167800903 0.6077330112457275 1.438551783561707 -0.04662448167800903 0.6463867425918579 1.380146741867065 -0.2218325585126877 0.6463867425918579 1.380146741867065 -0.2218325585126877 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6524507403373718 1.373252987861633 -0.2250670045614243 0.6524507403373718 1.373252987861633 -0.2250670045614243 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.5928953289985657 1.434271335601807 -0.04584556818008423 0.5928953289985657 1.434271335601807 -0.04584556818008423 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.586394190788269 1.440893888473511 -0.0413796678185463 0.586394190788269 1.440893888473511 -0.0413796678185463 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.6311914920806885 1.376619338989258 -0.2262957394123077 0.6311914920806885 1.376619338989258 -0.2262957394123077 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6335372924804688 1.368906021118164 -0.2299681603908539 0.6335372924804688 1.368906021118164 -0.2299681603908539 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.632088840007782 1.37337338924408 -0.2190500944852829 0.632088840007782 1.37337338924408 -0.2190500944852829 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.586394190788269 1.440893888473511 -0.0413796678185463 0.586394190788269 1.440893888473511 -0.0413796678185463 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.632088840007782 1.37337338924408 -0.2190500944852829 0.632088840007782 1.37337338924408 -0.2190500944852829 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5810641050338745 1.426966309547424 -0.04468091204762459 0.5810641050338745 1.426966309547424 -0.04468091204762459 0.577437698841095 1.429154992103577 -0.05226095765829086 0.577437698841095 1.429154992103577 -0.05226095765829086 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.577437698841095 1.429154992103577 -0.05226095765829086 0.577437698841095 1.429154992103577 -0.05226095765829086 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5738012790679932 1.417280197143555 -0.04298178479075432 0.5738012790679932 1.417280197143555 -0.04298178479075432 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5735331177711487 1.395941138267517 -0.03795602545142174 0.5735331177711487 1.395941138267517 -0.03795602545142174 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5807925462722778 1.386182546615601 -0.03454335033893585 0.5807925462722778 1.386182546615601 -0.03454335033893585 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5708434581756592 1.381881356239319 -0.03967851027846336 0.5708434581756592 1.381881356239319 -0.03967851027846336 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5921866893768311 1.378312945365906 -0.0306165087968111 0.5921866893768311 1.378312945365906 -0.0306165087968111 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.584869921207428 1.372178196907044 -0.03544721379876137 0.584869921207428 1.372178196907044 -0.03544721379876137 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6066128611564636 1.373105645179749 -0.02630784548819065 0.6066128611564636 1.373105645179749 -0.02630784548819065 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6026409864425659 1.365755438804627 -0.03074319288134575 0.6026409864425659 1.365755438804627 -0.03074319288134575 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6224052906036377 1.36322546005249 -0.02576779760420322 0.6224052906036377 1.36322546005249 -0.02576779760420322 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6226503849029541 1.371061563491821 -0.02178248576819897 0.6226503849029541 1.371061563491821 -0.02178248576819897 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6421971321105957 1.364853024482727 -0.02080797962844372 0.6421971321105957 1.364853024482727 -0.02080797962844372 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6387244462966919 1.372359037399292 -0.01722737587988377 0.6387244462966919 1.372359037399292 -0.01722737587988377 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6532744765281677 1.376864433288574 -0.01283644884824753 0.6532744765281677 1.376864433288574 -0.01283644884824753 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6602018475532532 1.370380640029907 -0.01594656147062779 0.6602018475532532 1.370380640029907 -0.01594656147062779 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6648701429367065 1.384141802787781 -0.008783668279647827 0.6648701429367065 1.384141802787781 -0.008783668279647827 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6745318174362183 1.379353284835815 -0.0115525983273983 0.6745318174362183 1.379353284835815 -0.0115525983273983 0.674536406993866 1.379023313522339 -0.002444729208946228 0.674536406993866 1.379023313522339 -0.002444729208946228 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.674536406993866 1.379023313522339 -0.002444729208946228 0.674536406993866 1.379023313522339 -0.002444729208946228 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6723722815513611 1.393458366394043 -0.005210716277360916 0.6723722815513611 1.393458366394043 -0.005210716277360916 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6871697902679443 1.403846859931946 -0.004648752510547638 0.6871697902679443 1.403846859931946 -0.004648752510547638 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6842474937438965 1.416748404502869 -0.002315051853656769 0.6842474937438965 1.416748404502869 -0.002315051853656769 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6724337339401245 1.414421319961548 0.0001581460237503052 0.6724337339401245 1.414421319961548 0.0001581460237503052 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6653975248336792 1.423992514610291 0.001962412148714066 0.6653975248336792 1.423992514610291 0.001962412148714066 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6753374934196472 1.428580522537231 -0.0007079318165779114 0.6753374934196472 1.428580522537231 -0.0007079318165779114 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6539998650550842 1.431669116020203 0.003241512924432755 0.6539998650550842 1.431669116020203 0.003241512924432755 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6613119840621948 1.438085556030273 0.0002653300762176514 0.6613119840621948 1.438085556030273 0.0002653300762176514 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6395849585533142 1.4366854429245 0.004135128110647202 0.6395849585533142 1.4366854429245 0.004135128110647202 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6435492634773254 1.444317102432251 0.000764600932598114 0.6435492634773254 1.444317102432251 0.000764600932598114 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6237851977348328 1.446662187576294 0.0009942986071109772 0.6237851977348328 1.446662187576294 0.0009942986071109772 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6235514283180237 1.438539981842041 0.004813771694898605 0.6235514283180237 1.438539981842041 0.004813771694898605 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6236364245414734 1.441838026046753 -0.002309773117303848</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1716\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1720\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4554\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1720\">0.7116505720515308 0.7019729757605577 0.02806073057845515 0.5352317954222186 0.6829027544207439 0.4971627029189433 0.7372453629465509 0.3797436521099645 0.5588058996610492 -0.7372453629465509 -0.3797436521099645 -0.5588058996610492 -0.5352317954222186 -0.6829027544207439 -0.4971627029189433 -0.7116505720515308 -0.7019729757605577 -0.02806073057845515 0.729415059257715 0.4062382325778888 0.5503854737545836 -0.729415059257715 -0.4062382325778888 -0.5503854737545836 0.321802298597238 0.8322073122563755 0.4515243847729088 -0.321802298597238 -0.8322073122563755 -0.4515243847729088 0.855124220806447 0.1136881400387027 -0.505803888680887 0.8413370770380463 0.1893915278736966 -0.506243787093475 -0.8413370770380463 -0.1893915278736966 0.506243787093475 -0.855124220806447 -0.1136881400387027 0.505803888680887 -0.3799838754524652 -0.01450618074628774 0.924879357060304 -0.3750053434817528 0.09080767763385791 0.9225643381590672 -0.3792262621876895 -0.05514944765367602 0.9236590174358977 0.3792262621876895 0.05514944765367602 -0.9236590174358977 0.3750053434817528 -0.09080767763385791 -0.9225643381590672 0.3799838754524652 0.01450618074628774 -0.924879357060304 0.8189219909649463 -0.02915452216736438 0.5731638391866684 -0.8189219909649463 0.02915452216736438 -0.5731638391866684 -0.3666375048501143 -0.1470177247358506 0.9186744410566651 -0.3567132285873039 -0.1796770420002411 0.9167725089294866 0.3567132285873039 0.1796770420002411 -0.9167725089294866 0.3666375048501143 0.1470177247358506 -0.9186744410566651 0.4686564846496857 0.8829194322990098 0.02853726449037389 -0.4686564846496857 -0.8829194322990098 -0.02853726449037389 0.7523942369743223 0.4659132093646853 -0.4656477139504997 -0.7523942369743223 -0.4659132093646853 0.4656477139504997 0.8259663651628073 -0.2402977284833706 -0.5099378053306815 -0.8259663651628073 0.2402977284833706 0.5099378053306815 -0.3628069145608261 0.1115693870564698 0.925161291137225 0.3628069145608261 -0.1115693870564698 -0.925161291137225 0.8229528688625568 0.02578184751549621 0.5675243360152719 -0.8229528688625568 -0.02578184751549621 -0.5675243360152719 0.8318723466231729 -0.2056358004014074 -0.5154632057838153 -0.8318723466231729 0.2056358004014074 0.5154632057838153 -0.328304684287926 -0.2624760880002339 0.9073711134385416 0.328304684287926 0.2624760880002339 -0.9073711134385416 0.1228724497272809 0.8950183205142063 0.4287709960362834 -0.1228724497272809 -0.8950183205142063 -0.4287709960362834 -0.2545492831649428 -0.3210323987497553 -0.912218647799524 -0.247187829008473 -0.2985438407088852 -0.9218295679597535 -0.1524397997750927 -0.466420870746587 -0.8713286858450864 0.1524397997750927 0.466420870746587 0.8713286858450864 0.247187829008473 0.2985438407088852 0.9218295679597535 0.2545492831649428 0.3210323987497553 0.912218647799524 -0.3131323569893013 -0.1234289045201013 -0.9416546248679992 -0.2995191208205662 -0.1347819126211434 -0.944522171414235 0.2995191208205662 0.1347819126211434 0.944522171414235 0.3131323569893013 0.1234289045201013 0.9416546248679992 -0.7112085439326217 -0.7025344977933938 -0.02505367133623061 -0.5589780317367358 -0.6499018215929607 -0.5149477471801155 -0.9359937184041439 -0.3517886004573934 -0.01267042604699992 0.9359937184041439 0.3517886004573934 0.01267042604699992 0.5589780317367358 0.6499018215929607 0.5149477471801155 0.7112085439326217 0.7025344977933938 0.02505367133623061 -0.3329794829029215 0.2202503635923341 0.9168502829269061 0.3329794829029215 -0.2202503635923341 -0.9168502829269061 -0.328986642245139 -0.8033618035689207 -0.4963643840876978 -0.4661179128147164 -0.8841410633583626 -0.03207290814372939 0.4661179128147164 0.8841410633583626 0.03207290814372939 0.328986642245139 0.8033618035689207 0.4963643840876978 0.8306502802298186 -0.5566063174715573 0.01447478168665118 -0.8306502802298186 0.5566063174715573 -0.01447478168665118 0.694557029986885 -0.529069519817447 -0.4875202306529788 -0.694557029986885 0.529069519817447 0.4875202306529788 -0.1306463611173388 -0.8662097764505499 -0.4822988197251642 -0.2464249161348628 -0.9684800694603204 -0.03634715623069741 0.2464249161348628 0.9684800694603204 0.03634715623069741 0.1306463611173388 0.8662097764505499 0.4822988197251642 -0.3138758323648135 -0.2842246126968075 0.9059240207625833 0.3138758323648135 0.2842246126968075 -0.9059240207625833 0.2541085597975535 0.9666060045039202 0.03319144309277439 -0.2541085597975535 -0.9666060045039202 -0.03319144309277439 0.5643084556059977 0.713996570925768 -0.4144452480579535 -0.5643084556059977 -0.713996570925768 0.4144452480579535 -0.3139147437445971 0.05130004323244548 -0.9480642590162933 0.3139147437445971 -0.05130004323244548 0.9480642590162933 -0.9597626381272596 -0.2806419182355923 -0.009787348162296133 0.9597626381272596 0.2806419182355923 0.009787348162296133 -0.3220200489155827 0.2145009277290257 0.9221130300021755 0.3220200489155827 -0.2145009277290257 -0.9221130300021755 0.7616505158844272 -0.3651635953362657 0.5352980854571381 -0.7616505158844272 0.3651635953362657 -0.5352980854571381 -0.31676822712825 0.0926484873080989 -0.9439672388814911 0.31676822712825 -0.0926484873080989 0.9439672388814911 0.06286198971483102 -0.8760278648219967 -0.4781459508398103 -0.06286198971483102 0.8760278648219967 0.4781459508398103 -0.25708857985887 -0.3475523037338947 0.9017277073903252 0.25708857985887 0.3475523037338947 -0.9017277073903252 -0.07305742842861696 0.9059545913829299 0.4170238488427085 0.07305742842861696 -0.9059545913829299 -0.4170238488427085 -0.03945429889179408 -0.5382346721190098 -0.8418710091385134 0.03945429889179408 0.5382346721190098 0.8418710091385134 -0.9931124712854924 0.1171189204173347 0.003282964742422807 -0.9848237659908908 0.1734584932748857 0.00585670985499521 0.9848237659908908 -0.1734584932748857 -0.00585670985499521 0.9931124712854924 -0.1171189204173347 -0.003282964742422807 -0.8474458355869826 0.5305447005891429 0.01891762202437913 -0.8283359302926573 0.5598431464464617 0.0208623575638909 0.8283359302926573 -0.5598431464464617 -0.0208623575638909 0.8474458355869826 -0.5305447005891429 -0.01891762202437913 -0.2699934504075681 0.3208622462244649 0.9078276024030152 0.2699934504075681 -0.3208622462244649 -0.9078276024030152 0.07033313167956884 -0.559557338004145 -0.8258019351356954 -0.07033313167956884 0.559557338004145 0.8258019351356954 0.5872910630796832 -0.8093742823861758 -0.001574242229880643 -0.5872910630796832 0.8093742823861758 0.001574242229880643 0.5099087873610187 -0.729679154476476 -0.4555890254324727 -0.5099087873610187 0.729679154476476 0.4555890254324727 -0.2828697093225621 0.2426624781101927 -0.9279545512928904 0.2828697093225621 -0.2426624781101927 0.9279545512928904 0.1787386710512955 -0.5393006872107224 -0.8229260332769035 -0.1787386710512955 0.5393006872107224 0.8229260332769035 -0.03438297213929174 -0.9987484597462316 -0.03632251892970664 0.03438297213929174 0.9987484597462316 0.03632251892970664 -0.251236181078625 -0.3570388125521918 0.8996686432505855 0.251236181078625 0.3570388125521918 -0.8996686432505855 0.04874403586048696 0.9982741021679448 0.03275417391440571 -0.04874403586048696 -0.9982741021679448 -0.03275417391440571 0.3711175758422611 0.8484642387304381 -0.3773329835788833 -0.3711175758422611 -0.8484642387304381 0.3773329835788833 -0.6057070026736339 0.7951511560146045 0.02921756322420963 0.6057070026736339 -0.7951511560146045 -0.02921756322420963 -0.2698502094419589 0.2961333551369372 0.9162346317616856 0.2698502094419589 -0.2961333551369372 -0.9162346317616856 0.581626210109002 -0.6635696771839857 0.4705169871919397 -0.581626210109002 0.6635696771839857 -0.4705169871919397 -0.2686449183098566 0.2880745197099597 -0.9191534033882303 0.2686449183098566 -0.2880745197099597 0.9191534033882303 -0.5932471661465507 0.8044804555539565 0.02947874642493615 0.5932471661465507 -0.8044804555539565 -0.02947874642493615 0.2823761928648434 -0.4807485748464899 -0.8301472721669484 -0.2823761928648434 0.4807485748464899 0.8301472721669484 0.2505434470073428 -0.8378378761168972 -0.4850316221707672 -0.2505434470073428 0.8378378761168972 0.4850316221707672 -0.1747244569420722 -0.3952885920585754 0.9017861681876959 0.1747244569420722 0.3952885920585754 -0.9017861681876959 -0.2697877181305762 0.8647799818370642 0.4235211566849804 0.2697877181305762 -0.8647799818370642 -0.4235211566849804 -0.2021560468597133 0.3530340854778994 0.9135096426468835 -0.1918736220987687 0.3816584571203039 0.9041688643451774 0.1918736220987687 -0.3816584571203039 -0.9041688643451774 0.2021560468597133 -0.3530340854778994 -0.9135096426468835 0.169306486038657 0.9176716277233639 -0.359463624664296 -0.169306486038657 -0.9176716277233639 0.359463624664296 0.3502002158373024 -0.9365409557929096 -0.01583814856635804 -0.3502002158373024 0.9365409557929096 0.01583814856635804 0.311547543346312 -0.847393191175511 -0.4299568673532981 -0.311547543346312 0.847393191175511 0.4299568673532981 -0.2053896947839419 0.4066607887801326 -0.8901921568657408 0.2053896947839419 -0.4066607887801326 0.8901921568657408 -0.3625233878365697 0.931362345990689 0.03377830283209101 0.3625233878365697 -0.931362345990689 -0.03377830283209101 -0.03194270061975638 0.9318493581013336 -0.3614366302455372 -0.1550206914942187 0.9873724139859552 0.03262363113146507 0.1550206914942187 -0.9873724139859552 -0.03262363113146507 0.03194270061975638 -0.9318493581013336 0.3614366302455372 0.1733344233984457 -0.9842509088958912 -0.03471780526964243 -0.1733344233984457 0.9842509088958912 0.03471780526964243 -0.1804037074195329 -0.4056034152759444 0.896069401255158 0.1804037074195329 0.4056034152759444 -0.896069401255158 -0.1087946025738983 0.4031129492699224 0.9086603791195544 0.1087946025738983 -0.4031129492699224 -0.9086603791195544 0.363123457417921 -0.8365194497559559 0.4103371356005304 -0.363123457417921 0.8365194497559559 -0.4103371356005304 -0.1858304765037381 0.434796503264318 -0.8811464320710353 0.1858304765037381 -0.434796503264318 0.8811464320710353 -0.3566845833797729 0.9336121676703839 0.03382940077809265 0.3566845833797729 -0.9336121676703839 -0.03382940077809265 -0.1232190864579312 0.3821508503608651 0.9158481229444871 0.1232190864579312 -0.3821508503608651 -0.9158481229444871 -0.3718655359727516 0.9277850050789988 0.03051241560840916 0.3718655359727516 -0.9277850050789988 -0.03051241560840916 0.3769009454591373 -0.3789257877162465 -0.8451987486476956 -0.3769009454591373 0.3789257877162465 0.8451987486476956 0.442938843698188 -0.7517372087668981 -0.4885656042934923 -0.442938843698188 0.7517372087668981 0.4885656042934923 -0.08865885186649802 -0.4049120996922912 0.9100471413660363 0.08865885186649802 0.4049120996922912 -0.9100471413660363 -0.4722388218988064 0.759623670618326 0.4471715265174743 0.4722388218988064 -0.759623670618326 -0.4471715265174743 0.134922110185194 -0.9904818529278425 -0.02723459571578625 -0.134922110185194 0.9904818529278425 0.02723459571578625 0.1147983128463747 -0.9010408722441773 -0.4182662954543172 -0.1147983128463747 0.9010408722441773 0.4182662954543172 -0.1350494162392188 0.8787776229646012 -0.4577243106392008 0.1350494162392188 -0.8787776229646012 0.4577243106392008 -0.1391797601044876 0.9896212261704099 0.03576063604344212 0.1391797601044876 -0.9896212261704099 -0.03576063604344212 -0.02950715254320219 0.3883564831861083 0.9210366821772682 0.02950715254320219 -0.3883564831861083 -0.9210366821772682 -0.2379134067521402 0.8910569312600233 -0.3865420496415115 0.2379134067521402 -0.8910569312600233 0.3865420496415115 0.4018521372800273 -0.9154653428515124 -0.02093002152978025 -0.4018521372800273 0.9154653428515124 0.02093002152978025 -0.1000677760783224 -0.4248498934504731 0.899716070894513 0.1000677760783224 0.4248498934504731 -0.899716070894513 0.1492709696764515 -0.916415408590717 0.3713502073641012 -0.1492709696764515 0.916415408590717 -0.3713502073641012 -0.08636545570398857 0.5299273874299503 -0.8436337902862293 0.08636545570398857 -0.5299273874299503 0.8436337902862293 -0.03901069718032842 0.3769273918901466 0.9254209348984906 0.03901069718032842 -0.3769273918901466 -0.9254209348984906 -0.6676185415547608 0.5690876826141089 0.480025720632965 0.6676185415547608 -0.5690876826141089 -0.480025720632965 -0.6097251862143607 0.7923030128011297 0.02216152526601627 0.6097251862143607 -0.7923030128011297 -0.02216152526601627 0.4546240055378977 -0.2370235592359574 -0.8585667393719582 -0.4546240055378977 0.2370235592359574 0.8585667393719582 0.6358744733336068 -0.5907466388294836 -0.4966709805035683 -0.6358744733336068 0.5907466388294836 0.4966709805035683 -0.007510637923550951 -0.3776573962138263 0.92591494285543 0.007510637923550951 0.3776573962138263 -0.92591494285543 -0.06860178126321714 -0.9970229180370155 -0.03520080278158875 0.06860178126321714 0.9970229180370155 0.03520080278158875 -0.08047318131380161 -0.9028415724750428 -0.4223756173123964 0.08047318131380161 0.9028415724750428 0.4223756173123964 0.0590008412788316 0.8987807465515142 -0.4344100256171499 -0.0590008412788316 -0.8987807465515142 0.4344100256171499 0.07260530576763689 0.9967081490525157 0.03607402371091806 -0.07260530576763689 -0.9967081490525157 -0.03607402371091806 0.04179726438317089 0.3418517158216679 0.938823941471384 -0.04179726438317089 -0.3418517158216679 -0.938823941471384 -0.01504580730471367 -0.4057369034090668 0.9138660672629067 0.01504580730471367 0.4057369034090668 -0.9138660672629067 -0.4516677406065686 0.7787878965067607 -0.4352995110839578 0.4516677406065686 -0.7787878965067607 0.4352995110839578 0.6412957468603072 -0.7670420594340883 -0.0196530943617914 -0.6412957468603072 0.7670420594340883 0.0196530943617914 -0.05434906373268483 -0.9322524740024467 0.357703094741572 0.05434906373268483 0.9322524740024467 -0.357703094741572 0.02123446767469484 0.5779589524566412 -0.8157895235033325 -0.02123446767469484 -0.5779589524566412 0.8157895235033325 0.0434949249033366 0.3321800355439101 0.9422126169255535 -0.0434949249033366 -0.3321800355439101 -0.9422126169255535 0.06241270493577751 -0.3162716667464053 0.9466133778243631 -0.06241270493577751 0.3162716667464053 -0.9466133778243631 -0.815174793494416 0.281310116120255 0.5063147979466379 0.815174793494416 -0.281310116120255 -0.5063147979466379 -0.8494983244486053 0.5275732145369764 0.004370361785187775 0.8494983244486053 -0.5275732145369764 -0.004370361785187775 0.498695211023203 -0.05462154790820064 -0.8650546647505205 -0.498695211023203 0.05462154790820064 0.8650546647505205 0.8439563683662466 -0.5361045541552577 -0.01815365825525916 -0.8439563683662466 0.5361045541552577 0.01815365825525916 -0.276946828238538 -0.959819750482844 -0.04523826822132948 0.276946828238538 0.959819750482844 0.04523826822132948 -0.2862314669878527 -0.8448820396627895 -0.4519357104292893 0.2862314669878527 0.8448820396627895 0.4519357104292893 0.2515059717810537 0.8703288037188468 -0.4234058568038338 -0.2515059717810537 -0.8703288037188468 0.4234058568038338 0.2850084136732987 0.9578499598644292 0.03596746478612475 -0.2850084136732987 -0.9578499598644292 -0.03596746478612475 0.1022619630699641 0.2645132927119682 0.9589448414208974 -0.1022619630699641 -0.2645132927119682 -0.9589448414208974 0.8727529271744258 -0.4877959513010229 -0.01890603085794959 -0.8727529271744258 0.4877959513010229 0.01890603085794959 0.06500083458049345 -0.3441838698741389 0.936649537032022 -0.06500083458049345 0.3441838698741389 -0.936649537032022 -0.6576857543347527 0.5643110069948806 -0.4990015390051933 0.6576857543347527 -0.5643110069948806 0.4990015390051933 0.4964686844999146 -0.01406475665816916 -0.8679406822652517 -0.4964686844999146 0.01406475665816916 0.8679406822652517 -0.2544202722548222 -0.8958058011797969 0.3644204874021279 0.2544202722548222 0.8958058011797969 -0.3644204874021279 0.1346324613359429 0.5838208018935096 -0.8006418497874347 -0.1346324613359429 -0.5838208018935096 0.8006418497874347 0.1124337766039404 0.244863621927643 0.9630163303574095 -0.1124337766039404 -0.244863621927643 -0.9630163303574095 0.8819699798401712 0.007572893322439157 -0.4712447410289633 -0.8819699798401712 -0.007572893322439157 0.4712447410289633 0.1171534773762263 -0.2299446824738198 0.9661265474774371 -0.1171534773762263 0.2299446824738198 -0.9661265474774371 -0.8597906522069024 -0.06611795836848429 0.506348150938475 0.8597906522069024 0.06611795836848429 -0.506348150938475 -0.8025477729693723 0.198588850119454 -0.5625651435257376 0.8025477729693723 -0.198588850119454 0.5625651435257376 0.4943729432975408 0.1453021156847469 -0.8570196544495715 -0.4943729432975408 -0.1453021156847469 0.8570196544495715 -0.5010991958103166 -0.8640141958952348 -0.04877566247387134 0.5010991958103166 0.8640141958952348 0.04877566247387134 -0.4953813229015003 -0.7179144481291333 -0.4890768754375954 0.4953813229015003 0.7179144481291333 0.4890768754375954 0.4523458532938655 0.7826955050850751 -0.4275172222583134 -0.4523458532938655 -0.7826955050850751 0.4275172222583134 0.5160018988886697 0.8561791547715092 0.02644419176362373 -0.5160018988886697 -0.8561791547715092 -0.02644419176362373 0.1456705024403001 0.1553393497644045 0.9770618154106537 -0.1456705024403001 -0.1553393497644045 -0.9770618154106537 0.9975805439147285 -0.06942566409681915 -0.00362430234802979 -0.9975805439147285 0.06942566409681915 0.00362430234802979 0.1299134657451305 -0.2399575846401426 0.9620513754429946 -0.1299134657451305 0.2399575846401426 -0.9620513754429946 -0.857450808044697 -0.02494771222355772 0.5139608189719394 0.857450808044697 0.02494771222355772 -0.5139608189719394 -0.7992103629099479 0.2325402380412265 -0.5542452828027311 0.7992103629099479 -0.2325402380412265 0.5542452828027311 -0.454522715867437 -0.800084406340553 0.3915022905311971 0.454522715867437 0.800084406340553 -0.3915022905311971 0.2485703518833973 0.543191774852405 -0.8019697474950399 -0.2485703518833973 -0.543191774852405 0.8019697474950399 0.1547367922380168 0.1222975676550789 0.9803569911381977 -0.1547367922380168 -0.1222975676550789 -0.9803569911381977 0.4386228162840494 0.3279105374597031 -0.8367106455985472 -0.4386228162840494 -0.3279105374597031 0.8367106455985472 0.8139598585992446 0.3699242069509965 -0.447912301350135 -0.8139598585992446 -0.3699242069509965 0.447912301350135 0.1540933681755707 -0.1214356495907311 0.9805654577297659 -0.1540933681755707 0.1214356495907311 -0.9805654577297659 -0.7859810059008962 -0.3952304851253901 0.4754226771942673 0.7859810059008962 0.3952304851253901 -0.4754226771942673 -0.9306655580433257 -0.363171696397784 -0.04436144731026219 0.9306655580433257 0.363171696397784 0.04436144731026219 -0.7418627729000863 -0.6686517066395952 -0.0504432492307107 0.7418627729000863 0.6686517066395952 0.0504432492307107 -0.6931561066715604 -0.4793907719949321 -0.5382556079689531 0.6931561066715604 0.4793907719949321 0.5382556079689531 0.6572411328462384 0.6157850077569763 -0.4345606028124661 -0.6572411328462384 -0.6157850077569763 0.4345606028124661 0.7519849967575999 0.6588078537453647 0.02215347591008901 -0.7519849967575999 -0.6588078537453647 -0.02215347591008901 0.1709523652886035 0.02372562364279051 0.9849935957076027 -0.1709523652886035 -0.02372562364279051 -0.9849935957076027 -0.8070117603267765 -0.1635411683109926 -0.5674383710692758 0.8070117603267765 0.1635411683109926 0.5674383710692758 0.9307878365865234 0.3653327892568364 0.01288240491520963 -0.9307878365865234 -0.3653327892568364 -0.01288240491520963 0.1665431576706366 -0.1041956339718937 0.9805134606390106 -0.1665431576706366 0.1041956339718937 -0.9805134606390106 -0.6462109456116381 -0.627112372541189 0.4349039962767338 0.6462109456116381 0.627112372541189 -0.4349039962767338 0.3568995735915838 0.4535783326864708 -0.8166329594668016 -0.3568995735915838 -0.4535783326864708 0.8166329594668016 0.1683205277786634 -0.008532265206758354 0.9856953892449502 -0.1683205277786634 0.008532265206758354 -0.9856953892449502 -0.7170416727855283 -0.6951668545447707 -0.05093411264821503 0.7170416727855283 0.6951668545447707 0.05093411264821503 0.3464913921873409 0.4660477621064498 -0.8140904117944446 -0.3464913921873409 -0.4660477621064498 0.8140904117944446 0.6355101720935054 0.6397392059991743 -0.4322737205443206 -0.6355101720935054 -0.6397392059991743 0.4322737205443206 0.1685926874597324 0.005759232575638584 0.9856689794120767 -0.1685926874597324 -0.005759232575638584 -0.9856689794120767 -0.6279387722639632 -0.6490552974037456 0.4294416365465298 0.6279387722639632 0.6490552974037456 -0.4294416365465298 -0.797320525724816 -0.3587274569573655 0.4853808719787014 0.797320525724816 0.3587274569573655 -0.4853808719787014 -0.8133861344483948 -0.1226042703071534 -0.5686573565773577 0.8133861344483948 0.1226042703071534 0.5686573565773577 0.8277356009579059 0.3350499721835259 -0.4501058664877332 -0.8277356009579059 -0.3350499721835259 0.4501058664877332 0.9459915190235739 0.323992501916216 0.0113536178173332 -0.9459915190235739 -0.323992501916216 -0.0113536178173332 0.1643003987027399 -0.1191713616969986 0.97918515385876 -0.1643003987027399 0.1191713616969986 -0.97918515385876 -0.6747003574537656 -0.5099656113749023 -0.5335864530390395 0.6747003574537656 0.5099656113749023 0.5335864530390395 0.7259870510036196 0.6873468735703761 0.02229522747355532 -0.7259870510036196 -0.6873468735703761 -0.02229522747355532 0.1700498432580083 0.03943727820313243 0.984646003341229 -0.1700498432580083 -0.03943727820313243 -0.984646003341229 -0.7985694608281411 -0.36356139000931 0.4796977505963002 0.7985694608281411 0.36356139000931 -0.4796977505963002 -0.8005808643764349 -0.1773014997979544 -0.5723936213513181 0.8005808643764349 0.1773014997979544 0.5723936213513181 0.4462266470758223 0.310737547532054 -0.8392401062826026 -0.4462266470758223 -0.310737547532054 0.8392401062826026 0.1512034824032725 -0.1336368500728458 0.979427740679082 -0.1512034824032725 0.1336368500728458 -0.979427740679082 -0.4337063421292695 -0.8129751538608235 0.3885488489261287 0.4337063421292695 0.8129751538608235 -0.3885488489261287 -0.4768871581027608 -0.8776648367457268 -0.04778151082551644 0.4768871581027608 0.8776648367457268 0.04778151082551644 0.2380292631613483 0.5528668412542277 -0.7985488874955861 -0.2380292631613483 -0.5528668412542277 0.7985488874955861 0.4293378445864561 0.7959894105933828 -0.4266964652174365 -0.4293378445864561 -0.7959894105933828 0.4266964652174365 0.1533328329530971 0.1385764181221323 0.9784097396689272 -0.1533328329530971 -0.1385764181221323 -0.9784097396689272 -0.8569140460260113 0.01557632081547185 0.5152239279703386 0.8569140460260113 -0.01557632081547185 -0.5152239279703386 -0.7896054920572532 0.2717657566155899 -0.5501513795712766 0.7896054920572532 -0.2717657566155899 0.5501513795712766 0.8795910895700612 -0.03296154049339731 -0.4745872438206223 -0.8795910895700612 0.03296154049339731 0.4745872438206223 0.9931770743846931 -0.1165152085372383 -0.004848205460349638 -0.9931770743846931 0.1165152085372383 0.004848205460349638 0.1241435371507359 -0.2522091035213024 0.9596764820941924 -0.1241435371507359 0.2522091035213024 -0.9596764820941924 0.1440144604828666 0.16957260713744 0.9749384422005526 -0.1440144604828666 -0.16957260713744 -0.9749384422005526 -0.4731542405155758 -0.7367698918075729 -0.4830064090754759 0.4731542405155758 0.7367698918075729 0.4830064090754759 0.4914178532387069 0.8706231096064739 0.02288874259137876 -0.4914178532387069 -0.8706231096064739 -0.02288874259137876 -0.8609183543153827 -0.02973020345434168 0.5078737069444103 0.8609183543153827 0.02973020345434168 -0.5078737069444103 -0.7938562947689128 0.2406997805955247 -0.5584405061213231 0.7938562947689128 -0.2406997805955247 0.5584405061213231 0.4981430677576512 0.1224428744880163 -0.8584062130087993 -0.4981430677576512 -0.1224428744880163 0.8584062130087993 0.1121471507760574 -0.2398416149881592 0.9643127170646894 -0.1121471507760574 0.2398416149881592 -0.9643127170646894 0.1062963897775544 0.2553827694775809 0.960979041693532 -0.1062963897775544 -0.2553827694775809 -0.960979041693532 -0.2334309899728497 -0.9020887559179942 0.3629681106745063 0.2334309899728497 0.9020887559179942 -0.3629681106745063 -0.2546368489860527 -0.9661353058705178 -0.04174501034776832 0.2546368489860527 0.9661353058705178 0.04174501034776832 0.1225912726360824 0.5856443460283727 -0.8012440825606546 -0.1225912726360824 -0.5856443460283727 0.8012440825606546 0.2322457144925312 0.8745419870190941 -0.4257208487266607 -0.2322457144925312 -0.8745419870190941 0.4257208487266607 -0.8298684604430325 0.5578900253539257 0.008778267056029602 0.8298684604430325 -0.5578900253539257 -0.008778267056029602 -0.6381582281851053 0.592109930329274 -0.4920974560034928 0.6381582281851053 -0.592109930329274 0.4920974560034928 0.7845366827042137 -0.3705960259960854 -0.4971526717290942 -0.7845366827042137 0.3705960259960854 0.4971526717290942 0.8531095620720463 -0.5209766158183181 -0.02806137686810723 -0.8531095620720463 0.5209766158183181 0.02806137686810723 0.05745209060252372 -0.3531345851308873 0.933806844090273 -0.05745209060252372 0.3531345851308873 -0.933806844090273 0.2642023099047379 0.96389792800383 0.03313493369427906 -0.2642023099047379 -0.96389792800383 -0.03313493369427906 0.09617134804706679 0.273507182340263 0.9570500995366439 -0.09617134804706679 -0.273507182340263 -0.9570500995366439 -0.2627828300824376 -0.8573916870731996 -0.4425208234101954 0.2627828300824376 0.8573916870731996 0.4425208234101954 -0.8054325663980541 0.3138328927145027 0.5027795704241488 0.8054325663980541 -0.3138328927145027 -0.5027795704241488 0.5011990702762256 -0.07684442230173266 -0.8619132361875874 -0.5011990702762256 0.07684442230173266 0.8619132361875874 0.05596797787530988 -0.3240722944377901 0.9443753138611656 -0.05596797787530988 0.3240722944377901 -0.9443753138611656 0.03900188409162862 0.8991548421820407 -0.435889232280281 -0.03900188409162862 -0.8991548421820407 0.435889232280281 0.03524069011300303 0.3386802113123089 0.9402413563685705 -0.03524069011300303 -0.3386802113123089 -0.9402413563685705 -0.03378444717273314 -0.9335367144642884 0.356886275830907 0.03378444717273314 0.9335367144642884 -0.356886275830907 -0.0479048455183228 -0.9982543663355565 -0.03454483851260853 0.0479048455183228 0.9982543663355565 0.03454483851260853 0.009899560068351961 0.5749211771574377 -0.8181489098974338 -0.009899560068351961 -0.5749211771574377 0.8181489098974338 -0.5854927501762082 0.8104056044264791 0.02099990012483857 0.5854927501762082 -0.8104056044264791 -0.02099990012483857 -0.4341226606551393 0.7959770683591242 -0.4218507107403244 0.4341226606551393 -0.7959770683591242 0.4218507107403244 0.6153483072657556 -0.6092314275743322 -0.5001834947305943 -0.6153483072657556 0.6092314275743322 0.5001834947305943 0.6198696161494136 -0.7840905370094322 -0.03104333659642618 -0.6198696161494136 0.7840905370094322 0.03104333659642618 -0.02407700961637427 -0.4097001398519071 0.9119024580585694 0.02407700961637427 0.4097001398519071 -0.9119024580585694 0.05033926183616807 0.9980435793235593 0.03708062147278299 -0.05033926183616807 -0.9980435793235593 -0.03708062147278299 0.03481731939135043 0.3480096793275698 0.936844179874499 -0.03481731939135043 -0.3480096793275698 -0.936844179874499 -0.06080258187760262 -0.9051338646646926 -0.4207561444283083 0.06080258187760262 0.9051338646646926 0.4207561444283083 -0.6482226276671629 0.6028910632744456 0.4651126646352332 0.6482226276671629 -0.6028910632744456 -0.4651126646352332 0.4479077752369409 -0.2541629122600133 -0.8571929998044797 -0.4479077752369409 0.2541629122600133 0.8571929998044797 -0.01557210102520522 -0.3810223222922303 0.9244346918980793 0.01557210102520522 0.3810223222922303 -0.9244346918980793 -0.09713865155677696 0.5222654339317011 -0.8472324940025986 0.09713865155677696 -0.5222654339317011 0.8472324940025986 -0.1553642244159123 0.8736924138162414 -0.4610027373146406 0.1553642244159123 -0.8736924138162414 0.4610027373146406 -0.04773883644661871 0.379195553171683 0.9240842688573074 0.04773883644661871 -0.379195553171683 -0.9240842688573074 0.1709478385442632 -0.911260122999803 0.3746756260119262 -0.1709478385442632 0.911260122999803 -0.3746756260119262 0.1565031294805676 -0.9873397968093323 -0.02582433153627022 -0.1565031294805676 0.9873397968093323 0.02582433153627022 -0.3468199483393967 0.9374158955969509 0.03110244549910115 0.3468199483393967 -0.9374158955969509 -0.03110244549910115 -0.2151544640411276 0.8989222404764934 -0.381637736839397 0.2151544640411276 -0.8989222404764934 0.381637736839397 0.422916307869554 -0.7599392226206774 -0.4935931264317454 -0.422916307869554 0.7599392226206774 0.4935931264317454 0.377073827552353 -0.9255320285439551 -0.03472452612103082 -0.377073827552353 0.9255320285439551 0.03472452612103082 -0.108627411872101 -0.4243902982928708 0.898939909062256 0.108627411872101 0.4243902982928708 -0.898939909062256 0.1350124515051911 -0.8980485648208227 -0.4186650369469836 -0.1350124515051911 0.8980485648208227 0.4186650369469836 -0.1612442781859131 0.9862794914739842 0.03539841027678021 0.1612442781859131 -0.9862794914739842 -0.03539841027678021 -0.03729995421693928 0.3914302756617625 0.9194514955726434 0.03729995421693928 -0.3914302756617625 -0.9194514955726434 -0.4512633063408924 0.7735750642969342 0.4449079098513309 0.4512633063408924 -0.7735750642969342 -0.4449079098513309 0.3680151996151649 -0.3928969007208333 -0.8427317712393275 -0.3680151996151649 0.3928969007208333 0.8427317712393275 -0.09727939456517401 -0.4055410823750608 0.9088856638208666 0.09727939456517401 0.4055410823750608 -0.9088856638208666 0.3736595622003403 -0.9274540404004935 -0.0144060584841893 -0.3736595622003403 0.9274540404004935 0.0144060584841893 -0.1954592889357965 0.4220230118545197 -0.8852639402087679 0.1954592889357965 -0.4220230118545197 0.8852639402087679 -0.3804028581403459 0.9242070827686287 0.03368877675067691 0.3804028581403459 -0.9242070827686287 -0.03368877675067691 -0.1318447757518489 0.3806083511958868 0.9152891554623015 0.1318447757518489 -0.3806083511958868 -0.9152891554623015 0.3857726000592082 -0.823667545072599 0.4156335841070069 -0.3857726000592082 0.823667545072599 -0.4156335841070069 -0.1338488499243973 0.9904478287972295 0.03312980236539311 0.1338488499243973 -0.9904478287972295 -0.03312980236539311 -0.01117203391103292 0.9329421369179466 -0.3598529627796139 0.01117203391103292 -0.9329421369179466 0.3598529627796139 0.2325215409716085 -0.8441077524679405 -0.4831312815454108 -0.2325215409716085 0.8441077524679405 0.4831312815454108 0.1544919375863715 -0.9873231370638004 -0.03640417887145344 -0.1544919375863715 0.9873231370638004 0.03640417887145344 -0.1883848952572948 -0.4022478600787148 0.8959396130884005 0.1883848952572948 0.4022478600787148 -0.8959396130884005 0.3323032046149535 -0.8385594970703174 -0.4317320350354011 -0.3323032046149535 0.8385594970703174 0.4317320350354011 -0.2152599790098669 0.391667221357033 -0.8945724840118505 0.2152599790098669 -0.391667221357033 0.8945724840118505 -0.3868227017761055 0.9215332032618456 0.03383419389605583 0.3868227017761055 -0.9215332032618456 -0.03383419389605583 -0.1173923091996779 0.4027715861119354 0.907741204948659 0.1173923091996779 -0.4027715861119354 -0.907741204948659 -0.2489555830704448 0.8717567970615852 0.4219729901723344 0.2489555830704448 -0.8717567970615852 -0.4219729901723344 0.2718613803360442 -0.4882181075164831 -0.8292975758886579 -0.2718613803360442 0.4882181075164831 0.8292975758886579 -0.1836681448407901 -0.3924420882711748 0.9012520290818225 0.1836681448407901 0.3924420882711748 -0.9012520290818225 0.6033379414759521 -0.6384723124391702 0.4778456179815184 -0.6033379414759521 0.6384723124391702 -0.4778456179815184 0.613143127400927 -0.7899716064930814 0.0006051906731352142 -0.613143127400927 0.7899716064930814 -0.0006051906731352142 -0.2753486370013015 0.2694802403432065 -0.922801998353977 0.2753486370013015 -0.2694802403432065 0.922801998353977 -0.6186683494355953 0.7850893088761158 0.02973634972653872 0.6186683494355953 -0.7850893088761158 -0.02973634972653872 -0.2101333340222701 0.3486910560910353 0.9133775393202985 0.2101333340222701 -0.3486910560910353 -0.9133775393202985 0.06458828602664837 0.9973981295291592 0.03202068893503747 -0.06458828602664837 -0.9973981295291592 -0.03202068893503747 0.1834284435450448 0.9148861036748122 -0.3596351253720405 -0.1834284435450448 -0.9148861036748122 0.3596351253720405 0.04707106846818684 -0.8766538121109553 -0.478813542231831 -0.04707106846818684 0.8766538121109553 0.478813542231831 -0.05240544458981807 -0.9979363572904079 -0.03710385660945478 0.05240544458981807 0.9979363572904079 0.03710385660945478 -0.2558849461871275 -0.350471967254376 0.9009396730545607 0.2558849461871275 0.350471967254376 -0.9009396730545607 -0.200694747324343 0.3777292023536014 0.9039039042319322 0.200694747324343 -0.3777292023536014 -0.9039039042319322 0.5305321316869283 -0.7131920018537039 -0.4581406178670804 -0.5305321316869283 0.7131920018537039 0.4581406178670804 -0.2880983715263597 0.2233201421009748 -0.9311967796636004 0.2880983715263597 -0.2233201421009748 0.9311967796636004 -0.6320377423804821 0.7743842637606397 0.02927975830630272 0.6320377423804821 -0.7743842637606397 -0.02927975830630272 -0.05522536770654783 0.9079808958399157 0.4153562947054256 0.05522536770654783 -0.9079808958399157 -0.4153562947054256 0.1693197659775681 -0.5435044501609175 -0.8221518895584806 -0.1693197659775681 0.5435044501609175 0.8221518895584806 -0.2624276747014604 -0.3400571667813387 0.9030464212162258 0.2624276747014604 0.3400571667813387 -0.9030464212162258 -0.2784955639681501 0.2831199724302808 0.9177599370538786 0.2784955639681501 -0.2831199724302808 -0.9177599370538786 0.7799925510025074 -0.312763053598415 0.5420248081816884 -0.7799925510025074 0.312763053598415 -0.5420248081816884 0.861350202599474 -0.5077689173607858 0.01570207133153192 -0.861350202599474 0.5077689173607858 -0.01570207133153192 -0.3203962497789111 0.06509019373873208 -0.9450447131256086 0.3203962497789111 -0.06509019373873208 0.9450447131256086 -0.8570089126585533 0.5149465289946921 0.01912579149010435 0.8570089126585533 -0.5149465289946921 -0.01912579149010435 0.2668998251241754 0.9632065101179255 0.03158642453857888 -0.2668998251241754 -0.9632065101179255 -0.03158642453857888 0.3848457984574989 0.8411597227003285 -0.3799263511739041 -0.3848457984574989 -0.8411597227003285 0.3799263511739041 -0.1463418171331631 -0.8636911306943719 -0.4823087220007961 0.1463418171331631 0.8636911306943719 0.4823087220007961 -0.2614964724511442 -0.9645806651456631 -0.0346948890005161 0.2614964724511442 0.9645806651456631 0.0346948890005161 -0.3127971824230538 -0.2727002758388455 0.9098310185004777 0.3127971824230538 0.2727002758388455 -0.9098310185004777 -0.8772394837810913 0.479727285593503 0.01768105066375627 0.8772394837810913 -0.479727285593503 -0.01768105066375627 -0.2801769327316828 0.3069223400943102 0.9095600934056521 0.2801769327316828 -0.3069223400943102 -0.9095600934056521 0.7175260310791318 -0.4930813406195232 -0.4919625862366797 -0.7175260310791318 0.4930813406195232 0.4919625862366797 -0.3153777635399161 0.02588495228063627 -0.9486131116055638 0.3153777635399161 -0.02588495228063627 0.9486131116055638 0.1393203985443418 0.8940098255258359 0.4258359524660994 -0.1393203985443418 -0.8940098255258359 -0.4258359524660994 0.0613360785267453 -0.5592548813864927 -0.8267235711629013 -0.0613360785267453 0.5592548813864927 0.8267235711629013 -0.3279772485291286 -0.2497890304277758 0.9110633154315971 0.3279772485291286 0.2497890304277758 -0.9110633154315971 -0.9954162509199361 0.09554550661859637 0.004188504446045178 0.9954162509199361 -0.09554550661859637 -0.004188504446045178 -0.3316055780471462 0.1947610534499365 0.9230958090399333 0.3316055780471462 -0.1947610534499365 -0.9230958090399333 0.8175626758962213 0.09714834888191229 0.5675856492996704 -0.8175626758962213 -0.09714834888191229 -0.5675856492996704 0.8458917130539921 -0.1331934717853834 -0.5164559118263038 -0.8458917130539921 0.1331934717853834 0.5164559118263038 -0.3083647246734359 -0.1573739027797761 -0.9381602481990684 0.3083647246734359 0.1573739027797761 0.9381602481990684 0.499020226367712 0.8660112669631548 0.03167489808647932 -0.499020226367712 -0.8660112669631548 -0.03167489808647932 0.5956904132068955 0.6858714953802544 -0.4180110326752776 -0.5956904132068955 -0.6858714953802544 0.4180110326752776 -0.3620808541156949 -0.7880834786357531 -0.4978171208227165 0.3620808541156949 0.7880834786357531 0.4978171208227165 -0.4980593539555487 -0.8665836747455885 -0.03113863519510004 0.4980593539555487 0.8665836747455885 0.03113863519510004 -0.359961397037305 -0.1644696286552123 0.9183558862951599 0.359961397037305 0.1644696286552123 -0.9183558862951599 -0.2943109012349603 -0.1612855244810798 -0.9420021618908996 0.2943109012349603 0.1612855244810798 0.9420021618908996 -0.9995126198422273 0.03115932617757232 0.00190241117719404 0.9995126198422273 -0.03115932617757232 -0.00190241117719404 -0.3430702516935164 0.1961112469923958 0.9186093735674783 0.3430702516935164 -0.1961112469923958 -0.9186093735674783 0.8174448668148598 0.04635657624701822 0.5741384480738861 -0.8174448668148598 -0.04635657624701822 -0.5741384480738861 0.8407726363999902 -0.1769178412982841 -0.5116653704437744 -0.8407726363999902 0.1769178412982841 0.5116653704437744 0.3512955557181288 0.817032719621692 0.4572187305877491 -0.3512955557181288 -0.817032719621692 -0.4572187305877491 -0.05305143425118907 -0.5294281753016813 -0.8466943678332954 0.05305143425118907 0.5294281753016813 0.8466943678332954 -0.3719113724926969 -0.1265488578829416 0.9196017168204513 0.3719113724926969 0.1265488578829416 -0.9196017168204513 -0.2430270571949046 -0.340963009566561 -0.9081200777311875 0.2430270571949046 0.340963009566561 0.9081200777311875 -0.9393207539411168 -0.3428355318660301 -0.01184564500684825 0.9393207539411168 0.3428355318660301 0.01184564500684825 -0.3671383093963134 0.09388633053469656 0.925416024668012 0.3671383093963134 -0.09388633053469656 -0.925416024668012 0.7105979357165625 0.4478711802407899 0.5426435106633837 -0.7105979357165625 -0.4478711802407899 -0.5426435106633837 0.8322464311687771 0.2410873094306051 -0.4992422127969003 -0.8322464311687771 -0.2410873094306051 0.4992422127969003 0.7492443417965902 0.6617502514901101 0.02682388746193632 -0.7492443417965902 -0.6617502514901101 -0.02682388746193632 0.7718029793325206 0.4269070610378765 -0.4712435912874016 -0.7718029793325206 -0.4269070610378765 0.4712435912874016 -0.1704424063753528 -0.418799142778685 -0.8919398321169527 0.1704424063753528 0.418799142778685 0.8919398321169527 -0.7457711985039001 -0.6657934573101565 -0.02333220274738622 0.7457711985039001 0.6657934573101565 0.02333220274738622 -0.3832975258668947 -0.03328638985510561 0.9230249308197105 0.3832975258668947 0.03328638985510561 -0.9230249308197105 0.8487165835841974 0.1691112280510487 -0.5010803860621905 -0.8487165835841974 -0.1691112280510487 0.5010803860621905 -0.2375867641878089 -0.3172653688496944 -0.9180932497363402 0.2375867641878089 0.3172653688496944 0.9180932497363402 -0.9142914964868846 -0.4047864844800893 -0.01479734550599009 0.9142914964868846 0.4047864844800893 0.01479734550599009 -0.3773142060023418 0.07298275794710361 0.9232050189374281 0.3773142060023418 -0.07298275794710361 -0.9232050189374281 0.7162917454464216 0.4292023758780845 0.550192199095849 -0.7162917454464216 -0.4292023758780845 -0.550192199095849 0.5634644328169429 0.6543425034908874 0.5043250153180574 -0.5634644328169429 -0.6543425034908874 -0.5043250153180574 -0.1654534990126832 -0.4499796035445223 -0.8775781993978512 0.1654534990126832 0.4499796035445223 0.8775781993978512 -0.7849750302322432 -0.61914690019648 -0.02170985695435957 0.7849750302322432 0.61914690019648 0.02170985695435957 -0.3812176036166756 0.001932026157005854 0.9244833183825914 0.3812176036166756 -0.001932026157005854 -0.9244833183825914 0.7062555440699734 0.7074483609393937 0.02683138227134638 -0.7062555440699734 -0.7074483609393937 -0.02683138227134638 -0.1468876452683363 -0.4681639048480643 -0.8713475643306384 0.1468876452683363 0.4681639048480643 0.8713475643306384 -0.5453398563016959 -0.6597063117067336 -0.5170996262067338 0.5453398563016959 0.6597063117067336 0.5170996262067338 -0.3801222938534106 -0.01953408970055335 0.9247299395256933 0.3801222938534106 0.01953408970055335 -0.9247299395256933 0.5267605382682085 0.6908734985756165 0.495194047106056 -0.5267605382682085 -0.6908734985756165 -0.495194047106056 0.7478726818795818 0.3581138604152929 0.5589641443569507 -0.7478726818795818 -0.3581138604152929 -0.5589641443569507 0.8574547276395824 0.09217761627415656 -0.5062357920046189 -0.8574547276395824 -0.09217761627415656 0.5062357920046189 -0.2503400554594847 -0.2899497763892844 -0.9237201869637505 0.2503400554594847 0.2899497763892844 0.9237201869637505 -0.945860714581945 -0.3243755591802412 -0.01131393905933793 0.945860714581945 0.3243755591802412 0.01131393905933793 -0.3740548322485346 0.101284626066865 0.9218592121327508 0.3740548322485346 -0.101284626066865 -0.9218592121327508 0.7456205843010635 0.4793489914736001 -0.4628979246440657 -0.7456205843010635 -0.4793489914736001 0.4628979246440657 -0.7019827698805626 -0.7116138038748113 -0.0287399534730753 0.7019827698805626 0.7116138038748113 0.0287399534730753 -0.3797743653667189 -0.05577346448259948 0.9233963136540638 0.3797743653667189 0.05577346448259948 -0.9233963136540638 0.7413117673025702 0.3838791288921039 0.550539442782967 -0.7413117673025702 -0.3838791288921039 -0.550539442782967 0.8464391172416744 0.1647749001367979 -0.5063497339665967 -0.8464391172416744 -0.1647749001367979 0.5063497339665967 -0.2583659647566177 -0.3088681222610339 -0.9153401069036172 0.2583659647566177 0.3088681222610339 0.9153401069036172 -0.9667076871678222 -0.2557261364940597 -0.008966085236136824 0.9667076871678222 0.2557261364940597 0.008966085236136824 -0.3621152032149901 0.1188767380450872 0.9245219850021557 0.3621152032149901 -0.1188767380450872 -0.9245219850021557 0.3198230567882171 0.8329970911554596 0.4514743165155507 -0.3198230567882171 -0.8329970911554596 -0.4514743165155507 0.4674475931014964 0.8835527886872145 0.02876138568748932 -0.4674475931014964 -0.8835527886872145 -0.02876138568748932 -0.03702795736669842 -0.5387038537364716 -0.8416811084625366 0.03702795736669842 0.5387038537364716 0.8416811084625366 -0.3259099937071137 -0.8059159978137687 -0.4942490065439353 0.3259099937071137 0.8059159978137687 0.4942490065439353 -0.3683565981934949 -0.1472084240102136 0.9179559338376464 0.3683565981934949 0.1472084240102136 -0.9179559338376464 0.8188476326458342 -0.04539294783510035 0.5722132773688083 -0.8188476326458342 0.04539294783510035 -0.5722132773688083 0.8222586412210436 -0.2531169247564348 -0.5097279169705816 -0.8222586412210436 0.2531169247564348 0.5097279169705816 -0.300720892527676 -0.1278968835880935 -0.9450975251082884 0.300720892527676 0.1278968835880935 0.9450975251082884 -0.9912217850814648 0.1320979721046645 0.005431256369362665 0.9912217850814648 -0.1320979721046645 -0.005431256369362665 -0.3334782498602851 0.2262070152921916 0.9152172655182589 0.3334782498602851 -0.2262070152921916 -0.9152172655182589 -0.3572490711108234 -0.1813357523302581 0.9162371123880944 0.3572490711108234 0.1813357523302581 -0.9162371123880944 0.5653065393782845 0.7136392668265392 -0.4136997865353904 -0.5653065393782845 -0.7136392668265392 0.4136997865353904 -0.4589846257788459 -0.8877888882835777 -0.0341174902192718 0.4589846257788459 0.8877888882835777 0.0341174902192718 0.8236653039657989 0.01006987565173836 0.5669868293419932 -0.8236653039657989 -0.01006987565173836 -0.5669868293419932 0.8284558720579608 -0.2197536701379031 -0.5151399737096757 -0.8284558720579608 0.2197536701379031 0.5151399737096757 -0.3142935649961468 -0.1151516845652284 -0.942316106486461 0.3142935649961468 0.1151516845652284 0.942316106486461 -0.9814065262557707 0.1917854364560292 0.007718587043729437 0.9814065262557707 -0.1917854364560292 -0.007718587043729437 -0.3228914834170022 0.217939675583032 0.9210012962767916 0.3228914834170022 -0.217939675583032 -0.9210012962767916 -0.3242624972403607 -0.2627833088868958 0.9087347057606524 0.3242624972403607 0.2627833088868958 -0.9087347057606524 0.117420388131938 0.8977396860229416 0.4245891055954867 -0.117420388131938 -0.8977396860229416 -0.4245891055954867 0.2469964941695569 0.9685320094499706 0.03063459708809317 -0.2469964941695569 -0.9685320094499706 -0.03063459708809317 0.07435299732554916 -0.5619690584054785 -0.823809692334077 -0.07435299732554916 0.5619690584054785 0.823809692334077 -0.1220295760348229 -0.8647589480038433 -0.4871352424327843 0.1220295760348229 0.8647589480038433 0.4871352424327843 0.8216169141959743 -0.5698787308324951 0.0135601789010826 -0.8216169141959743 0.5698787308324951 -0.0135601789010826 0.6877979909346258 -0.5387765752819367 -0.4864706831801484 -0.6877979909346258 0.5387765752819367 0.4864706831801484 -0.3136937401979045 0.0587051288605675 -0.9477077319543795 0.3136937401979045 -0.0587051288605675 0.9477077319543795 -0.839258447178844 0.5433306725550696 0.02090548013826136 0.839258447178844 -0.5433306725550696 -0.02090548013826136 -0.2680750835053133 0.3235315035335521 0.9074486849541071 0.2680750835053133 -0.3235315035335521 -0.9074486849541071 -0.2377611366143024 -0.9701765968443886 -0.04719123701827994 0.2377611366143024 0.9701765968443886 0.04719123701827994 -0.3107228677212897 -0.2832733326377546 0.9073078410833657 0.3107228677212897 0.2832733326377546 -0.9073078410833657 0.363472855355222 0.8517560208747094 -0.3773581380116289 -0.363472855355222 -0.8517560208747094 0.3773581380116289 0.7564578035040248 -0.3790964679218641 0.5329704114930146 -0.7564578035040248 0.3790964679218641 -0.5329704114930146 -0.3158059170904769 0.1009810182456142 -0.9434349244567545 0.3158059170904769 -0.1009810182456142 0.9434349244567545 -0.8201689820705466 0.5717011765880734 0.02192271737663839 0.8201689820705466 -0.5717011765880734 -0.02192271737663839 -0.2680299321929722 0.2977177666476841 0.9162554703088794 0.2680299321929722 -0.2977177666476841 -0.9162554703088794 0.06944199672095203 -0.8752639419260931 -0.4786343500579582 -0.06944199672095203 0.8752639419260931 0.4786343500579582 -0.2548536545231394 -0.3498003694604286 0.901492826539151 0.2548536545231394 0.3498003694604286 -0.901492826539151 -0.07991809526843903 0.9055282625218871 0.4166913291907535 0.07991809526843903 -0.9055282625218871 -0.4166913291907535 0.04083183429295593 0.9986126150533274 0.03325065961191508 -0.04083183429295593 -0.9986126150533274 -0.03325065961191508 0.182552286803898 -0.537492532334813 -0.8232717900347233 -0.182552286803898 0.537492532334813 0.8232717900347233 0.577815962223738 -0.8161640474517996 -0.002227430482101782 -0.577815962223738 0.8161640474517996 0.002227430482101782 0.5021654317474508 -0.7356097276283488 -0.4546517433997619 -0.5021654317474508 0.7356097276283488 0.4546517433997619 -0.2804889621707544 0.2496657596863755 -0.9268187258253892 0.2804889621707544 -0.2496657596863755 0.9268187258253892 -0.5958886369564139 0.8025154849665568 0.02975951503501457 0.5958886369564139 -0.8025154849665568 -0.02975951503501457 -0.1886596466353326 0.3826616885909969 0.9044211241540736 0.1886596466353326 -0.3826616885909969 -0.9044211241540736 -0.02642589192626583 -0.9989899562612886 -0.03634198020155225 0.02642589192626583 0.9989899562612886 0.03634198020155225 -0.2495513640690779 -0.3597033579949276 0.8990759761768944 0.2495513640690779 0.3597033579949276 -0.8990759761768944 0.1610749021599849 0.919514136162441 -0.3585367893139996 -0.1610749021599849 -0.919514136162441 0.3585367893139996 0.5735102016805903 -0.6720388064869559 0.4684547909285128 -0.5735102016805903 0.6720388064869559 -0.4684547909285128 -0.2657943292264164 0.2945407621324637 -0.9179319767790568 0.2657943292264164 -0.2945407621324637 0.9179319767790568 -0.5837327705497279 0.8113865891313407 0.03013064161526602 0.5837327705497279 -0.8113865891313407 -0.03013064161526602 -0.1991820465143772 0.3544893614773262 0.9135993678553758 0.1991820465143772 -0.3544893614773262 -0.9135993678553758 0.2861780936521547 -0.4775920835169998 -0.8306671418056151 -0.2861780936521547 0.4775920835169998 0.8306671418056151 0.2596158391162486 -0.8356664422017331 -0.4840053857736125 -0.2596158391162486 0.8356664422017331 0.4840053857736125 -0.1711728639867653 -0.3974243520842621 0.9015285547363282 0.1711728639867653 0.3974243520842621 -0.9015285547363282 -0.2759630649446006 0.862122778991588 0.424957292830943 0.2759630649446006 -0.862122778991588 -0.424957292830943 -0.1627713730068983 0.9861055452496621 0.03318634896031334 0.1627713730068983 -0.9861055452496621 -0.03318634896031334 0.3416996505827609 -0.9396661338264465 -0.01639834538231022 -0.3416996505827609 0.9396661338264465 0.01639834538231022 0.30376142805433 -0.8502671592682022 -0.4298543389293356 -0.30376142805433 0.8502671592682022 0.4298543389293356 -0.201791230256234 0.4122164491855501 -0.8884581579413475 0.201791230256234 -0.4122164491855501 0.8884581579413475 -0.353387402572387 0.9348176637184597 0.03511807658603557 0.353387402572387 -0.9348176637184597 -0.03511807658603557 -0.1058721135997328 0.4040115403614299 0.9086064994356522 0.1058721135997328 -0.4040115403614299 -0.9086064994356522 -0.03914787380005075 0.9310752900203363 -0.3627206201616916 0.03914787380005075 -0.9310752900203363 0.3627206201616916 0.1852695253025228 -0.9820292032140997 -0.0359700851939271 -0.1852695253025228 0.9820292032140997 0.0359700851939271 -0.1773549694629225 -0.4078269871403468 0.8956686682958341 0.1773549694629225 0.4078269871403468 -0.8956686682958341 0.3549316148623257 -0.8408242567767633 0.4087029703672644 -0.3549316148623257 0.8408242567767633 -0.4087029703672644 -0.1822031762745549 0.4397897912365972 -0.8794242105375164 0.1822031762745549 -0.4397897912365972 0.8794242105375164 -0.3477859038141603 0.9369150364712027 0.03514512117396353 0.3477859038141603 -0.9369150364712027 -0.03514512117396353 -0.1202995705451427 0.3836022387659995 0.9156294751373872 0.1202995705451427 -0.3836022387659995 -0.9156294751373872 -0.3816999914060151 0.9236542054752703 0.03417638466097767 0.3816999914060151 -0.9236542054752703 -0.03417638466097767 0.3808467242539962 -0.3762287084416336 -0.8446346734354094 -0.3808467242539962 0.3762287084416336 0.8446346734354094 0.4502607467623525 -0.7431657997486632 -0.4949442938442048 -0.4502607467623525 0.7431657997486632 0.4949442938442048 -0.08541398328283506 -0.4049315133355671 0.9103487908310348 0.08541398328283506 0.4049315133355671 -0.9103487908310348 -0.4839714770711831 0.7462278087800175 0.4570729337697769 0.4839714770711831 -0.7462278087800175 -0.4570729337697769 0.1272741652955169 -0.9915092578234279 -0.02665855395111868 -0.1272741652955169 0.9915092578234279 0.02665855395111868 0.1075205216591178 -0.9023415162816886 -0.4173956461399833 -0.1075205216591178 0.9023415162816886 0.4173956461399833 -0.1273013822530978 0.880511134770289 -0.4566119792799885 0.1273013822530978 -0.880511134770289 0.4566119792799885 -0.1306645420507385 0.9907766458956298 0.03589450373632322 0.1306645420507385 -0.9907766458956298 -0.03589450373632322 -0.02654652668006343 0.3881393566191548 0.9212182812800087 0.02654652668006343 -0.3881393566191548 -0.9212182812800087 -0.2460646216208448 0.8881171003616863 -0.3882012596988072 0.2460646216208448 -0.8881171003616863 0.3882012596988072 0.4101023204955814 -0.9113972187520644 -0.03422274645818363 -0.4101023204955814 0.9113972187520644 0.03422274645818363 -0.09588818099303931 -0.4238328194187011 0.9006504304831264 0.09588818099303931 0.4238328194187011 -0.9006504304831264 0.1414093547059274 -0.9178126143131481 0.3709762787690308 -0.1414093547059274 0.9178126143131481 -0.3709762787690308 -0.08229816627144125 0.5326161550261377 -0.8423461540444828 0.08229816627144125 -0.5326161550261377 0.8423461540444828 -0.03578031954480483 0.3768652501914808 0.9255767671735197 0.03578031954480483 -0.3768652501914808 -0.9255767671735197 -0.674709725386167 0.5584923471442861 0.4825485308760034 0.674709725386167 -0.5584923471442861 -0.4825485308760034 -0.6195040484889329 0.7846770842946554 0.02228468731349538 0.6195040484889329 -0.7846770842946554 -0.02228468731349538 0.4570166420245257 -0.2308322798019402 -0.858983263814881 -0.4570166420245257 0.2308322798019402 0.858983263814881 0.640215112457863 -0.5821380191740587 -0.5012384027712449 -0.640215112457863 0.5821380191740587 0.5012384027712449 -0.00412076982569427 -0.3751321319259711 0.9269621906273845 0.00412076982569427 0.3751321319259711 -0.9269621906273845 -0.0771032196051772 -0.9963834114229999 -0.03570981612359299 0.0771032196051772 0.9963834114229999 0.03570981612359299 -0.08906842643591111 -0.9018910816672023 -0.4226810762518171 0.08906842643591111 0.9018910816672023 0.4226810762518171 0.06620767914974504 0.8988097898575195 -0.4333099408943743 -0.06620767914974504 -0.8988097898575195 0.4333099408943743 0.08025119404980048 0.9960917061574914 0.03689253010893739 -0.08025119404980048 -0.9960917061574914 -0.03689253010893739 0.04437713259752743 0.3394687609676098 0.9395699177972532 -0.04437713259752743 -0.3394687609676098 -0.9395699177972532 -0.01161620341918367 -0.4044218247092673 0.9144987979855144 0.01161620341918367 0.4044218247092673 -0.9144987979855144 -0.4607959922654775 0.7725797385012819 -0.43679240053985 0.4607959922654775 -0.7725797385012819 0.43679240053985 0.6528638896857033 -0.7569444426881054 -0.02835228788029745 -0.6528638896857033 0.7569444426881054 0.02835228788029745 -0.06270523447042294 -0.9322290879753824 0.3563944178892201 0.06270523447042294 0.9322290879753824 -0.3563944178892201 0.02539719024706923 0.5792730047807407 -0.814737852723099 -0.02539719024706923 -0.5792730047807407 0.814737852723099 0.0464879261504257 0.3294715832049027 0.9430203330695938 -0.0464879261504257 -0.3294715832049027 -0.9430203330695938 0.0646969505680893 -0.3132092574365765 0.9474778444075717 -0.0646969505680893 0.3132092574365765 -0.9474778444075717 -0.8190055710734459 0.2677980214914298 0.5074584655279038 0.8190055710734459 -0.2677980214914298 -0.5074584655279038 -0.8580883842627182 0.5134892842226402 0.0036165981140491 0.8580883842627182 -0.5134892842226402 -0.0036165981140491 0.4994180366316639 -0.04699295619315566 -0.8650857106409757 -0.4994180366316639 0.04699295619315566 0.8650857106409757 0.8539293952023838 -0.5200193019209856 -0.01960901932534571 -0.8539293952023838 0.5200193019209856 0.01960901932534571 -0.2852447237175135 -0.9574708992473967 -0.04341571933874513 0.2852447237175135 0.9574708992473967 0.04341571933874513 -0.2924341135507829 -0.8449230634038953 -0.4478697424027935 0.2924341135507829 0.8449230634038953 0.4478697424027935 0.2600125274543552 0.8674470282758773 -0.4241805496509092 -0.2600125274543552 -0.8674470282758773 0.4241805496509092 0.2946201925173138 0.9549773324281696 0.03488891957969222 -0.2946201925173138 -0.9549773324281696 -0.03488891957969222 0.1034170581106673 0.2608524472427958 0.9598233758661949 -0.1034170581106673 -0.2608524472427958 -0.9598233758661949 0.8820135529355918 -0.4708935410121302 -0.01764555102543141 -0.8820135529355918 0.4708935410121302 0.01764555102543141 0.06790459995166641 -0.3406811915226268 0.9377234619268771 -0.06790459995166641 0.3406811915226268 -0.9377234619268771 -0.6641144318958315 0.5539254413356686 -0.5021141571283985 0.6641144318958315 -0.5539254413356686 0.5021141571283985 0.4964651605977263 -0.007173700614587332 -0.8680270055316057 -0.4964651605977263 0.007173700614587332 0.8680270055316057 -0.2614397072830781 -0.8933246091077352 0.3655412729340564 0.2614397072830781 0.8933246091077352 -0.3655412729340564 0.1382379130492395 0.5831724777007232 -0.800499931697805 -0.1382379130492395 -0.5831724777007232 0.800499931697805 0.1141379742883999 0.2414973802642208 0.9636656775826661 -0.1141379742883999 -0.2414973802642208 -0.9636656775826661 0.8822912321948564 0.02220810173169826 -0.4701797335164039 -0.8822912321948564 -0.02220810173169826 0.4701797335164039 0.1188138028336179 -0.2260274947932563 0.9668478948902453 -0.1188138028336179 0.2260274947932563 -0.9668478948902453 -0.8587397158175739 -0.08018506560671994 0.5060992548218168 0.8587397158175739 0.08018506560671994 -0.5060992548218168 -0.8050928716867741 0.1826331764184201 -0.5643319863612742 0.8050928716867741 -0.1826331764184201 0.5643319863612742 0.4925879284688318 0.1528216387529459 -0.8567395633771382 -0.4925879284688318 -0.1528216387529459 0.8567395633771382 -0.5097456504244465 -0.8591344984638351 -0.04524693826826742 0.5097456504244465 0.8591344984638351 0.04524693826826742 -0.503222982218811 -0.7120634997618107 -0.4896245525642766 0.503222982218811 0.7120634997618107 0.4896245525642766 0.4603466958027616 0.7788779087251324 -0.4259461503094539 -0.4603466958027616 -0.7788779087251324 0.4259461503094539 0.523479007550921 0.8515040131017884 0.03017688395200142 -0.523479007550921 -0.8515040131017884 -0.03017688395200142 0.1518593399203167 0.1545205082045166 0.9762490222392971 -0.1518593399203167 -0.1545205082045166 -0.9762490222392971 0.9986610433822905 -0.05168256758209613 -0.002243354344905463 -0.9986610433822905 0.05168256758209613 0.002243354344905463 0.1318246859017485 -0.2349796978402745 0.9630196227438976 -0.1318246859017485 0.2349796978402745 -0.9630196227438976 -0.8570320744351881 -0.04027811833018728 0.5136863795869009 0.8570320744351881 0.04027811833018728 -0.5136863795869009 -0.8020473590133231 0.2179865516430817 -0.5560592569164835 0.8020473590133231 -0.2179865516430817 0.5560592569164835 -0.4615904843755709 -0.7909897607564924 0.4015836439800712 0.4615904843755709 0.7909897607564924 -0.4015836439800712 0.252540347057417 0.5414245503907144 -0.8019244536378299 -0.252540347057417 -0.5414245503907144 0.8019244536378299 0.159799408619329 0.1228134197518831 0.979479970664924 -0.159799408619329 -0.1228134197518831 -0.979479970664924 0.4353324721431299 0.3341380181837748 -0.8359649654752106 -0.4353324721431299 -0.3341380181837748 0.8359649654752106 0.8085299571629004 0.3823119055224868 -0.4473442916433872 -0.8085299571629004 -0.3823119055224868 0.4473442916433872 0.1551669196552751 -0.1168490823491705 0.9809533724896663 -0.1551669196552751 0.1168490823491705 -0.9809533724896663 -0.7805585710254122 -0.4068311902331807 0.4745700157534397 0.7805585710254122 0.4068311902331807 -0.4745700157534397 -0.9244908752825142 -0.378565349547113 -0.04477608336649194 0.9244908752825142 0.378565349547113 0.04477608336649194 -0.7502012696929717 -0.6593563627663559 -0.04946960511844244 0.7502012696929717 0.6593563627663559 0.04946960511844244 -0.6978467183232735 -0.4623279303828837 -0.5470492139774237 0.6978467183232735 0.4623279303828837 0.5470492139774237 0.6649029264142448 0.6072315801009957 -0.4349412679590449 -0.6649029264142448 -0.6072315801009957 0.4349412679590449 0.7604816846369817 0.6489597204662113 0.02277912518327709 -0.7604816846369817 -0.6489597204662113 -0.02277912518327709 0.1719340237016065 0.01941018364806291 0.9849172230520308 -0.1719340237016065 -0.01941018364806291 -0.9849172230520308 -0.8040886315762558 -0.1784821301950049 -0.5670851803484884 0.8040886315762558 0.1784821301950049 0.5670851803484884 0.924659177562477 0.3805625196872114 0.0133256879298732 -0.924659177562477 -0.3805625196872114 -0.0133256879298732 0.1673583694593457 -0.0987386897261418 0.9809392679075876 -0.1673583694593457 0.0987386897261418 -0.9809392679075876 -0.6515862186990911 -0.6172149427356434 0.4410001293256686 0.6515862186990911 0.6172149427356434 -0.4410001293256686 0.3609413422632294 0.4492442334622321 -0.8172520823749242 -0.3609413422632294 -0.4492442334622321 0.8172520823749242 0.1680743216177683 -0.01327794334903362 0.985684898247481 -0.1680743216177683 0.01327794334903362 -0.985684898247481 -0.7077286307855312 -0.7046579404075305 -0.05076782629829895 0.7077286307855312 0.7046579404075305 0.05076782629829895 0.3422907321088052 0.470188875101221 -0.8134860026106574 -0.3422907321088052 -0.470188875101221 0.8134860026106574 0.6285452392550731 0.6463254866285363 -0.4326595053204869 -0.6285452392550731 -0.6463254866285363 0.4326595053204869 0.1684837607857226 0.01078912850309114 0.9856453809852929 -0.1684837607857226 -0.01078912850309114 -0.9856453809852929 -0.6208951602753291 -0.6569286372870615 0.4277078038320531 0.6208951602753291 0.6569286372870615 -0.4277078038320531 -0.8016874851195304 -0.3476970057459101 0.4862139121806895 0.8016874851195304 0.3476970057459101 -0.4862139121806895 -0.8149220097351028 -0.1080548625133485 -0.5694086974542294 0.8149220097351028 0.1080548625133485 0.5694086974542294 0.8324394161889932 0.3218611754601607 -0.4510543227886545 -0.8324394161889932 -0.3218611754601607 0.4510543227886545 0.9513198774933672 0.3080369782319619 0.01018384641117496 -0.9513198774933672 -0.3080369782319619 -0.01018384641117496 0.1634203117995998 -0.1247450298277524 0.978638073663903 -0.1634203117995998 0.1247450298277524 -0.978638073663903 -0.6678589248046758 -0.5214726726196702 -0.5310656346155726 0.6678589248046758 0.5214726726196702 0.5310656346155726 0.7182567574893013 0.6953383336702373 0.02473523902558684 -0.7182567574893013 -0.6953383336702373 -0.02473523902558684 0.1693848817853877 0.04483553595062854 0.9845296016568371 -0.1693848817853877 -0.04483553595062854 -0.9845296016568371 -0.8048692487349177 -0.3506423330122185 0.4787853869330574 0.8048692487349177 0.3506423330122185 -0.4787853869330574 -0.8033529047000452 -0.1701599897853734 -0.570674765857263 0.8033529047000452 0.1701599897853734 0.570674765857263 0.449268697821028 0.3040839242511426 -0.8400539293225307 -0.449268697821028 -0.3040839242511426 0.8400539293225307 0.1500216654325103 -0.1381913113327511 0.9789773548826299 -0.1500216654325103 0.1381913113327511 -0.9789773548826299 -0.4259537348114598 -0.8178821815051697 0.3868231546540531 0.4259537348114598 0.8178821815051697 -0.3868231546540531 -0.4675392286166295 -0.8827060022405983 -0.04729887221687068 0.4675392286166295 0.8827060022405983 0.04729887221687068 0.2320365704896954 0.552483805839267 -0.8005752146055608 -0.2320365704896954 -0.552483805839267 0.8005752146055608 0.4235426764458111 0.8000651237203419 -0.4248616233969279 -0.4235426764458111 -0.8000651237203419 0.4248616233969279 0.1520251206832657 0.143591229580553 0.9778905467734022 -0.1520251206832657 -0.143591229580553 -0.9778905467734022 -0.8563034731243645 0.03075851077944254 0.5155562781402063 0.8563034731243645 -0.03075851077944254 -0.5155562781402063 -0.7854559790425402 0.2863556715033529 -0.5486887408943149 0.7854559790425402 -0.2863556715033529 0.5486887408943149 0.8789201616178662 -0.04563262027587983 -0.4747810163310886 -0.8789201616178662 0.04563262027587983 0.4747810163310886 0.9909649981647042 -0.1339921094394375 -0.005872565061178528 -0.9909649981647042 0.1339921094394375 0.005872565061178528 0.1214868915248658 -0.2566112218047661 0.9588491101479369 -0.1214868915248658 0.2566112218047661 -0.9588491101479369 0.1424597144731626 0.1742609283264101 0.9743399604917387 -0.1424597144731626 -0.1742609283264101 -0.9743399604917387 -0.4649654691684617 -0.7434500776185029 -0.4807172709295918 0.4649654691684617 0.7434500776185029 0.4807172709295918 0.4806825705190683 0.8763220630772676 0.0316845098302365 -0.4806825705190683 -0.8763220630772676 -0.0316845098302365 -0.860794945204459 -0.01643115646217469 0.5086866220058945 0.860794945204459 0.01643115646217469 -0.5086866220058945 -0.7900784413486761 0.2562479078863671 -0.5568779634892249 0.7900784413486761 -0.2562479078863671 0.5568779634892249 0.4980078568234466 0.1169113175851559 -0.859255444185616 -0.4980078568234466 -0.1169113175851559 0.859255444185616 0.1096901023717531 -0.2434510788927682 0.9636906420774363 -0.1096901023717531 0.2434510788927682 -0.9636906420774363 0.1039596989266152 0.2597350418756318 0.9600677523075918 -0.1039596989266152 -0.2597350418756318 -0.9600677523075918 -0.2255086311498324 -0.9042076887875177 0.3627041670762336 0.2255086311498324 0.9042076887875177 -0.3627041670762336 -0.246296801946135 -0.9683103284272793 -0.04138832217136909 0.246296801946135 0.9683103284272793 0.04138832217136909 0.1177179104608849 0.5854651574134203 -0.8021053814877456 -0.1177179104608849 -0.5854651574134203 0.8021053814877456 0.224575277624369 0.8769413923042921 -0.4248996812699999 -0.224575277624369 -0.8769413923042921 0.4248996812699999 -0.818183918190957 0.5749003086151485 0.00804432519857671 0.818183918190957 -0.5749003086151485 -0.00804432519857671 -0.6305737591105755 0.6022648379504871 -0.4895444814208733 0.6305737591105755 -0.6022648379504871 0.4895444814208733 0.4949605839858888 -0.03892198721152086 -0.8680432588367092 -0.4949605839858888 0.03892198721152086 0.8680432588367092 0.8451270122946203 -0.5341853035835791 -0.02015922928309364 -0.8451270122946203 0.5341853035835791 0.02015922928309364 0.05385948697774293 -0.3554499664399606 0.9331422597976823 -0.05385948697774293 0.3554499664399606 -0.9331422597976823 0.2549244586738081 0.9663161203320346 0.03530829868898371 -0.2549244586738081 -0.9663161203320346 -0.03530829868898371 0.09423102464293508 0.2772583329710544 0.9561633389713573 -0.09423102464293508 -0.2772583329710544 -0.9561633389713573 -0.2549214545164238 -0.8600324943657328 -0.4419945256021691 0.2549214545164238 0.8600324943657328 0.4419945256021691 -0.79929641435108 0.3271493463141986 0.5040818854230917 0.79929641435108 -0.3271493463141986 -0.5040818854230917 0.4948857423588071 -0.08216582485000451 -0.865064667661725 -0.4948857423588071 0.08216582485000451 0.865064667661725 0.8144148990748201 -0.5798756477366595 -0.02173948773407881 -0.8144148990748201 0.5798756477366595 0.02173948773407881 0.0528667042807186 -0.3265261401177359 0.9437085309555636 -0.0528667042807186 0.3265261401177359 -0.9437085309555636 0.03142215486202268 0.8992909717703551 -0.4362205821326607 -0.03142215486202268 -0.8992909717703551 0.4362205821326607 0.03222413175603969 0.3414413676946292 0.9393505191138132 -0.03222413175603969 -0.3414413676946292 -0.9393505191138132 -0.0259253419318946 -0.9334636059792216 0.3577339415794692 0.0259253419318946 0.9334636059792216 -0.3577339415794692 -0.04049074313123702 -0.9985674125448957 -0.03498031337870574 0.04049074313123702 0.9985674125448957 0.03498031337870574 0.005328438180618537 0.5750615350973014 -0.8180928056144308 -0.005328438180618537 -0.5750615350973014 0.8180928056144308 -0.5748760152395741 0.8178890218602926 0.02398155588536437 0.5748760152395741 -0.8178890218602926 -0.02398155588536437 -0.4214825828834756 0.8001683134769219 -0.4267119665926568 0.4214825828834756 -0.8001683134769219 0.4267119665926568 0.6074881385080706 -0.6169848063479048 -0.5002878274631893 -0.6074881385080706 0.6169848063479048 0.5002878274631893 0.6082732213363905 -0.7931810654764039 -0.02945310806633874 -0.6082732213363905 0.7931810654764039 0.02945310806633874 -0.02736669832298045 -0.4111055921847794 0.9111768521518208 0.02736669832298045 0.4111055921847794 -0.9111768521518208 0.04235616326970938 0.9984366610053214 0.03647176159187728 -0.04235616326970938 -0.9984366610053214 -0.03647176159187728 0.03221986909040234 0.3506818629235959 0.9359402283544785 -0.03221986909040234 -0.3506818629235959 -0.9359402283544785 -0.05361409784407056 -0.9050905554847667 -0.4218253369401169 0.05361409784407056 0.9050905554847667 0.4218253369401169 -0.6412286961935133 0.6027935398456574 0.4748322940768762 0.6412286961935133 -0.6027935398456574 -0.4748322940768762 0.4462050229884594 -0.2575089267645674 -0.8570823939951334 -0.4462050229884594 0.2575089267645674 0.8570823939951334 -0.01851769985004047 -0.3828132866255579 0.9236401260096934 0.01851769985004047 0.3828132866255579 -0.9236401260096934 -0.1011209062275383 0.5194295024157583 -0.8485090184222199 0.1011209062275383 -0.5194295024157583 0.8485090184222199 -0.1630204955034008 0.8718140737365698 -0.4619139951123722 0.1630204955034008 -0.8718140737365698 0.4619139951123722 -0.05106644626099506 0.3803957682493656 0.9234128424297812 0.05106644626099506 -0.3803957682493656 -0.9234128424297812 0.1789455253017296 -0.9095149566493147 0.3751813462922742 -0.1789455253017296 0.9095149566493147 -0.3751813462922742 0.1644492067246966 -0.9860474719446343 -0.0258232739832422 -0.1644492067246966 0.9860474719446343 0.0258232739832422 -0.3394842626918352 0.9401205712295527 0.03039320541832133 0.3394842626918352 -0.9401205712295527 -0.03039320541832133 -0.2080610788881689 0.9007191526710595 -0.3813339684101321 0.2080610788881689 -0.9007191526710595 0.3813339684101321 0.4170581372161195 -0.7630871662746496 -0.4937210617836206 -0.4170581372161195 0.7630871662746496 0.4937210617836206 0.3671848022390897 -0.9296812715626696 -0.02946276141604014 -0.3671848022390897 0.9296812715626696 0.02946276141604014 -0.1118508727425593 -0.4246135752306774 0.8984390318750346 0.1118508727425593 0.4246135752306774 -0.8984390318750346 0.1429673890552561 -0.8969759915124038 -0.4183233155312562 -0.1429673890552561 0.8969759915124038 0.4183233155312562 -0.1697402903512333 0.9848294799586392 0.03604343540612129 0.1697402903512333 -0.9848294799586392 -0.03604343540612129 -0.04029823831595079 0.3929010957394276 0.9186973282618099 0.04029823831595079 -0.3929010957394276 -0.9186973282618099 -0.4425321364225157 0.7807076339415388 0.4412039194507776 0.4425321364225157 -0.7807076339415388 -0.4412039194507776 0.3615564551111211 -0.3924871464468883 -0.8457131722052452 -0.3615564551111211 0.3924871464468883 0.8457131722052452 -0.1004051002551915 -0.4059873809262091 0.9083463339340465 0.1004051002551915 0.4059873809262091 -0.9083463339340465 0.3904353888787023 -0.9205132079270056 -0.01468472482104409 -0.3904353888787023 0.9205132079270056 0.01468472482104409 -0.2028401600381923 0.4137734346108561 -0.8874950221190066 0.2028401600381923 -0.4137734346108561 0.8874950221190066 -0.3965987545441102 0.9173867728006537 0.03333072133126812 0.3965987545441102 -0.9173867728006537 -0.03333072133126812 -0.1368126594116787 0.3783825735749009 0.9154828912871822 0.1368126594116787 -0.3783825735749009 -0.9154828912871822 0.4037445049495944 -0.8137278701143873 0.4181355379803415 -0.4037445049495944 0.8137278701143873 -0.4181355379803415 -0.2130405425149827 0.9762377946652087 -0.03966731037178552 0.2130405425149827 -0.9762377946652087 0.03966731037178552 -0.1081798850903938 0.9240271948778918 -0.3667026800937292 0.1081798850903938 -0.9240271948778918 0.3667026800937292 0.3281513256345706 -0.7677627424058544 -0.5503245214032494 -0.3281513256345706 0.7677627424058544 0.5503245214032494 0.2328257703503543 -0.9718983197261724 -0.03472487255854357 -0.2328257703503543 0.9718983197261724 0.03472487255854357 -0.1473936565412861 -0.3971635326227748 0.9058345535283955 0.1473936565412861 0.3971635326227748 -0.9058345535283955 0.3468945964669057 -0.8319723515337044 -0.4329967034811476 -0.3468945964669057 0.8319723515337044 0.4329967034811476 -0.2234283793547914 0.3810349301579313 -0.8971578129283787 0.2234283793547914 -0.3810349301579313 0.8971578129283787 -0.4038454249517289 0.9142215620686088 0.03328375270894747 0.4038454249517289 -0.9142215620686088 -0.03328375270894747 -0.122338880712954 0.4011767131602135 0.9077942735465285 0.122338880712954 -0.4011767131602135 -0.9077942735465285 -0.3151385434377004 0.8509345145216276 0.4202358271682778 0.3151385434377004 -0.8509345145216276 -0.4202358271682778 0.3362915756879585 -0.4605074486483383 -0.8214869845960483 -0.3362915756879585 0.4605074486483383 0.8214869845960483 -0.1477861161468464 -0.3879190814924926 0.9097681298486179 0.1477861161468464 0.3879190814924926 -0.9097681298486179 0.642036301964842 -0.5915223220510135 0.4877404324788823 -0.642036301964842 0.5915223220510135 -0.4877404324788823 0.6565729720855437 -0.7542611534141503 0.001429957031396675 -0.6565729720855437 0.7542611534141503 -0.001429957031396675 -0.2873913339372501 0.2414284916307782 -0.9268864572355426 0.2873913339372501 -0.2414284916307782 0.9268864572355426 -0.6582465513805748 0.7522761974698212 0.02814250017192915 0.6582465513805748 -0.7522761974698212 -0.02814250017192915 -0.2200850377465403 0.3382910481576543 0.9149435736134222 0.2200850377465403 -0.3382910481576543 -0.9149435736134222 -0.2116315698671361 0.368248547592389 0.9053204326820795 0.2116315698671361 -0.368248547592389 -0.9053204326820795 0.5633653855986063 -0.6828540426268416 -0.4651126732067326 -0.5633653855986063 0.6828540426268416 0.4651126732067326 -0.2983463149186184 0.191197653796943 -0.935111187804437 0.2983463149186184 -0.191197653796943 0.935111187804437 -0.6749209437416259 0.737369483269181 0.02771217859090166 0.6749209437416259 -0.737369483269181 -0.02771217859090166 -0.2877910840981094 0.2723055930267614 0.9181644492790924 0.2877910840981094 -0.2723055930267614 -0.9181644492790924 0.7965472595788976 -0.253297272604866 0.5489562413783857 -0.7965472595788976 0.253297272604866 -0.5489562413783857 0.8952079640211859 -0.4452204858064359 0.01952998134470383 -0.8952079640211859 0.4452204858064359 -0.01952998134470383 -0.3232893198518779 0.02813167905717699 -0.9458819293670507 0.3232893198518779 -0.02813167905717699 0.9458819293670507 -0.8886272139272777 0.4582966637581069 0.01748835772829509 0.8886272139272777 -0.4582966637581069 -0.01748835772829509 -0.9067641930740167 0.4213005352784029 0.01686882132688834 0.9067641930740167 -0.4213005352784029 -0.01686882132688834 -0.2922750546849938 0.2931621069745766 0.9102918605826984 0.2922750546849938 -0.2931621069745766 -0.9102918605826984 0.7419994697737539 -0.4512518930279872 -0.4957907985170013 -0.7419994697737539 0.4512518930279872 0.4957907985170013 -0.3148742535731208 -0.004869283983756693 -0.9491209061601453 0.3148742535731208 0.004869283983756693 0.9491209061601453 -0.9986404382995738 0.05205556031263065 0.002737450159036555 0.9986404382995738 -0.05205556031263065 -0.002737450159036555 -0.3381879490069393 0.1884767588034562 0.9220116173549136 0.3381879490069393 -0.1884767588034562 -0.9220116173549136 0.8102172987549845 0.138570612457417 0.5695139279783705 -0.8102172987549845 -0.138570612457417 -0.5695139279783705 0.8502888027754763 -0.102763249480544 -0.5161866585169038 -0.8502888027754763 0.102763249480544 0.5161866585169038 -0.3038909547366041 -0.182050698823732 -0.9351512341258317 0.3038909547366041 0.182050698823732 0.9351512341258317 -0.2902066635529607 -0.1816590542969931 -0.939563771343585 0.2902066635529607 0.1816590542969931 0.939563771343585 -0.999813477153811 -0.01931205510930637 0.0002354337719400635 0.999813477153811 0.01931205510930637 -0.0002354337719400635 -0.3505880388990245 0.1891080781604483 0.9172383342160302 0.3505880388990245 -0.1891080781604483 -0.9172383342160302 0.8136186072749757 0.08552528389165728 0.5750740714996462 -0.8136186072749757 -0.08552528389165728 -0.5750740714996462 0.8477488936218549 -0.1456593881118026 -0.5100050548943768 -0.8477488936218549 0.1456593881118026 0.5100050548943768 -0.2332730477494691 -0.3605164174014107 -0.9031121735298034 0.2332730477494691 0.3605164174014107 0.9031121735298034 -0.9227606700250345 -0.3850225608303484 -0.01644303824084896 0.9227606700250345 0.3850225608303484 0.01644303824084896 -0.3710855398209218 0.08356562277686359 0.9248309622983706 0.3710855398209218 -0.08356562277686359 -0.9248309622983706 0.6915941643211421 0.4814387597695081 0.5384368416709047 -0.6915941643211421 -0.4814387597695081 -0.5384368416709047 0.8981451913718017 0.4388467863422945 0.02736262656891868 -0.8981451913718017 -0.4388467863422945 -0.02736262656891868 0.8429373844420663 0.2038831752479156 -0.4978837381967761 -0.8429373844420663 -0.2038831752479156 0.4978837381967761 -0.2290209345500243 -0.3335906107424467 -0.9144761975919957 0.2290209345500243 0.3335906107424467 0.9144761975919957 -0.892787122367921 -0.4501117183451386 -0.01818227550097881 0.892787122367921 0.4501117183451386 0.01818227550097881 -0.3806471395931579 0.05863070036734207 0.9228597922187215 0.3806471395931579 -0.05863070036734207 -0.9228597922187215 0.6731421049907004 0.7390076570403116 0.02733842212853642 -0.6731421049907004 -0.7390076570403116 -0.02733842212853642 -0.1328818881006347 -0.4812003013776529 -0.8664806251549232 0.1328818881006347 0.4812003013776529 0.8664806251549232 -0.5162201884059053 -0.6859853388317428 -0.5127775658022399 0.5162201884059053 0.6859853388317428 0.5127775658022399 -0.3820804274125651 -0.03799906150363985 0.92334750679962 0.3820804274125651 0.03799906150363985 -0.92334750679962 0.4982106593253596 0.7158749775839003 0.4891923501076451 -0.4982106593253596 -0.7158749775839003 -0.4891923501076451 0.7240704694464025 0.5172326219432335 -0.456281020943666 -0.7240704694464025 -0.5172326219432335 0.456281020943666 -0.6700361228712017 -0.7418412287615767 -0.02689210585362026 0.6700361228712017 0.7418412287615767 0.02689210585362026 -0.3799116356427942 -0.07528213549441858 0.921954309702285 0.3799116356427942 0.07528213549441858 -0.921954309702285 0.2919879555706406 0.8457029878555783 0.4466872397257671 -0.2919879555706406 -0.8457029878555783 -0.4466872397257671 0.4366746038435569 0.8991604423174815 0.02873655041064687 -0.4366746038435569 -0.8991604423174815 -0.02873655041064687 -0.02181407774595281 -0.5442229250816213 -0.838656994144625 0.02181407774595281 0.5442229250816213 0.838656994144625 -0.2991359507547488 -0.8171395266061116 -0.492748086778622 0.2991359507547488 0.8171395266061116 0.492748086778622 -0.3640461567431337 -0.1638571415455993 0.9168539866985687 0.3640461567431337 0.1638571415455993 -0.9168539866985687 -0.3516769144494107 -0.1959843911759476 0.9153761337607262 0.3516769144494107 0.1959843911759476 -0.9153761337607262 0.5385155662651773 0.7372771912468562 -0.4079501540105633 -0.5385155662651773 -0.7372771912468562 0.4079501540105633 -0.4313320674869082 -0.9015906437027481 -0.03296905738921509 0.4313320674869082 0.9015906437027481 0.03296905738921509 -0.3161376728583065 -0.2763059264210083 0.9075858123749857 0.3161376728583065 0.2763059264210083 -0.9075858123749857 0.09040000099123229 0.9018629294589402 0.4224583959261835 -0.09040000099123229 -0.9018629294589402 -0.4224583959261835 0.2181949882099804 0.9753917837111359 0.03165146740445621 -0.2181949882099804 -0.9753917837111359 -0.03165146740445621 0.08965774420950276 -0.5583695936821822 -0.8247332209596372 -0.08965774420950276 0.5583695936821822 0.8247332209596372 -0.09610053397935414 -0.8715175067638015 -0.4808554073451709 0.09610053397935414 0.8715175067638015 0.4808554073451709 -0.2086475547426834 -0.97733379468257 -0.0358448276780246 0.2086475547426834 0.97733379468257 0.0358448276780246 -0.3037553178911301 -0.2967919290395361 0.9053437235160189 0.3037553178911301 0.2967919290395361 -0.9053437235160189 0.3354278871728308 0.8652296633188016 -0.372646967276005 -0.3354278871728308 -0.8652296633188016 0.372646967276005 0.09633384992223543 -0.8730059074944812 -0.4781009044531264 -0.09633384992223543 0.8730059074944812 0.4781009044531264 -0.2454762232693019 -0.3778735606343362 0.8927222389875635 0.2454762232693019 0.3778735606343362 -0.8927222389875635 -0.1068794703126247 0.9026211842571167 0.4169553651842997 0.1068794703126247 -0.9026211842571167 -0.4169553651842997 0.01343256556453883 0.9993622853949731 0.03308456909936523 -0.01343256556453883 -0.9993622853949731 -0.03308456909936523 0.1974099225344546 -0.5322015896758886 -0.8232805053148031 -0.1974099225344546 0.5322015896758886 0.8232805053148031 0.003001611511603842 -0.9993164585643894 -0.03684570491468954 -0.003001611511603842 0.9993164585643894 0.03684570491468954 -0.2411038193416134 -0.3871649112769986 0.8899282441718323 0.2411038193416134 0.3871649112769986 -0.8899282441718323 0.1343421246173835 0.9239034350956201 -0.3582661527018712 -0.1343421246173835 -0.9239034350956201 0.3582661527018712 0.2993706784681616 -0.4646143507834411 -0.8333730868702169 -0.2993706784681616 0.4646143507834411 0.8333730868702169 0.2850107885662926 -0.824994532191174 -0.4880090903410367 -0.2850107885662926 0.824994532191174 0.4880090903410367 -0.1571345039047647 -0.4017198641372894 0.902180635150257 0.1571345039047647 0.4017198641372894 -0.902180635150257 -0.3048806322925207 0.8512454486647582 0.4271170637898318 0.3048806322925207 -0.8512454486647582 -0.4271170637898318 -0.1916792900952346 0.9809089376497736 0.03281319532413365 0.1916792900952346 -0.9809089376497736 -0.03281319532413365 -0.06725397877958619 0.9289520816679044 -0.3640397400053766 0.06725397877958619 -0.9289520816679044 0.3640397400053766 0.214093725390382 -0.976059223129979 -0.03837016668415395 -0.214093725390382 0.976059223129979 0.03837016668415395 -0.1633846812171462 -0.4106968979510492 0.8970136587348917 0.1633846812171462 0.4106968979510492 -0.8970136587348917 -0.4114894635731415 0.910944516026596 0.02926619362607543 0.4114894635731415 -0.910944516026596 -0.02926619362607543 0.3926959050834945 -0.3586157917358537 -0.8468675457521808 -0.3926959050834945 0.3586157917358537 0.8468675457521808 0.4758502576596353 -0.7262053017002771 -0.4961777827227537 -0.4758502576596353 0.7262053017002771 0.4961777827227537 -0.07399356110308394 -0.4019361170684739 0.9126731675201163 0.07399356110308394 0.4019361170684739 -0.9126731675201163 -0.5074302324216592 0.7336431167333045 0.4519760353097758 0.5074302324216592 -0.7336431167333045 -0.4519760353097758 -0.2747903286848682 0.8774196655492494 -0.3932238621557767 0.2747903286848682 -0.8774196655492494 0.3932238621557767 0.4416526661926221 -0.8965544611827641 -0.03366037103526774 -0.4416526661926221 0.8965544611827641 0.03366037103526774 -0.08545569125862905 -0.4237162742578753 0.9017548689974093 0.08545569125862905 0.4237162742578753 -0.9017548689974093 -0.6983978619991993 0.5260909548807602 0.4852512066420825 0.6983978619991993 -0.5260909548807602 -0.4852512066420825 -0.6529432889600653 0.7571478064822202 0.01980556843857087 0.6529432889600653 -0.7571478064822202 -0.01980556843857087 0.465149621916081 -0.2078553546390002 -0.8604835737997689 -0.465149621916081 0.2078553546390002 0.8604835737997689 0.6654155175131032 -0.5535483740833016 -0.5008057373897605 -0.6654155175131032 0.5535483740833016 0.5008057373897605 0.005418881696632692 -0.3680761368893017 0.929779862749138 -0.005418881696632692 0.3680761368893017 -0.929779862749138 -0.000848534349117857 -0.3982057122200044 0.9172957487881525 0.000848534349117857 0.3982057122200044 -0.9172957487881525 -0.4894851489717341 0.7496498620475539 -0.4454541202730113 0.4894851489717341 -0.7496498620475539 0.4454541202730113 0.686486074271473 -0.7266466935471828 -0.02685986947637853 -0.686486074271473 0.7266466935471828 0.02685986947637853 0.07257951327708044 -0.3044279122108545 0.9497662136122774 -0.07257951327708044 0.3044279122108545 -0.9497662136122774 -0.8316266309633804 0.2226829365098312 0.5087331878891489 0.8316266309633804 -0.2226829365098312 -0.5087331878891489 -0.8847452800452509 0.4660747751115573 -0.0003056834338768042 0.8847452800452509 -0.4660747751115573 0.0003056834338768042 0.5015933670654268 -0.02022844019930286 -0.8648669864916057 -0.5015933670654268 0.02022844019930286 0.8648669864916057 0.8822466459320009 -0.4704359473785972 -0.01818997404441176 -0.8822466459320009 0.4704359473785972 0.01818997404441176 0.9072991995700066 -0.4200891905185878 -0.0182547108731709 -0.9072991995700066 0.4200891905185878 0.0182547108731709 0.07681250537470345 -0.3297206400568425 0.9409485312909346 -0.07681250537470345 0.3297206400568425 -0.9409485312909346 -0.6901611701879913 0.5152597301695152 -0.5081190506469726 0.6901611701879913 -0.5152597301695152 0.5081190506469726 0.4967189319902256 0.01610794687932466 -0.8677619700412219 -0.4967189319902256 -0.01610794687932466 0.8677619700412219 0.8811371227070259 0.07681584511404151 -0.4665797862391803 -0.8811371227070259 -0.07681584511404151 0.4665797862391803 0.1213463840642501 -0.2131877828435231 0.9694462462255421 -0.1213463840642501 0.2131877828435231 -0.9694462462255421 -0.8530865173759819 -0.1294405738576815 0.5054587339345447 0.8530865173759819 0.1294405738576815 -0.5054587339345447 -0.814130490024759 0.1226249548705555 -0.5675867032049285 0.814130490024759 -0.1226249548705555 0.5675867032049285 0.488075429724192 0.1805200466478967 -0.8539290881904577 -0.488075429724192 -0.1805200466478967 0.8539290881904577 0.9999911938398497 0.003594933677936766 -0.002165339373681499 -0.9999911938398497 -0.003594933677936766 0.002165339373681499 0.134654818811377 -0.215852360007679 0.9670966024394826 -0.134654818811377 0.215852360007679 -0.9670966024394826 -0.8525443020408295 -0.09186364878118959 0.514518496353942 0.8525443020408295 0.09186364878118959 -0.514518496353942 -0.8136384103311264 0.1551976982215682 -0.5602733365961338 0.8136384103311264 -0.1551976982215682 0.5602733365961338 0.42419264210225 0.356669434057175 -0.8323746255116424 -0.42419264210225 -0.356669434057175 0.8323746255116424 0.788540225669898 0.4252466762652501 -0.4442629590972266 -0.788540225669898 -0.4252466762652501 0.4442629590972266 0.1578903340186837 -0.1001732663627726 0.9823624377640269 -0.1578903340186837 0.1001732663627726 -0.9823624377640269 -0.7547544002130159 -0.4464111011651991 0.4806900499444158 0.7547544002130159 0.4464111011651991 -0.4806900499444158 -0.9002546744465021 -0.4324153514752223 -0.05058146840279224 0.9002546744465021 0.4324153514752223 0.05058146840279224 -0.7844078875843706 -0.2203888260673079 -0.5797698088380414 0.7844078875843706 0.2203888260673079 0.5797698088380414 0.9025619957841596 0.4302941233611072 0.01512650544609188 -0.9025619957841596 -0.4302941233611072 -0.01512650544609188 0.1694587852265324 -0.07902581395908963 0.9823638026910659 -0.1694587852265324 0.07902581395908963 -0.9823638026910659 -0.6777997339671049 -0.7334386989157637 -0.05152858980093819 0.6777997339671049 0.7334386989157637 0.05152858980093819 0.3277318451777326 0.4836579036630281 -0.8115829408512009 -0.3277318451777326 -0.4836579036630281 0.8115829408512009 0.6008258209528511 0.672999545050567 -0.4313698473909166 -0.6008258209528511 -0.672999545050567 0.4313698473909166 0.1681259371286808 0.0289271124782179 0.9853410026119259 -0.1681259371286808 -0.0289271124782179 -0.9853410026119259 -0.5960772586658657 -0.6811286002642853 0.4251537740669864 0.5960772586658657 0.6811286002642853 -0.4251537740669864 -0.6424609573471923 -0.5591595895136003 -0.524008083658555 0.6424609573471923 0.5591595895136003 0.524008083658555 0.6860359439303672 0.7270974243426841 0.02615375976422767 -0.6860359439303672 -0.7270974243426841 -0.02615375976422767 0.1672445427505161 0.0635846036810455 0.9838629280010987 -0.1672445427505161 -0.0635846036810455 -0.9838629280010987 -0.3991834821708372 -0.833882662242207 0.381172209340889 0.3991834821708372 0.833882662242207 -0.381172209340889 -0.436673585657375 -0.898346711598448 -0.04784731287528865 0.436673585657375 0.898346711598448 0.04784731287528865 0.2165549899156194 0.5605315718217925 -0.799317392112568 -0.2165549899156194 -0.5605315718217925 0.799317392112568 0.3959079871099898 0.814565510187616 -0.4239574216301738 -0.3959079871099898 -0.814565510187616 0.4239574216301738 0.1469885497273995 0.1606397865739732 0.9760067751908816 -0.1469885497273995 -0.1606397865739732 -0.9760067751908816 0.1367524582859509 0.1896313168118517 0.9722853124659204 -0.1367524582859509 -0.1896313168118517 -0.9722853124659204 -0.4363659032354655 -0.7641091553127701 -0.4751020914084689 0.4363659032354655 0.7641091553127701 0.4751020914084689 0.4489091800247141 0.8929977089497613 0.03218135951162144 -0.4489091800247141 -0.8929977089497613 -0.03218135951162144 0.09538884997893314 0.2729518704836034 0.9572869181698865 -0.09538884997893314 -0.2729518704836034 -0.9572869181698865 -0.19916090518526 -0.9116402327043386 0.3595094156772078 0.19916090518526 0.9116402327043386 -0.3595094156772078 -0.2176624288130749 -0.975174444786605 -0.04071694141668609 0.2176624288130749 0.975174444786605 0.04071694141668609 0.102006332390428 0.5870283498898806 -0.8031142039447549 -0.102006332390428 -0.5870283498898806 0.8031142039447549 0.1981146465912776 0.8828648477660394 -0.4257936676197301 -0.1981146465912776 -0.8828648477660394 0.4257936676197301 0.2256876647724398 0.9735647864648768 0.03516652563392818 -0.2256876647724398 -0.9735647864648768 -0.03516652563392818 0.08666536336345972 0.2887786406560797 0.9534652649645432 -0.08666536336345972 -0.2887786406560797 -0.9534652649645432 -0.2265545473801807 -0.870396171769524 -0.4371310343939431 0.2265545473801807 0.870396171769524 0.4371310343939431 0.1010901885606562 0.8940479215265205 -0.4364161864446363 -0.1010901885606562 -0.8940479215265205 0.4364161864446363 0.06445273455075674 0.3426205379758255 0.9372603757580311 -0.06445273455075674 -0.3426205379758255 -0.9372603757580311 -0.09421883163346889 -0.9293391783437046 0.3570035060907275 0.09421883163346889 0.9293391783437046 -0.3570035060907275 -0.1141545076910417 -0.9931824478120208 -0.02360876387993668 0.1141545076910417 0.9931824478120208 0.02360876387993668 0.05547583050659001 0.5705465277503693 -0.8193894628939288 -0.05547583050659001 -0.5705465277503693 0.8193894628939288 0.1183456576553504 0.9923332101166951 0.03562450580173765 -0.1183456576553504 -0.9923332101166951 -0.03562450580173765 0.06847289401134064 0.3517521245684066 0.9335855106241335 -0.06847289401134064 -0.3517521245684066 -0.9335855106241335 -0.1174996333925605 -0.9006404150700651 -0.4183786310210343 0.1174996333925605 0.9006404150700651 0.4183786310210343</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1718\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2670\" source=\"#ID1721\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"5340\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1721\">6.58124424901909 -6.549378169441382 6.594243626844292 -6.487653200815711 6.696598292678734 -6.579371642699301 6.770497270762599 -6.368002865699669 6.896285173146524 -6.398310764394472 6.873649040572605 -6.459167001603291 1.606994190922951 -6.327084945039047 1.580681158011152 -6.386127925962971 1.460244292213868 -6.292204700666309 10.72765394165891 3.063738383867222 10.5980296473315 3.16242781111746 10.71370408282775 3.133207924124927 -14.24684181700179 2.895012572611291 -14.37836477191033 2.884348767382279 -14.27536856083076 2.948733990007817 12.02661393174706 -5.038767454721178 12.02963450011833 -4.97540399630809 12.13270788791269 -5.064109924764864 -11.43004979394074 6.476324997785461 -11.56978098256344 6.449906638664104 -11.45041031934673 6.525574610328857 1.322449705284458 -6.54656069112223 1.188396506576154 -6.512409706528434 1.202976646830431 -6.451878772249051 10.41699837302386 3.037734408533836 10.41242534415271 3.106118996484697 10.54308769399871 3.008280373024194 14.22298475920952 0.9978649944354868 14.22868687550232 1.068052757424426 14.33983745789674 0.9736936553716453 -14.41406365568179 2.799460727749057 -14.42893286841137 2.860675058135635 -14.29755694176207 2.872406949963704 -11.81071992062438 6.326362348610802 -11.81615211937594 6.384425499993632 -11.67726913981383 6.413480222718076 12.34011881459929 -4.847885141612953 12.23559589959462 -4.760235148769227 12.35218527571307 -4.785337753832025 14.29799052110548 1.032487182046824 14.40449286151205 1.008227913539467 14.4082945708094 0.9375153228838487 -8.646902383256775 8.414878901034605 -8.65225088094765 8.466496378568733 -8.496176125508582 8.508264906098283 -2.062364601803681 -5.946800285642397 -2.084487832753494 -6.005899039236392 -2.225608167016072 -5.908277090569572 5.516731967478028 3.763540693092602 5.536636150405173 3.696875695631897 5.382351354636739 3.796885859379463 -1.825387654953955 -10.97795048330495 -1.884600514269914 -10.93822896745472 -1.714330072727926 -10.92251084273801 -7.748922238916536 -9.954464435558011 -7.79840775236452 -9.906628617639578 -7.649350194663867 -9.900624786233577 -8.784310837788754 -1.241847335524194 -8.787135633251932 -1.313500902922323 -8.92930096333563 -1.268526888976237 -15.04146757417562 -1.00410718230715 -15.18224126549513 -1.000381342150911 -15.08000063047432 -0.9496539115100071 -3.469776790001123 -1.433129586011157 -3.636193457436785 -1.393887389957964 -3.467751959729123 -1.361446586633084 15.0799720754955 -1.84640187481776 15.0697697748768 -1.783649460309469 15.19088475943191 -1.865768703242847 15.14971662900356 -1.555844833387425 15.16475225651432 -1.486064374733959 15.270873582621 -1.573836679302148 0.4616561994130319 -1.476724207459918 0.2768516036628688 -1.441540775337597 0.4630186390810243 -1.405042945112993 -8.005742696899761 8.488515723223257 -8.163621323410542 8.451177554591169 -8.026435765616917 8.530730759872318 -2.293388194544666 -6.138822691979789 -2.4430430920236 -6.101480803180111 -2.433742599554219 -6.04051978575417 5.436284076851978 3.627690075505538 5.289345258562495 3.661908654056093 5.281609980481847 3.727327415661591 -1.664012047294929 -11.17724007252425 -1.538691796081832 -11.11373410611447 -1.494020587394178 -11.15975280909925 -7.708903503541491 -10.06819690293984 -7.596851553771961 -10.00757019272877 -7.559897686881227 -10.06144487523813 -13.80394136830569 -5.347095812217072 -13.67982728250908 -5.297709492546378 -13.66934678039212 -5.358830088359242 -8.934277323360174 -1.278181379060464 -8.792112442899484 -1.323156272549668 -8.937274536217549 -1.349834940823649 -3.469575642851401 -1.432604703644461 -3.637981170684591 -1.465033502026184 -3.635992330231767 -1.393362559933586 -15.04443401340557 -0.9267530124473642 -15.16167715503678 -0.9830096314666004 -15.18518939721181 -0.9226212489814935 0.4667585127219454 -1.460205219356446 0.2806529150071002 -1.496716884230763 0.2819533936378837 -1.425023488397573 15.22694423527607 -1.729820926995538 15.10474829618992 -1.648698741421962 15.22579592759738 -1.667368909268757 15.14836910280534 -1.561230425407777 15.25950455965932 -1.579790115350655 15.25381816116621 -1.649502713802673 -13.70905781169531 -5.465424093013168 -13.57427659965371 -5.475747981522576 -13.68326120159224 -5.521105616346749 3.976310155088747 -1.452420991870312 3.778059476329116 -1.491331965888099 3.778677872700642 -1.419644341839172 -4.915032547644466 9.695300561137652 -4.924158167699285 9.739972307822898 -4.749506986196691 9.789484780731707 -5.450190950101695 -5.452943705251995 -5.466428704797508 -5.512998744586117 -5.62393289877766 -5.412722460397985 1.609465487717938 3.643233308884622 1.625747823712465 3.578792809037639 1.459434081530487 3.679628221354763 2.75177342842676 -10.41501700380149 2.694025937217583 -10.37911533282872 2.886418593863451 -10.35745692824499 -13.56823117634963 -1.117856398906911 -13.43696541817042 -1.168642013176132 -13.57034484446136 -1.189529781926131 -15.31837195499966 -1.126824963332342 -15.18370245135952 -1.183496829452818 -15.32148137519616 -1.198474617651945 -13.43873416972657 -1.105383114401142 -13.44221737402736 -1.177023074673115 -13.57348303464848 -1.126237304357183 2.932885576596509 -10.62556022685836 3.084567787784672 -10.55949770269626 3.124876194543661 -10.60179637146776 -14.27406457440445 -4.188326973727107 -14.23026255961007 -4.241256592905594 -14.3880974431638 -4.225327928343009 6.08159715729758 -9.679589720518795 6.252366066188061 -9.610885962106238 6.281737120175908 -9.653513684822444 14.56990814590382 0.8906379004746501 14.55073954364409 0.9512488337379985 14.69513799916541 0.8771124759701474 13.98836616840125 -3.485795048415157 13.85180981249663 -3.473507760986333 13.87220671244561 -3.405519550538257 -15.09360847281752 1.551480369610484 -15.11229511495358 1.494068204026374 -15.24448506369222 1.522759909581195 8.863141725241569 -8.491093070519487 9.046607585061743 -8.420335876271338 9.063187285970249 -8.465440283949684 3.981652961166122 -1.432534168465369 3.784020116171064 -1.399759617830593 3.982227057989166 -1.360845740458799 -4.243778827518175 9.645692936740909 -4.4203482338053 9.600586872049473 -4.271108337050094 9.681303096710458 -5.567571219398818 -5.577113581380363 -5.726965491124796 -5.538029632220386 -5.724687919201744 -5.476461811269927 1.479190914587885 3.450728201263897 1.315723022024065 3.488181673922985 1.3123895722882 3.551063954407052 -15.18164621719179 -1.112031694332554 -15.183579319497 -1.183708231834246 -15.31825082028332 -1.127039302738265 -14.11644171506379 -1.247840634544451 -14.11882086935693 -1.319507596013285 -14.27127552772448 -1.257445807823585 5.944838963904796 -9.535317829142093 5.896110707495713 -9.498913914865723 6.096612970452268 -9.474621268043999 -14.29865728184889 -4.131559341464129 -14.4274629530263 -4.170368937371987 -14.45623700581568 -4.114137297605507 8.741952678615132 -8.388900269106708 8.704432924425426 -8.35043200610763 8.904819006823733 -8.326480335575504 14.62575748289741 0.8840605137219411 14.48069581852796 0.957391260480141 14.61719612716233 0.9449103110481921 13.93823792192693 -3.50098340353423 13.92868917508662 -3.568394517846725 13.81296019620182 -3.487735170872187 -15.3191072571964 1.089747013738183 -15.18589532225082 1.064147005589764 -15.31828670712011 1.03509219622925 -14.27071625492155 -1.256628862637208 -14.11826140441306 -1.318690358735289 -14.27301155136194 -1.328294431454065 11.2748086613165 -6.962727785305382 11.24900669104789 -6.920389516202464 11.4386430382845 -6.899072111910923 7.079122381810587 -1.366778858084151 6.879283177793899 -1.406303553365385 6.879174206126704 -1.33461375405915 -1.639350098864578 10.24402048753645 -1.659126075293471 10.28259867174746 -1.471834731367073 10.33842240011433 -8.350193722834836 -4.901656702223142 -8.358945052014157 -4.962864643339828 -8.525359415136965 -4.860766572695539 -2.069176509537213 3.326242371998825 -2.059087024761563 3.263807920087086 -2.228970941949152 3.364301695159172 -12.80801298485597 -6.5162044115534 -12.96023646348285 -6.540458830759638 -12.98586871517872 -6.488806855079433 -12.66637355289365 -6.577066818475374 -12.6216360985754 -6.62642051388846 -12.8001472564576 -6.601801802600653 -2.162817219157649 3.161640623475467 -2.336942990057161 3.200987032149872 -2.333023790622471 3.261795962852635 12.39182426109625 2.18561983376668 12.24944285353749 2.19473994396073 12.2292020449856 2.25385443097011 11.75074928358597 -4.598198705337238 11.59566929682486 -4.590326721935167 11.61580633313306 -4.524374147181312 -12.63507355126722 5.894212969916898 -12.66393998906888 5.844494759227446 -12.81020461308719 5.881331443860742 -11.82125205815746 -1.459694082136635 -11.99549709293202 -1.393311873126869 -11.81977059956834 -1.388015243731605 -5.382493030321145 2.890923063486692 -5.558077907378632 2.930721040901064 -5.54565632136752 2.989887599332794 11.55202166175043 -6.97032458325745 11.36265161727129 -6.993059841607922 11.54729574696372 -6.921103971484012 7.075826539499448 -1.379446987442179 6.875878736080901 -1.347280451372693 7.075723304966597 -1.307757750129594 -1.021186987362716 10.00367962972549 -0.8694177686235403 10.08371475068434 -0.8313202435885412 10.05383124676085 -8.467908202763617 -5.025225452961317 -8.628568156351067 -4.985666143780119 -8.633850798947336 -4.922653294167339 -10.63473570750967 -8.396450360756997 -10.59555666323037 -8.442543639426111 -10.78870460040299 -8.412389414882506 -5.264650239876106 3.074501562281626 -5.26295113539274 3.013629195775665 -5.425733287039561 3.112981391539079 12.29289584040521 2.167725345527938 12.30089699380007 2.107827564862799 12.13791688367612 2.175531668263347 11.68650379418733 -4.62218848841794 11.67877838708494 -4.687202969135057 11.54412396994733 -4.613053094229081 -13.08120175598883 5.416493678003377 -12.933679223902 5.382904350925389 -13.08779377845514 5.367197755794929 -11.82027526121955 -1.458146084418443 -11.99604071254451 -1.46345417311277 -11.99452056129688 -1.391764306365459 -10.89760927187156 -8.376099391171923 -11.07263611306153 -8.38951289220214 -11.08975241430197 -8.342204616685828 -8.247975251303757 2.83781775819075 -8.254873181608906 2.778095725210113 -8.401385748341427 2.875408215976926 13.48044384213466 -5.009201686890331 13.46385237761761 -4.961597731074239 13.63487046372841 -4.94549333456956 9.879863373842106 -1.279515954902865 9.689642966495599 -1.318112330245819 9.688833687236995 -1.246425873783559 1.475651917588861 10.37351640629636 1.443130091462908 10.40723131683276 1.633232329972663 10.46618200176879 -11.0667197444089 -4.252035633234956 -11.06869557425599 -4.315166235750052 -11.23351755599443 -4.212103517231708 9.71446549538318 2.682322219812674 9.558501111372419 2.688716318200013 9.542757436781312 2.747656735355469 9.250814699947915 -5.261317889795185 9.080915698983219 -5.256274384238835 9.096599736713905 -5.192152721956323 -9.594212167617888 7.85725022959299 -9.618678131511869 7.811571463428256 -9.78657225631229 7.852181304202899 -9.223157745222073 -1.559513824423473 -9.414858620572524 -1.490297784890158 -9.222389127344098 -1.487816533957632 -8.342676183655009 -9.823142345531542 -8.313551547726426 -9.866667545846497 -8.512151808923482 -9.833839807323299 -11.18493744892392 -4.360578516193835 -11.33788399567242 -4.32183575397238 -11.34911959644303 -4.256885721281595 -8.363931188574018 2.665633741903264 -8.53117261365886 2.704464239519222 -8.51083709197818 2.762578564523907 13.7032700981467 -4.94760926841141 13.53243276553563 -4.964860093100802 13.70571871821602 -4.892064820823818 9.918408740111159 -1.141557346435877 9.727375012814907 -1.108481704397161 9.918011166691752 -1.070223784205219 2.154785353111235 10.01054928985228 2.298149943687731 10.08860311579251 2.347909860452635 10.06307003623583 9.614774569423926 2.62259068597055 9.616830971644632 2.562621381735284 9.444870915217811 2.627544449697741 9.180936640514702 -5.292365405877916 9.178984853297125 -5.355321768348242 9.024979107795028 -5.28586871389258 -10.12264496331629 7.384037398307376 -9.953569129999973 7.346584292382385 -10.12323052915491 7.33790296641511 -9.223302778726774 -1.559758095281766 -9.415745096930356 -1.562230434000202 -9.415003618485226 -1.490541994745479 -8.718101642412567 -9.849470270803952 -8.910416386694324 -9.856028141728599 -8.915439656525455 -9.812228607292562 -13.52757237333776 -3.253838288386617 -13.52570201626261 -3.319370448554848 -13.67841958207174 -3.216263533760802 -11.11903254697048 2.503742481659308 -11.13283943233612 2.444453213863007 -11.2576465884218 2.539291641083163 15.00901797649272 -2.226254217167108 14.99471168600354 -2.171827778478193 15.14620801840819 -2.164273783765453 12.68751385641467 -1.046289002066653 12.5140764173943 -1.081226333038961 12.51320522696011 -1.009895377403657 4.435409511631076 10.18764576954969 4.390186155113673 10.21795412776514 4.57038367166259 10.27786145171617 6.970231778647031 2.933597808515434 6.80792556828419 2.938987088622652 6.799881688192711 2.998643544254029 6.565200070904346 -5.77145126429052 6.38849475190444 -5.767454288873126 6.397328272898307 -5.704863778902204 -6.727716747354233 8.72492284002916 -6.740962662766271 8.67997821747481 -6.927849432471361 8.722326968238191 -6.523860973682957 -1.619966112853497 -6.724023439939218 -1.549689226529727 -6.523816959676118 -1.548275308989991 -5.693633793840718 -10.99750842844916 -5.676828072007357 -11.03945164024491 -5.870057109739038 -11.00675822385091 5.134303576942065 9.744778558550188 5.25934845031599 9.82104916490678 5.317869985164807 9.797981050926577 -13.61661898968192 -3.314964590822164 -13.75477921795586 -3.278338480514989 -13.76854622192811 -3.21113764018096 -11.22516461032156 2.346204936008003 -11.3763808957291 2.382786202714328 -11.35040662033016 2.44068793613538 15.1576814090512 -2.124937608263094 15.00622435634547 -2.132964253521795 15.16255610417226 -2.064324066966547 12.67874468748797 -1.072408870383979 12.50443705789629 -1.036012282277891 12.67579970956057 -1.000791165795485 6.893125891645962 2.88321524964939 6.886905982815804 2.822359023664407 6.716380878520885 2.887120345392944 6.493886671357535 -5.8005416321671 6.499297749395056 -5.861853318658661 6.331588001222222 -5.795013610782488 -7.074127155872859 8.225542020014023 -7.250726533626778 8.219285912978307 -7.262032134221126 8.265004098363175 -6.525749738177368 -1.623253311987273 -6.725901609103392 -1.624662552674014 -6.725911777439533 -1.552975673052246 -6.368320690458104 -11.02654289028165 -6.176516721583457 -11.06407179278063 -6.3766631666886 -11.06817949827535 7.399609504547767 9.619323336809778 7.345657936498037 9.648481918796941 7.50932005389018 9.70810095719639 -15.19835650897502 -1.539034396595866 -15.19769012705485 -1.607100305600387 -15.33016673667251 -1.505202038994014 -13.78005902420712 1.693229909753987 -13.7967899717757 1.633255812143993 -13.90101400375472 1.725824069942405 15.09413895837948 1.382617541727121 15.07649354971018 1.441744718990168 15.21264066966617 1.439333263282441 14.70849752495492 -0.9569903180896706 14.70504936238811 -0.885386513503547 14.85983765837054 -0.9261652935141864 4.088365265100688 3.216347512225592 3.92858025553164 3.222424407256274 3.929212039490774 3.283474997984946 3.628701490527138 -6.25377151257014 3.453414789059227 -6.249107518399225 3.454746509898578 -6.187657172491474 -3.942909749583434 9.179981975510847 -3.942449775668033 9.133408161644695 -4.13993042991791 9.176092671215066 -3.606698048420351 -1.645858167980079 -3.804442724339767 -1.576393226874311 -3.6073962201789 -1.57417339189756 -2.288278526008347 -11.90528913347866 -2.283036671723982 -11.94723758726214 -2.461576433909019 -11.91801663122962 14.68525165683018 -0.932638536655356 14.83767055927219 -0.9017608779535168 14.84003553665523 -0.9734276888092656 8.108960391747763 9.093458524674087 8.209437323079435 9.16861687617568 8.276440918809898 9.146107733000486 -15.36165339124285 -1.424612209270104 -15.23019083421849 -1.527319995424785 -15.35086860629276 -1.494096043713383 -13.88118101999296 1.518439185105724 -14.0132840761721 1.551715355141865 -13.98609403252384 1.610524537993517 15.21737009846128 1.491820278078688 15.08122751550328 1.494385356116551 15.21560360749451 1.557231680141138 3.996955488369488 3.144999336356541 3.982368056858551 3.082821681320523 3.823003933198998 3.149638809828557 3.485286894891789 -6.366196625883084 3.499164945906288 -6.426505097304841 3.325515964445149 -6.359894810592758 -4.278002755312185 8.678262533042021 -4.453169469024997 8.671350563432563 -4.476417866988736 8.718175278555938 -3.618895359002929 -1.667155676863641 -3.815957778124675 -1.669379995571271 -3.816637486098988 -1.597686245786954 -3.063075796199603 -11.98819013303461 -2.886020494107124 -12.02254899848497 -3.082847751041001 -12.03018892198073 15.37347153016832 -0.864475723708804 15.37036629622499 -0.792826398140414 15.50826906708694 -0.8391059119714515 10.52976473615412 8.337246791857679 10.46869773574608 8.368506526357542 10.60892099772934 8.426715961728627 -14.90733358767244 0.9496904440560714 -14.91413508240196 0.8798953576999469 -15.02467306260946 0.9783649043506141 -15.43571461010428 -0.3095391815648549 -15.44843414629052 -0.3713122339563524 -15.54299682496061 -0.28070504552319 13.18902707788397 5.120739521180622 13.08182700855746 5.07329441497193 13.05331052206207 5.134754519941269 0.8602079240670885 3.552651421901498 0.7113710177846816 3.561026601019804 0.7198562776932399 3.623901000220996 -0.06156410505620824 -6.85188633132437 -0.2224226690605397 -6.844260889613422 -0.2280132769841331 -6.783130214567945 -0.9993590702559498 9.425796599405491 -0.9871209358075042 9.376457503167522 -1.182856664340904 9.41748422758206 -0.2787465030115544 -1.650569545981412 -0.4648357632701805 -1.583661053340848 -0.2801691149569641 -1.578882537162648 2.632411735352135 -12.09200642552012 2.632056573613641 -12.13679197222151 2.473012178330985 -12.11634927890616 13.26986832367426 5.181267872325768 13.13430698424003 5.196183559839843 13.25632134653072 5.247906031232003 15.37039704935246 -0.7927718569836021 15.5051591891193 -0.7674044945288573 15.5082998077492 -0.8390513938007211 11.27388404135594 7.614833960107384 11.35039658314674 7.690464620731416 11.41892048281696 7.665219088248803 -14.94597724388745 1.133757219368655 -14.8366103783817 1.034481718979013 -14.94404317265669 1.062966787564549 -15.46170198266474 -0.4837969542149664 -15.57902692257803 -0.4547413647059616 -15.55721730864293 -0.3938102667829985 0.755403771290053 3.479990418793721 0.7339020756767323 3.416193550264083 0.5932810520062515 3.487113670990601 -0.1125383764077592 -6.828888836228406 -0.09497580761364755 -6.889010503667708 -0.2613392188630737 -6.820126058444464 -1.294534063689594 8.981731717269463 -1.45507948850479 8.970757636182825 -1.491061582686062 9.020344992648781 -0.2417048101405872 -1.587089843200602 -0.4254040759247646 -1.591913545599537 -0.4278004564843063 -1.520192343133845 1.850810746548346 -12.28492656885881 2.008734919453221 -12.31017810497672 1.826032096794208 -12.33184142163448 9.503412932212505 7.76058911858186 9.393397281554332 7.724749844334949 9.353995887168807 7.784695466024076 12.96596933288625 -0.8856871073875584 12.96262871075048 -0.8140458065531737 13.09807611669301 -0.8662422109606354 13.94702700974277 5.196158813294375 14.06936201237766 5.249176036053585 14.00392306308978 5.156918052186839 -11.82655752285261 3.222342692885392 -11.84374829503723 3.152839329262184 -11.94226861134993 3.244729081785231 -14.18572255002344 -3.58250145599699 -14.18654326213074 -3.645798698832333 -14.29126050829675 -3.558614725452693 -2.987532571468472 3.888388936992129 -3.119921903641918 3.900550950094525 -3.106293207597168 3.965675456964211 -4.520285822817078 -7.038549392869954 -4.664360227163076 -7.026694423352252 -4.670880235876227 -6.965219336962992 2.299404964523432 9.488670329443528 2.322566263497101 9.434557907495242 2.136871318879284 9.47286930048757 3.955660293461079 -1.479465012608606 3.790134618569108 -1.416730121974065 3.952614200677353 -1.407759067084463 10.05991255277378 -9.604728338859857 10.0706418825885 -9.65482546438237 9.929644119913441 -9.654565405404615 -14.18100759915282 -3.615503449713955 -14.07523677823763 -3.701896778334867 -14.19047154775366 -3.678297315289884 9.68033583573272 7.957884167846678 9.703922871060851 7.894120557176986 9.554940304920466 7.919837247075896 12.96063017669018 -0.8172633530626651 13.09263569321016 -0.7978226973522309 13.09607751920492 -0.8694598593270555 14.50982789799723 4.150502059193211 14.57618626995122 4.22835996152286 14.63751959600602 4.195021685250977 -11.67792821171452 3.314407234664699 -11.78392062031012 3.337014453706298 -11.77550975736867 3.406914815894923 -3.096701153932128 3.833949100290053 -3.121743936100268 3.768231548057704 -3.240851383565672 3.845187083151502 -4.685759871219721 -7.089698368532281 -4.667904566084492 -7.150707082949529 -4.818035071205694 -7.07679070270242 2.006696007070294 9.08105633943431 1.863463391247857 9.06402082020049 1.820227595080348 9.116967683248314 3.907978078413694 -1.557309422787356 3.744601666606605 -1.566236740824238 3.742458447236089 -1.494564664824742 9.921957857946488 -9.687768392533094 10.06295538963597 -9.688096935144522 9.915776023782305 -9.74298291948497 -9.536187034695873 -6.109165075974538 -9.52402517985005 -6.171670783331912 -9.652903998715336 -6.091271755545428 5.394369664548398 9.013073844497422 5.269145413654473 8.98814844654512 5.224592296156702 9.0445549802318 8.172384188754199 -1.050493994714629 8.169435860873902 -0.9788432130047249 8.317123293643281 -1.03688854695364 15.4593568147715 -2.196078899442888 15.585691184698 -2.162655680348026 15.49019509487093 -2.249472481659872 -7.174630313843458 4.191544291445221 -7.198639336027242 4.123919467168141 -7.302161396672466 4.207606734110603 -7.512896872044705 3.880741744689181 -7.628222886151233 3.898016109911356 -7.614488809925017 3.965766902650979 -10.05198077925374 -6.220040294606468 -9.925054496375578 -6.300433664451168 -10.05060016082363 -6.282635650962902 6.0595022497826 9.018524087441488 6.086338965082914 8.959240870642818 5.919293735651714 8.992149632533886 8.71294079027493 -1.357679779673712 8.855963963588343 -1.343488947981518 8.858849349569717 -1.415144910131426 15.46797397531142 -2.244082559516285 15.55442020828451 -2.170200083365358 15.59595209762544 -2.214975631735235 -7.018177647189687 4.27015268442776 -7.135179280475193 4.286855907081375 -7.121080656308553 4.354311102843562 -9.487109587705367 -6.03670439304994 -9.35748853738791 -6.116361583604476 -9.484805617161001 -6.099209318034252 5.646198279373889 9.316156776247158 5.673096166160551 9.257483117041781 5.503966014631532 9.291051008994902 8.176889948354898 -0.9670578814414143 8.321803031755108 -0.9534527271722227 8.324578176343493 -1.025101963257383 15.31787573394606 -2.991383493381594 15.35615939340803 -3.037378882863943 15.22713497432006 -3.063684969347828 -7.683941862686723 3.788286790761991 -7.70753054522451 3.720442539687231 -7.809818624814156 3.80494961202868 -10.10754318578714 -6.280988109041837 -10.09644036543875 -6.343660109105083 -10.22256103855552 -6.262485915253553 5.810030689501506 8.709220836368601 5.686800163988918 8.683274861049368 5.642347912516739 8.740057861146749 8.71221542320505 -1.435026870655446 8.709334777800718 -1.363366330854731 8.855242975404517 -1.420832029632356 15.62328263008404 -1.276134631715449 15.74807445594709 -1.239451794400593 15.65831561462284 -1.328189715669083 -2.683509845591801 4.167315434636141 -2.708407832933077 4.101820517499222 -2.82973441647802 4.178034497450074 -4.160051516571407 -6.742902921349519 -4.14190665745088 -6.803783171280707 -4.294121008134812 -6.730509740119083 1.63891788405939 9.318606882448178 1.493596293917963 9.302360680905546 1.45077567462642 9.354854617899264 3.344966541456234 -1.16079712097281 3.177821464271377 -1.169162107752115 3.175809725731079 -1.097497091901778 8.879219485749545 -10.21799406819434 9.022385226087984 -10.22221713968744 8.869138385987327 -10.27239706324155 -12.11254823881648 2.785161929966629 -12.21806901817422 2.808411330130421 -12.21053926717858 2.878497682522843 -14.51223159584396 -3.612669164517918 -14.408335190759 -3.699608285877914 -14.5231095212086 -3.67536556602917 10.09332858830157 7.542209250891975 10.11624857953252 7.478006039962986 9.969096801405391 7.502732089899697 13.36667546683296 -1.213753528807619 13.49827161106425 -1.193692345027859 13.50158749972813 -1.26534123853821 14.21274096975817 4.554931272144604 14.27888045651739 4.632572000543065 14.34159676935802 4.600398678108447 9.121567351821501 -10.05688027525365 9.129931073619558 -10.10595762203221 8.986726411255365 -10.10265056582533 -2.552825312392804 4.241806767107609 -2.686995605654396 4.25350539908281 -2.67375968987992 4.318405533400918 -3.994881784187046 -6.682837628967281 -4.140955918950187 -6.671513595794013 -4.147545019114344 -6.61014441115455 1.892692983134013 9.677086944403035 1.913713247500035 9.624144397243478 1.726242019814234 9.662483222764452 3.425403473226862 -1.027712244455188 3.25623713927763 -0.964427958447406 3.42188197100568 -0.9559809909929581 -12.2580098996741 2.688038875326533 -12.2741725445931 2.61840847154347 -12.37314363818211 2.71110207228355 -14.50343604627514 -3.568408969071592 -14.50565661871877 -3.631637744385509 -14.60850753513759 -3.543932697348949 9.927167091084403 7.341388397474084 9.818078804243646 7.304301580649085 9.779609336369521 7.364568902136197 13.37042311176466 -1.28478605231886 13.36704899679033 -1.213147962529828 13.50196103823311 -1.264735658426976 13.59514017933157 5.593935722553674 13.71858830810567 5.647895169174232 13.65315003289887 5.555866250203276 1.269933349773281 -12.21505571327907 1.429736907496426 -12.24138994912994 1.246035609969401 -12.26086457700516 1.117691310402366 3.832566543961213 1.096809147173354 3.768922328041411 0.9540052658472764 3.839358444508018 0.290891578879986 -6.4182719458041 0.3080688160055412 -6.478358966394877 0.1406040221887672 -6.409845398332323 -1.627877711662404 9.167993417344203 -1.791289676923391 9.157781848542518 -1.824587824479411 9.206671485326714 -0.5881315195274661 -1.146892661343638 -0.7723047443447428 -1.151399498838604 -0.7752859717544591 -1.079653092062166 -15.12450448487209 0.5082367006157138 -15.01306506971698 0.4084567146726896 -15.12144782084179 0.4374958174156797 -15.40483700265046 -0.5500840574871496 -15.52314926569948 -0.5205329036869346 -15.500459170509 -0.4598507532618971 13.6372217008346 4.552000643296386 13.5025964082012 4.565796961491111 13.62564565899375 4.618821671536798 15.4332221916265 -1.208163755361539 15.5691506200113 -1.182197293887767 15.5722767728024 -1.253842345181188 10.93686109792127 7.70189293965731 11.01554030073302 7.77749597874106 11.08419198164969 7.752694003065106 -0.6158288035618509 -1.194444819456567 -0.8029789501656837 -1.127197834276049 -0.6177048406552255 -1.122711433791591 2.023188275497688 -12.02477396981686 2.022744962719547 -12.06917846409603 1.861827604196317 -12.04744303558953 1.209573519529485 3.891427002171439 1.059253855070687 3.899491351054425 1.067007614216021 3.962160819751297 0.420894258451871 -6.346390196957869 0.2572155089149181 -6.339299772052521 0.253146768666605 -6.278305945086839 -1.29323938510224 9.649788542172328 -1.281424232058489 9.600608416779039 -1.47723624504815 9.642010717377548 -15.07056644321586 0.32951837866518 -15.07648249795538 0.259809567907225 -15.18906507192764 0.3587922130660675 -15.36821020385244 -0.3764479075521434 -15.38176415486199 -0.4379950396759887 -15.47649394105839 -0.3471811079866534 13.55408544381492 4.468656774022928 13.44601181969195 4.420618456722103 13.4193014521924 4.481458325226751 15.44154621644683 -1.270040220367351 15.43887546463735 -1.198432813650995 15.57792429179933 -1.244122241854085 10.20512566656824 8.403341707836011 10.14432019768183 8.434145630052644 10.2870289046954 8.492544086535737 -3.91869385540605 -1.225108016712174 -4.116115399298471 -1.227197461004944 -4.117322721586101 -1.155455181929513 -3.471467888267802 -11.78072429536734 -3.292609903821964 -11.81562808691437 -3.490491370865683 -11.82253249225255 4.317564667636729 3.491936441918928 4.303776139349001 3.429912165714986 4.142883544033628 3.496419642142974 3.819721301533072 -5.889640375170888 3.831603248875901 -5.949998662128328 3.659274989512859 -5.883511144970043 -4.56309856753151 8.881415741794974 -4.737645362532237 8.874537455795485 -4.760466039373007 8.921257796501106 -15.30437239808054 -1.925137475173718 -15.17265218618397 -2.028113769500776 -15.29367516436432 -1.994492812379549 -13.63977731800671 1.281596579032337 -13.77383540457406 1.315252893507354 -13.74648797467401 1.373895152655176 15.30554625251233 0.883233312674941 15.16852919846324 0.8845237794874239 15.30447440325262 0.9475939320276569 14.55150531006319 -1.385893434792753 14.70497460716258 -1.354540221883935 14.70654726679664 -1.426167760578414 7.809899482390562 9.019266457404926 7.913083669094901 9.094354918472561 7.979568694352706 9.071961038863567 -4.221796480428573 9.373952065694544 -4.222767347295527 9.327625268824464 -4.419180856427436 9.370285082541937 -3.934943710298049 -1.25356101857082 -4.133569218365498 -1.183902257835565 -3.935510301573979 -1.181855040535059 -2.70128022653402 -11.6845343638699 -2.695019528428729 -11.72635566158073 -2.87537850023207 -11.69661333401928 4.394521696023961 3.544068214256614 4.234063129625008 3.549995596757794 4.233809223339488 3.610844655154478 3.920277081852706 -5.829542967465618 3.745610314293128 -5.824918717927295 3.747740621135654 -5.763390445962426 -15.08193289730779 -2.127484480091077 -15.08174712600192 -2.194663880642126 -15.21567994234236 -2.093469168983182 -13.63763212200348 1.324530205794836 -13.65226306077004 1.264986309848775 -13.75906765819578 1.357217617136769 15.18372560301041 0.7724757892874185 15.16700258194906 0.8311419315602429 15.30402056265537 0.8299138609692803 14.56812892279312 -1.422897280082927 14.56577507920066 -1.351227689867268 14.72082169562897 -1.391490913011143 7.068418925074433 9.578434342099587 7.013736524031568 9.607519450519252 7.179469623167814 9.667466975923748 -7.364757525197375 8.392612165246591 -7.541092374116214 8.38627149974835 -7.551090634919225 8.431932122824478 -6.80895581292955 -1.224375878368809 -7.008873154588597 -1.225819308579833 -7.008732993357302 -1.154112030053068 -6.648014904057874 -10.76811635857427 -6.455180147617425 -10.80577662083795 -6.654962614866951 -10.80987046417361 7.164970312245638 3.222160895919682 7.159683149105591 3.161453824108722 6.98852420928171 3.226079763481782 6.785490369391764 -5.373434654719696 6.790137438730099 -5.434877087880408 6.623480759659401 -5.36789136083812 -13.2976058089756 -3.815142780842342 -13.43935960981416 -3.778435687170322 -13.45202359186805 -3.711998911620124 -10.96686906604616 1.94467411422947 -11.12000741769106 1.981412675809465 -11.09636944262759 2.039137595600077 15.06275997946819 -2.668645552542825 14.91046052759581 -2.678321142270544 15.06793737631414 -2.608660608269839 12.40361165627005 -1.556904795702498 12.22721588274776 -1.520881642628328 12.40210112607122 -1.485221137171874 4.840345670957236 9.60853603043002 4.967718518286758 9.684953934767201 5.026829930804842 9.661844422024412 6.852543361500072 -5.348088665556715 6.676098353423969 -5.344069393433601 6.685731496818778 -5.281342409296973 -7.016356060791461 8.87659206099765 -7.030952370379245 8.831678311500326 -7.216252762861057 8.873910607339996 -6.797942116762056 -1.205225518883762 -6.99772183470219 -1.134966135554738 -6.797879829875326 -1.133539394580807 -5.982158908094954 -10.7224021075948 -5.964037541056369 -10.76442641326876 -6.158289302214984 -10.73158045372358 7.260035233781455 3.293313681469098 7.098018444234611 3.298725556998873 7.089089793444524 3.358288383369784 -13.30462441089112 -3.749966230417013 -13.30302574846472 -3.815261097718026 -13.45740054944495 -3.712077419898429 -10.77779903674448 2.19365707219338 -10.7911936668646 2.134380368863871 -10.9199066942917 2.229507457165477 14.90675467535563 -2.784820925746171 14.89359153948073 -2.731690706021325 15.04594846248285 -2.722592259857834 12.40266215382955 -1.559795130278744 12.2277740111065 -1.59545177405842 12.22626653963685 -1.523771494388957 4.143254436350755 10.06571708920818 4.09927267677607 10.09630450686961 4.282420137726039 10.1563466515096 9.435616869229413 -4.866506000955534 9.432897596798991 -4.929652859282817 9.280708942696998 -4.859794310336661 -10.41859686279176 7.459863426017556 -10.25179364391773 7.422709347808344 -10.42020891973381 7.413522484191933 -9.490237906461044 -1.142814133138992 -9.681312747559218 -1.145501078235451 -9.680553925598048 -1.073817422628422 -8.952747348601889 -9.552780865647687 -9.143699226774411 -9.559866954031682 -9.150067504131693 -9.515774283021198 9.889666374107684 2.972977660817597 9.892497053443954 2.913043476752998 9.721005228011375 2.978145278554719 -10.92559742287164 -4.813734998559012 -11.07973989590846 -4.774826602266801 -11.09042717486179 -4.71006304648407 -8.064645236820358 2.314896475201184 -8.233189940313375 2.353898140789388 -8.213579112900032 2.412094018744413 13.50788389903918 -5.406127834911042 13.33483920755359 -5.424019232187091 13.5106366864216 -5.352041267498962 9.671533443481678 -1.693736407383557 9.478736923676125 -1.660536261293553 9.670806756414503 -1.622048598075757 1.838311067759377 9.839238762325136 1.983104087847525 9.917511424800731 2.031704780734401 9.89160867737553 9.984298747048996 3.020998695965374 9.829383978294503 3.027611934027926 9.813051806426339 3.086498200934479 9.507223336109265 -4.831511165229551 9.338536488004825 -4.826243837404999 9.354812727931474 -4.761952710567603 -9.89557453061461 7.914866438740829 -9.920935499052261 7.868960947622122 -10.08654778620994 7.909277398932868 -9.492816973104848 -1.147144075054858 -9.683132353837953 -1.078146274811977 -9.491998916595653 -1.075447616452952 -8.588155731518745 -9.510129042457836 -8.557796019122565 -9.553843263302154 -8.756356925636574 -9.521201004372195 -10.79673461355488 -4.700693321613525 -10.79935906835351 -4.763601622987849 -10.96486275762137 -4.660596263860441 -7.95613468336475 2.481711099612882 -7.962177967925487 2.421902294323401 -8.110749165694452 2.519442721548662 13.28335660480808 -5.475056319707314 13.26595833296951 -5.428014034773182 13.43918142063929 -5.411224921898035 9.672936778212982 -1.68869370939979 9.480888525231553 -1.727184133651086 9.480140076488508 -1.655494217076865 1.170179326720959 10.2086367601168 1.139006549215127 10.24276056976623 1.329449867722167 10.30144132619703 12.55687298233113 2.453384130173211 12.56516430339168 2.393466521627998 12.40364063221526 2.461614706417594 11.93640254681426 -4.165032350167974 11.92830484999622 -4.230275828608788 11.79576149654928 -4.155551427142922 -13.37682804325184 5.275712809046858 -13.23131050433421 5.242665521231977 -13.3834254096628 5.225929213983872 -12.0727413853216 -1.041409020725488 -12.24641458179391 -1.047103637845104 -12.24483295440978 -0.9754150875068528 -11.10567366236691 -8.039428313101588 -11.27856220826095 -8.053789475132387 -11.29680376153356 -8.006088254912202 -8.187308503221157 -5.455430342685271 -8.348234059464961 -5.415852699562201 -8.352713368965333 -5.353009241600811 -5.069437534956167 2.531607759242481 -5.245289035871961 2.571431937414694 -5.233757382456509 2.63073961695338 11.31536903728453 -7.370396790031424 11.12447098697703 -7.393572481067205 11.30950136415803 -7.321621856498431 6.775102968090309 -1.786046738243033 6.57489184107579 -1.753906767821389 6.775063105397541 -1.714354410783515 -1.35971484671832 9.794750775461388 -1.207690894320136 9.874847435927755 -1.170781496907739 9.844470840769276 -10.85155818018386 -8.044927051654486 -10.81155848673523 -8.091277161583459 -11.00367125140248 -8.061637611206219 12.65883005106361 2.465021228541604 12.51818957215605 2.474507395170636 12.49769888463863 2.533742024169193 12.00385823044273 -4.135164480222293 11.85062002729697 -4.126928048896102 11.870998185767 -4.060788935018123 -12.94155104552028 5.745711360249714 -12.97020607507349 5.695226271978908 -13.11444422999616 5.731579185363423 -12.07782095363199 -1.049407336215401 -12.24991109127492 -0.9834110930476508 -12.07621148553565 -0.9777292366934768 -8.052138060893382 -5.322984618908614 -8.061635622513139 -5.383991422140615 -8.227574240149934 -5.282106015519593 -4.958719612142856 2.71016070344916 -4.95611050906218 2.649149115916692 -5.120072243836345 2.748647244982946 11.02977013404539 -7.368703720926839 11.00278738463938 -7.326842864677343 11.19396785266242 -7.305155638348523 6.773318783743004 -1.792907828197249 6.573133027084795 -1.832455504155151 6.573107856879306 -1.760767086204102 -1.986585910336417 10.04723581590308 -2.005258580735482 10.08646464865088 -1.818918216905576 10.14191074610979 -12.9824368799928 -6.13026542749434 -13.13207387417355 -6.155811866241038 -13.15830846884235 -6.103729753312876 14.79749500018704 1.037575474863038 14.6546796747225 1.111672259915335 14.78925026464151 1.09862060619865 14.12757377989656 -2.984870955529664 14.11807653859754 -3.052513776518345 14.00402620830166 -2.971121098652886 -15.392748608375 0.622345216007364 -15.2601827431418 0.5979448910657257 -15.38999841171203 0.5670984671098608 -14.4588684489278 -0.8390295158392098 -14.30867123185037 -0.9005837405983335 -14.46132517207005 -0.9106927418999509 -5.374207199175368 -5.971311963748499 -5.537306155160665 -5.931902966958463 -5.533922672640889 -5.870498019420938 -1.988530112486937 2.800941416648781 -2.166523748886377 2.840634739882751 -2.163785971806951 2.901642838078809 8.643917851519563 -8.821016866257615 8.831587244531447 -8.749631988710847 8.849748430824649 -8.794339705558432 3.775534105004804 -1.855066509655424 3.573783730859172 -1.822632506277318 3.776182604672942 -1.783379904182509 -4.4923226799024 9.437572616977786 -4.670782757033908 9.391489061721853 -4.518454541149218 9.474070289086502 -14.3024413167885 -0.8233352346474084 -14.30482208302895 -0.8950027496079376 -14.45502069562761 -0.8334506321733186 -12.85472972588699 -6.175066999908178 -12.8098106925636 -6.224758381265309 -12.98629346718917 -6.200865466139687 14.73494332966793 1.028743831863404 14.71629693507362 1.089567604721711 14.85843091705435 1.014664459358783 14.1723083452901 -2.973089852186121 14.03768551094517 -2.960251355937999 14.05783144772774 -2.892068610091184 -15.19932092100185 1.047629495626219 -15.21580165720414 0.9894633255018345 -15.34742777455008 1.016831532506449 -5.197981117640374 -5.809726276629004 -5.215298583282429 -5.869300439143449 -5.375615878652425 -5.76907938226833 -1.917213544852838 2.947798844589214 -1.905712399589655 2.885196999548293 -2.080709377232819 2.98617664801779 8.520876204190078 -8.729982172960378 8.481503486680115 -8.691956648755397 8.687691766703162 -8.667047494731419 3.779257159929721 -1.840790660751815 3.576861791884026 -1.880047587682836 3.577506404881137 -1.808358123663641 -5.217968868846683 9.496922238237728 -5.22598152734065 9.54269679527966 -5.049712554877388 9.593732958602146 -15.25715993617085 -0.7093137958446033 -15.1218745344357 -0.765088899467119 -15.26025847474393 -0.780964328650635 -14.5457590702421 -3.373773767576465 -14.67521912264848 -3.415366427660079 -14.70189853230447 -3.358117846243254 15.00492688086299 -1.943486452059057 14.88502920112298 -1.861237469285582 15.00644741962897 -1.880930354359693 15.19674240769201 -0.7715770911606594 15.30733985482653 -0.7911160391785539 15.30381319855652 -0.8610614001310909 -12.99017871459692 -6.234651253573509 -12.85129754989019 -6.242134299949896 -12.95959706664945 -6.289173031184649 -2.014586834729775 -6.503057366206366 -2.166003827257392 -6.465672102492812 -2.155547347258185 -6.405116295515027 1.796212019854677 3.106563191014459 1.630678838042845 3.144198271721106 1.626316367433371 3.207357373684283 5.796361977965246 -10.00543536587145 5.968990243056901 -9.936157725172993 6.000150709759714 -9.978635926580598 0.1514986527103879 -1.862095212027491 -0.03535474237399749 -1.826921148443765 0.1528658834350749 -1.790412023070404 -8.314737258932498 8.226237266172515 -8.47266850851215 8.18856861165855 -8.334840412261075 8.269653205146332 -13.07489064427592 -6.19457557832093 -12.95162202328517 -6.142618523725045 -12.93611139342808 -6.203149241443309 -15.11859509679825 -0.6931342189566541 -15.1216870276227 -0.7647820226372734 -15.25697229439602 -0.7090067164322275 -14.53336609872923 -3.422271608821417 -14.49051978775418 -3.47570644070986 -14.64687964830532 -3.461476706126069 14.82567338550247 -2.097881847050104 14.8173737537505 -2.034935585596903 14.93601168846332 -2.118307368852685 15.18625866078246 -0.7719796506945544 15.199840950447 -0.7019953478108855 15.30758953989376 -0.7909747564258224 -1.801059893950435 -6.323064514248448 -1.824456373817766 -6.382009587943262 -1.966107878298611 -6.284687423161257 1.822905289219322 3.211133598263874 1.840849532602253 3.146589528990847 1.671102997744626 3.247539069042812 5.653633162096018 -9.872337703629999 5.603161799860567 -9.835990410277086 5.807335604134617 -9.811070689404623 0.1501522542310374 -1.866498598895359 -0.03799787489346174 -1.903021079445384 -0.0367010079183816 -1.831324098296655 -8.888052569374295 8.149396088940296 -8.891956303007284 8.202055652112406 -8.73560339515349 8.243599652374339 -6.734757200207879 -10.13158124426027 -6.786810424791438 -10.0853636447483 -6.630836250612633 -10.07686599618939 -12.90032347595902 -0.7375519869836984 -12.76594756049218 -0.7871777496406589 -12.90354877816133 -0.8091961519397558 -15.04000533744187 -0.04422049426156183 -15.15826294837974 -0.103902757760789 -15.18009653649932 -0.04310511607338362 11.35871067781245 -4.864247016418996 11.47912188366892 -4.890542169573061 11.46497796310752 -4.952840324507377 13.7737197656346 1.887620605516973 13.88537453493573 1.862224531672379 13.89153042877192 1.791595110932155 2.254970883154677 -6.969718485585292 2.123484856448834 -6.935823256259782 2.137671355224413 -6.875088360074381 6.176292604536211 3.220335926862572 6.168644844224049 3.286131117514658 6.319551235286469 3.18664471334399 2.338569341515941 -10.96875920256962 2.48467897294826 -10.90228239941794 2.525754110047421 -10.94533411803951 -4.36374508062362 -1.824014600507707 -4.525448236964102 -1.784163898616591 -4.361628024967446 -1.752329704582327 -12.0773402268204 5.717787667271676 -12.21582724347558 5.693083986530518 -12.09955626588875 5.767557418050034 13.699196658961 1.836197871744953 13.70150222958474 1.906335181932238 13.82002373716389 1.81085255218158 -6.659017248096523 -10.29176504508441 -6.54275154793371 -10.2298238795108 -6.503143052749836 -10.28219924616156 -12.76355487385812 -0.7170562103522096 -12.76686336531682 -0.7887048109075213 -12.90123924015139 -0.7390789801632326 -15.04027039555182 -0.08201633616855049 -15.18036279514886 -0.08099854106763202 -15.07608817524493 -0.02682146148611495 11.16343325267279 -5.110812322807307 11.16962134544968 -5.04778422020852 11.2746950283071 -5.137254227136583 2.479947814789417 -6.78768472392369 2.454683453377362 -6.847097676410452 2.336615807329974 -6.753060556629261 6.546318104919582 3.332962703623065 6.39633679267543 3.433311080656806 6.528130475113284 3.400163524589315 2.158031868041338 -10.79059507243512 2.100486390351387 -10.75390636746618 2.288066920349387 -10.73253000148005 -4.361135472234766 -1.817507720166309 -4.525005787395 -1.849321940656075 -4.522838881563322 -1.777657653559122 -12.42246536425111 5.574860662951603 -12.4311184891748 5.633162187880132 -12.29339096053061 5.660366857367359 10.31173358783231 3.50709248904955 10.17881589043358 3.60625674687827 10.29695217407422 3.576282953728724 -1.315416691197011 -10.79405863836673 -1.374337776385144 -10.75449092636993 -1.201969068289128 -10.73720172662046 -8.481193369883467 -0.8751223845929151 -8.336821967247346 -0.9192253626530433 -8.484012455104642 -0.9467839349403823 -14.29623749013184 3.174026487722697 -14.31160178725745 3.234807344575829 -14.17862669986153 3.249456603355931 6.312768613149061 -6.033170990114492 6.441202120565928 -6.06430763406615 6.41815344580539 -6.124867381581647 7.059204423391727 -6.845404529037356 7.071801472411372 -6.783544217443566 7.174380981158103 -6.875418737800071 10.86864558100718 2.557520800342852 10.86488997675479 2.626164294471276 10.99470294054498 2.528049588216512 -2.067904797447985 -11.34575704088415 -1.944399097054143 -11.28176731101638 -1.89956631691054 -11.32815146224457 -9.252018368845103 -1.631406599386494 -9.254912747886399 -1.703054987305118 -9.395906475482695 -1.657944437544572 -14.4220460078759 2.344050150627878 -14.55481375449636 2.333781744114034 -14.4517769179506 2.397886861496136 6.091306337619217 -6.23692650976307 6.104642226818945 -6.175365311416068 6.209104584785072 -6.267712608749928 10.04282464961628 3.491584414518825 10.03800841644141 3.559758750590508 10.17168528753373 3.461228039013754 -1.161335543843414 -10.98767214523509 -1.034080322934476 -10.923288414836 -0.9892597495409061 -10.9686628522587 -8.348341047491088 -0.8770647973560771 -8.351571782623044 -0.9488765447003323 -8.495941761685025 -0.9047706828842368 -14.11620357020578 3.305071567235766 -14.24939016562188 3.291664004809009 -14.14504819138272 3.35829672682938 7.295198867324528 -6.630406365574164 7.420801329581828 -6.660681882982992 7.398814955555755 -6.721558199560822 11.12722622557944 2.565077100319093 10.99819483546227 2.66382775340968 11.11372318529046 2.634662239243968 -2.215362712886396 -11.18898920189834 -2.273803416850611 -11.14845037543133 -2.105199998459768 -11.13249064539562 -9.400683733517589 -1.667103217278151 -9.259690412177539 -1.712214552814792 -9.403677260691087 -1.738753439439918 -14.46394955626414 2.334853141709241 -14.57968553762004 2.262552572961713 -14.59658506697729 2.323576660065004 1.664909050401073 -6.00287967448304 1.639810231743594 -6.062124915849631 1.518241520028672 -5.967574587586071 5.680749861989676 4.153278402492804 5.699075827912392 4.086538148343667 5.545804644659049 4.187029601467367 2.808683367924022 -10.21255111475623 2.752195448522044 -10.17611809853025 2.942762782744754 -10.15392209196817 -3.492640684670395 -1.074779166979151 -3.660239649909997 -1.107473712169657 -3.657906653401866 -1.035640446571466 -11.88719037842142 6.390256998960516 -11.89541003141921 6.447754763479655 -11.75558830247717 6.477812762338425 12.23970291299248 -5.252266091517727 12.24282244601419 -5.189028021922632 12.34638557172039 -5.277401643836491 14.32855323949037 0.5444034476031647 14.33388255372585 0.6146697311122106 14.44531795795558 0.5204663205295975 -7.980199888351235 -10.11020522779608 -7.868073156196106 -10.04971666947909 -7.831929224133348 -10.10401673704069 -13.57690584280221 -1.510820735296349 -13.58031336687795 -1.582459512425287 -13.71032858905868 -1.531463769870081 -15.04642135590798 -1.316902416474452 -15.1878365627712 -1.312660695730625 -15.08532463342212 -1.262459068704902 -11.4759982641116 6.572011793410874 -11.6168172755977 6.544988057900756 -11.49738923334903 6.620698187983049 1.45140852786679 -6.181979751141961 1.316770463478165 -6.147477783180293 1.330551672587845 -6.086866345556572 5.525600011172712 3.971522314587363 5.378597415444673 4.006010372832305 5.371647709543538 4.071367372098957 2.968228157289516 -10.4058531221681 3.118770321804135 -10.33931686132888 3.158423717625352 -10.3817644338619 -3.472173205788623 -1.021564694130258 -3.637441362597286 -0.9824316918726268 -3.470119640786549 -0.9498997117940674 12.53023645191604 -5.084142610880516 12.42535699351473 -4.996734953078781 12.54189966260554 -5.02159830274504 14.39810257368164 0.5799431559813545 14.50517670957938 0.5558597482654902 14.50871283840981 0.4851398521851166 -8.013999791690987 -10.01844589470611 -8.062800112241703 -9.970256554226488 -7.914485185262691 -9.964763520878357 -13.71087837139632 -1.532328790528421 -13.58086316046755 -1.583324550836557 -13.71426209255166 -1.603981776548217 -15.05037840738909 -1.226578990515357 -15.16681030518107 -1.281835479256376 -15.19177177565791 -1.2219084160444 -8.470635071338313 8.644904192249507 -8.4759865869722 8.696244322386692 -8.319100610767672 8.73832069133981 -2.243567775053115 -5.534437018777564 -2.265612748196491 -5.59351774178789 -2.407280185898068 -5.496019744451218 1.423017545236261 3.996610332534203 1.439128645182978 3.93226132612275 1.272451799671924 4.033070483120869 6.056441916562583 -9.245974554115962 6.008094240639307 -9.2095285003263 6.208852809025908 -9.185260745575722 0.7209137041357927 -1.052779723797565 0.5345741419856875 -1.088858802466984 0.5358504636167444 -1.01718264642783 15.13340875538687 -2.055935007560684 15.12286934474708 -1.99326738068815 15.24485440192698 -2.075077148352889 15.14364034921273 -2.006947537996704 15.15885183476341 -1.937191908242164 15.26524688620531 -2.024711924237654 -13.98718542760739 -5.20840903344175 -13.86223355265702 -5.159751625865233 -13.85305440939914 -5.22093847933876 -15.19521549496234 -1.524609962244749 -15.19832625412269 -1.596270603183512 -15.33343446079239 -1.539369530202913 -14.25334663286684 -4.434348362253204 -14.20870979211273 -4.486729888709538 -14.36811022770849 -4.470469855010923 0.6717876511060339 -1.210241033241309 0.4867304553226759 -1.174624513960274 0.6735330642507476 -1.137987546591831 -7.870121931303062 8.73528334268237 -8.028669490989495 8.697256081430792 -7.891460751344259 8.77732786333994 -2.431790925661322 -5.701972905379759 -2.582006237078138 -5.664628946943076 -2.572853748577511 -5.603933900151874 1.3207502921861 3.829641580458917 1.156729268659698 3.867226762583225 1.15368059518012 3.930047495072411 6.186704679573904 -9.400783869411178 6.358339432172872 -9.333261558329864 6.387114112661168 -9.37479155409129 15.27570717202477 -1.945184662738022 15.15263594605823 -1.864387888536923 15.27401287760544 -1.882781561923195 15.14069067588906 -2.007565626224175 15.25235058852127 -2.025918782392416 15.24645489701924 -2.095557541616274 -13.89084970786029 -5.359687197478832 -13.75650550368552 -5.370712956410681 -13.86627156168164 -5.415556421484648 -15.33351657482098 -1.539429627282991 -15.19840866140417 -1.596331131169983 -15.33656569668673 -1.611076742562799 -14.28798423533527 -4.346857445713898 -14.4187579133071 -4.385031019497837 -14.44708662125225 -4.328881478679093 4.06716540719898 -1.185981328109016 3.868482075767634 -1.225512234170905 3.869251462265488 -1.153248236953836 -4.888211006974514 9.882382813561552 -4.898432150802738 9.926934781065773 -4.723281330374546 9.97759662542976 -5.52047463344559 -5.022925867041916 -5.536327267936244 -5.082760712744136 -5.694496098422492 -4.982558361088136 -2.198297000100457 3.709198997411894 -2.188541427903398 3.646802682913805 -2.358294975241326 3.747327736722881 8.821063622737404 -8.081068075667204 8.784409520340009 -8.043575398071795 8.984361385125315 -8.018889786579749 14.50328753911145 0.6198714515705496 14.48379981290011 0.6803768562943656 14.62913832682236 0.6065470026754626 13.91378675787656 -3.914028269540955 13.77657450752753 -3.901922352934037 13.79706136945947 -3.83401556996461 -15.05188590832647 1.648192432218593 -15.07145081059646 1.591110733002987 -15.20388890121259 1.620255215971475 -14.05456930404416 -1.737151735978362 -14.20793252154091 -1.674906213234118 -14.0522841221067 -1.66548702378833 -12.59906707432638 -6.847253726117345 -12.55453595350723 -6.896469800282259 -12.73363713770755 -6.871573667032815 8.961147970339669 -8.208885376303655 9.144588694193473 -8.137002183023883 9.160705660750132 -8.182299048462921 4.110749473134306 -1.023114863124318 3.912830110979244 -0.9904020482335455 4.111315907697413 -0.9514279860394631 -4.135678877851921 9.832357946580549 -4.313095418995537 9.786835669990019 -4.163550975226692 9.8676486638513 -5.688966563965556 -5.18195939005831 -5.848570381780682 -5.142821701154065 -5.84655112813323 -5.081188966712225 -2.320973174555494 3.517651151840107 -2.495354982347812 3.557019847334828 -2.491139280843386 3.617743617189456 14.56362394861421 0.6048563275228138 14.41769415905964 0.6779608416638659 14.55488592818863 0.6656911428215733 13.86099265336756 -3.930069096200835 13.85139004525763 -3.997399602647113 13.73509923301644 -3.916996254970738 -15.28854170594447 1.170204696329194 -15.1550692296586 1.144143514501218 -15.28831152002339 1.115665407106844 -14.05277218581297 -1.734523830673545 -14.2084088069347 -1.743942643476776 -14.2061360192512 -1.672279247086287 -12.74803913342135 -6.767554554422609 -12.90118928352313 -6.791348088152562 -12.92646166011155 -6.739806194378869 11.36690190646553 -6.647527372246057 11.34144570473119 -6.604965270711 11.53040684884705 -6.583774012560459 7.200505955828413 -0.9561201650644831 7.00083248135697 -0.9956291300117207 7.00071058884438 -0.9239409321923124 -1.48376548765514 10.41695309290832 -1.504011298276328 10.45532660564309 -1.316359851679797 10.51125927448329 -8.458278291165097 -4.502450701648305 -8.466784136497342 -4.563739723461231 -8.633311313184528 -4.461581020673512 -5.396144750553114 3.431986664955927 -5.394796595711615 3.371181651578052 -5.557079283541865 3.47044449800649 12.30228252097801 1.853547167638241 12.15929059488958 1.862508253046925 12.13908107718586 1.921629941830395 11.67023320637652 -5.003696625825226 11.51444395905367 -4.995988122235938 11.53443058290623 -4.930084753450449 -12.52143663078368 5.848099787347497 -12.55033458989957 5.798523837649225 -12.6973144625812 5.835657809152892 -11.71952687381128 -1.875594575882811 -11.89451678575479 -1.809075920531037 -11.71807569661854 -1.803917970014758 -10.55748009038494 -8.648509015496126 -10.51872443196023 -8.694577588606746 -10.712234833642 -8.664198102426601 -5.494480884714587 3.270060272424678 -5.669810831391525 3.309871727709525 -5.657082681780952 3.368999419505344 11.64054566850829 -6.665546296495399 11.45184500349444 -6.688128302873198 11.63628949028472 -6.616148932217691 7.200773576465188 -0.9550911522696632 7.000978179440799 -0.9229120348217619 7.200661719200683 -0.8834019212933418 -0.8557032800262521 10.18544707034978 -0.7038769885142304 10.26522472303308 -0.6654328843450219 10.23560638817811 -8.585650432987862 -4.632918670687328 -8.746147254760503 -4.593345034377506 -8.751657674730073 -4.53023762838618 12.20098273480808 1.828676920348126 12.20881383689702 1.76879176762304 12.04525236393834 1.836337757097865 11.60436469461252 -5.027910017287828 11.59688794168835 -5.092868710359014 11.46137496749322 -5.01892724370697 -12.97791497108754 5.346344886082515 -12.82965266395783 5.312512659637982 -12.98453843034841 5.297244266613708 -11.72442179487352 -1.883353288694198 -11.90088738895885 -1.888515046128052 -11.89941035243757 -1.816832428474763 -10.81498723580677 -8.613250355299023 -10.99077027464823 -8.626290330607958 -11.00751561178837 -8.57922805217251 -8.363370177573202 3.209764761182695 -8.370518692955651 3.150059513646359 -8.516294869167938 3.24731803677458 13.54984369799262 -4.673283195787599 13.53357639757153 -4.625454875229106 13.70379800090644 -4.609601351086891 10.07042243125469 -0.8539061542767 9.880345559514062 -0.8920967104598228 9.879525033618439 -0.820410331446248 1.62510891954094 10.52198621117121 1.592158870104572 10.55545236423388 1.782215518531985 10.61436410476008 -11.1383843700576 -3.862503535124068 -11.14009275490697 -3.925745369285175 -11.30644976216742 -3.82245429486432 9.610698755017879 2.324128626611853 9.454314006308366 2.330460342617318 9.438822933347161 2.389415212654336 9.138189625836027 -5.667971408323222 8.967920267342286 -5.662998617348173 8.983367912163319 -5.598916235509707 -9.474567731779072 7.714074474025448 -9.498796101957419 7.668525057284711 -9.667458621774603 7.709169115461408 -9.12225308190161 -1.985088050414322 -9.314545110333521 -1.915803486623646 -9.1215549819467 -1.913398119617542 -8.252482998522213 -10.05290980644982 -8.223840858571558 -10.09627688123912 -8.42244222018326 -10.06348162384995 -11.31534736621555 -3.995255402590071 -11.46775127464653 -3.956414046289486 -11.48071270841528 -3.890983548506818 -8.482272016717845 3.03624833154522 -8.649085052330486 3.075014986184076 -8.6284556788702 3.133127620812227 13.76422730937204 -4.623939959236497 13.59416614473529 -4.640825448444363 13.76784949605838 -4.569069750105899 10.06827309870125 -0.8615138757246704 9.877375987311938 -0.8280170433511696 10.06741505966949 -0.7898225502878942 2.271091111122606 10.19415728256979 2.415547241900588 10.27270678874986 2.464042862563142 10.24692458560141 9.516144212168694 2.267401103193738 9.517880949694792 2.20739729690558 9.345768114827873 2.272296326341851 9.081467940191283 -5.680520818604156 9.079743160518373 -5.74337669194364 8.925089831557182 -5.674088414348618 -9.999645313485154 7.231183005294846 -9.829826442748519 7.193636744127632 -9.999868683763399 7.185118553115247 -9.114182815227821 -1.97148860377096 -9.307150193477899 -1.97389654884978 -9.306476851172564 -1.902207488063143 -8.630990068009346 -10.06176448221344 -8.823835164775778 -10.06812178340205 -8.828329729776671 -10.02455321979924 -13.67913772765909 -2.830732235713698 -13.67620375353141 -2.896912202496391 -13.82756469838497 -2.79322083223679 -11.22018086992831 2.856925971685839 -11.2342283920958 2.797610524902253 -11.35813618163683 2.89236313765833 15.03100622608839 -1.874348120142226 15.01792263639419 -1.820376597597022 15.16755491902891 -1.812614555517476 12.75540716373067 -0.722061087033223 12.58348775044281 -0.7571908692744412 12.58183996094098 -0.6855080856889833 4.593107677932338 10.30936002238464 4.549295242453063 10.33989272295918 4.728905366402535 10.39947039205032 6.86437988100155 2.576715238344686 6.701963726339264 2.582108810617294 6.694257525682739 2.641821229414982 6.464443656817044 -6.155975670679551 6.287609383275505 -6.151972402283105 6.296153931751871 -6.089462240014575 -6.624329938761893 8.533852976676048 -6.637024964110001 8.488883771763653 -6.824617810505893 8.531261956100318 -6.412913257535382 -2.028994667122009 -6.613237327159497 -1.958716974691471 -6.412932323392018 -1.957303651022975 -5.564796265154871 -11.20928993583405 -5.548481739430882 -11.2510751859131 -5.741322112603968 -11.21855896244657 5.285980257911756 9.885425521455808 5.408525380227643 9.961235953025645 5.46892365966894 9.938355950589768 -13.68861087468348 -2.895965864588496 -13.82611810332989 -2.859466867849621 -13.83985812534827 -2.792171878820953 -11.34394159639785 2.682014419338178 -11.49446421434188 2.718463431486958 -11.46837421416415 2.77634044904586 15.17886102922789 -1.780273744198264 15.02927206240236 -1.788536319257916 15.18364533126544 -1.719419776198815 12.75616741611904 -0.7198058476779921 12.5826000790097 -0.6832532410347322 12.75455664469998 -0.6481341883792637 6.770193910642797 2.501024411470213 6.763677408283213 2.440163708222017 6.593344899047678 2.504928768543371 6.385529568956861 -6.193711685260926 6.391231729310915 -6.254972883322657 6.223120918041034 -6.188180049412851 -6.974196216236797 8.011890177976609 -7.150925354044279 8.005642783670245 -7.162813575669994 8.051353932162774 -6.422055038869972 -2.044896213624786 -6.622361966138952 -2.046306678514491 -6.622377027394011 -1.974614850260854 -6.253650066278304 -11.22056751519366 -6.062263918488467 -11.25802529588886 -6.262508268761745 -11.26215229661669 7.513916830360159 9.72123158712567 7.458013714381293 9.750335238784267 7.620806111622718 9.81007834498349 -15.21964334306914 -1.09160733074058 -15.21919948515193 -1.15976394569319 -15.35085128702435 -1.057959199088146 -13.87362288763363 1.984717882657217 -13.89034023929204 1.924734211091876 -13.99402307564132 2.017171873273404 15.04117433231818 1.748074132194734 15.02322458630363 1.807386718592298 15.15896140115512 1.804507780168513 14.77524643293838 -0.5853351005877594 14.772800797184 -0.5136780632559065 14.92571529340754 -0.5547072117568329 3.957606332108966 2.83533138147553 3.798161777436263 2.841460443145659 3.799120541649846 2.902532003201392 3.460215097748287 -6.648919328840286 3.286584870039757 -6.644062066923818 3.287729873234553 -6.582643465810596 -3.819952452174871 8.967394774177265 -3.818940041003984 8.920743558057652 -4.016616734605686 8.963394518664789 -3.489630955023968 -2.067264227870786 -3.687017207569616 -1.997859193192548 -3.490353126799364 -1.995574649607955 -2.125700125496511 -12.08008876906986 -2.120851924270657 -12.12208052308349 -2.298630670592987 -12.09306581863448 14.7737117026577 -0.5115215291784254 14.92425910433497 -0.4808877431247166 14.92662648540108 -0.552550016839421 8.235012263289915 9.201105114714387 8.334588440880115 9.276270458577551 8.401724041571454 9.253736194734419 -15.3809503155502 -0.9698529961301408 -15.25040872914482 -1.072538664922959 -15.37052569047138 -1.039441569411177 -13.95736534591686 1.833092083563621 -14.08868650215465 1.866233477321516 -14.06161493235339 1.92513442828187 15.16507765433981 1.84401817109066 15.02934734144551 1.847080945772513 15.16293327162573 1.909577711965771 3.871236082310781 2.768665029093724 3.85630959598321 2.706453044020234 3.697623056409553 2.77335984828569 3.349704516748484 -6.715464184840033 3.362529299714675 -6.775760291148055 3.190273839510919 -6.709115650438946 -4.155033858878427 8.448921081676424 -4.328533583974478 8.441735854343834 -4.353642099815962 8.488804072474393 -3.485637398004029 -2.060304498802561 -3.682345850184142 -2.062595680507013 -3.683024476784764 -1.990900918298791 -2.912226226946173 -12.14534104418116 -2.735951280373921 -12.17956591608216 -2.93237727880698 -12.18751169687754 15.32642256920814 -0.4529784236961152 15.32336384663095 -0.381332349075401 15.46089721245567 -0.4278352766187118 10.66207884899531 8.359119199736881 10.60098055921635 8.390534083262866 10.74026162154941 8.448735495364145 -14.81614436279424 1.417786763070192 -14.823481310544 1.347954763228634 -14.93323669119492 1.446257300034038 -15.44149158927127 -0.07843705736199619 -15.45376981890738 -0.1403205013379318 -15.54832766366031 -0.04975319962293469 13.04342002502042 5.471336640111971 12.93646028603084 5.424291167461346 12.90739958342876 5.485758799795015 0.716734852179709 3.183894949414568 0.5684321441059681 3.19238717322917 0.5772339097696888 3.255317826162595 -0.1556113242363211 -7.155411565930625 -0.3170690253238262 -7.147820651525132 -0.3217991399659581 -7.08679968057369 -0.8716758939431559 9.222402129449115 -0.8576590624700666 9.172562641007175 -1.054376218940464 9.213865326005751 -0.08948956196540125 -2.042294078972125 -0.2740167402925264 -1.975560034632549 -0.09089188420519756 -1.970605816580733 2.781256619513769 -12.20010871020101 2.780613237752307 -12.24515755909033 2.620953700489571 -12.22518160989242 13.13016875913633 5.521573135898037 12.99431564021332 5.536940318496004 13.11620829705866 5.588207545858619 15.32281262371217 -0.3823081009483379 15.4572287773026 -0.3571546060051217 15.46034616490789 -0.4288107075184278 11.40040280313041 7.647811427896074 11.47611460908563 7.723626467739777 11.54452980099268 7.698185007554085 -14.85170577152109 1.596419089464066 -14.74308939734469 1.497336740041453 -14.85009827648429 1.525619159912114 -15.55812841004475 -0.1593977067057546 -15.46260912208212 -0.249338483483126 -15.57951611159096 -0.2204386992599556 0.6905313929261625 3.194079257510125 0.6669604822531472 3.130055013808108 0.5273520439309054 3.20134779086433 -0.2760451676851355 -7.207237208447981 -0.2583847701539371 -7.267351366760307 -0.4243102481488764 -7.198347684540153 -1.185949144975148 8.737591677157642 -1.347094718530441 8.726640169936541 -1.383515371215881 8.776305223823076 -0.08628757273866805 -2.0368449279987 -0.2692022409131012 -2.041782536874973 -0.2708153170317462 -1.970111852134346 2.104603819983416 -12.3555746399003 2.263368095380636 -12.37956326639033 2.08230281117703 -12.40167038066848 9.32386341854952 8.060760162181634 9.213393011722527 8.025333388192625 9.173726796444461 8.085225447582499 12.7899050949888 -0.4858003816846102 12.78665253242415 -0.4141479984494593 12.9221740432598 -0.4665980185557766 14.06694860356962 5.079879634166077 14.18890743457071 5.132551667297761 14.12335059514188 5.040190888040765 -11.63926400797328 3.650124832804263 -11.65672370358244 3.580658438034242 -11.7551336973387 3.672266359464239 -14.040961428408 -3.377372004499843 -14.04116932659438 -3.440689114165275 -14.14658836200364 -3.353706454584627 -3.216169742629988 3.668627800080283 -3.3470595416947 3.680993521193265 -3.331949865724662 3.746580430014112 -4.722760749898429 -7.388507798890246 -4.866157188968598 -7.376439344943446 -4.872637093404352 -7.314951635262013 2.441276897947144 9.256388152744684 2.464733173086069 9.202101817825563 2.27956816312952 9.240210616354544 4.099497544879366 -1.954398815108549 3.934707466174498 -1.891859439378896 4.097124746122517 -1.882741204964311 10.28679665333218 -9.55111078985407 10.29915308041363 -9.599464738469202 10.15833528027843 -9.600033511569006 -14.0313523227092 -3.403712108547272 -13.92487940393833 -3.489896731787537 -14.04042334903859 -3.466542244982329 9.501306724047314 8.245615096325874 9.525237369861188 8.182033322622552 9.375538847682615 8.20810706816202 12.78717640985949 -0.4133075106291555 12.91941349600125 -0.3941083830843282 12.92269794106268 -0.4657574981681045 14.61143798405062 4.032658570032269 14.6779568813945 4.110507649492734 14.7387808575135 4.076745966450638 -11.48897290523528 3.739193253582524 -11.59505371846435 3.76156720255288 -11.58645548537 3.831412768158509 -3.380388628368072 3.567464747418849 -3.406076138657888 3.501446721888508 -3.522365915904623 3.578928451648824 -4.998245329300623 -7.510543101540707 -4.979964728764355 -7.572001250257447 -5.129014831207162 -7.497413351163496 2.149604211795809 8.835494032108198 2.007084013457891 8.818153680452083 1.963670867818541 8.871212808150418 4.094262821413906 -1.96292694577729 3.931665525536867 -1.972058371449767 3.929473477427657 -1.900386371997663 10.17829312647092 -9.599948352422073 10.31910956347468 -9.599199299688607 10.17280112872961 -9.655420190083264 -9.316254472666486 -5.826996924206522 -9.303863301060044 -5.889475149735193 -9.433707180697631 -5.80933284990105 5.219623450817705 9.271351503613806 5.093723253759006 9.246834998724584 5.049052572595961 9.303068030101867 7.951559087364776 -0.6412194389881604 7.948777815341384 -0.5695571443647469 8.09707311484344 -0.6278226057603324 15.35532066057611 -2.511140629279202 15.48218857265067 -2.479001703325898 15.38463234973965 -2.564970037713789 -6.966465094775876 4.581442424054657 -6.99050492619986 4.513866426770374 -7.094633884341501 4.597278060518924 -7.521451032176511 3.61066541576182 -7.635989640963516 3.628250566156945 -7.621197049279221 3.69630427333927 -10.3088504494802 -6.555562620562625 -10.18258930748457 -6.636844638860417 -10.30749043520318 -6.618671772527335 6.233712437734143 8.765770130190903 6.260513104295848 8.706296548122296 6.094369139830206 8.738955245922327 8.92706038664681 -1.760091042702666 9.069393317287368 -1.745678052257445 9.072323760267077 -1.817333720387403 15.54416015800116 -1.990399084550134 15.62904909723136 -1.915963200604998 15.67174406748427 -1.960322227869128 -6.831802715722461 4.640728535202147 -6.949533199087423 4.657208571482958 -6.935394278696251 4.724553239287008 -9.248896727417073 -5.740835104840788 -9.118240815041684 -5.820156485058486 -9.246154449519535 -5.80328029413092 5.473604965021468 9.563889420974039 5.500411311278914 9.505396325850203 5.330494512391879 9.539215823102895 7.950652257154573 -0.5665908250678693 8.096150953942924 -0.55319775817413 8.09894775855579 -0.6248559684586534 15.1925319715638 -3.24759828445453 15.22952910220041 -3.29400364160618 15.10017600109296 -3.319279254873929 -7.891072055714634 3.352935866461872 -7.91519742493267 3.28520456318393 -8.016371012592039 3.36980073736547 -10.17500072316481 -6.570157493960294 -10.16290009309585 -6.632656708079453 -10.28925578316296 -6.55146566332026 5.986657426487017 8.446556385335573 5.86413100785422 8.420215038804495 5.819883106826831 8.47716229727919 8.929776208138149 -1.832160737986664 8.926791529790229 -1.760514515210639 9.072054877428942 -1.81775723369749 15.66701376799944 -0.9783002777776192 15.79123625943135 -0.9405057848538351 15.70346864538021 -1.029823427723467 -2.500719695981619 4.524530029441979 -2.525549445241953 4.459127513282915 -2.647642639313123 4.535068605183699 -3.942146411050595 -6.372980874360702 -3.923832572463375 -6.433779698820954 -4.076910955167456 -6.360771495474762 1.483904184527199 9.561395124151474 1.337785115612684 9.545407266760183 1.295200518390034 9.597789414202421 3.242483397986038 -0.7579559943692092 3.075968938795046 -0.7662279051947981 3.073933304126496 -0.6945538136319028 8.512417092495033 -10.32298658489478 8.656098880124437 -10.32843392218386 8.501133126462786 -10.3770395928027 -12.31062969116331 2.334741279894416 -12.41689114865545 2.358221775631326 -12.40896750067222 2.428285060972218 -14.63816060915118 -3.821195179458037 -14.53399144552333 -3.908335185089237 -14.64863904940625 -3.883875467538479 10.26236423114046 7.249296450689785 10.28489374037232 7.18494974073067 10.13842943789895 7.209296925869164 13.52355896499183 -1.613716376376942 13.6550723100157 -1.593432064768807 13.65844209470788 -1.665067718158606 14.09991308392805 4.639490861823022 14.16599736601803 4.717026136492397 14.22915355038108 4.685266630352737 8.788488237088608 -10.12798354720368 8.796052426932297 -10.17689648932067 8.652306382496375 -10.17262519852349 -2.371567143150093 4.596700363725082 -2.50642734926275 4.608237572051789 -2.493275855896436 4.673022432840953 -3.78430044007796 -6.313732194052271 -3.931145281618049 -6.302595333248764 -3.937799912987282 -6.241273192978645 1.782809933308843 9.953007340646517 1.804905009737884 9.899599284133563 1.616993544966533 9.938447446195459 3.241532559973215 -0.7595219686982793 3.072982608619848 -0.6961195535170441 3.239480465872795 -0.6878514820594498 -12.42530916149478 2.265179665518415 -12.44105980679314 2.19549507720607 -12.54021032369249 2.288506443755372 -14.62358486451729 -3.77115335474277 -14.62627040961729 -3.83434831924801 -14.72939450703828 -3.746442437418204 10.1023471662799 7.040222923220669 9.993554517886814 7.00270132489752 9.95549217949794 7.063067370997599 13.52458410251526 -1.689266327031849 13.52115506067016 -1.617627667156174 13.65603815690644 -1.668979063359222 13.45461774792339 5.697184490404029 13.5783770586753 5.75153144860526 13.51294296292588 5.659525030692673 1.014690950843121 -12.11663124004425 1.17537518814207 -12.14350651064685 0.9907205511797523 -12.16215385674492 1.264075662050836 4.189519476131035 1.243388873257321 4.125964111825926 1.099817803985207 4.196189504428813 0.4673769886640489 -6.020335381620615 0.4844744476427143 -6.080392915198992 0.3166021828830345 -6.012037540659113 -1.761759282282831 9.43015781718068 -1.925728678680547 9.420099661138508 -1.960327547221517 9.469229370014885 -0.7688898965897573 -0.8230996335946782 -0.9549642682426174 -0.8274392837222506 -0.956250766282728 -0.7557577628853899 -15.19330405131315 0.05414267666623342 -15.08107427147584 -0.04583516753619212 -15.18980416421651 -0.0165813374473745 -15.38320571842679 -0.7923613784146872 -15.5019255284498 -0.7626306160302011 -15.47895006537258 -0.7020385691561549 13.68650503500174 4.299702224244425 13.55183587419863 4.312891019934559 13.67473921022667 4.36644752903264 15.45824821487032 -1.620570965753599 15.59464333798052 -1.594387962670079 15.59778762616587 -1.666034706694511 10.79189359370333 7.666814231405859 10.87122864400065 7.742473895766769 10.93987742447064 7.717835743724457 -0.7703004781157707 -0.8255210326760056 -0.9576610888682857 -0.7581787161325122 -0.7715732426255029 -0.7538313547661745 1.778286364410675 -11.90983560336739 1.77804551703557 -11.95403053058855 1.616207682952542 -11.93184872174972 1.365256330563085 4.257472221684335 1.214451253263434 4.265422351228076 1.221941527199604 4.328020805182042 0.5826742952321196 -5.962450017197482 0.4184446197114011 -5.955500000858146 0.4145570142747557 -5.894468312519247 -1.444124018428738 9.875071867116349 -1.432332061488176 9.825878705512288 -1.630036020735471 9.867574516725208 -15.13510898130446 -0.1277036663153544 -15.14062346132247 -0.197368529510042 -15.25401163859221 -0.09820285460529746 -15.34404912632395 -0.622495503643787 -15.35779210162691 -0.6839336990528583 -15.45270346636389 -0.5930684675220791 13.62122321793794 4.218213113484372 13.51332372741659 4.169209210486512 13.48643252066339 4.230609793324678 15.46110504780544 -1.692543462570089 15.45806501082362 -1.620894189637015 15.59760459557591 -1.666357601115251 10.05404981183326 8.378305574643399 9.993399696873748 8.408938045726183 10.13677166563572 8.467544628186102 -4.063059155156619 -0.8353382126857687 -4.261211129912291 -0.8373339753968095 -4.261764153119739 -0.7656386259025787 -3.624446300062396 -11.61153590791261 -3.444921050296364 -11.64661732670519 -3.64290359458888 -11.65327802917651 4.441627694957621 3.865253383168413 4.428151159980009 3.803278440298052 4.266677110372116 3.869693067444076 3.951991687691889 -5.499356229291178 3.963641345931631 -5.559773393117843 3.791340875873948 -5.493283642945681 -4.674848168727623 9.109147391339302 -4.849722149830364 9.102304693643468 -4.872440629189781 9.14906593688756 -15.24272907547402 -2.445600044142842 -15.10806528768003 -2.548614522745822 -15.23120451688002 -2.514808568212807 -13.55021063714692 0.9654728555716822 -13.68495011639433 0.9993002837953395 -13.65765443307141 1.057870411709243 15.34307555176697 0.5470788279153219 15.20563682778075 0.5478966789233634 15.34261026321523 0.6120203932839424 14.63172319940607 -1.807786190902387 14.4751871433517 -1.767668727123996 14.62942616252619 -1.736119794967284 7.672497759405001 8.912051791552361 7.776636352312886 8.987325316822584 7.842855491527995 8.964939803713735 -4.350251040182328 9.565284962967189 -4.351686406488788 9.519179403921218 -4.548369361415071 9.561786976237627 -4.061759511312889 -0.8330609254268785 -4.260464782402377 -0.7633618205088316 -4.062317450691976 -0.7613697078542134 -2.85712913743405 -11.49667385902394 -2.850489882871745 -11.53845650666469 -3.031519617077479 -11.50853971924043 4.518983317144437 3.916321147022446 4.358320612901633 3.92219580262794 4.357690149972163 3.983007222366772 4.039896511612485 -5.45444610526401 3.864903750589893 -5.449852076060785 3.867416205982026 -5.388245530184067 -15.06231066508583 -2.55915116799835 -15.0610756758975 -2.626864915420742 -15.19678432401783 -2.524702503740438 -13.44802876986035 1.137943687362982 -13.46467638624907 1.078157764219027 -13.57149530763278 1.171002601461354 15.22106312277357 0.4087908255897527 15.20453482142578 0.4672828092326593 15.3419740123088 0.4665150475427812 14.63140542723944 -1.80856336333294 14.47713890354123 -1.84010823406923 14.47486945548052 -1.768445696007263 6.950262782480033 9.471133391549175 6.89590785918227 9.500232862250732 7.062444701174898 9.56018068449082 -7.487394148298494 8.573694770096324 -7.663641339526092 8.567316253236985 -7.673160485047404 8.612823631910413 -6.915688696808561 -0.8039597986707788 -7.115474872245784 -0.8054259993671988 -7.115343671823422 -0.7337335125323977 -6.763434381684665 -10.56306221158506 -6.570229433382108 -10.6007149141518 -6.769909414946731 -10.60486080504658 7.279480984661992 3.597118155378024 7.274552072569445 3.5364284491978 7.103164125274994 3.601050046442265 6.887176528697962 -4.99912379211539 6.891461263893964 -5.060669803933004 6.725229310738888 -4.993549452926467 -13.31176386080408 -4.229857291475468 -13.45240909265846 -4.192865096968319 -13.46609882765458 -4.126006151954485 -10.83768232269496 1.66025454855169 -10.99153342130112 1.697217782699805 -10.96617884397112 1.755080016503789 15.05513414312248 -2.929458500129131 14.90307206307761 -2.939457938394155 15.05979524212977 -2.869651091769685 12.3030653004424 -1.969860042021035 12.12591299340717 -1.933973904364396 12.30161950399677 -1.898184292516542 4.723870251785264 9.449370326847333 4.852389123705911 9.525825311495995 4.911154425809104 9.502629712394876 6.975051470990898 -4.942803120829991 6.798692676394218 -4.938761747194716 6.808609952567694 -4.876004934764689 -7.126225316815738 9.058697131945015 -7.141298119213927 9.013805050529358 -7.325989980772993 9.055964245359856 -6.915260094854291 -0.8032137653438117 -7.114915169106806 -0.7329876538033533 -6.915174196420701 -0.731534154526603 -6.103271939598473 -10.49792485793571 -6.084663238990822 -10.53994582455564 -6.27927514707795 -10.50708158800265 7.362923206179658 3.650629986308441 7.200968422508658 3.65606659817725 7.191724514458215 3.715561292281329 -13.2030024352036 -4.164854434851944 -13.20153800437188 -4.229958686246682 -13.35674489267645 -4.126914834292836 -10.72570024469355 1.826637398278902 -10.73875068089943 1.767335768490501 -10.86680474638441 1.862530914501934 14.90143676085357 -3.047577023467554 14.88873976375032 -2.993960090809757 15.04085156516503 -2.984440143430873 12.32127594212159 -1.914098058540295 12.14701072847506 -1.949873121586343 12.14412101543217 -1.878219924701581 4.0291844670488 9.923808407340633 3.985430680084988 9.954490974167777 4.169405307455116 10.01446542940076 9.536794013608152 -4.462194694740108 9.533782355159215 -4.525390179938007 9.382409542147537 -4.455427051376391 -10.53225366042801 7.603431576150599 -10.36631590090824 7.56636959339067 -10.53419542589385 7.55702510536641 -9.594147782496624 -0.738051148323845 -9.784656798212625 -0.7408131756533698 -9.783857074494744 -0.6691362938423919 -9.039279083403454 -9.329099054071826 -9.229658116192191 -9.336367651976783 -9.236574194485234 -9.292203676274113 9.996664325993033 3.323876594503436 9.999758976611977 3.263988597419473 9.828455534869217 3.329133373186584 -10.81236405832315 -5.202405833090098 -10.96689267888937 -5.163493855529669 -10.97723055393982 -5.098889259997633 -7.945846669509219 1.942040842604744 -8.114837104515585 1.981077467667451 -8.095468309942346 2.039300499863573 13.44555377899035 -5.722845149186801 13.2718020442364 -5.741159222974686 13.44930044874594 -5.668385488500316 9.551212845833174 -2.067257292745881 9.356428823815445 -2.03415149923091 9.548965761671711 -1.99558984223392 1.717930116480462 9.657357346156919 1.862977772807285 9.735595855046842 1.911369143311934 9.709577235272551 10.08722773024519 3.363977652367786 9.932836300581196 3.370646339916129 9.916160148038228 3.429504855946295 9.611478999249615 -4.421325090709555 9.443316131774665 -4.415996288949406 9.4598720223863 -4.351676442092369 -10.01126119959499 8.041651574985904 -10.03692103013628 7.995640913818866 -10.20166097511033 8.035874096782276 -9.590491984643556 -0.7319188440720925 -9.780202193639365 -0.663005551772062 -9.589631784520996 -0.6602278110998927 -8.68402935360943 -9.267708074558898 -8.653250377112627 -9.311552877217336 -8.851763232578662 -9.278949345863072 -10.69708102558122 -5.095529890365388 -10.69993902961422 -5.15834467524064 -10.86539459455302 -5.055411373784887 -7.839671958561465 2.10803629031163 -7.845384988757957 2.048220673213373 -7.994654484578808 2.145814607986833 13.20713266403885 -5.808092499641509 13.18948164541695 -5.761266192426767 13.36344654298511 -5.744250423559999 9.541799474717381 -2.101472443337359 9.347741741054378 -2.140052743973339 9.347016585153993 -2.068362526728548 1.048068770617405 10.04590529425994 1.017395681624552 10.08021894117362 1.207892249537637 10.13875127834151 12.83767395401848 2.698986728442435 12.84552576966404 2.639001151082407 12.68547499766774 2.707896515781035 12.19007387417367 -3.690027264313976 12.18236616770497 -3.755371748820067 12.05114756150089 -3.679793077046705 -13.6847447484432 5.059584858768628 -13.53894561278187 5.027794348473811 -13.68975166940985 5.009495630370664 -12.32373667467696 -0.6168744855933682 -12.49746441137699 -0.6230815870010857 -12.49579470706584 -0.5513993937111484 -11.29345915585524 -7.712465629287292 -11.466261119214 -7.728197475164605 -11.484274482541 -7.680157671561071 -11.0488157510744 -7.699846840393462 -11.00794129425475 -7.746544249156349 -11.19970009642913 -7.717901053537395 12.9532236713963 2.710097356456946 12.81430096200746 2.720361768609917 12.79365822014097 2.779685891348705 12.24528567217559 -3.674476110397896 12.0931195139615 -3.665541122783011 12.11378937378306 -3.599196707333899 -13.24668300105622 5.552669176034209 -13.27498439793351 5.501533482188964 -13.41943499051357 5.536929260000039 -12.32821947329562 -0.6239970089056176 -12.50027623685066 -0.5585198536556275 -12.32650008363278 -0.5523110906066112 -13.36310661905929 -5.473252846037762 -13.51044144690146 -5.502397267310456 -13.53546961842194 -5.449228530517056 15.1263722205753 0.8592046569825994 14.98833714938398 0.9351449853558649 15.12049538521006 0.9205372104145613 14.43546145435956 -2.207325359050818 14.55616608435863 -2.222580144035128 14.54868152216749 -2.290633884856736 -15.40432062586234 -0.6540735496541649 -15.26903812716624 -0.6747706332014749 -15.39507862640394 -0.7093698073846665 -14.82851332735466 -0.395930172972622 -14.67983003546081 -0.4561951589922989 -14.8311649902656 -0.4675984998802772 -14.67669144842454 -0.3836741134547166 -14.67923753443616 -0.4553306183272226 -14.82792107333716 -0.3950660094364775 -13.25977947330466 -5.505259539099626 -13.21515893627361 -5.555856328325733 -13.38804138621756 -5.534265000376434 15.06592590381197 0.7949183730560385 15.04958965728272 0.8563438067854571 15.18653205457936 0.7791889501055175 14.44887420594791 -2.221098491344252 14.46757081307544 -2.152410636712895 14.58111664790307 -2.23544433269069 -15.27343877946977 -0.2580655324412888 -15.28399160635668 -0.3176916508017689 -15.41846274708106 -0.2939468882336187 -15.15489713583819 -0.2930545131389879 -15.02400035057708 -0.3480907070138636 -15.1580557308389 -0.3646959281434475 -14.64004338551176 -2.908526691681026 -14.76549146020981 -2.951906082740725 -14.79326258245243 -2.894331131751723 14.78447366758369 -1.983047770355964 14.6682838501449 -1.899810410831432 14.78675948373065 -1.920318165566193 15.18132268652138 -0.1860261308141984 15.28883659560063 -0.206227821846232 15.28524048915518 -0.2764157387729871 -12.27734432771938 -6.829349901605035 -12.13965494240189 -6.834719327394617 -12.24384501612055 -6.883476791472139 -12.33966146130525 -6.851885096165651 -12.22234766411602 -6.798219207906983 -12.20201939532969 -6.857959085798884 -15.01585657326699 -0.2708411029036731 -15.02036425776285 -0.3424568602995842 -15.15125945875786 -0.287418334694042 -14.6342578746901 -2.942791200881442 -14.59079495631652 -2.995922132173253 -14.74421065985963 -2.983107103282456 14.60302270780954 -2.122026055656785 14.59515925615846 -2.058971806229413 14.71025028138717 -2.143148553045156 15.1610746810059 -0.1524841104103744 15.17473354108876 -0.08251764405130165 15.27969938334563 -0.1721547169097974 -6.055555958381284 -10.13689521376172 -6.109293428726534 -10.09175613382068 -5.954165196393753 -10.08240321614815 -12.50712676704969 -0.3609261135720588 -12.37630511964687 -0.4101709921625641 -12.51170521897669 -0.4325390927646903 -15.01286009738145 0.3586968549124524 -15.12701739267614 0.2979730324215424 -15.15000901865558 0.3585104446830472 10.84952558199501 -4.762879802184586 10.96736671779413 -4.789700952631367 10.95296857640354 -4.852037245898382 13.54445832625182 2.423189007954147 13.65426894193496 2.397400250851552 13.65981778591051 2.326748239006758 13.44017808013487 2.375974715736394 13.44222149290781 2.445933175648131 13.55851676484037 2.350190470906875 -5.959989731223443 -10.33633530654006 -5.846006881234751 -10.27464543694393 -5.80498708068003 -10.32577220688333 -12.36535272687875 -0.3269657940999559 -12.36931942813025 -0.3987688918611639 -12.5001415634012 -0.3495248153306038 -15.01275536901793 0.3432054555686024 -15.14990432501753 0.3430355903118844 -15.04889054441675 0.3977934493564489 10.71254331328887 -4.947072107482407 10.71930958092027 -4.884141894327106 10.82196691836965 -4.973859538279792 9.67152506378822 4.020897325168522 9.535652384218324 4.120325989301343 9.655860114538498 4.089780643099239 -0.6889855687148927 -10.54988316887613 -0.7482746903791204 -10.51141412699299 -0.572802348235919 -10.49301115116569 -7.801734852957861 -0.5277913027634515 -7.654831888932751 -0.5711515032322861 -7.805032899902522 -0.5996153304288365 -14.0236079020574 3.849147847560284 -14.03759278502901 3.909702567002443 -13.90483196929648 3.926144344553958 5.733703215387842 -5.75092622637404 5.709913740674724 -5.811244678157066 5.60288730036522 -5.719178957831415 5.475538535691138 -5.970370763176142 5.35566738907929 -5.939017535048345 5.369515924491523 -5.877589052009471 9.393183861526399 3.997550209745355 9.387608254834845 4.065358134287658 9.524234353431588 3.966570448214895 -0.5201254825616619 -10.77382636002158 -0.3895973034986966 -10.70880401546718 -0.3449848269301892 -10.75356217563272 -7.632245257255401 -0.4581488748053558 -7.634983779827445 -0.5298077574305262 -7.781888752192396 -0.4864517679305999 -13.81979254993046 4.004258330611974 -13.95283357076398 3.989283648150336 -13.84656499739853 4.057176476978639 1.046991573693943 -5.595370136162568 1.021968904281189 -5.654570323446632 0.8977851091591166 -5.559583517961907 5.049664706234381 4.52874270417023 5.068037022190874 4.462347923488265 4.912447918256355 4.562935780883287 3.300069892680144 -9.869433582197893 3.244388704195255 -9.833152729621558 3.436962751592062 -9.810535375168353 -2.887294530197833 -0.6252927187659304 -3.057845615112787 -0.6585940112285035 -3.055890342325662 -0.5869192556475147 -11.42281743810625 6.936435609898983 -11.42953743048822 6.993144953376537 -11.28770119512382 7.024820502476782 -11.00683453332838 7.117032035368696 -11.14967134513006 7.088273201472219 -11.02787819605507 7.164941813816665 0.8565613427156482 -5.761645794202346 0.7196533104223468 -5.726695200480043 0.7329961149335273 -5.66616107925037 4.90463205198234 4.350634804338514 4.755074876457686 4.385620809493025 4.748420206168268 4.450623579185506 3.459444348059531 -10.07934664992524 3.61324729743068 -10.01248305421866 3.651640238215035 -10.05481934312903 -2.887167692395809 -0.6249490118808861 -3.055763517245049 -0.5865755833510511 -2.885210157968473 -0.5532809029935275 -7.981571083229049 9.028755434296995 -7.987339464177467 9.07924109308836 -7.827904945542627 9.122818952272414 -2.731511830344187 -5.091509934117188 -2.752790423338037 -5.150622991096434 -2.897095942081317 -5.052740895802208 0.8831633149921303 4.340876154958427 0.8985552531553698 4.276796877166733 0.7308630172796837 4.377640666346864 6.479603226516543 -8.854242445425069 6.432656682515511 -8.817627836163625 6.634004203371501 -8.793294566101821 1.153653190403491 -0.6465280204784539 0.9646992024465306 -0.6835551247009495 0.9658881231462513 -0.611876575258182 1.153661032484155 -0.646501757147482 0.9658959644244591 -0.6118503146181035 1.154823566991007 -0.5748086689895912 -7.346889600048491 9.120113331780186 -7.508118143460947 9.08083200619877 -7.368801167472475 9.161201702913671 -2.919300446813514 -5.261696061418462 -3.071246920081444 -5.224036429610965 -3.062998735828634 -5.163262678543154 0.7582881172155453 4.154095522294827 0.5923837358809814 4.19196963560762 0.5901373538728749 4.254465696925111 6.619498629445356 -9.031308050738627 6.793269565919365 -8.962176649520533 6.820474276857828 -9.005141365953339 4.573192378001205 -0.6125857144513612 4.37394493166598 -0.6517516198939314 4.374391805653159 -0.5800535608648925 -4.386298460503134 10.16145455378166 -4.397610378910208 10.20511443037593 -4.220346270762134 10.25668177506712 -5.953669404898961 -4.578510320922733 -5.96853167702881 -4.63850078354304 -6.128426190224411 -4.53702549069464 -2.683371087115337 4.032857476182938 -2.674673651011776 3.970711939089664 -2.84407538994616 4.071074086936254 9.226955147384821 -7.660881436554149 9.191493256359289 -7.621820635735081 9.390705744112637 -7.598111054756348 9.338603479848972 -7.777732413618265 9.523076059965172 -7.706722186865398 9.537494056868775 -7.752405522686252 4.574667099394521 -0.6070062188160854 4.375866372032322 -0.5744746514511236 4.575156205994778 -0.535321328252991 -3.395417716892807 10.02484254912804 -3.575795402530674 9.980456970048538 -3.423559843750712 10.0596928702885 -6.118492684033487 -4.736181739891753 -6.278788735486867 -4.696918421360685 -6.277799551221619 -4.634136081968771 -2.77972732559265 3.868564866859452 -2.954812525223386 3.908104795001608 -2.949455647898713 3.968584970213615 11.69545908166266 -6.165375805374608 11.67151544575997 -6.122238471044303 11.85833574578004 -6.101659248474226 7.637462989591356 -0.5355783370673395 7.438884692436969 -0.5746213808480272 7.438681293734168 -0.5029356362676966 -0.5582846036325895 10.53883502273829 -0.5785103288784865 10.57693357934863 -0.3886621095636678 10.62900956161593 -8.859353395442366 -4.046293228179557 -8.866995217462531 -4.108791938055727 -9.03380027510906 -4.006420625215727 -5.824580325974829 3.787066497246632 -5.824401130254482 3.726439851574833 -5.984874911116784 3.825496089114379 -5.942767319525971 3.607580836929528 -6.117519171334913 3.647312480138302 -6.103624512072361 3.706251477403339 11.97108734405456 -6.195225668013294 11.78453809437585 -6.217274084336009 11.96786582673064 -6.145659251872847 7.629293246343014 -0.5664444235559801 7.430512536984056 -0.533798005330548 7.629012160527599 -0.4943906564864924 -0.2527148976834848 10.426971256602 -0.1009394200350589 10.50549989700128 -0.0616197760525572 10.47614398638011 -8.98003503097816 -4.174401339799997 -9.139893049866142 -4.134862396061923 -9.14633215593846 -4.07151990249627 -8.770561771941035 3.540886308410352 -8.778858771816418 3.481298733443971 -8.921820672219136 3.578192612107353 13.8205604012978 -4.096182285690041 13.80489155300077 -4.048106118542218 13.97232917348637 -4.032443978879279 10.44162978337981 -0.454062169185013 10.25329748679828 -0.4923326406169787 10.25224640736305 -0.4202832786225502 2.049549289613083 10.67640891533256 2.015247200976578 10.70942968634257 2.204802280708125 10.76855827136951 -11.53884325552663 -3.361979106691222 -11.53994084497939 -3.425517949534014 -11.70336417460099 -3.3223492902048 -11.63956842215784 -3.46330567287018 -11.79036667523766 -3.424862631705987 -11.80240804439404 -3.359567414257415 -8.887154949704883 3.372339220817581 -9.052081955590012 3.410858693299133 -9.030521953711299 3.468861975536915 14.02535964430971 -4.046920049696856 13.8580741391765 -4.063557718650049 14.02948956143378 -3.991233470963821 10.44654033069043 -0.4369218072722863 10.2571562531056 -0.4031453509545165 10.44557797820856 -0.3652357474518481 2.707638549323608 10.35051710495292 2.848398701466685 10.42835952246278 2.900166810352733 10.40336765268271 -13.89772784137746 -2.27334240652978 -13.89557361235264 -2.339299382153396 -14.04530211187303 -2.236344258840307 -11.62090563237156 3.142693003923645 -11.63560262689902 3.083377162266487 -11.75653812075608 3.177770661628187 15.13872884348619 -1.192185087423372 15.1254733683409 -1.137387144853773 15.27263390473562 -1.130954480547717 13.10411268779496 -0.2917334904157112 12.9350456270925 -0.326316947574528 12.93327751803514 -0.2546403847331626 4.966741529943247 10.42277976527329 4.919444935066543 10.45275846755024 5.098615749409144 10.51294560743031 5.678334940376205 9.998461887926403 5.799430404982195 10.07443132639926 5.861008033938964 10.05173705671813 -13.98068115255331 -2.32830077837097 -14.11587787742318 -2.292197086898061 -14.12956947632326 -2.224594367388785 -11.72922315943382 2.98463851391629 -11.87716989060118 3.020694099171451 -11.85063250064586 3.078654831939861 15.27921675181462 -1.108640329116497 15.13208634560243 -1.115486239458057 15.28355613780346 -1.047027107021943 13.10657820200534 -0.2846167827524169 12.93574257665943 -0.2475249755766458 13.1048417397712 -0.2129342117484297 7.924722301249481 9.732726897339406 7.8677461158809 9.761926573472087 8.02736526555074 9.821600983136177 -15.31437027633269 -0.4230223300898341 -15.31455082822898 -0.4914775418484327 -15.44305330662821 -0.3899955236348888 -14.18313452367816 2.150841275867112 -14.19973105728396 2.090634966396744 -14.3011621683106 2.18283567579907 14.87470401516739 2.501900133340608 14.8554805185815 2.561726152960566 14.99041859131321 2.557294767111326 14.98885956911455 -0.1510839771208635 14.98630899121961 -0.07941647313219935 15.13671974235762 -0.1211489381461692 14.98514250518259 -0.08211323242492062 15.13296454395576 -0.05218168754687864 15.13555282015459 -0.1238466702588365 8.664285561140369 9.203189903951314 8.76029235789291 9.278252121737998 8.82799872421109 9.255552621407876 -15.45898467712232 -0.2955347628614812 -15.33159006155596 -0.3978775287379471 -15.44939251441896 -0.3653735813311292 -14.27392021680073 1.982302751646204 -14.40287565241049 2.014917648040245 -14.37606452241652 2.07401491811839 15.0023280162694 2.584079828611297 14.86740545328029 2.588794416056637 14.99875333259749 2.650025172967234 15.16743422483861 -0.03545912243787345 15.1641764795847 0.03618896027725767 15.30158395565982 -0.01107473894987238 11.07174268466244 8.20622935854772 11.01027811487094 8.238076117138485 11.1455013915099 8.295039026640007 -14.53472554868212 2.127210024263323 -14.54335301702772 2.057293376693322 -14.6507686977999 2.154848983675576 -15.47116303379385 -0.1007349528659712 -15.48262111907089 -0.1628323662475132 -15.57514096968452 -0.07273631401580578 12.60731898493821 6.118625135813931 12.49951527187993 6.073027679581337 12.46898561727446 6.134508540228222 12.70625820915137 6.161370650101258 12.56811952074999 6.178270083019855 12.69059355607208 6.227755612237238 15.17563565399611 0.05617942024194091 15.30690519968065 0.08047237589028985 15.31304001235715 0.008910112217603286 11.69878959471147 7.58601203297724 11.7704919551024 7.662925350350643 11.83828156757457 7.63620236135994 -14.56680894469698 2.286669607262608 -14.46036782134315 2.188455181777495 -14.56459089025118 2.215883996012861 -15.56345211267266 -0.2696120734411502 -15.46905507231649 -0.358494914505298 -15.58614161625408 -0.3304375255316758 8.697078951015156 8.540115820692279 8.58627011746384 8.506442857040527 8.545172472107982 8.565718295780178 12.19835884505356 -0.146800505000047 12.19213361164655 -0.07524307380881749 12.33064208256117 -0.1284401721676801 14.47349470592138 4.48647907063768 14.59418708410047 4.538283916644543 14.52695133721591 4.444175897312884 -11.01679911358996 4.269145009458118 -11.03367668443019 4.199593819634335 -11.13378158180757 4.290461772431124 -13.39670242866168 -3.613704573406853 -13.3974098807348 -3.67709239098218 -13.5059011192523 -3.590829072605744 -13.55801168547825 -3.577066294607589 -13.4499401887031 -3.663655054369639 -13.56513458783688 -3.640840594633713 8.898762902518534 8.731761099374541 8.923678733635118 8.668841967120205 8.772269057933174 8.696205070621195 12.22654416361658 -0.01943562022145843 12.36175311937746 -0.0009825789137929406 12.36505519422629 -0.07262859400753216 14.96845522977058 3.35133289154442 15.03615162692535 3.429353310215399 15.09484373679222 3.39390961733253 -10.68882058697654 4.505299613626308 -10.79840624940081 4.526999730518657 -10.78713880123417 4.597366855888582 -8.815494644472278 -5.774511367979984 -8.801509248545763 -5.837578937177788 -8.933635321618514 -5.757277826503307 4.651988984499353 9.594854799842905 4.523448716069428 9.571625854314807 4.478680923413543 9.627328050368947 7.233951611409601 -0.2541372185253958 7.231213088075283 -0.182476503054494 7.382068434324744 -0.241491627183106 14.91065914675177 -3.777910281812579 15.03981940364179 -3.750520227088221 14.93406510884929 -3.833128042733069 -6.265053442983705 5.143606840905864 -6.291094765920943 5.075706706149901 -6.395522489379975 5.158768798898631 -6.345477359525412 5.033386772475333 -6.463927420890339 5.049251737721187 -6.450084556044033 5.116308992652171 -8.474083960861563 -5.557050713172885 -8.340006663472 -5.635324761576602 -8.470310492685124 -5.619290757677044 4.919379370187534 9.892039163892946 4.945944916579555 9.834218944580741 4.773327107086453 9.868892812672822 7.231209888290916 -0.1824815909569086 7.379373083602277 -0.1698281144617169 7.382065234171519 -0.2414967156690114 14.69234096980359 -4.355588845689685 14.72486050333744 -4.403233806382385 14.59387961922222 -4.424614123615205 -1.90937130006707 4.862529816864804 -1.933865719907049 4.797384062894644 -2.05882916208763 4.872460549146258 -3.259884488636204 -5.995842963102504 -3.241426096467497 -6.056438235414486 -3.397107199959195 -5.98424868289719 1.008562531875875 9.818746833712917 0.8596763270423269 9.803705718484709 0.8179236377150179 9.855677732640089 2.620126335769311 -0.3648972911204835 2.450697965148819 -0.3725570392090918 2.448785794034122 -0.3008729346920752 7.297282070817186 -10.79052628969557 7.443048798000977 -10.80009820721206 7.282510597809422 -10.84334156262963 7.685732597629724 -10.53924170281158 7.690973169910333 -10.58765281235062 7.545016025874009 -10.58008674815488 -1.805251932654083 4.913604885475876 -1.942557170917669 4.924577889785635 -1.92990455257835 4.989000459575597 -3.12195266891699 -5.944773106357311 -3.271471099256043 -5.9343096193634 -3.277982172367969 -5.873050550567501 1.295189091977163 10.18834112042268 1.316212385300757 10.13563914392545 1.126338995694618 10.17493482702669 2.621653215864948 -0.362364782113812 2.450312437044271 -0.2983408183330653 2.619721777136519 -0.2906842249844755 0.2212680525864363 -12.01608980644756 0.3845430425278218 -12.04473635384749 0.1973876130544139 -12.06089738910327 1.735043255551679 4.502827643114138 1.715192325704423 4.439538812723861 1.568907206214536 4.50907519563662 1.002064494370128 -5.597568584395066 1.01857272779244 -5.657654025747636 0.8495047426544161 -5.589675080231888 -2.204111497812216 9.633141234618284 -2.370038473919489 9.623684474567677 -2.40325675258017 9.672348096396751 -1.277086089588083 -0.4169438540565115 -1.465326925407342 -0.4208737389001987 -1.466501008696974 -0.3491830297211277 -1.276098617083837 -0.4152397302612619 -1.465513719932773 -0.3474792237757546 -1.277299820395676 -0.3435675080228851 1.008678047437974 -11.80383616959896 1.00884506093083 -11.84753967263648 0.8443012179766773 -11.8238075444289 1.836118446626879 4.571597531119997 1.683531900332494 4.579163743572819 1.69008290622801 4.641457803520121 1.131624861292083 -5.515641120481698 0.9654699582544085 -5.509115040108265 0.9622789187873809 -5.448091689314831 -1.879254076347732 10.07453448642871 -1.869103492317738 10.02585820029304 -2.067363556438311 10.06774942589127 -4.483550424088096 -0.4202673357458706 -4.682577470094148 -0.4220754648921574 -4.683074645727208 -0.3503980807569206 -4.12237157436495 -11.35867777184159 -3.940446281391237 -11.39435600296643 -4.139369964723186 -11.40028547859709 4.849655206940618 4.19179664643818 4.83726873451684 4.130053938276838 4.673925980017696 4.196057977837305 4.403622006344742 -5.045024200443416 4.414330093866282 -5.10551545785776 4.242249595848798 -5.039119404646884 -5.086036520775776 9.288165469182147 -5.261618723685403 9.281580629012616 -5.282606409882941 9.328062374147711 -4.743147968121232 9.748715202730224 -4.746545622892838 9.702780256586332 -4.942146886322691 9.745521824623399 -4.480810009784761 -0.4154533985807034 -4.680334808808471 -0.3455851639672101 -4.481281815855905 -0.3437653901831514 -3.367600287503807 -11.23167592501437 -3.359409878330394 -11.27335911168447 -3.5428410360005 -11.24282287156327 4.94606400392554 4.265197287318761 4.784681055016228 4.27092107274445 4.782938276159995 4.331532646254946 4.494403742435357 -4.991993434953791 4.318710924411826 -4.987598654151317 4.322134653282708 -4.925900717261717</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"890\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 3 6 4 2 5 1 6 0 7 8 8 10 9 0 10 11 11 14 12 15 13 16 14 2 15 6 16 20 17 22 18 16 19 23 20 0 21 26 22 8 23 28 24 0 25 10 26 10 27 11 28 30 29 32 30 15 31 14 32 14 33 16 34 22 35 20 36 6 37 34 38 11 39 36 40 30 41 22 42 23 43 38 44 8 45 26 46 40 47 0 48 28 49 26 50 42 51 43 52 44 53 48 54 49 55 42 56 52 57 53 58 54 59 32 60 58 61 15 62 60 63 52 64 61 65 20 66 34 67 64 68 30 69 36 70 66 71 68 72 61 73 69 74 38 75 23 76 72 77 26 78 74 79 40 80 28 81 76 82 26 83 43 84 53 85 44 86 49 87 43 88 42 89 78 90 49 91 48 92 54 93 53 94 80 95 60 96 53 97 52 98 32 99 82 100 58 101 68 102 60 103 61 104 64 105 34 106 84 107 36 108 64 109 66 110 78 111 48 112 86 113 88 114 68 115 69 116 38 117 72 118 90 119 40 120 74 121 92 122 26 123 76 124 74 125 44 126 53 127 94 128 96 129 80 130 97 131 100 132 97 133 101 134 54 135 80 136 96 137 53 138 60 139 94 140 58 141 82 142 104 143 60 144 68 145 106 146 64 147 84 148 108 149 110 150 66 151 64 152 78 153 86 154 112 155 68 156 88 157 114 158 88 159 69 160 116 161 90 162 72 163 118 164 74 165 120 166 92 167 76 168 122 169 74 170 96 171 97 172 100 173 100 174 101 175 124 176 94 177 60 178 106 179 82 180 126 181 104 182 106 183 68 184 114 185 108 186 84 187 128 188 108 189 110 190 64 191 112 192 86 193 130 194 124 195 101 196 132 197 114 198 88 199 134 200 136 201 88 202 116 203 90 204 118 205 138 206 92 207 120 208 140 209 74 210 122 211 120 212 126 213 142 214 143 215 104 216 126 217 143 218 122 219 146 220 120 221 148 222 108 223 128 224 150 225 110 226 108 227 112 228 130 229 152 230 132 231 154 232 124 233 146 234 156 235 157 236 134 237 88 238 136 239 136 240 116 241 160 242 118 243 162 244 138 245 120 246 157 247 140 248 143 249 142 250 164 251 120 252 146 253 157 254 166 255 148 256 128 257 148 258 150 259 108 260 152 261 130 262 168 263 132 264 170 265 154 266 142 267 172 268 164 269 157 270 156 271 174 272 134 273 136 274 176 275 178 276 136 277 160 278 138 279 162 280 180 281 140 282 157 283 182 284 184 285 148 286 166 287 186 288 150 289 148 290 152 291 168 292 188 293 170 294 190 295 154 296 164 297 172 298 192 299 157 300 174 301 182 302 156 303 194 304 174 305 176 306 136 307 178 308 178 309 160 310 196 311 162 312 198 313 180 314 200 315 184 316 166 317 184 318 186 319 148 320 188 321 168 322 202 323 170 324 188 325 190 326 172 327 204 328 192 329 182 330 174 331 206 332 174 333 194 334 208 335 176 336 178 337 210 338 212 339 178 340 196 341 180 342 198 343 214 344 216 345 184 346 200 347 218 348 186 349 184 350 188 351 202 352 220 353 188 354 222 355 190 356 192 357 204 358 224 359 198 360 226 361 214 362 174 363 208 364 206 365 194 366 228 367 208 368 210 369 178 370 212 371 212 372 196 373 230 374 232 375 216 376 200 377 216 378 218 379 184 380 202 381 234 382 220 383 188 384 220 385 222 386 224 387 204 388 236 389 214 390 226 391 238 392 206 393 208 394 240 395 208 396 228 397 242 398 210 399 212 400 244 401 212 402 230 403 246 404 248 405 216 406 232 407 250 408 218 409 216 410 220 411 234 412 252 413 220 414 254 415 222 416 224 417 236 418 256 419 230 420 258 421 246 422 226 423 260 424 238 425 240 426 208 427 242 428 228 429 262 430 242 431 244 432 212 433 264 434 266 435 248 436 232 437 248 438 250 439 216 440 234 441 268 442 252 443 220 444 252 445 254 446 256 447 236 448 270 449 246 450 258 451 272 452 238 453 260 454 274 455 240 456 242 457 276 458 242 459 262 460 278 461 280 462 244 463 264 464 282 465 248 466 266 467 284 468 250 469 248 470 252 471 268 472 286 473 252 474 288 475 254 476 256 477 270 478 290 479 280 480 264 481 272 482 258 483 292 484 272 485 260 486 294 487 274 488 276 489 242 490 296 491 262 492 298 493 278 494 300 495 282 496 266 497 282 498 284 499 248 500 268 501 302 502 286 503 252 504 286 505 288 506 290 507 270 508 304 509 306 510 280 511 272 512 272 513 292 514 308 515 294 516 310 517 274 518 276 519 296 520 312 521 278 522 298 523 314 524 316 525 282 526 300 527 318 528 284 529 282 530 286 531 302 532 320 533 286 534 322 535 288 536 290 537 304 538 324 539 314 540 298 541 326 542 308 543 306 544 272 545 292 546 328 547 308 548 294 549 330 550 310 551 296 552 314 553 312 554 332 555 316 556 300 557 316 558 318 559 282 560 302 561 334 562 320 563 286 564 320 565 322 566 324 567 304 568 336 569 314 570 326 571 338 572 340 573 306 574 308 575 308 576 328 577 342 578 330 579 344 580 310 581 312 582 314 583 346 584 348 585 316 586 332 587 316 588 350 589 318 590 320 591 334 592 352 593 354 594 322 595 320 596 356 597 324 598 336 599 314 600 338 601 346 602 338 603 326 604 358 605 342 606 340 607 308 608 328 609 360 610 342 611 362 612 344 613 330 614 364 615 348 616 332 617 366 618 350 619 316 620 334 621 368 622 352 623 352 624 354 625 320 626 356 627 336 628 370 629 346 630 338 631 372 632 338 633 358 634 374 635 376 636 340 637 342 638 378 639 342 640 360 641 362 642 380 643 344 644 382 645 348 646 364 647 366 648 384 649 350 650 352 651 368 652 386 653 388 654 354 655 352 656 390 657 356 658 370 659 392 660 380 661 362 662 338 663 374 664 372 665 358 666 394 667 374 668 378 669 376 670 342 671 378 672 360 673 396 674 398 675 382 676 364 677 400 678 384 679 366 680 368 681 402 682 386 683 386 684 388 685 352 686 390 687 370 688 404 689 392 690 406 691 380 692 372 693 374 694 408 695 374 696 394 697 410 698 412 699 376 700 378 701 414 702 378 703 396 704 398 705 416 706 382 707 418 708 384 709 400 710 402 711 420 712 386 713 422 714 388 715 386 716 424 717 390 718 404 719 414 720 396 721 426 722 428 723 406 724 392 725 374 726 410 727 408 728 394 729 430 730 410 731 414 732 412 733 378 734 432 735 416 736 398 737 416 738 418 739 400 740 402 741 434 742 420 743 420 744 422 745 386 746 436 747 424 748 404 749 438 750 414 751 426 752 428 753 440 754 406 755 408 756 410 757 442 758 410 759 430 760 444 761 446 762 412 763 414 764 432 765 448 766 416 767 450 768 418 769 416 770 434 771 452 772 420 773 454 774 422 775 420 776 456 777 424 778 436 779 438 780 446 781 414 782 438 783 426 784 458 785 460 786 440 787 428 788 410 789 444 790 442 791 430 792 462 793 444 794 464 795 448 796 432 797 448 798 450 799 416 800 466 801 452 802 434 803 452 804 454 805 420 806 468 807 456 808 436 809 470 810 446 811 438 812 472 813 438 814 458 815 460 816 474 817 440 818 442 819 444 820 476 821 444 822 462 823 478 824 480 825 448 826 464 827 482 828 450 829 448 830 466 831 484 832 452 833 452 834 486 835 454 836 488 837 456 838 468 839 462 840 490 841 478 842 472 843 470 844 438 845 472 846 458 847 492 848 494 849 474 850 460 851 444 852 478 853 476 854 496 855 480 856 464 857 480 858 482 859 448 860 498 861 484 862 466 863 452 864 484 865 486 866 500 867 488 868 468 869 478 870 490 871 502 872 472 873 504 874 470 875 506 876 472 877 492 878 508 879 474 880 494 881 476 882 478 883 510 884 512 885 480 886 496 887 514 888 482 889 480 890 498 891 516 892 484 893 484 894 518 895 486 896 520 897 488 898 500 899 478 900 502 901 510 902 490 903 522 904 502 905 524 906 504 907 472 908 506 909 492 910 526 911 528 912 508 913 494 914 530 915 512 916 496 917 512 918 514 919 480 920 532 921 516 922 498 923 484 924 516 925 518 926 534 927 520 928 500 929 510 930 502 931 536 932 502 933 522 934 538 935 524 936 540 937 504 938 542 939 506 940 526 941 544 942 508 943 528 944 546 945 512 946 530 947 548 948 514 949 512 950 532 951 550 952 516 953 516 954 552 955 518 956 554 957 520 958 534 959 556 960 544 961 528 962 502 963 538 964 536 965 522 966 558 967 538 968 560 969 540 970 524 971 542 972 526 973 562 974 564 975 546 976 530 977 546 978 548 979 512 980 566 981 550 982 532 983 516 984 550 985 552 986 568 987 554 988 534 989 570 990 544 991 556 992 538 993 572 994 536 995 538 996 558 997 574 998 560 999 576 1000 540 1001 562 1002 578 1003 542 1004 580 1005 546 1006 564 1007 582 1008 548 1009 546 1010 584 1011 550 1012 566 1013 550 1014 586 1015 552 1016 568 1017 588 1018 554 1019 590 1020 578 1021 562 1022 592 1023 570 1024 556 1025 574 1026 572 1027 538 1028 558 1029 594 1030 574 1031 596 1032 576 1033 560 1034 598 1035 580 1036 564 1037 580 1038 582 1039 546 1040 600 1041 584 1042 566 1043 550 1044 584 1045 586 1046 602 1047 588 1048 568 1049 590 1050 604 1051 578 1052 606 1053 570 1054 592 1055 574 1056 608 1057 572 1058 610 1059 574 1060 594 1061 596 1062 612 1063 576 1064 614 1065 580 1066 598 1067 616 1068 582 1069 580 1070 618 1071 584 1072 600 1073 584 1074 620 1075 586 1076 602 1077 622 1078 588 1079 596 1080 624 1081 612 1082 626 1083 604 1084 590 1085 628 1086 606 1087 592 1088 630 1089 608 1090 574 1091 632 1092 610 1093 594 1094 634 1095 614 1096 598 1097 614 1098 616 1099 580 1100 636 1101 618 1102 600 1103 584 1104 618 1105 620 1106 638 1107 622 1108 602 1109 612 1110 624 1111 640 1112 626 1113 642 1114 604 1115 644 1116 606 1117 628 1118 646 1119 608 1120 630 1121 648 1122 610 1123 632 1124 650 1125 614 1126 634 1127 616 1128 614 1129 652 1130 654 1131 618 1132 636 1133 618 1134 656 1135 620 1136 638 1137 658 1138 622 1139 660 1140 648 1141 632 1142 624 1143 662 1144 640 1145 664 1146 642 1147 626 1148 644 1149 628 1150 666 1151 668 1152 646 1153 630 1154 670 1155 650 1156 634 1157 652 1158 614 1159 650 1160 672 1161 654 1162 636 1163 618 1164 674 1165 656 1166 676 1167 658 1168 638 1169 660 1170 678 1171 648 1172 640 1173 662 1174 680 1175 664 1176 682 1177 642 1178 644 1179 666 1180 684 1181 686 1182 646 1183 668 1184 650 1185 670 1186 688 1187 652 1188 650 1189 690 1190 692 1191 654 1192 672 1193 656 1194 674 1195 694 1196 676 1197 696 1198 658 1199 678 1200 686 1201 668 1202 698 1203 678 1204 660 1205 662 1206 682 1207 680 1208 700 1209 682 1210 664 1211 684 1212 666 1213 702 1214 670 1215 704 1216 688 1217 690 1218 650 1219 706 1220 708 1221 692 1222 672 1223 694 1224 674 1225 710 1226 676 1227 712 1228 696 1229 686 1230 678 1231 714 1232 678 1233 698 1234 716 1235 680 1236 682 1237 718 1238 720 1239 682 1240 700 1241 684 1242 702 1243 722 1244 688 1245 704 1246 724 1247 690 1248 706 1249 726 1250 728 1251 692 1252 708 1253 694 1254 710 1255 730 1256 712 1257 732 1258 696 1259 722 1260 702 1261 734 1262 678 1263 716 1264 714 1265 698 1266 736 1267 716 1268 682 1269 720 1270 718 1271 720 1272 700 1273 738 1274 724 1275 704 1276 740 1277 706 1278 742 1279 726 1280 744 1281 728 1282 708 1283 730 1284 710 1285 746 1286 712 1287 748 1288 732 1289 722 1290 734 1291 750 1292 714 1293 716 1294 752 1295 716 1296 736 1297 754 1298 718 1299 720 1300 756 1301 758 1302 720 1303 738 1304 724 1305 740 1306 760 1307 726 1308 742 1309 762 1310 764 1311 728 1312 744 1313 730 1314 746 1315 766 1316 732 1317 748 1318 768 1319 758 1320 738 1321 770 1322 750 1323 734 1324 772 1325 716 1326 754 1327 752 1328 736 1329 774 1330 754 1331 720 1332 758 1333 756 1334 760 1335 740 1336 776 1337 742 1338 760 1339 762 1340 764 1341 744 1342 778 1343 766 1344 746 1345 780 1346 748 1347 782 1348 768 1349 784 1350 758 1351 770 1352 750 1353 772 1354 786 1355 752 1356 754 1357 788 1358 754 1359 774 1360 790 1361 756 1362 758 1363 792 1364 760 1365 776 1366 794 1367 796 1368 762 1369 760 1370 764 1371 778 1372 798 1373 780 1374 800 1375 766 1376 768 1377 782 1378 802 1379 758 1380 784 1381 792 1382 784 1383 770 1384 804 1385 786 1386 772 1387 806 1388 754 1389 790 1390 788 1391 774 1392 808 1393 790 1394 794 1395 776 1396 810 1397 794 1398 796 1399 760 1400 798 1401 778 1402 812 1403 780 1404 814 1405 800 1406 782 1407 816 1408 802 1409 792 1410 784 1411 818 1412 820 1413 784 1414 804 1415 786 1416 806 1417 822 1418 788 1419 790 1420 824 1421 790 1422 808 1423 826 1424 828 1425 794 1426 810 1427 830 1428 796 1429 794 1430 798 1431 812 1432 832 1433 814 1434 834 1435 800 1436 802 1437 816 1438 836 1439 808 1440 838 1441 826 1442 818 1443 784 1444 820 1445 820 1446 804 1447 840 1448 806 1449 842 1450 822 1451 790 1452 826 1453 824 1454 844 1455 828 1456 810 1457 828 1458 830 1459 794 1460 832 1461 812 1462 846 1463 814 1464 848 1465 834 1466 816 1467 850 1468 836 1469 826 1470 838 1471 852 1472 818 1473 820 1474 854 1475 856 1476 820 1477 840 1478 822 1479 842 1480 858 1481 824 1482 826 1483 860 1484 862 1485 828 1486 844 1487 864 1488 830 1489 828 1490 832 1491 846 1492 866 1493 848 1494 868 1495 834 1496 836 1497 850 1498 870 1499 826 1500 852 1501 860 1502 838 1503 872 1504 852 1505 854 1506 820 1507 856 1508 856 1509 840 1510 874 1511 842 1512 876 1513 858 1514 878 1515 862 1516 844 1517 862 1518 864 1519 828 1520 866 1521 846 1522 880 1523 848 1524 866 1525 868 1526 850 1527 882 1528 870 1529 860 1530 852 1531 884 1532 852 1533 872 1534 886 1535 854 1536 856 1537 888 1538 890 1539 856 1540 874 1541 858 1542 876 1543 892 1544 894 1545 862 1546 878 1547 896 1548 864 1549 862 1550 866 1551 880 1552 898 1553 866 1554 900 1555 868 1556 870 1557 882 1558 902 1559 876 1560 904 1561 892 1562 852 1563 886 1564 884 1565 872 1566 906 1567 886 1568 888 1569 856 1570 890 1571 890 1572 874 1573 908 1574 910 1575 894 1576 878 1577 894 1578 896 1579 862 1580 880 1581 912 1582 898 1583 866 1584 898 1585 900 1586 902 1587 882 1588 914 1589 892 1590 904 1591 916 1592 884 1593 886 1594 918 1595 886 1596 906 1597 920 1598 888 1599 890 1600 922 1601 890 1602 908 1603 924 1604 926 1605 894 1606 910 1607 928 1608 896 1609 894 1610 898 1611 912 1612 930 1613 898 1614 932 1615 900 1616 902 1617 914 1618 934 1619 908 1620 936 1621 924 1622 904 1623 938 1624 916 1625 918 1626 886 1627 920 1628 906 1629 940 1630 920 1631 922 1632 890 1633 942 1634 944 1635 926 1636 910 1637 926 1638 928 1639 894 1640 912 1641 946 1642 930 1643 898 1644 930 1645 932 1646 934 1647 914 1648 948 1649 924 1650 936 1651 950 1652 916 1653 938 1654 952 1655 918 1656 920 1657 954 1658 920 1659 940 1660 956 1661 958 1662 922 1663 942 1664 960 1665 926 1666 944 1667 962 1668 928 1669 926 1670 930 1671 946 1672 964 1673 930 1674 966 1675 932 1676 934 1677 948 1678 968 1679 958 1680 942 1681 950 1682 936 1683 970 1684 950 1685 938 1686 972 1687 952 1688 954 1689 920 1690 974 1691 956 1692 940 1693 976 1694 978 1695 960 1696 944 1697 960 1698 962 1699 926 1700 946 1701 980 1702 964 1703 930 1704 964 1705 966 1706 968 1707 948 1708 982 1709 984 1710 958 1711 950 1712 950 1713 970 1714 986 1715 972 1716 988 1717 952 1718 954 1719 974 1720 990 1721 956 1722 976 1723 992 1724 994 1725 960 1726 978 1727 996 1728 962 1729 960 1730 964 1731 980 1732 998 1733 964 1734 1000 1735 966 1736 968 1737 982 1738 1002 1739 992 1740 976 1741 1004 1742 986 1743 984 1744 950 1745 970 1746 1006 1747 986 1748 972 1749 1008 1750 988 1751 974 1752 992 1753 990 1754 1010 1755 994 1756 978 1757 994 1758 996 1759 960 1760 980 1761 1012 1762 998 1763 964 1764 998 1765 1000 1766 1002 1767 982 1768 1014 1769 992 1770 1004 1771 1016 1772 1018 1773 984 1774 986 1775 986 1776 1006 1777 1020 1778 1008 1779 1022 1780 988 1781 990 1782 992 1783 1024 1784 1026 1785 994 1786 1010 1787 994 1788 1028 1789 996 1790 998 1791 1012 1792 1030 1793 1032 1794 1000 1795 998 1796 1034 1797 1002 1798 1014 1799 992 1800 1016 1801 1024 1802 1016 1803 1004 1804 1036 1805 1020 1806 1018 1807 986 1808 1006 1809 1038 1810 1020 1811 1040 1812 1022 1813 1008 1814 1042 1815 1026 1816 1010 1817 1044 1818 1028 1819 994 1820 1012 1821 1046 1822 1030 1823 1030 1824 1032 1825 998 1826 1034 1827 1014 1828 1048 1829 1024 1830 1016 1831 1050 1832 1016 1833 1036 1834 1052 1835 1054 1836 1018 1837 1020 1838 1056 1839 1020 1840 1038 1841 1040 1842 1058 1843 1022 1844 1060 1845 1026 1846 1042 1847 1044 1848 1062 1849 1028 1850 1030 1851 1046 1852 1064 1853 1066 1854 1032 1855 1030 1856 1068 1857 1034 1858 1048 1859 1070 1860 1058 1861 1040 1862 1016 1863 1052 1864 1050 1865 1036 1866 1072 1867 1052 1868 1056 1869 1054 1870 1020 1871 1056 1872 1038 1873 1074 1874 1076 1875 1060 1876 1042 1877 1078 1878 1062 1879 1044 1880 1046 1881 1080 1882 1064 1883 1064 1884 1066 1885 1030 1886 1068 1887 1048 1888 1082 1889 1070 1890 1084 1891 1058 1892 1050 1893 1052 1894 1086 1895 1052 1896 1072 1897 1088 1898 1090 1899 1054 1900 1056 1901 1092 1902 1056 1903 1074 1904 1076 1905 1094 1906 1060 1907 1096 1908 1062 1909 1078 1910 1080 1911 1098 1912 1064 1913 1100 1914 1066 1915 1064 1916 1102 1917 1068 1918 1082 1919 1092 1920 1074 1921 1104 1922 1106 1923 1084 1924 1070 1925 1052 1926 1088 1927 1086 1928 1072 1929 1108 1930 1088 1931 1092 1932 1090 1933 1056 1934 1110 1935 1094 1936 1076 1937 1094 1938 1096 1939 1078 1940 1080 1941 1112 1942 1098 1943 1114 1944 1100 1945 1064 1946 1116 1947 1102 1948 1082 1949 1118 1950 1092 1951 1104 1952 1106 1953 1120 1954 1084 1955 1086 1956 1088 1957 1122 1958 1088 1959 1108 1960 1124 1961 1126 1962 1090 1963 1092 1964 1110 1965 1128 1966 1094 1967 1130 1968 1096 1969 1094 1970 1112 1971 1132 1972 1098 1973 1114 1974 1134 1975 1100 1976 1136 1977 1102 1978 1116 1979 1118 1980 1126 1981 1092 1982 1118 1983 1104 1984 1138 1985 1140 1986 1120 1987 1106 1988 1088 1989 1124 1990 1122 1991 1108 1992 1142 1993 1124 1994 1144 1995 1128 1996 1110 1997 1128 1998 1130 1999 1094 2000 1146 2001 1132 2002 1112 2003 1114 2004 1132 2005 1134 2006 1148 2007 1136 2008 1116 2009 1150 2010 1126 2011 1118 2012 1152 2013 1118 2014 1138 2015 1140 2016 1154 2017 1120 2018 1122 2019 1124 2020 1156 2021 1124 2022 1142 2023 1158 2024 1160 2025 1128 2026 1144 2027 1162 2028 1130 2029 1128 2030 1146 2031 1164 2032 1132 2033 1132 2034 1166 2035 1134 2036 1168 2037 1136 2038 1148 2039 1142 2040 1170 2041 1158 2042 1152 2043 1150 2044 1118 2045 1152 2046 1138 2047 1172 2048 1174 2049 1154 2050 1140 2051 1124 2052 1158 2053 1156 2054 1176 2055 1160 2056 1144 2057 1160 2058 1162 2059 1128 2060 1178 2061 1164 2062 1146 2063 1132 2064 1164 2065 1166 2066 1180 2067 1168 2068 1148 2069 1158 2070 1170 2071 1182 2072 1152 2073 1184 2074 1150 2075 1186 2076 1152 2077 1172 2078 1188 2079 1154 2080 1174 2081 1156 2082 1158 2083 1190 2084 1192 2085 1160 2086 1176 2087 1194 2088 1162 2089 1160 2090 1178 2091 1196 2092 1164 2093 1164 2094 1198 2095 1166 2096 1200 2097 1168 2098 1180 2099 1158 2100 1182 2101 1190 2102 1170 2103 1202 2104 1182 2105 1204 2106 1184 2107 1152 2108 1186 2109 1172 2110 1206 2111 1208 2112 1188 2113 1174 2114 1210 2115 1192 2116 1176 2117 1192 2118 1194 2119 1160 2120 1212 2121 1196 2122 1178 2123 1164 2124 1196 2125 1198 2126 1214 2127 1200 2128 1180 2129 1190 2130 1182 2131 1216 2132 1182 2133 1202 2134 1218 2135 1204 2136 1220 2137 1184 2138 1222 2139 1186 2140 1206 2141 1224 2142 1188 2143 1208 2144 1226 2145 1224 2146 1208 2147 1182 2148 1218 2149 1216 2150 1202 2151 1228 2152 1218 2153 1230 2154 1220 2155 1204 2156 1222 2157 1206 2158 1232 2159 1234 2160 1224 2161 1226 2162 1218 2163 1236 2164 1216 2165 1238 2166 1218 2167 1228 2168 1230 2169 1240 2170 1220 2171 1232 2172 1242 2173 1222 2174 1244 2175 1242 2176 1232 2177 1246 2178 1234 2179 1226 2180 1238 2181 1236 2182 1218 2183 1248 2184 1238 2185 1228 2186 1250 2187 1240 2188 1230 2189 1244 2190 1252 2191 1242 2192 1254 2193 1234 2194 1246 2195 1238 2196 1256 2197 1236 2198 1258 2199 1238 2200 1248 2201 1250 2202 1260 2203 1240 2204 1250 2205 1262 2206 1260 2207 1264 2208 1252 2209 1244 2210 1266 2211 1254 2212 1246 2213 1268 2214 1256 2215 1238 2216 1270 2217 1258 2218 1248 2219 1260 2220 1262 2221 1272 2222 1264 2223 1274 2224 1252 2225 1276 2226 1254 2227 1266 2228 1278 2229 1256 2230 1268 2231 1280 2232 1258 2233 1270 2234 1282 2235 1280 2236 1270 2237 1262 2238 1284 2239 1272 2240 1286 2241 1274 2242 1264 2243 1276 2244 1266 2245 1288 2246 1280 2247 1278 2248 1268 2249 1282 2250 1290 2251 1280 2252 1272 2253 1284 2254 1292 2255 1286 2256 1294 2257 1274 2258 1276 2259 1288 2260 1296 2261 1278 2262 1280 2263 1298 2264 1280 2265 1290 2266 1298 2267 1300 2268 1290 2269 1282 2270 1284 2271 1294 2272 1292 2273 1302 2274 1294 2275 1286 2276 1296 2277 1288 2278 1304 2279 1298 2280 1290 2281 1306 2282 1290 2283 1300 2284 1308 2285 1292 2286 1294 2287 1310 2288 1312 2289 1294 2290 1302 2291 1296 2292 1304 2293 1314 2294 1314 2295 1304 2296 1316 2297 1290 2298 1308 2299 1306 2300 1300 2301 1318 2302 1308 2303 1294 2304 1312 2305 1310 2306 1312 2307 1302 2308 1320 2309 1314 2310 1316 2311 1322 2312 1306 2313 1308 2314 1324 2315 1308 2316 1318 2317 1326 2318 1310 2319 1312 2320 1328 2321 1330 2322 1312 2323 1320 2324 1330 2325 1320 2326 1332 2327 1322 2328 1316 2329 1334 2330 1308 2331 1326 2332 1324 2333 1318 2334 1336 2335 1326 2336 1312 2337 1330 2338 1328 2339 1338 2340 1330 2341 1332 2342 1322 2343 1334 2344 1340 2345 1324 2346 1326 2347 1342 2348 1326 2349 1336 2350 1344 2351 1328 2352 1330 2353 1346 2354 1330 2355 1338 2356 1346 2357 1338 2358 1332 2359 1348 2360 1340 2361 1334 2362 1350 2363 1326 2364 1344 2365 1342 2366 1336 2367 1352 2368 1344 2369 1346 2370 1338 2371 1354 2372 1356 2373 1338 2374 1348 2375 1340 2376 1350 2377 1358 2378 1342 2379 1344 2380 1360 2381 1344 2382 1352 2383 1362 2384 1352 2385 1364 2386 1362 2387 1354 2388 1338 2389 1356 2390 1356 2391 1348 2392 1366 2393 1350 2394 1368 2395 1358 2396 1344 2397 1362 2398 1360 2399 1362 2400 1364 2401 1370 2402 1354 2403 1356 2404 1372 2405 1374 2406 1356 2407 1366 2408 1358 2409 1368 2410 1376 2411 1360 2412 1362 2413 1378 2414 1362 2415 1370 2416 1378 2417 1364 2418 1380 2419 1370 2420 1372 2421 1356 2422 1374 2423 1374 2424 1366 2425 1382 2426 1368 2427 1384 2428 1376 2429 1378 2430 1370 2431 1386 2432 1370 2433 1380 2434 1388 2435 1372 2436 1374 2437 1390 2438 1392 2439 1374 2440 1382 2441 1376 2442 1384 2443 1394 2444 1384 2445 1396 2446 1394 2447 1370 2448 1388 2449 1386 2450 1380 2451 1398 2452 1388 2453 1390 2454 1374 2455 1392 2456 1392 2457 1382 2458 1400 2459 1394 2460 1396 2461 1402 2462 1386 2463 1388 2464 1404 2465 1388 2466 1398 2467 1406 2468 1390 2469 1392 2470 1408 2471 1392 2472 1400 2473 1410 2474 1400 2475 1412 2476 1410 2477 1396 2478 1414 2479 1402 2480 1404 2481 1388 2482 1406 2483 1398 2484 1416 2485 1406 2486 1408 2487 1392 2488 1418 2489 1410 2490 1412 2491 1420 2492 1402 2493 1414 2494 1422 2495 1404 2496 1406 2497 1424 2498 1406 2499 1416 2500 1426 2501 1428 2502 1408 2503 1418 2504 1428 2505 1418 2506 1420 2507 1412 2508 1430 2509 1420 2510 1414 2511 1432 2512 1422 2513 1424 2514 1406 2515 1434 2516 1426 2517 1416 2518 1436 2519 1438 2520 1428 2521 1420 2522 1420 2523 1430 2524 1440 2525 1432 2526 1442 2527 1422 2528 1424 2529 1434 2530 1444 2531 1426 2532 1436 2533 1446 2534 1446 2535 1436 2536 1448 2537 1440 2538 1438 2539 1420 2540 1430 2541 1450 2542 1440 2543 1432 2544 1452 2545 1442 2546 1434 2547 1446 2548 1444 2549 1446 2550 1448 2551 1454 2552 1456 2553 1438 2554 1440 2555 1440 2556 1450 2557 1458 2558 1452 2559 1460 2560 1442 2561 1444 2562 1446 2563 1462 2564 1446 2565 1454 2566 1462 2567 1454 2568 1448 2569 1464 2570 1458 2571 1456 2572 1440 2573 1450 2574 1466 2575 1458 2576 1468 2577 1460 2578 1452 2579 1462 2580 1454 2581 1470 2582 1454 2583 1464 2584 1472 2585 1474 2586 1456 2587 1458 2588 1476 2589 1458 2590 1466 2591 1468 2592 1478 2593 1460 2594 1480 2595 1478 2596 1468 2597 1454 2598 1472 2599 1470 2600 1464 2601 1482 2602 1472 2603 1476 2604 1474 2605 1458 2606 1476 2607 1466 2608 1484 2609 1480 2610 1486 2611 1478 2612 1470 2613 1472 2614 1488 2615 1472 2616 1482 2617 1490 2618 1492 2619 1474 2620 1476 2621 1494 2622 1476 2623 1484 2624 1494 2625 1484 2626 1496 2627 1498 2628 1486 2629 1480 2630 1472 2631 1490 2632 1488 2633 1482 2634 1500 2635 1490 2636 1494 2637 1492 2638 1476 2639 1502 2640 1494 2641 1496 2642 1498 2643 1504 2644 1486 2645 1488 2646 1490 2647 1506 2648 1490 2649 1500 2650 1508 2651 1510 2652 1492 2653 1494 2654 1502 2655 1510 2656 1494 2657 1502 2658 1496 2659 1512 2660 1514 2661 1504 2662 1498 2663 1490 2664 1508 2665 1506 2666 1500 2667 1516 2668 1508 2669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1717\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1718\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"890\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 7 4 9 5 4 12 5 13 17 18 19 21 7 3 24 17 25 9 27 5 13 5 29 31 12 13 19 18 33 25 17 19 35 7 21 31 37 12 39 24 25 41 27 9 27 29 5 45 46 47 47 50 51 55 56 57 18 59 33 62 57 63 65 35 21 67 37 31 70 62 71 73 24 39 41 75 27 27 77 29 45 56 46 47 46 50 51 50 79 81 56 55 57 56 63 59 83 33 62 63 71 85 35 65 67 65 37 87 51 79 70 71 89 91 73 39 93 75 41 75 77 27 95 56 45 98 81 99 102 98 103 99 81 55 95 63 56 105 83 59 107 71 63 109 85 65 65 67 111 113 87 79 115 89 71 117 70 89 119 73 91 93 121 75 75 123 77 103 98 99 125 102 103 107 63 95 105 127 83 115 71 107 129 85 109 65 111 109 131 87 113 133 102 125 135 89 115 117 89 137 139 119 91 141 121 93 121 123 75 144 145 127 144 127 105 121 147 123 129 109 149 109 111 151 153 131 113 125 155 133 158 159 147 137 89 135 161 117 137 139 163 119 141 158 121 165 145 144 158 147 121 129 149 167 109 151 149 169 131 153 155 171 133 165 173 145 175 159 158 177 137 135 161 137 179 181 163 139 183 158 141 167 149 185 149 151 187 189 169 153 155 191 171 193 173 165 183 175 158 175 195 159 179 137 177 197 161 179 181 199 163 167 185 201 149 187 185 203 169 189 191 189 171 193 205 173 207 175 183 209 195 175 211 179 177 197 179 213 215 199 181 201 185 217 185 187 219 221 203 189 191 223 189 225 205 193 215 227 199 207 209 175 209 229 195 213 179 211 231 197 213 201 217 233 185 219 217 221 235 203 223 221 189 237 205 225 239 227 215 241 209 207 243 229 209 245 213 211 247 231 213 233 217 249 217 219 251 253 235 221 223 255 221 257 237 225 247 259 231 239 261 227 243 209 241 243 263 229 265 213 245 233 249 267 217 251 249 253 269 235 255 253 221 271 237 257 273 259 247 275 261 239 277 243 241 279 263 243 265 245 281 267 249 283 249 251 285 287 269 253 255 289 253 291 271 257 273 265 281 273 293 259 275 295 261 297 243 277 279 299 263 267 283 301 249 285 283 287 303 269 289 287 253 305 271 291 273 281 307 309 293 273 275 311 295 313 297 277 315 299 279 301 283 317 283 285 319 321 303 287 289 323 287 325 305 291 327 299 315 273 307 309 309 329 293 311 331 295 313 315 297 301 317 333 283 319 317 321 335 303 323 321 287 337 305 325 339 327 315 309 307 341 343 329 309 311 345 331 347 315 313 333 317 349 319 351 317 353 335 321 321 323 355 337 325 357 347 339 315 359 327 339 309 341 343 343 361 329 331 345 363 333 349 365 317 351 367 353 369 335 321 355 353 371 337 357 373 339 347 375 359 339 343 341 377 361 343 379 345 381 363 365 349 383 351 385 367 387 369 353 353 355 389 371 357 391 363 381 393 373 375 339 375 395 359 343 377 379 397 361 379 365 383 399 367 385 401 387 403 369 353 389 387 405 371 391 381 407 393 409 375 373 411 395 375 379 377 413 397 379 415 383 417 399 401 385 419 387 421 403 387 389 423 405 391 425 427 397 415 393 407 429 409 411 375 411 431 395 379 413 415 399 417 433 401 419 417 421 435 403 387 423 421 405 425 437 427 415 439 407 441 429 443 411 409 445 431 411 415 413 447 417 449 433 417 419 451 421 453 435 421 423 455 437 425 457 415 447 439 459 427 439 429 441 461 443 445 411 445 463 431 433 449 465 417 451 449 435 453 467 421 455 453 437 457 469 439 447 471 459 439 473 441 475 461 477 445 443 479 463 445 465 449 481 449 451 483 453 485 467 455 487 453 469 457 489 479 491 463 439 471 473 493 459 473 461 475 495 477 479 445 465 481 497 449 483 481 467 485 499 487 485 453 469 489 501 503 491 479 471 505 473 493 473 507 495 475 509 511 479 477 497 481 513 481 483 515 485 517 499 487 519 485 501 489 521 511 503 479 503 523 491 473 505 525 527 493 507 495 509 529 497 513 531 481 515 513 499 517 533 519 517 485 501 521 535 537 503 511 539 523 503 505 541 525 527 507 543 529 509 545 531 513 547 513 515 549 517 551 533 519 553 517 535 521 555 529 545 557 537 539 503 539 559 523 525 541 561 563 527 543 531 547 565 513 549 547 533 551 567 553 551 517 535 555 569 557 545 571 537 573 539 575 559 539 541 577 561 543 579 563 565 547 581 547 549 583 567 551 585 553 587 551 555 589 569 563 579 591 557 571 593 539 573 575 575 595 559 561 577 597 565 581 599 547 583 581 567 585 601 587 585 551 569 589 603 579 605 591 593 571 607 573 609 575 595 575 611 577 613 597 599 581 615 581 583 617 601 585 619 587 621 585 589 623 603 613 625 597 591 605 627 593 607 629 575 609 631 595 611 633 599 615 635 581 617 615 601 619 637 621 619 585 603 623 639 641 625 613 605 643 627 629 607 645 631 609 647 633 611 649 635 615 651 653 615 617 637 619 655 621 657 619 623 659 639 633 649 661 641 663 625 627 643 665 667 629 645 631 647 669 635 651 671 651 615 653 637 655 673 657 675 619 639 659 677 649 679 661 681 663 641 643 683 665 685 667 645 669 647 687 689 671 651 691 651 653 673 655 693 695 675 657 659 697 677 669 687 679 661 679 699 681 683 663 665 683 701 703 667 685 689 705 671 707 651 691 673 693 709 711 675 695 697 713 677 715 679 687 717 699 679 719 683 681 701 683 721 723 703 685 725 705 689 727 707 691 709 693 729 731 711 695 697 733 713 735 703 723 715 717 679 717 737 699 719 721 683 739 701 721 741 705 725 727 743 707 709 729 745 747 711 731 733 749 713 751 735 723 753 717 715 755 737 717 757 721 719 739 721 759 761 741 725 763 743 727 745 729 765 767 747 731 769 749 733 771 739 759 773 735 751 753 755 717 755 775 737 757 759 721 777 741 761 763 761 743 779 745 765 781 747 767 769 783 749 771 759 785 787 773 751 789 755 753 791 775 755 793 759 757 795 777 761 761 763 797 799 779 765 767 801 781 803 783 769 793 785 759 805 771 785 807 773 787 789 791 755 791 809 775 811 777 795 761 797 795 813 779 799 801 815 781 803 817 783 819 785 793 805 785 821 823 807 787 825 791 789 827 809 791 811 795 829 795 797 831 833 813 799 801 835 815 837 817 803 827 839 809 821 785 819 841 805 821 823 843 807 825 827 791 811 829 845 795 831 829 847 813 833 835 849 815 837 851 817 853 839 827 855 821 819 841 821 857 859 843 823 861 827 825 845 829 863 829 831 865 867 847 833 835 869 849 871 851 837 861 853 827 853 873 839 857 821 855 875 841 857 859 877 843 845 863 879 829 865 863 881 847 867 869 867 849 871 883 851 885 853 861 887 873 853 889 857 855 875 857 891 893 877 859 879 863 895 863 865 897 899 881 867 869 901 867 903 883 871 893 905 877 885 887 853 887 907 873 891 857 889 909 875 891 879 895 911 863 897 895 899 913 881 901 899 867 915 883 903 917 905 893 919 887 885 921 907 887 923 891 889 925 909 891 911 895 927 895 897 929 931 913 899 901 933 899 935 915 903 925 937 909 917 939 905 921 887 919 921 941 907 943 891 923 911 927 945 895 929 927 931 947 913 933 931 899 949 915 935 951 937 925 953 939 917 955 921 919 957 941 921 943 923 959 945 927 961 927 929 963 965 947 931 933 967 931 969 949 935 951 943 959 951 971 937 953 973 939 975 921 955 977 941 957 945 961 979 927 963 961 965 981 947 967 965 931 983 949 969 951 959 985 987 971 951 953 989 973 991 975 955 993 977 957 979 961 995 961 963 997 999 981 965 967 1001 965 1003 983 969 1005 977 993 951 985 987 987 1007 971 989 1009 973 991 993 975 979 995 1011 961 997 995 999 1013 981 1001 999 965 1015 983 1003 1017 1005 993 987 985 1019 1021 1007 987 989 1023 1009 1025 993 991 1011 995 1027 997 1029 995 1031 1013 999 999 1001 1033 1015 1003 1035 1025 1017 993 1037 1005 1017 987 1019 1021 1021 1039 1007 1009 1023 1041 1011 1027 1043 995 1029 1045 1031 1047 1013 999 1033 1031 1049 1015 1035 1051 1017 1025 1053 1037 1017 1021 1019 1055 1039 1021 1057 1023 1059 1041 1043 1027 1061 1029 1063 1045 1065 1047 1031 1031 1033 1067 1049 1035 1069 1041 1059 1071 1051 1053 1017 1053 1073 1037 1021 1055 1057 1075 1039 1057 1043 1061 1077 1045 1063 1079 1065 1081 1047 1031 1067 1065 1083 1049 1069 1059 1085 1071 1087 1053 1051 1089 1073 1053 1057 1055 1091 1075 1057 1093 1061 1095 1077 1079 1063 1097 1065 1099 1081 1065 1067 1101 1083 1069 1103 1105 1075 1093 1071 1085 1107 1087 1089 1053 1089 1109 1073 1057 1091 1093 1077 1095 1111 1079 1097 1095 1099 1113 1081 1065 1101 1115 1083 1103 1117 1105 1093 1119 1085 1121 1107 1123 1089 1087 1125 1109 1089 1093 1091 1127 1095 1129 1111 1095 1097 1131 1099 1133 1113 1101 1135 1115 1117 1103 1137 1093 1127 1119 1139 1105 1119 1107 1121 1141 1123 1125 1089 1125 1143 1109 1111 1129 1145 1095 1131 1129 1113 1133 1147 1135 1133 1115 1117 1137 1149 1119 1127 1151 1139 1119 1153 1121 1155 1141 1157 1125 1123 1159 1143 1125 1145 1129 1161 1129 1131 1163 1133 1165 1147 1135 1167 1133 1149 1137 1169 1159 1171 1143 1119 1151 1153 1173 1139 1153 1141 1155 1175 1157 1159 1125 1145 1161 1177 1129 1163 1161 1147 1165 1179 1167 1165 1133 1149 1169 1181 1183 1171 1159 1151 1185 1153 1173 1153 1187 1175 1155 1189 1191 1159 1157 1177 1161 1193 1161 1163 1195 1165 1197 1179 1167 1199 1165 1181 1169 1201 1191 1183 1159 1183 1203 1171 1153 1185 1205 1207 1173 1187 1175 1189 1209 1177 1193 1211 1161 1195 1193 1179 1197 1213 1199 1197 1165 1181 1201 1215 1217 1183 1191 1219 1203 1183 1185 1221 1205 1207 1187 1223 1209 1189 1225 1209 1225 1227 1217 1219 1183 1219 1229 1203 1205 1221 1231 1233 1207 1223 1227 1225 1235 1217 1237 1219 1229 1219 1239 1221 1241 1231 1223 1243 1233 1233 1243 1245 1227 1235 1247 1219 1237 1239 1229 1239 1249 1231 1241 1251 1243 1253 1245 1247 1235 1255 1237 1257 1239 1249 1239 1259 1241 1261 1251 1261 1263 1251 1245 1253 1265 1247 1255 1267 1239 1257 1269 1249 1259 1271 1273 1263 1261 1253 1275 1265 1267 1255 1277 1269 1257 1279 1271 1259 1281 1271 1281 1283 1273 1285 1263 1265 1275 1287 1289 1267 1277 1269 1279 1281 1281 1291 1283 1293 1285 1273 1275 1295 1287 1297 1289 1277 1299 1281 1279 1299 1291 1281 1283 1291 1301 1293 1295 1285 1287 1295 1303 1305 1289 1297 1307 1291 1299 1309 1301 1291 1311 1295 1293 1303 1295 1313 1315 1305 1297 1317 1305 1315 1307 1309 1291 1309 1319 1301 1311 1313 1295 1321 1303 1313 1323 1317 1315 1325 1309 1307 1327 1319 1309 1329 1313 1311 1321 1313 1331 1333 1321 1331 1335 1317 1323 1325 1327 1309 1327 1337 1319 1329 1331 1313 1333 1331 1339 1341 1335 1323 1343 1327 1325 1345 1337 1327 1347 1331 1329 1347 1339 1331 1349 1333 1339 1351 1335 1341 1343 1345 1327 1345 1353 1337 1355 1339 1347 1349 1339 1357 1359 1351 1341 1361 1345 1343 1363 1353 1345 1363 1365 1353 1357 1339 1355 1367 1349 1357 1359 1369 1351 1361 1363 1345 1371 1365 1363 1373 1357 1355 1367 1357 1375 1377 1369 1359 1379 1363 1361 1379 1371 1363 1371 1381 1365 1375 1357 1373 1383 1367 1375 1377 1385 1369 1387 1371 1379 1389 1381 1371 1391 1375 1373 1383 1375 1393 1395 1385 1377 1395 1397 1385 1387 1389 1371 1389 1399 1381 1393 1375 1391 1401 1383 1393 1403 1397 1395 1405 1389 1387 1407 1399 1389 1409 1393 1391 1411 1401 1393 1411 1413 1401 1403 1415 1397 1407 1389 1405 1407 1417 1399 1419 1393 1409 1421 1413 1411 1423 1415 1403 1425 1407 1405 1427 1417 1407 1419 1409 1429 1421 1419 1429 1421 1431 1413 1423 1433 1415 1435 1407 1425 1437 1417 1427 1421 1429 1439 1441 1431 1421 1423 1443 1433 1445 1435 1425 1447 1437 1427 1449 1437 1447 1421 1439 1441 1441 1451 1431 1443 1453 1433 1445 1447 1435 1455 1449 1447 1441 1439 1457 1459 1451 1441 1443 1461 1453 1463 1447 1445 1463 1455 1447 1465 1449 1455 1441 1457 1459 1459 1467 1451 1453 1461 1469 1471 1455 1463 1473 1465 1455 1459 1457 1475 1467 1459 1477 1461 1479 1469 1469 1479 1481 1471 1473 1455 1473 1483 1465 1459 1475 1477 1485 1467 1477 1479 1487 1481 1489 1473 1471 1491 1483 1473 1477 1475 1493 1485 1477 1495 1497 1485 1495 1481 1487 1499 1489 1491 1473 1491 1501 1483 1477 1493 1495 1497 1495 1503 1487 1505 1499 1507 1491 1489 1509 1501 1491 1495 1493 1511 1495 1511 1503 1513 1497 1503 1499 1505 1515 1507 1509 1491 1509 1517 1501</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1717\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1722\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1725\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1723\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1724\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1723\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1726\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"30\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1726\">-0.6839439272880554 1.402427673339844 0.0003010407090187073 -0.6568337678909302 1.379017114639282 -0.003134805709123612 -0.6761385798454285 1.40332818031311 0.01056023687124252 -0.6761385798454285 1.40332818031311 0.01056023687124252 -0.6568337678909302 1.379017114639282 -0.003134805709123612 -0.6839439272880554 1.402427673339844 0.0003010407090187073 -0.653416633605957 1.383425712585449 0.007677655667066574 -0.653416633605957 1.383425712585449 0.007677655667066574 -0.61176598072052 1.378705859184265 -0.008583445101976395 -0.61176598072052 1.378705859184265 -0.008583445101976395</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1724\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1727\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"30\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1727\">0.5409079490672565 0.6957494617548015 -0.472600547083643 0.2763834199718249 0.8551930591528619 -0.4384712496178597 0.5430304145553483 0.6959188850689713 -0.4699094319889809 -0.5430304145553483 -0.6959188850689713 0.4699094319889809 -0.2763834199718249 -0.8551930591528619 0.4384712496178597 -0.5409079490672565 -0.6957494617548015 0.472600547083643 0.2921036455529176 0.8497824160601982 -0.4387998468659575 -0.2921036455529176 -0.8497824160601982 0.4387998468659575 -0.03794787228475661 0.9294557085636185 -0.3669768995557645 0.03794787228475661 -0.9294557085636185 0.3669768995557645</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"6\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 1 8 6 7 9 4</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1725\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1728\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1731\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1729\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1730\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1729\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1732\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1732\">-0.6544483304023743 1.382906556129456 -0.03208892792463303 -0.6791197061538696 1.404064536094666 -0.02896468713879585 -0.6528294682502747 1.384758353233337 -0.01757699251174927 -0.6528294682502747 1.384758353233337 -0.01757699251174927 -0.6791197061538696 1.404064536094666 -0.02896468713879585 -0.6544483304023743 1.382906556129456 -0.03208892792463303</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1730\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1733\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"18\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1733\">-0.6295653120525944 -0.7587756278652171 0.1670540763281906 -0.6295653120525944 -0.7587756278652171 0.1670540763281906 -0.6295653120525944 -0.7587756278652171 0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1731\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1734\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1737\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1735\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1736\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1735\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1739\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4554\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1739\">-0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5850709080696106 1.396236777305603 -0.1415597796440125 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5850709080696106 1.396236777305603 -0.1415597796440125 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5960053205490112 1.388214826583862 -0.1377354264259338 -0.5960053205490112 1.388214826583862 -0.1377354264259338 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.5746597647666931 1.392412900924683 -0.1467487365007401 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5746597647666931 1.392412900924683 -0.1467487365007401 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5881686210632324 1.382356405258179 -0.1426282227039337 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5881686210632324 1.382356405258179 -0.1426282227039337 -0.5819917321205139 1.427334427833557 -0.1494816094636917 -0.5819917321205139 1.427334427833557 -0.1494816094636917 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.605396568775177 1.375316143035889 -0.1379894018173218 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.605396568775177 1.375316143035889 -0.1379894018173218 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6099938750267029 1.382491946220398 -0.1334818005561829 -0.6099938750267029 1.382491946220398 -0.1334818005561829 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.6249552369117737 1.372067928314209 -0.1330464780330658 -0.6249552369117737 1.372067928314209 -0.1330464780330658 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.5907177329063416 1.436359405517578 -0.1509662568569183 -0.5907177329063416 1.436359405517578 -0.1509662568569183 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6258568167686462 1.37988018989563 -0.1289798319339752 -0.6258568167686462 1.37988018989563 -0.1289798319339752 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6449195742607117 1.372947692871094 -0.1280253380537033 -0.6449195742607117 1.372947692871094 -0.1280253380537033 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.603263258934021 1.443111658096314 -0.1520082503557205 -0.603263258934021 1.443111658096314 -0.1520082503557205 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6420464515686035 1.380591630935669 -0.1244172155857086 -0.6420464515686035 1.380591630935669 -0.1244172155857086 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.6569705605506897 1.384566307067871 -0.119984433054924 -0.6569705605506897 1.384566307067871 -0.119984433054924 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6633379459381104 1.377706408500671 -0.1231223493814468 -0.6633379459381104 1.377706408500671 -0.1231223493814468 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6183810234069824 1.446958065032959 -0.15275639295578 -0.6183810234069824 1.446958065032959 -0.15275639295578 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6158870458602905 1.454949855804443 -0.1569075584411621 -0.6158870458602905 1.454949855804443 -0.1569075584411621 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6691690683364868 1.391404628753662 -0.1158596873283386 -0.6691690683364868 1.391404628753662 -0.1158596873283386 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6784166097640991 1.386274456977844 -0.1186821758747101 -0.6784166097640991 1.386274456977844 -0.1186821758747101 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6346040964126587 1.447518587112427 -0.1533942818641663 -0.6346040964126587 1.447518587112427 -0.1533942818641663 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6358919143676758 1.455586194992065 -0.1570864319801331 -0.6358919143676758 1.455586194992065 -0.1570864319801331 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6774526238441467 1.400427103042603 -0.1121946573257446 -0.6774526238441467 1.400427103042603 -0.1121946573257446 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6503424048423767 1.444744110107422 -0.1541148126125336 -0.6503424048423767 1.444744110107422 -0.1541148126125336 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6552913784980774 1.452123165130615 -0.1573689877986908 -0.6552913784980774 1.452123165130615 -0.1573689877986908 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6930937767028809 1.41014289855957 -0.1115392148494721 -0.6930937767028809 1.41014289855957 -0.1115392148494721 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6640493273735046 1.438929200172424 -0.1551009118556976 -0.6640493273735046 1.438929200172424 -0.1551009118556976 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.672182023525238 1.444900512695313 -0.1579820066690445 -0.672182023525238 1.444900512695313 -0.1579820066690445 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6912596821784973 1.423226833343506 -0.1090674251317978 -0.6912596821784973 1.423226833343506 -0.1090674251317978 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6794900298118591 1.421321630477905 -0.1066007241606712 -0.6794900298118591 1.421321630477905 -0.1066007241606712 -0.6743879318237305 1.430635929107666 -0.1565102338790894 -0.6743879318237305 1.430635929107666 -0.1565102338790894 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6848939657211304 1.434637069702148 -0.1591162979602814 -0.6848939657211304 1.434637069702148 -0.1591162979602814 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6730406284332275 1.431132555007935 -0.1047087833285332 -0.6730406284332275 1.431132555007935 -0.1047087833285332 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6833488345146179 1.435347318649292 -0.1073383688926697 -0.6833488345146179 1.435347318649292 -0.1073383688926697 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6922057271003723 1.422344446182251 -0.1609204709529877 -0.6922057271003723 1.422344446182251 -0.1609204709529877 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6623038053512573 1.439197421073914 -0.1033507362008095 -0.6623038053512573 1.439197421073914 -0.1033507362008095 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.6699572801589966 1.445349335670471 -0.1062754094600678 -0.6699572801589966 1.445349335670471 -0.1062754094600678 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6933844089508057 1.409244656562805 -0.1634690910577774 -0.6933844089508057 1.409244656562805 -0.1634690910577774 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6483189463615418 1.444727420806885 -0.1024002805352211 -0.6483189463615418 1.444727420806885 -0.1024002805352211 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6528607606887817 1.452198028564453 -0.1057026162743568 -0.6528607606887817 1.452198028564453 -0.1057026162743568 -0.6772618293762207 1.39987325668335 -0.1641806960105896 -0.6772618293762207 1.39987325668335 -0.1641806960105896 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6882098317146301 1.396625757217407 -0.1667627543210983 -0.6882098317146301 1.396625757217407 -0.1667627543210983 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6333565711975098 1.45525586605072 -0.1054370924830437 -0.6333565711975098 1.45525586605072 -0.1054370924830437 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6324572563171387 1.447163939476013 -0.1016970723867416 -0.6324572563171387 1.447163939476013 -0.1016970723867416 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6687233448028565 1.391040802001953 -0.1678927093744278 -0.6687233448028565 1.391040802001953 -0.1678927093744278 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6775147318840027 1.385725855827332 -0.1707536578178406 -0.6775147318840027 1.385725855827332 -0.1707536578178406 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6133941411972046 1.454185128211975 -0.1052539274096489 -0.6133941411972046 1.454185128211975 -0.1052539274096489 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6162789463996887 1.446246385574341 -0.1010573506355286 -0.6162789463996887 1.446246385574341 -0.1010573506355286 -0.6559849381446838 1.384477019309998 -0.1720629781484604 -0.6559849381446838 1.384477019309998 -0.1720629781484604 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6620186567306519 1.377620458602905 -0.1752837896347046 -0.6620186567306519 1.377620458602905 -0.1752837896347046 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6013543605804443 1.442081570625305 -0.1002846360206604 -0.6013543605804443 1.442081570625305 -0.1002846360206604 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.6408566832542419 1.380822777748108 -0.1765177100896835 -0.6408566832542419 1.380822777748108 -0.1765177100896835 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6433469653129578 1.373119354248047 -0.1801735311746597 -0.6433469653129578 1.373119354248047 -0.1801735311746597 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5891588926315308 1.435057163238525 -0.09920486062765122 -0.5891588926315308 1.435057163238525 -0.09920486062765122 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.6246308088302612 1.380454540252686 -0.1810832619667053 -0.6246308088302612 1.380454540252686 -0.1810832619667053 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6233323812484741 1.37267804145813 -0.1851973384618759 -0.6233323812484741 1.37267804145813 -0.1851973384618759 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5808806419372559 1.42584764957428 -0.09766633808612824 -0.5808806419372559 1.42584764957428 -0.09766633808612824 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.6084317564964294 1.383298873901367 -0.1856234967708588 -0.6084317564964294 1.383298873901367 -0.1856234967708588 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6034061312675476 1.376229882240295 -0.1901844590902329 -0.6034061312675476 1.376229882240295 -0.1901844590902329 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5943745374679565 1.389306902885437 -0.189885824918747 -0.5943745374679565 1.389306902885437 -0.189885824918747 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5861319303512573 1.383688688278198 -0.1948245465755463 -0.5861319303512573 1.383688688278198 -0.1948245465755463 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5841846466064453 1.397872924804688 -0.1936603933572769 -0.5841846466064453 1.397872924804688 -0.1936603933572769 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.586337149143219 1.394140601158142 -0.08941585570573807 -0.586337149143219 1.394140601158142 -0.08941585570573807 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5761085748672485 1.390118598937988 -0.09458494186401367 -0.5761085748672485 1.390118598937988 -0.09458494186401367 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.597230851650238 1.385961890220642 -0.08555353432893753 -0.597230851650238 1.385961890220642 -0.08555353432893753 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5895075798034668 1.380048990249634 -0.09043119847774506 -0.5895075798034668 1.380048990249634 -0.09043119847774506 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6113255023956299 1.380364418029785 -0.0812884196639061 -0.6113255023956299 1.380364418029785 -0.0812884196639061 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6068654656410217 1.373271226882935 -0.08584757149219513 -0.6068654656410217 1.373271226882935 -0.08584757149219513 -0.5818657279014587 1.429222106933594 -0.2015324234962463 -0.5818657279014587 1.429222106933594 -0.2015324234962463 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.6264719963073731 1.370048642158508 -0.08082878589630127 -0.6264719963073731 1.370048642158508 -0.08082878589630127 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.627228856086731 1.377870798110962 -0.07677979022264481 -0.627228856086731 1.377870798110962 -0.07677979022264481 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.5907652378082275 1.438162326812744 -0.2029987573623657 -0.5907652378082275 1.438162326812744 -0.2029987573623657 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.646413266658783 1.371087551116943 -0.0758097916841507 -0.646413266658783 1.371087551116943 -0.0758097916841507 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6433968544006348 1.378713488578796 -0.07221866399049759 -0.6433968544006348 1.378713488578796 -0.07221866399049759 -0.6034278273582459 1.444821834564209 -0.2040233165025711 -0.6034278273582459 1.444821834564209 -0.2040233165025711 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.6582387089729309 1.382810711860657 -0.06779345870018005 -0.6582387089729309 1.382810711860657 -0.06779345870018005 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6647380590438843 1.376140356063843 -0.07095810770988464 -0.6647380590438843 1.376140356063843 -0.07095810770988464 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6186198592185974 1.448546290397644 -0.2047647386789322 -0.6186198592185974 1.448546290397644 -0.2047647386789322 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6162691712379456 1.45654559135437 -0.2088989764451981 -0.6162691712379456 1.45654559135437 -0.2088989764451981 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.6703106760978699 1.389740109443665 -0.06368611007928848 -0.6703106760978699 1.389740109443665 -0.06368611007928848 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6796504855155945 1.384695649147034 -0.06649493426084518 -0.6796504855155945 1.384695649147034 -0.06649493426084518 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6348575949668884 1.448981881141663 -0.2054028511047363 -0.6348575949668884 1.448981881141663 -0.2054028511047363 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6362943053245544 1.457031488418579 -0.2090783268213272 -0.6362943053245544 1.457031488418579 -0.2090783268213272 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6784234642982483 1.398842453956604 -0.060040432959795 -0.6784234642982483 1.398842453956604 -0.060040432959795 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6505376100540161 1.446078181266785 -0.2061298489570618 -0.6505376100540161 1.446078181266785 -0.2061298489570618 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6556281447410584 1.453407168388367 -0.2093694508075714 -0.6556281447410584 1.453407168388367 -0.2093694508075714 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6938823461532593 1.408680319786072 -0.05940676108002663 -0.6938823461532593 1.408680319786072 -0.05940676108002663 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6641404628753662 1.440156102180481 -0.2071295976638794 -0.6641404628753662 1.440156102180481 -0.2071295976638794 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6723766326904297 1.446055293083191 -0.2099965065717697 -0.6723766326904297 1.446055293083191 -0.2099965065717697 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6918065547943115 1.421743154525757 -0.05696588382124901 -0.6918065547943115 1.421743154525757 -0.05696588382124901 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6800680756568909 1.419736385345459 -0.05449339374899864 -0.6800680756568909 1.419736385345459 -0.05449339374899864 -0.6742206811904907 1.431780219078064 -0.2085531204938889 -0.6742206811904907 1.431780219078064 -0.2085531204938889 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6849071979522705 1.435693502426148 -0.2111567407846451 -0.6849071979522705 1.435693502426148 -0.2111567407846451 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6734410524368286 1.429511189460754 -0.05262438207864761 -0.6734410524368286 1.429511189460754 -0.05262438207864761 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6836695075035095 1.433806657791138 -0.05526319518685341 -0.6836695075035095 1.433806657791138 -0.05526319518685341 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6919834613800049 1.423349499702454 -0.2129876613616943 -0.6919834613800049 1.423349499702454 -0.2129876613616943 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.6625518202781677 1.437491416931152 -0.05128387361764908 -0.6625518202781677 1.437491416931152 -0.05128387361764908 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.670270562171936 1.443693280220032 -0.05421211943030357 -0.670270562171936 1.443693280220032 -0.05421211943030357 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6929225921630859 1.410237550735474 -0.2155666798353195 -0.6929225921630859 1.410237550735474 -0.2155666798353195 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.6484687328338623 1.442898869514465 -0.05034679174423218 -0.6484687328338623 1.442898869514465 -0.05034679174423218 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6529207229614258 1.45041811466217 -0.05366069078445435 -0.6529207229614258 1.45041811466217 -0.05366069078445435 -0.6766313910484314 1.401006579399109 -0.2162990570068359 -0.6766313910484314 1.401006579399109 -0.2162990570068359 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6333166360855103 1.45330548286438 -0.05340726673603058 -0.6333166360855103 1.45330548286438 -0.05340726673603058 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6325675249099731 1.445207118988037 -0.04965006932616234 -0.6325675249099731 1.445207118988037 -0.04965006932616234 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6677297353744507 1.392238020896912 -0.2200373858213425 -0.6677297353744507 1.392238020896912 -0.2200373858213425 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6766144037246704 1.386852860450745 -0.2229033708572388 -0.6766144037246704 1.386852860450745 -0.2229033708572388 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.6133754849433899 1.452083706855774 -0.05322098359465599 -0.6133754849433899 1.452083706855774 -0.05322098359465599 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6164035201072693 1.444173455238342 -0.04900713264942169 -0.6164035201072693 1.444173455238342 -0.04900713264942169 -0.6550570130348206 1.385769128799439 -0.224215105175972 -0.6550570130348206 1.385769128799439 -0.224215105175972 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6611210703849793 1.378874778747559 -0.2274495214223862 -0.6611210703849793 1.378874778747559 -0.2274495214223862 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6015651226043701 1.439891576766968 -0.04822826012969017 -0.6015651226043701 1.439891576766968 -0.04822826012969017 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.6398611068725586 1.382240414619446 -0.228678435087204 -0.6398611068725586 1.382240414619446 -0.228678435087204 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6422072649002075 1.374526381492615 -0.232350692152977 -0.6422072649002075 1.374526381492615 -0.232350692152977 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5897339582443237 1.432587265968323 -0.04706352949142456 -0.5897339582443237 1.432587265968323 -0.04706352949142456 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5824712514877319 1.422901391983032 -0.04536456242203713 -0.5824712514877319 1.422901391983032 -0.04536456242203713 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.5822021961212158 1.401564002037048 -0.0403386652469635 -0.5822021961212158 1.401564002037048 -0.0403386652469635 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.5894622206687927 1.391803979873657 -0.03692591562867165 -0.5894622206687927 1.391803979873657 -0.03692591562867165 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5795128345489502 1.387503027915955 -0.04206120222806931 -0.5795128345489502 1.387503027915955 -0.04206120222806931 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.6008565425872803 1.383934259414673 -0.03299903497099876 -0.6008565425872803 1.383934259414673 -0.03299903497099876 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5935401320457459 1.3777996301651 -0.03782991692423821 -0.5935401320457459 1.3777996301651 -0.03782991692423821 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6152828931808472 1.378727078437805 -0.02869041077792645 -0.6152828931808472 1.378727078437805 -0.02869041077792645 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6113107800483704 1.371376752853394 -0.03312573954463005 -0.6113107800483704 1.371376752853394 -0.03312573954463005 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6310753226280212 1.368846535682678 -0.02815037220716476 -0.6310753226280212 1.368846535682678 -0.02815037220716476 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6313201785087585 1.376682281494141 -0.02416513673961163 -0.6313201785087585 1.376682281494141 -0.02416513673961163 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6508672833442688 1.370474815368652 -0.0231905784457922 -0.6508672833442688 1.370474815368652 -0.0231905784457922 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.6473941802978516 1.377981305122376 -0.01961001008749008 -0.6473941802978516 1.377981305122376 -0.01961001008749008 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.661943793296814 1.382484555244446 -0.01521891355514526 -0.661943793296814 1.382484555244446 -0.01521891355514526 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.668872058391571 1.376001477241516 -0.01832914911210537 -0.668872058391571 1.376001477241516 -0.01832914911210537 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6735398173332214 1.389763116836548 -0.01116631925106049 -0.6735398173332214 1.389763116836548 -0.01116631925106049 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6832011342048645 1.384974122047424 -0.01393519341945648 -0.6832011342048645 1.384974122047424 -0.01393519341945648 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.681041955947876 1.399080157279968 -0.007593415677547455 -0.681041955947876 1.399080157279968 -0.007593415677547455 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6958399415016174 1.409468173980713 -0.007031377404928207 -0.6958399415016174 1.409468173980713 -0.007031377404928207 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6929180026054382 1.422368407249451 -0.00469767302274704 -0.6929180026054382 1.422368407249451 -0.00469767302274704 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.681103527545929 1.420044422149658 -0.002224501222372055 -0.681103527545929 1.420044422149658 -0.002224501222372055 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.674067497253418 1.429614067077637 -0.000420156866312027 -0.674067497253418 1.429614067077637 -0.000420156866312027 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6840076446533203 1.434201598167419 -0.00309058278799057 -0.6840076446533203 1.434201598167419 -0.00309058278799057 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6626696586608887 1.43729043006897 0.0008590742945671082 -0.6626696586608887 1.43729043006897 0.0008590742945671082 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6699816584587097 1.443707466125488 -0.002117268741130829 -0.6699816584587097 1.443707466125488 -0.002117268741130829 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6482548713684082 1.442306041717529 0.001752506941556931 -0.6482548713684082 1.442306041717529 0.001752506941556931 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6522186994552612 1.449938297271729 -0.001617971807718277 -0.6522186994552612 1.449938297271729 -0.001617971807718277 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6324552297592163 1.452283263206482 -0.001388352364301682 -0.6324552297592163 1.452283263206482 -0.001388352364301682 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6322213411331177 1.444160461425781 0.002431094646453857 -0.6322213411331177 1.444160461425781 0.002431094646453857 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6323062181472778 1.447459578514099 -0.004692345857620239</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1736\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1740\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"4554\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1740\">-0.5353189689301536 0.6828703396715899 0.4971133680563867 -0.7116816668819402 0.7019417498003985 0.02805325134985364 -0.7372469264351943 0.3797266189146804 0.5588154116964603 0.7372469264351943 -0.3797266189146804 -0.5588154116964603 0.7116816668819402 -0.7019417498003985 -0.02805325134985364 0.5353189689301536 -0.6828703396715899 -0.4971133680563867 -0.7293845581637016 0.4062527308477669 0.5504151932778325 0.7293845581637016 -0.4062527308477669 -0.5504151932778325 -0.8551392002274356 0.1137071511555724 -0.5057742895901941 -0.8413516623732291 0.1893757458970763 -0.5062254508494508 0.8413516623732291 -0.1893757458970763 0.5062254508494508 0.8551392002274356 -0.1137071511555724 0.5057742895901941 -0.3217757869612445 0.832205408561372 0.4515467870405812 0.3217757869612445 -0.832205408561372 -0.4515467870405812 0.3800002390550608 -0.01453535679333304 0.9248721758821527 0.3792474588825147 -0.05516985565409254 0.9236490956842116 0.3750021875470372 0.0907887093952834 0.9225674878193333 -0.3750021875470372 -0.0907887093952834 -0.9225674878193333 -0.3792474588825147 0.05516985565409254 -0.9236490956842116 -0.3800002390550608 0.01453535679333304 -0.9248721758821527 -0.8189126874245672 -0.02916183642036883 0.5731767595355419 0.8189126874245672 0.02916183642036883 -0.5731767595355419 -0.8259665171436808 -0.2403013172063103 -0.5099358680328832 0.8259665171436808 0.2403013172063103 0.5099358680328832 -0.7524198665918472 0.4659225089093442 -0.4655969931706268 0.7524198665918472 -0.4659225089093442 0.4655969931706268 0.3666685901632206 -0.1470439171092801 0.9186578424140705 0.3567386434992287 -0.1797019643206095 0.9167577347661948 -0.3567386434992287 0.1797019643206095 -0.9167577347661948 -0.3666685901632206 0.1470439171092801 -0.9186578424140705 -0.4686152157660842 0.8829385217699244 0.02862422622966481 0.4686152157660842 -0.8829385217699244 -0.02862422622966481 0.3628037800051905 0.1115734467219724 0.9251620307819192 -0.3628037800051905 -0.1115734467219724 -0.9251620307819192 -0.8229383511352589 0.02580793656121492 0.5675442014867508 0.8229383511352589 -0.02580793656121492 -0.5675442014867508 -0.8318585706090238 -0.2056643422248446 -0.5154740505995754 0.8318585706090238 0.2056643422248446 0.5154740505995754 0.3131170613773171 -0.1234346884321168 -0.9416589528943586 0.2544879259100693 -0.3209843162467294 -0.9122526866442273 0.2994944615908431 -0.1347978860984816 -0.9445277112820946 -0.2994944615908431 0.1347978860984816 0.9445277112820946 -0.2544879259100693 0.3209843162467294 0.9122526866442273 -0.3131170613773171 0.1234346884321168 0.9416589528943586 0.1524219605567499 -0.4664428658503491 -0.8713200323861203 0.2471285876267311 -0.2985187141514338 -0.9218535884179179 -0.2471285876267311 0.2985187141514338 0.9218535884179179 -0.1524219605567499 0.4664428658503491 0.8713200323861203 0.3282794195216551 -0.2624290987257349 0.9073938455050947 -0.3282794195216551 0.2624290987257349 -0.9073938455050947 -0.122860978971227 0.8950334705384974 0.4287426576188154 0.122860978971227 -0.8950334705384974 -0.4287426576188154 0.5589821522530445 -0.6499000334403392 -0.5149455310970281 0.711230906598061 -0.7025125433725948 -0.02503445433534567 0.9359990946108151 -0.3517769230944942 -0.01259727216125266 -0.9359990946108151 0.3517769230944942 0.01259727216125266 -0.711230906598061 0.7025125433725948 0.02503445433534567 -0.5589821522530445 0.6499000334403392 0.5149455310970281 0.3329966026074757 0.2202533584349048 0.9168433458067001 -0.3329966026074757 -0.2202533584349048 -0.9168433458067001 0.3289736070380834 -0.8033560225578793 -0.4963823797158163 0.4661256861641913 -0.8841396442277655 -0.03199897190164542 -0.4661256861641913 0.8841396442277655 0.03199897190164542 -0.3289736070380834 0.8033560225578793 0.4963823797158163 -0.830657908451834 -0.5565950976711568 0.01446846138536951 0.830657908451834 0.5565950976711568 -0.01446846138536951 -0.6945189613429058 -0.5290913125569488 -0.4875508130563794 0.6945189613429058 0.5290913125569488 0.4875508130563794 0.3139216253142795 0.05128699424629939 -0.9480626864196382 -0.3139216253142795 -0.05128699424629939 0.9480626864196382 -0.5643116170852814 0.7140481388037558 -0.4143520897660429 0.5643116170852814 -0.7140481388037558 0.4143520897660429 0.1306455717262345 -0.8661952539451892 -0.4823251150740073 0.2464346718766853 -0.9684732639848411 -0.0364621645487298 -0.2464346718766853 0.9684732639848411 0.0364621645487298 -0.1306455717262345 0.8661952539451892 0.4823251150740073 0.3138444079746425 -0.2841739681712777 0.9059507952404677 -0.3138444079746425 0.2841739681712777 -0.9059507952404677 -0.2541056583663925 0.9666073562683737 0.03317428513242991 0.2541056583663925 -0.9666073562683737 -0.03317428513242991 0.959758131596603 -0.2806597881232694 -0.009716592242106387 -0.959758131596603 0.2806597881232694 0.009716592242106387 0.3220489042849751 0.2145040039181532 0.9221022370387829 -0.3220489042849751 -0.2145040039181532 -0.9221022370387829 -0.7616229201923672 -0.3651850671952123 0.5353227009340059 0.7616229201923672 0.3651850671952123 -0.5353227009340059 0.3167666671133447 0.09266765087129925 -0.9439658813155792 -0.3167666671133447 -0.09266765087129925 0.9439658813155792 0.9848212039371086 0.1734733232016412 0.005848282931174579 0.847430815686388 0.5305694661737671 0.01889587757122743 0.8283233395337939 0.5598615346411333 0.02086880956974355 -0.8283233395337939 -0.5598615346411333 -0.02086880956974355 -0.847430815686388 -0.5305694661737671 -0.01889587757122743 -0.9848212039371086 -0.1734733232016412 -0.005848282931174579 0.9931124951697394 0.1171183894367515 0.003294661359817383 -0.9931124951697394 -0.1171183894367515 -0.003294661359817383 0.0394079364567948 -0.5380843959287724 -0.8419692378003992 -0.0394079364567948 0.5380843959287724 0.8419692378003992 -0.06290531134253218 -0.8760067052885424 -0.4781790188772527 0.06290531134253218 0.8760067052885424 0.4781790188772527 0.2570799416314827 -0.3475640482872279 0.9017256433910189 -0.2570799416314827 0.3475640482872279 -0.9017256433910189 0.07303733031478342 0.905984810453543 0.4169617147987892 -0.07303733031478342 -0.905984810453543 -0.4169617147987892 0.2700418578432375 0.3209229036352437 0.9077917629803087 -0.2700418578432375 -0.3209229036352437 -0.9077917629803087 -0.07034752157042788 -0.5595950864454855 -0.8257751300656662 0.07034752157042788 0.5595950864454855 0.8257751300656662 -0.5872928368837237 -0.8093730014725578 -0.001571060906258563 0.5872928368837237 0.8093730014725578 0.001571060906258563 -0.5098775062504932 -0.7296513068775871 -0.4556686284918101 0.5098775062504932 0.7296513068775871 0.4556686284918101 0.2828682148995004 0.2426584319855039 -0.9279560649006541 -0.2828682148995004 -0.2426584319855039 0.9279560649006541 0.6057425454555282 0.795118949920031 0.02935684082329544 -0.6057425454555282 -0.795118949920031 -0.02935684082329544 -0.3711483318994795 0.8484508572864647 -0.377332821919982 0.3711483318994795 -0.8484508572864647 0.377332821919982 -0.1787653455178137 -0.5392253898805517 -0.822969580330928 0.1787653455178137 0.5392253898805517 0.822969580330928 0.03434743098001073 -0.9987511880523433 -0.03628110181770163 -0.03434743098001073 0.9987511880523433 0.03628110181770163 0.2512313522627127 -0.3570620712199921 0.8996607610295883 -0.2512313522627127 0.3570620712199921 -0.8996607610295883 -0.04873633665124259 0.9982743393439536 0.0327584019330816 0.04873633665124259 -0.9982743393439536 -0.0327584019330816 0.2699117572865568 0.2961754200666404 0.916202905380043 -0.2699117572865568 -0.2961754200666404 -0.916202905380043 -0.581601649632432 -0.6635404058683408 0.4705886217546181 0.581601649632432 0.6635404058683408 -0.4705886217546181 0.2686374406810328 0.2880646907886809 -0.9191586693194849 -0.2686374406810328 -0.2880646907886809 0.9191586693194849 0.5932766102188829 0.8044533907604631 0.02962441326314405 -0.5932766102188829 -0.8044533907604631 -0.02962441326314405 0.1919290632645986 0.3817694565981829 0.9041102348071842 0.2022111273747708 0.3531221073613152 0.9134634296229532 -0.2022111273747708 -0.3531221073613152 -0.9134634296229532 -0.1919290632645986 -0.3817694565981829 -0.9041102348071842 -0.2823946957298136 -0.4806677635384306 -0.8301877720845023 0.2823946957298136 0.4806677635384306 0.8301877720845023 -0.2505510817790791 -0.8378345458210682 -0.4850334310623727 0.2505510817790791 0.8378345458210682 0.4850334310623727 0.1747063599861972 -0.3953529339017232 0.9017614681475766 -0.1747063599861972 0.3953529339017232 -0.9017614681475766 0.2697748537168222 0.8648085303379074 0.4234710546859796 -0.2697748537168222 -0.8648085303379074 -0.4234710546859796 -0.1692423110097001 0.9177238739089977 -0.3593604477701434 0.1692423110097001 -0.9177238739089977 0.3593604477701434 -0.3502113437466198 -0.9365369152329918 -0.01583101756233706 0.3502113437466198 0.9365369152329918 0.01583101756233706 -0.3115292871716915 -0.8473652558897481 -0.4300251461777547 0.3115292871716915 0.8473652558897481 0.4300251461777547 0.205388827498093 0.406643352909858 -0.8902003218788382 -0.205388827498093 -0.406643352909858 0.8902003218788382 0.3625328255174533 0.9313572586384038 0.03381726192182619 -0.3625328255174533 -0.9313572586384038 -0.03381726192182619 0.108793985060722 0.4030955877714338 0.9086681550124938 -0.108793985060722 -0.4030955877714338 -0.9086681550124938 0.03205668071441394 0.9319483912854097 -0.3611711023906964 0.1550582238440486 0.9873627922470425 0.03273627505463083 -0.1550582238440486 -0.9873627922470425 -0.03273627505463083 -0.03205668071441394 -0.9319483912854097 0.3611711023906964 -0.1733323927131261 -0.9842540067933552 -0.03464003099837473 0.1733323927131261 0.9842540067933552 0.03464003099837473 0.1803893504148477 -0.4056766443530178 0.8960391411558898 -0.1803893504148477 0.4056766443530178 -0.8960391411558898 -0.3631078081931655 -0.8365023170060291 0.41038590774136 0.3631078081931655 0.8365023170060291 -0.41038590774136 0.1858264884282475 0.4347832369135452 -0.8811538192037793 -0.1858264884282475 -0.4347832369135452 0.8811538192037793 0.3566792268836834 0.933613511936929 0.03384877307158488 -0.3566792268836834 -0.933613511936929 -0.03384877307158488 0.1232315634891896 0.3821018256636007 0.9158668989457766 -0.1232315634891896 -0.3821018256636007 -0.9158668989457766 0.3718843601362071 0.9277760136118621 0.03055636190002758 -0.3718843601362071 -0.9277760136118621 -0.03055636190002758 -0.3768968519524143 -0.3788861319661591 -0.8452183516654629 0.3768968519524143 0.3788861319661591 0.8452183516654629 -0.4429178293437548 -0.7517581318586216 -0.4885524614960525 0.4429178293437548 0.7517581318586216 0.4885524614960525 0.08862115089179973 -0.4049990199475744 0.91001213478509 -0.08862115089179973 0.4049990199475744 -0.91001213478509 0.4722258847312988 0.7596897966544084 0.4470728426654047 -0.4722258847312988 -0.7596897966544084 -0.4470728426654047 -0.134938504780879 -0.9904778400910421 -0.02729923471610317 0.134938504780879 0.9904778400910421 0.02729923471610317 -0.1148107547558477 -0.9010139105177175 -0.4183209576939255 0.1148107547558477 0.9010139105177175 0.4183209576939255 0.1350521351926248 0.8787867419773857 -0.4577060005119932 -0.1350521351926248 -0.8787867419773857 0.4577060005119932 0.1391888030242485 0.9896178014931639 0.03582016304421101 -0.1391888030242485 -0.9896178014931639 -0.03582016304421101 0.02951624900057197 0.3883425462900116 0.9210422671006617 -0.02951624900057197 -0.3883425462900116 -0.9210422671006617 0.2379798019051767 0.8911011038891297 -0.3863993226349491 -0.2379798019051767 -0.8911011038891297 0.3863993226349491 -0.4018013786684738 -0.915489799739539 -0.02083455478219574 0.4018013786684738 0.915489799739539 0.02083455478219574 0.1000383512200405 -0.4249379089738234 0.899677776652358 -0.1000383512200405 0.4249379089738234 -0.899677776652358 -0.1492596146027678 -0.9164518185855611 0.3712649076600842 0.1492596146027678 0.9164518185855611 -0.3712649076600842 0.08635964884196243 0.5299307916689104 -0.8436322463568203 -0.08635964884196243 -0.5299307916689104 0.8436322463568203 0.03901238681598718 0.3769247126752178 0.9254219549209021 -0.03901238681598718 -0.3769247126752178 -0.9254219549209021 0.66763790654427 0.5690493336977597 0.4800442495888477 -0.66763790654427 -0.5690493336977597 -0.4800442495888477 0.6097889567518674 0.7922517439862796 0.02223965768998332 -0.6097889567518674 -0.7922517439862796 -0.02223965768998332 -0.4545744276476597 -0.2369390745980475 -0.8586163081711316 0.4545744276476597 0.2369390745980475 0.8586163081711316 -0.6358506402087751 -0.5907760021941187 -0.4966665668007316 0.6358506402087751 0.5907760021941187 0.4966665668007316 0.00749911142197426 -0.3776641182089101 0.9259122945211211 -0.00749911142197426 0.3776641182089101 -0.9259122945211211 0.06861230926749032 -0.9970217984127046 -0.03521199379300232 -0.06861230926749032 0.9970217984127046 0.03521199379300232 0.08052275145707243 -0.9028239222570414 -0.4224038966418208 -0.08052275145707243 0.9028239222570414 0.4224038966418208 -0.05901818176364425 0.8987960722577277 -0.4343759601029908 0.05901818176364425 -0.8987960722577277 0.4343759601029908 -0.07262520675025015 0.9967081587927398 0.03603367231452105 0.07262520675025015 -0.9967081587927398 -0.03603367231452105 -0.04179386715432833 0.3419093409135336 0.9388031078263212 0.04179386715432833 -0.3419093409135336 -0.9388031078263212 0.01503614499995169 -0.4057302007656598 0.913869202090867 -0.01503614499995169 0.4057302007656598 -0.913869202090867 0.4517132567859688 0.7788055852563449 -0.4352206268288938 -0.4517132567859688 -0.7788055852563449 0.4352206268288938 -0.6412872954209069 -0.7670508228513946 -0.01958672751474826 0.6412872954209069 0.7670508228513946 0.01958672751474826 0.05432148557558725 -0.9322541936396561 0.3577028021222869 -0.05432148557558725 0.9322541936396561 -0.3577028021222869 -0.02124807053412244 0.5780698800169537 -0.8157105695746265 0.02124807053412244 -0.5780698800169537 0.8157105695746265 -0.04350194301247607 0.3322406106058186 0.94219093479953 0.04350194301247607 -0.3322406106058186 -0.94219093479953 -0.06242001613278259 -0.3162789065065942 0.9466104768514747 0.06242001613278259 0.3162789065065942 -0.9466104768514747 0.8151773183089368 0.2813300280037586 0.5062996692257016 -0.8151773183089368 -0.2813300280037586 -0.5062996692257016 0.8494885713735113 0.5275888639950153 0.004376950335583665 -0.8494885713735113 -0.5275888639950153 -0.004376950335583665 -0.4986857171682205 -0.05461584421987939 -0.8650604979147801 0.4986857171682205 0.05461584421987939 0.8650604979147801 -0.843949667442519 -0.5361152936893975 -0.01814802182037343 0.843949667442519 0.5361152936893975 0.01814802182037343 0.2769529753733652 -0.9598229062639651 -0.04513355783489734 -0.2769529753733652 0.9598229062639651 0.04513355783489734 0.2862393451175762 -0.8449469473619248 -0.4518093552046329 -0.2862393451175762 0.8449469473619248 0.4518093552046329 -0.2515009257361038 0.8702961530422076 -0.4234759619551234 0.2515009257361038 -0.8702961530422076 0.4234759619551234 -0.2850039247627784 0.9578553119967536 0.03586034229360154 0.2850039247627784 -0.9578553119967536 -0.03586034229360154 -0.1022808584520593 0.264536745673741 0.9589363566903991 0.1022808584520593 -0.264536745673741 -0.9589363566903991 -0.8727572602942931 -0.4877882954168163 -0.01890353030404927 0.8727572602942931 0.4877882954168163 0.01890353030404927 -0.06500642786178341 -0.3441907809959636 0.9366466092470732 0.06500642786178341 0.3441907809959636 -0.9366466092470732 0.6576526325481181 0.5643559704775162 -0.4989943421411817 -0.6576526325481181 -0.5643559704775162 0.4989943421411817 -0.4964681475591983 -0.01406714647408659 -0.8679409506695802 0.4964681475591983 0.01406714647408659 0.8679409506695802 0.254427399178376 -0.8957836151161926 0.3644700446356216 -0.254427399178376 0.8957836151161926 -0.3644700446356216 -0.1346648842095394 0.5837574737799822 -0.8006825717891233 0.1346648842095394 -0.5837574737799822 0.8006825717891233 -0.1124521561141192 0.2448665363620736 0.9630134432889953 0.1124521561141192 -0.2448665363620736 -0.9630134432889953 -0.8819778059525112 0.007569424246116371 -0.4712301493153602 0.8819778059525112 -0.007569424246116371 0.4712301493153602 -0.1171381695292323 -0.229944623273741 0.9661284176893038 0.1171381695292323 0.229944623273741 -0.9661284176893038 0.859798158835566 -0.06609950503679232 0.5063378136154376 -0.859798158835566 0.06609950503679232 -0.5063378136154376 0.8025644541246544 0.1985618941639249 -0.5625508609553718 -0.8025644541246544 -0.1985618941639249 0.5625508609553718 -0.494378423462553 0.1452899853896314 -0.8570185497176601 0.494378423462553 -0.1452899853896314 0.8570185497176601 0.5011239244892839 -0.8639969818054694 -0.0488265064846754 -0.5011239244892839 0.8639969818054694 0.0488265064846754 0.4954003925555833 -0.7178949844613637 -0.4890861297777648 -0.4954003925555833 0.7178949844613637 0.4890861297777648 -0.4523293940591098 0.7826867124956889 -0.4275507330748126 0.4523293940591098 -0.7826867124956889 0.4275507330748126 -0.5159942670472942 0.8561861757210363 0.02636567614366192 0.5159942670472942 -0.8561861757210363 -0.02636567614366192 -0.1456472171251264 0.1552833927624011 0.9770741814600896 0.1456472171251264 -0.1552833927624011 -0.9770741814600896 -0.9975822073775493 -0.06940109617524032 -0.003636945615651953 0.9975822073775493 0.06940109617524032 0.003636945615651953 -0.129892882441727 -0.2399529132593199 0.9620553198799667 0.129892882441727 0.2399529132593199 -0.9620553198799667 0.8574507231435583 -0.02494746157140876 0.513960972780747 -0.8574507231435583 0.02494746157140876 -0.513960972780747 0.7992126797112316 0.2325406128191567 -0.5542417847640897 -0.7992126797112316 -0.2325406128191567 0.5542417847640897 0.4545739921537308 -0.8001041289772173 0.3914024379727705 -0.4545739921537308 0.8001041289772173 -0.3914024379727705 -0.2485432565694079 0.5432058971079742 -0.8019685797841424 0.2485432565694079 -0.5432058971079742 0.8019685797841424 -0.1547000786466975 0.122265600892958 0.9803667724402889 0.1547000786466975 -0.122265600892958 -0.9803667724402889 -0.43865510712441 0.3279444950865583 -0.8366804080030169 0.43865510712441 -0.3279444950865583 0.8366804080030169 -0.8139420852380522 0.3699313426435741 -0.4479387051910715 0.8139420852380522 -0.3699313426435741 0.4479387051910715 -0.1540751705135024 -0.1214397525775982 0.9805678091417884 0.1540751705135024 0.1214397525775982 -0.9805678091417884 0.7859497821586822 -0.3952523166457131 0.4754561453077631 -0.7859497821586822 0.3952523166457131 -0.4754561453077631 0.9306717204499473 -0.3631548007207968 -0.04437047969285109 -0.9306717204499473 0.3631548007207968 0.04437047969285109 0.7418183026015727 -0.6687046187249083 -0.05039582146663192 -0.7418183026015727 0.6687046187249083 0.05039582146663192 0.6931794090547595 -0.4794791752210309 -0.5381468455652734 -0.6931794090547595 0.4794791752210309 0.5381468455652734 -0.6572340711368572 0.6157650527922096 -0.4345995576351638 0.6572340711368572 -0.6157650527922096 0.4345995576351638 -0.751992946766318 0.6588005018606172 0.02210218907503439 0.751992946766318 -0.6588005018606172 -0.02210218907503439 -0.1709436353647587 0.02372407100715416 0.9849951482028365 0.1709436353647587 -0.02372407100715416 -0.9849951482028365 0.8069895019006633 -0.1634979180636875 -0.5674824883738342 -0.8069895019006633 0.1634979180636875 0.5674824883738342 -0.9307864040379604 0.3653393253321558 0.01280028999389669 0.9307864040379604 -0.3653393253321558 -0.01280028999389669 -0.1665198172244957 -0.1041882674261949 0.9805182075832394 0.1665198172244957 0.1041882674261949 -0.9805182075832394 0.6462009509831134 -0.6271481419195555 0.4348672659966132 -0.6462009509831134 0.6271481419195555 -0.4348672659966132 -0.3568877880871619 0.4535396019386854 -0.8166596207647049 0.3568877880871619 -0.4535396019386854 0.8166596207647049 -0.1683220456462901 -0.008533414432395442 0.9856951200992998 0.1683220456462901 0.008533414432395442 -0.9856951200992998 0.7170105024864666 -0.6952010685266518 -0.05090592935510006 -0.7170105024864666 0.6952010685266518 0.05090592935510006 -0.3464687979461342 0.4660128317092822 -0.8141200235420186 0.3464687979461342 -0.4660128317092822 0.8141200235420186 -0.6354932974717718 0.6397462620713476 -0.4322880856953994 0.6354932974717718 -0.6397462620713476 0.4322880856953994 -0.168577867003286 0.005739587349743737 0.9856716288367425 0.168577867003286 -0.005739587349743737 -0.9856716288367425 0.6279427851002537 -0.6490591178411477 0.4294299945134337 -0.6279427851002537 0.6490591178411477 -0.4294299945134337 0.7973154094603279 -0.3587566901921653 0.4853676699981904 -0.7973154094603279 0.3587566901921653 -0.4853676699981904 0.8133779826593525 -0.1226121451898211 -0.5686673185412999 -0.8133779826593525 0.1226121451898211 0.5686673185412999 -0.8277402359618674 0.3350628304934467 -0.450087770764228 0.8277402359618674 -0.3350628304934467 0.450087770764228 -0.9459898466309302 0.3239974634609624 0.0113513762183776 0.9459898466309302 -0.3239974634609624 -0.0113513762183776 -0.1643183079610741 -0.119171920733218 0.9791820806048104 0.1643183079610741 0.119171920733218 -0.9791820806048104 0.6747170807039695 -0.5099989790625136 -0.533533412600848 -0.6747170807039695 0.5099989790625136 0.533533412600848 -0.725972627130354 0.6873611937007985 0.02232339695622613 0.725972627130354 -0.6873611937007985 -0.02232339695622613 -0.1700308140684207 0.03942891935419392 0.984649624275453 0.1700308140684207 -0.03942891935419392 -0.984649624275453 0.7985834038097226 -0.3635569042956527 0.4796779383071929 -0.7985834038097226 0.3635569042956527 -0.4796779383071929 0.800566496546902 -0.1772960399466202 -0.5724154075720408 -0.800566496546902 0.1772960399466202 0.5724154075720408 -0.446245637034375 0.3107982363495508 -0.8392075355415926 0.446245637034375 -0.3107982363495508 0.8392075355415926 -0.1512172839060151 -0.1336391484561072 0.9794252963080001 0.1512172839060151 0.1336391484561072 -0.9794252963080001 0.4336525392393297 -0.8129875064606352 0.3885830536065618 -0.4336525392393297 0.8129875064606352 -0.3885830536065618 0.4768952456949725 -0.8776622754333116 -0.04774782628302089 -0.4768952456949725 0.8776622754333116 0.04774782628302089 -0.2380118979020678 0.552806908475288 -0.7985955537060361 0.2380118979020678 -0.552806908475288 0.7985955537060361 -0.4293463423448363 0.7959637255735328 -0.4267358268135128 0.4293463423448363 -0.7959637255735328 0.4267358268135128 -0.1533145387346087 0.1385497839304223 0.9784163784327343 0.1533145387346087 -0.1385497839304223 -0.9784163784327343 0.8569334536926627 0.01557625494484925 0.5151916499946968 -0.8569334536926627 -0.01557625494484925 -0.5151916499946968 0.7895676334283633 0.2718021557206546 -0.550187731949685 -0.7895676334283633 -0.2718021557206546 0.550187731949685 -0.8795852430685808 -0.0329580402854965 -0.4745983225386761 0.8795852430685808 0.0329580402854965 0.4745983225386761 -0.9931778911233629 -0.1165080322167977 -0.004853350669279085 0.9931778911233629 0.1165080322167977 0.004853350669279085 -0.1241290899677848 -0.2521934869959305 0.9596824548467078 0.1241290899677848 0.2521934869959305 -0.9596824548467078 -0.1439966388252694 0.1695488524553405 0.9749452059670339 0.1439966388252694 -0.1695488524553405 -0.9749452059670339 0.4731664328371595 -0.736776185545258 -0.4829848644104051 -0.4731664328371595 0.736776185545258 0.4829848644104051 -0.4914489871680581 0.8706058050981024 0.02287848642229128 0.4914489871680581 -0.8706058050981024 -0.02287848642229128 0.8609412706265437 -0.02970954024259701 0.5078360677920839 -0.8609412706265437 0.02970954024259701 -0.5078360677920839 0.7938613775106779 0.2406491885984124 -0.5584550844282598 -0.7938613775106779 -0.2406491885984124 0.5584550844282598 -0.4981259669748733 0.1224026569180195 -0.8584218721612101 0.4981259669748733 -0.1224026569180195 0.8584218721612101 -0.1121252230112493 -0.2398226420513322 0.9643199856500934 0.1121252230112493 0.2398226420513322 -0.9643199856500934 -0.1063043294759756 0.2553976401196332 0.9609742113896634 0.1063043294759756 -0.2553976401196332 -0.9609742113896634 0.2334684884898862 -0.9020954626144305 0.3629273222185187 -0.2334684884898862 0.9020954626144305 -0.3629273222185187 0.2546896491755812 -0.9661216117807919 -0.04173983532435711 -0.2546896491755812 0.9661216117807919 0.04173983532435711 -0.1226026292931632 0.585552722073672 -0.8013093066740932 0.1226026292931632 -0.585552722073672 0.8013093066740932 -0.2322472405560263 0.8745440311703633 -0.4257158169464715 0.2322472405560263 -0.8745440311703633 0.4257158169464715 0.8298662567632869 0.5578930055353653 0.008797173432836682 -0.8298662567632869 -0.5578930055353653 -0.008797173432836682 0.6381703126544575 0.592111941513551 -0.4920793642935712 -0.6381703126544575 -0.592111941513551 0.4920793642935712 -0.7845248083818697 -0.3705894045310878 -0.4971763452565743 0.7845248083818697 0.3705894045310878 0.4971763452565743 -0.8530929822079671 -0.52099985370008 -0.02813389685081899 0.8530929822079671 0.52099985370008 0.02813389685081899 -0.05741992810478202 -0.3531132626594803 0.9338168854708177 0.05741992810478202 0.3531132626594803 -0.9338168854708177 -0.264185815821361 0.9638994062974804 0.03322332400839634 0.264185815821361 -0.9638994062974804 -0.03322332400839634 -0.09618190820093919 0.2735306385631074 0.9570423346446514 0.09618190820093919 -0.2735306385631074 -0.9570423346446514 0.2628326176968178 -0.8574330901829026 -0.4424110203578083 -0.2628326176968178 0.8574330901829026 0.4424110203578083 0.8054401400841557 0.3138185242718401 0.502776406134039 -0.8054401400841557 -0.3138185242718401 -0.502776406134039 -0.501200536774284 -0.07684651976347012 -0.861912196419921 0.501200536774284 0.07684651976347012 0.861912196419921 -0.05593971998397868 -0.3240611364504881 0.9443808170280313 0.05593971998397868 0.3240611364504881 -0.9443808170280313 -0.03897942897021398 0.8991737147912199 -0.4358523084092979 0.03897942897021398 -0.8991737147912199 0.4358523084092979 -0.03524905886950984 0.3387172216289925 0.9402277105152507 0.03524905886950984 -0.3387172216289925 -0.9402277105152507 0.03383327999562884 -0.9336000909487275 0.3567158243549972 -0.03383327999562884 0.9336000909487275 -0.3567158243549972 0.0479021511982165 -0.998254380176327 -0.03454817461690651 -0.0479021511982165 0.998254380176327 0.03454817461690651 -0.009891742364935379 0.5749528165630037 -0.8181267702252841 0.009891742364935379 -0.5749528165630037 0.8181267702252841 0.5854825862187838 0.8104134846393168 0.02097915988127646 -0.5854825862187838 -0.8104134846393168 -0.02097915988127646 0.434067993827172 0.7959996662965257 -0.4218643241501631 -0.434067993827172 -0.7959996662965257 0.4218643241501631 -0.6153609956428084 -0.6092809005341072 -0.5001076177042686 0.6153609956428084 0.6092809005341072 0.5001076177042686 -0.6198781599184149 -0.7840896173444694 -0.03089561180432931 0.6198781599184149 0.7840896173444694 0.03089561180432931 0.02408235691846478 -0.4097166028327391 0.9118949201791022 -0.02408235691846478 0.4097166028327391 -0.9118949201791022 -0.05033591546484884 0.9980440499490416 0.03707249621526213 0.05033591546484884 -0.9980440499490416 -0.03707249621526213 -0.03482879739876794 0.3480452959611305 0.9368305219361102 0.03482879739876794 -0.3480452959611305 -0.9368305219361102 0.06078628308626855 -0.9051840193303721 -0.4206505900833479 -0.06078628308626855 0.9051840193303721 0.4206505900833479 0.648217847914167 0.6029108452383217 0.4650936834010306 -0.648217847914167 -0.6029108452383217 -0.4650936834010306 -0.4478877733719995 -0.2541595320630561 -0.8572044532813398 0.4478877733719995 0.2541595320630561 0.8572044532813398 0.01557869864805954 -0.3810414790504169 0.9244266847032833 -0.01557869864805954 0.3810414790504169 -0.9244266847032833 0.09715697212672433 0.5223084558067829 -0.8472038714264122 -0.09715697212672433 -0.5223084558067829 0.8472038714264122 0.1553565177626282 0.8736758638857383 -0.4610366983789674 -0.1553565177626282 -0.8736758638857383 0.4610366983789674 0.04774289829217883 0.3792087845578838 0.9240786294340948 -0.04774289829217883 -0.3792087845578838 -0.9240786294340948 -0.1710229132487364 -0.9112131171823146 0.3747556780341089 0.1710229132487364 0.9112131171823146 -0.3747556780341089 -0.1565797064201739 -0.9873287205753677 -0.02578358129468785 0.1565797064201739 0.9873287205753677 0.02578358129468785 0.3468281485629135 0.9374124389299637 0.03111518445708742 -0.3468281485629135 -0.9374124389299637 -0.03111518445708742 0.2152227048684301 0.8989314492511036 -0.3815775633556394 -0.2152227048684301 -0.8989314492511036 0.3815775633556394 -0.422906601071092 -0.7599157768747203 -0.4936375379034566 0.422906601071092 0.7599157768747203 0.4936375379034566 -0.377041447076373 -0.9255427595003252 -0.03479004919625452 0.377041447076373 0.9255427595003252 0.03479004919625452 0.1086249523253039 -0.4243391732106769 0.8989643406783191 -0.1086249523253039 0.4243391732106769 -0.8989643406783191 -0.1350243989572021 -0.8980221998058066 -0.4187177334938018 0.1350243989572021 0.8980221998058066 0.4187177334938018 0.1612344870590588 0.9862852115314621 0.03528344792025651 -0.1612344870590588 -0.9862852115314621 -0.03528344792025651 0.03730783496796066 0.3914303137574686 0.9194511596173736 -0.03730783496796066 -0.3914303137574686 -0.9194511596173736 0.4512722265729608 0.7735778610677042 0.4448939990489849 -0.4512722265729608 -0.7735778610677042 -0.4448939990489849 -0.3680378476573901 -0.3929392604520207 -0.8427021302258199 0.3680378476573901 0.3929392604520207 0.8427021302258199 0.09728700059972795 -0.405499946012708 0.9089032034809864 -0.09728700059972795 0.405499946012708 -0.9089032034809864 -0.3736452978695597 -0.9274591404343351 -0.0144476366500685 0.3736452978695597 0.9274591404343351 0.0144476366500685 0.1954704969969504 0.4220554389144019 -0.8852460060833579 -0.1954704969969504 -0.4220554389144019 0.8852460060833579 0.3804125365405834 0.9242038214090115 0.03366895507346956 -0.3804125365405834 -0.9242038214090115 -0.03366895507346956 0.1318310967062573 0.3805434644254365 0.9153181051548757 -0.1318310967062573 -0.3805434644254365 -0.9153181051548757 -0.3857750282049133 -0.8236703394848209 0.4156257925904723 0.3857750282049133 0.8236703394848209 -0.4156257925904723 0.133803156203462 0.9904540603065167 0.03312808192948819 -0.133803156203462 -0.9904540603065167 -0.03312808192948819 0.01112162573014972 0.932918757925959 -0.3599151296500387 -0.01112162573014972 -0.932918757925959 0.3599151296500387 -0.2325374771575537 -0.8441249328219719 -0.4830935929046272 0.2325374771575537 0.8441249328219719 0.4830935929046272 -0.1545310923684629 -0.9873169013180834 -0.03640711280872882 0.1545310923684629 0.9873169013180834 0.03640711280872882 0.1883975201061494 -0.4022503373112764 0.89593584622495 -0.1883975201061494 0.4022503373112764 -0.89593584622495 -0.3322803417933081 -0.8385545505459972 -0.431759238715656 0.3322803417933081 0.8385545505459972 0.431759238715656 0.2152734814352987 0.3916917509483593 -0.8945584946943014 -0.2152734814352987 -0.3916917509483593 0.8945584946943014 0.3868386225116456 0.9215265932979312 0.0338322032685134 -0.3868386225116456 -0.9215265932979312 -0.0338322032685134 0.1173933242861763 0.4026912250949326 0.9077767262078177 -0.1173933242861763 -0.4026912250949326 -0.9077767262078177 0.2489647452821473 0.8717144270282413 0.4220551069675863 -0.2489647452821473 -0.8717144270282413 -0.4220551069675863 -0.2718742560936834 -0.4882450598316793 -0.8292774869869953 0.2718742560936834 0.4882450598316793 0.8292774869869953 0.1836766769243425 -0.3924427081114895 0.901250020362913 -0.1836766769243425 0.3924427081114895 -0.901250020362913 -0.6033486848119686 -0.6385057915997583 0.4777873152661486 0.6033486848119686 0.6385057915997583 -0.4777873152661486 -0.613133194869655 -0.7899793293964897 0.000586920098347499 0.613133194869655 0.7899793293964897 -0.000586920098347499 0.2753573485624073 0.269490624296329 -0.9227963664910346 -0.2753573485624073 -0.269490624296329 0.9227963664910346 0.6186599220804722 0.7850965417642933 0.02972071535362874 -0.6186599220804722 -0.7850965417642933 -0.02972071535362874 0.2101194044082203 0.348677204744304 0.913386031633303 -0.2101194044082203 -0.348677204744304 -0.913386031633303 -0.06459543488668709 0.9973987985734438 0.03198540911181907 0.06459543488668709 -0.9973987985734438 -0.03198540911181907 -0.1834693850567989 0.9148456478580954 -0.3597171462996748 0.1834693850567989 -0.9148456478580954 0.3597171462996748 -0.04704796442226061 -0.8766443618860301 -0.4788331147875603 0.04704796442226061 0.8766443618860301 0.4788331147875603 0.05242499028212754 -0.9979360278861268 -0.03708509998339386 -0.05242499028212754 0.9979360278861268 0.03708509998339386 0.2558833332126828 -0.3504308325034475 0.9009561317927238 -0.2558833332126828 0.3504308325034475 -0.9009561317927238 0.2006801611871336 0.3777280010185098 0.9039076447029677 -0.2006801611871336 -0.3777280010185098 -0.9039076447029677 -0.5305646299865623 -0.7131920398338357 -0.4581029226329765 0.5305646299865623 0.7131920398338357 0.4581029226329765 0.2881041820876135 0.2233323426540353 -0.9311920559091385 -0.2881041820876135 -0.2233323426540353 0.9311920559091385 0.6320379801169027 0.7743845161625741 0.02926794863671614 -0.6320379801169027 -0.7743845161625741 -0.02926794863671614 0.05520749936104614 0.9079850299239638 0.415349632777349 -0.05520749936104614 -0.9079850299239638 -0.415349632777349 -0.1693070499459147 -0.5434446410981264 -0.8221940433379094 0.1693070499459147 0.5434446410981264 0.8221940433379094 0.2624175750312578 -0.3400271074477818 0.9030606748803808 -0.2624175750312578 0.3400271074477818 -0.9030606748803808 0.2784905568168335 0.2831290588019411 0.9177586533646944 -0.2784905568168335 -0.2831290588019411 -0.9177586533646944 -0.7799975549569794 -0.3127583210905691 0.5420203380406886 0.7799975549569794 0.3127583210905691 -0.5420203380406886 -0.8613574413193473 -0.5077569331240402 0.01569251886269644 0.8613574413193473 0.5077569331240402 -0.01569251886269644 0.3204140413190193 0.06508380150322665 -0.9450391213635034 -0.3204140413190193 -0.06508380150322665 0.9450391213635034 0.8570042708707975 0.5149543685538287 0.01912270944559269 -0.8570042708707975 -0.5149543685538287 -0.01912270944559269 -0.2668350307977969 0.9632227108355886 0.03163977986141616 0.2668350307977969 -0.9632227108355886 -0.03163977986141616 -0.3847975276529873 0.8412080114665909 -0.3798683247607947 0.3847975276529873 -0.8412080114665909 0.3798683247607947 0.1463569553225811 -0.8636853266535993 -0.4823145220206099 -0.1463569553225811 0.8636853266535993 0.4823145220206099 0.2615119302468758 -0.9645779176513866 -0.03465474163615081 -0.2615119302468758 0.9645779176513866 0.03465474163615081 0.312813937715214 -0.2727711947504667 0.909803998499405 -0.312813937715214 0.2727711947504667 -0.909803998499405 0.8772392349435124 0.4797279675852498 0.01767489157665823 -0.8772392349435124 -0.4797279675852498 -0.01767489157665823 0.2801739029134954 0.3069287177025624 0.9095588746066304 -0.2801739029134954 -0.3069287177025624 -0.9095588746066304 -0.7175182984891687 -0.493062063844748 -0.4919931834185976 0.7175182984891687 0.493062063844748 0.4919931834185976 0.3153872024323705 0.02589512471056812 -0.9486096958486705 -0.3153872024323705 -0.02589512471056812 0.9486096958486705 -0.1392729079951383 0.8940030201217805 0.4258657735856609 0.1392729079951383 -0.8940030201217805 -0.4258657735856609 -0.06132960783264231 -0.559245999409194 -0.826730059540541 0.06132960783264231 0.559245999409194 0.826730059540541 0.3280053829650535 -0.2498508836382989 0.9110362257841945 -0.3280053829650535 0.2498508836382989 -0.9110362257841945 0.9954166754633305 0.09554236411270736 0.004159190941202639 -0.9954166754633305 -0.09554236411270736 -0.004159190941202639 0.3316023839629258 0.1947600294281073 0.9230971725052932 -0.3316023839629258 -0.1947600294281073 -0.9230971725052932 -0.817567595914628 0.09710393958585177 0.5675861617651391 0.817567595914628 -0.09710393958585177 -0.5675861617651391 -0.845892723795817 -0.1331824473670872 -0.5164570994212462 0.845892723795817 0.1331824473670872 0.5164570994212462 0.3083737805748481 -0.1573865694169123 -0.9381551466687964 -0.3083737805748481 0.1573865694169123 0.9381551466687964 -0.49906066751783 0.8659886361325957 0.03165647210073535 0.49906066751783 -0.8659886361325957 -0.03165647210073535 -0.595683679261985 0.6858494732127083 -0.4180567597285746 0.595683679261985 -0.6858494732127083 0.4180567597285746 0.3620936228730396 -0.7880808320770243 -0.4978120231447428 -0.3620936228730396 0.7880808320770243 0.4978120231447428 0.4980653832134243 -0.8665764896036617 -0.03124198634305158 -0.4980653832134243 0.8665764896036617 0.03124198634305158 0.3599605548031149 -0.1644806461059633 0.9183542432212084 -0.3599605548031149 0.1644806461059633 -0.9183542432212084 0.2943113679946609 -0.1612759056071542 -0.9420036629120419 -0.2943113679946609 0.1612759056071542 0.9420036629120419 0.9995125382383325 0.03116340676367468 0.001878292641629105 -0.9995125382383325 -0.03116340676367468 -0.001878292641629105 0.3430705686096357 0.1961097339489665 0.9186095782237014 -0.3430705686096357 -0.1961097339489665 -0.9186095782237014 -0.817429378877535 0.04638033217416691 0.5741585803027777 0.817429378877535 -0.04638033217416691 -0.5741585803027777 -0.8407811832775961 -0.1768953411198223 -0.5116591053977513 0.8407811832775961 0.1768953411198223 0.5116591053977513 -0.35129808944451 0.817004074140153 0.457267968691257 0.35129808944451 -0.817004074140153 -0.457267968691257 0.05310044443485681 -0.5295514525895975 -0.8466141989484161 -0.05310044443485681 0.5295514525895975 0.8466141989484161 0.371910903977818 -0.1265529056336114 0.9196013492693953 -0.371910903977818 0.1265529056336114 -0.9196013492693953 0.2430188581667099 -0.3409755324468221 -0.9081175699478317 -0.2430188581667099 0.3409755324468221 0.9081175699478317 0.9393103414085213 -0.3428645216659327 -0.01183225700355211 -0.9393103414085213 0.3428645216659327 0.01183225700355211 0.3671618082724976 0.09387191368893687 0.9254081641991531 -0.3671618082724976 -0.09387191368893687 -0.9254081641991531 -0.710551092386904 0.4479071478781239 0.5426751624936063 0.710551092386904 -0.4479071478781239 -0.5426751624936063 -0.8322539404838799 0.2410568820350278 -0.4992443872219347 0.8322539404838799 -0.2410568820350278 0.4992443872219347 -0.7492711674649847 0.6617218743863794 0.02677458803110484 0.7492711674649847 -0.6617218743863794 -0.02677458803110484 -0.7717817241406854 0.4268254570173437 -0.4713523093444719 0.7717817241406854 -0.4268254570173437 0.4713523093444719 0.170483809089675 -0.4188156083364765 -0.8919241879509842 -0.170483809089675 0.4188156083364765 0.8919241879509842 0.7457553687214293 -0.6658114120340799 -0.02332581463421711 -0.7457553687214293 0.6658114120340799 0.02332581463421711 0.3833096998644326 -0.03329288471623132 0.9230196410787314 -0.3833096998644326 0.03329288471623132 -0.9230196410787314 -0.8487259779749151 0.1691092802598101 -0.501065131136196 0.8487259779749151 -0.1691092802598101 0.501065131136196 0.2375776990483421 -0.3172714586584776 -0.9180934911192963 -0.2375776990483421 0.3172714586584776 0.9180934911192963 0.9142794687668824 -0.4048141260264062 -0.01478432821686986 -0.9142794687668824 0.4048141260264062 0.01478432821686986 0.3773359827893207 0.07296130221177047 0.923197814377818 -0.3773359827893207 -0.07296130221177047 -0.923197814377818 -0.71627631917822 0.4292064200544956 0.5502091271221374 0.71627631917822 -0.4292064200544956 -0.5502091271221374 -0.563440059942193 0.6543362690745136 0.5043603333193283 0.563440059942193 -0.6543362690745136 -0.5043603333193283 0.1654907986919666 -0.4499909829468489 -0.8775653313656048 -0.1654907986919666 0.4499909829468489 0.8775653313656048 0.7849570711114606 -0.6191700521832394 -0.02169891682831128 -0.7849570711114606 0.6191700521832394 0.02169891682831128 0.3812310444774221 0.001923529054748386 0.9244777935475949 -0.3812310444774221 -0.001923529054748386 -0.9244777935475949 -0.706244167523754 0.7074598653524543 0.02682749996118028 0.706244167523754 -0.7074598653524543 -0.02682749996118028 0.1468982078016113 -0.4681795663506381 -0.8713373687593129 -0.1468982078016113 0.4681795663506381 0.8713373687593129 0.5453458991786713 -0.6596964530242664 -0.5171058306731888 -0.5453458991786713 0.6596964530242664 0.5171058306731888 0.3801228128996285 -0.0195318704039094 0.9247297730428056 -0.3801228128996285 0.0195318704039094 -0.9247297730428056 -0.5268314951105831 0.6908844891673766 0.4951032199324509 0.5268314951105831 -0.6908844891673766 -0.4951032199324509 -0.7478765392265949 0.3581085305286898 0.5589623980528871 0.7478765392265949 -0.3581085305286898 -0.5589623980528871 -0.8574561927620363 0.09222928633258869 -0.5062238993139449 0.8574561927620363 -0.09222928633258869 0.5062238993139449 0.2503982173729226 -0.2899535615827029 -0.9237032341948189 -0.2503982173729226 0.2899535615827029 0.9237032341948189 0.9458582625252803 -0.3243810247306563 -0.01136213040530748 -0.9458582625252803 0.3243810247306563 0.01136213040530748 0.3740624146983042 0.1012565533149434 0.9218592193609889 -0.3740624146983042 -0.1012565533149434 -0.9218592193609889 -0.745636455100407 0.4794183673176139 -0.462800503353024 0.745636455100407 -0.4794183673176139 0.462800503353024 0.7019971799635735 -0.711598225048078 -0.02877369339544687 -0.7019971799635735 0.711598225048078 0.02877369339544687 0.3797672618496636 -0.05575662695424759 0.9234002519914611 -0.3797672618496636 0.05575662695424759 -0.9234002519914611 -0.7412895916953542 0.3839107668710773 0.5505472407746644 0.7412895916953542 -0.3839107668710773 -0.5505472407746644 -0.8464357023243537 0.1648019192866333 -0.5063466492731238 0.8464357023243537 -0.1648019192866333 0.5063466492731238 0.2584249755419185 -0.308893984350796 -0.9153147209829244 -0.2584249755419185 0.308893984350796 0.9153147209829244 0.9667076585006691 -0.2557249669506977 -0.009002459342761676 -0.9667076585006691 0.2557249669506977 0.009002459342761676 0.3621324315713503 0.1188542361564693 0.9245181299206 -0.3621324315713503 -0.1188542361564693 -0.9245181299206 -0.319828480820247 0.8330315432288135 0.4514069016331435 0.319828480820247 -0.8330315432288135 -0.4514069016331435 -0.467388207130944 0.8835831911143512 0.02879250275856144 0.467388207130944 -0.8835831911143512 -0.02879250275856144 0.03704287157454465 -0.5386864577944474 -0.8416915859472416 -0.03704287157454465 0.5386864577944474 0.8416915859472416 0.3259175095422821 -0.8059100577942621 -0.4942537361718227 -0.3259175095422821 0.8059100577942621 0.4942537361718227 0.3683376420512646 -0.1471633872619588 0.917970761461225 -0.3683376420512646 0.1471633872619588 -0.917970761461225 -0.8187865510945885 -0.04530477039692678 0.5723076633471812 0.8187865510945885 0.04530477039692678 -0.5723076633471812 -0.8222367497664668 -0.2530950633661906 -0.5097740835243987 0.8222367497664668 0.2530950633661906 0.5097740835243987 0.3007567281968733 -0.1278839000026509 -0.9450878787522481 -0.3007567281968733 0.1278839000026509 0.9450878787522481 0.9912244872234244 0.1320756401905205 0.005480985032222161 -0.9912244872234244 -0.1320756401905205 -0.005480985032222161 0.333509771844488 0.2262200175126377 0.9152025654251738 -0.333509771844488 -0.2262200175126377 -0.9152025654251738 0.3572217274096596 -0.1813045293836095 0.9162539522924015 -0.3572217274096596 0.1813045293836095 -0.9162539522924015 -0.565300419429448 0.7136719270249551 -0.4136518057127 0.565300419429448 -0.7136719270249551 0.4136518057127 0.4589697805821287 -0.8877956677493337 -0.03414077969096929 -0.4589697805821287 0.8877956677493337 0.03414077969096929 -0.8236095268115204 0.01010747496905179 0.5670671797018883 0.8236095268115204 -0.01010747496905179 -0.5670671797018883 -0.8284159133026785 -0.2197540306626502 -0.5152040766476993 0.8284159133026785 0.2197540306626502 0.5152040766476993 0.3143300407786073 -0.1151558513428136 -0.9423034306239319 -0.3143300407786073 0.1151558513428136 0.9423034306239319 0.9814083768292785 0.1917744503380455 0.007756164442642895 -0.9814083768292785 -0.1917744503380455 -0.007756164442642895 0.3229203741173248 0.2179533747215781 0.9209879252343119 -0.3229203741173248 -0.2179533747215781 -0.9209879252343119 0.3242541706614489 -0.2627750901835281 0.9087400534738713 -0.3242541706614489 0.2627750901835281 -0.9087400534738713 -0.1173928708922645 0.8977239858185802 0.4246299084493154 0.1173928708922645 -0.8977239858185802 -0.4246299084493154 -0.2470209679738535 0.9685272980215588 0.03058617936779985 0.2470209679738535 -0.9685272980215588 -0.03058617936779985 -0.07434429498979471 -0.5620855008319186 -0.8237310335036563 0.07434429498979471 0.5620855008319186 0.8237310335036563 0.1220193310967036 -0.8647783357873065 -0.4871033902485693 -0.1220193310967036 0.8647783357873065 0.4871033902485693 -0.8216091760256223 -0.5698910467663091 0.01351135396984268 0.8216091760256223 0.5698910467663091 -0.01351135396984268 -0.6877399972820246 -0.5387620609649704 -0.4865687390321107 0.6877399972820246 0.5387620609649704 0.4865687390321107 0.3137535991503929 0.05872408916709184 -0.9476867416882385 -0.3137535991503929 -0.05872408916709184 0.9476867416882385 0.8392336626659065 0.5433720470069278 0.02082493649135057 -0.8392336626659065 -0.5433720470069278 -0.02082493649135057 0.2680747318234752 0.3235036174975843 0.9074587305347547 -0.2680747318234752 -0.3235036174975843 -0.9074587305347547 0.2377472828951252 -0.9701780601104388 -0.04723093431566958 -0.2377472828951252 0.9701780601104388 0.04723093431566958 0.3107193740576593 -0.2832717599607755 0.907309528547971 -0.3107193740576593 0.2832717599607755 -0.907309528547971 -0.3635071034682662 0.851689493842403 -0.3774752863520772 0.3635071034682662 -0.851689493842403 0.3774752863520772 -0.7564394689297171 -0.3791257143731235 0.5329756303494525 0.7564394689297171 0.3791257143731235 -0.5329756303494525 0.3158554290317395 0.1010314995531506 -0.9434129446054985 -0.3158554290317395 -0.1010314995531506 0.9434129446054985 0.8201439144736518 0.5717406329886114 0.02183135684324419 -0.8201439144736518 -0.5717406329886114 -0.02183135684324419 0.2680273659666383 0.2977098905819318 0.9162587801176478 -0.2680273659666383 -0.2977098905819318 -0.9162587801176478 -0.06941768949860945 -0.8752680117319243 -0.4786304336578678 0.06941768949860945 0.8752680117319243 0.4786304336578678 0.2548562942491333 -0.3498302492799214 0.9014804856292495 -0.2548562942491333 0.3498302492799214 -0.9014804856292495 0.07989374694636887 0.905524056762171 0.4167051377459245 -0.07989374694636887 -0.905524056762171 -0.4167051377459245 -0.04083407666331518 0.9986109237387494 0.03329866622998426 0.04083407666331518 -0.9986109237387494 -0.03329866622998426 -0.1825168070008863 -0.5375088204783604 -0.8232690222947557 0.1825168070008863 0.5375088204783604 0.8232690222947557 -0.5778166565947228 -0.8161636802074702 -0.002181392191840661 0.5778166565947228 0.8161636802074702 0.002181392191840661 -0.5021055235161622 -0.7356162437443379 -0.4547073621506819 0.5021055235161622 0.7356162437443379 0.4547073621506819 0.2805007666319367 0.2496917903147441 -0.9268081407542307 -0.2805007666319367 -0.2496917903147441 0.9268081407542307 0.5959037904870111 0.8025039654624023 0.02976672471622715 -0.5959037904870111 -0.8025039654624023 -0.02976672471622715 0.1886906347700052 0.3827643441045949 0.9043712187106974 -0.1886906347700052 -0.3827643441045949 -0.9043712187106974 0.02641701591325398 -0.9989898112601752 -0.03635241764447635 -0.02641701591325398 0.9989898112601752 0.03635241764447635 0.2495514332803363 -0.3597419611084889 0.8990605116261908 -0.2495514332803363 0.3597419611084889 -0.8990605116261908 -0.1610314974983271 0.9195489868697272 -0.3584668988348915 0.1610314974983271 -0.9195489868697272 0.3584668988348915 -0.5735130645200138 -0.6719746140646919 0.4685433628571327 0.5735130645200138 0.6719746140646919 -0.4685433628571327 0.265776222113249 0.2945794855482167 -0.9179247934626001 -0.265776222113249 -0.2945794855482167 0.9179247934626001 0.5837459602281524 0.8113763080652734 0.03015195893601343 -0.5837459602281524 -0.8113763080652734 -0.03015195893601343 0.1992330068427163 0.3545630541910325 0.9135596584718136 -0.1992330068427163 -0.3545630541910325 -0.9135596584718136 -0.286198125250775 -0.4777541886152585 -0.8305670161784163 0.286198125250775 0.4777541886152585 0.8305670161784163 -0.25962599946674 -0.8357038626627454 -0.4839353204008397 0.25962599946674 0.8357038626627454 0.4839353204008397 0.1711466414133597 -0.3975101723518444 0.9014956960572436 -0.1711466414133597 0.3975101723518444 -0.9014956960572436 0.2759882413612637 0.8620904505986943 0.4250065242050496 -0.2759882413612637 -0.8620904505986943 -0.4250065242050496 0.1627409593554778 0.9861125950546078 0.0331259720268841 -0.1627409593554778 -0.9861125950546078 -0.0331259720268841 -0.3416776399149192 -0.9396748590695885 -0.0163569439297154 0.3416776399149192 0.9396748590695885 0.0163569439297154 -0.3037978508011625 -0.8503116366343569 -0.4297406036817975 0.3037978508011625 0.8503116366343569 0.4297406036817975 0.2017729220895513 0.4122219067906814 -0.8884597838243995 -0.2017729220895513 -0.4122219067906814 0.8884597838243995 0.3534036074999896 0.9348125618392212 0.03509080269223711 -0.3534036074999896 -0.9348125618392212 -0.03509080269223711 0.1058950680610089 0.4040213110050124 0.9085994798667593 -0.1058950680610089 -0.4040213110050124 -0.9085994798667593 0.03904623842495032 0.9310187796789678 -0.3628765949326953 -0.03904623842495032 -0.9310187796789678 0.3628765949326953 -0.185280144163769 -0.9820270394990084 -0.03597446137839718 0.185280144163769 0.9820270394990084 0.03597446137839718 0.1773343338050253 -0.407918090695269 0.8956312663911717 -0.1773343338050253 0.407918090695269 -0.8956312663911717 -0.3548846155969388 -0.8408590923146846 0.4086721136612301 0.3548846155969388 0.8408590923146846 -0.4086721136612301 0.1821956052109466 0.439781889757753 -0.8794297304975063 -0.1821956052109466 -0.439781889757753 0.8794297304975063 0.3477969156729294 0.9369126823191033 0.03509887687690649 -0.3477969156729294 -0.9369126823191033 -0.03509887687690649 0.1203147449577395 0.3836090892651766 0.9156246112784954 -0.1203147449577395 -0.3836090892651766 -0.9156246112784954 0.3817361878603577 0.9236387664447153 0.03418935504402063 -0.3817361878603577 -0.9236387664447153 -0.03418935504402063 -0.3808561525487514 -0.3762278222568641 -0.8446308168813282 0.3808561525487514 0.3762278222568641 0.8446308168813282 -0.4502518883566059 -0.7431705871337786 -0.4949451640844119 0.4502518883566059 0.7431705871337786 0.4949451640844119 0.08537821147082986 -0.4050004694324626 0.9103214711109079 -0.08537821147082986 0.4050004694324626 -0.9103214711109079 0.4839402349904592 0.7462603074213654 0.4570529537425049 -0.4839402349904592 -0.7462603074213654 -0.4570529537425049 -0.1272823242317779 -0.9915104149325137 -0.02657643728025157 0.1272823242317779 0.9915104149325137 0.02657643728025157 -0.107485252019738 -0.9023317361563371 -0.4174258718902604 0.107485252019738 0.9023317361563371 0.4174258718902604 0.1272952337579134 0.8804963853411909 -0.4566421343498815 -0.1272952337579134 -0.8804963853411909 0.4566421343498815 0.1306568334550952 0.9907806768235814 0.03581120361693436 -0.1306568334550952 -0.9907806768235814 -0.03581120361693436 0.02655459317774895 0.3881777094386431 0.9212018885543671 -0.02655459317774895 -0.3881777094386431 -0.9212018885543671 0.2461740196361449 0.8881072047840408 -0.3881545373518912 -0.2461740196361449 -0.8881072047840408 0.3881545373518912 -0.4100851868289213 -0.9114063973479533 -0.03418359865072141 0.4100851868289213 0.9114063973479533 0.03418359865072141 0.09585588479500046 -0.4239048722954816 0.9006199579147239 -0.09585588479500046 0.4239048722954816 -0.9006199579147239 -0.1414586116089602 -0.9177243521144169 0.3711758003127884 0.1414586116089602 0.9177243521144169 -0.3711758003127884 0.08229943604642631 0.5326286561408844 -0.8423381253890837 -0.08229943604642631 -0.5326286561408844 0.8423381253890837 0.03579019274096595 0.3769091626890147 0.9255585044634567 -0.03579019274096595 -0.3769091626890147 -0.9255585044634567 0.6746750770627003 0.5584493657598201 0.4826467095846549 -0.6746750770627003 -0.5584493657598201 -0.4826467095846549 0.619528573217243 0.7846549825333663 0.02238091492700978 -0.619528573217243 -0.7846549825333663 -0.02238091492700978 -0.4569814034594899 -0.2308057509950033 -0.8590091397650129 0.4569814034594899 0.2308057509950033 0.8590091397650129 -0.6401975749858474 -0.58216510744509 -0.5012293413754696 0.6401975749858474 0.58216510744509 0.5012293413754696 0.00408306155931046 -0.3751957745293469 0.9269365994412057 -0.00408306155931046 0.3751957745293469 -0.9269365994412057 0.07706466119739523 -0.9963908167601588 -0.03558620899385377 -0.07706466119739523 0.9963908167601588 0.03558620899385377 0.0890429529909573 -0.9019492033324196 -0.4225624061966039 -0.0890429529909573 0.9019492033324196 0.4225624061966039 -0.06621635051689698 0.8987936255464268 -0.4333421438094072 0.06621635051689698 -0.8987936255464268 0.4333421438094072 -0.08027752129711639 0.996092975350629 0.03680086998322935 0.08027752129711639 -0.996092975350629 -0.03680086998322935 -0.04440117795251147 0.3395248659412713 0.9395485090212167 0.04440117795251147 -0.3395248659412713 -0.9395485090212167 0.01158391838349427 -0.4044989765681269 0.91446508451128 -0.01158391838349427 0.4044989765681269 -0.91446508451128 0.4607747597898561 0.7726062491475303 -0.4367679069240149 -0.4607747597898561 -0.7726062491475303 0.4367679069240149 -0.6528365961929814 -0.7569697116279336 -0.02830608325228319 0.6528365961929814 0.7569697116279336 0.02830608325228319 0.06271318085236688 -0.9322264024201509 0.3564000443015705 -0.06271318085236688 0.9322264024201509 -0.3564000443015705 -0.02539505075182641 0.5792832754279267 -0.8147306169567982 0.02539505075182641 -0.5792832754279267 0.8147306169567982 -0.04651188970002081 0.3295206170603162 0.9430020185814672 0.04651188970002081 -0.3295206170603162 -0.9430020185814672 -0.06473643536617336 -0.3132162085453832 0.9474728495532399 0.06473643536617336 0.3132162085453832 -0.9474728495532399 0.8189863945610214 0.267804498993347 0.5074859957110751 -0.8189863945610214 -0.267804498993347 -0.5074859957110751 0.8580747624937155 0.5135118524823926 0.00364408170257575 -0.8580747624937155 -0.5135118524823926 -0.00364408170257575 -0.4994276384374227 -0.04700378027259036 -0.8650795793479956 0.4994276384374227 0.04700378027259036 0.8650795793479956 -0.8539205796523492 -0.5200329319132497 -0.01963143835548998 0.8539205796523492 0.5200329319132497 0.01963143835548998 0.2852468130184876 -0.9574703627261206 -0.04341382457129295 -0.2852468130184876 0.9574703627261206 0.04341382457129295 0.2924335662428017 -0.8450028909434059 -0.4477194697930873 -0.2924335662428017 0.8450028909434059 0.4477194697930873 -0.2599785599269004 0.8674531651416381 -0.4241888195887405 0.2599785599269004 -0.8674531651416381 0.4241888195887405 -0.2945723042932884 0.9549914746939281 0.03490617144945838 0.2945723042932884 -0.9549914746939281 -0.03490617144945838 -0.1034209544155115 0.260833981179355 0.9598279744047434 0.1034209544155115 -0.260833981179355 -0.9598279744047434 -0.8820108241384292 -0.4708976330123468 -0.01767272831279923 0.8820108241384292 0.4708976330123468 0.01767272831279923 -0.06793973200068289 -0.3407081446211087 0.9377111244965142 0.06793973200068289 0.3407081446211087 -0.9377111244965142 0.6640962514205898 0.5539647316542878 -0.5020948565085224 -0.6640962514205898 -0.5539647316542878 0.5020948565085224 -0.4964816572811355 -0.007177603277728776 -0.8680175378381272 0.4964816572811355 0.007177603277728776 0.8680175378381272 0.2615164558810464 -0.8933693306476449 0.3653770413717801 -0.2615164558810464 0.8933693306476449 -0.3653770413717801 -0.1382161165012245 0.5831356619914788 -0.8005305146295673 0.1382161165012245 -0.5831356619914788 0.8005305146295673 -0.1141259954480732 0.2414788498438282 0.9636717398788285 0.1141259954480732 -0.2414788498438282 -0.9636717398788285 -0.8822877168491453 0.02221624459042109 -0.4701859453167663 0.8822877168491453 -0.02221624459042109 0.4701859453167663 -0.1188546313479534 -0.226015175599825 0.9668457565742957 0.1188546313479534 0.226015175599825 -0.9668457565742957 0.8587171771022855 -0.08021848991260513 0.5061321997518272 -0.8587171771022855 0.08021848991260513 -0.5061321997518272 0.80509121276603 0.182684089460753 -0.5643178737066713 -0.80509121276603 -0.182684089460753 0.5643178737066713 -0.4925833391417399 0.1528107137817175 -0.8567441506969837 0.4925833391417399 -0.1528107137817175 0.8567441506969837 0.5097604686917933 -0.8591228422745929 -0.04530128520415593 -0.5097604686917933 0.8591228422745929 0.04530128520415593 0.503262502862575 -0.7120610666436443 -0.4895874697975962 -0.503262502862575 0.7120610666436443 0.4895874697975962 -0.4603535068224687 0.7788744847979318 -0.4259450500792463 0.4603535068224687 -0.7788744847979318 0.4259450500792463 -0.5234978772167905 0.8514922081889411 0.03018264307570166 0.5234978772167905 -0.8514922081889411 -0.03018264307570166 -0.1518393415659207 0.1544949781778873 0.9762561733841388 0.1518393415659207 -0.1544949781778873 -0.9762561733841388 -0.9986618584080447 -0.05166696240940564 -0.002239990262371929 0.9986618584080447 0.05166696240940564 0.002239990262371929 -0.1318587900484524 -0.2349770160994678 0.9630156080728645 0.1318587900484524 0.2349770160994678 -0.9630156080728645 0.857028387459813 -0.04027418967984569 0.5136928388966155 -0.857028387459813 0.04027418967984569 -0.5136928388966155 0.802064657774842 0.2179832984637024 -0.5560355801020377 -0.802064657774842 -0.2179832984637024 0.5560355801020377 0.461629591813155 -0.791022940541534 0.4014733210307315 -0.461629591813155 0.791022940541534 -0.4014733210307315 -0.2525244762890936 0.5414008070120525 -0.8019454813399832 0.2525244762890936 -0.5414008070120525 0.8019454813399832 -0.1597796618615042 0.122807679034642 0.9794839118768351 0.1597796618615042 -0.122807679034642 -0.9794839118768351 -0.4353127671755993 0.3341078671532379 -0.8359872773195993 0.4353127671755993 -0.3341078671532379 0.8359872773195993 -0.8085216629104076 0.3822954044526677 -0.4473733835835125 0.8085216629104076 -0.3822954044526677 0.4473733835835125 -0.1551553136597286 -0.1168551605829648 0.9809544842082534 0.1551553136597286 0.1168551605829648 -0.9809544842082534 0.780633767826844 -0.4067753626586666 0.4744941779014527 -0.780633767826844 0.4067753626586666 -0.4744941779014527 0.9244937614473499 -0.3785567368550198 -0.04478930705659131 -0.9244937614473499 0.3785567368550198 0.04478930705659131 0.7501777083173664 -0.6593857530995007 -0.04943515503271423 -0.7501777083173664 0.6593857530995007 0.04943515503271423 0.6978756724217701 -0.4623606802271916 -0.5469845950497244 -0.6978756724217701 0.4623606802271916 0.5469845950497244 -0.6649137266292722 0.6072454867179655 -0.4349053402760593 0.6649137266292722 -0.6072454867179655 0.4349053402760593 -0.7604909755671593 0.6489453172537542 0.02287905800802799 0.7604909755671593 -0.6489453172537542 -0.02287905800802799 -0.1719481295432023 0.01942719420443318 0.984914425151717 0.1719481295432023 -0.01942719420443318 -0.984914425151717 0.8041236149092155 -0.1784768550586106 -0.567037233480945 -0.8041236149092155 0.1784768550586106 0.567037233480945 -0.9246639437465246 0.3805517200660055 0.01330336385764 0.9246639437465246 -0.3805517200660055 -0.01330336385764 -0.1673398208350277 -0.09875008188294676 0.9809412855472096 0.1673398208350277 0.09875008188294676 -0.9809412855472096 0.6515680064245015 -0.6172448359197024 0.4409851987702768 -0.6515680064245015 0.6172448359197024 -0.4409851987702768 -0.3609331625954829 0.4492091988848745 -0.8172749523728423 0.3609331625954829 -0.4492091988848745 0.8172749523728423 -0.1680954692977072 -0.01327613670707577 0.9856813163470833 0.1680954692977072 0.01327613670707577 -0.9856813163470833 0.7077312487955543 -0.70465695649397 -0.05074498145571148 -0.7077312487955543 0.70465695649397 0.05074498145571148 -0.3422913146461143 0.4701646595185103 -0.8134997534465994 0.3422913146461143 -0.4701646595185103 0.8134997534465994 -0.6285504469312564 0.6463465159876448 -0.432620523014282 0.6285504469312564 -0.6463465159876448 0.432620523014282 -0.1684919533531034 0.01077137011397833 0.9856441747614214 0.1684919533531034 -0.01077137011397833 -0.9856441747614214 0.6208555916692818 -0.6569446747327986 0.4277406090532013 -0.6208555916692818 0.6569446747327986 -0.4277406090532013 0.8016848346520146 -0.3477112372625088 0.4862081050027315 -0.8016848346520146 0.3477112372625088 -0.4862081050027315 0.8149407653504821 -0.1080939743893893 -0.5693744301166648 -0.8149407653504821 0.1080939743893893 0.5693744301166648 -0.8324361114609851 0.3218662650475636 -0.4510567899500528 0.8324361114609851 -0.3218662650475636 0.4510567899500528 -0.9513176264003224 0.3080434766497365 0.01019755821753643 0.9513176264003224 -0.3080434766497365 -0.01019755821753643 -0.1634226488672288 -0.1247288266203847 0.978639748654795 0.1634226488672288 0.1247288266203847 -0.978639748654795 0.6678545272762165 -0.5214214448413437 -0.5311214618674591 -0.6678545272762165 0.5214214448413437 0.5311214618674591 -0.7182512980189613 0.6953403055486193 0.02483812339187629 0.7182512980189613 -0.6953403055486193 -0.02483812339187629 -0.1693919375325174 0.04484508914520848 0.9845279526141134 0.1693919375325174 -0.04484508914520848 -0.9845279526141134 0.8048770154338162 -0.3506427111350812 0.4787720534389954 -0.8048770154338162 0.3506427111350812 -0.4787720534389954 0.8033666650645278 -0.1701831128983491 -0.5706484991194902 -0.8033666650645278 0.1701831128983491 0.5706484991194902 -0.449276662052396 0.3041261528388937 -0.840034382685894 0.449276662052396 -0.3041261528388937 0.840034382685894 -0.1500241186418038 -0.1381877067319115 0.9789774877564473 0.1500241186418038 0.1381877067319115 -0.9789774877564473 0.4259164727472657 -0.8178739305926825 0.3868816251767502 -0.4259164727472657 0.8178739305926825 -0.3868816251767502 0.4675417481522561 -0.8827033205932906 -0.04732400604672524 -0.4675417481522561 0.8827033205932906 0.04732400604672524 -0.2320469253631314 0.5524833462257559 -0.8005725304884679 0.2320469253631314 -0.5524833462257559 0.8005725304884679 -0.423557627267104 0.8000749581641595 -0.4248281978664779 0.423557627267104 -0.8000749581641595 0.4248281978664779 -0.1520261298610904 0.1435922819635595 0.9778902353536191 0.1520261298610904 -0.1435922819635595 -0.9778902353536191 0.8563237254984636 0.03079858925869943 0.5155202460118381 -0.8563237254984636 -0.03079858925869943 -0.5155202460118381 0.7854940101452571 0.2863170703831796 -0.5486544406392022 -0.7854940101452571 -0.2863170703831796 0.5486544406392022 -0.8789082253122669 -0.04564312127338695 -0.4748021029427568 0.8789082253122669 0.04564312127338695 0.4748021029427568 -0.9909634038787927 -0.1340025373020281 -0.005903572611154711 0.9909634038787927 0.1340025373020281 0.005903572611154711 -0.1214750110649079 -0.2566275933410345 0.9588462337740964 0.1214750110649079 0.2566275933410345 -0.9588462337740964 -0.142452558699072 0.1742583355203759 0.9743414704413209 0.142452558699072 -0.1742583355203759 -0.9743414704413209 0.4649669496611292 -0.7434136308494656 -0.4807722009330817 -0.4649669496611292 0.7434136308494656 0.4807722009330817 -0.4807005703786668 0.8763117445965224 0.03169681245525551 0.4807005703786668 -0.8763117445965224 -0.03169681245525551 0.860818501158697 -0.01639334936765001 0.5086479786251046 -0.860818501158697 0.01639334936765001 -0.5086479786251046 0.7900970044825006 0.256243834616507 -0.5568535002393426 -0.7900970044825006 -0.256243834616507 0.5568535002393426 -0.4980016540115691 0.1169037436321664 -0.8592600696683899 0.4980016540115691 -0.1169037436321664 0.8592600696683899 -0.1096713944455775 -0.2434581647668065 0.9636909812013087 0.1096713944455775 0.2434581647668065 -0.9636909812013087 -0.1039331501312693 0.2596929771875718 0.9600820058220267 0.1039331501312693 -0.2596929771875718 -0.9600820058220267 0.2255519598441016 -0.9042487363484568 0.3625748698168476 -0.2255519598441016 0.9042487363484568 -0.3625748698168476 0.2462996175769647 -0.9683051549927454 -0.04149247155709469 -0.2462996175769647 0.9683051549927454 0.04149247155709469 -0.1177075886272675 0.5855797316620933 -0.8020232549284995 0.1177075886272675 -0.5855797316620933 0.8020232549284995 -0.2245596538812725 0.8769503476001817 -0.4248894558501582 0.2245596538812725 -0.8769503476001817 0.4248894558501582 0.8181557879751343 0.574941013221297 0.007996118987057179 -0.8181557879751343 -0.574941013221297 -0.007996118987057179 0.6305745196917911 0.6022609822383443 -0.4895482452105935 -0.6305745196917911 -0.6022609822383443 0.4895482452105935 -0.4949674466025706 -0.03893954632934858 -0.8680385582077539 0.4949674466025706 0.03893954632934858 0.8680385582077539 -0.8451073230742584 -0.5342149830365645 -0.02019812826735253 0.8451073230742584 0.5342149830365645 0.02019812826735253 -0.05381835492117146 -0.3553815859925096 0.9331706773206214 0.05381835492117146 0.3553815859925096 -0.9331706773206214 -0.2549244234810441 0.9663206296739521 0.03518492545671107 0.2549244234810441 -0.9663206296739521 -0.03518492545671107 -0.09421689584469263 0.2772090208169448 0.9561790289036364 0.09421689584469263 -0.2772090208169448 -0.9561790289036364 0.2549044366570637 -0.860011990970127 -0.4420442325832825 -0.2549044366570637 0.860011990970127 0.4420442325832825 0.7993074046846863 0.3271452838378929 0.5040670948185921 -0.7993074046846863 -0.3271452838378929 -0.5040670948185921 -0.4949001898211957 -0.08217580751408803 -0.8650554541613803 0.4949001898211957 0.08217580751408803 0.8650554541613803 -0.8143883665441624 -0.5799121006899042 -0.02176106410434394 0.8143883665441624 0.5799121006899042 0.02176106410434394 -0.0528267853515411 -0.3265124915131391 0.943715488712199 0.0528267853515411 0.3265124915131391 -0.943715488712199 -0.03142267022114505 0.8992661103168952 -0.4362717944489363 0.03142267022114505 -0.8992661103168952 0.4362717944489363 -0.03222591778629572 0.3414505049292814 0.9393471365296059 0.03222591778629572 -0.3414505049292814 -0.9393471365296059 0.02593088187460911 -0.9334529941299953 0.3577612291947694 -0.02593088187460911 0.9334529941299953 -0.3577612291947694 0.04047658744709259 -0.9985690523142606 -0.03494987308757316 -0.04047658744709259 0.9985690523142606 0.03494987308757316 -0.005340848939804973 0.5750843972474491 -0.8180766537282069 0.005340848939804973 -0.5750843972474491 0.8180766537282069 0.5748670573803423 0.8178949423428396 0.02399436660696463 -0.5748670573803423 -0.8178949423428396 -0.02399436660696463 0.4214047194118107 0.8001772768590731 -0.4267720563202931 -0.4214047194118107 -0.8001772768590731 0.4267720563202931 -0.6075070051510968 -0.6169889755584409 -0.500259775248511 0.6075070051510968 0.6169889755584409 0.500259775248511 -0.6082644619063846 -0.7931893218307541 -0.02941163231452664 0.6082644619063846 0.7931893218307541 0.02941163231452664 0.02731427010381074 -0.4112080491155628 0.9111321918312783 -0.02731427010381074 0.4112080491155628 -0.9111321918312783 -0.04234697716265905 0.9984412466868483 0.03635671106684103 0.04234697716265905 -0.9984412466868483 -0.03635671106684103 -0.03223101623502139 0.3507029644867439 0.9359319378526771 0.03223101623502139 -0.3507029644867439 -0.9359319378526771 0.05359354659176144 -0.9050878967654793 -0.4218336531055313 -0.05359354659176144 0.9050878967654793 0.4218336531055313 0.6412413465959838 0.60272082229122 0.4749075128826295 -0.6412413465959838 -0.60272082229122 -0.4749075128826295 -0.4462105565441957 -0.2575226230380935 -0.8570753979972237 0.4462105565441957 0.2575226230380935 0.8570753979972237 0.01844952214499368 -0.3829088407142423 0.9236018811346676 -0.01844952214499368 0.3829088407142423 -0.9236018811346676 0.1011330725469509 0.5194724520743951 -0.8484812744975747 -0.1011330725469509 -0.5194724520743951 0.8484812744975747 0.1630294479068578 0.871814449518784 -0.4619101262425891 -0.1630294479068578 -0.871814449518784 0.4619101262425891 0.0510637975217282 0.3804469862760125 0.9233918882122364 -0.0510637975217282 -0.3804469862760125 -0.9233918882122364 -0.1789348057381016 -0.9094822423736374 0.375265753969754 0.1789348057381016 0.9094822423736374 -0.375265753969754 -0.1644532411474187 -0.9860473726968939 -0.02580136185672202 0.1644532411474187 0.9860473726968939 0.02580136185672202 0.3395373426710984 0.9400998637165698 0.03044074854427659 -0.3395373426710984 -0.9400998637165698 -0.03044074854427659 0.2080958314185695 0.9007190269975417 -0.3813153017527829 -0.2080958314185695 -0.9007190269975417 0.3813153017527829 -0.4170843605138727 -0.763075286070442 -0.4937172713236264 0.4170843605138727 0.763075286070442 0.4937172713236264 -0.3672173125572642 -0.929670628098362 -0.02939334294389833 0.3672173125572642 0.929670628098362 0.02939334294389833 0.111827054596911 -0.424651065403749 0.8984242775613538 -0.111827054596911 0.424651065403749 -0.8984242775613538 -0.1429775543358956 -0.8969391337325153 -0.4183988639268644 0.1429775543358956 0.8969391337325153 0.4183988639268644 0.1697457261997588 0.9848297526555807 0.03601036963520293 -0.1697457261997588 -0.9848297526555807 -0.03601036963520293 0.04028526280218579 0.3929503182275642 0.9186768447097243 -0.04028526280218579 -0.3929503182275642 -0.9186768447097243 0.4425252753879181 0.7806935143644559 0.4412357842153354 -0.4425252753879181 -0.7806935143644559 -0.4412357842153354 -0.3615510851970467 -0.3924085741928782 -0.8457519279864222 0.3615510851970467 0.3924085741928782 0.8457519279864222 0.1003763762971855 -0.405997808450411 0.908344847849598 -0.1003763762971855 0.405997808450411 -0.908344847849598 -0.3904713290394705 -0.9204989061760063 -0.01462548894655272 0.3904713290394705 0.9204989061760063 0.01462548894655272 0.2028376560254069 0.413744952877412 -0.8875088727818932 -0.2028376560254069 -0.413744952877412 0.8875088727818932 0.396608791264394 0.9173863486612863 0.03322279310517088 -0.396608791264394 -0.9173863486612863 -0.03322279310517088 0.1367919978862975 0.3783260601638079 0.915509334477375 -0.1367919978862975 -0.3783260601638079 -0.915509334477375 -0.4037411148157989 -0.8136336634161336 0.4183220935634858 0.4037411148157989 0.8136336634161336 -0.4183220935634858 0.2130963481630372 0.976225375381003 -0.03967320080101625 -0.2130963481630372 -0.976225375381003 0.03967320080101625 0.1082527642888195 0.9240157235623439 -0.3667100784453402 -0.1082527642888195 -0.9240157235623439 0.3667100784453402 -0.3282095679388387 -0.7677571340105247 -0.5502976128326798 0.3282095679388387 0.7677571340105247 0.5502976128326798 -0.2328766928025201 -0.9718884443470868 -0.03465974168917625 0.2328766928025201 0.9718884443470868 0.03465974168917625 0.147376313159506 -0.3971289635474629 0.9058525313930679 -0.147376313159506 0.3971289635474629 -0.9058525313930679 -0.3468889467228274 -0.831933338942228 -0.4330761805940883 0.3468889467228274 0.831933338942228 0.4330761805940883 0.2234161499957088 0.3810200301792597 -0.897167186494965 -0.2234161499957088 -0.3810200301792597 0.897167186494965 0.4038395713122486 0.9142287575762091 0.03315689163658483 -0.4038395713122486 -0.9142287575762091 -0.03315689163658483 0.1223263146597214 0.4011059037466704 0.9078272559916547 -0.1223263146597214 -0.4011059037466704 -0.9078272559916547 0.3151557714650701 0.850933809128837 0.4202243355563129 -0.3151557714650701 -0.850933809128837 -0.4202243355563129 -0.3363397734911338 -0.4604549379996871 -0.8214966870533548 0.3363397734911338 0.4604549379996871 0.8214966870533548 0.147769700001947 -0.3878723864430676 0.9097907053802509 -0.147769700001947 0.3878723864430676 -0.9097907053802509 -0.6420063779804296 -0.5914967439439237 0.4878108368375864 0.6420063779804296 0.5914967439439237 -0.4878108368375864 -0.6565684656533083 -0.7542650483841933 0.00144453994444209 0.6565684656533083 0.7542650483841933 -0.00144453994444209 0.2874140128009826 0.2414414916118539 -0.9268760388390025 -0.2874140128009826 -0.2414414916118539 0.9268760388390025 0.6582611817184929 0.7522680620784041 0.02801748417284312 -0.6582611817184929 -0.7522680620784041 -0.02801748417284312 0.2200941092028078 0.3382586534371596 0.9149533684669958 -0.2200941092028078 -0.3382586534371596 -0.9149533684669958 0.2116410019073268 0.368243600618228 0.9053202399788628 -0.2116410019073268 -0.368243600618228 -0.9053202399788628 -0.5633513745399559 -0.6828443070427693 -0.4651439359415776 0.5633513745399559 0.6828443070427693 0.4651439359415776 0.298370217248233 0.191205473160415 -0.935101962618379 -0.298370217248233 -0.191205473160415 0.935101962618379 0.6749359517078825 0.7373591867748749 0.0276204773830946 -0.6749359517078825 -0.7373591867748749 -0.0276204773830946 0.2878241731108553 0.272326905732818 0.9181477559668931 -0.2878241731108553 -0.272326905732818 -0.9181477559668931 -0.7965386423346083 -0.2532915234743957 0.5489713976190006 0.7965386423346083 0.2532915234743957 -0.5489713976190006 -0.8951956121350305 -0.445246287935769 0.01950792386714897 0.8951956121350305 0.445246287935769 -0.01950792386714897 0.3232983020271709 0.02813755581106068 -0.9458786845358804 -0.3232983020271709 -0.02813755581106068 0.9458786845358804 0.8886201215023675 0.4583095248458386 0.01751168457628765 -0.8886201215023675 -0.4583095248458386 -0.01751168457628765 0.9067694045013615 0.4212875724775627 0.01691237228210239 -0.9067694045013615 -0.4212875724775627 -0.01691237228210239 0.2923017754237066 0.2931792918416378 0.9102777460310586 -0.2923017754237066 -0.2931792918416378 -0.9102777460310586 -0.741970476744986 -0.45126640558974 -0.4958209786051158 0.741970476744986 0.45126640558974 0.4958209786051158 0.3148780279575754 -0.004851247987694989 -0.9491197463452703 -0.3148780279575754 0.004851247987694989 0.9491197463452703 0.9986408233613113 0.05204832849954173 0.002734486541561556 -0.9986408233613113 -0.05204832849954173 -0.002734486541561556 0.338159771584448 0.1884759967616518 0.9220221079381208 -0.338159771584448 -0.1884759967616518 -0.9220221079381208 -0.810222486636613 0.1385864754966381 0.5695026874017393 0.810222486636613 -0.1385864754966381 -0.5695026874017393 -0.8502769913784182 -0.1027726419431457 -0.51620424446191 0.8502769913784182 0.1027726419431457 0.51620424446191 0.3038735326440124 -0.1820268002010055 -0.9351615476306924 -0.3038735326440124 0.1820268002010055 0.9351615476306924 0.2901925836013853 -0.1816704618298906 -0.9395659145165215 -0.2901925836013853 0.1816704618298906 0.9395659145165215 0.9998134129065579 -0.01931572795425492 0.0002050017991617721 -0.9998134129065579 0.01931572795425492 -0.0002050017991617721 0.3505536682700014 0.1890931772732937 0.917254542627692 -0.3505536682700014 -0.1890931772732937 -0.917254542627692 -0.8136363054643536 0.08549797737053264 0.5750530917192472 0.8136363054643536 -0.08549797737053264 -0.5750530917192472 -0.8477387422046507 -0.145690523253534 -0.510013035519082 0.8477387422046507 0.145690523253534 0.510013035519082 0.2332790290379629 -0.3605655833137569 -0.9030910002545234 -0.2332790290379629 0.3605655833137569 0.9030910002545234 0.9227552955186689 -0.3850316805994672 -0.01653086588790668 -0.9227552955186689 0.3850316805994672 0.01653086588790668 0.3710773255409565 0.08356988843990149 0.9248338727660842 -0.3710773255409565 -0.08356988843990149 -0.9248338727660842 -0.6915776048788422 0.481449819457784 0.5384482219992104 0.6915776048788422 -0.481449819457784 -0.5384482219992104 -0.8981508096072901 0.4388332978278862 0.02739452352699584 0.8981508096072901 -0.4388332978278862 -0.02739452352699584 -0.8429540014162222 0.203978418702621 -0.497816588915996 0.8429540014162222 -0.203978418702621 0.497816588915996 0.2290286556424245 -0.3336022894551302 -0.9144700035347902 -0.2290286556424245 0.3336022894551302 0.9144700035347902 0.8927775322530374 -0.4501268218996853 -0.01827900737638643 -0.8927775322530374 0.4501268218996853 0.01827900737638643 0.3806461863454164 0.0586449495950467 0.9228592800138519 -0.3806461863454164 -0.0586449495950467 -0.9228592800138519 -0.6731385750235163 0.7390084312967923 0.02740432972295189 0.6731385750235163 -0.7390084312967923 -0.02740432972295189 0.1328489735460141 -0.4811768208942334 -0.8664987116331387 -0.1328489735460141 0.4811768208942334 0.8664987116331387 0.516198589719263 -0.6859647819407342 -0.5128268069327548 -0.516198589719263 0.6859647819407342 0.5128268069327548 0.3820636629172851 -0.03798957389201383 0.9233548341530087 -0.3820636629172851 0.03798957389201383 -0.9233548341530087 -0.4982064155529421 0.7158489907291226 0.4892346982522662 0.4982064155529421 -0.7158489907291226 -0.4892346982522662 -0.7240797982617366 0.5172808467785057 -0.456211542275461 0.7240797982617366 -0.5172808467785057 0.456211542275461 0.6700114878873773 -0.74186164789632 -0.02694255888922608 -0.6700114878873773 0.74186164789632 0.02694255888922608 0.379894693238227 -0.07528147932801071 0.9219613445907695 -0.379894693238227 0.07528147932801071 -0.9219613445907695 -0.2919623060451244 0.845665083770505 0.4467757580042115 0.2919623060451244 -0.845665083770505 -0.4467757580042115 -0.4366392706915987 0.8991736906649493 0.02885864352118438 0.4366392706915987 -0.8991736906649493 -0.02885864352118438 0.02177713585574996 -0.5441272858997885 -0.8387200087593295 -0.02177713585574996 0.5441272858997885 0.8387200087593295 0.2991010112138623 -0.8171191965929602 -0.4928030069410294 -0.2991010112138623 0.8171191965929602 0.4928030069410294 0.3640632629061393 -0.1638809515800347 0.916842938736705 -0.3640632629061393 0.1638809515800347 -0.916842938736705 0.351699520032644 -0.1960107315629559 0.9153618086423327 -0.351699520032644 0.1960107315629559 -0.9153618086423327 -0.5385204348562104 0.737321150528917 -0.4078642693654254 0.5385204348562104 -0.737321150528917 0.4078642693654254 0.4313254792109038 -0.9015926789875245 -0.03299957847583465 -0.4313254792109038 0.9015926789875245 0.03299957847583465 0.3161388477041972 -0.2763160755931569 0.9075823132592764 -0.3161388477041972 0.2763160755931569 -0.9075823132592764 -0.09028294640818048 0.9018061391263758 0.4226046344064832 0.09028294640818048 -0.9018061391263758 -0.4226046344064832 -0.2181679418180512 0.9753952588071517 0.03173071476353479 0.2181679418180512 -0.9753952588071517 -0.03173071476353479 -0.08967032070999265 -0.5583348527658186 -0.8247553732900068 0.08967032070999265 0.5583348527658186 0.8247553732900068 0.09609590767600762 -0.8714827722638359 -0.4809192803114296 -0.09609590767600762 0.8714827722638359 0.4809192803114296 0.208645464388462 -0.9773301409440586 -0.03595644298856492 -0.208645464388462 0.9773301409440586 0.03595644298856492 0.3037402224766287 -0.2968019404946466 0.9053455060740404 -0.3037402224766287 0.2968019404946466 -0.9053455060740404 -0.3354649239994378 0.8652214844413689 -0.3726326175029842 0.3354649239994378 -0.8652214844413689 0.3726326175029842 -0.09635811980048231 -0.8729912242445731 -0.4781228243249607 0.09635811980048231 0.8729912242445731 0.4781228243249607 0.2454506262031012 -0.377838807823859 0.8927439864814272 -0.2454506262031012 0.377838807823859 -0.8927439864814272 0.1068562574116552 0.9026725963806916 0.4168500017935887 -0.1068562574116552 -0.9026725963806916 -0.4168500017935887 -0.01341961262984234 0.9993629150444336 0.0330708032977326 0.01341961262984234 -0.9993629150444336 -0.0330708032977326 -0.1974089586396487 -0.532140896373992 -0.8233199678467016 0.1974089586396487 0.532140896373992 0.8233199678467016 -0.003042879031513646 -0.9993172156254773 -0.03682177944834953 0.003042879031513646 0.9993172156254773 0.03682177944834953 0.2410763476317336 -0.387128098884963 0.8899517007491239 -0.2410763476317336 0.387128098884963 -0.8899517007491239 -0.1342923521062531 0.9239445732737138 -0.3581787119355711 0.1342923521062531 -0.9239445732737138 0.3581787119355711 -0.2993802353626548 -0.4646202361375466 -0.8333663725191293 0.2993802353626548 0.4646202361375466 0.8333663725191293 -0.2850143040300812 -0.8249952226453783 -0.4880058699550152 0.2850143040300812 0.8249952226453783 0.4880058699550152 0.1571484006186686 -0.4017221510281468 0.9021771963180587 -0.1571484006186686 0.4017221510281468 -0.9021771963180587 0.3048994353963863 0.8512331346139842 0.4271281831373522 -0.3048994353963863 -0.8512331346139842 -0.4271281831373522 0.1916540383574875 0.9809149286690172 0.03278158470122235 -0.1916540383574875 -0.9809149286690172 -0.03278158470122235 0.0671884696021032 0.9289349896042631 -0.3640954471583719 -0.0671884696021032 -0.9289349896042631 0.3640954471583719 -0.2140789725420893 -0.9760632326372259 -0.03835048121069835 0.2140789725420893 0.9760632326372259 0.03835048121069835 0.1633996295092597 -0.4106962735212303 0.897011221775966 -0.1633996295092597 0.4106962735212303 -0.897011221775966 0.4114591536304653 0.9109580158340394 0.02927214172914724 -0.4114591536304653 -0.9109580158340394 -0.02927214172914724 -0.3926689146402455 -0.35857041203632 -0.8468992756446043 0.3926689146402455 0.35857041203632 0.8468992756446043 -0.4758443584816475 -0.7262158686624752 -0.4961679741821269 0.4758443584816475 0.7262158686624752 0.4961679741821269 0.07403530606453394 -0.4018766838318172 0.9126959540001656 -0.07403530606453394 0.4018766838318172 -0.9126959540001656 0.5074146196525977 0.7336990492225338 0.4519027649093994 -0.5074146196525977 -0.7336990492225338 -0.4519027649093994 0.274872235547456 0.8774438918920908 -0.3931125420365075 -0.274872235547456 -0.8774438918920908 0.3931125420365075 -0.4416336979657198 -0.8965662113422417 -0.03359621259223083 0.4416336979657198 0.8965662113422417 0.03359621259223083 0.08549088373456706 -0.4236410853674398 0.9017868592893668 -0.08549088373456706 0.4236410853674398 -0.9017868592893668 0.6984002947064492 0.5260813162216286 0.4852581550849647 -0.6984002947064492 -0.5260813162216286 -0.4852581550849647 0.652959689507299 0.7571332382136453 0.01982179282131184 -0.652959689507299 -0.7571332382136453 -0.01982179282131184 -0.4651746175759606 -0.207852160314994 -0.8604708330997912 0.4651746175759606 0.207852160314994 0.8604708330997912 -0.665423853153388 -0.5535581018224417 -0.5007839090478381 0.665423853153388 0.5535581018224417 0.5007839090478381 -0.005387601560723753 -0.3680435395178345 0.9297929483323731 0.005387601560723753 0.3680435395178345 -0.9297929483323731 0.000868304132819345 -0.3981816825083262 0.9173061614111023 -0.000868304132819345 0.3981816825083262 -0.9173061614111023 0.4895014731041097 0.7496380756810936 -0.4454560172655136 -0.4895014731041097 -0.7496380756810936 0.4454560172655136 -0.6864943599299461 -0.7266385896011196 -0.02686733866368751 0.6864943599299461 0.7266385896011196 0.02686733866368751 -0.07262576442607609 -0.3044614123800715 0.9497519395679382 0.07262576442607609 0.3044614123800715 -0.9497519395679382 0.8316127756564834 0.2226940531091179 0.5087509705885118 -0.8316127756564834 -0.2226940531091179 -0.5087509705885118 0.8847533030430639 0.466059554598581 -0.0002903820942461804 -0.8847533030430639 -0.466059554598581 0.0002903820942461804 -0.5016223448988417 -0.02024006257359567 -0.8648499077673559 0.5016223448988417 0.02024006257359567 0.8648499077673559 -0.8822448680326102 -0.4704388045425635 -0.01820230783956228 0.8822448680326102 0.4704388045425635 0.01820230783956228 -0.9072917110443275 -0.4201047632020399 -0.01826852498738157 0.9072917110443275 0.4201047632020399 0.01826852498738157 -0.07685647797368571 -0.3297862966323041 0.9409219310585922 0.07685647797368571 0.3297862966323041 -0.9409219310585922 0.6901787415728549 0.5152442173959565 -0.5081109141919102 -0.6901787415728549 -0.5152442173959565 0.5081109141919102 -0.4967373698995862 0.01608717979290114 -0.8677518009151883 0.4967373698995862 -0.01608717979290114 0.8677518009151883 -0.8811357659201282 0.0768003594678575 -0.4665848977431188 0.8811357659201282 -0.0768003594678575 0.4665848977431188 -0.1213401419479091 -0.2131789266836514 0.9694489750214126 0.1213401419479091 0.2131789266836514 -0.9694489750214126 0.8530841702615671 -0.129409370341721 0.5054706849233622 -0.8530841702615671 0.129409370341721 -0.5054706849233622 0.8141415650726762 0.1226466323187181 -0.5675661332407798 -0.8141415650726762 -0.1226466323187181 0.5675661332407798 -0.4880841511746171 0.1805356816951876 -0.8539207978536462 0.4880841511746171 -0.1805356816951876 0.8539207978536462 -0.9999912890016439 0.003565470406150566 -0.002170101751911943 0.9999912890016439 -0.003565470406150566 0.002170101751911943 -0.1346341299312233 -0.2158364992083521 0.967103022778414 0.1346341299312233 0.2158364992083521 -0.967103022778414 0.8525399834492935 -0.09184736460572623 0.5145285592027534 -0.8525399834492935 0.09184736460572623 -0.5145285592027534 0.8136691103485404 0.1551681516635968 -0.5602369352103785 -0.8136691103485404 -0.1551681516635968 0.5602369352103785 -0.4242011506809903 0.3566735691717121 -0.8323685174339763 0.4242011506809903 -0.3566735691717121 0.8323685174339763 -0.7885509876220191 0.4252210297831079 -0.4442684050779792 0.7885509876220191 -0.4252210297831079 0.4442684050779792 -0.1578790767136951 -0.1001809033739212 0.9823634682413714 0.1578790767136951 0.1001809033739212 -0.9823634682413714 0.7547715708514621 -0.44639443705225 0.4806785645347849 -0.7547715708514621 0.44639443705225 -0.4806785645347849 0.9002426714264509 -0.4324438669647231 -0.05055130530029929 -0.9002426714264509 0.4324438669647231 0.05055130530029929 0.7844421490554812 -0.2204106761446065 -0.5797151443827353 -0.7844421490554812 0.2204106761446065 0.5797151443827353 -0.9025620350092503 0.4302953214917916 0.01509003851010579 0.9025620350092503 -0.4302953214917916 -0.01509003851010579 -0.169444804962263 -0.07902734954524104 0.9823660906684203 0.169444804962263 0.07902734954524104 -0.9823660906684203 0.6777943647040133 -0.7334431215125454 -0.05153626569141771 -0.6777943647040133 0.7334431215125454 0.05153626569141771 -0.3277576958189358 0.4837068770718885 -0.8115433136344744 0.3277576958189358 -0.4837068770718885 0.8115433136344744 -0.6008360970729323 0.6729522999371917 -0.4314292369130882 0.6008360970729323 -0.6729522999371917 0.4314292369130882 -0.168089397435747 0.02890991779143854 0.9853477412177792 0.168089397435747 -0.02890991779143854 -0.9853477412177792 0.5960603579688953 -0.6811454613724286 0.4251504558503186 -0.5960603579688953 0.6811454613724286 -0.4251504558503186 0.642457615765161 -0.5591213942028391 -0.5240529348167207 -0.642457615765161 0.5591213942028391 0.5240529348167207 -0.6860462605246198 0.7270928103701851 0.026011027049533 0.6860462605246198 -0.7270928103701851 -0.026011027049533 -0.1672078096097679 0.0635631640950807 0.9838705568192014 0.1672078096097679 -0.0635631640950807 -0.9838705568192014 0.3991470387627658 -0.8338683812760162 0.3812416086355626 -0.3991470387627658 0.8338683812760162 -0.3812416086355626 0.4366355637622926 -0.8983679002551223 -0.04779644598908765 -0.4366355637622926 0.8983679002551223 0.04779644598908765 -0.2165491592345843 0.5605205997528345 -0.7993266659429781 0.2165491592345843 -0.5605205997528345 0.7993266659429781 -0.395878753458329 0.8145817266860315 -0.4239535624446186 0.395878753458329 -0.8145817266860315 0.4239535624446186 -0.1470001632110153 0.1606471829413976 0.9760038087164046 0.1470001632110153 -0.1606471829413976 -0.9760038087164046 -0.1367704356193799 0.1896404371318128 0.9722810049285855 0.1367704356193799 -0.1896404371318128 -0.9722810049285855 0.4363268549376191 -0.7641342532907666 -0.4750975885099907 -0.4363268549376191 0.7641342532907666 0.4750975885099907 -0.4488588098000007 0.8930220883870532 0.032207429542781 0.4488588098000007 -0.8930220883870532 -0.032207429542781 -0.09536560608358956 0.2728967479651381 0.9573049493898803 0.09536560608358956 -0.2728967479651381 -0.9573049493898803 0.1991484148306641 -0.9116095558872244 0.3595941135301458 -0.1991484148306641 0.9116095558872244 -0.3595941135301458 0.2176539959285311 -0.9751768928606872 -0.04070338667628007 -0.2176539959285311 0.9751768928606872 0.04070338667628007 -0.1020086360497765 0.5870416815121564 -0.8031041665554002 0.1020086360497765 -0.5870416815121564 0.8031041665554002 -0.1981121207031203 0.8828403326833408 -0.4258456699534237 0.1981121207031203 -0.8828403326833408 0.4258456699534237 -0.2257134547048324 0.973564616878436 0.0350053299877863 0.2257134547048324 -0.973564616878436 -0.0350053299877863 -0.08665208688554509 0.2887112025816377 0.9534868941638603 0.08665208688554509 -0.2887112025816377 -0.9534868941638603 0.2265500462827463 -0.8703548962419158 -0.4372155430871709 -0.2265500462827463 0.8703548962419158 0.4372155430871709 -0.1010732297696643 0.8940250761423974 -0.4364669122081412 0.1010732297696643 -0.8940250761423974 0.4364669122081412 -0.06445738612506215 0.342596166498884 0.9372689646383228 0.06445738612506215 -0.342596166498884 -0.9372689646383228 0.09421242280934485 -0.9292856702354743 0.3571444560446074 -0.09421242280934485 0.9292856702354743 -0.3571444560446074 0.1141520068239995 -0.9931836877053528 -0.02356866169407399 -0.1141520068239995 0.9931836877053528 0.02356866169407399 -0.05548150953601904 0.5705702570479805 -0.8193725549905893 0.05548150953601904 -0.5705702570479805 0.8193725549905893 -0.1183122180816655 0.9923409512272472 0.03551979124373652 0.1183122180816655 -0.9923409512272472 -0.03551979124373652 -0.06848399295769723 0.3517417087860151 0.9335886208651348 0.06848399295769723 -0.3517417087860151 -0.9335886208651348 0.1175068314992904 -0.9005861550453422 -0.4184933952784017 -0.1175068314992904 0.9005861550453422 0.4184933952784017</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1738\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2670\" source=\"#ID1741\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"5340\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1741\">-6.580618697481437 -6.545009713473284 -6.567617648033625 -6.606732382168279 -6.682986093858498 -6.636723984740837 -6.881886868690907 -6.456583340927664 -6.756099899164711 -6.426275566867586 -6.859254916403135 -6.517442078751968 -10.61693605112678 3.184827725803856 -10.74657196519547 3.086140098357892 -10.73262445343298 3.155608790016468 -1.533092614824339 -6.434690839908924 -1.559405791392609 -6.375650075232074 -1.412648348859682 -6.340772034012076 14.30898493615991 2.947457128116731 14.33751141972596 3.00117761298326 14.44051209027738 2.936797991894637 -12.06110462075435 -5.035157135385706 -12.05809024149011 -5.098522253808291 -12.16418758194686 -5.123866330376003 -14.28814175341842 1.085588573710755 -14.2824434631127 1.015401747004727 -14.39929201747007 0.9912305055100119 -10.42933963478339 3.127297029085289 -10.43391457166809 3.05891381887446 -10.56001487618986 3.029461348607242 11.45762516172873 6.540259670332341 11.47797163129741 6.589504610126216 11.5973584461837 6.513844369553664 -1.137064559277398 -6.562851727461976 -1.271113876150494 -6.597002986620765 -1.151641495433576 -6.502319096981208 14.36063873912256 2.926066127749094 14.49201889613716 2.914338663113008 14.47716685152766 2.853122092708056 11.70748954317793 6.478829872756479 11.84637456995346 6.449777749136851 11.84093961111974 6.391715699527722 -12.26906940977927 -4.818979687707555 -12.37360027290782 -4.906634087921719 -12.38566096444787 -4.844084924398307 -14.46544077452874 1.025991648232917 -14.35893502858219 1.050252502010602 -14.46923482461555 0.9552788433374404 7.739432046823051 -10.03694049230219 7.639865864740337 -9.983099743997331 7.788914935261003 -9.989105445713978 1.776162464053896 -11.05068803421863 1.665101898714817 -10.99523746474838 1.835380771051105 -11.01096062030451 -5.51283250728245 3.713463970245473 -5.492925841198693 3.780127176594322 -5.358548342198889 3.813470732354115 8.498016943087372 8.575624199463169 8.654092498597761 8.533859822440421 8.648754551688274 8.482249557601401 2.154550179828575 -6.049267118074262 2.132428225229554 -5.990166820626622 2.295670935413403 -5.951642658655977 8.789434211505821 -1.333744793888774 8.78660936696904 -1.262091227687889 8.931615188888184 -1.28876984275119 15.16729014396182 -0.9180957161036953 15.26952992075916 -0.9688286178485134 15.12876549151582 -0.9725522853113809 3.599636952745333 -1.413590562477219 3.433219173912354 -1.452833223600031 3.431199227589967 -1.38114939033275 -15.14559909809822 -1.830127624946375 -15.15581010256368 -1.89288024694656 -15.26670342851949 -1.912248653014465 -15.25394005643405 -1.482299422728862 -15.23889520811196 -1.552078610595723 -15.36006185113027 -1.570071821484925 13.85366256063633 -5.420686821229857 13.71907883153179 -5.432419650090949 13.72955096136054 -5.37130008509078 7.549530277180296 -10.14466754688337 7.586489731770421 -10.09078718230263 7.698527486315976 -10.15142284030032 1.443950192576218 -11.23213334560071 1.48862060606892 -11.18611617644985 1.613950649777629 -11.24962180671451 -5.26436046835787 3.677468389356899 -5.411283838790938 3.643250863079274 -5.256608640031511 3.742883125396392 -0.3357938802278748 -1.464238976150553 -0.5205981776007085 -1.499422698088571 -0.5219607647003055 -1.427740732370425 8.00466637656822 8.553374808734567 8.025367063583357 8.595594769838016 8.16254167270783 8.516030499292146 2.513018264421359 -6.144422261422504 2.363355207479492 -6.181765356209835 2.503714277356395 -6.083463704108516 8.793899512558674 -1.342409054410137 8.936080091119722 -1.297433323036027 8.939069665865294 -1.369088249545524 3.601889307207162 -1.485948865938943 3.433482610389947 -1.453520654717407 3.599900363322454 -1.414277925622595 15.13150972544219 -0.8935372586893242 15.27225588363935 -0.8894082489526436 15.248732610583 -0.9497920914519146 -0.3405600250748775 -1.516300042088481 -0.5266630625965385 -1.47978758183525 -0.341858146444467 -1.444605871307476 -15.18190061644777 -1.693846131829051 -15.30408639043193 -1.774969756514498 -15.30295819003457 -1.71251456640385 -15.34925793102598 -1.576142044610847 -15.23814176621759 -1.557580808910237 -15.34359016192504 -1.645854029450044 13.73176474112583 -5.594929424044595 13.6227734567117 -5.549565167589616 13.75754370861559 -5.539241983940605 15.26794181216265 -1.201586369010382 15.4026095543531 -1.144914174005858 15.40571873838469 -1.21656415117917 13.48542759954237 -1.187513996421264 13.61668585883023 -1.136727326662673 13.61880185168607 -1.208401062036025 -2.825915076579227 -10.47298883662777 -2.960545493628167 -10.41543244096379 -2.768166969085556 -10.43709035758611 -1.576757897260338 3.588180983045058 -1.560462817920151 3.652616633508753 -1.410422583172373 3.689011024111676 -3.855155477236379 -1.513649149798202 -4.053412360945431 -1.474737389203775 -3.855770975181954 -1.441960805270113 4.724495152034121 9.853778914633699 4.899144023582807 9.804261874598007 4.890014490506999 9.75958378494558 5.551234798891407 -5.548974550687335 5.534993013697682 -5.488922348098751 5.708732910407464 -5.448701022701108 13.4905068726135 -1.195619266123532 13.48703512130899 -1.123977794312584 13.6217650401156 -1.144832449562632 -3.201129253911908 -10.66053231288505 -3.16082607796162 -10.61822488135849 -3.00915445380823 -10.68430400185338 14.37427292395258 -4.176146895236155 14.48831819664287 -4.213143445949156 14.33046992460895 -4.229073863684964 -6.369583058882933 -9.699417895355477 -6.340211027574866 -9.656796230945387 -6.169441283768498 -9.725494835892333 -14.64957652871657 0.923466453846057 -14.66872736513775 0.8628490103790216 -14.79396394674563 0.8493250318827015 -13.95363701997803 -3.483949602294809 -14.09018366605725 -3.496235699392138 -13.97401382069266 -3.415959253979947 15.33774035154781 1.482968778162605 15.20555793672612 1.454279869603094 15.18685504058227 1.511689594454686 14.21924000644283 -1.337679074555944 14.21686019370335 -1.266011810181029 14.37169429347407 -1.275618970363387 15.26796047500114 -1.202005770447221 15.26602492824712 -1.130328878983037 15.40263019764715 -1.145336487865999 -1.267835338164149 3.498298483228099 -1.431319179278802 3.46084420333183 -1.264503010966737 3.561181434576645 -9.160814424796168 -8.499192251752284 -9.144238663360635 -8.454079626645166 -8.960772650829012 -8.524847766534801 -3.86164844663055 -1.420083168817847 -4.059290449338185 -1.452857450474979 -4.059859140568322 -1.381171091724309 4.214209765097551 9.706760423997796 4.241542992263189 9.742374720772524 4.390780778657863 9.661658774634711 5.81186686549028 -5.573885606192285 5.652480019532534 -5.612966590725296 5.809591946258694 -5.512318845908505 -6.033043384738718 -9.582836337394287 -6.18482113180164 -9.522118487933822 -5.984319102058612 -9.5464225342368 14.55599533754309 -4.100115412335536 14.52721092316535 -4.156341655985824 14.39840191736806 -4.117537457912769 -8.838526383720716 -8.422930952291223 -9.001390688661905 -8.360520461954543 -8.801007145604851 -8.384468629366044 -14.57989631441111 0.930398879062954 -14.72494760888468 0.8570637678566174 -14.7163862676825 0.9179154899456861 -14.0306366128091 -3.579026633172484 -14.04018196318075 -3.51161279617297 -13.91489750526628 -3.498366077317781 15.41082394072371 1.048020730342602 15.41000292946648 0.9933688473472547 15.27762056853224 1.022420357830555 14.21925518578394 -1.337701234835617 14.37170946756895 -1.275641122667588 14.37401384332346 -1.347306285535949 13.0887863053135 -6.493482618447323 13.06315073182448 -6.545122205857973 12.91092616280336 -6.520870100630303 2.127796006892804 3.268686239813019 2.137888030772398 3.331121076362597 2.297674464496027 3.369178892006708 -11.37844683521693 -6.982809433271168 -11.54227904446258 -6.919146089585195 -11.35264213589822 -6.940464393467607 -6.969309814844864 -1.426064401907399 -7.169138685558715 -1.386538944137186 -6.969196157910561 -1.354376702983068 1.42520110639496 10.39663474916311 1.612490304249503 10.34081313466535 1.592711432960707 10.30223042044524 8.453040928387372 -4.992847012691402 8.444295306881864 -4.931639694667493 8.619460029473876 -4.89075152620012 12.76951926405819 -6.58402051542777 12.90328343694316 -6.608753264278488 12.72476870385108 -6.633364448175943 2.407180428441364 3.204189162625434 2.23306101354886 3.164845509836631 2.403265162843157 3.264996539024871 -12.35283524094875 2.180077371835965 -12.49521664307451 2.170956610667029 -12.33259332827868 2.239193604852102 -11.69818573484253 -4.611799464835253 -11.85326884084011 -4.619672060400372 -11.71832234626677 -4.545844331156123 12.91355851458836 5.873539148831609 12.76729556861925 5.836704493622889 12.73843114318628 5.886420206183411 12.09933149555814 -1.413658653592374 11.92509416941972 -1.480043363795554 11.92360826871389 -1.408364807887314 10.73634488754209 -8.418595656168597 10.89032174383181 -8.434532527665484 10.69717051496003 -8.46467865356014 5.643858274455487 2.926661275647715 5.468269400764852 2.886867463753028 5.631447352565838 2.985822581768346 -11.65582502015529 -6.98915157199934 -11.65108099485204 -6.939921509951684 -11.46645447821991 -7.01188800712644 -6.965985707632302 -1.366717202869575 -7.165927874619835 -1.398880831512013 -7.165827256803913 -1.327192503347199 0.7801477962360326 10.10764074744187 0.8182364949793919 10.13751902548013 0.9700146556492773 10.05749671451439 8.723178341362342 -5.015695452878983 8.562511038127378 -5.055254750609865 8.728457801296788 -4.952684578861925 5.345906999601398 3.012691888508398 5.347606173231061 3.073562544472592 5.508696716004757 3.112041933800061 -12.40414412804927 2.093244503543819 -12.39614885820377 2.153142600001177 -12.2411624686734 2.160950347915142 -11.78142239803167 -4.708666933913214 -11.78914349148463 -4.643650716949074 -11.64676366339286 -4.63451476242067 13.18444934977494 5.405790420926806 13.1910463331518 5.356494691067041 13.03692878725645 5.37220248823331 12.09903157083867 -1.482461054462999 11.92326983500567 -1.477153316455752 12.09750765770709 -1.410769412804343 11.19293202676992 -8.361555992246322 11.17581316769602 -8.408864006524265 11.00078907970504 -8.395455855922011 8.349940607121187 2.770164038364921 8.343046405724209 2.829879762215903 8.496457616513332 2.867464522416447 -13.73781930567416 -4.950021043184917 -13.5667927907526 -4.966126671524558 -13.58339781367837 -5.01373858803485 -9.787465578114976 -1.33714349510687 -9.977689162282866 -1.298547919271151 -9.786660593367122 -1.265457920206907 -1.540663983600659 10.42391404241789 -1.698261919738346 10.5165668192658 -1.508151406391066 10.45762366983972 11.17020878208226 -4.338152115199367 11.16822940178264 -4.275023718190871 11.33502815430458 -4.235091375357936 -9.657233538443592 2.681820150366768 -9.813195316583219 2.675426316849174 -9.641494532806298 2.740761166024233 -9.178178231308547 -5.285337157931499 -9.348074900643844 -5.290382256160782 -9.193859608338926 -5.221213654048633 9.885571768328758 7.863936913957202 9.717679502805417 7.823330067871 9.693210009691446 7.869007899782335 9.512450238363343 -1.510120633095816 9.320747298568746 -1.579336947718089 9.319975255294587 -1.507637855880181 8.437421926016747 -9.860048553291033 8.606893690995154 -9.870739657042387 8.408286612285954 -9.903569669546064 11.43900873246514 -4.344292112528978 11.28606236631415 -4.3830315371237 11.45024536052453 -4.279344105490417 8.625209168225046 2.697365357843957 8.457966351327173 2.658536111132082 8.604871386527611 2.755473851257801 -13.80607872821243 -4.950517452724858 -13.8085196224234 -4.894970160690024 -13.63523288702387 -4.967768993194435 -9.825403099073675 -1.1267962098599 -10.0164357063077 -1.15987177837336 -10.01604388857866 -1.088538960955641 -2.416974896300678 10.10841135529833 -2.367217661635781 10.13394259615223 -2.223841672100698 10.05590036790189 -9.714052122718687 2.55395860802712 -9.711995436647182 2.613926362003435 -9.542096120738417 2.618876750620487 -9.276235356357377 -5.384468978016525 -9.278183705883597 -5.32150953395901 -9.12222877247862 -5.315013201765334 10.22243353383894 7.392617643500108 10.22301859722848 7.346483456068675 10.0533596751163 7.35516742620614 9.513631385594843 -1.5825512236796 9.321187330051941 -1.580077940731893 9.512890162017262 -1.510861441294382 9.011320398795435 -9.846726940850362 9.006295466617312 -9.890532321696613 8.813975425696585 -9.88397028792234 13.6283101194571 -3.333011606144537 13.6301839502992 -3.267481406042489 13.78103525783518 -3.229909684064479 11.23578323518249 2.432169448976095 11.22197592125114 2.491453418764042 11.36059798039002 2.527000839227673 -15.24219524522934 -2.147910153808393 -15.09069163087842 -2.155463254795222 -15.10501134657915 -2.209890196813368 -12.61653793888787 -1.099487738837097 -12.78996521975508 -1.064551872379149 -12.61567482503242 -1.028157486989288 -4.514463801464838 10.22908780676873 -4.649449032964846 10.31928223269812 -4.469241791069255 10.259393133881 -6.898059523765879 2.935309156349139 -7.06036786434691 2.929920571296418 -6.89002090736066 2.994964498730822 -6.4768693768259 -5.802689461290159 -6.653575517158874 -5.806687320941736 -6.485699800785439 -5.740095647568451 7.016357742053017 8.746921207086649 6.829475787650675 8.704571097402486 6.8162270405816 8.749514948466191 6.812687123351545 -1.570667613968221 6.612521211682392 -1.640945252495422 6.612478742513698 -1.569253106600074 5.779856660322627 -11.04698341280049 5.956274989550351 -11.05623514011434 5.76305316106203 -11.08893340390857 -5.398781630269481 9.835257217887111 -5.340262316193581 9.858328963978593 -5.215213233226105 9.782059105907912 13.85850269088957 -3.291224874435558 13.72033593265452 -3.327852831506265 13.87226008146309 -3.224021153701466 11.47884612410998 2.370707512678263 11.32763469245847 2.3341287484315 11.4528811563251 2.428607235668462 -15.2535181349102 -2.106908730339627 -15.25836441831756 -2.04628258371339 -15.10205393297601 -2.114936106408872 -12.60691287598073 -1.054252242449673 -12.78120227643468 -1.090649574333243 -12.77826650363888 -1.019032138509699 -6.977266672820781 2.819025713613953 -6.98348601445656 2.879881379179938 -6.806745836905758 2.883787073659976 -6.587756763350166 -5.897017118716976 -6.582343092500292 -5.835702020549165 -6.420042303747156 -5.830174464184631 7.352899858918036 8.284719654169544 7.341596596604858 8.239010029899403 7.164996350990712 8.24526589774629 6.813826939136831 -1.644364765160081 6.613677082927434 -1.642956700035511 6.813842734205907 -1.572678602544766 6.45561059982691 -11.07378386689607 6.46395966180476 -11.11541748444512 6.263811337699195 -11.11130890824892 -7.4896043285356 9.650721743375158 -7.59932281454822 9.739501582872135 -7.435656638661346 9.679884880975632 15.29262319608855 -1.607508324843404 15.29328082124637 -1.539440722165434 15.42508685680786 -1.505608493010264 13.89984302429149 1.612364449169118 13.88311681005951 1.672334928638294 14.00406654530691 1.704928375628051 -15.28946899818318 1.47629385012519 -15.15330884157945 1.478704050245536 -15.17098274107001 1.419570661111087 -14.80515277802571 -0.9036683428333258 -14.8085897588165 -0.9752719773663642 -14.95994028606035 -0.9444455687562027 -4.004611721636414 3.224448327942247 -4.16439719315087 3.218368710771394 -4.00523925739104 3.285498351391439 -3.525613296463322 -6.290315199046522 -3.700902602954646 -6.294977946562653 -3.526950387315453 -6.228861380004147 4.019128095171453 9.21265159326504 4.216147713730148 9.208763189863083 4.018671019552032 9.166086516832904 3.879644224425563 -1.596352886128034 3.681901906438548 -1.665818496212343 3.682604549984756 -1.594134463565752 2.530786356206917 -11.98103156753165 2.352255936779051 -12.01025137141678 2.35749035013115 -11.96830449992463 -14.93783250703113 -0.9199274905746537 -14.78540593368363 -0.9508055480783045 -14.94018901959406 -0.9915931604994908 -8.369275036428196 9.172063195774641 -8.302263925849339 9.194573360537296 -8.201790501962247 9.119416714856088 15.32434054185617 -1.526890769140963 15.45579366934975 -1.424184296665054 15.44501229547651 -1.49366580413421 14.11532223931024 1.531544655849606 13.98322776896051 1.498268720660948 14.08813296315718 1.59035487382117 -15.29430011815301 1.530169201172563 -15.29253058392694 1.595581857050894 -15.1581444831912 1.532732608428125 -4.058883089848411 3.085514390787332 -4.073465714486674 3.14769619433696 -3.899516138725254 3.152336453714596 -3.572284764846403 -6.466569931810668 -3.558406321219816 -6.406267497356507 -3.398634912760937 -6.399963308387198 4.552296166406597 8.749981776186615 4.529059490484951 8.703150495698562 4.353890163085291 8.710061516263082 3.890830433234426 -1.688761907672652 3.693769104214244 -1.686537598712137 3.891508959769352 -1.617067650930654 3.135413932412313 -12.04928645761342 3.155189195964897 -12.09127973286478 2.958368440101325 -12.08364558267659 -15.45179350199093 -0.8108783782093466 -15.45489039400424 -0.8825266134035953 -15.58968420799133 -0.8571572623338638 -10.6288286384174 8.353707500251726 -10.7079782300312 8.443173295059195 -10.56775234872707 8.384966708096389 14.98504350561728 0.8932095856606679 14.97824207983449 0.9630020334364804 15.0955806585724 0.9916757394352925 15.53991589285761 -0.4072276683117909 15.52720097191658 -0.3454532515377727 15.63448253709443 -0.3166197435687619 -13.23516410695105 5.172889418019462 -13.09944546757803 5.186906493985469 -13.12796202377806 5.125445020432204 -0.7714234616223903 3.569497695964973 -0.9202629271224827 3.561122633958776 -0.7799017318880719 3.632376091183371 0.1656356926783598 -6.89096651016542 0.004784692386134992 -6.89859131050403 0.171236231494023 -6.829842298317031 1.061959575325601 9.468422412170185 1.24545871531379 9.460108100923545 1.049723399136092 9.419080201494202 0.5231611971093531 -1.603350003673135 0.3370699779424913 -1.670258122669144 0.3384888140735509 -1.598570567462979 -2.433997532195966 -12.1929427012513 -2.593059003934676 -12.21337891439185 -2.593411621858572 -12.16859762168006 -13.30336674209489 5.301667592890514 -13.18135620361946 5.249945769596239 -13.31691957776318 5.235027842207697 -15.58653943729579 -0.7855254209561395 -15.45178502990319 -0.8108934204931523 -15.5896757392267 -0.8571722984902477 -11.51936289142144 7.675549632771387 -11.45083636673444 7.700794083951917 -11.37432675960208 7.625162732531086 14.90602371303191 1.049369786129195 15.01538811441356 1.14864303110114 15.01345585400729 1.077854229522494 15.66975608881318 -0.4911047002283587 15.55242944620488 -0.520159475879824 15.64794960475148 -0.4301726425674983 -0.7912545568075957 3.421809981775434 -0.812757172466364 3.485604502693287 -0.6506196923301988 3.492728710202487 0.04031753644333835 -6.938102185477932 0.05787497746319148 -6.877980049121938 0.2066783875467149 -6.869217465137623 1.555805246969699 9.059057021365206 1.519814634586167 9.00947316056442 1.359276784555576 9.020446762671895 0.4838123445634712 -1.611748782600903 0.3001114271489069 -1.606924269512813 0.4862089657499891 -1.540027028526313 -1.806813482336177 -12.36058167089581 -1.782046272876322 -12.40751261267392 -1.964752550151362 -12.38583687432793 -9.364868457319943 7.841968717887717 -9.404274314388495 7.782022322527892 -9.514291688348363 7.817861846619273 -13.00588378390801 -0.8330881645659296 -13.00921958271158 -0.9047294657183257 -13.14133814969962 -0.8852845692050879 -14.10662791163087 5.146832549511292 -14.17206869042138 5.239095622041519 -14.04973001711376 5.186073799696009 11.87582082679493 3.174077517464692 11.85862862908628 3.243578971293362 11.97435313651517 3.265965803721697 14.24415916065581 -3.699885454686495 14.2433433916009 -3.636587915769243 14.34888102482089 -3.612702452326936 3.082265902202215 3.913234350788317 2.949879546846864 3.901073276272257 3.06862831925348 3.978355594566274 4.638556061977957 -7.082302383479022 4.494472431598605 -7.094157831914902 4.645067237443768 -7.020827165557492 -2.258038310727093 9.539468265293392 -2.095500805512067 9.523668310217966 -2.281201335801816 9.485355998138813 -3.758985514210841 -1.436225758280148 -3.924511705853747 -1.498961607814649 -3.921467008486363 -1.427255068912489 -9.942859975291702 -9.737197332008847 -10.08385967003032 -9.737458014349842 -10.07311078507561 -9.687351915146522 14.13219270095305 -3.75542860612047 14.23796080910545 -3.669030738188305 14.24742880761821 -3.7318278326521 -9.692573401430575 8.017214571832103 -9.567163615954282 7.979171406292741 -9.716153039117891 7.953456566602755 -13.13636509854378 -0.8161126710265887 -13.00435282828845 -0.835552906974163 -13.13980714664969 -0.8877493877843717 -14.61132809459356 4.133016612116871 -14.73902312735568 4.177542038502442 -14.67768843796868 4.210885943633517 11.81382164778991 3.35991687746054 11.70782989559965 3.33731003177597 11.80542024055859 3.429818317153772 3.084054598257912 3.781063644743033 3.059008768636864 3.8467800671526 3.203147841068263 3.858017235194181 4.640534808377569 -7.205309901937741 4.658401343593503 -7.144308835955269 4.790673709270291 -7.131402974614767 -1.777453462061554 9.165138723842739 -1.820684873074955 9.112184883238179 -1.96392635099604 9.129222911432287 -3.713016996837181 -1.586432416109982 -3.876397154170795 -1.577505932639365 -3.71087700645962 -1.514760215541944 -9.935098212837286 -9.770221769537702 -9.928915609223267 -9.825435982157931 -10.07609767572446 -9.770551036172224 9.535254719845881 -6.232486872110084 9.547416077059241 -6.169977481532637 9.664144208440034 -6.152083811655688 -5.202437761249897 9.098226050134119 -5.246985562162003 9.041825168459443 -5.372201684154333 9.0667502344476 -8.169380333522604 -0.998140020974474 -8.172333180839713 -1.069790248980376 -8.317069662718822 -1.056185649157978 -15.53708250320204 -2.251370365196449 -15.56791830901686 -2.304769315519559 -15.66339926021932 -2.217943928631032 7.190374158714231 4.14387548593698 7.16637335975607 4.211502502977067 7.293903690933179 4.22756430462664 7.623017113961595 3.918334089413627 7.507695615163 3.901060666062974 7.609282664872703 3.986084436598195 9.937161022967274 -6.359847681237002 10.06409273077519 -6.279461156273472 10.06269187858483 -6.342050763081067 -6.042398342483293 9.076543377210122 -5.902190296778123 9.050166540243174 -6.069234815193065 9.017255839469092 -8.860293170789058 -1.363260985078544 -8.717265287849051 -1.37745368279562 -8.863173737785129 -1.434917132087402 -15.54588277960083 -2.300117636965598 -15.67386043491606 -2.271009447778388 -15.63233045989777 -2.226233122461609 7.127076406813334 4.30648851770742 7.010063381235103 4.289786013635767 7.112978878199199 4.373942213029542 9.365989235203019 -6.175965195635077 9.495627012248997 -6.096310096386373 9.493297944669719 -6.158811689884664 -5.626765668099157 9.373422181532749 -5.484536290666949 9.348316109263141 -5.653651189339984 9.314747731718946 -8.320882227736359 -0.9741148604507341 -8.175970906962778 -0.9877206687505513 -8.323660932723731 -1.045765200133378 -15.29985691444622 -3.123406437962885 -15.42886369827114 -3.097095081416124 -15.39058877662906 -3.051099015080164 7.703689925709059 3.739906870570485 7.680092902839074 3.807750538554544 7.80597269273771 3.824412889779136 10.11197049403219 -6.404336089477216 10.12307435948808 -6.341661858037234 10.23808752303897 -6.323159921128914 -5.622323037873064 8.794266442244357 -5.66679086339616 8.737492485458621 -5.790007307260759 8.763434754360988 -8.71332912534854 -1.3836606494726 -8.716209437777366 -1.455319908141439 -8.85923718393571 -1.441124713702576 -15.74112137389917 -1.379939906837552 -15.83089195408338 -1.291204338195767 -15.70609736706944 -1.327881354721675 2.668957752347219 4.11398850238898 2.644058069704343 4.179481329382527 2.790273579329713 4.190200612134772 4.110704377365827 -6.858048905277235 4.128872676387156 -6.797175811182837 4.262918876140688 -6.784782652748659 -1.404548250035355 9.402043598154606 -1.447358125095773 9.349547274608119 -1.592685016488453 9.365794399010678 -3.142255332231726 -1.190604595156031 -3.309399930982235 -1.18223930450561 -3.140241197251263 -1.118938432231013 -8.884739533256173 -10.30055981670408 -8.8746530565973 -10.35495896236701 -9.027896891744119 -10.30477273628952 12.25230914127811 2.830885924238499 12.14678909668437 2.807636870818182 12.24476854587685 2.900972728124928 14.46950347790334 -3.751846905612519 14.57341788799027 -3.664906214825244 14.5842967264192 -3.727604863342996 -10.10915643332227 7.601517383621898 -9.984934002081559 7.562044962447504 -10.13208624570263 7.537317666313326 -13.54652455382239 -1.212685624363464 -13.41493796144714 -1.23274352628007 -13.54984038915993 -1.284333229776651 -14.31552014081287 4.540011722011334 -14.44437455773784 4.585467759621272 -14.38166273281025 4.617646058061919 -8.992810656003718 -10.18550474366308 -9.136006742442406 -10.1888041041313 -9.127637057064113 -10.13972581033172 2.64541488824554 4.267441028695297 2.511268042398294 4.25574119252915 2.632188799017837 4.332340862186194 4.110214696525336 -6.72600436272806 3.964135035991645 -6.737327709543592 4.116794042818764 -6.664636040505522 -1.847994126281742 9.726975441471867 -1.68154386583189 9.712369976900524 -1.869009832302726 9.674030376466263 -3.221745658877027 -0.9840961042457377 -3.390913981113689 -1.047381117225486 -3.387390757737077 -0.9756486725148655 12.31086394288981 2.638894324171158 12.29469950298908 2.708522654783262 12.40982838366794 2.731584851287013 14.56781304329401 -3.684253140151958 14.56561528418519 -3.621025071170431 14.67068615442086 -3.596549445688026 -9.79429850738692 7.422103133151579 -9.832748794853689 7.361829306246924 -9.941855832659382 7.398917779285227 -13.41536406114684 -1.232052822969565 -13.4187394178731 -1.303691732214197 -13.55026649850321 -1.283642510860688 -13.75606080583945 5.54957007316308 -13.8214887016976 5.641594391354468 -13.69804627494504 5.587638493520042 -1.221213860760367 -12.28941609449073 -1.197314620885995 -12.33522616255462 -1.381018567246686 -12.31575286127009 -1.158444741834577 3.776285934969499 -1.179315014711423 3.839930993540694 -1.015625787160668 3.846724503200335 -0.3639596171475557 -6.526495008969826 -0.3467953056654904 -6.466407244800233 -0.1964911856277107 -6.457981244297234 1.889308263414858 9.245364640510919 1.8560148969994 9.196471474896031 1.692605215227949 9.206681508849934 0.8311335920267338 -1.171595201869042 0.6469610273251247 -1.167087605318954 0.8341172451760792 -1.099847614205433 15.08582761132801 0.4219027948256017 15.1972816313386 0.5216801222266934 15.19423004530341 0.4509408901608906 15.61597067828074 -0.5544253552112738 15.49766385890772 -0.5839776656338219 15.59329687845167 -0.4937406854428438 -13.67695675489851 4.671155136831288 -13.55390223659972 4.618128351257922 -13.68851524023786 4.604333191912186 -15.65335930625685 -1.200253474075816 -15.51741693607865 -1.226221228726238 -15.65648638482215 -1.271899355939858 -11.18419981902873 7.765024509756246 -11.11554434043974 7.789825135613168 -11.03686915883918 7.714214129428135 0.8628927635053685 -1.149246746696862 0.6757410017744359 -1.216494412927886 0.6776162145131159 -1.144761328936643 -1.817296954238128 -12.12292682149871 -1.978216785636624 -12.14465921332994 -1.978660335218768 -12.10025498667682 -1.119852415948217 3.905701574361555 -1.270188663992674 3.897638071339116 -1.127604301284266 3.968370140358324 -0.3149882110398894 -6.385162711576555 -0.478664682763138 -6.392250897908245 -0.3109104338240121 -6.324171217182053 1.35602465911457 9.692105094374945 1.540020729240347 9.684324940488828 1.344216351572449 9.642916334152829 15.1503181862958 0.272451662028181 15.14440741345618 0.3421599203781767 15.26291134869998 0.3714343502470228 15.47546960258415 -0.4726056566771423 15.4619154372069 -0.4110595507947483 15.5702187722331 -0.3817935148578727 -13.60440101994327 4.519074513822507 -13.46962933206102 4.531875006477813 -13.49633283110545 4.471036214690025 -15.52339401901288 -1.215887594823921 -15.52607384501523 -1.287495597378499 -15.66245767488744 -1.261576634875901 -10.30287224798799 8.422158584401114 -10.38477487025269 8.511374836302048 -10.24206885150665 8.452964559084938 4.193413526692812 -1.248979369953439 3.995989188438798 -1.246889332118508 4.194617944274724 -1.17723737563748 3.545434574107766 -11.8403693110206 3.564458668862518 -11.88217705283562 3.366580276825393 -11.8752744320007 -4.381486190343945 3.430189749235295 -4.395274028373782 3.49221306336199 -4.22059861230353 3.496696702811534 -3.906132402229603 -5.989536288718155 -3.894246243631405 -5.929180494614697 -3.733804005271036 -5.923050460604896 4.839475801182161 8.951908471804766 4.816660144011579 8.905178595681052 4.64211224373599 8.912059416234641 15.26769483598374 -2.028982905709747 15.39941025645091 -1.926008699285874 15.38870377049515 -1.99536231905134 13.87683702687967 1.295577712842807 13.74277741991184 1.261920781824981 13.84948743201057 1.354218300739058 -15.38503010703776 0.9190988764496163 -15.38396194352577 0.9834567520767894 -15.24800374380212 0.9203888456145569 -14.80542258483778 -1.37304428388984 -14.6519647618678 -1.404397022819082 -14.80700106420073 -1.44467254877207 -8.069483288834693 9.100067508489389 -8.002998633579212 9.122461408995804 -7.899822687477273 9.047370810969055 4.30050980966578 9.40638186612038 4.497896969137264 9.402714164536823 4.30148408259397 9.360057245213058 4.210324558875172 -1.204736203883551 4.011699039759829 -1.274393872179983 4.012268808980655 -1.202689337845282 2.94635723149312 -11.7582358396856 2.766001547649617 -11.78797834450742 2.77226467546402 -11.74615678653372 -4.311075727597036 3.549367622226657 -4.471530230414992 3.543439572157604 -4.310820513849258 3.610212116165647 -3.820722736339858 -5.863601551858727 -3.995390741770848 -5.868226454835453 -3.822853797049344 -5.802076190336565 15.17813959311702 -2.197897267570782 15.17832423091742 -2.130718778289336 15.31206718285843 -2.096704259321336 13.75471368908578 1.245959351470354 13.74009231762092 1.305504866232826 13.86151359312978 1.338192505089929 -15.38346210198331 0.864612924360296 -15.24643481378675 0.8658405848337932 -15.2631686191402 0.8071703815371325 -14.66661126842772 -1.368813502006148 -14.66894932222831 -1.440483344197503 -14.82165237035537 -1.409077592683825 -7.156109762578709 9.611477304658802 -7.267157639433686 9.700499709311567 -7.101428897832124 9.640557950184437 7.642933539818706 8.4514581814478 7.632939746545516 8.405799115909543 7.456600956256732 8.412138919910097 7.09905506333754 -1.246225796623535 6.899143822007092 -1.244783890534279 7.098917666031889 -1.174519942877966 6.735946139475866 -10.81425805978309 6.742890926812308 -10.85601295253187 6.543109301778447 -10.85191920692165 -7.24931483410561 3.155942963884379 -7.254598685486653 3.216645642405485 -7.078148066229574 3.220562898325931 -6.881109201548074 -5.467438362678905 -6.876458184081285 -5.405999012727969 -6.71444189340942 -5.400458307481159 13.54289973800221 -3.793239524561747 13.40113671090732 -3.82994730857532 13.55555848570621 -3.726803055088812 11.22051562797499 1.971360530270614 11.06738780234263 1.934622185809914 11.19688747135034 2.02908810728976 -15.15944887014694 -2.654272722150803 -15.16462187738555 -2.594281710774259 -15.00716591901408 -2.663946858506669 -12.33003012466921 -1.538278183228604 -12.50642232294561 -1.574300370388085 -12.50492198873034 -1.502616647203531 -5.106572456921741 9.699955233492505 -5.047464832849933 9.72306287674154 -4.920092824371729 9.646643338529119 -6.765567956877243 -5.378664041690035 -6.942016859221509 -5.382683167631275 -6.775198665617581 -5.315935967627734 7.306945672480333 8.896659682715963 7.121645675312682 8.854428398166862 7.107055023237226 8.899338094212071 7.086927551773695 -1.153674396152059 6.887150959067983 -1.223933507323446 6.887086393422282 -1.152247544599366 6.068461076715506 -10.7707733757235 6.244596215789673 -10.7799484138813 6.050343053501913 -10.81279782146106 -7.190458301551813 3.296869990709006 -7.352481727994905 3.291459955852127 -7.181533645440522 3.356437144782981 13.4064024040758 -3.830027603750226 13.40800611262621 -3.764734657461192 13.56078239146676 -3.726844646767989 10.89275480103259 2.123704759042569 10.87935612045681 2.182979039270679 11.02147345875079 2.218828959770153 -15.14280266200676 -2.709862584694672 -14.9904621357679 -2.71895847218444 -15.00361624151294 -2.772085289375142 -12.3298287645453 -1.615197089627549 -12.50470098658898 -1.579540202041051 -12.32830907634541 -1.543517142056604 -4.2186634479956 10.10930458407336 -4.35782527381292 10.19994614024944 -4.174686778476256 10.13989285621025 -9.530881584966986 -4.958117123807443 -9.533598214238545 -4.894969342211351 -9.378692555904275 -4.888255413093771 10.51879056657059 7.466617310788993 10.52040027135098 7.420281349626403 10.35198833383415 7.429466775226744 9.779612343487239 -1.163778969753085 9.588536731702755 -1.161090864251027 9.778853876226279 -1.092095472159671 9.247523585465691 -9.548377605199301 9.241160229931531 -9.592469999068552 9.050207409363122 -9.585381227395791 -9.992750973069121 2.905388391185323 -9.989925676611493 2.965326665140856 -9.821266129877113 2.970493660435413 11.18021025093981 -4.798654021224784 11.02606697303592 -4.837560802460762 11.1909052307857 -4.733893111744886 8.327575597729036 2.348001471532391 8.15903106685761 2.309000791232402 8.307962280010665 2.406194939046271 -13.61096713852748 -5.41079182060458 -13.6137236618704 -5.35671007297559 -13.4379115757018 -5.428681550983511 -9.577047105168576 -1.68144576802487 -9.769848619206979 -1.714646780450293 -9.769111940770507 -1.642959206690308 -2.096594429976431 9.939152071445729 -2.047998874030708 9.965056443975168 -1.90320939661126 9.886777065068808 -9.928948534649916 3.019048413742917 -10.08386105505521 3.012433190057662 -9.912618715634523 3.077932273075196 -9.436649522835996 -4.854469034712737 -9.605332920141853 -4.85973619069905 -9.452922106823499 -4.790174331111039 10.18593894936577 7.919327916820009 10.02032773292191 7.879014533263928 9.994964991562728 7.924918970938178 9.782205087217882 -1.097721154188855 9.591888768740418 -1.166717956342206 9.591070573120943 -1.095021381572384 8.685295077323588 -9.545229928016722 8.853494574201475 -9.556302478471219 8.654940067597003 -9.588950585783939 10.90100930951394 -4.788306543495204 10.89838378838198 -4.725395104228611 11.06651389314619 -4.685297939273396 8.053966074678961 2.418914265419263 8.047912445656873 2.478726192902335 8.202526702783448 2.516458755327649 -13.54234860915186 -5.417300237040662 -13.36911470494113 -5.434087852022033 -13.38652101772389 -5.481126557379015 -9.57958417890816 -1.74669364855356 -9.771641843944998 -1.70820312804927 -9.578840097705355 -1.67500295009411 -1.232071204741369 10.26024010353983 -1.39133841086147 10.35304135429066 -1.200900593791367 10.29436270678662 -12.66814228241877 2.377350203719332 -12.65985061475272 2.437265019574824 -12.50661857132272 2.445496128669671 -12.03052410539118 -4.250910352726612 -12.03861942245435 -4.185663731301816 -11.89798321092683 -4.176183785629822 13.47992294829923 5.26206001227856 13.48652202046466 5.212276969555388 13.33440360260036 5.229012466248198 12.34952094851159 -1.06598506396593 12.17584834422437 -1.060290564118863 12.34793933833145 -0.9942963962296096 11.3988586349841 -8.025023599979276 11.38061846961403 -8.072729195697223 11.20772626084921 -8.058368713758338 8.4424042264723 -5.447712519310838 8.281486854483566 -5.487292765584106 8.446886637151334 -5.384866029489158 5.326202948193276 2.572171962007705 5.150342548509622 2.532346473062847 5.314659582432 2.631482032995606 -11.41694591869068 -7.391797075547344 -11.41107163624376 -7.343024311266442 -11.2260390863675 -7.414971645054204 -6.663163940965292 -1.773915639314141 -6.863368980011134 -1.806055580152876 -6.863333402150362 -1.734362497573469 1.123411846022329 9.899235056911641 1.160320994681222 9.929609107955077 1.312352450261986 9.849517003864184 10.95273527705855 -8.066561653166469 11.10484782493345 -8.083273682877548 10.91273131509726 -8.112912976540896 -12.62077190933074 2.457892391418022 -12.76140762630289 2.448407906507579 -12.60027454748111 2.517123744110278 -11.95378822116459 -4.146197175280741 -12.10702978057557 -4.15443346242402 -11.97416850944753 -4.080059809051368 13.21760574024167 5.721157335881676 13.07336636473598 5.684802709083901 13.04471307190146 5.735288867506887 12.35297015807041 -1.002215973513505 12.18088058096877 -1.068212428034827 12.17926693222815 -0.9965353506596878 8.154207475654019 -5.415234497688508 8.144706604398934 -5.354226727625072 8.320146068873566 -5.313348508334474 5.036468451197996 2.650618232763651 5.039082417752474 2.711631749460519 5.2004271591157 2.750120261643422 -11.13145969565566 -7.391439012256403 -11.29566255085978 -7.327883082870408 -11.10447404847891 -7.34957311867031 -6.661353700164007 -1.852639055062037 -6.861539409342557 -1.81309092649848 -6.66133457462573 -1.780950198004933 1.776404712719477 10.20105318224619 1.962748793365945 10.14560132187811 1.944060654455028 10.10636740511557 13.26146385023715 -6.106462768850968 13.23522851803179 -6.158547760548513 13.08559094550833 -6.132999753246461 -14.75266802473825 1.082403605504083 -14.89549335129753 1.008308709708283 -14.88724251443864 1.069351538455833 -14.21983854152778 -3.060925163840504 -14.22933759963834 -2.993283812426771 -14.10578324831537 -2.979534349015542 15.48160399255966 0.5770145181887046 15.47885196503021 0.5217674052181079 15.34902864631813 0.5526157947697609 14.4085589140391 -0.9186814868510287 14.55875325221186 -0.8571281806953498 14.56121365463613 -0.9287903644628499 5.622700034337741 -5.968613656585633 5.459599557046754 -6.008022127867005 5.619306958676546 -5.907207759221429 2.234185883457617 2.846221968502641 2.05619471312794 2.806527840834541 2.231453283260552 2.907232268431428 -8.946607458595071 -8.829138194235512 -8.928442840027005 -8.784425541352926 -8.740777747529357 -8.855817660330374 -3.64931768975727 -1.843105382720829 -3.851067051202477 -1.875538653393438 -3.851721353743065 -1.803851642590221 4.464883826458179 9.499526558368027 4.491027881312752 9.536029190383411 4.643341830391423 9.453439173665121 14.40483075529906 -0.9132789595077125 14.40244610638993 -0.8416120689180313 14.55502645137366 -0.8517277038589923 12.95794062711668 -6.180291355015434 13.08950781508153 -6.206091741606143 12.913023507048 -6.229985096728305 -14.8140162096653 1.059420999466457 -14.83266353466066 0.9985963012948811 -14.95615782680249 0.9845168882099653 -14.13872375661686 -2.969314619296041 -14.27335445897661 -2.982154651695046 -14.15887680713695 -2.90113161730601 15.43783777060533 0.9736996323347391 15.30620218310803 0.9463326193768932 15.28972980437781 1.00449669855066 5.300298042191185 -5.906065881053298 5.282977278655332 -5.84649076619006 5.460606203409836 -5.805843315806659 1.975272582752247 2.888976142369894 1.986781634531835 2.951575167215556 2.150279520351499 2.989951018310447 -8.617044218355225 -8.765436230663473 -8.783856957352235 -8.702500729815426 -8.577669085911051 -8.727410006077253 -3.652464057159661 -1.900252282074727 -3.85485969339872 -1.860995764877565 -3.653109946158304 -1.828563979354239 5.024587562277183 9.658440544008718 5.200860985140309 9.607414922305379 5.192864437241487 9.561645281532233 15.20139571713304 -0.7832599830878805 15.33667675910309 -0.7274851764706164 15.33977922602832 -0.7991350594632984 14.79933303406314 -3.341115508192154 14.77265350496479 -3.39836517498379 14.64320091501064 -3.356774936119895 -14.95610897954592 -1.909208840203968 -15.07599869206904 -1.991458496775166 -15.07751573528091 -1.928901275241892 -15.39326752157513 -0.7843296655218965 -15.28266583431196 -0.7647900852643523 -15.38973642756603 -0.8542764057859086 12.99926510517248 -6.365972724385981 12.89096280979466 -6.318940293998509 13.0298524886994 -6.311456731823297 2.23443586118247 -6.509701919163327 2.083014637381942 -6.547087535680173 2.223981335268463 -6.449144382802151 -1.582237017695348 3.153970070279289 -1.747768390871122 3.116335919057514 -1.577866681390738 3.217126931730753 -6.086444133991895 -10.02632646503929 -6.055284107720793 -9.983846051526383 -5.88265736500265 -10.05312735819156 -0.02282180959464641 -1.847353471482086 -0.2096720101373384 -1.882527368021266 -0.2110394681772509 -1.810845336039839 8.314236475210478 8.29180456189332 8.334324174282287 8.335217906230978 8.47216433976871 8.254142624876106 13.11564997703518 -6.271351032549298 12.97686232071334 -6.279926297514996 12.99238219867244 -6.219393559674243 15.20122131714194 -0.7829757674501733 15.19813309062258 -0.7113288802199134 15.33650224083415 -0.7272007832983679 14.63121237378913 -3.407336470604331 14.74471450841038 -3.446539825899017 14.58836189301911 -3.460772823618976 -14.8866795803959 -2.084725420977736 -14.8949642921855 -2.147673992041696 -15.00530682266275 -2.168100194095186 -15.28508189753491 -0.6949102504479959 -15.2715043214534 -0.7648946804394748 -15.39283394735346 -0.7838889417101314 1.892160919020289 -6.425902585879954 1.868767859027434 -6.366956771317088 2.033817736372647 -6.328577566966812 -1.794666810238712 3.158459666940161 -1.77672709548575 3.223006485215223 -1.624920812525558 3.259412909341735 -5.738308517484776 -9.9196026756715 -5.892018101380105 -9.858350346301181 -5.687844696006196 -9.88326371919716 -0.0195177593414797 -1.925601222013958 -0.2076687309883118 -1.889078926504697 -0.02081872739155832 -1.853904382528707 8.739247614306635 8.311403056835225 8.89559514850038 8.269860595000885 8.891695216677331 8.217201971763647 6.718849235909625 -10.21256745616353 6.614934288656784 -10.15785381161231 6.770911987895387 -10.16635193070093 12.80581362546677 -0.80648554750152 12.94019774484273 -0.756859543847706 12.9434178150733 -0.8285028390757576 15.12326805705956 -0.005724728568732991 15.26336284828557 -0.004608053785640344 15.2415335510137 -0.06540980439345059 -11.50453675627246 -4.949390297011129 -11.3841115316841 -4.923095392646786 -11.49038109852061 -5.011687906892525 -13.93860978541115 1.88165947576014 -13.82696621993622 1.907054775980008 -13.94476584078105 1.811030498634434 -2.078754942071048 -6.987921009483267 -2.210242828918581 -7.021818338598409 -2.092936155250775 -6.92718544558576 -6.151128742657361 3.304125242236099 -6.15877162023911 3.238327767956296 -6.302032922385633 3.204635065414963 -2.596341069426784 -11.00527113169676 -2.555269252944989 -10.96222996201333 -2.409159206372325 -11.02869179128193 4.494748338616994 -1.806386664472731 4.333051896468609 -1.846237497856189 4.330927366861394 -1.774552834468218 12.1120515392074 5.779978294847714 12.13426506364874 5.829747561268214 12.25054356714622 5.755275000657892 -13.75373242564983 1.925344024270304 -13.75142221387348 1.8552081856282 -13.87224284248714 1.82986253059147 6.486184885703263 -10.36384751618531 6.525792680336604 -10.31147456855855 6.642062520857404 -10.37341461552715 12.80655862080864 -0.8077278979498137 12.80324973613752 -0.7360785452619145 12.94094270752326 -0.7581018395624251 15.15939684649568 0.01018895454359727 15.26368926087048 -0.04398609028138865 15.12359326558368 -0.045005003937031 -11.19241568530256 -5.108324762408362 -11.18623690987708 -5.171355351421689 -11.29748715051238 -5.197797271961211 -2.41097718015388 -6.898922099391771 -2.436240357128277 -6.839506268963933 -2.292903159146043 -6.804881631879261 -6.381986106912356 3.453728300457278 -6.531958987267718 3.353370442805959 -6.513780889231478 3.42057673745037 -2.227949932497694 -10.85096291745813 -2.357990225637678 -10.79290016711018 -2.170413558114848 -10.81427691463804 4.493568953358743 -1.869716488258018 4.329708440164693 -1.8379011292138 4.491405204687568 -1.798051105317685 12.33040395020914 5.723885370656501 12.46813695344504 5.696682417251439 12.45948417594871 5.638383849952093 -10.19381424441942 3.628655104702682 -10.3267417310972 3.529490086089372 -10.31196573141311 3.598679870542613 1.263047233919458 -10.86497810175628 1.149601729725166 -10.80812222609864 1.321968911207776 -10.82541457156122 8.33495194681948 -0.9393709846483315 8.479313128830071 -0.8952687873145162 8.482133503898519 -0.9669310694859402 14.24004603569673 3.303754303346462 14.37300884631387 3.289109543227458 14.35765749283158 3.228332671543959 -6.422243354337583 -6.122216021210996 -6.293816491819487 -6.091079264381685 -6.399197657147495 -6.182778468998228 -7.058934942962307 -6.842877791739229 -7.0463371544553 -6.904740474893552 -7.16151167373051 -6.934754810238522 -10.88648996590411 2.64862185474179 -10.89023252981966 2.57997412362618 -11.0162835850136 2.550501913388109 1.853554562682688 -11.40137518247395 1.89837555497093 -11.3549931071721 2.021890098738182 -11.41897718556329 9.260413972355488 -1.722941074899034 9.257523772930266 -1.651291545528555 9.401407576662528 -1.677829723944222 14.51714728365275 2.448061596623807 14.6201775251934 2.383960104401724 14.48741809509194 2.394227534894988 -6.087123770824414 -6.231823276455812 -6.073781202193569 -6.293378880329974 -6.191595657321873 -6.324164106489588 -10.05041992293245 3.580831462101102 -10.0552548504074 3.512660789276433 -10.18411339270548 3.482305749303916 0.9356761749270038 -11.03968848633572 0.9805044406586662 -10.99431749290079 1.107750468641205 -11.05870048010149 8.350072620762127 -0.9697666054076026 8.346837925408174 -0.8979562164649447 8.494432355201985 -0.9256614758650968 14.17664989377583 3.358260377678533 14.20549124667891 3.411489102167506 14.30982380949343 3.344855133454883 -7.410190894200336 -6.718994021734125 -7.284596669721097 -6.688718920687671 -7.388212431718038 -6.77987156751045 -11.01960778418768 2.686646339388251 -11.14862836689238 2.587897482017326 -11.13513444487951 2.657481536116447 2.170761244673912 -11.26174330560949 2.060598415327624 -11.20525307218632 2.229199003757358 -11.22120813922551 9.265735761459213 -1.733143836158397 9.406728916481065 -1.688031616218538 9.409726614996046 -1.759681118882882 14.53016391219004 2.386157286837497 14.66279109864979 2.374881698012832 14.64589534681116 2.313857388509863 -1.592010528313675 -6.110358672654588 -1.617113455819886 -6.051119391115596 -1.470442782662715 -6.015815558400712 -5.675868120392944 4.102737333330855 -5.657527477341786 4.169472186846489 -5.522591507270088 4.203220492284856 -2.881399738377283 -10.27094442238407 -3.015480122053204 -10.21231916761222 -2.824909466322803 -10.23451209583057 3.62459326922874 -1.129226331396547 3.456989302230531 -1.096531799400456 3.62225729422133 -1.057394373402834 11.7882318389257 6.541826169582367 11.9280522850443 6.511764698448218 11.91982790342517 6.454265066894251 -12.27667041523024 -5.248005691055829 -12.27356082976313 -5.311243545222993 -12.38023254958901 -5.336378614898749 -14.3947114078396 0.6318532942106032 -14.38937508335385 0.5615894983034399 -14.50614646384963 0.5376517645847719 7.825441422692121 -10.18630463490646 7.861589823375244 -10.13201110231001 7.973730621424816 -10.19249291082982 13.63024992791607 -1.601611422134419 13.62683556517517 -1.529973458177701 13.76027134916013 -1.550616612102672 15.17341156392762 -1.230085607317037 15.27593408757522 -1.28029106195924 15.13451778086249 -1.284532676661235 11.50588148154212 6.634546521068818 11.52727757931671 6.683237604602827 11.6466988274536 6.607517660109634 -1.266398153327455 -6.19702090032682 -1.401026381253884 -6.231521409648109 -1.280175711516491 -6.136411075446405 -5.355324221922913 4.021786819202103 -5.502326438409484 3.987301835127076 -5.348373572331146 4.087143164817413 -3.232307863926394 -10.44020248185125 -3.192655004137607 -10.39775020088385 -3.042109121301317 -10.46428904576698 3.601572222001094 -1.003612093881301 3.436302030887274 -1.042743772599786 3.434251235682388 -0.9710784511540591 -12.46001996591958 -5.055837435589588 -12.56488972964608 -5.143250858935527 -12.57657385768954 -5.080702991098518 -14.56778065992224 0.5730555138965601 -14.46071794843574 0.5971398635819519 -14.57131938023068 0.5023323048544063 8.008160250368158 -10.10018678908535 7.908633852134024 -10.0465087055165 8.056967300212826 -10.05200162859289 13.63038543231162 -1.601824645575183 13.7604068508368 -1.550829831253393 13.76379106725562 -1.622482571299682 15.13823423222872 -1.192664803811458 15.27962873725492 -1.187995013980668 15.25468513525911 -1.247916035253395 8.320032834994811 8.805923976284776 8.476908639299536 8.763849472740052 8.471560558106781 8.71250335215912 2.335793623000484 -5.635510610887174 2.313753974424717 -5.576430839983729 2.477461437781119 -5.538016445730615 -1.387768377610958 3.941909945668608 -1.371653774586548 4.00625780843145 -1.221087150265096 4.042716217823372 -6.143763369393341 -9.292311573887611 -6.296179211808116 -9.231594788140507 -6.095413776644467 -9.255861970724185 -0.59654329885026 -1.109980878857306 -0.7828790743715841 -1.07390236865711 -0.5978160800109561 -1.038304393877002 -15.19988637368895 -2.039567051502149 -15.2104133528292 -2.102241935128155 -15.32186333026375 -2.121385542184521 -15.2489235624405 -1.933534688701624 -15.23371607094502 -2.003294297435437 -15.3553343954287 -2.021058750420265 14.03986414997043 -5.279907791132423 13.90574350790007 -5.292442028823126 13.91492662070425 -5.231255514286556 15.2836046432 -1.614345238868835 15.28049663115124 -1.542684755638662 15.41870051283549 -1.557444339407133 14.35291432004064 -4.424301511264253 14.46767404925814 -4.460417939230651 14.30828664924902 -4.476675693021341 -0.5482991866424092 -1.197011249585408 -0.7333561165364616 -1.232628729202202 -0.7351003442153165 -1.160376429460887 7.867035186887023 8.800561401308919 7.888370725125638 8.84260897639618 8.02557362790731 8.7625386466067 2.654628259052303 -5.707906477776437 2.504413073575968 -5.745251242350809 2.645470506589455 -5.647210911703112 -1.107727804707062 3.878743020473473 -1.271754052167728 3.841154715274977 -1.104690114787528 3.941568165447574 -6.474519628556968 -9.420163277772423 -6.445742078490899 -9.378641684539636 -6.274102022018866 -9.44614888008285 -15.23122871280863 -1.908193742106417 -15.35430200967466 -1.988989828758354 -15.35259956099925 -1.926587386148011 -15.34296726267979 -2.022400720208078 -15.23130273960793 -2.004047118516191 -15.33708136952566 -2.092044149149024 13.91755290956209 -5.487568927409439 13.807768837111 -5.442732944224471 13.94210294924037 -5.431703757328234 15.28364711295021 -1.614368949648991 15.41874279649783 -1.557467776773037 15.42178839963 -1.629113715372726 14.54640155736297 -4.316358253819901 14.51806974243327 -4.372510095152036 14.38731274245073 -4.334334957351431 -3.945561259909191 -1.247432961482665 -4.144241219602215 -1.207901852260645 -3.946328897595604 -1.175170157205103 4.698119345898045 10.04174579545983 4.873269089505744 9.991083025891768 4.863049793779602 9.946528886118488 5.620742496854408 -5.119726974429264 5.604888190087659 -5.059891377747156 5.778909082300534 -5.019521984430201 2.255254847342431 3.653745439426706 2.265000412056336 3.716146832646577 2.424990328432509 3.754277698767847 -8.917101681407059 -8.1146430470783 -9.080400592411378 -8.052479295692518 -8.880447140686428 -8.077158578998903 -14.58309113522061 0.6528608788794718 -14.60258209094925 0.5923566551232347 -14.72844300025383 0.5790313991206636 -13.8781529907074 -3.913382065177766 -14.01536599989013 -3.925487686114186 -13.89863766316225 -3.845470610647374 15.29800908158372 1.581883090390108 15.16558032337974 1.552750298666116 15.1460034833457 1.609818010593414 14.30881866211792 -1.692632445532497 14.15545791007416 -1.754877769326812 14.15317194537882 -1.683214341573573 12.70320001683093 -6.854170988082087 12.83778415861989 -6.878492687552768 12.65867243096264 -6.903392772628819 -9.257803762624148 -8.215598339111129 -9.241682369780454 -8.170300177861128 -9.058245592027379 -8.242183947451787 -3.990225029160866 -1.011135991860506 -4.188142784922009 -1.043847348048704 -4.188713548611261 -0.972160923671727 4.105970040594284 9.892966958188575 4.133838264938596 9.928255723326144 4.283387189200413 9.847447681103789 5.932770313230748 -5.179347270187138 5.773173490248002 -5.218484296031162 5.930759023218888 -5.117714367413588 2.566288905324989 3.559640027457126 2.391913650836002 3.520273378337419 2.562072709238854 3.620361535147916 -14.51788030950068 0.6511415311768315 -14.66381877539293 0.5780316863240446 -14.65508634971654 0.6388715415331973 -13.953495816722 -4.008506070146007 -13.96310290289799 -3.941174895708128 -13.83719945610775 -3.928100685185102 15.38104342951547 1.130716903359272 15.3808273263972 1.076182356802825 15.24758353691842 1.104658260444447 14.30976407854533 -1.76235145348969 14.15412577445248 -1.75293064072785 14.30748698386486 -1.690686014295796 13.02993856590179 -6.744615836827118 13.00465364406757 -6.796144945084329 12.85150333301094 -6.772359295408605 -11.46806795988844 -6.668713535147372 -11.63157258163808 -6.604958809325613 -11.4426114880492 -6.626149117170876 -7.091008477986005 -1.015978160065062 -7.290683259657538 -0.9764692306588462 -7.090890625410724 -0.9442903895154495 1.268230750697823 10.56912364664678 1.455885385089209 10.51319634304936 1.435646116346202 10.47482423077415 8.561760365605766 -4.594017132148604 8.553260152533577 -4.532727619544389 8.728292994576382 -4.491858061524657 5.479008622761363 3.369754560595218 5.480353569302521 3.430557380024089 5.641294908696153 3.469013249891727 -12.26274549061468 1.848468235279291 -12.40572891545067 1.839508031990456 -12.24253538428687 1.907594473980516 -11.61596664841403 -5.017679400703231 -11.77174917677895 -5.025388663622297 -11.63596240303391 -4.951776659613474 12.8001487679496 5.829148100571635 12.65317416080626 5.792018540894521 12.62426740366962 5.841586059234314 11.99751906690489 -1.828368635046137 11.82252494270866 -1.894888782999132 11.82107046575765 -1.823210091500027 10.65802845375483 -8.671799730436419 10.81277826721054 -8.687484796257966 10.61926089981305 -8.717852064054716 5.750990975317477 3.31136559973065 5.575661432809635 3.271551670185389 5.738255817284522 3.370497837393292 -11.74127109927246 -6.685258370954052 -11.73702922390491 -6.635874988853528 -11.55256894943259 -6.707831543817108 -7.091190853730137 -0.9431360261704894 -7.29098352156178 -0.9753147382708393 -7.290877554208054 -0.9036264341043482 0.6127651770859544 10.28894483561995 0.6512023903603736 10.31855930465727 0.8030406641483201 10.238796073121 8.842100762020555 -4.623888330104501 8.681598202884702 -4.663462788416764 8.847608271360844 -4.560778736174043 -12.31107478204764 1.753873798862986 -12.30324168179712 1.813755915452977 -12.14751688514993 1.821417013215402 -11.69979945966459 -5.113004999379952 -11.70727777050524 -5.048050794785733 -11.56429641792128 -5.039070150895581 13.0805070206411 5.337211616342939 13.08713011415995 5.288110761292079 12.93225127445354 5.303380595568586 12.00351771803758 -1.907218547989442 11.82704899982748 -1.902058087232394 12.00204187342531 -1.835535903356021 11.10929452063571 -8.599960102656215 11.09255170630536 -8.647019929233085 10.91676123488222 -8.63397882214665 8.463770738087579 3.147350521491687 8.456621527355717 3.207061144183714 8.609545807931912 3.244617348842078 -13.8062820408144 -4.61324397110358 -13.63605353607343 -4.629094035547781 -13.652308496306 -4.676909725656401 -9.979086762679119 -0.9118319020731873 -10.16916560811681 -0.8736416729799855 -9.978271983861317 -0.8401464148777312 -1.691145200738942 10.57184081927629 -1.84826347036215 10.66420366060691 -1.658201889270249 10.60530275772313 11.2422689293593 -3.949126275565361 11.24055594957627 -3.885882491929603 11.40862041560554 -3.845831598182718 -9.551511654434053 2.322499571152712 -9.707899358580669 2.316167172924643 -9.53602032789137 2.381451480189401 -9.065592145234403 -5.690193882424489 -9.235863490903935 -5.69516644275171 -9.081037644808127 -5.626115617917052 9.766136736852715 7.721607438938638 9.59747249678175 7.680960875880517 9.573249630871358 7.72651232525906 9.412631202623736 -1.935108157351509 9.220341160553913 -2.004392150565284 9.219643163405078 -1.9327022073625 8.348317994832483 -10.08961773556786 8.5182783225238 -10.10018936119623 8.319681983772494 -10.13298405159051 11.56950513659177 -3.978981277320125 11.41710016845712 -4.017821891039564 11.58246404278411 -3.913550478102852 8.745706457272915 3.068643334189087 8.578885930147454 3.029875765457264 8.725079453870832 3.126753152607873 -13.86692416850899 -4.626230174078959 -13.87054121951037 -4.571360192675914 -13.6968569159072 -4.64311752595167 -9.976255327306809 -0.8472843743890994 -10.16714868373195 -0.8807805770805147 -10.16629217501194 -0.8090897253007084 -2.533344626979457 10.29228061277762 -2.484853677362083 10.31806146223492 -2.340389993372554 10.23952093611932 -9.616884700676433 2.201801032923582 -9.61515097977825 2.261810656067003 -9.444773814499946 2.266706227235113 -9.175409906166889 -5.773230089398138 -9.17713875390521 -5.710372376972855 -9.020757719505559 -5.703938852938419 10.09943425579705 7.240053896620663 10.09965679120681 7.193989782612289 9.929612574154675 7.202508009369316 9.404929318733672 -1.992687653339935 9.211965735149661 -1.990280067643737 9.404257851321997 -1.920999636882653 8.924979711879992 -10.05891894134058 8.920486714005742 -10.10248339065917 8.727643741996864 -10.09612523033034 13.77850389282831 -2.910019633285045 13.78143809692783 -2.843839681106521 13.9298626843523 -2.80633027919083 11.33665266398774 2.78593156790716 11.32260415247666 2.845243600480377 11.46056303825653 2.880680914411926 -15.26293140775587 -1.796101148916797 -15.11329806202435 -1.803862510157038 -15.12638808131952 -1.857832623224716 -12.68632087590331 -0.7758630810570987 -12.85823725814127 -0.740734212245754 -12.68467554174819 -0.7041807476080513 -4.672671231989843 10.35045117739623 -4.808478246220423 10.44054762600533 -4.628862510747769 10.38098144188843 -6.792177553506492 2.582245445252399 -6.954594046043071 2.576853371634834 -6.784470370629784 2.641963576601192 -6.374573240540036 -6.187568733252327 -6.551407360976489 -6.191571608097306 -6.383121211835027 -6.125056941771275 6.912893816468734 8.555956293179982 6.725300584775114 8.513581467421554 6.712602637005921 8.558549812744028 6.700547613092615 -1.977959297731593 6.500219845192263 -2.048236408727563 6.500239259365231 -1.976546447869798 5.649213380515395 -11.25946113552951 5.82574159759708 -11.26872936192003 5.632899024968824 -11.30124203253089 -5.551800941494372 9.974274129334603 -5.491410055673462 9.997149337750599 -5.368852850462249 9.921354873469303 13.92984095638246 -2.872343983031653 13.79233213900375 -2.908847779068738 13.94356398530553 -2.805043860669955 11.59642830635142 2.7069070901034 11.44591128028059 2.670459769131661 11.5703433303029 2.764785082557915 -15.2740524274328 -1.762126047424486 -15.27882762962187 -1.701266132642114 -15.12446246544826 -1.770388747532218 -12.6855267837619 -0.7016557110857535 -12.85908865025668 -0.7382087346658343 -12.85747893362189 -0.666536678107947 -6.852022620543488 2.437853727669991 -6.858536899366711 2.498713277647795 -6.681685596940605 2.502617822574034 -6.479790861557024 -6.288473587179761 -6.474088080872148 -6.227215822866979 -6.311679035328347 -6.221686679518379 7.252266400767371 8.072841323806804 7.240377966717661 8.02713389712147 7.06364894197481 8.033380336635075 6.70970018536817 -2.065598269347671 6.509389914405678 -2.064186401653375 6.70971560786901 -1.993905631379044 6.339797585227679 -11.26859984910191 6.348655884494512 -11.31017592455815 6.148408117669895 -11.30605105569771 -7.604905728673864 9.751676976709444 -7.711809764154808 9.840509215937177 -7.549008303386884 9.780774128464524 15.31342956581983 -1.159996385191196 15.31385734274435 -1.091836756716515 15.44506005980742 -1.058185235361697 13.99248058745683 1.90429339551723 13.97576403205957 1.964276792873518 14.09615622794651 1.996729211303031 -15.23497945323221 1.841607913028883 -15.09924819783357 1.844487547686547 -15.11720579889005 1.785170785042847 -14.87221805652376 -0.531679520155393 -14.87466073377773 -0.603337002607631 -15.02512862964613 -0.5727075492745442 -3.874968577375353 2.844150243789763 -4.034409893278372 2.838018583062885 -3.875926197158899 2.905220518865693 -3.360693470480006 -6.683452321535736 -3.534325837207582 -6.688309731489518 -3.361837750162391 -6.622037101381629 3.89708856379888 9.001318164271137 4.093750487282498 8.997317177626449 3.89607054180398 8.954670637020273 3.761763602072166 -2.017536826766855 3.564385902169928 -2.086942805548035 3.565106551543301 -2.015252408016748 2.365764794796064 -12.15676920708673 2.1879813970502 -12.1857763220583 2.192828326141625 -12.14379308608111 -15.02351923782273 -0.4992513991472314 -14.87297546578908 -0.5298859801427713 -15.02588627862789 -0.5709134563710172 -8.49524937736966 9.278735825274966 -8.428113086530171 9.301266284762386 -8.328530578409394 9.226110260287666 15.34374877225697 -1.071967297237093 15.47427426737303 -0.9692795259564059 15.46385705216017 -1.0388702376328 14.19060461650755 1.845540874017543 14.05929252752984 1.812400823296398 14.16353397493676 1.90444200215758 -15.2412219754005 1.882507909375573 -15.23908262849998 1.948067774145756 -15.10549720994015 1.885571001658158 -3.930704494340847 2.70612638188966 -3.945635065013709 2.768333950593896 -3.772016258706118 2.77302894642654 -3.436389851907229 -6.81557418920629 -3.423558414325446 -6.755284260426986 -3.264130945621227 -6.748933690890019 4.431781809352727 8.520026033747911 4.406673536944801 8.472956880211376 4.233171750787022 8.48014339648196 3.757884909242363 -2.083646128699481 3.561178800323074 -2.081354475691449 3.758557160119626 -2.011949658255776 2.983330606037973 -12.20717948585779 3.00347212370062 -12.24935120400201 2.807053193032321 -12.24140501544334 -15.4035264028204 -0.3993835653760778 -15.40658650987916 -0.4710293799135456 -15.54106757485568 -0.4458871004901172 -10.76348273852581 8.373436725822025 -10.84168260677484 8.463054712708299 -10.70238673733465 8.404852547835649 14.89271804834208 1.362310896943695 14.88536805414721 1.432143494436257 15.00247151614127 1.460613558457811 15.54442831576886 -0.1772025300544178 15.53215565459417 -0.1153184851625176 15.63898173772364 -0.08663501576942562 -13.08798323996053 5.523970908762649 -12.95196251343829 5.538395629649434 -12.98101957240073 5.476926694483 -0.6272731539126153 3.19803476748175 -0.7755778935279711 3.189543266014197 -0.636083871153228 3.260960878875714 0.2617281090394091 -7.19436483523608 0.1002711030644504 -7.201954603348653 0.2664692778492001 -7.133349633543099 0.9329726925144188 9.265565936736246 1.115668704270432 9.257032177211325 0.9189564141891182 9.215725544524082 0.3316474585252793 -1.997065103135946 0.1471248963081939 -2.063800763453142 0.1485215216200342 -1.992110761023125 -2.580866583210967 -12.30237726684135 -2.74053381243914 -12.3223531980944 -2.741168096657231 -12.27730591062638 -13.16180678069201 5.642533833652262 -13.03990629734695 5.591268123566143 -13.17575952501795 5.575897571630211 -15.53731998110256 -0.3753548647507164 -15.40289189900673 -0.4005078232859363 -15.54043326706968 -0.4470109996039769 -11.64771592694504 7.705653340079344 -11.57930451534662 7.731094740011856 -11.50357329573282 7.655281235309178 14.8107764665212 1.513313846791035 14.91938860170879 1.612397884305921 14.91777504032939 1.541596645895389 15.55247350337337 -0.2866621609038716 15.64798935396019 -0.1967217884386764 15.66938335224284 -0.2577625852211226 -0.7257061121927522 3.135624826641909 -0.7492826830192656 3.199645525826849 -0.5861050103982013 3.206912841397215 0.2046698268300501 -7.315777736863169 0.2223359818162479 -7.255666211178008 0.3706030609532812 -7.246777032734928 1.446737205727232 8.81586091648888 1.41032005688943 8.766193914618109 1.249175226116862 8.777145049173717 0.3265215087350981 -2.062757591221067 0.1436112862092576 -2.057822093329615 0.328134466515313 -1.991087490628809 -2.060940502956821 -12.43180914816927 -2.038646191294379 -12.47791345644089 -2.219711610518229 -12.4558014587378 -9.182703170680265 8.142981667147495 -9.222363525422407 8.083086258425697 -9.332830983025458 8.118515293549825 -12.82885888313337 -0.4333106680017894 -12.83210656012083 -0.5049631113588409 -12.96437386323524 -0.4857612753338539 -14.22667272500704 5.027393164206575 -14.29224145579548 5.119741104330275 -14.17026943404672 5.067076696042379 11.68675887388286 3.602706758615832 11.66930486808475 3.672175459232727 11.78517351991617 3.694316614731889 14.09814757657465 -3.494449347467016 14.09792665432916 -3.431131137389283 14.20357449836181 -3.407465746909945 3.311842824457591 3.69480617978706 3.180952569015447 3.682442626085488 3.296724549315826 3.760389661226368 4.841221589877175 -7.431855999181114 4.697824292369404 -7.443925136107564 4.847706590950949 -7.370370172292076 -2.400479053744023 9.30757624764987 -2.238769655885183 9.291399539759695 -2.423927921558295 9.253287604899537 -3.905360039888937 -1.912633707595967 -4.070156549817515 -1.975172376102798 -4.067783527303628 -1.903515356447446 -10.17289669217167 -9.682773219005764 -10.31371533681537 -9.682207133991504 -10.30134664771371 -9.633848868670501 13.97984504926813 -3.543690590935927 14.08633077382004 -3.45750883909293 14.09538737111564 -3.520336337190298 -9.511988152546504 8.305585174373318 -9.386222448783157 8.26807649807159 -9.535912013812602 8.242001299443496 -12.96189303870368 -0.4128193214747257 -12.82966451108063 -0.4320182967679505 -12.96517952201887 -0.484468854796048 -14.71269481696847 4.013498378462776 -14.84004376486605 4.057588390279326 -14.77920814462923 4.091349341689019 11.62583048565259 3.782543859477425 11.51972838591437 3.760171445361742 11.61722827716697 3.852384628676802 3.370585161341922 3.515682000496788 3.344894772389757 3.581699094405173 3.48686275523955 3.593161887339996 4.955591728013779 -7.628168954165989 4.973881571941138 -7.566714195225301 5.104651600287307 -7.553586915436286 -1.92119739166922 8.919516933797494 -1.964602942159007 8.866450198779596 -2.107123554284511 8.883793314033616 -3.901264302188793 -1.994557209596358 -4.063862195684717 -1.985426570730759 -3.899066565719143 -1.922886467266069 -10.19290282709548 -9.682566741176609 -10.18739774005304 -9.73803100462597 -10.33372012348084 -9.68182146362974 9.311076820884212 -5.949331613577347 9.323484570056838 -5.886859372862432 9.440922056310367 -5.869195587661766 -5.026780911688034 9.357246248914594 -5.071445833698491 9.301009797261001 -5.197347146347086 9.325529548587996 -7.947102303290013 -0.5894643933295963 -7.949887549912635 -0.6611270684132946 -8.09539992411437 -0.6477299531407387 -15.43124420531314 -2.567005871622457 -15.46057470326414 -2.620836623976506 -15.55809902521233 -2.534853325241069 6.98240149880651 4.531278791130957 6.958357616329172 4.598849252041651 7.086537431753661 4.614685916919045 7.630287216100353 3.649601229581525 7.51575006665552 3.632015506039547 7.615492771450722 3.71765445620545 10.19784578773473 -6.696913920680565 10.32410489018963 -6.615635440950904 10.32273040499034 -6.678742755244736 -6.218252828831257 8.823750056783792 -6.078905355053932 8.796930614847144 -6.245046099709876 8.764271056133902 -9.074801065170108 -1.766913467321274 -8.932470938382535 -1.781327539503857 -9.077741070611141 -1.838567743463145 -15.62387269144929 -2.045133868235527 -15.75144007862989 -2.01505964539902 -15.70876149207593 -1.970699328397222 6.937165609727131 4.677847019309463 6.819450760308195 4.661365312288654 6.923038988214199 4.745193443225125 9.126273613450488 -5.880017574332839 9.256920704058864 -5.800692167285071 9.254189010252405 -5.863139782920194 -5.45296217489605 9.620680742919076 -5.309853573753243 9.596006380142441 -5.479766393658354 9.562188841765938 -8.093488363116617 -0.5746549751459601 -7.94799687680568 -0.588048802177663 -8.09629459340672 -0.6463142111322279 -15.17091417538628 -3.380255623136744 -15.30025758137425 -3.35497264948756 -15.26327467135561 -3.308565833622692 7.912526008402184 3.30463990496084 7.888398934878699 3.372370813701915 8.013696414966562 3.389236110353795 10.17847454433213 -6.692745542119415 10.19057221808936 -6.630247968358376 10.3048258676164 -6.611555797063267 -5.801968218888781 8.531798935816008 -5.846230111475199 8.474858109547116 -5.968740488989815 8.501196010495569 -8.932934856513818 -1.780596796018044 -8.93592119289028 -1.852242308710759 -9.078205033349054 -1.837836929919548 -15.7881399394003 -1.079236078955304 -15.87590417856727 -0.989918974313639 -15.75169750049168 -1.027709019856362 2.485499947307374 4.472956968423371 2.460685075866149 4.538363142456573 2.60760486618398 4.548901101428431 3.893771875855423 -6.489944943947041 3.912077587770289 -6.429142407816977 4.046854114150587 -6.41693195800528 -1.248765647391035 9.644188906583567 -1.291345768410386 9.591806514279671 -1.437472144776269 9.607794773559277 -3.040185400566218 -0.7887452822798593 -3.20670150097601 -0.7804733697264258 -3.03814380460506 -0.7170700421782971 -8.513804773128053 -10.4062803803854 -8.502502129869862 -10.46032620295482 -8.657480188289187 -10.411727784352 12.45338725151071 2.380162317891126 12.34711374232451 2.35668023675648 12.44546212911098 2.450225481813456 14.59647349106598 -3.96016234246847 14.70064903028807 -3.873024521808449 14.71112753794043 -3.935702814139552 -10.27897970006404 7.308989002682967 -10.15504398845437 7.268988025667653 -10.30152361223623 7.244645151739499 -13.70483722245436 -1.612202720142785 -13.57331890939997 -1.632485741994377 -13.70820827785765 -1.68383766910858 -14.2028553197867 4.626108982969789 -14.33209904411481 4.671881631678597 -14.26895117078108 4.703648871959323 -8.65468903430116 -10.25613977628639 -8.798428666794013 -10.26041203342668 -8.790869198118646 -10.21150150056348 2.466283758066018 4.62206719277332 2.331411514804468 4.610529309645149 2.45313393602676 4.686852483491413 3.899780881918737 -6.35755508248576 3.752928732434449 -6.368692221510917 3.906433381573336 -6.29623014674705 -1.738061956477426 10.0025226433876 -1.57224390367624 9.987962863051735 -1.760158718123047 9.949116364288217 -3.037901029249006 -0.7174698557880698 -3.206458689350344 -0.7808732430068408 -3.204406899013374 -0.709201541547975 12.47944916925332 2.215860560716169 12.46370053507993 2.285545533903941 12.57861381290743 2.308871000587931 14.69020064242352 -3.886202013238754 14.68750845235864 -3.823009847978879 14.79333028128099 -3.79829764480802 -9.970634185330551 7.120645168812637 -10.00870519256849 7.060282258332443 -10.11750423388941 7.097804445309613 -13.57092739168663 -1.63637693552676 -13.57436135615463 -1.708017233436424 -13.7058167275451 -1.687728915632827 -13.61655813152524 5.653729477197946 -13.68199679706545 5.745737994101852 -13.55823324313051 5.691394848970783 -0.9651417306627153 -12.1903128044228 -0.9411700735599637 -12.2358319372882 -1.125829964372461 -12.21718643351928 -1.307272511457143 4.132392262628038 -1.327963409677663 4.195947023325036 -1.163709907130863 4.202618734424284 -0.5424318152963675 -6.128563043848196 -0.5253337200742964 -6.068502914171412 -0.374555827329372 -6.060206327407129 2.025731516931676 9.50697533047069 1.991131215615393 9.457847709200854 1.827162434671363 9.467904827482494 1.016174088466246 -0.8488228054622627 0.8300988427380829 -0.8444824172850816 1.017459078152508 -0.7771400586307555 15.15518710247812 -0.03318400000511543 15.26741700610177 0.06679190440925965 15.2639164584943 -0.003932191538588688 15.5957148926139 -0.7967731904316677 15.47698606049068 -0.8265016514138293 15.57273598886456 -0.7361846880388361 -13.72692273584289 4.418177030246787 -13.60401690940409 4.364623460154547 -13.73869195468838 4.351431872008032 -15.6799312945193 -1.612403890972654 -15.54354137897865 -1.638587615398943 -15.68307901962822 -1.684052325355588 -11.03879089350273 7.731276161976674 -10.97013630155064 7.755912851801601 -10.89081929424308 7.680259539919994 1.017777879283641 -0.7776872549510454 0.8304177020221126 -0.8450297137301469 0.8316850995889413 -0.7733403800626774 -1.569649361279834 -12.00708917035595 -1.731490234092568 -12.02927318578456 -1.731721758177149 -11.98506702141827 -1.27689611786837 4.270249441001878 -1.427704339055886 4.262301296164493 -1.284393612364609 4.332845418309569 -0.4768695860635913 -6.003074595482511 -0.6410985706009481 -6.010024228785104 -0.4729776896325871 -5.942040994595607 1.508792833793395 9.915206756308226 1.69470575196733 9.907709608288483 1.496998334133953 9.866022521605903 15.2158557830502 -0.1856491978260113 15.21035735172968 -0.1159851765296647 15.32924101466242 -0.08648330756052865 15.45202549812743 -0.7170852671353226 15.43828422633217 -0.6556487308512626 15.54693757546256 -0.626222667456477 -13.67256105384179 4.268310473676549 -13.53776430242038 4.280708947193965 -13.56465032673341 4.219309751932072 -15.54334637266879 -1.638933078303796 -15.54638343012961 -1.710580639808732 -15.68288418743848 -1.684397457548985 -10.14971608300705 8.399009003018778 -10.23241816551191 8.488254682885824 -10.08906478873455 8.429643325274901 4.339017509140963 -0.8564796243527708 4.140861753849923 -0.8544847212515481 4.339567555086288 -0.7847846637370757 3.699382311833095 -11.67090225287114 3.71783520399307 -11.7126574429133 3.519850652009076 -11.70599678757342 -4.50537421534081 3.802371597858572 -4.518853551989814 3.864344202425445 -4.343901062936304 3.868783566897275 -4.04058586026891 -5.600772283655673 -4.028928924437079 -5.540353885523346 -3.868284633442033 -5.534280895761829 4.953631353428841 9.176891065890603 4.930912668534059 9.130138878781994 4.756036237288059 9.136981115520211 15.20407379657936 -2.550694552940539 15.33875681649253 -2.447686412556339 15.3272151963297 -2.516891539415384 13.78814693799148 0.9804669907860264 13.65340518493312 0.946638082137786 13.76085437072605 1.039036029627068 -15.4234703497418 0.5823809010124016 -15.42300420394083 0.6473198227317659 -15.28604123406698 0.5831960997448842 -14.57602405337075 -1.786098695150936 -14.73254867342964 -1.826214196813726 -14.73025598991482 -1.754549503807031 -7.932527008532775 8.994218151299025 -7.866309291966403 9.016610778141754 -7.762173894371046 8.94131606693251 4.429163170990766 9.597599347922857 4.627285304991204 9.594102959155697 4.430601934518833 9.551497004255873 4.338241397456769 -0.7824611247578051 4.139535319693241 -0.8521606944085538 4.14009205451134 -0.7804694906427024 3.102421808410494 -11.56980195035978 2.921382189592833 -11.59972090951355 2.928029327262789 -11.5579370367607 -4.437944164640006 3.924238167275824 -4.598600350258493 3.918363123700351 -4.437311998773864 3.985052415290227 -3.942603233965789 -5.48977363460459 -4.117598386900145 -5.494368310684473 -3.945116347766006 -5.428167666829939 15.15822454418859 -2.629161469947828 15.15945046169503 -2.561445222070429 15.29394047582268 -2.526995747627188 13.56743855243598 1.060457367569741 13.55079179298401 1.120246283547247 13.67425917461145 1.153305243339403 -15.42233769553148 0.5002762489799705 -15.28490811606211 0.5010415332033941 -15.3014240543213 0.4425514418021893 -14.57811415605308 -1.85819470982053 -14.73237102080251 -1.826648712043318 -14.57584644803768 -1.786533096182711 -7.04065833549342 9.503037249446964 -7.152861912652641 9.592060152138798 -6.986311416938761 9.532131511434839 7.764461992210457 8.632461813180054 7.754949455702805 8.586956770476412 7.578699845847527 8.593336071204217 7.205277969077836 -0.8241765165558987 7.005492534309306 -0.8227101175508707 7.20514812373491 -0.752484047795964 6.852620308498011 -10.60845354291583 6.859092992628851 -10.6502543614842 6.659410747873375 -10.64610733472859 -7.364742582075103 3.53356537261087 -7.369668791026909 3.594258059515068 -7.193355203094174 3.598188453423781 -6.980332878497021 -5.095051337169447 -6.976051799754297 -5.033505729922132 -6.814108973926651 -5.027931536210256 13.55594233288692 -4.207921895725812 13.41530713738491 -4.244916323561624 13.56962835308064 -4.141060050976737 11.09103565904192 1.68805621484499 10.93719415709646 1.651092925899092 11.06567832801427 1.745920641683279 -15.15206474338726 -2.915050256737084 -15.15673804272043 -2.855247401915437 -15.00001185562436 -2.925048133276372 -12.22895856218775 -1.952535264416888 -12.40610931229432 -1.988422154488813 -12.40466354503639 -1.916747362956051 -4.992868586225648 9.539630381690051 -4.934112127642773 9.562821703270483 -4.805572544266353 9.486385740626805 -6.887431091332368 -4.973288280527533 -7.063792324411773 -4.977330313835136 -6.897359937205413 -4.910530995541072 7.416530844046871 9.078414568490658 7.231841606460934 9.036262582380612 7.216766920685943 9.081147554592967 7.205448569468707 -0.7530069532245003 7.005793049236243 -0.8232331447176947 7.005705301689735 -0.7515529855191754 6.190248227592309 -10.54546233783966 6.366248537770588 -10.55461390390411 6.171630995909871 -10.5874755228118 -7.291638703516363 3.653764989293129 -7.453589085305908 3.648328343063984 -7.282391346204348 3.713261751538656 13.30463094662861 -4.245762442299805 13.30608464422483 -4.180658949544814 13.45982830875285 -4.142717282815737 10.83933951710539 1.757271202450565 10.82629135128724 1.816570756997123 10.96738701545944 1.852463738118953 -15.13800315641078 -2.971053121670076 -14.9859007400069 -2.980573364090908 -14.99860330558335 -3.034195994998006 -12.25010433462629 -1.968286950185916 -12.42436858858694 -1.932512771247769 -12.24721522035828 -1.896633880074123 -4.105850767016604 9.967104081378478 -4.246074555877347 10.05775577346526 -4.062094648224949 9.997781498584489 -9.632840066946871 -4.553709194494421 -9.635857806635888 -4.490512295311388 -9.48146251027967 -4.48374471792433 10.63332914354063 7.609239715614118 10.6352721337107 7.56283977509181 10.46738744838891 7.572182499641626 9.883230595420139 -0.760218351170224 9.692726902676272 -0.7574558857503435 9.882429536870054 -0.6885409287951335 9.332858027012399 -9.324939664483836 9.325926358570776 -9.369096948766666 9.135559451554414 -9.361826718298952 -10.0991445848126 3.256078896068714 -10.09604877633081 3.315969240205699 -9.927833604965425 3.32122584717763 11.06896706631566 -5.187860959001069 10.9144296678064 -5.226775623567064 11.07929079611799 -5.123255878195095 8.209082207550653 1.976001216674127 8.040090831921477 1.936964020328915 8.189719311391089 2.034223034418282 -13.54966811733205 -5.727025044182225 -13.5534041200049 -5.672558516458073 -13.37590536992232 -5.745342831371116 -9.454482909435733 -2.053079866740842 -9.649277344128501 -2.086184998707014 -9.647029179436522 -2.014517710853325 -1.977248898694103 9.756595355171145 -1.928855954581787 9.782608517687971 -1.783809670599348 9.704377825419831 -10.0333991053454 3.363988899440471 -10.18780132907776 3.357319844145383 -10.01672897389133 3.422853694292189 -9.542431112247556 -4.444152523403687 -9.710598987538798 -4.449481041915071 -9.558987616015688 -4.379830578949584 10.30134582005999 8.045749546269994 10.13660435995184 8.005514548127943 10.11095143030446 8.051528451943446 9.878114605291582 -0.6813041883577111 9.688410893525187 -0.750217309641563 9.687556231625864 -0.6785254928230605 8.780219706276258 -9.302858890704133 8.94795983101233 -9.314101490219105 8.749446798971057 -9.346707911095617 10.80095462466428 -5.182673348228666 10.79810187268672 -5.119857639927745 10.96640917501999 -5.079741167183528 7.938821908743909 2.044189248108815 7.933104889987783 2.104004196327593 8.088096645567495 2.14178406981703 -13.46751776715227 -5.750203168081354 -13.29354146707838 -5.767220381946506 -13.31120462339177 -5.814048248190137 -9.445753225813039 -2.159151248452337 -9.639817677750333 -2.120570917459065 -9.445024375553036 -2.087461661946528 -1.109026058521657 10.09816370011107 -1.268849258163866 10.19102216441297 -1.078357276157821 10.13248228479399 -12.94922782176304 2.622952801668769 -12.94138597196129 2.682944310987686 -12.78919005865232 2.691856451936566 -12.28494275339074 -3.77532243712409 -12.29265316698073 -3.70997598941128 -12.15373119559062 -3.699740665607629 13.7874570125565 5.043117162724284 13.79245490789307 4.993026585256168 13.64165279123874 5.011325846234993 12.60135807779593 -0.6410363685417869 12.42762464136455 -0.6348290545653279 12.59969652880776 -0.5693533150350367 11.5870711407825 -7.697376004837497 11.56906769975656 -7.745419553558944 11.39625301990679 -7.729684922609989 11.15080866099431 -7.71977076020801 11.30168962856202 -7.737827728903889 11.10992671920756 -7.766466510300469 -12.91736101618802 2.703545425129174 -13.05627938838025 2.693279914947971 -12.89672430793186 2.762872853923474 -12.19621419338813 -3.684683831107974 -12.34837655016544 -3.693618841669041 -12.21688517931147 -3.618338602904815 13.52284187905048 5.523094335233549 13.37838441657597 5.48770221991789 13.35008403691579 5.538833514885466 12.60409722057998 -0.5763447567548026 12.43202657391812 -0.6418225141774961 12.43030801490067 -0.5701359906933247 13.63883762063815 -5.44721725469206 13.61380770682593 -5.500387588420982 13.46647062975505 -5.471246767751426 -15.08284575239363 0.9023122650785057 -15.2208774698849 0.8263693256048723 -15.21501108736677 0.8877044396126678 -14.65558630309197 -2.228513104774374 -14.53488429669925 -2.213259457727746 -14.64810175579504 -2.296567850615621 15.48587450658961 -0.7072889677386613 15.47663886213827 -0.7625814925174052 15.35059687589667 -0.7279832370859108 14.77712889439435 -0.4739337402526738 14.92580542114912 -0.4136680383010598 14.92845178059544 -0.4853370795224028 14.77695868621397 -0.4736855870769765 14.77440434565205 -0.4020301011265953 14.92563528444638 -0.4134199942503872 13.36315811661996 -5.505850708264952 13.49142853853721 -5.534852926611777 13.31854127327991 -5.55644589682683 -15.14308331136975 0.8222650216642411 -15.15942011753485 0.7608371691472305 -15.28002369432089 0.7451090954453021 -14.56682633686609 -2.158250207633158 -14.54812640721705 -2.226936965939771 -14.68036973337736 -2.241283632392268 15.50191653252 -0.3450732201808038 15.36745057636905 -0.3688165363621706 15.35690532506454 -0.3091914489386688 15.10021536284021 -0.3662279915260838 15.23111772726949 -0.311193799246996 15.23428652672321 -0.3828340980822404 14.88976637221621 -2.875499185090969 14.8619901803013 -2.933069444389281 14.73653897341562 -2.889690282496022 -14.73496300520511 -1.949911756351197 -14.85116097744007 -2.033151742686197 -14.85344805127599 -1.970419707572393 -15.37266981255824 -0.1985636265403373 -15.26515227565445 -0.1783591027017222 -15.36906792625269 -0.2687508349277519 12.27637969665627 -6.961895664635397 12.17219897658405 -6.913142028974974 12.30988240291489 -6.907772124465024 12.37290369012539 -6.930466342006296 12.23526761316119 -6.936541147100408 12.25557413188744 -6.876797102240095 15.09650646155816 -0.3604887175889291 15.09200202514185 -0.2888728323966503 15.22740726568313 -0.3054522286639152 14.73133013411215 -2.925839927156168 14.84129018010756 -2.9661607923514 14.68786685384163 -2.978975091679462 -14.66064124112387 -2.109733152076942 -14.66851274842569 -2.172785016023917 -14.77574424471845 -2.193909326829141 -15.25747024489183 -0.07495710939616335 -15.24382004786392 -0.1449260058766786 -15.36243409627423 -0.1645962231422714 6.03386172741644 -10.21767282582687 5.932457171360901 -10.16317404452643 6.087589634298196 -10.17252724470024 12.41157018994403 -0.4297672803806035 12.54237962024552 -0.3805204047709608 12.54695424854139 -0.45213353650516 15.09487387640644 0.3974383334978142 15.23201612814255 0.397254742927811 15.20902571872694 0.3367131686311351 -10.98712584533499 -4.849561545362082 -10.86929883635138 -4.822741124821027 -10.97273312875936 -4.911896830158986 -13.70457250306834 2.417609427095513 -13.59478112626419 2.443397062640642 -13.71013437721912 2.346956678822359 -13.49038788234305 2.465709305726437 -13.48832815351597 2.395756007580745 -13.60668383318516 2.369972128742379 5.782375216031333 -10.40676227272839 5.823411415695212 -10.35564304221167 5.937382259001554 -10.41732418404963 12.40484663768798 -0.4187945576933733 12.4008708050482 -0.3469914029424408 12.53565653467715 -0.3695484492197242 15.13090356342597 0.4350627298086503 15.23190260217394 0.3803072128496608 15.09476031670884 0.3804744861507038 -10.73780554325371 -4.944639933453256 -10.73104969928929 -5.007569784255614 -10.84045410968247 -5.034355851595636 -9.544941499632319 4.142377734180887 -9.680805060016205 4.042950024687994 -9.665164420806672 4.111831819762289 0.6340271569205269 -10.61879292461714 0.5178530618738975 -10.56192998465888 0.6933256189549752 -10.58033198874102 7.648286092361099 -0.5932042054774838 7.795185560238386 -0.5498439571936551 7.798488689745046 -0.6216682097405024 13.96258039388776 3.981724190343859 14.09535019572185 3.965280020489766 14.08135721185337 3.904723252982765 -5.68787695437435 -5.867931290295552 -5.711654345374643 -5.807610991094385 -5.580829653580337 -5.775862177318796 -5.332142741039728 -5.996186471919412 -5.452028763627292 -6.027541099610095 -5.345984512023594 -5.934756433926544 -9.394812668832024 4.086181564035421 -9.400396586560289 4.018375566797347 -9.531433494290146 3.987398087419543 0.2881168626483132 -10.8232904406098 0.3327333124216058 -10.77852803635801 0.4632568442969797 -10.84355849880215 7.627901409660059 -0.5507444676405745 7.625155506600297 -0.4790841097123246 7.774802930959926 -0.5073885247506258 13.87626745298261 4.058762996429186 13.90304203644856 4.111682936716666 14.00931740778716 4.043785504780377 -0.9698620582504997 -5.703973797750612 -0.9948800152954102 -5.644771743493748 -0.8456732788253712 -5.608985438806956 -5.04138747325854 4.478234045003741 -5.023010081853935 4.544626420326458 -4.885790544153968 4.578818331596664 -3.376904130188155 -9.926194395710335 -3.513791243313864 -9.867290261457155 -3.321215758343276 -9.88991210647607 3.017333138410127 -0.6803795545526759 2.846773855884061 -0.6470782813351531 3.015372274814703 -0.6087032437720168 11.31461462182813 7.090698705791401 11.4564464843799 7.059023992830101 11.44972926712058 7.002312147853783 11.03056301613796 7.181508993779926 11.05159541727096 7.229415296301694 11.1733965499343 7.152754351899574 -0.6658258923951649 -5.77688512985852 -0.8027353016488087 -5.811837926182647 -0.6791679499268127 -5.716349355206121 -4.727218536967268 4.400324955167648 -4.8767743732512 4.365339340919428 -4.720554650599593 4.465324443450634 -3.729793439227283 -10.11161655929486 -3.691401246021242 -10.06927678307762 -3.537596747270898 -10.13615110308193 3.015019654902513 -0.6077477474185807 2.846421200780263 -0.6461226893006792 2.844465769389484 -0.5744543267382288 7.82491077220336 9.18999813771053 7.984347672989259 9.146423658150694 7.978585978662852 9.095943729765835 2.825096377434917 -5.193458104746092 2.8038177485176 -5.134343466934438 2.969403087866285 -5.095571713750636 -0.8454049309525047 4.285268214793661 -0.8300058803818644 4.349343699075141 -0.6777035027097456 4.386105891731725 -6.569442722241135 -8.899328438531347 -6.723836593058756 -8.838369739939827 -6.522497025377552 -8.86270961001396 -1.027675897030994 -0.704612100157213 -1.216626362265736 -0.6675837535635272 -1.028862602917045 -0.6329333098865464 -1.028429339557004 -0.6343843110642063 -1.216193054719459 -0.6690349029146713 -1.217356860704336 -0.5973422587712638 7.340454447088572 9.18473470243754 7.362364140986393 9.225822791546465 7.501683731484558 9.145453024682254 3.145397483662717 -5.267752515487297 2.993451021536473 -5.305415116969103 3.137146591433285 -5.206973925027834 -0.5400141202644004 4.200873842161887 -0.7059185647481259 4.163000414839618 -0.5377639419120495 4.263369951674332 -6.910651649969095 -9.049178393484784 -6.883447650120314 -9.006211694656061 -6.709683305598594 -9.07534805653305 -4.453739812752393 -0.673887341422711 -4.652989865808114 -0.6347214635370874 -4.454185056034181 -0.6021897073338043 4.190344325497041 10.32043007936972 4.367608418376572 10.26886391022222 4.356303897407086 10.2252036951963 6.057360411496986 -4.675126088168224 6.042488942533275 -4.615131902889079 6.217248163624792 -4.573643703816179 2.745187890173904 3.974617698687972 2.753889331227458 4.036763022297162 2.914592259355919 4.074978758843405 -9.325165683557737 -7.693027677857053 -9.488916831716066 -7.63025419934652 -9.289703949787167 -7.65396491464223 -9.63626064291622 -7.783806612308135 -9.621840946052661 -7.738118920868959 -9.437370037509659 -7.809136345732454 -4.456148911123684 -0.5947595445543384 -4.65495392669866 -0.6272905224453702 -4.655444342175763 -0.5556065241597588 3.360497516967772 10.0837563652402 3.388642207661477 10.11861295671525 3.540872736891919 10.0393659888867 6.364273555500626 -4.731065156888241 6.203977729599966 -4.770324712202349 6.363293284226373 -4.668286951436723 3.027149084833707 3.910056709996752 2.852061020894742 3.870518301492106 3.02179588809579 3.970533196939693 -11.79847206291671 -6.183676269876259 -11.9613470528831 -6.119953793488703 -11.774525862427 -6.140534852155146 -7.530723493352798 -0.5944756733336493 -7.729303575854914 -0.5554328541028434 -7.530521995348592 -0.5227908121643355 0.3370638904271806 10.68415226208111 0.5269096477277668 10.63207285568546 0.5066794352907478 10.59396886554546 8.962634518807981 -4.136922198784777 8.955002512906784 -4.074426986196031 9.129446717033083 -4.034557490062549 5.911330168665807 3.724138605218663 5.911513487134059 3.784761362705865 6.071809441965142 3.82318923896752 6.202369586795212 3.646891088741236 6.027616141963214 3.607158535332953 6.188470493961638 3.705831943974747 -12.0739932164062 -6.211992837790632 -12.07077395120753 -6.162428167095074 -11.88744252521079 -6.234040089218626 -7.522291528342579 -0.553886035913332 -7.721072119037555 -0.586531807834816 -7.720791637710336 -0.5144784421199378 0.007504092126482398 10.52882807230201 0.04682647160282105 10.55818404921214 0.1985990434058815 10.47965718881442 9.237830477681218 -4.164036425076068 9.077972098535717 -4.203576236362054 9.244267679995579 -4.100692661614889 8.872217854548568 3.476976523384762 8.863914571162766 3.536566034327765 9.015162431649493 3.57387516861083 -14.07468187064337 -4.033398539612293 -13.90724954969449 -4.049060944033338 -13.92291557286726 -4.09713578804043 -10.35237831463158 -0.5118062827308205 -10.5407083867405 -0.4735357372673448 -10.35132834301624 -0.4397573135773165 -2.114721840026888 10.72574737364265 -2.269963036006161 10.81789606209527 -2.080415184287394 10.75876728321423 11.64221593525102 -3.447685572813448 11.64111947051411 -3.384145571355619 11.80564094646939 -3.344515362532484 11.89115932281014 -3.446110781665308 11.74037045522237 -3.48455247238597 11.90322137684379 -3.380822008952721 9.148618889796934 3.403099226540594 8.983694086315714 3.364581703044573 9.127054287006649 3.461099618686497 -14.12770915990698 -4.046415067460084 -14.13183652635171 -3.99072261790696 -13.96042934922502 -4.063055412625169 -10.35639500277101 -0.4220725563315408 -10.54577576789361 -0.4558484769781266 -10.54480610601822 -0.3841617976162464 -2.967831741841932 10.44882560332407 -2.916065774234811 10.47381856075407 -2.77531516961091 10.39596453232755 13.99776000856275 -2.351036041630497 13.99993335183557 -2.285083495011548 14.14750912604804 -2.248086677132897 11.73893395218349 3.070107912156248 11.72423158084615 3.129421138109455 11.85987446586462 3.164495207897467 -15.36615484406754 -1.11152892677551 -15.21898742551485 -1.1179613835451 -15.23224793414486 -1.172764419650652 -13.03841839753838 -0.344525156737945 -13.20747791172357 -0.3099418533609996 -13.0366446559998 -0.27284799942994 -5.044529322881477 10.46419534326874 -5.176394091894054 10.55437218277403 -4.997235224268471 10.49417510118767 -5.942736660151951 10.0878392685903 -5.881162255682046 10.11053496282436 -5.760072536994693 10.03455869673605 14.21841670250299 -2.303105043589105 14.08321040442646 -2.339207235243235 14.23211411894402 -2.23550179311217 11.97946280401635 3.008192950811849 11.83151071848079 2.972138415474863 11.9529190204441 3.066153331737504 -15.37253476758558 -1.087710750677238 -15.37686103107155 -1.026099469526584 -15.22539739965658 -1.094555426461536 -13.03892074894272 -0.2662782497109539 -13.20975442471094 -0.303370906474995 -13.20802230937834 -0.2316883661006361 -8.01519210529187 9.762768674362446 -8.117828381545795 9.851650911232564 -7.95822034332968 9.791970590795909 15.40644264244356 -0.4896987443385565 15.40626948300709 -0.4212422762021754 15.53493491447027 -0.3882142377729557 14.3019859158781 2.068117515668397 14.28538395745249 2.128324305041223 14.40341528993963 2.160318544062168 -15.06280433743487 2.596781799116851 -14.92785237912183 2.601214141968385 -14.94708383215803 2.54139229198745 -15.08440682962398 -0.09759145962411998 -15.08695336810553 -0.1692589567737261 -15.23482152814353 -0.1393237032180684 -15.2310784703 -0.07032863462336783 -15.08325310146444 -0.1002600127068801 -15.2336673640194 -0.1419932287022291 -8.923501571659722 9.278233095447522 -8.855796036394333 9.300928013876968 -8.759788426160879 9.225884569880648 15.42269730208561 -0.39456208251547 15.55007824759031 -0.2922142497577432 15.54050299736091 -0.3620572786078744 14.50501102834022 1.991793463294441 14.37605372091801 1.959178835531572 14.4781972508869 2.050890668485262 -15.07494915176085 2.625073435839844 -15.07137148952717 2.691017551110971 -14.94001271801862 2.629789213653717 -15.24023466630929 0.01803061193403345 -15.24349337565169 -0.05361706873139931 -15.37764112986811 -0.02923312204259128 -11.17379038783902 8.218058979555096 -11.24756867238939 8.306854805425431 -11.11232677730228 8.249902524780154 14.6081143939815 2.072982524136852 14.59947076634131 2.142900707743456 14.71552135142038 2.170538218250184 15.57040072192249 -0.2015423709642447 15.55893652538407 -0.1394450099388824 15.66290714972646 -0.1114443365707351 -12.64746675036222 6.172275617075066 -12.5091305573086 6.188161280253866 -12.53966240365795 6.126682304290108 -12.73189783878665 6.283132119631011 -12.60942599573926 6.233646763938713 -12.7475672144483 6.216743695442649 -15.38322178452326 0.06278446206338052 -15.25195648521375 0.03849111662281274 -15.38935982458751 -0.008778237746010326 -11.93999354397293 7.643712140944677 -11.87219872278999 7.670434827113372 -11.80049347675016 7.593516752301118 14.52374127858401 2.205489717281069 14.63017203523485 2.303705277816539 14.62795696542006 2.232920814541139 15.55506445802076 -0.398258729183709 15.64945297891789 -0.3093769257399935 15.67214967852244 -0.370203149261651 -8.54839110278726 8.623242911206008 -8.589500730286041 8.563967964495342 -8.700307001582862 8.597641665084741 -12.22809598385107 -0.09508996753259236 -12.23432484395121 -0.16664781085706 -12.36659450222033 -0.1482874482510324 -14.62849232864295 4.428383040986871 -14.69572068029503 4.522497691729503 -14.57502755675156 4.470684822090064 11.0588119608929 4.221626283973954 11.04193421389389 4.291176220129056 11.15893122799804 4.312494179033167 13.44597960504432 -3.733615678859734 13.445262070515 -3.670225596935286 13.55448063631427 -3.647351842270001 13.49857814533701 -3.720427902630387 13.60666369526593 -3.633841888280487 13.61377027345967 -3.697612960420056 -8.903997383667488 8.791884335880527 -8.777518133577825 8.75632742511168 -8.928936755413485 8.728963743272056 -12.39797464456105 -0.02042396311228745 -12.26276181108309 -0.0388765674941793 -12.40126288542828 -0.09206992995855183 -15.06807793567746 3.327135604180729 -15.19446933123039 3.369718094183054 -15.13578257508136 3.405165420796467 10.82084241768013 4.550793100853755 10.71123706296746 4.529094472234048 10.80957153275353 4.621160583629894 8.805237495214664 -5.898225281103608 8.819235838540205 -5.835163893416791 8.937363221363 -5.81793122585713 -4.453527643237622 9.680031307379561 -4.498312116988717 9.624329240474673 -4.626853244536841 9.647559187348119 -7.224473656264715 -0.2024561136401654 -7.227198864023237 -0.2741167013485265 -7.375326410588214 -0.2614713567053737 -14.97807478769535 -3.841003856061851 -15.00147562983513 -3.896221771046057 -15.10724005825326 -3.813608743486643 6.276395569442173 5.09478813808756 6.250346440124336 5.162687143151492 6.380813558265123 5.177848294284729 6.448964633867097 5.068582522850016 6.330528176182517 5.052716917275782 6.435123530158036 5.135638856122859 8.342396197105265 -5.694778516819682 8.476463380671603 -5.616501348129942 8.472700910110687 -5.678743244827615 -4.895891510749848 9.947554121826881 -4.749827945594436 9.92440957229512 -4.922464054724919 9.889738886876938 -7.373465903498186 -0.1885022018947242 -7.225290927097896 -0.2011567483559721 -7.376143774493156 -0.2601718441936091 -14.65676718015812 -4.490675852808604 -14.7877524968433 -4.469287118161665 -14.75521375002407 -4.421639961685035 1.890563509546316 4.809123824166695 1.866074027419942 4.874269546670157 2.01553007700042 4.884200158116475 3.205939475569675 -6.111452539562135 3.224393110308801 -6.050854891290597 3.361615865019676 -6.039258929326409 -0.7676884958980825 9.900145880226742 -0.8094506093732026 9.848181883736482 -0.9583344481684544 9.863219009824517 -2.410832530329938 -0.3910235908288219 -2.580269533082864 -0.3833634786129642 -2.408929256897106 -0.3193386298986475 -7.288700934033111 -10.87408448590869 -7.273930193533063 -10.92690918877539 -7.434462179179099 -10.88366059278024 -7.538791827017521 -10.66346199697339 -7.684743928740911 -10.67102819840123 -7.679508861739828 -10.62262207251408 1.897682384418705 4.937667855919856 1.760377070360397 4.926693325757354 1.885030845884099 5.002090771446181 3.234235649934867 -5.987639309513234 3.084720048396567 -5.998101243428897 3.240747746919706 -5.926378505588351 -1.247557829743616 10.23691422319599 -1.078699202127026 10.22350670569535 -1.268577676296933 10.18420882195949 -2.408527616989741 -0.3200047225100269 -2.579867831331792 -0.3840296736449853 -2.577933338039743 -0.3123496115177421 -0.1685220150025957 -12.08770164830406 -0.1446461954825252 -12.13250497194081 -0.3318065003090365 -12.11634038522847 -1.780495169689983 4.445768895739395 -1.800346714957548 4.509057825016537 -1.634216421094819 4.515306213592063 -1.080275376123639 -5.703996468393416 -1.063767000879461 -5.64390921346938 -0.911210693614315 -5.636017390377594 2.471362890751208 9.709100619462886 2.438145264634871 9.660433934430397 2.272222755839425 9.669892737749537 1.529057938430958 -0.4425775669875655 1.34081722078492 -0.4386474684998436 1.530233880554405 -0.3708873206268546 1.527581115267748 -0.3663096835725314 1.338163965121219 -0.4340689831274146 1.33936191560301 -0.3623967585573739 -0.7939552681231509 -11.89726344824159 -0.9585061737584809 -11.92099627409395 -0.9583251256377255 -11.877285930713 -1.74951115256183 4.58606532944532 -1.902094216453603 4.578500389517765 -1.756065214724875 4.64836179546472 -1.026835607588378 -5.555860976960113 -1.192986144613087 -5.562388518878315 -1.023645774281973 -5.494835425090695 1.946084829015014 10.11428880389738 2.134194195256248 10.10750369521477 1.935938164111682 10.06561476524944 4.762085798310935 -0.4406358202106993 4.563064811535311 -0.4388283180180524 4.762582902347806 -0.3689584671257234 4.19983081160802 -11.41623606602867 4.216821345354481 -11.45785297941772 4.017903272249143 -11.45192303901008 -4.917063727231247 4.131394648990662 -4.929452754842037 4.193139668179431 -4.753712636422665 4.197401429665823 -4.492741562457353 -5.146055132008041 -4.482032521215455 -5.085561798002201 -4.320660257068589 -5.079657241423282 5.364420454192764 9.355961710715812 5.343439849295003 9.309480870318586 5.167854397829749 9.316065540823772 4.823660435379992 9.77986002874316 5.0226533164348 9.776667890444797 4.827055427473608 9.733928360193522 4.760280236867404 -0.3649140410248083 4.56076166476567 -0.4347830413995857 4.561232822824662 -0.3630946259172963 3.616651290194356 -11.30236390770575 3.433215122456619 -11.33290002050897 3.441399704503314 -11.29121597308221 -4.865623919993504 4.273635316650265 -5.027006713256696 4.267911615617678 -4.863874081670242 4.334251898799096 -4.397171470467212 -5.028050408533186 -4.572867515688794 -5.032445412914375 -4.400598281005675 -4.966349783325662</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"890\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 9 8 1 9 0 10 12 11 14 12 15 13 16 14 6 15 2 16 20 17 9 18 8 19 22 20 1 21 24 22 8 23 26 24 27 25 15 26 30 27 1 28 12 29 14 30 16 31 32 32 26 33 15 34 14 35 6 36 20 37 34 38 36 39 9 40 22 41 38 42 39 43 40 44 39 45 44 46 45 47 24 48 1 49 30 50 48 51 27 52 26 53 30 54 12 55 50 56 52 57 53 58 54 59 16 60 58 61 32 62 53 63 60 64 61 65 34 66 20 67 64 68 36 69 22 70 66 71 68 72 38 73 40 74 39 75 45 76 40 77 44 78 52 79 45 80 70 81 24 82 30 83 61 84 72 85 73 86 48 87 76 88 27 89 78 90 30 91 50 92 52 93 54 94 80 95 52 96 60 97 53 98 32 99 58 100 82 101 60 102 72 103 61 104 34 105 64 106 84 107 64 108 36 109 66 110 86 111 38 112 68 113 88 114 89 115 90 116 80 117 94 118 88 119 44 120 96 121 52 122 70 123 30 124 78 125 72 126 98 127 73 128 100 129 76 130 48 131 78 132 50 133 102 134 80 135 54 136 94 137 96 138 60 139 52 140 58 141 104 142 82 143 106 144 72 145 60 146 84 147 64 148 108 149 66 150 110 151 64 152 112 153 86 154 68 155 90 156 89 157 114 158 88 159 94 160 89 161 116 162 70 163 78 164 118 165 98 166 72 167 73 168 98 169 120 170 100 171 122 172 76 173 124 174 78 175 102 176 96 177 106 178 60 179 104 180 126 181 82 182 106 183 118 184 72 185 84 186 108 187 128 188 110 189 108 190 64 191 112 192 130 193 86 194 90 195 114 196 132 197 134 198 135 199 126 200 116 201 78 202 124 203 118 204 138 205 98 206 98 207 140 208 120 209 142 210 122 211 100 212 124 213 102 214 144 215 104 216 134 217 126 218 146 219 116 220 124 221 108 222 148 223 128 224 110 225 150 226 108 227 152 228 130 229 112 230 154 231 132 232 114 233 134 234 156 235 135 236 158 237 146 238 159 239 138 240 140 241 98 242 120 243 140 244 162 245 142 246 164 247 122 248 159 249 124 250 144 251 146 252 124 253 159 254 148 255 166 256 128 257 150 258 148 259 108 260 152 261 168 262 130 263 170 264 132 265 154 266 156 267 172 268 135 269 158 270 159 271 174 272 176 273 140 274 138 275 140 276 178 277 162 278 142 279 180 280 164 281 159 282 144 283 182 284 148 285 184 286 166 287 150 288 186 289 148 290 188 291 168 292 152 293 190 294 170 295 154 296 156 297 192 298 172 299 174 300 159 301 182 302 194 303 158 304 174 305 176 306 178 307 140 308 162 309 178 310 196 311 180 312 198 313 164 314 184 315 200 316 166 317 186 318 184 319 148 320 188 321 202 322 168 323 188 324 170 325 190 326 192 327 204 328 172 329 174 330 182 331 206 332 194 333 174 334 208 335 210 336 178 337 176 338 178 339 212 340 196 341 180 342 214 343 198 344 184 345 216 346 200 347 186 348 218 349 184 350 220 351 202 352 188 353 222 354 188 355 190 356 192 357 224 358 204 359 214 360 226 361 198 362 208 363 174 364 206 365 228 366 194 367 208 368 210 369 212 370 178 371 196 372 212 373 230 374 216 375 232 376 200 377 218 378 216 379 184 380 220 381 234 382 202 383 220 384 188 385 222 386 224 387 236 388 204 389 214 390 238 391 226 392 208 393 206 394 240 395 228 396 208 397 242 398 244 399 212 400 210 401 230 402 212 403 246 404 216 405 248 406 232 407 218 408 250 409 216 410 220 411 252 412 234 413 254 414 220 415 222 416 256 417 236 418 224 419 258 420 230 421 246 422 238 423 260 424 226 425 208 426 240 427 242 428 262 429 228 430 242 431 244 432 264 433 212 434 248 435 266 436 232 437 250 438 248 439 216 440 252 441 268 442 234 443 252 444 220 445 254 446 256 447 270 448 236 449 258 450 246 451 272 452 238 453 274 454 260 455 242 456 240 457 276 458 262 459 242 460 278 461 280 462 264 463 244 464 248 465 282 466 266 467 250 468 284 469 248 470 252 471 286 472 268 473 288 474 252 475 254 476 290 477 270 478 256 479 272 480 264 481 280 482 292 483 258 484 272 485 274 486 294 487 260 488 242 489 276 490 296 491 298 492 262 493 278 494 282 495 300 496 266 497 284 498 282 499 248 500 286 501 302 502 268 503 286 504 252 505 288 506 290 507 304 508 270 509 272 510 280 511 306 512 292 513 272 514 308 515 274 516 310 517 294 518 296 519 276 520 312 521 298 522 278 523 314 524 282 525 316 526 300 527 284 528 318 529 282 530 286 531 320 532 302 533 322 534 286 535 288 536 324 537 304 538 290 539 298 540 314 541 326 542 308 543 272 544 306 545 328 546 292 547 308 548 294 549 310 550 330 551 314 552 296 553 312 554 316 555 332 556 300 557 318 558 316 559 282 560 320 561 334 562 302 563 320 564 286 565 322 566 324 567 336 568 304 569 326 570 314 571 338 572 308 573 306 574 340 575 328 576 308 577 342 578 330 579 310 580 344 581 314 582 312 583 346 584 316 585 348 586 332 587 350 588 316 589 318 590 320 591 352 592 334 593 322 594 354 595 320 596 356 597 336 598 324 599 338 600 314 601 346 602 326 603 338 604 358 605 342 606 308 607 340 608 360 609 328 610 342 611 330 612 344 613 362 614 348 615 364 616 332 617 350 618 366 619 316 620 352 621 368 622 334 623 354 624 352 625 320 626 370 627 336 628 356 629 338 630 346 631 372 632 358 633 338 634 374 635 342 636 340 637 376 638 342 639 378 640 360 641 362 642 344 643 380 644 348 645 382 646 364 647 384 648 366 649 350 650 352 651 386 652 368 653 354 654 388 655 352 656 390 657 370 658 356 659 362 660 380 661 392 662 374 663 338 664 372 665 394 666 358 667 374 668 378 669 342 670 376 671 360 672 378 673 396 674 382 675 398 676 364 677 384 678 400 679 366 680 386 681 402 682 368 683 388 684 386 685 352 686 404 687 370 688 390 689 392 690 380 691 406 692 374 693 372 694 408 695 394 696 374 697 410 698 378 699 376 700 412 701 378 702 414 703 396 704 416 705 398 706 382 707 384 708 418 709 400 710 386 711 420 712 402 713 388 714 422 715 386 716 404 717 390 718 424 719 396 720 414 721 426 722 392 723 406 724 428 725 410 726 374 727 408 728 430 729 394 730 410 731 414 732 378 733 412 734 416 735 432 736 398 737 418 738 416 739 400 740 402 741 420 742 434 743 422 744 420 745 386 746 436 747 404 748 424 749 414 750 438 751 426 752 428 753 406 754 440 755 410 756 408 757 442 758 430 759 410 760 444 761 414 762 412 763 446 764 448 765 432 766 416 767 418 768 450 769 416 770 434 771 420 772 452 773 422 774 454 775 420 776 436 777 424 778 456 779 438 780 414 781 446 782 426 783 438 784 458 785 428 786 440 787 460 788 444 789 410 790 442 791 462 792 430 793 444 794 448 795 464 796 432 797 450 798 448 799 416 800 434 801 452 802 466 803 454 804 452 805 420 806 468 807 436 808 456 809 438 810 446 811 470 812 438 813 472 814 458 815 460 816 440 817 474 818 444 819 442 820 476 821 462 822 444 823 478 824 448 825 480 826 464 827 450 828 482 829 448 830 466 831 452 832 484 833 486 834 452 835 454 836 468 837 456 838 488 839 490 840 462 841 478 842 438 843 470 844 472 845 458 846 472 847 492 848 494 849 460 850 474 851 478 852 444 853 476 854 480 855 496 856 464 857 482 858 480 859 448 860 466 861 484 862 498 863 484 864 452 865 486 866 500 867 468 868 488 869 490 870 478 871 502 872 472 873 470 874 504 875 472 876 506 877 492 878 494 879 474 880 508 881 478 882 476 883 510 884 480 885 512 886 496 887 482 888 514 889 480 890 498 891 484 892 516 893 518 894 484 895 486 896 500 897 488 898 520 899 502 900 478 901 510 902 522 903 490 904 502 905 472 906 504 907 524 908 492 909 506 910 526 911 528 912 494 913 508 914 512 915 530 916 496 917 514 918 512 919 480 920 498 921 516 922 532 923 516 924 484 925 518 926 534 927 500 928 520 929 502 930 510 931 536 932 522 933 502 934 538 935 524 936 504 937 540 938 506 939 542 940 526 941 528 942 508 943 544 944 512 945 546 946 530 947 514 948 548 949 512 950 532 951 516 952 550 953 552 954 516 955 518 956 534 957 520 958 554 959 556 960 528 961 544 962 538 963 502 964 536 965 558 966 522 967 538 968 524 969 540 970 560 971 526 972 542 973 562 974 546 975 564 976 530 977 548 978 546 979 512 980 566 981 532 982 550 983 550 984 516 985 552 986 534 987 554 988 568 989 556 990 544 991 570 992 572 993 538 994 536 995 558 996 538 997 574 998 560 999 540 1000 576 1001 578 1002 562 1003 542 1004 546 1005 580 1006 564 1007 548 1008 582 1009 546 1010 566 1011 550 1012 584 1013 586 1014 550 1015 552 1016 568 1017 554 1018 588 1019 578 1020 590 1021 562 1022 592 1023 556 1024 570 1025 572 1026 574 1027 538 1028 594 1029 558 1030 574 1031 560 1032 576 1033 596 1034 580 1035 598 1036 564 1037 582 1038 580 1039 546 1040 600 1041 566 1042 584 1043 584 1044 550 1045 586 1046 568 1047 588 1048 602 1049 604 1050 590 1051 578 1052 592 1053 570 1054 606 1055 608 1056 574 1057 572 1058 574 1059 610 1060 594 1061 576 1062 612 1063 596 1064 580 1065 614 1066 598 1067 582 1068 616 1069 580 1070 600 1071 584 1072 618 1073 620 1074 584 1075 586 1076 602 1077 588 1078 622 1079 596 1080 612 1081 624 1082 604 1083 626 1084 590 1085 628 1086 592 1087 606 1088 608 1089 630 1090 574 1091 610 1092 632 1093 594 1094 614 1095 634 1096 598 1097 616 1098 614 1099 580 1100 636 1101 600 1102 618 1103 618 1104 584 1105 620 1106 602 1107 622 1108 638 1109 612 1110 640 1111 624 1112 642 1113 626 1114 604 1115 644 1116 628 1117 606 1118 608 1119 646 1120 630 1121 610 1122 648 1123 632 1124 614 1125 650 1126 634 1127 614 1128 616 1129 652 1130 636 1131 618 1132 654 1133 656 1134 618 1135 620 1136 638 1137 622 1138 658 1139 648 1140 660 1141 632 1142 640 1143 662 1144 624 1145 642 1146 664 1147 626 1148 666 1149 628 1150 644 1151 646 1152 668 1153 630 1154 650 1155 670 1156 634 1157 614 1158 652 1159 650 1160 672 1161 636 1162 654 1163 674 1164 618 1165 656 1166 638 1167 658 1168 676 1169 678 1170 660 1171 648 1172 640 1173 680 1174 662 1175 682 1176 664 1177 642 1178 684 1179 666 1180 644 1181 646 1182 686 1183 668 1184 670 1185 650 1186 688 1187 650 1188 652 1189 690 1190 672 1191 654 1192 692 1193 674 1194 656 1195 694 1196 658 1197 696 1198 676 1199 686 1200 678 1201 668 1202 678 1203 698 1204 660 1205 680 1206 682 1207 662 1208 682 1209 700 1210 664 1211 684 1212 702 1213 666 1214 704 1215 670 1216 688 1217 650 1218 690 1219 706 1220 708 1221 672 1222 692 1223 674 1224 694 1225 710 1226 676 1227 696 1228 712 1229 678 1230 686 1231 714 1232 698 1233 678 1234 716 1235 680 1236 718 1237 682 1238 682 1239 720 1240 700 1241 722 1242 702 1243 684 1244 704 1245 688 1246 724 1247 706 1248 690 1249 726 1250 708 1251 692 1252 728 1253 710 1254 694 1255 730 1256 696 1257 732 1258 712 1259 722 1260 734 1261 702 1262 716 1263 678 1264 714 1265 736 1266 698 1267 716 1268 718 1269 720 1270 682 1271 700 1272 720 1273 738 1274 704 1275 724 1276 740 1277 742 1278 706 1279 726 1280 744 1281 708 1282 728 1283 710 1284 730 1285 746 1286 712 1287 732 1288 748 1289 750 1290 734 1291 722 1292 716 1293 714 1294 752 1295 736 1296 716 1297 754 1298 718 1299 756 1300 720 1301 720 1302 758 1303 738 1304 740 1305 724 1306 760 1307 742 1308 726 1309 762 1310 764 1311 744 1312 728 1313 746 1314 730 1315 766 1316 732 1317 768 1318 748 1319 738 1320 758 1321 770 1322 750 1323 772 1324 734 1325 754 1326 716 1327 752 1328 774 1329 736 1330 754 1331 756 1332 758 1333 720 1334 740 1335 760 1336 776 1337 760 1338 742 1339 762 1340 778 1341 744 1342 764 1343 746 1344 766 1345 780 1346 768 1347 782 1348 748 1349 758 1350 784 1351 770 1352 786 1353 772 1354 750 1355 754 1356 752 1357 788 1358 774 1359 754 1360 790 1361 756 1362 792 1363 758 1364 776 1365 760 1366 794 1367 762 1368 796 1369 760 1370 798 1371 778 1372 764 1373 800 1374 780 1375 766 1376 768 1377 802 1378 782 1379 792 1380 784 1381 758 1382 770 1383 784 1384 804 1385 786 1386 806 1387 772 1388 790 1389 754 1390 788 1391 808 1392 774 1393 790 1394 776 1395 794 1396 810 1397 796 1398 794 1399 760 1400 798 1401 812 1402 778 1403 814 1404 780 1405 800 1406 802 1407 816 1408 782 1409 792 1410 818 1411 784 1412 784 1413 820 1414 804 1415 822 1416 806 1417 786 1418 790 1419 788 1420 824 1421 808 1422 790 1423 826 1424 794 1425 828 1426 810 1427 796 1428 830 1429 794 1430 832 1431 812 1432 798 1433 834 1434 814 1435 800 1436 802 1437 836 1438 816 1439 838 1440 808 1441 826 1442 818 1443 820 1444 784 1445 804 1446 820 1447 840 1448 822 1449 842 1450 806 1451 826 1452 790 1453 824 1454 828 1455 844 1456 810 1457 830 1458 828 1459 794 1460 832 1461 846 1462 812 1463 848 1464 814 1465 834 1466 836 1467 850 1468 816 1469 838 1470 826 1471 852 1472 854 1473 820 1474 818 1475 820 1476 856 1477 840 1478 822 1479 858 1480 842 1481 826 1482 824 1483 860 1484 828 1485 862 1486 844 1487 830 1488 864 1489 828 1490 866 1491 846 1492 832 1493 868 1494 848 1495 834 1496 836 1497 870 1498 850 1499 852 1500 826 1501 860 1502 872 1503 838 1504 852 1505 854 1506 856 1507 820 1508 840 1509 856 1510 874 1511 858 1512 876 1513 842 1514 862 1515 878 1516 844 1517 864 1518 862 1519 828 1520 866 1521 880 1522 846 1523 866 1524 848 1525 868 1526 870 1527 882 1528 850 1529 852 1530 860 1531 884 1532 872 1533 852 1534 886 1535 888 1536 856 1537 854 1538 856 1539 890 1540 874 1541 858 1542 892 1543 876 1544 862 1545 894 1546 878 1547 864 1548 896 1549 862 1550 898 1551 880 1552 866 1553 900 1554 866 1555 868 1556 870 1557 902 1558 882 1559 892 1560 904 1561 876 1562 886 1563 852 1564 884 1565 906 1566 872 1567 886 1568 888 1569 890 1570 856 1571 874 1572 890 1573 908 1574 894 1575 910 1576 878 1577 896 1578 894 1579 862 1580 898 1581 912 1582 880 1583 898 1584 866 1585 900 1586 902 1587 914 1588 882 1589 892 1590 916 1591 904 1592 886 1593 884 1594 918 1595 906 1596 886 1597 920 1598 922 1599 890 1600 888 1601 908 1602 890 1603 924 1604 894 1605 926 1606 910 1607 896 1608 928 1609 894 1610 898 1611 930 1612 912 1613 932 1614 898 1615 900 1616 934 1617 914 1618 902 1619 936 1620 908 1621 924 1622 916 1623 938 1624 904 1625 886 1626 918 1627 920 1628 940 1629 906 1630 920 1631 922 1632 942 1633 890 1634 926 1635 944 1636 910 1637 928 1638 926 1639 894 1640 930 1641 946 1642 912 1643 930 1644 898 1645 932 1646 934 1647 948 1648 914 1649 936 1650 924 1651 950 1652 916 1653 952 1654 938 1655 920 1656 918 1657 954 1658 940 1659 920 1660 956 1661 958 1662 942 1663 922 1664 926 1665 960 1666 944 1667 928 1668 962 1669 926 1670 930 1671 964 1672 946 1673 966 1674 930 1675 932 1676 968 1677 948 1678 934 1679 950 1680 942 1681 958 1682 970 1683 936 1684 950 1685 952 1686 972 1687 938 1688 920 1689 954 1690 974 1691 940 1692 956 1693 976 1694 960 1695 978 1696 944 1697 962 1698 960 1699 926 1700 964 1701 980 1702 946 1703 964 1704 930 1705 966 1706 968 1707 982 1708 948 1709 950 1710 958 1711 984 1712 970 1713 950 1714 986 1715 952 1716 988 1717 972 1718 974 1719 954 1720 990 1721 976 1722 956 1723 992 1724 960 1725 994 1726 978 1727 962 1728 996 1729 960 1730 964 1731 998 1732 980 1733 1000 1734 964 1735 966 1736 1002 1737 982 1738 968 1739 976 1740 992 1741 1004 1742 986 1743 950 1744 984 1745 1006 1746 970 1747 986 1748 972 1749 988 1750 1008 1751 992 1752 974 1753 990 1754 994 1755 1010 1756 978 1757 996 1758 994 1759 960 1760 998 1761 1012 1762 980 1763 998 1764 964 1765 1000 1766 1002 1767 1014 1768 982 1769 1004 1770 992 1771 1016 1772 986 1773 984 1774 1018 1775 1006 1776 986 1777 1020 1778 1008 1779 988 1780 1022 1781 992 1782 990 1783 1024 1784 994 1785 1026 1786 1010 1787 1028 1788 994 1789 996 1790 998 1791 1030 1792 1012 1793 1000 1794 1032 1795 998 1796 1034 1797 1014 1798 1002 1799 1016 1800 992 1801 1024 1802 1004 1803 1016 1804 1036 1805 1020 1806 986 1807 1018 1808 1038 1809 1006 1810 1020 1811 1008 1812 1022 1813 1040 1814 1026 1815 1042 1816 1010 1817 1028 1818 1044 1819 994 1820 1030 1821 1046 1822 1012 1823 1032 1824 1030 1825 998 1826 1048 1827 1014 1828 1034 1829 1016 1830 1024 1831 1050 1832 1036 1833 1016 1834 1052 1835 1020 1836 1018 1837 1054 1838 1020 1839 1056 1840 1038 1841 1040 1842 1022 1843 1058 1844 1026 1845 1060 1846 1042 1847 1062 1848 1044 1849 1028 1850 1030 1851 1064 1852 1046 1853 1032 1854 1066 1855 1030 1856 1068 1857 1048 1858 1034 1859 1040 1860 1058 1861 1070 1862 1052 1863 1016 1864 1050 1865 1072 1866 1036 1867 1052 1868 1056 1869 1020 1870 1054 1871 1038 1872 1056 1873 1074 1874 1060 1875 1076 1876 1042 1877 1062 1878 1078 1879 1044 1880 1064 1881 1080 1882 1046 1883 1066 1884 1064 1885 1030 1886 1082 1887 1048 1888 1068 1889 1070 1890 1058 1891 1084 1892 1052 1893 1050 1894 1086 1895 1072 1896 1052 1897 1088 1898 1056 1899 1054 1900 1090 1901 1056 1902 1092 1903 1074 1904 1094 1905 1076 1906 1060 1907 1062 1908 1096 1909 1078 1910 1064 1911 1098 1912 1080 1913 1066 1914 1100 1915 1064 1916 1082 1917 1068 1918 1102 1919 1074 1920 1092 1921 1104 1922 1070 1923 1084 1924 1106 1925 1088 1926 1052 1927 1086 1928 1108 1929 1072 1930 1088 1931 1092 1932 1056 1933 1090 1934 1094 1935 1110 1936 1076 1937 1096 1938 1094 1939 1078 1940 1080 1941 1098 1942 1112 1943 1100 1944 1114 1945 1064 1946 1116 1947 1082 1948 1102 1949 1092 1950 1118 1951 1104 1952 1106 1953 1084 1954 1120 1955 1088 1956 1086 1957 1122 1958 1108 1959 1088 1960 1124 1961 1092 1962 1090 1963 1126 1964 1128 1965 1110 1966 1094 1967 1096 1968 1130 1969 1094 1970 1112 1971 1098 1972 1132 1973 1134 1974 1114 1975 1100 1976 1116 1977 1102 1978 1136 1979 1118 1980 1092 1981 1126 1982 1104 1983 1118 1984 1138 1985 1106 1986 1120 1987 1140 1988 1124 1989 1088 1990 1122 1991 1142 1992 1108 1993 1124 1994 1128 1995 1144 1996 1110 1997 1130 1998 1128 1999 1094 2000 1112 2001 1132 2002 1146 2003 1132 2004 1114 2005 1134 2006 1148 2007 1116 2008 1136 2009 1118 2010 1126 2011 1150 2012 1118 2013 1152 2014 1138 2015 1140 2016 1120 2017 1154 2018 1124 2019 1122 2020 1156 2021 1142 2022 1124 2023 1158 2024 1128 2025 1160 2026 1144 2027 1130 2028 1162 2029 1128 2030 1146 2031 1132 2032 1164 2033 1166 2034 1132 2035 1134 2036 1148 2037 1136 2038 1168 2039 1170 2040 1142 2041 1158 2042 1118 2043 1150 2044 1152 2045 1138 2046 1152 2047 1172 2048 1174 2049 1140 2050 1154 2051 1158 2052 1124 2053 1156 2054 1160 2055 1176 2056 1144 2057 1162 2058 1160 2059 1128 2060 1146 2061 1164 2062 1178 2063 1164 2064 1132 2065 1166 2066 1180 2067 1148 2068 1168 2069 1170 2070 1158 2071 1182 2072 1152 2073 1150 2074 1184 2075 1152 2076 1186 2077 1172 2078 1174 2079 1154 2080 1188 2081 1158 2082 1156 2083 1190 2084 1160 2085 1192 2086 1176 2087 1162 2088 1194 2089 1160 2090 1178 2091 1164 2092 1196 2093 1198 2094 1164 2095 1166 2096 1180 2097 1168 2098 1200 2099 1182 2100 1158 2101 1190 2102 1202 2103 1170 2104 1182 2105 1152 2106 1184 2107 1204 2108 1172 2109 1186 2110 1206 2111 1208 2112 1174 2113 1188 2114 1192 2115 1210 2116 1176 2117 1194 2118 1192 2119 1160 2120 1178 2121 1196 2122 1212 2123 1196 2124 1164 2125 1198 2126 1214 2127 1180 2128 1200 2129 1182 2130 1190 2131 1216 2132 1202 2133 1182 2134 1218 2135 1204 2136 1184 2137 1220 2138 1186 2139 1222 2140 1206 2141 1208 2142 1188 2143 1224 2144 1226 2145 1208 2146 1224 2147 1218 2148 1182 2149 1216 2150 1228 2151 1202 2152 1218 2153 1204 2154 1220 2155 1230 2156 1206 2157 1222 2158 1232 2159 1226 2160 1224 2161 1234 2162 1236 2163 1218 2164 1216 2165 1218 2166 1238 2167 1228 2168 1230 2169 1220 2170 1240 2171 1242 2172 1232 2173 1222 2174 1242 2175 1244 2176 1232 2177 1246 2178 1226 2179 1234 2180 1236 2181 1238 2182 1218 2183 1238 2184 1248 2185 1228 2186 1230 2187 1240 2188 1250 2189 1252 2190 1244 2191 1242 2192 1246 2193 1234 2194 1254 2195 1256 2196 1238 2197 1236 2198 1238 2199 1258 2200 1248 2201 1240 2202 1260 2203 1250 2204 1250 2205 1260 2206 1262 2207 1252 2208 1264 2209 1244 2210 1266 2211 1246 2212 1254 2213 1256 2214 1268 2215 1238 2216 1258 2217 1270 2218 1248 2219 1260 2220 1272 2221 1262 2222 1274 2223 1264 2224 1252 2225 1276 2226 1266 2227 1254 2228 1256 2229 1278 2230 1268 2231 1258 2232 1280 2233 1270 2234 1280 2235 1282 2236 1270 2237 1272 2238 1284 2239 1262 2240 1274 2241 1286 2242 1264 2243 1288 2244 1266 2245 1276 2246 1278 2247 1280 2248 1268 2249 1290 2250 1282 2251 1280 2252 1272 2253 1292 2254 1284 2255 1294 2256 1286 2257 1274 2258 1296 2259 1288 2260 1276 2261 1280 2262 1278 2263 1298 2264 1290 2265 1280 2266 1298 2267 1290 2268 1300 2269 1282 2270 1292 2271 1294 2272 1284 2273 1294 2274 1302 2275 1286 2276 1296 2277 1304 2278 1288 2279 1290 2280 1298 2281 1306 2282 1300 2283 1290 2284 1308 2285 1292 2286 1310 2287 1294 2288 1294 2289 1312 2290 1302 2291 1314 2292 1304 2293 1296 2294 1314 2295 1316 2296 1304 2297 1308 2298 1290 2299 1306 2300 1318 2301 1300 2302 1308 2303 1310 2304 1312 2305 1294 2306 1302 2307 1312 2308 1320 2309 1322 2310 1316 2311 1314 2312 1308 2313 1306 2314 1324 2315 1318 2316 1308 2317 1326 2318 1310 2319 1328 2320 1312 2321 1312 2322 1330 2323 1320 2324 1320 2325 1330 2326 1332 2327 1322 2328 1334 2329 1316 2330 1326 2331 1308 2332 1324 2333 1336 2334 1318 2335 1326 2336 1328 2337 1330 2338 1312 2339 1330 2340 1338 2341 1332 2342 1340 2343 1334 2344 1322 2345 1326 2346 1324 2347 1342 2348 1336 2349 1326 2350 1344 2351 1328 2352 1346 2353 1330 2354 1346 2355 1338 2356 1330 2357 1332 2358 1338 2359 1348 2360 1340 2361 1350 2362 1334 2363 1344 2364 1326 2365 1342 2366 1352 2367 1336 2368 1344 2369 1346 2370 1354 2371 1338 2372 1338 2373 1356 2374 1348 2375 1358 2376 1350 2377 1340 2378 1344 2379 1342 2380 1360 2381 1352 2382 1344 2383 1362 2384 1364 2385 1352 2386 1362 2387 1354 2388 1356 2389 1338 2390 1348 2391 1356 2392 1366 2393 1358 2394 1368 2395 1350 2396 1362 2397 1344 2398 1360 2399 1364 2400 1362 2401 1370 2402 1372 2403 1356 2404 1354 2405 1356 2406 1374 2407 1366 2408 1358 2409 1376 2410 1368 2411 1362 2412 1360 2413 1378 2414 1370 2415 1362 2416 1378 2417 1380 2418 1364 2419 1370 2420 1372 2421 1374 2422 1356 2423 1366 2424 1374 2425 1382 2426 1376 2427 1384 2428 1368 2429 1370 2430 1378 2431 1386 2432 1380 2433 1370 2434 1388 2435 1390 2436 1374 2437 1372 2438 1374 2439 1392 2440 1382 2441 1376 2442 1394 2443 1384 2444 1394 2445 1396 2446 1384 2447 1388 2448 1370 2449 1386 2450 1398 2451 1380 2452 1388 2453 1390 2454 1392 2455 1374 2456 1382 2457 1392 2458 1400 2459 1394 2460 1402 2461 1396 2462 1388 2463 1386 2464 1404 2465 1398 2466 1388 2467 1406 2468 1408 2469 1392 2470 1390 2471 1400 2472 1392 2473 1410 2474 1412 2475 1400 2476 1410 2477 1402 2478 1414 2479 1396 2480 1388 2481 1404 2482 1406 2483 1416 2484 1398 2485 1406 2486 1408 2487 1418 2488 1392 2489 1412 2490 1410 2491 1420 2492 1402 2493 1422 2494 1414 2495 1406 2496 1404 2497 1424 2498 1416 2499 1406 2500 1426 2501 1428 2502 1418 2503 1408 2504 1420 2505 1418 2506 1428 2507 1430 2508 1412 2509 1420 2510 1422 2511 1432 2512 1414 2513 1406 2514 1424 2515 1434 2516 1416 2517 1426 2518 1436 2519 1420 2520 1428 2521 1438 2522 1430 2523 1420 2524 1440 2525 1422 2526 1442 2527 1432 2528 1434 2529 1424 2530 1444 2531 1436 2532 1426 2533 1446 2534 1436 2535 1446 2536 1448 2537 1440 2538 1420 2539 1438 2540 1450 2541 1430 2542 1440 2543 1432 2544 1442 2545 1452 2546 1446 2547 1434 2548 1444 2549 1448 2550 1446 2551 1454 2552 1440 2553 1438 2554 1456 2555 1450 2556 1440 2557 1458 2558 1452 2559 1442 2560 1460 2561 1446 2562 1444 2563 1462 2564 1454 2565 1446 2566 1462 2567 1448 2568 1454 2569 1464 2570 1458 2571 1440 2572 1456 2573 1466 2574 1450 2575 1458 2576 1452 2577 1460 2578 1468 2579 1454 2580 1462 2581 1470 2582 1464 2583 1454 2584 1472 2585 1458 2586 1456 2587 1474 2588 1458 2589 1476 2590 1466 2591 1468 2592 1460 2593 1478 2594 1468 2595 1478 2596 1480 2597 1472 2598 1454 2599 1470 2600 1482 2601 1464 2602 1472 2603 1476 2604 1458 2605 1474 2606 1466 2607 1476 2608 1484 2609 1480 2610 1478 2611 1486 2612 1472 2613 1470 2614 1488 2615 1482 2616 1472 2617 1490 2618 1476 2619 1474 2620 1492 2621 1476 2622 1494 2623 1484 2624 1484 2625 1494 2626 1496 2627 1480 2628 1486 2629 1498 2630 1490 2631 1472 2632 1488 2633 1500 2634 1482 2635 1490 2636 1494 2637 1476 2638 1492 2639 1494 2640 1502 2641 1496 2642 1498 2643 1486 2644 1504 2645 1490 2646 1488 2647 1506 2648 1500 2649 1490 2650 1508 2651 1494 2652 1492 2653 1510 2654 1502 2655 1494 2656 1510 2657 1496 2658 1502 2659 1512 2660 1498 2661 1504 2662 1514 2663 1508 2664 1490 2665 1506 2666 1516 2667 1500 2668 1508 2669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1737\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1738\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"890\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 5 7 10 11 4 13 5 4 17 18 19 21 3 7 23 11 10 11 25 4 18 28 29 13 4 31 33 17 19 19 18 29 35 21 7 23 10 37 41 42 43 46 47 42 31 4 25 29 28 49 51 13 31 55 56 57 33 59 17 62 63 56 65 21 35 67 23 37 41 43 69 41 46 42 46 57 47 31 25 71 74 75 62 28 77 49 51 31 79 81 55 57 56 63 57 83 59 33 62 75 63 85 65 35 67 37 65 69 43 87 91 92 93 93 95 81 57 97 47 79 31 71 74 99 75 49 77 101 103 51 79 95 55 81 57 63 97 83 105 59 63 75 107 109 65 85 65 111 67 69 87 113 115 92 91 92 95 93 79 71 117 75 99 119 121 99 74 77 123 101 103 79 125 63 107 97 83 127 105 75 119 107 129 109 85 65 109 111 87 131 113 133 115 91 127 136 137 125 79 117 99 139 119 121 141 99 101 123 143 145 103 125 127 137 105 125 117 147 129 149 109 109 151 111 113 131 153 115 133 155 136 157 137 160 147 161 99 141 139 163 141 121 123 165 143 145 125 160 160 125 147 129 167 149 109 149 151 131 169 153 155 133 171 136 173 157 175 160 161 139 141 177 163 179 141 165 181 143 183 145 160 167 185 149 149 187 151 153 169 189 155 171 191 173 193 157 183 160 175 175 161 195 141 179 177 197 179 163 165 199 181 167 201 185 149 185 187 169 203 189 191 171 189 173 205 193 207 183 175 209 175 195 177 179 211 197 213 179 199 215 181 201 217 185 185 219 187 189 203 221 191 189 223 205 225 193 199 227 215 207 175 209 209 195 229 179 213 211 231 213 197 201 233 217 185 217 219 203 235 221 223 189 221 205 237 225 227 239 215 241 207 209 243 209 229 211 213 245 247 213 231 233 249 217 217 251 219 235 253 221 223 221 255 225 237 257 247 231 259 227 261 239 243 241 209 243 229 263 213 265 245 233 267 249 217 249 251 235 269 253 255 221 253 237 271 257 273 247 259 261 275 239 277 241 243 279 243 263 245 265 281 267 283 249 249 285 251 269 287 253 255 253 289 257 271 291 281 265 273 273 259 293 261 295 275 297 277 243 279 263 299 267 301 283 249 283 285 269 303 287 289 253 287 271 305 291 307 281 273 309 273 293 295 311 275 313 277 297 315 279 299 301 317 283 283 319 285 303 321 287 289 287 323 291 305 325 327 315 299 307 273 309 309 293 329 331 311 295 313 297 315 301 333 317 283 317 319 303 335 321 323 287 321 305 337 325 339 315 327 341 307 309 343 309 329 345 311 331 347 313 315 333 349 317 319 317 351 335 353 321 321 355 323 325 337 357 347 315 339 359 339 327 341 309 343 343 329 361 363 345 331 333 365 349 317 367 351 335 369 353 321 353 355 357 337 371 373 347 339 375 339 359 377 341 343 361 379 343 381 345 363 365 383 349 351 367 385 369 387 353 353 389 355 357 371 391 393 381 363 373 339 375 375 359 395 377 343 379 397 379 361 365 399 383 367 401 385 369 403 387 353 387 389 391 371 405 407 381 393 409 373 375 411 375 395 413 377 379 397 415 379 383 399 417 401 419 385 403 421 387 387 423 389 425 391 405 427 415 397 429 407 393 409 375 411 411 395 431 413 379 415 399 433 417 401 417 419 435 421 403 387 421 423 425 405 437 427 439 415 441 407 429 443 409 411 445 411 431 447 413 415 417 433 449 417 451 419 453 421 435 421 455 423 457 425 437 447 415 439 459 439 427 461 441 429 443 411 445 445 431 463 433 465 449 417 449 451 467 453 435 421 453 455 457 437 469 471 447 439 459 473 439 475 441 461 477 443 445 479 445 463 465 481 449 449 483 451 485 453 467 455 453 487 489 457 469 479 463 491 473 471 439 493 473 459 475 461 495 477 445 479 465 497 481 449 481 483 499 485 467 487 453 485 489 469 501 503 479 491 505 471 473 493 507 473 509 475 495 511 477 479 497 513 481 481 515 483 517 485 499 487 485 519 521 489 501 511 479 503 503 491 523 525 505 473 527 507 493 509 495 529 497 531 513 481 513 515 533 517 499 519 485 517 521 501 535 537 511 503 539 503 523 541 505 525 527 543 507 545 509 529 531 547 513 513 549 515 551 517 533 519 517 553 555 521 535 545 529 557 537 503 539 539 523 559 561 541 525 563 543 527 531 565 547 513 547 549 551 533 567 553 517 551 569 555 535 571 545 557 537 539 573 575 539 559 577 541 561 543 563 579 565 581 547 547 583 549 585 551 567 553 551 587 589 555 569 563 591 579 571 557 593 539 575 573 575 559 595 597 577 561 565 599 581 547 581 583 585 567 601 587 551 585 603 589 569 579 591 605 607 571 593 573 575 609 595 611 575 597 613 577 599 615 581 581 617 583 619 585 601 587 585 621 623 589 603 625 613 597 591 627 605 607 593 629 575 631 609 595 633 611 599 635 615 581 615 617 619 601 637 621 585 619 639 623 603 625 641 613 605 627 643 607 629 645 631 647 609 633 649 611 635 651 615 653 617 615 655 619 637 621 619 657 659 623 639 633 661 649 625 663 641 627 665 643 645 629 667 631 669 647 635 671 651 651 653 615 655 637 673 657 619 675 677 659 639 649 661 679 663 681 641 643 665 683 645 667 685 669 687 647 689 651 671 691 653 651 693 655 673 695 657 675 677 697 659 669 679 687 661 699 679 663 683 681 665 701 683 667 703 685 689 671 705 707 691 651 693 673 709 711 695 675 713 697 677 715 687 679 717 679 699 683 719 681 701 721 683 685 703 723 725 689 705 727 691 707 729 693 709 731 695 711 713 733 697 703 735 723 715 679 717 717 699 737 683 721 719 739 721 701 741 725 705 727 707 743 729 709 745 747 731 711 749 733 713 723 735 751 753 715 717 755 717 737 721 757 719 739 759 721 761 725 741 763 727 743 729 745 765 767 731 747 749 769 733 771 759 739 735 773 751 753 717 755 755 737 775 721 759 757 777 761 741 763 743 761 765 745 779 781 767 747 749 783 769 771 785 759 751 773 787 789 753 755 791 755 775 759 793 757 795 761 777 761 797 763 765 779 799 767 781 801 783 803 769 759 785 793 805 785 771 773 807 787 789 755 791 791 775 809 811 795 777 761 795 797 779 813 799 801 781 815 783 817 803 785 819 793 805 821 785 787 807 823 825 789 791 827 791 809 811 829 795 795 831 797 799 813 833 801 815 835 817 837 803 827 809 839 785 821 819 841 821 805 807 843 823 825 791 827 811 845 829 795 829 831 813 847 833 835 815 849 817 851 837 853 827 839 819 821 855 841 857 821 843 859 823 861 825 827 845 863 829 829 865 831 833 847 867 835 849 869 851 871 837 861 827 853 853 839 873 821 857 855 875 857 841 843 877 859 845 879 863 829 863 865 847 881 867 869 849 867 851 883 871 885 861 853 887 853 873 855 857 889 875 891 857 877 893 859 879 895 863 863 897 865 867 881 899 869 867 901 883 903 871 877 905 893 885 853 887 887 873 907 857 891 889 909 891 875 879 911 895 863 895 897 881 913 899 901 867 899 883 915 903 905 917 893 919 885 887 921 887 907 889 891 923 925 891 909 911 927 895 895 929 897 913 931 899 901 899 933 903 915 935 925 909 937 905 939 917 921 919 887 921 907 941 891 943 923 911 945 927 895 927 929 913 947 931 933 899 931 915 949 935 951 925 937 939 953 917 955 919 921 957 921 941 923 943 959 945 961 927 927 963 929 947 965 931 933 931 967 935 949 969 959 943 951 951 937 971 939 973 953 975 955 921 977 957 941 945 979 961 927 961 963 947 981 965 967 931 965 949 983 969 985 959 951 987 951 971 973 989 953 991 955 975 993 957 977 979 995 961 961 997 963 981 999 965 967 965 1001 969 983 1003 1005 993 977 985 951 987 987 971 1007 1009 989 973 991 975 993 979 1011 995 961 995 997 981 1013 999 1001 965 999 983 1015 1003 1017 993 1005 1019 985 987 1021 987 1007 1023 989 1009 1025 991 993 1011 1027 995 997 995 1029 1013 1031 999 999 1033 1001 1003 1015 1035 1025 993 1017 1037 1017 1005 1019 987 1021 1021 1007 1039 1041 1023 1009 1011 1043 1027 995 1045 1029 1013 1047 1031 999 1031 1033 1035 1015 1049 1051 1025 1017 1053 1017 1037 1055 1019 1021 1039 1057 1021 1059 1023 1041 1043 1061 1027 1029 1045 1063 1047 1065 1031 1031 1067 1033 1035 1049 1069 1071 1059 1041 1051 1017 1053 1053 1037 1073 1055 1021 1057 1075 1057 1039 1043 1077 1061 1045 1079 1063 1047 1081 1065 1031 1065 1067 1069 1049 1083 1085 1059 1071 1087 1051 1053 1089 1053 1073 1091 1055 1057 1075 1093 1057 1061 1077 1095 1079 1097 1063 1081 1099 1065 1065 1101 1067 1103 1069 1083 1105 1093 1075 1107 1085 1071 1087 1053 1089 1089 1073 1109 1091 1057 1093 1077 1111 1095 1079 1095 1097 1113 1099 1081 1065 1115 1101 1103 1083 1117 1105 1119 1093 1121 1085 1107 1123 1087 1089 1125 1089 1109 1127 1091 1093 1095 1111 1129 1095 1131 1097 1133 1099 1113 1101 1115 1135 1137 1103 1117 1127 1093 1119 1139 1119 1105 1141 1121 1107 1123 1089 1125 1125 1109 1143 1111 1145 1129 1095 1129 1131 1147 1133 1113 1135 1115 1133 1137 1117 1149 1151 1127 1119 1139 1153 1119 1155 1121 1141 1157 1123 1125 1159 1125 1143 1145 1161 1129 1129 1163 1131 1165 1133 1147 1135 1133 1167 1169 1137 1149 1159 1143 1171 1153 1151 1119 1173 1153 1139 1155 1141 1175 1157 1125 1159 1145 1177 1161 1129 1161 1163 1179 1165 1147 1167 1133 1165 1169 1149 1181 1183 1159 1171 1185 1151 1153 1173 1187 1153 1189 1155 1175 1191 1157 1159 1177 1193 1161 1161 1195 1163 1197 1165 1179 1167 1165 1199 1201 1169 1181 1191 1159 1183 1183 1171 1203 1205 1185 1153 1207 1187 1173 1189 1175 1209 1177 1211 1193 1161 1193 1195 1213 1197 1179 1199 1165 1197 1201 1181 1215 1217 1191 1183 1219 1183 1203 1221 1185 1205 1207 1223 1187 1225 1189 1209 1225 1209 1227 1217 1183 1219 1219 1203 1229 1231 1221 1205 1233 1223 1207 1235 1225 1227 1217 1219 1237 1229 1239 1219 1241 1221 1231 1223 1233 1243 1233 1245 1243 1235 1227 1247 1219 1239 1237 1229 1249 1239 1251 1241 1231 1243 1245 1253 1255 1235 1247 1237 1239 1257 1249 1259 1239 1251 1261 1241 1263 1261 1251 1245 1265 1253 1255 1247 1267 1239 1269 1257 1249 1271 1259 1263 1273 1261 1253 1265 1275 1255 1267 1277 1269 1279 1257 1271 1281 1259 1271 1283 1281 1263 1285 1273 1265 1287 1275 1277 1267 1289 1269 1281 1279 1281 1283 1291 1285 1293 1273 1275 1287 1295 1277 1289 1297 1299 1279 1281 1299 1281 1291 1283 1301 1291 1285 1295 1293 1287 1303 1295 1289 1305 1297 1307 1299 1291 1309 1291 1301 1295 1311 1293 1303 1313 1295 1297 1305 1315 1305 1317 1315 1307 1291 1309 1309 1301 1319 1295 1313 1311 1321 1313 1303 1315 1317 1323 1325 1307 1309 1327 1309 1319 1313 1329 1311 1321 1331 1313 1333 1331 1321 1317 1335 1323 1325 1309 1327 1327 1319 1337 1313 1331 1329 1333 1339 1331 1323 1335 1341 1343 1325 1327 1345 1327 1337 1331 1347 1329 1331 1339 1347 1349 1339 1333 1335 1351 1341 1343 1327 1345 1345 1337 1353 1339 1355 1347 1349 1357 1339 1341 1351 1359 1361 1343 1345 1363 1345 1353 1363 1353 1365 1339 1357 1355 1367 1357 1349 1351 1369 1359 1361 1345 1363 1371 1363 1365 1355 1357 1373 1367 1375 1357 1369 1377 1359 1379 1361 1363 1379 1363 1371 1371 1365 1381 1357 1375 1373 1383 1375 1367 1369 1385 1377 1387 1379 1371 1389 1371 1381 1373 1375 1391 1383 1393 1375 1385 1395 1377 1385 1397 1395 1387 1371 1389 1389 1381 1399 1375 1393 1391 1401 1393 1383 1397 1403 1395 1405 1387 1389 1407 1389 1399 1391 1393 1409 1411 1393 1401 1411 1401 1413 1397 1415 1403 1407 1405 1389 1407 1399 1417 1393 1419 1409 1421 1411 1413 1415 1423 1403 1425 1405 1407 1427 1407 1417 1409 1419 1429 1429 1419 1421 1421 1413 1431 1415 1433 1423 1435 1425 1407 1437 1427 1417 1439 1429 1421 1441 1421 1431 1433 1443 1423 1445 1425 1435 1447 1427 1437 1449 1447 1437 1439 1421 1441 1441 1431 1451 1453 1443 1433 1445 1435 1447 1455 1447 1449 1457 1439 1441 1459 1441 1451 1461 1443 1453 1463 1445 1447 1463 1447 1455 1465 1455 1449 1457 1441 1459 1459 1451 1467 1469 1461 1453 1471 1463 1455 1473 1455 1465 1475 1457 1459 1467 1477 1459 1479 1461 1469 1481 1479 1469 1471 1455 1473 1473 1465 1483 1475 1459 1477 1485 1477 1467 1487 1479 1481 1489 1471 1473 1491 1473 1483 1493 1475 1477 1485 1495 1477 1497 1495 1485 1499 1487 1481 1489 1473 1491 1491 1483 1501 1493 1477 1495 1497 1503 1495 1505 1487 1499 1507 1489 1491 1509 1491 1501 1511 1493 1495 1511 1495 1503 1513 1503 1497 1515 1505 1499 1507 1491 1509 1509 1501 1517</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1737\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1742\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1745\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1743\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1744\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1743\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1746\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1746\">-0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6343077421188355 1.414041757583618 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1744\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1747\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1747\">0.9999999997435105 2.264904028305049e-005 -2.209455120321467e-018 0.9999999997435105 2.264904028312894e-005 -6.051660786087425e-018 0.6234634960262413 0.7818524599454407 -1.526749119931941e-019 -0.6234634960262413 -0.7818524599454407 1.526749119931941e-019 -0.9999999997435105 -2.264904028312894e-005 6.051660786087425e-018 -0.9999999997435105 -2.264904028305049e-005 2.209455120321467e-018 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234634960262414 0.7818524599454408 -1.040780674003078e-018 -0.6234634960262414 -0.7818524599454408 1.040780674003078e-018 0.6234652837365569 -0.7818510343890929 -5.707467413603938e-018 -0.6234652837365569 0.7818510343890929 5.707467413603938e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.2225354781476582 0.9749245924509203 4.145506498485379e-018 0.2225354781476582 -0.9749245924509203 -4.145506498485379e-018 0 0 1 -0 -0 -1 0.623465283736557 -0.7818510343890928 7.994120291056104e-019 -0.623465283736557 0.7818510343890928 -7.994120291056104e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225354781476585 0.9749245924509202 1.043018590684045e-018 0.2225354781476585 -0.9749245924509202 -1.043018590684045e-018 0 0 1 -0 -0 -1 -0.2225553300349599 -0.9749200608629561 -4.056770881837861e-018 0.2225553300349599 0.9749200608629561 4.056770881837861e-018 0 0 -1 -0 -0 1 -0.9009553760018496 0.4339117542235586 2.214555474022641e-018 0.9009553760018496 -0.4339117542235586 -2.214555474022641e-018 -0.2225553300349603 -0.974920060862956 8.21790817236331e-019 0.2225553300349603 0.974920060862956 -8.21790817236331e-019 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009553760018496 0.4339117542235587 0 -0.9009553760018496 -0.4339117542235587 0 0.9009553760018496 0.4339117542235587 -0 0.9009553760018496 -0.4339117542235587 -0 -0.9009553760018495 -0.4339117542235588 -2.21455547402264e-018 0.9009553760018495 0.4339117542235588 2.21455547402264e-018</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"56\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1745\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1748\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1751\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1749\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1750\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1749\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1752\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1752\">-0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6348807811737061 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6348807811737061 1.413632392883301 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6348807811737061 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6348807811737061 1.413632392883301 0.01115624234080315 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1750\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1753\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1753\">0.9999999999692774 7.838719476032881e-006 4.376233027348433e-018 0.9999999999692772 7.838719476072105e-006 4.376233027348431e-018 0.6234822154226067 0.7818375323887425 4.376154661136589e-018 -0.6234822154226067 -0.7818375323887425 -4.376154661136589e-018 -0.9999999999692772 -7.838719476072105e-006 -4.376233027348431e-018 -0.9999999999692774 -7.838719476032881e-006 -4.376233027348433e-018 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.623482215422607 0.7818375323887425 6.250799169781779e-018 -0.623482215422607 -0.7818375323887425 -6.250799169781779e-018 0.6234828356507187 -0.7818370377827716 2.022204829232494e-018 -0.6234828356507187 0.7818370377827716 -2.022204829232494e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.2225136552712602 0.9749295734656032 -2.373810475256616e-018 0.2225136552712602 -0.9749295734656032 2.373810475256616e-018 0 0 1 -0 -0 -1 0.6234828356507183 -0.7818370377827718 2.022204829232495e-018 -0.6234828356507183 0.7818370377827718 -2.022204829232495e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225136552712601 0.9749295734656031 -4.991495804369193e-019 0.2225136552712601 -0.9749295734656031 4.991495804369193e-019 0 0 1 -0 -0 -1 -0.2225315399609898 -0.9749254913697715 7.064833780320975e-018 0.2225315399609898 0.9749254913697715 -7.064833780320975e-018 0 0 -1 -0 -0 1 -0.9009673547404414 0.4338868812167653 -2.521354725908289e-018 0.9009673547404414 -0.4338868812167653 2.521354725908289e-018 -0.2225315399609899 -0.9749254913697715 7.064833780320978e-018 0.2225315399609899 0.9749254913697715 -7.064833780320978e-018 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009673547404414 0.4338868812167655 -2.521354725908289e-018 -0.9009722572624185 -0.4338767009686765 5.042591135187332e-018 0.9009722572624185 0.4338767009686765 -5.042591135187332e-018 0.9009673547404414 -0.4338868812167655 2.521354725908289e-018 -0.9009722572624185 -0.4338767009686765 5.042591135187332e-018 0.9009722572624185 0.4338767009686765 -5.042591135187332e-018</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"56\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1751\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1754\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1757\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1755\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1756\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1755\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1758\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1758\">0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6307075619697571 1.414041757583618 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1756\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1759\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1759\">0.999999999835843 1.81194371653217e-005 0 0.9999999998358429 1.811943716606694e-005 0 0.6234886533956409 0.7818323983354045 0 -0.6234886533956409 -0.7818323983354045 -0 -0.9999999998358429 -1.811943716606694e-005 -0 -0.999999999835843 -1.81194371653217e-005 -0 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234886533956403 0.7818323983354046 8.883269865254059e-019 -0.6234886533956403 -0.7818323983354046 -8.883269865254059e-019 0.6234670018001388 -0.7818496643641576 0 -0.6234670018001388 0.7818496643641576 -0 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.22253105986498 0.9749256009539236 -2.281655084337777e-018 0.22253105986498 -0.9749256009539236 2.281655084337777e-018 0 0 1 -0 -0 -1 0.6234670018001383 -0.7818496643641582 8.883738370841776e-019 -0.6234670018001383 0.7818496643641582 -8.883738370841776e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.22253105986498 0.9749256009539233 -1.393350726446899e-018 0.22253105986498 -0.9749256009539233 1.393350726446899e-018 0 0 1 -0 -0 -1 -0.2225717438300778 -0.9749163137666937 -2.281615407694076e-018 0.2225717438300778 0.9749163137666937 2.281615407694076e-018 0 0 -1 -0 -0 1 -0.9009663507201748 0.4338889660615616 -2.326067923860243e-018 0.9009663507201748 -0.4338889660615616 2.326067923860243e-018 -0.2225717438300776 -0.9749163137666936 5.25262819099682e-018 0.2225717438300776 0.9749163137666936 -5.25262819099682e-018 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009663507201748 0.4338889660615616 -2.326067923860243e-018 -0.900964579576922 -0.4338926438046397 4.652175280298288e-018 0.900964579576922 0.4338926438046397 -4.652175280298288e-018 0.9009663507201748 -0.4338889660615616 2.326067923860243e-018 -0.9009645795769223 -0.4338926438046395 -1.994027489437981e-018 0.9009645795769223 0.4338926438046395 1.994027489437981e-018</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"56\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1757\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1760\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1763\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1761\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1762\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1761\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1764\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1764\">0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.630134642124176 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.630134642124176 1.413632392883301 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.630134642124176 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.630134642124176 1.413632392883301 0.01352904364466667 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1762\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1765\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"180\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1765\">0.9999999999889406 4.703048739066014e-006 -3.194773570613557e-019 0.9999999999889407 4.703048739026789e-006 -4.377776668071451e-018 0.6234969919307719 0.7818257485228271 0 -0.6234969919307719 -0.7818257485228271 -0 -0.9999999999889407 -4.703048739026789e-006 4.377776668071451e-018 -0.9999999999889406 -4.703048739066014e-006 3.194773570613557e-019 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234969919307718 0.7818257485228271 0 -0.6234969919307718 -0.7818257485228271 -0 0.6234896527204427 -0.7818316014018247 -2.035488031807518e-018 -0.6234896527204427 0.7818316014018247 2.035488031807518e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.222513294333848 0.9749296558443067 0 0.222513294333848 -0.9749296558443067 -0 0 0 1 -0 -0 -1 0.623489652720443 -0.7818316014018245 1.476226992554694e-019 -0.623489652720443 0.7818316014018245 -1.476226992554694e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225132943338478 0.9749296558443067 0 0.2225132943338478 -0.9749296558443067 -0 0 0 1 -0 -0 -1 -0.2225325393559867 -0.9749252632524076 1.875220685418097e-018 0.2225325393559867 0.9749252632524076 -1.875220685418097e-018 0 0 -1 -0 -0 1 -0.9009683321664772 0.4338848515829476 0 0.9009683321664772 -0.4338848515829476 -0 -0.2225325393559866 -0.9749252632524076 0 0.2225325393559866 0.9749252632524076 -0 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009683321664771 0.4338848515829476 0 -0.9009707834575071 -0.4338797614039701 0 0.9009707834575071 0.4338797614039701 -0 0.9009683321664771 -0.4338848515829476 -0 -0.9009707834575071 -0.4338797614039701 0 0.9009707834575071 0.4338797614039701 -0</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"56\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1763\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1766\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1769\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1767\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1768\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1767\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1770\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1770\">-0.1994215846061707 1.409376740455627 -0.3330435454845429 -0.193339616060257 1.374477028846741 -0.3185877501964569 0.6995053887367249 1.409376740455627 -0.3330435454845429 0.6995053887367249 1.409376740455627 -0.3330435454845429 -0.193339616060257 1.374477028846741 -0.3185877501964569 -0.1994215846061707 1.409376740455627 -0.3330435454845429 0.6995053887367249 1.444277167320252 -0.3185878992080689 0.6995053887367249 1.444277167320252 -0.3185878992080689 0.6995051503181458 1.374477028846741 -0.3185877501964569 0.6995051503181458 1.374477028846741 -0.3185877501964569 -0.193339616060257 1.444277167320252 -0.3185877501964569 -0.193339616060257 1.444277167320252 -0.3185877501964569 -0.1788957566022873 1.360021471977234 -0.2836892902851105 -0.1788957566022873 1.360021471977234 -0.2836892902851105 0.7010865807533264 1.458731651306152 -0.2836892902851105 0.7010865807533264 1.458731651306152 -0.2836892902851105 0.6995053887367249 1.360021471977234 -0.2836892902851105 0.6995053887367249 1.360021471977234 -0.2836892902851105 -0.1788957566022873 1.458731651306152 -0.2836892902851105 -0.1788957566022873 1.458731651306152 -0.2836892902851105 -0.1937200576066971 1.374477028846741 -0.2487903386354446 -0.1937200576066971 1.374477028846741 -0.2487903386354446 0.7010863423347473 1.444277167320252 -0.2487903386354446 0.7010863423347473 1.444277167320252 -0.2487903386354446 0.6995053887367249 1.374477028846741 -0.2487903386354446 0.6995053887367249 1.374477028846741 -0.2487903386354446 -0.193339616060257 1.444277167320252 -0.2487903386354446 -0.193339616060257 1.444277167320252 -0.2487903386354446 -0.1994215846061707 1.409376740455627 -0.234334796667099 -0.1994215846061707 1.409376740455627 -0.234334796667099 0.6995053887367249 1.409376740455627 -0.234334796667099 0.6995053887367249 1.409376740455627 -0.234334796667099</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1768\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1771\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1771\">-8.096430529381678e-008 -3.262168771017521e-006 -0.9999999999946758 -5.358906807957343e-019 -0.6529572867494989 -0.7573947330690468 -6.454358988662185e-019 -4.612929654933531e-006 -0.9999999999893605 6.454358988662185e-019 4.612929654933531e-006 0.9999999999893605 5.358906807957343e-019 0.6529572867494989 0.7573947330690468 8.096430529381678e-008 3.262168771017521e-006 0.9999999999946758 -3.721890660944332e-008 0.710949073141372 -0.7032434965212425 3.721890660944332e-008 -0.710949073141372 0.7032434965212425 -6.754312247816869e-019 -0.707104359561471 -0.7071092028033309 6.754312247816869e-019 0.707104359561471 0.7071092028033309 -9.908881861986481e-008 0.6529616761953019 -0.7573909488634067 9.908881861986481e-008 -0.6529616761953019 0.7573909488634067 -1.33086602427526e-018 -0.9999995659069757 0.0009317649168456204 1.33086602427526e-018 0.9999995659069757 -0.0009317649168456204 -3.315459573728493e-008 0.9999843910927442 0.005587268641536886 3.315459573728493e-008 -0.9999843910927442 -0.005587268641536886 -5.804664278375616e-020 -0.9999999999986244 -1.658672334207115e-006 5.804664278375616e-020 0.9999999999986244 1.658672334207115e-006 1.492557576426979e-020 0.999999999995737 -2.919923129949256e-006 -1.492557576426979e-020 -0.999999999995737 2.919923129949256e-006 2.542821332172197e-019 -0.6527159455234829 0.7576027286509636 -2.542821332172197e-019 0.6527159455234829 -0.7576027286509636 2.088161681493532e-020 0.7110525047396676 0.7031389162202907 -2.088161681493532e-020 -0.7110525047396676 -0.7031389162202907 6.71234797742628e-019 -0.7071039303900618 0.7071096319715401 -6.71234797742628e-019 0.7071039303900618 -0.7071096319715401 -7.589358461867882e-019 0.6529607501764125 0.7573917472015763 7.589358461867882e-019 -0.6529607501764125 -0.7573917472015763 -6.588288910052687e-021 -0.001441131677589446 0.9999989615692048 6.588288910052687e-021 0.001441131677589446 -0.9999989615692048 -6.60329578561079e-019 0.005438410613650082 0.9999852117356524 6.60329578561079e-019 -0.005438410613650082 -0.9999852117356524</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 0 6 7 5 11 8 1 12 13 4 9 10 6 14 15 7 11 16 8 12 13 9 17 18 10 14 15 11 19 16 12 20 21 13 17 18 14 22 23 15 19 24 16 20 21 17 25 26 18 22 23 19 27 20 28 24 25 29 21 30 26 22 23 27 31 24 28 30 31 29 25 28 26 30 31 27 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1769\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1772\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1775\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1773\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1774\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1773\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1776\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1776\">-0.6978123784065247 1.409376740455627 -0.3330435454845429 -0.1487381309270859 1.374477028846741 -0.3185877501964569 -0.1426564902067184 1.409376740455627 -0.3330435454845429 -0.1426564902067184 1.409376740455627 -0.3330435454845429 -0.1487381309270859 1.374477028846741 -0.3185877501964569 -0.6978123784065247 1.409376740455627 -0.3330435454845429 -0.6978123784065247 1.374477028846741 -0.3185877501964569 -0.6978123784065247 1.374477028846741 -0.3185877501964569 -0.6965032815933228 1.444277167320252 -0.3185878992080689 -0.6965032815933228 1.444277167320252 -0.3185878992080689 -0.1631820350885391 1.360021471977234 -0.2836892902851105 -0.1631820350885391 1.360021471977234 -0.2836892902851105 -0.1487381309270859 1.444277167320252 -0.3185877501964569 -0.1487381309270859 1.444277167320252 -0.3185877501964569 -0.6978123784065247 1.360021471977234 -0.2836892902851105 -0.6978123784065247 1.360021471977234 -0.2836892902851105 -0.6980850100517273 1.458731651306152 -0.2836892902851105 -0.6980850100517273 1.458731651306152 -0.2836892902851105 -0.148358017206192 1.374477028846741 -0.2487903386354446 -0.148358017206192 1.374477028846741 -0.2487903386354446 -0.1631820350885391 1.458731651306152 -0.2836892902851105 -0.1631820350885391 1.458731651306152 -0.2836892902851105 -0.6978126168251038 1.374477028846741 -0.2487903386354446 -0.6978126168251038 1.374477028846741 -0.2487903386354446 -0.6958645582199097 1.444277167320252 -0.2487903386354446 -0.6958645582199097 1.444277167320252 -0.2487903386354446 -0.1426564902067184 1.409376740455627 -0.234334796667099 -0.1426564902067184 1.409376740455627 -0.234334796667099 -0.1487381309270859 1.444277167320252 -0.2487903386354446 -0.1487381309270859 1.444277167320252 -0.2487903386354446 -0.6978123784065247 1.409376740455627 -0.234334796667099 -0.6978123784065247 1.409376740455627 -0.234334796667099</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1774\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1777\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1777\">0 -0.004623503802832999 -0.999989311549171 1.416990788477893e-018 -0.6529578956657299 -0.7573942081160786 1.294541359425236e-007 -3.2886846322709e-006 -0.9999999999945839 -1.294541359425236e-007 3.2886846322709e-006 0.9999999999945839 -1.416990788477893e-018 0.6529578956657299 0.7573942081160786 -0 0.004623503802832999 0.999989311549171 1.8206542497657e-018 -0.7071043595420349 -0.7071092028227668 -1.8206542497657e-018 0.7071043595420349 0.7071092028227668 6.222058690068734e-008 0.7077661876840558 -0.7064467591907929 -6.222058690068734e-008 -0.7077661876840558 0.7064467591907929 3.55867895444724e-018 -0.9999995666540326 0.0009309628065998062 -3.55867895444724e-018 0.9999995666540326 -0.0009309628065998062 1.625244536583127e-007 0.6529623179344262 -0.7573903956069651 -1.625244536583127e-007 -0.6529623179344262 0.7573903956069651 1.904648892250437e-018 -0.9999999999986244 -1.658685686398783e-006 -1.904648892250437e-018 0.9999999999986244 1.658685686398783e-006 5.410515884143392e-008 0.9999973576755113 -0.002298834920714152 -5.410515884143392e-008 -0.9999973576755113 0.002298834920714152 1.407486538539841e-018 -0.6527167650363455 0.7576020225952993 -1.407486538539841e-018 0.6527167650363455 -0.7576020225952993 0 0.999999999995737 -2.919923890702951e-006 -0 -0.999999999995737 2.919923890702951e-006 0 -0.7071039303792133 0.7071096319823883 -0 0.7071039303792133 -0.7071096319823883 0 0.7077587064059777 0.7064542543622602 -0 -0.7077587064059777 -0.7064542543622602 -1.686404762606598e-018 -0.001439890283937835 0.9999989633574479 1.686404762606598e-018 0.001439890283937835 -0.9999989633574479 -1.910403059081659e-018 0.6529613591191861 0.7573912222208713 1.910403059081659e-018 -0.6529613591191861 -0.7573912222208713 -7.52346634838247e-020 -0.006909725138064178 0.9999761275643115 7.52346634838247e-020 0.006909725138064178 -0.9999761275643115</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 1 6 10 11 7 4 12 8 2 3 9 13 10 6 14 15 7 11 8 12 16 17 13 9 10 14 18 19 15 11 16 12 20 21 13 17 18 14 22 23 15 19 16 20 24 25 21 17 18 22 26 27 23 19 24 20 28 29 21 25 22 30 26 27 31 23 30 24 28 29 25 31 30 28 26 27 29 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1775\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1778\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1781\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1779\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1780\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1779\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"104\" source=\"#ID1782\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"312\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1782\">0.0416390672326088 -0.9620028138160706 -0.3203812837600708 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 -0.001550662331283093 -0.9620028138160706 -0.3203812837600708 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 -0.001550662331283093 -0.9620028138160706 -0.3203812837600708 0.05974317342042923 -1.127685785293579 -0.254153698682785 0.05974317342042923 -1.127685785293579 -0.254153698682785 0.05999584496021271 -1.127685785293579 -0.3760610222816467 0.05999584496021271 -1.127685785293579 -0.3760610222816467 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.08528012782335281 -1.201554536819458 -0.3151014745235443 0.08528012782335281 -1.201554536819458 -0.3151014745235443 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 0.0599658340215683 -1.201554536819458 -0.3762143552303314 0.0599658340215683 -1.201554536819458 -0.3762143552303314 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 0.05996581166982651 -1.201554536819458 -0.2539876401424408 0.05996581166982651 -1.201554536819458 -0.2539876401424408 -0.001166453585028648 -1.127685785293579 -0.2285331338644028 -0.001166453585028648 -1.127685785293579 -0.2285331338644028 -0.0011480413377285 -1.201554536819458 -0.4015282690525055 -0.0011480413377285 -1.201554536819458 -0.4015282690525055 -0.001084049232304096 -1.127685785293579 -0.4012084305286408 -0.001084049232304096 -1.127685785293579 -0.4012084305286408 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.0599658340215683 -1.260503172874451 -0.3762143552303314 0.0599658340215683 -1.260503172874451 -0.3762143552303314 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.06201579421758652 -1.127685785293579 -0.2540891170501709 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.06201579421758652 -1.127685785293579 -0.2540891170501709 -0.06228426843881607 -1.127685785293579 -0.3760357797145844 -0.06228426843881607 -1.127685785293579 -0.3760357797145844 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 0.05996581166982651 -1.255197525024414 -0.2539876401424408 0.05996581166982651 -1.255197525024414 -0.2539876401424408 -0.0011480413377285 -1.201554536819458 -0.2286733090877533 -0.0011480413377285 -1.201554536819458 -0.2286733090877533 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.3762143552303314 -0.08734796196222305 -1.127685785293579 -0.3150011897087097 -0.08734796196222305 -1.127685785293579 -0.3150011897087097 0.08528012782335281 -1.272850155830383 -0.3151014745235443 -0.0011480413377285 -1.272850155830383 -0.3151014745235443 0.05996581166982651 -1.255197525024414 -0.2539876401424408 0.05996581166982651 -1.255197525024414 -0.2539876401424408 -0.0011480413377285 -1.272850155830383 -0.3151014745235443 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.0599658340215683 -1.260503172874451 -0.3762143552303314 0.0599658340215683 -1.260503172874451 -0.3762143552303314 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.2539876401424408 -0.06226229667663574 -1.201554536819458 -0.2539876401424408 -0.08757650107145309 -1.201554536819458 -0.3151014745235443 -0.08757650107145309 -1.201554536819458 -0.3151014745235443 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1780\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"104\" source=\"#ID1783\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"312\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1783\">0.9588055248038134 0.2673775352725806 -0.09592298596918099 0.9927188762608409 0.1204370590336892 0.002036547747779517 0.7267388695696598 0.2673148040119704 0.6327664743115384 -0.7267388695696598 -0.2673148040119704 -0.6327664743115384 -0.9927188762608409 -0.1204370590336892 -0.002036547747779517 -0.9588055248038134 -0.2673775352725806 0.09592298596918099 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0.7014198014966242 0.1227309440114259 0.7021021132645168 -0.7014198014966242 -0.1227309440114259 -0.7021021132645168 0.7021847014273169 0.1188769731776902 -0.7020006483825644 -0.7021847014273169 -0.1188769731776902 0.7020006483825644 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.9999979850203875 1.252127069247626e-005 0.002007435773011593 -0.9999979850203875 -1.252127069247626e-005 -0.002007435773011593 -0.02735841910897286 0.2599523734912984 0.965233795730391 0.02735841910897286 -0.2599523734912984 -0.965233795730391 0.7069516630176301 1.861547685198636e-017 -0.7072618653346207 -0.7069516630176301 -1.861547685198636e-017 0.7072618653346207 0.6128719715456383 0.2606762782951462 -0.7459462610858466 -0.6128719715456383 -0.2606762782951462 0.7459462610858466 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.7071967559861893 4.940692391890928e-005 0.7070167932104344 -0.7071967559861893 -4.940692391890928e-005 -0.7070167932104344 -0.002129131927144091 0.127389319086275 0.9918505069716767 0.002129131927144091 -0.127389319086275 -0.9918505069716767 -0.0001044805771491545 1.056216625318663e-017 -0.9999999945419046 0.0001044805771491545 -1.056216625318663e-017 0.9999999945419046 -0.0007385280053009249 0.1199347071867176 -0.9927815069734235 0.0007385280053009249 -0.1199347071867176 0.9927815069734235 0 1 0 -0 -1 -0 -0.7317481826565028 0.245393817043592 0.6358667090952959 0.7317481826565028 -0.245393817043592 -0.6358667090952959 -0.01585223753510582 0.24114725236149 -0.9703590620196394 0.01585223753510582 -0.24114725236149 0.9703590620196394 0 1 0 -0 -1 -0 0.9999950606089046 -0.0001299568922094801 -0.003140361284808484 0.9999403015474239 -0.0002181347411306611 -0.01092454843376879 -0.9999950606089046 0.0001299568922094801 0.003140361284808484 -0.9999403015474239 0.0002181347411306611 0.01092454843376879 0.7303355718171639 -0.0001769559157017471 -0.6830885163908848 -0.7303355718171639 0.0001769559157017471 0.6830885163908848 0.0001564439772790366 1.585409395917139e-017 -0.9999999877626409 -0.0001564439772790366 -1.585409395917139e-017 0.9999999877626409 -0.7007551070965294 0.1294143228606862 0.7015655442769705 -0.9685914825527583 0.2389457120624006 -0.06881487203535318 0.9685914825527583 -0.2389457120624006 0.06881487203535318 0.7007551070965294 -0.1294143228606862 -0.7015655442769705 -0.7025685150389799 0.1222251163648164 -0.7010410134974484 0.7025685150389799 -0.1222251163648164 0.7010410134974484 -0.6354681256002953 0.2306381677411489 -0.736876039050703 0.6354681256002953 -0.2306381677411489 0.736876039050703 0.7389951719709527 0 0.6737107211582891 -0.7389951719709527 -0 -0.6737107211582891 3.151945290005802e-005 0 0.9999999995032621 -3.151945290005802e-005 -0 -0.9999999995032621 -0.7297614892512843 0 -0.6837018127851847 0.7297614892512843 -0 0.6837018127851847 -0.7064864909428557 -0.0005189046843104191 -0.7077263375438129 0.7064864909428557 0.0005189046843104191 0.7077263375438129 -0.9921320911846666 0.1251728336561139 0.002382300577020578 0.9921320911846666 -0.1251728336561139 -0.002382300577020578 2.783101748555154e-018 -0.9991332874558135 0.04162539967061679 -0.001976815644048048 -0.999186020482851 0.04029129771493174 0.001227976782420993 -0.9610505558098917 0.276369899320675 -0.001227976782420993 0.9610505558098917 -0.276369899320675 0.001976815644048048 0.999186020482851 -0.04029129771493174 -2.783101748555154e-018 0.9991332874558135 -0.04162539967061679 -0.0003929350606584693 -0.9801186500829385 -0.1984118881560179 0.0003929350606584693 0.9801186500829385 0.1984118881560179 -0.0006595177768321808 -0.9800442170581398 -0.198778514048173 0.0006595177768321808 0.9800442170581398 0.198778514048173 -0.003153641731496768 -0.9805446087454121 -0.1962710493275461 0.003153641731496768 0.9805446087454121 0.1962710493275461 -0.7072261597750277 1.014303739521108e-017 0.7069873824403566 0.7072261597750277 -1.014303739521108e-017 -0.7069873824403566 -0.999998337373055 -0.001428955693152681 0.00113284454026866 0.999998337373055 0.001428955693152681 -0.00113284454026866 -0.001177557507855119 -0.9613578838764064 0.2752991690270668 0.001177557507855119 0.9613578838764064 -0.2752991690270668 0.0002775081825241019 0 0.9999999614946036 -0.0002775081825241019 -0 -0.9999999614946036 -0.005946185829815228 -0.9990893998823336 0.04224942504739838 0.005946185829815228 0.9990893998823336 -0.04224942504739838 -0.999931651654992 -0.002552479234430599 -0.01140950780173313 0.999931651654992 0.002552479234430599 0.01140950780173313 -0.9999837153562079 -0.003484709543799063 -0.004519493532456611 0.9999837153562079 0.003484709543799063 0.004519493532456611 -0.00521796392204423 -0.9614714839872087 0.2748551588235937 0.00521796392204423 0.9614714839872087 -0.2748551588235937 -0.7381117946964493 -0.0008439160915865995 0.6746778982118927 0.7381117946964493 0.0008439160915865995 -0.6746778982118927</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"136\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 6 8 16 17 9 11 6 18 7 10 19 11 1 20 12 13 21 4 22 2 12 13 3 23 14 24 1 4 25 15 26 14 0 5 15 27 28 6 16 17 11 29 30 18 6 11 19 31 20 32 12 13 33 21 24 20 1 4 21 25 34 22 12 13 23 35 36 24 14 15 25 37 26 38 14 15 39 27 40 6 28 29 11 41 42 22 34 35 23 43 44 38 26 27 39 45 46 30 6 11 31 47 20 48 32 49 32 48 50 33 51 33 50 21 34 12 32 33 13 35 24 52 20 21 53 25 36 54 24 25 55 37 38 36 14 15 37 39 40 46 6 11 47 41 42 56 57 58 59 43 56 42 34 35 43 59 44 60 38 39 61 45 62 60 44 45 61 63 49 64 32 33 65 51 20 52 48 49 48 52 53 50 51 50 53 21 66 34 32 33 35 67 24 54 52 53 55 25 36 68 54 55 69 37 70 36 38 39 37 71 57 72 62 63 73 58 56 72 57 58 73 59 56 34 66 67 35 59 60 70 38 39 71 61 72 60 62 63 61 73 74 75 76 77 78 79 64 66 32 33 67 65 74 80 75 78 81 79 80 82 75 78 83 81 82 84 75 78 85 83 70 68 36 37 69 71 56 86 72 73 87 59 86 56 66 67 59 87 88 70 60 61 71 89 72 88 60 61 89 73 76 75 90 91 78 77 92 66 64 65 67 93 75 84 94 95 85 78 96 68 70 71 69 97 86 88 72 73 89 87 92 86 66 67 87 93 88 98 70 96 70 98 99 71 97 71 99 89 75 100 90 91 101 78 75 94 100 101 95 78 86 102 88 89 103 87 102 86 92 93 87 103 88 102 98 96 98 102 103 99 97 99 103 89</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1781\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1784\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1787\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1785\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1786\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1785\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1788\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1788\">0.07268758118152618 -1.139533400535584 -0.3458027541637421 0.06737570464611054 -1.170013546943665 -0.3584281504154205 0.5328076481819153 -1.170013546943665 -0.3584281504154205 0.5328076481819153 -1.170013546943665 -0.3584281504154205 0.06737570464611054 -1.170013546943665 -0.3584281504154205 0.07268758118152618 -1.139533400535584 -0.3458027541637421 0.5328074097633362 -1.139533400535584 -0.3458027541637421 0.5328074097633362 -1.139533400535584 -0.3458027541637421 0.5328076481819153 -1.200496077537537 -0.3458027541637421 0.5328076481819153 -1.200496077537537 -0.3458027541637421 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.07268758118152618 -1.200496077537537 -0.3458027541637421 0.07268758118152618 -1.200496077537537 -0.3458027541637421 0.5328076481819153 -1.126907825469971 -0.3153224587440491 0.5328076481819153 -1.126907825469971 -0.3153224587440491 0.534188449382782 -1.213120579719544 -0.3153224587440491 0.534188449382782 -1.213120579719544 -0.3153224587440491 0.07235550135374069 -1.139533400535584 -0.2848415970802307 0.07235550135374069 -1.139533400535584 -0.2848415970802307 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.5328076481819153 -1.139533400535584 -0.2848415970802307 0.5328076481819153 -1.139533400535584 -0.2848415970802307 0.5341882705688477 -1.200496077537537 -0.2848415970802307 0.5341882705688477 -1.200496077537537 -0.2848415970802307 0.06737570464611054 -1.170013546943665 -0.272216260433197 0.06737570464611054 -1.170013546943665 -0.272216260433197 0.07268758118152618 -1.200496077537537 -0.2848415970802307 0.07268758118152618 -1.200496077537537 -0.2848415970802307 0.5328076481819153 -1.170013546943665 -0.272216260433197 0.5328076481819153 -1.170013546943665 -0.272216260433197</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1786\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1789\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1789\">-4.800243990006268e-018 0.6532257470633736 -0.7571632078842036 -3.15653781780934e-018 1.228913601519482e-005 -0.9999999999244885 1.397492513338611e-018 1.287400279910259e-005 -0.99999999991713 -1.397492513338611e-018 -1.287400279910259e-005 0.99999999991713 3.15653781780934e-018 -1.228913601519482e-005 0.9999999999244885 4.800243990006268e-018 -0.6532257470633736 0.7571632078842036 3.166570582828221e-018 0.7071056219034221 -0.7071079404677721 -3.166570582828221e-018 -0.7071056219034221 0.7071079404677721 0 -0.7109447180994457 -0.7032478992549495 -0 0.7109447180994457 0.7032478992549495 1.946404600427405e-018 0.9999984994589262 0.001732362518675635 -1.946404600427405e-018 -0.9999984994589262 -0.001732362518675635 -2.614800096576075e-018 -0.6529553154274723 -0.7573964325602611 2.614800096576075e-018 0.6529553154274723 0.7573964325602611 1.860628050482077e-018 0.999999984286978 -0.0001772739229532261 -1.860628050482077e-018 -0.999999984286978 0.0001772739229532261 -1.875828047693226e-018 -0.9999844037696157 0.005584999330916269 1.875828047693226e-018 0.9999844037696157 -0.005584999330916269 2.620721983057941e-018 0.65220608506156 0.7580417024205681 -2.620721983057941e-018 -0.65220608506156 -0.7580417024205681 -5.00221309808669e-018 -0.9999999999925899 -3.849693032704404e-006 5.00221309808669e-018 0.9999999999925899 3.849693032704404e-006 1.507180131247409e-018 0.7071073539430651 0.7071062084295658 -1.507180131247409e-018 -0.7071073539430651 -0.7071062084295658 -1.715282097682279e-018 -0.7110494810907638 0.7031419738861814 1.715282097682279e-018 0.7110494810907638 -0.7031419738861814 7.88705997477675e-020 0.001449403516777924 0.999998949614171 -7.88705997477675e-020 -0.001449403516777924 -0.999998949614171 -1.314688606444315e-018 -0.6529571740461475 0.7573948302316759 1.314688606444315e-018 0.6529571740461475 -0.7573948302316759 1.557517845199634e-018 -0.005427442056589383 0.9999852713278943 -1.557517845199634e-018 0.005427442056589383 -0.9999852713278943</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 2 1 8 9 4 3 0 6 10 11 7 5 1 12 8 9 13 4 6 14 10 11 15 7 8 12 16 17 13 9 10 14 18 19 15 11 16 12 20 21 13 17 18 14 22 23 15 19 16 20 24 25 21 17 26 18 22 23 19 27 24 20 28 29 21 25 30 26 22 23 27 31 28 30 24 25 31 29 28 26 30 31 27 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1787\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1790\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1793\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1791\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1792\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1791\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1794\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1794\">-0.0755949392914772 -1.139533400535584 -0.3458027541637421 -0.556448757648468 -1.170013546943665 -0.3584281504154205 -0.07028322666883469 -1.170013546943665 -0.3584281504154205 -0.07028322666883469 -1.170013546943665 -0.3584281504154205 -0.556448757648468 -1.170013546943665 -0.3584281504154205 -0.0755949392914772 -1.139533400535584 -0.3458027541637421 -0.5553047060966492 -1.200496077537537 -0.3458027541637421 -0.5553047060966492 -1.200496077537537 -0.3458027541637421 -0.556448757648468 -1.139533400535584 -0.3458027541637421 -0.556448757648468 -1.139533400535584 -0.3458027541637421 -0.0755949392914772 -1.200496077537537 -0.3458027541637421 -0.0755949392914772 -1.200496077537537 -0.3458027541637421 -0.08821037411689758 -1.126907825469971 -0.3153224587440491 -0.08821037411689758 -1.126907825469971 -0.3153224587440491 -0.5566866397857666 -1.213120579719544 -0.3153224587440491 -0.5566866397857666 -1.213120579719544 -0.3153224587440491 -0.556448757648468 -1.126907825469971 -0.3153224587440491 -0.556448757648468 -1.126907825469971 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.07526279240846634 -1.139533400535584 -0.2848415970802307 -0.07526279240846634 -1.139533400535584 -0.2848415970802307 -0.5547472238540649 -1.200496077537537 -0.2848415970802307 -0.5547472238540649 -1.200496077537537 -0.2848415970802307 -0.5564488768577576 -1.139533400535584 -0.2848415970802307 -0.5564488768577576 -1.139533400535584 -0.2848415970802307 -0.0755949392914772 -1.200496077537537 -0.2848415970802307 -0.0755949392914772 -1.200496077537537 -0.2848415970802307 -0.07028322666883469 -1.170013546943665 -0.272216260433197 -0.07028322666883469 -1.170013546943665 -0.272216260433197 -0.556448757648468 -1.170013546943665 -0.272216260433197 -0.556448757648468 -1.170013546943665 -0.272216260433197</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1792\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1795\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1795\">3.128676832243398e-018 0.6529590142748708 -0.7573932437493676 -2.732303166435686e-018 0.00463460391985898 -0.999989260165581 2.893044017440788e-018 1.228918634285302e-005 -0.9999999999244879 -2.893044017440788e-018 -1.228918634285302e-005 0.9999999999244879 2.732303166435686e-018 -0.00463460391985898 0.999989260165581 -3.128676832243398e-018 -0.6529590142748708 0.7573932437493676 0 -0.7077617258416615 -0.7064512293383264 -0 0.7077617258416615 0.7064512293383264 -4.446897604623978e-018 0.7071056219076308 -0.7071079404635636 4.446897604623978e-018 -0.7071056219076308 0.7071079404635636 0 -0.6529557627629424 -0.7573960469098476 -0 0.6529557627629424 0.7573960469098476 -3.182260625065258e-018 0.9999995671155167 0.0009304669684801947 3.182260625065258e-018 -0.9999995671155167 -0.0009304669684801947 1.549129489225603e-018 -0.9999973578805378 -0.002298745732710514 -1.549129489225603e-018 0.9999973578805378 0.002298745732710514 -1.695318849550394e-018 0.9999999999960586 -2.807632896495617e-006 1.695318849550394e-018 -0.9999999999960586 2.807632896495617e-006 5.680541635093363e-020 -0.9999999999925899 -3.849692841830614e-006 -5.680541635093363e-020 0.9999999999925899 3.849692841830614e-006 -2.405777604426924e-018 0.6527205424928446 0.7575987680875982 2.405777604426924e-018 -0.6527205424928446 -0.7575987680875982 7.907717898537523e-021 -0.7077556757223815 0.7064572906289207 -7.907717898537523e-021 0.7077556757223815 -0.7064572906289207 0 0.7071073539507441 0.7071062084218869 -0 -0.7071073539507441 -0.7071062084218869 3.196556846155714e-018 -0.6529576213860789 0.7573944445755024 -3.196556846155714e-018 0.6529576213860789 -0.7573944445755024 2.882604743371304e-018 0.001449690439264127 0.9999989491982629 -2.882604743371304e-018 -0.001449690439264127 -0.9999989491982629 -1.269824525755839e-018 0.006920767023478588 0.999976051205131 1.269824525755839e-018 -0.006920767023478588 -0.999976051205131</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"32\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 8 1 0 5 4 9 6 10 2 3 11 7 8 0 12 13 5 9 10 6 14 15 7 11 16 8 12 13 9 17 18 10 14 15 11 19 16 12 20 21 13 17 18 14 22 23 15 19 24 16 20 21 17 25 26 18 22 23 19 27 24 20 28 29 21 25 22 30 26 27 31 23 30 24 28 29 25 31 26 30 28 29 31 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1793\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1796\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1799\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1797\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1798\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1797\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"140\" source=\"#ID1800\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"420\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1800\">0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1798\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"140\" source=\"#ID1801\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"420\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1801\">-0.9999999710445691 -0.0001104833632839914 0.0002137856110456591 -0.9999999700643614 -7.663589426042924e-005 0.0002323751623919958 -0.9999999802680193 -8.573050672086329e-005 0.0001792044679426364 0.9999999802680193 8.573050672086329e-005 -0.0001792044679426364 0.9999999700643614 7.663589426042924e-005 -0.0002323751623919958 0.9999999710445691 0.0001104833632839914 -0.0002137856110456591 0.004961922813059091 -0.7979285849641429 -0.6027315759267288 -0.0001763919522577015 -0.7969131936155863 -0.6040938095422647 0.03049636748995247 -0.9865933133747843 -0.160323440501015 -0.03049636748995247 0.9865933133747843 0.160323440501015 0.0001763919522577015 0.7969131936155863 0.6040938095422647 -0.004961922813059091 0.7979285849641429 0.6027315759267288 -0.9999999695818748 -0.0001704942869253314 0.0001782356517235991 0.9999999695818748 0.0001704942869253314 -0.0001782356517235991 -0.0003464089528092289 -0.1304839459037725 -0.9914503617742135 -0.0003356659977346473 -0.1305078226455562 -0.991447222779233 0.0003356659977346473 0.1305078226455562 0.991447222779233 0.0003464089528092289 0.1304839459037725 0.9914503617742135 0.03947983509217013 -0.9868227730252783 -0.1569144902798821 -0.03947983509217013 0.9868227730252783 0.1569144902798821 -0.04410908481141456 0.8317655093958543 0.5533719599117346 0.00972661921211627 0.8422186636899086 0.5390483423692974 -0.03041555429328463 0.8346805984310199 0.5498938012560851 0.03041555429328463 -0.8346805984310199 -0.5498938012560851 -0.00972661921211627 -0.8422186636899086 -0.5390483423692974 0.04410908481141456 -0.8317655093958543 -0.5533719599117346 -0.9999998385693959 -0.0001250412032718077 0.0005542796040042547 0.9999998385693959 0.0001250412032718077 -0.0005542796040042547 -0.0003673869990641776 0.3426475969726668 -0.939463937208688 0.0003673869990641776 -0.3426475969726668 0.939463937208688 0.9999999781995033 4.699620345741876e-005 -0.0002034511002851032 0.9999999794693828 7.698928926646006e-005 -0.0001874403455906109 0.9999999855371815 6.872156045996573e-005 -0.0001555730832890062 -0.9999999855371815 -6.872156045996573e-005 0.0001555730832890062 -0.9999999794693828 -7.698928926646006e-005 0.0001874403455906109 -0.9999999781995033 -4.699620345741876e-005 0.0002034511002851032 0.02360047584532965 0.8444748722209845 0.5350749552419978 -0.02360047584532965 -0.8444748722209845 -0.5350749552419978 -0.9999997268103815 -4.676815955930713e-005 0.0007376936366238248 0.9999997268103815 4.676815955930713e-005 -0.0007376936366238248 0.001908403844572751 0.3420016409162702 -0.939697417047288 -0.001908403844572751 -0.3420016409162702 0.939697417047288 0.9999999777905969 0.0001522573889000832 -0.0001457274619571062 0.9999998982721315 9.728089302000219e-005 -0.0004404454047939104 -0.9999998982721315 -9.728089302000219e-005 0.0004404454047939104 -0.9999999777905969 -0.0001522573889000832 0.0001457274619571062 -0.008392300707209957 -0.1223304537586148 0.9924539431994067 -0.0009271782674676281 -0.3551960317513965 0.9347913774573027 -0.005955223996627054 -0.1212198217342457 0.9926078229219573 0.005955223996627054 0.1212198217342457 -0.9926078229219573 0.0009271782674676281 0.3551960317513965 -0.9347913774573027 0.008392300707209957 0.1223304537586148 -0.9924539431994067 -0.9999999647802734 -5.986156320317399e-005 0.0002585653599272689 0.9999999647802734 5.986156320317399e-005 -0.0002585653599272689 0.02138638165005725 0.5168164865779673 -0.855829037764625 -0.02138638165005725 -0.5168164865779673 0.855829037764625 0.9999998319739059 4.59237093275836e-005 -0.0005778781644368841 -0.9999998319739059 -4.59237093275836e-005 0.0005778781644368841 0.0003049958327635592 -0.3546827300580774 0.9349866672718339 -0.0003049958327635592 0.3546827300580774 -0.9349866672718339 -0.9999999738512297 -2.953591568042569e-005 0.0002267711839617163 0.9999999738512297 2.953591568042569e-005 -0.0002267711839617163 0.02250528561464173 0.5156341578366951 -0.8565132383048412 -0.02250528561464173 -0.5156341578366951 0.8565132383048412 0.9999999405841482 9.905564214886539e-005 -0.0003301812833618662 -0.9999999405841482 -9.905564214886539e-005 0.0003301812833618662 0.0002835536457019438 -0.534567467405807 0.845125755369384 -0.0002835536457019438 0.534567467405807 -0.845125755369384 -0.9999999421572299 -0.0001359886900621858 0.0003117572988199132 0.9999999421572299 0.0001359886900621858 -0.0003117572988199132 0.00088649570702846 0.2602505468779262 -0.9655407122307697 -0.00088649570702846 -0.2602505468779262 0.9655407122307697 0.9999999476742829 8.742145870394942e-005 -0.0003114625499332963 -0.9999999476742829 -8.742145870394942e-005 0.0003114625499332963 0.0002751967351688296 -0.5345688612684229 0.8451248764702993 -0.0002751967351688296 0.5345688612684229 -0.8451248764702993 0.0002284427270975212 -0.337955662273133 0.9411620042008967 -0.0002284427270975212 0.337955662273133 -0.9411620042008967 -0.9999999344292633 -0.000156901232732886 0.0003263793381189007 0.9999999344292633 0.000156901232732886 -0.0003263793381189007 -0.0003169333868864173 0.2604400519765147 -0.9654899682957348 0.0003169333868864173 -0.2604400519765147 0.9654899682957348 0.9999999114917834 0.0001894836831243463 -0.0003756492506452966 0.9999999038277406 0.0002058925015349785 -0.0003872373785017013 -0.9999999038277406 -0.0002058925015349785 0.0003872373785017013 -0.9999999114917834 -0.0001894836831243463 0.0003756492506452966 0.000222128065331292 -0.3379435563570671 0.9411663526581582 -0.000222128065331292 0.3379435563570671 -0.9411663526581582 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.000297981301382343 0.2505951925739997 -0.9680919174675223 0.000297981301382343 -0.2505951925739997 0.9680919174675223 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.0002747071523925597 -0.2217236845486482 0.9751094975674023 -0.0002747071523925597 0.2217236845486482 -0.9751094975674023 -0.9999996997481733 4.424631410726776e-005 0.0007736574350763412 -0.9999996243670856 6.513592050351822e-005 0.0008643049230435587 -0.9999999477055301 -8.378372903372794e-005 0.0003123607271175583 0.9999999477055301 8.378372903372794e-005 -0.0003123607271175583 0.9999996243670856 -6.513592050351822e-005 -0.0008643049230435587 0.9999996997481733 -4.424631410726776e-005 -0.0007736574350763412 -0.0003063365191113349 0.2505969935595491 -0.9680914486642531 0.0003063365191113349 -0.2505969935595491 0.9680914486642531 0.9999995691084593 -7.809505908810414e-005 -0.0009250319224987596 0.9999996638854315 -5.346291194945224e-005 -0.0008181508057818759 0.9999999657621683 6.410373996497947e-005 -0.0002537052871345287 -0.9999999657621683 -6.410373996497947e-005 0.0002537052871345287 -0.9999996638854315 5.346291194945224e-005 0.0008181508057818759 -0.9999995691084593 7.809505908810414e-005 0.0009250319224987596 0.0002833451553801525 -0.2217220549394402 0.9751098656402543 -0.0002833451553801525 0.2217220549394402 -0.9751098656402543 -0.9999999418829865 -0.0001503792467214633 0.000305974028555818 0.9999999418829865 0.0001503792467214633 -0.000305974028555818 -0.0003202536291034038 0.5310569474512576 -0.8473360702822497 0.0003202536291034038 -0.5310569474512576 0.8473360702822497 0.9999999820584712 4.249982566400346e-005 -0.000184599085539308 -0.9999999820584712 -4.249982566400346e-005 0.000184599085539308 0.0003009137736632499 -0.06276316217133647 0.9980284038669217 -0.0003009137736632499 0.06276316217133647 -0.9980284038669217 -0.999999931634918 -0.0001789863694918537 0.0003235645826783615 0.999999931634918 0.0001789863694918537 -0.0003235645826783615 -0.0003366867603659674 0.5310630500708145 -0.8473322391432472 0.0003366867603659674 -0.5310630500708145 0.8473322391432472 0.9999999844430778 2.601700140070584e-005 -0.000174461915128319 -0.9999999844430778 -2.601700140070584e-005 0.000174461915128319 0.0003135305943188504 -0.06272726288933955 0.9980306569384418 -0.0003135305943188504 0.06272726288933955 -0.9980306569384418 0.0002752074406906135 0.1530052876970384 0.988225331691923 -0.0002752074406906135 -0.1530052876970384 -0.988225331691923 0.0002878377690457768 0.1530166634393099 0.9882235667394902 -0.0002878377690457768 -0.1530166634393099 -0.9882235667394902</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"104\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 14 7 15 16 10 17 6 8 18 19 9 11 15 7 6 11 10 16 20 21 22 23 24 25 12 2 26 27 3 13 28 14 15 16 17 29 30 31 32 33 34 35 21 36 22 23 37 24 38 12 26 27 13 39 40 14 28 29 17 41 32 42 43 44 45 33 31 42 32 33 45 34 46 47 48 49 50 51 38 26 52 53 27 39 40 28 54 55 29 41 42 56 43 44 57 45 48 47 58 59 50 49 60 38 52 53 39 61 62 40 54 55 41 63 43 56 64 65 57 44 47 66 58 59 67 50 60 52 68 69 53 61 62 54 70 71 55 63 56 72 64 65 73 57 58 66 74 75 67 59 66 76 74 75 77 67 68 52 78 79 53 69 80 62 70 71 63 81 64 82 83 84 85 65 64 72 82 85 73 65 74 76 86 87 77 75 88 89 90 91 92 93 80 70 94 95 71 81 96 97 98 99 100 101 76 102 86 87 103 77 104 105 106 107 108 109 110 80 94 95 81 111 112 113 114 115 116 117 86 102 118 119 103 87 104 106 120 121 107 109 110 94 122 123 95 111 114 113 124 125 116 115 102 126 118 119 127 103 120 106 128 129 107 121 130 110 122 123 111 131 114 124 132 133 125 115 126 134 118 119 135 127 126 136 134 135 137 127 136 138 134 135 139 137</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1799\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1802\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1805\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1803\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1804\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1803\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"140\" source=\"#ID1806\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"420\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1806\">-0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1804\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"140\" source=\"#ID1807\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"420\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1807\">-0.9999999796474213 -7.372837380031436e-005 0.0001878011821307511 -0.9999999794114374 -6.685496042745983e-005 0.0001915921166301781 -0.9999999814053816 -6.625935140178148e-005 0.0001811047625334675 0.9999999814053816 6.625935140178148e-005 -0.0001811047625334675 0.9999999794114374 6.685496042745983e-005 -0.0001915921166301781 0.9999999796474213 7.372837380031436e-005 -0.0001878011821307511 0.004952013066311905 -0.796870136383622 -0.6041303363567656 -0.0001945461549902302 -0.7958507196312642 -0.6054928523229591 0.03051534998570993 -0.9863101208755875 -0.162052950832849 -0.03051534998570993 0.9863101208755875 0.162052950832849 0.0001945461549902302 0.7958507196312642 0.6054928523229591 -0.004952013066311905 0.796870136383622 0.6041303363567656 -0.9999999775545849 -8.380028082577559e-005 0.0001945978994759896 0.9999999775545849 8.380028082577559e-005 -0.0001945978994759896 -0.0003263719987045853 -0.1287268519209083 -0.9916800346260133 -0.0003127148091308122 -0.1287912989425779 -0.9916716712330405 0.0003127148091308122 0.1287912989425779 0.9916716712330405 0.0003263719987045853 0.1287268519209083 0.9916800346260133 0.03951270650674746 -0.9865457996395824 -0.158638366223334 -0.03951270650674746 0.9865457996395824 0.158638366223334 -0.04412298859978101 0.8307933462406718 0.5548293230528203 0.009702529785641144 0.8412708268827518 0.5405268325918423 -0.03043120518351949 0.8337144134479427 0.5513567071871268 0.03043120518351949 -0.8337144134479427 -0.5513567071871268 -0.009702529785641144 -0.8412708268827518 -0.5405268325918423 0.04412298859978101 -0.8307933462406718 -0.5548293230528203 -0.9999998879205081 -0.0001067768407130082 0.0004612566285053172 0.9999998879205081 0.0001067768407130082 -0.0004612566285053172 -0.0003259821602667881 0.3442855023723608 -0.9388649458744545 0.0003259821602667881 -0.3442855023723608 0.9388649458744545 0.9999999796040053 8.467560949920889e-005 -0.0001833631096726923 0.9999999796560025 8.967387180890078e-005 -0.0001806836774636798 0.9999999816423528 6.897477977519543e-005 -0.0001787673738543972 -0.9999999816423528 -6.897477977519543e-005 0.0001787673738543972 -0.9999999796560025 -8.967387180890078e-005 0.0001806836774636798 -0.9999999796040053 -8.467560949920889e-005 0.0001833631096726923 0.023576545125666 0.8435343970522004 0.5365574223787406 -0.023576545125666 -0.8435343970522004 -0.5365574223787406 -0.9999998253700634 -5.479900386395953e-005 0.0005884359877822771 0.9999998253700634 5.479900386395953e-005 -0.0005884359877822771 0.001943192923113494 0.3436563931974262 -0.9390934497779226 -0.001943192923113494 -0.3436563931974262 0.9390934497779226 0.9999999774256322 9.036082572671157e-005 -0.0001923113531821971 0.9999998844095683 0.0001075835678604766 -0.000468622050062329 -0.9999998844095683 -0.0001075835678604766 0.000468622050062329 -0.9999999774256322 -9.036082572671157e-005 0.0001923113531821971 -0.008396031932909377 -0.1240281200667111 0.9922431819269403 -0.001015849563375322 -0.3568515298151736 0.9341605609948617 -0.005979590096272994 -0.1229270838485122 0.9923976907262438 0.005979590096272994 0.1229270838485122 -0.9923976907262438 0.001015849563375322 0.3568515298151736 -0.9341605609948617 0.008396031932909377 0.1240281200667111 -0.9922431819269403 -0.9999999543077748 -7.676893325396516e-005 0.0002923884051408668 0.9999999543077748 7.676893325396516e-005 -0.0002923884051408668 0.02139729440545909 0.5182176088367644 -0.8549810908339625 -0.02139729440545909 -0.5182176088367644 0.8549810908339625 0.9999998149178142 5.103504527862209e-005 -0.0006062670709983245 -0.9999998149178142 -5.103504527862209e-005 0.0006062670709983245 0.0002154623307682091 -0.3563155275693334 0.9343656663153733 -0.0002154623307682091 0.3563155275693334 -0.9343656663153733 -0.9999999638778768 -4.413850467589816e-005 0.0002651339993739532 0.9999999638778768 4.413850467589816e-005 -0.0002651339993739532 0.02251288538210824 0.5170403867847911 -0.8556648925982681 -0.02251288538210824 -0.5170403867847911 0.8556648925982681 0.9999999568998583 7.114767680534288e-005 -0.000284847836186255 -0.9999999568998583 -7.114767680534288e-005 0.000284847836186255 0.0002932292485633025 -0.536041123254263 0.8441918195510521 -0.0002932292485633025 0.536041123254263 -0.8441918195510521 -0.9999999118959498 -0.0001881429300790426 0.0003752470261725238 0.9999999118959498 0.0001881429300790426 -0.0003752470261725238 0.0009032151263764276 0.2618195655509092 -0.9651164174840093 -0.0009032151263764276 -0.2618195655509092 0.9651164174840093 0.9999999668096723 3.431042508831439e-005 -0.0002553496607921055 -0.9999999668096723 -3.431042508831439e-005 0.0002553496607921055 0.0002960012507453714 -0.5360422065958079 0.8441911306873324 -0.0002960012507453714 0.5360422065958079 -0.8441911306873324 0.0002720308578548875 -0.3395970168755311 0.9405709926042013 -0.0002720308578548875 0.3395970168755311 -0.9405709926042013 -0.9999998990046093 -0.0002155761766725763 0.0003943573040884083 0.9999998990046093 0.0002155761766725763 -0.0003943573040884083 -0.0002998260502447587 0.2620009282912986 -0.9650675746696897 0.0002998260502447587 -0.2620009282912986 0.9650675746696897 0.9999999102642094 0.0001904143557393747 -0.0003784361855243776 0.9999998959825797 0.0002202313195086972 -0.0003994158180963879 -0.9999998959825797 -0.0002202313195086972 0.0003994158180963879 -0.9999999102642094 -0.0001904143557393747 0.0003784361855243776 0.0002659471541952785 -0.3395951480894923 0.9405716690748168 -0.0002659471541952785 0.3395951480894923 -0.9405716690748168 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.0002934433779523444 0.2522218127606528 -0.9676694017373464 0.0002934433779523444 -0.2522218127606528 0.9676694017373464 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.0002920699888821517 -0.2234143247973296 0.9747235270426559 -0.0002920699888821517 0.2234143247973296 -0.9747235270426559 -0.9999997276497483 4.385392790234016e-005 0.0007367341868116179 -0.9999996583977281 6.382463746765831e-005 0.0008240939525973544 -0.9999999589200279 -5.960901760188783e-005 0.0002803688776326599 0.9999999589200279 5.960901760188783e-005 -0.0002803688776326599 0.9999996583977281 -6.382463746765831e-005 -0.0008240939525973544 0.9999997276497483 -4.385392790234016e-005 -0.0007367341868116179 -0.0003043815696399995 0.2522203005924734 -0.9676697925020199 0.0003043815696399995 -0.2522203005924734 0.9676697925020199 0.9999995691343151 -6.720279912305352e-005 -0.0009258590432243916 0.999999655350043 -4.506394947157887e-005 -0.0008290169092028616 0.9999999456349861 6.865112386163782e-005 -0.000322516740449088 -0.9999999456349861 -6.865112386163782e-005 0.000322516740449088 -0.999999655350043 4.506394947157887e-005 0.0008290169092028616 -0.9999995691343151 6.720279912305352e-005 0.0009258590432243916 0.0002943637441851266 -0.223413529751691 0.9747237085830406 -0.0002943637441851266 0.223413529751691 -0.9747237085830406 -0.9999999692246961 -6.646992415419717e-005 0.0002390237561556552 0.9999999692246961 6.646992415419717e-005 -0.0002390237561556552 -0.0003262085661851687 0.5324510706906751 -0.8464607202394717 0.0003262085661851687 -0.5324510706906751 0.8464607202394717 0.9999999595324278 7.331680825462007e-005 -0.0002748814082542198 -0.9999999595324278 -7.331680825462007e-005 0.0002748814082542198 0.0002994691661593511 -0.06449091226997794 0.997918249433692 -0.0002994691661593511 0.06449091226997794 -0.997918249433692 -0.9999999694663382 -6.533110756353835e-005 0.0002383257626904562 0.9999999694663382 6.533110756353835e-005 -0.0002383257626904562 -0.0003465867334712809 0.5324586302942831 -0.8464559568594058 0.0003465867334712809 -0.5324586302942831 0.8464559568594058 0.9999999601888447 7.058082113336549e-005 -0.0002732044230723244 -0.9999999601888447 -7.058082113336549e-005 0.0002732044230723244 0.0003177401799641748 -0.06447600574064884 0.997919207012727 -0.0003177401799641748 0.06447600574064884 -0.997919207012727 0.000319944634965314 0.1512712693546003 0.9884922360359129 -0.000319944634965314 -0.1512712693546003 -0.9884922360359129 0.0003531671350192214 0.1513012009785921 0.9884876437545442 -0.0003531671350192214 -0.1513012009785921 -0.9884876437545442</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"104\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 14 7 15 16 10 17 6 8 18 19 9 11 15 7 6 11 10 16 20 21 22 23 24 25 12 2 26 27 3 13 28 14 15 16 17 29 30 31 32 33 34 35 21 36 22 23 37 24 38 12 26 27 13 39 40 14 28 29 17 41 32 42 43 44 45 33 31 42 32 33 45 34 46 47 48 49 50 51 38 26 52 53 27 39 40 28 54 55 29 41 42 56 43 44 57 45 48 47 58 59 50 49 60 38 52 53 39 61 62 40 54 55 41 63 43 56 64 65 57 44 47 66 58 59 67 50 60 52 68 69 53 61 62 54 70 71 55 63 56 72 64 65 73 57 58 66 74 75 67 59 66 76 74 75 77 67 68 52 78 79 53 69 80 62 70 71 63 81 64 82 83 84 85 65 64 72 82 85 73 65 74 76 86 87 77 75 88 89 90 91 92 93 80 70 94 95 71 81 96 97 98 99 100 101 76 102 86 87 103 77 104 105 106 107 108 109 110 80 94 95 81 111 112 113 114 115 116 117 86 102 118 119 103 87 104 106 120 121 107 109 110 94 122 123 95 111 114 113 124 125 116 115 102 126 118 119 127 103 120 106 128 129 107 121 130 110 122 123 111 131 114 124 132 133 125 115 118 126 134 135 127 119 126 136 134 135 137 127 136 138 134 135 139 137</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1805\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1808\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1811\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1809\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1810\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1809\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1812\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1812\">-0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1810\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1813\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"300\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1813\">-0.999999984411443 3.080246314798667e-005 0.0001738629406479815 -0.9999999823747726 3.054551147014028e-005 0.0001852496326182806 -0.9999999829039918 3.417859454922746e-005 0.0001817246268044369 0.9999999829039918 -3.417859454922746e-005 -0.0001817246268044369 0.9999999823747726 -3.054551147014028e-005 -0.0001852496326182806 0.999999984411443 -3.080246314798667e-005 -0.0001738629406479815 -1.769463302100483e-005 0.68708007618282 -0.7265817012556195 0.007141960610142448 0.6885656521728911 -0.7251388384622385 0.04815605561094433 0.9347644673763428 -0.3519891828431915 -0.04815605561094433 -0.9347644673763428 0.3519891828431915 -0.007141960610142448 -0.6885656521728911 0.7251388384622385 1.769463302100483e-005 -0.68708007618282 0.7265817012556195 -0.0002616104941960659 0.1282516270709203 -0.9917416254819653 -0.0002578241739765837 0.1282135302883974 -0.9917465523901162 0.0002578241739765837 -0.1282135302883974 0.9917465523901162 0.0002616104941960659 -0.1282516270709203 0.9917416254819653 -0.9999999828490539 4.21748978558922e-005 0.0001803418140285232 0.9999999828490539 -4.21748978558922e-005 -0.0001803418140285232 0.06106622712373427 0.9356753701782472 -0.347537792976063 -0.06106622712373427 -0.9356753701782472 0.347537792976063 -0.0003717950278579427 -0.1797419237099666 -0.9837137300198152 0.0003717950278579427 0.1797419237099666 0.9837137300198152 -0.9999998988493954 4.503593342057304e-005 0.0004475186744983042 0.9999998988493954 -4.503593342057304e-005 -0.0004475186744983042 0.003688797389667888 -0.3374031293935553 0.9413530267913594 -0.05461194083058513 -0.658038213705086 0.7510014948204405 -0.04202449406539048 -0.6607579488210175 0.7494216936867983 0.04202449406539048 0.6607579488210175 -0.7494216936867983 0.05461194083058513 0.658038213705086 -0.7510014948204405 -0.003688797389667888 0.3374031293935553 -0.9413530267913594 0.999999983663352 -4.17648800326373e-005 -0.0001758664004577456 0.9999999846999328 -3.155013974575054e-005 -0.0001720602310259234 0.999999983985305 -4.439629059590873e-005 -0.0001733734677599167 -0.999999983985305 4.439629059590873e-005 0.0001733734677599167 -0.9999999846999328 3.155013974575054e-005 0.0001720602310259234 -0.999999983663352 4.17648800326373e-005 0.0001758664004577456 0.9999998958878661 -4.558295482759263e-005 -0.0004540335354482252 0.9999999832112049 -4.683516868800383e-005 -0.0001771554595090167 -0.9999999832112049 4.683516868800383e-005 0.0001771554595090167 -0.9999998958878661 4.558295482759263e-005 0.0004540335354482252 0.00144405316009299 -0.1793549727249666 -0.9837833646028464 -0.00144405316009299 0.1793549727249666 0.9837833646028464 -0.9999998195145633 -2.455150091527985e-006 0.0006008034730474542 0.9999998195145633 2.455150091527985e-006 -0.0006008034730474542 0.01266054751111889 -0.3617188438700049 0.9322012596677101 -0.01266054751111889 0.3617188438700049 -0.9322012596677101 0.9999998074597568 6.109781507060899e-006 -0.000620518428385647 -0.9999998074597568 -6.109781507060899e-006 0.000620518428385647 0.0269870394274772 -0.2306017678121405 -0.9726739044432391 -0.0269870394274772 0.2306017678121405 0.9726739044432391 -0.999999963093016 1.797775736911185e-005 0.0002710918056143681 0.999999963093016 -1.797775736911185e-005 -0.0002710918056143681 0.9999999649068889 -1.437273717084181e-005 -0.0002645366617785483 -0.9999999649068889 1.437273717084181e-005 0.0002645366617785483 0.02771718101855024 -0.2312164877542377 -0.9725074260215083 -0.02771718101855024 0.2312164877542377 0.9725074260215083 -0.9999999664707235 1.5466008783727e-005 0.0002584943998064539 0.9999999664707235 -1.5466008783727e-005 -0.0002584943998064539 0.9999999689300021 -1.08382129044566e-005 -0.0002490432252599668 -0.9999999689300021 1.08382129044566e-005 0.0002490432252599668 0.0007309652795617584 -0.1440840201039932 -0.9895651877670476 -0.0007309652795617584 0.1440840201039932 0.9895651877670476 -0.9999999607022785 2.060547431277325e-005 0.0002795905151389421 0.9999999607022785 -2.060547431277325e-005 -0.0002795905151389421 0.9999999601351655 -2.072338356797332e-005 -0.0002816029281138686 -0.9999999601351655 2.072338356797332e-005 0.0002816029281138686 0.9999999506935324 -2.16022513446366e-005 -0.0003132830601111448 -0.9999999506935324 2.16022513446366e-005 0.0003132830601111448 -0.000339041137228352 -0.1442078179617186 -0.9895473663700121 0.000339041137228352 0.1442078179617186 0.9895473663700121 -0.9999999558190014 2.135714131397518e-005 0.0002964892372467364 0.9999999558190014 -2.135714131397518e-005 -0.0002964892372467364 0.9999999449633971 -2.495140936292704e-005 -0.0003308332364104989 -0.9999999449633971 2.495140936292704e-005 0.0003308332364104989 -0.0001499912736990772 0.3702509537358272 -0.9289317567832032 0.0001499912736990772 -0.3702509537358272 0.9289317567832032 -0.9999999562731093 2.02279099250094e-005 0.0002950332374563406 0.9999999562731093 -2.02279099250094e-005 -0.0002950332374563406 0.9999999675719412 5.01596575947656e-005 -0.0002496800460373278 0.9999999449833134 -2.541309867504692e-005 -0.0003307378790345847 -0.9999999449833134 2.541309867504692e-005 0.0003307378790345847 -0.9999999675719412 -5.01596575947656e-005 0.0002496800460373278 -0.0001644005810996404 0.3700142651591096 -0.9290260580582297 0.0001644005810996404 -0.3700142651591096 0.9290260580582297 -0.9999999563847567 2.019219442861884e-005 0.0002946570214695821 -0.9999999756782813 -4.311763024688826e-005 0.0002162968025300171 0.9999999756782813 4.311763024688826e-005 -0.0002162968025300171 0.9999999563847567 -2.019219442861884e-005 -0.0002946570214695821 0.9999999787959655 0.0001109095879281376 -0.0001735140691197846 -0.9999999787959655 -0.0001109095879281376 0.0001735140691197846 -0.0001242106906019887 0.7647709191762052 -0.6443022782468542 0.0001242106906019887 -0.7647709191762052 0.6443022782468542 -0.9999999841897669 -9.517416516503213e-005 0.0001502076704646804 0.9999999841897669 9.517416516503213e-005 -0.0001502076704646804 0.9999999805261771 0.0001738433233134982 -9.341383556635226e-005 -0.9999999805261771 -0.0001738433233134982 9.341383556635226e-005 -0.0001507559291783691 0.7647673683511757 -0.6443064873007778 0.0001507559291783691 -0.7647673683511757 0.6443064873007778 -0.9999999855523141 -0.0001492205700541566 8.14161725338505e-005 0.9999999855523141 0.0001492205700541566 -8.14161725338505e-005</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"80\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 6 12 13 14 15 11 16 0 2 3 5 17 8 7 18 19 10 9 6 13 7 10 14 11 12 20 13 14 21 15 22 0 16 17 5 23 24 25 26 27 28 29 30 31 32 33 34 35 31 36 37 38 39 34 12 40 20 21 41 15 42 22 16 17 23 43 44 24 26 27 29 45 31 37 32 33 38 34 36 46 37 38 47 39 20 40 48 49 41 21 50 22 42 43 23 51 36 52 46 47 53 39 40 54 48 49 55 41 56 50 42 43 51 57 52 58 46 47 59 53 48 54 60 61 55 49 62 50 56 57 51 63 52 64 58 59 65 53 66 64 52 53 65 67 54 68 60 61 69 55 62 70 50 51 71 63 66 72 64 65 73 67 60 68 74 75 69 61 76 70 62 63 71 77 78 79 66 67 80 81 68 82 74 75 83 69 84 85 70 71 86 87 78 88 72 73 89 81 90 74 82 83 75 91 92 85 76 77 86 93 94 88 78 81 89 95 96 90 82 83 91 97 92 98 85 86 99 93</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1811\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1814\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1817\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1815\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1816\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1815\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID1818\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"102\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1818\">-0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1816\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID1819\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"102\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1819\">-0.0004538475399847224 0.1966213553393696 0.9804793912402851 0.003688797389667888 -0.3374031293935553 0.9413530267913594 0.01266054751111889 -0.3617188438700049 0.9322012596677101 -0.01266054751111889 0.3617188438700049 -0.9322012596677101 -0.003688797389667888 0.3374031293935553 -0.9413530267913594 0.0004538475399847224 -0.1966213553393696 -0.9804793912402851 0.0003336166368011087 0.1964552482294163 0.9805127353293572 -0.0003336166368011087 -0.1964552482294163 -0.9805127353293572 0.0003352725620566191 0.3318817225163497 0.9433209474255778 -0.0003352725620566191 -0.3318817225163497 -0.9433209474255778 0.0003284351731852359 0.3318825095467581 0.9433206729353932 -0.0003284351731852359 -0.3318825095467581 -0.9433206729353932 0.0002910058735337027 0.1928548670595222 0.9812272497067311 -0.0002910058735337027 -0.1928548670595222 -0.9812272497067311 0.0002860690277062792 0.1928586257396166 0.9812265124028894 -0.0002860690277062792 -0.1928586257396166 -0.9812265124028894 0.000310031474760802 0.07588661516819907 0.9971164051999135 -0.000310031474760802 -0.07588661516819907 -0.9971164051999135 0.0003107550880094139 0.07588637661018609 0.9971164231303444 -0.0003107550880094139 -0.07588637661018609 -0.9971164231303444 0.0003132233325970984 0.06673756753526176 0.9977705141818034 -0.0003132233325970984 -0.06673756753526176 -0.9977705141818034 0.000313622874468566 0.06673748783363555 0.9977705193872728 0.000313622874468566 0.06673748783363555 0.9977705193872728 -0.000313622874468566 -0.06673748783363555 -0.9977705193872728 -0.000313622874468566 -0.06673748783363555 -0.9977705193872728 -9.50595624338689e-005 -0.932277960717291 0.3617427192418518 1.239626849636202e-005 -0.9322856835495533 0.3617228277215512 -0.0001129214045189766 -0.9322766759051838 0.3617460252883749 0.0001129214045189766 0.9322766759051838 -0.3617460252883749 -1.239626849636202e-005 0.9322856835495533 -0.3617228277215512 9.50595624338689e-005 0.932277960717291 -0.3617427192418518 3.02581460467479e-005 -0.9322869661950879 0.3617195208268472 -3.02581460467479e-005 0.9322869661950879 -0.3617195208268472</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 0 2 6 8 0 6 8 6 10 12 8 10 12 10 14 16 12 14 16 14 18 20 16 18 22 23 18 26 27 28 32 27 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1817\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 7 3 5 7 5 9 11 7 9 11 9 13 15 11 13 15 13 17 19 15 17 19 17 21 19 24 25 29 30 31 31 30 33</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1817\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1820\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1823\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1821\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1822\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1821\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"104\" source=\"#ID1824\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"312\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1824\">0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.555822491645813 1.421113967895508 -0.3582329750061035 0.555822491645813 1.421113967895508 -0.3582329750061035 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.555822491645813 1.421113967895508 -0.3582329750061035 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555822491645813 1.421113967895508 -0.3582329750061035 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.555831253528595 1.172155499458313 -0.3127322494983673 0.555831253528595 1.172155499458313 -0.3127322494983673 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.555831253528595 1.172155499458313 -0.3127322494983673 0.555831253528595 1.172155499458313 -0.3127322494983673 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299354195594788 0.6068390607833862 -0.3397958278656006</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1822\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"104\" source=\"#ID1825\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"312\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1825\">-0.9999999848904151 3.528278127642576e-005 0.0001702183750348007 -0.9999999821275435 4.077827133365155e-005 0.0001846132324601768 -0.9999999828207767 4.598721379066316e-005 0.0001795650924393674 0.9999999828207767 -4.598721379066316e-005 -0.0001795650924393674 0.9999999821275435 -4.077827133365155e-005 -0.0001846132324601768 0.9999999848904151 -3.528278127642576e-005 -0.0001702183750348007 -0.0001570206413457278 0.6874668076573934 -0.7262157831621885 0.007030060403267907 0.6890189558672211 -0.7247092221756054 0.04815427865322053 0.9349903218087026 -0.351389048735795 -0.04815427865322053 -0.9349903218087026 0.351389048735795 -0.007030060403267907 -0.6890189558672211 0.7247092221756054 0.0001570206413457278 -0.6874668076573934 0.7262157831621885 -0.0003006440224052878 0.1288144224115145 -0.9916686715793536 -0.0003007162018480404 0.1287931075008599 -0.9916714400596791 0.0003007162018480404 -0.1287931075008599 0.9916714400596791 0.0003006440224052878 -0.1288144224115145 0.9916686715793536 -0.9999999832730073 5.485520590614737e-005 0.000174484646019524 0.9999999832730073 -5.485520590614737e-005 -0.000174484646019524 0.06111545261249659 0.9359016075152975 -0.3469194178800774 -0.06111545261249659 -0.9359016075152975 0.3469194178800774 -0.000347024791685719 -0.1791548186261827 -0.9838208325385338 0.000347024791685719 0.1791548186261827 0.9838208325385338 -0.9999998851838614 4.645765363971029e-005 0.0004769422924880472 0.9999998851838614 -4.645765363971029e-005 -0.0004769422924880472 0.003744679559962774 -0.3379545967345152 0.9411549648814507 -0.05464788827610732 -0.6584735395667153 0.7506172166939976 -0.04204452399270275 -0.6611961254129715 0.7490340057307822 0.04204452399270275 0.6611961254129715 -0.7490340057307822 0.05464788827610732 0.6584735395667153 -0.7506172166939976 -0.003744679559962774 0.3379545967345152 -0.9411549648814507 0.9999999821001934 -3.099181584322151e-005 -0.0001866524055217305 0.9999999871170857 -3.304050953679614e-005 -0.0001570800856432446 0.9999999834183203 -4.065045476826068e-005 -0.0001775130975463934 -0.9999999834183203 4.065045476826068e-005 0.0001775130975463934 -0.9999999871170857 3.304050953679614e-005 0.0001570800856432446 -0.9999999821001934 3.099181584322151e-005 0.0001866524055217305 0.9999999066122413 -4.146598711928248e-005 -0.0004301814508853706 0.9999999864921676 -7.054760133948506e-005 -0.0001484543718766534 -0.9999999864921676 7.054760133948506e-005 0.0001484543718766534 -0.9999999066122413 4.146598711928248e-005 0.0004301814508853706 0.001461077543801844 -0.1787827834529962 -0.98388748421413 -0.001461077543801844 0.1787827834529962 0.98388748421413 -0.9999997899934668 -6.887446674136239e-006 0.0006480475176959769 0.9999997899934668 6.887446674136239e-006 -0.0006480475176959769 0.01272641420307216 -0.3622788561835054 0.9319828693403665 -0.01272641420307216 0.3622788561835054 -0.9319828693403665 0.9999998255747505 7.504722018172481e-006 -0.0005905879676731446 -0.9999998255747505 -7.504722018172481e-006 0.0005905879676731446 0.02687724453678354 -0.2300407755504435 -0.9728097734450761 -0.02687724453678354 0.2300407755504435 0.9728097734450761 -0.9999999628618436 1.707942303663736e-005 0.0002720011119534417 0.9999999628618436 -1.707942303663736e-005 -0.0002720011119534417 0.9999999625126778 -1.855958253013337e-005 -0.0002731852579091885 -0.9999999625126778 1.855958253013337e-005 0.0002731852579091885 0.02759868326011885 -0.2306650373348312 -0.9726417394054341 -0.02759868326011885 0.2306650373348312 0.9726417394054341 -0.9999999667524542 1.376135579283297e-005 0.0002574989626878153 0.9999999667524542 -1.376135579283297e-005 -0.0002574989626878153 0.9999999654584074 -1.64977949172472e-005 -0.000262318521738804 -0.9999999654584074 1.64977949172472e-005 0.000262318521738804 0.0006684749033927384 -0.1435045057193308 -0.989649437922113 -0.0006684749033927384 0.1435045057193308 0.989649437922113 -0.9999999599982802 2.18659309668192e-005 0.0002820023393009842 0.9999999599982802 -2.18659309668192e-005 -0.0002820023393009842 0.9999999604701944 -2.058008749922922e-005 -0.0002804212366822801 -0.9999999604701944 2.058008749922922e-005 0.0002804212366822801 0.9999999523663518 -1.982392295917662e-005 -0.0003080167310226706 -0.9999999523663518 1.982392295917662e-005 0.0003080167310226706 -0.0003975532815431017 -0.1436292508536076 -0.9896314870953833 0.0003975532815431017 0.1436292508536076 0.9896314870953833 -0.9999999522757483 2.199274651290159e-005 0.0003081636260085259 0.9999999522757483 -2.199274651290159e-005 -0.0003081636260085259 0.9999999468635423 -2.330866435320481e-005 -0.0003251609124248027 -0.9999999468635423 2.330866435320481e-005 0.0003251609124248027 -0.0002588876947958197 0.3705342992523084 -0.9288187476869545 0.0002588876947958197 -0.3705342992523084 0.9288187476869545 -0.9999999528133073 2.047393718783433e-005 0.000306519495778921 0.9999999528133073 -2.047393718783433e-005 -0.000306519495778921 0.9999999691223772 4.803574051412936e-005 -0.0002438192210273459 0.9999999467611762 -2.370677477091507e-005 -0.0003254468214559952 -0.9999999467611762 2.370677477091507e-005 0.0003254468214559952 -0.9999999691223772 -4.803574051412936e-005 0.0002438192210273459 -0.0002554135440773512 0.3704180693355161 -0.9288651078997802 0.0002554135440773512 -0.3704180693355161 0.9288651078997802 -0.9999999529147998 2.039539899707468e-005 0.0003061934457488081 -0.9999999739713007 -4.46492633153544e-005 0.0002237495055216183 0.9999999739713007 4.46492633153544e-005 -0.0002237495055216183 0.9999999529147998 -2.039539899707468e-005 -0.0003061934457488081 0.999999979842059 0.0001062569116814978 -0.0001703682780391255 -0.999999979842059 -0.0001062569116814978 0.0001703682780391255 -0.0001347276003381009 0.7648908936276634 -0.6441598425033559 0.0001347276003381009 -0.7648908936276634 0.6441598425033559 -0.9999999830989202 -9.836897367025223e-005 0.0001553245127247652 -0.9999999527965546 2.032403094106207e-005 0.0003065841196284575 0.9999999527965546 -2.032403094106207e-005 -0.0003065841196284575 0.9999999830989202 9.836897367025223e-005 -0.0001553245127247652 0.9999999817559017 0.0001665683458724161 -9.350498646018241e-005 -0.9999999817559017 -0.0001665683458724161 9.350498646018241e-005 -0.0001339321159678741 0.7648909999718571 -0.6441597163935671 -0.0001339321159678741 0.7648909999718571 -0.6441597163935671 0.0001339321159678741 -0.7648909999718571 0.6441597163935671 0.0001339321159678741 -0.7648909999718571 0.6441597163935671 -0.9999999845720291 -0.0001541243402943206 8.427116555330488e-005 0.9999999845720291 0.0001541243402943206 -8.427116555330488e-005</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"80\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 6 12 13 14 15 11 16 0 2 3 5 17 8 7 18 19 10 9 6 13 7 10 14 11 12 20 13 14 21 15 22 0 16 17 5 23 24 25 26 27 28 29 30 31 32 33 34 35 31 36 37 38 39 34 12 40 20 21 41 15 42 22 16 17 23 43 44 24 26 27 29 45 31 37 32 33 38 34 36 46 37 38 47 39 20 40 48 49 41 21 50 22 42 43 23 51 36 52 46 47 53 39 40 54 48 49 55 41 56 50 42 43 51 57 52 58 46 47 59 53 48 54 60 61 55 49 62 50 56 57 51 63 52 64 58 59 65 53 66 64 52 53 65 67 54 68 60 61 69 55 62 70 50 51 71 63 66 72 64 65 73 67 60 68 74 75 69 61 76 70 62 63 71 77 78 79 66 67 80 81 68 82 74 75 83 69 84 85 70 71 86 87 78 88 72 73 89 81 90 74 82 83 75 91 92 85 93 94 86 95 96 88 78 81 89 97 98 99 82 83 100 101 92 102 85 86 103 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1823\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1826\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1829\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1827\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1828\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1827\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1830\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1830\">0.5299191474914551 1.336438298225403 -0.337350994348526 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1828\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1831\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"96\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1831\">-0.0004200498066727247 0.1960606869999712 0.9805916737211566 0.003744679559962774 -0.3379545967345152 0.9411549648814507 0.01272641420307216 -0.3622788561835054 0.9319828693403665 -0.01272641420307216 0.3622788561835054 -0.9319828693403665 -0.003744679559962774 0.3379545967345152 -0.9411549648814507 0.0004200498066727247 -0.1960606869999712 -0.9805916737211566 0.0003692586280801227 0.195873020390035 0.9806291977762801 -0.0003692586280801227 -0.195873020390035 -0.9806291977762801 0.0003828121807958291 0.331324506299434 0.9435167857437781 -0.0003828121807958291 -0.331324506299434 -0.9435167857437781 0.0003733136420398944 0.3313237310209041 0.9435170617955525 -0.0003733136420398944 -0.3313237310209041 -0.9435170617955525 0.0002729107498873451 0.1922976988738959 0.9813365989952312 -0.0002729107498873451 -0.1922976988738959 -0.9813365989952312 0.0002652170170330006 0.1922754556501566 0.981340959511249 -0.0002652170170330006 -0.1922754556501566 -0.981340959511249 0.0003329080878166919 0.0752994296670667 0.9971609123225897 -0.0003329080878166919 -0.0752994296670667 -0.9971609123225897 0.000334031071719432 0.0752984514242747 0.9971609858174103 -0.000334031071719432 -0.0752984514242747 -0.9971609858174103 0.000318167767874384 0.06614990713798376 0.9978096454509285 -0.000318167767874384 -0.06614990713798376 -0.9978096454509285 0.0003158363779133048 0.06615037220994488 0.9978096153594974 -0.0003158363779133048 -0.06615037220994488 -0.9978096153594974 -1.105960625052409e-005 -0.9323222872788488 0.361628473050479 1.388113031852923e-006 -0.9323231810389382 0.3616261689860238 -1.312822105434077e-005 -0.9323221387354551 0.3616288559440424 1.312822105434077e-005 0.9323221387354551 -0.3616288559440424 -1.388113031852923e-006 0.9323231810389382 -0.3616261689860238 1.105960625052409e-005 0.9323222872788488 -0.361628473050479 3.456675991517009e-006 -0.93232332954951 0.3616257860907698 -3.456675991517009e-006 0.93232332954951 -0.3616257860907698</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 0 2 6 8 0 6 8 6 10 12 8 10 12 10 14 16 12 14 16 14 18 20 16 18 22 20 18 24 25 26 30 25 24</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1829\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 7 3 5 7 5 9 11 7 9 11 9 13 15 11 13 15 13 17 19 15 17 19 17 21 19 21 23 27 28 29 29 28 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1829\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1832\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1835\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1833\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1834\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1833\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1836\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1836\">0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 -0.002306933514773846 -0.9634888768196106 -0.3111290037631989 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 -0.002306933514773846 -0.9634888768196106 -0.3111290037631989 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 -0.005092551000416279 -0.0468074306845665 -0.3878971040248871 -0.005092551000416279 -0.0468074306845665 -0.3878971040248871 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1834\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1837\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"174\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1837\">0.8471696031554058 0.04689773012802803 0.5292487755284382 0.4401502978273895 0.07678570680066062 0.8946349370293916 0.8592402655707703 0.04433593462399087 0.5096474182441124 -0.8592402655707703 -0.04433593462399087 -0.5096474182441124 -0.4401502978273895 -0.07678570680066062 -0.8946349370293916 -0.8471696031554058 -0.04689773012802803 -0.5292487755284382 0.02213461350851198 -0.9838296001132999 -0.1777340058225582 0.02214728878768746 -0.9838135953026865 -0.1778209979078871 0.02212201164671536 -0.9827055370523353 -0.1838489707542149 -0.02212201164671536 0.9827055370523353 0.1838489707542149 -0.02214728878768746 0.9838135953026865 0.1778209979078871 -0.02213461350851198 0.9838296001132999 0.1777340058225582 0.8581777584640484 -0.0400658295849563 -0.511786737007995 0.8557850237502858 -0.04058963644497733 -0.5157368268196364 0.4572619699902916 -0.07040587592748571 -0.8865407511420336 -0.4572619699902916 0.07040587592748571 0.8865407511420336 -0.8557850237502858 0.04058963644497733 0.5157368268196364 -0.8581777584640484 0.0400658295849563 0.511786737007995 0.5333584259121058 0.07204941364349686 0.8428153246721306 -0.5333584259121058 -0.07204941364349686 -0.8428153246721306 0.02213103454147481 -0.9827021412438243 -0.1838660352129422 -0.02213103454147481 0.9827021412438243 0.1838660352129422 0.02216710073291421 -0.9848868105875184 -0.1717748234632854 -0.02216710073291421 0.9848868105875184 0.1717748234632854 -0.02205767583973393 0.9816602697034845 0.1893583212384166 -0.02208675936962806 0.9816633185654566 0.1893391244397288 -0.0220711862311958 0.981660700387417 0.1893545142140372 0.0220711862311958 -0.981660700387417 -0.1893545142140372 0.02208675936962806 -0.9816633185654566 -0.1893391244397288 0.02205767583973393 -0.9816602697034845 -0.1893583212384166 0.5203171375320179 -0.06743066470191132 -0.8513067495611353 -0.5203171375320179 0.06743066470191132 0.8513067495611353 -0.02208499222937724 0.9816640967406718 0.189335295939636 0.02208499222937724 -0.9816640967406718 -0.189335295939636 -0.4744560974523423 0.07357336721613098 0.8771991628055591 0.4744560974523423 -0.07357336721613098 -0.8771991628055591 0.02215434434420591 -0.9838320356359597 -0.1777180651568155 -0.02215434434420591 0.9838320356359597 0.1777180651568155 0.02216599408817481 -0.9848867473709602 -0.1717753287266057 0.02217588882505957 -0.9848855426448274 -0.1717809589099522 -0.02217588882505957 0.9848855426448274 0.1717809589099522 -0.02216599408817481 0.9848867473709602 0.1717753287266057 -0.02204966620218046 0.9816549723349188 0.1893867141868779 0.02204966620218046 -0.9816549723349188 -0.1893867141868779 -0.4488827510890986 -0.07142531229437267 -0.8907315535773579 0.4488827510890986 0.07142531229437267 0.8907315535773579 -0.02207713179279975 0.9816638088999858 0.1893377050346172 0.02207713179279975 -0.9816638088999858 -0.1893377050346172 -0.5213050402861289 0.0701336647363395 0.8504835824652514 0.5213050402861289 -0.0701336647363395 -0.8504835824652514 -0.9946912270840029 0.006756099022091487 0.1026826075249562 0.9946912270840029 -0.006756099022091487 -0.1026826075249562 -0.5731013847754379 -0.06790698381044293 -0.8166660543442733 0.5731013847754379 0.06790698381044293 0.8166660543442733 -0.02207088802970789 0.981657733885077 0.1893699274045254 0.02207088802970789 -0.981657733885077 -0.1893699274045254 -0.9964745463580103 -0.007490646736988896 -0.08356056888305249 0.9964745463580103 0.007490646736988896 0.08356056888305249</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 18 2 3 19 4 8 7 20 21 10 9 6 22 7 10 23 11 24 25 26 27 28 29 30 12 14 15 17 31 26 25 32 33 28 27 34 18 1 4 19 35 7 36 20 21 37 10 38 39 7 10 40 41 42 24 26 27 29 43 14 44 30 31 45 15 26 32 46 47 33 27 34 48 18 19 49 35 7 39 36 37 40 10 34 50 48 49 51 35 44 52 30 31 53 45 42 26 54 55 27 43 54 26 46 47 27 55 50 52 56 57 53 51 48 50 56 57 51 49 56 52 44 45 53 57</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1835\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1838\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1841\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1839\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1840\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1839\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"150\" source=\"#ID1842\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"450\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1842\">0.05343644320964813 0.1741137206554413 -0.30791175365448 0.03954382240772247 0.173693522810936 -0.3557284474372864 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.1620966047048569 0.173693522810936 -0.3075017929077148 0.1620966047048569 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 0.03954382240772247 0.173693522810936 -0.3557284474372864 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 0.05343644320964813 -0.0231819823384285 -0.30791175365448 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 0.05343644320964813 -0.0231819823384285 -0.30791175365448 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.4001826941967011 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.4001826941967011 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 0.004646843299269676 0.1741137206554413 -0.4509885311126709 0.004646843299269676 0.1741137206554413 -0.4509885311126709 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 0.004646843299269676 0.1741137206554413 -0.4509885311126709 0.004646843299269676 0.1741137206554413 -0.4509885311126709 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.04882822185754776 -0.08871229737997055 -0.4001826941967011 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1840\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"150\" source=\"#ID1843\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"450\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1843\">-0.0008524021846609801 -0.9999934579831282 0.003515309582559555 -0.000674593647413681 -0.9999959026174352 0.00278202655478913 -0.0008524021846609801 -0.9999934579831282 0.003515309582559555 -0.0002018871823877642 -0.9999996330231196 0.0008325834443114648 0.0002018871823877642 0.9999996330231196 -0.0008325834443114648 0.0008524021846609801 0.9999934579831282 -0.003515309582559555 0.000674593647413681 0.9999959026174352 -0.00278202655478913 0.0008524021846609801 0.9999934579831282 -0.003515309582559555 -0.002064684151654042 0.9999612923901422 0.008552824141210507 -9.923755920933442e-005 0.99999991058037 0.0004110853427341175 -0.002064684151654042 0.9999612923901422 0.008552824141210507 0.00152764242395126 0.999998774964976 0.0003411409852822999 9.923755920933442e-005 -0.99999991058037 -0.0004110853427341175 0.002064684151654042 -0.9999612923901422 -0.008552824141210507 -0.00152764242395126 -0.999998774964976 -0.0003411409852822999 0.002064684151654042 -0.9999612923901422 -0.008552824141210507 0 -1 0 -0 1 -0 0 1 0 -0 -1 -0 -0.3872695190778213 -0.0002125953994443339 0.9219665256376879 -0.680525551593799 0.001113914692902286 0.7327235036642488 -0.3903344446072451 -0.002071356399789515 0.9206708048134352 0.3903344446072451 0.002071356399789515 -0.9206708048134352 0.680525551593799 -0.001113914692902286 -0.7327235036642488 0.3872695190778213 0.0002125953994443339 -0.9219665256376879 0 1 0 -0 -1 -0 -0.6902235729625602 -3.497933862440305e-006 0.723596171434428 -0.993564706888407 0.001753445859980048 0.1132523670983072 0.993564706888407 -0.001753445859980048 -0.1132523670983072 0.6902235729625602 3.497933862440305e-006 -0.723596171434428 -0.3854140957586625 0.0009109952854830883 0.9227432713805733 -0.3854140957586625 0.0009109952854830883 0.9227432713805733 0.3854140957586625 -0.0009109952854830883 -0.9227432713805733 0.3854140957586625 -0.0009109952854830883 -0.9227432713805733 0 1 0 -0 -1 -0 -0.9950096440210436 -0.000943752455602703 0.09977433355537235 -0.7394914584646463 0.0002843368189138564 -0.673165880010569 0.7394914584646463 -0.0002843368189138564 0.673165880010569 0.9950096440210436 0.000943752455602703 -0.09977433355537235 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.0009595663710950525 -0.9999994004879673 0.0005274998439833328 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.0002623361050891516 -0.9999998535440419 0.0004733832091642585 0.0009595663710950525 0.9999994004879673 -0.0005274998439833328 0.00578959802049866 0.99992866491342 -0.01044727903459306 0.0002623361050891516 0.9999998535440419 -0.0004733832091642585 0.00578959802049866 0.99992866491342 -0.01044727903459306 0.00578959802049866 0.99992866491342 -0.01044727903459306 -3.911876577611277e-008 -1.861256100673479e-017 0.9999999999999991 -0.707106372870083 -9.672022582894041e-018 0.7071071895027762 -3.911876573786155e-008 -4.242689383461759e-017 0.9999999999999992 3.911876573786155e-008 4.242689383461759e-017 -0.9999999999999992 0.707106372870083 9.672022582894041e-018 -0.7071071895027762 3.911876577611277e-008 1.861256100673479e-017 -0.9999999999999991 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0.0008523534733143322 0.999999594506523 -0.0002906550293067631 -0.0008523534733143322 -0.999999594506523 0.0002906550293067631 -0.7405281290730719 0.001610344907837274 -0.6720234347407936 -0.06779187227960655 0.001877425022851561 -0.9976977184138035 0.06779187227960655 -0.001877425022851561 0.9976977184138035 0.7405281290730719 -0.001610344907837274 0.6720234347407936 0 -1 0 -0 1 -0 -0.707106372870083 1.41422847206689e-017 0.7071071895027762 0.707106372870083 -1.41422847206689e-017 -0.7071071895027762 0.7071061114800435 -1.414227721279664e-017 0.7071074508924174 -0.7071061114800435 1.414227721279664e-017 -0.7071074508924174 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.003294124417085093 0.9999939434455599 -0.001123306068390831 -0.003294124417085093 -0.9999939434455599 0.001123306068390831 -0.07063814495457572 0.002857620332911681 -0.9974979130220821 0.3466598206120948 0.002001151010611005 -0.9379887868028183 -0.3466598206120948 -0.002001151010611005 0.9379887868028183 0.07063814495457572 -0.002857620332911681 0.9974979130220821 0 -1 0 -0 1 -0 0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 -0.9999999999993621 1.414238529049367e-017 -1.129588202910892e-006 0.9999999999993621 -1.414238529049367e-017 1.129588202910892e-006 0 -1 0 -0 1 -0 0.7071061114800435 -1.414227721279663e-017 0.7071074508924172 -0.7071061114800435 1.414227721279663e-017 -0.7071074508924172 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.3501992826352902 0.0007580898147801481 -0.9366749103832989 0.4835462335726444 0.0008799597322555606 -0.8753183796017191 -0.4835462335726444 -0.0008799597322555606 0.8753183796017191 -0.3501992826352902 -0.0007580898147801481 0.9366749103832989 0.001901451832417029 -0.9999977322604323 -0.0009591428056673119 -0.001901451832417029 0.9999977322604323 0.0009591428056673119 0 -1 0 -0 1 -0 -0.999999999999362 -1.733948662692664e-018 -1.129588202930018e-006 0.999999999999362 1.733948662692664e-018 1.129588202930018e-006 0 -1 0 -0 1 -0 0.9999999999998042 0 -6.259043495723284e-007 -0.9999999999998042 -0 6.259043495723284e-007 0 1 0 -0 -1 -0 -0.7071048312562522 -1.240838486938628e-017 -0.7071087311114657 0.7071048312562522 1.240838486938628e-017 0.7071087311114657 0.9999999999998041 0 -6.259043496297053e-007 -0.9999999999998041 -0 6.259043496297053e-007 0 1 0 -0 -1 -0 0.4843937839313932 0 -0.8748500797786023 -0.4843937839313932 -0 0.8748500797786023 0.002267514730237025 -0.9999957149613051 -0.001851603622948137 0.004312416916715417 -0.9999874718538377 -0.002541494778023185 -0.004312416916715417 0.9999874718538377 0.002541494778023185 -0.002267514730237025 0.9999957149613051 0.001851603622948137 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 -0.7071048312562522 -2.828468600615452e-017 -0.7071087311114657 -2.477511845108208e-007 -1.414233203803552e-017 -0.9999999999999691 2.477511845108208e-007 1.414233203803552e-017 0.9999999999999691 0.7071048312562522 2.828468600615452e-017 0.7071087311114657 0.7071047784991345 0 -0.7071087838682884 -0.7071047784991345 -0 0.7071087838682884 0.7071047784991347 0 -0.7071087838682884 -0.7071047784991347 -0 0.7071087838682884 -0.001955581172541138 -0.9999979967544046 -0.0004268365677167187 0.001955581172541138 0.9999979967544046 0.0004268365677167187 0 -1 0 -0 1 -0 -2.477511845299464e-007 -1.414233203803551e-017 -0.9999999999999691 2.477511845299464e-007 1.414233203803551e-017 0.9999999999999691</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 11 10 9 12 13 14 13 12 15 16 1 3 4 6 17 9 18 11 14 19 12 20 21 22 23 24 25 18 26 11 14 27 19 21 28 29 30 31 24 20 32 21 32 33 21 28 21 33 34 24 31 24 34 35 24 35 25 26 36 11 14 37 27 29 38 39 40 41 30 28 38 29 30 41 31 42 43 44 44 43 45 46 45 43 47 48 49 48 47 50 50 47 51 52 53 54 55 56 57 58 59 60 61 62 63 36 64 11 14 65 37 39 66 67 68 69 40 38 66 39 40 69 41 70 46 43 47 49 71 72 53 52 57 56 73 52 54 74 75 55 57 76 59 58 63 62 77 59 78 60 61 79 62 64 80 11 14 81 65 67 82 83 84 85 68 66 82 67 68 85 69 86 70 43 47 71 87 88 89 90 91 92 93 53 72 94 95 73 56 96 88 90 91 93 97 74 54 98 99 55 75 76 100 59 62 101 77 59 102 78 79 103 62 83 104 105 106 107 84 83 82 104 107 85 84 108 86 43 47 87 109 88 110 89 92 111 93 72 112 94 95 113 73 114 88 96 97 93 115 116 74 98 99 75 117 100 118 59 62 119 101 94 112 120 121 113 95 122 116 98 99 117 123 59 124 102 103 125 62 105 104 126 127 107 106 128 129 43 108 43 129 130 47 109 47 130 131 88 132 110 111 133 93 114 134 88 93 135 115 118 124 59 62 125 119 120 136 137 138 139 121 112 136 120 121 139 113 140 116 122 123 117 141 142 140 122 123 141 143 43 144 128 129 128 144 145 131 130 131 145 47 146 132 88 93 133 147 134 146 88 93 147 135 137 148 142 143 149 138 137 136 148 149 139 138 142 148 140 141 149 143</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1841\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1844\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1847\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1845\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1846\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1845\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"14\" source=\"#ID1848\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"42\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1848\">0.001038577407598496 0.171336904168129 -0.3997860848903656 -0.04898601025342941 0.171336904168129 -0.3997860848903656 -0.02397382631897926 0.171336904168129 -0.3564637303352356 -0.02397382631897926 0.171336904168129 -0.3564637303352356 -0.04898601025342941 0.171336904168129 -0.3997860848903656 0.001038577407598496 0.171336904168129 -0.3997860848903656 -0.02397382631897926 0.171336904168129 -0.4431087970733643 -0.02397382631897926 0.171336904168129 -0.4431087970733643 -0.07399865239858627 0.171336904168129 -0.3564637303352356 -0.07399865239858627 0.171336904168129 -0.3564637303352356 -0.07399865239858627 0.171336904168129 -0.4431087970733643 -0.07399865239858627 0.171336904168129 -0.4431087970733643 -0.09901061654090881 0.171336904168129 -0.3997860848903656 -0.09901061654090881 0.171336904168129 -0.3997860848903656</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1846\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"14\" source=\"#ID1849\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"42\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1849\">0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"12\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 2 1 8 9 4 3 6 10 1 4 11 7 1 12 8 9 13 4 1 10 12 13 11 4</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1847\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1850\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1853\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1851\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1852\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1851\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"132\" source=\"#ID1854\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"396\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1854\">-0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.170267701148987 -0.3140725195407867 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.5808534622192383 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1852\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"132\" source=\"#ID1855\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"396\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1855\">-1.130159922583212e-006 1.949100471316308e-006 -0.9999999999974618 -4.267889876472928e-006 -0.3826802897704246 -0.9238808342004986 -1.1301334122519e-006 1.949057629495692e-006 -0.999999999997462 1.1301334122519e-006 -1.949057629495692e-006 0.999999999997462 4.267889876472928e-006 0.3826802897704246 0.9238808342004986 1.130159922583212e-006 -1.949100471316308e-006 0.9999999999974618 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 -4.267853575409275e-006 0.382683418680344 -0.9238795381698363 4.267853575409275e-006 -0.382683418680344 0.9238795381698363 -4.439926465004716e-006 -0.3826796682521984 -0.9238810916382445 4.439926465004716e-006 0.3826796682521984 0.9238810916382445 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -4.439913468692071e-006 0.3826840402307754 -0.9238792807141728 4.439913468692071e-006 -0.3826840402307754 0.9238792807141728 1 0 0 -1 -0 -0 -9.580972100645668e-007 -0.7071018257267022 -0.7071117366110157 9.580972100645668e-007 0.7071018257267022 0.7071117366110157 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -9.580991023527817e-007 0.7071043423311452 -0.7071092200328891 9.580991023527817e-007 -0.7071043423311452 0.7071092200328891 1 0 0 -1 -0 -0 -1.121026176803332e-017 -0.7071022878340889 -0.7071112745104529 1.121026176803332e-017 0.7071022878340889 0.7071112745104529 -1 0 0 1 -0 -0 -5.484074183472452e-018 -0.923881106935747 -0.3826796313460895 5.484074183472452e-018 0.923881106935747 0.3826796313460895 -1 0 0 1 -0 -0 -2.89782612884685e-017 0.7071038802247908 -0.7071096821364028 2.89782612884685e-017 -0.7071038802247908 0.7071096821364028 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -2.144655999698515e-017 -0.9238811069357469 -0.3826796313460895 4.752124784497387e-018 -0.9999999999982547 -1.868370662626244e-006 -4.752124784497387e-018 0.9999999999982547 1.868370662626244e-006 2.144655999698515e-017 0.9238811069357469 0.3826796313460895 -1 0 0 1 -0 -0 -4.879379169258916e-017 0.9238800887855799 -0.3826820893973862 -5.354591770247694e-017 0.9238800887855798 -0.3826820893973862 5.354591770247694e-017 -0.9238800887855798 0.3826820893973862 4.879379169258916e-017 -0.9238800887855799 0.3826820893973862 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -9.503747639056373e-018 -0.9999999999982547 -1.868370662680292e-006 -1.506300306250552e-017 -0.9238824081403895 0.3826764899085318 1.506300306250552e-017 0.9238824081403895 -0.3826764899085318 9.503747639056373e-018 0.9999999999982547 1.868370662680292e-006 -1 0 0 1 -0 -0 -1.784295402865374e-017 0.9999999999982544 -1.868514494595799e-006 -4.160251598163036e-017 0.9999999999982544 -1.868514494577784e-006 4.160251598163036e-017 -0.9999999999982544 1.868514494577784e-006 1.784295402865374e-017 -0.9999999999982544 1.868514494595799e-006 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -2.456683227551504e-017 -0.9238824081403895 0.3826764899085318 0 -0.7071031150808818 0.707110447273206 -0 0.7071031150808818 -0.707110447273206 2.456683227551504e-017 0.9238824081403895 -0.3826764899085318 -1 0 0 1 -0 -0 2.456669184427625e-017 0.9238812049271341 0.3826793947711148 5.559188559376211e-018 0.9238812049271341 0.382679394771115 -5.559188559376211e-018 -0.9238812049271341 -0.382679394771115 -2.456669184427625e-017 -0.9238812049271341 -0.3826793947711148 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0 -0.3826838347087458 0.9238793658549851 0 -0.7071031150808818 0.707110447273206 -0 0.7071031150808818 -0.707110447273206 -0 0.3826838347087458 -0.9238793658549851 -1 0 0 1 -0 -0 1.121040847797749e-017 0.7071060718481682 0.7071074905242151 0 0.7071060718481682 0.7071074905242151 -0 -0.7071060718481682 -0.7071074905242151 -1.121040847797749e-017 -0.7071060718481682 -0.7071074905242151 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1.228357465642283e-017 3.170942685220934e-006 0.9999999999949726 0 -0.3826838347087458 0.9238793658549851 -0 0.3826838347087458 -0.9238793658549851 -1.228357465642283e-017 -3.170942685220934e-006 -0.9999999999949726 4.126187744361914e-017 0.3826861683731713 0.9238783992148861 3.005147520923364e-017 0.3826861683731713 0.9238783992148861 -3.005147520923364e-017 -0.3826861683731713 -0.9238783992148861 -4.126187744361914e-017 -0.3826861683731713 -0.9238783992148861 1 0 0 -1 -0 -0 1.228357465642284e-017 3.170942685292997e-006 0.9999999999949726 -1.228357465642284e-017 -3.170942685292997e-006 -0.9999999999949726</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"128\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 16 7 6 11 10 17 6 8 18 19 9 11 20 21 22 23 24 25 26 0 12 13 5 27 20 28 21 24 29 25 1 30 14 15 31 4 32 16 6 11 17 33 6 18 34 35 19 11 22 21 36 37 24 23 38 26 12 13 27 39 28 40 21 24 41 29 14 30 42 43 31 15 44 32 6 11 33 45 42 30 46 47 31 43 6 34 48 49 35 11 50 26 38 39 27 51 36 21 52 53 24 37 40 54 21 24 55 41 56 44 6 11 45 57 58 46 59 60 47 61 58 42 46 47 43 61 6 48 62 63 49 11 64 50 65 66 51 67 50 38 65 66 39 51 52 21 68 69 24 53 54 70 21 24 71 55 72 56 6 11 57 73 74 59 75 76 60 77 74 58 59 60 61 77 78 6 62 63 11 79 80 64 81 82 67 83 64 65 81 82 66 67 21 84 68 69 85 24 70 86 21 24 87 71 88 72 6 11 73 89 90 75 91 92 76 93 90 74 75 76 77 93 94 6 78 79 11 95 96 80 97 98 83 99 80 81 97 98 82 83 21 100 84 85 101 24 86 102 21 24 103 87 104 88 6 11 89 105 91 106 107 108 109 92 107 90 91 92 93 108 110 6 94 95 11 111 112 96 113 114 99 115 96 97 113 114 98 99 21 116 100 101 117 24 102 118 21 24 119 103 104 6 110 111 11 105 106 120 121 122 123 109 107 106 121 122 109 108 124 112 125 126 115 127 125 112 113 114 115 126 21 128 116 117 129 24 21 118 128 129 119 24 120 124 130 131 127 123 121 120 130 131 123 122 130 124 125 126 127 131</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1853\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1856\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1859\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1857\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1858\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1857\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"134\" source=\"#ID1860\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"402\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1860\">-0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6596336960792542 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1858\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"134\" source=\"#ID1861\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"402\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1861\">-1.2916044995839e-006 -1.622831494590891e-006 -0.9999999999978491 -4.877612574350995e-006 -0.3826880997193461 -0.9238775992031654 -1.291606467001254e-006 -1.622828384775344e-006 -0.9999999999978491 1.291606467001254e-006 1.622828384775344e-006 0.9999999999978491 4.877612574350995e-006 0.3826880997193461 0.9238775992031654 1.2916044995839e-006 1.622831494590891e-006 0.9999999999978491 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 -4.877617766074997e-006 0.3826857653536466 -0.923878566139459 4.877617766074997e-006 -0.3826857653536466 0.923878566139459 -5.074247172752549e-006 -0.3826873893609037 -0.9238778934460917 5.074247172752549e-006 0.3826873893609037 0.9238778934460917 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -5.07425111606672e-006 0.3826864757063207 -0.9238782718982666 5.07425111606672e-006 -0.3826864757063207 0.9238782718982666 1 0 0 -1 -0 -0 -1.094970217341462e-006 -0.7071035322409311 -0.7071100301163883 1.094970217341462e-006 0.7071035322409311 0.7071100301163883 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -1.094968152871253e-006 0.7071038429309827 -0.7071097194290553 1.094968152871253e-006 -0.7071038429309827 0.7071097194290553 1 0 0 -1 -0 -0 -2.897845197819312e-017 -0.7071040603653174 -0.7071095019973086 2.897845197819312e-017 0.7071040603653174 0.7071095019973086 -1 0 0 1 -0 -0 -4.126238201343536e-017 -0.9238751717500278 -0.3826939600044098 4.126238201343536e-017 0.9238751717500278 0.3826939600044098 -1 0 0 1 -0 -0 -3.553734694154178e-017 0.7071033148137366 -0.7071102475423658 3.553734694154178e-017 -0.7071033148137366 0.7071102475423658 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -3.175837688221498e-017 -0.9238751717500278 -0.3826939600044099 2.734678571659092e-017 -0.9999999999996858 -7.92724898079175e-007 -2.734678571659092e-017 0.9999999999996858 7.92724898079175e-007 3.175837688221498e-017 0.9238751717500278 0.3826939600044099 -1 0 0 1 -0 -0 3.453826897195781e-017 0.9238801307652029 -0.3826819880491786 3.112559068021542e-017 0.9238801307652028 -0.3826819880491787 -3.112559068021542e-017 -0.9238801307652028 0.3826819880491787 -3.453826897195781e-017 -0.9238801307652029 0.3826819880491786 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 2.259511444695752e-017 -0.9999999999996858 -7.92724898061159e-007 -2.700651582927052e-017 -0.923875444265542 0.3826933021143006 2.700651582927052e-017 0.923875444265542 -0.3826933021143006 -2.259511444695752e-017 0.9999999999996858 7.92724898061159e-007 -1 0 0 1 -0 -0 -2.456744429449738e-017 0.9999999999996858 -7.926638801005441e-007 -5.559435115472413e-018 0.9999999999996858 -7.926638801185601e-007 5.559435115472413e-018 -0.9999999999996858 7.926638801185601e-007 2.456744429449738e-017 -0.9999999999996858 7.926638801005441e-007 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -0.9999999999992996 1.093614454009465e-006 4.529891701655164e-007 0.9999999999992996 -1.093614454009465e-006 -4.529891701655164e-007 -3.005190997543079e-017 -0.9238754442655419 0.3826933021143006 -4.019040723039297e-017 -0.7071021262401992 0.7071114361022521 4.019040723039297e-017 0.7071021262401992 -0.7071114361022521 3.005190997543079e-017 0.9238754442655419 -0.3826933021143006 -1 0 0 1 -0 -0 0 0.923880341541087 0.3826814791885339 0 0.923880341541087 0.3826814791885339 -0 -0.923880341541087 -0.3826814791885339 -0 -0.923880341541087 -0.3826814791885339 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -0.9999999999995898 2.228600270075891e-012 9.059735365126267e-007 -0.9999999999999937 3.226053236698175e-014 1.132466397375109e-007 0.9999999999999937 -3.226053236698175e-014 -1.132466397375109e-007 0.9999999999995898 -2.228600270075891e-012 -9.059735365126267e-007 -2.898031124377796e-017 -0.3826897469708954 0.9238769168906387 -2.898017534171995e-017 -0.7071021262401992 0.7071114361022521 2.898017534171995e-017 0.7071021262401992 -0.7071114361022521 2.898031124377796e-017 0.3826897469708954 -0.9238769168906387 -0.9999999999992995 -1.093607939434975e-006 4.529875441586822e-007 0.9999999999992995 1.093607939434975e-006 -4.529875441586822e-007 6.557847939278634e-018 0.7071028024874713 0.7071107598632367 2.897940419550977e-017 0.7071028024874714 0.7071107598632367 -2.897940419550977e-017 -0.7071028024874714 -0.7071107598632367 -6.557847939278634e-018 -0.7071028024874713 -0.7071107598632367 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 0 -2.264975746200799e-007 0.9999999999999745 -2.898028982454418e-017 -0.3826896111443652 0.9238769731529056 2.898028982454418e-017 0.3826896111443652 -0.9238769731529056 -0 2.264975746200799e-007 -0.9999999999999745 -2.144780083289451e-017 0.3826859622291119 0.9238784846032399 5.725712895478056e-018 0.3826858264052466 0.9238785408637508 -5.725712895478056e-018 -0.3826858264052466 -0.9238785408637508 2.144780083289451e-017 -0.3826859622291119 -0.9238784846032399 1 0 0 -1 -0 -0 4.751911402923225e-018 -2.264972398285469e-007 0.9999999999999744 -4.751911402923225e-018 2.264972398285469e-007 -0.9999999999999744</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"128\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 16 7 6 11 10 17 6 8 18 19 9 11 20 21 22 23 24 25 26 0 12 13 5 27 20 28 21 24 29 25 1 30 14 15 31 4 32 16 6 11 17 33 6 18 34 35 19 11 22 21 36 37 24 23 38 26 12 13 27 39 28 40 21 24 41 29 14 30 42 43 31 15 44 32 6 11 33 45 42 30 46 47 31 43 6 34 48 49 35 11 50 26 38 39 27 51 36 21 52 53 24 37 40 54 21 24 55 41 56 44 6 11 45 57 58 46 59 60 47 61 58 42 46 47 43 61 6 48 62 63 49 11 64 50 65 66 51 67 50 38 65 66 39 51 52 21 68 69 24 53 54 70 21 24 71 55 72 56 6 11 57 73 74 59 75 76 60 77 74 58 59 60 61 77 78 6 62 63 11 79 80 64 81 82 67 83 64 65 81 82 66 67 21 84 68 69 85 24 70 86 21 24 87 71 88 72 6 11 73 89 90 75 91 92 76 93 90 74 75 76 77 93 94 6 78 79 11 95 96 80 97 98 83 99 80 81 97 98 82 83 21 100 84 85 101 24 86 102 21 24 103 87 104 88 105 106 89 107 91 108 109 110 111 92 109 90 91 92 93 110 112 6 94 95 11 113 114 96 115 116 99 117 96 97 115 116 98 99 21 118 100 101 119 24 102 120 21 24 121 103 104 105 112 113 106 107 108 122 123 124 125 111 109 108 123 124 111 110 126 114 127 128 117 129 127 114 115 116 117 128 21 130 118 119 131 24 21 120 130 131 121 24 122 126 132 133 129 125 123 122 132 133 125 124 132 126 127 128 129 133</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1859\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1862\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1865\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1863\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1864\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1863\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"318\" source=\"#ID1867\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"954\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1867\">0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4049413502216339 0.5701420903205872 -0.4031210839748383 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4049413502216339 0.5701420903205872 -0.4031210839748383 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4317043721675873 1.190332651138306 -0.07991550862789154 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4317043721675873 1.190332651138306 -0.07991550862789154 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4085270166397095 0.5722740888595581 -0.4163314998149872 0.4085270166397095 0.5722740888595581 -0.4163314998149872 0.4085270166397095 0.568010151386261 -0.3899107277393341 0.4085270166397095 0.568010151386261 -0.3899107277393341 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4183229506015778 0.5738347768783569 -0.4260024130344391 0.4183229506015778 0.5738347768783569 -0.4260024130344391 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4183229506015778 0.5664496421813965 -0.3802396655082703 0.4183229506015778 0.5664496421813965 -0.3802396655082703 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4317043721675873 0.5658783912658691 -0.3766999244689941 0.445085734128952 1.182167768478394 -0.05822398141026497 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 0.5658783912658691 -0.3766999244689941 0.445085734128952 1.198497414588928 -0.1016071438789368 0.445085734128952 1.198497414588928 -0.1016071438789368 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 0.5744060277938843 -0.42954221367836 0.4317043721675873 0.5744060277938843 -0.42954221367836 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.445085734128952 0.5664496421813965 -0.3802396655082703 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.445085734128952 0.5664496421813965 -0.3802396655082703 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.445085734128952 1.198497414588928 -0.1016071438789368 0.445085734128952 0.5738347768783569 -0.4260024130344391 0.445085734128952 0.5738347768783569 -0.4260024130344391 0.445085734128952 1.198497414588928 -0.1016071438789368 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4548816978931427 0.568010151386261 -0.3899107277393341 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4548816978931427 0.568010151386261 -0.3899107277393341 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4548816978931427 0.5722740888595581 -0.4163314998149872 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 0.5722740888595581 -0.4163314998149872 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.4584673047065735 0.5701420903205872 -0.4031210839748383 0.4584673047065735 0.5701420903205872 -0.4031210839748383 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4317043721675873 -2.021480560302734 -0.340120404958725 0.4317043721675873 -2.021480560302734 -0.340120404958725 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.445085734128952 -2.021480560302734 -0.3169430494308472</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1864\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"318\" source=\"#ID1868\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"954\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1868\">-0.8556685834497534 -0.239464828911311 0.4587895716028961 -0.9991689723260824 0.01267121750300655 -0.03874022441638811 -0.9998015493569296 -0.009297490012715751 0.01761869980862258 0.9998015493569296 0.009297490012715751 -0.01761869980862258 0.9991689723260824 -0.01267121750300655 0.03874022441638811 0.8556685834497534 0.239464828911311 -0.4587895716028961 2.067409586496516e-017 0.935896621035304 0.3522747716409744 5.921428077004473e-013 0.9358968013032771 0.3522742927184643 -1.587002344317823e-006 0.9358946522337397 0.3522800021542084 1.587002344317823e-006 -0.9358946522337397 -0.3522800021542084 -5.921428077004473e-013 -0.9358968013032771 -0.3522742927184643 -2.067409586496516e-017 -0.935896621035304 -0.3522747716409744 -0.8480525375658584 0.1265398159716716 -0.514581935654531 0.8480525375658584 -0.1265398159716716 0.514581935654531 -0.8829612559730874 -0.1097985247969643 0.4564249165008834 0.8829612559730874 0.1097985247969643 -0.4564249165008834 -1.682874098589758e-006 0.9358953173048604 0.3522782352686621 1.682874098589758e-006 -0.9358953173048604 -0.3522782352686621 -2.838051631940314e-006 0.9358978264604545 0.352271569131746 2.838051631940314e-006 -0.9358978264604545 -0.352271569131746 -0.8666306184148966 -0.00442290063085205 -0.4989306656999783 0.8666306184148966 0.00442290063085205 0.4989306656999783 -0.8730063918053552 0.2248510712722504 -0.4327838208791034 0.8730063918053552 -0.2248510712722504 0.4327838208791034 -0.9999988486572118 5.052889436661559e-005 0.001516618304645341 0.9999988486572118 -5.052889436661559e-005 -0.001516618304645341 -0.4886371618025431 -0.4041532626989209 0.7732359693879821 0.4886371618025431 0.4041532626989209 -0.7732359693879821 -1.917342724171167e-007 0.9358950140260669 0.3522790409903935 1.917342724171167e-007 -0.9358950140260669 -0.3522790409903935 5.980649598987417e-006 0.9358984655541968 0.3522698711748308 -5.980649598987417e-006 -0.9358984655541968 -0.3522698711748308 -0.5005661618020015 -0.007509959021396832 -0.8656657080965546 0.5005661618020015 0.007509959021396832 0.8656657080965546 -0.4827533759849262 0.2035025572784121 -0.8517839439413629 0.4827533759849262 -0.2035025572784121 0.8517839439413629 -0.8653247216990916 0.004756257951794971 0.5011890900914403 0.8653247216990916 -0.004756257951794971 -0.5011890900914403 -0.5171218611954367 -0.202882400749179 0.8315189186903789 0.5171218611954367 0.202882400749179 -0.8315189186903789 1.68287208713074e-006 0.9358953173029266 0.3522782352737994 1.917351264601493e-007 0.9358950140260669 0.3522790409903935 -1.917351264601493e-007 -0.9358950140260669 -0.3522790409903935 -1.68287208713074e-006 -0.9358953173029266 -0.3522782352737994 6.836166544110813e-005 -0.4635403853521201 0.8860757904797371 -6.836166544110813e-005 0.4635403853521201 -0.8860757904797371 -3.177932804283919e-011 0.9359008363333675 0.3522635725568331 3.177932804283919e-011 -0.9359008363333675 -0.3522635725568331 -0.5059370200118128 0.3974419379304228 -0.7655505455263398 0.5059370200118128 -0.3974419379304228 0.7655505455263398 -0.09003842888364019 0.9737652901199937 -0.2089838297134265 -0.09509752941100279 0.9689853039308536 -0.2280875723619209 -0.1403416273619077 0.9842110206774678 -0.1078558964842833 0.1403416273619077 -0.9842110206774678 0.1078558964842833 0.09509752941100279 -0.9689853039308536 0.2280875723619209 0.09003842888364019 -0.9737652901199937 0.2089838297134265 -0.126852229460708 0.9869510620438351 -0.09917717989232054 -0.1395093049752446 0.9902123892279267 -0.004071614525624451 0.1395093049752446 -0.9902123892279267 0.004071614525624451 0.126852229460708 -0.9869510620438351 0.09917717989232054 -0.1371433043003548 0.9905509185681858 -0.0007692914296476124 -0.1287262632701252 0.9876956149108226 0.08880834099589038 0.1287262632701252 -0.9876956149108226 -0.08880834099589038 0.1371433043003548 -0.9905509185681858 0.0007692914296476124 1.587004143046497e-006 0.935894652233592 0.3522800021546005 -1.587004143046497e-006 -0.935894652233592 -0.3522800021546005 2.786697723764069e-005 -0.2371628431086368 0.9714699095041799 0.4886794166797998 -0.4044362861970698 0.7730612641444482 -0.4886794166797998 0.4044362861970698 -0.7730612641444482 -2.786697723764069e-005 0.2371628431086368 -0.9714699095041799 -5.980705087972674e-006 0.935898465560064 0.3522698711592422 5.980705087972674e-006 -0.935898465560064 -0.3522698711592422 -6.919749986476737e-005 0.4607735675319257 -0.8875177264007791 -2.030936765399969e-005 0.2302497252968681 -0.9731315756814423 2.030936765399969e-005 -0.2302497252968681 0.9731315756814423 6.919749986476737e-005 -0.4607735675319257 0.8875177264007791 -0.002416077874502486 0.9596332719212614 -0.2812439261377904 0.002416077874502486 -0.9596332719212614 0.2812439261377904 2.100185833579053e-005 -0.008554339815961683 -0.9999634107452307 -2.100185833579053e-005 0.008554339815961683 0.9999634107452307 -0.1312303575950728 0.9861239462733067 0.1016767221729236 0.1312303575950728 -0.9861239462733067 -0.1016767221729236 -0.4992870124823224 0.008307555237405912 0.8663968280715567 0.4992870124823224 -0.008307555237405912 -0.8663968280715567 -5.168604428006794e-018 0.9358966210353041 0.3522747716409743 5.168604428006794e-018 -0.9358966210353041 -0.3522747716409743 0.5171535886277142 -0.2026337189272053 0.8315598245004428 0.8556154675465553 -0.2398097110614041 0.4587084849615663 -0.8556154675465553 0.2398097110614041 -0.4587084849615663 -0.5171535886277142 0.2026337189272053 -0.8315598245004428 2.838054848582697e-006 0.9358978264607185 0.3522715691310447 -2.838054848582697e-006 -0.9358978264607185 -0.3522715691310447 0.5058589369169176 0.3977581476772782 -0.7654379085841166 0.4827393731108922 0.2033075991014512 -0.8518384340918802 -0.4827393731108922 -0.2033075991014512 0.8518384340918802 -0.5058589369169176 -0.3977581476772782 0.7654379085841166 -1.881051239773034e-006 -7.640001222029348e-019 -0.9999999999982308 -0.3319732451570799 0 -0.9432888022763108 -1.881051239737275e-006 8.774096407935407e-019 -0.9999999999982309 1.881051239737275e-006 -8.774096407935407e-019 0.9999999999982309 0.3319732451570799 -0 0.9432888022763108 1.881051239773034e-006 7.640001222029348e-019 0.9999999999982308 -0.01115576265166628 0.9608317846152155 -0.2769076211172235 0.01115576265166628 -0.9608317846152155 0.2769076211172235 -0.7377515990043749 -1.25323332689929e-018 -0.6750722762538011 -0.33197324515708 0 -0.9432888022763108 0.33197324515708 -0 0.9432888022763108 0.7377515990043749 1.25323332689929e-018 0.6750722762538011 -0.9999999999997967 -2.527537940891982e-018 6.374458576434603e-007 -0.7377515990043749 1.151169250985365e-018 -0.6750722762538011 0.7377515990043749 -1.151169250985365e-018 0.6750722762538011 0.9999999999997967 2.527537940891982e-018 -6.374458576434603e-007 -0.7377531673073663 2.340989451153134e-019 0.6750705623325232 -0.9999999999997968 -8.014181208772256e-024 6.374458577993136e-007 0.9999999999997968 8.014181208772256e-024 -6.374458577993136e-007 0.7377531673073663 -2.340989451153134e-019 -0.6750705623325232 -0.08760462976196862 0.9740271832325209 0.208797689566694 0.08760462976196862 -0.9740271832325209 -0.208797689566694 0.8829571124029861 -0.1095877801416802 0.4564835770327334 0.9997987427153047 -0.009377883076055511 0.01773497600528058 -0.9997987427153047 0.009377883076055511 -0.01773497600528058 -0.8829571124029861 0.1095877801416802 -0.4564835770327334 -2.237914300538736e-005 0.009583330192389836 0.9999540785864107 2.237914300538736e-005 -0.009583330192389836 -0.9999540785864107 0.8480717938194996 0.1262944581961821 -0.5146104763378888 0.873024571469934 0.2251232287911784 -0.4326056281052904 -0.873024571469934 -0.2251232287911784 0.4326056281052904 -0.8480717938194996 -0.1262944581961821 0.5146104763378888 0.5005854389560404 -0.007401400196843076 -0.8656554958990987 -0.5005854389560404 0.007401400196843076 0.8656554958990987 0.3319731982955007 -6.745699210829516e-019 -0.9432888187683854 -0.3319731982955007 6.745699210829516e-019 0.9432888187683854 0.09263129721724944 0.9711531077667437 -0.2197295702695592 -0.09263129721724944 -0.9711531077667437 0.2197295702695592 -0.7377531673073663 -1.172867571393463e-018 0.6750705623325233 0.7377531673073663 1.172867571393463e-018 -0.6750705623325233 -0.09263146804003425 0.9711531171285674 0.2197294568787146 0.09263146804003425 -0.9711531171285674 -0.2197294568787146 0.9991711718222368 0.01261032889182782 -0.03870334616823358 -0.9991711718222368 -0.01261032889182782 0.03870334616823358 0.4992676227779674 0.008197452986455137 0.8664090503971966 -0.4992676227779674 -0.008197452986455137 -0.8664090503971966 0.01115519159442941 0.9608316972177918 0.2769079473797549 -0.01115519159442941 -0.9608316972177918 -0.2769079473797549 0.86662126022728 -0.004314606107473825 -0.4989478685155576 -0.86662126022728 0.004314606107473825 0.4989478685155576 0.08760487199195768 0.9740272570283463 -0.2087972436817805 -0.08760487199195768 -0.9740272570283463 0.2087972436817805 0.09003726007103659 -0.9737660595087934 -0.2089807482703076 0.00241508734230594 -0.9596341737255689 -0.281240857577937 0.09509584820952806 -0.9689861245568474 -0.2280847870192401 -0.09509584820952806 0.9689861245568474 0.2280847870192401 -0.00241508734230594 0.9596341737255689 0.281240857577937 -0.09003726007103659 0.9737660595087934 0.2089807482703076 0.3319731982955007 -2.324859276687647e-018 -0.9432888187683854 -0.3319731982955007 2.324859276687647e-018 0.9432888187683854 -0.09263044473430689 -0.9711535481634911 -0.2197279831923698 0.01115459616213048 -0.9608326541598842 -0.2769046508900355 -0.01115459616213048 0.9608326541598842 0.2769046508900355 0.09263044473430689 0.9711535481634911 0.2197279831923698 -0.1312286864881223 -0.9861242709384043 -0.1016757301857369 -0.08760434262081819 -0.974027721213559 -0.208795300381727 0.08760434262081819 0.974027721213559 0.208795300381727 0.1312286864881223 0.9861242709384043 0.1016757301857369 -0.1287246115928297 -0.9876958999286996 -0.088807565186258 -0.1371417064276759 -0.9905511396965514 0.0007694179413118097 0.1371417064276759 0.9905511396965514 -0.0007694179413118097 0.1287246115928297 0.9876958999286996 0.088807565186258 -0.1395077150076342 -0.9902126133369116 0.004071589595286874 -0.1268509467525985 -0.9869513608391595 0.09917584708839622 0.1268509467525985 0.9869513608391595 -0.09917584708839622 0.1395077150076342 0.9902126133369116 -0.004071589595286874 -0.331973819900527 1.364743535802257e-018 0.9432886000056675 0.331973819900527 -1.364743535802257e-018 -0.9432886000056675 0.8653372986924505 0.004645889019576963 0.5011684100248843 -0.8653372986924505 -0.004645889019576963 -0.5011684100248843 0.09509666920911056 0.968985414375468 0.2280874618056319 0.002415579229262457 0.9596332152764271 0.2812441236989915 -0.002415579229262457 -0.9596332152764271 -0.2812441236989915 -0.09509666920911056 -0.968985414375468 -0.2280874618056319 0.9999989165626203 4.94714478615198e-005 0.001471198885774526 -0.9999989165626203 -4.94714478615198e-005 -0.001471198885774526 0.1312301110781591 0.9861239705929389 -0.1016768044759023 0.1287260017345746 0.9876956692818676 -0.08880811539084656 -0.1287260017345746 -0.9876956692818676 0.08880811539084656 -0.1312301110781591 -0.9861239705929389 0.1016768044759023 0.1403399956962591 -0.9842114735813607 -0.1078538867115155 -0.1403399956962591 0.9842114735813607 0.1078538867115155 0.7377521402481055 -1.487338798067641e-018 -0.6750716847560261 -0.7377521402481055 1.487338798067641e-018 0.6750716847560261 -0.1403401479142629 -0.9842114215621126 0.1078541633414679 0.1403401479142629 0.9842114215621126 -0.1078541633414679 -0.3319738199005269 0 0.9432886000056675 0.3319738199005269 -0 -0.9432886000056675 0.1403416649897658 0.9842111004808136 0.1078551192954987 0.090038403757831 0.9737654687449453 0.2089830082295663 -0.090038403757831 -0.9737654687449453 -0.2089830082295663 -0.1403416649897658 -0.9842111004808136 -0.1078551192954987 -1.787972108189189e-017 -8.774093855961984e-019 1 1.787972108189189e-017 8.774093855961984e-019 -1 0.1395091761623891 0.9902124067922382 0.004071756526886208 0.1371430596439661 0.9905509523182452 0.0007694497444450702 -0.1371430596439661 -0.9905509523182452 -0.0007694497444450702 -0.1395091761623891 -0.9902124067922382 -0.004071756526886208 0.7377521402481055 -2.851397952395639e-019 -0.6750716847560262 -0.7377521402481055 2.851397952395639e-019 0.6750716847560262 0.4964416914178915 -0.03905842806366463 -0.8671909168224369 0.8690189797524137 -0.02226235366205126 -0.4942776552095997 0.8625898747785986 -0.02276290866836874 -0.5053914897566019 -0.8625898747785986 0.02276290866836874 0.5053914897566019 -0.8690189797524137 0.02226235366205126 0.4942776552095997 -0.4964416914178915 0.03905842806366463 0.8671909168224369 0.1268506497066003 -0.9869513978373604 -0.09917585883618071 -0.1268506497066003 0.9869513978373604 0.09917585883618071 -1.52281652602719e-006 -0.04499460000659483 -0.9989872301325615 0.5028583418923243 -0.0388919326887635 -0.8634934311047393 -0.5028583418923243 0.0388919326887635 0.8634934311047393 1.52281652602719e-006 0.04499460000659483 0.9989872301325615 -0.4964423698710854 -0.03905845126508915 -0.867190527382278 -1.545680386762055e-006 -0.04499460000420967 -0.9989872301326338 1.545680386762055e-006 0.04499460000420967 0.9989872301326338 0.4964423698710854 0.03905845126508915 0.867190527382278 -0.8625884526310785 -0.02276303227608779 -0.5053939114681928 -0.50285897280859 -0.03889187568526324 -0.8634930662556427 0.50285897280859 0.03889187568526324 0.8634930662556427 0.8625884526310785 0.02276303227608779 0.5053939114681928 -0.999972444272022 -0.0003340209379775213 -0.007416139605689701 -0.8690175476164547 -0.0222624533144969 -0.4942801686362734 0.8690175476164547 0.0222624533144969 0.4942801686362734 0.999972444272022 0.0003340209379775213 0.007416139605689701 -0.869018890990955 0.02226238096317084 0.4942778100367258 -0.9999724485762634 0.0003340077636549147 0.007415559803963278 0.9999724485762634 -0.0003340077636549147 -0.007415559803963278 0.869018890990955 -0.02226238096317084 -0.4942778100367258 -0.09003745435493794 -0.9737660522810231 0.2089806982434363 0.09003745435493794 0.9737660522810231 -0.2089806982434363 0.1268522136644417 0.9869510788455127 0.0991770328962782 -0.1268522136644417 -0.9869510788455127 -0.0991770328962782 3.575944216378378e-017 -5.670473461277961e-020 1 0.3319736856030877 -2.267846863054493e-018 0.9432886472692769 -0.3319736856030877 2.267846863054493e-018 -0.9432886472692769 -3.575944216378378e-017 5.670473461277961e-020 -1 0.9999999999997968 5.364539505124322e-020 6.374480754040954e-007 0.9999999999997968 1.317410307255766e-018 6.374480752092781e-007 -0.9999999999997968 -1.317410307255766e-018 -6.374480752092781e-007 -0.9999999999997968 -5.364539505124322e-020 -6.374480754040954e-007 0.9999724494907532 0.0003339955886191514 0.007415437034315195 -0.9999724494907532 -0.0003339955886191514 -0.007415437034315195 0.1395075400449987 -0.9902126375751152 -0.004071689713896718 -0.1395075400449987 0.9902126375751152 0.004071689713896718 -0.8625884776429428 0.02276303416273365 0.5053938686938501 0.8625884776429428 -0.02276303416273365 -0.5053938686938501 -0.09509564702997102 -0.9689861231902501 0.2280848767031266 0.09509564702997102 0.9689861231902501 -0.2280848767031266 0.3319736856030877 2.651523838246855e-018 0.9432886472692769 0.7377523761315967 -1.246220707811482e-018 0.675071426970645 -0.7377523761315967 1.246220707811482e-018 -0.675071426970645 -0.3319736856030877 -2.651523838246855e-018 -0.9432886472692769 -0.002415539982883647 -0.9596341030532715 0.2812410948345463 0.002415539982883647 0.9596341030532715 -0.2812410948345463 0.7377523761315968 2.974672679722514e-018 0.6750714269706449 -0.7377523761315968 -2.974672679722514e-018 -0.6750714269706449 0.1371414842093252 -0.9905511705498352 -0.0007693056707454696 -0.1371414842093252 0.9905511705498352 0.0007693056707454696 0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0.9999724450707984 -0.0003340101651128226 -0.007416032385219119 -0.9999724450707984 0.0003340101651128226 0.007416032385219119 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 -0.5028607391297926 0.03889185254060898 0.8634920386707676 0.5028607391297926 -0.03889185254060898 -0.8634920386707676 0.0926303973702594 -0.9711537878116366 0.2197269439603129 -0.0111548222395139 -0.9608325919480819 0.2769048576517494 0.0111548222395139 0.9608325919480819 -0.2769048576517494 -0.0926303973702594 0.9711537878116366 -0.2197269439603129 0.1287245943318308 -0.9876959332292812 0.08880721984413723 0.1312287128889473 -0.9861242716440033 0.1016756892678608 -0.1312287128889473 0.9861242716440033 -0.1016756892678608 -0.1287245943318308 0.9876959332292812 -0.08880721984413723 0 -1 0 -0 1 -0 0.8625890965858487 0.02276300383816705 0.505392813668213 -0.8625890965858487 -0.02276300383816705 -0.505392813668213 0 -1 0 -0 1 -0 -0.4964399158161878 0.03905848206527661 0.8671919308683476 0.4964399158161878 -0.03905848206527661 -0.8671919308683476 0.08760369597439988 -0.9740277899170934 0.2087952511932388 -0.08760369597439988 0.9740277899170934 -0.2087952511932388 5.530634213415967e-007 0.04499456454482068 0.9989872317307745 -5.530634213415967e-007 -0.04499456454482068 -0.9989872317307745 0.8690195690259515 0.02226231191655951 0.4942766210514911 -0.8690195690259515 -0.02226231191655951 -0.4942766210514911 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 5.449766517714774e-007 0.04499456454602577 0.9989872317307246 0.5028605664170018 0.0388918425240569 0.8634921397024157 -0.5028605664170018 -0.0388918425240569 -0.8634921397024157 -5.449766517714774e-007 -0.04499456454602577 -0.9989872317307246 0.496439775365582 0.03905849917252066 0.8671920105013425 -0.496439775365582 -0.03905849917252066 -0.8671920105013425</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1866\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"466\" source=\"#ID1869\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"932\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1869\">-11.25932805518937 0.4879479208894881 -5.156333825802362 -2.226597808822293 -11.31054402336369 0.3866887779356041 -4.049413502216338 -3.887123517758756 -4.317043721675872 -3.887123517758756 -4.085270166397094 -3.781856993454377 -6.177416765474117 -3.699072506932177 -6.203196720386824 -3.806149211170691 -12.3271952343616 -1.079337578188712 -5.102641539361006 -2.069736751696081 -5.128428871588065 -2.176811828073098 -11.22662195928344 0.5444030103276085 -4.085310375791861 -3.781806192112567 -4.317084090941696 -3.887072498583008 -4.183269598376145 -3.704744458619817 -4.049413502216339 -3.886981074854326 -4.085270166397095 -3.992246938446414 -4.317043721675873 -3.886981074854326 -5.691727905781828 -3.898548109315947 1.213232401357073 -3.956600576821714 -5.712962145088035 -4.006240615044608 -12.31249712833532 -1.074900243098617 -6.183715396076771 -3.795053293626222 -12.36370455952466 -1.176161371079548 -5.690152164672538 -2.119796852854564 1.19349024601802 -2.176455698956791 -5.711383122707162 -2.227489233440087 -8.946129821920774 3.992730203131711 -3.421382997099307 0.6360191868382803 -9.018805069777802 3.899948727227846 -4.183231927890725 -3.704762860955324 -4.317046160277991 -3.887091019087 -4.317046140963053 -3.67655585860222 -4.085342644956503 -3.992324055119378 -4.183302193873223 -4.069386657642355 -4.317115914344315 -3.887057801982695 1.239341430844225 -4.548491456372043 1.240202612821271 -4.657470718763132 -5.686605238373446 -4.616233736127349 1.213307491042461 -3.839496262162217 1.213394600898758 -3.948476423527015 -5.691566469847769 -3.890480190500433 -6.932807065752982 -3.100785743552962 -6.989664092101249 -3.200166193023483 -12.53403592490533 0.2276052443095399 1.193242306620966 -2.081487505141862 1.193332072744563 -2.190467665172695 -5.690311070112399 -2.133863893882101 -3.253442528050039 0.8671135758711629 -3.310462406844037 0.7677901596581189 -8.785764873295038 4.174268162888379 -4.317041283062712 -3.887091509280536 -4.450854919403604 -3.70476335114886 -4.317041302377735 -3.676556348795756 0.8086484589963355 3.167786974002858 -2.256126201329711 8.073424631186649 -2.133779487386396 8.124547093341629 -4.183003643697426 -4.069300554675565 -4.316817621357123 -4.097506379542639 -4.316819398015708 -3.886972622755279 -12.55968530201353 0.09185059392995383 -6.966178530172553 -3.286159003938216 -12.63222926681517 -0.0009953749343425782 -3.454986706984768 -3.788184490826589 -3.954554745392738 -3.480431070579061 -3.857710392536873 -3.40250224046097 -5.701675118576261 -4.724124724152334 -5.686922497683787 -4.615762644769067 1.239882489387081 -4.657296288159409 -3.015430911568257 -3.45549861995946 -3.866061732078935 -3.279657853897043 -3.830588484267588 -3.174311014602082 -2.869703246413577 -3.070216614262001 -3.848985722099194 -3.070216614262001 -3.88451166256943 -2.964880763915582 1.164702397532125 0.1770946387850281 -5.718563410058719 0.1050305212584034 -5.70388740067092 0.213399701844485 -4.317003352372439 -3.88708061339941 -4.548776769499002 -3.781814306928624 -4.450817248891459 -3.704752573435621 6.560394906950577 0.3286585774584608 9.620672185692577 5.229913621577116 9.74302937016806 5.178807635345643 1.065295834394154 3.235331682227785 0.9452107955214961 3.180992217859886 -1.891195156386079 8.175852241738964 -4.317269821468539 -4.09746128944816 -4.451083203080727 -4.069255464581087 -4.31726804480204 -3.8869275326608 -9.738500023425573 5.129012709894578 -9.616306594751213 5.180360521298965 -6.611051826073217 0.1623460613082861 -9.454700111799376 5.323132414276861 -6.435619234164136 0.321223851333408 -6.555527445260597 0.2666430333145937 -3.63515919421932 -3.793903989688869 -4.253489030695904 -3.872230866086532 -4.125696002155108 -3.477287832190934 -3.0825751920921 -3.587025621783866 -3.533045564090324 -3.79624728320938 -3.932232694741615 -3.408296458879248 -5.60134158197208 -4.184464320313635 1.336914105341033 -4.00328014102398 1.341202412833731 -4.112208839164714 -2.869703246413577 -3.201819735854989 -3.034018435132346 -3.483348470546936 -3.848985722099194 -3.201819735854989 -2.863179646514935 -3.026580096309139 -3.877962833675873 -2.921093940708686 -3.027409744579753 -2.74502157313123 1.163488109067834 0.2544732377842759 1.164423167756218 0.1454940206030179 -5.704168854698622 0.1815377279855652 -4.317043721675873 -3.887123517758756 -4.584673047065735 -3.887123517758756 -4.548816978931427 -3.781856993454378 7.015589282693689 -3.135250642444145 12.59462165360195 0.1229826177130727 12.66733284910373 0.03021837817334129 6.626458302856106 0.3769634224572723 6.506386650646912 0.4313202821127311 9.587445864106229 5.321890509821727 1.051594831123396 2.461417897561974 -5.811893690170207 2.259574663057269 -5.811018120800472 2.368553090480205 -4.450784653294967 -4.069401169118899 -4.548744500234847 -3.992338566596373 -4.316971528870174 -3.887072313460307 2.137071460503123 8.09309811398556 2.259275193355469 8.041766441740156 -0.9858725881521666 3.130809355669199 2.021936242369472 8.097526591115551 -1.001649242573136 3.091217127777414 -1.121544259135674 3.145814976261 -5.601937532846225 -4.285877158378675 -5.600540831480743 -4.176901973356207 1.341986773373886 -4.103678421953079 1.336172223091126 -3.919127434132936 1.336172223091126 -3.426441934360624 7.48434841632843 -3.919127434132936 -4.197406435494571 -3.906323168964242 -4.207936052303553 -3.539831343929594 -4.074543774712506 -3.510413099263281 1.336172223091126 -4.323366513692371 1.336172223091126 -3.911842736837371 7.48434841632843 -4.323366513692371 1.336172223091125 -3.851737772472658 7.484348416328429 -4.161523032657492 1.336172223091125 -4.161523032657492 1.336172223091126 -1.501688990757509 7.48434841632843 -1.811473400382779 1.336172223091126 -1.811473400382779 -3.904849011048787 -2.829543218396435 -4.002054740016886 -2.751892858936738 -3.054622934974881 -2.652496146602985 -4.317043721675873 -3.886981074854326 -4.548816978931427 -3.992246938446414 -4.584673047065735 -3.886981074854326 6.200269010085168 -3.676611865574002 12.32869786298523 -1.068931443338561 12.37991994486331 -1.170188541916581 7.099454365084103 -3.157335906409499 7.042478665492553 -3.0579966201888 12.65024069585977 0.1555142783734717 -1.359823511635173 -3.991770761742349 5.497885797001669 -4.195025570283538 5.498723478042611 -4.304003729090315 1.047798218522696 2.556907610501718 1.052599619174476 2.447992343471312 -5.810040288314465 2.356368562112011 3.272678277624529 0.6929156207975984 8.920339665811422 3.972390455149541 8.992918972889115 3.879561386303931 3.219001459711274 0.7306060224236908 3.162187818934207 0.8300020072767896 8.838692483510227 4.064684875963754 5.879996342784142 2.385105372291689 5.881356040750983 2.276130350597654 -1.05815630851208 2.568714925286193 5.878332357443201 2.264896201096839 -1.065693258161062 2.444689632603452 -1.061441379121859 2.553618639921662 -1.336172223091126 2.793267631778692 -7.48434841632843 2.793267631778692 -7.48434841632843 3.285952844951019 7.48434841632843 -3.426441934360624 7.48434841632843 -3.919127434132937 -4.373805526414469 -3.786082117950414 -4.992093348699553 -3.707552063028582 -4.367716810338519 -3.419527989936349 1.336172223091126 -3.911842736837372 7.48434841632843 -3.911842736837372 7.48434841632843 -4.323366513692371 7.484348416328429 -3.851737772472658 7.48434841632843 -1.50168899075751 7.48434841632843 -1.811473400382779 1.336172223091126 -1.50168899075751 -3.071376953586833 -2.528029870351948 -4.01861156644576 -2.628582916074811 -3.521514195545894 -2.318362213566327 5.090084218558638 -2.130050174670152 11.24429520147112 0.4832352675482442 11.29550869958536 0.3819761689427624 6.246664052589845 -3.799673615981539 6.22088480913609 -3.692597457778136 12.39644358099423 -1.179940226426094 -1.246517528801427 -4.550546713363268 5.621130304306502 -4.624012347117448 5.635786058304162 -4.732383390786898 -1.361171579666276 -4.108489238448604 -1.356407496565788 -3.999573410498429 5.502444219199675 -4.307636108092342 -4.090766564433891 -2.557312620769638 -4.224265238009214 -2.528195260713025 -3.597677451377235 -2.243158152309802 5.087383672399941 -2.18337100296408 5.061611741987281 -2.07629322683374 11.26295794793213 0.4419579085109923 5.763077703654339 0.2202165617892674 5.77781040199036 0.1118526383413461 -1.162861216860616 0.2884473437345334 -1.165190709042337 0.1448846668801672 -1.164349115898163 0.2538645213187106 5.77637430400276 0.07853427013600932 -4.389463072911469 -3.404813019702051 -5.016050916463099 -3.689849823559386 -4.522961146031338 -3.375695424019953 4.598967770056982 -1.79833966492206 3.980637888849862 -1.876664520023774 4.108430616914907 -1.481722326957809 -1.336172223091126 3.285952844951019 4.655911190883181 -1.902843944830234 4.037623385678563 -1.8243120086256 4.661999914893328 -1.53629016742144 4.527828169528757 -2.470008229966375 4.07769082770391 -2.260343465780514 5.024925214163027 -2.159788998055654 5.105821210832828 -2.86663478637923 4.255268363443153 -3.042708082620281 4.091038227155185 -2.761148637412749 5.044209145774468 -3.461507701973369 4.064926882103503 -3.461507701973369 4.229242106396518 -3.179979916059498 7.48434841632843 0.7910374011194875 1.336172223091126 0.7910374011194875 1.336172223091126 1.20256258411519 -1.215021998055715 -3.849100321047893 5.668530750543769 -3.901527771948362 5.689759008936475 -4.009220359061231 -1.245917132711283 -4.65707195273612 -1.245001968579687 -4.548092465262331 5.637357416913735 -4.728617467005762 -4.398925360414483 -2.600159325581975 -4.532317060479 -2.629576838601912 -4.409454769913681 -2.233667721657282 -3.632900943290331 -2.189733141137928 -4.25727745510186 -2.477757474604675 -4.25118877281414 -2.11120357100095 -1.192171369996044 -2.066029100906539 5.712701999614013 -2.117062561299272 5.733933557029467 -2.224755271440215 -1.192754216500659 -2.190516302592015 -1.192669748549435 -2.081536261301629 5.73344088719767 -2.240108200678426 -4.5656090608546 -3.341432354019074 -5.513041748663499 -3.440830012428862 -4.662815089009785 -3.26378199367109 -5.056196599029924 -3.656721323771787 -5.506334157822702 -3.447054609347743 -4.55909866668642 -3.346500601184748 3.753809016424408 -2.615614101766433 3.254240738201578 -2.307859367455506 3.35108541456917 -2.229930090628913 3.709564931190559 -1.789345549227117 3.699035689224811 -1.422854068111199 3.832427392771667 -1.393436340067068 -1.336172223091126 1.559534496414023 -7.48434841632843 1.559534496414023 -7.48434841632843 1.971059413755167 4.829653773475252 -1.802847712215602 4.203066030624735 -2.087882385388729 4.696155106397431 -1.773729652384058 5.094043006545995 -2.598784550747651 4.146611422267142 -2.698182668655443 4.996837256437833 -2.521134673002487 5.044209145774468 -2.920156948337632 5.079735093936073 -3.025492797078757 4.064926882103503 -2.920156948337632 5.152507738915643 -3.227597421005711 5.117034482475075 -3.332944258502495 4.301877161004605 -3.051757596440364 7.48434841632843 1.202562584115189 7.48434841632843 0.7910374011194871 1.336172223091126 1.202562584115189 -1.214607660721589 -3.948469926420947 -1.21452055376132 -3.839489886416141 5.690266300846059 -3.999453797983608 -4.581257623197647 -2.846054034152716 -4.678102273719453 -2.923983330856098 -5.080826238882672 -2.538299221345286 -4.499882057339431 -2.607496069431633 -4.990419312283299 -2.290878423264997 -4.372089439082432 -2.21255397974204 7.48434841632843 2.472321861005408 1.336172223091126 2.472321861005408 1.336172223091126 2.965007002528828 -4.705464220787445 -3.136219238946584 -4.669938869463472 -3.241555086694751 -5.684748763393963 -3.136219238946584 -4.672057829454055 -3.248859832323046 -5.522611505920555 -3.424933140104601 -5.686842493943526 -3.143373676442608 -1.336172223091126 1.971059413755167 -7.409068430673221 0.3249145827098133 -19.98966233534827 1.064766094517656 -7.404660809672519 0.4338412765039134 4.553338623446104 -2.190003492843049 4.102867905139561 -2.39922693608906 3.703680739113433 -2.011274437576131 -6.773888439565022 3.424174211924911 -6.796069614361738 3.316599855601481 -19.19736891434987 5.126473979874669 8.227265295491549 -3.147241571366506 8.205084261732841 -3.039666615267271 20.65074956555781 -1.444958821421544 7.793145823602609 -4.361621890856246 20.38255487059625 -3.839621650024103 7.797553449196779 -4.470548086950229 7.665359653794686 -3.821278902456142 20.26263494218131 -3.468155153201388 7.665792375382231 -3.930258553720039 7.567189501579987 -2.063511180631772 20.16446478923026 -1.710387188664076 7.567622223394784 -2.17249083189511 4.880381975831446 -3.993377869666359 4.030724667132458 -3.814649776983288 4.481195069289785 -3.605425389978992 -4.675700925023747 -2.998210361679813 -4.711173582560055 -3.103557198429646 -5.52633233621239 -2.822370538361239 -4.651826560390079 -2.863763786398194 -5.501484679215371 -2.685035624024081 -5.051014038527462 -2.475811155437392 -7.48434841632843 -3.747377295356638 -1.336172223091126 -3.747377295356638 -1.336172223091126 -4.240062436880058 7.48434841632843 2.965007002528828 -4.705464220787446 -3.087597849971966 -5.684748763393964 -3.087597849971966 -5.520432682364712 -2.806070047567281 -1.336172223091126 -1.301030195544497 -7.48434841632843 -0.9912446391528237 -1.336172223091126 -0.9912446391528237 -7.48434841632843 -1.301030195544497 -20.15843905855736 -1.71041840842217 -20.1580063523185 -1.601438652025392 -7.561596457176316 -2.172521225557526 -7.409066894753678 0.3249310810472088 -19.99406823863991 0.9558584747962992 -19.98966058625407 1.064784836080833 4.23988799867491 -3.14874530170004 3.3892568309797 -2.972904543073474 3.424729497680645 -2.867557708233359 -6.796053666512249 3.316632542204058 -19.21952810808441 5.018959681046655 -19.19734655203097 5.126533865774118 8.205091549186252 -3.039640111859205 20.62857050345016 -1.337333476700804 20.65075187313587 -1.444908266987489 7.793146669529714 -4.361620302146933 20.37814796266671 -3.730692613673115 20.38255561040468 -3.839618477489444 20.26220214244573 -3.359174136038071 20.26263486329693 -3.468154013760685 7.66535957252434 -3.821277710341584 20.16403233412861 -1.601413715692121 20.16446505373437 -1.710394046331714 7.567189758926244 -2.063517880278766 5.281576370006603 -3.714577262213224 5.184731992727119 -3.792506537220064 4.782008663444936 -3.406822535088784 -7.48434841632843 -4.680337721352934 -1.336172223091126 -4.680337721352934 -1.336172223091126 -5.091863107409017 -7.48434841632843 -4.240062436880058 4.517147758492656 -4.436747328136954 4.02661122550878 -4.120129960750964 4.644941112825926 -4.041805586192385 -1.336172223091126 -4.67196897260322 -7.48434841632843 -4.362184266770298 -1.336172223091126 -4.362184266770298 -7.48434841632843 -4.671968972603219 -7.48434841632843 -4.362184266770297 -1.336172223091126 -4.671968972603219 4.489529502429271 -2.712320343277041 4.32521338582573 -2.993849068761489 3.510245171836957 -2.712320343277041 4.584673047065735 -2.67561385234197 4.548816978931427 -2.780880566438039 4.317043721675873 -2.67561385234197 -7.561596303053825 -2.172518746637224 -20.15800619195587 -1.601436087927794 -7.561163595624159 -2.063539216700533 4.45085734128952 -2.857942148049673 4.317043721675873 -2.886148687203725 4.183229506015778 -2.8579416791598 4.085270166397095 -2.780880566438039 4.049413502216339 -2.67561385234197 4.085270166397095 -2.570346669356028 7.421110337296863 0.4342469318247725 20.01051949040724 0.9562455888556181 7.425517940747502 0.3253204034521427 -7.48434841632843 -5.091863107409017 4.587381043742893 -4.250297109005382 3.963004660012281 -4.538321168202035 3.969093198871385 -4.171767613647894 4.907821426619737 -4.411092705981898 4.774429118744769 -4.440510191280975 4.897292311241881 -4.04460144741143 4.45898714546114 -3.530783843134048 3.444202684978536 -3.425297690768829 4.294756120613209 -3.249225328591466 4.489529502429272 -3.353068421083288 3.510245171836957 -3.353068421083288 3.474719812821777 -3.247732574940354 4.548816978931427 -2.570346669356028 -20.2686605899131 -3.468131277202411 -20.26822788537411 -3.359151067887034 -7.67181798132415 -3.930234199200581 4.183229506015778 -2.493285322189331 20.00611015981752 1.065196324778427 20.01051779648356 0.9562702948233963 7.421108802549014 0.4342692620815847 4.500018497887991 -4.01532093159186 3.55278321095577 -4.115873932433938 4.049880885509911 -3.805653368389173 3.91758195470852 -4.390624369043138 3.784083870261765 -4.361507032611902 4.410671495546644 -4.076470155483391 19.24171640300716 5.0217752023098 6.818240106739196 3.319456624246194 6.796058569085949 3.427031331626517 3.570827690233118 -3.778814896990638 3.473621646181085 -3.701164548957879 4.42105411993872 -3.601767851251229 -7.671818428944595 -3.930238394956164 -20.26822831427421 -3.35915500811207 -7.671385720833205 -3.821258865021147 4.45085734128952 -2.493285322189331 4.317043721675873 -2.465078314145406 -20.65075244470812 -1.334488134425936 -8.22727480719437 -3.036800716469167 -8.249456161287556 -3.14437498844048 19.21954454934701 5.129323310270896 19.24172591903273 5.021748519984212 6.79606559508311 3.427016675112495 -7.814002178949348 -4.470136603468768 -20.39459606793192 -3.730284760667527 -7.809594555638277 -4.361209909732523 -20.39900543977191 -3.839206439762744 -20.39459776938297 -3.730280244790479 -7.814004200164126 -4.470135452444637 -20.67293229873431 -1.442089613319826 -20.65075113526788 -1.33451525555063 -8.249451644654457 -3.14438851003459</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"168\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 1 6 12 7 2 8 14 9 1 10 0 11 8 12 7 13 16 14 6 15 18 16 7 17 1 18 20 19 12 20 2 21 12 22 22 23 14 24 24 25 1 26 26 27 14 28 0 29 16 30 7 31 28 32 18 33 30 34 7 35 20 36 32 37 12 38 24 39 20 40 1 41 12 42 34 43 22 44 36 45 24 46 14 47 38 48 14 49 26 50 7 51 40 52 41 53 38 54 26 55 44 56 30 57 46 58 7 59 22 60 34 61 48 62 50 63 51 64 52 65 34 66 12 67 32 68 56 69 52 70 57 71 60 72 57 73 61 74 36 75 14 76 38 77 7 78 64 79 40 80 66 81 44 82 67 83 66 84 38 85 44 86 46 87 70 88 7 89 72 90 48 91 73 92 48 93 34 94 73 95 50 96 76 97 51 98 56 99 50 100 52 101 34 102 32 103 78 104 60 105 56 106 57 107 60 108 61 109 80 110 82 111 36 112 38 113 7 114 84 115 64 116 86 117 67 118 87 119 86 120 66 121 67 122 82 123 38 124 66 125 70 126 90 127 7 128 92 129 72 130 93 131 72 132 73 133 93 134 73 135 34 136 78 137 96 138 97 139 98 140 76 141 102 142 51 143 97 144 104 145 105 146 108 147 109 148 104 149 112 150 113 151 108 152 61 153 116 154 80 155 7 156 90 157 84 158 118 159 87 160 119 161 118 162 86 163 87 164 122 165 66 166 86 167 122 168 82 169 66 170 124 171 125 172 92 173 93 174 124 175 92 176 93 177 73 178 128 179 73 180 78 181 128 182 96 183 98 184 130 185 97 139 105 186 98 187 76 188 132 189 102 190 104 191 109 192 105 193 113 194 109 148 108 147 134 195 113 196 112 197 80 198 116 199 136 200 138 201 119 202 125 203 138 204 118 205 119 206 140 207 86 208 118 209 140 210 122 211 86 212 116 213 142 214 136 215 124 216 138 217 125 218 124 219 93 220 144 221 128 222 144 223 93 224 102 225 132 226 146 227 148 228 149 229 150 230 154 231 96 183 130 185 149 232 156 233 157 234 156 235 160 236 161 237 164 238 160 239 165 240 168 241 165 242 169 243 134 244 112 245 172 246 174 247 118 248 138 249 174 250 140 251 118 252 142 253 176 254 177 255 136 256 142 257 177 258 180 259 138 260 124 261 144 262 180 263 124 264 146 265 182 266 183 267 132 268 182 269 146 270 148 271 150 272 186 273 149 274 157 275 150 276 154 277 130 278 188 279 157 280 156 281 161 282 161 283 160 284 164 285 168 286 164 287 165 288 190 289 168 290 169 291 192 292 134 293 172 294 180 295 174 296 138 297 176 298 194 299 195 300 176 301 195 302 177 303 192 304 172 305 198 306 200 307 183 308 201 309 183 310 182 311 201 312 204 313 154 277 188 279 206 314 207 315 208 316 212 317 148 318 186 319 206 320 214 321 215 322 214 323 218 324 219 325 222 326 223 327 218 328 226 329 227 330 222 331 230 332 231 333 226 334 190 335 169 336 234 337 194 338 200 339 236 340 194 341 236 342 195 343 238 344 198 345 239 346 238 347 192 304 198 306 200 348 201 349 236 350 204 351 242 352 243 353 188 354 242 352 204 351 207 355 246 356 208 357 206 358 215 359 207 360 212 361 186 362 248 363 214 364 219 365 215 366 218 367 223 368 219 369 222 370 227 371 223 372 231 373 227 374 226 375 250 376 231 377 230 378 252 379 190 380 234 381 254 382 239 383 255 384 254 385 238 344 239 346 252 386 234 387 258 388 243 389 260 390 255 391 242 392 260 393 243 394 262 395 212 396 248 397 264 398 265 399 266 400 208 401 246 402 270 403 265 399 272 404 266 400 272 404 274 405 266 400 274 405 276 406 266 400 276 406 278 407 266 400 266 400 278 407 280 408 266 400 280 408 282 409 284 410 250 411 230 412 260 413 254 382 255 384 286 414 287 415 258 416 287 417 252 418 258 419 262 420 290 421 291 422 262 423 248 424 290 425 264 398 266 400 294 426 246 427 296 428 270 429 266 400 282 409 298 430 300 431 250 432 284 433 291 434 302 435 286 436 302 437 287 438 286 439 300 440 284 441 304 442 290 443 302 444 291 445 270 446 296 447 306 448 294 426 266 400 308 449 266 400 298 430 310 450 312 451 304 452 313 453 312 454 300 455 304 456 306 457 316 458 313 459 296 460 316 461 306 462 308 449 266 400 310 450 316 463 312 464 313 465</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1865\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1866\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"168\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 9 10 11 3 13 4 5 4 15 17 10 9 10 19 11 13 21 4 23 13 3 4 25 15 5 15 27 29 10 17 10 31 19 13 33 21 4 21 25 23 35 13 15 25 37 27 15 39 42 43 10 45 27 39 10 47 31 49 35 23 53 54 55 33 13 35 58 53 59 62 58 63 39 15 37 43 65 10 68 45 69 45 39 69 10 71 47 74 49 75 74 35 49 54 77 55 53 55 59 79 33 35 58 59 63 81 62 63 39 37 83 65 85 10 88 68 89 68 69 89 69 39 83 10 91 71 94 75 95 94 74 75 79 35 74 99 100 101 54 103 77 106 107 100 107 110 111 111 114 115 81 117 62 85 91 10 120 88 121 88 89 121 89 69 123 69 83 123 95 126 127 95 127 94 129 74 94 129 79 74 131 99 101 99 106 100 103 133 77 106 110 107 111 110 114 115 114 135 137 117 81 126 120 139 120 121 139 121 89 141 89 123 141 137 143 117 126 139 127 145 94 127 94 145 129 147 133 103 151 152 153 131 101 155 158 159 152 162 163 159 166 163 167 170 166 171 173 115 135 139 121 175 121 141 175 178 179 143 178 143 137 127 139 181 127 181 145 184 185 147 147 185 133 187 151 153 151 158 152 189 131 155 162 159 158 167 163 162 166 167 171 170 171 191 173 135 193 139 175 181 196 197 179 178 196 179 199 173 193 202 184 203 202 185 184 189 155 205 209 210 211 187 153 213 216 217 211 220 221 217 221 224 225 225 228 229 229 232 233 235 170 191 237 203 197 196 237 197 240 199 241 199 193 241 237 202 203 244 245 205 205 245 189 209 247 210 210 216 211 249 187 213 216 220 217 220 224 221 224 228 225 229 228 232 233 232 251 235 191 253 256 240 257 240 241 257 259 235 253 256 261 244 244 261 245 249 213 263 267 268 269 271 247 209 267 273 268 267 275 273 267 277 275 267 279 277 281 279 267 283 281 267 233 251 285 256 257 261 259 288 289 259 253 288 292 293 263 293 249 263 295 267 269 271 297 247 299 283 267 285 251 301 289 303 292 289 288 303 305 285 301 292 303 293 307 297 271 309 267 295 311 299 267 314 305 315 305 301 315 314 317 307 307 317 297 311 267 309 314 315 317</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1865\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1870\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1873\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1871\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1872\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1871\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"28\" source=\"#ID1875\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1875\">0.4059732258319855 0.3273707330226898 0.4861110150814056 0.001826941967010498 0.36569744348526 0.4825262129306793 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.001826941967010498 0.36569744348526 0.4825262129306793 0.4059732258319855 0.3273707330226898 0.4861110150814056 -0.002457162365317345 0.3667368292808533 0.4761049449443817 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.4000329077243805 0.333241194486618 0.4851138293743134 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4000329077243805 0.333241194486618 0.4851138293743134 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.001826941967010498 0.36569744348526 0.4825262129306793 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.001826941967010498 0.36569744348526 0.4825262129306793 -0.002457162365317345 0.3667368292808533 0.4761049449443817 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4000329077243805 0.333241194486618 0.4851138293743134 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4059732258319855 0.3273707330226898 0.4861110150814056 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4000329077243805 0.333241194486618 0.4851138293743134 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.002138050273060799 0.3725078105926514 0.4755116403102875</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1872\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"28\" source=\"#ID1876\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1876\">-0.08952341132944511 -0.9665019931361217 -0.2405399261824177 -0.09307031415484783 -0.9906940182325136 -0.09931404161262442 -0.08943517782608092 -0.96582685467682 -0.2432690604090423 0.08943517782608092 0.96582685467682 0.2432690604090423 0.09307031415484783 0.9906940182325136 0.09931404161262442 0.08952341132944511 0.9665019931361217 0.2405399261824177 -0.09308928585367543 -0.9907963814413132 -0.09826960558612438 0.09308928585367543 0.9907963814413132 0.09826960558612438 0.2301586543286202 0.693333295190555 0.6828732939702983 0.2287261533222507 0.6936103530025589 0.6830732208146296 0.5000460578009219 0.6103526617752574 0.6143480840220922 -0.5000460578009219 -0.6103526617752574 -0.6143480840220922 -0.2287261533222507 -0.6936103530025589 -0.6830732208146296 -0.2301586543286202 -0.693333295190555 -0.6828732939702983 -0.1956589388659544 0.7079285700643496 0.6786418196136265 -0.2198282281697055 0.704780168735802 0.6745075713856016 0.2198282281697055 -0.704780168735802 -0.6745075713856016 0.1956589388659544 -0.7079285700643496 -0.6786418196136265 -0.6416528063592415 0.5643263746532536 0.5194395238735935 0.6416528063592415 -0.5643263746532536 -0.5194395238735935 0.00891550759678178 -0.1584192619794581 -0.9873316824442412 0.01283181494370217 -0.113021758016135 -0.993509651055385 0.008890355094381066 -0.1587090432062825 -0.9872853696833769 -0.008890355094381066 0.1587090432062825 0.9872853696833769 -0.01283181494370217 0.113021758016135 0.993509651055385 -0.00891550759678178 0.1584192619794581 0.9873316824442412 0.01288447646505487 -0.1124075253154992 -0.9935786524068777 -0.01288447646505487 0.1124075253154992 0.9935786524068777</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1874\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"24\" source=\"#ID1877\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1877\">3.740585338318493 3.013731988598182 -0.3190001965646728 2.984658132854389 3.679196662021946 3.062556130331506 -0.3675170164644492 3.445144035647753 -0.3238915542370874 3.495903695925194 3.73570239328401 3.524241298361504 -1.023265483343171 0.6100779464911402 -0.9825317248039001 0.540116630602465 -1.065686325361761 0.5500585549780868 0.2558773499497036 0.7229336923277917 0.2578794837875551 0.6460002533954288 -3.741303136691545 0.8282759892767549 -2.758101724615067 2.262331227225474 -2.737613796339283 2.203216483757234 -2.811295632258756 2.19775447044182 4.180446050558359 -1.803728767205834 0.1805791100523501 -2.249569534563329 4.236472959786632 -1.754379034249905 0.2579904479145674 0.6477436715358349 -3.739199756091682 0.7530193926241987 -3.74119699173816 0.8299539626872152 0.4454430976743594 -2.467499234909472 0.393218062595942 -2.426247833057311 4.353792175678316 -1.799876336016639</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"8\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 1 4 0 5 8 6 9 7 10 8 14 9 15 10 8 11 14 12 18 13 15 14 20 15 21 16 22 17 15 18 9 19 8 20 26 21 21 22 20 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1873\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1874\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"8\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 5 4 7 11 12 13 13 16 17 16 19 17 23 24 25 13 12 16 25 24 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1873\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1878\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1881\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1879\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1880\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1879\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1883\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1883\">0.4527354836463928 0.3918493390083313 0.4402284026145935 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.278479278087616 0.3278618454933167 0.4869411289691925 0.278479278087616 0.3278618454933167 0.4869411289691925 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.2781703174114227 0.328160971403122 0.4818757474422455 0.2781703174114227 0.328160971403122 0.4818757474422455 0.278479278087616 0.3278618454933167 0.4869411289691925 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.278479278087616 0.3278618454933167 0.4869411289691925 0.278479278087616 0.3278618454933167 0.4869411289691925 0.2781703174114227 0.328160971403122 0.4818757474422455 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2781703174114227 0.328160971403122 0.4818757474422455 0.278479278087616 0.3278618454933167 0.4869411289691925 0.450115442276001 0.4019450545310974 0.4316630661487579 0.2781703174114227 0.328160971403122 0.4818757474422455 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.2781703174114227 0.328160971403122 0.4818757474422455 0.450115442276001 0.4019450545310974 0.4316630661487579 0.450115442276001 0.4019450545310974 0.4316630661487579 0.450115442276001 0.4019450545310974 0.4316630661487579 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2769213914871216 0.3349538445472717 0.4808885753154755</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1880\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1884\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"90\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1884\">0.3753432908168096 -0.9152399140173331 0.1464694979453154 0.3743393837305015 -0.9162770354900349 0.1425005965666867 0.3140457485376386 -0.9472657429590871 -0.06374072514180626 -0.3140457485376386 0.9472657429590871 0.06374072514180626 -0.3743393837305015 0.9162770354900349 -0.1425005965666867 -0.3753432908168096 0.9152399140173331 -0.1464694979453154 0.3103356675491998 -0.9476724175128053 -0.0748916719817901 -0.3103356675491998 0.9476724175128053 0.0748916719817901 -0.0320246630172527 0.6447511012904932 0.7637214402799806 -0.03197120955853455 0.6446490719368806 0.7638098034264045 -0.0306315124552247 0.6420879074995785 0.7660188179721946 0.0306315124552247 -0.6420879074995785 -0.7660188179721946 0.03197120955853455 -0.6446490719368806 -0.7638098034264045 0.0320246630172527 -0.6447511012904932 -0.7637214402799806 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 -0.3734428630561606 0.2653397858601099 -0.8888955090853641 -0.214729926251855 -0.1557520238905489 -0.9641744478183761 -0.3765001999056426 0.2754405094322084 -0.8845225408290831 0.3765001999056426 -0.2754405094322084 0.8845225408290831 0.214729926251855 0.1557520238905489 0.9641744478183761 0.3734428630561606 -0.2653397858601099 0.8888955090853641 -0.0305931151776909 0.6420143877261446 0.7660819716298956 0.0305931151776909 -0.6420143877261446 -0.7660819716298956 -0.2048984381399542 -0.1775537005661291 -0.9625441877976724 0.2048984381399542 0.1775537005661291 0.9625441877976724</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1882\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"21\" source=\"#ID1885\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"42\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1885\">5.675606409170287 3.645582267663513 5.659946265937674 3.540001426781414 3.820565024918846 4.017062055030105 5.507814679000523 3.214093020966341 3.664835962078402 3.64737777577287 3.666841234253838 3.687337664122705 -2.944011794455307 0.5884805452487562 -2.931970355226452 0.5147237154584141 -4.716171622766688 0.01923609011483403 -2.744649910765467 3.95546743810215 -2.74813267594593 3.915570386156207 -2.817198242306778 3.907795007853151 -5.901691802031239 0.7076990140758661 -4.290956863184142 1.55444838564906 -5.812055584839532 0.6282526547049071 -2.925505739982495 0.4946091484498839 -4.687369548932571 -0.1078723146314636 -4.70873493322951 -0.003039342193471217 -0.7178649052072967 -2.219952427122569 -0.658349870247449 -2.191309704240082 -0.08993094495510154 -3.648226767105204</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"7\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 1 3 6 4 2 5 8 6 9 7 10 8 14 9 15 10 16 11 20 12 21 13 22 14 9 15 26 16 10 17 28 18 21 19 20 20</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1881\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1882\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"7\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 3 7 4 11 12 13 17 18 19 23 24 25 11 27 12 25 24 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1881\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1886\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1889\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1887\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1888\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1887\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"28\" source=\"#ID1891\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1891\">-0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4857785105705261 0.3487239181995392 0.4755116403102875</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1888\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"28\" source=\"#ID1892\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"84\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1892\">0.06643847930277297 -0.9938912340263244 -0.08812572492504646 0.06633104125145112 -0.97728997819365 -0.2012572768591321 0.06643161212964106 -0.9940951924153975 -0.08579970469908901 -0.06643161212964106 0.9940951924153975 0.08579970469908901 -0.06633104125145112 0.97728997819365 0.2012572768591321 -0.06643847930277297 0.9938912340263244 0.08812572492504646 0.06632714945836096 -0.9771252259347203 -0.2020569278365634 -0.06632714945836096 0.9771252259347203 0.2020569278365634 0.1483616996249534 0.7064948699628552 0.6919926334872094 0.1667432826893118 0.7039832970799793 0.6903652620970971 0.5000246418360753 0.6103909512396994 0.6143274730967185 -0.5000246418360753 -0.6103909512396994 -0.6143274730967185 -0.1667432826893118 -0.7039832970799793 -0.6903652620970971 -0.1483616996249534 -0.7064948699628552 -0.6919926334872094 -0.2829318543527633 0.6944133696561045 0.6616189521434231 -0.2819434410746255 0.6946029234445578 0.6618418804950871 0.2819434410746255 -0.6946029234445578 -0.6618418804950871 0.2829318543527633 -0.6944133696561045 -0.6616189521434231 -0.6417297630809646 0.5643090885482262 0.5193632291161162 0.6417297630809646 -0.5643090885482262 -0.5193632291161162 0.03243382116071587 -0.1353354646732991 -0.9902688318060792 0.03183450279756919 -0.1273658168435666 -0.9913448003249942 0.0324374153669634 -0.1353833180656773 -0.9902621729995744 -0.0324374153669634 0.1353833180656773 0.9902621729995744 -0.03183450279756919 0.1273658168435666 0.9913448003249942 -0.03243382116071587 0.1353354646732991 0.9902688318060792 0.0318232705334067 -0.1272166352544075 -0.9913643160650402 -0.0318232705334067 0.1272166352544075 0.9913643160650402</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1890\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"24\" source=\"#ID1893\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1893\">-0.514299458387062 3.558040160755181 -4.622104547076903 3.529735340488684 -0.5773041346071366 3.60557285021357 -4.660232738055397 3.07144481308713 -4.618183617302604 3.123022643673471 -0.5103840265403392 3.151817006159239 2.970250233962921 1.931303125244438 3.010987332162051 1.861343232198031 2.927827369906226 1.871284954379196 4.543290583036389 0.6429759251745825 4.534230771580503 0.5663574870330614 0.4995400012906756 0.7478869024359247 0.6423111745411636 0.8299071247853209 0.6628200850528088 0.7707955892611047 0.5891112246848734 0.7653338723494632 0.0746122667299122 -2.457676676137602 -3.969698889945972 -2.966744434585249 0.1187093862438805 -2.40132840165215 4.534342051249654 0.5681553693967262 0.4905992050906123 0.6730013937242312 0.4996467130933653 0.7496219451777118 -3.866319101991072 -3.067124713239394 -3.924921539642796 -3.031533338845224 0.1128090865029688 -2.491105099802389</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"8\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 1 4 0 5 8 6 9 7 10 8 14 9 15 10 8 11 14 12 18 13 15 14 20 15 21 16 22 17 15 18 9 19 8 20 26 21 21 22 20 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1889\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1890\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"8\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 5 4 7 11 12 13 13 16 17 16 19 17 23 24 25 13 12 16 25 24 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1889\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1894\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1897\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1895\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1896\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1895\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID1899\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1899\">-0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2036990523338318 0.3694864809513092 0.4869411289691925</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1896\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID1900\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"108\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1900\">0.9795936295032293 0.18214670401301 -0.08496410567932189 0.9795936295032293 0.18214670401301 -0.08496410567932189 0.9795936295032293 0.18214670401301 -0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 0.1912466287913627 -0.9673905650834347 0.1660729404914957 0.1901391011590887 -0.9683589746445472 0.1616416358361136 0.1323020193661333 -0.9897186121510229 -0.05434376167967066 -0.1323020193661333 0.9897186121510229 0.05434376167967066 -0.1901391011590887 0.9683589746445472 -0.1616416358361136 -0.1912466287913627 0.9673905650834347 -0.1660729404914957 -0.2737980892231487 0.2910412612865604 -0.9166949277521288 -0.1877574692592857 -0.1524536115158973 -0.9703118205366297 -0.27525050122197 0.3015517299802667 -0.9128547067978357 0.27525050122197 -0.3015517299802667 0.9128547067978357 0.1877574692592857 0.1524536115158973 0.9703118205366297 0.2737980892231487 -0.2910412612865604 0.9166949277521288 0.04849407853223773 0.6545005993707064 0.7545046651749046 0.04873458354262738 0.6535903151767286 0.7552778563377263 0.04872646369884298 0.6536210681566902 0.7552517666295874 -0.04872646369884298 -0.6536210681566902 -0.7552517666295874 -0.04873458354262738 -0.6535903151767286 -0.7552778563377263 -0.04849407853223773 -0.6545005993707064 -0.7545046651749046 0.1288838023786896 -0.9894411854224582 -0.06629559619018259 -0.1288838023786896 0.9894411854224582 0.06629559619018259 0.04848283384157669 0.654543128816357 0.754468493273234 -0.04848283384157669 -0.654543128816357 -0.754468493273234 -0.1823608443937586 -0.1741080918962435 -0.9676935954982056 0.1823608443937586 0.1741080918962435 0.9676935954982056 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1898\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"24\" source=\"#ID1901\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"48\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1901\">3.942270540375164 3.460901661789526 3.964759705040326 3.565723571073764 4.068781433212398 3.498097921829887 0.4826561900046933 4.017302936508278 0.4710806939569447 3.911389289020603 -1.281733807990918 4.302568195073747 -2.513045940023659 3.740222789853266 -0.9861907509344283 4.496649532908113 -2.44286319332222 3.649448456932891 2.326884740212548 0.3388181497531386 0.6230291713841536 -0.1205493134629069 0.5893996542737505 -0.01774090714535293 0.2117883897707467 3.230774675204582 -1.545347190268103 3.577436442692035 -1.542667919918237 3.61737196778006 2.304360962456652 0.4165031666429619 2.325117488597726 0.3439589166597305 0.5874647138896388 -0.01209407751420741 -4.141120206364048 0.1043282782762547 -4.083379394414218 0.1351289780370625 -3.171607438855324 -1.08978836902274 -3.992289723655305 3.772382147634574 -3.99577208095218 3.732484980792526 -4.064832195748746 3.724709580097823</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"8\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 12 6 13 7 14 8 18 9 19 10 20 11 7 12 24 13 8 14 26 15 18 16 20 17 28 18 13 19 12 20 30 21 31 22 32 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1897\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1898\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"8\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 9 10 11 15 16 17 21 22 23 9 25 10 21 23 27 17 16 29 33 34 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1897\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1902\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1905\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1903\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1904\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1903\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"44\" source=\"#ID1906\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1906\">0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1904\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"44\" source=\"#ID1907\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"132\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1907\">0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.9997871805147028 0.02062992192086592 0 -0.9997871805147028 0.02062992192086592 0 -0.9997871805147028 0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 0 0 -1 -0 -0 1 1 0 0 -1 -0 -0 0 -0.9997871805147028 0.02062992192086593 0 -0.9997871805147028 0.02062992192086593 0 -0.9997871805147028 0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.2374728579818554 0.971394174226884 0 0.2374728579818554 0.971394174226884 0 0.2374728579818554 0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 0 0.2374728579818554 0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -1 0 0 1 -0 -0</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"20\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 0 5 4 19 7 20 8 9 21 10 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 35 34 39 38 41 42 28 30 31 33 43</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1905\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1908\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1911\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1909\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1910\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1909\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1913\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1913\">-0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1910\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1914\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1914\">0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 -0 -1 -0</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1912\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"4\" source=\"#ID1915\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"S\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"T\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"8\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1915\">4.980598986148834 -5.075943398475648 -4.980599880218506 -5.075943398475648 4.980598986148834 1.353845890363058 -4.980599880218506 1.353845890363058</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"Material3\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 6 3</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1911\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"TEXCOORD\" offset=\"1\" set=\"0\" source=\"#ID1912\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"2\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">3 4 5 7 4 3</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1911\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1916\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1919\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1917\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1918\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1917\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"300\" source=\"#ID1920\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"900\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1920\">0.2478943765163422 1.814255595207214 0.000725477933883667 0.2448281943798065 1.616339206695557 0.007112216204404831 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.616339206695557 0.007112216204404831 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2851106524467468 1.814255595207214 -0.01469011977314949 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2851106524467468 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2478943765163422 1.616339206695557 -0.00830315425992012 0.2478943765163422 1.616339206695557 -0.00830315425992012 0.2478943765163422 1.616339206695557 0.02252786979079247 0.2478943765163422 1.616339206695557 0.02252786979079247 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2695431709289551 1.453958511352539 0.0193280465900898 0.2695431709289551 1.453958511352539 0.0193280465900898 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2664770185947418 1.453958511352539 0.03474375978112221 0.2664770185947418 1.453958511352539 0.03474375978112221 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2566267848014832 1.814255595207214 0.01379405707120895 0.269695371389389 1.814255595207214 0.0225263275206089 0.269695371389389 1.814255595207214 0.0225263275206089 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2782755792140961 1.453958511352539 0.006259582936763763 0.2782755792140961 1.453958511352539 0.006259582936763763 0.2566267848014832 1.616339206695557 -0.02137184515595436 0.2566267848014832 1.616339206695557 -0.02137184515595436 0.2695431709289551 1.453958511352539 0.05015917494893074 0.2695431709289551 1.453958511352539 0.05015917494893074 0.2566267848014832 1.616339206695557 0.0355965681374073 0.2566267848014832 1.616339206695557 0.0355965681374073 0.2851106524467468 1.814255595207214 0.02559248730540276 0.2851106524467468 1.814255595207214 0.02559248730540276 0.269695371389389 1.814255595207214 0.0225263275206089 0.269695371389389 1.814255595207214 0.0225263275206089 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2782755792140961 1.312108874320984 0.05416208878159523 0.2782755792140961 1.312108874320984 0.05416208878159523 0.2695431709289551 1.312108874320984 0.06723077595233917 0.2695431709289551 1.312108874320984 0.06723077595233917 0.2664770185947418 1.312108874320984 0.08264619112014771 0.2664770185947418 1.312108874320984 0.08264619112014771 0.3005262613296509 1.814255595207214 0.0225263275206089 0.3005262613296509 1.814255595207214 0.0225263275206089 0.269695371389389 1.616339206695557 0.04432866349816322 0.2851106524467468 1.814255595207214 0.02559248730540276 0.2851106524467468 1.814255595207214 0.02559248730540276 0.269695371389389 1.616339206695557 0.04432866349816322 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2696953117847443 1.616339206695557 -0.03010406345129013 0.2696953117847443 1.616339206695557 -0.03010406345129013 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2913441359996796 1.312108874320984 0.0454297699034214 0.2913441359996796 1.312108874320984 0.0454297699034214 0.2913441359996796 1.453958511352539 -0.002472575753927231 0.2913441359996796 1.453958511352539 -0.002472575753927231 0.2695431709289551 1.312108874320984 0.09806185960769653 0.2695431709289551 1.312108874320984 0.09806185960769653 0.2782755792140961 1.453958511352539 0.06322780251502991 0.2782755792140961 1.453958511352539 0.06322780251502991 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3135948479175568 1.814255595207214 0.01379405707120895 0.2851106524467468 1.616339206695557 0.04739503934979439 0.3005262613296509 1.814255595207214 0.0225263275206089 0.3005262613296509 1.814255595207214 0.0225263275206089 0.2851106524467468 1.616339206695557 0.04739503934979439 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2851106524467468 1.616339206695557 -0.03317039087414742 0.2851106524467468 1.616339206695557 -0.03317039087414742 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2696953117847443 1.160151720046997 0.1071765571832657 0.2696953117847443 1.160151720046997 0.1071765571832657 0.2566267848014832 1.160151720046997 0.1159086525440216 0.2566267848014832 1.160151720046997 0.1159086525440216 0.2478943765163422 1.160151720046997 0.1289774775505066 0.2478943765163422 1.160151720046997 0.1289774775505066 0.2448281943798065 1.160151720046997 0.1443928182125092 0.2448281943798065 1.160151720046997 0.1443928182125092 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3005262613296509 1.616339206695557 0.04432866349816322 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3005262613296509 1.616339206695557 0.04432866349816322 0.2913441956043243 1.453958511352539 0.07196013629436493 0.2913441956043243 1.453958511352539 0.07196013629436493 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3005262613296509 1.616339206695557 -0.03010406345129013 0.3005262613296509 1.616339206695557 -0.03010406345129013 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3067594766616821 1.453958511352539 -0.005538847297430039 0.3067594766616821 1.453958511352539 -0.005538847297430039 0.2851106524467468 1.160151720046997 0.1041101217269898 0.2851106524467468 1.160151720046997 0.1041101217269898 0.3067594766616821 1.312108874320984 0.04236360266804695 0.3067594766616821 1.312108874320984 0.04236360266804695 0.2478943765163422 1.160151720046997 0.1598084419965744 0.2478943765163422 1.160151720046997 0.1598084419965744 0.2782755792140961 1.312108874320984 0.1111303716897965 0.2782755792140961 1.312108874320984 0.1111303716897965 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3135948479175568 1.616339206695557 0.0355965681374073 0.3135948479175568 1.616339206695557 0.0355965681374073 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3067594766616821 1.453958511352539 0.07502646744251251 0.3067594766616821 1.453958511352539 0.07502646744251251 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3135948479175568 1.616339206695557 -0.02137184515595436 0.3135948479175568 1.616339206695557 -0.02137184515595436 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3221750557422638 1.453958511352539 -0.002472575753927231 0.3221750557422638 1.453958511352539 -0.002472575753927231 0.2688740491867065 1.048043012619019 0.1517271846532822 0.2688740491867065 1.048043012619019 0.1517271846532822 0.2534586787223816 1.048043012619019 0.1547933518886566 0.2534586787223816 1.048043012619019 0.1547933518886566 0.2403901517391205 1.048043012619019 0.1635255962610245 0.2403901517391205 1.048043012619019 0.1635255962610245 0.2316577583551407 1.048043012619019 0.1765943020582199 0.2316577583551407 1.048043012619019 0.1765943020582199 0.228591576218605 1.048043012619019 0.1920096725225449 0.228591576218605 1.048043012619019 0.1920096725225449 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3223271369934082 1.616339206695557 0.02252786979079247 0.3223271369934082 1.616339206695557 0.02252786979079247 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3221750557422638 1.453958511352539 0.07196013629436493 0.3221750557422638 1.453958511352539 0.07196013629436493 0.2913441956043243 1.312108874320984 0.1198627650737763 0.2913441956043243 1.312108874320984 0.1198627650737763 0.3223271369934082 1.616339206695557 -0.00830315425992012 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.616339206695557 -0.00830315425992012 0.3352437019348145 1.453958511352539 0.006259582936763763 0.3352437019348145 1.453958511352539 0.006259582936763763 0.3221750557422638 1.312108874320984 0.0454297699034214 0.3221750557422638 1.312108874320984 0.0454297699034214 0.2842896282672882 1.048043012619019 0.1547933518886566 0.2842896282672882 1.048043012619019 0.1547933518886566 0.3005262613296509 1.160151720046997 0.1071765571832657 0.3005262613296509 1.160151720046997 0.1071765571832657 0.2316577583551407 1.048043012619019 0.207425132393837 0.2316577583551407 1.048043012619019 0.207425132393837 0.2566267848014832 1.160151720046997 0.1728769987821579 0.2566267848014832 1.160151720046997 0.1728769987821579 0.3253934681415558 1.616339206695557 0.007112216204404831 0.3253934681415558 1.616339206695557 0.007112216204404831 0.3352437019348145 1.453958511352539 0.06322780251502991 0.3352437019348145 1.453958511352539 0.06322780251502991 0.3067594766616821 1.312108874320984 0.1229289472103119 0.3067594766616821 1.312108874320984 0.1229289472103119 0.3439759612083435 1.453958511352539 0.0193280465900898 0.3439759612083435 1.453958511352539 0.0193280465900898 0.3352437019348145 1.312108874320984 0.05416208878159523 0.3352437019348145 1.312108874320984 0.05416208878159523 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.3439759612083435 1.453958511352539 0.05015917494893074 0.3439759612083435 1.453958511352539 0.05015917494893074 0.3221750557422638 1.312108874320984 0.1198627650737763 0.3221750557422638 1.312108874320984 0.1198627650737763 0.269695371389389 1.160151720046997 0.1816091537475586 0.269695371389389 1.160151720046997 0.1816091537475586 0.3470422923564911 1.453958511352539 0.03474375978112221 0.3470422923564911 1.453958511352539 0.03474375978112221 0.3439759612083435 1.312108874320984 0.06723077595233917 0.3439759612083435 1.312108874320984 0.06723077595233917 0.3135948479175568 1.160151720046997 0.1159086525440216 0.3135948479175568 1.160151720046997 0.1159086525440216 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2973582744598389 1.048043012619019 0.1635255962610245 0.2973582744598389 1.048043012619019 0.1635255962610245 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2403901517391205 1.048043012619019 0.220493957400322 0.2403901517391205 1.048043012619019 0.220493957400322 0.3352437019348145 1.312108874320984 0.1111303716897965 0.3352437019348145 1.312108874320984 0.1111303716897965 0.2851106524467468 1.160151720046997 0.1846755594015122 0.2851106524467468 1.160151720046997 0.1846755594015122 0.3470422923564911 1.312108874320984 0.08264619112014771 0.3470422923564911 1.312108874320984 0.08264619112014771 0.3223271369934082 1.160151720046997 0.1289774775505066 0.3223271369934082 1.160151720046997 0.1289774775505066 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9449533820152283 0.2128610759973526 0.2634618580341339 0.9449533820152283 0.2128610759973526 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2349779903888702 0.9415437579154968 0.184581384062767 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.3439759612083435 1.312108874320984 0.09806185960769653 0.3439759612083435 1.312108874320984 0.09806185960769653 0.3005262613296509 1.160151720046997 0.1816091537475586 0.3005262613296509 1.160151720046997 0.1816091537475586 0.2534587383270264 1.048043012619019 0.229226216673851 0.2534587383270264 1.048043012619019 0.229226216673851 0.3253934681415558 1.160151720046997 0.1443928182125092 0.3253934681415558 1.160151720046997 0.1443928182125092 0.3060905337333679 1.048043012619019 0.1765943020582199 0.3060905337333679 1.048043012619019 0.1765943020582199 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.3135948479175568 1.160151720046997 0.1728769987821579 0.3135948479175568 1.160151720046997 0.1728769987821579 0.2688740491867065 1.048043012619019 0.2322925180196762 0.2688740491867065 1.048043012619019 0.2322925180196762 0.3223271369934082 1.160151720046997 0.1598084419965744 0.3223271369934082 1.160151720046997 0.1598084419965744 0.3091568052768707 1.048043012619019 0.1920096725225449 0.3091568052768707 1.048043012619019 0.1920096725225449 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2842896282672882 1.048043012619019 0.229226216673851 0.2842896282672882 1.048043012619019 0.229226216673851 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.3060905337333679 1.048043012619019 0.2074250131845474 0.3060905337333679 1.048043012619019 0.2074250131845474 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2973582744598389 1.048043012619019 0.220493957400322 0.2973582744598389 1.048043012619019 0.220493957400322 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1918\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"300\" source=\"#ID1921\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"900\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1921\">-0.9278834584867581 0.04082824076895225 0.3706283073678604 -0.9977752429982424 -0.06659565527506635 -0.003095667663508074 -0.9999060571191866 -0.0015009125374733 -0.01362439715793088 0.9999060571191866 0.0015009125374733 0.01362439715793088 0.9977752429982424 0.06659565527506635 0.003095667663508074 0.9278834584867581 -0.04082824076895225 -0.3706283073678604 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0.9181195771732412 -0.1128555365036274 -0.3798948142469269 0.9181195771732412 0.1128555365036274 0.3798948142469269 -0.9262328309242459 -0.009838731266650419 0.376823489561253 0.9262328309242459 0.009838731266650419 -0.376823489561253 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 -0.9074324623206211 -0.16194011862512 -0.3877392478282493 0.9074324623206211 0.16194011862512 0.3877392478282493 -0.9181627939907852 -0.04338327862263842 -0.3938209934310071 0.9181627939907852 0.04338327862263842 0.3938209934310071 -0.9973766201166378 -0.07177404651176834 -0.009400207021054655 0.9973766201166378 0.07177404651176834 0.009400207021054655 -0.7118594156381571 0.07690255944710663 0.6980989677100129 0.7118594156381571 -0.07690255944710663 -0.6980989677100129 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 -0.6812443792921055 -0.2235944870704588 -0.6970735980042656 0.6812443792921055 0.2235944870704588 0.6970735980042656 -0.7023525969223536 -0.1425518319043876 -0.6974093524015353 0.7023525969223536 0.1425518319043876 0.6974093524015353 -0.9257640070876061 0.03240469828584276 0.3767106830315573 0.9257640070876061 -0.03240469828584276 -0.3767106830315573 -0.7122707414796282 0.04923594247854864 0.7001758441993767 0.7122707414796282 -0.04923594247854864 -0.7001758441993767 0 1 0 -0 -1 -0 -0.3855939466651815 0.1010297577800753 0.9171206552782838 0.3855939466651815 -0.1010297577800753 -0.9171206552782838 0 1 0 -0 -1 -0 -0.698206287333844 -0.07838876277499718 -0.7115920054343605 0.698206287333844 0.07838876277499718 0.7115920054343605 -0.6865612058071743 -0.2129815016822076 -0.6951780999296444 0.6865612058071743 0.2129815016822076 0.6951780999296444 -0.918631782408507 -0.08137942273024804 -0.3866432954352902 0.918631782408507 0.08137942273024804 0.3866432954352902 -0.9976578949460037 0.06826378471123371 -0.004333629980390467 0.9976578949460037 -0.06826378471123371 0.004333629980390467 0 1 0 -0 -1 -0 -0.3892810171184926 0.1013539679360428 0.9155258941694722 -2.393178270834055e-006 0.1094975151487385 0.9939870694181712 2.393178270834055e-006 -0.1094975151487385 -0.9939870694181712 0.3892810171184926 -0.1013539679360428 -0.9155258941694722 0 1 0 -0 -1 -0 -0.3760075129696564 -0.1014619271283846 -0.9210449649901834 -0.3837485045026092 -0.151865364150826 -0.9108644226575917 0.3837485045026092 0.151865364150826 0.9108644226575917 0.3760075129696564 0.1014619271283846 0.9210449649901834 -0.3586501388646112 -0.3043385606965022 -0.8824670636151676 0.3586501388646112 0.3043385606965022 0.8824670636151676 -0.3608812211348434 -0.2502658350465012 -0.8984051179956075 0.3608812211348434 0.2502658350465012 0.8984051179956075 -0.9051185998244229 0.2040136890513151 0.373013049277836 0.9051185998244229 -0.2040136890513151 -0.373013049277836 -0.7023014897468005 0.1308985885008609 0.6997415072924479 0.7023014897468005 -0.1308985885008609 -0.6997415072924479 0 1 0 -0 -1 -0 -0.008401330541124052 0.1380870073671109 0.9903844688006441 0.3855926321539393 0.101029953574417 0.9171211863812481 -0.3855926321539393 -0.101029953574417 -0.9171211863812481 0.008401330541124052 -0.1380870073671109 -0.9903844688006441 0 1 0 -0 -1 -0 -1.638231529636708e-006 -0.1094972025388148 -0.99398710385673 -0.007631153113921558 -0.1391706131257301 -0.9902390145537391 0.007631153113921558 0.1391706131257301 0.9902390145537391 1.638231529636708e-006 0.1094972025388148 0.99398710385673 -0.3662193663722516 -0.3115596822211134 -0.8768203579457914 0.3662193663722516 0.3115596822211134 0.8768203579457914 -0.6959225224503867 -0.1881870782373219 -0.6930205381738634 0.6959225224503867 0.1881870782373219 0.6930205381738634 -0.9233610041195496 -0.02695596401956038 -0.3829854201860868 0.9233610041195496 0.02695596401956038 0.3829854201860868 -0.9900751925700994 0.1405038325815632 -0.003128272234421052 0.9900751925700994 -0.1405038325815632 0.003128272234421052 0 1 0 -0 -1 -0 0.372444873648539 0.1536379776875442 0.9152487027606241 0.7118615315130566 0.07690215948648875 0.6980968541815671 -0.7118615315130566 -0.07690215948648875 -0.6980968541815671 -0.372444873648539 -0.1536379776875442 -0.9152487027606241 -0.3716544858453784 0.2062193195996614 0.9051776264219417 0.3716544858453784 -0.2062193195996614 -0.9051776264219417 0 1 0 -0 -1 -0 0.3760050988688112 -0.1014621485315936 -0.9210459261296412 0.3727923870498216 -0.1053407161597084 -0.9219160317928394 -0.3727923870498216 0.1053407161597084 0.9219160317928394 -0.3760050988688112 0.1014621485315936 0.9210459261296412 0.008524709455946767 -0.2412434067665272 -0.9704271987224861 -0.008524709455946767 0.2412434067665272 0.9704271987224861 -0.001769691265078404 -0.3831527280308419 -0.9236833089297164 0.001769691265078404 0.3831527280308419 0.9236833089297164 0.006757712597036472 -0.3479646493279616 -0.937483299125123 -0.006757712597036472 0.3479646493279616 0.937483299125123 -0.8887837245303268 0.2787263987682289 0.3638338709352034 0.8887837245303268 -0.2787263987682289 -0.3638338709352034 -0.6731366259941853 0.3011140907802258 0.6754386627065128 0.6731366259941853 -0.3011140907802258 -0.6754386627065128 0 1 0 -0 -1 -0 0.92788273378111 0.04082861569481912 0.3706300803919435 0.69743660672445 0.1455764279823549 0.7017048405252619 -0.69743660672445 -0.1455764279823549 -0.7017048405252619 -0.92788273378111 -0.04082861569481912 -0.3706300803919435 0.007541491712564928 0.2479115095044231 0.96875332740486 -0.007541491712564928 -0.2479115095044231 -0.96875332740486 0 1 0 -0 -1 -0 0.6982075685403409 -0.07838876150760024 -0.7115907484659211 0.7003338033897056 -0.05443976690440847 -0.7117365211994555 -0.7003338033897056 0.05443976690440847 0.7117365211994555 -0.6982075685403409 0.07838876150760024 0.7115907484659211 0.3798630473314066 -0.1989567823800468 -0.9033937480506915 -0.3798630473314066 0.1989567823800468 0.9033937480506915 -0.005635586040699611 -0.2960074815373276 -0.9551689960650454 0.005635586040699611 0.2960074815373276 0.9551689960650454 -0.3816071479147141 -0.2387551755530475 -0.8929568583123325 0.3816071479147141 0.2387551755530475 0.8929568583123325 -0.7098304672308439 -0.1417542192581981 -0.6899611939184266 0.7098304672308439 0.1417542192581981 0.6899611939184266 -0.9289611800626436 -0.01936517639756433 -0.369670279951894 0.9289611800626436 0.01936517639756433 0.369670279951894 -0.9944649258713336 0.1045181174147558 0.01074589892926797 0.9944649258713336 -0.1045181174147558 -0.01074589892926797 0.9999060487122554 -0.001500897788054666 -0.01362501576053045 0.9179646390316492 0.1148282162395459 0.3796780244401015 -0.9179646390316492 -0.1148282162395459 -0.3796780244401015 -0.9999060487122554 0.001500897788054666 0.01362501576053045 0.3806523626443638 0.2518291433121385 0.8897673074416356 -0.3806523626443638 -0.2518291433121385 -0.8897673074416356 -0.3537134707814479 0.3497158032888347 0.8675169378852421 0.3537134707814479 -0.3497158032888347 -0.8675169378852421 0.921345206780097 0.005934785861217529 -0.3887001263958144 0.9181623827624436 -0.04338333562204136 -0.3938219458972514 -0.9181623827624436 0.04338333562204136 0.3938219458972514 -0.921345206780097 -0.005934785861217529 0.3887001263958144 0.7015290843239972 -0.1283687549116059 -0.7009838847006245 -0.7015290843239972 0.1283687549116059 0.7009838847006245 0.3657233985650752 -0.3438852352404744 -0.8648637700387356 -0.3657233985650752 0.3438852352404744 0.8648637700387356 0.3642088029488595 -0.3089946523204002 -0.8785637442394 -0.3642088029488595 0.3089946523204002 0.8785637442394 0.3505759552465831 -0.4015174329235807 -0.8460970692901636 -0.3505759552465831 0.4015174329235807 0.8460970692901636 -0.9013961822165807 0.20734820052424 0.3801205682737156 0.9013961822165807 -0.20734820052424 -0.3801205682737156 -0.6596514643945155 0.3673948200588811 0.6556531031849642 0.6596514643945155 -0.3673948200588811 -0.6556531031849642 0.9978309586316174 0.06571395092330679 -0.00388003226236238 -0.9978309586316174 -0.06571395092330679 0.00388003226236238 0.6994711189498942 0.2180208117223518 0.6805931820191191 -0.6994711189498942 -0.2180208117223518 -0.6805931820191191 0.008464885077093781 0.348522777411564 0.93726208679641 -0.008464885077093781 -0.348522777411564 -0.93726208679641 0.9211619882759639 -0.03774266290814756 -0.3873449144523199 -0.9211619882759639 0.03774266290814756 0.3873449144523199 0.6801456499297029 -0.2935333652825748 -0.671744042286635 -0.6801456499297029 0.2935333652825748 0.671744042286635 0.3790810955637079 -0.19642576246323 -0.9042756453797469 -0.3790810955637079 0.19642576246323 0.9042756453797469 -0.006044309831385856 -0.1921480039205631 -0.9813473446787359 0.006044309831385856 0.1921480039205631 0.9813473446787359 -0.3905063998979781 -0.158817254297096 -0.9067975691278908 0.3905063998979781 0.158817254297096 0.9067975691278908 -0.7146296876788553 -0.1007834488547026 -0.6922045260795203 0.7146296876788553 0.1007834488547026 0.6922045260795203 -0.9280009073201813 -0.02617730560519464 -0.3716571870476507 0.9280009073201813 0.02617730560519464 0.3716571870476507 -0.9985404266470882 0.05387682925104136 0.003782012864173349 0.9985404266470882 -0.05387682925104136 -0.003782012864173349 0.9183014699405613 0.1508524255126332 0.3660136008701858 -0.9183014699405613 -0.1508524255126332 -0.3660136008701858 0.3751679501491385 0.2980710925467551 0.8777258301821118 -0.3751679501491385 -0.2980710925467551 -0.8777258301821118 -0.3509058671403431 0.4021828481140018 0.8456441503903361 0.3509058671403431 -0.4021828481140018 -0.8456441503903361 0.998110783889415 0.06055026068505935 -0.01041772598165128 -0.998110783889415 -0.06055026068505935 0.01041772598165128 0.9063208563190007 -0.1999380076574004 -0.3723000114090551 -0.9063208563190007 0.1999380076574004 0.3723000114090551 0.6590070579046725 -0.3672064245772851 -0.6564062304556487 -0.6590070579046725 0.3672064245772851 0.6564062304556487 0.7056660067207059 -0.1711741214844488 -0.6875572027787068 -0.7056660067207059 0.1711741214844488 0.6875572027787068 0.683689509659014 -0.2771341735831983 -0.675103921048141 -0.683689509659014 0.2771341735831983 0.675103921048141 -0.9179897149819096 0.1269594088680677 0.3757342035100124 0.9179897149819096 -0.1269594088680677 -0.3757342035100124 -0.6780154320216124 0.2762585796519279 0.6811580368088197 0.6780154320216124 -0.2762585796519279 -0.6811580368088197 0.7001825816432064 0.2013928833579944 0.6849709912808045 -0.7001825816432064 -0.2013928833579944 -0.6849709912808045 0.00182622600025505 0.3838176269837862 0.9234071117958379 -0.00182622600025505 -0.3838176269837862 -0.9234071117958379 0.9973814967216617 -0.07228423368496069 -0.002267059292581186 -0.9973814967216617 0.07228423368496069 0.002267059292581186 0.8880252344353042 -0.2794186648003958 -0.3651525609485538 -0.8880252344353042 0.2794186648003958 0.3651525609485538 2.767822979625016e-006 -0.9928096497302067 0.119703798581848 6.988246788429636e-006 -0.9928091445060229 0.119707988607209 1.022978707970098e-012 -0.9928086747316344 0.1197118848636839 -1.022978707970098e-012 0.9928086747316344 -0.1197118848636839 -6.988246788429636e-006 0.9928091445060229 -0.119707988607209 -2.767822979625016e-006 0.9928096497302067 -0.119703798581848 7.7044375863041e-006 -0.9928091089888651 0.1197082831276827 -4.487500212477783e-011 -0.992809109018331 0.1197082831312356 4.487500212477783e-011 0.992809109018331 -0.1197082831312356 -7.7044375863041e-006 0.9928091089888651 -0.1197082831276827 -7.704541850535809e-006 -0.9928091089888644 0.1197082831276827 7.704541850535809e-006 0.9928091089888644 -0.1197082831276827 -6.988304734759506e-006 -0.9928091445078384 0.1197079885921475 -2.767862602807982e-006 -0.99280964972893 0.1197037985924347 2.767862602807982e-006 0.99280964972893 -0.1197037985924347 6.988304734759506e-006 0.9928091445078384 -0.1197079885921475 7.263087261654657e-007 -0.9928099450407807 0.119701349314009 -7.263087261654657e-007 0.9928099450407807 -0.119701349314009 -1.620367296495998e-018 -0.9928091383418375 0.1197080399344108 1.620367296495998e-018 0.9928091383418375 -0.1197080399344108 1.864050476297287e-006 -0.9928080027483553 0.1197174576882873 -1.864050476297287e-006 0.9928080027483553 -0.1197174576882873 0.9244950035235966 0.07025899496707923 0.3746633983806281 -0.9244950035235966 -0.07025899496707923 -0.3746633983806281 0.366829762646364 0.3116869016756962 0.8765199373434794 -0.366829762646364 -0.3116869016756962 -0.8765199373434794 -0.3650183505487395 0.306446614185513 0.8791200580221754 0.3650183505487395 -0.306446614185513 -0.8791200580221754 0.989853531960413 -0.142085927353355 0.001254796251494292 -0.989853531960413 0.142085927353355 -0.001254796251494292 0.9089907206869328 -0.2017201479115875 -0.3647531379324622 -0.9089907206869328 0.2017201479115875 0.3647531379324622 -7.263066999167067e-007 -0.9928099450412038 0.1197013493105016 7.263066999167067e-007 0.9928099450412038 -0.1197013493105016 0.9235320681947282 -0.1196443897616437 -0.364381309913848 -0.9235320681947282 0.1196443897616437 0.364381309913848 3.72812004797981e-006 -0.9928074639693836 0.1197219256142426 -3.72812004797981e-006 0.9928074639693836 -0.1197219256142426 -0.7014909392805421 0.1815654435095798 0.6891621375485398 0.7014909392805421 -0.1815654435095798 -0.6891621375485398 0.6969906333227904 0.1873181938119533 0.6921820218174717 -0.6969906333227904 -0.1873181938119533 -0.6921820218174717 -0.003396875497569148 0.2964495907894091 0.9550424604998702 0.003396875497569148 -0.2964495907894091 -0.9550424604998702 0.9240998232652282 0.02525655702831663 0.3813156474212005 -0.9240998232652282 -0.02525655702831663 -0.3813156474212005 0.9958207025834769 -0.09034340820677622 0.01338644462634576 -0.9958207025834769 0.09034340820677622 -0.01338644462634576 1.53915816714803e-022 -0.9928091383418375 0.11970803993441 -1.53915816714803e-022 0.9928091383418375 -0.11970803993441 4.737953150718969e-006 -0.9928073430655861 0.1197229281825484 -9.319458481162999e-007 -0.9928076242494585 0.1197205965207222 9.319458481162999e-007 0.9928076242494585 -0.1197205965207222 -4.737953150718969e-006 0.9928073430655861 -0.1197229281825484 0.3650778311907859 0.2458346860527413 0.8979328952134352 -0.3650778311907859 -0.2458346860527413 -0.8979328952134352 -0.3825054217257609 0.2090597695823078 0.8999908972276278 0.3825054217257609 -0.2090597695823078 -0.8999908972276278 0.9182591755738117 0.03778298693575775 0.3941732263519633 -0.9182591755738117 -0.03778298693575775 -0.3941732263519633 0.9986935520278727 -0.04870062046963348 0.01547380702423765 -0.9986935520278727 0.04870062046963348 -0.01547380702423765 -1.864045275509994e-006 -0.99280800274727 0.1197174576972886 1.864045275509994e-006 0.99280800274727 -0.1197174576972886 -4.943669760534657e-011 -0.992807905415018 0.1197182648781908 4.943669760534657e-011 0.992807905415018 -0.1197182648781908 0.6914121802415991 0.1565791227048186 0.7052887177224286 -0.6914121802415991 -0.1565791227048186 -0.7052887177224286 -0.00671355415309078 0.2049424367028966 0.9787510029772194 0.00671355415309078 -0.2049424367028966 -0.9787510029772194 0.9191827796336586 0.0314685300227289 0.3925719669603901 -0.9191827796336586 -0.0314685300227289 -0.3925719669603901 -3.728117051116277e-006 -0.9928074639650725 0.1197219256499936 3.728117051116277e-006 0.9928074639650725 -0.1197219256499936 9.318671640651015e-007 -0.9928076242463607 0.119720596546412 -9.318671640651015e-007 0.9928076242463607 -0.119720596546412 0.3723992922150309 0.1695607732054095 0.9124515939751148 -0.3723992922150309 -0.1695607732054095 -0.9124515939751148 0.6982521995652733 0.108409624641729 0.7075953780850305 -0.6982521995652733 -0.108409624641729 -0.7075953780850305 -4.737926818070232e-006 -0.9928073430628038 0.119722928205621 4.737926818070232e-006 0.9928073430628038 -0.119722928205621</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"448\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 8 7 16 17 10 9 6 18 7 10 19 11 1 20 12 13 21 4 2 12 22 23 13 3 14 24 1 4 25 15 26 14 0 5 15 27 16 7 28 29 10 17 18 30 7 10 31 19 20 32 12 13 33 21 24 20 1 4 21 25 12 34 22 23 35 13 36 24 14 15 25 37 38 14 26 27 15 39 28 7 40 41 10 29 38 26 42 43 27 39 30 44 7 10 45 31 22 34 46 47 35 23 20 48 32 33 49 21 12 32 34 35 33 13 24 50 20 21 51 25 36 52 24 25 53 37 38 36 14 15 37 39 7 54 40 41 55 10 56 42 57 58 43 59 56 38 42 43 39 59 44 60 7 10 61 45 62 46 63 64 47 65 46 34 63 64 35 47 32 48 66 67 49 33 50 48 20 21 49 51 34 32 68 69 33 35 52 50 24 25 51 53 70 52 36 37 53 71 72 36 38 39 37 73 7 74 54 55 75 10 76 57 77 78 58 79 76 56 57 58 59 79 38 56 72 73 59 39 60 80 7 10 81 61 82 62 83 84 65 85 62 63 83 84 64 65 63 34 68 69 35 64 48 86 66 67 87 49 68 32 66 67 33 69 50 88 48 49 89 51 52 90 50 51 91 53 70 92 52 53 93 71 72 70 36 37 71 73 7 94 74 75 95 10 96 77 97 98 78 99 96 76 77 78 79 99 56 76 100 101 79 59 72 56 100 101 59 73 80 102 7 10 103 81 104 82 105 106 85 107 82 83 105 106 84 85 83 63 108 109 64 84 63 68 108 109 69 64 86 110 66 67 111 87 88 86 48 49 87 89 68 66 112 113 67 69 90 88 50 51 89 91 92 90 52 53 91 93 114 92 70 71 93 115 116 70 72 73 71 117 7 118 94 95 119 10 120 121 97 98 122 123 121 96 97 98 99 122 76 96 124 125 99 79 100 76 124 125 79 101 116 72 100 101 73 117 102 126 7 10 127 103 128 104 129 130 107 131 104 105 129 130 106 107 105 83 132 133 84 106 83 108 132 133 109 84 108 68 112 113 69 109 86 134 110 111 135 87 66 110 112 113 111 67 88 136 86 87 137 89 90 138 88 89 139 91 92 140 90 91 141 93 114 142 92 93 143 115 116 114 70 71 115 117 7 126 118 119 127 10 144 145 120 123 146 147 145 121 120 123 122 146 96 121 148 149 122 99 124 96 148 149 99 125 150 100 124 125 101 151 150 116 100 101 117 151 128 152 153 154 155 131 129 152 128 131 155 130 129 105 156 157 106 130 105 132 156 157 133 106 132 108 158 159 109 133 108 112 158 159 113 109 134 160 110 111 161 135 136 134 86 87 135 137 110 162 112 113 163 111 138 136 88 89 137 139 140 138 90 91 139 141 142 140 92 93 141 143 164 142 114 115 143 165 166 114 116 117 115 167 153 168 144 147 169 154 168 145 144 147 146 169 145 170 121 122 171 146 148 121 170 171 122 149 172 124 148 149 125 173 172 150 124 125 151 173 166 116 150 151 117 167 152 168 153 154 169 155 129 174 152 155 175 130 156 174 129 130 175 157 156 132 176 177 133 157 132 158 176 177 159 133 112 162 158 159 163 113 134 178 160 161 179 135 110 160 162 163 161 111 136 180 134 135 181 137 138 182 136 137 183 139 140 184 138 139 185 141 142 186 140 141 187 143 164 188 142 143 189 165 166 164 114 115 165 167 168 190 145 146 191 169 190 170 145 146 171 191 192 148 170 171 149 193 192 172 148 149 173 193 194 150 172 173 151 195 194 166 150 151 167 195 152 196 168 169 197 155 174 196 152 155 197 175 156 198 174 175 199 157 176 198 156 157 199 177 158 200 176 177 201 159 162 200 158 159 201 163 160 178 202 203 179 161 134 180 178 179 181 135 160 204 162 163 205 161 136 182 180 181 183 137 138 184 182 183 185 139 186 184 140 141 185 187 188 186 142 143 187 189 206 188 164 165 189 207 208 164 166 167 165 209 196 190 168 169 191 197 190 210 170 171 211 191 210 192 170 171 193 211 212 172 192 193 173 213 212 194 172 173 195 213 208 166 194 195 167 209 174 214 196 197 215 175 198 214 174 175 215 199 176 216 198 199 217 177 200 216 176 177 217 201 162 204 200 201 205 163 218 219 220 221 222 223 160 202 204 205 203 161 224 225 220 221 226 227 225 228 220 221 229 226 230 231 220 221 232 233 231 234 220 221 235 232 220 234 236 237 235 221 220 236 238 239 237 221 208 206 164 165 207 209 196 240 190 191 241 197 240 210 190 191 211 241 242 192 210 211 193 243 242 212 192 193 213 243 244 194 212 213 195 245 244 208 194 195 209 245 214 240 196 197 241 215 198 246 214 215 247 199 216 246 198 199 247 217 200 248 216 217 249 201 204 248 200 201 249 205 250 218 220 221 223 251 202 252 204 205 253 203 220 238 254 255 239 221 256 206 208 209 207 257 240 258 210 211 259 241 258 242 210 211 243 259 260 212 242 243 213 261 260 244 212 213 245 261 256 208 244 245 209 257 214 262 240 241 263 215 246 262 214 215 263 247 216 264 246 247 265 217 248 264 216 217 265 249 204 252 248 249 253 205 266 250 220 221 251 267 220 268 269 270 271 221 262 258 240 241 259 263 272 242 258 259 243 273 272 260 242 243 261 273 274 244 260 261 245 275 274 256 244 245 257 275 246 276 262 263 277 247 264 276 246 247 277 265 248 278 264 265 279 249 252 278 248 249 279 253 266 220 280 281 221 267 220 269 282 283 270 221 262 284 258 259 285 263 284 272 258 259 273 285 286 260 272 273 261 287 286 274 260 261 275 287 276 284 262 263 285 277 264 288 276 277 289 265 278 288 264 265 289 279 280 220 290 291 221 281 292 220 282 283 221 293 294 272 284 285 273 295 294 286 272 273 287 295 276 296 284 285 297 277 288 296 276 277 297 289 298 220 292 293 221 299 296 294 284 285 295 297</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1919\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1922\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1925\" name=\"\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1923\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1924\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1923\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1926\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"168\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1926\">0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1924\" name=\"\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1927\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"X\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Y\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"float\" semantic=\"\" sid=\"\" name=\"Z\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"168\" name=\"\" magnitude=\"0\" digits=\"0\" id=\"ID1927\">-0.01178446120591827 -0.9735588360470699 -0.2281322406604561 -0.01077676797450188 -0.8903022429431368 -0.4552425479702483 -0.01178204009587801 -0.9733659401803182 -0.2289539910725835 0.01178204009587801 0.9733659401803182 0.2289539910725835 0.01077676797450188 0.8903022429431368 0.4552425479702483 0.01178446120591827 0.9735588360470699 0.2281322406604561 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0.01210293299673509 -0.999860850551699 0.01148035482507463 0.01210293299673509 0.999860850551699 -0.01148035482507463 -0.01077629623372305 -0.8903027469965876 -0.455241573375953 -0.01077629623372305 -0.8903027469965876 -0.455241573375953 0.01077629623372305 0.8903027469965876 0.455241573375953 0.01077629623372305 0.8903027469965876 0.455241573375953 0.0119993417301939 0.991302854576546 -0.1310521510942627 0.0119993417301939 0.991302854576546 -0.1310521510942627 0.0119993417301939 0.991302854576546 -0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 1 0 0 -1 -0 -0 -0.01210266464271436 -0.9998608479078918 0.01148086797494273 -0.01210266464271436 -0.9998608479078918 0.01148086797494273 0.01210266464271436 0.9998608479078918 -0.01148086797494273 0.01210266464271436 0.9998608479078918 -0.01148086797494273 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.01199880883641628 0.991302784932601 -0.1310527266842495 0.01199880883641628 0.991302784932601 -0.1310527266842495 0.01199880883641628 0.991302784932601 -0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -1 0 0 1 -0 -0</float_array>\r\n\t\t\t\t</source>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" count=\"24\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 15 2 3 16 17 18 19 20 21 22 23 7 24 8 9 25 10 26 0 27 28 5 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 30 32 54 55 33 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" semantic=\"VERTEX\" offset=\"0\" set=\"0\" source=\"#ID1925\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<asset xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t<created xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">2011-10-20T03:44:52Z</created>\r\n\t\t<contributor xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t<copyright xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></copyright>\r\n\t\t\t<author xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></author>\r\n\t\t\t<comments xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></comments>\r\n\t\t\t<authoring_tool xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Google SketchUp 8.0.4811</authoring_tool>\r\n\t\t\t<source_data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></source_data>\r\n\t\t</contributor>\r\n\t\t<revision xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></revision>\r\n\t\t<keywords xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></keywords>\r\n\t\t<up_axis xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">Z_UP</up_axis>\r\n\t\t<title xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></title>\r\n\t\t<subject xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></subject>\r\n\t\t<unit xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"inch\" meter=\"0.02539999969303608\"></unit>\r\n\t\t<modified xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">2011-10-20T03:44:52Z</modified>\r\n\t</asset>\r\n\t<library_effects xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID8\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" texture=\"ID11\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID10\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<surface xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"2D\">\r\n\t\t\t\t\t\t<format xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></format>\r\n\t\t\t\t\t\t<mip_levels xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mip_levels>\r\n\t\t\t\t\t\t<size xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></size>\r\n\t\t\t\t\t\t<viewport_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></viewport_ratio>\r\n\t\t\t\t\t\t<mipmap_generate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">false</mipmap_generate>\r\n\t\t\t\t\t\t<init_as_target xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_target>\r\n\t\t\t\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" face=\"\" slice=\"0\" mip=\"0\">ID9</init_from>\r\n\t\t\t\t\t\t<init_as_null xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_null>\r\n\t\t\t\t\t</surface>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID11\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<mipmap_bias xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_bias>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">ID10</source>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipmap_maxlevel xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_maxlevel>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID21\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.5019607843137255 0.5019607843137255 0.5019607843137255 0.5019607843137255</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" opaque=\"RGB_ZERO\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.4980392156862745 0.4980392156862745 0.4980392156862745 0.4980392156862745</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID39\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0 0.392156862745098 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID49\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0.9215686274509803 0.803921568627451 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID146\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.1372549019607843 0.1372549019607843 0.1372549019607843 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID151\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" texture=\"ID154\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID153\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<surface xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"2D\">\r\n\t\t\t\t\t\t<format xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></format>\r\n\t\t\t\t\t\t<mip_levels xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mip_levels>\r\n\t\t\t\t\t\t<size xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></size>\r\n\t\t\t\t\t\t<viewport_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></viewport_ratio>\r\n\t\t\t\t\t\t<mipmap_generate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">false</mipmap_generate>\r\n\t\t\t\t\t\t<init_as_target xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_target>\r\n\t\t\t\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" face=\"\" slice=\"0\" mip=\"0\">ID152</init_from>\r\n\t\t\t\t\t\t<init_as_null xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_null>\r\n\t\t\t\t\t</surface>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID154\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<mipmap_bias xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_bias>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">ID153</source>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipmap_maxlevel xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_maxlevel>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID190\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">1 0.5490196078431373 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID201\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" texture=\"ID204\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID203\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<surface xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"2D\">\r\n\t\t\t\t\t\t<format xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></format>\r\n\t\t\t\t\t\t<mip_levels xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mip_levels>\r\n\t\t\t\t\t\t<size xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></size>\r\n\t\t\t\t\t\t<viewport_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></viewport_ratio>\r\n\t\t\t\t\t\t<mipmap_generate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">false</mipmap_generate>\r\n\t\t\t\t\t\t<init_as_target xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_target>\r\n\t\t\t\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" face=\"\" slice=\"0\" mip=\"0\">ID202</init_from>\r\n\t\t\t\t\t\t<init_as_null xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_null>\r\n\t\t\t\t\t</surface>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID204\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<mipmap_bias xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_bias>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">ID203</source>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipmap_maxlevel xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_maxlevel>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID348\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" texture=\"ID351\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID350\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<surface xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"2D\">\r\n\t\t\t\t\t\t<format xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></format>\r\n\t\t\t\t\t\t<mip_levels xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mip_levels>\r\n\t\t\t\t\t\t<size xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></size>\r\n\t\t\t\t\t\t<viewport_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></viewport_ratio>\r\n\t\t\t\t\t\t<mipmap_generate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">false</mipmap_generate>\r\n\t\t\t\t\t\t<init_as_target xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_target>\r\n\t\t\t\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" face=\"\" slice=\"0\" mip=\"0\">ID349</init_from>\r\n\t\t\t\t\t\t<init_as_null xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_null>\r\n\t\t\t\t\t</surface>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID351\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<mipmap_bias xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_bias>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">ID350</source>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipmap_maxlevel xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_maxlevel>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID385\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.9607843137254902 0.9607843137254902 0.9607843137254902 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID627\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.4313725490196079 0.4549019607843137 0.5294117647058824 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID693\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<constant xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.6549019607843137 0.6549019607843137 0.6549019607843137 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t</constant>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID755\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<constant xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.08627450980392157 0.08627450980392157 0.08627450980392157 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t</constant>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1224\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" texture=\"ID1227\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID1226\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<surface xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"2D\">\r\n\t\t\t\t\t\t<format xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></format>\r\n\t\t\t\t\t\t<mip_levels xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mip_levels>\r\n\t\t\t\t\t\t<size xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></size>\r\n\t\t\t\t\t\t<viewport_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></viewport_ratio>\r\n\t\t\t\t\t\t<mipmap_generate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">false</mipmap_generate>\r\n\t\t\t\t\t\t<init_as_target xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_target>\r\n\t\t\t\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" face=\"\" slice=\"0\" mip=\"0\">ID1225</init_from>\r\n\t\t\t\t\t\t<init_as_null xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_null>\r\n\t\t\t\t\t</surface>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID1227\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<mipmap_bias xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_bias>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">ID1226</source>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipmap_maxlevel xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_maxlevel>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1305\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.7215686274509804 0.5254901960784314 0.04313725490196078 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1539\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" texture=\"ID1542\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" opaque=\"RGB_ZERO\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.1399999856948853 0.1399999856948853 0.1399999856948853 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID1541\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<surface xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" type=\"2D\">\r\n\t\t\t\t\t\t<format xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></format>\r\n\t\t\t\t\t\t<mip_levels xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mip_levels>\r\n\t\t\t\t\t\t<size xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></size>\r\n\t\t\t\t\t\t<viewport_ratio xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></viewport_ratio>\r\n\t\t\t\t\t\t<mipmap_generate xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">false</mipmap_generate>\r\n\t\t\t\t\t\t<init_as_target xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_target>\r\n\t\t\t\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" face=\"\" slice=\"0\" mip=\"0\">ID1540</init_from>\r\n\t\t\t\t\t\t<init_as_null xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></init_as_null>\r\n\t\t\t\t\t</surface>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"ID1542\">\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float2>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float4>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<mipmap_bias xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_bias>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<source xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">ID1541</source>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipmap_maxlevel xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">0</mipmap_maxlevel>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></float3>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1552\" name=\"\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" sid=\"COMMON\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">0.5450980392156862 0 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_visual_scenes xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<visual_scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"ID1\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"SketchUp\" sid=\"\" type=\"\" id=\"\">\r\n\t\t\t\t<node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" layer=\"\" name=\"instance_0\" sid=\"\" type=\"\" id=\"ID2\">\r\n\t\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID3\" sid=\"\" name=\"\"></instance_node>\r\n\t\t\t\t\t<matrix xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" sid=\"\">-1 0 0 -0.1047857155373135 0 1 0 -1.159676022821707 0 -0 1 -1.110223024625157e-016 0 0 0 1</matrix>\r\n\t\t\t\t</node>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<library_materials xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID7\" name=\"material_0\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID8\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID20\" name=\"material_1\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID21\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID38\" name=\"material_2\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID39\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID48\" name=\"material_3\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID49\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID145\" name=\"material_4\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID146\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID150\" name=\"material_5\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID151\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID189\" name=\"material_6\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID190\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID200\" name=\"material_7\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID201\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID347\" name=\"material_8\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID348\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID384\" name=\"material_9\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID385\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID626\" name=\"material_10\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID627\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID692\" name=\"edge_color167167167255\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID693\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID754\" name=\"edge_color222222255\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID755\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1223\" name=\"material_11\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1224\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1304\" name=\"material_12\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1305\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1538\" name=\"material_13\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1539\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" id=\"ID1551\" name=\"material_14\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1552\" sid=\"\" name=\"\"></instance_effect>\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">\r\n\t\t<instance_visual_scene xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" url=\"#ID1\" sid=\"\" name=\"\"></instance_visual_scene>\r\n\t</scene>\r\n\t<library_images xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<image xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" width=\"0\" height=\"0\" id=\"ID9\" depth=\"0\" format=\"\">\r\n\t\t\t<data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></data>\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">mg midget/texture0_fix.jpg</init_from>\r\n\t\t</image>\r\n\t\t<image xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" width=\"0\" height=\"0\" id=\"ID152\" depth=\"0\" format=\"\">\r\n\t\t\t<data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></data>\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">mg midget/texture1_fix.jpg</init_from>\r\n\t\t</image>\r\n\t\t<image xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" width=\"0\" height=\"0\" id=\"ID202\" depth=\"0\" format=\"\">\r\n\t\t\t<data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></data>\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">mg midget/texture2_fix.jpg</init_from>\r\n\t\t</image>\r\n\t\t<image xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" width=\"0\" height=\"0\" id=\"ID349\" depth=\"0\" format=\"\">\r\n\t\t\t<data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></data>\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">mg midget/texture3_fix.jpg</init_from>\r\n\t\t</image>\r\n\t\t<image xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" width=\"0\" height=\"0\" id=\"ID1225\" depth=\"0\" format=\"\">\r\n\t\t\t<data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></data>\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">mg midget/texture4.jpg</init_from>\r\n\t\t</image>\r\n\t\t<image xmlns=\"http://www.collada.org/2005/11/COLLADASchema\" name=\"\" width=\"0\" height=\"0\" id=\"ID1540\" depth=\"0\" format=\"\">\r\n\t\t\t<data xmlns=\"http://www.collada.org/2005/11/COLLADASchema\"></data>\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2005/11/COLLADASchema\">mg midget/texture5.jpg</init_from>\r\n\t\t</image>\r\n\t</library_images>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.5/infiles/berlin.dae",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>\r\n<COLLADA version=\"1.5\" xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t<asset>\r\n\t\t<contributor>\r\n\t\t\t<author>wantan</author>\r\n\t\t\t<authoring_tool>Google SketchUp 8.0.4811</authoring_tool>\r\n\t\t</contributor>\r\n\t\t<created>2011-02-05T20:57:54Z</created>\r\n\t\t<modified>2011-02-05T20:57:54Z</modified>\r\n\t\t<unit meter=\"0.02539999969303608\" name=\"inch\" />\r\n\t\t<up_axis>Z_UP</up_axis>\r\n\t</asset>\r\n\t<library_visual_scenes>\r\n\t\t<visual_scene id=\"ID1\">\r\n\t\t\t<node name=\"SketchUp\">\r\n\t\t\t\t<node id=\"ID2\" name=\"group_0\">\r\n\t\t\t\t\t<matrix>1 0 0 -3751.292715203261 0 1 0 -2048.327257041939 0 0 1 -11.59594756199335 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5488\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5494\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5500\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5506\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5512\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5520\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5526\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5532\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5538\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5544\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5550\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5556\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5562\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5568\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5574\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5580\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5586\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5592\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5598\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5604\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5610\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2373\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5618\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2076\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5624\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5630\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5638\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5644\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5652\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5660\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5668\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5676\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5684\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5692\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5700\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5708\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5716\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5724\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5732\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5740\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5748\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5756\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5764\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5772\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5780\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2956\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5786\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID5787\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5799\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2956\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5805\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID5806\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5818\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2076\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5824\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID5825\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5837\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5843\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5849\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID5850\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5862\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2076\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5868\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5874\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2076\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5880\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2076\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5886\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5892\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5896\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5900\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5904\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5908\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5912\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5916\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5920\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5924\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5928\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5932\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5936\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5940\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5944\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5948\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5952\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5956\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5960\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5964\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5968\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5972\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5976\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5980\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5984\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5988\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5992\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID5996\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6000\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6004\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6008\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6012\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6016\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6020\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6024\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6028\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6032\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6036\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6040\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6044\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6048\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6052\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6056\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6060\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6064\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6068\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6072\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6076\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6080\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6084\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6088\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6092\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6096\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6100\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6104\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6108\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6112\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6116\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3047\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6120\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6124\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6128\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6132\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6136\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6140\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6144\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6148\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6152\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6156\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6160\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6164\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6168\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6172\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6176\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6180\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6184\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6188\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6192\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6196\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6200\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6204\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6208\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6212\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6216\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6220\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6224\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6228\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6232\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6236\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6240\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6244\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6248\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6252\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6256\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6260\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6264\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6268\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6272\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6276\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6280\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6284\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6288\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6292\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6296\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6300\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6304\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6308\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6312\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6316\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6320\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6324\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6328\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6332\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6336\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6340\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6344\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6348\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6352\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6356\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6360\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6364\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6368\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6372\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6376\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6380\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6384\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6388\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6392\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6396\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6400\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6404\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6408\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6412\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6416\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6420\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6424\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6428\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6432\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6436\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6440\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6444\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6448\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6452\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6456\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6460\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6464\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6468\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6472\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6476\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6480\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6484\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6488\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6492\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6496\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6500\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6504\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6508\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6512\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6516\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6520\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6524\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6528\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6532\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6536\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6540\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6544\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6548\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6552\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6556\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6560\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6564\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6568\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6572\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6576\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6580\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6584\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6588\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6592\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6596\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6600\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6604\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6608\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6612\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6616\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6620\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6624\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6628\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6632\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6636\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6640\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6644\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6648\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6652\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6656\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6660\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6664\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6668\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6672\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6676\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6680\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6684\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6688\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6692\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6696\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6700\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6704\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6708\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6712\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6716\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6720\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6724\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6728\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6732\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6736\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6740\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6744\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6748\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6752\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6756\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6760\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6764\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6768\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6772\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6776\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6780\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6784\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6788\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6792\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6796\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6800\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6804\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6808\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6812\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6816\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6820\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6824\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6828\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6832\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6836\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6840\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6844\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6848\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6852\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6856\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6860\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6864\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6868\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6872\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6876\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6880\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6884\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6888\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6892\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6896\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6900\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6904\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6908\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6912\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6916\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6920\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6924\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6928\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6932\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6936\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6940\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6944\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6948\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6952\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6956\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6960\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6964\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6968\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6972\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6976\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6980\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6984\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6988\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6992\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID6996\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7000\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7004\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7008\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7012\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7016\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7020\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7024\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7028\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7032\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7036\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7040\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7044\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7048\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7052\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7056\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7060\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7064\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7068\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7072\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7076\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7080\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7084\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7088\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7092\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7096\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7100\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7104\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7108\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7112\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7116\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7120\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7124\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7128\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7132\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7136\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7140\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7144\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7148\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7152\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7156\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7160\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7164\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7168\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7172\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7176\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7180\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7184\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7188\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7192\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7196\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7200\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7204\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7208\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7212\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7216\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7220\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7224\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7228\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7232\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7236\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7240\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7244\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7248\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7252\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7256\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7260\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7264\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7268\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7272\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7276\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7280\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7284\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7288\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7292\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7296\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7300\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7304\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7308\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7312\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7316\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7320\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7324\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7328\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7332\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7336\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7340\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7344\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7348\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7352\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7356\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7360\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7364\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7368\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7372\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7376\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7380\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7384\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7388\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7392\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7396\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7400\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7404\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7408\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7412\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7416\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7420\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7424\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7428\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7432\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7436\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7440\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7444\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7448\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7452\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7456\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7460\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7464\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7468\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7472\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7476\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7480\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7484\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7488\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7492\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7496\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7500\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7504\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7508\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7512\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7516\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7520\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7524\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7528\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7532\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7536\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7540\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7544\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7548\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7552\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7556\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7560\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7564\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7568\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7572\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7576\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7580\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7584\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7588\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7592\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7596\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7600\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7604\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7608\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7612\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7616\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7620\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7624\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7628\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7632\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7636\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7640\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7644\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7648\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<instance_geometry url=\"#ID7652\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t<node id=\"ID3\" name=\"group_1\">\r\n\t\t\t\t\t\t<matrix>-0.1122353827693742 -0.9936816474225511 4.929723054978803e-005 2350.112146954105 0.9936816410192325 -0.1122353756235099 0.0001294603211370979 1056.053718547063 -0.0001231094519954097 6.351578164668509e-005 0.9999999904049042 5.676050981702163 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID4\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID5\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID19\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID25\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID33\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID39\" name=\"main_wing_back_right\">\r\n\t\t\t\t\t\t<matrix>-0.8621718111125489 0.2186149655493085 0.002090357065267865 1480.69589940957 0.3303792521514387 0.8537390462401812 0.01445377677983982 1790.450324112233 0.001453529943873266 0.01402153652821463 -0.8619489839671128 448.755984325764 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID40\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID48\" name=\"group_2\">\r\n\t\t\t\t\t\t<matrix>0.8875873865461728 -0.05766919314070907 6.207557063459425e-006 3571.874173708753 -0.05121415621558127 0.9141153270653661 -4.213861299427053e-006 2033.251067770222 5.37193052194151e-006 -3.895693935711915e-006 0.8620642476948983 48.42503087636018 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<node id=\"ID49\" name=\"group_3\">\r\n\t\t\t\t\t\t\t<matrix>-0.05864580655494093 -0.9957861420302123 -0.07050268586448683 -1661.5562318337 0.9982788433825224 -0.0585094287983734 -0.003999699556410555 486.3577939511548 -0.0001422264881242594 -0.07061590530662434 0.997503570765214 447.9840747548893 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID50\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID65\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID78\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID86\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID94\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID102\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID110\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID118\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID126\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID134\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID142\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID150\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID158\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID166\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID174\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID182\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID190\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID198\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID206\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID214\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID222\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID230\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID238\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID246\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID254\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID262\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID263\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID270\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID276\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID280\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID284\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID285\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID290\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID285\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID294\" name=\"group_4\">\r\n\t\t\t\t\t\t<matrix>-0.6015529338791562 -0.7988329395509189 4.929317878818494e-005 4922.627716925611 0.7988329376662727 -0.6015529244715996 0.0001294570929997823 1082.259081679979 -7.376213429019869e-005 0.0001172523089237604 0.9999999904055218 392.125273902718 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID302\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID310\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID318\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID326\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID334\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID342\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID350\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID358\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID364\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID370\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID378\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID386\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID394\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID402\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID410\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID418\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID426\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID434\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID442\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID450\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID456\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID464\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID472\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID480\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID488\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID496\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID504\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID512\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID520\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID528\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID532\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID536\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID540\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID544\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID548\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID552\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<node id=\"ID295\" name=\"group_5\">\r\n\t\t\t\t\t\t\t<matrix>0.7971934574596513 0.5291725089883853 -0.0002014724768430176 -0.002681303434428628 -0.4633368406875137 0.7065017567636046 -0.0002689872054171596 351.0858904381678 2.609868767768867e-011 0.0003282146801342716 0.8620641849746258 -1.663055400058511e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID296\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID556\" name=\"EG_back\">\r\n\t\t\t\t\t\t<matrix>1 0 0 3751.718609214428 0 1 0 2049.451789030569 0 0 1 5.667528885085666 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID557\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID572\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID580\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID585\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID593\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID594\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID601\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID594\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID607\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID613\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID585\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID621\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID629\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID635\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID641\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID649\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID585\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID657\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID663\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID669\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID677\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID585\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID685\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID686\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID691\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID686\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID695\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID696\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID701\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID686\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID705\" name=\"group_6\">\r\n\t\t\t\t\t\t<matrix>0.9448404609665005 0.32580880675122 0.03354287948219543 5157.814336559221 -0.3260472509243119 0.9453518552814237 0.00174925145963042 3989.863472250704 -0.03113990181920464 -0.01258932719871885 0.9994357484878026 52.8485689371292 0 0 0 1</matrix>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID706\" name=\"group_7\">\r\n\t\t\t\t\t\t<matrix>0.9448404609665015 0.3258088067512174 0.03354287948219545 5245.779706393052 -0.3260472509243093 0.9453518552814246 0.001749251459630411 3965.444056226188 -0.03113990181920469 -0.01258932719871877 0.9994357484878025 52.84742989813127 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID707\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID715\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID721\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID727\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID733\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID739\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID743\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID747\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID751\" name=\"group_8\">\r\n\t\t\t\t\t\t<matrix>-0.5940395054355827 -0.8044358218745036 0.0002728863139470074 5761.309268400623 0.8044358630296247 -0.5940395057785507 8.857854323127372e-005 4054.009321479119 9.084949784611478e-005 0.0002721386914822442 0.9999999588434499 253.9175408006983 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID752\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID758\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID759\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID768\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID776\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID782\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID788\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID768\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID789\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID801\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID809\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID815\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID821\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID827\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID833\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID839\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID845\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID851\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID857\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID759\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID865\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID866\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID878\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID884\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID885\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID894\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID902\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID912\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID903\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID920\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID866\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID928\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID789\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID936\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID759\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID937\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID949\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID955\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID956\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID965\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID973\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID979\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID985\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID991\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID997\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1003\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1009\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1015\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1021\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1027\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1033\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1039\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1045\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1051\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1057\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1063\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1069\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1075\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1081\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1087\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1093\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1099\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1105\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1111\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1117\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1123\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1129\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1135\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1141\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1147\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1153\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1159\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1165\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1171\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1177\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1183\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1189\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1195\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1201\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1207\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1213\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1219\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1225\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1231\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1237\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1243\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1249\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1255\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1261\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1267\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1273\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1279\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1285\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1291\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID1292\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1304\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID759\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1312\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1318\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1324\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1330\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1336\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1342\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1348\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1354\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1360\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1366\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1372\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1378\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1384\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1390\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1396\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1402\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1408\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1414\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1420\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1426\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1432\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1438\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1444\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1450\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1456\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1462\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1468\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1474\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1480\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1486\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1492\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1498\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1504\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1510\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1516\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1522\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1528\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1534\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1540\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1546\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1552\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1558\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1564\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1570\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1576\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1582\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1588\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1594\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1600\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1606\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1612\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1618\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1624\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1630\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1636\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1642\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1648\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1654\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1660\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1666\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1672\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1678\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1684\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1690\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1696\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1702\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1703\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1715\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1703\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1723\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1729\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1735\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1741\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1747\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1753\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1759\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1765\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1771\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1777\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1783\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1789\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1795\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1801\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1807\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1813\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1819\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1825\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1831\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1832\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1837\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1832\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1841\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1832\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1845\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1832\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1849\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1832\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1853\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1832\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1857\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1832\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1861\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1832\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID1865\" name=\"group_9\">\r\n\t\t\t\t\t\t<matrix>0.9346607360421477 0.3555408641359878 4.93009705397349e-005 3561.121579939727 -0.355540867554137 0.9346607270749804 0.0001294701541252222 1937.396230036442 -4.775049266979488e-008 -0.0001385391793871287 0.9999999904034468 268.6611358100972 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1866\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1872\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1878\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1884\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1888\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1892\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1896\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1900\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID1904\" name=\"group_10\">\r\n\t\t\t\t\t\t<matrix>-0.05842201056755365 -0.998026847872543 0.02300607760659504 1602.87297352497 0.998291967670464 -0.05840357738418427 0.001472899644592197 5112.564758614905 -0.0001263561557216168 0.02305283224086846 0.9997342401657535 0.1876372795177019 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1905\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1911\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID1917\" name=\"group_11\">\r\n\t\t\t\t\t\t<matrix>0.578478758284607 0.8156974470503648 -3.300024997561772e-005 515.2077861607295 -0.8156974438469433 0.5784787590073588 7.401938262685602e-005 4599.995215441877 7.946736509379854e-005 -1.590042099955535e-005 0.9999999967160573 5.645771393265623 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1918\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1924\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID1930\" name=\"group_12\">\r\n\t\t\t\t\t\t<matrix>-0.9319232061911661 -0.3226252723634441 0.1656263004320002 846.7307395121602 0.3626556738303042 -0.8290550195230341 0.4256155975083028 4652.986006058648 -1.032330066375043e-006 0.4567063698220937 0.8896174974464358 141.4572985599484 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1931\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1937\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1941\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1945\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1949\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1953\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID1957\" name=\"group_13\">\r\n\t\t\t\t\t\t<matrix>-0.1186745858912332 0.9929332002879802 -4.928909028664717e-005 1973.285059182842 0.9929331939310518 0.1186745787052473 -0.000129456603696491 1818.960211090446 -0.0001226923977822368 -6.430398267884312e-005 -0.9999999904057867 273.8181446828433 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1958\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1959\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID1966\" name=\"group_14\">\r\n\t\t\t\t\t\t<matrix>-0.1186745858912332 0.9929332002879802 -4.928909028664717e-005 1984.077638017519 0.9929331939310518 0.1186745787052473 -0.000129456603696491 1727.754628845115 -0.0001226923977822368 -6.430398267884312e-005 -0.9999999904057867 278.0149879411721 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1967\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1959\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID1973\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1959\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID1979\" name=\"group_15\">\r\n\t\t\t\t\t\t<matrix>0.8046443260427015 -0.5937571105740082 4.701161578115177e-005 3763.088071639415 0.5937571015414899 0.8046443239245875 0.0001278475368244583 3555.956802788658 -0.0001137380138557218 -7.495831437933685e-005 0.9999999907224576 195.0559431758657 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2008\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2014\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2020\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2021\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2033\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2039\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2045\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2051\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2057\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2063\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2069\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2075\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2076\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<node id=\"ID1980\" name=\"group_16\">\r\n\t\t\t\t\t\t\t<matrix>0.8046443260426996 0.5937571015414923 -0.0001137380138557223 1.368959601677489e-005 -0.5937571105740105 0.8046443239245856 -7.495831437933625e-005 1.968513317630141 4.701161578115212e-005 0.0001278475368244583 0.9999999907224576 71.87994286367061 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID1981\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID1982\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t\t<node id=\"ID1994\" name=\"group_17\">\r\n\t\t\t\t\t\t\t<matrix>0.8046443260426996 0.5937571015414923 -0.0001137380138557223 1.374000214582338e-005 -0.5937571105740105 0.8046443239245856 -7.495831437933625e-005 237.0696645250466 4.701161578115212e-005 0.0001278475368244583 0.9999999907224576 71.87949815104477 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID1995\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID1996\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID2083\" name=\"group_18\">\r\n\t\t\t\t\t\t<matrix>0.7514653867443125 -0.6597725138663203 4.971656862847177e-005 1404.271869018092 0.6597725042048601 0.7514653855636448 0.0001303646065249448 2328.999479792704 -0.0001233712645794525 -6.516286447555819e-005 0.9999999902666661 71.04969882286062 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2097\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<node id=\"ID2084\" name=\"group_19\">\r\n\t\t\t\t\t\t\t<matrix>0.46016030515693 0.8878358483176274 1.059751489568359e-008 95.88171725499251 -0.8878358483176275 0.46016030515693 2.423259403875428e-009 275.0499162615201 2.725099119769463e-009 1.052394141422965e-008 -1 207.1666551984203 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID2085\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1959\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t\t<instance_geometry url=\"#ID2091\">\r\n\t\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1959\">\r\n\t\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID2103\" name=\"group_20\">\r\n\t\t\t\t\t\t<matrix>-0.9095307335285988 -0.4156366710682689 4.929723007021765e-005 5731.10664262241 0.4156366738949396 -0.9095307243593133 0.0001294603210666145 3253.959735125475 -8.971111508884164e-006 0.0001382378775211847 0.9999999904049042 53.77188626737168 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2104\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2110\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2116\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2122\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2128\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2134\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2135\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2142\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2148\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2135\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2154\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2160\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2166\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2172\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2182\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID2173\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2190\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2173\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2198\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2173\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2206\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2173\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2214\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2220\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2226\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2135\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2232\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2238\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2244\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2250\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2256\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2257\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2269\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2275\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2281\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2257\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2289\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2297\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2303\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2257\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2311\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2317\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2323\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2329\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2257\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2337\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2338\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2350\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2338\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2358\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2135\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2364\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID789\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2372\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2373\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2385\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2373\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2393\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2399\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2405\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2406\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID2415\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2423\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2429\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2435\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2441\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2447\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2373\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2455\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2463\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2257\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2471\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2479\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2487\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2257\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2495\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2257\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2503\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2509\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2515\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2521\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2527\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2338\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2535\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2541\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2547\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID60\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2553\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID558\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2561\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2257\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2562\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2574\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2578\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2587\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2588\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2600\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2606\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2607\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2616\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2624\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2630\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2636\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2640\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2644\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2648\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2652\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2656\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2660\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2664\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2670\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2674\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2678\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2682\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2686\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2690\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2694\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2698\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2702\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2706\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2710\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2714\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2718\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2722\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2726\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2730\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2734\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2627\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2738\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2742\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2746\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2750\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2754\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2758\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2762\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2766\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2770\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2774\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2778\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2782\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2786\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2790\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2794\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2798\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2802\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2806\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2810\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2814\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2818\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2822\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2826\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2830\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2834\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2838\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2842\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2846\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2850\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2854\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2858\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2862\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2866\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2870\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2874\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2878\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2882\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2886\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2890\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2894\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2898\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2902\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2906\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2910\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2914\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2918\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2922\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2926\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2930\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2934\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2938\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2942\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2946\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2950\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2633\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID2954\" name=\"group_21\">\r\n\t\t\t\t\t\t<matrix>-0.804644325907999 -0.5937571105711874 -4.929723015697812e-005 5525.470115441822 -0.5937571011817212 0.8046443239321985 -0.0001294603210106543 3508.87058733178 0.0001165347225682962 -7.489893225715566e-005 -0.9999999904049043 165.4033883086749 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2955\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2956\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2963\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2956\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2969\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2970\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2982\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2970\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID2956\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID2990\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2991\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID3003\" name=\"group_22\">\r\n\t\t\t\t\t\t<matrix>0.1265132919204322 -0.9919649109405225 -4.929723015697812e-005 5175.649736622385 -0.9919649046406261 -0.1265132846832248 -0.0001294603210106543 4978.704635822122 0.0001221833412887209 6.527957359584759e-005 -0.9999999904049043 165.4689768354196 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3004\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2956\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3010\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3011\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3023\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2991\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3031\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2956\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID3037\" name=\"group_23\">\r\n\t\t\t\t\t\t<matrix>-0.1186831449871285 0.992932168322203 0.0001255964450578712 1709.391067385569 0.9929321784968059 0.1186831439503095 1.39043803174877e-005 4074.012032509731 1.245073363192453e-006 -0.0001430141219486379 0.8835418794586845 5.728648291148322 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<node id=\"ID3038\" name=\"instance_0\">\r\n\t\t\t\t\t\t\t<matrix>0.534539313319601 -0.8451436105868648 -4.644736462915951e-008 851.0463239160135 0.8451436105868705 0.5345393133195975 2.046771203479509e-008 141.9949187956664 1.767570001230676e-008 -1.178307572124109e-007 0.4259965001526444 20.32276319211045 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t\t<node id=\"ID3056\" name=\"instance_1\">\r\n\t\t\t\t\t\t\t<matrix>0.5345393133196004 -0.8451436105868641 -4.644736462917984e-008 -11.18291555211289 0.8451436105868704 0.5345393133195978 2.046771203480864e-008 141.9949187956679 1.767570001237452e-008 -1.178307572123432e-007 0.425996500152644 20.32276319211044 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t\t<node id=\"ID3057\" name=\"instance_2\">\r\n\t\t\t\t\t\t\t<matrix>0.5345393133196007 -0.8451436105868646 -4.64473646291663e-008 598.2110089553842 0.8451436105868705 0.5345393133195975 2.046771203479509e-008 141.9949187956664 1.767570001228643e-008 -1.178307572124448e-007 0.4259965001526443 20.32276319211044 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t\t<node id=\"ID3058\" name=\"instance_3\">\r\n\t\t\t\t\t\t\t<matrix>0.5345393133196038 -0.8451436105868684 -4.730672610083208e-008 55.16354979456662 0.8451436105868768 0.5345393133196065 2.084640226373668e-008 12.00635919977015 1.767570001785313e-008 -1.178307572070238e-007 0.4338782170644451 20.69877236717841 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t\t<node id=\"ID3059\" name=\"instance_4\">\r\n\t\t\t\t\t\t\t<matrix>0.5345393133196007 -0.8451436105868644 -4.644736462920018e-008 328.6999088494066 0.8451436105868704 0.5345393133195978 2.046771203478154e-008 141.9949187956704 1.767570001230676e-008 -1.178307572123635e-007 0.4259965001526443 20.32276319211044 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID3060\" name=\"group_24\">\r\n\t\t\t\t\t\t<matrix>-0.9095307336494957 -0.4156366708038 4.929649020048578e-005 5803.674822766905 0.4156366736303594 -0.909530724480078 0.0001294613251539463 4662.6576911698 -8.972201738461595e-006 0.0001382384832550862 0.9999999904048108 40.02061998272778 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3061\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3067\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3073\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3079\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3085\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3091\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3095\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID3099\" name=\"group_25\">\r\n\t\t\t\t\t\t<matrix>0.8044985529488417 -0.5939546022397749 9.3709180631575e-005 5266.391427657654 0.5939546096320996 0.8044985429360994 -0.0001269270395285026 4727.775659096512 -1.213859199787615e-015 0.0001577716194317318 0.9999999875540582 5.616332412609985 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3100\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID759\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID3101\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3113\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3119\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2076\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3125\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3131\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID567\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3137\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3143\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3149\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3155\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3161\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3167\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3173\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID802\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3179\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3047\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3183\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3047\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID3187\" name=\"group_26\">\r\n\t\t\t\t\t\t<matrix>-0.1276991568895886 0.9918129024945341 0.0003029439817350354 917.3193175064293 0.9918129265257653 0.1276990833924867 0.0002507530977563635 2917.117995278788 -0.0002100144889084003 -0.0003324847162689336 0.999999922673911 5.91963300182289 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<node id=\"ID3188\" name=\"instance_5\">\r\n\t\t\t\t\t\t\t<matrix>0.5345378106104459 -0.8451445610236068 -4.639756820813776e-008 419.4929215492009 0.845144541703738 0.5345377984185428 -9.105792413439858e-005 12.32298235489225 0.0001807101949116067 0.0001141668786869962 0.4259964904207042 20.36808804016284 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t\t<node id=\"ID3189\" name=\"instance_6\">\r\n\t\t\t\t\t\t\t<matrix>0.5345378106104457 -0.8451445610236069 -4.639756820814454e-008 1398.543393990146 0.8451445417037377 0.5345377984185428 -9.10579241343986e-005 12.32298235489202 0.0001807101949116068 0.0001141668786869963 0.4259964904207042 20.36808804016282 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t\t<node id=\"ID3190\" name=\"instance_7\">\r\n\t\t\t\t\t\t\t<matrix>0.5345378106104451 -0.8451445610236065 -4.639756820816487e-008 967.8675882810912 0.8451445417037374 0.5345377984185431 -9.105792413439857e-005 12.32409249867806 0.0001807101949116068 0.0001141668786869963 0.4259964904207039 20.32518463909959 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t\t<node id=\"ID3191\" name=\"instance_8\">\r\n\t\t\t\t\t\t\t<matrix>0.5345378106104451 -0.8451445610236065 -4.639756820816487e-008 614.6781788322714 0.8451445417037374 0.5345377984185431 -9.105792413439852e-005 12.32409249867624 0.0001807101949116068 0.0001141668786869963 0.4259964904207039 20.3251846390996 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t\t<node id=\"ID3192\" name=\"instance_9\">\r\n\t\t\t\t\t\t\t<matrix>0.5345378106104457 -0.8451445610236069 -4.639756820815132e-008 204.4413574400368 0.845144541703738 0.5345377984185432 -9.105792413439852e-005 12.04178816225306 0.0001807101949116067 0.0001141668786869962 0.4259964904207042 20.32506133922273 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t\t<node id=\"ID3193\" name=\"instance_10\">\r\n\t\t\t\t\t\t\t<matrix>0.5345378106104459 -0.8451445610236068 -4.639756820813776e-008 1183.491829880982 0.845144541703738 0.5345377984185428 -9.105792413439858e-005 12.04178816225385 0.0001807101949116067 0.0001141668786869962 0.4259964904207042 20.32506133922271 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t\t<node id=\"ID3194\" name=\"instance_11\">\r\n\t\t\t\t\t\t\t<matrix>0.5345378106104451 -0.8451445610236065 -4.639756820816487e-008 -11.1828841598537 0.8451445417037374 0.5345377984185431 -9.105792413439852e-005 12.32409249867715 0.0001807101949116068 0.0001141668786869963 0.4259964904207039 20.32518463909961 0 0 0 1</matrix>\r\n\t\t\t\t\t\t\t<instance_node url=\"#ID3039\" />\r\n\t\t\t\t\t\t</node>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID3195\" name=\"group_27\">\r\n\t\t\t\t\t\t<matrix>0.9164201970173026 0.4002174689642327 -5.884909031354801e-006 1145.63269944437 -0.4002174689515766 0.9164201970359911 3.241811478579175e-006 5304.390092966342 6.690479078869205e-006 -6.15618116353387e-007 0.9999999999774293 391.7593157356809 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3196\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3202\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3206\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3210\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID3214\" name=\"group_28\">\r\n\t\t\t\t\t\t<matrix>1 0 0 3751.718609214428 0 1 0 2049.451789030569 0 0 1 5.667528885085666 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3215\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3221\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3227\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3233\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3239\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3245\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3251\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3257\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3263\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3269\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3275\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3281\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3287\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3293\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3299\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3305\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3318\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3326\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3334\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3340\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3346\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3352\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3358\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3364\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3370\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3376\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3384\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3390\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3396\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3404\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3410\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3416\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3429\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3435\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3441\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3447\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3455\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3461\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3469\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3475\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3481\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3487\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3493\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3499\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3505\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3511\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3519\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3524\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3532\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3540\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3548\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3556\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3561\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3569\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3577\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3524\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3578\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3590\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3598\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3604\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3610\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3616\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3624\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3632\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3524\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3640\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3646\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3652\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3658\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3666\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3672\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3680\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3688\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3694\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3702\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3708\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3714\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3417\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3306\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3722\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3728\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID708\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3734\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3738\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3744\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3748\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3752\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3756\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3760\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3764\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3768\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3772\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3776\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3780\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3784\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID271\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3788\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3794\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3798\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3802\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3806\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3810\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2665\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3814\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3818\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3822\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3826\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3830\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3834\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3838\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3842\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3846\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3850\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3854\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3858\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3862\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3866\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3870\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3874\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3878\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3882\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3886\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3890\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3894\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3898\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3902\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3906\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3910\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3914\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3918\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3922\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3926\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3930\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3934\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3938\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3942\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3946\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3950\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3954\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3958\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3962\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3966\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3970\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3974\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t\t<instance_geometry url=\"#ID3978\">\r\n\t\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3789\">\r\n\t\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID3982\" name=\"instance_12\">\r\n\t\t\t\t\t\t<matrix>-0.9940742168004298 0.1087034981182758 3.145571481678375e-005 5459.979942927772 -0.1087034928894709 -0.9940742084933825 0.0001365352847528004 4632.336228684837 4.611117787829216e-005 0.0001323068601843443 0.999999990184327 5.705747765205286 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID3983\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4054\" name=\"main_wing_back_right\">\r\n\t\t\t\t\t\t<matrix>1 0 0 3724.587171041479 0 1 0 2060.72063659396 0 0 1 11.8533268397856 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4055\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4070\" name=\"instance_13\">\r\n\t\t\t\t\t\t<matrix>-0.1094253327554024 -0.8827021342848155 0.0003785660835464172 4647.021107439467 0.9155460230419216 -0.002277725548221861 0.0001124675128743383 880.7872977187317 -0.000113129979123526 0.0003720207455848726 0.8620641600252436 394.0844701641515 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4071\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4096\" name=\"instance_14\">\r\n\t\t\t\t\t\t<matrix>-0.5386681858927582 -0.79883293955102 4.929317911856e-005 2363.375163642494 0.7153250614028374 -0.6015529244715521 0.0001294570925616135 2242.939328066722 -6.605123591483989e-005 0.0001172523089412173 0.9999999904055315 577.057880857531 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4097\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4117\" name=\"instance_15\">\r\n\t\t\t\t\t\t<matrix>0.5085223145042321 -0.8610488113528727 9.395235420118444e-006 4951.004434605495 0.8610488113911499 0.5085223145524669 1.741214651929893e-006 4979.143251461646 -7.290134025637777e-006 8.367171914040739e-006 0.8610208873384551 46.74894991430541 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4133\" name=\"instance_16\">\r\n\t\t\t\t\t\t<matrix>-0.9165309222319753 -0.3999638341057915 -1.512678871051776e-014 5195.905330008786 0.3999638341057915 -0.9165309222319753 -1.874151875358443e-015 4872.729122146169 -1.311457663749415e-014 -7.767886557091942e-015 1 468.4549927729016 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4134\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4234\" name=\"instance_17\">\r\n\t\t\t\t\t\t<matrix>0.1122353827693644 -0.9936816474269392 4.920872237465404e-005 5305.826027924457 -0.9936816410192337 -0.1122353756350308 0.0001294503242071712 4723.876817975998 0.000123109451977894 6.342671068871628e-005 0.9999999904105577 468.4688526949713 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4235\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4330\" name=\"instance_18\">\r\n\t\t\t\t\t\t<matrix>0.9999451693656465 0.01047178401611778 -1.222621980774986e-006 5383.543612042374 -0.01047178401541807 0.9999451693664324 4.729071307852609e-007 4025.527338401119 1.358383548921921e-006 -5.091315573430271e-007 0.9036528202534309 48.77713703376568 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4331\" name=\"downwing_minimal81.95.11.4\">\r\n\t\t\t\t\t\t<matrix>-0.9319230444725031 -0.3226256307552209 0.1656265122524079 1805.315161670148 0.3626560894016391 -0.8290548800556711 0.4256155150787943 5047.625912274921 -1.005762045092062e-006 0.4567063698216533 0.8896174974466925 239.4072507521349 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4332\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4387\" name=\"instance_19\">\r\n\t\t\t\t\t\t<matrix>0.9319232061906143 0.3192339381678283 -0.1720721665036651 3423.218625403781 -0.3626556738317218 0.8203428940041879 -0.4421746244352944 715.1809331052214 1.032330827627215e-006 0.4744757411909412 0.8802685789122781 239.8895806133517 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4332\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4388\" name=\"instance_20\">\r\n\t\t\t\t\t\t<matrix>-0.909530733649489 -0.4156366708038146 4.92964902004862e-005 4749.471186224202 0.415636673630374 -0.9095307244800713 0.0001294613251539454 5136.61847333009 -8.972201738463059e-006 0.0001382384832550854 0.9999999904048107 165.0839250597849 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4402\" name=\"instance_21\">\r\n\t\t\t\t\t\t<matrix>-0.909530733649489 -0.4156366708038146 4.92964902004862e-005 4668.953299134697 0.415636673630374 -0.9095307244800713 0.0001294613251539454 5173.413825433798 -8.972201738463059e-006 0.0001382384832550854 0.9999999904048107 167.5038173600655 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4403\" name=\"instance_22\">\r\n\t\t\t\t\t\t<matrix>-0.909530733649489 -0.4156366708038146 4.92964902004862e-005 4704.135192048916 0.415636673630374 -0.9095307244800713 0.0001294613251539454 5250.401768987893 -8.972201738463059e-006 0.0001382384832550854 0.9999999904048107 167.4921160549202 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4404\" name=\"instance_23\">\r\n\t\t\t\t\t\t<matrix>-0.909530733649489 -0.4156366708038146 4.92964902004862e-005 4784.653051889707 0.415636673630374 -0.9095307244800713 0.0001294613251539454 5213.606357256292 -8.972201738463059e-006 0.0001382384832550854 0.9999999904048107 165.0722243377021 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4405\" name=\"instance_24\">\r\n\t\t\t\t\t\t<matrix>-0.909530733649489 -0.4156366708038146 4.92964902004862e-005 4967.234745944412 0.415636673630374 -0.9095307244800713 0.0001294613251539454 5130.156942521519 -8.972201738463059e-006 0.0001382384832550854 0.9999999904048107 92.97512558144388 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4406\" name=\"instance_25\">\r\n\t\t\t\t\t\t<matrix>-0.909530733649489 -0.4156366708038146 4.92964902004862e-005 4932.05381282335 0.415636673630374 -0.9095307244800713 0.0001294613251539454 5053.171098080576 -8.972201738463059e-006 0.0001382384832550854 0.9999999904048107 92.98682792197252 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4407\" name=\"instance_26\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971014 -0.4156366702619634 4.929653302808921e-005 5156.171508114593 0.4156366730885292 -0.909530724727689 0.0001294612842000816 5040.430486831502 -8.972145681159222e-006 0.0001382384638123553 0.9999999904048138 14.17010302346559 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4415\" name=\"instance_27\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971014 -0.4156366702619634 4.929653302808921e-005 5121.751641354705 0.4156366730885292 -0.909530724727689 0.0001294612842000816 4963.125731220014 -8.972145681159222e-006 0.0001382384638123553 0.9999999904048138 15.78879335926008 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4416\" name=\"instance_28\">\r\n\t\t\t\t\t\t<matrix>-0.1129107347426805 0.993605134623497 4.929189176657347e-005 5457.974368580552 0.9936051282261392 0.1129107275938679 0.0001294486036515362 4621.002815849776 -0.0001230552138941663 -6.359281338894418e-005 0.9999999904066842 18.69326688602444 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4417\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4424\" name=\"instance_29\">\r\n\t\t\t\t\t\t<matrix>0.1087034986889904 0.9940742011660466 0.0001787424377488979 5475.93741322236 -0.9940742095845787 0.1087034737862448 0.0001436161503882226 4424.904637834176 0.0001233351860753884 -0.0001932948255399004 0.9999999737127708 96.06234355604531 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4425\" name=\"instance_30\">\r\n\t\t\t\t\t\t<matrix>0.1087034986889904 0.9940742011660466 0.0001787424377488979 5392.205082301847 -0.9940742095845787 0.1087034737862448 0.0001436161503882226 4415.398797446967 0.0001233351860753884 -0.0001932948255399004 0.9999999737127708 97.16260221996726 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4426\" name=\"instance_31\">\r\n\t\t\t\t\t\t<matrix>0.1087034986889904 0.9940742011660466 0.0001787424377488979 5423.414065601606 -0.9940742095845787 0.1087034737862448 0.0001436161503882226 4129.423206530042 0.0001233351860753884 -0.0001932948255399004 0.9999999737127708 170.9794715119568 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4427\" name=\"instance_32\">\r\n\t\t\t\t\t\t<matrix>0.1087034986889904 0.9940742011660466 0.0001787424377488979 5497.76239301746 -0.9940742095845787 0.1087034737862448 0.0001436161503882226 4225.354255667235 0.0001233351860753884 -0.0001932948255399004 0.9999999737127708 168.3553411416102 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4428\" name=\"instance_33\">\r\n\t\t\t\t\t\t<matrix>0.1087034986889904 0.9940742011660466 0.0001787424377488979 5507.270703324053 -0.9940742095845787 0.1087034737862448 0.0001436161503882226 4138.893976224313 0.0001233351860753884 -0.0001932948255399004 0.9999999737127708 170.5964292864717 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4429\" name=\"instance_34\">\r\n\t\t\t\t\t\t<matrix>0.1087034986889904 0.9940742011660466 0.0001787424377488979 5432.922280013409 -0.9940742095845787 0.1087034737862448 0.0001436161503882226 4042.962641659683 0.0001233351860753884 -0.0001932948255399004 0.9999999737127708 167.6131532408899 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4430\" name=\"instance_35\">\r\n\t\t\t\t\t\t<matrix>0.1087034986889904 0.9940742011660466 0.0001787424377488979 5446.719048932109 -0.9940742095845787 0.1087034737862448 0.0001436161503882226 3913.412647355843 0.0001233351860753884 -0.0001932948255399004 0.9999999737127708 244.8906195312383 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4431\" name=\"instance_36\">\r\n\t\t\t\t\t\t<matrix>0.1087034986889904 0.9940742011660466 0.0001787424377488979 5530.839725341265 -0.9940742095845787 0.1087034737862448 0.0001436161503882226 3922.92015753547 0.0001233351860753884 -0.0001932948255399004 0.9999999737127708 244.8848651923605 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4432\" name=\"instance_37\">\r\n\t\t\t\t\t\t<matrix>-0.909530733649489 -0.4156366708038146 4.92964902004862e-005 4506.065027960408 0.415636673630374 -0.9095307244800713 0.0001294613251539454 5340.760948913312 -8.972201738463059e-006 0.0001382384832550854 0.9999999904048107 242.7606154045262 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4433\" name=\"instance_38\">\r\n\t\t\t\t\t\t<matrix>-0.909530733649489 -0.4156366708038146 4.92964902004862e-005 4471.686486993152 0.415636673630374 -0.9095307244800713 0.0001294613251539454 5263.57365546407 -8.972201738463059e-006 0.0001382384832550854 0.9999999904048107 244.7632483289997 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4389\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4434\" name=\"instance_39\">\r\n\t\t\t\t\t\t<matrix>-0.1122353827693544 -0.9936816474225534 4.92972305674989e-005 5429.214691902726 0.9936816410192348 -0.1122353756234901 0.0001294603210734123 4012.278771584171 -0.00012310945193014 6.351578165713384e-005 0.9999999904049042 244.0810326175736 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4460\" name=\"instance_40\">\r\n\t\t\t\t\t\t<matrix>-0.1122353827693544 -0.9936816474225534 4.92972305674989e-005 5415.625299037685 0.9936816410192348 -0.1122353756234901 0.0001294603210734123 4132.592484430833 -0.00012310945193014 6.351578165713384e-005 0.9999999904049042 244.0661755317564 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4461\" name=\"instance_41\">\r\n\t\t\t\t\t\t<matrix>-0.1122353827693544 -0.9936816474225534 4.92972305674989e-005 5402.03590617264 0.9936816410192348 -0.1122353756234901 0.0001294603210734123 4252.906197277488 -0.00012310945193014 6.351578165713384e-005 0.9999999904049042 244.0513184459394 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4462\" name=\"instance_42\">\r\n\t\t\t\t\t\t<matrix>-0.1122353827693544 -0.9936816474225534 4.92972305674989e-005 5388.446513307598 0.9936816410192348 -0.1122353756234901 0.0001294603210734123 4373.219910124144 -0.00012310945193014 6.351578165713384e-005 0.9999999904049042 244.0364613601221 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4463\" name=\"instance_43\">\r\n\t\t\t\t\t\t<matrix>-0.1122353827693544 -0.9936816474225534 4.92972305674989e-005 5374.857120442557 0.9936816410192348 -0.1122353756234901 0.0001294603210734123 4493.533622970803 -0.00012310945193014 6.351578165713384e-005 0.9999999904049042 244.0216042743048 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4464\" name=\"instance_44\">\r\n\t\t\t\t\t\t<matrix>-0.1122353827693544 -0.9936816474225534 4.92972305674989e-005 5361.267727577508 0.9936816410192348 -0.1122353756234901 0.0001294603210734123 4613.84733581746 -0.00012310945193014 6.351578165713384e-005 0.9999999904049042 244.0067471884875 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4465\" name=\"instance_45\">\r\n\t\t\t\t\t\t<matrix>-0.1122353827693544 -0.9936816474225534 4.92972305674989e-005 5347.678334712471 0.9936816410192348 -0.1122353756234901 0.0001294603210734123 4734.161048664112 -0.00012310945193014 6.351578165713384e-005 0.9999999904049042 243.9918901026705 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4466\" name=\"instance_46\">\r\n\t\t\t\t\t\t<matrix>-0.1122359949393036 -0.9936815784117903 4.652996746076385e-005 5332.162736371285 0.9936815718751689 -0.1122359881535907 0.0001291467416578624 4844.009831477077 -0.0001231084012206112 6.073088424885166e-005 0.9999999905780407 241.6898691335917 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4467\" name=\"instance_47\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971014 -0.4156366702619634 4.929653302808921e-005 5330.775859519299 0.4156366730885292 -0.909530724727689 0.0001294612842000816 4856.786150501934 -8.972145681159222e-006 0.0001382384638123553 0.9999999904048138 241.6880545236298 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4468\" name=\"instance_48\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971155 -0.4156366702618186 4.929749583627309e-005 5230.764406204481 0.4156366730884986 -0.909530724727403 0.0001294633910962383 4905.935515711399 -8.972145680832457e-006 0.0001382407802775535 0.9999999904044937 243.9804863881004 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4469\" name=\"instance_49\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971155 -0.4156366702618186 4.929749583627309e-005 5120.639570809706 0.4156366730884986 -0.909530724727403 0.0001294633910962383 4956.260280452207 -8.972145680832457e-006 0.0001382407802775535 0.9999999904044937 243.9794000520049 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4470\" name=\"instance_50\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971155 -0.4156366702618186 4.929749583627309e-005 5010.514735414938 0.4156366730884986 -0.909530724727403 0.0001294633910962383 5006.585045193006 -8.972145680832457e-006 0.0001382407802775535 0.9999999904044937 243.9783137159092 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4471\" name=\"instance_51\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971155 -0.4156366702618186 4.929749583627309e-005 4900.389900020163 0.4156366730884986 -0.909530724727403 0.0001294633910962383 5056.909809933808 -8.972145680832457e-006 0.0001382407802775535 0.9999999904044937 243.9772273798133 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4472\" name=\"instance_52\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971155 -0.4156366702618186 4.929749583627309e-005 4790.265064625393 0.4156366730884986 -0.909530724727403 0.0001294633910962383 5107.234574674614 -8.972145680832457e-006 0.0001382407802775535 0.9999999904044937 243.9761410437179 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4473\" name=\"instance_53\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971155 -0.4156366702618186 4.929749583627309e-005 4680.140229230619 0.4156366730884986 -0.909530724727403 0.0001294633910962383 5157.559339415413 -8.972145680832457e-006 0.0001382407802775535 0.9999999904044937 243.9750547076225 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4474\" name=\"instance_54\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971155 -0.4156366702618186 4.929749583627309e-005 4570.015393835849 0.4156366730884986 -0.909530724727403 0.0001294633910962383 5207.884104156208 -8.972145680832457e-006 0.0001382407802775535 0.9999999904044937 243.9739683715265 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4475\" name=\"instance_55\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971155 -0.4156366702618186 4.929749583627309e-005 4397.267022908067 0.4156366730884986 -0.909530724727403 0.0001294633910962383 5390.691703029448 -8.972145680832457e-006 0.0001382407802775535 0.9999999904044937 243.9588193472989 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4476\" name=\"instance_56\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971155 -0.4156366702618186 4.929749583627309e-005 4287.142187554188 0.4156366730884986 -0.909530724727403 0.0001294633910962383 5441.016467859734 -8.972145680832457e-006 0.0001382407802775535 0.9999999904044937 243.9577331360813 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4477\" name=\"instance_57\">\r\n\t\t\t\t\t\t<matrix>-0.9095307338971155 -0.4156366702618186 4.929749583627309e-005 4177.017352159422 0.4156366730884986 -0.909530724727403 0.0001294633910962383 5491.341232600543 -8.972145680832457e-006 0.0001382407802775535 0.9999999904044937 243.956646799986 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4478\" name=\"instance_58\">\r\n\t\t\t\t\t\t<matrix>-0.1122353827693544 -0.9936816474225534 4.92972305674989e-005 5544.567131577872 0.9936816410192348 -0.1122353756234901 0.0001294603210734123 3833.135259658 -0.00012310945193014 6.351578165713384e-005 0.9999999904049042 244.1039004370387 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4479\" name=\"instance_59\">\r\n\t\t\t\t\t\t<matrix>-0.1122353827693544 -0.9936816474225534 4.92972305674989e-005 5558.156451902822 0.9936816410192348 -0.1122353756234901 0.0001294603210734123 3712.821538624263 -0.00012310945193014 6.351578165713384e-005 0.9999999904049042 244.1188083324344 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4480\" name=\"instance_60\">\r\n\t\t\t\t\t\t<matrix>-0.1122353827693544 -0.9936816474225534 4.92972305674989e-005 5571.745772227769 0.9936816410192348 -0.1122353756234901 0.0001294603210734123 3592.507817590532 -0.00012310945193014 6.351578165713384e-005 0.9999999904049042 244.13371622783 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4481\" name=\"instance_61\">\r\n\t\t\t\t\t\t<matrix>0.931923495646244 -0.3626549266620657 -4.929723006157332e-005 3649.892747404155 -0.3626549300112556 -0.9319234866546484 -0.0001294603210044425 1911.875898269796 1.008176698115823e-006 0.0001385249984156736 -0.9999999904049043 279.6733323124599 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4482\" name=\"instance_62\">\r\n\t\t\t\t\t\t<matrix>0.930633193519732 0.3659533531594806 4.930109014928655e-005 3758.908246271399 -0.365953356477323 0.9306331845149674 0.000129470120483887 1869.038759021801 1.498794199350373e-006 -0.0001385310911094267 0.9999999904034453 243.6588013668417 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4483\" name=\"instance_63\">\r\n\t\t\t\t\t\t<matrix>0.930633193519732 0.3659533531594806 4.930109014928308e-005 3871.744481287342 -0.365953356477323 0.9306331845149674 0.000129470120483887 1825.129245411033 1.498794199353598e-006 -0.0001385310911094254 0.9999999904034453 243.6589234069153 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4484\" name=\"instance_64\">\r\n\t\t\t\t\t\t<matrix>0.930633193519732 0.3659533531594806 4.930109014928308e-005 3984.580716303286 -0.365953356477323 0.9306331845149674 0.000129470120483887 1781.219731800265 1.498794199353598e-006 -0.0001385310911094254 0.9999999904034453 243.6590454469888 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4485\" name=\"instance_65\">\r\n\t\t\t\t\t\t<matrix>0.930633193519732 0.3659533531594806 4.930109014928308e-005 4097.416951319233 -0.365953356477323 0.9306331845149674 0.000129470120483887 1737.310218189497 1.498794199353598e-006 -0.0001385310911094254 0.9999999904034453 243.6591674870624 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4486\" name=\"instance_66\">\r\n\t\t\t\t\t\t<matrix>0.930633193519732 0.3659533531594806 4.930109014928308e-005 4210.253186335174 -0.365953356477323 0.9306331845149674 0.000129470120483887 1693.400704578731 1.498794199353598e-006 -0.0001385310911094254 0.9999999904034453 243.6592895271359 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4487\" name=\"instance_67\">\r\n\t\t\t\t\t\t<matrix>0.930633193519732 0.3659533531594806 4.930109014928308e-005 4323.089421351122 -0.365953356477323 0.9306331845149674 0.000129470120483887 1649.491190967962 1.498794199353598e-006 -0.0001385310911094254 0.9999999904034453 243.6594115672095 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4488\" name=\"instance_68\">\r\n\t\t\t\t\t\t<matrix>0.930633193519732 0.3659533531594806 4.930109014928308e-005 4435.925656367068 -0.365953356477323 0.9306331845149674 0.000129470120483887 1605.581677357195 1.498794199353598e-006 -0.0001385310911094254 0.9999999904034453 243.6595336072831 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4489\" name=\"instance_69\">\r\n\t\t\t\t\t\t<matrix>0.930633193519732 0.3659533531594806 4.930109014928308e-005 4548.761891383015 -0.365953356477323 0.9306331845149674 0.000129470120483887 1561.672163746427 1.498794199353598e-006 -0.0001385310911094254 0.9999999904034453 243.6596556473566 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4490\" name=\"instance_70\">\r\n\t\t\t\t\t\t<matrix>0.9404883709512812 0.3398258696374461 4.930069732816066e-005 4662.058825621913 -0.3398258732053701 0.9404883620425577 0.0001294709024032136 1518.987449405599 -2.36917007580075e-006 -0.0001385195306059665 0.9999999904033634 243.6595965802298 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4491\" name=\"instance_71\">\r\n\t\t\t\t\t\t<matrix>-0.1144471929076583 -0.9931663229024821 0.02285815145457117 4398.111699233505 0.9934293255760429 -0.1144140440296588 0.00275710252041067 4322.995727174468 -0.0001229678251015152 0.02302350062744931 0.9997349165142587 241.3680510393243 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4492\" name=\"instance_72\">\r\n\t\t\t\t\t\t<matrix>-0.1144471929076579 -0.993166322902482 0.02285815145457117 4386.120638121049 0.9934293255760429 -0.1144140440296584 0.002757102520410669 4454.283234847853 -0.0001229678251015226 0.02302350062744931 0.9997349165142588 243.380867244944 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4493\" name=\"instance_73\">\r\n\t\t\t\t\t\t<matrix>0.916671241330783 0.399615015063617 0.004655647407888324 4538.432944909798 -0.399642134006392 0.9166088444048763 0.01069537683181126 4129.209331538272 6.625583254239729e-006 -0.01166473722218674 0.9999319646164129 242.1435464717287 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4494\" name=\"instance_74\">\r\n\t\t\t\t\t\t<matrix>0.9166712413307755 0.3996150150636345 0.004655647407888322 4676.228464803244 -0.3996421340064096 0.9166088444048687 0.01069537683181125 4065.704035005551 6.625583254464378e-006 -0.01166473722218674 0.9999319646164128 244.5499893634677 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4495\" name=\"instance_75\">\r\n\t\t\t\t\t\t<matrix>0.9166712413307755 0.3996150150636344 0.004655647407888323 4930.132444541641 -0.3996421340064095 0.9166088444048687 0.01069537683181125 3958.134412221409 6.625583254460908e-006 -0.01166473722218673 0.9999319646164129 241.5316322886346 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4496\" name=\"instance_76\">\r\n\t\t\t\t\t\t<matrix>0.1005033155513477 0.9949367221831473 4.913899647464129e-005 4942.804475798839 -0.9949367156929553 0.1005033085045301 0.000129405404653058 3952.547789874209 0.0001238115574160034 -6.189586398282343e-005 0.9999999904198001 242.206625155891 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4497\" name=\"instance_77\">\r\n\t\t\t\t\t\t<matrix>0.9164201970172188 0.4002174659893217 4.915290591600411e-005 4799.915446252602 -0.4002174689517682 0.9164201879245678 0.0001292677075648396 4015.50684101122 6.690479079265684e-006 -0.000138135389631862 0.9999999904369259 242.1606517476019 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4498\" name=\"instance_78\">\r\n\t\t\t\t\t\t<matrix>0.9164201970172188 0.4002174659893217 4.915290591600411e-005 4775.746147766297 -0.4002174689517682 0.9164201879245678 0.0001292677075648396 4026.062015904379 6.690479079265684e-006 -0.000138135389631862 0.9999999904369259 242.1604712036615 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4499\" name=\"instance_79\">\r\n\t\t\t\t\t\t<matrix>0.1005033155513473 0.9949367221831473 4.913899647464584e-005 4951.56705906391 -0.9949367156929555 0.1005033085045298 0.0001294054046530591 3834.883709228239 0.0001238115574160041 -6.189586398282802e-005 0.9999999904198001 244.1287708207292 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4500\" name=\"instance_80\">\r\n\t\t\t\t\t\t<matrix>0.1005033155513473 0.9949367221831473 4.913899647464584e-005 4963.73587389252 -0.9949367156929555 0.1005033085045298 0.0001294054046530591 3714.418025155715 0.0001238115574160041 -6.189586398282802e-005 0.9999999904198001 244.1437617681181 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4501\" name=\"instance_81\">\r\n\t\t\t\t\t\t<matrix>0.1005033155513473 0.9949367221831473 4.913899647464584e-005 4975.904688721124 -0.9949367156929555 0.1005033085045298 0.0001294054046530591 3593.952341083188 0.0001238115574160041 -6.189586398282802e-005 0.9999999904198001 244.1587527155068 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4502\" name=\"instance_82\">\r\n\t\t\t\t\t\t<matrix>0.1005033155513473 0.9949367221831473 4.913899647464584e-005 4988.073503549734 -0.9949367156929555 0.1005033085045298 0.0001294054046530591 3473.486657010663 0.0001238115574160041 -6.189586398282802e-005 0.9999999904198001 244.1737436628957 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4503\" name=\"instance_83\">\r\n\t\t\t\t\t\t<matrix>0.1005033155513477 0.9949367221831473 4.913899647464129e-005 5000.629724704612 -0.9949367156929553 0.1005033085045301 0.000129405404653058 3380.210807976046 0.0001238115574160034 -6.189586398282343e-005 0.9999999904198001 242.2329777509633 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4504\" name=\"instance_84\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820226 0.5936322813715685 4.929719429613063e-005 5001.195736607388 -0.5936322719824033 -0.8047364220047563 0.0001294603915091594 3366.229821607839 0.0001165231153115801 7.491708705802353e-005 0.999999990404897 242.2368408682874 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4505\" name=\"instance_85\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 4896.019054051549 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 3292.542858528182 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 243.92631199163 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4506\" name=\"instance_86\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 4789.79480788867 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 3214.204048571087 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 243.9416903203401 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4507\" name=\"instance_87\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 4683.570561725792 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 3135.865238613986 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 243.9570686490499 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4508\" name=\"instance_88\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 4577.346315562912 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 3057.526428656887 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 243.9724469777597 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4509\" name=\"instance_89\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 4471.122069400039 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 2979.187618699786 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 243.9878253064698 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4510\" name=\"instance_90\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 4364.897823237159 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 2900.848808742685 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 244.0032036351796 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4511\" name=\"instance_91\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 4258.673577074284 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 2822.509998785585 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 244.0185819638895 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4512\" name=\"instance_92\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 4152.449330911402 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 2744.171188828486 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 244.0339602925994 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4513\" name=\"instance_93\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 4046.225084748526 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 2665.832378871387 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 244.0493386213092 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4514\" name=\"instance_94\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 3940.000838585648 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 2587.493568914285 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 244.0647169500192 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4515\" name=\"instance_95\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 3833.776592422773 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 2509.154758957186 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 244.0800952787291 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4516\" name=\"instance_96\">\r\n\t\t\t\t\t\t<matrix>-0.8048085910823151 0.5935344382066118 4.881455573715626e-005 3727.552346259894 -0.5935344287777994 -0.8048085889983707 0.0001301148074884072 2430.815949000087 0.0001165139928903963 7.574439543819659e-005 0.999999990343638 244.0954736074389 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4517\" name=\"instance_97\">\r\n\t\t\t\t\t\t<matrix>-0.177156119269533 0.9841827609624159 4.929254966134188e-005 5374.372019843128 0.9841827550424667 0.1771561117204913 0.0001294492066787637 4611.650790549514 -0.0001186692011987075 -7.144559642649653e-005 0.9999999904065738 18.69859349641678 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4417\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4518\" name=\"instance_98\">\r\n\t\t\t\t\t\t<matrix>-0.9311359511521267 -0.364672233848615 4.828960122797904e-005 3495.350927839786 0.3646722370435036 -0.9311359425074576 0.000126887491590296 2394.377283228888 -1.308161652957061e-006 0.0001357593820769836 0.9999999907838394 244.3871930719205 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4519\" name=\"instance_99\">\r\n\t\t\t\t\t\t<matrix>-0.9311359511521267 -0.364672233848615 4.828960122797904e-005 3371.272443333352 0.3646722370435036 -0.9311359425074576 0.000126887491590296 2442.971667816285 -1.308161652957061e-006 0.0001357593820769836 0.9999999907838394 244.3870153102577 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4520\" name=\"instance_100\">\r\n\t\t\t\t\t\t<matrix>-0.9311359511521267 -0.364672233848615 4.828960122797904e-005 3247.193958826918 0.3646722370435036 -0.9311359425074576 0.000126887491590296 2491.566052403679 -1.308161652957061e-006 0.0001357593820769836 0.9999999907838394 244.3868375485948 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4521\" name=\"instance_101\">\r\n\t\t\t\t\t\t<matrix>-0.9311359511521267 -0.364672233848615 4.828960122797904e-005 3123.11547432048 0.3646722370435036 -0.9311359425074576 0.000126887491590296 2540.160436991076 -1.308161652957061e-006 0.0001357593820769836 0.9999999907838394 244.3866597869319 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4522\" name=\"instance_102\">\r\n\t\t\t\t\t\t<matrix>-0.9311359511521267 -0.364672233848615 4.828960122797904e-005 2999.036989814049 0.3646722370435036 -0.9311359425074576 0.000126887491590296 2588.754821578472 -1.308161652957061e-006 0.0001357593820769836 0.9999999907838394 244.3864820252688 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4523\" name=\"instance_103\">\r\n\t\t\t\t\t\t<matrix>-0.9311359511521267 -0.364672233848615 4.828960122797904e-005 2874.958505307614 0.3646722370435036 -0.9311359425074576 0.000126887491590296 2637.349206165867 -1.308161652957061e-006 0.0001357593820769836 0.9999999907838394 244.3863042636058 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4524\" name=\"instance_104\">\r\n\t\t\t\t\t\t<matrix>-0.9311359511521267 -0.364672233848615 4.828960122797904e-005 2750.88002080118 0.3646722370435036 -0.9311359425074576 0.000126887491590296 2685.943590753263 -1.308161652957061e-006 0.0001357593820769836 0.9999999907838394 244.3861265019429 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4525\" name=\"instance_105\">\r\n\t\t\t\t\t\t<matrix>-0.9311359511521267 -0.364672233848615 4.828960122797904e-005 2626.801536294744 0.3646722370435036 -0.9311359425074576 0.000126887491590296 2734.537975340656 -1.308161652957061e-006 0.0001357593820769836 0.9999999907838394 244.38594874028 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4526\" name=\"instance_106\">\r\n\t\t\t\t\t\t<matrix>-0.9311359511521268 -0.3646722338486149 4.828960122798295e-005 2506.903411142049 0.3646722370435034 -0.9311359425074576 0.0001268874915903015 2778.159157789281 -1.30816165295538e-006 0.0001357593820769901 0.9999999907838395 240.7864380458282 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4527\" name=\"instance_107\">\r\n\t\t\t\t\t\t<matrix>-0.1276845177348698 -0.9918148322648714 4.92972488937962e-005 2491.969477467493 0.9918148259735298 -0.1276845104902278 0.0001294602956108601 2786.625000684267 -0.0001221061462827266 6.542381774346059e-005 0.9999999904049065 241.6989187177393 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4528\" name=\"instance_108\">\r\n\t\t\t\t\t\t<matrix>-0.9311359511521268 -0.3646722338486149 4.828960122798295e-005 3611.104397306593 0.3646722370435034 -0.9311359425074576 0.0001268874915903015 2345.72110622976 -1.30816165295538e-006 0.0001357593820769901 0.9999999907838395 241.2544626733618 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4529\" name=\"instance_109\">\r\n\t\t\t\t\t\t<matrix>0.8046443788588538 0.593757038677269 -5.091217460412711e-005 3619.834893685672 0.5937570294240814 -0.8046443772321921 -0.0001272717895249486 2346.95178985927 -0.0001165347158833647 7.217906847409039e-005 -0.999999990604921 276.679391934441 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4530\" name=\"instance_110\">\r\n\t\t\t\t\t\t<matrix>-0.1276845177348699 -0.9918148322648716 4.929724889379641e-005 2343.417126244409 0.9918148259735297 -0.1276845104902279 0.0001294602956108598 3940.978933262555 -0.0001221061462827263 6.542381774346081e-005 0.9999999904049065 242.0461396483027 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4531\" name=\"instance_111\">\r\n\t\t\t\t\t\t<matrix>0.8049454627121034 -0.593348801110905 4.77435798059405e-005 2344.270738464766 0.5933487915953909 0.8049454603897932 0.000131568055939267 3958.411986859723 -0.0001164967260836062 -7.757651428187227e-005 0.9999999902051987 242.1010208626099 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4532\" name=\"instance_112\">\r\n\t\t\t\t\t\t<matrix>0.8049454627121022 -0.5933488011109069 4.77435798059405e-005 3770.829204042347 0.5933487915953929 0.8049454603897918 0.0001315680559392672 5010.131055779331 -0.0001164967260836065 -7.757651428187217e-005 0.9999999902051987 241.6501180934831 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4533\" name=\"instance_113\">\r\n\t\t\t\t\t\t<matrix>0.9095307335285354 0.4156366713775544 4.661793032757116e-005 3785.946780562611 -0.4156366738950785 0.9095307251748865 0.0001235972544327371 5018.241277250963 8.97111144683938e-006 -0.0001317916229915445 0.9999999912752438 241.5802945087308 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4534\" name=\"instance_114\">\r\n\t\t\t\t\t\t<matrix>0.9095307335285465 0.4156366713775301 4.661793032757591e-005 3882.041883692887 -0.4156366738950541 0.9095307251748978 0.0001235972544327349 4970.910865820316 8.971111446830618e-006 -0.0001317916229915448 0.9999999912752436 244.0345977846021 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4535\" name=\"instance_115\">\r\n\t\t\t\t\t\t<matrix>0.9095307335285505 0.4156366713775214 4.661793032757418e-005 3997.772364641895 -0.4156366738950455 0.9095307251749016 0.0001235972544327351 4918.024437251484 8.971111446831033e-006 -0.0001317916229915443 0.9999999912752436 244.0357392864824 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4536\" name=\"instance_116\">\r\n\t\t\t\t\t\t<matrix>0.9095307335285505 0.4156366713775214 4.661793032757418e-005 4113.502845590901 -0.4156366738950455 0.9095307251749016 0.0001235972544327351 4865.138008682655 8.971111446831033e-006 -0.0001317916229915443 0.9999999912752436 244.0368807883626 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4537\" name=\"instance_117\">\r\n\t\t\t\t\t\t<matrix>0.9095307335285505 0.4156366713775214 4.661793032757418e-005 4229.233326539908 -0.4156366738950455 0.9095307251749016 0.0001235972544327351 4812.251580113831 8.971111446831033e-006 -0.0001317916229915443 0.9999999912752436 244.0380222902426 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4538\" name=\"instance_118\">\r\n\t\t\t\t\t\t<matrix>0.9095307335285416 0.4156366713775406 4.661793032757116e-005 4337.008403078376 -0.4156366738950647 0.9095307251748929 0.0001235972544327371 4766.403235349294 8.971111446837388e-006 -0.0001317916229915446 0.9999999912752438 241.1434586333624 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4539\" name=\"instance_119\">\r\n\t\t\t\t\t\t<matrix>0.1144471929076584 0.9934293323682399 4.032307524258027e-005 4365.528641982921 -0.9934293255760429 0.1144471869123646 0.0001284265357112972 4636.077993136079 0.000122967825100871 -5.475618195040166e-005 0.9999999909403373 241.1589785388979 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4540\" name=\"instance_120\">\r\n\t\t\t\t\t\t<matrix>0.1144471929076587 0.9934293323682399 4.032307524258027e-005 4368.548338201723 -0.9934293255760429 0.1144471869123648 0.0001284265357112972 4609.867092390115 0.000122967825100871 -5.475618195040169e-005 0.9999999909403373 241.1622418805935 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4541\" name=\"instance_121\">\r\n\t\t\t\t\t\t<matrix>0.1186900337083648 0.9929042809388587 -0.007332447858324731 3431.242791839451 -0.9927711358870859 0.1185349907380889 -0.01883952547668661 591.0299414514573 -0.01783669385768479 0.009515506503019404 0.9997956328611454 242.3337288938661 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4542\" name=\"instance_122\">\r\n\t\t\t\t\t\t<matrix>-0.1186261634651632 -0.9929389864998364 4.92972054458756e-005 1909.314845557031 0.9929389801426195 -0.1186261562782505 0.0001294603527928712 4233.816016170469 -0.0001226982934967613 6.430650187197374e-005 0.9999999904049014 244.2312379736101 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4543\" name=\"instance_123\">\r\n\t\t\t\t\t\t<matrix>-0.118626163465163 -0.9929389864998363 4.92972054458782e-005 1893.307709862526 0.9929389801426196 -0.1186261562782502 0.0001294603527928716 4367.800868476477 -0.0001226982934967614 6.430650187197634e-005 0.9999999904049014 244.2146813551063 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4544\" name=\"instance_124\">\r\n\t\t\t\t\t\t<matrix>-0.118626163465163 -0.9929389864998363 4.92972054458782e-005 1877.300574168021 0.9929389801426196 -0.1186261562782502 0.0001294603527928716 4501.785720782487 -0.0001226982934967614 6.430650187197634e-005 0.9999999904049014 244.1981247366027 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4545\" name=\"instance_125\">\r\n\t\t\t\t\t\t<matrix>-0.118626163465163 -0.9929389864998363 4.92972054458782e-005 1861.293438473518 0.9929389801426196 -0.1186261562782502 0.0001294603527928716 4635.770573088492 -0.0001226982934967614 6.430650187197634e-005 0.9999999904049014 244.1815681180987 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4546\" name=\"instance_126\">\r\n\t\t\t\t\t\t<matrix>-0.118626163465163 -0.9929389864998363 4.92972054458782e-005 1845.286302779011 0.9929389801426196 -0.1186261562782502 0.0001294603527928716 4769.755425394509 -0.0001226982934967614 6.430650187197634e-005 0.9999999904049014 244.165011499595 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4547\" name=\"instance_127\">\r\n\t\t\t\t\t\t<matrix>-0.118626163465163 -0.9929389864998363 4.92972054458782e-005 1829.279167084505 0.9929389801426196 -0.1186261562782502 0.0001294603527928716 4903.740277700511 -0.0001226982934967614 6.430650187197634e-005 0.9999999904049014 244.1484548810912 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4548\" name=\"instance_128\">\r\n\t\t\t\t\t\t<matrix>-0.118626163465163 -0.9929389864998363 4.92972054458782e-005 1813.27203139 0.9929389801426196 -0.1186261562782502 0.0001294603527928716 5037.72513000652 -0.0001226982934967614 6.430650187197634e-005 0.9999999904049014 244.1318982625871 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4549\" name=\"instance_129\">\r\n\t\t\t\t\t\t<matrix>-0.118626163465163 -0.9929389864998363 4.92972054458782e-005 1797.264895695494 0.9929389801426196 -0.1186261562782502 0.0001294603527928716 5171.709982312535 -0.0001226982934967614 6.430650187197634e-005 0.9999999904049014 244.1153416440835 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4550\" name=\"instance_130\">\r\n\t\t\t\t\t\t<matrix>-0.1186261634651657 -0.992938986499836 4.92972054458756e-005 1690.233128153068 0.9929389801426192 -0.118626156278253 0.0001294603527928751 5213.522761043438 -0.000122698293496765 6.430650187197451e-005 0.9999999904049014 244.1152050026838 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4551\" name=\"instance_131\">\r\n\t\t\t\t\t\t<matrix>-0.1186241833796122 0.992939223058476 -4.929046653211611e-005 1704.728016735862 0.9929392167009148 0.118624176193593 -0.0001294595130168934 5087.905205647841 -0.0001226983872859527 -6.429946624157327e-005 -0.9999999904053422 277.3635257033706 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4552\" name=\"instance_132\">\r\n\t\t\t\t\t\t<matrix>-0.9319230085871102 -0.3626561782675809 4.929808973490628e-005 1698.041772993857 0.3626561816168749 -0.9319229995950941 0.0001294633181701912 5082.708999446822 -1.008648533379432e-006 0.000138528101955102 0.9999999904044739 241.7126011533399 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4553\" name=\"instance_133\">\r\n\t\t\t\t\t\t<matrix>-0.9319230085871102 -0.3626561782675809 4.929808973490628e-005 1612.986916050526 0.3626561816168749 -0.9319229995950941 0.0001294633181701912 5115.711017365592 -1.008648533379432e-006 0.000138528101955102 0.9999999904044739 241.4823102532519 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4554\" name=\"instance_134\">\r\n\t\t\t\t\t\t<matrix>-0.9319230085871102 -0.3626561782675809 4.929808973490628e-005 1582.566741464688 0.3626561816168749 -0.9319229995950941 0.0001294633181701912 5127.644099499157 -1.008648533379432e-006 0.000138528101955102 0.9999999904044739 240.5225132537958 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4555\" name=\"instance_135\">\r\n\t\t\t\t\t\t<matrix>-0.9319230085871224 -0.3626561782675496 4.929808973490409e-005 1485.365427408135 0.3626561816168435 -0.9319229995951063 0.0001294633181701879 5168.790184742419 -1.008648533375617e-006 0.0001385281019550982 0.9999999904044737 244.1310953585764 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4556\" name=\"instance_136\">\r\n\t\t\t\t\t\t<matrix>-0.9319230085871102 -0.3626561782675809 4.929808973490628e-005 1389.52776448613 0.3626561816168749 -0.9319229995950941 0.0001294633181701912 5202.414598555522 -1.008648533379432e-006 0.000138528101955102 0.9999999904044739 240.9132571764841 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4557\" name=\"instance_137\">\r\n\t\t\t\t\t\t<matrix>-0.9319230085871102 -0.3626561782675809 4.929808973490628e-005 1359.180543910623 0.3626561816168749 -0.9319229995950941 0.0001294633181701912 5214.575593296248 -1.008648533379432e-006 0.000138528101955102 0.9999999904044739 241.8721496471188 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4558\" name=\"instance_138\">\r\n\t\t\t\t\t\t<matrix>-0.9319230085871102 -0.3626561782675809 4.929808973490628e-005 1268.470850877243 0.3626561816168749 -0.9319229995950941 0.0001294633181701912 5249.806426790019 -1.008648533379432e-006 0.000138528101955102 0.9999999904044739 241.1497868588961 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4559\" name=\"instance_139\">\r\n\t\t\t\t\t\t<matrix>-0.5953420227646861 -0.8034705762212471 0.001705601697201013 1265.921727588866 0.8034719184256238 -0.5953380430798485 0.002343237782254481 5259.144508093005 -0.0008673130344460851 0.002765430988826118 0.9999958000709536 241.4867024052514 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4560\" name=\"instance_140\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 1367.339412880081 0.593756971353572 0.8046444197335708 0.00012946296320826 5339.501753652943 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1148136007911 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4561\" name=\"instance_141\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 1260.929226622078 0.593756971353572 0.8046444197335708 0.00012946296320826 5381.130420351265 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1146703401088 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4562\" name=\"instance_142\">\r\n\t\t\t\t\t\t<matrix>0.1190381496975091 0.883377345163729 -0.4532928247480602 587.8517530871895 -0.9928896735627868 0.1059650547609344 -0.0542356276067213 4880.719910847889 0.0001226742686527074 0.4565258735504422 0.8897101279237131 239.4888760325587 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4332\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4563\" name=\"instance_143\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 1162.858944599278 0.593756971353572 0.8046444197335708 0.00012946296320826 5308.763154543767 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1288669662141 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4564\" name=\"instance_144\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 1064.788662576477 0.593756971353572 0.8046444197335708 0.00012946296320826 5236.395888736273 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1430635923194 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4565\" name=\"instance_145\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 966.7183805536752 0.593756971353572 0.8046444197335708 0.00012946296320826 5164.028622928777 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1572602184248 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4566\" name=\"instance_146\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 868.6480985308713 0.593756971353572 0.8046444197335708 0.00012946296320826 5091.661357121281 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1714568445301 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4567\" name=\"instance_147\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 770.5778165080692 0.593756971353572 0.8046444197335708 0.00012946296320826 5019.294091313788 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1856534706355 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4568\" name=\"instance_148\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 672.507534485268 0.593756971353572 0.8046444197335708 0.00012946296320826 4946.926825506293 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1998500967409 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4569\" name=\"instance_149\">\r\n\t\t\t\t\t\t<matrix>0.8220465492883966 -0.5694202915009329 4.929535904841013e-005 574.1327069778108 0.5694202821746139 0.8220465470321682 0.000129463016307759 4874.986217147371 -0.0001142419481750106 -7.835484855701608e-005 0.9999999904046476 244.2140065005678 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4570\" name=\"instance_150\">\r\n\t\t\t\t\t\t<matrix>0.822046570569932 -0.5694202607777303 4.92953900427908e-005 474.2226077684245 0.5694202514514184 0.822046568313713 0.000129462935625575 4805.255021353515 -0.0001142419247833275 -7.835476885335811e-005 0.9999999904046565 244.2279525520834 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4571\" name=\"instance_151\">\r\n\t\t\t\t\t\t<matrix>-0.8200249652107972 0.5723277505077461 4.92927394982294e-005 495.9958090720525 -0.5723277411741179 -0.8200249629875934 0.0001294593685205302 4701.25983935602 0.000114514466050101 7.794831191395371e-005 0.9999999904052489 244.2403686121582 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4572\" name=\"instance_152\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032119 0.9929127658922106 4.929601876221671e-005 617.9012423701956 -0.9929127595365345 0.1188454256150565 0.000129460111914795 4682.045425105436 0.0001226839914631108 -6.433238905462342e-005 0.999999990404991 241.8859127511337 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4573\" name=\"instance_153\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032119 0.9929127658922106 4.929601876221671e-005 621.7004694678317 -0.9929127595365345 0.1188454256150565 0.000129460111914795 4650.199859508271 0.0001226839914631108 -6.433238905462342e-005 0.999999990404991 241.8898481944956 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4574\" name=\"instance_154\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032119 0.9929127658922106 4.929601876221671e-005 645.5579572594093 -0.9929127595365345 0.1188454256150565 0.000129460111914795 4450.99449231057 0.0001226839914631108 -6.433238905462342e-005 0.999999990404991 241.7636131750532 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4575\" name=\"instance_155\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032119 0.9929127658922106 4.929601876221671e-005 649.3801478357036 -0.9929127595365345 0.1188454256150565 0.000129460111914795 4418.953509898209 0.0001226839914631108 -6.433238905462342e-005 0.999999990404991 241.7678697023505 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4576\" name=\"instance_156\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 629.1560082300834 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 4561.933642969229 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.2518700915958 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4577\" name=\"instance_157\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032119 0.9929127658922106 4.929601876221671e-005 662.1970071802407 -0.9929127595365345 0.1188454256150565 0.000129460111914795 4311.982170312755 0.0001226839914631108 -6.433238905462342e-005 0.999999990404991 241.8269610421652 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4578\" name=\"instance_158\">\r\n\t\t\t\t\t\t<matrix>-0.9027660672931533 -0.4301318696802425 4.928927591419004e-005 658.4277810117114 0.4301318723588649 -0.9027660580808847 0.0001294533037768831 4295.427696769487 -1.118530626712068e-005 0.0001380669384849459 0.9999999904062048 241.8292873386449 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4579\" name=\"instance_159\">\r\n\t\t\t\t\t\t<matrix>-0.9027660672931657 -0.4301318696802166 4.928927591418916e-005 538.9427580817633 0.4301318723588389 -0.9027660580808972 0.0001294533037768848 4355.797924741385 -1.118530626711824e-005 0.0001380669384849474 0.9999999904062047 244.2829750741749 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4580\" name=\"instance_160\">\r\n\t\t\t\t\t\t<matrix>-0.9027660672931657 -0.4301318696802166 4.928927591418916e-005 554.9434808290694 0.4301318723588389 -0.9027660580808972 0.0001294533037768848 4241.519548960831 -1.118530626711824e-005 0.0001380669384849474 0.9999999904062047 244.297011597597 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4581\" name=\"instance_161\">\r\n\t\t\t\t\t\t<matrix>-0.9027660672931533 -0.4301318696802425 4.928927591419004e-005 674.3502747062066 0.4301318723588649 -0.9027660580808847 0.0001294533037768831 4181.221050185004 -1.118530626712068e-005 0.0001380669384849459 0.9999999904062048 241.940419003338 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4582\" name=\"instance_162\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032119 0.9929127658922106 4.929601876221671e-005 678.0717285694864 -0.9929127595365345 0.1188454256150565 0.000129460111914795 4179.212355629898 0.0001226839914631108 -6.433238905462342e-005 0.999999990404991 241.9404941636812 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4583\" name=\"instance_163\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032119 0.9929127658922106 4.929601876221671e-005 842.8197661957975 -0.9929127595365345 0.1188454256150565 0.000129460111914795 2802.896595864419 0.0001226839914631108 -6.433238905462342e-005 0.999999990404991 242.7600012256897 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4584\" name=\"instance_164\">\r\n\t\t\t\t\t\t<matrix>0.9317391795549371 0.3631282126909589 4.929667922391787e-005 845.6199168651938 -0.3631282160355061 0.9317391705617657 0.000129459428416117 2788.725028883328 1.078723845195018e-006 -0.0001385234368011398 0.9999999904050468 242.778283006552 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4585\" name=\"instance_165\">\r\n\t\t\t\t\t\t<matrix>0.9404883709512816 0.3398258696374452 4.930069732815719e-005 4675.317016412785 -0.3398258732053692 0.9404883620425582 0.0001294709024032101 1407.99299503238 -2.369170075798812e-006 -0.0001385195306059621 0.9999999904033634 244.4607160799897 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4586\" name=\"instance_166\">\r\n\t\t\t\t\t\t<matrix>0.9317346155425363 0.3631399231282378 4.929725907555224e-005 952.8728567011972 -0.3631399264727514 0.9317346065492039 0.0001294602840859009 2743.603848947716 1.080235322400038e-006 -0.0001385244310568086 0.9999999904049075 244.4713112631988 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4587\" name=\"instance_167\">\r\n\t\t\t\t\t\t<matrix>0.9317346155425363 0.3631399231282378 4.929725907555224e-005 1071.68091056366 -0.3631399264727514 0.9317346065492039 0.0001294602840859009 2697.29887409298 1.080235322400038e-006 -0.0001385244310568086 0.9999999904049075 244.4714490069739 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4588\" name=\"instance_168\">\r\n\t\t\t\t\t\t<matrix>0.9317346155425363 0.3631399231282378 4.929725907555224e-005 1190.488964426123 -0.3631399264727514 0.9317346065492039 0.0001294602840859009 2650.993899238244 1.080235322400038e-006 -0.0001385244310568086 0.9999999904049075 244.4715867507487 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4589\" name=\"instance_169\">\r\n\t\t\t\t\t\t<matrix>0.9317346155425363 0.3631399231282378 4.929725907555224e-005 1309.297018288582 -0.3631399264727514 0.9317346065492039 0.0001294602840859009 2604.688924383509 1.080235322400038e-006 -0.0001385244310568086 0.9999999904049075 244.4717244945237 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4590\" name=\"instance_170\">\r\n\t\t\t\t\t\t<matrix>0.9317346155425363 0.3631399231282378 4.929725907555224e-005 1428.105072151049 -0.3631399264727514 0.9317346065492039 0.0001294602840859009 2558.383949528768 1.080235322400038e-006 -0.0001385244310568086 0.9999999904049075 244.4718622382986 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4591\" name=\"instance_171\">\r\n\t\t\t\t\t\t<matrix>0.1186900337083685 -0.9929042809388535 0.007332447858981501 3523.293051520062 -0.9927711358870853 -0.1185349907380801 0.01883952547676578 676.175763150763 -0.01783669385768551 -0.009515506503680889 -0.9997956328611392 278.1355504785316 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4592\" name=\"instance_172\">\r\n\t\t\t\t\t\t<matrix>0.9319231657146803 -0.3625816435154189 0.007332461386628428 3527.410979623154 -0.3626557778434985 -0.9317327186568676 0.01883952709092382 677.7006052110501 1.027486529392961e-006 -0.02021615121481636 -0.9997956327315118 278.1946139676278 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4593\" name=\"instance_173\">\r\n\t\t\t\t\t\t<matrix>0.9319231657146803 -0.3625816435154189 0.007332461386628425 3626.593621095114 -0.3626557778434985 -0.9317327186568676 0.01883952709092382 639.0900136328537 1.027486529389491e-006 -0.02021615121481636 -0.9997956327315118 278.8035759824359 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4594\" name=\"instance_174\">\r\n\t\t\t\t\t\t<matrix>0.9319231657146803 -0.3625816435154189 0.007332461386628425 3656.551448967478 -0.3626557778434985 -0.9317327186568676 0.01883952709092382 627.4319931336579 1.027486529389491e-006 -0.02021615121481636 -0.9997956327315118 278.8036088372519 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4595\" name=\"instance_175\">\r\n\t\t\t\t\t\t<matrix>0.9319231657146589 0.3626557745283112 4.904731513512717e-005 3765.238408894782 -0.3626557778435533 0.9319231568047608 0.0001288710081724747 584.5253799383311 1.02748652950748e-006 -0.0001378851701263997 0.9999999904933121 244.6121770142565 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4596\" name=\"instance_176\">\r\n\t\t\t\t\t\t<matrix>0.9317391795549371 0.3631282126909589 4.929667922391787e-005 3844.74279226009 -0.3631282160355061 0.9317391705617657 0.000129459428416117 558.5269165033305 1.078723845195018e-006 -0.0001385234368011398 0.9999999904050468 243.3926171647372 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4597\" name=\"instance_177\">\r\n\t\t\t\t\t\t<matrix>0.9317391795549371 0.3631282126909589 4.929667922391787e-005 3875.165250447026 -0.3631282160355061 0.9317391705617657 0.000129459428416117 546.6880861752863 1.078723845195018e-006 -0.0001385234368011398 0.9999999904050468 243.392650815131 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4598\" name=\"instance_178\">\r\n\t\t\t\t\t\t<matrix>0.9317391795549371 0.3631282126909589 4.929667922391787e-005 3960.080352574208 -0.3631282160355061 0.9317391705617657 0.000129459428416117 513.6436814114454 1.078723845195018e-006 -0.0001385234368011398 0.9999999904050468 243.3927479489274 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4599\" name=\"instance_179\">\r\n\t\t\t\t\t\t<matrix>-0.8045815054622162 0.5937969654705426 -0.007332452940795588 3972.603007006179 -0.5935963824323649 -0.8045423584566733 -0.01883953853424504 501.5952078605828 -0.01708612979476031 -0.01080542673608449 0.9997956325778223 243.2528920560431 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4600\" name=\"instance_180\">\r\n\t\t\t\t\t\t<matrix>-0.8045815054622028 0.593796965470561 -0.007332452940795586 3863.121971931575 -0.5935963824323833 -0.8045423584566598 -0.01883953853424504 424.663947958468 -0.01708612979476057 -0.01080542673608411 0.9997956325778222 242.3662163308099 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4601\" name=\"instance_181\">\r\n\t\t\t\t\t\t<matrix>-0.8045815054622028 0.593796965470561 -0.007332452940795583 3969.676465533 -0.5935963824323833 -0.8045423584566598 -0.01883953853424504 383.1985231100014 -0.01708612979476056 -0.01080542673608411 0.9997956325778222 242.3663340700052 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4602\" name=\"instance_182\">\r\n\t\t\t\t\t\t<matrix>0.783815836347858 -0.6209933431796624 4.916150880585404e-005 4732.738118666208 0.6209933337312839 0.7838158346751957 0.0001295134470043649 946.2721005666581 -0.000118960557500515 -7.098572153741311e-005 0.9999999904047067 244.5176578119421 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4603\" name=\"instance_183\">\r\n\t\t\t\t\t\t<matrix>0.783815836347858 -0.6209933431796624 4.916150880585057e-005 4719.667155499383 0.6209933337312839 0.7838158346751957 0.000129513447004364 1056.441897499922 -0.0001189605575005118 -7.098572153741457e-005 0.9999999904047067 244.5040392425281 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4604\" name=\"instance_184\">\r\n\t\t\t\t\t\t<matrix>0.1153092225581923 -0.8833712763311729 0.4534004988355364 4560.524615677767 -0.9647924120065228 -0.1055215743898595 0.05429906262416381 1554.013359045517 0.0001192203728126486 0.45664032398753 0.8896513920934701 239.7237107621774 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4605\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4660\" name=\"instance_185\">\r\n\t\t\t\t\t\t<matrix>-0.8045815054622028 0.593796965470561 -0.00733245294079559 4066.407548392529 -0.5935963824323833 -0.8045423584566598 -0.01883953853424505 453.8912431479196 -0.01708612979476057 -0.01080542673608411 0.9997956325778222 244.4078457815532 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4661\" name=\"instance_186\">\r\n\t\t\t\t\t\t<matrix>-0.8045815054622028 0.593796965470561 -0.007332452940795576 4162.957221986236 -0.5935963824323833 -0.8045423584566598 -0.01883953853424505 525.7613747417734 -0.01708612979476056 -0.01080542673608412 0.9997956325778222 244.726748704301 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4662\" name=\"instance_187\">\r\n\t\t\t\t\t\t<matrix>-0.8045815054622028 0.593796965470561 -0.007332452940795576 4259.582797447871 -0.5935963824323833 -0.8045423584566598 -0.01883953853424505 597.0626266485613 -0.01708612979476056 -0.01080542673608411 0.9997956325778222 244.7127546523336 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4663\" name=\"instance_188\">\r\n\t\t\t\t\t\t<matrix>-0.8045815054622028 0.593796965470561 -0.007332452940795571 4356.208372909485 -0.5935963824323833 -0.8045423584566598 -0.01883953853424506 668.3638785553528 -0.01708612979476056 -0.01080542673608413 0.9997956325778222 244.6987606000958 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4664\" name=\"instance_189\">\r\n\t\t\t\t\t\t<matrix>-0.8045815054622028 0.593796965470561 -0.007332452940795571 4452.758098212248 -0.5935963824323833 -0.8045423584566598 -0.01883953853424506 739.6091596567103 -0.01708612979476057 -0.01080542673608413 0.9997956325778222 244.684777530761 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4665\" name=\"instance_190\">\r\n\t\t\t\t\t\t<matrix>-0.8045815054622028 0.593796965470561 -0.00733245294079556 4549.452553242161 -0.5935963824323833 -0.8045423584566598 -0.01883953853424508 810.9611510619725 -0.01708612979476057 -0.01080542673608415 0.9997956325778222 244.9693224852877 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4666\" name=\"instance_191\">\r\n\t\t\t\t\t\t<matrix>-0.8045815054622028 0.593796965470561 -0.007332452940795562 4646.050606235333 -0.5935963824323833 -0.8045423584566598 -0.01883953853424508 882.2421814049033 -0.01708612979476057 -0.01080542673608415 0.9997956325778222 244.6567834182235 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4667\" name=\"instance_192\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 2052.131012296254 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 1251.926677627926 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.7868002243719 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4705\" name=\"instance_193\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 2165.869654704069 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 1207.665509478781 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.7869240477117 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4706\" name=\"instance_194\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 2279.608297111856 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 1163.404341329507 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.7870478710433 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4707\" name=\"instance_195\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 2393.346939519662 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 1119.143173180299 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.7871716943872 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4708\" name=\"instance_196\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 2507.085581927473 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 1074.882005031079 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.7872955177255 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4709\" name=\"instance_197\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 2620.824224335276 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 1030.620836881826 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.787419341072 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4710\" name=\"instance_198\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 2734.56286674308 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 986.3596687326292 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.7875431644039 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4711\" name=\"instance_199\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 2848.301509150875 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 942.0985005834236 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.78766698774 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4712\" name=\"instance_200\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 2962.040151558682 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 897.8373324342385 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.787790811078 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4713\" name=\"instance_201\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 3075.778793966495 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 853.576164285005 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.7879146344229 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4714\" name=\"instance_202\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 3189.517436374299 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 809.3149961358085 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.7880384577672 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4715\" name=\"instance_203\">\r\n\t\t\t\t\t\t<matrix>0.9319234761660521 0.3626549767561864 4.903623070212614e-005 3303.256078955192 -0.3626549800700201 0.9319234672713912 0.0001287605606953518 765.0538279976634 9.976440082410808e-007 -0.0001377782225842907 0.999999990508083 243.7881698030342 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4716\" name=\"instance_204\">\r\n\t\t\t\t\t\t<matrix>0.118674582820198 0.9929331977870969 -9.013735182268307e-005 2037.317339737176 -0.9929331942976974 0.1186745926426177 0.0001127957441134418 1372.898341326215 0.0001226956524087761 7.611438079427558e-005 0.999999989576189 243.5640331917427 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4717\" name=\"instance_205\">\r\n\t\t\t\t\t\t<matrix>0.118674582820198 0.9929331977870969 -9.013735182268307e-005 2022.833433769076 -0.9929331942976974 0.1186745926426177 0.0001127957441134418 1494.083101470096 0.0001226956524087761 7.611438079427558e-005 0.999999989576189 243.5512204203086 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4718\" name=\"instance_206\">\r\n\t\t\t\t\t\t<matrix>0.118674582820198 0.9929331977870969 -9.013735182268307e-005 2008.349527800982 -0.9929331942976974 0.1186745926426177 0.0001127957441134418 1615.26786161399 0.0001226956524087761 7.611438079427558e-005 0.999999989576189 243.5384076488773 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4719\" name=\"instance_207\">\r\n\t\t\t\t\t\t<matrix>0.118674582820198 0.9929331977870969 -9.013735182268307e-005 1993.865621832906 -0.9929331942976974 0.1186745926426177 0.0001127957441134418 1736.452621757868 0.0001226956524087761 7.611438079427558e-005 0.999999989576189 243.5255948774437 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4720\" name=\"instance_208\">\r\n\t\t\t\t\t\t<matrix>0.118674582820198 0.9929331977870969 -9.013735182268307e-005 1979.381715684885 -0.9929331942976974 0.1186745926426177 0.0001127957441134418 1857.637381613166 0.0001226956524087761 7.611438079427558e-005 0.999999989576189 243.5106206084269 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4721\" name=\"instance_209\">\r\n\t\t\t\t\t\t<matrix>-0.8609652198895701 0.2233293374545398 4.247947459692882e-005 4072.246080370544 0.3350419304261532 0.8520426124346402 0.0001115453456312504 456.1185620769165 -9.33841881795884e-007 -0.0001212559412378943 0.8620642391921476 394.1677776245192 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4722\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4747\" name=\"instance_210\">\r\n\t\t\t\t\t\t<matrix>0.4266742062945467 -0.9044053954132226 4.929879657981786e-005 1582.635697152277 0.904405386210036 0.4266742090096283 0.000129461515577671 2493.357716593946 -0.000138120218222639 -1.065179224433169e-005 0.9999999904046723 243.4827079239745 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4748\" name=\"instance_211\">\r\n\t\t\t\t\t\t<matrix>0.1186900337083648 0.9929042809388587 -0.007332447858324731 3538.254453819057 -0.9927711358870859 0.1185349907380889 -0.01883952547668661 549.3866655732643 -0.01783669385768479 0.009515506503019404 0.9997956328611454 242.3338476893948 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4435\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4749\" name=\"instance_212\">\r\n\t\t\t\t\t\t<matrix>-0.8179959710335454 0.575223946773084 4.931210612659246e-005 602.9306175772458 -0.575223937429867 -0.8179959688453925 0.0001294618409999984 4772.138695754195 0.0001148066551633574 7.753376049148613e-005 0.9999999904039739 241.8730947823287 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4750\" name=\"instance_213\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032119 0.9929127658922106 4.929601876221671e-005 607.1150957016466 -0.9929127595365345 0.1188454256150565 0.000129460111914795 4772.083008170499 0.0001226839914631108 -6.433238905462342e-005 0.999999990404991 241.8729059888119 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4408\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4751\" name=\"instance_214\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079757 -0.5937571105712189 -4.929723038963857e-005 5536.171271819674 -0.5937571011817526 0.8046443239321753 -0.0001294603206968663 3510.906289866825 0.0001165347225691941 -7.48989318665195e-005 -0.9999999904049042 280.2191977683989 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4777\" name=\"instance_215\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 5438.74595056388 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 3439.014928096193 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.2333076457884 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4778\" name=\"instance_216\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 5341.320629308043 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 3367.123566325571 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.2474175231819 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4779\" name=\"instance_217\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 5243.895308052221 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 3295.232204554944 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.2615274005822 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4780\" name=\"instance_218\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 5146.469986796403 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 3223.340842784313 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.2756372779688 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4781\" name=\"instance_219\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 5049.0446655406 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 3151.449481013691 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.2897471553623 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4782\" name=\"instance_220\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 4951.619344284773 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 3079.558119243071 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.3038570327504 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4783\" name=\"instance_221\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 4854.194023028949 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 3007.666757472441 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.3179669101489 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4784\" name=\"instance_222\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 4756.768701773126 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2935.775395701814 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.3320767875422 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4785\" name=\"instance_223\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 4659.343380517317 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2863.884033931185 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.3461866649354 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4786\" name=\"instance_224\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 4561.918059261498 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2791.992672160563 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.3602965423283 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4787\" name=\"instance_225\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 4464.492738005686 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2720.101310389943 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.3744064197284 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4788\" name=\"instance_226\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 4367.067416749874 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2648.209948619308 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.3885162971155 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4789\" name=\"instance_227\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 4269.64209549404 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2576.318586848668 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.4026261745091 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4790\" name=\"instance_228\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 4172.216774238222 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2504.427225078037 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.4167360519025 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4791\" name=\"instance_229\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 4074.791452982408 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2432.535863307423 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.4308459292955 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4792\" name=\"instance_230\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 3977.366131726586 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2360.644501536813 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.4449558066891 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4793\" name=\"instance_231\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 3879.940810470777 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2288.753139766187 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.4590656840769 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4794\" name=\"instance_232\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 3782.515489214961 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2216.861777995562 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.4731755614778 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4795\" name=\"instance_233\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079806 -0.5937571105712123 -4.929723038964031e-005 3685.090167959145 -0.593757101181746 0.8046443239321802 -0.0001294603206968663 2144.970416224931 0.0001165347225691949 -7.489893186651943e-005 -0.9999999904049042 280.4872854388737 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4752\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4796\" name=\"instance_234\">\r\n\t\t\t\t\t\t<matrix>-0.1186745858913892 -0.9929332002875573 4.92972300382751e-005 3627.301156223392 0.9929331939306965 -0.1186745787041655 0.0001294603210429169 2090.919869382915 -0.0001226951228773235 6.431250606297523e-005 0.9999999904049042 242.1998322852047 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4797\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4811\" name=\"instance_235\">\r\n\t\t\t\t\t\t<matrix>0.8046443259079799 -0.5937571105712133 4.929722989605707e-005 3626.667863105261 0.593757101181747 0.8046443239321794 0.000129460321372094 2105.659353460638 -0.0001165347225729572 -7.489893270290597e-005 0.9999999904049043 242.1979553934694 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4797\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4812\" name=\"instance_236\">\r\n\t\t\t\t\t\t<matrix>-0.1186745858913892 -0.9929332002875573 4.92972300382751e-005 3648.46769461247 0.9929331939306965 -0.1186745787041655 0.0001294603210429169 1913.825446259228 -0.0001226951228773235 6.431250606297523e-005 0.9999999904049042 242.6726916643558 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4797\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4813\" name=\"instance_237\">\r\n\t\t\t\t\t\t<matrix>-0.1186745858913891 -0.9929332002875574 4.929723003827317e-005 3640.895964433259 0.9929331939306967 -0.1186745787041653 0.0001294603210429185 2003.068523594855 -0.0001226951228773252 6.431250606297346e-005 0.9999999904049043 243.6475932767253 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4843\" name=\"instance_238\">\r\n\t\t\t\t\t\t<matrix>-0.1276845177348623 -0.9918148322648723 4.929724889379513e-005 2479.116795480273 0.9918148259735305 -0.1276845104902203 0.000129460295610859 2911.227907222175 -0.0001221061462827261 6.542381774345848e-005 0.9999999904049066 244.3703784476641 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4844\" name=\"instance_239\">\r\n\t\t\t\t\t\t<matrix>-0.1276845177348607 -0.9918148322648726 4.929724889379252e-005 2462.447662121442 0.9918148259735308 -0.1276845104902187 0.0001294602956108625 3040.70870798843 -0.00012210614628273 6.542381774345613e-005 0.9999999904049066 244.354442724478 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4845\" name=\"instance_240\">\r\n\t\t\t\t\t\t<matrix>-0.1276845177348607 -0.9918148322648726 4.929724889379252e-005 2445.778528762605 0.9918148259735308 -0.1276845104902187 0.0001294602956108625 3170.189508754676 -0.00012210614628273 6.542381774345613e-005 0.9999999904049066 244.3385070012913 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4846\" name=\"instance_241\">\r\n\t\t\t\t\t\t<matrix>-0.1276845177348607 -0.9918148322648726 4.929724889379252e-005 2429.10939540376 0.9918148259735308 -0.1276845104902187 0.0001294602956108625 3299.670309520996 -0.00012210614628273 6.542381774345613e-005 0.9999999904049066 244.3225712781041 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4847\" name=\"instance_242\">\r\n\t\t\t\t\t\t<matrix>-0.1276845177348607 -0.9918148322648726 4.929724889379252e-005 2412.440262044922 0.9918148259735308 -0.1276845104902187 0.0001294602956108625 3429.151110287258 -0.00012210614628273 6.542381774345613e-005 0.9999999904049066 244.3066355549169 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4848\" name=\"instance_243\">\r\n\t\t\t\t\t\t<matrix>-0.1276845177348607 -0.9918148322648726 4.929724889379252e-005 2395.771128686085 0.9918148259735308 -0.1276845104902187 0.0001294602956108625 3558.631911053516 -0.00012210614628273 6.542381774345613e-005 0.9999999904049066 244.29069983173 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4849\" name=\"instance_244\">\r\n\t\t\t\t\t\t<matrix>-0.1276845177348607 -0.9918148322648726 4.929724889379252e-005 2379.101995327275 0.9918148259735308 -0.1276845104902187 0.0001294602956108625 3688.112711819769 -0.00012210614628273 6.542381774345613e-005 0.9999999904049066 244.2747641085401 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4850\" name=\"instance_245\">\r\n\t\t\t\t\t\t<matrix>-0.1276845177348607 -0.9918148322648726 4.929724889379252e-005 2362.432861968412 0.9918148259735308 -0.1276845104902187 0.0001294602956108625 3817.593512586061 -0.00012210614628273 6.542381774345613e-005 0.9999999904049066 244.2588283853543 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4851\" name=\"instance_246\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 2438.468822991274 0.593756971353572 0.8046444197335708 0.00012946296320826 4024.156229546669 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.2389251058326 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4852\" name=\"instance_247\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 2540.891668205054 0.593756971353572 0.8046444197335708 0.00012946296320826 4099.655097798728 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.2241018330833 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4853\" name=\"instance_248\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 2643.314513418868 0.593756971353572 0.8046444197335708 0.00012946296320826 4175.153966050702 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.2092785603317 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4854\" name=\"instance_249\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 2745.737358632679 0.593756971353572 0.8046444197335708 0.00012946296320826 4250.652834302751 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1944552875797 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4855\" name=\"instance_250\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 2848.160203846474 0.593756971353572 0.8046444197335708 0.00012946296320826 4326.151702554784 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1796320148282 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4856\" name=\"instance_251\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 2950.583049060288 0.593756971353572 0.8046444197335708 0.00012946296320826 4401.650570806794 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1648087420764 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4857\" name=\"instance_252\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 3053.005894274098 0.593756971353572 0.8046444197335708 0.00012946296320826 4477.149439058838 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1499854693247 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4858\" name=\"instance_253\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 3155.428739487907 0.593756971353572 0.8046444197335708 0.00012946296320826 4552.648307310825 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.135162196573 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4859\" name=\"instance_254\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 3257.851584701706 0.593756971353572 0.8046444197335708 0.00012946296320826 4628.147175562837 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1203389238213 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4860\" name=\"instance_255\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 3360.274429915511 0.593756971353572 0.8046444197335708 0.00012946296320826 4703.646043814899 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.1055156510695 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4861\" name=\"instance_256\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 3462.697275129319 0.593756971353572 0.8046444197335708 0.00012946296320826 4779.144912066879 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.0906923783164 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4862\" name=\"instance_257\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 3565.12012034312 0.593756971353572 0.8046444197335708 0.00012946296320826 4854.64378031894 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.0758691055663 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4863\" name=\"instance_258\">\r\n\t\t\t\t\t\t<matrix>0.8046444217097978 -0.5937569807431998 4.929528043945506e-005 3667.542965556934 0.593756971353572 0.8046444197335708 0.00012946296320826 4930.142648570984 -0.0001165347104774134 -7.490223474779138e-005 0.9999999904046584 244.0610458328144 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4864\" name=\"instance_259\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820118 0.5936322813715831 4.92971942961289e-005 4081.371034285771 -0.5936322719824179 -0.8047364220047455 0.0001294603915091574 5490.090400638621 0.0001165231153115789 7.491708705802087e-005 0.999999990404897 243.9615232813257 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4865\" name=\"instance_260\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820098 0.5936322813715859 4.929719429612564e-005 3973.137610604582 -0.5936322719824208 -0.8047364220047434 0.0001294603915091561 5410.249534375456 0.0001165231153115758 7.491708705802132e-005 0.999999990404897 243.9771957320716 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4866\" name=\"instance_261\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 3870.699676949298 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 5334.683844193248 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 243.9920284029824 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4867\" name=\"instance_262\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 3768.261743293989 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 5259.118154011026 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.0068610738932 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4868\" name=\"instance_263\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 3665.823809638732 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 5183.552463828874 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.0216937448037 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4869\" name=\"instance_264\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 3563.385875983449 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 5107.986773646673 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.0365264157145 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4870\" name=\"instance_265\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 3460.947942328152 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 5032.421083464464 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.0513590866249 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4871\" name=\"instance_266\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 3358.510008672899 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4956.855393282206 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.0661917575353 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4872\" name=\"instance_267\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 3256.072075017608 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4881.289703100001 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.0810244284442 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4873\" name=\"instance_268\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 3153.634141362315 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4805.724012917792 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.0958570993557 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4874\" name=\"instance_269\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 3051.196207707054 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4730.158322735637 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.1106897702686 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4875\" name=\"instance_270\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 2948.75827405175 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4654.592632553433 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.1255224411783 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4876\" name=\"instance_271\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 2846.320340396482 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4579.026942371233 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.1403551120902 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4877\" name=\"instance_272\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 2743.882406741215 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4503.461252188963 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.1551877829987 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4878\" name=\"instance_273\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 2641.444473085921 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4427.895562006764 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.1700204539117 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4879\" name=\"instance_274\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 2539.006539430633 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4352.329871824592 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.1848531248201 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4880\" name=\"instance_275\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 2436.568605775323 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4276.764181642366 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.1996857957333 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4881\" name=\"instance_276\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 2334.130672120072 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4201.198491460207 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.2145184666422 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4882\" name=\"instance_277\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820144 0.5936322813715796 4.929719429612196e-005 2231.692738464771 -0.5936322719824144 -0.804736422004748 0.0001294603915091548 4125.632801277987 0.0001165231153115715 7.49170870580234e-005 0.999999990404897 244.2293511375547 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4883\" name=\"instance_278\">\r\n\t\t\t\t\t\t<matrix>-0.8047364239820138 0.5936322813715804 4.929719429613063e-005 2119.95877405706 -0.5936322719824152 -0.8047364220047475 0.0001294603915091592 4039.350304484714 0.0001165231153115811 7.491708705802163e-005 0.999999990404897 241.2968275933056 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4797\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4884\" name=\"instance_279\">\r\n\t\t\t\t\t\t<matrix>-0.9319209632256587 -0.3626614342197746 4.929723011142342e-005 2104.638269357772 0.3626614375689018 -0.9319209542340396 0.0001294603210675509 4031.077113661624 -1.009143986377756e-006 0.0001385249914491488 0.9999999904049042 241.2986539011379 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4797\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4885\" name=\"instance_280\">\r\n\t\t\t\t\t\t<matrix>-0.9319230085871224 -0.3626561782675496 4.929808973490409e-005 2012.322310839257 0.3626561816168435 -0.9319229995951063 0.0001294633181701879 4070.315543484474 -1.008648533375617e-006 0.0001385281019550982 0.9999999904044737 244.24731942111 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4886\" name=\"instance_281\">\r\n\t\t\t\t\t\t<matrix>-0.9319209632256587 -0.3626614342197746 4.929723011142342e-005 1936.454492320518 0.3626614375689018 -0.9319209542340396 0.0001294603210675509 4096.526630931048 -1.009143986377756e-006 0.0001385249914491488 0.9999999904049042 241.3477069620661 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4797\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4887\" name=\"instance_282\">\r\n\t\t\t\t\t\t<matrix>-0.1186261634651546 -0.9929389864998373 4.929720544587906e-005 1921.582120362191 0.9929389801426205 -0.1186261562782418 0.0001294603527928692 4104.954041699334 -0.0001226982934967595 6.430650187197587e-005 0.9999999904049013 241.3473491171929 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4797\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4888\" name=\"instance_283\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 688.2257587418799 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 4068.354723997923 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.3128550310758 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4889\" name=\"instance_284\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 702.121981230694 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 3952.256559406603 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.3272000841488 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4890\" name=\"instance_285\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 716.0182037195432 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 3836.158394815302 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.3415451372245 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4891\" name=\"instance_286\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 729.9144262083592 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 3720.060230224016 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.3558901902986 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4892\" name=\"instance_287\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 743.810648697181 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 3603.962065632711 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.3702352433728 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4893\" name=\"instance_288\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 757.7068711859924 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 3487.863901041416 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.384580296447 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4894\" name=\"instance_289\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 771.6030936748248 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 3371.765736450124 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.3989253495212 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4895\" name=\"instance_290\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 785.4993161636548 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 3255.66757185883 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.4132704025954 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4896\" name=\"instance_291\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 799.3955386524731 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 3139.569407267534 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.4276154556694 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4897\" name=\"instance_292\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 813.2917611412881 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 3023.471242676211 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.4419605087426 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4898\" name=\"instance_293\">\r\n\t\t\t\t\t\t<matrix>0.1188454328032048 0.9929127658922115 4.929601876221888e-005 827.1879836301105 -0.9929127595365352 0.1188454256150495 0.0001294601119147926 2907.373078084912 0.0001226839914631086 -6.433238905462441e-005 0.9999999904049911 244.4563055618181 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4814\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4899\" name=\"instance_294\">\r\n\t\t\t\t\t\t<matrix>0.5085223145042332 -0.8610488113528758 5.432617958180488e-006 3344.297211982957 0.8610488113911534 0.5085223145524673 1.00682458332676e-006 4881.804373767045 -7.290134024695171e-006 8.367171912631276e-006 0.4978691140518711 29.61888170189744 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4900\" name=\"instance_295\">\r\n\t\t\t\t\t\t<matrix>0.5085223145042326 -0.8610488113528757 5.43261795818038e-006 3650.36842443612 0.861048811391154 0.5085223145524676 1.00682458332676e-006 5107.58479860705 -7.290134024694954e-006 8.367171912631276e-006 0.4978691140518714 29.57456362736681 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4901\" name=\"instance_296\">\r\n\t\t\t\t\t\t<matrix>-0.3821262722094603 0.9241101140944843 4.058925872505554e-005 4272.500447614518 -0.9241100816536207 -0.3821262840993119 0.0001041227948222568 3933.178498712102 0.0002628182684006777 5.361014639030607e-006 0.4251270173648315 29.41016013824015 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4902\" name=\"instance_297\">\r\n\t\t\t\t\t\t<matrix>-0.3821262722094606 0.9241101140944842 4.058925872505554e-005 4144.451088405098 -0.9241100816536203 -0.382126284099312 0.0001041227948222568 4106.707688066839 0.0002628182684006788 5.361014639031474e-006 0.4251270173648315 29.39400754924186 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4903\" name=\"instance_298\">\r\n\t\t\t\t\t\t<matrix>0.9935718556642587 -0.1132032138673809 -1.212039321119062e-006 4499.377681265652 0.113203213867978 0.9935718556651251 3.032369070136466e-007 5198.645474569219 1.358383549049423e-006 -5.091315592178295e-007 0.8612595211455958 46.759475482168 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4904\" name=\"instance_299\">\r\n\t\t\t\t\t\t<matrix>0.6476605910599547 -0.7619289722037386 -8.798680298909402e-006 5315.802510991918 0.7619289722711448 0.6476605909777645 8.954807569525828e-006 4488.320530050816 -1.305855481532512e-006 -1.452188394485696e-005 0.8610208872999522 45.03740457108469 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4905\" name=\"instance_300\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857123 -0.5937571476047553 2.454229085577242e-005 4564.293909894105 0.5937571382124487 0.8046442965939602 6.46028958125669e-005 2948.470385851245 -0.0001165129559470115 -7.501382932218392e-005 0.4987105895387463 29.46425980050879 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4906\" name=\"instance_301\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857151 -0.5937571476047575 2.096392202054014e-005 4399.964591076204 0.5937571382124488 0.8046442965939616 5.518352292680048e-005 1532.944946580633 -0.0001165129559470169 -7.501382932218782e-005 0.4259964960625825 25.98744195606241 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4907\" name=\"instance_302\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857143 -0.5937571476047573 2.096392202053992e-005 3103.354862420814 0.5937571382124492 0.8046442965939615 5.51835229268007e-005 949.8682227704665 -0.0001165129559470172 -7.501382932218826e-005 0.4259964960625822 25.98516285706864 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4908\" name=\"instance_303\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857141 -0.5937571476047568 2.096392202053971e-005 3596.432408642825 0.5937571382124494 0.8046442965939614 5.51835229268007e-005 1845.635357669423 -0.0001165129559470161 -7.501382932218826e-005 0.425996496062582 25.98657311281293 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4909\" name=\"instance_304\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857144 -0.5937571476047573 2.096392202053992e-005 4164.341275225926 0.593757138212449 0.8046442965939613 5.51835229268007e-005 1624.636546626082 -0.000116512955947016 -7.501382932218826e-005 0.4259964960625822 25.98718718129187 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4910\" name=\"instance_305\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857197 -0.5937571476047588 2.135179304452292e-005 3611.121495648273 0.5937571382124535 0.8046442965939706 5.620451935693281e-005 1700.43516519363 -0.0001165129559470121 -7.501382932218305e-005 0.4338782128987096 26.38065515162069 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4911\" name=\"instance_306\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857145 -0.5937571476047573 2.096392202053982e-005 3913.177393806449 0.5937571382124494 0.8046442965939613 5.51835229268007e-005 1722.375677738262 -0.0001165129559470161 -7.501382932218826e-005 0.4259964960625822 25.98691560281916 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4912\" name=\"instance_307\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857131 -0.5937571476047557 2.454229085577242e-005 3207.718157630644 0.5937571382124487 0.8046442965939604 6.46028958125669e-005 4786.866965121584 -0.0001165129559470111 -7.501382932218349e-005 0.4987105895387463 29.82472564249064 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4913\" name=\"instance_308\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857144 -0.5937571476047575 2.096392202054014e-005 3504.711337419999 0.5937571382124492 0.8046442965939616 5.518352292680048e-005 793.6804205478461 -0.0001165129559470161 -7.501382932218782e-005 0.4259964960625825 26.02850078249416 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4914\" name=\"instance_309\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857143 -0.5937571476047573 2.096392202053982e-005 2774.209378100039 0.5937571382124492 0.8046442965939615 5.51835229268007e-005 1077.954166956088 -0.0001165129559470172 -7.501382932218826e-005 0.4259964960625822 25.98480683010001 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4915\" name=\"instance_310\">\r\n\t\t\t\t\t\t<matrix>0.804644298585715 -0.593757147604758 2.096392202054014e-005 3304.197765164149 0.5937571382124495 0.8046442965939614 5.518352292680048e-005 871.4079036347673 -0.0001165129559470162 -7.501382932218826e-005 0.4259964960625825 25.98535637546778 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4916\" name=\"instance_311\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857143 -0.5937571476047573 2.096392202053982e-005 2190.954792359386 0.5937571382124492 0.8046442965939615 5.51835229268007e-005 1304.92587969081 -0.0001165129559470172 -7.501382932218826e-005 0.4259964960625822 25.98417594080645 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4917\" name=\"instance_312\">\r\n\t\t\t\t\t\t<matrix>0.8046442985857152 -0.593757147604758 2.096392202054014e-005 2391.797695102721 0.5937571382124492 0.8046442965939615 5.518352292680048e-005 1226.465560555112 -0.0001165129559470172 -7.501382932218869e-005 0.4259964960625825 25.98436945920557 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4918\" name=\"instance_313\">\r\n\t\t\t\t\t\t<matrix>0.804644298585715 -0.593757147604758 2.096392202054014e-005 2592.311267358569 0.5937571382124495 0.8046442965939614 5.518352292680048e-005 1148.738077468192 -0.0001165129559470162 -7.501382932218826e-005 0.4259964960625825 26.02751386623191 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4919\" name=\"instance_314\">\r\n\t\t\t\t\t\t<matrix>0.118674582820198 0.9929331977870969 -9.013735182268307e-005 1964.897809536855 -0.9929331942976974 0.1186745926426177 0.0001127957441134418 1978.822141468467 0.0001226956524087761 7.611438079427558e-005 0.999999989576189 243.4956463394092 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4668\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID4920\" name=\"instance_315\">\r\n\t\t\t\t\t\t<matrix>0.9999814548864429 -0.006090146350467635 7.893575332236849e-007 3752.580400068959 0.006090146350704309 0.9999814548867085 -2.977748921903587e-007 2062.541471465126 -7.875294018258697e-007 3.025766728215316e-007 0.9999999999996443 5.666830129079329 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4921\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID5318\" name=\"instance_316\">\r\n\t\t\t\t\t\t<matrix>-0.4156366769853768 -0.9095307307639026 5.040471084654351e-005 5157.462723507097 -0.9095307240758156 0.4156366800416939 0.0001102997789172737 5046.678660038771 0.0001212710851964437 -4.283085252567917e-013 0.999999992646662 5.667021370824395 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID5319\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID5390\" name=\"instance_317\">\r\n\t\t\t\t\t\t<matrix>-0.3821262722094605 0.9241101140944842 4.058925872505566e-005 4437.131244995775 -0.9241100816536203 -0.382126284099312 0.0001041227948222568 4311.04565810095 0.0002628182684006788 5.361014639031474e-006 0.4251270173648316 24.18032651073543 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID5391\" name=\"instance_318\">\r\n\t\t\t\t\t\t<matrix>-0.3821262722094603 0.9241101140944846 4.058925872505566e-005 4565.180604205196 -0.9241100816536207 -0.382126284099312 0.0001041227948222568 4137.516468746214 0.0002628182684006777 5.361014639031041e-006 0.4251270173648316 24.19647909973367 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID4118\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID5392\" name=\"instance_319\">\r\n\t\t\t\t\t\t<matrix>-0.8046443259079783 0.5937571105712105 4.92972884749052e-005 3031.632701403492 -0.593757101181749 -0.8046443239321908 0.0001294602419739431 4709.407313559806 0.0001165347225648785 7.489883403402706e-005 0.9999999904049115 5.659648755704782 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID5393\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID5440\" name=\"instance_320\">\r\n\t\t\t\t\t\t<matrix>0.9999451693656467 0.01047178401611778 -1.222621980775203e-006 5416.458282695973 -0.01047178401541807 0.9999451693664323 4.729071307856946e-007 3734.115648805225 1.358383548921921e-006 -5.091315573428103e-007 0.9036528202534312 48.8132407538144 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID5441\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID5452\" name=\"instance_321\">\r\n\t\t\t\t\t\t<matrix>0.9999451693656466 0.01047178401611777 -1.222621980775203e-006 5438.098785392478 -0.01047178401541804 0.999945169366432 4.729071307856946e-007 3542.520371402627 1.358383548921704e-006 -5.091315573428103e-007 0.9036528202534312 48.83697797394471 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID5453\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID5464\" name=\"instance_322\">\r\n\t\t\t\t\t\t<matrix>0.2776454882113216 0.9606835908636673 0.0001313290490573158 4233.855918431064 0.9606835845414495 -0.277645508752154 0.0001336134109905507 5297.999758909546 -0.0001823965226501511 -9.856495645271823e-005 0.903652800833283 48.46308749154174 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID5465\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t\t<node id=\"ID5476\" name=\"instance_323\">\r\n\t\t\t\t\t\t<matrix>0.2776454882113216 0.960683590863667 0.0001313290490573158 4056.586390979853 0.9606835845414495 -0.2776455087521539 0.0001336134109905507 5373.84549329676 -0.0001823965226501511 -9.856495645271931e-005 0.903652800833283 48.50124348701172 0 0 0 1</matrix>\r\n\t\t\t\t\t\t<instance_node url=\"#ID5477\" />\r\n\t\t\t\t\t</node>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID7656\" name=\"instance_324\">\r\n\t\t\t\t\t<matrix>-0.5918086097491095 -0.8060785131896274 -9.088093700782054e-007 1411.663845536437 0.8060785131896145 -0.5918086097496348 4.740606677764488e-007 2850.057198875476 -9.199713280763456e-007 -4.520185210719155e-007 0.9999999999994746 226.5388655669622 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID7657\" />\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID7798\" name=\"instance_325\">\r\n\t\t\t\t\t<matrix>-0.5918086107393324 -0.8060785124626345 -8.988519157450005e-007 1002.461570188355 0.8060785124626426 -0.5918086107398358 4.460238199955814e-007 957.5535476988334 -8.914785208628286e-007 -4.605844778996916e-007 0.9999999999994966 226.7154360933901 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID7799\" />\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID7898\" name=\"instance_326\">\r\n\t\t\t\t\t<matrix>-0.5918086098690055 -0.806078513101574 -9.33348833633934e-007 994.2573387213877 0.8060785131015933 -0.5918086098695428 4.517595855592818e-007 -604.0162648846499 -9.165175707632668e-007 -4.849972276959113e-007 0.9999999999994624 226.922021743564 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID7899\" />\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID8064\" name=\"instance_327\">\r\n\t\t\t\t\t<matrix>-0.5918086417222112 -0.8060784897160522 0 -2008.210328459001 0.8060784897160523 -0.591808641722211 0 3173.064707382679 0 0 1 226.5813352874439 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID7799\" />\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID8065\" name=\"instance_328\">\r\n\t\t\t\t\t<matrix>-0.5918086102355606 -0.8060785128324883 -9.046389427083074e-007 -2208.378485226793 0.8060785128324868 -0.5918086102360756 4.59755413468944e-007 -83.39690493725425 -9.059720754053682e-007 -4.571228012953343e-007 0.9999999999994852 114.479824934288 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID8066\" />\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID8347\" name=\"instance_332\">\r\n\t\t\t\t\t<matrix>-0.5918086102355815 -0.806078512832473 -9.046389487363869e-007 -179.8686880898814 0.8060785128324715 -0.5918086102360964 4.597553342992303e-007 2862.110829176424 -9.059720151558443e-007 -4.571228530077345e-007 0.9999999999994852 226.5272228817886 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID8348\" />\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID8471\" name=\"instance_333\">\r\n\t\t\t\t\t<matrix>-0.5918086102355815 -0.806078512832473 -9.046389487364056e-007 1394.66136747652 0.8060785128324715 -0.5918086102360964 4.597553342992288e-007 2826.094631956124 -9.059720151558542e-007 -4.571228530077504e-007 0.9999999999994852 226.3480642704911 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID8472\" />\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID8627\" name=\"instance_334\">\r\n\t\t\t\t\t<matrix>-0.5946577948029442 -0.8631188588760894 -9.951028436269747e-007 -3211.55904142532 0.8378606277675019 -0.6336866250721362 5.057308676583604e-007 2229.776030700323 -9.231614952529916e-007 -4.894701309539264e-007 1.099999999999022 226.7988280238331 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID8628\" />\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID8823\" name=\"instance_335\">\r\n\t\t\t\t\t<matrix>-0.5918086102356273 -0.8060785128324394 -9.046389487363604e-007 -118.1653509037092 0.806078512832438 -0.5918086102361421 4.59755334299211e-007 2984.495632024155 -9.059720151558391e-007 -4.571228530076732e-007 0.9999999999994852 226.5101456564302 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID8824\" />\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID8937\" name=\"instance_336\">\r\n\t\t\t\t\t<matrix>-0.5918086103195323 -0.8060785127708261 -9.150613936215676e-007 125.6456773861194 0.8060785127708392 -0.5918086103200515 4.49105589534932e-007 -1675.438408931127 -9.035555774060928e-007 -4.718267724350823e-007 0.9999999999994805 223.9849239934976 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID8938\" />\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9089\" name=\"instance_337\">\r\n\t\t\t\t\t<matrix>-0.5918086102355874 -0.8060785128324688 -9.04638946696663e-007 1526.052957650049 0.8060785128324672 -0.5918086102361023 4.597553462380133e-007 2930.742244205762 -9.059720235723181e-007 -4.571228442980757e-007 0.9999999999994852 -7.137815972603329 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID9090\" />\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9389\" name=\"instance_340\">\r\n\t\t\t\t\t<matrix>0.6451366253524947 -0.764067230300255 4.701161578140627e-005 74.30122934829248 0.7640672210227707 0.6451366253853117 0.0001278475368238234 1656.181669261687 -0.0001280130285208159 -4.655909384026091e-005 0.9999999907224576 410.9501803982598 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID9390\" />\r\n\t\t\t\t</node>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<library_geometries>\r\n\t\t<geometry id=\"ID4\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID16\">2.603870140320623 46.89462113562399 386.5781908703463 0.6174856712407291 69.26283328592649 386.5780180658117 -1.13686837721616e-012 57.93569273138678 386.5780871313162 4.406140705294661 79.95542393241635 386.5779892871648 8.217465278019631 37.03698697146456 386.5783208514627 11.05804031854154 89.14441915694329 386.5780031343753 16.38453773349704 29.16397425796208 386.5784665103851 20.03254812930516 96.08297889601772 386.5780584820045 26.44130471417623 23.91546593890621 386.5786160086149 30.60025664314412 100.2071683265856 386.5781508316453 71.9739339948045 0.002612264322351621 386.5793026265764 41.90227020231862 101.1817919434927 386.578272677536 53.02001214879113 98.92763673746322 386.5784141165939 63.04988258962396 93.62791027103071 386.5785636532899 108.5848977186914 69.71380028485055 386.5792503072194 108.5848977186914 69.71380028485055 386.5792503072194 71.9739339948045 0.002612264322351621 386.5793026265764 63.04988258962396 93.62791027103071 386.5785636532899 53.02001214879113 98.92763673746322 386.5784141165939 41.90227020231862 101.1817919434927 386.578272677536 30.60025664314412 100.2071683265856 386.5781508316453 26.44130471417623 23.91546593890621 386.5786160086149 20.03254812930516 96.08297889601772 386.5780584820045 16.38453773349704 29.16397425796208 386.5784665103851 11.05804031854154 89.14441915694329 386.5780031343753 8.217465278019631 37.03698697146456 386.5783208514627 4.406140705294661 79.95542393241635 386.5779892871648 2.603870140320623 46.89462113562399 386.5781908703463 0.6174856712407291 69.26283328592649 386.5780180658117 -1.13686837721616e-012 57.93569273138678 386.5780871313162</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID16\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID11\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID17\">-1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 -1.143775515004759e-005 6.757405740717962e-006 0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576 1.143775515004759e-005 -6.757405740717962e-006 -0.9999999999117576</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID17\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID13\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID18\">0.02398003954412732 0.463455120114577 0.005686662541009672 0.6845303672278602 0 0.5725790686459537 0.04057784089875625 0.790210119528605 0.07567779177704713 0.3660276237125514 0.1018377375542112 0.8810291521958387 0.1508914967003685 0.288215046673882 0.1844874245626851 0.9496061041050919 0.2435081238045416 0.2363416441053806 0.2818095083480185 0.9903673500812806 0.6628355831429736 0 0.3858940891380944 1 0.4882816419221884 0.9777211555463247 0.5806505684675573 0.925341540656879 1 0.6889874798507473</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"15\" source=\"#ID18\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID12\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID11\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID12\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID13\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 7 7 6 6 8 8 7 7 8 8 9 9 9 9 8 8 10 10 9 9 10 10 11 11 11 11 10 10 12 12 12 12 10 10 13 13 13 13 10 10 14 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID12\" />\r\n\t\t\t\t\t<p>15 16 17 17 16 18 18 16 19 19 16 20 16 21 20 20 21 22 21 23 22 22 23 24 23 25 24 24 25 26 25 27 26 26 27 28 29 28 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID19\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID20\">\r\n\t\t\t\t\t<float_array count=\"960\" id=\"ID23\">26.44470981156292 23.9134542139941 88.87271332778118 16.38453773349704 29.16397425796208 386.5784665103851 16.3879428308843 29.16196253304793 88.8725638295512 26.44130471417623 23.91546593890621 386.5786160086149 26.44130471417623 23.91546593890621 386.5786160086149 26.44470981156292 23.9134542139941 88.87271332778118 16.38453773349704 29.16397425796208 386.5784665103851 16.3879428308843 29.16196253304793 88.8725638295512 8.217465278019631 37.03698697146456 386.5783208514627 8.220870375404388 37.03497524655222 88.87241817062842 8.217465278019631 37.03698697146456 386.5783208514627 8.220870375404388 37.03497524655222 88.87241817062842 2.607275237706176 46.89260941071098 88.87228818951262 0.6208907686262819 69.2608215610137 88.8721153849777 0.003405097385439149 57.93368100647444 88.87218445048231 4.409545802678736 79.95341220750083 88.87208660633138 8.220870375404388 37.03497524655222 88.87241817062842 11.06144541592619 89.14240743202458 88.87210045354178 16.3879428308843 29.16196253304793 88.8725638295512 20.03595322668946 96.08096717110243 88.87215580117014 26.44470981156292 23.9134542139941 88.87271332778118 30.60366174052831 100.2051566016703 88.872248150811 71.97733909219005 0.0006005394111525675 88.8733999457417 41.90567529970451 101.1797802185797 88.87236999670238 53.02341724617736 98.92562501255111 88.87251143575998 63.05328768700861 93.62589854611906 88.87266097245556 108.5883028160764 69.71178855993708 88.87334762638584 108.5883028160764 69.71178855993708 88.87334762638584 71.97733909219005 0.0006005394111525675 88.8733999457417 63.05328768700861 93.62589854611906 88.87266097245556 53.02341724617736 98.92562501255111 88.87251143575998 41.90567529970451 101.1797802185797 88.87236999670238 30.60366174052831 100.2051566016703 88.872248150811 26.44470981156292 23.9134542139941 88.87271332778118 20.03595322668946 96.08096717110243 88.87215580117014 16.3879428308843 29.16196253304793 88.8725638295512 11.06144541592619 89.14240743202458 88.87210045354178 8.220870375404388 37.03497524655222 88.87241817062842 4.409545802678736 79.95341220750083 88.87208660633138 2.607275237706176 46.89260941071098 88.87228818951262 0.6208907686262819 69.2608215610137 88.8721153849777 0.003405097385439149 57.93368100647444 88.87218445048231 26.44478065739281 23.91341235773416 82.67779206848499 16.3879428308843 29.16196253304793 88.8725638295512 16.38801367671283 29.16192067679049 82.67764257025524 26.44470981156292 23.9134542139941 88.87271332778118 26.44470981156292 23.9134542139941 88.87271332778118 26.44478065739281 23.91341235773416 82.67779206848499 16.3879428308843 29.16196253304793 88.8725638295512 16.38801367671283 29.16192067679049 82.67764257025524 71.97733909219005 0.0006005394111525675 88.8733999457417 26.44130471417623 23.91546593890621 386.5786160086149 26.44470981156292 23.9134542139941 88.87271332778118 71.9739339948045 0.002612264322351621 386.5793026265764 71.9739339948045 0.002612264322351621 386.5793026265764 71.97733909219005 0.0006005394111525675 88.8733999457417 26.44130471417623 23.91546593890621 386.5786160086149 26.44470981156292 23.9134542139941 88.87271332778118 2.607275237706176 46.89260941071098 88.87228818951262 2.603870140320623 46.89462113562399 386.5781908703463 2.603870140320623 46.89462113562399 386.5781908703463 2.607275237706176 46.89260941071098 88.87228818951262 8.220870375404388 37.03497524655222 88.87241817062842 8.220941221235762 37.03493339029296 82.6774969113324 8.220870375404388 37.03497524655222 88.87241817062842 8.220941221235762 37.03493339029296 82.6774969113324 71.97740993801949 0.0005586831525761227 82.6784786864458 26.44470981156292 23.9134542139941 88.87271332778118 26.44478065739281 23.91341235773416 82.67779206848499 71.97733909219005 0.0006005394111525675 88.8733999457417 71.97733909219005 0.0006005394111525675 88.8733999457417 71.97740993801949 0.0005586831525761227 82.6784786864458 26.44470981156292 23.9134542139941 88.87271332778118 26.44478065739281 23.91341235773416 82.67779206848499 108.5883028160764 69.71178855993708 88.87334762638584 71.9739339948045 0.002612264322351621 386.5793026265764 71.97733909219005 0.0006005394111525675 88.8733999457417 108.5848977186914 69.71380028485055 386.5792503072194 108.5848977186914 69.71380028485055 386.5792503072194 108.5883028160764 69.71178855993708 88.87334762638584 71.9739339948045 0.002612264322351621 386.5793026265764 71.97733909219005 0.0006005394111525675 88.8733999457417 63.04988258962396 93.62791027103071 386.5785636532899 108.5883028160764 69.71178855993708 88.87334762638584 63.05328768700861 93.62589854611906 88.87266097245556 108.5848977186914 69.71380028485055 386.5792503072194 108.5848977186914 69.71380028485055 386.5792503072194 63.04988258962396 93.62791027103071 386.5785636532899 108.5883028160764 69.71178855993708 88.87334762638584 63.05328768700861 93.62589854611906 88.87266097245556 63.05328768700861 93.62589854611906 88.87266097245556 108.5883736619076 69.71174670367736 82.67842636708967 63.05335853283953 93.62585668985798 82.6777397131596 108.5883028160764 69.71178855993708 88.87334762638584 108.5883028160764 69.71178855993708 88.87334762638584 63.05328768700861 93.62589854611906 88.87266097245556 108.5883736619076 69.71174670367736 82.67842636708967 63.05335853283953 93.62585668985798 82.6777397131596 53.02001214879113 98.92763673746322 386.5784141165939 63.05328768700861 93.62589854611906 88.87266097245556 53.02341724617736 98.92562501255111 88.87251143575998 63.04988258962396 93.62791027103071 386.5785636532899 63.04988258962396 93.62791027103071 386.5785636532899 53.02001214879113 98.92763673746322 386.5784141165939 63.05328768700861 93.62589854611906 88.87266097245556 53.02341724617736 98.92562501255111 88.87251143575998 53.02341724617736 98.92562501255111 88.87251143575998 63.05335853283953 93.62585668985798 82.6777397131596 53.02348809200737 98.92558315629162 82.67759017646401 63.05328768700861 93.62589854611906 88.87266097245556 63.05328768700861 93.62589854611906 88.87266097245556 53.02341724617736 98.92562501255111 88.87251143575998 63.05335853283953 93.62585668985798 82.6777397131596 53.02348809200737 98.92558315629162 82.67759017646401 41.90227020231862 101.1817919434927 386.578272677536 41.90567529970451 101.1797802185797 88.87236999670238 41.90227020231862 101.1817919434927 386.578272677536 41.90567529970451 101.1797802185797 88.87236999670238 41.90567529970451 101.1797802185797 88.87236999670238 41.90574614553361 101.1797383623195 82.67744873740615 41.90567529970451 101.1797802185797 88.87236999670238 41.90574614553361 101.1797383623195 82.67744873740615 30.60025664314412 100.2071683265856 386.5781508316453 30.60366174052831 100.2051566016703 88.872248150811 30.60025664314412 100.2071683265856 386.5781508316453 30.60366174052831 100.2051566016703 88.872248150811 30.60366174052831 100.2051566016703 88.872248150811 30.60373258636002 100.2051147454138 82.67732689151511 30.60366174052831 100.2051566016703 88.872248150811 30.60373258636002 100.2051147454138 82.67732689151511 20.03254812930516 96.08297889601772 386.5780584820045 20.03595322668946 96.08096717110243 88.87215580117014 20.03254812930516 96.08297889601772 386.5780584820045 20.03595322668946 96.08096717110243 88.87215580117014 20.03595322668946 96.08096717110243 88.87215580117014 20.03602407251958 96.08092531484363 82.6772345418741 20.03595322668946 96.08096717110243 88.87215580117014 20.03602407251958 96.08092531484363 82.6772345418741 11.05804031854154 89.14441915694329 386.5780031343753 11.06144541592619 89.14240743202458 88.87210045354178 11.05804031854154 89.14441915694329 386.5780031343753 11.06144541592619 89.14240743202458 88.87210045354178 11.06144541592619 89.14240743202458 88.87210045354178 11.06151626175642 89.14236557576828 82.67717919424582 11.06144541592619 89.14240743202458 88.87210045354178 11.06151626175642 89.14236557576828 82.67717919424582 4.406140705294661 79.95542393241635 386.5779892871648 4.409545802678736 79.95341220750083 88.87208660633138 4.406140705294661 79.95542393241635 386.5779892871648 4.409545802678736 79.95341220750083 88.87208660633138 4.409545802678736 79.95341220750083 88.87208660633138 4.409616648508631 79.95337035124385 82.67716534703536 4.409545802678736 79.95341220750083 88.87208660633138 4.409616648508631 79.95337035124385 82.67716534703536 0.6174856712407291 69.26283328592649 386.5780180658117 0.6208907686262819 69.2608215610137 88.8721153849777 0.6174856712407291 69.26283328592649 386.5780180658117 0.6208907686262819 69.2608215610137 88.8721153849777 0.6208907686262819 69.2608215610137 88.8721153849777 0.6209616144567463 69.26077970475444 82.67719412568174 0.6208907686262819 69.2608215610137 88.8721153849777 0.6209616144567463 69.26077970475444 82.67719412568174 -1.13686837721616e-012 57.93569273138678 386.5780871313162 0.003405097385439149 57.93368100647444 88.87218445048231 -1.13686837721616e-012 57.93569273138678 386.5780871313162 0.003405097385439149 57.93368100647444 88.87218445048231 0.003405097385439149 57.93368100647444 88.87218445048231 0.003475943214539257 57.93363915021564 82.67726319118634 0.003405097385439149 57.93368100647444 88.87218445048231 0.003475943214539257 57.93363915021564 82.67726319118634 2.607275237706176 46.89260941071098 88.87228818951262 2.607346083536186 46.89256755445058 82.67736693021666 2.607275237706176 46.89260941071098 88.87228818951262 2.607346083536186 46.89256755445058 82.67736693021666 2.607346083536186 46.89256755445058 82.67736693021666 0.6209616144567463 69.26077970475444 82.67719412568174 0.003475943214539257 57.93363915021564 82.67726319118634 4.409616648508631 79.95337035124385 82.67716534703536 8.220941221235762 37.03493339029296 82.6774969113324 11.06151626175642 89.14236557576828 82.67717919424582 16.38801367671283 29.16192067679049 82.67764257025524 20.03602407251958 96.08092531484363 82.6772345418741 26.44478065739281 23.91341235773416 82.67779206848499 30.60373258636002 100.2051147454138 82.67732689151511 71.97740993801949 0.0005586831525761227 82.6784786864458 41.90574614553361 101.1797383623195 82.67744873740615 53.02348809200737 98.92558315629162 82.67759017646401 63.05335853283953 93.62585668985798 82.6777397131596 108.5883736619076 69.71174670367736 82.67842636708967 108.5883736619076 69.71174670367736 82.67842636708967 71.97740993801949 0.0005586831525761227 82.6784786864458 63.05335853283953 93.62585668985798 82.6777397131596 53.02348809200737 98.92558315629162 82.67759017646401 41.90574614553361 101.1797383623195 82.67744873740615 30.60373258636002 100.2051147454138 82.67732689151511 26.44478065739281 23.91341235773416 82.67779206848499 20.03602407251958 96.08092531484363 82.6772345418741 16.38801367671283 29.16192067679049 82.67764257025524 11.06151626175642 89.14236557576828 82.67717919424582 8.220941221235762 37.03493339029296 82.6774969113324 4.409616648508631 79.95337035124385 82.67716534703536 2.607346083536186 46.89256755445058 82.67736693021666 0.6209616144567463 69.26077970475444 82.67719412568174 0.003475943214539257 57.93363915021564 82.67726319118634 26.44572188776112 23.91285617588642 0.3943275088186633 16.38801367671283 29.16192067679049 82.67764257025524 16.38895490708137 29.16136449493956 0.3941780105888313 26.44478065739281 23.91341235773416 82.67779206848499 26.44478065739281 23.91341235773416 82.67779206848499 26.44572188776112 23.91285617588642 0.3943275088186633 16.38801367671283 29.16192067679049 82.67764257025524 16.38895490708137 29.16136449493956 0.3941780105888313 8.220941221235762 37.03493339029296 82.6774969113324 8.221882451604643 37.03437720844454 0.3940323516660635 8.220941221235762 37.03493339029296 82.6774969113324 8.221882451604643 37.03437720844454 0.3940323516660635 71.97835116838871 2.50130415224703e-006 0.3950141267792473 26.44478065739281 23.91341235773416 82.67779206848499 26.44572188776112 23.91285617588642 0.3943275088186633 71.97740993801949 0.0005586831525761227 82.6784786864458 71.97740993801949 0.0005586831525761227 82.6784786864458 71.97835116838871 2.50130415224703e-006 0.3950141267792473 26.44478065739281 23.91341235773416 82.67779206848499 26.44572188776112 23.91285617588642 0.3943275088186633 63.05335853283953 93.62585668985798 82.6777397131596 108.5893148922758 69.71119052182871 0.3949618074234218 63.05429976320852 93.62530050801001 0.3942751534931261 108.5883736619076 69.71174670367736 82.67842636708967 108.5883736619076 69.71174670367736 82.67842636708967 63.05335853283953 93.62585668985798 82.6777397131596 108.5893148922758 69.71119052182871 0.3949618074234218 63.05429976320852 93.62530050801001 0.3942751534931261 53.02348809200737 98.92558315629162 82.67759017646401 63.05429976320852 93.62530050801001 0.3942751534931261 53.02442932237545 98.92502697444252 0.3941256167975249 63.05335853283953 93.62585668985798 82.6777397131596 63.05335853283953 93.62585668985798 82.6777397131596 53.02348809200737 98.92558315629162 82.67759017646401 63.05429976320852 93.62530050801001 0.3942751534931261 53.02442932237545 98.92502697444252 0.3941256167975249 41.90574614553361 101.1797383623195 82.67744873740615 41.90668737590306 101.1791821804686 0.3939841777399051 41.90574614553361 101.1797383623195 82.67744873740615 41.90668737590306 101.1791821804686 0.3939841777399051 30.60373258636002 100.2051147454138 82.67732689151511 30.60467381672856 100.2045585635663 0.3938623318485659 30.60373258636002 100.2051147454138 82.67732689151511 30.60467381672856 100.2045585635663 0.3938623318485659 20.03602407251958 96.08092531484363 82.6772345418741 20.03696530288914 96.08036913299384 0.3937699822076972 20.03602407251958 96.08092531484363 82.6772345418741 20.03696530288914 96.08036913299384 0.3937699822076972 11.06151626175642 89.14236557576828 82.67717919424582 11.06245749212542 89.14180939391872 0.3937146345793421 11.06151626175642 89.14236557576828 82.67717919424582 11.06245749212542 89.14180939391872 0.3937146345793421 4.409616648508631 79.95337035124385 82.67716534703536 4.410557878878649 79.95281416939406 0.39370078736897 4.409616648508631 79.95337035124385 82.67716534703536 4.410557878878649 79.95281416939406 0.39370078736897 0.6209616144567463 69.26077970475444 82.67719412568174 0.6219028448246036 69.26022352290647 0.3937295660153417 0.6209616144567463 69.26077970475444 82.67719412568174 0.6219028448246036 69.26022352290647 0.3937295660153417 0.003475943214539257 57.93363915021564 82.67726319118634 0.004417173585125056 57.93308296836881 0.3937986315199487 0.003475943214539257 57.93363915021564 82.67726319118634 0.004417173585125056 57.93308296836881 0.3937986315199487 2.607346083536186 46.89256755445058 82.67736693021666 2.608287313904725 46.89201137260375 0.3939023705502676 2.607346083536186 46.89256755445058 82.67736693021666 2.608287313904725 46.89201137260375 0.3939023705502676 108.5893148922758 69.71119052182871 0.3949618074234218 107.0716594160666 66.82367089479317 79.53245675401932 107.0726265207607 66.82325375423375 0.3949639748659184 73.49516325564605 2.888174833445873 0.3948911582755379 71.97740993801949 0.0005586831525761227 82.6784786864458 71.97835116838871 2.50130415224703e-006 0.3950141267792473 73.49419615095246 2.888591974004385 79.53238393742892 108.5883736619076 69.71174670367736 82.67842636708967 108.5893148922758 69.71119052182871 0.3949618074234218 107.0716594160666 66.82367089479317 79.53245675401932 108.5883736619076 69.71174670367736 82.67842636708967 73.49419615095246 2.888591974004385 79.53238393742892 71.97740993801949 0.0005586831525761227 82.6784786864458 73.49516325564605 2.888174833445873 0.3948911582755379 71.97835116838871 2.50130415224703e-006 0.3950141267792473 107.0726265207607 66.82325375423375 0.3949639748659184 70.00863675021606 4.719140160006646 79.53233170069711 73.49516325564605 2.888174833445873 0.3948911582755379 70.00960385490998 4.718723019447225 0.3948389215437249 73.49419615095246 2.888591974004385 79.53238393742892 73.49419615095246 2.888591974004385 79.53238393742892 70.00863675021606 4.719140160006646 79.53233170069711 73.49516325564605 2.888174833445873 0.3948911582755379 70.00960385490998 4.718723019447225 0.3948389215437249 103.5861000153303 68.65421908079725 79.53240451728753 73.49419615095246 2.888591974004385 79.53238393742892 70.00863675021606 4.719140160006646 79.53233170069711 107.0716594160666 66.82367089479317 79.53245675401932 107.0716594160666 66.82367089479317 79.53245675401932 103.5861000153303 68.65421908079725 79.53240451728753 73.49419615095246 2.888591974004385 79.53238393742892 70.00863675021606 4.719140160006646 79.53233170069711 107.0726265207607 66.82325375423375 0.3949639748659184 103.5861000153303 68.65421908079725 79.53240451728753 103.5870671200241 68.65380194023715 0.3949117381341036 107.0716594160666 66.82367089479317 79.53245675401932 107.0716594160666 66.82367089479317 79.53245675401932 107.0726265207607 66.82325375423375 0.3949639748659184 103.5861000153303 68.65421908079725 79.53240451728753 103.5870671200241 68.65380194023715 0.3949117381341036 103.5870671200241 68.65380194023715 0.3949117381341036 70.00863675021606 4.719140160006646 79.53233170069711 70.00960385490998 4.718723019447225 0.3948389215437249 103.5861000153303 68.65421908079725 79.53240451728753 103.5861000153303 68.65421908079725 79.53240451728753 103.5870671200241 68.65380194023715 0.3949117381341036 70.00863675021606 4.719140160006646 79.53233170069711 70.00960385490998 4.718723019447225 0.3948389215437249</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"320\" source=\"#ID23\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID21\">\r\n\t\t\t\t\t<float_array count=\"960\" id=\"ID24\">-0.4626699023735659 -0.8865306319790348 6.987421694160668e-007 -0.5843151915399295 -0.8115268060478451 -1.199440783341683e-006 -0.5843151787439321 -0.8115268152612136 -1.199440574725439e-006 -0.4626699023735659 -0.8865306319790348 6.987421694160668e-007 0.4626699023735659 0.8865306319790348 -6.987421694160668e-007 0.4626699023735659 0.8865306319790348 -6.987421694160668e-007 0.5843151915399295 0.8115268060478451 1.199440783341683e-006 0.5843151787439321 0.8115268152612136 1.199440574725439e-006 -0.7895644297015564 -0.6136676717297418 -4.884050824758844e-006 -0.7895644208047007 -0.6136676831767203 -4.884050645646666e-006 0.7895644297015564 0.6136676717297418 4.884050824758844e-006 0.7895644208047007 0.6136676831767203 4.884050645646666e-006 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 -1.143611455209354e-005 6.756544154587561e-006 0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 1.143611455209354e-005 -6.756544154587561e-006 -0.9999999999117823 -0.4626699023735499 -0.8865306319790433 6.987373088031566e-007 -0.5843151914019787 -0.8115268061471729 -1.199178821395171e-006 -0.5843151788818866 -0.8115268151618842 -1.199178617305666e-006 -0.4626699023735499 -0.8865306319790433 6.987373088031566e-007 0.4626699023735499 0.8865306319790433 -6.987373088031566e-007 0.4626699023735499 0.8865306319790433 -6.987373088031566e-007 0.5843151914019787 0.8115268061471729 1.199178821395171e-006 0.5843151788818866 0.8115268151618842 1.199178617305666e-006 -0.4649592392507937 -0.8853320878827797 6.644581969489843e-007 -0.4649592392507937 -0.8853320878827797 6.644581969489843e-007 -0.4649592392507937 -0.8853320878827797 6.644581969489843e-007 -0.4649592392507937 -0.8853320878827797 6.644581969489843e-007 0.4649592392507937 0.8853320878827797 -6.644581969489843e-007 0.4649592392507937 0.8853320878827797 -6.644581969489843e-007 0.4649592392507937 0.8853320878827797 -6.644581969489843e-007 0.4649592392507937 0.8853320878827797 -6.644581969489843e-007 -0.9306414298443451 -0.3659324104127646 -8.171707125331753e-006 -0.930641434253669 -0.3659323991989464 -8.171707251541009e-006 0.930641434253669 0.3659323991989464 8.171707251541009e-006 0.9306414298443451 0.3659324104127646 8.171707125331753e-006 -0.7895644296056747 -0.6136676718531121 -4.88327661312454e-006 -0.7895644209005992 -0.6136676830533404 -4.883276437897461e-006 0.7895644296056747 0.6136676718531121 4.88327661312454e-006 0.7895644209005992 0.6136676830533404 4.883276437897461e-006 -0.4649592392507926 -0.8853320878827803 6.644581737163429e-007 -0.4649592392507926 -0.8853320878827803 6.644581737163429e-007 -0.4649592392507926 -0.8853320878827803 6.644581737163429e-007 -0.4649592392507926 -0.8853320878827803 6.644581737163429e-007 0.4649592392507926 0.8853320878827803 -6.644581737163429e-007 0.4649592392507926 0.8853320878827803 -6.644581737163429e-007 0.4649592392507926 0.8853320878827803 -6.644581737163429e-007 0.4649592392507926 0.8853320878827803 -6.644581737163429e-007 0.8853320877868439 -0.4649592392446294 1.326814836769715e-005 0.8853320877868439 -0.4649592392446294 1.326814836769715e-005 0.8853320877868439 -0.4649592392446294 1.326814836769715e-005 0.8853320877868439 -0.4649592392446294 1.326814836769715e-005 -0.8853320877868439 0.4649592392446294 -1.326814836769715e-005 -0.8853320877868439 0.4649592392446294 -1.326814836769715e-005 -0.8853320877868439 0.4649592392446294 -1.326814836769715e-005 -0.8853320877868439 0.4649592392446294 -1.326814836769715e-005 0.4649592896980905 0.8853320613888361 -6.644574422572214e-007 0.4649592896980905 0.8853320613888361 -6.644574422572214e-007 0.4649592896980905 0.8853320613888361 -6.644574422572214e-007 0.4649592896980905 0.8853320613888361 -6.644574422572214e-007 -0.4649592896980905 -0.8853320613888361 6.644574422572214e-007 -0.4649592896980905 -0.8853320613888361 6.644574422572214e-007 -0.4649592896980905 -0.8853320613888361 6.644574422572214e-007 -0.4649592896980905 -0.8853320613888361 6.644574422572214e-007 0.4649592896980933 0.8853320613888347 -6.64457417762218e-007 0.4649592896980933 0.8853320613888347 -6.64457417762218e-007 0.4649592896980933 0.8853320613888347 -6.64457417762218e-007 0.4649592896980933 0.8853320613888347 -6.64457417762218e-007 -0.4649592896980933 -0.8853320613888347 6.64457417762218e-007 -0.4649592896980933 -0.8853320613888347 6.64457417762218e-007 -0.4649592896980933 -0.8853320613888347 6.64457417762218e-007 -0.4649592896980933 -0.8853320613888347 6.64457417762218e-007 0.336382318794357 0.9417255096875099 -2.516165354710459e-006 0.4671849176505237 0.8841596307904333 -6.31078618563932e-007 0.3363823336433003 0.9417255043834993 -2.516165149030241e-006 0.4671849176505237 0.8841596307904333 -6.31078618563932e-007 -0.4671849176505237 -0.8841596307904333 6.31078618563932e-007 -0.336382318794357 -0.9417255096875099 2.516165354710459e-006 -0.4671849176505237 -0.8841596307904333 6.31078618563932e-007 -0.3363823336433003 -0.9417255043834993 2.516165149030241e-006 0.3363823189543858 0.9417255096303487 -2.515903216858108e-006 0.4671849176505121 0.8841596307904396 -6.310833022079872e-007 0.3363823334832309 0.9417255044406765 -2.515903015640321e-006 0.4671849176505121 0.8841596307904396 -6.310833022079872e-007 -0.4671849176505121 -0.8841596307904396 6.310833022079872e-007 -0.3363823189543858 -0.9417255096303487 2.515903216858108e-006 -0.4671849176505121 -0.8841596307904396 6.310833022079872e-007 -0.3363823334832309 -0.9417255044406765 2.515903015640321e-006 0.05697888541278522 0.9983753836007632 -6.094724658713842e-006 0.05697889988708273 0.9983753827746915 -6.094724487578025e-006 -0.05697888541278522 -0.9983753836007632 6.094724658713842e-006 -0.05697889988708273 -0.9983753827746915 6.094724487578025e-006 0.05697888556879942 0.998375383591864 -6.09395028427786e-006 0.05697889973104862 0.9983753827836015 -6.093950116855695e-006 -0.05697888556879942 -0.998375383591864 6.09395028427786e-006 -0.05697889973104862 -0.9983753827836015 6.093950116855695e-006 -0.2270555340450375 0.9738818123239023 -9.177932242656299e-006 -0.2270555223101764 0.9738818150598246 -9.177932126923401e-006 0.2270555340450375 -0.9738818123239023 9.177932242656299e-006 0.2270555223101764 -0.9738818150598246 9.177932126923401e-006 -0.2270555339186023 0.9738818123533914 -9.176708570124068e-006 -0.2270555224366413 0.9738818150303515 -9.176708456902045e-006 0.2270555339186023 -0.9738818123533914 9.176708570124068e-006 0.2270555224366413 -0.9738818150303515 9.176708456902045e-006 -0.492635904089168 0.870235523217507 -1.151519891501814e-005 -0.4926358965860356 0.8702355274649921 -1.151519885790104e-005 0.492635904089168 -0.870235523217507 1.151519891501814e-005 0.4926358965860356 -0.8702355274649921 1.151519885790104e-005 -0.4926359040083213 0.870235523263295 -1.151362539932797e-005 -0.4926358966669149 0.8702355274192275 -1.151362534345055e-005 0.4926359040083213 -0.870235523263295 1.151362539932797e-005 0.4926358966669149 -0.8702355274192275 1.151362534345055e-005 -0.7181770512632034 0.695860419101455 -1.29165621947433e-005 -0.7181770481362937 0.6958604223286465 -1.291656218078589e-005 0.7181770512632034 -0.695860419101455 1.29165621947433e-005 0.7181770481362937 -0.6958604223286465 1.291656218078589e-005 -0.7181770512295381 0.6958604191362333 -1.291476672496282e-005 -0.7181770481699764 0.6958604222939169 -1.291476671130835e-005 0.7181770512295381 -0.6958604191362333 1.291476672496282e-005 0.7181770481699764 -0.6958604222939169 1.291476671130835e-005 -0.8853480094725486 0.4649289213922414 -1.326812560534376e-005 -0.8853480094725441 0.4649289213922498 -1.326812560534376e-005 0.8853480094725486 -0.4649289213922414 1.326812560534376e-005 0.8853480094725441 -0.4649289213922498 1.326812560534376e-005 -0.885348009472587 0.4649289213922218 -1.326625410815196e-005 -0.88534800947255 0.4649289213922921 -1.326625410815202e-005 0.885348009472587 -0.4649289213922218 1.326625410815196e-005 0.88534800947255 -0.4649289213922921 1.326625410815202e-005 -0.9805618780187763 0.1962100996865497 -1.254131566190026e-005 -0.9805618789004611 0.196210095280322 -1.254131564221007e-005 0.9805618780187763 -0.1962100996865497 1.254131566190026e-005 0.9805618789004611 -0.196210095280322 1.254131564221007e-005 -0.9805618780283046 0.1962100996390468 -1.253952024220108e-005 -0.9805618788909799 0.1962100953278187 -1.253952022293773e-005 0.9805618780283046 -0.1962100996390468 1.253952024220108e-005 0.9805618788909799 -0.1962100953278187 1.253952022293773e-005 -0.9960801034549516 -0.08845579339216077 -1.079520419252813e-005 -0.9960801026922904 -0.08845580198030924 -1.079520412577131e-005 0.9960801034549516 0.08845579339216077 1.079520419252813e-005 0.9960801026922904 0.08845580198030924 1.079520412577131e-005 -0.996080103446748 -0.08845579348473197 -1.07936307738511e-005 -0.9960801027005303 -0.08845580188771504 -1.079363070854214e-005 0.996080103446748 0.08845579348473197 1.07936307738511e-005 0.9960801027005303 0.08845580188771504 1.079363070854214e-005 -0.9306414342061614 -0.3659323993197956 -8.170483714744478e-006 -0.9306414298918821 -0.3659324102918961 -8.170483591272402e-006 0.9306414342061614 0.3659323993197956 8.170483714744478e-006 0.9306414298918821 0.3659324102918961 8.170483591272402e-006 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 -1.143611455211359e-005 6.756544154709093e-006 0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 1.143611455211359e-005 -6.756544154709093e-006 -0.9999999999117823 -0.4626699023734356 -0.8865306319791023 6.993341236811272e-007 -0.5843151916873215 -0.8115268059417204 -1.198985552138983e-006 -0.5843151785965475 -0.8115268153673341 -1.198985338700926e-006 -0.4626699023734356 -0.8865306319791023 6.993341236811272e-007 0.4626699023734356 0.8865306319791023 -6.993341236811272e-007 0.4626699023734356 0.8865306319791023 -6.993341236811272e-007 0.5843151916873215 0.8115268059417204 1.198985552138983e-006 0.5843151785965475 0.8115268153673341 1.198985338700926e-006 -0.7895644298229589 -0.6136676715735426 -4.8838939487903e-006 -0.7895644206833598 -0.6136676833328425 -4.883893764775105e-006 0.7895644298229589 0.6136676715735426 4.8838939487903e-006 0.7895644206833598 0.6136676833328425 4.883893764775105e-006 -0.4649592392508002 -0.8853320878827757 6.650477654843452e-007 -0.4649592392508002 -0.8853320878827757 6.650477654843452e-007 -0.4649592392508002 -0.8853320878827757 6.650477654843452e-007 -0.4649592392508002 -0.8853320878827757 6.650477654843452e-007 0.4649592392508002 0.8853320878827757 -6.650477654843452e-007 0.4649592392508002 0.8853320878827757 -6.650477654843452e-007 0.4649592392508002 0.8853320878827757 -6.650477654843452e-007 0.4649592392508002 0.8853320878827757 -6.650477654843452e-007 0.4649592896980679 0.8853320613888476 -6.650470042198489e-007 0.4649592896980679 0.8853320613888476 -6.650470042198489e-007 0.4649592896980679 0.8853320613888476 -6.650470042198489e-007 0.4649592896980679 0.8853320613888476 -6.650470042198489e-007 -0.4649592896980679 -0.8853320613888476 6.650470042198489e-007 -0.4649592896980679 -0.8853320613888476 6.650470042198489e-007 -0.4649592896980679 -0.8853320613888476 6.650470042198489e-007 -0.4649592896980679 -0.8853320613888476 6.650470042198489e-007 0.3363823186517857 0.9417255097384344 -2.516877725314093e-006 0.4671849176505617 0.8841596307904127 -6.316658773279242e-007 0.3363823337858142 0.9417255043325917 -2.516877515671729e-006 0.4671849176505617 0.8841596307904127 -6.316658773279242e-007 -0.4671849176505617 -0.8841596307904127 6.316658773279242e-007 -0.3363823186517857 -0.9417255097384344 2.516877725314093e-006 -0.4671849176505617 -0.8841596307904127 6.316658773279242e-007 -0.3363823337858142 -0.9417255043325917 2.516877515671729e-006 0.05697888530467234 0.9983753836069277 -6.095641334905653e-006 0.05697889999538294 0.9983753827685052 -6.095641161202384e-006 -0.05697888530467234 -0.9983753836069277 6.095641334905653e-006 -0.05697889999538294 -0.9983753827685052 6.095641161202384e-006 -0.2270555341001209 0.97388181231105 -9.178978718591973e-006 -0.2270555222550311 0.9738818150726716 -9.178978601768201e-006 0.2270555341001209 -0.97388181231105 9.178978718591973e-006 0.2270555222550311 -0.9738818150726716 9.178978601768201e-006 -0.4926359040894314 0.8702355232173435 -1.151629015105584e-005 -0.4926358965859402 0.8702355274650317 -1.1516290093936e-005 0.4926359040894314 -0.8702355232173435 1.151629015105584e-005 0.4926358965859402 -0.8702355274650317 1.1516290093936e-005 -0.7181770512240594 0.6958604191418349 -1.291760949868e-005 -0.7181770481753627 0.6958604222883051 -1.291760948507305e-005 0.7181770512240594 -0.6958604191418349 1.291760949868e-005 0.7181770481753627 -0.6958604222883051 1.291760948507305e-005 -0.8853480094222737 0.4649289214879521 -1.326904384415823e-005 -0.885348009522731 0.4649289212966544 -1.326904384401443e-005 0.8853480094222737 -0.4649289214879521 1.326904384415823e-005 0.885348009522731 -0.4649289212966544 1.326904384401443e-005 -0.9805618779891202 0.1962100998347104 -1.254203020765896e-005 -0.9805618789300983 0.1962100951321633 -1.254203018664064e-005 0.9805618779891202 -0.1962100998347104 1.254203020765896e-005 0.9805618789300983 -0.1962100951321633 1.254203018664064e-005 -0.9960801034710325 -0.08845579321102029 -1.079565698109131e-005 -0.9960801026761964 -0.08845580216148359 -1.079565691150925e-005 0.9960801034710325 0.08845579321102029 1.079565698109131e-005 0.9960801026761964 0.08845580216148359 1.079565691150925e-005 -0.9306414343260715 -0.3659323990148086 -8.171861480461013e-006 -0.9306414297719362 -0.3659324105969118 -8.171861350093339e-006 0.9306414343260715 0.3659323990148086 8.171861480461013e-006 0.9306414297719362 0.3659324105969118 8.171861350093339e-006 0.8853320877868276 -0.4649592392446339 1.326908415562775e-005 0.8853320877868276 -0.4649592392446339 1.326908415562775e-005 0.8853320877868276 -0.4649592392446339 1.326908415562775e-005 0.8853320877868276 -0.4649592392446339 1.326908415562775e-005 0.8853320877868276 -0.4649592392446339 1.326908415562775e-005 0.8853320877868276 -0.4649592392446339 1.326908415562775e-005 0.8853320877868276 -0.4649592392446339 1.326908415562775e-005 0.8853320877868276 -0.4649592392446339 1.326908415562775e-005 -0.8853320877868276 0.4649592392446339 -1.326908415562775e-005 -0.8853320877868276 0.4649592392446339 -1.326908415562775e-005 -0.8853320877868276 0.4649592392446339 -1.326908415562775e-005 -0.8853320877868276 0.4649592392446339 -1.326908415562775e-005 -0.8853320877868276 0.4649592392446339 -1.326908415562775e-005 -0.8853320877868276 0.4649592392446339 -1.326908415562775e-005 -0.8853320877868276 0.4649592392446339 -1.326908415562775e-005 -0.8853320877868276 0.4649592392446339 -1.326908415562775e-005 0.4649592392733904 0.8853320878705835 1.011824460885364e-006 0.4649592392733904 0.8853320878705835 1.011824460885364e-006 0.4649592392733904 0.8853320878705835 1.011824460885364e-006 0.4649592392733904 0.8853320878705835 1.011824460885364e-006 -0.4649592392733904 -0.8853320878705835 -1.011824460885364e-006 -0.4649592392733904 -0.8853320878705835 -1.011824460885364e-006 -0.4649592392733904 -0.8853320878705835 -1.011824460885364e-006 -0.4649592392733904 -0.8853320878705835 -1.011824460885364e-006 1.221552770383353e-005 -5.276443668921427e-006 -0.99999999991147 1.221552770383353e-005 -5.276443668921427e-006 -0.99999999991147 1.221552770383353e-005 -5.276443668921427e-006 -0.99999999991147 1.221552770383353e-005 -5.276443668921427e-006 -0.99999999991147 -1.221552770383353e-005 5.276443668921427e-006 0.99999999991147 -1.221552770383353e-005 5.276443668921427e-006 0.99999999991147 -1.221552770383353e-005 5.276443668921427e-006 0.99999999991147 -1.221552770383353e-005 5.276443668921427e-006 0.99999999991147 -0.4649592392736008 -0.8853320878704729 -1.011824452581143e-006 -0.4649592392736008 -0.8853320878704729 -1.011824452581143e-006 -0.4649592392736008 -0.8853320878704729 -1.011824452581143e-006 -0.4649592392736008 -0.8853320878704729 -1.011824452581143e-006 0.4649592392736008 0.8853320878704729 1.011824452581143e-006 0.4649592392736008 0.8853320878704729 1.011824452581143e-006 0.4649592392736008 0.8853320878704729 1.011824452581143e-006 0.4649592392736008 0.8853320878704729 1.011824452581143e-006 0.8853320877868319 -0.4649592392446251 1.326910349051374e-005 0.8853320877868319 -0.4649592392446251 1.326910349051374e-005 0.8853320877868319 -0.4649592392446251 1.326910349051374e-005 0.8853320877868319 -0.4649592392446251 1.326910349051374e-005 -0.8853320877868319 0.4649592392446251 -1.326910349051374e-005 -0.8853320877868319 0.4649592392446251 -1.326910349051374e-005 -0.8853320877868319 0.4649592392446251 -1.326910349051374e-005 -0.8853320877868319 0.4649592392446251 -1.326910349051374e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"320\" source=\"#ID24\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID22\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID20\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID21\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"252\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID22\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 2 8 9 8 2 1 6 7 10 11 10 7 12 13 14 13 12 15 15 12 16 15 16 17 17 16 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 24 22 25 25 22 26 27 28 29 29 28 30 30 28 31 31 28 32 28 33 32 32 33 34 33 35 34 34 35 36 35 37 36 36 37 38 37 39 38 38 39 40 41 40 39 42 43 44 43 42 45 46 47 48 49 48 47 50 51 52 51 50 53 54 55 56 57 56 55 8 58 9 58 8 59 60 10 61 11 61 10 44 62 63 62 44 43 48 49 64 65 64 49 66 67 68 67 66 69 70 71 72 73 72 71 74 75 76 75 74 77 78 79 80 81 80 79 82 83 84 83 82 85 86 87 88 89 88 87 90 91 92 91 90 93 94 95 96 97 96 95 98 99 100 99 98 101 102 103 104 105 104 103 106 107 108 107 106 109 110 111 112 113 112 111 114 100 115 100 114 98 103 116 105 117 105 116 118 108 119 108 118 106 111 120 113 121 113 120 122 115 123 115 122 114 116 124 117 125 117 124 126 119 127 119 126 118 120 128 121 129 121 128 130 123 131 123 130 122 124 132 125 133 125 132 134 127 135 127 134 126 128 136 129 137 129 136 138 131 139 131 138 130 132 140 133 141 133 140 142 135 143 135 142 134 136 144 137 145 137 144 146 139 147 139 146 138 140 148 141 149 141 148 150 143 151 143 150 142 144 152 145 153 145 152 154 147 155 147 154 146 148 156 149 157 149 156 158 151 159 151 158 150 152 160 153 161 153 160 162 155 163 155 162 154 156 164 157 165 157 164 166 159 167 159 166 158 160 168 161 169 161 168 59 163 58 163 59 162 164 60 165 61 165 60 170 167 171 167 170 166 168 172 169 173 169 172 62 171 63 171 62 170 172 64 173 65 173 64 174 175 176 175 174 177 177 174 178 177 178 179 179 178 180 179 180 181 181 180 182 181 182 183 183 182 184 183 184 185 185 184 186 186 184 187 187 184 188 189 190 191 191 190 192 192 190 193 193 190 194 190 195 194 194 195 196 195 197 196 196 197 198 197 199 198 198 199 200 199 201 200 200 201 202 203 202 201 204 205 206 205 204 207 208 209 210 211 210 209 206 212 213 212 206 205 210 211 214 215 214 211 216 217 218 217 216 219 220 221 222 223 222 221 224 225 226 225 224 227 228 229 230 231 230 229 232 233 234 233 232 235 236 237 238 239 238 237 240 234 241 234 240 232 237 242 239 243 239 242 244 241 245 241 244 240 242 246 243 247 243 246 248 245 249 245 248 244 246 250 247 251 247 250 252 249 253 249 252 248 250 254 251 255 251 254 256 253 257 253 256 252 254 258 255 259 255 258 260 257 261 257 260 256 258 262 259 263 259 262 264 261 265 261 264 260 262 266 263 267 263 266 268 265 269 265 268 264 266 270 267 271 267 270 212 269 213 269 212 268 270 214 271 215 271 214 272 273 274 275 276 277 276 275 278 276 278 279 279 278 273 279 273 272 280 281 282 281 283 282 282 283 284 283 285 284 286 284 285 287 281 280 288 289 290 289 288 291 292 293 294 295 294 293 296 297 298 297 296 299 300 301 302 303 302 301 304 305 306 305 304 307 308 309 310 311 310 309 312 313 314 313 312 315 316 317 318 319 318 317</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID25\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID28\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID31\">108.5883736619076 69.71174670367736 82.67842636708967 71.97733909219005 0.0006005394111525675 88.8733999457417 71.97740993801949 0.0005586831525761227 82.6784786864458 108.5883028160764 69.71178855993708 88.87334762638584 108.5883028160764 69.71178855993708 88.87334762638584 108.5883736619076 69.71174670367736 82.67842636708967 71.97733909219005 0.0006005394111525675 88.8733999457417 71.97740993801949 0.0005586831525761227 82.6784786864458</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID31\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID29\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID32\">0.8853320877868649 -0.4649592392446426 1.32662768699309e-005 0.8853320877868649 -0.4649592392446426 1.32662768699309e-005 0.8853320877868649 -0.4649592392446426 1.32662768699309e-005 0.8853320877868649 -0.4649592392446426 1.32662768699309e-005 -0.8853320877868649 0.4649592392446426 -1.32662768699309e-005 -0.8853320877868649 0.4649592392446426 -1.32662768699309e-005 -0.8853320877868649 0.4649592392446426 -1.32662768699309e-005 -0.8853320877868649 0.4649592392446426 -1.32662768699309e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID32\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID30\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID28\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID29\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID30\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID30\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID33\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID34\">\r\n\t\t\t\t\t<float_array count=\"552\" id=\"ID37\">2.608291724709147 46.8920088713005 0.0002015831813473312 0.621907255628912 69.26022102160323 2.877864641703809e-005 0.004421584389319833 57.93308046706511 9.784415102753741e-005 4.410562289683526 79.95281166809082 4.884981308350689e-014 8.221886862409519 37.0343747071413 0.0003315642971388755 11.06246190293018 89.14180689261525 1.384721042452242e-005 16.38895931788579 29.16136199363632 0.0004772232199101723 20.03696971369413 96.0803666316906 6.919483877609878e-005 26.44572629856543 23.91285367458318 0.000626721449738632 30.60467822753265 100.204556062263 0.0001615444796447818 70.00960826571441 4.71872051814421 0.001138134174805572 71.97835557919314 9.094947017729282e-013 0.001313339410326186 41.90669178670737 101.1791796791654 0.0002833903709804631 53.02443373317988 98.92502447313927 0.000424829428603779 63.05430417401271 93.62529800670723 0.0005743661242023634 73.49516766645013 2.888172332142631 0.001190370906616778 103.5870715308286 68.6537994389339 0.00121095076518607 108.5893193030805 69.71118802052547 0.001261020054500683 107.0726309315649 66.8232512529305 0.001263187497000828 107.0726309315649 66.8232512529305 0.001263187497000828 103.5870715308286 68.6537994389339 0.00121095076518607 108.5893193030805 69.71118802052547 0.001261020054500683 70.00960826571441 4.71872051814421 0.001138134174805572 63.05430417401271 93.62529800670723 0.0005743661242023634 73.49516766645013 2.888172332142631 0.001190370906616778 71.97835557919314 9.094947017729282e-013 0.001313339410326186 53.02443373317988 98.92502447313927 0.000424829428603779 41.90669178670737 101.1791796791654 0.0002833903709804631 30.60467822753265 100.204556062263 0.0001615444796447818 26.44572629856543 23.91285367458318 0.000626721449738632 20.03696971369413 96.0803666316906 6.919483877609878e-005 16.38895931788579 29.16136199363632 0.0004772232199101723 11.06246190293018 89.14180689261525 1.384721042452242e-005 8.221886862409519 37.0343747071413 0.0003315642971388755 4.410562289683526 79.95281166809082 4.884981308350689e-014 2.608291724709147 46.8920088713005 0.0002015831813473312 0.621907255628912 69.26022102160323 2.877864641703809e-005 0.004421584389319833 57.93308046706511 9.784415102753741e-005 26.44572629856543 23.91285367458318 0.000626721449738632 16.38895490708137 29.16136449493956 0.3941780105888313 16.38895931788579 29.16136199363632 0.0004772232199101723 26.44572188776112 23.91285617588642 0.3943275088186633 26.44572188776112 23.91285617588642 0.3943275088186633 26.44572629856543 23.91285367458318 0.000626721449738632 16.38895490708137 29.16136449493956 0.3941780105888313 16.38895931788579 29.16136199363632 0.0004772232199101723 71.97835557919314 9.094947017729282e-013 0.001313339410326186 26.44572188776112 23.91285617588642 0.3943275088186633 26.44572629856543 23.91285367458318 0.000626721449738632 71.97835116838871 2.50130415224703e-006 0.3950141267792473 71.97835116838871 2.50130415224703e-006 0.3950141267792473 71.97835557919314 9.094947017729282e-013 0.001313339410326186 26.44572188776112 23.91285617588642 0.3943275088186633 26.44572629856543 23.91285367458318 0.000626721449738632 73.49516766645013 2.888172332142631 0.001190370906616778 71.97835116838871 2.50130415224703e-006 0.3950141267792473 71.97835557919314 9.094947017729282e-013 0.001313339410326186 73.49516325564605 2.888174833445873 0.3948911582755379 73.49516325564605 2.888174833445873 0.3948911582755379 73.49516766645013 2.888172332142631 0.001190370906616778 71.97835116838871 2.50130415224703e-006 0.3950141267792473 71.97835557919314 9.094947017729282e-013 0.001313339410326186 70.00960385490998 4.718723019447225 0.3948389215437249 73.49516766645013 2.888172332142631 0.001190370906616778 70.00960826571441 4.71872051814421 0.001138134174805572 73.49516325564605 2.888174833445873 0.3948911582755379 73.49516325564605 2.888174833445873 0.3948911582755379 70.00960385490998 4.718723019447225 0.3948389215437249 73.49516766645013 2.888172332142631 0.001190370906616778 70.00960826571441 4.71872051814421 0.001138134174805572 103.5870715308286 68.6537994389339 0.00121095076518607 70.00960385490998 4.718723019447225 0.3948389215437249 70.00960826571441 4.71872051814421 0.001138134174805572 103.5870671200241 68.65380194023715 0.3949117381341036 103.5870671200241 68.65380194023715 0.3949117381341036 103.5870715308286 68.6537994389339 0.00121095076518607 70.00960385490998 4.718723019447225 0.3948389215437249 70.00960826571441 4.71872051814421 0.001138134174805572 107.0726309315649 66.8232512529305 0.001263187497000828 103.5870671200241 68.65380194023715 0.3949117381341036 103.5870715308286 68.6537994389339 0.00121095076518607 107.0726265207607 66.82325375423375 0.3949639748659184 107.0726265207607 66.82325375423375 0.3949639748659184 107.0726309315649 66.8232512529305 0.001263187497000828 103.5870671200241 68.65380194023715 0.3949117381341036 103.5870715308286 68.6537994389339 0.00121095076518607 108.5893193030805 69.71118802052547 0.001261020054500683 107.0726265207607 66.82325375423375 0.3949639748659184 107.0726309315649 66.8232512529305 0.001263187497000828 108.5893148922758 69.71119052182871 0.3949618074234218 108.5893148922758 69.71119052182871 0.3949618074234218 108.5893193030805 69.71118802052547 0.001261020054500683 107.0726265207607 66.82325375423375 0.3949639748659184 107.0726309315649 66.8232512529305 0.001263187497000828 63.05429976320852 93.62530050801001 0.3942751534931261 108.5893193030805 69.71118802052547 0.001261020054500683 63.05430417401271 93.62529800670723 0.0005743661242023634 108.5893148922758 69.71119052182871 0.3949618074234218 108.5893148922758 69.71119052182871 0.3949618074234218 63.05429976320852 93.62530050801001 0.3942751534931261 108.5893193030805 69.71118802052547 0.001261020054500683 63.05430417401271 93.62529800670723 0.0005743661242023634 53.02442932237545 98.92502697444252 0.3941256167975249 63.05430417401271 93.62529800670723 0.0005743661242023634 53.02443373317988 98.92502447313927 0.000424829428603779 63.05429976320852 93.62530050801001 0.3942751534931261 63.05429976320852 93.62530050801001 0.3942751534931261 53.02442932237545 98.92502697444252 0.3941256167975249 63.05430417401271 93.62529800670723 0.0005743661242023634 53.02443373317988 98.92502447313927 0.000424829428603779 41.90668737590306 101.1791821804686 0.3939841777399051 41.90669178670737 101.1791796791654 0.0002833903709804631 41.90668737590306 101.1791821804686 0.3939841777399051 41.90669178670737 101.1791796791654 0.0002833903709804631 30.60467381672856 100.2045585635663 0.3938623318485659 30.60467822753265 100.204556062263 0.0001615444796447818 30.60467381672856 100.2045585635663 0.3938623318485659 30.60467822753265 100.204556062263 0.0001615444796447818 20.03696530288914 96.08036913299384 0.3937699822076972 20.03696971369413 96.0803666316906 6.919483877609878e-005 20.03696530288914 96.08036913299384 0.3937699822076972 20.03696971369413 96.0803666316906 6.919483877609878e-005 11.06245749212542 89.14180939391872 0.3937146345793421 11.06246190293018 89.14180689261525 1.384721042452242e-005 11.06245749212542 89.14180939391872 0.3937146345793421 11.06246190293018 89.14180689261525 1.384721042452242e-005 4.410557878878649 79.95281416939406 0.39370078736897 4.410562289683526 79.95281166809082 4.884981308350689e-014 4.410557878878649 79.95281416939406 0.39370078736897 4.410562289683526 79.95281166809082 4.884981308350689e-014 0.6219028448246036 69.26022352290647 0.3937295660153417 0.621907255628912 69.26022102160323 2.877864641703809e-005 0.6219028448246036 69.26022352290647 0.3937295660153417 0.621907255628912 69.26022102160323 2.877864641703809e-005 0.004417173585125056 57.93308296836881 0.3937986315199487 0.004421584389319833 57.93308046706511 9.784415102753741e-005 0.004417173585125056 57.93308296836881 0.3937986315199487 0.004421584389319833 57.93308046706511 9.784415102753741e-005 2.608287313904725 46.89201137260375 0.3939023705502676 2.608291724709147 46.8920088713005 0.0002015831813473312 2.608287313904725 46.89201137260375 0.3939023705502676 2.608291724709147 46.8920088713005 0.0002015831813473312 8.221882451604643 37.03437720844454 0.3940323516660635 8.221886862409519 37.0343747071413 0.0003315642971388755 8.221882451604643 37.03437720844454 0.3940323516660635 8.221886862409519 37.0343747071413 0.0003315642971388755 2.608287313904725 46.89201137260375 0.3939023705502676 0.6219028448246036 69.26022352290647 0.3937295660153417 0.004417173585125056 57.93308296836881 0.3937986315199487 4.410557878878649 79.95281416939406 0.39370078736897 8.221882451604643 37.03437720844454 0.3940323516660635 11.06245749212542 89.14180939391872 0.3937146345793421 16.38895490708137 29.16136449493956 0.3941780105888313 20.03696530288914 96.08036913299384 0.3937699822076972 26.44572188776112 23.91285617588642 0.3943275088186633 30.60467381672856 100.2045585635663 0.3938623318485659 70.00960385490998 4.718723019447225 0.3948389215437249 71.97835116838871 2.50130415224703e-006 0.3950141267792473 41.90668737590306 101.1791821804686 0.3939841777399051 53.02442932237545 98.92502697444252 0.3941256167975249 63.05429976320852 93.62530050801001 0.3942751534931261 73.49516325564605 2.888174833445873 0.3948911582755379 103.5870671200241 68.65380194023715 0.3949117381341036 108.5893148922758 69.71119052182871 0.3949618074234218 107.0726265207607 66.82325375423375 0.3949639748659184 107.0726265207607 66.82325375423375 0.3949639748659184 103.5870671200241 68.65380194023715 0.3949117381341036 108.5893148922758 69.71119052182871 0.3949618074234218 70.00960385490998 4.718723019447225 0.3948389215437249 63.05429976320852 93.62530050801001 0.3942751534931261 73.49516325564605 2.888174833445873 0.3948911582755379 71.97835116838871 2.50130415224703e-006 0.3950141267792473 53.02442932237545 98.92502697444252 0.3941256167975249 41.90668737590306 101.1791821804686 0.3939841777399051 30.60467381672856 100.2045585635663 0.3938623318485659 26.44572188776112 23.91285617588642 0.3943275088186633 20.03696530288914 96.08036913299384 0.3937699822076972 16.38895490708137 29.16136449493956 0.3941780105888313 11.06245749212542 89.14180939391872 0.3937146345793421 8.221882451604643 37.03437720844454 0.3940323516660635 4.410557878878649 79.95281416939406 0.39370078736897 2.608287313904725 46.89201137260375 0.3939023705502676 0.6219028448246036 69.26022352290647 0.3937295660153417 0.004417173585125056 57.93308296836881 0.3937986315199487</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"184\" source=\"#ID37\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID35\">\r\n\t\t\t\t\t<float_array count=\"552\" id=\"ID38\">-1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 -1.120344321052952e-005 6.353310179097818e-006 0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 1.120344321052952e-005 -6.353310179097818e-006 -0.9999999999170592 -0.4626699023705187 -0.886530631980787 4.489082029501636e-007 -0.5843151601430751 -0.8115268286538893 -1.390459971958381e-006 -0.5843152101364293 -0.8115267926576959 -1.390460760751073e-006 -0.4626699023705187 -0.886530631980787 4.489082029501636e-007 0.4626699023705187 0.886530631980787 -4.489082029501636e-007 0.4626699023705187 0.886530631980787 -4.489082029501636e-007 0.5843151601430751 0.8115268286538893 1.390459971958381e-006 0.5843152101364293 0.8115267926576959 1.390460760751073e-006 -0.4649592392479124 -0.8853320878844445 4.156450265619329e-007 -0.4649592392479124 -0.8853320878844445 4.156450265619329e-007 -0.4649592392479124 -0.8853320878844445 4.156450265619329e-007 -0.4649592392479124 -0.8853320878844445 4.156450265619329e-007 0.4649592392479124 0.8853320878844445 -4.156450265619329e-007 0.4649592392479124 0.8853320878844445 -4.156450265619329e-007 0.4649592392479124 0.8853320878844445 -4.156450265619329e-007 0.4649592392479124 0.8853320878844445 -4.156450265619329e-007 0.8853320877844816 -0.4649592392602415 1.287279810417491e-005 0.8853320877844816 -0.4649592392602415 1.287279810417491e-005 0.8853320877844816 -0.4649592392602415 1.287279810417491e-005 0.8853320877844816 -0.4649592392602415 1.287279810417491e-005 -0.8853320877844816 0.4649592392602415 -1.287279810417491e-005 -0.8853320877844816 0.4649592392602415 -1.287279810417491e-005 -0.8853320877844816 0.4649592392602415 -1.287279810417491e-005 -0.8853320877844816 0.4649592392602415 -1.287279810417491e-005 0.4649592392904055 0.8853320878621283 -4.156450243400657e-007 0.4649592392904055 0.8853320878621283 -4.156450243400657e-007 0.4649592392904055 0.8853320878621283 -4.156450243400657e-007 0.4649592392904055 0.8853320878621283 -4.156450243400657e-007 -0.4649592392904055 -0.8853320878621283 4.156450243400657e-007 -0.4649592392904055 -0.8853320878621283 4.156450243400657e-007 -0.4649592392904055 -0.8853320878621283 4.156450243400657e-007 -0.4649592392904055 -0.8853320878621283 4.156450243400657e-007 0.8853320877916023 -0.4649592392466824 1.287279810523322e-005 0.8853320877916023 -0.4649592392466824 1.287279810523322e-005 0.8853320877916023 -0.4649592392466824 1.287279810523322e-005 0.8853320877916023 -0.4649592392466824 1.287279810523322e-005 -0.8853320877916023 0.4649592392466824 -1.287279810523322e-005 -0.8853320877916023 0.4649592392466824 -1.287279810523322e-005 -0.8853320877916023 0.4649592392466824 -1.287279810523322e-005 -0.8853320877916023 0.4649592392466824 -1.287279810523322e-005 -0.4649592392905679 -0.8853320878620428 4.156450246226417e-007 -0.4649592392905679 -0.8853320878620428 4.156450246226417e-007 -0.4649592392905679 -0.8853320878620428 4.156450246226417e-007 -0.4649592392905679 -0.8853320878620428 4.156450246226417e-007 0.4649592392905679 0.8853320878620428 -4.156450246226417e-007 0.4649592392905679 0.8853320878620428 -4.156450246226417e-007 0.4649592392905679 0.8853320878620428 -4.156450246226417e-007 0.4649592392905679 0.8853320878620428 -4.156450246226417e-007 0.8853320877913473 -0.464959239247168 1.287279810441679e-005 0.8853320877913473 -0.464959239247168 1.287279810441679e-005 0.8853320877913473 -0.464959239247168 1.287279810441679e-005 0.8853320877913473 -0.464959239247168 1.287279810441679e-005 -0.8853320877913473 0.464959239247168 -1.287279810441679e-005 -0.8853320877913473 0.464959239247168 -1.287279810441679e-005 -0.8853320877913473 0.464959239247168 -1.287279810441679e-005 -0.8853320877913473 0.464959239247168 -1.287279810441679e-005 0.4649592896951816 0.8853320613905156 -4.156442922766243e-007 0.4649592896951816 0.8853320613905156 -4.156442922766243e-007 0.4649592896951816 0.8853320613905156 -4.156442922766243e-007 0.4649592896951816 0.8853320613905156 -4.156442922766243e-007 -0.4649592896951816 -0.8853320613905156 4.156442922766243e-007 -0.4649592896951816 -0.8853320613905156 4.156442922766243e-007 -0.4649592896951816 -0.8853320613905156 4.156442922766243e-007 -0.4649592896951816 -0.8853320613905156 4.156442922766243e-007 0.3363823492675259 0.9417254988033172 -2.214433750522287e-006 0.4671849176476955 0.8841596307920697 -3.832607799310301e-007 0.3363823031631208 0.9417255152717116 -2.214434371679192e-006 0.4671849176476955 0.8841596307920697 -3.832607799310301e-007 -0.4671849176476955 -0.8841596307920697 3.832607799310301e-007 -0.3363823492675259 -0.9417254988033172 2.214433750522287e-006 -0.4671849176476955 -0.8841596307920697 3.832607799310301e-007 -0.3363823031631208 -0.9417255152717116 2.214434371679192e-006 0.05697890869166154 0.9983753822745054 -5.704628622628178e-006 0.05697887659956046 0.9983753841060532 -5.704628993806602e-006 -0.05697890869166154 -0.9983753822745054 5.704628622628178e-006 -0.05697887659956046 -0.9983753841060532 5.704628993806602e-006 -0.2270555219893593 0.9738818151387292 -8.731177009690683e-006 -0.2270555343759504 0.9738818122508594 -8.731177130115619e-006 0.2270555219893593 -0.9738818151387292 8.731177009690683e-006 0.2270555343759504 -0.9738818122508594 8.731177130115619e-006 -0.4926359037112281 0.8702355234375124 -1.104809468708616e-005 -0.4926358969747761 0.8702355272509837 -1.104809463584287e-005 0.4926359037112281 -0.8702355234375124 1.104809468708616e-005 0.4926358969747761 -0.8702355272509837 1.104809463584287e-005 -0.7181770592975592 0.695860410817631 -1.246707302151217e-005 -0.7181770401120041 0.6958604306184774 -1.246707293236882e-005 0.7181770592975592 -0.695860410817631 1.246707302151217e-005 0.7181770401120041 -0.6958604306184774 1.246707293236882e-005 -0.885348019975147 0.4649289014036213 -1.287278385328937e-005 -0.8853479989787587 0.4649289413863148 -1.287278387207998e-005 0.885348019975147 -0.4649289014036213 1.287278385328937e-005 0.8853479989787587 -0.4649289413863148 1.287278387207998e-005 -0.9805618842590814 0.1962100685200736 -1.223225285011953e-005 -0.9805618726671317 0.1962101264509552 -1.223225308830265e-005 0.9805618842590814 -0.1962100685200736 1.223225285011953e-005 0.9805618726671317 -0.1962101264509552 1.223225308830265e-005 -0.9960801000596784 -0.088455831649436 -1.059753950700416e-005 -0.9960801060920398 -0.08845576372042047 -1.05975400061615e-005 0.9960801000596784 0.088455831649436 1.059753950700416e-005 0.9960801060920398 0.08845576372042047 1.05975400061615e-005 -0.9306414189181281 -0.3659324382019428 -8.101505977813273e-006 -0.9306414451814944 -0.3659323714087961 -8.101506696410996e-006 0.9306414189181281 0.3659324382019428 8.101505977813273e-006 0.9306414451814944 0.3659323714087961 8.101506696410996e-006 -0.7895644039237401 -0.6136677048957979 -4.947018629681654e-006 -0.7895644465811774 -0.613667650011377 -4.947019456289589e-006 0.7895644039237401 0.6136677048957979 4.947018629681654e-006 0.7895644465811774 0.613667650011377 4.947019456289589e-006 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 -1.124445407426201e-005 6.166583813761367e-006 0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678 1.124445407426201e-005 -6.166583813761367e-006 -0.9999999999177678</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"184\" source=\"#ID38\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID36\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID34\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID35\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID36\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 7 8 9 9 8 10 10 8 11 9 10 12 12 10 13 13 10 14 10 11 15 14 16 17 16 14 10 17 16 18 19 20 21 22 23 20 21 20 23 24 25 22 23 22 26 26 22 27 27 22 28 25 29 22 22 29 28 28 29 30 29 31 30 30 31 32 31 33 32 32 33 34 33 35 34 34 35 36 37 36 35 38 39 40 39 38 41 42 43 44 45 44 43 46 47 48 47 46 49 50 51 52 53 52 51 54 55 56 55 54 57 58 59 60 61 60 59 62 63 64 63 62 65 66 67 68 69 68 67 70 71 72 71 70 73 74 75 76 77 76 75 78 79 80 79 78 81 82 83 84 85 84 83 86 87 88 87 86 89 90 91 92 93 92 91 94 95 96 95 94 97 98 99 100 101 100 99 102 103 104 103 102 105 106 107 108 109 108 107 110 104 111 104 110 102 107 112 109 113 109 112 114 111 115 111 114 110 112 116 113 117 113 116 118 115 119 115 118 114 116 120 117 121 117 120 122 119 123 119 122 118 120 124 121 125 121 124 126 123 127 123 126 122 124 128 125 129 125 128 130 127 131 127 130 126 128 132 129 133 129 132 134 131 135 131 134 130 132 136 133 137 133 136 138 135 139 135 138 134 136 140 137 141 137 140 142 139 143 139 142 138 140 144 141 145 141 144 40 142 143 142 40 39 44 45 144 145 144 45 146 147 148 147 146 149 149 146 150 149 150 151 151 150 152 151 152 153 153 152 154 153 154 155 155 154 156 156 154 157 155 156 158 158 156 159 159 156 160 156 157 161 160 162 163 162 160 156 163 162 164 165 166 167 168 169 166 167 166 169 170 171 168 169 168 172 172 168 173 173 168 174 171 175 168 168 175 174 174 175 176 175 177 176 176 177 178 177 179 178 178 179 180 179 181 180 180 181 182 183 182 181</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID40\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID43\">\r\n\t\t\t\t\t<float_array count=\"552\" id=\"ID46\">408.2661702829851 760.825572591227 70.90759319985631 294.2559811059155 794.1643065168976 0.3865390586634021 403.0575877708347 794.4779249625289 17.50663153815117 403.0575877708347 794.4779249625289 17.50663153815117 294.2559811059155 794.1643065168976 0.3865390586634021 408.2661702829851 760.825572591227 70.90759319985631 408.2661702829851 760.825572591227 70.90759319985631 403.0575877708347 794.4779249625289 17.50663153815117 511.9153516489432 795.3481456702361 0.7730781172911065 511.9153516489432 795.3481456702361 0.7730781172911065 403.0575877708347 794.4779249625289 17.50663153815117 408.2661702829851 760.825572591227 70.90759319985631 638.4865210021594 -1.591615728102624e-012 458.8603694215867 294.2559811059155 794.1643065168976 0.3865390586634021 408.2661702829851 760.825572591227 70.90759319985631 408.2661702829851 760.825572591227 70.90759319985631 294.2559811059155 794.1643065168976 0.3865390586634021 638.4865210021594 -1.591615728102624e-012 458.8603694215867 638.4865210021594 -1.591615728102624e-012 458.8603694215867 408.2661702829851 760.825572591227 70.90759319985631 511.9153516489432 795.3481456702361 0.7730781172911065 511.9153516489432 795.3481456702361 0.7730781172911065 408.2661702829851 760.825572591227 70.90759319985631 638.4865210021594 -1.591615728102624e-012 458.8603694215867 638.4865210021594 -1.591615728102624e-012 458.8603694215867 190.6067997400683 759.6417334375042 70.52105414117364 294.2559811059155 794.1643065168976 0.3865390586634021 294.2559811059155 794.1643065168976 0.3865390586634021 190.6067997400683 759.6417334375042 70.52105414117364 638.4865210021594 -1.591615728102624e-012 458.8603694215867 638.4865210021594 -1.591615728102624e-012 458.8603694215867 511.9153516489432 795.3481456702361 0.7730781172911065 625.9255408259082 762.0094117448996 71.29413225852733 625.9255408259082 762.0094117448996 71.29413225852733 511.9153516489432 795.3481456702361 0.7730781172911065 638.4865210021594 -1.591615728102624e-012 458.8603694215867 638.4865210021594 -1.591615728102624e-012 458.8603694215867 76.59661056289633 792.9804673634782 1.13686837721616e-013 190.6067997400683 759.6417334375042 70.52105414117364 190.6067997400683 759.6417334375042 70.52105414117364 76.59661056289633 792.9804673634782 1.13686837721616e-013 638.4865210021594 -1.591615728102624e-012 458.8603694215867 190.6067997400683 759.6417334375042 70.52105414117364 185.3982172280171 793.2940858089456 17.12009247939636 294.2559811059155 794.1643065168976 0.3865390586634021 294.2559811059155 794.1643065168976 0.3865390586634021 185.3982172280171 793.2940858089456 17.12009247939636 190.6067997400683 759.6417334375042 70.52105414117364 729.5747221919205 796.5319848239064 1.159617175907556 638.4865210021594 -1.591615728102624e-012 458.8603694215867 625.9255408259082 762.0094117448996 71.29413225852733 625.9255408259082 762.0094117448996 71.29413225852733 638.4865210021594 -1.591615728102624e-012 458.8603694215867 729.5747221919205 796.5319848239064 1.159617175907556 625.9255408259082 762.0094117448996 71.29413225852733 511.9153516489432 795.3481456702361 0.7730781172911065 620.716958313782 795.6617641160743 17.89317059680894 620.716958313782 795.6617641160743 17.89317059680894 511.9153516489432 795.3481456702361 0.7730781172911065 625.9255408259082 762.0094117448996 71.29413225852733 76.46601239425036 791.6860434969756 78.72940907043807 76.59661056289633 792.9804673634782 1.13686837721616e-013 638.4865210021594 -1.591615728102624e-012 458.8603694215867 -8.640199666842818e-012 898.3988086623533 80.3513820080114 0.130598167311291 899.6932325278973 1.621972937529336 0.130598167311291 899.6932325278973 1.621972937529336 -8.640199666842818e-012 898.3988086623533 80.3513820080114 76.59661056289633 792.9804673634782 1.13686837721616e-013 76.46601239425036 791.6860434969756 78.72940907043807 638.4865210021594 -1.591615728102624e-012 458.8603694215867 190.6067997400683 759.6417334375042 70.52105414117364 76.59661056289633 792.9804673634782 1.13686837721616e-013 185.3982172280171 793.2940858089456 17.12009247939636 185.3982172280171 793.2940858089456 17.12009247939636 76.59661056289633 792.9804673634782 1.13686837721616e-013 190.6067997400683 759.6417334375042 70.52105414117364 843.58491136883 763.1932508986417 71.68067131717652 638.4865210021594 -1.591615728102624e-012 458.8603694215867 729.5747221919205 796.5319848239064 1.159617175907556 729.5747221919205 796.5319848239064 1.159617175907556 638.4865210021594 -1.591615728102624e-012 458.8603694215867 843.58491136883 763.1932508986417 71.68067131717652 625.9255408259082 762.0094117448996 71.29413225852733 620.716958313782 795.6617641160743 17.89317059680894 729.5747221919205 796.5319848239064 1.159617175907556 729.5747221919205 796.5319848239064 1.159617175907556 620.716958313782 795.6617641160743 17.89317059680894 625.9255408259082 762.0094117448996 71.29413225852733 638.4865210021594 -1.591615728102624e-012 458.8603694215867 84.83062647706493 791.7315382424888 78.74426370337324 76.46601239425036 791.6860434969756 78.72940907043807 76.46601239425036 791.6860434969756 78.72940907043807 84.83062647706493 791.7315382424888 78.74426370337324 638.4865210021594 -1.591615728102624e-012 458.8603694215867 947.2340927349192 797.7158239772957 1.546156234591194 638.4865210021594 -1.591615728102624e-012 458.8603694215867 843.58491136883 763.1932508986417 71.68067131717652 843.58491136883 763.1932508986417 71.68067131717652 638.4865210021594 -1.591615728102624e-012 458.8603694215867 947.2340927349192 797.7158239772957 1.546156234591194 843.58491136883 763.1932508986417 71.68067131717652 729.5747221919205 796.5319848239064 1.159617175907556 838.3763288567284 796.8456032695245 18.27970965547866 838.3763288567284 796.8456032695245 18.27970965547866 729.5747221919205 796.5319848239064 1.159617175907556 843.58491136883 763.1932508986417 71.68067131717652 84.9331460389044 792.7476609776642 16.94167758309084 84.83062647706493 791.7315382424888 78.74426370337324 638.4865210021594 -1.591615728102624e-012 458.8603694215867 638.4865210021594 -1.591615728102624e-012 458.8603694215867 84.83062647706493 791.7315382424888 78.74426370337324 84.9331460389044 792.7476609776642 16.94167758309084 947.2340927349192 797.7158239772957 1.546156234591194 947.1034945661495 796.4214001118176 80.27556530509554 638.4865210021594 -1.591615728102624e-012 458.8603694215867 638.4865210021594 -1.591615728102624e-012 458.8603694215867 947.1034945661495 796.4214001118176 80.27556530509554 947.2340927349192 797.7158239772957 1.546156234591194 843.58491136883 763.1932508986417 71.68067131717652 838.3763288567284 796.8456032695245 18.27970965547866 947.2340927349192 797.7158239772957 1.546156234591194 947.2340927349192 797.7158239772957 1.546156234591194 838.3763288567284 796.8456032695245 18.27970965547866 843.58491136883 763.1932508986417 71.68067131717652 638.4865210021594 -1.591615728102624e-012 458.8603694215867 185.308757482589 792.4074054605326 71.04973769273147 84.9331460389044 792.7476609776642 16.94167758309084 84.9331460389044 792.7476609776642 16.94167758309084 185.308757482589 792.4074054605326 71.04973769273147 638.4865210021594 -1.591615728102624e-012 458.8603694215867 947.1034945661495 796.4214001118176 80.27556530509554 938.7388804838611 796.3759053663305 80.26071067207806 638.4865210021594 -1.591615728102624e-012 458.8603694215867 638.4865210021594 -1.591615728102624e-012 458.8603694215867 938.7388804838611 796.3759053663305 80.26071067207806 947.1034945661495 796.4214001118176 80.27556530509554 638.4865210021594 -1.591615728102624e-012 458.8603694215867 294.2279024993736 793.886005385765 17.31336200882697 185.308757482589 792.4074054605326 71.04973769273147 185.308757482589 792.4074054605326 71.04973769273147 294.2279024993736 793.886005385765 17.31336200882697 638.4865210021594 -1.591615728102624e-012 458.8603694215867 938.8414000457415 797.3920281008236 18.45812455186535 638.4865210021594 -1.591615728102624e-012 458.8603694215867 938.7388804838611 796.3759053663305 80.26071067207806 938.7388804838611 796.3759053663305 80.26071067207806 638.4865210021594 -1.591615728102624e-012 458.8603694215867 938.8414000457415 797.3920281008236 18.45812455186535 638.4865210021594 -1.591615728102624e-012 458.8603694215867 402.9681280255149 793.5912446141948 71.43627675140215 294.2279024993736 793.886005385765 17.31336200882697 294.2279024993736 793.886005385765 17.31336200882697 402.9681280255149 793.5912446141948 71.43627675140215 638.4865210021594 -1.591615728102624e-012 458.8603694215867 938.8414000457415 797.3920281008236 18.45812455186535 838.2868691113745 795.9589229215537 72.20935486873918 638.4865210021594 -1.591615728102624e-012 458.8603694215867 638.4865210021594 -1.591615728102624e-012 458.8603694215867 838.2868691113745 795.9589229215537 72.20935486873918 938.8414000457415 797.3920281008236 18.45812455186535 638.4865210021594 -1.591615728102624e-012 458.8603694215867 511.8872730423282 795.0698445392601 17.69990106748548 402.9681280255149 793.5912446141948 71.43627675140215 402.9681280255149 793.5912446141948 71.43627675140215 511.8872730423282 795.0698445392601 17.69990106748548 638.4865210021594 -1.591615728102624e-012 458.8603694215867 838.2868691113745 795.9589229215537 72.20935486873918 729.546643585275 796.2536836927691 18.08644012613695 638.4865210021594 -1.591615728102624e-012 458.8603694215867 638.4865210021594 -1.591615728102624e-012 458.8603694215867 729.546643585275 796.2536836927691 18.08644012613695 838.2868691113745 795.9589229215537 72.20935486873918 638.4865210021594 -1.591615728102624e-012 458.8603694215867 620.6274985684531 794.775083767868 71.82281581006458 511.8872730423282 795.0698445392601 17.69990106748548 511.8872730423282 795.0698445392601 17.69990106748548 620.6274985684531 794.775083767868 71.82281581006458 638.4865210021594 -1.591615728102624e-012 458.8603694215867 729.546643585275 796.2536836927691 18.08644012613695 620.6274985684531 794.775083767868 71.82281581006458 638.4865210021594 -1.591615728102624e-012 458.8603694215867 638.4865210021594 -1.591615728102624e-012 458.8603694215867 620.6274985684531 794.775083767868 71.82281581006458 729.546643585275 796.2536836927691 18.08644012613695</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"184\" source=\"#ID46\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID44\">\r\n\t\t\t\t\t<float_array count=\"552\" id=\"ID47\">0.08694521327619548 -0.8389710833353256 -0.5371853043554963 0.08694521327619548 -0.8389710833353256 -0.5371853043554963 0.08694521327619548 -0.8389710833353256 -0.5371853043554963 -0.08694521327619548 0.8389710833353256 0.5371853043554963 -0.08694521327619548 0.8389710833353256 0.5371853043554963 -0.08694521327619548 0.8389710833353256 0.5371853043554963 -0.07416162129676636 -0.8469389554307204 -0.5264926017529167 -0.07416162129676636 -0.8469389554307204 -0.5264926017529167 -0.07416162129676636 -0.8469389554307204 -0.5264926017529167 0.07416162129676636 0.8469389554307204 0.5264926017529167 0.07416162129676636 0.8469389554307204 0.5264926017529167 0.07416162129676636 0.8469389554307204 0.5264926017529167 0.4367336465990376 -0.3002536877829946 -0.8480043896708431 0.4367336465990376 -0.3002536877829946 -0.8480043896708431 0.4367336465990376 -0.3002536877829946 -0.8480043896708431 -0.4367336465990376 0.3002536877829946 0.8480043896708431 -0.4367336465990376 0.3002536877829946 0.8480043896708431 -0.4367336465990376 0.3002536877829946 0.8480043896708431 -0.3602396409877891 -0.507973081664576 -0.7824261941967324 -0.3602396409877891 -0.507973081664576 -0.7824261941967324 -0.3602396409877891 -0.507973081664576 -0.7824261941967324 0.3602396409877891 0.507973081664576 0.7824261941967324 0.3602396409877891 0.507973081664576 0.7824261941967324 0.3602396409877891 0.507973081664576 0.7824261941967324 -0.3192355035598861 -0.5737891287437789 -0.7542245879062292 -0.3192355035598861 -0.5737891287437789 -0.7542245879062292 -0.3192355035598861 -0.5737891287437789 -0.7542245879062292 0.3192355035598861 0.5737891287437789 0.7542245879062292 0.3192355035598861 0.5737891287437789 0.7542245879062292 0.3192355035598861 0.5737891287437789 0.7542245879062292 0.388890433864891 -0.4125567848243815 -0.8237482198728846 0.388890433864891 -0.4125567848243815 -0.8237482198728846 0.388890433864891 -0.4125567848243815 -0.8237482198728846 -0.388890433864891 0.4125567848243815 0.8237482198728846 -0.388890433864891 0.4125567848243815 0.8237482198728846 -0.388890433864891 0.4125567848243815 0.8237482198728846 0.4873398670902303 -0.15223001240755 -0.859840611547788 0.4873398670902303 -0.15223001240755 -0.859840611547788 0.4873398670902303 -0.15223001240755 -0.859840611547788 -0.4873398670902303 0.15223001240755 0.859840611547788 -0.4873398670902303 0.15223001240755 0.859840611547788 -0.4873398670902303 0.15223001240755 0.859840611547788 -0.07416162129463071 -0.8469389554300403 -0.5264926017543115 -0.07416162129463071 -0.8469389554300403 -0.5264926017543115 -0.07416162129463071 -0.8469389554300403 -0.5264926017543115 0.07416162129463071 0.8469389554300403 0.5264926017543115 0.07416162129463071 0.8469389554300403 0.5264926017543115 0.07416162129463071 0.8469389554300403 0.5264926017543115 -0.4089564911243532 -0.4190468882605481 -0.8106505374120272 -0.4089564911243532 -0.4190468882605481 -0.8106505374120272 -0.4089564911243532 -0.4190468882605481 -0.8106505374120272 0.4089564911243532 0.4190468882605481 0.8106505374120272 0.4089564911243532 0.4190468882605481 0.8106505374120272 0.4089564911243532 0.4190468882605481 0.8106505374120272 0.08694521327775925 -0.8389710833361307 -0.5371853043539856 0.08694521327775925 -0.8389710833361307 -0.5371853043539856 0.08694521327775925 -0.8389710833361307 -0.5371853043539856 -0.08694521327775925 0.8389710833361307 0.5371853043539856 -0.08694521327775925 0.8389710833361307 0.5371853043539856 -0.08694521327775925 0.8389710833361307 0.5371853043539856 -0.8128885962718528 -0.5823167761534259 -0.01092255745957262 -0.8128885962718528 -0.5823167761534259 -0.01092255745957262 -0.8128885962718528 -0.5823167761534259 -0.01092255745957262 -0.8128885962718528 -0.5823167761534259 -0.01092255745957262 -0.8128885962718528 -0.5823167761534259 -0.01092255745957262 0.8128885962718528 0.5823167761534259 0.01092255745957262 0.8128885962718528 0.5823167761534259 0.01092255745957262 0.8128885962718528 0.5823167761534259 0.01092255745957262 0.8128885962718528 0.5823167761534259 0.01092255745957262 0.8128885962718528 0.5823167761534259 0.01092255745957262 0.08694521327444842 -0.8389710833349391 -0.5371853043563827 0.08694521327444842 -0.8389710833349391 -0.5371853043563827 0.08694521327444842 -0.8389710833349391 -0.5371853043563827 -0.08694521327444842 0.8389710833349391 0.5371853043563827 -0.08694521327444842 0.8389710833349391 0.5371853043563827 -0.08694521327444842 0.8389710833349391 0.5371853043563827 0.3468171750331081 -0.4967999455750955 -0.7955549391328274 0.3468171750331081 -0.4967999455750955 -0.7955549391328274 0.3468171750331081 -0.4967999455750955 -0.7955549391328274 -0.3468171750331081 0.4967999455750955 0.7955549391328274 -0.3468171750331081 0.4967999455750955 0.7955549391328274 -0.3468171750331081 0.4967999455750955 0.7955549391328274 -0.07416162129575327 -0.8469389554316926 -0.5264926017514956 -0.07416162129575327 -0.8469389554316926 -0.5264926017514956 -0.07416162129575327 -0.8469389554316926 -0.5264926017514956 0.07416162129575327 0.8469389554316926 0.5264926017514956 0.07416162129575327 0.8469389554316926 0.5264926017514956 0.07416162129575327 0.8469389554316926 0.5264926017514956 -0.003944645890976535 0.4305632393673245 0.9025517916852812 -0.003944645890976535 0.4305632393673245 0.9025517916852812 -0.003944645890976535 0.4305632393673245 0.9025517916852812 0.003944645890976535 -0.4305632393673245 -0.9025517916852812 0.003944645890976535 -0.4305632393673245 -0.9025517916852812 0.003944645890976535 -0.4305632393673245 -0.9025517916852812 -0.4648693942298666 -0.2980273915279571 -0.8337122526431998 -0.4648693942298666 -0.2980273915279571 -0.8337122526431998 -0.4648693942298666 -0.2980273915279571 -0.8337122526431998 0.4648693942298666 0.2980273915279571 0.8337122526431998 0.4648693942298666 0.2980273915279571 0.8337122526431998 0.4648693942298666 0.2980273915279571 0.8337122526431998 0.0869452132758711 -0.838971083338369 -0.5371853043507958 0.0869452132758711 -0.838971083338369 -0.5371853043507958 0.0869452132758711 -0.838971083338369 -0.5371853043507958 -0.0869452132758711 0.838971083338369 0.5371853043507958 -0.0869452132758711 0.838971083338369 0.5371853043507958 -0.0869452132758711 0.838971083338369 0.5371853043507958 0.8170038792363683 0.5765303811562413 0.01083424739265359 0.8170038792363683 0.5765303811562413 0.01083424739265359 0.8170038792363683 0.5765303811562413 0.01083424739265359 -0.8170038792363683 -0.5765303811562413 -0.01083424739265359 -0.8170038792363683 -0.5765303811562413 -0.01083424739265359 -0.8170038792363683 -0.5765303811562413 -0.01083424739265359 0.9317203849017545 -0.3631494768362023 -0.004425136395566664 0.9317203849017545 -0.3631494768362023 -0.004425136395566664 0.9317203849017545 -0.3631494768362023 -0.004425136395566664 -0.9317203849017545 0.3631494768362023 0.004425136395566664 -0.9317203849017545 0.3631494768362023 0.004425136395566664 -0.9317203849017545 0.3631494768362023 0.004425136395566664 -0.07416162129561343 -0.8469389554336554 -0.5264926017483577 -0.07416162129561343 -0.8469389554336554 -0.5264926017483577 -0.07416162129561343 -0.8469389554336554 -0.5264926017483577 0.07416162129561343 0.8469389554336554 0.5264926017483577 0.07416162129561343 0.8469389554336554 0.5264926017483577 0.07416162129561343 0.8469389554336554 0.5264926017483577 -0.4681471400068965 0.1577824734655593 0.8694497951983505 -0.4681471400068965 0.1577824734655593 0.8694497951983505 -0.4681471400068965 0.1577824734655593 0.8694497951983505 0.4681471400068965 -0.1577824734655593 -0.8694497951983505 0.4681471400068965 -0.1577824734655593 -0.8694497951983505 0.4681471400068965 -0.1577824734655593 -0.8694497951983505 -0.003944645898776939 0.4305632393730609 0.9025517916825105 -0.003944645898776939 0.4305632393730609 0.9025517916825105 -0.003944645898776939 0.4305632393730609 0.9025517916825105 0.003944645898776939 -0.4305632393730609 -0.9025517916825105 0.003944645898776939 -0.4305632393730609 -0.9025517916825105 0.003944645898776939 -0.4305632393730609 -0.9025517916825105 0.3580552907531184 0.5676024610614668 0.7413662084022078 0.3580552907531184 0.5676024610614668 0.7413662084022078 0.3580552907531184 0.5676024610614668 0.7413662084022078 -0.3580552907531184 -0.5676024610614668 -0.7413662084022078 -0.3580552907531184 -0.5676024610614668 -0.7413662084022078 -0.3580552907531184 -0.5676024610614668 -0.7413662084022078 -0.935023569736461 0.3545597538872618 0.004278429699084538 -0.935023569736461 0.3545597538872618 0.004278429699084538 -0.935023569736461 0.3545597538872618 0.004278429699084538 0.935023569736461 -0.3545597538872618 -0.004278429699084538 0.935023569736461 -0.3545597538872618 -0.004278429699084538 0.935023569736461 -0.3545597538872618 -0.004278429699084538 -0.4255476826585561 0.2918787366243764 0.8565722228104826 -0.4255476826585561 0.2918787366243764 0.8565722228104826 -0.4255476826585561 0.2918787366243764 0.8565722228104826 0.4255476826585561 -0.2918787366243764 -0.8565722228104826 0.4255476826585561 -0.2918787366243764 -0.8565722228104826 0.4255476826585561 -0.2918787366243764 -0.8565722228104826 0.4467455028852737 0.2976916487026159 0.8436813011703546 0.4467455028852737 0.2976916487026159 0.8436813011703546 0.4467455028852737 0.2976916487026159 0.8436813011703546 -0.4467455028852737 -0.2976916487026159 -0.8436813011703546 -0.4467455028852737 -0.2976916487026159 -0.8436813011703546 -0.4467455028852737 -0.2976916487026159 -0.8436813011703546 0.3791842708160554 0.4943849499431414 0.7821782469715035 0.3791842708160554 0.4943849499431414 0.7821782469715035 0.3791842708160554 0.4943849499431414 0.7821782469715035 -0.3791842708160554 -0.4943849499431414 -0.7821782469715035 -0.3791842708160554 -0.4943849499431414 -0.7821782469715035 -0.3791842708160554 -0.4943849499431414 -0.7821782469715035 -0.389926703870648 0.4797055854161894 0.786027809259369 -0.389926703870648 0.4797055854161894 0.786027809259369 -0.389926703870648 0.4797055854161894 0.786027809259369 0.389926703870648 -0.4797055854161894 -0.786027809259369 0.389926703870648 -0.4797055854161894 -0.786027809259369 0.389926703870648 -0.4797055854161894 -0.786027809259369 -0.4090570225452896 0.3920708444395545 0.8239859253936543 -0.4090570225452896 0.3920708444395545 0.8239859253936543 -0.4090570225452896 0.3920708444395545 0.8239859253936543 0.4090570225452896 -0.3920708444395545 -0.8239859253936543 0.4090570225452896 -0.3920708444395545 -0.8239859253936543 0.4090570225452896 -0.3920708444395545 -0.8239859253936543 0.3993504144059647 0.4086330029101905 0.8206938012720606 0.3993504144059647 0.4086330029101905 0.8206938012720606 0.3993504144059647 0.4086330029101905 0.8206938012720606 -0.3993504144059647 -0.4086330029101905 -0.8206938012720606 -0.3993504144059647 -0.4086330029101905 -0.8206938012720606 -0.3993504144059647 -0.4086330029101905 -0.8206938012720606</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"184\" source=\"#ID47\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID45\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID43\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID44\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID45\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8 12 13 14 18 19 20 24 25 26 30 31 32 36 37 38 42 43 44 48 49 50 54 55 56 60 61 62 61 60 63 61 63 64 70 71 72 76 77 78 82 83 84 88 89 90 94 95 96 100 101 102 106 107 108 112 113 114 118 119 120 124 125 126 130 131 132 136 137 138 142 143 144 148 149 150 154 155 156 160 161 162 166 167 168 172 173 174 178 179 180</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID45\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 15 16 17 21 22 23 27 28 29 33 34 35 39 40 41 45 46 47 51 52 53 57 58 59 65 66 67 66 68 67 69 67 68 73 74 75 79 80 81 85 86 87 91 92 93 97 98 99 103 104 105 109 110 111 115 116 117 121 122 123 127 128 129 133 134 135 139 140 141 145 146 147 151 152 153 157 158 159 163 164 165 169 170 171 175 176 177 181 182 183</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID50\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID56\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID62\">2935.156100589834 571.0511476070385 57.35316370584735 2536.985314320365 1339.688611159662 95.59736305635533 2434.102613395738 1338.587690150916 111.7249192413945 2974.101496091508 670.0941438594784 48.16375609956094 2974.101496091508 670.0941438594784 48.16375609956094 2935.156100589834 571.0511476070385 57.35316370584735 2536.985314320365 1339.688611159662 95.59736305635533 2434.102613395738 1338.587690150916 111.7249192413945</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID62\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID57\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID63\">0.1544691169522736 0.03088371026222315 0.9875148041160821 0.1544691169522736 0.03088371026222315 0.9875148041160821 0.1544691169522736 0.03088371026222315 0.9875148041160821 0.1544691169522736 0.03088371026222315 0.9875148041160821 -0.1544691169522736 -0.03088371026222315 -0.9875148041160821 -0.1544691169522736 -0.03088371026222315 -0.9875148041160821 -0.1544691169522736 -0.03088371026222315 -0.9875148041160821 -0.1544691169522736 -0.03088371026222315 -0.9875148041160821</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID63\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID59\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID64\">-40.1125424498577 -3.210740270062982 -40.94912901141711 -4.870197194328273 -40.10708766302368 -4.976786218184802 -40.95388773609237 -3.329508861834122</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID64\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID58\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID56\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID57\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID58\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID59\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID58\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID65\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID71\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID75\">2887.294587055877 451.9769069479696 31.94445491521424 2434.102613395738 1338.587690150916 111.7249192413945 2307.694137453637 1339.835262421816 94.83972410203319 2935.156100589834 571.0511476070385 57.35316370584735 2935.156100589834 571.0511476070385 57.35316370584735 2887.294587055877 451.9769069479696 31.94445491521424 2434.102613395738 1338.587690150916 111.7249192413945 2307.694137453637 1339.835262421816 94.83972410203319</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID75\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID72\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID76\">-0.1322952528741332 -0.1557081871196291 0.9789039414216739 -0.1322952528741332 -0.1557081871196291 0.9789039414216739 -0.1322952528741332 -0.1557081871196291 0.9789039414216739 -0.1322952528741332 -0.1557081871196291 0.9789039414216739 0.1322952528741332 0.1557081871196291 -0.9789039414216739 0.1322952528741332 0.1557081871196291 -0.9789039414216739 0.1322952528741332 0.1557081871196291 -0.9789039414216739 0.1322952528741332 0.1557081871196291 -0.9789039414216739</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID76\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID74\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID77\">4.991379912276635 -2.260284818061015 5.925355053658908 -0.5213476559885442 4.990909498625072 -0.435278399180574 5.925761717250573 -2.099030749504403</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID77\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID73\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID71\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID72\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID73\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID74\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID73\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID78\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID79\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID83\">2839.43067972498 330.5024702798203 40.30883317592338 2307.694137453637 1339.835262421816 94.83972410203319 2181.278470831277 1338.689986767897 111.7281365472043 2887.294587055877 451.9769069479696 31.94445491521424 2887.294587055877 451.9769069479696 31.94445491521424 2839.43067972498 330.5024702798203 40.30883317592338 2307.694137453637 1339.835262421816 94.83972410203319 2181.278470831277 1338.689986767897 111.7281365472043</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID83\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID80\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID84\">0.1322570608307792 0.01613066422110023 0.9910841899315062 0.1322570608307792 0.01613066422110023 0.9910841899315062 0.1322570608307792 0.01613066422110023 0.9910841899315062 0.1322570608307792 0.01613066422110023 0.9910841899315062 -0.1322570608307792 -0.01613066422110023 -0.9910841899315062 -0.1322570608307792 -0.01613066422110023 -0.9910841899315062 -0.1322570608307792 -0.01613066422110023 -0.9910841899315062 -0.1322570608307792 -0.01613066422110023 -0.9910841899315062</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID84\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID82\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID85\">-38.95864040733976 -2.902162055202414 -39.98104260140588 -5.090985401235677 -38.95026513859079 -5.221928342330211 -39.98841826537372 -3.04808777843286</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID85\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID81\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID79\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID80\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID81\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID82\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID81\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID86\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID87\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID91\">2791.568546791304 211.4266731292753 14.90001409844786 2181.278470831277 1338.689986767897 111.7281365472043 2054.868358968224 1339.937559700715 94.84294142865997 2839.43067972498 330.5024702798203 40.30883317592338 2839.43067972498 330.5024702798203 40.30883317592338 2791.568546791304 211.4266731292753 14.90001409844786 2181.278470831277 1338.689986767897 111.7281365472043 2054.868358968224 1339.937559700715 94.84294142865997</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID91\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID88\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID92\">-0.1322935836581274 -0.1557071253871178 0.9789043358911893 -0.1322935836581274 -0.1557071253871178 0.9789043358911893 -0.1322935836581274 -0.1557071253871178 0.9789043358911893 -0.1322935836581274 -0.1557071253871178 0.9789043358911893 0.1322935836581274 0.1557071253871178 -0.9789043358911893 0.1322935836581274 0.1557071253871178 -0.9789043358911893 0.1322935836581274 0.1557071253871178 -0.9789043358911893 0.1322935836581274 0.1557071253871178 -0.9789043358911893</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID92\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID90\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID93\">4.005520763351321 -2.611773411535691 4.939380349821484 -0.3781724146703991 4.004922952862927 -0.2921020334826103 4.939914420939729 -2.450517266223338</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID93\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID89\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID87\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID88\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID89\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID90\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID89\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID94\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID95\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID99\">2743.704655664379 89.95227718024034 23.26439524435409 2054.868358968224 1339.937559700715 94.84294142865997 1928.45273514296 1338.792284029483 111.7313538732858 2791.568546791304 211.4266731292753 14.90001409844786 2791.568546791304 211.4266731292753 14.90001409844786 2743.704655664379 89.95227718024034 23.26439524435409 2054.868358968224 1339.937559700715 94.84294142865997 1928.45273514296 1338.792284029483 111.7313538732858</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID99\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID96\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID100\">0.1322571044952524 0.01613069317174029 0.9910841836334243 0.1322571044952524 0.01613069317174029 0.9910841836334243 0.1322571044952524 0.01613069317174029 0.9910841836334243 0.1322571044952524 0.01613069317174029 0.9910841836334243 -0.1322571044952524 -0.01613069317174029 -0.9910841836334243 -0.1322571044952524 -0.01613069317174029 -0.9910841836334243 -0.1322571044952524 -0.01613069317174029 -0.9910841836334243 -0.1322571044952524 -0.01613069317174029 -0.9910841836334243</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID100\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID98\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID101\">-36.87164408416072 -2.59368864041527 -37.89204677361968 -5.336235927957644 -36.86126965778465 -5.467178824155513 -37.90142159588998 -2.739614313481604</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID101\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID97\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID95\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID96\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID97\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID98\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID97\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID102\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID103\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID107\">2695.6364153675 -29.64378010013593 -2.181286771788109 1928.45273514296 1338.792284029483 111.7313538732858 1801.496742128236 1340.040077790152 94.84616632559028 2743.704655664379 89.95227718024034 23.26439524435409 2743.704655664379 89.95227718024034 23.26439524435409 2695.6364153675 -29.64378010013593 -2.181286771788109 1928.45273514296 1338.792284029483 111.7313538732858 1801.496742128236 1340.040077790152 94.84616632559028</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID107\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID104\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID108\">-0.1317389005384242 -0.1553542938701487 0.9790351911249334 -0.1317389005384242 -0.1553542938701487 0.9790351911249334 -0.1317389005384242 -0.1553542938701487 0.9790351911249334 -0.1317389005384242 -0.1553542938701487 0.9790351911249334 0.1317389005384242 0.1553542938701487 -0.9790351911249334 0.1317389005384242 0.1553542938701487 -0.9790351911249334 0.1317389005384242 0.1553542938701487 -0.9790351911249334 0.1317389005384242 0.1553542938701487 -0.9790351911249334</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID108\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID106\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID109\">1.959384927690319 -2.908626175502023 2.897112128319492 -0.1796641804592105 1.958703102331604 -0.0932186137440093 2.897733797896976 -2.746675230822981</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID109\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID105\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID103\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID104\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID105\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID106\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID105\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID110\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID111\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID115\">328.3030975114019 -30.30714391528659 14.70558944885568 2.70562751931277 631.204122817833 44.59672255832118 -36.96960834160586 529.2342118306481 54.34312134093091 433.7795101430464 -29.13446907877119 -2.181217492822498 433.7795101430464 -29.13446907877119 -2.181217492822498 328.3030975114019 -30.30714391528659 14.70558944885568 2.70562751931277 631.204122817833 44.59672255832118 -36.96960834160586 529.2342118306481 54.34312134093091</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID115\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID112\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID116\">0.1576433099194474 0.03299621433159886 0.9869446978820163 0.1576433099194474 0.03299621433159886 0.9869446978820163 0.1576433099194474 0.03299621433159886 0.9869446978820163 0.1576433099194474 0.03299621433159886 0.9869446978820163 -0.1576433099194474 -0.03299621433159886 -0.9869446978820163 -0.1576433099194474 -0.03299621433159886 -0.9869446978820163 -0.1576433099194474 -0.03299621433159886 -0.9869446978820163 -0.1576433099194474 -0.03299621433159886 -0.9869446978820163</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID116\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID114\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID117\">-17.06890990504867 -4.884376351371058 -17.92819062723687 -6.294519571632797 -17.06501333927101 -6.171840521338963 -17.93278913713267 -4.775128254317149</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID117\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID113\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID111\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID112\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID113\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID114\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID113\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID118\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID119\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID123\">433.7795101430464 -29.13446907877119 -2.181217492822498 43.19088581814583 731.1775105968743 68.6520233552319 2.70562751931277 631.204122817833 44.59672255832118 540.3248271251 -30.35488563317585 14.70558252169042 540.3248271251 -30.35488563317585 14.70558252169042 433.7795101430464 -29.13446907877119 -2.181217492822498 43.19088581814583 731.1775105968743 68.6520233552319 2.70562751931277 631.204122817833 44.59672255832118</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID123\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID120\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID124\">-0.1561472248958945 -0.1708497748307726 0.9728455163064613 -0.1561472248958945 -0.1708497748307726 0.9728455163064613 -0.1561472248958945 -0.1708497748307726 0.9728455163064613 -0.1561472248958945 -0.1708497748307726 0.9728455163064613 0.1561472248958945 0.1708497748307726 -0.9728455163064613 0.1561472248958945 0.1708497748307726 -0.9728455163064613 0.1561472248958945 0.1708497748307726 -0.9728455163064613 0.1561472248958945 0.1708497748307726 -0.9728455163064613</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID124\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID122\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID125\">-13.87840029050717 -1.363036449148545 -13.08867253509739 0.1298938341194278 -13.87951488878592 -0.005725816055001332 -13.08738712983945 -1.435418312607413</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID125\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID121\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID119\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID120\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID121\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID122\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID121\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID126\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID127\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID131\">540.3248271251 -30.35488563317585 14.70558252169042 83.29194675676536 833.2955932888697 58.91612927562221 43.19088581814583 731.1775105968743 68.6520233552319 646.3238685255863 -29.18232847884201 -2.181224438031677 646.3238685255863 -29.18232847884201 -2.181224438031677 540.3248271251 -30.35488563317585 14.70558252169042 83.29194675676536 833.2955932888697 58.91612927562221 43.19088581814583 731.1775105968743 68.6520233552319</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID131\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID128\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID132\">0.1568932855241041 0.03249695378078794 0.9870807692141619 0.1568932855241041 0.03249695378078794 0.9870807692141619 0.1568932855241041 0.03249695378078794 0.9870807692141619 0.1568932855241041 0.03249695378078794 0.9870807692141619 -0.1568932855241041 -0.03249695378078794 -0.9870807692141619 -0.1568932855241041 -0.03249695378078794 -0.9870807692141619 -0.1568932855241041 -0.03249695378078794 -0.9870807692141619 -0.1568932855241041 -0.03249695378078794 -0.9870807692141619</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID132\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID130\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID133\">-18.13471643722495 -4.657381644020098 -18.6923518041573 -6.31454061868353 -17.94108412093476 -6.201799148191515 -18.91165120437695 -4.565401637947304</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID133\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID129\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID127\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID128\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID129\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID130\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID129\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID134\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID135\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID139\">646.3238685255863 -29.18232847884201 -2.181224438031677 123.3931814415151 933.0195399966526 82.95375112897614 83.29194675676536 833.2955932888697 58.91612927562221 752.3222445326057 -30.40262187651388 14.70557559435451 752.3222445326057 -30.40262187651388 14.70557559435451 646.3238685255863 -29.18232847884201 -2.181224438031677 123.3931814415151 933.0195399966526 82.95375112897614 83.29194675676536 833.2955932888697 58.91612927562221</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID139\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID136\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID140\">-0.1569246682141821 -0.1713422961384721 0.972633777975999 -0.1569246682141821 -0.1713422961384721 0.972633777975999 -0.1569246682141821 -0.1713422961384721 0.972633777975999 -0.1569246682141821 -0.1713422961384721 0.972633777975999 0.1569246682141821 0.1713422961384721 -0.972633777975999 0.1569246682141821 0.1713422961384721 -0.972633777975999 0.1569246682141821 0.1713422961384721 -0.972633777975999 0.1569246682141821 0.1713422961384721 -0.972633777975999</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID140\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID138\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID141\">-12.85399948192331 -1.502121996081938 -12.06858680462796 0.4061630516819736 -12.8554827585298 0.2706804183143332 -12.06692992562991 -1.574127795822898</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID141\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID137\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID135\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID136\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID137\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID138\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID137\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID142\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID143\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID147\">752.3222445326057 -30.40262187651388 14.70557559435451 163.4942423802514 1035.137622688488 73.21785704936031 123.3931814415151 933.0195399966526 82.95375112897614 858.3212859331015 -29.2300647221839 -2.181231365372355 858.3212859331015 -29.2300647221839 -2.181231365372355 752.3222445326057 -30.40262187651388 14.70557559435451 163.4942423802514 1035.137622688488 73.21785704936031 123.3931814415151 933.0195399966526 82.95375112897614</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID147\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID144\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID148\">0.1568932855240705 0.03249695378076577 0.987080769214168 0.1568932855240705 0.03249695378076577 0.987080769214168 0.1568932855240705 0.03249695378076577 0.987080769214168 0.1568932855240705 0.03249695378076577 0.987080769214168 -0.1568932855240705 -0.03249695378076577 -0.987080769214168 -0.1568932855240705 -0.03249695378076577 -0.987080769214168 -0.1568932855240705 -0.03249695378076577 -0.987080769214168 -0.1568932855240705 -0.03249695378076577 -0.987080769214168</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID148\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID146\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID149\">-20.12975889637969 -4.458955413054719 -20.99034893372511 -6.798199608231476 -20.12301747480768 -6.675720049282532 -20.99779670851424 -4.349166626876643</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID149\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID145\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID143\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID144\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID145\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID146\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID145\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID150\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID151\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID155\">858.3212859331015 -29.2300647221839 -2.181231365372355 203.595477065001 1134.861569396186 97.25547890270786 163.4942423802514 1035.137622688488 73.21785704936031 964.3196619400876 -30.45035811985804 14.70556866701531 964.3196619400876 -30.45035811985804 14.70556866701531 858.3212859331015 -29.2300647221839 -2.181231365372355 203.595477065001 1134.861569396186 97.25547890270786 163.4942423802514 1035.137622688488 73.21785704936031</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID155\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID152\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID156\">-0.1569246682142583 -0.17134229613852 0.9726337779759783 -0.1569246682142583 -0.17134229613852 0.9726337779759783 -0.1569246682142583 -0.17134229613852 0.9726337779759783 -0.1569246682142583 -0.17134229613852 0.9726337779759783 0.1569246682142583 0.17134229613852 -0.9726337779759783 0.1569246682142583 0.17134229613852 -0.9726337779759783 0.1569246682142583 0.17134229613852 -0.9726337779759783 0.1569246682142583 0.17134229613852 -0.9726337779759783</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID156\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID154\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID157\">-11.92059745383946 -1.656355563063549 -11.13553198353835 0.666908993091778 -11.92242793743979 0.5314263597242732 -11.1335278975463 -1.728361362804489</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID157\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID153\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID151\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID152\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID153\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID154\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID153\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID158\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID159\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID163\">964.3196619400876 -30.45035811985804 14.70556866701531 243.6965380035817 1236.979652088198 87.51958482310226 203.595477065001 1134.861569396186 97.25547890270786 1070.318703340531 -29.27780096552579 -2.181238292708031 1070.318703340531 -29.27780096552579 -2.181238292708031 964.3196619400876 -30.45035811985804 14.70556866701531 243.6965380035817 1236.979652088198 87.51958482310226 203.595477065001 1134.861569396186 97.25547890270786</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID163\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID160\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID164\">0.1568932855241375 0.03249695378081048 0.9870807692141559 0.1568932855241375 0.03249695378081048 0.9870807692141559 0.1568932855241375 0.03249695378081048 0.9870807692141559 0.1568932855241375 0.03249695378081048 0.9870807692141559 -0.1568932855241375 -0.03249695378081048 -0.9870807692141559 -0.1568932855241375 -0.03249695378081048 -0.9870807692141559 -0.1568932855241375 -0.03249695378081048 -0.9870807692141559 -0.1568932855241375 -0.03249695378081048 -0.9870807692141559</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID164\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID162\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID165\">-22.17642320556012 -4.470739826799951 -22.8153908081819 -6.555652012866615 -22.17043909726585 -6.464575266230554 -22.82189329180754 -4.389099928633461</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID165\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID161\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID159\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID160\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID161\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID162\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID161\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID166\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID167\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID171\">1205.761577122515 -30.50472657663431 14.70559023248791 447.0653154386429 1340.345058404985 94.84623491600598 311.6219038832552 1339.179131313643 111.7330433298648 1341.204988677906 -29.3387994852958 -2.181218181371605 1341.204988677906 -29.3387994852958 -2.181218181371605 1205.761577122515 -30.50472657663431 14.70559023248791 447.0653154386429 1340.345058404985 94.84623491600598 311.6219038832552 1339.179131313643 111.7330433298648</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID171\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID168\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID172\">0.1236251225772033 0.01041135979779354 0.9922743736764204 0.1236251225772033 0.01041135979779354 0.9922743736764204 0.1236251225772033 0.01041135979779354 0.9922743736764204 0.1236251225772033 0.01041135979779354 0.9922743736764204 -0.1236251225772033 -0.01041135979779354 -0.9922743736764204 -0.1236251225772033 -0.01041135979779354 -0.9922743736764204 -0.1236251225772033 -0.01041135979779354 -0.9922743736764204 -0.1236251225772033 -0.01041135979779354 -0.9922743736764204</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID172\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID170\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID173\">-24.2110767664453 -4.362148096541525 -24.91273958639477 -6.298947915165218 -24.20324872277229 -6.389147347751888 -24.92056763006778 -4.271948663954849</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID173\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID169\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID167\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID168\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID169\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID170\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID169\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID174\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID175\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID179\">1341.204988677906 -29.3387994852958 -2.181218181371605 582.5081892558455 1339.118134829194 111.7330350345385 447.0653154386429 1340.345058404985 94.84623491600598 1476.64786249511 -30.56572306108478 14.70558193716067 1476.64786249511 -30.56572306108478 14.70558193716067 1341.204988677906 -29.3387994852958 -2.181218181371605 582.5081892558455 1339.118134829194 111.7330350345385 447.0653154386429 1340.345058404985 94.84623491600598</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID179\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID176\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID180\">-0.1236565413644083 -0.1502094990385426 0.980890496526693 -0.1236565413644083 -0.1502094990385426 0.980890496526693 -0.1236565413644083 -0.1502094990385426 0.980890496526693 -0.1236565413644083 -0.1502094990385426 0.980890496526693 0.1236565413644083 0.1502094990385426 -0.980890496526693 0.1236565413644083 0.1502094990385426 -0.980890496526693 0.1236565413644083 0.1502094990385426 -0.980890496526693 0.1236565413644083 0.1502094990385426 -0.980890496526693</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID180\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID178\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID181\">-8.016312605813218 -1.980421355472067 -7.016312605842659 0.7427698373810243 -8.016312606171573 0.8350088739316899 -7.01631260548429 -2.072660392022731</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID181\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID177\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID175\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID176\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID177\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID178\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID177\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID182\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID183\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID187\">1476.64786249511 -30.56572306108478 14.70558193716067 717.9516007764757 1340.284061897929 94.84622661907679 582.5081892558455 1339.118134829194 111.7330350345385 1612.091274015735 -29.39979599235608 -2.181226478301142 1612.091274015735 -29.39979599235608 -2.181226478301142 1476.64786249511 -30.56572306108478 14.70558193716067 717.9516007764757 1340.284061897929 94.84622661907679 582.5081892558455 1339.118134829194 111.7330350345385</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID187\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID184\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID188\">0.1236251226214283 0.01041135982707611 0.9922743736706032 0.1236251226214283 0.01041135982707611 0.9922743736706032 0.1236251226214283 0.01041135982707611 0.9922743736706032 0.1236251226214283 0.01041135982707611 0.9922743736706032 -0.1236251226214283 -0.01041135982707611 -0.9922743736706032 -0.1236251226214283 -0.01041135982707611 -0.9922743736706032 -0.1236251226214283 -0.01041135982707611 -0.9922743736706032 -0.1236251226214283 -0.01041135982707611 -0.9922743736706032</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID188\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID186\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID189\">-26.0078695239367 -3.931611915950456 -26.94079393351791 -6.476695382235154 -26.00890612109096 -6.595435582246013 -26.93975733636358 -3.812871715939593</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID189\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID185\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID183\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID184\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID185\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID186\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID185\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID190\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID191\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID195\">1612.091274015735 -29.39979599235608 -2.181226478301142 853.3944745589288 1339.057138338844 111.7330261813141 717.9516007764757 1340.284061897929 94.84622661907679 1747.53414779819 -30.62671955144674 14.70557308393575 1747.53414779819 -30.62671955144674 14.70557308393575 1612.091274015735 -29.39979599235608 -2.181226478301142 853.3944745589288 1339.057138338844 111.7330261813141 717.9516007764757 1340.284061897929 94.84622661907679</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID195\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID192\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID196\">-0.1236565374357447 -0.1502094965361126 0.9808904974051741 -0.1236565374357447 -0.1502094965361126 0.9808904974051741 -0.1236565374357447 -0.1502094965361126 0.9808904974051741 -0.1236565374357447 -0.1502094965361126 0.9808904974051741 0.1236565374357447 0.1502094965361126 -0.9808904974051741 0.1236565374357447 0.1502094965361126 -0.9808904974051741 0.1236565374357447 0.1502094965361126 -0.9808904974051741 0.1236565374357447 0.1502094965361126 -0.9808904974051741</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID196\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID194\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID197\">-5.893529594857148 -2.166217949348685 -4.893529595491263 0.556973243477483 -5.893529594862466 0.6492122800667974 -4.893529595485965 -2.258456985938011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID197\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID193\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID191\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID192\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID193\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID194\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID193\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID198\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID199\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID203\">1747.53414779819 -30.62671955144674 14.70557308393575 988.8378861143156 1340.223065390871 94.84621832214702 853.3944745589288 1339.057138338844 111.7330261813141 1882.977559353575 -29.46079249940499 -2.181234775231928 1882.977559353575 -29.46079249940499 -2.181234775231928 1747.53414779819 -30.62671955144674 14.70557308393575 988.8378861143156 1340.223065390871 94.84621832214702 853.3944745589288 1339.057138338844 111.7330261813141</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID203\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID200\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID204\">0.1236251186042975 0.0104113571672328 0.9922743741989963 0.1236251186042975 0.0104113571672328 0.9922743741989963 0.1236251186042975 0.0104113571672328 0.9922743741989963 0.1236251186042975 0.0104113571672328 0.9922743741989963 -0.1236251186042975 -0.0104113571672328 -0.9922743741989963 -0.1236251186042975 -0.0104113571672328 -0.9922743741989963 -0.1236251186042975 -0.0104113571672328 -0.9922743741989963 -0.1236251186042975 -0.0104113571672328 -0.9922743741989963</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID204\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID202\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID205\">-27.89724933811754 -3.518527764540174 -28.98817784245193 -6.529830144220044 -27.88507322849843 -6.670070635686012 -29.00035395207113 -3.378287273074232</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID205\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID201\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID199\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID200\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID201\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID202\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID201\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID206\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID207\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID211\">1882.977559353575 -29.46079249940499 -2.181234775231928 1124.280759931518 1338.996141854391 111.7330178859868 988.8378861143156 1340.223065390871 94.84621832214702 2018.420433170777 -30.68771603589676 14.70556478860863 2018.420433170777 -30.68771603589676 14.70556478860863 1882.977559353575 -29.46079249940499 -2.181234775231928 1124.280759931518 1338.996141854391 111.7330178859868 988.8378861143156 1340.223065390871 94.84621832214702</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID211\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID208\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID212\">-0.1236565373915259 -0.1502094965079467 0.980890497415062 -0.1236565373915259 -0.1502094965079467 0.980890497415062 -0.1236565373915259 -0.1502094965079467 0.980890497415062 -0.1236565373915259 -0.1502094965079467 0.980890497415062 0.1236565373915259 0.1502094965079467 -0.980890497415062 0.1236565373915259 0.1502094965079467 -0.980890497415062 0.1236565373915259 0.1502094965079467 -0.980890497415062 0.1236565373915259 0.1502094965079467 -0.980890497415062</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID212\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID210\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID213\">-3.929019729521578 -2.351875697169684 -2.929019729792858 0.3713154956690767 -3.929019729522965 0.4635545322459149 -2.929019729791534 -2.444114733746541</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID213\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID209\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID207\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID208\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID209\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID210\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID209\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID214\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID215\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID219\">2018.420433170777 -30.68771603589676 14.70556478860863 1259.724171452147 1340.162068923119 94.84620947052599 1124.280759931518 1338.996141854391 111.7330178859868 2153.863844691413 -29.52178896716123 -2.181243626851483 2153.863844691413 -29.52178896716123 -2.181243626851483 2018.420433170777 -30.68771603589676 14.70556478860863 1259.724171452147 1340.162068923119 94.84620947052599 1124.280759931518 1338.996141854391 111.7330178859868</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID219\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID216\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID220\">0.1236251226214195 0.01041135982707061 0.9922743736706043 0.1236251226214195 0.01041135982707061 0.9922743736706043 0.1236251226214195 0.01041135982707061 0.9922743736706043 0.1236251226214195 0.01041135982707061 0.9922743736706043 -0.1236251226214195 -0.01041135982707061 -0.9922743736706043 -0.1236251226214195 -0.01041135982707061 -0.9922743736706043 -0.1236251226214195 -0.01041135982707061 -0.9922743736706043 -0.1236251226214195 -0.01041135982707061 -0.9922743736706043</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID220\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID218\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID221\">-31.26543181589453 -3.807399295615598 -31.89695379422123 -6.033587231795588 -31.07453793034895 -6.133856572492119 -32.08784767976688 -3.70712995491907</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID221\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID217\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID215\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID216\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID217\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID218\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID217\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID222\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID223\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID227\">2153.863844691413 -29.52178896716123 -2.181243626851483 1395.167045234599 1338.935145364034 111.733009032765 1259.724171452147 1340.162068923119 94.84620947052599 2289.306718473856 -30.74871252625667 14.70555593538722 2289.306718473856 -30.74871252625667 14.70555593538722 2153.863844691413 -29.52178896716123 -2.181243626851483 1395.167045234599 1338.935145364034 111.733009032765 1259.724171452147 1340.162068923119 94.84620947052599</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID227\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID224\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID228\">-0.123656537435752 -0.150209496536117 0.9808904974051727 -0.123656537435752 -0.150209496536117 0.9808904974051727 -0.123656537435752 -0.150209496536117 0.9808904974051727 -0.123656537435752 -0.150209496536117 0.9808904974051727 0.123656537435752 0.150209496536117 -0.9808904974051727 0.123656537435752 0.150209496536117 -0.9808904974051727 0.123656537435752 0.150209496536117 -0.9808904974051727 0.123656537435752 0.150209496536117 -0.9808904974051727</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID228\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID226\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID229\">-1.964509864736669 -2.537533445005219 -0.9645098653708928 0.1856577478209418 -1.964509864742084 0.2778967844102565 -0.9645098653655921 -2.629772481594544</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID229\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID225\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID223\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID224\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID225\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID226\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID225\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID230\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID231\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID235\">2289.306718473856 -30.74871252625667 14.70555593538722 1530.610456729357 1340.101072376637 94.84620117080283 1395.167045234599 1338.935145364034 111.733009032765 2422.586352226199 -26.26821226010611 -1.946449859629411 2422.586352226199 -26.26821226010611 -1.946449859629411 2289.306718473856 -30.74871252625667 14.70555593538722 1530.610456729357 1340.101072376637 94.84620117080283 1395.167045234599 1338.935145364034 111.733009032765</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID235\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID232\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID236\">0.123625118681433 0.01041135721830611 0.9922743741888503 0.123625118681433 0.01041135721830611 0.9922743741888503 0.123625118681433 0.01041135721830611 0.9922743741888503 0.123625118681433 0.01041135721830611 0.9922743741888503 -0.123625118681433 -0.01041135721830611 -0.9922743741888503 -0.123625118681433 -0.01041135721830611 -0.9922743741888503 -0.123625118681433 -0.01041135721830611 -0.9922743741888503 -0.123625118681433 -0.01041135721830611 -0.9922743741888503</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID236\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID234\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID237\">-33.01760053241161 -3.137839713031076 -33.97959468110081 -5.793056769090219 -33.00693976022883 -5.916713919100782 -33.99022965469503 -3.020907313454961</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID237\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID233\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID231\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID232\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID233\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID234\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID233\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID238\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID239\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID243\">2422.586352226199 -26.26821226010611 -1.946449859629411 1666.053330572433 1338.874148856792 111.7330007383803 1530.610456729357 1340.101072376637 94.84620117080283 2560.193003811689 -30.80970903348975 14.70554764100234 2560.193003811689 -30.80970903348975 14.70554764100234 2422.586352226199 -26.26821226010611 -1.946449859629411 1666.053330572433 1338.874148856792 111.7330007383803 1530.610456729357 1340.101072376637 94.84620117080283</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID243\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID240\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID244\">-0.1236565373768597 -0.1502094964986049 0.9808904974183413 -0.1236565373768597 -0.1502094964986049 0.9808904974183413 -0.1236565373768597 -0.1502094964986049 0.9808904974183413 -0.1236565373768597 -0.1502094964986049 0.9808904974183413 0.1236565373768597 0.1502094964986049 -0.9808904974183413 0.1236565373768597 0.1502094964986049 -0.9808904974183413 0.1236565373768597 0.1502094964986049 -0.9808904974183413 0.1236565373768597 0.1502094964986049 -0.9808904974183413</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID244\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID242\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID245\">0 -2.716377978483536 0.9999999999999929 2.220446049250313e-016 -1.06581410364015e-014 0.09223903656745325 1.000000000000007 -2.815430229415653</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID245\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID241\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID239\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID240\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID241\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID242\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID241\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID246\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID247\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID251\">2560.193003811689 -30.80970903348975 14.70554764100234 1801.496742128236 1340.040077790152 94.84616632559028 1666.053330572433 1338.874148856792 111.7330007383803 2695.6364153675 -29.64378010013593 -2.181286771788109 2695.6364153675 -29.64378010013593 -2.181286771788109 2560.193003811689 -30.80970903348975 14.70554764100234 1801.496742128236 1340.040077790152 94.84616632559028 1666.053330572433 1338.874148856792 111.7330007383803</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID251\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID248\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID252\">0.1236253087912714 0.01041148309481897 0.9922743491827395 0.1236253087912714 0.01041148309481897 0.9922743491827395 0.1236253087912714 0.01041148309481897 0.9922743491827395 0.1236253087912714 0.01041148309481897 0.9922743491827395 -0.1236253087912714 -0.01041148309481897 -0.9922743491827395 -0.1236253087912714 -0.01041148309481897 -0.9922743491827395 -0.1236253087912714 -0.01041148309481897 -0.9922743491827395 -0.1236253087912714 -0.01041148309481897 -0.9922743491827395</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID252\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID250\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID253\">-34.86332014855459 -2.587855395760887 -35.95424873427445 -5.599157865253208 -34.85114405737258 -5.73939836124767 -35.9664248254565 -2.447614899766407</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID253\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID249\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID247\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID248\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID249\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID250\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID249\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID254\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID255\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID259\">1070.318703340531 -29.27780096552579 -2.181238292708031 311.6219038832552 1339.179131313643 111.7330433298648 243.6965380035817 1236.979652088198 87.51958482310226 1205.761577122515 -30.50472657663431 14.70559023248791 1205.761577122515 -30.50472657663431 14.70559023248791 1070.318703340531 -29.27780096552579 -2.181238292708031 311.6219038832552 1339.179131313643 111.7330433298648 243.6965380035817 1236.979652088198 87.51958482310226</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID259\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID256\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID260\">-0.1236566502399993 -0.1502095774715186 0.9808904707903174 -0.1236566502399993 -0.1502095774715186 0.9808904707903174 -0.1236566502399993 -0.1502095774715186 0.9808904707903174 -0.1236566502399993 -0.1502095774715186 0.9808904707903174 0.1236566502399993 0.1502095774715186 -0.9808904707903174 0.1236566502399993 0.1502095774715186 -0.9808904707903174 0.1236566502399993 0.1502095774715186 -0.9808904707903174 0.1236566502399993 0.1502095774715186 -0.9808904707903174</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID260\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID258\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID261\">-10.04177756393329 -1.800887343196476 -9.041776838803994 0.9223038609265453 -10.04177691282974 0.8019465402997368 -9.041777563410715 -1.893126392549254</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID261\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID257\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID255\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID256\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID257\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID258\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID257\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID262\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID265\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID268\">311.6219038832552 1339.179131313643 111.7330433298648 284.7856700816089 1339.189989640083 111.7333853280102 243.6965380035817 1236.979652088198 87.51958482310226 285.4262089490986 1339.189730468843 111.7333771650506</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID268\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID266\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID269\">-8.085901103518547e-005 -0.2304904938042088 0.9730745735696276 -8.085901103518547e-005 -0.2304904938042088 0.9730745735696276 -8.085901103518547e-005 -0.2304904938042088 0.9730745735696276 -8.085901103518547e-005 -0.2304904938042088 0.9730745735696276</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID269\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID267\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID265\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID266\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID267\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID270\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID273\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID275\">2409.26868122245 1319.455918772331 110.3690472411828 2409.261819979824 1319.466425093026 110.3698023967725</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID275\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID274\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID273\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID274\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID276\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID277\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID279\">2286.687769957514 1320.691040564141 93.48304417930478 2286.694584561848 1320.680597572746 93.482268351534 2286.695201985776 1320.679659939073 93.48217992914624</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID279\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID278\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID277\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID278\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID280\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID281\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID283\">2549.495696875265 1320.620245923012 93.48217874322063 2549.496384247909 1320.61918853213 93.48208031777028 2549.492625543923 1320.624944659616 93.48251113877836 2549.488032247064 1320.631978431634 93.48304413732637</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID283\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID282\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID281\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID282\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID284\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID287\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID289\">1528.446678986934 1343.415645630185 95.08100323774875 1530.610456729357 1340.101072376637 94.84620117080283</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID289\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID288\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID287\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID288\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID290\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID291\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID293\">311.6219049681071 1339.183958423305 111.7333853280595 285.4262089490986 1339.189730468843 111.7333771650506</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID293\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID292\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID291\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID292\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID296\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID297\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID300\">757.733595965874 -4.547473508864641e-013 2.039657374552917e-006 2.362412487855181e-009 0.03711634351998328 78.74015104148617 -9.094947017729282e-013 0.005066974173928429 1.70530256582424e-013 757.7335959682351 0.03204936934162106 78.74015308114218 757.7335959682351 0.03204936934162106 78.74015308114218 757.733595965874 -4.547473508864641e-013 2.039657374552917e-006 2.362412487855181e-009 0.03711634351998328 78.74015104148617 -9.094947017729282e-013 0.005066974173928429 1.70530256582424e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID300\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID298\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID301\">-6.687013236800474e-006 -0.9999999171421532 0.0004070269902126015 -6.687013236800474e-006 -0.9999999171421532 0.0004070269902126015 -6.687013236800474e-006 -0.9999999171421532 0.0004070269902126015 -6.687013236800474e-006 -0.9999999171421532 0.0004070269902126015 6.687013236800474e-006 0.9999999171421532 -0.0004070269902126015 6.687013236800474e-006 0.9999999171421532 -0.0004070269902126015 6.687013236800474e-006 0.9999999171421532 -0.0004070269902126015 6.687013236800474e-006 0.9999999171421532 -0.0004070269902126015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID301\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID299\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID297\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID298\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID299\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID299\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID302\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID303\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID307\">2001.227513347907 885.0285528202578 57.01842282421978 1916.141454327978 874.0156387872455 42.42442174945683 1915.734063864961 832.1195364096695 42.4244217494745 1928.174423707412 2111.488193474614 42.42442174892955 2001.227581306859 885.0355417302226 57.01842282421995 2001.628955310056 926.312910389503 57.01842282420199 2012.675851774317 2062.377563940336 57.01842282372076 2012.675851774317 2062.377563940336 57.01842282372076 2001.628955310056 926.312910389503 57.01842282420199 1928.174423707412 2111.488193474614 42.42442174892955 2001.227581306859 885.0355417302226 57.01842282421995 2001.227513347907 885.0285528202578 57.01842282421978 1916.141454327978 874.0156387872455 42.42442174945683 1915.734063864961 832.1195364096695 42.4244217494745</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID307\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID304\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID308\">-0.1692585120717139 0.001645840536627002 0.9855703157564141 -0.1692585120717139 0.001645840536627002 0.9855703157564141 -0.1692585120717139 0.001645840536627002 0.9855703157564141 -0.1692585120717139 0.001645840536627002 0.9855703157564141 -0.1692585120717139 0.001645840536627002 0.9855703157564141 -0.1692585120717139 0.001645840536627002 0.9855703157564141 -0.1692585120717139 0.001645840536627002 0.9855703157564141 0.1692585120717139 -0.001645840536627002 -0.9855703157564141 0.1692585120717139 -0.001645840536627002 -0.9855703157564141 0.1692585120717139 -0.001645840536627002 -0.9855703157564141 0.1692585120717139 -0.001645840536627002 -0.9855703157564141 0.1692585120717139 -0.001645840536627002 -0.9855703157564141 0.1692585120717139 -0.001645840536627002 -0.9855703157564141 0.1692585120717139 -0.001645840536627002 -0.9855703157564141</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID308\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID306\">\r\n\t\t\t\t\t<float_array count=\"14\" id=\"ID309\">4.855961001809668 -1.674588779994484 3.988176310999204 -1.701405117619849 3.987885784367109 -1.79678043857628 3.996757508610461 1.115667005567738 4.85596105027394 -1.674572869933805 4.856247286324834 -1.580606079213366 4.864125275418008 1.005613755347203</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID309\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID305\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID303\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID304\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID305\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID306\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 3 3 5 5 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID305\" />\r\n\t\t\t\t\t<p>7 8 9 8 10 9 10 11 9 9 11 12 13 12 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID310\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID311\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID315\">2086.721204090002 937.9518584159446 42.42442174942431 2001.628955310056 926.312910389503 57.01842282420199 2001.227581306859 885.0355417302226 57.01842282421995 2012.675851774317 2062.377563940336 57.01842282372076 2097.144733596013 2013.280946512916 42.43005209464883 2087.143392826321 981.3698176603896 42.42442174940629 2097.177334152296 2013.261997794636 42.42442174899588 2097.177334152296 2013.261997794636 42.42442174899588 2087.143392826321 981.3698176603896 42.42442174940629 2097.144733596013 2013.280946512916 42.43005209464883 2086.721204090002 937.9518584159446 42.42442174942431 2012.675851774317 2062.377563940336 57.01842282372076 2001.628955310056 926.312910389503 57.01842282420199 2001.227581306859 885.0355417302226 57.01842282421995</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID315\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID312\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID316\">0.169258314125272 -0.001645838610994811 0.9855703497542615 0.169258314125272 -0.001645838610994811 0.9855703497542615 0.169258314125272 -0.001645838610994811 0.9855703497542615 0.169258314125272 -0.001645838610994811 0.9855703497542615 0.169258314125272 -0.001645838610994811 0.9855703497542615 0.169258314125272 -0.001645838610994811 0.9855703497542615 0.169258314125272 -0.001645838610994811 0.9855703497542615 -0.169258314125272 0.001645838610994811 -0.9855703497542615 -0.169258314125272 0.001645838610994811 -0.9855703497542615 -0.169258314125272 0.001645838610994811 -0.9855703497542615 -0.169258314125272 0.001645838610994811 -0.9855703497542615 -0.169258314125272 0.001645838610994811 -0.9855703497542615 -0.169258314125272 0.001645838610994811 -0.9855703497542615 -0.169258314125272 0.001645838610994811 -0.9855703497542615</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID316\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID314\">\r\n\t\t\t\t\t<float_array count=\"14\" id=\"ID317\">-35.9078158444713 -4.76945186114536 -35.1210063531827 -4.71767433021766 -35.12159537746699 -4.633748818590569 -35.1047948142423 -7.027531048016766 -35.89216738240666 -6.955809643215122 -35.90719627415474 -4.857729640513329 -35.89247126690438 -6.955781962515978</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID317\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID313\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID311\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID312\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID313\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID314\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID313\" />\r\n\t\t\t\t\t<p>7 8 9 8 10 9 9 10 11 11 10 12 13 12 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID318\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID319\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID323\">2172.214645378227 990.8600320802418 57.0184228241942 2087.143392826321 981.3698176603896 42.42442174940629 2086.721204090002 937.9518584159446 42.42442174942431 2097.177334152296 2013.261997794636 42.42442174899588 2152.482243955016 1981.119831693104 51.97597527377138 2181.668311133843 1964.157442233321 57.01661784655266 2172.214721655259 990.8678764224139 57.01842282419466 2172.647292464746 1035.353529783617 57.01842282417471 2181.678748413408 1964.149948470945 57.01842282375714 2181.678762219194 1964.151368260368 57.01842282375566 2181.678762219194 1964.151368260368 57.01842282375566 2181.678748413408 1964.149948470945 57.01842282375714 2181.668311133843 1964.157442233321 57.01661784655266 2172.647292464746 1035.353529783617 57.01842282417471 2172.214721655259 990.8678764224139 57.01842282419466 2172.214645378227 990.8600320802418 57.0184228241942 2152.482243955016 1981.119831693104 51.97597527377138 2097.177334152296 2013.261997794636 42.42442174899588 2087.143392826321 981.3698176603896 42.42442174940629 2086.721204090002 937.9518584159446 42.42442174942431</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID323\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID320\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID324\">-0.1692585120717676 0.0016458405365979 0.985570315756405 -0.1692585120717676 0.0016458405365979 0.985570315756405 -0.1692585120717676 0.0016458405365979 0.985570315756405 -0.1692585120717676 0.0016458405365979 0.985570315756405 -0.1692585120717676 0.0016458405365979 0.985570315756405 -0.1692585120717676 0.0016458405365979 0.985570315756405 -0.1692585120717676 0.0016458405365979 0.985570315756405 -0.1692585120717676 0.0016458405365979 0.985570315756405 -0.1692585120717676 0.0016458405365979 0.985570315756405 -0.1692585120717676 0.0016458405365979 0.985570315756405 0.1692585120717676 -0.0016458405365979 -0.985570315756405 0.1692585120717676 -0.0016458405365979 -0.985570315756405 0.1692585120717676 -0.0016458405365979 -0.985570315756405 0.1692585120717676 -0.0016458405365979 -0.985570315756405 0.1692585120717676 -0.0016458405365979 -0.985570315756405 0.1692585120717676 -0.0016458405365979 -0.985570315756405 0.1692585120717676 -0.0016458405365979 -0.985570315756405 0.1692585120717676 -0.0016458405365979 -0.985570315756405 0.1692585120717676 -0.0016458405365979 -0.985570315756405 0.1692585120717676 -0.0016458405365979 -0.985570315756405</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID324\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID322\">\r\n\t\t\t\t\t<float_array count=\"20\" id=\"ID325\">6.964863088455147 -1.457603932517269 6.097089296194895 -1.480953877357419 6.096788216432788 -1.579793624811796 6.104244903173143 0.8681192771498298 6.671923798565977 0.796091113422412 6.971505055203711 0.7580796812943444 6.964863142851407 -1.457586075095761 6.965171626487237 -1.356315752397975 6.971612320835437 0.7580628378700713 6.971612330680888 0.7580660699802517</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID325\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID321\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID319\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID320\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID321\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID322\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 5 5 0 0 6 6 5 5 6 6 7 7 5 5 7 7 8 8 5 5 8 8 9 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID321\" />\r\n\t\t\t\t\t<p>10 11 12 11 13 12 13 14 12 14 15 12 12 15 16 16 15 17 17 15 18 19 18 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID326\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID327\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID331\">2257.70834431502 1043.784180422175 42.42442174943477 2172.647292464746 1035.353529783617 57.01842282417471 2172.214721655259 990.8678764224139 57.01842282419466 2181.678748413408 1964.149948470945 57.01842282375714 2258.151306717787 1089.338506948609 42.42442174941624 2266.179858350227 1914.996080379225 42.4244217490882 2266.179858350227 1914.996080379225 42.4244217490882 2258.151306717787 1089.338506948609 42.42442174941624 2181.678748413408 1964.149948470945 57.01842282375714 2257.70834431502 1043.784180422175 42.42442174943477 2172.647292464746 1035.353529783617 57.01842282417471 2172.214721655259 990.8678764224139 57.01842282419466</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID331\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID328\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID332\">0.1692583141246518 -0.00164583861096535 0.9855703497543681 0.1692583141246518 -0.00164583861096535 0.9855703497543681 0.1692583141246518 -0.00164583861096535 0.9855703497543681 0.1692583141246518 -0.00164583861096535 0.9855703497543681 0.1692583141246518 -0.00164583861096535 0.9855703497543681 0.1692583141246518 -0.00164583861096535 0.9855703497543681 -0.1692583141246518 0.00164583861096535 -0.9855703497543681 -0.1692583141246518 0.00164583861096535 -0.9855703497543681 -0.1692583141246518 0.00164583861096535 -0.9855703497543681 -0.1692583141246518 0.00164583861096535 -0.9855703497543681 -0.1692583141246518 0.00164583861096535 -0.9855703497543681 -0.1692583141246518 0.00164583861096535 -0.9855703497543681</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID332\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID330\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID333\">-36.9523615927305 -5.223862964112243 -36.16550631933126 -5.17860857185538 -36.16614112554545 -5.088159947350707 -36.15225247918821 -7.067045678376561 -36.95171153664782 -5.316484424363657 -36.93992947841849 -6.995218717019895</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID333\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID329\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID327\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID328\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID329\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID330\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID329\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID334\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID335\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID339\">2343.201777408523 1096.691511340241 57.01842282415925 2258.151306717787 1089.338506948609 42.42442174941624 2257.70834431502 1043.784180422175 42.42442174943477 2266.179858350227 1914.996080379225 42.4244217490882 2350.681658877293 1865.923754708189 57.01842282384746 2343.655206356219 1143.322219071911 57.01842282414151 2343.201862003641 1096.700211114599 57.01842282415845 2343.201862003641 1096.700211114599 57.01842282415845 2343.201777408523 1096.691511340241 57.01842282415925 2343.655206356219 1143.322219071911 57.01842282414151 2350.681658877293 1865.923754708189 57.01842282384746 2266.179858350227 1914.996080379225 42.4244217490882 2258.151306717787 1089.338506948609 42.42442174941624 2257.70834431502 1043.784180422175 42.42442174943477</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID339\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID336\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID340\">-0.1692585120714087 0.001645840536602916 0.9855703157564665 -0.1692585120714087 0.001645840536602916 0.9855703157564665 -0.1692585120714087 0.001645840536602916 0.9855703157564665 -0.1692585120714087 0.001645840536602916 0.9855703157564665 -0.1692585120714087 0.001645840536602916 0.9855703157564665 -0.1692585120714087 0.001645840536602916 0.9855703157564665 -0.1692585120714087 0.001645840536602916 0.9855703157564665 0.1692585120714087 -0.001645840536602916 -0.9855703157564665 0.1692585120714087 -0.001645840536602916 -0.9855703157564665 0.1692585120714087 -0.001645840536602916 -0.9855703157564665 0.1692585120714087 -0.001645840536602916 -0.9855703157564665 0.1692585120714087 -0.001645840536602916 -0.9855703157564665 0.1692585120714087 -0.001645840536602916 -0.9855703157564665 0.1692585120714087 -0.001645840536602916 -0.9855703157564665</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID340\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID338\">\r\n\t\t\t\t\t<float_array count=\"14\" id=\"ID341\">7.941702362234608 -1.158539000277242 7.073943405704526 -1.177023647039866 7.073627511411257 -1.280726771922678 7.07966888856464 0.7025622666763134 7.947036566346512 0.5925962591054299 7.942025720641823 -1.052385524284897 7.941702422562926 -1.15851919548908</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID341\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID337\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID335\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID336\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID337\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID338\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 5 5 0 0 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID337\" />\r\n\t\t\t\t\t<p>7 8 9 9 8 10 10 8 11 11 8 12 13 12 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID342\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID343\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID347\">2428.695484540056 1149.616502428428 42.4244217494292 2343.655206356219 1143.322219071911 57.01842282414151 2343.201862003641 1096.700211114599 57.01842282415845 2350.681658877293 1865.923754708189 57.01842282384746 2429.159220609257 1197.30719623698 42.42442174940783 2435.182767463104 1816.769747709067 42.42442174915095 2435.182767463104 1816.769747709067 42.42442174915095 2429.159220609257 1197.30719623698 42.42442174940783 2350.681658877293 1865.923754708189 57.01842282384746 2428.695484540056 1149.616502428428 42.4244217494292 2343.655206356219 1143.322219071911 57.01842282414151 2343.201862003641 1096.700211114599 57.01842282415845</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID347\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID344\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID348\">0.1692583141247435 -0.001645838610988819 0.9855703497543523 0.1692583141247435 -0.001645838610988819 0.9855703497543523 0.1692583141247435 -0.001645838610988819 0.9855703497543523 0.1692583141247435 -0.001645838610988819 0.9855703497543523 0.1692583141247435 -0.001645838610988819 0.9855703497543523 0.1692583141247435 -0.001645838610988819 0.9855703497543523 -0.1692583141247435 0.001645838610988819 -0.9855703497543523 -0.1692583141247435 0.001645838610988819 -0.9855703497543523 -0.1692583141247435 0.001645838610988819 -0.9855703497543523 -0.1692583141247435 0.001645838610988819 -0.9855703497543523 -0.1692583141247435 0.001645838610988819 -0.9855703497543523 -0.1692583141247435 0.001645838610988819 -0.9855703497543523</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID348\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID346\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID349\">-38.78543037683812 -5.485027442081277 -37.99854461767275 -5.444116730707947 -37.99920990947213 -5.349324451112874 -37.9882331596959 -6.913316574365048 -38.7847498349891 -5.58199258321639 -38.77591016090577 -6.841489330580551</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID349\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID345\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID343\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID344\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID345\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID346\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID345\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID350\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID351\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID355\">2514.208482575911 1202.535105278577 57.01932035370493 2429.159220609257 1197.30719623698 42.42442174940783 2428.695484540056 1149.616502428428 42.4244217494292 2435.182767463104 1816.769747709067 42.42442174915095 2514.20855685125 1202.544497174892 57.01932035368719 2519.70341334964 1767.634691931522 57.01932035345902 2519.70341334964 1767.634691931522 57.01932035345902 2514.20855685125 1202.544497174892 57.01932035368719 2435.182767463104 1816.769747709067 42.42442174915095 2514.208482575911 1202.535105278577 57.01932035370493 2429.159220609257 1197.30719623698 42.42442174940783 2428.695484540056 1149.616502428428 42.4244217494292</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID355\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID352\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID356\">-0.1692310000489733 0.001645574123790651 0.9855750406276672 -0.1692310000489733 0.001645574123790651 0.9855750406276672 -0.1692310000489733 0.001645574123790651 0.9855750406276672 -0.1692310000489733 0.001645574123790651 0.9855750406276672 -0.1692310000489733 0.001645574123790651 0.9855750406276672 -0.1692310000489733 0.001645574123790651 0.9855750406276672 0.1692310000489733 -0.001645574123790651 -0.9855750406276672 0.1692310000489733 -0.001645574123790651 -0.9855750406276672 0.1692310000489733 -0.001645574123790651 -0.9855750406276672 0.1692310000489733 -0.001645574123790651 -0.9855750406276672 0.1692310000489733 -0.001645574123790651 -0.9855750406276672 0.1692310000489733 -0.001645574123790651 -0.9855750406276672</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID356\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID354\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID357\">9.915373190275169 -0.9412960250978784 9.047434115652759 -0.9549433380965029 9.047103356023257 -1.063509886539404 9.051730408865677 0.4552460664220241 9.915373086306431 -0.9412746450561151 9.919292448207081 0.3451375901417197</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID357\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID353\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID351\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID352\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID353\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID354\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID353\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID358\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID359\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID362\">25.50903067381796 1037.454696668175 57.01838842482636 18.9221084599742 360.0505667599738 21.50223152434842 18.92206941235213 360.050514627277 57.01838842512166 25.5090692134695 1037.454696565072 21.50223152406073 25.5090692134695 1037.454696565072 21.50223152406073 25.50903067381796 1037.454696668175 57.01838842482636 18.9221084599742 360.0505667599738 21.50223152434842 18.92206941235213 360.050514627277 57.01838842512166</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID362\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID360\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID363\">-0.9999527269432997 0.009723367599831181 -1.085107530069478e-006 -0.9999527269432997 0.009723367599831181 -1.085107530069478e-006 -0.9999527269432997 0.009723367599831181 -1.085107530069478e-006 -0.9999527269432997 0.009723367599831181 -1.085107530069478e-006 0.9999527269432997 -0.009723367599831181 1.085107530069478e-006 0.9999527269432997 -0.009723367599831181 1.085107530069478e-006 0.9999527269432997 -0.009723367599831181 1.085107530069478e-006 0.9999527269432997 -0.009723367599831181 1.085107530069478e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID363\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID361\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID359\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID360\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID361\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID364\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID365\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID368\">2519.703412971289 1767.634679471388 67.87908775074658 2514.20855685125 1202.544497174892 57.01932035368719 2514.208541280449 1202.54432834442 67.87909138344298 2519.70341334964 1767.634691931522 57.01932035345902 2519.70341334964 1767.634691931522 57.01932035345902 2519.703412971289 1767.634679471388 67.87908775074658 2514.20855685125 1202.544497174892 57.01932035368719 2514.208541280449 1202.54432834442 67.87909138344298</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID368\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID366\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID369\">-0.9999527265327154 0.00972340986289518 -6.53128638164623e-007 -0.9999527265327154 0.00972340986289518 -6.53128638164623e-007 -0.9999527265327154 0.00972340986289518 -6.53128638164623e-007 -0.9999527265327154 0.00972340986289518 -6.53128638164623e-007 0.9999527265327154 -0.00972340986289518 6.53128638164623e-007 0.9999527265327154 -0.00972340986289518 6.53128638164623e-007 0.9999527265327154 -0.00972340986289518 6.53128638164623e-007 0.9999527265327154 -0.00972340986289518 6.53128638164623e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID369\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID367\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID365\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID366\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID367\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID367\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID370\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID371\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID375\">714.5549354734917 88.65087971943257 42.42436224929116 617.2661283599804 1403.722145406452 57.01842261461439 603.8120887932995 20.10649836342162 57.01842261525127 617.2847465155313 1405.636839593102 57.0184226146153 714.9000312880431 124.1405901805318 42.42442178144074 728.0968288122668 1481.301423176241 42.4244217808606 728.0968288122668 1481.301423176241 42.4244217808606 714.9000312880431 124.1405901805318 42.42442178144074 617.2847465155313 1405.636839593102 57.0184226146153 714.5549354734917 88.65087971943257 42.42436224929116 617.2661283599804 1403.722145406452 57.01842261461439 603.8120887932995 20.10649836342162 57.01842261525127</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID375\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID372\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID376\">0.131430674204319 -0.001278020239638373 0.9913245404722237 0.131430674204319 -0.001278020239638373 0.9913245404722237 0.131430674204319 -0.001278020239638373 0.9913245404722237 0.131430674204319 -0.001278020239638373 0.9913245404722237 0.131430674204319 -0.001278020239638373 0.9913245404722237 0.131430674204319 -0.001278020239638373 0.9913245404722237 -0.131430674204319 0.001278020239638373 -0.9913245404722237 -0.131430674204319 0.001278020239638373 -0.9913245404722237 -0.131430674204319 0.001278020239638373 -0.9913245404722237 -0.131430674204319 0.001278020239638373 -0.9913245404722237 -0.131430674204319 0.001278020239638373 -0.9913245404722237 -0.131430674204319 0.001278020239638373 -0.9913245404722237</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID376\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID374\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID377\">-22.99130523168642 -2.797814130789755 -21.95668490304313 -5.43528699515933 -21.97893001422755 -2.622191464113871 -21.95665411950493 -5.439179852016864 -22.99073457365891 -2.869969965964099 -22.96891479033207 -5.62927894195705</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID377\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID373\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID371\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID372\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID373\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID374\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID373\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID378\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID379\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID383\">1025.750110428015 281.2625541169096 57.01842282425548 940.3171306053037 1603.674924880466 42.42442174894387 926.8630865783555 220.0588191352919 42.42442174953385 1039.204171147671 1664.880376551078 57.01842282367483 1025.750130932556 281.2646628071417 57.01842282425594 1026.043415644119 311.4261108942845 57.01842282424497 1026.043415644119 311.4261108942845 57.01842282424497 1025.750130932556 281.2646628071417 57.01842282425594 1039.204171147671 1664.880376551078 57.01842282367483 1025.750110428015 281.2625541169096 57.01842282425548 940.3171306053037 1603.674924880466 42.42442174894387 926.8630865783555 220.0588191352919 42.42442174953385</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID383\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID380\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID384\">-0.1468659787362378 0.001428099410195369 0.9891553694045853 -0.1468659787362378 0.001428099410195369 0.9891553694045853 -0.1468659787362378 0.001428099410195369 0.9891553694045853 -0.1468659787362378 0.001428099410195369 0.9891553694045853 -0.1468659787362378 0.001428099410195369 0.9891553694045853 -0.1468659787362378 0.001428099410195369 0.9891553694045853 0.1468659787362378 -0.001428099410195369 -0.9891553694045853 0.1468659787362378 -0.001428099410195369 -0.9891553694045853 0.1468659787362378 -0.001428099410195369 -0.9891553694045853 0.1468659787362378 -0.001428099410195369 -0.9891553694045853 0.1468659787362378 -0.001428099410195369 -0.9891553694045853 0.1468659787362378 -0.001428099410195369 -0.9891553694045853</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID384\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID382\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID385\">-4.881348091367787 -3.068899357895762 -5.870787585315474 -0.06046033081489188 -5.881845276079659 -3.210223996793251 -4.870290386884818 0.08086821607744987 -4.881348074515376 -3.06889455752097 -4.881107027909584 -3.000232858004969</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID385\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID381\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID379\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID380\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID381\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID382\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID381\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID386\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID387\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID391\">1124.637282035758 342.4709625902287 42.4244661268699 1026.043415644119 311.4261108942845 57.01842282424497 1025.750130932556 281.2646628071417 57.01842282425594 1039.204171147671 1664.880376551078 57.01842282367483 1138.091326062688 1726.08706833562 42.4244217489138 1124.942584727534 373.8683417437994 42.42442174954664 1124.942584727534 373.8683417437994 42.42442174954664 1124.637282035758 342.4709625902287 42.4244661268699 1138.091326062688 1726.08706833562 42.4244217489138 1039.204171147671 1664.880376551078 57.01842282367483 1026.043415644119 311.4261108942845 57.01842282424497 1025.750130932556 281.2646628071417 57.01842282425594</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID391\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID388\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID392\">0.146865678422241 -0.001428088197400139 0.9891554140101927 0.146865678422241 -0.001428088197400139 0.9891554140101927 0.146865678422241 -0.001428088197400139 0.9891554140101927 0.146865678422241 -0.001428088197400139 0.9891554140101927 0.146865678422241 -0.001428088197400139 0.9891554140101927 0.146865678422241 -0.001428088197400139 0.9891554140101927 -0.146865678422241 0.001428088197400139 -0.9891554140101927 -0.146865678422241 0.001428088197400139 -0.9891554140101927 -0.146865678422241 0.001428088197400139 -0.9891554140101927 -0.146865678422241 0.001428088197400139 -0.9891554140101927 -0.146865678422241 0.001428088197400139 -0.9891554140101927 -0.146865678422241 0.001428088197400139 -0.9891554140101927</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID392\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID390\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID393\">-27.02474734828683 -3.434417806636701 -26.11825628258662 -3.338870456082502 -26.11871554009024 -3.277546902196989 -26.09764772209636 -6.090682151322692 -27.00367958381771 -6.247553854770287 -27.02426933119912 -3.498254228785158</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID393\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID389\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID387\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID388\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID389\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID390\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID389\" />\r\n\t\t\t\t\t<p>6 7 8 8 7 9 9 7 10 11 10 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID394\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID395\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID399\">1223.524326532594 403.6768209353672 57.01842282422302 1124.942584727534 373.8683417437994 42.42442174954664 1124.637282035758 342.4709625902287 42.4244661268699 1138.091326062688 1726.08706833562 42.4244217489138 1223.841639195996 436.3093075514522 57.01842282420864 1236.978366605137 1787.292520006278 57.01842282363674 1236.978366605137 1787.292520006278 57.01842282363674 1223.841639195996 436.3093075514522 57.01842282420864 1138.091326062688 1726.08706833562 42.4244217489138 1223.524326532594 403.6768209353672 57.01842282422302 1124.942584727534 373.8683417437994 42.42442174954664 1124.637282035758 342.4709625902287 42.4244661268699</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID399\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID396\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID400\">-0.1468658381726331 0.001428106342373832 0.9891553902649094 -0.1468658381726331 0.001428106342373832 0.9891553902649094 -0.1468658381726331 0.001428106342373832 0.9891553902649094 -0.1468658381726331 0.001428106342373832 0.9891553902649094 -0.1468658381726331 0.001428106342373832 0.9891553902649094 -0.1468658381726331 0.001428106342373832 0.9891553902649094 0.1468658381726331 -0.001428106342373832 -0.9891553902649094 0.1468658381726331 -0.001428106342373832 -0.9891553902649094 0.1468658381726331 -0.001428106342373832 -0.9891553902649094 0.1468658381726331 -0.001428106342373832 -0.9891553902649094 0.1468658381726331 -0.001428106342373832 -0.9891553902649094 0.1468658381726331 -0.001428106342373832 -0.9891553902649094</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID400\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID398\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID401\">-2.923496684221821 -2.78622689096932 -3.923742944852608 -2.8560811138357 -3.923993785843706 -2.927556376139207 -3.912936928769415 0.2222072899894565 -2.923235907493721 -2.711939940816324 -2.912439764801995 0.3635358493643954</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID401\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID397\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID395\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID396\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID397\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID398\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID397\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID402\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID403\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID407\">1322.411477493095 464.8831060451043 42.42442174949736 1223.841639195996 436.3093075514522 57.01842282420864 1223.524326532594 403.6768209353672 57.01842282422302 1236.978366605137 1787.292520006278 57.01842282363674 1322.740808279387 498.7515384010088 42.42442174948059 1335.865521519996 1848.499211790733 42.42442174890437 1335.865521519996 1848.499211790733 42.42442174890437 1322.740808279387 498.7515384010088 42.42442174948059 1236.978366605137 1787.292520006278 57.01842282363674 1322.411477493095 464.8831060451043 42.42442174949736 1223.841639195996 436.3093075514522 57.01842282420864 1223.524326532594 403.6768209353672 57.01842282422302</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID407\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID404\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID408\">0.1468658291581942 -0.001428097954887568 0.9891553916154465 0.1468658291581942 -0.001428097954887568 0.9891553916154465 0.1468658291581942 -0.001428097954887568 0.9891553916154465 0.1468658291581942 -0.001428097954887568 0.9891553916154465 0.1468658291581942 -0.001428097954887568 0.9891553916154465 0.1468658291581942 -0.001428097954887568 0.9891553916154465 -0.1468658291581942 0.001428097954887568 -0.9891553916154465 -0.1468658291581942 0.001428097954887568 -0.9891553916154465 -0.1468658291581942 0.001428097954887568 -0.9891553916154465 -0.1468658291581942 0.001428097954887568 -0.9891553916154465 -0.1468658291581942 0.001428097954887568 -0.9891553916154465 -0.1468658291581942 0.001428097954887568 -0.9891553916154465</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID408\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID406\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID409\">-28.92028095717541 -3.746760653480429 -28.01375222105332 -3.656237378142227 -28.01424912055292 -3.589889766813021 -27.99318060816645 -6.403024962759032 -28.91976523775479 -3.815621160885691 -28.89921243859577 -6.559896676267978</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID409\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID405\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID403\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID404\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID405\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID406\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID405\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID410\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID411\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID415\">1421.298482385793 526.0848914829128 57.01842282425668 1322.740808279387 498.7515384010088 42.42442174948059 1322.411477493095 464.8831060451043 42.42442174949736 1335.865521519996 1848.499211790733 42.42442174890437 1421.298522132716 526.0889790636497 57.01842282425639 1434.7525620625 1909.704663461435 57.01842282362446 1421.63986274797 561.1925042084801 57.01842282424229 1421.63986274797 561.1925042084801 57.01842282424229 1421.298522132716 526.0889790636497 57.01842282425639 1434.7525620625 1909.704663461435 57.01842282362446 1335.865521519996 1848.499211790733 42.42442174890437 1421.298482385793 526.0848914829128 57.01842282425668 1322.740808279387 498.7515384010088 42.42442174948059 1322.411477493095 464.8831060451043 42.42442174949736</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID415\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID412\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID416\">-0.1468659787363306 0.001428099410214686 0.9891553694045715 -0.1468659787363306 0.001428099410214686 0.9891553694045715 -0.1468659787363306 0.001428099410214686 0.9891553694045715 -0.1468659787363306 0.001428099410214686 0.9891553694045715 -0.1468659787363306 0.001428099410214686 0.9891553694045715 -0.1468659787363306 0.001428099410214686 0.9891553694045715 -0.1468659787363306 0.001428099410214686 0.9891553694045715 0.1468659787363306 -0.001428099410214686 -0.9891553694045715 0.1468659787363306 -0.001428099410214686 -0.9891553694045715 0.1468659787363306 -0.001428099410214686 -0.9891553694045715 0.1468659787363306 -0.001428099410214686 -0.9891553694045715 0.1468659787363306 -0.001428099410214686 -0.9891553694045715 0.1468659787363306 -0.001428099410214686 -0.9891553694045715 0.1468659787363306 -0.001428099410214686 -0.9891553694045715</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID416\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID414\">\r\n\t\t\t\t\t<float_array count=\"14\" id=\"ID417\">-0.9656439129110712 -2.503568465223852 -1.965870409672329 -2.567788119713089 -1.966141082043052 -2.644888666038994 -1.955083391281107 0.5048749999403994 -0.9656438802436771 -2.503559159959745 -0.9545861928491863 0.6462035468329748 -0.9653633371622377 -2.423646959176714</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID417\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID413\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID411\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID412\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID413\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID414\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID413\" />\r\n\t\t\t\t\t<p>7 8 9 9 8 10 8 11 10 10 11 12 13 12 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID418\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID419\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID423\">1520.18567295045 587.2952495000437 42.42455488154451 1421.63986274797 561.1925042084801 57.01842282424229 1421.298522132716 526.0889790636497 57.01842282425639 1434.7525620625 1909.704663461435 57.01842282362446 1533.639716977347 1970.911355245877 42.42442174890829 1520.539031831292 623.6347350582051 42.42442174951054 1520.539031831292 623.6347350582051 42.42442174951054 1520.18567295045 587.2952495000437 42.42455488154451 1533.639716977347 1970.911355245877 42.42442174890829 1434.7525620625 1909.704663461435 57.01842282362446 1421.63986274797 561.1925042084801 57.01842282424229 1421.298522132716 526.0889790636497 57.01842282425639</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID423\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID420\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID424\">0.1468653768440883 -0.001428068507463984 0.9891554588156415 0.1468653768440883 -0.001428068507463984 0.9891554588156415 0.1468653768440883 -0.001428068507463984 0.9891554588156415 0.1468653768440883 -0.001428068507463984 0.9891554588156415 0.1468653768440883 -0.001428068507463984 0.9891554588156415 0.1468653768440883 -0.001428068507463984 0.9891554588156415 -0.1468653768440883 0.001428068507463984 -0.9891554588156415 -0.1468653768440883 0.001428068507463984 -0.9891554588156415 -0.1468653768440883 0.001428068507463984 -0.9891554588156415 -0.1468653768440883 0.001428068507463984 -0.9891554588156415 -0.1468653768440883 0.001428068507463984 -0.9891554588156415 -0.1468653768440883 0.001428068507463984 -0.9891554588156415</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID424\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID422\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID425\">-29.93145549335478 -4.05820810225283 -29.02488926734201 -3.972708952887748 -29.02542374045133 -3.901337281816709 -29.00435732692161 -6.714472518467144 -29.9103892518884 -6.871344201577198 -29.93090238045449 -4.132092705295662</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID425\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID421\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID419\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID420\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID421\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID422\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID421\" />\r\n\t\t\t\t\t<p>6 7 8 8 7 9 9 7 10 11 10 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID426\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID427\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID431\">1619.072717732698 648.5011371918458 57.01842282419324 1520.539031831292 623.6347350582051 42.42442174951054 1520.18567295045 587.2952495000437 42.42455488154451 1533.639716977347 1970.911355245877 42.42442174890829 1632.526757519873 2032.116806916582 57.01842282357904 1619.438086299793 686.075700865654 57.01842282417755 1619.438086299793 686.075700865654 57.01842282417755 1619.072717732698 648.5011371918458 57.01842282419324 1632.526757519873 2032.116806916582 57.01842282357904 1533.639716977347 1970.911355245877 42.42442174890829 1520.539031831292 623.6347350582051 42.42442174951054 1520.18567295045 587.2952495000437 42.42455488154451</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID431\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID428\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID432\">-0.1468655571524042 0.001428120381737064 0.9891554319693591 -0.1468655571524042 0.001428120381737064 0.9891554319693591 -0.1468655571524042 0.001428120381737064 0.9891554319693591 -0.1468655571524042 0.001428120381737064 0.9891554319693591 -0.1468655571524042 0.001428120381737064 0.9891554319693591 -0.1468655571524042 0.001428120381737064 0.9891554319693591 0.1468655571524042 -0.001428120381737064 -0.9891554319693591 0.1468655571524042 -0.001428120381737064 -0.9891554319693591 0.1468655571524042 -0.001428120381737064 -0.9891554319693591 0.1468655571524042 -0.001428120381737064 -0.9891554319693591 0.1468655571524042 -0.001428120381737064 -0.9891554319693591 0.1468655571524042 -0.001428120381737064 -0.9891554319693591</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID432\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID430\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID433\">0.9922059273673654 -2.22089140770116 -0.008000810645775403 -2.279495154522604 -0.00829097363845932 -2.362220984931927 0.002764199721008609 0.7875426815002657 1.003261294028004 0.9288712661057752 0.9925061556660602 -2.135353956272984</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID433\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID429\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID427\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID428\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID429\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID430\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID429\" />\r\n\t\t\t\t\t<p>6 7 8 8 7 9 9 7 10 11 10 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID434\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID435\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID439\">1717.959868407902 709.7073929549623 42.4244217494898 1619.438086299793 686.075700865654 57.01842282417755 1619.072717732698 648.5011371918458 57.01842282419324 1632.526757519873 2032.116806916582 57.01842282357904 1718.337255383241 748.5179317152154 42.42442174947291 1731.413912434701 2093.323498701011 42.42442174883672 1731.413912434701 2093.323498701011 42.42442174883672 1718.337255383241 748.5179317152154 42.42442174947291 1632.526757519873 2032.116806916582 57.01842282357904 1717.959868407902 709.7073929549623 42.4244217494898 1619.438086299793 686.075700865654 57.01842282417755 1619.072717732698 648.5011371918458 57.01842282419324</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID439\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID436\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID440\">0.1468658291580204 -0.001428097954846709 0.9891553916154725 0.1468658291580204 -0.001428097954846709 0.9891553916154725 0.1468658291580204 -0.001428097954846709 0.9891553916154725 0.1468658291580204 -0.001428097954846709 0.9891553916154725 0.1468658291580204 -0.001428097954846709 0.9891553916154725 0.1468658291580204 -0.001428097954846709 0.9891553916154725 -0.1468658291580204 0.001428097954846709 -0.9891553916154725 -0.1468658291580204 0.001428097954846709 -0.9891553916154725 -0.1468658291580204 0.001428097954846709 -0.9891553916154725 -0.1468658291580204 0.001428097954846709 -0.9891553916154725 -0.1468658291580204 0.001428097954846709 -0.9891553916154725 -0.1468658291580204 0.001428097954846709 -0.9891553916154725</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID440\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID438\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID441\">-32.01742443945538 -4.376705011408826 -31.11082044917792 -4.296229911642461 -31.11139260238531 -4.21983418440831 -31.09032409044896 -7.032969320688475 -32.01683346588003 -4.455613694385905 -31.99635592087816 -7.189841034197309</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID441\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID437\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID435\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID436\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID437\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID438\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID437\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID442\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID443\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID447\">1816.846854343477 770.907228848858 57.01842282419631 1718.337255383241 748.5179317152154 42.42442174947291 1717.959868407902 709.7073929549623 42.4244217494898 1731.413912434701 2093.323498701011 42.42442174883672 1816.846913332782 770.9132953201043 57.01842282419608 1830.300952977232 2154.528950371732 57.01842282356154 1817.236309851722 810.9588975228596 57.01842282417709 1817.236309851722 810.9588975228596 57.01842282417709 1816.846913332782 770.9132953201043 57.01842282419608 1830.300952977232 2154.528950371732 57.01842282356154 1731.413912434701 2093.323498701011 42.42442174883672 1816.846854343477 770.907228848858 57.01842282419631 1718.337255383241 748.5179317152154 42.42442174947291 1717.959868407902 709.7073929549623 42.4244217494898</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID447\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID444\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID448\">-0.1468659787360909 0.00142809941022965 0.9891553694046071 -0.1468659787360909 0.00142809941022965 0.9891553694046071 -0.1468659787360909 0.00142809941022965 0.9891553694046071 -0.1468659787360909 0.00142809941022965 0.9891553694046071 -0.1468659787360909 0.00142809941022965 0.9891553694046071 -0.1468659787360909 0.00142809941022965 0.9891553694046071 -0.1468659787360909 0.00142809941022965 0.9891553694046071 0.1468659787360909 -0.00142809941022965 -0.9891553694046071 0.1468659787360909 -0.00142809941022965 -0.9891553694046071 0.1468659787360909 -0.00142809941022965 -0.9891553694046071 0.1468659787360909 -0.00142809941022965 -0.9891553694046071 0.1468659787360909 -0.00142809941022965 -0.9891553694046071 0.1468659787360909 -0.00142809941022965 -0.9891553694046071 0.1468659787360909 -0.00142809941022965 -0.9891553694046071</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID448\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID446\">\r\n\t\t\t\t\t<float_array count=\"14\" id=\"ID449\">2.950060265542618 -1.938237572551851 1.949873281073081 -1.99120222088461 1.949563111992241 -2.079553335284404 1.960620802751436 1.070210330695939 2.950060314024981 -1.938223762398419 2.961118001183554 1.211538877588586 2.950380353581981 -1.847061060347817</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID449\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID445\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID443\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID444\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID445\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID446\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID445\" />\r\n\t\t\t\t\t<p>7 8 9 9 8 10 8 11 10 10 11 12 13 12 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID450\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID451\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID454\">1862.421302405649 2149.664548985819 52.24229903820782 1841.803415767692 2161.6482933796 55.32087483007513 1830.300952977232 2154.528950371732 57.01842282356154 1849.28491864681 2166.279169463231 54.2167241032268 1849.28491864681 2166.279169463231 54.2167241032268 1862.421302405649 2149.664548985819 52.24229903820782 1841.803415767692 2161.6482933796 55.32087483007513 1830.300952977232 2154.528950371732 57.01842282356154</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID454\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID452\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID455\">0.1468658924758616 -0.001428354905230838 0.9891553818432843 0.1468658924758616 -0.001428354905230838 0.9891553818432843 0.1468658924758616 -0.001428354905230838 0.9891553818432843 0.1468658924758616 -0.001428354905230838 0.9891553818432843 -0.1468658924758616 0.001428354905230838 -0.9891553818432843 -0.1468658924758616 0.001428354905230838 -0.9891553818432843 -0.1468658924758616 0.001428354905230838 -0.9891553818432843 -0.1468658924758616 0.001428354905230838 -0.9891553818432843</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID455\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID453\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID451\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID452\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID453\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID456\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID457\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID461\">1928.174423707412 2111.488193474614 42.42442174892955 1928.141779313186 2111.502549146532 42.42928938385546 1916.141454327978 874.0156387872455 42.42442174945683 1915.734063864961 832.1195364096695 42.4244217494745 1817.236309851722 810.9588975228596 57.01842282417709 1816.846913332782 770.9132953201043 57.01842282419608 1830.300952977232 2154.528950371732 57.01842282356154 1862.421302405649 2149.664548985819 52.24229903820782 1928.141819976064 2111.507143896757 42.42928998004214 1928.141779313186 2111.502549146532 42.42928938385546 1916.141454327978 874.0156387872455 42.42442174945683 1928.141819976064 2111.507143896757 42.42928998004214 1915.734063864961 832.1195364096695 42.4244217494745 1862.421302405649 2149.664548985819 52.24229903820782 1830.300952977232 2154.528950371732 57.01842282356154 1817.236309851722 810.9588975228596 57.01842282417709 1816.846913332782 770.9132953201043 57.01842282419608 1928.174423707412 2111.488193474614 42.42442174892955</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID461\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID458\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID462\">0.1468658291581113 -0.00142809795488561 0.9891553916154589 0.1468658291581113 -0.00142809795488561 0.9891553916154589 0.1468658291581113 -0.00142809795488561 0.9891553916154589 0.1468658291581113 -0.00142809795488561 0.9891553916154589 0.1468658291581113 -0.00142809795488561 0.9891553916154589 0.1468658291581113 -0.00142809795488561 0.9891553916154589 0.1468658291581113 -0.00142809795488561 0.9891553916154589 0.1468658291581113 -0.00142809795488561 0.9891553916154589 0.1468658291581113 -0.00142809795488561 0.9891553916154589 -0.1468658291581113 0.00142809795488561 -0.9891553916154589 -0.1468658291581113 0.00142809795488561 -0.9891553916154589 -0.1468658291581113 0.00142809795488561 -0.9891553916154589 -0.1468658291581113 0.00142809795488561 -0.9891553916154589 -0.1468658291581113 0.00142809795488561 -0.9891553916154589 -0.1468658291581113 0.00142809795488561 -0.9891553916154589 -0.1468658291581113 0.00142809795488561 -0.9891553916154589 -0.1468658291581113 0.00142809795488561 -0.9891553916154589 -0.1468658291581113 0.00142809795488561 -0.9891553916154589</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID462\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID460\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID463\">-33.9646554161246 -7.278668644167444 -33.96435269180676 -7.278687015959038 -33.98349858613215 -4.762668283701744 -33.98413654402203 -4.67748610468306 -33.07749492667027 -4.602035092703318 -33.07810470673171 -4.520615307516527 -33.05703619501517 -7.333750413963564 -33.35392890498781 -7.334472715787962 -33.96435258478827 -7.278696356573303</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"9\" source=\"#ID463\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID459\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID457\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID458\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID459\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID460\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 4 4 5 5 4 4 3 3 6 6 6 6 3 3 7 7 7 7 3 3 8 8 8 8 3 3 2 2 8 8 2 2 1 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID459\" />\r\n\t\t\t\t\t<p>9 10 11 10 12 11 11 12 13 13 12 14 14 12 15 16 15 12 10 9 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID464\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID465\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID469\">926.8630865783555 220.0588191352919 42.42442174953385 828.2451920921959 186.5429142372247 57.01842282428481 827.9759244491368 158.8513854339076 57.01842282429698 841.429975690266 1542.468233095908 57.01842282369563 940.3171306053037 1603.674924880466 42.42442174894387 940.3171306053037 1603.674924880466 42.42442174894387 926.8630865783555 220.0588191352919 42.42442174953385 841.429975690266 1542.468233095908 57.01842282369563 828.2451920921959 186.5429142372247 57.01842282428481 827.9759244491368 158.8513854339076 57.01842282429698</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID469\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID466\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID470\">0.1468658291583577 -0.001428097954879105 0.9891553916154224 0.1468658291583577 -0.001428097954879105 0.9891553916154224 0.1468658291583577 -0.001428097954879105 0.9891553916154224 0.1468658291583577 -0.001428097954879105 0.9891553916154224 0.1468658291583577 -0.001428097954879105 0.9891553916154224 -0.1468658291583577 0.001428097954879105 -0.9891553916154224 -0.1468658291583577 0.001428097954879105 -0.9891553916154224 -0.1468658291583577 0.001428097954879105 -0.9891553916154224 -0.1468658291583577 0.001428097954879105 -0.9891553916154224 -0.1468658291583577 0.001428097954879105 -0.9891553916154224</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID470\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID468\">\r\n\t\t\t\t\t<float_array count=\"10\" id=\"ID471\">-24.93990295499369 -3.14487878430857 -24.03344947302627 -3.044307333398431 -24.0338711358608 -2.988005562351403 -24.01280260598442 -5.801143093586024 -24.91883443641538 -5.958014807095216</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID471\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID467\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID465\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID466\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID467\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID468\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID467\" />\r\n\t\t\t\t\t<p>5 6 7 7 6 8 9 8 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID472\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID473\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID477\">603.8120887932995 20.10649836342162 57.01842261525127 530.9749361484373 1350.312296988477 42.42434427722247 518.5222640381394 69.67744424413183 42.42434427777971 617.2661283599804 1403.722145406452 57.01842261461439 617.2661283599804 1403.722145406452 57.01842261461439 603.8120887932995 20.10649836342162 57.01842261525127 530.9749361484373 1350.312296988477 42.42434427722247 518.5222640381394 69.67744424413183 42.42434427777971</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID477\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID474\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID478\">-0.1677389797953713 0.00163106486723863 0.985830094024628 -0.1677389797953713 0.00163106486723863 0.985830094024628 -0.1677389797953713 0.00163106486723863 0.985830094024628 -0.1677389797953713 0.00163106486723863 0.985830094024628 0.1677389797953713 -0.00163106486723863 -0.985830094024628 0.1677389797953713 -0.00163106486723863 -0.985830094024628 0.1677389797953713 -0.00163106486723863 -0.985830094024628 0.1677389797953713 -0.00163106486723863 -0.985830094024628</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID478\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID476\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID479\">-8.935694288492513 -3.672145386967478 -9.801959969212534 -0.6457294348042741 -9.810920926488182 -3.5610593276146 -8.926012746035418 -0.5223825585229687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID479\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID475\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID473\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID474\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID475\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID476\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID475\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID480\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID481\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID485\">518.5222640381394 69.67744424413183 42.42434427777971 425.3468744327445 1284.933912243414 57.0184115260098 414.1199706971966 130.3572812349913 57.01841152650923 530.9749361484373 1350.312296988477 42.42434427722247 530.9749361484373 1350.312296988477 42.42434427722247 518.5222640381394 69.67744424413183 42.42434427777971 425.3468744327445 1284.933912243414 57.0184115260098 414.1199706971966 130.3572812349913 57.01841152650923</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID485\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID482\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID486\">0.1376774471449895 -0.001338751715254808 0.9904762128852382 0.1376774471449895 -0.001338751715254808 0.9904762128852382 0.1376774471449895 -0.001338751715254808 0.9904762128852382 0.1376774471449895 -0.001338751715254808 0.9904762128852382 -0.1376774471449895 0.001338751715254808 -0.9904762128852382 -0.1376774471449895 0.001338751715254808 -0.9904762128852382 -0.1376774471449895 0.001338751715254808 -0.9904762128852382 -0.1376774471449895 0.001338751715254808 -0.9904762128852382</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID486\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID484\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID487\">-21.99978653790544 -2.689488182611139 -21.01319789126094 -5.125693412350758 -21.03133626165396 -2.778253852582958 -21.97966779595855 -5.293224335077541</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID487\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID483\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID481\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID482\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID483\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID484\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID483\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID488\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID489\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID493\">414.1199706971966 130.3572812349913 57.01841152650923 319.7240931172614 1219.558795792642 42.42433207072565 309.7228941723176 191.0338475178063 42.42433207117421 425.3468744327445 1284.933912243414 57.0184115260098 425.3468744327445 1284.933912243414 57.0184115260098 414.1199706971966 130.3572812349913 57.01841152650923 319.7240931172614 1219.558795792642 42.42433207072565 309.7228941723176 191.0338475178063 42.42433207117421</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID493\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID490\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID494\">-0.1376843125427587 0.001338818474060297 0.9904752584717711 -0.1376843125427587 0.001338818474060297 0.9904752584717711 -0.1376843125427587 0.001338818474060297 0.9904752584717711 -0.1376843125427587 0.001338818474060297 0.9904752584717711 0.1376843125427587 -0.001338818474060297 -0.9904752584717711 0.1376843125427587 -0.001338818474060297 -0.9904752584717711 0.1376843125427587 -0.001338818474060297 -0.9904752584717711 0.1376843125427587 -0.001338818474060297 -0.9904752584717711</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID494\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID492\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID495\">-11.01154370539104 -3.424716572464666 -12.06895952319977 -0.9472991238458937 -12.07772763552291 -3.288707530648009 -11.00170101017661 -0.7963550196654468</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID495\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID491\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID489\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID490\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID491\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID492\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID491\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID496\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID497\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID501\">309.7228941723176 191.0338475178063 42.42433207117421 214.100141789789 1154.182955168325 57.01839931700562 205.3246679627544 251.7117800903237 57.01839931740005 319.7240931172614 1219.558795792642 42.42433207072565 319.7240931172614 1219.558795792642 42.42433207072565 309.7228941723176 191.0338475178063 42.42433207117421 214.100141789789 1154.182955168325 57.01839931700562 205.3246679627544 251.7117800903237 57.01839931740005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID501\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID498\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID502\">0.1376827033093603 -0.001338802825289354 0.9904754821884396 0.1376827033093603 -0.001338802825289354 0.9904754821884396 0.1376827033093603 -0.001338802825289354 0.9904754821884396 0.1376827033093603 -0.001338802825289354 0.9904754821884396 -0.1376827033093603 0.001338802825289354 -0.9904754821884396 -0.1376827033093603 0.001338802825289354 -0.9904754821884396 -0.1376827033093603 0.001338802825289354 -0.9904754821884396 -0.1376827033093603 0.001338802825289354 -0.9904754821884396</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID502\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID500\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID503\">-19.82773094399734 -2.864123100566654 -18.84514011641411 -4.787754951501212 -18.85931765043218 -2.952886228756101 -19.81157314544893 -4.955279372665222</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID503\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID499\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID497\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID498\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID499\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID500\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID499\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID504\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID505\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID509\">205.3246679627544 251.7117800903237 57.01839931740005 111.189990070412 1090.486818133915 42.42432002216054 103.6087367911907 310.8294810693396 42.42432002249979 214.100141789789 1154.182955168325 57.01839931700562 214.100141789789 1154.182955168325 57.01839931700562 205.3246679627544 251.7117800903237 57.01839931740005 111.189990070412 1090.486818133915 42.42432002216054 103.6087367911907 310.8294810693396 42.42432002249979</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID509\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID506\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID510\">-0.1412420636047427 0.001373413430873437 0.9899741376441216 -0.1412420636047427 0.001373413430873437 0.9899741376441216 -0.1412420636047427 0.001373413430873437 0.9899741376441216 -0.1412420636047427 0.001373413430873437 0.9899741376441216 0.1412420636047427 -0.001373413430873437 -0.9899741376441216 0.1412420636047427 -0.001373413430873437 -0.9899741376441216 0.1412420636047427 -0.001373413430873437 -0.9899741376441216 0.1412420636047427 -0.001373413430873437 -0.9899741376441216</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID510\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID508\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID511\">-13.08116736741573 -3.15276548307786 -14.11402882489569 -1.245387389631369 -14.12050790000849 -3.020255638281309 -13.07366768999013 -1.098314947155976</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID511\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID507\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID505\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID506\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID507\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID508\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID507\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID512\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID513\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID517\">103.6087367911907 310.8294810693396 42.42432002249979 25.50903067381796 1037.454696668175 57.01838842482636 18.92206941235213 360.050514627277 57.01838842512166 111.189990070412 1090.486818133915 42.42432002216054 111.189990070412 1090.486818133915 42.42432002216054 103.6087367911907 310.8294810693396 42.42432002249979 25.50903067381796 1037.454696668175 57.01838842482636 18.92206941235213 360.050514627277 57.01838842512166</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID517\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID514\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID518\">0.1688995637786428 -0.001642350184560044 0.9856318988553767 0.1688995637786428 -0.001642350184560044 0.9856318988553767 0.1688995637786428 -0.001642350184560044 0.9856318988553767 0.1688995637786428 -0.001642350184560044 0.9856318988553767 -0.1688995637786428 0.001642350184560044 -0.9856318988553767 -0.1688995637786428 0.001642350184560044 -0.9856318988553767 -0.1688995637786428 0.001642350184560044 -0.9856318988553767 -0.1688995637786428 0.001642350184560044 -0.9856318988553767</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID518\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID516\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID519\">-17.89042131982362 -3.038966472904966 -17.09139197930266 -4.488173649211946 -17.10106750909702 -3.110869768711886 -17.87928528317932 -4.624172328239573</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID519\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID515\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID513\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID514\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID515\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID516\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID515\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID520\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID521\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID525\">827.9759244491368 158.8513854339076 57.01842282429698 714.9000312880431 124.1405901805318 42.42442178144074 714.5549354734917 88.65087971943257 42.42436224929116 728.0968288122668 1481.301423176241 42.4244217808606 841.429975690266 1542.468233095908 57.01842282369563 828.2451920921959 186.5429142372247 57.01842282428481 828.2451920921959 186.5429142372247 57.01842282428481 827.9759244491368 158.8513854339076 57.01842282429698 841.429975690266 1542.468233095908 57.01842282369563 728.0968288122668 1481.301423176241 42.4244217808606 714.9000312880431 124.1405901805318 42.42442178144074 714.5549354734917 88.65087971943257 42.42436224929116</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID525\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID522\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID526\">-0.1283790560118876 0.001248324578739122 0.991724386945911 -0.1283790560118876 0.001248324578739122 0.991724386945911 -0.1283790560118876 0.001248324578739122 0.991724386945911 -0.1283790560118876 0.001248324578739122 0.991724386945911 -0.1283790560118876 0.001248324578739122 0.991724386945911 -0.1283790560118876 0.001248324578739122 0.991724386945911 0.1283790560118876 -0.001248324578739122 -0.991724386945911 0.1283790560118876 -0.001248324578739122 -0.991724386945911 0.1283790560118876 -0.001248324578739122 -0.991724386945911 0.1283790560118876 -0.001248324578739122 -0.991724386945911 0.1283790560118876 -0.001248324578739122 -0.991724386945911 0.1283790560118876 -0.001248324578739122 -0.991724386945911</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID526\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID524\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID527\">-6.93866255958619 -3.351394566194651 -8.082994453460366 -3.43267303803313 -8.0833190442596 -3.513464371625979 -8.070584728998792 -0.3431343465486165 -6.926010924333252 -0.2016294970054662 -6.938409351393023 -3.288355575100751</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID527\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID523\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID521\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID522\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID523\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID524\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID523\" />\r\n\t\t\t\t\t<p>6 7 8 8 7 9 9 7 10 11 10 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID528\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID529\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID531\">2435.21945197154 1820.542388604931 42.42442174915016 2435.182767463104 1816.769747709067 42.42442174915095</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID531\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID530\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID529\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID530\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID532\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID533\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID535\">2181.646934215123 1964.168454629123 57.02391738405771 2181.678748413408 1964.149948470945 57.01842282375714</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID535\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID534\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID533\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID534\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID536\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID537\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID539\">1223.524296406855 403.6737227998785 57.01842282422427 1223.524326532594 403.6768209353672 57.01842282422302</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID539\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID538\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID537\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID538\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID540\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID541\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID543\">1619.072668364581 648.4960601658511 57.01842282419477 1619.072717732698 648.5011371918458 57.01842282419324</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID543\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID542\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID541\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID542\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID544\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID545\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID547\">1928.174423707412 2111.488193474614 42.42442174892955 1928.141819976064 2111.507143896757 42.42928998004214 1862.387365138285 2149.725946151892 52.247426550147</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID547\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID546\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID545\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID546\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID548\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID549\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID551\">2350.681658877293 1865.923754708189 57.01842282384746 2350.681672664436 1865.925172580318 57.01842282384814</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID551\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID550\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID549\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID550\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID552\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID553\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID555\">603.8069225597013 19.5752020485333 57.01842261521637 603.8120887932995 20.10649836342162 57.01842261525127</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID555\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID554\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID553\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID554\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID557\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID563\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID569\">-2589.651412518632 3117.086043581751 178.0945531364849 -2052.697255564135 2908.103365093239 6.223548922663042 -2589.663692735663 3117.063301541073 6.222956752128894 -2052.684975347091 2908.12610713386 178.0951453070115 -2052.684975347091 2908.12610713386 178.0951453070115 -2589.651412518632 3117.086043581751 178.0945531364849 -2052.697255564135 2908.103365093239 6.223548922663042 -2589.663692735663 3117.063301541073 6.222956752128894 -2052.697255564135 2908.103365093239 6.223548922663042 -1976.911174948197 2274.184082754914 178.1659666137773 -1976.923455165229 2274.16134071427 6.294370229421915 -2052.684975347091 2908.12610713386 178.0951453070115 -2052.684975347091 2908.12610713386 178.0951453070115 -2052.697255564135 2908.103365093239 6.223548922663042 -1976.911174948197 2274.184082754914 178.1659666137773 -1976.923455165229 2274.16134071427 6.294370229421915 -3032.153644573142 2790.565343675744 6.280829435343208 -2589.651412518632 3117.086043581751 178.0945531364849 -2589.663692735663 3117.063301541073 6.222956752128894 -3032.141364356113 2790.588085716448 178.1524258196989 -3032.141364356113 2790.588085716448 178.1524258196989 -3032.153644573142 2790.565343675744 6.280829435343208 -2589.651412518632 3117.086043581751 178.0945531364849 -2589.663692735663 3117.063301541073 6.222956752128894 -2924.837677432432 1892.793566311443 178.2527239545406 -3032.153644573142 2790.565343675744 6.280829435343208 -2924.849957649424 1892.770824270724 6.381127570177775 -3032.141364356113 2790.588085716448 178.1524258196989 -3032.141364356113 2790.588085716448 178.1524258196989 -2924.837677432432 1892.793566311443 178.2527239545406 -3032.153644573142 2790.565343675744 6.280829435343208 -2924.849957649424 1892.770824270724 6.381127570177775</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID569\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID564\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID570\">0.3626567840589067 0.9319227622009857 -0.0001492237805087999 0.3626567840589067 0.9319227622009857 -0.0001492237805087999 0.3626567840589067 0.9319227622009857 -0.0001492237805087999 0.3626567840589067 0.9319227622009857 -0.0001492237805087999 -0.3626567840589067 -0.9319227622009857 0.0001492237805087999 -0.3626567840589067 -0.9319227622009857 0.0001492237805087999 -0.3626567840589067 -0.9319227622009857 0.0001492237805087999 -0.3626567840589067 -0.9319227622009857 0.0001492237805087999 0.9929321737711651 0.1186831528988094 -8.664910318771551e-005 0.9929321737711651 0.1186831528988094 -8.664910318771551e-005 0.9929321737711651 0.1186831528988094 -8.664910318771551e-005 0.9929321737711651 0.1186831528988094 -8.664910318771551e-005 -0.9929321737711651 -0.1186831528988094 8.664910318771551e-005 -0.9929321737711651 -0.1186831528988094 8.664910318771551e-005 -0.9929321737711651 -0.1186831528988094 8.664910318771551e-005 -0.9929321737711651 -0.1186831528988094 8.664910318771551e-005 -0.5937324947068208 0.804662488719909 -6.305788912813869e-005 -0.5937324947068208 0.804662488719909 -6.305788912813869e-005 -0.5937324947068208 0.804662488719909 -6.305788912813869e-005 -0.5937324947068208 0.804662488719909 -6.305788912813869e-005 0.5937324947068208 -0.804662488719909 6.305788912813869e-005 0.5937324947068208 -0.804662488719909 6.305788912813869e-005 0.5937324947068208 -0.804662488719909 6.305788912813869e-005 0.5937324947068208 -0.804662488719909 6.305788912813869e-005 -0.9929331988477452 -0.1186745765448573 8.664804151385675e-005 -0.9929331988477452 -0.1186745765448573 8.664804151385675e-005 -0.9929331988477452 -0.1186745765448573 8.664804151385675e-005 -0.9929331988477452 -0.1186745765448573 8.664804151385675e-005 0.9929331988477452 0.1186745765448573 -8.664804151385675e-005 0.9929331988477452 0.1186745765448573 -8.664804151385675e-005 0.9929331988477452 0.1186745765448573 -8.664804151385675e-005 0.9929331988477452 0.1186745765448573 -8.664804151385675e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID570\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID566\">\r\n\t\t\t\t\t<float_array count=\"32\" id=\"ID571\">28.7039268041683 -0.9082730092852656 26.12050239240346 -1.999657127417264 28.70392680375531 -1.999657272580908 26.12050239281629 -0.90827286412167 26.12049926903834 -1.999656888307792 21.6862352645625 -0.9083213178374616 21.68623526414954 -1.999705450630577 26.12049926945115 -0.9082727555147214 -1.221867211920452 -2.002669913801543 -5.041228213303775 -0.9114124877493375 -5.041147834422644 -2.002797441267711 -1.221947590801674 -0.911284960283171 2.832069208477575 -0.9106418112124333 -1.221866430031561 -2.002668632266737 2.832149587304718 -2.002026066341304 -1.221946808858618 -0.9112843771379111</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID571\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID565\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID563\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID564\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID565\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID566\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 9 5 10 6 9 5 8 4 11 7 16 8 17 9 18 10 17 9 16 8 19 11 24 12 25 13 26 14 25 13 24 12 27 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID565\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID572\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID573\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID577\">757.9741226576152 -1131.600550244281 178.4430030355628 314.682215802471 -1453.308683037476 6.628751224173087 757.961842440548 -1131.623292284899 6.571406651207198 314.6944960195152 -1453.285940996825 178.5003476085221 314.6944960195152 -1453.285940996825 178.5003476085221 757.9741226576152 -1131.600550244281 178.4430030355628 314.682215802471 -1453.308683037476 6.628751224173087 757.961842440548 -1131.623292284899 6.571406651207198 314.682215802471 -1453.308683037476 6.628751224173087 -616.6814273596008 -1090.841148840437 178.4993203855105 -616.6937075765735 -1090.863890881187 6.627724001162136 314.6944960195152 -1453.285940996825 178.5003476085221 314.6944960195152 -1453.285940996825 178.5003476085221 314.682215802471 -1453.308683037476 6.628751224173087 -616.6814273596008 -1090.841148840437 178.4993203855105 -616.6937075765735 -1090.863890881187 6.627724001162136 690.9226264704496 -570.7158071957558 6.508744234169598 757.9741226576152 -1131.600550244281 178.4430030355628 757.961842440548 -1131.623292284899 6.571406651207198 690.9349066874945 -570.6930651551184 178.3803406185182 690.9349066874945 -570.6930651551184 178.3803406185182 690.9226264704496 -570.7158071957558 6.508744234169598 757.9741226576152 -1131.600550244281 178.4430030355628 757.961842440548 -1131.623292284899 6.571406651207198 -616.6814273596008 -1090.841148840437 178.4993203855105 -643.5820448534417 -865.9274085183247 6.602595148989295 -616.6937075765735 -1090.863890881187 6.627724001162136 -643.5697646364301 -865.9046664776251 178.4741915333449 -643.5697646364301 -865.9046664776251 178.4741915333449 -616.6814273596008 -1090.841148840437 178.4993203855105 -643.5820448534417 -865.9274085183247 6.602595148989295 -616.6937075765735 -1090.863890881187 6.627724001162136 79.10676701244074 -332.6033033470008 178.379666185925 690.9226264704496 -570.7158071957558 6.508744234169598 79.09448679540651 -332.6260453876753 6.508069801569121 690.9349066874945 -570.6930651551184 178.3803406185182 690.9349066874945 -570.6930651551184 178.3803406185182 79.10676701244074 -332.6033033470008 178.379666185925 690.9226264704496 -570.7158071957558 6.508744234169598 79.09448679540651 -332.6260453876753 6.508069801569121 -643.5820448534417 -865.9274085183247 6.602595148989295 79.10676701244074 -332.6033033470008 178.379666185925 79.09448679540651 -332.6260453876753 6.508069801569121 -643.5697646364301 -865.9046664776251 178.4741915333449 -643.5697646364301 -865.9046664776251 178.4741915333449 -643.5820448534417 -865.9274085183247 6.602595148989295 79.10676701244074 -332.6033033470008 178.379666185925 79.09448679540651 -332.6260453876753 6.508069801569121</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID577\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID574\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID578\">0.5873357120689711 -0.8093434111716 6.419932430302767e-005 0.5873357120689711 -0.8093434111716 6.419932430302767e-005 0.5873357120689711 -0.8093434111716 6.419932430302767e-005 0.5873357120689711 -0.8093434111716 6.419932430302767e-005 -0.5873357120689711 0.8093434111716 -6.419932430302767e-005 -0.5873357120689711 0.8093434111716 -6.419932430302767e-005 -0.5873357120689711 0.8093434111716 -6.419932430302767e-005 -0.5873357120689711 0.8093434111716 -6.419932430302767e-005 -0.3626574879637718 -0.9319224882768235 0.0001492237946913271 -0.3626574879637718 -0.9319224882768235 0.0001492237946913271 -0.3626574879637718 -0.9319224882768235 0.0001492237946913271 -0.3626574879637718 -0.9319224882768235 0.0001492237946913271 0.3626574879637718 0.9319224882768235 -0.0001492237946913271 0.3626574879637718 0.9319224882768235 -0.0001492237946913271 0.3626574879637718 0.9319224882768235 -0.0001492237946913271 0.3626574879637718 0.9319224882768235 -0.0001492237946913271 0.9929331989615938 0.1186745755923016 -8.664804156443037e-005 0.9929331989615938 0.1186745755923016 -8.664804156443037e-005 0.9929331989615938 0.1186745755923016 -8.664804156443037e-005 0.9929331989615938 0.1186745755923016 -8.664804156443037e-005 -0.9929331989615938 -0.1186745755923016 8.664804156443037e-005 -0.9929331989615938 -0.1186745755923016 8.664804156443037e-005 -0.9929331989615938 -0.1186745755923016 8.664804156443037e-005 -0.9929331989615938 -0.1186745755923016 8.664804156443037e-005 -0.9929310619726279 -0.1186924541057381 8.66502542556675e-005 -0.9929310619726279 -0.1186924541057381 8.66502542556675e-005 -0.9929310619726279 -0.1186924541057381 8.66502542556675e-005 -0.9929310619726279 -0.1186924541057381 8.66502542556675e-005 0.9929310619726279 0.1186924541057381 -8.66502542556675e-005 0.9929310619726279 0.1186924541057381 -8.66502542556675e-005 0.9929310619726279 0.1186924541057381 -8.66502542556675e-005 0.9929310619726279 0.1186924541057381 -8.66502542556675e-005 0.3626534383932218 0.9319240641564405 -0.000149223713671235 0.3626534383932218 0.9319240641564405 -0.000149223713671235 0.3626534383932218 0.9319240641564405 -0.000149223713671235 0.3626534383932218 0.9319240641564405 -0.000149223713671235 -0.3626534383932218 -0.9319240641564405 0.000149223713671235 -0.3626534383932218 -0.9319240641564405 0.000149223713671235 -0.3626534383932218 -0.9319240641564405 0.000149223713671235 -0.3626534383932218 -0.9319240641564405 0.000149223713671235 -0.5937782462270834 0.8046287282543585 -6.30496869169532e-005 -0.5937782462270834 0.8046287282543585 -6.30496869169532e-005 -0.5937782462270834 0.8046287282543585 -6.30496869169532e-005 -0.5937782462270834 0.8046287282543585 -6.30496869169532e-005 0.5937782462270834 -0.8046287282543585 6.30496869169532e-005 0.5937782462270834 -0.8046287282543585 6.30496869169532e-005 0.5937782462270834 -0.8046287282543585 6.30496869169532e-005 0.5937782462270834 -0.8046287282543585 6.30496869169532e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID578\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID576\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID579\">12.58552150267962 -0.9085004138445678 10.12971310049306 -1.999523965931006 12.58540271876084 -1.999884667469208 10.12983188441184 -0.9081397123064074 10.12971638860472 -1.999524614977825 3.188596370704492 -0.907633053627696 3.188477586781296 -1.999017661519349 10.12983517252862 -0.9081400070861678 9 -1.999999999999996 5.076596296902254 -0.9086583179014889 5.076596296902382 -2.000042969708957 9.000000000000016 -0.9086153481925714 17.34309993117008 -0.9079894526059589 16.3274712070428 -1.99953469722414 17.34318030879515 -1.99937370773495 16.32739082941797 -0.9081504420951041 11.94358774331454 -0.9086151882711533 8.999996796173964 -1.999999288038659 11.94358774331441 -1.999999451566784 8.999996796173988 -0.9086150247430742 18.18151636724323 -2.000175744257715 11.94359101844554 -0.9086154374285926 11.94359101844542 -2.000000000000001 18.18151636724338 -0.9087911816863077</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID579\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID575\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID573\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID574\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID575\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID576\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 9 5 10 6 9 5 8 4 11 7 16 8 17 9 18 10 17 9 16 8 19 11 24 12 25 13 26 14 25 13 24 12 27 15 32 16 33 17 34 18 33 17 32 16 35 19 40 20 41 21 42 22 41 21 40 20 43 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID575\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29 36 37 38 39 38 37 44 45 46 47 46 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID580\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID581\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID590\">-2642.61225065431 1782.941209736075 6.381438484776766 -2924.837677432432 1892.793566311443 178.2527239545406 -2924.849957649424 1892.770824270724 6.381127570177775 -2642.599970437267 1782.963951776733 178.2530348691318 -2642.599970437267 1782.963951776733 178.2530348691318 -2642.61225065431 1782.941209736075 6.381438484776766 -2924.837677432432 1892.793566311443 178.2527239545406 -2924.849957649424 1892.770824270724 6.381127570177775 -1976.911174948197 2274.184082754914 178.1659666137773 -2642.61225065431 1782.941209736075 6.381438484776766 -1976.923455165229 2274.16134071427 6.294370229421915 -2642.599970437267 1782.963951776733 178.2530348691318 -2642.599970437267 1782.963951776733 178.2530348691318 -1976.911174948197 2274.184082754914 178.1659666137773 -2642.61225065431 1782.941209736075 6.381438484776766 -1976.923455165229 2274.16134071427 6.294370229421915</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID590\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID582\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID591\">-0.3626484715871639 -0.9319259969481519 0.0001492236146117464 -0.3626484715871639 -0.9319259969481519 0.0001492236146117464 -0.3626484715871639 -0.9319259969481519 0.0001492236146117464 -0.3626484715871639 -0.9319259969481519 0.0001492236146117464 0.3626484715871639 0.9319259969481519 -0.0001492236146117464 0.3626484715871639 0.9319259969481519 -0.0001492236146117464 0.3626484715871639 0.9319259969481519 -0.0001492236146117464 0.3626484715871639 0.9319259969481519 -0.0001492236146117464 0.593757149895852 -0.804644295929459 6.305346907935783e-005 0.593757149895852 -0.804644295929459 6.305346907935783e-005 0.593757149895852 -0.804644295929459 6.305346907935783e-005 0.593757149895852 -0.804644295929459 6.305346907935783e-005 -0.593757149895852 0.804644295929459 -6.305346907935783e-005 -0.593757149895852 0.804644295929459 -6.305346907935783e-005 -0.593757149895852 0.804644295929459 -6.305346907935783e-005 -0.593757149895852 0.804644295929459 -6.305346907935783e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID591\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID584\">\r\n\t\t\t\t\t<float_array count=\"32\" id=\"ID592\">8.027640905124365 -1.99934060438856 5.924342966028881 -0.9078016721454689 5.924223786051591 -1.999186343686747 8.027760085102127 -0.9079559328473315 -1002.009759562111 45.30292570866659 -1002.010789798992 1.647539740988163 -1099.608311732875 45.30284673635955 -1099.609341969733 1.64746076867914 11.73709022733111 -0.9085032776797688 8.02763783061927 -1.999339838661371 11.73697104737249 -1.999887531228724 8.027757010577975 -0.9079555851124184 -344.0814115913018 45.32437699857137 -77.47101608532508 45.30226166166737 -344.0889475245172 1.668991427430311 -77.47855201853488 1.646876090526218</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID592\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID583\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID581\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID582\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID583\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID584\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 8 9 9 10 10 9 9 8 8 11 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID583\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID584\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 12 12 13 13 14 14 15 15 14 14 13 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID593\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID596\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID599\">-616.6814273596008 -1090.841148840437 178.4993203855105 79.10676701244074 -332.6033033470008 178.379666185925 -643.5697646364301 -865.9046664776251 178.4741915333449 314.6944960195152 -1453.285940996825 178.5003476085221 690.9349066874945 -570.6930651551184 178.3803406185182 757.9741226576152 -1131.600550244281 178.4430030355628 757.9741226576152 -1131.600550244281 178.4430030355628 314.6944960195152 -1453.285940996825 178.5003476085221 690.9349066874945 -570.6930651551184 178.3803406185182 79.10676701244074 -332.6033033470008 178.379666185925 -616.6814273596008 -1090.841148840437 178.4993203855105 -643.5697646364301 -865.9046664776251 178.4741915333449</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID599\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID597\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID600\">4.443827017702276e-005 0.0001170273620707497 0.9999999921649184 4.443827017702276e-005 0.0001170273620707497 0.9999999921649184 4.443827017702276e-005 0.0001170273620707497 0.9999999921649184 4.443827017702276e-005 0.0001170273620707497 0.9999999921649184 4.443827017702276e-005 0.0001170273620707497 0.9999999921649184 4.443827017702276e-005 0.0001170273620707497 0.9999999921649184 -4.443827017702276e-005 -0.0001170273620707497 -0.9999999921649184 -4.443827017702276e-005 -0.0001170273620707497 -0.9999999921649184 -4.443827017702276e-005 -0.0001170273620707497 -0.9999999921649184 -4.443827017702276e-005 -0.0001170273620707497 -0.9999999921649184 -4.443827017702276e-005 -0.0001170273620707497 -0.9999999921649184 -4.443827017702276e-005 -0.0001170273620707497 -0.9999999921649184</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID600\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID598\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID596\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID597\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID598\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID598\" />\r\n\t\t\t\t\t<p>6 7 8 8 7 9 7 10 9 11 9 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID601\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID602\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID605\">-2924.837677432432 1892.793566311443 178.2527239545406 -2589.651412518632 3117.086043581751 178.0945531364849 -3032.141364356113 2790.588085716448 178.1524258196989 -2642.599970437267 1782.963951776733 178.2530348691318 -1976.911174948197 2274.184082754914 178.1659666137773 -2052.684975347091 2908.12610713386 178.0951453070115 -2052.684975347091 2908.12610713386 178.0951453070115 -1976.911174948197 2274.184082754914 178.1659666137773 -2589.651412518632 3117.086043581751 178.0945531364849 -2642.599970437267 1782.963951776733 178.2530348691318 -2924.837677432432 1892.793566311443 178.2527239545406 -3032.141364356113 2790.588085716448 178.1524258196989</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID605\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID603\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID606\">4.443827017735062e-005 0.0001170273620704021 0.9999999921649184 4.443827017735062e-005 0.0001170273620704021 0.9999999921649184 4.443827017735062e-005 0.0001170273620704021 0.9999999921649184 4.443827017735062e-005 0.0001170273620704021 0.9999999921649184 4.443827017735062e-005 0.0001170273620704021 0.9999999921649184 4.443827017735062e-005 0.0001170273620704021 0.9999999921649184 -4.443827017735062e-005 -0.0001170273620704021 -0.9999999921649184 -4.443827017735062e-005 -0.0001170273620704021 -0.9999999921649184 -4.443827017735062e-005 -0.0001170273620704021 -0.9999999921649184 -4.443827017735062e-005 -0.0001170273620704021 -0.9999999921649184 -4.443827017735062e-005 -0.0001170273620704021 -0.9999999921649184 -4.443827017735062e-005 -0.0001170273620704021 -0.9999999921649184</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID606\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID604\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID602\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID603\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID604\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID604\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 9 10 8 11 8 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID607\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID608\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID611\">79.09448679540651 -332.6260453876753 6.508069801569121 -616.6937075765735 -1090.863890881187 6.627724001162136 -643.5820448534417 -865.9274085183247 6.602595148989295 314.682215802471 -1453.308683037476 6.628751224173087 690.9226264704496 -570.7158071957558 6.508744234169598 757.961842440548 -1131.623292284899 6.571406651207198 757.961842440548 -1131.623292284899 6.571406651207198 690.9226264704496 -570.7158071957558 6.508744234169598 314.682215802471 -1453.308683037476 6.628751224173087 79.09448679540651 -332.6260453876753 6.508069801569121 -616.6937075765735 -1090.863890881187 6.627724001162136 -643.5820448534417 -865.9274085183247 6.602595148989295</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID611\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID609\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID612\">-4.443827017651606e-005 -0.0001170273620746301 -0.9999999921649184 -4.443827017651606e-005 -0.0001170273620746301 -0.9999999921649184 -4.443827017651606e-005 -0.0001170273620746301 -0.9999999921649184 -4.443827017651606e-005 -0.0001170273620746301 -0.9999999921649184 -4.443827017651606e-005 -0.0001170273620746301 -0.9999999921649184 -4.443827017651606e-005 -0.0001170273620746301 -0.9999999921649184 4.443827017651606e-005 0.0001170273620746301 0.9999999921649184 4.443827017651606e-005 0.0001170273620746301 0.9999999921649184 4.443827017651606e-005 0.0001170273620746301 0.9999999921649184 4.443827017651606e-005 0.0001170273620746301 0.9999999921649184 4.443827017651606e-005 0.0001170273620746301 0.9999999921649184 4.443827017651606e-005 0.0001170273620746301 0.9999999921649184</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID612\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID610\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID608\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID609\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID610\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID613\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID614\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID618\">-2589.663692735663 3117.063301541073 6.222956752128894 -2924.849957649424 1892.770824270724 6.381127570177775 -3032.153644573142 2790.565343675744 6.280829435343208 -2642.61225065431 1782.941209736075 6.381438484776766 -1976.923455165229 2274.16134071427 6.294370229421915 -2052.697255564135 2908.103365093239 6.223548922663042 -2052.697255564135 2908.103365093239 6.223548922663042 -2589.663692735663 3117.063301541073 6.222956752128894 -1976.923455165229 2274.16134071427 6.294370229421915 -2642.61225065431 1782.941209736075 6.381438484776766 -2924.849957649424 1892.770824270724 6.381127570177775 -3032.153644573142 2790.565343675744 6.280829435343208</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID618\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID615\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID619\">-4.44382701749421e-005 -0.0001170273620677684 -0.9999999921649184 -4.44382701749421e-005 -0.0001170273620677684 -0.9999999921649184 -4.44382701749421e-005 -0.0001170273620677684 -0.9999999921649184 -4.44382701749421e-005 -0.0001170273620677684 -0.9999999921649184 -4.44382701749421e-005 -0.0001170273620677684 -0.9999999921649184 -4.44382701749421e-005 -0.0001170273620677684 -0.9999999921649184 4.44382701749421e-005 0.0001170273620677684 0.9999999921649184 4.44382701749421e-005 0.0001170273620677684 0.9999999921649184 4.44382701749421e-005 0.0001170273620677684 0.9999999921649184 4.44382701749421e-005 0.0001170273620677684 0.9999999921649184 4.44382701749421e-005 0.0001170273620677684 0.9999999921649184 4.44382701749421e-005 0.0001170273620677684 0.9999999921649184</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID619\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID617\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID620\">661.5074377942035 738.658067392351 834.5515840738524 791.7338916135483 637.088384481479 577.6367920974673 851.6149209728457 452.8668779746186 942.5695499290994 480.7636002574478 977.149502865862 708.8034097478713</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID620\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID616\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID614\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID615\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID616\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID616\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID617\" />\r\n\t\t\t\t\t<p>6 0 7 1 8 2 8 2 7 1 9 3 9 3 7 1 10 4 11 5 10 4 7 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID621\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID622\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID626\">-2782.606645953467 702.7564534135813 163.9954321766074 -2877.559763684219 1497.100560638968 6.425330323318086 -2782.617897988619 702.7356154884951 6.514073705779495 -2782.605617771399 702.7583575296449 178.3856741661523 -2877.547483466969 1497.123302680082 178.296930783676 -2877.547483466969 1497.123302680082 178.296930783676 -2782.605617771399 702.7583575296449 178.3856741661523 -2877.559763684219 1497.100560638968 6.425330323318086 -2782.606645953467 702.7564534135813 163.9954321766074 -2782.617897988619 702.7356154884951 6.514073705779495 -2877.559763684219 1497.100560638968 6.425330323318086 -2083.008732976815 2083.598617063527 178.1929891962383 -2083.021013194039 2083.57587502241 6.321388735874187 -2877.547483466969 1497.123302680082 178.296930783676 -2877.547483466969 1497.123302680082 178.296930783676 -2877.559763684219 1497.100560638968 6.425330323318086 -2083.008732976815 2083.598617063527 178.1929891962383 -2083.021013194039 2083.57587502241 6.321388735874187 -2083.008732976815 2083.598617063527 178.1929891962383 -1947.85624929754 2030.978034175062 6.3215376341442 -2083.021013194039 2083.57587502241 6.321388735874187 -1947.843969080333 2031.00077621621 178.1931380945089 -1947.843969080333 2031.00077621621 178.1931380945089 -2083.008732976815 2083.598617063527 178.1929891962383 -1947.85624929754 2030.978034175062 6.3215376341442 -2083.021013194039 2083.57587502241 6.321388735874187</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID626\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID623\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID627\">-0.9929331989616043 -0.1186745755922158 8.664804080649303e-005 -0.9929331989616043 -0.1186745755922158 8.664804080649303e-005 -0.9929331989616043 -0.1186745755922158 8.664804080649303e-005 -0.9929331989616043 -0.1186745755922158 8.664804080649303e-005 -0.9929331989616043 -0.1186745755922158 8.664804080649303e-005 0.9929331989616043 0.1186745755922158 -8.664804080649303e-005 0.9929331989616043 0.1186745755922158 -8.664804080649303e-005 0.9929331989616043 0.1186745755922158 -8.664804080649303e-005 0.9929331989616043 0.1186745755922158 -8.664804080649303e-005 0.9929331989616043 0.1186745755922158 -8.664804080649303e-005 -0.5938719961906768 0.8045595367450177 -6.303287775654737e-005 -0.5938719961906768 0.8045595367450177 -6.303287775654737e-005 -0.5938719961906768 0.8045595367450177 -6.303287775654737e-005 -0.5938719961906768 0.8045595367450177 -6.303287775654737e-005 0.5938719961906768 -0.8045595367450177 6.303287775654737e-005 0.5938719961906768 -0.8045595367450177 6.303287775654737e-005 0.5938719961906768 -0.8045595367450177 6.303287775654737e-005 0.5938719961906768 -0.8045595367450177 6.303287775654737e-005 0.3626484732043631 0.9319259963188373 -0.0001492236146067937 0.3626484732043631 0.9319259963188373 -0.0001492236146067937 0.3626484732043631 0.9319259963188373 -0.0001492236146067937 0.3626484732043631 0.9319259963188373 -0.0001492236146067937 -0.3626484732043631 -0.9319259963188373 0.0001492236146067937 -0.3626484732043631 -0.9319259963188373 0.0001492236146067937 -0.3626484732043631 -0.9319259963188373 0.0001492236146067937 -0.3626484732043631 -0.9319259963188373 0.0001492236146067937</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID627\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID625\">\r\n\t\t\t\t\t<float_array count=\"26\" id=\"ID628\">8.205712892777534 -1.001168062705913 4.618809631918238 -2.001742878781858 8.205786541752104 -2.001174339060047 8.205706162923438 -0.9097900580485216 4.618729253089747 -0.9103585977704278 4.61881183821754 -2.001743834968473 -2.240077997770137 -0.9105880553004526 -2.239997618913689 -2.001972857639106 4.618731459360968 -0.9103590326298592 24.90646582723975 -0.9083917629817662 24.2561705493675 -1.999776016647787 24.90646582785202 -1.999776052160023 24.25617054875535 -0.9083917274695275</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"13\" source=\"#ID628\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID624\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID622\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID623\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID624\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID625\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 10 5 11 6 12 7 11 6 10 5 13 8 18 9 19 10 20 11 19 10 18 9 21 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID624\" />\r\n\t\t\t\t\t<p>5 6 7 6 8 7 9 7 8 14 15 16 17 16 15 22 23 24 25 24 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID629\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID630\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID633\">-2083.021013194039 2083.57587502241 6.321388735874187 -2782.617897988619 702.7356154884951 6.514073705779495 -2877.559763684219 1497.100560638968 6.425330323318086 -2780.281784113321 683.189686442161 6.51625730145274 -2163.745756567331 443.2404384510091 6.51694013441525 -2146.513277578746 87.02337458320562 6.557861496494994 -1795.909354547605 -23.10892946950207 6.555169757639703 -1947.85624929754 2030.978034175062 6.3215376341442 -1766.911006382991 517.1461689418934 6.490656491691141 -1719.589707954073 -661.6720880949076 6.626507607092457 -1617.386541404412 327.5623376240314 6.506198378902298 -1701.244861747652 -668.8112325656791 6.626527872221217 -933.6920495087286 -967.5040366359863 6.627374380789156 -155.6805498554023 -241.2603161749157 6.507810507811612 -138.9167403491834 -381.0293447180238 6.523422353939353 -138.9167403491834 -381.0293447180238 6.523422353939353 -155.6805498554023 -241.2603161749157 6.507810507811612 -933.6920495087286 -967.5040366359863 6.627374380789156 -1617.386541404412 327.5623376240314 6.506198378902298 -1701.244861747652 -668.8112325656791 6.626527872221217 -1719.589707954073 -661.6720880949076 6.626507607092457 -1766.911006382991 517.1461689418934 6.490656491691141 -1795.909354547605 -23.10892946950207 6.555169757639703 -1947.85624929754 2030.978034175062 6.3215376341442 -2083.021013194039 2083.57587502241 6.321388735874187 -2146.513277578746 87.02337458320562 6.557861496494994 -2163.745756567331 443.2404384510091 6.51694013441525 -2780.281784113321 683.189686442161 6.51625730145274 -2782.617897988619 702.7356154884951 6.514073705779495 -2877.559763684219 1497.100560638968 6.425330323318086 -2780.270532061508 683.2105243979172 163.9978474349333 -2782.617897988619 702.7356154884951 6.514073705779495 -2780.281784113321 683.189686442161 6.51625730145274 -2782.606645953467 702.7564534135813 163.9954321766074 -2782.606645953467 702.7564534135813 163.9954321766074 -2780.270532061508 683.2105243979172 163.9978474349333 -2782.617897988619 702.7356154884951 6.514073705779495 -2780.281784113321 683.189686442161 6.51625730145274</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID633\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID631\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID634\">-4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 -4.443827038285983e-005 -0.000117027362434889 -0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 4.443827038285983e-005 0.000117027362434889 0.9999999921649183 -0.9929331989612825 -0.1186745755949079 8.664804110564462e-005 -0.9929331989612825 -0.1186745755949079 8.664804110564462e-005 -0.9929331989612825 -0.1186745755949079 8.664804110564462e-005 -0.9929331989612825 -0.1186745755949079 8.664804110564462e-005 0.9929331989612825 0.1186745755949079 -8.664804110564462e-005 0.9929331989612825 0.1186745755949079 -8.664804110564462e-005 0.9929331989612825 0.1186745755949079 -8.664804110564462e-005 0.9929331989612825 0.1186745755949079 -8.664804110564462e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID634\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID632\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID630\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID631\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"30\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID632\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 6 7 8 6 8 9 9 8 10 9 10 11 11 10 12 12 10 13 12 13 14 15 16 17 16 18 17 17 18 19 19 18 20 18 21 20 20 21 22 21 23 22 23 24 22 22 24 25 25 24 26 26 24 27 27 24 28 29 28 24 30 31 32 31 30 33 34 35 36 37 36 35</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID635\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID636\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID639\">-1947.85624929754 2030.978034175062 6.3215376341442 -1766.898726165784 517.1689109830436 178.3622569520571 -1766.911006382991 517.1461689418934 6.490656491691141 -1947.843969080333 2031.00077621621 178.1931380945089 -1947.843969080333 2031.00077621621 178.1931380945089 -1947.85624929754 2030.978034175062 6.3215376341442 -1766.898726165784 517.1689109830436 178.3622569520571 -1766.911006382991 517.1461689418934 6.490656491691141 -1766.911006382991 517.1461689418934 6.490656491691141 -1617.375289440541 327.5831754171904 163.9865595512456 -1617.386541404412 327.5623376240314 6.506198378902298 -1617.374261187221 327.5850796652244 178.3777988392769 -1766.898726165784 517.1689109830436 178.3622569520571 -1766.898726165784 517.1689109830436 178.3622569520571 -1766.911006382991 517.1461689418934 6.490656491691141 -1617.374261187221 327.5850796652244 178.3777988392769 -1617.375289440541 327.5831754171904 163.9865595512456 -1617.386541404412 327.5623376240314 6.506198378902298</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID639\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID637\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID640\">0.9929321737709985 0.1186831529002025 -8.664910313245019e-005 0.9929321737709985 0.1186831529002025 -8.664910313245019e-005 0.9929321737709985 0.1186831529002025 -8.664910313245019e-005 0.9929321737709985 0.1186831529002025 -8.664910313245019e-005 -0.9929321737709985 -0.1186831529002025 8.664910313245019e-005 -0.9929321737709985 -0.1186831529002025 8.664910313245019e-005 -0.9929321737709985 -0.1186831529002025 8.664910313245019e-005 -0.9929321737709985 -0.1186831529002025 8.664910313245019e-005 0.7851787307950814 0.6192691996629999 -0.0001380426495719653 0.7851787307950814 0.6192691996629999 -0.0001380426495719653 0.7851787307950814 0.6192691996629999 -0.0001380426495719653 0.7851787307950814 0.6192691996629999 -0.0001380426495719653 0.7851787307950814 0.6192691996629999 -0.0001380426495719653 -0.7851787307950814 -0.6192691996629999 0.0001380426495719653 -0.7851787307950814 -0.6192691996629999 0.0001380426495719653 -0.7851787307950814 -0.6192691996629999 0.0001380426495719653 -0.7851787307950814 -0.6192691996629999 0.0001380426495719653 -0.7851787307950814 -0.6192691996629999 0.0001380426495719653</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID640\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID638\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID636\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID637\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID638\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 11 8 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID638\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 13 14 15 15 14 16 17 16 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID641\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID642\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID646\">-138.9054882690265 -381.0085067096661 164.0054095921189 -933.6920495087286 -967.5040366359863 6.627374380789156 -138.9167403491834 -381.0293447180238 6.523422353939353 -933.6904432254547 -967.4998078350009 42.75944162313088 -933.6898211959989 -967.4981848248174 51.82895479430209 -933.6797692916892 -967.4812945953238 178.4989707651535 -138.9044601321706 -381.0066026773329 178.3950187383028 -138.9044601321706 -381.0066026773329 178.3950187383028 -138.9054882690265 -381.0085067096661 164.0054095921189 -933.6797692916892 -967.4812945953238 178.4989707651535 -933.6898211959989 -967.4981848248174 51.82895479430209 -933.6904432254547 -967.4998078350009 42.75944162313088 -933.6920495087286 -967.5040366359863 6.627374380789156 -138.9167403491834 -381.0293447180238 6.523422353939353 -155.6805498554023 -241.2603161749157 6.507810507811612 -138.9054882690265 -381.0085067096661 164.0054095921189 -138.9167403491834 -381.0293447180238 6.523422353939353 -155.6690733465667 -241.2413493509248 163.989797954998 -155.6690733465667 -241.2413493509248 163.989797954998 -155.6805498554023 -241.2603161749157 6.507810507811612 -138.9054882690265 -381.0085067096661 164.0054095921189 -138.9167403491834 -381.0293447180238 6.523422353939353</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID646\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID643\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID647\">0.5937570359074987 -0.8046443799928572 6.368870993791177e-005 0.5937570359074987 -0.8046443799928572 6.368870993791177e-005 0.5937570359074987 -0.8046443799928572 6.368870993791177e-005 0.5937570359074987 -0.8046443799928572 6.368870993791177e-005 0.5937570359074987 -0.8046443799928572 6.368870993791177e-005 0.5937570359074987 -0.8046443799928572 6.368870993791177e-005 0.5937570359074987 -0.8046443799928572 6.368870993791177e-005 -0.5937570359074987 0.8046443799928572 -6.368870993791177e-005 -0.5937570359074987 0.8046443799928572 -6.368870993791177e-005 -0.5937570359074987 0.8046443799928572 -6.368870993791177e-005 -0.5937570359074987 0.8046443799928572 -6.368870993791177e-005 -0.5937570359074987 0.8046443799928572 -6.368870993791177e-005 -0.5937570359074987 0.8046443799928572 -6.368870993791177e-005 -0.5937570359074987 0.8046443799928572 -6.368870993791177e-005 0.9928839551740756 0.1190858683521163 -8.669894513195877e-005 0.9928839551740756 0.1190858683521163 -8.669894513195877e-005 0.9928839551740756 0.1190858683521163 -8.669894513195877e-005 0.9928839551740756 0.1190858683521163 -8.669894513195877e-005 -0.9928839551740756 -0.1190858683521163 8.669894513195877e-005 -0.9928839551740756 -0.1190858683521163 8.669894513195877e-005 -0.9928839551740756 -0.1190858683521163 8.669894513195877e-005 -0.9928839551740756 -0.1190858683521163 8.669894513195877e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID647\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID645\">\r\n\t\t\t\t\t<float_array count=\"22\" id=\"ID648\">11.29949352957597 -0.9997166818853662 6.870758709387972 -1.9990730515841 11.29938432772978 -1.999726949463618 6.870778775417328 -1.769634505167943 6.870786096608259 -1.712043116622187 6.870877889339685 -0.9076887980346189 11.29950350768147 -0.9083426959141421 12.27708448009978 -1.999806083293404 11.29949683024486 -0.9997169739102936 11.29938762840105 -1.999727533605296 12.27718059284163 -0.9997955225468012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"11\" source=\"#ID648\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID644\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID642\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID643\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID644\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID645\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 5 5 0 0 6 6 14 7 15 8 16 9 15 8 14 7 17 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID644\" />\r\n\t\t\t\t\t<p>7 8 9 9 8 10 10 8 11 11 8 12 13 12 8 18 19 20 21 20 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID649\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID650\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID654\">-1701.244861747652 -668.8112325656791 6.626527872221217 -1719.578372331366 -661.6510365888969 164.1200504594468 -1719.589707954073 -661.6720880949076 6.626507607092457 -1701.233526152754 -668.790181111315 164.1196843459528 -1701.233526152754 -668.790181111315 164.1196843459528 -1701.244861747652 -668.8112325656791 6.626527872221217 -1719.578372331366 -661.6510365888969 164.1200504594468 -1719.589707954073 -661.6720880949076 6.626507607092457</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID654\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID651\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID655\">-0.3626685393033102 -0.9319181873418565 0.0001506687488401185 -0.3626685393033102 -0.9319181873418565 0.0001506687488401185 -0.3626685393033102 -0.9319181873418565 0.0001506687488401185 -0.3626685393033102 -0.9319181873418565 0.0001506687488401185 0.3626685393033102 0.9319181873418565 -0.0001506687488401185 0.3626685393033102 0.9319181873418565 -0.0001506687488401185 0.3626685393033102 0.9319181873418565 -0.0001506687488401185 0.3626685393033102 0.9319181873418565 -0.0001506687488401185</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID655\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID653\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID656\">-432.7538464895798 41.63893547460688 -432.7547904437758 1.635673276220571 -439.0975964144972 41.6390284674354 -439.0985403710089 1.635668128877807</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID656\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID652\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID650\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID651\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID652\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID652\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID653\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID657\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID658\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID661\">-1719.578372331366 -661.6510365888969 164.1200504594468 -1795.909354547605 -23.10892946950207 6.555169757639703 -1719.58622785322 -661.6715023158699 6.634345764799797 -1795.901499025754 -23.08846374252471 164.040874452287 -1795.901499025754 -23.08846374252471 164.040874452287 -1719.578372331366 -661.6510365888969 164.1200504594468 -1795.909354547605 -23.10892946950207 6.555169757639703 -1719.58622785322 -661.6715023158699 6.634345764799797</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID661\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID659\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID662\">-0.9929327173167255 -0.118678619234451 6.495096747584689e-005 -0.9929327173167255 -0.118678619234451 6.495096747584689e-005 -0.9929327173167255 -0.118678619234451 6.495096747584689e-005 -0.9929327173167255 -0.118678619234451 6.495096747584689e-005 0.9929327173167255 0.118678619234451 -6.495096747584689e-005 0.9929327173167255 0.118678619234451 -6.495096747584689e-005 0.9929327173167255 0.118678619234451 -6.495096747584689e-005 0.9929327173167255 0.118678619234451 -6.495096747584689e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID662\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID660\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID658\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID659\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID660\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID663\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID664\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID667\">-2163.745756567331 443.2404384510091 6.51694013441525 -2780.270090441708 683.2068294284941 163.9978478915146 -2780.277945745659 683.1863642692179 6.51651161478901 -2163.737901263373 443.2609036103017 163.9982764111407 -2163.737901263373 443.2609036103017 163.9982764111407 -2163.745756567331 443.2404384510091 6.51694013441525 -2780.270090441708 683.2068294284941 163.9978478915146 -2780.277945745659 683.1863642692179 6.51651161478901</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID667\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID665\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID668\">-0.362687054601908 -0.9319109834360533 0.0001391956932219337 -0.362687054601908 -0.9319109834360533 0.0001391956932219337 -0.362687054601908 -0.9319109834360533 0.0001391956932219337 -0.362687054601908 -0.9319109834360533 0.0001391956932219337 0.362687054601908 0.9319109834360533 -0.0001391956932219337 0.362687054601908 0.9319109834360533 -0.0001391956932219337 0.362687054601908 0.9319109834360533 -0.0001391956932219337 0.362687054601908 0.9319109834360533 -0.0001391956932219337</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID668\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID666\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID664\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID665\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID666\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID669\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID672\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID675\">-1617.375289440541 327.5831754171904 163.9865595512456 -155.6805498554023 -241.2603161749157 6.507810507811612 -1617.382290528913 327.564745553917 6.506197908121962 -155.67354876837 -241.2418863151731 163.9881419793388 -155.67354876837 -241.2418863151731 163.9881419793388 -1617.375289440541 327.5831754171904 163.9865595512456 -155.6805498554023 -241.2603161749157 6.507810507811612 -1617.382290528913 327.564745553917 6.506197908121962</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID675\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID673\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID676\">0.362659738453384 0.931921616035171 -0.0001251851382459048 0.362659738453384 0.931921616035171 -0.0001251851382459048 0.362659738453384 0.931921616035171 -0.0001251851382459048 0.362659738453384 0.931921616035171 -0.0001251851382459048 -0.362659738453384 -0.931921616035171 0.0001251851382459048 -0.362659738453384 -0.931921616035171 0.0001251851382459048 -0.362659738453384 -0.931921616035171 0.0001251851382459048 -0.362659738453384 -0.931921616035171 0.0001251851382459048</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID676\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID674\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID672\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID673\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID674\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID674\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID677\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID678\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID682\">-933.6920495087286 -967.5040366359863 6.627374380789156 -1701.233526152754 -668.790181111315 164.1196843459528 -1701.24052376914 -668.8086140391742 6.626518334804274 -933.6904432254547 -967.4998078350009 42.75944162313088 -933.6898211959989 -967.4981848248174 51.82895479430209 -933.6850518923409 -967.4856037081254 164.1205403919371 -933.6850518923409 -967.4856037081254 164.1205403919371 -933.6898211959989 -967.4981848248174 51.82895479430209 -1701.233526152754 -668.790181111315 164.1196843459528 -933.6904432254547 -967.4998078350009 42.75944162313088 -933.6920495087286 -967.5040366359863 6.627374380789156 -1701.24052376914 -668.8086140391742 6.626518334804274</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID682\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID679\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID683\">-0.3626616027628005 -0.9319208905767868 0.0001248522535403346 -0.3626616027628005 -0.9319208905767868 0.0001248522535403346 -0.3626616027628005 -0.9319208905767868 0.0001248522535403346 -0.3626616027628005 -0.9319208905767868 0.0001248522535403346 -0.3626616027628005 -0.9319208905767868 0.0001248522535403346 -0.3626616027628005 -0.9319208905767868 0.0001248522535403346 0.3626616027628005 0.9319208905767868 -0.0001248522535403346 0.3626616027628005 0.9319208905767868 -0.0001248522535403346 0.3626616027628005 0.9319208905767868 -0.0001248522535403346 0.3626616027628005 0.9319208905767868 -0.0001248522535403346 0.3626616027628005 0.9319208905767868 -0.0001248522535403346 0.3626616027628005 0.9319208905767868 -0.0001248522535403346</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID683\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID681\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID684\">6.870761561609216 -1.999073881448592 1.150551614299461 -0.9985741439851468 1.150464176080932 -1.99865581211777 6.870781627643071 -1.769635239785849 6.870786666430838 -1.712043826987965 6.870848999827753 -0.9989922133159723 -167.3350381942507 41.64728611879102 -167.3350001433534 13.1252231726264 -432.7568219870246 41.64706868769085 -167.3349972683755 10.82156678998416 -167.3349854430161 1.644021638509905 -432.7567692357896 1.643804207409585</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID684\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID680\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID678\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID679\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID680\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID681\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 1 1 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID680\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID681\" />\r\n\t\t\t\t\t<p>6 6 7 7 8 8 7 7 9 9 8 8 9 9 10 10 8 8 11 11 8 8 10 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID685\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID688\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID690\">-1701.240964055201 -668.8105097553744 6.626543456345672 -933.6920495087286 -967.5040366359863 6.627374380789156</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID690\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID689\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID688\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID689\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID691\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID692\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID694\">-933.6898211959989 -967.4981848248174 51.82895479430209 -933.6835767157863 -967.4817860857397 178.4989551463708</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID694\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID693\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID692\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID693\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID695\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID698\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID700\">-155.6682696381587 -241.2375741337999 178.3794109681765 -1617.374261187221 327.5850796652244 178.3777988392769</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID700\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID699\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID698\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID699\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID701\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID702\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID704\">-2780.270532061508 683.2105243979172 163.9978474349333 -2780.270090441708 683.2068294284941 163.9978478915146</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID704\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID703\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID702\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID703\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID707\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID710\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID713\">280.0817149750826 50.35896352854525 224.7152716895606 276.3010517652199 49.84610919086663 227.8951654067346 276.8759641029476 48.85332303086989 224.609288811297 279.5068026373344 51.35174968851925 228.0011482849323 187.4327398379261 253.0758973302391 147.2566095133318 279.5068026373344 51.35174968851925 228.0011482849323 280.0817149750826 50.35896352854525 224.7152716895606 187.0885180399914 253.5639301584224 150.7353536559517 152.812932589366 326.7879248362133 147.2439506249723 187.0879881832919 253.5650583221614 150.7353534622068 152.4596866781169 327.2951716849866 150.7226914678847 -19.25671631164869 703.6756732781842 -2.261597253830246 -19.84777947359601 704.7038162217918 1.010512154734869 276.3010517652199 49.84610919086663 227.8951654067346 187.0885180399914 253.5639301584224 150.7353536559517 183.8827671803291 252.0582896335122 150.6293707881719 279.5068026373344 51.35174968851925 228.0011482849323 276.3010517652199 49.84610919086663 227.8951654067346 184.2269889782542 251.5702568052948 147.150626645484 276.8759641029476 48.85332303086989 224.609288811297 183.8827671803291 252.0582896335122 150.6293707881719 149.6071817290708 325.2822843125982 147.1379677571248 149.2539358178419 325.7895311613834 150.6167086001053 -22.46246718491557 702.1700327829663 -2.367580132944227 -23.05353034683731 703.198175726594 0.9045292756849506 187.4327398379261 253.0758973302391 147.2566095133318 276.8759641029476 48.85332303086989 224.609288811297 184.2269889782542 251.5702568052948 147.150626645484 280.0817149750826 50.35896352854525 224.7152716895606 -19.25671631164869 703.6756732781842 -2.261597253830246 149.6071817290708 325.2822843125982 147.1379677571248 -22.46246718491557 702.1700327829663 -2.367580132944227 152.812932589366 326.7879248362133 147.2439506249723 -23.05353034683731 703.198175726594 0.9045292756849506 -19.25671631164869 703.6756732781842 -2.261597253830246 -22.46246718491557 702.1700327829663 -2.367580132944227 -19.84777947359601 704.7038162217918 1.010512154734869 149.2539358178419 325.7895311613834 150.6167086001053 -19.84777947359601 704.7038162217918 1.010512154734869 -23.05353034683731 703.198175726594 0.9045292756849506 152.4596866781169 327.2951716849866 150.7226914678847 152.2959516297819 327.218270473732 150.7172783488021 183.8827671803291 252.0582896335122 150.6293707881719 152.2959516297819 327.218270473732 150.7172783488021 149.2539358178419 325.7895311613834 150.6167086001053 152.4596866781169 327.2951716849866 150.7226914678847 187.0879881832919 253.5650583221614 150.7353534622068 187.0885180399914 253.5639301584224 150.7353536559517 152.812932589366 326.7879248362133 147.2439506249723 184.2269889782542 251.5702568052948 147.150626645484 149.6071817290708 325.2822843125982 147.1379677571248 187.4327398379261 253.0758973302391 147.2566095133318</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID713\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID711\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID714\">0.3926444481704147 -0.8591101888993725 0.3282682144988078 0.3926444481704147 -0.8591101888993725 0.3282682144988078 0.3926444481704147 -0.8591101888993725 0.3282682144988078 0.3926444481704147 -0.8591101888993725 0.3282682144988078 0.9047341541433741 0.4249252355329969 0.02991077621361021 0.9047341541433741 0.4249252355329969 0.02991077621361021 0.9047341541433741 0.4249252355329969 0.02991077621361021 0.9047341541433741 0.4249252355329969 0.02991077621361021 0.9047341541433741 0.4249252355329969 0.02991077621361021 0.9047341541433741 0.4249252355329969 0.02991077621361021 0.9047341541433741 0.4249252355329969 0.02991077621361021 0.9047341541433741 0.4249252355329969 0.02991077621361021 0.9047341541433741 0.4249252355329969 0.02991077621361021 -0.1651860513803555 0.2852511884435423 0.9441108663292217 -0.1651860513803555 0.2852511884435423 0.9441108663292217 -0.1651860513803555 0.2852511884435423 0.9441108663292217 -0.1651860513803555 0.2852511884435423 0.9441108663292217 -0.9047341542770109 -0.4249252353046962 -0.02991077541473614 -0.9047341542770109 -0.4249252353046962 -0.02991077541473614 -0.9047341542770109 -0.4249252353046962 -0.02991077541473614 -0.9047341542770109 -0.4249252353046962 -0.02991077541473614 -0.9047341542770109 -0.4249252353046962 -0.02991077541473614 -0.9047341542770109 -0.4249252353046962 -0.02991077541473614 -0.9047341542770109 -0.4249252353046962 -0.02991077541473614 -0.9047341542770109 -0.4249252353046962 -0.02991077541473614 0.1651860513977374 -0.2852511884353668 -0.9441108663286505 0.1651860513977374 -0.2852511884353668 -0.9441108663286505 0.1651860513977374 -0.2852511884353668 -0.9441108663286505 0.1651860513977374 -0.2852511884353668 -0.9441108663286505 0.1698265691403766 -0.2954100372727921 -0.9401552245733129 0.1698265691403766 -0.2954100372727921 -0.9401552245733129 0.1698265691403766 -0.2954100372727921 -0.9401552245733129 0.1698265691403766 -0.2954100372727921 -0.9401552245733129 -0.3906597369764084 0.8556701862543761 -0.3394311450956213 -0.3906597369764084 0.8556701862543761 -0.3394311450956213 -0.3906597369764084 0.8556701862543761 -0.3394311450956213 -0.3906597369764084 0.8556701862543761 -0.3394311450956213 -0.1698265690994911 0.2954100372917622 0.9401552245747377 -0.1698265690994911 0.2954100372917622 0.9401552245747377 -0.1698265690994911 0.2954100372917622 0.9401552245747377 -0.1698265690994911 0.2954100372917622 0.9401552245747377 -0.1698265690994911 0.2954100372917622 0.9401552245747377 -0.02713947538165938 -0.01257474815826479 0.9995525621920864 -0.02713947538165938 -0.01257474815826479 0.9995525621920864 -0.02713947538165938 -0.01257474815826479 0.9995525621920864 -0.02713947538165938 -0.01257474815826479 0.9995525621920864 -0.02713947538165938 -0.01257474815826479 0.9995525621920864 -0.02713947538165938 -0.01257474815826479 0.9995525621920864 0.02713947541974454 0.01257474817782606 -0.9995525621908062 0.02713947541974454 0.01257474817782606 -0.9995525621908062 0.02713947541974454 0.01257474817782606 -0.9995525621908062 0.02713947541974454 0.01257474817782606 -0.9995525621908062</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID714\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID712\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID710\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID711\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID712\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 7 4 8 7 8 9 9 8 10 10 8 11 10 11 12 13 14 15 14 13 16 17 18 19 18 17 20 18 20 21 21 20 22 21 22 23 23 22 24 25 26 27 26 25 28 29 30 31 30 29 32 33 34 35 34 33 36 37 38 39 38 37 40 40 37 41 42 43 44 43 42 45 45 42 46 46 42 47 48 49 50 49 48 51</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID715\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID716\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID719\">-23.27361286878943 703.1560021400787 10.24034115820709 -19.47679883340447 703.6334996917544 7.074214628698002 -22.68254970687201 702.1278591964524 6.968231749577967 -20.06786199535043 704.661642635358 10.34632403726344 187.2126573161687 253.0337237438016 156.5924213958588 279.2867201155773 51.30957610208498 237.3369601674592 279.8616324533246 50.31678994210824 234.0510835720866 186.8684355182343 253.521756571995 160.0711655384789 152.5928500676089 326.7457512497881 156.5797625075 186.8679056615347 253.5228847357244 160.0711653447337 152.2396041563577 327.2529980985505 160.0585033504116 -19.47679883340447 703.6334996917544 7.074214628698002 -20.06786199535043 704.661642635358 10.34632403726344 -19.47679883340447 703.6334996917544 7.074214628698002 149.3870992071172 325.240110726068 156.4737796396461 -22.68254970687201 702.1278591964524 6.968231749577967 152.5928500676089 326.7457512497881 156.5797625075 276.0809692432692 49.80393560433959 237.2309772892543 184.0069064562981 251.5280832187696 156.4864385280048 276.655881580992 48.81114944435103 233.9451006938172 183.6626846583739 252.0161160469834 159.9651826706928 149.3870992071172 325.240110726068 156.4737796396461 149.033853295889 325.7473575748527 159.9525204826261 -22.68254970687201 702.1278591964524 6.968231749577967 -23.27361286878943 703.1560021400787 10.24034115820709 149.033853295889 325.7473575748527 159.9525204826261 -20.06786199535043 704.661642635358 10.34632403726344 -23.27361286878943 703.1560021400787 10.24034115820709 152.2396041563577 327.2529980985505 160.0585033504116 152.0758691080268 327.176096887305 160.0530902313292 183.6626846583739 252.0161160469834 159.9651826706928 152.0758691080268 327.176096887305 160.0530902313292 149.033853295889 325.7473575748527 159.9525204826261 152.2396041563577 327.2529980985505 160.0585033504116 186.8679056615347 253.5228847357244 160.0711653447337 186.8684355182343 253.521756571995 160.0711655384789 276.0809692432692 49.80393560433959 237.2309772892543 186.8684355182343 253.521756571995 160.0711655384789 183.6626846583739 252.0161160469834 159.9651826706928 279.2867201155773 51.30957610208498 237.3369601674592 279.8616324533246 50.31678994210824 234.0510835720866 276.0809692432692 49.80393560433959 237.2309772892543 276.655881580992 48.81114944435103 233.9451006938172 279.2867201155773 51.30957610208498 237.3369601674592 187.2126573161687 253.0337237438016 156.5924213958588 276.655881580992 48.81114944435103 233.9451006938172 184.0069064562981 251.5280832187696 156.4864385280048 279.8616324533246 50.31678994210824 234.0510835720866 152.5928500676089 326.7457512497881 156.5797625075 184.0069064562981 251.5280832187696 156.4864385280048 149.3870992071172 325.240110726068 156.4737796396461 187.2126573161687 253.0337237438016 156.5924213958588</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID719\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID717\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID720\">-0.3906597369748581 0.8556701862552256 -0.3394311450952645 -0.3906597369748581 0.8556701862552256 -0.3394311450952645 -0.3906597369748581 0.8556701862552256 -0.3394311450952645 -0.3906597369748581 0.8556701862552256 -0.3394311450952645 0.9047341541433803 0.4249252355329853 0.0299107762135888 0.9047341541433803 0.4249252355329853 0.0299107762135888 0.9047341541433803 0.4249252355329853 0.0299107762135888 0.9047341541433803 0.4249252355329853 0.0299107762135888 0.9047341541433803 0.4249252355329853 0.0299107762135888 0.9047341541433803 0.4249252355329853 0.0299107762135888 0.9047341541433803 0.4249252355329853 0.0299107762135888 0.9047341541433803 0.4249252355329853 0.0299107762135888 0.9047341541433803 0.4249252355329853 0.0299107762135888 0.1698265691406615 -0.2954100372726688 -0.9401552245733003 0.1698265691406615 -0.2954100372726688 -0.9401552245733003 0.1698265691406615 -0.2954100372726688 -0.9401552245733003 0.1698265691406615 -0.2954100372726688 -0.9401552245733003 -0.9047341542770205 -0.4249252353046788 -0.02991077541469368 -0.9047341542770205 -0.4249252353046788 -0.02991077541469368 -0.9047341542770205 -0.4249252353046788 -0.02991077541469368 -0.9047341542770205 -0.4249252353046788 -0.02991077541469368 -0.9047341542770205 -0.4249252353046788 -0.02991077541469368 -0.9047341542770205 -0.4249252353046788 -0.02991077541469368 -0.9047341542770205 -0.4249252353046788 -0.02991077541469368 -0.9047341542770205 -0.4249252353046788 -0.02991077541469368 -0.1698265690994794 0.2954100372917526 0.940155224574743 -0.1698265690994794 0.2954100372917526 0.940155224574743 -0.1698265690994794 0.2954100372917526 0.940155224574743 -0.1698265690994794 0.2954100372917526 0.940155224574743 -0.1698265690994794 0.2954100372917526 0.940155224574743 -0.02713947538152598 -0.01257474815820209 0.9995525621920907 -0.02713947538152598 -0.01257474815820209 0.9995525621920907 -0.02713947538152598 -0.01257474815820209 0.9995525621920907 -0.02713947538152598 -0.01257474815820209 0.9995525621920907 -0.02713947538152598 -0.01257474815820209 0.9995525621920907 -0.02713947538152598 -0.01257474815820209 0.9995525621920907 -0.1651860513806995 0.2852511884433713 0.9441108663292132 -0.1651860513806995 0.2852511884433713 0.9441108663292132 -0.1651860513806995 0.2852511884433713 0.9441108663292132 -0.1651860513806995 0.2852511884433713 0.9441108663292132 0.3926444481699641 -0.8591101888997065 0.3282682144984725 0.3926444481699641 -0.8591101888997065 0.3282682144984725 0.3926444481699641 -0.8591101888997065 0.3282682144984725 0.3926444481699641 -0.8591101888997065 0.3282682144984725 0.1651860513973805 -0.2852511884355278 -0.9441108663286643 0.1651860513973805 -0.2852511884355278 -0.9441108663286643 0.1651860513973805 -0.2852511884355278 -0.9441108663286643 0.1651860513973805 -0.2852511884355278 -0.9441108663286643 0.02713947541968409 0.01257474817780121 -0.9995525621908082 0.02713947541968409 0.01257474817780121 -0.9995525621908082 0.02713947541968409 0.01257474817780121 -0.9995525621908082 0.02713947541968409 0.01257474817780121 -0.9995525621908082</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID720\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID718\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID716\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID717\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID718\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 7 4 8 7 8 9 9 8 10 10 8 11 10 11 12 13 14 15 14 13 16 17 18 19 18 17 20 18 20 21 21 20 22 21 22 23 23 22 24 25 26 27 26 25 28 28 25 29 30 31 32 31 30 33 33 30 34 34 30 35 36 37 38 37 36 39 40 41 42 41 40 43 44 45 46 45 44 47 48 49 50 49 48 51</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID721\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID722\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID725\">106.9025050187303 216.888667233502 157.1354494440261 75.12076589720493 291.9570984371549 157.2169123730665 72.27367690566689 290.6199102875221 157.1227873633456 75.28450094954962 292.0339996414755 157.2223254692 109.9127992053543 218.303884752519 157.2349873561372 109.9133290620054 218.3027565887614 157.2349875498805 199.3207896036055 14.67648679089325 234.4012440626981 109.9133290620054 218.3027565887614 157.2349875498805 106.9025050187303 216.888667233502 157.1354494440261 202.3316136593307 16.0905761188933 234.5007821789721 110.2575504370088 217.8147235619381 153.7562433932789 202.3316136593307 16.0905761188933 234.5007821789721 202.9065255741481 15.09778976027565 231.2149055696171 109.9133290620054 218.3027565887614 157.2349875498805 75.63774643702709 291.5267525936638 153.743584612278 109.9127992053543 218.303884752519 157.2349873561372 75.28450094954962 292.0339996414755 157.2223254692 -96.43190309811632 668.4145007377306 4.238036712304876 -97.02296583715963 669.4426438799569 7.510146134850771 72.27367690566689 290.6199102875221 157.1227873633456 -97.02296583715963 669.4426438799569 7.510146134850771 -100.033789894014 668.0285545544184 7.410608017726133 75.28450094954962 292.0339996414755 157.2223254692 75.12076589720493 291.9570984371549 157.2169123730665 199.3207896036055 14.67648679089325 234.4012440626981 107.2467263937277 216.4006342066487 153.6567052873564 199.8957015184008 13.6837004322565 231.1153674532793 106.9025050187303 216.888667233502 157.1354494440261 72.62692239311787 290.1126632397018 153.6440465063553 72.27367690566689 290.6199102875221 157.1227873633456 -99.44272715499392 667.0004114121603 4.138498595116232 -100.033789894014 668.0285545544184 7.410608017726133 202.9065255741481 15.09778976027565 231.2149055696171 199.3207896036055 14.67648679089325 234.4012440626981 199.8957015184008 13.6837004322565 231.1153674532793 202.3316136593307 16.0905761188933 234.5007821789721 -96.43190309811632 668.4145007377306 4.238036712304876 72.62692239311787 290.1126632397018 153.6440465063553 -99.44272715499392 667.0004114121603 4.138498595116232 75.63774643702709 291.5267525936638 153.743584612278 -100.033789894014 668.0285545544184 7.410608017726133 -96.43190309811632 668.4145007377306 4.238036712304876 -99.44272715499392 667.0004114121603 4.138498595116232 -97.02296583715963 669.4426438799569 7.510146134850771 110.2575504370088 217.8147235619381 153.7562433932789 199.8957015184008 13.6837004322565 231.1153674532793 107.2467263937277 216.4006342066487 153.6567052873564 202.9065255741481 15.09778976027565 231.2149055696171 75.63774643702709 291.5267525936638 153.743584612278 107.2467263937277 216.4006342066487 153.6567052873564 72.62692239311787 290.1126632397018 153.6440465063553 110.2575504370088 217.8147235619381 153.7562433932789</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID725\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID723\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID726\">-0.02713935739192803 -0.01257469273875234 0.999552566092889 -0.02713935739192803 -0.01257469273875234 0.999552566092889 -0.02713935739192803 -0.01257469273875234 0.999552566092889 -0.02713935739192803 -0.01257469273875234 0.999552566092889 -0.02713935739192803 -0.01257469273875234 0.999552566092889 -0.02713935739192803 -0.01257469273875234 0.999552566092889 -0.1651859267013316 0.2852512470018808 0.9441108704509732 -0.1651859267013316 0.2852512470018808 0.9441108704509732 -0.1651859267013316 0.2852512470018808 0.9441108704509732 -0.1651859267013316 0.2852512470018808 0.9441108704509732 0.9047341763301451 0.424925197219815 0.02991064940644789 0.9047341763301451 0.424925197219815 0.02991064940644789 0.9047341763301451 0.424925197219815 0.02991064940644789 0.9047341763301451 0.424925197219815 0.02991064940644789 0.9047341763301451 0.424925197219815 0.02991064940644789 0.9047341763301451 0.424925197219815 0.02991064940644789 0.9047341763301451 0.424925197219815 0.02991064940644789 0.9047341763301451 0.424925197219815 0.02991064940644789 0.9047341763301451 0.424925197219815 0.02991064940644789 -0.1698264443804779 0.2954100958684373 0.9401552286979451 -0.1698264443804779 0.2954100958684373 0.9401552286979451 -0.1698264443804779 0.2954100958684373 0.9401552286979451 -0.1698264443804779 0.2954100958684373 0.9401552286979451 -0.1698264443804779 0.2954100958684373 0.9401552286979451 -0.9047341764637856 -0.424925196991508 -0.02991064860754147 -0.9047341764637856 -0.424925196991508 -0.02991064860754147 -0.9047341764637856 -0.424925196991508 -0.02991064860754147 -0.9047341764637856 -0.424925196991508 -0.02991064860754147 -0.9047341764637856 -0.424925196991508 -0.02991064860754147 -0.9047341764637856 -0.424925196991508 -0.02991064860754147 -0.9047341764637856 -0.424925196991508 -0.02991064860754147 -0.9047341764637856 -0.424925196991508 -0.02991064860754147 0.3926444481940761 -0.8591101888876316 0.3282682145012334 0.3926444481940761 -0.8591101888876316 0.3282682145012334 0.3926444481940761 -0.8591101888876316 0.3282682145012334 0.3926444481940761 -0.8591101888876316 0.3282682145012334 0.1698264444695797 -0.295410095827268 -0.9401552286947861 0.1698264444695797 -0.295410095827268 -0.9401552286947861 0.1698264444695797 -0.295410095827268 -0.9401552286947861 0.1698264444695797 -0.295410095827268 -0.9401552286947861 -0.3906597384313829 0.8556701855710265 -0.3394311451437074 -0.3906597384313829 0.8556701855710265 -0.3394311451437074 -0.3906597384313829 0.8556701855710265 -0.3394311451437074 -0.3906597384313829 0.8556701855710265 -0.3394311451437074 0.1651859267194837 -0.2852512469933249 -0.9441108704503824 0.1651859267194837 -0.2852512469933249 -0.9441108704503824 0.1651859267194837 -0.2852512469933249 -0.9441108704503824 0.1651859267194837 -0.2852512469933249 -0.9441108704503824 0.02713935747064935 0.01257469278029802 -0.999552566090229 0.02713935747064935 0.01257469278029802 -0.999552566090229 0.02713935747064935 0.01257469278029802 -0.999552566090229 0.02713935747064935 0.01257469278029802 -0.999552566090229</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID726\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID724\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID722\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID723\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID724\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 6 7 8 7 6 9 10 11 12 11 10 13 13 10 14 13 14 15 15 14 16 16 14 17 16 17 18 19 20 21 20 19 22 22 19 23 24 25 26 25 24 27 25 27 28 28 27 29 28 29 30 30 29 31 32 33 34 33 32 35 36 37 38 37 36 39 40 41 42 41 40 43 44 45 46 45 44 47 48 49 50 49 48 51</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID727\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID728\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID731\">110.481456672937 217.9340031008742 144.2346743167647 200.1407648050443 13.78221893529008 221.5144536547028 107.470676416285 216.5198182467507 144.1351753011182 203.1515450741665 15.19640376214193 221.6139526807548 203.1515450741665 15.19640376214193 221.6139526807548 199.5663436553325 14.77393772683172 224.8007384471771 200.1407648050443 13.78221893529008 221.5144536547028 202.5771239244315 16.1881225536672 224.9002374731645 199.5663436553325 14.77393772683172 224.8007384471771 107.470676416285 216.5198182467507 144.1351753011182 200.1407648050443 13.78221893529008 221.5144536547028 107.1269983771671 217.0067322505311 147.6141299797847 72.84775903553395 290.2303842328142 144.151531179563 72.49505607241872 290.7365118762027 147.6304901216068 -99.26203483390748 667.1583059106811 -5.206456849810564 -99.85261053201111 668.1853851722563 -1.933925399815465 75.85853929281302 291.6445690856199 144.2510301952092 107.470676416285 216.5198182467507 144.1351753011182 72.84775903553395 290.2303842328142 144.151531179563 110.481456672937 217.9340031008742 144.2346743167647 110.481456672937 217.9340031008742 144.2346743167647 202.5771239244315 16.1881225536672 224.9002374731645 203.1515450741665 15.19640376214193 221.6139526807548 110.1377786338138 218.4209171046286 147.7136289953628 75.85853929281302 291.6445690856199 144.2510301952092 110.1372487295114 218.4220452459967 147.7136292456895 75.50583632967334 292.1506967289975 147.7299891371849 -96.25125456365481 668.5724907350736 -5.106957822909536 -96.84183026178289 669.5995699966284 -1.834426372978442 199.5663436553325 14.77393772683172 224.8007384471771 110.1377786338138 218.4209171046286 147.7136289953628 107.1269983771671 217.0067322505311 147.6141299797847 202.5771239244315 16.1881225536672 224.9002374731645 107.1269983771671 217.0067322505311 147.6141299797847 75.34210364856142 292.0737903265599 147.724578166534 72.49505607241872 290.7365118762027 147.6304901216068 75.50583632967334 292.1506967289975 147.7299891371849 110.1372487295114 218.4220452459967 147.7136292456895 110.1377786338138 218.4209171046286 147.7136289953628 72.49505607241872 290.7365118762027 147.6304901216068 -96.84183026178289 669.5995699966284 -1.834426372978442 -99.85261053201111 668.1853851722563 -1.933925399815465 75.50583632967334 292.1506967289975 147.7299891371849 75.34210364856142 292.0737903265599 147.724578166534 -99.85261053201111 668.1853851722563 -1.933925399815465 -96.25125456365481 668.5724907350736 -5.106957822909536 -99.26203483390748 667.1583059106811 -5.206456849810564 -96.84183026178289 669.5995699966284 -1.834426372978442 -96.25125456365481 668.5724907350736 -5.106957822909536 72.84775903553395 290.2303842328142 144.151531179563 -99.26203483390748 667.1583059106811 -5.206456849810564 75.85853929281302 291.6445690856199 144.2510301952092</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID731\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID729\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID732\">0.1650449181839292 -0.2849445094579199 -0.9442281511962274 0.1650449181839292 -0.2849445094579199 -0.9442281511962274 0.1650449181839292 -0.2849445094579199 -0.9442281511962274 0.1650449181839292 -0.2849445094579199 -0.9442281511962274 0.3927339257728167 -0.859197769008074 0.3279317875391473 0.3927339257728167 -0.859197769008074 0.3279317875391473 0.3927339257728167 -0.859197769008074 0.3279317875391473 0.3927339257728167 -0.859197769008074 0.3279317875391473 -0.9047210739722988 -0.4249539196752872 -0.02989890404378971 -0.9047210739722988 -0.4249539196752872 -0.02989890404378971 -0.9047210739722988 -0.4249539196752872 -0.02989890404378971 -0.9047210739722988 -0.4249539196752872 -0.02989890404378971 -0.9047210739722988 -0.4249539196752872 -0.02989890404378971 -0.9047210739722988 -0.4249539196752872 -0.02989890404378971 -0.9047210739722988 -0.4249539196752872 -0.02989890404378971 -0.9047210739722988 -0.4249539196752872 -0.02989890404378971 0.02697679033898779 0.01289318208693473 -0.9995529093743261 0.02697679033898779 0.01289318208693473 -0.9995529093743261 0.02697679033898779 0.01289318208693473 -0.9995529093743261 0.02697679033898779 0.01289318208693473 -0.9995529093743261 0.9047210738388025 0.4249539199032948 0.02989890484262184 0.9047210738388025 0.4249539199032948 0.02989890484262184 0.9047210738388025 0.4249539199032948 0.02989890484262184 0.9047210738388025 0.4249539199032948 0.02989890484262184 0.9047210738388025 0.4249539199032948 0.02989890484262184 0.9047210738388025 0.4249539199032948 0.02989890484262184 0.9047210738388025 0.4249539199032948 0.02989890484262184 0.9047210738388025 0.4249539199032948 0.02989890484262184 0.9047210738388025 0.4249539199032948 0.02989890484262184 -0.1650449181657551 0.2849445094664789 0.9442281511968212 -0.1650449181657551 0.2849445094664789 0.9442281511968212 -0.1650449181657551 0.2849445094664789 0.9442281511968212 -0.1650449181657551 0.2849445094664789 0.9442281511968212 -0.02697679026019186 -0.01289318204534799 0.9995529093769892 -0.02697679026019186 -0.01289318204534799 0.9995529093769892 -0.02697679026019186 -0.01289318204534799 0.9995529093769892 -0.02697679026019186 -0.01289318204534799 0.9995529093769892 -0.02697679026019186 -0.01289318204534799 0.9995529093769892 -0.02697679026019186 -0.01289318204534799 0.9995529093769892 -0.1696865058871936 0.2951044175262307 0.9402764872505851 -0.1696865058871936 0.2951044175262307 0.9402764872505851 -0.1696865058871936 0.2951044175262307 0.9402764872505851 -0.1696865058871936 0.2951044175262307 0.9402764872505851 -0.1696865058871936 0.2951044175262307 0.9402764872505851 -0.3907508804182107 0.8557613938183776 -0.3390961313586771 -0.3907508804182107 0.8557613938183776 -0.3390961313586771 -0.3907508804182107 0.8557613938183776 -0.3390961313586771 -0.3907508804182107 0.8557613938183776 -0.3390961313586771 0.1696865059756337 -0.2951044174853583 -0.9402764872474526 0.1696865059756337 -0.2951044174853583 -0.9402764872474526 0.1696865059756337 -0.2951044174853583 -0.9402764872474526 0.1696865059756337 -0.2951044174853583 -0.9402764872474526</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID732\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID730\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID728\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID729\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID730\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 9 11 12 12 11 13 12 13 14 14 13 15 16 17 18 17 16 19 20 21 22 21 20 23 23 20 24 23 24 25 25 24 26 26 24 27 26 27 28 29 30 31 30 29 32 33 34 35 34 33 36 36 33 37 37 33 38 39 40 41 40 39 42 42 39 43 44 45 46 45 44 47 48 49 50 49 48 51</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID733\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID736\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID738\">74.65429199531775 291.1272215793292 144.4638267952715 -97.45551741414749 668.0551826319479 -4.894176459554572 75.34210364856142 292.0737903265599 147.724578166534</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID738\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID737\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID736\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID737\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID739\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID740\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID742\">109.774569951122 218.2610686418084 157.3491673352452 109.9127992053543 218.303884752519 157.2349873561372</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID742\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID741\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID740\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID741\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID743\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID744\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID746\">74.43344279628161 291.0095235133681 153.956350230198 -97.6362222877209 667.8973110563966 4.450787078487551 75.12076589720493 291.9570984371549 157.2169123730665</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID746\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID745\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID744\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID745\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID747\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID748\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID750\">109.9990397942723 218.3791870444934 147.8278180300548 110.1372487295114 218.4220452459967 147.7136292456895</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID750\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID749\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID748\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID749\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID752\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID753\">\r\n\t\t\t\t\t<float_array count=\"318\" id=\"ID756\">1442.26520396234 269.515909687374 139.7111127798921 994.5121031590028 11.00553636303721 190.8921810147918 994.5074573316971 11.00285412654284 139.7111127798875 1727.382400484547 434.1283998576341 139.711112779895 1727.382400513232 434.1283998079239 190.8921810147918 1727.382400513232 434.1283998079239 190.8921810147918 1727.382400484547 434.1283998576341 139.711112779895 994.5121031590028 11.00553636303721 190.8921810147918 1442.26520396234 269.515909687374 139.7111127798921 994.5074573316971 11.00285412654284 139.7111127798875 994.5121031590028 11.00553636303721 190.8921810147918 902.03714714819 -42.38490436691382 139.7111127798902 994.5074573316971 11.00285412654284 139.7111127798875 902.0371471481591 -42.38490436694337 190.8921810147918 902.0371471481591 -42.38490436694337 190.8921810147918 994.5121031590028 11.00553636303721 190.8921810147918 902.03714714819 -42.38490436691382 139.7111127798902 994.5074573316971 11.00285412654284 139.7111127798875 994.8091842395482 857.4226241791469 168.1922049614898 1015.213154560535 845.6328363463642 158.3646112149411 994.809184238091 857.422624178477 158.3645961140301 1454.673780839942 591.7044360177847 139.7111128095839 1727.382400513232 434.1283998079239 190.8921810147918 1727.382400484547 434.1283998576341 139.711112779895 1023.07440275878 841.0904630690682 139.7111128565707 1015.211462024895 845.6338143087585 139.7111128574267 994.8091842516654 857.4226241957954 190.892181014791 994.8091842516654 857.4226241957954 190.892181014791 994.8091842395482 857.4226241791469 168.1922049614898 1727.382400513232 434.1283998079239 190.8921810147918 1015.213154560535 845.6328363463642 158.3646112149411 1015.211462024895 845.6338143087585 139.7111128574267 1023.07440275878 841.0904630690682 139.7111128565707 1454.673780839942 591.7044360177847 139.7111128095839 1727.382400484547 434.1283998576341 139.711112779895 994.809184238091 857.422624178477 158.3645961140301 902.0371471481591 -42.38490436694337 190.8921810147918 809.4475756780474 11.07173267986855 139.7111127899626 902.03714714819 -42.38490436691382 139.7111127798902 809.4560590451318 11.0668117712421 190.8921810147915 809.4560590451318 11.0668117712421 190.8921810147915 902.0371471481591 -42.38490436694337 190.8921810147918 809.4475756780474 11.07173267986855 139.7111127899626 902.03714714819 -42.38490436691382 139.7111127798902 994.8091842373443 857.4226241806748 139.7111128596477 1015.213154560535 845.6328363463642 158.3646112149411 1015.211462024895 845.6338143087585 139.7111128574267 994.809184238091 857.422624178477 158.3645961140301 994.809184238091 857.422624178477 158.3645961140301 994.8091842373443 857.4226241806748 139.7111128596477 1015.213154560535 845.6328363463642 158.3646112149411 1015.211462024895 845.6338143087585 139.7111128574267 809.4560590451318 11.0668117712421 190.8921810147915 365.2391859376454 267.5355124690514 139.7111128382924 809.4475756780474 11.07173267986855 139.7111127899626 76.4734984502233 434.2544904419729 139.7111128697185 76.47349828264248 434.2544905387276 190.8921810147979 76.47349828264248 434.2544905387276 190.8921810147979 809.4560590451318 11.0668117712421 190.8921810147915 76.4734984502233 434.2544904419729 139.7111128697185 365.2391859376454 267.5355124690514 139.7111128382924 809.4475756780474 11.07173267986855 139.7111127899626 76.47349828264248 434.2544905387276 190.8921810147979 349.2374044263819 591.7348066628747 139.7111128697222 76.4734984502233 434.2544904419729 139.7111128697185 787.9877299022538 845.0474237400265 139.7111128697319 795.8727059813338 849.5998168044553 139.711112869732 795.8744009544151 849.6007953978383 158.3839005926119 809.452329042777 857.440015845563 168.2229284215063 809.4560865179889 857.4421851676941 190.8921810147911 809.4560864932554 857.4421852106257 168.2229274550701 809.4506977934806 857.4390740352453 158.3814258357435 795.8744009544151 849.6007953978383 158.3839005926119 809.4506977934806 857.4390740352453 158.3814258357435 809.452329042777 857.440015845563 168.2229284215063 809.4560864932554 857.4421852106257 168.2229274550701 809.4560865179889 857.4421851676941 190.8921810147911 76.47349828264248 434.2544905387276 190.8921810147979 795.8727059813338 849.5998168044553 139.711112869732 787.9877299022538 845.0474237400265 139.7111128697319 349.2374044263819 591.7348066628747 139.7111128697222 76.4734984502233 434.2544904419729 139.7111128697185 809.4506977934806 857.4390740352453 158.3814258357435 809.4560864932554 857.4421852106257 168.2229274550701 809.456086496746 857.4421852045566 158.3814248534625 809.452329042777 857.440015845563 168.2229284215063 809.452329042777 857.440015845563 168.2229284215063 809.4506977934806 857.4390740352453 158.3814258357435 809.4560864932554 857.4421852106257 168.2229274550701 809.456086496746 857.4421852045566 158.3814248534625 795.8744009544151 849.6007953978383 158.3839005926119 809.4476031506716 857.4372873859227 139.7111128697325 795.8727059813338 849.5998168044553 139.711112869732 809.4506977934806 857.4390740352453 158.3814258357435 809.4506977934806 857.4390740352453 158.3814258357435 795.8744009544151 849.6007953978383 158.3839005926119 809.4476031506716 857.4372873859227 139.7111128697325 795.8727059813338 849.5998168044553 139.711112869732 809.4506977934806 857.4390740352453 158.3814258357435 809.4560864969368 857.4421852042517 139.7111128697368 809.4476031506716 857.4372873859227 139.7111128697325 809.456086496746 857.4421852045566 158.3814248534625 809.456086496746 857.4421852045566 158.3814248534625 809.4506977934806 857.4390740352453 158.3814258357435 809.4560864969368 857.4421852042517 139.7111128697368 809.4476031506716 857.4372873859227 139.7111128697325</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"106\" source=\"#ID756\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID754\">\r\n\t\t\t\t\t<float_array count=\"318\" id=\"ID757\">0.5000000000026339 -0.866025403782918 -8.414211361896292e-010 0.5000000000026339 -0.866025403782918 -8.414211361896292e-010 0.5000000000026339 -0.866025403782918 -8.414211361896292e-010 0.5000000000026339 -0.866025403782918 -8.414211361896292e-010 0.5000000000026339 -0.866025403782918 -8.414211361896292e-010 -0.5000000000026339 0.866025403782918 8.414211361896292e-010 -0.5000000000026339 0.866025403782918 8.414211361896292e-010 -0.5000000000026339 0.866025403782918 8.414211361896292e-010 -0.5000000000026339 0.866025403782918 8.414211361896292e-010 -0.5000000000026339 0.866025403782918 8.414211361896292e-010 0.5000000000028222 -0.8660254037828095 -2.8037313646429e-010 0.5000000000028222 -0.8660254037828095 -2.8037313646429e-010 0.5000000000028222 -0.8660254037828095 -2.8037313646429e-010 0.5000000000028222 -0.8660254037828095 -2.8037313646429e-010 -0.5000000000028222 0.8660254037828095 2.8037313646429e-010 -0.5000000000028222 0.8660254037828095 2.8037313646429e-010 -0.5000000000028222 0.8660254037828095 2.8037313646429e-010 -0.5000000000028222 0.8660254037828095 2.8037313646429e-010 0.5003039148396369 0.8658498673535346 -1.575256115327918e-010 0.5003039148396369 0.8658498673535346 -1.575256115327918e-010 0.5003039148396369 0.8658498673535346 -1.575256115327918e-010 0.5003039148396369 0.8658498673535346 -1.575256115327918e-010 0.5003039148396369 0.8658498673535346 -1.575256115327918e-010 0.5003039148396369 0.8658498673535346 -1.575256115327918e-010 0.5003039148396369 0.8658498673535346 -1.575256115327918e-010 0.5003039148396369 0.8658498673535346 -1.575256115327918e-010 0.5003039148396369 0.8658498673535346 -1.575256115327918e-010 -0.5003039148396369 -0.8658498673535346 1.575256115327918e-010 -0.5003039148396369 -0.8658498673535346 1.575256115327918e-010 -0.5003039148396369 -0.8658498673535346 1.575256115327918e-010 -0.5003039148396369 -0.8658498673535346 1.575256115327918e-010 -0.5003039148396369 -0.8658498673535346 1.575256115327918e-010 -0.5003039148396369 -0.8658498673535346 1.575256115327918e-010 -0.5003039148396369 -0.8658498673535346 1.575256115327918e-010 -0.5003039148396369 -0.8658498673535346 1.575256115327918e-010 -0.5003039148396369 -0.8658498673535346 1.575256115327918e-010 -0.5000000808009456 -0.8660253571339639 -1.948713462943986e-007 -0.5000000808009456 -0.8660253571339639 -1.948713462943986e-007 -0.5000000808009456 -0.8660253571339639 -1.948713462943986e-007 -0.5000000808009456 -0.8660253571339639 -1.948713462943986e-007 0.5000000808009456 0.8660253571339639 1.948713462943986e-007 0.5000000808009456 0.8660253571339639 1.948713462943986e-007 0.5000000808009456 0.8660253571339639 1.948713462943986e-007 0.5000000808009456 0.8660253571339639 1.948713462943986e-007 0.500303915116965 0.8658498671932894 -3.240754042617249e-010 0.500303915116965 0.8658498671932894 -3.240754042617249e-010 0.500303915116965 0.8658498671932894 -3.240754042617249e-010 0.500303915116965 0.8658498671932894 -3.240754042617249e-010 -0.500303915116965 -0.8658498671932894 3.240754042617249e-010 -0.500303915116965 -0.8658498671932894 3.240754042617249e-010 -0.500303915116965 -0.8658498671932894 3.240754042617249e-010 -0.500303915116965 -0.8658498671932894 3.240754042617249e-010 -0.4999999897942506 -0.8660254096767089 -1.948814460825377e-007 -0.4999999897942506 -0.8660254096767089 -1.948814460825377e-007 -0.4999999897942506 -0.8660254096767089 -1.948814460825377e-007 -0.4999999897942506 -0.8660254096767089 -1.948814460825377e-007 -0.4999999897942506 -0.8660254096767089 -1.948814460825377e-007 0.4999999897942506 0.8660254096767089 1.948814460825377e-007 0.4999999897942506 0.8660254096767089 1.948814460825377e-007 0.4999999897942506 0.8660254096767089 1.948814460825377e-007 0.4999999897942506 0.8660254096767089 1.948814460825377e-007 0.4999999897942506 0.8660254096767089 1.948814460825377e-007 -0.5000000001262653 0.8660254037115396 -1.123858407080453e-009 -0.5000000001262653 0.8660254037115396 -1.123858407080453e-009 -0.5000000001262653 0.8660254037115396 -1.123858407080453e-009 -0.5000000001262653 0.8660254037115396 -1.123858407080453e-009 -0.5000000001262653 0.8660254037115396 -1.123858407080453e-009 -0.5000000001262653 0.8660254037115396 -1.123858407080453e-009 -0.5000000001262653 0.8660254037115396 -1.123858407080453e-009 -0.5000000001262653 0.8660254037115396 -1.123858407080453e-009 -0.5000000001262653 0.8660254037115396 -1.123858407080453e-009 -0.5000000001262653 0.8660254037115396 -1.123858407080453e-009 0.5000000001262653 -0.8660254037115396 1.123858407080453e-009 0.5000000001262653 -0.8660254037115396 1.123858407080453e-009 0.5000000001262653 -0.8660254037115396 1.123858407080453e-009 0.5000000001262653 -0.8660254037115396 1.123858407080453e-009 0.5000000001262653 -0.8660254037115396 1.123858407080453e-009 0.5000000001262653 -0.8660254037115396 1.123858407080453e-009 0.5000000001262653 -0.8660254037115396 1.123858407080453e-009 0.5000000001262653 -0.8660254037115396 1.123858407080453e-009 0.5000000001262653 -0.8660254037115396 1.123858407080453e-009 0.5000000001262653 -0.8660254037115396 1.123858407080453e-009 -0.5000000002077679 0.8660254036644839 -7.110759524058506e-010 -0.5000000002077679 0.8660254036644839 -7.110759524058506e-010 -0.5000000002077679 0.8660254036644839 -7.110759524058506e-010 -0.5000000002077679 0.8660254036644839 -7.110759524058506e-010 0.5000000002077679 -0.8660254036644839 7.110759524058506e-010 0.5000000002077679 -0.8660254036644839 7.110759524058506e-010 0.5000000002077679 -0.8660254036644839 7.110759524058506e-010 0.5000000002077679 -0.8660254036644839 7.110759524058506e-010 -0.5000000011797705 0.8660254031032978 1.004869574133598e-009 -0.5000000011797705 0.8660254031032978 1.004869574133598e-009 -0.5000000011797705 0.8660254031032978 1.004869574133598e-009 -0.5000000011797705 0.8660254031032978 1.004869574133598e-009 0.5000000011797705 -0.8660254031032978 -1.004869574133598e-009 0.5000000011797705 -0.8660254031032978 -1.004869574133598e-009 0.5000000011797705 -0.8660254031032978 -1.004869574133598e-009 0.5000000011797705 -0.8660254031032978 -1.004869574133598e-009 -0.499997603965265 0.8660267871313185 7.350946715754553e-010 -0.499997603965265 0.8660267871313185 7.350946715754553e-010 -0.499997603965265 0.8660267871313185 7.350946715754553e-010 -0.499997603965265 0.8660267871313185 7.350946715754553e-010 0.499997603965265 -0.8660267871313185 -7.350946715754553e-010 0.499997603965265 -0.8660267871313185 -7.350946715754553e-010 0.499997603965265 -0.8660267871313185 -7.350946715754553e-010 0.499997603965265 -0.8660267871313185 -7.350946715754553e-010</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"106\" source=\"#ID757\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID755\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID753\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID754\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"66\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID755\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 6 7 6 8 7 9 7 8 10 11 12 11 10 13 14 15 16 17 16 15 18 19 20 21 22 23 22 21 24 22 24 25 22 25 19 22 19 18 22 18 26 27 28 29 28 30 29 30 31 29 31 32 29 32 33 29 34 29 33 35 30 28 36 37 38 37 36 39 40 41 42 43 42 41 44 45 46 45 44 47 48 49 50 51 50 49 52 53 54 53 52 55 55 52 56 57 58 59 59 58 60 61 60 58 62 63 64 63 62 65 65 62 66 66 62 67 67 62 68 68 62 69 69 70 68 68 71 67 72 73 74 74 75 76 76 77 74 74 77 72 72 77 78 78 77 79 79 77 80 81 80 77 82 83 84 83 82 85 86 87 88 89 88 87 90 91 92 91 90 93 94 95 96 97 96 95 98 99 100 99 98 101 102 103 104 105 104 103</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID758\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID764\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID773\">902.0371798704306 -42.38488624620504 -84.47064434605792 383.8843396964735 256.7707354874569 -84.7618259705614 902.0371688383981 -42.38490527309023 -84.8022349566686 76.47345218818828 434.2544779219165 -84.7395872913022 76.47344110604428 434.2544588757664 -84.40799669029587 76.47344110604428 434.2544588757664 -84.40799669029587 902.0371798704306 -42.38488624620504 -84.47064434605792 76.47345218818828 434.2544779219165 -84.7395872913022 383.8843396964735 256.7707354874569 -84.7618259705614 902.0371688383981 -42.38490527309023 -84.8022349566686 1727.38243794837 434.128421847056 -14.93439600071133 1443.086462775246 269.9900690035638 -84.93820880041062 1727.382410402378 434.1284176087024 -85.01313571523843 902.0371688383981 -42.38490527309023 -84.8022349566686 902.0371798704306 -42.38488624620504 -84.47064434605792 902.0372073771661 -42.38487021524543 -14.72349569421959 1442.235580593059 269.4988064672884 -14.86153247960542 1442.235580593059 269.4988064672884 -14.86153247960542 1727.38243794837 434.128421847056 -14.93439600071133 902.0372073771661 -42.38487021524543 -14.72349569421959 902.0371798704306 -42.38488624620504 -84.47064434605792 902.0371688383981 -42.38490527309023 -84.8022349566686 1443.086462775246 269.9900690035638 -84.93820880041062 1727.382410402378 434.1284176087024 -85.01313571523843</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID773\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID765\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID774\">-0.4999999400614334 -0.8660254383898283 -5.18695124079524e-007 -0.4999999400614334 -0.8660254383898283 -5.18695124079524e-007 -0.4999999400614334 -0.8660254383898283 -5.18695124079524e-007 -0.4999999400614334 -0.8660254383898283 -5.18695124079524e-007 -0.4999999400614334 -0.8660254383898283 -5.18695124079524e-007 0.4999999400614334 0.8660254383898283 5.18695124079524e-007 0.4999999400614334 0.8660254383898283 5.18695124079524e-007 0.4999999400614334 0.8660254383898283 5.18695124079524e-007 0.4999999400614334 0.8660254383898283 5.18695124079524e-007 0.4999999400614334 0.8660254383898283 5.18695124079524e-007 0.5000000093179956 -0.8660253984046911 -2.37958420822948e-008 0.5000000093179956 -0.8660253984046911 -2.37958420822948e-008 0.5000000093179956 -0.8660253984046911 -2.37958420822948e-008 0.5000000093179956 -0.8660253984046911 -2.37958420822948e-008 0.5000000093179956 -0.8660253984046911 -2.37958420822948e-008 0.5000000093179956 -0.8660253984046911 -2.37958420822948e-008 0.5000000093179956 -0.8660253984046911 -2.37958420822948e-008 -0.5000000093179956 0.8660253984046911 2.37958420822948e-008 -0.5000000093179956 0.8660253984046911 2.37958420822948e-008 -0.5000000093179956 0.8660253984046911 2.37958420822948e-008 -0.5000000093179956 0.8660253984046911 2.37958420822948e-008 -0.5000000093179956 0.8660253984046911 2.37958420822948e-008 -0.5000000093179956 0.8660253984046911 2.37958420822948e-008 -0.5000000093179956 0.8660253984046911 2.37958420822948e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID774\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID767\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID775\">-111.7621592627495 68.0001090345685 -106.94221820495 67.99854886637006 -111.7621590594323 67.99800360532424 -104.0826327273607 67.99886134210411 -104.082632929752 68.00096677128758 -38.32841154476934 -30.7746685325722 203.8044145198796 -30.79750944821785 -38.32841152588578 -30.8955642445222 51.83333581074285 -30.90367231801088 203.8044145095724 -30.91840516366121 -104.3226143543226 69.01910152581868 -106.9671383708006 68.57445505503253 -104.3225716633704 68.57413770121076 -112.0000660909691 68.57501697708781 -112.0000661403537 68.57712240631703 -112.0001085810891 69.0199807988373 -106.9750963347351 69.01940530407873 351.475560451425 -5.418410959722117 435.1074048635207 -5.444976511436304 193.0386528835936 -5.368083672418823 193.0386447969926 -30.79742686509863 193.038639953857 -30.91832258054606 351.7251197322239 -30.96789773314491 435.1073982659455 -30.99521558438837</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID775\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID766\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID764\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID765\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID766\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID767\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 10 10 11 11 12 12 11 11 10 10 13 13 13 13 10 10 14 14 14 14 10 10 15 15 15 15 10 10 16 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID766\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID767\" />\r\n\t\t\t\t\t<p>5 5 6 6 7 7 7 7 6 6 8 8 9 9 8 8 6 6 17 17 18 18 19 19 19 19 18 18 20 20 20 20 18 18 21 21 21 21 18 18 22 22 23 23 22 22 18 18</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID776\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID777\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID780\">1727.382400484547 434.1283998576341 139.711112779895 1442.235580593059 269.4988064672884 -14.86153247960542 1727.38243794837 434.128421847056 -14.93439600071133 1442.26520396234 269.515909687374 139.7111127798921 1442.26520396234 269.515909687374 139.7111127798921 1727.382400484547 434.1283998576341 139.711112779895 1442.235580593059 269.4988064672884 -14.86153247960542 1727.38243794837 434.128421847056 -14.93439600071133 1454.67381811884 591.7044576928788 -14.91371889401026 1727.382400484547 434.1283998576341 139.711112779895 1727.38243794837 434.128421847056 -14.93439600071133 1454.673780839942 591.7044360177847 139.7111128095839 1454.673780839942 591.7044360177847 139.7111128095839 1454.67381811884 591.7044576928788 -14.91371889401026 1727.382400484547 434.1283998576341 139.711112779895 1727.38243794837 434.128421847056 -14.93439600071133</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID780\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID778\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID781\">0.5000000006089885 -0.866025403432839 -5.599737130967172e-010 0.5000000006089885 -0.866025403432839 -5.599737130967172e-010 0.5000000006089885 -0.866025403432839 -5.599737130967172e-010 0.5000000006089885 -0.866025403432839 -5.599737130967172e-010 -0.5000000006089885 0.866025403432839 5.599737130967172e-010 -0.5000000006089885 0.866025403432839 5.599737130967172e-010 -0.5000000006089885 0.866025403432839 5.599737130967172e-010 -0.5000000006089885 0.866025403432839 5.599737130967172e-010 0.5003039143140851 0.8658498676571739 2.431562750119512e-007 0.5003039143140851 0.8658498676571739 2.431562750119512e-007 0.5003039143140851 0.8658498676571739 2.431562750119512e-007 0.5003039143140851 0.8658498676571739 2.431562750119512e-007 -0.5003039143140851 -0.8658498676571739 -2.431562750119512e-007 -0.5003039143140851 -0.8658498676571739 -2.431562750119512e-007 -0.5003039143140851 -0.8658498676571739 -2.431562750119512e-007 -0.5003039143140851 -0.8658498676571739 -2.431562750119512e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID781\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID779\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID777\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID778\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID779\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID779\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID782\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID783\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID786\">365.2391859376454 267.5355124690514 139.7111128382924 76.47346618137107 434.2544554826955 -14.66084780152599 365.2304074241931 267.540600577654 -14.68276011788245 76.4734984502233 434.2544904419729 139.7111128697185 76.4734984502233 434.2544904419729 139.7111128697185 365.2391859376454 267.5355124690514 139.7111128382924 76.47346618137107 434.2544554826955 -14.66084780152599 365.2304074241931 267.540600577654 -14.68276011788245 76.47346618137107 434.2544554826955 -14.66084780152599 349.2374044263819 591.7348066628747 139.7111128697222 349.2373698599943 591.7347756420277 -14.73054647771369 76.4734984502233 434.2544904419729 139.7111128697185 76.4734984502233 434.2544904419729 139.7111128697185 76.47346618137107 434.2544554826955 -14.66084780152599 349.2374044263819 591.7348066628747 139.7111128697222 349.2373698599943 591.7347756420277 -14.73054647771369 76.47345218818828 434.2544779219165 -84.7395872913022 902.1532706549345 910.9609409823129 -59.31303393919635 902.1532642920396 910.9609392801428 -84.95057353876578 76.47344110604428 434.2544588757664 -84.40799669029587 76.47346618137107 434.2544554826955 -14.66084780152599 795.8586765912279 849.5917283940348 -14.84467216886924 902.1532818369107 910.9609438449268 -14.87183360813842 786.0011731740766 843.9004957586378 -14.84215163798524 349.2373698599943 591.7347756420277 -14.73054647771369 349.2373698599943 591.7347756420277 -14.73054647771369 76.47346618137107 434.2544554826955 -14.66084780152599 786.0011731740766 843.9004957586378 -14.84215163798524 795.8586765912279 849.5917283940348 -14.84467216886924 902.1532818369107 910.9609438449268 -14.87183360813842 902.1532706549345 910.9609409823129 -59.31303393919635 76.47344110604428 434.2544588757664 -84.40799669029587 76.47345218818828 434.2544779219165 -84.7395872913022 902.1532642920396 910.9609392801428 -84.95057353876578 786.0057410808059 843.9031284656501 12.71714307596801 787.5289386099749 844.7825469902011 12.71675291180844 786.0011731740766 843.9004957586378 -14.84215163798524 795.8648959665587 849.5953142474339 53.671522913513 795.8586765912279 849.5917283940348 -14.84467216886924 787.9864964432853 845.0467124001923 127.739294749114 795.8727059813338 849.5998168044553 139.711112869732 787.9877299022538 845.0474237400265 139.7111128697319 787.9877299022538 845.0474237400265 139.7111128697319 787.9864964432853 845.0467124001923 127.739294749114 795.8727059813338 849.5998168044553 139.711112869732 795.8648959665587 849.5953142474339 53.671522913513 787.5289386099749 844.7825469902011 12.71675291180844 786.0011731740766 843.9004957586378 -14.84215163798524 795.8586765912279 849.5917283940348 -14.84467216886924 786.0057410808059 843.9031284656501 12.71714307596801</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID786\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID784\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID787\">-0.4999999861848278 -0.8660254117606266 9.46697786410942e-008 -0.4999999861848278 -0.8660254117606266 9.46697786410942e-008 -0.4999999861848278 -0.8660254117606266 9.46697786410942e-008 -0.4999999861848278 -0.8660254117606266 9.46697786410942e-008 0.4999999861848278 0.8660254117606266 -9.46697786410942e-008 0.4999999861848278 0.8660254117606266 -9.46697786410942e-008 0.4999999861848278 0.8660254117606266 -9.46697786410942e-008 0.4999999861848278 0.8660254117606266 -9.46697786410942e-008 -0.5000000102772442 0.8660253978508656 -7.681596563390426e-008 -0.5000000102772442 0.8660253978508656 -7.681596563390426e-008 -0.5000000102772442 0.8660253978508656 -7.681596563390426e-008 -0.5000000102772442 0.8660253978508656 -7.681596563390426e-008 0.5000000102772442 -0.8660253978508656 7.681596563390426e-008 0.5000000102772442 -0.8660253978508656 7.681596563390426e-008 0.5000000102772442 -0.8660253978508656 7.681596563390426e-008 0.5000000102772442 -0.8660253978508656 7.681596563390426e-008 -0.5000000115825177 0.8660253970972548 1.571548044907378e-007 -0.5000000115825177 0.8660253970972548 1.571548044907378e-007 -0.5000000115825177 0.8660253970972548 1.571548044907378e-007 -0.5000000115825177 0.8660253970972548 1.571548044907378e-007 -0.5000000115825177 0.8660253970972548 1.571548044907378e-007 -0.5000000115825177 0.8660253970972548 1.571548044907378e-007 -0.5000000115825177 0.8660253970972548 1.571548044907378e-007 -0.5000000115825177 0.8660253970972548 1.571548044907378e-007 -0.5000000115825177 0.8660253970972548 1.571548044907378e-007 0.5000000115825177 -0.8660253970972548 -1.571548044907378e-007 0.5000000115825177 -0.8660253970972548 -1.571548044907378e-007 0.5000000115825177 -0.8660253970972548 -1.571548044907378e-007 0.5000000115825177 -0.8660253970972548 -1.571548044907378e-007 0.5000000115825177 -0.8660253970972548 -1.571548044907378e-007 0.5000000115825177 -0.8660253970972548 -1.571548044907378e-007 0.5000000115825177 -0.8660253970972548 -1.571548044907378e-007 0.5000000115825177 -0.8660253970972548 -1.571548044907378e-007 0.5000000115825177 -0.8660253970972548 -1.571548044907378e-007 -0.5000000953240483 0.8660253487490649 5.811246730978953e-008 -0.5000000953240483 0.8660253487490649 5.811246730978953e-008 -0.5000000953240483 0.8660253487490649 5.811246730978953e-008 -0.5000000953240483 0.8660253487490649 5.811246730978953e-008 -0.5000000953240483 0.8660253487490649 5.811246730978953e-008 -0.5000000953240483 0.8660253487490649 5.811246730978953e-008 -0.5000000953240483 0.8660253487490649 5.811246730978953e-008 -0.5000000953240483 0.8660253487490649 5.811246730978953e-008 0.5000000953240483 -0.8660253487490649 -5.811246730978953e-008 0.5000000953240483 -0.8660253487490649 -5.811246730978953e-008 0.5000000953240483 -0.8660253487490649 -5.811246730978953e-008 0.5000000953240483 -0.8660253487490649 -5.811246730978953e-008 0.5000000953240483 -0.8660253487490649 -5.811246730978953e-008 0.5000000953240483 -0.8660253487490649 -5.811246730978953e-008 0.5000000953240483 -0.8660253487490649 -5.811246730978953e-008 0.5000000953240483 -0.8660253487490649 -5.811246730978953e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID787\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID785\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID783\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID784\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"17\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID785\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 17 19 20 17 20 21 17 21 22 21 20 23 23 20 24 34 35 36 36 37 38 37 36 35 37 35 39 37 39 40 40 39 41</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"17\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID785\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 25 26 27 27 26 28 29 28 30 28 26 30 26 31 30 31 32 30 33 30 32 42 43 44 44 43 45 43 46 45 46 47 45 48 45 47 47 46 49</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID788\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID794\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID798\">902.1532642920396 910.9609392801428 -84.95057353876578 473.7155236640256 663.6022816043133 -85.14050999833791 902.1532522400393 910.9609187738374 -85.14068094995503 76.47344081988609 434.2544587340244 -85.14035149414474 76.47345218818828 434.2544779219165 -84.7395872913022 76.47345218818828 434.2544779219165 -84.7395872913022 902.1532642920396 910.9609392801428 -84.95057353876578 76.47344081988609 434.2544587340244 -85.14035149414474 473.7155236640256 663.6022816043133 -85.14050999833791 902.1532522400393 910.9609187738374 -85.14068094995503</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID798\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID795\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID799\">0.5000000022458165 -0.8660254018357724 3.360614178715105e-005 0.5000000022458165 -0.8660254018357724 3.360614178715105e-005 0.5000000022458165 -0.8660254018357724 3.360614178715105e-005 0.5000000022458165 -0.8660254018357724 3.360614178715105e-005 0.5000000022458165 -0.8660254018357724 3.360614178715105e-005 -0.5000000022458165 0.8660254018357724 -3.360614178715105e-005 -0.5000000022458165 0.8660254018357724 -3.360614178715105e-005 -0.5000000022458165 0.8660254018357724 -3.360614178715105e-005 -0.5000000022458165 0.8660254018357724 -3.360614178715105e-005 -0.5000000022458165 0.8660254018357724 -3.360614178715105e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID799\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID797\">\r\n\t\t\t\t\t<float_array count=\"20\" id=\"ID800\">1762.183081030008 72.00018808498443 1758.160740158543 71.9985146741011 1762.183081013614 71.99885442844999 1754.431276218302 71.99819965813441 1754.431276056278 72.00101113082114 71.97221883334542 -30.89134648184229 314.1391013650101 -30.96827065435767 71.97221389579254 -31.03746242570523 188.4809081399171 -31.03752021529497 314.1390961096253 -31.03758254313512</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID800\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID796\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID794\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID795\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID796\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID797\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID796\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID797\" />\r\n\t\t\t\t\t<p>5 5 6 6 7 7 7 7 6 6 8 8 9 9 8 8 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID801\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID804\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID807\">898.9654399099187 -40.61143622407053 15.41495190693047 797.9823048865898 17.69120389899581 90.26770871346713 797.9860225296153 17.68905047442013 15.40826001785422 898.9617222668918 -40.60928279948985 90.27440060254378 898.9617222668918 -40.60928279948985 90.27440060254378 898.9654399099187 -40.61143622407053 15.41495190693047 797.9823048865898 17.69120389899581 90.26770871346713 797.9860225296153 17.68905047442013 15.40826001785422</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID807\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID805\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID808\">-0.4999999542799208 -0.8660254301809334 8.147410937456388e-008 -0.4999999542799208 -0.8660254301809334 8.147410937456388e-008 -0.4999999542799208 -0.8660254301809334 8.147410937456388e-008 -0.4999999542799208 -0.8660254301809334 8.147410937456388e-008 0.4999999542799208 0.8660254301809334 -8.147410937456388e-008 0.4999999542799208 0.8660254301809334 -8.147410937456388e-008 0.4999999542799208 0.8660254301809334 -8.147410937456388e-008 0.4999999542799208 0.8660254301809334 -8.147410937456388e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID808\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID806\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID804\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID805\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID806\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID809\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID810\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID813\">791.935523669231 21.18230715070786 14.94499276418378 690.3706925715948 79.82078966911422 90.34192362113993 690.3744372411053 79.81862058958905 14.93826232799677 791.9317789997186 21.18447623023394 90.34865405732694 791.9317789997186 21.18447623023394 90.34865405732694 791.935523669231 21.18230715070786 14.94499276418378 690.3706925715948 79.82078966911422 90.34192362113993 690.3744372411053 79.81862058958905 14.93826232799677</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID813\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID811\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID814\">-0.4999999542799221 -0.8660254301809327 8.147410740299644e-008 -0.4999999542799221 -0.8660254301809327 8.147410740299644e-008 -0.4999999542799221 -0.8660254301809327 8.147410740299644e-008 -0.4999999542799221 -0.8660254301809327 8.147410740299644e-008 0.4999999542799221 0.8660254301809327 -8.147410740299644e-008 0.4999999542799221 0.8660254301809327 -8.147410740299644e-008 0.4999999542799221 0.8660254301809327 -8.147410740299644e-008 0.4999999542799221 0.8660254301809327 -8.147410740299644e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID814\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID812\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID810\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID811\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID812\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID815\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID816\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID819\">683.8498013805144 83.58562044155406 15.37157959931113 582.8003463594038 141.9265505012081 90.99689106722002 582.8041023689729 141.9243748530171 15.36488331776207 683.8460453709494 83.58779608974555 91.0035873487692 683.8460453709494 83.58779608974555 91.0035873487692 683.8498013805144 83.58562044155406 15.37157959931113 582.8003463594038 141.9265505012081 90.99689106722002 582.8041023689729 141.9243748530171 15.36488331776207</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID819\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID817\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID820\">-0.4999999542799212 -0.866025430180933 8.147410877201851e-008 -0.4999999542799212 -0.866025430180933 8.147410877201851e-008 -0.4999999542799212 -0.866025430180933 8.147410877201851e-008 -0.4999999542799212 -0.866025430180933 8.147410877201851e-008 0.4999999542799212 0.866025430180933 -8.147410877201851e-008 0.4999999542799212 0.866025430180933 -8.147410877201851e-008 0.4999999542799212 0.866025430180933 -8.147410877201851e-008 0.4999999542799212 0.866025430180933 -8.147410877201851e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID820\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID818\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID816\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID817\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID818\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID821\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID822\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID825\">576.4754695791536 145.5782122868682 15.73141521784004 475.4978361866313 203.8776760190385 90.33736136493945 475.5015415726117 203.8755296942868 15.72472369254842 576.4717641931547 145.5803586115917 90.34405289023124 576.4717641931547 145.5803586115917 90.34405289023124 576.4754695791536 145.5782122868682 15.73141521784004 475.4978361866313 203.8776760190385 90.33736136493945 475.5015415726117 203.8755296942868 15.72472369254842</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID825\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID823\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID826\">-0.4999999542799208 -0.8660254301809334 8.147410871358002e-008 -0.4999999542799208 -0.8660254301809334 8.147410871358002e-008 -0.4999999542799208 -0.8660254301809334 8.147410871358002e-008 -0.4999999542799208 -0.8660254301809334 8.147410871358002e-008 0.4999999542799208 0.8660254301809334 -8.147410871358002e-008 0.4999999542799208 0.8660254301809334 -8.147410871358002e-008 0.4999999542799208 0.8660254301809334 -8.147410871358002e-008 0.4999999542799208 0.8660254301809334 -8.147410871358002e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID826\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID824\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID822\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID823\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID824\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID827\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID828\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID831\">1006.492568313469 17.92246087749709 90.16012723536755 905.2124991812808 -40.55161440582515 15.91945242413516 1006.478756629464 17.91448665789676 15.89434154622308 905.2263108652845 -40.54364018622391 90.18523811327981 905.2263108652845 -40.54364018622391 90.18523811327981 1006.492568313469 17.92246087749709 90.16012723536755 905.2124991812808 -40.55161440582515 15.91945242413516 1006.478756629464 17.91448665789676 15.89434154622308</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID831\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID829\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID832\">0.5000000004246341 -0.8660254035392763 4.677651202576045e-010 0.5000000004246341 -0.8660254035392763 4.677651202576045e-010 0.5000000004246341 -0.8660254035392763 4.677651202576045e-010 0.5000000004246341 -0.8660254035392763 4.677651202576045e-010 -0.5000000004246341 0.8660254035392763 -4.677651202576045e-010 -0.5000000004246341 0.8660254035392763 -4.677651202576045e-010 -0.5000000004246341 0.8660254035392763 -4.677651202576045e-010 -0.5000000004246341 0.8660254035392763 -4.677651202576045e-010</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID832\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID830\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID828\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID829\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID830\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID833\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID834\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID837\">1113.885178267915 79.92561321357334 89.6562521301866 1012.899287894335 21.62138211595539 15.43105555325121 1113.871369476001 79.91764066376072 15.40601762179216 1012.91309668619 21.62935466576619 89.68129006164668 1012.91309668619 21.62935466576619 89.68129006164668 1113.885178267915 79.92561321357334 89.6562521301866 1012.899287894335 21.62138211595539 15.43105555325121 1113.871369476001 79.91764066376072 15.40601762179216</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID837\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID835\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID838\">0.5000000004246332 -0.8660254035392767 4.677672544011608e-010 0.5000000004246332 -0.8660254035392767 4.677672544011608e-010 0.5000000004246332 -0.8660254035392767 4.677672544011608e-010 0.5000000004246332 -0.8660254035392767 4.677672544011608e-010 -0.5000000004246332 0.8660254035392767 -4.677672544011608e-010 -0.5000000004246332 0.8660254035392767 -4.677672544011608e-010 -0.5000000004246332 0.8660254035392767 -4.677672544011608e-010 -0.5000000004246332 0.8660254035392767 -4.677672544011608e-010</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID838\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID836\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID834\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID835\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID836\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID839\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID840\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID843\">1221.378310597104 141.9868021702941 89.89354165781253 1120.238006829336 83.59342045765106 15.3289739139434 1221.364438683097 141.9787931767091 15.30389770842396 1120.251878743323 83.60142945123607 89.91861786333192 1120.251878743323 83.60142945123607 89.91861786333192 1221.378310597104 141.9868021702941 89.89354165781253 1120.238006829336 83.59342045765106 15.3289739139434 1221.364438683097 141.9787931767091 15.30389770842396</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID843\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID841\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID844\">0.5000000004246332 -0.8660254035392767 4.677620879338635e-010 0.5000000004246332 -0.8660254035392767 4.677620879338635e-010 0.5000000004246332 -0.8660254035392767 4.677620879338635e-010 0.5000000004246332 -0.8660254035392767 4.677620879338635e-010 -0.5000000004246332 0.8660254035392767 -4.677620879338635e-010 -0.5000000004246332 0.8660254035392767 -4.677620879338635e-010 -0.5000000004246332 0.8660254035392767 -4.677620879338635e-010 -0.5000000004246332 0.8660254035392767 -4.677620879338635e-010</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID844\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID842\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID840\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID841\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID842\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID845\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID846\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID849\">1328.909077318972 204.069719353638 89.90450792140416 1227.459611216607 145.497842683531 15.05694596749663 1328.895152760427 204.0616799655531 15.03179311239632 1227.473535775141 145.5058820716213 89.92966077649834 1227.473535775141 145.5058820716213 89.92966077649834 1328.909077318972 204.069719353638 89.90450792140416 1227.459611216607 145.497842683531 15.05694596749663 1328.895152760427 204.0616799655531 15.03179311239632</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID849\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID847\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID850\">0.5000000004246317 -0.8660254035392776 4.677618575680068e-010 0.5000000004246317 -0.8660254035392776 4.677618575680068e-010 0.5000000004246317 -0.8660254035392776 4.677618575680068e-010 0.5000000004246317 -0.8660254035392776 4.677618575680068e-010 -0.5000000004246317 0.8660254035392776 -4.677618575680068e-010 -0.5000000004246317 0.8660254035392776 -4.677618575680068e-010 -0.5000000004246317 0.8660254035392776 -4.677618575680068e-010 -0.5000000004246317 0.8660254035392776 -4.677618575680068e-010</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID850\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID848\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID846\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID847\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID848\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID851\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID852\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID855\">1436.532144482953 266.2059262220396 89.73095747766126 1334.913828487007 207.5365640206856 15.56816181850797 1436.518347267096 266.1979603556529 15.54296706232287 1334.927625702858 207.5445298870636 89.75615223384807 1334.927625702858 207.5445298870636 89.75615223384807 1436.532144482953 266.2059262220396 89.73095747766126 1334.913828487007 207.5365640206856 15.56816181850797 1436.518347267096 266.1979603556529 15.54296706232287</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID855\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID853\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID856\">0.5000000004246317 -0.8660254035392776 4.677641239842281e-010 0.5000000004246317 -0.8660254035392776 4.677641239842281e-010 0.5000000004246317 -0.8660254035392776 4.677641239842281e-010 0.5000000004246317 -0.8660254035392776 4.677641239842281e-010 -0.5000000004246317 0.8660254035392776 -4.677641239842281e-010 -0.5000000004246317 0.8660254035392776 -4.677641239842281e-010 -0.5000000004246317 0.8660254035392776 -4.677641239842281e-010 -0.5000000004246317 0.8660254035392776 -4.677641239842281e-010</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID856\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID854\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID852\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID853\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID854\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID857\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID858\">\r\n\t\t\t\t\t<float_array count=\"1050\" id=\"ID862\">902.0372073771661 -42.38487021524543 -14.72349569421959 76.47344110604428 434.2544588757664 -84.40799669029587 902.0371798704306 -42.38488624620504 -84.47064434605792 76.47346618137107 434.2544554826955 -14.66084780152599 365.2304074241931 267.540600577654 -14.68276011788245 365.2304074241931 267.540600577654 -14.68276011788245 902.0372073771661 -42.38487021524543 -14.72349569421959 76.47346618137107 434.2544554826955 -14.66084780152599 76.47344110604428 434.2544588757664 -84.40799669029587 902.0371798704306 -42.38488624620504 -84.47064434605792 798.4982909306062 17.39329867447486 112.3201654839861 791.5567142213512 21.40101316931487 137.3399711523375 791.5579825029278 21.40028698295919 111.875207414748 798.4970292747156 17.3940210671276 137.6518977257338 576.2328511804325 145.7182867234528 111.6540400935481 583.3234515885994 141.6245272366132 112.430832463972 576.231561508049 145.7190251576449 137.5482920194067 639.0210677669658 109.4674996278832 111.6909294640846 583.3221791461228 141.625255805392 137.9791395085125 854.0916684844484 -14.70354679261345 111.7705131002378 746.6418798058952 47.33260620147121 111.8722308325815 850.7794626761589 -12.79124436053553 112.3236301479734 854.0903667195604 -14.70280143455375 137.9075603012851 850.7782010202658 -12.79052196788416 137.655362389721 424.2705745609185 233.4537318216153 112.0437460831072 421.0924675396276 235.2886123866747 112.2204093201995 368.5674107551946 265.6139624886682 112.2169284939939 424.2692930966142 233.4544655560667 137.7731948596327 421.0912003933861 235.289337922979 137.6623777822359 475.8001824508598 203.703104228035 112.3549057676974 468.6786686235263 207.814705351876 137.7761378610796 468.679950087829 207.8139716174219 112.0466890845539 475.7988984021673 203.703839442248 138.1362443079152 683.7658065320221 83.63411740344918 111.6938946899937 690.890886967696 79.52045088648765 112.3891233907454 683.7645079025139 83.63486096627003 137.7679891352411 690.8896008248311 79.52118729977019 138.2125091749904 635.5049172124842 111.4975434711168 137.9825976493171 528.2771079835462 173.4055365805807 138.1397220295647 902.0372073771661 -42.38487021524543 -14.72349569421959 898.411192669554 -40.29140172494499 -12.62352357441597 365.2304074241931 267.540600577654 -14.68276011788245 902.03714714819 -42.38490436691382 139.7111127798902 468.8665929886696 207.7062430138058 -12.85735935518915 368.1476976861636 265.8563136452185 -12.86403397853422 683.8878739970245 83.56367130379658 -12.64488300718077 583.144054891447 141.7281316969975 -12.65155928222086 798.0386052574387 17.65872798947385 -12.63017524799753 898.9654399099187 -40.61143622407053 15.41495190693047 898.4100443404612 -40.29074422037365 10.43281497028767 683.8867167735508 83.56433390106713 10.59003821439603 791.935523669231 21.18230715070786 14.94499276418378 690.3744372411053 79.81862058958905 14.93826232799677 797.9860225296153 17.68905047442013 15.40826001785422 898.9617222668918 -40.60928279948985 90.27440060254378 898.9188501439554 -40.58452743561156 111.7734837896209 791.9317789997186 21.18447623023394 90.34865405732694 683.8460453709494 83.58779608974555 91.0035873487692 531.7760829226323 171.3854091285543 111.6510939513934 898.9175483790688 -40.58378207755004 137.9105309906702 743.5702012339497 49.10603406069413 138.2160003090443 365.2391859376454 267.5355124690514 139.7111128382924 368.0133504235197 265.9338582272585 15.77217015912271 368.1465447353592 265.8569737960511 10.28509984160905 468.8654400378621 207.7069031646302 10.29177446495322 475.487968462865 203.8833852449207 10.51638613336576 576.0550365490765 145.8209720815908 10.52305069514904 583.1428976679705 141.7287942942571 10.583361939356 582.8041023689729 141.9243748530171 15.36488331776207 475.5015415726117 203.8755296942868 15.72472369254842 368.0096319280212 265.9360121455907 90.64878420903739 468.6965100099591 207.8044230691799 90.6554567115839 582.8003463594038 141.9265505012081 90.99689106722002 368.5661436089566 265.614688024968 137.6588969560303 809.4475756780474 11.07173267986855 139.7111127899626 528.2783920322393 173.4048013663678 112.3583834893471 531.7747932502483 171.3861475627464 137.5453458772519 743.5714873768139 49.10529764741432 112.3926145247994 746.6406115243254 47.33333238782507 137.336994570171 635.5061896549561 111.4968149023357 112.4342906047787 639.0197691374621 109.4682431907058 137.76502390933 791.3200958808976 21.5376603195009 -11.98144451254831 690.6452519512819 79.66229788360306 -11.98811621661474 798.0374569283414 17.65938549404427 10.42616329670801 791.3189957080809 21.53829025097639 10.10800426997008 475.489094381521 203.8827405720167 -12.08999178215962 576.0561624677273 145.8203274086909 -12.08332722037923 690.6441517784643 79.66292781507627 10.10133256590274 576.4754695791536 145.5782122868682 15.73141521784004 576.4717641931547 145.5803586115917 90.34405289023124 683.8498013805144 83.58562044155406 15.37157959931113 690.3706925715948 79.82078966911422 90.34192362113993 468.7002285054323 207.8022691508159 15.77884266166871 475.4978361866313 203.8776760190385 90.33736136493945 797.9823048865898 17.69120389899581 90.26770871346713 898.9617222668918 -40.60928279948985 90.27440060254378 797.9823048865898 17.69120389899581 90.26770871346713 791.9317789997186 21.18447623023394 90.34865405732694 797.9860225296153 17.68905047442013 15.40826001785422 791.935523669231 21.18230715070786 14.94499276418378 576.4717641931547 145.5803586115917 90.34405289023124 475.4978361866313 203.8776760190385 90.33736136493945 468.6965100099591 207.8044230691799 90.6554567115839 468.7002285054323 207.8022691508159 15.77884266166871 475.5015415726117 203.8755296942868 15.72472369254842 368.0133504235197 265.9338582272585 15.77217015912271 690.3706925715948 79.82078966911422 90.34192362113993 683.8460453709494 83.58779608974555 91.0035873487692 683.8498013805144 83.58562044155406 15.37157959931113 690.3744372411053 79.81862058958905 14.93826232799677 582.8041023689729 141.9243748530171 15.36488331776207 582.8003463594038 141.9265505012081 90.99689106722002 576.4754695791536 145.5782122868682 15.73141521784004 898.4100443404612 -40.29074422037365 10.43281497028767 798.0374569283414 17.65938549404427 10.42616329670801 683.8867167735508 83.56433390106713 10.59003821439603 791.3189957080809 21.53829025097639 10.10800426997008 690.6441517784643 79.66292781507627 10.10133256590274 690.6452519512819 79.66229788360306 -11.98811621661474 798.0386052574387 17.65872798947385 -12.63017524799753 683.8878739970245 83.56367130379658 -12.64488300718077 576.0550365490765 145.8209720815908 10.52305069514904 583.1428976679705 141.7287942942571 10.583361939356 576.0561624677273 145.8203274086909 -12.08332722037923 583.144054891447 141.7281316969975 -12.65155928222086 475.489094381521 203.8827405720167 -12.08999178215962 475.487968462865 203.8833852449207 10.51638613336576 468.8654400378621 207.7069031646302 10.29177446495322 468.8665929886696 207.7062430138058 -12.85735935518915 791.3200958808976 21.5376603195009 -11.98144451254831 683.7645079025139 83.63486096627003 137.7679891352411 639.0197691374621 109.4682431907058 137.76502390933 635.5049172124842 111.4975434711168 137.9825976493171 635.5061896549561 111.4968149023357 112.4342906047787 639.0210677669658 109.4674996278832 111.6909294640846 583.3234515885994 141.6245272366132 112.430832463972 898.9175483790688 -40.58378207755004 137.9105309906702 854.0903667195604 -14.70280143455375 137.9075603012851 743.5702012339497 49.10603406069413 138.2160003090443 850.7782010202658 -12.79052196788416 137.655362389721 798.4970292747156 17.3940210671276 137.6518977257338 791.5567142213512 21.40101316931487 137.3399711523375 746.6406115243254 47.33333238782507 137.336994570171 743.5714873768139 49.10529764741432 112.3926145247994 746.6418798058952 47.33260620147121 111.8722308325815 690.890886967696 79.52045088648765 112.3891233907454 583.3221791461228 141.625255805392 137.9791395085125 528.2771079835462 173.4055365805807 138.1397220295647 576.231561508049 145.7190251576449 137.5482920194067 531.7747932502483 171.3861475627464 137.5453458772519 528.2783920322393 173.4048013663678 112.3583834893471 475.8001824508598 203.703104228035 112.3549057676974 468.679950087829 207.8139716174219 112.0466890845539 531.7760829226323 171.3854091285543 111.6510939513934 424.2705745609185 233.4537318216153 112.0437460831072 902.03714714819 -42.38490436691382 139.7111127798902 809.4475756780474 11.07173267986855 139.7111127899626 365.2391859376454 267.5355124690514 139.7111128382924 690.8896008248311 79.52118729977019 138.2125091749904 475.7988984021673 203.703839442248 138.1362443079152 468.6786686235263 207.814705351876 137.7761378610796 424.2692930966142 233.4544655560667 137.7731948596327 421.0912003933861 235.289337922979 137.6623777822359 368.5661436089566 265.614688024968 137.6588969560303 368.5674107551946 265.6139624886682 112.2169284939939 368.0096319280212 265.9360121455907 90.64878420903739 368.1465447353592 265.8569737960511 10.28509984160905 368.1476976861636 265.8563136452185 -12.86403397853422 365.2304074241931 267.540600577654 -14.68276011788245 898.9188501439554 -40.58452743561156 111.7734837896209 854.0916684844484 -14.70354679261345 111.7705131002378 683.7658065320221 83.63411740344918 111.6938946899937 576.2328511804325 145.7182867234528 111.6540400935481 898.9654399099187 -40.61143622407053 15.41495190693047 898.411192669554 -40.29140172494499 -12.62352357441597 902.0372073771661 -42.38487021524543 -14.72349569421959 421.0924675396276 235.2886123866747 112.2204093201995 850.7794626761589 -12.79124436053553 112.3236301479734 798.4982909306062 17.39329867447486 112.3201654839861 791.5579825029278 21.40028698295919 111.875207414748 1221.100411622895 141.8263572542287 111.7974061890923 1228.297012662064 145.9813168058709 112.2472047294694 1221.105178078889 141.8291092382119 137.4268937870986 1280.948560157856 176.379701949365 112.2341487855271 1228.301771957267 145.9840646554858 137.8381883913577 1176.591371072927 116.129050760766 137.4379318248516 1069.112553952312 54.07612671694324 137.8324554841087 1065.881728495787 52.21080869935895 112.288029865122 1069.107766101823 54.0733623805254 112.0879285186782 1065.886423600169 52.2135194874345 137.5338560546522 1013.503753119138 21.97037056092222 137.5468453254709 1006.238553835761 17.77580579592177 137.6295157998047 961.3628573250074 -8.133189684697754 137.6406435748838 958.5340993236445 -9.766373879296225 137.7241789485747 906.3473074185721 -39.89643225716645 137.7371196476072 1120.811207090437 83.92435804628349 137.8909480760852 1113.949298934065 79.9626334521472 112.0768092151272 1120.806393488932 83.92157884213975 112.0079565469164 1113.954086784551 79.9653977885605 137.8213361805597 1328.856928936521 204.0396115802178 111.7152228100674 1335.953677875488 208.1369214948941 112.16745245125 1328.861751265707 204.0423958234087 137.6451434720124 1391.259391383619 240.0676901001507 111.7398673832551 1436.168296899253 265.9958588086906 111.728731373377 1388.397345183718 238.4152869560453 112.1544480551178 1335.958486988679 208.1396981076578 138.0263101227077 1284.111696626547 178.2059397112344 137.6562400918206 1280.953319453076 176.3824497989781 137.8251324474134 1173.712367650562 114.4668573597674 137.8778302358753 1442.235580593059 269.4988064672884 -14.86153247960542 1436.127328129815 265.9722051414983 -12.8870192498805 902.0372073771661 -42.38487021524543 -14.72349569421959 1442.26520396234 269.515909687374 139.7111127798921 1436.518347267096 266.1979603556529 15.54296706232287 1436.131751871105 265.9747592540657 10.89967311502682 1335.383336678701 207.8076345772579 10.92465558418087 1328.895152760427 204.0616799655531 15.03179311239632 1436.532144482953 266.2059262220396 89.73095747766126 1334.927625702858 207.5445298870636 89.75615223384807 1328.909077318972 204.069719353638 89.90450792140416 1227.473535775141 145.5058820716213 89.92966077649834 1006.492568313469 17.92246087749709 90.16012723536755 905.2263108652845 -40.54364018622391 90.18523811327981 1436.173094883212 265.9986289958169 137.5277465265295 1391.264189367582 240.0704602872702 137.5388825364075 1388.402154296925 238.4180635688117 138.0133057265755 994.5074573316971 11.00285412654284 139.7111127798875 905.2701147413669 -40.51835014569679 -12.30603623418131 902.03714714819 -42.38490436691382 139.7111127798902 1012.806098910402 21.56757930881031 -12.75161300975665 1335.378912937416 207.8050804647014 -12.86203678072647 1228.026420370296 145.8250899349405 -12.81505770540309 1328.626656573829 203.9066634325654 -12.84000343078361 1113.737640966418 79.84043232969634 -12.77664088866942 1006.113656344022 17.70369578971622 -12.33104229172139 905.2743931142753 -40.515879963712 10.69900260544154 905.2124991812808 -40.55161440582515 15.91945242413516 1120.172971500398 83.55587221243377 10.78383762575777 1012.899287894335 21.62138211595539 15.43105555325121 1227.459611216607 145.497842683531 15.05694596749663 1120.238006829336 83.59342045765106 15.3289739139434 1221.364438683097 141.9787931767091 15.30389770842396 1113.871369476001 79.91764066376072 15.40601762179216 1006.478756629464 17.91448665789676 15.89434154622308 906.3425589597188 -39.89917385023364 112.204403700913 961.3580812041342 -8.135947248845241 111.9591874741386 1284.106874297356 178.2031554680361 111.7263194298755 1176.586604616938 116.1262987767846 111.8084442268453 1006.2337777149 17.77304823177747 111.9480596990596 958.5293508647973 -9.769115472361591 112.1914630018803 1173.707554049056 114.4640781556218 111.9948387067083 1013.49905801475 21.96765977284804 112.3010191359409 1120.168660039976 83.55338292688066 -12.39911459559139 1113.741999586999 79.84294884386691 10.65989400399701 1221.436792749024 142.0205666520551 -12.42422593850196 1012.810457530985 21.57009582298088 10.68492188290975 1328.631039158879 203.909193782984 10.72538972662812 1228.030802955339 145.8276202853622 10.75033545200796 1221.44110420946 142.02305593761 10.75872628284628 1006.117934716937 17.7061659717001 10.67399654790046 1120.251878743323 83.60142945123607 89.91861786333192 1113.885178267915 79.92561321357334 89.6562521301866 1012.91309668619 21.62935466576619 89.68129006164668 1221.378310597104 141.9868021702941 89.89354165781253 1334.913828487007 207.5365640206856 15.56816181850797 1334.927625702858 207.5445298870636 89.75615223384807 1334.913828487007 207.5365640206856 15.56816181850797 1328.909077318972 204.069719353638 89.90450792140416 1436.518347267096 266.1979603556529 15.54296706232287 1328.895152760427 204.0616799655531 15.03179311239632 1227.473535775141 145.5058820716213 89.92966077649834 1120.251878743323 83.60142945123607 89.91861786333192 1006.492568313469 17.92246087749709 90.16012723536755 1012.91309668619 21.62935466576619 89.68129006164668 1006.478756629464 17.91448665789676 15.89434154622308 1012.899287894335 21.62138211595539 15.43105555325121 1221.378310597104 141.9868021702941 89.89354165781253 1221.364438683097 141.9787931767091 15.30389770842396 1227.459611216607 145.497842683531 15.05694596749663 1113.885178267915 79.92561321357334 89.6562521301866 1113.871369476001 79.91764066376072 15.40601762179216 1120.238006829336 83.59342045765106 15.3289739139434 905.2743931142753 -40.515879963712 10.69900260544154 1012.810457530985 21.57009582298088 10.68492188290975 1006.117934716937 17.7061659717001 10.67399654790046 1006.113656344022 17.70369578971622 -12.33104229172139 1012.806098910402 21.56757930881031 -12.75161300975665 1221.44110420946 142.02305593761 10.75872628284628 1228.030802955339 145.8276202853622 10.75033545200796 1221.436792749024 142.0205666520551 -12.42422593850196 1228.026420370296 145.8250899349405 -12.81505770540309 1113.737640966418 79.84043232969634 -12.77664088866942 1120.172971500398 83.55587221243377 10.78383762575777 1335.383336678701 207.8076345772579 10.92465558418087 1328.631039158879 203.909193782984 10.72538972662812 1328.626656573829 203.9066634325654 -12.84000343078361 1335.378912937416 207.8050804647014 -12.86203678072647 1113.741999586999 79.84294884386691 10.65989400399701 1120.168660039976 83.55338292688066 -12.39911459559139 1388.402154296925 238.4180635688117 138.0133057265755 1391.264189367582 240.0704602872702 137.5388825364075 1388.397345183718 238.4152869560453 112.1544480551178 1391.259391383619 240.0676901001507 111.7398673832551 1013.503753119138 21.97037056092222 137.5468453254709 1013.49905801475 21.96765977284804 112.3010191359409 1006.238553835761 17.77580579592177 137.6295157998047 1065.881728495787 52.21080869935895 112.288029865122 1069.107766101823 54.0733623805254 112.0879285186782 1113.949298934065 79.9626334521472 112.0768092151272 1120.806393488932 83.92157884213975 112.0079565469164 1173.707554049056 114.4640781556218 111.9948387067083 1006.2337777149 17.77304823177747 111.9480596990596 958.5340993236445 -9.766373879296225 137.7241789485747 961.3628573250074 -8.133189684697754 137.6406435748838 958.5293508647973 -9.769115472361591 112.1914630018803 961.3580812041342 -8.135947248845241 111.9591874741386 1280.953319453076 176.3824497989781 137.8251324474134 1284.111696626547 178.2059397112344 137.6562400918206 1280.948560157856 176.379701949365 112.2341487855271 1284.106874297356 178.2031554680361 111.7263194298755 1221.100411622895 141.8263572542287 111.7974061890923 1228.301771957267 145.9840646554858 137.8381883913577 1176.591371072927 116.129050760766 137.4379318248516 1173.712367650562 114.4668573597674 137.8778302358753 1176.586604616938 116.1262987767846 111.8084442268453 994.5074573316971 11.00285412654284 139.7111127798875 1335.958486988679 208.1396981076578 138.0263101227077 902.03714714819 -42.38490436691382 139.7111127798902 1120.811207090437 83.92435804628349 137.8909480760852 1069.112553952312 54.07612671694324 137.8324554841087 906.3473074185721 -39.89643225716645 137.7371196476072 906.3425589597188 -39.89917385023364 112.204403700913 1328.856928936521 204.0396115802178 111.7152228100674 905.2263108652845 -40.54364018622391 90.18523811327981 905.2124991812808 -40.55161440582515 15.91945242413516 905.2701147413669 -40.51835014569679 -12.30603623418131 1436.127328129815 265.9722051414983 -12.8870192498805 902.0372073771661 -42.38487021524543 -14.72349569421959 1442.26520396234 269.515909687374 139.7111127798921 1436.173094883212 265.9986289958169 137.5277465265295 1436.168296899253 265.9958588086906 111.728731373377 1436.532144482953 266.2059262220396 89.73095747766126 1436.131751871105 265.9747592540657 10.89967311502682 1442.235580593059 269.4988064672884 -14.86153247960542 1328.861751265707 204.0423958234087 137.6451434720124 1335.953677875488 208.1369214948941 112.16745245125 1113.954086784551 79.9653977885605 137.8213361805597 1065.886423600169 52.2135194874345 137.5338560546522 1221.105178078889 141.8291092382119 137.4268937870986 1228.297012662064 145.9813168058709 112.2472047294694</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"350\" source=\"#ID862\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID859\">\r\n\t\t\t\t\t<float_array count=\"1050\" id=\"ID863\">-0.4999999117886191 -0.8660254547132562 2.669339020380736e-007 -0.4999999117886191 -0.8660254547132562 2.669339020380736e-007 -0.4999999117886191 -0.8660254547132562 2.669339020380736e-007 -0.4999999117886191 -0.8660254547132562 2.669339020380736e-007 -0.4999999117886191 -0.8660254547132562 2.669339020380736e-007 0.4999999117886191 0.8660254547132562 -2.669339020380736e-007 0.4999999117886191 0.8660254547132562 -2.669339020380736e-007 0.4999999117886191 0.8660254547132562 -2.669339020380736e-007 0.4999999117886191 0.8660254547132562 -2.669339020380736e-007 0.4999999117886191 0.8660254547132562 -2.669339020380736e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 -0.4999999310907043 -0.8660254435692111 -2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.4999999310907043 0.8660254435692111 2.059646296123283e-007 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 0.5000000002908316 -0.8660254036165269 2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009 -0.5000000002908316 0.8660254036165269 -2.342779404962457e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"350\" source=\"#ID863\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID861\">\r\n\t\t\t\t\t<float_array count=\"350\" id=\"ID864\">-112.0001092109414 69.01997818854744 -119.6795929164335 68.57705713028723 -112.0000665956387 68.57711979603813 -119.6796354704602 69.01991552430458 -116.9935721149153 69.01993744233972 -112.9633221863976 69.82658754072614 -113.0279091552861 69.98544652066795 -113.027881776538 69.82375841580617 -112.9633494221152 69.98743096425997 -115.0308705563487 69.8222340230619 -114.9649131291329 69.82717020833439 -115.0308983968661 69.98664915621805 -114.446804515421 69.82250327072492 -114.9649405977035 69.98938877007039 -112.4461833335012 69.82312853818979 -113.4456985676784 69.82371446475231 -112.4769943417239 69.82663869860619 -112.4462114350629 69.98908529601285 -112.4770215774415 69.98748212214004 -116.4444482704866 69.82462370022331 -116.474011639941 69.82574364804817 -116.9626081423618 69.82569225152308 -116.4444759338139 69.98799241845234 -116.4740389941804 69.98728701467708 -115.9651117816352 69.8266281434874 -116.0313728000811 69.98803587366633 -116.0313451367538 69.82466715543733 -115.9651395007525 69.99032633493044 -114.0305817790599 69.82254705409669 -113.9643035631908 69.82696537139826 -114.0306098129372 69.98810409441653 -113.9643313275156 69.99093054113615 -114.4795283989009 69.98943983163167 -115.4769787785281 69.99037768561487 -112.0001088869191 69.01998361575831 -112.0338398972469 69.03331533242152 -116.9935717908931 69.0199428695753 -112.0002038105758 70.00056366492547 -116.0295325301731 69.03159102375054 -116.9664358480401 69.03149246885985 -114.029370209412 69.03306006383302 -114.9665053724926 69.03296148455405 -112.967521803575 69.03321711639812 -112.0287012229446 69.21134548822023 -112.0338646865474 69.17971118053387 -114.029395190718 69.18058981975941 -113.0243104013211 69.20830179588555 -113.9690479307093 69.20820241689158 -112.9680279734755 69.21124667839786 -112.0287817089888 69.68666434510496 -112.0291937001134 69.82317240223311 -113.024391472482 69.68707612184288 -114.0298227235198 69.69117432696213 -115.4444145448652 69.82219052147343 -112.0292218016751 69.98912916005617 -113.4742879333512 69.99098208986293 -116.9935846679283 70.00026427414782 -116.9677030328337 69.21331750903806 -116.9664607371106 69.17847751907046 -116.0295574192436 69.17857607396113 -115.9679537348459 69.1800059357351 -115.0324627380956 69.18010434206066 -114.9665303537986 69.18049124048044 -114.9696847197543 69.21085124419936 -115.9678305904003 69.21307619841929 -116.9677835373334 69.68874535706189 -116.0311780343167 69.68884388063033 -114.9697660364247 69.69107545228222 -116.9626354966012 69.987235618152 -112.8614869904381 70.00051202451418 -115.4769510594108 69.82667949417183 -115.4444423853826 69.98660565462957 -113.4742601690264 69.82701692012502 -113.4457259464265 69.98540256961411 -114.4795009303303 69.82722126989569 -114.4468325492983 69.98806031104473 -113.0300188525491 69.03733247456296 -113.9665123974803 69.03723396277719 -112.9675465928756 69.17961296451047 -113.0300426022865 69.17758907179244 -115.9679294293258 69.03646710534906 -115.0324384325756 69.0365655116746 -113.9665361472177 69.17749056000668 -115.0285549029055 69.2131750028702 -115.0286351235878 69.68692673716095 -114.0297414068495 69.21095011887928 -113.9691290018702 69.68697674284891 -116.0310975298171 69.2134160326065 -115.9679108110826 69.68682793271003 -112.9681084595197 69.68656553528258 -109.0322085203814 69.82350046396914 -108.9652648552602 69.82636046206132 -109.0321798714013 69.98623448368164 -108.4754916832376 69.82630689798073 -108.9652362493203 69.98885000165008 -109.4462544711622 69.98627976898207 -110.4460399579528 69.98872490954044 -110.4760779787527 69.82652919211304 -110.4460687355254 69.82526044921281 -110.4760497586345 69.98682715987674 -110.9633217933749 69.98688045042027 -111.0309038963545 69.9874013175076 -111.4483448505554 69.98744697096963 -111.4746584636388 69.98797580145224 -111.9601084043281 69.98802889272231 -109.9651308063216 69.98912511083356 -110.0289455773626 69.82521483050657 -109.9651597386717 69.8247814719832 -110.0289167997901 69.9886792908342 -108.0298400129285 69.82303867768799 -107.9638251895932 69.82591405638354 -108.0298110281202 69.98768029231289 -107.4493622846316 69.82322992508217 -107.0316124149206 69.82318423783558 -107.4759857525453 69.82586070378602 -107.9637962842203 69.99010445769211 -108.4460832414024 69.98772581795548 -108.4754630772976 69.98879643756949 -109.4730356933854 69.98907129281372 -106.9750960719903 69.01940478489637 -107.0319172281621 69.03193852155107 -112.0001083183444 69.01998027966279 -106.9749151349544 70.00086131292881 -107.0282973084297 69.21245447776124 -107.0318906390828 69.18297174253935 -107.9690686183051 69.18307423708107 -108.0294252625416 69.20914882555704 -107.0282143801136 69.68350993091903 -107.9733559728309 69.68361329640197 -108.0293415688306 69.68455192525092 -108.9729113080897 69.68465511882798 -111.0285119544105 69.685995343953 -111.970506985756 69.68609836531202 -107.0315835764403 69.98699467003567 -107.4493334461514 69.98704035728227 -107.4759568471722 69.99005110509459 -111.1400297170828 70.00061184797721 -111.9700367733872 69.03533170060301 -112.0002034165523 70.00056032882067 -110.9697194782639 69.03256243095835 -107.9690952073843 69.03204101609278 -108.9677053901055 69.0322794983163 -108.0319057956954 69.03217715452173 -110.0308380234717 69.03245975011591 -111.0319739129809 69.03522910928621 -111.9700110580506 69.18140182509139 -111.9705900010331 69.21454895231314 -109.9709899664891 69.18206021285126 -110.9688698714774 69.2115078811854 -108.9729950018006 69.20925201913414 -109.9703877794763 69.21091951844905 -109.0296934283229 69.21081663933902 -110.0296113114066 69.21140515910078 -111.0285949696876 69.21444593095411 -111.9601369451356 69.82590932305497 -111.4483735576267 69.82438297808398 -108.4461122262107 69.82308420333058 -109.4462831201422 69.82354574926957 -111.0309326034257 69.82433732462194 -111.4746870044463 69.8258562317849 -109.4730646257355 69.82472765396338 -110.9633500134932 69.82658248265656 -109.9710158806996 69.03486043020415 -110.0308118258032 69.18126965186021 -109.0290034054598 69.03475740693742 -110.9696932805953 69.18137233270265 -108.0318794539874 69.18180523974766 -108.9676790483975 69.18190758354221 -109.0289774912493 69.18195718958451 -111.0319481976442 69.18129923377458 -109.9703044021861 69.68452526426789 -110.0295283135123 69.68285583012735 -110.9687868735835 69.68295855221199 -109.0296100510327 69.68442238515786 -107.9734389011469 69.21255784324417</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"175\" source=\"#ID864\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID860\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID858\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID859\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"249\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID860\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID861\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 10 5 11 6 12 7 11 6 10 5 13 8 14 9 15 10 16 11 15 10 14 9 17 12 16 11 15 10 18 13 19 14 12 7 20 15 12 7 19 14 21 16 21 16 19 14 22 17 12 7 21 16 10 5 21 16 22 17 23 18 24 19 25 20 26 21 25 20 24 19 27 22 25 20 27 22 28 23 29 24 30 25 31 26 30 25 29 24 32 27 33 28 34 29 35 30 34 29 33 28 20 15 20 15 33 28 19 14 35 30 34 29 36 31 35 30 36 31 37 32 37 32 36 31 38 33 39 34 40 35 41 36 40 35 39 34 42 37 41 36 40 35 43 38 41 36 43 38 44 39 43 38 40 35 45 40 43 38 45 40 46 41 45 40 40 35 47 42 40 35 42 37 48 43 40 35 48 43 49 44 49 44 48 43 50 45 50 45 48 43 51 46 50 45 51 46 52 47 51 46 48 43 53 48 48 43 42 37 54 49 54 49 42 37 55 50 54 49 55 50 56 51 56 51 55 50 57 52 57 52 55 50 14 9 57 52 14 9 58 53 14 9 55 50 33 28 14 9 33 28 17 12 33 28 55 50 19 14 55 50 42 37 59 54 59 54 42 37 60 55 44 39 61 56 41 36 61 56 44 39 62 57 62 57 44 39 63 58 62 57 63 58 64 59 62 57 64 59 65 60 62 57 65 60 66 61 62 57 66 61 67 62 62 57 67 62 50 45 62 57 50 45 52 47 62 57 52 47 68 63 62 57 68 63 69 64 61 56 62 57 70 65 61 56 70 65 26 21 26 21 70 65 71 66 26 21 71 66 72 67 26 21 72 67 57 52 26 21 57 52 58 53 26 21 58 53 24 19 61 56 26 21 73 68 61 56 73 68 28 23 61 56 28 23 27 22 61 56 27 22 30 25 61 56 30 25 32 27 61 56 32 27 38 33 61 56 38 33 36 31 61 56 36 31 60 55 61 56 60 55 74 69 74 69 60 55 42 37 58 53 31 26 24 19 31 26 58 53 75 70 75 70 58 53 76 71 31 26 75 70 29 24 75 70 76 71 38 33 38 33 76 71 16 11 38 33 16 11 18 13 38 33 18 13 37 32 20 15 77 72 34 29 77 72 20 15 78 73 77 72 78 73 60 55 60 55 78 73 11 6 60 55 11 6 13 8 60 55 13 8 23 18 60 55 23 18 22 17 60 55 22 17 59 54 17 12 79 74 15 10 79 74 17 12 80 75 79 74 80 75 37 32 37 32 80 75 35 30 47 42 81 76 82 77 81 76 47 42 83 78 81 76 83 78 84 79 43 38 85 80 64 59 85 80 43 38 46 41 64 59 85 80 65 60 46 41 86 81 85 80 86 81 46 41 67 62 86 81 67 62 66 61 45 40 82 77 50 45 82 77 45 40 47 42 50 45 82 77 87 82 50 45 87 82 84 79 50 45 84 79 83 78 50 45 83 78 49 44 68 63 88 83 69 64 88 83 68 63 72 67 88 83 72 67 89 84 89 84 72 67 71 66 52 47 90 85 68 63 90 85 52 47 91 86 90 85 91 86 57 52 57 52 91 86 56 51 69 64 92 87 62 57 92 87 69 64 93 88 92 87 93 88 71 66 71 66 93 88 89 84 53 48 56 51 51 46 56 51 53 48 94 89 56 51 94 89 54 49 180 90 181 91 182 92 181 91 180 90 183 93 182 92 181 91 184 94 182 92 184 94 185 95 186 96 187 97 188 98 187 97 186 96 189 99 189 99 186 96 190 100 190 100 186 96 191 101 191 101 186 96 192 102 192 102 186 96 193 103 193 103 186 96 194 104 195 105 196 106 197 107 196 106 195 105 198 108 198 108 195 105 186 96 199 109 200 110 201 111 200 110 199 109 202 112 202 112 199 109 203 113 200 110 202 112 204 114 201 111 200 110 205 115 201 111 205 115 206 116 206 116 205 115 207 117 207 117 205 115 184 94 184 94 205 115 208 118 208 118 205 115 195 105 209 119 210 120 211 121 210 120 209 119 212 122 210 120 212 122 213 123 210 120 213 123 214 124 214 124 213 123 215 125 215 125 213 123 216 126 213 123 212 122 217 127 217 127 212 122 203 113 217 127 203 113 218 128 218 128 203 113 219 129 219 129 203 113 220 130 220 130 203 113 221 131 221 131 203 113 222 132 222 132 203 113 199 109 203 113 212 122 223 133 223 133 212 122 224 134 224 134 212 122 225 135 225 135 212 122 205 115 205 115 212 122 226 136 211 121 227 137 228 138 227 137 211 121 229 139 229 139 211 121 230 140 230 140 211 121 210 120 229 139 230 140 231 141 231 141 230 140 232 142 229 139 231 141 233 143 227 137 229 139 234 144 228 138 227 137 235 145 228 138 235 145 236 146 236 146 235 145 237 147 236 146 237 147 215 125 236 146 215 125 238 148 238 148 215 125 239 149 239 149 215 125 216 126 238 148 239 149 240 150 240 150 239 149 241 151 238 148 240 150 242 152 236 146 238 148 243 153 228 138 236 146 222 132 228 138 222 132 244 154 244 154 222 132 245 155 245 155 222 132 246 156 246 156 222 132 199 109 245 155 246 156 247 157 247 157 246 156 180 90 245 155 247 157 248 158 244 154 245 155 249 159 228 138 244 154 194 104 228 138 194 104 186 96 228 138 186 96 195 105 228 138 195 105 205 115 228 138 205 115 226 136 247 157 250 160 248 158 250 160 247 157 185 95 250 160 185 95 208 118 208 118 185 95 184 94 246 156 183 93 180 90 183 93 246 156 206 116 183 93 206 116 207 117 192 102 249 159 245 155 249 159 192 102 193 103 248 158 251 161 191 101 251 161 248 158 188 98 188 98 248 158 197 107 197 107 248 158 250 160 188 98 197 107 196 106 251 161 188 98 187 97 191 101 251 161 190 100 224 134 204 114 202 112 204 114 224 134 225 135 233 143 252 162 253 163 252 162 233 143 254 164 253 163 252 162 237 147 253 163 237 147 255 165 255 165 237 147 235 145 215 125 232 142 230 140 232 142 215 125 256 166 256 166 215 125 257 167 257 167 215 125 258 168 258 168 215 125 237 147 231 141 254 164 233 143 254 164 231 141 257 167 254 164 257 167 258 168 255 165 234 144 229 139 234 144 255 165 259 169 259 169 255 165 235 145 260 170 242 152 240 150 242 152 260 170 261 171 261 171 260 170 262 172 220 130 241 151 239 149 241 151 220 130 263 173 263 173 220 130 260 170 262 172 243 153 238 148 243 153 262 172 221 131 221 131 262 172 260 170 221 131 260 170 220 130 216 126 264 174 219 129 264 174 216 126 213 123 219 129 264 174 218 128</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"249\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID860\" />\r\n\t\t\t\t\t<p>5 6 7 7 6 8 9 8 6 95 96 97 96 98 97 99 97 98 100 101 102 102 101 103 101 104 103 105 103 104 97 106 107 107 106 108 106 109 108 110 108 109 102 111 100 100 111 112 111 110 112 104 112 110 113 114 115 114 116 115 116 117 115 117 118 115 119 120 118 115 118 120 121 122 123 122 124 123 125 123 124 126 125 127 124 128 125 127 125 128 116 114 129 114 119 129 118 129 119 130 131 132 132 131 133 131 134 133 135 133 134 136 137 138 137 139 138 139 140 138 140 141 138 141 142 138 138 142 143 142 144 143 145 143 144 132 146 147 146 148 147 148 149 147 147 149 150 151 150 152 149 153 150 150 153 152 154 152 153 155 138 156 156 138 157 138 158 157 158 147 157 147 159 157 159 160 157 160 161 157 161 162 157 162 163 157 163 164 157 154 153 164 153 107 164 107 111 164 111 102 164 102 165 164 164 165 157 165 105 157 104 110 105 110 109 105 109 115 105 115 122 105 122 121 105 121 126 105 126 127 105 127 166 105 166 167 105 105 167 157 168 157 167 138 155 136 136 155 169 170 169 171 134 171 172 171 169 172 153 172 107 172 169 107 107 169 97 97 169 95 169 155 95 95 155 173 98 173 99 109 99 115 99 173 115 115 173 113 113 173 174 173 155 174 119 174 120 124 120 128 120 174 128 167 128 168 128 174 168 155 175 174 168 174 175 147 158 132 132 158 130 158 145 130 170 171 144 144 171 145 130 145 171 159 151 160 152 160 151 162 161 176 161 154 176 164 176 154 139 137 177 178 177 179 137 170 177 177 170 179 144 179 170 146 135 148 134 172 135 148 135 172 140 178 141 179 141 178 265 266 267 268 269 266 267 266 269 270 271 272 271 273 272 272 273 274 275 274 273 271 270 276 276 270 277 278 277 270 273 271 279 279 271 280 281 280 271 282 283 284 284 283 285 286 285 283 287 288 289 288 290 289 291 289 290 292 293 287 287 293 288 288 293 294 294 293 295 296 295 293 282 292 283 283 292 297 292 298 297 289 291 298 297 298 291 299 300 301 302 301 300 303 304 305 306 307 304 308 309 307 310 311 309 309 311 307 307 311 304 305 304 311 312 313 314 315 314 313 316 317 318 317 319 318 320 318 319 321 322 323 323 322 310 322 324 310 311 310 324 325 326 327 326 328 327 328 329 327 329 330 327 330 331 327 314 315 331 311 324 315 320 319 324 324 319 315 332 333 319 319 333 315 315 333 331 331 333 327 333 334 327 274 275 334 280 281 275 277 278 281 281 278 275 269 293 278 278 293 275 275 293 334 293 292 334 292 282 334 334 282 327 282 335 327 285 286 335 291 290 286 295 296 290 290 296 286 336 337 296 296 337 286 286 337 335 327 335 337 325 338 326 326 338 299 299 338 300 300 338 339 339 338 340 332 340 333 333 340 272 272 340 270 270 340 267 267 340 265 265 340 341 340 338 341 341 338 268 269 268 293 293 268 342 342 268 336 268 338 336 338 343 336 337 336 343 328 326 323 323 326 321 321 326 316 316 326 317 317 326 344 326 345 344 301 302 345 340 332 302 302 332 345 344 345 332 329 328 346 346 328 308 309 308 328 330 329 312 312 329 313 313 329 305 305 329 303 303 329 347 347 329 306 307 306 329 322 321 348 321 349 348 318 320 349 348 349 320</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID865\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID871\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID875\">809.4560865179889 857.4421851676941 190.8921810147911 76.47349828264248 434.2544905387276 190.8921810147979 809.4560590451318 11.0668117712421 190.8921810147915 809.4560590451318 11.0668117712421 190.8921810147915 76.47349828264248 434.2544905387276 190.8921810147979 809.4560865179889 857.4421851676941 190.8921810147911</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID875\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID872\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID876\">1.615718735019367e-015 4.55581752878409e-016 1 1.615718735019367e-015 4.55581752878409e-016 1 1.615718735019367e-015 4.55581752878409e-016 1 -1.615718735019367e-015 -4.55581752878409e-016 -1 -1.615718735019367e-015 -4.55581752878409e-016 -1 -1.615718735019367e-015 -4.55581752878409e-016 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID876\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID874\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID877\">0.4439873013253445 1 0 0.5000361867286881 0.4439872846842948 7.239219649992842e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID877\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID873\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID871\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID872\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID873\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID874\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID873\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID878\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID879\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID882\">349.2374044263819 591.7348066628747 139.7111128697222 365.2391859376454 267.5355124690514 139.7111128382924 76.4734984502233 434.2544904419729 139.7111128697185 787.9877299022538 845.0474237400265 139.7111128697319 809.4475756780474 11.07173267986855 139.7111127899626 795.8727059813338 849.5998168044553 139.711112869732 809.4476031506716 857.4372873859227 139.7111128697325 809.4476031506716 857.4372873859227 139.7111128697325 795.8727059813338 849.5998168044553 139.711112869732 809.4475756780474 11.07173267986855 139.7111127899626 787.9877299022538 845.0474237400265 139.7111128697319 365.2391859376454 267.5355124690514 139.7111128382924 349.2374044263819 591.7348066628747 139.7111128697222 76.4734984502233 434.2544904419729 139.7111128697185 809.4476031506716 857.4372873859227 139.7111128697325 902.03714714819 -42.38490436691382 139.7111127798902 809.4475756780474 11.07173267986855 139.7111127899626 809.4560864969368 857.4421852042517 139.7111128697368 994.8045393659412 857.4226246708472 139.7111128596481 994.5074573316971 11.00285412654284 139.7111127798875 994.5074573316971 11.00285412654284 139.7111127798875 994.8045393659412 857.4226246708472 139.7111128596481 902.03714714819 -42.38490436691382 139.7111127798902 809.4560864969368 857.4421852042517 139.7111128697368 809.4476031506716 857.4372873859227 139.7111128697325 809.4475756780474 11.07173267986855 139.7111127899626 994.8045393659412 857.4226246708472 139.7111128596481 1442.26520396234 269.515909687374 139.7111127798921 994.5074573316971 11.00285412654284 139.7111127798875 994.8091842373443 857.4226241806748 139.7111128596477 1015.211462024895 845.6338143087585 139.7111128574267 1023.07440275878 841.0904630690682 139.7111128565707 1454.673780839942 591.7044360177847 139.7111128095839 1727.382400484547 434.1283998576341 139.711112779895 1727.382400484547 434.1283998576341 139.711112779895 1454.673780839942 591.7044360177847 139.7111128095839 1442.26520396234 269.515909687374 139.7111127798921 1023.07440275878 841.0904630690682 139.7111128565707 1015.211462024895 845.6338143087585 139.7111128574267 994.8091842373443 857.4226241806748 139.7111128596477 994.8045393659412 857.4226246708472 139.7111128596481 994.5074573316971 11.00285412654284 139.7111127798875</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID882\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID880\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID883\">-5.43889264138439e-011 9.424996297736213e-011 -1 -5.43889264138439e-011 9.424996297736213e-011 -1 -5.43889264138439e-011 9.424996297736213e-011 -1 -5.43889264138439e-011 9.424996297736213e-011 -1 -5.43889264138439e-011 9.424996297736213e-011 -1 -5.43889264138439e-011 9.424996297736213e-011 -1 -5.43889264138439e-011 9.424996297736213e-011 -1 5.43889264138439e-011 -9.424996297736213e-011 1 5.43889264138439e-011 -9.424996297736213e-011 1 5.43889264138439e-011 -9.424996297736213e-011 1 5.43889264138439e-011 -9.424996297736213e-011 1 5.43889264138439e-011 -9.424996297736213e-011 1 5.43889264138439e-011 -9.424996297736213e-011 1 5.43889264138439e-011 -9.424996297736213e-011 1 -5.440481821560732e-011 9.425045157307116e-011 -1 -5.440481821560732e-011 9.425045157307116e-011 -1 -5.440481821560732e-011 9.425045157307116e-011 -1 -5.440481821560732e-011 9.425045157307116e-011 -1 -5.440481821560732e-011 9.425045157307116e-011 -1 -5.440481821560732e-011 9.425045157307116e-011 -1 5.440481821560732e-011 -9.425045157307116e-011 1 5.440481821560732e-011 -9.425045157307116e-011 1 5.440481821560732e-011 -9.425045157307116e-011 1 5.440481821560732e-011 -9.425045157307116e-011 1 5.440481821560732e-011 -9.425045157307116e-011 1 5.440481821560732e-011 -9.425045157307116e-011 1 -5.440585993060717e-011 9.42517561393352e-011 -1 -5.440585993060717e-011 9.42517561393352e-011 -1 -5.440585993060717e-011 9.42517561393352e-011 -1 -5.440585993060717e-011 9.42517561393352e-011 -1 -5.440585993060717e-011 9.42517561393352e-011 -1 -5.440585993060717e-011 9.42517561393352e-011 -1 -5.440585993060717e-011 9.42517561393352e-011 -1 -5.440585993060717e-011 9.42517561393352e-011 -1 5.440585993060717e-011 -9.42517561393352e-011 1 5.440585993060717e-011 -9.42517561393352e-011 1 5.440585993060717e-011 -9.42517561393352e-011 1 5.440585993060717e-011 -9.42517561393352e-011 1 5.440585993060717e-011 -9.42517561393352e-011 1 5.440585993060717e-011 -9.42517561393352e-011 1 5.440585993060717e-011 -9.42517561393352e-011 1 5.440585993060717e-011 -9.42517561393352e-011 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID883\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID881\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID879\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID880\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID881\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 14 15 16 15 14 17 15 17 18 15 18 19 26 27 28 27 26 29 27 29 30 27 30 31 27 31 32 27 32 33</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID881\" />\r\n\t\t\t\t\t<p>7 8 9 8 10 9 9 10 11 10 12 11 13 11 12 20 21 22 21 23 22 23 24 22 25 22 24 34 35 36 35 37 36 37 38 36 38 39 36 39 40 36 41 36 40</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID884\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID890\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID899\">809.456086496746 857.4421852045566 158.3814248534625 994.8071241385018 857.4226244050419 168.1922053029527 994.8062322438572 857.4226245012223 158.3645963820478 809.4560864932554 857.4421852106257 168.2229274550701 809.4560864932554 857.4421852106257 168.2229274550701 809.456086496746 857.4421852045566 158.3814248534625 994.8071241385018 857.4226244050419 168.1922053029527 994.8062322438572 857.4226245012223 158.3645963820478 994.8062322438572 857.4226245012223 158.3645963820478 994.8091842395482 857.4226241791469 168.1922049614898 994.809184238091 857.422624178477 158.3645961140301 994.8071241385018 857.4226244050419 168.1922053029527 994.8071241385018 857.4226244050419 168.1922053029527 994.8062322438572 857.4226245012223 158.3645963820478 994.8091842395482 857.4226241791469 168.1922049614898 994.809184238091 857.422624178477 158.3645961140301 809.4560864969368 857.4421852042517 139.7111128697368 994.8062322438572 857.4226245012223 158.3645963820478 994.8045393659412 857.4226246708472 139.7111128596481 809.456086496746 857.4421852045566 158.3814248534625 809.456086496746 857.4421852045566 158.3814248534625 809.4560864969368 857.4421852042517 139.7111128697368 994.8062322438572 857.4226245012223 158.3645963820478 994.8045393659412 857.4226246708472 139.7111128596481 994.8091842516654 857.4226241957954 190.892181014791 994.8091842395482 857.4226241791469 168.1922049614898 994.8071241385018 857.4226244050419 168.1922053029527 994.8071241385018 857.4226244050419 168.1922053029527 994.8091842395482 857.4226241791469 168.1922049614898 994.8091842516654 857.4226241957954 190.892181014791 994.8045393659412 857.4226246708472 139.7111128596481 994.809184238091 857.422624178477 158.3645961140301 994.8091842373443 857.4226241806748 139.7111128596477 994.8062322438572 857.4226245012223 158.3645963820478 994.8062322438572 857.4226245012223 158.3645963820478 994.8045393659412 857.4226246708472 139.7111128596481 994.809184238091 857.422624178477 158.3645961140301 994.8091842373443 857.4226241806748 139.7111128596477</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID899\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID891\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID900\">0.0001055338111150658 0.9999999944313075 -2.039720435197297e-010 0.0001055338111150658 0.9999999944313075 -2.039720435197297e-010 0.0001055338111150658 0.9999999944313075 -2.039720435197297e-010 0.0001055338111150658 0.9999999944313075 -2.039720435197297e-010 -0.0001055338111150658 -0.9999999944313075 2.039720435197297e-010 -0.0001055338111150658 -0.9999999944313075 2.039720435197297e-010 -0.0001055338111150658 -0.9999999944313075 2.039720435197297e-010 -0.0001055338111150658 -0.9999999944313075 2.039720435197297e-010 0.0001094264319977881 0.9999999940129281 -1.061430246539034e-010 0.0001094264319977881 0.9999999940129281 -1.061430246539034e-010 0.0001094264319977881 0.9999999940129281 -1.061430246539034e-010 0.0001094264319977881 0.9999999940129281 -1.061430246539034e-010 -0.0001094264319977881 -0.9999999940129281 1.061430246539034e-010 -0.0001094264319977881 -0.9999999940129281 1.061430246539034e-010 -0.0001094264319977881 -0.9999999940129281 1.061430246539034e-010 -0.0001094264319977881 -0.9999999940129281 1.061430246539034e-010 0.000105533812755159 0.9999999944313072 -2.496197492956286e-010 0.000105533812755159 0.9999999944313072 -2.496197492956286e-010 0.000105533812755159 0.9999999944313072 -2.496197492956286e-010 0.000105533812755159 0.9999999944313072 -2.496197492956286e-010 -0.000105533812755159 -0.9999999944313072 2.496197492956286e-010 -0.000105533812755159 -0.9999999944313072 2.496197492956286e-010 -0.000105533812755159 -0.9999999944313072 2.496197492956286e-010 -0.000105533812755159 -0.9999999944313072 2.496197492956286e-010 0.0001096409034079935 0.9999999939894363 -7.327777162184983e-010 0.0001096409034079935 0.9999999939894363 -7.327777162184983e-010 0.0001096409034079935 0.9999999939894363 -7.327777162184983e-010 -0.0001096409034079935 -0.9999999939894363 7.327777162184983e-010 -0.0001096409034079935 -0.9999999939894363 7.327777162184983e-010 -0.0001096409034079935 -0.9999999939894363 7.327777162184983e-010 0.0001066237117553836 0.9999999943156921 -2.330418056336985e-010 0.0001066237117553836 0.9999999943156921 -2.330418056336985e-010 0.0001066237117553836 0.9999999943156921 -2.330418056336985e-010 0.0001066237117553836 0.9999999943156921 -2.330418056336985e-010 -0.0001066237117553836 -0.9999999943156921 2.330418056336985e-010 -0.0001066237117553836 -0.9999999943156921 2.330418056336985e-010 -0.0001066237117553836 -0.9999999943156921 2.330418056336985e-010 -0.0001066237117553836 -0.9999999943156921 2.330418056336985e-010</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID900\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID893\">\r\n\t\t\t\t\t<float_array count=\"38\" id=\"ID901\">0.9999999999811644 0.6548272093564957 6.072112102906146e-006 0.9989224764337115 1.088400439375192e-005 0.654236981352132 1 1 1 8.239705806545317e-009 0 0.3021315205260358 4.936009645462036e-007 0 0.6978672267869115 0.3021315310236767 0.9999999999877236 8.524487782324286e-010 1.088401198234834e-005 0.6542369827250418 2.001731739742496e-005 4.98606489429676e-010 0.999999999988753 0.6548272107294055 0.06229815754340962 1 0.06230226170737296 0.3021315370461419 0.7601694885524921 0.302131547543782 2.505971374588967e-005 1.332267629550188e-014 8.881784197001252e-016 0.6542369728262143 4.030553668599168e-012 0 1.592640833170123e-005 0.6542369822264487</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"19\" source=\"#ID901\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID892\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID890\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID891\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID892\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID893\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 16 8 17 9 18 10 17 9 16 8 19 11 30 15 31 16 32 17 31 16 30 15 33 18</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID892\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 27 28 29 34 35 36 37 36 35</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID892\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID893\" />\r\n\t\t\t\t\t<p>8 4 9 5 10 6 9 5 8 4 11 7 24 12 25 13 26 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID902\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID908\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID917\">809.4560864932554 857.4421852106257 168.2229274550701 994.8091842516654 857.4226241957954 190.892181014791 994.8071241385018 857.4226244050419 168.1922053029527 809.4560865179889 857.4421851676941 190.8921810147911 809.4560865179889 857.4421851676941 190.8921810147911 809.4560864932554 857.4421852106257 168.2229274550701 994.8091842516654 857.4226241957954 190.892181014791 994.8071241385018 857.4226244050419 168.1922053029527 902.0371471481591 -42.38490436694337 190.8921810147918 809.4560865179889 857.4421851676941 190.8921810147911 809.4560590451318 11.0668117712421 190.8921810147915 994.8091842516654 857.4226241957954 190.892181014791 994.5121031590028 11.00553636303721 190.8921810147918 994.5121031590028 11.00553636303721 190.8921810147918 902.0371471481591 -42.38490436694337 190.8921810147918 994.8091842516654 857.4226241957954 190.892181014791 809.4560865179889 857.4421851676941 190.8921810147911 809.4560590451318 11.0668117712421 190.8921810147915</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID917\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID909\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID918\">0.000105533695350335 0.9999999944313197 7.645137973209815e-010 0.000105533695350335 0.9999999944313197 7.645137973209815e-010 0.000105533695350335 0.9999999944313197 7.645137973209815e-010 0.000105533695350335 0.9999999944313197 7.645137973209815e-010 -0.000105533695350335 -0.9999999944313197 -7.645137973209815e-010 -0.000105533695350335 -0.9999999944313197 -7.645137973209815e-010 -0.000105533695350335 -0.9999999944313197 -7.645137973209815e-010 -0.000105533695350335 -0.9999999944313197 -7.645137973209815e-010 -5.150502420392389e-016 8.310951753187634e-016 1 -5.150502420392389e-016 8.310951753187634e-016 1 -5.150502420392389e-016 8.310951753187634e-016 1 -5.150502420392389e-016 8.310951753187634e-016 1 -5.150502420392389e-016 8.310951753187634e-016 1 5.150502420392389e-016 -8.310951753187634e-016 -1 5.150502420392389e-016 -8.310951753187634e-016 -1 5.150502420392389e-016 -8.310951753187634e-016 -1 5.150502420392389e-016 -8.310951753187634e-016 -1 5.150502420392389e-016 -8.310951753187634e-016 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID918\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID911\">\r\n\t\t\t\t\t<float_array count=\"26\" id=\"ID919\">0.5608043082917785 2.154454095219053 0.5685491115236555 2.878905844290377 0.5556959762538705 2.874619422659108 0.5736401046322164 2.158726722080913 0.573640104632216 2.158726722080912 0.5608043082917782 2.154454095219053 0.5685491115236556 2.878905844290377 0.5556959762538706 2.874619422659108 0.4994849048262164 -6.938893903907228e-018 1.482190112866988e-007 1 0 0.05940220822405895 1 0.9999782614103019 0.9983972156264871 0.05933411135420746</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"13\" source=\"#ID919\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID910\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID908\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID909\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID910\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID911\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 7 7 6 6 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID910\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID911\" />\r\n\t\t\t\t\t<p>8 8 9 9 10 10 9 9 8 8 11 11 11 11 8 8 12 12 13 12 14 8 15 11 15 11 14 8 16 9 17 10 16 9 14 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID920\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID921\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID925\">1727.382400513232 434.1283998079239 190.8921810147918 994.8091842516654 857.4226241957954 190.892181014791 994.5121031590028 11.00553636303721 190.8921810147918 994.5121031590028 11.00553636303721 190.8921810147918 994.8091842516654 857.4226241957954 190.892181014791 1727.382400513232 434.1283998079239 190.8921810147918</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID925\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID922\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID926\">-5.63337896296312e-016 1.06436127272902e-015 1 -5.63337896296312e-016 1.06436127272902e-015 1 -5.63337896296312e-016 1.06436127272902e-015 1 5.63337896296312e-016 -1.06436127272902e-015 -1 5.63337896296312e-016 -1.06436127272902e-015 -1 5.63337896296312e-016 -1.06436127272902e-015 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID926\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID924\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID927\">0.9999999999999998 0.499887220198255 0.5562606663082585 0.9999768902115398 0.5560807162866304 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID927\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID923\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID921\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID922\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID923\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID924\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID923\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID928\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID929\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID933\">1350.20437538212 652.0687941544434 -84.9845419763617 1727.38243794837 434.128421847056 -14.93439600071133 1727.382410402378 434.1284176087024 -85.01313571523843 902.1532642920396 910.9609392801428 -84.95057353876578 902.1532706549345 910.9609409823129 -59.31303393919635 902.1532818369107 910.9609438449268 -14.87183360813842 1015.197435091615 845.6419607349735 -14.88040338756056 1454.67381811884 591.7044576928788 -14.91371889401026 1025.037959287489 839.9559256190437 -14.88114336892562 1025.037959287489 839.9559256190437 -14.88114336892562 1015.197435091615 845.6419607349735 -14.88040338756056 1454.67381811884 591.7044576928788 -14.91371889401026 1727.38243794837 434.128421847056 -14.93439600071133 902.1532818369107 910.9609438449268 -14.87183360813842 902.1532706549345 910.9609409823129 -59.31303393919635 902.1532642920396 910.9609392801428 -84.95057353876578 1350.20437538212 652.0687941544434 -84.9845419763617 1727.382410402378 434.1284176087024 -85.01313571523843</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID933\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID930\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID934\">0.5003039210949808 0.8658498637390361 -2.82849057876356e-007 0.5003039210949808 0.8658498637390361 -2.82849057876356e-007 0.5003039210949808 0.8658498637390361 -2.82849057876356e-007 0.5003039210949808 0.8658498637390361 -2.82849057876356e-007 0.5003039210949808 0.8658498637390361 -2.82849057876356e-007 0.5003039210949808 0.8658498637390361 -2.82849057876356e-007 0.5003039210949808 0.8658498637390361 -2.82849057876356e-007 0.5003039210949808 0.8658498637390361 -2.82849057876356e-007 0.5003039210949808 0.8658498637390361 -2.82849057876356e-007 -0.5003039210949808 -0.8658498637390361 2.82849057876356e-007 -0.5003039210949808 -0.8658498637390361 2.82849057876356e-007 -0.5003039210949808 -0.8658498637390361 2.82849057876356e-007 -0.5003039210949808 -0.8658498637390361 2.82849057876356e-007 -0.5003039210949808 -0.8658498637390361 2.82849057876356e-007 -0.5003039210949808 -0.8658498637390361 2.82849057876356e-007 -0.5003039210949808 -0.8658498637390361 2.82849057876356e-007 -0.5003039210949808 -0.8658498637390361 2.82849057876356e-007 -0.5003039210949808 -0.8658498637390361 2.82849057876356e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID934\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID932\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID935\">1750.625659383562 72.00141598005899 1743.576286362375 72.49334587486524 1743.576097971464 72.00172398427324 1758.999858175988 72.00105011364018 1758.999927150016 72.18090459931075 1759.00004670968 72.49267200573787 1756.887220326194 72.49276431820039 1748.673285622189 72.49312320270924 1756.703298217199 72.49277239625901</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"9\" source=\"#ID935\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID931\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID929\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID930\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID931\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID932\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 1 1 4 4 5 5 1 1 5 5 6 6 1 1 6 6 7 7 7 7 6 6 8 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID931\" />\r\n\t\t\t\t\t<p>9 10 11 11 10 12 10 13 12 13 14 12 14 15 12 15 16 12 17 12 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID936\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID942\">\r\n\t\t\t\t\t<float_array count=\"894\" id=\"ID946\">792.5787741057651 847.6980637751378 -244.3602119370268 799.0040717063515 851.4077110787173 -244.1946223529642 898.884006637741 909.0734184478772 -244.2193894660645 792.5835497845047 847.7008211750326 -218.6809211905625 799.0087498659365 851.4104121726214 -219.0397016731498 685.9606381035504 786.1420541986345 -244.6354455876402 692.1220799070765 789.699364287457 -244.3353018055921 685.9654853017331 786.1448528926997 -218.5715879209095 692.1268555858204 789.702121687355 -218.6560110591286 578.9767307514379 724.3748664365703 -244.5978587216818 585.0043483648177 727.8549132540511 -218.5465527033866 584.9995011666496 727.8521145600003 -244.6104103701173 578.9815214765018 724.3776325239664 -218.837662465272 478.3666583110941 666.2876141406896 -218.812713112859 792.3771743620399 847.5816703011569 -213.5690169502468 798.748391639749 851.2600943158261 -213.3897837842623 898.5279153603175 908.8678292453367 -213.4145259985096 792.3917104725282 847.5900632169451 -135.4069321383511 798.7627508992738 851.2683851207187 -136.1786438323296 685.7386724824397 786.0139024796986 -213.8693465846384 691.8924536725857 789.5667897114745 -213.5440998691153 685.7533582140794 786.0223817843214 -134.9027342322384 691.9069897830756 789.5751826272613 -135.3820150572196 578.27756701821 723.9712042607694 -213.5341868458101 584.6210619296943 727.6336232502517 -134.8776565725289 584.606376198058 727.6251439456364 -213.8442689249287 578.2921622010404 723.9796312839721 -135.0544642459622 478.3531397897323 666.2798097423406 -135.0296824810079 692.3411031480733 789.8258182324594 -113.4860371485396 685.0847073035681 785.6363361367421 -113.1520408691005 692.3459211322339 789.8286000588205 -87.5792660923608 629.8360227786089 753.7384932242417 -113.4662363516575 685.0894976991575 785.6391020338974 -87.39361626619314 798.8716277560012 851.3312453425176 -113.9024505305398 791.5937404829759 847.1293551655499 -113.4412020943441 798.8764813973609 851.3340477567758 -87.80394719531736 736.1970718163426 815.1460735705607 -113.4969120628739 791.5986107741402 847.132167193125 -87.25317120213012 846.2938898084668 878.7105012926047 -87.53972282718024 585.3212270045192 728.0378638789157 -113.4551980687201 578.2318452984837 723.9448074408197 -113.1636311012472 585.326003071322 728.040621502867 -87.77382070813073 523.438655266551 692.3099443969595 -113.4384789422892 578.2367228821581 723.9476236789706 -86.93638761151217 633.1034600259244 755.6249491631857 -87.3807253479568 739.6229040336317 817.123978889214 -87.24028284564326 473.7154765371882 663.6022527682667 -244.9738032412366 478.3618675860317 666.2848480533012 -244.5729093692687 473.7155236640256 663.6022816043133 -85.14050999833791 478.3385446068995 666.2713827191365 -213.509405080855 479.3450069546076 666.8524646524807 -113.4275450908057 843.1361967470012 876.8874061871409 -113.9134267650283 479.3498465747172 666.8552589710898 -87.40443545463154 526.3610182066191 693.9971715942393 -86.92352405242301 902.1532522400393 910.9609187738374 -85.14068094995503 902.1532525245065 910.9609189146893 -244.9738032412371 898.8886847973325 909.0761195417854 -219.0644687862494 898.5422746198402 908.876120050229 -136.2033860465759 897.9201730801575 908.5169497017241 -113.2888243435434 897.9249593608744 908.5197132230287 -87.55252572437786 739.618033742474 817.1211668616438 -113.4283137378573 736.201889800505 815.14885539692 -87.59014100669438 526.3561406229412 693.9943553560811 -113.1507675421579 523.4434948866568 692.3127387155641 -87.41536930611494 633.0986696303352 755.6221832660285 -113.1391499508642 629.840798845407 753.7412508481884 -87.78485899106806 846.2891035277465 878.7077377713058 -113.2760214463454 843.1410503883625 876.8902086013973 -87.81492342980587 798.8764813973609 851.3340477567758 -87.80394719531736 843.1410503883625 876.8902086013973 -87.81492342980587 846.2938898084668 878.7105012926047 -87.53972282718024 846.2891035277465 878.7077377713058 -113.2760214463454 843.1361967470012 876.8874061871409 -113.9134267650283 897.9201730801575 908.5169497017241 -113.2888243435434 585.326003071322 728.040621502867 -87.77382070813073 629.840798845407 753.7412508481884 -87.78485899106806 633.1034600259244 755.6249491631857 -87.3807253479568 633.0986696303352 755.6221832660285 -113.1391499508642 629.8360227786089 753.7384932242417 -113.4662363516575 685.0847073035681 785.6363361367421 -113.1520408691005 479.3498465747172 666.8552589710898 -87.40443545463154 523.4434948866568 692.3127387155641 -87.41536930611494 526.3610182066191 693.9971715942393 -86.92352405242301 526.3561406229412 693.9943553560811 -113.1507675421579 523.438655266551 692.3099443969595 -113.4384789422892 578.2318452984837 723.9448074408197 -113.1636311012472 685.0894976991575 785.6391020338974 -87.39361626619314 739.6229040336317 817.123978889214 -87.24028284564326 692.3459211322339 789.8286000588205 -87.5792660923608 736.201889800505 815.14885539692 -87.59014100669438 739.618033742474 817.1211668616438 -113.4283137378573 736.1970718163426 815.1460735705607 -113.4969120628739 791.5937404829759 847.1293551655499 -113.4412020943441 578.2367228821581 723.9476236789706 -86.93638761151217 902.1532522400393 910.9609187738374 -85.14068094995503 791.5986107741402 847.132167193125 -87.25317120213012 897.9249593608744 908.5197132230287 -87.55252572437786 584.6210619296943 727.6336232502517 -134.8776565725289 685.7533582140794 786.0223817843214 -134.9027342322384 691.9069897830756 789.5751826272613 -135.3820150572196 792.3917104725282 847.5900632169451 -135.4069321383511 798.7627508992738 851.2683851207187 -136.1786438323296 898.5422746198402 908.876120050229 -136.2033860465759 898.5279153603175 908.8678292453367 -213.4145259985096 792.3771743620399 847.5816703011569 -213.5690169502468 685.7386724824397 786.0139024796986 -213.8693465846384 585.0043483648177 727.8549132540511 -218.5465527033866 685.9654853017331 786.1448528926997 -218.5715879209095 692.1268555858204 789.702121687355 -218.6560110591286 792.5835497845047 847.7008211750326 -218.6809211905625 799.0087498659365 851.4104121726214 -219.0397016731498 898.8886847973325 909.0761195417854 -219.0644687862494 898.884006637741 909.0734184478772 -244.2193894660645 792.5787741057651 847.6980637751378 -244.3602119370268 685.9606381035504 786.1420541986345 -244.6354455876402 473.7154765371882 663.6022527682667 -244.9738032412366 902.1532525245065 910.9609189146893 -244.9738032412371 473.7155236640256 663.6022816043133 -85.14050999833791 479.3450069546076 666.8524646524807 -113.4275450908057 585.3212270045192 728.0378638789157 -113.4551980687201 692.3411031480733 789.8258182324594 -113.4860371485396 798.8716277560012 851.3312453425176 -113.9024505305398 478.3531397897323 666.2798097423406 -135.0296824810079 478.3385446068995 666.2713827191365 -213.509405080855 578.27756701821 723.9712042607694 -213.5341868458101 584.606376198058 727.6251439456364 -213.8442689249287 478.3666583110941 666.2876141406896 -218.812713112859 478.3618675860317 666.2848480533012 -244.5729093692687 578.9767307514379 724.3748664365703 -244.5978587216818 584.9995011666496 727.8521145600003 -244.6104103701173 578.2921622010404 723.9796312839721 -135.0544642459622 691.8924536725857 789.5667897114745 -213.5440998691153 798.748391639749 851.2600943158261 -213.3897837842623 578.9815214765018 724.3776325239664 -218.837662465272 692.1220799070765 789.699364287457 -244.3353018055921 799.0040717063515 851.4077110787173 -244.1946223529642 1127.966299601937 780.4819911806233 -214.0547512669697 1121.609978102792 784.1547902755708 -213.6798847487027 1127.962451693021 780.4842787362122 -136.1945545452638 1015.944760957596 845.2100847997006 -213.6869006250346 1121.606137869668 784.1570732679666 -135.97500298737 1232.232832407527 720.2349462059196 -136.1876312821896 1285.760778345408 689.3053477643002 -87.93745815518946 1289.428579067263 687.186155132646 -113.5403764162264 1285.762058739656 689.3047376804702 -113.8813651929279 1289.427267505836 687.1874358613127 -87.93663638488664 1350.204230039824 652.068876713472 -87.53092804271492 1344.448685974488 655.3950527261814 -87.93298311542873 1121.454566860291 784.244563950027 -244.9668339816171 1350.19524353553 652.07398133263 -244.9738032412079 1016.49143806561 844.8941789877451 -244.9738032412366 1343.897016731738 655.7132797035938 -244.7858884198055 1239.881585714336 715.8153004603805 -244.7927947556975 1343.895710498473 655.7140374167502 -218.5189199592759 1344.101161628947 655.5953244887614 -214.0866184638761 1009.941014653559 848.6791588381279 -214.1154139214685 905.1209556203459 909.2461055516794 -214.122373681653 1239.741163270143 715.8964425650793 -214.0935476780834 1344.097263613755 655.5975856296273 -135.7016579634904 1344.449997535905 655.3937719975129 -113.5367231467692 1174.605360135727 753.5331136126697 -113.9413567820129 952.1596784154941 882.0663018929504 -114.0412544271854 905.5796484826775 908.9810961546327 -114.0443472118748 1063.894590162794 817.5038238172645 -113.9910099742957 1016.937097411276 844.6367230076364 -113.9941278214692 1128.161548158615 780.3691986451506 -113.9444405222089 1239.715515044775 715.9112738247582 -113.8844225556127 1009.937139722788 848.6814624580338 -135.708445547123 1015.940920724469 845.2123677921036 -135.9820188637012 1239.73726525495 715.8987037059414 -135.7085871776977 1232.236680316441 720.2326586503173 -214.0478280038955 1233.298536679171 719.6190736358744 -244.3750946572389 1239.880279481074 715.8160581735369 -218.5258262951681 1128.425060844387 780.2168855540947 -244.3820579641514 1233.297273807934 719.6198244042216 -218.8216301325441 1121.453275727765 784.2453315194969 -218.8415190641672 1128.423797973142 780.2176363224321 -218.8285934394564 1010.69184336832 848.2452908741755 -244.9421039403107 1016.490146933092 844.89494655722 -218.848488323786 904.3988509724269 909.6633254168426 -244.9491614991713 1010.690561839757 848.2460527341573 -219.0111197312011 1120.674916163369 784.6951117676517 -113.3961972524551 1128.160240828973 780.3699569942955 -87.65542481762137 1066.241082505154 816.1479776395522 -113.3998115079112 1120.673615437522 784.6958662861055 -87.23997682323881 1174.604052806082 753.533871961808 -87.65234107742538 1177.886151179548 751.6374154656087 -87.24872824674139 1232.194607049708 720.2569951755518 -87.24512231602165 902.1532525245065 910.9609189146893 -244.9738032412371 902.1532522400393 910.9609187738374 -85.14068094995503 904.3975694438685 909.6640872768248 -219.0181772900617 905.1170806895678 909.2484091715846 -135.7154053073078 905.5783243058294 908.9818642764162 -87.41655198028821 952.1583542386433 882.0670700147334 -87.41345919559808 954.873444955875 880.4982408976607 -87.25569780104451 1009.494424904593 848.9372384721266 -87.25207111959355 1063.893260353235 817.5045952064379 -87.24994702636167 1066.239781779302 816.148732158005 -87.24359107869483 1232.195920415364 720.2562333250553 -113.6555159731644 1239.714234650524 715.9118839085904 -87.94051551787425 1177.88746454521 751.6366536151163 -113.6591219038841 1350.204231192804 652.0688760585458 -87.51072795198937 1350.20437538212 652.0687941544434 -84.9845419763617 902.1532642920396 910.9609392801428 -84.95057353876578 1009.495731893576 848.936480320589 -113.5342364304914 1016.935767601717 844.6374943968106 -87.25306487353518 954.8747519448674 880.4974827461347 -113.5378631119424 1177.886151179548 751.6374154656087 -87.24872824674139 1174.604052806082 753.533871961808 -87.65234107742538 1177.88746454521 751.6366536151163 -113.6591219038841 1174.605360135727 753.5331136126697 -113.9413567820129 1239.715515044775 715.9112738247582 -113.8844225556127 954.873444955875 880.4982408976607 -87.25569780104451 952.1583542386433 882.0670700147334 -87.41345919559808 954.8747519448674 880.4974827461347 -113.5378631119424 952.1596784154941 882.0663018929504 -114.0412544271854 1016.937097411276 844.6367230076364 -113.9941278214692 1063.893260353235 817.5045952064379 -87.24994702636167 1009.494424904593 848.9372384721266 -87.25207111959355 1016.935767601717 844.6374943968106 -87.25306487353518 1009.495731893576 848.936480320589 -113.5342364304914 1066.239781779302 816.148732158005 -87.24359107869483 1066.241082505154 816.1479776395522 -113.3998115079112 1063.894590162794 817.5038238172645 -113.9910099742957 1128.161548158615 780.3691986451506 -113.9444405222089 902.1532642920396 910.9609392801428 -84.95057353876578 902.1532522400393 910.9609187738374 -85.14068094995503 1350.20437538212 652.0687941544434 -84.9845419763617 1120.673615437522 784.6958662861055 -87.23997682323881 1232.194607049708 720.2569951755518 -87.24512231602165 1350.204231192804 652.0688760585458 -87.51072795198937 1285.760778345408 689.3053477643002 -87.93745815518946 1239.714234650524 715.9118839085904 -87.94051551787425 1232.195920415364 720.2562333250553 -113.6555159731644 905.5783243058294 908.9818642764162 -87.41655198028821 905.5796484826775 908.9810961546327 -114.0443472118748 1344.097263613755 655.5975856296273 -135.7016579634904 1009.937139722788 848.6814624580338 -135.708445547123 905.1170806895678 909.2484091715846 -135.7154053073078 905.1209556203459 909.2461055516794 -214.122373681653 1343.895710498473 655.7140374167502 -218.5189199592759 1239.880279481074 715.8160581735369 -218.5258262951681 1233.297273807934 719.6198244042216 -218.8216301325441 1128.423797973142 780.2176363224321 -218.8285934394564 1121.453275727765 784.2453315194969 -218.8415190641672 1016.490146933092 844.89494655722 -218.848488323786 1010.690561839757 848.2460527341573 -219.0111197312011 904.3975694438685 909.6640872768248 -219.0181772900617 904.3988509724269 909.6633254168426 -244.9491614991713 902.1532525245065 910.9609189146893 -244.9738032412371 1016.49143806561 844.8941789877451 -244.9738032412366 1128.160240828973 780.3699569942955 -87.65542481762137 1120.674916163369 784.6951117676517 -113.3961972524551 1010.69184336832 848.2452908741755 -244.9421039403107 1128.425060844387 780.2168855540947 -244.3820579641514 1121.454566860291 784.244563950027 -244.9668339816171 1239.881585714336 715.8153004603805 -244.7927947556975 1233.298536679171 719.6190736358744 -244.3750946572389 1121.606137869668 784.1570732679666 -135.97500298737 1232.232832407527 720.2349462059196 -136.1876312821896 1239.73726525495 715.8987037059414 -135.7085871776977 1232.236680316441 720.2326586503173 -214.0478280038955 1127.966299601937 780.4819911806233 -214.0547512669697 1239.741163270143 715.8964425650793 -214.0935476780834 1015.940920724469 845.2123677921036 -135.9820188637012 1015.944760957596 845.2100847997006 -213.6869006250346 1009.941014653559 848.6791588381279 -214.1154139214685 1344.448685974488 655.3950527261814 -87.93298311542873 1344.449997535905 655.3937719975129 -113.5367231467692 1350.204230039824 652.068876713472 -87.53092804271492 1289.428579067263 687.186155132646 -113.5403764162264 1285.762058739656 689.3047376804702 -113.8813651929279 1344.101161628947 655.5953244887614 -214.0866184638761 1343.897016731738 655.7132797035938 -244.7858884198055 1350.19524353553 652.07398133263 -244.9738032412079 1289.427267505836 687.1874358613127 -87.93663638488664 1127.962451693021 780.4842787362122 -136.1945545452638 1121.609978102792 784.1547902755708 -213.6798847487027 1350.20437538212 652.0687941544434 -84.9845419763617 1727.382410402378 434.1284176087024 -85.01313571523843 1350.204231192804 652.0688760585458 -87.51072795198937 1350.204231192804 652.0688760585458 -87.51072795198937 1727.382410402378 434.1284176087024 -85.01313571523843 1350.20437538212 652.0687941544434 -84.9845419763617 1350.204231192804 652.0688760585458 -87.51072795198937 1289.427267505836 687.1874358613127 -87.93663638488664 1285.760778345408 689.3053477643002 -87.93745815518946 1350.204230039824 652.068876713472 -87.53092804271492 1350.204230039824 652.068876713472 -87.53092804271492 1350.204231192804 652.0688760585458 -87.51072795198937 1289.427267505836 687.1874358613127 -87.93663638488664 1285.760778345408 689.3053477643002 -87.93745815518946 1727.382410402378 434.1284176087024 -85.01313571523843 1350.204230039824 652.068876713472 -87.53092804271492 1350.204231192804 652.0688760585458 -87.51072795198937 1350.204231192804 652.0688760585458 -87.51072795198937 1350.204230039824 652.068876713472 -87.53092804271492 1727.382410402378 434.1284176087024 -85.01313571523843</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"298\" source=\"#ID946\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID943\">\r\n\t\t\t\t\t<float_array count=\"894\" id=\"ID947\">-0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 -0.5000000000714908 0.8660254037431634 -4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5000000000714908 -0.8660254037431634 4.472123773461689e-009 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 0.5003038058216673 0.8658499303458238 -6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 -0.5003038058216673 -0.8658499303458238 6.98231928318875e-007 0.5003039120511597 0.8658498689646328 -4.836637933324904e-007 0.5003039120511597 0.8658498689646328 -4.836637933324904e-007 0.5003039120511597 0.8658498689646328 -4.836637933324904e-007 -0.5003039120511597 -0.8658498689646328 4.836637933324904e-007 -0.5003039120511597 -0.8658498689646328 4.836637933324904e-007 -0.5003039120511597 -0.8658498689646328 4.836637933324904e-007 0.5001863996025698 0.8658037708368143 0.0140497707230954 0.5001863996025698 0.8658037708368143 0.0140497707230954 0.5001863996025698 0.8658037708368143 0.0140497707230954 0.5001863996025698 0.8658037708368143 0.0140497707230954 -0.5001863996025698 -0.8658037708368143 -0.0140497707230954 -0.5001863996025698 -0.8658037708368143 -0.0140497707230954 -0.5001863996025698 -0.8658037708368143 -0.0140497707230954 -0.5001863996025698 -0.8658037708368143 -0.0140497707230954 0.5003039120509741 0.8658498689647398 -4.836770964721132e-007 0.5003039120509741 0.8658498689647398 -4.836770964721132e-007 0.5003039120509741 0.8658498689647398 -4.836770964721132e-007 -0.5003039120509741 -0.8658498689647398 4.836770964721132e-007 -0.5003039120509741 -0.8658498689647398 4.836770964721132e-007 -0.5003039120509741 -0.8658498689647398 4.836770964721132e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"298\" source=\"#ID947\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID945\">\r\n\t\t\t\t\t<float_array count=\"298\" id=\"ID948\">0.2557535415753232 0.003838945514798464 0.2407565035991346 0.004874959856384642 0.007630620529881504 0.004720003948276652 0.2557423946865636 0.1645019101916219 0.2407455843293684 0.1622571933663104 0.5046067984780049 0.002116941012300089 0.4902256160853287 0.003994796219800589 0.5045954846560605 0.1651859558459079 0.4902144691965584 0.1646577608966191 0.7543137881029631 0.002352103944851747 0.7402449594005449 0.165342589154369 0.7402562732224494 0.002273574320761362 0.7543026060946543 0.1635212554636278 0.9891438566565494 0.1636773515554171 0.2562240875252169 0.1964846350457434 0.2413532763334887 0.1976060107137785 0.008461759177759376 0.1974512105858115 0.2561901588597002 0.6855071861428574 0.2413197604549562 0.6806789574408074 0.5051248796327292 0.1946056170495663 0.4907615775805314 0.1966405292316538 0.5050906017372094 0.6886617098086274 0.4907276489150134 0.6856630803287679 0.7559456788649412 0.1967025502480766 0.7411395728775596 0.6888186086574261 0.7411738507730659 0.1947625158983661 0.7559116123189591 0.6877124081290754 0.9891754091838547 0.6878674557067828 0.4897144016051271 0.8226556772053437 0.5066512737617082 0.8247453311983422 0.48970315597149 0.9847418767107757 0.635605085929791 0.8227795612627906 0.5066400925224315 0.9859033983337178 0.2410656350649068 0.8200503790628135 0.2580526695306107 0.8229361885636836 0.2410543062039672 0.9833361551718025 0.3873518857437461 0.8225876380996373 0.2580413018074546 0.9867820955138452 0.1303791719393939 0.9849892798917918 0.7395053445914646 0.8228486224872297 0.7560523955240357 0.8246728166933128 0.7394941967969335 0.9835246421045022 0.8839430556584487 0.822953226015641 0.7560410107794688 0.9887640579960705 0.6279786871878139 0.9859840506056868 0.3793557834433616 0.9868627317581805 1 2.664535259100376e-015 0.9891550386648473 0.002508200036641206 0.9999998883583452 1 0.9892094757298422 0.1968575978257889 0.9868603303596051 0.8230216338627276 0.1377494210345764 0.8199817060456607 0.9868490342256033 0.9858357078781256 0.8771220814733207 0.9888445390950217 6.403286789691265e-010 0.9999989304379979 0 0 0.007619701260099365 0.1621022374582071 0.008428243299230864 0.6805241573128474 0.009880266234977508 0.8238895428224181 0.009869094600194917 0.9849091783251039 0.3793671511665013 0.8230168248080186 0.3873406401101076 0.9846738376050741 0.8771334662179009 0.8247532977922646 0.8839317595244582 0.9857673000310397 0.6279898684270917 0.8248259834703108 0.6355939381352733 0.983455580880064 0.1303903435741769 0.823969644389108 0.1377380921736364 0.9832674821546494 -113.0271421826354 68.21022348709924 -112.9700809400809 68.2125200511763 -113.0271073907429 68.68722241459966 -112.0215152548567 68.21247707023237 -112.9700462175911 68.68856746464716 -113.963151510116 68.68726482817252 -114.4436771270275 68.98286234489495 -114.4766027830423 68.82600986997622 -114.443688116453 68.82392085292365 -114.4765889758757 68.98286737932398 -115.0221909808907 68.98535289075545 -114.9705209578035 68.98288976013033 -112.9686859000851 68.02084520501438 -115.0221106490034 68.0208025071921 -112.0264229219891 68.02080250965564 -114.965570665183 68.0219537394736 -114.031815240052 68.02191142960074 -114.9655589277654 68.18287441925479 -114.9674032782464 68.21002825585633 -111.9676191125303 68.20985184723045 -111.0266404839107 68.20980921006753 -114.0305546426061 68.20998580582541 -114.9673682518594 68.69024207068229 -114.9705347649701 68.82603225078258 -113.4458249211224 68.82355332418672 -111.4489110010649 68.82294131774762 -111.0307580863762 68.8229223706056 -112.451964865267 68.82324913209853 -112.0304234345543 68.82323003141769 -113.0288948466785 68.82353443245343 -114.0303243533741 68.82390212278533 -111.9675840763125 68.69020049002671 -112.0214805323668 68.68852448370325 -114.0305196162191 68.69019962065137 -113.9631863020085 68.2102659006721 -113.972718774274 68.02447040724458 -114.0318035026345 68.18283210938193 -113.0312606184613 68.02442774835356 -113.9727073556876 68.18101991116846 -112.9686742259668 68.18089806540947 -113.0312491998748 68.18097725227744 -111.9743594646137 68.020996710756 -112.0264112478708 68.18085537005074 -111.0201581873098 68.02095347445489 -111.9743478773322 68.17985903293823 -112.9616867103705 68.82689316344816 -113.0288830994093 68.98459018139978 -112.4730295275672 68.82687102165095 -112.9616750224409 68.98713536186939 -113.4458131738531 68.98460907313306 -113.4752768516371 68.98708174715112 -113.9628085073081 68.98710383794901 -110.9999990805778 68.02080251049991 -110.9999990805073 68.99999638775716 -111.0201466000283 68.17981579663712 -111.0266054476929 68.69015785286379 -111.030746187723 68.98605360199151 -111.4488991024117 68.98607254913354 -111.4732727040506 68.98703905085857 -111.9636099151184 68.98706126878042 -112.4519529160001 68.98707428132042 -112.4730178396375 68.98711322007218 -113.9628203088152 68.82530448500948 -114.0303133639486 68.98284361475665 -113.4752886531443 68.82528239421161 -115.0221909911974 68.98547664361016 -115.0221922801302 69.00095294667355 -110.9999990818756 69.0011610525676 -111.9636216593266 68.82604748775324 -112.0304114852873 68.9870551806396 -111.4732844482589 68.82602526983141 -115.0221932157612 69.00095423577156 -118.4081527165176 69.00077905760213 -115.0221919268277 68.98547793270816 -115.0215917507342 69.0698464133182 -114.4759897374288 69.06723688562657 -114.4430778883375 69.06723187123956 -115.02159174043 69.06972267267911 -118.4081527165162 69.00077905752214 -115.0221919165196 68.98535417977348 -115.0221919268263 68.98547793262817</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"149\" source=\"#ID948\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID944\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID942\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID943\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"98\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID944\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID945\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 5 5 6 6 0 0 6 6 5 5 7 7 6 6 7 7 8 8 9 9 10 10 11 11 10 10 9 9 12 12 10 10 12 12 13 13 14 14 15 15 16 16 15 15 14 14 17 17 15 15 17 17 18 18 19 19 20 20 14 14 20 20 19 19 21 21 20 20 21 21 22 22 23 23 24 24 25 25 24 24 23 23 26 26 24 24 26 26 27 27 28 28 29 29 30 30 29 29 28 28 31 31 30 30 29 29 32 32 33 33 34 34 35 35 34 34 33 33 36 36 35 35 34 34 37 37 35 35 37 37 38 38 39 39 40 40 41 41 40 40 39 39 42 42 41 41 40 40 43 43 41 41 43 43 44 44 44 44 43 43 45 45 46 46 11 11 5 5 11 11 46 46 47 47 47 47 46 46 48 48 11 11 47 47 9 9 47 47 48 48 13 13 13 13 48 48 49 49 13 13 49 49 10 10 10 10 49 49 25 25 10 10 25 25 19 19 25 25 49 49 23 23 49 49 48 48 27 27 27 27 48 48 50 50 27 27 50 50 24 24 24 24 50 50 33 33 24 24 33 33 51 51 33 33 50 50 28 28 33 33 28 28 36 36 28 28 50 50 39 39 28 28 39 39 31 31 39 39 50 50 42 42 50 50 48 48 52 52 52 52 48 48 53 53 53 53 48 48 54 54 55 55 2 2 54 54 2 2 55 55 5 5 5 5 55 55 46 46 2 2 5 5 0 0 54 54 2 2 56 56 54 54 56 56 16 16 16 16 56 56 4 4 16 16 4 4 3 3 16 16 3 3 8 8 16 16 8 8 7 7 16 16 7 7 10 10 16 16 10 10 19 19 16 16 19 19 14 14 54 54 16 16 57 57 54 54 57 57 58 58 58 58 57 57 18 18 58 58 18 18 17 17 58 58 17 17 22 22 58 58 22 22 21 21 58 58 21 21 24 24 58 58 24 24 51 51 54 54 58 58 59 59 54 54 59 59 38 38 54 54 38 38 37 37 54 54 37 37 45 45 54 54 45 45 43 43 54 54 43 43 53 53 36 36 60 60 34 34 60 60 36 36 61 61 60 60 61 61 45 45 45 45 61 61 30 30 45 45 30 30 32 32 45 45 32 32 44 44 42 42 62 62 40 40 62 62 42 42 63 63 62 62 63 63 53 53 53 53 63 63 52 52 31 31 64 64 29 29 64 64 31 31 65 65 64 64 65 65 44 44 44 44 65 65 41 41 51 51 66 66 58 58 66 66 51 51 67 67 66 66 67 67 38 38 38 38 67 67 35 35</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"200\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID944\" />\r\n\t\t\t\t\t<p>68 69 70 70 69 71 69 72 71 73 71 72 74 75 76 76 75 77 75 78 77 79 77 78 80 81 82 82 81 83 81 84 83 85 83 84 76 86 87 86 88 87 88 89 87 87 89 90 89 91 90 92 90 91 82 93 94 93 87 94 87 95 94 95 70 94 70 96 94 96 73 94 72 97 73 97 98 73 98 99 73 99 100 73 100 101 73 101 102 73 73 102 94 102 103 94 104 105 103 105 106 103 106 107 103 107 108 103 108 109 103 109 110 103 110 111 103 103 111 94 111 112 94 113 114 112 115 116 114 114 116 112 94 112 116 94 117 82 82 117 80 80 117 118 84 118 119 78 119 120 119 118 120 91 120 121 120 118 121 72 121 97 121 118 97 97 118 122 118 117 122 122 117 123 124 123 125 105 125 106 125 123 106 106 123 126 123 117 126 126 117 127 128 127 129 117 115 127 127 115 129 114 129 115 87 93 76 76 93 74 93 85 74 84 119 85 74 85 119 70 95 68 95 92 68 91 121 92 68 92 121 86 79 88 78 120 79 88 79 120 122 130 97 130 124 97 125 97 124 99 98 131 98 105 131 104 131 105 101 100 132 100 104 132 103 132 104 126 133 106 133 128 106 129 106 128 108 107 134 107 114 134 113 134 114 110 109 135 109 113 135 112 135 113 207 208 209 208 210 209 211 209 210 212 213 214 213 215 214 216 214 215 217 218 219 218 220 219 214 216 220 219 220 216 221 217 222 217 223 222 224 222 223 225 226 227 226 228 227 228 229 227 227 229 230 230 229 231 231 229 232 229 233 232 209 211 233 232 233 211 228 226 221 221 226 217 217 226 218 218 226 212 212 226 213 213 226 234 234 226 235 236 235 237 237 235 238 235 226 238 238 226 239 240 239 241 241 239 242 242 239 243 243 239 244 244 239 245 245 239 246 246 239 247 239 226 247 247 226 248 226 249 248 250 248 249 229 228 207 207 228 208 208 228 251 228 252 251 222 224 252 251 252 224 246 253 245 248 250 253 245 253 250 243 244 254 244 255 254 256 254 255 242 257 241 254 256 257 241 257 256 258 259 260 259 261 260 262 263 261 260 261 263 236 237 260 260 237 258 258 237 264 264 237 265 237 266 265 265 266 262 263 262 266 267 268 269 270 271 268 211 210 271 224 223 210 216 215 223 223 215 210 235 236 215 215 236 210 210 236 271 271 236 268 268 236 269 236 272 269 263 266 272 239 240 266 266 240 272 272 240 269 240 273 269 256 255 273 269 273 274 273 255 274 250 274 255 275 267 269 275 231 270 271 270 231 259 258 276 258 277 276 265 262 277 276 277 262 281 282 283 288 289 290 291 290 289 295 296 297</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"102\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID944\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID945\" />\r\n\t\t\t\t\t<p>136 68 137 69 138 70 137 69 136 68 139 71 138 70 137 69 140 72 138 70 140 72 141 73 142 74 143 75 144 76 143 75 142 74 145 77 146 78 147 79 145 77 148 80 149 81 150 82 149 81 148 80 151 83 149 81 151 83 146 78 151 83 148 80 152 84 146 78 151 83 153 85 146 78 153 85 154 86 154 86 153 85 155 87 155 87 153 85 156 88 154 86 155 87 157 89 146 78 154 86 158 90 146 78 158 90 159 91 159 91 158 90 144 76 144 76 158 90 160 92 160 92 158 90 161 93 161 93 158 90 162 94 160 92 161 93 163 95 163 95 161 93 164 96 160 92 163 95 165 97 144 76 160 92 166 98 159 91 144 76 143 75 146 78 159 91 147 79 155 87 136 68 157 89 136 68 155 87 139 71 139 71 155 87 167 99 139 71 167 99 168 100 168 100 167 99 140 72 140 72 167 99 169 101 169 101 167 99 158 90 157 89 170 102 169 101 170 102 157 89 136 68 169 101 170 102 141 73 169 101 141 73 140 72 152 84 171 103 172 104 171 103 152 84 173 105 172 104 171 103 174 106 148 80 173 105 152 84 173 105 148 80 175 107 173 105 175 107 176 108 150 82 177 109 178 110 177 109 150 82 179 111 178 110 177 109 180 112 165 97 181 113 182 114 181 113 165 97 183 115 182 114 181 113 184 116 182 114 184 116 185 117 185 117 184 116 186 118 186 118 184 116 187 119 188 120 179 111 150 82 179 111 188 120 189 121 179 111 189 121 190 122 190 122 189 121 156 88 190 122 156 88 180 112 180 112 156 88 178 110 178 110 156 88 175 107 175 107 156 88 176 108 176 108 156 88 174 106 174 106 156 88 172 104 172 104 156 88 153 85 156 88 189 121 191 123 191 123 189 121 162 94 191 123 162 94 167 99 167 99 162 94 158 90 162 94 189 121 192 124 192 124 189 121 193 125 193 125 189 121 194 126 194 126 189 121 195 127 195 127 189 121 196 128 196 128 189 121 197 129 197 129 189 121 184 116 166 98 198 130 199 131 198 130 166 98 200 132 199 131 198 130 187 119 199 131 187 119 142 74 142 74 187 119 201 133 201 133 187 119 202 134 202 134 187 119 184 116 202 134 184 116 189 121 202 134 189 121 203 135 163 95 183 115 165 97 183 115 163 95 196 128 183 115 196 128 197 129 164 96 204 136 205 137 204 136 164 96 206 138 205 137 204 136 195 127 205 137 195 127 196 128 161 93 206 138 164 96 206 138 161 93 193 125 206 138 193 125 194 126 160 92 200 132 166 98 200 132 160 92 185 117 200 132 185 117 186 118 278 139 279 140 280 141 284 142 285 143 286 144 285 143 284 142 287 145 292 146 293 147 294 148</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID949\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID950\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID953\">1015.197435091615 845.6419607349735 -14.88040338756056 1025.039522134782 839.9550144427983 12.67814051552398 1025.037959287489 839.9559256190437 -14.88114336892562 1023.074420426695 841.0904936699403 12.67829097341655 1015.211462024895 845.6338143087585 139.7111128574267 1023.07440275878 841.0904630690682 139.7111128565707 1023.07440275878 841.0904630690682 139.7111128565707 1015.211462024895 845.6338143087585 139.7111128574267 1023.074420426695 841.0904936699403 12.67829097341655 1015.197435091615 845.6419607349735 -14.88040338756056 1025.039522134782 839.9550144427983 12.67814051552398 1025.037959287489 839.9559256190437 -14.88114336892562</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID953\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID951\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID954\">0.5003038814657888 0.8658498866375221 2.369613950210228e-007 0.5003038814657888 0.8658498866375221 2.369613950210228e-007 0.5003038814657888 0.8658498866375221 2.369613950210228e-007 0.5003038814657888 0.8658498866375221 2.369613950210228e-007 0.5003038814657888 0.8658498866375221 2.369613950210228e-007 0.5003038814657888 0.8658498866375221 2.369613950210228e-007 -0.5003038814657888 -0.8658498866375221 -2.369613950210228e-007 -0.5003038814657888 -0.8658498866375221 -2.369613950210228e-007 -0.5003038814657888 -0.8658498866375221 -2.369613950210228e-007 -0.5003038814657888 -0.8658498866375221 -2.369613950210228e-007 -0.5003038814657888 -0.8658498866375221 -2.369613950210228e-007 -0.5003038814657888 -0.8658498866375221 -2.369613950210228e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID954\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID952\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID950\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID951\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID952\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID952\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID955\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID961\">\r\n\t\t\t\t\t<float_array count=\"960\" id=\"ID970\">1069.004111430435 54.01351176379603 -86.98381689134922 1065.617006971538 52.05796655279937 -112.9096924126482 1068.999185084677 54.01066806166364 -113.4716509262571 1065.621812558702 52.06074054779128 -87.07114970135208 1013.513645195876 21.97607526697175 -87.05822849853837 1006.67373240059 18.02704966436841 -87.03303789133219 961.0127830211001 -8.33531247593919 -87.02171539780642 1113.940242344954 79.95740028172804 -113.4827949089546 1121.099032674314 84.09052991576709 -113.3181417638128 1113.945168690705 79.96024398386408 -86.99496087404728 1173.362607268325 114.2649196058192 -113.3311015027801 1121.103965778509 84.09337751915928 -86.79396914706612 1176.42261465006 116.0316157483057 -113.753750438534 1006.668797429226 18.02420098315861 -113.5672498779258 1176.427646553412 116.0345203828942 -86.69835736159536 1173.367540372524 114.26776720921 -86.80692888603346 1221.643152619874 142.1397062356932 -113.7649637237448 1228.47312680722 146.0829937702965 -113.2924390691937 1221.648184523225 142.1426108702804 -86.70957064680616 1280.884300765831 176.3425999955712 -113.3054354082071 1228.478078195069 146.0858519278281 -86.66995936809963 1284.190774166879 178.2515933665927 -113.8299798713707 1284.195836867628 178.2545157787868 -86.60899624706832 1280.889252153685 176.3454581531032 -86.68295570711322 1329.082665734441 204.1699397599559 -113.8411116625073 1336.303519253958 208.3389015906951 -113.4835884289786 1329.087728435182 204.17286217215 -86.62012803820556 1391.807221936345 240.3839801612171 -113.7508043953941 1436.961444183326 266.4537832471224 -113.7620012363707 1388.843540059142 238.6728975795659 -113.4966167179976 1336.308541901983 208.3418008827016 -86.47795913042009 1443.086462775246 269.9900690035638 -84.93820880041062 1436.998610150335 266.4752436213298 -244.5675615757975 1443.086450655612 269.9900550500279 -244.9738032412355 1437.003345334007 266.477976976365 -219.1075621628607 1436.78799047878 266.3536416809307 -213.6394001285415 1336.105285720571 208.2244534966553 -219.0825425861262 1114.771295649182 80.43721114295931 -214.3473551382406 1436.802390084224 266.3619537627019 -136.2160160870136 1336.090900977394 208.2161468181671 -136.1910427739555 1114.78589439793 80.44563817893823 -135.8532230899069 1013.546573051929 21.99508714065405 -135.8281188908912 1436.966440778774 266.4566675004476 -86.89645067473975 1391.812218531794 240.3868644145414 -86.88525383376313 1388.848562707167 238.6757968715756 -86.49098741943917 902.0371471481634 -42.38490436695565 -244.9738032412355 905.8806935521742 -40.16583692626045 -244.4469003737799 902.0371688383981 -42.38490527309023 -84.8022349566686 1006.236259866901 17.77447789279631 -244.4717854290688 1336.100550536885 208.2217201416224 -244.5425419990642 905.8853655008978 -40.16314007320943 -219.3269009530021 905.7662917813019 -40.23188742414322 -214.030139203758 1013.531974303185 21.98666010467787 -214.3222509392258 1006.816144504281 18.1092738506245 -214.0551964204567 905.7807691197769 -40.22353047148954 -136.1888024159625 961.0078480497299 -8.338161157152626 -113.5559273844007 1013.508839608722 21.97330127197665 -112.8967712098346 1221.352203033522 141.9717283869809 -213.5580482772616 1228.275277538029 145.9687674218171 -213.3672596385788 1221.366501774936 141.979982245598 -136.6769870578747 1329.032931934696 204.1412279095985 -213.3922443991906 1228.289546477868 145.977004077678 -136.64643463597 1120.817716333567 83.92811230870348 -136.6520540902594 1336.076501371947 208.2078347363945 -213.6144268154839 1329.047200874545 204.1494645654607 -136.6714193965818 1006.830621842753 18.11763080328001 -136.2138596326599 1120.803417592153 83.91985845008503 -213.533115309646 1114.283416220321 80.15553439614496 -243.636014176363 1121.074361308133 84.0762884771425 -243.573060689239 1114.287913386875 80.15813035727842 -219.4557785134435 1220.992209756688 141.7638867613864 -243.597837204128 1121.07886353436 84.07888735893357 -219.3656203025373 1012.78056741507 21.55283522488571 -219.4306078526684 1227.881309944965 145.7413107312204 -244.2227260906902 1227.885933647364 145.74397973438 -219.3621361127494 1220.99671198293 141.7664856431761 -219.3903968174275 1329.497488712278 204.4094405091273 -244.2479237386105 1329.502112414682 204.4121095122864 -219.38733376067 1006.240931815635 17.77717474585279 -219.351786008291 1012.776070248512 21.55023926375407 -243.6108435155879 1227.885933647364 145.74397973438 -219.3621361127494 1121.07886353436 84.07888735893357 -219.3656203025373 1006.240931815635 17.77717474585279 -219.351786008291 1012.78056741507 21.55283522488571 -219.4306078526684 1012.776070248512 21.55023926375407 -243.6108435155879 1114.283416220321 80.15553439614496 -243.636014176363 1227.881309944965 145.7413107312204 -244.2227260906902 1329.497488712278 204.4094405091273 -244.2479237386105 1006.236259866901 17.77447789279631 -244.4717854290688 905.8853655008978 -40.16314007320943 -219.3269009530021 1336.105285720571 208.2244534966553 -219.0825425861262 1329.502112414682 204.4121095122864 -219.38733376067 1336.100550536885 208.2217201416224 -244.5425419990642 1220.99671198293 141.7664856431761 -219.3903968174275 1220.992209756688 141.7638867613864 -243.597837204128 1114.287913386875 80.15813035727842 -219.4557785134435 1121.074361308133 84.0762884771425 -243.573060689239 1336.090900977394 208.2161468181671 -136.1910427739555 1228.289546477868 145.977004077678 -136.64643463597 1114.78589439793 80.44563817893823 -135.8532230899069 1120.817716333567 83.92811230870348 -136.6520540902594 1120.803417592153 83.91985845008503 -213.533115309646 1221.352203033522 141.9717283869809 -213.5580482772616 1336.076501371947 208.2078347363945 -213.6144268154839 1436.78799047878 266.3536416809307 -213.6394001285415 1114.771295649182 80.43721114295931 -214.3473551382406 905.7807691197769 -40.22353047148954 -136.1888024159625 1013.546573051929 21.99508714065405 -135.8281188908912 1006.830621842753 18.11763080328001 -136.2138596326599 1006.816144504281 18.1092738506245 -214.0551964204567 1013.531974303185 21.98666010467787 -214.3222509392258 1329.047200874545 204.1494645654607 -136.6714193965818 1329.032931934696 204.1412279095985 -213.3922443991906 1221.366501774936 141.979982245598 -136.6769870578747 1228.275277538029 145.9687674218171 -213.3672596385788 1013.513645195876 21.97607526697175 -87.05822849853837 1013.508839608722 21.97330127197665 -112.8967712098346 1006.67373240059 18.02704966436841 -87.03303789133219 1065.617006971538 52.05796655279937 -112.9096924126482 1068.999185084677 54.01066806166364 -113.4716509262571 1113.940242344954 79.95740028172804 -113.4827949089546 1006.668797429226 18.02420098315861 -113.5672498779258 1388.848562707167 238.6757968715756 -86.49098741943917 1391.812218531794 240.3868644145414 -86.88525383376313 1388.843540059142 238.6728975795659 -113.4966167179976 1391.807221936345 240.3839801612171 -113.7508043953941 1443.086462775246 269.9900690035638 -84.93820880041062 1336.308541901983 208.3418008827016 -86.47795913042009 902.0371688383981 -42.38490527309023 -84.8022349566686 1284.195836867628 178.2545157787868 -86.60899624706832 1228.478078195069 146.0858519278281 -86.66995936809963 1176.427646553412 116.0345203828942 -86.69835736159536 1121.103965778509 84.09337751915928 -86.79396914706612 1069.004111430435 54.01351176379603 -86.98381689134922 961.0127830211001 -8.33531247593919 -87.02171539780642 961.0078480497299 -8.338161157152626 -113.5559273844007 1176.42261465006 116.0316157483057 -113.753750438534 1221.643152619874 142.1397062356932 -113.7649637237448 1284.190774166879 178.2515933665927 -113.8299798713707 1329.082665734441 204.1699397599559 -113.8411116625073 905.7662917813019 -40.23188742414322 -214.030139203758 905.8806935521742 -40.16583692626045 -244.4469003737799 1436.998610150335 266.4752436213298 -244.5675615757975 1443.086450655612 269.9900550500279 -244.9738032412355 902.0371471481634 -42.38490436695565 -244.9738032412355 1436.966440778774 266.4566675004476 -86.89645067473975 1436.961444183326 266.4537832471224 -113.7620012363707 1436.802390084224 266.3619537627019 -136.2160160870136 1437.003345334007 266.477976976365 -219.1075621628607 1329.087728435182 204.17286217215 -86.62012803820556 1336.303519253958 208.3389015906951 -113.4835884289786 1280.889252153685 176.3454581531032 -86.68295570711322 1280.884300765831 176.3425999955712 -113.3054354082071 1221.648184523225 142.1426108702804 -86.70957064680616 1228.47312680722 146.0829937702965 -113.2924390691937 1173.367540372524 114.26776720921 -86.80692888603346 1173.362607268325 114.2649196058192 -113.3311015027801 1113.945168690705 79.96024398386408 -86.99496087404728 1121.099032674314 84.09052991576709 -113.3181417638128 1065.621812558702 52.06074054779128 -87.07114970135208 535.5282316449777 169.219108429163 -112.5583613187373 539.7128937180845 166.8030927851114 -112.3494486065542 535.5269781207085 169.2198312369933 -87.34572356498458 596.2582812679319 134.1565999271447 -112.4022678374343 539.7116154385158 166.8038298673591 -86.63889746779415 436.0444880024642 226.6560713004119 -111.9448221131468 431.4339576761679 229.3179611519613 -86.54463103070464 431.4352499805456 229.3172159827213 -112.5372687831739 436.0432226672159 226.6568009186958 -86.49462530466658 643.5339500637343 106.8619813938271 -112.7905701306015 492.3000616371221 194.1769025952922 -112.5612260427639 639.4710401148624 109.2077033984133 -112.3994041347029 643.5326424387439 106.8627353972452 -86.48978277234102 639.4697962914978 109.2084206125151 -87.38188449086454 590.0396595500408 137.7469217102212 -86.63556223622754 485.7255323169561 197.9727077056182 -86.49133286582128 746.569657262642 47.3742915152975 -113.1588361743477 742.9560663884901 49.46059905918128 -113.13220702338 699.6811514655375 74.44538141308158 -113.1350748451846 746.5683287325666 47.37505757302142 -86.43757637583488 742.9547975064207 49.46133072263183 -87.61067163234014 692.9077176391965 78.35602406604176 -86.48651069387421 902.0371471481634 -42.38490436695565 -244.9738032412355 485.7360909670782 197.9666174121767 -244.8644852645865 387.6218555272055 254.6128944216162 -244.8709872795355 899.2493043892877 -40.77533404483575 -244.8215956207684 902.0371688383981 -42.38490527309023 -84.8022349566686 803.6334840798837 14.42848239879868 -244.8279320661385 899.4512251728207 -40.89191418767496 -213.6534204346833 899.248022829123 -40.77459507091044 -219.0450602301485 485.7348063200687 197.9673581660113 -219.0258632598969 796.9571865426541 18.28304324230521 -214.044755314135 700.1720273504492 74.16197776615627 -214.0511692514101 802.9326586072945 14.83310302019072 -213.659816704907 899.4473840782529 -40.88969933366752 -136.3959402469569 847.0691129813966 -10.64909298677731 -113.120241707251 693.7031289374751 77.89679497172801 -136.2841470019305 589.9255704445202 137.8127928673257 -135.8390668235945 485.863364225832 197.8931322084454 -135.7747183387576 796.4369008434645 18.58342665341797 -113.1555314799599 803.0166504370822 14.78460667000354 -113.1231610570143 847.0678393956899 -10.64835861110623 -87.50410001715494 796.4355723133887 18.58419271114462 -86.43427168144694 383.884349864544 256.7707530990747 -244.9738032412373 383.8843396964735 256.7707354874569 -84.7618259705614 387.6205708801886 254.6136351754394 -219.032365274845 388.2907007665531 254.2267353426528 -213.9443341989229 388.2868146438264 254.2289761608108 -135.7811847213494 387.8388145985074 254.4876282496325 -112.5401579120884 387.8375222941295 254.4883734188766 -86.54752015961964 485.7267976522059 197.9719780873361 -111.9415296743014 492.2988081128531 194.177625403122 -87.34858828901054 590.0409378296062 137.7461846279766 -112.3461133749876 596.2570374445676 134.1573171412433 -87.38474819359587 803.0153768513754 14.78534104567734 -87.50701936691772 692.9090252641864 78.35527006262555 -112.7872980521353 699.6798825834704 74.44611307653304 -87.61353945414544 796.9533261049941 18.28526924991411 -136.398220008939 802.928817512728 14.83531787419906 -136.4023365171826 492.2405463049028 194.2112674551599 -213.6859735939195 485.8672503485612 197.8908913902956 -213.9378678163311 492.2366762270256 194.2134990215286 -135.8455406512476 597.1447652261751 133.6447918768567 -213.6281838322271 589.9294405223983 137.8105613009539 -213.6794997662664 597.1409201463252 133.6470090288613 -136.2905461643177 693.706974017325 77.89457781972124 -213.6217846698399 700.1681669127896 74.1642037737679 -136.4046339462142 700.1073711589601 74.19930811797121 -243.9412146226562 693.8233003131369 77.82741703159218 -219.857775499479 693.8245285144511 77.82670882549792 -244.5610825454108 700.1061388666657 74.20001868301142 -219.1556241122941 590.0279564194707 137.7536833279019 -219.2858090508117 596.487636123003 134.0241866422894 -244.5675330459571 796.573976199598 18.5042909087756 -243.9348217959145 803.6322025197079 14.42922137272217 -219.0513966755186 796.5727439073056 18.50500147381672 -219.1492312855524 492.1241619166952 194.2784631108557 -244.0522577905967 492.1229308986722 194.2791729411265 -219.2922972014523 590.0291874374933 137.7529734976315 -244.0457696399562 596.4864079216831 134.0248948483727 -219.8642260000264 693.8233003131369 77.82741703159218 -219.857775499479 596.4864079216831 134.0248948483727 -219.8642260000264 590.0279564194707 137.7536833279019 -219.2858090508117 590.0291874374933 137.7529734976315 -244.0457696399562 596.487636123003 134.0241866422894 -244.5675330459571 492.1241619166952 194.2784631108557 -244.0522577905967 899.248022829123 -40.77459507091044 -219.0450602301485 803.6322025197079 14.42922137272217 -219.0513966755186 485.7348063200687 197.9673581660113 -219.0258632598969 796.5727439073056 18.50500147381672 -219.1492312855524 700.1061388666657 74.20001868301142 -219.1556241122941 492.1229308986722 194.2791729411265 -219.2922972014523 803.6334840798837 14.42848239879868 -244.8279320661385 485.7360909670782 197.9666174121767 -244.8644852645865 796.573976199598 18.5042909087756 -243.9348217959145 700.1073711589601 74.19930811797121 -243.9412146226562 693.8245285144511 77.82670882549792 -244.5610825454108 899.4473840782529 -40.88969933366752 -136.3959402469569 796.9533261049941 18.28526924991411 -136.398220008939 693.7031289374751 77.89679497172801 -136.2841470019305 700.1681669127896 74.1642037737679 -136.4046339462142 693.706974017325 77.89457781972124 -213.6217846698399 597.1447652261751 133.6447918768567 -213.6281838322271 589.9294405223983 137.8105613009539 -213.6794997662664 492.2405463049028 194.2112674551599 -213.6859735939195 485.8672503485612 197.8908913902956 -213.9378678163311 700.1720273504492 74.16197776615627 -214.0511692514101 388.2907007665531 254.2267353426528 -213.9443341989229 597.1409201463252 133.6470090288613 -136.2905461643177 589.9255704445202 137.8127928673257 -135.8390668235945 492.2366762270256 194.2134990215286 -135.8455406512476 485.863364225832 197.8931322084454 -135.7747183387576 802.928817512728 14.83531787419906 -136.4023365171826 802.9326586072945 14.83310302019072 -213.659816704907 796.9571865426541 18.28304324230521 -214.044755314135 742.9547975064207 49.46133072263183 -87.61067163234014 699.6798825834704 74.44611307653304 -87.61353945414544 692.9077176391965 78.35602406604176 -86.48651069387421 692.9090252641864 78.35527006262555 -112.7872980521353 699.6811514655375 74.44538141308158 -113.1350748451846 643.5339500637343 106.8619813938271 -112.7905701306015 847.0678393956899 -10.64835861110623 -87.50410001715494 803.0153768513754 14.78534104567734 -87.50701936691772 796.4355723133887 18.58419271114462 -86.43427168144694 803.0166504370822 14.78460667000354 -113.1231610570143 796.4369008434645 18.58342665341797 -113.1555314799599 639.4697962914978 109.2084206125151 -87.38188449086454 596.2570374445676 134.1573171412433 -87.38474819359587 590.0396595500408 137.7469217102212 -86.63556223622754 590.0409378296062 137.7461846279766 -112.3461133749876 596.2582812679319 134.1565999271447 -112.4022678374343 539.7128937180845 166.8030927851114 -112.3494486065542 539.7116154385158 166.8038298673591 -86.63889746779415 485.7255323169561 197.9727077056182 -86.49133286582128 535.5269781207085 169.2198312369933 -87.34572356498458 492.2988081128531 194.177625403122 -87.34858828901054 485.7267976522059 197.9719780873361 -111.9415296743014 436.0444880024642 226.6560713004119 -111.9448221131468 431.4352499805456 229.3172159827213 -112.5372687831739 492.3000616371221 194.1769025952922 -112.5612260427639 387.8388145985074 254.4876282496325 -112.5401579120884 902.0371688383981 -42.38490527309023 -84.8022349566686 383.8843396964735 256.7707354874569 -84.7618259705614 746.5683287325666 47.37505757302142 -86.43757637583488 643.5326424387439 106.8627353972452 -86.48978277234102 436.0432226672159 226.6568009186958 -86.49462530466658 431.4339576761679 229.3179611519613 -86.54463103070464 387.8375222941295 254.4883734188766 -86.54752015961964 746.569657262642 47.3742915152975 -113.1588361743477 388.2868146438264 254.2289761608108 -135.7811847213494 387.6205708801886 254.6136351754394 -219.032365274845 387.6218555272055 254.6128944216162 -244.8709872795355 902.0371471481634 -42.38490436695565 -244.9738032412355 383.884349864544 256.7707530990747 -244.9738032412373 847.0691129813966 -10.64909298677731 -113.120241707251 899.4512251728207 -40.89191418767496 -213.6534204346833 899.2493043892877 -40.77533404483575 -244.8215956207684 742.9560663884901 49.46059905918128 -113.13220702338 639.4710401148624 109.2077033984133 -112.3994041347029 535.5282316449777 169.219108429163 -112.5583613187373</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"320\" source=\"#ID970\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID962\">\r\n\t\t\t\t\t<float_array count=\"960\" id=\"ID971\">0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 0.5000000103041936 -0.8660253978353096 -1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.5000000103041936 0.8660253978353096 1.716484102420933e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 -0.499999978595097 -0.8660254161425642 -3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008 0.499999978595097 0.8660254161425642 3.141892181200787e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"320\" source=\"#ID971\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID964\">\r\n\t\t\t\t\t<float_array count=\"318\" id=\"ID972\">0.3085984147866607 0.9863797179609004 0.3023381642931633 0.8245165621026896 0.3085893100372441 0.8210080835404359 0.3023470458595567 0.9858344725659892 0.2060375857182899 0.9859151435799033 0.1933956460361672 0.9860724162311982 0.1090023233223501 0.9861431060149534 0.3916520846840224 0.8209385082542798 0.4048833930688891 0.8219664881067921 0.3916611894334325 0.9863101426747406 0.5014800862351367 0.8218855764999061 0.4048925103090768 0.987564995387577 0.5071357765851692 0.8192468501623894 0.1933865253451197 0.8204112300995132 0.5071450764234986 0.9881619289538446 0.5014892034753293 0.9874840837806912 0.5907151043486238 0.8191768421994851 0.6033386748877618 0.8221269578761423 0.5907244041869515 0.9880919209909402 0.7002081701086791 0.8220458177639948 0.603347825919355 0.9883392262969366 0.7063193938337871 0.8187709265409053 0.7063287505910996 0.9887198376731267 0.7002173211402798 0.9882580861847882 0.7892912974796771 0.8187014273703858 0.8026373147956301 0.8209335540665143 0.7893006542369785 0.988650338502603 0.9052226082712405 0.8192652432091169 0.988679367312973 0.8191953379125871 0.8997449525355081 0.8208522144807279 0.802646597528492 0.9895379423970275 0.9999999999999998 0.9991510737817051 0.9887480617713937 0.002536290739917124 0.9999999720325239 1.110223024625157e-015 0.9887568132198223 0.1614908398250805 0.9883587812909489 0.1956302447949077 0.8022709292889989 0.1616470446809262 0.3931880891627808 0.1912102655359087 0.9883853942827618 0.6790080681547592 0.802244341223546 0.6791639841723494 0.3932150702062733 0.6812730955937248 0.2060984457429476 0.6814298287723071 0.9886886018961152 0.9869251719234554 0.905231842854384 0.9869950772199855 0.8997542352683741 0.9894566028112408 0 0 0.007103870319617567 0.003289615461088413 2.934170240109779e-008 1 0.1925870853911587 0.003134250463695976 0.8022621778405534 0.002692495595755018 0.007112504898784566 0.1601214407957112 0.006892425578981731 0.193190741458571 0.2060714646994628 0.1913669987144853 0.1936588626970086 0.1930343016049374 0.006919182235027854 0.6791779714112646 0.1089932026312912 0.8204819198832638 0.206028704151908 0.8245972331166029 0.5901773553445242 0.196138149238569 0.6029729995137909 0.1973293009562307 0.5902037819219306 0.676130085652633 0.7891993780481961 0.1971733134680678 0.6029993710126826 0.6763208337500135 0.4043634475979314 0.6762857497813065 0.8022177282317264 0.1957861608124947 0.7892257495471016 0.6761648462618505 0.1936856193530534 0.6790215315576389 0.4043370210205242 0.1962938133672445 0.3922863614188137 0.008352225549142611 0.4048377960269285 0.008745263388493463 0.3922946729699242 0.1593168188405063 0.5895119945177909 0.008590576041954234 0.4048461169291953 0.1598797040758309 0.2046826692153654 0.1594739669601426 0.6022448453180624 0.004689203949174159 0.6022533907295713 0.1599014569363739 0.5895203154200783 0.1597250167292839 0.7900580004143711 0.004531887340551766 0.7900665458258873 0.1597441403277495 0.1925957199703448 0.1599660757983188 0.2046743576642502 0.008509373668778908 0.2926624760268121 0.8265015149197356 0.3007385916097254 0.827805491786772 0.2926600575739169 0.9838720073340214 0.4098673760109941 0.8274758083774543 0.3007361253958646 0.9882838254092471 0.1006655602583638 0.8303310613496749 0.09176754844488355 0.9888722111135834 0.09177004171712666 0.8266331688442589 0.1006631190182776 0.9891843333836529 0.5011062283807798 0.8250521300746071 0.2092350233320345 0.8264836340841363 0.4932650862045576 0.8274936828384036 0.5011037055501314 0.9892145591658201 0.4932626864678283 0.9836463005766616 0.3978658562767233 0.9883046430261533 0.1965466259379034 0.9892048838999213 0.6999581942668249 0.8227535126427525 0.6929842075905048 0.8229197246290309 0.6094665403621913 0.8229018244579357 0.6999556311035164 0.9895404174280769 0.6929817595074588 0.9822182728762789 0.5963942707033254 0.9892349825980913 0.9999999678472382 1.376676550535194e-014 0.1965669986189385 0.0006823333592986813 0.007213141299572234 0.000641749533670799 0.9946196121160724 0.0009500389612688842 1 0.9997477779951532 0.8100875274988959 0.0009104885763475679 0.9950093065551917 0.195493391568589 0.994617139572868 0.1618402285072771 0.1965645201202381 0.1619600508238022 0.7972027244522333 0.1930507846791516 0.6104138946545187 0.1930107506106356 0.8087349825472603 0.1954534677730482 0.9950018958440285 0.6777137692448521 0.8939153658599222 0.822994408908776 0.5979293593545999 0.6784115525624966 0.3976456705057696 0.6811896231282454 0.1968126307321043 0.6815912690347067 0.7961986112010164 0.8227741396548159 0.8088970841622156 0.8229761871140445 0.8939129087020359 0.9828834641871954 0.7961960480377051 0.9895610444401407 1.776356839400251e-015 1 0.00721066280087046 0.1619194669981801 0.008503968440503551 0.1936775862262197 0.008496470855497595 0.6815509076166533 0.007631861686952901 0.8266151356799247 0.007629368414706017 0.9888541779492456 0.1965490671779901 0.8303516118659441 0.2092326048791401 0.9838541264984262 0.3978683224905762 0.8278263094036779 0.4098649762742677 0.9836284261157123 0.8088946270043271 0.9828652423924675 0.5963967935339716 0.8250725535068744 0.6094640922791477 0.9822003727051797 0.7971952764220212 0.6776995395847418 0.8087275718360982 0.6776738454492987 0.2091201596887987 0.1952902035186639 0.1968201283171069 0.1937179476442732 0.2091126930594858 0.6811492152401245 0.4115782271946253 0.1956509116422196 0.3976531371350865 0.1953306114067845 0.4115708087945655 0.6783716107148511 0.5979367777546617 0.1956908534898652 0.610406446624305 0.6776595055162257 0.6102891116593225 0.006445139971256841 0.598161279471166 0.1567674787467683 0.5981636490679075 0.002576091393774904 0.6102867341697577 0.1611501185415363 0.3978432660022926 0.160337539227958 0.4103100114059632 0.002535829107170873 0.7964631534286395 0.0064850422735101 0.8100850549556766 0.161800678122356 0.7964607759390765 0.1611900208437895 0.2088955447481751 0.005752038432705886 0.2088931697170894 0.1602970419396084 0.3978456410333774 0.005792535721055536 0.4103076418092225 0.156727216460157</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"159\" source=\"#ID972\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID963\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID961\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID962\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"116\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID963\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID964\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 5 5 0 0 6 6 7 7 8 8 9 9 8 8 7 7 10 10 9 9 8 8 11 11 9 9 11 11 0 0 12 12 7 7 13 13 7 7 12 12 10 10 10 10 12 12 14 14 10 10 14 14 15 15 15 15 14 14 11 11 16 16 17 17 18 18 17 17 16 16 19 19 18 18 17 17 20 20 18 18 20 20 14 14 21 21 19 19 16 16 19 19 21 21 22 22 19 19 22 22 23 23 23 23 22 22 20 20 24 24 25 25 26 26 25 25 24 24 27 27 27 27 24 24 28 28 25 25 27 27 29 29 26 26 25 25 30 30 26 26 30 30 22 22 31 31 32 32 33 33 32 32 31 31 34 34 34 34 31 31 35 35 34 34 35 35 36 36 36 36 35 35 37 37 35 35 31 31 38 38 38 38 31 31 28 28 38 38 28 28 39 39 39 39 28 28 40 40 40 40 28 28 41 41 41 41 28 28 24 24 28 28 31 31 42 42 42 42 31 31 43 43 43 43 31 31 44 44 44 44 31 31 30 30 45 45 46 46 47 47 46 46 45 45 33 33 46 46 33 33 48 48 48 48 33 33 32 32 48 48 32 32 49 49 47 47 46 46 50 50 47 47 50 50 51 51 51 51 50 50 36 36 51 51 36 36 52 52 52 52 36 36 37 37 51 51 52 52 53 53 47 47 51 51 54 54 47 47 54 54 55 55 55 55 54 54 41 41 55 55 41 41 12 12 12 12 41 41 21 21 21 21 41 41 24 24 12 12 21 21 16 16 55 55 12 12 13 13 47 47 55 55 6 6 47 47 6 6 0 0 47 47 0 0 11 11 47 47 11 11 14 14 47 47 14 14 20 20 47 47 20 20 22 22 47 47 22 22 30 30 47 47 30 30 31 31 43 43 29 29 27 27 29 29 43 43 44 44 13 13 56 56 5 5 56 56 13 13 2 2 2 2 13 13 7 7 56 56 2 2 1 1 5 5 56 56 4 4 57 57 58 58 59 59 58 58 57 57 60 60 59 59 58 58 61 61 59 59 61 61 62 62 63 63 60 60 57 57 60 60 63 63 39 39 60 60 39 39 64 64 64 64 39 39 61 61 41 41 53 53 52 52 53 53 41 41 65 65 65 65 41 41 54 54 37 37 66 66 40 40 66 66 37 37 63 63 63 63 37 37 35 35 66 66 63 63 57 57 40 40 66 66 62 62 40 40 62 62 61 61 40 40 61 61 39 39 67 67 68 68 69 69 68 68 67 67 70 70 69 69 68 68 71 71 69 69 71 71 72 72 73 73 70 70 67 67 70 70 73 73 74 74 70 70 74 74 75 75 75 75 74 74 71 71 49 49 76 76 48 48 76 76 49 49 36 36 76 76 36 36 77 77 77 77 36 36 74 74 74 74 36 36 78 78 78 78 36 36 50 50 48 48 79 79 78 78 79 79 48 48 73 73 73 73 48 48 76 76 79 79 73 73 67 67 78 78 79 79 72 72 78 78 72 72 71 71 78 78 71 71 74 74</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"232\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID963\" />\r\n\t\t\t\t\t<p>80 81 82 81 83 82 83 84 82 85 86 84 87 88 86 86 88 84 82 84 88 89 90 82 82 90 80 80 90 91 91 90 87 90 92 87 88 87 92 81 80 93 93 80 94 80 86 94 85 94 86 83 81 95 81 96 95 94 85 96 95 96 85 97 98 99 98 100 99 100 101 99 102 103 101 104 105 103 103 105 101 99 101 105 106 107 108 108 107 109 110 109 107 98 97 111 111 97 112 97 103 112 102 112 103 100 98 113 98 114 113 112 102 114 113 114 102 115 116 117 118 119 116 120 121 119 119 121 116 117 116 121 122 123 124 125 124 123 126 127 128 127 129 128 129 130 128 130 131 128 131 132 128 132 133 128 133 134 128 134 135 128 121 136 135 137 138 136 139 107 138 138 107 136 136 107 135 107 106 135 135 106 128 106 140 128 109 110 140 105 90 110 110 90 140 90 89 140 140 89 128 89 141 128 92 142 88 142 143 88 88 143 141 143 144 141 128 141 144 127 126 122 122 126 123 123 126 145 145 126 146 139 146 107 107 146 99 99 146 97 97 146 147 146 126 147 147 126 104 105 104 90 90 104 148 104 126 148 148 126 142 143 142 126 129 127 149 127 150 149 124 125 150 146 139 125 125 139 150 149 150 139 130 129 151 151 129 152 129 138 152 137 152 138 131 130 153 130 154 153 152 137 154 153 154 137 132 131 155 155 131 156 131 136 156 156 136 120 121 120 136 133 132 157 132 158 157 156 120 158 157 158 120 134 133 117 117 133 115 115 133 159 159 133 118 119 118 133 240 241 242 242 241 243 241 244 243 245 243 244 246 247 248 247 249 248 249 250 248 250 242 248 242 251 248 251 245 248 252 253 244 244 253 245 248 245 253 249 247 254 255 254 256 247 252 254 254 252 256 244 256 252 242 250 240 250 255 240 256 240 255 257 258 259 258 260 259 259 260 261 262 261 263 264 263 265 263 261 265 260 266 261 261 266 265 267 265 266 259 268 269 268 262 269 263 269 262 269 270 271 270 264 271 265 271 264 257 272 258 272 273 258 274 258 273 275 276 277 277 276 278 276 279 278 280 278 279 281 282 283 282 284 283 285 283 284 286 287 288 288 287 289 287 290 289 291 289 290 288 292 293 292 294 293 294 295 293 293 295 296 297 296 298 295 299 296 296 299 298 300 298 299 301 283 302 283 303 302 303 277 302 277 304 302 304 293 302 293 305 302 305 306 302 306 307 302 307 300 302 299 280 300 280 279 300 308 271 279 279 271 300 271 309 300 300 309 302 309 267 302 266 248 267 248 310 267 267 310 302 310 311 302 312 313 311 302 311 313 283 301 281 281 301 314 284 314 285 308 285 271 285 314 271 271 314 269 269 314 259 259 314 257 314 301 257 257 301 315 273 315 274 266 274 248 274 315 248 248 315 246 246 315 316 315 301 316 252 316 253 301 312 316 316 312 253 311 253 312 277 303 275 275 303 317 303 308 317 279 317 308 293 304 288 288 304 286 286 304 318 290 318 319 304 280 318 318 280 319 299 319 280 305 297 306 298 306 297 292 291 294 290 319 291 294 291 319</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"116\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID963\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID964\" />\r\n\t\t\t\t\t<p>160 80 161 81 162 82 161 81 160 80 163 83 162 82 161 81 164 84 165 85 166 86 167 87 166 86 165 85 168 88 169 89 160 80 170 90 160 80 169 89 171 91 171 91 169 89 172 92 160 80 171 91 163 83 171 91 172 92 173 93 173 93 172 92 174 94 174 94 172 92 175 95 176 96 177 97 178 98 177 97 176 96 179 99 177 97 179 99 180 100 180 100 179 99 181 101 182 102 183 103 184 104 183 103 182 102 185 105 185 105 182 102 186 106 183 103 185 105 187 107 185 105 186 106 188 108 185 105 188 108 189 109 189 109 188 108 190 110 190 110 188 108 191 111 190 110 191 111 192 112 191 111 188 108 193 113 188 108 186 106 194 114 194 114 186 106 195 115 194 114 195 115 196 116 196 116 195 115 197 117 197 117 195 115 198 118 198 118 195 115 199 119 198 118 199 119 176 96 199 119 195 115 200 120 195 115 186 106 201 121 201 121 186 106 202 122 203 45 184 104 204 123 184 104 203 45 182 102 204 123 184 104 205 124 204 123 205 124 206 125 206 125 205 124 190 110 206 125 190 110 192 112 204 123 206 125 207 126 204 123 207 126 208 127 208 127 207 126 198 118 208 127 198 118 178 98 178 98 198 118 176 96 208 127 178 98 169 89 208 127 169 89 170 90 204 123 208 127 209 128 204 123 209 128 166 86 204 123 166 86 168 88 204 123 168 88 175 95 204 123 175 95 172 92 204 123 172 92 181 101 204 123 181 101 179 99 204 123 179 99 202 122 204 123 202 122 186 106 170 90 167 87 208 127 167 87 170 90 210 129 210 129 170 90 211 130 167 87 210 129 165 85 210 129 211 130 175 95 175 95 211 130 162 82 175 95 162 82 164 84 175 95 164 84 174 94 163 83 212 131 161 81 212 131 163 83 213 132 212 131 213 132 174 94 174 94 213 132 173 93 200 120 202 122 199 119 202 122 200 120 214 133 202 122 214 133 201 121 178 98 215 134 169 89 215 134 178 98 216 135 215 134 216 135 181 101 181 101 216 135 180 100 193 113 217 136 191 111 217 136 193 113 218 137 217 136 218 137 194 114 219 138 198 118 220 139 198 118 219 138 221 140 198 118 221 140 197 117 222 141 197 117 223 142 197 117 222 141 224 143 197 117 224 143 196 116 192 112 220 139 206 125 220 139 192 112 225 144 225 144 192 112 226 145 220 139 225 144 223 142 220 139 223 142 219 138 223 142 225 144 222 141 225 144 226 145 196 116 196 116 226 145 217 136 196 116 217 136 194 114 227 146 228 147 229 148 228 147 227 146 230 149 228 147 230 149 231 150 187 107 229 148 232 151 229 148 187 107 233 152 233 152 187 107 234 153 229 148 233 152 227 146 233 152 234 153 235 154 183 103 236 155 190 110 236 155 183 103 232 151 232 151 183 103 187 107 190 110 236 155 237 156 190 110 237 156 231 150 190 110 231 150 230 149 190 110 230 149 235 154 190 110 235 154 234 153 190 110 234 153 189 109 232 151 238 157 236 155 238 157 232 151 239 158 238 157 239 158 231 150 231 150 239 158 228 147</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID973\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID974\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID977\">383.884349864544 256.7707530990747 -244.9738032412373 76.47344081988609 434.2544587340244 -85.14035149414474 76.47349969984288 434.2544897204971 -244.9738032412375 383.8843396964735 256.7707354874569 -84.7618259705614 76.47345218818828 434.2544779219165 -84.7395872913022 76.47345218818828 434.2544779219165 -84.7395872913022 383.8843396964735 256.7707354874569 -84.7618259705614 76.47344081988609 434.2544587340244 -85.14035149414474 383.884349864544 256.7707530990747 -244.9738032412373 76.47349969984288 434.2544897204971 -244.9738032412375 76.47344081988609 434.2544587340244 -85.14035149414474 473.7154765371882 663.6022527682667 -244.9738032412366 76.47349969984288 434.2544897204971 -244.9738032412375 473.7155236640256 663.6022816043133 -85.14050999833791 473.7155236640256 663.6022816043133 -85.14050999833791 76.47344081988609 434.2544587340244 -85.14035149414474 473.7154765371882 663.6022527682667 -244.9738032412366 76.47349969984288 434.2544897204971 -244.9738032412375</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID977\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID975\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID978\">-0.4999999643779661 -0.866025424350803 -2.108218125879244e-007 -0.4999999643779661 -0.866025424350803 -2.108218125879244e-007 -0.4999999643779661 -0.866025424350803 -2.108218125879244e-007 -0.4999999643779661 -0.866025424350803 -2.108218125879244e-007 -0.4999999643779661 -0.866025424350803 -2.108218125879244e-007 0.4999999643779661 0.866025424350803 2.108218125879244e-007 0.4999999643779661 0.866025424350803 2.108218125879244e-007 0.4999999643779661 0.866025424350803 2.108218125879244e-007 0.4999999643779661 0.866025424350803 2.108218125879244e-007 0.4999999643779661 0.866025424350803 2.108218125879244e-007 -0.500000000158683 0.866025403692823 -1.255757645858189e-008 -0.500000000158683 0.866025403692823 -1.255757645858189e-008 -0.500000000158683 0.866025403692823 -1.255757645858189e-008 -0.500000000158683 0.866025403692823 -1.255757645858189e-008 0.500000000158683 -0.866025403692823 1.255757645858189e-008 0.500000000158683 -0.866025403692823 1.255757645858189e-008 0.500000000158683 -0.866025403692823 1.255757645858189e-008 0.500000000158683 -0.866025403692823 1.255757645858189e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID978\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID976\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID974\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID975\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID976\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 10 11 12 11 10 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID976\" />\r\n\t\t\t\t\t<p>5 6 7 6 8 7 9 7 8 14 15 16 17 16 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID979\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID980\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID983\">1727.382410402378 434.1284176087024 -85.01313571523843 1443.086450655612 269.9900550500279 -244.9738032412355 1727.382400194998 434.1284003590372 -244.9738032412361 1443.086462775246 269.9900690035638 -84.93820880041062 1443.086462775246 269.9900690035638 -84.93820880041062 1727.382410402378 434.1284176087024 -85.01313571523843 1443.086450655612 269.9900550500279 -244.9738032412355 1727.382400194998 434.1284003590372 -244.9738032412361 1350.19524353553 652.07398133263 -244.9738032412079 1727.382410402378 434.1284176087024 -85.01313571523843 1727.382400194998 434.1284003590372 -244.9738032412361 1350.204230039824 652.068876713472 -87.53092804271492 1350.204230039824 652.068876713472 -87.53092804271492 1350.19524353553 652.07398133263 -244.9738032412079 1727.382410402378 434.1284176087024 -85.01313571523843 1727.382400194998 434.1284003590372 -244.9738032412361</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID983\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID981\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID984\">0.5000000103154708 -0.8660253978287974 4.852793313245567e-008 0.5000000103154708 -0.8660253978287974 4.852793313245567e-008 0.5000000103154708 -0.8660253978287974 4.852793313245567e-008 0.5000000103154708 -0.8660253978287974 4.852793313245567e-008 -0.5000000103154708 0.8660253978287974 -4.852793313245567e-008 -0.5000000103154708 0.8660253978287974 -4.852793313245567e-008 -0.5000000103154708 0.8660253978287974 -4.852793313245567e-008 -0.5000000103154708 0.8660253978287974 -4.852793313245567e-008 0.5003038546250881 0.8658499021465486 -3.01635106396208e-007 0.5003038546250881 0.8658499021465486 -3.01635106396208e-007 0.5003038546250881 0.8658499021465486 -3.01635106396208e-007 0.5003038546250881 0.8658499021465486 -3.01635106396208e-007 -0.5003038546250881 -0.8658499021465486 3.01635106396208e-007 -0.5003038546250881 -0.8658499021465486 3.01635106396208e-007 -0.5003038546250881 -0.8658499021465486 3.01635106396208e-007 -0.5003038546250881 -0.8658499021465486 3.01635106396208e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID984\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID982\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID980\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID981\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID982\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID982\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID985\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID986\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID989\">1006.830621842753 18.11763080328001 -136.2138596326599 905.7662917813019 -40.23188742414322 -214.030139203758 1006.816144504281 18.1092738506245 -214.0551964204567 905.7807691197769 -40.22353047148954 -136.1888024159625 905.7807691197769 -40.22353047148954 -136.1888024159625 1006.830621842753 18.11763080328001 -136.2138596326599 905.7662917813019 -40.23188742414322 -214.030139203758 1006.816144504281 18.1092738506245 -214.0551964204567</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID989\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID987\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID990\">0.5000000103041925 -0.8660253978353102 -1.716484557235613e-008 0.5000000103041925 -0.8660253978353102 -1.716484557235613e-008 0.5000000103041925 -0.8660253978353102 -1.716484557235613e-008 0.5000000103041925 -0.8660253978353102 -1.716484557235613e-008 -0.5000000103041925 0.8660253978353102 1.716484557235613e-008 -0.5000000103041925 0.8660253978353102 1.716484557235613e-008 -0.5000000103041925 0.8660253978353102 1.716484557235613e-008 -0.5000000103041925 0.8660253978353102 1.716484557235613e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID990\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID988\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID986\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID987\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID988\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID991\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID992\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID995\">1006.240931815635 17.77717474585279 -219.351786008291 905.8806935521742 -40.16583692626045 -244.4469003737799 1006.236259866901 17.77447789279631 -244.4717854290688 905.8853655008978 -40.16314007320943 -219.3269009530021 905.8853655008978 -40.16314007320943 -219.3269009530021 1006.240931815635 17.77717474585279 -219.351786008291 905.8806935521742 -40.16583692626045 -244.4469003737799 1006.236259866901 17.77447789279631 -244.4717854290688</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID995\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID993\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID996\">0.5000000103041938 -0.8660253978353094 -1.716484013424197e-008 0.5000000103041938 -0.8660253978353094 -1.716484013424197e-008 0.5000000103041938 -0.8660253978353094 -1.716484013424197e-008 0.5000000103041938 -0.8660253978353094 -1.716484013424197e-008 -0.5000000103041938 0.8660253978353094 1.716484013424197e-008 -0.5000000103041938 0.8660253978353094 1.716484013424197e-008 -0.5000000103041938 0.8660253978353094 1.716484013424197e-008 -0.5000000103041938 0.8660253978353094 1.716484013424197e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID996\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID994\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID992\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID993\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID994\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID997\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID998\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1001\">1114.78589439793 80.44563817893823 -135.8532230899069 1013.531974303185 21.98666010467787 -214.3222509392258 1114.771295649182 80.43721114295931 -214.3473551382406 1013.546573051929 21.99508714065405 -135.8281188908912 1013.546573051929 21.99508714065405 -135.8281188908912 1114.78589439793 80.44563817893823 -135.8532230899069 1013.531974303185 21.98666010467787 -214.3222509392258 1114.771295649182 80.43721114295931 -214.3473551382406</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1001\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID999\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1002\">0.5000000103041971 -0.8660253978353076 -1.716484162756784e-008 0.5000000103041971 -0.8660253978353076 -1.716484162756784e-008 0.5000000103041971 -0.8660253978353076 -1.716484162756784e-008 0.5000000103041971 -0.8660253978353076 -1.716484162756784e-008 -0.5000000103041971 0.8660253978353076 1.716484162756784e-008 -0.5000000103041971 0.8660253978353076 1.716484162756784e-008 -0.5000000103041971 0.8660253978353076 1.716484162756784e-008 -0.5000000103041971 0.8660253978353076 1.716484162756784e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1002\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1000\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID998\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID999\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1000\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1003\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1004\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1007\">1114.287913386875 80.15813035727842 -219.4557785134435 1012.776070248512 21.55023926375407 -243.6108435155879 1114.283416220321 80.15553439614496 -243.636014176363 1012.78056741507 21.55283522488571 -219.4306078526684 1012.78056741507 21.55283522488571 -219.4306078526684 1114.287913386875 80.15813035727842 -219.4557785134435 1012.776070248512 21.55023926375407 -243.6108435155879 1114.283416220321 80.15553439614496 -243.636014176363</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1007\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1005\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1008\">0.5000000103041936 -0.8660253978353096 -1.716483881135269e-008 0.5000000103041936 -0.8660253978353096 -1.716483881135269e-008 0.5000000103041936 -0.8660253978353096 -1.716483881135269e-008 0.5000000103041936 -0.8660253978353096 -1.716483881135269e-008 -0.5000000103041936 0.8660253978353096 1.716483881135269e-008 -0.5000000103041936 0.8660253978353096 1.716483881135269e-008 -0.5000000103041936 0.8660253978353096 1.716483881135269e-008 -0.5000000103041936 0.8660253978353096 1.716483881135269e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1008\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1006\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1004\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1005\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1006\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1009\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1010\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1013\">899.4512251728207 -40.89191418767496 -213.6534204346833 802.928817512728 14.83531787419906 -136.4023365171826 802.9326586072945 14.83310302019072 -213.659816704907 899.4473840782529 -40.88969933366752 -136.3959402469569 899.4473840782529 -40.88969933366752 -136.3959402469569 899.4512251728207 -40.89191418767496 -213.6534204346833 802.928817512728 14.83531787419906 -136.4023365171826 802.9326586072945 14.83310302019072 -213.659816704907</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1013\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1011\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1014\">-0.499999978595097 -0.8660254161425643 -3.141891825755947e-008 -0.499999978595097 -0.8660254161425643 -3.141891825755947e-008 -0.499999978595097 -0.8660254161425643 -3.141891825755947e-008 -0.499999978595097 -0.8660254161425643 -3.141891825755947e-008 0.499999978595097 0.8660254161425643 3.141891825755947e-008 0.499999978595097 0.8660254161425643 3.141891825755947e-008 0.499999978595097 0.8660254161425643 3.141891825755947e-008 0.499999978595097 0.8660254161425643 3.141891825755947e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1014\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1012\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1010\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1011\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1012\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1015\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1016\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1019\">899.2493043892877 -40.77533404483575 -244.8215956207684 803.6322025197079 14.42922137272217 -219.0513966755186 803.6334840798837 14.42848239879868 -244.8279320661385 899.248022829123 -40.77459507091044 -219.0450602301485 899.248022829123 -40.77459507091044 -219.0450602301485 899.2493043892877 -40.77533404483575 -244.8215956207684 803.6322025197079 14.42922137272217 -219.0513966755186 803.6334840798837 14.42848239879868 -244.8279320661385</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1019\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1017\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1020\">-0.4999999785950965 -0.8660254161425647 -3.141891902652986e-008 -0.4999999785950965 -0.8660254161425647 -3.141891902652986e-008 -0.4999999785950965 -0.8660254161425647 -3.141891902652986e-008 -0.4999999785950965 -0.8660254161425647 -3.141891902652986e-008 0.4999999785950965 0.8660254161425647 3.141891902652986e-008 0.4999999785950965 0.8660254161425647 3.141891902652986e-008 0.4999999785950965 0.8660254161425647 3.141891902652986e-008 0.4999999785950965 0.8660254161425647 3.141891902652986e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1020\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1018\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1016\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1017\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1018\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1021\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1022\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1025\">796.9571865426541 18.28304324230521 -214.044755314135 700.1681669127896 74.1642037737679 -136.4046339462142 700.1720273504492 74.16197776615627 -214.0511692514101 796.9533261049941 18.28526924991411 -136.398220008939 796.9533261049941 18.28526924991411 -136.398220008939 796.9571865426541 18.28304324230521 -214.044755314135 700.1681669127896 74.1642037737679 -136.4046339462142 700.1720273504492 74.16197776615627 -214.0511692514101</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1025\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1023\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1026\">-0.4999999785950962 -0.8660254161425647 -3.141891898907067e-008 -0.4999999785950962 -0.8660254161425647 -3.141891898907067e-008 -0.4999999785950962 -0.8660254161425647 -3.141891898907067e-008 -0.4999999785950962 -0.8660254161425647 -3.141891898907067e-008 0.4999999785950962 0.8660254161425647 3.141891898907067e-008 0.4999999785950962 0.8660254161425647 3.141891898907067e-008 0.4999999785950962 0.8660254161425647 3.141891898907067e-008 0.4999999785950962 0.8660254161425647 3.141891898907067e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1026\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1024\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1022\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1023\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1024\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1027\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1028\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1031\">796.573976199598 18.5042909087756 -243.9348217959145 700.1061388666657 74.20001868301142 -219.1556241122941 700.1073711589601 74.19930811797121 -243.9412146226562 796.5727439073056 18.50500147381672 -219.1492312855524 796.5727439073056 18.50500147381672 -219.1492312855524 796.573976199598 18.5042909087756 -243.9348217959145 700.1061388666657 74.20001868301142 -219.1556241122941 700.1073711589601 74.19930811797121 -243.9412146226562</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1031\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1029\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1032\">-0.4999999785950962 -0.8660254161425647 -3.141891975939631e-008 -0.4999999785950962 -0.8660254161425647 -3.141891975939631e-008 -0.4999999785950962 -0.8660254161425647 -3.141891975939631e-008 -0.4999999785950962 -0.8660254161425647 -3.141891975939631e-008 0.4999999785950962 0.8660254161425647 3.141891975939631e-008 0.4999999785950962 0.8660254161425647 3.141891975939631e-008 0.4999999785950962 0.8660254161425647 3.141891975939631e-008 0.4999999785950962 0.8660254161425647 3.141891975939631e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1032\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1030\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1028\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1029\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1030\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1033\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1034\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1037\">485.8672503485612 197.8908913902956 -213.9378678163311 388.2868146438264 254.2289761608108 -135.7811847213494 388.2907007665531 254.2267353426528 -213.9443341989229 485.863364225832 197.8931322084454 -135.7747183387576 485.863364225832 197.8931322084454 -135.7747183387576 485.8672503485612 197.8908913902956 -213.9378678163311 388.2868146438264 254.2289761608108 -135.7811847213494 388.2907007665531 254.2267353426528 -213.9443341989229</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1037\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1035\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1038\">-0.499999978595097 -0.8660254161425643 -3.141892214805634e-008 -0.499999978595097 -0.8660254161425643 -3.141892214805634e-008 -0.499999978595097 -0.8660254161425643 -3.141892214805634e-008 -0.499999978595097 -0.8660254161425643 -3.141892214805634e-008 0.499999978595097 0.8660254161425643 3.141892214805634e-008 0.499999978595097 0.8660254161425643 3.141892214805634e-008 0.499999978595097 0.8660254161425643 3.141892214805634e-008 0.499999978595097 0.8660254161425643 3.141892214805634e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1038\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1036\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1034\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1035\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1036\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1039\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1040\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1043\">485.7360909670782 197.9666174121767 -244.8644852645865 387.6205708801886 254.6136351754394 -219.032365274845 387.6218555272055 254.6128944216162 -244.8709872795355 485.7348063200687 197.9673581660113 -219.0258632598969 485.7348063200687 197.9673581660113 -219.0258632598969 485.7360909670782 197.9666174121767 -244.8644852645865 387.6205708801886 254.6136351754394 -219.032365274845 387.6218555272055 254.6128944216162 -244.8709872795355</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1043\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1041\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1044\">-0.4999999785950965 -0.8660254161425647 -3.141892299221615e-008 -0.4999999785950965 -0.8660254161425647 -3.141892299221615e-008 -0.4999999785950965 -0.8660254161425647 -3.141892299221615e-008 -0.4999999785950965 -0.8660254161425647 -3.141892299221615e-008 0.4999999785950965 0.8660254161425647 3.141892299221615e-008 0.4999999785950965 0.8660254161425647 3.141892299221615e-008 0.4999999785950965 0.8660254161425647 3.141892299221615e-008 0.4999999785950965 0.8660254161425647 3.141892299221615e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1044\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1042\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1040\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1041\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1042\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1045\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1046\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1049\">589.9294405223983 137.8105613009539 -213.6794997662664 492.2366762270256 194.2134990215286 -135.8455406512476 492.2405463049028 194.2112674551599 -213.6859735939195 589.9255704445202 137.8127928673257 -135.8390668235945 589.9255704445202 137.8127928673257 -135.8390668235945 589.9294405223983 137.8105613009539 -213.6794997662664 492.2366762270256 194.2134990215286 -135.8455406512476 492.2405463049028 194.2112674551599 -213.6859735939195</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1049\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1047\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1050\">-0.499999978595097 -0.8660254161425643 -3.141892190156297e-008 -0.499999978595097 -0.8660254161425643 -3.141892190156297e-008 -0.499999978595097 -0.8660254161425643 -3.141892190156297e-008 -0.499999978595097 -0.8660254161425643 -3.141892190156297e-008 0.499999978595097 0.8660254161425643 3.141892190156297e-008 0.499999978595097 0.8660254161425643 3.141892190156297e-008 0.499999978595097 0.8660254161425643 3.141892190156297e-008 0.499999978595097 0.8660254161425643 3.141892190156297e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1050\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1048\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1046\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1047\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1048\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1051\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1052\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1055\">590.0291874374933 137.7529734976315 -244.0457696399562 492.1229308986722 194.2791729411265 -219.2922972014523 492.1241619166952 194.2784631108557 -244.0522577905967 590.0279564194707 137.7536833279019 -219.2858090508117 590.0279564194707 137.7536833279019 -219.2858090508117 590.0291874374933 137.7529734976315 -244.0457696399562 492.1229308986722 194.2791729411265 -219.2922972014523 492.1241619166952 194.2784631108557 -244.0522577905967</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1055\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1053\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1056\">-0.499999978595097 -0.8660254161425642 -3.141892216632514e-008 -0.499999978595097 -0.8660254161425642 -3.141892216632514e-008 -0.499999978595097 -0.8660254161425642 -3.141892216632514e-008 -0.499999978595097 -0.8660254161425642 -3.141892216632514e-008 0.499999978595097 0.8660254161425642 3.141892216632514e-008 0.499999978595097 0.8660254161425642 3.141892216632514e-008 0.499999978595097 0.8660254161425642 3.141892216632514e-008 0.499999978595097 0.8660254161425642 3.141892216632514e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1056\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1054\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1052\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1053\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1054\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1057\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1058\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1061\">693.706974017325 77.89457781972124 -213.6217846698399 597.1409201463252 133.6470090288613 -136.2905461643177 597.1447652261751 133.6447918768567 -213.6281838322271 693.7031289374751 77.89679497172801 -136.2841470019305 693.7031289374751 77.89679497172801 -136.2841470019305 693.706974017325 77.89457781972124 -213.6217846698399 597.1409201463252 133.6470090288613 -136.2905461643177 597.1447652261751 133.6447918768567 -213.6281838322271</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1061\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1059\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1062\">-0.499999978595097 -0.8660254161425642 -3.141892083682223e-008 -0.499999978595097 -0.8660254161425642 -3.141892083682223e-008 -0.499999978595097 -0.8660254161425642 -3.141892083682223e-008 -0.499999978595097 -0.8660254161425642 -3.141892083682223e-008 0.499999978595097 0.8660254161425642 3.141892083682223e-008 0.499999978595097 0.8660254161425642 3.141892083682223e-008 0.499999978595097 0.8660254161425642 3.141892083682223e-008 0.499999978595097 0.8660254161425642 3.141892083682223e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1062\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1060\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1058\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1059\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1060\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1063\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1064\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1067\">693.8245285144511 77.82670882549792 -244.5610825454108 596.4864079216831 134.0248948483727 -219.8642260000264 596.487636123003 134.0241866422894 -244.5675330459571 693.8233003131369 77.82741703159218 -219.857775499479 693.8233003131369 77.82741703159218 -219.857775499479 693.8245285144511 77.82670882549792 -244.5610825454108 596.4864079216831 134.0248948483727 -219.8642260000264 596.487636123003 134.0241866422894 -244.5675330459571</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1067\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1065\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1068\">-0.4999999785950978 -0.8660254161425638 -3.141892324711207e-008 -0.4999999785950978 -0.8660254161425638 -3.141892324711207e-008 -0.4999999785950978 -0.8660254161425638 -3.141892324711207e-008 -0.4999999785950978 -0.8660254161425638 -3.141892324711207e-008 0.4999999785950978 0.8660254161425638 3.141892324711207e-008 0.4999999785950978 0.8660254161425638 3.141892324711207e-008 0.4999999785950978 0.8660254161425638 3.141892324711207e-008 0.4999999785950978 0.8660254161425638 3.141892324711207e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1068\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1066\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1064\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1065\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1066\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1069\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1070\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1073\">1221.366501774936 141.979982245598 -136.6769870578747 1120.803417592153 83.91985845008503 -213.533115309646 1221.352203033522 141.9717283869809 -213.5580482772616 1120.817716333567 83.92811230870348 -136.6520540902594 1120.817716333567 83.92811230870348 -136.6520540902594 1221.366501774936 141.979982245598 -136.6769870578747 1120.803417592153 83.91985845008503 -213.533115309646 1221.352203033522 141.9717283869809 -213.5580482772616</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1073\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1071\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1074\">0.5000000103041933 -0.8660253978353099 -1.716484679959167e-008 0.5000000103041933 -0.8660253978353099 -1.716484679959167e-008 0.5000000103041933 -0.8660253978353099 -1.716484679959167e-008 0.5000000103041933 -0.8660253978353099 -1.716484679959167e-008 -0.5000000103041933 0.8660253978353099 1.716484679959167e-008 -0.5000000103041933 0.8660253978353099 1.716484679959167e-008 -0.5000000103041933 0.8660253978353099 1.716484679959167e-008 -0.5000000103041933 0.8660253978353099 1.716484679959167e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1074\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1072\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1070\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1071\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1072\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1075\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1076\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1079\">1220.99671198293 141.7664856431761 -219.3903968174275 1121.074361308133 84.0762884771425 -243.573060689239 1220.992209756688 141.7638867613864 -243.597837204128 1121.07886353436 84.07888735893357 -219.3656203025373 1121.07886353436 84.07888735893357 -219.3656203025373 1220.99671198293 141.7664856431761 -219.3903968174275 1121.074361308133 84.0762884771425 -243.573060689239 1220.992209756688 141.7638867613864 -243.597837204128</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1079\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1077\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1080\">0.5000000103041933 -0.8660253978353099 -1.716484272307282e-008 0.5000000103041933 -0.8660253978353099 -1.716484272307282e-008 0.5000000103041933 -0.8660253978353099 -1.716484272307282e-008 0.5000000103041933 -0.8660253978353099 -1.716484272307282e-008 -0.5000000103041933 0.8660253978353099 1.716484272307282e-008 -0.5000000103041933 0.8660253978353099 1.716484272307282e-008 -0.5000000103041933 0.8660253978353099 1.716484272307282e-008 -0.5000000103041933 0.8660253978353099 1.716484272307282e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1080\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1078\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1076\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1077\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1078\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1081\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1082\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1085\">1329.047200874545 204.1494645654607 -136.6714193965818 1228.275277538029 145.9687674218171 -213.3672596385788 1329.032931934696 204.1412279095985 -213.3922443991906 1228.289546477868 145.977004077678 -136.64643463597 1228.289546477868 145.977004077678 -136.64643463597 1329.047200874545 204.1494645654607 -136.6714193965818 1228.275277538029 145.9687674218171 -213.3672596385788 1329.032931934696 204.1412279095985 -213.3922443991906</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1085\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1083\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1086\">0.5000000103041933 -0.8660253978353099 -1.716484200790596e-008 0.5000000103041933 -0.8660253978353099 -1.716484200790596e-008 0.5000000103041933 -0.8660253978353099 -1.716484200790596e-008 0.5000000103041933 -0.8660253978353099 -1.716484200790596e-008 -0.5000000103041933 0.8660253978353099 1.716484200790596e-008 -0.5000000103041933 0.8660253978353099 1.716484200790596e-008 -0.5000000103041933 0.8660253978353099 1.716484200790596e-008 -0.5000000103041933 0.8660253978353099 1.716484200790596e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1086\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1084\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1082\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1083\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1084\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1087\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1088\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1091\">1329.502112414682 204.4121095122864 -219.38733376067 1227.881309944965 145.7413107312204 -244.2227260906902 1329.497488712278 204.4094405091273 -244.2479237386105 1227.885933647364 145.74397973438 -219.3621361127494 1227.885933647364 145.74397973438 -219.3621361127494 1329.502112414682 204.4121095122864 -219.38733376067 1227.881309944965 145.7413107312204 -244.2227260906902 1329.497488712278 204.4094405091273 -244.2479237386105</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1091\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1089\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1092\">0.5000000103041938 -0.8660253978353094 -1.716484863078203e-008 0.5000000103041938 -0.8660253978353094 -1.716484863078203e-008 0.5000000103041938 -0.8660253978353094 -1.716484863078203e-008 0.5000000103041938 -0.8660253978353094 -1.716484863078203e-008 -0.5000000103041938 0.8660253978353094 1.716484863078203e-008 -0.5000000103041938 0.8660253978353094 1.716484863078203e-008 -0.5000000103041938 0.8660253978353094 1.716484863078203e-008 -0.5000000103041938 0.8660253978353094 1.716484863078203e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1092\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1090\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1088\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1089\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1090\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1093\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1094\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1097\">1436.802390084224 266.3619537627019 -136.2160160870136 1336.076501371947 208.2078347363945 -213.6144268154839 1436.78799047878 266.3536416809307 -213.6394001285415 1336.090900977394 208.2161468181671 -136.1910427739555 1336.090900977394 208.2161468181671 -136.1910427739555 1436.802390084224 266.3619537627019 -136.2160160870136 1336.076501371947 208.2078347363945 -213.6144268154839 1436.78799047878 266.3536416809307 -213.6394001285415</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1097\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1095\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1098\">0.5000000103041971 -0.8660253978353076 -1.716484045275347e-008 0.5000000103041971 -0.8660253978353076 -1.716484045275347e-008 0.5000000103041971 -0.8660253978353076 -1.716484045275347e-008 0.5000000103041971 -0.8660253978353076 -1.716484045275347e-008 -0.5000000103041971 0.8660253978353076 1.716484045275347e-008 -0.5000000103041971 0.8660253978353076 1.716484045275347e-008 -0.5000000103041971 0.8660253978353076 1.716484045275347e-008 -0.5000000103041971 0.8660253978353076 1.716484045275347e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1098\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1096\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1094\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1095\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1096\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1099\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1100\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1103\">1437.003345334007 266.477976976365 -219.1075621628607 1336.100550536885 208.2217201416224 -244.5425419990642 1436.998610150335 266.4752436213298 -244.5675615757975 1336.105285720571 208.2244534966553 -219.0825425861262 1336.105285720571 208.2244534966553 -219.0825425861262 1437.003345334007 266.477976976365 -219.1075621628607 1336.100550536885 208.2217201416224 -244.5425419990642 1436.998610150335 266.4752436213298 -244.5675615757975</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1103\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1101\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1104\">0.5000000103042021 -0.8660253978353046 -1.716483588191974e-008 0.5000000103042021 -0.8660253978353046 -1.716483588191974e-008 0.5000000103042021 -0.8660253978353046 -1.716483588191974e-008 0.5000000103042021 -0.8660253978353046 -1.716483588191974e-008 -0.5000000103042021 0.8660253978353046 1.716483588191974e-008 -0.5000000103042021 0.8660253978353046 1.716483588191974e-008 -0.5000000103042021 0.8660253978353046 1.716483588191974e-008 -0.5000000103042021 0.8660253978353046 1.716483588191974e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1104\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1102\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1100\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1101\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1102\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1105\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1106\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1109\">468.7002285054323 207.8022691508159 15.77884266166871 368.0096319280212 265.9360121455907 90.64878420903739 368.0133504235197 265.9338582272585 15.77217015912271 468.6965100099591 207.8044230691799 90.6554567115839 468.6965100099591 207.8044230691799 90.6554567115839 468.7002285054323 207.8022691508159 15.77884266166871 368.0096319280212 265.9360121455907 90.64878420903739 368.0133504235197 265.9338582272585 15.77217015912271</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1109\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1107\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1110\">-0.4999999542799208 -0.8660254301809334 8.14741083123168e-008 -0.4999999542799208 -0.8660254301809334 8.14741083123168e-008 -0.4999999542799208 -0.8660254301809334 8.14741083123168e-008 -0.4999999542799208 -0.8660254301809334 8.14741083123168e-008 0.4999999542799208 0.8660254301809334 -8.14741083123168e-008 0.4999999542799208 0.8660254301809334 -8.14741083123168e-008 0.4999999542799208 0.8660254301809334 -8.14741083123168e-008 0.4999999542799208 0.8660254301809334 -8.14741083123168e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1110\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1108\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1106\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1107\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1108\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1111\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1112\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1115\">468.8665929886696 207.7062430138058 -12.85735935518915 368.1465447353592 265.8569737960511 10.28509984160905 368.1476976861636 265.8563136452185 -12.86403397853422 468.8654400378621 207.7069031646302 10.29177446495322 468.8654400378621 207.7069031646302 10.29177446495322 468.8665929886696 207.7062430138058 -12.85735935518915 368.1465447353592 265.8569737960511 10.28509984160905 368.1476976861636 265.8563136452185 -12.86403397853422</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1115\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1113\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1116\">-0.4999999310907045 -0.8660254435692107 -2.059646289221252e-007 -0.4999999310907045 -0.8660254435692107 -2.059646289221252e-007 -0.4999999310907045 -0.8660254435692107 -2.059646289221252e-007 -0.4999999310907045 -0.8660254435692107 -2.059646289221252e-007 0.4999999310907045 0.8660254435692107 2.059646289221252e-007 0.4999999310907045 0.8660254435692107 2.059646289221252e-007 0.4999999310907045 0.8660254435692107 2.059646289221252e-007 0.4999999310907045 0.8660254435692107 2.059646289221252e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1116\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1114\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1112\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1113\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1114\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1117\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1118\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1121\">576.0561624677273 145.8203274086909 -12.08332722037923 475.487968462865 203.8833852449207 10.51638613336576 475.489094381521 203.8827405720167 -12.08999178215962 576.0550365490765 145.8209720815908 10.52305069514904 576.0550365490765 145.8209720815908 10.52305069514904 576.0561624677273 145.8203274086909 -12.08332722037923 475.487968462865 203.8833852449207 10.51638613336576 475.489094381521 203.8827405720167 -12.08999178215962</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1121\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1119\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1122\">-0.4999999310907042 -0.866025443569211 -2.059646288834191e-007 -0.4999999310907042 -0.866025443569211 -2.059646288834191e-007 -0.4999999310907042 -0.866025443569211 -2.059646288834191e-007 -0.4999999310907042 -0.866025443569211 -2.059646288834191e-007 0.4999999310907042 0.866025443569211 2.059646288834191e-007 0.4999999310907042 0.866025443569211 2.059646288834191e-007 0.4999999310907042 0.866025443569211 2.059646288834191e-007 0.4999999310907042 0.866025443569211 2.059646288834191e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1122\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1120\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1118\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1119\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1120\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1123\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1124\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1127\">683.8878739970245 83.56367130379658 -12.64488300718077 583.1428976679705 141.7287942942571 10.583361939356 583.144054891447 141.7281316969975 -12.65155928222086 683.8867167735508 83.56433390106713 10.59003821439603 683.8867167735508 83.56433390106713 10.59003821439603 683.8878739970245 83.56367130379658 -12.64488300718077 583.1428976679705 141.7287942942571 10.583361939356 583.144054891447 141.7281316969975 -12.65155928222086</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1127\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1125\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1128\">-0.4999999310907038 -0.8660254435692112 -2.059646318501758e-007 -0.4999999310907038 -0.8660254435692112 -2.059646318501758e-007 -0.4999999310907038 -0.8660254435692112 -2.059646318501758e-007 -0.4999999310907038 -0.8660254435692112 -2.059646318501758e-007 0.4999999310907038 0.8660254435692112 2.059646318501758e-007 0.4999999310907038 0.8660254435692112 2.059646318501758e-007 0.4999999310907038 0.8660254435692112 2.059646318501758e-007 0.4999999310907038 0.8660254435692112 2.059646318501758e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1128\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1126\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1124\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1125\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1126\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1129\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1130\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1133\">791.3200958808976 21.5376603195009 -11.98144451254831 690.6441517784643 79.66292781507627 10.10133256590274 690.6452519512819 79.66229788360306 -11.98811621661474 791.3189957080809 21.53829025097639 10.10800426997008 791.3189957080809 21.53829025097639 10.10800426997008 791.3200958808976 21.5376603195009 -11.98144451254831 690.6441517784643 79.66292781507627 10.10133256590274 690.6452519512819 79.66229788360306 -11.98811621661474</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1133\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1131\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1134\">-0.4999999310907048 -0.8660254435692107 -2.059646288102898e-007 -0.4999999310907048 -0.8660254435692107 -2.059646288102898e-007 -0.4999999310907048 -0.8660254435692107 -2.059646288102898e-007 -0.4999999310907048 -0.8660254435692107 -2.059646288102898e-007 0.4999999310907048 0.8660254435692107 2.059646288102898e-007 0.4999999310907048 0.8660254435692107 2.059646288102898e-007 0.4999999310907048 0.8660254435692107 2.059646288102898e-007 0.4999999310907048 0.8660254435692107 2.059646288102898e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1134\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1132\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1130\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1131\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1132\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1135\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1136\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1139\">898.411192669554 -40.29140172494499 -12.62352357441597 798.0374569283414 17.65938549404427 10.42616329670801 798.0386052574387 17.65872798947385 -12.63017524799753 898.4100443404612 -40.29074422037365 10.43281497028767 898.4100443404612 -40.29074422037365 10.43281497028767 898.411192669554 -40.29140172494499 -12.62352357441597 798.0374569283414 17.65938549404427 10.42616329670801 798.0386052574387 17.65872798947385 -12.63017524799753</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1139\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1137\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1140\">-0.4999999310907042 -0.866025443569211 -2.059646342155254e-007 -0.4999999310907042 -0.866025443569211 -2.059646342155254e-007 -0.4999999310907042 -0.866025443569211 -2.059646342155254e-007 -0.4999999310907042 -0.866025443569211 -2.059646342155254e-007 0.4999999310907042 0.866025443569211 2.059646342155254e-007 0.4999999310907042 0.866025443569211 2.059646342155254e-007 0.4999999310907042 0.866025443569211 2.059646342155254e-007 0.4999999310907042 0.866025443569211 2.059646342155254e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1140\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1138\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1136\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1137\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1138\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1141\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1142\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1145\">1006.117934716937 17.7061659717001 10.67399654790046 905.2701147413669 -40.51835014569679 -12.30603623418131 1006.113656344022 17.70369578971622 -12.33104229172139 905.2743931142753 -40.515879963712 10.69900260544154 905.2743931142753 -40.515879963712 10.69900260544154 1006.117934716937 17.7061659717001 10.67399654790046 905.2701147413669 -40.51835014569679 -12.30603623418131 1006.113656344022 17.70369578971622 -12.33104229172139</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1145\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1143\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1146\">0.5000000002908316 -0.8660254036165269 2.342772225646721e-009 0.5000000002908316 -0.8660254036165269 2.342772225646721e-009 0.5000000002908316 -0.8660254036165269 2.342772225646721e-009 0.5000000002908316 -0.8660254036165269 2.342772225646721e-009 -0.5000000002908316 0.8660254036165269 -2.342772225646721e-009 -0.5000000002908316 0.8660254036165269 -2.342772225646721e-009 -0.5000000002908316 0.8660254036165269 -2.342772225646721e-009 -0.5000000002908316 0.8660254036165269 -2.342772225646721e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1146\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1144\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1142\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1143\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1144\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1147\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1148\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1151\">1113.741999586999 79.84294884386691 10.65989400399701 1012.806098910402 21.56757930881031 -12.75161300975665 1113.737640966418 79.84043232969634 -12.77664088866942 1012.810457530985 21.57009582298088 10.68492188290975 1012.810457530985 21.57009582298088 10.68492188290975 1113.741999586999 79.84294884386691 10.65989400399701 1012.806098910402 21.56757930881031 -12.75161300975665 1113.737640966418 79.84043232969634 -12.77664088866942</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1151\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1149\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1152\">0.5000000002908316 -0.8660254036165269 2.342770512336238e-009 0.5000000002908316 -0.8660254036165269 2.342770512336238e-009 0.5000000002908316 -0.8660254036165269 2.342770512336238e-009 0.5000000002908316 -0.8660254036165269 2.342770512336238e-009 -0.5000000002908316 0.8660254036165269 -2.342770512336238e-009 -0.5000000002908316 0.8660254036165269 -2.342770512336238e-009 -0.5000000002908316 0.8660254036165269 -2.342770512336238e-009 -0.5000000002908316 0.8660254036165269 -2.342770512336238e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1152\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1150\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1148\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1149\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1150\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1153\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1154\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1157\">1221.44110420946 142.02305593761 10.75872628284628 1120.168660039976 83.55338292688066 -12.39911459559139 1221.436792749024 142.0205666520551 -12.42422593850196 1120.172971500398 83.55587221243377 10.78383762575777 1120.172971500398 83.55587221243377 10.78383762575777 1221.44110420946 142.02305593761 10.75872628284628 1120.168660039976 83.55338292688066 -12.39911459559139 1221.436792749024 142.0205666520551 -12.42422593850196</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1157\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1155\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1158\">0.5000000002908309 -0.8660254036165276 2.342774268825716e-009 0.5000000002908309 -0.8660254036165276 2.342774268825716e-009 0.5000000002908309 -0.8660254036165276 2.342774268825716e-009 0.5000000002908309 -0.8660254036165276 2.342774268825716e-009 -0.5000000002908309 0.8660254036165276 -2.342774268825716e-009 -0.5000000002908309 0.8660254036165276 -2.342774268825716e-009 -0.5000000002908309 0.8660254036165276 -2.342774268825716e-009 -0.5000000002908309 0.8660254036165276 -2.342774268825716e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1158\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1156\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1154\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1155\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1156\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1159\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1160\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1163\">1328.631039158879 203.909193782984 10.72538972662812 1228.026420370296 145.8250899349405 -12.81505770540309 1328.626656573829 203.9066634325654 -12.84000343078361 1228.030802955339 145.8276202853622 10.75033545200796 1228.030802955339 145.8276202853622 10.75033545200796 1328.631039158879 203.909193782984 10.72538972662812 1228.026420370296 145.8250899349405 -12.81505770540309 1328.626656573829 203.9066634325654 -12.84000343078361</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1163\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1161\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1164\">0.5000000002908306 -0.8660254036165276 2.342774299888108e-009 0.5000000002908306 -0.8660254036165276 2.342774299888108e-009 0.5000000002908306 -0.8660254036165276 2.342774299888108e-009 0.5000000002908306 -0.8660254036165276 2.342774299888108e-009 -0.5000000002908306 0.8660254036165276 -2.342774299888108e-009 -0.5000000002908306 0.8660254036165276 -2.342774299888108e-009 -0.5000000002908306 0.8660254036165276 -2.342774299888108e-009 -0.5000000002908306 0.8660254036165276 -2.342774299888108e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1164\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1162\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1160\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1161\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1162\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1165\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1166\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1169\">1436.131751871105 265.9747592540657 10.89967311502682 1335.378912937416 207.8050804647014 -12.86203678072647 1436.127328129815 265.9722051414983 -12.8870192498805 1335.383336678701 207.8076345772579 10.92465558418087 1335.383336678701 207.8076345772579 10.92465558418087 1436.131751871105 265.9747592540657 10.89967311502682 1335.378912937416 207.8050804647014 -12.86203678072647 1436.127328129815 265.9722051414983 -12.8870192498805</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1169\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1167\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1170\">0.5000000002908309 -0.8660254036165276 2.342773608763434e-009 0.5000000002908309 -0.8660254036165276 2.342773608763434e-009 0.5000000002908309 -0.8660254036165276 2.342773608763434e-009 0.5000000002908309 -0.8660254036165276 2.342773608763434e-009 -0.5000000002908309 0.8660254036165276 -2.342773608763434e-009 -0.5000000002908309 0.8660254036165276 -2.342773608763434e-009 -0.5000000002908309 0.8660254036165276 -2.342773608763434e-009 -0.5000000002908309 0.8660254036165276 -2.342773608763434e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1170\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1168\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1166\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1167\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1168\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1171\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1172\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1175\">421.0924675396276 235.2886123866747 112.2204093201995 368.5661436089566 265.614688024968 137.6588969560303 368.5674107551946 265.6139624886682 112.2169284939939 421.0912003933861 235.289337922979 137.6623777822359 421.0912003933861 235.289337922979 137.6623777822359 421.0924675396276 235.2886123866747 112.2204093201995 368.5661436089566 265.614688024968 137.6588969560303 368.5674107551946 265.6139624886682 112.2169284939939</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1175\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1173\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1176\">-0.4999999310907045 -0.8660254435692107 -2.059646310904753e-007 -0.4999999310907045 -0.8660254435692107 -2.059646310904753e-007 -0.4999999310907045 -0.8660254435692107 -2.059646310904753e-007 -0.4999999310907045 -0.8660254435692107 -2.059646310904753e-007 0.4999999310907045 0.8660254435692107 2.059646310904753e-007 0.4999999310907045 0.8660254435692107 2.059646310904753e-007 0.4999999310907045 0.8660254435692107 2.059646310904753e-007 0.4999999310907045 0.8660254435692107 2.059646310904753e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1176\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1174\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1172\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1173\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1174\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1177\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1178\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1181\">468.679950087829 207.8139716174219 112.0466890845539 424.2692930966142 233.4544655560667 137.7731948596327 424.2705745609185 233.4537318216153 112.0437460831072 468.6786686235263 207.814705351876 137.7761378610796 468.6786686235263 207.814705351876 137.7761378610796 468.679950087829 207.8139716174219 112.0466890845539 424.2692930966142 233.4544655560667 137.7731948596327 424.2705745609185 233.4537318216153 112.0437460831072</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1181\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1179\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1182\">-0.4999999310907037 -0.8660254435692113 -2.059646289290098e-007 -0.4999999310907037 -0.8660254435692113 -2.059646289290098e-007 -0.4999999310907037 -0.8660254435692113 -2.059646289290098e-007 -0.4999999310907037 -0.8660254435692113 -2.059646289290098e-007 0.4999999310907037 0.8660254435692113 2.059646289290098e-007 0.4999999310907037 0.8660254435692113 2.059646289290098e-007 0.4999999310907037 0.8660254435692113 2.059646289290098e-007 0.4999999310907037 0.8660254435692113 2.059646289290098e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1182\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1180\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1178\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1179\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1180\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1183\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1184\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1187\">528.2783920322393 173.4048013663678 112.3583834893471 475.7988984021673 203.703839442248 138.1362443079152 475.8001824508598 203.703104228035 112.3549057676974 528.2771079835462 173.4055365805807 138.1397220295647 528.2771079835462 173.4055365805807 138.1397220295647 528.2783920322393 173.4048013663678 112.3583834893471 475.7988984021673 203.703839442248 138.1362443079152 475.8001824508598 203.703104228035 112.3549057676974</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1187\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1185\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1188\">-0.4999999310907041 -0.8660254435692111 -2.059646318539162e-007 -0.4999999310907041 -0.8660254435692111 -2.059646318539162e-007 -0.4999999310907041 -0.8660254435692111 -2.059646318539162e-007 -0.4999999310907041 -0.8660254435692111 -2.059646318539162e-007 0.4999999310907041 0.8660254435692111 2.059646318539162e-007 0.4999999310907041 0.8660254435692111 2.059646318539162e-007 0.4999999310907041 0.8660254435692111 2.059646318539162e-007 0.4999999310907041 0.8660254435692111 2.059646318539162e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1188\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1186\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1184\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1185\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1186\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1189\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1190\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1193\">576.2328511804325 145.7182867234528 111.6540400935481 531.7747932502483 171.3861475627464 137.5453458772519 531.7760829226323 171.3854091285543 111.6510939513934 576.231561508049 145.7190251576449 137.5482920194067 576.231561508049 145.7190251576449 137.5482920194067 576.2328511804325 145.7182867234528 111.6540400935481 531.7747932502483 171.3861475627464 137.5453458772519 531.7760829226323 171.3854091285543 111.6510939513934</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1193\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1191\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1194\">-0.4999999310907044 -0.8660254435692109 -2.059646330382987e-007 -0.4999999310907044 -0.8660254435692109 -2.059646330382987e-007 -0.4999999310907044 -0.8660254435692109 -2.059646330382987e-007 -0.4999999310907044 -0.8660254435692109 -2.059646330382987e-007 0.4999999310907044 0.8660254435692109 2.059646330382987e-007 0.4999999310907044 0.8660254435692109 2.059646330382987e-007 0.4999999310907044 0.8660254435692109 2.059646330382987e-007 0.4999999310907044 0.8660254435692109 2.059646330382987e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1194\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1192\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1190\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1191\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1192\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1195\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1196\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1199\">635.5061896549561 111.4968149023357 112.4342906047787 583.3221791461228 141.625255805392 137.9791395085125 583.3234515885994 141.6245272366132 112.430832463972 635.5049172124842 111.4975434711168 137.9825976493171 635.5049172124842 111.4975434711168 137.9825976493171 635.5061896549561 111.4968149023357 112.4342906047787 583.3221791461228 141.625255805392 137.9791395085125 583.3234515885994 141.6245272366132 112.430832463972</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1199\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1197\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1200\">-0.4999999310907052 -0.8660254435692103 -2.059646295937342e-007 -0.4999999310907052 -0.8660254435692103 -2.059646295937342e-007 -0.4999999310907052 -0.8660254435692103 -2.059646295937342e-007 -0.4999999310907052 -0.8660254435692103 -2.059646295937342e-007 0.4999999310907052 0.8660254435692103 2.059646295937342e-007 0.4999999310907052 0.8660254435692103 2.059646295937342e-007 0.4999999310907052 0.8660254435692103 2.059646295937342e-007 0.4999999310907052 0.8660254435692103 2.059646295937342e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1200\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1198\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1196\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1197\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1198\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1201\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1202\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1205\">683.7658065320221 83.63411740344918 111.6938946899937 639.0197691374621 109.4682431907058 137.76502390933 639.0210677669658 109.4674996278832 111.6909294640846 683.7645079025139 83.63486096627003 137.7679891352411 683.7645079025139 83.63486096627003 137.7679891352411 683.7658065320221 83.63411740344918 111.6938946899937 639.0197691374621 109.4682431907058 137.76502390933 639.0210677669658 109.4674996278832 111.6909294640846</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1205\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1203\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1206\">-0.499999931090704 -0.8660254435692111 -2.059646274018027e-007 -0.499999931090704 -0.8660254435692111 -2.059646274018027e-007 -0.499999931090704 -0.8660254435692111 -2.059646274018027e-007 -0.499999931090704 -0.8660254435692111 -2.059646274018027e-007 0.499999931090704 0.8660254435692111 2.059646274018027e-007 0.499999931090704 0.8660254435692111 2.059646274018027e-007 0.499999931090704 0.8660254435692111 2.059646274018027e-007 0.499999931090704 0.8660254435692111 2.059646274018027e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1206\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1204\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1202\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1203\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1204\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1207\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1208\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1211\">743.5714873768139 49.10529764741432 112.3926145247994 690.8896008248311 79.52118729977019 138.2125091749904 690.890886967696 79.52045088648765 112.3891233907454 743.5702012339497 49.10603406069413 138.2160003090443 743.5702012339497 49.10603406069413 138.2160003090443 743.5714873768139 49.10529764741432 112.3926145247994 690.8896008248311 79.52118729977019 138.2125091749904 690.890886967696 79.52045088648765 112.3891233907454</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1211\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1209\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1212\">-0.4999999310907033 -0.8660254435692116 -2.059646314786197e-007 -0.4999999310907033 -0.8660254435692116 -2.059646314786197e-007 -0.4999999310907033 -0.8660254435692116 -2.059646314786197e-007 -0.4999999310907033 -0.8660254435692116 -2.059646314786197e-007 0.4999999310907033 0.8660254435692116 2.059646314786197e-007 0.4999999310907033 0.8660254435692116 2.059646314786197e-007 0.4999999310907033 0.8660254435692116 2.059646314786197e-007 0.4999999310907033 0.8660254435692116 2.059646314786197e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1212\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1210\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1208\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1209\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1210\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1213\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1214\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1217\">791.5579825029278 21.40028698295919 111.875207414748 746.6406115243254 47.33333238782507 137.336994570171 746.6418798058952 47.33260620147121 111.8722308325815 791.5567142213512 21.40101316931487 137.3399711523375 791.5567142213512 21.40101316931487 137.3399711523375 791.5579825029278 21.40028698295919 111.875207414748 746.6406115243254 47.33333238782507 137.336994570171 746.6418798058952 47.33260620147121 111.8722308325815</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1217\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1215\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1218\">-0.4999999310907052 -0.8660254435692103 -2.0596463245554e-007 -0.4999999310907052 -0.8660254435692103 -2.0596463245554e-007 -0.4999999310907052 -0.8660254435692103 -2.0596463245554e-007 -0.4999999310907052 -0.8660254435692103 -2.0596463245554e-007 0.4999999310907052 0.8660254435692103 2.0596463245554e-007 0.4999999310907052 0.8660254435692103 2.0596463245554e-007 0.4999999310907052 0.8660254435692103 2.0596463245554e-007 0.4999999310907052 0.8660254435692103 2.0596463245554e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1218\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1216\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1214\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1215\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1216\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1219\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1220\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1223\">850.7794626761589 -12.79124436053553 112.3236301479734 798.4970292747156 17.3940210671276 137.6518977257338 798.4982909306062 17.39329867447486 112.3201654839861 850.7782010202658 -12.79052196788416 137.655362389721 850.7782010202658 -12.79052196788416 137.655362389721 850.7794626761589 -12.79124436053553 112.3236301479734 798.4970292747156 17.3940210671276 137.6518977257338 798.4982909306062 17.39329867447486 112.3201654839861</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1223\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1221\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1224\">-0.4999999310907038 -0.8660254435692112 -2.059646306822732e-007 -0.4999999310907038 -0.8660254435692112 -2.059646306822732e-007 -0.4999999310907038 -0.8660254435692112 -2.059646306822732e-007 -0.4999999310907038 -0.8660254435692112 -2.059646306822732e-007 0.4999999310907038 0.8660254435692112 2.059646306822732e-007 0.4999999310907038 0.8660254435692112 2.059646306822732e-007 0.4999999310907038 0.8660254435692112 2.059646306822732e-007 0.4999999310907038 0.8660254435692112 2.059646306822732e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1224\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1222\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1220\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1221\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1222\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1225\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1226\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1229\">898.9188501439554 -40.58452743561156 111.7734837896209 854.0903667195604 -14.70280143455375 137.9075603012851 854.0916684844484 -14.70354679261345 111.7705131002378 898.9175483790688 -40.58378207755004 137.9105309906702 898.9175483790688 -40.58378207755004 137.9105309906702 898.9188501439554 -40.58452743561156 111.7734837896209 854.0903667195604 -14.70280143455375 137.9075603012851 854.0916684844484 -14.70354679261345 111.7705131002378</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1229\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1227\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1230\">-0.4999999310907062 -0.86602544356921 -2.059646322259603e-007 -0.4999999310907062 -0.86602544356921 -2.059646322259603e-007 -0.4999999310907062 -0.86602544356921 -2.059646322259603e-007 -0.4999999310907062 -0.86602544356921 -2.059646322259603e-007 0.4999999310907062 0.86602544356921 2.059646322259603e-007 0.4999999310907062 0.86602544356921 2.059646322259603e-007 0.4999999310907062 0.86602544356921 2.059646322259603e-007 0.4999999310907062 0.86602544356921 2.059646322259603e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1230\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1228\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1226\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1227\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1228\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1231\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1232\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1235\">958.5340993236445 -9.766373879296225 137.7241789485747 906.3425589597188 -39.89917385023364 112.204403700913 958.5293508647973 -9.769115472361591 112.1914630018803 906.3473074185721 -39.89643225716645 137.7371196476072 906.3473074185721 -39.89643225716645 137.7371196476072 958.5340993236445 -9.766373879296225 137.7241789485747 906.3425589597188 -39.89917385023364 112.204403700913 958.5293508647973 -9.769115472361591 112.1914630018803</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1235\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1233\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1236\">0.5000000002908321 -0.8660254036165267 2.342776911270356e-009 0.5000000002908321 -0.8660254036165267 2.342776911270356e-009 0.5000000002908321 -0.8660254036165267 2.342776911270356e-009 0.5000000002908321 -0.8660254036165267 2.342776911270356e-009 -0.5000000002908321 0.8660254036165267 -2.342776911270356e-009 -0.5000000002908321 0.8660254036165267 -2.342776911270356e-009 -0.5000000002908321 0.8660254036165267 -2.342776911270356e-009 -0.5000000002908321 0.8660254036165267 -2.342776911270356e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1236\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1234\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1232\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1233\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1234\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1237\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1238\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1241\">1006.238553835761 17.77580579592177 137.6295157998047 961.3580812041342 -8.135947248845241 111.9591874741386 1006.2337777149 17.77304823177747 111.9480596990596 961.3628573250074 -8.133189684697754 137.6406435748838 961.3628573250074 -8.133189684697754 137.6406435748838 1006.238553835761 17.77580579592177 137.6295157998047 961.3580812041342 -8.135947248845241 111.9591874741386 1006.2337777149 17.77304823177747 111.9480596990596</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1241\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1239\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1242\">0.5000000002908276 -0.8660254036165292 2.342779185601252e-009 0.5000000002908276 -0.8660254036165292 2.342779185601252e-009 0.5000000002908276 -0.8660254036165292 2.342779185601252e-009 0.5000000002908276 -0.8660254036165292 2.342779185601252e-009 -0.5000000002908276 0.8660254036165292 -2.342779185601252e-009 -0.5000000002908276 0.8660254036165292 -2.342779185601252e-009 -0.5000000002908276 0.8660254036165292 -2.342779185601252e-009 -0.5000000002908276 0.8660254036165292 -2.342779185601252e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1242\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1240\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1238\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1239\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1240\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1243\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1244\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1247\">1065.886423600169 52.2135194874345 137.5338560546522 1013.49905801475 21.96765977284804 112.3010191359409 1065.881728495787 52.21080869935895 112.288029865122 1013.503753119138 21.97037056092222 137.5468453254709 1013.503753119138 21.97037056092222 137.5468453254709 1065.886423600169 52.2135194874345 137.5338560546522 1013.49905801475 21.96765977284804 112.3010191359409 1065.881728495787 52.21080869935895 112.288029865122</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1247\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1245\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1248\">0.5000000002908325 -0.8660254036165264 2.342777343758602e-009 0.5000000002908325 -0.8660254036165264 2.342777343758602e-009 0.5000000002908325 -0.8660254036165264 2.342777343758602e-009 0.5000000002908325 -0.8660254036165264 2.342777343758602e-009 -0.5000000002908325 0.8660254036165264 -2.342777343758602e-009 -0.5000000002908325 0.8660254036165264 -2.342777343758602e-009 -0.5000000002908325 0.8660254036165264 -2.342777343758602e-009 -0.5000000002908325 0.8660254036165264 -2.342777343758602e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1248\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1246\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1244\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1245\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1246\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1249\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1250\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1253\">1113.954086784551 79.9653977885605 137.8213361805597 1069.107766101823 54.0733623805254 112.0879285186782 1113.949298934065 79.9626334521472 112.0768092151272 1069.112553952312 54.07612671694324 137.8324554841087 1069.112553952312 54.07612671694324 137.8324554841087 1113.954086784551 79.9653977885605 137.8213361805597 1069.107766101823 54.0733623805254 112.0879285186782 1113.949298934065 79.9626334521472 112.0768092151272</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1253\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1251\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1254\">0.5000000002908341 -0.8660254036165256 2.342787741826643e-009 0.5000000002908341 -0.8660254036165256 2.342787741826643e-009 0.5000000002908341 -0.8660254036165256 2.342787741826643e-009 0.5000000002908341 -0.8660254036165256 2.342787741826643e-009 -0.5000000002908341 0.8660254036165256 -2.342787741826643e-009 -0.5000000002908341 0.8660254036165256 -2.342787741826643e-009 -0.5000000002908341 0.8660254036165256 -2.342787741826643e-009 -0.5000000002908341 0.8660254036165256 -2.342787741826643e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1254\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1252\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1250\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1251\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1252\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1255\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1256\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1259\">1173.712367650562 114.4668573597674 137.8778302358753 1120.806393488932 83.92157884213975 112.0079565469164 1173.707554049056 114.4640781556218 111.9948387067083 1120.811207090437 83.92435804628349 137.8909480760852 1120.811207090437 83.92435804628349 137.8909480760852 1173.712367650562 114.4668573597674 137.8778302358753 1120.806393488932 83.92157884213975 112.0079565469164 1173.707554049056 114.4640781556218 111.9948387067083</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1259\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1257\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1260\">0.5000000002908318 -0.8660254036165269 2.342778970820802e-009 0.5000000002908318 -0.8660254036165269 2.342778970820802e-009 0.5000000002908318 -0.8660254036165269 2.342778970820802e-009 0.5000000002908318 -0.8660254036165269 2.342778970820802e-009 -0.5000000002908318 0.8660254036165269 -2.342778970820802e-009 -0.5000000002908318 0.8660254036165269 -2.342778970820802e-009 -0.5000000002908318 0.8660254036165269 -2.342778970820802e-009 -0.5000000002908318 0.8660254036165269 -2.342778970820802e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1260\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1258\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1256\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1257\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1258\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1261\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1262\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1265\">1221.105178078889 141.8291092382119 137.4268937870986 1176.586604616938 116.1262987767846 111.8084442268453 1221.100411622895 141.8263572542287 111.7974061890923 1176.591371072927 116.129050760766 137.4379318248516 1176.591371072927 116.129050760766 137.4379318248516 1221.105178078889 141.8291092382119 137.4268937870986 1176.586604616938 116.1262987767846 111.8084442268453 1221.100411622895 141.8263572542287 111.7974061890923</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1265\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1263\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1266\">0.500000000290833 -0.8660254036165263 2.342785742340996e-009 0.500000000290833 -0.8660254036165263 2.342785742340996e-009 0.500000000290833 -0.8660254036165263 2.342785742340996e-009 0.500000000290833 -0.8660254036165263 2.342785742340996e-009 -0.500000000290833 0.8660254036165263 -2.342785742340996e-009 -0.500000000290833 0.8660254036165263 -2.342785742340996e-009 -0.500000000290833 0.8660254036165263 -2.342785742340996e-009 -0.500000000290833 0.8660254036165263 -2.342785742340996e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1266\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1264\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1262\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1263\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1264\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1267\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1268\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1271\">1280.953319453076 176.3824497989781 137.8251324474134 1228.297012662064 145.9813168058709 112.2472047294694 1280.948560157856 176.379701949365 112.2341487855271 1228.301771957267 145.9840646554858 137.8381883913577 1228.301771957267 145.9840646554858 137.8381883913577 1280.953319453076 176.3824497989781 137.8251324474134 1228.297012662064 145.9813168058709 112.2472047294694 1280.948560157856 176.379701949365 112.2341487855271</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1271\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1269\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1272\">0.5000000002908304 -0.8660254036165278 2.342781505875217e-009 0.5000000002908304 -0.8660254036165278 2.342781505875217e-009 0.5000000002908304 -0.8660254036165278 2.342781505875217e-009 0.5000000002908304 -0.8660254036165278 2.342781505875217e-009 -0.5000000002908304 0.8660254036165278 -2.342781505875217e-009 -0.5000000002908304 0.8660254036165278 -2.342781505875217e-009 -0.5000000002908304 0.8660254036165278 -2.342781505875217e-009 -0.5000000002908304 0.8660254036165278 -2.342781505875217e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1272\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1270\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1268\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1269\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1270\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1273\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1274\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1277\">1328.861751265707 204.0423958234087 137.6451434720124 1284.106874297356 178.2031554680361 111.7263194298755 1328.856928936521 204.0396115802178 111.7152228100674 1284.111696626547 178.2059397112344 137.6562400918206 1284.111696626547 178.2059397112344 137.6562400918206 1328.861751265707 204.0423958234087 137.6451434720124 1284.106874297356 178.2031554680361 111.7263194298755 1328.856928936521 204.0396115802178 111.7152228100674</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1277\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1275\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1278\">0.5000000002908325 -0.8660254036165267 2.34278407985249e-009 0.5000000002908325 -0.8660254036165267 2.34278407985249e-009 0.5000000002908325 -0.8660254036165267 2.34278407985249e-009 0.5000000002908325 -0.8660254036165267 2.34278407985249e-009 -0.5000000002908325 0.8660254036165267 -2.34278407985249e-009 -0.5000000002908325 0.8660254036165267 -2.34278407985249e-009 -0.5000000002908325 0.8660254036165267 -2.34278407985249e-009 -0.5000000002908325 0.8660254036165267 -2.34278407985249e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1278\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1276\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1274\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1275\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1276\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1279\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1280\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1283\">1388.402154296925 238.4180635688117 138.0133057265755 1335.953677875488 208.1369214948941 112.16745245125 1388.397345183718 238.4152869560453 112.1544480551178 1335.958486988679 208.1396981076578 138.0263101227077 1335.958486988679 208.1396981076578 138.0263101227077 1388.402154296925 238.4180635688117 138.0133057265755 1335.953677875488 208.1369214948941 112.16745245125 1388.397345183718 238.4152869560453 112.1544480551178</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1283\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1281\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1284\">0.5000000002908327 -0.8660254036165263 2.342775188093632e-009 0.5000000002908327 -0.8660254036165263 2.342775188093632e-009 0.5000000002908327 -0.8660254036165263 2.342775188093632e-009 0.5000000002908327 -0.8660254036165263 2.342775188093632e-009 -0.5000000002908327 0.8660254036165263 -2.342775188093632e-009 -0.5000000002908327 0.8660254036165263 -2.342775188093632e-009 -0.5000000002908327 0.8660254036165263 -2.342775188093632e-009 -0.5000000002908327 0.8660254036165263 -2.342775188093632e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1284\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1282\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1280\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1281\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1282\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1285\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1286\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1289\">1436.173094883212 265.9986289958169 137.5277465265295 1391.259391383619 240.0676901001507 111.7398673832551 1436.168296899253 265.9958588086906 111.728731373377 1391.264189367582 240.0704602872702 137.5388825364075 1391.264189367582 240.0704602872702 137.5388825364075 1436.173094883212 265.9986289958169 137.5277465265295 1391.259391383619 240.0676901001507 111.7398673832551 1436.168296899253 265.9958588086906 111.728731373377</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1289\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1287\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1290\">0.5000000002908347 -0.8660254036165251 2.342779939636759e-009 0.5000000002908347 -0.8660254036165251 2.342779939636759e-009 0.5000000002908347 -0.8660254036165251 2.342779939636759e-009 0.5000000002908347 -0.8660254036165251 2.342779939636759e-009 -0.5000000002908347 0.8660254036165251 -2.342779939636759e-009 -0.5000000002908347 0.8660254036165251 -2.342779939636759e-009 -0.5000000002908347 0.8660254036165251 -2.342779939636759e-009 -0.5000000002908347 0.8660254036165251 -2.342779939636759e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1290\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1288\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1286\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1287\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1288\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1291\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1297\">\r\n\t\t\t\t\t<float_array count=\"426\" id=\"ID1301\">675.4554789910513 780.076901964278 -11.82727846264803 681.8793550940023 783.7857286899105 -11.59270324863019 782.8543339258812 842.0836619663905 -11.61774189906058 675.4600281631214 780.0795281077558 12.63295719381716 681.8837417438602 783.7882610126551 11.9936741602661 566.6452648188121 717.2552932902686 -11.47689870048689 573.213764993656 721.0476184507261 12.65831108317497 573.2092158215922 721.0449923072602 -11.8019245732892 566.6497531585405 717.2578843164743 12.65625034934345 463.4364396842085 657.6676478858308 12.68184403706607 456.6663858014575 653.7589556317798 -11.30559907004832 463.4319513444783 657.665056859621 -11.451305012766 456.6708763085453 653.7615479091696 12.83920352282206 786.0057410808059 843.9031284656501 12.71714307596801 786.0011731740766 843.9004957586378 -14.84215163798524 349.2373698599943 591.7347756420277 -14.73054647771369 782.8587205757416 842.0861942891395 11.96863550983579 675.4164153192384 780.0543481585778 17.27133098223959 681.436395319491 783.5299853531355 17.44467816468443 783.0454479277506 842.1940013080757 17.41948228370222 675.4299467722098 780.0621595880768 90.02798284790873 681.449641611731 783.5376321652118 88.66806234917084 566.6395027168982 717.2519661564943 17.5532402347593 573.4790680202932 721.2007902100886 90.05326349113005 573.4655365673334 721.1929787805989 17.29661162546103 566.6530420777802 717.2597821510663 90.35241178448729 456.7108124741362 653.7846050014309 17.73367088383145 463.1636233477008 657.5101362710411 90.37807393771385 463.1500839868239 657.5023202764687 17.57890238798581 456.7244294789773 653.7924658182678 90.95032273889217 727.1936492719825 809.9479479527101 110.2922624179104 730.013770859698 811.5761459647101 110.5593832018147 782.7414531221444 842.0184885917677 110.5463083785323 727.1981869629302 809.9505674683735 134.6907657923325 730.0182374746377 811.5787244496555 134.5757212307181 681.8915890821478 783.792790380149 110.3034959181498 675.0153063671691 779.8227665509296 111.2143165446665 681.8961267730969 783.7954098958116 134.70199929257 619.0122441035211 747.4893823343368 111.0091502091674 675.019789984114 779.8253548507744 135.3220718942985 621.8366771903533 749.1200695922425 111.2275031887431 619.0168699530349 747.4920527421232 135.8816693206912 621.8411608073078 749.1226578920905 135.3352585383716 573.5645961831394 721.250169643366 111.0204198106287 566.4177336509852 717.1239264799319 111.8096183846365 573.569222032654 721.2528400511615 135.8929389221541 509.7839255080198 684.4263809479371 111.5502025354438 566.4223005499533 717.1265628567794 136.3651689995318 512.7042485656936 686.1124303075631 111.8229376563214 509.7885727162205 684.4290636856435 136.5375641640044 512.7088154646581 686.1150666844123 136.3784882712168 463.6018948877634 657.7631721924831 111.5616542409479 456.4897047348944 653.6569471342277 112.5812067761386 463.6065420959575 657.7658549301909 136.5490158695085 399.3896190112163 620.6901961058834 112.3270592157347 456.4942788827775 653.6595876957226 137.1757337680862 402.2317829091933 622.3311202520863 112.5946610511818 399.3942904483705 620.6928928304719 137.4446964318427 402.2363570570825 622.3337608135917 137.189188043131 352.7062106789233 593.7375184122111 -11.27982018389565 349.2374044263819 591.7348066628747 139.7111128697222 352.1794356537045 593.4333843161362 17.75959141021821 352.7107011860105 593.7401106896 12.86498240897305 352.1930526585508 593.4412451329745 90.97624326527881 352.724148477245 593.7478731762126 112.3386307992851 352.7288199143989 593.7505699008011 137.4562680153912 787.9864964432853 845.0467124001923 127.739294749114 787.5289386099749 844.7825469902011 12.71675291180844 783.0586942199897 842.2016481201465 88.64286646819028 782.7459197370869 842.0210670767099 134.5626464074358 787.9877299022538 845.0474237400265 139.7111128697319 349.2374044263819 591.7348066628747 139.7111128697222 352.7288199143989 593.7505699008011 137.4562680153912 787.9877299022538 845.0474237400265 139.7111128697319 399.3942904483705 620.6928928304719 137.4446964318427 402.2363570570825 622.3337608135917 137.189188043131 456.4942788827775 653.6595876957226 137.1757337680862 463.6065420959575 657.7658549301909 136.5490158695085 509.7885727162205 684.4290636856435 136.5375641640044 512.7088154646581 686.1150666844123 136.3784882712168 566.4223005499533 717.1265628567794 136.3651689995318 573.569222032654 721.2528400511615 135.8929389221541 619.0168699530349 747.4920527421232 135.8816693206912 621.8411608073078 749.1226578920905 135.3352585383716 675.019789984114 779.8253548507744 135.3220718942985 681.8961267730969 783.7954098958116 134.70199929257 727.1981869629302 809.9505674683735 134.6907657923325 730.0182374746377 811.5787244496555 134.5757212307181 782.7459197370869 842.0210670767099 134.5626464074358 787.9864964432853 845.0467124001923 127.739294749114 782.7414531221444 842.0184885917677 110.5463083785323 727.1936492719825 809.9479479527101 110.2922624179104 352.1930526585508 593.4412451329745 90.97624326527881 456.7244294789773 653.7924658182678 90.95032273889217 463.1636233477008 657.5101362710411 90.37807393771385 566.6530420777802 717.2597821510663 90.35241178448729 573.4790680202932 721.2007902100886 90.05326349113005 675.4299467722098 780.0621595880768 90.02798284790873 681.449641611731 783.5376321652118 88.66806234917084 783.0586942199897 842.2016481201465 88.64286646819028 783.0454479277506 842.1940013080757 17.41948228370222 675.4164153192384 780.0543481585778 17.27133098223959 352.7107011860105 593.7401106896 12.86498240897305 456.6708763085453 653.7615479091696 12.83920352282206 786.0057410808059 843.9031284656501 12.71714307596801 787.5289386099749 844.7825469902011 12.71675291180844 352.724148477245 593.7478731762126 112.3386307992851 399.3896190112163 620.6901961058834 112.3270592157347 463.6018948877634 657.7631721924831 111.5616542409479 509.7839255080198 684.4263809479371 111.5502025354438 573.5645961831394 721.250169643366 111.0204198106287 619.0122441035211 747.4893823343368 111.0091502091674 681.8915890821478 783.792790380149 110.3034959181498 352.1794356537045 593.4333843161362 17.75959141021821 456.7108124741362 653.7846050014309 17.73367088383145 463.1500839868239 657.5023202764687 17.57890238798581 566.6395027168982 717.2519661564943 17.5532402347593 573.4655365673334 721.1929787805989 17.29661162546103 352.7062106789233 593.7375184122111 -11.27982018389565 456.6663858014575 653.7589556317798 -11.30559907004832 463.4319513444783 657.665056859621 -11.451305012766 566.6452648188121 717.2552932902686 -11.47689870048689 573.2092158215922 721.0449923072602 -11.8019245732892 349.2373698599943 591.7347756420277 -14.73054647771369 675.4554789910513 780.076901964278 -11.82727846264803 402.2317829091933 622.3311202520863 112.5946610511818 456.4897047348944 653.6569471342277 112.5812067761386 512.7042485656936 686.1124303075631 111.8229376563214 566.4177336509852 717.1239264799319 111.8096183846365 621.8366771903533 749.1200695922425 111.2275031887431 675.0153063671691 779.8227665509296 111.2143165446665 730.013770859698 811.5761459647101 110.5593832018147 681.436395319491 783.5299853531355 17.44467816468443 463.4364396842085 657.6676478858308 12.68184403706607 573.213764993656 721.0476184507261 12.65831108317497 675.4600281631214 780.0795281077558 12.63295719381716 681.8837417438602 783.7882610126551 11.9936741602661 782.8587205757416 842.0861942891395 11.96863550983579 782.8543339258812 842.0836619663905 -11.61774189906058 786.0011731740766 843.9004957586378 -14.84215163798524 566.6497531585405 717.2578843164743 12.65625034934345 681.8793550940023 783.7857286899105 -11.59270324863019</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"142\" source=\"#ID1301\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1298\">\r\n\t\t\t\t\t<float_array count=\"426\" id=\"ID1302\">-0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 -0.5000000132904524 0.8660253961111921 1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008 0.5000000132904524 -0.8660253961111921 -1.141257335615891e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"142\" source=\"#ID1302\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1300\">\r\n\t\t\t\t\t<float_array count=\"142\" id=\"ID1303\">0.2564835463190547 0.01950701711115734 0.2418422452910223 0.02102478003104781 0.01170003239749251 0.02086277342115742 0.2564731781623386 0.1777711322974389 0.2418322475436354 0.1736348040510747 0.5044838307968211 0.02177406571266809 0.489512902836061 0.177935178585549 0.4895232709927546 0.01967106339927414 0.5044736012849609 0.1779218450992712 0.7397174274075258 0.1780874429454515 0.755147736663393 0.02288241907540158 0.7397276569193931 0.02193966355883721 0.7551375022118261 0.1791055999300821 0.004517343269180518 0.1783158369493851 0.00452774992862981 0 0.9999999999999998 0.0007221145449573807 0.01169003465009766 0.1734727974411848 0.2565725806342156 0.207782622531544 0.2428518397672133 0.2089042240907022 0.0112644456642137 0.2087412001580634 0.2565417406873454 0.6785371685284436 0.2428216497388542 0.6697381276083472 0.5044969641594135 0.2096066490470476 0.4889082250762331 0.6787007408949144 0.4889390650230743 0.2079461948980156 0.504466106189384 0.6806363085085141 0.7550464797506069 0.2107740824859132 0.7403392315233417 0.6808023493443922 0.7403700894933627 0.2097726898829254 0.7550154448198601 0.6845049485939199 0.1385618891236691 0.8096523515984838 0.1321342668554384 0.8113806928584053 0.01195731196019612 0.811296095335836 0.1385515471339271 0.9675170427917504 0.1321240868571927 0.9667726744215264 0.2418143631656109 0.8097250352799004 0.2574867895429931 0.8156182826947503 0.2418040211758672 0.9675897264731552 0.3851289918686007 0.8142908029022489 0.257476570794968 0.9716017582067036 0.3786915428291928 0.8157036037270724 0.3851184489539881 0.9752224997560661 0.3786813240811482 0.9716870792390036 0.4887132895253292 0.8143637201680029 0.5050024215306745 0.8194700411281043 0.4887027466107066 0.9752954170218312 0.6340822201206937 0.8177915528087603 0.5049920129720482 0.9783508689974451 0.6274262186213866 0.8195562202957027 0.6340716285268575 0.9794663107515984 0.6274158100627651 0.978437048165044 0.7393403231261775 0.817865648335248 0.7555504298335338 0.8244624196065518 0.7393297315323508 0.9795404062780861 0.8856929684755523 0.8228180184920659 0.7555400047536869 0.9835954348184014 0.879215107364804 0.8245494722811492 0.8856823216607641 0.9853356935221767 0.8792046822849362 0.9836824874930095 0.9920938101588355 0.02304921520380932 0.9999999102970278 0.9999999999999369 0.993294436388614 0.2109417950636405 0.9920835757072706 0.179272396058479 0.9932634014578565 0.6846726611716464 0.992052927929344 0.8228928896608322 0.9920422811145562 0.9854105646909316 2.810512560902367e-006 0.9225392089985901 0.001045670850090996 0.1783133124853383 0.01123425563586222 0.669575103675719 0.01194713196194952 0.9666880768989574 -4.440892098500626e-016 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"71\" source=\"#ID1303\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1299\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1297\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1298\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"101\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1299\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1300\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 5 5 6 6 7 7 6 6 5 5 8 8 6 6 8 8 9 9 10 10 9 9 11 11 9 9 10 10 12 12 9 9 12 12 13 13 14 14 2 2 13 13 2 2 14 14 15 15 2 2 15 15 0 0 13 13 2 2 16 16 13 13 16 16 4 4 13 13 4 4 3 3 13 13 3 3 6 6 13 13 6 6 9 9 17 17 18 18 19 19 18 18 17 17 20 20 18 18 20 20 21 21 22 22 23 23 24 24 23 23 22 22 25 25 26 26 27 27 28 28 27 27 26 26 29 29 30 30 31 31 32 32 31 31 30 30 33 33 31 31 33 33 34 34 35 35 36 36 37 37 36 36 35 35 38 38 37 37 36 36 39 39 38 38 40 40 36 36 40 40 38 38 41 41 40 40 41 41 42 42 43 43 44 44 45 45 44 44 43 43 46 46 45 45 44 44 47 47 46 46 48 48 44 44 48 48 46 46 49 49 48 48 49 49 50 50 51 51 52 52 53 53 52 52 51 51 54 54 53 53 52 52 55 55 54 54 56 56 52 52 56 56 54 54 57 57 56 56 57 57 58 58 15 15 7 7 0 0 7 7 15 15 59 59 59 59 15 15 60 60 7 7 59 59 11 11 7 7 11 11 5 5 11 11 59 59 10 10 59 59 60 60 61 61 59 59 61 61 62 62 62 62 61 61 24 24 62 62 24 24 17 17 24 24 61 61 28 28 24 24 28 28 22 22 28 28 61 61 26 26 61 61 60 60 63 63 63 63 60 60 64 64 63 63 64 64 51 51 63 63 51 51 35 35 63 63 35 35 30 30 35 35 51 51 43 43 35 35 43 43 38 38 43 43 51 51 46 46 51 51 64 64 54 54 64 64 60 60 65 65 13 13 66 66 67 67 66 66 13 13 19 19 19 19 13 13 12 12 19 19 12 12 62 62 19 19 62 62 17 17 66 66 19 19 68 68 66 66 68 68 32 32 32 32 68 68 21 21 32 32 21 21 20 20 32 32 20 20 23 23 32 32 23 23 25 25 32 32 25 25 27 27 32 32 27 27 29 29 32 32 29 29 63 63 32 32 63 63 30 30 66 66 32 32 69 69 66 66 69 69 70 70 70 70 69 69 34 34 70 70 34 34 33 33 70 70 33 33 37 37 70 70 37 37 39 39 70 70 39 39 42 42 70 70 42 42 41 41 70 70 41 41 45 45 70 70 45 45 47 47 70 70 47 47 50 50 70 70 50 50 49 49 70 70 49 49 53 53 70 70 53 53 55 55 70 70 55 55 58 58 70 70 58 58 57 57 70 70 57 57 65 65 70 70 65 65 60 60</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"101\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1299\" />\r\n\t\t\t\t\t<p>71 72 73 72 74 73 74 75 73 75 76 73 76 77 73 77 78 73 78 79 73 79 80 73 80 81 73 81 82 73 82 83 73 83 84 73 84 85 73 85 86 73 86 87 73 87 88 73 73 88 89 88 90 89 91 92 90 92 93 90 93 94 90 94 95 90 95 96 90 96 97 90 97 98 90 98 99 90 90 99 89 99 100 89 101 102 100 102 103 100 103 104 100 100 104 89 105 89 104 72 71 106 107 106 108 109 108 110 111 110 112 110 108 112 91 112 92 112 108 92 108 106 92 106 71 92 92 71 113 114 113 115 116 115 117 115 113 117 101 117 102 117 113 102 102 113 118 113 71 118 119 118 120 121 120 122 120 118 122 71 123 118 118 123 122 124 122 123 75 74 125 74 107 125 126 125 107 76 126 77 107 108 126 77 126 108 79 78 127 78 109 127 128 127 109 80 128 81 109 110 128 81 128 110 83 82 129 82 111 129 130 129 111 84 130 85 111 112 130 85 130 112 87 86 131 86 91 131 90 131 91 93 114 94 115 94 114 95 116 96 117 96 116 98 97 132 97 101 132 100 132 101 133 134 104 134 135 104 135 136 104 136 137 104 137 138 104 124 123 138 123 139 138 104 138 139 104 103 133 103 119 133 120 133 119 133 140 134 140 121 134 122 134 121 136 135 141 135 124 141 138 141 124</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1304\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1305\">\r\n\t\t\t\t\t<float_array count=\"420\" id=\"ID1309\">1342.152772411936 656.7211496776799 90.93038319508753 1347.9658441787 653.3622712218712 16.00637267738466 1342.15652751538 656.7190009072788 15.6756982800801 1347.962093359875 653.364417540522 91.1751914507999 1234.247147592291 719.070996568787 90.68209098854942 1240.928247117849 715.2105557967766 15.66897700303503 1234.250899334437 719.0688497217966 15.49476827815516 1240.92449201442 715.2127045671846 90.92366191804251 1132.622930367059 777.7913519891556 15.48802046289939 1127.106907909682 780.978610755034 15.71018910813496 1132.619178624899 777.7934988361476 90.67534317329205 1025.951917953553 839.427817084847 15.70347269737363 1127.103179771134 780.9807440954116 90.42448032324609 1025.039522134782 839.9550144427983 12.67814051552398 1026.123976034279 839.3284065924731 -12.31913556626773 1025.037959287489 839.9559256190437 -14.88114336892562 1026.122850133269 839.329050863078 10.2446439240029 1126.981780794793 781.0509130174214 10.25134067725168 1134.013050371967 776.9881165607815 10.55256951535705 1235.316325639735 718.4532282613518 10.5592957718535 1241.320411828378 714.9839572633732 10.57717655894749 1342.390078075312 656.5840525358444 10.5838873044529 1349.207201470909 652.6449937258326 10.6707745911246 1449.587767125964 594.6432639444456 10.67743958226197 1349.208338326045 652.6443431869752 -12.11253245783834 1342.391201440141 656.5834097165189 -11.92906541424634 1241.321535193201 714.9833144440408 -11.93577615975173 1235.317431577365 718.4525954143192 -11.60440497892071 1134.014156309606 776.9874837137411 -11.61113123541716 1126.9829066958 781.0502687468104 -12.31243881302066 1341.525489517955 657.0835993246806 112.0790350932091 1348.862990585725 652.8438567871035 112.0777930226885 1288.798334761272 687.5503152908805 112.0755341563807 1348.861727072607 652.8445798030325 137.3994071540706 1341.524217981801 657.0843269316174 137.5614366259006 1393.525637911274 627.0369538892041 137.4023727138676 1241.271755001116 715.0120438104946 111.8588656161202 1234.102889986059 719.1543452544411 112.1934423025721 1241.270473133571 715.0127773293011 137.5483143925639 1181.44902567076 749.5787126609484 112.1899462320259 1234.101612259723 719.1550764035642 137.7998989531671 1286.061125302959 689.1319179527068 137.5512883676337 1288.797063225118 687.5510428978196 137.5579356890721 1396.918772896926 625.0763382437426 137.7229828763682 1449.180107243605 594.878781844146 137.7264528840134 1134.056850283603 776.9627799157418 111.8149695960786 1126.808326872112 781.1511094019004 112.2878397423452 1134.055566117582 776.9635147498086 137.5504813645722 1074.193562155075 811.5528843442396 112.2843462679038 1126.807042641266 781.1518442730728 138.024650723435 1178.675093628492 751.1815343358621 137.5534439774393 1181.447747944425 749.5794438100688 137.7964028826207 1023.074420426695 841.0904936699403 12.67829097341655 1023.07440275878 841.0904630690682 139.7111128565707 1025.948189815008 839.4299504252251 90.41776391248317 1026.314341671743 839.2183752737469 111.5666694026881 1449.660250708097 594.6013591408805 91.18194392637122 1026.313036514921 839.21912211931 137.7228504618269 1071.017205963482 813.388234043158 137.7258186946838 1074.192277924228 811.5536192154088 138.0211572489935 1454.673780839942 591.7044360177847 139.7111128095839 1454.67381811884 591.7044576928788 -14.91371889401026 1449.588903981098 594.6426134055855 -12.10586746670023 1449.664001526928 594.599212822227 16.01312515295598 1449.181381944604 594.8780524262156 112.1806261545765 1286.062407170499 689.1311844339048 111.8618395911884 1071.0185111203 813.3874871975972 111.5696376355468 1178.676377794509 751.1807995017925 111.8179322089458 1393.526901424374 627.0362308732715 112.0807585824853 1396.920047597921 625.0756088258149 112.1771561469313 1288.797063225118 687.5510428978196 137.5579356890721 1286.061125302959 689.1319179527068 137.5512883676337 1288.798334761272 687.5503152908805 112.0755341563807 1286.062407170499 689.1311844339048 111.8618395911884 1181.447747944425 749.5794438100688 137.7964028826207 1178.675093628492 751.1815343358621 137.5534439774393 1181.44902567076 749.5787126609484 112.1899462320259 1178.676377794509 751.1807995017925 111.8179322089458 1241.271755001116 715.0120438104946 111.8588656161202 1341.524217981801 657.0843269316174 137.5614366259006 1393.525637911274 627.0369538892041 137.4023727138676 1396.918772896926 625.0763382437426 137.7229828763682 1396.920047597921 625.0756088258149 112.1771561469313 1393.526901424374 627.0362308732715 112.0807585824853 1074.192277924228 811.5536192154088 138.0211572489935 1071.017205963482 813.388234043158 137.7258186946838 1074.193562155075 811.5528843442396 112.2843462679038 1071.0185111203 813.3874871975972 111.5696376355468 1134.056850283603 776.9627799157418 111.8149695960786 1126.807042641266 781.1518442730728 138.024650723435 1234.101612259723 719.1550764035642 137.7998989531671 1454.673780839942 591.7044360177847 139.7111128095839 1449.180107243605 594.878781844146 137.7264528840134 1449.181381944604 594.8780524262156 112.1806261545765 1348.862990585725 652.8438567871035 112.0777930226885 1026.314341671743 839.2183752737469 111.5666694026881 1449.660250708097 594.6013591408805 91.18194392637122 1449.664001526928 594.599212822227 16.01312515295598 1347.9658441787 653.3622712218712 16.00637267738466 1342.15652751538 656.7190009072788 15.6756982800801 1240.928247117849 715.2105557967766 15.66897700303503 1234.250899334437 719.0688497217966 15.49476827815516 1132.622930367059 777.7913519891556 15.48802046289939 1023.074420426695 841.0904936699403 12.67829097341655 1025.039522134782 839.9550144427983 12.67814051552398 1449.587767125964 594.6432639444456 10.67743958226197 1449.588903981098 594.6426134055855 -12.10586746670023 1349.208338326045 652.6443431869752 -12.11253245783834 1126.9829066958 781.0502687468104 -12.31243881302066 1026.123976034279 839.3284065924731 -12.31913556626773 1025.037959287489 839.9559256190437 -14.88114336892562 1454.67381811884 591.7044576928788 -14.91371889401026 1023.07440275878 841.0904630690682 139.7111128565707 1026.313036514921 839.21912211931 137.7228504618269 1347.962093359875 653.364417540522 91.1751914507999 1342.152772411936 656.7211496776799 90.93038319508753 1240.92449201442 715.2127045671846 90.92366191804251 1234.247147592291 719.070996568787 90.68209098854942 1132.619178624899 777.7934988361476 90.67534317329205 1127.103179771134 780.9807440954116 90.42448032324609 1025.948189815008 839.4299504252251 90.41776391248317 1025.951917953553 839.427817084847 15.70347269737363 1134.055566117582 776.9635147498086 137.5504813645722 1126.808326872112 781.1511094019004 112.2878397423452 1241.270473133571 715.0127773293011 137.5483143925639 1234.102889986059 719.1543452544411 112.1934423025721 1348.861727072607 652.8445798030325 137.3994071540706 1341.525489517955 657.0835993246806 112.0790350932091 1134.013050371967 776.9881165607815 10.55256951535705 1126.981780794793 781.0509130174214 10.25134067725168 1134.014156309606 776.9874837137411 -11.61113123541716 1241.321535193201 714.9833144440408 -11.93577615975173 1235.316325639735 718.4532282613518 10.5592957718535 1235.317431577365 718.4525954143192 -11.60440497892071 1241.320411828378 714.9839572633732 10.57717655894749 1342.390078075312 656.5840525358444 10.5838873044529 1342.391201440141 656.5834097165189 -11.92906541424634 1349.207201470909 652.6449937258326 10.6707745911246 1026.122850133269 839.329050863078 10.2446439240029 1127.106907909682 780.978610755034 15.71018910813496</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"140\" source=\"#ID1309\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1306\">\r\n\t\t\t\t\t<float_array count=\"420\" id=\"ID1310\">0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 0.5003039153239278 0.8658498670736687 2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007 -0.5003039153239278 -0.8658498670736687 -2.415847151076037e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"140\" source=\"#ID1310\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1308\">\r\n\t\t\t\t\t<float_array count=\"140\" id=\"ID1311\">-129.9687815163971 69.69089695714428 -130.0229155745389 69.21517162841623 -129.9688656370772 69.21306855461828 -130.0228315498413 69.69245482526748 -128.9648227053237 69.68925612347373 -129.0270329925109 69.21296555101874 -128.9649067507053 69.21185543617445 -129.0269488718309 69.69079395354474 -128.019355385034 69.21175202587671 -127.9680339092505 69.21315939482474 -128.0192713396523 69.68915271317597 -127.026883162371 69.213056465801 -127.9679503926297 69.68755657630918 -127.0183961763726 69.19384662430012 -127.0285023130864 69.03512747038232 -127.0183996452631 69.01885939606426 -127.0284770909959 69.17839582265783 -127.966873288383 69.17849845043006 -128.032292352074 69.18041528834854 -128.9748227524127 69.18051836825818 -129.0306850390628 69.18063548015979 -129.9710419301704 69.18073832236344 -130.0344687078696 69.18129407444731 -130.9684141749139 69.18139621546507 -130.034494175351 69.03663183549487 -129.971067095446 69.03779269385049 -129.0307102043385 69.03768985164685 -128.9748475272898 69.03979030945669 -128.0323171269512 69.03968722954704 -127.9668985104734 69.03523009815456 -129.9629314252605 69.82517960650242 -130.0311998787245 69.82517609277703 -129.4723555169281 69.82512595463052 -130.0311715738899 69.98595527142143 -129.9629029406958 69.98697970214623 -130.4467266845433 69.98600071863804 -129.0301661405868 69.82372189778913 -128.9634664669815 69.82584201476591 -129.0301374245819 69.98683663655237 -128.4735724563358 69.8257884374698 -128.9634378437463 69.98842979637078 -129.4468717424906 69.98688221273307 -129.4723270323634 69.98692605027432 -130.4782963613992 69.98803844981723 -130.9645382548998 69.98809162769926 -128.0326336880216 69.82337928603342 -127.9651927785929 69.82637744762425 -128.0326049205269 69.98678650101833 -127.475662552434 69.82632391011347 -127.9651640096459 69.98979291193851 -128.4477470866277 69.98683190307322 -128.4735438331006 69.98837621907467 -127.0001127481295 69.19384640852644 -127.0000295825265 70.00043925654575 -127.0267996457502 69.68745364728544 -127.0301925177695 69.82173849885953 -130.9690359514833 69.69255830698455 -127.0301632800451 69.98781674668935 -127.4460929586836 69.98786223487061 -127.4756337834869 69.98973937442771 -131.0156503536591 70.00069646775144 -131.0157517559319 69.01890859963953 -130.9684396423953 69.03673397651264 -130.969119976181 69.21527511013331 -130.9645668103621 69.8258888147964 -129.4469004584955 69.82376747396981 -127.446122196408 69.8217839870408 -128.4477758541225 69.82342468808831 -130.4467549893778 69.82522153999364 -130.4783249168615 69.82583563691435</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"70\" source=\"#ID1311\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1307\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1305\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1306\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"100\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1307\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1308\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 10 10 9 9 12 12 13 13 14 14 15 15 14 14 13 13 16 16 16 16 13 13 17 17 17 17 13 13 18 18 18 18 13 13 19 19 19 19 13 13 20 20 20 20 13 13 21 21 21 21 13 13 22 22 22 22 13 13 23 23 24 24 25 25 22 22 25 25 24 24 26 26 22 22 25 25 21 21 26 26 27 27 20 20 27 27 26 26 28 28 20 20 27 27 19 19 29 29 26 26 24 24 26 26 29 29 28 28 28 28 29 29 17 17 28 28 17 17 18 18 30 30 31 31 32 32 31 31 30 30 33 33 33 33 30 30 34 34 33 33 34 34 35 35 36 36 37 37 38 38 37 37 36 36 39 39 38 38 37 37 40 40 38 38 40 40 41 41 41 41 40 40 42 42 42 42 40 40 34 34 34 34 40 40 43 43 43 43 40 40 44 44 45 45 46 46 47 47 46 46 45 45 48 48 47 47 46 46 49 49 47 47 49 49 50 50 50 50 49 49 51 51 51 51 49 49 40 40 52 52 11 11 8 8 11 11 52 52 53 53 11 11 53 53 54 54 54 54 53 53 55 55 54 54 55 55 12 12 12 12 55 55 10 10 10 10 55 55 4 4 4 4 55 55 7 7 7 7 55 55 0 0 0 0 55 55 3 3 3 3 55 55 56 56 55 55 53 53 57 57 57 57 53 53 58 58 58 58 53 53 59 59 59 59 53 53 49 49 49 49 53 53 60 60 61 61 62 62 60 60 62 62 61 61 15 15 62 62 15 15 29 29 29 29 15 15 14 14 62 62 29 29 24 24 60 60 62 62 23 23 60 60 23 23 63 63 63 63 23 23 13 13 63 63 13 13 52 52 63 63 52 52 2 2 2 2 52 52 6 6 6 6 52 52 8 8 2 2 6 6 5 5 63 63 2 2 1 1 60 60 63 63 56 56 60 60 56 56 64 64 64 64 56 56 65 65 65 65 56 56 66 66 66 66 56 56 55 55 65 65 66 66 67 67 67 67 66 66 45 45 65 65 67 67 36 36 64 64 65 65 68 68 68 68 65 65 31 31 31 31 65 65 32 32 64 64 68 68 69 69 60 60 64 64 44 44 60 60 44 44 40 40 60 60 40 40 49 49 66 66 48 48 45 45 48 48 66 66 58 58 48 48 58 58 59 59 35 35 69 69 68 68 69 69 35 35 43 43 43 43 35 35 34 34 67 67 39 39 36 36 39 39 67 67 50 50 39 39 50 50 51 51 41 41 32 32 65 65 32 32 41 41 42 42</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"100\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1307\" />\r\n\t\t\t\t\t<p>70 71 72 73 72 71 74 75 76 75 77 76 78 76 77 79 80 81 81 80 82 83 82 80 84 85 86 85 87 86 88 86 87 89 90 91 90 92 91 92 93 91 82 83 93 72 73 94 94 73 83 83 73 93 78 77 73 88 87 77 77 87 73 95 96 87 87 96 73 73 96 93 93 96 91 96 97 91 98 99 97 100 101 99 102 103 101 101 103 99 99 103 97 103 104 97 104 105 97 97 105 91 105 106 91 107 108 106 109 110 108 108 110 106 110 111 106 91 106 111 91 112 89 89 112 84 84 112 85 85 112 113 113 112 95 96 95 114 114 95 115 115 95 116 116 95 117 117 95 118 118 95 119 119 95 120 95 112 120 120 112 121 112 103 121 102 121 103 90 89 74 74 89 75 75 89 122 89 123 122 86 88 123 122 123 88 92 90 81 81 90 79 79 90 70 70 90 71 71 90 124 90 125 124 76 78 125 124 125 78 80 79 126 79 127 126 126 127 94 72 94 127 128 129 130 129 108 130 130 108 131 107 131 108 132 133 134 130 131 133 134 133 131 135 136 137 131 107 136 137 136 107 105 104 137 137 104 135 135 104 134 134 104 132 132 104 128 128 104 129 129 104 138 138 104 109 110 109 104 119 139 118 121 102 139 118 139 102 116 117 100 101 100 117 114 115 98 99 98 115</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1312\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1313\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1316\">1396.918772896926 625.0763382437426 137.7229828763682 1449.181381944604 594.8780524262156 112.1806261545765 1396.920047597921 625.0756088258149 112.1771561469313 1449.180107243605 594.878781844146 137.7264528840134 1449.180107243605 594.878781844146 137.7264528840134 1396.918772896926 625.0763382437426 137.7229828763682 1449.181381944604 594.8780524262156 112.1806261545765 1396.920047597921 625.0756088258149 112.1771561469313</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1316\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1314\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1317\">0.5003039153239283 0.8658498670736685 2.415847154403454e-007 0.5003039153239283 0.8658498670736685 2.415847154403454e-007 0.5003039153239283 0.8658498670736685 2.415847154403454e-007 0.5003039153239283 0.8658498670736685 2.415847154403454e-007 -0.5003039153239283 -0.8658498670736685 -2.415847154403454e-007 -0.5003039153239283 -0.8658498670736685 -2.415847154403454e-007 -0.5003039153239283 -0.8658498670736685 -2.415847154403454e-007 -0.5003039153239283 -0.8658498670736685 -2.415847154403454e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1317\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1315\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1313\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1314\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1315\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1318\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1319\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1322\">1348.861727072607 652.8445798030325 137.3994071540706 1393.526901424374 627.0362308732715 112.0807585824853 1348.862990585725 652.8438567871035 112.0777930226885 1393.525637911274 627.0369538892041 137.4023727138676 1393.525637911274 627.0369538892041 137.4023727138676 1348.861727072607 652.8445798030325 137.3994071540706 1393.526901424374 627.0362308732715 112.0807585824853 1348.862990585725 652.8438567871035 112.0777930226885</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1322\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1320\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1323\">0.5003039153239278 0.8658498670736687 2.415847133997684e-007 0.5003039153239278 0.8658498670736687 2.415847133997684e-007 0.5003039153239278 0.8658498670736687 2.415847133997684e-007 0.5003039153239278 0.8658498670736687 2.415847133997684e-007 -0.5003039153239278 -0.8658498670736687 -2.415847133997684e-007 -0.5003039153239278 -0.8658498670736687 -2.415847133997684e-007 -0.5003039153239278 -0.8658498670736687 -2.415847133997684e-007 -0.5003039153239278 -0.8658498670736687 -2.415847133997684e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1323\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1321\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1319\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1320\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1321\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1324\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1325\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1328\">1288.797063225118 687.5510428978196 137.5579356890721 1341.525489517955 657.0835993246806 112.0790350932091 1288.798334761272 687.5503152908805 112.0755341563807 1341.524217981801 657.0843269316174 137.5614366259006 1341.524217981801 657.0843269316174 137.5614366259006 1288.797063225118 687.5510428978196 137.5579356890721 1341.525489517955 657.0835993246806 112.0790350932091 1288.798334761272 687.5503152908805 112.0755341563807</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1328\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1326\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1329\">0.500303915323928 0.8658498670736685 2.415847147142552e-007 0.500303915323928 0.8658498670736685 2.415847147142552e-007 0.500303915323928 0.8658498670736685 2.415847147142552e-007 0.500303915323928 0.8658498670736685 2.415847147142552e-007 -0.500303915323928 -0.8658498670736685 -2.415847147142552e-007 -0.500303915323928 -0.8658498670736685 -2.415847147142552e-007 -0.500303915323928 -0.8658498670736685 -2.415847147142552e-007 -0.500303915323928 -0.8658498670736685 -2.415847147142552e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1329\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1327\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1325\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1326\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1327\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1330\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1331\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1334\">1241.270473133571 715.0127773293011 137.5483143925639 1286.062407170499 689.1311844339048 111.8618395911884 1241.271755001116 715.0120438104946 111.8588656161202 1286.061125302959 689.1319179527068 137.5512883676337 1286.061125302959 689.1319179527068 137.5512883676337 1241.270473133571 715.0127773293011 137.5483143925639 1286.062407170499 689.1311844339048 111.8618395911884 1241.271755001116 715.0120438104946 111.8588656161202</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1334\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1332\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1335\">0.5003039153239286 0.8658498670736684 2.415847144627203e-007 0.5003039153239286 0.8658498670736684 2.415847144627203e-007 0.5003039153239286 0.8658498670736684 2.415847144627203e-007 0.5003039153239286 0.8658498670736684 2.415847144627203e-007 -0.5003039153239286 -0.8658498670736684 -2.415847144627203e-007 -0.5003039153239286 -0.8658498670736684 -2.415847144627203e-007 -0.5003039153239286 -0.8658498670736684 -2.415847144627203e-007 -0.5003039153239286 -0.8658498670736684 -2.415847144627203e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1335\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1333\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1331\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1332\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1333\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1336\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1337\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1340\">1181.447747944425 749.5794438100688 137.7964028826207 1234.102889986059 719.1543452544411 112.1934423025721 1181.44902567076 749.5787126609484 112.1899462320259 1234.101612259723 719.1550764035642 137.7998989531671 1234.101612259723 719.1550764035642 137.7998989531671 1181.447747944425 749.5794438100688 137.7964028826207 1234.102889986059 719.1543452544411 112.1934423025721 1181.44902567076 749.5787126609484 112.1899462320259</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1340\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1338\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1341\">0.5003039153239278 0.8658498670736687 2.415847158648105e-007 0.5003039153239278 0.8658498670736687 2.415847158648105e-007 0.5003039153239278 0.8658498670736687 2.415847158648105e-007 0.5003039153239278 0.8658498670736687 2.415847158648105e-007 -0.5003039153239278 -0.8658498670736687 -2.415847158648105e-007 -0.5003039153239278 -0.8658498670736687 -2.415847158648105e-007 -0.5003039153239278 -0.8658498670736687 -2.415847158648105e-007 -0.5003039153239278 -0.8658498670736687 -2.415847158648105e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1341\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1339\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1337\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1338\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1339\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1342\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1343\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1346\">1134.055566117582 776.9635147498086 137.5504813645722 1178.676377794509 751.1807995017925 111.8179322089458 1134.056850283603 776.9627799157418 111.8149695960786 1178.675093628492 751.1815343358621 137.5534439774393 1178.675093628492 751.1815343358621 137.5534439774393 1134.055566117582 776.9635147498086 137.5504813645722 1178.676377794509 751.1807995017925 111.8179322089458 1134.056850283603 776.9627799157418 111.8149695960786</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1346\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1344\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1347\">0.5003039153239267 0.8658498670736693 2.415847159034624e-007 0.5003039153239267 0.8658498670736693 2.415847159034624e-007 0.5003039153239267 0.8658498670736693 2.415847159034624e-007 0.5003039153239267 0.8658498670736693 2.415847159034624e-007 -0.5003039153239267 -0.8658498670736693 -2.415847159034624e-007 -0.5003039153239267 -0.8658498670736693 -2.415847159034624e-007 -0.5003039153239267 -0.8658498670736693 -2.415847159034624e-007 -0.5003039153239267 -0.8658498670736693 -2.415847159034624e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1347\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1345\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1343\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1344\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1345\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1348\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1349\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1352\">1074.192277924228 811.5536192154088 138.0211572489935 1126.808326872112 781.1511094019004 112.2878397423452 1074.193562155075 811.5528843442396 112.2843462679038 1126.807042641266 781.1518442730728 138.024650723435 1126.807042641266 781.1518442730728 138.024650723435 1074.192277924228 811.5536192154088 138.0211572489935 1126.808326872112 781.1511094019004 112.2878397423452 1074.193562155075 811.5528843442396 112.2843462679038</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1352\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1350\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1353\">0.5003039153239282 0.8658498670736684 2.415847154344365e-007 0.5003039153239282 0.8658498670736684 2.415847154344365e-007 0.5003039153239282 0.8658498670736684 2.415847154344365e-007 0.5003039153239282 0.8658498670736684 2.415847154344365e-007 -0.5003039153239282 -0.8658498670736684 -2.415847154344365e-007 -0.5003039153239282 -0.8658498670736684 -2.415847154344365e-007 -0.5003039153239282 -0.8658498670736684 -2.415847154344365e-007 -0.5003039153239282 -0.8658498670736684 -2.415847154344365e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1353\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1351\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1349\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1350\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1351\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1354\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1355\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1358\">1026.313036514921 839.21912211931 137.7228504618269 1071.0185111203 813.3874871975972 111.5696376355468 1026.314341671743 839.2183752737469 111.5666694026881 1071.017205963482 813.388234043158 137.7258186946838 1071.017205963482 813.388234043158 137.7258186946838 1026.313036514921 839.21912211931 137.7228504618269 1071.0185111203 813.3874871975972 111.5696376355468 1026.314341671743 839.2183752737469 111.5666694026881</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1358\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1356\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1359\">0.5003039153239282 0.8658498670736684 2.415847164173741e-007 0.5003039153239282 0.8658498670736684 2.415847164173741e-007 0.5003039153239282 0.8658498670736684 2.415847164173741e-007 0.5003039153239282 0.8658498670736684 2.415847164173741e-007 -0.5003039153239282 -0.8658498670736684 -2.415847164173741e-007 -0.5003039153239282 -0.8658498670736684 -2.415847164173741e-007 -0.5003039153239282 -0.8658498670736684 -2.415847164173741e-007 -0.5003039153239282 -0.8658498670736684 -2.415847164173741e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1359\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1357\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1355\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1356\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1357\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1360\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1361\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1364\">1347.962093359875 653.364417540522 91.1751914507999 1449.664001526928 594.599212822227 16.01312515295598 1347.9658441787 653.3622712218712 16.00637267738466 1449.660250708097 594.6013591408805 91.18194392637122 1449.660250708097 594.6013591408805 91.18194392637122 1347.962093359875 653.364417540522 91.1751914507999 1449.664001526928 594.599212822227 16.01312515295598 1347.9658441787 653.3622712218712 16.00637267738466</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1364\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1362\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1365\">0.5003039153239279 0.8658498670736687 2.415847149764695e-007 0.5003039153239279 0.8658498670736687 2.415847149764695e-007 0.5003039153239279 0.8658498670736687 2.415847149764695e-007 0.5003039153239279 0.8658498670736687 2.415847149764695e-007 -0.5003039153239279 -0.8658498670736687 -2.415847149764695e-007 -0.5003039153239279 -0.8658498670736687 -2.415847149764695e-007 -0.5003039153239279 -0.8658498670736687 -2.415847149764695e-007 -0.5003039153239279 -0.8658498670736687 -2.415847149764695e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1365\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1363\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1361\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1362\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1363\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1366\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1367\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1370\">1349.207201470909 652.6449937258326 10.6707745911246 1449.588903981098 594.6426134055855 -12.10586746670023 1349.208338326045 652.6443431869752 -12.11253245783834 1449.587767125964 594.6432639444456 10.67743958226197 1449.587767125964 594.6432639444456 10.67743958226197 1349.207201470909 652.6449937258326 10.6707745911246 1449.588903981098 594.6426134055855 -12.10586746670023 1349.208338326045 652.6443431869752 -12.11253245783834</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1370\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1368\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1371\">0.5003039153239275 0.865849867073669 2.415847140586923e-007 0.5003039153239275 0.865849867073669 2.415847140586923e-007 0.5003039153239275 0.865849867073669 2.415847140586923e-007 0.5003039153239275 0.865849867073669 2.415847140586923e-007 -0.5003039153239275 -0.865849867073669 -2.415847140586923e-007 -0.5003039153239275 -0.865849867073669 -2.415847140586923e-007 -0.5003039153239275 -0.865849867073669 -2.415847140586923e-007 -0.5003039153239275 -0.865849867073669 -2.415847140586923e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1371\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1369\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1367\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1368\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1369\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1372\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1373\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1376\">1240.92449201442 715.2127045671846 90.92366191804251 1342.15652751538 656.7190009072788 15.6756982800801 1240.928247117849 715.2105557967766 15.66897700303503 1342.152772411936 656.7211496776799 90.93038319508753 1342.152772411936 656.7211496776799 90.93038319508753 1240.92449201442 715.2127045671846 90.92366191804251 1342.15652751538 656.7190009072788 15.6756982800801 1240.928247117849 715.2105557967766 15.66897700303503</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1376\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1374\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1377\">0.5003039153239279 0.8658498670736687 2.415847150754572e-007 0.5003039153239279 0.8658498670736687 2.415847150754572e-007 0.5003039153239279 0.8658498670736687 2.415847150754572e-007 0.5003039153239279 0.8658498670736687 2.415847150754572e-007 -0.5003039153239279 -0.8658498670736687 -2.415847150754572e-007 -0.5003039153239279 -0.8658498670736687 -2.415847150754572e-007 -0.5003039153239279 -0.8658498670736687 -2.415847150754572e-007 -0.5003039153239279 -0.8658498670736687 -2.415847150754572e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1377\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1375\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1373\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1374\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1375\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1378\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1379\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1382\">1241.320411828378 714.9839572633732 10.57717655894749 1342.391201440141 656.5834097165189 -11.92906541424634 1241.321535193201 714.9833144440408 -11.93577615975173 1342.390078075312 656.5840525358444 10.5838873044529 1342.390078075312 656.5840525358444 10.5838873044529 1241.320411828378 714.9839572633732 10.57717655894749 1342.391201440141 656.5834097165189 -11.92906541424634 1241.321535193201 714.9833144440408 -11.93577615975173</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1382\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1380\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1383\">0.5003039153239279 0.8658498670736687 2.415847156268282e-007 0.5003039153239279 0.8658498670736687 2.415847156268282e-007 0.5003039153239279 0.8658498670736687 2.415847156268282e-007 0.5003039153239279 0.8658498670736687 2.415847156268282e-007 -0.5003039153239279 -0.8658498670736687 -2.415847156268282e-007 -0.5003039153239279 -0.8658498670736687 -2.415847156268282e-007 -0.5003039153239279 -0.8658498670736687 -2.415847156268282e-007 -0.5003039153239279 -0.8658498670736687 -2.415847156268282e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1383\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1381\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1379\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1380\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1381\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1384\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1385\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1388\">1132.619178624899 777.7934988361476 90.67534317329205 1234.250899334437 719.0688497217966 15.49476827815516 1132.622930367059 777.7913519891556 15.48802046289939 1234.247147592291 719.070996568787 90.68209098854942 1234.247147592291 719.070996568787 90.68209098854942 1132.619178624899 777.7934988361476 90.67534317329205 1234.250899334437 719.0688497217966 15.49476827815516 1132.622930367059 777.7913519891556 15.48802046289939</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1388\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1386\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1389\">0.5003039153239279 0.8658498670736687 2.415847146996727e-007 0.5003039153239279 0.8658498670736687 2.415847146996727e-007 0.5003039153239279 0.8658498670736687 2.415847146996727e-007 0.5003039153239279 0.8658498670736687 2.415847146996727e-007 -0.5003039153239279 -0.8658498670736687 -2.415847146996727e-007 -0.5003039153239279 -0.8658498670736687 -2.415847146996727e-007 -0.5003039153239279 -0.8658498670736687 -2.415847146996727e-007 -0.5003039153239279 -0.8658498670736687 -2.415847146996727e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1389\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1387\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1385\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1386\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1387\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1390\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1391\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1394\">1134.013050371967 776.9881165607815 10.55256951535705 1235.317431577365 718.4525954143192 -11.60440497892071 1134.014156309606 776.9874837137411 -11.61113123541716 1235.316325639735 718.4532282613518 10.5592957718535 1235.316325639735 718.4532282613518 10.5592957718535 1134.013050371967 776.9881165607815 10.55256951535705 1235.317431577365 718.4525954143192 -11.60440497892071 1134.014156309606 776.9874837137411 -11.61113123541716</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1394\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1392\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1395\">0.5003039153239274 0.865849867073669 2.415847155236121e-007 0.5003039153239274 0.865849867073669 2.415847155236121e-007 0.5003039153239274 0.865849867073669 2.415847155236121e-007 0.5003039153239274 0.865849867073669 2.415847155236121e-007 -0.5003039153239274 -0.865849867073669 -2.415847155236121e-007 -0.5003039153239274 -0.865849867073669 -2.415847155236121e-007 -0.5003039153239274 -0.865849867073669 -2.415847155236121e-007 -0.5003039153239274 -0.865849867073669 -2.415847155236121e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1395\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1393\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1391\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1392\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1393\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1396\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1397\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1400\">1025.948189815008 839.4299504252251 90.41776391248317 1127.106907909682 780.978610755034 15.71018910813496 1025.951917953553 839.427817084847 15.70347269737363 1127.103179771134 780.9807440954116 90.42448032324609 1127.103179771134 780.9807440954116 90.42448032324609 1025.948189815008 839.4299504252251 90.41776391248317 1127.106907909682 780.978610755034 15.71018910813496 1025.951917953553 839.427817084847 15.70347269737363</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1400\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1398\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1401\">0.5003039153239279 0.8658498670736687 2.415847153179932e-007 0.5003039153239279 0.8658498670736687 2.415847153179932e-007 0.5003039153239279 0.8658498670736687 2.415847153179932e-007 0.5003039153239279 0.8658498670736687 2.415847153179932e-007 -0.5003039153239279 -0.8658498670736687 -2.415847153179932e-007 -0.5003039153239279 -0.8658498670736687 -2.415847153179932e-007 -0.5003039153239279 -0.8658498670736687 -2.415847153179932e-007 -0.5003039153239279 -0.8658498670736687 -2.415847153179932e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1401\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1399\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1397\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1398\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1399\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1402\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1403\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1406\">1026.122850133269 839.329050863078 10.2446439240029 1126.9829066958 781.0502687468104 -12.31243881302066 1026.123976034279 839.3284065924731 -12.31913556626773 1126.981780794793 781.0509130174214 10.25134067725168 1126.981780794793 781.0509130174214 10.25134067725168 1026.122850133269 839.329050863078 10.2446439240029 1126.9829066958 781.0502687468104 -12.31243881302066 1026.123976034279 839.3284065924731 -12.31913556626773</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1406\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1404\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1407\">0.5003039153239274 0.8658498670736688 2.415847150673256e-007 0.5003039153239274 0.8658498670736688 2.415847150673256e-007 0.5003039153239274 0.8658498670736688 2.415847150673256e-007 0.5003039153239274 0.8658498670736688 2.415847150673256e-007 -0.5003039153239274 -0.8658498670736688 -2.415847150673256e-007 -0.5003039153239274 -0.8658498670736688 -2.415847150673256e-007 -0.5003039153239274 -0.8658498670736688 -2.415847150673256e-007 -0.5003039153239274 -0.8658498670736688 -2.415847150673256e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1407\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1405\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1403\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1404\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1405\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1408\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1409\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1412\">730.013770859698 811.5761459647101 110.5593832018147 782.7459197370869 842.0210670767099 134.5626464074358 782.7414531221444 842.0184885917677 110.5463083785323 730.0182374746377 811.5787244496555 134.5757212307181 730.0182374746377 811.5787244496555 134.5757212307181 730.013770859698 811.5761459647101 110.5593832018147 782.7459197370869 842.0210670767099 134.5626464074358 782.7414531221444 842.0184885917677 110.5463083785323</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1412\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1410\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1413\">-0.5000000132904527 0.8660253961111922 1.141256802397132e-008 -0.5000000132904527 0.8660253961111922 1.141256802397132e-008 -0.5000000132904527 0.8660253961111922 1.141256802397132e-008 -0.5000000132904527 0.8660253961111922 1.141256802397132e-008 0.5000000132904527 -0.8660253961111922 -1.141256802397132e-008 0.5000000132904527 -0.8660253961111922 -1.141256802397132e-008 0.5000000132904527 -0.8660253961111922 -1.141256802397132e-008 0.5000000132904527 -0.8660253961111922 -1.141256802397132e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1413\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1411\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1409\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1410\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1411\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1414\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1415\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1418\">681.8915890821478 783.792790380149 110.3034959181498 727.1981869629302 809.9505674683735 134.6907657923325 727.1936492719825 809.9479479527101 110.2922624179104 681.8961267730969 783.7954098958116 134.70199929257 681.8961267730969 783.7954098958116 134.70199929257 681.8915890821478 783.792790380149 110.3034959181498 727.1981869629302 809.9505674683735 134.6907657923325 727.1936492719825 809.9479479527101 110.2922624179104</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1418\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1416\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1419\">-0.5000000132904527 0.8660253961111922 1.14125683944161e-008 -0.5000000132904527 0.8660253961111922 1.14125683944161e-008 -0.5000000132904527 0.8660253961111922 1.14125683944161e-008 -0.5000000132904527 0.8660253961111922 1.14125683944161e-008 0.5000000132904527 -0.8660253961111922 -1.14125683944161e-008 0.5000000132904527 -0.8660253961111922 -1.14125683944161e-008 0.5000000132904527 -0.8660253961111922 -1.14125683944161e-008 0.5000000132904527 -0.8660253961111922 -1.14125683944161e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1419\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1417\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1415\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1416\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1417\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1420\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1421\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1424\">621.8366771903533 749.1200695922425 111.2275031887431 675.019789984114 779.8253548507744 135.3220718942985 675.0153063671691 779.8227665509296 111.2143165446665 621.8411608073078 749.1226578920905 135.3352585383716 621.8411608073078 749.1226578920905 135.3352585383716 621.8366771903533 749.1200695922425 111.2275031887431 675.019789984114 779.8253548507744 135.3220718942985 675.0153063671691 779.8227665509296 111.2143165446665</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1424\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1422\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1425\">-0.5000000132904521 0.8660253961111923 1.141257704897862e-008 -0.5000000132904521 0.8660253961111923 1.141257704897862e-008 -0.5000000132904521 0.8660253961111923 1.141257704897862e-008 -0.5000000132904521 0.8660253961111923 1.141257704897862e-008 0.5000000132904521 -0.8660253961111923 -1.141257704897862e-008 0.5000000132904521 -0.8660253961111923 -1.141257704897862e-008 0.5000000132904521 -0.8660253961111923 -1.141257704897862e-008 0.5000000132904521 -0.8660253961111923 -1.141257704897862e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1425\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1423\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1421\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1422\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1423\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1426\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1427\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1430\">573.5645961831394 721.250169643366 111.0204198106287 619.0168699530349 747.4920527421232 135.8816693206912 619.0122441035211 747.4893823343368 111.0091502091674 573.569222032654 721.2528400511615 135.8929389221541 573.569222032654 721.2528400511615 135.8929389221541 573.5645961831394 721.250169643366 111.0204198106287 619.0168699530349 747.4920527421232 135.8816693206912 619.0122441035211 747.4893823343368 111.0091502091674</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1430\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1428\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1431\">-0.5000000132904524 0.8660253961111921 1.141257126869026e-008 -0.5000000132904524 0.8660253961111921 1.141257126869026e-008 -0.5000000132904524 0.8660253961111921 1.141257126869026e-008 -0.5000000132904524 0.8660253961111921 1.141257126869026e-008 0.5000000132904524 -0.8660253961111921 -1.141257126869026e-008 0.5000000132904524 -0.8660253961111921 -1.141257126869026e-008 0.5000000132904524 -0.8660253961111921 -1.141257126869026e-008 0.5000000132904524 -0.8660253961111921 -1.141257126869026e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1431\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1429\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1427\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1428\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1429\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1432\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1433\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1436\">512.7042485656936 686.1124303075631 111.8229376563214 566.4223005499533 717.1265628567794 136.3651689995318 566.4177336509852 717.1239264799319 111.8096183846365 512.7088154646581 686.1150666844123 136.3784882712168 512.7088154646581 686.1150666844123 136.3784882712168 512.7042485656936 686.1124303075631 111.8229376563214 566.4223005499533 717.1265628567794 136.3651689995318 566.4177336509852 717.1239264799319 111.8096183846365</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1436\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1434\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1437\">-0.5000000132904526 0.8660253961111921 1.141257305553676e-008 -0.5000000132904526 0.8660253961111921 1.141257305553676e-008 -0.5000000132904526 0.8660253961111921 1.141257305553676e-008 -0.5000000132904526 0.8660253961111921 1.141257305553676e-008 0.5000000132904526 -0.8660253961111921 -1.141257305553676e-008 0.5000000132904526 -0.8660253961111921 -1.141257305553676e-008 0.5000000132904526 -0.8660253961111921 -1.141257305553676e-008 0.5000000132904526 -0.8660253961111921 -1.141257305553676e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1437\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1435\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1433\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1434\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1435\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1438\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1439\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1442\">463.6018948877634 657.7631721924831 111.5616542409479 509.7885727162205 684.4290636856435 136.5375641640044 509.7839255080198 684.4263809479371 111.5502025354438 463.6065420959575 657.7658549301909 136.5490158695085 463.6065420959575 657.7658549301909 136.5490158695085 463.6018948877634 657.7631721924831 111.5616542409479 509.7885727162205 684.4290636856435 136.5375641640044 509.7839255080198 684.4263809479371 111.5502025354438</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1442\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1440\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1443\">-0.5000000132904513 0.8660253961111929 1.141257002502906e-008 -0.5000000132904513 0.8660253961111929 1.141257002502906e-008 -0.5000000132904513 0.8660253961111929 1.141257002502906e-008 -0.5000000132904513 0.8660253961111929 1.141257002502906e-008 0.5000000132904513 -0.8660253961111929 -1.141257002502906e-008 0.5000000132904513 -0.8660253961111929 -1.141257002502906e-008 0.5000000132904513 -0.8660253961111929 -1.141257002502906e-008 0.5000000132904513 -0.8660253961111929 -1.141257002502906e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1443\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1441\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1439\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1440\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1441\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1444\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1445\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1448\">402.2317829091933 622.3311202520863 112.5946610511818 456.4942788827775 653.6595876957226 137.1757337680862 456.4897047348944 653.6569471342277 112.5812067761386 402.2363570570825 622.3337608135917 137.189188043131 402.2363570570825 622.3337608135917 137.189188043131 402.2317829091933 622.3311202520863 112.5946610511818 456.4942788827775 653.6595876957226 137.1757337680862 456.4897047348944 653.6569471342277 112.5812067761386</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1448\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1446\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1449\">-0.5000000132904524 0.8660253961111921 1.141257577837499e-008 -0.5000000132904524 0.8660253961111921 1.141257577837499e-008 -0.5000000132904524 0.8660253961111921 1.141257577837499e-008 -0.5000000132904524 0.8660253961111921 1.141257577837499e-008 0.5000000132904524 -0.8660253961111921 -1.141257577837499e-008 0.5000000132904524 -0.8660253961111921 -1.141257577837499e-008 0.5000000132904524 -0.8660253961111921 -1.141257577837499e-008 0.5000000132904524 -0.8660253961111921 -1.141257577837499e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1449\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1447\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1445\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1446\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1447\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1450\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1451\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1454\">352.724148477245 593.7478731762126 112.3386307992851 399.3942904483705 620.6928928304719 137.4446964318427 399.3896190112163 620.6901961058834 112.3270592157347 352.7288199143989 593.7505699008011 137.4562680153912 352.7288199143989 593.7505699008011 137.4562680153912 352.724148477245 593.7478731762126 112.3386307992851 399.3942904483705 620.6928928304719 137.4446964318427 399.3896190112163 620.6901961058834 112.3270592157347</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1454\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1452\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1455\">-0.5000000132904531 0.8660253961111919 1.141257381808325e-008 -0.5000000132904531 0.8660253961111919 1.141257381808325e-008 -0.5000000132904531 0.8660253961111919 1.141257381808325e-008 -0.5000000132904531 0.8660253961111919 1.141257381808325e-008 0.5000000132904531 -0.8660253961111919 -1.141257381808325e-008 0.5000000132904531 -0.8660253961111919 -1.141257381808325e-008 0.5000000132904531 -0.8660253961111919 -1.141257381808325e-008 0.5000000132904531 -0.8660253961111919 -1.141257381808325e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1455\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1453\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1451\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1452\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1453\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1456\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1457\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1460\">681.436395319491 783.5299853531355 17.44467816468443 783.0586942199897 842.2016481201465 88.64286646819028 783.0454479277506 842.1940013080757 17.41948228370222 681.449641611731 783.5376321652118 88.66806234917084 681.449641611731 783.5376321652118 88.66806234917084 681.436395319491 783.5299853531355 17.44467816468443 783.0586942199897 842.2016481201465 88.64286646819028 783.0454479277506 842.1940013080757 17.41948228370222</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1460\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1458\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1461\">-0.5000000132904524 0.8660253961111921 1.141257138963301e-008 -0.5000000132904524 0.8660253961111921 1.141257138963301e-008 -0.5000000132904524 0.8660253961111921 1.141257138963301e-008 -0.5000000132904524 0.8660253961111921 1.141257138963301e-008 0.5000000132904524 -0.8660253961111921 -1.141257138963301e-008 0.5000000132904524 -0.8660253961111921 -1.141257138963301e-008 0.5000000132904524 -0.8660253961111921 -1.141257138963301e-008 0.5000000132904524 -0.8660253961111921 -1.141257138963301e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1461\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1459\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1457\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1458\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1459\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1462\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1463\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1466\">681.8793550940023 783.7857286899105 -11.59270324863019 782.8587205757416 842.0861942891395 11.96863550983579 782.8543339258812 842.0836619663905 -11.61774189906058 681.8837417438602 783.7882610126551 11.9936741602661 681.8837417438602 783.7882610126551 11.9936741602661 681.8793550940023 783.7857286899105 -11.59270324863019 782.8587205757416 842.0861942891395 11.96863550983579 782.8543339258812 842.0836619663905 -11.61774189906058</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1466\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1464\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1467\">-0.5000000132904524 0.8660253961111921 1.141257286300955e-008 -0.5000000132904524 0.8660253961111921 1.141257286300955e-008 -0.5000000132904524 0.8660253961111921 1.141257286300955e-008 -0.5000000132904524 0.8660253961111921 1.141257286300955e-008 0.5000000132904524 -0.8660253961111921 -1.141257286300955e-008 0.5000000132904524 -0.8660253961111921 -1.141257286300955e-008 0.5000000132904524 -0.8660253961111921 -1.141257286300955e-008 0.5000000132904524 -0.8660253961111921 -1.141257286300955e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1467\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1465\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1463\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1464\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1465\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1468\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1469\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1472\">573.2092158215922 721.0449923072602 -11.8019245732892 675.4600281631214 780.0795281077558 12.63295719381716 675.4554789910513 780.076901964278 -11.82727846264803 573.213764993656 721.0476184507261 12.65831108317497 573.213764993656 721.0476184507261 12.65831108317497 573.2092158215922 721.0449923072602 -11.8019245732892 675.4600281631214 780.0795281077558 12.63295719381716 675.4554789910513 780.076901964278 -11.82727846264803</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1472\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1470\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1473\">-0.5000000132904526 0.8660253961111921 1.141257740329589e-008 -0.5000000132904526 0.8660253961111921 1.141257740329589e-008 -0.5000000132904526 0.8660253961111921 1.141257740329589e-008 -0.5000000132904526 0.8660253961111921 1.141257740329589e-008 0.5000000132904526 -0.8660253961111921 -1.141257740329589e-008 0.5000000132904526 -0.8660253961111921 -1.141257740329589e-008 0.5000000132904526 -0.8660253961111921 -1.141257740329589e-008 0.5000000132904526 -0.8660253961111921 -1.141257740329589e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1473\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1471\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1469\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1470\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1471\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1474\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1475\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1478\">573.4655365673334 721.1929787805989 17.29661162546103 675.4299467722098 780.0621595880768 90.02798284790873 675.4164153192384 780.0543481585778 17.27133098223959 573.4790680202932 721.2007902100886 90.05326349113005 573.4790680202932 721.2007902100886 90.05326349113005 573.4655365673334 721.1929787805989 17.29661162546103 675.4299467722098 780.0621595880768 90.02798284790873 675.4164153192384 780.0543481585778 17.27133098223959</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1478\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1476\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1479\">-0.5000000132904532 0.8660253961111918 1.1412573468157e-008 -0.5000000132904532 0.8660253961111918 1.1412573468157e-008 -0.5000000132904532 0.8660253961111918 1.1412573468157e-008 -0.5000000132904532 0.8660253961111918 1.1412573468157e-008 0.5000000132904532 -0.8660253961111918 -1.1412573468157e-008 0.5000000132904532 -0.8660253961111918 -1.1412573468157e-008 0.5000000132904532 -0.8660253961111918 -1.1412573468157e-008 0.5000000132904532 -0.8660253961111918 -1.1412573468157e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1479\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1477\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1475\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1476\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1477\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1480\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1481\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1484\">463.1500839868239 657.5023202764687 17.57890238798581 566.6530420777802 717.2597821510663 90.35241178448729 566.6395027168982 717.2519661564943 17.5532402347593 463.1636233477008 657.5101362710411 90.37807393771385 463.1636233477008 657.5101362710411 90.37807393771385 463.1500839868239 657.5023202764687 17.57890238798581 566.6530420777802 717.2597821510663 90.35241178448729 566.6395027168982 717.2519661564943 17.5532402347593</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1484\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1482\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1485\">-0.5000000132904527 0.8660253961111922 1.141257335515603e-008 -0.5000000132904527 0.8660253961111922 1.141257335515603e-008 -0.5000000132904527 0.8660253961111922 1.141257335515603e-008 -0.5000000132904527 0.8660253961111922 1.141257335515603e-008 0.5000000132904527 -0.8660253961111922 -1.141257335515603e-008 0.5000000132904527 -0.8660253961111922 -1.141257335515603e-008 0.5000000132904527 -0.8660253961111922 -1.141257335515603e-008 0.5000000132904527 -0.8660253961111922 -1.141257335515603e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1485\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1483\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1481\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1482\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1483\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1486\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1487\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1490\">463.4319513444783 657.665056859621 -11.451305012766 566.6497531585405 717.2578843164743 12.65625034934345 566.6452648188121 717.2552932902686 -11.47689870048689 463.4364396842085 657.6676478858308 12.68184403706607 463.4364396842085 657.6676478858308 12.68184403706607 463.4319513444783 657.665056859621 -11.451305012766 566.6497531585405 717.2578843164743 12.65625034934345 566.6452648188121 717.2552932902686 -11.47689870048689</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1490\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1488\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1491\">-0.5000000132904526 0.8660253961111921 1.141257359986046e-008 -0.5000000132904526 0.8660253961111921 1.141257359986046e-008 -0.5000000132904526 0.8660253961111921 1.141257359986046e-008 -0.5000000132904526 0.8660253961111921 1.141257359986046e-008 0.5000000132904526 -0.8660253961111921 -1.141257359986046e-008 0.5000000132904526 -0.8660253961111921 -1.141257359986046e-008 0.5000000132904526 -0.8660253961111921 -1.141257359986046e-008 0.5000000132904526 -0.8660253961111921 -1.141257359986046e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1491\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1489\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1487\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1488\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1489\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1492\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1493\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1496\">352.1794356537045 593.4333843161362 17.75959141021821 456.7244294789773 653.7924658182678 90.95032273889217 456.7108124741362 653.7846050014309 17.73367088383145 352.1930526585508 593.4412451329745 90.97624326527881 352.1930526585508 593.4412451329745 90.97624326527881 352.1794356537045 593.4333843161362 17.75959141021821 456.7244294789773 653.7924658182678 90.95032273889217 456.7108124741362 653.7846050014309 17.73367088383145</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1496\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1494\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1497\">-0.5000000132904524 0.8660253961111921 1.141257425913669e-008 -0.5000000132904524 0.8660253961111921 1.141257425913669e-008 -0.5000000132904524 0.8660253961111921 1.141257425913669e-008 -0.5000000132904524 0.8660253961111921 1.141257425913669e-008 0.5000000132904524 -0.8660253961111921 -1.141257425913669e-008 0.5000000132904524 -0.8660253961111921 -1.141257425913669e-008 0.5000000132904524 -0.8660253961111921 -1.141257425913669e-008 0.5000000132904524 -0.8660253961111921 -1.141257425913669e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1497\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1495\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1493\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1494\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1495\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1498\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1499\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1502\">352.7062106789233 593.7375184122111 -11.27982018389565 456.6708763085453 653.7615479091696 12.83920352282206 456.6663858014575 653.7589556317798 -11.30559907004832 352.7107011860105 593.7401106896 12.86498240897305 352.7107011860105 593.7401106896 12.86498240897305 352.7062106789233 593.7375184122111 -11.27982018389565 456.6708763085453 653.7615479091696 12.83920352282206 456.6663858014575 653.7589556317798 -11.30559907004832</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1502\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1500\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1503\">-0.5000000132904519 0.8660253961111926 1.141257494353932e-008 -0.5000000132904519 0.8660253961111926 1.141257494353932e-008 -0.5000000132904519 0.8660253961111926 1.141257494353932e-008 -0.5000000132904519 0.8660253961111926 1.141257494353932e-008 0.5000000132904519 -0.8660253961111926 -1.141257494353932e-008 0.5000000132904519 -0.8660253961111926 -1.141257494353932e-008 0.5000000132904519 -0.8660253961111926 -1.141257494353932e-008 0.5000000132904519 -0.8660253961111926 -1.141257494353932e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1503\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1501\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1499\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1500\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1501\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1504\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1505\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1508\">846.2891035277465 878.7077377713058 -113.2760214463454 897.9249593608744 908.5197132230287 -87.55252572437786 897.9201730801575 908.5169497017241 -113.2888243435434 846.2938898084668 878.7105012926047 -87.53972282718024 846.2938898084668 878.7105012926047 -87.53972282718024 846.2891035277465 878.7077377713058 -113.2760214463454 897.9249593608744 908.5197132230287 -87.55252572437786 897.9201730801575 908.5169497017241 -113.2888243435434</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1508\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1506\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1509\">-0.5000000003254006 0.8660254035965685 -5.412223821318678e-009 -0.5000000003254006 0.8660254035965685 -5.412223821318678e-009 -0.5000000003254006 0.8660254035965685 -5.412223821318678e-009 -0.5000000003254006 0.8660254035965685 -5.412223821318678e-009 0.5000000003254006 -0.8660254035965685 5.412223821318678e-009 0.5000000003254006 -0.8660254035965685 5.412223821318678e-009 0.5000000003254006 -0.8660254035965685 5.412223821318678e-009 0.5000000003254006 -0.8660254035965685 5.412223821318678e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1509\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1507\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1505\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1506\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1507\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1510\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1511\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1514\">798.8716277560012 851.3312453425176 -113.9024505305398 843.1410503883625 876.8902086013973 -87.81492342980587 843.1361967470012 876.8874061871409 -113.9134267650283 798.8764813973609 851.3340477567758 -87.80394719531736 798.8764813973609 851.3340477567758 -87.80394719531736 798.8716277560012 851.3312453425176 -113.9024505305398 843.1410503883625 876.8902086013973 -87.81492342980587 843.1361967470012 876.8874061871409 -113.9134267650283</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1514\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1512\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1515\">-0.5000000003254006 0.8660254035965685 -5.412233355575742e-009 -0.5000000003254006 0.8660254035965685 -5.412233355575742e-009 -0.5000000003254006 0.8660254035965685 -5.412233355575742e-009 -0.5000000003254006 0.8660254035965685 -5.412233355575742e-009 0.5000000003254006 -0.8660254035965685 5.412233355575742e-009 0.5000000003254006 -0.8660254035965685 5.412233355575742e-009 0.5000000003254006 -0.8660254035965685 5.412233355575742e-009 0.5000000003254006 -0.8660254035965685 5.412233355575742e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1515\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1513\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1511\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1512\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1513\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1516\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1517\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1520\">739.618033742474 817.1211668616438 -113.4283137378573 791.5986107741402 847.132167193125 -87.25317120213012 791.5937404829759 847.1293551655499 -113.4412020943441 739.6229040336317 817.123978889214 -87.24028284564326 739.6229040336317 817.123978889214 -87.24028284564326 739.618033742474 817.1211668616438 -113.4283137378573 791.5986107741402 847.132167193125 -87.25317120213012 791.5937404829759 847.1293551655499 -113.4412020943441</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1520\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1518\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1521\">-0.5000000003254006 0.8660254035965685 -5.412230256465147e-009 -0.5000000003254006 0.8660254035965685 -5.412230256465147e-009 -0.5000000003254006 0.8660254035965685 -5.412230256465147e-009 -0.5000000003254006 0.8660254035965685 -5.412230256465147e-009 0.5000000003254006 -0.8660254035965685 5.412230256465147e-009 0.5000000003254006 -0.8660254035965685 5.412230256465147e-009 0.5000000003254006 -0.8660254035965685 5.412230256465147e-009 0.5000000003254006 -0.8660254035965685 5.412230256465147e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1521\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1519\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1517\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1518\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1519\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1522\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1523\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1526\">692.3411031480733 789.8258182324594 -113.4860371485396 736.201889800505 815.14885539692 -87.59014100669438 736.1970718163426 815.1460735705607 -113.4969120628739 692.3459211322339 789.8286000588205 -87.5792660923608 692.3459211322339 789.8286000588205 -87.5792660923608 692.3411031480733 789.8258182324594 -113.4860371485396 736.201889800505 815.14885539692 -87.59014100669438 736.1970718163426 815.1460735705607 -113.4969120628739</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1526\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1524\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1527\">-0.5000000003254006 0.8660254035965685 -5.412233607110646e-009 -0.5000000003254006 0.8660254035965685 -5.412233607110646e-009 -0.5000000003254006 0.8660254035965685 -5.412233607110646e-009 -0.5000000003254006 0.8660254035965685 -5.412233607110646e-009 0.5000000003254006 -0.8660254035965685 5.412233607110646e-009 0.5000000003254006 -0.8660254035965685 5.412233607110646e-009 0.5000000003254006 -0.8660254035965685 5.412233607110646e-009 0.5000000003254006 -0.8660254035965685 5.412233607110646e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1527\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1525\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1523\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1524\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1525\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1528\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1529\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1532\">633.0986696303352 755.6221832660285 -113.1391499508642 685.0894976991575 785.6391020338974 -87.39361626619314 685.0847073035681 785.6363361367421 -113.1520408691005 633.1034600259244 755.6249491631857 -87.3807253479568 633.1034600259244 755.6249491631857 -87.3807253479568 633.0986696303352 755.6221832660285 -113.1391499508642 685.0894976991575 785.6391020338974 -87.39361626619314 685.0847073035681 785.6363361367421 -113.1520408691005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1532\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1530\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1533\">-0.5000000003254006 0.8660254035965685 -5.412223146484141e-009 -0.5000000003254006 0.8660254035965685 -5.412223146484141e-009 -0.5000000003254006 0.8660254035965685 -5.412223146484141e-009 -0.5000000003254006 0.8660254035965685 -5.412223146484141e-009 0.5000000003254006 -0.8660254035965685 5.412223146484141e-009 0.5000000003254006 -0.8660254035965685 5.412223146484141e-009 0.5000000003254006 -0.8660254035965685 5.412223146484141e-009 0.5000000003254006 -0.8660254035965685 5.412223146484141e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1533\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1531\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1529\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1530\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1531\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1534\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1535\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1538\">585.3212270045192 728.0378638789157 -113.4551980687201 629.840798845407 753.7412508481884 -87.78485899106806 629.8360227786089 753.7384932242417 -113.4662363516575 585.326003071322 728.040621502867 -87.77382070813073 585.326003071322 728.040621502867 -87.77382070813073 585.3212270045192 728.0378638789157 -113.4551980687201 629.840798845407 753.7412508481884 -87.78485899106806 629.8360227786089 753.7384932242417 -113.4662363516575</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1538\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1536\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1539\">-0.5000000003254006 0.8660254035965685 -5.412228212391687e-009 -0.5000000003254006 0.8660254035965685 -5.412228212391687e-009 -0.5000000003254006 0.8660254035965685 -5.412228212391687e-009 -0.5000000003254006 0.8660254035965685 -5.412228212391687e-009 0.5000000003254006 -0.8660254035965685 5.412228212391687e-009 0.5000000003254006 -0.8660254035965685 5.412228212391687e-009 0.5000000003254006 -0.8660254035965685 5.412228212391687e-009 0.5000000003254006 -0.8660254035965685 5.412228212391687e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1539\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1537\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1535\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1536\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1537\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1540\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1541\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1544\">526.3561406229412 693.9943553560811 -113.1507675421579 578.2367228821581 723.9476236789706 -86.93638761151217 578.2318452984837 723.9448074408197 -113.1636311012472 526.3610182066191 693.9971715942393 -86.92352405242301 526.3610182066191 693.9971715942393 -86.92352405242301 526.3561406229412 693.9943553560811 -113.1507675421579 578.2367228821581 723.9476236789706 -86.93638761151217 578.2318452984837 723.9448074408197 -113.1636311012472</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1544\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1542\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1545\">-0.5000000003254006 0.8660254035965685 -5.412228737525009e-009 -0.5000000003254006 0.8660254035965685 -5.412228737525009e-009 -0.5000000003254006 0.8660254035965685 -5.412228737525009e-009 -0.5000000003254006 0.8660254035965685 -5.412228737525009e-009 0.5000000003254006 -0.8660254035965685 5.412228737525009e-009 0.5000000003254006 -0.8660254035965685 5.412228737525009e-009 0.5000000003254006 -0.8660254035965685 5.412228737525009e-009 0.5000000003254006 -0.8660254035965685 5.412228737525009e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1545\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1543\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1541\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1542\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1543\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1546\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1547\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1550\">479.3450069546076 666.8524646524807 -113.4275450908057 523.4434948866568 692.3127387155641 -87.41536930611494 523.438655266551 692.3099443969595 -113.4384789422892 479.3498465747172 666.8552589710898 -87.40443545463154 479.3498465747172 666.8552589710898 -87.40443545463154 479.3450069546076 666.8524646524807 -113.4275450908057 523.4434948866568 692.3127387155641 -87.41536930611494 523.438655266551 692.3099443969595 -113.4384789422892</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1550\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1548\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1551\">-0.5000000003254006 0.8660254035965685 -5.412227608165816e-009 -0.5000000003254006 0.8660254035965685 -5.412227608165816e-009 -0.5000000003254006 0.8660254035965685 -5.412227608165816e-009 -0.5000000003254006 0.8660254035965685 -5.412227608165816e-009 0.5000000003254006 -0.8660254035965685 5.412227608165816e-009 0.5000000003254006 -0.8660254035965685 5.412227608165816e-009 0.5000000003254006 -0.8660254035965685 5.412227608165816e-009 0.5000000003254006 -0.8660254035965685 5.412227608165816e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1551\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1549\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1547\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1548\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1549\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1552\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1553\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1556\">798.748391639749 851.2600943158261 -213.3897837842623 898.5422746198402 908.876120050229 -136.2033860465759 898.5279153603175 908.8678292453367 -213.4145259985096 798.7627508992738 851.2683851207187 -136.1786438323296 798.7627508992738 851.2683851207187 -136.1786438323296 798.748391639749 851.2600943158261 -213.3897837842623 898.5422746198402 908.876120050229 -136.2033860465759 898.5279153603175 908.8678292453367 -213.4145259985096</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1556\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1554\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1557\">-0.5000000003254006 0.8660254035965685 -5.412227056686381e-009 -0.5000000003254006 0.8660254035965685 -5.412227056686381e-009 -0.5000000003254006 0.8660254035965685 -5.412227056686381e-009 -0.5000000003254006 0.8660254035965685 -5.412227056686381e-009 0.5000000003254006 -0.8660254035965685 5.412227056686381e-009 0.5000000003254006 -0.8660254035965685 5.412227056686381e-009 0.5000000003254006 -0.8660254035965685 5.412227056686381e-009 0.5000000003254006 -0.8660254035965685 5.412227056686381e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1557\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1555\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1553\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1554\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1555\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1558\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1559\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1562\">799.0040717063515 851.4077110787173 -244.1946223529642 898.8886847973325 909.0761195417854 -219.0644687862494 898.884006637741 909.0734184478772 -244.2193894660645 799.0087498659365 851.4104121726214 -219.0397016731498 799.0087498659365 851.4104121726214 -219.0397016731498 799.0040717063515 851.4077110787173 -244.1946223529642 898.8886847973325 909.0761195417854 -219.0644687862494 898.884006637741 909.0734184478772 -244.2193894660645</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1562\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1560\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1563\">-0.5000000003254006 0.8660254035965685 -5.412224891480432e-009 -0.5000000003254006 0.8660254035965685 -5.412224891480432e-009 -0.5000000003254006 0.8660254035965685 -5.412224891480432e-009 -0.5000000003254006 0.8660254035965685 -5.412224891480432e-009 0.5000000003254006 -0.8660254035965685 5.412224891480432e-009 0.5000000003254006 -0.8660254035965685 5.412224891480432e-009 0.5000000003254006 -0.8660254035965685 5.412224891480432e-009 0.5000000003254006 -0.8660254035965685 5.412224891480432e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1563\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1561\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1559\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1560\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1561\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1564\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1565\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1568\">691.8924536725857 789.5667897114745 -213.5440998691153 792.3917104725282 847.5900632169451 -135.4069321383511 792.3771743620399 847.5816703011569 -213.5690169502468 691.9069897830756 789.5751826272613 -135.3820150572196 691.9069897830756 789.5751826272613 -135.3820150572196 691.8924536725857 789.5667897114745 -213.5440998691153 792.3917104725282 847.5900632169451 -135.4069321383511 792.3771743620399 847.5816703011569 -213.5690169502468</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1568\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1566\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1569\">-0.5000000003254004 0.8660254035965687 -5.412228633387389e-009 -0.5000000003254004 0.8660254035965687 -5.412228633387389e-009 -0.5000000003254004 0.8660254035965687 -5.412228633387389e-009 -0.5000000003254004 0.8660254035965687 -5.412228633387389e-009 0.5000000003254004 -0.8660254035965687 5.412228633387389e-009 0.5000000003254004 -0.8660254035965687 5.412228633387389e-009 0.5000000003254004 -0.8660254035965687 5.412228633387389e-009 0.5000000003254004 -0.8660254035965687 5.412228633387389e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1569\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1567\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1565\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1566\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1567\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1570\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1571\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1574\">692.1220799070765 789.699364287457 -244.3353018055921 792.5835497845047 847.7008211750326 -218.6809211905625 792.5787741057651 847.6980637751378 -244.3602119370268 692.1268555858204 789.702121687355 -218.6560110591286 692.1268555858204 789.702121687355 -218.6560110591286 692.1220799070765 789.699364287457 -244.3353018055921 792.5835497845047 847.7008211750326 -218.6809211905625 792.5787741057651 847.6980637751378 -244.3602119370268</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1574\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1572\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1575\">-0.5000000003254006 0.8660254035965685 -5.412232452706383e-009 -0.5000000003254006 0.8660254035965685 -5.412232452706383e-009 -0.5000000003254006 0.8660254035965685 -5.412232452706383e-009 -0.5000000003254006 0.8660254035965685 -5.412232452706383e-009 0.5000000003254006 -0.8660254035965685 5.412232452706383e-009 0.5000000003254006 -0.8660254035965685 5.412232452706383e-009 0.5000000003254006 -0.8660254035965685 5.412232452706383e-009 0.5000000003254006 -0.8660254035965685 5.412232452706383e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1575\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1573\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1571\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1572\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1573\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1576\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1577\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1580\">584.606376198058 727.6251439456364 -213.8442689249287 685.7533582140794 786.0223817843214 -134.9027342322384 685.7386724824397 786.0139024796986 -213.8693465846384 584.6210619296943 727.6336232502517 -134.8776565725289 584.6210619296943 727.6336232502517 -134.8776565725289 584.606376198058 727.6251439456364 -213.8442689249287 685.7533582140794 786.0223817843214 -134.9027342322384 685.7386724824397 786.0139024796986 -213.8693465846384</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1580\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1578\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1581\">-0.5000000003254006 0.8660254035965685 -5.412227920741302e-009 -0.5000000003254006 0.8660254035965685 -5.412227920741302e-009 -0.5000000003254006 0.8660254035965685 -5.412227920741302e-009 -0.5000000003254006 0.8660254035965685 -5.412227920741302e-009 0.5000000003254006 -0.8660254035965685 5.412227920741302e-009 0.5000000003254006 -0.8660254035965685 5.412227920741302e-009 0.5000000003254006 -0.8660254035965685 5.412227920741302e-009 0.5000000003254006 -0.8660254035965685 5.412227920741302e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1581\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1579\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1577\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1578\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1579\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1582\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1583\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1586\">584.9995011666496 727.8521145600003 -244.6104103701173 685.9654853017331 786.1448528926997 -218.5715879209095 685.9606381035504 786.1420541986345 -244.6354455876402 585.0043483648177 727.8549132540511 -218.5465527033866 585.0043483648177 727.8549132540511 -218.5465527033866 584.9995011666496 727.8521145600003 -244.6104103701173 685.9654853017331 786.1448528926997 -218.5715879209095 685.9606381035504 786.1420541986345 -244.6354455876402</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1586\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1584\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1587\">-0.5000000003254006 0.8660254035965685 -5.412227763423567e-009 -0.5000000003254006 0.8660254035965685 -5.412227763423567e-009 -0.5000000003254006 0.8660254035965685 -5.412227763423567e-009 -0.5000000003254006 0.8660254035965685 -5.412227763423567e-009 0.5000000003254006 -0.8660254035965685 5.412227763423567e-009 0.5000000003254006 -0.8660254035965685 5.412227763423567e-009 0.5000000003254006 -0.8660254035965685 5.412227763423567e-009 0.5000000003254006 -0.8660254035965685 5.412227763423567e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1587\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1585\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1583\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1584\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1585\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1588\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1589\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1592\">478.3385446068995 666.2713827191365 -213.509405080855 578.2921622010404 723.9796312839721 -135.0544642459622 578.27756701821 723.9712042607694 -213.5341868458101 478.3531397897323 666.2798097423406 -135.0296824810079 478.3531397897323 666.2798097423406 -135.0296824810079 478.3385446068995 666.2713827191365 -213.509405080855 578.2921622010404 723.9796312839721 -135.0544642459622 578.27756701821 723.9712042607694 -213.5341868458101</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1592\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1590\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1593\">-0.5000000003254006 0.8660254035965685 -5.412227690809126e-009 -0.5000000003254006 0.8660254035965685 -5.412227690809126e-009 -0.5000000003254006 0.8660254035965685 -5.412227690809126e-009 -0.5000000003254006 0.8660254035965685 -5.412227690809126e-009 0.5000000003254006 -0.8660254035965685 5.412227690809126e-009 0.5000000003254006 -0.8660254035965685 5.412227690809126e-009 0.5000000003254006 -0.8660254035965685 5.412227690809126e-009 0.5000000003254006 -0.8660254035965685 5.412227690809126e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1593\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1591\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1589\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1590\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1591\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1594\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1595\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1598\">478.3618675860317 666.2848480533012 -244.5729093692687 578.9815214765018 724.3776325239664 -218.837662465272 578.9767307514379 724.3748664365703 -244.5978587216818 478.3666583110941 666.2876141406896 -218.812713112859 478.3666583110941 666.2876141406896 -218.812713112859 478.3618675860317 666.2848480533012 -244.5729093692687 578.9815214765018 724.3776325239664 -218.837662465272 578.9767307514379 724.3748664365703 -244.5978587216818</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1598\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1596\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1599\">-0.5000000003254006 0.8660254035965685 -5.412228682583064e-009 -0.5000000003254006 0.8660254035965685 -5.412228682583064e-009 -0.5000000003254006 0.8660254035965685 -5.412228682583064e-009 -0.5000000003254006 0.8660254035965685 -5.412228682583064e-009 0.5000000003254006 -0.8660254035965685 5.412228682583064e-009 0.5000000003254006 -0.8660254035965685 5.412228682583064e-009 0.5000000003254006 -0.8660254035965685 5.412228682583064e-009 0.5000000003254006 -0.8660254035965685 5.412228682583064e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1599\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1597\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1595\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1596\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1597\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1600\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1601\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1604\">905.5783243058294 908.9818642764162 -87.41655198028821 952.1596784154941 882.0663018929504 -114.0412544271854 905.5796484826775 908.9810961546327 -114.0443472118748 952.1583542386433 882.0670700147334 -87.41345919559808 952.1583542386433 882.0670700147334 -87.41345919559808 905.5783243058294 908.9818642764162 -87.41655198028821 952.1596784154941 882.0663018929504 -114.0412544271854 905.5796484826775 908.9810961546327 -114.0443472118748</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1604\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1602\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1605\">0.5003039102187297 0.8658498700235741 -9.716505674871442e-008 0.5003039102187297 0.8658498700235741 -9.716505674871442e-008 0.5003039102187297 0.8658498700235741 -9.716505674871442e-008 0.5003039102187297 0.8658498700235741 -9.716505674871442e-008 -0.5003039102187297 -0.8658498700235741 9.716505674871442e-008 -0.5003039102187297 -0.8658498700235741 9.716505674871442e-008 -0.5003039102187297 -0.8658498700235741 9.716505674871442e-008 -0.5003039102187297 -0.8658498700235741 9.716505674871442e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1605\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1603\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1601\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1602\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1603\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1606\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1607\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1610\">954.873444955875 880.4982408976607 -87.25569780104451 1009.495731893576 848.936480320589 -113.5342364304914 954.8747519448674 880.4974827461347 -113.5378631119424 1009.494424904593 848.9372384721266 -87.25207111959355 1009.494424904593 848.9372384721266 -87.25207111959355 954.873444955875 880.4982408976607 -87.25569780104451 1009.495731893576 848.936480320589 -113.5342364304914 954.8747519448674 880.4974827461347 -113.5378631119424</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1610\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1608\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1611\">0.5003039102187287 0.8658498700235746 -9.716505472331634e-008 0.5003039102187287 0.8658498700235746 -9.716505472331634e-008 0.5003039102187287 0.8658498700235746 -9.716505472331634e-008 0.5003039102187287 0.8658498700235746 -9.716505472331634e-008 -0.5003039102187287 -0.8658498700235746 9.716505472331634e-008 -0.5003039102187287 -0.8658498700235746 9.716505472331634e-008 -0.5003039102187287 -0.8658498700235746 9.716505472331634e-008 -0.5003039102187287 -0.8658498700235746 9.716505472331634e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1611\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1609\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1607\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1608\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1609\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1612\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1613\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1616\">1016.935767601717 844.6374943968106 -87.25306487353518 1063.894590162794 817.5038238172645 -113.9910099742957 1016.937097411276 844.6367230076364 -113.9941278214692 1063.893260353235 817.5045952064379 -87.24994702636167 1063.893260353235 817.5045952064379 -87.24994702636167 1016.935767601717 844.6374943968106 -87.25306487353518 1063.894590162794 817.5038238172645 -113.9910099742957 1016.937097411276 844.6367230076364 -113.9941278214692</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1616\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1614\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1617\">0.5003039102187297 0.8658498700235741 -9.716505524048078e-008 0.5003039102187297 0.8658498700235741 -9.716505524048078e-008 0.5003039102187297 0.8658498700235741 -9.716505524048078e-008 0.5003039102187297 0.8658498700235741 -9.716505524048078e-008 -0.5003039102187297 -0.8658498700235741 9.716505524048078e-008 -0.5003039102187297 -0.8658498700235741 9.716505524048078e-008 -0.5003039102187297 -0.8658498700235741 9.716505524048078e-008 -0.5003039102187297 -0.8658498700235741 9.716505524048078e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1617\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1615\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1613\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1614\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1615\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1618\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1619\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1622\">1066.239781779302 816.148732158005 -87.24359107869483 1120.674916163369 784.6951117676517 -113.3961972524551 1066.241082505154 816.1479776395522 -113.3998115079112 1120.673615437522 784.6958662861055 -87.23997682323881 1120.673615437522 784.6958662861055 -87.23997682323881 1066.239781779302 816.148732158005 -87.24359107869483 1120.674916163369 784.6951117676517 -113.3961972524551 1066.241082505154 816.1479776395522 -113.3998115079112</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1622\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1620\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1623\">0.5003039102187287 0.8658498700235746 -9.716505437946162e-008 0.5003039102187287 0.8658498700235746 -9.716505437946162e-008 0.5003039102187287 0.8658498700235746 -9.716505437946162e-008 0.5003039102187287 0.8658498700235746 -9.716505437946162e-008 -0.5003039102187287 -0.8658498700235746 9.716505437946162e-008 -0.5003039102187287 -0.8658498700235746 9.716505437946162e-008 -0.5003039102187287 -0.8658498700235746 9.716505437946162e-008 -0.5003039102187287 -0.8658498700235746 9.716505437946162e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1623\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1621\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1619\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1620\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1621\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1624\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1625\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1628\">1128.160240828973 780.3699569942955 -87.65542481762137 1174.605360135727 753.5331136126697 -113.9413567820129 1128.161548158615 780.3691986451506 -113.9444405222089 1174.604052806082 753.533871961808 -87.65234107742538 1174.604052806082 753.533871961808 -87.65234107742538 1128.160240828973 780.3699569942955 -87.65542481762137 1174.605360135727 753.5331136126697 -113.9413567820129 1128.161548158615 780.3691986451506 -113.9444405222089</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1628\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1626\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1629\">0.5003039102187287 0.8658498700235746 -9.71650562112754e-008 0.5003039102187287 0.8658498700235746 -9.71650562112754e-008 0.5003039102187287 0.8658498700235746 -9.71650562112754e-008 0.5003039102187287 0.8658498700235746 -9.71650562112754e-008 -0.5003039102187287 -0.8658498700235746 9.71650562112754e-008 -0.5003039102187287 -0.8658498700235746 9.71650562112754e-008 -0.5003039102187287 -0.8658498700235746 9.71650562112754e-008 -0.5003039102187287 -0.8658498700235746 9.71650562112754e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1629\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1627\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1625\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1626\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1627\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1630\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1631\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1634\">1177.886151179548 751.6374154656087 -87.24872824674139 1232.195920415364 720.2562333250553 -113.6555159731644 1177.88746454521 751.6366536151163 -113.6591219038841 1232.194607049708 720.2569951755518 -87.24512231602165 1232.194607049708 720.2569951755518 -87.24512231602165 1177.886151179548 751.6374154656087 -87.24872824674139 1232.195920415364 720.2562333250553 -113.6555159731644 1177.88746454521 751.6366536151163 -113.6591219038841</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1634\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1632\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1635\">0.5003039102187287 0.8658498700235746 -9.716505492004483e-008 0.5003039102187287 0.8658498700235746 -9.716505492004483e-008 0.5003039102187287 0.8658498700235746 -9.716505492004483e-008 0.5003039102187287 0.8658498700235746 -9.716505492004483e-008 -0.5003039102187287 -0.8658498700235746 9.716505492004483e-008 -0.5003039102187287 -0.8658498700235746 9.716505492004483e-008 -0.5003039102187287 -0.8658498700235746 9.716505492004483e-008 -0.5003039102187287 -0.8658498700235746 9.716505492004483e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1635\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1633\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1631\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1632\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1633\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1636\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1637\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1640\">1239.73726525495 715.8987037059414 -135.7085871776977 1344.101161628947 655.5953244887614 -214.0866184638761 1239.741163270143 715.8964425650793 -214.0935476780834 1344.097263613755 655.5975856296273 -135.7016579634904 1344.097263613755 655.5975856296273 -135.7016579634904 1239.73726525495 715.8987037059414 -135.7085871776977 1344.101161628947 655.5953244887614 -214.0866184638761 1239.741163270143 715.8964425650793 -214.0935476780834</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1640\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1638\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1641\">0.5003039102187287 0.8658498700235746 -9.71650559758409e-008 0.5003039102187287 0.8658498700235746 -9.71650559758409e-008 0.5003039102187287 0.8658498700235746 -9.71650559758409e-008 0.5003039102187287 0.8658498700235746 -9.71650559758409e-008 -0.5003039102187287 -0.8658498700235746 9.71650559758409e-008 -0.5003039102187287 -0.8658498700235746 9.71650559758409e-008 -0.5003039102187287 -0.8658498700235746 9.71650559758409e-008 -0.5003039102187287 -0.8658498700235746 9.71650559758409e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1641\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1639\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1637\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1638\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1639\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1642\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1643\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1646\">1239.880279481074 715.8160581735369 -218.5258262951681 1343.897016731738 655.7132797035938 -244.7858884198055 1239.881585714336 715.8153004603805 -244.7927947556975 1343.895710498473 655.7140374167502 -218.5189199592759 1343.895710498473 655.7140374167502 -218.5189199592759 1239.880279481074 715.8160581735369 -218.5258262951681 1343.897016731738 655.7132797035938 -244.7858884198055 1239.881585714336 715.8153004603805 -244.7927947556975</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1646\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1644\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1647\">0.5003039102187287 0.8658498700235746 -9.716505509411349e-008 0.5003039102187287 0.8658498700235746 -9.716505509411349e-008 0.5003039102187287 0.8658498700235746 -9.716505509411349e-008 0.5003039102187287 0.8658498700235746 -9.716505509411349e-008 -0.5003039102187287 -0.8658498700235746 9.716505509411349e-008 -0.5003039102187287 -0.8658498700235746 9.716505509411349e-008 -0.5003039102187287 -0.8658498700235746 9.716505509411349e-008 -0.5003039102187287 -0.8658498700235746 9.716505509411349e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1647\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1645\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1643\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1644\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1645\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1648\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1649\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1652\">1289.427267505836 687.1874358613127 -87.93663638488664 1344.449997535905 655.3937719975129 -113.5367231467692 1289.428579067263 687.186155132646 -113.5403764162264 1344.448685974488 655.3950527261814 -87.93298311542873 1344.448685974488 655.3950527261814 -87.93298311542873 1289.427267505836 687.1874358613127 -87.93663638488664 1344.449997535905 655.3937719975129 -113.5367231467692 1289.428579067263 687.186155132646 -113.5403764162264</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1652\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1650\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1653\">0.5003039110158832 0.8658498693824114 -1.76825508699435e-005 0.5003039110158832 0.8658498693824114 -1.76825508699435e-005 0.5003039110158832 0.8658498693824114 -1.76825508699435e-005 0.5003039110158832 0.8658498693824114 -1.76825508699435e-005 -0.5003039110158832 -0.8658498693824114 1.76825508699435e-005 -0.5003039110158832 -0.8658498693824114 1.76825508699435e-005 -0.5003039110158832 -0.8658498693824114 1.76825508699435e-005 -0.5003039110158832 -0.8658498693824114 1.76825508699435e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1653\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1651\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1649\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1650\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1651\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1654\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1655\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1658\">1239.714234650524 715.9118839085904 -87.94051551787425 1285.762058739656 689.3047376804702 -113.8813651929279 1239.715515044775 715.9112738247582 -113.8844225556127 1285.760778345408 689.3053477643002 -87.93745815518946 1285.760778345408 689.3053477643002 -87.93745815518946 1239.714234650524 715.9118839085904 -87.94051551787425 1285.762058739656 689.3047376804702 -113.8813651929279 1239.715515044775 715.9112738247582 -113.8844225556127</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1658\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1656\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1659\">0.5003039099936517 0.8658498701428051 4.33031320784305e-006 0.5003039099936517 0.8658498701428051 4.33031320784305e-006 0.5003039099936517 0.8658498701428051 4.33031320784305e-006 0.5003039099936517 0.8658498701428051 4.33031320784305e-006 -0.5003039099936517 -0.8658498701428051 -4.33031320784305e-006 -0.5003039099936517 -0.8658498701428051 -4.33031320784305e-006 -0.5003039099936517 -0.8658498701428051 -4.33031320784305e-006 -0.5003039099936517 -0.8658498701428051 -4.33031320784305e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1659\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1657\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1655\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1656\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1657\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1660\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1661\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1664\">1127.962451693021 780.4842787362122 -136.1945545452638 1232.236680316441 720.2326586503173 -214.0478280038955 1127.966299601937 780.4819911806233 -214.0547512669697 1232.232832407527 720.2349462059196 -136.1876312821896 1232.232832407527 720.2349462059196 -136.1876312821896 1127.962451693021 780.4842787362122 -136.1945545452638 1232.236680316441 720.2326586503173 -214.0478280038955 1127.966299601937 780.4819911806233 -214.0547512669697</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1664\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1662\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1665\">0.5003038926309327 0.8658498801858364 -7.135344553454905e-007 0.5003038926309327 0.8658498801858364 -7.135344553454905e-007 0.5003038926309327 0.8658498801858364 -7.135344553454905e-007 0.5003038926309327 0.8658498801858364 -7.135344553454905e-007 -0.5003038926309327 -0.8658498801858364 7.135344553454905e-007 -0.5003038926309327 -0.8658498801858364 7.135344553454905e-007 -0.5003038926309327 -0.8658498801858364 7.135344553454905e-007 -0.5003038926309327 -0.8658498801858364 7.135344553454905e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1665\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1663\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1661\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1662\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1663\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1666\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1667\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1670\">1128.423797973142 780.2176363224321 -218.8285934394564 1233.298536679171 719.6190736358744 -244.3750946572389 1128.425060844387 780.2168855540947 -244.3820579641514 1233.297273807934 719.6198244042216 -218.8216301325441 1233.297273807934 719.6198244042216 -218.8216301325441 1128.423797973142 780.2176363224321 -218.8285934394564 1233.298536679171 719.6190736358744 -244.3750946572389 1128.425060844387 780.2168855540947 -244.3820579641514</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1670\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1668\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1671\">0.500303892630932 0.8658498801858366 -7.135344575470714e-007 0.500303892630932 0.8658498801858366 -7.135344575470714e-007 0.500303892630932 0.8658498801858366 -7.135344575470714e-007 0.500303892630932 0.8658498801858366 -7.135344575470714e-007 -0.500303892630932 -0.8658498801858366 7.135344575470714e-007 -0.500303892630932 -0.8658498801858366 7.135344575470714e-007 -0.500303892630932 -0.8658498801858366 7.135344575470714e-007 -0.500303892630932 -0.8658498801858366 7.135344575470714e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1671\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1669\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1667\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1668\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1669\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1672\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1673\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1676\">1015.940920724469 845.2123677921036 -135.9820188637012 1121.609978102792 784.1547902755708 -213.6798847487027 1015.944760957596 845.2100847997006 -213.6869006250346 1121.606137869668 784.1570732679666 -135.97500298737 1121.606137869668 784.1570732679666 -135.97500298737 1015.940920724469 845.2123677921036 -135.9820188637012 1121.609978102792 784.1547902755708 -213.6798847487027 1015.944760957596 845.2100847997006 -213.6869006250346</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1676\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1674\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1677\">0.5003038926309323 0.8658498801858365 -7.135344558832006e-007 0.5003038926309323 0.8658498801858365 -7.135344558832006e-007 0.5003038926309323 0.8658498801858365 -7.135344558832006e-007 0.5003038926309323 0.8658498801858365 -7.135344558832006e-007 -0.5003038926309323 -0.8658498801858365 7.135344558832006e-007 -0.5003038926309323 -0.8658498801858365 7.135344558832006e-007 -0.5003038926309323 -0.8658498801858365 7.135344558832006e-007 -0.5003038926309323 -0.8658498801858365 7.135344558832006e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1677\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1675\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1673\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1674\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1675\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1678\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1679\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1682\">1016.490146933092 844.89494655722 -218.848488323786 1121.454566860291 784.244563950027 -244.9668339816171 1016.49143806561 844.8941789877451 -244.9738032412366 1121.453275727765 784.2453315194969 -218.8415190641672 1121.453275727765 784.2453315194969 -218.8415190641672 1016.490146933092 844.89494655722 -218.848488323786 1121.454566860291 784.244563950027 -244.9668339816171 1016.49143806561 844.8941789877451 -244.9738032412366</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1682\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1680\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1683\">0.5003038926309337 0.8658498801858359 -7.135344449202361e-007 0.5003038926309337 0.8658498801858359 -7.135344449202361e-007 0.5003038926309337 0.8658498801858359 -7.135344449202361e-007 0.5003038926309337 0.8658498801858359 -7.135344449202361e-007 -0.5003038926309337 -0.8658498801858359 7.135344449202361e-007 -0.5003038926309337 -0.8658498801858359 7.135344449202361e-007 -0.5003038926309337 -0.8658498801858359 7.135344449202361e-007 -0.5003038926309337 -0.8658498801858359 7.135344449202361e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1683\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1681\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1679\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1680\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1681\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1684\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1685\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1688\">905.1170806895678 909.2484091715846 -135.7154053073078 1009.941014653559 848.6791588381279 -214.1154139214685 905.1209556203459 909.2461055516794 -214.122373681653 1009.937139722788 848.6814624580338 -135.708445547123 1009.937139722788 848.6814624580338 -135.708445547123 905.1170806895678 909.2484091715846 -135.7154053073078 1009.941014653559 848.6791588381279 -214.1154139214685 905.1209556203459 909.2461055516794 -214.122373681653</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1688\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1686\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1689\">0.5003038926309323 0.8658498801858364 -7.135344554777089e-007 0.5003038926309323 0.8658498801858364 -7.135344554777089e-007 0.5003038926309323 0.8658498801858364 -7.135344554777089e-007 0.5003038926309323 0.8658498801858364 -7.135344554777089e-007 -0.5003038926309323 -0.8658498801858364 7.135344554777089e-007 -0.5003038926309323 -0.8658498801858364 7.135344554777089e-007 -0.5003038926309323 -0.8658498801858364 7.135344554777089e-007 -0.5003038926309323 -0.8658498801858364 7.135344554777089e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1689\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1687\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1685\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1686\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1687\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1690\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1691\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1694\">904.3975694438685 909.6640872768248 -219.0181772900617 1010.69184336832 848.2452908741755 -244.9421039403107 904.3988509724269 909.6633254168426 -244.9491614991713 1010.690561839757 848.2460527341573 -219.0111197312011 1010.690561839757 848.2460527341573 -219.0111197312011 904.3975694438685 909.6640872768248 -219.0181772900617 1010.69184336832 848.2452908741755 -244.9421039403107 904.3988509724269 909.6633254168426 -244.9491614991713</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1694\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1692\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1695\">0.5003038926309327 0.8658498801858364 -7.135344570340812e-007 0.5003038926309327 0.8658498801858364 -7.135344570340812e-007 0.5003038926309327 0.8658498801858364 -7.135344570340812e-007 0.5003038926309327 0.8658498801858364 -7.135344570340812e-007 -0.5003038926309327 -0.8658498801858364 7.135344570340812e-007 -0.5003038926309327 -0.8658498801858364 7.135344570340812e-007 -0.5003038926309327 -0.8658498801858364 7.135344570340812e-007 -0.5003038926309327 -0.8658498801858364 7.135344570340812e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1695\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1693\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1691\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1692\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1693\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1696\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1697\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID1700\">473.7154765371882 663.6022527682667 -244.9738032412366 383.884349864544 256.7707530990747 -244.9738032412373 76.47349969984288 434.2544897204971 -244.9738032412375 902.0371471481634 -42.38490436695565 -244.9738032412355 902.1532525245065 910.9609189146893 -244.9738032412371 1443.086450655612 269.9900550500279 -244.9738032412355 1016.49143806561 844.8941789877451 -244.9738032412366 1350.19524353553 652.07398133263 -244.9738032412079 1727.382400194998 434.1284003590372 -244.9738032412361 1727.382400194998 434.1284003590372 -244.9738032412361 1350.19524353553 652.07398133263 -244.9738032412079 1443.086450655612 269.9900550500279 -244.9738032412355 1016.49143806561 844.8941789877451 -244.9738032412366 902.1532525245065 910.9609189146893 -244.9738032412371 902.0371471481634 -42.38490436695565 -244.9738032412355 473.7154765371882 663.6022527682667 -244.9738032412366 383.884349864544 256.7707530990747 -244.9738032412373 76.47349969984288 434.2544897204971 -244.9738032412375</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID1700\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1698\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID1701\">6.321169716133612e-016 -5.05021371943748e-016 -1 6.321169716133612e-016 -5.05021371943748e-016 -1 6.321169716133612e-016 -5.05021371943748e-016 -1 6.321169716133612e-016 -5.05021371943748e-016 -1 6.321169716133612e-016 -5.05021371943748e-016 -1 6.321169716133612e-016 -5.05021371943748e-016 -1 6.321169716133612e-016 -5.05021371943748e-016 -1 6.321169716133612e-016 -5.05021371943748e-016 -1 6.321169716133612e-016 -5.05021371943748e-016 -1 -6.321169716133612e-016 5.05021371943748e-016 1 -6.321169716133612e-016 5.05021371943748e-016 1 -6.321169716133612e-016 5.05021371943748e-016 1 -6.321169716133612e-016 5.05021371943748e-016 1 -6.321169716133612e-016 5.05021371943748e-016 1 -6.321169716133612e-016 5.05021371943748e-016 1 -6.321169716133612e-016 5.05021371943748e-016 1 -6.321169716133612e-016 5.05021371943748e-016 1 -6.321169716133612e-016 5.05021371943748e-016 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID1701\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1699\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1697\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1698\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1699\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 5 7 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1699\" />\r\n\t\t\t\t\t<p>9 10 11 10 12 11 12 13 11 11 13 14 13 15 14 14 15 16 17 16 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1702\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1708\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1712\">1350.204231192804 652.0688760585458 -87.51072795198937 1289.427267505836 687.1874358613127 -87.93663638488664 1285.760778345408 689.3053477643002 -87.93745815518946 1350.204230039824 652.068876713472 -87.53092804271492 1350.204231192804 652.0688760585458 -87.51072795198937 1289.427267505836 687.1874358613127 -87.93663638488664 1285.760778345408 689.3053477643002 -87.93745815518946 1350.204230039824 652.068876713472 -87.53092804271492</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1712\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1709\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1713\">0.5001863996026135 0.8658037708368598 0.01404977071873604 0.5001863996026135 0.8658037708368598 0.01404977071873604 0.5001863996026135 0.8658037708368598 0.01404977071873604 0.5001863996026135 0.8658037708368598 0.01404977071873604 0.5001863996026128 0.8658037708368603 0.01404977071873473 0.5001863996026128 0.8658037708368603 0.01404977071873473 0.5001863996026128 0.8658037708368603 0.01404977071873473 0.5001863996026128 0.8658037708368603 0.01404977071873473</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1713\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1711\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID1714\">-214.1065395012287 -38.25472114353224 -196.2773451249433 -38.41001976672896 -195.2018510095087 -38.41031816108796 -214.1065391644324 -38.26208523432077 -214.106539501229 -38.25472114353165 -196.2773451249436 -38.41001976672835 -195.2018510095091 -38.41031816108737 -214.1065391644327 -38.26208523432018</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1714\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1710\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1708\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1709\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1710\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1711\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1715\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1716\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID1720\">1350.20437538212 652.0687941544434 -84.9845419763617 1727.382410402378 434.1284176087024 -85.01313571523843 1350.204231192804 652.0688760585458 -87.51072795198937</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID1720\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1717\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID1721\">0.5003039120511597 0.8658498689646328 -4.836637956543635e-007 0.5003039120511597 0.8658498689646328 -4.836637956543635e-007 0.5003039120511597 0.8658498689646328 -4.836637956543635e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID1721\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1719\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1722\">-214.0817950659906 -30.98457604908541 -324.7282527613083 -30.99500113474287 -214.0817529468867 -31.90560653397943</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID1722\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1718\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1716\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1717\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1718\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1719\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1723\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1724\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1727\">431.4352499805456 229.3172159827213 -112.5372687831739 387.8375222941295 254.4883734188766 -86.54752015961964 387.8388145985074 254.4876282496325 -112.5401579120884 431.4339576761679 229.3179611519613 -86.54463103070464 431.4339576761679 229.3179611519613 -86.54463103070464 431.4352499805456 229.3172159827213 -112.5372687831739 387.8375222941295 254.4883734188766 -86.54752015961964 387.8388145985074 254.4876282496325 -112.5401579120884</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1727\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1725\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1728\">-0.4999999785950952 -0.8660254161425653 -3.141892026463453e-008 -0.4999999785950952 -0.8660254161425653 -3.141892026463453e-008 -0.4999999785950952 -0.8660254161425653 -3.141892026463453e-008 -0.4999999785950952 -0.8660254161425653 -3.141892026463453e-008 0.4999999785950952 0.8660254161425653 3.141892026463453e-008 0.4999999785950952 0.8660254161425653 3.141892026463453e-008 0.4999999785950952 0.8660254161425653 3.141892026463453e-008 0.4999999785950952 0.8660254161425653 3.141892026463453e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1728\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1726\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1724\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1725\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1726\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1729\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1730\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1733\">485.7267976522059 197.9719780873361 -111.9415296743014 436.0432226672159 226.6568009186958 -86.49462530466658 436.0444880024642 226.6560713004119 -111.9448221131468 485.7255323169561 197.9727077056182 -86.49133286582128 485.7255323169561 197.9727077056182 -86.49133286582128 485.7267976522059 197.9719780873361 -111.9415296743014 436.0432226672159 226.6568009186958 -86.49462530466658 436.0444880024642 226.6560713004119 -111.9448221131468</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1733\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1731\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1734\">-0.4999999785950979 -0.8660254161425637 -3.141892094095984e-008 -0.4999999785950979 -0.8660254161425637 -3.141892094095984e-008 -0.4999999785950979 -0.8660254161425637 -3.141892094095984e-008 -0.4999999785950979 -0.8660254161425637 -3.141892094095984e-008 0.4999999785950979 0.8660254161425637 3.141892094095984e-008 0.4999999785950979 0.8660254161425637 3.141892094095984e-008 0.4999999785950979 0.8660254161425637 3.141892094095984e-008 0.4999999785950979 0.8660254161425637 3.141892094095984e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1734\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1732\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1730\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1731\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1732\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1735\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1736\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1739\">535.5282316449777 169.219108429163 -112.5583613187373 492.2988081128531 194.177625403122 -87.34858828901054 492.3000616371221 194.1769025952922 -112.5612260427639 535.5269781207085 169.2198312369933 -87.34572356498458 535.5269781207085 169.2198312369933 -87.34572356498458 535.5282316449777 169.219108429163 -112.5583613187373 492.2988081128531 194.177625403122 -87.34858828901054 492.3000616371221 194.1769025952922 -112.5612260427639</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1739\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1737\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1740\">-0.4999999785950953 -0.8660254161425653 -3.141892097256434e-008 -0.4999999785950953 -0.8660254161425653 -3.141892097256434e-008 -0.4999999785950953 -0.8660254161425653 -3.141892097256434e-008 -0.4999999785950953 -0.8660254161425653 -3.141892097256434e-008 0.4999999785950953 0.8660254161425653 3.141892097256434e-008 0.4999999785950953 0.8660254161425653 3.141892097256434e-008 0.4999999785950953 0.8660254161425653 3.141892097256434e-008 0.4999999785950953 0.8660254161425653 3.141892097256434e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1740\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1738\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1736\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1737\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1738\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1741\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1742\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1745\">590.0409378296062 137.7461846279766 -112.3461133749876 539.7116154385158 166.8038298673591 -86.63889746779415 539.7128937180845 166.8030927851114 -112.3494486065542 590.0396595500408 137.7469217102212 -86.63556223622754 590.0396595500408 137.7469217102212 -86.63556223622754 590.0409378296062 137.7461846279766 -112.3461133749876 539.7116154385158 166.8038298673591 -86.63889746779415 539.7128937180845 166.8030927851114 -112.3494486065542</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1745\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1743\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1746\">-0.499999978595097 -0.8660254161425642 -3.141892469967194e-008 -0.499999978595097 -0.8660254161425642 -3.141892469967194e-008 -0.499999978595097 -0.8660254161425642 -3.141892469967194e-008 -0.499999978595097 -0.8660254161425642 -3.141892469967194e-008 0.499999978595097 0.8660254161425642 3.141892469967194e-008 0.499999978595097 0.8660254161425642 3.141892469967194e-008 0.499999978595097 0.8660254161425642 3.141892469967194e-008 0.499999978595097 0.8660254161425642 3.141892469967194e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1746\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1744\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1742\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1743\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1744\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1747\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1748\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1751\">639.4710401148624 109.2077033984133 -112.3994041347029 596.2570374445676 134.1573171412433 -87.38474819359587 596.2582812679319 134.1565999271447 -112.4022678374343 639.4697962914978 109.2084206125151 -87.38188449086454 639.4697962914978 109.2084206125151 -87.38188449086454 639.4710401148624 109.2077033984133 -112.3994041347029 596.2570374445676 134.1573171412433 -87.38474819359587 596.2582812679319 134.1565999271447 -112.4022678374343</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1751\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1749\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1752\">-0.499999978595097 -0.8660254161425642 -3.141892477556609e-008 -0.499999978595097 -0.8660254161425642 -3.141892477556609e-008 -0.499999978595097 -0.8660254161425642 -3.141892477556609e-008 -0.499999978595097 -0.8660254161425642 -3.141892477556609e-008 0.499999978595097 0.8660254161425642 3.141892477556609e-008 0.499999978595097 0.8660254161425642 3.141892477556609e-008 0.499999978595097 0.8660254161425642 3.141892477556609e-008 0.499999978595097 0.8660254161425642 3.141892477556609e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1752\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1750\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1748\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1749\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1750\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1753\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1754\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1757\">692.9090252641864 78.35527006262555 -112.7872980521353 643.5326424387439 106.8627353972452 -86.48978277234102 643.5339500637343 106.8619813938271 -112.7905701306015 692.9077176391965 78.35602406604176 -86.48651069387421 692.9077176391965 78.35602406604176 -86.48651069387421 692.9090252641864 78.35527006262555 -112.7872980521353 643.5326424387439 106.8627353972452 -86.48978277234102 643.5339500637343 106.8619813938271 -112.7905701306015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1757\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1755\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1758\">-0.4999999785950972 -0.8660254161425642 -3.141892006091294e-008 -0.4999999785950972 -0.8660254161425642 -3.141892006091294e-008 -0.4999999785950972 -0.8660254161425642 -3.141892006091294e-008 -0.4999999785950972 -0.8660254161425642 -3.141892006091294e-008 0.4999999785950972 0.8660254161425642 3.141892006091294e-008 0.4999999785950972 0.8660254161425642 3.141892006091294e-008 0.4999999785950972 0.8660254161425642 3.141892006091294e-008 0.4999999785950972 0.8660254161425642 3.141892006091294e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1758\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1756\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1754\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1755\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1756\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1759\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1760\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1763\">742.9560663884901 49.46059905918128 -113.13220702338 699.6798825834704 74.44611307653304 -87.61353945414544 699.6811514655375 74.44538141308158 -113.1350748451846 742.9547975064207 49.46133072263183 -87.61067163234014 742.9547975064207 49.46133072263183 -87.61067163234014 742.9560663884901 49.46059905918128 -113.13220702338 699.6798825834704 74.44611307653304 -87.61353945414544 699.6811514655375 74.44538141308158 -113.1350748451846</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1763\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1761\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1764\">-0.499999978595097 -0.8660254161425643 -3.141892621251344e-008 -0.499999978595097 -0.8660254161425643 -3.141892621251344e-008 -0.499999978595097 -0.8660254161425643 -3.141892621251344e-008 -0.499999978595097 -0.8660254161425643 -3.141892621251344e-008 0.499999978595097 0.8660254161425643 3.141892621251344e-008 0.499999978595097 0.8660254161425643 3.141892621251344e-008 0.499999978595097 0.8660254161425643 3.141892621251344e-008 0.499999978595097 0.8660254161425643 3.141892621251344e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1764\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1762\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1760\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1761\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1762\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1765\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1766\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1769\">796.4369008434645 18.58342665341797 -113.1555314799599 746.5683287325666 47.37505757302142 -86.43757637583488 746.569657262642 47.3742915152975 -113.1588361743477 796.4355723133887 18.58419271114462 -86.43427168144694 796.4355723133887 18.58419271114462 -86.43427168144694 796.4369008434645 18.58342665341797 -113.1555314799599 746.5683287325666 47.37505757302142 -86.43757637583488 746.569657262642 47.3742915152975 -113.1588361743477</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1769\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1767\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1770\">-0.4999999785950978 -0.8660254161425638 -3.141892082126392e-008 -0.4999999785950978 -0.8660254161425638 -3.141892082126392e-008 -0.4999999785950978 -0.8660254161425638 -3.141892082126392e-008 -0.4999999785950978 -0.8660254161425638 -3.141892082126392e-008 0.4999999785950978 0.8660254161425638 3.141892082126392e-008 0.4999999785950978 0.8660254161425638 3.141892082126392e-008 0.4999999785950978 0.8660254161425638 3.141892082126392e-008 0.4999999785950978 0.8660254161425638 3.141892082126392e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1770\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1768\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1766\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1767\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1768\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1771\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1772\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1775\">847.0691129813966 -10.64909298677731 -113.120241707251 803.0153768513754 14.78534104567734 -87.50701936691772 803.0166504370822 14.78460667000354 -113.1231610570143 847.0678393956899 -10.64835861110623 -87.50410001715494 847.0678393956899 -10.64835861110623 -87.50410001715494 847.0691129813966 -10.64909298677731 -113.120241707251 803.0153768513754 14.78534104567734 -87.50701936691772 803.0166504370822 14.78460667000354 -113.1231610570143</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1775\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1773\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1776\">-0.4999999785950962 -0.8660254161425647 -3.141892027027238e-008 -0.4999999785950962 -0.8660254161425647 -3.141892027027238e-008 -0.4999999785950962 -0.8660254161425647 -3.141892027027238e-008 -0.4999999785950962 -0.8660254161425647 -3.141892027027238e-008 0.4999999785950962 0.8660254161425647 3.141892027027238e-008 0.4999999785950962 0.8660254161425647 3.141892027027238e-008 0.4999999785950962 0.8660254161425647 3.141892027027238e-008 0.4999999785950962 0.8660254161425647 3.141892027027238e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1776\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1774\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1772\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1773\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1774\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1777\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1778\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1781\">1006.67373240059 18.02704966436841 -87.03303789133219 961.0078480497299 -8.338161157152626 -113.5559273844007 1006.668797429226 18.02420098315861 -113.5672498779258 961.0127830211001 -8.33531247593919 -87.02171539780642 961.0127830211001 -8.33531247593919 -87.02171539780642 1006.67373240059 18.02704966436841 -87.03303789133219 961.0078480497299 -8.338161157152626 -113.5559273844007 1006.668797429226 18.02420098315861 -113.5672498779258</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1781\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1779\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1782\">0.5000000103041933 -0.8660253978353099 -1.716483903350572e-008 0.5000000103041933 -0.8660253978353099 -1.716483903350572e-008 0.5000000103041933 -0.8660253978353099 -1.716483903350572e-008 0.5000000103041933 -0.8660253978353099 -1.716483903350572e-008 -0.5000000103041933 0.8660253978353099 1.716483903350572e-008 -0.5000000103041933 0.8660253978353099 1.716483903350572e-008 -0.5000000103041933 0.8660253978353099 1.716483903350572e-008 -0.5000000103041933 0.8660253978353099 1.716483903350572e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1782\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1780\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1778\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1779\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1780\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1783\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1784\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1787\">1065.621812558702 52.06074054779128 -87.07114970135208 1013.508839608722 21.97330127197665 -112.8967712098346 1065.617006971538 52.05796655279937 -112.9096924126482 1013.513645195876 21.97607526697175 -87.05822849853837 1013.513645195876 21.97607526697175 -87.05822849853837 1065.621812558702 52.06074054779128 -87.07114970135208 1013.508839608722 21.97330127197665 -112.8967712098346 1065.617006971538 52.05796655279937 -112.9096924126482</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1787\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1785\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1788\">0.5000000103041971 -0.8660253978353076 -1.716483983530033e-008 0.5000000103041971 -0.8660253978353076 -1.716483983530033e-008 0.5000000103041971 -0.8660253978353076 -1.716483983530033e-008 0.5000000103041971 -0.8660253978353076 -1.716483983530033e-008 -0.5000000103041971 0.8660253978353076 1.716483983530033e-008 -0.5000000103041971 0.8660253978353076 1.716483983530033e-008 -0.5000000103041971 0.8660253978353076 1.716483983530033e-008 -0.5000000103041971 0.8660253978353076 1.716483983530033e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1788\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1786\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1784\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1785\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1786\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1789\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1790\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1793\">1113.945168690705 79.96024398386408 -86.99496087404728 1068.999185084677 54.01066806166364 -113.4716509262571 1113.940242344954 79.95740028172804 -113.4827949089546 1069.004111430435 54.01351176379603 -86.98381689134922 1069.004111430435 54.01351176379603 -86.98381689134922 1113.945168690705 79.96024398386408 -86.99496087404728 1068.999185084677 54.01066806166364 -113.4716509262571 1113.940242344954 79.95740028172804 -113.4827949089546</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1793\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1791\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1794\">0.5000000103041961 -0.8660253978353081 -1.71648393599861e-008 0.5000000103041961 -0.8660253978353081 -1.71648393599861e-008 0.5000000103041961 -0.8660253978353081 -1.71648393599861e-008 0.5000000103041961 -0.8660253978353081 -1.71648393599861e-008 -0.5000000103041961 0.8660253978353081 1.71648393599861e-008 -0.5000000103041961 0.8660253978353081 1.71648393599861e-008 -0.5000000103041961 0.8660253978353081 1.71648393599861e-008 -0.5000000103041961 0.8660253978353081 1.71648393599861e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1794\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1792\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1790\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1791\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1792\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1795\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1796\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1799\">1173.367540372524 114.26776720921 -86.80692888603346 1121.099032674314 84.09052991576709 -113.3181417638128 1173.362607268325 114.2649196058192 -113.3311015027801 1121.103965778509 84.09337751915928 -86.79396914706612 1121.103965778509 84.09337751915928 -86.79396914706612 1173.367540372524 114.26776720921 -86.80692888603346 1121.099032674314 84.09052991576709 -113.3181417638128 1173.362607268325 114.2649196058192 -113.3311015027801</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1799\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1797\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1800\">0.5000000103041959 -0.8660253978353081 -1.716484533751793e-008 0.5000000103041959 -0.8660253978353081 -1.716484533751793e-008 0.5000000103041959 -0.8660253978353081 -1.716484533751793e-008 0.5000000103041959 -0.8660253978353081 -1.716484533751793e-008 -0.5000000103041959 0.8660253978353081 1.716484533751793e-008 -0.5000000103041959 0.8660253978353081 1.716484533751793e-008 -0.5000000103041959 0.8660253978353081 1.716484533751793e-008 -0.5000000103041959 0.8660253978353081 1.716484533751793e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1800\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1798\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1796\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1797\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1798\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1801\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1802\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1805\">1221.648184523225 142.1426108702804 -86.70957064680616 1176.42261465006 116.0316157483057 -113.753750438534 1221.643152619874 142.1397062356932 -113.7649637237448 1176.427646553412 116.0345203828942 -86.69835736159536 1176.427646553412 116.0345203828942 -86.69835736159536 1221.648184523225 142.1426108702804 -86.70957064680616 1176.42261465006 116.0316157483057 -113.753750438534 1221.643152619874 142.1397062356932 -113.7649637237448</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1805\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1803\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1806\">0.5000000103041936 -0.8660253978353096 -1.716484234487599e-008 0.5000000103041936 -0.8660253978353096 -1.716484234487599e-008 0.5000000103041936 -0.8660253978353096 -1.716484234487599e-008 0.5000000103041936 -0.8660253978353096 -1.716484234487599e-008 -0.5000000103041936 0.8660253978353096 1.716484234487599e-008 -0.5000000103041936 0.8660253978353096 1.716484234487599e-008 -0.5000000103041936 0.8660253978353096 1.716484234487599e-008 -0.5000000103041936 0.8660253978353096 1.716484234487599e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1806\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1804\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1802\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1803\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1804\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1807\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1808\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1811\">1280.889252153685 176.3454581531032 -86.68295570711322 1228.47312680722 146.0829937702965 -113.2924390691937 1280.884300765831 176.3425999955712 -113.3054354082071 1228.478078195069 146.0858519278281 -86.66995936809963 1228.478078195069 146.0858519278281 -86.66995936809963 1280.889252153685 176.3454581531032 -86.68295570711322 1228.47312680722 146.0829937702965 -113.2924390691937 1280.884300765831 176.3425999955712 -113.3054354082071</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1811\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1809\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1812\">0.5000000103041938 -0.8660253978353094 -1.716484798947645e-008 0.5000000103041938 -0.8660253978353094 -1.716484798947645e-008 0.5000000103041938 -0.8660253978353094 -1.716484798947645e-008 0.5000000103041938 -0.8660253978353094 -1.716484798947645e-008 -0.5000000103041938 0.8660253978353094 1.716484798947645e-008 -0.5000000103041938 0.8660253978353094 1.716484798947645e-008 -0.5000000103041938 0.8660253978353094 1.716484798947645e-008 -0.5000000103041938 0.8660253978353094 1.716484798947645e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1812\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1810\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1808\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1809\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1810\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1813\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1814\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1817\">1329.087728435182 204.17286217215 -86.62012803820556 1284.190774166879 178.2515933665927 -113.8299798713707 1329.082665734441 204.1699397599559 -113.8411116625073 1284.195836867628 178.2545157787868 -86.60899624706832 1284.195836867628 178.2545157787868 -86.60899624706832 1329.087728435182 204.17286217215 -86.62012803820556 1284.190774166879 178.2515933665927 -113.8299798713707 1329.082665734441 204.1699397599559 -113.8411116625073</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1817\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1815\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1818\">0.5000000103041959 -0.8660253978353081 -1.716483633186364e-008 0.5000000103041959 -0.8660253978353081 -1.716483633186364e-008 0.5000000103041959 -0.8660253978353081 -1.716483633186364e-008 0.5000000103041959 -0.8660253978353081 -1.716483633186364e-008 -0.5000000103041959 0.8660253978353081 1.716483633186364e-008 -0.5000000103041959 0.8660253978353081 1.716483633186364e-008 -0.5000000103041959 0.8660253978353081 1.716483633186364e-008 -0.5000000103041959 0.8660253978353081 1.716483633186364e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1818\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1816\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1814\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1815\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1816\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1819\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1820\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1823\">1388.848562707167 238.6757968715756 -86.49098741943917 1336.303519253958 208.3389015906951 -113.4835884289786 1388.843540059142 238.6728975795659 -113.4966167179976 1336.308541901983 208.3418008827016 -86.47795913042009 1336.308541901983 208.3418008827016 -86.47795913042009 1388.848562707167 238.6757968715756 -86.49098741943917 1336.303519253958 208.3389015906951 -113.4835884289786 1388.843540059142 238.6728975795659 -113.4966167179976</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1823\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1821\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1824\">0.5000000103041968 -0.8660253978353076 -1.716483609331205e-008 0.5000000103041968 -0.8660253978353076 -1.716483609331205e-008 0.5000000103041968 -0.8660253978353076 -1.716483609331205e-008 0.5000000103041968 -0.8660253978353076 -1.716483609331205e-008 -0.5000000103041968 0.8660253978353076 1.716483609331205e-008 -0.5000000103041968 0.8660253978353076 1.716483609331205e-008 -0.5000000103041968 0.8660253978353076 1.716483609331205e-008 -0.5000000103041968 0.8660253978353076 1.716483609331205e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1824\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1822\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1820\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1821\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1822\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1825\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1826\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1829\">1436.966440778774 266.4566675004476 -86.89645067473975 1391.807221936345 240.3839801612171 -113.7508043953941 1436.961444183326 266.4537832471224 -113.7620012363707 1391.812218531794 240.3868644145414 -86.88525383376313 1391.812218531794 240.3868644145414 -86.88525383376313 1436.966440778774 266.4566675004476 -86.89645067473975 1391.807221936345 240.3839801612171 -113.7508043953941 1436.961444183326 266.4537832471224 -113.7620012363707</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1829\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1827\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1830\">0.5000000103041964 -0.8660253978353079 -1.716484487618991e-008 0.5000000103041964 -0.8660253978353079 -1.716484487618991e-008 0.5000000103041964 -0.8660253978353079 -1.716484487618991e-008 0.5000000103041964 -0.8660253978353079 -1.716484487618991e-008 -0.5000000103041964 0.8660253978353079 1.716484487618991e-008 -0.5000000103041964 0.8660253978353079 1.716484487618991e-008 -0.5000000103041964 0.8660253978353079 1.716484487618991e-008 -0.5000000103041964 0.8660253978353079 1.716484487618991e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1830\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1828\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1826\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1827\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1828\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1831\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1834\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1836\">809.4456178879103 857.4348714199859 127.7338088908453 809.4549988427028 857.4402875167875 127.7338071808367</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1836\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1835\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1834\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1835\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1837\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1838\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID1840\">809.452329042777 857.440015845563 168.2229284215063 787.0692383191112 844.5171323863233 168.2286854728091 809.4560865179889 857.4421851676941 190.8921810147911</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID1840\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1839\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1838\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1839\" />\r\n\t\t\t\t\t<p>1 0 2 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1841\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1842\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1844\">1017.283909766527 844.4363160557275 168.1905360721743 994.8091842395482 857.4226241791469 168.1922049614898</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1844\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1843\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1842\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1843\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1845\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1846\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID1848\">902.1532706549345 910.9609409823129 -59.31303393919635 1017.346384968645 844.4002487960429 -59.32158775025934 787.0068365572603 844.4811089644425 -59.28341765597668</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID1848\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1847\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1846\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1847\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1849\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1850\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1852\">795.870918952127 844.5095384071519 139.7111128692514 795.8727059813338 849.5998168044553 139.711112869732</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1852\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1851\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1850\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1851\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1853\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1854\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1856\">795.8648959665587 849.5953142474339 53.671522913513 795.8716185518287 849.5979192026089 127.7362832289213</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1856\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1855\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1854\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1855\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1857\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1858\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1860\">1015.211462024895 845.6338143087585 139.7111128574267 1015.211040298355 844.4325438445633 139.7111128573128</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1860\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1859\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1858\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1859\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1861\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1862\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1864\">795.8586750990293 849.591727529845 -14.8611111269241 795.8586765912279 849.5917283940348 -14.84467216886924</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1864\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1863\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1862\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1863\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1866\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1867\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID1870\">92.50017761075071 10.82809891702337 8.857709516436557 1062.812165297887 0.02962853485072969 8.897423546893208 90.34781652293634 7.301010088096376 8.897507748904332 1062.946982019298 3.571803094074568 8.857625489115776 1062.813679740189 0.06941637188123195 12.44050712263021 90.34781652293634 7.301010088096376 8.897507748904332 1062.812165297887 0.02962853485072969 8.897423546893208 90.37199336996883 7.340628472137354 12.44059132267904 4.240940220820761 179.349937692124 8.857711292331885 90.34781652293634 7.301010088096376 8.897507748904332 0.1456997124098507 179.532575144092 8.897509563895483 92.50017761075071 10.82809891702337 8.857709516436557 92.50017761075071 10.82809891702337 8.857709516436557 1062.948496461599 3.611590931105297 12.40070906485158 1062.946982019298 3.571803094074568 8.857625489115776 92.52435445778357 10.86771730106358 12.40079309020882 1062.813679740189 0.06941637188123195 12.44050712263021 92.52435445778357 10.86771730106358 12.40079309020882 90.37199336996883 7.340628472137354 12.44059132267904 1062.948496461599 3.611590931105297 12.40070906485158 90.37199336996883 7.340628472137354 12.44059132267904 0.1456997124098507 179.532575144092 8.897509563895483 90.34781652293634 7.301010088096376 8.897507748904332 0.1917001757206549 179.5305236015307 12.44059313722994 1310.190958538479 2216.278886132451 8.897530989336815 4.240940220820761 179.349937692124 8.857711292331885 0.1456997124098507 179.532575144092 8.897509563895483 1314.277898451838 2216.08334362532 8.857732717638669 4.240940220820761 179.349937692124 8.857711292331885 92.52435445778357 10.86771730106358 12.40079309020882 92.50017761075071 10.82809891702337 8.857709516436557 4.286940684131821 179.3478861495629 12.40079486566629 90.37199336996883 7.340628472137354 12.44059132267904 4.286940684131821 179.3478861495629 12.40079486566629 0.1917001757206549 179.5305236015307 12.44059313722994 92.52435445778357 10.86771730106358 12.40079309020882 1310.236865764016 2216.276689631783 12.44061456266854 0.1456997124098507 179.532575144092 8.897509563895483 0.1917001757206549 179.5305236015307 12.44059313722994 1310.190958538479 2216.278886132451 8.897530989336815 1138.259920397394 2557.729247389406 8.856749648562527 1142.291939538897 2541.984612555508 8.897534412630478 1135.10172236848 2556.123132257699 8.896547901324539 1145.450137567812 2543.590727687213 8.857736159868466 1310.190958538479 2216.278886132451 8.897530989336815 1314.277898451838 2216.08334362532 8.857732717638669 4.240940220820761 179.349937692124 8.857711292331885 1314.32380567738 2216.081147124653 12.40081629097034 4.286940684131821 179.3478861495629 12.40079486566629 1314.277898451838 2216.08334362532 8.857732717638669 4.286940684131821 179.3478861495629 12.40079486566629 1310.236865764016 2216.276689631783 12.44061456266854 0.1917001757206549 179.5305236015307 12.44059313722994 1314.32380567738 2216.081147124653 12.40081629097034 1142.327314268961 2542.002847943669 12.44061798617707 1310.190958538479 2216.278886132451 8.897530989336815 1310.236865764016 2216.276689631783 12.44061456266854 1142.291939538897 2541.984612555508 8.897534412630478 1142.32731426896 2542.002847943938 12.41437915591837 1142.32731426896 2542.002847943938 12.41437915591837 1135.10172236848 2556.123132257699 8.896547901324539 1142.291939538897 2541.984612555508 8.897534412630478 1135.137097098543 2556.14136764613 12.41339264461243 1135.10172236848 2556.123132257699 8.896547901324539 1138.295295127457 2557.747482777843 12.37359439185161 1138.259920397394 2557.729247389406 8.856749648562527 1135.137097098543 2556.14136764613 12.41339264461243 1138.259920397394 2557.729247389406 8.856749648562527 1145.485512297875 2543.608963075653 12.37458090315755 1145.450137567812 2543.590727687213 8.857736159868466 1138.295295127457 2557.747482777843 12.37359439185161 1314.277898451838 2216.08334362532 8.857732717638669 1145.485512297874 2543.608963075375 12.40081973341631 1314.32380567738 2216.081147124653 12.40081629097034 1145.450137567812 2543.590727687213 8.857736159868466 1145.485512297875 2543.608963075653 12.37458090315755 1310.236865764016 2216.276689631783 12.44061456266854 1145.485512297874 2543.608963075375 12.40081973341631 1142.327314268961 2542.002847943669 12.44061798617707 1314.32380567738 2216.081147124653 12.40081629097034 1142.32731426896 2542.002847943938 12.41437915591837 1145.485512297874 2543.608963075375 12.40081973341631 1145.485512297875 2543.608963075653 12.37458090315755 1142.327314268961 2542.002847943669 12.44061798617707 1142.32731426896 2542.002847943938 12.41437915591837 1138.295295127457 2557.747482777843 12.37359439185161 1135.137097098543 2556.14136764613 12.41339264461243 1145.485512297875 2543.608963075653 12.37458090315755</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID1870\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1868\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID1871\">-8.406816501138346e-005 -0.0112315790393927 -0.9999369202928881 -8.406816501138346e-005 -0.0112315790393927 -0.9999369202928881 -8.406816501138346e-005 -0.0112315790393927 -0.9999369202928881 -8.406816501138346e-005 -0.0112315790393927 -0.9999369202928881 -0.007476591498052732 -0.9999089684288283 0.01123189365904827 -0.007476591498052732 -0.9999089684288283 0.01123189365904827 -0.007476591498052732 -0.9999089684288283 0.01123189365904827 -0.007476591498052732 -0.9999089684288283 0.01123189365904827 -0.009949963240431858 -0.005211042071798002 -0.9999369196464546 -0.009949963240431858 -0.005211042071798002 -0.9999369196464546 -0.009949963240431858 -0.005211042071798002 -0.9999369196464546 -0.009949963240431858 -0.005211042071798002 -0.9999369196464546 0.007476591498052342 0.9999089684288283 -0.01123189365904008 0.007476591498052342 0.9999089684288283 -0.01123189365904008 0.007476591498052342 0.9999089684288283 -0.01123189365904008 0.007476591498052342 0.9999089684288283 -0.01123189365904008 8.40681650115153e-005 0.01123157903940609 0.9999369202928881 8.40681650115153e-005 0.01123157903940609 0.9999369202928881 8.40681650115153e-005 0.01123157903940609 0.9999369202928881 8.40681650115153e-005 0.01123157903940609 0.9999369202928881 -0.8858061326177866 -0.4639195390245603 0.01123195120893777 -0.8858061326177866 -0.4639195390245603 0.01123195120893777 -0.8858061326177866 -0.4639195390245603 0.01123195120893777 -0.8858061326177866 -0.4639195390245603 0.01123195120893777 -0.009446584998557581 0.006076100517173459 -0.9999369195276122 -0.009446584998557581 0.006076100517173459 -0.9999369195276122 -0.009446584998557581 0.006076100517173459 -0.9999369195276122 -0.009446584998557581 0.006076100517173459 -0.9999369195276122 0.8858061326177862 0.4639195390245602 -0.01123195120896825 0.8858061326177862 0.4639195390245602 -0.01123195120896825 0.8858061326177862 0.4639195390245602 -0.01123195120896825 0.8858061326177862 0.4639195390245602 -0.01123195120896825 0.009949963240438857 0.005211042071801452 0.9999369196464546 0.009949963240438857 0.005211042071801452 0.9999369196464546 0.009949963240438857 0.005211042071801452 0.9999369196464546 0.009949963240438857 0.005211042071801452 0.9999369196464546 -0.8409923455091957 0.5409304186578089 0.01123196178899698 -0.8409923455091957 0.5409304186578089 0.01123196178899698 -0.8409923455091957 0.5409304186578089 0.01123196178899698 -0.8409923455091957 0.5409304186578089 0.01123196178899698 -0.009983534929360124 -0.005146431768694199 -0.9999369196456167 -0.009983534929360124 -0.005146431768694199 -0.9999369196456167 -0.009983534929360124 -0.005146431768694199 -0.9999369196456167 -0.009983534929360124 -0.005146431768694199 -0.9999369196456167 -0.009983534929360124 -0.005146431768694199 -0.9999369196456167 -0.009983534929360124 -0.005146431768694199 -0.9999369196456167 0.8409923455091954 -0.5409304186578084 -0.01123196178903927 0.8409923455091954 -0.5409304186578084 -0.01123196178903927 0.8409923455091954 -0.5409304186578084 -0.01123196178903927 0.8409923455091954 -0.5409304186578084 -0.01123196178903927 0.009446584998187024 -0.006076100516934985 0.9999369195276171 0.009446584998187024 -0.006076100516934985 0.9999369195276171 0.009446584998187024 -0.006076100516934985 0.9999369195276171 0.009446584998187024 -0.006076100516934985 0.9999369195276171 -0.8887947588331656 -0.4581672088458828 0.0112554612996808 -0.8887947588331656 -0.4581672088458828 0.0112554612996808 -0.8887947588331656 -0.4581672088458828 0.0112554612996808 -0.8887947588331656 -0.4581672088458828 0.0112554612996808 -0.8887947588331656 -0.4581672088458828 0.0112554612996808 -0.8912993593853554 -0.4532741001100978 0.01131557018607728 -0.8912993593853554 -0.4532741001100978 0.01131557018607728 -0.8912993593853554 -0.4532741001100978 0.01131557018607728 -0.8912993593853554 -0.4532741001100978 0.01131557018607728 -0.453303748453581 0.8913561060372132 -6.219412601970304e-005 -0.453303748453581 0.8913561060372132 -6.219412601970304e-005 -0.453303748453581 0.8913561060372132 -6.219412601970304e-005 -0.453303748453581 0.8913561060372132 -6.219412601970304e-005 0.8912993593853493 0.4532741001100949 -0.0113155701866975 0.8912993593853493 0.4532741001100949 -0.0113155701866975 0.8912993593853493 0.4532741001100949 -0.0113155701866975 0.8912993593853493 0.4532741001100949 -0.0113155701866975 0.888794758251552 0.458167209974222 -0.01125546129675307 0.888794758251552 0.458167209974222 -0.01125546129675307 0.888794758251552 0.458167209974222 -0.01125546129675307 0.888794758251552 0.458167209974222 -0.01125546129675307 0.888794758251552 0.458167209974222 -0.01125546129675307 0.009983534929420539 0.005146431768725798 0.999936919645616 0.009983534929420539 0.005146431768725798 0.999936919645616 0.009983534929420539 0.005146431768725798 0.999936919645616 0.009983534929420539 0.005146431768725798 0.999936919645616 -0.4533031265400491 0.8913564244840649 9.318313357774754e-009 -0.4533031265400491 0.8913564244840649 9.318313357774754e-009 -0.4533031265400491 0.8913564244840649 9.318313357774754e-009 -0.4533031265400491 0.8913564244840649 9.318313357774754e-009 0.009983326124922056 0.005146842351984309 0.9999369196170763 0.009983326124922056 0.005146842351984309 0.9999369196170763 0.009983326124922056 0.005146842351984309 0.9999369196170763 0.009983326124922056 0.005146842351984309 0.9999369196170763</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID1871\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1869\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1867\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1868\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"46\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1869\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19 20 21 22 21 20 23 24 25 26 25 24 27 28 29 30 29 28 31 32 33 34 33 32 35 36 37 38 37 36 39 40 41 42 41 40 43 41 43 44 44 43 45 46 47 48 47 46 49 50 51 52 51 50 53 54 55 56 55 54 57 57 54 58 59 60 61 60 59 62 63 64 65 64 63 66 67 68 69 68 67 70 71 72 73 72 71 74 72 74 75 76 77 78 77 76 79 80 81 82 81 80 83 84 85 86 85 84 87</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1872\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1873\">\r\n\t\t\t\t\t<float_array count=\"255\" id=\"ID1876\">90.22629365755977 7.310999937286425 3.582965833562128 4.141240971722084 179.3182576147118 3.543169376551816 0.04600046331202634 179.5008950666798 3.58296764811422 92.37865474537435 10.83808876621336 3.543167601093046 1062.66798002778 0.03978783703072963 3.582881633514489 92.37865474537435 10.83808876621336 3.543167601093046 90.22629365755977 7.310999937286425 3.582965833562128 1062.802796749189 3.581962396254227 3.543083575735807 4.095240508411308 179.3203091572736 8.580321610907049e-005 92.37865474537435 10.83808876621336 3.543167601093046 92.35447789834183 10.79847038217224 8.402732078138797e-005 4.141240971722084 179.3182576147118 3.543169376551816 4.141240971722084 179.3182576147118 3.543169376551816 1310.09116605161 2216.247061096935 3.582989073552824 0.04600046331202634 179.5008950666798 3.58296764811422 1314.178105964979 2216.051518589797 3.543190801854621 90.22629365755977 7.310999937286425 3.582965833562128 1.70530256582424e-013 179.5029466092412 0.03988407477976352 90.20211681052714 7.271381553245675 0.03988225978861237 0.04600046331202634 179.5008950666798 3.58296764811422 92.35447789834183 10.79847038217224 8.402732078138797e-005 1062.802796749189 3.581962396254227 3.543083575735807 1062.80128230689 3.54217455922344 5.684341886080802e-014 92.37865474537435 10.83808876621336 3.543167601093046 1062.66798002778 0.03978783703072963 3.582881633514489 90.20211681052714 7.271381553245675 0.03988225978861237 1062.666465585479 -7.958078640513122e-013 0.03979805777748879 90.22629365755977 7.310999937286425 3.582965833562128 4.095240508411308 179.3203091572736 8.580321610907049e-005 90.20211681052714 7.271381553245675 0.03988225978861237 1.70530256582424e-013 179.5029466092412 0.03988407477976352 92.35447789834183 10.79847038217224 8.402732078138797e-005 4.095240508411308 179.3203091572736 8.580321610907049e-005 1314.178105964979 2216.051518589797 3.543190801854621 4.141240971722084 179.3182576147118 3.543169376551816 1314.132198739434 2216.053715090467 0.0001072285228929104 1310.09116605161 2216.247061096935 3.582989073552824 1138.090357123671 2557.64248494738 3.543194392106216 1134.941083898214 2556.019056673462 3.582992644687522 1147.178187813664 2540.013087741069 3.543194206816338 1314.178105964979 2216.051518589797 3.543190801854621 1310.09116605161 2216.247061096935 3.582989073552824 1.70530256582424e-013 179.5029466092412 0.03988407477976352 0.04600046331202634 179.5008950666798 3.58296764811422 1310.045258826063 2216.249257597603 0.03990550022109574 92.35447789834183 10.79847038217224 8.402732078138797e-005 1062.666465585479 -7.958078640513122e-013 0.03979805777748879 90.20211681052714 7.271381553245675 0.03988225978861237 1062.80128230689 3.54217455922344 5.684341886080802e-014 1310.045258826063 2216.249257597603 0.03990550022109574 4.095240508411308 179.3203091572736 8.580321610907049e-005 1.70530256582424e-013 179.5029466092412 0.03988407477976352 1314.132198739434 2216.053715090467 0.0001072285228929104 1314.132198739434 2216.053715090467 0.0001072285228929104 1147.178187813664 2540.013087741069 3.543194206816338 1314.178105964979 2216.051518589797 3.543190801854621 1147.142813083597 2539.994852352915 0.0001106332699123414 1147.143210436081 2539.995057184915 0.03990890292840277 1138.055379746086 2557.624454391229 0.03990908821873518 1147.178187813664 2540.013087741069 3.543194206816338 1147.143210436081 2539.995057184915 0.03990890292840277 1138.090357123671 2557.64248494738 3.543194392106216 1134.941083898214 2556.019056673462 3.582992644687522 1138.055379746086 2557.624454391229 0.03990908821873518 1134.905709168148 2556.000821285312 0.03990907113904996 1138.090357123671 2557.64248494738 3.543194392106216 1134.941083898214 2556.019056673462 3.582992644687522 1310.045258826063 2216.249257597603 0.03990550022109574 1310.09116605161 2216.247061096935 3.582989073552824 1143.993539858141 2538.371424078999 0.03990888584871755 1134.905709168148 2556.000821285312 0.03990907113904996 1147.142813083597 2539.994852352915 0.0001106332699123414 1310.045258826063 2216.249257597603 0.03990550022109574 1143.993539858141 2538.371424078999 0.03990888584871755 1314.132198739434 2216.053715090467 0.0001072285228929104 1147.143210436081 2539.995057184915 0.03990890292840277 1147.142813083597 2539.994852352915 0.0001106332699123414 1143.993539858141 2538.371424078999 0.03990888584871755 1147.178187813664 2540.013087741069 3.543194206816338 1147.178187813662 2540.013087777924 0.03990890311803241 1147.143210436081 2539.995057184915 0.03990890292840277 1138.055379746086 2557.624454391229 0.03990908821873518 1143.993539858141 2538.371424078999 0.03990888584871755 1134.905709168148 2556.000821285312 0.03990907113904996 1147.143210436081 2539.995057184915 0.03990890292840277</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"85\" source=\"#ID1876\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1874\">\r\n\t\t\t\t\t<float_array count=\"255\" id=\"ID1877\">0.009949963240446124 0.005211042071805094 0.9999369196464544 0.009949963240446124 0.005211042071805094 0.9999369196464544 0.009949963240446124 0.005211042071805094 0.9999369196464544 0.009949963240446124 0.005211042071805094 0.9999369196464544 8.406816501121779e-005 0.01123157903937021 0.9999369202928883 8.406816501121779e-005 0.01123157903937021 0.9999369202928883 8.406816501121779e-005 0.01123157903937021 0.9999369202928883 8.406816501121779e-005 0.01123157903937021 0.9999369202928883 0.8858061326177864 0.4639195390245602 -0.01123195120895017 0.8858061326177864 0.4639195390245602 -0.01123195120895017 0.8858061326177864 0.4639195390245602 -0.01123195120895017 0.8858061326177864 0.4639195390245602 -0.01123195120895017 0.009446584998560999 -0.006076100517175387 0.9999369195276121 0.009446584998560999 -0.006076100517175387 0.9999369195276121 0.009446584998560999 -0.006076100517175387 0.9999369195276121 0.009446584998560999 -0.006076100517175387 0.9999369195276121 -0.8858061326177862 -0.463919539024561 0.01123195120894674 -0.8858061326177862 -0.463919539024561 0.01123195120894674 -0.8858061326177862 -0.463919539024561 0.01123195120894674 -0.8858061326177862 -0.463919539024561 0.01123195120894674 0.007476591498052677 0.9999089684288282 -0.01123189365905919 0.007476591498052677 0.9999089684288282 -0.01123189365905919 0.007476591498052677 0.9999089684288282 -0.01123189365905919 0.007476591498052677 0.9999089684288282 -0.01123189365905919 -0.007476591498052786 -0.9999089684288277 0.0112318936590819 -0.007476591498052786 -0.9999089684288277 0.0112318936590819 -0.007476591498052786 -0.9999089684288277 0.0112318936590819 -0.007476591498052786 -0.9999089684288277 0.0112318936590819 -0.009949963240445885 -0.005211042071805361 -0.9999369196464544 -0.009949963240445885 -0.005211042071805361 -0.9999369196464544 -0.009949963240445885 -0.005211042071805361 -0.9999369196464544 -0.009949963240445885 -0.005211042071805361 -0.9999369196464544 0.8409923455091952 -0.5409304186578083 -0.01123196178905097 0.8409923455091952 -0.5409304186578083 -0.01123196178905097 0.8409923455091952 -0.5409304186578083 -0.01123196178905097 0.8409923455091952 -0.5409304186578083 -0.01123196178905097 0.009983534929530268 0.005146431768784398 0.9999369196456145 0.009983534929530268 0.005146431768784398 0.9999369196456145 0.009983534929530268 0.005146431768784398 0.9999369196456145 0.009983534929530268 0.005146431768784398 0.9999369196456145 0.009983534929530268 0.005146431768784398 0.9999369196456145 -0.8409923455091953 0.5409304186578084 0.01123196178904884 -0.8409923455091953 0.5409304186578084 0.01123196178904884 -0.8409923455091953 0.5409304186578084 0.01123196178904884 -0.8409923455091953 0.5409304186578084 0.01123196178904884 -8.406816501163109e-005 -0.01123157903942614 -0.9999369202928878 -8.406816501163109e-005 -0.01123157903942614 -0.9999369202928878 -8.406816501163109e-005 -0.01123157903942614 -0.9999369202928878 -8.406816501163109e-005 -0.01123157903942614 -0.9999369202928878 -0.009446584998540182 0.006076100517164675 -0.9999369195276123 -0.009446584998540182 0.006076100517164675 -0.9999369195276123 -0.009446584998540182 0.006076100517164675 -0.9999369195276123 -0.009446584998540182 0.006076100517164675 -0.9999369195276123 0.8887948880736262 0.4581675350835625 -0.01123195128385594 0.8887948880736262 0.4581675350835625 -0.01123195128385594 0.8887948880736262 0.4581675350835625 -0.01123195128385594 0.8887948880736262 0.4581675350835625 -0.01123195128385594 0.8887948880736262 0.4581675350835625 -0.01123195128385594 0.8887948880736101 0.4581675350836054 -0.01123195128339291 0.8887948880736101 0.4581675350836054 -0.01123195128339291 0.8887948880736101 0.4581675350836054 -0.01123195128339291 0.8887948880736101 0.4581675350836054 -0.01123195128339291 -0.4581964381840357 0.8888509571550582 9.34207317811208e-009 -0.4581964381840357 0.8888509571550582 9.34207317811208e-009 -0.4581964381840357 0.8888509571550582 9.34207317811208e-009 -0.4581964381840357 0.8888509571550582 9.34207317811208e-009 -0.8887948880736295 -0.458167535083562 0.01123195128362181 -0.8887948880736295 -0.458167535083562 0.01123195128362181 -0.8887948880736295 -0.458167535083562 0.01123195128362181 -0.8887948880736295 -0.458167535083562 0.01123195128362181 -0.8887948880736295 -0.458167535083562 0.01123195128362181 -0.009983534929525225 -0.00514643176878176 -0.9999369196456147 -0.009983534929525225 -0.00514643176878176 -0.9999369196456147 -0.009983534929525225 -0.00514643176878176 -0.9999369196456147 -0.009983534929525225 -0.00514643176878176 -0.9999369196456147 -0.4581964381839508 0.8888509571551021 9.350974012174934e-009 -0.4581964381839508 0.8888509571551021 9.350974012174934e-009 -0.4581964381839508 0.8888509571551021 9.350974012174934e-009 -0.4581964389093524 0.8888509567811627 9.351141822737472e-009 -0.4581964389093524 0.8888509567811627 9.351141822737472e-009 -0.4581964389093524 0.8888509567811627 9.351141822737472e-009 3.723945224135506e-012 1.051220050073067e-008 -1 3.723945224135506e-012 1.051220050073067e-008 -1 3.723945224135506e-012 1.051220050073067e-008 -1 3.723945224135506e-012 1.051220050073067e-008 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"85\" source=\"#ID1877\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1875\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1873\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1874\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"43\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1875\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19 20 21 22 21 20 23 24 25 26 25 24 27 28 29 30 29 28 31 32 33 34 33 32 35 36 37 38 37 36 39 39 36 40 41 42 43 42 41 44 45 46 47 46 45 48 49 50 51 50 49 52 53 54 55 54 53 56 54 56 57 58 59 60 59 58 61 62 63 64 63 62 65 66 67 68 67 66 69 69 66 70 71 72 73 72 71 74 75 76 77 78 79 80 81 82 83 82 81 84</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1878\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1879\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID1882\">1144.019988006734 2538.406971427122 3.583077322049917 1147.178585166146 2540.01329257307 3.582992476477443 1147.178187813664 2540.013087741069 3.543194206816338 1144.020387137232 2538.407177441362 3.622790729237011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID1882\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1880\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID1883\">-0.4533038074495805 0.8913560758407191 -6.491184723621432e-005 -0.4533038074495805 0.8913560758407191 -6.491184723621432e-005 -0.4533038074495805 0.8913560758407191 -6.491184723621432e-005 -0.4533038074495805 0.8913560758407191 -6.491184723621432e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID1883\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1881\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1879\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1880\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1881\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1884\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1885\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID1887\">1124.199210801757 2584.902058967254 12.37458133758213 1124.193441378035 2584.913251018019 12.37489528913295 1124.193441378035 2584.913251017737 12.40113411939166</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID1887\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1886\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1885\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1886\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1888\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1889\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1891\">1123.964610718158 2585.045863049088 3.582992950388871 1123.958841294441 2585.057055099855 3.583306901939807</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1891\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1890\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1889\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1890\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1892\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1893\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1895\">1123.920375090519 2585.023256499133 3.543283904499901 1123.920774221018 2585.023462513373 3.582997311686995</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1895\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1894\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1893\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1894\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1896\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1897\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1899\">1124.188018675633 2584.896289504419 12.40040729888017 1124.199210801757 2584.902058966984 12.40082016784078</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1899\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1898\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1897\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1898\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1900\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1901\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1903\">1124.18732261284 2584.896281513226 8.857736594424011 1124.164174197426 2584.88445043747 8.883829393459564</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1903\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1902\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1901\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1902\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1905\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1906\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID1909\">-4.547473508864641e-013 12.74504192846371 5.189445546357277 10.13519886825907 29.39308282634602 391.1739424460587 10.12990383137776 20.51622679928801 5.010570840019732 0.005295062064305967 21.62192511984949 391.3539988587459 0.005295062064305967 21.62192511984949 391.3539988587459 -4.547473508864641e-013 12.74504192846371 5.189445546357277 10.13519886825907 29.39308282634602 391.1739424460587 10.12990383137776 20.51622679928801 5.010570840019732 10.13519886825907 29.39308282634602 391.1739424460587 22.11766470057273 18.02929827042954 5.067799952874317 10.12990383137776 20.51622679928801 5.010570840019732 22.12295973264008 26.90614913766035 391.2309470964433 22.12295973264008 26.90614913766035 391.2309470964433 10.13519886825907 29.39308282634602 391.1739424460587 22.11766470057273 18.02929827042954 5.067799952874317 10.12990383137776 20.51622679928801 5.010570840019732 1.863152120238283 11.36383372478895 391.5910599218481 -4.547473508864641e-013 12.74504192846371 5.189445546357277 1.857857037735812 2.486928528798899 5.425549365559355 0.005295062064305967 21.62192511984949 391.3539988587459 0.005295062064305967 21.62192511984949 391.3539988587459 1.863152120238283 11.36383372478895 391.5910599218481 -4.547473508864641e-013 12.74504192846371 5.189445546357277 1.857857037735812 2.486928528798899 5.425549365559355 22.12295973264008 26.90614913766035 391.2309470964433 23.98085411435523 16.68831465616086 393.2192692102724 22.11766470057273 18.02929827042954 5.067799952874317 22.11766470057273 18.02929827042954 5.067799952874317 23.98085411435523 16.68831465616086 393.2192692102724 22.12295973264008 26.90614913766035 391.2309470964433 13.84561790693851 -1.13686837721616e-012 5.482778478417338 1.863152120238283 11.36383372478895 391.5910599218481 1.857857037735812 2.486928528798899 5.425549365559355 13.85091298449288 8.876900036043708 391.6480645722461 13.85091298449288 8.876900036043708 391.6480645722461 13.84561790693851 -1.13686837721616e-012 5.482778478417338 1.863152120238283 11.36383372478895 391.5910599218481 1.857857037735812 2.486928528798899 5.425549365559355 22.11766470057273 18.02929827042954 5.067799952874317 23.98085411435523 16.68831465616086 393.2192692102724 23.97552173832764 7.77118487076973 5.303903772072509 23.97552173832764 7.77118487076973 5.303903772072509 23.98085411435523 16.68831465616086 393.2192692102724 22.11766470057273 18.02929827042954 5.067799952874317 13.85091298449288 8.876900036043708 391.6480645722461 13.84561790693851 -1.13686837721616e-012 5.482778478417338 23.97552173832764 7.77118487076973 5.303903772072509 23.97552173832764 7.77118487076973 5.303903772072509 13.84561790693851 -1.13686837721616e-012 5.482778478417338 13.85091298449288 8.876900036043708 391.6480645722461 23.98085411435523 16.68831465616086 393.2192692102724 13.85091298449288 8.876900036043708 391.6480645722461 23.97552173832764 7.77118487076973 5.303903772072509 23.97552173832764 7.77118487076973 5.303903772072509 13.85091298449288 8.876900036043708 391.6480645722461 23.98085411435523 16.68831465616086 393.2192692102724</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID1909\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1907\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID1910\">-0.6087759527430191 0.7931328629316206 -0.01822364123112226 -0.6087759527430191 0.7931328629316206 -0.01822364123112226 -0.6087759527430191 0.7931328629316206 -0.01822364123112226 -0.6087759527430191 0.7931328629316206 -0.01822364123112226 0.6087759527430191 -0.7931328629316206 0.01822364123112226 0.6087759527430191 -0.7931328629316206 0.01822364123112226 0.6087759527430191 -0.7931328629316206 0.01822364123112226 0.6087759527430191 -0.7931328629316206 0.01822364123112226 0.203182086757574 0.9788823116968336 -0.02250465436084151 0.203182086757574 0.9788823116968336 -0.02250465436084151 0.203182086757574 0.9788823116968336 -0.02250465436084151 0.203182086757574 0.9788823116968336 -0.02250465436084151 -0.203182086757574 -0.9788823116968336 0.02250465436084151 -0.203182086757574 -0.9788823116968336 0.02250465436084151 -0.203182086757574 -0.9788823116968336 0.02250465436084151 -0.203182086757574 -0.9788823116968336 0.02250465436084151 -0.98400042668661 -0.1781187382703784 0.004107962699205569 -0.98400042668661 -0.1781187382703784 0.004107962699205569 -0.98400042668661 -0.1781187382703784 0.004107962699205569 -0.98400042668661 -0.1781187382703784 0.004107962699205569 0.98400042668661 0.1781187382703784 -0.004107962699205569 0.98400042668661 0.1781187382703784 -0.004107962699205569 0.98400042668661 0.1781187382703784 -0.004107962699205569 0.98400042668661 0.1781187382703784 -0.004107962699205569 0.9840002024226484 0.1781199765358001 -0.004107991123813237 0.9840002024226484 0.1781199765358001 -0.004107991123813237 0.984000422910647 0.1781187583533004 -0.004107996390761393 -0.984000422910647 -0.1781187583533004 0.004107996390761393 -0.9840002024226484 -0.1781199765358001 0.004107991123813237 -0.9840002024226484 -0.1781199765358001 0.004107991123813237 -0.2031820867584832 -0.978882311696439 0.02250465436979487 -0.2031820867584832 -0.978882311696439 0.02250465436979487 -0.2031820867584832 -0.978882311696439 0.02250465436979487 -0.2031820867584832 -0.978882311696439 0.02250465436979487 0.2031820867584832 0.978882311696439 -0.02250465436979487 0.2031820867584832 0.978882311696439 -0.02250465436979487 0.2031820867584832 0.978882311696439 -0.02250465436979487 0.2031820867584832 0.978882311696439 -0.02250465436979487 0.9840004267476812 0.1781187371538488 -0.004107996482419525 0.9840002067147265 0.1781199528224166 -0.00410799122634077 0.9840004267476812 0.1781187371538488 -0.004107996482419525 -0.9840004267476812 -0.1781187371538488 0.004107996482419525 -0.9840002067147265 -0.1781199528224166 0.00410799122634077 -0.9840004267476812 -0.1781187371538488 0.004107996482419525 0.6087759525720836 -0.7931328630631126 0.01822364121854326 0.6087759525720836 -0.7931328630631126 0.01822364121854326 0.6087759525720836 -0.7931328630631126 0.01822364121854326 -0.6087759525720836 0.7931328630631126 -0.01822364121854326 -0.6087759525720836 0.7931328630631126 -0.01822364121854326 -0.6087759525720836 0.7931328630631126 -0.01822364121854326 0.6087754584873939 -0.7931332425743708 0.01822362935662525 0.6087754584873939 -0.7931332425743708 0.01822362935662525 0.6087754584873939 -0.7931332425743708 0.01822362935662525 -0.6087754584873939 0.7931332425743708 -0.01822362935662525 -0.6087754584873939 0.7931332425743708 -0.01822362935662525 -0.6087754584873939 0.7931332425743708 -0.01822362935662525</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID1910\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1908\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1906\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1907\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1908\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 30 31 32 31 30 33 38 39 40 44 45 46 50 51 52</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1908\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 27 28 29 34 35 36 37 36 35 41 42 43 47 48 49 53 54 55</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1911\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1912\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID1915\">99.94340170482474 230.570707938525 0.1788747063417659 110.0786005738819 247.2187685123615 386.1642264698733 110.0733055362089 238.3418928093445 7.105427357601002e-014 99.94869676769531 239.4476108058932 386.3442828825575 99.94869676769531 239.4476108058932 386.3442828825575 99.94340170482474 230.570707938525 0.1788747063417659 110.0786005738819 247.2187685123615 386.1642264698733 110.0733055362089 238.3418928093445 7.105427357601002e-014 110.0786005738819 247.2187685123615 386.1642264698733 122.0610664053525 235.8549642804849 0.05722911285510435 110.0733055362089 238.3418928093445 7.105427357601002e-014 122.0663614382493 244.7318348236815 386.2212311202475 122.0663614382493 244.7318348236815 386.2212311202475 110.0786005738819 247.2187685123615 386.1642264698733 122.0610664053525 235.8549642804849 0.05722911285510435 110.0733055362089 238.3418928093445 7.105427357601002e-014 101.8065538258556 229.1895194107663 386.5813439456576 99.94340170482474 230.570707938525 0.1788747063417659 101.8012587425678 220.3125945388631 0.4149785255376699 99.94869676769531 239.4476108058932 386.3442828825575 99.94869676769531 239.4476108058932 386.3442828825575 101.8065538258556 229.1895194107663 386.5813439456576 99.94340170482474 230.570707938525 0.1788747063417659 101.8012587425678 220.3125945388631 0.4149785255376699 122.0610664053525 235.8549642804849 0.05722911285510435 123.9235299762618 234.5179922540431 388.2087764347901 123.9242558199721 234.5140003421673 388.2095532340828 122.0663614382493 244.7318348236815 386.2212311202475 122.0663614382493 244.7318348236815 386.2212311202475 122.0610664053525 235.8549642804849 0.05722911285510435 123.9235299762618 234.5179922540431 388.2087764347901 123.9242558199721 234.5140003421673 388.2095532340828 113.7890196117141 217.8256660100067 0.4722076383938259 101.8065538258556 229.1895194107663 386.5813439456576 101.8012587425678 220.3125945388631 0.4149785255376699 113.7943146901012 226.7025857220435 386.6383485960549 113.7943146901012 226.7025857220435 386.6383485960549 113.7890196117141 217.8256660100067 0.4722076383938259 101.8065538258556 229.1895194107663 386.5813439456576 101.8012587425678 220.3125945388631 0.4149785255376699 122.0610664053525 235.8549642804849 0.05722911285510435 123.9242558199721 234.5140003421673 388.2095532340828 123.9189234431028 225.5968508808312 0.2933329320557263 123.9189234431028 225.5968508808312 0.2933329320557263 123.9242558199721 234.5140003421673 388.2095532340828 122.0610664053525 235.8549642804849 0.05722911285510435 113.7943146901012 226.7025857220435 386.6383485960549 113.7890196117141 217.8256660100067 0.4722076383938259 123.9189234431028 225.5968508808312 0.2933329320557263 123.9189234431028 225.5968508808312 0.2933329320557263 113.7890196117141 217.8256660100067 0.4722076383938259 113.7943146901012 226.7025857220435 386.6383485960549 123.9242558199721 234.5140003421673 388.2095532340828 123.9202978531712 234.5109482692376 388.2089393336279 123.9189234431028 225.5968508808312 0.2933329320557263 123.9189234431028 225.5968508808312 0.2933329320557263 123.9202978531712 234.5109482692376 388.2089393336279 123.9242558199721 234.5140003421673 388.2095532340828 123.9202978531712 234.5109482692376 388.2089393336279 113.7943146901012 226.7025857220435 386.6383485960549 123.9189234431028 225.5968508808312 0.2933329320557263 123.9189234431028 225.5968508808312 0.2933329320557263 113.7943146901012 226.7025857220435 386.6383485960549 123.9202978531712 234.5109482692376 388.2089393336279</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID1915\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1913\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID1916\">-0.6087759527422955 0.7931328629306033 -0.01822364129956776 -0.6087759527422955 0.7931328629306033 -0.01822364129956776 -0.6087759527422955 0.7931328629306033 -0.01822364129956776 -0.6087759527422955 0.7931328629306033 -0.01822364129956776 0.6087759527422955 -0.7931328629306033 0.01822364129956776 0.6087759527422955 -0.7931328629306033 0.01822364129956776 0.6087759527422955 -0.7931328629306033 0.01822364129956776 0.6087759527422955 -0.7931328629306033 0.01822364129956776 0.2031820867576718 0.978882311695492 -0.02250465441830783 0.2031820867576718 0.978882311695492 -0.02250465441830783 0.2031820867576718 0.978882311695492 -0.02250465441830783 0.2031820867576718 0.978882311695492 -0.02250465441830783 -0.2031820867576718 -0.978882311695492 0.02250465441830783 -0.2031820867576718 -0.978882311695492 0.02250465441830783 -0.2031820867576718 -0.978882311695492 0.02250465441830783 -0.2031820867576718 -0.978882311695492 0.02250465441830783 -0.9840004266867679 -0.1781187382698838 0.004107962682852939 -0.9840004266867679 -0.1781187382698838 0.004107962682852939 -0.9840004266867679 -0.1781187382698838 0.004107962682852939 -0.9840004266867679 -0.1781187382698838 0.004107962682852939 0.9840004266867679 0.1781187382698838 -0.004107962682852939 0.9840004266867679 0.1781187382698838 -0.004107962682852939 0.9840004266867679 0.1781187382698838 -0.004107962682852939 0.9840004266867679 0.1781187382698838 -0.004107962682852939 0.984000422910711 0.1781187583533217 -0.004107996374534377 0.9840002024222498 0.1781199765383746 -0.004107991107622239 0.9840002024222498 0.1781199765383746 -0.004107991107622239 0.9840002024222498 0.1781199765383746 -0.004107991107622239 -0.9840002024222498 -0.1781199765383746 0.004107991107622239 -0.984000422910711 -0.1781187583533217 0.004107996374534377 -0.9840002024222498 -0.1781199765383746 0.004107991107622239 -0.9840002024222498 -0.1781199765383746 0.004107991107622239 -0.2031820867604124 -0.9788823116947183 0.02250465442722232 -0.2031820867604124 -0.9788823116947183 0.02250465442722232 -0.2031820867604124 -0.9788823116947183 0.02250465442722232 -0.2031820867604124 -0.9788823116947183 0.02250465442722232 0.2031820867604124 0.9788823116947183 -0.02250465442722232 0.2031820867604124 0.9788823116947183 -0.02250465442722232 0.2031820867604124 0.9788823116947183 -0.02250465442722232 0.2031820867604124 0.9788823116947183 -0.02250465442722232 0.9840004267477445 0.1781187371538732 -0.004107996466191676 0.9840002067143275 0.1781199528249946 -0.004107991210148843 0.9840004267477445 0.1781187371538732 -0.004107996466191676 -0.9840004267477445 -0.1781187371538732 0.004107996466191676 -0.9840002067143275 -0.1781199528249946 0.004107991210148843 -0.9840004267477445 -0.1781187371538732 0.004107996466191676 0.6087759525747092 -0.7931328630595265 0.0182236412869122 0.6087759525747092 -0.7931328630595265 0.0182236412869122 0.6087759525747092 -0.7931328630595265 0.0182236412869122 -0.6087759525747092 0.7931328630595265 -0.0182236412869122 -0.6087759525747092 0.7931328630595265 -0.0182236412869122 -0.6087759525747092 0.7931328630595265 -0.0182236412869122 0.6087754506360579 -0.7931332485959763 0.01822362956322904 0.6087754506360579 -0.7931332485959763 0.01822362956322904 0.6087754506360579 -0.7931332485959763 0.01822362956322904 -0.6087754506360579 0.7931332485959763 -0.01822362956322904 -0.6087754506360579 0.7931332485959763 -0.01822362956322904 -0.6087754506360579 0.7931332485959763 -0.01822362956322904 0.6087754584829604 -0.7931332425762057 0.01822362942486993 0.6087754584829604 -0.7931332425762057 0.01822362942486993 0.6087754584829604 -0.7931332425762057 0.01822362942486993 -0.6087754584829604 0.7931332425762057 -0.01822362942486993 -0.6087754584829604 0.7931332425762057 -0.01822362942486993 -0.6087754584829604 0.7931332425762057 -0.01822362942486993</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID1916\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1914\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1912\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1913\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1914\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27 32 33 34 33 32 35 40 41 42 46 47 48 52 53 54 58 59 60</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1914\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29 36 37 38 39 38 37 43 44 45 49 50 51 55 56 57 61 62 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1918\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1919\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1922\">204.6129490821572 9.236652369207832 386.4066595636913 212.7141096895866 18.41191715217065 1.110223024625157e-016 204.6129388240684 9.205960606694134 0.0009589563800180279 212.7141199463363 18.44260893149067 386.4059251290642 212.7141199463363 18.44260893149067 386.4059251290642 204.6129490821572 9.236652369207832 386.4066595636913 212.7141096895866 18.41191715217065 1.110223024625157e-016 204.6129388240684 9.205960606694134 0.0009589563800180279 212.7141199463363 18.44260893149067 386.4059251290642 225.2324585762458 18.41191512155933 8.976971058849426e-005 212.7141096895866 18.41191715217065 1.110223024625157e-016 225.2324688259309 18.44260698933931 386.4071969173126 225.2324688259309 18.44260698933931 386.4071969173126 212.7141199463363 18.44260893149067 386.4059251290642 225.2324585762458 18.41191512155933 8.976971058849426e-005 212.7141096895866 18.41191715217065 1.110223024625157e-016 209.0301166407789 0.03082495079661385 388.1603894722512 204.6129388240684 9.205960606694134 0.0009589563800180279 209.030116845202 2.03060722014925e-006 0.002007682469942318 204.6129490821572 9.236652369207832 386.4066595636913 204.6129490821572 9.236652369207832 386.4066595636913 209.0301166407789 0.03082495079661385 388.1603894722512 204.6129388240684 9.205960606694134 0.0009589563800180279 209.030116845202 2.03060722014925e-006 0.002007682469942318 225.2324585762458 18.41191512155933 8.976971058849426e-005 229.6496468413525 9.236648484904663 386.4092031401841 229.6496365973844 9.205956545473327 0.001138495801557615 225.2324688259309 18.44260698933931 386.4071969173126 225.2324688259309 18.44260698933931 386.4071969173126 225.2324585762458 18.41191512155933 8.976971058849426e-005 229.6496468413525 9.236648484904663 386.4092031401841 229.6496365973844 9.205956545473327 0.001138495801557615 221.5484657318643 -2.273736754432321e-013 0.00209745218088564 209.0301166407789 0.03082495079661385 388.1603894722512 209.030116845202 2.03060722014925e-006 0.002007682469942318 221.5484759771703 0.03069192262023535 386.4099375748102 221.5484759771703 0.03069192262023535 386.4099375748102 221.5484657318643 -2.273736754432321e-013 0.00209745218088564 209.0301166407789 0.03082495079661385 388.1603894722512 209.030116845202 2.03060722014925e-006 0.002007682469942318 229.6496365973844 9.205956545473327 0.001138495801557615 221.5484759771703 0.03069192262023535 386.4099375748102 221.5484657318643 -2.273736754432321e-013 0.00209745218088564 229.6496468413525 9.236648484904663 386.4092031401841 229.6496468413525 9.236648484904663 386.4092031401841 229.6496365973844 9.205956545473327 0.001138495801557615 221.5484759771703 0.03069192262023535 386.4099375748102 221.5484657318643 -2.273736754432321e-013 0.00209745218088564</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1922\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1920\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1923\">-0.7507163857506205 0.6606246327972513 -5.202905400562576e-005 -0.7507163857506205 0.6606246327972513 -5.202905400562576e-005 -0.7507163857506205 0.6606246327972513 -5.202905400562576e-005 -0.7507163857506205 0.6606246327972513 -5.202905400562576e-005 0.7507163857506205 -0.6606246327972513 5.202905400562576e-005 0.7507163857506205 -0.6606246327972513 5.202905400562576e-005 0.7507163857506205 -0.6606246327972513 5.202905400562576e-005 0.7507163857506205 -0.6606246327972513 5.202905400562576e-005 1.629694824008441e-007 0.9999999968857057 -7.892124008474523e-005 1.629694824008441e-007 0.9999999968857057 -7.892124008474523e-005 1.629694824008441e-007 0.9999999968857057 -7.892124008474523e-005 1.629694824008441e-007 0.9999999968857057 -7.892124008474523e-005 -1.629694824008441e-007 -0.9999999968857057 7.892124008474523e-005 -1.629694824008441e-007 -0.9999999968857057 7.892124008474523e-005 -1.629694824008441e-007 -0.9999999968857057 7.892124008474523e-005 -1.629694824008441e-007 -0.9999999968857057 7.892124008474523e-005 -0.9015875520035962 -0.4325966770078907 3.337504099782824e-005 -0.9015875520035962 -0.4325966770078907 3.337504099782824e-005 -0.9015875520035962 -0.4325966770078907 3.337504099782824e-005 -0.9015875520035962 -0.4325966770078907 3.337504099782824e-005 0.9015875520035962 0.4325966770078907 -3.337504099782824e-005 0.9015875520035962 0.4325966770078907 -3.337504099782824e-005 0.9015875520035962 0.4325966770078907 -3.337504099782824e-005 0.9015875520035962 0.4325966770078907 -3.337504099782824e-005 0.9015873150868591 0.4325971707714552 -3.339163594594957e-005 0.9015873150868591 0.4325971707714552 -3.339163594594957e-005 0.9015873150868591 0.4325971707714552 -3.339163594594957e-005 0.9015873150868591 0.4325971707714552 -3.339163594594957e-005 -0.9015873150868591 -0.4325971707714552 3.339163594594957e-005 -0.9015873150868591 -0.4325971707714552 3.339163594594957e-005 -0.9015873150868591 -0.4325971707714552 3.339163594594957e-005 -0.9015873150868591 -0.4325971707714552 3.339163594594957e-005 1.224389691512547e-007 -0.9999999968864554 7.891181312021448e-005 1.224389691512547e-007 -0.9999999968864554 7.891181312021448e-005 1.224389691512547e-007 -0.9999999968864554 7.891181312021448e-005 1.224389691512547e-007 -0.9999999968864554 7.891181312021448e-005 -1.224389691512547e-007 0.9999999968864554 -7.891181312021448e-005 -1.224389691512547e-007 0.9999999968864554 -7.891181312021448e-005 -1.224389691512547e-007 0.9999999968864554 -7.891181312021448e-005 -1.224389691512547e-007 0.9999999968864554 -7.891181312021448e-005 0.7507163857504394 -0.6606246327974564 5.202906466265129e-005 0.7507163857504394 -0.6606246327974564 5.202906466265129e-005 0.7507163857504394 -0.6606246327974564 5.202906466265129e-005 0.7507163857504394 -0.6606246327974564 5.202906466265129e-005 -0.7507163857504394 0.6606246327974564 -5.202906466265129e-005 -0.7507163857504394 0.6606246327974564 -5.202906466265129e-005 -0.7507163857504394 0.6606246327974564 -5.202906466265129e-005 -0.7507163857504394 0.6606246327974564 -5.202906466265129e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1923\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1921\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1919\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1920\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1921\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27 32 33 34 33 32 35 40 41 42 41 40 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1921\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29 36 37 38 39 38 37 44 45 46 47 46 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1924\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1925\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID1928\">25.03669777331788 120.4285976243455 0.01984518233019839 16.93553735752221 111.2533298521219 386.4001373443295 16.93552690779507 111.2226410788724 0.02080413870991754 25.03670822170489 120.4592864144031 386.3994029097027 25.03670822170489 120.4592864144031 386.3994029097027 25.03669777331788 120.4285976243455 0.01984518233019839 16.93553735752221 111.2533298521219 386.4001373443295 16.93552690779507 111.2226410788724 0.02080413870991754 20.61951975217698 129.6345562004346 0.01879645623952087 25.03670822170489 120.4592864144031 386.3994029097027 25.03669777331788 120.4285976243455 0.01984518233019839 20.61953020628744 129.6652449188384 386.3973966868317 20.61953020628744 129.6652449188384 386.3973966868317 20.61951975217698 129.6345562004346 0.01879645623952087 25.03670822170489 120.4592864144031 386.3994029097027 25.03669777331788 120.4285976243455 0.01984518233019839 16.93552690779507 111.2226410788724 0.02080413870991754 4.417178021134077 111.2534628802932 388.1505892417711 4.417178021132713 111.2226431094807 0.02071436899908791 16.93553735752221 111.2533298521219 386.4001373443295 4.422069052121515 111.2534628283215 388.1499053251143 4.422069052121515 111.2534628283215 388.1499053251143 16.93553735752221 111.2533298521219 386.4001373443295 4.417178021134077 111.2534628802932 388.1505892417711 16.93552690779507 111.2226410788724 0.02080413870991754 4.417178021132713 111.2226431094807 0.02071436899908791 8.101181326687765 129.66524686099 386.3961248985834 20.61951975217698 129.6345562004346 0.01879645623952087 8.101170865517361 129.6345582310439 0.01870668652848506 20.61953020628744 129.6652449188384 386.3973966868317 20.61953020628744 129.6652449188384 386.3973966868317 8.101181326687765 129.66524686099 386.3961248985834 20.61951975217698 129.6345562004346 0.01879645623952087 8.101170865517361 129.6345582310439 0.01870668652848506 4.417178021134077 111.2534628802932 388.1505892417711 0 120.4286016855683 0.01966564290865214 4.417178021132713 111.2226431094807 0.02071436899908791 4.41545236647471 111.2570593204914 388.1499041121848 1.046251054503955e-005 120.4592902987076 386.3968593332102 1.046251054503955e-005 120.4592902987076 386.3968593332102 4.41545236647471 111.2570593204914 388.1499041121848 0 120.4286016855683 0.01966564290865214 4.417178021134077 111.2534628802932 388.1505892417711 4.417178021132713 111.2226431094807 0.02071436899908791 1.046251054503955e-005 120.4592902987076 386.3968593332102 8.101170865517361 129.6345582310439 0.01870668652848506 0 120.4286016855683 0.01966564290865214 8.101181326687765 129.66524686099 386.3961248985834 8.101181326687765 129.66524686099 386.3961248985834 1.046251054503955e-005 120.4592902987076 386.3968593332102 8.101170865517361 129.6345582310439 0.01870668652848506 0 120.4286016855683 0.01966564290865214</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID1928\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1926\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID1929\">0.7507163857504332 -0.6606246327975789 5.202759964375374e-005 0.7507163857504332 -0.6606246327975789 5.202759964375374e-005 0.7507163857504332 -0.6606246327975789 5.202759964375374e-005 0.7507163857504332 -0.6606246327975789 5.202759964375374e-005 -0.7507163857504332 0.6606246327975789 -5.202759964375374e-005 -0.7507163857504332 0.6606246327975789 -5.202759964375374e-005 -0.7507163857504332 0.6606246327975789 -5.202759964375374e-005 -0.7507163857504332 0.6606246327975789 -5.202759964375374e-005 0.9015873150868587 0.4325971707714558 -3.339163594594972e-005 0.9015873150868587 0.4325971707714558 -3.339163594594972e-005 0.9015873150868587 0.4325971707714558 -3.339163594594972e-005 0.9015873150868587 0.4325971707714558 -3.339163594594972e-005 -0.9015873150868587 -0.4325971707714558 3.339163594594972e-005 -0.9015873150868587 -0.4325971707714558 3.339163594594972e-005 -0.9015873150868587 -0.4325971707714558 3.339163594594972e-005 -0.9015873150868587 -0.4325971707714558 3.339163594594972e-005 1.627760527578452e-007 -0.9999999968866934 7.890872502095989e-005 1.627760527578452e-007 -0.9999999968866934 7.890872502095989e-005 1.627760527578452e-007 -0.9999999968866934 7.890872502095989e-005 1.627760527578452e-007 -0.9999999968866934 7.890872502095989e-005 1.627760527578452e-007 -0.9999999968866934 7.890872502095989e-005 -1.627760527578452e-007 0.9999999968866934 -7.890872502095989e-005 -1.627760527578452e-007 0.9999999968866934 -7.890872502095989e-005 -1.627760527578452e-007 0.9999999968866934 -7.890872502095989e-005 -1.627760527578452e-007 0.9999999968866934 -7.890872502095989e-005 -1.627760527578452e-007 0.9999999968866934 -7.890872502095989e-005 1.629693663686062e-007 0.9999999968858442 -7.891948482845352e-005 1.629693663686062e-007 0.9999999968858442 -7.891948482845352e-005 1.629693663686062e-007 0.9999999968858442 -7.891948482845352e-005 1.629693663686062e-007 0.9999999968858442 -7.891948482845352e-005 -1.629693663686062e-007 -0.9999999968858442 7.891948482845352e-005 -1.629693663686062e-007 -0.9999999968858442 7.891948482845352e-005 -1.629693663686062e-007 -0.9999999968858442 7.891948482845352e-005 -1.629693663686062e-007 -0.9999999968858442 7.891948482845352e-005 -0.9015875856221969 -0.432596606942544 3.337268054726189e-005 -0.9015875856221969 -0.432596606942544 3.337268054726189e-005 -0.9015875856221969 -0.432596606942544 3.337268054726189e-005 -0.9015875856221969 -0.432596606942544 3.337268054726189e-005 -0.9015875856221969 -0.432596606942544 3.337268054726189e-005 0.9015875856221969 0.432596606942544 -3.337268054726189e-005 0.9015875856221969 0.432596606942544 -3.337268054726189e-005 0.9015875856221969 0.432596606942544 -3.337268054726189e-005 0.9015875856221969 0.432596606942544 -3.337268054726189e-005 0.9015875856221969 0.432596606942544 -3.337268054726189e-005 -0.7507163857506157 0.6606246327973723 -5.202758897684703e-005 -0.7507163857506157 0.6606246327973723 -5.202758897684703e-005 -0.7507163857506157 0.6606246327973723 -5.202758897684703e-005 -0.7507163857506157 0.6606246327973723 -5.202758897684703e-005 0.7507163857506157 -0.6606246327973723 5.202758897684703e-005 0.7507163857506157 -0.6606246327973723 5.202758897684703e-005 0.7507163857506157 -0.6606246327973723 5.202758897684703e-005 0.7507163857506157 -0.6606246327973723 5.202758897684703e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID1929\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1927\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1925\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1926\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1927\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 17 19 20 26 27 28 27 26 29 34 35 36 35 34 37 35 37 38 44 45 46 45 44 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1927\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 21 22 23 22 24 23 25 23 24 30 31 32 33 32 31 39 40 41 40 42 41 43 41 42 48 49 50 51 50 49</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1931\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1932\">\r\n\t\t\t\t\t<float_array count=\"696\" id=\"ID1935\">718.7362073247259 641.4770342695244 181.3293784945465 332.5306929401809 6.041688562846275 280.5136952605669 279.6470817151512 118.772806142422 283.0653794895059 279.6470817151512 118.772806142422 283.0653794895059 332.5306929401809 6.041688562846275 280.5136952605669 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 279.6470817151512 118.772806142422 283.0653794895059 224.8391053559881 185.643149666675 188.3432671541635 224.8391053559881 185.643149666675 188.3432671541635 279.6470817151512 118.772806142422 283.0653794895059 718.7362073247259 641.4770342695244 181.3293784945465 332.5306929401809 6.041688562846275 280.5136952605669 328.8586681157171 30.9924407687522 341.8474412427377 328.8586695708182 -1.13686837721616e-012 281.456734951762 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 332.5306929401809 6.041688562846275 280.5136952605669 328.8586681157171 30.9924407687522 341.8474412427377 328.8586695708182 -1.13686837721616e-012 281.456734951762 224.8385666879894 185.639320508787 188.3444625851714 279.6470817151512 118.772806142422 283.0653794895059 332.5306929401809 6.041688562846275 280.5136952605669 224.8369325312469 185.6420516311214 188.3429936243141 224.8369325312469 185.6420516311214 188.3429936243141 224.8385666879894 185.639320508787 188.3444625851714 279.6470817151512 118.772806142422 283.0653794895059 332.5306929401809 6.041688562846275 280.5136952605669 718.7362073247259 641.4770342695244 181.3293784945465 224.8391053559881 185.643149666675 188.3432671541635 170.0275256765799 301.5848092626989 189.2464678388701 170.0275256765799 301.5848092626989 189.2464678388701 224.8391053559881 185.643149666675 188.3432671541635 718.7362073247259 641.4770342695244 181.3293784945465 6.769347951830241 549.3123071331498 1.707832975489282 114.4638510672016 357.5452012911686 97.96494514323013 1.455083747714525e-006 548.4360093609167 -1.023181539494544e-012 115.2192561222591 368.4509201022274 94.52569067211948 126.7644114953669 337.0316161915999 108.4924936370053 120.0633076275694 360.3725188487874 98.671516988436 224.8350217503526 185.6452323452703 188.3414296174957 215.0162051600487 189.8545269765589 184.023608084505 224.0834071057598 174.7331981708837 191.7838567938049 328.8586695708182 -1.13686837721616e-012 281.456734951762 224.8369325312469 185.6420516311214 188.3429936243141 224.8385666879894 185.639320508787 188.3444625851714 332.5306929401809 6.041688562846275 280.5136952605669 332.5306929401809 6.041688562846275 280.5136952605669 224.8385666879894 185.639320508787 188.3444625851714 328.8586695708182 -1.13686837721616e-012 281.456734951762 224.8369325312469 185.6420516311214 188.3429936243141 224.8350217503526 185.6452323452703 188.3414296174957 224.0834071057598 174.7331981708837 191.7838567938049 215.0162051600487 189.8545269765589 184.023608084505 126.7644114953669 337.0316161915999 108.4924936370053 120.0633076275694 360.3725188487874 98.671516988436 115.2192561222591 368.4509201022274 94.52569067211948 114.4638510672016 357.5452012911686 97.96494514323013 6.769347951830241 549.3123071331498 1.707832975489282 1.455083747714525e-006 548.4360093609167 -1.023181539494544e-012 718.7362073247259 641.4770342695244 181.3293784945465 322.7071340877405 41.25132428912434 336.5825938905034 328.8586681157171 30.9924407687522 341.8474412427377 328.8586681157171 30.9924407687522 341.8474412427377 322.7071340877405 41.25132428912434 336.5825938905034 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 170.0275256765799 301.5848092626989 189.2464678388701 115.2192561222591 368.4509201022274 94.52569067211948 115.2192561222591 368.4509201022274 94.52569067211948 170.0275256765799 301.5848092626989 189.2464678388701 718.7362073247259 641.4770342695244 181.3293784945465 120.0633076275694 360.3725188487874 98.671516988436 170.0275256765799 301.5848092626989 189.2464678388701 224.8391053559881 185.643149666675 188.3432671541635 115.2192561222591 368.4509201022274 94.52569067211948 115.2192561222591 368.4509201022274 94.52569067211948 120.0633076275694 360.3725188487874 98.671516988436 170.0275256765799 301.5848092626989 189.2464678388701 224.8391053559881 185.643149666675 188.3432671541635 6.769347951830241 549.3123071331498 1.707832975489282 60.40796963799721 484.3968123829653 95.42755618821457 115.2192561222591 368.4509201022274 94.52569067211948 115.2192561222591 368.4509201022274 94.52569067211948 60.40796963799721 484.3968123829653 95.42755618821457 6.769347951830241 549.3123071331498 1.707832975489282 126.7644114953669 337.0316161915999 108.4924936370053 126.7554042110796 337.0270681693537 108.491357045732 114.4638510672016 357.5452012911686 97.96494514323013 114.4638510672016 357.5452012911686 97.96494514323013 126.7554042110796 337.0270681693537 108.491357045732 126.7644114953669 337.0316161915999 108.4924936370053 -3.183231456205249e-012 579.4284501296079 60.39070629082039 6.769347951830241 549.3123071331498 1.707832975489282 1.455083747714525e-006 548.4360093609167 -1.023181539494544e-012 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 -3.183231456205249e-012 579.4284501296079 60.39070629082039 6.769347951830241 549.3123071331498 1.707832975489282 1.455083747714525e-006 548.4360093609167 -1.023181539494544e-012 718.7362073247259 641.4770342695244 181.3293784945465 322.7052807938949 17.91103351646416 291.1041723207056 322.7071340877405 41.25132428912434 336.5825938905034 322.7071340877405 41.25132428912434 336.5825938905034 322.7052807938949 17.91103351646416 291.1041723207056 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 115.2192561222591 368.4509201022274 94.52569067211948 60.40796963799721 484.3968123829653 95.42755618821457 60.40796963799721 484.3968123829653 95.42755618821457 115.2192561222591 368.4509201022274 94.52569067211948 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 60.40796963799721 484.3968123829653 95.42755618821457 6.769347951830241 549.3123071331498 1.707832975489282 6.769347951830241 549.3123071331498 1.707832975489282 60.40796963799721 484.3968123829653 95.42755618821457 718.7362073247259 641.4770342695244 181.3293784945465 224.0834071057598 174.7331981708837 191.7838567938049 328.8586681157171 30.9924407687522 341.8474412427377 328.8586695708182 -1.13686837721616e-012 281.456734951762 322.7071340877405 41.25132428912434 336.5825938905034 6.151159440986703 569.1700342348919 65.65531363405853 215.0162051600487 189.8545269765589 184.023608084505 126.7644114953669 337.0316161915999 108.4924936370053 114.4638510672016 357.5452012911686 97.96494514323013 1.455083747714525e-006 548.4360093609167 -1.023181539494544e-012 -3.183231456205249e-012 579.4284501296079 60.39070629082039 -3.183231456205249e-012 579.4284501296079 60.39070629082039 1.455083747714525e-006 548.4360093609167 -1.023181539494544e-012 6.151159440986703 569.1700342348919 65.65531363405853 114.4638510672016 357.5452012911686 97.96494514323013 126.7644114953669 337.0316161915999 108.4924936370053 215.0162051600487 189.8545269765589 184.023608084505 224.0834071057598 174.7331981708837 191.7838567938049 322.7071340877405 41.25132428912434 336.5825938905034 328.8586681157171 30.9924407687522 341.8474412427377 328.8586695708182 -1.13686837721616e-012 281.456734951762 -3.183231456205249e-012 579.4284501296079 60.39070629082039 6.152491539689436 569.1704277495837 65.65490836643687 718.7362073247259 641.4770342695244 181.3293784945465 6.151159440986703 569.1700342348919 65.65531363405853 6.151159440986703 569.1700342348919 65.65531363405853 -3.183231456205249e-012 579.4284501296079 60.39070629082039 6.152491539689436 569.1704277495837 65.65490836643687 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 322.7051856874064 16.71326718862088 288.770331558824 322.7052807938949 17.91103351646416 291.1041723207056 322.7052807938949 17.91103351646416 291.1041723207056 322.7051856874064 16.71326718862088 288.770331558824 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 274.045547860509 120.0728432124149 290.4092807737268 322.7052807938949 17.91103351646416 291.1041723207056 322.7052807938949 17.91103351646416 291.1041723207056 274.045547860509 120.0728432124149 290.4092807737268 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 6.152491539689436 569.1704277495837 65.65490836643687 6.152514572806012 545.9261760978333 20.36204162007402 6.151159440986703 569.1700342348919 65.65531363405853 6.152491539689436 569.1704277495837 65.65490836643687 6.152514572806012 545.9261760978333 20.36204162007402 6.151159440986703 569.1700342348919 65.65531363405853 718.7362073247259 641.4770342695244 181.3293784945465 322.7071340877405 41.25132428912434 336.5825938905034 6.152491539689436 569.1704277495837 65.65490836643687 6.151159440986703 569.1700342348919 65.65531363405853 6.151159440986703 569.1700342348919 65.65531363405853 6.152491539689436 569.1704277495837 65.65490836643687 322.7071340877405 41.25132428912434 336.5825938905034 718.7362073247259 641.4770342695244 181.3293784945465 219.2403893221526 190.5605585751773 202.73527150852 274.045547860509 120.0728432124149 290.4092807737268 274.045547860509 120.0728432124149 290.4092807737268 219.2403893221526 190.5605585751773 202.73527150852 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 6.152514572806012 545.9261760978333 20.36204162007402 6.152491539689436 569.1704277495837 65.65490836643687 6.152491539689436 569.1704277495837 65.65490836643687 6.152514572806012 545.9261760978333 20.36204162007402 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 6.152514572806012 545.9261760978333 20.36204162007402 54.8092117516785 485.6978179216046 102.7709605416069 54.8092117516785 485.6978179216046 102.7709605416069 6.152514572806012 545.9261760978333 20.36204162007402 718.7362073247259 641.4770342695244 181.3293784945465 6.151159440986703 569.1700342348919 65.65531363405853 6.152491539689436 569.1704277495837 65.65490836643687 6.152514572806012 545.9261760978333 20.36204162007402 6.152514572806012 545.9261760978333 20.36204162007402 6.152491539689436 569.1704277495837 65.65490836643687 6.151159440986703 569.1700342348919 65.65531363405853 718.7362073247259 641.4770342695244 181.3293784945465 164.4274864564031 302.8853679674626 196.590101941114 219.2403893221526 190.5605585751773 202.73527150852 219.2403893221526 190.5605585751773 202.73527150852 164.4274864564031 302.8853679674626 196.590101941114 718.7362073247259 641.4770342695244 181.3293784945465 54.8079304178209 485.6973710877435 102.7711902904773 54.8092117516785 485.6978179216046 102.7709605416069 6.152514572806012 545.9261760978333 20.36204162007402 6.152514572806012 545.9261760978333 20.36204162007402 54.8092117516785 485.6978179216046 102.7709605416069 54.8079304178209 485.6973710877435 102.7711902904773 718.7362073247259 641.4770342695244 181.3293784945465 54.8092117516785 485.6978179216046 102.7709605416069 109.6208332835781 373.3725616984499 108.9163598636922 109.6208332835781 373.3725616984499 108.9163598636922 54.8092117516785 485.6978179216046 102.7709605416069 718.7362073247259 641.4770342695244 181.3293784945465 718.7362073247259 641.4770342695244 181.3293784945465 109.6208332835781 373.3725616984499 108.9163598636922 164.4274864564031 302.8853679674626 196.590101941114 164.4274864564031 302.8853679674626 196.590101941114 109.6208332835781 373.3725616984499 108.9163598636922 718.7362073247259 641.4770342695244 181.3293784945465 109.6208332835781 373.3725616984499 108.9163598636922 219.2403893221526 190.5605585751773 202.73527150852 164.4274864564031 302.8853679674626 196.590101941114 164.4274864564031 302.8853679674626 196.590101941114 219.2403893221526 190.5605585751773 202.73527150852 109.6208332835781 373.3725616984499 108.9163598636922 6.152514572806012 545.9261760978333 20.36204162007402 54.8092117516785 485.6978179216046 102.7709605416069 109.6208332835781 373.3725616984499 108.9163598636922 109.6208332835781 373.3725616984499 108.9163598636922 54.8092117516785 485.6978179216046 102.7709605416069 6.152514572806012 545.9261760978333 20.36204162007402</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"232\" source=\"#ID1935\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1933\">\r\n\t\t\t\t\t<float_array count=\"696\" id=\"ID1936\">-0.1634805967561216 -0.05439419427340825 -0.9850458700556077 -0.1634805967561216 -0.05439419427340825 -0.9850458700556077 -0.1634805967561216 -0.05439419427340825 -0.9850458700556077 0.1634805967561216 0.05439419427340825 0.9850458700556077 0.1634805967561216 0.05439419427340825 0.9850458700556077 0.1634805967561216 0.05439419427340825 0.9850458700556077 0.4960079704392942 -0.5477923208585704 -0.67372076297905 0.4960079704392942 -0.5477923208585704 -0.67372076297905 0.4960079704392942 -0.5477923208585704 -0.67372076297905 -0.4960079704392942 0.5477923208585704 0.67372076297905 -0.4960079704392942 0.5477923208585704 0.67372076297905 -0.4960079704392942 0.5477923208585704 0.67372076297905 0.8451447402901432 -0.4755677409403396 0.2440608361388784 0.8451447402901432 -0.4755677409403396 0.2440608361388784 0.8451447402901432 -0.4755677409403396 0.2440608361388784 0.8451447402901432 -0.4755677409403396 0.2440608361388784 -0.8451447402901432 0.4755677409403396 -0.2440608361388784 -0.8451447402901432 0.4755677409403396 -0.2440608361388784 -0.8451447402901432 0.4755677409403396 -0.2440608361388784 -0.8451447402901432 0.4755677409403396 -0.2440608361388784 0.8822994641028867 0.418762462753052 -0.2149084815282017 0.8822994641028867 0.418762462753052 -0.2149084815282017 0.8822994641028867 0.418762462753052 -0.2149084815282017 0.8822994641028867 0.418762462753052 -0.2149084815282017 -0.8822994641028867 -0.418762462753052 0.2149084815282017 -0.8822994641028867 -0.418762462753052 0.2149084815282017 -0.8822994641028867 -0.418762462753052 0.2149084815282017 -0.8822994641028867 -0.418762462753052 0.2149084815282017 -0.01489120532818727 0.0007494268837618388 -0.9998888390032262 -0.01489120532818727 0.0007494268837618388 -0.9998888390032262 -0.01489120532818727 0.0007494268837618388 -0.9998888390032262 0.01489120532818727 -0.0007494268837618388 0.9998888390032262 0.01489120532818727 -0.0007494268837618388 0.9998888390032262 0.01489120532818727 -0.0007494268837618388 0.9998888390032262 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 0.2699672437458062 -0.3065507630089533 -0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.2699672437458062 0.3065507630089533 0.9127673947961339 -0.1849212622924766 0.3586736525879947 0.9149630253137794 -0.1849212622924766 0.3586736525879947 0.9149630253137794 -0.1849212622924766 0.3586736525879947 0.9149630253137794 0.1849212622924766 -0.3586736525879947 -0.9149630253137794 0.1849212622924766 -0.3586736525879947 -0.9149630253137794 0.1849212622924766 -0.3586736525879947 -0.9149630253137794 0.3837326462618472 -0.6350978964701525 -0.6703729693924627 0.3837326462618472 -0.6350978964701525 -0.6703729693924627 0.3837326462618472 -0.6350978964701525 -0.6703729693924627 -0.3837326462618472 0.6350978964701525 0.6703729693924627 -0.3837326462618472 0.6350978964701525 0.6703729693924627 -0.3837326462618472 0.6350978964701525 0.6703729693924627 0.8822946982459472 0.4187800669385746 -0.2148937434687567 0.8822946982459472 0.4187800669385746 -0.2148937434687567 0.8822946982459472 0.4187800669385746 -0.2148937434687567 0.8822946982459472 0.4187800669385746 -0.2148937434687567 -0.8822946982459472 -0.4187800669385746 0.2148937434687567 -0.8822946982459472 -0.4187800669385746 0.2148937434687567 -0.8822946982459472 -0.4187800669385746 0.2148937434687567 -0.8822946982459472 -0.4187800669385746 0.2148937434687567 0.8822994821729974 0.4187624692644958 -0.2149083946540087 0.8822994821729974 0.4187624692644958 -0.2149083946540087 0.8822994821729974 0.4187624692644958 -0.2149083946540087 -0.8822994821729974 -0.4187624692644958 0.2149083946540087 -0.8822994821729974 -0.4187624692644958 0.2149083946540087 -0.8822994821729974 -0.4187624692644958 0.2149083946540087 0.2699648582489584 -0.3065522692214012 -0.9127675944871342 0.2699648582489584 -0.3065522692214012 -0.9127675944871342 0.2699648582489584 -0.3065522692214012 -0.9127675944871342 -0.2699648582489584 0.3065522692214012 0.9127675944871342 -0.2699648582489584 0.3065522692214012 0.9127675944871342 -0.2699648582489584 0.3065522692214012 0.9127675944871342 2.104682038335702e-005 0.889680751918616 -0.4565831350614669 2.104682038335702e-005 0.889680751918616 -0.4565831350614669 2.104682038335702e-005 0.889680751918616 -0.4565831350614669 2.104682038335702e-005 0.889680751918616 -0.4565831350614669 -2.104682038335702e-005 -0.889680751918616 0.4565831350614669 -2.104682038335702e-005 -0.889680751918616 0.4565831350614669 -2.104682038335702e-005 -0.889680751918616 0.4565831350614669 -2.104682038335702e-005 -0.889680751918616 0.4565831350614669 -0.8366419567242298 0.4873330644733614 -0.2500734302553047 -0.8366419567242298 0.4873330644733614 -0.2500734302553047 -0.8366419567242298 0.4873330644733614 -0.2500734302553047 0.8366419567242298 -0.4873330644733614 0.2500734302553047 0.8366419567242298 -0.4873330644733614 0.2500734302553047 0.8366419567242298 -0.4873330644733614 0.2500734302553047 0.1146059932065572 0.06188994322397939 -0.9914812662117583 0.1146059932065572 0.06188994322397939 -0.9914812662117583 0.1146059932065572 0.06188994322397939 -0.9914812662117583 -0.1146059932065572 -0.06188994322397939 0.9914812662117583 -0.1146059932065572 -0.06188994322397939 0.9914812662117583 -0.1146059932065572 -0.06188994322397939 0.9914812662117583 0.2559562764937367 -0.7199137687520562 -0.6451438212404059 0.2559562764937367 -0.7199137687520562 -0.6451438212404059 0.2559562764937367 -0.7199137687520562 -0.6451438212404059 -0.2559562764937367 0.7199137687520562 0.6451438212404059 -0.2559562764937367 0.7199137687520562 0.6451438212404059 -0.2559562764937367 0.7199137687520562 0.6451438212404059 0.8822994648495819 0.4187626359035048 -0.2149081410679691 0.8822994648495819 0.4187626359035048 -0.2149081410679691 0.8822994648495819 0.4187626359035048 -0.2149081410679691 0.8822994648495819 0.4187626359035048 -0.2149081410679691 0.8822994648495819 0.4187626359035048 -0.2149081410679691 0.8822994648495819 0.4187626359035048 -0.2149081410679691 0.8822994648495819 0.4187626359035048 -0.2149081410679691 0.8822994648495819 0.4187626359035048 -0.2149081410679691 0.8822994648495819 0.4187626359035048 -0.2149081410679691 0.8822994648495819 0.4187626359035048 -0.2149081410679691 -0.8822994648495819 -0.4187626359035048 0.2149081410679691 -0.8822994648495819 -0.4187626359035048 0.2149081410679691 -0.8822994648495819 -0.4187626359035048 0.2149081410679691 -0.8822994648495819 -0.4187626359035048 0.2149081410679691 -0.8822994648495819 -0.4187626359035048 0.2149081410679691 -0.8822994648495819 -0.4187626359035048 0.2149081410679691 -0.8822994648495819 -0.4187626359035048 0.2149081410679691 -0.8822994648495819 -0.4187626359035048 0.2149081410679691 -0.8822994648495819 -0.4187626359035048 0.2149081410679691 -0.8822994648495819 -0.4187626359035048 0.2149081410679691 -0.1849209123131432 0.3586559554703097 0.9149700332770216 -0.1849209123131432 0.3586559554703097 0.9149700332770216 -0.1849209123131432 0.3586559554703097 0.9149700332770216 -0.1849209123131432 0.3586559554703097 0.9149700332770216 0.1849209123131432 -0.3586559554703097 -0.9149700332770216 0.1849209123131432 -0.3586559554703097 -0.9149700332770216 0.1849209123131432 -0.3586559554703097 -0.9149700332770216 0.1849209123131432 -0.3586559554703097 -0.9149700332770216 -0.836641956723523 0.4873330644730343 -0.2500734302583063 -0.836641956723523 0.4873330644730343 -0.2500734302583063 -0.836641956723523 0.4873330644730343 -0.2500734302583063 0.836641956723523 -0.4873330644730343 0.2500734302583063 0.836641956723523 -0.4873330644730343 0.2500734302583063 0.836641956723523 -0.4873330644730343 0.2500734302583063 0.150080699172056 0.07818729982226863 0.9855772571861273 0.150080699172056 0.07818729982226863 0.9855772571861273 0.150080699172056 0.07818729982226863 0.9855772571861273 -0.150080699172056 -0.07818729982226863 -0.9855772571861273 -0.150080699172056 -0.07818729982226863 -0.9855772571861273 -0.150080699172056 -0.07818729982226863 -0.9855772571861273 0.01615839718345511 -0.889566861448399 0.4565191181246482 0.01615839718345511 -0.889566861448399 0.4565191181246482 0.01615839718345511 -0.889566861448399 0.4565191181246482 0.01615839718345511 -0.889566861448399 0.4565191181246482 -0.01615839718345511 0.889566861448399 -0.4565191181246482 -0.01615839718345511 0.889566861448399 -0.4565191181246482 -0.01615839718345511 0.889566861448399 -0.4565191181246482 -0.01615839718345511 0.889566861448399 -0.4565191181246482 0.110937741374419 0.505613494934447 0.8555979261773118 0.110937741374419 0.505613494934447 0.8555979261773118 0.110937741374419 0.505613494934447 0.8555979261773118 -0.110937741374419 -0.505613494934447 -0.8555979261773118 -0.110937741374419 -0.505613494934447 -0.8555979261773118 -0.110937741374419 -0.505613494934447 -0.8555979261773118 -0.4526014024380214 0.5352205010843318 0.7132257607028599 -0.4526014024380214 0.5352205010843318 0.7132257607028599 -0.4526014024380214 0.5352205010843318 0.7132257607028599 0.4526014024380214 -0.5352205010843318 -0.7132257607028599 0.4526014024380214 -0.5352205010843318 -0.7132257607028599 0.4526014024380214 -0.5352205010843318 -0.7132257607028599 -0.01615707506364949 0.8895645775456752 -0.4565236152723889 -0.01615707506364949 0.8895645775456752 -0.4565236152723889 -0.01615707506364949 0.8895645775456752 -0.4565236152723889 0.01615707506364949 -0.8895645775456752 0.4565236152723889 0.01615707506364949 -0.8895645775456752 0.4565236152723889 0.01615707506364949 -0.8895645775456752 0.4565236152723889 -0.2445530851912914 0.7083812030021445 0.662110156814299 -0.2445530851912914 0.7083812030021445 0.662110156814299 -0.2445530851912914 0.7083812030021445 0.662110156814299 0.2445530851912914 -0.7083812030021445 -0.662110156814299 0.2445530851912914 -0.7083812030021445 -0.662110156814299 0.2445530851912914 -0.7083812030021445 -0.662110156814299 -0.3727722540896959 0.8255550020737049 -0.4236741497093872 -0.3727722540896959 0.8255550020737049 -0.4236741497093872 -0.3727722540896959 0.8255550020737049 -0.4236741497093872 0.3727722540896959 -0.8255550020737049 0.4236741497093872 0.3727722540896959 -0.8255550020737049 0.4236741497093872 0.3727722540896959 -0.8255550020737049 0.4236741497093872 -0.004528945321048697 0.05242307578666833 0.9986146953551928 -0.004528945321048697 0.05242307578666833 0.9986146953551928 -0.004528945321048697 0.05242307578666833 0.9986146953551928 0.004528945321048697 -0.05242307578666833 -0.9986146953551928 0.004528945321048697 -0.05242307578666833 -0.9986146953551928 0.004528945321048697 -0.05242307578666833 -0.9986146953551928 -0.1485329298021595 0.7545776708405665 0.6391795580533004 -0.1485329298021595 0.7545776708405665 0.6391795580533004 -0.1485329298021595 0.7545776708405665 0.6391795580533004 0.1485329298021595 -0.7545776708405665 -0.6391795580533004 0.1485329298021595 -0.7545776708405665 -0.6391795580533004 0.1485329298021595 -0.7545776708405665 -0.6391795580533004 -0.1168793525265124 -0.002698323385389612 0.99314245504051 -0.1168793525265124 -0.002698323385389612 0.99314245504051 -0.1168793525265124 -0.002698323385389612 0.99314245504051 0.1168793525265124 0.002698323385389612 -0.99314245504051 0.1168793525265124 0.002698323385389612 -0.99314245504051 0.1168793525265124 0.002698323385389612 -0.99314245504051 -0.3526076739173653 0.6092663701128175 0.7102551080732447 -0.3526076739173653 0.6092663701128175 0.7102551080732447 -0.3526076739173653 0.6092663701128175 0.7102551080732447 0.3526076739173653 -0.6092663701128175 -0.7102551080732447 0.3526076739173653 -0.6092663701128175 -0.7102551080732447 0.3526076739173653 -0.6092663701128175 -0.7102551080732447 -0.8822994798373748 -0.4187956792048044 0.2148436802842582 -0.8822994798373748 -0.4187956792048044 0.2148436802842582 -0.8822994798373748 -0.4187956792048044 0.2148436802842582 0.8822994798373748 0.4187956792048044 -0.2148436802842582 0.8822994798373748 0.4187956792048044 -0.2148436802842582 0.8822994798373748 0.4187956792048044 -0.2148436802842582 0.8822994813600588 0.418782057558753 -0.2148702246906924 0.8822994813600588 0.418782057558753 -0.2148702246906924 0.8822994813600588 0.418782057558753 -0.2148702246906924 -0.8822994813600588 -0.418782057558753 0.2148702246906924 -0.8822994813600588 -0.418782057558753 0.2148702246906924 -0.8822994813600588 -0.418782057558753 0.2148702246906924</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"232\" source=\"#ID1936\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1934\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1932\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1933\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"54\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1934\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8 12 13 14 13 12 15 20 21 22 21 20 23 28 29 30 34 35 36 35 34 37 35 37 38 38 37 39 38 39 40 38 40 41 41 40 42 42 40 43 43 40 44 43 44 45 43 45 46 60 61 62 66 67 68 72 73 74 73 72 75 80 81 82 86 87 88 92 93 94 93 92 95 100 101 102 106 107 108 112 113 114 118 119 120 119 118 121 121 118 122 122 118 123 122 123 124 122 124 125 122 125 126 122 126 127 138 139 140 139 138 141 146 147 148 152 153 154 158 159 160 161 160 159 166 167 168 172 173 174 178 179 180 184 185 186 190 191 192 196 197 198 202 203 204 208 209 210 214 215 216 220 221 222 226 227 228</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"54\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1934\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 16 17 18 19 18 17 24 25 26 27 26 25 31 32 33 47 48 49 48 50 49 50 51 49 49 51 52 52 51 53 53 51 54 51 55 54 55 56 54 54 56 57 56 58 57 59 57 58 63 64 65 69 70 71 76 77 78 79 78 77 83 84 85 89 90 91 96 97 98 99 98 97 103 104 105 109 110 111 115 116 117 128 129 130 129 131 130 131 132 130 132 133 130 133 134 130 130 134 135 135 134 136 137 136 134 142 143 144 145 144 143 149 150 151 155 156 157 162 163 164 163 162 165 169 170 171 175 176 177 181 182 183 187 188 189 193 194 195 199 200 201 205 206 207 211 212 213 217 218 219 223 224 225 229 230 231</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1937\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1938\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1940\">6.152514572806012 545.9261760978333 20.36204162007402 0.001277245766232227 556.1845648204632 15.09744821950483</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1940\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1939\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1938\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1939\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1941\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1942\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1944\">224.8350217503526 185.6452323452703 188.3414296174957 224.8391053559881 185.643149666675 188.3432671541635 214.3873125038431 190.9736656879608 183.640180140233 202.5567595943089 188.1023296183012 185.1139688518247 201.1779638672419 179.1006454970714 189.7323823191127 211.6297210497123 172.9702974455024 192.8770070748039 223.4602739592433 175.8416335151643 191.4032183632102 224.8385666879894 185.639320508787 188.3444625851714</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1944\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1943\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1942\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1943\" />\r\n\t\t\t\t\t<p>1 0 0 2 3 2 4 3 5 4 6 5 7 6 1 7</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1945\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1946\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1948\">102.0098718159793 355.7780678810557 99.0594305927591 113.8404247255153 358.6494039507181 97.58564188116588 91.55811463351574 361.9084159326238 95.91480583706903 92.93691036057589 370.9101000538553 91.29639236978028 104.7674632701151 373.7814361235165 89.82260365818729 115.2192561222591 368.4509201022274 94.52569067211948</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1948\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1947\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1946\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1947\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 5 4 5 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1949\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1950\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID1952\">322.7071340877405 41.25132428912434 336.5825938905034 322.7071571208544 18.00707263737468 291.2897271441395 219.2403893221526 190.5605585751773 202.73527150852</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID1952\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1951\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1950\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1951\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1953\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1954\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1956\">120.0723149118439 360.3770668710349 98.67265357971053 120.0633076275694 360.3725188487874 98.671516988436</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1956\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1955\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1954\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1955\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1958\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1961\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID1964\">203.8451794307026 0.006832021782201991 5.143198502202324 0.001762711473855205 0.0001028798726565583 100.1971454154893 203.8451381170547 0.006832022261960447 1.599891416132209 0.001804025121987962 0.0001028793931254768 103.7404525015596 203.8435717000966 3.550655707465694 1.59989141613238 0.001762711473855205 0.0001028798726565583 100.1971454154893 0.0001962945157210072 3.543926565078891 100.1971454154892 203.8451381170547 0.006832022261960447 1.599891416132209 0.001804025121987962 0.0001028793931254768 103.7404525015596 203.8435717000968 3.550655707462965 5.143198532859628 0.000196294515884432 3.543926565076845 103.7404525322167 203.8451794307026 0.006832021782201991 5.143198502202324 0.0001962945157210072 3.543926565078891 100.1971454154892 203.8435717000968 3.550655707462965 5.143198532859628 203.8435717000966 3.550655707465694 1.59989141613238 0.000196294515884432 3.543926565076845 103.7404525322167</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID1964\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1962\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID1965\">3.301108547493854e-005 -0.9999999994551341 -5.202810881367636e-010 3.301108547493854e-005 -0.9999999994551341 -5.202810881367636e-010 3.301108547493854e-005 -0.9999999994551341 -5.202810881367636e-010 3.301108547493854e-005 -0.9999999994551341 -5.202810881367636e-010 -0.4354298063094535 -0.0001924657356688401 -0.90022266508584 -0.4354298063094535 -0.0001924657356688401 -0.90022266508584 -0.4354298063094535 -0.0001924657356688401 -0.90022266508584 -0.4354298063094535 -0.0001924657356688401 -0.90022266508584 0.4354298057435075 0.0001975341578148165 0.900222664261697 0.4354298057435075 0.0001975341578148165 0.900222664261697 0.4354298057435075 0.0001975341578148165 0.900222664261697 0.4354298057435075 0.0001975341578148165 0.900222664261697 -3.301133687055808e-005 0.999999999455126 5.134863617205915e-013 -3.301133687055808e-005 0.999999999455126 5.134863617205915e-013 -3.301133687055808e-005 0.999999999455126 5.134863617205915e-013 -3.301133687055808e-005 0.999999999455126 5.134863617205915e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID1965\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1963\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1961\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1962\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1963\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1967\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1968\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID1971\">91.84413222996847 0.1078525778225412 104.382713573468 91.84256581301018 3.651676263026957 107.9260206901952 91.84417354361631 0.1078525773430101 107.9260206595378 91.8425658130102 3.651676263027639 104.382713573468 91.84417354361631 0.1078525773430101 107.9260206595378 -0.001944548568587834 0.06672002871869154 104.3832490190818 91.84413222996847 0.1078525778225412 104.382713573468 -0.001903234920135333 0.06672002823142975 107.9265561051514 91.8425658130102 3.651676263027639 104.382713573468 -0.001944548568587834 0.06672002871869154 104.3832490190818 -0.003510965526459131 3.610543713915376 104.383249019082 91.84413222996847 0.1078525778225412 104.382713573468 -0.003510965526459131 3.610543713915376 104.383249019082 91.84256581301018 3.651676263026957 107.9260206901952 91.8425658130102 3.651676263027639 104.382713573468 -0.003510965526672294 3.610543713917878 107.9265561358095 -0.001903234920135333 0.06672002823142975 107.9265561051514 91.84256581301018 3.651676263026957 107.9260206901952 -0.003510965526672294 3.610543713917878 107.9265561358095 91.84417354361631 0.1078525773430101 107.9260206595378 -0.003510965526672294 3.610543713917878 107.9265561358095 -0.001944548568587834 0.06672002871869154 104.3832490190818 -0.001903234920135333 0.06672002823142975 107.9265561051514 -0.003510965526459131 3.610543713915376 104.383249019082</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID1971\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1969\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID1972\">0.9999998997017036 0.0004478421553573582 -5.829814114909452e-006 0.9999998997017036 0.0004478421553573582 -5.829814114909452e-006 0.9999998997017036 0.0004478421553573582 -5.829814114909452e-006 0.9999998997017036 0.0004478421553573582 -5.829814114909452e-006 0.0004478421553017301 -0.999999899718697 -5.357934412629625e-009 0.0004478421553017301 -0.999999899718697 -5.357934412629625e-009 0.0004478421553017301 -0.999999899718697 -5.357934412629625e-009 0.0004478421553017301 -0.999999899718697 -5.357934412629625e-009 -5.829813604497128e-006 -2.576848285329469e-009 -0.9999999999830067 -5.829813604497128e-006 -2.576848285329469e-009 -0.9999999999830067 -5.829813604497128e-006 -2.576848285329469e-009 -0.9999999999830067 -5.829813604497128e-006 -2.576848285329469e-009 -0.9999999999830067 -0.0004478421553555554 0.999999899718697 -1.651612196616401e-013 -0.0004478421553555554 0.999999899718697 -1.651612196616401e-013 -0.0004478421553555554 0.999999899718697 -1.651612196616401e-013 -0.0004478421553555554 0.999999899718697 -1.651612196616401e-013 5.829817447883878e-006 -6.006197485300704e-009 0.9999999999830066 5.829817447883878e-006 -6.006197485300704e-009 0.9999999999830066 5.829817447883878e-006 -6.006197485300704e-009 0.9999999999830066 5.829817447883878e-006 -6.006197485300704e-009 0.9999999999830066 -0.9999998997017036 -0.0004478421553925906 5.829814168767427e-006 -0.9999998997017036 -0.0004478421553925906 5.829814168767427e-006 -0.9999998997017036 -0.0004478421553925906 5.829814168767427e-006 -0.9999998997017036 -0.0004478421553925906 5.829814168767427e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID1972\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1970\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1968\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1969\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1970\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19 20 21 22 21 20 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1973\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1974\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID1977\">-0.004035235890896161 3.615699464819954 99.23977785035339 -0.00246881893264117 0.0718757796155387 95.6964707336268 -0.002427505284586573 0.07187577913509813 99.23977781969649 -0.004035235890512467 3.615699464816998 95.69647073362657 91.84204154264596 3.656832013931307 95.6959352880134 -0.00246881893264117 0.0718757796155387 95.6964707336268 -0.004035235890512467 3.615699464816998 95.69647073362657 91.84360795960401 0.1130083287262096 95.69593528801315 91.84364927325191 0.1130083282482701 99.23924237408323 -0.00246881893264117 0.0718757796155387 95.6964707336268 91.84360795960401 0.1130083287262096 95.69593528801315 -0.002427505284586573 0.07187577913509813 99.23977781969649 -0.002427505284586573 0.07187577913509813 99.23977781969649 91.8420415426463 3.656832013928579 99.23924240474017 -0.004035235890896161 3.615699464819954 99.23977785035339 91.84364927325191 0.1130083282482701 99.23924237408323 -0.004035235890896161 3.615699464819954 99.23977785035339 91.8420415426463 3.656832013928579 99.23924240474017 -0.004035235890512467 3.615699464816998 95.69647073362657 295.6854169482269 3.663561156319247 -2.901318711344402 91.84360795960401 0.1130083287262096 95.69593528801315 91.84204154264596 3.656832013931307 95.6959352880134 295.686983365185 0.1197374711157409 -2.90131871134389 91.8420415426463 3.656832013928579 99.23924240474017 91.84204154264596 3.656832013931307 95.6959352880134 -0.004035235890512467 3.615699464816998 95.69647073362657 295.6870246788333 0.1197374706314349 0.64198837472577 91.84360795960401 0.1130083287262096 95.69593528801315 295.686983365185 0.1197374711157409 -2.90131871134389 91.84364927325191 0.1130083282482701 99.23924237408323 91.84364927325191 0.1130083282482701 99.23924237408323 295.6854169482276 3.663561156316064 0.6419884053830742 91.8420415426463 3.656832013928579 99.23924240474017 295.6870246788333 0.1197374706314349 0.64198837472577 91.84204154264596 3.656832013931307 95.6959352880134 295.6854169482276 3.663561156316064 0.6419884053830742 295.6854169482269 3.663561156319247 -2.901318711344402 91.8420415426463 3.656832013928579 99.23924240474017 295.6854169482276 3.663561156316064 0.6419884053830742 91.84204154264596 3.656832013931307 95.6959352880134 295.6870056131658 3.663044557520834 0.6422371875394788 295.686983365185 0.1197374711157409 -2.90131871134389 295.6870246788333 0.1197374706314349 0.64198837472577 295.6869770077941 3.663044557662488 -2.901318711139027 309.8602403165585 0.1197692579285103 0.6421227738848643 295.686983365185 0.1197374711157409 -2.90131871134389 309.8601862839675 0.1197692579312388 -2.90143312458855 295.6870246788333 0.1197374706314349 0.64198837472577 295.6870246788333 0.1197374706314349 0.64198837472577 306.3169268726446 3.663063629694307 0.6421513774523078 295.6870056131658 3.663044557520834 0.6422371875394788 309.8602403165585 0.1197692579285103 0.6421227738848643 309.8601513177748 14.29266142566689 0.6421227746552063 251.5725273820868 10.74927219793426 0.6425933021706101 251.5724765276474 14.29224310589666 0.642593302171008 306.3168950856909 10.74967780287693 0.642151378017445 295.6869770077941 3.663044557662488 -2.901318711139027 306.3169268726446 3.663063629694307 0.6421513774523078 306.3168982672724 3.663063629832095 -2.901404521226141 295.6870056131658 3.663044557520834 0.6422371875394788 309.8601481396237 14.29266142566871 -2.901433123818549 251.5724733494953 10.74927219793972 -2.900962596302009 251.5724733494953 14.29224310590166 -2.900962596302861 306.3168664803201 10.74967780306156 -2.901404520661401 306.3168982672724 3.663063629832095 -2.901404521226141 295.686983365185 0.1197374711157409 -2.90131871134389 295.6869770077941 3.663044557662488 -2.901318711139027 309.8601862839675 0.1197692579312388 -2.90143312458855 309.8601862839675 0.1197692579312388 -2.90143312458855 309.8601513177748 14.29266142566689 0.6421227746552063 309.8602403165585 0.1197692579285103 0.6421227738848643 309.8601481396237 14.29266142566871 -2.901433123818549 251.5724765276474 14.29224310589666 0.642593302171008 251.5724733494953 10.74927219793972 -2.900962596302009 251.5725273820868 10.74927219793426 0.6425933021706101 251.5724733494953 14.29224310590166 -2.900962596302861 306.3168950856909 10.74967780287693 0.642151378017445 251.5724733494953 10.74927219793972 -2.900962596302009 306.3168664803201 10.74967780306156 -2.901404520661401 251.5725273820868 10.74927219793426 0.6425933021706101 306.3168950856909 10.74967780287693 0.642151378017445 306.3168982672724 3.663063629832095 -2.901404521226141 306.3169268726446 3.663063629694307 0.6421513774523078 306.3168664803201 10.74967780306156 -2.901404520661401 251.5724733494953 14.29224310590166 -2.900962596302861 309.8601513177748 14.29266142566689 0.6421227746552063 309.8601481396237 14.29266142566871 -2.901433123818549 251.5724765276474 14.29224310589666 0.642593302171008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID1977\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1975\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID1978\">-0.9999998997017037 -0.0004478421553061353 5.829814117198936e-006 -0.9999998997017037 -0.0004478421553061353 5.829814117198936e-006 -0.9999998997017037 -0.0004478421553061353 5.829814117198936e-006 -0.9999998997017037 -0.0004478421553061353 5.829814117198936e-006 -5.829813597230602e-006 -2.57683631003187e-009 -0.9999999999830067 -5.829813597230602e-006 -2.57683631003187e-009 -0.9999999999830067 -5.829813597230602e-006 -2.57683631003187e-009 -0.9999999999830067 -5.829813597230602e-006 -2.57683631003187e-009 -0.9999999999830067 0.0004478421553128466 -0.999999899718697 -5.35770531621114e-009 0.0004478421553128466 -0.999999899718697 -5.35770531621114e-009 0.0004478421553128466 -0.999999899718697 -5.35770531621114e-009 0.0004478421553128466 -0.999999899718697 -5.35770531621114e-009 5.829817440869185e-006 -6.006081187229812e-009 0.9999999999830066 5.829817440869185e-006 -6.006081187229812e-009 0.9999999999830066 5.829817440869185e-006 -6.006081187229812e-009 0.9999999999830066 5.829817440869185e-006 -6.006081187229812e-009 0.9999999999830066 -0.0004478421553504436 0.999999899718697 9.914774079869401e-014 -0.0004478421553504436 0.999999899718697 9.914774079869401e-014 -0.0004478421553504436 0.999999899718697 9.914774079869401e-014 -0.4354298063094531 -0.0001924657356504937 -0.9002226650858404 -0.4354298063094531 -0.0001924657356504937 -0.9002226650858404 -0.4354298063094531 -0.0001924657356504937 -0.9002226650858404 -0.4354298063094531 -0.0001924657356504937 -0.9002226650858404 -0.0004478421553627559 0.999999899718697 4.179487973158397e-013 -0.0004478421553627559 0.999999899718697 4.179487973158397e-013 -0.0004478421553627559 0.999999899718697 4.179487973158397e-013 3.301108524572851e-005 -0.9999999994551343 -5.207700763405332e-010 3.301108524572851e-005 -0.9999999994551343 -5.207700763405332e-010 3.301108524572851e-005 -0.9999999994551343 -5.207700763405332e-010 3.301108524572851e-005 -0.9999999994551343 -5.207700763405332e-010 0.4354298057435071 0.0001975341577773743 0.9002226642616972 0.4354298057435071 0.0001975341577773743 0.9002226642616972 0.4354298057435071 0.0001975341577773743 0.9002226642616972 0.4354298057435071 0.0001975341577773743 0.9002226642616972 -3.301133703372702e-005 0.999999999455126 1.107650483920392e-013 -3.301133703372702e-005 0.999999999455126 1.107650483920392e-013 -3.301133703372702e-005 0.999999999455126 1.107650483920392e-013 -3.301133690695799e-005 0.999999999455126 4.128195181529737e-013 -3.301133690695799e-005 0.999999999455126 4.128195181529737e-013 -3.301133690695799e-005 0.999999999455126 4.128195181529737e-013 -0.9999999999448955 -3.587822804609934e-006 9.865941253478957e-006 -0.9999999999448955 -3.587822804609934e-006 9.865941253478957e-006 -0.9999999999448955 -3.587822804609934e-006 9.865941253478957e-006 -0.9999999999448955 -3.587822804609934e-006 9.865941253478957e-006 2.242756330966081e-006 -0.9999999999974851 -9.878441395775022e-011 2.242756330966081e-006 -0.9999999999974851 -9.878441395775022e-011 2.242756330966081e-006 -0.9999999999974851 -9.878441395775022e-011 2.242756330966081e-006 -0.9999999999974851 -9.878441395775022e-011 7.467634082430848e-006 -8.151975453465393e-006 0.9999999999388899 7.467634082430848e-006 -8.151975453465393e-006 0.9999999999388899 7.467634082430848e-006 -8.151975453465393e-006 0.9999999999388899 7.467634082430848e-006 -8.151975453465393e-006 0.9999999999388899 7.467634082430848e-006 -8.151975453465393e-006 0.9999999999388899 7.467634082430848e-006 -8.151975453465393e-006 0.9999999999388899 7.467634082430848e-006 -8.151975453465393e-006 0.9999999999388899 7.467634082430848e-006 -8.151975453465393e-006 0.9999999999388899 -1.794196958139042e-006 0.9999999999983904 5.41645542030374e-011 -1.794196958139042e-006 0.9999999999983904 5.41645542030374e-011 -1.794196958139042e-006 0.9999999999983904 5.41645542030374e-011 -1.794196958139042e-006 0.9999999999983904 5.41645542030374e-011 -8.072504758325306e-006 3.42278147421075e-011 -0.9999999999674175 -8.072504758325306e-006 3.42278147421075e-011 -0.9999999999674175 -8.072504758325306e-006 3.42278147421075e-011 -0.9999999999674175 -8.072504758325306e-006 3.42278147421075e-011 -0.9999999999674175 -8.072504758325306e-006 3.42278147421075e-011 -0.9999999999674175 -8.072504758325306e-006 3.42278147421075e-011 -0.9999999999674175 -8.072504758325306e-006 3.42278147421075e-011 -0.9999999999674175 -8.072504758325306e-006 3.42278147421075e-011 -0.9999999999674175 0.9999999999573579 4.485433781554913e-006 -8.072504671676926e-006 0.9999999999573579 4.485433781554913e-006 -8.072504671676926e-006 0.9999999999573579 4.485433781554913e-006 -8.072504671676926e-006 0.9999999999573579 4.485433781554913e-006 -8.072504671676926e-006 -0.9999999999416641 -7.176813479972019e-006 8.072504552815991e-006 -0.9999999999416641 -7.176813479972019e-006 8.072504552815991e-006 -0.9999999999416641 -7.176813479972019e-006 8.072504552815991e-006 -0.9999999999416641 -7.176813479972019e-006 8.072504552815991e-006 7.40907158049346e-006 -0.999999999972553 -1.129895145138673e-010 7.40907158049346e-006 -0.999999999972553 -1.129895145138673e-010 7.40907158049346e-006 -0.999999999972553 -1.129895145138673e-010 7.40907158049346e-006 -0.999999999972553 -1.129895145138673e-010 -0.9999999999573577 -4.485492319249343e-006 8.072504584550466e-006 -0.9999999999573577 -4.485492319249343e-006 8.072504584550466e-006 -0.9999999999573577 -4.485492319249343e-006 8.072504584550466e-006 -0.9999999999573577 -4.485492319249343e-006 8.072504584550466e-006 -7.176813459519603e-006 0.9999999999742467 7.481438198445566e-012 -7.176813459519603e-006 0.9999999999742467 7.481438198445566e-012 -7.176813459519603e-006 0.9999999999742467 7.481438198445566e-012 -7.176813459519603e-006 0.9999999999742467 7.481438198445566e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID1978\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1976\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1974\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1975\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"46\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1976\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 19 20 21 20 19 22 23 24 25 26 27 28 27 26 29 30 31 32 31 30 33 34 35 36 37 38 39 40 41 42 41 40 43 44 45 46 45 44 47 48 49 50 49 48 51 49 51 52 53 52 54 52 53 55 52 55 49 56 57 58 57 56 59 60 61 62 61 60 63 63 60 64 64 65 66 65 64 67 67 64 60 68 69 70 69 68 71 72 73 74 73 72 75 76 77 78 77 76 79 80 81 82 81 80 83 84 85 86 85 84 87</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1981\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1987\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1991\">851.9990970618619 628.1581605663141 120.0787390434579 0 0 0.1203593172334081 851.9934518597829 628.1428089394631 0 0.005645308572947982 0.01535148253378793 120.1990983607048 0.005645308572947982 0.01535148253378793 120.1990983607048 851.9990970618619 628.1581605663141 120.0787390434579 0 0 0.1203593172334081 851.9934518597829 628.1428089394631 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1991\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1988\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1992\">0.5934183178977195 -0.8048942131471991 7.500394896211733e-005 0.5934183178977195 -0.8048942131471991 7.500394896211733e-005 0.5934183178977195 -0.8048942131471991 7.500394896211733e-005 0.5934183178977195 -0.8048942131471991 7.500394896211733e-005 -0.5934183178977195 0.8048942131471991 -7.500394896211733e-005 -0.5934183178977195 0.8048942131471991 -7.500394896211733e-005 -0.5934183178977195 0.8048942131471991 -7.500394896211733e-005 -0.5934183178977195 0.8048942131471991 -7.500394896211733e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1992\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1990\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID1993\">1.002928918520966 0.7888352968459216 -0.1136516845802394 0.2861199523199648 1.002914516008898 0.2744986191205618 -0.113637282068092 0.800456630045324</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID1993\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1989\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1987\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1988\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1989\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1990\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1989\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1995\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2001\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2005\">0 0 0.1208040254533103 854.6387650946417 630.6598089411195 120.0787390434446 854.633119999055 630.6444571699581 0 0.005645095597714089 0.01535177115033548 120.1995430688977 0.005645095597714089 0.01535177115033548 120.1995430688977 0 0 0.1208040254533103 854.6387650946417 630.6598089411195 120.0787390434446 854.633119999055 630.6444571699581 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2005\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2002\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2006\">-0.593757110574082 0.804644323924533 -7.495831439072665e-005 -0.593757110574082 0.804644323924533 -7.495831439072665e-005 -0.593757110574082 0.804644323924533 -7.495831439072665e-005 -0.593757110574082 0.804644323924533 -7.495831439072665e-005 0.593757110574082 -0.804644323924533 7.495831439072665e-005 0.593757110574082 -0.804644323924533 7.495831439072665e-005 0.593757110574082 -0.804644323924533 7.495831439072665e-005 0.593757110574082 -0.804644323924533 7.495831439072665e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2006\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2004\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID2007\">1 0.001005028990701461 0 0.9989949710093004 1.285850317289672e-005 8.077935669463161e-028 0.9999871414968251 0.9999999999999999</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2007\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2003\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2001\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2002\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2003\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2004\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2003\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2008\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2009\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID2012\">1.680291461525485e-010 1.968503937006517 192.0790423372676 1058.806178245628 -1.20508047984913e-011 192.0790423328574 -2.046363078989089e-012 9.094947017729282e-013 192.0790423328574 1058.515964144136 1.522888761140848 192.0790431208545 1058.515964144136 1.522888761140848 192.0790431208545 1.680291461525485e-010 1.968503937006517 192.0790423372676 1058.806178245628 -1.20508047984913e-011 192.0790423328574 -2.046363078989089e-012 9.094947017729282e-013 192.0790423328574 1058.806178245627 -6.59383658785373e-012 227.5121131989992 -2.046363078989089e-012 9.094947017729282e-013 192.0790423328574 1058.806178245628 -1.20508047984913e-011 192.0790423328574 -7.73070496506989e-012 -8.185452315956354e-012 227.5121131989991 -7.73070496506989e-012 -8.185452315956354e-012 227.5121131989991 1058.806178245627 -6.59383658785373e-012 227.5121131989992 -2.046363078989089e-012 9.094947017729282e-013 192.0790423328574 1058.806178245628 -1.20508047984913e-011 192.0790423328574</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID2012\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2010\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID2013\">4.110939921537615e-010 1.951608878221966e-007 -0.999999999999981 4.110939921537615e-010 1.951608878221966e-007 -0.999999999999981 4.110939921537615e-010 1.951608878221966e-007 -0.999999999999981 4.110939921537615e-010 1.951608878221966e-007 -0.999999999999981 -4.110939921537615e-010 -1.951608878221966e-007 0.999999999999981 -4.110939921537615e-010 -1.951608878221966e-007 0.999999999999981 -4.110939921537615e-010 -1.951608878221966e-007 0.999999999999981 -4.110939921537615e-010 -1.951608878221966e-007 0.999999999999981 5.867478636746426e-016 -1 -1.662376020259565e-014 5.867478636746426e-016 -1 -1.662376020259565e-014 5.867478636746426e-016 -1 -1.662376020259565e-014 5.867478636746426e-016 -1 -1.662376020259565e-014 -5.867478636746426e-016 1 1.662376020259565e-014 -5.867478636746426e-016 1 1.662376020259565e-014 -5.867478636746426e-016 1 1.662376020259565e-014 -5.867478636746426e-016 1 1.662376020259565e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID2013\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2011\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2009\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2010\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2011\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2014\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2015\">\r\n\t\t\t\t\t<float_array count=\"138\" id=\"ID2018\">1059.394185361066 1.792402599676279e-007 72.00030135293227 -2.273736754432321e-013 1.591615728102624e-012 2.842170943040401e-014 1059.394185361066 -1.173248165287077e-010 -8.224450027682906e-007 -3.296918293926865e-012 3.586808361433214e-007 72.00030217537724 -3.296918293926865e-012 3.586808361433214e-007 72.00030217537724 1059.394185361066 1.792402599676279e-007 72.00030135293227 -2.273736754432321e-013 1.591615728102624e-012 2.842170943040401e-014 1059.394185361066 -1.173248165287077e-010 -8.224450027682906e-007 1059.394185361066 1.792402599676279e-007 72.00030135293227 1.66096469911281e-010 1.968504295703724 72.00030217978744 -3.296918293926865e-012 3.586808361433214e-007 72.00030217537724 1058.515964144136 1.522888940470466 72.00030296337448 1058.515964144136 1.522888940470466 72.00030296337448 1059.394185361066 1.792402599676279e-007 72.00030135293227 1.66096469911281e-010 1.968504295703724 72.00030217978744 -3.296918293926865e-012 3.586808361433214e-007 72.00030217537724 1063.254841998834 239.0381594067771 -6.054589306359048e-006 -2.273736754432321e-013 1.591615728102624e-012 2.842170943040401e-014 -5.343281372915953e-012 239.0381594067874 2.842170943040401e-014 1058.80617824565 231.3523898254464 -9.606537787476555e-012 992.2859276009968 116.1359167976914 -1.043076736095827e-011 1058.806178245651 1.012824058535216 -9.549694368615747e-012 1059.394185361066 -1.173248165287077e-010 -8.224450027682906e-007 992.2859276009968 116.1359167976914 -1.043076736095827e-011 -2.273736754432321e-013 1.591615728102624e-012 2.842170943040401e-014 1058.806178245651 1.012824058535216 -9.549694368615747e-012 1059.394185361066 -1.173248165287077e-010 -8.224450027682906e-007 1058.80617824565 231.3523898254464 -9.606537787476555e-012 1063.254841998834 239.0381594067771 -6.054589306359048e-006 -5.343281372915953e-012 239.0381594067874 2.842170943040401e-014 -5.343281372915953e-012 239.0381594067874 2.842170943040401e-014 1063.254841998833 239.0381594067658 72.00029612078916 1063.254841998834 239.0381594067771 -6.054589306359048e-006 -5.343281372915953e-012 239.0381594067783 72.00030217537218 -5.343281372915953e-012 239.0381594067783 72.00030217537218 -5.343281372915953e-012 239.0381594067874 2.842170943040401e-014 1063.254841998833 239.0381594067658 72.00029612078916 1063.254841998834 239.0381594067771 -6.054589306359048e-006 -4.661160346586257e-012 237.0696554697859 72.0003021753773 1063.254841998833 239.0381594067658 72.00029612078916 -5.343281372915953e-012 239.0381594067783 72.00030217537218 1062.125329587863 237.0696554697622 72.00030217537719 1062.125329587863 237.0696554697622 72.00030217537719 -4.661160346586257e-012 237.0696554697859 72.0003021753773 1063.254841998833 239.0381594067658 72.00029612078916 -5.343281372915953e-012 239.0381594067783 72.00030217537218</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"46\" source=\"#ID2018\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2016\">\r\n\t\t\t\t\t<float_array count=\"138\" id=\"ID2019\">-8.473843599470787e-011 -1 3.736341157853981e-009 -8.473843599470787e-011 -1 3.736341157853981e-009 -8.473843599470787e-011 -1 3.736341157853981e-009 -8.473843599470787e-011 -1 3.736341157853981e-009 8.473843599470787e-011 1 -3.736341157853981e-009 8.473843599470787e-011 1 -3.736341157853981e-009 8.473843599470787e-011 1 -3.736341157853981e-009 8.473843599470787e-011 1 -3.736341157853981e-009 -6.48567693555804e-011 -3.973245223419584e-007 0.9999999999999212 -6.48567693555804e-011 -3.973245223419584e-007 0.9999999999999212 -6.48567693555804e-011 -3.973245223419584e-007 0.9999999999999212 -6.48567693555804e-011 -3.973245223419584e-007 0.9999999999999212 6.48567693555804e-011 3.973245223419584e-007 -0.9999999999999212 6.48567693555804e-011 3.973245223419584e-007 -0.9999999999999212 6.48567693555804e-011 3.973245223419584e-007 -0.9999999999999212 6.48567693555804e-011 3.973245223419584e-007 -0.9999999999999212 -1.394494085946141e-009 -7.631187441982097e-009 -1 -1.394494085946141e-009 -7.631187441982097e-009 -1 -1.394494085946141e-009 -7.631187441982097e-009 -1 -1.394494085946141e-009 -7.631187441982097e-009 -1 -1.394494085946141e-009 -7.631187441982097e-009 -1 -1.394494085946141e-009 -7.631187441982097e-009 -1 -1.394494085946141e-009 -7.631187441982097e-009 -1 1.394494085946141e-009 7.631187441982097e-009 1 1.394494085946141e-009 7.631187441982097e-009 1 1.394494085946141e-009 7.631187441982097e-009 1 1.394494085946141e-009 7.631187441982097e-009 1 1.394494085946141e-009 7.631187441982097e-009 1 1.394494085946141e-009 7.631187441982097e-009 1 1.394494085946141e-009 7.631187441982097e-009 1 1.057109413716864e-014 1 1.574051490278033e-014 1.057109413716864e-014 1 1.574051490278033e-014 1.057109413716864e-014 1 1.574051490278033e-014 1.057109413716864e-014 1 1.574051490278033e-014 -1.057109413716864e-014 -1 -1.574051490278033e-014 -1.057109413716864e-014 -1 -1.574051490278033e-014 -1.057109413716864e-014 -1 -1.574051490278033e-014 -1.057109413716864e-014 -1 -1.574051490278033e-014 2.850219681473955e-009 1.537047924825101e-006 0.9999999999988187 2.850219681473955e-009 1.537047924825101e-006 0.9999999999988187 2.850219681473955e-009 1.537047924825101e-006 0.9999999999988187 2.850219681473955e-009 1.537047924825101e-006 0.9999999999988187 -2.850219681473955e-009 -1.537047924825101e-006 -0.9999999999988187 -2.850219681473955e-009 -1.537047924825101e-006 -0.9999999999988187 -2.850219681473955e-009 -1.537047924825101e-006 -0.9999999999988187 -2.850219681473955e-009 -1.537047924825101e-006 -0.9999999999988187</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"46\" source=\"#ID2019\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2017\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2015\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2016\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"26\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2017\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 17 19 20 17 21 22 21 17 20 23 24 25 26 25 24 23 27 24 27 28 24 29 24 28 30 31 32 31 30 33 34 35 36 37 36 35 38 39 40 39 38 41 42 43 44 45 44 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2020\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2026\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2030\">1058.806178245627 -6.59383658785373e-012 227.5121131989992 -7.73070496506989e-012 236.2900885406373 227.5121131989992 -7.73070496506989e-012 -8.185452315956354e-012 227.5121131989991 1061.705797813455 236.2900885406343 227.5121131989991 1061.705797813455 236.2900885406343 227.5121131989991 1058.806178245627 -6.59383658785373e-012 227.5121131989992 -7.73070496506989e-012 236.2900885406373 227.5121131989992 -7.73070496506989e-012 -8.185452315956354e-012 227.5121131989991</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2030\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2027\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2031\">-1.647987302177967e-017 -2.001708260951363e-016 1 -1.647987302177967e-017 -2.001708260951363e-016 1 -1.647987302177967e-017 -2.001708260951363e-016 1 -1.647987302177967e-017 -2.001708260951363e-016 1 1.647987302177967e-017 2.001708260951363e-016 -1 1.647987302177967e-017 2.001708260951363e-016 -1 1.647987302177967e-017 2.001708260951363e-016 -1 1.647987302177967e-017 2.001708260951363e-016 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2031\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2029\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID2032\">0.9972689048380443 6.73585480429004e-015 0 1 0 0 1 0.9999999999999876</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2032\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2028\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2026\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2027\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2028\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2029\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2033\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2034\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2037\">-6.821210263296962e-013 236.290088540648 192.0790423328574 1062.125329587858 237.069655469782 192.0790423328574 -5.798028723802418e-012 237.0696554697772 192.0790423328573 1061.705797813441 236.2900885406407 192.0790423328574 1061.705797813441 236.2900885406407 192.0790423328574 -6.821210263296962e-013 236.290088540648 192.0790423328574 1062.125329587858 237.069655469782 192.0790423328574 -5.798028723802418e-012 237.0696554697772 192.0790423328573</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2037\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2035\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2038\">1.647878881960718e-015 7.980641429823632e-014 1 1.647878881960718e-015 7.980641429823632e-014 1 1.647878881960718e-015 7.980641429823632e-014 1 1.647878881960718e-015 7.980641429823632e-014 1 -1.647878881960718e-015 -7.980641429823632e-014 -1 -1.647878881960718e-015 -7.980641429823632e-014 -1 -1.647878881960718e-015 -7.980641429823632e-014 -1 -1.647878881960718e-015 -7.980641429823632e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2038\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2036\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2034\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2035\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2036\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2036\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2039\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2040\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2043\">-7.73070496506989e-012 236.2900885406373 227.5121131989992 1061.705797813441 236.2900885406407 192.0790423328574 -6.821210263296962e-013 236.290088540648 192.0790423328574 1061.705797813455 236.2900885406343 227.5121131989991 1061.705797813455 236.2900885406343 227.5121131989991 -7.73070496506989e-012 236.2900885406373 227.5121131989992 1061.705797813441 236.2900885406407 192.0790423328574 -6.821210263296962e-013 236.290088540648 192.0790423328574</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2043\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2041\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2044\">3.244091818015912e-015 1 1.161051777723992e-014 3.244091818015912e-015 1 1.161051777723992e-014 3.244091818015912e-015 1 1.161051777723992e-014 3.244091818015912e-015 1 1.161051777723992e-014 -3.244091818015912e-015 -1 -1.161051777723992e-014 -3.244091818015912e-015 -1 -1.161051777723992e-014 -3.244091818015912e-015 -1 -1.161051777723992e-014 -3.244091818015912e-015 -1 -1.161051777723992e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2044\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2042\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2040\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2041\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2042\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2045\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2046\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID2049\">-7.063555926833942e-006 9.842553325120207 217.6695516162426 962.1450848312503 9.855521594840866 44.26192949231864 -7.057124093989842e-006 9.855551671145349 44.26189141952091 962.1450848248297 9.855509402957978 44.42457848028161 1053.771742373108 9.855506538734062 44.42458210601683 1053.771742373121 9.8425203845959 217.6695933147823 1053.771742373121 9.8425203845959 217.6695933147823 -7.063555926833942e-006 9.842553325120207 217.6695516162426 1053.771742373108 9.855506538734062 44.42458210601683 962.1450848248297 9.855509402957978 44.42457848028161 962.1450848312503 9.855521594840866 44.26192949231864 -7.057124093989842e-006 9.855551671145349 44.26189141952091 -7.063556950015482e-006 229.1826866655006 217.685992983066 -7.057124093989842e-006 9.855551671145349 44.26189141952091 -7.063555926833942e-006 9.842553325120207 217.6695516162426 6.65455945636495e-006 229.1956850115214 44.27833278634438 6.65455945636495e-006 229.1956850115214 44.27833278634438 -7.063556950015482e-006 229.1826866655006 217.685992983066 -7.057124093989842e-006 9.855551671145349 44.26189141952091 -7.063555926833942e-006 9.842553325120207 217.6695516162426</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID2049\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2047\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID2050\">3.125666749156822e-008 0.9999999971906251 7.495831487032046e-005 3.125666749156822e-008 0.9999999971906251 7.495831487032046e-005 3.125666749156822e-008 0.9999999971906251 7.495831487032046e-005 3.125666749156822e-008 0.9999999971906251 7.495831487032046e-005 3.125666749156822e-008 0.9999999971906251 7.495831487032046e-005 3.125666749156822e-008 0.9999999971906251 7.495831487032046e-005 -3.125666749156822e-008 -0.9999999971906251 -7.495831487032046e-005 -3.125666749156822e-008 -0.9999999971906251 -7.495831487032046e-005 -3.125666749156822e-008 -0.9999999971906251 -7.495831487032046e-005 -3.125666749156822e-008 -0.9999999971906251 -7.495831487032046e-005 -3.125666749156822e-008 -0.9999999971906251 -7.495831487032046e-005 -3.125666749156822e-008 -0.9999999971906251 -7.495831487032046e-005 -0.9999999999999988 3.125963300448147e-008 -3.957073097440715e-008 -0.9999999999999988 3.125963300448147e-008 -3.957073097440715e-008 -0.9999999999999988 3.125963300448147e-008 -3.957073097440715e-008 -0.9999999999999988 3.125963300448147e-008 -3.957073097440715e-008 0.9999999999999988 -3.125963300448147e-008 3.957073097440715e-008 0.9999999999999988 -3.125963300448147e-008 3.957073097440715e-008 0.9999999999999988 -3.125963300448147e-008 3.957073097440715e-008 0.9999999999999988 -3.125963300448147e-008 3.957073097440715e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID2050\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2048\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2046\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2047\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2048\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 6 7 8 8 7 9 9 7 10 11 10 7 12 13 14 13 12 15 16 17 18 19 18 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2051\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2052\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2055\">962.1450985429302 229.195654935226 44.278370859142 -7.063556950015482e-006 229.1826866655006 217.685992983066 6.65455945636495e-006 229.1956850115214 44.27833278634438 962.1450985364969 229.1956427433283 44.44101984710531 1057.57226165656 229.1956397603194 44.44102362323136 1057.572247944879 229.1826536061885 217.6860348319966 1057.572247944879 229.1826536061885 217.6860348319966 1057.57226165656 229.1956397603194 44.44102362323136 -7.063556950015482e-006 229.1826866655006 217.685992983066 962.1450985364969 229.1956427433283 44.44101984710531 962.1450985429302 229.195654935226 44.278370859142 6.65455945636495e-006 229.1956850115214 44.27833278634438</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2055\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2053\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2056\">-3.125665828276426e-008 -0.9999999971906251 -7.495831481715209e-005 -3.125665828276426e-008 -0.9999999971906251 -7.495831481715209e-005 -3.125665828276426e-008 -0.9999999971906251 -7.495831481715209e-005 -3.125665828276426e-008 -0.9999999971906251 -7.495831481715209e-005 -3.125665828276426e-008 -0.9999999971906251 -7.495831481715209e-005 -3.125665828276426e-008 -0.9999999971906251 -7.495831481715209e-005 3.125665828276426e-008 0.9999999971906251 7.495831481715209e-005 3.125665828276426e-008 0.9999999971906251 7.495831481715209e-005 3.125665828276426e-008 0.9999999971906251 7.495831481715209e-005 3.125665828276426e-008 0.9999999971906251 7.495831481715209e-005 3.125665828276426e-008 0.9999999971906251 7.495831481715209e-005 3.125665828276426e-008 0.9999999971906251 7.495831481715209e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2056\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2054\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2052\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2053\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2054\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2054\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 9 10 8 11 8 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2057\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2058\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID2061\">-7.73070496506989e-012 -8.185452315956354e-012 227.5121131989991 -7.063555926833942e-006 9.842553325120207 217.6695516162426 -2.046363078989089e-012 9.094947017729282e-013 192.0790423328574 -7.73070496506989e-012 236.2900885406373 227.5121131989992 1.680291461525485e-010 1.968503937006517 192.0790423372676 1.66096469911281e-010 1.968504295703724 72.00030217978744 -7.063556950015482e-006 229.1826866655006 217.685992983066 6.65455945636495e-006 229.1956850115214 44.27833278634438 -2.273736754432321e-013 1.591615728102624e-012 2.842170943040401e-014 -7.057124093989842e-006 9.855551671145349 44.26189141952091 -5.343281372915953e-012 239.0381594067874 2.842170943040401e-014 -3.296918293926865e-012 3.586808361433214e-007 72.00030217537724 -4.661160346586257e-012 237.0696554697859 72.0003021753773 -6.821210263296962e-013 236.290088540648 192.0790423328574 -5.798028723802418e-012 237.0696554697772 192.0790423328573 -5.343281372915953e-012 239.0381594067783 72.00030217537218 -5.343281372915953e-012 239.0381594067783 72.00030217537218 -4.661160346586257e-012 237.0696554697859 72.0003021753773 -5.343281372915953e-012 239.0381594067874 2.842170943040401e-014 -5.798028723802418e-012 237.0696554697772 192.0790423328573 -6.821210263296962e-013 236.290088540648 192.0790423328574 -7.73070496506989e-012 236.2900885406373 227.5121131989992 6.65455945636495e-006 229.1956850115214 44.27833278634438 -7.057124093989842e-006 9.855551671145349 44.26189141952091 -7.063555926833942e-006 9.842553325120207 217.6695516162426 1.66096469911281e-010 1.968504295703724 72.00030217978744 -3.296918293926865e-012 3.586808361433214e-007 72.00030217537724 -2.273736754432321e-013 1.591615728102624e-012 2.842170943040401e-014 -7.063556950015482e-006 229.1826866655006 217.685992983066 1.680291461525485e-010 1.968503937006517 192.0790423372676 -2.046363078989089e-012 9.094947017729282e-013 192.0790423328574 -7.73070496506989e-012 -8.185452315956354e-012 227.5121131989991</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID2061\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2059\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID2062\">-1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 -1 -2.436654374442111e-013 1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014 1 2.436654374442111e-013 -1.637927261270017e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID2062\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2060\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2058\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2059\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2060\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 2 1 4 4 1 5 1 3 6 6 3 7 8 9 10 9 8 11 9 11 5 9 5 1 10 9 7 10 7 12 12 7 13 13 7 3 12 13 14 10 12 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2060\" />\r\n\t\t\t\t\t<p>16 17 18 19 20 17 21 22 20 20 22 17 17 22 18 22 23 18 24 25 23 25 26 23 26 27 23 18 23 27 22 21 28 28 21 24 25 24 29 29 24 30 21 31 24 30 24 31</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2063\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2064\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2067\">1057.572247944879 229.1826536061885 217.6860348319966 -7.063555926833942e-006 9.842553325120207 217.6695516162426 -7.063556950015482e-006 229.1826866655006 217.685992983066 1053.771742373121 9.8425203845959 217.6695933147823 1053.771742373121 9.8425203845959 217.6695933147823 1057.572247944879 229.1826536061885 217.6860348319966 -7.063555926833942e-006 9.842553325120207 217.6695516162426 -7.063556950015482e-006 229.1826866655006 217.685992983066</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2067\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2065\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2068\">3.957309509530976e-008 7.495831486877268e-005 -0.9999999971906247 3.957309509530976e-008 7.495831486877268e-005 -0.9999999971906247 3.957309509530976e-008 7.495831486877268e-005 -0.9999999971906247 3.957309509530976e-008 7.495831486877268e-005 -0.9999999971906247 -3.957309509530976e-008 -7.495831486877268e-005 0.9999999971906247 -3.957309509530976e-008 -7.495831486877268e-005 0.9999999971906247 -3.957309509530976e-008 -7.495831486877268e-005 0.9999999971906247 -3.957309509530976e-008 -7.495831486877268e-005 0.9999999971906247</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2068\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2066\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2064\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2065\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2066\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2066\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2069\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2070\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2073\">962.1450848312503 9.855521594840866 44.26192949231864 6.65455945636495e-006 229.1956850115214 44.27833278634438 -7.057124093989842e-006 9.855551671145349 44.26189141952091 962.1450985429302 229.195654935226 44.278370859142 962.1450985429302 229.195654935226 44.278370859142 962.1450848312503 9.855521594840866 44.26192949231864 6.65455945636495e-006 229.1956850115214 44.27833278634438 -7.057124093989842e-006 9.855551671145349 44.26189141952091</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2073\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2071\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2074\">-3.957308766069152e-008 -7.495831486156507e-005 0.9999999971906247 -3.957308766069152e-008 -7.495831486156507e-005 0.9999999971906247 -3.957308766069152e-008 -7.495831486156507e-005 0.9999999971906247 -3.957308766069152e-008 -7.495831486156507e-005 0.9999999971906247 3.957308766069152e-008 7.495831486156507e-005 -0.9999999971906247 3.957308766069152e-008 7.495831486156507e-005 -0.9999999971906247 3.957308766069152e-008 7.495831486156507e-005 -0.9999999971906247 3.957308766069152e-008 7.495831486156507e-005 -0.9999999971906247</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2074\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2072\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2070\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2071\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2072\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2075\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2078\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID2081\">962.1450985364969 229.1956427433283 44.44101984710531 962.1450848312503 9.855521594840866 44.26192949231864 962.1450848248297 9.855509402957978 44.42457848028161 962.1450985429302 229.195654935226 44.278370859142</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2081\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2079\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID2082\">-0.9999999999999973 6.251627861073297e-008 -3.956840333148662e-008 -0.9999999999999973 6.251627861073297e-008 -3.956840333148662e-008 -0.9999999999999973 6.251627861073297e-008 -3.956840333148662e-008 -0.9999999999999973 6.251627861073297e-008 -3.956840333148662e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2082\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2080\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2078\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2079\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2080\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2085\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2086\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID2089\">-0.004035235890114564 3.61569946481643 95.69647073362614 -0.004035235891933553 3.615699464817624 99.23977785035325 -0.002468818932811701 0.07187577961502711 95.69647073362617 -0.002427505285140796 0.0718757791332223 99.23977781969626 91.84360795960447 0.1130083287243338 95.69593528801275 91.84204154264444 3.656832013929204 95.69593528801298 -0.002468818932811701 0.07187577961502711 95.69647073362617 -0.004035235890114564 3.61569946481643 95.69647073362614 -0.002427505285140796 0.0718757791332223 99.23977781969626 91.84364927325169 0.1130083282441206 99.23924237408292 -0.002468818932811701 0.07187577961502711 95.69647073362617 91.84360795960447 0.1130083287243338 95.69593528801275 91.84364927325169 0.1130083282441206 99.23924237408292 -0.002427505285140796 0.0718757791332223 99.23977781969626 91.84204154264444 3.656832013927726 99.23924240474008 -0.004035235891933553 3.615699464817624 99.23977785035325 -0.004035235890114564 3.61569946481643 95.69647073362614 91.84204154264444 3.656832013927726 99.23924240474008 -0.004035235891933553 3.615699464817624 99.23977785035325 295.6869833651845 0.1197374711132966 -2.901318711344118 295.685416948224 3.663561156316575 -2.901318711344231 91.84360795960447 0.1130083287243338 95.69593528801275 91.84204154264444 3.656832013929204 95.69593528801298 -0.004035235890114564 3.61569946481643 95.69647073362614 91.84204154264444 3.656832013929204 95.69593528801298 91.84204154264444 3.656832013927726 99.23924240474008 91.84364927325169 0.1130083282441206 99.23924237408292 295.6870246788312 0.1197374706303549 0.6419883747254858 91.84360795960447 0.1130083287243338 95.69593528801275 295.6869833651845 0.1197374711132966 -2.901318711344118 295.6870246788312 0.1197374706303549 0.6419883747254858 91.84364927325169 0.1130083282441206 99.23924237408292 295.6854169482267 3.663561156315723 0.6419884053830174 91.84204154264444 3.656832013927726 99.23924240474008 295.685416948224 3.663561156316575 -2.901318711344231 295.6854169482267 3.663561156315723 0.6419884053830174 91.84204154264444 3.656832013929204 95.69593528801298 91.84204154264444 3.656832013929204 95.69593528801298 295.6854169482267 3.663561156315723 0.6419884053830174 91.84204154264444 3.656832013927726 99.23924240474008 295.6869770077933 3.663044557660442 -2.901318711138799 295.6870056131661 3.663044557519413 0.6422371875389104 295.6869833651845 0.1197374711132966 -2.901318711344118 295.6870246788312 0.1197374706303549 0.6419883747254858 295.6870246788312 0.1197374706303549 0.6419883747254858 309.8602403165569 0.1197692579262935 0.642122773884978 295.6869833651845 0.1197374711132966 -2.901318711344118 309.8601862839687 0.1197692579306704 -2.901433124589232 306.3169268726433 3.663063629692203 0.6421513774523646 306.3169077993825 10.74966508813873 0.6421513779104089 309.860151317775 14.29266142566485 0.6421227746544673 306.3168569449404 14.29263599610181 0.6421513779101247 309.8602403165569 0.1197692579262935 0.642122773884978 295.6870246788312 0.1197374706303549 0.6419883747254858 295.6870056131661 3.663044557519413 0.6422371875389104 295.6870056131661 3.663044557519413 0.6422371875389104 295.6869770077933 3.663044557660442 -2.901318711138799 306.3169268726433 3.663063629692203 0.6421513774523646 306.3168982672733 3.663063629830731 -2.901404521226141 309.8601481396204 14.29266142566723 -2.901433123818379 306.3168982672733 3.663063629830731 -2.901404521226141 309.8601862839687 0.1197692579306704 -2.901433124589232 295.6869833651845 0.1197374711132966 -2.901318711344118 295.6869770077933 3.663044557660442 -2.901318711138799 306.316866480317 10.74967780305991 -2.901404520661174 306.3168537667925 14.29263599610653 -2.901404520563176 309.8601481396204 14.29266142566723 -2.901433123818379 309.8601862839687 0.1197692579306704 -2.901433124589232 309.860151317775 14.29266142566485 0.6421227746544673 309.8602403165569 0.1197692579262935 0.642122773884978 306.3168537667925 14.29263599610653 -2.901404520563176 306.3168569449404 14.29263599610181 0.6421513779101247 306.316866480317 10.74967780305991 -2.901404520661174 306.3169077993825 10.74966508813873 0.6421513779104089 306.316866480317 10.74967780305991 -2.901404520661174 306.3169077993825 10.74966508813873 0.6421513779104089 306.3168982672733 3.663063629830731 -2.901404521226141 306.3169268726433 3.663063629692203 0.6421513774523646 306.3168569449404 14.29263599610181 0.6421513779101247 306.3168537667925 14.29263599610653 -2.901404520563176 309.860151317775 14.29266142566485 0.6421227746544673 309.8601481396204 14.29266142566723 -2.901433123818379</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID2089\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2087\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID2090\">-0.9999998997017036 -0.0004478421553063112 5.829814117198634e-006 -0.9999998997017036 -0.0004478421553063112 5.829814117198634e-006 -0.9999998997017036 -0.0004478421553063112 5.829814117198634e-006 -0.9999998997017036 -0.0004478421553063112 5.829814117198634e-006 -5.82981359723078e-006 -2.576836310194501e-009 -0.9999999999830068 -5.82981359723078e-006 -2.576836310194501e-009 -0.9999999999830068 -5.82981359723078e-006 -2.576836310194501e-009 -0.9999999999830068 -5.82981359723078e-006 -2.576836310194501e-009 -0.9999999999830068 0.0004478421553127913 -0.9999998997186971 -5.35770531631956e-009 0.0004478421553127913 -0.9999998997186971 -5.35770531631956e-009 0.0004478421553127913 -0.9999998997186971 -5.35770531631956e-009 0.0004478421553127913 -0.9999998997186971 -5.35770531631956e-009 5.829817440869234e-006 -6.006081187080736e-009 0.9999999999830066 5.829817440869234e-006 -6.006081187080736e-009 0.9999999999830066 5.829817440869234e-006 -6.006081187080736e-009 0.9999999999830066 5.829817440869234e-006 -6.006081187080736e-009 0.9999999999830066 -0.0004478421553502711 0.9999998997186969 9.914768658858542e-014 -0.0004478421553502711 0.9999998997186969 9.914768658858542e-014 -0.0004478421553502711 0.9999998997186969 9.914768658858542e-014 -0.4354298063094529 -0.0001924657356505583 -0.9002226650858403 -0.4354298063094529 -0.0001924657356505583 -0.9002226650858403 -0.4354298063094529 -0.0001924657356505583 -0.9002226650858403 -0.4354298063094529 -0.0001924657356505583 -0.9002226650858403 -0.0004478421553630946 0.9999998997186971 4.179489870512199e-013 -0.0004478421553630946 0.9999998997186971 4.179489870512199e-013 -0.0004478421553630946 0.9999998997186971 4.179489870512199e-013 3.301108524543615e-005 -0.9999999994551342 -5.207700763134281e-010 3.301108524543615e-005 -0.9999999994551342 -5.207700763134281e-010 3.301108524543615e-005 -0.9999999994551342 -5.207700763134281e-010 3.301108524543615e-005 -0.9999999994551342 -5.207700763134281e-010 0.4354298057435065 0.0001975341577772956 0.9002226642616974 0.4354298057435065 0.0001975341577772956 0.9002226642616974 0.4354298057435065 0.0001975341577772956 0.9002226642616974 0.4354298057435065 0.0001975341577772956 0.9002226642616974 -3.301133703357166e-005 0.9999999994551259 1.107648857617133e-013 -3.301133703357166e-005 0.9999999994551259 1.107648857617133e-013 -3.301133703357166e-005 0.9999999994551259 1.107648857617133e-013 -3.301133690672901e-005 0.9999999994551259 4.128193826277021e-013 -3.301133690672901e-005 0.9999999994551259 4.128193826277021e-013 -3.301133690672901e-005 0.9999999994551259 4.128193826277021e-013 -0.9999999999448955 -3.58782280391542e-006 9.86594125347873e-006 -0.9999999999448955 -3.58782280391542e-006 9.86594125347873e-006 -0.9999999999448955 -3.58782280391542e-006 9.86594125347873e-006 -0.9999999999448955 -3.58782280391542e-006 9.86594125347873e-006 2.242756330365026e-006 -0.999999999997485 -9.878441418814316e-011 2.242756330365026e-006 -0.999999999997485 -9.878441418814316e-011 2.242756330365026e-006 -0.999999999997485 -9.878441418814316e-011 2.242756330365026e-006 -0.999999999997485 -9.878441418814316e-011 7.467634082431074e-006 -8.151975453465449e-006 0.99999999993889 7.467634082431074e-006 -8.151975453465449e-006 0.99999999993889 7.467634082431074e-006 -8.151975453465449e-006 0.99999999993889 7.467634082431074e-006 -8.151975453465449e-006 0.99999999993889 7.467634082431074e-006 -8.151975453465449e-006 0.99999999993889 7.467634082431074e-006 -8.151975453465449e-006 0.99999999993889 7.467634082431074e-006 -8.151975453465449e-006 0.99999999993889 -1.794196958558674e-006 0.9999999999983906 5.416455462316575e-011 -1.794196958558674e-006 0.9999999999983906 5.416455462316575e-011 -1.794196958558674e-006 0.9999999999983906 5.416455462316575e-011 -1.794196958558674e-006 0.9999999999983906 5.416455462316575e-011 -8.072504758325533e-006 3.422781462013476e-011 -0.9999999999674174 -8.072504758325533e-006 3.422781462013476e-011 -0.9999999999674174 -8.072504758325533e-006 3.422781462013476e-011 -0.9999999999674174 -8.072504758325533e-006 3.422781462013476e-011 -0.9999999999674174 -8.072504758325533e-006 3.422781462013476e-011 -0.9999999999674174 -8.072504758325533e-006 3.422781462013476e-011 -0.9999999999674174 -8.072504758325533e-006 3.422781462013476e-011 -0.9999999999674174 0.9999999999573579 4.485433781706848e-006 -8.072504671676878e-006 0.9999999999573579 4.485433781706848e-006 -8.072504671676878e-006 0.9999999999573579 4.485433781706848e-006 -8.072504671676878e-006 0.9999999999573579 4.485433781706848e-006 -8.072504671676878e-006 -0.9999999999416641 -7.17681348036255e-006 8.072504552816014e-006 -0.9999999999416641 -7.17681348036255e-006 8.072504552816014e-006 -0.9999999999416641 -7.17681348036255e-006 8.072504552816014e-006 -0.9999999999416641 -7.17681348036255e-006 8.072504552816014e-006 -0.9999999999573576 -4.485492319505872e-006 8.072504584550287e-006 -0.9999999999573576 -4.485492319505872e-006 8.072504584550287e-006 -0.9999999999573576 -4.485492319505872e-006 8.072504584550287e-006 -0.9999999999573576 -4.485492319505872e-006 8.072504584550287e-006 -7.176813459362911e-006 0.9999999999742468 7.48143818489304e-012 -7.176813459362911e-006 0.9999999999742468 7.48143818489304e-012 -7.176813459362911e-006 0.9999999999742468 7.48143818489304e-012 -7.176813459362911e-006 0.9999999999742468 7.48143818489304e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID2090\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2088\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2086\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2087\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"42\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2088\" />\r\n\t\t\t\t\t<p>0 1 2 3 2 1 4 5 6 7 6 5 8 9 10 11 10 9 12 13 14 15 14 13 16 17 18 19 20 21 22 21 20 23 24 25 26 27 28 29 28 27 30 31 32 33 32 31 34 35 36 37 38 39 40 41 42 43 42 41 44 45 46 47 46 45 48 49 50 51 50 49 50 52 48 52 53 48 54 48 53 55 56 57 58 57 56 59 60 61 61 60 62 63 62 60 60 59 64 65 64 59 66 67 68 69 68 67 70 71 72 73 72 71 74 75 76 77 76 75 78 79 80 81 80 79</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2091\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2092\">\r\n\t\t\t\t\t<float_array count=\"273\" id=\"ID2095\">-0.003707289994963503 3.610440818825964 102.7831134807062 -0.00370728999541825 3.610440818826135 106.3264205974337 -0.002140873036751145 0.06661713362609589 102.7831134807063 -0.002099559388170746 0.06661713314161943 106.326420566776 91.84276067008022 0.1077496456649101 106.3264735551637 91.8439772191482 0.1077496822518356 106.3258851211621 -0.002099559388170746 0.06661713314161943 106.326420566776 -0.002140873036751145 0.06661713362609589 102.7831134807063 91.84393590549826 0.1077496827322761 102.7825780350925 91.8439772191482 0.1077496822518356 106.3258851211621 91.84276067008022 0.1077496456649101 106.3264735551637 91.84236948854368 3.651573367935669 106.3258851518196 -0.002099559388170746 0.06661713314161943 106.326420566776 -0.00370728999541825 3.610440818826135 106.3264205974337 91.84276067008022 0.1077496456649101 106.3264735551637 -0.002099559388170746 0.06661713314161943 106.326420566776 91.84236948854368 3.651573367935669 106.3258851518196 -0.00370728999541825 3.610440818826135 106.3264205974337 -0.00370728999541825 3.610440818826135 106.3264205974337 -0.003707289994963503 3.610440818825964 102.7831134807062 91.84236948854368 3.651573367935669 106.3258851518196 91.84236948854323 3.651573367936578 102.7825780350922 91.84393590549826 0.1077496827322761 102.7825780350925 91.84236948854323 3.651573367936578 102.7825780350922 -0.002140873036751145 0.06661713362609589 102.7831134807063 -0.003707289994963503 3.610440818825964 102.7831134807062 91.84236948854323 3.651573367936578 102.7825780350922 91.84393590549826 0.1077496827322761 102.7825780350925 91.84236948854368 3.651573367935669 106.3258851518196 91.8439772191482 0.1077496822518356 106.3258851211621 91.84236948854323 3.651573367936578 102.7825780350922 91.84393590549826 0.1077496827322761 102.7825780350925 91.84236948854368 3.651573367935669 106.3258851518196 91.8439772191482 0.1077496822518356 106.3258851211621 182.6499000724325 0.1104805565288416 62.40386509601615 91.84393590549826 0.1077496827322761 102.7825780350925 91.8439772191482 0.1077496822518356 106.3258851211621 91.84276067008022 0.1077496456649101 106.3264735551637 91.84236948854368 3.651573367935669 106.3258851518196 91.8439772191482 0.1077496822518356 106.3258851211621 295.6955264362568 0.1150471699872924 7.724677465143373 182.6499000724325 0.1104805565288416 62.40386509601615 295.6939187056569 3.65887085060632 7.72467749580079 91.8439772191482 0.1077496822518356 106.3258851211621 91.84236948854368 3.651573367935669 106.3258851518196 91.84236948854323 3.651573367936578 102.7825780350922 295.6939187056569 3.65887085060632 7.72467749580079 91.84236948854368 3.651573367935669 106.3258851518196 295.6955264891026 0.1144790995578546 4.181370378524775 295.6939207137498 3.658302781040391 4.18137445154008 91.84393590549826 0.1077496827322761 102.7825780350925 91.84236948854323 3.651573367936578 102.7825780350922 182.6499000724325 0.1104805565288416 62.40386509601615 295.6955264362568 0.1150471699872924 7.724677465143373 91.84393590549826 0.1077496827322761 102.7825780350925 309.8586307590067 3.665293064382411 7.724680585575413 309.8602384896117 0.1214693837630989 7.724680554917882 306.3153240365859 3.663686545791563 7.724679812667375 295.6955264362568 0.1150471699872924 7.724677465143373 295.6939187056569 3.65887085060632 7.72467749580079 295.6939207137498 3.658302781040391 4.18137445154008 295.6939187056569 3.65887085060632 7.72467749580079 91.84236948854323 3.651573367936578 102.7825780350922 295.6955264362568 0.1150471699872924 7.724677465143373 295.6955264891026 0.1144790995578546 4.181370378524775 91.84393590549826 0.1077496827322761 102.7825780350925 309.8586327671037 3.664724994816254 4.181377541314362 306.3153250670548 3.663118475782596 4.181376768405812 309.8602385424542 0.1209013133329222 4.181373468298489 295.6955264891026 0.1144790995578546 4.181370378524775 295.6939207137498 3.658302781040391 4.18137445154008 309.8602385424542 0.1209013133329222 4.181373468298489 295.6955264362568 0.1150471699872924 7.724677465143373 309.8602384896117 0.1214693837630989 7.724680554917882 309.8586307590067 3.665293064382411 7.724680585575413 309.8586327671037 3.664724994816254 4.181377541314362 309.8602384896117 0.1214693837630989 7.724680554917882 309.8602385424542 0.1209013133329222 4.181373468298489 309.8586307590067 3.665293064382411 7.724680585575413 306.3153240365859 3.663686545791563 7.724679812667375 309.8586327671037 3.664724994816254 4.181377541314362 306.3153250670548 3.663118475782596 4.181376768405812 295.6939187056569 3.65887085060632 7.72467749580079 306.3153250670548 3.663118475782596 4.181376768405812 306.3153240365859 3.663686545791563 7.724679812667375 295.6939207137498 3.658302781040391 4.18137445154008 306.3153250670548 3.663118475782596 4.181376768405812 295.6939187056569 3.65887085060632 7.72467749580079 309.8602385424542 0.1209013133329222 4.181373468298489 295.6955264891026 0.1144790995578546 4.181370378524775 295.6955264362568 0.1150471699872924 7.724677465143373</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"91\" source=\"#ID2095\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2093\">\r\n\t\t\t\t\t<float_array count=\"273\" id=\"ID2096\">-0.9999998997017037 -0.000447842155381354 5.82981417711525e-006 -0.9999998997017037 -0.000447842155381354 5.82981417711525e-006 -0.9999998997017037 -0.000447842155381354 5.82981417711525e-006 -0.9999998997017037 -0.000447842155381354 5.82981417711525e-006 0.0004478437363927796 -0.9999998997179882 3.563402935598996e-008 0.0004478437363927796 -0.9999998997179882 3.563402935598996e-008 0.0004478437363927796 -0.9999998997179882 3.563402935598996e-008 0.0004478437363927796 -0.9999998997179882 3.563402935598996e-008 0.0004478437363927796 -0.9999998997179882 3.563402935598996e-008 3.978130860662186e-006 4.743434542236438e-005 0.9999999988670787 3.978130860662186e-006 4.743434542236438e-005 0.9999999988670787 3.978130860662186e-006 4.743434542236438e-005 0.9999999988670787 3.978130860662186e-006 4.743434542236438e-005 0.9999999988670787 3.978130860662186e-006 4.743434542236438e-005 0.9999999988670787 2.589305345139835e-006 8.301454501084075e-005 0.9999999965509405 2.589305345139835e-006 8.301454501084075e-005 0.9999999965509405 2.589305345139835e-006 8.301454501084075e-005 0.9999999965509405 2.589305345139835e-006 8.301454501084075e-005 0.9999999965509405 -0.0004478421553509927 0.9999998997186969 1.349029395136814e-014 -0.0004478421553509927 0.9999998997186969 1.349029395136814e-014 -0.0004478421553509927 0.9999998997186969 1.349029395136814e-014 -0.0004478421553509927 0.9999998997186969 1.349029395136814e-014 -5.829813603715108e-006 -2.576868363330688e-009 -0.9999999999830068 -5.829813603715108e-006 -2.576868363330688e-009 -0.9999999999830068 -5.829813603715108e-006 -2.576868363330688e-009 -0.9999999999830068 -5.829813603715108e-006 -2.576868363330688e-009 -0.9999999999830068 0.9999998997016996 0.0004478421642477136 -5.829814123719428e-006 0.9999998997016996 0.0004478421642477136 -5.829814123719428e-006 0.9999998997016996 0.0004478421642477136 -5.829814123719428e-006 0.9999998997016996 0.0004478421642477136 -5.829814123719428e-006 0.9999998997016996 0.0004478421642477136 -5.829814123690103e-006 0.9999998997016996 0.0004478421642477136 -5.829814123690103e-006 0.9999998997016996 0.0004478421642477136 -5.829814123690103e-006 0.9999998997016996 0.0004478421642477136 -5.829814123690103e-006 3.007351102174587e-005 -0.9999999995477921 -4.861888980062408e-010 3.007351102174587e-005 -0.9999999995477921 -4.861888980062408e-010 3.007351102174587e-005 -0.9999999995477921 -4.861888980062408e-010 0.4354297344923953 0.0001975341253780174 0.9002226987252385 0.4354297344923953 0.0001975341253780174 0.9002226987252385 0.4354297344923953 0.0001975341253780174 0.9002226987252385 0.4354298065607238 0.0001982827960964628 0.900222663701833 0.4354298065607238 0.0001982827960964628 0.900222663701833 0.4354298065607238 0.0001982827960964628 0.900222663701833 0.4354298065607238 0.0001982827960964628 0.900222663701833 0.4354298065607238 0.0001982827960964628 0.900222663701833 -3.579802395462752e-005 0.9999999993592508 2.406492702593938e-013 -3.579802395462752e-005 0.9999999993592508 2.406492702593938e-013 -3.579802395462752e-005 0.9999999993592508 2.406492702593938e-013 -0.4354297614702011 -0.0001943663740485015 -0.9002226863658327 -0.4354297614702011 -0.0001943663740485015 -0.9002226863658327 -0.4354297614702011 -0.0001943663740485015 -0.9002226863658327 -0.4354297614702011 -0.0001943663740485015 -0.9002226863658327 -8.755756790306706e-005 -0.9999999611771887 -0.0002645359964982048 -8.755756790306706e-005 -0.9999999611771887 -0.0002645359964982048 -8.755756790306706e-005 -0.9999999611771887 -0.0002645359964982048 -2.181278410301469e-007 -8.749872978318059e-009 0.9999999999999762 -2.181278410301469e-007 -8.749872978318059e-009 0.9999999999999762 -2.181278410301469e-007 -8.749872978318059e-009 0.9999999999999762 -2.181278410301469e-007 -8.749872978318059e-009 0.9999999999999762 -2.181278410301469e-007 -8.749872978318059e-009 0.9999999999999762 -0.0001105577300631966 0.9999999810369065 -0.000160322097727398 -0.0001105577300631966 0.9999999810369065 -0.000160322097727398 -0.0001105577300631966 0.9999999810369065 -0.000160322097727398 0.0001105577301772165 -0.9999999810369065 0.0001603220977274383 0.0001105577301772165 -0.9999999810369065 0.0001603220977274383 0.0001105577301772165 -0.9999999810369065 0.0001603220977274383 2.176106637100208e-007 1.149426519477138e-006 -0.9999999999993158 2.176106637100208e-007 1.149426519477138e-006 -0.9999999999993158 2.176106637100208e-007 1.149426519477138e-006 -0.9999999999993158 2.176106637100208e-007 1.149426519477138e-006 -0.9999999999993158 2.176106637100208e-007 1.149426519477138e-006 -0.9999999999993158 0.0004533952058706428 -0.9999998843648013 0.0001603220874218962 0.0004533952058706428 -0.9999998843648013 0.0001603220874218962 0.0004533952058706428 -0.9999998843648013 0.0001603220874218962 0.9999998972163462 0.0004533952466795978 2.18131785671163e-007 0.9999998972163462 0.0004533952466795978 2.18131785671163e-007 0.9999998972163462 0.0004533952466795978 2.18131785671163e-007 0.9999998972163462 0.0004533952466795978 2.18131785671163e-007 -0.0004533952059260595 0.9999998843647708 -0.0001603222766238636 -0.0004533952059260595 0.9999998843647708 -0.0001603222766238636 -0.0004533952059260595 0.9999998843647708 -0.0001603222766238636 -0.0004533952059260595 0.9999998843647708 -0.0001603222766238636 -0.0004533952059075188 0.9999998843647708 -0.0001603222765288857 -0.0004533952059075188 0.9999998843647708 -0.0001603222765288857 -0.0004533952059075188 0.9999998843647708 -0.0001603222765288857 -0.000453395205906242 0.9999998843647708 -0.0001603222765249381 -0.000453395205906242 0.9999998843647708 -0.0001603222765249381 -0.000453395205906242 0.9999998843647708 -0.0001603222765249381 0.0004533952058506033 -0.9999998843648011 0.0001603220873417573 0.0004533952058506033 -0.9999998843648011 0.0001603220873417573 0.0004533952058506033 -0.9999998843648011 0.0001603220873417573</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"91\" source=\"#ID2096\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2094\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2092\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2093\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"43\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2094\" />\r\n\t\t\t\t\t<p>0 1 2 3 2 1 4 5 6 6 5 7 8 7 5 9 10 11 10 12 11 13 11 12 14 15 16 17 16 15 18 19 20 21 20 19 22 23 24 25 24 23 26 27 28 29 28 27 30 31 32 33 32 31 34 35 36 37 38 39 40 41 42 41 43 42 44 42 43 45 46 47 48 49 50 51 50 49 52 53 54 55 56 57 56 58 57 59 57 58 60 61 62 63 64 65 66 67 68 68 67 69 70 69 67 71 72 73 74 75 76 77 76 75 78 79 80 81 80 79 82 83 84 85 86 87 88 89 90</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2097\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2098\">\r\n\t\t\t\t\t<float_array count=\"510\" id=\"ID2101\">99.08549117827761 276.7145895073961 100.8402324615948 95.93987827335309 275.0824717978549 100.8402324243047 3.754166755243205e-008 460.1744518422242 5.684341886080802e-014 99.08621198118158 276.7131987862551 100.8402324615952 99.08621198118158 276.7131987862551 100.8402324615952 99.08549117827761 276.7145895073961 100.8402324615948 95.93987827335309 275.0824717978549 100.8402324243047 3.754166755243205e-008 460.1744518422242 5.684341886080802e-014 1.467873460333976 457.3425572082101 5.086155746201612 95.93987827335309 275.0824717978549 100.8402324243047 95.93987823579323 275.0824717892699 104.3835395410295 3.754166755243205e-008 460.1744518422242 5.684341886080802e-014 1.13686837721616e-012 460.1744518336259 3.543307116722247 1.13686837721616e-012 460.1744518336259 3.543307116722247 1.467873460333976 457.3425572082101 5.086155746201612 3.754166755243205e-008 460.1744518422242 5.684341886080802e-014 95.93987827335309 275.0824717978549 100.8402324243047 95.93987823579323 275.0824717892699 104.3835395410295 99.08549117827761 276.7145895073961 100.8402324615948 3.754166755243205e-008 460.1744518422242 5.684341886080802e-014 3.145612942474372 461.8065695517544 3.729456921064411e-008 3.145612942474372 461.8065695517544 3.729456921064411e-008 3.754166755243205e-008 460.1744518422242 5.684341886080802e-014 99.08549117827761 276.7145895073961 100.8402324615948 99.08621198118158 276.7131987862551 100.8402324615952 99.08549114074253 276.7145894987941 104.3835395783233 99.08621194363673 276.7131987776736 104.3835395783218 99.08549117827761 276.7145895073961 100.8402324615948 99.08549117827761 276.7145895073961 100.8402324615948 99.08621198118158 276.7131987862551 100.8402324615952 99.08549114074253 276.7145894987941 104.3835395783233 99.08621194363673 276.7131987776736 104.3835395783218 95.93987823579323 275.0824717892699 104.3835395410295 4.612618073538442 458.9763503137074 5.085131334804999 1.467873460333976 457.3425572082101 5.086155746201612 99.08549114074253 276.7145894987941 104.3835395783233 99.08549114074253 276.7145894987941 104.3835395783233 95.93987823579323 275.0824717892699 104.3835395410295 4.612618073538442 458.9763503137074 5.085131334804999 1.467873460333976 457.3425572082101 5.086155746201612 4.612618073538442 458.9763503137074 5.085131334804999 1.13686837721616e-012 460.1744518336259 3.543307116722247 1.467873460333976 457.3425572082101 5.086155746201612 1.467873460333976 457.3425572082101 5.086155746201612 1.13686837721616e-012 460.1744518336259 3.543307116722247 4.612618073538442 458.9763503137074 5.085131334804999 1.471670567045294 457.3466589954155 8.629609861992037 1.13686837721616e-012 460.1744518336259 3.543307116722247 1.467873460333976 457.3425572082101 5.086155746201612 0.003797066274728422 460.1785535284457 7.086642747133425 0.003797066274728422 460.1785535284457 7.086642747133425 1.471670567045294 457.3466589954155 8.629609861992037 1.13686837721616e-012 460.1744518336259 3.543307116722247 1.467873460333976 457.3425572082101 5.086155746201612 1.13686837721616e-012 460.1744518336259 3.543307116722247 3.145612942474372 461.8065695517544 3.729456921064411e-008 3.754166755243205e-008 460.1744518422242 5.684341886080802e-014 3.145612904934978 461.8065695431492 3.543307154015508 3.145612904934978 461.8065695431492 3.543307154015508 1.13686837721616e-012 460.1744518336259 3.543307116722247 3.145612942474372 461.8065695517544 3.729456921064411e-008 3.754166755243205e-008 460.1744518422242 5.684341886080802e-014 99.08549117827761 276.7145895073961 100.8402324615948 4.612618073538442 458.9763503137074 5.085131334804999 99.08549114074253 276.7145894987941 104.3835395783233 3.145612942474372 461.8065695517544 3.729456921064411e-008 3.145612904934978 461.8065695431492 3.543307154015508 3.145612904934978 461.8065695431492 3.543307154015508 3.145612942474372 461.8065695517544 3.729456921064411e-008 4.612618073538442 458.9763503137074 5.085131334804999 99.08549117827761 276.7145895073961 100.8402324615948 99.08549114074253 276.7145894987941 104.3835395783233 4.617284515893061 458.9787746872744 8.629605201923638 1.467873460333976 457.3425572082101 5.086155746201612 4.612618073538442 458.9763503137074 5.085131334804999 1.471670567045294 457.3466589954155 8.629609861992037 1.471670567045294 457.3466589954155 8.629609861992037 4.617284515893061 458.9787746872744 8.629605201923638 1.467873460333976 457.3425572082101 5.086155746201612 4.612618073538442 458.9763503137074 5.085131334804999 4.612618073538442 458.9763503137074 5.085131334804999 3.145612904934978 461.8065695431492 3.543307154015508 1.13686837721616e-012 460.1744518336259 3.543307116722247 1.13686837721616e-012 460.1744518336259 3.543307116722247 3.145612904934978 461.8065695431492 3.543307154015508 4.612618073538442 458.9763503137074 5.085131334804999 0.003797028738290464 460.1785535198483 10.62994986385579 95.9436753016555 275.0865734838453 107.9268751714312 95.94367526453016 275.0865734754962 111.4701822881602 1.471670567045294 457.3466589954155 8.629609861992037 0.003797066274728422 460.1785535284457 7.086642747133425 0.003797066274728422 460.1785535284457 7.086642747133425 0.003797028738290464 460.1785535198483 10.62994986385579 1.471670567045294 457.3466589954155 8.629609861992037 95.9436753016555 275.0865734838453 107.9268751714312 95.94367526453016 275.0865734754962 111.4701822881602 4.617284515893061 458.9787746872744 8.629605201923638 1.471670567045294 457.3466589954155 8.629609861992037 0.003797066274728422 460.1785535284457 7.086642747133425 0.003797066274728422 460.1785535284457 7.086642747133425 1.471670567045294 457.3466589954155 8.629609861992037 4.617284515893061 458.9787746872744 8.629605201923638 0.003797066274728422 460.1785535284457 7.086642747133425 3.145612904934978 461.8065695431492 3.543307154015508 1.13686837721616e-012 460.1744518336259 3.543307116722247 3.149409971223577 461.8106712379554 7.086642784427568 3.149409971223577 461.8106712379554 7.086642784427568 0.003797066274728422 460.1785535284457 7.086642747133425 3.145612904934978 461.8065695431492 3.543307154015508 1.13686837721616e-012 460.1744518336259 3.543307116722247 3.145612904934978 461.8065695431492 3.543307154015508 4.617284515893061 458.9787746872744 8.629605201923638 4.612618073538442 458.9763503137074 5.085131334804999 3.149409971223577 461.8106712379554 7.086642784427568 3.149409971223577 461.8106712379554 7.086642784427568 3.145612904934978 461.8065695431492 3.543307154015508 4.617284515893061 458.9787746872744 8.629605201923638 4.612618073538442 458.9763503137074 5.085131334804999 99.0900090099276 276.7173004724784 107.92687520873 1.471670567045294 457.3466589954155 8.629609861992037 4.617284515893061 458.9787746872744 8.629605201923638 4.617284515893061 458.9787746872744 8.629605201923638 1.471670567045294 457.3466589954155 8.629609861992037 99.0900090099276 276.7173004724784 107.92687520873 95.94367526453016 275.0865734754962 111.4701822881602 99.0900090099276 276.7173004724784 107.92687520873 95.9436753016555 275.0865734838453 107.9268751714312 99.09000897237138 276.7173004638996 111.4701823254551 99.09000897237138 276.7173004638996 111.4701823254551 95.94367526453016 275.0865734754962 111.4701822881602 99.0900090099276 276.7173004724784 107.92687520873 95.9436753016555 275.0865734838453 107.9268751714312 95.94367526453016 275.0865734754962 111.4701822881602 3.149409933663719 461.8106712293934 10.62994990114876 0.003797028738290464 460.1785535198483 10.62994986385579 99.09000897237138 276.7173004638996 111.4701823254551 99.09000897237138 276.7173004638996 111.4701823254551 95.94367526453016 275.0865734754962 111.4701822881602 3.149409933663719 461.8106712293934 10.62994990114876 0.003797028738290464 460.1785535198483 10.62994986385579 0.003797028738290464 460.1785535198483 10.62994986385579 3.149409971223577 461.8106712379554 7.086642784427568 0.003797066274728422 460.1785535284457 7.086642747133425 3.149409933663719 461.8106712293934 10.62994990114876 3.149409933663719 461.8106712293934 10.62994990114876 0.003797028738290464 460.1785535198483 10.62994986385579 3.149409971223577 461.8106712379554 7.086642784427568 0.003797066274728422 460.1785535284457 7.086642747133425 99.0900090099276 276.7173004724784 107.92687520873 95.9436753016555 275.0865734838453 107.9268751714312 1.471670567045294 457.3466589954155 8.629609861992037 1.471670567045294 457.3466589954155 8.629609861992037 95.9436753016555 275.0865734838453 107.9268751714312 99.0900090099276 276.7173004724784 107.92687520873 4.617284515893061 458.9787746872744 8.629605201923638 0.003797066274728422 460.1785535284457 7.086642747133425 3.149409971223577 461.8106712379554 7.086642784427568 3.149409971223577 461.8106712379554 7.086642784427568 0.003797066274728422 460.1785535284457 7.086642747133425 4.617284515893061 458.9787746872744 8.629605201923638 99.0900090099276 276.7173004724784 107.92687520873 3.149409933663719 461.8106712293934 10.62994990114876 99.09000897237138 276.7173004638996 111.4701823254551 4.617284515893061 458.9787746872744 8.629605201923638 3.149409971223577 461.8106712379554 7.086642784427568 3.149409971223577 461.8106712379554 7.086642784427568 4.617284515893061 458.9787746872744 8.629605201923638 3.149409933663719 461.8106712293934 10.62994990114876 99.0900090099276 276.7173004724784 107.92687520873 99.09000897237138 276.7173004638996 111.4701823254551</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"170\" source=\"#ID2101\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2099\">\r\n\t\t\t\t\t<float_array count=\"510\" id=\"ID2102\">0.2004541862344033 -0.3865482677100654 -0.9002213927426137 0.2004541862344033 -0.3865482677100654 -0.9002213927426137 0.2004541862344033 -0.3865482677100654 -0.9002213927426137 0.2004541862344033 -0.3865482677100654 -0.9002213927426137 -0.2004541862344033 0.3865482677100654 0.9002213927426137 -0.2004541862344033 0.3865482677100654 0.9002213927426137 -0.2004541862344033 0.3865482677100654 0.9002213927426137 -0.2004541862344033 0.3865482677100654 0.9002213927426137 -0.8878206553887723 -0.4601896172938395 -1.844825813819432e-008 -0.8878206553887723 -0.4601896172938395 -1.844825813819432e-008 -0.8878206553887723 -0.4601896172938395 -1.844825813819432e-008 -0.8878206553887723 -0.4601896172938395 -1.844825813819432e-008 -0.8878206553887723 -0.4601896172938395 -1.844825813819432e-008 0.8878206553887723 0.4601896172938395 1.844825813819432e-008 0.8878206553887723 0.4601896172938395 1.844825813819432e-008 0.8878206553887723 0.4601896172938395 1.844825813819432e-008 0.8878206553887723 0.4601896172938395 1.844825813819432e-008 0.8878206553887723 0.4601896172938395 1.844825813819432e-008 0.2005396211385468 -0.3865039775917537 -0.9002213814720029 0.2005396211385468 -0.3865039775917537 -0.9002213814720029 0.2005396211385468 -0.3865039775917537 -0.9002213814720029 -0.2005396211385468 0.3865039775917537 0.9002213814720029 -0.2005396211385468 0.3865039775917537 0.9002213814720029 -0.2005396211385468 0.3865039775917537 0.9002213814720029 0.8878358498408898 0.4601603022179389 1.052315899612651e-008 0.8878358498408898 0.4601603022179389 1.052315899612651e-008 0.8878358498408898 0.4601603022179389 1.052315899612651e-008 0.8878358498408898 0.4601603022179389 1.052315899612651e-008 -0.8878358498408898 -0.4601603022179389 -1.052315899612651e-008 -0.8878358498408898 -0.4601603022179389 -1.052315899612651e-008 -0.8878358498408898 -0.4601603022179389 -1.052315899612651e-008 -0.8878358498408898 -0.4601603022179389 -1.052315899612651e-008 -0.2005271170726748 0.3865106836477093 0.9002212876535981 -0.2005271170726748 0.3865106836477093 0.9002212876535981 -0.2005271170726748 0.3865106836477093 0.9002212876535981 -0.2005271170726748 0.3865106836477093 0.9002212876535981 0.2005271170726748 -0.3865106836477093 -0.9002212876535981 0.2005271170726748 -0.3865106836477093 -0.9002212876535981 0.2005271170726748 -0.3865106836477093 -0.9002212876535981 0.2005271170726748 -0.3865106836477093 -0.9002212876535981 -0.2005144300514798 0.386517037376453 0.9002213856373664 -0.2005144300514798 0.386517037376453 0.9002213856373664 -0.2005144300514798 0.386517037376453 0.9002213856373664 0.2005144300514798 -0.386517037376453 -0.9002213856373664 0.2005144300514798 -0.386517037376453 -0.9002213856373664 0.2005144300514798 -0.386517037376453 -0.9002213856373664 -0.8881497341132056 -0.4595517907935618 0.001483702487887663 -0.8881497341132056 -0.4595517907935618 0.001483702487887663 -0.8881497341132056 -0.4595517907935618 0.001483702487887663 -0.8881497341132056 -0.4595517907935618 0.001483702487887663 0.8881497341132056 0.4595517907935618 -0.001483702487887663 0.8881497341132056 0.4595517907935618 -0.001483702487887663 0.8881497341132056 0.4595517907935618 -0.001483702487887663 0.8881497341132056 0.4595517907935618 -0.001483702487887663 -0.4605526953586797 0.8876323646633529 -2.724634415829639e-009 -0.4605526953586797 0.8876323646633529 -2.724634415829639e-009 -0.4605526953586797 0.8876323646633529 -2.724634415829639e-009 -0.4605526953586797 0.8876323646633529 -2.724634415829639e-009 0.4605526953586797 -0.8876323646633529 2.724634415829639e-009 0.4605526953586797 -0.8876323646633529 2.724634415829639e-009 0.4605526953586797 -0.8876323646633529 2.724634415829639e-009 0.4605526953586797 -0.8876323646633529 2.724634415829639e-009 0.8878206574948525 0.4601896132306854 9.298211255391901e-009 0.8878206574948525 0.4601896132306854 9.298211255391901e-009 0.8878206574948525 0.4601896132306854 9.298211255391901e-009 0.8878206574948525 0.4601896132306854 9.298211255391901e-009 0.8878206574948525 0.4601896132306854 9.298211255391901e-009 -0.8878206574948525 -0.4601896132306854 -9.298211255391901e-009 -0.8878206574948525 -0.4601896132306854 -9.298211255391901e-009 -0.8878206574948525 -0.4601896132306854 -9.298211255391901e-009 -0.8878206574948525 -0.4601896132306854 -9.298211255391901e-009 -0.8878206574948525 -0.4601896132306854 -9.298211255391901e-009 0.4607887451423778 -0.8875098090208314 0.0002669118210377154 0.4607887451423778 -0.8875098090208314 0.0002669118210377154 0.4607887451423778 -0.8875098090208314 0.0002669118210377154 0.4607887451423778 -0.8875098090208314 0.0002669118210377154 -0.4607887451423778 0.8875098090208314 -0.0002669118210377154 -0.4607887451423778 0.8875098090208314 -0.0002669118210377154 -0.4607887451423778 0.8875098090208314 -0.0002669118210377154 -0.4607887451423778 0.8875098090208314 -0.0002669118210377154 -0.2005278477478155 0.3864812864996164 0.9002337460144619 -0.2005278477478155 0.3864812864996164 0.9002337460144619 -0.2005278477478155 0.3864812864996164 0.9002337460144619 0.2005278477478155 -0.3864812864996164 -0.9002337460144619 0.2005278477478155 -0.3864812864996164 -0.9002337460144619 0.2005278477478155 -0.3864812864996164 -0.9002337460144619 -0.8878206575587421 -0.4601896131074267 -8.919544161102057e-009 -0.8878206575587421 -0.4601896131074267 -8.919544161102057e-009 -0.8878206575587421 -0.4601896131074267 -8.919544161102057e-009 -0.8878206575587421 -0.4601896131074267 -8.919544161102057e-009 -0.8878206575587421 -0.4601896131074267 -8.919544161102057e-009 0.8878206575587421 0.4601896131074267 8.919544161102057e-009 0.8878206575587421 0.4601896131074267 8.919544161102057e-009 0.8878206575587421 0.4601896131074267 8.919544161102057e-009 0.8878206575587421 0.4601896131074267 8.919544161102057e-009 0.8878206575587421 0.4601896131074267 8.919544161102057e-009 0.2005507976971467 -0.3865287153785265 -0.9002082701968831 0.2005507976971467 -0.3865287153785265 -0.9002082701968831 0.2005507976971467 -0.3865287153785265 -0.9002082701968831 -0.2005507976971467 0.3865287153785265 0.9002082701968831 -0.2005507976971467 0.3865287153785265 0.9002082701968831 -0.2005507976971467 0.3865287153785265 0.9002082701968831 -0.4605526296925703 0.8876322381231149 -0.0005339736027123026 -0.4605526296925703 0.8876322381231149 -0.0005339736027123026 -0.4605526296925703 0.8876322381231149 -0.0005339736027123026 -0.4605526296925703 0.8876322381231149 -0.0005339736027123026 0.4605526296925703 -0.8876322381231149 0.0005339736027123026 0.4605526296925703 -0.8876322381231149 0.0005339736027123026 0.4605526296925703 -0.8876322381231149 0.0005339736027123026 0.4605526296925703 -0.8876322381231149 0.0005339736027123026 0.8881497051315661 0.4595518469282303 -0.001483664235835409 0.8881497051315661 0.4595518469282303 -0.001483664235835409 0.8881497051315661 0.4595518469282303 -0.001483664235835409 0.8881497051315661 0.4595518469282303 -0.001483664235835409 -0.8881497051315661 -0.4595518469282303 0.001483664235835409 -0.8881497051315661 -0.4595518469282303 0.001483664235835409 -0.8881497051315661 -0.4595518469282303 0.001483664235835409 -0.8881497051315661 -0.4595518469282303 0.001483664235835409 0.2005368894521602 -0.3865019097411394 -0.9002228778115475 0.2005368894521602 -0.3865019097411394 -0.9002228778115475 0.2005368894521602 -0.3865019097411394 -0.9002228778115475 -0.2005368894521602 0.3865019097411394 0.9002228778115475 -0.2005368894521602 0.3865019097411394 0.9002228778115475 -0.2005368894521602 0.3865019097411394 0.9002228778115475 -0.4601603051562335 0.8878358483179885 -2.727556376324245e-009 -0.4601603051562335 0.8878358483179885 -2.727556376324245e-009 -0.4601603051562335 0.8878358483179885 -2.727556376324245e-009 -0.4601603051562335 0.8878358483179885 -2.727556376324245e-009 0.4601603051562335 -0.8878358483179885 2.727556376324245e-009 0.4601603051562335 -0.8878358483179885 2.727556376324245e-009 0.4601603051562335 -0.8878358483179885 2.727556376324245e-009 0.4601603051562335 -0.8878358483179885 2.727556376324245e-009 -0.2004535753202653 0.3865470912199672 0.9002220339509055 -0.2004535753202653 0.3865470912199672 0.9002220339509055 -0.2004535753202653 0.3865470912199672 0.9002220339509055 -0.2004535753202653 0.3865470912199672 0.9002220339509055 0.2004535753202653 -0.3865470912199672 -0.9002220339509055 0.2004535753202653 -0.3865470912199672 -0.9002220339509055 0.2004535753202653 -0.3865470912199672 -0.9002220339509055 0.2004535753202653 -0.3865470912199672 -0.9002220339509055 -0.460552695356845 0.8876323646643046 -2.730404122871825e-009 -0.460552695356845 0.8876323646643046 -2.730404122871825e-009 -0.460552695356845 0.8876323646643046 -2.730404122871825e-009 -0.460552695356845 0.8876323646643046 -2.730404122871825e-009 0.460552695356845 -0.8876323646643046 2.730404122871825e-009 0.460552695356845 -0.8876323646643046 2.730404122871825e-009 0.460552695356845 -0.8876323646643046 2.730404122871825e-009 0.460552695356845 -0.8876323646643046 2.730404122871825e-009 0.2003685543914691 -0.3865921810231316 -0.9002215993758711 0.2003685543914691 -0.3865921810231316 -0.9002215993758711 0.2003685543914691 -0.3865921810231316 -0.9002215993758711 -0.2003685543914691 0.3865921810231316 0.9002215993758711 -0.2003685543914691 0.3865921810231316 0.9002215993758711 -0.2003685543914691 0.3865921810231316 0.9002215993758711 0.2005514943241837 -0.3865268610253124 -0.9002089112146446 0.2005514943241837 -0.3865268610253124 -0.9002089112146446 0.2005514943241837 -0.3865268610253124 -0.9002089112146446 -0.2005514943241837 0.3865268610253124 0.9002089112146446 -0.2005514943241837 0.3865268610253124 0.9002089112146446 -0.2005514943241837 0.3865268610253124 0.9002089112146446 0.8878206576754055 0.4601896128823536 8.902889625468429e-009 0.8878206576754055 0.4601896128823536 8.902889625468429e-009 0.8878206576754055 0.4601896128823536 8.902889625468429e-009 0.8878206576754055 0.4601896128823536 8.902889625468429e-009 0.8878206576754055 0.4601896128823536 8.902889625468429e-009 -0.8878206576754055 -0.4601896128823536 -8.902889625468429e-009 -0.8878206576754055 -0.4601896128823536 -8.902889625468429e-009 -0.8878206576754055 -0.4601896128823536 -8.902889625468429e-009 -0.8878206576754055 -0.4601896128823536 -8.902889625468429e-009 -0.8878206576754055 -0.4601896128823536 -8.902889625468429e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"170\" source=\"#ID2102\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2100\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2098\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2099\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"82\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2100\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 11 8 12 13 14 15 15 14 16 17 16 14 18 19 20 21 22 23 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 43 44 45 46 47 48 47 46 49 50 51 52 53 52 51 54 55 56 55 54 57 58 59 60 61 60 59 62 63 64 63 62 65 63 65 66 67 68 69 68 70 69 71 69 70 72 73 74 73 72 75 76 77 78 79 78 77 80 81 82 83 84 85 86 87 88 87 86 89 89 86 90 91 92 93 93 92 94 95 94 92 96 97 98 99 100 101 102 103 104 103 102 105 106 107 108 109 108 107 110 111 112 111 110 113 114 115 116 117 116 115 118 119 120 121 122 123 124 125 126 125 124 127 128 129 130 131 130 129 132 133 134 133 132 135 136 137 138 139 138 137 140 141 142 141 140 143 144 145 146 147 146 145 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 161 160 163 161 163 164 165 166 167 166 168 167 169 167 168</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2104\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2105\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID2108\">5352.876044657936 659.4528195572088 405.9114490082444 5299.065060764848 747.7298563927047 400.825753068077 5002.857915016886 1233.658327583202 405.9114471725679 5352.875360137713 659.453942012706 354.7946358644651 5177.851085110768 946.5816488260946 400.8342780791027 5238.45692408556 847.1576368535066 355.0135087577119 5056.651792574827 1145.409353571871 400.8428518055338 5117.249528027041 1045.998635446061 355.0252724599484 5002.857617306734 1233.658815419855 355.0363746898581 5002.857617306734 1233.658815419855 355.0363746898581 5056.651792574827 1145.409353571871 400.8428518055338 5002.857915016886 1233.658327583202 405.9114471725679 5117.249528027041 1045.998635446061 355.0252724599484 5177.851085110768 946.5816488260946 400.8342780791027 5238.45692408556 847.1576368535066 355.0135087577119 5299.065060764848 747.7298563927047 400.825753068077 5352.875360137713 659.453942012706 354.7946358644651 5352.876044657936 659.4528195572088 405.9114490082444</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID2108\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2106\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID2109\">0.8538670116546603 0.5204912356687096 -5.255542168559196e-009 0.8538670116546603 0.5204912356687096 -5.255542168559196e-009 0.8538670116546603 0.5204912356687096 -5.255542168559196e-009 0.8538670116546603 0.5204912356687096 -5.255542168559196e-009 0.8538670116546603 0.5204912356687096 -5.255542168559196e-009 0.8538670116546603 0.5204912356687096 -5.255542168559196e-009 0.8538670116546603 0.5204912356687096 -5.255542168559196e-009 0.8538670116546603 0.5204912356687096 -5.255542168559196e-009 0.8538670116546603 0.5204912356687096 -5.255542168559196e-009 -0.8538670116546603 -0.5204912356687096 5.255542168559196e-009 -0.8538670116546603 -0.5204912356687096 5.255542168559196e-009 -0.8538670116546603 -0.5204912356687096 5.255542168559196e-009 -0.8538670116546603 -0.5204912356687096 5.255542168559196e-009 -0.8538670116546603 -0.5204912356687096 5.255542168559196e-009 -0.8538670116546603 -0.5204912356687096 5.255542168559196e-009 -0.8538670116546603 -0.5204912356687096 5.255542168559196e-009 -0.8538670116546603 -0.5204912356687096 5.255542168559196e-009 -0.8538670116546603 -0.5204912356687096 5.255542168559196e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID2109\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2107\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2105\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2106\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2107\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 2 1 4 4 1 5 2 4 6 6 4 7 2 6 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2107\" />\r\n\t\t\t\t\t<p>9 10 11 12 13 10 10 13 11 14 15 13 13 15 11 16 17 15 11 15 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2110\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2111\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2114\">4257.958168533831 2422.509120726887 405.9114433457729 4254.91021839971 2460.663114958362 368.5779524226887 4257.958168973002 2422.509120615684 368.577952500565 4254.910217960421 2460.663115069518 405.9114432678952 4254.910218096242 2460.663115035358 394.3229492479131 4254.910218202201 2460.663115042284 378.3882385178216 4254.910218096242 2460.663115035358 394.3229492479131 4254.91021839971 2460.663114958362 368.5779524226887 4254.910218202201 2460.663115042284 378.3882385178216 4254.910217960421 2460.663115069518 405.9114432678952 4257.958168533831 2422.509120726887 405.9114433457729 4257.958168973002 2422.509120615684 368.577952500565</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2114\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2112\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2115\">-0.9968243455979055 -0.07963180283848705 -1.106523828706422e-008 -0.9968243455979055 -0.07963180283848705 -1.106523828706422e-008 -0.9968243455979055 -0.07963180283848705 -1.106523828706422e-008 -0.9968243455979055 -0.07963180283848705 -1.106523828706422e-008 -0.9968243455979055 -0.07963180283848705 -1.106523828706422e-008 -0.9968243455979055 -0.07963180283848705 -1.106523828706422e-008 0.9968243455979055 0.07963180283848705 1.106523828706422e-008 0.9968243455979055 0.07963180283848705 1.106523828706422e-008 0.9968243455979055 0.07963180283848705 1.106523828706422e-008 0.9968243455979055 0.07963180283848705 1.106523828706422e-008 0.9968243455979055 0.07963180283848705 1.106523828706422e-008 0.9968243455979055 0.07963180283848705 1.106523828706422e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2115\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2113\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2111\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2112\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2113\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 1 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2113\" />\r\n\t\t\t\t\t<p>6 7 8 6 9 7 9 10 7 11 7 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2116\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2117\">\r\n\t\t\t\t\t<float_array count=\"390\" id=\"ID2120\">4995.967670652796 1244.731655009917 405.9114471709171 4996.057691145279 1244.814109733566 405.911447149049 4995.922139770151 1244.806306158677 405.9114471779759 4998.660060146092 1240.316424560936 405.9114472909103 5002.857915016886 1233.658327583202 405.9114471725679 5002.727052137147 1233.64915929313 405.9114471798202 5002.728349396883 1233.648762947222 405.9114471729175 5002.728349396883 1233.648762947222 405.9114471729175 5002.727052137147 1233.64915929313 405.9114471798202 5002.857915016886 1233.658327583202 405.9114471725679 4998.660060146092 1240.316424560936 405.9114472909103 4996.057691145279 1244.814109733566 405.911447149049 4995.967670652796 1244.731655009917 405.9114471709171 4995.922139770151 1244.806306158677 405.9114471779759 5002.727052137147 1233.64915929313 405.9114471798202 4998.660060146092 1240.316424560936 405.9114472909103 5002.726066597103 1233.648594429144 405.911447172925 5002.726066597103 1233.648594429144 405.911447172925 4998.660060146092 1240.316424560936 405.9114472909103 5002.727052137147 1233.64915929313 405.9114471798202 5359.640903016993 648.3550539158428 338.0323799913497 5359.679101415102 648.2923900519659 405.9114490532149 5359.679101340804 648.2923899056821 379.6270048710808 5352.876044657936 659.4528195572088 405.9114490082444 5352.875360137713 659.453942012706 354.7946358644651 5243.101971360684 839.53742644864 338.0447179266157 5299.065060764848 747.7298563927047 400.825753068077 5238.45692408556 847.1576368535066 355.0135087577119 5233.143006627063 855.8751298982606 338.0457722786691 5177.851085110768 946.5816488260946 400.8342780791027 5122.53421975109 1037.329086936182 338.0574823916148 5117.249528027041 1045.998635446061 355.0252724599484 5121.85523054045 1038.442970222196 338.0575542759939 5111.967161482166 1054.66436916131 338.0586011227989 5056.651792574827 1145.409353571871 400.8428518055338 4996.057690911421 1244.814109415766 338.0708724224583 5002.857617306734 1233.658815419855 355.0363746898581 4996.057691145279 1244.814109733566 405.911447149049 5002.857915016886 1233.658327583202 405.9114471725679 4996.057690911421 1244.814109415766 338.0708724224583 5002.857617306734 1233.658815419855 355.0363746898581 4996.057691145279 1244.814109733566 405.911447149049 5002.857915016886 1233.658327583202 405.9114471725679 5056.651792574827 1145.409353571871 400.8428518055338 5111.967161482166 1054.66436916131 338.0586011227989 5117.249528027041 1045.998635446061 355.0252724599484 5121.85523054045 1038.442970222196 338.0575542759939 5122.53421975109 1037.329086936182 338.0574823916148 5177.851085110768 946.5816488260946 400.8342780791027 5233.143006627063 855.8751298982606 338.0457722786691 5238.45692408556 847.1576368535066 355.0135087577119 5243.101971360684 839.53742644864 338.0447179266157 5299.065060764848 747.7298563927047 400.825753068077 5352.875360137713 659.453942012706 354.7946358644651 5359.640903016993 648.3550539158428 338.0323799913497 5352.876044657936 659.4528195572088 405.9114490082444 5359.679101415102 648.2923900519659 405.9114490532149 5359.679101340804 648.2923899056821 379.6270048710808 5359.640903016993 648.3550539158428 338.0323799913497 5359.679101340804 648.2923899056821 379.6270048710808 5359.679101219154 648.2923896717143 338.032375947316 5359.679101219154 648.2923896717143 338.032375947316 5359.679101340804 648.2923899056821 379.6270048710808 5359.640903016993 648.3550539158428 338.0323799913497 5243.101971231996 839.5374266548392 338.0323751616239 5243.101971360684 839.53742644864 338.0447179266157 5359.640903016993 648.3550539158428 338.0323799913497 5359.640903016993 648.3550539158428 338.0323799913497 5243.101971360684 839.53742644864 338.0447179266157 5243.101971231996 839.5374266548392 338.0323751616239 5243.101971231996 839.5374266548392 338.0323751616239 5233.143006627063 855.8751298982606 338.0457722786691 5243.101971360684 839.53742644864 338.0447179266157 5233.143006909115 855.8751294205642 338.032375094506 5233.143006909115 855.8751294205642 338.032375094506 5243.101971231996 839.5374266548392 338.0323751616239 5233.143006627063 855.8751298982606 338.0457722786691 5243.101971360684 839.53742644864 338.0447179266157 5121.855230269825 1038.442970536969 338.0323743444669 5233.143006627063 855.8751298982606 338.0457722786691 5233.143006909115 855.8751294205642 338.032375094506 5122.53421975109 1037.329086936182 338.0574823916148 5121.85523054045 1038.442970222196 338.0575542759939 5121.85523054045 1038.442970222196 338.0575542759939 5121.855230269825 1038.442970536969 338.0323743444669 5122.53421975109 1037.329086936182 338.0574823916148 5233.143006627063 855.8751298982606 338.0457722786691 5233.143006909115 855.8751294205642 338.032375094506 5121.855230269825 1038.442970536969 338.0323743444669 5111.967161482166 1054.66436916131 338.0586011227989 5121.85523054045 1038.442970222196 338.0575542759939 5111.967161930515 1054.664368286363 338.0323742778255 5111.967161930515 1054.664368286363 338.0323742778255 5121.855230269825 1038.442970536969 338.0323743444669 5111.967161482166 1054.66436916131 338.0586011227989 5121.85523054045 1038.442970222196 338.0575542759939 5359.679101415102 648.2923900519659 405.9114490532149 5352.876044657936 659.4528195572088 405.9114490082444 5352.874770259685 659.4506048104638 405.9114506587645 5352.874770259685 659.4506048104638 405.9114506587645 5352.876044657936 659.4528195572088 405.9114490082444 5359.679101415102 648.2923900519659 405.9114490532149 5221.435157569532 852.0205664601183 338.0323319608044 5231.470936295753 835.5631994610687 338.0323317830521 5220.640337490329 841.8407139519629 338.0323320786383 5233.060576452464 855.9229044739641 338.0323315473887 5243.096355178063 839.4655374739702 338.0323313696318 5233.143006909115 855.8751294205642 338.032375094506 5243.101971231996 839.5374266548392 338.0323751616239 5243.101971231996 839.5374266548392 338.0323751616239 5233.143006909115 855.8751294205642 338.032375094506 5243.096355178063 839.4655374739702 338.0323313696318 5233.060576452464 855.9229044739641 338.0323315473887 5231.470936295753 835.5631994610687 338.0323317830521 5221.435157569532 852.0205664601183 338.0323319608044 5220.640337490329 841.8407139519629 338.0323320786383 5100.182798759591 1050.854153713022 338.0323341084823 5110.218577485744 1034.396786713947 338.0323339307261 5099.38797868033 1040.674301204832 338.032334226312 5111.808217642522 1054.75649172686 338.0323336950623 5121.843996368109 1038.299124726862 338.0323335173167 5111.967161930515 1054.664368286363 338.0323742778255 5121.855230269825 1038.442970536969 338.0323743444669 5121.855230269825 1038.442970536969 338.0323743444669 5111.967161930515 1054.664368286363 338.0323742778255 5121.843996368109 1038.299124726862 338.0323335173167 5111.808217642522 1054.75649172686 338.0323336950623 5110.218577485744 1034.396786713947 338.0323339307261 5100.182798759591 1050.854153713022 338.0323341084823 5099.38797868033 1040.674301204832 338.032334226312</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"130\" source=\"#ID2120\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2118\">\r\n\t\t\t\t\t<float_array count=\"390\" id=\"ID2121\">2.772107691446648e-007 1.693213565112574e-007 0.9999999999999473 2.772107691446648e-007 1.693213565112574e-007 0.9999999999999473 2.772107691446648e-007 1.693213565112574e-007 0.9999999999999473 2.772107691446648e-007 1.693213565112574e-007 0.9999999999999473 2.772107691446648e-007 1.693213565112574e-007 0.9999999999999473 2.772107691446648e-007 1.693213565112574e-007 0.9999999999999473 2.772107691446648e-007 1.693213565112574e-007 0.9999999999999473 -2.772107691446648e-007 -1.693213565112574e-007 -0.9999999999999473 -2.772107691446648e-007 -1.693213565112574e-007 -0.9999999999999473 -2.772107691446648e-007 -1.693213565112574e-007 -0.9999999999999473 -2.772107691446648e-007 -1.693213565112574e-007 -0.9999999999999473 -2.772107691446648e-007 -1.693213565112574e-007 -0.9999999999999473 -2.772107691446648e-007 -1.693213565112574e-007 -0.9999999999999473 -2.772107691446648e-007 -1.693213565112574e-007 -0.9999999999999473 -5.176853567567295e-006 -3.174512003924168e-006 0.9999999999815613 -5.176853567567295e-006 -3.174512003924168e-006 0.9999999999815613 -5.176853567567295e-006 -3.174512003924168e-006 0.9999999999815613 5.176853567567295e-006 3.174512003924168e-006 -0.9999999999815613 5.176853567567295e-006 3.174512003924168e-006 -0.9999999999815613 5.176853567567295e-006 3.174512003924168e-006 -0.9999999999815613 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 0.85386701166052 0.5204912356590968 -5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 -0.85386701166052 -0.5204912356590968 5.291958442188069e-009 0.8538670481431621 0.5204911758092382 -5.425635224965927e-009 0.8538670481431621 0.5204911758092382 -5.425635224965927e-009 0.8538670481431621 0.5204911758092382 -5.425635224965927e-009 -0.8538670481431621 -0.5204911758092382 5.425635224965927e-009 -0.8538670481431621 -0.5204911758092382 5.425635224965927e-009 -0.8538670481431621 -0.5204911758092382 5.425635224965927e-009 0.8538670116554521 0.5204912356673712 -2.03232886838555e-007 0.8538670116554521 0.5204912356673712 -2.03232886838555e-007 0.8538670116554521 0.5204912356673712 -2.03232886838555e-007 -0.8538670116554521 -0.5204912356673712 2.03232886838555e-007 -0.8538670116554521 -0.5204912356673712 2.03232886838555e-007 -0.8538670116554521 -0.5204912356673712 2.03232886838555e-007 0.8538670115831575 0.5204912357858494 -4.092859925690659e-007 0.8538670115831575 0.5204912357858494 -4.092859925690659e-007 0.8538670115831575 0.5204912357858494 -4.092859925690659e-007 0.8538670115831575 0.5204912357858494 -4.092859925690659e-007 -0.8538670115831575 -0.5204912357858494 4.092859925690659e-007 -0.8538670115831575 -0.5204912357858494 4.092859925690659e-007 -0.8538670115831575 -0.5204912357858494 4.092859925690659e-007 -0.8538670115831575 -0.5204912357858494 4.092859925690659e-007 0.8538670115575513 0.5204912358228918 -2.309919837470781e-006 0.8538670115575513 0.5204912358228918 -2.309919837470781e-006 0.8538670115575513 0.5204912358228918 -2.309919837470781e-006 0.8538670115575513 0.5204912358228918 -2.309919837470781e-006 0.8538670115575513 0.5204912358228918 -2.309919837470781e-006 -0.8538670115575513 -0.5204912358228918 2.309919837470781e-006 -0.8538670115575513 -0.5204912358228918 2.309919837470781e-006 -0.8538670115575513 -0.5204912358228918 2.309919837470781e-006 -0.8538670115575513 -0.5204912358228918 2.309919837470781e-006 -0.8538670115575513 -0.5204912358228918 2.309919837470781e-006 0.8538670115469231 0.5204912358383433 -2.720427883492215e-006 0.8538670115469231 0.5204912358383433 -2.720427883492215e-006 0.8538670115469231 0.5204912358383433 -2.720427883492215e-006 0.8538670115469231 0.5204912358383433 -2.720427883492215e-006 -0.8538670115469231 -0.5204912358383433 2.720427883492215e-006 -0.8538670115469231 -0.5204912358383433 2.720427883492215e-006 -0.8538670115469231 -0.5204912358383433 2.720427883492215e-006 -0.8538670115469231 -0.5204912358383433 2.720427883492215e-006 0.0006289011167182071 0.0003833629308712717 0.9999997287580875 0.0006289011167182071 0.0003833629308712717 0.9999997287580875 0.0006289011167182071 0.0003833629308712717 0.9999997287580875 -0.0006289011167182071 -0.0003833629308712717 -0.9999997287580875 -0.0006289011167182071 -0.0003833629308712717 -0.9999997287580875 -0.0006289011167182071 -0.0003833629308712717 -0.9999997287580875 1.219088601838334e-006 7.489407405707703e-007 -0.9999999999989765 1.219088601838334e-006 7.489407405707703e-007 -0.9999999999989765 1.219088601838334e-006 7.489407405707703e-007 -0.9999999999989765 1.219088601838334e-006 7.489407405707703e-007 -0.9999999999989765 1.219088601838334e-006 7.489407405707703e-007 -0.9999999999989765 1.219088601838334e-006 7.489407405707703e-007 -0.9999999999989765 1.219088601838334e-006 7.489407405707703e-007 -0.9999999999989765 -1.219088601838334e-006 -7.489407405707703e-007 0.9999999999989765 -1.219088601838334e-006 -7.489407405707703e-007 0.9999999999989765 -1.219088601838334e-006 -7.489407405707703e-007 0.9999999999989765 -1.219088601838334e-006 -7.489407405707703e-007 0.9999999999989765 -1.219088601838334e-006 -7.489407405707703e-007 0.9999999999989765 -1.219088601838334e-006 -7.489407405707703e-007 0.9999999999989765 -1.219088601838334e-006 -7.489407405707703e-007 0.9999999999989765 1.13677843264658e-006 6.988200527480778e-007 -0.9999999999991097 1.13677843264658e-006 6.988200527480778e-007 -0.9999999999991097 1.13677843264658e-006 6.988200527480778e-007 -0.9999999999991097 1.13677843264658e-006 6.988200527480778e-007 -0.9999999999991097 1.13677843264658e-006 6.988200527480778e-007 -0.9999999999991097 1.13677843264658e-006 6.988200527480778e-007 -0.9999999999991097 1.13677843264658e-006 6.988200527480778e-007 -0.9999999999991097 -1.13677843264658e-006 -6.988200527480778e-007 0.9999999999991097 -1.13677843264658e-006 -6.988200527480778e-007 0.9999999999991097 -1.13677843264658e-006 -6.988200527480778e-007 0.9999999999991097 -1.13677843264658e-006 -6.988200527480778e-007 0.9999999999991097 -1.13677843264658e-006 -6.988200527480778e-007 0.9999999999991097 -1.13677843264658e-006 -6.988200527480778e-007 0.9999999999991097 -1.13677843264658e-006 -6.988200527480778e-007 0.9999999999991097</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"130\" source=\"#ID2121\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2119\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2117\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2118\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"43\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2119\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 14 15 16 20 21 22 21 20 23 23 20 24 24 20 25 24 25 26 26 25 27 27 25 28 27 28 29 29 28 30 29 30 31 31 30 32 31 32 33 31 33 34 34 33 35 34 35 36 36 37 38 37 36 35 58 59 60 64 65 66 70 71 72 71 70 73 78 79 80 79 78 81 81 78 82 88 89 90 89 88 91 96 97 98 102 103 104 103 102 105 103 105 106 106 105 107 106 107 108 116 117 118 117 116 119 117 119 120 120 119 121 120 121 122</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"43\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2119\" />\r\n\t\t\t\t\t<p>7 8 9 8 10 9 9 10 11 10 12 11 13 11 12 17 18 19 39 40 41 42 41 40 40 39 43 39 44 43 43 44 45 44 46 45 46 47 45 45 47 48 47 49 48 48 49 50 49 51 50 50 51 52 52 51 53 51 54 53 53 54 55 55 54 56 57 56 54 61 62 63 67 68 69 74 75 76 77 76 75 83 84 85 85 84 86 87 86 84 92 93 94 95 94 93 99 100 101 109 110 111 110 112 111 111 112 113 112 114 113 115 113 114 123 124 125 124 126 125 125 126 127 126 128 127 129 127 128</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2122\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2123\">\r\n\t\t\t\t\t<float_array count=\"594\" id=\"ID2126\">3177.788941486556 1881.447146188057 368.5779574364784 4314.250543482114 17.79674957745328 380.4568014398298 4314.250543454371 17.79674952263758 368.5779633843385 4314.250543541762 17.79674969500638 405.9114544158752 3177.788941573989 1881.447146360419 405.911448468028 3177.788941549805 1881.447146312822 395.0507965604148 3177.788941549805 1881.447146312822 395.0507965604148 3177.788941486556 1881.447146188057 368.5779574364784 3177.788941573989 1881.447146360419 405.911448468028 4314.250543541762 17.79674969500638 405.9114544158752 4314.250543482114 17.79674957745328 380.4568014398298 4314.250543454371 17.79674952263758 368.5779633843385 3314.977088645878 2128.77311451871 395.0507950675044 3177.788941573989 1881.447146360419 405.911448468028 3177.788941549805 1881.447146312822 395.0507965604148 3452.129556699849 2376.034759726199 405.9114455402676 3314.980617617585 2128.779476630619 395.0507950674644 3452.129556674681 2376.03475967583 395.0507935749606 3452.129556674681 2376.03475967583 395.0507935749606 3314.980617617585 2128.779476630619 395.0507950674644 3452.129556699849 2376.034759726199 405.9114455402676 3314.977088645878 2128.77311451871 395.0507950675044 3177.788941573989 1881.447146360419 405.911448468028 3177.788941549805 1881.447146312822 395.0507965604148 4314.250543454371 17.79674952263758 368.5779633843385 5010.493129683584 57.55432556758683 405.9114526002659 5010.493129596027 57.55432539518233 368.5779615695503 4314.250543482114 17.79674957745328 380.4568014398298 4314.250543541762 17.79674969500638 405.9114544158752 4314.250543541762 17.79674969500638 405.9114544158752 4314.250543482114 17.79674957745328 380.4568014398298 5010.493129683584 57.55432556758683 405.9114526002659 4314.250543454371 17.79674952263758 368.5779633843385 5010.493129596027 57.55432539518233 368.5779615695503 3552.569777445317 2381.886438210954 380.5317091261992 3452.129556674681 2376.03475967583 395.0507935749606 3552.051636774715 2381.856251173482 380.4567923267391 3552.569777470369 2381.8864382609 391.317444202756 3452.129556699849 2376.034759726199 405.9114455402676 3452.129556699849 2376.034759726199 405.9114455402676 3552.569777470369 2381.8864382609 391.317444202756 3452.129556674681 2376.03475967583 395.0507935749606 3552.569777445317 2381.886438210954 380.5317091261992 3552.051636774715 2381.856251173482 380.4567923267391 5010.493129683584 57.55432556758683 405.9114526002659 5338.772859715284 649.4302534766275 368.5779580659508 5010.493129596027 57.55432539518233 368.5779615695503 5338.77285980271 649.4302536490795 405.911449094988 5338.772859778345 649.4302535550778 381.1140787405569 5338.772859778345 649.4302535550778 381.1140787405569 5338.77285980271 649.4302536490795 405.911449094988 5338.772859715284 649.4302534766275 368.5779580659508 5010.493129683584 57.55432556758683 405.9114526002659 5010.493129596027 57.55432539518233 368.5779615695503 3652.948022522947 2387.666776055357 395.0507927040887 3552.569777445317 2381.886438210954 380.5317091261992 3552.569777346715 2381.886438014116 338.0323739669155 3552.569777470369 2381.8864382609 391.317444202756 3552.569777470369 2381.8864382609 391.317444202756 3652.948022522947 2387.666776055357 395.0507927040887 3552.569777445317 2381.886438210954 380.5317091261992 3552.569777346715 2381.886438014116 338.0323739669155 3552.569777470369 2381.8864382609 391.317444202756 3451.881822142317 2414.416865808289 405.9114453631103 3452.129556699849 2376.034759726199 405.9114455402676 3452.129556699849 2376.034759726199 405.9114455402676 3451.881822142317 2414.416865808289 405.9114453631103 3552.569777470369 2381.8864382609 391.317444202756 3652.947981228117 2387.666701612752 405.9114450156128 3552.569777470369 2381.8864382609 391.317444202756 3652.948022522947 2387.666776055357 395.0507927040887 3652.948022522947 2387.666776055357 395.0507927040887 3552.569777470369 2381.8864382609 391.317444202756 3652.947981228117 2387.666701612752 405.9114450156128 3552.569777470369 2381.8864382609 391.317444202756 3552.260717338976 2420.19816477191 391.3174440265172 3451.881822142317 2414.416865808289 405.9114453631103 3451.881822142317 2414.416865808289 405.9114453631103 3552.260717338976 2420.19816477191 391.3174440265172 3552.569777470369 2381.8864382609 391.317444202756 3652.638921096874 2425.978428123584 405.9114448392909 3652.947981228117 2387.666701612752 405.9114450156128 3652.947981228117 2387.666701612752 405.9114450156128 3652.638921096874 2425.978428123584 405.9114448392909 3652.947981228117 2387.666701612752 405.9114450156128 3652.948022522947 2387.666776055357 395.0507927040887 3753.326876424871 2393.448000576358 391.3174436789432 3753.326876424871 2393.448000576358 391.3174436789432 3652.948022522947 2387.666776055357 395.0507927040887 3652.947981228117 2387.666701612752 405.9114450156128 3753.017816293328 2431.759727087179 391.3174435027016 3753.326876424871 2393.448000576358 391.3174436789432 3753.326876424871 2393.448000576358 391.3174436789432 3753.017816293328 2431.759727087179 391.3174435027016 3652.948022522947 2387.666776055357 395.0507927040887 3753.326876400723 2393.448000527383 380.4567914016124 3753.326876424871 2393.448000576358 391.3174436789432 3753.326876424871 2393.448000576358 391.3174436789432 3753.326876400723 2393.448000527383 380.4567914016124 3652.948022522947 2387.666776055357 395.0507927040887 3853.396020051309 2437.53999043894 405.9114443154725 3853.705080182828 2399.22826392808 405.9114444918039 3853.705080182828 2399.22826392808 405.9114444918039 3853.396020051309 2437.53999043894 405.9114443154725 3833.245825903445 2398.050120884417 392.0762181059916 3753.326876424871 2393.448000576358 391.3174436789432 3753.326876400723 2393.448000527383 380.4567914016124 3853.705080182828 2399.22826392808 405.9114444918039 3853.705080182828 2399.22826392808 405.9114444918039 3833.245825903445 2398.050120884417 392.0762181059916 3753.326876424871 2393.448000576358 391.3174436789432 3753.326876400723 2393.448000527383 380.4567914016124 3953.772849159515 2443.321356008593 391.3171472400243 3953.916332558307 2425.652943832846 391.3172837084873 3954.083975379428 2405.009562891497 391.3174431551898 3954.083975379428 2405.009562891497 391.3174431551898 3953.916332558307 2425.652943832846 391.3172837084873 3953.772849159515 2443.321356008593 391.3171472400243 3853.705080182828 2399.22826392808 405.9114444918039 3833.245825903445 2398.050120884417 392.0762181059916 3853.705080157358 2399.228263879004 395.0507918048 3853.705080157358 2399.228263879004 395.0507918048 3833.245825903445 2398.050120884417 392.0762181059916 3853.705080182828 2399.22826392808 405.9114444918039 3954.083975379428 2405.009562891497 391.3174431551898 3853.705080157358 2399.228263879004 395.0507918048 3938.023353591445 2404.084555091783 382.7918304971632 3853.705080182828 2399.22826392808 405.9114444918039 3853.705080182828 2399.22826392808 405.9114444918039 3954.083975379428 2405.009562891497 391.3174431551898 3853.705080157358 2399.228263879004 395.0507918048 3938.023353591445 2404.084555091783 382.7918304971632 3953.917444986708 2425.653011227198 391.3174430601723 3953.917444986708 2425.653011227198 391.3174430601723 3953.774915247745 2443.321289402405 391.3174429788584 3953.774915247745 2443.321289402405 391.3174429788584 3954.084867613965 2405.004438356853 380.4573514126836 3938.023353591445 2404.084555091783 382.7918304971632 3954.081010031212 2405.004216888792 380.4567905023412 3954.083975379428 2405.009562891497 391.3174431551898 3954.083975379428 2405.009562891497 391.3174431551898 3954.084867613965 2405.004438356853 380.4573514126836 3938.023353591445 2404.084555091783 382.7918304971632 3954.081010031212 2405.004216888792 380.4567905023412 4054.153114349609 2449.102129944879 405.9114437915262 4054.462179137142 2410.789826243336 405.9114439679674 4054.462179137142 2410.789826243336 405.9114439679674 4054.153114349609 2449.102129944879 405.9114437915262 4034.004872769021 2409.606619503401 392.0769315984947 3954.083975379428 2405.009562891497 391.3174431551898 3954.084867613965 2405.004438356853 380.4573514126836 4054.462179137142 2410.789826243336 405.9114439679674 4054.462179137142 2410.789826243336 405.9114439679674 4034.004872769021 2409.606619503401 392.0769315984947 3954.083975379428 2405.009562891497 391.3174431551898 3954.084867613965 2405.004438356853 380.4573514126836 4154.532014202474 2454.882851717827 391.3174424550139 4154.841074333753 2416.5711252069 391.3174426313508 4154.841074333753 2416.5711252069 391.3174426313508 4154.532014202474 2454.882851717827 391.3174424550139 4054.462179137142 2410.789826243336 405.9114439679674 4054.460665533421 2410.787097479019 395.0507909057396 4054.462634468315 2410.787210964466 395.0505046510556 4034.004872769021 2409.606619503401 392.0769315984947 4054.460665533421 2410.787097479019 395.0507909057396 4034.004872769021 2409.606619503401 392.0769315984947 4054.462179137142 2410.789826243336 405.9114439679674 4054.462634468315 2410.787210964466 395.0505046510556 4154.841074333753 2416.5711252069 391.3174426313508 4074.921566842892 2411.968179838546 392.0762181071758 4154.84107430837 2416.571125157784 380.4567896032048 4054.462179137142 2410.789826243336 405.9114439679674 4054.462179137142 2410.789826243336 405.9114439679674 4154.841074333753 2416.5711252069 391.3174426313508 4074.921566842892 2411.968179838546 392.0762181071758 4154.84107430837 2416.571125157784 380.4567896032048 4254.910217960421 2460.663115069518 405.9114432678952 4254.910217960421 2460.663115069518 405.9114432678952 4054.462179137142 2410.789826243336 405.9114439679674 4054.462634468315 2410.787210964466 395.0505046510556 4074.921566842892 2411.968179838546 392.0762181071758 4074.921566842892 2411.968179838546 392.0762181071758 4054.462634468315 2410.787210964466 395.0505046510556 4054.462179137142 2410.789826243336 405.9114439679674 4257.958168533831 2422.509120726887 405.9114433457729 4154.841074333753 2416.5711252069 391.3174426313508 4154.84107430837 2416.571125157784 380.4567896032048 4154.84107430837 2416.571125157784 380.4567896032048 4154.841074333753 2416.5711252069 391.3174426313508 4257.958168533831 2422.509120726887 405.9114433457729 4257.958168533831 2422.509120726887 405.9114433457729 4257.958168533831 2422.509120726887 405.9114433457729 4257.958168533831 2422.509120726887 405.9114433457729 4154.84107430837 2416.571125157784 380.4567896032048 4257.958168973002 2422.509120615684 368.577952500565 4257.958168973002 2422.509120615684 368.577952500565 4154.84107430837 2416.571125157784 380.4567896032048 4257.958168533831 2422.509120726887 405.9114433457729</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"198\" source=\"#ID2126\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2124\">\r\n\t\t\t\t\t<float_array count=\"594\" id=\"ID2127\">0.8537779688037613 0.5206372825541058 -4.412040079433016e-009 0.8537779688037613 0.5206372825541058 -4.412040079433016e-009 0.8537779688037613 0.5206372825541058 -4.412040079433016e-009 0.8537779688037613 0.5206372825541058 -4.412040079433016e-009 0.8537779688037613 0.5206372825541058 -4.412040079433016e-009 0.8537779688037613 0.5206372825541058 -4.412040079433016e-009 -0.8537779688037613 -0.5206372825541058 4.412040079433016e-009 -0.8537779688037613 -0.5206372825541058 4.412040079433016e-009 -0.8537779688037613 -0.5206372825541058 4.412040079433016e-009 -0.8537779688037613 -0.5206372825541058 4.412040079433016e-009 -0.8537779688037613 -0.5206372825541058 4.412040079433016e-009 -0.8537779688037613 -0.5206372825541058 4.412040079433016e-009 0.8744800554114077 -0.4850614731017725 1.989253150088332e-010 0.8744800554114077 -0.4850614731017725 1.989253150088332e-010 0.8744800554114077 -0.4850614731017725 1.989253150088332e-010 0.8744800554114077 -0.4850614731017725 1.989253150088332e-010 0.8744800554114077 -0.4850614731017725 1.989253150088332e-010 0.8744800554114077 -0.4850614731017725 1.989253150088332e-010 -0.8744800554114077 0.4850614731017725 -1.989253150088332e-010 -0.8744800554114077 0.4850614731017725 -1.989253150088332e-010 -0.8744800554114077 0.4850614731017725 -1.989253150088332e-010 -0.8744800554114077 0.4850614731017725 -1.989253150088332e-010 -0.8744800554114077 0.4850614731017725 -1.989253150088332e-010 -0.8744800554114077 0.4850614731017725 -1.989253150088332e-010 -0.05701017839096838 0.9983735971868598 -4.47656231549777e-009 -0.05701017839096838 0.9983735971868598 -4.47656231549777e-009 -0.05701017839096838 0.9983735971868598 -4.47656231549777e-009 -0.05701017839096838 0.9983735971868598 -4.47656231549777e-009 -0.05701017839096838 0.9983735971868598 -4.47656231549777e-009 0.05701017839096838 -0.9983735971868598 4.47656231549777e-009 0.05701017839096838 -0.9983735971868598 4.47656231549777e-009 0.05701017839096838 -0.9983735971868598 4.47656231549777e-009 0.05701017839096838 -0.9983735971868598 4.47656231549777e-009 0.05701017839096838 -0.9983735971868598 4.47656231549777e-009 0.05816168756827361 -0.9983071762234361 4.490942326595667e-009 0.05816168756827361 -0.9983071762234361 4.490942326595667e-009 0.05816168756827361 -0.9983071762234361 4.490942326595667e-009 0.05816168756827361 -0.9983071762234361 4.490942326595667e-009 0.05816168756827361 -0.9983071762234361 4.490942326595667e-009 -0.05816168756827361 0.9983071762234361 -4.490942326595667e-009 -0.05816168756827361 0.9983071762234361 -4.490942326595667e-009 -0.05816168756827361 0.9983071762234361 -4.490942326595667e-009 -0.05816168756827361 0.9983071762234361 -4.490942326595667e-009 -0.05816168756827361 0.9983071762234361 -4.490942326595667e-009 -0.8744959171549845 0.4850328760808514 -2.469435164302114e-010 -0.8744959171549845 0.4850328760808514 -2.469435164302114e-010 -0.8744959171549845 0.4850328760808514 -2.469435164302114e-010 -0.8744959171549845 0.4850328760808514 -2.469435164302114e-010 -0.8744959171549845 0.4850328760808514 -2.469435164302114e-010 0.8744959171549845 -0.4850328760808514 2.469435164302114e-010 0.8744959171549845 -0.4850328760808514 2.469435164302114e-010 0.8744959171549845 -0.4850328760808514 2.469435164302114e-010 0.8744959171549845 -0.4850328760808514 2.469435164302114e-010 0.8744959171549845 -0.4850328760808514 2.469435164302114e-010 0.05749032038379145 -0.9983460637785723 4.490341873721396e-009 0.05749032038379145 -0.9983460637785723 4.490341873721396e-009 0.05749032038379145 -0.9983460637785723 4.490341873721396e-009 0.05749032038379145 -0.9983460637785723 4.490341873721396e-009 -0.05749032038379145 0.9983460637785723 -4.490341873721396e-009 -0.05749032038379145 0.9983460637785723 -4.490341873721396e-009 -0.05749032038379145 0.9983460637785723 -4.490341873721396e-009 -0.05749032038379145 0.9983460637785723 -4.490341873721396e-009 0.1437374374245344 0.0009277475731179626 0.9896154244791603 0.1437374374245344 0.0009277475731179626 0.9896154244791603 0.1437374374245344 0.0009277475731179626 0.9896154244791603 -0.1437374374245344 -0.0009277475731179626 -0.9896154244791603 -0.1437374374245344 -0.0009277475731179626 -0.9896154244791603 -0.1437374374245344 -0.0009277475731179626 -0.9896154244791603 0.05749056611510028 -0.9983460496059885 -6.624410703746805e-006 0.05749056611510028 -0.9983460496059885 -6.624410703746805e-006 0.05749056611510028 -0.9983460496059885 -6.624410703746805e-006 -0.05749056611510028 0.9983460496059885 6.624410703746805e-006 -0.05749056611510028 0.9983460496059885 6.624410703746805e-006 -0.05749056611510028 0.9983460496059885 6.624410703746805e-006 -0.01405947813591668 -0.0001134130019114868 0.9999011542207744 -0.004528708582211685 -3.652842444861197e-005 0.9999897446795401 0.1438109312164236 0.001160125208482641 0.9896045018956643 -0.1438109312164236 -0.001160125208482641 -0.9896045018956643 0.004528708582211685 3.652842444861197e-005 -0.9999897446795401 0.01405947813591668 0.0001134130019114868 -0.9999011542207744 0.004527693244558977 3.652943580717743e-005 0.9999897492772031 -0.004528708582517284 -3.652842385066487e-005 0.9999897446795387 0.004528708582517284 3.652842385066487e-005 -0.9999897446795387 -0.004527693244558977 -3.652943580717743e-005 -0.9999897492772031 0.05749851746299749 -0.9983455916894085 -6.624377333265541e-006 0.05749851746299749 -0.9983455916894085 -6.624377333265541e-006 0.05749851746299749 -0.9983455916894085 -6.624377333265541e-006 -0.05749851746299749 0.9983455916894085 6.624377333265541e-006 -0.05749851746299749 0.9983455916894085 6.624377333265541e-006 -0.05749851746299749 0.9983455916894085 6.624377333265541e-006 -0.004528708581654595 -3.652842411228831e-005 0.9999897446795427 0.004527693243959787 3.652943554999337e-005 0.9999897492772059 -0.004527693243959787 -3.652943554999337e-005 -0.9999897492772059 0.004528708581654595 3.652842411228831e-005 -0.9999897446795427 0.05749876318953023 -0.9983455775590308 4.373051820400625e-009 0.05749876318953023 -0.9983455775590308 4.373051820400625e-009 0.05749876318953023 -0.9983455775590308 4.373051820400625e-009 -0.05749876318953023 0.9983455775590308 -4.373051820400625e-009 -0.05749876318953023 0.9983455775590308 -4.373051820400625e-009 -0.05749876318953023 0.9983455775590308 -4.373051820400625e-009 0.004529064414300055 4.055424174774773e-005 0.9999897429128385 -0.004527496975289196 -3.274748552289687e-005 0.9999897502968422 0.004527496975289196 3.274748552289687e-005 -0.9999897502968422 -0.004529064414300055 -4.055424174774773e-005 -0.9999897429128385 0.05748960554023526 -0.9983461049429844 4.373893362758343e-009 0.05748960554023526 -0.9983461049429844 4.373893362758343e-009 0.05748960554023526 -0.9983461049429844 4.373893362758343e-009 0.05748960554023526 -0.9983461049429844 4.373893362758343e-009 -0.05748960554023526 0.9983461049429844 -4.373893362758343e-009 -0.05748960554023526 0.9983461049429844 -4.373893362758343e-009 -0.05748960554023526 0.9983461049429844 -4.373893362758343e-009 -0.05748960554023526 0.9983461049429844 -4.373893362758343e-009 0.0006285005279681325 8.955185751581146e-006 0.9999998024534259 0.001051836025540082 1.238164882979271e-005 0.999999446743682 0.0045240821731498 4.05139170800414e-005 0.9999897654671838 -0.0045240821731498 -4.05139170800414e-005 -0.9999897654671838 -0.001051836025540082 -1.238164882979271e-005 -0.999999446743682 -0.0006285005279681325 -8.955185751581146e-006 -0.9999998024534259 0.05748960553926884 -0.9983461049430401 4.375969390909814e-009 0.05748960553926884 -0.9983461049430401 4.375969390909814e-009 0.05748960553926884 -0.9983461049430401 4.375969390909814e-009 -0.05748960553926884 0.9983461049430401 -4.375969390909814e-009 -0.05748960553926884 0.9983461049430401 -4.375969390909814e-009 -0.05748960553926884 0.9983461049430401 -4.375969390909814e-009 0.05749947802745579 -0.9983455363883641 4.430360832754013e-009 0.05749947802745579 -0.9983455363883641 4.430360832754013e-009 0.05749947802745579 -0.9983455363883641 4.430360832754013e-009 0.05749947802745579 -0.9983455363883641 4.430360832754013e-009 -0.05749947802745579 0.9983455363883641 -4.430360832754013e-009 -0.05749947802745579 0.9983455363883641 -4.430360832754013e-009 -0.05749947802745579 0.9983455363883641 -4.430360832754013e-009 -0.05749947802745579 0.9983455363883641 -4.430360832754013e-009 -0.1427716772054569 -0.001151732453900103 0.9897549806392971 0.1427716772054569 0.001151732453900103 -0.9897549806392971 -0.1427745958140163 -0.001151755998162695 0.9897545595996337 0.1427745958140163 0.001151755998162695 -0.9897545595996337 0.05724773482555174 -0.9983598902568909 0.0004757978480920348 0.05724773482555174 -0.9983598902568909 0.0004757978480920348 0.05724773482555174 -0.9983598902568909 0.0004757978480920348 0.05724773482555174 -0.9983598902568909 0.0004757978480920348 -0.05724773482555174 0.9983598902568909 -0.0004757978480920348 -0.05724773482555174 0.9983598902568909 -0.0004757978480920348 -0.05724773482555174 0.9983598902568909 -0.0004757978480920348 -0.05724773482555174 0.9983598902568909 -0.0004757978480920348 0.004527709603959473 3.652957011242132e-005 0.9999897492031271 -0.004528708582193249 -3.652842151718116e-005 0.9999897446795403 0.004528708582193249 3.652842151718116e-005 -0.9999897446795403 -0.004527709603959473 -3.652957011242132e-005 -0.9999897492031271 0.05742065046831916 -0.9983499599374683 0.0004758073671186265 0.05742065046831916 -0.9983499599374683 0.0004758073671186265 0.05742065046831916 -0.9983499599374683 0.0004758073671186265 0.05742065046831916 -0.9983499599374683 0.0004758073671186265 -0.05742065046831916 0.9983499599374683 -0.0004758073671186265 -0.05742065046831916 0.9983499599374683 -0.0004758073671186265 -0.05742065046831916 0.9983499599374683 -0.0004758073671186265 -0.05742065046831916 0.9983499599374683 -0.0004758073671186265 -0.004528437925938536 -3.652623855356383e-005 0.9999897459053193 0.005019676652237683 -0.001100861143235408 0.9999867953883441 -0.005019676652237683 0.001100861143235408 -0.9999867953883441 0.004528437925938536 3.652623855356383e-005 -0.9999897459053193 0.0575776988211136 -0.9983409986779158 0.0002428111341351237 0.0575776988211136 -0.9983409986779158 0.0002428111341351237 0.0575776988211136 -0.9983409986779158 0.0002428111341351237 0.0575776988211136 -0.9983409986779158 0.0002428111341351237 -0.0575776988211136 0.9983409986779158 -0.0002428111341351237 -0.0575776988211136 0.9983409986779158 -0.0002428111341351237 -0.0575776988211136 0.9983409986779158 -0.0002428111341351237 -0.0575776988211136 0.9983409986779158 -0.0002428111341351237 0.05749947804131316 -0.998345536387566 4.439985576030688e-009 0.05749947804131316 -0.998345536387566 4.439985576030688e-009 0.05749947804131316 -0.998345536387566 4.439985576030688e-009 0.05749947804131316 -0.998345536387566 4.439985576030688e-009 -0.05749947804131316 0.998345536387566 -4.439985576030688e-009 -0.05749947804131316 0.998345536387566 -4.439985576030688e-009 -0.05749947804131316 0.998345536387566 -4.439985576030688e-009 -0.05749947804131316 0.998345536387566 -4.439985576030688e-009 -0.1404558223448718 -0.008923362463382451 0.9900467340341934 0.1404558223448718 0.008923362463382451 -0.9900467340341934 0.05766312716967883 -0.998336068068565 0.0002428135316100709 0.05766312716967883 -0.998336068068565 0.0002428135316100709 0.05766312716967883 -0.998336068068565 0.0002428135316100709 -0.05766312716967883 0.998336068068565 -0.0002428135316100709 -0.05766312716967883 0.998336068068565 -0.0002428135316100709 -0.05766312716967883 0.998336068068565 -0.0002428135316100709 0.05748973665069444 -0.9983460973930003 4.381910949109029e-009 0.05748973665069444 -0.9983460973930003 4.381910949109029e-009 0.05748973665069444 -0.9983460973930003 4.381910949109029e-009 -0.05748973665069444 0.9983460973930003 -4.381910949109029e-009 -0.05748973665069444 0.9983460973930003 -4.381910949109029e-009 -0.05748973665069444 0.9983460973930003 -4.381910949109029e-009 -0.1394941191011602 -0.01114355418109588 0.9901601950878476 0.1394941191011602 0.01114355418109588 -0.9901601950878476 0.05748973683088911 -0.9983460973826237 3.649510815729659e-009 0.05748973683088911 -0.9983460973826237 3.649510815729659e-009 0.05748973683088911 -0.9983460973826237 3.649510815729659e-009 -0.05748973683088911 0.9983460973826237 -3.649510815729659e-009 -0.05748973683088911 0.9983460973826237 -3.649510815729659e-009 -0.05748973683088911 0.9983460973826237 -3.649510815729659e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"198\" source=\"#ID2127\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2125\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2123\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2124\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"59\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2125\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 12 13 14 13 12 15 15 12 16 15 16 17 24 25 26 25 24 27 25 27 28 34 35 36 35 34 37 35 37 38 44 45 46 45 44 47 45 47 48 54 55 56 55 54 57 62 63 64 68 69 70 74 75 76 74 80 75 80 74 81 84 85 86 81 90 80 90 81 91 94 95 96 91 100 90 100 91 101 104 105 106 105 104 107 101 112 100 112 101 113 113 101 114 118 119 120 124 125 126 125 124 127 114 132 113 113 134 112 134 113 132 136 137 138 137 136 139 132 144 134 144 132 114 144 114 145 148 149 150 149 148 151 145 156 144 156 145 157 160 161 162 160 163 161 168 169 170 169 168 171 176 156 157 178 179 180 184 185 186 190 176 157 192 193 194</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"59\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2125\" />\r\n\t\t\t\t\t<p>6 7 8 8 7 9 9 7 10 11 10 7 18 19 20 19 21 20 20 21 22 23 22 21 29 30 31 30 32 31 33 31 32 39 40 41 40 42 41 43 41 42 49 50 51 50 52 51 53 51 52 58 59 60 61 60 59 65 66 67 71 72 73 77 78 79 82 79 83 78 83 79 87 88 89 92 82 93 83 93 82 97 98 99 102 92 103 93 103 92 108 109 110 111 110 109 115 102 116 116 102 117 103 117 102 121 122 123 128 129 130 131 130 129 116 133 115 133 116 135 117 135 116 140 141 142 143 142 141 146 115 147 115 133 147 135 147 133 152 153 154 155 154 153 158 146 159 147 159 146 164 165 166 167 164 166 172 173 174 175 174 173 158 159 177 181 182 183 187 188 189 158 177 191 195 196 197</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2128\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2129\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2132\">5338.772859778345 649.4302535550778 381.1140787405569 4257.958168973002 2422.509120615684 368.577952500565 5338.772859715284 649.4302534766275 368.5779580659508 5338.77285980271 649.4302536490795 405.911449094988 4257.958168533831 2422.509120726887 405.9114433457729 4257.958168533831 2422.509120726887 405.9114433457729 5338.77285980271 649.4302536490795 405.911449094988 4257.958168973002 2422.509120615684 368.577952500565 5338.772859778345 649.4302535550778 381.1140787405569 5338.772859715284 649.4302534766275 368.5779580659508</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2132\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2130\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2133\">-0.8538670116842273 -0.5204912356202049 -2.045298055919353e-009 -0.8538670116842273 -0.5204912356202049 -2.045298055919353e-009 -0.8538670116842273 -0.5204912356202049 -2.045298055919353e-009 -0.8538670116842273 -0.5204912356202049 -2.045298055919353e-009 -0.8538670116842273 -0.5204912356202049 -2.045298055919353e-009 0.8538670116842273 0.5204912356202049 2.045298055919353e-009 0.8538670116842273 0.5204912356202049 2.045298055919353e-009 0.8538670116842273 0.5204912356202049 2.045298055919353e-009 0.8538670116842273 0.5204912356202049 2.045298055919353e-009 0.8538670116842273 0.5204912356202049 2.045298055919353e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2133\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2131\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2129\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2130\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2131\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2131\" />\r\n\t\t\t\t\t<p>5 6 7 6 8 7 9 7 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2134\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2137\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2140\">3156.881518648273 1882.583676345436 507.9124670622556 3156.877678367076 1882.577924338099 507.9124670622938 3156.881584368713 1882.583606356642 405.9114485117308 3156.881584368713 1882.583606356642 405.9114485117308 3156.877678367076 1882.577924338099 507.9124670622938 3156.881518648273 1882.583676345436 507.9124670622556</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2140\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2138\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2141\">0.8316757544758163 -0.555261595481122 9.168554072091392e-007 0.8316757544758163 -0.555261595481122 9.168554072091392e-007 0.8316757544758163 -0.555261595481122 9.168554072091392e-007 -0.8316757544758163 0.555261595481122 -9.168554072091392e-007 -0.8316757544758163 0.555261595481122 -9.168554072091392e-007 -0.8316757544758163 0.555261595481122 -9.168554072091392e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2141\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2139\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2137\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2138\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2139\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2139\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2142\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2143\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2146\">2923.49394176076 2685.703690609024 338.1426149302267 2923.505821385512 2685.709156867132 338.1426182991171 2916.23650557341 2672.619817047 338.142613717267 2923.501188042007 2685.716754798557 338.142614931421 2923.501188042007 2685.716754798557 338.142614931421 2923.49394176076 2685.703690609024 338.1426149302267 2923.505821385512 2685.709156867132 338.1426182991171 2916.23650557341 2672.619817047 338.142613717267</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2146\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2144\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2147\">0.0003807081621666212 -0.0002110806237127625 -0.9999999052531283 0.0003807081621666212 -0.0002110806237127625 -0.9999999052531283 0.0003807081621666212 -0.0002110806237127625 -0.9999999052531283 0.0003807081621666212 -0.0002110806237127625 -0.9999999052531283 -0.0003807081621666212 0.0002110806237127625 0.9999999052531283 -0.0003807081621666212 0.0002110806237127625 0.9999999052531283 -0.0003807081621666212 0.0002110806237127625 0.9999999052531283 -0.0003807081621666212 0.0002110806237127625 0.9999999052531283</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2147\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2145\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2143\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2144\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2145\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2145\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2148\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2149\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID2152\">4792.752334799228 27.868562038557 338.0323722021407 4772.96243716028 26.73545169368731 338.0323784216904 4772.956517398186 26.73816076160506 338.0323726199001 4792.748486763707 27.86553701465414 338.032378365376 4792.748486763707 27.86553701465414 338.032378365376 4792.752334799228 27.868562038557 338.0323722021407 4772.96243716028 26.73545169368731 338.0323784216904 4772.956517398186 26.73816076160506 338.0323726199001 4553.426965056357 14.20235677523965 338.0323772527305 4772.96243716028 26.73545169368731 338.0323784216904 4553.419104856966 14.19617770375271 338.0323790465505 4554.668953646751 14.27327404466746 338.0323777856476 4554.784958818261 14.27990236221035 338.0323777847325 4554.79633364767 14.28055189951465 338.0323777847318 4772.956517398186 26.73816076160506 338.0323726199001 4772.956517398186 26.73816076160506 338.0323726199001 4554.79633364767 14.28055189951465 338.0323777847318 4772.96243716028 26.73545169368731 338.0323784216904 4554.784958818261 14.27990236221035 338.0323777847325 4554.668953646751 14.27327404466746 338.0323777856476 4553.426965056357 14.20235677523965 338.0323772527305 4553.419104856966 14.19617770375271 338.0323790465505 4792.748486763707 27.86553701465414 338.032378365376 4836.771662873593 30.38219932144921 338.032377740982 5022.28596935733 40.97562947339884 338.0323777121947 4792.752334799228 27.868562038557 338.0323722021407 4792.752334799228 27.868562038557 338.0323722021407 4792.748486763707 27.86553701465414 338.032378365376 4836.771662873593 30.38219932144921 338.032377740982 5022.28596935733 40.97562947339884 338.0323777121947 4553.426965056357 14.20235677523965 338.0323772527305 4533.650419376065 13.06708413910496 338.0323791028148 4533.640258811356 13.07173393002472 338.0323779512607 4553.419104856966 14.19617770375271 338.0323790465505 4553.419104856966 14.19617770375271 338.0323790465505 4553.426965056357 14.20235677523965 338.0323772527305 4533.650419376065 13.06708413910496 338.0323791028148 4533.640258811356 13.07173393002472 338.0323779512607 4533.638818164328 13.07239321497445 338.0323776703276 4533.650419376065 13.06708413910496 338.0323791028148 4304.887100996243 0.001208268887467057 338.0323797539776 4533.640258811356 13.07173393002472 338.0323779512607 4533.640258811356 13.07173393002472 338.0323779512607 4533.638818164328 13.07239321497445 338.0323776703276 4533.650419376065 13.06708413910496 338.0323791028148 4304.887100996243 0.001208268887467057 338.0323797539776 4306.771498471 0.1175770988443219 338.0323797389951 4304.887100996243 0.001208268887467057 338.0323797539776 4304.882791363987 0.009726160660193273 338.0323797538815 4533.638818164328 13.07239321497445 338.0323776703276 4533.638818164328 13.07239321497445 338.0323776703276 4306.771498471 0.1175770988443219 338.0323797389951 4304.887100996243 0.001208268887467057 338.0323797539776 4304.882791363987 0.009726160660193273 338.0323797538815</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID2152\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2150\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID2153\">0.0001164009558138092 -0.002038429000018193 -0.9999979156268424 0.0001164009558138092 -0.002038429000018193 -0.9999979156268424 0.0001164009558138092 -0.002038429000018193 -0.9999979156268424 0.0001164009558138092 -0.002038429000018193 -0.9999979156268424 -0.0001164009558138092 0.002038429000018193 0.9999979156268424 -0.0001164009558138092 0.002038429000018193 0.9999979156268424 -0.0001164009558138092 0.002038429000018193 0.9999979156268424 -0.0001164009558138092 0.002038429000018193 0.9999979156268424 2.802942831617389e-005 -0.0004910643810015059 -0.9999998790350551 2.802942831617389e-005 -0.0004910643810015059 -0.9999998790350551 2.802942831617389e-005 -0.0004910643810015059 -0.9999998790350551 2.802942831617389e-005 -0.0004910643810015059 -0.9999998790350551 2.802942831617389e-005 -0.0004910643810015059 -0.9999998790350551 2.802942831617389e-005 -0.0004910643810015059 -0.9999998790350551 2.802942831617389e-005 -0.0004910643810015059 -0.9999998790350551 -2.802942831617389e-005 0.0004910643810015059 0.9999998790350551 -2.802942831617389e-005 0.0004910643810015059 0.9999998790350551 -2.802942831617389e-005 0.0004910643810015059 0.9999998790350551 -2.802942831617389e-005 0.0004910643810015059 0.9999998790350551 -2.802942831617389e-005 0.0004910643810015059 0.9999998790350551 -2.802942831617389e-005 0.0004910643810015059 0.9999998790350551 -2.802942831617389e-005 0.0004910643810015059 0.9999998790350551 8.1841278950437e-005 -0.001432925495315402 -0.9999989700127345 8.1841278950437e-005 -0.001432925495315402 -0.9999989700127345 8.1841278950437e-005 -0.001432925495315402 -0.9999989700127345 8.1841278950437e-005 -0.001432925495315402 -0.9999989700127345 -8.1841278950437e-005 0.001432925495315402 0.9999989700127345 -8.1841278950437e-005 0.001432925495315402 0.9999989700127345 -8.1841278950437e-005 0.001432925495315402 0.9999989700127345 -8.1841278950437e-005 0.001432925495315402 0.9999989700127345 1.545359969602149e-005 -0.0002708429321232127 -0.9999999632026456 1.545359969602149e-005 -0.0002708429321232127 -0.9999999632026456 1.545359969602149e-005 -0.0002708429321232127 -0.9999999632026456 1.545359969602149e-005 -0.0002708429321232127 -0.9999999632026456 -1.545359969602149e-005 0.0002708429321232127 0.9999999632026456 -1.545359969602149e-005 0.0002708429321232127 0.9999999632026456 -1.545359969602149e-005 0.0002708429321232127 0.9999999632026456 -1.545359969602149e-005 0.0002708429321232127 0.9999999632026456 1.328269347003907e-005 -0.0002326087468739668 -0.9999999728583701 1.328269347003907e-005 -0.0002326087468739668 -0.9999999728583701 1.328269347003907e-005 -0.0002326087468739668 -0.9999999728583701 1.328269347003907e-005 -0.0002326087468739668 -0.9999999728583701 -1.328269347003907e-005 0.0002326087468739668 0.9999999728583701 -1.328269347003907e-005 0.0002326087468739668 0.9999999728583701 -1.328269347003907e-005 0.0002326087468739668 0.9999999728583701 -1.328269347003907e-005 0.0002326087468739668 0.9999999728583701 -1.577217834981487e-008 1.166136200446248e-007 -0.9999999999999932 -1.577217834981487e-008 1.166136200446248e-007 -0.9999999999999932 -1.577217834981487e-008 1.166136200446248e-007 -0.9999999999999932 -1.577217834981487e-008 1.166136200446248e-007 -0.9999999999999932 1.577217834981487e-008 -1.166136200446248e-007 0.9999999999999932 1.577217834981487e-008 -1.166136200446248e-007 0.9999999999999932 1.577217834981487e-008 -1.166136200446248e-007 0.9999999999999932 1.577217834981487e-008 -1.166136200446248e-007 0.9999999999999932</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID2153\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2151\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2149\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2150\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2151\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 9 11 12 9 12 13 9 13 14 22 23 24 23 22 25 30 31 32 31 30 33 38 39 40 39 38 41 46 47 48 47 46 49</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2151\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 15 16 17 16 18 17 18 19 17 19 20 17 21 17 20 26 27 28 29 28 27 34 35 36 37 36 35 42 43 44 45 44 43 50 51 52 53 52 51</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2154\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2155\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2158\">337.1431908681317 3227.777977195417 368.9080325329201 337.1431859751533 3227.777979432203 338.032374137112 337.1431876097372 3227.777970594048 368.7068295041355 337.1431861342238 3227.777979745771 405.9114489031418 337.1447941317309 3227.780388143842 338.0323741369552 337.1447941317309 3227.780388143842 338.0323741369552 337.1431861342238 3227.777979745771 405.9114489031418 337.1431859751533 3227.777979432203 338.032374137112 337.1431908681317 3227.777977195417 368.9080325329201 337.1431876097372 3227.777970594048 368.7068295041355</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2158\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2156\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2159\">-0.8322812079492284 0.5543536695058247 -8.588606054634232e-009 -0.8322812079492284 0.5543536695058247 -8.588606054634232e-009 -0.8322812079492284 0.5543536695058247 -8.588606054634232e-009 -0.8322812079492284 0.5543536695058247 -8.588606054634232e-009 -0.8322812079492284 0.5543536695058247 -8.588606054634232e-009 0.8322812079492284 -0.5543536695058247 8.588606054634232e-009 0.8322812079492284 -0.5543536695058247 8.588606054634232e-009 0.8322812079492284 -0.5543536695058247 8.588606054634232e-009 0.8322812079492284 -0.5543536695058247 8.588606054634232e-009 0.8322812079492284 -0.5543536695058247 8.588606054634232e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2159\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2157\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2155\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2156\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2157\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2157\" />\r\n\t\t\t\t\t<p>5 6 7 6 8 7 9 7 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2160\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2161\">\r\n\t\t\t\t\t<float_array count=\"750\" id=\"ID2164\">1413.227165347446 2083.895612789928 338.3075004297487 363.7585611673845 2023.456929207403 338.0323796392068 1413.225766143771 2083.895541596134 338.0323769007391 363.7569531695689 2023.454520807548 405.9114544053483 1413.570980704184 2083.913106640835 405.9114516662116 1413.570980704184 2083.913106640835 405.9114516662116 1413.227165347446 2083.895612789928 338.3075004297487 363.7569531695689 2023.454520807548 405.9114544053483 363.7585611673845 2023.456929207403 338.0323796392068 1413.225766143771 2083.895541596134 338.0323769007391 363.7569531695689 2023.454520807548 405.9114544053483 0.001399441200874207 2619.970960103682 405.9114525013532 1.59167484525824e-007 2619.968437447464 405.9114525016316 20.90735932221151 2618.831980981521 405.9110062228954 373.1211512632135 2041.247341605268 405.9110422561085 1413.570980704184 2083.913106640835 405.9114516662116 2616.129583922683 2170.421761353844 405.911465065919 2628.492004345633 2153.880172293547 405.9114484961681 2890.246127410379 2664.605349849145 405.9114585078729 2869.68434643225 2588.707307731798 405.9114459219671 2923.415296867584 2685.574708188012 405.9114453485518 2923.492244262936 2685.713431868549 405.9114453476827 2878.949675095008 2683.148811734678 405.9114454647879 337.1431861342238 3227.777979745771 405.9114489031418 349.5055382306409 3211.236386727173 405.9114329039248 344.839521148706 3228.221210166088 405.9110679663719 344.8566460846951 3228.222196405362 405.9114488716629 344.8689278103946 3228.222903720177 405.9110665108598 2516.406250050311 3353.281316094245 405.9114432173039 2482.028389167409 3334.047963938367 405.9121361395115 2494.443842997757 3313.686980116255 405.9114434515613 2494.443842997757 3313.686980116255 405.9114434515613 2482.028389167409 3334.047963938367 405.9121361395115 2516.406250050311 3353.281316094245 405.9114432173039 349.5055382306409 3211.236386727173 405.9114329039248 344.8689278103946 3228.222903720177 405.9110665108598 344.8566460846951 3228.222196405362 405.9114488716629 344.839521148706 3228.221210166088 405.9110679663719 337.1431861342238 3227.777979745771 405.9114489031418 20.90735932221151 2618.831980981521 405.9110062228954 0.001399441200874207 2619.970960103682 405.9114525013532 2923.415296867584 2685.574708188012 405.9114453485518 2890.246127410379 2664.605349849145 405.9114585078729 2923.492244262936 2685.713431868549 405.9114453476827 2878.949675095008 2683.148811734678 405.9114454647879 2869.68434643225 2588.707307731798 405.9114459219671 2628.492004345633 2153.880172293547 405.9114484961681 2616.129583922683 2170.421761353844 405.911465065919 1413.570980704184 2083.913106640835 405.9114516662116 373.1211512632135 2041.247341605268 405.9110422561085 363.7569531695689 2023.454520807548 405.9114544053483 1.59167484525824e-007 2619.968437447464 405.9114525016316 337.1431859751533 3227.777979432203 338.032374137112 0.002972572082626357 2619.968608386757 338.0323777353281 0.001608158262115467 2619.970845847286 338.0323777353232 109.1317973569501 2626.255632235523 338.0323774505242 392.46708605365 3137.059051387026 338.0323744267922 337.1447941317309 3227.780388143842 338.0323741369552 337.7674722396531 3227.816235406996 338.032374135327 446.2737132071312 3234.062884723266 338.0323738523466 810.1148040572625 3238.071154066237 338.0323683842534 2462.561717282661 3256.275398913204 338.0323499786916 116.5831667772641 2428.792308737518 338.0323809540423 417.5664584456038 2120.463052353422 338.0323790648662 126.6156963191809 2412.340269975488 338.0323810225486 237.8352174078091 2229.954774433543 338.0323817820892 247.8638557618547 2213.509116711724 338.032381850578 363.7585611673845 2023.456929207403 338.0323796392068 1413.225766143771 2083.895541596134 338.0323769007391 1357.881249868186 2174.615598457435 338.0323766114237 1413.227183959937 2083.895622265979 338.0323769009014 1413.227183959937 2083.895622265979 338.0323769009014 1357.881249868186 2174.615598457435 338.0323766114237 1413.225766143771 2083.895541596134 338.0323769007391 417.5664584456038 2120.463052353422 338.0323790648662 363.7585611673845 2023.456929207403 338.0323796392068 247.8638557618547 2213.509116711724 338.032381850578 237.8352174078091 2229.954774433543 338.0323817820892 126.6156963191809 2412.340269975488 338.0323810225486 116.5831667772641 2428.792308737518 338.0323809540423 109.1317973569501 2626.255632235523 338.0323774505242 0.002972572082626357 2619.968608386757 338.0323777353281 2462.561717282661 3256.275398913204 338.0323499786916 810.1148040572625 3238.071154066237 338.0323683842534 392.46708605365 3137.059051387026 338.0323744267922 446.2737132071312 3234.062884723266 338.0323738523466 337.7674722396531 3227.816235406996 338.032374135327 337.1447941317309 3227.780388143842 338.0323741369552 337.1431859751533 3227.777979432203 338.032374137112 0.001608158262115467 2619.970845847286 338.0323777353232 373.120187784168 2041.247866913369 359.5346110593171 2616.129678040115 2170.421902311809 395.0516940361614 2616.129985853046 2170.422363317531 359.5346052068351 373.1209277978068 2041.247475515841 395.0508021499836 373.1211512632135 2041.247341605268 405.9110422561085 2616.129583922683 2170.421761353844 405.911465065919 2616.129583922683 2170.421761353844 405.911465065919 373.1211512632135 2041.247341605268 405.9110422561085 2616.129678040115 2170.421902311809 395.0516940361614 373.1209277978068 2041.247475515841 395.0508021499836 373.120187784168 2041.247866913369 359.5346110593171 2616.129985853046 2170.422363317531 359.5346052068351 2490.81252807858 3334.553839983671 369.5979713357238 2482.028391910203 3334.04796324364 359.5346001446904 2490.81252805502 3334.553839937218 359.5346001217703 349.5055381418474 3211.236386502039 359.5346057088835 349.5055043918837 3211.236405122294 395.0507626096494 2482.028390194419 3334.047963278018 388.9416746950004 2490.81252812381 3334.553840073727 388.9416746720838 2482.028439281092 3334.04796695623 393.3532287516987 2482.028389167409 3334.047963938367 405.9121361395115 349.5055382306409 3211.236386727173 405.9114329039248 349.5055382306409 3211.236386727173 405.9114329039248 2482.028389167409 3334.047963938367 405.9121361395115 349.5055043918837 3211.236405122294 395.0507626096494 2482.028439281092 3334.04796695623 393.3532287516987 2482.028390194419 3334.047963278018 388.9416746950004 2490.81252812381 3334.553840073727 388.9416746720838 2490.81252807858 3334.553839983671 369.5979713357238 349.5055381418474 3211.236386502039 359.5346057088835 2482.028391910203 3334.04796324364 359.5346001446904 2490.81252805502 3334.553839937218 359.5346001217703 794.0918860998825 3254.095882388397 338.0323729447168 1036.02118443599 3268.028543640813 338.0328834375069 813.3477151341546 3255.20482183992 338.0323728944749 580.3955907314895 3241.789154272113 338.0323735022821 580.3956105556151 3241.789149560116 338.2039479822249 2516.406252625832 3353.281319802924 405.8035843871168 2516.407858047985 3353.28372449419 338.0323684509648 700.9078584178418 3248.72748241506 395.1859964078982 686.5829247173587 3247.902320019018 400.8209124250005 337.7674722396531 3227.816235406996 338.032374135327 561.1330843637907 3240.679830274257 338.0323735525362 337.1447941317309 3227.780388143842 338.0323741369552 337.1431861342238 3227.777979745771 405.9114489031418 674.2956304388603 3247.194862030217 395.9875786311145 1022.949775327234 3267.273449063076 405.8775043110587 1036.022160979286 3268.026285233766 405.8768572819922 344.8689278103946 3228.222903720177 405.9110665108598 344.839521148706 3228.221210166088 405.9110679663719 344.8566460846951 3228.222196405362 405.9114488716629 344.839521148706 3228.221210166088 405.9110679663719 344.8689278103946 3228.222903720177 405.9110665108598 344.8566460846951 3228.222196405362 405.9114488716629 337.1431861342238 3227.777979745771 405.9114489031418 1022.949775327234 3267.273449063076 405.8775043110587 1036.022160979286 3268.026285233766 405.8768572819922 2516.406252625832 3353.281319802924 405.8035843871168 686.5829247173587 3247.902320019018 400.8209124250005 674.2956304388603 3247.194862030217 395.9875786311145 700.9078584178418 3248.72748241506 395.1859964078982 580.3956105556151 3241.789149560116 338.2039479822249 337.1447941317309 3227.780388143842 338.0323741369552 337.7674722396531 3227.816235406996 338.032374135327 561.1330843637907 3240.679830274257 338.0323735525362 1036.02118443599 3268.028543640813 338.0328834375069 2516.407858047985 3353.28372449419 338.0323684509648 580.3955907314895 3241.789154272113 338.0323735022821 794.0918860998825 3254.095882388397 338.0323729447168 813.3477151341546 3255.20482183992 338.0323728944749 337.1431861342238 3227.777979745771 405.9114489031418 337.1431876097372 3227.777970594048 368.7068295041355 0.001399441200874207 2619.970960103682 405.9114525013532 337.1431908681317 3227.777977195417 368.9080325329201 337.1431859751533 3227.777979432203 338.032374137112 0.001608158262115467 2619.970845847286 338.0323777353232 337.1431876097372 3227.777970594048 368.7068295041355 0.001399441200874207 2619.970960103682 405.9114525013532 337.1431859751533 3227.777979432203 338.032374137112 0.001608158262115467 2619.970845847286 338.0323777353232 337.1431908681317 3227.777977195417 368.9080325329201 337.1431861342238 3227.777979745771 405.9114489031418 2869.693290717507 2588.71063172805 338.1426176183711 2923.415296867584 2685.574708188012 405.9114453485518 2869.68434643225 2588.707307731798 405.9114459219671 2923.493942092113 2685.703688715701 338.1294285087317 2923.49394176076 2685.703690609024 338.1426149302267 2923.492244262936 2685.713431868549 405.9114453476827 2923.492244262936 2685.713431868549 405.9114453476827 2923.49394176076 2685.703690609024 338.1426149302267 2923.415296867584 2685.574708188012 405.9114453485518 2923.493942092113 2685.703688715701 338.1294285087317 2869.693290717507 2588.71063172805 338.1426176183711 2869.68434643225 2588.707307731798 405.9114459219671 561.1302985301699 3240.677575220453 338.0323735526458 810.1148040572625 3238.071154066237 338.0323683842534 446.2737132071312 3234.062884723266 338.0323738523466 561.1336754950928 3240.677769702798 338.0323735519786 561.1370524625228 3240.677964185286 338.0323735519505 580.3995233539754 3241.787306612624 338.0323735023706 766.6268333110513 3252.512299124192 338.0323730164655 792.7675538452296 3254.017765921855 338.0323729482547 794.0894295817575 3254.093893906208 338.0323729448077 813.3511779528562 3255.2031949078 338.0323728945552 2462.59996076965 3256.277601348127 338.0323690250253 2516.407858047985 3353.28372449419 338.0323684509648 2462.603337901042 3256.282659646313 338.032369024963 2462.603337901042 3256.282659646313 338.032369024963 2516.407858047985 3353.28372449419 338.0323684509648 2462.59996076965 3256.277601348127 338.0323690250253 813.3511779528562 3255.2031949078 338.0323728945552 810.1148040572625 3238.071154066237 338.0323683842534 794.0894295817575 3254.093893906208 338.0323729448077 792.7675538452296 3254.017765921855 338.0323729482547 766.6268333110513 3252.512299124192 338.0323730164655 580.3995233539754 3241.787306612624 338.0323735023706 561.1370524625228 3240.677964185286 338.0323735519505 561.1336754950928 3240.677769702798 338.0323735519786 561.1302985301699 3240.677575220453 338.0323735526458 446.2737132071312 3234.062884723266 338.0323738523466 810.1148040572625 3238.071154066237 338.0323683842534 810.1148040572625 3238.071154066237 338.0323683842534 580.3956105556151 3241.789149560116 338.2039479822249 580.3955907314895 3241.789154272113 338.0323735022821 561.1330843637907 3240.679830274257 338.0323735525362 561.1330843637907 3240.679830274257 338.0323735525362 580.3955907314895 3241.789154272113 338.0323735022821 580.3956105556151 3241.789149560116 338.2039479822249 3318.852050623426 3398.400669138823 0.4970336249861731 2923.49394176076 2685.703690609024 338.1426149302267 2923.493942092113 2685.703688715701 338.1294285087317 2923.492244262936 2685.713431868549 405.9114453476827 2923.492236381203 2685.713434856329 406.0085024210099 3319.434063122326 3399.449840868385 -6.394884621840902e-014 3319.434063122326 3399.449840868385 -6.394884621840902e-014 3318.852050623426 3398.400669138823 0.4970336249861731 2923.492236381203 2685.713434856329 406.0085024210099 2923.492244262936 2685.713431868549 405.9114453476827 2923.49394176076 2685.703690609024 338.1426149302267 2923.493942092113 2685.703688715701 338.1294285087317 2516.407858047985 3353.28372449419 338.0323684509648 2462.62990221312 3256.239098487574 338.0323683331435 2462.603337901042 3256.282659646313 338.032369024963 2462.55495935909 3256.263223950593 338.0323558025979 2462.599700823887 3256.182622858537 338.0323658407046 2462.552854255104 3256.259431427779 338.0323499756472 2869.635872188781 2588.709371836695 338.1425957762803 2923.501188042007 2685.716754798557 338.142614931421 2916.23650557341 2672.619817047 338.142613717267 2923.49394176076 2685.703690609024 338.1426149302267 2923.49394176076 2685.703690609024 338.1426149302267 2923.501188042007 2685.716754798557 338.142614931421 2916.23650557341 2672.619817047 338.142613717267 2869.635872188781 2588.709371836695 338.1425957762803 2516.407858047985 3353.28372449419 338.0323684509648 2462.62990221312 3256.239098487574 338.0323683331435 2462.599700823887 3256.182622858537 338.0323658407046 2462.55495935909 3256.263223950593 338.0323558025979 2462.552854255104 3256.259431427779 338.0323499756472 2462.603337901042 3256.282659646313 338.032369024963</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"250\" source=\"#ID2164\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2162\">\r\n\t\t\t\t\t<float_array count=\"750\" id=\"ID2165\">0.05749454176842227 -0.9983458200978019 -3.406004610501806e-005 0.05749454176842227 -0.9983458200978019 -3.406004610501806e-005 0.05749454176842227 -0.9983458200978019 -3.406004610501806e-005 0.05749454176842227 -0.9983458200978019 -3.406004610501806e-005 0.05749454176842227 -0.9983458200978019 -3.406004610501806e-005 -0.05749454176842227 0.9983458200978019 3.406004610501806e-005 -0.05749454176842227 0.9983458200978019 3.406004610501806e-005 -0.05749454176842227 0.9983458200978019 3.406004610501806e-005 -0.05749454176842227 0.9983458200978019 3.406004610501806e-005 -0.05749454176842227 0.9983458200978019 3.406004610501806e-005 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 -8.708341941695925e-008 -9.330553485571713e-008 0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 8.708341941695925e-008 9.330553485571713e-008 -0.999999999999992 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -0.0001160643823794089 0.01053446396074925 -0.9999445042591709 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 -7.818994738133551e-009 -8.616018859285797e-009 -1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 0.0001160643823794089 -0.01053446396074925 0.9999445042591709 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 7.818994738133551e-009 8.616018859285797e-009 1 -0.05749453984528703 0.9983458207120062 1.244386792783553e-005 -0.05749453984528703 0.9983458207120062 1.244386792783553e-005 -0.05749453984528703 0.9983458207120062 1.244386792783553e-005 -0.05749453984528703 0.9983458207120062 1.244386792783553e-005 -0.05749453984528703 0.9983458207120062 1.244386792783553e-005 -0.05749453984528703 0.9983458207120062 1.244386792783553e-005 0.05749453984528703 -0.9983458207120062 -1.244386792783553e-005 0.05749453984528703 -0.9983458207120062 -1.244386792783553e-005 0.05749453984528703 -0.9983458207120062 -1.244386792783553e-005 0.05749453984528703 -0.9983458207120062 -1.244386792783553e-005 0.05749453984528703 -0.9983458207120062 -1.244386792783553e-005 0.05749453984528703 -0.9983458207120062 -1.244386792783553e-005 0.05749453890986311 -0.9983458208434279 6.638751432115098e-008 0.05749453890986311 -0.9983458208434279 6.638751432115098e-008 0.05749453890986311 -0.9983458208434279 6.638751432115098e-008 0.05749453890986311 -0.9983458208434279 6.638751432115098e-008 0.05749453890986311 -0.9983458208434279 6.638751432115098e-008 0.05749453890986311 -0.9983458208434279 6.638751432115098e-008 0.05749453890986311 -0.9983458208434279 6.638751432115098e-008 0.05749453890986311 -0.9983458208434279 6.638751432115098e-008 0.05749453890986311 -0.9983458208434279 6.638751432115098e-008 0.05749453890986311 -0.9983458208434279 6.638751432115098e-008 -0.05749453890986311 0.9983458208434279 -6.638751432115098e-008 -0.05749453890986311 0.9983458208434279 -6.638751432115098e-008 -0.05749453890986311 0.9983458208434279 -6.638751432115098e-008 -0.05749453890986311 0.9983458208434279 -6.638751432115098e-008 -0.05749453890986311 0.9983458208434279 -6.638751432115098e-008 -0.05749453890986311 0.9983458208434279 -6.638751432115098e-008 -0.05749453890986311 0.9983458208434279 -6.638751432115098e-008 -0.05749453890986311 0.9983458208434279 -6.638751432115098e-008 -0.05749453890986311 0.9983458208434279 -6.638751432115098e-008 -0.05749453890986311 0.9983458208434279 -6.638751432115098e-008 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 -0.05749454258928111 0.9983458200512086 3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 0.05749454258928111 -0.9983458200512086 -3.404011154892129e-005 -0.8744801384327001 0.4850613234258669 -1.752773499257503e-006 -0.8744801384327001 0.4850613234258669 -1.752773499257503e-006 -0.8744801384327001 0.4850613234258669 -1.752773499257503e-006 -0.8744801384327001 0.4850613234258669 -1.752773499257503e-006 -0.8744801384327001 0.4850613234258669 -1.752773499257503e-006 -0.8744801384327001 0.4850613234258669 -1.752773499257503e-006 0.8744801384327001 -0.4850613234258669 1.752773499257503e-006 0.8744801384327001 -0.4850613234258669 1.752773499257503e-006 0.8744801384327001 -0.4850613234258669 1.752773499257503e-006 0.8744801384327001 -0.4850613234258669 1.752773499257503e-006 0.8744801384327001 -0.4850613234258669 1.752773499257503e-006 0.8744801384327001 -0.4850613234258669 1.752773499257503e-006 0.8744800483392078 -0.4850614771976608 9.162685393395394e-005 0.8744800483392078 -0.4850614771976608 9.162685393395394e-005 0.8744800483392078 -0.4850614771976608 9.162685393395394e-005 0.8744800483392078 -0.4850614771976608 9.162685393395394e-005 0.8744800483392078 -0.4850614771976608 9.162685393395394e-005 0.8744800483392078 -0.4850614771976608 9.162685393395394e-005 -0.8744800483392078 0.4850614771976608 -9.162685393395394e-005 -0.8744800483392078 0.4850614771976608 -9.162685393395394e-005 -0.8744800483392078 0.4850614771976608 -9.162685393395394e-005 -0.8744800483392078 0.4850614771976608 -9.162685393395394e-005 -0.8744800483392078 0.4850614771976608 -9.162685393395394e-005 -0.8744800483392078 0.4850614771976608 -9.162685393395394e-005 -2.266095248084412e-009 5.596876666985606e-009 -1 -2.266095248084412e-009 5.596876666985606e-009 -1 -2.266095248084412e-009 5.596876666985606e-009 -1 -2.266095248084412e-009 5.596876666985606e-009 -1 -2.266095248084412e-009 5.596876666985606e-009 -1 -2.266095248084412e-009 5.596876666985606e-009 -1 -2.266095248084412e-009 5.596876666985606e-009 -1 -2.266095248084412e-009 5.596876666985606e-009 -1 -2.266095248084412e-009 5.596876666985606e-009 -1 -2.266095248084412e-009 5.596876666985606e-009 -1 -2.473787813423111e-006 0.0002243351404362826 -0.9999999748338124 -2.266095248084412e-009 5.596876666985606e-009 -1 -2.266095248084412e-009 5.596876666985606e-009 -1 2.266095248084412e-009 -5.596876666985606e-009 1 2.266095248084412e-009 -5.596876666985606e-009 1 2.473787813423111e-006 -0.0002243351404362826 0.9999999748338124 2.266095248084412e-009 -5.596876666985606e-009 1 2.266095248084412e-009 -5.596876666985606e-009 1 2.266095248084412e-009 -5.596876666985606e-009 1 2.266095248084412e-009 -5.596876666985606e-009 1 2.266095248084412e-009 -5.596876666985606e-009 1 2.266095248084412e-009 -5.596876666985606e-009 1 2.266095248084412e-009 -5.596876666985606e-009 1 2.266095248084412e-009 -5.596876666985606e-009 1 2.266095248084412e-009 -5.596876666985606e-009 1 2.266095248084412e-009 -5.596876666985606e-009 1 -5.062751917178572e-009 3.245250909416762e-010 -1 5.062751917178572e-009 -3.245250909416762e-010 1 -0.05749454174103642 0.9983458200993499 3.406090247416553e-005 -0.05749454174103642 0.9983458200993499 3.406090247416553e-005 -0.05749454174103642 0.9983458200993499 3.406090247416553e-005 0.05749454174103642 -0.9983458200993499 -3.406090247416553e-005 0.05749454174103642 -0.9983458200993499 -3.406090247416553e-005 0.05749454174103642 -0.9983458200993499 -3.406090247416553e-005 0.8744800528272309 -0.4850614691070588 9.162415271520222e-005 0.8744800528272309 -0.4850614691070588 9.162415271520222e-005 0.8744800528272309 -0.4850614691070588 9.162415271520222e-005 0.8744800528272309 -0.4850614691070588 9.162415271520222e-005 0.8744800528272309 -0.4850614691070588 9.162415271520222e-005 0.8744800528272309 -0.4850614691070588 9.162415271520222e-005 -0.8744800528272309 0.4850614691070588 -9.162415271520222e-005 -0.8744800528272309 0.4850614691070588 -9.162415271520222e-005 -0.8744800528272309 0.4850614691070588 -9.162415271520222e-005 -0.8744800528272309 0.4850614691070588 -9.162415271520222e-005 -0.8744800528272309 0.4850614691070588 -9.162415271520222e-005 -0.8744800528272309 0.4850614691070588 -9.162415271520222e-005 0.0001418962879579176 -7.861320818081777e-005 -0.9999999868427034 0.0001418962879579176 -7.861320818081777e-005 -0.9999999868427034 0.0001418962879579176 -7.861320818081777e-005 -0.9999999868427034 0.0001418962879579176 -7.861320818081777e-005 -0.9999999868427034 0.0001418962879579176 -7.861320818081777e-005 -0.9999999868427034 0.0001418962879579176 -7.861320818081777e-005 -0.9999999868427034 0.0001418962879579176 -7.861320818081777e-005 -0.9999999868427034 0.0001418962879579176 -7.861320818081777e-005 -0.9999999868427034 0.0001418962879579176 -7.861320818081777e-005 -0.9999999868427034 0.0001418962879579176 -7.861320818081777e-005 -0.9999999868427034 -0.0001418962879579176 7.861320818081777e-005 0.9999999868427034 -0.0001418962879579176 7.861320818081777e-005 0.9999999868427034 -0.0001418962879579176 7.861320818081777e-005 0.9999999868427034 -0.0001418962879579176 7.861320818081777e-005 0.9999999868427034 -0.0001418962879579176 7.861320818081777e-005 0.9999999868427034 -0.0001418962879579176 7.861320818081777e-005 0.9999999868427034 -0.0001418962879579176 7.861320818081777e-005 0.9999999868427034 -0.0001418962879579176 7.861320818081777e-005 0.9999999868427034 -0.0001418962879579176 7.861320818081777e-005 0.9999999868427034 -0.0001418962879579176 7.861320818081777e-005 0.9999999868427034</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"250\" source=\"#ID2165\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2163\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2161\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2162\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"206\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2163\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 7 6 8 9 8 6 10 11 12 11 10 13 13 10 14 14 10 15 14 15 16 16 15 17 16 17 18 18 17 19 18 19 20 18 21 22 21 18 20 13 23 11 23 13 24 23 24 25 25 24 26 26 24 27 27 24 28 28 24 29 28 29 30 31 32 33 32 34 33 33 34 35 35 34 36 36 34 37 37 34 38 34 39 38 40 38 39 41 42 43 44 43 42 41 45 42 45 46 42 42 46 47 46 48 47 47 48 49 48 50 49 49 50 39 39 50 40 51 40 50 52 53 54 53 52 55 55 52 56 56 52 57 56 57 58 56 58 59 56 59 60 56 60 61 55 62 53 62 55 63 62 63 64 64 63 65 65 63 66 66 63 67 67 63 68 68 63 69 68 69 70 71 72 73 72 74 73 73 74 75 75 74 76 76 74 77 77 74 78 78 74 79 74 80 79 81 79 80 82 83 84 83 85 84 85 86 84 86 87 84 87 88 84 84 88 80 80 88 81 89 81 88 90 91 92 91 90 93 91 93 94 91 94 95 96 97 98 97 99 98 99 100 98 101 98 100 102 103 104 103 102 105 105 102 106 106 102 107 107 102 108 106 107 109 106 109 110 106 110 111 112 113 114 113 115 114 115 116 114 117 118 116 116 118 114 114 118 119 119 118 120 121 120 118 122 123 124 123 122 125 123 125 126 123 127 128 127 123 126 127 126 129 127 129 130 131 126 132 126 131 133 126 133 134 126 134 129 129 134 135 135 134 130 130 134 136 130 136 127 127 136 137 136 134 138 138 134 139 140 138 139 141 142 143 141 144 142 142 144 145 146 145 147 147 145 148 145 144 148 148 144 149 149 144 150 150 144 151 144 152 151 152 153 151 154 151 153 148 150 147 150 151 147 151 155 147 156 147 155 151 157 155 157 158 155 159 155 158 160 161 162 161 160 163 162 164 165 164 162 161 166 167 168 169 168 167 170 171 166 167 166 171 172 173 174 173 172 175 173 175 176 173 176 177 178 179 180 179 181 180 181 182 180 183 180 182 184 185 186 185 184 187 185 187 188 185 188 189 185 189 190 185 190 191 185 191 192 185 192 193 185 193 194 194 193 195 194 195 196 197 198 199 198 200 199 199 200 201 200 202 201 202 203 201 203 204 201 204 205 201 205 206 201 206 207 201 207 208 201 209 201 208 194 61 210 211 82 199 212 213 214 215 216 217 218 219 220 219 218 221 221 218 222 222 218 223 224 225 226 226 225 227 227 225 228 229 228 225 230 231 232 233 234 235 234 233 231 234 231 236 236 231 230 236 230 237 236 237 238 238 237 239 240 241 242 242 241 243 241 244 243 244 245 243 243 245 246 245 247 246 248 246 247 249 245 244</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2166\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2167\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID2170\">237.8352174078091 2229.954774433543 338.0323817820892 247.8583722168992 2213.512295025428 338.0323790586576 237.8348312620403 2229.94982880188 338.0323790051452 247.8638557618547 2213.509116711724 338.032381850578 247.8638557618547 2213.509116711724 338.032381850578 237.8352174078091 2229.954774433543 338.0323817820892 247.8583722168992 2213.512295025428 338.0323790586576 237.8348312620403 2229.94982880188 338.0323790051452 116.5831667772641 2428.792308737518 338.0323809540423 116.5829774973772 2428.789884495798 338.0323783577592 0.002972572082626357 2619.968608386757 338.0323777353281 126.6128952048605 2412.341893527911 338.0323784113106 126.6156963191809 2412.340269975488 338.0323810225486 237.8348312620403 2229.94982880188 338.0323790051452 237.8352174078091 2229.954774433543 338.0323817820892 237.8352174078091 2229.954774433543 338.0323817820892 126.6156963191809 2412.340269975488 338.0323810225486 237.8348312620403 2229.94982880188 338.0323790051452 126.6128952048605 2412.341893527911 338.0323784113106 116.5831667772641 2428.792308737518 338.0323809540423 116.5829774973772 2428.789884495798 338.0323783577592 0.002972572082626357 2619.968608386757 338.0323777353281 247.8638557618547 2213.509116711724 338.032381850578 363.755292647129 2023.453756556999 338.0323797539165 247.8583722168992 2213.512295025428 338.0323790586576 363.7585611673845 2023.456929207403 338.0323796392068 363.7569530104439 2023.454520493923 338.0323796392197 1413.225766143771 2083.895541596134 338.0323769007391 1413.225766143771 2083.895541596134 338.0323769007391 363.7585611673845 2023.456929207403 338.0323796392068 363.7569530104439 2023.454520493923 338.0323796392197 363.755292647129 2023.453756556999 338.0323797539165 247.8638557618547 2213.509116711724 338.032381850578 247.8583722168992 2213.512295025428 338.0323790586576</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID2170\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2168\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID2171\">0.0008012792695228315 0.0004886166116292278 -0.9999995596025726 0.0008012792695228315 0.0004886166116292278 -0.9999995596025726 0.0008012792695228315 0.0004886166116292278 -0.9999995596025726 0.0008012792695228315 0.0004886166116292278 -0.9999995596025726 -0.0008012792695228315 -0.0004886166116292278 0.9999995596025726 -0.0008012792695228315 -0.0004886166116292278 0.9999995596025726 -0.0008012792695228315 -0.0004886166116292278 0.9999995596025726 -0.0008012792695228315 -0.0004886166116292278 0.9999995596025726 0.001049422687766186 0.0006399320078248869 -0.9999992445992386 0.001049422687766186 0.0006399320078248869 -0.9999992445992386 0.001049422687766186 0.0006399320078248869 -0.9999992445992386 0.001049422687766186 0.0006399320078248869 -0.9999992445992386 0.001049422687766186 0.0006399320078248869 -0.9999992445992386 0.001049422687766186 0.0006399320078248869 -0.9999992445992386 0.001049422687766186 0.0006399320078248869 -0.9999992445992386 -0.001049422687766186 -0.0006399320078248869 0.9999992445992386 -0.001049422687766186 -0.0006399320078248869 0.9999992445992386 -0.001049422687766186 -0.0006399320078248869 0.9999992445992386 -0.001049422687766186 -0.0006399320078248869 0.9999992445992386 -0.001049422687766186 -0.0006399320078248869 0.9999992445992386 -0.001049422687766186 -0.0006399320078248869 0.9999992445992386 -0.001049422687766186 -0.0006399320078248869 0.9999992445992386 -2.783560264663781e-009 2.391684447738312e-009 -1 -2.783560264663781e-009 2.391684447738312e-009 -1 -2.783560264663781e-009 2.391684447738312e-009 -1 -2.783560264663781e-009 2.391684447738312e-009 -1 -2.783560264663781e-009 2.391684447738312e-009 -1 -2.783560264663781e-009 2.391684447738312e-009 -1 2.783560264663781e-009 -2.391684447738312e-009 1 2.783560264663781e-009 -2.391684447738312e-009 1 2.783560264663781e-009 -2.391684447738312e-009 1 2.783560264663781e-009 -2.391684447738312e-009 1 2.783560264663781e-009 -2.391684447738312e-009 1 2.783560264663781e-009 -2.391684447738312e-009 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID2171\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2169\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2167\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2168\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"11\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2169\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 11 8 12 11 12 13 13 12 14 22 23 24 23 22 25 23 25 26 26 25 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"11\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2169\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 15 16 17 17 16 18 16 19 18 18 19 20 21 20 19 28 29 30 30 29 31 29 32 31 33 31 32</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2172\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2178\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID2187\">3772.901267829738 872.391525301171 507.912472156188 3772.907037712072 872.3822214456563 507.9124721561796 3772.906906612058 872.3820391240804 410.6515736371092 3772.906906612058 872.3820391240804 410.6515736371092 3772.907037712072 872.3822214456563 507.9124721561796 3772.901267829738 872.391525301171 507.912472156188 3772.9012297665 872.3915264759544 482.9273228438767 3772.901233146265 872.3915210112368 482.9589974873815 3772.906906612058 872.3820391240804 410.6515736371092 3772.901267829738 872.391525301171 507.912472156188 3772.901233146265 872.3915210112368 482.9589974873815 3772.906906612058 872.3820391240804 410.6515736371092 3772.901267829738 872.391525301171 507.912472156188 3772.9012297665 872.3915264759544 482.9273228438767 3772.90121750178 872.391526854492 474.8766152221235 3772.9012297665 872.3915264759544 482.9273228438767 3772.906906612058 872.3820391240804 410.6515736371092 3772.906906612058 872.3820391240804 410.6515736371092 3772.9012297665 872.3915264759544 482.9273228438767 3772.90121750178 872.391526854492 474.8766152221235 3156.881584368713 1882.583606356642 405.9114485117308 3772.901198137903 872.3915313990142 406.3951440010765 3772.901161900475 872.391529071248 405.9114517450242 3772.9012297665 872.3915264759544 482.9273228438767 3772.901267829738 872.391525301171 507.912472156188 3772.901233146265 872.3915210112368 482.9589974873815 3156.881518648273 1882.583676345436 507.9124670622556 3772.90121750178 872.391526854492 474.8766152221235 3156.881584368713 1882.583606356642 405.9114485117308 3772.901198137903 872.3915313990142 406.3951440010765 3156.881518648273 1882.583676345436 507.9124670622556 3772.90121750178 872.391526854492 474.8766152221235 3772.9012297665 872.3915264759544 482.9273228438767 3772.901267829738 872.391525301171 507.912472156188 3772.901233146265 872.3915210112368 482.9589974873815 3772.901161900475 872.391529071248 405.9114517450242 3398.070018656832 2317.405059935425 405.9114459376211 3156.881518648273 1882.583676345436 507.9124670622556 3156.881584368713 1882.583606356642 405.9114485117308 3398.070018863726 2317.405060644484 507.9124644879652 3398.070018863726 2317.405060644484 507.9124644879652 3398.070018656832 2317.405059935425 405.9114459376211 3156.881518648273 1882.583676345436 507.9124670622556 3156.881584368713 1882.583606356642 405.9114485117308</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID2187\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2179\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID2188\">0.8498416563055384 0.5270381003336546 -2.133484882246416e-006 0.8498416563055384 0.5270381003336546 -2.133484882246416e-006 0.8498416563055384 0.5270381003336546 -2.133484882246416e-006 -0.8498416563055384 -0.5270381003336546 2.133484882246416e-006 -0.8498416563055384 -0.5270381003336546 2.133484882246416e-006 -0.8498416563055384 -0.5270381003336546 2.133484882246416e-006 0.8535775678970481 0.5209657719862273 -1.324641854280693e-006 0.8535775678970481 0.5209657719862273 -1.324641854280693e-006 0.8535775678970481 0.5209657719862273 -1.324641854280693e-006 0.8535775678970481 0.5209657719862273 -1.324641854280693e-006 -0.8535775678970481 -0.5209657719862273 1.324641854280693e-006 -0.8535775678970481 -0.5209657719862273 1.324641854280693e-006 -0.8535775678970481 -0.5209657719862273 1.324641854280693e-006 -0.8535775678970481 -0.5209657719862273 1.324641854280693e-006 0.8537997702611817 0.520601529291189 -1.276229673570018e-006 0.8537997702611817 0.520601529291189 -1.276229673570018e-006 0.8537997702611817 0.520601529291189 -1.276229673570018e-006 -0.8537997702611817 -0.520601529291189 1.276229673570018e-006 -0.8537997702611817 -0.520601529291189 1.276229673570018e-006 -0.8537997702611817 -0.520601529291189 1.276229673570018e-006 0.8537778186927874 0.5206375287165531 -3.262259047900423e-007 0.8537778186927874 0.5206375287165531 -3.262259047900423e-007 0.8537778186927874 0.5206375287165531 -3.262259047900423e-007 0.8537778186927874 0.5206375287165531 -3.262259047900423e-007 0.8537778186927874 0.5206375287165531 -3.262259047900423e-007 0.8537778186927874 0.5206375287165531 -3.262259047900423e-007 0.8537778186927874 0.5206375287165531 -3.262259047900423e-007 0.8537778186927874 0.5206375287165531 -3.262259047900423e-007 -0.8537778186927874 -0.5206375287165531 3.262259047900423e-007 -0.8537778186927874 -0.5206375287165531 3.262259047900423e-007 -0.8537778186927874 -0.5206375287165531 3.262259047900423e-007 -0.8537778186927874 -0.5206375287165531 3.262259047900423e-007 -0.8537778186927874 -0.5206375287165531 3.262259047900423e-007 -0.8537778186927874 -0.5206375287165531 3.262259047900423e-007 -0.8537778186927874 -0.5206375287165531 3.262259047900423e-007 -0.8537778186927874 -0.5206375287165531 3.262259047900423e-007 0.8744806541844514 -0.4850603936180859 4.489320669176857e-007 0.8744806541844514 -0.4850603936180859 4.489320669176857e-007 0.8744806541844514 -0.4850603936180859 4.489320669176857e-007 0.8744806541844514 -0.4850603936180859 4.489320669176857e-007 -0.8744806541844514 0.4850603936180859 -4.489320669176857e-007 -0.8744806541844514 0.4850603936180859 -4.489320669176857e-007 -0.8744806541844514 0.4850603936180859 -4.489320669176857e-007 -0.8744806541844514 0.4850603936180859 -4.489320669176857e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID2188\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2181\">\r\n\t\t\t\t\t<float_array count=\"44\" id=\"ID2189\">-21.11270386639223 244.2553092254362 -21.11275580091737 244.255309209065 -21.11270028882494 243.0552628541123 -21.0608453092563 243.9470207968571 -21.06084535801748 243.9474116120779 -21.06085604281491 243.0552518301883 -21.06085982784292 244.2552982012693 -21.05772135866528 243.8476870851255 -21.0577260378676 243.9470201416646 -21.05773676220633 243.0552511750055 -15.44505106058924 242.9985238562135 -21.05799013056118 243.0027154510278 -21.05798977127723 242.9967474501666 -21.05803440686488 243.947002041195 -21.05804892832539 244.2552794456028 -21.05803445562971 243.9473928564158 -15.44510949495319 244.2570558289206 -21.05802972776407 243.8476689846558 0.9999999985511554 0 5.897720001257767e-008 1 -8.881784197001252e-016 2.523591602354713e-008 0.9999999999999991 0.9999999747619111</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID2189\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2180\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2178\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2179\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2180\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2181\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 7 4 8 5 9 6 8 5 7 4 14 7 15 8 16 9 20 10 21 11 22 12 23 13 24 14 25 15 24 14 23 13 26 16 26 16 23 13 27 17 26 16 27 17 21 11 26 16 21 11 20 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2180\" />\r\n\t\t\t\t\t<p>3 4 5 10 11 12 11 10 13 17 18 19 28 29 30 29 31 30 31 32 30 30 32 33 34 33 32 35 29 28 40 41 42 43 42 41</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2180\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2181\" />\r\n\t\t\t\t\t<p>36 18 37 19 38 20 37 19 36 18 39 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2190\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2191\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2195\">1413.553360449541 2083.914407633863 338.0323802345448 1413.227183959937 2083.895622265979 338.0323769009014 1357.881249868186 2174.615598457435 338.0323766114237 1357.881249868186 2174.615598457435 338.0323766114237 1413.227183959937 2083.895622265979 338.0323769009014 1413.553360449541 2083.914407633863 338.0323802345448</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2195\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2192\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2196\">9.873625406043451e-006 6.020455137463362e-006 -0.9999999999331329 9.873625406043451e-006 6.020455137463362e-006 -0.9999999999331329 9.873625406043451e-006 6.020455137463362e-006 -0.9999999999331329 -9.873625406043451e-006 -6.020455137463362e-006 0.9999999999331329 -9.873625406043451e-006 -6.020455137463362e-006 0.9999999999331329 -9.873625406043451e-006 -6.020455137463362e-006 0.9999999999331329</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2196\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2194\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2197\">78.68226994215684 -58.2302096046576 78.51740074352369 -58.29040000671932 71.67719820673187 -111.8927345198371</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2197\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2193\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2191\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2192\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2193\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2194\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2193\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2198\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2199\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID2203\">2628.475763775084 2153.879316581375 507.9124670468494 1413.57713900011 2083.908004223142 507.9124702167908 1413.572523140518 2083.91558534225 507.9124702167565 2628.479025503842 2153.873967771985 507.9124670467727 2628.491938293804 2153.880248038021 507.9124670467994 2628.488098343926 2153.87449027502 507.9124670467419 2628.489588026156 2153.876553222112 507.9124670467692 2628.489588026156 2153.876553222112 507.9124670467692 2628.491938293804 2153.880248038021 507.9124670467994 2628.488098343926 2153.87449027502 507.9124670467419 2628.479025503842 2153.873967771985 507.9124670467727 2628.475763775084 2153.879316581375 507.9124670468494 1413.57713900011 2083.908004223142 507.9124702167908 1413.572523140518 2083.91558534225 507.9124702167565 2628.491938293804 2153.880248038021 507.9124670467994 2628.492004345633 2153.880172293547 405.9114484961681 2628.489588026156 2153.876553222112 507.9124670467692 2628.489588026156 2153.876553222112 507.9124670467692 2628.492004345633 2153.880172293547 405.9114484961681 2628.491938293804 2153.880248038021 507.9124670467994 2869.68434643225 2588.707307731798 405.9114459219671 2628.492004345633 2153.880172293547 405.9114484961681 2628.491938293804 2153.880248038021 507.9124670467994 2628.491938293804 2153.880248038021 507.9124670467994 2628.492004345633 2153.880172293547 405.9114484961681 2869.68434643225 2588.707307731798 405.9114459219671 2628.491938293804 2153.880248038021 507.9124670467994 2869.684344976375 2588.707308507645 405.9230805112392 2869.68434643225 2588.707307731798 405.9114459219671 2869.684344344511 2588.707308847079 405.9271326313835 2869.684344344511 2588.707308847079 405.9271326313835 2628.491938293804 2153.880248038021 507.9124670467994 2869.684344976375 2588.707308507645 405.9230805112392 2869.68434643225 2588.707307731798 405.9114459219671 2869.684344344511 2588.707308847079 405.9271326313835 2628.491938293804 2153.880248038021 507.9124670467994 2869.684341877016 2588.707308649332 405.9444569674516 2869.684341877016 2588.707308649332 405.9444569674516 2628.491938293804 2153.880248038021 507.9124670467994 2869.684344344511 2588.707308847079 405.9271326313835 2869.684338320763 2588.707312661251 406.0216933071898 2869.684341877016 2588.707308649332 405.9444569674516 2628.491938293804 2153.880248038021 507.9124670467994 2628.491938293804 2153.880248038021 507.9124670467994 2869.684341877016 2588.707308649332 405.9444569674516 2869.684338320763 2588.707312661251 406.0216933071898 2651.7894080799 2195.881578557787 507.912466798148 2869.684338320763 2588.707312661251 406.0216933071898 2628.491938293804 2153.880248038021 507.9124670467994 2651.901869656977 2196.084327436222 507.9124667969589 2651.913974243781 2196.106149924071 507.9124667968089 2651.913974243781 2196.106149924071 507.9124667968089 2651.901869656977 2196.084327436222 507.9124667969589 2869.684338320763 2588.707312661251 406.0216933071898 2651.7894080799 2195.881578557787 507.912466798148 2628.491938293804 2153.880248038021 507.9124670467994 2869.684338320763 2588.707312661251 406.0216933071898 2651.913974243781 2196.106149924071 507.9124667968089 2869.680438839097 2588.701626580527 507.9124644725864 2869.680438839097 2588.701626580527 507.9124644725864 2651.913974243781 2196.106149924071 507.9124667968089 2869.684338320763 2588.707312661251 406.0216933071898</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID2203\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2200\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID2204\">-2.766397877699111e-009 2.724382598017676e-009 -1 -2.766397877699111e-009 2.724382598017676e-009 -1 -2.766397877699111e-009 2.724382598017676e-009 -1 -2.766397877699111e-009 2.724382598017676e-009 -1 -2.766397877699111e-009 2.724382598017676e-009 -1 -2.766397877699111e-009 2.724382598017676e-009 -1 -2.766397877699111e-009 2.724382598017676e-009 -1 2.766397877699111e-009 -2.724382598017676e-009 1 2.766397877699111e-009 -2.724382598017676e-009 1 2.766397877699111e-009 -2.724382598017676e-009 1 2.766397877699111e-009 -2.724382598017676e-009 1 2.766397877699111e-009 -2.724382598017676e-009 1 2.766397877699111e-009 -2.724382598017676e-009 1 2.766397877699111e-009 -2.724382598017676e-009 1 -0.843762719824899 0.5367163800675325 -9.449454038399538e-007 -0.843762719824899 0.5367163800675325 -9.449454038399538e-007 -0.843762719824899 0.5367163800675325 -9.449454038399538e-007 0.843762719824899 -0.5367163800675325 9.449454038399538e-007 0.843762719824899 -0.5367163800675325 9.449454038399538e-007 0.843762719824899 -0.5367163800675325 9.449454038399538e-007 -0.8744800536430409 0.4850614762889404 -9.264785677987227e-007 -0.8744800536430409 0.4850614762889404 -9.264785677987227e-007 -0.8744800536430409 0.4850614762889404 -9.264785677987227e-007 0.8744800536430409 -0.4850614762889404 9.264785677987227e-007 0.8744800536430409 -0.4850614762889404 9.264785677987227e-007 0.8744800536430409 -0.4850614762889404 9.264785677987227e-007 -0.874494756709723 0.4850349454808665 -0.0001488273337209803 -0.874494756709723 0.4850349454808665 -0.0001488273337209803 -0.874494756709723 0.4850349454808665 -0.0001488273337209803 -0.874494756709723 0.4850349454808665 -0.0001488273337209803 0.874494756709723 -0.4850349454808665 0.0001488273337209803 0.874494756709723 -0.4850349454808665 0.0001488273337209803 0.874494756709723 -0.4850349454808665 0.0001488273337209803 0.874494756709723 -0.4850349454808665 0.0001488273337209803 -0.8744917967803271 0.4850402902872716 -0.0001190040102381547 -0.8744917967803271 0.4850402902872716 -0.0001190040102381547 -0.8744917967803271 0.4850402902872716 -0.0001190040102381547 0.8744917967803271 -0.4850402902872716 0.0001190040102381547 0.8744917967803271 -0.4850402902872716 0.0001190040102381547 0.8744917967803271 -0.4850402902872716 0.0001190040102381547 -0.8744864752200223 0.4850498947244814 -6.546014868362857e-005 -0.8744864752200223 0.4850498947244814 -6.546014868362857e-005 -0.8744864752200223 0.4850498947244814 -6.546014868362857e-005 0.8744864752200223 -0.4850498947244814 6.546014868362857e-005 0.8744864752200223 -0.4850498947244814 6.546014868362857e-005 0.8744864752200223 -0.4850498947244814 6.546014868362857e-005 -0.8744806066503652 0.4850604792718851 -6.398307513535808e-006 -0.8744806066503652 0.4850604792718851 -6.398307513535808e-006 -0.8744806066503652 0.4850604792718851 -6.398307513535808e-006 -0.8744806066503652 0.4850604792718851 -6.398307513535808e-006 -0.8744806066503652 0.4850604792718851 -6.398307513535808e-006 0.8744806066503652 -0.4850604792718851 6.398307513535808e-006 0.8744806066503652 -0.4850604792718851 6.398307513535808e-006 0.8744806066503652 -0.4850604792718851 6.398307513535808e-006 0.8744806066503652 -0.4850604792718851 6.398307513535808e-006 0.8744806066503652 -0.4850604792718851 6.398307513535808e-006 -0.8744806066499049 0.4850604792727155 -6.398303293540797e-006 -0.8744806066499049 0.4850604792727155 -6.398303293540797e-006 -0.8744806066499049 0.4850604792727155 -6.398303293540797e-006 0.8744806066499049 -0.4850604792727155 6.398303293540797e-006 0.8744806066499049 -0.4850604792727155 6.398303293540797e-006 0.8744806066499049 -0.4850604792727155 6.398303293540797e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID2204\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2202\">\r\n\t\t\t\t\t<float_array count=\"62\" id=\"ID2205\">692.7736428941487 165.9662155231376 78.69040241358016 -58.22199183005739 78.68983532877496 -58.22646923098603 692.77404547884 165.969375588254 692.7818184506155 165.9692002948029 692.7786314316129 165.9710498407038 692.7798293873334 165.9704112099231 -15.02914998832514 244.2597616192459 -15.02920445227513 243.0012296407038 -15.02912921511109 244.2597616131491 -17.10379675563615 243.0019150622044 -14.7449596358629 243.0011939298221 -14.74490292021605 244.2597259052712 -14.74475590955293 244.2578603840344 -17.10364973835227 243.000193093491 -17.10364974497138 243.0000495409759 -17.10364973604694 243.0002430902746 -17.10367930914612 243.0006187946278 -14.7447854824775 244.2582360861775 -17.10367929298761 243.0008325496585 -17.10373249237009 243.0024611174948 -17.1037325269788 243.001508142661 -14.74483871637583 244.2589116780133 -14.97274479861645 244.2597265249209 -17.103791168414 243.0032063050422 -14.74489739264659 244.2596568684531 -14.97384466391699 244.2597268611668 -14.97396304581552 244.2597268973578 -17.10379116841869 243.0032063050952 -14.97396304582022 244.2597268974108 -17.10370179087351 244.260377991408</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"31\" source=\"#ID2205\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2201\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2199\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2200\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2201\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2202\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 14 7 15 8 16 9 20 10 21 11 22 12 26 13 27 14 28 15 27 14 26 13 29 16 34 17 35 18 36 19 40 20 41 21 42 22 46 23 47 24 48 25 47 24 46 23 49 26 47 24 49 26 50 27 56 28 57 29 58 30</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2201\" />\r\n\t\t\t\t\t<p>7 8 9 9 8 10 8 11 10 10 11 12 13 12 11 17 18 19 23 24 25 30 31 32 33 32 31 37 38 39 43 44 45 51 52 53 52 54 53 55 53 54 59 60 61</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2206\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2207\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2211\">1413.572589192353 2083.915509597784 405.9114516661481 2628.491938293804 2153.880248038021 507.9124670467994 2628.492004345633 2153.880172293547 405.9114484961681 1413.572523140518 2083.91558534225 507.9124702167565 2628.475763775084 2153.879316581375 507.9124670468494 2628.475763775084 2153.879316581375 507.9124670468494 1413.572523140518 2083.91558534225 507.9124702167565 2628.491938293804 2153.880248038021 507.9124670467994 1413.572589192353 2083.915509597784 405.9114516661481 2628.492004345633 2153.880172293547 405.9114484961681</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2211\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2208\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2212\">-0.05749264959486941 0.9983459296466107 -7.785870390015005e-007 -0.05749264959486941 0.9983459296466107 -7.785870390015005e-007 -0.05749264959486941 0.9983459296466107 -7.785870390015005e-007 -0.05749264959486941 0.9983459296466107 -7.785870390015005e-007 -0.05749264959486941 0.9983459296466107 -7.785870390015005e-007 0.05749264959486941 -0.9983459296466107 7.785870390015005e-007 0.05749264959486941 -0.9983459296466107 7.785870390015005e-007 0.05749264959486941 -0.9983459296466107 7.785870390015005e-007 0.05749264959486941 -0.9983459296466107 7.785870390015005e-007 0.05749264959486941 -0.9983459296466107 7.785870390015005e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2212\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2210\">\r\n\t\t\t\t\t<float_array count=\"10\" id=\"ID2213\">-11.22705184402464 243.0000014535615 -16.99999970657498 244.2585334684992 -16.99999999999873 243.0000014535852 -11.22705155060086 244.2585334684752 -16.99992284990707 244.2585334684993</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID2213\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2209\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2207\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2208\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2209\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2210\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 5 4 6 3 7 1 6 3 8 0 7 1 9 2 7 1 8 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2214\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2215\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID2218\">3853.705080157358 2399.228263879004 395.0507918048 3853.705080031609 2399.228263622007 338.032373181193 3938.023353591445 2404.084555091783 382.7918304971632 3938.023353591445 2404.084555091783 382.7918304971632 3853.705080031609 2399.228263622007 338.032373181193 3853.705080157358 2399.228263879004 395.0507918048 3954.084867613965 2405.004438356853 380.4573514126836 3954.081010031212 2405.004216888792 380.4567905023412 3954.08835313134 2404.984419348663 338.0323736515546 3938.023353591445 2404.084555091783 382.7918304971632 3853.705080031609 2399.228263622007 338.032373181193 3954.081010031212 2405.004216888792 380.4567905023412 3954.08835313134 2404.984419348663 338.0323736515546 3938.023353591445 2404.084555091783 382.7918304971632 3853.705080031609 2399.228263622007 338.032373181193 3954.084867613965 2405.004438356853 380.4573514126836 3853.705080157358 2399.228263879004 395.0507918048 3753.326876306298 2393.448000336024 338.0323734430835 3853.705080031609 2399.228263622007 338.032373181193 3833.245825903445 2398.050120884417 392.0762181059916 3833.245825903445 2398.050120884417 392.0762181059916 3853.705080157358 2399.228263879004 395.0507918048 3753.326876306298 2393.448000336024 338.0323734430835 3853.705080031609 2399.228263622007 338.032373181193 4034.004872769021 2409.606619503401 392.0769315984947 3954.084867613965 2405.004438356853 380.4573514126836 3954.08835313134 2404.984419348663 338.0323736515546 3954.08835313134 2404.984419348663 338.0323736515546 3954.084867613965 2405.004438356853 380.4573514126836 4034.004872769021 2409.606619503401 392.0769315984947 3833.245825903445 2398.050120884417 392.0762181059916 3753.326876400723 2393.448000527383 380.4567914016124 3753.326876306298 2393.448000336024 338.0323734430835 3753.326876306298 2393.448000336024 338.0323734430835 3753.326876400723 2393.448000527383 380.4567914016124 3833.245825903445 2398.050120884417 392.0762181059916 3753.326876400723 2393.448000527383 380.4567914016124 3652.947938179269 2387.666947812944 338.0323737050084 3753.326876306298 2393.448000336024 338.0323734430835 3753.326876306298 2393.448000336024 338.0323734430835 3652.947938179269 2387.666947812944 338.0323737050084 3753.326876400723 2393.448000527383 380.4567914016124 4074.921566842892 2411.968179838546 392.0762181071758 4054.465024881499 2410.773481184892 338.0323731477569 4154.84107421515 2416.571124966541 338.0323723954701 4054.462634468315 2410.787210964466 395.0505046510556 4054.462634468315 2410.787210964466 395.0505046510556 4074.921566842892 2411.968179838546 392.0762181071758 4054.465024881499 2410.773481184892 338.0323731477569 4154.84107421515 2416.571124966541 338.0323723954701 3652.948022522947 2387.666776055357 395.0507927040887 3652.947938179269 2387.666947812944 338.0323737050084 3753.326876400723 2393.448000527383 380.4567914016124 3753.326876400723 2393.448000527383 380.4567914016124 3652.947938179269 2387.666947812944 338.0323737050084 3652.948022522947 2387.666776055357 395.0507927040887 4074.921566842892 2411.968179838546 392.0762181071758 4154.84107421515 2416.571124966541 338.0323723954701 4154.84107430837 2416.571125157784 380.4567896032048 4154.84107430837 2416.571125157784 380.4567896032048 4154.84107421515 2416.571124966541 338.0323723954701 4074.921566842892 2411.968179838546 392.0762181071758 3652.948022522947 2387.666776055357 395.0507927040887 3552.569777346715 2381.886438014116 338.0323739669155 3652.947938179269 2387.666947812944 338.0323737050084 3652.947938179269 2387.666947812944 338.0323737050084 3552.569777346715 2381.886438014116 338.0323739669155 3652.948022522947 2387.666776055357 395.0507927040887 4154.84107430837 2416.571125157784 380.4567896032048 4154.84107421515 2416.571124966541 338.0323723954701 4257.958168973002 2422.509120615684 368.577952500565 4257.958168973002 2422.509120615684 368.577952500565 4154.84107421515 2416.571124966541 338.0323723954701 4154.84107430837 2416.571125157784 380.4567896032048 4257.958168973002 2422.509120615684 368.577952500565 4154.84107421515 2416.571124966541 338.0323723954701 4257.958083068392 2422.509613461257 338.0323721264136 4257.958083068392 2422.509613461257 338.0323721264136 4154.84107421515 2416.571124966541 338.0323723954701 4257.958168973002 2422.509120615684 368.577952500565</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID2218\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2216\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID2219\">0.05749947801154924 -0.9983455363892801 4.37299174863427e-009 0.05749947801154924 -0.9983455363892801 4.37299174863427e-009 0.05749947801154924 -0.9983455363892801 4.37299174863427e-009 -0.05749947801154924 0.9983455363892801 -4.37299174863427e-009 -0.05749947801154924 0.9983455363892801 -4.37299174863427e-009 -0.05749947801154924 0.9983455363892801 -4.37299174863427e-009 0.05724773482572927 -0.9983598902568849 0.0004757978395091546 0.05724773482572927 -0.9983598902568849 0.0004757978395091546 0.05724773482572927 -0.9983598902568849 0.0004757978395091546 0.05724773482572927 -0.9983598902568849 0.0004757978395091546 0.05724773482572927 -0.9983598902568849 0.0004757978395091546 -0.05724773482572927 0.9983598902568849 -0.0004757978395091546 -0.05724773482572927 0.9983598902568849 -0.0004757978395091546 -0.05724773482572927 0.9983598902568849 -0.0004757978395091546 -0.05724773482572927 0.9983598902568849 -0.0004757978395091546 -0.05724773482572927 0.9983598902568849 -0.0004757978395091546 0.05748960554126533 -0.998346104942925 4.373344909765252e-009 0.05748960554126533 -0.998346104942925 4.373344909765252e-009 0.05748960554126533 -0.998346104942925 4.373344909765252e-009 0.05748960554126533 -0.998346104942925 4.373344909765252e-009 -0.05748960554126533 0.998346104942925 -4.373344909765252e-009 -0.05748960554126533 0.998346104942925 -4.373344909765252e-009 -0.05748960554126533 0.998346104942925 -4.373344909765252e-009 -0.05748960554126533 0.998346104942925 -4.373344909765252e-009 0.05742065046894249 -0.9983499599374357 0.0004758073606182213 0.05742065046894249 -0.9983499599374357 0.0004758073606182213 0.05742065046894249 -0.9983499599374357 0.0004758073606182213 -0.05742065046894249 0.9983499599374357 -0.0004758073606182213 -0.05742065046894249 0.9983499599374357 -0.0004758073606182213 -0.05742065046894249 0.9983499599374357 -0.0004758073606182213 0.05748960553982677 -0.9983461049430078 4.375862930279571e-009 0.05748960553982677 -0.9983461049430078 4.375862930279571e-009 0.05748960553982677 -0.9983461049430078 4.375862930279571e-009 -0.05748960553982677 0.9983461049430078 -4.375862930279571e-009 -0.05748960553982677 0.9983461049430078 -4.375862930279571e-009 -0.05748960553982677 0.9983461049430078 -4.375862930279571e-009 0.05749700994501993 -0.9983456785339346 4.375844600947378e-009 0.05749700994501993 -0.9983456785339346 4.375844600947378e-009 0.05749700994501993 -0.9983456785339346 4.375844600947378e-009 -0.05749700994501993 0.9983456785339346 -4.375844600947378e-009 -0.05749700994501993 0.9983456785339346 -4.375844600947378e-009 -0.05749700994501993 0.9983456785339346 -4.375844600947378e-009 0.05766312716689949 -0.9983360680687298 0.0002428135140211547 0.05766312716689949 -0.9983360680687298 0.0002428135140211547 0.05766312716689949 -0.9983360680687298 0.0002428135140211547 0.05766312716689949 -0.9983360680687298 0.0002428135140211547 -0.05766312716689949 0.9983360680687298 -0.0002428135140211547 -0.05766312716689949 0.9983360680687298 -0.0002428135140211547 -0.05766312716689949 0.9983360680687298 -0.0002428135140211547 -0.05766312716689949 0.9983360680687298 -0.0002428135140211547 0.05749831444218431 -0.9983456033993162 -3.092387877287665e-006 0.05749831444218431 -0.9983456033993162 -3.092387877287665e-006 0.05749831444218431 -0.9983456033993162 -3.092387877287665e-006 -0.05749831444218431 0.9983456033993162 3.092387877287665e-006 -0.05749831444218431 0.9983456033993162 3.092387877287665e-006 -0.05749831444218431 0.9983456033993162 3.092387877287665e-006 0.05749947804047528 -0.9983455363876141 4.373732051228887e-009 0.05749947804047528 -0.9983455363876141 4.373732051228887e-009 0.05749947804047528 -0.9983455363876141 4.373732051228887e-009 -0.05749947804047528 0.9983455363876141 -4.373732051228887e-009 -0.05749947804047528 0.9983455363876141 -4.373732051228887e-009 -0.05749947804047528 0.9983455363876141 -4.373732051228887e-009 0.05749207370177215 -0.9983459628064348 -3.092379728453004e-006 0.05749207370177215 -0.9983459628064348 -3.092379728453004e-006 0.05749207370177215 -0.9983459628064348 -3.092379728453004e-006 -0.05749207370177215 0.9983459628064348 3.092379728453004e-006 -0.05749207370177215 0.9983459628064348 3.092379728453004e-006 -0.05749207370177215 0.9983459628064348 3.092379728453004e-006 0.05748973691404308 -0.9983460973778353 4.373756036599868e-009 0.05748973691404308 -0.9983460973778353 4.373756036599868e-009 0.05748973691404308 -0.9983460973778353 4.373756036599868e-009 -0.05748973691404308 0.9983460973778353 -4.373756036599868e-009 -0.05748973691404308 0.9983460973778353 -4.373756036599868e-009 -0.05748973691404308 0.9983460973778353 -4.373756036599868e-009 0.05749454173457635 -0.9983458205481837 -1.626976297718747e-005 0.05749454173457635 -0.9983458205481837 -1.626976297718747e-005 0.05749454173457635 -0.9983458205481837 -1.626976297718747e-005 -0.05749454173457635 0.9983458205481837 1.626976297718747e-005 -0.05749454173457635 0.9983458205481837 1.626976297718747e-005 -0.05749454173457635 0.9983458205481837 1.626976297718747e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID2219\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2217\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2215\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2216\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2217\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8 8 9 10 9 8 7 16 17 18 17 16 19 24 25 26 30 31 32 36 37 38 42 43 44 43 42 45 50 51 52 56 57 58 62 63 64 68 69 70 74 75 76</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2217\" />\r\n\t\t\t\t\t<p>3 4 5 11 12 13 14 13 12 12 11 15 20 21 22 23 22 21 27 28 29 33 34 35 39 40 41 46 47 48 49 48 47 53 54 55 59 60 61 65 66 67 71 72 73 77 78 79</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2220\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2221\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID2224\">2923.490208112088 2685.709778245222 406.0084987625043 2869.684344344511 2588.707308847079 405.9271326313835 2869.684344976375 2588.707308507645 405.9230805112392 2869.684341877016 2588.707308649332 405.9444569674516 2869.684344344511 2588.707308847079 405.9271326313835 2869.684341877016 2588.707308649332 405.9444569674516 2923.490208112088 2685.709778245222 406.0084987625043 2869.684344976375 2588.707308507645 405.9230805112392 2923.490208112088 2685.709778245222 406.0084987625043 2869.684344976375 2588.707308507645 405.9230805112392 2869.68434643225 2588.707307731798 405.9114459219671 2869.68434643225 2588.707307731798 405.9114459219671 2869.684344976375 2588.707308507645 405.9230805112392 2923.490208112088 2685.709778245222 406.0084987625043 2923.490208112088 2685.709778245222 406.0084987625043 2869.684338320763 2588.707312661251 406.0216933071898 2869.684341877016 2588.707308649332 405.9444569674516 2869.684341877016 2588.707308649332 405.9444569674516 2869.684338320763 2588.707312661251 406.0216933071898 2923.490208112088 2685.709778245222 406.0084987625043 2923.415296867584 2685.574708188012 405.9114453485518 2923.490208112088 2685.709778245222 406.0084987625043 2869.68434643225 2588.707307731798 405.9114459219671 2923.492236381203 2685.713434856329 406.0085024210099 2923.492236381203 2685.713434856329 406.0085024210099 2923.415296867584 2685.574708188012 405.9114453485518 2923.490208112088 2685.709778245222 406.0084987625043 2869.68434643225 2588.707307731798 405.9114459219671 2923.492236381203 2685.713434856329 406.0085024210099 2923.415296867584 2685.574708188012 405.9114453485518 2923.492244262936 2685.713431868549 405.9114453476827 2923.492244262936 2685.713431868549 405.9114453476827 2923.415296867584 2685.574708188012 405.9114453485518 2923.492236381203 2685.713434856329 406.0085024210099</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID2224\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2222\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID2225\">0.8744800299002573 -0.4850615025365601 0.0001267383910096412 0.8744800299002573 -0.4850615025365601 0.0001267383910096412 0.8744800299002573 -0.4850615025365601 0.0001267383910096412 0.8744800299002573 -0.4850615025365601 0.0001267383910096412 -0.8744800299002573 0.4850615025365601 -0.0001267383910096412 -0.8744800299002573 0.4850615025365601 -0.0001267383910096412 -0.8744800299002573 0.4850615025365601 -0.0001267383910096412 -0.8744800299002573 0.4850615025365601 -0.0001267383910096412 0.8744800229182997 -0.4850615109626527 0.0001417724889686963 0.8744800229182997 -0.4850615109626527 0.0001417724889686963 0.8744800229182997 -0.4850615109626527 0.0001417724889686963 -0.8744800229182997 0.4850615109626527 -0.0001417724889686963 -0.8744800229182997 0.4850615109626527 -0.0001417724889686963 -0.8744800229182997 0.4850615109626527 -0.0001417724889686963 0.8744800523038194 -0.485061474287222 6.546003508239901e-005 0.8744800523038194 -0.485061474287222 6.546003508239901e-005 0.8744800523038194 -0.485061474287222 6.546003508239901e-005 -0.8744800523038194 0.485061474287222 -6.546003508239901e-005 -0.8744800523038194 0.485061474287222 -6.546003508239901e-005 -0.8744800523038194 0.485061474287222 -6.546003508239901e-005 0.8744800493186143 -0.4850614754324546 9.162425434713641e-005 0.8744800493186143 -0.4850614754324546 9.162425434713641e-005 0.8744800493186143 -0.4850614754324546 9.162425434713641e-005 0.8744800493186143 -0.4850614754324546 9.162425434713641e-005 -0.8744800493186143 0.4850614754324546 -9.162425434713641e-005 -0.8744800493186143 0.4850614754324546 -9.162425434713641e-005 -0.8744800493186143 0.4850614754324546 -9.162425434713641e-005 -0.8744800493186143 0.4850614754324546 -9.162425434713641e-005 0.8744817348208337 -0.48505843779694 8.594613112158486e-005 0.8744817348208337 -0.48505843779694 8.594613112158486e-005 0.8744817348208337 -0.48505843779694 8.594613112158486e-005 -0.8744817348208337 0.48505843779694 -8.594613112158486e-005 -0.8744817348208337 0.48505843779694 -8.594613112158486e-005 -0.8744817348208337 0.48505843779694 -8.594613112158486e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID2225\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2223\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2221\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2222\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2223\" />\r\n\t\t\t\t\t<p>0 1 2 0 3 1 8 9 10 14 15 16 20 21 22 21 20 23 28 29 30</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2223\" />\r\n\t\t\t\t\t<p>4 5 6 7 4 6 11 12 13 17 18 19 24 25 26 27 26 25 31 32 33</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2226\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2227\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2230\">5359.679101415102 648.2923900519659 405.9114490532149 5022.862519167484 41.01208683730602 405.9114526393838 5022.85881469887 41.01816168422465 405.9114526484622 5022.85881469887 41.01816168422465 405.9114526484622 5022.862519167484 41.01208683730602 405.9114526393838 5359.679101415102 648.2923900519659 405.9114490532149</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2230\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2228\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2231\">-1.288407728886127e-006 7.086757252952245e-007 -0.999999999998919 -1.288407728886127e-006 7.086757252952245e-007 -0.999999999998919 -1.288407728886127e-006 7.086757252952245e-007 -0.999999999998919 1.288407728886127e-006 -7.086757252952245e-007 0.999999999998919 1.288407728886127e-006 -7.086757252952245e-007 0.999999999998919 1.288407728886127e-006 -7.086757252952245e-007 0.999999999998919</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2231\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2229\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2227\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2228\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2229\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2229\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2232\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2233\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2236\">1413.553360449541 2083.914407633863 338.0323802345448 1413.566119887763 2083.893719005013 288.6163998718079 1413.566074732809 2083.893693480588 338.0323802353575 1413.566074732809 2083.893693480588 338.0323802353575 1413.566119887763 2083.893719005013 288.6163998718079 1413.553360449541 2083.914407633863 338.0323802345448 1413.553360449541 2083.914407633863 338.0323802345448 1413.566074690318 2083.893687760452 195.4863095446688 1413.566119887763 2083.893719005013 288.6163998718079 1413.566119887763 2083.893719005013 288.6163998718079 1413.566074690318 2083.893687760452 195.4863095446688 1413.553360449541 2083.914407633863 338.0323802345448</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2236\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2234\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2237\">-0.8522617284356803 -0.5231156146041968 -1.048973900025099e-006 -0.8522617284356803 -0.5231156146041968 -1.048973900025099e-006 -0.8522617284356803 -0.5231156146041968 -1.048973900025099e-006 0.8522617284356803 0.5231156146041968 1.048973900025099e-006 0.8522617284356803 0.5231156146041968 1.048973900025099e-006 0.8522617284356803 0.5231156146041968 1.048973900025099e-006 -0.8505147870702968 -0.5259511355386739 5.892214787184527e-007 -0.8505147870702968 -0.5259511355386739 5.892214787184527e-007 -0.8505147870702968 -0.5259511355386739 5.892214787184527e-007 0.8505147870702968 0.5259511355386739 -5.892214787184527e-007 0.8505147870702968 0.5259511355386739 -5.892214787184527e-007 0.8505147870702968 0.5259511355386739 -5.892214787184527e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2237\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2235\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2233\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2234\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2235\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2235\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2238\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2239\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2242\">349.5055043918837 3211.236405122294 395.0507626096494 20.90735932221151 2618.831980981521 405.9110062228954 20.90730012473819 2618.831953706195 395.0507661167238 349.5055382306409 3211.236386727173 405.9114329039248 349.5055382306409 3211.236386727173 405.9114329039248 349.5055043918837 3211.236405122294 395.0507626096494 20.90735932221151 2618.831980981521 405.9110062228954 20.90730012473819 2618.831953706195 395.0507661167238</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2242\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2240\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2243\">0.8744800554148126 -0.4850614730826631 -3.547313047267821e-006 0.8744800554148126 -0.4850614730826631 -3.547313047267821e-006 0.8744800554148126 -0.4850614730826631 -3.547313047267821e-006 0.8744800554148126 -0.4850614730826631 -3.547313047267821e-006 -0.8744800554148126 0.4850614730826631 3.547313047267821e-006 -0.8744800554148126 0.4850614730826631 3.547313047267821e-006 -0.8744800554148126 0.4850614730826631 3.547313047267821e-006 -0.8744800554148126 0.4850614730826631 3.547313047267821e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2243\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2241\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2239\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2240\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2241\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2241\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2244\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2245\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID2248\">2490.81252812381 3334.553840073727 388.9416746720838 2494.444244997618 3313.687582216334 388.9416747599851 2482.028390194419 3334.047963278018 388.9416746950004 2494.439328389071 3313.715830900168 388.9416747598694 2494.439328389071 3313.715830900168 388.9416747598694 2490.81252812381 3334.553840073727 388.9416746720838 2494.444244997618 3313.687582216334 388.9416747599851 2482.028390194419 3334.047963278018 388.9416746950004 2482.028439281092 3334.04796695623 393.3532287516987 2494.444244997618 3313.687582216334 388.9416747599851 2494.444029635054 3313.68723482417 390.2746677240152 2482.028390194419 3334.047963278018 388.9416746950004 2482.028390194419 3334.047963278018 388.9416746950004 2482.028439281092 3334.04796695623 393.3532287516987 2494.444244997618 3313.687582216334 388.9416747599851 2494.444029635054 3313.68723482417 390.2746677240152 2482.028389167409 3334.047963938367 405.9121361395115 2494.444029635054 3313.68723482417 390.2746677240152 2494.443842997757 3313.686980116255 405.9114434515613 2482.028439281092 3334.04796695623 393.3532287516987 2482.028439281092 3334.04796695623 393.3532287516987 2482.028389167409 3334.047963938367 405.9121361395115 2494.444029635054 3313.68723482417 390.2746677240152 2494.443842997757 3313.686980116255 405.9114434515613</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID2248\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2246\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID2249\">-2.343172094285221e-009 -4.620567201204726e-009 -1 -2.343172094285221e-009 -4.620567201204726e-009 -1 -2.343172094285221e-009 -4.620567201204726e-009 -1 -2.343172094285221e-009 -4.620567201204726e-009 -1 2.343172094285221e-009 4.620567201204726e-009 1 2.343172094285221e-009 4.620567201204726e-009 1 2.343172094285221e-009 4.620567201204726e-009 1 2.343172094285221e-009 4.620567201204726e-009 1 -0.8537826774125463 -0.5206295607820649 -1.378905565589433e-005 -0.8537826774125463 -0.5206295607820649 -1.378905565589433e-005 -0.8537826774125463 -0.5206295607820649 -1.378905565589433e-005 -0.8537826774125463 -0.5206295607820649 -1.378905565589433e-005 0.8537826774125463 0.5206295607820649 1.378905565589433e-005 0.8537826774125463 0.5206295607820649 1.378905565589433e-005 0.8537826774125463 0.5206295607820649 1.378905565589433e-005 0.8537826774125463 0.5206295607820649 1.378905565589433e-005 -0.8537898044410344 -0.5206178729839859 -1.273463039700428e-005 -0.8537898044410344 -0.5206178729839859 -1.273463039700428e-005 -0.8537898044410344 -0.5206178729839859 -1.273463039700428e-005 -0.8537898044410344 -0.5206178729839859 -1.273463039700428e-005 0.8537898044410344 0.5206178729839859 1.273463039700428e-005 0.8537898044410344 0.5206178729839859 1.273463039700428e-005 0.8537898044410344 0.5206178729839859 1.273463039700428e-005 0.8537898044410344 0.5206178729839859 1.273463039700428e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID2249\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2247\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2245\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2246\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2247\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2247\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2250\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2251\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2254\">1036.022160979286 3268.026285233766 405.8768572819922 2516.406250050311 3353.281316094245 405.9114432173039 2516.406252625832 3353.281319802924 405.8035843871168 1022.949775327234 3267.273449063076 405.8775043110587 344.8689278103946 3228.222903720177 405.9110665108598 344.8689278103946 3228.222903720177 405.9110665108598 1022.949775327234 3267.273449063076 405.8775043110587 2516.406250050311 3353.281316094245 405.9114432173039 1036.022160979286 3268.026285233766 405.8768572819922 2516.406252625832 3353.281319802924 405.8035843871168</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2254\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2252\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2255\">-0.05749454177004868 0.9983458201348 3.295490954042081e-005 -0.05749454177004868 0.9983458201348 3.295490954042081e-005 -0.05749454177004868 0.9983458201348 3.295490954042081e-005 -0.05749454177004868 0.9983458201348 3.295490954042081e-005 -0.05749454177004868 0.9983458201348 3.295490954042081e-005 0.05749454177004868 -0.9983458201348 -3.295490954042081e-005 0.05749454177004868 -0.9983458201348 -3.295490954042081e-005 0.05749454177004868 -0.9983458201348 -3.295490954042081e-005 0.05749454177004868 -0.9983458201348 -3.295490954042081e-005 0.05749454177004868 -0.9983458201348 -3.295490954042081e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2255\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2253\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2251\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2252\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2253\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2253\" />\r\n\t\t\t\t\t<p>5 6 7 6 8 7 9 7 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2256\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2262\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2266\">4154.84621446215 2416.562803581162 338.0323706665392 4054.465024881499 2410.773481184892 338.0323731477569 4154.84107421515 2416.571124966541 338.0323723954701 4154.84107421515 2416.571124966541 338.0323723954701 4054.465024881499 2410.773481184892 338.0323731477569 4154.84621446215 2416.562803581162 338.0323706665392</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2266\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2263\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2267\">-1.159440657015401e-005 0.0002006070883596917 -0.9999999798111827 -1.159440657015401e-005 0.0002006070883596917 -0.9999999798111827 -1.159440657015401e-005 0.0002006070883596917 -0.9999999798111827 1.159440657015401e-005 -0.0002006070883596917 0.9999999798111827 1.159440657015401e-005 -0.0002006070883596917 0.9999999798111827 1.159440657015401e-005 -0.0002006070883596917 0.9999999798111827</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2267\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2265\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2268\">-1055.329942904108 806.9133018434527 -1029.833120752329 804.9802462121937 -1055.328637281365 806.9160803553003</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2268\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2264\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2262\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2263\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2264\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2265\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2264\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2269\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2270\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID2273\">2879.080914868736 2682.933437254983 388.9497556467455 2878.9497097503 2683.148814910794 388.9416767723884 2879.082997074284 2682.930019279519 388.94167692629 2878.949709733614 2683.148814909252 388.9498501166804 2878.949709733614 2683.148814909252 388.9498501166804 2879.080914868736 2682.933437254983 388.9497556467455 2878.9497097503 2683.148814910794 388.9416767723884 2879.082997074284 2682.930019279519 388.94167692629 2878.949675095008 2683.148811734678 405.9114454647879 2890.246133655239 2664.605360573045 395.0516911105828 2890.246127410379 2664.605349849145 405.9114585078729 2879.097734911959 2682.905826630482 388.9497435119318 2879.088307946108 2682.921301297423 388.9497503189661 2879.080914868736 2682.933437254983 388.9497556467455 2878.949709733614 2683.148814909252 388.9498501166804 2879.082997074284 2682.930019279519 388.94167692629 2890.246162065695 2664.605353025277 388.9416898154789 2879.097734911959 2682.905826630482 388.9497435119318 2890.246133655239 2664.605360573045 395.0516911105828 2879.082997074284 2682.930019279519 388.94167692629 2890.246162065695 2664.605353025277 388.9416898154789 2878.949709733614 2683.148814909252 388.9498501166804 2878.949675095008 2683.148811734678 405.9114454647879 2879.080914868736 2682.933437254983 388.9497556467455 2879.088307946108 2682.921301297423 388.9497503189661 2890.246127410379 2664.605349849145 405.9114585078729</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID2273\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2271\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID2274\">-0.8540123622568706 -0.5202527127351073 -2.049815709143522e-006 -0.8540123622568706 -0.5202527127351073 -2.049815709143522e-006 -0.8540123622568706 -0.5202527127351073 -2.049815709143522e-006 -0.8540123622568706 -0.5202527127351073 -2.049815709143522e-006 0.8540123622568706 0.5202527127351073 2.049815709143522e-006 0.8540123622568706 0.5202527127351073 2.049815709143522e-006 0.8540123622568706 0.5202527127351073 2.049815709143522e-006 0.8540123622568706 0.5202527127351073 2.049815709143522e-006 -0.8540118711518451 -0.5202535189006359 -1.797280102058284e-006 -0.8540118711518451 -0.5202535189006359 -1.797280102058284e-006 -0.8540118711518451 -0.5202535189006359 -1.797280102058284e-006 -0.8540118711518451 -0.5202535189006359 -1.797280102058284e-006 -0.8540118711518451 -0.5202535189006359 -1.797280102058284e-006 -0.8540118711518451 -0.5202535189006359 -1.797280102058284e-006 -0.8540118711518451 -0.5202535189006359 -1.797280102058284e-006 -0.8540118711518451 -0.5202535189006359 -1.797280102058284e-006 -0.8540118711518451 -0.5202535189006359 -1.797280102058284e-006 0.8540118711518451 0.5202535189006359 1.797280102058284e-006 0.8540118711518451 0.5202535189006359 1.797280102058284e-006 0.8540118711518451 0.5202535189006359 1.797280102058284e-006 0.8540118711518451 0.5202535189006359 1.797280102058284e-006 0.8540118711518451 0.5202535189006359 1.797280102058284e-006 0.8540118711518451 0.5202535189006359 1.797280102058284e-006 0.8540118711518451 0.5202535189006359 1.797280102058284e-006 0.8540118711518451 0.5202535189006359 1.797280102058284e-006 0.8540118711518451 0.5202535189006359 1.797280102058284e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID2274\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2272\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2270\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2271\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2272\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 11 8 12 12 8 13 13 8 14 9 15 16 15 9 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2272\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 17 18 19 20 19 18 21 22 23 23 22 24 24 22 17 17 22 18 25 18 22</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2275\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2276\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2279\">5250.769098389403 642.3561870933693 338.0323115398472 5250.811228098843 642.3331883315773 338.0323115351421 5109.199784551324 387.0822838424167 338.0323179508868 5250.796248647826 642.3577518665259 338.0323115422027 5250.796248647826 642.3577518665259 338.0323115422027 5250.769098389403 642.3561870933693 338.0323115398472 5250.811228098843 642.3331883315773 338.0323115351421 5109.199784551324 387.0822838424167 338.0323179508868</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2279\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2277\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2280\">-9.87152566590474e-008 2.963755211518246e-008 -0.9999999999999947 -9.87152566590474e-008 2.963755211518246e-008 -0.9999999999999947 -9.87152566590474e-008 2.963755211518246e-008 -0.9999999999999947 -9.87152566590474e-008 2.963755211518246e-008 -0.9999999999999947 9.87152566590474e-008 -2.963755211518246e-008 0.9999999999999947 9.87152566590474e-008 -2.963755211518246e-008 0.9999999999999947 9.87152566590474e-008 -2.963755211518246e-008 0.9999999999999947 9.87152566590474e-008 -2.963755211518246e-008 0.9999999999999947</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2280\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2278\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2276\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2277\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2278\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2278\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2281\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2282\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2286\">4358.720693917965 96.95203640377326 338.0323791874615 4358.715400574183 96.95173359313617 338.0323489041922 4358.720693558864 96.95203569884552 185.6701037829983 4358.720693558864 96.95203569884552 185.6701037829983 4358.715400574183 96.95173359313617 338.0323489041922 4358.720693917965 96.95203640377326 338.0323791874615</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2286\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2283\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2287\">0.05711255125206156 -0.9983677461183734 4.484525664173993e-009 0.05711255125206156 -0.9983677461183734 4.484525664173993e-009 0.05711255125206156 -0.9983677461183734 4.484525664173993e-009 -0.05711255125206156 0.9983677461183734 -4.484525664173993e-009 -0.05711255125206156 0.9983677461183734 -4.484525664173993e-009 -0.05711255125206156 0.9983677461183734 -4.484525664173993e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2287\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2285\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2288\">1106.714406656802 112.8690604776427 1106.713059949312 112.8690503660547 1106.714406555512 61.99527450132484</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2288\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2284\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2282\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2283\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2284\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2285\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2284\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2289\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2290\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID2294\">4967.52415068356 131.7156711373125 338.0323243695191 4358.720693558864 96.95203569884552 185.6701037829983 4967.524144570914 131.7156706561973 185.6700792485396 4967.514199298177 131.7151028975322 338.0323243704122 4358.720693917965 96.95203640377326 338.0323791874615 4358.720693917965 96.95203640377326 338.0323791874615 4967.514199298177 131.7151028975322 338.0323243704122 4358.720693558864 96.95203569884552 185.6701037829983 4967.52415068356 131.7156711373125 338.0323243695191 4967.524144570914 131.7156706561973 185.6700792485396 4358.720693917965 96.95203640377326 338.0323791874615 3882.023169391146 878.6764758156046 185.6701101547849 4358.720693558864 96.95203569884552 185.6701037829983 4351.137374882463 109.3886949899438 338.0323791476419 3882.038893723747 878.6507095747234 338.032376692661 3882.035107629937 878.6569182884164 338.0323766926427 3882.027923021987 878.6687001342398 338.0323766926064 3882.023177918635 878.6764815019399 338.0323766925799 3882.023177918635 878.6764815019399 338.0323766925799 3882.027923021987 878.6687001342398 338.0323766926064 3882.023169391146 878.6764758156046 185.6701101547849 3882.035107629937 878.6569182884164 338.0323766926427 3882.038893723747 878.6507095747234 338.032376692661 4351.137374882463 109.3886949899438 338.0323791476419 4358.720693917965 96.95203640377326 338.0323791874615 4358.720693558864 96.95203569884552 185.6701037829983</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID2294\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2291\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID2295\">0.05700870754035261 -0.9983736811758305 2.416519189829894e-009 0.05700870754035261 -0.9983736811758305 2.416519189829894e-009 0.05700870754035261 -0.9983736811758305 2.416519189829894e-009 0.05700870754035261 -0.9983736811758305 2.416519189829894e-009 0.05700870754035261 -0.9983736811758305 2.416519189829894e-009 -0.05700870754035261 0.9983736811758305 -2.416519189829894e-009 -0.05700870754035261 0.9983736811758305 -2.416519189829894e-009 -0.05700870754035261 0.9983736811758305 -2.416519189829894e-009 -0.05700870754035261 0.9983736811758305 -2.416519189829894e-009 -0.05700870754035261 0.9983736811758305 -2.416519189829894e-009 -0.8537784639199967 -0.5206364706258984 7.8700034459625e-007 -0.8537784639199967 -0.5206364706258984 7.8700034459625e-007 -0.8537784639199967 -0.5206364706258984 7.8700034459625e-007 -0.8537784639199967 -0.5206364706258984 7.8700034459625e-007 -0.8537784639199967 -0.5206364706258984 7.8700034459625e-007 -0.8537784639199967 -0.5206364706258984 7.8700034459625e-007 -0.8537784639199967 -0.5206364706258984 7.8700034459625e-007 -0.8537784639199967 -0.5206364706258984 7.8700034459625e-007 0.8537784639199967 0.5206364706258984 -7.8700034459625e-007 0.8537784639199967 0.5206364706258984 -7.8700034459625e-007 0.8537784639199967 0.5206364706258984 -7.8700034459625e-007 0.8537784639199967 0.5206364706258984 -7.8700034459625e-007 0.8537784639199967 0.5206364706258984 -7.8700034459625e-007 0.8537784639199967 0.5206364706258984 -7.8700034459625e-007 0.8537784639199967 0.5206364706258984 -7.8700034459625e-007 0.8537784639199967 0.5206364706258984 -7.8700034459625e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID2295\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2293\">\r\n\t\t\t\t\t<float_array count=\"26\" id=\"ID2296\">29.44755384072754 0.9995997266905428 25.05852945375217 -0.003012704121075904 29.44754776892048 -0.00303492220046464 29.44748209866918 0.9995997270569537 25.0585354843083 0.9996221440535638 25.02049073330112 0.9981044825128205 18.9493425207078 -0.002269943474456415 25.02048450467407 -0.003008130102677864 24.9239053724377 0.998116225345659 18.9495489030868 0.9988425865470352 18.949500684056 0.9988425924095061 18.94940918214183 0.9988426035343014 18.94934874933278 0.998842610881701</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"13\" source=\"#ID2296\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2292\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2290\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2291\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2292\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2293\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 10 5 11 6 12 7 11 6 10 5 13 8 11 6 13 8 14 9 11 6 14 9 15 10 11 6 15 10 16 11 11 6 16 11 17 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2292\" />\r\n\t\t\t\t\t<p>5 6 7 6 8 7 9 7 8 18 19 20 19 21 20 21 22 20 22 23 20 23 24 20 25 20 24</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2297\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2298\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2301\">3882.047515012016 878.6512046018779 338.0323766848914 4351.137374882463 109.3886949899438 338.0323791476419 3882.038893723747 878.6507095747234 338.032376692661 4273.459068598865 236.7812747131118 338.0323787397662 4273.459068598865 236.7812747131118 338.0323787397662 3882.047515012016 878.6512046018779 338.0323766848914 4351.137374882463 109.3886949899438 338.0323791476419 3882.038893723747 878.6507095747234 338.032376692661</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2301\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2299\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2302\">-6.493102494846554e-007 -3.991447061815745e-007 -0.9999999999997097 -6.493102494846554e-007 -3.991447061815745e-007 -0.9999999999997097 -6.493102494846554e-007 -3.991447061815745e-007 -0.9999999999997097 -6.493102494846554e-007 -3.991447061815745e-007 -0.9999999999997097 6.493102494846554e-007 3.991447061815745e-007 0.9999999999997097 6.493102494846554e-007 3.991447061815745e-007 0.9999999999997097 6.493102494846554e-007 3.991447061815745e-007 0.9999999999997097 6.493102494846554e-007 3.991447061815745e-007 0.9999999999997097</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2302\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2300\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2298\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2299\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2300\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2300\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2303\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2304\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2308\">3882.035107629937 878.6569182884164 338.0323766926427 3882.027923021987 878.6687001342398 338.0323766926064 3772.908732637898 872.3845471649372 338.0323769696319 3772.908732637898 872.3845471649372 338.0323769696319 3882.027923021987 878.6687001342398 338.0323766926064 3882.035107629937 878.6569182884164 338.0323766926427</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2308\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2305\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2309\">2.2689830509251e-009 4.684478906532728e-009 1 2.2689830509251e-009 4.684478906532728e-009 1 2.2689830509251e-009 4.684478906532728e-009 1 -2.2689830509251e-009 -4.684478906532728e-009 -1 -2.2689830509251e-009 -4.684478906532728e-009 -1 -2.2689830509251e-009 -4.684478906532728e-009 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2309\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2307\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2310\">986.0369171431887 293.3836726210218 986.0350922527692 293.3876065810604 958.3188178952107 291.2893269882014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2310\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2306\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2304\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2305\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2306\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2307\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2306\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2311\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2312\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2315\">4967.550834133997 131.7255267271528 338.0323775924849 4967.514199298177 131.7151028975322 338.0323243704122 4358.720693917965 96.95203640377326 338.0323791874615 4358.720693917965 96.95203640377326 338.0323791874615 4967.514199298177 131.7151028975322 338.0323243704122 4967.550834133997 131.7255267271528 338.0323775924849</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2315\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2313\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2316\">-0.0003648546266243198 0.006387995468281157 -0.9999795299879887 -0.0003648546266243198 0.006387995468281157 -0.9999795299879887 -0.0003648546266243198 0.006387995468281157 -0.9999795299879887 0.0003648546266243198 -0.006387995468281157 0.9999795299879887 0.0003648546266243198 -0.006387995468281157 0.9999795299879887 0.0003648546266243198 -0.006387995468281157 0.9999795299879887</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2316\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2314\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2312\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2313\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2314\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2314\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2317\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2318\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID2321\">3852.122605770865 876.9322760693979 338.0323774217674 3772.910162522207 872.3822023192097 338.0323793523106 3772.909447582131 872.3833747386479 338.0323781609685 3772.909447582131 872.3833747386479 338.0323781609685 3772.910162522207 872.3822023192097 338.0323793523106 3852.122605770865 876.9322760693979 338.0323774217674 3852.122605770865 876.9322760693979 338.0323774217674 3772.909447582131 872.3833747386479 338.0323781609685 3772.908732637898 872.3845471649372 338.0323769696319 3772.908732637898 872.3845471649372 338.0323769696319 3772.909447582131 872.3833747386479 338.0323781609685 3852.122605770865 876.9322760693979 338.0323774217674 3882.035107629937 878.6569182884164 338.0323766926427 3852.122605770865 876.9322760693979 338.0323774217674 3772.908732637898 872.3845471649372 338.0323769696319 3882.038893723747 878.6507095747234 338.032376692661 3882.038893723747 878.6507095747234 338.032376692661 3882.035107629937 878.6569182884164 338.0323766926427 3852.122605770865 876.9322760693979 338.0323774217674 3772.908732637898 872.3845471649372 338.0323769696319 3852.122605770865 876.9322760693979 338.0323774217674 3772.909447582131 872.3833747386479 338.0323781609685 3772.908732637898 872.3845471649372 338.0323769696319 3772.910162522207 872.3822023192097 338.0323793523106 3772.910162522207 872.3822023192097 338.0323793523106 3852.122605770865 876.9322760693979 338.0323774217674 3772.909447582131 872.3833747386479 338.0323781609685 3772.908732637898 872.3845471649372 338.0323769696319</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID2321\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2319\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID2322\">5.636949146024064e-005 -0.0009817633565273745 -0.9999995164814793 5.636949146024064e-005 -0.0009817633565273745 -0.9999995164814793 5.636949146024064e-005 -0.0009817633565273745 -0.9999995164814793 -5.636949146024064e-005 0.0009817633565273745 0.9999995164814793 -5.636949146024064e-005 0.0009817633565273745 0.9999995164814793 -5.636949146024064e-005 0.0009817633565273745 0.9999995164814793 5.636900302269287e-005 -0.0009817548507649457 -0.9999995164898574 5.636900302269287e-005 -0.0009817548507649457 -0.9999995164898574 5.636900302269287e-005 -0.0009817548507649457 -0.9999995164898574 -5.636900302269287e-005 0.0009817548507649457 0.9999995164898574 -5.636900302269287e-005 0.0009817548507649457 0.9999995164898574 -5.636900302269287e-005 0.0009817548507649457 0.9999995164898574 3.069193216322796e-006 -5.346399094455939e-005 -0.9999999985660909 3.069193216322796e-006 -5.346399094455939e-005 -0.9999999985660909 3.069193216322796e-006 -5.346399094455939e-005 -0.9999999985660909 3.069193216322796e-006 -5.346399094455939e-005 -0.9999999985660909 -3.069193216322796e-006 5.346399094455939e-005 0.9999999985660909 -3.069193216322796e-006 5.346399094455939e-005 0.9999999985660909 -3.069193216322796e-006 5.346399094455939e-005 0.9999999985660909 -3.069193216322796e-006 5.346399094455939e-005 0.9999999985660909 5.636924955465261e-005 -0.000981759146201346 -0.9999995164856264 5.636924955465261e-005 -0.000981759146201346 -0.9999995164856264 5.636924955465261e-005 -0.000981759146201346 -0.9999995164856264 5.636924955465261e-005 -0.000981759146201346 -0.9999995164856264 -5.636924955465261e-005 0.000981759146201346 0.9999995164856264 -5.636924955465261e-005 0.000981759146201346 0.9999995164856264 -5.636924955465261e-005 0.000981759146201346 0.9999995164856264 -5.636924955465261e-005 0.000981759146201346 0.9999995164856264</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID2322\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2320\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2318\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2319\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2320\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8 12 13 14 13 12 15 20 21 22 21 20 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2320\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 16 17 18 19 18 17 24 25 26 27 26 25</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2323\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2324\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID2327\">4194.55049074089 2363.284881367811 338.0323368100262 4187.991904297793 2362.904281387289 338.03236911021 4187.988451426956 2362.909871132092 338.0323375267424 4187.988451426956 2362.909871132092 338.0323375267424 4187.991904297793 2362.904281387289 338.03236911021 4194.55049074089 2363.284881367811 338.0323368100262 4201.103928679747 2363.659400323358 338.0323690760098 4187.991904297793 2362.904281387289 338.03236911021 4194.55049074089 2363.284881367811 338.0323368100262 4194.55049074089 2363.284881367811 338.0323368100262 4187.991904297793 2362.904281387289 338.03236911021 4201.103928679747 2363.659400323358 338.0323690760098 4201.103928679747 2363.659400323358 338.0323690760098 4194.55049074089 2363.284881367811 338.0323368100262 4201.099673595543 2363.664935650623 338.0323045561552 4201.099673595543 2363.664935650623 338.0323045561552 4194.55049074089 2363.284881367811 338.0323368100262 4201.103928679747 2363.659400323358 338.0323690760098</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID2327\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2325\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID2328\">0.0003117826261634629 -0.005457575174839967 -0.9999850587207817 0.0003117826261634629 -0.005457575174839967 -0.9999850587207817 0.0003117826261634629 -0.005457575174839967 -0.9999850587207817 -0.0003117826261634629 0.005457575174839967 0.9999850587207817 -0.0003117826261634629 0.005457575174839967 0.9999850587207817 -0.0003117826261634629 0.005457575174839967 0.9999850587207817 0.0006427676016314514 -0.01116118039847678 -0.9999375054981802 0.0006427676016314514 -0.01116118039847678 -0.9999375054981802 0.0006427676016314514 -0.01116118039847678 -0.9999375054981802 -0.0006427676016314514 0.01116118039847678 0.9999375054981802 -0.0006427676016314514 0.01116118039847678 0.9999375054981802 -0.0006427676016314514 0.01116118039847678 0.9999375054981802 0.0006427676014581974 -0.01116118039546818 -0.9999375054982139 0.0006427676014581974 -0.01116118039546818 -0.9999375054982139 0.0006427676014581974 -0.01116118039546818 -0.9999375054982139 -0.0006427676014581974 0.01116118039546818 0.9999375054982139 -0.0006427676014581974 0.01116118039546818 0.9999375054982139 -0.0006427676014581974 0.01116118039546818 0.9999375054982139</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID2328\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2326\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2324\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2325\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2326\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8 12 13 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2326\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 15 16 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2329\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2330\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2334\">2869.68434643225 2588.707307731798 405.9114459219671 2869.690662099219 2588.714941096471 195.4863141465573 2869.689329635918 2588.714774638522 195.4863141465743 2869.689329635918 2588.714774638522 195.4863141465743 2869.690662099219 2588.714941096471 195.4863141465573 2869.68434643225 2588.707307731798 405.9114459219671</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2334\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2331\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2335\">-0.1239614320569514 0.9922870362554768 3.227556333166759e-005 -0.1239614320569514 0.9922870362554768 3.227556333166759e-005 -0.1239614320569514 0.9922870362554768 3.227556333166759e-005 0.1239614320569514 -0.9922870362554768 -3.227556333166759e-005 0.1239614320569514 -0.9922870362554768 -3.227556333166759e-005 0.1239614320569514 -0.9922870362554768 -3.227556333166759e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2335\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2333\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2336\">-804.7864122179691 135.5100417105622 -804.7882443700777 65.24905948816804 -804.7879032936894 65.24905948817373</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2336\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2332\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2330\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2331\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2332\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2333\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2332\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2337\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2343\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2347\">1413.553360449541 2083.914407633863 338.0323802345448 1413.566074690318 2083.893687760452 195.4863095446688 1413.566119887763 2083.893719005013 288.6163998718079 1413.566119887763 2083.893719005013 288.6163998718079 1413.566074690318 2083.893687760452 195.4863095446688 1413.553360449541 2083.914407633863 338.0323802345448</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2347\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2344\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2348\">-0.8505147872268184 -0.5259511352855635 5.892213539584416e-007 -0.8505147872268184 -0.5259511352855635 5.892213539584416e-007 -0.8505147872268184 -0.5259511352855635 5.892213539584416e-007 0.8505147872268184 0.5259511352855635 -5.892213539584416e-007 0.8505147872268184 0.5259511352855635 -5.892213539584416e-007 0.8505147872268184 0.5259511352855635 -5.892213539584416e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2348\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2346\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2349\">-2656.5713268998 262.3774487324232 -2656.55913173515 263.9116845013753 -2656.567142111732 262.9093163592082</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2349\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2345\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2343\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2344\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2345\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2346\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2345\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2350\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2351\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID2355\">3772.9012297665 872.3915264759544 482.9273228438767 3772.90121750178 872.391526854492 474.8766152221235 3772.906328662433 872.3918609700195 474.8766152223357 3772.906328662433 872.3918609700195 474.8766152223357 3772.90121750178 872.391526854492 474.8766152221235 3772.9012297665 872.3915264759544 482.9273228438767 3772.906330634917 872.3918438586645 440.2539488481082 3772.901161900475 872.391529071248 405.9114517450242 3772.903747246307 872.3916779785343 405.911451664234 3772.901198137903 872.3915313990142 406.3951440010765 3772.90121750178 872.391526854492 474.8766152221235 3772.906328662433 872.3918609700195 474.8766152223357 3772.906328662433 872.3918609700195 474.8766152223357 3772.906330634917 872.3918438586645 440.2539488481082 3772.90121750178 872.391526854492 474.8766152221235 3772.901198137903 872.3915313990142 406.3951440010765 3772.901161900475 872.391529071248 405.9114517450242 3772.903747246307 872.3916779785343 405.911451664234 3772.906328662433 872.3918609700195 474.8766152223357 3772.90121750178 872.391526854492 474.8766152221235 3772.901198137903 872.3915313990142 406.3951440010765 3772.901198137903 872.3915313990142 406.3951440010765 3772.90121750178 872.391526854492 474.8766152221235 3772.906328662433 872.3918609700195 474.8766152223357 3772.906268930494 872.3917736167371 507.9124940623225 3772.9012297665 872.3915264759544 482.9273228438767 3772.906328662433 872.3918609700195 474.8766152223357 3772.901233146265 872.3915210112368 482.9589974873815 3772.901233146265 872.3915210112368 482.9589974873815 3772.906268930494 872.3917736167371 507.9124940623225 3772.9012297665 872.3915264759544 482.9273228438767 3772.906328662433 872.3918609700195 474.8766152223357 3772.906330634917 872.3918438586645 440.2539488481082 3772.903747246307 872.3916779785343 405.911451664234 3772.906332591454 872.3918268857908 405.9114515834424 3772.906332591454 872.3918268857908 405.9114515834424 3772.903747246307 872.3916779785343 405.911451664234 3772.906330634917 872.3918438586645 440.2539488481082 3772.906330634917 872.3918438586645 440.2539488481082 3772.901161900475 872.391529071248 405.9114517450242 3772.903747246307 872.3916779785343 405.911451664234 3772.901198137903 872.3915313990142 406.3951440010765 3772.906328662433 872.3918609700195 474.8766152223357 3772.906328662433 872.3918609700195 474.8766152223357 3772.906330634917 872.3918438586645 440.2539488481082 3772.901198137903 872.3915313990142 406.3951440010765 3772.901161900475 872.391529071248 405.9114517450242 3772.903747246307 872.3916779785343 405.911451664234 3772.906268930494 872.3917736167371 507.9124940623225 3772.901267829738 872.391525301171 507.912472156188 3772.901233146265 872.3915210112368 482.9589974873815 3772.901233146265 872.3915210112368 482.9589974873815 3772.901267829738 872.391525301171 507.912472156188 3772.906268930494 872.3917736167371 507.9124940623225</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID2355\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2352\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID2356\">0.06523057375540657 -0.9978702181383705 -1.462936089603815e-007 0.06523057375540657 -0.9978702181383705 -1.462936089603815e-007 0.06523057375540657 -0.9978702181383705 -1.462936089603815e-007 -0.06523057375540657 0.9978702181383705 1.462936089603815e-007 -0.06523057375540657 0.9978702181383705 1.462936089603815e-007 -0.06523057375540657 0.9978702181383705 1.462936089603815e-007 0.06223411373112315 -0.9980615788056841 8.255643472096225e-008 0.06223411373112315 -0.9980615788056841 8.255643472096225e-008 0.06223411373112315 -0.9980615788056841 8.255643472096225e-008 0.06223411373112315 -0.9980615788056841 8.255643472096225e-008 0.06223411373112315 -0.9980615788056841 8.255643472096225e-008 0.06223411373112315 -0.9980615788056841 8.255643472096225e-008 -0.06223411373112315 0.9980615788056841 -8.255643472096225e-008 -0.06223411373112315 0.9980615788056841 -8.255643472096225e-008 -0.06223411373112315 0.9980615788056841 -8.255643472096225e-008 -0.06223411373112315 0.9980615788056841 -8.255643472096225e-008 -0.06223411373112315 0.9980615788056841 -8.255643472096225e-008 -0.06223411373112315 0.9980615788056841 -8.255643472096225e-008 0.06523057375540675 -0.9978702181383776 -8.466492708371114e-008 0.06523057375540675 -0.9978702181383776 -8.466492708371114e-008 0.06523057375540675 -0.9978702181383776 -8.466492708371114e-008 -0.06523057375540675 0.9978702181383776 8.466492708371114e-008 -0.06523057375540675 0.9978702181383776 8.466492708371114e-008 -0.06523057375540675 0.9978702181383776 8.466492708371114e-008 0.06203282022561287 -0.9980741100782401 -2.527094844686763e-006 0.06203282022561287 -0.9980741100782401 -2.527094844686763e-006 0.06203282022561287 -0.9980741100782401 -2.527094844686763e-006 0.06203282022561287 -0.9980741100782401 -2.527094844686763e-006 -0.06203282022561287 0.9980741100782401 2.527094844686763e-006 -0.06203282022561287 0.9980741100782401 2.527094844686763e-006 -0.06203282022561287 0.9980741100782401 2.527094844686763e-006 -0.06203282022561287 0.9980741100782401 2.527094844686763e-006 0.05750137063998487 -0.9983454273818639 4.966818790111578e-007 0.05750137063998487 -0.9983454273818639 4.966818790111578e-007 0.05750137063998487 -0.9983454273818639 4.966818790111578e-007 -0.05750137063998487 0.9983454273818639 -4.966818790111578e-007 -0.05750137063998487 0.9983454273818639 -4.966818790111578e-007 -0.05750137063998487 0.9983454273818639 -4.966818790111578e-007 0.05750136419077848 -0.9983454277533168 4.966823215503922e-007 0.05750136419077848 -0.9983454277533168 4.966823215503922e-007 0.05750136419077848 -0.9983454277533168 4.966823215503922e-007 0.05750136419077848 -0.9983454277533168 4.966823215503922e-007 0.05750136419077848 -0.9983454277533168 4.966823215503922e-007 -0.05750136419077848 0.9983454277533168 -4.966823215503922e-007 -0.05750136419077848 0.9983454277533168 -4.966823215503922e-007 -0.05750136419077848 0.9983454277533168 -4.966823215503922e-007 -0.05750136419077848 0.9983454277533168 -4.966823215503922e-007 -0.05750136419077848 0.9983454277533168 -4.966823215503922e-007 0.04959108948349955 -0.9987696049859692 1.027781928784975e-007 0.04959108948349955 -0.9987696049859692 1.027781928784975e-007 0.04959108948349955 -0.9987696049859692 1.027781928784975e-007 -0.04959108948349955 0.9987696049859692 -1.027781928784975e-007 -0.04959108948349955 0.9987696049859692 -1.027781928784975e-007 -0.04959108948349955 0.9987696049859692 -1.027781928784975e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID2356\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2354\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID2357\">-2651.949941724072 261.8777487888787 -2651.949250803138 261.9643992997611 -2651.949264580391 261.9643990153786 -2651.972012558939 262.3513151280149 -2651.969051419772 262.7209468866474 -2651.96905838523 262.7209467437525 -2651.969093027034 262.7157408601642 -2651.974970033585 261.9786684535042 -2651.974983810776 261.9786681691459 -2651.96528098658 261.9788555285888 -2651.965267209327 261.9788558129714 -2651.959390279439 262.7159282180494 -2651.962444960981 261.6085979559208 -2651.960287207757 261.8775159436337 -2651.959610054383 261.9641661703582 -2651.960289934181 261.8771750263488 -2651.98720777221 262.3510236380371 -2651.98425353797 262.7206552550053 -2651.984260503504 262.7206551121271 -2651.987207792816 262.3510236376408 -2651.98424659304 262.7206553974873 -2651.984253558576 262.720655254609 -2651.984288201154 262.7154493709867 -2651.990179105599 261.9783766775143 -2652.002052890585 261.6078586715093 -2652.002039420261 261.6078591851761 -2651.99989774696 261.8764357442531</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"27\" source=\"#ID2357\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2353\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2351\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2352\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2353\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2354\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 7 4 8 5 7 4 6 3 9 6 9 6 6 3 10 7 10 7 6 3 11 8 18 9 19 10 20 11 24 12 25 13 26 14 25 13 24 12 27 15 32 16 33 17 34 18 38 19 39 20 40 21 39 20 38 19 41 22 41 22 38 19 42 23 48 24 49 25 50 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2353\" />\r\n\t\t\t\t\t<p>3 4 5 12 13 14 14 13 15 15 13 16 17 16 13 21 22 23 28 29 30 31 30 29 35 36 37 43 44 45 45 44 46 47 46 44 51 52 53</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2358\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2359\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID2362\">4247.196763413935 2460.221214516007 338.0323685217718 4254.91021780125 2460.663114755974 338.0323685015512 4131.977768330055 2453.583816883414 338.0323688223102 4254.911825957929 2460.665523468646 338.0323685015603 4254.911825957929 2460.665523468646 338.0323685015603 4247.196763413935 2460.221214516007 338.0323685217718 4254.91021780125 2460.663114755974 338.0323685015512 4131.977768330055 2453.583816883414 338.0323688223102 4247.196763413935 2460.221214516007 338.0323685217718 4131.977768330055 2453.583816883414 338.0323688223102 4131.976600334328 2453.585707715289 338.0323712437374 4131.976600334328 2453.585707715289 338.0323712437374 4131.977768330055 2453.583816883414 338.0323688223102 4247.196763413935 2460.221214516007 338.0323685217718 3905.24891782086 2440.528504539916 338.0323710197523 3907.349284017344 2440.648160285419 338.0323694093461 3459.598492684399 2414.863583160739 338.0323705766786 3905.475272871058 2440.541540283277 338.0323710227261 4131.976600334328 2453.585707715289 338.0323712437374 3907.576705886526 2440.661256804382 338.0323694115029 4131.977768330055 2453.583816883414 338.0323688223102 4131.977768330055 2453.583816883414 338.0323688223102 4131.976600334328 2453.585707715289 338.0323712437374 3907.576705886526 2440.661256804382 338.0323694115029 3907.349284017344 2440.648160285419 338.0323694093461 3905.475272871058 2440.541540283277 338.0323710227261 3905.24891782086 2440.528504539916 338.0323710197523 3459.598492684399 2414.863583160739 338.0323705766786</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID2362\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2360\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID2363\">-3.979192396149045e-009 2.378935374188515e-008 -0.9999999999999999 -3.979192396149045e-009 2.378935374188515e-008 -0.9999999999999999 -3.979192396149045e-009 2.378935374188515e-008 -0.9999999999999999 -3.979192396149045e-009 2.378935374188515e-008 -0.9999999999999999 3.979192396149045e-009 -2.378935374188515e-008 0.9999999999999999 3.979192396149045e-009 -2.378935374188515e-008 0.9999999999999999 3.979192396149045e-009 -2.378935374188515e-008 0.9999999999999999 3.979192396149045e-009 -2.378935374188515e-008 0.9999999999999999 -7.123984222878791e-005 0.001236611535562727 -0.9999992328581032 -7.123984222878791e-005 0.001236611535562727 -0.9999992328581032 -7.123984222878791e-005 0.001236611535562727 -0.9999992328581032 7.123984222878791e-005 -0.001236611535562727 0.9999992328581032 7.123984222878791e-005 -0.001236611535562727 0.9999992328581032 7.123984222878791e-005 -0.001236611535562727 0.9999992328581032 -7.12159636004731e-005 0.00123662436496945 -0.999999232843939 -7.12159636004731e-005 0.00123662436496945 -0.999999232843939 -7.12159636004731e-005 0.00123662436496945 -0.999999232843939 -7.12159636004731e-005 0.00123662436496945 -0.999999232843939 -7.12159636004731e-005 0.00123662436496945 -0.999999232843939 -7.12159636004731e-005 0.00123662436496945 -0.999999232843939 -7.12159636004731e-005 0.00123662436496945 -0.999999232843939 7.12159636004731e-005 -0.00123662436496945 0.999999232843939 7.12159636004731e-005 -0.00123662436496945 0.999999232843939 7.12159636004731e-005 -0.00123662436496945 0.999999232843939 7.12159636004731e-005 -0.00123662436496945 0.999999232843939 7.12159636004731e-005 -0.00123662436496945 0.999999232843939 7.12159636004731e-005 -0.00123662436496945 0.999999232843939 7.12159636004731e-005 -0.00123662436496945 0.999999232843939</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID2363\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2361\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2359\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2360\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2361\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 14 15 16 15 14 17 15 17 18 15 18 19 19 18 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2361\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 11 12 13 21 22 23 23 22 24 22 25 24 25 26 24 27 24 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2364\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2365\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2369\">392.4704628509999 3137.064109026719 195.4863174172307 392.4670857196774 3137.059050728379 195.4863186097275 392.4670860924767 3137.059051445156 338.0307357242188 392.4670860924767 3137.059051445156 338.0307357242188 392.4670857196774 3137.059050728379 195.4863186097275 392.4704628509999 3137.064109026719 195.4863174172307</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2369\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2366\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2370\">-0.8316758069298216 0.5552615169157957 -6.171344030421466e-010 -0.8316758069298216 0.5552615169157957 -6.171344030421466e-010 -0.8316758069298216 0.5552615169157957 -6.171344030421466e-010 0.8316758069298216 -0.5552615169157957 6.171344030421466e-010 0.8316758069298216 -0.5552615169157957 6.171344030421466e-010 0.8316758069298216 -0.5552615169157957 6.171344030421466e-010</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2370\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2368\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2371\">35.80742827243785 15.99995077932467 35.80746993684021 15.99995078797097 35.80746354338336 16.99993917648693</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2371\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2367\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2365\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2366\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2367\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2368\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2367\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2372\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2378\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID2382\">3651.328933357676 865.389324463901 288.6164194646794 3401.260090873904 850.9862482985557 381.7465081968505 3401.260093631524 850.9862464955595 288.6164145635103 3772.906340261613 872.3917517665016 288.6164218475117 3772.906334462024 872.3918063682529 381.7465121746727 3772.906334462024 872.3918063682529 381.7465121746727 3772.906340261613 872.3917517665016 288.6164218475117 3401.260090873904 850.9862482985557 381.7465081968505 3651.328933357676 865.389324463901 288.6164194646794 3401.260093631524 850.9862464955595 288.6164145635103 3772.906334462024 872.3918063682529 381.7465121746727 3401.260088116275 850.9862501016087 474.8766018302058 3401.260090873904 850.9862482985557 381.7465081968505 3772.901161900475 872.391529071248 405.9114517450242 3772.906332591454 872.3918268857908 405.9114515834424 3772.903747246307 872.3916779785343 405.911451664234 3772.901198137903 872.3915313990142 406.3951440010765 3772.90121750178 872.391526854492 474.8766152221235 3772.90121750178 872.391526854492 474.8766152221235 3772.901198137903 872.3915313990142 406.3951440010765 3401.260088116275 850.9862501016087 474.8766018302058 3772.901161900475 872.391529071248 405.9114517450242 3772.903747246307 872.3916779785343 405.911451664234 3772.906332591454 872.3918268857908 405.9114515834424 3772.906334462024 872.3918063682529 381.7465121746727 3401.260090873904 850.9862482985557 381.7465081968505 3651.16713935625 865.3799921266909 195.4863280513565 3401.260093631524 850.9862464955595 288.6164145635103 3401.260085247546 850.9862369559689 195.4863209301714 3651.328933357676 865.389324463901 288.6164194646794 3651.328933357676 865.389324463901 288.6164194646794 3651.16713935625 865.3799921266909 195.4863280513565 3401.260093631524 850.9862464955595 288.6164145635103 3401.260085247546 850.9862369559689 195.4863209301714 3772.906346061173 872.391697164717 195.4863315203556 3651.328933357676 865.389324463901 288.6164194646794 3651.16713935625 865.3799921266909 195.4863280513565 3772.906340261613 872.3917517665016 288.6164218475117 3772.906340261613 872.3917517665016 288.6164218475117 3772.906346061173 872.391697164717 195.4863315203556 3651.328933357676 865.389324463901 288.6164194646794 3651.16713935625 865.3799921266909 195.4863280513565 3772.90121750178 872.391526854492 474.8766152221235 3401.260019258479 850.9863211445054 507.9124834721461 3401.260088116275 850.9862501016087 474.8766018302058 3772.9012297665 872.3915264759544 482.9273228438767 3772.901233146265 872.3915210112368 482.9589974873815 3772.901267829738 872.391525301171 507.912472156188 3772.901267829738 872.391525301171 507.912472156188 3772.901233146265 872.3915210112368 482.9589974873815 3401.260019258479 850.9863211445054 507.9124834721461 3772.9012297665 872.3915264759544 482.9273228438767 3772.90121750178 872.391526854492 474.8766152221235 3401.260088116275 850.9862501016087 474.8766018302058</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID2382\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2379\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID2383\">0.05750115622068348 -0.9983454397317729 2.406094477102726e-007 0.05750115622068348 -0.9983454397317729 2.406094477102726e-007 0.05750115622068348 -0.9983454397317729 2.406094477102726e-007 0.05750115622068348 -0.9983454397317729 2.406094477102726e-007 0.05750115622068348 -0.9983454397317729 2.406094477102726e-007 -0.05750115622068348 0.9983454397317729 -2.406094477102726e-007 -0.05750115622068348 0.9983454397317729 -2.406094477102726e-007 -0.05750115622068348 0.9983454397317729 -2.406094477102726e-007 -0.05750115622068348 0.9983454397317729 -2.406094477102726e-007 -0.05750115622068348 0.9983454397317729 -2.406094477102726e-007 0.05750134004220701 -0.9983454291443162 4.39419191565493e-008 0.05750134004220701 -0.9983454291443162 4.39419191565493e-008 0.05750134004220701 -0.9983454291443162 4.39419191565493e-008 0.05750134004220701 -0.9983454291443162 4.39419191565493e-008 0.05750134004220701 -0.9983454291443162 4.39419191565493e-008 0.05750134004220701 -0.9983454291443162 4.39419191565493e-008 0.05750134004220701 -0.9983454291443162 4.39419191565493e-008 0.05750134004220701 -0.9983454291443162 4.39419191565493e-008 -0.05750134004220701 0.9983454291443162 -4.39419191565493e-008 -0.05750134004220701 0.9983454291443162 -4.39419191565493e-008 -0.05750134004220701 0.9983454291443162 -4.39419191565493e-008 -0.05750134004220701 0.9983454291443162 -4.39419191565493e-008 -0.05750134004220701 0.9983454291443162 -4.39419191565493e-008 -0.05750134004220701 0.9983454291443162 -4.39419191565493e-008 -0.05750134004220701 0.9983454291443162 -4.39419191565493e-008 -0.05750134004220701 0.9983454291443162 -4.39419191565493e-008 0.05750114638599091 -0.9983454402982377 1.213218243458532e-007 0.05750114638599091 -0.9983454402982377 1.213218243458532e-007 0.05750114638599091 -0.9983454402982377 1.213218243458532e-007 0.05750114638599091 -0.9983454402982377 1.213218243458532e-007 -0.05750114638599091 0.9983454402982377 -1.213218243458532e-007 -0.05750114638599091 0.9983454402982377 -1.213218243458532e-007 -0.05750114638599091 0.9983454402982377 -1.213218243458532e-007 -0.05750114638599091 0.9983454402982377 -1.213218243458532e-007 0.05750098612826982 -0.9983454495284394 3.673713742449735e-007 0.05750098612826982 -0.9983454495284394 3.673713742449735e-007 0.05750098612826982 -0.9983454495284394 3.673713742449735e-007 0.05750098612826982 -0.9983454495284394 3.673713742449735e-007 -0.05750098612826982 0.9983454495284394 -3.673713742449735e-007 -0.05750098612826982 0.9983454495284394 -3.673713742449735e-007 -0.05750098612826982 0.9983454495284394 -3.673713742449735e-007 -0.05750098612826982 0.9983454495284394 -3.673713742449735e-007 0.05750123551222345 -0.9983454351643734 1.012803989272181e-006 0.05750123551222345 -0.9983454351643734 1.012803989272181e-006 0.05750123551222345 -0.9983454351643734 1.012803989272181e-006 0.05750123551222345 -0.9983454351643734 1.012803989272181e-006 0.05750123551222345 -0.9983454351643734 1.012803989272181e-006 0.05750123551222345 -0.9983454351643734 1.012803989272181e-006 -0.05750123551222345 0.9983454351643734 -1.012803989272181e-006 -0.05750123551222345 0.9983454351643734 -1.012803989272181e-006 -0.05750123551222345 0.9983454351643734 -1.012803989272181e-006 -0.05750123551222345 0.9983454351643734 -1.012803989272181e-006 -0.05750123551222345 0.9983454351643734 -1.012803989272181e-006 -0.05750123551222345 0.9983454351643734 -1.012803989272181e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID2383\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2381\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID2384\">25.47985007700566 153.3194670249098 25.99999989392 153.6084749141269 26.00000012460342 153.3194685653346 25.22696573500948 153.3194662759926 25.22696550432803 153.6084726145251 25.22696595794726 153.6084733387438 26.00000011686075 153.8974819871086 26.00000034753924 153.6084756383162 25.22697665327167 153.6834632875836 25.22696589809243 153.68346328705 25.22697127568134 153.6834632873168 25.22697657664143 153.6849643075803 25.22697636336919 153.8974797167823 25.48018682650484 153.0304611231581 26.0000001003341 153.3194690044805 26.0000003550398 153.0304626556882 25.47985005273634 153.3194674640546 25.22696554596034 153.0304594706116 25.47984965727046 153.3194665580701 25.48018643104325 153.0304602171736 25.22696531527428 153.319465809144 25.22697610541875 153.8974761498285 25.99999990939909 153.9999971567048 25.9999998589103 153.8974784201714 25.22697605962031 153.9224595415999 25.22697605318574 153.9225578360685 25.22697591748609 153.9999948096861</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"27\" source=\"#ID2384\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2380\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2378\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2379\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"17\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2380\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2381\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 10 5 11 6 12 7 11 6 10 5 13 8 13 8 10 5 14 9 13 8 14 9 15 10 11 6 13 8 16 11 11 6 16 11 17 12 26 13 27 14 28 15 27 14 26 13 29 16 34 17 35 18 36 19 35 18 34 17 37 20 42 21 43 22 44 23 43 22 42 21 45 24 43 22 45 24 46 25 43 22 46 25 47 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"17\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2380\" />\r\n\t\t\t\t\t<p>5 6 7 6 8 7 9 7 8 18 19 20 19 21 20 22 23 21 23 24 21 21 24 20 25 20 24 30 31 32 33 32 31 38 39 40 41 40 39 48 49 50 49 51 50 51 52 50 53 50 52</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2385\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2386\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID2390\">1477.049898118585 1979.656778851338 288.6164051512471 1413.566074690318 2083.893687760452 195.4863095446688 1477.049860540984 1979.656752247519 195.4863137086029 1413.566119887763 2083.893719005013 288.6163998718079 1413.566119887763 2083.893719005013 288.6163998718079 1477.049898118585 1979.656778851338 288.6164051512471 1413.566074690318 2083.893687760452 195.4863095446688 1477.049860540984 1979.656752247519 195.4863137086029 1601.723010430398 1774.95020966105 288.6164155193102 1601.723010402615 1774.950205923942 195.4863218859824 1601.723008263145 1774.950204847795 195.5106436560328 1601.718953921034 1774.956852401197 195.4863218857174 1477.049898118585 1979.656778851338 288.6164051512471 1477.049860540984 1979.656752247519 195.4863137086029 1477.049860540984 1979.656752247519 195.4863137086029 1477.049898118585 1979.656778851338 288.6164051512471 1601.718953921034 1774.956852401197 195.4863218857174 1601.723010430398 1774.95020966105 288.6164155193102 1601.723010402615 1774.950205923942 195.4863218859824 1601.723008263145 1774.950204847795 195.5106436560328 1601.723010458159 1774.950213398254 381.7465091526577 1477.049898118585 1979.656778851338 288.6164051512471 1601.723010430398 1774.95020966105 288.6164155193102 1413.566165085223 2083.893750249624 381.7464901989732 1413.566074732809 2083.893693480588 338.0323802353575 1413.566119887763 2083.893719005013 288.6163998718079 1413.566074732809 2083.893693480588 338.0323802353575 1477.049898118585 1979.656778851338 288.6164051512471 1413.566119887763 2083.893719005013 288.6163998718079 1413.566165085223 2083.893750249624 381.7464901989732 1601.723010458159 1774.950213398254 381.7465091526577 1601.723010430398 1774.95020966105 288.6164155193102 1357.881249825691 2174.615592738236 195.5106413723757 1601.718953921034 1774.956852401197 195.4863218857174 1601.718955740372 1774.956849424727 195.5106436559924 1357.881249804033 2174.61559266878 185.6701014993445 1357.881249534156 2174.615597798877 195.4863196023266 1601.723010402615 1774.950205923942 195.4863218859824 1601.723008389471 1774.950204868638 185.6701037829989 1601.718953921034 1774.956852401197 195.4863218857174 1601.723010402615 1774.950205923942 195.4863218859824 1357.881249804033 2174.61559266878 185.6701014993445 1601.723008389471 1774.950204868638 185.6701037829989 1357.881249534156 2174.615597798877 195.4863196023266 1357.881249825691 2174.615592738236 195.5106413723757 1601.718955740372 1774.956849424727 195.5106436559924 1601.723010485975 1774.950217135367 474.876602785994 1413.566165085223 2083.893750249624 381.7464901989732 1601.723010458159 1774.950213398254 381.7465091526577 1413.566210282736 2083.893781494217 474.8765932466562 1413.566210282736 2083.893781494217 474.8765932466562 1601.723010485975 1774.950217135367 474.876602785994 1413.566165085223 2083.893750249624 381.7464901989732 1601.723010458159 1774.950213398254 381.7465091526577 1601.722944413503 1774.950290112446 507.9124844279266 1413.566210282736 2083.893781494217 474.8765932466562 1601.723010485975 1774.950217135367 474.876602785994 1413.566008701218 2083.893771948946 507.9124720866323 1413.566008701218 2083.893771948946 507.9124720866323 1601.722944413503 1774.950290112446 507.9124844279266 1413.566210282736 2083.893781494217 474.8765932466562 1601.723010485975 1774.950217135367 474.876602785994</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID2390\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2387\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID2391\">-0.8540703938597872 -0.5201574399466911 5.411032565562666e-007 -0.8540703938597872 -0.5201574399466911 5.411032565562666e-007 -0.8540703938597872 -0.5201574399466911 5.411032565562666e-007 -0.8540703938597872 -0.5201574399466911 5.411032565562666e-007 0.8540703938597872 0.5201574399466911 -5.411032565562666e-007 0.8540703938597872 0.5201574399466911 -5.411032565562666e-007 0.8540703938597872 0.5201574399466911 -5.411032565562666e-007 0.8540703938597872 0.5201574399466911 -5.411032565562666e-007 -0.8540704077388744 -0.5201574171582097 2.307979948840827e-007 -0.8540704077388744 -0.5201574171582097 2.307979948840827e-007 -0.8540704077388744 -0.5201574171582097 2.307979948840827e-007 -0.8540704077388744 -0.5201574171582097 2.307979948840827e-007 -0.8540704077388744 -0.5201574171582097 2.307979948840827e-007 -0.8540704077388744 -0.5201574171582097 2.307979948840827e-007 0.8540704077388744 0.5201574171582097 -2.307979948840827e-007 0.8540704077388744 0.5201574171582097 -2.307979948840827e-007 0.8540704077388744 0.5201574171582097 -2.307979948840827e-007 0.8540704077388744 0.5201574171582097 -2.307979948840827e-007 0.8540704077388744 0.5201574171582097 -2.307979948840827e-007 0.8540704077388744 0.5201574171582097 -2.307979948840827e-007 -0.8540704453800563 -0.5201573553534231 2.129436526231415e-007 -0.8540704453800563 -0.5201573553534231 2.129436526231415e-007 -0.8540704453800563 -0.5201573553534231 2.129436526231415e-007 -0.8540704453800563 -0.5201573553534231 2.129436526231415e-007 -0.8540704453800563 -0.5201573553534231 2.129436526231415e-007 -0.8540704453800563 -0.5201573553534231 2.129436526231415e-007 0.8540704453800563 0.5201573553534231 -2.129436526231415e-007 0.8540704453800563 0.5201573553534231 -2.129436526231415e-007 0.8540704453800563 0.5201573553534231 -2.129436526231415e-007 0.8540704453800563 0.5201573553534231 -2.129436526231415e-007 0.8540704453800563 0.5201573553534231 -2.129436526231415e-007 0.8540704453800563 0.5201573553534231 -2.129436526231415e-007 -0.8536600477615599 -0.5208306086010286 1.177172360099628e-007 -0.8536600477615599 -0.5208306086010286 1.177172360099628e-007 -0.8536600477615599 -0.5208306086010286 1.177172360099628e-007 -0.8536600477615599 -0.5208306086010286 1.177172360099628e-007 -0.8536600477615599 -0.5208306086010286 1.177172360099628e-007 -0.8536600477615599 -0.5208306086010286 1.177172360099628e-007 -0.8536600477615599 -0.5208306086010286 1.177172360099628e-007 0.8536600477615599 0.5208306086010286 -1.177172360099628e-007 0.8536600477615599 0.5208306086010286 -1.177172360099628e-007 0.8536600477615599 0.5208306086010286 -1.177172360099628e-007 0.8536600477615599 0.5208306086010286 -1.177172360099628e-007 0.8536600477615599 0.5208306086010286 -1.177172360099628e-007 0.8536600477615599 0.5208306086010286 -1.177172360099628e-007 0.8536600477615599 0.5208306086010286 -1.177172360099628e-007 -0.8540705586866719 -0.5201571693099529 3.050655817389644e-007 -0.8540705586866719 -0.5201571693099529 3.050655817389644e-007 -0.8540705586866719 -0.5201571693099529 3.050655817389644e-007 -0.8540705586866719 -0.5201571693099529 3.050655817389644e-007 0.8540705586866719 0.5201571693099529 -3.050655817389644e-007 0.8540705586866719 0.5201571693099529 -3.050655817389644e-007 0.8540705586866719 0.5201571693099529 -3.050655817389644e-007 0.8540705586866719 0.5201571693099529 -3.050655817389644e-007 -0.8540704826341238 -0.520157294175859 -2.960429673135598e-006 -0.8540704826341238 -0.520157294175859 -2.960429673135598e-006 -0.8540704826341238 -0.520157294175859 -2.960429673135598e-006 -0.8540704826341238 -0.520157294175859 -2.960429673135598e-006 0.8540704826341238 0.520157294175859 2.960429673135598e-006 0.8540704826341238 0.520157294175859 2.960429673135598e-006 0.8540704826341238 0.520157294175859 2.960429673135598e-006 0.8540704826341238 0.520157294175859 2.960429673135598e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID2391\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2389\">\r\n\t\t\t\t\t<float_array count=\"62\" id=\"ID2392\">25.49023502464898 149.3154943168518 25.23066168876537 149.0244641875796 25.49023496619901 149.0264879750965 25.23066174721533 149.3134705258732 26.00000009385799 149.3194685784037 26.00000003541202 149.0304622298502 26.00000003501696 149.0305377064806 25.99998347473401 149.0304621007334 25.49023501424037 149.3154941401288 25.49023495579006 149.0264877983735 26.00000012407566 149.6084749165695 25.49023498601133 149.3154941297445 26.00000006562895 149.319468568016 25.23066176702882 149.602476677062 25.23066173958584 149.466820684375 25.23066170857768 149.3134703387683 25.00457284004809 149.0227767129157 26.00029085094494 149.030464476738 26.00029085837869 149.0305399534301 25.00457283432137 148.9922390168261 25.00457283052272 149.022701236208 26.00030741163005 149.0304646058561 26.00030740550162 149.0000023863968 26.00000009755362 149.8974813168888 25.23066168205708 149.6024767288434 26.00000003910393 149.6084749683353 25.23066174051107 149.8914831066121 25.99999997205784 149.9999981933078 25.23066179753995 149.8914812481568 26.00000015458248 149.8974794584447 25.23066161500229 149.993999974326</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"31\" source=\"#ID2392\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2388\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2386\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2387\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"19\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2388\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2389\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 9 5 10 6 9 5 8 4 11 7 11 7 8 4 12 8 11 7 12 8 13 9 20 10 21 11 22 12 21 11 20 10 23 13 21 11 23 13 24 14 25 15 21 11 24 14 32 16 33 17 34 18 33 17 32 16 35 19 35 19 32 16 36 20 37 21 35 19 38 22 35 19 37 21 33 17 46 23 47 24 48 25 47 24 46 23 49 26 54 27 55 28 56 29 55 28 54 27 57 30</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"19\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2388\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 14 15 16 15 17 16 16 17 18 19 18 17 26 27 28 26 29 27 29 30 27 31 27 30 39 40 41 42 41 40 43 44 41 41 44 39 45 39 44 50 51 52 53 52 51 58 59 60 61 60 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2393\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2394\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2397\">2890.246133655239 2664.605360573045 395.0516911105828 2616.129985853046 2170.422363317531 359.5346052068351 2616.129678040115 2170.421902311809 395.0516940361614 2890.246162065695 2664.605353025277 388.9416898154789 2890.246161996769 2664.605352889455 359.5346022812351 2890.246161996769 2664.605352889455 359.5346022812351 2890.246162065695 2664.605353025277 388.9416898154789 2616.129985853046 2170.422363317531 359.5346052068351 2890.246133655239 2664.605360573045 395.0516911105828 2616.129678040115 2170.421902311809 395.0516940361614</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2397\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2395\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2398\">-0.8744800410473235 0.4850614989968568 -8.911286245305436e-007 -0.8744800410473235 0.4850614989968568 -8.911286245305436e-007 -0.8744800410473235 0.4850614989968568 -8.911286245305436e-007 -0.8744800410473235 0.4850614989968568 -8.911286245305436e-007 -0.8744800410473235 0.4850614989968568 -8.911286245305436e-007 0.8744800410473235 -0.4850614989968568 8.911286245305436e-007 0.8744800410473235 -0.4850614989968568 8.911286245305436e-007 0.8744800410473235 -0.4850614989968568 8.911286245305436e-007 0.8744800410473235 -0.4850614989968568 8.911286245305436e-007 0.8744800410473235 -0.4850614989968568 8.911286245305436e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2398\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2396\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2394\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2395\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2396\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2396\" />\r\n\t\t\t\t\t<p>5 6 7 6 8 7 9 7 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2399\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2400\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2403\">373.120187784168 2041.247866913369 359.5346110593171 373.1201878928279 2041.247867127631 405.9110080662706 373.1209277978068 2041.247475515841 395.0508021499836 20.90735921354849 2618.831980767275 359.5346092159415 20.90730012473819 2618.831953706195 395.0507661167238 20.90735932221151 2618.831980981521 405.9110062228954 20.90730012473819 2618.831953706195 395.0507661167238 373.1201878928279 2041.247867127631 405.9110080662706 20.90735932221151 2618.831980981521 405.9110062228954 20.90735921354849 2618.831980767275 359.5346092159415 373.120187784168 2041.247866913369 359.5346110593171 373.1209277978068 2041.247475515841 395.0508021499836</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2403\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2401\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2404\">0.8537780503266548 0.5206371488654996 -1.272719297451771e-006 0.8537780503266548 0.5206371488654996 -1.272719297451771e-006 0.8537780503266548 0.5206371488654996 -1.272719297451771e-006 0.8537780503266548 0.5206371488654996 -1.272719297451771e-006 0.8537780503266548 0.5206371488654996 -1.272719297451771e-006 0.8537780503266548 0.5206371488654996 -1.272719297451771e-006 -0.8537780503266548 -0.5206371488654996 1.272719297451771e-006 -0.8537780503266548 -0.5206371488654996 1.272719297451771e-006 -0.8537780503266548 -0.5206371488654996 1.272719297451771e-006 -0.8537780503266548 -0.5206371488654996 1.272719297451771e-006 -0.8537780503266548 -0.5206371488654996 1.272719297451771e-006 -0.8537780503266548 -0.5206371488654996 1.272719297451771e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2404\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2402\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2400\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2401\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2402\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 1 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2402\" />\r\n\t\t\t\t\t<p>6 7 8 6 9 7 9 10 7 11 7 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2405\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2411\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID2420\">2795.876454319882 1843.708634658072 507.9124680877038 3401.260085247546 850.9862369559689 195.4863209301714 3401.251194450834 850.9730888980585 507.9124712559957 2795.885347427774 1843.721780215261 185.6700996587599 3401.260086575501 850.9862366030768 185.6701028271901 2795.885345116667 1843.721782715409 195.4863177617415 2795.885345116667 1843.721782715409 195.4863177617415 2795.876454319882 1843.708634658072 507.9124680877038 2795.885347427774 1843.721780215261 185.6700996587599 3401.260085247546 850.9862369559689 195.4863209301714 3401.260086575501 850.9862366030768 185.6701028271901 3401.251194450834 850.9730888980585 507.9124712559957 2795.885345116667 1843.721782715409 195.4863177617415 1601.723008389471 1774.950204868638 185.6701037829989 2795.885347427774 1843.721780215261 185.6700996587599 1601.723010402615 1774.950205923942 195.4863218859824 2795.885279127565 1843.721866903905 507.9124813120418 1601.723008263145 1774.950204847795 195.5106436560328 1601.723010430398 1774.95020966105 288.6164155193102 1601.723010458159 1774.950213398254 381.7465091526577 1601.723010485975 1774.950217135367 474.876602785994 1601.722944413503 1774.950290112446 507.9124844279266 1601.722944413503 1774.950290112446 507.9124844279266 2795.885279127565 1843.721866903905 507.9124813120418 1601.723010485975 1774.950217135367 474.876602785994 1601.723010458159 1774.950213398254 381.7465091526577 1601.723010430398 1774.95020966105 288.6164155193102 1601.723008263145 1774.950204847795 195.5106436560328 1601.723010402615 1774.950205923942 195.4863218859824 2795.885345116667 1843.721782715409 195.4863177617415 1601.723008389471 1774.950204868638 185.6701037829989 2795.885347427774 1843.721780215261 185.6700996587599</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID2420\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2412\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID2421\">-0.8537777533328187 -0.5206376339137402 -4.546061072117935e-005 -0.8537777533328187 -0.5206376339137402 -4.546061072117935e-005 -0.8537777533328187 -0.5206376339137402 -4.546061072117935e-005 -0.8537777533328187 -0.5206376339137402 -4.546061072117935e-005 -0.8537777533328187 -0.5206376339137402 -4.546061072117935e-005 -0.8537777533328187 -0.5206376339137402 -4.546061072117935e-005 0.8537777533328187 0.5206376339137402 4.546061072117935e-005 0.8537777533328187 0.5206376339137402 4.546061072117935e-005 0.8537777533328187 0.5206376339137402 4.546061072117935e-005 0.8537777533328187 0.5206376339137402 4.546061072117935e-005 0.8537777533328187 0.5206376339137402 4.546061072117935e-005 0.8537777533328187 0.5206376339137402 4.546061072117935e-005 0.05749455648137727 -0.9983458198314679 2.099725901853744e-007 0.05749455648137727 -0.9983458198314679 2.099725901853744e-007 0.05749455648137727 -0.9983458198314679 2.099725901853744e-007 0.05749455648137727 -0.9983458198314679 2.099725901853744e-007 0.05749455648137727 -0.9983458198314679 2.099725901853744e-007 0.05749455648137727 -0.9983458198314679 2.099725901853744e-007 0.05749455648137727 -0.9983458198314679 2.099725901853744e-007 0.05749455648137727 -0.9983458198314679 2.099725901853744e-007 0.05749455648137727 -0.9983458198314679 2.099725901853744e-007 0.05749455648137727 -0.9983458198314679 2.099725901853744e-007 -0.05749455648137727 0.9983458198314679 -2.099725901853744e-007 -0.05749455648137727 0.9983458198314679 -2.099725901853744e-007 -0.05749455648137727 0.9983458198314679 -2.099725901853744e-007 -0.05749455648137727 0.9983458198314679 -2.099725901853744e-007 -0.05749455648137727 0.9983458198314679 -2.099725901853744e-007 -0.05749455648137727 0.9983458198314679 -2.099725901853744e-007 -0.05749455648137727 0.9983458198314679 -2.099725901853744e-007 -0.05749455648137727 0.9983458198314679 -2.099725901853744e-007 -0.05749455648137727 0.9983458198314679 -2.099725901853744e-007 -0.05749455648137727 0.9983458198314679 -2.099725901853744e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID2421\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2414\">\r\n\t\t\t\t\t<float_array count=\"32\" id=\"ID2422\">5.67324166091121e-006 0.9999999901679718 0.9999943267578864 0.03046223003759008 1 1 2.870593859838344e-009 1.110223024625157e-016 0.9999943276116067 9.832418101929363e-009 0 0.03046222020513334 -392.0000798630367 188.0305005265822 -398.2695847457849 188.0000377127533 -392.0000798617382 188.0000383010357 -398.2695847248909 188.0304999382998 -392.0000798633727 189.0000385055527 -398.2695847363857 188.0305754149485 -398.269584628351 188.3195063446025 -398.2695845318111 188.6085127509051 -398.269584435271 188.8975191572078 -398.2695847252269 189.0000379141411</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID2422\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2413\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2411\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2412\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2413\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2414\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 4 4 3 3 1 1 0 0 3 3 0 0 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2413\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 10 8 9 11 9 7 22 23 24 24 23 25 25 23 26 26 23 27 27 23 28 23 29 28 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2413\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2414\" />\r\n\t\t\t\t\t<p>12 6 13 7 14 8 13 7 12 6 15 9 15 9 12 6 16 10 15 9 16 10 17 11 17 11 16 10 18 12 18 12 16 10 19 13 19 13 16 10 20 14 20 14 16 10 21 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2423\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2424\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2427\">5359.679101219154 648.2923896717143 338.032375947316 5022.860500036253 41.00844642034303 405.9114526394208 5022.860500965562 41.00843982747438 338.0323778730655 5022.862519167484 41.01208683730602 405.9114526393838 5359.679101415102 648.2923900519659 405.9114490532149 5359.679101340804 648.2923899056821 379.6270048710808 5359.679101340804 648.2923899056821 379.6270048710808 5359.679101219154 648.2923896717143 338.032375947316 5359.679101415102 648.2923900519659 405.9114490532149 5022.862519167484 41.01208683730602 405.9114526393838 5022.860500036253 41.00844642034303 405.9114526394208 5022.860500965562 41.00843982747438 338.0323778730655</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2427\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2425\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2428\">0.8745002389489602 -0.4850250839680463 3.344416960728111e-008 0.8745002389489602 -0.4850250839680463 3.344416960728111e-008 0.8745002389489602 -0.4850250839680463 3.344416960728111e-008 0.8745002389489602 -0.4850250839680463 3.344416960728111e-008 0.8745002389489602 -0.4850250839680463 3.344416960728111e-008 0.8745002389489602 -0.4850250839680463 3.344416960728111e-008 -0.8745002389489602 0.4850250839680463 -3.344416960728111e-008 -0.8745002389489602 0.4850250839680463 -3.344416960728111e-008 -0.8745002389489602 0.4850250839680463 -3.344416960728111e-008 -0.8745002389489602 0.4850250839680463 -3.344416960728111e-008 -0.8745002389489602 0.4850250839680463 -3.344416960728111e-008 -0.8745002389489602 0.4850250839680463 -3.344416960728111e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2428\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2426\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2424\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2425\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2426\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2426\" />\r\n\t\t\t\t\t<p>6 7 8 8 7 9 9 7 10 11 10 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2429\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2430\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID2433\">4538.411994758988 31.28021368845475 338.0323772467694 4533.626909373749 13.07784304851271 338.0323776704686 4530.214146265866 24.83571616295399 338.0323775273463 4533.638818164328 13.07239321497445 338.0323776703276 4533.640258811356 13.07173393002472 338.0323779512607 4553.426965056357 14.20235677523965 338.0323772527305 4550.022607097092 25.96683971057928 338.0323771093214 4553.435370944235 14.20896821158772 338.0323772524409 4553.435370944235 14.20896821158772 338.0323772524409 4550.022607097092 25.96683971057928 338.0323771093214 4553.426965056357 14.20235677523965 338.0323772527305 4538.411994758988 31.28021368845475 338.0323772467694 4533.640258811356 13.07173393002472 338.0323779512607 4533.638818164328 13.07239321497445 338.0323776703276 4533.626909373749 13.07784304851271 338.0323776704686 4530.214146265866 24.83571616295399 338.0323775273463</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID2433\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2431\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID2434\">-2.318333674815176e-008 -2.229394410792622e-008 -0.9999999999999996 -2.318333674815176e-008 -2.229394410792622e-008 -0.9999999999999996 -2.318333674815176e-008 -2.229394410792622e-008 -0.9999999999999996 -2.318333674815176e-008 -2.229394410792622e-008 -0.9999999999999996 -2.318333674815176e-008 -2.229394410792622e-008 -0.9999999999999996 -2.318333674815176e-008 -2.229394410792622e-008 -0.9999999999999996 -2.318333674815176e-008 -2.229394410792622e-008 -0.9999999999999996 -2.318333674815176e-008 -2.229394410792622e-008 -0.9999999999999996 2.318333674815176e-008 2.229394410792622e-008 0.9999999999999996 2.318333674815176e-008 2.229394410792622e-008 0.9999999999999996 2.318333674815176e-008 2.229394410792622e-008 0.9999999999999996 2.318333674815176e-008 2.229394410792622e-008 0.9999999999999996 2.318333674815176e-008 2.229394410792622e-008 0.9999999999999996 2.318333674815176e-008 2.229394410792622e-008 0.9999999999999996 2.318333674815176e-008 2.229394410792622e-008 0.9999999999999996 2.318333674815176e-008 2.229394410792622e-008 0.9999999999999996</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID2434\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2432\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2430\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2431\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2432\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2432\" />\r\n\t\t\t\t\t<p>8 9 10 9 11 10 10 11 12 12 11 13 13 11 14 15 14 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2435\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2436\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID2439\">2767.477338836437 2865.95470578208 389.0300738304945 2878.9497097503 2683.148814910794 388.9416767723884 2878.949709733614 2683.148814909252 388.9498501166804 2879.097734911959 2682.905826630482 388.9497435119318 2890.232266953081 2664.625149624748 338.1395516820865 2890.251412687514 2664.614530062807 388.9417164584458 2879.082997074284 2682.930019279519 388.94167692629 2763.798605043719 2871.966573757488 338.1053116621861 2707.541949789918 2964.24411279979 389.0732077638368 2709.781614856452 2960.550258701636 338.0906830343773 2709.779430636703 2960.553840652417 338.0906825074227 2578.473817715436 3175.884887531393 338.0551230944347 2665.962148477799 3032.431774211425 389.1031316601789 2635.813901494017 3081.869003282247 380.4567911745124 2605.516012053045 3131.558767465554 389.1466331650007 2564.446958119209 3198.908842640721 389.1761894898675 2482.028393269854 3334.04796130068 338.1245323621071 2506.279343687546 3294.299235880203 389.2180512019033 2482.047544648889 3334.03733860782 388.941674695011 2482.047655378659 3334.037277189366 389.2354901032392 2482.047655378659 3334.037277189366 389.2354901032392 2506.279343687546 3294.299235880203 389.2180512019033 2482.047544648889 3334.03733860782 388.941674695011 2482.028393269854 3334.04796130068 338.1245323621071 2564.446958119209 3198.908842640721 389.1761894898675 2578.473817715436 3175.884887531393 338.0551230944347 2605.516012053045 3131.558767465554 389.1466331650007 2635.813901494017 3081.869003282247 380.4567911745124 2665.962148477799 3032.431774211425 389.1031316601789 2707.541949789918 2964.24411279979 389.0732077638368 2709.779430636703 2960.553840652417 338.0906825074227 2709.781614856452 2960.550258701636 338.0906830343773 2763.798605043719 2871.966573757488 338.1053116621861 2767.477338836437 2865.95470578208 389.0300738304945 2878.9497097503 2683.148814910794 388.9416767723884 2879.082997074284 2682.930019279519 388.94167692629 2890.232266953081 2664.625149624748 338.1395516820865 2879.097734911959 2682.905826630482 388.9497435119318 2890.251412687514 2664.614530062807 388.9417164584458 2878.949709733614 2683.148814909252 388.9498501166804</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID2439\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2437\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID2440\">-0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 -0.8537852082034542 -0.520625366645741 0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932 0.8537852082034542 0.520625366645741 -0.0002141447466303932</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID2440\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2438\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2436\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2437\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2438\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 4 6 7 7 6 1 7 1 0 7 0 8 7 8 9 9 8 10 10 8 11 11 8 12 11 12 13 11 13 14 11 14 15 11 15 16 16 15 17 16 17 18 18 17 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2438\" />\r\n\t\t\t\t\t<p>20 21 22 22 21 23 21 24 23 23 24 25 24 26 25 26 27 25 27 28 25 28 29 25 25 29 30 30 29 31 31 29 32 29 33 32 33 34 32 34 35 32 32 35 36 35 37 36 38 36 37 39 34 33</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2441\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2442\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID2445\">2763.798605043719 2871.966573757488 338.1053116621861 2890.232150578702 2664.625214174129 337.8307587173221 2890.232266953081 2664.625149624748 338.1395516820865 2710.81733285369 2958.851707699329 337.9598789029922 2709.781614856452 2960.550258701636 338.0906830343773 2709.781614856452 2960.550258701636 338.0906830343773 2763.798605043719 2871.966573757488 338.1053116621861 2710.81733285369 2958.851707699329 337.9598789029922 2890.232150578702 2664.625214174129 337.8307587173221 2890.232266953081 2664.625149624748 338.1395516820865 2709.781614856452 2960.550258701636 338.0906830343773 2578.473817715436 3175.884887531393 338.0551230944347 2710.81733285369 2958.851707699329 337.9598789029922 2709.779430636703 2960.553840652417 338.0906825074227 2709.779430636703 2960.553840652417 338.0906825074227 2709.781614856452 2960.550258701636 338.0906830343773 2578.473817715436 3175.884887531393 338.0551230944347 2710.81733285369 2958.851707699329 337.9598789029922</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID2445\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2443\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID2446\">-0.8537852553604628 -0.5206252898082132 0.0002129346927319007 -0.8537852553604628 -0.5206252898082132 0.0002129346927319007 -0.8537852553604628 -0.5206252898082132 0.0002129346927319007 -0.8537852553604628 -0.5206252898082132 0.0002129346927319007 -0.8537852553604628 -0.5206252898082132 0.0002129346927319007 0.8537852553604628 0.5206252898082132 -0.0002129346927319007 0.8537852553604628 0.5206252898082132 -0.0002129346927319007 0.8537852553604628 0.5206252898082132 -0.0002129346927319007 0.8537852553604628 0.5206252898082132 -0.0002129346927319007 0.8537852553604628 0.5206252898082132 -0.0002129346927319007 -0.8537852553592371 -0.5206252898096448 0.000212936107716004 -0.8537852553592371 -0.5206252898096448 0.000212936107716004 -0.8537852553592371 -0.5206252898096448 0.000212936107716004 -0.8537852553592371 -0.5206252898096448 0.000212936107716004 0.8537852553592371 0.5206252898096448 -0.000212936107716004 0.8537852553592371 0.5206252898096448 -0.000212936107716004 0.8537852553592371 0.5206252898096448 -0.000212936107716004 0.8537852553592371 0.5206252898096448 -0.000212936107716004</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID2446\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2444\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2442\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2443\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2444\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 10 11 12 11 10 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2444\" />\r\n\t\t\t\t\t<p>5 6 7 7 6 8 9 8 6 14 15 16 17 16 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2447\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2448\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2452\">1413.553360449541 2083.914407633863 338.0323802345448 1359.406770509382 2172.130213741642 195.4863196159309 1413.566074690318 2083.893687760452 195.4863095446688 1357.881249868186 2174.615598457435 338.0323766114237 1357.881249825691 2174.615592738236 195.5106413723757 1357.881249534156 2174.615597798877 195.4863196023266 1357.881249825691 2174.615592738236 195.5106413723757 1359.406770509382 2172.130213741642 195.4863196159309 1357.881249534156 2174.615597798877 195.4863196023266 1357.881249868186 2174.615598457435 338.0323766114237 1413.553360449541 2083.914407633863 338.0323802345448 1413.566074690318 2083.893687760452 195.4863095446688</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2452\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2449\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2453\">-0.8522617329798456 -0.5231156072018789 1.453144954041176e-008 -0.8522617329798456 -0.5231156072018789 1.453144954041176e-008 -0.8522617329798456 -0.5231156072018789 1.453144954041176e-008 -0.8522617329798456 -0.5231156072018789 1.453144954041176e-008 -0.8522617329798456 -0.5231156072018789 1.453144954041176e-008 -0.8522617329798456 -0.5231156072018789 1.453144954041176e-008 0.8522617329798456 0.5231156072018789 -1.453144954041176e-008 0.8522617329798456 0.5231156072018789 -1.453144954041176e-008 0.8522617329798456 0.5231156072018789 -1.453144954041176e-008 0.8522617329798456 0.5231156072018789 -1.453144954041176e-008 0.8522617329798456 0.5231156072018789 -1.453144954041176e-008 0.8522617329798456 0.5231156072018789 -1.453144954041176e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2453\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2451\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID2454\">25.23196367058337 149.4668306653862 25.01182036216163 149.0227575845638 25.23201534119972 149.024474385055 25.00561809695216 149.465065867008 25.00561807523104 149.0227847027268 25.00561806572824 149.0227092260193</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2454\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2450\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2448\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2449\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2450\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2451\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 5 5 1 1 4 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2450\" />\r\n\t\t\t\t\t<p>6 7 8 6 9 7 9 10 7 11 7 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2455\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2456\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID2460\">1357.881249534156 2174.615597798877 195.4863196023266 417.5664581365589 2120.463051294296 185.6701037830316 1357.881249804033 2174.61559266878 185.6701014993445 417.5664584456038 2120.463052353422 338.0323790648662 1357.881249825691 2174.615592738236 195.5106413723757 1357.881249868186 2174.615598457435 338.0323766114237 1357.881249868186 2174.615598457435 338.0323766114237 1357.881249825691 2174.615592738236 195.5106413723757 417.5664584456038 2120.463052353422 338.0323790648662 1357.881249534156 2174.615597798877 195.4863196023266 417.5664581365589 2120.463051294296 185.6701037830316 1357.881249804033 2174.61559266878 185.6701014993445 417.5664584456038 2120.463052353422 338.0323790648662 109.1317970479029 2626.255631176372 185.6701008926563 417.5664581365589 2120.463051294296 185.6701037830316 109.1317973569501 2626.255632235523 338.0323774505242 109.1317973569501 2626.255632235523 338.0323774505242 417.5664584456038 2120.463052353422 338.0323790648662 109.1317970479029 2626.255631176372 185.6701008926563 417.5664581365589 2120.463051294296 185.6701037830316 109.1317973569501 2626.255632235523 338.0323774505242 392.4670857446087 3137.059050327895 185.670096767159 109.1317970479029 2626.255631176372 185.6701008926563 392.46708605365 3137.059051387026 338.0323744267922 392.4670857196774 3137.059050728379 195.4863186097275 392.4670860924767 3137.059051445156 338.0307357242188 392.4670860924767 3137.059051445156 338.0307357242188 392.46708605365 3137.059051387026 338.0323744267922 392.4670857196774 3137.059050728379 195.4863186097275 392.4670857446087 3137.059050327895 185.670096767159 109.1317973569501 2626.255632235523 338.0323774505242 109.1317970479029 2626.255631176372 185.6701008926563 392.4670857446087 3137.059050327895 185.670096767159 2462.552854255104 3256.259431427779 338.0323499756472 2462.552853946071 3256.259430368619 185.6700917397683 392.4670857196774 3137.059050728379 195.4863186097275 392.4670860924767 3137.059051445156 338.0307357242188 392.46708605365 3137.059051387026 338.0323744267922 392.46708605365 3137.059051387026 338.0323744267922 392.4670860924767 3137.059051445156 338.0307357242188 2462.552854255104 3256.259431427779 338.0323499756472 392.4670857196774 3137.059050728379 195.4863186097275 392.4670857446087 3137.059050327895 185.670096767159 2462.552853946071 3256.259430368619 185.6700917397683</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID2460\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2457\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID2461\">0.05749453982556677 -0.9983458207906948 1.948185958042248e-008 0.05749453982556677 -0.9983458207906948 1.948185958042248e-008 0.05749453982556677 -0.9983458207906948 1.948185958042248e-008 0.05749453982556677 -0.9983458207906948 1.948185958042248e-008 0.05749453982556677 -0.9983458207906948 1.948185958042248e-008 0.05749453982556677 -0.9983458207906948 1.948185958042248e-008 -0.05749453982556677 0.9983458207906948 -1.948185958042248e-008 -0.05749453982556677 0.9983458207906948 -1.948185958042248e-008 -0.05749453982556677 0.9983458207906948 -1.948185958042248e-008 -0.05749453982556677 0.9983458207906948 -1.948185958042248e-008 -0.05749453982556677 0.9983458207906948 -1.948185958042248e-008 -0.05749453982556677 0.9983458207906948 -1.948185958042248e-008 -0.8537777542560968 -0.5206376343844306 5.350890277755156e-009 -0.8537777542560968 -0.5206376343844306 5.350890277755156e-009 -0.8537777542560968 -0.5206376343844306 5.350890277755156e-009 -0.8537777542560968 -0.5206376343844306 5.350890277755156e-009 0.8537777542560968 0.5206376343844306 -5.350890277755156e-009 0.8537777542560968 0.5206376343844306 -5.350890277755156e-009 0.8537777542560968 0.5206376343844306 -5.350890277755156e-009 0.8537777542560968 0.5206376343844306 -5.350890277755156e-009 -0.8744800554523026 0.485061473028046 -1.172588470332164e-009 -0.8744800554523026 0.485061473028046 -1.172588470332164e-009 -0.8744800554523026 0.485061473028046 -1.172588470332164e-009 -0.8744800554523026 0.485061473028046 -1.172588470332164e-009 -0.8744800554523026 0.485061473028046 -1.172588470332164e-009 -0.8744800554523026 0.485061473028046 -1.172588470332164e-009 0.8744800554523026 -0.485061473028046 1.172588470332164e-009 0.8744800554523026 -0.485061473028046 1.172588470332164e-009 0.8744800554523026 -0.485061473028046 1.172588470332164e-009 0.8744800554523026 -0.485061473028046 1.172588470332164e-009 0.8744800554523026 -0.485061473028046 1.172588470332164e-009 0.8744800554523026 -0.485061473028046 1.172588470332164e-009 -0.05748711187091894 0.9983462485374203 -6.257767141954307e-009 -0.05748711187091894 0.9983462485374203 -6.257767141954307e-009 -0.05748711187091894 0.9983462485374203 -6.257767141954307e-009 -0.05748711187091894 0.9983462485374203 -6.257767141954307e-009 -0.05748711187091894 0.9983462485374203 -6.257767141954307e-009 -0.05748711187091894 0.9983462485374203 -6.257767141954307e-009 0.05748711187091894 -0.9983462485374203 6.257767141954307e-009 0.05748711187091894 -0.9983462485374203 6.257767141954307e-009 0.05748711187091894 -0.9983462485374203 6.257767141954307e-009 0.05748711187091894 -0.9983462485374203 6.257767141954307e-009 0.05748711187091894 -0.9983462485374203 6.257767141954307e-009 0.05748711187091894 -0.9983462485374203 6.257767141954307e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID2461\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2459\">\r\n\t\t\t\t\t<float_array count=\"44\" id=\"ID2462\">4.624651124132341 0.06391375463336435 -1.610398737173439 -0.0004725961378955201 4.624658630598009 -0.000478841213481962 -1.610515248839315 0.998996070063453 4.624651105533679 0.06407330099761688 4.624542119113882 0.9989898238743018 8.124972446540886 0.9999692395553028 3.87046880270891 -0.0004469711455397096 8.124972480586509 -0.0004468501151679849 3.870468768663141 0.999969126903411 3.876788861970946 1.001601977745246 -7.709388682997087e-013 -4.467173742028763e-008 3.876788861508103 -0.0004477010012839955 4.62211602325624e-010 1.002049641320835 -1.754902001493974e-009 0.06455886168029523 -2.451372438372346e-013 1.002038863972162 -2.08942285695457e-009 -4.400645292612637e-008 -14.88512373372463 1.000010657693389 -14.88512373611635 -1.424756557177886e-008 -1.751073952505067e-009 0.06442750330327085 -6.128431095930864e-014 1.000000000000008 3.022480044023723e-010 1.00001075541989</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID2462\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2458\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2456\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2457\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2458\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2459\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 12 6 13 7 14 8 13 7 12 6 15 9 20 10 21 11 22 12 21 11 20 10 23 13 21 11 23 13 24 14 24 14 23 13 25 15 32 16 33 17 34 18 33 17 32 16 35 19 33 17 35 19 36 20 33 17 36 20 37 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2458\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9 16 17 18 19 18 17 26 27 28 28 27 29 27 30 29 31 29 30 38 39 40 39 41 40 41 42 40 43 40 42</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2463\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2464\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID2468\">2462.55495935909 3256.263223950593 338.0323558025979 2462.599700823887 3256.182622858537 338.0323658407046 2462.552854255104 3256.259431427779 338.0323499756472 2462.62990221312 3256.239098487574 338.0323683331435 2869.698327746619 2588.71296843486 338.0323696548443 2869.698327746619 2588.71296843486 338.0323696548443 2462.62990221312 3256.239098487574 338.0323683331435 2462.599700823887 3256.182622858537 338.0323658407046 2462.55495935909 3256.263223950593 338.0323558025979 2462.552854255104 3256.259431427779 338.0323499756472 2462.561717282661 3256.275398913204 338.0323499786916 2462.62990221312 3256.239098487574 338.0323683331435 2462.55495935909 3256.263223950593 338.0323558025979 2462.59996076965 3256.277601348127 338.0323690250253 2462.603337901042 3256.282659646313 338.032369024963 2462.603337901042 3256.282659646313 338.032369024963 2462.59996076965 3256.277601348127 338.0323690250253 2462.62990221312 3256.239098487574 338.0323683331435 2462.561717282661 3256.275398913204 338.0323499786916 2462.55495935909 3256.263223950593 338.0323558025979</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID2468\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2465\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID2469\">0.0001733125019360142 0.0001056866354654715 -0.9999999793965558 0.0001733125019360142 0.0001056866354654715 -0.9999999793965558 0.0001733125019360142 0.0001056866354654715 -0.9999999793965558 0.0001733125019360142 0.0001056866354654715 -0.9999999793965558 0.0001733125019360142 0.0001056866354654715 -0.9999999793965558 -0.0001733125019360142 -0.0001056866354654715 0.9999999793965558 -0.0001733125019360142 -0.0001056866354654715 0.9999999793965558 -0.0001733125019360142 -0.0001056866354654715 0.9999999793965558 -0.0001733125019360142 -0.0001056866354654715 0.9999999793965558 -0.0001733125019360142 -0.0001056866354654715 0.9999999793965558 0.0002853950594104049 0.0001533288199893692 -0.9999999475199651 0.0002853950594104049 0.0001533288199893692 -0.9999999475199651 0.0002853950594104049 0.0001533288199893692 -0.9999999475199651 0.0002853950594104049 0.0001533288199893692 -0.9999999475199651 0.0002853950594104049 0.0001533288199893692 -0.9999999475199651 -0.0002853950594104049 -0.0001533288199893692 0.9999999475199651 -0.0002853950594104049 -0.0001533288199893692 0.9999999475199651 -0.0002853950594104049 -0.0001533288199893692 0.9999999475199651 -0.0002853950594104049 -0.0001533288199893692 0.9999999475199651 -0.0002853950594104049 -0.0001533288199893692 0.9999999475199651</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID2469\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2467\">\r\n\t\t\t\t\t<float_array count=\"20\" id=\"ID2470\">-625.503830932579 1087.278672950315 -625.5151952649089 1087.251760234154 -625.5032962359184 1087.277406626209 -625.5228664177685 1087.270617454723 -728.9182449504805 864.383544040972 -625.5151547985702 1087.288087870903 -625.5324737715321 1087.275967153577 -625.5134382864752 1087.284022649556 -625.5248686452507 1087.288823264652 -625.5257264365893 1087.290512231085</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2470\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2466\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2464\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2465\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2466\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2467\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 10 5 11 6 12 7 11 6 10 5 13 8 11 6 13 8 14 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2466\" />\r\n\t\t\t\t\t<p>5 6 7 6 8 7 9 7 8 15 16 17 16 18 17 19 17 18</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2471\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2472\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID2476\">2462.552853946071 3256.259430368619 185.6700917397683 2869.698327072765 2588.712967962198 195.5965610587843 2869.698327437569 2588.712967375728 185.6700955543461 2869.698327498615 2588.712968260949 285.6292874883277 2869.698327746619 2588.71296843486 338.0323696548443 2462.599700823887 3256.182622858537 338.0323658407046 2462.552854255104 3256.259431427779 338.0323499756472 2462.552854255104 3256.259431427779 338.0323499756472 2462.552853946071 3256.259430368619 185.6700917397683 2462.599700823887 3256.182622858537 338.0323658407046 2869.698327746619 2588.71296843486 338.0323696548443 2869.698327498615 2588.712968260949 285.6292874883277 2869.698327072765 2588.712967962198 195.5965610587843 2869.698327437569 2588.712967375728 185.6700955543461</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID2476\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2473\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID2477\">0.8537365109082231 0.5207052620650705 -5.431781916181294e-009 0.8537365109082231 0.5207052620650705 -5.431781916181294e-009 0.8537365109082231 0.5207052620650705 -5.431781916181294e-009 0.8537365109082231 0.5207052620650705 -5.431781916181294e-009 0.8537365109082231 0.5207052620650705 -5.431781916181294e-009 0.8537365109082231 0.5207052620650705 -5.431781916181294e-009 0.8537365109082231 0.5207052620650705 -5.431781916181294e-009 -0.8537365109082231 -0.5207052620650705 5.431781916181294e-009 -0.8537365109082231 -0.5207052620650705 5.431781916181294e-009 -0.8537365109082231 -0.5207052620650705 5.431781916181294e-009 -0.8537365109082231 -0.5207052620650705 5.431781916181294e-009 -0.8537365109082231 -0.5207052620650705 5.431781916181294e-009 -0.8537365109082231 -0.5207052620650705 5.431781916181294e-009 -0.8537365109082231 -0.5207052620650705 5.431781916181294e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID2477\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2475\">\r\n\t\t\t\t\t<float_array count=\"28\" id=\"ID2478\">7.698164758552485 -4.638905618459255e-005 2.52040722711421 0.06446011695855702 2.520422946787868 -0.0006758603676466635 2.520264608914159 0.6552413597543161 2.52018159872904 0.9991025226492358 7.697327654299324 0.9997319215330889 7.697923410519003 0.9997318898594461 7.697923410519 0.9997318898594461 7.698164758552482 -4.638905618459255e-005 7.69732765429932 0.9997319215330889 2.520181598729038 0.9991025226492358 2.520264608914156 0.6552413597543161 2.520407227114208 0.06446011695855702 2.520422946787865 -0.0006758603676466635</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID2478\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2474\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2472\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2473\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2474\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2475\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 5 5 0 0 6 6 7 7 8 8 9 9 9 9 8 8 10 10 10 10 8 8 11 11 11 11 8 8 12 12 13 13 12 12 8 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2479\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2480\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2484\">5250.811223598256 642.3331861080051 185.6700704841505 4967.550549934016 131.7632619427002 338.0323243683089 4967.524144570914 131.7156706561973 185.6700792485396 5109.199784551324 387.0822838424167 338.0323179508868 5250.811228098843 642.3331883315773 338.0323115351421 5250.811228098843 642.3331883315773 338.0323115351421 5250.811223598256 642.3331861080051 185.6700704841505 5109.199784551324 387.0822838424167 338.0323179508868 4967.550549934016 131.7632619427002 338.0323243683089 4967.524144570914 131.7156706561973 185.6700792485396</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2484\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2481\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2485\">0.8744401660446174 -0.4851333796059204 -1.524364637643628e-008 0.8744401660446174 -0.4851333796059204 -1.524364637643628e-008 0.8744401660446174 -0.4851333796059204 -1.524364637643628e-008 0.8744401660446174 -0.4851333796059204 -1.524364637643628e-008 0.8744401660446174 -0.4851333796059204 -1.524364637643628e-008 -0.8744401660446174 0.4851333796059204 1.524364637643628e-008 -0.8744401660446174 0.4851333796059204 1.524364637643628e-008 -0.8744401660446174 0.4851333796059204 1.524364637643628e-008 -0.8744401660446174 0.4851333796059204 1.524364637643628e-008 -0.8744401660446174 0.4851333796059204 1.524364637643628e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2485\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2483\">\r\n\t\t\t\t\t<float_array count=\"20\" id=\"ID2486\">9.439675340575258 0.0001341037310065296 5.576638631374232 0.9985333645890702 5.576513482052244 -0.0003119250897063441 7.508297217915553 0.9987563746242567 9.43944045084274 0.9989793251616277 9.43944045084254 0.9989793251616259 9.439675340575057 0.0001341037310014226 7.508297217915374 0.9987563746242549 5.576638631374081 0.9985333645890679 5.576513482052093 -0.0003119250897114512</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2486\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2482\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2480\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2481\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2482\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2483\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 5 5 6 6 7 7 7 7 6 6 8 8 9 9 8 8 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2487\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2488\">\r\n\t\t\t\t\t<float_array count=\"342\" id=\"ID2492\">5250.796248647826 642.3577518665259 338.0323115422027 5250.769098389403 642.3561870933693 338.0323115398472 5250.522410553576 642.8066078589195 338.0323115539473 5250.522410553576 642.8066078589195 338.0323115539473 5250.769098389403 642.3561870933693 338.0323115398472 5250.796248647826 642.3577518665259 338.0323115422027 5250.512022631494 642.8236424345162 338.0323115538769 5250.769098389403 642.3561870933693 338.0323115398472 5248.3275044297 646.3600907328155 338.0323115234222 5250.522410553576 642.8066078589195 338.0323115539473 5250.521357954589 642.8085297714997 338.0323115540119 5250.521357954589 642.8085297714997 338.0323115540119 5250.512022631494 642.8236424345162 338.0323115538769 5250.522410553576 642.8066078589195 338.0323115539473 5250.769098389403 642.3561870933693 338.0323115398472 5248.3275044297 646.3600907328155 338.0323115234222 5250.512022631494 642.8236424345162 338.0323115538769 5248.325931113079 646.3626377259686 338.0323116737656 5248.080044289824 646.8117084315036 338.0323115455778 5248.3275044297 646.3600907328155 338.0323115234222 5248.3275044297 646.3600907328155 338.0323115234222 5250.512022631494 642.8236424345162 338.0323115538769 5248.325931113079 646.3626377259686 338.0323116737656 5248.080044289824 646.8117084315036 338.0323115455778 4201.11175661866 2363.666157200729 338.0323044761023 5248.325931113079 646.3626377259686 338.0323116737656 4201.108422642374 2363.666228477139 338.0323044781417 4715.880294804059 1519.533757016589 338.0323079446363 4723.22530573417 1507.489197964771 338.0323079941203 4724.204918667616 1505.88280023013 338.0323080007221 4725.369074250114 1503.973784100524 338.0323080085641 4726.085702837103 1502.79863644761 338.0323080133953 4727.512876334457 1500.458315903756 338.0323080230133 4727.966454788799 1499.714524782935 338.0323080260688 4731.209897102172 1494.395835123886 338.0323080479223 4746.539523478947 1469.257874460291 338.0323081512039 4888.695843644408 1236.145867315505 338.0323091089893 4888.716320125399 1236.112289073369 338.0323091091292 4888.741272898549 1236.071370408758 338.0323091092976 4889.163940539273 1235.378261256823 338.0323091121552 4889.182514109363 1235.34780349249 338.032309112277 4889.209504927073 1235.30354275191 338.0323091124644 4892.720892626292 1229.545413394693 338.0323091361861 4892.744082681367 1229.507385313392 338.0323091363446 4892.76744726701 1229.469071029117 338.0323091365041 4896.958990783469 1222.595721823733 338.0323091646653 4897.004966057395 1222.520329538115 338.0323091649757 4897.457586726615 1221.778102165303 338.0323091680361 4897.503700356105 1221.702482998126 338.0323091683425 4901.240679297272 1215.574419809757 338.032309193595 4901.287807414841 1215.497137040223 338.0323091939135 5248.078996716613 646.8136216466987 338.0323115375135 5248.080044289824 646.8117084315036 338.0323115455778 5248.080044289824 646.8117084315036 338.0323115455778 5248.078996716613 646.8136216466987 338.0323115375135 5248.325931113079 646.3626377259686 338.0323116737656 4901.287807414841 1215.497137040223 338.0323091939135 4901.240679297272 1215.574419809757 338.032309193595 4897.503700356105 1221.702482998126 338.0323091683425 4897.457586726615 1221.778102165303 338.0323091680361 4897.004966057395 1222.520329538115 338.0323091649757 4896.958990783469 1222.595721823733 338.0323091646653 4892.76744726701 1229.469071029117 338.0323091365041 4892.744082681367 1229.507385313392 338.0323091363446 4892.720892626292 1229.545413394693 338.0323091361861 4889.209504927073 1235.30354275191 338.0323091124644 4889.182514109363 1235.34780349249 338.032309112277 4889.163940539273 1235.378261256823 338.0323091121552 4888.741272898549 1236.071370408758 338.0323091092976 4888.716320125399 1236.112289073369 338.0323091091292 4888.695843644408 1236.145867315505 338.0323091089893 4746.539523478947 1469.257874460291 338.0323081512039 4731.209897102172 1494.395835123886 338.0323080479223 4727.966454788799 1499.714524782935 338.0323080260688 4727.512876334457 1500.458315903756 338.0323080230133 4726.085702837103 1502.79863644761 338.0323080133953 4725.369074250114 1503.973784100524 338.0323080085641 4724.204918667616 1505.88280023013 338.0323080007221 4723.22530573417 1507.489197964771 338.0323079941203 4715.880294804059 1519.533757016589 338.0323079446363 4201.11175661866 2363.666157200729 338.0323044761023 4201.108422642374 2363.666228477139 338.0323044781417 4201.118309513338 2363.666017107734 338.0323044643784 4715.880294804059 1519.533757016589 338.0323079446363 4201.11175661866 2363.666157200729 338.0323044761023 4723.22530573417 1507.489197964771 338.0323079941203 4888.695843644408 1236.145867315505 338.0323091089893 4724.204918667616 1505.88280023013 338.0323080007221 4726.085702837103 1502.79863644761 338.0323080133953 4725.369074250114 1503.973784100524 338.0323080085641 4727.512876334457 1500.458315903756 338.0323080230133 4727.966454788799 1499.714524782935 338.0323080260688 4731.209897102172 1494.395835123886 338.0323080479223 4746.539523478947 1469.257874460291 338.0323081512039 4746.539523478947 1469.257874460291 338.0323081512039 4888.695843644408 1236.145867315505 338.0323091089893 4731.209897102172 1494.395835123886 338.0323080479223 4727.966454788799 1499.714524782935 338.0323080260688 4727.512876334457 1500.458315903756 338.0323080230133 4726.085702837103 1502.79863644761 338.0323080133953 4725.369074250114 1503.973784100524 338.0323080085641 4724.204918667616 1505.88280023013 338.0323080007221 4723.22530573417 1507.489197964771 338.0323079941203 4201.118309513338 2363.666017107734 338.0323044643784 4715.880294804059 1519.533757016589 338.0323079446363 4201.11175661866 2363.666157200729 338.0323044761023 4201.108422642374 2363.666228477139 338.0323044781417 4201.103928679747 2363.659400323358 338.0323690760098 4201.099673595543 2363.664935650623 338.0323045561552 5248.325931113079 646.3626377259686 338.0323116737656 5248.325931113079 646.3626377259686 338.0323116737656 4201.108422642374 2363.666228477139 338.0323044781417 4201.103928679747 2363.659400323358 338.0323690760098 4201.099673595543 2363.664935650623 338.0323045561552</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"114\" source=\"#ID2492\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2489\">\r\n\t\t\t\t\t<float_array count=\"342\" id=\"ID2493\">8.240696181384746e-008 7.644412264849222e-008 -0.9999999999999938 8.240696181384746e-008 7.644412264849222e-008 -0.9999999999999938 8.240696181384746e-008 7.644412264849222e-008 -0.9999999999999938 -8.240696181384746e-008 -7.644412264849222e-008 0.9999999999999938 -8.240696181384746e-008 -7.644412264849222e-008 0.9999999999999938 -8.240696181384746e-008 -7.644412264849222e-008 0.9999999999999938 5.701099772049446e-007 3.435524545175779e-007 -0.9999999999997786 5.701099772049446e-007 3.435524545175779e-007 -0.9999999999997786 5.701099772049446e-007 3.435524545175779e-007 -0.9999999999997786 5.701099772049446e-007 3.435524545175779e-007 -0.9999999999997786 5.701099772049446e-007 3.435524545175779e-007 -0.9999999999997786 -5.701099772049446e-007 -3.435524545175779e-007 0.9999999999997786 -5.701099772049446e-007 -3.435524545175779e-007 0.9999999999997786 -5.701099772049446e-007 -3.435524545175779e-007 0.9999999999997786 -5.701099772049446e-007 -3.435524545175779e-007 0.9999999999997786 -5.701099772049446e-007 -3.435524545175779e-007 0.9999999999997786 -1.864369961896479e-006 -1.138987434354472e-006 -0.9999999999976135 -1.864369961896479e-006 -1.138987434354472e-006 -0.9999999999976135 -1.864369961896479e-006 -1.138987434354472e-006 -0.9999999999976135 -1.864369961896479e-006 -1.138987434354472e-006 -0.9999999999976135 1.864369961896479e-006 1.138987434354472e-006 0.9999999999976135 1.864369961896479e-006 1.138987434354472e-006 0.9999999999976135 1.864369961896479e-006 1.138987434354472e-006 0.9999999999976135 1.864369961896479e-006 1.138987434354472e-006 0.9999999999976135 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 -4.412756903399404e-006 -2.695095814035105e-006 -0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 4.412756903399404e-006 2.695095814035105e-006 0.9999999999866321 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 -1.81333719132242e-006 -1.109926086888171e-006 -0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 1.81333719132242e-006 1.109926086888171e-006 0.99999999999774 -0.003019107264599549 -0.00184106405925158 -0.9999937477176819 -0.003019107264599549 -0.00184106405925158 -0.9999937477176819 -0.003019107264599549 -0.00184106405925158 -0.9999937477176819 -0.003019107264599549 -0.00184106405925158 -0.9999937477176819 0.003019107264599549 0.00184106405925158 0.9999937477176819 0.003019107264599549 0.00184106405925158 0.9999937477176819 0.003019107264599549 0.00184106405925158 0.9999937477176819 0.003019107264599549 0.00184106405925158 0.9999937477176819</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"114\" source=\"#ID2493\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2491\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID2494\">-1333.702254232022 214.4833556504866 -1333.695358066383 214.4828331725015 -1333.632699356083 214.6332287318029 -1333.630102697944 214.6389467269949 -1333.695399940452 214.4828633204175 -1333.075235074688 215.8197673295121 -1333.632741230153 214.633258879719 -1333.63247387001 214.6339006066098 -1333.629893670891 214.6387793906377 -1333.074626425214 215.8204504345409 -1333.012171172107 215.9703952086065 -1333.075026047636 215.8195999931556 -1067.082007290537 789.2281703668847 -1333.074407609521 215.8202747803211 -1067.08116046056 789.2281941660884 -1197.833215988351 507.3722388457844 -1199.698848764581 503.3505588219272 -1199.947670449674 502.8141823840701 -1200.243365967626 502.1767616200033 -1200.425389628719 501.7843796473238 -1200.787891697043 501.0029462764427 -1200.903100624445 500.7545943127335 -1201.726934972034 498.9786830599541 -1205.620660071697 490.5851143285172 -1241.728365393371 412.7489811482074 -1241.733566419543 412.7377693682615 -1241.739904423923 412.7241066201807 -1241.847262004666 412.492677373274 -1241.851979691468 412.4825075213212 -1241.858835359167 412.4677288535872 -1242.75072783476 410.545088621506 -1242.756618108748 410.5323910396139 -1242.762552713502 410.5195978945071 -1243.827204766672 408.2245855924905 -1243.838882486249 408.1994120973282 -1243.95384813623 407.9515822693076 -1243.96556099812 407.9263330183596 -1244.914753649167 405.8801718261091 -1244.92672419103 405.8543670980915 -1333.01168627282 215.9708583772197 -1333.011952356415 215.970219554387 -1067.08389492113 789.2283025226312 -1197.833439184756 507.3724177794526 -1067.082230485882 789.2283492997029 -1199.699071961001 503.3507377556076 -1241.728588590133 412.7491600821611 -1199.947893646096 502.8143613177521 -1200.425612825145 501.7845585810089 -1200.243589164051 502.1769405536872 -1200.788114893473 501.0031252101301 -1200.903323820875 500.7547732464216 -1201.727158168471 498.9788619936476 -1205.620883268165 490.585293262236 42.97875575366453 -1608.130253199509 42.97964221430024 -1608.127785002934 42.9778791251229 -1608.127534321958 553.8785338972435 -1608.129881887818</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"57\" source=\"#ID2494\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2490\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2488\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2489\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"45\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2490\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2491\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 7 4 8 5 7 4 6 3 9 6 9 6 6 3 10 7 16 8 17 9 18 10 17 9 16 8 19 11 24 12 25 13 26 14 25 13 24 12 27 15 25 13 27 15 28 16 25 13 28 16 29 17 25 13 29 17 30 18 25 13 30 18 31 19 25 13 31 19 32 20 25 13 32 20 33 21 25 13 33 21 34 22 25 13 34 22 35 23 25 13 35 23 36 24 25 13 36 24 37 25 25 13 37 25 38 26 25 13 38 26 39 27 25 13 39 27 40 28 25 13 40 28 41 29 25 13 41 29 42 30 25 13 42 30 43 31 25 13 43 31 44 32 25 13 44 32 45 33 25 13 45 33 46 34 25 13 46 34 47 35 25 13 47 35 48 36 25 13 48 36 49 37 25 13 49 37 50 38 25 13 50 38 51 39 25 13 51 39 52 40 82 41 83 42 84 43 83 42 82 41 85 44 85 44 82 41 86 45 85 44 86 45 87 46 87 46 86 45 88 47 87 46 88 47 89 48 88 47 86 45 90 49 90 49 86 45 91 50 91 50 86 45 92 51 92 51 86 45 93 52 106 53 107 54 108 55 107 54 106 53 109 56</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"45\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2490\" />\r\n\t\t\t\t\t<p>3 4 5 11 12 13 13 12 14 15 14 12 20 21 22 23 22 21 53 54 55 54 56 55 56 57 55 57 58 55 58 59 55 59 60 55 60 61 55 61 62 55 62 63 55 63 64 55 64 65 55 65 66 55 66 67 55 67 68 55 68 69 55 69 70 55 70 71 55 71 72 55 72 73 55 73 74 55 74 75 55 75 76 55 76 77 55 77 78 55 78 79 55 79 80 55 81 55 80 94 95 96 96 95 97 97 95 98 98 95 99 100 99 101 99 95 101 101 95 102 95 103 102 102 103 104 105 104 103 110 111 112 113 112 111</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2495\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2496\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2500\">4194.55049074089 2363.284881367811 338.0323368100262 4187.991904297793 2362.904281387289 338.03236911021 4187.988451426956 2362.909871132092 338.0323375267424 4187.988451426956 2362.909871132092 338.0323375267424 4187.991904297793 2362.904281387289 338.03236911021 4194.55049074089 2363.284881367811 338.0323368100262</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2500\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2497\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2501\">0.000311782626181652 -0.005457575175154857 -0.9999850587207799 0.000311782626181652 -0.005457575175154857 -0.9999850587207799 0.000311782626181652 -0.005457575175154857 -0.9999850587207799 -0.000311782626181652 0.005457575175154857 0.9999850587207799 -0.000311782626181652 0.005457575175154857 0.9999850587207799 -0.000311782626181652 0.005457575175154857 0.9999850587207799</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2501\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2499\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2502\">1097.918393606157 -707.3074732812787 1096.249710694118 -707.3055003392661 1096.248916071208 -707.3074295033977</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2502\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2498\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2496\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2497\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2498\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2499\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2498\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2503\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2504\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID2507\">4777.734190066838 44.9439239692797 338.0323721962853 4772.949105420505 26.74155494376237 338.0323726199885 4769.536341573758 38.49942644379985 338.032372476862 4772.956517398186 26.73816076160506 338.0323726199001 4792.752334799228 27.868562038557 338.0323722021407 4789.34480240493 39.63054999141332 338.0323720588369 4792.757566252074 27.8726784924213 338.0323722019567 4792.757566252074 27.8726784924213 338.0323722019567 4789.34480240493 39.63054999141332 338.0323720588369 4792.752334799228 27.868562038557 338.0323722021407 4777.734190066838 44.9439239692797 338.0323721962853 4772.956517398186 26.73816076160506 338.0323726199001 4772.949105420505 26.74155494376237 338.0323726199885 4769.536341573758 38.49942644379985 338.032372476862</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID2507\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2505\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID2508\">-2.007562996397138e-008 -1.799962477983951e-008 -0.9999999999999998 -2.007562996397138e-008 -1.799962477983951e-008 -0.9999999999999998 -2.007562996397138e-008 -1.799962477983951e-008 -0.9999999999999998 -2.007562996397138e-008 -1.799962477983951e-008 -0.9999999999999998 -2.007562996397138e-008 -1.799962477983951e-008 -0.9999999999999998 -2.007562996397138e-008 -1.799962477983951e-008 -0.9999999999999998 -2.007562996397138e-008 -1.799962477983951e-008 -0.9999999999999998 2.007562996397138e-008 1.799962477983951e-008 0.9999999999999998 2.007562996397138e-008 1.799962477983951e-008 0.9999999999999998 2.007562996397138e-008 1.799962477983951e-008 0.9999999999999998 2.007562996397138e-008 1.799962477983951e-008 0.9999999999999998 2.007562996397138e-008 1.799962477983951e-008 0.9999999999999998 2.007562996397138e-008 1.799962477983951e-008 0.9999999999999998 2.007562996397138e-008 1.799962477983951e-008 0.9999999999999998</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID2508\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2506\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2504\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2505\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2506\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2506\" />\r\n\t\t\t\t\t<p>7 8 9 8 10 9 9 10 11 11 10 12 13 12 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2509\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2510\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2513\">2605.516012053045 3131.558767465554 389.1466331650007 2635.813901494017 3081.869003282247 380.4567911745124 2665.962148477799 3032.431774211425 389.1031316601789 2665.962148477799 3032.431774211425 389.1031316601789 2635.813901494017 3081.869003282247 380.4567911745124 2605.516012053045 3131.558767465554 389.1466331650007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2513\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2511\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2514\">-0.8537852114024522 -0.5206253613708047 0.0002142148205288557 -0.8537852114024522 -0.5206253613708047 0.0002142148205288557 -0.8537852114024522 -0.5206253613708047 0.0002142148205288557 0.8537852114024522 0.5206253613708047 -0.0002142148205288557 0.8537852114024522 0.5206253613708047 -0.0002142148205288557 0.8537852114024522 0.5206253613708047 -0.0002142148205288557</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2514\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2512\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2510\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2511\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2512\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2512\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2515\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2516\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2519\">686.5829247173587 3247.902320019018 400.8209124250005 700.9078584178418 3248.72748241506 395.1859964078982 674.2956304388603 3247.194862030217 395.9875786311145 674.2956304388603 3247.194862030217 395.9875786311145 700.9078584178418 3248.72748241506 395.1859964078982 686.5829247173587 3247.902320019018 400.8209124250005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2519\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2517\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2520\">-0.05749454174103322 0.9983458200993495 3.406091750562665e-005 -0.05749454174103322 0.9983458200993495 3.406091750562665e-005 -0.05749454174103322 0.9983458200993495 3.406091750562665e-005 0.05749454174103322 -0.9983458200993495 -3.406091750562665e-005 0.05749454174103322 -0.9983458200993495 -3.406091750562665e-005 0.05749454174103322 -0.9983458200993495 -3.406091750562665e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2520\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2518\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2516\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2517\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2518\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2518\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2521\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2522\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID2525\">4254.911825957929 2460.665523468646 338.0323685015603 5111.967161482166 1054.66436916131 338.0586011227989 5111.967161930515 1054.664368286363 338.0323742778255 4996.057690911421 1244.814109415766 338.0708724224583 4996.057691145279 1244.814109733566 405.911447149049 4254.911825488562 2460.665522766456 338.0412782990204 4254.911825421901 2460.665522666651 338.0436106027512 4254.91182543065 2460.665522661053 338.0548646562868 4254.91182591237 2460.665523399453 338.0343082734132 4254.911826116926 2460.665523782207 405.9114432678544 4254.911825772533 2460.665523222589 371.9900829768679 4254.911825772533 2460.665523222589 371.9900829768679 4254.91182543065 2460.665522661053 338.0548646562868 4254.911826116926 2460.665523782207 405.9114432678544 4996.057691145279 1244.814109733566 405.911447149049 4254.91182591237 2460.665523399453 338.0343082734132 4254.911825957929 2460.665523468646 338.0323685015603 4254.911825488562 2460.665522766456 338.0412782990204 4254.911825421901 2460.665522666651 338.0436106027512 4996.057690911421 1244.814109415766 338.0708724224583 5111.967161482166 1054.66436916131 338.0586011227989 5111.967161930515 1054.664368286363 338.0323742778255</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID2525\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2523\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID2526\">0.8538670115076164 0.5204912359099359 -9.083218383606345e-009 0.8538670115076164 0.5204912359099359 -9.083218383606345e-009 0.8538670115076164 0.5204912359099359 -9.083218383606345e-009 0.8538670115076164 0.5204912359099359 -9.083218383606345e-009 0.8538670115076164 0.5204912359099359 -9.083218383606345e-009 0.8538670115076164 0.5204912359099359 -9.083218383606345e-009 0.8538670115076164 0.5204912359099359 -9.083218383606345e-009 0.8538670115076164 0.5204912359099359 -9.083218383606345e-009 0.8538670115076164 0.5204912359099359 -9.083218383606345e-009 0.8538670115076164 0.5204912359099359 -9.083218383606345e-009 0.8538670115076164 0.5204912359099359 -9.083218383606345e-009 -0.8538670115076164 -0.5204912359099359 9.083218383606345e-009 -0.8538670115076164 -0.5204912359099359 9.083218383606345e-009 -0.8538670115076164 -0.5204912359099359 9.083218383606345e-009 -0.8538670115076164 -0.5204912359099359 9.083218383606345e-009 -0.8538670115076164 -0.5204912359099359 9.083218383606345e-009 -0.8538670115076164 -0.5204912359099359 9.083218383606345e-009 -0.8538670115076164 -0.5204912359099359 9.083218383606345e-009 -0.8538670115076164 -0.5204912359099359 9.083218383606345e-009 -0.8538670115076164 -0.5204912359099359 9.083218383606345e-009 -0.8538670115076164 -0.5204912359099359 9.083218383606345e-009 -0.8538670115076164 -0.5204912359099359 9.083218383606345e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID2526\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2524\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2522\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2523\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2524\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 4 6 7 5 0 8 7 9 4 9 7 10 11 12 13 14 13 12 15 16 17 12 18 14 18 17 14 17 16 14 14 16 19 19 16 20 21 20 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2527\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2528\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID2532\">3651.159564611467 865.3753712239916 195.4859184956014 3401.260086575501 850.9862366030768 185.6701028271901 3651.159564903578 865.3753710085696 185.6701021751601 3401.260085247546 850.9862369559689 195.4863209301714 3401.260085247546 850.9862369559689 195.4863209301714 3651.159564611467 865.3753712239916 195.4859184956014 3401.260086575501 850.9862366030768 185.6701028271901 3651.159564903578 865.3753710085696 185.6701021751601 3831.399869374719 875.7535518922766 195.4856282391758 3651.159564903578 865.3753710085696 185.6701021751601 3831.399853628062 875.7535508474559 185.6701017048827 3651.159564611467 865.3753712239916 195.4859184956014 3651.159564611467 865.3753712239916 195.4859184956014 3831.399869374719 875.7535518922766 195.4856282391758 3651.159564903578 865.3753710085696 185.6701021751601 3831.399853628062 875.7535508474559 185.6701017048827 3882.023631404905 878.6684523588986 195.4855467153893 3831.399853628062 875.7535508474559 185.6701017048827 3882.023631381883 878.6684523135277 185.6701015727977 3831.399869374719 875.7535518922766 195.4856282391758 3831.399869374719 875.7535518922766 195.4856282391758 3882.023631404905 878.6684523588986 195.4855467153893 3831.399853628062 875.7535508474559 185.6701017048827 3882.023631381883 878.6684523135277 185.6701015727977</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID2532\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2529\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID2533\">0.05748447549984586 -0.9983464003423395 3.364525698716929e-008 0.05748447549984586 -0.9983464003423395 3.364525698716929e-008 0.05748447549984586 -0.9983464003423395 3.364525698716929e-008 0.05748447549984586 -0.9983464003423395 3.364525698716929e-008 -0.05748447549984586 0.9983464003423395 -3.364525698716929e-008 -0.05748447549984586 0.9983464003423395 -3.364525698716929e-008 -0.05748447549984586 0.9983464003423395 -3.364525698716929e-008 -0.05748447549984586 0.9983464003423395 -3.364525698716929e-008 0.0574844753671676 -0.9983464003499794 1.883603290245175e-008 0.0574844753671676 -0.9983464003499794 1.883603290245175e-008 0.0574844753671676 -0.9983464003499794 1.883603290245175e-008 0.0574844753671676 -0.9983464003499794 1.883603290245175e-008 -0.0574844753671676 0.9983464003499794 -1.883603290245175e-008 -0.0574844753671676 0.9983464003499794 -1.883603290245175e-008 -0.0574844753671676 0.9983464003499794 -1.883603290245175e-008 -0.0574844753671676 0.9983464003499794 -1.883603290245175e-008 0.05748447603229296 -0.9983464003116819 9.264160540290627e-009 0.05748447603229296 -0.9983464003116819 9.264160540290627e-009 0.05748447603229296 -0.9983464003116819 9.264160540290627e-009 0.05748447603229296 -0.9983464003116819 9.264160540290627e-009 -0.05748447603229296 0.9983464003116819 -9.264160540290627e-009 -0.05748447603229296 0.9983464003116819 -9.264160540290627e-009 -0.05748447603229296 0.9983464003116819 -9.264160540290627e-009 -0.05748447603229296 0.9983464003116819 -9.264160540290627e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID2533\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2531\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2534\">-2651.646085015035 264.5570075938458 -2650.971954059379 264.6765507705139 -2651.645242622877 264.6626561326784 -2650.972796483258 264.5708979073156 -2651.667773525032 264.0554357267135 -2651.18132095686 264.171102671103 -2651.666931114546 264.1610811474413 -2651.182163349018 264.0654541322716 -2663.623626321895 264.1035214411593 -2663.485889537044 264.2120167954855 -2663.622785281275 264.2091659575667 -2663.486730627173 264.1063714021661</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2534\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2530\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2528\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2529\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2530\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2531\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 9 5 10 6 9 5 8 4 11 7 16 8 17 9 18 10 17 9 16 8 19 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2530\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2535\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2536\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2539\">4304.882797186243 0.009729070768571546 405.9114545202247 4304.882793527951 0.009727273839189365 359.834250021146 4304.882798856258 0.009718620498233577 360.4884519398964 3772.906901600903 872.3820291247475 338.0323769698557 4304.882791363987 0.009726160660193273 338.0323797538815 3772.90690067163 872.3820357174966 405.9114517450729 3772.90690067163 872.3820357174966 405.9114517450729 4304.882797186243 0.009729070768571546 405.9114545202247 3772.906901600903 872.3820291247475 338.0323769698557 4304.882793527951 0.009727273839189365 359.834250021146 4304.882791363987 0.009726160660193273 338.0323797538815 4304.882798856258 0.009718620498233577 360.4884519398964</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2539\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2537\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2540\">-0.8537780955022754 -0.5206370747848288 6.721575263850396e-008 -0.8537780955022754 -0.5206370747848288 6.721575263850396e-008 -0.8537780955022754 -0.5206370747848288 6.721575263850396e-008 -0.8537780955022754 -0.5206370747848288 6.721575263850396e-008 -0.8537780955022754 -0.5206370747848288 6.721575263850396e-008 -0.8537780955022754 -0.5206370747848288 6.721575263850396e-008 0.8537780955022754 0.5206370747848288 -6.721575263850396e-008 0.8537780955022754 0.5206370747848288 -6.721575263850396e-008 0.8537780955022754 0.5206370747848288 -6.721575263850396e-008 0.8537780955022754 0.5206370747848288 -6.721575263850396e-008 0.8537780955022754 0.5206370747848288 -6.721575263850396e-008 0.8537780955022754 0.5206370747848288 -6.721575263850396e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2540\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2538\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2536\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2537\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2538\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 4 3 1 0 3 0 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2538\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 10 8 9 11 9 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2541\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2542\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID2545\">4554.668953646751 14.27327404466746 338.0323777856476 4553.426965056357 14.20235677523965 338.0323772527305 4553.435370944235 14.20896821158772 338.0323772524409 3852.122605770865 876.9322760693979 338.0323774217674 4304.882791363987 0.009726160660193273 338.0323797538815 3772.910162522207 872.3822023192097 338.0323793523106 3882.038893723747 878.6507095747234 338.032376692661 4351.137374882463 109.3886949899438 338.0323791476419 4306.771498471 0.1175770988443219 338.0323797389951 4358.720693917965 96.95203640377326 338.0323791874615 4533.626909373749 13.07784304851271 338.0323776704686 4533.638818164328 13.07239321497445 338.0323776703276 4530.214146265866 24.83571616295399 338.0323775273463 4538.411994758988 31.28021368845475 338.0323772467694 4967.514199298177 131.7151028975322 338.0323243704122 4550.022607097092 25.96683971057928 338.0323771093214 4554.784958818261 14.27990236221035 338.0323777847325 4554.79633364767 14.28055189951465 338.0323777847318 4777.734190066838 44.9439239692797 338.0323721962853 4769.536341573758 38.49942644379985 338.032372476862 4789.34480240493 39.63054999141332 338.0323720588369 4792.757566252074 27.8726784924213 338.0323722019567 4836.771662873593 30.38219932144921 338.032377740982 5022.28596935733 40.97562947339884 338.0323777121947 4967.550834133997 131.7255267271528 338.0323775924849 5022.846656299736 41.01746676564358 338.0323778730526 5022.519333705122 40.98895813829449 338.0323777784872 5022.852428938948 41.00798295840764 338.0323778731111 4792.752334799228 27.868562038557 338.0323722021407 4772.949105420505 26.74155494376237 338.0323726199885 4772.956517398186 26.73816076160506 338.0323726199001 4769.536341573758 38.49942644379985 338.032372476862 4554.79633364767 14.28055189951465 338.0323777847318 4772.949105420505 26.74155494376237 338.0323726199885 4772.956517398186 26.73816076160506 338.0323726199001 4792.757566252074 27.8726784924213 338.0323722019567 4792.752334799228 27.868562038557 338.0323722021407 4836.771662873593 30.38219932144921 338.032377740982 5022.852428938948 41.00798295840764 338.0323778731111 5022.846656299736 41.01746676564358 338.0323778730526 5022.519333705122 40.98895813829449 338.0323777784872 5022.28596935733 40.97562947339884 338.0323777121947 4967.550834133997 131.7255267271528 338.0323775924849 4967.514199298177 131.7151028975322 338.0323243704122 4789.34480240493 39.63054999141332 338.0323720588369 4777.734190066838 44.9439239692797 338.0323721962853 4554.784958818261 14.27990236221035 338.0323777847325 4554.668953646751 14.27327404466746 338.0323777856476 4553.435370944235 14.20896821158772 338.0323772524409 4550.022607097092 25.96683971057928 338.0323771093214 4538.411994758988 31.28021368845475 338.0323772467694 4358.720693917965 96.95203640377326 338.0323791874615 4530.214146265866 24.83571616295399 338.0323775273463 4533.626909373749 13.07784304851271 338.0323776704686 4533.638818164328 13.07239321497445 338.0323776703276 4306.771498471 0.1175770988443219 338.0323797389951 4351.137374882463 109.3886949899438 338.0323791476419 4304.882791363987 0.009726160660193273 338.0323797538815 3882.038893723747 878.6507095747234 338.032376692661 3852.122605770865 876.9322760693979 338.0323774217674 3772.910162522207 872.3822023192097 338.0323793523106 4553.426965056357 14.20235677523965 338.0323772527305</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID2545\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2543\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID2546\">-1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 -1.658209190833306e-008 -1.462991542646418e-008 -0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999 1.658209190833306e-008 1.462991542646418e-008 0.9999999999999999</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID2546\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2544\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2542\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2543\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2544\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 4 6 7 4 7 8 8 7 9 8 9 10 8 10 11 10 9 12 9 13 12 13 9 14 13 14 15 15 14 2 2 14 0 0 14 16 16 14 17 17 14 18 17 18 19 18 14 20 20 14 21 21 14 22 22 14 23 23 14 24 23 24 25 23 25 26 26 25 27 22 28 21 17 29 30 29 17 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2544\" />\r\n\t\t\t\t\t<p>31 32 33 34 33 32 35 36 37 38 39 40 40 39 41 39 42 41 42 43 41 41 43 37 37 43 35 35 43 44 44 43 45 31 45 32 45 43 32 32 43 46 46 43 47 47 43 48 48 43 49 49 43 50 43 51 50 52 50 51 52 51 53 54 53 55 53 51 55 51 56 55 55 56 57 56 58 57 58 59 57 60 57 59 48 61 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2547\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2548\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID2551\">4247.196763413935 2460.221214516007 338.0323685217718 4154.533115680846 2454.884501471218 344.8202762400943 4247.195501135237 2460.219323922687 391.3174422132336 4131.976600334328 2453.585707715289 338.0323712437374 3459.598492684399 2414.863583160739 338.0323705766786 3552.261818817352 2420.199814525658 344.8202778115452 3905.24891782086 2440.528504539916 338.0323710197523 3459.597230405899 2414.861692566889 391.3174442682163 3905.475272871058 2440.541540283277 338.0323710227261 3953.776016726265 2443.322939155964 344.8202767638902 3753.018917771831 2431.761376840932 344.8202772877248 3652.639266816124 2425.978945929447 391.3174437645175 3853.396365770539 2437.54050824466 391.3174432407054 4054.153464725041 2449.102070560112 391.3174427169149 3953.776016726265 2443.322939155964 344.8202767638902 4154.533115680846 2454.884501471218 344.8202762400943 4054.153464725041 2449.102070560112 391.3174427169149 3753.018917771831 2431.761376840932 344.8202772877248 3853.396365770539 2437.54050824466 391.3174432407054 3552.261818817352 2420.199814525658 344.8202778115452 3652.639266816124 2425.978945929447 391.3174437645175 4131.976600334328 2453.585707715289 338.0323712437374 3905.475272871058 2440.541540283277 338.0323710227261 3905.24891782086 2440.528504539916 338.0323710197523 3459.597230405899 2414.861692566889 391.3174442682163 3459.598492684399 2414.863583160739 338.0323705766786 4247.196763413935 2460.221214516007 338.0323685217718 4247.195501135237 2460.219323922687 391.3174422132336</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID2551\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2549\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID2552\">-0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 -0.05749454176853325 0.9983458200977953 3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005 0.05749454176853325 -0.9983458200977953 -3.406004726939528e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID2552\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2550\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2548\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2549\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2550\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 6 5 8 8 5 3 3 5 9 3 9 1 9 5 10 11 10 5 12 9 10 13 1 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2550\" />\r\n\t\t\t\t\t<p>14 15 16 17 14 18 19 17 20 17 19 14 15 14 21 14 19 21 21 19 22 22 19 23 24 25 19 23 19 25 21 26 15 27 15 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2553\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2554\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2558\">3398.075532863083 2317.413151062226 338.0323711712773 4201.107308838959 2363.6645717314 185.6709169568256 3398.078974480122 2317.418326037669 185.6701058829467 4187.991904297793 2362.904281387289 338.03236911021 4201.103928679747 2363.659400323358 338.0323690760098 4201.103928679747 2363.659400323358 338.0323690760098 4187.991904297793 2362.904281387289 338.03236911021 4201.107308838959 2363.6645717314 185.6709169568256 3398.075532863083 2317.413151062226 338.0323711712773 3398.078974480122 2317.418326037669 185.6701058829467</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2558\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2555\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2559\">-0.05749454177097906 0.9983458201460705 3.261004315124969e-005 -0.05749454177097906 0.9983458201460705 3.261004315124969e-005 -0.05749454177097906 0.9983458201460705 3.261004315124969e-005 -0.05749454177097906 0.9983458201460705 3.261004315124969e-005 -0.05749454177097906 0.9983458201460705 3.261004315124969e-005 0.05749454177097906 -0.9983458201460705 -3.261004315124969e-005 0.05749454177097906 -0.9983458201460705 -3.261004315124969e-005 0.05749454177097906 -0.9983458201460705 -3.261004315124969e-005 0.05749454177097906 -0.9983458201460705 -3.261004315124969e-005 0.05749454177097906 -0.9983458201460705 -3.261004315124969e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2559\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2557\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2560\">-9.897060652329017 1.000870296996232 -15.23211553356858 -0.0005528935725322981 -9.89696663557719 -0.0005528935724465889 -15.14509646595668 1.000865039591952 -15.23220995800986 1.000864952323029 -15.23220995800986 1.00086495232303 -15.23211553356858 -0.0005528935725320761 -9.897060652329017 1.000870296996232 -9.89696663557719 -0.0005528935724461448</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"9\" source=\"#ID2560\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2556\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2554\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2555\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2556\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2557\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 5 5 6 3 7 6 6 3 8 7 7 6 9 8 7 6 8 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2561\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2567\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2571\">3234.340505990967 2634.256757852965 185.6700944981453 3398.070018656832 2317.405059935425 405.9114459376211 3398.070018210151 2317.405058404443 185.6700963686199 3398.070018863726 2317.405060644484 507.9124644879652 3234.340506644589 2634.256760093004 507.9124634078057 3234.340506644589 2634.256760093004 507.9124634078057 3234.340505990967 2634.256757852965 185.6700944981453 3398.070018863726 2317.405060644484 507.9124644879652 3398.070018656832 2317.405059935425 405.9114459376211 3398.070018210151 2317.405058404443 185.6700963686199</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2571\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2568\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID2572\">0.8883998345200068 0.4590705109510135 -4.993116399299769e-009 0.8883998345200068 0.4590705109510135 -4.993116399299769e-009 0.8883998345200068 0.4590705109510135 -4.993116399299769e-009 0.8883998345200068 0.4590705109510135 -4.993116399299769e-009 0.8883998345200068 0.4590705109510135 -4.993116399299769e-009 -0.8883998345200068 -0.4590705109510135 4.993116399299769e-009 -0.8883998345200068 -0.4590705109510135 4.993116399299769e-009 -0.8883998345200068 -0.4590705109510135 4.993116399299769e-009 -0.8883998345200068 -0.4590705109510135 4.993116399299769e-009 -0.8883998345200068 -0.4590705109510135 4.993116399299769e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2572\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2570\">\r\n\t\t\t\t\t<float_array count=\"20\" id=\"ID2573\">0.9999999952615424 0 3.238616264056304e-009 0.683464907009074 0 5.804558278477145e-009 4.738524461700422e-009 1 1 0.9999999966479906 217.2926618768354 169.5920524066795 217.2926614475775 61.9952784356109 126.7024472766649 169.5920527673449 126.7024471407879 135.5338977987258 126.702446847401 61.99527906016265</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID2573\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2569\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2567\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2568\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2569\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2570\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2569\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2570\" />\r\n\t\t\t\t\t<p>5 5 6 6 7 7 7 7 6 6 8 8 9 9 8 8 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2574\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2575\">\r\n\t\t\t\t\t<float_array count=\"204\" id=\"ID2584\">4257.958168533831 2422.509120726887 405.9114433457729 4254.910995887778 2460.664280202963 405.9114432678827 4254.910217960421 2460.663115069518 405.9114432678952 4254.911826116926 2460.665523782207 405.9114432678544 4996.057691145279 1244.814109733566 405.911447149049 4995.922139770151 1244.806306158677 405.9114471779759 3772.901161900475 872.391529071248 405.9114517450242 3177.788941573989 1881.447146360419 405.911448468028 3156.881584368713 1882.583606356642 405.9114485117308 4314.250543541762 17.79674969500638 405.9114544158752 3772.90690067163 872.3820357174966 405.9114517450729 4304.882797186243 0.009729070768571546 405.9114545202247 4307.863224736002 0.1799205769941636 405.9114545124602 4318.312429591642 0.776602054308114 405.9114544852356 5010.493129683584 57.55432556758683 405.9114526002659 4856.051736501349 31.48315709646067 405.911453084096 5009.430231320601 40.24153710128076 405.9114526844535 5022.852434916129 41.00798587711165 405.9114526494788 5022.846656458549 41.0174670793042 405.9114526484889 5338.77285980271 649.4302536490795 405.911449094988 5022.85881469887 41.01816168422465 405.9114526484622 5359.679101415102 648.2923900519659 405.9114490532149 5352.874770259685 659.4506048104638 405.9114506587645 4995.967670652796 1244.731655009917 405.9114471709171 4998.660060146092 1240.316424560936 405.9114472909103 5002.726066597103 1233.648594429144 405.911447172925 5002.727052137147 1233.64915929313 405.9114471798202 5002.728349396883 1233.648762947222 405.9114471729175 5002.857915016886 1233.658327583202 405.9114471725679 5352.876044657936 659.4528195572088 405.9114490082444 3398.070018656832 2317.405059935425 405.9114459376211 3452.129556699849 2376.034759726199 405.9114455402676 3398.07392486418 2317.410742663026 405.9114459375885 3451.881822142317 2414.416865808289 405.9114453631103 3451.881822142317 2414.416865808289 405.9114453631103 3452.129556699849 2376.034759726199 405.9114455402676 3398.07392486418 2317.410742663026 405.9114459375885 3398.070018656832 2317.405059935425 405.9114459376211 3177.788941573989 1881.447146360419 405.911448468028 3156.881584368713 1882.583606356642 405.9114485117308 5352.874770259685 659.4506048104638 405.9114506587645 5338.77285980271 649.4302536490795 405.911449094988 5352.876044657936 659.4528195572088 405.9114490082444 5002.857915016886 1233.658327583202 405.9114471725679 5002.728349396883 1233.648762947222 405.9114471729175 5002.727052137147 1233.64915929313 405.9114471798202 5002.726066597103 1233.648594429144 405.911447172925 4998.660060146092 1240.316424560936 405.9114472909103 4995.967670652796 1244.731655009917 405.9114471709171 4995.922139770151 1244.806306158677 405.9114471779759 4257.958168533831 2422.509120726887 405.9114433457729 5359.679101415102 648.2923900519659 405.9114490532149 5022.85881469887 41.01816168422465 405.9114526484622 5022.846656458549 41.0174670793042 405.9114526484889 5010.493129683584 57.55432556758683 405.9114526002659 5022.852434916129 41.00798587711165 405.9114526494788 5009.430231320601 40.24153710128076 405.9114526844535 4856.051736501349 31.48315709646067 405.911453084096 4318.312429591642 0.776602054308114 405.9114544852356 4314.250543541762 17.79674969500638 405.9114544158752 4307.863224736002 0.1799205769941636 405.9114545124602 4304.882797186243 0.009729070768571546 405.9114545202247 3772.90690067163 872.3820357174966 405.9114517450729 3772.901161900475 872.391529071248 405.9114517450242 4996.057691145279 1244.814109733566 405.911447149049 4254.911826116926 2460.665523782207 405.9114432678544 4254.910995887778 2460.664280202963 405.9114432678827 4254.910217960421 2460.663115069518 405.9114432678952</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"68\" source=\"#ID2584\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2576\">\r\n\t\t\t\t\t<float_array count=\"204\" id=\"ID2585\">2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 2.242727654620352e-009 4.607879728414687e-009 1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1 -2.242727654620352e-009 -4.607879728414687e-009 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"68\" source=\"#ID2585\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2583\">\r\n\t\t\t\t\t<float_array count=\"68\" id=\"ID2586\">0.1339207237572855 0.9812047430309767 0.1340331873657721 0.9656064191351345 0.1094936500649724 0.9417818691151071 0.1094918767710957 0.9417795596788935 0.009491275091552565 0.7646081265544443 0 0.7650699790405442 0.9969110501066203 0.267993953952031 0.9905092313521291 0.2639217260594015 0.9969116286428872 0.267994854015644 0.8380145321406312 0.5013495187599386 0.8379557134707347 0.5013456317327482 0.8379551245560812 0.5013457928060316 0.8379546771522521 0.5013455632477213 0.8361088395663889 0.5040553409200488 0.8348865803834815 0.505849671707179 0.834865910811134 0.5058800096150329 0.4998537430900556 0.9844934008497543 1 0.2634593031558978 0.8470943043517429 0.01666565177526796 0.8470887848974 0.0166653694907965 0.8414806767170673 0.02338587811448311 0.8470914081333241 0.0166615163707409 0.8409981546719145 0.01635003486346215 0.7713691971157479 0.01279066665615578 0.5272526576933083 0.0003116539034787976 0.5254086906384847 0.007228569173496978 0.5225090510863557 6.916510086106964e-005 0.5211560317885333 0 0.2796558973468029 0.3545283775657178 0.2796532921272534 0.354532235624115 0.8349274468234451 0.505883180954521 0.4984708005393532 1 0.4984704236417303 0.9999994946147094 0.4984700704874565 0.9999990211094562</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID2586\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2577\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2575\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2576\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2577\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 6 7 8 7 6 9 9 6 10 9 10 11 9 11 12 9 12 13 9 13 14 14 13 15 14 15 16 14 16 17 14 17 18 18 19 14 19 18 20 19 20 21 19 21 22 19 5 0 5 19 23 23 19 24 24 19 25 25 19 26 26 19 27 27 19 28 28 19 29 29 19 22 7 30 8 30 7 31 30 31 32 32 31 33</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2577\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2583\" />\r\n\t\t\t\t\t<p>34 0 35 1 36 2 36 2 35 1 37 3 35 1 38 4 37 3 39 5 37 3 38 4 40 6 41 7 42 8 42 8 41 7 43 9 43 9 41 7 44 10 44 10 41 7 45 11 45 11 41 7 46 12 46 12 41 7 47 13 47 13 41 7 48 14 48 14 41 7 49 15 50 16 49 15 41 7 40 6 51 17 41 7 51 17 52 18 41 7 52 18 53 19 41 7 54 20 41 7 53 19 53 19 55 21 54 20 55 21 56 22 54 20 56 22 57 23 54 20 57 23 58 24 54 20 54 20 58 24 59 25 58 24 60 26 59 25 60 26 61 27 59 25 61 27 62 28 59 25 62 28 63 29 59 25 59 25 63 29 38 4 39 5 38 4 63 29 49 15 50 16 64 30 64 30 50 16 65 31 65 31 50 16 66 32 67 33 66 32 50 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2587\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2593\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2597\">580.3956105556151 3241.789149560116 338.2039479822249 580.3955907314895 3241.789154272113 338.0323735022821 561.1330843637907 3240.679830274257 338.0323735525362</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2597\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2594\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2598\">-0.05749454174103669 0.9983458200993497 3.406090247833884e-005 -0.05749454174103669 0.9983458200993497 3.406090247833884e-005 -0.05749454174103669 0.9983458200993497 3.406090247833884e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2598\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2596\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2599\">-194.5184613106518 112.8899193087048 -194.5184563524655 112.8326305647982 -189.6176729605236 112.832630581578</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2599\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2595\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2593\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2594\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2595\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2596\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2600\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2601\">\r\n\t\t\t\t\t<float_array count=\"348\" id=\"ID2604\">3451.889900995993 2414.419649979996 338.0323705967936 4187.988451426956 2362.909871132092 338.0323375267424 3398.075532863083 2317.413151062226 338.0323711712773 3459.598492684399 2414.863583160739 338.0323705766786 3907.349284017344 2440.648160285419 338.0323694093461 3907.576705886526 2440.661256804382 338.0323694115029 4054.465024881499 2410.773481184892 338.0323731477569 4154.84621446215 2416.562803581162 338.0323706665392 4131.977768330055 2453.583816883414 338.0323688223102 4154.84107421515 2416.571124966541 338.0323723954701 4254.91021780125 2460.663114755974 338.0323685015512 4194.55049074089 2363.284881367811 338.0323368100262 4201.099673595543 2363.664935650623 338.0323045561552 4201.108422642374 2363.666228477139 338.0323044781417 4201.11175661866 2363.666157200729 338.0323044761023 4201.118309513338 2363.666017107734 338.0323044643784 4888.695843644408 1236.145867315505 338.0323091089893 4254.911825957929 2460.665523468646 338.0323685015603 5111.967161930515 1054.664368286363 338.0323742778255 4888.716320125399 1236.112289073369 338.0323091091292 4888.741272898549 1236.071370408758 338.0323091092976 4889.163940539273 1235.378261256823 338.0323091121552 4889.182514109363 1235.34780349249 338.032309112277 4889.209504927073 1235.30354275191 338.0323091124644 4892.720892626292 1229.545413394693 338.0323091361861 4892.744082681367 1229.507385313392 338.0323091363446 4892.76744726701 1229.469071029117 338.0323091365041 4896.958990783469 1222.595721823733 338.0323091646653 4897.004966057395 1222.520329538115 338.0323091649757 4897.457586726615 1221.778102165303 338.0323091680361 4897.503700356105 1221.702482998126 338.0323091683425 4901.240679297272 1215.574419809757 338.032309193595 4901.287807414841 1215.497137040223 338.0323091939135 5111.808217642522 1054.75649172686 338.0323336950623 5100.182798759591 1050.854153713022 338.0323341084823 5099.38797868033 1040.674301204832 338.032334226312 5121.855230269825 1038.442970536969 338.0323743444669 5221.435157569532 852.0205664601183 338.0323319608044 5220.640337490329 841.8407139519629 338.0323320786383 5233.060576452464 855.9229044739641 338.0323315473887 5233.143006909115 855.8751294205642 338.032375094506 5248.078996716613 646.8136216466987 338.0323115375135 5110.218577485744 1034.396786713947 338.0323339307261 5121.843996368109 1038.299124726862 338.0323335173167 5231.470936295753 835.5631994610687 338.0323317830521 5243.096355178063 839.4655374739702 338.0323313696318 5243.101971231996 839.5374266548392 338.0323751616239 5359.640903016993 648.3550539158428 338.0323799913497 5248.080044289824 646.8117084315036 338.0323115455778 5250.512022631494 642.8236424345162 338.0323115538769 5250.521357954589 642.8085297714997 338.0323115540119 5250.522410553576 642.8066078589195 338.0323115539473 5250.796248647826 642.3577518665259 338.0323115422027 5250.811228098843 642.3331883315773 338.0323115351421 5022.846656299736 41.01746676564358 338.0323778730526 4967.576697477555 131.7114181700915 338.0323145582741 5022.852428938948 41.00798295840764 338.0323778731111 5359.679101219154 648.2923896717143 338.032375947316 5359.640903016993 648.3550539158428 338.0323799913497 5250.811228098843 642.3331883315773 338.0323115351421 5359.679101219154 648.2923896717143 338.032375947316 5022.852428938948 41.00798295840764 338.0323778731111 5022.846656299736 41.01746676564358 338.0323778730526 4967.576697477555 131.7114181700915 338.0323145582741 5250.796248647826 642.3577518665259 338.0323115422027 5250.522410553576 642.8066078589195 338.0323115539473 5250.521357954589 642.8085297714997 338.0323115540119 5250.512022631494 642.8236424345162 338.0323115538769 5248.080044289824 646.8117084315036 338.0323115455778 5248.078996716613 646.8136216466987 338.0323115375135 5243.101971231996 839.5374266548392 338.0323751616239 5243.096355178063 839.4655374739702 338.0323313696318 5231.470936295753 835.5631994610687 338.0323317830521 5220.640337490329 841.8407139519629 338.0323320786383 5121.855230269825 1038.442970536969 338.0323743444669 5121.843996368109 1038.299124726862 338.0323335173167 5110.218577485744 1034.396786713947 338.0323339307261 5099.38797868033 1040.674301204832 338.032334226312 4901.287807414841 1215.497137040223 338.0323091939135 5233.143006909115 855.8751294205642 338.032375094506 5233.060576452464 855.9229044739641 338.0323315473887 5221.435157569532 852.0205664601183 338.0323319608044 5100.182798759591 1050.854153713022 338.0323341084823 5111.808217642522 1054.75649172686 338.0323336950623 5111.967161930515 1054.664368286363 338.0323742778255 4901.240679297272 1215.574419809757 338.032309193595 4897.503700356105 1221.702482998126 338.0323091683425 4897.457586726615 1221.778102165303 338.0323091680361 4897.004966057395 1222.520329538115 338.0323091649757 4896.958990783469 1222.595721823733 338.0323091646653 4892.76744726701 1229.469071029117 338.0323091365041 4892.744082681367 1229.507385313392 338.0323091363446 4892.720892626292 1229.545413394693 338.0323091361861 4889.209504927073 1235.30354275191 338.0323091124644 4889.182514109363 1235.34780349249 338.032309112277 4889.163940539273 1235.378261256823 338.0323091121552 4888.741272898549 1236.071370408758 338.0323091092976 4888.716320125399 1236.112289073369 338.0323091091292 4888.695843644408 1236.145867315505 338.0323091089893 4254.911825957929 2460.665523468646 338.0323685015603 4254.91021780125 2460.663114755974 338.0323685015512 4201.118309513338 2363.666017107734 338.0323044643784 4201.11175661866 2363.666157200729 338.0323044761023 4201.108422642374 2363.666228477139 338.0323044781417 4201.099673595543 2363.664935650623 338.0323045561552 4194.55049074089 2363.284881367811 338.0323368100262 4187.988451426956 2362.909871132092 338.0323375267424 4154.84621446215 2416.562803581162 338.0323706665392 4154.84107421515 2416.571124966541 338.0323723954701 4131.977768330055 2453.583816883414 338.0323688223102 4054.465024881499 2410.773481184892 338.0323731477569 3907.576705886526 2440.661256804382 338.0323694115029 3907.349284017344 2440.648160285419 338.0323694093461 3459.598492684399 2414.863583160739 338.0323705766786 3451.889900995993 2414.419649979996 338.0323705967936 3398.075532863083 2317.413151062226 338.0323711712773</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"116\" source=\"#ID2604\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2602\">\r\n\t\t\t\t\t<float_array count=\"348\" id=\"ID2605\">-3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 -3.538571918510982e-008 -1.831875252357451e-008 -0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993 3.538571918510982e-008 1.831875252357451e-008 0.9999999999999993</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"116\" source=\"#ID2605\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2603\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2601\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2602\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"58\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2603\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 1 5 6 1 6 7 8 6 5 6 8 9 9 8 10 9 10 7 7 10 1 1 10 11 11 10 12 12 10 13 13 10 14 14 10 15 15 10 16 16 10 17 16 17 18 16 18 19 19 18 20 20 18 21 21 18 22 22 18 23 23 18 24 24 18 25 25 18 26 26 18 27 27 18 28 28 18 29 29 18 30 30 18 31 31 18 32 32 18 33 32 33 34 32 34 35 36 37 38 37 36 39 39 36 40 35 41 32 41 35 42 41 42 43 41 43 36 41 36 38 41 38 44 41 44 45 41 45 46 41 46 47 41 47 48 48 47 49 49 47 50 50 47 51 51 47 52 52 47 53 53 54 55 54 53 56 56 53 57 57 53 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"58\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2603\" />\r\n\t\t\t\t\t<p>58 59 60 60 59 61 61 59 62 63 62 59 59 58 64 64 58 65 65 58 66 66 58 67 67 58 68 68 58 69 58 70 69 70 71 69 71 72 69 72 73 69 73 74 69 74 75 69 75 76 69 76 77 69 78 69 77 79 74 80 80 74 81 73 81 74 77 82 78 82 83 78 83 84 78 78 84 85 85 84 86 86 84 87 87 84 88 88 84 89 89 84 90 90 84 91 91 84 92 92 84 93 93 84 94 94 84 95 95 84 96 96 84 97 97 84 98 84 99 98 99 100 98 98 100 101 101 100 102 102 100 103 103 100 104 104 100 105 105 100 106 106 100 107 107 100 108 100 109 108 108 109 110 111 110 109 107 110 106 110 111 106 111 112 106 112 113 106 113 114 106 115 106 114</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2606\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2612\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID2621\">2869.698327437569 2588.712967375728 185.6700955543461 3234.340506644589 2634.256760093004 507.9124634078057 3234.340505990967 2634.256757852965 185.6700944981453 2869.698327072765 2588.712967962198 195.5965610587843 2869.698327498615 2588.712968260949 285.6292874883277 2869.698327746619 2588.71296843486 338.0323696548443 2869.698328091189 2588.71296961577 507.9124644640019 2869.698328091189 2588.71296961577 507.9124644640019 2869.698327746619 2588.71296843486 338.0323696548443 3234.340506644589 2634.256760093004 507.9124634078057 2869.698327498615 2588.712968260949 285.6292874883277 2869.698327072765 2588.712967962198 195.5965610587843 2869.698327437569 2588.712967375728 185.6700955543461 3234.340505990967 2634.256757852965 185.6700944981453</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID2621\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2613\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID2622\">-0.1239369840046288 0.992290090646801 -6.120283763539876e-009 -0.1239369840046288 0.992290090646801 -6.120283763539876e-009 -0.1239369840046288 0.992290090646801 -6.120283763539876e-009 -0.1239369840046288 0.992290090646801 -6.120283763539876e-009 -0.1239369840046288 0.992290090646801 -6.120283763539876e-009 -0.1239369840046288 0.992290090646801 -6.120283763539876e-009 -0.1239369840046288 0.992290090646801 -6.120283763539876e-009 0.1239369840046288 -0.992290090646801 6.120283763539876e-009 0.1239369840046288 -0.992290090646801 6.120283763539876e-009 0.1239369840046288 -0.992290090646801 6.120283763539876e-009 0.1239369840046288 -0.992290090646801 6.120283763539876e-009 0.1239369840046288 -0.992290090646801 6.120283763539876e-009 0.1239369840046288 -0.992290090646801 6.120283763539876e-009 0.1239369840046288 -0.992290090646801 6.120283763539876e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID2622\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2615\">\r\n\t\t\t\t\t<float_array count=\"28\" id=\"ID2623\">0.9999999992127222 3.277659810230205e-009 0 0.9999999967223546 2.5204585085703e-009 0 1 0.03080434941466825 0.999999998749324 0.3101987891932823 0.9999999980209875 0.4728188759685531 0.9999999966922673 0.9999999999999999 -804.7762649726798 171.5872510690834 -804.7762648486587 114.1969333632913 -898.1150116050206 171.5872507122703 -804.7762647806766 96.49368485923532 -804.7762646639401 66.07807448702106 -804.7762647374237 62.72463269835669 -898.1150113697643 62.72463234154206</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID2623\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2614\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2612\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2613\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2614\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2615\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 1 1 4 4 5 5 1 1 5 5 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2614\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2615\" />\r\n\t\t\t\t\t<p>7 7 8 8 9 9 8 8 10 10 9 9 10 10 11 11 9 9 11 11 12 12 9 9 13 13 9 9 12 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2624\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2625\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2629\">2869.693290717507 2588.71063172805 338.1426176183711 2869.686044030127 2588.697566519802 338.1426193949667 2869.693290383267 2588.710631068937 195.4863141465741</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2629\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2626\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2625\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2626\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2626\" />\r\n\t\t\t\t\t<p>2 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2630\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2631\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID2635\">3451.883430139875 2414.419274208178 338.0323705968264 3398.075532863083 2317.413151062226 338.0323711712773 3398.075533022174 2317.413151376 405.9065176781757 3398.07392486418 2317.410742663026 405.9114459375885</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2635\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2632\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2631\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2632\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2632\" />\r\n\t\t\t\t\t<p>2 1 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2636\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2637\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID2639\">4142.842736379426 450.9923242525028 338.0323780539356 4358.708017179504 96.98280390386617 338.0323791873358 4273.459068598865 236.7812747131118 338.0323787397662 3882.06353027184 878.6707507488325 338.0323766846743 3882.066907069122 878.6758083879809 195.4863196756504 3882.027923021987 878.6687001342398 338.0323766926064 4358.70940061983 96.99260784575904 338.0323791797158 3882.063615794191 878.658556882091 338.0323766848346 3882.063606782421 878.6586083733814 338.3910000110552 3882.035107629937 878.6569182884164 338.0323766926427 4358.709482281512 96.98040130514596 338.0323791797262 4358.708815803071 96.98424296865551 338.0323791873352</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID2639\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2638\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2637\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2638\" />\r\n\t\t\t\t\t<p>1 0 4 3 3 5 3 6 0 7 7 8 11 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2638\" />\r\n\t\t\t\t\t<p>2 0 0 3 7 9 10 1 1 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2640\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2641\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID2643\">2462.60333722718 3256.282659173651 195.5965604289193 2462.603337901042 3256.282659646313 338.032369024963 2462.552854255104 3256.259431427779 338.0323499756472 2462.603337567115 3256.2826589878 195.4863120160284 2462.59996076965 3256.277601348127 338.0323690250253</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID2643\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2642\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2641\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2642\" />\r\n\t\t\t\t\t<p>1 0 2 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2642\" />\r\n\t\t\t\t\t<p>0 3 4 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2644\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2645\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2647\">2795.876454319882 1843.708634658072 507.9124680877038 1601.698526543271 1774.936159865141 507.9124712035491 1596.88786861124 1782.821376239037 507.9124711728326</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2647\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2646\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2645\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2646\" />\r\n\t\t\t\t\t<p>1 0 1 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2648\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2649\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2651\">417.5698352428262 2120.468109992484 195.4863220556794 417.5664584456038 2120.463052353422 338.0323790648662</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2651\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2650\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2649\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2650\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2652\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2653\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2655\">1357.881249868186 2174.615598457435 338.0323766114237 1357.8846266642 2174.620656097083 195.4863196022175</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2655\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2654\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2653\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2654\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2656\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2657\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID2659\">1413.227183959937 2083.895622265979 338.0323769009014 1413.227165347446 2083.895612789928 338.3075004297487 1407.470323809651 2093.329792556379 338.0323767886774 1357.871381892996 2174.611055614196 338.0323758218215 1357.881249825691 2174.615592738236 195.5106413723757</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID2659\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2658\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2657\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2658\" />\r\n\t\t\t\t\t<p>1 0 3 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2658\" />\r\n\t\t\t\t\t<p>0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2660\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2661\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2663\">3772.90690067163 872.3820357174966 405.9114517450729 4304.884474353458 4.320099833421409e-012 405.9114545294276 3772.908732637898 872.3845471649372 338.0323769696319</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2663\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2662\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2661\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2662\" />\r\n\t\t\t\t\t<p>1 0 2 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2664\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2667\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID2669\">1413.567074702545 2083.907424622199 507.9124702168492 1413.575070018294 2083.89429378846 507.9124702168808 1413.57713900011 2083.908004223142 507.9124702167908 1413.585133888157 2083.894873364724 507.9124702168439</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2669\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2668\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2667\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2668\" />\r\n\t\t\t\t\t<p>1 0 0 2 3 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2670\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2671\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID2673\">3772.903218638551 872.3764567473138 507.9124702864281 3772.894145798075 872.3759342441674 507.9124702864474 3772.906906612058 872.3820391240804 410.6515736371092 3401.251194450834 850.9730888980585 507.9124712559957</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2673\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2672\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2671\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2672\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2672\" />\r\n\t\t\t\t\t<p>2 0 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2674\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2675\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID2677\">2869.680438839097 2588.701626580527 507.9124644725864 3234.340506644589 2634.256760093004 507.9124634078057 3234.349397441165 2634.26990815024 195.4863130816982 3398.058305518444 2317.430821389781 507.9124627377533 3398.078974480122 2317.418326037669 185.6701058829467 3234.340505990967 2634.256757852965 185.6700944981453</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID2677\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2676\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2675\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2676\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2676\" />\r\n\t\t\t\t\t<p>2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2676\" />\r\n\t\t\t\t\t<p>3 1 4 3 5 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2678\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2679\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2681\">3156.885685205499 1882.564794168442 507.9124670623421 3156.881085834227 1882.572336537015 507.9124670623049 3156.877678367076 1882.577924338099 507.9124670622938</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2681\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2680\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2679\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2680\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2680\" />\r\n\t\t\t\t\t<p>2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2682\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2683\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2685\">3452.129556613269 2376.034759553177 368.5779545087136 3452.129555865984 2376.034759372302 338.0323761709456</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2685\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2684\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2683\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2684\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2686\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2687\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2689\">1.023181539494544e-011 2619.968437133815 338.0323777353405 0.002972572082626357 2619.968608386757 338.0323777353281 0.001608158262115467 2619.970845847286 338.0323777353232</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2689\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2688\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2687\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2688\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2690\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2691\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2693\">363.7569530104439 2023.454520493923 338.0323796392197 363.7569530149441 2023.454520502814 339.9530268641566</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2693\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2692\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2691\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2692\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2694\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2695\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2697\">349.5055381418474 3211.236386502039 359.5346057088835 20.90735921354849 2618.831980767275 359.5346092159415</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2697\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2696\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2695\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2696\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2698\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2699\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2701\">20.90663121138869 2618.832878355704 388.9418068826776 20.90730012473819 2618.831953706195 395.0507661167238</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2701\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2700\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2699\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2700\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2702\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2703\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2705\">1601.707351350876 1774.949392111018 507.9124844279927 1413.566008701218 2083.893771948946 507.9124720866323</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2705\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2704\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2703\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2704\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2706\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2707\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2709\">1413.562556079584 2083.899782024118 474.8765932465211 1413.566210282736 2083.893781494217 474.8765932466562</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2709\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2708\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2707\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2708\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2710\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2711\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2713\">4201.103928679747 2363.659400323358 338.0323690760098 4201.103928368069 2363.659399535612 195.4863104897202</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2713\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2712\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2711\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2712\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2714\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2715\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2717\">4054.463528665096 2410.782074895402 368.8215077240816 4054.462634468315 2410.787210964466 395.0505046510556</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2717\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2716\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2715\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2716\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2718\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2719\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2721\">1413.553360449541 2083.914407633863 338.0323802345448 1413.57258870184 2083.915515039829 338.0323768998325</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2721\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2720\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2719\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2720\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2722\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2723\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2725\">4967.550549934016 131.7632619427002 338.0323243683089 4358.712777753203 96.99766614515556 338.0323791796799</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2725\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2724\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2723\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2724\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2726\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2727\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID2729\">5022.852434916129 41.00798587711165 405.9114526494788 5022.85881469887 41.01816168422465 405.9114526484622 5022.852587197796 41.00693373574677 405.9114526485376 5022.860500036253 41.00844642034303 405.9114526394208</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2729\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2728\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2727\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2728\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2728\" />\r\n\t\t\t\t\t<p>2 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"1\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2728\" />\r\n\t\t\t\t\t<p>0 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2730\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2731\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2733\">5022.862519167484 41.01208683730602 405.9114526393838 5022.872178076994 40.99624748107271 405.9114526485266</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2733\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2732\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2731\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2732\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2734\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2735\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2737\">2869.635872188781 2588.709371836695 338.1425957762803 2869.698327072765 2588.712967962198 195.5965610587843</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2737\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2736\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2735\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2736\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2738\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2739\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2741\">2490.812816387384 3334.555095701135 369.5968340362671 2490.81252807858 3334.553839983671 369.5979713357238 2490.81252812381 3334.553840073727 388.9416746720838</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2741\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2740\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2739\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2740\" />\r\n\t\t\t\t\t<p>1 0 2 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2742\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2743\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2745\">2890.251277445956 2664.614515587349 405.911471491067 2890.251277318944 2664.614515397061 405.9168347089212 2890.246127410379 2664.605349849145 405.9114585078729</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2745\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2744\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2743\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2744\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2744\" />\r\n\t\t\t\t\t<p>2 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2746\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2747\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2749\">4358.712777417273 96.99766548561797 195.4863221704325 4358.83504671817 97.00464725492202 195.4863669404288</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2749\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2748\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2747\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2748\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2750\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2751\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2753\">3882.06352993578 878.6707500892508 195.4863196756754 3882.055971470413 878.622687553858 209.3258449359365</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2753\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2752\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2751\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2752\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2754\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2755\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID2757\">1357.887963890055 2174.619686230937 195.2772367924355 1357.887980820386 2174.61965853 195.4863196017026 1357.887978838591 2174.619656930899 185.6701013295264 1357.881249534156 2174.615597798877 195.4863196023266</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2757\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2756\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2755\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2756\" />\r\n\t\t\t\t\t<p>1 0 0 2 0 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2758\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2759\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2761\">4201.108422642374 2363.666228477139 338.0323044781417 4201.107308838959 2363.6645717314 185.6709169568256</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2761\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2760\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2759\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2760\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2762\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2763\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2765\">5250.811223598256 642.3331861080051 185.6700704841505 5250.769098389403 642.3561870933693 338.0323115398472</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2765\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2764\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2763\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2764\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2766\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2767\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2769\">813.3628129905801 3255.197728291426 338.0323728945524 813.3511779528562 3255.2031949078 338.0323728945552</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2769\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2768\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2767\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2768\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2770\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2771\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2773\">813.3477151341546 3255.20482183992 338.0323728944749 813.3477349422767 3255.204817131708 338.2038088621264</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2773\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2772\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2771\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2772\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2774\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2775\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2777\">794.0894295817575 3254.093893906208 338.0323729448077 794.0812727746481 3254.08728765141 338.0323729448624</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2777\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2776\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2775\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2776\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2778\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2779\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2781\">794.0918749920731 3254.095875981547 338.2014123182182 794.0918860998825 3254.095882388397 338.0323729447168</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2781\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2780\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2779\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2780\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2782\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2783\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2785\">561.1302985301699 3240.677575220453 338.0323735526458 561.1252239097752 3240.673463909178 338.0323735526787</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2785\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2784\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2783\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2784\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2786\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2787\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID2789\">561.1330732469328 3240.679823862194 338.2015506070475 561.1330843637907 3240.679830274257 338.0323735525362 561.1336754950928 3240.677769702798 338.0323735519786 561.1370524625228 3240.677964185286 338.0323735519505</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2789\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2788\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2787\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2788\" />\r\n\t\t\t\t\t<p>1 0 1 2 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2790\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2791\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2793\">350.2184987120041 3228.532817896926 352.1713067642687 350.2183867068414 3228.532721950621 354.7944871417632 453.624814163702 3234.486307695946 400.8213222392515</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2793\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2792\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2791\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2792\" />\r\n\t\t\t\t\t<p>1 0 1 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2794\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2795\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2797\">674.2956304388603 3247.194862030217 395.9875786311145 570.1026182654663 3241.195805023313 355.0021838477138</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2797\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2796\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2795\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2796\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2798\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2799\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID2801\">849.6819080016045 3257.296096330528 373.3403494717757 803.0622654955218 3254.6119058318 355.002110276555 952.6025085721542 3263.222835931762 386.1720006173134 1004.092087404649 3266.188889134886 363.3576380349614</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2801\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2800\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2799\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2800\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2802\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2803\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2805\">702.5944294521377 3248.825982679881 355.0021420053831 796.4500359173268 3254.231020075787 357.6031246433766 700.9078584178418 3248.72748241506 395.1859964078982</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2805\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2804\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2803\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2804\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2806\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2807\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2809\">2506.279343687546 3294.299235880203 389.2180512019033 2506.214347228281 3294.405711315216 388.9416748214538</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2809\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2808\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2807\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2808\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2810\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2811\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2813\">223.5474277272265 2253.394635674098 338.0323816844286 227.2967280467697 2247.24627256421 338.0323817100381</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2813\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2812\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2811\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2812\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2814\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2815\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2817\">247.8638557618547 2213.509116711724 338.032381850578 247.8715643088494 2213.504648914123 338.0323818505563</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2817\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2816\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2815\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2816\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2818\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2819\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2821\">237.8357855809707 2229.962015904868 338.0323817820204 237.8352174078091 2229.954774433543 338.0323817820892</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2821\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2820\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2819\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2820\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2822\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2823\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2825\">126.6156963191809 2412.340269975488 338.0323810225486 126.6192054990434 2412.33823616933 338.0323810225391 126.6128952048605 2412.341893527911 338.0323784113106</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2825\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2824\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2823\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2824\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2826\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2827\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2829\">116.583426771173 2428.7956031601 338.032380954012 116.5831667772641 2428.792308737518 338.0323809540423 116.5829774973772 2428.789884495798 338.0323783577592</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2829\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2828\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2827\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2828\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2830\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2831\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID2833\">3228.423805643941 1798.412502171324 380.4567957340174 3177.788941549805 1881.447146312822 395.0507965604148 3279.572066062153 1714.53595455031 395.0507966899046 3330.457823260279 1631.089878094177 380.4567959156304 3381.343519261324 1547.643902240334 395.0507968473848 3432.229276459448 1464.197825784173 380.4567960731019 3483.114972460478 1380.751849930578 395.0507970048287 3534.000729658552 1297.305773474477 380.45679623058 3567.786938860952 1241.900749671861 388.0401648446166 3599.021547511351 1190.680021550498 395.0508226399016 3664.042365295832 1084.054269491613 380.4568214623378 3729.063183172368 977.4285175286173 395.0508233204961 3794.084000933081 870.8027655087224 380.4568221429214 3859.1048187859 764.1770135847237 395.050823521734 3924.125636570302 657.5512615259024 380.4568228235164 3989.146454446893 550.925509562855 395.0508242023126 4054.167272207641 444.2997575430034 380.4568230247278 4119.188090060368 337.6740056190565 395.0508244035531</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID2833\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2832\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2831\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"17\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2832\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2834\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2835\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2837\">3552.569777445317 2381.886438210954 380.5317091261992 3652.916689797407 2387.664971742685 395.0462606218925</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2837\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2836\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2835\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2836\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2838\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2839\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2841\">4314.250543482114 17.79674957745328 380.4568014398298 4249.229725697749 124.4225016363953 395.0508250863365</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2841\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2840\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2839\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2840\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2842\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2843\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2845\">4154.84107430837 2416.571125157784 380.4567896032048 4257.692272610448 2422.493809076589 395.050788033868</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2845\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2844\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2843\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2844\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2846\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2847\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2849\">2013.835421130864 2135.735894427861 395.0507980781201 1913.77445052312 2129.973584103469 380.5029460609241 2114.214135156109 2141.516866771558 380.4567967414164</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2849\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2848\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2847\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2848\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2850\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2851\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2853\">2534.043969657804 3248.763797915986 380.4567906418931 2564.446958119209 3198.908842640721 389.1761894898675 2506.134518361626 3294.53598082235 387.3773730039012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2853\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2852\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2851\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2852\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2854\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2855\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2857\">2214.592519859111 2147.297456336168 395.0507975542842 2114.503024408917 2141.53350332339 380.4987983137949 2314.971233884329 2153.078428679863 380.4567962176408</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2857\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2856\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2855\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2856\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2858\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2859\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2861\">2707.541949789918 2964.24411279979 389.0732077638368 2733.797352179353 2921.18419089305 381.5428054034935</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2861\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2860\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2859\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2860\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2862\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2863\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2865\">2415.34961858733 2158.859018244483 395.0507970304645 2315.237199516633 2153.093745106434 380.4954649276882 2515.728332612527 2164.639990588152 380.456795693815</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2865\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2864\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2863\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2864\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2866\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2867\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2869\">2741.055656742985 2909.281097223505 381.4524903077562 2767.477338836437 2865.95470578208 389.0300738304945</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2869\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2868\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2867\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2868\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2870\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2871\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2873\">2616.129678040115 2170.421902311809 395.0516940361614 2515.975831803552 2164.654243569549 380.4927738168781</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2873\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2872\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2871\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2872\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2874\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2875\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2877\">503.1449181567592 2048.735706808391 380.4567752252451 373.1209277978068 2041.247475515841 395.0508021499836 332.3042486657166 2108.181030332588 383.4527860734019</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2877\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2876\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2875\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2876\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2878\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2879\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2881\">1044.291303839973 3251.248969160685 395.0508000388622 1174.315185523424 3258.737017754548 380.4567842679934 942.9762598999612 3245.41425468627 380.4567169136066 818.9576754194151 3238.272049973092 395.0507844859862 694.9452894481602 3231.130200050747 380.4567053542556 570.9315310008072 3223.988273267831 395.0507729241152 450.1040608459509 3217.029842018788 380.4566939445185 349.5055043918837 3211.236405122294 395.0507626096494</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2881\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2880\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2879\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2880\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5 5 6 6 7</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2882\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2883\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID2885\">868.5210868894972 2069.777466737458 395.0508010664173 753.479613442351 2063.152431105908 380.5903339076897 984.6252232494835 2076.464063066335 380.4568189879566 1100.72903840471 2083.150277084088 395.0508043358427 1216.833179843209 2089.836873705751 380.4567990828525</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID2885\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2884\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2883\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2884\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2886\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2887\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID2889\">1332.936991279531 2096.523087509142 395.0507998546913 1217.413716427506 2089.870305784126 380.5297712898512 1449.041118863353 2103.209683332128 380.4568564965817 1565.144941413748 2109.895897776153 395.050810996819 1681.249084233231 2116.582494477427 380.4567978711249</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID2889\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2888\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2887\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2888\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2890\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2891\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2893\">1797.35289566943 2123.268708280806 395.0507986429166 1681.661504683297 2116.60624504403 380.5086382396123 1913.457036427875 2129.955304863239 380.4567972652786</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2893\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2892\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2891\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2892\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2894\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2895\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2897\">2481.831185309417 3334.03660708854 393.3780230873814 2482.028439281092 3334.04796695623 393.3532287516987</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2897\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2896\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2895\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2896\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2898\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2899\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2901\">321.7603019473563 2125.471741297823 380.4567235437306 258.8905596002112 2228.570079049553 395.0507900556711 196.0239680885081 2331.66317848424 380.456718149596</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2901\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2900\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2899\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2900\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2902\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2903\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2905\">133.156638304733 2434.757559941917 395.0507775963947 96.24729994003178 2495.284112501781 386.2566608742557</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2905\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2904\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2903\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2904\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2906\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2907\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2909\">636.313135492731 2056.404656397654 395.0507964526187 503.6839711917794 2048.766750030515 380.5158516305339</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2909\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2908\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2907\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2908\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2910\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2911\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2913\">2516.406252625832 3353.281319802924 405.8035843871168 2516.364009677139 3353.278886770386 405.811476974771</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2913\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2912\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2911\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2912\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2914\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2915\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2917\">3907.349284017344 2440.648160285419 338.0323694093461 3905.475272871058 2440.541540283277 338.0323710227261</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2917\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2916\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2915\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2916\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2918\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2919\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID2921\">2494.001878992352 3314.433211986988 388.9416747575736 2494.439328389071 3313.715830900168 388.9416747598694 2482.047544648889 3334.03733860782 388.941674695011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID2921\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2920\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2919\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2920\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2922\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2923\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2925\">109.1351741542874 2626.260689874777 195.4863204412406 109.1317973569501 2626.255632235523 338.0323774505242</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2925\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2924\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2923\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2924\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2926\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2927\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2929\">2869.696667944471 2588.715688663044 195.5965610587872 2869.698327498615 2588.712968260949 285.6292874883277</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2929\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2928\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2927\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2928\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2930\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2931\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2933\">5233.143002875248 855.8751360549061 338.2155477712403 5233.143006627063 855.8751298982606 338.0457722786691</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2933\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2932\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2931\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2932\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2934\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2935\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2937\">5243.101971360684 839.53742644864 338.0447179266157 5243.101973101811 839.5374235940572 338.2121988600232</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2937\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2936\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2935\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2936\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2938\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2939\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2941\">5111.967157757561 1054.664375273218 338.2271684299661 5111.967161482166 1054.66436916131 338.0586011227989</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2941\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2940\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2939\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2940\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2942\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2943\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2945\">5121.85523054045 1038.442970222196 338.0575542759939 5121.855232268831 1038.442967388508 338.2238433898349</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2945\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2944\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2943\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2944\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2946\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2947\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2949\">5352.875360137713 659.453942012706 354.7946358644651 5352.875325003182 659.4539996039484 352.1714305764234</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2949\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2948\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2947\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2948\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2950\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2951\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID2953\">580.4067641256833 3241.783904549196 338.0323735023691 580.3995233539754 3241.787306612624 338.0323735023706</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID2953\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2952\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2951\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2952\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2955\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2958\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2961\">294.0871209704235 4.415429799564663e-007 159.7022268477719 160.9483951212455 774.7131331856607 159.7022225244112 5.002220859751105e-012 496.1681978801531 159.7022181790869 620.1337197004873 4.415414878167212e-007 159.702227008598 620.1337197004873 4.415414878167212e-007 159.702227008598 294.0871209704235 4.415429799564663e-007 159.7022268477719 160.9483951212455 774.7131331856607 159.7022225244112 5.002220859751105e-012 496.1681978801531 159.7022181790869</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2961\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2959\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2962\">-1.083433047074087e-008 2.764773867841379e-009 1 -1.083433047074087e-008 2.764773867841379e-009 1 -1.083433047074087e-008 2.764773867841379e-009 1 -1.083433047074087e-008 2.764773867841379e-009 1 1.083433047074087e-008 -2.764773867841379e-009 -1 1.083433047074087e-008 -2.764773867841379e-009 -1 1.083433047074087e-008 -2.764773867841379e-009 -1 1.083433047074087e-008 -2.764773867841379e-009 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2962\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2960\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2958\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2959\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2960\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2963\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2964\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2967\">160.9483968515092 774.7131327441205 4.345325322674398e-006 294.0871227006919 2.529532139305957e-012 8.668685040902346e-006 1.730270014377311e-006 496.1681974386122 2.842170943040401e-014 620.1337214307523 1.264766069652978e-012 8.82951164271617e-006 620.1337214307523 1.264766069652978e-012 8.82951164271617e-006 160.9483968515092 774.7131327441205 4.345325322674398e-006 294.0871227006919 2.529532139305957e-012 8.668685040902346e-006 1.730270014377311e-006 496.1681974386122 2.842170943040401e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2967\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2965\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2968\">1.083433047074087e-008 -2.764773867841379e-009 -1 1.083433047074087e-008 -2.764773867841379e-009 -1 1.083433047074087e-008 -2.764773867841379e-009 -1 1.083433047074087e-008 -2.764773867841379e-009 -1 -1.083433047074087e-008 2.764773867841379e-009 1 -1.083433047074087e-008 2.764773867841379e-009 1 -1.083433047074087e-008 2.764773867841379e-009 1 -1.083433047074087e-008 2.764773867841379e-009 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2968\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2966\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2964\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2965\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2966\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2969\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2975\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID2979\">294.0871209704235 4.415429799564663e-007 159.7022268477719 1.730270014377311e-006 496.1681974386122 2.842170943040401e-014 294.0871227006919 2.529532139305957e-012 8.668685040902346e-006 5.002220859751105e-012 496.1681978801531 159.7022181790869 5.002220859751105e-012 496.1681978801531 159.7022181790869 294.0871209704235 4.415429799564663e-007 159.7022268477719 1.730270014377311e-006 496.1681974386122 2.842170943040401e-014 294.0871227006919 2.529532139305957e-012 8.668685040902346e-006 620.1337214307523 1.264766069652978e-012 8.82951164271617e-006 294.0871209704235 4.415429799564663e-007 159.7022268477719 294.0871227006919 2.529532139305957e-012 8.668685040902346e-006 620.1337197004873 4.415414878167212e-007 159.702227008598 620.1337197004873 4.415414878167212e-007 159.702227008598 620.1337214307523 1.264766069652978e-012 8.82951164271617e-006 294.0871209704235 4.415429799564663e-007 159.7022268477719 294.0871227006919 2.529532139305957e-012 8.668685040902346e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID2979\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2976\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID2980\">-0.860244748472045 -0.5098813320040929 -7.910469307994021e-009 -0.860244748472045 -0.5098813320040929 -7.910469307994021e-009 -0.860244748472045 -0.5098813320040929 -7.910469307994021e-009 -0.860244748472045 -0.5098813320040929 -7.910469307994021e-009 0.860244748472045 0.5098813320040929 7.910469307994021e-009 0.860244748472045 0.5098813320040929 7.910469307994021e-009 0.860244748472045 0.5098813320040929 7.910469307994021e-009 0.860244748472045 0.5098813320040929 7.910469307994021e-009 -3.273297040889929e-015 -1 2.764773867827826e-009 -3.273297040889929e-015 -1 2.764773867827826e-009 -3.273297040889929e-015 -1 2.764773867827826e-009 -3.273297040889929e-015 -1 2.764773867827826e-009 3.273297040889929e-015 1 -2.764773867827826e-009 3.273297040889929e-015 1 -2.764773867827826e-009 3.273297040889929e-015 1 -2.764773867827826e-009 3.273297040889929e-015 1 -2.764773867827826e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID2980\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2978\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID2981\">-22.36185288928721 37.01843155715645 -20.99999999999937 37.99999999999888 -22.36185288928677 38.01845359673046 -20.99999999999982 36.99997796042487 -23.00000000001962 38.0000000000324 -22.36795379084595 37.0000000000348 -22.36795379084454 38.00000000003337 -23.00000000002104 37.00000000003383</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2981\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2977\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2975\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2976\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2977\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2978\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 9 5 10 6 9 5 8 4 11 7 12 7 13 4 14 5 15 6 14 5 13 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2982\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2983\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2987\">5.002220859751105e-012 496.1681978801531 159.7022181790869 160.9483968515092 774.7131327441205 4.345325322674398e-006 1.730270014377311e-006 496.1681974386122 2.842170943040401e-014 160.9483951212455 774.7131331856607 159.7022225244112 160.9483951212455 774.7131331856607 159.7022225244112 5.002220859751105e-012 496.1681978801531 159.7022181790869 160.9483968515092 774.7131327441205 4.345325322674398e-006 1.730270014377311e-006 496.1681974386122 2.842170943040401e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2987\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2984\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID2988\">-0.8658498285138107 0.5003039820575134 -1.076413055564607e-008 -0.8658498285138107 0.5003039820575134 -1.076413055564607e-008 -0.8658498285138107 0.5003039820575134 -1.076413055564607e-008 -0.8658498285138107 0.5003039820575134 -1.076413055564607e-008 0.8658498285138107 -0.5003039820575134 1.076413055564607e-008 0.8658498285138107 -0.5003039820575134 1.076413055564607e-008 0.8658498285138107 -0.5003039820575134 1.076413055564607e-008 0.8658498285138107 -0.5003039820575134 1.076413055564607e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID2988\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2986\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID2989\">-20.06329191858143 36.99997793931255 -21.00000000000004 36.99997796042526 -20.06329191858143 37.9999999788875 -21.00000000000004 38.00000000000022</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID2989\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2985\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2983\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2984\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2985\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2985\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2986\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID2990\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID2996\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3000\">160.9483968515092 774.7131327441205 4.345325322674398e-006 620.1337197004873 4.415414878167212e-007 159.702227008598 620.1337214307523 1.264766069652978e-012 8.82951164271617e-006 160.9483951212455 774.7131331856607 159.7022225244112 160.9483951212455 774.7131331856607 159.7022225244112 160.9483968515092 774.7131327441205 4.345325322674398e-006 620.1337197004873 4.415414878167212e-007 159.702227008598 620.1337214307523 1.264766069652978e-012 8.82951164271617e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3000\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2997\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3001\">0.860244748471994 0.5098813320041793 7.910469308021126e-009 0.860244748471994 0.5098813320041793 7.910469308021126e-009 0.860244748471994 0.5098813320041793 7.910469308021126e-009 0.860244748471994 0.5098813320041793 7.910469308021126e-009 -0.860244748471994 -0.5098813320041793 -7.910469308021126e-009 -0.860244748471994 -0.5098813320041793 -7.910469308021126e-009 -0.860244748471994 -0.5098813320041793 -7.910469308021126e-009 -0.860244748471994 -0.5098813320041793 -7.910469308021126e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3001\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID2999\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID3002\">468.9693191440468 36.99757954867416 471.8759660639048 36.00133981570886 471.8759660642346 37.0013096544266 468.969319143717 35.99760970995643 468.969319143717 35.99760970995642 468.9693191440468 36.99757954867415 471.8759660639047 36.00133981570885 471.8759660642346 37.00130965442659</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3002\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID2998\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID2996\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID2997\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID2998\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID2999\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 7 7 6 6 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3004\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3005\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3008\">-160.6658876199927 767.2351646593061 159.7022166100995 -232.030264007105 1437.72589464281 159.7022168465739 -388.5463431396256 1151.702990810933 159.7022176888007 160.9483951212642 774.7131331856033 159.7022225244112 160.9483951212642 774.7131331856033 159.7022225244112 -160.6658876199927 767.2351646593061 159.7022166100995 -232.030264007105 1437.72589464281 159.7022168465739 -388.5463431396256 1151.702990810933 159.7022176888007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3008\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3006\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3009\">-7.208962024985582e-009 -3.276936328625718e-010 1 -7.208962024985582e-009 -3.276936328625718e-010 1 -7.208962024985582e-009 -3.276936328625718e-010 1 -7.208962024985582e-009 -3.276936328625718e-010 1 7.208962024985582e-009 3.276936328625718e-010 -1 7.208962024985582e-009 3.276936328625718e-010 -1 7.208962024985582e-009 3.276936328625718e-010 -1 7.208962024985582e-009 3.276936328625718e-010 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3009\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3007\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3005\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3006\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3007\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3010\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3016\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID3020\">-388.5463431396256 1151.702990810933 159.7022176888007 -160.6658863658186 767.2351650209984 -1.568986931488325e-006 -160.6658876199927 767.2351646593061 159.7022166100995 -388.5463441286274 1151.702990699706 6.974064206133335e-007 -388.5463441286274 1151.702990699706 6.974064206133335e-007 -388.5463431396256 1151.702990810933 159.7022176888007 -160.6658863658186 767.2351650209984 -1.568986931488325e-006 -160.6658876199927 767.2351646593061 159.7022166100995 -388.5463431396256 1151.702990810933 159.7022176888007 -232.0302649961141 1437.725894531588 -1.44820404557322e-007 -388.5463441286274 1151.702990699706 6.974064206133335e-007 -232.030264007105 1437.72589464281 159.7022168465739 -232.030264007105 1437.72589464281 159.7022168465739 -388.5463431396256 1151.702990810933 159.7022176888007 -232.0302649961141 1437.725894531588 -1.44820404557322e-007 -388.5463441286274 1151.702990699706 6.974064206133335e-007 160.9483963754237 774.7131335473281 4.345325294252689e-006 -160.6658876199927 767.2351646593061 159.7022166100995 -160.6658863658186 767.2351650209984 -1.568986931488325e-006 160.9483951212642 774.7131331856033 159.7022225244112 160.9483951212642 774.7131331856033 159.7022225244112 160.9483963754237 774.7131335473281 4.345325294252689e-006 -160.6658876199927 767.2351646593061 159.7022166100995 -160.6658863658186 767.2351650209984 -1.568986931488325e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID3020\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3017\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID3021\">-0.8602447484719414 -0.5098813320042677 -7.910469308021124e-009 -0.8602447484719414 -0.5098813320042677 -7.910469308021124e-009 -0.8602447484719414 -0.5098813320042677 -7.910469308021124e-009 -0.8602447484719414 -0.5098813320042677 -7.910469308021124e-009 0.8602447484719414 0.5098813320042677 7.910469308021124e-009 0.8602447484719414 0.5098813320042677 7.910469308021124e-009 0.8602447484719414 0.5098813320042677 7.910469308021124e-009 0.8602447484719414 0.5098813320042677 7.910469308021124e-009 -0.8772454764010197 0.4800420545472535 5.098274763026389e-009 -0.8772454764010197 0.4800420545472535 5.098274763026389e-009 -0.8772454764010197 0.4800420545472535 5.098274763026389e-009 -0.8772454764010197 0.4800420545472535 5.098274763026389e-009 0.8772454764010197 -0.4800420545472535 -5.098274763026389e-009 0.8772454764010197 -0.4800420545472535 -5.098274763026389e-009 0.8772454764010197 -0.4800420545472535 -5.098274763026389e-009 0.8772454764010197 -0.4800420545472535 -5.098274763026389e-009 0.02324507447617282 -0.999729796751401 -2.081651020367737e-009 0.02324507447617282 -0.999729796751401 -2.081651020367737e-009 0.02324507447617282 -0.999729796751401 -2.081651020367737e-009 0.02324507447617282 -0.999729796751401 -2.081651020367737e-009 -0.02324507447617282 0.999729796751401 2.081651020367737e-009 -0.02324507447617282 0.999729796751401 2.081651020367737e-009 -0.02324507447617282 0.999729796751401 2.081651020367737e-009 -0.02324507447617282 0.999729796751401 2.081651020367737e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID3021\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3019\">\r\n\t\t\t\t\t<float_array count=\"40\" id=\"ID3022\">-346.0000000000035 56.99999999999384 -347.1847030121804 58.00000000703162 -347.1847030102271 56.9999999995888 -346.0000000000034 57.99999999999975 -346.0000000000035 57.99999999999976 -346.0000000000035 56.99999999999385 -347.1847030121805 58.00000000703162 -347.1847030102271 56.9999999995888 -345.9999999999421 56.99999999998989 -344.9999999999412 57.99999999998955 -345.9999999999411 57.99999999998956 -344.9999999999423 56.99999999998988 -348.0374578896972 57.99999997662311 -347.1847030102276 56.99999999958391 -347.184703012181 58.00000000703029 -348.0374578877438 56.99999996917673 -348.0374578877535 56.99999996917694 -348.0374578897068 57.99999997663379 -347.1847030102284 56.99999999958412 -347.1847030121817 58.00000000704097</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID3022\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3018\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3016\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3017\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3018\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3019\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 7 7 6 6 5 5 8 8 9 9 10 10 9 9 8 8 11 11 12 11 13 8 14 9 15 10 14 9 13 8 16 12 17 13 18 14 17 13 16 12 19 15 20 16 21 17 22 18 23 19 22 18 21 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3023\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3024\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3028\">160.9483963754237 774.7131335473281 4.345325294252689e-006 -232.030264007105 1437.72589464281 159.7022168465739 160.9483951212642 774.7131331856033 159.7022225244112 -232.0302649961141 1437.725894531588 -1.44820404557322e-007 -232.0302649961141 1437.725894531588 -1.44820404557322e-007 160.9483963754237 774.7131335473281 4.345325294252689e-006 -232.030264007105 1437.72589464281 159.7022168465739 160.9483951212642 774.7131331856033 159.7022225244112</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3028\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3025\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3029\">0.8602447491900563 0.5098813307927022 1.114017751500549e-009 0.8602447491900563 0.5098813307927022 1.114017751500549e-009 0.8602447491900563 0.5098813307927022 1.114017751500549e-009 0.8602447491900563 0.5098813307927022 1.114017751500549e-009 -0.8602447491900563 -0.5098813307927022 -1.114017751500549e-009 -0.8602447491900563 -0.5098813307927022 -1.114017751500549e-009 -0.8602447491900563 -0.5098813307927022 -1.114017751500549e-009 -0.8602447491900563 -0.5098813307927022 -1.114017751500549e-009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3029\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3027\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID3030\">473.4706062608644 36.99939833971389 470.9833822124732 35.99696331058114 473.4705456010514 35.99958712861445 470.9834428699078 36.99677451424256 470.9834428699077 36.99677451424255 473.4706062608643 36.99939833971389 470.9833822124732 35.99696331058113 473.4705456010513 35.99958712861444</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3030\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3026\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3024\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3025\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3026\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3027\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 7 7 6 6 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3031\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3032\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3035\">-232.0302649961141 1437.725894531588 -1.44820404557322e-007 -160.6658863658186 767.2351650209984 -1.568986931488325e-006 -388.5463441286274 1151.702990699706 6.974064206133335e-007 160.9483963754237 774.7131335473281 4.345325294252689e-006 160.9483963754237 774.7131335473281 4.345325294252689e-006 -232.0302649961141 1437.725894531588 -1.44820404557322e-007 -160.6658863658186 767.2351650209984 -1.568986931488325e-006 -388.5463441286274 1151.702990699706 6.974064206133335e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3035\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3033\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3036\">9.391606625822361e-009 1.981843320394061e-009 -1 9.391606625822361e-009 1.981843320394061e-009 -1 9.391606625822361e-009 1.981843320394061e-009 -1 9.391606625822361e-009 1.981843320394061e-009 -1 -9.391606625822361e-009 -1.981843320394061e-009 1 -9.391606625822361e-009 -1.981843320394061e-009 1 -9.391606625822361e-009 -1.981843320394061e-009 1 -9.391606625822361e-009 -1.981843320394061e-009 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3036\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3034\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3032\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3033\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3034\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3040\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3041\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID3044\">23.63642366208615 -26.75122154759231 -47.70636133229543 22.2015212944475 -13.11285553767067 -47.70641336807558 13.90124979322991 -33.57040454355229 -47.70605161296695 11.03144505794489 -6.293672523705851 -47.70615568452661 2.731173556726617 -26.7512215295815 -47.70579392941796 1.2962711890832 -13.11285551966245 -47.70584596519733 11.03144505794489 -6.293672523705851 -47.70615568452661 2.731173556726617 -26.7512215295815 -47.70579392941796 1.2962711890832 -13.11285551966245 -47.70584596519733 13.90124979322991 -33.57040454355229 -47.70605161296695 22.2015212944475 -13.11285553767067 -47.70641336807558 23.63642366208615 -26.75122154759231 -47.70636133229543 11.01875672552774 -6.301713319934606 389.4643190486136 11.03144505794489 -6.293672523705851 -47.70615568452661 22.18883299053664 -13.12089629470739 389.462874160858 22.2015212944475 -13.11285553767067 -47.70641336807558 11.03144505794489 -6.293672523705851 -47.70615568452661 22.18883299053664 -13.12089629470739 389.462874160858 22.2015212944475 -13.11285553767067 -47.70641336807558 11.01875672552774 -6.301713319934606 389.4643190486136 22.2015212944475 -13.11285553767067 -47.70641336807558 23.63642366208615 -26.75122154759231 -47.70636133229543 22.18883299053664 -13.12089629470739 389.462874160858 23.62373536358609 -26.75926229718684 389.4627006898787 23.63642366208615 -26.75122154759231 -47.70636133229543 22.18883299053664 -13.12089629470739 389.462874160858 23.62373536358609 -26.75926229718684 389.4627006898787 22.2015212944475 -13.11285553767067 -47.70641336807558 13.88851920925913 -33.57850341338533 391.2233808321582 23.62373536358609 -26.75926229718684 389.4627006898787 13.90124979322991 -33.57040454355229 -47.70605161296695 23.63642366208615 -26.75122154759231 -47.70636133229543 23.62373536358609 -26.75926229718684 389.4627006898787 13.90124979322991 -33.57040454355229 -47.70605161296695 23.63642366208615 -26.75122154759231 -47.70636133229543 13.88851920925913 -33.57850341338533 391.2233808321582 2.718485206623882 -26.75926235012631 389.4654169944066 13.88851920925913 -33.57850341338533 391.2233808321582 2.731173556726617 -26.7512215295815 -47.70579392941796 13.90124979322991 -33.57040454355229 -47.70605161296695 13.88851920925913 -33.57850341338533 391.2233808321582 2.731173556726617 -26.7512215295815 -47.70579392941796 13.90124979322991 -33.57040454355229 -47.70605161296695 2.718485206623882 -26.75926235012631 389.4654169944066 1.2962711890832 -13.11285551966245 -47.70584596519733 1.283582833568744 -13.12089634764379 389.465590465386 2.731173556726617 -26.7512215295815 -47.70579392941796 2.718485206623882 -26.75926235012631 389.4654169944066 1.283582833568744 -13.12089634764379 389.465590465386 2.731173556726617 -26.7512215295815 -47.70579392941796 2.718485206623882 -26.75926235012631 389.4654169944066 1.2962711890832 -13.11285551966245 -47.70584596519733 1.283582833568744 -13.12089634764379 389.465590465386 1.2962711890832 -13.11285551966245 -47.70584596519733 11.01875672552774 -6.301713319934606 389.4643190486136 11.03144505794489 -6.293672523705851 -47.70615568452661 1.2962711890832 -13.11285551966245 -47.70584596519733 11.01875672552774 -6.301713319934606 389.4643190486136 11.03144505794489 -6.293672523705851 -47.70615568452661 1.283582833568744 -13.12089634764379 389.465590465386</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID3044\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3042\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID3045\">-2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 0.5210619242131549 0.8535188751195267 3.082178046888042e-005 0.5210619242131549 0.8535188751195267 3.082178046888042e-005 0.5210619242131549 0.8535188751195267 3.082178046888042e-005 0.5210619242131549 0.8535188751195267 3.082178046888042e-005 -0.5210619242131549 -0.8535188751195267 -3.082178046888042e-005 -0.5210619242131549 -0.8535188751195267 -3.082178046888042e-005 -0.5210619242131549 -0.8535188751195267 -3.082178046888042e-005 -0.5210619242131549 -0.8535188751195267 -3.082178046888042e-005 0.9945108799681345 0.1046332102013843 3.078895815438144e-005 0.9945108799681345 0.1046332102013843 3.078895815438144e-005 0.9945108799681345 0.1046332102013843 3.078895815438144e-005 0.9945108799681345 0.1046332102013843 3.078895815438144e-005 -0.9945108799681345 -0.1046332102013843 -3.078895815438144e-005 -0.9945108799681345 -0.1046332102013843 -3.078895815438144e-005 -0.9945108799681345 -0.1046332102013843 -3.078895815438144e-005 -0.9945108799681345 -0.1046332102013843 -3.078895815438144e-005 0.5737207690513735 -0.8190509624905378 1.557036758695677e-006 0.5737207690513735 -0.8190509624905378 1.557036758695677e-006 0.5737207690513735 -0.8190509624905378 1.557036758695677e-006 0.5737207690513735 -0.8190509624905378 1.557036758695677e-006 -0.5737207690513735 0.8190509624905378 -1.557036758695677e-006 -0.5737207690513735 0.8190509624905378 -1.557036758695677e-006 -0.5737207690513735 0.8190509624905378 -1.557036758695677e-006 -0.5737207690513735 0.8190509624905378 -1.557036758695677e-006 -0.5210624895866387 -0.853518529965557 -3.0841676528717e-005 -0.5210624895866387 -0.853518529965557 -3.0841676528717e-005 -0.5210624895866387 -0.853518529965557 -3.0841676528717e-005 -0.5210624895866387 -0.853518529965557 -3.0841676528717e-005 0.5210624895866387 0.853518529965557 3.0841676528717e-005 0.5210624895866387 0.853518529965557 3.0841676528717e-005 0.5210624895866387 0.853518529965557 3.0841676528717e-005 0.5210624895866387 0.853518529965557 3.0841676528717e-005 -0.9945108799681038 -0.1046332102016798 -3.078894118640901e-005 -0.9945108799681038 -0.1046332102016798 -3.078894118640901e-005 -0.9945108799681038 -0.1046332102016798 -3.078894118640901e-005 -0.9945108799681038 -0.1046332102016798 -3.078894118640901e-005 0.9945108799681038 0.1046332102016798 3.078894118640901e-005 0.9945108799681038 0.1046332102016798 3.078894118640901e-005 0.9945108799681038 0.1046332102016798 3.078894118640901e-005 0.9945108799681038 0.1046332102016798 3.078894118640901e-005 -0.5737198708154458 0.8190515916772218 -1.586827988498502e-006 -0.5737198708154458 0.8190515916772218 -1.586827988498502e-006 -0.5737198708154458 0.8190515916772218 -1.586827988498502e-006 -0.5737198708154458 0.8190515916772218 -1.586827988498502e-006 0.5737198708154458 -0.8190515916772218 1.586827988498502e-006 0.5737198708154458 -0.8190515916772218 1.586827988498502e-006 0.5737198708154458 -0.8190515916772218 1.586827988498502e-006 0.5737198708154458 -0.8190515916772218 1.586827988498502e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID3045\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3043\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3041\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3042\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3043\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 2 2 3 4 5 4 3 6 7 8 7 6 9 9 6 10 9 10 11 12 13 14 15 14 13 16 17 18 17 16 19 20 21 22 23 22 21 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 44 45 46 47 46 45 48 49 50 49 48 51 52 53 54 55 54 53 56 57 58 57 56 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3046\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3049\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3051\">20.90849683442457 -0.007715229567139659 397.5527540878328 20.90624604557888 -0.00929183632575814 397.5527540878307</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3051\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3050\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3049\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3050\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3052\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3053\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3055\">2.716841321770971 -26.75350929184958 229.5485349495176 2.715939180942996 -26.74970186220193 147.6587695699113</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3055\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3054\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3053\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3054\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3061\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3062\">\r\n\t\t\t\t\t<float_array count=\"396\" id=\"ID3065\">511.1326915139907 20.48692687606945 237.034635267898 12.59686046467573 850.0721034544026 240.5778977050348 511.1326913022655 20.48692669289176 240.5779422682739 12.59685968724796 850.0721052835779 237.0345907046586 12.59685968724796 850.0721052835779 237.0345907046586 511.1326915139907 20.48692687606945 237.034635267898 12.59686046467573 850.0721034544026 240.5778977050348 511.1326913022655 20.48692669289176 240.5779422682739 509.1281321369163 16.94361981146085 237.0346349758895 511.1326913022655 20.48692669289176 240.5779422682739 509.1281319129927 16.94361960672086 240.5779420625065 511.1326915139907 20.48692687606945 237.034635267898 511.1326915139907 20.48692687606945 237.034635267898 509.1281321369163 16.94361981146085 237.0346349758895 511.1326913022655 20.48692669289176 240.5779422682739 509.1281319129927 16.94361960672086 240.5779420625065 1.14326534140821 843.1891095929541 237.0345976980711 5.822774791928055 841.8673468899938 237.034593879139 3.880960481752823 838.633469741033 237.034596778856 12.59685968724796 850.0721052835779 237.0345907046586 3.891791560176785 838.6399786380671 237.0345967603313 11.38489703170046 845.2098839356718 237.0345904829808 509.1281321369163 16.94361981146085 237.0346349758895 511.1326915139907 20.48692687606945 237.034635267898 6.555265697705409 840.6484512123025 237.0345950887412 6.735340578949604 840.3487990355002 237.0345955092305 5.822774791928055 841.8673468899938 237.034593879139 3.891791560176785 838.6399786380671 237.0345967603313 6.555265697705409 840.6484512123025 237.0345950887412 6.735340578949604 840.3487990355002 237.0345955092305 511.1326915139907 20.48692687606945 237.034635267898 12.59685968724796 850.0721052835779 237.0345907046586 509.1281321369163 16.94361981146085 237.0346349758895 11.38489703170046 845.2098839356718 237.0345904829808 3.880960481752823 838.633469741033 237.034596778856 1.14326534140821 843.1891095929541 237.0345976980711 1.14326534140821 843.1891095929541 237.0345976980711 12.59686046467573 850.0721034544026 240.5778977050348 12.59685968724796 850.0721052835779 237.0345907046586 1.143266107510954 843.1891077569794 240.5779046984485 1.143266107510954 843.1891077569794 240.5779046984485 1.14326534140821 843.1891095929541 237.0345976980711 12.59686046467573 850.0721034544026 240.5778977050348 12.59685968724796 850.0721052835779 237.0345907046586 6.735340240634173 840.3487990211274 240.5779025958444 5.82277556198801 841.8673450312385 240.5779009657525 3.880960143442167 838.6334697266725 240.5779038654694 1.143266107510954 843.1891077569794 240.5779046984485 12.59686046467573 850.0721034544026 240.5778977050348 11.38489780175758 845.2098820769124 240.577897569594 509.1281319129927 16.94361960672086 240.5779420625065 511.1326913022655 20.48692669289176 240.5779422682739 511.1326913022655 20.48692669289176 240.5779422682739 509.1281319129927 16.94361960672086 240.5779420625065 12.59686046467573 850.0721034544026 240.5778977050348 11.38489780175758 845.2098820769124 240.577897569594 5.82277556198801 841.8673450312385 240.5779009657525 3.880960143442167 838.6334697266725 240.5779038654694 1.143266107510954 843.1891077569794 240.5779046984485 6.735340240634173 840.3487990211274 240.5779025958444 11.38489780175758 845.2098820769124 240.577897569594 509.1281321369163 16.94361981146085 237.0346349758895 509.1281319129927 16.94361960672086 240.5779420625065 11.38489703170046 845.2098839356718 237.0345904829808 11.38489703170046 845.2098839356718 237.0345904829808 11.38489780175758 845.2098820769124 240.577897569594 509.1281321369163 16.94361981146085 237.0346349758895 509.1281319129927 16.94361960672086 240.5779420625065 6.735340299927202 840.348799023644 239.9568653822007 3.891791560176785 838.6399786380671 237.0345967603313 6.735340578949604 840.3487990355002 237.0345955092305 3.880960143442167 838.6334697266725 240.5779038654694 6.733567471582887 840.347733679861 240.5368192336236 6.733567471582887 840.347733679861 240.5368192336236 6.735340299927202 840.348799023644 239.9568653822007 3.880960143442167 838.6334697266725 240.5779038654694 3.891791560176785 838.6399786380671 237.0345967603313 6.735340578949604 840.3487990355002 237.0345955092305 3.880960143442167 838.6334697266725 240.5779038654694 3.880960481752823 838.633469741033 237.034596778856 3.891791560176785 838.6399786380671 237.0345967603313 3.891791560176785 838.6399786380671 237.0345967603313 3.880960481752823 838.633469741033 237.034596778856 3.880960143442167 838.6334697266725 240.5779038654694 1.143266107510954 843.1891077569794 240.5779046984485 3.880960481752823 838.633469741033 237.034596778856 3.880960143442167 838.6334697266725 240.5779038654694 1.14326534140821 843.1891095929541 237.0345976980711 1.14326534140821 843.1891095929541 237.0345976980711 1.143266107510954 843.1891077569794 240.5779046984485 3.880960481752823 838.633469741033 237.034596778856 3.880960143442167 838.6334697266725 240.5779038654694 11.38489780175758 845.2098820769124 240.577897569594 5.822774791928055 841.8673468899938 237.034593879139 11.38489703170046 845.2098839356718 237.0345904829808 5.82277556198801 841.8673450312385 240.5779009657525 5.82277556198801 841.8673450312385 240.5779009657525 11.38489780175758 845.2098820769124 240.577897569594 5.822774791928055 841.8673468899938 237.034593879139 11.38489703170046 845.2098839356718 237.0345904829808 5.822774791928055 841.8673468899938 237.034593879139 6.159334918596869 841.3072966393579 237.3001484673279 6.555265697705409 840.6484512123025 237.0345950887412 5.82277556198801 841.8673450312385 240.5779009657525 6.735340240634173 840.3487990211274 240.5779025958444 6.667998832690387 840.4608580248587 240.1583939714193 6.735340299927202 840.348799023644 239.9568653822007 6.159334918596869 841.3072966393579 237.3001484673279 6.667998832690387 840.4608580248587 240.1583939714193 5.82277556198801 841.8673450312385 240.5779009657525 6.735340299927202 840.348799023644 239.9568653822007 6.735340240634173 840.3487990211274 240.5779025958444 5.822774791928055 841.8673468899938 237.034593879139 6.555265697705409 840.6484512123025 237.0345950887412 6.735340578949604 840.3487990355002 237.0345955092305 6.667998832690387 840.4608580248587 240.1583939714193 6.735340299927202 840.348799023644 239.9568653822007 6.555265697705409 840.6484512123025 237.0345950887412 6.159334918596869 841.3072966393579 237.3001484673279 6.159334918596869 841.3072966393579 237.3001484673279 6.555265697705409 840.6484512123025 237.0345950887412 6.667998832690387 840.4608580248587 240.1583939714193 6.735340578949604 840.3487990355002 237.0345955092305 6.735340299927202 840.348799023644 239.9568653822007 6.735340240634173 840.3487990211274 240.5779025958444 6.733567471582887 840.347733679861 240.5368192336236 6.735340299927202 840.348799023644 239.9568653822007 3.880960143442167 838.6334697266725 240.5779038654694 3.880960143442167 838.6334697266725 240.5779038654694 6.735340240634173 840.3487990211274 240.5779025958444 6.733567471582887 840.347733679861 240.5368192336236 6.735340299927202 840.348799023644 239.9568653822007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"132\" source=\"#ID3065\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3063\">\r\n\t\t\t\t\t<float_array count=\"396\" id=\"ID3066\">0.8571350192759588 0.5150917964118589 7.784536131222146e-008 0.8571350192759588 0.5150917964118589 7.784536131222146e-008 0.8571350192759588 0.5150917964118589 7.784536131222146e-008 0.8571350192759588 0.5150917964118589 7.784536131222146e-008 -0.8571350192759588 -0.5150917964118589 -7.784536131222146e-008 -0.8571350192759588 -0.5150917964118589 -7.784536131222146e-008 -0.8571350192759588 -0.5150917964118589 -7.784536131222146e-008 -0.8571350192759588 -0.5150917964118589 -7.784536131222146e-008 0.8703712032425038 -0.4923961500318577 2.655246442914694e-008 0.8703712032425038 -0.4923961500318577 2.655246442914694e-008 0.8703712032425038 -0.4923961500318577 2.655246442914694e-008 0.8703712032425038 -0.4923961500318577 2.655246442914694e-008 -0.8703712032425038 0.4923961500318577 -2.655246442914694e-008 -0.8703712032425038 0.4923961500318577 -2.655246442914694e-008 -0.8703712032425038 0.4923961500318577 -2.655246442914694e-008 -0.8703712032425038 0.4923961500318577 -2.655246442914694e-008 -4.041189048230078e-007 -2.962923343489195e-007 -0.9999999999998745 -4.041189048230078e-007 -2.962923343489195e-007 -0.9999999999998745 -4.041189048230078e-007 -2.962923343489195e-007 -0.9999999999998745 -4.041189048230078e-007 -2.962923343489195e-007 -0.9999999999998745 -4.041189048230078e-007 -2.962923343489195e-007 -0.9999999999998745 -4.041189048230078e-007 -2.962923343489195e-007 -0.9999999999998745 -4.041189048230078e-007 -2.962923343489195e-007 -0.9999999999998745 -4.041189048230078e-007 -2.962923343489195e-007 -0.9999999999998745 -4.041189048230078e-007 -2.962923343489195e-007 -0.9999999999998745 -4.041189048230078e-007 -2.962923343489195e-007 -0.9999999999998745 4.041189048230078e-007 2.962923343489195e-007 0.9999999999998745 4.041189048230078e-007 2.962923343489195e-007 0.9999999999998745 4.041189048230078e-007 2.962923343489195e-007 0.9999999999998745 4.041189048230078e-007 2.962923343489195e-007 0.9999999999998745 4.041189048230078e-007 2.962923343489195e-007 0.9999999999998745 4.041189048230078e-007 2.962923343489195e-007 0.9999999999998745 4.041189048230078e-007 2.962923343489195e-007 0.9999999999998745 4.041189048230078e-007 2.962923343489195e-007 0.9999999999998745 4.041189048230078e-007 2.962923343489195e-007 0.9999999999998745 4.041189048230078e-007 2.962923343489195e-007 0.9999999999998745 -0.5150920630576553 0.8571348590360212 5.554959218557565e-007 -0.5150920630576553 0.8571348590360212 5.554959218557565e-007 -0.5150920630576553 0.8571348590360212 5.554959218557565e-007 -0.5150920630576553 0.8571348590360212 5.554959218557565e-007 0.5150920630576553 -0.8571348590360212 -5.554959218557565e-007 0.5150920630576553 -0.8571348590360212 -5.554959218557565e-007 0.5150920630576553 -0.8571348590360212 -5.554959218557565e-007 0.5150920630576553 -0.8571348590360212 -5.554959218557565e-007 4.066207291196101e-007 2.978020728528104e-007 0.999999999999873 4.066207291196101e-007 2.978020728528104e-007 0.999999999999873 4.066207291196101e-007 2.978020728528104e-007 0.999999999999873 4.066207291196101e-007 2.978020728528104e-007 0.999999999999873 4.066207291196101e-007 2.978020728528104e-007 0.999999999999873 4.066207291196101e-007 2.978020728528104e-007 0.999999999999873 4.066207291196101e-007 2.978020728528104e-007 0.999999999999873 4.066207291196101e-007 2.978020728528104e-007 0.999999999999873 -4.066207291196101e-007 -2.978020728528104e-007 -0.999999999999873 -4.066207291196101e-007 -2.978020728528104e-007 -0.999999999999873 -4.066207291196101e-007 -2.978020728528104e-007 -0.999999999999873 -4.066207291196101e-007 -2.978020728528104e-007 -0.999999999999873 -4.066207291196101e-007 -2.978020728528104e-007 -0.999999999999873 -4.066207291196101e-007 -2.978020728528104e-007 -0.999999999999873 -4.066207291196101e-007 -2.978020728528104e-007 -0.999999999999873 -4.066207291196101e-007 -2.978020728528104e-007 -0.999999999999873 -0.8571350195311205 -0.5150917959872577 -8.392973404821886e-008 -0.8571350195311205 -0.5150917959872577 -8.392973404821886e-008 -0.8571350195311205 -0.5150917959872577 -8.392973404821886e-008 -0.8571350195311205 -0.5150917959872577 -8.392973404821886e-008 0.8571350195311205 0.5150917959872577 8.392973404821886e-008 0.8571350195311205 0.5150917959872577 8.392973404821886e-008 0.8571350195311205 0.5150917959872577 8.392973404821886e-008 0.8571350195311205 0.5150917959872577 8.392973404821886e-008 0.5150920630552186 -0.8571348590376644 4.570534459412347e-008 0.5150920630552186 -0.8571348590376644 4.570534459412347e-008 0.5150920630552186 -0.8571348590376644 4.570534459412347e-008 0.5150920630552186 -0.8571348590376644 4.570534459412347e-008 0.5150920630552186 -0.8571348590376644 4.570534459412347e-008 -0.5150920630552186 0.8571348590376644 -4.570534459412347e-008 -0.5150920630552186 0.8571348590376644 -4.570534459412347e-008 -0.5150920630552186 0.8571348590376644 -4.570534459412347e-008 -0.5150920630552186 0.8571348590376644 -4.570534459412347e-008 -0.5150920630552186 0.8571348590376644 -4.570534459412347e-008 0.5150920637455113 -0.8571348586228356 4.570669371236897e-008 0.5150920637455113 -0.8571348586228356 4.570669371236897e-008 0.5150920637455113 -0.8571348586228356 4.570669371236897e-008 -0.5150920637455113 0.8571348586228356 -4.570669371236897e-008 -0.5150920637455113 0.8571348586228356 -4.570669371236897e-008 -0.5150920637455113 0.8571348586228356 -4.570669371236897e-008 -0.8571348586326126 -0.5150920637292369 -8.275083063855188e-008 -0.8571348586326126 -0.5150920637292369 -8.275083063855188e-008 -0.8571348586326126 -0.5150920637292369 -8.275083063855188e-008 -0.8571348586326126 -0.5150920637292369 -8.275083063855188e-008 0.8571348586326126 0.5150920637292369 8.275083063855188e-008 0.8571348586326126 0.5150920637292369 8.275083063855188e-008 0.8571348586326126 0.5150920637292369 8.275083063855188e-008 0.8571348586326126 0.5150920637292369 8.275083063855188e-008 0.515092063058255 -0.857134859035657 -5.615818155764809e-007 0.515092063058255 -0.857134859035657 -5.615818155764809e-007 0.515092063058255 -0.857134859035657 -5.615818155764809e-007 0.515092063058255 -0.857134859035657 -5.615818155764809e-007 -0.515092063058255 0.857134859035657 5.615818155764809e-007 -0.515092063058255 0.857134859035657 5.615818155764809e-007 -0.515092063058255 0.857134859035657 5.615818155764809e-007 -0.515092063058255 0.857134859035657 5.615818155764809e-007 0.8571348590369193 0.5150920630564535 8.392960748947545e-008 0.8571348590369193 0.5150920630564535 8.392960748947545e-008 0.8571348590369193 0.5150920630564535 8.392960748947545e-008 0.8571348590369193 0.5150920630564535 8.392960748947545e-008 0.8571348590369193 0.5150920630564535 8.392960748947545e-008 0.8571348590369193 0.5150920630564535 8.392960748947545e-008 0.8571348590369193 0.5150920630564535 8.392960748947545e-008 -0.8571348590369193 -0.5150920630564535 -8.392960748947545e-008 -0.8571348590369193 -0.5150920630564535 -8.392960748947545e-008 -0.8571348590369193 -0.5150920630564535 -8.392960748947545e-008 -0.8571348590369193 -0.5150920630564535 -8.392960748947545e-008 -0.8571348590369193 -0.5150920630564535 -8.392960748947545e-008 -0.8571348590369193 -0.5150920630564535 -8.392960748947545e-008 -0.8571348590369193 -0.5150920630564535 -8.392960748947545e-008 0.8571348590399259 0.5150920630514503 8.392822155310652e-008 0.8571348590399259 0.5150920630514503 8.392822155310652e-008 0.8571348590399259 0.5150920630514503 8.392822155310652e-008 0.8571348590399259 0.5150920630514503 8.392822155310652e-008 0.8571348590399259 0.5150920630514503 8.392822155310652e-008 -0.8571348590399259 -0.5150920630514503 -8.392822155310652e-008 -0.8571348590399259 -0.5150920630514503 -8.392822155310652e-008 -0.8571348590399259 -0.5150920630514503 -8.392822155310652e-008 -0.8571348590399259 -0.5150920630514503 -8.392822155310652e-008 -0.8571348590399259 -0.5150920630514503 -8.392822155310652e-008 0.5150920630564204 -0.8571348590369423 4.571306522378749e-008 0.5150920630564204 -0.8571348590369423 4.571306522378749e-008 0.5150920630564204 -0.8571348590369423 4.571306522378749e-008 0.5150920630564204 -0.8571348590369423 4.571306522378749e-008 -0.5150920630564204 0.8571348590369423 -4.571306522378749e-008 -0.5150920630564204 0.8571348590369423 -4.571306522378749e-008 -0.5150920630564204 0.8571348590369423 -4.571306522378749e-008 -0.5150920630564204 0.8571348590369423 -4.571306522378749e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"132\" source=\"#ID3066\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3064\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3062\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3063\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"80\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3064\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 18 17 20 17 19 21 21 19 22 22 19 23 20 24 25 24 20 17 26 27 28 29 28 27 30 31 32 32 31 33 33 31 26 27 26 34 31 35 26 34 26 35 36 37 38 37 36 39 40 41 42 43 42 41 44 45 46 47 45 48 45 47 46 48 45 49 48 49 50 48 50 51 52 53 54 53 55 54 55 56 54 57 58 56 54 56 58 57 56 59 60 61 62 61 60 63 64 65 66 67 66 65 68 69 70 69 68 71 71 68 72 73 74 75 75 74 76 77 76 74 78 79 80 81 82 83 84 85 86 85 84 87 88 89 90 91 90 89 92 93 94 93 92 95 96 97 98 99 98 97 100 101 102 101 100 103 104 105 103 105 104 106 103 105 101 107 108 109 110 111 108 109 108 111 109 112 107 113 107 112 114 115 116 115 114 117 115 117 118 119 120 121 120 122 121 123 121 122 124 125 126 125 124 127 128 129 130 131 130 129</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3067\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3068\">\r\n\t\t\t\t\t<float_array count=\"468\" id=\"ID3071\">5.854944023249345 841.8865441398571 227.683923943519 5.729100873242714 841.8109147661853 231.227228659693 5.72909950125063 841.8109183819197 227.6839229050216 5.854411004825806 841.8862204343232 231.2272285831818 5.854411004825806 841.8862204343232 231.2272285831818 5.854944023249345 841.8865441398571 227.683923943519 5.729100873242714 841.8109147661853 231.227228659693 5.72909950125063 841.8109183819197 227.6839229050216 1.45958447607461 843.3790656615302 227.6839253406183 3.787286465199372 838.577039096579 227.6839269668697 1.049590050728966 843.1326810848773 227.6839267239515 5.72909950125063 841.8109183819197 227.6839229050216 12.50318500803837 850.0156750241395 227.6839197305386 3.797396178584336 838.5831144919125 227.6839258258936 5.854944023249345 841.8865441398571 227.683923943519 11.29122235249213 845.1534536762169 227.6839195088608 509.1777217264822 16.96988608086622 227.6839641374791 511.1822811035565 20.51319314547891 227.6839644294876 6.08394049643664 841.2204480404002 227.6839240513133 6.641666558226575 840.2923684141838 227.6839229435494 5.858686061832145 841.5952808943675 227.6839240313398 5.734331208969024 841.8022126002211 227.6839240203128 5.734331208969024 841.8022126002211 227.6839240203128 5.72909950125063 841.8109183819197 227.6839229050216 5.858686061832145 841.5952808943675 227.6839240313398 6.08394049643664 841.2204480404002 227.6839240513133 3.797396178584336 838.5831144919125 227.6839258258936 6.641666558226575 840.2923684141838 227.6839229435494 511.1822811035565 20.51319314547891 227.6839644294876 12.50318500803837 850.0156750241395 227.6839197305386 509.1777217264822 16.96988608086622 227.6839641374791 11.29122235249213 845.1534536762169 227.6839195088608 5.854944023249345 841.8865441398571 227.683923943519 3.787286465199372 838.577039096579 227.6839269668697 1.45958447607461 843.3790656615302 227.6839253406183 1.049590050728966 843.1326810848773 227.6839267239515 11.29122311301444 845.1534518118597 231.2272252635356 5.854944023249345 841.8865441398571 227.683923943519 11.29122235249213 845.1534536762169 227.6839195088608 5.854411004825806 841.8862204343232 231.2272285831818 5.854411004825806 841.8862204343232 231.2272285831818 11.29122311301444 845.1534518118597 231.2272252635356 5.854944023249345 841.8865441398571 227.683923943519 11.29122235249213 845.1534536762169 227.6839195088608 6.641665897689677 840.2923681806483 231.2272308277335 5.729100873242714 841.8109147661853 231.227228659693 3.787285958925054 838.5770389813902 231.227232635304 5.734175518635539 841.8024802760624 231.2272286717467 1.534966445479427 843.4243628192062 231.227232096026 1.049591418769637 843.1326774919212 231.2272323923901 12.5031857759335 850.0156731893535 231.2272253989749 5.854411004825806 841.8862204343232 231.2272285831818 11.29122311301444 845.1534518118597 231.2272252635356 509.1777214930265 16.96988587050873 231.2272698921543 511.1822808822976 20.51319295668191 231.2272700979243 511.1822808822976 20.51319295668191 231.2272700979243 509.1777214930265 16.96988587050873 231.2272698921543 12.5031857759335 850.0156731893535 231.2272253989749 11.29122311301444 845.1534518118597 231.2272252635356 5.854411004825806 841.8862204343232 231.2272285831818 5.729100873242714 841.8109147661853 231.227228659693 1.534966445479427 843.4243628192062 231.227232096026 3.787285958925054 838.5770389813902 231.227232635304 1.049591418769637 843.1326774919212 231.2272323923901 5.734175518635539 841.8024802760624 231.2272286717467 6.641665897689677 840.2923681806483 231.2272308277335 5.72909950125063 841.8109183819197 227.6839229050216 5.734175518635539 841.8024802760624 231.2272286717467 5.734331208969024 841.8022126002211 227.6839240203128 5.729100873242714 841.8109147661853 231.227228659693 5.729100873242714 841.8109147661853 231.227228659693 5.72909950125063 841.8109183819197 227.6839229050216 5.734175518635539 841.8024802760624 231.2272286717467 5.734331208969024 841.8022126002211 227.6839240203128 6.641666277098011 840.2923683886274 230.8541521039403 3.797396178584336 838.5831144919125 227.6839258258936 6.641666558226575 840.2923684141838 227.6839229435494 3.787286465199372 838.577039096579 227.6839269668697 3.787285958925054 838.5770389813902 231.227232635304 6.641608361891485 840.2923335856945 230.873036296223 6.641425021748546 840.2922234112971 230.9328173275824 6.641665897689677 840.2923681806483 231.2272308277335 6.641665897689677 840.2923681806483 231.2272308277335 6.641425021748546 840.2922234112971 230.9328173275824 3.787285958925054 838.5770389813902 231.227232635304 6.641608361891485 840.2923335856945 230.873036296223 6.641666277098011 840.2923683886274 230.8541521039403 3.787286465199372 838.577039096579 227.6839269668697 3.797396178584336 838.5831144919125 227.6839258258936 6.641666558226575 840.2923684141838 227.6839229435494 1.049591418769637 843.1326774919212 231.2272323923901 3.787286465199372 838.577039096579 227.6839269668697 3.787285958925054 838.5770389813902 231.227232635304 1.049590050728966 843.1326810848773 227.6839267239515 1.049590050728966 843.1326810848773 227.6839267239515 1.049591418769637 843.1326774919212 231.2272323923901 3.787286465199372 838.577039096579 227.6839269668697 3.787285958925054 838.5770389813902 231.227232635304 1.45958447607461 843.3790656615302 227.6839253406183 12.5031857759335 850.0156731893535 231.2272253989749 12.50318500803837 850.0156750241395 227.6839197305386 1.049590050728966 843.1326810848773 227.6839267239515 1.534966445479427 843.4243628192062 231.227232096026 1.049591418769637 843.1326774919212 231.2272323923901 1.049591418769637 843.1326774919212 231.2272323923901 1.049590050728966 843.1326810848773 227.6839267239515 1.534966445479427 843.4243628192062 231.227232096026 12.5031857759335 850.0156731893535 231.2272253989749 1.45958447607461 843.3790656615302 227.6839253406183 12.50318500803837 850.0156750241395 227.6839197305386 511.1822811035565 20.51319314547891 227.6839644294876 12.5031857759335 850.0156731893535 231.2272253989749 511.1822808822976 20.51319295668191 231.2272700979243 12.50318500803837 850.0156750241395 227.6839197305386 12.50318500803837 850.0156750241395 227.6839197305386 511.1822811035565 20.51319314547891 227.6839644294876 12.5031857759335 850.0156731893535 231.2272253989749 511.1822808822976 20.51319295668191 231.2272700979243 509.1777217264822 16.96988608086622 227.6839641374791 511.1822808822976 20.51319295668191 231.2272700979243 509.1777214930265 16.96988587050873 231.2272698921543 511.1822811035565 20.51319314547891 227.6839644294876 511.1822811035565 20.51319314547891 227.6839644294876 509.1777217264822 16.96988608086622 227.6839641374791 511.1822808822976 20.51319295668191 231.2272700979243 509.1777214930265 16.96988587050873 231.2272698921543 11.29122311301444 845.1534518118597 231.2272252635356 509.1777217264822 16.96988608086622 227.6839641374791 509.1777214930265 16.96988587050873 231.2272698921543 11.29122235249213 845.1534536762169 227.6839195088608 11.29122235249213 845.1534536762169 227.6839195088608 11.29122311301444 845.1534518118597 231.2272252635356 509.1777217264822 16.96988608086622 227.6839641374791 509.1777214930265 16.96988587050873 231.2272698921543 6.641666558226575 840.2923684141838 227.6839229435494 6.632510447281334 840.3076040645005 230.881306530907 6.641666277098011 840.2923683886274 230.8541521039403 6.08394049643664 841.2204480404002 227.6839240513133 6.641608361891485 840.2923335856945 230.873036296223 6.641665897689677 840.2923681806483 231.2272308277335 6.641425021748546 840.2922234112971 230.9328173275824 6.634633631099405 840.3039408549807 230.89357485515 5.734175518635539 841.8024802760624 231.2272286717467 5.858686061832145 841.5952808943675 227.6839240313398 5.734331208969024 841.8022126002211 227.6839240203128 5.734331208969024 841.8022126002211 227.6839240203128 5.858686061832145 841.5952808943675 227.6839240313398 5.734175518635539 841.8024802760624 231.2272286717467 6.08394049643664 841.2204480404002 227.6839240513133 6.632510447281334 840.3076040645005 230.881306530907 6.634633631099405 840.3039408549807 230.89357485515 6.641665897689677 840.2923681806483 231.2272308277335 6.641608361891485 840.2923335856945 230.873036296223 6.641425021748546 840.2922234112971 230.9328173275824 6.641666558226575 840.2923684141838 227.6839229435494 6.641666277098011 840.2923683886274 230.8541521039403</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"156\" source=\"#ID3071\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3069\">\r\n\t\t\t\t\t<float_array count=\"468\" id=\"ID3072\">0.5150944501362048 -0.8571334245250178 -9.468383592070215e-007 0.5150944501362048 -0.8571334245250178 -9.468383592070215e-007 0.5150944501362048 -0.8571334245250178 -9.468383592070215e-007 0.5150944501362048 -0.8571334245250178 -9.468383592070215e-007 -0.5150944501362048 0.8571334245250178 9.468383592070215e-007 -0.5150944501362048 0.8571334245250178 9.468383592070215e-007 -0.5150944501362048 0.8571334245250178 9.468383592070215e-007 -0.5150944501362048 0.8571334245250178 9.468383592070215e-007 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 -4.216055318166441e-007 -3.073142416062697e-007 -0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 4.216055318166441e-007 3.073142416062697e-007 0.999999999999864 0.5150918850796805 -0.8571349659911116 -6.908245053901998e-007 0.5150918850796805 -0.8571349659911116 -6.908245053901998e-007 0.5150918850796805 -0.8571349659911116 -6.908245053901998e-007 0.5150918850796805 -0.8571349659911116 -6.908245053901998e-007 -0.5150918850796805 0.8571349659911116 6.908245053901998e-007 -0.5150918850796805 0.8571349659911116 6.908245053901998e-007 -0.5150918850796805 0.8571349659911116 6.908245053901998e-007 -0.5150918850796805 0.8571349659911116 6.908245053901998e-007 4.416251465533501e-007 3.194161895004059e-007 0.9999999999998515 4.416251465533501e-007 3.194161895004059e-007 0.9999999999998515 4.416251465533501e-007 3.194161895004059e-007 0.9999999999998515 4.416251465533501e-007 3.194161895004059e-007 0.9999999999998515 4.416251465533501e-007 3.194161895004059e-007 0.9999999999998515 4.416251465533501e-007 3.194161895004059e-007 0.9999999999998515 4.416251465533501e-007 3.194161895004059e-007 0.9999999999998515 4.416251465533501e-007 3.194161895004059e-007 0.9999999999998515 4.416251465533501e-007 3.194161895004059e-007 0.9999999999998515 4.416251465533501e-007 3.194161895004059e-007 0.9999999999998515 4.416251465533501e-007 3.194161895004059e-007 0.9999999999998515 -4.416251465533501e-007 -3.194161895004059e-007 -0.9999999999998515 -4.416251465533501e-007 -3.194161895004059e-007 -0.9999999999998515 -4.416251465533501e-007 -3.194161895004059e-007 -0.9999999999998515 -4.416251465533501e-007 -3.194161895004059e-007 -0.9999999999998515 -4.416251465533501e-007 -3.194161895004059e-007 -0.9999999999998515 -4.416251465533501e-007 -3.194161895004059e-007 -0.9999999999998515 -4.416251465533501e-007 -3.194161895004059e-007 -0.9999999999998515 -4.416251465533501e-007 -3.194161895004059e-007 -0.9999999999998515 -4.416251465533501e-007 -3.194161895004059e-007 -0.9999999999998515 -4.416251465533501e-007 -3.194161895004059e-007 -0.9999999999998515 -4.416251465533501e-007 -3.194161895004059e-007 -0.9999999999998515 0.8570051596469651 0.5153078267775381 -5.391320251949921e-007 0.8570051596469651 0.5153078267775381 -5.391320251949921e-007 0.8570051596469651 0.5153078267775381 -5.391320251949921e-007 0.8570051596469651 0.5153078267775381 -5.391320251949921e-007 -0.8570051596469651 -0.5153078267775381 5.391320251949921e-007 -0.8570051596469651 -0.5153078267775381 5.391320251949921e-007 -0.8570051596469651 -0.5153078267775381 5.391320251949921e-007 -0.8570051596469651 -0.5153078267775381 5.391320251949921e-007 0.5150920654360341 -0.8571348576069221 4.234668251210864e-008 0.5150920654360341 -0.8571348576069221 4.234668251210864e-008 0.5150920654360341 -0.8571348576069221 4.234668251210864e-008 0.5150920654360341 -0.8571348576069221 4.234668251210864e-008 0.5150920654360341 -0.8571348576069221 4.234668251210864e-008 0.5150920654360341 -0.8571348576069221 4.234668251210864e-008 0.5150920654360341 -0.8571348576069221 4.234668251210864e-008 0.5150920654360341 -0.8571348576069221 4.234668251210864e-008 -0.5150920654360341 0.8571348576069221 -4.234668251210864e-008 -0.5150920654360341 0.8571348576069221 -4.234668251210864e-008 -0.5150920654360341 0.8571348576069221 -4.234668251210864e-008 -0.5150920654360341 0.8571348576069221 -4.234668251210864e-008 -0.5150920654360341 0.8571348576069221 -4.234668251210864e-008 -0.5150920654360341 0.8571348576069221 -4.234668251210864e-008 -0.5150920654360341 0.8571348576069221 -4.234668251210864e-008 -0.5150920654360341 0.8571348576069221 -4.234668251210864e-008 -0.8571348500803571 -0.5150920779605299 -1.652950570230402e-007 -0.8571348500803571 -0.5150920779605299 -1.652950570230402e-007 -0.8571348500803571 -0.5150920779605299 -1.652950570230402e-007 -0.8571348500803571 -0.5150920779605299 -1.652950570230402e-007 0.8571348500803571 0.5150920779605299 1.652950570230402e-007 0.8571348500803571 0.5150920779605299 1.652950570230402e-007 0.8571348500803571 0.5150920779605299 1.652950570230402e-007 0.8571348500803571 0.5150920779605299 1.652950570230402e-007 -0.5150919918482985 0.8571349018288159 8.115286864073725e-007 -0.5150919918482985 0.8571349018288159 8.115286864073725e-007 -0.5150919918482985 0.8571349018288159 8.115286864073725e-007 -0.5150919918482985 0.8571349018288159 8.115286864073725e-007 -0.5150919918482985 0.8571349018288159 8.115286864073725e-007 -0.5150919918482985 0.8571349018288159 8.115286864073725e-007 0.5150919918482985 -0.8571349018288159 -8.115286864073725e-007 0.5150919918482985 -0.8571349018288159 -8.115286864073725e-007 0.5150919918482985 -0.8571349018288159 -8.115286864073725e-007 0.5150919918482985 -0.8571349018288159 -8.115286864073725e-007 0.5150919918482985 -0.8571349018288159 -8.115286864073725e-007 0.5150919918482985 -0.8571349018288159 -8.115286864073725e-007 0.8570469852075067 0.5152382605617693 8.101653983691145e-008 0.8570469852075067 0.5152382605617693 8.101653983691145e-008 0.8570469852075067 0.5152382605617693 8.101653983691145e-008 0.8570469852075067 0.5152382605617693 8.101653983691145e-008 -0.8570469852075067 -0.5152382605617693 -8.101653983691145e-008 -0.8570469852075067 -0.5152382605617693 -8.101653983691145e-008 -0.8570469852075067 -0.5152382605617693 -8.101653983691145e-008 -0.8570469852075067 -0.5152382605617693 -8.101653983691145e-008 0.870371203242566 -0.4923961500317467 4.204875866436672e-008 0.870371203242566 -0.4923961500317467 4.204875866436672e-008 0.870371203242566 -0.4923961500317467 4.204875866436672e-008 0.870371203242566 -0.4923961500317467 4.204875866436672e-008 -0.870371203242566 0.4923961500317467 -4.204875866436672e-008 -0.870371203242566 0.4923961500317467 -4.204875866436672e-008 -0.870371203242566 0.4923961500317467 -4.204875866436672e-008 -0.870371203242566 0.4923961500317467 -4.204875866436672e-008 -0.8570468452595247 -0.5152384933510781 -8.710052517709138e-008 -0.8570468452595247 -0.5152384933510781 -8.710052517709138e-008 -0.8570468452595247 -0.5152384933510781 -8.710052517709138e-008 -0.8570468452595247 -0.5152384933510781 -8.710052517709138e-008 0.8570468452595247 0.5152384933510781 8.710052517709138e-008 0.8570468452595247 0.5152384933510781 8.710052517709138e-008 0.8570468452595247 0.5152384933510781 8.710052517709138e-008 0.8570468452595247 0.5152384933510781 8.710052517709138e-008 0.8571489293068801 0.515068648708091 1.030002258966238e-005 0.8571489293068801 0.515068648708091 1.030002258966238e-005 0.8571489293068801 0.515068648708091 1.030002258966238e-005 0.8571489293068801 0.515068648708091 1.030002258966238e-005 0.8571489293068801 0.515068648708091 1.030002258966238e-005 0.8571489293068801 0.515068648708091 1.030002258966238e-005 0.8571489293068801 0.515068648708091 1.030002258966238e-005 0.8571489293068801 0.515068648708091 1.030002258966238e-005 0.8571489293068801 0.515068648708091 1.030002258966238e-005 0.8571489293068801 0.515068648708091 1.030002258966238e-005 0.8571489293068801 0.515068648708091 1.030002258966238e-005 -0.8571489293068801 -0.515068648708091 -1.030002258966238e-005 -0.8571489293068801 -0.515068648708091 -1.030002258966238e-005 -0.8571489293068801 -0.515068648708091 -1.030002258966238e-005 -0.8571489293068801 -0.515068648708091 -1.030002258966238e-005 -0.8571489293068801 -0.515068648708091 -1.030002258966238e-005 -0.8571489293068801 -0.515068648708091 -1.030002258966238e-005 -0.8571489293068801 -0.515068648708091 -1.030002258966238e-005 -0.8571489293068801 -0.515068648708091 -1.030002258966238e-005 -0.8571489293068801 -0.515068648708091 -1.030002258966238e-005 -0.8571489293068801 -0.515068648708091 -1.030002258966238e-005 -0.8571489293068801 -0.515068648708091 -1.030002258966238e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"156\" source=\"#ID3072\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3070\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3068\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3069\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"108\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3070\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 11 8 12 9 11 13 11 12 14 14 12 15 15 12 16 16 12 17 13 18 19 18 13 11 18 11 20 20 11 21 22 23 24 24 23 25 23 26 25 27 25 26 28 29 30 30 29 31 31 29 32 32 29 23 26 23 33 29 34 23 23 34 33 35 33 34 36 37 38 37 36 39 40 41 42 43 42 41 44 45 46 45 44 47 46 48 49 48 46 45 48 45 50 50 45 51 50 51 52 50 52 53 50 53 54 55 56 57 56 58 57 58 59 57 59 60 57 57 60 61 60 62 61 63 61 62 64 65 60 62 60 65 66 67 68 67 66 69 70 71 72 73 72 71 74 75 76 75 74 77 77 74 78 78 74 79 78 79 80 78 80 81 82 83 84 83 85 84 85 86 84 84 86 87 87 86 88 89 88 86 90 91 92 91 90 93 94 95 96 97 96 95 98 99 100 99 98 101 99 101 102 102 101 103 104 105 106 106 105 107 105 108 107 109 107 108 110 111 112 111 110 113 114 115 116 117 116 115 118 119 120 119 118 121 122 123 124 125 124 123 126 127 128 127 126 129 130 131 132 133 132 131 134 135 136 135 134 137 138 139 140 139 138 141 139 141 142 142 141 135 142 135 137 142 137 143 142 143 144 145 146 147 146 148 147 148 149 147 149 150 147 147 150 151 150 152 151 153 151 152 148 154 149 155 149 154</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3073\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3074\">\r\n\t\t\t\t\t<float_array count=\"552\" id=\"ID3077\">1241.715915178754 7.077026726719396 161.8451670772201 1468.26770305523 10.61836358987512 240.5779428363408 1241.715915146245 10.61836377375312 161.8451672757253 1468.267703117713 7.077026542846397 240.5779426482552 1468.267703117713 7.077026542846397 240.5779426482552 1241.715915178754 7.077026726719396 161.8451670772201 1468.26770305523 10.61836358987512 240.5779428363408 1241.715915146245 10.61836377375312 161.8451672757253 1468.267703117713 7.077026542846397 240.5779426482552 1470.03935659853 10.61836358947357 240.5779428372564 1468.26770305523 10.61836358987512 240.5779428363408 1473.58266371921 7.077026547661717 240.5779426510031 1470.03935660035 16.91954460026636 240.577942786877 1470.039356601134 20.46187655049971 240.5779429700004 1473.582663689656 20.46187654971936 240.5779429718317 1473.582663689656 20.46187654971936 240.5779429718317 1473.58266371921 7.077026547661717 240.5779426510031 1470.039356601134 20.46187655049971 240.5779429700004 1470.03935660035 16.91954460026636 240.577942786877 1470.03935659853 10.61836358947357 240.5779428372564 1468.267703117713 7.077026542846397 240.5779426482552 1468.26770305523 10.61836358987512 240.5779428363408 749.8265505467591 10.61836403002326 13.73636329062141 1160.866388763069 10.61836395241426 158.3647745489753 751.0079239439772 10.61836422596571 10.4626054418603 1160.257630735725 10.61836375609164 161.8451672791375 1241.715915146245 10.61836377375312 161.8451672757253 1242.303445521382 10.61836397006391 158.364774545566 1468.674198462974 10.61836371479058 237.0346356370984 1468.26770305523 10.61836358987512 240.5779428363408 1469.410205537496 10.6183637857348 237.2904176829801 1469.410205537496 10.6183637857348 237.2904176829801 1468.26770305523 10.61836358987512 240.5779428363408 1468.674198462974 10.61836371479058 237.0346356370984 1241.715915146245 10.61836377375312 161.8451672757253 1160.866388763069 10.61836395241426 158.3647745489753 1242.303445521382 10.61836397006391 158.364774545566 1160.257630735725 10.61836375609164 161.8451672791375 749.8265505467591 10.61836403002326 13.73636329062141 751.0079239439772 10.61836422596571 10.4626054418603 1160.257630769697 7.077026709058373 161.8451670806333 1241.715915146245 10.61836377375312 161.8451672757253 1160.257630735725 10.61836375609164 161.8451672791375 1241.715915178754 7.077026726719396 161.8451670772201 1241.715915178754 7.077026726719396 161.8451670772201 1160.257630769697 7.077026709058373 161.8451670806333 1241.715915146245 10.61836377375312 161.8451672757253 1160.257630735725 10.61836375609164 161.8451672791375 1242.303445553875 7.077026923010635 158.3647743471267 1241.715915178754 7.077026726719396 161.8451670772201 1160.866388797029 7.077026905360071 158.3647743505387 1468.674199174649 7.0770266677564 237.0346356746896 1468.267703117713 7.077026542846397 240.5779426482552 1470.039356655984 7.077026669000588 237.0346356753969 1473.582663721042 7.07702667221065 237.0346358415181 1473.58266371921 7.077026547661717 240.5779426510031 749.8265506119585 7.077026982993175 13.73636310338648 751.0079240091619 7.077027178901517 10.46260525468868 1160.257630769697 7.077026709058373 161.8451670806333 1241.715915178754 7.077026726719396 161.8451670772201 1160.866388797029 7.077026905360071 158.3647743505387 1160.257630769697 7.077026709058373 161.8451670806333 749.8265506119585 7.077026982993175 13.73636310338648 751.0079240091619 7.077027178901517 10.46260525468868 1473.58266371921 7.077026547661717 240.5779426510031 1473.582663721042 7.07702667221065 237.0346358415181 1468.267703117713 7.077026542846397 240.5779426482552 1470.039356655984 7.077026669000588 237.0346356753969 1468.674199174649 7.0770266677564 237.0346356746896 1242.303445553875 7.077026923010635 158.3647743471267 1473.582663721042 7.07702667221065 237.0346358415181 1473.582663689656 20.46187654971936 240.5779429718317 1473.58266371921 7.077026547661717 240.5779426510031 1473.582663726326 20.46187673289251 237.0346359714561 1473.582663726326 20.46187673289251 237.0346359714561 1473.582663721042 7.07702667221065 237.0346358415181 1473.582663689656 20.46187654971936 240.5779429718317 1473.58266371921 7.077026547661717 240.5779426510031 1470.039356601134 20.46187655049971 240.5779429700004 1473.582663726326 20.46187673289251 237.0346359714561 1470.039356658929 20.46187673366376 237.0346359696251 1473.582663689656 20.46187654971936 240.5779429718317 1473.582663689656 20.46187654971936 240.5779429718317 1470.039356601134 20.46187655049971 240.5779429700004 1473.582663726326 20.46187673289251 237.0346359714561 1470.039356658929 20.46187673366376 237.0346359696251 1470.039356601134 20.46187655049971 240.5779429700004 1470.039356658144 16.91954478344405 237.034635786502 1470.03935660035 16.91954460026636 240.577942786877 1470.039356658929 20.46187673366376 237.0346359696251 1470.039356658929 20.46187673366376 237.0346359696251 1470.039356601134 20.46187655049971 240.5779429700004 1470.039356658144 16.91954478344405 237.034635786502 1470.03935660035 16.91954460026636 240.577942786877 1470.03935660035 16.91954460026636 240.577942786877 1470.039356656763 10.61836371603022 237.0346356378029 1470.03935659853 10.61836358947357 240.5779428372564 1470.039356658144 16.91954478344405 237.034635786502 1470.039356658144 16.91954478344405 237.034635786502 1470.03935660035 16.91954460026636 240.577942786877 1470.039356656763 10.61836371603022 237.0346356378029 1470.03935659853 10.61836358947357 240.5779428372564 1469.410205537496 10.6183637857348 237.2904176829801 1470.039356656763 10.61836371603022 237.0346356378029 1468.674198462974 10.61836371479058 237.0346356370984 1470.03935659853 10.61836358947357 240.5779428372564 1468.26770305523 10.61836358987512 240.5779428363408 1468.26770305523 10.61836358987512 240.5779428363408 1469.410205537496 10.6183637857348 237.2904176829801 1470.03935659853 10.61836358947357 240.5779428372564 1470.039356656763 10.61836371603022 237.0346356378029 1468.674198462974 10.61836371479058 237.0346356370984 1469.410205537496 10.6183637857348 237.2904176829801 1468.674199174649 7.0770266677564 237.0346356746896 1468.674198462974 10.61836371479058 237.0346356370984 1469.410205599963 7.077026738677432 237.2904174949581 1469.410205599963 7.077026738677432 237.2904174949581 1469.410205537496 10.6183637857348 237.2904176829801 1468.674199174649 7.0770266677564 237.0346356746896 1468.674198462974 10.61836371479058 237.0346356370984 1468.674198462974 10.61836371479058 237.0346356370984 1242.303445553875 7.077026923010635 158.3647743471267 1242.303445521382 10.61836397006391 158.364774545566 1468.674199174649 7.0770266677564 237.0346356746896 1468.674199174649 7.0770266677564 237.0346356746896 1468.674198462974 10.61836371479058 237.0346356370984 1242.303445553875 7.077026923010635 158.3647743471267 1242.303445521382 10.61836397006391 158.364774545566 1242.303445521382 10.61836397006391 158.364774545566 1160.866388797029 7.077026905360071 158.3647743505387 1160.866388763069 10.61836395241426 158.3647745489753 1242.303445553875 7.077026923010635 158.3647743471267 1242.303445553875 7.077026923010635 158.3647743471267 1242.303445521382 10.61836397006391 158.364774545566 1160.866388797029 7.077026905360071 158.3647743505387 1160.866388763069 10.61836395241426 158.3647745489753 1160.866388763069 10.61836395241426 158.3647745489753 751.0079240091619 7.077027178901517 10.46260525468868 751.0079239439772 10.61836422596571 10.4626054418603 1160.866388797029 7.077026905360071 158.3647743505387 1160.866388797029 7.077026905360071 158.3647743505387 1160.866388763069 10.61836395241426 158.3647745489753 751.0079240091619 7.077027178901517 10.46260525468868 751.0079239439772 10.61836422596571 10.4626054418603 749.8265505467591 10.61836403002326 13.73636329062141 751.0079240091619 7.077027178901517 10.46260525468868 749.8265506119585 7.077026982993175 13.73636310338648 751.0079239439772 10.61836422596571 10.4626054418603 751.0079239439772 10.61836422596571 10.4626054418603 749.8265505467591 10.61836403002326 13.73636329062141 751.0079240091619 7.077027178901517 10.46260525468868 749.8265506119585 7.077026982993175 13.73636310338648 749.8265506119585 7.077026982993175 13.73636310338648 1160.257630735725 10.61836375609164 161.8451672791375 749.8265505467591 10.61836403002326 13.73636329062141 1160.257630769697 7.077026709058373 161.8451670806333 1160.257630769697 7.077026709058373 161.8451670806333 749.8265506119585 7.077026982993175 13.73636310338648 1160.257630735725 10.61836375609164 161.8451672791375 749.8265505467591 10.61836403002326 13.73636329062141 1470.039356656763 10.61836371603022 237.0346356378029 1468.674199174649 7.0770266677564 237.0346356746896 1468.674198462974 10.61836371479058 237.0346356370984 1470.039356655984 7.077026669000588 237.0346356753969 1473.582663721042 7.07702667221065 237.0346358415181 1470.039356658144 16.91954478344405 237.034635786502 1470.039356658929 20.46187673366376 237.0346359696251 1473.582663726326 20.46187673289251 237.0346359714561 1473.582663726326 20.46187673289251 237.0346359714561 1470.039356658929 20.46187673366376 237.0346359696251 1473.582663721042 7.07702667221065 237.0346358415181 1470.039356658144 16.91954478344405 237.034635786502 1470.039356656763 10.61836371603022 237.0346356378029 1470.039356655984 7.077026669000588 237.0346356753969 1468.674199174649 7.0770266677564 237.0346356746896 1468.674198462974 10.61836371479058 237.0346356370984 1468.307776612297 10.61836371447407 237.0346356369078 1468.674199174649 7.0770266677564 237.0346356746896 1468.307776611507 7.07702666741443 237.0346356744991 1468.674198462974 10.61836371479058 237.0346356370984 1468.674198462974 10.61836371479058 237.0346356370984 1468.307776612297 10.61836371447407 237.0346356369078 1468.674199174649 7.0770266677564 237.0346356746896 1468.307776611507 7.07702666741443 237.0346356744991</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"184\" source=\"#ID3077\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3075\">\r\n\t\t\t\t\t<float_array count=\"552\" id=\"ID3078\">-0.3282682647796157 -5.596086586034639e-008 0.9445845363643094 -0.3282682647796157 -5.596086586034639e-008 0.9445845363643094 -0.3282682647796157 -5.596086586034639e-008 0.9445845363643094 -0.3282682647796157 -5.596086586034639e-008 0.9445845363643094 0.3282682647796157 5.596086586034639e-008 -0.9445845363643094 0.3282682647796157 5.596086586034639e-008 -0.9445845363643094 0.3282682647796157 5.596086586034639e-008 -0.9445845363643094 0.3282682647796157 5.596086586034639e-008 -0.9445845363643094 1.25205187762197e-009 -1.968516834800304e-008 0.9999999999999999 1.25205187762197e-009 -1.968516834800304e-008 0.9999999999999999 1.25205187762197e-009 -1.968516834800304e-008 0.9999999999999999 1.25205187762197e-009 -1.968516834800304e-008 0.9999999999999999 1.25205187762197e-009 -1.968516834800304e-008 0.9999999999999999 1.25205187762197e-009 -1.968516834800304e-008 0.9999999999999999 1.25205187762197e-009 -1.968516834800304e-008 0.9999999999999999 -1.25205187762197e-009 1.968516834800304e-008 -0.9999999999999999 -1.25205187762197e-009 1.968516834800304e-008 -0.9999999999999999 -1.25205187762197e-009 1.968516834800304e-008 -0.9999999999999999 -1.25205187762197e-009 1.968516834800304e-008 -0.9999999999999999 -1.25205187762197e-009 1.968516834800304e-008 -0.9999999999999999 -1.25205187762197e-009 1.968516834800304e-008 -0.9999999999999999 -1.25205187762197e-009 1.968516834800304e-008 -0.9999999999999999 -6.713571612057702e-010 1 4.045346162272288e-009 -6.713571612057702e-010 1 4.045346162272288e-009 -6.713571612057702e-010 1 4.045346162272288e-009 -6.713571612057702e-010 1 4.045346162272288e-009 -6.713571612057702e-010 1 4.045346162272288e-009 -6.713571612057702e-010 1 4.045346162272288e-009 -6.713571612057702e-010 1 4.045346162272288e-009 -6.713571612057702e-010 1 4.045346162272288e-009 -6.713571612057702e-010 1 4.045346162272288e-009 6.713571612057702e-010 -1 -4.045346162272288e-009 6.713571612057702e-010 -1 -4.045346162272288e-009 6.713571612057702e-010 -1 -4.045346162272288e-009 6.713571612057702e-010 -1 -4.045346162272288e-009 6.713571612057702e-010 -1 -4.045346162272288e-009 6.713571612057702e-010 -1 -4.045346162272288e-009 6.713571612057702e-010 -1 -4.045346162272288e-009 6.713571612057702e-010 -1 -4.045346162272288e-009 6.713571612057702e-010 -1 -4.045346162272288e-009 4.187549782875644e-011 -5.605359895333368e-008 0.9999999999999986 4.187549782875644e-011 -5.605359895333368e-008 0.9999999999999986 4.187549782875644e-011 -5.605359895333368e-008 0.9999999999999986 4.187549782875644e-011 -5.605359895333368e-008 0.9999999999999986 -4.187549782875644e-011 5.605359895333368e-008 -0.9999999999999986 -4.187549782875644e-011 5.605359895333368e-008 -0.9999999999999986 -4.187549782875644e-011 5.605359895333368e-008 -0.9999999999999986 -4.187549782875644e-011 5.605359895333368e-008 -0.9999999999999986 5.56334796908453e-010 -1 -3.8491695853089e-009 5.56334796908453e-010 -1 -3.8491695853089e-009 5.56334796908453e-010 -1 -3.8491695853089e-009 5.56334796908453e-010 -1 -3.8491695853089e-009 5.56334796908453e-010 -1 -3.8491695853089e-009 5.56334796908453e-010 -1 -3.8491695853089e-009 5.56334796908453e-010 -1 -3.8491695853089e-009 5.56334796908453e-010 -1 -3.8491695853089e-009 5.56334796908453e-010 -1 -3.8491695853089e-009 5.56334796908453e-010 -1 -3.8491695853089e-009 5.56334796908453e-010 -1 -3.8491695853089e-009 -5.56334796908453e-010 1 3.8491695853089e-009 -5.56334796908453e-010 1 3.8491695853089e-009 -5.56334796908453e-010 1 3.8491695853089e-009 -5.56334796908453e-010 1 3.8491695853089e-009 -5.56334796908453e-010 1 3.8491695853089e-009 -5.56334796908453e-010 1 3.8491695853089e-009 -5.56334796908453e-010 1 3.8491695853089e-009 -5.56334796908453e-010 1 3.8491695853089e-009 -5.56334796908453e-010 1 3.8491695853089e-009 -5.56334796908453e-010 1 3.8491695853089e-009 -5.56334796908453e-010 1 3.8491695853089e-009 1 9.064477372477997e-010 5.433540230171984e-009 1 9.064477372477997e-010 5.433540230171984e-009 1 9.064477372477997e-010 5.433540230171984e-009 1 9.064477372477997e-010 5.433540230171984e-009 -1 -9.064477372477997e-010 -5.433540230171984e-009 -1 -9.064477372477997e-010 -5.433540230171984e-009 -1 -9.064477372477997e-010 -5.433540230171984e-009 -1 -9.064477372477997e-010 -5.433540230171984e-009 2.196250955637881e-010 0.9999999999999988 5.169503608011159e-008 2.196250955637881e-010 0.9999999999999988 5.169503608011159e-008 2.196250955637881e-010 0.9999999999999988 5.169503608011159e-008 2.196250955637881e-010 0.9999999999999988 5.169503608011159e-008 -2.196250955637881e-010 -0.9999999999999988 -5.169503608011159e-008 -2.196250955637881e-010 -0.9999999999999988 -5.169503608011159e-008 -2.196250955637881e-010 -0.9999999999999988 -5.169503608011159e-008 -2.196250955637881e-010 -0.9999999999999988 -5.169503608011159e-008 -0.9999999999999999 2.20477856837714e-010 -1.631127759495032e-008 -0.9999999999999999 2.20477856837714e-010 -1.631127759495032e-008 -0.9999999999999999 2.20477856837714e-010 -1.631127759495032e-008 -0.9999999999999999 2.20477856837714e-010 -1.631127759495032e-008 0.9999999999999999 -2.20477856837714e-010 1.631127759495032e-008 0.9999999999999999 -2.20477856837714e-010 1.631127759495032e-008 0.9999999999999999 -2.20477856837714e-010 1.631127759495032e-008 0.9999999999999999 -2.20477856837714e-010 1.631127759495032e-008 -0.9999999999999999 2.245330057092976e-010 -1.639316933159271e-008 -0.9999999999999999 2.245330057092976e-010 -1.639316933159271e-008 -0.9999999999999999 2.245330057092976e-010 -1.639316933159271e-008 -0.9999999999999999 2.245330057092976e-010 -1.639316933159271e-008 0.9999999999999999 -2.245330057092976e-010 1.639316933159271e-008 0.9999999999999999 -2.245330057092976e-010 1.639316933159271e-008 0.9999999999999999 -2.245330057092976e-010 1.639316933159271e-008 0.9999999999999999 -2.245330057092976e-010 1.639316933159271e-008 -1.703389214747651e-009 0.9999999999999992 4.206879838578167e-008 -1.703389214747651e-009 0.9999999999999992 4.206879838578167e-008 -1.703389214747651e-009 0.9999999999999992 4.206879838578167e-008 -1.703389214747651e-009 0.9999999999999992 4.206879838578167e-008 -1.703389214747651e-009 0.9999999999999992 4.206879838578167e-008 1.703389214747651e-009 -0.9999999999999992 -4.206879838578167e-008 1.703389214747651e-009 -0.9999999999999992 -4.206879838578167e-008 1.703389214747651e-009 -0.9999999999999992 -4.206879838578167e-008 1.703389214747651e-009 -0.9999999999999992 -4.206879838578167e-008 1.703389214747651e-009 -0.9999999999999992 -4.206879838578167e-008 0.3282682647809844 5.594198069903511e-008 -0.9445845363638337 0.3282682647809844 5.594198069903511e-008 -0.9445845363638337 0.3282682647809844 5.594198069903511e-008 -0.9445845363638337 0.3282682647809844 5.594198069903511e-008 -0.9445845363638337 -0.3282682647809844 -5.594198069903511e-008 0.9445845363638337 -0.3282682647809844 -5.594198069903511e-008 0.9445845363638337 -0.3282682647809844 -5.594198069903511e-008 0.9445845363638337 -0.3282682647809844 -5.594198069903511e-008 0.9445845363638337 0.3282682647795982 5.594192510738185e-008 -0.9445845363643153 0.3282682647795982 5.594192510738185e-008 -0.9445845363643153 0.3282682647795982 5.594192510738185e-008 -0.9445845363643153 0.3282682647795982 5.594192510738185e-008 -0.9445845363643153 -0.3282682647795982 -5.594192510738185e-008 0.9445845363643153 -0.3282682647795982 -5.594192510738185e-008 0.9445845363643153 -0.3282682647795982 -5.594192510738185e-008 0.9445845363643153 -0.3282682647795982 -5.594192510738185e-008 0.9445845363643153 -4.187122188785409e-011 5.603452884615952e-008 -0.9999999999999986 -4.187122188785409e-011 5.603452884615952e-008 -0.9999999999999986 -4.187122188785409e-011 5.603452884615952e-008 -0.9999999999999986 -4.187122188785409e-011 5.603452884615952e-008 -0.9999999999999986 4.187122188785409e-011 -5.603452884615952e-008 0.9999999999999986 4.187122188785409e-011 -5.603452884615952e-008 0.9999999999999986 4.187122188785409e-011 -5.603452884615952e-008 0.9999999999999986 4.187122188785409e-011 -5.603452884615952e-008 0.9999999999999986 0.3394368075165591 5.596261478101614e-008 -0.9406288607644162 0.3394368075165591 5.596261478101614e-008 -0.9406288607644162 0.3394368075165591 5.596261478101614e-008 -0.9406288607644162 0.3394368075165591 5.596261478101614e-008 -0.9406288607644162 -0.3394368075165591 -5.596261478101614e-008 0.9406288607644162 -0.3394368075165591 -5.596261478101614e-008 0.9406288607644162 -0.3394368075165591 -5.596261478101614e-008 0.9406288607644162 -0.3394368075165591 -5.596261478101614e-008 0.9406288607644162 -0.9406288607643961 6.282796678950381e-010 -0.3394368075166194 -0.9406288607643961 6.282796678950381e-010 -0.3394368075166194 -0.9406288607643961 6.282796678950381e-010 -0.3394368075166194 -0.9406288607643961 6.282796678950381e-010 -0.3394368075166194 0.9406288607643961 -6.282796678950381e-010 0.3394368075166194 0.9406288607643961 -6.282796678950381e-010 0.3394368075166194 0.9406288607643961 -6.282796678950381e-010 0.3394368075166194 0.9406288607643961 -6.282796678950381e-010 0.3394368075166194 -0.3394368075164324 -5.598187595106763e-008 0.940628860764462 -0.3394368075164324 -5.598187595106763e-008 0.940628860764462 -0.3394368075164324 -5.598187595106763e-008 0.940628860764462 -0.3394368075164324 -5.598187595106763e-008 0.940628860764462 0.3394368075164324 5.598187595106763e-008 -0.940628860764462 0.3394368075164324 5.598187595106763e-008 -0.940628860764462 0.3394368075164324 5.598187595106763e-008 -0.940628860764462 0.3394368075164324 5.598187595106763e-008 -0.940628860764462 4.248909019117537e-008 1.410557882292312e-008 -0.999999999999999 4.248909019117537e-008 1.410557882292312e-008 -0.999999999999999 4.248909019117537e-008 1.410557882292312e-008 -0.999999999999999 4.248909019117537e-008 1.410557882292312e-008 -0.999999999999999 4.248909019117537e-008 1.410557882292312e-008 -0.999999999999999 4.248909019117537e-008 1.410557882292312e-008 -0.999999999999999 4.248909019117537e-008 1.410557882292312e-008 -0.999999999999999 4.248909019117537e-008 1.410557882292312e-008 -0.999999999999999 -4.248909019117537e-008 -1.410557882292312e-008 0.999999999999999 -4.248909019117537e-008 -1.410557882292312e-008 0.999999999999999 -4.248909019117537e-008 -1.410557882292312e-008 0.999999999999999 -4.248909019117537e-008 -1.410557882292312e-008 0.999999999999999 -4.248909019117537e-008 -1.410557882292312e-008 0.999999999999999 -4.248909019117537e-008 -1.410557882292312e-008 0.999999999999999 -4.248909019117537e-008 -1.410557882292312e-008 0.999999999999999 -4.248909019117537e-008 -1.410557882292312e-008 0.999999999999999 5.201000749631564e-010 -1.061545016158623e-008 -1 5.201000749631564e-010 -1.061545016158623e-008 -1 5.201000749631564e-010 -1.061545016158623e-008 -1 5.201000749631564e-010 -1.061545016158623e-008 -1 -5.201000749631564e-010 1.061545016158623e-008 1 -5.201000749631564e-010 1.061545016158623e-008 1 -5.201000749631564e-010 1.061545016158623e-008 1 -5.201000749631564e-010 1.061545016158623e-008 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"184\" source=\"#ID3078\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3076\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3074\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3075\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"112\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3076\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 9 11 12 12 11 13 13 11 14 15 16 17 17 16 18 18 16 19 16 20 19 21 19 20 22 23 24 23 22 25 23 25 26 27 26 28 26 27 23 28 26 29 28 29 30 31 32 33 32 34 33 35 36 34 33 34 36 34 37 35 37 38 35 39 35 38 40 41 42 41 40 43 44 45 46 47 46 45 48 49 50 49 48 51 49 51 52 52 51 53 52 53 54 52 54 55 50 56 57 56 50 58 58 50 49 59 60 61 61 60 62 63 62 60 64 65 66 65 67 66 67 68 66 66 68 59 68 69 59 60 59 69 70 71 72 71 70 73 74 75 76 77 76 75 78 79 80 79 78 81 82 83 84 85 84 83 86 87 88 87 86 89 90 91 92 93 92 91 94 95 96 95 94 97 98 99 100 101 100 99 102 103 104 103 102 105 105 102 106 107 108 109 109 108 110 111 110 108 112 113 114 113 112 115 116 117 118 119 118 117 120 121 122 121 120 123 124 125 126 127 126 125 128 129 130 129 128 131 132 133 134 135 134 133 136 137 138 137 136 139 140 141 142 143 142 141 144 145 146 145 144 147 148 149 150 151 150 149 152 153 154 153 152 155 156 157 158 159 158 157 160 161 162 161 160 163 163 160 164 164 160 165 164 165 166 164 166 167 168 169 170 169 171 170 171 172 170 170 172 173 173 172 174 175 174 172 176 177 178 177 176 179 180 181 182 183 182 181</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3079\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3080\">\r\n\t\t\t\t\t<float_array count=\"1686\" id=\"ID3083\">750.165502794812 7.101102165779594 4.969589460063553 749.8697697617071 7.1011020551191 4.749829651784339 750.1644858747668 7.101102103989888 3.933128352637503 749.8692062738962 7.101102166037435 4.862667432330689 749.8692062738962 7.101102166037435 4.862667432330689 750.165502794812 7.101102165779594 4.969589460063553 749.8697697617071 7.1011020551191 4.749829651784339 750.1644858747668 7.101102103989888 3.933128352637503 749.8336775242555 7.614799521560144 4.849846502527107 750.0144098087695 10.6424392007857 4.915066018663126 749.8336774687439 10.62992108911885 4.849846661940212 749.8692062738962 7.101102166037435 4.862667432330689 750.165502794812 7.101102165779594 4.969589460063553 753.1697348937224 10.64243919830733 6.053701582794382 753.3991641395138 7.325076110963437 6.136493583214154 753.3991641395138 7.325076110963437 6.136493583214154 750.165502794812 7.101102165779594 4.969589460063553 753.1697348937224 10.64243919830733 6.053701582794382 750.0144098087695 10.6424392007857 4.915066018663126 749.8692062738962 7.101102166037435 4.862667432330689 749.8336775242555 7.614799521560144 4.849846502527107 749.8336774687439 10.62992108911885 4.849846661940212 749.8692062738962 7.101102166037435 4.862667432330689 749.8336775337124 7.101102049125075 4.849846475367556 749.8697697617071 7.1011020551191 4.749829651784339 749.8697697617071 7.1011020551191 4.749829651784339 749.8336775337124 7.101102049125075 4.849846475367556 749.8692062738962 7.101102166037435 4.862667432330689 749.8336775242555 7.614799521560144 4.849846502527107 750.1644858747668 7.101102103989888 3.933128352637503 749.8697697617071 7.1011020551191 4.749829651784339 751.0150509298222 7.160195959568682 1.576088629792579 751.0150508657316 10.64243929209579 1.576088813841587 749.8336774687439 10.62992108911885 4.849846661940212 750.0138564490165 10.64243920305808 4.350544449602715 750.0138564490165 10.64243920305808 4.350544449602715 749.8336774687439 10.62992108911885 4.849846661940212 751.0150508657316 10.64243929209579 1.576088813841587 749.8336775242555 7.614799521560144 4.849846502527107 751.0150509298222 7.160195959568682 1.576088629792579 750.1644858747668 7.101102103989888 3.933128352637503 749.8697697617071 7.1011020551191 4.749829651784339 1241.805578521506 7.101101792795362 152.9884346716715 1160.956052139781 7.101101971441949 149.5080419449879 1242.393108896632 7.101101989092058 149.5080419415793 750.1644858747668 7.101102103989888 3.933128352637503 751.0150509309131 7.101102245034781 1.576088626669787 750.165502794812 7.101102165779594 4.969589460063553 1160.347294112451 7.101101775138432 152.988434675084 1241.805578521506 7.101101792795362 152.9884346716715 1160.956052139781 7.101101971441949 149.5080419449879 1160.347294112451 7.101101775138432 152.988434675084 750.165502794812 7.101102165779594 4.969589460063553 750.1644858747668 7.101102103989888 3.933128352637503 751.0150509309131 7.101102245034781 1.576088626669787 1242.393108896632 7.101101989092058 149.5080419415793 749.8692062738962 7.101102166037435 4.862667432330689 749.8336775242555 7.614799521560144 4.849846502527107 749.8336775337124 7.101102049125075 4.849846475367556 749.8336775337124 7.101102049125075 4.849846475367556 749.8336775242555 7.614799521560144 4.849846502527107 749.8692062738962 7.101102166037435 4.862667432330689 750.165502794812 7.101102165779594 4.969589460063553 955.0800827329606 7.102309494502606 78.91538649985992 753.3991641395138 7.325076110963437 6.136493583214154 1160.347294112451 7.101101775138432 152.988434675084 958.6235015550374 7.102368021565326 80.19407017929386 963.9212103863113 7.102374226504253 82.1058097057401 958.6235015759323 10.64243903664601 80.19407039752244 967.4646292083862 7.102432753566973 83.38449338517305 1155.827765651248 7.102375198349364 151.3575105388176 967.4646292292782 10.64243902968519 83.38449360339816 1159.371184473327 7.102433725411174 152.6361942182517 1159.371184494217 10.64243887867542 152.6361944364817 1160.347294078482 10.64243882218216 152.9884348735878 1155.827765678145 10.64243888147757 151.3575107592206 963.9212104132122 10.64243903247234 82.10580992613649 955.0800827598603 10.64243903943043 78.91538672026158 753.1697348937224 10.64243919830733 6.053701582794382 955.0800827329606 7.102309494502606 78.91538649985992 753.3991641395138 7.325076110963437 6.136493583214154 955.0800827598603 10.64243903943043 78.91538672026158 753.1697348937224 10.64243919830733 6.053701582794382 963.9212103863113 7.102374226504253 82.1058097057401 958.6235015759323 10.64243903664601 80.19407039752244 963.9212104132122 10.64243903247234 82.10580992613649 1155.827765651248 7.102375198349364 151.3575105388176 967.4646292292782 10.64243902968519 83.38449360339816 1155.827765678145 10.64243888147757 151.3575107592206 1160.347294078482 10.64243882218216 152.9884348735878 1160.347294112451 7.101101775138432 152.988434675084 1159.371184494217 10.64243887867542 152.6361944364817 1159.371184473327 7.102433725411174 152.6361942182517 967.4646292083862 7.102432753566973 83.38449338517305 958.6235015550374 7.102368021565326 80.19407017929386 750.165502794812 7.101102165779594 4.969589460063553 750.0138564490165 10.64243920305808 4.350544449602715 753.1881787649111 10.64243921319758 2.360287159427664 751.0150508657316 10.64243929209579 1.576088813841587 753.1697348937224 10.64243919830733 6.053701582794382 750.0144098087695 10.6424392007857 4.915066018663126 750.0144098087695 10.6424392007857 4.915066018663126 750.0138564490165 10.64243920305808 4.350544449602715 753.1697348937224 10.64243919830733 6.053701582794382 753.1881787649111 10.64243921319758 2.360287159427664 751.0150508657316 10.64243929209579 1.576088813841587 750.0144098087695 10.6424392007857 4.915066018663126 749.8336774685109 10.64243909615607 4.849846662602424 749.8336774687439 10.62992108911885 4.849846661940212 749.8336774687439 10.62992108911885 4.849846661940212 749.8336774685109 10.64243909615607 4.849846662602424 750.0144098087695 10.6424392007857 4.915066018663126 749.8336775242555 7.614799521560144 4.849846502527107 749.8697697617071 7.1011020551191 4.749829651784339 749.8336775337124 7.101102049125075 4.849846475367556 749.8336775337124 7.101102049125075 4.849846475367556 749.8697697617071 7.1011020551191 4.749829651784339 749.8336775242555 7.614799521560144 4.849846502527107 750.0138564490165 10.64243920305808 4.350544449602715 749.8336774687439 10.62992108911885 4.849846661940212 749.8336774685109 10.64243909615607 4.849846662602424 749.8336774685109 10.64243909615607 4.849846662602424 749.8336774687439 10.62992108911885 4.849846661940212 750.0138564490165 10.64243920305808 4.350544449602715 753.1881787649111 10.64243921319758 2.360287159427664 751.0150509298222 7.160195959568682 1.576088629792579 751.0150508657316 10.64243929209579 1.576088813841587 753.4175038079272 7.326597691800544 2.443041557216525 753.4175038079272 7.326597691800544 2.443041557216525 753.1881787649111 10.64243921319758 2.360287159427664 751.0150509298222 7.160195959568682 1.576088629792579 751.0150508657316 10.64243929209579 1.576088813841587 751.0150509298222 7.160195959568682 1.576088629792579 751.0150509309131 7.101102245034781 1.576088626669787 750.1644858747668 7.101102103989888 3.933128352637503 750.1644858747668 7.101102103989888 3.933128352637503 751.0150509309131 7.101102245034781 1.576088626669787 751.0150509298222 7.160195959568682 1.576088629792579 1468.76065837729 7.099675818246851 228.1767897450965 1241.805578521506 7.101101792795362 152.9884346716715 1242.393108896632 7.101101989092058 149.5080419415793 1461.247845296013 7.101176857686369 229.2504624311313 1468.357366460477 7.101101608935096 231.7212102427076 1464.791259988768 7.101233221788334 230.4818933383834 1464.791259988768 7.101233221788334 230.4818933383834 1468.357366460477 7.101101608935096 231.7212102427076 1461.247845296013 7.101176857686369 229.2504624311313 1468.76065837729 7.099675818246851 228.1767897450965 1241.805578521506 7.101101792795362 152.9884346716715 1242.393108896632 7.101101989092058 149.5080419415793 1241.805578521506 7.101101792795362 152.9884346716715 1164.668757023246 7.10236854546838 152.9884346749716 1160.347294112451 7.101101775138432 152.988434675084 1168.21206410384 7.102368541759915 152.988434674824 1168.212064124732 10.64243888317378 152.9884348732601 1241.805578488998 10.642438839835 152.9884348701781 1164.668757050147 10.64243888080091 152.9884348734069 1160.347294078482 10.64243882218216 152.9884348735878 1164.668757023246 7.10236854546838 152.9884346749716 1160.347294112451 7.101101775138432 152.988434675084 1164.668757050147 10.64243888080091 152.9884348734069 1160.347294078482 10.64243882218216 152.9884348735878 1241.805578488998 10.642438839835 152.9884348701781 1241.805578521506 7.101101792795362 152.9884346716715 1168.212064124732 10.64243888317378 152.9884348732601 1168.21206410384 7.102368541759915 152.988434674824 955.079759408303 10.64243905433568 75.21519992742969 753.4175038079272 7.326597691800544 2.443041557216525 753.1881787649111 10.64243921319758 2.360287159427664 955.0797593814 7.102140121270622 75.21519970709049 963.9208870616565 10.64243904739215 78.4056231333054 963.9208870347497 7.102204853267722 78.40562291297023 958.6231782243699 10.64243905155172 76.49388360469102 1155.827442326593 10.64243889638374 147.6573239663894 1155.827442299686 7.102205825130568 147.6573237460598 967.4643058777191 10.64243904459636 79.68430681056691 751.0150509309131 7.101102245034781 1.576088626669787 751.0150509298222 7.160195959568682 1.576088629792579 1160.956052139781 7.101101971441949 149.5080419449879 958.6231782034791 7.102198648327885 76.49388338652354 967.4643058568266 7.102263380331806 79.68430659240383 1159.370861121768 7.102264352189195 148.9360074254933 1159.370861142663 10.64243889360023 148.9360076436527 1160.956052105825 10.64243901849522 149.5080421434257 1160.956052105825 10.64243901849522 149.5080421434257 1159.370861142663 10.64243889360023 148.9360076436527 1160.956052139781 7.101101971441949 149.5080419449879 1159.370861121768 7.102264352189195 148.9360074254933 1155.827442299686 7.102205825130568 147.6573237460598 967.4643058777191 10.64243904459636 79.68430681056691 967.4643058568266 7.102263380331806 79.68430659240383 963.9208870347497 7.102204853267722 78.40562291297023 958.6231782243699 10.64243905155172 76.49388360469102 958.6231782034791 7.102198648327885 76.49388338652354 955.0797593814 7.102140121270622 75.21519970709049 751.0150509309131 7.101102245034781 1.576088626669787 753.4175038079272 7.326597691800544 2.443041557216525 751.0150509298222 7.160195959568682 1.576088629792579 1155.827442326593 10.64243889638374 147.6573239663894 963.9208870616565 10.64243904739215 78.4056231333054 955.079759408303 10.64243905433568 75.21519992742969 753.1881787649111 10.64243921319758 2.360287159427664 1164.668452905931 10.64243889483805 149.5080421432703 1160.956052139781 7.101101971441949 149.5080419449879 1160.956052105825 10.64243901849522 149.5080421434257 1164.668452879028 7.102209233146823 149.5080419448958 1242.393108896632 7.101101989092058 149.5080419415793 1168.211759959625 7.102209229431082 149.5080419447475 1168.211759980514 10.64243889719592 149.5080421431235 1242.393108864134 10.64243903614533 149.5080421400178 1242.393108864134 10.64243903614533 149.5080421400178 1168.211759980514 10.64243889719592 149.5080421431235 1242.393108896632 7.101101989092058 149.5080419415793 1168.211759959625 7.102209229431082 149.5080419447475 1164.668452879028 7.102209233146823 149.5080419448958 1160.956052139781 7.101101971441949 149.5080419449879 1164.668452905931 10.64243889483805 149.5080421432703 1160.956052105825 10.64243901849522 149.5080421434257 967.4646292292782 10.64243902968519 83.38449360339816 1155.827442326593 10.64243889638374 147.6573239663894 967.4643058777191 10.64243904459636 79.68430681056691 1155.827765678145 10.64243888147757 151.3575107592206 1155.827765678145 10.64243888147757 151.3575107592206 967.4646292292782 10.64243902968519 83.38449360339816 1155.827442326593 10.64243889638374 147.6573239663894 967.4643058777191 10.64243904459636 79.68430681056691 967.4646292083862 7.102432753566973 83.38449338517305 963.9212104132122 10.64243903247234 82.10580992613649 963.9212103863113 7.102374226504253 82.1058097057401 967.4646292292782 10.64243902968519 83.38449360339816 967.4646292292782 10.64243902968519 83.38449360339816 967.4646292083862 7.102432753566973 83.38449338517305 963.9212104132122 10.64243903247234 82.10580992613649 963.9212103863113 7.102374226504253 82.1058097057401 958.6235015759323 10.64243903664601 80.19407039752244 963.9208870616565 10.64243904739215 78.4056231333054 958.6231782243699 10.64243905155172 76.49388360469102 963.9212104132122 10.64243903247234 82.10580992613649 963.9212104132122 10.64243903247234 82.10580992613649 958.6235015759323 10.64243903664601 80.19407039752244 963.9208870616565 10.64243904739215 78.4056231333054 958.6231782243699 10.64243905155172 76.49388360469102 958.6235015550374 7.102368021565326 80.19407017929386 955.0800827598603 10.64243903943043 78.91538672026158 955.0800827329606 7.102309494502606 78.91538649985992 958.6235015759323 10.64243903664601 80.19407039752244 958.6235015759323 10.64243903664601 80.19407039752244 958.6235015550374 7.102368021565326 80.19407017929386 955.0800827598603 10.64243903943043 78.91538672026158 955.0800827329606 7.102309494502606 78.91538649985992 753.1697348937224 10.64243919830733 6.053701582794382 955.079759408303 10.64243905433568 75.21519992742969 753.1881787649111 10.64243921319758 2.360287159427664 955.0800827598603 10.64243903943043 78.91538672026158 955.0800827598603 10.64243903943043 78.91538672026158 753.1697348937224 10.64243919830733 6.053701582794382 955.079759408303 10.64243905433568 75.21519992742969 753.1881787649111 10.64243921319758 2.360287159427664 1159.371184494217 10.64243887867542 152.6361944364817 1160.956052105825 10.64243901849522 149.5080421434257 1159.370861142663 10.64243889360023 148.9360076436527 1164.668757050147 10.64243888080091 152.9884348734069 1164.668452905931 10.64243889483805 149.5080421432703 1160.347294078482 10.64243882218216 152.9884348735878 1160.347294078482 10.64243882218216 152.9884348735878 1159.371184494217 10.64243887867542 152.6361944364817 1164.668757050147 10.64243888080091 152.9884348734069 1160.956052105825 10.64243901849522 149.5080421434257 1164.668452905931 10.64243889483805 149.5080421432703 1159.370861142663 10.64243889360023 148.9360076436527 1159.371184473327 7.102433725411174 152.6361942182517 1155.827765678145 10.64243888147757 151.3575107592206 1155.827765651248 7.102375198349364 151.3575105388176 1159.371184494217 10.64243887867542 152.6361944364817 1159.371184494217 10.64243887867542 152.6361944364817 1159.371184473327 7.102433725411174 152.6361942182517 1155.827765678145 10.64243888147757 151.3575107592206 1155.827765651248 7.102375198349364 151.3575105388176 750.0144098087695 10.6424392007857 4.915066018663126 750.0138564490165 10.64243920305808 4.350544449602715 749.8336774685109 10.64243909615607 4.849846662602424 749.8336774685109 10.64243909615607 4.849846662602424 750.0138564490165 10.64243920305808 4.350544449602715 750.0144098087695 10.6424392007857 4.915066018663126 1241.805578521506 7.101101792795362 152.9884346716715 1244.354743037727 10.64243893044795 153.8743373922204 1241.805578488998 10.642438839835 152.9884348701781 1244.354743010822 7.102397394996387 153.8743371731476 1461.247845296013 7.101176857686369 229.2504624311313 1247.898157703582 7.102453759083801 155.1057680803958 1253.195860361175 7.102456730231552 156.9468607425936 1247.898157724477 10.64243892784452 155.1057682973782 1256.739275053932 7.102513094318965 158.1782916498452 1256.739275074827 10.64243892137347 158.1782918668226 1461.247845322921 10.64243877144963 229.2504626502845 1253.195860388076 10.64243892396553 156.9468609616645 1253.195860361175 7.102456730231552 156.9468607425936 1247.898157724477 10.64243892784452 155.1057682973782 1253.195860388076 10.64243892396553 156.9468609616645 1461.247845322921 10.64243877144963 229.2504626502845 1461.247845296013 7.101176857686369 229.2504624311313 1256.739275074827 10.64243892137347 158.1782918668226 1256.739275053932 7.102513094318965 158.1782916498452 1247.898157703582 7.102453759083801 155.1057680803958 1244.354743010822 7.102397394996387 153.8743371731476 1241.805578521506 7.101101792795362 152.9884346716715 1244.354743037727 10.64243893044795 153.8743373922204 1241.805578488998 10.642438839835 152.9884348701781 1470.088888045464 7.094979345460615 228.1767897457835 1468.357366460477 7.101101608935096 231.7212102427076 1468.76065837729 7.099675818246851 228.1767897450965 1470.088888042903 7.0949791406656 231.7212102436034 1470.088888042903 7.0949791406656 231.7212102436034 1470.088888045464 7.094979345460615 228.1767897457835 1468.357366460477 7.101101608935096 231.7212102427076 1468.76065837729 7.099675818246851 228.1767897450965 1468.357366460477 7.101101608935096 231.7212102427076 1464.791260009663 10.64243865883691 230.4818935554405 1464.791259988768 7.101233221788334 230.4818933383834 1468.357366397982 10.64243865595336 231.721210430793 1468.357366397982 10.64243865595336 231.721210430793 1468.357366460477 7.101101608935096 231.7212102427076 1464.791260009663 10.64243865883691 230.4818935554405 1464.791259988768 7.101233221788334 230.4818933383834 1464.791259988768 7.101233221788334 230.4818933383834 1461.247845322921 10.64243877144963 229.2504626502845 1461.247845296013 7.101176857686369 229.2504624311313 1464.791260009663 10.64243865883691 230.4818935554405 1464.791260009663 10.64243865883691 230.4818935554405 1464.791259988768 7.101233221788334 230.4818933383834 1461.247845322921 10.64243877144963 229.2504626502845 1461.247845296013 7.101176857686369 229.2504624311313 1244.354743037727 10.64243893044795 153.8743373922204 1244.354421040658 10.64243894530182 150.1896503180993 1241.805578488998 10.642438839835 152.9884348701781 1168.211759980514 10.64243889719592 149.5080421431235 1242.393108864134 10.64243903614533 149.5080421400178 1168.212064124732 10.64243888317378 152.9884348732601 1241.805578488998 10.642438839835 152.9884348701781 1168.212064124732 10.64243888317378 152.9884348732601 1244.354421040658 10.64243894530182 150.1896503180993 1168.211759980514 10.64243889719592 149.5080421431235 1242.393108864134 10.64243903614533 149.5080421400178 1244.354743037727 10.64243893044795 153.8743373922204 1168.21206410384 7.102368541759915 152.988434674824 1164.668757050147 10.64243888080091 152.9884348734069 1164.668757023246 7.10236854546838 152.9884346749716 1168.212064124732 10.64243888317378 152.9884348732601 1168.212064124732 10.64243888317378 152.9884348732601 1168.21206410384 7.102368541759915 152.988434674824 1164.668757050147 10.64243888080091 152.9884348734069 1164.668757023246 7.10236854546838 152.9884346749716 955.079759408303 10.64243905433568 75.21519992742969 958.6231782034791 7.102198648327885 76.49388338652354 955.0797593814 7.102140121270622 75.21519970709049 958.6231782243699 10.64243905155172 76.49388360469102 958.6231782243699 10.64243905155172 76.49388360469102 955.079759408303 10.64243905433568 75.21519992742969 958.6231782034791 7.102198648327885 76.49388338652354 955.0797593814 7.102140121270622 75.21519970709049 963.9208870616565 10.64243904739215 78.4056231333054 967.4643058568266 7.102263380331806 79.68430659240383 963.9208870347497 7.102204853267722 78.40562291297023 967.4643058777191 10.64243904459636 79.68430681056691 967.4643058777191 10.64243904459636 79.68430681056691 963.9208870616565 10.64243904739215 78.4056231333054 967.4643058568266 7.102263380331806 79.68430659240383 963.9208870347497 7.102204853267722 78.40562291297023 1155.827442326593 10.64243889638374 147.6573239663894 1159.370861121768 7.102264352189195 148.9360074254933 1155.827442299686 7.102205825130568 147.6573237460598 1159.370861142663 10.64243889360023 148.9360076436527 1159.370861142663 10.64243889360023 148.9360076436527 1155.827442326593 10.64243889638374 147.6573239663894 1159.370861121768 7.102264352189195 148.9360074254933 1155.827442299686 7.102205825130568 147.6573237460598 1164.668452905931 10.64243889483805 149.5080421432703 1168.211759959625 7.102209229431082 149.5080419447475 1164.668452879028 7.102209233146823 149.5080419448958 1168.211759980514 10.64243889719592 149.5080421431235 1168.211759980514 10.64243889719592 149.5080421431235 1164.668452905931 10.64243889483805 149.5080421432703 1168.211759959625 7.102209229431082 149.5080419447475 1164.668452879028 7.102209233146823 149.5080419448958 1244.354421040658 10.64243894530182 150.1896503180993 1242.393108896632 7.101101989092058 149.5080419415793 1242.393108864134 10.64243903614533 149.5080421400178 1244.354421013752 7.102228731248033 150.1896500990801 1253.195538391007 10.64243893881394 153.2621738875434 1253.195538364099 7.102288066483652 153.2621736685288 1247.897835727405 10.64243894270931 151.421081223257 1461.247523298943 7.101101741882758 225.5657753570831 1247.897835706508 7.102285095348634 151.4210810063301 1256.73895305686 7.102344430587891 154.4936045757783 1256.738953077753 10.64243893622006 154.4936047927014 1461.247523325852 10.64243878629668 225.5657755761646 1461.247523325852 10.64243878629668 225.5657755761646 1256.738953077753 10.64243893622006 154.4936047927014 1461.247523298943 7.101101741882758 225.5657753570831 1256.73895305686 7.102344430587891 154.4936045757783 1253.195538364099 7.102288066483652 153.2621736685288 1247.897835727405 10.64243894270931 151.421081223257 1247.897835706508 7.102285095348634 151.4210810063301 1244.354421013752 7.102228731248033 150.1896500990801 1242.393108896632 7.101101989092058 149.5080419415793 1253.195538391007 10.64243893881394 153.2621738875434 1244.354421040658 10.64243894530182 150.1896503180993 1242.393108864134 10.64243903614533 149.5080421400178 1155.827765678145 10.64243888147757 151.3575107592206 1159.370861142663 10.64243889360023 148.9360076436527 1155.827442326593 10.64243889638374 147.6573239663894 1159.371184494217 10.64243887867542 152.6361944364817 1159.371184494217 10.64243887867542 152.6361944364817 1155.827765678145 10.64243888147757 151.3575107592206 1159.370861142663 10.64243889360023 148.9360076436527 1155.827442326593 10.64243889638374 147.6573239663894 963.9212104132122 10.64243903247234 82.10580992613649 967.4643058777191 10.64243904459636 79.68430681056691 963.9208870616565 10.64243904739215 78.4056231333054 967.4646292292782 10.64243902968519 83.38449360339816 967.4646292292782 10.64243902968519 83.38449360339816 963.9212104132122 10.64243903247234 82.10580992613649 967.4643058777191 10.64243904459636 79.68430681056691 963.9208870616565 10.64243904739215 78.4056231333054 955.0800827598603 10.64243903943043 78.91538672026158 958.6231782243699 10.64243905155172 76.49388360469102 955.079759408303 10.64243905433568 75.21519992742969 958.6235015759323 10.64243903664601 80.19407039752244 958.6235015759323 10.64243903664601 80.19407039752244 955.0800827598603 10.64243903943043 78.91538672026158 958.6231782243699 10.64243905155172 76.49388360469102 955.079759408303 10.64243905433568 75.21519992742969 1164.668452905931 10.64243889483805 149.5080421432703 1168.212064124732 10.64243888317378 152.9884348732601 1168.211759980514 10.64243889719592 149.5080421431235 1164.668757050147 10.64243888080091 152.9884348734069 1164.668757050147 10.64243888080091 152.9884348734069 1164.668452905931 10.64243889483805 149.5080421432703 1168.212064124732 10.64243888317378 152.9884348732601 1168.211759980514 10.64243889719592 149.5080421431235 1256.739275074827 10.64243892137347 158.1782918668226 1461.247523325852 10.64243878629668 225.5657755761646 1256.738953077753 10.64243893622006 154.4936047927014 1461.247845322921 10.64243877144963 229.2504626502845 1461.247845322921 10.64243877144963 229.2504626502845 1256.739275074827 10.64243892137347 158.1782918668226 1461.247523325852 10.64243878629668 225.5657755761646 1256.738953077753 10.64243893622006 154.4936047927014 1256.739275053932 7.102513094318965 158.1782916498452 1253.195860388076 10.64243892396553 156.9468609616645 1253.195860361175 7.102456730231552 156.9468607425936 1256.739275074827 10.64243892137347 158.1782918668226 1256.739275074827 10.64243892137347 158.1782918668226 1256.739275053932 7.102513094318965 158.1782916498452 1253.195860388076 10.64243892396553 156.9468609616645 1253.195860361175 7.102456730231552 156.9468607425936 1247.898157724477 10.64243892784452 155.1057682973782 1253.195538391007 10.64243893881394 153.2621738875434 1247.897835727405 10.64243894270931 151.421081223257 1253.195860388076 10.64243892396553 156.9468609616645 1253.195860388076 10.64243892396553 156.9468609616645 1247.898157724477 10.64243892784452 155.1057682973782 1253.195538391007 10.64243893881394 153.2621738875434 1247.897835727405 10.64243894270931 151.421081223257 1247.898157703582 7.102453759083801 155.1057680803958 1244.354743037727 10.64243893044795 153.8743373922204 1244.354743010822 7.102397394996387 153.8743371731476 1247.898157724477 10.64243892784452 155.1057682973782 1247.898157724477 10.64243892784452 155.1057682973782 1247.898157703582 7.102453759083801 155.1057680803958 1244.354743037727 10.64243893044795 153.8743373922204 1244.354743010822 7.102397394996387 153.8743371731476 1461.247845322921 10.64243877144963 229.2504626502845 1464.790938012597 10.6424387852735 226.7972064813224 1461.247523325852 10.64243878629668 225.5657755761646 1468.760657735458 10.64243878079469 228.1767897318584 1469.499868880259 10.64243885181895 228.4336852774292 1464.791260009663 10.64243865883691 230.4818935554405 1468.357366397982 10.64243865595336 231.721210430793 1468.357366397982 10.64243865595336 231.721210430793 1464.791260009663 10.64243865883691 230.4818935554405 1469.499868880259 10.64243885181895 228.4336852774292 1461.247845322921 10.64243877144963 229.2504626502845 1468.760657735458 10.64243878079469 228.1767897318584 1464.790938012597 10.6424387852735 226.7972064813224 1461.247523325852 10.64243878629668 225.5657755761646 1468.357366460477 7.101101608935096 231.7212102427076 1470.088946452515 10.642438655565 231.7212104316881 1468.357366397982 10.64243865595336 231.721210430793 1470.088910069769 7.101208653031335 231.7213398842997 1470.088910069769 7.101208653031335 231.7213398842997 1468.357366460477 7.101101608935096 231.7212102427076 1470.088946452515 10.642438655565 231.7212104316881 1468.357366397982 10.64243865595336 231.721210430793 1244.354743037727 10.64243893044795 153.8743373922204 1247.897835727405 10.64243894270931 151.421081223257 1244.354421040658 10.64243894530182 150.1896503180993 1247.898157724477 10.64243892784452 155.1057682973782 1247.898157724477 10.64243892784452 155.1057682973782 1244.354743037727 10.64243893044795 153.8743373922204 1247.897835727405 10.64243894270931 151.421081223257 1244.354421040658 10.64243894530182 150.1896503180993 1461.247523325852 10.64243878629668 225.5657755761646 1464.7909379917 7.101101699605806 226.7972062643257 1461.247523298943 7.101101741882758 225.5657753570831 1464.790938012597 10.6424387852735 226.7972064813224 1464.790938012597 10.6424387852735 226.7972064813224 1461.247523325852 10.64243878629668 225.5657755761646 1464.7909379917 7.101101699605806 226.7972062643257 1461.247523298943 7.101101741882758 225.5657753570831 1244.354421040658 10.64243894530182 150.1896503180993 1247.897835706508 7.102285095348634 151.4210810063301 1244.354421013752 7.102228731248033 150.1896500990801 1247.897835727405 10.64243894270931 151.421081223257 1247.897835727405 10.64243894270931 151.421081223257 1244.354421040658 10.64243894530182 150.1896503180993 1247.897835706508 7.102285095348634 151.4210810063301 1244.354421013752 7.102228731248033 150.1896500990801 1253.195538391007 10.64243893881394 153.2621738875434 1256.73895305686 7.102344430587891 154.4936045757783 1253.195538364099 7.102288066483652 153.2621736685288 1256.738953077753 10.64243893622006 154.4936047927014 1256.738953077753 10.64243893622006 154.4936047927014 1253.195538391007 10.64243893881394 153.2621738875434 1256.73895305686 7.102344430587891 154.4936045757783 1253.195538364099 7.102288066483652 153.2621736685288 1253.195860388076 10.64243892396553 156.9468609616645 1256.738953077753 10.64243893622006 154.4936047927014 1253.195538391007 10.64243893881394 153.2621738875434 1256.739275074827 10.64243892137347 158.1782918668226 1256.739275074827 10.64243892137347 158.1782918668226 1253.195860388076 10.64243892396553 156.9468609616645 1256.738953077753 10.64243893622006 154.4936047927014 1253.195538391007 10.64243893881394 153.2621738875434 1464.790938012597 10.6424387852735 226.7972064813224 1468.760658706004 7.101101733382166 228.1767898594215 1464.7909379917 7.101101699605806 226.7972062643257 1468.760657735458 10.64243878079469 228.1767897318584 1468.760657735458 10.64243878079469 228.1767897318584 1464.790938012597 10.6424387852735 226.7972064813224 1468.760658706004 7.101101733382166 228.1767898594215 1464.7909379917 7.101101699605806 226.7972062643257 1468.317293020667 10.64463021526126 228.1767889551974 1468.760657735458 10.64243878079469 228.1767897318584 1468.317317803437 10.64243878049774 228.1767897316412 1470.088946454338 10.64243878013076 228.1767898099523 1468.760658706004 7.101101733382166 228.1767898594215 1470.088600318972 7.101101733094311 228.1767897461371 1470.088600318972 7.101101733094311 228.1767897461371 1470.088946454338 10.64243878013076 228.1767898099523 1468.760658706004 7.101101733382166 228.1767898594215 1468.760657735458 10.64243878079469 228.1767897318584 1468.317293020667 10.64463021526126 228.1767889551974 1468.317317803437 10.64243878049774 228.1767897316412 1468.317293018835 10.64463002708408 231.7212104308885 1470.088946454338 10.64243878013076 228.1767898099523 1468.317293020667 10.64463021526126 228.1767889551974 1470.088946452515 10.642438655565 231.7212104316881 1470.088946452515 10.642438655565 231.7212104316881 1468.317293018835 10.64463002708408 231.7212104308885 1470.088946454338 10.64243878013076 228.1767898099523 1468.317293020667 10.64463021526126 228.1767889551974</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"562\" source=\"#ID3083\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3081\">\r\n\t\t\t\t\t<float_array count=\"1686\" id=\"ID3084\">1.661854173635652e-007 -0.9999999999999838 7.021017720172403e-008 1.661854173635652e-007 -0.9999999999999838 7.021017720172403e-008 1.661854173635652e-007 -0.9999999999999838 7.021017720172403e-008 1.661854173635652e-007 -0.9999999999999838 7.021017720172403e-008 -1.661854173635652e-007 0.9999999999999838 -7.021017720172403e-008 -1.661854173635652e-007 0.9999999999999838 -7.021017720172403e-008 -1.661854173635652e-007 0.9999999999999838 -7.021017720172403e-008 -1.661854173635652e-007 0.9999999999999838 -7.021017720172403e-008 -0.3394368075172367 -5.598145524438523e-008 0.9406288607641716 -0.3394368075172367 -5.598145524438523e-008 0.9406288607641716 -0.3394368075172367 -5.598145524438523e-008 0.9406288607641716 -0.3394368075172367 -5.598145524438523e-008 0.9406288607641716 -0.3394368075172367 -5.598145524438523e-008 0.9406288607641716 -0.3394368075172367 -5.598145524438523e-008 0.9406288607641716 -0.3394368075172367 -5.598145524438523e-008 0.9406288607641716 0.3394368075172367 5.598145524438523e-008 -0.9406288607641716 0.3394368075172367 5.598145524438523e-008 -0.9406288607641716 0.3394368075172367 5.598145524438523e-008 -0.9406288607641716 0.3394368075172367 5.598145524438523e-008 -0.9406288607641716 0.3394368075172367 5.598145524438523e-008 -0.9406288607641716 0.3394368075172367 5.598145524438523e-008 -0.9406288607641716 0.3394368075172367 5.598145524438523e-008 -0.9406288607641716 2.930573934799957e-006 -0.9999999999952084 9.976430267770388e-007 2.930573934799957e-006 -0.9999999999952084 9.976430267770388e-007 2.930573934799957e-006 -0.9999999999952084 9.976430267770388e-007 -2.930573934799957e-006 0.9999999999952084 -9.976430267770388e-007 -2.930573934799957e-006 0.9999999999952084 -9.976430267770388e-007 -2.930573934799957e-006 0.9999999999952084 -9.976430267770388e-007 -0.9406288607644862 6.279089989318498e-010 -0.3394368075163697 -0.9406288607644862 6.279089989318498e-010 -0.3394368075163697 -0.9406288607644862 6.279089989318498e-010 -0.3394368075163697 -0.9406288607644862 6.279089989318498e-010 -0.3394368075163697 -0.9406288607644862 6.279089989318498e-010 -0.3394368075163697 -0.9406288607644862 6.279089989318498e-010 -0.3394368075163697 -0.9406288607644862 6.279089989318498e-010 -0.3394368075163697 0.9406288607644862 -6.279089989318498e-010 0.3394368075163697 0.9406288607644862 -6.279089989318498e-010 0.3394368075163697 0.9406288607644862 -6.279089989318498e-010 0.3394368075163697 0.9406288607644862 -6.279089989318498e-010 0.3394368075163697 0.9406288607644862 -6.279089989318498e-010 0.3394368075163697 0.9406288607644862 -6.279089989318498e-010 0.3394368075163697 0.9406288607644862 -6.279089989318498e-010 0.3394368075163697 6.053210858216164e-010 -1 -3.82770009251291e-009 6.053210858216164e-010 -1 -3.82770009251291e-009 6.053210858216164e-010 -1 -3.82770009251291e-009 6.053210858216164e-010 -1 -3.82770009251291e-009 6.053210858216164e-010 -1 -3.82770009251291e-009 6.053210858216164e-010 -1 -3.82770009251291e-009 6.053210858216164e-010 -1 -3.82770009251291e-009 -6.053210858216164e-010 1 3.82770009251291e-009 -6.053210858216164e-010 1 3.82770009251291e-009 -6.053210858216164e-010 1 3.82770009251291e-009 -6.053210858216164e-010 1 3.82770009251291e-009 -6.053210858216164e-010 1 3.82770009251291e-009 -6.053210858216164e-010 1 3.82770009251291e-009 -6.053210858216164e-010 1 3.82770009251291e-009 -0.3394368075010604 -5.598187912553027e-008 0.9406288607700092 -0.3394368075010604 -5.598187912553027e-008 0.9406288607700092 -0.3394368075010604 -5.598187912553027e-008 0.9406288607700092 0.3394368075010604 5.598187912553027e-008 -0.9406288607700092 0.3394368075010604 5.598187912553027e-008 -0.9406288607700092 0.3394368075010604 5.598187912553027e-008 -0.9406288607700092 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 -0.3394368075164873 -5.598224168902512e-008 0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 0.3394368075164873 5.598224168902512e-008 -0.9406288607644422 2.896502392247469e-009 1 1.692784728731835e-008 2.896502392247469e-009 1 1.692784728731835e-008 2.896502392247469e-009 1 1.692784728731835e-008 2.896502392247469e-009 1 1.692784728731835e-008 2.896502392247469e-009 1 1.692784728731835e-008 -2.896502392247469e-009 -1 -1.692784728731835e-008 -2.896502392247469e-009 -1 -1.692784728731835e-008 -2.896502392247469e-009 -1 -1.692784728731835e-008 -2.896502392247469e-009 -1 -1.692784728731835e-008 -2.896502392247469e-009 -1 -1.692784728731835e-008 -0.3394368075157248 -5.599212929744378e-008 0.9406288607647173 -0.3394368075157248 -5.599212929744378e-008 0.9406288607647173 -0.3394368075157248 -5.599212929744378e-008 0.9406288607647173 0.3394368075157248 5.599212929744378e-008 -0.9406288607647173 0.3394368075157248 5.599212929744378e-008 -0.9406288607647173 0.3394368075157248 5.599212929744378e-008 -0.9406288607647173 -0.9406288607632738 6.26159489113421e-010 -0.3394368075197293 -0.9406288607632738 6.26159489113421e-010 -0.3394368075197293 -0.9406288607632738 6.26159489113421e-010 -0.3394368075197293 0.9406288607632738 -6.26159489113421e-010 0.3394368075197293 0.9406288607632738 -6.26159489113421e-010 0.3394368075197293 0.9406288607632738 -6.26159489113421e-010 0.3394368075197293 -0.940628860763744 6.863308161950348e-010 -0.3394368075184265 -0.940628860763744 6.863308161950348e-010 -0.3394368075184265 -0.940628860763744 6.863308161950348e-010 -0.3394368075184265 0.940628860763744 -6.863308161950348e-010 0.3394368075184265 0.940628860763744 -6.863308161950348e-010 0.3394368075184265 0.940628860763744 -6.863308161950348e-010 0.3394368075184265 0.3394368075153364 5.596364964220485e-008 -0.9406288607648574 0.3394368075153364 5.596364964220485e-008 -0.9406288607648574 0.3394368075153364 5.596364964220485e-008 -0.9406288607648574 0.3394368075153364 5.596364964220485e-008 -0.9406288607648574 -0.3394368075153364 -5.596364964220485e-008 0.9406288607648574 -0.3394368075153364 -5.596364964220485e-008 0.9406288607648574 -0.3394368075153364 -5.596364964220485e-008 0.9406288607648574 -0.3394368075153364 -5.596364964220485e-008 0.9406288607648574 -0.9406288607643921 6.123012807567854e-010 -0.3394368075166306 -0.9406288607643921 6.123012807567854e-010 -0.3394368075166306 -0.9406288607643921 6.123012807567854e-010 -0.3394368075166306 0.9406288607643921 -6.123012807567854e-010 0.3394368075166306 0.9406288607643921 -6.123012807567854e-010 0.3394368075166306 0.9406288607643921 -6.123012807567854e-010 0.3394368075166306 -8.652264875651335e-005 -0.9999999669504739 0.000242100976211754 -8.652264875651335e-005 -0.9999999669504739 0.000242100976211754 -8.652264875651335e-005 -0.9999999669504739 0.000242100976211754 -8.652264875651335e-005 -0.9999999669504739 0.000242100976211754 -8.652264875651335e-005 -0.9999999669504739 0.000242100976211754 -8.652264875651335e-005 -0.9999999669504739 0.000242100976211754 8.652264875651335e-005 0.9999999669504739 -0.000242100976211754 8.652264875651335e-005 0.9999999669504739 -0.000242100976211754 8.652264875651335e-005 0.9999999669504739 -0.000242100976211754 8.652264875651335e-005 0.9999999669504739 -0.000242100976211754 8.652264875651335e-005 0.9999999669504739 -0.000242100976211754 8.652264875651335e-005 0.9999999669504739 -0.000242100976211754 4.187330156041563e-011 -5.605385231633809e-008 0.9999999999999986 4.187330156041563e-011 -5.605385231633809e-008 0.9999999999999986 4.187330156041563e-011 -5.605385231633809e-008 0.9999999999999986 4.187330156041563e-011 -5.605385231633809e-008 0.9999999999999986 4.187330156041563e-011 -5.605385231633809e-008 0.9999999999999986 4.187330156041563e-011 -5.605385231633809e-008 0.9999999999999986 4.187330156041563e-011 -5.605385231633809e-008 0.9999999999999986 4.187330156041563e-011 -5.605385231633809e-008 0.9999999999999986 -4.187330156041563e-011 5.605385231633809e-008 -0.9999999999999986 -4.187330156041563e-011 5.605385231633809e-008 -0.9999999999999986 -4.187330156041563e-011 5.605385231633809e-008 -0.9999999999999986 -4.187330156041563e-011 5.605385231633809e-008 -0.9999999999999986 -4.187330156041563e-011 5.605385231633809e-008 -0.9999999999999986 -4.187330156041563e-011 5.605385231633809e-008 -0.9999999999999986 -4.187330156041563e-011 5.605385231633809e-008 -0.9999999999999986 -4.187330156041563e-011 5.605385231633809e-008 -0.9999999999999986 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 0.3394368075164733 5.596244785472889e-008 -0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -0.3394368075164733 -5.596244785472889e-008 0.9406288607644471 -4.186957621803404e-011 5.603480713995918e-008 -0.9999999999999985 -4.186957621803404e-011 5.603480713995918e-008 -0.9999999999999985 -4.186957621803404e-011 5.603480713995918e-008 -0.9999999999999985 -4.186957621803404e-011 5.603480713995918e-008 -0.9999999999999985 -4.186957621803404e-011 5.603480713995918e-008 -0.9999999999999985 -4.186957621803404e-011 5.603480713995918e-008 -0.9999999999999985 -4.186957621803404e-011 5.603480713995918e-008 -0.9999999999999985 -4.186957621803404e-011 5.603480713995918e-008 -0.9999999999999985 4.186957621803404e-011 -5.603480713995918e-008 0.9999999999999985 4.186957621803404e-011 -5.603480713995918e-008 0.9999999999999985 4.186957621803404e-011 -5.603480713995918e-008 0.9999999999999985 4.186957621803404e-011 -5.603480713995918e-008 0.9999999999999985 4.186957621803404e-011 -5.603480713995918e-008 0.9999999999999985 4.186957621803404e-011 -5.603480713995918e-008 0.9999999999999985 4.186957621803404e-011 -5.603480713995918e-008 0.9999999999999985 4.186957621803404e-011 -5.603480713995918e-008 0.9999999999999985 -6.674010761357412e-010 1 4.029922036591187e-009 -6.674010761357412e-010 1 4.029922036591187e-009 -6.674010761357412e-010 1 4.029922036591187e-009 -6.674010761357412e-010 1 4.029922036591187e-009 6.674010761357412e-010 -1 -4.029922036591187e-009 6.674010761357412e-010 -1 -4.029922036591187e-009 6.674010761357412e-010 -1 -4.029922036591187e-009 6.674010761357412e-010 -1 -4.029922036591187e-009 -0.3394368075165105 -5.598195564120124e-008 0.9406288607644339 -0.3394368075165105 -5.598195564120124e-008 0.9406288607644339 -0.3394368075165105 -5.598195564120124e-008 0.9406288607644339 -0.3394368075165105 -5.598195564120124e-008 0.9406288607644339 0.3394368075165105 5.598195564120124e-008 -0.9406288607644339 0.3394368075165105 5.598195564120124e-008 -0.9406288607644339 0.3394368075165105 5.598195564120124e-008 -0.9406288607644339 0.3394368075165105 5.598195564120124e-008 -0.9406288607644339 -6.68084039169161e-010 1 4.030963003708379e-009 -6.68084039169161e-010 1 4.030963003708379e-009 -6.68084039169161e-010 1 4.030963003708379e-009 -6.68084039169161e-010 1 4.030963003708379e-009 6.68084039169161e-010 -1 -4.030963003708379e-009 6.68084039169161e-010 -1 -4.030963003708379e-009 6.68084039169161e-010 -1 -4.030963003708379e-009 6.68084039169161e-010 -1 -4.030963003708379e-009 -0.3394368075164859 -5.598203441033222e-008 0.9406288607644425 -0.3394368075164859 -5.598203441033222e-008 0.9406288607644425 -0.3394368075164859 -5.598203441033222e-008 0.9406288607644425 -0.3394368075164859 -5.598203441033222e-008 0.9406288607644425 0.3394368075164859 5.598203441033222e-008 -0.9406288607644425 0.3394368075164859 5.598203441033222e-008 -0.9406288607644425 0.3394368075164859 5.598203441033222e-008 -0.9406288607644425 0.3394368075164859 5.598203441033222e-008 -0.9406288607644425 -6.674794597267338e-010 1 4.030127721642426e-009 -6.674794597267338e-010 1 4.030127721642426e-009 -6.674794597267338e-010 1 4.030127721642426e-009 -6.674794597267338e-010 1 4.030127721642426e-009 6.674794597267338e-010 -1 -4.030127721642426e-009 6.674794597267338e-010 -1 -4.030127721642426e-009 6.674794597267338e-010 -1 -4.030127721642426e-009 6.674794597267338e-010 -1 -4.030127721642426e-009 -8.809125227708068e-010 0.9999999999999998 1.992613270538441e-008 -8.809125227708068e-010 0.9999999999999998 1.992613270538441e-008 -8.809125227708068e-010 0.9999999999999998 1.992613270538441e-008 -8.809125227708068e-010 0.9999999999999998 1.992613270538441e-008 -8.809125227708068e-010 0.9999999999999998 1.992613270538441e-008 -8.809125227708068e-010 0.9999999999999998 1.992613270538441e-008 8.809125227708068e-010 -0.9999999999999998 -1.992613270538441e-008 8.809125227708068e-010 -0.9999999999999998 -1.992613270538441e-008 8.809125227708068e-010 -0.9999999999999998 -1.992613270538441e-008 8.809125227708068e-010 -0.9999999999999998 -1.992613270538441e-008 8.809125227708068e-010 -0.9999999999999998 -1.992613270538441e-008 8.809125227708068e-010 -0.9999999999999998 -1.992613270538441e-008 -0.3394368075166961 -5.598344940009386e-008 0.9406288607643667 -0.3394368075166961 -5.598344940009386e-008 0.9406288607643667 -0.3394368075166961 -5.598344940009386e-008 0.9406288607643667 -0.3394368075166961 -5.598344940009386e-008 0.9406288607643667 0.3394368075166961 5.598344940009386e-008 -0.9406288607643667 0.3394368075166961 5.598344940009386e-008 -0.9406288607643667 0.3394368075166961 5.598344940009386e-008 -0.9406288607643667 0.3394368075166961 5.598344940009386e-008 -0.9406288607643667 -5.805841172326772e-007 0.9999999999998315 4.601064731578514e-009 -5.805841172326772e-007 0.9999999999998315 4.601064731578514e-009 -5.805841172326772e-007 0.9999999999998315 4.601064731578514e-009 5.805841172326772e-007 -0.9999999999998315 -4.601064731578514e-009 5.805841172326772e-007 -0.9999999999998315 -4.601064731578514e-009 5.805841172326772e-007 -0.9999999999998315 -4.601064731578514e-009 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 -0.3282682647796049 -5.596093111318967e-008 0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 0.3282682647796049 5.596093111318967e-008 -0.9445845363643132 -0.003535866980460514 -0.9999937488028079 -5.778196891806039e-008 -0.003535866980460514 -0.9999937488028079 -5.778196891806039e-008 -0.003535866980460514 -0.9999937488028079 -5.778196891806039e-008 -0.003535866980460514 -0.9999937488028079 -5.778196891806039e-008 0.003535866980460514 0.9999937488028079 5.778196891806039e-008 0.003535866980460514 0.9999937488028079 5.778196891806039e-008 0.003535866980460514 0.9999937488028079 5.778196891806039e-008 0.003535866980460514 0.9999937488028079 5.778196891806039e-008 -0.3282682647802472 -5.596124551756242e-008 0.9445845363640898 -0.3282682647802472 -5.596124551756242e-008 0.9445845363640898 -0.3282682647802472 -5.596124551756242e-008 0.9445845363640898 -0.3282682647802472 -5.596124551756242e-008 0.9445845363640898 0.3282682647802472 5.596124551756242e-008 -0.9445845363640898 0.3282682647802472 5.596124551756242e-008 -0.9445845363640898 0.3282682647802472 5.596124551756242e-008 -0.9445845363640898 0.3282682647802472 5.596124551756242e-008 -0.9445845363640898 -0.3282682647795228 -5.596160679099222e-008 0.9445845363643416 -0.3282682647795228 -5.596160679099222e-008 0.9445845363643416 -0.3282682647795228 -5.596160679099222e-008 0.9445845363643416 -0.3282682647795228 -5.596160679099222e-008 0.9445845363643416 0.3282682647795228 5.596160679099222e-008 -0.9445845363643416 0.3282682647795228 5.596160679099222e-008 -0.9445845363643416 0.3282682647795228 5.596160679099222e-008 -0.9445845363643416 0.3282682647795228 5.596160679099222e-008 -0.9445845363643416 -7.512095981880824e-010 0.9999999999999999 2.020967688218332e-008 -7.512095981880824e-010 0.9999999999999999 2.020967688218332e-008 -7.512095981880824e-010 0.9999999999999999 2.020967688218332e-008 -7.512095981880824e-010 0.9999999999999999 2.020967688218332e-008 -7.512095981880824e-010 0.9999999999999999 2.020967688218332e-008 -7.512095981880824e-010 0.9999999999999999 2.020967688218332e-008 7.512095981880824e-010 -0.9999999999999999 -2.020967688218332e-008 7.512095981880824e-010 -0.9999999999999999 -2.020967688218332e-008 7.512095981880824e-010 -0.9999999999999999 -2.020967688218332e-008 7.512095981880824e-010 -0.9999999999999999 -2.020967688218332e-008 7.512095981880824e-010 -0.9999999999999999 -2.020967688218332e-008 7.512095981880824e-010 -0.9999999999999999 -2.020967688218332e-008 4.176959013484614e-011 -5.60539535588388e-008 0.9999999999999986 4.176959013484614e-011 -5.60539535588388e-008 0.9999999999999986 4.176959013484614e-011 -5.60539535588388e-008 0.9999999999999986 4.176959013484614e-011 -5.60539535588388e-008 0.9999999999999986 -4.176959013484614e-011 5.60539535588388e-008 -0.9999999999999986 -4.176959013484614e-011 5.60539535588388e-008 -0.9999999999999986 -4.176959013484614e-011 5.60539535588388e-008 -0.9999999999999986 -4.176959013484614e-011 5.60539535588388e-008 -0.9999999999999986 0.3394368075165372 5.596293424660727e-008 -0.9406288607644242 0.3394368075165372 5.596293424660727e-008 -0.9406288607644242 0.3394368075165372 5.596293424660727e-008 -0.9406288607644242 0.3394368075165372 5.596293424660727e-008 -0.9406288607644242 -0.3394368075165372 -5.596293424660727e-008 0.9406288607644242 -0.3394368075165372 -5.596293424660727e-008 0.9406288607644242 -0.3394368075165372 -5.596293424660727e-008 0.9406288607644242 -0.3394368075165372 -5.596293424660727e-008 0.9406288607644242 0.3394368075165803 5.596287557348883e-008 -0.9406288607644086 0.3394368075165803 5.596287557348883e-008 -0.9406288607644086 0.3394368075165803 5.596287557348883e-008 -0.9406288607644086 0.3394368075165803 5.596287557348883e-008 -0.9406288607644086 -0.3394368075165803 -5.596287557348883e-008 0.9406288607644086 -0.3394368075165803 -5.596287557348883e-008 0.9406288607644086 -0.3394368075165803 -5.596287557348883e-008 0.9406288607644086 -0.3394368075165803 -5.596287557348883e-008 0.9406288607644086 0.3394368075165624 5.59615014217741e-008 -0.9406288607644151 0.3394368075165624 5.59615014217741e-008 -0.9406288607644151 0.3394368075165624 5.59615014217741e-008 -0.9406288607644151 0.3394368075165624 5.59615014217741e-008 -0.9406288607644151 -0.3394368075165624 -5.59615014217741e-008 0.9406288607644151 -0.3394368075165624 -5.59615014217741e-008 0.9406288607644151 -0.3394368075165624 -5.59615014217741e-008 0.9406288607644151 -0.3394368075165624 -5.59615014217741e-008 0.9406288607644151 -4.185769562549564e-011 5.603481259056877e-008 -0.9999999999999985 -4.185769562549564e-011 5.603481259056877e-008 -0.9999999999999985 -4.185769562549564e-011 5.603481259056877e-008 -0.9999999999999985 -4.185769562549564e-011 5.603481259056877e-008 -0.9999999999999985 4.185769562549564e-011 -5.603481259056877e-008 0.9999999999999985 4.185769562549564e-011 -5.603481259056877e-008 0.9999999999999985 4.185769562549564e-011 -5.603481259056877e-008 0.9999999999999985 4.185769562549564e-011 -5.603481259056877e-008 0.9999999999999985 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 0.3282682647796181 5.5942789902732e-008 -0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -0.3282682647796181 -5.5942789902732e-008 0.9445845363643085 -6.671100921374812e-010 1 4.030530194781877e-009 -6.671100921374812e-010 1 4.030530194781877e-009 -6.671100921374812e-010 1 4.030530194781877e-009 -6.671100921374812e-010 1 4.030530194781877e-009 6.671100921374812e-010 -1 -4.030530194781877e-009 6.671100921374812e-010 -1 -4.030530194781877e-009 6.671100921374812e-010 -1 -4.030530194781877e-009 6.671100921374812e-010 -1 -4.030530194781877e-009 -6.676475532534973e-010 1 4.030769796143632e-009 -6.676475532534973e-010 1 4.030769796143632e-009 -6.676475532534973e-010 1 4.030769796143632e-009 -6.676475532534973e-010 1 4.030769796143632e-009 6.676475532534973e-010 -1 -4.030769796143632e-009 6.676475532534973e-010 -1 -4.030769796143632e-009 6.676475532534973e-010 -1 -4.030769796143632e-009 6.676475532534973e-010 -1 -4.030769796143632e-009 -6.674914534746892e-010 1 4.030499903284485e-009 -6.674914534746892e-010 1 4.030499903284485e-009 -6.674914534746892e-010 1 4.030499903284485e-009 -6.674914534746892e-010 1 4.030499903284485e-009 6.674914534746892e-010 -1 -4.030499903284485e-009 6.674914534746892e-010 -1 -4.030499903284485e-009 6.674914534746892e-010 -1 -4.030499903284485e-009 6.674914534746892e-010 -1 -4.030499903284485e-009 -6.676357327317952e-010 1 4.031143562943478e-009 -6.676357327317952e-010 1 4.031143562943478e-009 -6.676357327317952e-010 1 4.031143562943478e-009 -6.676357327317952e-010 1 4.031143562943478e-009 6.676357327317952e-010 -1 -4.031143562943478e-009 6.676357327317952e-010 -1 -4.031143562943478e-009 6.676357327317952e-010 -1 -4.031143562943478e-009 6.676357327317952e-010 -1 -4.031143562943478e-009 -6.674286103477723e-010 1 4.029997939715033e-009 -6.674286103477723e-010 1 4.029997939715033e-009 -6.674286103477723e-010 1 4.029997939715033e-009 -6.674286103477723e-010 1 4.029997939715033e-009 6.674286103477723e-010 -1 -4.029997939715033e-009 6.674286103477723e-010 -1 -4.029997939715033e-009 6.674286103477723e-010 -1 -4.029997939715033e-009 6.674286103477723e-010 -1 -4.029997939715033e-009 -0.3282682647795777 -5.596086237520562e-008 0.9445845363643226 -0.3282682647795777 -5.596086237520562e-008 0.9445845363643226 -0.3282682647795777 -5.596086237520562e-008 0.9445845363643226 -0.3282682647795777 -5.596086237520562e-008 0.9445845363643226 0.3282682647795777 5.596086237520562e-008 -0.9445845363643226 0.3282682647795777 5.596086237520562e-008 -0.9445845363643226 0.3282682647795777 5.596086237520562e-008 -0.9445845363643226 0.3282682647795777 5.596086237520562e-008 -0.9445845363643226 -6.675777853899224e-010 1 4.031845733659797e-009 -6.675777853899224e-010 1 4.031845733659797e-009 -6.675777853899224e-010 1 4.031845733659797e-009 -6.675777853899224e-010 1 4.031845733659797e-009 6.675777853899224e-010 -1 -4.031845733659797e-009 6.675777853899224e-010 -1 -4.031845733659797e-009 6.675777853899224e-010 -1 -4.031845733659797e-009 6.675777853899224e-010 -1 -4.031845733659797e-009 -0.3282682647796301 -5.596063571181812e-008 0.9445845363643042 -0.3282682647796301 -5.596063571181812e-008 0.9445845363643042 -0.3282682647796301 -5.596063571181812e-008 0.9445845363643042 -0.3282682647796301 -5.596063571181812e-008 0.9445845363643042 0.3282682647796301 5.596063571181812e-008 -0.9445845363643042 0.3282682647796301 5.596063571181812e-008 -0.9445845363643042 0.3282682647796301 5.596063571181812e-008 -0.9445845363643042 0.3282682647796301 5.596063571181812e-008 -0.9445845363643042 -7.429383138424652e-009 0.9999999999999996 2.966628030447063e-008 -7.429383138424652e-009 0.9999999999999996 2.966628030447063e-008 -7.429383138424652e-009 0.9999999999999996 2.966628030447063e-008 -7.429383138424652e-009 0.9999999999999996 2.966628030447063e-008 -7.429383138424652e-009 0.9999999999999996 2.966628030447063e-008 -7.429383138424652e-009 0.9999999999999996 2.966628030447063e-008 -7.429383138424652e-009 0.9999999999999996 2.966628030447063e-008 7.429383138424652e-009 -0.9999999999999996 -2.966628030447063e-008 7.429383138424652e-009 -0.9999999999999996 -2.966628030447063e-008 7.429383138424652e-009 -0.9999999999999996 -2.966628030447063e-008 7.429383138424652e-009 -0.9999999999999996 -2.966628030447063e-008 7.429383138424652e-009 -0.9999999999999996 -2.966628030447063e-008 7.429383138424652e-009 -0.9999999999999996 -2.966628030447063e-008 7.429383138424652e-009 -0.9999999999999996 -2.966628030447063e-008 -3.743530043440103e-005 1.825099914163914e-005 0.9999999991327497 -3.743530043440103e-005 1.825099914163914e-005 0.9999999991327497 -3.743530043440103e-005 1.825099914163914e-005 0.9999999991327497 -3.743530043440103e-005 1.825099914163914e-005 0.9999999991327497 3.743530043440103e-005 -1.825099914163914e-005 -0.9999999991327497 3.743530043440103e-005 -1.825099914163914e-005 -0.9999999991327497 3.743530043440103e-005 -1.825099914163914e-005 -0.9999999991327497 3.743530043440103e-005 -1.825099914163914e-005 -0.9999999991327497 -6.686320539515929e-010 1 4.031932379194293e-009 -6.686320539515929e-010 1 4.031932379194293e-009 -6.686320539515929e-010 1 4.031932379194293e-009 -6.686320539515929e-010 1 4.031932379194293e-009 6.686320539515929e-010 -1 -4.031932379194293e-009 6.686320539515929e-010 -1 -4.031932379194293e-009 6.686320539515929e-010 -1 -4.031932379194293e-009 6.686320539515929e-010 -1 -4.031932379194293e-009 0.3282682647795464 5.59418767408248e-008 -0.9445845363643334 0.3282682647795464 5.59418767408248e-008 -0.9445845363643334 0.3282682647795464 5.59418767408248e-008 -0.9445845363643334 0.3282682647795464 5.59418767408248e-008 -0.9445845363643334 -0.3282682647795464 -5.59418767408248e-008 0.9445845363643334 -0.3282682647795464 -5.59418767408248e-008 0.9445845363643334 -0.3282682647795464 -5.59418767408248e-008 0.9445845363643334 -0.3282682647795464 -5.59418767408248e-008 0.9445845363643334 0.3282682647797057 5.594321243006086e-008 -0.944584536364278 0.3282682647797057 5.594321243006086e-008 -0.944584536364278 0.3282682647797057 5.594321243006086e-008 -0.944584536364278 0.3282682647797057 5.594321243006086e-008 -0.944584536364278 -0.3282682647797057 -5.594321243006086e-008 0.944584536364278 -0.3282682647797057 -5.594321243006086e-008 0.944584536364278 -0.3282682647797057 -5.594321243006086e-008 0.944584536364278 -0.3282682647797057 -5.594321243006086e-008 0.944584536364278 0.3282682647796112 5.594304751578181e-008 -0.9445845363643108 0.3282682647796112 5.594304751578181e-008 -0.9445845363643108 0.3282682647796112 5.594304751578181e-008 -0.9445845363643108 0.3282682647796112 5.594304751578181e-008 -0.9445845363643108 -0.3282682647796112 -5.594304751578181e-008 0.9445845363643108 -0.3282682647796112 -5.594304751578181e-008 0.9445845363643108 -0.3282682647796112 -5.594304751578181e-008 0.9445845363643108 -0.3282682647796112 -5.594304751578181e-008 0.9445845363643108 -6.684114398038093e-010 1 4.030502097872313e-009 -6.684114398038093e-010 1 4.030502097872313e-009 -6.684114398038093e-010 1 4.030502097872313e-009 -6.684114398038093e-010 1 4.030502097872313e-009 6.684114398038093e-010 -1 -4.030502097872313e-009 6.684114398038093e-010 -1 -4.030502097872313e-009 6.684114398038093e-010 -1 -4.030502097872313e-009 6.684114398038093e-010 -1 -4.030502097872313e-009 0.3282682647795425 5.594202871628934e-008 -0.9445845363643347 0.3282682647795425 5.594202871628934e-008 -0.9445845363643347 0.3282682647795425 5.594202871628934e-008 -0.9445845363643347 0.3282682647795425 5.594202871628934e-008 -0.9445845363643347 -0.3282682647795425 -5.594202871628934e-008 0.9445845363643347 -0.3282682647795425 -5.594202871628934e-008 0.9445845363643347 -0.3282682647795425 -5.594202871628934e-008 0.9445845363643347 -0.3282682647795425 -5.594202871628934e-008 0.9445845363643347 1.504343698130558e-007 -4.590211652989143e-008 -0.9999999999999877 1.504343698130558e-007 -4.590211652989143e-008 -0.9999999999999877 1.504343698130558e-007 -4.590211652989143e-008 -0.9999999999999877 1.504343698130558e-007 -4.590211652989143e-008 -0.9999999999999877 1.504343698130558e-007 -4.590211652989143e-008 -0.9999999999999877 1.504343698130558e-007 -4.590211652989143e-008 -0.9999999999999877 -1.504343698130558e-007 4.590211652989143e-008 0.9999999999999877 -1.504343698130558e-007 4.590211652989143e-008 0.9999999999999877 -1.504343698130558e-007 4.590211652989143e-008 0.9999999999999877 -1.504343698130558e-007 4.590211652989143e-008 0.9999999999999877 -1.504343698130558e-007 4.590211652989143e-008 0.9999999999999877 -1.504343698130558e-007 4.590211652989143e-008 0.9999999999999877 0.001236924560463332 0.9999992350085223 4.411915518283318e-008 0.001236924560463332 0.9999992350085223 4.411915518283318e-008 0.001236924560463332 0.9999992350085223 4.411915518283318e-008 0.001236924560463332 0.9999992350085223 4.411915518283318e-008 -0.001236924560463332 -0.9999992350085223 -4.411915518283318e-008 -0.001236924560463332 -0.9999992350085223 -4.411915518283318e-008 -0.001236924560463332 -0.9999992350085223 -4.411915518283318e-008 -0.001236924560463332 -0.9999992350085223 -4.411915518283318e-008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"562\" source=\"#ID3084\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3082\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3080\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3081\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"346\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3082\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 9 11 12 9 12 13 13 12 14 15 16 17 17 16 18 16 19 18 19 20 18 21 18 20 22 23 24 25 26 27 28 29 30 29 28 31 31 28 32 32 28 33 32 33 34 35 36 37 36 38 37 37 38 39 39 38 40 41 40 38 42 43 44 43 45 46 45 43 47 47 43 48 48 43 42 49 50 51 51 50 52 52 50 53 54 53 50 55 50 49 56 57 58 59 60 61 62 63 64 63 62 65 63 65 66 66 65 67 66 67 68 67 65 69 69 65 70 69 70 71 70 65 72 72 65 73 73 65 74 75 71 70 76 68 67 64 77 78 77 64 63 79 80 81 82 81 80 83 84 85 86 87 88 89 90 91 91 90 92 92 90 86 87 86 93 86 90 93 93 90 83 84 83 94 83 90 94 94 90 79 90 95 79 80 79 95 96 97 98 97 96 99 99 96 100 101 102 103 103 102 104 105 104 102 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 125 124 127 128 129 130 131 130 129 132 133 134 135 136 137 138 139 140 139 138 141 141 138 142 141 142 143 144 145 146 145 147 146 146 147 148 149 148 147 150 151 152 151 150 153 153 150 154 154 150 155 152 156 157 156 152 151 158 159 160 161 160 159 162 163 164 164 163 165 165 163 158 159 158 163 166 167 168 167 166 169 170 171 172 173 174 175 167 176 177 176 167 169 176 169 178 178 169 179 178 179 171 171 179 172 178 171 180 178 180 174 174 180 175 178 174 181 178 181 182 178 182 183 184 185 186 185 187 186 187 188 186 189 190 188 188 190 186 190 191 186 192 193 191 191 193 186 193 194 186 186 194 195 194 196 195 197 195 196 189 188 198 192 191 199 194 200 196 201 196 200 202 203 204 203 202 205 205 206 203 206 205 207 206 207 208 206 208 209 210 211 212 211 213 212 213 214 212 215 212 214 214 216 215 217 215 216 218 219 220 219 218 221 222 223 224 225 224 223 226 227 228 227 226 229 230 231 232 233 232 231 234 235 236 235 234 237 238 239 240 241 240 239 242 243 244 243 242 245 246 247 248 249 248 247 250 251 252 251 250 253 254 255 256 257 256 255 258 259 260 259 261 262 261 259 258 261 258 263 264 265 266 265 267 266 268 266 267 269 267 265 270 271 272 271 270 273 274 275 276 277 276 275 278 279 280 281 282 283 284 285 286 285 284 287 288 287 284 287 288 289 289 288 290 289 290 291 290 288 292 292 288 293 293 288 294 295 291 290 296 297 298 299 300 301 301 300 302 302 300 296 297 296 303 296 300 303 303 300 304 305 304 300 304 305 306 307 306 305 308 309 310 309 308 311 312 313 314 315 314 313 316 317 318 317 316 319 320 321 322 323 322 321 324 325 326 325 324 327 328 329 330 331 330 329 332 333 334 335 333 336 333 335 337 333 337 334 338 339 340 339 341 340 342 340 341 338 340 343 344 345 346 345 344 347 348 349 350 351 350 349 352 353 354 353 352 355 356 357 358 359 358 357 360 361 362 361 360 363 364 365 366 367 366 365 368 369 370 369 368 371 372 373 374 375 374 373 376 377 378 377 376 379 380 381 382 383 382 381 384 385 386 385 384 387 388 389 390 387 391 385 391 387 392 391 392 389 389 392 390 391 389 393 391 393 394 391 394 395 396 397 398 397 399 398 399 400 398 401 402 400 400 402 398 402 403 398 404 398 403 401 400 405 403 406 404 407 404 406 408 409 410 409 408 411 412 413 414 415 414 413 416 417 418 417 416 419 420 421 422 423 422 421 424 425 426 425 424 427 428 429 430 431 430 429 432 433 434 433 432 435 436 437 438 439 438 437 440 441 442 441 440 443 444 445 446 447 446 445 448 449 450 449 448 451 452 453 454 455 454 453 456 457 458 457 456 459 460 461 462 463 462 461 464 465 466 465 464 467 468 469 470 471 470 469 472 473 474 473 472 475 475 472 476 476 472 477 476 477 478 479 480 481 480 482 481 481 482 483 483 482 484 485 484 482 486 487 488 487 486 489 490 491 492 493 492 491 494 495 496 495 494 497 498 499 500 501 500 499 502 503 504 503 502 505 506 507 508 509 508 507 510 511 512 511 510 513 514 515 516 517 516 515 518 519 520 519 518 521 522 523 524 525 524 523 526 527 528 527 526 529 530 531 532 533 532 531 534 535 536 535 534 537 538 539 540 541 540 539 542 543 544 543 542 545 543 545 546 546 545 547 548 549 550 550 549 551 549 552 551 553 551 552 554 555 556 555 554 557 558 559 560 561 560 559</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3085\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3086\">\r\n\t\t\t\t\t<float_array count=\"228\" id=\"ID3089\">1473.63225324867 10.64433493615297 227.683963254573 1473.632253324709 20.4881427860073 231.2272708028063 1473.63225324612 10.64433473142753 231.2272702549471 1473.632253327191 20.48814296981573 227.6839638024296 1473.632253327191 20.48814296981573 227.6839638024296 1473.63225324867 10.64433493615297 227.683963254573 1473.632253324709 20.4881427860073 231.2272708028063 1473.63225324612 10.64433473142753 231.2272702549471 1473.63225324612 10.64433473142753 231.2272702549471 1470.088946181512 13.40250377744087 231.227270411796 1470.088946159503 10.64433475970327 231.2272702524306 1470.10147479399 20.48809851470787 231.2272708002944 1473.632253324709 20.4881427860073 231.2272708028063 1473.632253324709 20.4881427860073 231.2272708028063 1473.63225324612 10.64433473142753 231.2272702549471 1470.10147479399 20.48809851470787 231.2272708002944 1470.088946181512 13.40250377744087 231.227270411796 1470.088946159503 10.64433475970327 231.2272702524306 1473.63225324867 10.64433493615297 227.683963254573 1470.088946454345 10.6438997366572 228.1767898099367 1470.088946162061 10.64433496443553 227.6839632520549 1473.63225324612 10.64433473142753 231.2272702549471 1470.088946159503 10.64433475970327 231.2272702524306 1470.088946159503 10.64433475970327 231.2272702524306 1473.63225324612 10.64433473142753 231.2272702549471 1470.088946454345 10.6438997366572 228.1767898099367 1473.63225324867 10.64433493615297 227.683963254573 1470.088946162061 10.64433496443553 227.6839632520549 1470.088946212311 16.94581104787176 227.6839636161525 1473.63225324867 10.64433493615297 227.683963254573 1470.088946162061 10.64433496443553 227.6839632520549 1470.088946240579 20.48814299808873 227.6839637999123 1473.632253327191 20.48814296981573 227.6839638024296 1473.632253327191 20.48814296981573 227.6839638024296 1470.088946240579 20.48814299808873 227.6839637999123 1473.63225324867 10.64433493615297 227.683963254573 1470.088946212311 16.94581104787176 227.6839636161525 1470.088946162061 10.64433496443553 227.6839632520549 1470.088946238097 20.48814281428849 231.2272708002869 1473.632253327191 20.48814296981573 227.6839638024296 1470.088946240579 20.48814299808873 227.6839637999123 1470.10147479399 20.48809851470787 231.2272708002944 1473.632253324709 20.4881427860073 231.2272708028063 1473.632253324709 20.4881427860073 231.2272708028063 1470.10147479399 20.48809851470787 231.2272708002944 1473.632253327191 20.48814296981573 227.6839638024296 1470.088946238097 20.48814281428849 231.2272708002869 1470.088946240579 20.48814299808873 227.6839637999123 1470.10147479399 20.48809851470787 231.2272708002944 1470.088946209825 16.9458108640597 231.2272706165284 1470.088946181512 13.40250377744087 231.227270411796 1470.088946238097 20.48814281428849 231.2272708002869 1470.088946238097 20.48814281428849 231.2272708002869 1470.10147479399 20.48809851470787 231.2272708002944 1470.088946209825 16.9458108640597 231.2272706165284 1470.088946181512 13.40250377744087 231.227270411796 1470.088946159503 10.64433475970327 231.2272702524306 1470.088946162061 10.64433496443553 227.6839632520549 1470.088946454345 10.6438997366572 228.1767898099367 1470.088946181512 13.40250377744087 231.227270411796 1470.088946212311 16.94581104787176 227.6839636161525 1470.088946209825 16.9458108640597 231.2272706165284 1470.088946209825 16.9458108640597 231.2272706165284 1470.088946181512 13.40250377744087 231.227270411796 1470.088946212311 16.94581104787176 227.6839636161525 1470.088946162061 10.64433496443553 227.6839632520549 1470.088946159503 10.64433475970327 231.2272702524306 1470.088946454345 10.6438997366572 228.1767898099367 1470.088946238097 20.48814281428849 231.2272708002869 1470.088946212311 16.94581104787176 227.6839636161525 1470.088946209825 16.9458108640597 231.2272706165284 1470.088946240579 20.48814299808873 227.6839637999123 1470.088946240579 20.48814299808873 227.6839637999123 1470.088946238097 20.48814281428849 231.2272708002869 1470.088946212311 16.94581104787176 227.6839636161525 1470.088946209825 16.9458108640597 231.2272706165284</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"76\" source=\"#ID3089\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3087\">\r\n\t\t\t\t\t<float_array count=\"228\" id=\"ID3090\">1 -7.980573438058976e-009 7.104006061675674e-010 1 -7.980573438058976e-009 7.104006061675674e-010 1 -7.980573438058976e-009 7.104006061675674e-010 1 -7.980573438058976e-009 7.104006061675674e-010 -1 7.980573438058976e-009 -7.104006061675674e-010 -1 7.980573438058976e-009 -7.104006061675674e-010 -1 7.980573438058976e-009 -7.104006061675674e-010 -1 7.980573438058976e-009 -7.104006061675674e-010 -1.747354038517086e-010 -5.557095023535808e-008 0.9999999999999986 -1.747354038517086e-010 -5.557095023535808e-008 0.9999999999999986 -1.747354038517086e-010 -5.557095023535808e-008 0.9999999999999986 -1.747354038517086e-010 -5.557095023535808e-008 0.9999999999999986 -1.747354038517086e-010 -5.557095023535808e-008 0.9999999999999986 1.747354038517086e-010 5.557095023535808e-008 -0.9999999999999986 1.747354038517086e-010 5.557095023535808e-008 -0.9999999999999986 1.747354038517086e-010 5.557095023535808e-008 -0.9999999999999986 1.747354038517086e-010 5.557095023535808e-008 -0.9999999999999986 1.747354038517086e-010 5.557095023535808e-008 -0.9999999999999986 3.766536233026592e-005 -0.9999999989225659 2.713280255942518e-005 3.766536233026592e-005 -0.9999999989225659 2.713280255942518e-005 3.766536233026592e-005 -0.9999999989225659 2.713280255942518e-005 3.766536233026592e-005 -0.9999999989225659 2.713280255942518e-005 3.766536233026592e-005 -0.9999999989225659 2.713280255942518e-005 -3.766536233026592e-005 0.9999999989225659 -2.713280255942518e-005 -3.766536233026592e-005 0.9999999989225659 -2.713280255942518e-005 -3.766536233026592e-005 0.9999999989225659 -2.713280255942518e-005 -3.766536233026592e-005 0.9999999989225659 -2.713280255942518e-005 -3.766536233026592e-005 0.9999999989225659 -2.713280255942518e-005 -5.324782887566101e-010 5.578049753934594e-008 -0.9999999999999986 -5.324782887566101e-010 5.578049753934594e-008 -0.9999999999999986 -5.324782887566101e-010 5.578049753934594e-008 -0.9999999999999986 -5.324782887566101e-010 5.578049753934594e-008 -0.9999999999999986 -5.324782887566101e-010 5.578049753934594e-008 -0.9999999999999986 5.324782887566101e-010 -5.578049753934594e-008 0.9999999999999986 5.324782887566101e-010 -5.578049753934594e-008 0.9999999999999986 5.324782887566101e-010 -5.578049753934594e-008 0.9999999999999986 5.324782887566101e-010 -5.578049753934594e-008 0.9999999999999986 5.324782887566101e-010 -5.578049753934594e-008 0.9999999999999986 -3.546034880226345e-006 0.9999999999871203 3.63116054498904e-006 -3.546034880226345e-006 0.9999999999871203 3.63116054498904e-006 -3.546034880226345e-006 0.9999999999871203 3.63116054498904e-006 -3.546034880226345e-006 0.9999999999871203 3.63116054498904e-006 -3.546034880226345e-006 0.9999999999871203 3.63116054498904e-006 3.546034880226345e-006 -0.9999999999871203 -3.63116054498904e-006 3.546034880226345e-006 -0.9999999999871203 -3.63116054498904e-006 3.546034880226345e-006 -0.9999999999871203 -3.63116054498904e-006 3.546034880226345e-006 -0.9999999999871203 -3.63116054498904e-006 3.546034880226345e-006 -0.9999999999871203 -3.63116054498904e-006 2.77652506330493e-007 -5.48282889251692e-008 0.99999999999996 2.77652506330493e-007 -5.48282889251692e-008 0.99999999999996 2.77652506330493e-007 -5.48282889251692e-008 0.99999999999996 2.77652506330493e-007 -5.48282889251692e-008 0.99999999999996 -2.77652506330493e-007 5.48282889251692e-008 -0.99999999999996 -2.77652506330493e-007 5.48282889251692e-008 -0.99999999999996 -2.77652506330493e-007 5.48282889251692e-008 -0.99999999999996 -2.77652506330493e-007 5.48282889251692e-008 -0.99999999999996 -0.9999999999999998 -6.20459039890717e-009 -2.077574902366937e-008 -0.9999999999999998 -6.20459039890717e-009 -2.077574902366937e-008 -0.9999999999999998 -6.20459039890717e-009 -2.077574902366937e-008 -0.9999999999999998 -6.20459039890717e-009 -2.077574902366937e-008 -0.9999999999999998 -6.20459039890717e-009 -2.077574902366937e-008 -0.9999999999999998 -6.20459039890717e-009 -2.077574902366937e-008 0.9999999999999998 6.20459039890717e-009 2.077574902366937e-008 0.9999999999999998 6.20459039890717e-009 2.077574902366937e-008 0.9999999999999998 6.20459039890717e-009 2.077574902366937e-008 0.9999999999999998 6.20459039890717e-009 2.077574902366937e-008 0.9999999999999998 6.20459039890717e-009 2.077574902366937e-008 0.9999999999999998 6.20459039890717e-009 2.077574902366937e-008 -1 7.980906230645103e-009 -7.003382349821941e-010 -1 7.980906230645103e-009 -7.003382349821941e-010 -1 7.980906230645103e-009 -7.003382349821941e-010 -1 7.980906230645103e-009 -7.003382349821941e-010 1 -7.980906230645103e-009 7.003382349821941e-010 1 -7.980906230645103e-009 7.003382349821941e-010 1 -7.980906230645103e-009 7.003382349821941e-010 1 -7.980906230645103e-009 7.003382349821941e-010</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"76\" source=\"#ID3090\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3088\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3086\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3087\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"44\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3088\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 11 8 12 13 14 15 15 14 16 17 16 14 18 19 20 19 18 21 19 21 22 23 24 25 24 26 25 27 25 26 28 29 30 29 28 31 29 31 32 33 34 35 34 36 35 37 35 36 38 39 40 39 38 41 39 41 42 43 44 45 44 46 45 47 45 46 48 49 50 49 48 51 52 53 54 55 54 53 56 57 58 57 56 59 57 59 60 60 59 61 62 63 64 64 63 65 63 66 65 67 65 66 68 69 70 69 68 71 72 73 74 75 74 73</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3091\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3092\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3094\">6.066243015082819 841.249865026899 227.6957704606463 6.08394049643664 841.2204480404002 227.6839240513133</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3094\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3093\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3092\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3093\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3095\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3096\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3098\">5.72909950125063 841.8109183819197 227.6839229050216 5.728235494800856 841.8123561250022 227.6839228628464</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3098\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3097\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3096\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3097\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3100\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3106\">\r\n\t\t\t\t\t<float_array count=\"294\" id=\"ID3110\">60.9508384391329 2.273736754432321e-013 9.220402219511925e-014 62.15046205457884 2.06025087552689 3.500851219503635 60.95083843913335 2.273736754432321e-013 119.5758671798564 99.30207802333189 65.86497124059542 3.96793709001031e-013 98.29761687235668 64.13989519250436 3.491056813364147 98.29940134035087 64.14295986353886 29.50152901254998 98.33821181133089 64.20961352539416 34.34243396170769 98.34355271231971 64.21878606567748 112.1916064664709 62.29798593055057 2.313610504930693 112.2013733463918 99.3020780233328 65.86497124059611 119.5758671798567 62.15224652257257 2.063315546560943 29.51132341868947 62.29264502956266 2.304437964647832 34.35220084162864 98.33821181133089 64.20961352539416 34.34243396170769 98.29940134035087 64.14295986353886 29.50152901254998 62.29264502956266 2.304437964647832 34.35220084162864 62.15224652257257 2.063315546560943 29.51132341868947 99.30207802333189 65.86497124059542 3.96793709001031e-013 98.34355271231971 64.21878606567748 112.1916064664709 99.3020780233328 65.86497124059611 119.5758671798567 62.29798593055057 2.313610504930693 112.2013733463918 62.15046205457884 2.06025087552689 3.500851219503635 60.95083843913335 2.273736754432321e-013 119.5758671798564 98.29761687235668 64.13989519250436 3.491056813364147 60.9508384391329 2.273736754432321e-013 9.220402219511925e-014 99.30207802333189 65.86497124059542 3.96793709001031e-013 97.94904044347913 68.22420801635326 3.601556847291467 99.3020780233328 65.86497124059611 119.5758671798567 59.27059809080038 135.6662399201359 6.807332475489147e-013 60.51267409279808 133.500482349295 3.591258103651266 60.51091890809676 133.5035427937044 29.36936809844611 60.34916776237515 133.785581709097 33.95298049969097 60.34384566559038 133.7948616335029 112.1177435471642 59.44124587083525 135.3686883041632 119.5758671798565 59.27059809080129 135.6662399201364 119.5758671798565 97.7594894974045 68.55472031661816 112.1280365900398 97.94728525877736 68.22726846076284 29.37966684208631 97.76481159418927 68.54544039221173 33.96327354256665 60.34916776237515 133.785581709097 33.95298049969097 60.51091890809676 133.5035427937044 29.36936809844611 97.76481159418927 68.54544039221173 33.96327354256665 97.94728525877736 68.22726846076284 29.37966684208631 60.34384566559038 133.7948616335029 112.1177435471642 97.7594894974045 68.55472031661816 112.1280365900398 59.44124587083525 135.3686883041632 119.5758671798565 97.94904044347913 68.22420801635326 3.601556847291467 99.3020780233328 65.86497124059611 119.5758671798567 59.27059809080129 135.6662399201364 119.5758671798565 59.27059809080038 135.6662399201359 6.807332475489147e-013 60.51267409279808 133.500482349295 3.591258103651266 99.30207802333189 65.86497124059542 3.96793709001031e-013 60.9508384391329 2.273736754432321e-013 9.220402219511925e-014 59.22606307715068 6.821210263296962e-013 3.848744681515813 4.643858352741518 0 3.848744681515751 60.95083843913335 2.273736754432321e-013 119.5758671798564 59.22606307715068 4.547473508864641e-013 28.07315413033472 59.22518149515599 2.273736754432321e-013 33.54238129714802 4.187779920352114 -2.273736754432321e-013 33.54238129714794 59.22518149515599 6.821210263296962e-013 107.9531293286441 2.064903792224868 4.547473508864641e-013 2.114974861910923e-014 2.064903792225778 2.273736754432321e-013 119.5758671798564 4.643858352741518 4.547473508864641e-013 28.07315413033465 4.187779920352114 0 107.953129328644 60.95083843913335 2.273736754432321e-013 119.5758671798564 59.22518149515599 6.821210263296962e-013 107.9531293286441 2.064903792225778 2.273736754432321e-013 119.5758671798564 4.187779920352114 0 107.953129328644 4.187779920352114 -2.273736754432321e-013 33.54238129714794 59.22606307715068 4.547473508864641e-013 28.07315413033472 4.643858352741518 4.547473508864641e-013 28.07315413033465 4.643858352741518 0 3.848744681515751 60.9508384391329 2.273736754432321e-013 9.220402219511925e-014 2.064903792224868 4.547473508864641e-013 2.114974861910923e-014 59.22518149515599 2.273736754432321e-013 33.54238129714802 59.22606307715068 6.821210263296962e-013 3.848744681515813 9.094947017729282e-013 135.6662624736362 6.09207129187439e-013 2.144634247324575 135.6662616575654 3.672361206205065 59.27059809080038 135.6662399201359 6.807332475489147e-013 9.094947017729282e-013 135.6662624736373 119.5758671798565 1.779847587543372 135.6662617963734 33.27634180696599 2.1446342457848 135.6662616575654 29.33058955266177 56.8890043245201 135.6662408263735 29.3305895559484 1.779847582814 135.6662617963734 112.056499287281 56.779178291471 135.666240868165 112.0564992905829 59.27059809080129 135.6662399201364 119.5758671798565 56.88900432606079 135.6662408263742 3.672361209491691 56.77917829620128 135.6662408681648 33.2763418102679 56.779178291471 135.666240868165 112.0564992905829 56.77917829620128 135.6662408681648 33.2763418102679 59.27059809080129 135.6662399201364 119.5758671798565 1.779847587543372 135.6662617963734 33.27634180696599 56.8890043245201 135.6662408263735 29.3305895559484 56.88900432606079 135.6662408263742 3.672361209491691 2.144634247324575 135.6662616575654 3.672361206205065 59.27059809080038 135.6662399201359 6.807332475489147e-013 9.094947017729282e-013 135.6662624736373 119.5758671798565 1.779847582814 135.6662617963734 112.056499287281 2.1446342457848 135.6662616575654 29.33058955266177 9.094947017729282e-013 135.6662624736362 6.09207129187439e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID3110\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3107\">\r\n\t\t\t\t\t<float_array count=\"294\" id=\"ID3111\">0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 0.8641783247786157 -0.5031856744610538 1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 -0.8641783247786157 0.5031856744610538 -1.729424437858784e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 0.8674656109917587 0.4974971494859996 -1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 -0.8674656109917587 -0.4974971494859996 1.441975336878565e-015 2.777470655586026e-016 -1 3.459336766695186e-015 2.777470655586026e-016 -1 3.459336766695186e-015 2.777470655586026e-016 -1 3.459336766695186e-015 2.777470655586026e-016 -1 3.459336766695186e-015 2.777470655586026e-016 -1 3.459336766695186e-015 2.777470655586026e-016 -1 3.459336766695186e-015 2.777470655586026e-016 -1 3.459336766695186e-015 2.777470655586026e-016 -1 3.459336766695186e-015 2.777470655586026e-016 -1 3.459336766695186e-015 2.777470655586026e-016 -1 3.459336766695186e-015 2.777470655586026e-016 -1 3.459336766695186e-015 2.777470655586026e-016 -1 3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 -2.777470655586026e-016 1 -3.459336766695186e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 3.80517512832221e-007 0.9999999999999276 -3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015 -3.80517512832221e-007 -0.9999999999999276 3.238159523508144e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID3111\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3109\">\r\n\t\t\t\t\t<float_array count=\"98\" id=\"ID3112\">0 0 0.03127991763635463 0.02927723881138856 3.053113317719181e-015 0.9999999999999976 0.9999999999999862 2.547250494514687e-015 0.9738089000025474 0.02919532925580276 0.9738554296066293 0.2467180854158139 0.9748674039626419 0.287202048136121 0.9750066667621349 0.9382462290465432 0.03512656972822276 0.9383279084033506 1 1 0.03132644724042816 0.2467999949713997 0.03498730692874091 0.2872837274929284 -111.9999986878458 66.99974966139158 -111.9661993487697 67.02177828267041 -111.9999986879079 67.73104987374616 -110.999998699541 66.99981701242842 -111.0310261806543 67.02177828265887 -111.0309823355567 67.17943164625982 -111.0269417369077 67.20746430320503 -111.02680878916 67.6855031436007 -111.0042615392065 67.73111693767632 -110.9999986996032 67.73111722478299 -111.9614643017038 67.68550314361222 -111.9661555036721 67.17943164627134 -111.9615972494515 67.20746430321655 -112.0014370030541 66.99936106368836 -112.0306688350573 67.02380758435061 -112.9561635524437 67.02434798352984 -112.0010199720639 67.75835450828399 -112.0305843503724 67.1775691116929 -112.0305802240641 67.21228438249297 -112.9637932496892 67.21282928841585 -112.0303207102621 67.6845976618808 -112.9999056746521 66.99994407258131 -112.999488643662 67.75893751717693 -112.9560790677588 67.17810951087213 -112.9635337358871 67.68514256780368 -111.0000002705437 66.99981796070927 -111.0361840499622 67.02227733001755 -112.0000002705436 66.99981795922945 -111.0000002705443 67.73111818336044 -111.0300294527163 67.20332889264785 -111.0361840499364 67.1791975225709 -111.9598185642173 67.1791975212242 -111.030029452637 67.6851313504899 -111.9579656044605 67.68513134913692 -112.0000002705443 67.73111818188063 -111.9598185642432 67.02227732867084 -111.9579656045399 67.20332889129487</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"49\" source=\"#ID3112\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3108\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3106\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3107\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3108\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3109\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 6 6 3 3 7 7 2 2 8 8 9 9 8 8 2 2 10 10 10 10 2 2 1 1 8 8 10 10 11 11 9 9 8 8 7 7 9 9 7 7 3 3 5 5 11 11 10 10 11 11 5 5 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"57\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3108\" />\r\n\t\t\t\t\t<p>12 13 14 15 14 13 16 17 18 17 19 18 14 15 19 20 21 15 15 21 19 18 19 21 17 16 12 12 16 13 13 16 22 22 16 20 16 23 20 21 20 23 37 38 39 40 39 38 41 42 43 39 40 42 44 45 40 40 45 42 43 42 45 46 47 43 43 47 41 41 47 37 37 47 38 38 47 48 48 47 44 47 49 44 45 44 49 62 63 64 63 65 64 65 66 64 67 68 66 68 69 66 66 69 64 70 71 69 64 69 71 63 62 72 66 72 67 72 62 67 67 62 73 62 70 73 69 73 70 86 87 88 89 90 87 87 90 88 90 91 88 92 93 91 88 91 93 88 94 86 86 94 95 95 94 89 90 89 96 96 89 92 89 94 92 94 97 92 93 92 97</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"43\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3108\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3109\" />\r\n\t\t\t\t\t<p>24 12 25 13 26 14 25 13 24 12 27 15 25 13 27 15 28 16 28 16 27 15 29 17 29 17 27 15 30 18 30 18 27 15 31 19 31 19 27 15 32 20 32 20 27 15 33 21 26 14 34 22 32 20 34 22 26 14 35 23 35 23 26 14 25 13 34 22 35 23 36 24 32 20 34 22 31 19 29 17 36 24 35 23 36 24 29 17 30 18 50 25 51 26 52 27 51 26 50 25 53 28 51 26 53 28 54 29 54 29 53 28 55 30 54 29 55 30 56 31 55 30 53 28 57 32 58 33 52 27 59 34 52 27 58 33 50 25 59 34 52 27 56 31 56 31 52 27 60 35 56 31 60 35 54 29 59 34 56 31 61 36 59 34 61 36 57 32 59 34 57 32 53 28 74 37 75 38 76 39 75 38 74 37 77 40 75 38 77 40 78 41 75 38 78 41 79 42 79 42 78 41 80 43 78 41 77 40 81 44 81 44 77 40 82 45 82 45 77 40 83 46 76 39 84 47 83 46 84 47 76 39 75 38 83 46 84 47 80 43 83 46 80 43 85 48 85 48 80 43 78 41 83 46 85 48 82 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3113\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3114\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3117\">59.22606307715068 6.821210263296962e-013 3.848744681515813 4.643858352741518 4.547473508864641e-013 28.07315413033465 4.643858352741518 0 3.848744681515751 59.22606307715068 4.547473508864641e-013 28.07315413033472 59.22606307715068 4.547473508864641e-013 28.07315413033472 59.22606307715068 6.821210263296962e-013 3.848744681515813 4.643858352741518 4.547473508864641e-013 28.07315413033465 4.643858352741518 0 3.848744681515751</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3117\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3115\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3118\">1.665525846340039e-015 -1 1.087931827958854e-014 1.665525846340039e-015 -1 1.087931827958854e-014 1.665525846340039e-015 -1 1.087931827958854e-014 1.665525846340039e-015 -1 1.087931827958854e-014 -1.665525846340039e-015 1 -1.087931827958854e-014 -1.665525846340039e-015 1 -1.087931827958854e-014 -1.665525846340039e-015 1 -1.087931827958854e-014 -1.665525846340039e-015 1 -1.087931827958854e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3118\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3116\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3114\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3115\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3116\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3119\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3120\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID3123\">59.44124587083525 135.3686883041632 119.5758671798565 59.44124587083479 135.6662624736371 119.5758671798565 59.27059809080129 135.6662399201364 119.5758671798565</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3123\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3121\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID3124\">-1.458687500064883e-013 -1.398241331745931e-014 1 -1.458687500064883e-013 -1.398241331745931e-014 1 -1.458687500064883e-013 -1.398241331745931e-014 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3124\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3122\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3120\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3121\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3122\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3125\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3126\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3129\">2.1446342457848 135.6662616575654 29.33058955266177 56.88900432606079 135.6662408263742 3.672361209491691 2.144634247324575 135.6662616575654 3.672361206205065 56.8890043245201 135.6662408263735 29.3305895559484 56.8890043245201 135.6662408263735 29.3305895559484 2.1446342457848 135.6662616575654 29.33058955266177 56.88900432606079 135.6662408263742 3.672361209491691 2.144634247324575 135.6662616575654 3.672361206205065</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3129\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3127\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3130\">3.805175112779088e-007 0.9999999999999277 -6.130323028721851e-015 3.805175112779088e-007 0.9999999999999277 -6.130323028721851e-015 3.805175112779088e-007 0.9999999999999277 -6.130323028721851e-015 3.805175112779088e-007 0.9999999999999277 -6.130323028721851e-015 -3.805175112779088e-007 -0.9999999999999277 6.130323028721851e-015 -3.805175112779088e-007 -0.9999999999999277 6.130323028721851e-015 -3.805175112779088e-007 -0.9999999999999277 6.130323028721851e-015 -3.805175112779088e-007 -0.9999999999999277 6.130323028721851e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3130\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3128\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3126\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3127\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3128\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3131\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3132\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID3135\">60.78019065909939 13.77847085441454 119.5758671798564 10.04589478541175 13.77847085441431 163.5411159464848 10.04589478541129 13.77847085441431 119.5758671798564 60.78019065909939 13.77847085441454 163.5411159464848 60.78019065909939 13.77847085441454 163.5411159464848 60.78019065909939 13.77847085441454 119.5758671798564 10.04589478541175 13.77847085441431 163.5411159464848 10.04589478541129 13.77847085441431 119.5758671798564 2.064903792225778 2.273736754432321e-013 119.5758671798564 10.04589478541129 13.77847085441431 119.5758671798564 2.064903792224868 13.77847085441385 119.5758671798565 60.95083843913335 2.273736754432321e-013 119.5758671798564 60.78019065909939 13.77847085441454 119.5758671798564 7.994123996013514 121.887769065723 119.5758671798565 9.094947017729282e-013 135.6662624736373 119.5758671798565 9.094947017729282e-013 121.8877690657232 119.5758671798565 59.27059809080129 135.6662399201364 119.5758671798565 59.44124587083479 121.8877690657234 119.5758671798565 59.44124587083525 135.3686883041632 119.5758671798565 99.3020780233328 65.86497124059611 119.5758671798567 60.95083843913335 2.273736754432321e-013 119.5758671798564 60.78019065909939 13.77847085441454 119.5758671798564 99.3020780233328 65.86497124059611 119.5758671798567 59.44124587083525 135.3686883041632 119.5758671798565 59.44124587083479 121.8877690657234 119.5758671798565 59.27059809080129 135.6662399201364 119.5758671798565 7.994123996013514 121.887769065723 119.5758671798565 9.094947017729282e-013 135.6662624736373 119.5758671798565 9.094947017729282e-013 121.8877690657232 119.5758671798565 10.04589478541129 13.77847085441431 119.5758671798564 2.064903792225778 2.273736754432321e-013 119.5758671798564 2.064903792224868 13.77847085441385 119.5758671798565 59.44124587083479 121.8877690657234 119.5758671798565 60.78019065909939 13.77847085441454 163.5411159464848 60.78019065909939 13.77847085441454 119.5758671798564 59.44124587083525 121.8877690657223 163.5411159464852 59.44124587083525 121.8877690657223 163.5411159464852 59.44124587083479 121.8877690657234 119.5758671798565 60.78019065909939 13.77847085441454 163.5411159464848 60.78019065909939 13.77847085441454 119.5758671798564 7.994123996013514 121.887769065723 119.5758671798565 59.44124587083525 121.8877690657223 163.5411159464852 59.44124587083479 121.8877690657234 119.5758671798565 7.994123996013514 121.887769065723 163.5411159464852 7.994123996013514 121.887769065723 163.5411159464852 7.994123996013514 121.887769065723 119.5758671798565 59.44124587083525 121.8877690657223 163.5411159464852 59.44124587083479 121.8877690657234 119.5758671798565</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID3135\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3133\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID3136\">3.830460744359104e-015 -1 3.050240181962093e-015 3.830460744359104e-015 -1 3.050240181962093e-015 3.830460744359104e-015 -1 3.050240181962093e-015 3.830460744359104e-015 -1 3.050240181962093e-015 -3.830460744359104e-015 1 -3.050240181962093e-015 -3.830460744359104e-015 1 -3.050240181962093e-015 -3.830460744359104e-015 1 -3.050240181962093e-015 -3.830460744359104e-015 1 -3.050240181962093e-015 -1.248499444106929e-015 -1.606787619623517e-016 1 -1.248499444106929e-015 -1.606787619623517e-016 1 -1.248499444106929e-015 -1.606787619623517e-016 1 -1.248499444106929e-015 -1.606787619623517e-016 1 -1.248499444106929e-015 -1.606787619623517e-016 1 -1.248499444106929e-015 -1.606787619623517e-016 1 -1.248499444106929e-015 -1.606787619623517e-016 1 -1.248499444106929e-015 -1.606787619623517e-016 1 -1.248499444106929e-015 -1.606787619623517e-016 1 -1.248499444106929e-015 -1.606787619623517e-016 1 -1.248499444106929e-015 -1.606787619623517e-016 1 -1.248499444106929e-015 -1.606787619623517e-016 1 1.248499444106929e-015 1.606787619623517e-016 -1 1.248499444106929e-015 1.606787619623517e-016 -1 1.248499444106929e-015 1.606787619623517e-016 -1 1.248499444106929e-015 1.606787619623517e-016 -1 1.248499444106929e-015 1.606787619623517e-016 -1 1.248499444106929e-015 1.606787619623517e-016 -1 1.248499444106929e-015 1.606787619623517e-016 -1 1.248499444106929e-015 1.606787619623517e-016 -1 1.248499444106929e-015 1.606787619623517e-016 -1 1.248499444106929e-015 1.606787619623517e-016 -1 1.248499444106929e-015 1.606787619623517e-016 -1 1.248499444106929e-015 1.606787619623517e-016 -1 0.9999233134345976 0.01238415317959384 -1.504479168605881e-015 0.9999233134345976 0.01238415317959384 -1.504479168605881e-015 0.9999233134345976 0.01238415317959384 -1.504479168605881e-015 0.9999233134345976 0.01238415317959384 -1.504479168605881e-015 -0.9999233134345976 -0.01238415317959384 1.504479168605881e-015 -0.9999233134345976 -0.01238415317959384 1.504479168605881e-015 -0.9999233134345976 -0.01238415317959384 1.504479168605881e-015 -0.9999233134345976 -0.01238415317959384 1.504479168605881e-015 3.774566974323212e-015 1 2.656539268078295e-015 3.774566974323212e-015 1 2.656539268078295e-015 3.774566974323212e-015 1 2.656539268078295e-015 3.774566974323212e-015 1 2.656539268078295e-015 -3.774566974323212e-015 -1 -2.656539268078295e-015 -3.774566974323212e-015 -1 -2.656539268078295e-015 -3.774566974323212e-015 -1 -2.656539268078295e-015 -3.774566974323212e-015 -1 -2.656539268078295e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID3136\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3134\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3132\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3133\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3134\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 9 11 12 13 14 15 14 13 16 16 13 17 16 17 18 18 17 12 18 12 19 19 12 11 32 33 34 33 32 35 40 41 42 41 40 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3134\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 20 21 22 22 21 23 21 24 23 23 24 25 24 26 25 25 26 27 28 27 26 21 20 29 20 30 29 31 29 30 36 37 38 39 38 37 44 45 46 47 46 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3137\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3138\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3141\">60.51267409279808 133.500482349295 3.591258103651266 97.94728525877736 68.22726846076284 29.37966684208631 97.94904044347913 68.22420801635326 3.601556847291467 60.51091890809676 133.5035427937044 29.36936809844611 60.51091890809676 133.5035427937044 29.36936809844611 60.51267409279808 133.500482349295 3.591258103651266 97.94728525877736 68.22726846076284 29.37966684208631 97.94904044347913 68.22420801635326 3.601556847291467</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3141\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3139\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3142\">0.8674656109917595 0.4974971494859981 -2.493258420901978e-015 0.8674656109917595 0.4974971494859981 -2.493258420901978e-015 0.8674656109917595 0.4974971494859981 -2.493258420901978e-015 0.8674656109917595 0.4974971494859981 -2.493258420901978e-015 -0.8674656109917595 -0.4974971494859981 2.493258420901978e-015 -0.8674656109917595 -0.4974971494859981 2.493258420901978e-015 -0.8674656109917595 -0.4974971494859981 2.493258420901978e-015 -0.8674656109917595 -0.4974971494859981 2.493258420901978e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3142\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3140\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3138\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3139\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3140\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3143\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3144\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3147\">1.779847582814 135.6662617963734 112.056499287281 56.77917829620128 135.6662408681648 33.2763418102679 1.779847587543372 135.6662617963734 33.27634180696599 56.779178291471 135.666240868165 112.0564992905829 56.779178291471 135.666240868165 112.0564992905829 1.779847582814 135.6662617963734 112.056499287281 56.77917829620128 135.6662408681648 33.2763418102679 1.779847587543372 135.6662617963734 33.27634180696599</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3147\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3145\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3148\">3.805175097235964e-007 0.9999999999999276 -8.964996713739513e-016 3.805175097235964e-007 0.9999999999999276 -8.964996713739513e-016 3.805175097235964e-007 0.9999999999999276 -8.964996713739513e-016 3.805175097235964e-007 0.9999999999999276 -8.964996713739513e-016 -3.805175097235964e-007 -0.9999999999999276 8.964996713739513e-016 -3.805175097235964e-007 -0.9999999999999276 8.964996713739513e-016 -3.805175097235964e-007 -0.9999999999999276 8.964996713739513e-016 -3.805175097235964e-007 -0.9999999999999276 8.964996713739513e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3148\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3146\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3144\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3145\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3146\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3149\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3150\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3153\">98.33821181133089 64.20961352539416 34.34243396170769 62.29798593055057 2.313610504930693 112.2013733463918 62.29264502956266 2.304437964647832 34.35220084162864 98.34355271231971 64.21878606567748 112.1916064664709 98.34355271231971 64.21878606567748 112.1916064664709 98.33821181133089 64.20961352539416 34.34243396170769 62.29798593055057 2.313610504930693 112.2013733463918 62.29264502956266 2.304437964647832 34.35220084162864</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3153\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3151\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3154\">0.864178324778615 -0.5031856744610547 1.291081499522895e-015 0.864178324778615 -0.5031856744610547 1.291081499522895e-015 0.864178324778615 -0.5031856744610547 1.291081499522895e-015 0.864178324778615 -0.5031856744610547 1.291081499522895e-015 -0.864178324778615 0.5031856744610547 -1.291081499522895e-015 -0.864178324778615 0.5031856744610547 -1.291081499522895e-015 -0.864178324778615 0.5031856744610547 -1.291081499522895e-015 -0.864178324778615 0.5031856744610547 -1.291081499522895e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3154\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3152\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3150\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3151\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3152\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3155\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3156\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3159\">98.29761687235668 64.13989519250436 3.491056813364147 62.15224652257257 2.063315546560943 29.51132341868947 62.15046205457884 2.06025087552689 3.500851219503635 98.29940134035087 64.14295986353886 29.50152901254998 98.29940134035087 64.14295986353886 29.50152901254998 98.29761687235668 64.13989519250436 3.491056813364147 62.15224652257257 2.063315546560943 29.51132341868947 62.15046205457884 2.06025087552689 3.500851219503635</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3159\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3157\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3160\">0.8641783247786161 -0.5031856744610529 5.262270111848488e-015 0.8641783247786161 -0.5031856744610529 5.262270111848488e-015 0.8641783247786161 -0.5031856744610529 5.262270111848488e-015 0.8641783247786161 -0.5031856744610529 5.262270111848488e-015 -0.8641783247786161 0.5031856744610529 -5.262270111848488e-015 -0.8641783247786161 0.5031856744610529 -5.262270111848488e-015 -0.8641783247786161 0.5031856744610529 -5.262270111848488e-015 -0.8641783247786161 0.5031856744610529 -5.262270111848488e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3160\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3158\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3156\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3157\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3158\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3161\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3162\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3165\">60.34916776237515 133.785581709097 33.95298049969097 97.7594894974045 68.55472031661816 112.1280365900398 97.76481159418927 68.54544039221173 33.96327354256665 60.34384566559038 133.7948616335029 112.1177435471642 60.34384566559038 133.7948616335029 112.1177435471642 60.34916776237515 133.785581709097 33.95298049969097 97.7594894974045 68.55472031661816 112.1280365900398 97.76481159418927 68.54544039221173 33.96327354256665</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3165\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3163\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3166\">0.8674656109917593 0.4974971494859982 -4.677492117591275e-015 0.8674656109917593 0.4974971494859982 -4.677492117591275e-015 0.8674656109917593 0.4974971494859982 -4.677492117591275e-015 0.8674656109917593 0.4974971494859982 -4.677492117591275e-015 -0.8674656109917593 -0.4974971494859982 4.677492117591275e-015 -0.8674656109917593 -0.4974971494859982 4.677492117591275e-015 -0.8674656109917593 -0.4974971494859982 4.677492117591275e-015 -0.8674656109917593 -0.4974971494859982 4.677492117591275e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3166\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3164\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3162\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3163\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3164\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3167\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3168\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID3171\">59.27059809080038 135.6662399201359 6.807332475489147e-013 40.19617884256604 66.06139649436705 3.547995230945844e-013 9.094947017729282e-013 135.6662624736362 6.09207129187439e-013 60.9508384391329 2.273736754432321e-013 9.220402219511925e-014 2.064903792224868 4.547473508864641e-013 2.114974861910923e-014 99.30207802333189 65.86497124059542 3.96793709001031e-013 99.30207802333189 65.86497124059542 3.96793709001031e-013 59.27059809080038 135.6662399201359 6.807332475489147e-013 60.9508384391329 2.273736754432321e-013 9.220402219511925e-014 40.19617884256604 66.06139649436705 3.547995230945844e-013 2.064903792224868 4.547473508864641e-013 2.114974861910923e-014 9.094947017729282e-013 135.6662624736362 6.09207129187439e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID3171\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3169\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID3172\">9.888330237966511e-016 4.350307006989462e-015 -1 9.888330237966511e-016 4.350307006989462e-015 -1 9.888330237966511e-016 4.350307006989462e-015 -1 9.888330237966511e-016 4.350307006989462e-015 -1 9.888330237966511e-016 4.350307006989462e-015 -1 9.888330237966511e-016 4.350307006989462e-015 -1 -9.888330237966511e-016 -4.350307006989462e-015 1 -9.888330237966511e-016 -4.350307006989462e-015 1 -9.888330237966511e-016 -4.350307006989462e-015 1 -9.888330237966511e-016 -4.350307006989462e-015 1 -9.888330237966511e-016 -4.350307006989462e-015 1 -9.888330237966511e-016 -4.350307006989462e-015 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID3172\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3170\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3168\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3169\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3170\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 4 3 1 0 3 0 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3170\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 10 8 9 11 9 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3173\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3174\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3177\">59.22518149515599 2.273736754432321e-013 33.54238129714802 4.187779920352114 0 107.953129328644 4.187779920352114 -2.273736754432321e-013 33.54238129714794 59.22518149515599 6.821210263296962e-013 107.9531293286441 59.22518149515599 6.821210263296962e-013 107.9531293286441 59.22518149515599 2.273736754432321e-013 33.54238129714802 4.187779920352114 0 107.953129328644 4.187779920352114 -2.273736754432321e-013 33.54238129714794</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3177\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3175\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3178\">-1.110031715222844e-015 -1 4.279562815234782e-015 -1.110031715222844e-015 -1 4.279562815234782e-015 -1.110031715222844e-015 -1 4.279562815234782e-015 -1.110031715222844e-015 -1 4.279562815234782e-015 1.110031715222844e-015 1 -4.279562815234782e-015 1.110031715222844e-015 1 -4.279562815234782e-015 1.110031715222844e-015 1 -4.279562815234782e-015 1.110031715222844e-015 1 -4.279562815234782e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3178\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3176\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3174\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3175\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3176\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3179\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3180\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID3182\">40.19617884256604 66.06139649436682 163.5411159464849 40.19617884256604 66.06139649436705 3.547995230945844e-013 2.064903792225778 6.821210263296962e-013 163.5411159464846 9.094947017729282e-013 135.6662624736371 163.5411159464852</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID3182\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3181\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3180\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3181\" />\r\n\t\t\t\t\t<p>1 0 2 0 0 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3183\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3184\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3186\">60.95083843913335 13.77847085441408 163.5411159464848 60.78019065909939 13.77847085441454 163.5411159464848</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3186\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3185\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3184\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3185\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3196\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3197\">\r\n\t\t\t\t\t<float_array count=\"1488\" id=\"ID3200\">1.706214789010119e-006 0.009362313923020338 67.88462756016247 3.28320047132911 6.09754999019674 1.924241086398979 4.547473508864641e-013 -2.046363078989089e-012 0.005553439502136826 348.5942182236686 647.4081282695984 203.7224528770149 348.5942182236686 647.4081282695984 203.7224528770149 1.706214789010119e-006 0.009362313923020338 67.88462756016247 3.28320047132911 6.09754999019674 1.924241086398979 4.547473508864641e-013 -2.046363078989089e-012 0.005553439502136826 3.28320047132911 6.09754999019674 1.924241086398979 228.9376123272064 9.197371714571318 0.004274428875021386 4.547473508864641e-013 -2.046363078989089e-012 0.005553439502136826 238.5942288237811 15.55095060969939 1.922986374389666 238.5942288237811 15.55095060969939 1.922986374389666 3.28320047132911 6.09754999019674 1.924241086398979 228.9376123272064 9.197371714571318 0.004274428875021386 4.547473508864641e-013 -2.046363078989089e-012 0.005553439502136826 348.5942182236686 647.4081282695984 203.7224528770149 1.706214789010119e-006 0.009362313923020338 67.88462756016247 13.44131866778071 0.5493556647911646 67.88455244800417 13.44131866778071 0.5493556647911646 67.88455244800417 1.706214789010119e-006 0.009362313923020338 67.88462756016247 348.5942182236686 647.4081282695984 203.7224528770149 348.5942182236686 647.4081282695984 203.7224528770149 118.83573909601 10.74718615672941 55.6649075879082 3.28320047132911 6.09754999019674 1.924241086398979 3.28320047132911 6.09754999019674 1.924241086398979 118.83573909601 10.74718615672941 55.6649075879082 348.5942182236686 647.4081282695984 203.7224528770149 118.83573909601 10.74718615672941 55.6649075879082 238.5942288237811 15.55095060969939 1.922986374389666 3.28320047132911 6.09754999019674 1.924241086398979 3.28320047132911 6.09754999019674 1.924241086398979 238.5942288237811 15.55095060969939 1.922986374389666 118.83573909601 10.74718615672941 55.6649075879082 248.7497656457508 9.993307937865666 0.004163743905451156 228.9376123272064 9.197371714571318 0.004274428875021386 238.5942288237811 15.55095060969939 1.922986374389666 238.5942288237811 15.55095060969939 1.922986374389666 228.9376123272064 9.197371714571318 0.004274428875021386 248.7497656457508 9.993307937865666 0.004163743905451156 348.5942182236686 647.4081282695984 203.7224528770149 13.44133628890495 0.5488066986529248 63.8992512143812 13.44162396737147 0.5403414315255759 16.76649376126505 13.44133488556145 0.5488504221732455 64.21666857972741 13.44132780384234 0.549071054886781 65.81838431554166 13.44132727970055 0.5490873839364667 65.93692749096749 13.44132428229386 0.5491807628905008 66.61482583346998 13.44131866778071 0.5493556647911646 67.88455244800417 13.44131866778071 0.5493556647911646 67.88455244800417 348.5942182236686 647.4081282695984 203.7224528770149 13.44132428229386 0.5491807628905008 66.61482583346998 13.44132727970055 0.5490873839364667 65.93692749096749 13.44132780384234 0.549071054886781 65.81838431554166 13.44133488556145 0.5488504221732455 64.21666857972741 13.44133628890495 0.5488066986529248 63.8992512143812 13.44162396737147 0.5403414315255759 16.76649376126505 348.5942182236686 647.4081282695984 203.7224528770149 238.5974736305857 15.55341401696774 1.923670830457752 118.83573909601 10.74718615672941 55.6649075879082 118.83573909601 10.74718615672941 55.6649075879082 238.5974736305857 15.55341401696774 1.923670830457752 348.5942182236686 647.4081282695984 203.7224528770149 118.83573909601 10.74718615672941 55.6649075879082 238.5978328616848 15.55111300230283 1.922926449086788 238.5942288237811 15.55095060969939 1.922986374389666 238.5942288237811 15.55095060969939 1.922986374389666 238.5978328616848 15.55111300230283 1.922926449086788 118.83573909601 10.74718615672941 55.6649075879082 248.7497656457508 9.993307937865666 0.004163743905451156 238.5942288237811 15.55095060969939 1.922986374389666 238.5978328616848 15.55111300230283 1.922926449086788 238.5978328616848 15.55111300230283 1.922926449086788 238.5942288237811 15.55095060969939 1.922986374389666 248.7497656457508 9.993307937865666 0.004163743905451156 348.5942182236686 647.4081282695984 203.7224528770149 13.44162396737147 0.5403414315255759 16.76649376126505 119.7618357566339 4.816427271945258 62.79302833461316 119.7618357566339 4.816427271945258 62.79302833461316 13.44162396737147 0.5403414315255759 16.76649376126505 348.5942182236686 647.4081282695984 203.7224528770149 348.5942182236686 647.4081282695984 203.7224528770149 13.44162396737147 0.5403414315255759 16.76649376126505 13.44163963451638 0.5398788432739821 14.1432406906315 13.44163963451638 0.5398788432739821 14.1432406906315 13.44162396737147 0.5403414315255759 16.76649376126505 348.5942182236686 647.4081282695984 203.7224528770149 248.7497656457508 9.993307937865666 0.004163743905451156 282.0591480388989 11.33520408971322 24.52559960575724 441.5830208420057 17.74021815047377 0.003086438304478634 186.5621568263787 7.497612738682847 16.97432217214589 171.7030261720011 6.900361999959614 16.97441711971646 13.44130235808734 0.5423507156890537 16.97542788392423 13.44133628890495 0.5488066986529248 63.8992512143812 265.7960847844033 10.68185610728165 27.02561133528144 270.2401297836177 10.86062629455842 28.72578766167857 298.8103533567551 12.00991803681245 39.65601401923311 300.3888608107895 12.07341651020715 40.25991002089717 326.2844805558416 13.1151172115367 50.16690236066955 598.8065031756055 24.06459290946668 62.79035171406491 13.44131866778071 0.5493556647911646 67.88455244800417 705.1270320657595 28.33723109033849 67.85648551036837 13.44132428229386 0.5491807628905008 66.61482583346998 705.1270354741482 28.33715157085499 67.88068822109284 718.5676895502752 28.86783904007916 0.001539002135302781 661.0733909922628 26.56299466448081 35.956338161318 718.5676912565937 28.87720135403924 67.88061312260663 459.412005951725 18.45985884545439 24.48397610255535 457.7821218728068 18.39446565943968 25.10754968073508 429.5441277144855 17.2615025610919 35.911058778952 13.44133488556145 0.5488504221732455 64.21666857972741 13.44132780384234 0.549071054886781 65.81838431554166 13.44132727970055 0.5490873839364667 65.93692749096749 529.2444672254255 21.26693084331396 36.17769592408547 400.8359847857096 16.10970849001978 46.89444048188267 535.8209398685499 21.53128687293861 37.27895208919739 529.2444672254255 21.26693084331396 36.17769592408547 661.0733909922628 26.56299466448081 35.956338161318 535.8209398685499 21.53128687293861 37.27895208919739 326.2844805558416 13.1151172115367 50.16690236066955 400.8359847857096 16.10970849001978 46.89444048188267 598.8065031756055 24.06459290946668 62.79035171406491 429.5441277144855 17.2615025610919 35.911058778952 705.1270320657595 28.33723109033849 67.85648551036837 13.44132428229386 0.5491807628905008 66.61482583346998 718.5676912565937 28.87720135403924 67.88061312260663 13.44132727970055 0.5490873839364667 65.93692749096749 13.44132780384234 0.549071054886781 65.81838431554166 13.44133488556145 0.5488504221732455 64.21666857972741 13.44133628890495 0.5488066986529248 63.8992512143812 457.7821218728068 18.39446565943968 25.10754968073508 459.412005951725 18.45985884545439 24.48397610255535 718.5676895502752 28.86783904007916 0.001539002135302781 705.1270354741482 28.33715157085499 67.88068822109284 13.44131866778071 0.5493556647911646 67.88455244800417 300.3888608107895 12.07341651020715 40.25991002089717 298.8103533567551 12.00991803681245 39.65601401923311 270.2401297836177 10.86062629455842 28.72578766167857 265.7960847844033 10.68185610728165 27.02561133528144 282.0591480388989 11.33520408971322 24.52559960575724 13.44130235808734 0.5423507156890537 16.97542788392423 171.7030261720011 6.900361999959614 16.97441711971646 186.5621568263787 7.497612738682847 16.97432217214589 248.7497656457508 9.993307937865666 0.004163743905451156 441.5830208420057 17.74021815047377 0.003086438304478634 358.3583022794242 20.36979917012582 55.66356944206831 238.5974736305857 15.55341401696774 1.923670830457752 348.5942182236686 647.4081282695984 203.7224528770149 348.5942182236686 647.4081282695984 203.7224528770149 238.5974736305857 15.55341401696774 1.923670830457752 358.3583022794242 20.36979917012582 55.66356944206831 248.7497656457508 9.993307937865666 0.004163743905451156 238.5978328616848 15.55111300230283 1.922926449086788 238.6019744156097 15.55126155055518 1.922987202903357 238.6019744156097 15.55126155055518 1.922987202903357 238.5978328616848 15.55111300230283 1.922926449086788 248.7497656457508 9.993307937865666 0.004163743905451156 226.3341910432064 9.095966366659241 22.01963832422712 348.5942182236686 647.4081282695984 203.7224528770149 119.7618357566339 4.816427271945258 62.79302833461316 239.5223526262362 9.626304975134417 16.97398376460029 239.5223526262362 9.626304975134417 16.97398376460029 226.3341910432064 9.095966366659241 22.01963832422712 348.5942182236686 647.4081282695984 203.7224528770149 119.7618357566339 4.816427271945258 62.79302833461316 228.9376123272064 9.197371714571318 0.004274428875021386 186.5621568263787 7.497612738682847 16.97432217214589 248.7497656457508 9.993307937865666 0.004163743905451156 171.7030261720011 6.900361999959614 16.97441711971646 171.7030261720011 6.900361999959614 16.97441711971646 228.9376123272064 9.197371714571318 0.004274428875021386 186.5621568263787 7.497612738682847 16.97432217214589 248.7497656457508 9.993307937865666 0.004163743905451156 4.547473508864641e-013 -2.046363078989089e-012 0.005553439502136826 171.7030261720011 6.900361999959614 16.97441711971646 228.9376123272064 9.197371714571318 0.004274428875021386 13.44130235808734 0.5423507156890537 16.97542788392423 1.706214789010119e-006 0.009362313923020338 67.88462756016247 13.44133628890495 0.5488066986529248 63.8992512143812 13.44133628890495 0.5488066986529248 63.8992512143812 1.706214789010119e-006 0.009362313923020338 67.88462756016247 13.44130235808734 0.5423507156890537 16.97542788392423 4.547473508864641e-013 -2.046363078989089e-012 0.005553439502136826 171.7030261720011 6.900361999959614 16.97441711971646 228.9376123272064 9.197371714571318 0.004274428875021386 1.706214789010119e-006 0.009362313923020338 67.88462756016247 13.44133488556145 0.5488504221732455 64.21666857972741 13.44133628890495 0.5488066986529248 63.8992512143812 13.44133628890495 0.5488066986529248 63.8992512143812 13.44133488556145 0.5488504221732455 64.21666857972741 1.706214789010119e-006 0.009362313923020338 67.88462756016247 1.706214789010119e-006 0.009362313923020338 67.88462756016247 13.44132780384234 0.549071054886781 65.81838431554166 13.44133488556145 0.5488504221732455 64.21666857972741 13.44133488556145 0.5488504221732455 64.21666857972741 13.44132780384234 0.549071054886781 65.81838431554166 1.706214789010119e-006 0.009362313923020338 67.88462756016247 1.706214789010119e-006 0.009362313923020338 67.88462756016247 13.44132727970055 0.5490873839364667 65.93692749096749 13.44132780384234 0.549071054886781 65.81838431554166 13.44132780384234 0.549071054886781 65.81838431554166 13.44132727970055 0.5490873839364667 65.93692749096749 1.706214789010119e-006 0.009362313923020338 67.88462756016247 1.706214789010119e-006 0.009362313923020338 67.88462756016247 13.44132428229386 0.5491807628905008 66.61482583346998 13.44132727970055 0.5490873839364667 65.93692749096749 13.44132727970055 0.5490873839364667 65.93692749096749 13.44132428229386 0.5491807628905008 66.61482583346998 1.706214789010119e-006 0.009362313923020338 67.88462756016247 1.706214789010119e-006 0.009362313923020338 67.88462756016247 13.44131866778071 0.5493556647911646 67.88455244800417 13.44132428229386 0.5491807628905008 66.61482583346998 13.44132428229386 0.5491807628905008 66.61482583346998 13.44131866778071 0.5493556647911646 67.88455244800417 1.706214789010119e-006 0.009362313923020338 67.88462756016247 705.1268266414704 28.33856864504355 67.88050713899838 705.1270320657595 28.33723109033849 67.85648551036837 705.1270354741482 28.33715157085499 67.88068822109284 705.1268103318594 28.33156369590574 16.97138257487757 705.1270320657595 28.33723109033849 67.85648551036837 705.1268103318594 28.33156369590574 16.97138257487757 705.1268266414704 28.33856864504355 67.88050713899838 705.1270354741482 28.33715157085499 67.88068822109284 705.1270354741482 28.33715157085499 67.88068822109284 718.5676912565937 28.87720135403924 67.88061312260663 705.1270320657595 28.33723109033849 67.85648551036837 705.1270320657595 28.33723109033849 67.85648551036837 718.5676912565937 28.87720135403924 67.88061312260663 705.1270354741482 28.33715157085499 67.88068822109284 468.4601755106974 18.81998472789223 0.002936283096119041 453.6807184728846 18.22916364060006 16.97278746016718 479.0449158096758 19.24891798851922 16.97264562528744 289.7740790635216 11.64514842541189 25.89524193009657 383.0528660061282 15.39253187460781 21.49789802862989 718.5676895502752 28.86783904007916 0.001539002135302781 459.412005951725 18.45985884545439 24.48397610255535 468.4601755106974 18.81998472789223 0.002936283096119041 718.5676895502752 28.86783904007916 0.001539002135302781 479.0449158096758 19.24891798851922 16.97264562528744 459.412005951725 18.45985884545439 24.48397610255535 383.0528660061282 15.39253187460781 21.49789802862989 289.7740790635216 11.64514842541189 25.89524193009657 453.6807184728846 18.22916364060006 16.97278746016718 348.5942182236686 647.4081282695984 203.7224528770149 400.8359847857096 16.10970849001978 46.89444048188267 479.0449158096758 19.24891798851922 16.97264562528744 359.2841518339405 14.44062302817088 62.79169043341534 429.5441277144855 17.2615025610919 35.911058778952 457.7821218728068 18.39446565943968 25.10754968073508 459.412005951725 18.45985884545439 24.48397610255535 459.412005951725 18.45985884545439 24.48397610255535 457.7821218728068 18.39446565943968 25.10754968073508 479.0449158096758 19.24891798851922 16.97264562528744 429.5441277144855 17.2615025610919 35.911058778952 400.8359847857096 16.10970849001978 46.89444048188267 359.2841518339405 14.44062302817088 62.79169043341534 348.5942182236686 647.4081282695984 203.7224528770149 300.3888608107895 12.07341651020715 40.25991002089717 429.5441277144855 17.2615025610919 35.911058778952 457.7821218728068 18.39446565943968 25.10754968073508 457.7821218728068 18.39446565943968 25.10754968073508 429.5441277144855 17.2615025610919 35.911058778952 300.3888608107895 12.07341651020715 40.25991002089717 400.8359847857096 16.10970849001978 46.89444048188267 429.5441277144855 17.2615025610919 35.911058778952 300.3888608107895 12.07341651020715 40.25991002089717 300.3888608107895 12.07341651020715 40.25991002089717 429.5441277144855 17.2615025610919 35.911058778952 400.8359847857096 16.10970849001978 46.89444048188267 359.2841518339405 14.44062302817088 62.79169043341534 326.2844805558416 13.1151172115367 50.16690236066955 400.8359847857096 16.10970849001978 46.89444048188267 400.8359847857096 16.10970849001978 46.89444048188267 326.2844805558416 13.1151172115367 50.16690236066955 359.2841518339405 14.44062302817088 62.79169043341534 265.7960847844033 10.68185610728165 27.02561133528144 348.5942182236686 647.4081282695984 203.7224528770149 239.5223526262362 9.626304975134417 16.97398376460029 270.2401297836177 10.86062629455842 28.72578766167857 298.8103533567551 12.00991803681245 39.65601401923311 300.3888608107895 12.07341651020715 40.25991002089717 326.2844805558416 13.1151172115367 50.16690236066955 359.2841518339405 14.44062302817088 62.79169043341534 359.2841518339405 14.44062302817088 62.79169043341534 326.2844805558416 13.1151172115367 50.16690236066955 348.5942182236686 647.4081282695984 203.7224528770149 300.3888608107895 12.07341651020715 40.25991002089717 298.8103533567551 12.00991803681245 39.65601401923311 270.2401297836177 10.86062629455842 28.72578766167857 265.7960847844033 10.68185610728165 27.02561133528144 239.5223526262362 9.626304975134417 16.97398376460029 289.7740790635216 11.64514842541189 25.89524193009657 304.7596656100327 12.24711394622204 26.51412855420375 383.0528660061282 15.39253187460781 21.49789802862989 270.2401297836177 10.86062629455842 28.72578766167857 298.8103533567551 12.00991803681245 39.65601401923311 459.412005951725 18.45985884545439 24.48397610255535 270.2401297836177 10.86062629455842 28.72578766167857 304.7596656100327 12.24711394622204 26.51412855420375 298.8103533567551 12.00991803681245 39.65601401923311 459.412005951725 18.45985884545439 24.48397610255535 289.7740790635216 11.64514842541189 25.89524193009657 383.0528660061282 15.39253187460781 21.49789802862989 270.2401297836177 10.86062629455842 28.72578766167857 289.7740790635216 11.64514842541189 25.89524193009657 265.7960847844033 10.68185610728165 27.02561133528144 265.7960847844033 10.68185610728165 27.02561133528144 289.7740790635216 11.64514842541189 25.89524193009657 270.2401297836177 10.86062629455842 28.72578766167857 265.7960847844033 10.68185610728165 27.02561133528144 283.1256486797179 11.37773774775224 24.71493472621461 282.0591480388989 11.33520408971322 24.52559960575724 282.0591480388989 11.33520408971322 24.52559960575724 283.1256486797179 11.37773774775224 24.71493472621461 265.7960847844033 10.68185610728165 27.02561133528144 441.5830208420057 17.74021815047377 0.003086438304478634 289.7740790635216 11.64514842541189 25.89524193009657 468.4601755106974 18.81998472789223 0.002936283096119041 283.1256486797179 11.37773774775224 24.71493472621461 282.0591480388989 11.33520408971322 24.52559960575724 282.0591480388989 11.33520408971322 24.52559960575724 441.5830208420057 17.74021815047377 0.003086438304478634 283.1256486797179 11.37773774775224 24.71493472621461 289.7740790635216 11.64514842541189 25.89524193009657 468.4601755106974 18.81998472789223 0.002936283096119041 478.116288988726 25.17356101822315 1.92158832623079 358.3583022794242 20.36979917012582 55.66356944206831 348.5942182236686 647.4081282695984 203.7224528770149 348.5942182236686 647.4081282695984 203.7224528770149 358.3583022794242 20.36979917012582 55.66356944206831 478.116288988726 25.17356101822315 1.92158832623079 467.5318670599695 24.74834096862878 1.921647458490327 358.3583022794242 20.36979917012582 55.66356944206831 478.116288988726 25.17356101822315 1.92158832623079 238.5974736305857 15.55341401696774 1.923670830457752 238.5974736305857 15.55341401696774 1.923670830457752 467.5318670599695 24.74834096862878 1.921647458490327 358.3583022794242 20.36979917012582 55.66356944206831 478.116288988726 25.17356101822315 1.92158832623079 467.5318670599695 24.74834096862878 1.921647458490327 248.7497656457508 9.993307937865666 0.004163743905451156 238.6019744156097 15.55126155055518 1.922987202903357 441.5830208420057 17.74021815047377 0.003086438304478634 468.4601755106974 18.81998472789223 0.002936283096119041 478.116288988726 25.17356101822315 1.92158832623079 718.5676895502752 28.86783904007916 0.001539002135302781 715.0831306793975 34.69350011819574 1.920264458548104 715.0831306793975 34.69350011819574 1.920264458548104 478.116288988726 25.17356101822315 1.92158832623079 718.5676895502752 28.86783904007916 0.001539002135302781 468.4601755106974 18.81998472789223 0.002936283096119041 467.5318670599695 24.74834096862878 1.921647458490327 441.5830208420057 17.74021815047377 0.003086438304478634 248.7497656457508 9.993307937865666 0.004163743905451156 238.6019744156097 15.55126155055518 1.922987202903357 718.5676912565937 28.87720135403924 67.88061312260663 705.1268266414704 28.33856864504355 67.88050713899838 705.1270354741482 28.33715157085499 67.88068822109284 705.1270354741482 28.33715157085499 67.88068822109284 705.1268266414704 28.33856864504355 67.88050713899838 718.5676912565937 28.87720135403924 67.88061312260663 348.5942182236686 647.4081282695984 203.7224528770149 705.1268103318594 28.33156369590574 16.97138257487757 705.1268266414704 28.33856864504355 67.88050713899838 705.1268266414704 28.33856864504355 67.88050713899838 705.1268103318594 28.33156369590574 16.97138257487757 348.5942182236686 647.4081282695984 203.7224528770149 289.7740790635216 11.64514842541189 25.89524193009657 283.1256486797179 11.37773774775224 24.71493472621461 383.0528660061282 15.39253187460781 21.49789802862989 239.5223526262362 9.626304975134417 16.97398376460029 453.6807184728846 18.22916364060006 16.97278746016718 265.7960847844033 10.68185610728165 27.02561133528144 265.7960847844033 10.68185610728165 27.02561133528144 283.1256486797179 11.37773774775224 24.71493472621461 239.5223526262362 9.626304975134417 16.97398376460029 383.0528660061282 15.39253187460781 21.49789802862989 453.6807184728846 18.22916364060006 16.97278746016718 289.7740790635216 11.64514842541189 25.89524193009657 453.6807184728846 18.22916364060006 16.97278746016718 459.412005951725 18.45985884545439 24.48397610255535 479.0449158096758 19.24891798851922 16.97264562528744 383.0528660061282 15.39253187460781 21.49789802862989 304.7596656100327 12.24711394622204 26.51412855420375 304.7596656100327 12.24711394622204 26.51412855420375 383.0528660061282 15.39253187460781 21.49789802862989 459.412005951725 18.45985884545439 24.48397610255535 453.6807184728846 18.22916364060006 16.97278746016718 479.0449158096758 19.24891798851922 16.97264562528744 457.7821218728068 18.39446565943968 25.10754968073508 298.8103533567551 12.00991803681245 39.65601401923311 459.412005951725 18.45985884545439 24.48397610255535 300.3888608107895 12.07341651020715 40.25991002089717 300.3888608107895 12.07341651020715 40.25991002089717 457.7821218728068 18.39446565943968 25.10754968073508 298.8103533567551 12.00991803681245 39.65601401923311 459.412005951725 18.45985884545439 24.48397610255535 479.0449158096758 19.24891798851922 16.97264562528744 598.8065031756055 24.06459290946668 62.79035171406491 348.5942182236686 647.4081282695984 203.7224528770149 529.2444672254255 21.26693084331396 36.17769592408547 529.2444672254255 21.26693084331396 36.17769592408547 479.0449158096758 19.24891798851922 16.97264562528744 598.8065031756055 24.06459290946668 62.79035171406491 348.5942182236686 647.4081282695984 203.7224528770149 326.2844805558416 13.1151172115367 50.16690236066955 300.3888608107895 12.07341651020715 40.25991002089717 400.8359847857096 16.10970849001978 46.89444048188267 400.8359847857096 16.10970849001978 46.89444048188267 300.3888608107895 12.07341651020715 40.25991002089717 326.2844805558416 13.1151172115367 50.16690236066955 468.4601755106974 18.81998472789223 0.002936283096119041 441.5845141188652 17.73068179820803 0 441.5830208420057 17.74021815047377 0.003086438304478634 441.5830208420057 17.74021815047377 0.003086438304478634 441.5845141188652 17.73068179820803 0 468.4601755106974 18.81998472789223 0.002936283096119041 597.8808654628301 29.99241218352654 55.66223129619385 478.116288988726 25.17356101822315 1.92158832623079 348.5942182236686 647.4081282695984 203.7224528770149 348.5942182236686 647.4081282695984 203.7224528770149 478.116288988726 25.17356101822315 1.92158832623079 597.8808654628301 29.99241218352654 55.66223129619385 597.8808654628301 29.99241218352654 55.66223129619385 715.0831306793975 34.69350011819574 1.920264458548104 478.116288988726 25.17356101822315 1.92158832623079 478.116288988726 25.17356101822315 1.92158832623079 715.0831306793975 34.69350011819574 1.920264458548104 597.8808654628301 29.99241218352654 55.66223129619385 715.0831306793975 34.69350011819574 1.920264458548104 718.5676912565937 28.87720135403924 67.88061312260663 718.5676895502752 28.86783904007916 0.001539002135302781 348.5942182236686 647.4081282695984 203.7224528770149 348.5942182236686 647.4081282695984 203.7224528770149 715.0831306793975 34.69350011819574 1.920264458548104 718.5676912565937 28.87720135403924 67.88061312260663 718.5676895502752 28.86783904007916 0.001539002135302781 718.5676912565937 28.87720135403924 67.88061312260663 348.5942182236686 647.4081282695984 203.7224528770149 705.1268266414704 28.33856864504355 67.88050713899838 705.1268266414704 28.33856864504355 67.88050713899838 348.5942182236686 647.4081282695984 203.7224528770149 718.5676912565937 28.87720135403924 67.88061312260663 705.1270354741482 28.33715157085499 67.88068822109284 705.1268266414704 28.33856864504355 67.88050713899838 13.44131866778071 0.5493556647911646 67.88455244800417 13.44131866778071 0.5493556647911646 67.88455244800417 705.1268266414704 28.33856864504355 67.88050713899838 705.1270354741482 28.33715157085499 67.88068822109284 598.8065031756055 24.06459290946668 62.79035171406491 705.1268103318594 28.33156369590574 16.97138257487757 348.5942182236686 647.4081282695984 203.7224528770149 661.0733909922628 26.56299466448081 35.956338161318 661.0733909922628 26.56299466448081 35.956338161318 598.8065031756055 24.06459290946668 62.79035171406491 705.1268103318594 28.33156369590574 16.97138257487757 348.5942182236686 647.4081282695984 203.7224528770149 265.7960847844033 10.68185610728165 27.02561133528144 283.1256486797179 11.37773774775224 24.71493472621461 289.7740790635216 11.64514842541189 25.89524193009657 289.7740790635216 11.64514842541189 25.89524193009657 283.1256486797179 11.37773774775224 24.71493472621461 265.7960847844033 10.68185610728165 27.02561133528144 715.0831306793975 34.69350011819574 1.920264458548104 597.8808654628301 29.99241218352654 55.66223129619385 348.5942182236686 647.4081282695984 203.7224528770149 348.5942182236686 647.4081282695984 203.7224528770149 597.8808654628301 29.99241218352654 55.66223129619385 715.0831306793975 34.69350011819574 1.920264458548104 661.0733909922628 26.56299466448081 35.956338161318 598.8065031756055 24.06459290946668 62.79035171406491 598.806715017352 24.06323604156228 62.7903522875651 598.806715017352 24.06323604156228 62.7903522875651 598.8065031756055 24.06459290946668 62.79035171406491 661.0733909922628 26.56299466448081 35.956338161318 598.8065031756055 24.06459290946668 62.79035171406491 535.8209398685499 21.53128687293861 37.27895208919739 529.2444672254255 21.26693084331396 36.17769592408547 661.0733909922628 26.56299466448081 35.956338161318 535.8209398685499 21.53128687293861 37.27895208919739 661.0733909922628 26.56299466448081 35.956338161318 598.8065031756055 24.06459290946668 62.79035171406491 529.2444672254255 21.26693084331396 36.17769592408547 529.2444672254255 21.26693084331396 36.17769592408547 661.0733909922628 26.56299466448081 35.956338161318 479.0449158096758 19.24891798851922 16.97264562528744 535.8209398685499 21.53128687293861 37.27895208919739 535.8209398685499 21.53128687293861 37.27895208919739 529.2444672254255 21.26693084331396 36.17769592408547 661.0733909922628 26.56299466448081 35.956338161318 479.0449158096758 19.24891798851922 16.97264562528744 661.0733909922628 26.56299466448081 35.956338161318 705.1268103318594 28.33156369590574 16.97138257487757 479.0449158096758 19.24891798851922 16.97264562528744 479.0449158096758 19.24891798851922 16.97264562528744 705.1268103318594 28.33156369590574 16.97138257487757 661.0733909922628 26.56299466448081 35.956338161318</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"496\" source=\"#ID3200\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3198\">\r\n\t\t\t\t\t<float_array count=\"1488\" id=\"ID3201\">-0.8804682786959681 0.4741050579112118 -6.536945492461271e-005 -0.8804682786959681 0.4741050579112118 -6.536945492461271e-005 -0.8804682786959681 0.4741050579112118 -6.536945492461271e-005 -0.8804682786959681 0.4741050579112118 -6.536945492461271e-005 0.8804682786959681 -0.4741050579112118 6.536945492461271e-005 0.8804682786959681 -0.4741050579112118 6.536945492461271e-005 0.8804682786959681 -0.4741050579112118 6.536945492461271e-005 0.8804682786959681 -0.4741050579112118 6.536945492461271e-005 -0.0123049216340822 0.3061606261384538 -0.9519003413730289 -0.0123049216340822 0.3061606261384538 -0.9519003413730289 -0.0123049216340822 0.3061606261384538 -0.9519003413730289 -0.0123049216340822 0.3061606261384538 -0.9519003413730289 0.0123049216340822 -0.3061606261384538 0.9519003413730289 0.0123049216340822 -0.3061606261384538 0.9519003413730289 0.0123049216340822 -0.3061606261384538 0.9519003413730289 0.0123049216340822 -0.3061606261384538 0.9519003413730289 0.008429481362119582 -0.2096875657454132 0.9777321047279407 0.008429481362119582 -0.2096875657454132 0.9777321047279407 0.008429481362119582 -0.2096875657454132 0.9777321047279407 -0.008429481362119582 0.2096875657454132 -0.9777321047279407 -0.008429481362119582 0.2096875657454132 -0.9777321047279407 -0.008429481362119582 0.2096875657454132 -0.9777321047279407 0.4189838938309756 0.05949990359234426 -0.9060420841123968 0.4189838938309756 0.05949990359234426 -0.9060420841123968 0.4189838938309756 0.05949990359234426 -0.9060420841123968 -0.4189838938309756 -0.05949990359234426 0.9060420841123968 -0.4189838938309756 -0.05949990359234426 0.9060420841123968 -0.4189838938309756 -0.05949990359234426 0.9060420841123968 -0.04014168526806908 0.9991939882058657 -0.0001379749830014923 -0.04014168526806908 0.9991939882058657 -0.0001379749830014923 -0.04014168526806908 0.9991939882058657 -0.0001379749830014923 0.04014168526806908 -0.9991939882058657 0.0001379749830014923 0.04014168526806908 -0.9991939882058657 0.0001379749830014923 0.04014168526806908 -0.9991939882058657 0.0001379749830014923 -0.01230525366481027 0.3061654994611568 -0.9518987696556527 -0.01230525366481027 0.3061654994611568 -0.9518987696556527 -0.01230525366481027 0.3061654994611568 -0.9518987696556527 0.01230525366481027 -0.3061654994611568 0.9518987696556527 0.01230525366481027 -0.3061654994611568 0.9518987696556527 0.01230525366481027 -0.3061654994611568 0.9518987696556527 0.8878902150889269 -0.460055386178282 8.71647374654167e-005 0.8878902150889269 -0.460055386178282 8.71647374654167e-005 0.8878902150889269 -0.460055386178282 8.71647374654167e-005 0.8878902150889269 -0.460055386178282 8.71647374654167e-005 0.8878902150889269 -0.460055386178282 8.71647374654167e-005 0.8878902150889269 -0.460055386178282 8.71647374654167e-005 0.8878902150889269 -0.460055386178282 8.71647374654167e-005 0.8878902150889269 -0.460055386178282 8.71647374654167e-005 -0.8878902150889269 0.460055386178282 -8.71647374654167e-005 -0.8878902150889269 0.460055386178282 -8.71647374654167e-005 -0.8878902150889269 0.460055386178282 -8.71647374654167e-005 -0.8878902150889269 0.460055386178282 -8.71647374654167e-005 -0.8878902150889269 0.460055386178282 -8.71647374654167e-005 -0.8878902150889269 0.460055386178282 -8.71647374654167e-005 -0.8878902150889269 0.460055386178282 -8.71647374654167e-005 -0.8878902150889269 0.460055386178282 -8.71647374654167e-005 -0.3961988816663578 0.34121093434616 -0.8524092587771136 -0.3961988816663578 0.34121093434616 -0.8524092587771136 -0.3961988816663578 0.34121093434616 -0.8524092587771136 0.3961988816663578 -0.34121093434616 0.8524092587771136 0.3961988816663578 -0.34121093434616 0.8524092587771136 0.3961988816663578 -0.34121093434616 0.8524092587771136 -0.04519962296602782 0.9989125345457395 -0.01143426478336638 -0.04519962296602782 0.9989125345457395 -0.01143426478336638 -0.04519962296602782 0.9989125345457395 -0.01143426478336638 0.04519962296602782 -0.9989125345457395 0.01143426478336638 0.04519962296602782 -0.9989125345457395 0.01143426478336638 0.04519962296602782 -0.9989125345457395 0.01143426478336638 -0.02854042431160659 0.2792270696958761 -0.9598008583707184 -0.02854042431160659 0.2792270696958761 -0.9598008583707184 -0.02854042431160659 0.2792270696958761 -0.9598008583707184 0.02854042431160659 -0.2792270696958761 0.9598008583707184 0.02854042431160659 -0.2792270696958761 0.9598008583707184 0.02854042431160659 -0.2792270696958761 0.9598008583707184 -0.3944922279548154 -0.0606067117534649 0.9168984178051998 -0.3944922279548154 -0.0606067117534649 0.9168984178051998 -0.3944922279548154 -0.0606067117534649 0.9168984178051998 0.3944922279548154 0.0606067117534649 -0.9168984178051998 0.3944922279548154 0.0606067117534649 -0.9168984178051998 0.3944922279548154 0.0606067117534649 -0.9168984178051998 0.8878903047745683 -0.4600552132268855 8.64296790265521e-005 0.8878903047745683 -0.4600552132268855 8.64296790265521e-005 0.8878903047745683 -0.4600552132268855 8.64296790265521e-005 -0.8878903047745683 0.4600552132268855 -8.64296790265521e-005 -0.8878903047745683 0.4600552132268855 -8.64296790265521e-005 -0.8878903047745683 0.4600552132268855 -8.64296790265521e-005 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 -0.04014168417190478 0.999193988432345 -0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.04014168417190478 -0.999193988432345 0.0001366473792119584 0.3923455100149277 0.2171609170020699 -0.8938154937670003 0.3923455100149277 0.2171609170020699 -0.8938154937670003 0.3923455100149277 0.2171609170020699 -0.8938154937670003 -0.3923455100149277 -0.2171609170020699 0.8938154937670003 -0.3923455100149277 -0.2171609170020699 0.8938154937670003 -0.3923455100149277 -0.2171609170020699 0.8938154937670003 0.00202590261566281 0.3296407273847074 -0.9441042773803502 0.00202590261566281 0.3296407273847074 -0.9441042773803502 0.00202590261566281 0.3296407273847074 -0.9441042773803502 -0.00202590261566281 -0.3296407273847074 0.9441042773803502 -0.00202590261566281 -0.3296407273847074 0.9441042773803502 -0.00202590261566281 -0.3296407273847074 0.9441042773803502 0.3499058824431491 -0.3178657746016583 0.8812078204195472 0.3499058824431491 -0.3178657746016583 0.8812078204195472 0.3499058824431491 -0.3178657746016583 0.8812078204195472 0.3499058824431491 -0.3178657746016583 0.8812078204195472 -0.3499058824431491 0.3178657746016583 -0.8812078204195472 -0.3499058824431491 0.3178657746016583 -0.8812078204195472 -0.3499058824431491 0.3178657746016583 -0.8812078204195472 -0.3499058824431491 0.3178657746016583 -0.8812078204195472 -0.04014896094588034 0.9991936906141542 -0.0001719646243611089 -0.04014896094588034 0.9991936906141542 -0.0001719646243611089 -0.04014896094588034 0.9991936906141542 -0.0001719646243611089 -0.04014896094588034 0.9991936906141542 -0.0001719646243611089 0.04014896094588034 -0.9991936906141542 0.0001719646243611089 0.04014896094588034 -0.9991936906141542 0.0001719646243611089 0.04014896094588034 -0.9991936906141542 0.0001719646243611089 0.04014896094588034 -0.9991936906141542 0.0001719646243611089 -0.04014172620002734 0.9991939865968412 -0.0001377185310316932 -0.04014172620002734 0.9991939865968412 -0.0001377185310316932 -0.04014172620002734 0.9991939865968412 -0.0001377185310316932 -0.04014172620002734 0.9991939865968412 -0.0001377185310316932 -0.04014172620002734 0.9991939865968412 -0.0001377185310316932 -0.04014172620002734 0.9991939865968412 -0.0001377185310316932 0.04014172620002734 -0.9991939865968412 0.0001377185310316932 0.04014172620002734 -0.9991939865968412 0.0001377185310316932 0.04014172620002734 -0.9991939865968412 0.0001377185310316932 0.04014172620002734 -0.9991939865968412 0.0001377185310316932 0.04014172620002734 -0.9991939865968412 0.0001377185310316932 0.04014172620002734 -0.9991939865968412 0.0001377185310316932 -0.04014175992957293 0.9991939852285986 -0.0001378141777584198 -0.04014175992957293 0.9991939852285986 -0.0001378141777584198 -0.04014175992957293 0.9991939852285986 -0.0001378141777584198 0.04014175992957293 -0.9991939852285986 0.0001378141777584198 0.04014175992957293 -0.9991939852285986 0.0001378141777584198 0.04014175992957293 -0.9991939852285986 0.0001378141777584198 -0.04014175993209199 0.9991939852284962 -0.0001378141869806094 -0.04014175993209199 0.9991939852284962 -0.0001378141869806094 -0.04014175993209199 0.9991939852284962 -0.0001378141869806094 0.04014175993209199 -0.9991939852284962 0.0001378141869806094 0.04014175993209199 -0.9991939852284962 0.0001378141869806094 0.04014175993209199 -0.9991939852284962 0.0001378141869806094 -0.04014175992926845 0.9991939852286123 -0.0001378141685826228 -0.04014175992926845 0.9991939852286123 -0.0001378141685826228 -0.04014175992926845 0.9991939852286123 -0.0001378141685826228 0.04014175992926845 -0.9991939852286123 0.0001378141685826228 0.04014175992926845 -0.9991939852286123 0.0001378141685826228 0.04014175992926845 -0.9991939852286123 0.0001378141685826228 -0.04014175993197786 0.9991939852285008 -0.0001378141872974539 -0.04014175993197786 0.9991939852285008 -0.0001378141872974539 -0.04014175993197786 0.9991939852285008 -0.0001378141872974539 0.04014175993197786 -0.9991939852285008 0.0001378141872974539 0.04014175993197786 -0.9991939852285008 0.0001378141872974539 0.04014175993197786 -0.9991939852285008 0.0001378141872974539 -0.04014175992930969 0.9991939852286118 -0.0001378141590127499 -0.04014175992930969 0.9991939852286118 -0.0001378141590127499 -0.04014175992930969 0.9991939852286118 -0.0001378141590127499 0.04014175992930969 -0.9991939852286118 0.0001378141590127499 0.04014175992930969 -0.9991939852286118 0.0001378141590127499 0.04014175992930969 -0.9991939852286118 0.0001378141590127499 -0.9888490737958157 -0.14892114967061 2.083126372932353e-005 -0.9888490737958157 -0.14892114967061 2.083126372932353e-005 -0.9888490737958157 -0.14892114967061 2.083126372932353e-005 -0.9888490737958157 -0.14892114967061 2.083126372932353e-005 0.9888490737958157 0.14892114967061 -2.083126372932353e-005 0.9888490737958157 0.14892114967061 -2.083126372932353e-005 0.9888490737958157 0.14892114967061 -2.083126372932353e-005 0.9888490737958157 0.14892114967061 -2.083126372932353e-005 -0.040147684077418 0.9991883450651572 0.003288548186080033 -0.040147684077418 0.9991883450651572 0.003288548186080033 -0.040147684077418 0.9991883450651572 0.003288548186080033 0.040147684077418 -0.9991883450651572 -0.003288548186080033 0.040147684077418 -0.9991883450651572 -0.003288548186080033 0.040147684077418 -0.9991883450651572 -0.003288548186080033 -0.04014209997464611 0.9991939690464617 -0.0001550187224383183 -0.04014209997464611 0.9991939690464617 -0.0001550187224383183 -0.04014209997464611 0.9991939690464617 -0.0001550187224383183 -0.04014209997464611 0.9991939690464617 -0.0001550187224383183 -0.04014209997464611 0.9991939690464617 -0.0001550187224383183 -0.04014209997464611 0.9991939690464617 -0.0001550187224383183 -0.04014209997464611 0.9991939690464617 -0.0001550187224383183 0.04014209997464611 -0.9991939690464617 0.0001550187224383183 0.04014209997464611 -0.9991939690464617 0.0001550187224383183 0.04014209997464611 -0.9991939690464617 0.0001550187224383183 0.04014209997464611 -0.9991939690464617 0.0001550187224383183 0.04014209997464611 -0.9991939690464617 0.0001550187224383183 0.04014209997464611 -0.9991939690464617 0.0001550187224383183 0.04014209997464611 -0.9991939690464617 0.0001550187224383183 0.3572061190322923 -0.1972392928854792 0.9129624580824362 0.3572061190322923 -0.1972392928854792 0.9129624580824362 0.3572061190322923 -0.1972392928854792 0.9129624580824362 0.3572061190322923 -0.1972392928854792 0.9129624580824362 0.3572061190322923 -0.1972392928854792 0.9129624580824362 0.3572061190322923 -0.1972392928854792 0.9129624580824362 0.3572061190322923 -0.1972392928854792 0.9129624580824362 -0.3572061190322923 0.1972392928854792 -0.9129624580824362 -0.3572061190322923 0.1972392928854792 -0.9129624580824362 -0.3572061190322923 0.1972392928854792 -0.9129624580824362 -0.3572061190322923 0.1972392928854792 -0.9129624580824362 -0.3572061190322923 0.1972392928854792 -0.9129624580824362 -0.3572061190322923 0.1972392928854792 -0.9129624580824362 -0.3572061190322923 0.1972392928854792 -0.9129624580824362 -0.04014156964143997 0.9991939931443613 -0.0001358342650473382 -0.04014156964143997 0.9991939931443613 -0.0001358342650473382 -0.04014156964143997 0.9991939931443613 -0.0001358342650473382 0.04014156964143997 -0.9991939931443613 0.0001358342650473382 0.04014156964143997 -0.9991939931443613 0.0001358342650473382 0.04014156964143997 -0.9991939931443613 0.0001358342650473382 -0.04014167796523765 0.9991939883492437 -0.0001390570624462671 -0.04014167796523765 0.9991939883492437 -0.0001390570624462671 -0.04014167796523765 0.9991939883492437 -0.0001390570624462671 0.04014167796523765 -0.9991939883492437 0.0001390570624462671 0.04014167796523765 -0.9991939883492437 0.0001390570624462671 0.04014167796523765 -0.9991939883492437 0.0001390570624462671 0.04013563404524693 -0.999194240814007 -1.976420130002825e-006 0.04013563404524693 -0.999194240814007 -1.976420130002825e-006 0.04013563404524693 -0.999194240814007 -1.976420130002825e-006 -0.04013563404524693 0.999194240814007 1.976420130002825e-006 -0.04013563404524693 0.999194240814007 1.976420130002825e-006 -0.04013563404524693 0.999194240814007 1.976420130002825e-006 -0.3420039990635882 -0.2097235101684241 0.9159963503787273 -0.3420039990635882 -0.2097235101684241 0.9159963503787273 -0.3420039990635882 -0.2097235101684241 0.9159963503787273 -0.3420039990635882 -0.2097235101684241 0.9159963503787273 -0.3420039990635882 -0.2097235101684241 0.9159963503787273 -0.3420039990635882 -0.2097235101684241 0.9159963503787273 -0.3420039990635882 -0.2097235101684241 0.9159963503787273 -0.3420039990635882 -0.2097235101684241 0.9159963503787273 0.3420039990635882 0.2097235101684241 -0.9159963503787273 0.3420039990635882 0.2097235101684241 -0.9159963503787273 0.3420039990635882 0.2097235101684241 -0.9159963503787273 0.3420039990635882 0.2097235101684241 -0.9159963503787273 0.3420039990635882 0.2097235101684241 -0.9159963503787273 0.3420039990635882 0.2097235101684241 -0.9159963503787273 0.3420039990635882 0.2097235101684241 -0.9159963503787273 0.3420039990635882 0.2097235101684241 -0.9159963503787273 -0.04014187151895256 0.9991939838463396 -0.0001131204526547465 -0.04014187151895256 0.9991939838463396 -0.0001131204526547465 -0.04014187151895256 0.9991939838463396 -0.0001131204526547465 -0.04014187151895256 0.9991939838463396 -0.0001131204526547465 -0.04014187151895256 0.9991939838463396 -0.0001131204526547465 -0.04014187151895256 0.9991939838463396 -0.0001131204526547465 0.04014187151895256 -0.9991939838463396 0.0001131204526547465 0.04014187151895256 -0.9991939838463396 0.0001131204526547465 0.04014187151895256 -0.9991939838463396 0.0001131204526547465 0.04014187151895256 -0.9991939838463396 0.0001131204526547465 0.04014187151895256 -0.9991939838463396 0.0001131204526547465 0.04014187151895256 -0.9991939838463396 0.0001131204526547465 -0.0401474235832061 0.999193759615212 -0.0001229863765948321 -0.0401474235832061 0.999193759615212 -0.0001229863765948321 -0.0401474235832061 0.999193759615212 -0.0001229863765948321 0.0401474235832061 -0.999193759615212 0.0001229863765948321 0.0401474235832061 -0.999193759615212 0.0001229863765948321 0.0401474235832061 -0.999193759615212 0.0001229863765948321 -0.04000605505503547 0.9991990485255732 0.0008814672556011591 -0.04000605505503547 0.9991990485255732 0.0008814672556011591 -0.04000605505503547 0.9991990485255732 0.0008814672556011591 0.04000605505503547 -0.9991990485255732 -0.0008814672556011591 0.04000605505503547 -0.9991990485255732 -0.0008814672556011591 0.04000605505503547 -0.9991990485255732 -0.0008814672556011591 -0.04014052503643192 0.9991940351008237 -0.0001358997188540608 -0.04014052503643192 0.9991940351008237 -0.0001358997188540608 -0.04014052503643192 0.9991940351008237 -0.0001358997188540608 -0.04014052503643192 0.9991940351008237 -0.0001358997188540608 -0.04014052503643192 0.9991940351008237 -0.0001358997188540608 0.04014052503643192 -0.9991940351008237 0.0001358997188540608 0.04014052503643192 -0.9991940351008237 0.0001358997188540608 0.04014052503643192 -0.9991940351008237 0.0001358997188540608 0.04014052503643192 -0.9991940351008237 0.0001358997188540608 0.04014052503643192 -0.9991940351008237 0.0001358997188540608 -0.4076184841699951 0.20382975650458 -0.8901126904646619 -0.4076184841699951 0.20382975650458 -0.8901126904646619 -0.4076184841699951 0.20382975650458 -0.8901126904646619 0.4076184841699951 -0.20382975650458 0.8901126904646619 0.4076184841699951 -0.20382975650458 0.8901126904646619 0.4076184841699951 -0.20382975650458 0.8901126904646619 -0.04013191375316322 0.9991943834206508 -0.0001167867041794139 -0.04013191375316322 0.9991943834206508 -0.0001167867041794139 -0.04013191375316322 0.9991943834206508 -0.0001167867041794139 -0.04013191375316322 0.9991943834206508 -0.0001167867041794139 0.04013191375316322 -0.9991943834206508 0.0001167867041794139 0.04013191375316322 -0.9991943834206508 0.0001167867041794139 0.04013191375316322 -0.9991943834206508 0.0001167867041794139 0.04013191375316322 -0.9991943834206508 0.0001167867041794139 -0.01230503806956676 0.306158478934596 -0.9519010304724758 -0.01230503806956676 0.306158478934596 -0.9519010304724758 -0.01230503806956676 0.306158478934596 -0.9519010304724758 -0.01230503806956676 0.306158478934596 -0.9519010304724758 -0.01230503806956676 0.306158478934596 -0.9519010304724758 -0.01230503806956676 0.306158478934596 -0.9519010304724758 -0.01230503806956676 0.306158478934596 -0.9519010304724758 -0.01230503806956676 0.306158478934596 -0.9519010304724758 0.01230503806956676 -0.306158478934596 0.9519010304724758 0.01230503806956676 -0.306158478934596 0.9519010304724758 0.01230503806956676 -0.306158478934596 0.9519010304724758 0.01230503806956676 -0.306158478934596 0.9519010304724758 0.01230503806956676 -0.306158478934596 0.9519010304724758 0.01230503806956676 -0.306158478934596 0.9519010304724758 0.01230503806956676 -0.306158478934596 0.9519010304724758 0.01230503806956676 -0.306158478934596 0.9519010304724758 -0.00505798489501248 0.126020109359179 0.9920147926446976 -0.00505798489501248 0.126020109359179 0.9920147926446976 -0.00505798489501248 0.126020109359179 0.9920147926446976 0.00505798489501248 -0.126020109359179 -0.9920147926446976 0.00505798489501248 -0.126020109359179 -0.9920147926446976 0.00505798489501248 -0.126020109359179 -0.9920147926446976 -0.8665562124513552 -0.4990794785481828 6.894951711625836e-005 -0.8665562124513552 -0.4990794785481828 6.894951711625836e-005 -0.8665562124513552 -0.4990794785481828 6.894951711625836e-005 0.8665562124513552 0.4990794785481828 -6.894951711625836e-005 0.8665562124513552 0.4990794785481828 -6.894951711625836e-005 0.8665562124513552 0.4990794785481828 -6.894951711625836e-005 0.04013932186705084 -0.9991940925531183 1.571635163497215e-005 0.04013932186705084 -0.9991940925531183 1.571635163497215e-005 0.04013932186705084 -0.9991940925531183 1.571635163497215e-005 0.04013932186705084 -0.9991940925531183 1.571635163497215e-005 0.04013932186705084 -0.9991940925531183 1.571635163497215e-005 0.04013932186705084 -0.9991940925531183 1.571635163497215e-005 -0.04013932186705084 0.9991940925531183 -1.571635163497215e-005 -0.04013932186705084 0.9991940925531183 -1.571635163497215e-005 -0.04013932186705084 0.9991940925531183 -1.571635163497215e-005 -0.04013932186705084 0.9991940925531183 -1.571635163497215e-005 -0.04013932186705084 0.9991940925531183 -1.571635163497215e-005 -0.04013932186705084 0.9991940925531183 -1.571635163497215e-005 -0.04014037899537039 0.9991940501472941 -1.11514474724895e-005 -0.04014037899537039 0.9991940501472941 -1.11514474724895e-005 -0.04014037899537039 0.9991940501472941 -1.11514474724895e-005 -0.04014037899537039 0.9991940501472941 -1.11514474724895e-005 -0.04014037899537039 0.9991940501472941 -1.11514474724895e-005 0.04014037899537039 -0.9991940501472941 1.11514474724895e-005 0.04014037899537039 -0.9991940501472941 1.11514474724895e-005 0.04014037899537039 -0.9991940501472941 1.11514474724895e-005 0.04014037899537039 -0.9991940501472941 1.11514474724895e-005 0.04014037899537039 -0.9991940501472941 1.11514474724895e-005 0.04014175992934244 -0.9991939852286105 0.0001378141592255794 0.04014175992934244 -0.9991939852286105 0.0001378141592255794 0.04014175992934244 -0.9991939852286105 0.0001378141592255794 0.04014175992934244 -0.9991939852286105 0.0001378141592255794 -0.04014175992934244 0.9991939852286105 -0.0001378141592255794 -0.04014175992934244 0.9991939852286105 -0.0001378141592255794 -0.04014175992934244 0.9991939852286105 -0.0001378141592255794 -0.04014175992934244 0.9991939852286105 -0.0001378141592255794 -0.3255476300877423 -0.3309293613910279 0.8857225854146327 -0.3255476300877423 -0.3309293613910279 0.8857225854146327 -0.3255476300877423 -0.3309293613910279 0.8857225854146327 -0.3255476300877423 -0.3309293613910279 0.8857225854146327 0.3255476300877423 0.3309293613910279 -0.8857225854146327 0.3255476300877423 0.3309293613910279 -0.8857225854146327 0.3255476300877423 0.3309293613910279 -0.8857225854146327 0.3255476300877423 0.3309293613910279 -0.8857225854146327 0.04014175993178517 -0.9991939852285087 0.0001378141862179338 0.04014175993178517 -0.9991939852285087 0.0001378141862179338 0.04014175993178517 -0.9991939852285087 0.0001378141862179338 -0.04014175993178517 0.9991939852285087 -0.0001378141862179338 -0.04014175993178517 0.9991939852285087 -0.0001378141862179338 -0.04014175993178517 0.9991939852285087 -0.0001378141862179338 -0.01230487283730775 0.3061560195897868 -0.951901823600205 -0.01230487283730775 0.3061560195897868 -0.951901823600205 -0.01230487283730775 0.3061560195897868 -0.951901823600205 0.01230487283730775 -0.3061560195897868 0.951901823600205 0.01230487283730775 -0.3061560195897868 0.951901823600205 0.01230487283730775 -0.3061560195897868 0.951901823600205 0.370716478441821 0.3554428538686834 -0.8580382685203387 0.370716478441821 0.3554428538686834 -0.8580382685203387 0.370716478441821 0.3554428538686834 -0.8580382685203387 -0.370716478441821 -0.3554428538686834 0.8580382685203387 -0.370716478441821 -0.3554428538686834 0.8580382685203387 -0.370716478441821 -0.3554428538686834 0.8580382685203387 -0.04014175993184262 0.9991939852285066 -0.0001378141854165427 -0.04014175993184262 0.9991939852285066 -0.0001378141854165427 -0.04014175993184262 0.9991939852285066 -0.0001378141854165427 0.04014175993184262 -0.9991939852285066 0.0001378141854165427 0.04014175993184262 -0.9991939852285066 0.0001378141854165427 0.04014175993184262 -0.9991939852285066 0.0001378141854165427 0.8581862026753222 0.5133385203952678 -7.082448868339166e-005 0.8581862026753222 0.5133385203952678 -7.082448868339166e-005 0.8581862026753222 0.5133385203952678 -7.082448868339166e-005 0.8581862026753222 0.5133385203952678 -7.082448868339166e-005 -0.8581862026753222 -0.5133385203952678 7.082448868339166e-005 -0.8581862026753222 -0.5133385203952678 7.082448868339166e-005 -0.8581862026753222 -0.5133385203952678 7.082448868339166e-005 -0.8581862026753222 -0.5133385203952678 7.082448868339166e-005 0.008396130380571049 -0.2097066758527205 0.9777282930842468 0.008396130380571049 -0.2097066758527205 0.9777282930842468 0.008396130380571049 -0.2097066758527205 0.9777282930842468 -0.008396130380571049 0.2097066758527205 -0.9777282930842468 -0.008396130380571049 0.2097066758527205 -0.9777282930842468 -0.008396130380571049 0.2097066758527205 -0.9777282930842468 -0.005057173909245634 0.1260196504856073 0.992014855072008 -0.005057173909245634 0.1260196504856073 0.992014855072008 -0.005057173909245634 0.1260196504856073 0.992014855072008 0.005057173909245634 -0.1260196504856073 -0.992014855072008 0.005057173909245634 -0.1260196504856073 -0.992014855072008 0.005057173909245634 -0.1260196504856073 -0.992014855072008 0.3969319354480632 -0.0479040806710566 0.9165970966987163 0.3969319354480632 -0.0479040806710566 0.9165970966987163 0.3969319354480632 -0.0479040806710566 0.9165970966987163 0.3969319354480632 -0.0479040806710566 0.9165970966987163 -0.3969319354480632 0.0479040806710566 -0.9165970966987163 -0.3969319354480632 0.0479040806710566 -0.9165970966987163 -0.3969319354480632 0.0479040806710566 -0.9165970966987163 -0.3969319354480632 0.0479040806710566 -0.9165970966987163 0.04015160007755692 -0.9991935769304412 0.0002117360685264589 0.04015160007755692 -0.9991935769304412 0.0002117360685264589 0.04015160007755692 -0.9991935769304412 0.0002117360685264589 -0.04015160007755692 0.9991935769304412 -0.0002117360685264589 -0.04015160007755692 0.9991935769304412 -0.0002117360685264589 -0.04015160007755692 0.9991935769304412 -0.0002117360685264589 -0.4179303184252067 0.04880172858570041 -0.9071673716729747 -0.4179303184252067 0.04880172858570041 -0.9071673716729747 -0.4179303184252067 0.04880172858570041 -0.9071673716729747 0.4179303184252067 -0.04880172858570041 0.9071673716729747 0.4179303184252067 -0.04880172858570041 0.9071673716729747 0.4179303184252067 -0.04880172858570041 0.9071673716729747 0.3934577141188384 0.0522144562477382 0.9178587460819512 0.3934577141188384 0.0522144562477382 0.9178587460819512 0.3934577141188384 0.0522144562477382 0.9178587460819512 -0.3934577141188384 -0.0522144562477382 -0.9178587460819512 -0.3934577141188384 -0.0522144562477382 -0.9178587460819512 -0.3934577141188384 -0.0522144562477382 -0.9178587460819512 -0.04014223537682777 0.9991939685284997 -0.0001191436906822475 -0.04014223537682777 0.9991939685284997 -0.0001191436906822475 -0.04014223537682777 0.9991939685284997 -0.0001191436906822475 -0.04014223537682777 0.9991939685284997 -0.0001191436906822475 0.04014223537682777 -0.9991939685284997 0.0001191436906822475 0.04014223537682777 -0.9991939685284997 0.0001191436906822475 0.04014223537682777 -0.9991939685284997 0.0001191436906822475 0.04014223537682777 -0.9991939685284997 0.0001191436906822475 -0.04014121087180992 0.9991940142915607 -7.066584221512281e-005 -0.04014121087180992 0.9991940142915607 -7.066584221512281e-005 -0.04014121087180992 0.9991940142915607 -7.066584221512281e-005 -0.04014121087180992 0.9991940142915607 -7.066584221512281e-005 0.04014121087180992 -0.9991940142915607 7.066584221512281e-005 0.04014121087180992 -0.9991940142915607 7.066584221512281e-005 0.04014121087180992 -0.9991940142915607 7.066584221512281e-005 0.04014121087180992 -0.9991940142915607 7.066584221512281e-005 -0.04014175982277961 0.9991939926082871 -6.522147408570665e-005 -0.04014175982277961 0.9991939926082871 -6.522147408570665e-005 -0.04014175982277961 0.9991939926082871 -6.522147408570665e-005 0.04014175982277961 -0.9991939926082871 6.522147408570665e-005 0.04014175982277961 -0.9991939926082871 6.522147408570665e-005 0.04014175982277961 -0.9991939926082871 6.522147408570665e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"496\" source=\"#ID3201\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3199\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3197\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3198\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"135\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3199\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 22 23 24 28 29 30 34 35 36 40 41 42 41 40 43 43 40 44 44 40 45 45 40 46 46 40 47 56 57 58 62 63 64 68 69 70 74 75 76 80 81 82 86 87 88 87 86 89 87 89 90 87 90 91 87 91 92 87 92 93 93 92 94 94 92 95 95 92 96 96 92 97 97 92 98 99 100 101 100 99 102 103 104 105 104 103 106 104 106 107 104 107 108 105 104 98 105 98 92 105 92 109 105 109 110 105 110 111 105 111 101 105 101 100 108 112 104 112 108 113 112 113 98 98 113 97 114 104 112 144 145 146 150 151 152 156 157 158 157 156 159 164 165 166 165 164 167 172 173 174 173 172 175 175 172 176 175 176 177 184 185 186 190 191 192 196 197 198 202 203 204 208 209 210 214 215 216 214 217 215 222 223 224 228 229 230 229 228 231 229 231 232 233 230 234 230 233 228 242 243 244 243 242 245 244 243 246 244 246 247 244 247 248 256 257 258 262 263 264 268 269 270 274 275 276 275 274 277 275 277 278 275 278 279 275 279 280 275 280 281 290 291 292 291 290 293 291 294 295 294 291 293 302 303 304 308 309 310 314 315 316 315 314 317 317 314 318 324 325 326 330 331 332 331 330 333 338 339 340 339 338 341 341 338 342 342 338 343 342 343 344 344 343 345 354 355 356 360 361 362 366 367 368 368 369 370 369 368 367 369 367 371 378 379 380 379 378 381 379 381 382 261 259 260 388 389 390 389 388 391 396 397 398 397 396 399 404 405 406 410 411 412 416 417 418 422 423 424 428 429 430 429 428 431 436 437 438 442 443 444 448 449 450 449 448 451 456 457 458 462 463 464 468 469 470 474 475 476 474 477 475 482 483 484 483 482 485 490 491 492</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"135\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3199\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 19 20 21 25 26 27 31 32 33 37 38 39 48 49 50 50 49 51 51 49 52 52 49 53 53 49 54 55 54 49 59 60 61 65 66 67 71 72 73 77 78 79 83 84 85 115 116 117 118 119 120 120 119 115 119 121 115 116 115 121 122 123 124 123 125 124 125 126 124 126 127 124 127 128 124 128 120 124 120 116 124 121 129 116 129 130 116 130 131 116 124 116 131 132 133 122 123 122 133 120 128 118 118 128 134 134 128 135 135 128 136 136 128 137 137 128 138 128 139 138 139 140 138 140 141 138 141 142 138 143 138 142 147 148 149 153 154 155 160 161 162 163 162 161 168 169 170 171 170 169 178 179 180 179 181 180 180 181 182 183 182 181 187 188 189 193 194 195 199 200 201 205 206 207 211 212 213 218 219 220 221 218 220 225 226 227 235 236 237 238 237 236 239 240 241 240 235 241 237 241 235 249 250 251 250 252 251 252 253 251 254 255 253 251 253 255 259 260 261 265 266 267 271 272 273 282 283 284 283 285 284 285 286 284 286 287 284 287 288 284 289 284 288 296 297 298 299 298 297 296 300 297 301 297 300 305 306 307 311 312 313 319 320 321 321 320 322 323 322 320 327 328 329 334 335 336 337 336 335 346 347 348 348 347 349 347 350 349 349 350 351 351 350 352 353 352 350 357 358 359 363 364 365 372 373 374 373 375 374 376 374 375 375 373 377 383 384 385 384 386 385 387 385 386 257 258 256 392 393 394 395 394 393 400 401 402 403 402 401 407 408 409 413 414 415 419 420 421 425 426 427 432 433 434 435 434 433 439 440 441 445 446 447 452 453 454 455 454 453 459 460 461 465 466 467 471 472 473 478 479 480 481 478 480 486 487 488 489 488 487 493 494 495</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3202\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3203\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3205\">705.1268103318594 28.33156369590574 16.97138257487757 718.5674789914624 28.87153100184059 16.97130748597255</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3205\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3204\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3203\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3204\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3206\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3207\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3209\">186.5621568263787 7.497612738682847 16.97432217214589 239.5223526262362 9.626304975134417 16.97398376460029</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3209\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3208\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3207\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3208\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3210\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3211\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3213\">467.5303737833842 24.75787732083154 1.924733896726707 467.5318670599695 24.74834096862878 1.921647458490327</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3213\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3212\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3211\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3212\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3215\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3216\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3219\">-2496.156681836851 3212.111104250254 243.5513916675739 -2496.15766894583 3212.111426134479 243.5514000962876 -2496.158587958476 3212.109263969423 243.5514026186703 -2496.158587958476 3212.109263969423 243.5514026186703 -2496.15766894583 3212.111426134479 243.5514000962876 -2496.156681836851 3212.111104250254 243.5513916675739 -2496.159814029147 3212.109741092418 243.5514004198146 -2496.159814029147 3212.109741092418 243.5514004198146</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3219\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3217\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3220\">0.006077954306829711 -0.007545337280134282 0.9999530620768024 0.006077954306829711 -0.007545337280134282 0.9999530620768024 0.006077954306829711 -0.007545337280134282 0.9999530620768024 -0.006077954306829711 0.007545337280134282 -0.9999530620768024 -0.006077954306829711 0.007545337280134282 -0.9999530620768024 -0.006077954306829711 0.007545337280134282 -0.9999530620768024 0.006077954306829711 -0.007545337280134282 0.9999530620768024 -0.006077954306829711 0.007545337280134282 -0.9999530620768024</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3220\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3218\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3216\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3217\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3218\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 1 6 2 3 7 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3221\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3222\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3225\">1614.828490040427 1808.109906918895 233.4636895567322 1614.82812317156 1808.108916085448 225.8402740619662 1614.826356266995 1808.109686404333 225.8402740493442 1614.826356266995 1808.109686404333 225.8402740493442 1614.82812317156 1808.108916085448 225.8402740619662 1614.828490040427 1808.109906918895 233.4636895567322</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3225\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3223\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3226\">0.3996419632731487 0.9166713053454537 -0.0001383742945706668 0.3996419632731487 0.9166713053454537 -0.0001383742945706668 0.3996419632731487 0.9166713053454537 -0.0001383742945706668 -0.3996419632731487 -0.9166713053454537 0.0001383742945706668 -0.3996419632731487 -0.9166713053454537 0.0001383742945706668 -0.3996419632731487 -0.9166713053454537 0.0001383742945706668</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3226\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3224\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3222\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3223\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3224\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3227\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3228\">\r\n\t\t\t\t\t<float_array count=\"522\" id=\"ID3231\">233.9825538429527 -1542.726231919407 240.1256121892783 224.7248181884775 -1549.556845554688 234.2175049025476 233.9822629149621 -1542.726996295145 234.2161650629728 224.7247914023642 -1549.556860814712 234.2187269619012 224.6102157797955 -1549.641395326244 234.2202315055706 224.6105607619038 -1549.640492075855 240.1195783282859 224.6105608204871 -1549.640491922348 240.1205803975961 224.6105065745055 -1549.640631301514 240.1269669002741 224.6102156465327 -1549.641395677304 234.2175197739564 224.6676387376328 -1549.599030740954 234.2175131826604 224.6102157797955 -1549.641395326244 234.2202315055706 224.7247914023642 -1549.556860814712 234.2187269619012 224.6102156465327 -1549.641395677304 234.2175197739564 224.6676387376328 -1549.599030740954 234.2175131826604 224.6105065745055 -1549.640631301514 240.1269669002741 233.9825538429527 -1542.726231919407 240.1256121892783 224.6105608204871 -1549.640491922348 240.1205803975961 224.6105607619038 -1549.640492075855 240.1195783282859 224.7248181884775 -1549.556845554688 234.2175049025476 233.9822629149621 -1542.726996295145 234.2161650629728 320.3116104955684 -1586.883317639537 234.2176265204238 224.6676387376328 -1549.599030740954 234.2175131826604 224.6102156465327 -1549.641395677304 234.2175197739564 320.2979830503514 -1586.813473255069 234.2176166484677 320.3552494897517 -1586.771188067578 234.2176083511206 320.426152473975 -1586.798795639488 234.2176084298723 320.426152473975 -1586.798795639488 234.2176084298723 320.3116104955684 -1586.883317639537 234.2176265204238 320.3552494897517 -1586.771188067578 234.2176083511206 320.2979830503514 -1586.813473255069 234.2176166484677 224.6676387376328 -1549.599030740954 234.2175131826604 224.6102156465327 -1549.641395677304 234.2175197739564 -111.8650337545532 -1408.141549278514 234.216692090385 233.9825538429527 -1542.726231919407 240.1256121892783 233.9822629149621 -1542.726996295145 234.2161650629728 -233.2518220849688 -1360.904240973588 234.2168770683722 -233.2515324606434 -1360.903480009971 240.1251012760037 -233.2515324606434 -1360.903480009971 240.1251012760037 -233.2518220849688 -1360.904240973588 234.2168770683722 233.9825538429527 -1542.726231919407 240.1256121892783 -111.8650337545532 -1408.141549278514 234.216692090385 233.9822629149621 -1542.726996295145 234.2161650629728 -231.9272770319353 -1371.980000310723 240.1264636722609 233.9825538429527 -1542.726231919407 240.1256121892783 -233.2515324606434 -1360.903480009971 240.1251012760037 -221.5314573605001 -1376.025508523736 240.1264750252332 -113.334499401009 -1418.130208068508 240.1265943305651 -95.38293260669889 -1425.116005184397 240.126614121051 104.1183387807819 -1502.751312578957 240.1268340587913 122.0768542889628 -1509.739813765527 240.126853856931 224.6105065745055 -1549.640631301514 240.1269669002741 224.6105065745055 -1549.640631301514 240.1269669002741 122.0768542889628 -1509.739813765527 240.126853856931 233.9825538429527 -1542.726231919407 240.1256121892783 104.1183387807819 -1502.751312578957 240.1268340587913 -95.38293260669889 -1425.116005184397 240.126614121051 -113.334499401009 -1418.130208068508 240.1265943305651 -221.5314573605001 -1376.025508523736 240.1264750252332 -231.9272770319353 -1371.980000310723 240.1264636722609 -233.2515324606434 -1360.903480009971 240.1251012760037 320.3119616217523 -1586.882398594786 240.1187119333987 320.426152473975 -1586.798795639488 234.2176084298723 320.3116104955684 -1586.883317639537 234.2176265204238 320.3116104955684 -1586.883317639537 234.2176265204238 320.426152473975 -1586.798795639488 234.2176084298723 320.3119616217523 -1586.882398594786 240.1187119333987 320.2979830503514 -1586.813473255069 234.2176166484677 224.7248181884775 -1549.556845554688 234.2175049025476 224.6676387376328 -1549.599030740954 234.2175131826604 320.3552494897517 -1586.771188067578 234.2176083511206 320.3552494897517 -1586.771188067578 234.2176083511206 320.2979830503514 -1586.813473255069 234.2176166484677 224.7248181884775 -1549.556845554688 234.2175049025476 224.6676387376328 -1549.599030740954 234.2175131826604 -233.2515324606434 -1360.903480009971 240.1251012760037 -231.9272555457969 -1371.979945105925 240.1235268753777 -231.9272770319353 -1371.980000310723 240.1264636722609 -231.9437392241034 -1371.845486325642 234.2221586858793 -231.9437501989341 -1371.845396649609 234.2182224807534 -233.2518220849688 -1360.904240973588 234.2168770683722 -231.9275665832088 -1371.980761082724 234.2197278366849 -231.9272555457969 -1371.979945105925 240.1235268753777 -231.9275665832088 -1371.980761082724 234.2197278366849 -231.9437392241034 -1371.845486325642 234.2221586858793 -233.2518220849688 -1360.904240973588 234.2168770683722 -233.2515324606434 -1360.903480009971 240.1251012760037 -231.9437501989341 -1371.845396649609 234.2182224807534 -231.9272770319353 -1371.980000310723 240.1264636722609 320.426152473975 -1586.798795639488 234.2176084298723 329.6827522225535 -1579.96768146701 240.1257168362748 329.6824609031751 -1579.968446506145 234.2162680740912 320.3119616217523 -1586.882398594786 240.1187119333987 320.311950490307 -1586.882427195209 240.1202581264649 320.3119014235995 -1586.882553263701 240.1270736467563 320.3119014235995 -1586.882553263701 240.1270736467563 320.311950490307 -1586.882427195209 240.1202581264649 329.6827522225535 -1579.96768146701 240.1257168362748 320.3119616217523 -1586.882398594786 240.1187119333987 320.426152473975 -1586.798795639488 234.2176084298723 329.6824609031751 -1579.968446506145 234.2162680740912 -328.5597784654169 -1334.24750236973 234.2181161403442 -233.2518220849688 -1360.904240973588 234.2168770683722 -329.869433082547 -1323.305787995812 234.2167714187533 -328.499954921645 -1334.270782557488 234.2181162061831 -280.2514422523473 -1353.046574846134 234.2181693108984 -231.9437501989341 -1371.845396649609 234.2182224807534 -231.9437501989341 -1371.845396649609 234.2182224807534 -280.2514422523473 -1353.046574846134 234.2181693108984 -233.2518220849688 -1360.904240973588 234.2168770683722 -328.499954921645 -1334.270782557488 234.2181162061831 -328.5597784654169 -1334.24750236973 234.2181161403442 -329.869433082547 -1323.305787995812 234.2167714187533 331.1650403174067 -1591.106020981687 240.1270857365864 329.6827522225535 -1579.96768146701 240.1257168362748 320.3119014235995 -1586.882553263701 240.1270736467563 879.9811209098052 -1173.895454499932 240.0460184093146 890.4337848177661 -1178.414438605999 240.0460881510709 889.1474836762486 -1167.651955315838 240.0447580571785 889.1474836762486 -1167.651955315838 240.0447580571785 890.4337848177661 -1178.414438605999 240.0460881510709 879.9811209098052 -1173.895454499932 240.0460184093146 331.1650403174067 -1591.106020981687 240.1270857365864 329.6827522225535 -1579.96768146701 240.1257168362748 320.3119014235995 -1586.882553263701 240.1270736467563 -328.5597784654169 -1334.24750236973 234.2181161403442 -329.8691434581724 -1323.305027031909 240.1249956263906 -328.5432857155797 -1334.382112953368 240.1263566466053 -329.869433082547 -1323.305787995812 234.2167714187533 -329.869433082547 -1323.305787995812 234.2167714187533 -328.5597784654169 -1334.24750236973 234.2181161403442 -329.8691434581724 -1323.305027031909 240.1249956263906 -328.5432857155797 -1334.382112953368 240.1263566466053 -328.5435753399188 -1334.382873917211 234.2181324389702 -328.499954921645 -1334.270782557488 234.2181162061831 -328.5597784654169 -1334.24750236973 234.2181161403442 -231.9275666562949 -1371.980761274509 234.218239464627 -280.2514422523473 -1353.046574846134 234.2181693108984 -231.9437501989341 -1371.845396649609 234.2182224807534 -231.9437501989341 -1371.845396649609 234.2182224807534 -231.9275666562949 -1371.980761274509 234.218239464627 -280.2514422523473 -1353.046574846134 234.2181693108984 -328.499954921645 -1334.270782557488 234.2181162061831 -328.5435753399188 -1334.382873917211 234.2181324389702 -328.5597784654169 -1334.24750236973 234.2181161403442 -328.5597784654169 -1334.24750236973 234.2181161403442 -328.5432857155797 -1334.382112953368 240.1263566466053 -328.5435753399188 -1334.382873917211 234.2181324389702 -328.5435753399188 -1334.382873917211 234.2181324389702 -328.5432857155797 -1334.382112953368 240.1263566466053 -328.5597784654169 -1334.24750236973 234.2181161403442 -1694.035689835594 -792.4436813522325 240.1235274400355 -329.869433082547 -1323.305787995812 234.2167714187533 -1694.035981155042 -792.4444463913733 234.2140786778546 -329.8691434581724 -1323.305027031909 240.1249956263906 -329.8691434581724 -1323.305027031909 240.1249956263906 -1694.035689835594 -792.4436813522325 240.1235274400355 -329.869433082547 -1323.305787995812 234.2167714187533 -1694.035981155042 -792.4444463913733 234.2140786778546 -1786.881701175176 -15.61910582018845 234.1180876557392 -1694.035689835594 -792.4436813522325 240.1235274400355 -1694.035981155042 -792.4444463913733 234.2140786778546 -1786.881409855726 -15.61834078105085 240.0275364179415 -1786.881409855726 -15.61834078105085 240.0275364179415 -1786.881701175176 -15.61910582018845 234.1180876557392 -1694.035689835594 -792.4436813522325 240.1235274400355 -1694.035981155042 -792.4444463913733 234.2140786778546 -1795.899860739193 -23.10249587099906 234.1195010281217 -1786.881409855726 -15.61834078105085 240.0275364179415 -1786.881701175176 -15.61910582018845 234.1180876557392 -1795.899569419694 -23.10173083182463 240.0289497903122 -1795.899569419694 -23.10173083182463 240.0289497903122 -1795.899860739193 -23.10249587099906 234.1195010281217 -1786.881409855726 -15.61834078105085 240.0275364179415 -1786.881701175176 -15.61910582018845 234.1180876557392</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"174\" source=\"#ID3231\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3229\">\r\n\t\t\t\t\t<float_array count=\"522\" id=\"ID3232\">0.593680181051824 -0.8047010848284555 8.18668460705544e-005 0.593680181051824 -0.8047010848284555 8.18668460705544e-005 0.593680181051824 -0.8047010848284555 8.18668460705544e-005 0.593680181051824 -0.8047010848284555 8.18668460705544e-005 0.593680181051824 -0.8047010848284555 8.18668460705544e-005 0.593680181051824 -0.8047010848284555 8.18668460705544e-005 0.593680181051824 -0.8047010848284555 8.18668460705544e-005 0.593680181051824 -0.8047010848284555 8.18668460705544e-005 0.593680181051824 -0.8047010848284555 8.18668460705544e-005 0.593680181051824 -0.8047010848284555 8.18668460705544e-005 -0.593680181051824 0.8047010848284555 -8.18668460705544e-005 -0.593680181051824 0.8047010848284555 -8.18668460705544e-005 -0.593680181051824 0.8047010848284555 -8.18668460705544e-005 -0.593680181051824 0.8047010848284555 -8.18668460705544e-005 -0.593680181051824 0.8047010848284555 -8.18668460705544e-005 -0.593680181051824 0.8047010848284555 -8.18668460705544e-005 -0.593680181051824 0.8047010848284555 -8.18668460705544e-005 -0.593680181051824 0.8047010848284555 -8.18668460705544e-005 -0.593680181051824 0.8047010848284555 -8.18668460705544e-005 -0.593680181051824 0.8047010848284555 -8.18668460705544e-005 5.116424902371284e-005 0.000134297100659503 0.9999999896732542 5.116424902371284e-005 0.000134297100659503 0.9999999896732542 5.116424902371284e-005 0.000134297100659503 0.9999999896732542 5.116424902371284e-005 0.000134297100659503 0.9999999896732542 5.116424902371284e-005 0.000134297100659503 0.9999999896732542 5.116424902371284e-005 0.000134297100659503 0.9999999896732542 -5.116424902371284e-005 -0.000134297100659503 -0.9999999896732542 -5.116424902371284e-005 -0.000134297100659503 -0.9999999896732542 -5.116424902371284e-005 -0.000134297100659503 -0.9999999896732542 -5.116424902371284e-005 -0.000134297100659503 -0.9999999896732542 -5.116424902371284e-005 -0.000134297100659503 -0.9999999896732542 -5.116424902371284e-005 -0.000134297100659503 -0.9999999896732542 0.3626552081432237 0.9319233771799709 -0.0001381016763119092 0.3626552081432237 0.9319233771799709 -0.0001381016763119092 0.3626552081432237 0.9319233771799709 -0.0001381016763119092 0.3626552081432237 0.9319233771799709 -0.0001381016763119092 0.3626552081432237 0.9319233771799709 -0.0001381016763119092 -0.3626552081432237 -0.9319233771799709 0.0001381016763119092 -0.3626552081432237 -0.9319233771799709 0.0001381016763119092 -0.3626552081432237 -0.9319233771799709 0.0001381016763119092 -0.3626552081432237 -0.9319233771799709 0.0001381016763119092 -0.3626552081432237 -0.9319233771799709 0.0001381016763119092 4.912027301249174e-005 0.0001290512110949122 0.9999999904664919 4.912027301249174e-005 0.0001290512110949122 0.9999999904664919 4.912027301249174e-005 0.0001290512110949122 0.9999999904664919 4.912027301249174e-005 0.0001290512110949122 0.9999999904664919 4.912027301249174e-005 0.0001290512110949122 0.9999999904664919 4.912027301249174e-005 0.0001290512110949122 0.9999999904664919 4.912027301249174e-005 0.0001290512110949122 0.9999999904664919 4.912027301249174e-005 0.0001290512110949122 0.9999999904664919 4.912027301249174e-005 0.0001290512110949122 0.9999999904664919 -4.912027301249174e-005 -0.0001290512110949122 -0.9999999904664919 -4.912027301249174e-005 -0.0001290512110949122 -0.9999999904664919 -4.912027301249174e-005 -0.0001290512110949122 -0.9999999904664919 -4.912027301249174e-005 -0.0001290512110949122 -0.9999999904664919 -4.912027301249174e-005 -0.0001290512110949122 -0.9999999904664919 -4.912027301249174e-005 -0.0001290512110949122 -0.9999999904664919 -4.912027301249174e-005 -0.0001290512110949122 -0.9999999904664919 -4.912027301249174e-005 -0.0001290512110949122 -0.9999999904664919 -4.912027301249174e-005 -0.0001290512110949122 -0.9999999904664919 -0.5937573081819818 0.8046441765667906 -8.998688176687686e-005 -0.5937573081819818 0.8046441765667906 -8.998688176687686e-005 -0.5937573081819818 0.8046441765667906 -8.998688176687686e-005 0.5937573081819818 -0.8046441765667906 8.998688176687686e-005 0.5937573081819818 -0.8046441765667906 8.998688176687686e-005 0.5937573081819818 -0.8046441765667906 8.998688176687686e-005 4.929744373182635e-005 0.0001294604190941086 0.999999990404881 4.929744373182635e-005 0.0001294604190941086 0.999999990404881 4.929744373182635e-005 0.0001294604190941086 0.999999990404881 4.929744373182635e-005 0.0001294604190941086 0.999999990404881 -4.929744373182635e-005 -0.0001294604190941086 -0.999999990404881 -4.929744373182635e-005 -0.0001294604190941086 -0.999999990404881 -4.929744373182635e-005 -0.0001294604190941086 -0.999999990404881 -4.929744373182635e-005 -0.0001294604190941086 -0.999999990404881 -0.9929289189899215 -0.1187103935030643 6.563424146784504e-005 -0.9929289189899215 -0.1187103935030643 6.563424146784504e-005 -0.9929289189899215 -0.1187103935030643 6.563424146784504e-005 -0.9929289189899215 -0.1187103935030643 6.563424146784504e-005 -0.9929289189899215 -0.1187103935030643 6.563424146784504e-005 -0.9929289189899215 -0.1187103935030643 6.563424146784504e-005 -0.9929289189899215 -0.1187103935030643 6.563424146784504e-005 0.9929289189899215 0.1187103935030643 -6.563424146784504e-005 0.9929289189899215 0.1187103935030643 -6.563424146784504e-005 0.9929289189899215 0.1187103935030643 -6.563424146784504e-005 0.9929289189899215 0.1187103935030643 -6.563424146784504e-005 0.9929289189899215 0.1187103935030643 -6.563424146784504e-005 0.9929289189899215 0.1187103935030643 -6.563424146784504e-005 0.9929289189899215 0.1187103935030643 -6.563424146784504e-005 -0.5937550551886551 0.8046458400996739 -8.030073034230473e-005 -0.5937550551886551 0.8046458400996739 -8.030073034230473e-005 -0.5937550551886551 0.8046458400996739 -8.030073034230473e-005 -0.5937550551886551 0.8046458400996739 -8.030073034230473e-005 -0.5937550551886551 0.8046458400996739 -8.030073034230473e-005 -0.5937550551886551 0.8046458400996739 -8.030073034230473e-005 0.5937550551886551 -0.8046458400996739 8.030073034230473e-005 0.5937550551886551 -0.8046458400996739 8.030073034230473e-005 0.5937550551886551 -0.8046458400996739 8.030073034230473e-005 0.5937550551886551 -0.8046458400996739 8.030073034230473e-005 0.5937550551886551 -0.8046458400996739 8.030073034230473e-005 0.5937550551886551 -0.8046458400996739 8.030073034230473e-005 4.902232843856972e-005 0.000128794299996852 0.9999999905044199 4.902232843856972e-005 0.000128794299996852 0.9999999905044199 4.902232843856972e-005 0.000128794299996852 0.9999999905044199 4.902232843856972e-005 0.000128794299996852 0.9999999905044199 4.902232843856972e-005 0.000128794299996852 0.9999999905044199 4.902232843856972e-005 0.000128794299996852 0.9999999905044199 -4.902232843856972e-005 -0.000128794299996852 -0.9999999905044199 -4.902232843856972e-005 -0.000128794299996852 -0.9999999905044199 -4.902232843856972e-005 -0.000128794299996852 -0.9999999905044199 -4.902232843856972e-005 -0.000128794299996852 -0.9999999905044199 -4.902232843856972e-005 -0.000128794299996852 -0.9999999905044199 -4.902232843856972e-005 -0.000128794299996852 -0.9999999905044199 4.928913358754538e-005 0.0001294711683798524 0.9999999904038989 4.928913358754538e-005 0.0001294711683798524 0.9999999904038989 4.928913358754538e-005 0.0001294711683798524 0.9999999904038989 4.928913358754538e-005 0.0001294711683798524 0.9999999904038989 4.928913358754538e-005 0.0001294711683798524 0.9999999904038989 4.928913358754538e-005 0.0001294711683798524 0.9999999904038989 -4.928913358754538e-005 -0.0001294711683798524 -0.9999999904038989 -4.928913358754538e-005 -0.0001294711683798524 -0.9999999904038989 -4.928913358754538e-005 -0.0001294711683798524 -0.9999999904038989 -4.928913358754538e-005 -0.0001294711683798524 -0.9999999904038989 -4.928913358754538e-005 -0.0001294711683798524 -0.9999999904038989 -4.928913358754538e-005 -0.0001294711683798524 -0.9999999904038989 0.9929127659096806 0.1188454256592761 -6.398010179773095e-005 0.9929127659096806 0.1188454256592761 -6.398010179773095e-005 0.9929127659096806 0.1188454256592761 -6.398010179773095e-005 0.9929127659096806 0.1188454256592761 -6.398010179773095e-005 -0.9929127659096806 -0.1188454256592761 6.398010179773095e-005 -0.9929127659096806 -0.1188454256592761 6.398010179773095e-005 -0.9929127659096806 -0.1188454256592761 6.398010179773095e-005 -0.9929127659096806 -0.1188454256592761 6.398010179773095e-005 4.890878473340472e-005 0.0001285178767402013 0.999999990545543 4.890878473340472e-005 0.0001285178767402013 0.999999990545543 4.890878473340472e-005 0.0001285178767402013 0.999999990545543 4.890878473340472e-005 0.0001285178767402013 0.999999990545543 4.890878473340472e-005 0.0001285178767402013 0.999999990545543 4.890878473340472e-005 0.0001285178767402013 0.999999990545543 -4.890878473340472e-005 -0.0001285178767402013 -0.999999990545543 -4.890878473340472e-005 -0.0001285178767402013 -0.999999990545543 -4.890878473340472e-005 -0.0001285178767402013 -0.999999990545543 -4.890878473340472e-005 -0.0001285178767402013 -0.999999990545543 -4.890878473340472e-005 -0.0001285178767402013 -0.999999990545543 -4.890878473340472e-005 -0.0001285178767402013 -0.999999990545543 0.9929127659104432 0.1188454256529057 -6.398009859505835e-005 0.9929127659104432 0.1188454256529057 -6.398009859505835e-005 0.9929127659104432 0.1188454256529057 -6.398009859505835e-005 -0.9929127659104432 -0.1188454256529057 6.398009859505835e-005 -0.9929127659104432 -0.1188454256529057 6.398009859505835e-005 -0.9929127659104432 -0.1188454256529057 6.398009859505835e-005 0.3626552039017963 0.9319233788209753 -0.0001381660000342089 0.3626552039017963 0.9319233788209753 -0.0001381660000342089 0.3626552039017963 0.9319233788209753 -0.0001381660000342089 0.3626552039017963 0.9319233788209753 -0.0001381660000342089 -0.3626552039017963 -0.9319233788209753 0.0001381660000342089 -0.3626552039017963 -0.9319233788209753 0.0001381660000342089 -0.3626552039017963 -0.9319233788209753 0.0001381660000342089 -0.3626552039017963 -0.9319233788209753 0.0001381660000342089 0.992933174239452 0.1186747966447146 -6.431253326147933e-005 0.992933174239452 0.1186747966447146 -6.431253326147933e-005 0.992933174239452 0.1186747966447146 -6.431253326147933e-005 0.992933174239452 0.1186747966447146 -6.431253326147933e-005 -0.992933174239452 -0.1186747966447146 6.431253326147933e-005 -0.992933174239452 -0.1186747966447146 6.431253326147933e-005 -0.992933174239452 -0.1186747966447146 6.431253326147933e-005 -0.992933174239452 -0.1186747966447146 6.431253326147933e-005 -0.63858441972214 0.769551774895142 -6.814597789661959e-005 -0.63858441972214 0.769551774895142 -6.814597789661959e-005 -0.63858441972214 0.769551774895142 -6.814597789661959e-005 -0.63858441972214 0.769551774895142 -6.814597789661959e-005 0.63858441972214 -0.769551774895142 6.814597789661959e-005 0.63858441972214 -0.769551774895142 6.814597789661959e-005 0.63858441972214 -0.769551774895142 6.814597789661959e-005 0.63858441972214 -0.769551774895142 6.814597789661959e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"174\" source=\"#ID3232\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3230\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3228\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3229\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"110\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3230\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 3 8 9 8 3 4 10 11 12 13 12 11 14 15 16 16 15 17 17 15 10 10 15 11 11 15 18 19 18 15 20 21 22 21 20 23 23 20 24 24 20 25 26 27 28 28 27 29 29 27 30 31 30 27 32 33 34 33 32 35 33 35 36 37 38 39 38 40 39 41 39 40 42 43 44 43 42 45 43 45 46 43 46 47 43 47 48 43 48 49 43 49 50 51 52 53 52 54 53 54 55 53 55 56 53 56 57 53 57 58 53 59 53 58 60 61 62 63 64 65 66 67 68 67 66 69 70 71 72 73 72 71 74 75 76 75 74 77 77 74 78 78 74 79 77 80 75 81 82 83 84 85 86 86 85 83 83 85 81 87 81 85 88 89 90 89 88 91 89 91 92 89 92 93 94 95 96 95 97 96 97 98 96 99 96 98 100 101 102 101 100 103 101 103 104 101 104 105 106 107 108 107 109 108 109 110 108 111 108 110 112 113 114 113 112 115 115 112 116 115 116 117 118 119 120 119 121 120 120 121 122 123 122 121 124 125 126 125 124 127 128 129 130 131 130 129 132 133 134 133 132 135 133 135 136 136 135 137 138 139 140 140 139 141 139 142 141 143 141 142 144 145 146 147 148 149 150 151 152 151 150 153 154 155 156 157 156 155 158 159 160 159 158 161 162 163 164 165 164 163 166 167 168 167 166 169 170 171 172 173 172 171</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3233\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3234\">\r\n\t\t\t\t\t<float_array count=\"444\" id=\"ID3237\">-2508.928040830896 3206.51798828552 233.73654370116 -2499.557151646478 3213.432882542502 233.7391233384871 -2499.557144068623 3213.432887749624 233.7351864610965 -2508.92774949913 3206.518753340254 239.6459923318048 -2499.556852736755 3213.433652804349 239.6446350917155 -2499.556852736755 3213.433652804349 239.6446350917155 -2508.92774949913 3206.518753340254 239.6459923318048 -2499.557151646478 3213.432882542502 233.7391233384871 -2508.928040830896 3206.51798828552 233.73654370116 -2499.557144068623 3213.432887749624 233.7351864610965 -2041.695868069709 3024.696350763519 239.6464980121924 -2499.556852736755 3213.433652804349 239.6446350917155 -2508.92774949913 3206.518753340254 239.6459923318048 -2488.703785665694 3209.210128394215 239.6446469470521 -2488.589525348758 3209.16573688293 239.6446469652092 -2391.191871395831 3171.26361304277 239.644752429834 -2373.006628780183 3164.186858216479 239.6447721146456 -2167.640273094663 3084.268906090383 239.6449944156733 -2149.822436617825 3077.335126709659 239.6450137027712 -2043.019148368854 3035.772818193135 239.6451293502566 -2043.019148368854 3035.772818193135 239.6451293502566 -2041.695868069709 3024.696350763519 239.6464980121924 -2149.822436617825 3077.335126709659 239.6450137027712 -2167.640273094663 3084.268906090383 239.6449944156733 -2373.006628780183 3164.186858216479 239.6447721146456 -2391.191871395831 3171.26361304277 239.644752429834 -2488.589525348758 3209.16573688293 239.6446469652092 -2488.703785665694 3209.210128394215 239.6446469470521 -2499.556852736755 3213.433652804349 239.6446350917155 -2508.92774949913 3206.518753340254 239.6459923318048 -1945.080167295529 2987.097655772989 233.741090770588 -2041.696159213147 3024.695586214186 233.7409862982866 -1945.080167471481 2987.097655283252 233.7371537223082 -2508.928040830896 3206.51798828552 233.73654370116 -2508.92774949913 3206.518753340254 239.6459923318048 -2041.695868069709 3024.696350763519 239.6464980121924 -2041.695868069709 3024.696350763519 239.6464980121924 -2041.696159213147 3024.695586214186 233.7409862982866 -2508.92774949913 3206.518753340254 239.6459923318048 -1945.080167471481 2987.097655283252 233.7371537223082 -2508.928040830896 3206.51798828552 233.73654370116 -1945.080167295529 2987.097655772989 233.741090770588 -2043.01943951221 3035.772053643555 233.7396176363486 -2041.695868069709 3024.696350763519 239.6464980121924 -2041.696159213147 3024.695586214186 233.7409862982866 -2043.019148368854 3035.772818193135 239.6451293502566 -2043.019148368854 3035.772818193135 239.6451293502566 -2043.01943951221 3035.772053643555 233.7396176363486 -2041.695868069709 3024.696350763519 239.6464980121924 -2041.696159213147 3024.695586214186 233.7409862982866 -1833.142670129309 2050.148156219942 239.7623822059283 -1945.080167471481 2987.097655283252 233.7371537223082 -1833.142961448773 2050.1473911808 233.8529334437346 -1945.080167295529 2987.097655772989 233.741090770588 -1945.079876152089 2987.098420322373 239.6466024845004 -1945.079876152089 2987.098420322373 239.6466024845004 -1833.142670129309 2050.148156219942 239.7623822059283 -1945.080167295529 2987.097655772989 233.741090770588 -1945.080167471481 2987.097655283252 233.7371537223082 -1833.142961448773 2050.1473911808 233.8529334437346 -2041.696159213147 3024.695586214186 233.7409862982866 -1946.403447594457 2998.17412320261 233.7397219074883 -2043.01943951221 3035.772053643555 233.7396176363486 -1945.080167295529 2987.097655772989 233.741090770588 -1945.080167295529 2987.097655772989 233.741090770588 -2041.696159213147 3024.695586214186 233.7409862982866 -1946.403447594457 2998.17412320261 233.7397219074883 -2043.01943951221 3035.772053643555 233.7396176363486 -1643.847145548787 1976.482031746753 233.8531384254203 -1833.142670129309 2050.148156219942 239.7623822059283 -1833.142961448773 2050.1473911808 233.8529334437346 -1643.846854229261 1976.482796785971 239.762587187619 -1643.846854229261 1976.482796785971 239.762587187619 -1643.847145548787 1976.482031746753 233.8531384254203 -1833.142670129309 2050.148156219942 239.7623822059283 -1833.142961448773 2050.1473911808 233.8529334437346 -1945.079876152089 2987.098420322373 239.6466024845004 -1943.07737268206 2996.880665291318 239.6452373289283 -1946.403156450905 2998.17488775208 239.645233621409 -1833.142670129309 2050.148156219942 239.7623822059283 -1943.046641613951 2996.630936181935 239.6452681439917 -1942.582433252678 2996.688060548876 239.6452378644834 -1941.205259405102 2996.152186694948 239.6452383156575 -1940.465569650655 2995.864287963157 239.6452392672273 -1936.007338584913 2994.129374900041 239.645245003878 -1824.070128006084 2057.179072660608 239.7610247300156 -1643.846854229261 1976.482796785971 239.762587187619 -1645.329106922299 1987.621161403452 239.7612182822961 316.9775101625301 3435.161696438228 239.4770829045989 368.085031852364 3460.630404401197 239.471266257395 366.9045053154346 3471.991416550052 239.4698536537775 394.2893953027974 3459.477090264726 239.4701237628659 747.2335612816969 3287.367393229184 239.4750059636496 751.3244733978422 3296.319467288237 239.4736453556648 751.3244733978422 3296.319467288237 239.4736453556648 747.2335612816969 3287.367393229184 239.4750059636496 394.2893953027974 3459.477090264726 239.4701237628659 368.085031852364 3460.630404401197 239.471266257395 366.9045053154346 3471.991416550052 239.4698536537775 316.9775101625301 3435.161696438228 239.4770829045989 -1643.846854229261 1976.482796785971 239.762587187619 -1645.329106922299 1987.621161403452 239.7612182822961 -1824.070128006084 2057.179072660608 239.7610247300156 -1833.142670129309 2050.148156219942 239.7623822059283 -1936.007338584913 2994.129374900041 239.645245003878 -1940.465569650655 2995.864287963157 239.6452392672273 -1941.205259405102 2996.152186694948 239.6452383156575 -1942.582433252678 2996.688060548876 239.6452378644834 -1943.046641613951 2996.630936181935 239.6452681439917 -1943.07737268206 2996.880665291318 239.6452373289283 -1945.079876152089 2987.098420322373 239.6466024845004 -1946.403156450905 2998.17488775208 239.645233621409 -1945.079876152089 2987.098420322373 239.6466024845004 -1946.403447594457 2998.17412320261 233.7397219074883 -1945.080167295529 2987.097655772989 233.741090770588 -1946.403156450905 2998.17488775208 239.645233621409 -1946.403209118305 2998.174740490152 238.4749701226538 -1946.403209203364 2998.174740293091 238.4733848880968 -1946.403209203364 2998.174740293091 238.4733848880968 -1946.403209118305 2998.174740490152 238.4749701226538 -1946.403447594457 2998.17412320261 233.7397219074883 -1946.403156450905 2998.17488775208 239.645233621409 -1945.079876152089 2987.098420322373 239.6466024845004 -1945.080167295529 2987.097655772989 233.741090770588 368.085031852364 3460.630404401197 239.471266257395 -1643.847145548787 1976.482031746753 233.8531384254203 368.0847405329528 3460.629639362041 233.5618174952046 -1643.846854229261 1976.482796785971 239.762587187619 -1643.846854229261 1976.482796785971 239.762587187619 368.085031852364 3460.630404401197 239.471266257395 -1643.847145548787 1976.482031746753 233.8531384254203 368.0847405329528 3460.629639362041 233.5618174952046 -1942.582433252678 2996.688060548876 239.6452378644834 -1943.07737268206 2996.880665291318 239.6452373289283 -1943.046641613951 2996.630936181935 239.6452681439917 -1943.046641613951 2996.630936181935 239.6452681439917 -1943.07737268206 2996.880665291318 239.6452373289283 -1942.582433252678 2996.688060548876 239.6452378644834 747.2332699622948 3287.366628190102 233.5655572194358 368.085031852364 3460.630404401197 239.471266257395 368.0847405329528 3460.629639362041 233.5618174952046 747.2332704018613 3287.366628368022 233.5681165982864 747.2335612816969 3287.367393229184 239.4750059636496 747.2335612816969 3287.367393229184 239.4750059636496 747.2332704018613 3287.366628368022 233.5681165982864 368.085031852364 3460.630404401197 239.471266257395 747.2332699622948 3287.366628190102 233.5655572194358 368.0847405329528 3460.629639362041 233.5618174952046</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"148\" source=\"#ID3237\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3235\">\r\n\t\t\t\t\t<float_array count=\"444\" id=\"ID3238\">-0.5937569810329988 0.8046444195200149 -7.489911723655044e-005 -0.5937569810329988 0.8046444195200149 -7.489911723655044e-005 -0.5937569810329988 0.8046444195200149 -7.489911723655044e-005 -0.5937569810329988 0.8046444195200149 -7.489911723655044e-005 -0.5937569810329988 0.8046444195200149 -7.489911723655044e-005 0.5937569810329988 -0.8046444195200149 7.489911723655044e-005 0.5937569810329988 -0.8046444195200149 7.489911723655044e-005 0.5937569810329988 -0.8046444195200149 7.489911723655044e-005 0.5937569810329988 -0.8046444195200149 7.489911723655044e-005 0.5937569810329988 -0.8046444195200149 7.489911723655044e-005 4.92969363356296e-005 0.0001294606577494208 0.9999999904048751 4.92969363356296e-005 0.0001294606577494208 0.9999999904048751 4.92969363356296e-005 0.0001294606577494208 0.9999999904048751 4.92969363356296e-005 0.0001294606577494208 0.9999999904048751 4.92969363356296e-005 0.0001294606577494208 0.9999999904048751 4.92969363356296e-005 0.0001294606577494208 0.9999999904048751 4.92969363356296e-005 0.0001294606577494208 0.9999999904048751 4.92969363356296e-005 0.0001294606577494208 0.9999999904048751 4.92969363356296e-005 0.0001294606577494208 0.9999999904048751 4.92969363356296e-005 0.0001294606577494208 0.9999999904048751 -4.92969363356296e-005 -0.0001294606577494208 -0.9999999904048751 -4.92969363356296e-005 -0.0001294606577494208 -0.9999999904048751 -4.92969363356296e-005 -0.0001294606577494208 -0.9999999904048751 -4.92969363356296e-005 -0.0001294606577494208 -0.9999999904048751 -4.92969363356296e-005 -0.0001294606577494208 -0.9999999904048751 -4.92969363356296e-005 -0.0001294606577494208 -0.9999999904048751 -4.92969363356296e-005 -0.0001294606577494208 -0.9999999904048751 -4.92969363356296e-005 -0.0001294606577494208 -0.9999999904048751 -4.92969363356296e-005 -0.0001294606577494208 -0.9999999904048751 -4.92969363356296e-005 -0.0001294606577494208 -0.9999999904048751 -0.362656086049551 -0.9319230354816758 0.0001385273977245333 -0.362656086049551 -0.9319230354816758 0.0001385273977245333 -0.362656086049551 -0.9319230354816758 0.0001385273977245333 -0.362656086049551 -0.9319230354816758 0.0001385273977245333 -0.362656086049551 -0.9319230354816758 0.0001385273977245333 -0.362656086049551 -0.9319230354816758 0.0001385273977245333 0.362656086049551 0.9319230354816758 -0.0001385273977245333 0.362656086049551 0.9319230354816758 -0.0001385273977245333 0.362656086049551 0.9319230354816758 -0.0001385273977245333 0.362656086049551 0.9319230354816758 -0.0001385273977245333 0.362656086049551 0.9319230354816758 -0.0001385273977245333 0.362656086049551 0.9319230354816758 -0.0001385273977245333 0.992939223056249 0.1186241762066785 -6.430971338692344e-005 0.992939223056249 0.1186241762066785 -6.430971338692344e-005 0.992939223056249 0.1186241762066785 -6.430971338692344e-005 0.992939223056249 0.1186241762066785 -6.430971338692344e-005 -0.992939223056249 -0.1186241762066785 6.430971338692344e-005 -0.992939223056249 -0.1186241762066785 6.430971338692344e-005 -0.992939223056249 -0.1186241762066785 6.430971338692344e-005 -0.992939223056249 -0.1186241762066785 6.430971338692344e-005 -0.9929389864990518 -0.118626156284277 6.430749991045104e-005 -0.9929389864990518 -0.118626156284277 6.430749991045104e-005 -0.9929389864990518 -0.118626156284277 6.430749991045104e-005 -0.9929389864990518 -0.118626156284277 6.430749991045104e-005 -0.9929389864990518 -0.118626156284277 6.430749991045104e-005 0.9929389864990518 0.118626156284277 -6.430749991045104e-005 0.9929389864990518 0.118626156284277 -6.430749991045104e-005 0.9929389864990518 0.118626156284277 -6.430749991045104e-005 0.9929389864990518 0.118626156284277 -6.430749991045104e-005 0.9929389864990518 0.118626156284277 -6.430749991045104e-005 4.930028526443325e-005 0.0001294637132835244 0.9999999904043144 4.930028526443325e-005 0.0001294637132835244 0.9999999904043144 4.930028526443325e-005 0.0001294637132835244 0.9999999904043144 4.930028526443325e-005 0.0001294637132835244 0.9999999904043144 -4.930028526443325e-005 -0.0001294637132835244 -0.9999999904043144 -4.930028526443325e-005 -0.0001294637132835244 -0.9999999904043144 -4.930028526443325e-005 -0.0001294637132835244 -0.9999999904043144 -4.930028526443325e-005 -0.0001294637132835244 -0.9999999904043144 -0.3626614342197809 -0.9319209542340382 0.0001385249846788745 -0.3626614342197809 -0.9319209542340382 0.0001385249846788745 -0.3626614342197809 -0.9319209542340382 0.0001385249846788745 -0.3626614342197809 -0.9319209542340382 0.0001385249846788745 0.3626614342197809 0.9319209542340382 -0.0001385249846788745 0.3626614342197809 0.9319209542340382 -0.0001385249846788745 0.3626614342197809 0.9319209542340382 -0.0001385249846788745 0.3626614342197809 0.9319209542340382 -0.0001385249846788745 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 4.929707963746942e-005 0.0001294605845992357 0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -4.929707963746942e-005 -0.0001294605845992357 -0.9999999904048775 -0.9929392498116715 -0.1186239521115206 6.456685658430429e-005 -0.9929392498116715 -0.1186239521115206 6.456685658430429e-005 -0.9929392498116715 -0.1186239521115206 6.456685658430429e-005 -0.9929392498116715 -0.1186239521115206 6.456685658430429e-005 -0.9929392498116715 -0.1186239521115206 6.456685658430429e-005 -0.9929392498116715 -0.1186239521115206 6.456685658430429e-005 0.9929392498116715 0.1186239521115206 -6.456685658430429e-005 0.9929392498116715 0.1186239521115206 -6.456685658430429e-005 0.9929392498116715 0.1186239521115206 -6.456685658430429e-005 0.9929392498116715 0.1186239521115206 -6.456685658430429e-005 0.9929392498116715 0.1186239521115206 -6.456685658430429e-005 0.9929392498116715 0.1186239521115206 -6.456685658430429e-005 0.5936322626398507 -0.8047364358226447 7.491700869041791e-005 0.5936322626398507 -0.8047364358226447 7.491700869041791e-005 0.5936322626398507 -0.8047364358226447 7.491700869041791e-005 0.5936322626398507 -0.8047364358226447 7.491700869041791e-005 -0.5936322626398507 0.8047364358226447 -7.491700869041791e-005 -0.5936322626398507 0.8047364358226447 -7.491700869041791e-005 -0.5936322626398507 0.8047364358226447 -7.491700869041791e-005 -0.5936322626398507 0.8047364358226447 -7.491700869041791e-005 4.929721112929883e-005 0.0001294603805070681 0.9999999904048974 4.929721112929883e-005 0.0001294603805070681 0.9999999904048974 4.929721112929883e-005 0.0001294603805070681 0.9999999904048974 -4.929721112929883e-005 -0.0001294603805070681 -0.9999999904048974 -4.929721112929883e-005 -0.0001294603805070681 -0.9999999904048974 -4.929721112929883e-005 -0.0001294603805070681 -0.9999999904048974 -0.4156366709877997 -0.9095307243960185 0.0001382383219045217 -0.4156366709877997 -0.9095307243960185 0.0001382383219045217 -0.4156366709877997 -0.9095307243960185 0.0001382383219045217 -0.4156366709877997 -0.9095307243960185 0.0001382383219045217 -0.4156366709877997 -0.9095307243960185 0.0001382383219045217 0.4156366709877997 0.9095307243960185 -0.0001382383219045217 0.4156366709877997 0.9095307243960185 -0.0001382383219045217 0.4156366709877997 0.9095307243960185 -0.0001382383219045217 0.4156366709877997 0.9095307243960185 -0.0001382383219045217 0.4156366709877997 0.9095307243960185 -0.0001382383219045217</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"148\" source=\"#ID3238\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3236\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3234\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3235\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"100\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3236\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 6 7 6 8 7 9 7 8 10 11 12 11 10 13 13 10 14 14 10 15 15 10 16 16 10 17 17 10 18 18 10 19 20 21 22 22 21 23 23 21 24 24 21 25 25 21 26 26 21 27 27 21 28 29 28 21 30 31 32 33 31 34 31 33 32 34 31 35 36 37 38 39 40 37 38 37 40 39 37 41 42 43 44 43 42 45 46 47 48 49 48 47 50 51 52 51 50 53 53 50 54 55 56 57 57 56 58 59 58 56 60 61 62 61 60 63 64 65 66 67 66 65 68 69 70 69 68 71 72 73 74 75 74 73 76 77 78 77 76 79 77 79 80 80 79 81 81 79 82 82 79 83 83 79 84 84 79 85 85 79 86 85 86 87 87 86 88 88 86 89 88 89 90 90 89 91 91 89 92 91 92 93 94 95 96 95 97 96 96 97 98 98 97 99 97 100 99 99 100 101 101 100 102 100 103 102 102 103 104 104 103 105 105 103 106 106 103 107 107 103 108 108 103 109 103 110 109 111 109 110 112 113 114 113 112 115 113 115 116 113 116 117 118 119 120 119 121 120 121 122 120 123 120 122 124 125 126 125 124 127 128 129 130 131 130 129 132 133 134 135 136 137 138 139 140 139 138 141 139 141 142 143 144 145 144 146 145 147 145 146</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3239\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3240\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID3243\">-2595.258542393311 3250.674837948969 233.7390199364588 -2604.629378173998 3243.75998264997 233.7364400842261 -2595.258522312617 3250.674852381998 233.735083057256 -2604.629086854506 3243.760747689082 239.6458888464122 -2595.258230980873 3250.675617436754 239.6445316878845 -2595.258230980873 3250.675617436754 239.6445316878845 -2595.258542393311 3250.674837948969 233.7390199364588 -2604.629086854506 3243.760747689082 239.6458888464122 -2604.629378173998 3243.75998264997 233.7364400842261 -2595.258522312617 3250.674852381998 233.735083057256 -3163.868081728268 2831.267839748738 239.7268591120661 -2606.111367991587 3254.899089994036 239.6445199454018 -3165.194463185284 2842.344801090235 239.7254906048311 -3163.8491738454 2831.105370854309 239.7268793460835 -3154.74087651956 2837.826495421793 239.7255602132924 -2604.629086854506 3243.760747689082 239.6458888464122 -2595.258230980873 3250.675617436754 239.6445316878845 -2595.258230980873 3250.675617436754 239.6445316878845 -2604.629086854506 3243.760747689082 239.6458888464122 -2606.111367991587 3254.899089994036 239.6445199454018 -3154.74087651956 2837.826495421793 239.7255602132924 -3163.8491738454 2831.105370854309 239.7268793460835 -3163.868081728268 2831.267839748738 239.7268591120661 -3165.194463185284 2842.344801090235 239.7254906048311 -2604.629086854506 3243.760747689082 239.6458888464122 -3154.741167839027 2837.825730382735 233.816111451088 -2604.629378173998 3243.75998264997 233.7364400842261 -3154.74087651956 2837.826495421793 239.7255602132924 -3154.74087651956 2837.826495421793 239.7255602132924 -2604.629086854506 3243.760747689082 239.6458888464122 -3154.741167839027 2837.825730382735 233.816111451088 -2604.629378173998 3243.75998264997 233.7364400842261 -3154.74087651956 2837.826495421793 239.7255602132924 -3163.847432217563 2831.106105951775 233.8174302894356 -3154.741167839027 2837.825730382735 233.816111451088 -3163.847432680572 2831.106105976692 233.8213671650237 -3163.848986628818 2831.104663579833 233.8213678531168 -3163.8491738454 2831.105370854309 239.7268793460835 -3163.8491738454 2831.105370854309 239.7268793460835 -3154.74087651956 2837.826495421793 239.7255602132924 -3163.848986628818 2831.104663579833 233.8213678531168 -3163.847432680572 2831.106105976692 233.8213671650237 -3163.847432217563 2831.106105951775 233.8174302894356 -3154.741167839027 2837.825730382735 233.816111451088</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID3243\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3241\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID3244\">0.5937570061634089 -0.804644400976012 7.489873776445057e-005 0.5937570061634089 -0.804644400976012 7.489873776445057e-005 0.5937570061634089 -0.804644400976012 7.489873776445057e-005 0.5937570061634089 -0.804644400976012 7.489873776445057e-005 0.5937570061634089 -0.804644400976012 7.489873776445057e-005 -0.5937570061634089 0.804644400976012 -7.489873776445057e-005 -0.5937570061634089 0.804644400976012 -7.489873776445057e-005 -0.5937570061634089 0.804644400976012 -7.489873776445057e-005 -0.5937570061634089 0.804644400976012 -7.489873776445057e-005 -0.5937570061634089 0.804644400976012 -7.489873776445057e-005 4.92985485199134e-005 0.0001294584573469495 0.9999999904050805 4.92985485199134e-005 0.0001294584573469495 0.9999999904050805 4.92985485199134e-005 0.0001294584573469495 0.9999999904050805 4.92985485199134e-005 0.0001294584573469495 0.9999999904050805 4.92985485199134e-005 0.0001294584573469495 0.9999999904050805 4.92985485199134e-005 0.0001294584573469495 0.9999999904050805 4.92985485199134e-005 0.0001294584573469495 0.9999999904050805 -4.92985485199134e-005 -0.0001294584573469495 -0.9999999904050805 -4.92985485199134e-005 -0.0001294584573469495 -0.9999999904050805 -4.92985485199134e-005 -0.0001294584573469495 -0.9999999904050805 -4.92985485199134e-005 -0.0001294584573469495 -0.9999999904050805 -4.92985485199134e-005 -0.0001294584573469495 -0.9999999904050805 -4.92985485199134e-005 -0.0001294584573469495 -0.9999999904050805 -4.92985485199134e-005 -0.0001294584573469495 -0.9999999904050805 0.5937570060832321 -0.8046444010351557 7.489894739533251e-005 0.5937570060832321 -0.8046444010351557 7.489894739533251e-005 0.5937570060832321 -0.8046444010351557 7.489894739533251e-005 0.5937570060832321 -0.8046444010351557 7.489894739533251e-005 -0.5937570060832321 0.8046444010351557 -7.489894739533251e-005 -0.5937570060832321 0.8046444010351557 -7.489894739533251e-005 -0.5937570060832321 0.8046444010351557 -7.489894739533251e-005 -0.5937570060832321 0.8046444010351557 -7.489894739533251e-005 0.5937603927683095 -0.804641901158347 8.294518704817902e-005 0.5937603927683095 -0.804641901158347 8.294518704817902e-005 0.5937603927683095 -0.804641901158347 8.294518704817902e-005 0.5937603927683095 -0.804641901158347 8.294518704817902e-005 0.5937603927683095 -0.804641901158347 8.294518704817902e-005 0.5937603927683095 -0.804641901158347 8.294518704817902e-005 -0.5937603927683095 0.804641901158347 -8.294518704817902e-005 -0.5937603927683095 0.804641901158347 -8.294518704817902e-005 -0.5937603927683095 0.804641901158347 -8.294518704817902e-005 -0.5937603927683095 0.804641901158347 -8.294518704817902e-005 -0.5937603927683095 0.804641901158347 -8.294518704817902e-005 -0.5937603927683095 0.804641901158347 -8.294518704817902e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID3244\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3242\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3240\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3241\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3242\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 7 6 8 9 8 6 10 11 12 11 10 13 11 13 14 11 14 15 11 15 16 17 18 19 18 20 19 20 21 19 21 22 19 23 19 22 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 35 32 36 36 32 37 38 39 40 40 39 41 41 39 42 43 42 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3245\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3246\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3249\">879.9808295903922 -1173.896219539116 234.1365696471315 889.1474836762486 -1167.651955315838 240.0447580571785 889.1471921718862 -1167.652720384629 234.1353093587956 879.9811209098052 -1173.895454499932 240.0460184093146 329.6824609031751 -1579.968446506145 234.2162680740912 879.9811209098052 -1173.895454499932 240.0460184093146 879.9808295903922 -1173.896219539116 234.1365696471315 329.6827522225535 -1579.96768146701 240.1257168362748</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3249\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3247\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3250\">-0.5629493885756299 0.8264913669382541 -7.923926225654781e-005 -0.5629493885756299 0.8264913669382541 -7.923926225654781e-005 -0.5629493885756299 0.8264913669382541 -7.923926225654781e-005 -0.5629493885756299 0.8264913669382541 -7.923926225654781e-005 -0.5937572860663709 0.8046441944320801 -7.489890948222498e-005 -0.5937572860663709 0.8046441944320801 -7.489890948222498e-005 -0.5937572860663709 0.8046441944320801 -7.489890948222498e-005 -0.5937572860663709 0.8046441944320801 -7.489890948222498e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3250\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3248\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3246\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3247\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3248\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3251\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3252\">\r\n\t\t\t\t\t<float_array count=\"462\" id=\"ID3255\">-3093.263824124985 2242.372483661022 233.8901684910656 -3093.386655590929 2242.431911770839 239.7996155566347 -3093.386946892335 2242.431146728125 233.8901668043482 -3093.263534431559 2242.373249469737 239.7996170549967 -3093.263534431559 2242.373249469737 239.7996170549967 -3093.263824124985 2242.372483661022 233.8901684910656 -3093.386655590929 2242.431911770839 239.7996155566347 -3093.386946892335 2242.431146728125 233.8901668043482 -3093.334526830769 2241.986093098336 233.8902218452347 -3093.263824124985 2242.372483661022 233.8901684910656 -3093.386946892335 2242.431146728125 233.8901668043482 -3091.152463509762 2223.758741569227 233.8924741158824 -3093.210408735302 2241.92695152239 233.8902235366086 -3088.156084797787 2199.76936798405 233.8954321099091 -3088.233165782677 2199.373076232836 233.8954872139145 -3088.194720078169 2199.570734780988 233.8954597297011 -3088.194720078169 2199.570734780988 233.8954597297011 -3088.233165782677 2199.373076232836 233.8954872139145 -3088.156084797787 2199.76936798405 233.8954321099091 -3091.152463509762 2223.758741569227 233.8924741158824 -3093.210408735302 2241.92695152239 233.8902235366086 -3093.263824124985 2242.372483661022 233.8901684910656 -3093.334526830769 2241.986093098336 233.8902218452347 -3093.386946892335 2242.431146728125 233.8901668043482 -3082.874665362454 2237.422465632597 233.8902970899281 -3093.263534431559 2242.373249469737 239.7996170549967 -3093.263824124985 2242.372483661022 233.8901684910656 -3082.874374060901 2237.423230675382 239.7997458422011 -3082.874374060901 2237.423230675382 239.7997458422011 -3082.874665362454 2237.422465632597 233.8902970899281 -3093.263534431559 2242.373249469737 239.7996170549967 -3093.263824124985 2242.372483661022 233.8901684910656 -3094.075379823637 2248.18246833922 239.7989051000036 -3151.540586529252 2728.321115837525 239.7395790002024 -3151.54605424072 2728.317033520471 239.7395798476257 -3151.526461477724 2728.331538665294 239.7395769579888 -3151.525429128662 2728.332253044117 239.739576811214 -3142.43775691481 2735.038158087843 239.7382607148323 -3128.574336279377 2619.21792218662 239.7525714343009 -3126.283311624455 2600.077839593591 239.7549363746077 -3082.874374060901 2237.423230675382 239.7997458422011 -3093.388833037986 2242.443480821383 239.7996141820986 -3093.386655590929 2242.431911770839 239.7996155566347 -3093.263534431559 2242.373249469737 239.7996170549967 -3093.263534431559 2242.373249469737 239.7996170549967 -3093.386655590929 2242.431911770839 239.7996155566347 -3082.874374060901 2237.423230675382 239.7997458422011 -3093.388833037986 2242.443480821383 239.7996141820986 -3094.075379823637 2248.18246833922 239.7989051000036 -3126.283311624455 2600.077839593591 239.7549363746077 -3128.574336279377 2619.21792218662 239.7525714343009 -3142.43775691481 2735.038158087843 239.7382607148323 -3151.525429128662 2728.332253044117 239.739576811214 -3151.526461477724 2728.331538665294 239.7395769579888 -3151.540586529252 2728.321115837525 239.7395790002024 -3151.54605424072 2728.317033520471 239.7395798476257 -3081.18393172169 2140.479147547207 233.9027641199432 -3088.194720078169 2199.570734780988 233.8954597297011 -3088.233165782677 2199.373076232836 233.8954872139145 -3088.156084797787 2199.76936798405 233.8954321099091 -3081.03949327089 2140.410328416208 233.9027659086383 -3081.082996786838 2140.430926430522 233.902765485719 -3081.082996786838 2140.430926430522 233.902765485719 -3081.18393172169 2140.479147547207 233.9027641199432 -3081.03949327089 2140.410328416208 233.9027659086383 -3088.156084797787 2199.76936798405 233.8954321099091 -3088.194720078169 2199.570734780988 233.8954597297011 -3088.233165782677 2199.373076232836 233.8954872139145 -3126.283611377329 2600.077145065838 233.8454875966426 -3082.874374060901 2237.423230675382 239.7997458422011 -3082.874665362454 2237.422465632597 233.8902970899281 -3126.283311624455 2600.077839593591 239.7549363746077 -3126.283311624455 2600.077839593591 239.7549363746077 -3126.283611377329 2600.077145065838 233.8454875966426 -3082.874374060901 2237.423230675382 239.7997458422011 -3082.874665362454 2237.422465632597 233.8902970899281 -3151.525720535696 2728.331487940279 233.8301281954711 -3142.43775691481 2735.038158087843 239.7382607148323 -3142.438048234332 2735.037393048768 233.8288119526553 -3151.545882556939 2728.317416177019 233.8301310613135 -3151.546345560189 2728.316268481209 233.8301310854277 -3151.546345366021 2728.316268990923 233.8340682405473 -3151.540586529252 2728.321115837525 239.7395790002024 -3151.54605424072 2728.317033520471 239.7395798476257 -3151.526461477724 2728.331538665294 239.7395769579888 -3151.525429128662 2728.332253044117 239.739576811214 -3151.525429128662 2728.332253044117 239.739576811214 -3151.526461477724 2728.331538665294 239.7395769579888 -3142.43775691481 2735.038158087843 239.7382607148323 -3151.540586529252 2728.321115837525 239.7395790002024 -3151.54605424072 2728.317033520471 239.7395798476257 -3151.546345366021 2728.316268990923 233.8340682405473 -3151.546345560189 2728.316268481209 233.8301310854277 -3151.545882556939 2728.317416177019 233.8301310613135 -3151.525720535696 2728.331487940279 233.8301281954711 -3142.438048234332 2735.037393048768 233.8288119526553 -3128.574636032556 2619.217227658931 233.8431226543199 -3126.283311624455 2600.077839593591 239.7549363746077 -3126.283611377329 2600.077145065838 233.8454875966426 -3128.574336279377 2619.21792218662 239.7525714343009 -3128.574336279377 2619.21792218662 239.7525714343009 -3128.574636032556 2619.217227658931 233.8431226543199 -3126.283311624455 2600.077839593591 239.7549363746077 -3126.283611377329 2600.077145065838 233.8454875966426 -3142.438048234332 2735.037393048768 233.8288119526553 -3128.574336279377 2619.21792218662 239.7525714343009 -3128.574636032556 2619.217227658931 233.8431226543199 -3142.43775691481 2735.038158087843 239.7382607148323 -3142.43775691481 2735.038158087843 239.7382607148323 -3142.438048234332 2735.037393048768 233.8288119526553 -3128.574336279377 2619.21792218662 239.7525714343009 -3128.574636032556 2619.217227658931 233.8431226543199 -3153.349166829958 2743.381212831043 233.8282697729143 -3156.007878824909 2765.716887211633 233.8255092251251 -3156.011371433948 2765.684746556682 233.8255135579346 -3151.533247542641 2728.394270229222 233.8301204387094 -3151.545882556939 2728.317416177019 233.8301310613135 -3151.525720535696 2728.331487940279 233.8301281954711 -3151.525720535696 2728.331487940279 233.8301281954711 -3151.545882556939 2728.317416177019 233.8301310613135 -3151.533247542641 2728.394270229222 233.8301204387094 -3153.349166829958 2743.381212831043 233.8282697729143 -3156.007878824909 2765.716887211633 233.8255092251251 -3156.011371433948 2765.684746556682 233.8255135579346 -3126.283611377329 2600.077145065838 233.8454875966426 -3126.074389962105 2618.954255116236 233.8430335327204 -3128.574636032556 2619.217227658931 233.8431226543199 -3123.786882341796 2599.814555955482 233.8453985979861 -3118.832792709936 2608.743068747933 233.8439984849862 -3118.832792709936 2608.743068747933 233.8439984849862 -3123.786882341796 2599.814555955482 233.8453985979861 -3126.074389962105 2618.954255116236 233.8430335327204 -3126.283611377329 2600.077145065838 233.8454875966426 -3128.574636032556 2619.217227658931 233.8431226543199 -3156.014910963301 2765.652174118904 233.8255179492702 -3163.847432217563 2831.106105951775 233.8174302894356 -3163.849465164856 2831.104605815055 233.817430583862 -3156.007878824909 2765.716887211633 233.8255092251251 -3156.011371433948 2765.684746556682 233.8255135579346 -3156.011371433948 2765.684746556682 233.8255135579346 -3156.014910963301 2765.652174118904 233.8255179492702 -3156.007878824909 2765.716887211633 233.8255092251251 -3163.847432217563 2831.106105951775 233.8174302894356 -3163.849465164856 2831.104605815055 233.817430583862 -3153.80255973053 2747.168645883387 233.8278017962454 -3156.014910963301 2765.652174118904 233.8255179492702 -3156.015057738498 2765.650823423466 233.8255181316819 -3156.011371433948 2765.684746556682 233.8255135579346 -3153.349166829958 2743.381212831043 233.8282697729143 -3153.349166829958 2743.381212831043 233.8282697729143 -3153.80255973053 2747.168645883387 233.8278017962454 -3156.011371433948 2765.684746556682 233.8255135579346 -3156.014910963301 2765.652174118904 233.8255179492702 -3156.015057738498 2765.650823423466 233.8255181316819</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"154\" source=\"#ID3255\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3253\">\r\n\t\t\t\t\t<float_array count=\"462\" id=\"ID3256\">-0.4301318699000095 -0.902766057974802 0.0001380759130597908 -0.4301318699000095 -0.902766057974802 0.0001380759130597908 -0.4301318699000095 -0.902766057974802 0.0001380759130597908 -0.4301318699000095 -0.902766057974802 0.0001380759130597908 0.4301318699000095 0.902766057974802 -0.0001380759130597908 0.4301318699000095 0.902766057974802 -0.0001380759130597908 0.4301318699000095 0.902766057974802 -0.0001380759130597908 0.4301318699000095 0.902766057974802 -0.0001380759130597908 4.857090387020912e-005 0.0001293752454132458 0.9999999904514567 4.857090387020912e-005 0.0001293752454132458 0.9999999904514567 4.857090387020912e-005 0.0001293752454132458 0.9999999904514567 4.857090387020912e-005 0.0001293752454132458 0.9999999904514567 4.857090387020912e-005 0.0001293752454132458 0.9999999904514567 4.857090387020912e-005 0.0001293752454132458 0.9999999904514567 4.857090387020912e-005 0.0001293752454132458 0.9999999904514567 4.857090387020912e-005 0.0001293752454132458 0.9999999904514567 -4.857090387020912e-005 -0.0001293752454132458 -0.9999999904514567 -4.857090387020912e-005 -0.0001293752454132458 -0.9999999904514567 -4.857090387020912e-005 -0.0001293752454132458 -0.9999999904514567 -4.857090387020912e-005 -0.0001293752454132458 -0.9999999904514567 -4.857090387020912e-005 -0.0001293752454132458 -0.9999999904514567 -4.857090387020912e-005 -0.0001293752454132458 -0.9999999904514567 -4.857090387020912e-005 -0.0001293752454132458 -0.9999999904514567 -4.857090387020912e-005 -0.0001293752454132458 -0.9999999904514567 -0.4301318694947657 -0.902766058167883 0.0001380759224480763 -0.4301318694947657 -0.902766058167883 0.0001380759224480763 -0.4301318694947657 -0.902766058167883 0.0001380759224480763 -0.4301318694947657 -0.902766058167883 0.0001380759224480763 0.4301318694947657 0.902766058167883 -0.0001380759224480763 0.4301318694947657 0.902766058167883 -0.0001380759224480763 0.4301318694947657 0.902766058167883 -0.0001380759224480763 0.4301318694947657 0.902766058167883 -0.0001380759224480763 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 4.9291524186535e-005 0.0001294596739021955 0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 -4.9291524186535e-005 -0.0001294596739021955 -0.9999999904052692 4.919603331213707e-005 0.0001294485159563898 0.9999999904114161 4.919603331213707e-005 0.0001294485159563898 0.9999999904114161 4.919603331213707e-005 0.0001294485159563898 0.9999999904114161 4.919603331213707e-005 0.0001294485159563898 0.9999999904114161 4.919603331213707e-005 0.0001294485159563898 0.9999999904114161 4.919603331213707e-005 0.0001294485159563898 0.9999999904114161 -4.919603331213707e-005 -0.0001294485159563898 -0.9999999904114161 -4.919603331213707e-005 -0.0001294485159563898 -0.9999999904114161 -4.919603331213707e-005 -0.0001294485159563898 -0.9999999904114161 -4.919603331213707e-005 -0.0001294485159563898 -0.9999999904114161 -4.919603331213707e-005 -0.0001294485159563898 -0.9999999904114161 -4.919603331213707e-005 -0.0001294485159563898 -0.9999999904114161 0.9929122960142949 0.1188493512182376 -6.433214988224451e-005 0.9929122960142949 0.1188493512182376 -6.433214988224451e-005 0.9929122960142949 0.1188493512182376 -6.433214988224451e-005 0.9929122960142949 0.1188493512182376 -6.433214988224451e-005 -0.9929122960142949 -0.1188493512182376 6.433214988224451e-005 -0.9929122960142949 -0.1188493512182376 6.433214988224451e-005 -0.9929122960142949 -0.1188493512182376 6.433214988224451e-005 -0.9929122960142949 -0.1188493512182376 6.433214988224451e-005 -0.5937505395180568 0.8046491743224118 -5.553627445244645e-005 -0.5937505395180568 0.8046491743224118 -5.553627445244645e-005 -0.5937505395180568 0.8046491743224118 -5.553627445244645e-005 -0.5937505395180568 0.8046491743224118 -5.553627445244645e-005 -0.5937505395180568 0.8046491743224118 -5.553627445244645e-005 -0.5937505395180568 0.8046491743224118 -5.553627445244645e-005 -0.5937505395180568 0.8046491743224118 -5.553627445244645e-005 -0.5937505395180568 0.8046491743224118 -5.553627445244645e-005 -0.5937505395180568 0.8046491743224118 -5.553627445244645e-005 -0.5937505395180568 0.8046491743224118 -5.553627445244645e-005 0.5937505395180568 -0.8046491743224118 5.553627445244645e-005 0.5937505395180568 -0.8046491743224118 5.553627445244645e-005 0.5937505395180568 -0.8046491743224118 5.553627445244645e-005 0.5937505395180568 -0.8046491743224118 5.553627445244645e-005 0.5937505395180568 -0.8046491743224118 5.553627445244645e-005 0.5937505395180568 -0.8046491743224118 5.553627445244645e-005 0.5937505395180568 -0.8046491743224118 5.553627445244645e-005 0.5937505395180568 -0.8046491743224118 5.553627445244645e-005 0.5937505395180568 -0.8046491743224118 5.553627445244645e-005 0.5937505395180568 -0.8046491743224118 5.553627445244645e-005 0.9929122960148703 0.1188493512129639 -6.433301084223317e-005 0.9929122960148703 0.1188493512129639 -6.433301084223317e-005 0.9929122960148703 0.1188493512129639 -6.433301084223317e-005 0.9929122960148703 0.1188493512129639 -6.433301084223317e-005 -0.9929122960148703 -0.1188493512129639 6.433301084223317e-005 -0.9929122960148703 -0.1188493512129639 6.433301084223317e-005 -0.9929122960148703 -0.1188493512129639 6.433301084223317e-005 -0.9929122960148703 -0.1188493512129639 6.433301084223317e-005 0.9929122960126857 0.1188493512309105 -6.433357104850014e-005 0.9929122960126857 0.1188493512309105 -6.433357104850014e-005 0.9929122960126857 0.1188493512309105 -6.433357104850014e-005 0.9929122960126857 0.1188493512309105 -6.433357104850014e-005 -0.9929122960126857 -0.1188493512309105 6.433357104850014e-005 -0.9929122960126857 -0.1188493512309105 6.433357104850014e-005 -0.9929122960126857 -0.1188493512309105 6.433357104850014e-005 -0.9929122960126857 -0.1188493512309105 6.433357104850014e-005 5.122596650746891e-005 0.0001296918908434959 0.9999999902779568 5.122596650746891e-005 0.0001296918908434959 0.9999999902779568 5.122596650746891e-005 0.0001296918908434959 0.9999999902779568 5.122596650746891e-005 0.0001296918908434959 0.9999999902779568 5.122596650746891e-005 0.0001296918908434959 0.9999999902779568 5.122596650746891e-005 0.0001296918908434959 0.9999999902779568 -5.122596650746891e-005 -0.0001296918908434959 -0.9999999902779568 -5.122596650746891e-005 -0.0001296918908434959 -0.9999999902779568 -5.122596650746891e-005 -0.0001296918908434959 -0.9999999902779568 -5.122596650746891e-005 -0.0001296918908434959 -0.9999999902779568 -5.122596650746891e-005 -0.0001296918908434959 -0.9999999902779568 -5.122596650746891e-005 -0.0001296918908434959 -0.9999999902779568 4.92875085060413e-005 0.000129459254266163 0.9999999904055216 4.92875085060413e-005 0.000129459254266163 0.9999999904055216 4.92875085060413e-005 0.000129459254266163 0.9999999904055216 4.92875085060413e-005 0.000129459254266163 0.9999999904055216 4.92875085060413e-005 0.000129459254266163 0.9999999904055216 -4.92875085060413e-005 -0.000129459254266163 -0.9999999904055216 -4.92875085060413e-005 -0.000129459254266163 -0.9999999904055216 -4.92875085060413e-005 -0.000129459254266163 -0.9999999904055216 -4.92875085060413e-005 -0.000129459254266163 -0.9999999904055216 -4.92875085060413e-005 -0.000129459254266163 -0.9999999904055216 4.927120667271851e-005 0.0001294586469885185 0.9999999904064035 4.927120667271851e-005 0.0001294586469885185 0.9999999904064035 4.927120667271851e-005 0.0001294586469885185 0.9999999904064035 4.927120667271851e-005 0.0001294586469885185 0.9999999904064035 4.927120667271851e-005 0.0001294586469885185 0.9999999904064035 -4.927120667271851e-005 -0.0001294586469885185 -0.9999999904064035 -4.927120667271851e-005 -0.0001294586469885185 -0.9999999904064035 -4.927120667271851e-005 -0.0001294586469885185 -0.9999999904064035 -4.927120667271851e-005 -0.0001294586469885185 -0.9999999904064035 -4.927120667271851e-005 -0.0001294586469885185 -0.9999999904064035 4.931288467341733e-005 0.0001294636071416216 0.999999990403707 4.931288467341733e-005 0.0001294636071416216 0.999999990403707 4.931288467341733e-005 0.0001294636071416216 0.999999990403707 4.931288467341733e-005 0.0001294636071416216 0.999999990403707 4.931288467341733e-005 0.0001294636071416216 0.999999990403707 -4.931288467341733e-005 -0.0001294636071416216 -0.999999990403707 -4.931288467341733e-005 -0.0001294636071416216 -0.999999990403707 -4.931288467341733e-005 -0.0001294636071416216 -0.999999990403707 -4.931288467341733e-005 -0.0001294636071416216 -0.999999990403707 -4.931288467341733e-005 -0.0001294636071416216 -0.999999990403707</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"154\" source=\"#ID3256\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3254\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3252\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3253\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"102\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3254\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 9 11 12 12 11 13 13 11 14 13 14 15 16 17 18 17 19 18 18 19 20 20 19 21 19 22 21 23 21 22 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 35 32 36 36 32 37 37 32 38 38 32 39 39 32 40 40 32 41 40 41 42 40 42 43 44 45 46 45 47 46 47 48 46 46 48 49 49 48 50 50 48 51 51 48 52 52 48 53 53 48 54 55 54 48 56 57 58 57 56 59 59 56 60 60 56 61 62 63 64 64 63 65 65 63 66 67 66 63 68 69 70 69 68 71 72 73 74 75 74 73 76 77 78 77 76 79 77 79 80 77 80 81 77 81 82 82 81 83 77 82 84 77 84 85 86 87 88 87 89 88 90 91 89 89 91 88 91 92 88 92 93 88 93 94 88 95 88 94 96 97 98 97 96 99 100 101 102 103 102 101 104 105 106 105 104 107 108 109 110 111 110 109 112 113 114 113 112 115 115 112 116 115 116 117 118 119 120 119 121 120 120 121 122 123 122 121 124 125 126 125 124 127 125 127 128 129 130 131 130 132 131 133 131 132 134 135 136 135 134 137 137 134 138 139 140 141 141 140 142 143 142 140 144 145 146 145 144 147 147 144 148 149 150 151 151 150 152 153 152 150</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3257\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3258\">\r\n\t\t\t\t\t<float_array count=\"804\" id=\"ID3261\">1683.887591697867 1846.461755625547 239.6152600791997 1627.339208022582 2347.112151340493 233.6437816690846 1683.887288234226 1846.460962704509 233.7058390250663 1575.630594334455 2804.92039136921 239.4966260349836 1575.630303014919 2804.91962633015 233.587177272781 1575.630303014919 2804.91962633015 233.587177272781 1575.630594334455 2804.92039136921 239.4966260349836 1627.339208022582 2347.112151340493 233.6437816690846 1683.887591697867 1846.461755625547 239.6152600791997 1683.887288234226 1846.460962704509 233.7058390250663 -129.9339371087403 57.1188423339986 234.0269880415471 1254.071072997774 1315.696858838299 233.7957877914714 -135.4562953378363 290.3474446049063 233.9969945626234 1818.671309656554 1495.018999476501 233.7447761815862 1474.553602449505 1997.697156624599 233.6966609094041 1683.887288234226 1846.460962704509 233.7058390250663 1627.339208022582 2347.112151340493 233.6437816690846 1575.630303014919 2804.91962633015 233.587177272781 1693.667626246368 1847.565655498381 233.7054560304685 1776.707547090067 1866.54728108683 233.6987605193294 1692.59670749697 1857.04705145997 233.7042492800303 774.5445484497986 2945.609033075344 233.6084526051521 699.0084393653187 3205.517629190448 233.578530311374 1398.280188541635 2672.986850804637 233.6129976032267 649.6826225243963 2262.369342834061 233.7030619917667 653.1197598559729 2277.13778264279 233.7009626247839 643.99018809366 2270.396041207282 233.7022480112945 780.9097231883484 2077.330697286954 233.7205107008093 653.1210233465895 2277.138714991485 233.7009944496312 854.2834823322673 2268.532302664369 233.6921764193913 782.1333978910307 2075.60523731182 233.7206631877484 782.2904197039352 2075.381360325601 233.7207323094482 791.4319444250164 2082.12700562482 233.7193647621338 1194.428492963533 1906.131038734232 233.7223089902717 -3082.874665362454 2237.422465632597 233.8902970899281 -3123.786882341796 2599.814555955482 233.8453985979861 -3126.283611377329 2600.077145065838 233.8454875966426 -3118.832792709936 2608.743068747933 233.8439984849862 -3093.210408735302 2241.92695152239 233.8902235366086 -3093.263824124985 2242.372483661022 233.8901684910656 -3088.156084797787 2199.76936798405 233.8954321099091 -3081.03949327089 2140.410328416208 233.9027659086383 -2163.724369374338 443.2674577711277 234.0772572176098 -2154.203308238642 450.1265412942789 234.0759000121272 -2163.724510804562 443.2703704497958 234.0772569831182 -2163.418701559383 436.9723949182044 234.0777640291274 -2146.426856084488 87.03457287397123 234.1225226578171 -1329.865065400648 689.6828370931735 234.0042492957345 -1414.158919881181 1908.670352350441 233.8505224054641 -1453.496497086036 1724.089246246259 233.8764293182051 -1262.651216875703 731.8046701625822 233.995348406481 -326.6927256561562 299.3003350530375 234.0053345460899 -215.1535065979892 255.8950718830379 234.0054552112832 -167.4506256640402 -142.4639362175235 234.0546753068074 -159.4875285994403 -208.9624659912211 234.0628916742522 -106.4247667953955 -139.5790048971294 234.0512936712688 472.3600854720526 -454.8447681599373 234.0635752279455 798.4474727859188 -491.707028546668 234.0522725832743 718.152884491135 -550.4945703171902 234.0638411751772 718.2654560505575 -550.5383773259455 234.0638412565308 729.3482058011546 -643.2661513147637 234.0752994821191 788.5703150932395 -1138.76902642926 234.1365279952347 233.9822629149621 -1542.726996295145 234.2161650629728 -111.5453426325876 -1406.00469869361 234.2154978407375 -111.8650337545532 -1408.141549278514 234.216692090385 -111.1909485967485 -1318.355628157684 234.2041333028014 318.559529472629 -1485.595893330337 234.2045986790801 320.3552494897517 -1586.771188067578 234.2176083511206 224.7248181884775 -1549.556845554688 234.2175049025476 320.426152473975 -1586.798795639488 234.2176084298723 329.6824609031751 -1579.968446506145 234.2162680740912 879.9808295903922 -1173.896219539116 234.1365696471315 810.3822002445686 -591.564860323766 234.0646124055213 808.8626964812229 -495.9122176431715 234.0523000699716 868.0250626229126 -1073.862378343227 234.1242086837957 877.1926483060493 -1067.629036633433 234.1229493311681 877.2491935267672 -1068.10215040768 234.1230077951657 889.1471921718862 -1167.652720384629 234.1353093587956 813.7541881254861 -536.8395670556324 234.0573609262426 820.1693977259338 -590.5159409462799 234.0639940932477 820.7605473215403 -595.4621185767746 234.0646054932483 -3156.007878824909 2765.716887211633 233.8255092251251 -3154.741167839027 2837.825730382735 233.816111451088 -3163.847432217563 2831.106105951775 233.8174302894356 -3151.533247542641 2728.394270229222 233.8301204387094 -2604.629378173998 3243.75998264997 233.7364400842261 -3151.525720535696 2728.331487940279 233.8301281954711 -3142.438048234332 2735.037393048768 233.8288119526553 -3128.574636032556 2619.217227658931 233.8431226543199 -3126.074389962105 2618.954255116236 233.8430335327204 -3070.671650243236 2135.470466882574 233.9028943026803 -2903.920969062016 742.3258157330583 234.0750308367679 -2595.258522312617 3250.674852381998 233.735083057256 -2508.928040830896 3206.51798828552 233.73654370116 -1945.080167471481 2987.097655283252 233.7371537223082 -1824.049100352064 -14.25788538581628 234.1197436815583 -1833.142961448773 2050.1473911808 233.8529334437346 -1643.847145548787 1976.482031746753 233.8531384254203 -1805.28766266255 73.75812483459276 234.1074242889526 -1453.499233208641 1724.112138990594 233.8764264893876 368.0847405329528 3460.629639362041 233.5618174952046 31.25093391015798 2974.127268093252 233.6414235747903 602.9211404172588 2712.885844978241 233.6470890616881 703.0993513310923 3214.469702513432 233.5771685822835 747.2332699622948 3287.366628190102 233.5655572194358 716.4311355881946 3219.962836517941 233.5758067596549 712.0514254873274 3210.378790614851 233.5772572364008 -2499.557144068623 3213.432887749624 233.7351864610965 -2508.928040830896 3206.51798828552 233.73654370116 -2595.258522312617 3250.674852381998 233.735083057256 -2499.557144068623 3213.432887749624 233.7351864610965 712.0514254873274 3210.378790614851 233.5772572364008 703.0993513310923 3214.469702513432 233.5771685822835 716.4311355881946 3219.962836517941 233.5758067596549 747.2332699622948 3287.366628190102 233.5655572194358 653.1210233465895 2277.138714991485 233.7009944496312 602.9211404172588 2712.885844978241 233.6470890616881 699.0084393653187 3205.517629190448 233.578530311374 368.0847405329528 3460.629639362041 233.5618174952046 31.25093391015798 2974.127268093252 233.6414235747903 -1414.158919881181 1908.670352350441 233.8505224054641 -1643.847145548787 1976.482031746753 233.8531384254203 -1453.499233208641 1724.112138990594 233.8764264893876 -1805.28766266255 73.75812483459276 234.1074242889526 -1824.049100352064 -14.25788538581628 234.1197436815583 -1833.142961448773 2050.1473911808 233.8529334437346 -1945.080167471481 2987.097655283252 233.7371537223082 -2146.426856084488 87.03457287397123 234.1225226578171 -2154.203308238642 450.1265412942789 234.0759000121272 -2604.629378173998 3243.75998264997 233.7364400842261 -2903.920969062016 742.3258157330583 234.0750308367679 -3070.671650243236 2135.470466882574 233.9028943026803 -3081.03949327089 2140.410328416208 233.9027659086383 -3082.874665362454 2237.422465632597 233.8902970899281 -3118.832792709936 2608.743068747933 233.8439984849862 -3126.074389962105 2618.954255116236 233.8430335327204 -3128.574636032556 2619.217227658931 233.8431226543199 -3142.438048234332 2735.037393048768 233.8288119526553 -3151.525720535696 2728.331487940279 233.8301281954711 -3151.533247542641 2728.394270229222 233.8301204387094 -3154.741167839027 2837.825730382735 233.816111451088 -3156.007878824909 2765.716887211633 233.8255092251251 -3163.847432217563 2831.106105951775 233.8174302894356 820.7605473215403 -595.4621185767746 234.0646054932483 810.3822002445686 -591.564860323766 234.0646124055213 820.1693977259338 -590.5159409462799 234.0639940932477 813.7541881254861 -536.8395670556324 234.0573609262426 808.8626964812229 -495.9122176431715 234.0523000699716 889.1471921718862 -1167.652720384629 234.1353093587956 879.9808295903922 -1173.896219539116 234.1365696471315 877.2491935267672 -1068.10215040768 234.1230077951657 877.1926483060493 -1067.629036633433 234.1229493311681 868.0250626229126 -1073.862378343227 234.1242086837957 798.4474727859188 -491.707028546668 234.0522725832743 788.5703150932395 -1138.76902642926 234.1365279952347 329.6824609031751 -1579.968446506145 234.2162680740912 320.426152473975 -1586.798795639488 234.2176084298723 320.3552494897517 -1586.771188067578 234.2176083511206 318.559529472629 -1485.595893330337 234.2045986790801 233.9822629149621 -1542.726996295145 234.2161650629728 224.7248181884775 -1549.556845554688 234.2175049025476 -111.1909485967485 -1318.355628157684 234.2041333028014 -111.5453426325876 -1406.00469869361 234.2154978407375 -111.8650337545532 -1408.141549278514 234.216692090385 729.3482058011546 -643.2661513147637 234.0752994821191 718.2654560505575 -550.5383773259455 234.0638412565308 718.152884491135 -550.4945703171902 234.0638411751772 472.3600854720526 -454.8447681599373 234.0635752279455 -106.4247667953955 -139.5790048971294 234.0512936712688 -159.4875285994403 -208.9624659912211 234.0628916742522 -129.9339371087403 57.1188423339986 234.0269880415471 -135.4562953378363 290.3474446049063 233.9969945626234 -167.4506256640402 -142.4639362175235 234.0546753068074 -215.1535065979892 255.8950718830379 234.0054552112832 -326.6927256561562 299.3003350530375 234.0053345460899 -1262.651216875703 731.8046701625822 233.995348406481 -1329.865065400648 689.6828370931735 234.0042492957345 -1453.496497086036 1724.089246246259 233.8764293182051 -2163.418701559383 436.9723949182044 234.0777640291274 -2163.724369374338 443.2674577711277 234.0772572176098 -2163.724510804562 443.2703704497958 234.0772569831182 -3088.156084797787 2199.76936798405 233.8954321099091 -3093.210408735302 2241.92695152239 233.8902235366086 -3093.263824124985 2242.372483661022 233.8901684910656 -3123.786882341796 2599.814555955482 233.8453985979861 -3126.283611377329 2600.077145065838 233.8454875966426 1254.071072997774 1315.696858838299 233.7957877914714 1194.428492963533 1906.131038734232 233.7223089902717 1474.553602449505 1997.697156624599 233.6966609094041 854.2834823322673 2268.532302664369 233.6921764193913 791.4319444250164 2082.12700562482 233.7193647621338 782.2904197039352 2075.381360325601 233.7207323094482 782.1333978910307 2075.60523731182 233.7206631877484 780.9097231883484 2077.330697286954 233.7205107008093 774.5445484497986 2945.609033075344 233.6084526051521 653.1197598559729 2277.13778264279 233.7009626247839 649.6826225243963 2262.369342834061 233.7030619917667 643.99018809366 2270.396041207282 233.7022480112945 1398.280188541635 2672.986850804637 233.6129976032267 1575.630303014919 2804.91962633015 233.587177272781 1693.667626246368 1847.565655498381 233.7054560304685 1692.59670749697 1857.04705145997 233.7042492800303 1776.707547090067 1866.54728108683 233.6987605193294 1818.671309656554 1495.018999476501 233.7447761815862 1683.887288234226 1846.460962704509 233.7058390250663 1627.339208022582 2347.112151340493 233.6437816690846 -1414.158919881181 1908.670352350441 233.8505224054641 -1453.499233208641 1724.112138990594 233.8764264893876 -1453.496497086036 1724.089246246259 233.8764293182051 -1453.496497086036 1724.089246246259 233.8764293182051 -1453.499233208641 1724.112138990594 233.8764264893876 -1414.158919881181 1908.670352350441 233.8505224054641 -1795.899860739193 -23.10249587099906 234.1195010281217 -1805.216703846125 73.73583321238311 234.1074236767428 -1823.974738667616 -14.28125019850359 234.1193568621641 -1805.249018896463 73.74598496037561 234.1074153543213 -1453.499233208641 1724.112138990594 233.8764264893876 -1786.881701175176 -15.61910582018845 234.1180876557392 -1694.035981155042 -792.4444463913733 234.2140786778546 -1329.865065400648 689.6828370931735 234.0042492957345 -329.869433082547 -1323.305787995812 234.2167714187533 -1453.496497086036 1724.089246246259 233.8764293182051 -326.6927256561562 299.3003350530375 234.0053345460899 -233.2518220849688 -1360.904240973588 234.2168770683722 -215.1535065979892 255.8950718830379 234.0054552112832 -111.8650337545532 -1408.141549278514 234.216692090385 -167.4506256640402 -142.4639362175235 234.0546753068074 -159.4875285994403 -208.9624659912211 234.0628916742522 -111.1909485967485 -1318.355628157684 234.2041333028014 472.3600854720526 -454.8447681599373 234.0635752279455 -111.5453426325876 -1406.00469869361 234.2154978407375 318.559529472629 -1485.595893330337 234.2045986790801 788.5703150932395 -1138.76902642926 234.1365279952347 718.152884491135 -550.4945703171902 234.0638411751772 718.2654560505575 -550.5383773259455 234.0638412565308 729.3482058011546 -643.2661513147637 234.0752994821191 729.3482058011546 -643.2661513147637 234.0752994821191 788.5703150932395 -1138.76902642926 234.1365279952347 718.2654560505575 -550.5383773259455 234.0638412565308 718.152884491135 -550.4945703171902 234.0638411751772 472.3600854720526 -454.8447681599373 234.0635752279455 318.559529472629 -1485.595893330337 234.2045986790801 -111.1909485967485 -1318.355628157684 234.2041333028014 -111.5453426325876 -1406.00469869361 234.2154978407375 -111.8650337545532 -1408.141549278514 234.216692090385 -159.4875285994403 -208.9624659912211 234.0628916742522 -167.4506256640402 -142.4639362175235 234.0546753068074 -215.1535065979892 255.8950718830379 234.0054552112832 -233.2518220849688 -1360.904240973588 234.2168770683722 -326.6927256561562 299.3003350530375 234.0053345460899 -329.869433082547 -1323.305787995812 234.2167714187533 -1329.865065400648 689.6828370931735 234.0042492957345 -1453.496497086036 1724.089246246259 233.8764293182051 -1453.499233208641 1724.112138990594 233.8764264893876 -1694.035981155042 -792.4444463913733 234.2140786778546 -1786.881701175176 -15.61910582018845 234.1180876557392 -1795.899860739193 -23.10249587099906 234.1195010281217 -1805.216703846125 73.73583321238311 234.1074236767428 -1805.249018896463 73.74598496037561 234.1074153543213 -1823.974738667616 -14.28125019850359 234.1193568621641 -2163.724312681291 443.2662889723893 234.0761774599068 -2163.418701559383 436.9723949182044 234.0777640291274 -2163.724503669347 443.2702222665275 234.0761765978639 -2163.724503669347 443.2702222665275 234.0761765978639 -2163.724312681291 443.2662889723893 234.0761774599068 -2163.418701559383 436.9723949182044 234.0777640291274 -1805.249018896463 73.74598496037561 234.1074153543213 -1805.249018896463 73.74598496037561 234.1074153543213</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"268\" source=\"#ID3261\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3259\">\r\n\t\t\t\t\t<float_array count=\"804\" id=\"ID3262\">-0.9936816469905173 -0.1122353783844663 6.536902099557858e-005 -0.9936816469905173 -0.1122353783844663 6.536902099557858e-005 -0.9936816469905173 -0.1122353783844663 6.536902099557858e-005 -0.9936816469905173 -0.1122353783844663 6.536902099557858e-005 -0.9936816469905173 -0.1122353783844663 6.536902099557858e-005 0.9936816469905173 0.1122353783844663 -6.536902099557858e-005 0.9936816469905173 0.1122353783844663 -6.536902099557858e-005 0.9936816469905173 0.1122353783844663 -6.536902099557858e-005 0.9936816469905173 0.1122353783844663 -6.536902099557858e-005 0.9936816469905173 0.1122353783844663 -6.536902099557858e-005 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 -0.7062397981784254 -0.03420285735929485 0.7071460330210138 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 -0.55494482257731 -0.02684066846135874 0.8314540410697306 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 0.001399305097110689 -0.0001594420609723264 0.9999990082612454 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 0.000647779910798757 1.442258294948422e-006 0.9999997901895316 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 4.928876292044114e-005 0.0001294621532181928 0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -0.000647779910798757 -1.442258294948422e-006 -0.9999997901895316 -0.001399305097110689 0.0001594420609723264 -0.9999990082612454 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 0.7062397981784254 0.03420285735929485 -0.7071460330210138 0.55494482257731 0.02684066846135874 -0.8314540410697306 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 -4.928876292044114e-005 -0.0001294621532181928 -0.9999999904050844 4.928877396553904e-005 0.000129462154512294 0.9999999904050836 5.046559884677907e-005 0.0001296000374561455 0.9999999903285268 4.941198022769926e-005 0.0001294765900008769 0.9999999903971345 -4.941198022769926e-005 -0.0001294765900008769 -0.9999999903971345 -5.046559884677907e-005 -0.0001296000374561455 -0.9999999903285268 -4.928877396553904e-005 -0.000129462154512294 -0.9999999904050836 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 0.0007243220596502144 -1.483584441064109e-005 0.9999997375686915 0.001246198579779388 -0.000126562172312727 0.9999992154852504 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 4.932855027560331e-005 0.0001296705902243773 0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -0.0007243220596502144 1.483584441064109e-005 -0.9999997375686915 -4.932855027560331e-005 -0.0001296705902243773 -0.999999990376116 -0.001246198579779388 0.000126562172312727 -0.9999992154852504 -0.9988232000697768 -0.0484996074080215 5.553052024572702e-005 -0.9988232000697768 -0.0484996074080215 5.553052024572702e-005 -0.9988232000697768 -0.0484996074080215 5.553052024572702e-005 0.9988232000697768 0.0484996074080215 -5.553052024572702e-005 0.9988232000697768 0.0484996074080215 -5.553052024572702e-005 0.9988232000697768 0.0484996074080215 -5.553052024572702e-005 0.00259622354694595 -0.0004155834695923981 0.9999965434508633 -0.00259622354694595 0.0004155834695923981 -0.9999965434508633</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"268\" source=\"#ID3262\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3260\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3258\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3259\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"264\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3260\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 6 7 6 8 7 9 7 8 10 11 12 11 10 13 11 13 14 14 13 15 14 15 16 14 16 17 15 13 18 18 13 19 19 20 18 21 17 22 17 21 23 17 23 14 24 25 26 25 24 27 25 27 28 28 27 22 22 27 21 21 27 29 29 27 30 29 30 31 29 31 32 29 32 33 29 33 14 14 33 11 34 35 36 35 34 37 38 34 39 34 38 40 34 40 41 42 43 44 43 42 45 43 45 46 47 48 49 48 47 50 50 47 51 50 51 12 12 51 52 12 52 53 12 53 54 12 54 10 10 54 55 55 54 56 55 56 57 57 56 58 57 58 59 57 59 60 57 60 61 62 63 64 63 62 65 65 62 66 67 62 68 62 67 66 66 67 61 61 67 69 61 69 70 61 70 71 61 71 72 61 72 57 57 72 73 72 71 74 74 71 75 75 71 76 76 71 77 72 78 73 78 72 79 79 72 80 81 82 83 82 81 84 82 84 85 85 84 86 85 86 87 85 87 88 85 88 89 85 89 37 85 37 34 85 34 41 85 41 90 85 90 91 85 91 43 85 43 92 92 43 93 93 43 94 94 43 46 94 46 95 94 95 96 96 95 97 97 95 98 97 98 99 97 99 48 97 48 100 100 48 101 100 101 102 100 102 22 100 22 103 100 103 104 22 102 28 104 103 105 105 103 106 107 92 93 108 109 110 111 112 113 113 112 114 115 116 117 114 112 118 112 117 118 117 116 118 116 119 118 119 120 118 118 120 121 120 122 121 122 123 121 123 124 121 121 124 125 125 124 126 124 127 126 127 128 126 126 128 108 108 128 109 109 128 129 128 130 129 130 131 129 131 132 129 132 133 129 133 134 129 134 135 129 135 136 129 136 137 129 137 138 129 138 139 129 129 139 140 139 141 140 142 140 141 143 144 145 145 144 146 147 146 144 148 149 150 150 149 151 151 149 152 152 149 144 147 144 153 153 144 154 144 149 154 149 155 154 155 156 154 156 157 154 154 157 158 158 157 159 160 159 157 158 159 161 161 159 162 163 162 159 154 164 153 164 165 153 165 166 153 166 167 153 153 167 168 167 169 168 168 169 170 170 169 171 169 172 171 172 173 171 173 174 171 171 174 175 174 176 175 175 176 120 177 120 176 127 178 128 178 179 128 180 128 179 132 181 133 181 182 133 183 133 182 134 133 184 185 184 133 186 187 188 188 187 189 187 190 189 190 191 189 191 192 189 192 193 189 189 193 194 194 193 117 117 193 115 115 193 195 193 196 195 197 195 196 188 198 199 198 194 199 117 199 194 200 201 202 202 203 200 200 203 204 199 205 188 205 204 188 204 203 188 188 203 186 203 170 186 171 186 170 206 207 208 209 210 211 212 213 214 215 216 98 216 215 213 216 213 212 216 212 217 216 217 218 216 218 219 219 218 220 216 219 221 219 220 222 222 220 223 222 223 224 224 223 225 224 225 226 226 225 227 227 225 228 227 228 229 228 225 230 229 228 231 229 231 232 229 232 233 233 232 234 234 232 235 236 237 238 238 237 239 239 237 240 237 241 240 241 242 240 243 244 242 240 242 245 242 244 245 245 244 246 246 244 247 244 248 247 247 248 249 248 250 249 249 250 251 252 251 253 250 254 251 251 254 253 254 255 253 255 256 253 256 257 253 257 258 253 123 253 258 259 257 256 42 260 261 260 42 262 262 42 44 180 179 263 263 179 264 265 264 179 214 98 95 98 214 213 98 213 266 267 257 123 257 259 123 124 123 259</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3263\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3264\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3267\">699.0087307570984 3205.518394131434 239.4879789750714 703.0993513310923 3214.469702513432 233.5771685822835 699.0084393653187 3205.517629190448 233.578530311374 703.0996428732942 3214.47046819039 239.4866184645573 703.0996428732942 3214.47046819039 239.4866184645573 699.0087307570984 3205.518394131434 239.4879789750714 703.0993513310923 3214.469702513432 233.5771685822835 699.0084393653187 3205.517629190448 233.578530311374</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3267\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3265\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3268\">-0.9095307299890223 0.4156366816406156 -8.967380821776683e-006 -0.9095307299890223 0.4156366816406156 -8.967380821776683e-006 -0.9095307299890223 0.4156366816406156 -8.967380821776683e-006 -0.9095307299890223 0.4156366816406156 -8.967380821776683e-006 0.9095307299890223 -0.4156366816406156 8.967380821776683e-006 0.9095307299890223 -0.4156366816406156 8.967380821776683e-006 0.9095307299890223 -0.4156366816406156 8.967380821776683e-006 0.9095307299890223 -0.4156366816406156 8.967380821776683e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3268\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3266\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3264\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3265\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3266\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3269\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3270\">\r\n\t\t\t\t\t<float_array count=\"402\" id=\"ID3273\">-135.4560042885391 290.3482090043035 239.902506317012 -127.9789478182584 299.7799324467915 239.9009272590012 -130.0928802931617 302.6235770082553 239.9006633112667 1254.071364047147 1315.697623237796 239.7012995458505 -125.1352570171775 301.893892062847 239.900513453161 1190.374421944544 1280.926998758932 239.708932669801 1243.717228319946 1320.266529253854 239.7012101088942 1185.214609103199 1899.415620043977 239.629139845758 791.432235474334 2082.12777002434 239.6248765165158 782.2930013895393 2075.378858905291 239.6261982490994 1194.428784013013 1906.131803133686 239.6278207446749 -1262.650925826442 731.8054345618493 239.900860160842 -1268.324579450258 852.9611082231641 239.885544326714 -1278.086513053665 851.7043739235151 239.8861467825114 -1253.633369646346 738.8442211212769 239.8995936965731 -148.3986798968972 298.8133560246843 239.9020587062388 -145.1039258801238 297.5095363685214 239.9020651220891 -143.8001213020216 300.8042470298055 239.9015743495106 -136.9271088659189 301.4947989070993 239.9011625676933 -127.2491994935499 304.7375348384339 239.9002495061457 -147.0948735384914 302.1080668298323 239.9015679335534 -143.8001213020216 300.8042470298055 239.9015743495106 -147.0948735384914 302.1080668298323 239.9015679335534 -136.9271088659189 301.4947989070993 239.9011625676933 -148.3986798968972 298.8133560246843 239.9020587062388 -1253.633369646346 738.8442211212769 239.8995936965731 -125.1352570171775 301.893892062847 239.900513453161 -127.2491994935499 304.7375348384339 239.9002495061457 1190.374421944544 1280.926998758932 239.708932669801 -130.0928802931617 302.6235770082553 239.9006633112667 -135.4560042885391 290.3482090043035 239.902506317012 -145.1039258801238 297.5095363685214 239.9020651220891 -1262.650925826442 731.8054345618493 239.900860160842 -1268.324579450258 852.9611082231641 239.885544326714 -1278.086513053665 851.7043739235151 239.8861467825114 1254.071364047147 1315.697623237796 239.7012995458505 1243.717228319946 1320.266529253854 239.7012101088942 1194.428784013013 1906.131803133686 239.6278207446749 1185.214609103199 1899.415620043977 239.629139845758 791.432235474334 2082.12777002434 239.6248765165158 782.2930013895393 2075.378858905291 239.6261982490994 -127.9789478182584 299.7799324467915 239.9009272590012 791.432235474334 2082.12777002434 239.6248765165158 1194.428492963533 1906.131038734232 233.7223089902717 791.4319444250164 2082.12700562482 233.7193647621338 1194.428784013013 1906.131803133686 239.6278207446749 1194.428784013013 1906.131803133686 239.6278207446749 791.432235474334 2082.12777002434 239.6248765165158 1194.428492963533 1906.131038734232 233.7223089902717 791.4319444250164 2082.12700562482 233.7193647621338 -1414.158628831793 1908.671116749841 239.7560341598295 -1409.372588624938 1896.065403511032 239.7574436506959 -1409.812591446159 1899.581330870757 239.7570101992878 -1278.086513053665 851.7043739235151 239.8861467825114 -1405.856706225441 1896.505398812427 239.7572134594912 -1403.657428137515 1904.185862409705 239.7561239951791 -1404.001222340502 1912.101304263253 239.7551031708687 -1268.324579450258 852.9611082231641 239.885544326714 -1401.908904300819 1909.241718609605 239.7553702470329 -1399.049283625639 1911.334063655414 239.7549584970797 32.43000431680366 2962.767818758642 239.548284468149 31.25122495938058 2974.128032492727 239.54693532916 602.9214314666392 2712.8866093778 239.5526008160606 593.7791968423844 2706.242884884394 239.5538213081701 643.9899571128276 2270.401337270119 239.6077702764678 653.1213143960458 2277.139479390805 239.606506203997 -1406.296708227241 1900.021324923436 239.756780008197 -1401.141600979938 1914.193650615965 239.7546914207208 -1399.049283625639 1911.334063655414 239.7549584970797 -1401.141600979938 1914.193650615965 239.7546914207208 31.25122495938058 2974.128032492727 239.54693532916 -1404.001222340502 1912.101304263253 239.7551031708687 -1405.856706225441 1896.505398812427 239.7572134594912 -1406.296708227241 1900.021324923436 239.756780008197 -1409.812591446159 1899.581330870757 239.7570101992878 -1414.158628831793 1908.671116749841 239.7560341598295 653.1213143960458 2277.139479390805 239.606506203997 643.9899571128276 2270.401337270119 239.6077702764678 602.9214314666392 2712.8866093778 239.5526008160606 593.7791968423844 2706.242884884394 239.5538213081701 32.43000431680366 2962.767818758642 239.548284468149 -1403.657428137515 1904.185862409705 239.7561239951791 -1401.908904300819 1909.241718609605 239.7553702470329 -1268.324579450258 852.9611082231641 239.885544326714 -1278.086513053665 851.7043739235151 239.8861467825114 -1409.372588624938 1896.065403511032 239.7574436506959 -1262.650925826442 731.8054345618493 239.900860160842 -1414.158919881181 1908.670352350441 233.8505224054641 -1262.651216875703 731.8046701625822 233.995348406481 -1278.086513053665 851.7043739235151 239.8861467825114 -1414.158628831793 1908.671116749841 239.7560341598295 -1414.158628831793 1908.671116749841 239.7560341598295 -1278.086513053665 851.7043739235151 239.8861467825114 -1414.158919881181 1908.670352350441 233.8505224054641 -1262.650925826442 731.8054345618493 239.900860160842 -1262.651216875703 731.8046701625822 233.995348406481 -135.4562953378363 290.3474446049063 233.9969945626234 -1262.650925826442 731.8054345618493 239.900860160842 -1262.651216875703 731.8046701625822 233.995348406481 -135.4560042885391 290.3482090043035 239.902506317012 -135.4560042885391 290.3482090043035 239.902506317012 -135.4562953378363 290.3474446049063 233.9969945626234 -1262.650925826442 731.8054345618493 239.900860160842 -1262.651216875703 731.8046701625822 233.995348406481 1254.071364047147 1315.697623237796 239.7012995458505 -135.4562953378363 290.3474446049063 233.9969945626234 1254.071072997774 1315.696858838299 233.7957877914714 -135.4560042885391 290.3482090043035 239.902506317012 -135.4560042885391 290.3482090043035 239.902506317012 1254.071364047147 1315.697623237796 239.7012995458505 -135.4562953378363 290.3474446049063 233.9969945626234 1254.071072997774 1315.696858838299 233.7957877914714 1194.428492963533 1906.131038734232 233.7223089902717 1254.071364047147 1315.697623237796 239.7012995458505 1254.071072997774 1315.696858838299 233.7957877914714 1194.428784013013 1906.131803133686 239.6278207446749 1194.428784013013 1906.131803133686 239.6278207446749 1194.428492963533 1906.131038734232 233.7223089902717 1254.071364047147 1315.697623237796 239.7012995458505 1254.071072997774 1315.696858838299 233.7957877914714 653.1213143960458 2277.139479390805 239.606506203997 643.9899571128276 2270.401337270119 239.6077702764678 643.9904828793024 2270.39677318327 239.6077708414192 643.9904828793024 2270.39677318327 239.6077708414192 643.9899571128276 2270.401337270119 239.6077702764678 653.1213143960458 2277.139479390805 239.606506203997 602.9211404172588 2712.885844978241 233.6470890616881 653.1213143960458 2277.139479390805 239.606506203997 653.1210233465895 2277.138714991485 233.7009944496312 602.9214314666392 2712.8866093778 239.5526008160606 602.9214314666392 2712.8866093778 239.5526008160606 602.9211404172588 2712.885844978241 233.6470890616881 653.1213143960458 2277.139479390805 239.606506203997 653.1210233465895 2277.138714991485 233.7009944496312</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"134\" source=\"#ID3273\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3271\">\r\n\t\t\t\t\t<float_array count=\"402\" id=\"ID3274\">4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 4.928207764770135e-005 0.000129454339901742 0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 -4.928207764770135e-005 -0.000129454339901742 -0.9999999904064253 0.4002174659791474 0.9164201878974906 -0.0001383443457796558 0.4002174659791474 0.9164201878974906 -0.0001383443457796558 0.4002174659791474 0.9164201878974906 -0.0001383443457796558 0.4002174659791474 0.9164201878974906 -0.0001383443457796558 -0.4002174659791474 -0.9164201878974906 0.0001383443457796558 -0.4002174659791474 -0.9164201878974906 0.0001383443457796558 -0.4002174659791474 -0.9164201878974906 0.0001383443457796558 -0.4002174659791474 -0.9164201878974906 0.0001383443457796558 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 4.927726114657553e-005 0.0001294466192819994 0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -4.927726114657553e-005 -0.0001294466192819994 -0.9999999904076621 -0.9918148259140842 -0.1276845598292082 6.540822732710591e-005 -0.9918148259140842 -0.1276845598292082 6.540822732710591e-005 -0.9918148259140842 -0.1276845598292082 6.540822732710591e-005 -0.9918148259140842 -0.1276845598292082 6.540822732710591e-005 -0.9918148259140842 -0.1276845598292082 6.540822732710591e-005 0.9918148259140842 0.1276845598292082 -6.540822732710591e-005 0.9918148259140842 0.1276845598292082 -6.540822732710591e-005 0.9918148259140842 0.1276845598292082 -6.540822732710591e-005 0.9918148259140842 0.1276845598292082 -6.540822732710591e-005 0.9918148259140842 0.1276845598292082 -6.540822732710591e-005 -0.3646722337150121 -0.931135942156571 0.0001384972875892872 -0.3646722337150121 -0.931135942156571 0.0001384972875892872 -0.3646722337150121 -0.931135942156571 0.0001384972875892872 -0.3646722337150121 -0.931135942156571 0.0001384972875892872 0.3646722337150121 0.931135942156571 -0.0001384972875892872 0.3646722337150121 0.931135942156571 -0.0001384972875892872 0.3646722337150121 0.931135942156571 -0.0001384972875892872 0.3646722337150121 0.931135942156571 -0.0001384972875892872 0.5937570388131008 -0.8046443768843197 7.48888716460402e-005 0.5937570388131008 -0.8046443768843197 7.48888716460402e-005 0.5937570388131008 -0.8046443768843197 7.48888716460402e-005 0.5937570388131008 -0.8046443768843197 7.48888716460402e-005 -0.5937570388131008 0.8046443768843197 -7.48888716460402e-005 -0.5937570388131008 0.8046443768843197 -7.48888716460402e-005 -0.5937570388131008 0.8046443768843197 -7.48888716460402e-005 -0.5937570388131008 0.8046443768843197 -7.48888716460402e-005 0.9949367221758649 0.1005033084854117 -6.204379375657496e-005 0.9949367221758649 0.1005033084854117 -6.204379375657496e-005 0.9949367221758649 0.1005033084854117 -6.204379375657496e-005 0.9949367221758649 0.1005033084854117 -6.204379375657496e-005 -0.9949367221758649 -0.1005033084854117 6.204379375657496e-005 -0.9949367221758649 -0.1005033084854117 6.204379375657496e-005 -0.9949367221758649 -0.1005033084854117 6.204379375657496e-005 -0.9949367221758649 -0.1005033084854117 6.204379375657496e-005 4.340267932824524e-005 0.0001287813574417892 0.9999999907657848 4.340267932824524e-005 0.0001287813574417892 0.9999999907657848 4.340267932824524e-005 0.0001287813574417892 0.9999999907657848 -4.340267932824524e-005 -0.0001287813574417892 -0.9999999907657848 -4.340267932824524e-005 -0.0001287813574417892 -0.9999999907657848 -4.340267932824524e-005 -0.0001287813574417892 -0.9999999907657848 0.9934293319642041 0.1144471857495133 -6.377438129519079e-005 0.9934293319642041 0.1144471857495133 -6.377438129519079e-005 0.9934293319642041 0.1144471857495133 -6.377438129519079e-005 0.9934293319642041 0.1144471857495133 -6.377438129519079e-005 -0.9934293319642041 -0.1144471857495133 6.377438129519079e-005 -0.9934293319642041 -0.1144471857495133 6.377438129519079e-005 -0.9934293319642041 -0.1144471857495133 6.377438129519079e-005 -0.9934293319642041 -0.1144471857495133 6.377438129519079e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"134\" source=\"#ID3274\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3272\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3270\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3271\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"114\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3272\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 7 8 9 8 7 10 10 7 6 10 6 3 11 12 13 12 11 14 14 11 0 14 0 15 15 0 16 16 0 17 17 0 18 18 0 2 18 2 19 18 19 5 5 19 4 14 20 18 20 14 15 18 20 17 21 22 23 24 25 22 23 22 25 26 27 28 28 27 23 27 29 23 29 30 23 23 30 21 21 30 31 31 30 24 24 30 25 30 32 25 25 32 33 34 33 32 35 36 37 36 38 37 37 38 39 40 39 38 36 35 28 28 35 26 26 35 41 35 30 41 29 41 30 42 43 44 43 42 45 46 47 48 49 48 47 50 51 52 51 50 53 51 53 54 54 53 55 54 55 56 55 53 57 55 58 56 58 55 59 59 55 60 59 60 61 61 60 62 62 60 63 62 63 64 62 64 65 50 56 61 56 50 52 56 52 66 56 66 54 61 56 67 61 67 59 68 69 70 69 71 70 72 73 71 73 74 71 74 75 71 70 71 75 76 77 78 77 79 78 79 80 78 78 80 70 70 80 68 80 81 68 68 81 82 71 82 81 83 84 81 71 81 72 81 84 72 72 84 85 84 75 85 74 85 75 86 87 88 87 86 89 87 89 90 91 92 93 92 94 93 95 93 94 96 97 98 97 96 99 100 101 102 103 102 101 104 105 106 105 104 107 108 109 110 111 110 109 112 113 114 113 112 115 116 117 118 119 118 117 120 121 122 123 124 125 126 127 128 127 126 129 130 131 132 133 132 131</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3275\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3276\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID3279\">1693.664191240824 1847.566013032111 239.6146098576951 1688.825016036866 1890.409726678451 239.6091568980098 1683.887591697867 1846.461755625547 239.6152600791997 1575.630594334455 2804.92039136921 239.4966260349836 703.0996428732942 3214.47046819039 239.4866184645573 699.0087307570984 3205.518394131434 239.4879789750714 712.0517167825306 3210.379555592239 239.4867062154524 1584.785974148046 2811.558108770724 239.4953153790646 1688.828747668084 1890.410148162573 239.6091566498253 1688.828747668084 1890.410148162573 239.6091566498253 1688.825016036866 1890.409726678451 239.6091568980098 1584.785974148046 2811.558108770724 239.4953153790646 1683.887591697867 1846.461755625547 239.6152600791997 1575.630594334455 2804.92039136921 239.4966260349836 712.0517167825306 3210.379555592239 239.4867062154524 703.0996428732942 3214.47046819039 239.4866184645573 699.0087307570984 3205.518394131434 239.4879789750714 1693.664191240824 1847.566013032111 239.6146098576951</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3279\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3277\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID3280\">4.915357049627868e-005 0.0001291463781695781 0.9999999904525697 4.915357049627868e-005 0.0001291463781695781 0.9999999904525697 4.915357049627868e-005 0.0001291463781695781 0.9999999904525697 4.915357049627868e-005 0.0001291463781695781 0.9999999904525697 4.915357049627868e-005 0.0001291463781695781 0.9999999904525697 4.915357049627868e-005 0.0001291463781695781 0.9999999904525697 4.915357049627868e-005 0.0001291463781695781 0.9999999904525697 4.915357049627868e-005 0.0001291463781695781 0.9999999904525697 4.915357049627868e-005 0.0001291463781695781 0.9999999904525697 -4.915357049627868e-005 -0.0001291463781695781 -0.9999999904525697 -4.915357049627868e-005 -0.0001291463781695781 -0.9999999904525697 -4.915357049627868e-005 -0.0001291463781695781 -0.9999999904525697 -4.915357049627868e-005 -0.0001291463781695781 -0.9999999904525697 -4.915357049627868e-005 -0.0001291463781695781 -0.9999999904525697 -4.915357049627868e-005 -0.0001291463781695781 -0.9999999904525697 -4.915357049627868e-005 -0.0001291463781695781 -0.9999999904525697 -4.915357049627868e-005 -0.0001291463781695781 -0.9999999904525697 -4.915357049627868e-005 -0.0001291463781695781 -0.9999999904525697</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3280\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3278\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3276\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3277\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3278\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 6 3 7 7 3 2 7 2 1 7 1 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3278\" />\r\n\t\t\t\t\t<p>9 10 11 10 12 11 12 13 11 11 13 14 14 13 15 16 15 13 12 10 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3281\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3282\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3285\">791.4319444250164 2082.12700562482 233.7193647621338 782.2904197039352 2075.381360325601 233.7207323094482 782.2927102883623 2075.378094469384 233.7206847378619 782.2927102883623 2075.378094469384 233.7206847378619 782.2904197039352 2075.381360325601 233.7207323094482 791.4319444250164 2082.12700562482 233.7193647621338</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3285\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3283\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3286\">0.007180978394819199 -0.009528760955689141 0.9999288155983619 0.007180978394819199 -0.009528760955689141 0.9999288155983619 0.007180978394819199 -0.009528760955689141 0.9999288155983619 -0.007180978394819199 0.009528760955689141 -0.9999288155983619 -0.007180978394819199 0.009528760955689141 -0.9999288155983619 -0.007180978394819199 0.009528760955689141 -0.9999288155983619</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3286\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3284\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3282\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3283\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3284\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3287\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3288\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID3291\">868.0253541271954 -1073.861613274412 240.0336573821785 820.7608412923451 -595.4613492475655 239.974053659097 810.3824942153656 -591.5640909946364 239.9740605713777 821.2215448527468 -599.3157134350363 239.9745297344727 821.2485500571111 -599.5416458908881 239.9745576522622 822.0472975194616 -606.2241726983939 239.9753804851296 833.9478546349455 -705.7967221999147 239.9876850360295 836.2132288746084 -724.7511039795145 239.9900272989127 861.5846999540986 -937.0341522922809 240.0162598983132 863.8511391232141 -955.9974443347055 240.0186032622686 875.9066386686804 -1056.865788274416 240.0310679356575 877.192939810353 -1067.628271564667 240.0323980295498 877.192939810353 -1067.628271564667 240.0323980295498 868.0253541271954 -1073.861613274412 240.0336573821785 875.9066386686804 -1056.865788274416 240.0310679356575 863.8511391232141 -955.9974443347055 240.0186032622686 861.5846999540986 -937.0341522922809 240.0162598983132 836.2132288746084 -724.7511039795145 239.9900272989127 833.9478546349455 -705.7967221999147 239.9876850360295 822.0472975194616 -606.2241726983939 239.9753804851296 821.2485500571111 -599.5416458908881 239.9745576522622 821.2215448527468 -599.3157134350363 239.9745297344727 820.7608412923451 -595.4613492475655 239.974053659097 810.3824942153656 -591.5640909946364 239.9740605713777 810.3822002445686 -591.564860323766 234.0646124055213 820.7608412923451 -595.4613492475655 239.974053659097 820.7605473215403 -595.4621185767746 234.0646054932483 810.3824942153656 -591.5640909946364 239.9740605713777 810.3824942153656 -591.5640909946364 239.9740605713777 810.3822002445686 -591.564860323766 234.0646124055213 820.7608412923451 -595.4613492475655 239.974053659097 820.7605473215403 -595.4621185767746 234.0646054932483 868.0253541271954 -1073.861613274412 240.0336573821785 810.3822002445686 -591.564860323766 234.0646124055213 868.0250626229126 -1073.862378343227 234.1242086837957 810.3824942153656 -591.5640909946364 239.9740605713777 810.3824942153656 -591.5640909946364 239.9740605713777 868.0253541271954 -1073.861613274412 240.0336573821785 810.3822002445686 -591.564860323766 234.0646124055213 868.0250626229126 -1073.862378343227 234.1242086837957 877.192939810353 -1067.628271564667 240.0323980295498 868.0250626229126 -1073.862378343227 234.1242086837957 877.1926483060493 -1067.629036633433 234.1229493311681 868.0253541271954 -1073.861613274412 240.0336573821785 868.0253541271954 -1073.861613274412 240.0336573821785 877.192939810353 -1067.628271564667 240.0323980295498 868.0250626229126 -1073.862378343227 234.1242086837957 877.1926483060493 -1067.629036633433 234.1229493311681</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID3291\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3289\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID3292\">4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 4.940747293676677e-005 0.0001294739284803215 0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 -4.940747293676677e-005 -0.0001294739284803215 -0.9999999903977017 0.3515487183850704 0.9361695782171816 -0.0001393645537299704 0.3515487183850704 0.9361695782171816 -0.0001393645537299704 0.3515487183850704 0.9361695782171816 -0.0001393645537299704 0.3515487183850704 0.9361695782171816 -0.0001393645537299704 -0.3515487183850704 -0.9361695782171816 0.0001393645537299704 -0.3515487183850704 -0.9361695782171816 0.0001393645537299704 -0.3515487183850704 -0.9361695782171816 0.0001393645537299704 -0.3515487183850704 -0.9361695782171816 0.0001393645537299704 -0.9929334319517003 -0.1186726402345731 6.459391675954493e-005 -0.9929334319517003 -0.1186726402345731 6.459391675954493e-005 -0.9929334319517003 -0.1186726402345731 6.459391675954493e-005 -0.9929334319517003 -0.1186726402345731 6.459391675954493e-005 0.9929334319517003 0.1186726402345731 -6.459391675954493e-005 0.9929334319517003 0.1186726402345731 -6.459391675954493e-005 0.9929334319517003 0.1186726402345731 -6.459391675954493e-005 0.9929334319517003 0.1186726402345731 -6.459391675954493e-005 0.5622719960855109 -0.826952354205162 7.932562955239724e-005 0.5622719960855109 -0.826952354205162 7.932562955239724e-005 0.5622719960855109 -0.826952354205162 7.932562955239724e-005 0.5622719960855109 -0.826952354205162 7.932562955239724e-005 -0.5622719960855109 0.826952354205162 -7.932562955239724e-005 -0.5622719960855109 0.826952354205162 -7.932562955239724e-005 -0.5622719960855109 0.826952354205162 -7.932562955239724e-005 -0.5622719960855109 0.826952354205162 -7.932562955239724e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID3292\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3290\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3288\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3289\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3290\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 7 0 8 8 0 9 9 0 10 10 0 11 12 13 14 14 13 15 15 13 16 16 13 17 17 13 18 18 13 19 19 13 20 20 13 21 21 13 22 23 22 13 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 44 45 46 47 46 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3293\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3294\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID3297\">-3080.244312383302 2132.629060177147 239.8131826595104 -3080.613463754738 2135.716282445529 239.8128014626067 -3080.614006037353 2135.715154584327 239.8128016474383 -3080.503709035587 2135.944553769708 239.8127664999335 -3080.226380768018 2136.521349841496 239.81267815624 -2912.991847283493 735.2952663179731 239.9858370587388 -3070.671358941794 2135.471231925321 239.812343054971 -2903.920677742597 742.3265807722532 239.9844795989558 -2163.724219485038 443.2711354890098 239.9867057453142 -2154.203016919195 450.1273063335275 239.9853487743111 -3081.131040613446 2140.034760378168 239.81226787629 -3081.18364042017 2140.479912590096 239.8122128722329 -3080.953123228658 2138.550910336026 239.812450966955 -3080.739346148959 2136.767986600037 239.8126715143605 -3080.594056102195 2136.698130294918 239.8126733955804 -3080.226380768018 2136.521349841496 239.81267815624 -3080.594056102195 2136.698130294918 239.8126733955804 -3070.671358941794 2135.471231925321 239.812343054971 -3080.739346148959 2136.767986600037 239.8126715143605 -3080.953123228658 2138.550910336026 239.812450966955 -3081.131040613446 2140.034760378168 239.81226787629 -3081.18364042017 2140.479912590096 239.8122128722329 -2154.203016919195 450.1273063335275 239.9853487743111 -2163.724219485038 443.2711354890098 239.9867057453142 -2903.920677742597 742.3265807722532 239.9844795989558 -2912.991847283493 735.2952663179731 239.9858370587388 -3080.244312383302 2132.629060177147 239.8131826595104 -3080.503709035587 2135.944553769708 239.8127664999335 -3080.613463754738 2135.716282445529 239.8128014626067 -3080.614006037353 2135.715154584327 239.8128016474383 -3080.613463754738 2135.716282445529 239.8128014626067 -3080.594056102195 2136.698130294918 239.8126733955804 -3080.739346148959 2136.767986600037 239.8126715143605 -3080.503709035587 2135.944553769708 239.8127664999335 -3080.226380768018 2136.521349841496 239.81267815624 -3080.226380768018 2136.521349841496 239.81267815624 -3080.503709035587 2135.944553769708 239.8127664999335 -3080.594056102195 2136.698130294918 239.8126733955804 -3080.613463754738 2135.716282445529 239.8128014626067 -3080.739346148959 2136.767986600037 239.8126715143605 -2154.203016919195 450.1273063335275 239.9853487743111 -2163.724510804562 443.2703704497958 234.0772569831182 -2154.203308238642 450.1265412942789 234.0759000121272 -2163.724219485038 443.2711354890098 239.9867057453142 -2163.724219485038 443.2711354890098 239.9867057453142 -2154.203016919195 450.1273063335275 239.9853487743111 -2163.724510804562 443.2703704497958 234.0772569831182 -2154.203308238642 450.1265412942789 234.0759000121272 -3081.18364042017 2140.479912590096 239.8122128722329 -3081.082976789596 2140.430917562363 233.9067022472863 -3081.184657379708 2140.479061176118 233.9067010266155 -3081.039498495119 2140.410331507391 233.9067027692413 -3070.671650243236 2135.470466882574 233.9028943026803 -3081.03949327089 2140.410328416208 233.9027659086383 -3070.671358941794 2135.471231925321 239.812343054971 -3081.18364042017 2140.479912590096 239.8122128722329 -3081.039498495119 2140.410331507391 233.9067027692413 -3070.671358941794 2135.471231925321 239.812343054971 -3070.671650243236 2135.470466882574 233.9028943026803 -3081.03949327089 2140.410328416208 233.9027659086383 -3081.082976789596 2140.430917562363 233.9067022472863 -3081.184657379708 2140.479061176118 233.9067010266155</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID3297\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3295\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID3298\">4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 4.929726449161019e-005 0.0001294602993971024 0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 -4.929726449161019e-005 -0.0001294602993971024 -0.9999999904049053 4.929725280335205e-005 0.0001294602674670868 0.9999999904049099 4.929725280335205e-005 0.0001294602674670868 0.9999999904049099 4.929725280335205e-005 0.0001294602674670868 0.9999999904049099 4.929725280335205e-005 0.0001294602674670868 0.9999999904049099 4.929725280335205e-005 0.0001294602674670868 0.9999999904049099 -4.929725280335205e-005 -0.0001294602674670868 -0.9999999904049099 -4.929725280335205e-005 -0.0001294602674670868 -0.9999999904049099 -4.929725280335205e-005 -0.0001294602674670868 -0.9999999904049099 -4.929725280335205e-005 -0.0001294602674670868 -0.9999999904049099 -4.929725280335205e-005 -0.0001294602674670868 -0.9999999904049099 0.5843555293142044 -0.8114977569567925 7.624965954944809e-005 0.5843555293142044 -0.8114977569567925 7.624965954944809e-005 0.5843555293142044 -0.8114977569567925 7.624965954944809e-005 0.5843555293142044 -0.8114977569567925 7.624965954944809e-005 -0.5843555293142044 0.8114977569567925 -7.624965954944809e-005 -0.5843555293142044 0.8114977569567925 -7.624965954944809e-005 -0.5843555293142044 0.8114977569567925 -7.624965954944809e-005 -0.5843555293142044 0.8114977569567925 -7.624965954944809e-005 0.4301255524307421 0.9027690658603272 -0.0001512343250136958 0.4301255524307421 0.9027690658603272 -0.0001512343250136958 0.4301255524307421 0.9027690658603272 -0.0001512343250136958 0.4301255524307421 0.9027690658603272 -0.0001512343250136958 0.4301255524307421 0.9027690658603272 -0.0001512343250136958 0.4301255524307421 0.9027690658603272 -0.0001512343250136958 0.4301255524307421 0.9027690658603272 -0.0001512343250136958 -0.4301255524307421 -0.9027690658603272 0.0001512343250136958 -0.4301255524307421 -0.9027690658603272 0.0001512343250136958 -0.4301255524307421 -0.9027690658603272 0.0001512343250136958 -0.4301255524307421 -0.9027690658603272 0.0001512343250136958 -0.4301255524307421 -0.9027690658603272 0.0001512343250136958 -0.4301255524307421 -0.9027690658603272 0.0001512343250136958 -0.4301255524307421 -0.9027690658603272 0.0001512343250136958</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID3298\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3296\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3294\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3295\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"46\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3296\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 7 5 8 7 8 9 10 6 11 6 10 12 6 12 13 6 13 14 6 14 4 15 16 17 16 18 17 18 19 17 19 20 17 21 17 20 22 23 24 23 25 24 24 25 17 17 25 15 25 26 15 15 26 27 27 26 28 29 28 26 30 31 32 31 30 33 31 33 34 35 36 37 36 38 37 39 37 38 40 41 42 41 40 43 44 45 46 47 46 45 48 49 50 49 48 51 51 52 53 52 51 54 54 51 48 55 56 57 57 56 58 59 58 56 56 55 60 61 60 55</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3299\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3300\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3303\">-3070.671650243236 2135.470466882574 233.9028943026803 -2903.920677742597 742.3265807722532 239.9844795989558 -2903.920969062016 742.3258157330583 234.0750308367679 -3070.671358941794 2135.471231925321 239.812343054971 -3070.671358941794 2135.471231925321 239.812343054971 -3070.671650243236 2135.470466882574 233.9028943026803 -2903.920677742597 742.3265807722532 239.9844795989558 -2903.920969062016 742.3258157330583 234.0750308367679 -2903.920677742597 742.3265807722532 239.9844795989558 -2154.203308238642 450.1265412942789 234.0759000121272 -2903.920969062016 742.3258157330583 234.0750308367679 -2154.203016919195 450.1273063335275 239.9853487743111 -2154.203016919195 450.1273063335275 239.9853487743111 -2903.920677742597 742.3265807722532 239.9844795989558 -2154.203308238642 450.1265412942789 234.0759000121272 -2903.920969062016 742.3258157330583 234.0750308367679</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3303\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3301\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3304\">0.9929127658929341 0.1188454256091497 -6.433213500748804e-005 0.9929127658929341 0.1188454256091497 -6.433213500748804e-005 0.9929127658929341 0.1188454256091497 -6.433213500748804e-005 0.9929127658929341 0.1188454256091497 -6.433213500748804e-005 -0.9929127658929341 -0.1188454256091497 6.433213500748804e-005 -0.9929127658929341 -0.1188454256091497 6.433213500748804e-005 -0.9929127658929341 -0.1188454256091497 6.433213500748804e-005 -0.9929127658929341 -0.1188454256091497 6.433213500748804e-005 0.3631396480061936 0.9317347137768943 -0.0001385244618307553 0.3631396480061936 0.9317347137768943 -0.0001385244618307553 0.3631396480061936 0.9317347137768943 -0.0001385244618307553 0.3631396480061936 0.9317347137768943 -0.0001385244618307553 -0.3631396480061936 -0.9317347137768943 0.0001385244618307553 -0.3631396480061936 -0.9317347137768943 0.0001385244618307553 -0.3631396480061936 -0.9317347137768943 0.0001385244618307553 -0.3631396480061936 -0.9317347137768943 0.0001385244618307553</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3304\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3302\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3300\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3301\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3302\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3302\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3305\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3311\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID3315\">-3081.131214581632 2140.034391708214 236.8598900368885 -3081.158022987684 2140.256542065465 233.9067285209221 -3081.131388594373 2140.034022943813 233.9067560152301 -3081.131040613446 2140.034760378168 239.81226787629 -3081.18364042017 2140.479912590096 239.8122128722329 -3081.184657379708 2140.479061176118 233.9067010266155 -3081.184657379708 2140.479061176118 233.9067010266155 -3081.18364042017 2140.479912590096 239.8122128722329 -3081.158022987684 2140.256542065465 233.9067285209221 -3081.131040613446 2140.034760378168 239.81226787629 -3081.131214581632 2140.034391708214 236.8598900368885 -3081.131388594373 2140.034022943813 233.9067560152301</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID3315\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3312\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID3316\">-0.9930022122544097 -0.1180956789654568 0.0001306427818861884 -0.9930022122544097 -0.1180956789654568 0.0001306427818861884 -0.9930022122544097 -0.1180956789654568 0.0001306427818861884 -0.9930022122544097 -0.1180956789654568 0.0001306427818861884 -0.9930022122544097 -0.1180956789654568 0.0001306427818861884 -0.9930022122544097 -0.1180956789654568 0.0001306427818861884 0.9930022122544097 0.1180956789654568 -0.0001306427818861884 0.9930022122544097 0.1180956789654568 -0.0001306427818861884 0.9930022122544097 0.1180956789654568 -0.0001306427818861884 0.9930022122544097 0.1180956789654568 -0.0001306427818861884 0.9930022122544097 0.1180956789654568 -0.0001306427818861884 0.9930022122544097 0.1180956789654568 -0.0001306427818861884</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID3316\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3314\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID3317\">1420.918562531638 424.9590257892127 1420.916645743041 424.9201627223778 1420.918562389084 424.9201627226683 1420.918562674156 424.997878904444 1420.914729089858 424.9978789048801 1420.914729097093 424.9201627220872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3317\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3313\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3311\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3312\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3313\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3314\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 1 1 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3313\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 9 10 8 11 8 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3318\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3319\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3323\">-231.9272555457969 -1371.979945105925 240.1235268753777 -231.9275665832088 -1371.980761082724 234.2197278366849 -231.8678040505524 -1372.004004414678 234.2197281494611 -231.8678040505524 -1372.004004414678 234.2197281494611 -231.9275665832088 -1371.980761082724 234.2197278366849 -231.9272555457969 -1371.979945105925 240.1235268753777</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3323\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3320\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3324\">-0.3624780495783629 -0.9319922970157096 0.0001479095915431286 -0.3624780495783629 -0.9319922970157096 0.0001479095915431286 -0.3624780495783629 -0.9319922970157096 0.0001479095915431286 0.3624780495783629 0.9319922970157096 -0.0001479095915431286 0.3624780495783629 0.9319922970157096 -0.0001479095915431286 0.3624780495783629 0.9319922970157096 -0.0001479095915431286</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3324\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3322\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID3325\">1397.887131434135 425.0091488391046 1397.887143467895 424.9314552000789 1397.887647200833 424.9314554223091 71.43047215246844 99.57572828695797 71.41418480418986 99.57572815387037 71.4141833083313 102.0878199022232</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3325\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3321\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3319\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3320\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3321\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3322\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3326\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3327\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3331\">-221.5314573605001 -1376.025508523736 240.1264750252332 -231.9272555457969 -1371.979945105925 240.1235268753777 -221.5314328402565 -1376.025445522891 240.1231278913326 -231.9272770319353 -1371.980000310723 240.1264636722609 -231.9272770319353 -1371.980000310723 240.1264636722609 -221.5314573605001 -1376.025508523736 240.1264750252332 -231.9272555457969 -1371.979945105925 240.1235268753777 -221.5314328402565 -1376.025445522891 240.1231278913326</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3331\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3328\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3332\">-0.3625817858360895 -0.9317334024689545 -0.02018205399698618 -0.3625817858360895 -0.9317334024689545 -0.02018205399698618 -0.3625817858360895 -0.9317334024689545 -0.02018205399698618 -0.3625817858360895 -0.9317334024689545 -0.02018205399698618 0.3625817858360895 0.9317334024689545 0.02018205399698618 0.3625817858360895 0.9317334024689545 0.02018205399698618 0.3625817858360895 0.9317334024689545 0.02018205399698618 0.3625817858360895 0.9317334024689545 0.02018205399698618</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3332\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3330\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID3333\">1397.976747187045 425.373158471569 1397.889115279679 425.3730817219624 1397.976747193869 425.3731144145057 1397.88911527369 425.3731203778935 71.4801431539301 113.8561923397943 74.31357210889756 113.8561971718705 71.48014315471734 113.8549424659753 74.31357210975398 113.8547726616189</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3333\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3329\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3327\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3328\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3329\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3330\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 7 7 6 6 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3334\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3335\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID3338\">-106.4244754760257 -139.5782398579731 239.9607424334607 -119.4809713464515 52.60062948849827 239.9365065441828 -129.933645789366 57.11960737314803 239.9364368037447 -97.3522554911624 -132.5471538111538 239.9593849514699 798.447764105249 -491.7062635075235 239.9617213454721 807.5199962848883 -484.6751822062447 239.9603638635047 808.8063330956516 -495.4376612334418 239.9616937843807 808.8629898220729 -495.9114523509993 239.9617487374165 808.4394254515505 -492.3677457022914 239.9613121482271 1818.671600975977 1495.019764515702 239.6542249437868 -108.2295184119607 60.90321718267251 239.9348770230327 1781.492414401694 1455.352641281716 239.6611930932741 1829.089977381103 1490.475477680329 239.6542996515117 1822.451040066268 1549.253645160755 239.647017492233 1786.48816958433 1867.652725018153 239.6075702499407 1776.707838408872 1866.548046124213 239.6081954052579 1822.451040066268 1549.253645160755 239.647017492233 1818.671600975977 1495.019764515702 239.6542249437868 1786.48816958433 1867.652725018153 239.6075702499407 1776.707838408872 1866.548046124213 239.6081954052579 1829.089977381103 1490.475477680329 239.6542996515117 1781.492414401694 1455.352641281716 239.6611930932741 -108.2295184119607 60.90321718267251 239.9348770230327 -119.4809713464515 52.60062948849827 239.9365065441828 -129.933645789366 57.11960737314803 239.9364368037447 808.4394254515505 -492.3677457022914 239.9613121482271 808.8063330956516 -495.4376612334418 239.9616937843807 807.5199962848883 -484.6751822062447 239.9603638635047 808.8629898220729 -495.9114523509993 239.9617487374165 798.447764105249 -491.7062635075235 239.9617213454721 -97.3522554911624 -132.5471538111538 239.9593849514699 -106.4244754760257 -139.5782398579731 239.9607424334607 1818.671600975977 1495.019764515702 239.6542249437868 1776.707547090067 1866.54728108683 233.6987605193294 1818.671309656554 1495.018999476501 233.7447761815862 1776.707838408872 1866.548046124213 239.6081954052579 1776.707838408872 1866.548046124213 239.6081954052579 1818.671600975977 1495.019764515702 239.6542249437868 1776.707547090067 1866.54728108683 233.6987605193294 1818.671309656554 1495.018999476501 233.7447761815862 798.4474727859188 -491.707028546668 234.0522725832743 -106.4244754760257 -139.5782398579731 239.9607424334607 -106.4247667953955 -139.5790048971294 234.0512936712688 798.447764105249 -491.7062635075235 239.9617213454721 798.447764105249 -491.7062635075235 239.9617213454721 798.4474727859188 -491.707028546668 234.0522725832743 -106.4244754760257 -139.5782398579731 239.9607424334607 -106.4247667953955 -139.5790048971294 234.0512936712688 808.8626964812229 -495.9122176431715 234.0523000699716 808.8629898220729 -495.9114523509993 239.9617487374165 808.8629898220729 -495.9114523509993 239.9617487374165 808.8626964812229 -495.9122176431715 234.0523000699716</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID3338\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3336\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID3339\">4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 4.92979477474727e-005 0.0001294606062271394 0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -4.92979477474727e-005 -0.0001294606062271394 -0.9999999904048319 -0.9936816474225449 -0.1122353756235683 6.351577830993505e-005 -0.9936816474225449 -0.1122353756235683 6.351577830993505e-005 -0.9936816474225449 -0.1122353756235683 6.351577830993505e-005 -0.9936816474225449 -0.1122353756235683 6.351577830993505e-005 0.9936816474225449 0.1122353756235683 -6.351577830993505e-005 0.9936816474225449 0.1122353756235683 -6.351577830993505e-005 0.9936816474225449 0.1122353756235683 -6.351577830993505e-005 0.9936816474225449 0.1122353756235683 -6.351577830993505e-005 -0.368529778600369 -0.9296159330541451 0.0001389123261451485 -0.3626549266621149 -0.9319234866546293 0.0001385249981042271 -0.3626549266621149 -0.9319234866546293 0.0001385249981042271 -0.368529777428226 -0.9296159335188202 0.0001389123260683254 0.368529777428226 0.9296159335188202 -0.0001389123260683254 0.368529778600369 0.9296159330541451 -0.0001389123261451485 0.3626549266621149 0.9319234866546293 -0.0001385249981042271 0.3626549266621149 0.9319234866546293 -0.0001385249981042271 -0.3743899476418695 -0.9272713452392813 0.0001392941200264016 -0.3743899476418695 -0.9272713452392813 0.0001392941200264016 0.3743899476418695 0.9272713452392813 -0.0001392941200264016 0.3743899476418695 0.9272713452392813 -0.0001392941200264016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID3339\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3337\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3335\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3336\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"40\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3337\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 6 4 7 5 6 8 1 9 2 9 1 10 9 10 11 9 11 12 9 12 13 9 14 15 14 9 13 16 17 18 19 18 17 16 20 17 20 21 17 21 22 17 22 23 17 24 17 23 25 26 27 28 29 26 26 29 27 27 29 30 29 31 30 30 31 23 24 23 31 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 44 45 46 47 46 45 48 43 40 43 48 49 50 51 44 45 44 51</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3340\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3341\">\r\n\t\t\t\t\t<float_array count=\"666\" id=\"ID3344\">-2488.707499328116 3209.200312029235 163.6564589183714 -2391.354597369458 3171.214430551371 163.6565773244726 -2393.137586333883 3159.101815353959 163.6582333253879 -2391.193847922387 3171.25335638309 163.656564360568 -2167.64170201125 3084.258782034346 163.6568061358288 -2372.868057031113 3164.010099388118 163.6565986585899 -2373.013808140948 3164.178654344415 163.6565840225729 -2168.004566480271 3084.1709136061 163.6568353996445 -2169.787555444689 3072.058298408683 163.6584914005606 -393.3981999718285 2911.129532508789 163.591754139095 -1608.924357777777 1992.453556551197 163.7706081913165 -1645.332852929572 1987.611323948077 163.7730300350254 -382.8810932823953 2896.872390688823 163.593081341457 -278.5969541520353 2755.503304583959 163.6062421133016 -1403.66117387236 1904.176025599844 163.7719178511626 -1415.746239192698 1917.27738071944 163.7708175057778 -268.0848690951898 2741.242459807166 163.6075701237391 552.1304259206872 3367.85669986933 163.4860141296329 -75.55630899448579 2883.160880091836 163.5797062004795 -86.07341633611304 2897.418022795881 163.5783789027263 32.42625858197607 2962.757981948848 163.5640783240987 593.7754511075814 2706.233048074697 163.5696151641498 -2053.418712314959 3039.80849340294 163.656929772367 -2149.518026142011 3076.966582442883 163.6568567337601 -2149.83006578865 3077.327443015843 163.6568253994055 -2146.430310772347 87.02550045773205 164.0437831727426 -1795.903315427041 -23.11156828726962 164.0407615430451 -2043.022894423976 3035.762980614768 163.6569410175346 -1946.406583082052 2998.165871032456 163.6570453862841 -1939.790027120501 2995.59044931039 163.6570526076833 -1938.913777418874 2995.249378740085 163.6570535636484 -1936.017849793075 2994.122170724855 163.6570567649721 -1936.011084592216 2994.119537444703 163.6570567566101 -1824.073874013381 2057.169235205157 163.7728364827454 -1704.442665921047 -788.3495200681236 164.1353207381663 -1703.111891332413 -799.4852114905757 164.1366967648648 -1253.637115381196 738.8343843115326 163.9153875525368 -220.76626523081 -1376.335084064825 164.138300131787 -136.9308546007587 301.484962097325 163.9169564236752 -113.3334876946788 -1418.142191809508 164.1384163355018 -129.4205396573179 285.0090712310557 163.9187191600953 -119.4847173536227 52.59079203307783 163.9483182969037 -97.35600149831453 -132.5569912665492 163.9711967041965 -95.38693420562322 -1425.126033433599 164.1384357449861 807.5162502777002 -484.685019661657 163.9721756162254 104.1192803437275 -1502.763213537243 164.1386515141888 122.0729385252962 -1509.749819928962 164.1386709313672 331.1612943102059 -1591.115858436919 164.1388974893074 863.842158392989 -955.9636623797142 164.0304107899291 890.4300388105826 -1178.424276061255 164.0578999037997 808.8025523661872 -495.4475028402685 163.9735055196361 820.7571050300603 -595.4711855398455 163.9858652915009 822.0049346348633 -605.9117696389367 163.9871554183355 822.0434071183622 -606.2336687168836 163.987195194911 836.2042481445128 -724.7173220250975 164.0018360366069 833.9506542104296 -705.8615060383118 163.9995060525349 861.5874995296417 -937.0989361315124 164.0280797048247 -2606.115113998826 3254.889252538675 163.6563316981225 -3165.198083439138 2842.333913016592 163.7373029242397 -3165.198209192542 2842.33496363507 163.7373023575882 -3165.197448427879 2842.32861642729 163.7373035786226 -3165.117470605544 2841.660425810267 163.7373856789214 -3163.870339172993 2831.259089793661 163.7386712206288 -3150.2240272137 2717.230622295126 163.7527602346879 -3138.55270159241 2619.722663632183 163.7648087112493 -3136.390891716063 2601.661627754485 163.7670403280525 -3110.881028695687 2388.537172970668 163.793373929237 -3108.704667837963 2370.354569604953 163.7956205668963 -3101.713587358315 2311.946956267863 163.8028376188028 -3094.722506349579 2253.539338510157 163.8100542259028 -3094.600138339416 2253.481035179597 163.810055741436 -3093.213830592474 2241.917877726711 163.8114843707278 -3081.13546274455 2140.025155461558 163.8240800082992 -3081.134577755789 2140.017414554745 163.8240807306769 -2912.995593290785 735.2854288624781 163.9976488114583 -2780.313884898815 683.5732513540183 163.9978026133648 -2163.727965492457 443.2612980334711 163.9985174980311 -2499.560632528807 3213.423785966861 163.656447178819 -2384.785810646564 3149.443342173965 163.6590719929032 -2374.651045995438 3151.897484190899 163.658254659504 -2161.435779757334 3062.399825228672 163.6593300680798 -2151.301015106281 3064.853967245611 163.658512734676 -3093.338594583935 2241.97732266236 163.8114828255245 -3163.872320517755 2831.257706940774 163.7386714973289 316.9743446929801 3435.152074987003 163.4888946015158 -190.407557874044 3038.854892887135 163.5652118484148 -200.9246645634321 3053.112034707035 163.5638846233053 369.0241427042583 3451.532472111794 163.4842079493284 366.9007593082752 3471.981579094748 163.4816654065066 394.285649275399 3459.467252576215 163.4819355155519 751.32072739058 3296.309629832903 163.4854571073493 712.0479710755822 3210.369718866843 163.49851895403 643.986733981098 2270.38696913899 163.6235641994285 779.7198797306496 2076.491115577008 163.641975212323 774.5255232665336 2945.612680791138 163.5297145217641 854.2644571488918 2268.535950380247 163.613438184903 1185.210863367183 1899.405783231233 163.6449111540104 1474.534577266178 1997.700804340484 163.6179229910679 1243.713482585015 1320.256692444113 163.7170039648763 1260.120474245891 1310.368482035367 163.7174733281129 1282.821073460495 1109.387601763458 163.7423749365005 901.9360052938528 3123.594827007242 163.500391906706 1398.261163358518 2672.990498520424 163.5342598376735 1584.782228140844 2811.548271315324 163.5071271317896 -105.5064559953771 84.9233722415479 163.9434434210758 -108.2332644191438 60.89337972724388 163.94668877576 1781.491836285547 1455.345141452742 163.6730043872045 1692.593246691496 1857.037948944541 163.6253834964513 1786.484423576962 1867.642887562819 163.6193820026737 1829.086231373888 1490.465640224963 163.6661114042441 1822.447294059099 1549.243807705354 163.6588292449512 1260.120474245891 1310.368482035367 163.7174733281129 1243.713482585015 1320.256692444113 163.7170039648763 -129.4205396573179 285.0090712310557 163.9187191600953 -136.9308546007587 301.484962097325 163.9169564236752 1822.447294059099 1549.243807705354 163.6588292449512 1786.484423576962 1867.642887562819 163.6193820026737 1829.086231373888 1490.465640224963 163.6661114042441 1781.491836285547 1455.345141452742 163.6730043872045 1692.593246691496 1857.037948944541 163.6253834964513 1584.782228140844 2811.548271315324 163.5071271317896 1474.534577266178 1997.700804340484 163.6179229910679 1282.821073460495 1109.387601763458 163.7423749365005 -105.5064559953771 84.9233722415479 163.9434434210758 -108.2332644191438 60.89337972724388 163.94668877576 -119.4847173536227 52.59079203307783 163.9483182969037 1398.261163358518 2672.990498520424 163.5342598376735 901.9360052938528 3123.594827007242 163.500391906706 774.5255232665336 2945.612680791138 163.5297145217641 712.0479710755822 3210.369718866843 163.49851895403 1185.210863367183 1899.405783231233 163.6449111540104 854.2644571488918 2268.535950380247 163.613438184903 779.7198797306496 2076.491115577008 163.641975212323 643.986733981098 2270.38696913899 163.6235641994285 593.7754511075814 2706.233048074697 163.5696151641498 552.1304259206872 3367.85669986933 163.4860141296329 751.32072739058 3296.309629832903 163.4854571073493 394.285649275399 3459.467252576215 163.4819355155519 369.0241427042583 3451.532472111794 163.4842079493284 366.9007593082752 3471.981579094748 163.4816654065066 316.9743446929801 3435.152074987003 163.4888946015158 -190.407557874044 3038.854892887135 163.5652118484148 -200.9246645634321 3053.112034707035 163.5638846233053 -3163.870339172993 2831.259089793661 163.7386712206288 -3163.872320517755 2831.257706940774 163.7386714973289 -3150.2240272137 2717.230622295126 163.7527602346879 -3093.213830592474 2241.917877726711 163.8114843707278 -3093.338594583935 2241.97732266236 163.8114828255245 -3081.13546274455 2140.025155461558 163.8240800082992 -2149.518026142011 3076.966582442883 163.6568567337601 -2151.301015106281 3064.853967245611 163.658512734676 -2146.430310772347 87.02550045773205 164.0437831727426 -2161.435779757334 3062.399825228672 163.6593300680798 -2163.727965492457 443.2612980334711 163.9985174980311 -2169.787555444689 3072.058298408683 163.6584914005606 -2372.868057031113 3164.010099388118 163.6565986585899 -2374.651045995438 3151.897484190899 163.658254659504 -2384.785810646564 3149.443342173965 163.6590719929032 -2393.137586333883 3159.101815353959 163.6582333253879 -2488.707499328116 3209.200312029235 163.6564589183714 -2499.560632528807 3213.423785966861 163.656447178819 -2606.115113998826 3254.889252538675 163.6563316981225 -2780.313884898815 683.5732513540183 163.9978026133648 -2912.995593290785 735.2854288624781 163.9976488114583 -3081.134577755789 2140.017414554745 163.8240807306769 -3094.600138339416 2253.481035179597 163.810055741436 -3094.722506349579 2253.539338510157 163.8100542259028 -3101.713587358315 2311.946956267863 163.8028376188028 -3108.704667837963 2370.354569604953 163.7956205668963 -3110.881028695687 2388.537172970668 163.793373929237 -3136.390891716063 2601.661627754485 163.7670403280525 -3138.55270159241 2619.722663632183 163.7648087112493 -3165.117470605544 2841.660425810267 163.7373856789214 -3165.197448427879 2842.32861642729 163.7373035786226 -3165.198083439138 2842.333913016592 163.7373029242397 -3165.198209192542 2842.33496363507 163.7373023575882 861.5874995296417 -937.0989361315124 164.0280797048247 836.2042481445128 -724.7173220250975 164.0018360366069 863.842158392989 -955.9636623797142 164.0304107899291 833.9506542104296 -705.8615060383118 163.9995060525349 822.0434071183622 -606.2336687168836 163.987195194911 822.0049346348633 -605.9117696389367 163.9871554183355 820.7571050300603 -595.4711855398455 163.9858652915009 808.8025523661872 -495.4475028402685 163.9735055196361 807.5162502777002 -484.685019661657 163.9721756162254 890.4300388105826 -1178.424276061255 164.0578999037997 331.1612943102059 -1591.115858436919 164.1388974893074 122.0729385252962 -1509.749819928962 164.1386709313672 104.1192803437275 -1502.763213537243 164.1386515141888 -95.38693420562322 -1425.126033433599 164.1384357449861 -97.35600149831453 -132.5569912665492 163.9711967041965 -113.3334876946788 -1418.142191809508 164.1384163355018 -220.76626523081 -1376.335084064825 164.138300131787 -1253.637115381196 738.8343843115326 163.9153875525368 -1403.66117387236 1904.176025599844 163.7719178511626 -1415.746239192698 1917.27738071944 163.7708175057778 -1608.924357777777 1992.453556551197 163.7706081913165 -1645.332852929572 1987.611323948077 163.7730300350254 -1703.111891332413 -799.4852114905757 164.1366967648648 -1704.442665921047 -788.3495200681236 164.1353207381663 -1795.903315427041 -23.11156828726962 164.0407615430451 -1824.073874013381 2057.169235205157 163.7728364827454 -1936.011084592216 2994.119537444703 163.6570567566101 -1936.017849793075 2994.122170724855 163.6570567649721 -1938.913777418874 2995.249378740085 163.6570535636484 -1939.790027120501 2995.59044931039 163.6570526076833 -1946.406583082052 2998.165871032456 163.6570453862841 -2043.022894423976 3035.762980614768 163.6569410175346 -2053.418712314959 3039.80849340294 163.656929772367 -2149.83006578865 3077.327443015843 163.6568253994055 32.42625858197607 2962.757981948848 163.5640783240987 -75.55630899448579 2883.160880091836 163.5797062004795 -86.07341633611304 2897.418022795881 163.5783789027263 -268.0848690951898 2741.242459807166 163.6075701237391 -278.5969541520353 2755.503304583959 163.6062421133016 -382.8810932823953 2896.872390688823 163.593081341457 -393.3981999718285 2911.129532508789 163.591754139095 -2168.004566480271 3084.1709136061 163.6568353996445 -2167.64170201125 3084.258782034346 163.6568061358288 -2373.013808140948 3164.178654344415 163.6565840225729 -2391.193847922387 3171.25335638309 163.656564360568 -2391.354597369458 3171.214430551371 163.6565773244726</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"222\" source=\"#ID3344\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3342\">\r\n\t\t\t\t\t<float_array count=\"666\" id=\"ID3345\">-4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 -4.929729849700192e-005 -0.000129460301987693 -0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033 4.929729849700192e-005 0.000129460301987693 0.9999999904049033</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"222\" source=\"#ID3345\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3343\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3341\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3342\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"226\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3343\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 5 7 8 9 10 11 10 9 12 13 14 15 14 13 16 17 18 19 18 17 20 20 17 21 22 23 24 23 22 25 25 22 26 26 22 27 26 27 28 26 28 29 26 29 30 26 30 31 26 31 32 26 32 33 26 33 11 26 11 34 34 11 35 35 11 36 35 36 37 36 11 10 36 10 15 36 15 14 37 36 38 37 38 39 39 38 40 39 40 41 39 41 42 39 42 43 43 42 44 43 44 45 45 44 46 46 44 47 47 44 48 47 48 49 48 44 50 48 50 51 48 51 52 48 52 53 48 53 54 54 53 55 48 54 56 57 58 59 58 57 60 60 57 61 61 57 62 62 57 63 63 57 64 64 57 65 65 57 66 66 57 67 67 57 68 68 57 69 69 57 70 70 57 71 71 57 72 72 57 73 73 57 74 74 57 75 75 57 76 76 57 77 76 77 0 76 0 2 76 2 78 76 78 79 76 79 5 76 5 8 76 8 80 76 80 25 25 80 81 25 81 23 72 82 71 63 83 62 84 85 86 85 84 87 87 84 88 87 88 89 87 89 17 17 89 90 17 90 91 17 91 21 21 91 92 91 93 92 93 91 94 93 94 95 93 95 96 96 95 97 96 97 98 98 97 99 99 97 100 101 94 91 94 101 102 102 101 103 102 103 97 104 41 40 41 104 105 105 104 106 106 104 100 106 100 97 106 97 107 107 97 103 106 107 108 106 108 109 109 108 110 98 40 38 40 98 99 111 112 113 114 113 112 115 116 117 117 116 118 116 119 118 120 121 119 119 121 118 121 122 118 122 123 118 118 123 124 124 123 125 113 125 123 121 120 126 120 127 126 126 127 128 129 128 127 122 121 111 111 121 112 112 121 130 121 131 130 130 131 132 131 128 132 128 129 132 133 132 129 133 129 134 134 129 135 129 136 135 136 137 135 135 137 138 137 139 138 139 140 138 138 140 141 142 141 140 143 144 145 146 147 148 149 150 151 150 152 151 151 152 153 152 154 153 154 155 153 155 156 153 156 157 153 157 158 153 158 159 153 159 160 153 160 161 153 153 161 162 162 161 163 163 161 164 164 161 148 148 161 146 146 161 165 165 161 166 166 161 167 167 161 168 168 161 169 169 161 170 170 161 171 171 161 145 145 161 143 143 161 172 172 161 173 173 161 174 175 174 161 176 177 178 179 180 177 177 180 178 180 181 178 181 182 178 182 183 178 183 184 178 185 178 186 178 184 186 186 184 187 187 184 188 188 184 189 184 190 189 189 190 191 190 125 191 125 113 191 113 114 191 191 114 192 114 193 192 194 195 193 195 196 193 196 197 193 192 193 198 193 197 198 198 197 199 199 197 200 197 201 200 201 202 200 202 203 200 203 204 200 204 205 200 205 206 200 206 207 200 207 208 200 200 208 151 151 208 149 209 149 208 134 135 210 210 135 211 212 211 135 213 214 194 195 194 214 215 216 196 197 196 216 154 217 155 217 218 155 219 155 218 220 159 221 158 221 159</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3346\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3347\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3350\">-129.9339371087403 57.1188423339986 234.0269880415471 1818.671600975977 1495.019764515702 239.6542249437868 1818.671309656554 1495.018999476501 233.7447761815862 -129.933645789366 57.11960737314803 239.9364368037447 -106.4244754760257 -139.5782398579731 239.9607424334607 -129.9339371087403 57.1188423339986 234.0269880415471 -106.4247667953955 -139.5790048971294 234.0512936712688 -129.933645789366 57.11960737314803 239.9364368037447</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3350\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3348\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3351\">-0.5937571105712217 0.8046443239321724 -7.48989405681873e-005 -0.5937571105712217 0.8046443239321724 -7.48989405681873e-005 -0.5937571105712217 0.8046443239321724 -7.48989405681873e-005 -0.5937571105712217 0.8046443239321724 -7.48989405681873e-005 -0.9929332002875511 -0.1186745787042247 6.431249384094439e-005 -0.9929332002875511 -0.1186745787042247 6.431249384094439e-005 -0.9929332002875511 -0.1186745787042247 6.431249384094439e-005 -0.9929332002875511 -0.1186745787042247 6.431249384094439e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3351\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3349\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3347\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3348\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3349\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3352\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3353\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3356\">1575.630303014919 2804.91962633015 233.587177272781 699.0087307570984 3205.518394131434 239.4879789750714 699.0084393653187 3205.517629190448 233.578530311374 1575.630594334455 2804.92039136921 239.4966260349836 1575.630594334455 2804.92039136921 239.4966260349836 1575.630303014919 2804.91962633015 233.587177272781 699.0087307570984 3205.518394131434 239.4879789750714 699.0084393653187 3205.517629190448 233.578530311374</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3356\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3354\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3357\">-0.4156366707770991 -0.9095307244931333 0.0001382328678039337 -0.4156366707770991 -0.9095307244931333 0.0001382328678039337 -0.4156366707770991 -0.9095307244931333 0.0001382328678039337 -0.4156366707770991 -0.9095307244931333 0.0001382328678039337 0.4156366707770991 0.9095307244931333 -0.0001382328678039337 0.4156366707770991 0.9095307244931333 -0.0001382328678039337 0.4156366707770991 0.9095307244931333 -0.0001382328678039337 0.4156366707770991 0.9095307244931333 -0.0001382328678039337</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3357\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3355\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3353\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3354\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3355\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3358\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3359\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3362\">31.25122495938058 2974.128032492727 239.54693532916 602.9211404172588 2712.885844978241 233.6470890616881 31.25093391015798 2974.127268093252 233.6414235747903 602.9214314666392 2712.8866093778 239.5526008160606 -1414.158919881181 1908.670352350441 233.8505224054641 31.25122495938058 2974.128032492727 239.54693532916 31.25093391015798 2974.127268093252 233.6414235747903 -1414.158628831793 1908.671116749841 239.7560341598295</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3362\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3360\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3363\">0.4156366710696075 0.9095307243625566 -0.0001382125113333716 0.4156366710696075 0.9095307243625566 -0.0001382125113333716 0.4156366710696075 0.9095307243625566 -0.0001382125113333716 0.4156366710696075 0.9095307243625566 -0.0001382125113333716 -0.5933499305958008 0.8049446280613251 -7.494780493208442e-005 -0.5933499305958008 0.8049446280613251 -7.494780493208442e-005 -0.5933499305958008 0.8049446280613251 -7.494780493208442e-005 -0.5933499305958008 0.8049446280613251 -7.494780493208442e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3363\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3361\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3359\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3360\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3361\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3364\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3365\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3368\">-1795.899860739193 -23.10249587099906 234.1195010281217 -1795.903652181565 -23.10130483677494 234.1177550501394 -1795.899860825289 -23.10249609717766 234.1177536901098 -1823.974738667616 -14.28125019850359 234.1193568621641 -1823.974738667616 -14.28125019850359 234.1193568621641 -1795.899860739193 -23.10249587099906 234.1195010281217 -1795.903652181565 -23.10130483677494 234.1177550501394 -1795.899860825289 -23.10249609717766 234.1177536901098</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3368\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3366\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3369\">-0.299755853031847 -0.9540159377352193 0.0001382763172855163 -0.299755853031847 -0.9540159377352193 0.0001382763172855163 -0.299755853031847 -0.9540159377352193 0.0001382763172855163 -0.299755853031847 -0.9540159377352193 0.0001382763172855163 0.299755853031847 0.9540159377352193 -0.0001382763172855163 0.299755853031847 0.9540159377352193 -0.0001382763172855163 0.299755853031847 0.9540159377352193 -0.0001382763172855163 0.299755853031847 0.9540159377352193 -0.0001382763172855163</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3369\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3367\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3365\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3366\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3367\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3370\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3371\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID3374\">643.99018809366 2270.396041207282 233.7022480112945 653.1210233465895 2277.138714991485 233.7009944496312 653.1197598559729 2277.13778264279 233.7009626247839 653.1213143960458 2277.139479390805 239.606506203997 643.9904828793024 2270.39677318327 239.6077708414192</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID3374\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3372\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID3375\">-0.5940383812283827 0.8044366950434572 -7.276759490201651e-005 -0.5940383812283827 0.8044366950434572 -7.276759490201651e-005 -0.5940383812283827 0.8044366950434572 -7.276759490201651e-005 -0.5940383812283827 0.8044366950434572 -7.276759490201651e-005 -0.5940383812283827 0.8044366950434572 -7.276759490201651e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID3375\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3373\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3371\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3372\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3373\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3376\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3377\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID3381\">-3163.8491738454 2831.105370854309 239.7268793460835 -3163.868421008435 2831.267029624247 233.8213477921257 -3163.848986628818 2831.104663579833 233.8213678531168 -3163.868251404802 2831.267421376137 236.71525184429 -3163.868081728268 2831.267839748738 239.7268591120661 -3163.868081728268 2831.267839748738 239.7268591120661 -3163.8491738454 2831.105370854309 239.7268793460835 -3163.868251404802 2831.267421376137 236.71525184429 -3163.868421008435 2831.267029624247 233.8213477921257 -3163.848986628818 2831.104663579833 233.8213678531168</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID3381\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3378\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID3382\">-0.9931057537581284 -0.1172218455626359 2.784581593048922e-005 -0.9931057537581284 -0.1172218455626359 2.784581593048922e-005 -0.9931057537581284 -0.1172218455626359 2.784581593048922e-005 -0.9931057537581284 -0.1172218455626359 2.784581593048922e-005 -0.9931057537581284 -0.1172218455626359 2.784581593048922e-005 0.9931057537581284 0.1172218455626359 -2.784581593048922e-005 0.9931057537581284 0.1172218455626359 -2.784581593048922e-005 0.9931057537581284 0.1172218455626359 -2.784581593048922e-005 0.9931057537581284 0.1172218455626359 -2.784581593048922e-005 0.9931057537581284 0.1172218455626359 -2.784581593048922e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID3382\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3380\">\r\n\t\t\t\t\t<float_array count=\"10\" id=\"ID3383\">1414.987233043812 425.0016708184375 1414.985834520284 424.9239546415143 1414.987233042383 424.9239546416009 1414.985834399403 424.9620382452873 1414.985834175993 425.0016708163352</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID3383\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3379\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3377\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3378\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3379\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3380\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3379\" />\r\n\t\t\t\t\t<p>5 6 7 7 6 8 9 8 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3384\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3385\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID3388\">854.2834823322673 2268.532302664369 233.6921764193913 774.5441602775709 2945.608013700273 225.7344369326695 854.2830941600464 2268.531283289376 225.8181607469054 774.5445484497986 2945.609033075344 233.6084526051521 774.5445484497986 2945.609033075344 233.6084526051521 854.2834823322673 2268.532302664369 233.6921764193913 774.5441602775709 2945.608013700273 225.7344369326695 854.2830941600464 2268.531283289376 225.8181607469054 774.5441602775709 2945.608013700273 225.7344369326695 1398.261163358518 2672.990498520424 163.5342598376735 774.5255232665336 2945.612680791138 163.5297145217641 1398.279800369449 2672.985831429553 225.7389819307509 774.5445484497986 2945.609033075344 233.6084526051521 1398.280188541635 2672.986850804637 233.6129976032267 1398.280188541635 2672.986850804637 233.6129976032267 774.5445484497986 2945.609033075344 233.6084526051521 1398.279800369449 2672.985831429553 225.7389819307509 774.5441602775709 2945.608013700273 225.7344369326695 1398.261163358518 2672.990498520424 163.5342598376735 774.5255232665336 2945.612680791138 163.5297145217641 854.2644571488918 2268.535950380247 163.613438184903 774.5441602775709 2945.608013700273 225.7344369326695 854.2830941600464 2268.531283289376 225.8181607469054 774.5255232665336 2945.612680791138 163.5297145217641 774.5255232665336 2945.612680791138 163.5297145217641 854.2644571488918 2268.535950380247 163.613438184903 774.5441602775709 2945.608013700273 225.7344369326695 854.2830941600464 2268.531283289376 225.8181607469054 1474.534577266178 1997.700804340484 163.6179229910679 854.2830941600464 2268.531283289376 225.8181607469054 854.2644571488918 2268.535950380247 163.613438184903 1474.553214277311 1997.696137249558 225.8226452369228 854.2834823322673 2268.532302664369 233.6921764193913 1474.553602449505 1997.697156624599 233.6966609094041 1474.553602449505 1997.697156624599 233.6966609094041 1474.553214277311 1997.696137249558 225.8226452369228 854.2834823322673 2268.532302664369 233.6921764193913 854.2830941600464 2268.531283289376 225.8181607469054 1474.534577266178 1997.700804340484 163.6179229910679 854.2644571488918 2268.535950380247 163.613438184903 1398.279800369449 2672.985831429553 225.7389819307509 1474.553602449505 1997.697156624599 233.6966609094041 1474.553214277311 1997.696137249558 225.8226452369228 1398.280188541635 2672.986850804637 233.6129976032267 1398.280188541635 2672.986850804637 233.6129976032267 1398.279800369449 2672.985831429553 225.7389819307509 1474.553602449505 1997.697156624599 233.6966609094041 1474.553214277311 1997.696137249558 225.8226452369228 1398.279800369449 2672.985831429553 225.7389819307509 1474.534577266178 1997.700804340484 163.6179229910679 1474.553214277311 1997.696137249558 225.8226452369228 1398.261163358518 2672.990498520424 163.5342598376735 1398.261163358518 2672.990498520424 163.5342598376735 1398.279800369449 2672.985831429553 225.7389819307509 1474.534577266178 1997.700804340484 163.6179229910679 1474.553214277311 1997.696137249558 225.8226452369228</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID3388\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3386\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID3389\">-0.9931364945086794 -0.1169611010807704 6.410137302267383e-005 -0.9931364945086794 -0.1169611010807704 6.410137302267383e-005 -0.9931364945086794 -0.1169611010807704 6.410137302267383e-005 -0.9931364945086794 -0.1169611010807704 6.410137302267383e-005 0.9931364945086794 0.1169611010807704 -6.410137302267383e-005 0.9931364945086794 0.1169611010807704 -6.410137302267383e-005 0.9931364945086794 0.1169611010807704 -6.410137302267383e-005 0.9931364945086794 0.1169611010807704 -6.410137302267383e-005 0.4004955550596899 0.9162986997126728 -5.72913269037231e-005 0.4004955550596899 0.9162986997126728 -5.72913269037231e-005 0.4004955550596899 0.9162986997126728 -5.72913269037231e-005 0.4004955550596899 0.9162986997126728 -5.72913269037231e-005 0.4004955550596899 0.9162986997126728 -5.72913269037231e-005 0.4004955550596899 0.9162986997126728 -5.72913269037231e-005 -0.4004955550596899 -0.9162986997126728 5.72913269037231e-005 -0.4004955550596899 -0.9162986997126728 5.72913269037231e-005 -0.4004955550596899 -0.9162986997126728 5.72913269037231e-005 -0.4004955550596899 -0.9162986997126728 5.72913269037231e-005 -0.4004955550596899 -0.9162986997126728 5.72913269037231e-005 -0.4004955550596899 -0.9162986997126728 5.72913269037231e-005 0.9931364583665989 0.1169610690422442 -0.0002887759411523692 0.9931364583665989 0.1169610690422442 -0.0002887759411523692 0.9931364583665989 0.1169610690422442 -0.0002887759411523692 0.9931364583665989 0.1169610690422442 -0.0002887759411523692 -0.9931364583665989 -0.1169610690422442 0.0002887759411523692 -0.9931364583665989 -0.1169610690422442 0.0002887759411523692 -0.9931364583665989 -0.1169610690422442 0.0002887759411523692 -0.9931364583665989 -0.1169610690422442 0.0002887759411523692 -0.4001577024271072 -0.9164462940717838 5.718699515166499e-005 -0.4001577024271072 -0.9164462940717838 5.718699515166499e-005 -0.4001577024271072 -0.9164462940717838 5.718699515166499e-005 -0.4001577024271072 -0.9164462940717838 5.718699515166499e-005 -0.4001577024271072 -0.9164462940717838 5.718699515166499e-005 -0.4001577024271072 -0.9164462940717838 5.718699515166499e-005 0.4001577024271072 0.9164462940717838 -5.718699515166499e-005 0.4001577024271072 0.9164462940717838 -5.718699515166499e-005 0.4001577024271072 0.9164462940717838 -5.718699515166499e-005 0.4001577024271072 0.9164462940717838 -5.718699515166499e-005 0.4001577024271072 0.9164462940717838 -5.718699515166499e-005 0.4001577024271072 0.9164462940717838 -5.718699515166499e-005 0.9936816319325629 0.1122355127644401 -6.351646877825317e-005 0.9936816319325629 0.1122355127644401 -6.351646877825317e-005 0.9936816319325629 0.1122355127644401 -6.351646877825317e-005 0.9936816319325629 0.1122355127644401 -6.351646877825317e-005 -0.9936816319325629 -0.1122355127644401 6.351646877825317e-005 -0.9936816319325629 -0.1122355127644401 6.351646877825317e-005 -0.9936816319325629 -0.1122355127644401 6.351646877825317e-005 -0.9936816319325629 -0.1122355127644401 6.351646877825317e-005 -0.9936815954755511 -0.1122354806745577 0.0002892938200308179 -0.9936815954755511 -0.1122354806745577 0.0002892938200308179 -0.9936815954755511 -0.1122354806745577 0.0002892938200308179 -0.9936815954755511 -0.1122354806745577 0.0002892938200308179 0.9936815954755511 0.1122354806745577 -0.0002892938200308179 0.9936815954755511 0.1122354806745577 -0.0002892938200308179 0.9936815954755511 0.1122354806745577 -0.0002892938200308179 0.9936815954755511 0.1122354806745577 -0.0002892938200308179</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID3389\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3387\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3385\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3386\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3387\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 11 8 12 11 12 13 14 15 16 15 17 16 16 17 18 19 18 17 20 21 22 21 20 23 24 25 26 27 26 25 28 29 30 29 28 31 29 31 32 32 31 33 34 35 36 36 35 37 35 38 37 39 37 38 40 41 42 41 40 43 44 45 46 47 46 45 48 49 50 49 48 51 52 53 54 55 54 53</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3390\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3391\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID3394\">-86.07204014347872 2897.421636915976 191.4949930199821 -268.0834929026501 2741.246073927344 191.5241842409981 -278.595577959486 2755.506918704069 191.5228562305663 -75.55493280185874 2883.164494211921 191.4963203177411 -75.55493280185874 2883.164494211921 191.4963203177411 -86.07204014347872 2897.421636915976 191.4949930199821 -268.0834929026501 2741.246073927344 191.5241842409981 -278.595577959486 2755.506918704069 191.5228562305663 -75.55493280185874 2883.164494211921 191.4963203177411 -86.07341633611304 2897.418022795881 163.5783789027263 -75.55630899448579 2883.160880091836 163.5797062004795 -86.07204014347872 2897.421636915976 191.4949930199821 -86.07204014347872 2897.421636915976 191.4949930199821 -75.55493280185874 2883.164494211921 191.4963203177411 -86.07341633611304 2897.418022795881 163.5783789027263 -75.55630899448579 2883.160880091836 163.5797062004795 -278.5969541520353 2755.503304583959 163.6062421133016 -268.0834929026501 2741.246073927344 191.5241842409981 -268.0848690951898 2741.242459807166 163.6075701237391 -278.595577959486 2755.506918704069 191.5228562305663 -278.595577959486 2755.506918704069 191.5228562305663 -278.5969541520353 2755.503304583959 163.6062421133016 -268.0834929026501 2741.246073927344 191.5241842409981 -268.0848690951898 2741.242459807166 163.6075701237391</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID3394\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3392\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID3395\">-4.929654240938868e-005 -0.0001294612617288552 -0.9999999904048164 -4.929654240938868e-005 -0.0001294612617288552 -0.9999999904048164 -4.929654240938868e-005 -0.0001294612617288552 -0.9999999904048164 -4.929654240938868e-005 -0.0001294612617288552 -0.9999999904048164 4.929654240938868e-005 0.0001294612617288552 0.9999999904048164 4.929654240938868e-005 0.0001294612617288552 0.9999999904048164 4.929654240938868e-005 0.0001294612617288552 0.9999999904048164 4.929654240938868e-005 0.0001294612617288552 0.9999999904048164 -0.8047364513680377 -0.5936322348575288 0.0001165231038488811 -0.8047364513680377 -0.5936322348575288 0.0001165231038488811 -0.8047364513680377 -0.5936322348575288 0.0001165231038488811 -0.8047364513680377 -0.5936322348575288 0.0001165231038488811 0.8047364513680377 0.5936322348575288 -0.0001165231038488811 0.8047364513680377 0.5936322348575288 -0.0001165231038488811 0.8047364513680377 0.5936322348575288 -0.0001165231038488811 0.8047364513680377 0.5936322348575288 -0.0001165231038488811 0.8049454627121266 0.593348791595362 -0.0001164967124628693 0.8049454627121266 0.593348791595362 -0.0001164967124628693 0.8049454627121266 0.593348791595362 -0.0001164967124628693 0.8049454627121266 0.593348791595362 -0.0001164967124628693 -0.8049454627121266 -0.593348791595362 0.0001164967124628693 -0.8049454627121266 -0.593348791595362 0.0001164967124628693 -0.8049454627121266 -0.593348791595362 0.0001164967124628693 -0.8049454627121266 -0.593348791595362 0.0001164967124628693</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID3395\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3393\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3391\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3392\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3393\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 20 21 22 23 22 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3396\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3397\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3401\">-3080.613463754738 2135.716282445529 239.8128014626067 -3080.618586026756 2135.750978303707 235.8589840092691 -3080.614006037353 2135.715154584327 239.8128016474383 -3080.739346148959 2136.767986600037 239.8126715143605 -3080.619736405466 2135.759976336985 234.8658826245154 -3080.739890493078 2136.76761086897 237.0209367438951 -3080.740310199518 2136.767321169054 234.8684188332251 -3080.740310199518 2136.767321169054 234.8684188332251 -3080.739890493078 2136.76761086897 237.0209367438951 -3080.619736405466 2135.759976336985 234.8658826245154 -3080.739346148959 2136.767986600037 239.8126715143605 -3080.618586026756 2135.750978303707 235.8589840092691 -3080.613463754738 2135.716282445529 239.8128014626067 -3080.614006037353 2135.715154584327 239.8128016474383</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID3401\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3398\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3402\">-0.992934511811563 -0.1186634980268575 0.0001717252550443576 -0.992934511811563 -0.1186634980268575 0.0001717252550443576 -0.992934511811563 -0.1186634980268575 0.0001717252550443576 -0.992934511811563 -0.1186634980268575 0.0001717252550443576 -0.992934511811563 -0.1186634980268575 0.0001717252550443576 -0.992934511811563 -0.1186634980268575 0.0001717252550443576 -0.992934511811563 -0.1186634980268575 0.0001717252550443576 0.992934511811563 0.1186634980268575 -0.0001717252550443576 0.992934511811563 0.1186634980268575 -0.0001717252550443576 0.992934511811563 0.1186634980268575 -0.0001717252550443576 0.992934511811563 0.1186634980268575 -0.0001717252550443576 0.992934511811563 0.1186634980268575 -0.0001717252550443576 0.992934511811563 0.1186634980268575 -0.0001717252550443576 0.992934511811563 0.1186634980268575 -0.0001717252550443576</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID3402\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3400\">\r\n\t\t\t\t\t<float_array count=\"14\" id=\"ID3403\">1420.942036410495 424.996367197571 1420.941732428895 424.9443352530852 1420.942045437875 424.9963671967799 1420.932977661445 424.9963671971312 1420.941653808774 424.9312661133162 1420.932977370507 424.959628134336 1420.932977146178 424.9313011272275</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID3403\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3399\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3397\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3398\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3399\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3400\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3399\" />\r\n\t\t\t\t\t<p>7 8 9 8 10 9 9 10 11 10 12 11 13 11 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3404\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3405\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID3408\">-200.9232882999231 3053.115648729015 191.4804985286757 -382.8797170188718 2896.876004710863 191.5096952468307 -393.3968237083059 2911.133146530775 191.5083680444674 -190.4061816105377 3038.858506909121 191.4818257537854 -190.4061816105377 3038.858506909121 191.4818257537854 -200.9232882999231 3053.115648729015 191.4804985286757 -382.8797170188718 2896.876004710863 191.5096952468307 -393.3968237083059 2911.133146530775 191.5083680444674 369.0270151171417 3451.540015503316 221.7519239256736 -190.407557874044 3038.854892887135 163.5652118484148 369.0241427042583 3451.532472111794 163.4842079493284 -190.4061816105377 3038.858506909121 191.4818257537854 -382.8797170188718 2896.876004710863 191.5096952468307 -1608.924357777777 1992.453556551197 163.7706081913165 -382.8810932823953 2896.872390688823 163.593081341457 -1608.92148536488 1992.461099942645 222.0383241676646 369.0270151171417 3451.540015503316 221.7519239256736 -382.8797170188718 2896.876004710863 191.5096952468307 -1608.92148536488 1992.461099942645 222.0383241676646 -1608.924357777777 1992.453556551197 163.7706081913165 -382.8810932823953 2896.872390688823 163.593081341457 -190.4061816105377 3038.858506909121 191.4818257537854 -190.407557874044 3038.854892887135 163.5652118484148 369.0241427042583 3451.532472111794 163.4842079493284 -393.3981999718285 2911.129532508789 163.591754139095 -382.8797170188718 2896.876004710863 191.5096952468307 -382.8810932823953 2896.872390688823 163.593081341457 -393.3968237083059 2911.133146530775 191.5083680444674 -393.3968237083059 2911.133146530775 191.5083680444674 -393.3981999718285 2911.129532508789 163.591754139095 -382.8797170188718 2896.876004710863 191.5096952468307 -382.8810932823953 2896.872390688823 163.593081341457 -190.4061816105377 3038.858506909121 191.4818257537854 -200.9246645634321 3053.112034707035 163.5638846233053 -190.407557874044 3038.854892887135 163.5652118484148 -200.9232882999231 3053.115648729015 191.4804985286757 -200.9232882999231 3053.115648729015 191.4804985286757 -190.4061816105377 3038.858506909121 191.4818257537854 -200.9246645634321 3053.112034707035 163.5638846233053 -190.407557874044 3038.854892887135 163.5652118484148</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID3408\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3406\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID3409\">-4.929908535485319e-005 -0.0001294577473327278 -0.9999999904051459 -4.929908535485319e-005 -0.0001294577473327278 -0.9999999904051459 -4.929908535485319e-005 -0.0001294577473327278 -0.9999999904051459 -4.929908535485319e-005 -0.0001294577473327278 -0.9999999904051459 4.929908535485319e-005 0.0001294577473327278 0.9999999904051459 4.929908535485319e-005 0.0001294577473327278 0.9999999904051459 4.929908535485319e-005 0.0001294577473327278 0.9999999904051459 4.929908535485319e-005 0.0001294577473327278 0.9999999904051459 0.5936322442467292 -0.8047364493906841 7.49177330277721e-005 0.5936322442467292 -0.8047364493906841 7.49177330277721e-005 0.5936322442467292 -0.8047364493906841 7.49177330277721e-005 0.5936322442467292 -0.8047364493906841 7.49177330277721e-005 0.5936322442467292 -0.8047364493906841 7.49177330277721e-005 0.5936322442467292 -0.8047364493906841 7.49177330277721e-005 0.5936322442467292 -0.8047364493906841 7.49177330277721e-005 0.5936322442467292 -0.8047364493906841 7.49177330277721e-005 -0.5936322442467292 0.8047364493906841 -7.49177330277721e-005 -0.5936322442467292 0.8047364493906841 -7.49177330277721e-005 -0.5936322442467292 0.8047364493906841 -7.49177330277721e-005 -0.5936322442467292 0.8047364493906841 -7.49177330277721e-005 -0.5936322442467292 0.8047364493906841 -7.49177330277721e-005 -0.5936322442467292 0.8047364493906841 -7.49177330277721e-005 -0.5936322442467292 0.8047364493906841 -7.49177330277721e-005 -0.5936322442467292 0.8047364493906841 -7.49177330277721e-005 0.8047364513680295 0.593632234857548 -0.0001165230639909268 0.8047364513680295 0.593632234857548 -0.0001165230639909268 0.8047364513680295 0.593632234857548 -0.0001165230639909268 0.8047364513680295 0.593632234857548 -0.0001165230639909268 -0.8047364513680295 -0.593632234857548 0.0001165230639909268 -0.8047364513680295 -0.593632234857548 0.0001165230639909268 -0.8047364513680295 -0.593632234857548 0.0001165230639909268 -0.8047364513680295 -0.593632234857548 0.0001165230639909268 -0.8047364513680375 -0.5936322348575371 0.0001165230639909268 -0.8047364513680375 -0.5936322348575371 0.0001165230639909268 -0.8047364513680375 -0.5936322348575371 0.0001165230639909268 -0.8047364513680375 -0.5936322348575371 0.0001165230639909268 0.8047364513680375 0.5936322348575371 -0.0001165230639909268 0.8047364513680375 0.5936322348575371 -0.0001165230639909268 0.8047364513680375 0.5936322348575371 -0.0001165230639909268 0.8047364513680375 0.5936322348575371 -0.0001165230639909268</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID3409\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3407\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3405\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3406\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3407\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 11 8 12 12 13 14 13 12 15 15 12 8 16 17 18 18 17 19 20 19 17 17 16 21 21 16 22 23 22 16 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 36 37 38 39 38 37</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3410\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3411\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID3414\">1693.667773422508 1847.566033562067 236.622888333232 1683.887288234226 1846.460962704509 233.7058390250663 1693.667626246368 1847.565655498381 233.7054560304685 1683.887591697867 1846.461755625547 239.6152600791997 1693.664191240824 1847.566013032111 239.6146098576951 1693.664191240824 1847.566013032111 239.6146098576951 1693.667773422508 1847.566033562067 236.622888333232 1683.887591697867 1846.461755625547 239.6152600791997 1683.887288234226 1846.460962704509 233.7058390250663 1693.667626246368 1847.565655498381 233.7054560304685</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID3414\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3412\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID3415\">0.1122358196291144 -0.993681591254039 0.00012647142830501 0.1122358196291144 -0.993681591254039 0.00012647142830501 0.1122358196291144 -0.993681591254039 0.00012647142830501 0.1122358196291144 -0.993681591254039 0.00012647142830501 0.1122358196291144 -0.993681591254039 0.00012647142830501 -0.1122358196291144 0.993681591254039 -0.00012647142830501 -0.1122358196291144 0.993681591254039 -0.00012647142830501 -0.1122358196291144 0.993681591254039 -0.00012647142830501 -0.1122358196291144 0.993681591254039 -0.00012647142830501 -0.1122358196291144 0.993681591254039 -0.00012647142830501</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID3415\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3413\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3411\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3412\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3413\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 7 6 8 9 8 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3416\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3422\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3426\">1693.667773422508 1847.566033562067 236.622888333232 1688.825016036866 1890.409726678451 239.6091568980098 1693.664191240824 1847.566013032111 239.6146098576951 1688.828598218554 1890.409747208392 236.6174353735423 1688.828598218554 1890.409747208392 236.6174353735423 1693.667773422508 1847.566033562067 236.622888333232 1688.825016036866 1890.409726678451 239.6091568980098 1693.664191240824 1847.566013032111 239.6146098576951</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3426\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3423\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3427\">0.9936808780523182 0.112235890603685 0.001190568591673558 0.9936808780523182 0.112235890603685 0.001190568591673558 0.9936808780523182 0.112235890603685 0.001190568591673558 0.9936808780523182 0.112235890603685 0.001190568591673558 -0.9936808780523182 -0.112235890603685 -0.001190568591673558 -0.9936808780523182 -0.112235890603685 -0.001190568591673558 -0.9936808780523182 -0.112235890603685 -0.001190568591673558 -0.9936808780523182 -0.112235890603685 -0.001190568591673558</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3427\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3425\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID3428\">18.43287133263214 0.9261578241801241 18.77086713286495 0.9654525537351004 18.43287451115423 0.9655288322391513 18.77086395434274 0.9260815456760145</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID3428\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3424\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3422\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3423\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3424\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3425\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3424\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3429\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3430\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3433\">1688.825016036866 1890.409726678451 239.6091568980098 1688.828598218554 1890.409747208392 236.6174353735423 1688.828747668084 1890.410148162573 239.6091566498253 1688.828747668084 1890.410148162573 239.6091566498253 1688.828598218554 1890.409747208392 236.6174353735423 1688.825016036866 1890.409726678451 239.6091568980098</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3433\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3431\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3434\">0.1122353923339493 -0.9936816393765672 0.0001275677960667885 0.1122353923339493 -0.9936816393765672 0.0001275677960667885 0.1122353923339493 -0.9936816393765672 0.0001275677960667885 -0.1122353923339493 0.9936816393765672 -0.0001275677960667885 -0.1122353923339493 0.9936816393765672 -0.0001275677960667885 -0.1122353923339493 0.9936816393765672 -0.0001275677960667885</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3434\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3432\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3430\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3431\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3432\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3435\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3436\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3439\">-1401.908904300819 1909.241718609605 239.7553702470329 -1401.141600979938 1914.193650615965 239.7546914207208 -1404.001222340502 1912.101304263253 239.7551031708687 -1399.049283625639 1911.334063655414 239.7549584970797 -1399.049283625639 1911.334063655414 239.7549584970797 -1401.908904300819 1909.241718609605 239.7553702470329 -1401.141600979938 1914.193650615965 239.7546914207208 -1404.001222340502 1912.101304263253 239.7551031708687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3439\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3437\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3440\">4.927198840023879e-005 0.0001294484132520629 0.9999999904076898 4.927198840023879e-005 0.0001294484132520629 0.9999999904076898 4.927198840023879e-005 0.0001294484132520629 0.9999999904076898 4.927198840023879e-005 0.0001294484132520629 0.9999999904076898 -4.927198840023879e-005 -0.0001294484132520629 -0.9999999904076898 -4.927198840023879e-005 -0.0001294484132520629 -0.9999999904076898 -4.927198840023879e-005 -0.0001294484132520629 -0.9999999904076898 -4.927198840023879e-005 -0.0001294484132520629 -0.9999999904076898</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3440\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3438\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3436\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3437\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3438\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3441\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3442\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3445\">-1409.372588624938 1896.065403511032 239.7574436506959 -1406.296708227241 1900.021324923436 239.756780008197 -1409.812591446159 1899.581330870757 239.7570101992878 -1405.856706225441 1896.505398812427 239.7572134594912 -1405.856706225441 1896.505398812427 239.7572134594912 -1409.372588624938 1896.065403511032 239.7574436506959 -1406.296708227241 1900.021324923436 239.756780008197 -1409.812591446159 1899.581330870757 239.7570101992878</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3445\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3443\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3446\">4.927198839617131e-005 0.000129448413256309 0.9999999904076898 4.927198839617131e-005 0.000129448413256309 0.9999999904076898 4.927198839617131e-005 0.000129448413256309 0.9999999904076898 4.927198839617131e-005 0.000129448413256309 0.9999999904076898 -4.927198839617131e-005 -0.000129448413256309 -0.9999999904076898 -4.927198839617131e-005 -0.000129448413256309 -0.9999999904076898 -4.927198839617131e-005 -0.000129448413256309 -0.9999999904076898 -4.927198839617131e-005 -0.000129448413256309 -0.9999999904076898</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3446\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3444\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3442\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3443\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3444\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3447\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3448\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3452\">-1936.007338584913 2994.129374900041 239.645245003878 -1936.007352175398 2994.129339192589 239.3633214448981 -1940.465569650655 2995.864287963157 239.6452392672273 -1940.465569650655 2995.864287963157 239.6452392672273 -1936.007352175398 2994.129339192589 239.3633214448981 -1936.007338584913 2994.129374900041 239.645245003878</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3452\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3449\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3453\">0.3626562459152725 0.9319229737129512 -0.0001355162422154545 0.3626562459152725 0.9319229737129512 -0.0001355162422154545 0.3626562459152725 0.9319229737129512 -0.0001355162422154545 -0.3626562459152725 -0.9319229737129512 0.0001355162422154545 -0.3626562459152725 -0.9319229737129512 0.0001355162422154545 -0.3626562459152725 -0.9319229737129512 0.0001355162422154545</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3453\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3451\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3454\">735.2876751118432 102.0904834166815 734.0725631557582 101.970526177402 734.0725632279566 102.090485857651</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3454\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3450\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3448\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3449\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3450\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3450\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3451\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3455\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3456\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3459\">-3163.870339172993 2831.259089793661 163.7386712206288 -3165.117470605544 2841.660425810267 163.7373856789214 -3163.872320517755 2831.257706940774 163.7386714973289 -3163.872320517755 2831.257706940774 163.7386714973289 -3165.117470605544 2841.660425810267 163.7373856789214 -3163.870339172993 2831.259089793661 163.7386712206288</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3459\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3457\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3460\">4.926897983732053e-005 0.0001295013050592786 0.9999999904009899 4.926897983732053e-005 0.0001295013050592786 0.9999999904009899 4.926897983732053e-005 0.0001295013050592786 0.9999999904009899 -4.926897983732053e-005 -0.0001295013050592786 -0.9999999904009899 -4.926897983732053e-005 -0.0001295013050592786 -0.9999999904009899 -4.926897983732053e-005 -0.0001295013050592786 -0.9999999904009899</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3460\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3458\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3456\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3457\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3458\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3461\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3462\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID3466\">-3165.197322906807 2842.337292004426 181.7228790422112 -3165.152516187174 2841.961622541446 178.1351351167858 -3165.071228176344 2841.297684963196 204.1826028498319 -3165.197498895079 2842.336829501478 178.1506847934856 -3165.197498895079 2842.336829501478 178.1506847934856 -3165.197322906807 2842.337292004426 181.7228790422112 -3165.152516187174 2841.961622541446 178.1351351167858 -3165.071228176344 2841.297684963196 204.1826028498319 -3165.197498895079 2842.336829501478 178.1506847934856 -3165.197448427879 2842.32861642729 163.7373035786226 -3165.152516187174 2841.961622541446 178.1351351167858 -3165.198083439138 2842.333913016592 163.7373029242397 -3165.198209192542 2842.33496363507 163.7373023575882 -3165.198209192542 2842.33496363507 163.7373023575882 -3165.197498895079 2842.336829501478 178.1506847934856 -3165.198083439138 2842.333913016592 163.7373029242397 -3165.197448427879 2842.32861642729 163.7373035786226 -3165.152516187174 2841.961622541446 178.1351351167858</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3466\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3463\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID3467\">-0.9928896852542246 -0.1190380979976589 6.434956666247075e-005 -0.9928896852542246 -0.1190380979976589 6.434956666247075e-005 -0.9928896852542246 -0.1190380979976589 6.434956666247075e-005 -0.9928896852542246 -0.1190380979976589 6.434956666247075e-005 0.9928896852542246 0.1190380979976589 -6.434956666247075e-005 0.9928896852542246 0.1190380979976589 -6.434956666247075e-005 0.9928896852542246 0.1190380979976589 -6.434956666247075e-005 0.9928896852542246 0.1190380979976589 -6.434956666247075e-005 -0.9928897035847608 -0.1190379451037169 6.43494398857555e-005 -0.9928897035847608 -0.1190379451037169 6.43494398857555e-005 -0.9928897035847608 -0.1190379451037169 6.43494398857555e-005 -0.9928897035847608 -0.1190379451037169 6.43494398857555e-005 -0.9928897035847608 -0.1190379451037169 6.43494398857555e-005 0.9928897035847608 0.1190379451037169 -6.43494398857555e-005 0.9928897035847608 0.1190379451037169 -6.43494398857555e-005 0.9928897035847608 0.1190379451037169 -6.43494398857555e-005 0.9928897035847608 0.1190379451037169 -6.43494398857555e-005 0.9928897035847608 0.1190379451037169 -6.43494398857555e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3467\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3465\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3468\">1414.846509939258 424.2370231794558 1414.849741804913 424.1898080744601 1414.8554897467 424.5325901025399 1414.84650993938 424.1900133173842 1414.84651363256 424.1900133209335 1414.846568302586 424.0003340782646 1414.849745498094 424.1898080780094 1414.846522679879 424.0003340782656 1414.84651363048 424.000334072517</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"9\" source=\"#ID3468\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3464\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3462\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3463\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3464\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3465\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 9 5 10 6 9 5 8 4 11 7 11 7 8 4 12 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3464\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 13 14 15 15 14 16 17 16 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3469\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3470\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3473\">1260.123346565154 1310.376025616565 221.9851893044385 -105.5035836761244 84.93091582274383 222.2111593974014 -129.4176673380475 285.0166148122607 222.1864351364155 1282.823945779766 1109.395145344647 222.0100909128316 1282.823945779766 1109.395145344647 222.0100909128316 1260.123346565154 1310.376025616565 221.9851893044385 -105.5035836761244 84.93091582274383 222.2111593974014 -129.4176673380475 285.0166148122607 222.1864351364155 1260.123346565154 1310.376025616565 221.9851893044385 -129.4205396573179 285.0090712310557 163.9187191600953 1260.120474245891 1310.368482035367 163.7174733281129 -129.4176673380475 285.0166148122607 222.1864351364155 -129.4176673380475 285.0166148122607 222.1864351364155 1260.123346565154 1310.376025616565 221.9851893044385 -129.4205396573179 285.0090712310557 163.9187191600953 1260.120474245891 1310.368482035367 163.7174733281129</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3473\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3471\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3474\">-4.929520861729212e-005 -0.0001294641640523944 -0.9999999904045063 -4.929520861729212e-005 -0.0001294641640523944 -0.9999999904045063 -4.929520861729212e-005 -0.0001294641640523944 -0.9999999904045063 -4.929520861729212e-005 -0.0001294641640523944 -0.9999999904045063 4.929520861729212e-005 0.0001294641640523944 0.9999999904045063 4.929520861729212e-005 0.0001294641640523944 0.9999999904045063 4.929520861729212e-005 0.0001294641640523944 0.9999999904045063 4.929520861729212e-005 0.0001294641640523944 0.9999999904045063 0.5937570115724824 -0.8046443969841709 7.490323918028827e-005 0.5937570115724824 -0.8046443969841709 7.490323918028827e-005 0.5937570115724824 -0.8046443969841709 7.490323918028827e-005 0.5937570115724824 -0.8046443969841709 7.490323918028827e-005 -0.5937570115724824 0.8046443969841709 -7.490323918028827e-005 -0.5937570115724824 0.8046443969841709 -7.490323918028827e-005 -0.5937570115724824 0.8046443969841709 -7.490323918028827e-005 -0.5937570115724824 0.8046443969841709 -7.490323918028827e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3474\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3472\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3470\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3471\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3472\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3475\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3476\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3479\">369.0270151171417 3451.540015503316 221.7519239256736 -1415.743366779856 1917.284924110922 222.0385334821234 -1608.92148536488 1992.461099942645 222.0383241676646 552.1332983336029 3367.864243260755 221.7537301059749 552.1332983336029 3367.864243260755 221.7537301059749 369.0270151171417 3451.540015503316 221.7519239256736 -1415.743366779856 1917.284924110922 222.0385334821234 -1608.92148536488 1992.461099942645 222.0383241676646</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3479\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3477\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3480\">-4.929681551314255e-005 -0.0001294609081210283 -0.9999999904048487 -4.929681551314255e-005 -0.0001294609081210283 -0.9999999904048487 -4.929681551314255e-005 -0.0001294609081210283 -0.9999999904048487 -4.929681551314255e-005 -0.0001294609081210283 -0.9999999904048487 4.929681551314255e-005 0.0001294609081210283 0.9999999904048487 4.929681551314255e-005 0.0001294609081210283 0.9999999904048487 4.929681551314255e-005 0.0001294609081210283 0.9999999904048487 4.929681551314255e-005 0.0001294609081210283 0.9999999904048487</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3480\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3478\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3476\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3477\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3478\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3478\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3481\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3482\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3485\">-145.1039258801238 297.5095363685214 239.9020651220891 -147.0948735384914 302.1080668298323 239.9015679335534 -148.3986798968972 298.8133560246843 239.9020587062388 -143.8001213020216 300.8042470298055 239.9015743495106 -143.8001213020216 300.8042470298055 239.9015743495106 -145.1039258801238 297.5095363685214 239.9020651220891 -147.0948735384914 302.1080668298323 239.9015679335534 -148.3986798968972 298.8133560246843 239.9020587062388</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3485\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3483\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3486\">4.928166756541876e-005 0.0001294556501100513 0.9999999904062761 4.928166756541876e-005 0.0001294556501100513 0.9999999904062761 4.928166756541876e-005 0.0001294556501100513 0.9999999904062761 4.928166756541876e-005 0.0001294556501100513 0.9999999904062761 -4.928166756541876e-005 -0.0001294556501100513 -0.9999999904062761 -4.928166756541876e-005 -0.0001294556501100513 -0.9999999904062761 -4.928166756541876e-005 -0.0001294556501100513 -0.9999999904062761 -4.928166756541876e-005 -0.0001294556501100513 -0.9999999904062761</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3486\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3484\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3482\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3483\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3484\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3487\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3488\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3491\">-127.9789478182584 299.7799324467915 239.9009272590012 -127.2491994935499 304.7375348384339 239.9002495061457 -130.0928802931617 302.6235770082553 239.9006633112667 -125.1352570171775 301.893892062847 239.900513453161 -125.1352570171775 301.893892062847 239.900513453161 -127.9789478182584 299.7799324467915 239.9009272590012 -127.2491994935499 304.7375348384339 239.9002495061457 -130.0928802931617 302.6235770082553 239.9006633112667</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3491\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3489\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3492\">4.928166755697133e-005 0.0001294556501179415 0.9999999904062761 4.928166755697133e-005 0.0001294556501179415 0.9999999904062761 4.928166755697133e-005 0.0001294556501179415 0.9999999904062761 4.928166755697133e-005 0.0001294556501179415 0.9999999904062761 -4.928166755697133e-005 -0.0001294556501179415 -0.9999999904062761 -4.928166755697133e-005 -0.0001294556501179415 -0.9999999904062761 -4.928166755697133e-005 -0.0001294556501179415 -0.9999999904062761 -4.928166755697133e-005 -0.0001294556501179415 -0.9999999904062761</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3492\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3490\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3488\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3489\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3490\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3493\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3494\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID3497\">782.0930176593902 2075.465303856922 233.7206827393875 782.2904197039352 2075.381360325601 233.7207323094482 779.723333793133 2076.500187716961 233.7206590241784 782.2927102883623 2075.378094469384 233.7206847378619 779.723333793133 2076.500187716961 233.7206590241784 649.6826225243963 2262.369342834061 233.7030619917667 643.99018809366 2270.396041207282 233.7022480112945 780.9085666298624 2077.329887659991 233.7205108454046 782.2904197039352 2075.381360325601 233.7207323094482 782.0930176593902 2075.465303856922 233.7206827393875 779.7210349707289 2076.494149830196 187.0803777999236 779.7198797306496 2076.491115577008 163.641975212323 779.723333793133 2076.500187716961 233.7206590241784 780.9085666298624 2077.329887659991 233.7205108454046 780.9097231883484 2077.330697286954 233.7205107008093 649.6826225243963 2262.369342834061 233.7030619917667 782.2904197039352 2075.381360325601 233.7207323094482 782.1333978910307 2075.60523731182 233.7206631877484 780.9097231883484 2077.330697286954 233.7205107008093 782.2904197039352 2075.381360325601 233.7207323094482 780.9085666298624 2077.329887659991 233.7205108454046 782.1333978910307 2075.60523731182 233.7206631877484 780.9097231883484 2077.330697286954 233.7205107008093 782.2904197039352 2075.381360325601 233.7207323094482 780.9085666298624 2077.329887659991 233.7205108454046 782.1333978910307 2075.60523731182 233.7206631877484 780.9097231883484 2077.330697286954 233.7205107008093 782.2904197039352 2075.381360325601 233.7207323094482 780.9085666298624 2077.329887659991 233.7205108454046 782.1333978910307 2075.60523731182 233.7206631877484</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID3497\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3495\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID3498\">-0.009182272547674038 -0.02100271825024251 0.9997372513300489 -0.009182272547674038 -0.02100271825024251 0.9997372513300489 -0.009182272547674038 -0.02100271825024251 0.9997372513300489 -0.009182272547674038 -0.02100271825024251 0.9997372513300489 2.843746701226756e-005 0.0001147218147214045 0.999999993015108 2.843746701226756e-005 0.0001147218147214045 0.999999993015108 2.843746701226756e-005 0.0001147218147214045 0.999999993015108 2.843746701226756e-005 0.0001147218147214045 0.999999993015108 2.843746701226756e-005 0.0001147218147214045 0.999999993015108 -0.4002173215968008 -0.9164202509491353 0.0001383625930403222 -0.4002173215968008 -0.9164202509491353 0.0001383625930403222 -0.4002173215968008 -0.9164202509491353 0.0001383625930403222 -0.4002173215968008 -0.9164202509491353 0.0001383625930403222 0.006135118187731846 0.004445284342317069 0.9999712994741091 0.006135118187731846 0.004445284342317069 0.9999712994741091 0.006135118187731846 0.004445284342317069 0.9999712994741091 0.006135118187731846 0.004445284342317069 0.9999712994741091 0.006135118187731846 0.004445284342317069 0.9999712994741091 -0.01335225573801574 -0.009571711044301622 -0.9998650407001893 -0.01335225573801574 -0.009571711044301622 -0.9998650407001893 -0.01335225573801574 -0.009571711044301622 -0.9998650407001893 -0.01335225573801574 -0.009571711044301622 -0.9998650407001893 -0.0133522557391834 -0.009571711045130972 -0.9998650407001657 -0.0133522557391834 -0.009571711045130972 -0.9998650407001657 -0.0133522557391834 -0.009571711045130972 -0.9998650407001657 -0.0133522557391834 -0.009571711045130972 -0.9998650407001657 -0.01335225573801572 -0.009571711044301618 -0.9998650407001892 -0.01335225573801572 -0.009571711044301618 -0.9998650407001892 -0.01335225573801572 -0.009571711044301618 -0.9998650407001892 -0.01335225573801572 -0.009571711044301618 -0.9998650407001892</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID3498\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3496\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3494\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3495\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3496\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 7 4 8 9 10 11 10 9 12 13 14 15 14 13 16 14 16 17 18 19 20 19 18 21 22 23 24 23 22 25 26 27 28 27 26 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3499\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3500\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3503\">779.723333793133 2076.500187716961 233.7206590241784 643.9878892211855 2270.390003392166 187.0619667870257 779.7210349707289 2076.494149830196 187.0803777999236 643.99018809366 2270.396041207282 233.7022480112945 643.99018809366 2270.396041207282 233.7022480112945 779.723333793133 2076.500187716961 233.7206590241784 643.9878892211855 2270.390003392166 187.0619667870257 779.7210349707289 2076.494149830196 187.0803777999236 779.7210349707289 2076.494149830196 187.0803777999236 643.986733981098 2270.38696913899 163.6235641994285 779.7198797306496 2076.491115577008 163.641975212323 643.9878892211855 2270.390003392166 187.0619667870257 643.9878892211855 2270.390003392166 187.0619667870257 779.7210349707289 2076.494149830196 187.0803777999236 643.986733981098 2270.38696913899 163.6235641994285 779.7198797306496 2076.491115577008 163.641975212323</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3503\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3501\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3504\">-0.819219914746133 -0.5734794836312001 0.0001146186320867247 -0.819219914746133 -0.5734794836312001 0.0001146186320867247 -0.819219914746133 -0.5734794836312001 0.0001146186320867247 -0.819219914746133 -0.5734794836312001 0.0001146186320867247 0.819219914746133 0.5734794836312001 -0.0001146186320867247 0.819219914746133 0.5734794836312001 -0.0001146186320867247 0.819219914746133 0.5734794836312001 -0.0001146186320867247 0.819219914746133 0.5734794836312001 -0.0001146186320867247 -0.8192199147461837 -0.5734794836311276 0.0001146186325799683 -0.8192199147461837 -0.5734794836311276 0.0001146186325799683 -0.8192199147461837 -0.5734794836311276 0.0001146186325799683 -0.8192199147461837 -0.5734794836311276 0.0001146186325799683 0.8192199147461837 0.5734794836311276 -0.0001146186325799683 0.8192199147461837 0.5734794836311276 -0.0001146186325799683 0.8192199147461837 0.5734794836311276 -0.0001146186325799683 0.8192199147461837 0.5734794836311276 -0.0001146186325799683</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3504\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3502\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3500\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3501\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3502\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3505\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3506\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID3509\">779.7198797306496 2076.491115577008 163.641975212323 643.986733981098 2270.38696913899 163.6235641994285 644.0379440767074 2269.942447810199 163.6236179738629</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3509\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3507\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID3510\">4.448903795598559e-005 0.0001260968161836659 0.9999999910601592 4.448903795598559e-005 0.0001260968161836659 0.9999999910601592 4.448903795598559e-005 0.0001260968161836659 0.9999999910601592</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3510\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3508\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3506\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3507\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3508\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3511\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3512\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID3516\">394.2893953027974 3459.477090264726 239.4701237628659 751.32072739058 3296.309629832903 163.4854571073493 394.285649275399 3459.467252576215 163.4819355155519 751.323480482667 3296.316859735511 219.3323314871035 751.3244733978422 3296.319467288237 239.4736453556648 751.3244733978422 3296.319467288237 239.4736453556648 394.2893953027974 3459.477090264726 239.4701237628659 751.323480482667 3296.316859735511 219.3323314871035 751.32072739058 3296.309629832903 163.4854571073493 394.285649275399 3459.467252576215 163.4819355155519 366.9045053154346 3471.991416550052 239.4698536537775 394.285649275399 3459.467252576215 163.4819355155519 366.9007593082752 3471.981579094748 163.4816654065066 394.2893953027974 3459.477090264726 239.4701237628659 394.2893953027974 3459.477090264726 239.4701237628659 366.9045053154346 3471.991416550052 239.4698536537775 394.285649275399 3459.467252576215 163.4819355155519 366.9007593082752 3471.981579094748 163.4816654065066 316.9743446929801 3435.152074987003 163.4888946015158 366.9045053154346 3471.991416550052 239.4698536537775 366.9007593082752 3471.981579094748 163.4816654065066 316.9775101625301 3435.161696438228 239.4770829045989 316.9775101625301 3435.161696438228 239.4770829045989 316.9743446929801 3435.152074987003 163.4888946015158 366.9045053154346 3471.991416550052 239.4698536537775 366.9007593082752 3471.981579094748 163.4816654065066 -1645.332852929572 1987.611323948077 163.7730300350254 -393.3968237083059 2911.133146530775 191.5083680444674 -393.3981999718285 2911.129532508789 163.591754139095 -1645.329106922299 1987.621161403452 239.7612182822961 316.9775101625301 3435.161696438228 239.4770829045989 -200.9246645634321 3053.112034707035 163.5638846233053 316.9743446929801 3435.152074987003 163.4888946015158 -200.9232882999231 3053.115648729015 191.4804985286757 -393.3968237083059 2911.133146530775 191.5083680444674 -200.9232882999231 3053.115648729015 191.4804985286757 316.9775101625301 3435.161696438228 239.4770829045989 -200.9246645634321 3053.112034707035 163.5638846233053 316.9743446929801 3435.152074987003 163.4888946015158 -1645.329106922299 1987.621161403452 239.7612182822961 -1645.332852929572 1987.611323948077 163.7730300350254 -393.3981999718285 2911.129532508789 163.591754139095</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID3516\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3513\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID3517\">0.4156366712933924 0.9095307242562383 -0.0001382391803588782 0.4156366712933924 0.9095307242562383 -0.0001382391803588782 0.4156366712933924 0.9095307242562383 -0.0001382391803588782 0.4156366712933924 0.9095307242562383 -0.0001382391803588782 0.4156366712933924 0.9095307242562383 -0.0001382391803588782 -0.4156366712933924 -0.9095307242562383 0.0001382391803588782 -0.4156366712933924 -0.9095307242562383 0.0001382391803588782 -0.4156366712933924 -0.9095307242562383 0.0001382391803588782 -0.4156366712933924 -0.9095307242562383 0.0001382391803588782 -0.4156366712933924 -0.9095307242562383 0.0001382391803588782 0.4156366676488073 0.9095307259217157 -0.0001382393282390832 0.4156366676488073 0.9095307259217157 -0.0001382393282390832 0.4156366676488073 0.9095307259217157 -0.0001382393282390832 0.4156366676488073 0.9095307259217157 -0.0001382393282390832 -0.4156366676488073 -0.9095307259217157 0.0001382393282390832 -0.4156366676488073 -0.9095307259217157 0.0001382393282390832 -0.4156366676488073 -0.9095307259217157 0.0001382393282390832 -0.4156366676488073 -0.9095307259217157 0.0001382393282390832 -0.593632632842757 0.8047361626284548 -7.604081537395623e-005 -0.593632632842757 0.8047361626284548 -7.604081537395623e-005 -0.593632632842757 0.8047361626284548 -7.604081537395623e-005 -0.593632632842757 0.8047361626284548 -7.604081537395623e-005 0.593632632842757 -0.8047361626284548 7.604081537395623e-005 0.593632632842757 -0.8047361626284548 7.604081537395623e-005 0.593632632842757 -0.8047361626284548 7.604081537395623e-005 0.593632632842757 -0.8047361626284548 7.604081537395623e-005 -0.5936322724853751 0.8047364284544576 -7.604086596031777e-005 -0.5936322724853751 0.8047364284544576 -7.604086596031777e-005 -0.5936322724853751 0.8047364284544576 -7.604086596031777e-005 -0.5936322724853751 0.8047364284544576 -7.604086596031777e-005 -0.5936322724853751 0.8047364284544576 -7.604086596031777e-005 -0.5936322724853751 0.8047364284544576 -7.604086596031777e-005 -0.5936322724853751 0.8047364284544576 -7.604086596031777e-005 -0.5936322724853751 0.8047364284544576 -7.604086596031777e-005 0.5936322724853751 -0.8047364284544576 7.604086596031777e-005 0.5936322724853751 -0.8047364284544576 7.604086596031777e-005 0.5936322724853751 -0.8047364284544576 7.604086596031777e-005 0.5936322724853751 -0.8047364284544576 7.604086596031777e-005 0.5936322724853751 -0.8047364284544576 7.604086596031777e-005 0.5936322724853751 -0.8047364284544576 7.604086596031777e-005 0.5936322724853751 -0.8047364284544576 7.604086596031777e-005 0.5936322724853751 -0.8047364284544576 7.604086596031777e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID3517\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3515\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3518\">3.07724169216298 0.9999563226875128 -1.039742150155121e-007 6.466334134813678e-009 3.077236347630231 -4.633759117211866e-005 3.823353114995598e-006 0.7349434790783254 5.239942361789929e-006 1.000002666757799 3.313268308524983 0.9999527680584119 3.077236347629925 -4.633759121430714e-005 3.313262964607769 -4.989221930706833e-005 3.077241692162677 0.9999563226874715 3.799608195053317 -5.721670981184701e-005 3.313268308524943 0.9999527680584128 3.313262964607869 -4.989221933060506e-005 3.799618206435344 0.9999454434900215 22.91488904593889 -0.0003450983191037871 10.71951073070027 0.3672205096561463 10.71950876743956 -0.0001614323960743569 22.91489438985433 0.9996575619586317 3.799618206435472 0.9999454434900534 8.844580269928381 -0.0001331954354615306 3.799608195053445 -5.721670977631987e-005 8.844582233189202 0.367248746616732</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"21\" source=\"#ID3518\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3514\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3512\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3513\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3514\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3515\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 10 5 11 6 12 7 11 6 10 5 13 8 18 9 19 10 20 11 19 10 18 9 21 12 26 13 27 14 28 15 27 14 26 13 29 16 27 14 29 16 30 17 31 18 30 17 32 19 30 17 31 18 33 20 30 17 33 20 27 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3514\" />\r\n\t\t\t\t\t<p>5 6 7 7 6 8 9 8 6 14 15 16 17 16 15 22 23 24 25 24 23 34 35 36 35 37 36 38 36 37 36 39 34 39 40 34 41 34 40</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3519\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3520\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID3529\">-1824.070128006084 2057.179072660608 239.7610247300156 -1645.332852929572 1987.611323948077 163.7730300350254 -1824.073874013381 2057.169235205157 163.7728364827454 -1645.329106922299 1987.621161403452 239.7612182822961 -1645.329106922299 1987.621161403452 239.7612182822961 -1824.070128006084 2057.179072660608 239.7610247300156 -1645.332852929572 1987.611323948077 163.7730300350254 -1824.073874013381 2057.169235205157 163.7728364827454 -1936.011084592216 2994.119537444703 163.6570567566101 -1824.070128006084 2057.179072660608 239.7610247300156 -1824.073874013381 2057.169235205157 163.7728364827454 -1936.007338584913 2994.129374900041 239.645245003878 -1936.007352175398 2994.129339192589 239.3633214448981 -1936.007352175398 2994.129339192589 239.3633214448981 -1936.011084592216 2994.119537444703 163.6570567566101 -1936.007338584913 2994.129374900041 239.645245003878 -1824.070128006084 2057.179072660608 239.7610247300156 -1824.073874013381 2057.169235205157 163.7728364827454</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3529\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3521\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID3530\">0.3626614342193504 0.9319209542342046 -0.0001385249916370581 0.3626614342193504 0.9319209542342046 -0.0001385249916370581 0.3626614342193504 0.9319209542342046 -0.0001385249916370581 0.3626614342193504 0.9319209542342046 -0.0001385249916370581 -0.3626614342193504 -0.9319209542342046 0.0001385249916370581 -0.3626614342193504 -0.9319209542342046 0.0001385249916370581 -0.3626614342193504 -0.9319209542342046 0.0001385249916370581 -0.3626614342193504 -0.9319209542342046 0.0001385249916370581 0.9929389865141353 0.1186261561577421 -6.430801616559303e-005 0.9929389865141353 0.1186261561577421 -6.430801616559303e-005 0.9929389865141353 0.1186261561577421 -6.430801616559303e-005 0.9929389865141353 0.1186261561577421 -6.430801616559303e-005 0.9929389865141353 0.1186261561577421 -6.430801616559303e-005 -0.9929389865141353 -0.1186261561577421 6.430801616559303e-005 -0.9929389865141353 -0.1186261561577421 6.430801616559303e-005 -0.9929389865141353 -0.1186261561577421 6.430801616559303e-005 -0.9929389865141353 -0.1186261561577421 6.430801616559303e-005 -0.9929389865141353 -0.1186261561577421 6.430801616559303e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3530\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3523\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID3531\">24.70531109183252 0.9680552744526105 23.20177430963215 -0.03192474217890817 24.7053057479171 -0.03194738582501744 23.20177965354753 0.9680779180987247 1410.49309663807 425.0019961772285 1411.999807964401 424.9993457270862 1410.492469807209 424.0019934065929 1411.99918113354 423.9993429564507 32.10240345708753 -0.03205878880298263 24.70531109183506 0.9680552744526221 24.70530574791941 -0.0319473858250956 32.10240880100229 0.9679438714747048 32.10240878704262 0.964233764478251 0.9999999853479729 0.9926328332571583 0.9999959634379743 -4.440892098500626e-016 1 0.9963293117750034 0.591472659201568 0.9978473731675468 0.5914686226394939 0.001518061392513204</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3531\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3522\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3520\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3521\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3522\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3523\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 8 9 9 10 10 9 9 8 8 11 11 11 11 8 8 12 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3522\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3523\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3522\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3523\" />\r\n\t\t\t\t\t<p>13 13 14 14 15 15 15 15 14 14 16 16 17 17 16 16 14 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3532\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3533\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID3537\">-1703.107908688951 -799.474765945331 240.1248849217832 -1704.442665921047 -788.3495200681236 164.1353207381663 -1703.111891332413 -799.4852114905757 164.1366967648648 -1704.438769621595 -788.3396646499723 240.1235089757386 -1704.438769621595 -788.3396646499723 240.1235089757386 -1703.107908688951 -799.474765945331 240.1248849217832 -1704.442665921047 -788.3495200681236 164.1353207381663 -1703.111891332413 -799.4852114905757 164.1366967648648 -1704.438769621595 -788.3396646499723 240.1235089757386 -1795.903315427041 -23.11156828726962 164.0407615430451 -1704.442665921047 -788.3495200681236 164.1353207381663 -1795.899860739193 -23.10249587099906 234.1195010281217 -1795.899569419694 -23.10173083182463 240.0289497903122 -1795.899860825289 -23.10249609717766 234.1177536901098 -1795.899860825289 -23.10249609717766 234.1177536901098 -1795.899860739193 -23.10249587099906 234.1195010281217 -1795.903315427041 -23.11156828726962 164.0407615430451 -1795.899569419694 -23.10173083182463 240.0289497903122 -1704.438769621595 -788.3396646499723 240.1235089757386 -1704.442665921047 -788.3495200681236 164.1353207381663</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID3537\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3534\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID3538\">-0.9929339982577374 -0.118667900338614 6.73285095775542e-005 -0.9929339982577374 -0.118667900338614 6.73285095775542e-005 -0.9929339982577374 -0.118667900338614 6.73285095775542e-005 -0.9929339982577374 -0.118667900338614 6.73285095775542e-005 0.9929339982577374 0.118667900338614 -6.73285095775542e-005 0.9929339982577374 0.118667900338614 -6.73285095775542e-005 0.9929339982577374 0.118667900338614 -6.73285095775542e-005 0.9929339982577374 0.118667900338614 -6.73285095775542e-005 -0.9929331837632403 -0.1186747164995878 6.515779348021019e-005 -0.9929331837632403 -0.1186747164995878 6.515779348021019e-005 -0.9929331837632403 -0.1186747164995878 6.515779348021019e-005 -0.9929331837632403 -0.1186747164995878 6.515779348021019e-005 -0.9929331837632403 -0.1186747164995878 6.515779348021019e-005 -0.9929331837632403 -0.1186747164995878 6.515779348021019e-005 0.9929331837632403 0.1186747164995878 -6.515779348021019e-005 0.9929331837632403 0.1186747164995878 -6.515779348021019e-005 0.9929331837632403 0.1186747164995878 -6.515779348021019e-005 0.9929331837632403 0.1186747164995878 -6.515779348021019e-005 0.9929331837632403 0.1186747164995878 -6.515779348021019e-005 0.9929331837632403 0.1186747164995878 -6.515779348021019e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID3538\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3536\">\r\n\t\t\t\t\t<float_array count=\"20\" id=\"ID3539\">-4.637940789453824 0.9683231805268084 -4.725860099383594 -0.03167733532739048 -4.637944931687195 -0.03167947980385311 -4.725851444082137 0.9683253248869947 10.08179264721986 0.9692006794870069 4.040374211134211 -0.0319656190874329 10.08186099153061 -0.03080197425077547 4.040311181822629 0.8902688369767451 4.040305866822635 0.9680370346481437 4.040311183393984 0.8902458420522814</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID3539\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3535\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3533\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3534\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3535\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3536\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 9 5 10 6 9 5 8 4 11 7 11 7 8 4 12 8 9 5 11 7 13 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3535\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 14 15 16 17 18 15 15 18 16 19 16 18</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3540\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3541\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID3545\">890.4337848177661 -1178.414438605999 240.0460881510709 331.1612943102059 -1591.115858436919 164.1388974893074 890.4300388105826 -1178.424276061255 164.0578999037997 331.1651011903596 -1591.105864579043 240.118500037831 331.1650403174067 -1591.106020981687 240.1270857365864 331.1650403174067 -1591.106020981687 240.1270857365864 890.4337848177661 -1178.414438605999 240.0460881510709 331.1651011903596 -1591.105864579043 240.118500037831 331.1612943102059 -1591.115858436919 164.1388974893074 890.4300388105826 -1178.424276061255 164.0578999037997</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID3545\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3542\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID3546\">0.5937572561971699 -0.8046442164412587 7.523856264701676e-005 0.5937572561971699 -0.8046442164412587 7.523856264701676e-005 0.5937572561971699 -0.8046442164412587 7.523856264701676e-005 0.5937572561971699 -0.8046442164412587 7.523856264701676e-005 0.5937572561971699 -0.8046442164412587 7.523856264701676e-005 -0.5937572561971699 0.8046442164412587 -7.523856264701676e-005 -0.5937572561971699 0.8046442164412587 -7.523856264701676e-005 -0.5937572561971699 0.8046442164412587 -7.523856264701676e-005 -0.5937572561971699 0.8046442164412587 -7.523856264701676e-005 -0.5937572561971699 0.8046442164412587 -7.523856264701676e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID3546\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3544\">\r\n\t\t\t\t\t<float_array count=\"10\" id=\"ID3547\">5.662844507609082 0.9683099528236689 0.2141816855283283 -0.03055394664445732 5.662770347340425 -0.03169269974441269 0.2142569572111972 0.9693357184178097 0.2142558457969823 0.969448705923726</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID3547\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3543\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3541\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3542\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3543\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3544\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3543\" />\r\n\t\t\t\t\t<p>5 6 7 7 6 8 9 8 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3548\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3549\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID3553\">-119.4847173536227 52.59079203307783 163.9483182969037 -97.3522554911624 -132.5471538111538 239.9593849514699 -97.35600149831453 -132.5569912665492 163.9711967041965 -119.4809713464515 52.60062948849827 239.9365065441828 -119.4809713464515 52.60062948849827 239.9365065441828 -119.4847173536227 52.59079203307783 163.9483182969037 -97.3522554911624 -132.5471538111538 239.9593849514699 -97.35600149831453 -132.5569912665492 163.9711967041965 -108.2295184119607 60.90321718267251 239.9348770230327 -119.4847173536227 52.59079203307783 163.9483182969037 -108.2332644191438 60.89337972724388 163.94668877576 -119.4809713464515 52.60062948849827 239.9365065441828 -119.4809713464515 52.60062948849827 239.9365065441828 -108.2295184119607 60.90321718267251 239.9348770230327 -119.4847173536227 52.59079203307783 163.9483182969037 -108.2332644191438 60.89337972724388 163.94668877576 -97.3522554911624 -132.5471538111538 239.9593849514699 807.5162502777002 -484.685019661657 163.9721756162254 -97.35600149831453 -132.5569912665492 163.9711967041965 807.5199961966805 -484.6751824378812 239.9585745504745 807.5199962848883 -484.6751822062447 239.9603638635047 807.5199962848883 -484.6751822062447 239.9603638635047 -97.3522554911624 -132.5471538111538 239.9593849514699 807.5199961966805 -484.6751824378812 239.9585745504745 807.5162502777002 -484.685019661657 163.9721756162254 -97.35600149831453 -132.5569912665492 163.9711967041965 1781.492414401694 1455.352641281716 239.6611930932741 -108.2332644191438 60.89337972724388 163.94668877576 1781.491836285547 1455.345141452742 163.6730043872045 -108.2295184119607 60.90321718267251 239.9348770230327 -108.2295184119607 60.90321718267251 239.9348770230327 1781.492414401694 1455.352641281716 239.6611930932741 -108.2332644191438 60.89337972724388 163.94668877576 1781.491836285547 1455.345141452742 163.6730043872045 1829.089977381103 1490.475477680329 239.6542996515117 1781.491836285547 1455.345141452742 163.6730043872045 1829.086231373888 1490.465640224963 163.6661114042441 1781.492414401694 1455.352641281716 239.6611930932741 1781.492414401694 1455.352641281716 239.6611930932741 1829.089977381103 1490.475477680329 239.6542996515117 1781.491836285547 1455.345141452742 163.6730043872045 1829.086231373888 1490.465640224963 163.6661114042441 1822.447294059099 1549.243807705354 163.6588292449512 1829.089977381103 1490.475477680329 239.6542996515117 1829.086231373888 1490.465640224963 163.6661114042441 1822.451040066268 1549.253645160755 239.647017492233 1822.451040066268 1549.253645160755 239.647017492233 1822.447294059099 1549.243807705354 163.6588292449512 1829.089977381103 1490.475477680329 239.6542996515117 1829.086231373888 1490.465640224963 163.6661114042441 1786.484423576962 1867.642887562819 163.6193820026737 1822.451040066268 1549.253645160755 239.647017492233 1822.447294059099 1549.243807705354 163.6588292449512 1786.48816958433 1867.652725018153 239.6075702499407 1786.48816958433 1867.652725018153 239.6075702499407 1786.484423576962 1867.642887562819 163.6193820026737 1822.451040066268 1549.253645160755 239.647017492233 1822.447294059099 1549.243807705354 163.6588292449512</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID3553\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3550\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID3554\">0.9929332002875592 0.1186745787041499 -6.431250591545669e-005 0.9929332002875592 0.1186745787041499 -6.431250591545669e-005 0.9929332002875592 0.1186745787041499 -6.431250591545669e-005 0.9929332002875592 0.1186745787041499 -6.431250591545669e-005 -0.9929332002875592 -0.1186745787041499 6.431250591545669e-005 -0.9929332002875592 -0.1186745787041499 6.431250591545669e-005 -0.9929332002875592 -0.1186745787041499 6.431250591545669e-005 -0.9929332002875592 -0.1186745787041499 6.431250591545669e-005 0.5937571105709575 -0.8046443239323681 7.489893248606996e-005 0.5937571105709575 -0.8046443239323681 7.489893248606996e-005 0.5937571105709575 -0.8046443239323681 7.489893248606996e-005 0.5937571105709575 -0.8046443239323681 7.489893248606996e-005 -0.5937571105709575 0.8046443239323681 -7.489893248606996e-005 -0.5937571105709575 0.8046443239323681 -7.489893248606996e-005 -0.5937571105709575 0.8046443239323681 -7.489893248606996e-005 -0.5937571105709575 0.8046443239323681 -7.489893248606996e-005 0.3626549266620617 0.93192348665465 -0.0001385249987953743 0.3626549266620617 0.93192348665465 -0.0001385249987953743 0.3626549266620617 0.93192348665465 -0.0001385249987953743 0.3626549266620617 0.93192348665465 -0.0001385249987953743 0.3626549266620617 0.93192348665465 -0.0001385249987953743 -0.3626549266620617 -0.93192348665465 0.0001385249987953743 -0.3626549266620617 -0.93192348665465 0.0001385249987953743 -0.3626549266620617 -0.93192348665465 0.0001385249987953743 -0.3626549266620617 -0.93192348665465 0.0001385249987953743 -0.3626549266620617 -0.93192348665465 0.0001385249987953743 0.5937571105712001 -0.8046443239321891 7.489893271998758e-005 0.5937571105712001 -0.8046443239321891 7.489893271998758e-005 0.5937571105712001 -0.8046443239321891 7.489893271998758e-005 0.5937571105712001 -0.8046443239321891 7.489893271998758e-005 -0.5937571105712001 0.8046443239321891 -7.489893271998758e-005 -0.5937571105712001 0.8046443239321891 -7.489893271998758e-005 -0.5937571105712001 0.8046443239321891 -7.489893271998758e-005 -0.5937571105712001 0.8046443239321891 -7.489893271998758e-005 0.5937571105712003 -0.804644323932189 7.489893299019647e-005 0.5937571105712003 -0.804644323932189 7.489893299019647e-005 0.5937571105712003 -0.804644323932189 7.489893299019647e-005 0.5937571105712003 -0.804644323932189 7.489893299019647e-005 -0.5937571105712003 0.804644323932189 -7.489893299019647e-005 -0.5937571105712003 0.804644323932189 -7.489893299019647e-005 -0.5937571105712003 0.804644323932189 -7.489893299019647e-005 -0.5937571105712003 0.804644323932189 -7.489893299019647e-005 0.9936816474225724 0.1122353756233227 -6.351578133570126e-005 0.9936816474225724 0.1122353756233227 -6.351578133570126e-005 0.9936816474225724 0.1122353756233227 -6.351578133570126e-005 0.9936816474225724 0.1122353756233227 -6.351578133570126e-005 -0.9936816474225724 -0.1122353756233227 6.351578133570126e-005 -0.9936816474225724 -0.1122353756233227 6.351578133570126e-005 -0.9936816474225724 -0.1122353756233227 6.351578133570126e-005 -0.9936816474225724 -0.1122353756233227 6.351578133570126e-005 0.9936816464257968 0.1122353844442664 -6.352295410411191e-005 0.9936816464257968 0.1122353844442664 -6.352295410411191e-005 0.9936816464257968 0.1122353844442664 -6.352295410411191e-005 0.9936816464257968 0.1122353844442664 -6.352295410411191e-005 -0.9936816464257968 -0.1122353844442664 6.352295410411191e-005 -0.9936816464257968 -0.1122353844442664 6.352295410411191e-005 -0.9936816464257968 -0.1122353844442664 6.352295410411191e-005 -0.9936816464257968 -0.1122353844442664 6.352295410411191e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID3554\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3552\">\r\n\t\t\t\t\t<float_array count=\"58\" id=\"ID3555\">7.708547590298526 -0.002449313738642545 6.24682735292002 0.9975753582027935 6.246822009579935 -0.00242730207487929 7.708552933638788 0.9975533465391058 7.818168445137689 0.9975516958735193 7.708547590298114 -0.002449313738663417 7.818163101797415 -0.002450964404153933 7.708552933638274 0.9975533465390947 5.865608887762067 0.9683390062765973 -1.745968622266632 -0.03154903374214024 5.865603544421953 -0.03166365400108528 -1.745963279052532 0.9684300792208131 -1.745963278926732 0.9684536265356201 23.54233856942518 0.9645797468687669 5.131945682685343 -0.03157515602582572 23.54229527184436 -0.03542291214967497 5.132019842946724 0.9684274965423434 24.00605034089955 0.9644828312834086 23.54229527184656 -0.03542291214965099 24.00597618063812 -0.03551982128478448 23.54233856942751 0.964579746868881 24.46967515222248 -0.03561673419494049 24.00605034089961 0.9644828312833642 24.00597618063814 -0.0355198212848209 24.46974931248426 0.9643859183734307 26.98151470580396 -0.03614170856462007 24.4697493124846 0.9643859183734875 24.46967515222282 -0.03561673419488232 26.98158886606505 0.9638609440035553</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"29\" source=\"#ID3555\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3551\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3549\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3550\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3551\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3552\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 9 5 10 6 9 5 8 4 11 7 16 8 17 9 18 10 17 9 16 8 19 11 19 11 16 8 20 12 26 13 27 14 28 15 27 14 26 13 29 16 34 17 35 18 36 19 35 18 34 17 37 20 42 21 43 22 44 23 43 22 42 21 45 24 50 25 51 26 52 27 51 26 50 25 53 28</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3551\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 21 22 23 23 22 24 25 24 22 30 31 32 33 32 31 38 39 40 41 40 39 46 47 48 49 48 47 54 55 56 57 56 55</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3556\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3557\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID3566\">-1253.633369646346 738.8442211212769 239.8995936965731 -136.9308546007587 301.484962097325 163.9169564236752 -1253.637115381196 738.8343843115326 163.9153875525368 -136.9271088659189 301.4947989070993 239.9011625676933 -136.9271088659189 301.4947989070993 239.9011625676933 -1253.633369646346 738.8442211212769 239.8995936965731 -136.9308546007587 301.484962097325 163.9169564236752 -1253.637115381196 738.8343843115326 163.9153875525368 -136.9308546007587 301.484962097325 163.9169564236752 1190.374421944544 1280.926998758932 239.708932669801 1190.37067620957 1280.917161949186 163.7247265257688 -136.9271088659189 301.4947989070993 239.9011625676933 -136.9271088659189 301.4947989070993 239.9011625676933 -136.9308546007587 301.484962097325 163.9169564236752 1190.374421944544 1280.926998758932 239.708932669801 1190.37067620957 1280.917161949186 163.7247265257688 1190.37067620957 1280.917161949186 163.7247265257688 1243.717228319946 1320.266529253854 239.7012101088942 1243.713482585015 1320.256692444113 163.7170039648763 1190.374421944544 1280.926998758932 239.708932669801 1190.374421944544 1280.926998758932 239.708932669801 1190.37067620957 1280.917161949186 163.7247265257688 1243.717228319946 1320.266529253854 239.7012101088942 1243.713482585015 1320.256692444113 163.7170039648763 1243.717228319946 1320.266529253854 239.7012101088942 1185.210863367183 1899.405783231233 163.6449111540104 1243.713482585015 1320.256692444113 163.7170039648763 1185.214609103199 1899.415620043977 239.629139845758 1185.214609103199 1899.415620043977 239.629139845758 1243.717228319946 1320.266529253854 239.7012101088942 1185.210863367183 1899.405783231233 163.6449111540104 1243.713482585015 1320.256692444113 163.7170039648763 1185.210863367183 1899.405783231233 163.6449111540104 782.0930176593902 2075.465303856922 233.7206827393875 779.7198797306496 2076.491115577008 163.641975212323 1185.214609103199 1899.415620043977 239.629139845758 782.2930013895393 2075.378858905291 239.6261982490994 782.2930013895393 2075.378858905291 239.6261982490994 1185.214609103199 1899.415620043977 239.629139845758 782.0930176593902 2075.465303856922 233.7206827393875 1185.210863367183 1899.405783231233 163.6449111540104 779.7198797306496 2076.491115577008 163.641975212323</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID3566\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3558\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID3567\">0.3646722337138631 0.9311359421535633 -0.0001385205318409281 0.3646722337138631 0.9311359421535633 -0.0001385205318409281 0.3646722337138631 0.9311359421535633 -0.0001385205318409281 0.3646722337138631 0.9311359421535633 -0.0001385205318409281 -0.3646722337138631 -0.9311359421535633 0.0001385205318409281 -0.3646722337138631 -0.9311359421535633 0.0001385205318409281 -0.3646722337138631 -0.9311359421535633 0.0001385205318409281 -0.3646722337138631 -0.9311359421535633 0.0001385205318409281 -0.5937570388135693 0.8046443768831094 -7.489815976341528e-005 -0.5937570388135693 0.8046443768831094 -7.489815976341528e-005 -0.5937570388135693 0.8046443768831094 -7.489815976341528e-005 -0.5937570388135693 0.8046443768831094 -7.489815976341528e-005 0.5937570388135693 -0.8046443768831094 7.489815976341528e-005 0.5937570388135693 -0.8046443768831094 7.489815976341528e-005 0.5937570388135693 -0.8046443768831094 7.489815976341528e-005 0.5937570388135693 -0.8046443768831094 7.489815976341528e-005 -0.5935344381666279 0.8048085891040564 -7.493039142590998e-005 -0.5935344381666279 0.8048085891040564 -7.493039142590998e-005 -0.5935344381666279 0.8048085891040564 -7.493039142590998e-005 -0.5935344381666279 0.8048085891040564 -7.493039142590998e-005 0.5935344381666279 -0.8048085891040564 7.493039142590998e-005 0.5935344381666279 -0.8048085891040564 7.493039142590998e-005 0.5935344381666279 -0.8048085891040564 7.493039142590998e-005 0.5935344381666279 -0.8048085891040564 7.493039142590998e-005 -0.9949367221751886 -0.1005033084835517 6.205764841050346e-005 -0.9949367221751886 -0.1005033084835517 6.205764841050346e-005 -0.9949367221751886 -0.1005033084835517 6.205764841050346e-005 -0.9949367221751886 -0.1005033084835517 6.205764841050346e-005 0.9949367221751886 0.1005033084835517 -6.205764841050346e-005 0.9949367221751886 0.1005033084835517 -6.205764841050346e-005 0.9949367221751886 0.1005033084835517 -6.205764841050346e-005 0.9949367221751886 0.1005033084835517 -6.205764841050346e-005 -0.4002174660085222 -0.9164201878811117 0.0001383678621772515 -0.4002174660085222 -0.9164201878811117 0.0001383678621772515 -0.4002174660085222 -0.9164201878811117 0.0001383678621772515 -0.4002174660085222 -0.9164201878811117 0.0001383678621772515 -0.4002174660085222 -0.9164201878811117 0.0001383678621772515 0.4002174660085222 0.9164201878811117 -0.0001383678621772515 0.4002174660085222 0.9164201878811117 -0.0001383678621772515 0.4002174660085222 0.9164201878811117 -0.0001383678621772515 0.4002174660085222 0.9164201878811117 -0.0001383678621772515 0.4002174660085222 0.9164201878811117 -0.0001383678621772515</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID3567\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3560\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3568\">1389.0000601566 425.0000184057888 1380.000060062722 424.0000184540912 1389.000060062542 424.0000183332977 1380.00006015678 425.000018526582 1379.04481829009 424.0130345982769 1367.432850247677 425.2899227221023 1367.43298127148 424.2892633970477 1379.044687266288 425.0136939233314 1367.433612420577 424.2892488518364 1366.966909512868 425.3010072649048 1366.967040525585 424.300347940114 1367.43348140786 425.2899081766274 0.9999838336188378 0.9999999999999996 1.61663861066863e-005 -4.440892098500626e-016 1 0.0009478874446493535 0 0.9990524090163917 1384.29924962097 424.0018463596003 1380.666116626794 424.9233647921487 1380.644831550963 424.0011292026682 1384.299172324263 425.0017942912078 1380.667910314919 425.0010813592697</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"21\" source=\"#ID3568\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3559\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3557\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3558\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3559\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3560\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 9 5 10 6 9 5 8 4 11 7 16 8 17 9 18 10 17 9 16 8 19 11 32 16 33 17 34 18 33 17 32 16 35 19 33 17 35 19 36 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"11\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3559\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29 37 38 39 38 40 39 41 39 40</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3559\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3560\" />\r\n\t\t\t\t\t<p>24 12 25 13 26 14 25 13 24 12 27 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3569\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3570\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3574\">703.0996428732942 3214.47046819039 239.4866184645573 712.0514254873274 3210.378790614851 233.5772572364008 703.0993513310923 3214.469702513432 233.5771685822835 901.9360052938528 3123.594827007242 163.500391906706 712.0479710755822 3210.369718866843 163.49851895403 1584.782228140844 2811.548271315324 163.5071271317896 1584.785974148046 2811.558108770724 239.4953153790646 712.0517167825306 3210.379555592239 239.4867062154524 703.0996428732942 3214.47046819039 239.4866184645573 712.0514254873274 3210.378790614851 233.5772572364008 712.0517167825306 3210.379555592239 239.4867062154524 1584.785974148046 2811.558108770724 239.4953153790646 1584.782228140844 2811.548271315324 163.5071271317896 901.9360052938528 3123.594827007242 163.500391906706 712.0479710755822 3210.369718866843 163.49851895403 703.0993513310923 3214.469702513432 233.5771685822835</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3574\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3571\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3575\">0.4156366706818752 0.9095307245367298 -0.0001382323321442062 0.4156366706818752 0.9095307245367298 -0.0001382323321442062 0.4156366706818752 0.9095307245367298 -0.0001382323321442062 0.4156366706818752 0.9095307245367298 -0.0001382323321442062 0.4156366706818752 0.9095307245367298 -0.0001382323321442062 0.4156366706818752 0.9095307245367298 -0.0001382323321442062 0.4156366706818752 0.9095307245367298 -0.0001382323321442062 0.4156366706818752 0.9095307245367298 -0.0001382323321442062 -0.4156366706818752 -0.9095307245367298 0.0001382323321442062 -0.4156366706818752 -0.9095307245367298 0.0001382323321442062 -0.4156366706818752 -0.9095307245367298 0.0001382323321442062 -0.4156366706818752 -0.9095307245367298 0.0001382323321442062 -0.4156366706818752 -0.9095307245367298 0.0001382323321442062 -0.4156366706818752 -0.9095307245367298 0.0001382323321442062 -0.4156366706818752 -0.9095307245367298 0.0001382323321442062 -0.4156366706818752 -0.9095307245367298 0.0001382323321442062</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3575\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3573\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID3576\">33.63690587472972 0.9621851471732543 33.55974310244118 0.8844339169268212 33.63689980237066 0.8844169349166253 31.92305214472299 -0.03744040473493637 33.55967109782126 -0.03780052145661594 26.03769409865148 -0.03614540821673984 26.03777217535 0.9638572435108861 33.5597491742811 0.9622021172958295</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3576\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3572\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3570\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3571\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3572\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3573\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 4 4 3 3 1 1 5 5 5 5 1 1 6 6 6 6 1 1 7 7 7 7 1 1 0 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3572\" />\r\n\t\t\t\t\t<p>8 9 10 10 9 11 11 9 12 12 9 13 14 13 9 15 9 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3577\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3583\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID3587\">-1403.66117387236 1904.176025599844 163.7719178511626 -1253.633369646346 738.8442211212769 239.8995936965731 -1253.637115381196 738.8343843115326 163.9153875525368 -1268.324579450258 852.9611082231641 239.885544326714 -1403.657428137515 1904.185862409705 239.7561239951791 -1403.657428137515 1904.185862409705 239.7561239951791 -1403.66117387236 1904.176025599844 163.7719178511626 -1268.324579450258 852.9611082231641 239.885544326714 -1253.633369646346 738.8442211212769 239.8995936965731 -1253.637115381196 738.8343843115326 163.9153875525368</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID3587\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3584\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID3588\">0.9918148322649333 0.1276845104903759 -6.542259050421332e-005 0.9918148322649333 0.1276845104903759 -6.542259050421332e-005 0.9918148322649333 0.1276845104903759 -6.542259050421332e-005 0.9918148322649333 0.1276845104903759 -6.542259050421332e-005 0.9918148322649333 0.1276845104903759 -6.542259050421332e-005 -0.9918148322649333 -0.1276845104903759 6.542259050421332e-005 -0.9918148322649333 -0.1276845104903759 6.542259050421332e-005 -0.9918148322649333 -0.1276845104903759 6.542259050421332e-005 -0.9918148322649333 -0.1276845104903759 6.542259050421332e-005 -0.9918148322649333 -0.1276845104903759 6.542259050421332e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID3588\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3586\">\r\n\t\t\t\t\t<float_array count=\"20\" id=\"ID3589\">0.9999921035973658 0 7.896402534735003e-006 1 0 0.001884593215029984 0.09793281553855859 0.9998154499043475 1 0.9981154067847111 0.5086900356138284 0.9981188777866943 0.5086860187924913 0.001841777819904689 0.0498174474240719 0.9998157898046198 4.016821286645378e-006 0.9999999999999996 0 0.003722900032951504</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID3589\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3585\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3583\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3584\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3585\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3586\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3585\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3586\" />\r\n\t\t\t\t\t<p>5 5 6 6 7 7 7 7 6 6 8 8 9 9 8 8 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3590\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3591\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID3595\">32.43000431680366 2962.767818758642 239.548284468149 -75.55630899448579 2883.160880091836 163.5797062004795 32.42625858197607 2962.757981948848 163.5640783240987 -75.55493280185874 2883.164494211921 191.4963203177411 -268.0834929026501 2741.246073927344 191.5241842409981 -1403.66117387236 1904.176025599844 163.7719178511626 -268.0848690951898 2741.242459807166 163.6075701237391 -1403.657428137515 1904.185862409705 239.7561239951791 32.43000431680366 2962.767818758642 239.548284468149 -268.0834929026501 2741.246073927344 191.5241842409981 -1403.657428137515 1904.185862409705 239.7561239951791 -1403.66117387236 1904.176025599844 163.7719178511626 -268.0848690951898 2741.242459807166 163.6075701237391 -75.55493280185874 2883.164494211921 191.4963203177411 -75.55630899448579 2883.160880091836 163.5797062004795 32.42625858197607 2962.757981948848 163.5640783240987 593.7754511075814 2706.233048074697 163.5696151641498 32.43000431680366 2962.767818758642 239.548284468149 32.42625858197607 2962.757981948848 163.5640783240987 593.7791968423844 2706.242884884394 239.5538213081701 593.7791968423844 2706.242884884394 239.5538213081701 593.7754511075814 2706.233048074697 163.5696151641498 32.43000431680366 2962.767818758642 239.548284468149 32.42625858197607 2962.757981948848 163.5640783240987</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID3595\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3592\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID3596\">0.5933488009837785 -0.8049454607316705 7.495726342474221e-005 0.5933488009837785 -0.8049454607316705 7.495726342474221e-005 0.5933488009837785 -0.8049454607316705 7.495726342474221e-005 0.5933488009837785 -0.8049454607316705 7.495726342474221e-005 0.5933488009837785 -0.8049454607316705 7.495726342474221e-005 0.5933488009837785 -0.8049454607316705 7.495726342474221e-005 0.5933488009837785 -0.8049454607316705 7.495726342474221e-005 0.5933488009837785 -0.8049454607316705 7.495726342474221e-005 -0.5933488009837785 0.8049454607316705 -7.495726342474221e-005 -0.5933488009837785 0.8049454607316705 -7.495726342474221e-005 -0.5933488009837785 0.8049454607316705 -7.495726342474221e-005 -0.5933488009837785 0.8049454607316705 -7.495726342474221e-005 -0.5933488009837785 0.8049454607316705 -7.495726342474221e-005 -0.5933488009837785 0.8049454607316705 -7.495726342474221e-005 -0.5933488009837785 0.8049454607316705 -7.495726342474221e-005 -0.5933488009837785 0.8049454607316705 -7.495726342474221e-005 -0.4156366710683901 -0.9095307243595576 0.0001382359047244551 -0.4156366710683901 -0.9095307243595576 0.0001382359047244551 -0.4156366710683901 -0.9095307243595576 0.0001382359047244551 -0.4156366710683901 -0.9095307243595576 0.0001382359047244551 0.4156366710683901 0.9095307243595576 -0.0001382359047244551 0.4156366710683901 0.9095307243595576 -0.0001382359047244551 0.4156366710683901 0.9095307243595576 -0.0001382359047244551 0.4156366710683901 0.9095307243595576 -0.0001382359047244551</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID3596\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3594\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3597\">1412.050003580537 425.0006402785486 1410.99616928976 424.0007029935884 1412.050000095044 424.0006926822238 1410.996170570732 424.3680839613012 1409.117232774707 424.3681023467109 1398.034838116884 424.0008298216257 1409.117231493736 424.0007213789982 1398.034841602377 425.0007774179501 1358.966321645388 424.0049156398269 1354.117760576734 425.0028180597387 1354.117910877828 424.0028704934531 1358.966171344294 425.0048632061121</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID3597\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3593\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3591\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3592\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3593\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3594\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 5 5 6 6 5 5 4 4 7 7 7 7 4 4 0 0 16 8 17 9 18 10 17 9 16 8 19 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3593\" />\r\n\t\t\t\t\t<p>8 9 10 10 9 11 12 11 9 9 8 13 13 8 14 15 14 8 20 21 22 23 22 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3598\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3599\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3602\">-2161.435779757334 3062.399825228672 163.6593300680798 -2168.004566480271 3084.1709136061 163.6568353996445 -2169.787555444689 3072.058298408683 163.6584914005606 -2167.64170201125 3084.258782034346 163.6568061358288 -2149.83006578865 3077.327443015843 163.6568253994055 -2151.301015106281 3064.853967245611 163.658512734676 -2149.518026142011 3076.966582442883 163.6568567337601 -2149.518026142011 3076.966582442883 163.6568567337601 -2151.301015106281 3064.853967245611 163.658512734676 -2149.83006578865 3077.327443015843 163.6568253994055 -2161.435779757334 3062.399825228672 163.6593300680798 -2167.64170201125 3084.258782034346 163.6568061358288 -2168.004566480271 3084.1709136061 163.6568353996445 -2169.787555444689 3072.058298408683 163.6584914005606</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID3602\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3600\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3603\">4.929756417246173e-005 0.0001294603900155897 0.9999999904048788 4.929756417246173e-005 0.0001294603900155897 0.9999999904048788 4.929756417246173e-005 0.0001294603900155897 0.9999999904048788 4.929756417246173e-005 0.0001294603900155897 0.9999999904048788 4.929756417246173e-005 0.0001294603900155897 0.9999999904048788 4.929756417246173e-005 0.0001294603900155897 0.9999999904048788 4.929756417246173e-005 0.0001294603900155897 0.9999999904048788 -4.929756417246173e-005 -0.0001294603900155897 -0.9999999904048788 -4.929756417246173e-005 -0.0001294603900155897 -0.9999999904048788 -4.929756417246173e-005 -0.0001294603900155897 -0.9999999904048788 -4.929756417246173e-005 -0.0001294603900155897 -0.9999999904048788 -4.929756417246173e-005 -0.0001294603900155897 -0.9999999904048788 -4.929756417246173e-005 -0.0001294603900155897 -0.9999999904048788 -4.929756417246173e-005 -0.0001294603900155897 -0.9999999904048788</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID3603\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3601\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3599\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3600\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3601\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 7 8 9 8 10 9 9 10 11 11 10 12 13 12 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3604\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3605\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3608\">-2384.785810646564 3149.443342173965 163.6590719929032 -2391.354597369458 3171.214430551371 163.6565773244726 -2393.137586333883 3159.101815353959 163.6582333253879 -2391.193847922387 3171.25335638309 163.656564360568 -2373.013808140948 3164.178654344415 163.6565840225729 -2374.651045995438 3151.897484190899 163.658254659504 -2372.868057031113 3164.010099388118 163.6565986585899 -2372.868057031113 3164.010099388118 163.6565986585899 -2374.651045995438 3151.897484190899 163.658254659504 -2373.013808140948 3164.178654344415 163.6565840225729 -2384.785810646564 3149.443342173965 163.6590719929032 -2391.193847922387 3171.25335638309 163.656564360568 -2391.354597369458 3171.214430551371 163.6565773244726 -2393.137586333883 3159.101815353959 163.6582333253879</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID3608\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3606\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3609\">4.929756417451999e-005 0.0001294603900194983 0.9999999904048788 4.929756417451999e-005 0.0001294603900194983 0.9999999904048788 4.929756417451999e-005 0.0001294603900194983 0.9999999904048788 4.929756417451999e-005 0.0001294603900194983 0.9999999904048788 4.929756417451999e-005 0.0001294603900194983 0.9999999904048788 4.929756417451999e-005 0.0001294603900194983 0.9999999904048788 4.929756417451999e-005 0.0001294603900194983 0.9999999904048788 -4.929756417451999e-005 -0.0001294603900194983 -0.9999999904048788 -4.929756417451999e-005 -0.0001294603900194983 -0.9999999904048788 -4.929756417451999e-005 -0.0001294603900194983 -0.9999999904048788 -4.929756417451999e-005 -0.0001294603900194983 -0.9999999904048788 -4.929756417451999e-005 -0.0001294603900194983 -0.9999999904048788 -4.929756417451999e-005 -0.0001294603900194983 -0.9999999904048788 -4.929756417451999e-005 -0.0001294603900194983 -0.9999999904048788</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID3609\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3607\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3605\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3606\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3607\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 7 8 9 8 10 9 9 10 11 11 10 12 13 12 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3610\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3611\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID3614\">331.1612943102059 -1591.115858436919 164.1388974893074 320.3116104955684 -1586.883317639537 234.2176265204238 224.6102156465327 -1549.641395677304 234.2175197739564 331.1651011903596 -1591.105864579043 240.118500037831 320.3119616217523 -1586.882398594786 240.1187119333987 -113.3334876946788 -1418.142191809508 164.1384163355018 -221.5314328402565 -1376.025445522891 240.1231278913326 -220.76626523081 -1376.335084064825 164.138300131787 -95.38693420562322 -1425.126033433599 164.1384357449861 104.1192803437275 -1502.763213537243 164.1386515141888 122.0729385252962 -1509.749819928962 164.1386709313672 224.6102157797955 -1549.641395326244 234.2202315055706 224.6105607619038 -1549.640492075855 240.1195783282859 224.6105608204871 -1549.640491922348 240.1205803975961 224.6105065745055 -1549.640631301514 240.1269669002741 -221.5314573605001 -1376.025508523736 240.1264750252332 122.0768542889628 -1509.739813765527 240.126853856931 -113.334499401009 -1418.130208068508 240.1265943305651 -95.38293260669889 -1425.116005184397 240.126614121051 104.1183387807819 -1502.751312578957 240.1268340587913 104.1183387807819 -1502.751312578957 240.1268340587913 122.0768542889628 -1509.739813765527 240.126853856931 -95.38293260669889 -1425.116005184397 240.126614121051 -113.334499401009 -1418.130208068508 240.1265943305651 -221.5314573605001 -1376.025508523736 240.1264750252332 224.6105065745055 -1549.640631301514 240.1269669002741 -221.5314328402565 -1376.025445522891 240.1231278913326 224.6105608204871 -1549.640491922348 240.1205803975961 224.6105607619038 -1549.640492075855 240.1195783282859 224.6102157797955 -1549.641395326244 234.2202315055706 224.6102156465327 -1549.641395677304 234.2175197739564 331.1612943102059 -1591.115858436919 164.1388974893074 122.0729385252962 -1509.749819928962 164.1386709313672 104.1192803437275 -1502.763213537243 164.1386515141888 -95.38693420562322 -1425.126033433599 164.1384357449861 -113.3334876946788 -1418.142191809508 164.1384163355018 -220.76626523081 -1376.335084064825 164.138300131787 320.3119616217523 -1586.882398594786 240.1187119333987 331.1651011903596 -1591.105864579043 240.118500037831 320.3116104955684 -1586.883317639537 234.2176265204238</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID3614\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3612\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID3615\">-0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 -0.3626553354795213 -0.9319233270481998 0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811 0.3626553354795213 0.9319233270481998 -0.0001419565074784811</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID3615\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3613\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3611\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3612\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3613\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 6 7 6 5 8 6 8 9 6 9 10 6 10 0 6 0 2 6 2 11 6 11 12 6 12 13 6 13 14 6 14 15 15 14 16 15 16 17 17 16 18 18 16 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3613\" />\r\n\t\t\t\t\t<p>20 21 22 22 21 23 23 21 24 21 25 24 24 25 26 25 27 26 27 28 26 28 29 26 29 30 26 30 31 26 31 32 26 32 33 26 33 34 26 34 35 26 36 26 35 37 38 39 38 31 39 30 39 31</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3616\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3617\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3621\">-2780.313884898815 683.5732513540183 163.9978026133648 -2912.991847283493 735.2952663179731 239.9858370587388 -2912.995593290785 735.2854288624781 163.9976488114583 -2163.727965492457 443.2612980334711 163.9985174980311 -2163.724503669347 443.2702222665275 234.0761765978639 -2163.724510804562 443.2703704497958 234.0772569831182 -2163.724219485038 443.2711354890098 239.9867057453142 -2163.724219485038 443.2711354890098 239.9867057453142 -2163.724510804562 443.2703704497958 234.0772569831182 -2912.991847283493 735.2952663179731 239.9858370587388 -2163.724503669347 443.2702222665275 234.0761765978639 -2163.727965492457 443.2612980334711 163.9985174980311 -2780.313884898815 683.5732513540183 163.9978026133648 -2912.995593290785 735.2854288624781 163.9976488114583</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID3621\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3618\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3622\">-0.3631399550226109 -0.9317345941619377 0.0001382319259897127 -0.3631399550226109 -0.9317345941619377 0.0001382319259897127 -0.3631399550226109 -0.9317345941619377 0.0001382319259897127 -0.3631399550226109 -0.9317345941619377 0.0001382319259897127 -0.3631399550226109 -0.9317345941619377 0.0001382319259897127 -0.3631399550226109 -0.9317345941619377 0.0001382319259897127 -0.3631399550226109 -0.9317345941619377 0.0001382319259897127 0.3631399550226109 0.9317345941619377 -0.0001382319259897127 0.3631399550226109 0.9317345941619377 -0.0001382319259897127 0.3631399550226109 0.9317345941619377 -0.0001382319259897127 0.3631399550226109 0.9317345941619377 -0.0001382319259897127 0.3631399550226109 0.9317345941619377 -0.0001382319259897127 0.3631399550226109 0.9317345941619377 -0.0001382319259897127 0.3631399550226109 0.9317345941619377 -0.0001382319259897127</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID3622\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3620\">\r\n\t\t\t\t\t<float_array count=\"14\" id=\"ID3623\">-1.789494725844026 -0.03344257013369356 -2.905876575209199 0.9663450927199593 -2.905808237506697 -0.03365756096608008 3.398132123977057 -0.03244348303090305 3.398069575671901 0.8897767549889251 3.398069100760939 0.8897909729875657 3.398063786275358 0.9675591706551709</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID3623\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3619\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3617\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3618\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3619\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3620\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 1 1 4 4 5 5 1 1 5 5 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3619\" />\r\n\t\t\t\t\t<p>7 8 9 8 10 9 10 11 9 11 12 9 13 9 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3624\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3625\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID3629\">-3165.198209192542 2842.33496363507 163.7373023575882 -2606.11190656956 3254.897675563218 228.6972804003622 -2606.115113998826 3254.889252538675 163.6563316981225 -3165.197498895079 2842.336829501478 178.1506847934856 -3165.197322906807 2842.337292004426 181.7228790422112 -3165.194463185284 2842.344801090235 239.7254906048311 -2606.111870095341 3254.897768703055 229.4385674446812 -2606.111853602619 3254.897810818791 229.7737608232624 -2606.111367991587 3254.899089994036 239.6445199454018 -2606.111367991587 3254.899089994036 239.6445199454018 -3165.194463185284 2842.344801090235 239.7254906048311 -2606.111853602619 3254.897810818791 229.7737608232624 -2606.111870095341 3254.897768703055 229.4385674446812 -2606.11190656956 3254.897675563218 228.6972804003622 -3165.197322906807 2842.337292004426 181.7228790422112 -3165.197498895079 2842.336829501478 178.1506847934856 -3165.198209192542 2842.33496363507 163.7373023575882 -2606.115113998826 3254.889252538675 163.6563316981225</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3629\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3626\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID3630\">-0.593757005926541 0.8046444011509527 -7.489709270514139e-005 -0.593757005926541 0.8046444011509527 -7.489709270514139e-005 -0.593757005926541 0.8046444011509527 -7.489709270514139e-005 -0.593757005926541 0.8046444011509527 -7.489709270514139e-005 -0.593757005926541 0.8046444011509527 -7.489709270514139e-005 -0.593757005926541 0.8046444011509527 -7.489709270514139e-005 -0.593757005926541 0.8046444011509527 -7.489709270514139e-005 -0.593757005926541 0.8046444011509527 -7.489709270514139e-005 -0.593757005926541 0.8046444011509527 -7.489709270514139e-005 0.593757005926541 -0.8046444011509527 7.489709270514139e-005 0.593757005926541 -0.8046444011509527 7.489709270514139e-005 0.593757005926541 -0.8046444011509527 7.489709270514139e-005 0.593757005926541 -0.8046444011509527 7.489709270514139e-005 0.593757005926541 -0.8046444011509527 7.489709270514139e-005 0.593757005926541 -0.8046444011509527 7.489709270514139e-005 0.593757005926541 -0.8046444011509527 7.489709270514139e-005 0.593757005926541 -0.8046444011509527 7.489709270514139e-005 0.593757005926541 -0.8046444011509527 7.489709270514139e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3630\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3628\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID3631\">12.26661278315143 -0.03043106421879127 6.819778791983785 0.8245134228232578 6.819834169227532 -0.03142383333260135 12.26660051767657 0.1592486876950696 12.26659747781712 0.2062586745528443 12.26654810847264 0.9695715902046622 6.819778174660026 0.8342687417606647 6.819777895520748 0.8386798782277412 6.819769494547951 0.9685788210913318 1362.18584318497 424.9998534349885 1367.888572034522 424.9998531425374 1362.185843178696 424.8699548471215 1362.185843172052 424.8655437227106 1362.185843157359 424.8557884304356 1367.888572001318 424.236542312918 1367.888571998604 424.1895324545324 1367.888571987651 423.9998532209884 1362.185843138101 423.999853513439</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3631\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3627\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3625\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3626\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3627\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3628\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 1 1 4 4 5 5 1 1 5 5 6 6 6 6 5 5 7 7 7 7 5 5 8 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3627\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3628\" />\r\n\t\t\t\t\t<p>9 9 10 10 11 11 11 11 10 10 12 12 12 12 10 10 13 13 10 10 14 14 13 13 14 14 15 15 13 13 15 15 16 16 13 13 17 17 13 13 16 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3632\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3633\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3637\">-1608.92148536488 1992.461099942645 222.0383241676646 -1415.746239192698 1917.27738071944 163.7708175057778 -1608.924357777777 1992.453556551197 163.7706081913165 -1415.743366779856 1917.284924110922 222.0385334821234 -1415.743366779856 1917.284924110922 222.0385334821234 -1608.92148536488 1992.461099942645 222.0383241676646 -1415.746239192698 1917.27738071944 163.7708175057778 -1608.924357777777 1992.453556551197 163.7706081913165</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3637\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3634\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID3638\">0.362661434219117 0.9319209542342366 -0.0001385253881777871 0.362661434219117 0.9319209542342366 -0.0001385253881777871 0.362661434219117 0.9319209542342366 -0.0001385253881777871 0.362661434219117 0.9319209542342366 -0.0001385253881777871 -0.362661434219117 -0.9319209542342366 0.0001385253881777871 -0.362661434219117 -0.9319209542342366 0.0001385253881777871 -0.362661434219117 -0.9319209542342366 0.0001385253881777871 -0.362661434219117 -0.9319209542342366 0.0001385253881777871</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3638\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3636\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID3639\">0.4856841243949487 0.7691106606370703 0.5754282407884377 0.769107916182477 0.4856840989227595 0.00512568963770077 0.575428215316276 0.005122945183074545</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID3639\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3635\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3633\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3634\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3635\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3635\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3636\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3640\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3641\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID3644\">-129.4205396573179 285.0090712310557 163.9187191600953 -105.5035836761244 84.93091582274383 222.2111593974014 -105.5064559953771 84.9233722415479 163.9434434210758 -129.4176673380475 285.0166148122607 222.1864351364155 -105.5064559953771 84.9233722415479 163.9434434210758 1282.823945779766 1109.395145344647 222.0100909128316 1282.821073460495 1109.387601763458 163.7423749365005 -105.5035836761244 84.93091582274383 222.2111593974014 1282.823945779766 1109.395145344647 222.0100909128316 1260.120474245891 1310.368482035367 163.7174733281129 1282.821073460495 1109.387601763458 163.7423749365005 1260.123346565154 1310.376025616565 221.9851893044385</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID3644\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3642\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID3645\">0.9929332002876334 0.1186745787043707 -6.431095499896584e-005 0.9929332002876334 0.1186745787043707 -6.431095499896584e-005 0.9929332002876334 0.1186745787043707 -6.431095499896584e-005 0.9929332002876334 0.1186745787043707 -6.431095499896584e-005 -0.5937571105714093 0.8046443239316351 -7.490322484067232e-005 -0.5937571105714093 0.8046443239316351 -7.490322484067232e-005 -0.5937571105714093 0.8046443239316351 -7.490322484067232e-005 -0.5937571105714093 0.8046443239316351 -7.490322484067232e-005 -0.9936816459505433 -0.1122353886568979 6.351420539721253e-005 -0.9936816459505433 -0.1122353886568979 6.351420539721253e-005 -0.9936816459505433 -0.1122353886568979 6.351420539721253e-005 -0.9936816459505433 -0.1122353886568979 6.351420539721253e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID3645\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3643\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3641\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3642\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3643\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3646\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3647\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3650\">-1415.746239192698 1917.27738071944 163.7708175057778 -278.595577959486 2755.506918704069 191.5228562305663 -278.5969541520353 2755.503304583959 163.6062421133016 -1415.743366779856 1917.284924110922 222.0385334821234 552.1332983336029 3367.864243260755 221.7537301059749 -86.07341633611304 2897.418022795881 163.5783789027263 552.1304259206872 3367.85669986933 163.4860141296329 -86.07204014347872 2897.421636915976 191.4949930199821 -278.595577959486 2755.506918704069 191.5228562305663 -86.07204014347872 2897.421636915976 191.4949930199821 552.1332983336029 3367.864243260755 221.7537301059749 -86.07341633611304 2897.418022795881 163.5783789027263 552.1304259206872 3367.85669986933 163.4860141296329 -1415.743366779856 1917.284924110922 222.0385334821234 -1415.746239192698 1917.27738071944 163.7708175057778 -278.5969541520353 2755.503304583959 163.6062421133016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3650\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3648\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3651\">-0.5933488009838785 0.8049454607314568 -7.495876463297489e-005 -0.5933488009838785 0.8049454607314568 -7.495876463297489e-005 -0.5933488009838785 0.8049454607314568 -7.495876463297489e-005 -0.5933488009838785 0.8049454607314568 -7.495876463297489e-005 -0.5933488009838785 0.8049454607314568 -7.495876463297489e-005 -0.5933488009838785 0.8049454607314568 -7.495876463297489e-005 -0.5933488009838785 0.8049454607314568 -7.495876463297489e-005 -0.5933488009838785 0.8049454607314568 -7.495876463297489e-005 0.5933488009838785 -0.8049454607314568 7.495876463297489e-005 0.5933488009838785 -0.8049454607314568 7.495876463297489e-005 0.5933488009838785 -0.8049454607314568 7.495876463297489e-005 0.5933488009838785 -0.8049454607314568 7.495876463297489e-005 0.5933488009838785 -0.8049454607314568 7.495876463297489e-005 0.5933488009838785 -0.8049454607314568 7.495876463297489e-005 0.5933488009838785 -0.8049454607314568 7.495876463297489e-005 0.5933488009838785 -0.8049454607314568 7.495876463297489e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3651\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3649\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3647\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3648\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3649\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 4 6 4 5 7 4 7 1 8 9 10 9 11 10 12 10 11 10 13 8 13 14 8 15 8 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3652\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3653\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID3656\">552.1304259206872 3367.85669986933 163.4860141296329 369.0270151171417 3451.540015503316 221.7519239256736 369.0241427042583 3451.532472111794 163.4842079493284 552.1332983336029 3367.864243260755 221.7537301059749</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID3656\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3654\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID3657\">-0.4156366709823172 -0.9095307243985366 0.0001382382391603538 -0.4156366709823172 -0.9095307243985366 0.0001382382391603538 -0.4156366709823172 -0.9095307243985366 0.0001382382391603538 -0.4156366709823172 -0.9095307243985366 0.0001382382391603538</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID3657\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3655\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3653\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3654\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3655\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3658\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3659\">\r\n\t\t\t\t\t<float_array count=\"270\" id=\"ID3663\">-2606.11190656956 3254.897675563218 228.6972804003622 -2499.560632528807 3213.423785966861 163.656447178819 -2606.115113998826 3254.889252538675 163.6563316981225 -2488.707499328116 3209.200312029235 163.6564589183714 -2391.193847922387 3171.25335638309 163.656564360568 -2373.013808140948 3164.178654344415 163.6565840225729 -2167.64170201125 3084.258782034346 163.6568061358288 -2149.83006578865 3077.327443015843 163.6568253994055 -2053.418712314959 3039.80849340294 163.656929772367 -2043.022894423976 3035.762980614768 163.6569410175346 -1946.406583082052 2998.165871032456 163.6570453862841 -1939.790027120501 2995.59044931039 163.6570526076833 -1938.913777418874 2995.249378740085 163.6570535636484 -1936.017849793075 2994.122170724855 163.6570567649721 -2606.111367991587 3254.899089994036 239.6445199454018 -2595.258522312617 3250.674852381998 233.735083057256 -2606.111853602619 3254.897810818791 229.7737608232624 -2595.258542393311 3250.674837948969 233.7390199364588 -2595.258230980873 3250.675617436754 239.6445316878845 -2499.556852736755 3213.433652804349 239.6446350917155 -2043.01943951221 3035.772053643555 233.7396176363486 -2499.557151646478 3213.432882542502 233.7391233384871 -2149.822436617825 3077.335126709659 239.6450137027712 -2043.019148368854 3035.772818193135 239.6451293502566 -2488.589525348758 3209.16573688293 239.6446469652092 -2488.703785665694 3209.210128394215 239.6446469470521 -2391.191871395831 3171.26361304277 239.644752429834 -2373.006628780183 3164.186858216479 239.6447721146456 -2167.640273094663 3084.268906090383 239.6449944156733 -1946.403447594457 2998.17412320261 233.7397219074883 -1943.077495288244 2996.880592502786 238.4643078032743 -1942.582586888241 2996.687999901372 238.4643029068527 -1946.403209203364 2998.174740293091 238.4733848880968 -1943.077376133579 2996.880663242166 239.6119923453537 -1946.403209118305 2998.174740490152 238.4749701226538 -1946.403156450905 2998.17488775208 239.645233621409 -1943.07737268206 2996.880665291318 239.6452373289283 -1936.007352175398 2994.129339192589 239.3633214448981 -1936.011084592216 2994.119537444703 163.6570567566101 -2606.111870095341 3254.897768703055 229.4385674446812 -2499.557144068623 3213.432887749624 233.7351864610965 -1942.582437255681 2996.688058968725 239.6144684440622 -1940.465569650655 2995.864287963157 239.6452392672273 -1941.205259405102 2996.152186694948 239.6452383156575 -1942.582433252678 2996.688060548876 239.6452378644834 -1942.582433252678 2996.688060548876 239.6452378644834 -1942.582437255681 2996.688058968725 239.6144684440622 -1941.205259405102 2996.152186694948 239.6452383156575 -1940.465569650655 2995.864287963157 239.6452392672273 -1936.007352175398 2994.129339192589 239.3633214448981 -1942.582586888241 2996.687999901372 238.4643029068527 -1946.403447594457 2998.17412320261 233.7397219074883 -2043.01943951221 3035.772053643555 233.7396176363486 -2499.557151646478 3213.432882542502 233.7391233384871 -2499.557144068623 3213.432887749624 233.7351864610965 -2595.258522312617 3250.674852381998 233.735083057256 -2606.111853602619 3254.897810818791 229.7737608232624 -2606.111870095341 3254.897768703055 229.4385674446812 -2606.11190656956 3254.897675563218 228.6972804003622 -1936.017849793075 2994.122170724855 163.6570567649721 -1936.011084592216 2994.119537444703 163.6570567566101 -1943.07737268206 2996.880665291318 239.6452373289283 -1946.403156450905 2998.17488775208 239.645233621409 -1943.077376133579 2996.880663242166 239.6119923453537 -1946.403209118305 2998.174740490152 238.4749701226538 -1946.403209203364 2998.174740293091 238.4733848880968 -1943.077495288244 2996.880592502786 238.4643078032743 -2167.640273094663 3084.268906090383 239.6449944156733 -2373.006628780183 3164.186858216479 239.6447721146456 -2149.822436617825 3077.335126709659 239.6450137027712 -2391.191871395831 3171.26361304277 239.644752429834 -2488.589525348758 3209.16573688293 239.6446469652092 -2488.703785665694 3209.210128394215 239.6446469470521 -2499.556852736755 3213.433652804349 239.6446350917155 -2043.019148368854 3035.772818193135 239.6451293502566 -2595.258230980873 3250.675617436754 239.6445316878845 -2606.111367991587 3254.899089994036 239.6445199454018 -2595.258542393311 3250.674837948969 233.7390199364588 -1938.913777418874 2995.249378740085 163.6570535636484 -1939.790027120501 2995.59044931039 163.6570526076833 -1946.406583082052 2998.165871032456 163.6570453862841 -2043.022894423976 3035.762980614768 163.6569410175346 -2053.418712314959 3039.80849340294 163.656929772367 -2149.83006578865 3077.327443015843 163.6568253994055 -2167.64170201125 3084.258782034346 163.6568061358288 -2373.013808140948 3164.178654344415 163.6565840225729 -2391.193847922387 3171.25335638309 163.656564360568 -2488.707499328116 3209.200312029235 163.6564589183714 -2499.560632528807 3213.423785966861 163.656447178819 -2606.115113998826 3254.889252538675 163.6563316981225</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"90\" source=\"#ID3663\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3660\">\r\n\t\t\t\t\t<float_array count=\"270\" id=\"ID3664\">0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 0.3626559960731425 0.9319230708965636 -0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634 -0.3626559960731425 -0.9319230708965636 0.0001358046970198634</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"90\" source=\"#ID3664\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3662\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID3665\">735.8644939528369 102.0907391628056 735.8644947548266 102.0776466428749 735.4891434307215 102.0907393575065 735.2875329230618 102.0907397597139 734.0724209669795 101.9707825203602 735.8645247331529 101.5882462897513 736.9058484840565 99.57791686177782 763.2389905741003 99.57787249454114 887.6704907726396 99.57766217368948 887.6704894585492 99.57598701599015 913.7543450958182 99.57594301533038 916.7124166830668 97.89038345961069 916.7124167075584 97.74775724327564 916.7124167617736 97.43233643515308 734.0742455212076 69.75744305903606 734.072401577305 69.75744305544481 735.9993920174456 102.0907389349276 736.9058499941009 102.0907373573822 735.9993926456922 102.0765930522918 736.905848895943 101.5927852330937 736.9058488979252 101.592110709009 735.9994143344784 101.588248373199 797.2050657694481 102.0906355763458 853.1786321085552 102.090540988799 792.3487306179256 102.0906437828723 858.1351055315834 102.0905326130481 884.6812943004728 102.0904877385807 884.7124297917486 102.0904877269418 887.6704909705589 102.0904826864898 763.2389920842011 102.0906929901401 913.7543466078603 102.0904386858341 916.7124195655727 102.0904336891439 913.7543485195956 99.57761817304191 734.8635684384514 69.75744171105342 735.102401745109 69.75744130858108 736.9058305349537 69.75743826827568 763.2389726223174 69.75739380860711 766.0724015772756 69.75738902379857 792.3498287266539 69.75734464844514 797.2044714324825 69.75733645044362 853.1795758274121 69.75724192569183 858.1346286037965 69.75723355813119 884.7124046163016 69.75718867660085 887.6704767992991 69.75718368131166 916.7124001036854 69.7571345439747</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"45\" source=\"#ID3665\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3661\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3659\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3660\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"43\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3661\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 7 0 8 8 0 9 9 0 10 10 0 11 11 0 12 12 0 13 14 15 16 15 14 17 17 14 18 19 20 21 20 19 22 20 22 23 22 19 24 24 19 25 22 24 26 22 26 27 22 27 28 29 30 31 30 29 32 30 32 33 33 32 34 33 34 35 33 35 36 13 37 38 37 13 29 29 13 0 29 0 39 29 39 16 29 16 40 40 16 15 29 40 21 29 21 20 37 29 31 37 31 41 37 41 42 42 41 43 43 41 44</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"43\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3661\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3662\" />\r\n\t\t\t\t\t<p>45 0 46 1 47 2 47 2 46 1 48 3 48 3 46 1 49 4 46 1 50 5 49 4 50 5 51 6 49 4 52 7 53 8 51 6 53 8 54 9 51 6 55 10 56 11 54 9 54 9 56 11 51 6 56 11 57 12 51 6 57 12 58 13 51 6 58 13 59 14 51 6 51 6 59 14 49 4 60 15 49 4 59 14 61 16 62 17 63 18 62 17 64 19 63 18 64 19 65 20 63 18 63 18 65 20 66 21 65 20 51 6 66 21 50 5 66 21 51 6 67 22 68 23 69 24 68 23 70 25 69 24 70 25 71 26 69 24 72 27 73 28 71 26 71 26 73 28 69 24 74 29 69 24 52 7 69 24 73 28 52 7 53 8 52 7 73 28 75 30 76 31 77 32 77 32 76 31 55 10 56 11 55 10 76 31 59 14 58 13 78 33 78 33 58 13 79 34 79 34 58 13 80 35 80 35 58 13 81 36 81 36 58 13 82 37 82 37 58 13 83 38 83 38 58 13 84 39 84 39 58 13 85 40 85 40 58 13 86 41 86 41 58 13 87 42 87 42 58 13 88 43 89 44 88 43 58 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3666\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3667\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3670\">-3094.469015747696 2251.421624191046 163.8103158895578 -3094.600138339416 2253.481035179597 163.810055741436 -3094.722506349579 2253.539338510157 163.8100542259028 -3093.213830592474 2241.917877726711 163.8114843707278 -3093.382160218735 2242.344186366611 163.8114374841378 -3093.346056945382 2242.039722367841 163.8114751151072 -3093.344360552939 2242.02554964198 163.8114764887217 -3093.338594583935 2241.97732266236 163.8114828255245 -3093.338594583935 2241.97732266236 163.8114828255245 -3093.344360552939 2242.02554964198 163.8114764887217 -3093.213830592474 2241.917877726711 163.8114843707278 -3093.346056945382 2242.039722367841 163.8114751151072 -3093.382160218735 2242.344186366611 163.8114374841378 -3094.469015747696 2251.421624191046 163.8103158895578 -3094.600138339416 2253.481035179597 163.810055741436 -3094.722506349579 2253.539338510157 163.8100542259028</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3670\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3668\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3671\">4.887342862135764e-005 0.0001294034206863307 0.9999999904330714 4.887342862135764e-005 0.0001294034206863307 0.9999999904330714 4.887342862135764e-005 0.0001294034206863307 0.9999999904330714 4.887342862135764e-005 0.0001294034206863307 0.9999999904330714 4.887342862135764e-005 0.0001294034206863307 0.9999999904330714 4.887342862135764e-005 0.0001294034206863307 0.9999999904330714 4.887342862135764e-005 0.0001294034206863307 0.9999999904330714 4.887342862135764e-005 0.0001294034206863307 0.9999999904330714 -4.887342862135764e-005 -0.0001294034206863307 -0.9999999904330714 -4.887342862135764e-005 -0.0001294034206863307 -0.9999999904330714 -4.887342862135764e-005 -0.0001294034206863307 -0.9999999904330714 -4.887342862135764e-005 -0.0001294034206863307 -0.9999999904330714 -4.887342862135764e-005 -0.0001294034206863307 -0.9999999904330714 -4.887342862135764e-005 -0.0001294034206863307 -0.9999999904330714 -4.887342862135764e-005 -0.0001294034206863307 -0.9999999904330714 -4.887342862135764e-005 -0.0001294034206863307 -0.9999999904330714</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3671\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3669\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3667\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3668\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3669\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 3 5 6 3 6 7 8 9 10 9 11 10 11 12 10 12 13 10 10 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3672\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3673\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID3677\">-2912.991847283493 735.2952663179731 239.9858370587388 -3081.134577755789 2140.017414554745 163.8240807306769 -2912.995593290785 735.2854288624781 163.9976488114583 -3080.244312383302 2132.629060177147 239.8131826595104 -3080.619736405466 2135.759976336985 234.8658826245154 -3080.614006037353 2135.715154584327 239.8128016474383 -3080.618586026756 2135.750978303707 235.8589840092691 -3080.740310199518 2136.767321169054 234.8684188332251 -3080.739890493078 2136.76761086897 237.0209367438951 -3080.739346148959 2136.767986600037 239.8126715143605 -3080.953123228658 2138.550910336026 239.812450966955 -3081.131040613446 2140.034760378168 239.81226787629 -3081.13546274455 2140.025155461558 163.8240800082992 -3081.131388594373 2140.034022943813 233.9067560152301 -3081.131214581632 2140.034391708214 236.8598900368885 -3093.338594583935 2241.97732266236 163.8114828255245 -3081.158022987684 2140.256542065465 233.9067285209221 -3081.18393172169 2140.479147547207 233.9027641199432 -3081.184657379708 2140.479061176118 233.9067010266155 -3088.233165782677 2199.373076232836 233.8954872139145 -3091.152463509762 2223.758741569227 233.8924741158824 -3093.334526830769 2241.986093098336 233.8902218452347 -3093.344360552939 2242.02554964198 163.8114764887217 -3093.386946892335 2242.431146728125 233.8901668043482 -3093.346056945382 2242.039722367841 163.8114751151072 -3093.382160218735 2242.344186366611 163.8114374841378 -3093.388833037986 2242.443480821383 239.7996141820986 -3093.386655590929 2242.431911770839 239.7996155566347 -3093.386655590929 2242.431911770839 239.7996155566347 -3093.386946892335 2242.431146728125 233.8901668043482 -3093.388833037986 2242.443480821383 239.7996141820986 -3093.382160218735 2242.344186366611 163.8114374841378 -3093.346056945382 2242.039722367841 163.8114751151072 -3093.344360552939 2242.02554964198 163.8114764887217 -3093.334526830769 2241.986093098336 233.8902218452347 -3093.338594583935 2241.97732266236 163.8114828255245 -3091.152463509762 2223.758741569227 233.8924741158824 -3088.233165782677 2199.373076232836 233.8954872139145 -3081.18393172169 2140.479147547207 233.9027641199432 -3081.184657379708 2140.479061176118 233.9067010266155 -3081.158022987684 2140.256542065465 233.9067285209221 -3081.131388594373 2140.034022943813 233.9067560152301 -3081.13546274455 2140.025155461558 163.8240800082992 -3081.131214581632 2140.034391708214 236.8598900368885 -3081.131040613446 2140.034760378168 239.81226787629 -3081.134577755789 2140.017414554745 163.8240807306769 -3080.953123228658 2138.550910336026 239.812450966955 -3080.739346148959 2136.767986600037 239.8126715143605 -3080.739890493078 2136.76761086897 237.0209367438951 -3080.740310199518 2136.767321169054 234.8684188332251 -3080.619736405466 2135.759976336985 234.8658826245154 -3080.618586026756 2135.750978303707 235.8589840092691 -3080.614006037353 2135.715154584327 239.8128016474383 -3080.244312383302 2132.629060177147 239.8131826595104 -2912.991847283493 735.2952663179731 239.9858370587388 -2912.995593290785 735.2854288624781 163.9976488114583</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID3677\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3674\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID3678\">-0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 -0.9929126972895533 -0.1188459928470263 7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005 0.9929126972895533 0.1188459928470263 -7.4467365783415e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID3678\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3676\">\r\n\t\t\t\t\t<float_array count=\"112\" id=\"ID3679\">-2.90587657520942 0.9663450927199211 -13.9962740387752 -0.03579347571016411 -2.90580823750681 -0.03365756096611827 -13.93793216266722 0.9642204222505661 -13.96265191662861 0.8991144078567448 -13.9622973962609 0.9642157335143793 -13.96258074614044 0.9121835962465905 -13.9706049804327 0.8991478906015367 -13.97060670996245 0.9274749726849665 -13.970608953106 0.9642141327198903 -13.98468561673919 0.9642114181118284 -13.99640101291871 0.9642091649329538 -13.99633511510653 -0.0357934843598442 -13.99639596583935 0.8864927767370339 -13.99639848970224 0.9253559465047756 -14.80125522177109 -0.03594850428220786 -13.99815277124845 0.8864924383943253 -13.99990957303331 0.8864402911748592 -13.99990957657073 0.8864921000516355 -14.46488156296848 0.8863507422160502 -14.65740867538267 0.8863136628178951 -14.80131532334361 0.8862859461342296 -14.80163597134312 -0.03594858257884814 -14.80482826321038 0.8862852695796062 -14.80174786608374 -0.03594859915997128 -14.80415131624292 -0.03594906192740055 -14.80492565478506 0.9640534494873161 -14.80483357774078 0.9640534671167855 1420.018442836276 424.999959187675 1420.018442836329 424.9221911965169 1420.018342381694 424.9999591877786 1420.019112617373 423.9999591941742 1420.021734743039 423.9999591940606 1420.021856818411 423.9999591890919 1420.022275397514 424.9221911965136 1420.022272210102 423.9999591940599 1420.179275247794 424.9221911981857 1420.38931924682 424.9221911987467 1420.89659624784 424.9221911986521 1420.896596247843 424.9222430073913 1420.898512894339 424.9222430073905 1420.90042954093 424.9222430073897 1420.900427166977 423.9999591942494 1420.900429684883 424.961106073998 1420.900429828799 424.9999591892932 1420.900493800277 423.9999591911364 1420.913211138573 424.9999591862015 1420.928568553357 424.9999591897819 1420.9285682615 424.9632201272959 1420.928568036461 424.9348931204258 1420.937244699204 424.9348581060921 1420.937323319441 424.9479272459207 1420.937636328882 424.9999591898519 1420.964218408866 424.9999591860827 1433.00001453129 424.9999591906432 1433.000014531349 423.9999591907362</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID3679\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3675\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3673\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3674\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"26\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3675\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3676\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 1 1 4 4 7 7 1 1 7 7 8 8 1 1 8 8 9 9 1 1 9 9 10 10 1 1 10 10 11 11 1 1 11 11 12 12 12 12 11 11 13 13 13 13 11 11 14 14 13 13 15 15 12 12 15 15 13 13 16 16 15 15 16 16 17 17 17 17 16 16 18 18 15 15 17 17 19 19 15 15 19 19 20 20 15 15 20 20 21 21 15 15 21 21 22 22 22 22 21 21 23 23 22 22 23 23 24 24 24 24 23 23 25 25 25 25 23 23 26 26 26 26 23 23 27 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"26\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3675\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3676\" />\r\n\t\t\t\t\t<p>28 28 29 29 30 30 30 30 29 29 31 31 31 31 29 29 32 32 32 32 29 29 33 33 29 29 34 34 33 33 33 33 34 34 35 35 34 34 36 36 35 35 36 36 37 37 35 35 37 37 38 38 35 35 39 39 40 40 38 38 38 38 40 40 35 35 40 40 41 41 35 35 42 42 35 35 41 41 43 43 44 44 41 41 41 41 44 44 42 42 42 42 44 44 45 45 44 44 46 46 45 45 46 46 47 47 45 45 47 47 48 48 45 45 48 48 49 49 45 45 49 49 50 50 45 45 51 51 52 52 50 50 52 52 53 53 50 50 50 50 53 53 45 45 53 53 54 54 45 45 55 55 45 45 54 54</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3680\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3681\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3685\">643.9878892211855 2270.390003392166 187.0619667870257 593.7754511075814 2706.233048074697 163.5696151641498 643.986733981098 2270.38696913899 163.6235641994285 643.99018809366 2270.396041207282 233.7022480112945 643.9904828793024 2270.39677318327 239.6077708414192 643.9899571128276 2270.401337270119 239.6077702764678 593.7791968423844 2706.242884884394 239.5538213081701 593.7791968423844 2706.242884884394 239.5538213081701 643.9899571128276 2270.401337270119 239.6077702764678 593.7754511075814 2706.233048074697 163.5696151641498 643.9904828793024 2270.39677318327 239.6077708414192 643.99018809366 2270.396041207282 233.7022480112945 643.9878892211855 2270.390003392166 187.0619667870257 643.986733981098 2270.38696913899 163.6235641994285</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID3685\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3682\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3686\">-0.993429331890082 -0.114447186387737 6.378366559999542e-005 -0.993429331890082 -0.114447186387737 6.378366559999542e-005 -0.993429331890082 -0.114447186387737 6.378366559999542e-005 -0.993429331890082 -0.114447186387737 6.378366559999542e-005 -0.993429331890082 -0.114447186387737 6.378366559999542e-005 -0.993429331890082 -0.114447186387737 6.378366559999542e-005 -0.993429331890082 -0.114447186387737 6.378366559999542e-005 0.993429331890082 0.114447186387737 -6.378366559999542e-005 0.993429331890082 0.114447186387737 -6.378366559999542e-005 0.993429331890082 0.114447186387737 -6.378366559999542e-005 0.993429331890082 0.114447186387737 -6.378366559999542e-005 0.993429331890082 0.114447186387737 -6.378366559999542e-005 0.993429331890082 0.114447186387737 -6.378366559999542e-005 0.993429331890082 0.114447186387737 -6.378366559999542e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID3686\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3684\">\r\n\t\t\t\t\t<float_array count=\"14\" id=\"ID3687\">1363.587558557506 424.3028896691792 1359.96410848754 423.9930589463079 1363.587604919768 423.9944416912661 1363.587466301472 424.9166729839407 1363.587454890499 424.9943893116571 1363.587416946054 424.9943892971772 1359.963958186447 424.9930065600958</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID3687\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3683\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3681\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3682\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3683\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3684\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 1 1 4 4 5 5 1 1 5 5 6 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3683\" />\r\n\t\t\t\t\t<p>7 8 9 8 10 9 10 11 9 11 12 9 13 9 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3688\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3689\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3692\">1692.59670749697 1857.04705145997 233.7042492800303 1776.707547090067 1866.54728108683 233.6987605193294 1692.593246691496 1857.037948944541 163.6253834964513 1786.48816958433 1867.652725018153 239.6075702499407 1786.484423576962 1867.642887562819 163.6193820026737 1776.707838408872 1866.548046124213 239.6081954052579</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3692\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3690\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID3693\">-0.1122354568760669 0.9936816326322219 -0.0001232444035199869 -0.1122354568760669 0.9936816326322219 -0.0001232444035199869 -0.1122354568760669 0.9936816326322219 -0.0001232444035199869 -0.1122354568760669 0.9936816326322219 -0.0001232444035199869 -0.1122354568760669 0.9936816326322219 -0.0001232444035199869 -0.1122354568760669 0.9936816326322219 -0.0001232444035199869</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID3693\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3691\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3689\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3690\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3691\" />\r\n\t\t\t\t\t<p>0 1 2 2 3 4 3 2 1 3 1 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3694\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3695\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3699\">1584.782228140844 2811.548271315324 163.5071271317896 1692.59670749697 1857.04705145997 233.7042492800303 1692.593246691496 1857.037948944541 163.6253834964513 1688.828598218554 1890.409747208392 236.6174353735423 1688.828747668084 1890.410148162573 239.6091566498253 1584.785974148046 2811.558108770724 239.4953153790646 1693.667773422508 1847.566033562067 236.622888333232 1693.667626246368 1847.565655498381 233.7054560304685 1688.828598218554 1890.409747208392 236.6174353735423 1692.59670749697 1857.04705145997 233.7042492800303 1693.667773422508 1847.566033562067 236.622888333232 1693.667626246368 1847.565655498381 233.7054560304685 1584.785974148046 2811.558108770724 239.4953153790646 1584.782228140844 2811.548271315324 163.5071271317896 1688.828747668084 1890.410148162573 239.6091566498253 1692.593246691496 1857.037948944541 163.6253834964513</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3699\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3696\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID3700\">0.9936816411174023 0.1122354308645112 -6.453591117649773e-005 0.9936816411174023 0.1122354308645112 -6.453591117649773e-005 0.9936816411174023 0.1122354308645112 -6.453591117649773e-005 0.9936816411174023 0.1122354308645112 -6.453591117649773e-005 0.9936816411174023 0.1122354308645112 -6.453591117649773e-005 0.9936816411174023 0.1122354308645112 -6.453591117649773e-005 0.9936816411174023 0.1122354308645112 -6.453591117649773e-005 0.9936816411174023 0.1122354308645112 -6.453591117649773e-005 -0.9936816411174023 -0.1122354308645112 6.453591117649773e-005 -0.9936816411174023 -0.1122354308645112 6.453591117649773e-005 -0.9936816411174023 -0.1122354308645112 6.453591117649773e-005 -0.9936816411174023 -0.1122354308645112 6.453591117649773e-005 -0.9936816411174023 -0.1122354308645112 6.453591117649773e-005 -0.9936816411174023 -0.1122354308645112 6.453591117649773e-005 -0.9936816411174023 -0.1122354308645112 6.453591117649773e-005 -0.9936816411174023 -0.1122354308645112 6.453591117649773e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID3700\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3698\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID3701\">26.03769409864837 -0.03614540821677714 18.50766675018618 0.8877476076559474 18.50759451627021 -0.03448850864630826 18.77086395434098 0.9260815456759279 18.77086713284781 0.9654525226479778 26.03777217534676 0.9638572435107187 18.43287133263042 0.9261578241800388 18.43286833506771 0.8877644882352063</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID3701\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3697\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3695\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3696\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3697\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3698\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 1 1 6 6 7 7 6 6 1 1 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3697\" />\r\n\t\t\t\t\t<p>8 9 10 11 10 9 12 13 14 14 13 8 8 13 9 15 9 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3702\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3703\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID3706\">808.8025523661872 -495.4475028402685 163.9735055196361 820.7605473215403 -595.4621185767746 234.0646054932483 820.7571050300603 -595.4711855398455 163.9858652915009 820.1693977259338 -590.5159409462799 234.0639940932477 813.7541881254861 -536.8395670556324 234.0573609262426 808.8626964812229 -495.9122176431715 234.0523000699716 808.8629898220729 -495.9114523509993 239.9617487374165 808.8063330956516 -495.4376612334418 239.9616937843807 807.5162502777002 -484.685019661657 163.9721756162254 808.4394254515505 -492.3677457022914 239.9613121482271 807.5199962848883 -484.6751822062447 239.9603638635047 807.5199961966805 -484.6751824378812 239.9585745504745 822.0049346348633 -605.9117696389367 163.9871554183355 822.0472975194616 -606.2241726983939 239.9753804851296 822.0434071183622 -606.2336687168836 163.987195194911 821.2485500571111 -599.5416458908881 239.9745576522622 821.2215448527468 -599.3157134350363 239.9745297344727 820.7608412923451 -595.4613492475655 239.974053659097</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3706\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3704\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID3707\">0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005 0.992933435825077 0.1186726077710857 -6.469480569690207e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID3707\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3705\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3703\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3704\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3705\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 7 0 8 7 8 9 9 8 10 10 8 11 12 13 14 13 12 15 15 12 2 15 2 16 16 2 1 16 1 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3708\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3709\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID3712\">890.4300388105826 -1178.424276061255 164.0578999037997 889.1471921718862 -1167.652720384629 234.1353093587956 890.4337848177661 -1178.414438605999 240.0460881510709 863.842158392989 -955.9636623797142 164.0304107899291 877.2491935267672 -1068.10215040768 234.1230077951657 877.1926483060493 -1067.629036633433 234.1229493311681 877.192939810353 -1067.628271564667 240.0323980295498 875.9066386686804 -1056.865788274416 240.0310679356575 863.8511391232141 -955.9974443347055 240.0186032622686 861.5846999540986 -937.0341522922809 240.0162598983132 861.5874995296417 -937.0989361315124 164.0280797048247 836.2042481445128 -724.7173220250975 164.0018360366069 836.2132288746084 -724.7511039795145 239.9900272989127 833.9478546349455 -705.7967221999147 239.9876850360295 833.9506542104296 -705.8615060383118 163.9995060525349 822.0434071183622 -606.2336687168836 163.987195194911 822.0472975194616 -606.2241726983939 239.9753804851296 889.1474836762486 -1167.651955315838 240.0447580571785 889.1471921718862 -1167.652720384629 234.1353093587956 890.4337848177661 -1178.414438605999 240.0460881510709 889.1474836762486 -1167.651955315838 240.0447580571785 822.0472975194616 -606.2241726983939 239.9753804851296 822.0434071183622 -606.2336687168836 163.987195194911 833.9478546349455 -705.7967221999147 239.9876850360295 833.9506542104296 -705.8615060383118 163.9995060525349 836.2042481445128 -724.7173220250975 164.0018360366069 836.2132288746084 -724.7511039795145 239.9900272989127 861.5846999540986 -937.0341522922809 240.0162598983132 861.5874995296417 -937.0989361315124 164.0280797048247 863.842158392989 -955.9636623797142 164.0304107899291 863.8511391232141 -955.9974443347055 240.0186032622686 875.9066386686804 -1056.865788274416 240.0310679356575 877.192939810353 -1067.628271564667 240.0323980295498 877.1926483060493 -1067.629036633433 234.1229493311681 877.2491935267672 -1068.10215040768 234.1230077951657 890.4300388105826 -1178.424276061255 164.0578999037997</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID3712\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3710\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID3713\">0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 0.9929334414110369 0.1186725610301032 -6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005 -0.9929334414110369 -0.1186725610301032 6.47007858028818e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID3713\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3711\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3709\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3710\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3711\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 7 3 8 8 3 9 9 3 10 9 10 11 9 11 12 12 11 13 13 11 14 13 14 15 13 15 16 17 2 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3711\" />\r\n\t\t\t\t\t<p>18 19 20 21 22 23 22 24 23 24 25 23 23 25 26 26 25 27 25 28 27 28 29 27 27 29 30 30 29 31 31 29 32 32 29 33 33 29 34 34 29 18 29 35 18 19 18 35</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3714\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3715\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID3719\">-220.76626523081 -1376.335084064825 164.138300131787 -231.9275666562949 -1371.980761274509 234.218239464627 -328.5435753399188 -1334.382873917211 234.2181324389702 -231.8678040505524 -1372.004004414678 234.2197281494611 -221.5314328402565 -1376.025445522891 240.1231278913326 -231.9275665832088 -1371.980761082724 234.2197278366849 -231.9272555457969 -1371.979945105925 240.1235268753777 -1703.107908688951 -799.474765945331 240.1248849217832 -1703.111891332413 -799.4852114905757 164.1366967648648 -338.9391053869276 -1330.336604740174 240.1263452936565 -328.5432857155797 -1334.382112953368 240.1263566466053 -328.5432857155797 -1334.382112953368 240.1263566466053 -328.5435753399188 -1334.382873917211 234.2181324389702 -338.9391053869276 -1330.336604740174 240.1263452936565 -1703.107908688951 -799.474765945331 240.1248849217832 -220.76626523081 -1376.335084064825 164.138300131787 -1703.111891332413 -799.4852114905757 164.1366967648648 -231.9272555457969 -1371.979945105925 240.1235268753777 -221.5314328402565 -1376.025445522891 240.1231278913326 -231.8678040505524 -1372.004004414678 234.2197281494611 -231.9275665832088 -1371.980761082724 234.2197278366849 -231.9275666562949 -1371.980761274509 234.218239464627</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID3719\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3716\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID3720\">-0.3626549653646237 -0.9319234704043022 0.0001463078446953733 -0.3626549653646237 -0.9319234704043022 0.0001463078446953733 -0.3626549653646237 -0.9319234704043022 0.0001463078446953733 -0.3626549653646237 -0.9319234704043022 0.0001463078446953733 -0.3626549653646237 -0.9319234704043022 0.0001463078446953733 -0.3626549653646237 -0.9319234704043022 0.0001463078446953733 -0.3626549653646237 -0.9319234704043022 0.0001463078446953733 -0.3626549653646237 -0.9319234704043022 0.0001463078446953733 -0.3626549653646237 -0.9319234704043022 0.0001463078446953733 -0.3626549653646237 -0.9319234704043022 0.0001463078446953733 -0.3626549653646237 -0.9319234704043022 0.0001463078446953733 0.3626549653646237 0.9319234704043022 -0.0001463078446953733 0.3626549653646237 0.9319234704043022 -0.0001463078446953733 0.3626549653646237 0.9319234704043022 -0.0001463078446953733 0.3626549653646237 0.9319234704043022 -0.0001463078446953733 0.3626549653646237 0.9319234704043022 -0.0001463078446953733 0.3626549653646237 0.9319234704043022 -0.0001463078446953733 0.3626549653646237 0.9319234704043022 -0.0001463078446953733 0.3626549653646237 0.9319234704043022 -0.0001463078446953733 0.3626549653646237 0.9319234704043022 -0.0001463078446953733 0.3626549653646237 0.9319234704043022 -0.0001463078446953733 0.3626549653646237 0.9319234704043022 -0.0001463078446953733</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID3720\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3718\">\r\n\t\t\t\t\t<float_array count=\"44\" id=\"ID3721\">7.831197191146882 -0.03182504446336321 7.737284227806303 0.8904264638346557 6.924572875970423 0.8904359183936568 7.737786899105563 0.890446048194538 7.8247317615421 0.968133479382248 7.737284227887903 0.8904460507737779 7.737284548906708 0.9681398988393326 -4.6379407894544 0.9683231805269443 -4.637944931687927 -0.03167947980378028 6.837125984570482 0.9681890209058781 6.924573197229176 0.9681880014571709 1397.586577311911 425.0042649032692 1397.586589355995 424.9265130294029 1397.498945398557 425.0042268096516 1385.999641684776 424.9992284437834 1398.495275266648 424.0046600612025 1385.999796578459 423.9992284740226 1398.401005229331 425.0045803072873 1398.488637143522 425.0046130009111 1398.401520997323 424.926886890516 1398.401017264394 424.9268866682623 1398.401017267427 424.9268670813759</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID3721\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3717\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3715\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3716\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3717\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3718\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 1 1 3 3 5 5 3 3 4 4 6 6 0 0 7 7 8 8 7 7 0 0 2 2 7 7 2 2 9 9 9 9 2 2 10 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3717\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID3718\" />\r\n\t\t\t\t\t<p>11 11 12 12 13 13 13 13 12 12 14 14 12 12 15 15 14 14 16 16 14 14 15 15 17 17 18 18 19 19 20 20 19 19 21 21 18 18 15 15 19 19 19 19 15 15 21 21 12 12 21 21 15 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3722\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3723\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID3726\">-3093.388833037986 2242.443480821383 239.7996141820986 -3094.469015747696 2251.421624191046 163.8103158895578 -3093.382160218735 2242.344186366611 163.8114374841378 -3094.075379823637 2248.18246833922 239.7989051000036 -3151.54605424072 2728.317033520471 239.7395798476257 -3094.722506349579 2253.539338510157 163.8100542259028 -3101.713587358315 2311.946956267863 163.8028376188028 -3108.704667837963 2370.354569604953 163.7956205668963 -3110.881028695687 2388.537172970668 163.793373929237 -3136.390891716063 2601.661627754485 163.7670403280525 -3138.55270159241 2619.722663632183 163.7648087112493 -3150.2240272137 2717.230622295126 163.7527602346879 -3151.546345560189 2728.316268481209 233.8301310854277 -3151.546345366021 2728.316268990923 233.8340682405473 -3165.194463185284 2842.344801090235 239.7254906048311 -3165.071228176344 2841.297684963196 204.1826028498319 -3163.868081728268 2831.267839748738 239.7268591120661 -3165.197322906807 2842.337292004426 181.7228790422112 -3163.872320517755 2831.257706940774 163.7386714973289 -3151.545882556939 2728.317416177019 233.8301310613135 -3153.349166829958 2743.381212831043 233.8282697729143 -3153.80255973053 2747.168645883387 233.8278017962454 -3156.015057738498 2765.650823423466 233.8255181316819 -3156.014910963301 2765.652174118904 233.8255179492702 -3163.849465164856 2831.104605815055 233.817430583862 -3163.848986628818 2831.104663579833 233.8213678531168 -3163.868421008435 2831.267029624247 233.8213477921257 -3165.117470605544 2841.660425810267 163.7373856789214 -3163.868251404802 2831.267421376137 236.71525184429 -3165.152516187174 2841.961622541446 178.1351351167858 -3165.197448427879 2842.32861642729 163.7373035786226 -3165.197448427879 2842.32861642729 163.7373035786226 -3165.152516187174 2841.961622541446 178.1351351167858 -3165.117470605544 2841.660425810267 163.7373856789214 -3165.071228176344 2841.297684963196 204.1826028498319 -3163.868081728268 2831.267839748738 239.7268591120661 -3163.868251404802 2831.267421376137 236.71525184429 -3163.868421008435 2831.267029624247 233.8213477921257 -3163.872320517755 2831.257706940774 163.7386714973289 -3163.848986628818 2831.104663579833 233.8213678531168 -3163.849465164856 2831.104605815055 233.817430583862 -3156.014910963301 2765.652174118904 233.8255179492702 -3156.015057738498 2765.650823423466 233.8255181316819 -3153.80255973053 2747.168645883387 233.8278017962454 -3153.349166829958 2743.381212831043 233.8282697729143 -3151.545882556939 2728.317416177019 233.8301310613135 -3151.546345560189 2728.316268481209 233.8301310854277 -3150.2240272137 2717.230622295126 163.7527602346879 -3165.197322906807 2842.337292004426 181.7228790422112 -3165.194463185284 2842.344801090235 239.7254906048311 -3151.546345366021 2728.316268990923 233.8340682405473 -3151.54605424072 2728.317033520471 239.7395798476257 -3138.55270159241 2619.722663632183 163.7648087112493 -3136.390891716063 2601.661627754485 163.7670403280525 -3110.881028695687 2388.537172970668 163.793373929237 -3108.704667837963 2370.354569604953 163.7956205668963 -3101.713587358315 2311.946956267863 163.8028376188028 -3094.722506349579 2253.539338510157 163.8100542259028 -3094.469015747696 2251.421624191046 163.8103158895578 -3094.075379823637 2248.18246833922 239.7989051000036 -3093.388833037986 2242.443480821383 239.7996141820986 -3093.382160218735 2242.344186366611 163.8114374841378</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID3726\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3724\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID3727\">-0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 -0.9929125997497191 -0.1188468110071572 6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005 0.9929125997497191 0.1188468110071572 -6.907737192600612e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID3727\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3725\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3723\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3724\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3725\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 6 4 7 7 4 8 8 4 9 9 4 10 10 4 11 11 4 12 12 4 13 14 15 16 15 14 17 12 18 11 18 12 19 18 19 20 18 20 21 18 21 22 18 22 23 18 23 24 18 24 25 18 25 26 18 26 27 27 26 28 27 28 16 27 16 15 27 15 29 27 29 30</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3725\" />\r\n\t\t\t\t\t<p>31 32 33 32 34 33 34 35 33 35 36 33 36 37 33 33 37 38 37 39 38 39 40 38 40 41 38 41 42 38 42 43 38 43 44 38 44 45 38 45 46 38 47 38 46 48 49 34 35 34 49 50 51 46 46 51 47 47 51 52 52 51 53 53 51 54 54 51 55 55 51 56 56 51 57 57 51 58 51 59 58 59 60 58 61 58 60</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3728\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3729\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID3732\">-221.5314573605001 -1376.025508523736 240.1264750252332 -231.9272555457969 -1371.979945105925 240.1235268753777 -221.5314328402565 -1376.025445522891 240.1231278913326 -231.9272770319353 -1371.980000310723 240.1264636722609</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID3732\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3730\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID3733\">-0.3625817858360887 -0.9317334024689549 -0.0201820539969862 -0.3625817858360887 -0.9317334024689549 -0.0201820539969862 -0.3625817858360887 -0.9317334024689549 -0.0201820539969862 -0.3625817858360887 -0.9317334024689549 -0.0201820539969862</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID3733\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3731\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3729\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3730\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3731\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3734\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3735\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3737\">-2316.169375546064 3142.055095972286 177.2336882876653 -2316.168495757753 3142.056463816326 177.2336880672169</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3737\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3736\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3735\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3736\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3738\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3741\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3743\">-3154.741619468136 2837.825992911451 242.0094889688457 -3154.741650154389 2837.825980738914 242.0031635329051</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3743\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3742\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3741\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3742\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3744\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3745\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID3747\">-172.4300541975435 -103.2839331196719 336.1815718422828 -172.4292248417278 -103.2909078074135 336.1815727042343 -172.4308837673602 -103.2769566325551 336.1815709801369</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3747\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3746\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3745\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3746\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3748\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3749\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3751\">-2149.513530294895 3076.967031124337 177.2339006455034 -2149.821019405416 3077.32262919507 177.2338697643809</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3751\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3750\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3749\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3750\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3752\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3753\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3755\">-312.1015169610782 -1340.774587953088 243.2185665502013 -312.1013206709395 -1340.776230360395 243.2185667520505</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3755\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3754\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3753\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3754\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3756\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3757\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3759\">643.5354594969317 2146.009927882015 242.7200770237691 643.5339867367643 2146.010572990214 242.7200770152957</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3759\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3758\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3757\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3758\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3760\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3761\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID3763\">643.5307569701272 2146.002091052625 177.2167700152933 643.5322297301996 2146.001445944371 177.2167699548891 643.5298426528475 2145.999995862969 177.2167683290771</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3763\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3762\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3761\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3762\" />\r\n\t\t\t\t\t<p>1 0 2 0 1 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3764\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3765\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID3767\">-1832.21704419034 2050.674224764733 247.9453864598231 -1832.21487566181 2050.675818598363 247.9453861465916 -1832.21734964135 2050.676779774767 247.9453861441083 -1832.219510845493 2050.67518465894 247.9453864571534</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID3767\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3766\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3765\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3766\" />\r\n\t\t\t\t\t<p>1 0 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3766\" />\r\n\t\t\t\t\t<p>1 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3768\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3769\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3771\">788.5707587093061 -1138.76786144606 243.1381660066379 788.5655846904847 -1138.771058464089 243.1381654833683</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3771\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3770\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3769\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3770\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3772\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3773\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3775\">-3163.90558430686 2831.561639111349 242.8190177591804 -3163.907676321252 2831.578872806701 242.8190054921833</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3775\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3774\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3773\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3774\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3776\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3777\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID3779\">-2146.402461239939 87.00161877560686 243.9385899805125 -2146.500923297599 87.03254786649768 243.9387353896313 -2146.401179409469 86.97522481234046 243.9385933235245</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3779\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3778\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3777\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3778\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3778\" />\r\n\t\t\t\t\t<p>0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3780\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3781\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3783\">-3163.909072691152 2831.583564873357 235.148710204654 -3163.91371591938 2831.622282449678 235.1487054233815</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3783\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3782\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3781\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3782\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3784\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3785\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3787\">-312.1000744509151 -1340.776782227274 244.0331509567523 -312.1009983480594 -1340.778485923339 244.0331486397863</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3787\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3786\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3785\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3786\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3788\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3791\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID3793\">728.8887815731814 2295.472467888922 225.8208545970227 728.88916974531 2295.473487263863 233.6948702694935 838.9801169159596 2146.356171478603 225.8347320169235 863.8066980633571 2135.532501292921 225.8349093584019 1614.826356266995 1808.109686404333 225.8402740493442 724.9825668356666 2330.165501961376 225.8165557833594 634.2243726243969 3136.234122279532 225.7166758250334 634.2247528035609 3136.23513999702 233.5865377967895 634.2247607966215 3136.235141654433 233.5906914975157 1508.162410217096 2755.385390300883 233.5969132775906 1614.828511343777 1808.10993546045 233.7142897344386 1614.828497642536 1808.109908747095 233.4977549582104 1614.828490944929 1808.109909361444 233.4824829413944 1614.828490040427 1808.109906918895 233.4636895567322</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID3793\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3792\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3791\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3792\" />\r\n\t\t\t\t\t<p>1 0 2 0 0 5 5 6 8 9 10 9 10 11 11 12</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3792\" />\r\n\t\t\t\t\t<p>3 2 4 3 7 6 8 7 12 13</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3794\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3795\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3797\">-1657.502449893949 2798.825963597913 177.487355223404 -1657.50491953196 2798.826778295905 177.4866222867229</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3797\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3796\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3795\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3796\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3798\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3799\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3801\">-1563.248030737921 2757.814463616893 247.8221202377201 -1563.248606120333 2757.799381148209 247.8221222197585</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3801\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3800\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3799\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3800\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3802\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3803\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3805\">-2912.993148201962 735.2951106012574 239.9858371317454 -2912.996894117081 735.2852731617613 163.9976487848774</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3805\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3804\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3803\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3804\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3806\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3807\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3809\">716.1420137883938 3219.330014475458 227.0142170766073 716.2795426286621 3219.630966697824 227.0141826614772</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3809\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3808\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3807\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3808\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3810\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3811\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3813\">808.8070409237557 -495.4404391026519 245.9841902664881 808.8030373878701 -495.4076449230324 245.9853536881651</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3813\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3812\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3811\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3812\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3814\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3815\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3817\">1698.562916787719 1891.617831263029 233.699352836583 1698.578475593352 1891.475548736702 233.6993701733556</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3817\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3816\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3815\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3816\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3818\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3819\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3821\">-3093.35702025807 2242.180842185559 239.7996466495321 -3093.333773610016 2241.986625114203 239.7996706466172</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3821\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3820\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3819\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3820\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3822\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3823\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3825\">624.1593729764113 2572.576225056247 233.6641659749485 624.1930072628452 2572.561701457462 233.6641661971613</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3825\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3824\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3823\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3824\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3826\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3827\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3829\">-3110.878848691709 2388.543560306604 201.7868739320925 -3110.878848183829 2388.543561794681 201.7957249826713</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3829\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3828\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3827\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3828\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3830\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3831\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID3833\">320.1328476912431 -1585.994245184721 164.1387776933116 320.174436654549 -1586.010429250316 164.1387777382731 320.2089208048906 -1586.028219578674 164.1387783414328</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3833\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3832\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3831\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3832\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3834\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3835\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID3837\">853.3731026129972 2140.082435268115 233.7088504987373 853.3731004988699 2140.082433708133 233.6924115409237 853.4312287599119 2140.125327275422 233.7088424434779</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3837\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3836\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3835\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3836\" />\r\n\t\t\t\t\t<p>1 0 2 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3838\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3839\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3841\">657.8054402959774 2250.915640595812 233.7028211340954 657.789675647733 2250.936973298021 233.5401721467264</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3841\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3840\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3839\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3840\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3842\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3843\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3845\">214.3001850180954 3355.528919470105 239.4924538911557 218.5635045751164 3358.673855036724 239.4918365768656</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3845\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3844\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3843\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3844\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3846\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3847\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3849\">-3080.613463754738 2135.716282445529 239.8128014626067 -3080.618586026756 2135.750978303707 235.8589840092691</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3849\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3848\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3847\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3848\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3850\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3851\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3853\">901.9360052938528 3123.594827007242 163.500391906706 894.4958327041568 3126.995284029732 166.4777382530378</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3853\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3852\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3851\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3852\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3854\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3855\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3857\">833.8777085451739 -705.6978126948907 239.9876770221058 833.9478546349455 -705.7967221999147 239.9876850360295</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3857\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3856\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3855\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3856\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3858\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3859\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3861\">836.2132288746084 -724.7511039795145 239.9900272989127 836.1652724996302 -724.8375312682956 239.9900421095148</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3861\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3860\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3859\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3860\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3862\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3863\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3865\">863.8511391232141 -955.9974443347055 240.0186032622686 863.8054890513554 -956.0797150419126 240.0186164988484</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3865\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3864\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3863\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3864\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3866\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3867\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3869\">-113.334499401009 -1418.130208068508 240.1265943305651 -113.355691959081 -1418.105195230919 240.1265927075544</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3869\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3868\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3867\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3868\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3870\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3871\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3873\">-95.35699872719579 -1425.109330582015 240.1266124649884 -95.38293260669889 -1425.116005184397 240.126614121051</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3873\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3872\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3871\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3872\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3874\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3875\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3877\">104.1183387807819 -1502.751312578957 240.1268340587913 104.1002711028068 -1502.729987726971 240.1268317325568</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3877\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3876\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3875\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3876\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3878\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3879\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3881\">122.0989643347039 -1509.734123078129 240.126851489979 122.0768542889628 -1509.739813765527 240.126853856931</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3881\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3880\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3879\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3880\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3882\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3883\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID3885\">-3080.994027774851 2139.957403358406 163.8240820263792 -3080.989559578536 2139.955638626278 163.8240820345644 -3081.13546274455 2140.025155461558 163.8240800082992 -3081.134577755789 2140.017414554745 163.8240807306769</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID3885\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3884\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3883\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3884\" />\r\n\t\t\t\t\t<p>1 0 0 2 3 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3886\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3887\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3889\">-113.3334876946788 -1418.142191809508 164.1384163355018 -113.3569377755198 -1418.11451687103 164.1384139087278</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3889\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3888\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3887\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3888\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3890\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3891\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3893\">-95.35824454312524 -1425.118652228015 164.1384333750822 -95.38693420562322 -1425.126033433599 164.1384357449861</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3893\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3892\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3891\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3892\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3894\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3895\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID3897\">-3150.201276380947 2717.246500882946 163.7527577142055 -3150.2240272137 2717.230622295126 163.7527602346879 -3151.529174638322 2728.322415639261 163.7513892843238</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3897\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3896\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3895\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3896\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3898\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3899\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3901\">-2391.349786552546 3171.225373540631 239.6447651651009 -2391.191871395831 3171.26361304277 239.644752429834</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3901\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3900\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3899\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3900\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3902\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3903\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3905\">-3108.344439761294 2369.846621748481 163.7956685676577 -3108.704667837963 2370.354569604953 163.7956205668963</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3905\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3904\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3903\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3904\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3906\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3907\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3909\">-3138.55270159241 2619.722663632183 163.7648087112493 -3138.272118273514 2620.228351295365 163.7647294126528</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3909\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3908\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3907\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3908\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3910\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3911\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3913\">-3135.984738529423 2601.088834052123 163.7670944597866 -3136.390891716063 2601.661627754485 163.7670403280525</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3913\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3912\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3911\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3912\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3914\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3915\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3917\">-3110.881028695687 2388.537172970668 163.793373929237 -3110.632086277455 2388.986368622405 163.7933035039347</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3917\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3916\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3915\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3916\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3918\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3919\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3921\">-3163.868547391667 2831.266941125065 233.8174105097513 -3163.849465164856 2831.104605815055 233.817430583862</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3921\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3920\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3919\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3920\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3922\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3923\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3925\">104.1192803437275 -1502.763213537243 164.1386515141888 104.0990252863448 -1502.739309367411 164.1386494180709</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3925\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3924\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3923\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3924\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3926\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3927\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3929\">122.0977185187185 -1509.743444724629 164.1386688844376 122.0729385252962 -1509.749819928962 164.1386709313672</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3929\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3928\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3927\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3928\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3930\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3931\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3933\">-2373.006628780183 3164.186858216479 239.6447721146456 -2372.863246214404 3164.021042380562 239.6447865129798</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3933\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3932\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3931\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3932\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3934\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3935\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3937\">833.8432176860802 -705.7100118490967 163.9994910818717 833.9506542104296 -705.8615060383118 163.9995060525349</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3937\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3936\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3935\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3936\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3938\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3939\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3941\">836.2042481445128 -724.7173220250975 164.0018360366069 836.130781646275 -724.8497304244338 164.0018561459914</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3941\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3940\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3939\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3940\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3942\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3943\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3945\">861.4834342376435 -936.9521956226686 164.0280651900952 861.5874995296417 -937.0989361315124 164.0280797048247</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3945\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3944\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3943\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3944\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3946\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3947\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3949\">861.5179250969322 -936.9399964683685 240.0162514114356 861.5846999540986 -937.0341522922809 240.0162598983132</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3949\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3948\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3947\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3948\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3950\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3951\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3953\">863.842158392989 -955.9636623797142 164.0304107899291 863.7709981979247 -956.0919141980671 164.0304302542174</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3953\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3952\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3951\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3952\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3954\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3955\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID3957\">224.6102157797955 -1549.641395326244 234.2202315055706 224.7246701669883 -1549.556949867835 234.2226621472926 224.5394075344857 -1549.613775914347 234.2202326437669</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID3957\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3956\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3955\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3956\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3958\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3959\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3961\">-2167.999755658562 3084.181856597881 239.6450234065866 -2167.640273094663 3084.268906090383 239.6449944156733</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3961\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3960\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3959\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3960\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3962\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3963\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3965\">-2149.822436617825 3077.335126709659 239.6450137027712 -2149.513215320462 3076.977525437794 239.6450447544718</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3965\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3964\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3963\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3964\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3966\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3967\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3969\">1688.828747668084 1890.410148162573 239.6091566498253 1692.597591295565 1857.0478968202 239.6135705080084</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3969\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3968\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3967\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3968\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3970\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3971\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3973\">-220.8031252048436 -1376.025508523744 164.128094934921 -221.5314328402565 -1376.025445522891 240.1231278913326</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3973\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3972\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3971\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3972\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3974\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3975\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3977\">-220.7661064432841 -1376.335148320975 164.1225317692836 -220.76626523081 -1376.335084064825 164.138300131787</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3977\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3976\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3975\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3976\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3978\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3979\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3981\">-1706.645678416173 42.76987053177209 234.1065732436419 -1805.216703846125 73.73583321238311 234.1074236767428</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3981\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3980\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3979\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3980\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3984\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3985\">\r\n\t\t\t\t\t<float_array count=\"5742\" id=\"ID3988\">84.64293416672354 539.2472565560959 161.3892811276149 84.6429340036766 521.2191899349022 161.3868834741656 84.64293404786349 521.2191895060101 161.3894428545116 84.64293412253119 539.2472569849912 161.3867217472702 84.64293412253119 539.2472569849912 161.3867217472702 84.64293416672354 539.2472565560959 161.3892811276149 84.6429340036766 521.2191899349022 161.3868834741656 84.64293404786349 521.2191895060101 161.3894428545116 84.64550116852843 8.812973111815836e-005 9.82323638468654 84.64558816900808 18.02811187950155 4.56979428857117 84.64558805015622 4.101408589463063e-005 4.569956040066177 84.64547693296254 18.02817075224221 11.13147548236156 84.64294489536087 414.6470303954657 160.7381681332172 84.64536581577386 36.05630049038306 17.69299492465697 84.64547705181212 36.05624161765604 11.13131373086645 84.64525469858199 54.0844302285296 24.25451436695217 84.64536593464163 54.08437135579803 17.69283317316184 84.64514358141014 72.11255996667181 30.8160338092475 84.64525481744477 72.11250109393842 24.25435261545723 84.64503246421191 90.14068970482016 37.37755325154306 84.64514370025381 90.14063083209361 30.81587205775245 84.64491964206172 108.1688203453286 44.03964612508855 84.64503258306422 108.1687605702449 37.37739150004781 84.64481022982727 126.1969491811146 50.50059213613384 84.64491976091313 126.1968912107488 44.03948437359354 84.6446991126395 144.2250789192668 57.06211157842896 84.64481034869777 144.225020046536 50.50043038463863 84.644587995454 162.253208657412 63.62363102072405 84.64469923150045 162.2531497846848 57.061949826934 84.64436576107391 198.3094681336994 76.74666994639578 84.64448800188757 180.2813325082777 69.52898115073229 84.64458811431132 180.2812795228238 63.62346926922889 84.64448812074625 198.3094033736934 69.52881939923753 84.64425441167805 216.3375978629006 83.30818823565281 84.64436564772268 216.337538999123 76.74650820441651 84.64414329450847 234.3657237767667 89.86970628984165 84.64425453053491 234.3656649129796 83.30802650875673 84.64403217734525 252.3938496906281 96.43122434403058 84.64414341336897 252.3937908268442 89.86954456294612 84.64392106018431 270.4219756044846 102.99274239822 84.64403229619984 270.4219167407045 96.4310626171348 84.64380994301564 288.4501015183531 109.5542604524085 84.64392117903435 288.4500426545721 102.992580671324 84.64369882584379 306.4782274322114 116.1157785065982 84.64381006187614 306.4781685684404 109.5540987255128 84.64358770868057 324.5063533460772 122.6772965607864 84.64369894470565 324.5062944823027 116.115616779702 84.64347659151417 342.5344792599451 129.2388146149763 84.6435878275397 342.5344203961728 122.6771348338905 84.6433654743505 360.5626051738027 135.8003326691648 84.64347671037012 360.5625463100296 129.2386528880797 84.64325435717274 378.5907310876726 142.361850720774 84.64336559320645 378.5906722238935 135.8001709422693 84.64314321361326 396.6188569681842 148.9233687627268 84.64325447603596 396.6187981377555 142.3616889938784 84.64304506879307 414.6469769624 154.8287194273879 84.64314333246512 414.6469240182741 148.9232070358309 84.64304528388902 521.2191306422259 154.8277628232739 84.64294542154494 503.1911166661179 160.7373736977825 84.64293404786349 521.2191895060101 161.3894428545116 84.64161059341041 719.5286274531171 239.475590066744 84.64282293069027 539.2473154198689 167.9509609087015 84.64293416672354 539.2472565560959 161.3892811276149 84.64271181352797 557.2754413337364 174.5124789628895 84.64282304955623 557.2753824699535 167.9507991818049 84.64260069637567 575.3035672476013 181.0739970170779 84.64271193238619 575.3035083838275 174.5123172359938 84.64248957920063 593.331693161467 187.6355150712678 84.64260081521616 593.3316342976855 181.073835290183 84.64237846202968 611.3598190753259 194.1970331254554 84.64248969806431 611.3597602115543 187.6353533443713 84.6422673448692 629.38794498919 200.758551179644 84.64237858089155 629.3878861254124 194.1968713985612 84.64215622770689 647.4160709030555 207.3200692338333 84.6422674637297 647.4160120392841 200.7583894527495 84.64204511053367 665.4441968169206 213.8815872880221 84.64215634655693 665.4441379531463 207.3199075069374 84.64193399336182 683.4723227307836 220.4431053396326 84.64204522939554 683.4722638670098 213.8814255611271 84.64182284980006 701.5004486112985 227.0046233815842 84.64193411222141 701.5003897808703 220.4429436127356 84.64171079689095 719.5285744410377 233.5661414078168 84.64182296865147 719.5285156613892 227.0044616546904 84.64171085634507 729.3710940953689 233.5660531132185 84.64161065286862 729.3711471074452 239.4755017721442 84.6429340036766 521.2191899349022 161.3868834741656 84.64293404786349 521.2191895060101 161.3894428545116 84.64304528388902 521.2191306422259 154.8277628232739 84.6429340036766 521.2191899349022 161.3868834741656 84.64161065286862 729.3711471074452 239.4755017721442 84.64161059341041 719.5286274531171 239.475590066744 84.64171085634507 729.3710940953689 233.5660531132185 84.64171079689095 719.5285744410377 233.5661414078168 84.64182296865147 719.5285156613892 227.0044616546904 84.64182284980006 701.5004486112985 227.0046233815842 84.64193411222141 701.5003897808703 220.4429436127356 84.64193399336182 683.4723227307836 220.4431053396326 84.64204522939554 683.4722638670098 213.8814255611271 84.64204511053367 665.4441968169206 213.8815872880221 84.64215634655693 665.4441379531463 207.3199075069374 84.64215622770689 647.4160709030555 207.3200692338333 84.6422674637297 647.4160120392841 200.7583894527495 84.6422673448692 629.38794498919 200.758551179644 84.64237858089155 629.3878861254124 194.1968713985612 84.64237846202968 611.3598190753259 194.1970331254554 84.64248969806431 611.3597602115543 187.6353533443713 84.64248957920063 593.331693161467 187.6355150712678 84.64260081521616 593.3316342976855 181.073835290183 84.64260069637567 575.3035672476013 181.0739970170779 84.64271193238619 575.3035083838275 174.5123172359938 84.64271181352797 557.2754413337364 174.5124789628895 84.64282304955623 557.2753824699535 167.9507991818049 84.64282293069027 539.2473154198689 167.9509609087015 84.64293416672354 539.2472565560959 161.3892811276149 84.64294542154494 503.1911166661179 160.7373736977825 84.64294489536087 414.6470303954657 160.7381681332172 84.64304506879307 414.6469769624 154.8287194273879 84.64314333246512 414.6469240182741 148.9232070358309 84.64314321361326 396.6188569681842 148.9233687627268 84.64325447603596 396.6187981377555 142.3616889938784 84.64325435717274 378.5907310876726 142.361850720774 84.64336559320645 378.5906722238935 135.8001709422693 84.6433654743505 360.5626051738027 135.8003326691648 84.64347671037012 360.5625463100296 129.2386528880797 84.64347659151417 342.5344792599451 129.2388146149763 84.6435878275397 342.5344203961728 122.6771348338905 84.64358770868057 324.5063533460772 122.6772965607864 84.64369894470565 324.5062944823027 116.115616779702 84.64369882584379 306.4782274322114 116.1157785065982 84.64381006187614 306.4781685684404 109.5540987255128 84.64380994301564 288.4501015183531 109.5542604524085 84.64392117903435 288.4500426545721 102.992580671324 84.64392106018431 270.4219756044846 102.99274239822 84.64403229619984 270.4219167407045 96.4310626171348 84.64403217734525 252.3938496906281 96.43122434403058 84.64414341336897 252.3937908268442 89.86954456294612 84.64414329450847 234.3657237767667 89.86970628984165 84.64425453053491 234.3656649129796 83.30802650875673 84.64425441167805 216.3375978629006 83.30818823565281 84.64436564772268 216.337538999123 76.74650820441651 84.64436576107391 198.3094681336994 76.74666994639578 84.64448812074625 198.3094033736934 69.52881939923753 84.64448800188757 180.2813325082777 69.52898115073229 84.64458811431132 180.2812795228238 63.62346926922889 84.644587995454 162.253208657412 63.62363102072405 84.64469923150045 162.2531497846848 57.061949826934 84.6446991126395 144.2250789192668 57.06211157842896 84.64481034869777 144.225020046536 50.50043038463863 84.64481022982727 126.1969491811146 50.50059213613384 84.64491976091313 126.1968912107488 44.03948437359354 84.64491964206172 108.1688203453286 44.03964612508855 84.64503258306422 108.1687605702449 37.37739150004781 84.64503246421191 90.14068970482016 37.37755325154306 84.64514370025381 90.14063083209361 30.81587205775245 84.64514358141014 72.11255996667181 30.8160338092475 84.64525481744477 72.11250109393842 24.25435261545723 84.64525469858199 54.0844302285296 24.25451436695217 84.64536593464163 54.08437135579803 17.69283317316184 84.64536581577386 36.05630049038306 17.69299492465697 84.64547705181212 36.05624161765604 11.13131373086645 84.64547693296254 18.02817075224221 11.13147548236156 84.64550116852843 8.812973111815836e-005 9.82323638468654 84.64558816900808 18.02811187950155 4.56979428857117 84.64558805015622 4.101408589463063e-005 4.569956040066177 84.64293416672354 539.2472565560959 161.3892811276149 9.839783848964999 539.2472569965795 161.3880130369195 84.64293412253119 539.2472569849912 161.3867217472702 9.839672612939467 539.2473158603619 167.9496928180037 84.64282293069027 539.2473154198689 167.9509609087015 9.839672657119536 539.2473154314602 167.9522521983514 9.839672657119536 539.2473154314602 167.9522521983514 84.64282293069027 539.2473154198689 167.9509609087015 9.839672612939467 539.2473158603619 167.9496928180037 84.64293416672354 539.2472565560959 161.3892811276149 9.839783848964999 539.2472569965795 161.3880130369195 84.64293412253119 539.2472569849912 161.3867217472702 84.64282293069027 539.2473154198689 167.9509609087015 84.64293412253119 539.2472569849912 161.3867217472702 84.64293416672354 539.2472565560959 161.3892811276149 84.6429340036766 521.2191899349022 161.3868834741656 84.64304542783566 543.052532541099 154.8275669866999 84.64304528388902 521.2191306422259 154.8277628232739 84.64282304955623 557.2753824699535 167.9507991818049 84.64195715912456 719.5284445588819 219.0577531062402 84.64271193238619 575.3035083838275 174.5123172359938 84.64271181352797 557.2754413337364 174.5124789628895 84.64260081521616 593.3316342976855 181.073835290183 84.64260069637567 575.3035672476013 181.0739970170779 84.64248969806431 611.3597602115543 187.6353533443713 84.64248957920063 593.331693161467 187.6355150712678 84.64237858089155 629.3878861254124 194.1968713985612 84.64237846202968 611.3598190753259 194.1970331254554 84.6422674637297 647.4160120392841 200.7583894527495 84.6422673448692 629.38794498919 200.758551179644 84.64215634655693 665.4441379531463 207.3199075069374 84.64215622770689 647.4160709030555 207.3200692338333 84.64204522939554 683.4722638670098 213.8814255611271 84.64204511053367 665.4441968169206 213.8815872880221 84.64193399336182 683.4723227307836 220.4431053396326 84.64193411222141 701.5003897808703 220.4429436127356 84.64182284980006 701.5004486112985 227.0046233815842 84.64182296865147 719.5285156613892 227.0044616546904 84.64182296865147 719.5285156613892 227.0044616546904 84.64182284980006 701.5004486112985 227.0046233815842 84.64195715912456 719.5284445588819 219.0577531062402 84.64193411222141 701.5003897808703 220.4429436127356 84.64193399336182 683.4723227307836 220.4431053396326 84.64204522939554 683.4722638670098 213.8814255611271 84.64204511053367 665.4441968169206 213.8815872880221 84.64215634655693 665.4441379531463 207.3199075069374 84.64215622770689 647.4160709030555 207.3200692338333 84.6422674637297 647.4160120392841 200.7583894527495 84.6422673448692 629.38794498919 200.758551179644 84.64237858089155 629.3878861254124 194.1968713985612 84.64237846202968 611.3598190753259 194.1970331254554 84.64248969806431 611.3597602115543 187.6353533443713 84.64248957920063 593.331693161467 187.6355150712678 84.64260081521616 593.3316342976855 181.073835290183 84.64260069637567 575.3035672476013 181.0739970170779 84.64271193238619 575.3035083838275 174.5123172359938 84.64271181352797 557.2754413337364 174.5124789628895 84.64282304955623 557.2753824699535 167.9507991818049 84.64304542783566 543.052532541099 154.8275669866999 84.64282293069027 539.2473154198689 167.9509609087015 84.64293412253119 539.2472569849912 161.3867217472702 84.6429340036766 521.2191899349022 161.3868834741656 84.64304528388902 521.2191306422259 154.8277628232739 84.64293416672354 539.2472565560959 161.3892811276149 84.6429340036766 521.2191899349022 161.3868834741656 9.839783848964999 539.2472569965795 161.3880130369195 9.839783730105864 521.21918994649 161.3881747638153 84.64293412253119 539.2472569849912 161.3867217472702 84.64293412253119 539.2472569849912 161.3867217472702 84.6429340036766 521.2191899349022 161.3868834741656 9.839783848964999 539.2472569965795 161.3880130369195 9.839783730105864 521.21918994649 161.3881747638153 94.48546448008801 414.6470303395421 160.73833497646 84.64294542154494 503.1911166661179 160.7373736977825 84.64294489536087 414.6470303954657 160.7381681332172 94.48546500627435 503.1911166101844 160.7375405410218 94.48546500627435 503.1911166101844 160.7375405410218 94.48546448008801 414.6470303395421 160.73833497646 84.64294542154494 503.1911166661179 160.7373736977825 84.64294489536087 414.6470303954657 160.7381681332172 84.64294542154494 503.1911166661179 160.7373736977825 94.48413027701827 719.5286273951565 239.4757572979555 84.64161059341041 719.5286274531171 239.475590066744 94.48546500627435 503.1911166101844 160.7375405410218 94.48546500627435 503.1911166101844 160.7375405410218 84.64294542154494 503.1911166661179 160.7373736977825 94.48413027701827 719.5286273951565 239.4757572979555 84.64161059341041 719.5286274531171 239.475590066744 94.48413027701827 719.5286273951565 239.4757572979555 84.64161065286862 729.3711471074452 239.4755017721442 84.64161059341041 719.5286274531171 239.475590066744 94.48413033648239 729.3711470494891 239.4756690033557 94.48413033648239 729.3711470494891 239.4756690033557 94.48413027701827 719.5286273951565 239.4757572979555 84.64161065286862 729.3711471074452 239.4755017721442 84.64161059341041 719.5286274531171 239.475590066744 84.64161065286862 729.3711471074452 239.4755017721442 94.48423053997749 729.371094037406 233.5662199672548 84.64171085634507 729.3710940953689 233.5660531132185 94.48413033648239 729.3711470494891 239.4756690033557 94.48413033648239 729.3711470494891 239.4756690033557 84.64161065286862 729.3711471074452 239.4755017721442 94.48423053997749 729.371094037406 233.5662199672548 84.64171085634507 729.3710940953689 233.5660531132185 84.64171085634507 729.3710940953689 233.5660531132185 94.484230480522 719.5285743830815 233.5663082618553 84.64171079689095 719.5285744410377 233.5661414078168 94.48423053997749 729.371094037406 233.5662199672548 94.48423053997749 729.371094037406 233.5662199672548 84.64171085634507 729.3710940953689 233.5660531132185 94.484230480522 719.5285743830815 233.5663082618553 84.64171079689095 719.5285744410377 233.5661414078168 84.64171079689095 719.5285744410377 233.5661414078168 9.838672695085279 719.5285156729751 227.0057529443395 84.64182296865147 719.5285156613892 227.0044616546904 9.838560875687563 719.5285745918775 233.5674326974601 9.838560875687563 719.5285745918775 233.5674326974601 84.64171079689095 719.5285744410377 233.5661414078168 9.838672695085279 719.5285156729751 227.0057529443395 84.64182296865147 719.5285156613892 227.0044616546904 84.64182284980006 701.5004486112985 227.0046233815842 9.838672695085279 719.5285156729751 227.0057529443395 9.838672576223871 701.5004486228851 227.0059146712348 84.64182296865147 719.5285156613892 227.0044616546904 84.64182296865147 719.5285156613892 227.0044616546904 84.64182284980006 701.5004486112985 227.0046233815842 9.838672695085279 719.5285156729751 227.0057529443395 9.838672576223871 701.5004486228851 227.0059146712348 84.64182284980006 701.5004486112985 227.0046233815842 9.838783838648396 701.5003897924581 220.4442349023854 84.64193411222141 701.5003897808703 220.4429436127356 9.838672532042438 701.5004490517789 227.0033552908892 9.838672576223871 701.5004486228851 227.0059146712348 9.838672576223871 701.5004486228851 227.0059146712348 84.64182284980006 701.5004486112985 227.0046233815842 9.838672532042438 701.5004490517789 227.0033552908892 9.838783838648396 701.5003897924581 220.4442349023854 84.64193411222141 701.5003897808703 220.4429436127356 84.64193399336182 683.4723227307836 220.4431053396326 9.838783838648396 701.5003897924581 220.4442349023854 9.838783719791991 683.4723227423705 220.4443966292824 84.64193411222141 701.5003897808703 220.4429436127356 84.64193411222141 701.5003897808703 220.4429436127356 84.64193399336182 683.4723227307836 220.4431053396326 9.838783838648396 701.5003897924581 220.4442349023854 9.838783719791991 683.4723227423705 220.4443966292824 84.64193399336182 683.4723227307836 220.4431053396326 9.838894955825253 683.4722638785963 213.882716850777 84.64204522939554 683.4722638670098 213.8814255611271 9.838783675615559 683.4723231712683 220.4418372489366 9.838783719791991 683.4723227423705 220.4443966292824 9.838783719791991 683.4723227423705 220.4443966292824 84.64193399336182 683.4723227307836 220.4431053396326 9.838783675615559 683.4723231712683 220.4418372489366 9.838894955825253 683.4722638785963 213.882716850777 84.64204522939554 683.4722638670098 213.8814255611271 84.64204511053367 665.4441968169206 213.8815872880221 9.838894955825253 683.4722638785963 213.882716850777 9.838894836968393 665.4441968285083 213.8828785776719 84.64204522939554 683.4722638670098 213.8814255611271 84.64204522939554 683.4722638670098 213.8814255611271 84.64204511053367 665.4441968169206 213.8815872880221 9.838894955825253 683.4722638785963 213.882716850777 9.838894836968393 665.4441968285083 213.8828785776719 84.64204511053367 665.4441968169206 213.8815872880221 9.839006072991197 665.4441379647331 207.3211987965882 84.64215634655693 665.4441379531463 207.3199075069374 9.838894792788324 665.4441972574022 213.8803191973271 9.838894836968393 665.4441968285083 213.8828785776719 9.838894836968393 665.4441968285083 213.8828785776719 84.64204511053367 665.4441968169206 213.8815872880221 9.838894792788324 665.4441972574022 213.8803191973271 9.839006072991197 665.4441379647331 207.3211987965882 84.64215634655693 665.4441379531463 207.3199075069374 84.64215622770689 647.4160709030555 207.3200692338333 9.839006072991197 665.4441379647331 207.3211987965882 9.839005954131153 647.4160709146446 207.3213605234842 84.64215634655693 665.4441379531463 207.3199075069374 84.64215634655693 665.4441379531463 207.3199075069374 84.64215622770689 647.4160709030555 207.3200692338333 9.839006072991197 665.4441379647331 207.3211987965882 9.839005954131153 647.4160709146446 207.3213605234842 84.64215622770689 647.4160709030555 207.3200692338333 9.839117190154411 647.416012050868 200.7596807423993 84.6422674637297 647.4160120392841 200.7583894527495 9.839005909950629 647.4160713435371 207.3188011431379 9.839005954131153 647.4160709146446 207.3213605234842 9.839005954131153 647.4160709146446 207.3213605234842 84.64215622770689 647.4160709030555 207.3200692338333 9.839005909950629 647.4160713435371 207.3188011431379 9.839117190154411 647.416012050868 200.7596807423993 84.6422674637297 647.4160120392841 200.7583894527495 84.6422673448692 629.38794498919 200.758551179644 9.839117190154411 647.416012050868 200.7596807423993 9.839117071303008 629.3879450007787 200.7598424692943 84.6422674637297 647.4160120392841 200.7583894527495 84.6422674637297 647.4160120392841 200.7583894527495 84.6422673448692 629.38794498919 200.758551179644 9.839117190154411 647.416012050868 200.7596807423993 9.839117071303008 629.3879450007787 200.7598424692943 84.6422673448692 629.38794498919 200.758551179644 9.839228307313078 629.3878861370002 194.1981626882111 84.64237858089155 629.3878861254124 194.1968713985612 9.839117027119301 629.3879454296772 200.7572830889484 9.839117071303008 629.3879450007787 200.7598424692943 9.839117071303008 629.3879450007787 200.7598424692943 84.6422673448692 629.38794498919 200.758551179644 9.839117027119301 629.3879454296772 200.7572830889484 9.839228307313078 629.3878861370002 194.1981626882111 84.64237858089155 629.3878861254124 194.1968713985612 84.64237846202968 611.3598190753259 194.1970331254554 9.839228307313078 629.3878861370002 194.1981626882111 9.839228188459401 611.3598190869141 194.1983244151055 84.64237858089155 629.3878861254124 194.1968713985612 84.64237858089155 629.3878861254124 194.1968713985612 84.64237846202968 611.3598190753259 194.1970331254554 9.839228307313078 629.3878861370002 194.1981626882111 9.839228188459401 611.3598190869141 194.1983244151055 84.64237846202968 611.3598190753259 194.1970331254554 9.839339424484933 611.3597602231425 187.6366446340213 84.64248969806431 611.3597602115543 187.6353533443713 9.839228144284334 611.3598195158103 194.1957650347603 9.839228188459401 611.3598190869141 194.1983244151055 9.839228188459401 611.3598190869141 194.1983244151055 84.64237846202968 611.3598190753259 194.1970331254554 9.839228144284334 611.3598195158103 194.1957650347603 9.839339424484933 611.3597602231425 187.6366446340213 84.64248969806431 611.3597602115543 187.6353533443713 84.64248957920063 593.331693161467 187.6355150712678 9.839339424484933 611.3597602231425 187.6366446340213 9.839339305625799 593.3316931730541 187.6368063609176 84.64248969806431 611.3597602115543 187.6353533443713 84.64248969806431 611.3597602115543 187.6353533443713 84.64248957920063 593.331693161467 187.6355150712678 9.839339424484933 611.3597602231425 187.6366446340213 9.839339305625799 593.3316931730541 187.6368063609176 84.64248957920063 593.331693161467 187.6355150712678 9.839450541645874 593.3316343092733 181.075126579833 84.64260081521616 593.3316342976855 181.073835290183 9.839339261442547 593.3316936019432 187.6342469805713 9.839339305625799 593.3316931730541 187.6368063609176 9.839339305625799 593.3316931730541 187.6368063609176 84.64248957920063 593.331693161467 187.6355150712678 9.839339261442547 593.3316936019432 187.6342469805713 9.839450541645874 593.3316343092733 181.075126579833 84.64260081521616 593.3316342976855 181.073835290183 84.64260069637567 575.3035672476013 181.0739970170779 9.839450541645874 593.3316343092733 181.075126579833 9.839450422793107 575.303567259189 181.0752883067285 84.64260081521616 593.3316342976855 181.073835290183 84.64260081521616 593.3316342976855 181.073835290183 84.64260069637567 575.3035672476013 181.0739970170779 9.839450541645874 593.3316343092733 181.075126579833 9.839450422793107 575.303567259189 181.0752883067285 84.64260069637567 575.3035672476013 181.0739970170779 9.839561658814091 575.3035083954148 174.5136085256439 84.64271193238619 575.3035083838275 174.5123172359938 9.839450378611673 575.3035676880834 181.0727289263818 9.839450422793107 575.303567259189 181.0752883067285 9.839450422793107 575.303567259189 181.0752883067285 84.64260069637567 575.3035672476013 181.0739970170779 9.839450378611673 575.3035676880834 181.0727289263818 9.839561658814091 575.3035083954148 174.5136085256439 84.64271193238619 575.3035083838275 174.5123172359938 84.64271181352797 557.2754413337364 174.5124789628895 9.839561658814091 575.3035083954148 174.5136085256439 9.83956153995905 557.2754413453231 174.51377025254 84.64271193238619 575.3035083838275 174.5123172359938 84.64271193238619 575.3035083838275 174.5123172359938 84.64271181352797 557.2754413337364 174.5124789628895 9.839561658814091 575.3035083954148 174.5136085256439 9.83956153995905 557.2754413453231 174.51377025254 84.64271181352797 557.2754413337364 174.5124789628895 9.839672775977306 557.2753824815434 167.9520904714541 84.64282304955623 557.2753824699535 167.9507991818049 9.839561495780345 557.2754417742207 174.5112108721949 9.83956153995905 557.2754413453231 174.51377025254 9.83956153995905 557.2754413453231 174.51377025254 84.64271181352797 557.2754413337364 174.5124789628895 9.839561495780345 557.2754417742207 174.5112108721949 9.839672775977306 557.2753824815434 167.9520904714541 84.64282304955623 557.2753824699535 167.9507991818049 84.64282293069027 539.2473154198689 167.9509609087015 9.839672775977306 557.2753824815434 167.9520904714541 9.839672657119536 539.2473154314602 167.9522521983514 84.64282304955623 557.2753824699535 167.9507991818049 84.64282304955623 557.2753824699535 167.9507991818049 84.64282293069027 539.2473154198689 167.9509609087015 9.839672775977306 557.2753824815434 167.9520904714541 9.839672657119536 539.2473154314602 167.9522521983514 84.6429340036766 521.2191899349022 161.3868834741656 76.76902947083681 521.2191306434461 154.8278987485001 84.64304528388902 521.2191306422259 154.8277628232739 9.839895010315104 521.2191306538099 154.8290541129247 9.839783730105864 521.21918994649 161.3881747638153 9.839783730105864 521.21918994649 161.3881747638153 84.6429340036766 521.2191899349022 161.3868834741656 9.839895010315104 521.2191306538099 154.8290541129247 76.76902947083681 521.2191306434461 154.8278987485001 84.64304528388902 521.2191306422259 154.8277628232739 84.64304506879307 414.6469769624 154.8287194273879 9.839895010315104 521.2191306538099 154.8290541129247 9.839892928604968 414.6469769739911 154.8300107170691 76.76902947083681 521.2191306434461 154.8278987485001 84.64304528388902 521.2191306422259 154.8277628232739 84.64304528388902 521.2191306422259 154.8277628232739 84.64304506879307 414.6469769624 154.8287194273879 76.76902947083681 521.2191306434461 154.8278987485001 9.839895010315104 521.2191306538099 154.8290541129247 9.839892928604968 414.6469769739911 154.8300107170691 84.64304506879307 414.6469769624 154.8287194273879 17.71401082502507 414.6469247008893 148.9243624002142 84.64314333246512 414.6469240182741 148.9232070358309 9.83999305889256 414.6469240298618 148.9244983254806 9.839892884418987 414.6469774441987 154.8274507550724 9.839892928604968 414.6469769739911 154.8300107170691 9.839892928604968 414.6469769739911 154.8300107170691 84.64304506879307 414.6469769624 154.8287194273879 9.839892884418987 414.6469774441987 154.8274507550724 9.83999305889256 414.6469240298618 148.9244983254806 17.71401082502507 414.6469247008893 148.9243624002142 84.64314333246512 414.6469240182741 148.9232070358309 84.64314321361326 396.6188569681842 148.9233687627268 9.83999305889256 414.6469240298618 148.9244983254806 9.839992940033881 396.6188569797715 148.9246600523759 17.71401082502507 414.6469247008893 148.9243624002142 84.64314333246512 414.6469240182741 148.9232070358309 84.64314333246512 414.6469240182741 148.9232070358309 84.64314321361326 396.6188569681842 148.9233687627268 17.71401082502507 414.6469247008893 148.9243624002142 9.83999305889256 414.6469240298618 148.9244983254806 9.839992940033881 396.6188569797715 148.9246600523759 84.64314321361326 396.6188569681842 148.9233687627268 9.840104202456587 396.618798149342 142.3629802835284 84.64325447603596 396.6187981377555 142.3616889938784 9.839992895853811 396.6188574086687 148.922100672031 9.839992940033881 396.6188569797715 148.9246600523759 9.839992940033881 396.6188569797715 148.9246600523759 84.64314321361326 396.6188569681842 148.9233687627268 9.839992895853811 396.6188574086687 148.922100672031 9.840104202456587 396.618798149342 142.3629802835284 84.64325447603596 396.6187981377555 142.3616889938784 84.64325435717274 378.5907310876726 142.361850720774 9.840104202456587 396.618798149342 142.3629802835284 9.840104083598362 378.5907310992597 142.363142010424 84.64325447603596 396.6187981377555 142.3616889938784 84.64325447603596 396.6187981377555 142.3616889938784 84.64325435717274 378.5907310876726 142.361850720774 9.840104202456587 396.618798149342 142.3629802835284 9.840104083598362 378.5907310992597 142.363142010424 84.64325435717274 378.5907310876726 142.361850720774 9.840215319638446 378.5906722354819 135.8014622319193 84.64336559320645 378.5906722238935 135.8001709422693 9.840104039416929 378.5907315281508 142.360582630077 9.840104083598362 378.5907310992597 142.363142010424 9.840104083598362 378.5907310992597 142.363142010424 84.64325435717274 378.5907310876726 142.361850720774 9.840104039416929 378.5907315281508 142.360582630077 9.840215319638446 378.5906722354819 135.8014622319193 84.64336559320645 378.5906722238935 135.8001709422693 84.6433654743505 360.5626051738027 135.8003326691648 9.840215319638446 378.5906722354819 135.8014622319193 9.840215200783405 360.5626051853938 135.8016239588147 84.64336559320645 378.5906722238935 135.8001709422693 84.64336559320645 378.5906722238935 135.8001709422693 84.6433654743505 360.5626051738027 135.8003326691648 9.840215319638446 378.5906722354819 135.8014622319193 9.840215200783405 360.5626051853938 135.8016239588147 84.6433654743505 360.5626051738027 135.8003326691648 9.840326436807573 360.5625463216165 129.2399441777298 84.64347671037012 360.5625463100296 129.2386528880797 9.840215156604245 360.5626056142902 135.7990645784692 9.840215200783405 360.5626051853938 135.8016239588147 9.840215200783405 360.5626051853938 135.8016239588147 84.6433654743505 360.5626051738027 135.8003326691648 9.840215156604245 360.5626056142902 135.7990645784692 9.840326436807573 360.5625463216165 129.2399441777298 84.64347671037012 360.5625463100296 129.2386528880797 84.64347659151417 342.5344792599451 129.2388146149763 9.840326436807573 360.5625463216165 129.2399441777298 9.840326317943436 342.5344792715356 129.2401059046261 84.64347671037012 360.5625463100296 129.2386528880797 84.64347671037012 360.5625463100296 129.2386528880797 84.64347659151417 342.5344792599451 129.2388146149763 9.840326436807573 360.5625463216165 129.2399441777298 9.840326317943436 342.5344792715356 129.2401059046261 84.64347659151417 342.5344792599451 129.2388146149763 9.840437553965785 342.5344204077607 122.6784261235403 84.6435878275397 342.5344203961728 122.6771348338905 9.840326273765186 342.534479700425 129.2375465242787 9.840326317943436 342.5344792715356 129.2401059046261 9.840326317943436 342.5344792715356 129.2401059046261 84.64347659151417 342.5344792599451 129.2388146149763 9.840326273765186 342.534479700425 129.2375465242787 9.840437553965785 342.5344204077607 122.6784261235403 84.6435878275397 342.5344203961728 122.6771348338905 84.64358770868057 324.5063533460772 122.6772965607864 9.840437553965785 342.5344204077607 122.6784261235403 9.840437435112108 324.5063533576665 122.6785878504362 84.6435878275397 342.5344203961728 122.6771348338905 84.6435878275397 342.5344203961728 122.6771348338905 84.64358770868057 324.5063533460772 122.6772965607864 9.840437553965785 342.5344204077607 122.6784261235403 9.840437435112108 324.5063533576665 122.6785878504362 84.64358770868057 324.5063533460772 122.6772965607864 9.840548671125816 324.5062944938873 116.1169080693515 84.64369894470565 324.5062944823027 116.115616779702 9.840437390934312 324.5063537865623 122.6760284700902 9.840437435112108 324.5063533576665 122.6785878504362 9.840437435112108 324.5063533576665 122.6785878504362 84.64358770868057 324.5063533460772 122.6772965607864 9.840437390934312 324.5063537865623 122.6760284700902 9.840548671125816 324.5062944938873 116.1169080693515 84.64369894470565 324.5062944823027 116.115616779702 84.64369882584379 306.4782274322114 116.1157785065982 9.840548671125816 324.5062944938873 116.1169080693515 9.840548552272139 306.4782274437993 116.1170697962476 84.64369894470565 324.5062944823027 116.115616779702 84.64369894470565 324.5062944823027 116.115616779702 84.64369882584379 306.4782274322114 116.1157785065982 9.840548671125816 324.5062944938873 116.1169080693515 9.840548552272139 306.4782274437993 116.1170697962476 84.64369882584379 306.4782274322114 116.1157785065982 9.840659788297216 306.4781685800281 109.5553900151633 84.64381006187614 306.4781685684404 109.5540987255128 9.840548508089796 306.4782278726945 116.1145104159015 9.840548552272139 306.4782274437993 116.1170697962476 9.840548552272139 306.4782274437993 116.1170697962476 84.64369882584379 306.4782274322114 116.1157785065982 9.840548508089796 306.4782278726945 116.1145104159015 9.840659788297216 306.4781685800281 109.5553900151633 84.64381006187614 306.4781685684404 109.5540987255128 84.64380994301564 288.4501015183531 109.5542604524085 9.840659788297216 306.4781685800281 109.5553900151633 9.84065966943399 288.4501015299403 109.5555517420589 84.64381006187614 306.4781685684404 109.5540987255128 84.64381006187614 306.4781685684404 109.5540987255128 84.64380994301564 288.4501015183531 109.5542604524085 9.840659788297216 306.4781685800281 109.5553900151633 9.84065966943399 288.4501015299403 109.5555517420589 84.64380994301564 288.4501015183531 109.5542604524085 9.840770905461341 288.4500426661609 102.9938719609743 84.64392117903435 288.4500426545721 102.992580671324 9.840659625258923 288.4501019588344 109.5529923617128 9.84065966943399 288.4501015299403 109.5555517420589 9.84065966943399 288.4501015299403 109.5555517420589 84.64380994301564 288.4501015183531 109.5542604524085 9.840659625258923 288.4501019588344 109.5529923617128 9.840770905461341 288.4500426661609 102.9938719609743 84.64392117903435 288.4500426545721 102.992580671324 84.64392106018431 270.4219756044846 102.99274239822 9.840770905461341 288.4500426661609 102.9938719609743 9.84077078660448 270.4219756160721 102.9940336878695 84.64392117903435 288.4500426545721 102.992580671324 84.64392117903435 288.4500426545721 102.992580671324 84.64392106018431 270.4219756044846 102.99274239822 9.840770905461341 288.4500426661609 102.9938719609743 9.84077078660448 270.4219756160721 102.9940336878695 84.64392106018431 270.4219756044846 102.99274239822 9.840882022628193 270.4219167522925 96.43235390678471 84.64403229619984 270.4219167407045 96.4310626171348 9.840770742430323 270.4219760449716 102.9914743075235 9.84077078660448 270.4219756160721 102.9940336878695 9.84077078660448 270.4219756160721 102.9940336878695 84.64392106018431 270.4219756044846 102.99274239822 9.840770742430323 270.4219760449716 102.9914743075235 9.840882022628193 270.4219167522925 96.43235390678471 84.64403229619984 270.4219167407045 96.4310626171348 84.64403217734525 252.3938496906281 96.43122434403058 9.840882022628193 270.4219167522925 96.43235390678471 9.84088190376815 252.3938497022144 96.4325156336804 84.64403229619984 270.4219167407045 96.4310626171348 84.64403229619984 270.4219167407045 96.4310626171348 84.64403217734525 252.3938496906281 96.43122434403058 9.840882022628193 270.4219167522925 96.43235390678471 9.84088190376815 252.3938497022144 96.4325156336804 84.64403217734525 252.3938496906281 96.43122434403058 9.84099313979732 252.3937908384336 89.87083585259605 84.64414341336897 252.3937908268442 89.86954456294612 9.840881859592173 252.3938501311091 96.42995625333485 9.84088190376815 252.3938497022144 96.4325156336804 9.84088190376815 252.3938497022144 96.4325156336804 84.64403217734525 252.3938496906281 96.43122434403058 9.840881859592173 252.3938501311091 96.42995625333485 9.84099313979732 252.3937908384336 89.87083585259605 84.64414341336897 252.3937908268442 89.86954456294612 84.64414329450847 234.3657237767667 89.86970628984165 9.84099313979732 252.3937908384336 89.87083585259605 9.840993020936367 234.3657237883548 89.87099757949105 84.64414341336897 252.3937908268442 89.86954456294612 84.64414341336897 252.3937908268442 89.86954456294612 84.64414329450847 234.3657237767667 89.86970628984165 9.84099313979732 252.3937908384336 89.87083585259605 9.840993020936367 234.3657237883548 89.87099757949105 84.64414329450847 234.3657237767667 89.86970628984165 9.841104256961444 234.3656649245679 83.30931779840611 84.64425453053491 234.3656649129796 83.30802650875673 9.840992976758571 234.3657242172478 89.86843819914564 9.840993020936367 234.3657237883548 89.87099757949105 9.840993020936367 234.3657237883548 89.87099757949105 84.64414329450847 234.3657237767667 89.86970628984165 9.840992976758571 234.3657242172478 89.86843819914564 9.841104256961444 234.3656649245679 83.30931779840611 84.64425453053491 234.3656649129796 83.30802650875673 84.64425441167805 216.3375978629006 83.30818823565281 9.841104256961444 234.3656649245679 83.30931779840611 9.841104138102764 216.3375978744903 83.30947952530308 84.64425453053491 234.3656649129796 83.30802650875673 84.64425453053491 234.3656649129796 83.30802650875673 84.64425441167805 216.3375978629006 83.30818823565281 9.841104256961444 234.3656649245679 83.30931779840611 9.841104138102764 216.3375978744903 83.30947952530308 84.64425441167805 216.3375978629006 83.30818823565281 9.841215374156036 216.3375390107129 76.74779949406621 84.64436564772268 216.337538999123 76.74650820441651 9.841104093924059 216.3375983033771 83.30692014495641 9.841104138102764 216.3375978744903 83.30947952530308 9.841104138102764 216.3375978744903 83.30947952530308 84.64425441167805 216.3375978629006 83.30818823565281 9.841104093924059 216.3375983033771 83.30692014495641 9.841215374156036 216.3375390107129 76.74779949406621 84.64436564772268 216.337538999123 76.74650820441651 9.841215487514091 198.3094681452882 76.74796123604615 84.64436564772268 216.337538999123 76.74650820441651 9.841215374156036 216.3375390107129 76.74779949406621 84.64436576107391 198.3094681336994 76.74666994639578 84.64436576107391 198.3094681336994 76.74666994639578 9.841215487514091 198.3094681452882 76.74796123604615 84.64436564772268 216.337538999123 76.74650820441651 9.841215374156036 216.3375390107129 76.74779949406621 84.64436576107391 198.3094681336994 76.74666994639578 9.841337847180512 198.3094033852806 69.53011068888733 84.64448812074625 198.3094033736934 69.52881939923753 9.841215443334022 198.3094680578023 76.7454018557041 9.841215487514091 198.3094681452882 76.74796123604615 9.841215487514091 198.3094681452882 76.74796123604615 84.64436576107391 198.3094681336994 76.74666994639578 9.841215443334022 198.3094680578023 76.7454018557041 9.841337847180512 198.3094033852806 69.53011068888733 84.64448812074625 198.3094033736934 69.52881939923753 84.64448800188757 180.2813325082777 69.52898115073229 9.841337847180512 198.3094033852806 69.53011068888733 9.841337728334111 180.2813325198647 69.5302724403826 84.64448812074625 198.3094033736934 69.52881939923753 84.64448812074625 198.3094033736934 69.52881939923753 84.64448800188757 180.2813325082777 69.52898115073229 9.841337847180512 198.3094033852806 69.53011068888733 9.841337728334111 180.2813325198647 69.5302724403826 84.64448800188757 180.2813325082777 69.52898115073229 9.841437840742401 180.2812795344114 63.62476055887885 84.64458811431132 180.2812795228238 63.62346926922889 9.841337684141763 180.2813324323706 69.52771306004098 9.841337728334111 180.2813325198647 69.5302724403826 9.841337728334111 180.2813325198647 69.5302724403826 84.64448800188757 180.2813325082777 69.52898115073229 9.841337684141763 180.2813324323706 69.52771306004098 9.841437840742401 180.2812795344114 63.62476055887885 84.64458811431132 180.2812795228238 63.62346926922889 84.644587995454 162.253208657412 63.62363102072405 9.841437840742401 180.2812795344114 63.62476055887885 9.841437721890998 162.2532086689994 63.62492231037396 84.64458811431132 180.2812795228238 63.62346926922889 84.64458811431132 180.2812795228238 63.62346926922889 84.644587995454 162.253208657412 63.62363102072405 9.841437840742401 180.2812795344114 63.62476055887885 9.841437721890998 162.2532086689994 63.62492231037396 84.644587995454 162.253208657412 63.62363102072405 9.841548957936539 162.2531497962694 57.06324111658389 84.64469923150045 162.2531497846848 57.061949826934 9.841437677713657 162.2532085815065 63.62236293003289 9.841437721890998 162.2532086689994 63.62492231037396 9.841437721890998 162.2532086689994 63.62492231037396 84.644587995454 162.253208657412 63.62363102072405 9.841437677713657 162.2532085815065 63.62236293003289 9.841548957936539 162.2531497962694 57.06324111658389 84.64469923150045 162.2531497846848 57.061949826934 84.6446991126395 144.2250789192668 57.06211157842896 9.841548957936539 162.2531497962694 57.06324111658389 9.841548839085135 144.2250789308529 57.06340286807888 84.64469923150045 162.2531497846848 57.061949826934 84.64469923150045 162.2531497846848 57.061949826934 84.6446991126395 144.2250789192668 57.06211157842896 9.841548957936539 162.2531497962694 57.06324111658389 9.841548839085135 144.2250789308529 57.06340286807888 84.6446991126395 144.2250789192668 57.06211157842896 9.841660075125674 144.2250200581243 50.50172167428854 84.64481034869777 144.225020046536 50.50043038463863 9.841548794906885 144.2250788433599 57.06084348773737 9.841548839085135 144.2250789308529 57.06340286807888 9.841548839085135 144.2250789308529 57.06340286807888 84.6446991126395 144.2250789192668 57.06211157842896 9.841548794906885 144.2250788433599 57.06084348773737 9.841660075125674 144.2250200581243 50.50172167428854 84.64481034869777 144.225020046536 50.50043038463863 84.64481022982727 126.1969491811146 50.50059213613384 9.841660075125674 144.2250200581243 50.50172167428854 9.841659956278363 126.1969491927036 50.50188342578373 84.64481034869777 144.225020046536 50.50043038463863 84.64481034869777 144.225020046536 50.50043038463863 84.64481022982727 126.1969491811146 50.50059213613384 9.841660075125674 144.2250200581243 50.50172167428854 9.841659956278363 126.1969491927036 50.50188342578373 84.64481022982727 126.1969491811146 50.50059213613384 9.841769487362853 126.1968912223324 44.04077566324332 84.64491976091313 126.1968912107488 44.03948437359354 9.84165991208738 126.1969491052168 50.49932404544207 9.841659956278363 126.1969491927036 50.50188342578373 9.841659956278363 126.1969491927036 50.50188342578373 84.64481022982727 126.1969491811146 50.50059213613384 9.84165991208738 126.1969491052168 50.49932404544207 9.841769487362853 126.1968912223324 44.04077566324332 84.64491976091313 126.1968912107488 44.03948437359354 84.64491964206172 108.1688203453286 44.03964612508855 9.841769487362853 126.1968912223324 44.04077566324332 9.841769368499172 108.1688203569174 44.04093741473849 84.64491976091313 126.1968912107488 44.03948437359354 84.64491976091313 126.1968912107488 44.03948437359354 84.64491964206172 108.1688203453286 44.03964612508855 9.841769487362853 126.1968912223324 44.04077566324332 9.841769368499172 108.1688203569174 44.04093741473849 84.64491964206172 108.1688203453286 44.03964612508855 9.841882309507582 108.1687605818317 37.3786827896978 84.64503258306422 108.1687605702449 37.37739150004781 9.841769324321376 108.1688202694331 44.03837803439738 9.841769368499172 108.1688203569174 44.04093741473849 9.841769368499172 108.1688203569174 44.04093741473849 84.64491964206172 108.1688203453286 44.03964612508855 9.841769324321376 108.1688202694331 44.03837803439738 9.841882309507582 108.1687605818317 37.3786827896978 84.64503258306422 108.1687605702449 37.37739150004781 84.64503246421191 90.14068970482016 37.37755325154306 9.841882309507582 108.1687605818317 37.3786827896978 9.84188219064481 90.14068971640941 37.37884454119295 84.64503258306422 108.1687605702449 37.37739150004781 84.64503258306422 108.1687605702449 37.37739150004781 84.64503246421191 90.14068970482016 37.37755325154306 9.841882309507582 108.1687605818317 37.3786827896978 9.84188219064481 90.14068971640941 37.37884454119295 84.64503246421191 90.14068970482016 37.37755325154306 9.841993426690351 90.14063084367943 30.81716334740239 84.64514370025381 90.14063083209361 30.81587205775245 9.84188214646656 90.14068962891739 37.37628516085163 9.84188219064481 90.14068971640941 37.37884454119295 9.84188219064481 90.14068971640941 37.37884454119295 84.64503246421191 90.14068970482016 37.37755325154306 9.84188214646656 90.14068962891739 37.37628516085163 9.841993426690351 90.14063084367943 30.81716334740239 84.64514370025381 90.14063083209361 30.81587205775245 84.64514358141014 72.11255996667181 30.8160338092475 9.841993426690351 90.14063084367943 30.81716334740239 9.841993307838948 72.11255997825832 30.81732509889744 84.64514370025381 90.14063083209361 30.81587205775245 84.64514370025381 90.14063083209361 30.81587205775245 84.64514358141014 72.11255996667181 30.8160338092475 9.841993426690351 90.14063084367943 30.81716334740239 9.841993307838948 72.11255997825832 30.81732509889744 84.64514358141014 72.11255996667181 30.8160338092475 9.842104543884034 72.11250110552813 24.25564390510714 84.64525481744477 72.11250109393842 24.25435261545723 9.841993263659333 72.11255989077517 30.81476571855617 9.841993307838948 72.11255997825832 30.81732509889744 9.841993307838948 72.11255997825832 30.81732509889744 84.64514358141014 72.11255996667181 30.8160338092475 9.841993263659333 72.11255989077517 30.81476571855617 9.842104543884034 72.11250110552813 24.25564390510714 84.64525481744477 72.11250109393842 24.25435261545723 84.64525469858199 54.0844302285296 24.25451436695217 9.842104543884034 72.11250110552813 24.25564390510714 9.842104425029447 54.08443024011383 24.25580565660217 84.64525481744477 72.11250109393842 24.25435261545723 84.64525481744477 72.11250109393842 24.25435261545723 84.64525469858199 54.0844302285296 24.25451436695217 9.842104543884034 72.11250110552813 24.25564390510714 9.842104425029447 54.08443024011383 24.25580565660217 84.64525469858199 54.0844302285296 24.25451436695217 9.842215661069531 54.08437136738569 17.69412446281174 84.64536593464163 54.08437135579803 17.69283317316184 9.842104380853925 54.08443015261976 24.2532462762608 9.842104425029447 54.08443024011383 24.25580565660217 9.842104425029447 54.08443024011383 24.25580565660217 84.64525469858199 54.0844302285296 24.25451436695217 9.842104380853925 54.08443015261976 24.2532462762608 9.842215661069531 54.08437136738569 17.69412446281174 84.64536593464163 54.08437135579803 17.69283317316184 84.64536581577386 36.05630049038306 17.69299492465697 9.842215661069531 54.08437136738569 17.69412446281174 9.842215542217673 36.05630050196911 17.69428621430697 84.64536593464163 54.08437135579803 17.69283317316184 84.64536593464163 54.08437135579803 17.69283317316184 84.64536581577386 36.05630049038306 17.69299492465697 9.842215661069531 54.08437136738569 17.69412446281174 9.842215542217673 36.05630050196911 17.69428621430697 84.64536581577386 36.05630049038306 17.69299492465697 9.84232677826185 36.05624162923892 11.13260502051638 84.64547705181212 36.05624161765604 11.13131373086645 9.842215498030782 36.05630041447709 17.6917268339654 9.842215542217673 36.05630050196911 17.69428621430697 9.842215542217673 36.05630050196911 17.69428621430697 84.64536581577386 36.05630049038306 17.69299492465697 9.842215498030782 36.05630041447709 17.6917268339654 9.84232677826185 36.05624162923892 11.13260502051638 84.64547705181212 36.05624161765604 11.13131373086645 84.64547693296254 18.02817075224221 11.13147548236156 9.84232677826185 36.05624162923892 11.13260502051638 9.84232665939544 18.02817076383168 11.1327667720114 84.64547705181212 36.05624161765604 11.13131373086645 84.64547705181212 36.05624161765604 11.13131373086645 84.64547693296254 18.02817075224221 11.13147548236156 9.84232677826185 36.05624162923892 11.13260502051638 9.84232665939544 18.02817076383168 11.1327667720114 84.64547693296254 18.02817075224221 11.13147548236156 9.842437895456442 18.02811189108738 4.571085578221068 84.64558816900808 18.02811187950155 4.56979428857117 9.842326615217644 18.02817067633146 11.13020739167003 9.84232665939544 18.02817076383168 11.1327667720114 9.84232665939544 18.02817076383168 11.1327667720114 84.64547693296254 18.02817075224221 11.13147548236156 9.842326615217644 18.02817067633146 11.13020739167003 9.842437895456442 18.02811189108738 4.571085578221068 84.64558816900808 18.02811187950155 4.56979428857117 84.64558805015622 4.101408589463063e-005 4.569956040066177 9.842437895456442 18.02811189108738 4.571085578221068 9.84243777659276 4.102567400110502e-005 4.571247329716065 84.64558816900808 18.02811187950155 4.56979428857117 84.64558816900808 18.02811187950155 4.56979428857117 84.64558805015622 4.101408589463063e-005 4.569956040066177 9.842437895456442 18.02811189108738 4.571085578221068 9.84243777659276 4.102567400110502e-005 4.571247329716065 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 17.71653492902442 2.857641447917558e-007 -0.001301406779838088 94.48818958965376 2.832173322531162e-007 -0.003232843467925572 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 84.64558805015622 4.101408589463063e-005 4.569956040066177 94.4880229927935 8.808418726147238e-005 9.823403231743306 84.64550116852843 8.812973111815836e-005 9.82323638468654 9.84243777659276 4.102567400110502e-005 4.571247329716065 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 9.842351136039724 8.807656161025079e-005 9.821968231536081 9.842351136039724 8.807656161025079e-005 9.821968231536081 9.84243777659276 4.102567400110502e-005 4.571247329716065 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 84.64558805015622 4.101408589463063e-005 4.569956040066177 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 84.64550116852843 8.812973111815836e-005 9.82323638468654 94.4880229927935 8.808418726147238e-005 9.823403231743306 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 17.71653492902442 2.857641447917558e-007 -0.001301406779838088 94.48818958965376 2.832173322531162e-007 -0.003232843467925572 84.64550116852843 8.812973111815836e-005 9.82323638468654 94.48546448008801 414.6470303395421 160.73833497646 84.64294489536087 414.6470303954657 160.7381681332172 94.4880229927935 8.808418726147238e-005 9.823403231743306 94.4880229927935 8.808418726147238e-005 9.823403231743306 84.64550116852843 8.812973111815836e-005 9.82323638468654 94.48546448008801 414.6470303395421 160.73833497646 84.64294489536087 414.6470303954657 160.7381681332172 9.841104093924059 216.3375983033771 83.30692014495641 9.841104138102764 216.3375978744903 83.30947952530308 9.841215374156036 216.3375390107129 76.74779949406621 9.840992976758571 234.3657242172478 89.86843819914564 9.840993020936367 234.3657237883548 89.87099757949105 9.841104256961444 234.3656649245679 83.30931779840611 9.840881859592173 252.3938501311091 96.42995625333485 9.84088190376815 252.3938497022144 96.4325156336804 9.84099313979732 252.3937908384336 89.87083585259605 9.840770742430323 270.4219760449716 102.9914743075235 9.84077078660448 270.4219756160721 102.9940336878695 9.840882022628193 270.4219167522925 96.43235390678471 9.840659625258923 288.4501019588344 109.5529923617128 9.84065966943399 288.4501015299403 109.5555517420589 9.840770905461341 288.4500426661609 102.9938719609743 9.840548508089796 306.4782278726945 116.1145104159015 9.840548552272139 306.4782274437993 116.1170697962476 9.840659788297216 306.4781685800281 109.5553900151633 9.840437390934312 324.5063537865623 122.6760284700902 9.840437435112108 324.5063533576665 122.6785878504362 9.840548671125816 324.5062944938873 116.1169080693515 9.840326273765186 342.534479700425 129.2375465242787 9.840326317943436 342.5344792715356 129.2401059046261 9.840437553965785 342.5344204077607 122.6784261235403 9.840215156604245 360.5626056142902 135.7990645784692 9.840215200783405 360.5626051853938 135.8016239588147 9.840326436807573 360.5625463216165 129.2399441777298 9.840104039416929 378.5907315281508 142.360582630077 9.840104083598362 378.5907310992597 142.363142010424 9.840215319638446 378.5906722354819 135.8014622319193 9.839992895853811 396.6188574086687 148.922100672031 9.839992940033881 396.6188569797715 148.9246600523759 9.840104202456587 396.618798149342 142.3629802835284 9.842437895456442 18.02811189108738 4.571085578221068 9.842351136039724 8.807656161025079e-005 9.821968231536081 9.84243777659276 4.102567400110502e-005 4.571247329716065 9.842326615217644 18.02817067633146 11.13020739167003 9.84232665939544 18.02817076383168 11.1327667720114 9.839792623332869 414.6470304637383 160.7368999534899 9.842215542217673 36.05630050196911 17.69428621430697 9.842215498030782 36.05630041447709 17.6917268339654 9.84232677826185 36.05624162923892 11.13260502051638 9.842104425029447 54.08443024011383 24.25580565660217 9.842104380853925 54.08443015261976 24.2532462762608 9.842215661069531 54.08437136738569 17.69412446281174 9.841993307838948 72.11255997825832 30.81732509889744 9.841993263659333 72.11255989077517 30.81476571855617 9.842104543884034 72.11250110552813 24.25564390510714 9.84188219064481 90.14068971640941 37.37884454119295 9.84188214646656 90.14068962891739 37.37628516085163 9.841993426690351 90.14063084367943 30.81716334740239 9.841769368499172 108.1688203569174 44.04093741473849 9.841769324321376 108.1688202694331 44.03837803439738 9.841882309507582 108.1687605818317 37.3786827896978 9.841659956278363 126.1969491927036 50.50188342578373 9.84165991208738 126.1969491052168 50.49932404544207 9.841769487362853 126.1968912223324 44.04077566324332 9.841548839085135 144.2250789308529 57.06340286807888 9.841548794906885 144.2250788433599 57.06084348773737 9.841660075125674 144.2250200581243 50.50172167428854 9.841437721890998 162.2532086689994 63.62492231037396 9.841437677713657 162.2532085815065 63.62236293003289 9.841548957936539 162.2531497962694 57.06324111658389 9.841215487514091 198.3094681452882 76.74796123604615 9.841337728334111 180.2813325198647 69.5302724403826 9.841337684141763 180.2813324323706 69.52771306004098 9.841437840742401 180.2812795344114 63.62476055887885 9.841215443334022 198.3094680578023 76.7454018557041 9.841337847180512 198.3094033852806 69.53011068888733 9.83999305889256 414.6469240298618 148.9244983254806 9.839892884418987 414.6469774441987 154.8274507550724 9.839894966135489 521.2191310827094 154.8264947325787 9.839794943983179 503.1911171470628 160.73610554589 9.839892928423524 521.2191306435349 154.827909016755 9.839672612939467 539.2473158603619 167.9496928180037 9.839672657119536 539.2473154314602 167.9522521983514 9.839783848964999 539.2472569965795 161.3880130369195 9.839561614634476 575.3035088243079 174.5110491452988 9.839561658814091 575.3035083954148 174.5136085256439 9.839561495780345 557.2754417742207 174.5112108721949 9.839450497469898 593.3316347381652 181.0725671994868 9.839450541645874 593.3316343092733 181.075126579833 9.839450378611673 575.3035676880834 181.0727289263818 9.83933938030259 611.359760652033 187.634085253675 9.839339424484933 611.3597602231425 187.6366446340213 9.839339261442547 593.3316936019432 187.6342469805713 9.839228263137102 629.3878865658982 194.195603307864 9.839228307313078 629.3878861370002 194.1981626882111 9.839228144284334 611.3598195158103 194.1957650347603 9.839117145974342 647.4160124797637 200.7571213620531 9.839117190154411 647.416012050868 200.7596807423993 9.839117027119301 629.3879454296772 200.7572830889484 9.83900602881522 665.4441383936251 207.3186394162431 9.839006072991197 665.4441379647331 207.3211987965882 9.839005909950629 647.4160713435371 207.3188011431379 9.838894911645639 683.4722643074899 213.8801574704304 9.838894955825253 683.4722638785963 213.882716850777 9.838894792788324 665.4441972574022 213.8803191973271 9.838783794471965 701.5003902213542 220.4416755220412 9.838783838648396 701.5003897924581 220.4442349023854 9.838783675615559 683.4723231712683 220.4418372489366 9.838672650902481 719.5285161018685 227.0031935639941 9.838672695085279 719.5285156729751 227.0057529443395 9.838672532042438 701.5004490517789 227.0033552908892 9.839783730105864 521.21918994649 161.3881747638153 9.838460214744373 719.5286278958681 239.4743221169504 9.839895010315104 521.2191306538099 154.8290541129247 9.839672775977306 557.2753824815434 167.9520904714541 9.838560875687563 719.5285745918775 233.5674326974601 9.838672695085279 719.5285156729751 227.0057529443395 9.838672532042438 701.5004490517789 227.0033552908892 9.838560875687563 719.5285745918775 233.5674326974601 9.838460214744373 719.5286278958681 239.4743221169504 9.838783838648396 701.5003897924581 220.4442349023854 9.838783675615559 683.4723231712683 220.4418372489366 9.838894955825253 683.4722638785963 213.882716850777 9.838894792788324 665.4441972574022 213.8803191973271 9.839006072991197 665.4441379647331 207.3211987965882 9.839005909950629 647.4160713435371 207.3188011431379 9.839117190154411 647.416012050868 200.7596807423993 9.839117027119301 629.3879454296772 200.7572830889484 9.839228307313078 629.3878861370002 194.1981626882111 9.839228144284334 611.3598195158103 194.1957650347603 9.839339424484933 611.3597602231425 187.6366446340213 9.839339261442547 593.3316936019432 187.6342469805713 9.839450541645874 593.3316343092733 181.075126579833 9.839450378611673 575.3035676880834 181.0727289263818 9.839561658814091 575.3035083954148 174.5136085256439 9.839561495780345 557.2754417742207 174.5112108721949 9.839672775977306 557.2753824815434 167.9520904714541 9.839672657119536 539.2473154314602 167.9522521983514 9.839783848964999 539.2472569965795 161.3880130369195 9.839783730105864 521.21918994649 161.3881747638153 9.839892928423524 521.2191306435349 154.827909016755 9.839794943983179 503.1911171470628 160.73610554589 9.839895010315104 521.2191306538099 154.8290541129247 9.838672650902481 719.5285161018685 227.0031935639941 9.838783794471965 701.5003902213542 220.4416755220412 9.838894911645639 683.4722643074899 213.8801574704304 9.83900602881522 665.4441383936251 207.3186394162431 9.839117145974342 647.4160124797637 200.7571213620531 9.839228263137102 629.3878865658982 194.195603307864 9.83933938030259 611.359760652033 187.634085253675 9.839450497469898 593.3316347381652 181.0725671994868 9.839561614634476 575.3035088243079 174.5110491452988 9.839672612939467 539.2473158603619 167.9496928180037 9.839894966135489 521.2191310827094 154.8264947325787 9.839792623332869 414.6470304637383 160.7368999534899 9.839892884418987 414.6469774441987 154.8274507550724 9.83999305889256 414.6469240298618 148.9244983254806 9.839992940033881 396.6188569797715 148.9246600523759 9.840104202456587 396.618798149342 142.3629802835284 9.840104083598362 378.5907310992597 142.363142010424 9.840215319638446 378.5906722354819 135.8014622319193 9.840215200783405 360.5626051853938 135.8016239588147 9.840326436807573 360.5625463216165 129.2399441777298 9.840326317943436 342.5344792715356 129.2401059046261 9.840437553965785 342.5344204077607 122.6784261235403 9.840437435112108 324.5063533576665 122.6785878504362 9.840548671125816 324.5062944938873 116.1169080693515 9.840548552272139 306.4782274437993 116.1170697962476 9.840659788297216 306.4781685800281 109.5553900151633 9.84065966943399 288.4501015299403 109.5555517420589 9.840770905461341 288.4500426661609 102.9938719609743 9.84077078660448 270.4219756160721 102.9940336878695 9.840882022628193 270.4219167522925 96.43235390678471 9.84088190376815 252.3938497022144 96.4325156336804 9.84099313979732 252.3937908384336 89.87083585259605 9.840993020936367 234.3657237883548 89.87099757949105 9.841104256961444 234.3656649245679 83.30931779840611 9.841104138102764 216.3375978744903 83.30947952530308 9.841215374156036 216.3375390107129 76.74779949406621 9.841215487514091 198.3094681452882 76.74796123604615 9.841337847180512 198.3094033852806 69.53011068888733 9.841337728334111 180.2813325198647 69.5302724403826 9.841215443334022 198.3094680578023 76.7454018557041 9.841437840742401 180.2812795344114 63.62476055887885 9.841437721890998 162.2532086689994 63.62492231037396 9.841337684141763 180.2813324323706 69.52771306004098 9.841548957936539 162.2531497962694 57.06324111658389 9.841548839085135 144.2250789308529 57.06340286807888 9.841437677713657 162.2532085815065 63.62236293003289 9.841660075125674 144.2250200581243 50.50172167428854 9.841659956278363 126.1969491927036 50.50188342578373 9.841548794906885 144.2250788433599 57.06084348773737 9.841769487362853 126.1968912223324 44.04077566324332 9.841769368499172 108.1688203569174 44.04093741473849 9.84165991208738 126.1969491052168 50.49932404544207 9.841882309507582 108.1687605818317 37.3786827896978 9.84188219064481 90.14068971640941 37.37884454119295 9.841769324321376 108.1688202694331 44.03837803439738 9.841993426690351 90.14063084367943 30.81716334740239 9.841993307838948 72.11255997825832 30.81732509889744 9.84188214646656 90.14068962891739 37.37628516085163 9.842104543884034 72.11250110552813 24.25564390510714 9.842104425029447 54.08443024011383 24.25580565660217 9.841993263659333 72.11255989077517 30.81476571855617 9.842215661069531 54.08437136738569 17.69412446281174 9.842215542217673 36.05630050196911 17.69428621430697 9.842104380853925 54.08443015261976 24.2532462762608 9.84232677826185 36.05624162923892 11.13260502051638 9.84232665939544 18.02817076383168 11.1327667720114 9.842215498030782 36.05630041447709 17.6917268339654 9.842351136039724 8.807656161025079e-005 9.821968231536081 9.842326615217644 18.02817067633146 11.13020739167003 9.842437895456442 18.02811189108738 4.571085578221068 9.84243777659276 4.102567400110502e-005 4.571247329716065 9.839992895853811 396.6188574086687 148.922100672031 9.840104039416929 378.5907315281508 142.360582630077 9.840215156604245 360.5626056142902 135.7990645784692 9.840326273765186 342.534479700425 129.2375465242787 9.840437390934312 324.5063537865623 122.6760284700902 9.840548508089796 306.4782278726945 116.1145104159015 9.840659625258923 288.4501019588344 109.5529923617128 9.840770742430323 270.4219760449716 102.9914743075235 9.840881859592173 252.3938501311091 96.42995625333485 9.840992976758571 234.3657242172478 89.86843819914564 9.841104093924059 216.3375983033771 83.30692014495641 9.839672612939467 539.2473158603619 167.9496928180037 9.839672775977306 557.2753824815434 167.9520904714541 9.839672657119536 539.2473154314602 167.9522521983514 9.83967273179951 557.2753829104411 167.94953109111 9.83967273179951 557.2753829104411 167.94953109111 9.839672612939467 539.2473158603619 167.9496928180037 9.839672775977306 557.2753824815434 167.9520904714541 9.839672657119536 539.2473154314602 167.9522521983514 9.839672775977306 557.2753824815434 167.9520904714541 9.839672612939467 539.2473158603619 167.9496928180037 9.839672657119536 539.2473154314602 167.9522521983514 9.83967273179951 557.2753829104411 167.94953109111 9.83967273179951 557.2753829104411 167.94953109111 9.839672775977306 557.2753824815434 167.9520904714541 9.839672612939467 539.2473158603619 167.9496928180037 9.839672657119536 539.2473154314602 167.9522521983514 94.4881894592404 181.7592515306867 -0.01145868528037008 94.4880229927935 8.808418726147238e-005 9.823403231743306 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 94.48546448008801 414.6470303395421 160.73833497646 94.48675258624235 414.6463483953374 84.75014648464297 94.48675309322425 503.1904346659889 84.74935263590139 94.48546500627435 503.1911166101844 160.7375405410218 94.48541876972513 719.5279457255224 163.4875693200625 94.48413027701827 719.5286273951565 239.4757572979555 94.484230480522 719.5285743830815 233.5663082618553 94.484230480522 719.5285743830815 233.5663082618553 94.48541876972513 719.5279457255224 163.4875693200625 94.48413027701827 719.5286273951565 239.4757572979555 94.48546500627435 503.1911166101844 160.7375405410218 94.48675309322425 503.1904346659889 84.74935263590139 94.48546448008801 414.6470303395421 160.73833497646 94.48675258624235 414.6463483953374 84.75014648464297 94.4881894592404 181.7592515306867 -0.01145868528037008 94.4880229927935 8.808418726147238e-005 9.823403231743306 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 94.48423053997749 729.371094037406 233.5662199672548 94.48413027701827 719.5286273951565 239.4757572979555 94.484230480522 719.5285743830815 233.5663082618553 94.48413033648239 729.3711470494891 239.4756690033557 94.48413033648239 729.3711470494891 239.4756690033557 94.48423053997749 729.371094037406 233.5662199672548 94.48413027701827 719.5286273951565 239.4757572979555 94.484230480522 719.5285743830815 233.5663082618553 9.838672695085279 719.5285156729751 227.0057529443395 9.838672532042438 701.5004490517789 227.0033552908892 9.838672576223871 701.5004486228851 227.0059146712348 9.838672650902481 719.5285161018685 227.0031935639941 9.838672650902481 719.5285161018685 227.0031935639941 9.838672695085279 719.5285156729751 227.0057529443395 9.838672532042438 701.5004490517789 227.0033552908892 9.838672576223871 701.5004486228851 227.0059146712348 9.838783838648396 701.5003897924581 220.4442349023854 9.838783675615559 683.4723231712683 220.4418372489366 9.838783719791991 683.4723227423705 220.4443966292824 9.838783794471965 701.5003902213542 220.4416755220412 9.838783794471965 701.5003902213542 220.4416755220412 9.838783838648396 701.5003897924581 220.4442349023854 9.838783675615559 683.4723231712683 220.4418372489366 9.838783719791991 683.4723227423705 220.4443966292824 9.838894955825253 683.4722638785963 213.882716850777 9.838894792788324 665.4441972574022 213.8803191973271 9.838894836968393 665.4441968285083 213.8828785776719 9.838894911645639 683.4722643074899 213.8801574704304 9.838894911645639 683.4722643074899 213.8801574704304 9.838894955825253 683.4722638785963 213.882716850777 9.838894792788324 665.4441972574022 213.8803191973271 9.838894836968393 665.4441968285083 213.8828785776719 9.839006072991197 665.4441379647331 207.3211987965882 9.839005909950629 647.4160713435371 207.3188011431379 9.839005954131153 647.4160709146446 207.3213605234842 9.83900602881522 665.4441383936251 207.3186394162431 9.83900602881522 665.4441383936251 207.3186394162431 9.839006072991197 665.4441379647331 207.3211987965882 9.839005909950629 647.4160713435371 207.3188011431379 9.839005954131153 647.4160709146446 207.3213605234842 9.839117190154411 647.416012050868 200.7596807423993 9.839117027119301 629.3879454296772 200.7572830889484 9.839117071303008 629.3879450007787 200.7598424692943 9.839117145974342 647.4160124797637 200.7571213620531 9.839117145974342 647.4160124797637 200.7571213620531 9.839117190154411 647.416012050868 200.7596807423993 9.839117027119301 629.3879454296772 200.7572830889484 9.839117071303008 629.3879450007787 200.7598424692943 9.839228307313078 629.3878861370002 194.1981626882111 9.839228144284334 611.3598195158103 194.1957650347603 9.839228188459401 611.3598190869141 194.1983244151055 9.839228263137102 629.3878865658982 194.195603307864 9.839228263137102 629.3878865658982 194.195603307864 9.839228307313078 629.3878861370002 194.1981626882111 9.839228144284334 611.3598195158103 194.1957650347603 9.839228188459401 611.3598190869141 194.1983244151055 9.839339424484933 611.3597602231425 187.6366446340213 9.839339261442547 593.3316936019432 187.6342469805713 9.839339305625799 593.3316931730541 187.6368063609176 9.83933938030259 611.359760652033 187.634085253675 9.83933938030259 611.359760652033 187.634085253675 9.839339424484933 611.3597602231425 187.6366446340213 9.839339261442547 593.3316936019432 187.6342469805713 9.839339305625799 593.3316931730541 187.6368063609176 9.839450541645874 593.3316343092733 181.075126579833 9.839450378611673 575.3035676880834 181.0727289263818 9.839450422793107 575.303567259189 181.0752883067285 9.839450497469898 593.3316347381652 181.0725671994868 9.839450497469898 593.3316347381652 181.0725671994868 9.839450541645874 593.3316343092733 181.075126579833 9.839450378611673 575.3035676880834 181.0727289263818 9.839450422793107 575.303567259189 181.0752883067285 9.839561658814091 575.3035083954148 174.5136085256439 9.839561495780345 557.2754417742207 174.5112108721949 9.83956153995905 557.2754413453231 174.51377025254 9.839561614634476 575.3035088243079 174.5110491452988 9.839561614634476 575.3035088243079 174.5110491452988 9.839561658814091 575.3035083954148 174.5136085256439 9.839561495780345 557.2754417742207 174.5112108721949 9.83956153995905 557.2754413453231 174.51377025254 9.839895010315104 521.2191306538099 154.8290541129247 9.839892928423524 521.2191306435349 154.827909016755 76.76902947083681 521.2191306434461 154.8278987485001 76.76902947083681 521.2191306434461 154.8278987485001 9.839892928423524 521.2191306435349 154.827909016755 9.839895010315104 521.2191306538099 154.8290541129247 9.839895010315104 521.2191306538099 154.8290541129247 9.839892928423524 521.2191306435349 154.827909016755 9.839892928604968 414.6469769739911 154.8300107170691 9.839892928604968 414.6469769739911 154.8300107170691 9.839892928423524 521.2191306435349 154.827909016755 9.839895010315104 521.2191306538099 154.8290541129247 9.839892884418987 414.6469774441987 154.8274507550724 9.839892928423524 521.2191306435349 154.827909016755 9.839892928604968 414.6469769739911 154.8300107170691 9.839894966135489 521.2191310827094 154.8264947325787 9.839894966135489 521.2191310827094 154.8264947325787 9.839892884418987 414.6469774441987 154.8274507550724 9.839892928423524 521.2191306435349 154.827909016755 9.839892928604968 414.6469769739911 154.8300107170691 9.83999305889256 414.6469240298618 148.9244983254806 9.839992895853811 396.6188574086687 148.922100672031 9.839992940033881 396.6188569797715 148.9246600523759 9.839993014717493 414.6469244587561 148.9219389451337 9.839993014717493 414.6469244587561 148.9219389451337 9.83999305889256 414.6469240298618 148.9244983254806 9.839992895853811 396.6188574086687 148.922100672031 9.839992940033881 396.6188569797715 148.9246600523759 9.839992895853811 396.6188574086687 148.922100672031 9.83999305889256 414.6469240298618 148.9244983254806 9.839992940033881 396.6188569797715 148.9246600523759 9.839993014717493 414.6469244587561 148.9219389451337 9.839993014717493 414.6469244587561 148.9219389451337 9.839992895853811 396.6188574086687 148.922100672031 9.83999305889256 414.6469240298618 148.9244983254806 9.839992940033881 396.6188569797715 148.9246600523759 9.840104202456587 396.618798149342 142.3629802835284 9.840104039416929 378.5907315281508 142.360582630077 9.840104083598362 378.5907310992597 142.363142010424 9.840104158279701 396.6187985782387 142.3604209031817 9.840104158279701 396.6187985782387 142.3604209031817 9.840104202456587 396.618798149342 142.3629802835284 9.840104039416929 378.5907315281508 142.360582630077 9.840104083598362 378.5907310992597 142.363142010424 9.840104039416929 378.5907315281508 142.360582630077 9.840104202456587 396.618798149342 142.3629802835284 9.840104083598362 378.5907310992597 142.363142010424 9.840104158279701 396.6187985782387 142.3604209031817 9.840104158279701 396.6187985782387 142.3604209031817 9.840104039416929 378.5907315281508 142.360582630077 9.840104202456587 396.618798149342 142.3629802835284 9.840104083598362 378.5907310992597 142.363142010424 9.840215319638446 378.5906722354819 135.8014622319193 9.840215156604245 360.5626056142902 135.7990645784692 9.840215200783405 360.5626051853938 135.8016239588147 9.840215275460196 378.5906726643788 135.7989028515738 9.840215275460196 378.5906726643788 135.7989028515738 9.840215319638446 378.5906722354819 135.8014622319193 9.840215156604245 360.5626056142902 135.7990645784692 9.840215200783405 360.5626051853938 135.8016239588147 9.840326436807573 360.5625463216165 129.2399441777298 9.840326273765186 342.534479700425 129.2375465242787 9.840326317943436 342.5344792715356 129.2401059046261 9.840326392630232 360.5625467505132 129.2373847973844 9.840326392630232 360.5625467505132 129.2373847973844 9.840326436807573 360.5625463216165 129.2399441777298 9.840326273765186 342.534479700425 129.2375465242787 9.840326317943436 342.5344792715356 129.2401059046261 9.840326273765186 342.534479700425 129.2375465242787 9.840326436807573 360.5625463216165 129.2399441777298 9.840326317943436 342.5344792715356 129.2401059046261 9.840326392630232 360.5625467505132 129.2373847973844 9.840326392630232 360.5625467505132 129.2373847973844 9.840326273765186 342.534479700425 129.2375465242787 9.840326436807573 360.5625463216165 129.2399441777298 9.840326317943436 342.5344792715356 129.2401059046261 9.840437553965785 342.5344204077607 122.6784261235403 9.840437390934312 324.5063537865623 122.6760284700902 9.840437435112108 324.5063533576665 122.6785878504362 9.840437509790263 342.5344208366516 122.6758667431952 9.840437509790263 342.5344208366516 122.6758667431952 9.840437553965785 342.5344204077607 122.6784261235403 9.840437390934312 324.5063537865623 122.6760284700902 9.840437435112108 324.5063533576665 122.6785878504362 9.840437390934312 324.5063537865623 122.6760284700902 9.840437553965785 342.5344204077607 122.6784261235403 9.840437435112108 324.5063533576665 122.6785878504362 9.840437509790263 342.5344208366516 122.6758667431952 9.840437509790263 342.5344208366516 122.6758667431952 9.840437390934312 324.5063537865623 122.6760284700902 9.840437553965785 342.5344204077607 122.6784261235403 9.840437435112108 324.5063533576665 122.6785878504362 9.840548671125816 324.5062944938873 116.1169080693515 9.840548508089796 306.4782278726945 116.1145104159015 9.840548552272139 306.4782274437993 116.1170697962476 9.840548626947111 324.5062949227805 116.1143486890057 9.840548626947111 324.5062949227805 116.1143486890057 9.840548671125816 324.5062944938873 116.1169080693515 9.840548508089796 306.4782278726945 116.1145104159015 9.840548552272139 306.4782274437993 116.1170697962476 9.840548508089796 306.4782278726945 116.1145104159015 9.840548671125816 324.5062944938873 116.1169080693515 9.840548552272139 306.4782274437993 116.1170697962476 9.840548626947111 324.5062949227805 116.1143486890057 9.840548626947111 324.5062949227805 116.1143486890057 9.840548508089796 306.4782278726945 116.1145104159015 9.840548671125816 324.5062944938873 116.1169080693515 9.840548552272139 306.4782274437993 116.1170697962476 9.840659788297216 306.4781685800281 109.5553900151633 9.840659625258923 288.4501019588344 109.5529923617128 9.84065966943399 288.4501015299403 109.5555517420589 9.840659744117602 306.4781690089181 109.5528306348171 9.840659744117602 306.4781690089181 109.5528306348171 9.840659788297216 306.4781685800281 109.5553900151633 9.840659625258923 288.4501019588344 109.5529923617128 9.84065966943399 288.4501015299403 109.5555517420589 9.840659625258923 288.4501019588344 109.5529923617128 9.840659788297216 306.4781685800281 109.5553900151633 9.84065966943399 288.4501015299403 109.5555517420589 9.840659744117602 306.4781690089181 109.5528306348171 9.840659744117602 306.4781690089181 109.5528306348171 9.840659625258923 288.4501019588344 109.5529923617128 9.840659788297216 306.4781685800281 109.5553900151633 9.84065966943399 288.4501015299403 109.5555517420589 9.840770905461341 288.4500426661609 102.9938719609743 9.840770742430323 270.4219760449716 102.9914743075235 9.84077078660448 270.4219756160721 102.9940336878695 9.840770861281726 288.450043095052 102.991312580628 9.840770861281726 288.450043095052 102.991312580628 9.840770905461341 288.4500426661609 102.9938719609743 9.840770742430323 270.4219760449716 102.9914743075235 9.84077078660448 270.4219756160721 102.9940336878695 9.840770742430323 270.4219760449716 102.9914743075235 9.840770905461341 288.4500426661609 102.9938719609743 9.84077078660448 270.4219756160721 102.9940336878695 9.840770861281726 288.450043095052 102.991312580628 9.840770861281726 288.450043095052 102.991312580628 9.840770742430323 270.4219760449716 102.9914743075235 9.840770905461341 288.4500426661609 102.9938719609743 9.84077078660448 270.4219756160721 102.9940336878695 9.840882022628193 270.4219167522925 96.43235390678471 9.840881859592173 252.3938501311091 96.42995625333485 9.84088190376815 252.3938497022144 96.4325156336804 9.840881978449488 270.4219171811986 96.42979452643932 9.840881978449488 270.4219171811986 96.42979452643932 9.840882022628193 270.4219167522925 96.43235390678471 9.840881859592173 252.3938501311091 96.42995625333485 9.84088190376815 252.3938497022144 96.4325156336804 9.840881859592173 252.3938501311091 96.42995625333485 9.840882022628193 270.4219167522925 96.43235390678471 9.84088190376815 252.3938497022144 96.4325156336804 9.840881978449488 270.4219171811986 96.42979452643932 9.840881978449488 270.4219171811986 96.42979452643932 9.840881859592173 252.3938501311091 96.42995625333485 9.840882022628193 270.4219167522925 96.43235390678471 9.84088190376815 252.3938497022144 96.4325156336804 9.84099313979732 252.3937908384336 89.87083585259605 9.840992976758571 234.3657242172478 89.86843819914564 9.840993020936367 234.3657237883548 89.87099757949105 9.840993095619979 252.3937912673302 89.86827647224976 9.840993095619979 252.3937912673302 89.86827647224976 9.84099313979732 252.3937908384336 89.87083585259605 9.840992976758571 234.3657242172478 89.86843819914564 9.840993020936367 234.3657237883548 89.87099757949105 9.841104256961444 234.3656649245679 83.30931779840611 9.841104093924059 216.3375983033771 83.30692014495641 9.841104138102764 216.3375978744903 83.30947952530308 9.84110421278092 234.3656653534611 83.30675841806107 9.84110421278092 234.3656653534611 83.30675841806107 9.841104256961444 234.3656649245679 83.30931779840611 9.841104093924059 216.3375983033771 83.30692014495641 9.841104138102764 216.3375978744903 83.30947952530308 9.841104093924059 216.3375983033771 83.30692014495641 9.841104256961444 234.3656649245679 83.30931779840611 9.841104138102764 216.3375978744903 83.30947952530308 9.84110421278092 234.3656653534611 83.30675841806107 9.84110421278092 234.3656653534611 83.30675841806107 9.841104093924059 216.3375983033771 83.30692014495641 9.841104256961444 234.3656649245679 83.30931779840611 9.841104138102764 216.3375978744903 83.30947952530308 9.841215487514091 198.3094681452882 76.74796123604615 9.841215329977331 216.3375389232266 76.74524011372475 9.841215443334022 198.3094680578023 76.7454018557041 9.841215374156036 216.3375390107129 76.74779949406621 9.841215374156036 216.3375390107129 76.74779949406621 9.841215487514091 198.3094681452882 76.74796123604615 9.841215329977331 216.3375389232266 76.74524011372475 9.841215443334022 198.3094680578023 76.7454018557041 9.841215329977331 216.3375389232266 76.74524011372475 9.841215487514091 198.3094681452882 76.74796123604615 9.841215443334022 198.3094680578023 76.7454018557041 9.841215374156036 216.3375390107129 76.74779949406621 9.841215374156036 216.3375390107129 76.74779949406621 9.841215329977331 216.3375389232266 76.74524011372475 9.841215487514091 198.3094681452882 76.74796123604615 9.841215443334022 198.3094680578023 76.7454018557041 9.841337728334111 180.2813325198647 69.5302724403826 9.841337803003171 198.3094032977892 69.52755130854607 9.841337684141763 180.2813324323706 69.52771306004098 9.841337847180512 198.3094033852806 69.53011068888733 9.841337847180512 198.3094033852806 69.53011068888733 9.841337728334111 180.2813325198647 69.5302724403826 9.841337803003171 198.3094032977892 69.52755130854607 9.841337684141763 180.2813324323706 69.52771306004098 9.841437721890998 162.2532086689994 63.62492231037396 9.841437796566424 180.2812794469271 63.62220117853744 9.841437677713657 162.2532085815065 63.62236293003289 9.841437840742401 180.2812795344114 63.62476055887885 9.841437840742401 180.2812795344114 63.62476055887885 9.841437721890998 162.2532086689994 63.62492231037396 9.841437796566424 180.2812794469271 63.62220117853744 9.841437677713657 162.2532085815065 63.62236293003289 9.841437796566424 180.2812794469271 63.62220117853744 9.841437721890998 162.2532086689994 63.62492231037396 9.841437677713657 162.2532085815065 63.62236293003289 9.841437840742401 180.2812795344114 63.62476055887885 9.841437840742401 180.2812795344114 63.62476055887885 9.841437796566424 180.2812794469271 63.62220117853744 9.841437721890998 162.2532086689994 63.62492231037396 9.841437677713657 162.2532085815065 63.62236293003289 9.841548839085135 144.2250789308529 57.06340286807888 9.841548913761017 162.2531497087845 57.06068173624247 9.841548794906885 144.2250788433599 57.06084348773737 9.841548957936539 162.2531497962694 57.06324111658389 9.841548957936539 162.2531497962694 57.06324111658389 9.841548839085135 144.2250789308529 57.06340286807888 9.841548913761017 162.2531497087845 57.06068173624247 9.841548794906885 144.2250788433599 57.06084348773737 9.841548913761017 162.2531497087845 57.06068173624247 9.841548839085135 144.2250789308529 57.06340286807888 9.841548794906885 144.2250788433599 57.06084348773737 9.841548957936539 162.2531497962694 57.06324111658389 9.841548957936539 162.2531497962694 57.06324111658389 9.841548913761017 162.2531497087845 57.06068173624247 9.841548839085135 144.2250789308529 57.06340286807888 9.841548794906885 144.2250788433599 57.06084348773737 9.841659956278363 126.1969491927036 50.50188342578373 9.841660030952426 144.2250199706238 50.49916229394729 9.84165991208738 126.1969491052168 50.49932404544207 9.841660075125674 144.2250200581243 50.50172167428854 9.841660075125674 144.2250200581243 50.50172167428854 9.841659956278363 126.1969491927036 50.50188342578373 9.841660030952426 144.2250199706238 50.49916229394729 9.84165991208738 126.1969491052168 50.49932404544207 9.841660030952426 144.2250199706238 50.49916229394729 9.841659956278363 126.1969491927036 50.50188342578373 9.84165991208738 126.1969491052168 50.49932404544207 9.841660075125674 144.2250200581243 50.50172167428854 9.841660075125674 144.2250200581243 50.50172167428854 9.841660030952426 144.2250199706238 50.49916229394729 9.841659956278363 126.1969491927036 50.50188342578373 9.84165991208738 126.1969491052168 50.49932404544207 9.841769368499172 108.1688203569174 44.04093741473849 9.841769443172325 126.196891134847 44.03821628290188 9.841769324321376 108.1688202694331 44.03837803439738 9.841769487362853 126.1968912223324 44.04077566324332 9.841769487362853 126.1968912223324 44.04077566324332 9.841769368499172 108.1688203569174 44.04093741473849 9.841769443172325 126.196891134847 44.03821628290188 9.841769324321376 108.1688202694331 44.03837803439738 9.84188219064481 90.14068971640941 37.37884454119295 9.841882265317054 108.1687604943333 37.37612340935625 9.84188214646656 90.14068962891739 37.37628516085163 9.841882309507582 108.1687605818317 37.3786827896978 9.841882309507582 108.1687605818317 37.3786827896978 9.84188219064481 90.14068971640941 37.37884454119295 9.841882265317054 108.1687604943333 37.37612340935625 9.84188214646656 90.14068962891739 37.37628516085163 9.841882265317054 108.1687604943333 37.37612340935625 9.84188219064481 90.14068971640941 37.37884454119295 9.84188214646656 90.14068962891739 37.37628516085163 9.841882309507582 108.1687605818317 37.3786827896978 9.841882309507582 108.1687605818317 37.3786827896978 9.841882265317054 108.1687604943333 37.37612340935625 9.84188219064481 90.14068971640941 37.37884454119295 9.84188214646656 90.14068962891739 37.37628516085163 9.841993307838948 72.11255997825832 30.81732509889744 9.841993382515739 90.14063075618446 30.81460396706099 9.841993263659333 72.11255989077517 30.81476571855617 9.841993426690351 90.14063084367943 30.81716334740239 9.841993426690351 90.14063084367943 30.81716334740239 9.841993307838948 72.11255997825832 30.81732509889744 9.841993382515739 90.14063075618446 30.81460396706099 9.841993263659333 72.11255989077517 30.81476571855617 9.842104499709421 72.11250101804156 24.25308452476575 9.842104425029447 54.08443024011383 24.25580565660217 9.842104380853925 54.08443015261976 24.2532462762608 9.842104543884034 72.11250110552813 24.25564390510714 9.842104543884034 72.11250110552813 24.25564390510714 9.842104499709421 72.11250101804156 24.25308452476575 9.842104425029447 54.08443024011383 24.25580565660217 9.842104380853925 54.08443015261976 24.2532462762608 9.842215616890826 54.08437127989753 17.69156508247045 9.842215542217673 36.05630050196911 17.69428621430697 9.842215498030782 36.05630041447709 17.6917268339654 9.842215661069531 54.08437136738569 17.69412446281174 9.842215661069531 54.08437136738569 17.69412446281174 9.842215616890826 54.08437127989753 17.69156508247045 9.842215542217673 36.05630050196911 17.69428621430697 9.842215498030782 36.05630041447709 17.6917268339654 9.842326734083144 36.05624154174439 11.13004564017503 9.84232665939544 18.02817076383168 11.1327667720114 9.842326615217644 18.02817067633146 11.13020739167003 9.84232677826185 36.05624162923892 11.13260502051638 9.84232677826185 36.05624162923892 11.13260502051638 9.842326734083144 36.05624154174439 11.13004564017503 9.84232665939544 18.02817076383168 11.1327667720114 9.842326615217644 18.02817067633146 11.13020739167003 9.842437851266823 18.02811180360173 4.568526197879633 9.84243777659276 4.102567400110502e-005 4.571247329716065 9.842437732414055 4.093818606776267e-005 4.568687949374675 9.842437895456442 18.02811189108738 4.571085578221068 9.842437895456442 18.02811189108738 4.571085578221068 9.842437851266823 18.02811180360173 4.568526197879633 9.84243777659276 4.102567400110502e-005 4.571247329716065 9.842437732414055 4.093818606776267e-005 4.568687949374675 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 9.839792623332869 414.6470304637383 160.7368999534899 -0.002725138191635779 414.6470305271358 160.7367329815699 9.842351136039724 8.807656161025079e-005 9.821968231536081 9.842351136039724 8.807656161025079e-005 9.821968231536081 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 9.839792623332869 414.6470304637383 160.7368999534899 -0.002725138191635779 414.6470305271358 160.7367329815699 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 -0.002725138191635779 414.6470305271358 160.7367329815699 -0.001436009172266495 414.6463490039169 84.74854390986434 -0.001435463807865745 503.190435192679 84.74774947442907 -0.00272459282859927 503.191116715882 160.7359385461354 -0.002770193026663037 719.5279462522052 163.4859661585828 -0.00405946886894526 719.5286279507077 239.474155122006 -0.00405946886894526 719.5286279507077 239.474155122006 -0.00272459282859927 503.191116715882 160.7359385461354 -0.002770193026663037 719.5279462522052 163.4859661585828 -0.001435463807865745 503.190435192679 84.74774947442907 -0.002725138191635779 414.6470305271358 160.7367329815699 -0.001436009172266495 414.6463490039169 84.74854390986434 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 17.71649144542653 181.757674322605 -0.01333422303743176 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 -7.424291652569082e-007 181.7951380383543 -0.009829844957527978 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 17.71653492902442 2.857641447917558e-007 -0.001301406779838088 17.71653492902442 2.857641447917558e-007 -0.001301406779838088 17.71649144542653 181.757674322605 -0.01333422303743176 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 -7.424291652569082e-007 181.7951380383543 -0.009829844957527978 -0.00272459282859927 503.191116715882 160.7359385461354 9.838460214744373 719.5286278958681 239.4743221169504 -0.00405946886894526 719.5286279507077 239.474155122006 9.839794943983179 503.1911171470628 160.73610554589 9.839794943983179 503.1911171470628 160.73610554589 -0.00272459282859927 503.191116715882 160.7359385461354 9.838460214744373 719.5286278958681 239.4743221169504 -0.00405946886894526 719.5286279507077 239.474155122006 9.839792623332869 414.6470304637383 160.7368999534899 -0.00272459282859927 503.191116715882 160.7359385461354 -0.002725138191635779 414.6470305271358 160.7367329815699 9.839794943983179 503.1911171470628 160.73610554589 9.839794943983179 503.1911171470628 160.73610554589 9.839792623332869 414.6470304637383 160.7368999534899 -0.00272459282859927 503.191116715882 160.7359385461354 -0.002725138191635779 414.6470305271358 160.7367329815699 94.4881894592404 181.7592515306867 -0.01145868528037008 76.77165453322186 181.7576744770358 -0.01175891049841149 76.77165453321868 181.7592515531196 -0.01175925981286674 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 76.7716542149301 8.197298484446947e-008 -0.0003003246370116286 94.4881894592404 181.7592515306867 -0.01145868528037008 76.77165453322186 181.7576744770358 -0.01175891049841149 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 76.7716542149301 8.197298484446947e-008 -0.0003003246370116286 76.77165453321868 181.7592515531196 -0.01175925981286674 84.64423300151702 414.6463484512637 84.74997964140168 76.77021755446276 414.6278490568375 84.74311298746578 76.77021722008021 414.6463485460473 84.74984606294481 76.77158800208508 192.5392564387268 3.911732128457376 76.77165453321868 181.7592515531196 -0.01175925981286674 94.4881894592404 181.7592515306867 -0.01145868528037008 94.48675258624235 414.6463483953374 84.75014648464297 94.48675258624235 414.6463483953374 84.75014648464297 84.64423300151702 414.6463484512637 84.74997964140168 94.4881894592404 181.7592515306867 -0.01145868528037008 76.77165453321868 181.7592515531196 -0.01175925981286674 76.77158800208508 192.5392564387268 3.911732128457376 76.77021755446276 414.6278490568375 84.74311298746578 76.77021722008021 414.6463485460473 84.74984606294481 76.77021772706985 503.1904348166929 84.74905221420346 84.64423300151702 414.6463484512637 84.74997964140168 76.77021722008021 414.6463485460473 84.74984606294481 94.48675309322425 503.1904346659889 84.74935263590139 94.48675258624235 414.6463483953374 84.75014648464297 94.48675258624235 414.6463483953374 84.75014648464297 94.48675309322425 503.1904346659889 84.74935263590139 84.64423300151702 414.6463484512637 84.74997964140168 76.77021772706985 503.1904348166929 84.74905221420346 76.77021722008021 414.6463485460473 84.74984606294481 94.48541876972513 719.5279457255224 163.4875693200625 76.77021772706985 503.1904348166929 84.74905221420346 76.76888316109807 719.5279458165892 163.4872688154743 94.48675309322425 503.1904346659889 84.74935263590139 94.48675309322425 503.1904346659889 84.74935263590139 94.48541876972513 719.5279457255224 163.4875693200625 76.77021772706985 503.1904348166929 84.74905221420346 76.76888316109807 719.5279458165892 163.4872688154743 -0.001435463807865745 503.190435192679 84.74774947442907 17.71509942134935 414.6463489051671 84.74884450264177 -0.001436009172266495 414.6463490039169 84.74854390986434 17.71509996670238 503.1904350939219 84.74805006720644 17.71509996670238 503.1904350939219 84.74805006720644 -0.001435463807865745 503.190435192679 84.74774947442907 17.71509942134935 414.6463489051671 84.74884450264177 -0.001436009172266495 414.6463490039169 84.74854390986434 17.71509942134935 414.6463489051671 84.74884450264177 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -0.001436009172266495 414.6463490039169 84.74854390986434 17.7164912215294 181.7951356455583 0.0002992296709560249 17.7150995955526 414.6172049445924 84.73823726465852 17.7150995955526 414.6172049445924 84.73823726465852 17.71509942134935 414.6463489051671 84.74884450264177 17.7164912215294 181.7951356455583 0.0002992296709560249 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -0.001436009172266495 414.6463490039169 84.74854390986434 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 17.71376523749586 719.5279461534541 163.4862667513612 -0.001435463807865745 503.190435192679 84.74774947442907 -0.002770193026663037 719.5279462522052 163.4859661585828 17.71509996670238 503.1904350939219 84.74805006720644 17.71509992042502 503.2256012564315 84.76084914634312 17.71509992042502 503.2256012564315 84.76084914634312 17.71376523749586 719.5279461534541 163.4862667513612 17.71509996670238 503.1904350939219 84.74805006720644 -0.001435463807865745 503.190435192679 84.74774947442907 -0.002770193026663037 719.5279462522052 163.4859661585828 76.77165453322186 181.7576744770358 -0.01175891049841149 17.71653496391309 9.112295629165601e-008 0.000719114570889301 17.71653479426732 181.7576744861865 -0.01073947128208747 76.7716542149301 8.197298484446947e-008 -0.0003003246370116286 76.7716542149301 8.197298484446947e-008 -0.0003003246370116286 76.77165453322186 181.7576744770358 -0.01175891049841149 17.71653496391309 9.112295629165601e-008 0.000719114570889301 17.71653479426732 181.7576744861865 -0.01073947128208747 76.76964886003316 414.6256952718247 118.2822169304082 76.77158677716761 192.5176875277981 3.97099529109646 76.77108577844865 181.7595523235645 33.53025855239667 76.7715865719797 192.5509388444224 3.983097154281294 76.77021635862593 414.6068994457873 84.8006745496247 76.77021624447616 414.625398986583 84.80740748336763 76.77021722008021 414.6463485460473 84.74984606294481 76.76964880555397 414.6345231938786 118.2854298649846 76.76964903047383 503.2086646171221 118.2846351598872 76.77021772706985 503.1904348166929 84.74905221420346 76.76888316109807 719.5279458165892 163.4872688154743 76.76832575953677 719.5282410018076 196.3719838475184 76.77165453321868 181.7592515531196 -0.01175925981286674 76.77158800208508 192.5392564387268 3.911732128457376 76.77158797323136 192.5386370872663 3.913433870677238 76.77158797323136 192.5386370872663 3.913433870677238 76.77158677716761 192.5176875277981 3.97099529109646 76.77158800208508 192.5392564387268 3.911732128457376 76.77108577844865 181.7595523235645 33.53025855239667 76.77165453321868 181.7592515531196 -0.01175925981286674 76.76832575953677 719.5282410018076 196.3719838475184 76.76964903047383 503.2086646171221 118.2846351598872 76.76888316109807 719.5279458165892 163.4872688154743 76.77021772706985 503.1904348166929 84.74905221420346 76.77021722008021 414.6463485460473 84.74984606294481 76.76964880555397 414.6345231938786 118.2854298649846 76.76964886003316 414.6256952718247 118.2822169304082 76.77021624447616 414.625398986583 84.80740748336763 76.77021635862593 414.6068994457873 84.8006745496247 76.7715865719797 192.5509388444224 3.983097154281294 76.77021755446276 414.6278490568375 84.74311298746578 76.77158797323136 192.5386370872663 3.913433870677238 76.77158800208508 192.5392564387268 3.911732128457376 76.77158800208508 192.5392564387268 3.911732128457376 76.77158797323136 192.5386370872663 3.913433870677238 76.77021755446276 414.6278490568375 84.74311298746578 17.71509996670238 503.1904350939219 84.74805006720644 17.71453088451153 414.6466497620156 118.2864491953677 17.71509942134935 414.6463489051671 84.74884450264177 17.71453107521438 503.2086646262686 118.2856545990728 17.71509992042502 503.2256012564315 84.76084914634312 17.71453096973482 503.2259021035919 118.2918768471013 17.71376523749586 719.5279461534541 163.4862667513612 17.7132073123812 719.5282413267396 196.3709819542949 17.7132073123812 719.5282413267396 196.3709819542949 17.71376523749586 719.5279461534541 163.4862667513612 17.71453096973482 503.2259021035919 118.2918768471013 17.71509992042502 503.2256012564315 84.76084914634312 17.71453107521438 503.2086646262686 118.2856545990728 17.71509996670238 503.1904350939219 84.74805006720644 17.71453088451153 414.6466497620156 118.2864491953677 17.71509942134935 414.6463489051671 84.74884450264177 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 8.735246410651598e-007 181.7576743346938 -0.01363455624469423 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 17.7164912215294 181.7951356455583 0.0002992296709560249 17.71649144542653 181.757674322605 -0.01333422303743176 17.71649144542653 181.757674322605 -0.01333422303743176 17.7164912215294 181.7951356455583 0.0002992296709560249 8.735246410651598e-007 181.7576743346938 -0.01363455624469423 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 76.7715865719797 192.5509388444224 3.983097154281294 76.77158797323136 192.5386370872663 3.913433870677238 76.77158677716761 192.5176875277981 3.97099529109646 76.77158677716761 192.5176875277981 3.97099529109646 76.77158797323136 192.5386370872663 3.913433870677238 76.7715865719797 192.5509388444224 3.983097154281294 76.77158800208508 192.5392564387268 3.911732128457376 76.77021755446276 414.6278490568375 84.74311298746578 76.77158797323136 192.5386370872663 3.913433870677238 76.77021758355704 414.6284683567116 84.74141138698565 76.77021758355704 414.6284683567116 84.74141138698565 76.77158800208508 192.5392564387268 3.911732128457376 76.77021755446276 414.6278490568375 84.74311298746578 76.77158797323136 192.5386370872663 3.913433870677238 76.77108577844865 181.7595523235645 33.53025855239667 76.77165453321868 181.7592515531196 -0.01175925981286674 76.76973100341775 181.7592515181766 -0.00992808311248089 76.76973100341775 181.7592515181766 -0.00992808311248089 76.77165453321868 181.7592515531196 -0.01175925981286674 76.77108577844865 181.7595523235645 33.53025855239667 76.76964886003316 414.6256952718247 118.2822169304082 17.71596891616355 181.7586316261001 33.52892241162324 17.71453088448834 414.6345232030249 118.2864493041696 76.77108577844865 181.7595523235645 33.53025855239667 76.77108577844865 181.7595523235645 33.53025855239667 76.76964886003316 414.6256952718247 118.2822169304082 17.71596891616355 181.7586316261001 33.52892241162324 17.71453088448834 414.6345232030249 118.2864493041696 76.76964886003316 414.6256952718247 118.2822169304082 17.71453088448834 414.6345232030249 118.2864493041696 76.76964880555397 414.6345231938786 118.2854298649846 76.76964880555397 414.6345231938786 118.2854298649846 17.71453088448834 414.6345232030249 118.2864493041696 76.76964886003316 414.6256952718247 118.2822169304082 17.71453088451153 414.6466497620156 118.2864491953677 76.76964880555397 414.6345231938786 118.2854298649846 17.71453088448834 414.6345232030249 118.2864493041696 17.71453107521438 503.2086646262686 118.2856545990728 76.76964903047383 503.2086646171221 118.2846351598872 76.76964903047383 503.2086646171221 118.2846351598872 17.71453107521438 503.2086646262686 118.2856545990728 76.76964880555397 414.6345231938786 118.2854298649846 17.71453088451153 414.6466497620156 118.2864491953677 17.71453088448834 414.6345232030249 118.2864493041696 76.76832575953677 719.5282410018076 196.3719838475184 17.71453096973482 503.2259021035919 118.2918768471013 17.7132073123812 719.5282413267396 196.3709819542949 76.76964903047383 503.2086646171221 118.2846351598872 76.76964903047383 503.2086646171221 118.2846351598872 76.76832575953677 719.5282410018076 196.3719838475184 17.71453096973482 503.2259021035919 118.2918768471013 17.7132073123812 719.5282413267396 196.3709819542949 17.71453088451153 414.6466497620156 118.2864491953677 17.71463668473461 414.6367206921264 112.0452533164658 17.71509942134935 414.6463489051671 84.74884450264177 17.71509942134935 414.6463489051671 84.74884450264177 17.71463668473461 414.6367206921264 112.0452533164658 17.71453088451153 414.6466497620156 118.2864491953677 17.71653479426732 181.7576744861865 -0.01073947128208747 76.76973097181963 181.7592512503618 -0.01175922660467577 17.71649144542653 181.757674322605 -0.01333422303743176 76.76973100341775 181.7592515181766 -0.00992808311248089 17.71742271838048 181.7576744703945 -0.005706314450553751 76.77108577844865 181.7595523235645 33.53025855239667 17.71648728707669 181.7576765225566 0.2319023277075344 17.71596891616355 181.7586316261001 33.52892241162324 17.71596891616355 181.7586316261001 33.52892241162324 17.71648728707669 181.7576765225566 0.2319023277075344 76.77108577844865 181.7595523235645 33.53025855239667 17.71742271838048 181.7576744703945 -0.005706314450553751 76.76973100341775 181.7592515181766 -0.00992808311248089 17.71653479426732 181.7576744861865 -0.01073947128208747 76.76973097181963 181.7592512503618 -0.01175922660467577 17.71649144542653 181.757674322605 -0.01333422303743176 17.71596891616355 181.7586316261001 33.52892241162324 17.71414609887552 414.6468532549262 140.9705421628555 17.71553811324156 181.7581786775084 56.20893686235574 17.71453088448834 414.6345232030249 118.2864493041696 17.71453088448834 414.6345232030249 118.2864493041696 17.71596891616355 181.7586316261001 33.52892241162324 17.71414609887552 414.6468532549262 140.9705421628555 17.71553811324156 181.7581786775084 56.20893686235574 17.71592289618775 181.7600499133143 33.52502558997264 17.71596891616355 181.7586316261001 33.52892241162324 17.71648728707669 181.7576765225566 0.2319023277075344 17.71453088448834 414.6345232030249 118.2864493041696 17.71453114376345 414.6036628736269 118.2708036843821 17.71453114376345 414.6036628736269 118.2708036843821 17.71592289618775 181.7600499133143 33.52502558997264 17.71453088448834 414.6345232030249 118.2864493041696 17.71596891616355 181.7586316261001 33.52892241162324 17.71648728707669 181.7576765225566 0.2319023277075344 17.71414609887552 414.6468532549262 140.9705421628555 17.71453088448834 414.6345232030249 118.2864493041696 17.71453088451153 414.6466497620156 118.2864491953677 17.71453088451153 414.6466497620156 118.2864491953677 17.71453088448834 414.6345232030249 118.2864493041696 17.71414609887552 414.6468532549262 140.9705421628555 17.71509942134935 414.6463489051671 84.74884450264177 17.71472716067638 414.6282297648814 106.7080424082922 17.71501956792599 414.6162918665531 84.74552569604246 17.71463668473461 414.6367206921264 112.0452533164658 17.71463668473461 414.6367206921264 112.0452533164658 17.71509942134935 414.6463489051671 84.74884450264177 17.71472716067638 414.6282297648814 106.7080424082922 17.71501956792599 414.6162918665531 84.74552569604246 17.71453088451153 414.6466497620156 118.2864491953677 17.71453095700872 414.6345208034652 118.2820347387428 17.71463668473461 414.6367206921264 112.0452533164658 17.71463668473461 414.6367206921264 112.0452533164658 17.71453095700872 414.6345208034652 118.2820347387428 17.71453088451153 414.6466497620156 118.2864491953677 17.71463668473461 414.6367206921264 112.0452533164658 17.71453095700872 414.6345208034652 118.2820347387428 17.71472716067638 414.6282297648814 106.7080424082922 17.71453088451153 414.6466497620156 118.2864491953677 17.71453088451153 414.6466497620156 118.2864491953677 17.71463668473461 414.6367206921264 112.0452533164658 17.71453095700872 414.6345208034652 118.2820347387428 17.71472716067638 414.6282297648814 106.7080424082922 17.71453088451153 414.6466497620156 118.2864491953677 17.71453095700872 414.6345208034652 118.2820347387428 17.71463668473461 414.6367206921264 112.0452533164658 17.71463668473461 414.6367206921264 112.0452533164658 17.71453095700872 414.6345208034652 118.2820347387428 17.71453088451153 414.6466497620156 118.2864491953677 17.71509960927278 414.5932764525147 84.73715575559328 17.71648728707669 181.7576765225566 0.2319023277075344 17.71742271838048 181.7576744703945 -0.005706314450553751 17.71592289618775 181.7600499133143 33.52502558997264 17.71453114376345 414.6036628736269 118.2708036843821 17.71472716067638 414.6282297648814 106.7080424082922 17.71453095700872 414.6345208034652 118.2820347387428 17.71453095700872 414.6345208034652 118.2820347387428 17.71472716067638 414.6282297648814 106.7080424082922 17.71453114376345 414.6036628736269 118.2708036843821 17.71509960927278 414.5932764525147 84.73715575559328 17.71592289618775 181.7600499133143 33.52502558997264 17.71648728707669 181.7576765225566 0.2319023277075344 17.71742271838048 181.7576744703945 -0.005706314450553751 17.71463668473461 414.6367206921264 112.0452533164658 17.71453095700872 414.6345208034652 118.2820347387428 17.71472716067638 414.6282297648814 106.7080424082922 17.71472716067638 414.6282297648814 106.7080424082922 17.71453095700872 414.6345208034652 118.2820347387428 17.71463668473461 414.6367206921264 112.0452533164658</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1914\" source=\"#ID3988\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID3986\">\r\n\t\t\t\t\t<float_array count=\"5742\" id=\"ID3989\">-0.9999999998510096 6.7476667477142e-009 1.726212821001601e-005 -0.9999999998510096 6.7476667477142e-009 1.726212821001601e-005 -0.9999999998510096 6.7476667477142e-009 1.726212821001601e-005 -0.9999999998510096 6.7476667477142e-009 1.726212821001601e-005 0.9999999998510096 -6.7476667477142e-009 -1.726212821001601e-005 0.9999999998510096 -6.7476667477142e-009 -1.726212821001601e-005 0.9999999998510096 -6.7476667477142e-009 -1.726212821001601e-005 0.9999999998510096 -6.7476667477142e-009 -1.726212821001601e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 1.726250358506658e-005 8.970839341325744e-006 0.999999999810765 1.726250358506658e-005 8.970839341325744e-006 0.999999999810765 1.726250358506658e-005 8.970839341325744e-006 0.999999999810765 1.726250358506658e-005 8.970839341325744e-006 0.999999999810765 -1.726250358506658e-005 -8.970839341325744e-006 -0.999999999810765 -1.726250358506658e-005 -8.970839341325744e-006 -0.999999999810765 -1.726250358506658e-005 -8.970839341325744e-006 -0.999999999810765 -1.726250358506658e-005 -8.970839341325744e-006 -0.999999999810765 -1.69512734065197e-005 8.972202195269999e-006 0.9999999998160771 -1.69512734065197e-005 8.972202195269999e-006 0.9999999998160771 -1.69512734065197e-005 8.972202195269999e-006 0.9999999998160771 -1.69512734065197e-005 8.972202195269999e-006 0.9999999998160771 1.69512734065197e-005 -8.972202195269999e-006 -0.9999999998160771 1.69512734065197e-005 -8.972202195269999e-006 -0.9999999998160771 1.69512734065197e-005 -8.972202195269999e-006 -0.9999999998160771 1.69512734065197e-005 -8.972202195269999e-006 -0.9999999998160771 -1.595234396569304e-005 -0.3420117130454115 0.9396956889787597 -1.595234396569304e-005 -0.3420117130454115 0.9396956889787597 -1.595234396569304e-005 -0.3420117130454115 0.9396956889787597 -1.595234396569304e-005 -0.3420117130454115 0.9396956889787597 1.595234396569304e-005 0.3420117130454115 -0.9396956889787597 1.595234396569304e-005 0.3420117130454115 -0.9396956889787597 1.595234396569304e-005 0.3420117130454115 -0.9396956889787597 1.595234396569304e-005 0.3420117130454115 -0.9396956889787597 -1.699069109691404e-005 8.970731482899785e-006 0.9999999998154213 -1.699069109691404e-005 8.970731482899785e-006 0.9999999998154213 -1.699069109691404e-005 8.970731482899785e-006 0.9999999998154213 -1.699069109691404e-005 8.970731482899785e-006 0.9999999998154213 1.699069109691404e-005 -8.970731482899785e-006 -0.9999999998154213 1.699069109691404e-005 -8.970731482899785e-006 -0.9999999998154213 1.699069109691404e-005 -8.970731482899785e-006 -0.9999999998154213 1.699069109691404e-005 -8.970731482899785e-006 -0.9999999998154213 6.04078447685371e-009 0.999999999959763 -8.970731381556801e-006 6.04078447685371e-009 0.999999999959763 -8.970731381556801e-006 6.04078447685371e-009 0.999999999959763 -8.970731381556801e-006 6.04078447685371e-009 0.999999999959763 -8.970731381556801e-006 -6.04078447685371e-009 -0.999999999959763 8.970731381556801e-006 -6.04078447685371e-009 -0.999999999959763 8.970731381556801e-006 -6.04078447685371e-009 -0.999999999959763 8.970731381556801e-006 -6.04078447685371e-009 -0.999999999959763 8.970731381556801e-006 1.695237010078904e-005 -8.970731482673993e-006 -0.9999999998160716 1.695237010078904e-005 -8.970731482673993e-006 -0.9999999998160716 1.695237010078904e-005 -8.970731482673993e-006 -0.9999999998160716 1.695237010078904e-005 -8.970731482673993e-006 -0.9999999998160716 -1.695237010078904e-005 8.970731482673993e-006 0.9999999998160716 -1.695237010078904e-005 8.970731482673993e-006 0.9999999998160716 -1.695237010078904e-005 8.970731482673993e-006 0.9999999998160716 -1.695237010078904e-005 8.970731482673993e-006 0.9999999998160716 -9.308728860105341e-010 -0.9999999999597818 8.968629598979562e-006 -9.308728860105341e-010 -0.9999999999597818 8.968629598979562e-006 -9.308728860105341e-010 -0.9999999999597818 8.968629598979562e-006 -9.308728860105341e-010 -0.9999999999597818 8.968629598979562e-006 9.308728860105341e-010 0.9999999999597818 -8.968629598979562e-006 9.308728860105341e-010 0.9999999999597818 -8.968629598979562e-006 9.308728860105341e-010 0.9999999999597818 -8.968629598979562e-006 9.308728860105341e-010 0.9999999999597818 -8.968629598979562e-006 1.726250358505767e-005 8.970839312939975e-006 0.999999999810765 1.726250358505767e-005 8.970839312939975e-006 0.999999999810765 1.726250358505767e-005 8.970839312939975e-006 0.999999999810765 1.726250358505767e-005 8.970839312939975e-006 0.999999999810765 -1.726250358505767e-005 -8.970839312939975e-006 -0.999999999810765 -1.726250358505767e-005 -8.970839312939975e-006 -0.999999999810765 -1.726250358505767e-005 -8.970839312939975e-006 -0.999999999810765 -1.726250358505767e-005 -8.970839312939975e-006 -0.999999999810765 -1.726007997197179e-009 -0.9999999999596313 8.985420324210389e-006 -1.726007997197179e-009 -0.9999999999596313 8.985420324210389e-006 -1.726007997197179e-009 -0.9999999999596313 8.985420324210389e-006 -1.726007997197179e-009 -0.9999999999596313 8.985420324210389e-006 -1.726007997197179e-009 -0.9999999999596313 8.985420324210389e-006 1.726007997197179e-009 0.9999999999596313 -8.985420324210389e-006 1.726007997197179e-009 0.9999999999596313 -8.985420324210389e-006 1.726007997197179e-009 0.9999999999596313 -8.985420324210389e-006 1.726007997197179e-009 0.9999999999596313 -8.985420324210389e-006 1.726007997197179e-009 0.9999999999596313 -8.985420324210389e-006 1.726250358505106e-005 8.970839347640652e-006 0.999999999810765 1.726250358505106e-005 8.970839347640652e-006 0.999999999810765 1.726250358505106e-005 8.970839347640652e-006 0.999999999810765 1.726250358505106e-005 8.970839347640652e-006 0.999999999810765 -1.726250358505106e-005 -8.970839347640652e-006 -0.999999999810765 -1.726250358505106e-005 -8.970839347640652e-006 -0.999999999810765 -1.726250358505106e-005 -8.970839347640652e-006 -0.999999999810765 -1.726250358505106e-005 -8.970839347640652e-006 -0.999999999810765 -1.725968055849582e-009 -0.9999999999595856 8.990503354976378e-006 -1.725968055849582e-009 -0.9999999999595856 8.990503354976378e-006 -1.725968055849582e-009 -0.9999999999595856 8.990503354976378e-006 -1.725968055849582e-009 -0.9999999999595856 8.990503354976378e-006 -1.725968055849582e-009 -0.9999999999595856 8.990503354976378e-006 1.725968055849582e-009 0.9999999999595856 -8.990503354976378e-006 1.725968055849582e-009 0.9999999999595856 -8.990503354976378e-006 1.725968055849582e-009 0.9999999999595856 -8.990503354976378e-006 1.725968055849582e-009 0.9999999999595856 -8.990503354976378e-006 1.725968055849582e-009 0.9999999999595856 -8.990503354976378e-006 1.726250358504899e-005 8.970839330290788e-006 0.999999999810765 1.726250358504899e-005 8.970839330290788e-006 0.999999999810765 1.726250358504899e-005 8.970839330290788e-006 0.999999999810765 1.726250358504899e-005 8.970839330290788e-006 0.999999999810765 -1.726250358504899e-005 -8.970839330290788e-006 -0.999999999810765 -1.726250358504899e-005 -8.970839330290788e-006 -0.999999999810765 -1.726250358504899e-005 -8.970839330290788e-006 -0.999999999810765 -1.726250358504899e-005 -8.970839330290788e-006 -0.999999999810765 -1.725970181422183e-009 -0.9999999999595854 8.990503679557698e-006 -1.725970181422183e-009 -0.9999999999595854 8.990503679557698e-006 -1.725970181422183e-009 -0.9999999999595854 8.990503679557698e-006 -1.725970181422183e-009 -0.9999999999595854 8.990503679557698e-006 -1.725970181422183e-009 -0.9999999999595854 8.990503679557698e-006 1.725970181422183e-009 0.9999999999595854 -8.990503679557698e-006 1.725970181422183e-009 0.9999999999595854 -8.990503679557698e-006 1.725970181422183e-009 0.9999999999595854 -8.990503679557698e-006 1.725970181422183e-009 0.9999999999595854 -8.990503679557698e-006 1.725970181422183e-009 0.9999999999595854 -8.990503679557698e-006 1.726250358505141e-005 8.970839376020789e-006 0.999999999810765 1.726250358505141e-005 8.970839376020789e-006 0.999999999810765 1.726250358505141e-005 8.970839376020789e-006 0.999999999810765 1.726250358505141e-005 8.970839376020789e-006 0.999999999810765 -1.726250358505141e-005 -8.970839376020789e-006 -0.999999999810765 -1.726250358505141e-005 -8.970839376020789e-006 -0.999999999810765 -1.726250358505141e-005 -8.970839376020789e-006 -0.999999999810765 -1.726250358505141e-005 -8.970839376020789e-006 -0.999999999810765 -1.72597302026107e-009 -0.9999999999595856 8.99050315774095e-006 -1.72597302026107e-009 -0.9999999999595856 8.99050315774095e-006 -1.72597302026107e-009 -0.9999999999595856 8.99050315774095e-006 -1.72597302026107e-009 -0.9999999999595856 8.99050315774095e-006 -1.72597302026107e-009 -0.9999999999595856 8.99050315774095e-006 1.72597302026107e-009 0.9999999999595856 -8.99050315774095e-006 1.72597302026107e-009 0.9999999999595856 -8.99050315774095e-006 1.72597302026107e-009 0.9999999999595856 -8.99050315774095e-006 1.72597302026107e-009 0.9999999999595856 -8.99050315774095e-006 1.72597302026107e-009 0.9999999999595856 -8.99050315774095e-006 1.726250358505206e-005 8.970839308225756e-006 0.999999999810765 1.726250358505206e-005 8.970839308225756e-006 0.999999999810765 1.726250358505206e-005 8.970839308225756e-006 0.999999999810765 1.726250358505206e-005 8.970839308225756e-006 0.999999999810765 -1.726250358505206e-005 -8.970839308225756e-006 -0.999999999810765 -1.726250358505206e-005 -8.970839308225756e-006 -0.999999999810765 -1.726250358505206e-005 -8.970839308225756e-006 -0.999999999810765 -1.726250358505206e-005 -8.970839308225756e-006 -0.999999999810765 -1.725999127657944e-009 -0.9999999999595854 8.990503474021936e-006 -1.725999127657944e-009 -0.9999999999595854 8.990503474021936e-006 -1.725999127657944e-009 -0.9999999999595854 8.990503474021936e-006 -1.725999127657944e-009 -0.9999999999595854 8.990503474021936e-006 -1.725999127657944e-009 -0.9999999999595854 8.990503474021936e-006 1.725999127657944e-009 0.9999999999595854 -8.990503474021936e-006 1.725999127657944e-009 0.9999999999595854 -8.990503474021936e-006 1.725999127657944e-009 0.9999999999595854 -8.990503474021936e-006 1.725999127657944e-009 0.9999999999595854 -8.990503474021936e-006 1.725999127657944e-009 0.9999999999595854 -8.990503474021936e-006 1.726250358505705e-005 8.970839339753515e-006 0.999999999810765 1.726250358505705e-005 8.970839339753515e-006 0.999999999810765 1.726250358505705e-005 8.970839339753515e-006 0.999999999810765 1.726250358505705e-005 8.970839339753515e-006 0.999999999810765 -1.726250358505705e-005 -8.970839339753515e-006 -0.999999999810765 -1.726250358505705e-005 -8.970839339753515e-006 -0.999999999810765 -1.726250358505705e-005 -8.970839339753515e-006 -0.999999999810765 -1.726250358505705e-005 -8.970839339753515e-006 -0.999999999810765 -1.725975730882705e-009 -0.9999999999595854 8.990503235457869e-006 -1.725975730882705e-009 -0.9999999999595854 8.990503235457869e-006 -1.725975730882705e-009 -0.9999999999595854 8.990503235457869e-006 -1.725975730882705e-009 -0.9999999999595854 8.990503235457869e-006 -1.725975730882705e-009 -0.9999999999595854 8.990503235457869e-006 1.725975730882705e-009 0.9999999999595854 -8.990503235457869e-006 1.725975730882705e-009 0.9999999999595854 -8.990503235457869e-006 1.725975730882705e-009 0.9999999999595854 -8.990503235457869e-006 1.725975730882705e-009 0.9999999999595854 -8.990503235457869e-006 1.725975730882705e-009 0.9999999999595854 -8.990503235457869e-006 1.726250358506563e-005 8.97083940440733e-006 0.999999999810765 1.726250358506563e-005 8.97083940440733e-006 0.999999999810765 1.726250358506563e-005 8.97083940440733e-006 0.999999999810765 1.726250358506563e-005 8.97083940440733e-006 0.999999999810765 -1.726250358506563e-005 -8.97083940440733e-006 -0.999999999810765 -1.726250358506563e-005 -8.97083940440733e-006 -0.999999999810765 -1.726250358506563e-005 -8.97083940440733e-006 -0.999999999810765 -1.726250358506563e-005 -8.97083940440733e-006 -0.999999999810765 -1.725956942010193e-009 -0.9999999999595856 8.990504366192559e-006 -1.725956942010193e-009 -0.9999999999595856 8.990504366192559e-006 -1.725956942010193e-009 -0.9999999999595856 8.990504366192559e-006 -1.725956942010193e-009 -0.9999999999595856 8.990504366192559e-006 -1.725956942010193e-009 -0.9999999999595856 8.990504366192559e-006 1.725956942010193e-009 0.9999999999595856 -8.990504366192559e-006 1.725956942010193e-009 0.9999999999595856 -8.990504366192559e-006 1.725956942010193e-009 0.9999999999595856 -8.990504366192559e-006 1.725956942010193e-009 0.9999999999595856 -8.990504366192559e-006 1.725956942010193e-009 0.9999999999595856 -8.990504366192559e-006 1.726250358505733e-005 8.970839352320848e-006 0.999999999810765 1.726250358505733e-005 8.970839352320848e-006 0.999999999810765 1.726250358505733e-005 8.970839352320848e-006 0.999999999810765 1.726250358505733e-005 8.970839352320848e-006 0.999999999810765 -1.726250358505733e-005 -8.970839352320848e-006 -0.999999999810765 -1.726250358505733e-005 -8.970839352320848e-006 -0.999999999810765 -1.726250358505733e-005 -8.970839352320848e-006 -0.999999999810765 -1.726250358505733e-005 -8.970839352320848e-006 -0.999999999810765 -1.725970982250205e-009 -0.9999999999595854 8.990503484359544e-006 -1.725970982250205e-009 -0.9999999999595854 8.990503484359544e-006 -1.725970982250205e-009 -0.9999999999595854 8.990503484359544e-006 -1.725970982250205e-009 -0.9999999999595854 8.990503484359544e-006 -1.725970982250205e-009 -0.9999999999595854 8.990503484359544e-006 1.725970982250205e-009 0.9999999999595854 -8.990503484359544e-006 1.725970982250205e-009 0.9999999999595854 -8.990503484359544e-006 1.725970982250205e-009 0.9999999999595854 -8.990503484359544e-006 1.725970982250205e-009 0.9999999999595854 -8.990503484359544e-006 1.725970982250205e-009 0.9999999999595854 -8.990503484359544e-006 1.72625035850538e-005 8.970839398085218e-006 0.999999999810765 1.72625035850538e-005 8.970839398085218e-006 0.999999999810765 1.72625035850538e-005 8.970839398085218e-006 0.999999999810765 1.72625035850538e-005 8.970839398085218e-006 0.999999999810765 -1.72625035850538e-005 -8.970839398085218e-006 -0.999999999810765 -1.72625035850538e-005 -8.970839398085218e-006 -0.999999999810765 -1.72625035850538e-005 -8.970839398085218e-006 -0.999999999810765 -1.72625035850538e-005 -8.970839398085218e-006 -0.999999999810765 -1.725987764130457e-009 -0.9999999999595854 8.990503797697355e-006 -1.725987764130457e-009 -0.9999999999595854 8.990503797697355e-006 -1.725987764130457e-009 -0.9999999999595854 8.990503797697355e-006 -1.725987764130457e-009 -0.9999999999595854 8.990503797697355e-006 -1.725987764130457e-009 -0.9999999999595854 8.990503797697355e-006 1.725987764130457e-009 0.9999999999595854 -8.990503797697355e-006 1.725987764130457e-009 0.9999999999595854 -8.990503797697355e-006 1.725987764130457e-009 0.9999999999595854 -8.990503797697355e-006 1.725987764130457e-009 0.9999999999595854 -8.990503797697355e-006 1.725987764130457e-009 0.9999999999595854 -8.990503797697355e-006 1.726250358505938e-005 8.970839363428987e-006 0.999999999810765 1.726250358505938e-005 8.970839363428987e-006 0.999999999810765 1.726250358505938e-005 8.970839363428987e-006 0.999999999810765 1.726250358505938e-005 8.970839363428987e-006 0.999999999810765 -1.726250358505938e-005 -8.970839363428987e-006 -0.999999999810765 -1.726250358505938e-005 -8.970839363428987e-006 -0.999999999810765 -1.726250358505938e-005 -8.970839363428987e-006 -0.999999999810765 -1.726250358505938e-005 -8.970839363428987e-006 -0.999999999810765 1.150837249832251e-012 -0.9999999999591418 9.039729434719052e-006 1.150837249832251e-012 -0.9999999999591418 9.039729434719052e-006 1.150837249832251e-012 -0.9999999999591418 9.039729434719052e-006 1.150837249832251e-012 -0.9999999999591418 9.039729434719052e-006 1.150837249832251e-012 -0.9999999999591418 9.039729434719052e-006 -1.150837249832251e-012 0.9999999999591418 -9.039729434719052e-006 -1.150837249832251e-012 0.9999999999591418 -9.039729434719052e-006 -1.150837249832251e-012 0.9999999999591418 -9.039729434719052e-006 -1.150837249832251e-012 0.9999999999591418 -9.039729434719052e-006 -1.150837249832251e-012 0.9999999999591418 -9.039729434719052e-006 1.804752578064531e-005 8.133170980468729e-006 0.9999999998040693 1.804752578064531e-005 8.133170980468729e-006 0.9999999998040693 1.804752578064531e-005 8.133170980468729e-006 0.9999999998040693 1.804752578064531e-005 8.133170980468729e-006 0.9999999998040693 1.804752578064531e-005 8.133170980468729e-006 0.9999999998040693 -1.804752578064531e-005 -8.133170980468729e-006 -0.9999999998040693 -1.804752578064531e-005 -8.133170980468729e-006 -0.9999999998040693 -1.804752578064531e-005 -8.133170980468729e-006 -0.9999999998040693 -1.804752578064531e-005 -8.133170980468729e-006 -0.9999999998040693 -1.804752578064531e-005 -8.133170980468729e-006 -0.9999999998040693 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 1.726250358374275e-005 8.970839365598265e-006 0.999999999810765 1.726250358374275e-005 8.970839365598265e-006 0.999999999810765 1.726250358374275e-005 8.970839365598265e-006 0.999999999810765 1.726250358374275e-005 8.970839365598265e-006 0.999999999810765 1.726250358374275e-005 8.970839365598265e-006 0.999999999810765 -1.726250358374275e-005 -8.970839365598265e-006 -0.999999999810765 -1.726250358374275e-005 -8.970839365598265e-006 -0.999999999810765 -1.726250358374275e-005 -8.970839365598265e-006 -0.999999999810765 -1.726250358374275e-005 -8.970839365598265e-006 -0.999999999810765 -1.726250358374275e-005 -8.970839365598265e-006 -0.999999999810765 -1.726004999478209e-009 -0.9999999999596312 8.985420782917519e-006 -1.726004999478209e-009 -0.9999999999596312 8.985420782917519e-006 -1.726004999478209e-009 -0.9999999999596312 8.985420782917519e-006 -1.726004999478209e-009 -0.9999999999596312 8.985420782917519e-006 -1.726004999478209e-009 -0.9999999999596312 8.985420782917519e-006 1.726004999478209e-009 0.9999999999596312 -8.985420782917519e-006 1.726004999478209e-009 0.9999999999596312 -8.985420782917519e-006 1.726004999478209e-009 0.9999999999596312 -8.985420782917519e-006 1.726004999478209e-009 0.9999999999596312 -8.985420782917519e-006 1.726004999478209e-009 0.9999999999596312 -8.985420782917519e-006 1.726250358506297e-005 8.970839366574217e-006 0.999999999810765 1.726250358506297e-005 8.970839366574217e-006 0.999999999810765 1.726250358506297e-005 8.970839366574217e-006 0.999999999810765 1.726250358506297e-005 8.970839366574217e-006 0.999999999810765 -1.726250358506297e-005 -8.970839366574217e-006 -0.999999999810765 -1.726250358506297e-005 -8.970839366574217e-006 -0.999999999810765 -1.726250358506297e-005 -8.970839366574217e-006 -0.999999999810765 -1.726250358506297e-005 -8.970839366574217e-006 -0.999999999810765 -1.725961998388677e-009 -0.9999999999595856 8.990503868342639e-006 -1.725961998388677e-009 -0.9999999999595856 8.990503868342639e-006 -1.725961998388677e-009 -0.9999999999595856 8.990503868342639e-006 -1.725961998388677e-009 -0.9999999999595856 8.990503868342639e-006 -1.725961998388677e-009 -0.9999999999595856 8.990503868342639e-006 1.725961998388677e-009 0.9999999999595856 -8.990503868342639e-006 1.725961998388677e-009 0.9999999999595856 -8.990503868342639e-006 1.725961998388677e-009 0.9999999999595856 -8.990503868342639e-006 1.725961998388677e-009 0.9999999999595856 -8.990503868342639e-006 1.725961998388677e-009 0.9999999999595856 -8.990503868342639e-006 1.726250358504966e-005 8.970839358666419e-006 0.999999999810765 1.726250358504966e-005 8.970839358666419e-006 0.999999999810765 1.726250358504966e-005 8.970839358666419e-006 0.999999999810765 1.726250358504966e-005 8.970839358666419e-006 0.999999999810765 -1.726250358504966e-005 -8.970839358666419e-006 -0.999999999810765 -1.726250358504966e-005 -8.970839358666419e-006 -0.999999999810765 -1.726250358504966e-005 -8.970839358666419e-006 -0.999999999810765 -1.726250358504966e-005 -8.970839358666419e-006 -0.999999999810765 -1.725981120711787e-009 -0.9999999999595854 8.990503192188414e-006 -1.725981120711787e-009 -0.9999999999595854 8.990503192188414e-006 -1.725981120711787e-009 -0.9999999999595854 8.990503192188414e-006 -1.725981120711787e-009 -0.9999999999595854 8.990503192188414e-006 -1.725981120711787e-009 -0.9999999999595854 8.990503192188414e-006 1.725981120711787e-009 0.9999999999595854 -8.990503192188414e-006 1.725981120711787e-009 0.9999999999595854 -8.990503192188414e-006 1.725981120711787e-009 0.9999999999595854 -8.990503192188414e-006 1.725981120711787e-009 0.9999999999595854 -8.990503192188414e-006 1.725981120711787e-009 0.9999999999595854 -8.990503192188414e-006 1.726250358504725e-005 8.970839396527735e-006 0.999999999810765 1.726250358504725e-005 8.970839396527735e-006 0.999999999810765 1.726250358504725e-005 8.970839396527735e-006 0.999999999810765 1.726250358504725e-005 8.970839396527735e-006 0.999999999810765 -1.726250358504725e-005 -8.970839396527735e-006 -0.999999999810765 -1.726250358504725e-005 -8.970839396527735e-006 -0.999999999810765 -1.726250358504725e-005 -8.970839396527735e-006 -0.999999999810765 -1.726250358504725e-005 -8.970839396527735e-006 -0.999999999810765 -1.72595895667605e-009 -0.9999999999595854 8.990503316587983e-006 -1.72595895667605e-009 -0.9999999999595854 8.990503316587983e-006 -1.72595895667605e-009 -0.9999999999595854 8.990503316587983e-006 -1.72595895667605e-009 -0.9999999999595854 8.990503316587983e-006 -1.72595895667605e-009 -0.9999999999595854 8.990503316587983e-006 1.72595895667605e-009 0.9999999999595854 -8.990503316587983e-006 1.72595895667605e-009 0.9999999999595854 -8.990503316587983e-006 1.72595895667605e-009 0.9999999999595854 -8.990503316587983e-006 1.72595895667605e-009 0.9999999999595854 -8.990503316587983e-006 1.72595895667605e-009 0.9999999999595854 -8.990503316587983e-006 1.726250358504931e-005 8.970839372078189e-006 0.999999999810765 1.726250358504931e-005 8.970839372078189e-006 0.999999999810765 1.726250358504931e-005 8.970839372078189e-006 0.999999999810765 1.726250358504931e-005 8.970839372078189e-006 0.999999999810765 -1.726250358504931e-005 -8.970839372078189e-006 -0.999999999810765 -1.726250358504931e-005 -8.970839372078189e-006 -0.999999999810765 -1.726250358504931e-005 -8.970839372078189e-006 -0.999999999810765 -1.726250358504931e-005 -8.970839372078189e-006 -0.999999999810765 -1.72597907182599e-009 -0.9999999999595854 8.990503608481576e-006 -1.72597907182599e-009 -0.9999999999595854 8.990503608481576e-006 -1.72597907182599e-009 -0.9999999999595854 8.990503608481576e-006 -1.72597907182599e-009 -0.9999999999595854 8.990503608481576e-006 -1.72597907182599e-009 -0.9999999999595854 8.990503608481576e-006 1.72597907182599e-009 0.9999999999595854 -8.990503608481576e-006 1.72597907182599e-009 0.9999999999595854 -8.990503608481576e-006 1.72597907182599e-009 0.9999999999595854 -8.990503608481576e-006 1.72597907182599e-009 0.9999999999595854 -8.990503608481576e-006 1.72597907182599e-009 0.9999999999595854 -8.990503608481576e-006 1.726250358506079e-005 8.970839370496718e-006 0.999999999810765 1.726250358506079e-005 8.970839370496718e-006 0.999999999810765 1.726250358506079e-005 8.970839370496718e-006 0.999999999810765 1.726250358506079e-005 8.970839370496718e-006 0.999999999810765 -1.726250358506079e-005 -8.970839370496718e-006 -0.999999999810765 -1.726250358506079e-005 -8.970839370496718e-006 -0.999999999810765 -1.726250358506079e-005 -8.970839370496718e-006 -0.999999999810765 -1.726250358506079e-005 -8.970839370496718e-006 -0.999999999810765 -1.72597275833281e-009 -0.9999999999595854 8.990503028876744e-006 -1.72597275833281e-009 -0.9999999999595854 8.990503028876744e-006 -1.72597275833281e-009 -0.9999999999595854 8.990503028876744e-006 -1.72597275833281e-009 -0.9999999999595854 8.990503028876744e-006 -1.72597275833281e-009 -0.9999999999595854 8.990503028876744e-006 1.72597275833281e-009 0.9999999999595854 -8.990503028876744e-006 1.72597275833281e-009 0.9999999999595854 -8.990503028876744e-006 1.72597275833281e-009 0.9999999999595854 -8.990503028876744e-006 1.72597275833281e-009 0.9999999999595854 -8.990503028876744e-006 1.72597275833281e-009 0.9999999999595854 -8.990503028876744e-006 1.726250358506529e-005 8.970839353180464e-006 0.999999999810765 1.726250358506529e-005 8.970839353180464e-006 0.999999999810765 1.726250358506529e-005 8.970839353180464e-006 0.999999999810765 1.726250358506529e-005 8.970839353180464e-006 0.999999999810765 -1.726250358506529e-005 -8.970839353180464e-006 -0.999999999810765 -1.726250358506529e-005 -8.970839353180464e-006 -0.999999999810765 -1.726250358506529e-005 -8.970839353180464e-006 -0.999999999810765 -1.726250358506529e-005 -8.970839353180464e-006 -0.999999999810765 -1.725964934936938e-009 -0.9999999999595856 8.990504371792819e-006 -1.725964934936938e-009 -0.9999999999595856 8.990504371792819e-006 -1.725964934936938e-009 -0.9999999999595856 8.990504371792819e-006 -1.725964934936938e-009 -0.9999999999595856 8.990504371792819e-006 -1.725964934936938e-009 -0.9999999999595856 8.990504371792819e-006 1.725964934936938e-009 0.9999999999595856 -8.990504371792819e-006 1.725964934936938e-009 0.9999999999595856 -8.990504371792819e-006 1.725964934936938e-009 0.9999999999595856 -8.990504371792819e-006 1.725964934936938e-009 0.9999999999595856 -8.990504371792819e-006 1.725964934936938e-009 0.9999999999595856 -8.990504371792819e-006 1.726250358505903e-005 8.970839357852563e-006 0.999999999810765 1.726250358505903e-005 8.970839357852563e-006 0.999999999810765 1.726250358505903e-005 8.970839357852563e-006 0.999999999810765 1.726250358505903e-005 8.970839357852563e-006 0.999999999810765 -1.726250358505903e-005 -8.970839357852563e-006 -0.999999999810765 -1.726250358505903e-005 -8.970839357852563e-006 -0.999999999810765 -1.726250358505903e-005 -8.970839357852563e-006 -0.999999999810765 -1.726250358505903e-005 -8.970839357852563e-006 -0.999999999810765 -1.725985810800676e-009 -0.9999999999595854 8.990504341525355e-006 -1.725985810800676e-009 -0.9999999999595854 8.990504341525355e-006 -1.725985810800676e-009 -0.9999999999595854 8.990504341525355e-006 -1.725985810800676e-009 -0.9999999999595854 8.990504341525355e-006 -1.725985810800676e-009 -0.9999999999595854 8.990504341525355e-006 1.725985810800676e-009 0.9999999999595854 -8.990504341525355e-006 1.725985810800676e-009 0.9999999999595854 -8.990504341525355e-006 1.725985810800676e-009 0.9999999999595854 -8.990504341525355e-006 1.725985810800676e-009 0.9999999999595854 -8.990504341525355e-006 1.725985810800676e-009 0.9999999999595854 -8.990504341525355e-006 1.726250358505639e-005 8.970839369713307e-006 0.999999999810765 1.726250358505639e-005 8.970839369713307e-006 0.999999999810765 1.726250358505639e-005 8.970839369713307e-006 0.999999999810765 1.726250358505639e-005 8.970839369713307e-006 0.999999999810765 -1.726250358505639e-005 -8.970839369713307e-006 -0.999999999810765 -1.726250358505639e-005 -8.970839369713307e-006 -0.999999999810765 -1.726250358505639e-005 -8.970839369713307e-006 -0.999999999810765 -1.726250358505639e-005 -8.970839369713307e-006 -0.999999999810765 -1.725971656619349e-009 -0.9999999999595856 8.990504331939841e-006 -1.725971656619349e-009 -0.9999999999595856 8.990504331939841e-006 -1.725971656619349e-009 -0.9999999999595856 8.990504331939841e-006 -1.725971656619349e-009 -0.9999999999595856 8.990504331939841e-006 -1.725971656619349e-009 -0.9999999999595856 8.990504331939841e-006 1.725971656619349e-009 0.9999999999595856 -8.990504331939841e-006 1.725971656619349e-009 0.9999999999595856 -8.990504331939841e-006 1.725971656619349e-009 0.9999999999595856 -8.990504331939841e-006 1.725971656619349e-009 0.9999999999595856 -8.990504331939841e-006 1.725971656619349e-009 0.9999999999595856 -8.990504331939841e-006 1.726250358505629e-005 8.970839358690732e-006 0.999999999810765 1.726250358505629e-005 8.970839358690732e-006 0.999999999810765 1.726250358505629e-005 8.970839358690732e-006 0.999999999810765 1.726250358505629e-005 8.970839358690732e-006 0.999999999810765 -1.726250358505629e-005 -8.970839358690732e-006 -0.999999999810765 -1.726250358505629e-005 -8.970839358690732e-006 -0.999999999810765 -1.726250358505629e-005 -8.970839358690732e-006 -0.999999999810765 -1.726250358505629e-005 -8.970839358690732e-006 -0.999999999810765 -1.725968681625796e-009 -0.9999999999595854 8.99050506099777e-006 -1.725968681625796e-009 -0.9999999999595854 8.99050506099777e-006 -1.725968681625796e-009 -0.9999999999595854 8.99050506099777e-006 -1.725968681625796e-009 -0.9999999999595854 8.99050506099777e-006 -1.725968681625796e-009 -0.9999999999595854 8.99050506099777e-006 1.725968681625796e-009 0.9999999999595854 -8.99050506099777e-006 1.725968681625796e-009 0.9999999999595854 -8.99050506099777e-006 1.725968681625796e-009 0.9999999999595854 -8.99050506099777e-006 1.725968681625796e-009 0.9999999999595854 -8.99050506099777e-006 1.725968681625796e-009 0.9999999999595854 -8.99050506099777e-006 1.726250358505805e-005 8.970839381534567e-006 0.999999999810765 1.726250358505805e-005 8.970839381534567e-006 0.999999999810765 1.726250358505805e-005 8.970839381534567e-006 0.999999999810765 1.726250358505805e-005 8.970839381534567e-006 0.999999999810765 -1.726250358505805e-005 -8.970839381534567e-006 -0.999999999810765 -1.726250358505805e-005 -8.970839381534567e-006 -0.999999999810765 -1.726250358505805e-005 -8.970839381534567e-006 -0.999999999810765 -1.726250358505805e-005 -8.970839381534567e-006 -0.999999999810765 -1.725944462776718e-009 -0.9999999999595856 8.990502446358643e-006 -1.725944462776718e-009 -0.9999999999595856 8.990502446358643e-006 -1.725944462776718e-009 -0.9999999999595856 8.990502446358643e-006 -1.725944462776718e-009 -0.9999999999595856 8.990502446358643e-006 -1.725944462776718e-009 -0.9999999999595856 8.990502446358643e-006 1.725944462776718e-009 0.9999999999595856 -8.990502446358643e-006 1.725944462776718e-009 0.9999999999595856 -8.990502446358643e-006 1.725944462776718e-009 0.9999999999595856 -8.990502446358643e-006 1.725944462776718e-009 0.9999999999595856 -8.990502446358643e-006 1.725944462776718e-009 0.9999999999595856 -8.990502446358643e-006 1.72625035850452e-005 8.971674368422169e-006 0.9999999998107575 1.72625035850452e-005 8.971674368422169e-006 0.9999999998107575 1.72625035850452e-005 8.971674368422169e-006 0.9999999998107575 1.72625035850452e-005 8.971674368422169e-006 0.9999999998107575 -1.72625035850452e-005 -8.971674368422169e-006 -0.9999999998107575 -1.72625035850452e-005 -8.971674368422169e-006 -0.9999999998107575 -1.72625035850452e-005 -8.971674368422169e-006 -0.9999999998107575 -1.72625035850452e-005 -8.971674368422169e-006 -0.9999999998107575 2.464456939389925e-010 -0.9999999999597729 8.969648427962349e-006 2.464456939389925e-010 -0.9999999999597729 8.969648427962349e-006 2.464456939389925e-010 -0.9999999999597729 8.969648427962349e-006 2.464456939389925e-010 -0.9999999999597729 8.969648427962349e-006 2.464456939389925e-010 -0.9999999999597729 8.969648427962349e-006 -2.464456939389925e-010 0.9999999999597729 -8.969648427962349e-006 -2.464456939389925e-010 0.9999999999597729 -8.969648427962349e-006 -2.464456939389925e-010 0.9999999999597729 -8.969648427962349e-006 -2.464456939389925e-010 0.9999999999597729 -8.969648427962349e-006 -2.464456939389925e-010 0.9999999999597729 -8.969648427962349e-006 1.726250358504686e-005 8.972201978244476e-006 0.9999999998107528 1.726250358504686e-005 8.972201978244476e-006 0.9999999998107528 1.726250358504686e-005 8.972201978244476e-006 0.9999999998107528 1.726250358504686e-005 8.972201978244476e-006 0.9999999998107528 -1.726250358504686e-005 -8.972201978244476e-006 -0.9999999998107528 -1.726250358504686e-005 -8.972201978244476e-006 -0.9999999998107528 -1.726250358504686e-005 -8.972201978244476e-006 -0.9999999998107528 -1.726250358504686e-005 -8.972201978244476e-006 -0.9999999998107528 2.464703079328471e-010 -0.999999999959778 8.969083299690713e-006 2.464703079328471e-010 -0.999999999959778 8.969083299690713e-006 2.464703079328471e-010 -0.999999999959778 8.969083299690713e-006 2.464703079328471e-010 -0.999999999959778 8.969083299690713e-006 2.464703079328471e-010 -0.999999999959778 8.969083299690713e-006 -2.464703079328471e-010 0.999999999959778 -8.969083299690713e-006 -2.464703079328471e-010 0.999999999959778 -8.969083299690713e-006 -2.464703079328471e-010 0.999999999959778 -8.969083299690713e-006 -2.464703079328471e-010 0.999999999959778 -8.969083299690713e-006 -2.464703079328471e-010 0.999999999959778 -8.969083299690713e-006 1.726250358514213e-005 8.972201977084217e-006 0.9999999998107528 1.726250358514213e-005 8.972201977084217e-006 0.9999999998107528 1.726250358514213e-005 8.972201977084217e-006 0.9999999998107528 1.726250358514213e-005 8.972201977084217e-006 0.9999999998107528 -1.726250358514213e-005 -8.972201977084217e-006 -0.9999999998107528 -1.726250358514213e-005 -8.972201977084217e-006 -0.9999999998107528 -1.726250358514213e-005 -8.972201977084217e-006 -0.9999999998107528 -1.726250358514213e-005 -8.972201977084217e-006 -0.9999999998107528 2.46459619031712e-010 -0.9999999999597751 8.969393854444635e-006 2.46459619031712e-010 -0.9999999999597751 8.969393854444635e-006 2.46459619031712e-010 -0.9999999999597751 8.969393854444635e-006 2.46459619031712e-010 -0.9999999999597751 8.969393854444635e-006 2.46459619031712e-010 -0.9999999999597751 8.969393854444635e-006 -2.46459619031712e-010 0.9999999999597751 -8.969393854444635e-006 -2.46459619031712e-010 0.9999999999597751 -8.969393854444635e-006 -2.46459619031712e-010 0.9999999999597751 -8.969393854444635e-006 -2.46459619031712e-010 0.9999999999597751 -8.969393854444635e-006 -2.46459619031712e-010 0.9999999999597751 -8.969393854444635e-006 1.726250358514192e-005 8.972201968799266e-006 0.9999999998107528 1.726250358514192e-005 8.972201968799266e-006 0.9999999998107528 1.726250358514192e-005 8.972201968799266e-006 0.9999999998107528 1.726250358514192e-005 8.972201968799266e-006 0.9999999998107528 -1.726250358514192e-005 -8.972201968799266e-006 -0.9999999998107528 -1.726250358514192e-005 -8.972201968799266e-006 -0.9999999998107528 -1.726250358514192e-005 -8.972201968799266e-006 -0.9999999998107528 -1.726250358514192e-005 -8.972201968799266e-006 -0.9999999998107528 2.464625981408499e-010 -0.9999999999597751 8.969393701950967e-006 2.464625981408499e-010 -0.9999999999597751 8.969393701950967e-006 2.464625981408499e-010 -0.9999999999597751 8.969393701950967e-006 2.464625981408499e-010 -0.9999999999597751 8.969393701950967e-006 2.464625981408499e-010 -0.9999999999597751 8.969393701950967e-006 -2.464625981408499e-010 0.9999999999597751 -8.969393701950967e-006 -2.464625981408499e-010 0.9999999999597751 -8.969393701950967e-006 -2.464625981408499e-010 0.9999999999597751 -8.969393701950967e-006 -2.464625981408499e-010 0.9999999999597751 -8.969393701950967e-006 -2.464625981408499e-010 0.9999999999597751 -8.969393701950967e-006 1.726250358514175e-005 8.972201980237552e-006 0.9999999998107528 1.726250358514175e-005 8.972201980237552e-006 0.9999999998107528 1.726250358514175e-005 8.972201980237552e-006 0.9999999998107528 1.726250358514175e-005 8.972201980237552e-006 0.9999999998107528 -1.726250358514175e-005 -8.972201980237552e-006 -0.9999999998107528 -1.726250358514175e-005 -8.972201980237552e-006 -0.9999999998107528 -1.726250358514175e-005 -8.972201980237552e-006 -0.9999999998107528 -1.726250358514175e-005 -8.972201980237552e-006 -0.9999999998107528 2.464282623066445e-010 -0.9999999999597754 8.969350884824909e-006 2.464282623066445e-010 -0.9999999999597754 8.969350884824909e-006 2.464282623066445e-010 -0.9999999999597754 8.969350884824909e-006 2.464282623066445e-010 -0.9999999999597754 8.969350884824909e-006 2.464282623066445e-010 -0.9999999999597754 8.969350884824909e-006 -2.464282623066445e-010 0.9999999999597754 -8.969350884824909e-006 -2.464282623066445e-010 0.9999999999597754 -8.969350884824909e-006 -2.464282623066445e-010 0.9999999999597754 -8.969350884824909e-006 -2.464282623066445e-010 0.9999999999597754 -8.969350884824909e-006 -2.464282623066445e-010 0.9999999999597754 -8.969350884824909e-006 1.726250358514105e-005 8.97220196958288e-006 0.9999999998107528 1.726250358514105e-005 8.97220196958288e-006 0.9999999998107528 1.726250358514105e-005 8.97220196958288e-006 0.9999999998107528 1.726250358514105e-005 8.97220196958288e-006 0.9999999998107528 -1.726250358514105e-005 -8.97220196958288e-006 -0.9999999998107528 -1.726250358514105e-005 -8.97220196958288e-006 -0.9999999998107528 -1.726250358514105e-005 -8.97220196958288e-006 -0.9999999998107528 -1.726250358514105e-005 -8.97220196958288e-006 -0.9999999998107528 2.464259078493789e-010 -0.9999999999597746 8.969434920215588e-006 2.464259078493789e-010 -0.9999999999597746 8.969434920215588e-006 2.464259078493789e-010 -0.9999999999597746 8.969434920215588e-006 2.464259078493789e-010 -0.9999999999597746 8.969434920215588e-006 2.464259078493789e-010 -0.9999999999597746 8.969434920215588e-006 -2.464259078493789e-010 0.9999999999597746 -8.969434920215588e-006 -2.464259078493789e-010 0.9999999999597746 -8.969434920215588e-006 -2.464259078493789e-010 0.9999999999597746 -8.969434920215588e-006 -2.464259078493789e-010 0.9999999999597746 -8.969434920215588e-006 -2.464259078493789e-010 0.9999999999597746 -8.969434920215588e-006 1.726250358514227e-005 8.972201969971912e-006 0.9999999998107528 1.726250358514227e-005 8.972201969971912e-006 0.9999999998107528 1.726250358514227e-005 8.972201969971912e-006 0.9999999998107528 1.726250358514227e-005 8.972201969971912e-006 0.9999999998107528 -1.726250358514227e-005 -8.972201969971912e-006 -0.9999999998107528 -1.726250358514227e-005 -8.972201969971912e-006 -0.9999999998107528 -1.726250358514227e-005 -8.972201969971912e-006 -0.9999999998107528 -1.726250358514227e-005 -8.972201969971912e-006 -0.9999999998107528 2.464537909706929e-010 -0.9999999999597751 8.96939385947424e-006 2.464537909706929e-010 -0.9999999999597751 8.96939385947424e-006 2.464537909706929e-010 -0.9999999999597751 8.96939385947424e-006 2.464537909706929e-010 -0.9999999999597751 8.96939385947424e-006 2.464537909706929e-010 -0.9999999999597751 8.96939385947424e-006 -2.464537909706929e-010 0.9999999999597751 -8.96939385947424e-006 -2.464537909706929e-010 0.9999999999597751 -8.96939385947424e-006 -2.464537909706929e-010 0.9999999999597751 -8.96939385947424e-006 -2.464537909706929e-010 0.9999999999597751 -8.96939385947424e-006 -2.464537909706929e-010 0.9999999999597751 -8.96939385947424e-006 1.726250358512018e-005 8.972201971240368e-006 0.9999999998107528 1.726250358512018e-005 8.972201971240368e-006 0.9999999998107528 1.726250358512018e-005 8.972201971240368e-006 0.9999999998107528 1.726250358512018e-005 8.972201971240368e-006 0.9999999998107528 -1.726250358512018e-005 -8.972201971240368e-006 -0.9999999998107528 -1.726250358512018e-005 -8.972201971240368e-006 -0.9999999998107528 -1.726250358512018e-005 -8.972201971240368e-006 -0.9999999998107528 -1.726250358512018e-005 -8.972201971240368e-006 -0.9999999998107528 2.464214845433417e-010 -0.9999999999597751 8.969394783729552e-006 2.464214845433417e-010 -0.9999999999597751 8.969394783729552e-006 2.464214845433417e-010 -0.9999999999597751 8.969394783729552e-006 2.464214845433417e-010 -0.9999999999597751 8.969394783729552e-006 2.464214845433417e-010 -0.9999999999597751 8.969394783729552e-006 -2.464214845433417e-010 0.9999999999597751 -8.969394783729552e-006 -2.464214845433417e-010 0.9999999999597751 -8.969394783729552e-006 -2.464214845433417e-010 0.9999999999597751 -8.969394783729552e-006 -2.464214845433417e-010 0.9999999999597751 -8.969394783729552e-006 -2.464214845433417e-010 0.9999999999597751 -8.969394783729552e-006 1.726250358513736e-005 8.972201970975585e-006 0.9999999998107528 1.726250358513736e-005 8.972201970975585e-006 0.9999999998107528 1.726250358513736e-005 8.972201970975585e-006 0.9999999998107528 1.726250358513736e-005 8.972201970975585e-006 0.9999999998107528 -1.726250358513736e-005 -8.972201970975585e-006 -0.9999999998107528 -1.726250358513736e-005 -8.972201970975585e-006 -0.9999999998107528 -1.726250358513736e-005 -8.972201970975585e-006 -0.9999999998107528 -1.726250358513736e-005 -8.972201970975585e-006 -0.9999999998107528 2.464620023401496e-010 -0.9999999999597752 8.969393824172789e-006 2.464620023401496e-010 -0.9999999999597752 8.969393824172789e-006 2.464620023401496e-010 -0.9999999999597752 8.969393824172789e-006 2.464620023401496e-010 -0.9999999999597752 8.969393824172789e-006 2.464620023401496e-010 -0.9999999999597752 8.969393824172789e-006 -2.464620023401496e-010 0.9999999999597752 -8.969393824172789e-006 -2.464620023401496e-010 0.9999999999597752 -8.969393824172789e-006 -2.464620023401496e-010 0.9999999999597752 -8.969393824172789e-006 -2.464620023401496e-010 0.9999999999597752 -8.969393824172789e-006 -2.464620023401496e-010 0.9999999999597752 -8.969393824172789e-006 1.726250358512252e-005 8.972201969089473e-006 0.9999999998107528 1.726250358512252e-005 8.972201969089473e-006 0.9999999998107528 1.726250358512252e-005 8.972201969089473e-006 0.9999999998107528 1.726250358512252e-005 8.972201969089473e-006 0.9999999998107528 -1.726250358512252e-005 -8.972201969089473e-006 -0.9999999998107528 -1.726250358512252e-005 -8.972201969089473e-006 -0.9999999998107528 -1.726250358512252e-005 -8.972201969089473e-006 -0.9999999998107528 -1.726250358512252e-005 -8.972201969089473e-006 -0.9999999998107528 2.464479636346661e-010 -0.9999999999597751 8.969393870482124e-006 2.464479636346661e-010 -0.9999999999597751 8.969393870482124e-006 2.464479636346661e-010 -0.9999999999597751 8.969393870482124e-006 2.464479636346661e-010 -0.9999999999597751 8.969393870482124e-006 2.464479636346661e-010 -0.9999999999597751 8.969393870482124e-006 -2.464479636346661e-010 0.9999999999597751 -8.969393870482124e-006 -2.464479636346661e-010 0.9999999999597751 -8.969393870482124e-006 -2.464479636346661e-010 0.9999999999597751 -8.969393870482124e-006 -2.464479636346661e-010 0.9999999999597751 -8.969393870482124e-006 -2.464479636346661e-010 0.9999999999597751 -8.969393870482124e-006 1.726250358512083e-005 8.972201971064869e-006 0.9999999998107528 1.726250358512083e-005 8.972201971064869e-006 0.9999999998107528 1.726250358512083e-005 8.972201971064869e-006 0.9999999998107528 1.726250358512083e-005 8.972201971064869e-006 0.9999999998107528 -1.726250358512083e-005 -8.972201971064869e-006 -0.9999999998107528 -1.726250358512083e-005 -8.972201971064869e-006 -0.9999999998107528 -1.726250358512083e-005 -8.972201971064869e-006 -0.9999999998107528 -1.726250358512083e-005 -8.972201971064869e-006 -0.9999999998107528 2.464688429453018e-010 -0.9999999999597751 8.96939530240566e-006 2.464688429453018e-010 -0.9999999999597751 8.96939530240566e-006 2.464688429453018e-010 -0.9999999999597751 8.96939530240566e-006 2.464688429453018e-010 -0.9999999999597751 8.96939530240566e-006 2.464688429453018e-010 -0.9999999999597751 8.96939530240566e-006 -2.464688429453018e-010 0.9999999999597751 -8.96939530240566e-006 -2.464688429453018e-010 0.9999999999597751 -8.96939530240566e-006 -2.464688429453018e-010 0.9999999999597751 -8.96939530240566e-006 -2.464688429453018e-010 0.9999999999597751 -8.96939530240566e-006 -2.464688429453018e-010 0.9999999999597751 -8.96939530240566e-006 1.726250358512679e-005 8.972201968950133e-006 0.9999999998107528 1.726250358512679e-005 8.972201968950133e-006 0.9999999998107528 1.726250358512679e-005 8.972201968950133e-006 0.9999999998107528 1.726250358512679e-005 8.972201968950133e-006 0.9999999998107528 -1.726250358512679e-005 -8.972201968950133e-006 -0.9999999998107528 -1.726250358512679e-005 -8.972201968950133e-006 -0.9999999998107528 -1.726250358512679e-005 -8.972201968950133e-006 -0.9999999998107528 -1.726250358512679e-005 -8.972201968950133e-006 -0.9999999998107528 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -1.593098187365111e-005 -0.3420117125642387 0.9396956891542497 -1.593098187365111e-005 -0.3420117125642387 0.9396956891542497 -1.593098187365111e-005 -0.3420117125642387 0.9396956891542497 -1.593098187365111e-005 -0.3420117125642387 0.9396956891542497 1.593098187365111e-005 0.3420117125642387 -0.9396956891542497 1.593098187365111e-005 0.3420117125642387 -0.9396956891542497 1.593098187365111e-005 0.3420117125642387 -0.9396956891542497 1.593098187365111e-005 0.3420117125642387 -0.9396956891542497 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 0.9999999998509969 -6.747884073870952e-009 -1.726286943319848e-005 0.9999999998509969 -6.747884073870952e-009 -1.726286943319848e-005 0.9999999998509969 -6.747884073870952e-009 -1.726286943319848e-005 0.9999999998509969 -6.747884073870952e-009 -1.726286943319848e-005 -0.9999999998509969 6.747884073870952e-009 1.726286943319848e-005 -0.9999999998509969 6.747884073870952e-009 1.726286943319848e-005 -0.9999999998509969 6.747884073870952e-009 1.726286943319848e-005 -0.9999999998509969 6.747884073870952e-009 1.726286943319848e-005 -0.9999999998509933 6.74788601676116e-009 1.726306804625563e-005 -0.9999999998509933 6.74788601676116e-009 1.726306804625563e-005 -0.9999999998509933 6.74788601676116e-009 1.726306804625563e-005 -0.9999999998509933 6.74788601676116e-009 1.726306804625563e-005 0.9999999998509933 -6.74788601676116e-009 -1.726306804625563e-005 0.9999999998509933 -6.74788601676116e-009 -1.726306804625563e-005 0.9999999998509933 -6.74788601676116e-009 -1.726306804625563e-005 0.9999999998509933 -6.74788601676116e-009 -1.726306804625563e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 0.9999999998562388 -5.888675717409531e-009 1.695648682850193e-005 0.9999999998562388 -5.888675717409531e-009 1.695648682850193e-005 0.9999999998562388 -5.888675717409531e-009 1.695648682850193e-005 0.9999999998562388 -5.888675717409531e-009 1.695648682850193e-005 -0.9999999998562388 5.888675717409531e-009 -1.695648682850193e-005 -0.9999999998562388 5.888675717409531e-009 -1.695648682850193e-005 -0.9999999998562388 5.888675717409531e-009 -1.695648682850193e-005 -0.9999999998562388 5.888675717409531e-009 -1.695648682850193e-005 -0.9999999998509929 6.74792165492024e-009 1.726309771268819e-005 -0.9999999998509929 6.74792165492024e-009 1.726309771268819e-005 -0.9999999998509929 6.74792165492024e-009 1.726309771268819e-005 -0.9999999998509929 6.74792165492024e-009 1.726309771268819e-005 0.9999999998509929 -6.74792165492024e-009 -1.726309771268819e-005 0.9999999998509929 -6.74792165492024e-009 -1.726309771268819e-005 0.9999999998509929 -6.74792165492024e-009 -1.726309771268819e-005 0.9999999998509929 -6.74792165492024e-009 -1.726309771268819e-005 -0.9999999998509934 6.747753900221231e-009 1.726306740497475e-005 -0.9999999998509934 6.747753900221231e-009 1.726306740497475e-005 -0.9999999998509934 6.747753900221231e-009 1.726306740497475e-005 -0.9999999998509934 6.747753900221231e-009 1.726306740497475e-005 0.9999999998509934 -6.747753900221231e-009 -1.726306740497475e-005 0.9999999998509934 -6.747753900221231e-009 -1.726306740497475e-005 0.9999999998509934 -6.747753900221231e-009 -1.726306740497475e-005 0.9999999998509934 -6.747753900221231e-009 -1.726306740497475e-005 -0.9999999998509928 6.747636383114061e-009 1.726309767014334e-005 -0.9999999998509928 6.747636383114061e-009 1.726309767014334e-005 -0.9999999998509928 6.747636383114061e-009 1.726309767014334e-005 -0.9999999998509928 6.747636383114061e-009 1.726309767014334e-005 0.9999999998509928 -6.747636383114061e-009 -1.726309767014334e-005 0.9999999998509928 -6.747636383114061e-009 -1.726309767014334e-005 0.9999999998509928 -6.747636383114061e-009 -1.726309767014334e-005 0.9999999998509928 -6.747636383114061e-009 -1.726309767014334e-005 -0.9999999998509936 6.748101177983341e-009 1.72630537979769e-005 -0.9999999998509936 6.748101177983341e-009 1.72630537979769e-005 -0.9999999998509936 6.748101177983341e-009 1.72630537979769e-005 -0.9999999998509936 6.748101177983341e-009 1.72630537979769e-005 0.9999999998509936 -6.748101177983341e-009 -1.72630537979769e-005 0.9999999998509936 -6.748101177983341e-009 -1.72630537979769e-005 0.9999999998509936 -6.748101177983341e-009 -1.72630537979769e-005 0.9999999998509936 -6.748101177983341e-009 -1.72630537979769e-005 -0.9999999998509942 6.747697667425052e-009 1.72630218206344e-005 -0.9999999998509942 6.747697667425052e-009 1.72630218206344e-005 -0.9999999998509942 6.747697667425052e-009 1.72630218206344e-005 -0.9999999998509942 6.747697667425052e-009 1.72630218206344e-005 0.9999999998509942 -6.747697667425052e-009 -1.72630218206344e-005 0.9999999998509942 -6.747697667425052e-009 -1.72630218206344e-005 0.9999999998509942 -6.747697667425052e-009 -1.72630218206344e-005 0.9999999998509942 -6.747697667425052e-009 -1.72630218206344e-005 -0.9999999998509939 6.747505432308333e-009 1.726303543108802e-005 -0.9999999998509939 6.747505432308333e-009 1.726303543108802e-005 -0.9999999998509939 6.747505432308333e-009 1.726303543108802e-005 -0.9999999998509939 6.747505432308333e-009 1.726303543108802e-005 0.9999999998509939 -6.747505432308333e-009 -1.726303543108802e-005 0.9999999998509939 -6.747505432308333e-009 -1.726303543108802e-005 0.9999999998509939 -6.747505432308333e-009 -1.726303543108802e-005 0.9999999998509939 -6.747505432308333e-009 -1.726303543108802e-005 -0.9999999998509938 6.747799585898704e-009 1.726304433221974e-005 -0.9999999998509938 6.747799585898704e-009 1.726304433221974e-005 -0.9999999998509938 6.747799585898704e-009 1.726304433221974e-005 -0.9999999998509938 6.747799585898704e-009 1.726304433221974e-005 0.9999999998509938 -6.747799585898704e-009 -1.726304433221974e-005 0.9999999998509938 -6.747799585898704e-009 -1.726304433221974e-005 0.9999999998509938 -6.747799585898704e-009 -1.726304433221974e-005 0.9999999998509938 -6.747799585898704e-009 -1.726304433221974e-005 -0.9999999998509929 6.747605796469737e-009 1.726308842192956e-005 -0.9999999998509929 6.747605796469737e-009 1.726308842192956e-005 -0.9999999998509929 6.747605796469737e-009 1.726308842192956e-005 -0.9999999998509929 6.747605796469737e-009 1.726308842192956e-005 0.9999999998509929 -6.747605796469737e-009 -1.726308842192956e-005 0.9999999998509929 -6.747605796469737e-009 -1.726308842192956e-005 0.9999999998509929 -6.747605796469737e-009 -1.726308842192956e-005 0.9999999998509929 -6.747605796469737e-009 -1.726308842192956e-005 -0.9999999998509932 6.747741077145292e-009 1.726307234352955e-005 -0.9999999998509932 6.747741077145292e-009 1.726307234352955e-005 -0.9999999998509932 6.747741077145292e-009 1.726307234352955e-005 -0.9999999998509932 6.747741077145292e-009 1.726307234352955e-005 0.9999999998509932 -6.747741077145292e-009 -1.726307234352955e-005 0.9999999998509932 -6.747741077145292e-009 -1.726307234352955e-005 0.9999999998509932 -6.747741077145292e-009 -1.726307234352955e-005 0.9999999998509932 -6.747741077145292e-009 -1.726307234352955e-005 3.965314657853132e-014 -0.9999999999597223 8.975278432058015e-006 3.965314657853132e-014 -0.9999999999597223 8.975278432058015e-006 3.965314657853132e-014 -0.9999999999597223 8.975278432058015e-006 -3.965314657853132e-014 0.9999999999597223 -8.975278432058015e-006 -3.965314657853132e-014 0.9999999999597223 -8.975278432058015e-006 -3.965314657853132e-014 0.9999999999597223 -8.975278432058015e-006 -0.9999983472753009 3.585268170723973e-008 0.001818088739753064 -0.9999983472753009 3.585268170723973e-008 0.001818088739753064 -0.9999983472753009 3.585268170723973e-008 0.001818088739753064 0.9999983472753009 -3.585268170723973e-008 -0.001818088739753064 0.9999983472753009 -3.585268170723973e-008 -0.001818088739753064 0.9999983472753009 -3.585268170723973e-008 -0.001818088739753064 0.9999999476103449 -5.122180537122829e-009 0.0003236963196724279 0.9999999476103449 -5.122180537122829e-009 0.0003236963196724279 0.9999999476103449 -5.122180537122829e-009 0.0003236963196724279 0.9999999476103449 -5.122180537122829e-009 0.0003236963196724279 -0.9999999476103449 5.122180537122829e-009 -0.0003236963196724279 -0.9999999476103449 5.122180537122829e-009 -0.0003236963196724279 -0.9999999476103449 5.122180537122829e-009 -0.0003236963196724279 -0.9999999476103449 5.122180537122829e-009 -0.0003236963196724279 -0.9999999998510034 6.748060543820882e-009 1.726248368100107e-005 -0.9999999998510034 6.748060543820882e-009 1.726248368100107e-005 -0.9999999998510034 6.748060543820882e-009 1.726248368100107e-005 -0.9999999998510034 6.748060543820882e-009 1.726248368100107e-005 0.9999999998510034 -6.748060543820882e-009 -1.726248368100107e-005 0.9999999998510034 -6.748060543820882e-009 -1.726248368100107e-005 0.9999999998510034 -6.748060543820882e-009 -1.726248368100107e-005 0.9999999998510034 -6.748060543820882e-009 -1.726248368100107e-005 0.9999999998510035 -6.748060599332033e-009 -1.726248356632988e-005 0.9999999998510035 -6.748060599332033e-009 -1.726248356632988e-005 0.9999999998510035 -6.748060599332033e-009 -1.726248356632988e-005 0.9999999998510035 -6.748060599332033e-009 -1.726248356632988e-005 -0.9999999998510035 6.748060599332033e-009 1.726248356632988e-005 -0.9999999998510035 6.748060599332033e-009 1.726248356632988e-005 -0.9999999998510035 6.748060599332033e-009 1.726248356632988e-005 -0.9999999998510035 6.748060599332033e-009 1.726248356632988e-005 -0.9999999998510043 6.747803582701856e-009 1.726242835685782e-005 -0.9999999998510043 6.747803582701856e-009 1.726242835685782e-005 -0.9999999998510043 6.747803582701856e-009 1.726242835685782e-005 -0.9999999998510043 6.747803582701856e-009 1.726242835685782e-005 0.9999999998510043 -6.747803582701856e-009 -1.726242835685782e-005 0.9999999998510043 -6.747803582701856e-009 -1.726242835685782e-005 0.9999999998510043 -6.747803582701856e-009 -1.726242835685782e-005 0.9999999998510043 -6.747803582701856e-009 -1.726242835685782e-005 0.9999999998510043 -6.747803582701857e-009 -1.726242824218714e-005 0.9999999998510043 -6.747803582701857e-009 -1.726242824218714e-005 0.9999999998510043 -6.747803582701857e-009 -1.726242824218714e-005 0.9999999998510043 -6.747803582701857e-009 -1.726242824218714e-005 -0.9999999998510043 6.747803582701857e-009 1.726242824218714e-005 -0.9999999998510043 6.747803582701857e-009 1.726242824218714e-005 -0.9999999998510043 6.747803582701857e-009 1.726242824218714e-005 -0.9999999998510043 6.747803582701857e-009 1.726242824218714e-005 -0.9999999998510044 6.747689562797231e-009 1.726241928588764e-005 -0.9999999998510044 6.747689562797231e-009 1.726241928588764e-005 -0.9999999998510044 6.747689562797231e-009 1.726241928588764e-005 -0.9999999998510044 6.747689562797231e-009 1.726241928588764e-005 0.9999999998510044 -6.747689562797231e-009 -1.726241928588764e-005 0.9999999998510044 -6.747689562797231e-009 -1.726241928588764e-005 0.9999999998510044 -6.747689562797231e-009 -1.726241928588764e-005 0.9999999998510044 -6.747689562797231e-009 -1.726241928588764e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426067e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426067e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426067e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426067e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426067e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426067e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426067e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426067e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426064e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426064e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426064e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426064e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426064e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426064e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426064e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426064e-005 -0.9999999998510041 6.747809855461941e-009 1.726243971068499e-005 -0.9999999998510041 6.747809855461941e-009 1.726243971068499e-005 -0.9999999998510041 6.747809855461941e-009 1.726243971068499e-005 -0.9999999998510041 6.747809855461941e-009 1.726243971068499e-005 0.9999999998510041 -6.747809855461941e-009 -1.726243971068499e-005 0.9999999998510041 -6.747809855461941e-009 -1.726243971068499e-005 0.9999999998510041 -6.747809855461941e-009 -1.726243971068499e-005 0.9999999998510041 -6.747809855461941e-009 -1.726243971068499e-005 0.9999999998510041 -6.747809910973092e-009 -1.726243985402404e-005 0.9999999998510041 -6.747809910973092e-009 -1.726243985402404e-005 0.9999999998510041 -6.747809910973092e-009 -1.726243985402404e-005 0.9999999998510041 -6.747809910973092e-009 -1.726243985402404e-005 -0.9999999998510041 6.747809910973092e-009 1.726243985402404e-005 -0.9999999998510041 6.747809910973092e-009 1.726243985402404e-005 -0.9999999998510041 6.747809910973092e-009 1.726243985402404e-005 -0.9999999998510041 6.747809910973092e-009 1.726243985402404e-005 -0.999999999851004 6.747547176694311e-009 1.726244673851708e-005 -0.999999999851004 6.747547176694311e-009 1.726244673851708e-005 -0.999999999851004 6.747547176694311e-009 1.726244673851708e-005 -0.999999999851004 6.747547176694311e-009 1.726244673851708e-005 0.999999999851004 -6.747547176694311e-009 -1.726244673851708e-005 0.999999999851004 -6.747547176694311e-009 -1.726244673851708e-005 0.999999999851004 -6.747547176694311e-009 -1.726244673851708e-005 0.999999999851004 -6.747547176694311e-009 -1.726244673851708e-005 0.999999999851004 -6.747547176694311e-009 -1.726244668118191e-005 0.999999999851004 -6.747547176694311e-009 -1.726244668118191e-005 0.999999999851004 -6.747547176694311e-009 -1.726244668118191e-005 0.999999999851004 -6.747547176694311e-009 -1.726244668118191e-005 -0.999999999851004 6.747547176694311e-009 1.726244668118191e-005 -0.999999999851004 6.747547176694311e-009 1.726244668118191e-005 -0.999999999851004 6.747547176694311e-009 1.726244668118191e-005 -0.999999999851004 6.747547176694311e-009 1.726244668118191e-005 -0.999999999851004 6.748033454379095e-009 1.726245348042386e-005 -0.999999999851004 6.748033454379095e-009 1.726245348042386e-005 -0.999999999851004 6.748033454379095e-009 1.726245348042386e-005 -0.999999999851004 6.748033454379095e-009 1.726245348042386e-005 0.999999999851004 -6.748033454379095e-009 -1.726245348042386e-005 0.999999999851004 -6.748033454379095e-009 -1.726245348042386e-005 0.999999999851004 -6.748033454379095e-009 -1.726245348042386e-005 0.999999999851004 -6.748033454379095e-009 -1.726245348042386e-005 0.999999999851004 -6.748033454379095e-009 -1.726245345175599e-005 0.999999999851004 -6.748033454379095e-009 -1.726245345175599e-005 0.999999999851004 -6.748033454379095e-009 -1.726245345175599e-005 0.999999999851004 -6.748033454379095e-009 -1.726245345175599e-005 -0.999999999851004 6.748033454379095e-009 1.726245345175599e-005 -0.999999999851004 6.748033454379095e-009 1.726245345175599e-005 -0.999999999851004 6.748033454379095e-009 1.726245345175599e-005 -0.999999999851004 6.748033454379095e-009 1.726245345175599e-005 -0.999999999851003 6.747503877996321e-009 1.726251137000626e-005 -0.999999999851003 6.747503877996321e-009 1.726251137000626e-005 -0.999999999851003 6.747503877996321e-009 1.726251137000626e-005 -0.999999999851003 6.747503877996321e-009 1.726251137000626e-005 0.999999999851003 -6.747503877996321e-009 -1.726251137000626e-005 0.999999999851003 -6.747503877996321e-009 -1.726251137000626e-005 0.999999999851003 -6.747503877996321e-009 -1.726251137000626e-005 0.999999999851003 -6.747503877996321e-009 -1.726251137000626e-005 0.9999999998510029 -6.747503933507474e-009 -1.726251151334599e-005 0.9999999998510029 -6.747503933507474e-009 -1.726251151334599e-005 0.9999999998510029 -6.747503933507474e-009 -1.726251151334599e-005 0.9999999998510029 -6.747503933507474e-009 -1.726251151334599e-005 -0.9999999998510029 6.747503933507474e-009 1.726251151334599e-005 -0.9999999998510029 6.747503933507474e-009 1.726251151334599e-005 -0.9999999998510029 6.747503933507474e-009 1.726251151334599e-005 -0.9999999998510029 6.747503933507474e-009 1.726251151334599e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181842e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181842e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181842e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181842e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181842e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181842e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181842e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181842e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181841e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181841e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181841e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181841e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181841e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181841e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181841e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181841e-005 -0.9999999998510036 6.747835557124947e-009 1.726247222972443e-005 -0.9999999998510036 6.747835557124947e-009 1.726247222972443e-005 -0.9999999998510036 6.747835557124947e-009 1.726247222972443e-005 -0.9999999998510036 6.747835557124947e-009 1.726247222972443e-005 0.9999999998510036 -6.747835557124947e-009 -1.726247222972443e-005 0.9999999998510036 -6.747835557124947e-009 -1.726247222972443e-005 0.9999999998510036 -6.747835557124947e-009 -1.726247222972443e-005 0.9999999998510036 -6.747835557124947e-009 -1.726247222972443e-005 -0.9999999998510026 6.747841774373863e-009 1.726252279979972e-005 -0.9999999998510026 6.747841774373863e-009 1.726252279979972e-005 -0.9999999998510026 6.747841774373863e-009 1.726252279979972e-005 -0.9999999998510026 6.747841774373863e-009 1.726252279979972e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252279979972e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252279979972e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252279979972e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252279979972e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252277113206e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252277113206e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252277113206e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252277113206e-005 -0.9999999998510026 6.747841774373863e-009 1.726252277113206e-005 -0.9999999998510026 6.747841774373863e-009 1.726252277113206e-005 -0.9999999998510026 6.747841774373863e-009 1.726252277113206e-005 -0.9999999998510026 6.747841774373863e-009 1.726252277113206e-005 -0.9999999998510041 -6.132825092069947e-009 1.726243735044373e-005 -0.9999999998510041 -6.132825092069947e-009 1.726243735044373e-005 -0.9999999998510041 -6.132825092069947e-009 1.726243735044373e-005 -0.9999999998510041 -6.132825092069947e-009 1.726243735044373e-005 0.9999999998510041 6.132825092069947e-009 -1.726243735044373e-005 0.9999999998510041 6.132825092069947e-009 -1.726243735044373e-005 0.9999999998510041 6.132825092069947e-009 -1.726243735044373e-005 0.9999999998510041 6.132825092069947e-009 -1.726243735044373e-005 0.9999999998510041 6.132824925536493e-009 -1.726243760845345e-005 0.9999999998510041 6.132824925536493e-009 -1.726243760845345e-005 0.9999999998510041 6.132824925536493e-009 -1.726243760845345e-005 0.9999999998510041 6.132824925536493e-009 -1.726243760845345e-005 -0.9999999998510041 -6.132824925536493e-009 1.726243760845345e-005 -0.9999999998510041 -6.132824925536493e-009 1.726243760845345e-005 -0.9999999998510041 -6.132824925536493e-009 1.726243760845345e-005 -0.9999999998510041 -6.132824925536493e-009 1.726243760845345e-005 -0.999999999851004 6.747727921002717e-009 1.726245529794614e-005 -0.999999999851004 6.747727921002717e-009 1.726245529794614e-005 -0.999999999851004 6.747727921002717e-009 1.726245529794614e-005 -0.999999999851004 6.747727921002717e-009 1.726245529794614e-005 0.999999999851004 -6.747727921002717e-009 -1.726245529794614e-005 0.999999999851004 -6.747727921002717e-009 -1.726245529794614e-005 0.999999999851004 -6.747727921002717e-009 -1.726245529794614e-005 0.999999999851004 -6.747727921002717e-009 -1.726245529794614e-005 -0.9999999998510039 6.74777443934745e-009 1.726245105104819e-005 -0.9999999998510039 6.74777443934745e-009 1.726245105104819e-005 -0.9999999998510039 6.74777443934745e-009 1.726245105104819e-005 -0.9999999998510039 6.74777443934745e-009 1.726245105104819e-005 0.9999999998510039 -6.74777443934745e-009 -1.726245105104819e-005 0.9999999998510039 -6.74777443934745e-009 -1.726245105104819e-005 0.9999999998510039 -6.74777443934745e-009 -1.726245105104819e-005 0.9999999998510039 -6.74777443934745e-009 -1.726245105104819e-005 0.9999999998510041 -6.747772274412552e-009 -1.726245093637644e-005 0.9999999998510041 -6.747772274412552e-009 -1.726245093637644e-005 0.9999999998510041 -6.747772274412552e-009 -1.726245093637644e-005 0.9999999998510041 -6.747772274412552e-009 -1.726245093637644e-005 -0.9999999998510041 6.747772274412552e-009 1.726245093637644e-005 -0.9999999998510041 6.747772274412552e-009 1.726245093637644e-005 -0.9999999998510041 6.747772274412552e-009 1.726245093637644e-005 -0.9999999998510041 6.747772274412552e-009 1.726245093637644e-005 -0.9999999998510033 6.747865089057396e-009 1.726248547798955e-005 -0.9999999998510033 6.747865089057396e-009 1.726248547798955e-005 -0.9999999998510033 6.747865089057396e-009 1.726248547798955e-005 -0.9999999998510033 6.747865089057396e-009 1.726248547798955e-005 0.9999999998510033 -6.747865089057396e-009 -1.726248547798955e-005 0.9999999998510033 -6.747865089057396e-009 -1.726248547798955e-005 0.9999999998510033 -6.747865089057396e-009 -1.726248547798955e-005 0.9999999998510033 -6.747865089057396e-009 -1.726248547798955e-005 0.9999999998510034 -6.747864700479337e-009 -1.726248544932199e-005 0.9999999998510034 -6.747864700479337e-009 -1.726248544932199e-005 0.9999999998510034 -6.747864700479337e-009 -1.726248544932199e-005 0.9999999998510034 -6.747864700479337e-009 -1.726248544932199e-005 -0.9999999998510034 6.747864700479337e-009 1.726248544932199e-005 -0.9999999998510034 6.747864700479337e-009 1.726248544932199e-005 -0.9999999998510034 6.747864700479337e-009 1.726248544932199e-005 -0.9999999998510034 6.747864700479337e-009 1.726248544932199e-005 -0.9999999998510041 6.74771259992498e-009 1.726244611842134e-005 -0.9999999998510041 6.74771259992498e-009 1.726244611842134e-005 -0.9999999998510041 6.74771259992498e-009 1.726244611842134e-005 -0.9999999998510041 6.74771259992498e-009 1.726244611842134e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244611842134e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244611842134e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244611842134e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244611842134e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244603241781e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244603241781e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244603241781e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244603241781e-005 -0.9999999998510041 6.74771259992498e-009 1.726244603241781e-005 -0.9999999998510041 6.74771259992498e-009 1.726244603241781e-005 -0.9999999998510041 6.74771259992498e-009 1.726244603241781e-005 -0.9999999998510041 6.74771259992498e-009 1.726244603241781e-005 -0.9999999998510039 6.747786207711508e-009 1.726245795478253e-005 -0.9999999998510039 6.747786207711508e-009 1.726245795478253e-005 -0.9999999998510039 6.747786207711508e-009 1.726245795478253e-005 -0.9999999998510039 6.747786207711508e-009 1.726245795478253e-005 0.9999999998510039 -6.747786207711508e-009 -1.726245795478253e-005 0.9999999998510039 -6.747786207711508e-009 -1.726245795478253e-005 0.9999999998510039 -6.747786207711508e-009 -1.726245795478253e-005 0.9999999998510039 -6.747786207711508e-009 -1.726245795478253e-005 -0.9999999998510035 6.747573155913077e-009 1.726247131866933e-005 -0.9999999998510035 6.747573155913077e-009 1.726247131866933e-005 -0.9999999998510035 6.747573155913077e-009 1.726247131866933e-005 -0.9999999998510035 6.747573155913077e-009 1.726247131866933e-005 0.9999999998510035 -6.747573155913077e-009 -1.726247131866933e-005 0.9999999998510035 -6.747573155913077e-009 -1.726247131866933e-005 0.9999999998510035 -6.747573155913077e-009 -1.726247131866933e-005 0.9999999998510035 -6.747573155913077e-009 -1.726247131866933e-005 0.9999999998510036 -6.747573100401925e-009 -1.726247149067627e-005 0.9999999998510036 -6.747573100401925e-009 -1.726247149067627e-005 0.9999999998510036 -6.747573100401925e-009 -1.726247149067627e-005 0.9999999998510036 -6.747573100401925e-009 -1.726247149067627e-005 -0.9999999998510036 6.747573100401925e-009 1.726247149067627e-005 -0.9999999998510036 6.747573100401925e-009 1.726247149067627e-005 -0.9999999998510036 6.747573100401925e-009 1.726247149067627e-005 -0.9999999998510036 6.747573100401925e-009 1.726247149067627e-005 -0.9999999998510034 6.747796810341382e-009 1.726248321214166e-005 -0.9999999998510034 6.747796810341382e-009 1.726248321214166e-005 -0.9999999998510034 6.747796810341382e-009 1.726248321214166e-005 -0.9999999998510034 6.747796810341382e-009 1.726248321214166e-005 0.9999999998510034 -6.747796810341382e-009 -1.726248321214166e-005 0.9999999998510034 -6.747796810341382e-009 -1.726248321214166e-005 0.9999999998510034 -6.747796810341382e-009 -1.726248321214166e-005 0.9999999998510034 -6.747796810341382e-009 -1.726248321214166e-005 0.9999999998510026 -6.747987879723901e-009 -1.726252481077155e-005 0.9999999998510026 -6.747987879723901e-009 -1.726252481077155e-005 0.9999999998510026 -6.747987879723901e-009 -1.726252481077155e-005 0.9999999998510026 -6.747987879723901e-009 -1.726252481077155e-005 -0.9999999998510026 6.747987879723901e-009 1.726252481077155e-005 -0.9999999998510026 6.747987879723901e-009 1.726252481077155e-005 -0.9999999998510026 6.747987879723901e-009 1.726252481077155e-005 -0.9999999998510026 6.747987879723901e-009 1.726252481077155e-005 0.9999999998510039 -6.747628111952802e-009 -1.726245552222103e-005 0.9999999998510039 -6.747628111952802e-009 -1.726245552222103e-005 0.9999999998510039 -6.747628111952802e-009 -1.726245552222103e-005 0.9999999998510039 -6.747628111952802e-009 -1.726245552222103e-005 -0.9999999998510039 6.747628111952802e-009 1.726245552222103e-005 -0.9999999998510039 6.747628111952802e-009 1.726245552222103e-005 -0.9999999998510039 6.747628111952802e-009 1.726245552222103e-005 -0.9999999998510039 6.747628111952802e-009 1.726245552222103e-005 0.9999999998510039 -6.747952075031388e-009 -1.726245279867705e-005 0.9999999998510039 -6.747952075031388e-009 -1.726245279867705e-005 0.9999999998510039 -6.747952075031388e-009 -1.726245279867705e-005 0.9999999998510039 -6.747952075031388e-009 -1.726245279867705e-005 -0.9999999998510039 6.747952075031388e-009 1.726245279867705e-005 -0.9999999998510039 6.747952075031388e-009 1.726245279867705e-005 -0.9999999998510039 6.747952075031388e-009 1.726245279867705e-005 -0.9999999998510039 6.747952075031388e-009 1.726245279867705e-005 0.9999999998510035 -6.747732306383653e-009 -1.726247862961352e-005 0.9999999998510035 -6.747732306383653e-009 -1.726247862961352e-005 0.9999999998510035 -6.747732306383653e-009 -1.726247862961352e-005 0.9999999998510035 -6.747732306383653e-009 -1.726247862961352e-005 -0.9999999998510035 6.747732306383653e-009 1.726247862961352e-005 -0.9999999998510035 6.747732306383653e-009 1.726247862961352e-005 -0.9999999998510035 6.747732306383653e-009 1.726247862961352e-005 -0.9999999998510035 6.747732306383653e-009 1.726247862961352e-005 -1.594690650249079e-005 -0.3420117124934623 0.9396956891797396 -1.594690650249079e-005 -0.3420117124934623 0.9396956891797396 -1.594690650249079e-005 -0.3420117124934623 0.9396956891797396 -1.594690650249079e-005 -0.3420117124934623 0.9396956891797396 1.594690650249079e-005 0.3420117124934623 -0.9396956891797396 1.594690650249079e-005 0.3420117124934623 -0.9396956891797396 1.594690650249079e-005 0.3420117124934623 -0.9396956891797396 1.594690650249079e-005 0.3420117124934623 -0.9396956891797396 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 -0.0001840461841547816 -6.439700957874798e-005 -0.9999999809900135 -0.0001840461841547816 -6.439700957874798e-005 -0.9999999809900135 -0.0001840461841547816 -6.439700957874798e-005 -0.9999999809900135 -0.0001840461841547816 -6.439700957874798e-005 -0.9999999809900135 -0.0001840461841547816 -6.439700957874798e-005 -0.9999999809900135 0.0001840461841547816 6.439700957874798e-005 0.9999999809900135 0.0001840461841547816 6.439700957874798e-005 0.9999999809900135 0.0001840461841547816 6.439700957874798e-005 0.9999999809900135 0.0001840461841547816 6.439700957874798e-005 0.9999999809900135 0.0001840461841547816 6.439700957874798e-005 0.9999999809900135 -1.593825178472879e-005 -0.3420117129297029 0.9396956890211121 -1.593825178472879e-005 -0.3420117129297029 0.9396956890211121 -1.593825178472879e-005 -0.3420117129297029 0.9396956890211121 -1.593825178472879e-005 -0.3420117129297029 0.9396956890211121 1.593825178472879e-005 0.3420117129297029 -0.9396956890211121 1.593825178472879e-005 0.3420117129297029 -0.9396956890211121 1.593825178472879e-005 0.3420117129297029 -0.9396956890211121 1.593825178472879e-005 0.3420117129297029 -0.9396956890211121 -1.69657629720207e-005 8.97204516075339e-006 0.9999999998158328 -1.69657629720207e-005 8.97204516075339e-006 0.9999999998158328 -1.69657629720207e-005 8.97204516075339e-006 0.9999999998158328 -1.69657629720207e-005 8.97204516075339e-006 0.9999999998158328 1.69657629720207e-005 -8.97204516075339e-006 -0.9999999998158328 1.69657629720207e-005 -8.97204516075339e-006 -0.9999999998158328 1.69657629720207e-005 -8.97204516075339e-006 -0.9999999998158328 1.69657629720207e-005 -8.97204516075339e-006 -0.9999999998158328 1.695555674972735e-005 -6.304360896754815e-005 -0.9999999978690064 1.695555674972735e-005 -6.304360896754815e-005 -0.9999999978690064 1.695555674972735e-005 -6.304360896754815e-005 -0.9999999978690064 1.695555674972735e-005 -6.304360896754815e-005 -0.9999999978690064 1.695555674972735e-005 -6.304360896754815e-005 -0.9999999978690064 -1.695555674972735e-005 6.304360896754815e-005 0.9999999978690064 -1.695555674972735e-005 6.304360896754815e-005 0.9999999978690064 -1.695555674972735e-005 6.304360896754815e-005 0.9999999978690064 -1.695555674972735e-005 6.304360896754815e-005 0.9999999978690064 -1.695555674972735e-005 6.304360896754815e-005 0.9999999978690064 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 1.69570154602588e-005 -8.96579294421756e-006 -0.9999999998160373 1.69570154602588e-005 -8.96579294421756e-006 -0.9999999998160373 1.69570154602588e-005 -8.96579294421756e-006 -0.9999999998160373 1.69570154602588e-005 -8.96579294421756e-006 -0.9999999998160373 1.69570154602588e-005 -8.96579294421756e-006 -0.9999999998160373 -1.69570154602588e-005 8.96579294421756e-006 0.9999999998160373 -1.69570154602588e-005 8.96579294421756e-006 0.9999999998160373 -1.69570154602588e-005 8.96579294421756e-006 0.9999999998160373 -1.69570154602588e-005 8.96579294421756e-006 0.9999999998160373 -1.69570154602588e-005 8.96579294421756e-006 0.9999999998160373 1.593907939474626e-005 0.3420117131069282 -0.9396956889565953 1.593907939474626e-005 0.3420117131069282 -0.9396956889565953 1.593907939474626e-005 0.3420117131069282 -0.9396956889565953 1.593907939474626e-005 0.3420117131069282 -0.9396956889565953 -1.593907939474626e-005 -0.3420117131069282 0.9396956889565953 -1.593907939474626e-005 -0.3420117131069282 0.9396956889565953 -1.593907939474626e-005 -0.3420117131069282 0.9396956889565953 -1.593907939474626e-005 -0.3420117131069282 0.9396956889565953 1.696679227514524e-005 -8.972202194845643e-006 -0.9999999998158139 1.696679227514524e-005 -8.972202194845643e-006 -0.9999999998158139 1.696679227514524e-005 -8.972202194845643e-006 -0.9999999998158139 1.696679227514524e-005 -8.972202194845643e-006 -0.9999999998158139 -1.696679227514524e-005 8.972202194845643e-006 0.9999999998158139 -1.696679227514524e-005 8.972202194845643e-006 0.9999999998158139 -1.696679227514524e-005 8.972202194845643e-006 0.9999999998158139 -1.696679227514524e-005 8.972202194845643e-006 0.9999999998158139 1.593866788461343e-005 0.3420117138390233 -0.9396956886901489 1.593866788461343e-005 0.3420117138390233 -0.9396956886901489 1.593866788461343e-005 0.3420117138390233 -0.9396956886901489 1.593866788461343e-005 0.3420117138390233 -0.9396956886901489 1.593866788461343e-005 0.3420117138390233 -0.9396956886901489 -1.593866788461343e-005 -0.3420117138390233 0.9396956886901489 -1.593866788461343e-005 -0.3420117138390233 0.9396956886901489 -1.593866788461343e-005 -0.3420117138390233 0.9396956886901489 -1.593866788461343e-005 -0.3420117138390233 0.9396956886901489 -1.593866788461343e-005 -0.3420117138390233 0.9396956886901489 -0.9999999900762957 7.857041953090821e-009 0.0001408808304329757 -0.9999999900762957 7.857041953090821e-009 0.0001408808304329757 -0.9999999900762957 7.857041953090821e-009 0.0001408808304329757 0.9999999900762957 -7.857041953090821e-009 -0.0001408808304329757 0.9999999900762957 -7.857041953090821e-009 -0.0001408808304329757 0.9999999900762957 -7.857041953090821e-009 -0.0001408808304329757 1.594552802150315e-005 0.3420117132242569 -0.9396956889137829 1.594552802150315e-005 0.3420117132242569 -0.9396956889137829 1.594552802150315e-005 0.3420117132242569 -0.9396956889137829 1.594552802150315e-005 0.3420117132242569 -0.9396956889137829 1.594552802150315e-005 0.3420117132242569 -0.9396956889137829 -1.594552802150315e-005 -0.3420117132242569 0.9396956889137829 -1.594552802150315e-005 -0.3420117132242569 0.9396956889137829 -1.594552802150315e-005 -0.3420117132242569 0.9396956889137829 -1.594552802150315e-005 -0.3420117132242569 0.9396956889137829 -1.594552802150315e-005 -0.3420117132242569 0.9396956889137829 -1.726250355988799e-005 -6.304320227228081e-005 -0.9999999978637805 -1.726250355988799e-005 -6.304320227228081e-005 -0.9999999978637805 -1.726250355988799e-005 -6.304320227228081e-005 -0.9999999978637805 -1.726250355988799e-005 -6.304320227228081e-005 -0.9999999978637805 1.726250355988799e-005 6.304320227228081e-005 0.9999999978637805 1.726250355988799e-005 6.304320227228081e-005 0.9999999978637805 1.726250355988799e-005 6.304320227228081e-005 0.9999999978637805 1.726250355988799e-005 6.304320227228081e-005 0.9999999978637805 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.999999999861555 9.094465608016736e-008 1.663977141347047e-005 0.999999999861555 9.094465608016736e-008 1.663977141347047e-005 0.999999999861555 9.094465608016736e-008 1.663977141347047e-005 -0.999999999861555 -9.094465608016736e-008 -1.663977141347047e-005 -0.999999999861555 -9.094465608016736e-008 -1.663977141347047e-005 -0.999999999861555 -9.094465608016736e-008 -1.663977141347047e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 1.592997444057336e-005 0.3419902888639281 -0.9397034862492547 1.592997444057336e-005 0.3419902888639281 -0.9397034862492547 1.592997444057336e-005 0.3419902888639281 -0.9397034862492547 1.592997444057336e-005 0.3419902888639281 -0.9397034862492547 1.592997444057336e-005 0.3419902888639281 -0.9397034862492547 -1.592997444057336e-005 -0.3419902888639281 0.9397034862492547 -1.592997444057336e-005 -0.3419902888639281 0.9397034862492547 -1.592997444057336e-005 -0.3419902888639281 0.9397034862492547 -1.592997444057336e-005 -0.3419902888639281 0.9397034862492547 -1.592997444057336e-005 -0.3419902888639281 0.9397034862492547 -0.9999999997925571 1.229147472863877e-006 -2.033162888228335e-005 -0.9999999997925571 1.229147472863877e-006 -2.033162888228335e-005 -0.9999999997925571 1.229147472863877e-006 -2.033162888228335e-005 0.9999999997925571 -1.229147472863877e-006 2.033162888228335e-005 0.9999999997925571 -1.229147472863877e-006 2.033162888228335e-005 0.9999999997925571 -1.229147472863877e-006 2.033162888228335e-005 0.9999999998522824 -1.039299766840868e-007 1.718792015359543e-005 0.9999999998522824 -1.039299766840868e-007 1.718792015359543e-005 0.9999999998522824 -1.039299766840868e-007 1.718792015359543e-005 0.9999999998522824 -1.039299766840868e-007 1.718792015359543e-005 -0.9999999998522824 1.039299766840868e-007 -1.718792015359543e-005 -0.9999999998522824 1.039299766840868e-007 -1.718792015359543e-005 -0.9999999998522824 1.039299766840868e-007 -1.718792015359543e-005 -0.9999999998522824 1.039299766840868e-007 -1.718792015359543e-005 -2.670386261448435e-005 0.9999999996032445 -8.967428000262958e-006 -2.670386261448435e-005 0.9999999996032445 -8.967428000262958e-006 -2.670386261448435e-005 0.9999999996032445 -8.967428000262958e-006 2.670386261448435e-005 -0.9999999996032445 8.967428000262958e-006 2.670386261448435e-005 -0.9999999996032445 8.967428000262958e-006 2.670386261448435e-005 -0.9999999996032445 8.967428000262958e-006 -1.145426847362377e-006 0.3420068401332684 -0.9396974626446243 -1.145426847362377e-006 0.3420068401332684 -0.9396974626446243 -1.145426847362377e-006 0.3420068401332684 -0.9396974626446243 -1.145426847362377e-006 0.3420068401332684 -0.9396974626446243 1.145426847362377e-006 -0.3420068401332684 0.9396974626446243 1.145426847362377e-006 -0.3420068401332684 0.9396974626446243 1.145426847362377e-006 -0.3420068401332684 0.9396974626446243 1.145426847362377e-006 -0.3420068401332684 0.9396974626446243 -1.622149256414784e-005 0.3420045132315082 -0.9396983093877217 -1.622149256414784e-005 0.3420045132315082 -0.9396983093877217 -1.622149256414784e-005 0.3420045132315082 -0.9396983093877217 1.622149256414784e-005 -0.3420045132315082 0.9396983093877217 1.622149256414784e-005 -0.3420045132315082 0.9396983093877217 1.622149256414784e-005 -0.3420045132315082 0.9396983093877217 -1.726250358513484e-005 -8.972202052281688e-006 -0.9999999998107528 -1.726250358513484e-005 -8.972202052281688e-006 -0.9999999998107528 -1.726250358513484e-005 -8.972202052281688e-006 -0.9999999998107528 -1.726250358513484e-005 -8.972202052281688e-006 -0.9999999998107528 -1.726250358513484e-005 -8.972202052281688e-006 -0.9999999998107528 1.726250358513484e-005 8.972202052281688e-006 0.9999999998107528 1.726250358513484e-005 8.972202052281688e-006 0.9999999998107528 1.726250358513484e-005 8.972202052281688e-006 0.9999999998107528 1.726250358513484e-005 8.972202052281688e-006 0.9999999998107528 1.726250358513484e-005 8.972202052281688e-006 0.9999999998107528 -1.381288785186336e-007 0.3395326625344007 -0.9405942648518977 -1.381288785186336e-007 0.3395326625344007 -0.9405942648518977 -1.381288785186336e-007 0.3395326625344007 -0.9405942648518977 -1.381288785186336e-007 0.3395326625344007 -0.9405942648518977 1.381288785186336e-007 -0.3395326625344007 0.9405942648518977 1.381288785186336e-007 -0.3395326625344007 0.9405942648518977 1.381288785186336e-007 -0.3395326625344007 0.9405942648518977 1.381288785186336e-007 -0.3395326625344007 0.9405942648518977 0.9999999998562926 -1.927178119346669e-007 1.695222128250001e-005 0.9999999998562926 -1.927178119346669e-007 1.695222128250001e-005 0.9999999998562926 -1.927178119346669e-007 1.695222128250001e-005 -0.9999999998562926 1.927178119346669e-007 -1.695222128250001e-005 -0.9999999998562926 1.927178119346669e-007 -1.695222128250001e-005 -0.9999999998562926 1.927178119346669e-007 -1.695222128250001e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 0.9999999998409014 -4.004266721021217e-007 1.783359758932766e-005 0.9999999998409014 -4.004266721021217e-007 1.783359758932766e-005 0.9999999998409014 -4.004266721021217e-007 1.783359758932766e-005 0.9999999998409014 -4.004266721021217e-007 1.783359758932766e-005 -0.9999999998409014 4.004266721021217e-007 -1.783359758932766e-005 -0.9999999998409014 4.004266721021217e-007 -1.783359758932766e-005 -0.9999999998409014 4.004266721021217e-007 -1.783359758932766e-005 -0.9999999998409014 4.004266721021217e-007 -1.783359758932766e-005 0.9999999998677948 1.581922333093094e-007 1.625994382280994e-005 0.9999999998677948 1.581922333093094e-007 1.625994382280994e-005 0.9999999998677948 1.581922333093094e-007 1.625994382280994e-005 0.9999999998677948 1.581922333093094e-007 1.625994382280994e-005 0.9999999998677948 1.581922333093094e-007 1.625994382280994e-005 -0.9999999998677948 -1.581922333093094e-007 -1.625994382280994e-005 -0.9999999998677948 -1.581922333093094e-007 -1.625994382280994e-005 -0.9999999998677948 -1.581922333093094e-007 -1.625994382280994e-005 -0.9999999998677948 -1.581922333093094e-007 -1.625994382280994e-005 -0.9999999998677948 -1.581922333093094e-007 -1.625994382280994e-005 0.9999999998561319 -1.998816615920923e-009 1.696279550223705e-005 0.9999999998561319 -1.998816615920923e-009 1.696279550223705e-005 0.9999999998561319 -1.998816615920923e-009 1.696279550223705e-005 -0.9999999998561319 1.998816615920923e-009 -1.696279550223705e-005 -0.9999999998561319 1.998816615920923e-009 -1.696279550223705e-005 -0.9999999998561319 1.998816615920923e-009 -1.696279550223705e-005 0.9999971076580704 -0.00240508486724678 1.556519455516098e-005 0.9999971076580704 -0.00240508486724678 1.556519455516098e-005 0.9999971076580704 -0.00240508486724678 1.556519455516098e-005 0.9999971076580704 -0.00240508486724678 1.556519455516098e-005 -0.9999971076580704 0.00240508486724678 -1.556519455516098e-005 -0.9999971076580704 0.00240508486724678 -1.556519455516098e-005 -0.9999971076580704 0.00240508486724678 -1.556519455516098e-005 -0.9999971076580704 0.00240508486724678 -1.556519455516098e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785718e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785718e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785718e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785718e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785718e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785718e-005 0.9999999998562926 -1.927320820752916e-007 1.695222131549676e-005 0.9999999998562926 -1.927320820752916e-007 1.695222131549676e-005 0.9999999998562926 -1.927320820752916e-007 1.695222131549676e-005 0.9999999998562926 -1.927320820752916e-007 1.695222131549676e-005 -0.9999999998562926 1.927320820752916e-007 -1.695222131549676e-005 -0.9999999998562926 1.927320820752916e-007 -1.695222131549676e-005 -0.9999999998562926 1.927320820752916e-007 -1.695222131549676e-005 -0.9999999998562926 1.927320820752916e-007 -1.695222131549676e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785713e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785713e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785713e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785713e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785713e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785713e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 0.9999999998562925 -1.927219302514655e-007 1.69522213120266e-005 0.9999999998562925 -1.927219302514655e-007 1.69522213120266e-005 0.9999999998562925 -1.927219302514655e-007 1.69522213120266e-005 -0.9999999998562925 1.927219302514655e-007 -1.69522213120266e-005 -0.9999999998562925 1.927219302514655e-007 -1.69522213120266e-005 -0.9999999998562925 1.927219302514655e-007 -1.69522213120266e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1914\" source=\"#ID3989\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3987\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3985\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID3986\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1254\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3987\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 11 8 12 11 12 13 11 13 14 13 12 15 13 15 16 15 12 17 15 17 18 17 12 19 17 19 20 19 12 21 19 21 22 21 12 23 21 23 24 23 12 25 23 25 26 25 12 27 25 27 28 27 12 29 27 29 30 27 30 31 30 29 32 29 12 33 29 33 34 33 12 35 33 35 36 35 12 37 35 37 38 37 12 39 37 39 40 39 12 41 39 41 42 41 12 43 41 43 44 43 12 45 43 45 46 45 12 47 45 47 48 47 12 49 47 49 50 49 12 51 49 51 52 51 12 53 51 53 54 53 12 55 53 55 56 55 12 57 57 12 58 57 58 59 59 58 60 59 60 61 59 61 62 61 60 63 61 63 64 63 60 65 63 65 66 65 60 67 65 67 68 67 60 69 67 69 70 69 60 71 69 71 72 71 60 73 71 73 74 73 60 75 73 75 76 75 60 77 75 77 78 77 60 79 77 79 80 79 60 81 79 81 82 81 60 83 83 60 84 85 57 59 86 87 88 89 90 91 91 90 92 93 92 94 92 90 94 95 94 96 94 90 96 97 96 98 96 90 98 99 98 100 98 90 100 101 100 102 100 90 102 103 102 104 102 90 104 105 104 106 104 90 106 107 106 108 106 90 108 109 108 110 108 90 110 111 110 112 110 90 112 113 112 86 112 90 86 90 114 86 86 114 87 114 115 87 87 115 116 117 116 118 116 115 118 119 118 120 118 115 120 121 120 122 120 115 122 123 122 124 122 115 124 125 124 126 124 115 126 127 126 128 126 115 128 129 128 130 128 115 130 131 130 132 130 115 132 133 132 134 132 115 134 135 134 136 134 115 136 137 136 138 136 115 138 139 138 140 138 115 140 141 140 142 143 142 144 142 140 144 140 115 144 145 144 146 144 115 146 147 146 148 146 115 148 149 148 150 148 115 150 151 150 152 150 115 152 153 152 154 152 115 154 155 154 156 154 115 156 157 156 158 156 115 158 159 158 160 158 115 160 115 161 160 160 161 162 163 162 161 164 165 166 165 164 167 167 164 168 167 168 169 170 171 172 171 173 172 172 173 174 175 174 173 176 177 178 179 180 181 180 179 177 180 177 176 180 176 182 180 182 183 183 182 184 184 182 185 183 184 186 186 184 187 183 186 188 188 186 189 183 188 190 190 188 191 183 190 192 192 190 193 183 192 194 194 192 195 183 194 196 196 194 197 183 196 198 183 198 199 183 199 200 183 200 201 202 203 204 203 205 204 205 206 204 206 207 204 208 209 207 207 209 204 210 211 209 209 211 204 212 213 211 211 213 204 214 215 213 213 215 204 216 217 215 215 217 204 218 219 217 217 219 204 220 221 219 219 221 204 204 221 222 221 223 222 223 224 222 224 225 222 226 222 225 227 224 223 228 229 230 229 228 231 232 233 234 235 234 233 236 237 238 237 236 239 240 241 242 243 242 241 244 245 246 245 244 247 248 249 250 251 250 249 252 253 254 253 252 255 256 257 258 259 258 257 260 261 262 261 260 263 264 265 266 267 266 265 268 269 270 269 268 271 272 273 274 275 274 273 276 277 278 277 276 279 280 281 282 283 282 281 284 285 286 285 284 287 288 289 290 291 290 289 292 293 294 293 292 295 295 292 296 297 298 299 299 298 300 301 300 298 302 303 304 303 302 305 306 307 308 309 308 307 310 311 312 311 310 313 313 310 314 315 316 317 317 316 318 319 318 316 320 321 322 321 320 323 324 325 326 327 326 325 328 329 330 329 328 331 331 328 332 333 334 335 335 334 336 337 336 334 338 339 340 339 338 341 342 343 344 345 344 343 346 347 348 347 346 349 349 346 350 351 352 353 353 352 354 355 354 352 356 357 358 357 356 359 360 361 362 363 362 361 364 365 366 365 364 367 367 364 368 369 370 371 371 370 372 373 372 370 374 375 376 375 374 377 378 379 380 381 380 379 382 383 384 383 382 385 385 382 386 387 388 389 389 388 390 391 390 388 392 393 394 393 392 395 396 397 398 399 398 397 400 401 402 401 400 403 403 400 404 405 406 407 407 406 408 409 408 406 410 411 412 411 410 413 414 415 416 417 416 415 418 419 420 419 418 421 421 418 422 423 424 425 425 424 426 427 426 424 428 429 430 429 428 431 432 433 434 435 434 433 436 437 438 437 436 439 439 436 440 441 442 443 443 442 444 445 444 442 446 447 448 447 446 449 450 451 452 453 452 451 454 455 456 455 454 457 457 454 458 459 460 461 461 460 462 463 462 460 464 465 466 465 464 467 467 464 468 469 470 471 471 470 472 473 472 470 474 475 476 475 474 477 477 474 478 478 474 479 480 481 482 482 481 483 483 481 484 485 484 481 486 487 488 487 486 489 489 486 490 491 492 493 493 492 494 495 494 492 496 497 498 497 496 499 499 496 500 501 502 503 503 502 504 505 504 502 506 507 508 507 506 509 510 511 512 513 512 511 514 515 516 515 514 517 517 514 518 519 520 521 521 520 522 523 522 520 524 525 526 525 524 527 528 529 530 531 530 529 532 533 534 533 532 535 535 532 536 537 538 539 539 538 540 541 540 538 542 543 544 543 542 545 546 547 548 549 548 547 550 551 552 551 550 553 553 550 554 555 556 557 557 556 558 559 558 556 560 561 562 561 560 563 564 565 566 567 566 565 568 569 570 569 568 571 571 568 572 573 574 575 575 574 576 577 576 574 578 579 580 579 578 581 582 583 584 585 584 583 586 587 588 587 586 589 589 586 590 591 592 593 593 592 594 595 594 592 596 597 598 597 596 599 600 601 602 603 602 601 604 605 606 605 604 607 607 604 608 609 610 611 611 610 612 613 612 610 614 615 616 615 614 617 618 619 620 621 620 619 622 623 624 623 622 625 625 622 626 627 628 629 629 628 630 631 630 628 632 633 634 633 632 635 636 637 638 639 638 637 640 641 642 641 640 643 643 640 644 645 646 647 647 646 648 649 648 646 650 651 652 651 650 653 654 655 656 657 656 655 658 659 660 659 658 661 661 658 662 663 664 665 665 664 666 667 666 664 668 669 670 669 668 671 672 673 674 675 674 673 676 677 678 677 676 679 679 676 680 681 682 683 683 682 684 685 684 682 686 687 688 687 686 689 690 691 692 693 692 691 694 695 696 695 694 697 697 694 698 699 700 701 701 700 702 703 702 700 704 705 706 705 704 707 708 709 710 711 710 709 712 713 714 713 712 715 715 712 716 717 718 719 719 718 720 721 720 718 722 723 724 723 722 725 726 727 728 729 728 727 730 731 732 731 730 733 733 730 734 735 736 737 737 736 738 739 738 736 740 741 742 741 740 743 744 745 746 747 746 745 748 749 750 749 748 751 751 748 752 753 754 755 755 754 756 757 756 754 758 759 760 759 758 761 762 763 764 765 764 763 766 767 768 767 766 769 769 766 770 771 772 773 773 772 774 775 774 772 776 777 778 777 776 779 780 781 782 783 782 781 784 785 786 785 784 787 787 784 788 789 790 791 791 790 792 793 792 790 794 795 796 795 794 797 798 799 800 801 800 799 802 803 804 803 802 805 805 802 806 807 808 809 809 808 810 811 810 808 812 813 814 813 812 815 816 817 818 819 818 817 820 821 822 821 820 823 823 820 824 825 826 827 827 826 828 829 828 826 830 831 832 831 830 833 834 835 836 837 836 835 838 839 840 839 838 841 841 838 842 843 844 845 845 844 846 847 846 844 848 849 850 849 848 851 852 853 854 855 854 853 856 857 858 857 856 859 859 856 860 861 862 863 863 862 864 865 864 862 866 867 868 867 866 869 870 871 872 873 872 871 874 875 876 875 874 877 877 874 878 879 880 881 881 880 882 883 882 880 884 885 886 885 884 887 888 889 890 891 890 889 892 893 894 893 892 895 895 892 896 896 892 897 896 897 898 895 899 900 899 895 896 900 899 901 902 903 904 905 906 903 904 903 906 907 908 905 908 909 905 905 909 906 906 909 910 911 910 909 912 913 914 913 912 915 916 917 918 919 918 917 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 954 953 956 954 956 957 954 957 958 958 957 959 959 957 960 960 957 961 958 959 962 962 959 963 963 959 964 958 962 965 965 962 966 966 962 967 958 965 968 968 965 969 969 965 970 958 968 971 971 968 972 972 968 973 958 971 974 974 971 975 975 971 976 958 974 977 977 974 978 978 974 979 958 977 980 980 977 981 981 977 982 958 980 983 983 980 984 984 980 985 985 980 986 983 984 987 987 984 988 958 983 921 921 983 922 958 921 924 924 921 925 958 924 927 927 924 928 958 927 930 930 927 931 958 930 933 933 930 934 958 933 936 936 933 937 958 936 939 939 936 940 958 939 942 942 939 943 958 942 945 945 942 946 958 945 948 948 945 949 958 948 951 951 948 952 958 951 989 958 989 990 958 990 991 958 991 992 992 991 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 992 1024 1025 1024 992 1026 1026 992 993 1025 1024 995 995 1024 996 1025 995 999 999 995 1027 1025 999 1002 1002 999 998 1025 1002 1005 1005 1002 1001 1025 1005 1008 1008 1005 1004 1025 1008 1011 1011 1008 1007 1025 1011 1014 1014 1011 1010 1025 1014 1017 1017 1014 1013 1025 1017 1020 1020 1017 1016 1025 1020 1023 1023 1020 1019 1025 1023 1028 1028 1023 1022 1029 1030 1031 1031 1030 1032 1033 1034 1030 1030 1034 1032 1035 1036 1034 1034 1036 1032 1037 1038 1036 1036 1038 1032 1039 1040 1038 1038 1040 1032 1041 1042 1040 1040 1042 1032 1043 1044 1042 1042 1044 1032 1045 1046 1044 1044 1046 1032 1047 1048 1046 1046 1048 1032 1049 1050 1048 1048 1050 1032 1051 1052 1050 1050 1052 1032 1053 1054 1055 1055 1054 1052 1032 1052 1054 1030 1029 1056 1034 1033 1057 1036 1035 1058 1038 1037 1059 1040 1039 1060 1042 1041 1061 1044 1043 1062 1046 1045 1063 1048 1047 1064 1051 1050 1065 1053 1066 1054 1054 1066 1067 1066 1068 1067 1068 1069 1067 1069 1070 1067 1071 1072 1070 1070 1072 1067 1073 1074 1072 1072 1074 1067 1075 1076 1074 1074 1076 1067 1077 1078 1076 1076 1078 1067 1079 1080 1078 1078 1080 1067 1081 1082 1080 1080 1082 1067 1083 1084 1082 1082 1084 1067 1085 1086 1084 1084 1086 1067 1087 1088 1086 1086 1088 1067 1089 1090 1088 1088 1090 1067 1091 1092 1090 1090 1092 1067 1093 1094 1095 1095 1094 1092 1096 1097 1098 1098 1097 1094 1094 1097 1092 1092 1097 1067 1099 1100 1101 1101 1100 1097 1097 1100 1067 1102 1103 1104 1104 1103 1100 1100 1103 1067 1105 1106 1107 1107 1106 1103 1103 1106 1067 1108 1109 1110 1110 1109 1106 1106 1109 1067 1111 1112 1113 1113 1112 1109 1109 1112 1067 1114 1115 1116 1116 1115 1112 1112 1115 1067 1117 1118 1119 1119 1118 1115 1115 1118 1067 1120 1121 1122 1122 1121 1118 1118 1121 1067 1067 1121 1123 1121 1124 1123 1124 1125 1123 1126 1123 1125 1071 1070 1127 1073 1072 1128 1075 1074 1129 1077 1076 1130 1079 1078 1131 1081 1080 1132 1083 1082 1133 1085 1084 1134 1087 1086 1135 1089 1088 1136 1091 1090 1137 1138 1139 1140 1139 1138 1141 1142 1143 1144 1145 1144 1143 1146 1147 1148 1147 1146 1149 1150 1151 1152 1153 1152 1151 1154 1155 1156 1155 1154 1157 1157 1154 1158 1157 1158 1159 1157 1159 1160 1160 1159 1161 1160 1161 1162 1162 1161 1163 1164 1165 1166 1166 1165 1167 1165 1168 1167 1167 1168 1169 1168 1170 1169 1170 1171 1169 1169 1171 1172 1173 1172 1171 1174 1175 1176 1175 1174 1177 1178 1179 1180 1181 1180 1179 1182 1183 1184 1183 1182 1185 1186 1187 1188 1189 1188 1187 1190 1191 1192 1191 1190 1193 1194 1195 1196 1197 1196 1195 1198 1199 1200 1199 1198 1201 1202 1203 1204 1205 1204 1203 1206 1207 1208 1207 1206 1209 1210 1211 1212 1213 1212 1211 1214 1215 1216 1215 1214 1217 1218 1219 1220 1221 1220 1219 1222 1223 1224 1223 1222 1225 1226 1227 1228 1229 1228 1227 1230 1231 1232 1231 1230 1233 1234 1235 1236 1237 1236 1235 1238 1239 1240 1239 1238 1241 1242 1243 1244 1245 1244 1243 1246 1247 1248 1247 1246 1249 1250 1251 1252 1253 1252 1251 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1267 1266 1269 1270 1271 1272 1273 1272 1271 1274 1275 1276 1275 1274 1277 1278 1279 1280 1281 1280 1279 1282 1283 1284 1283 1282 1285 1286 1287 1288 1289 1288 1287 1290 1291 1292 1291 1290 1293 1294 1295 1296 1297 1296 1295 1298 1299 1300 1299 1298 1301 1302 1303 1304 1305 1304 1303 1306 1307 1308 1307 1306 1309 1310 1311 1312 1313 1312 1311 1312 1311 1313 1311 1312 1310 1309 1307 1306 1308 1306 1307 1314 1315 1316 1315 1314 1317 1318 1319 1320 1321 1320 1319 1322 1323 1324 1323 1322 1325 1326 1327 1328 1329 1328 1327 1330 1331 1332 1331 1330 1333 1334 1335 1336 1337 1336 1335 1338 1339 1340 1339 1338 1341 1342 1343 1344 1345 1344 1343 1346 1347 1348 1347 1346 1349 1350 1351 1352 1353 1352 1351 1354 1355 1356 1355 1354 1357 1358 1359 1360 1361 1360 1359 1362 1363 1364 1363 1362 1365 1366 1367 1368 1369 1368 1367 1370 1371 1372 1371 1370 1373 1374 1375 1376 1377 1376 1375 1378 1379 1380 1379 1378 1381 1382 1383 1384 1385 1384 1383 1386 1387 1388 1387 1386 1389 1390 1391 1392 1393 1392 1391 1394 1395 1396 1395 1394 1397 1398 1399 1400 1401 1400 1399 1402 1403 1404 1403 1402 1405 1406 1407 1408 1409 1408 1407 1410 1411 1412 1411 1410 1413 1414 1415 1416 1417 1416 1415 1418 1419 1420 1419 1418 1421 1422 1423 1424 1425 1424 1423 1426 1427 1428 1427 1426 1429 1430 1431 1432 1433 1432 1431 1434 1435 1436 1435 1434 1437 1438 1439 1440 1441 1440 1439 1442 1443 1444 1443 1442 1445 1446 1447 1448 1449 1448 1447 1450 1451 1452 1451 1450 1453 1454 1455 1456 1457 1456 1455 1458 1459 1460 1459 1458 1461 1462 1463 1464 1465 1464 1463 1466 1467 1468 1467 1466 1469 1470 1471 1472 1473 1472 1471 1474 1475 1476 1475 1474 1477 1478 1479 1480 1481 1480 1479 1482 1483 1484 1483 1482 1485 1486 1487 1488 1489 1488 1487 1490 1491 1492 1491 1490 1493 1494 1495 1496 1497 1496 1495 1498 1499 1500 1499 1498 1501 1502 1503 1504 1505 1504 1503 1506 1507 1508 1507 1506 1509 1510 1511 1512 1513 1512 1511 1512 1511 1513 1511 1512 1510 1509 1507 1506 1508 1506 1507 1514 1515 1516 1515 1514 1517 1518 1519 1520 1521 1520 1519 1522 1523 1524 1523 1522 1525 1526 1527 1528 1529 1528 1527 1530 1531 1532 1531 1530 1533 1534 1535 1536 1537 1536 1535 1536 1535 1537 1535 1536 1534 1533 1531 1530 1532 1530 1531 1538 1539 1540 1539 1538 1541 1542 1543 1544 1545 1544 1543 1546 1547 1548 1547 1546 1549 1550 1551 1552 1553 1552 1551 1554 1555 1556 1555 1554 1557 1558 1559 1560 1561 1560 1559 1562 1563 1564 1563 1562 1565 1566 1567 1568 1569 1568 1567 1570 1571 1572 1571 1570 1573 1574 1575 1576 1577 1576 1575 1578 1579 1580 1579 1578 1581 1579 1581 1582 1582 1581 1583 1583 1581 1584 1583 1584 1585 1585 1584 1586 1587 1588 1589 1589 1588 1590 1588 1591 1590 1590 1591 1592 1592 1591 1593 1591 1594 1593 1595 1593 1594 1596 1597 1598 1597 1596 1599 1599 1596 1600 1601 1602 1603 1603 1602 1604 1605 1604 1602 1606 1607 1608 1607 1606 1609 1610 1611 1612 1613 1612 1611 1614 1615 1616 1615 1614 1617 1618 1619 1620 1621 1620 1619 1622 1623 1624 1623 1625 1626 1625 1623 1622 1627 1628 1629 1630 1629 1628 1631 1628 1627 1632 1633 1634 1633 1632 1635 1635 1632 1636 1636 1632 1637 1637 1632 1638 1639 1640 1641 1641 1640 1642 1642 1640 1643 1643 1640 1644 1645 1644 1640 1646 1647 1648 1647 1646 1649 1647 1649 1650 1651 1652 1653 1652 1654 1653 1655 1653 1654 1656 1657 1658 1657 1656 1659 1660 1661 1662 1663 1662 1661 1664 1665 1666 1665 1664 1667 1668 1669 1670 1671 1670 1669 1672 1673 1674 1673 1672 1675 1675 1672 1676 1677 1678 1679 1679 1678 1680 1681 1680 1678 1682 1683 1684 1685 1686 1687 1688 1689 1690 1689 1688 1691 1691 1688 1692 1693 1694 1695 1695 1694 1696 1697 1696 1694 1698 1699 1700 1699 1698 1701 1702 1703 1704 1705 1704 1703 1706 1707 1708 1707 1706 1709 1709 1706 1710 1710 1706 1711 1711 1706 1712 1712 1706 1713 1712 1713 1714 1712 1714 1715 1715 1714 1716 1716 1714 1717 1718 1707 1719 1707 1718 1708 1719 1707 1720 1721 1722 1723 1724 1725 1722 1723 1722 1725 1726 1727 1728 1728 1727 1729 1729 1727 1730 1727 1731 1730 1731 1732 1730 1730 1732 1733 1733 1732 1734 1734 1732 1735 1735 1732 1722 1724 1722 1732 1736 1737 1738 1739 1740 1741 1742 1743 1744 1743 1742 1745 1745 1742 1746 1745 1746 1747 1747 1746 1748 1747 1748 1749 1750 1751 1752 1751 1753 1752 1752 1753 1754 1753 1755 1754 1754 1755 1756 1757 1756 1755 1758 1759 1760 1759 1758 1761 1759 1761 1762 1763 1764 1765 1764 1766 1765 1767 1765 1766 1768 1769 1770 1771 1772 1773 1774 1775 1776 1775 1774 1777 1778 1779 1780 1781 1780 1779 1782 1783 1784 1785 1786 1787 1788 1789 1790 1789 1788 1791 1792 1793 1794 1795 1794 1793 1796 1797 1798 1799 1800 1801 1796 1797 1798 1799 1800 1801 1802 1803 1804 1803 1802 1805 1803 1805 1806 1807 1808 1809 1808 1810 1809 1811 1809 1810 1812 1813 1814 1813 1812 1815 1816 1817 1818 1819 1818 1817 1820 1821 1822 1823 1824 1825 1826 1827 1828 1827 1826 1829 1829 1826 1830 1829 1830 1831 1831 1830 1832 1831 1832 1833 1834 1835 1836 1835 1837 1836 1836 1837 1838 1837 1839 1838 1838 1839 1840 1841 1840 1839 1842 1843 1844 1843 1842 1845 1846 1847 1848 1849 1848 1847 1850 1851 1852 1851 1850 1853 1853 1850 1854 1855 1856 1857 1857 1856 1858 1859 1858 1856 1860 1861 1862 1863 1864 1865 1866 1867 1868 1867 1866 1869 1870 1871 1872 1873 1872 1871 1866 1867 1868 1867 1866 1869 1870 1871 1872 1873 1872 1871 1874 1875 1876 1877 1878 1879 1880 1881 1882 1881 1880 1883 1884 1885 1886 1887 1886 1885 1888 1889 1890 1891 1892 1893 1888 1889 1890 1891 1892 1893 1894 1895 1896 1895 1894 1897 1897 1894 1898 1898 1894 1899 1898 1899 1900 1901 1902 1903 1902 1904 1903 1903 1904 1905 1905 1904 1906 1907 1906 1904 1908 1909 1910 1911 1912 1913</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3990\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3991\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3993\">84.64314333246512 414.6469240182741 148.9232070358309 84.64423300151702 414.6463484512637 84.74997964140168</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3993\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3992\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3991\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3992\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3994\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3995\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID3997\">94.48556371832683 414.6469768990124 154.8288863579324 84.64304506879307 414.6469769624 154.8287194273879</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID3997\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID3996\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3995\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID3996\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID3998\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID3999\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID4001\">94.48818980180386 27.30516311904466 -0.0002449271512856011 94.48818939834746 37.60304305902355 -0.0003375323330171987 76.77165423771658 27.30516313112662 -0.0005452611212627967 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4001\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4000\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID3999\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4000\" />\r\n\t\t\t\t\t<p>1 0 0 2 0 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4002\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4003\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID4005\">94.48675258624235 414.6463483953374 84.75014648464297 76.77020919075676 414.6253984771122 84.74984624823864 76.77021624447616 414.625398986583 84.80740748336763 76.77021755446276 414.6278490568375 84.74311298746578 76.77021635862593 414.6068994457873 84.8006745496247</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID4005\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4004\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4003\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4004\" />\r\n\t\t\t\t\t<p>1 0 2 1 3 1 1 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4006\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4007\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID4009\">-5.013662303099409e-007 2.978536031150725e-007 -0.001601740747550817 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 17.71653492902442 2.857641447917558e-007 -0.001301406779838088</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID4009\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4008\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4007\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4008\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4010\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4011\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4013\">9.839892928604968 414.6469769739911 154.8300107170691 76.76902947101598 414.6469769739005 154.8300004488145</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4013\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4012\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4011\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4012\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4014\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4015\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4017\">76.7692643702112 414.6468526939065 140.9695226641056 76.76926440855232 414.625896056945 140.9672609634845</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4017\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4016\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4015\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4016\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4018\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4019\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4021\">17.71553811324156 181.7581786775084 56.20893686235574 76.77070146418873 181.7597558847504 56.20791740822955</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4021\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4020\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4019\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4020\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4022\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4023\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4025\">76.76973097181963 181.7592512503618 -0.01175922660467577 76.77165453321868 181.7592515531196 -0.01175925981286674</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4025\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4024\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4023\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4024\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4026\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4027\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4029\">17.71596891616355 181.7586316261001 33.52892241162324 17.71561808528941 181.7592788325137 56.20591422992882</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4029\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4028\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4027\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4028\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4030\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4031\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID4033\">17.71509992042502 503.2256012564315 84.76084914634312 17.71510013757279 503.2256011415905 84.74804975169242 17.71509996670238 503.1904350939219 84.74805006720644</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID4033\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4032\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4031\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4032\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4034\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4035\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID4037\">17.71398357069666 414.6469391166334 150.5310742121952 17.71398411627388 503.2261913530594 150.5302794612427 17.71453096973482 503.2259021035919 118.2918768471013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID4037\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4036\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4035\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4036\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4038\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4039\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4041\">17.71414609887552 414.6468532549262 140.9705421628555 17.71401082502507 414.6469247008893 148.9243624002142</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4041\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4040\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4039\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4040\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4042\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4043\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4045\">17.71501964206209 414.6162892724735 84.74075326383473 17.7150995955526 414.6172049445924 84.73823726465852 17.71501956792599 414.6162918665531 84.74552569604246 17.71509948086487 414.6147535636574 84.74497256647818 17.71509960927278 414.5932764525147 84.73715575559328 17.71603081957255 414.6253914338675 84.74884467468026</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4045\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4044\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4043\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4044\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 5 2 1 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4046\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4047\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4049\">17.71453088448834 414.6345232030249 118.2864493041696 17.71453095700872 414.6345208034652 118.2820347387428</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4049\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4048\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4047\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4048\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4050\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4051\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4053\">17.71742271838048 181.7576744703945 -0.005706314450553751 17.7174227330388 181.7552228346799 -0.006598611960785594</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4053\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4052\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4051\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4052\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4056\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4057\">\r\n\t\t\t\t\t<float_array count=\"786\" id=\"ID4060\">-1733.976705060581 -325.5323222837228 387.1411944814967 -2425.543849405076 -518.9864483563464 42.25874134146841 -1745.578464349326 -228.4937899525511 433.6506326320404 -1745.578464349326 -228.4937899525511 433.6506326320404 -2425.543849405076 -518.9864483563464 42.25874134146841 -1733.976705060581 -325.5323222837228 387.1411944814967 -1687.58094631499 -713.7190062741638 387.0921039340282 -1676.873085725424 -803.3055136939012 380.2928671938088 -1676.876316949247 -803.3148404862371 433.5779400816904 -1767.881621780674 -41.85009661671793 380.3891617469765 -1710.778825687527 -519.6256642792055 387.1166492077644 -1699.182705604213 -616.680473942718 433.60154208453 -1733.976705060581 -325.5323222837228 387.1411944814967 -1722.381848483181 -422.5765603706387 433.6260886951958 -1757.174584432872 -131.4389802887125 387.1657397552439 -1745.578464349326 -228.4937899525511 433.6506326320404 -1767.884853003863 -41.85942340933842 433.6742346348704 -1767.884853003863 -41.85942340933842 433.6742346348704 -1757.174584432872 -131.4389802887125 387.1657397552439 -1767.881621780674 -41.85009661671793 380.3891617469765 -1745.578464349326 -228.4937899525511 433.6506326320404 -1733.976705060581 -325.5323222837228 387.1411944814967 -1722.381848483181 -422.5765603706387 433.6260886951958 -1710.778825687527 -519.6256642792055 387.1166492077644 -1699.182705604213 -616.680473942718 433.60154208453 -1687.58094631499 -713.7190062741638 387.0921039340282 -1676.873085725424 -803.3055136939012 380.2928671938088 -1676.876316949247 -803.3148404862371 433.5779400816904 -1722.381848483181 -422.5765603706387 433.6260886951958 -2425.543849405076 -518.9864483563464 42.25874134146841 -1733.976705060581 -325.5323222837228 387.1411944814967 -1733.976705060581 -325.5323222837228 387.1411944814967 -2425.543849405076 -518.9864483563464 42.25874134146841 -1722.381848483181 -422.5765603706387 433.6260886951958 -1745.578464349326 -228.4937899525511 433.6506326320404 -2425.543849405076 -518.9864483563464 42.25874134146841 -1757.174584432872 -131.4389802887125 387.1657397552439 -1757.174584432872 -131.4389802887125 387.1657397552439 -2425.543849405076 -518.9864483563464 42.25874134146841 -1745.578464349326 -228.4937899525511 433.6506326320404 -1676.876316949247 -803.3148404862371 433.5779400816904 -1676.873085725424 -803.3055136939012 380.2928671938088 -2425.543849405076 -518.9864483563464 42.25874134146841 -2425.543849405076 -518.9864483563464 42.25874134146841 -1676.873085725424 -803.3055136939012 380.2928671938088 -1676.876316949247 -803.3148404862371 433.5779400816904 -1676.876316949247 -803.3148404862371 433.5779400816904 -2425.543849405076 -518.9864483563464 42.25874134146841 -1687.58094631499 -713.7190062741638 387.0921039340282 -1687.58094631499 -713.7190062741638 387.0921039340282 -2425.543849405076 -518.9864483563464 42.25874134146841 -1676.876316949247 -803.3148404862371 433.5779400816904 -1687.58094631499 -713.7190062741638 387.0921039340282 -2425.543849405076 -518.9864483563464 42.25874134146841 -1699.182705604213 -616.680473942718 433.60154208453 -1699.182705604213 -616.680473942718 433.60154208453 -2425.543849405076 -518.9864483563464 42.25874134146841 -1687.58094631499 -713.7190062741638 387.0921039340282 -1699.182705604213 -616.680473942718 433.60154208453 -2425.543849405076 -518.9864483563464 42.25874134146841 -1710.778825687527 -519.6256642792055 387.1166492077644 -1710.778825687527 -519.6256642792055 387.1166492077644 -2425.543849405076 -518.9864483563464 42.25874134146841 -1699.182705604213 -616.680473942718 433.60154208453 -1710.778825687527 -519.6256642792055 387.1166492077644 -2425.543849405076 -518.9864483563464 42.25874134146841 -1722.381848483181 -422.5765603706387 433.6260886951958 -1722.381848483181 -422.5765603706387 433.6260886951958 -2425.543849405076 -518.9864483563464 42.25874134146841 -1710.778825687527 -519.6256642792055 387.1166492077644 -1757.174584432872 -131.4389802887125 387.1657397552439 -2425.543849405076 -518.9864483563464 42.25874134146841 -1767.884853003863 -41.85942340933842 433.6742346348704 -1767.884853003863 -41.85942340933842 433.6742346348704 -2425.543849405076 -518.9864483563464 42.25874134146841 -1757.174584432872 -131.4389802887125 387.1657397552439 -1767.884853003863 -41.85942340933842 433.6742346348704 -2425.543849405076 -518.9864483563464 42.25874134146841 -1767.881621780674 -41.85009661671793 380.3891617469765 -1767.881621780674 -41.85009661671793 380.3891617469765 -2425.543849405076 -518.9864483563464 42.25874134146841 -1767.884853003863 -41.85942340933842 433.6742346348704 -1675.981595007652 -810.7644891458493 380.2919239229345 -2425.543849405076 -518.9864483563464 42.25874134146841 -1676.873085725424 -803.3055136939012 380.2928671938088 -1676.873085725424 -803.3055136939012 380.2928671938088 -2425.543849405076 -518.9864483563464 42.25874134146841 -1675.981595007652 -810.7644891458493 380.2919239229345 -1767.881621780674 -41.85009661671793 380.3891617469765 -2425.543849405076 -518.9864483563464 42.25874134146841 -1768.773112498532 -34.39112116476065 380.3901050178963 -1768.773112498532 -34.39112116476065 380.3901050178963 -2425.543849405076 -518.9864483563464 42.25874134146841 -1767.881621780674 -41.85009661671793 380.3891617469765 -1675.985711216594 -810.7763704095979 448.170997665518 -2425.543849405076 -518.9864483563464 42.25874134146841 -1675.981595007652 -810.7644891458493 380.2919239229345 -1675.981595007652 -810.7644891458493 380.2919239229345 -2425.543849405076 -518.9864483563464 42.25874134146841 -1675.985711216594 -810.7763704095979 448.170997665518 -1675.985711216594 -810.7763704095979 448.170997665518 -1716.835337281237 -717.7327628105488 387.090027605637 -2425.543849405076 -518.9864483563464 42.25874134146841 -2425.543849405076 -518.9864483563464 42.25874134146841 -1716.835337281237 -717.7327628105488 387.090027605637 -1675.985711216594 -810.7763704095979 448.170997665518 -1699.183590588928 -616.6830284145865 448.1955429392085 -2425.543849405076 -518.9864483563464 42.25874134146841 -1716.835337281237 -717.7327628105488 387.090027605637 -1716.835337281237 -717.7327628105488 387.090027605637 -2425.543849405076 -518.9864483563464 42.25874134146841 -1699.183590588928 -616.6830284145865 448.1955429392085 -1687.583765918036 -713.7271449402026 433.5892694477054 -1716.835337281237 -717.7327628105488 387.090027605637 -1675.985711216594 -810.7763704095979 448.170997665518 -1675.985711216594 -810.7763704095979 448.170997665518 -1716.835337281237 -717.7327628105488 387.090027605637 -1687.583765918036 -713.7271449402026 433.5892694477054 -1699.183590588928 -616.6830284145865 448.1955429392085 -1740.033216653619 -523.6394208152113 387.1145728794177 -2425.543849405076 -518.9864483563464 42.25874134146841 -2425.543849405076 -518.9864483563464 42.25874134146841 -1740.033216653619 -523.6394208152113 387.1145728794177 -1699.183590588928 -616.6830284145865 448.1955429392085 -1699.183590588928 -616.6830284145865 448.1955429392085 -1699.183590588928 -616.6830284145865 448.1955429392085 -1648.577911296256 -708.375469558476 433.5920378854186 -1687.583765918036 -713.7271449402026 433.5892694477054 -1675.985711216594 -810.7763704095979 448.170997665518 -1675.985711216594 -810.7763704095979 448.170997665518 -1687.583765918036 -713.7271449402026 433.5892694477054 -1648.577911296256 -708.375469558476 433.5920378854186 -1710.781645290418 -519.63380294519 433.6138147213874 -1740.033216653619 -523.6394208152113 387.1145728794177 -1699.183590588928 -616.6830284145865 448.1955429392085 -1699.183590588928 -616.6830284145865 448.1955429392085 -1740.033216653619 -523.6394208152113 387.1145728794177 -1710.781645290418 -519.63380294519 433.6138147213874 -1722.381469961758 -422.5896864194455 448.2200882129473 -2425.543849405076 -518.9864483563464 42.25874134146841 -1740.033216653619 -523.6394208152113 387.1145728794177 -1740.033216653619 -523.6394208152113 387.1145728794177 -2425.543849405076 -518.9864483563464 42.25874134146841 -1722.381469961758 -422.5896864194455 448.2200882129473 -1660.177735967172 -611.3313530328725 448.1983113769359 -1699.183590588928 -616.6830284145865 448.1955429392085 -1660.177735967172 -611.3313530328725 448.1983113769359 -1699.183590588928 -616.6830284145865 448.1955429392085 -1639.553368624176 -783.8924876024156 448.1764890915895 -1639.553368624176 -783.8924876024156 448.1764890915895 -1722.381469961758 -422.5896864194455 448.2200882129473 -1722.381469961758 -422.5896864194455 448.2200882129473 -1671.775790669034 -514.2821275633791 433.6165831591283 -1710.781645290418 -519.63380294519 433.6138147213874 -1671.775790669034 -514.2821275633791 433.6165831591283 -1710.781645290418 -519.63380294519 433.6138147213874 -1722.381469961758 -422.5896864194455 448.2200882129473 -1763.231096026575 -329.5460788200666 387.1391181531636 -2425.543849405076 -518.9864483563464 42.25874134146841 -2425.543849405076 -518.9864483563464 42.25874134146841 -1763.231096026575 -329.5460788200666 387.1391181531636 -1722.381469961758 -422.5896864194455 448.2200882129473 -1648.577767229147 -708.3750537140419 431.2162703044281 -1648.582246666743 -708.3376228916135 431.2866032539749 -1648.577754398476 -708.3750659731235 431.286607879809 -1648.633542933918 -707.9084342478531 431.2865019865087 -1660.177735967172 -611.3313530328725 448.1983113769359 -1648.577911296256 -708.375469558476 433.5920378854186 -1671.775646601496 -514.2817117190263 431.2408155781858 -1671.775790669034 -514.2821275633791 433.6165831591283 -1683.375615339979 -417.2380110377699 448.2228566506448 -1694.973670041332 -320.1887855683627 433.6411284329042 -1727.19683300323 -50.58056415640542 431.2994557740569 -1718.171549414015 -126.0954435730408 433.665673706602 -1706.573494712147 -223.1446690423911 448.2474019243834 -1727.197893217811 -50.5834982616663 445.7963993529569 -1727.197862055505 -50.58353447235181 448.2692242096287 -1727.197863580191 -50.58352576186542 448.1721669647467 -1727.197863580191 -50.58352576186542 448.1721669647467 -1727.197893217811 -50.5834982616663 445.7963993529569 -1727.197862055505 -50.58353447235181 448.2692242096287 -1718.171549414015 -126.0954435730408 433.665673706602 -1727.19683300323 -50.58056415640542 431.2994557740569 -1706.573494712147 -223.1446690423911 448.2474019243834 -1694.973670041332 -320.1887855683627 433.6411284329042 -1671.775646601496 -514.2817117190263 431.2408155781858 -1683.375615339979 -417.2380110377699 448.2228566506448 -1671.775790669034 -514.2821275633791 433.6165831591283 -1660.177735967172 -611.3313530328725 448.1983113769359 -1648.633542933918 -707.9084342478531 431.2865019865087 -1648.582246666743 -708.3376228916135 431.2866032539749 -1648.577911296256 -708.375469558476 433.5920378854186 -1648.577767229147 -708.3750537140419 431.2162703044281 -1648.577754398476 -708.3750659731235 431.286607879809 -1683.375615339979 -417.2380110377699 448.2228566506448 -1722.381469961758 -422.5896864194455 448.2200882129473 -1683.375615339979 -417.2380110377699 448.2228566506448 -1722.381469961758 -422.5896864194455 448.2200882129473 -1745.579349333841 -228.496344424062 448.2446334866855 -2425.543849405076 -518.9864483563464 42.25874134146841 -1763.231096026575 -329.5460788200666 387.1391181531636 -1763.231096026575 -329.5460788200666 387.1391181531636 -2425.543849405076 -518.9864483563464 42.25874134146841 -1745.579349333841 -228.496344424062 448.2446334866855 -1733.979524663167 -325.5404609500515 433.6383599951802 -1763.231096026575 -329.5460788200666 387.1391181531636 -1722.381469961758 -422.5896864194455 448.2200882129473 -1722.381469961758 -422.5896864194455 448.2200882129473 -1763.231096026575 -329.5460788200666 387.1391181531636 -1733.979524663167 -325.5404609500515 433.6383599951802 -1718.171549414015 -126.0954435730408 433.665673706602 -1727.197862055505 -50.58353447235181 448.2692242096287 -1757.177404035377 -131.4471189548837 433.6629052688631 -1757.177404035377 -131.4471189548837 433.6629052688631 -1727.197862055505 -50.58353447235181 448.2692242096287 -1718.171549414015 -126.0954435730408 433.665673706602 -1745.579349333841 -228.496344424062 448.2446334866855 -1718.171549414015 -126.0954435730408 433.665673706602 -1757.177404035377 -131.4471189548837 433.6629052688631 -1706.573494712147 -223.1446690423911 448.2474019243834 -1706.573494712147 -223.1446690423911 448.2474019243834 -1745.579349333841 -228.496344424062 448.2446334866855 -1718.171549414015 -126.0954435730408 433.665673706602 -1757.177404035377 -131.4471189548837 433.6629052688631 -1733.979524663167 -325.5404609500515 433.6383599951802 -1694.973670041332 -320.1887855683627 433.6411284329042 -1694.973670041332 -320.1887855683627 433.6411284329042 -1733.979524663167 -325.5404609500515 433.6383599951802 -1648.577754398476 -708.3750659731235 431.286607879809 -1639.524296981296 -783.8265108165521 448.2656981852533 -1639.525134203518 -783.8287067008091 431.2959296564031 -1648.577911296256 -708.375469558476 433.5920378854186 -1648.582246666743 -708.3376228916135 431.2866032539749 -1648.582246666743 -708.3376228916135 431.2866032539749 -1648.577754398476 -708.3750659731235 431.286607879809 -1648.577911296256 -708.375469558476 433.5920378854186 -1639.524296981296 -783.8265108165521 448.2656981852533 -1639.525134203518 -783.8287067008091 431.2959296564031 -1745.579349333841 -228.496344424062 448.2446334866855 -1786.428975399135 -135.4527368250738 387.1636634269192 -2425.543849405076 -518.9864483563464 42.25874134146841 -2425.543849405076 -518.9864483563464 42.25874134146841 -1786.428975399135 -135.4527368250738 387.1636634269192 -1745.579349333841 -228.496344424062 448.2446334866855 -1745.579349333841 -228.496344424062 448.2446334866855 -1745.579349333841 -228.496344424062 448.2446334866855 -1768.777228706174 -34.40300242908803 448.2691787604369 -1768.777228706174 -34.40300242908803 448.2691787604369 -1757.177404035377 -131.4471189548837 433.6629052688631 -1786.428975399135 -135.4527368250738 387.1636634269192 -1745.579349333841 -228.496344424062 448.2446334866855 -1745.579349333841 -228.496344424062 448.2446334866855 -1786.428975399135 -135.4527368250738 387.1636634269192 -1757.177404035377 -131.4471189548837 433.6629052688631 -1768.777228706174 -34.40300242908803 448.2691787604369 -2425.543849405076 -518.9864483563464 42.25874134146841 -1786.428975399135 -135.4527368250738 387.1636634269192 -1786.428975399135 -135.4527368250738 387.1636634269192 -2425.543849405076 -518.9864483563464 42.25874134146841 -1768.777228706174 -34.40300242908803 448.2691787604369 -1768.777228706174 -34.40300242908803 448.2691787604369 -1768.777228706174 -34.40300242908803 448.2691787604369</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"262\" source=\"#ID4060\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4058\">\r\n\t\t\t\t\t<float_array count=\"786\" id=\"ID4061\">0.2985731854655176 0.4412887735602268 -0.8462377155685538 0.2985731854655176 0.4412887735602268 -0.8462377155685538 0.2985731854655176 0.4412887735602268 -0.8462377155685538 -0.2985731854655176 -0.4412887735602268 0.8462377155685538 -0.2985731854655176 -0.4412887735602268 0.8462377155685538 -0.2985731854655176 -0.4412887735602268 0.8462377155685538 -0.9929332008898817 -0.1186745634588738 -8.098406991465342e-005 -0.9929332008898817 -0.1186745634588738 -8.098406991465342e-005 -0.9929332008898817 -0.1186745634588738 -8.098406991465342e-005 -0.9929332008898817 -0.1186745634588738 -8.098406991465342e-005 -0.9929332008898817 -0.1186745634588738 -8.098406991465342e-005 -0.9929332008898817 -0.1186745634588738 -8.098406991465342e-005 -0.9929332008898817 -0.1186745634588738 -8.098406991465342e-005 -0.9929332008898817 -0.1186745634588738 -8.098406991465342e-005 -0.9929332008898817 -0.1186745634588738 -8.098406991465342e-005 -0.9929332008898817 -0.1186745634588738 -8.098406991465342e-005 -0.9929332008898817 -0.1186745634588738 -8.098406991465342e-005 0.9929332008898817 0.1186745634588738 8.098406991465342e-005 0.9929332008898817 0.1186745634588738 8.098406991465342e-005 0.9929332008898817 0.1186745634588738 8.098406991465342e-005 0.9929332008898817 0.1186745634588738 8.098406991465342e-005 0.9929332008898817 0.1186745634588738 8.098406991465342e-005 0.9929332008898817 0.1186745634588738 8.098406991465342e-005 0.9929332008898817 0.1186745634588738 8.098406991465342e-005 0.9929332008898817 0.1186745634588738 8.098406991465342e-005 0.9929332008898817 0.1186745634588738 8.098406991465342e-005 0.9929332008898817 0.1186745634588738 8.098406991465342e-005 0.9929332008898817 0.1186745634588738 8.098406991465342e-005 0.4934209863608463 -0.3270980892947563 -0.8059420389819664 0.4934209863608463 -0.3270980892947563 -0.8059420389819664 0.4934209863608463 -0.3270980892947563 -0.8059420389819664 -0.4934209863608463 0.3270980892947563 0.8059420389819664 -0.4934209863608463 0.3270980892947563 0.8059420389819664 -0.4934209863608463 0.3270980892947563 0.8059420389819664 0.5687806184168043 -0.2990212850600767 -0.7662081174161615 0.5687806184168043 -0.2990212850600767 -0.7662081174161615 0.5687806184168043 -0.2990212850600767 -0.7662081174161615 -0.5687806184168043 0.2990212850600767 0.7662081174161615 -0.5687806184168043 0.2990212850600767 0.7662081174161615 -0.5687806184168043 0.2990212850600767 0.7662081174161615 0.3549528327400056 0.9348841918893782 0.0001851626044170197 0.3549528327400056 0.9348841918893782 0.0001851626044170197 0.3549528327400056 0.9348841918893782 0.0001851626044170197 -0.3549528327400056 -0.9348841918893782 -0.0001851626044170197 -0.3549528327400056 -0.9348841918893782 -0.0001851626044170197 -0.3549528327400056 -0.9348841918893782 -0.0001851626044170197 0.2941437856290646 -0.4122436798104511 -0.8622845132739782 0.2941437856290646 -0.4122436798104511 -0.8622845132739782 0.2941437856290646 -0.4122436798104511 -0.8622845132739782 -0.2941437856290646 0.4122436798104511 0.8622845132739782 -0.2941437856290646 0.4122436798104511 0.8622845132739782 -0.2941437856290646 0.4122436798104511 0.8622845132739782 0.4728378239403948 0.4261744711423712 -0.7712325929301955 0.4728378239403948 0.4261744711423712 -0.7712325929301955 0.4728378239403948 0.4261744711423712 -0.7712325929301955 -0.4728378239403948 -0.4261744711423712 0.7712325929301955 -0.4728378239403948 -0.4261744711423712 0.7712325929301955 -0.4728378239403948 -0.4261744711423712 0.7712325929301955 0.406007648875671 -0.354848841087292 -0.8421639323988268 0.406007648875671 -0.354848841087292 -0.8421639323988268 0.406007648875671 -0.354848841087292 -0.8421639323988268 -0.406007648875671 0.354848841087292 0.8421639323988268 -0.406007648875671 0.354848841087292 0.8421639323988268 -0.406007648875671 0.354848841087292 0.8421639323988268 0.3915251693851096 0.4353183856214389 -0.8106823945774977 0.3915251693851096 0.4353183856214389 -0.8106823945774977 0.3915251693851096 0.4353183856214389 -0.8106823945774977 -0.3915251693851096 -0.4353183856214389 0.8106823945774977 -0.3915251693851096 -0.4353183856214389 0.8106823945774977 -0.3915251693851096 -0.4353183856214389 0.8106823945774977 0.1739793575759258 0.4700619548797735 -0.8653166713475905 0.1739793575759258 0.4700619548797735 -0.8653166713475905 0.1739793575759258 0.4700619548797735 -0.8653166713475905 -0.1739793575759258 -0.4700619548797735 0.8653166713475905 -0.1739793575759258 -0.4700619548797735 0.8653166713475905 -0.1739793575759258 -0.4700619548797735 0.8653166713475905 0.5872704754785434 -0.809390744561903 -0.0001060600499342711 0.5872704754785434 -0.809390744561903 -0.0001060600499342711 0.5872704754785434 -0.809390744561903 -0.0001060600499342711 -0.5872704754785434 0.809390744561903 0.0001060600499342711 -0.5872704754785434 0.809390744561903 0.0001060600499342711 -0.5872704754785434 0.809390744561903 0.0001060600499342711 0.427044124278561 0.05115413557148973 -0.9027826816754355 0.427044124278561 0.05115413557148973 -0.9027826816754355 0.427044124278561 0.05115413557148973 -0.9027826816754355 -0.427044124278561 -0.05115413557148973 0.9027826816754355 -0.427044124278561 -0.05115413557148973 0.9027826816754355 -0.427044124278561 -0.05115413557148973 0.9027826816754355 0.4270441242751835 0.05115413557659396 -0.9027826816767438 0.4270441242751835 0.05115413557659396 -0.9027826816767438 0.4270441242751835 0.05115413557659396 -0.9027826816767438 -0.4270441242751835 -0.05115413557659396 0.9027826816767438 -0.4270441242751835 -0.05115413557659396 0.9027826816767438 -0.4270441242751835 -0.05115413557659396 0.9027826816767438 -0.3626778537266934 -0.9319145562496721 -0.0001851112540457765 -0.3626778537266934 -0.9319145562496721 -0.0001851112540457765 -0.3626778537266934 -0.9319145562496721 -0.0001851112540457765 0.3626778537266934 0.9319145562496721 0.0001851112540457765 0.3626778537266934 0.9319145562496721 0.0001851112540457765 0.3626778537266934 0.9319145562496721 0.0001851112540457765 -0.2942621043338023 0.4308482721542934 0.8530999826132354 -0.2942621043338023 0.4308482721542934 0.8530999826132354 -0.2942621043338023 0.4308482721542934 0.8530999826132354 0.2942621043338023 -0.4308482721542934 -0.8530999826132354 0.2942621043338023 -0.4308482721542934 -0.8530999826132354 0.2942621043338023 -0.4308482721542934 -0.8530999826132354 -0.4889248159231743 -0.387263378466471 0.7816518407022561 -0.4889248159231743 -0.387263378466471 0.7816518407022561 -0.4889248159231743 -0.387263378466471 0.7816518407022561 0.4889248159231743 0.387263378466471 -0.7816518407022561 0.4889248159231743 0.387263378466471 -0.7816518407022561 0.4889248159231743 0.387263378466471 -0.7816518407022561 -0.8381982260186791 -0.1007831168569796 0.5359724780767494 -0.8383221182243752 -0.09978878576540927 0.5359647603446166 -0.8454491098347983 -0.02085587049083614 0.5336486066182659 0.8454491098347983 0.02085587049083614 -0.5336486066182659 0.8383221182243752 0.09978878576540927 -0.5359647603446166 0.8381982260186791 0.1007831168569796 -0.5359724780767494 -0.4166051627564945 0.3639701942036721 0.8330461188289495 -0.4166051627564945 0.3639701942036721 0.8330461188289495 -0.4166051627564945 0.3639701942036721 0.8330461188289495 0.4166051627564945 -0.3639701942036721 -0.8330461188289495 0.4166051627564945 -0.3639701942036721 -0.8330461188289495 0.4166051627564945 -0.3639701942036721 -0.8330461188289495 -0.8257106305827501 -0.1792029111506538 0.5348722007898411 0.8257106305827501 0.1792029111506538 -0.5348722007898411 -0.0130149376215751 0.001658164769139746 0.9999139272398924 -0.0002749792327796906 0.001486892395925193 0.9999988567680588 -0.08987388738546667 0.1639165484875249 0.9823716453044444 0.08987388738546667 -0.1639165484875249 -0.9823716453044444 0.0002749792327796906 -0.001486892395925193 -0.9999988567680588 0.0130149376215751 -0.001658164769139746 -0.9999139272398924 -0.8381982260172962 -0.1007831168570595 0.5359724780788974 -0.8383221182228954 -0.09978878576627691 0.5359647603467692 -0.845449109833487 -0.0208558704916317 0.5336486066203122 0.845449109833487 0.0208558704916317 -0.5336486066203122 0.8383221182228954 0.09978878576627691 -0.5359647603467692 0.8381982260172962 0.1007831168570595 -0.5359724780788974 -0.4104636218062722 -0.4182829222915365 0.8102832912586376 -0.4104636218062722 -0.4182829222915365 0.8102832912586376 -0.4104636218062722 -0.4182829222915365 0.8102832912586376 0.4104636218062722 0.4182829222915365 -0.8102832912586376 0.4104636218062722 0.4182829222915365 -0.8102832912586376 0.4104636218062722 0.4182829222915365 -0.8102832912586376 -0.0002749792331673057 0.001486892395409246 0.9999988567680594 0.0001697037971647513 -0.001754193668653431 0.9999984470013912 0.0002749792331673057 -0.001486892395409246 -0.9999988567680594 -0.0001697037971647513 0.001754193668653431 -0.9999984470013912 -0.1280223507207672 0.1732931109471199 0.9765140938123721 0.1280223507207672 -0.1732931109471199 -0.9765140938123721 -0.8257106305812724 -0.1792029111506837 0.5348722007921125 0.8257106305812724 0.1792029111506837 -0.5348722007921125 0.0001697037969779422 -0.001754193668813303 0.9999984470013908 -0.0002749792334142087 0.001486892395720352 0.9999988567680589 -0.0001697037969779422 0.001754193668813303 -0.9999984470013908 0.0002749792334142087 -0.001486892395720352 -0.9999988567680589 -0.5071084348630832 0.3062442587210127 0.8056398012084133 -0.5071084348630832 0.3062442587210127 0.8056398012084133 -0.5071084348630832 0.3062442587210127 0.8056398012084133 0.5071084348630832 -0.3062442587210127 -0.8056398012084133 0.5071084348630832 -0.3062442587210127 -0.8056398012084133 0.5071084348630832 -0.3062442587210127 -0.8056398012084133 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 0.9929331944027892 0.1186746168547165 8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.9929331944027892 -0.1186746168547165 -8.226456929305679e-005 -0.0002749792334975312 0.001486892395535434 0.999998856768059 0.0001697037968135191 -0.001754193668389938 0.9999984470013916 0.0002749792334975312 -0.001486892395535434 -0.999998856768059 -0.0001697037968135191 0.001754193668389938 -0.9999984470013916 -0.3064881855191436 -0.4527778570056307 0.8372915886013497 -0.3064881855191436 -0.4527778570056307 0.8372915886013497 -0.3064881855191436 -0.4527778570056307 0.8372915886013497 0.3064881855191436 0.4527778570056307 -0.8372915886013497 0.3064881855191436 0.4527778570056307 -0.8372915886013497 0.3064881855191436 0.4527778570056307 -0.8372915886013497 -0.8381982260150545 -0.1007831168565524 0.5359724780824984 -0.8383221182206699 -0.09978878576563684 0.5359647603503692 -0.8454491098312637 -0.0208558704903382 0.5336486066238854 0.8454491098312637 0.0208558704903382 -0.5336486066238854 0.8383221182206699 0.09978878576563684 -0.5359647603503692 0.8381982260150545 0.1007831168565524 -0.5359724780824984 0.02556875594564986 -0.1868667019342145 0.982052480485448 -0.04101614492951868 -0.1628571924779322 0.9857967390457968 -0.0003716186724365195 -0.1776192118001222 0.9840992213689968 0.0003716186724365195 0.1776192118001222 -0.9840992213689968 0.04101614492951868 0.1628571924779322 -0.9857967390457968 -0.02556875594564986 0.1868667019342145 -0.982052480485448 0.0001697037968777126 -0.001754193668600302 0.9999984470013913 -0.02012911702158477 0.1462000649145079 0.9890502311141356 -0.02012911702158477 0.1462000649145079 0.9890502311141356 -0.0002749792334490151 0.001486892395448356 0.9999988567680593 0.0002749792334490151 -0.001486892395448356 -0.9999988567680593 -0.0001697037968777126 0.001754193668600302 -0.9999984470013913 0.02012911702158477 -0.1462000649145079 -0.9890502311141356 0.02012911702158477 -0.1462000649145079 -0.9890502311141356 -0.0002749792335297968 0.001486892395696475 0.9999988567680588 0.0001697037968406971 -0.001754193668663799 0.9999984470013911 -0.0001697037968406971 0.001754193668663799 -0.9999984470013911 0.0002749792335297968 -0.001486892395696475 -0.9999988567680588 0.9928794368610184 0.1191235500235881 -6.07315808227228e-005 0.9928794368610184 0.1191235500235881 -6.07315808227228e-005 0.9928794368610184 0.1191235500235881 -6.07315808227228e-005 0.9928794368610184 0.1191235500235881 -6.07315808227228e-005 0.9928794368610184 0.1191235500235881 -6.07315808227228e-005 -0.9928794368610184 -0.1191235500235881 6.07315808227228e-005 -0.9928794368610184 -0.1191235500235881 6.07315808227228e-005 -0.9928794368610184 -0.1191235500235881 6.07315808227228e-005 -0.9928794368610184 -0.1191235500235881 6.07315808227228e-005 -0.9928794368610184 -0.1191235500235881 6.07315808227228e-005 -0.5741641742488214 0.2580171334809328 0.7770216598264502 -0.5741641742488214 0.2580171334809328 0.7770216598264502 -0.5741641742488214 0.2580171334809328 0.7770216598264502 0.5741641742488214 -0.2580171334809328 -0.7770216598264502 0.5741641742488214 -0.2580171334809328 -0.7770216598264502 0.5741641742488214 -0.2580171334809328 -0.7770216598264502 -0.8257106305789482 -0.1792029111508155 0.5348722007956561 0.8257106305789482 0.1792029111508155 -0.5348722007956561 -0.06056712723634754 -0.1556375261740626 0.9859556701722214 0.06056712723634754 0.1556375261740626 -0.9859556701722214 -0.838198226013115 -0.1007831168565816 0.535972478085526 -0.8383221182187526 -0.09978878576549256 0.5359647603533954 -0.8454491098293936 -0.02085587048986049 0.5336486066268668 0.8454491098293936 0.02085587048986049 -0.5336486066268668 0.8383221182187526 0.09978878576549256 -0.5359647603533954 0.838198226013115 0.1007831168565816 -0.535972478085526 -0.1690768788226525 -0.4882102506205563 0.8561914273318811 -0.1690768788226525 -0.4882102506205563 0.8561914273318811 -0.1690768788226525 -0.4882102506205563 0.8561914273318811 0.1690768788226525 0.4882102506205563 -0.8561914273318811 0.1690768788226525 0.4882102506205563 -0.8561914273318811 0.1690768788226525 0.4882102506205563 -0.8561914273318811 -0.8257106305769132 -0.1792029111511904 0.5348722007986722 0.8257106305769132 0.1792029111511904 -0.5348722007986722</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"262\" source=\"#ID4061\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4059\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4057\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4058\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"71\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4059\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8 7 6 9 9 6 10 10 6 11 9 10 12 12 10 13 9 12 14 14 12 15 9 14 16 28 29 30 34 35 36 40 41 42 46 47 48 52 53 54 58 59 60 64 65 66 70 71 72 76 77 78 82 83 84 88 89 90 94 95 96 100 101 102 106 107 108 112 113 114 118 119 120 124 113 112 126 127 128 132 133 134 138 139 140 127 144 145 144 127 126 148 126 128 150 133 132 145 152 153 152 145 144 156 157 158 162 163 164 163 162 165 163 166 167 166 163 165 166 165 168 166 168 169 169 168 170 170 168 171 171 168 172 171 172 173 171 173 174 173 172 175 173 175 176 176 175 177 153 194 195 194 153 152 198 199 200 204 205 206 210 211 212 216 217 218 217 216 219 224 219 216 219 224 225 195 225 224 225 195 194 228 229 230 229 228 231 231 228 232 238 239 240 244 205 204 211 246 212 248 249 250 254 255 256 260 249 248</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"71\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4059\" />\r\n\t\t\t\t\t<p>3 4 5 17 18 19 20 21 18 18 21 19 22 23 21 21 23 19 24 25 23 23 25 19 19 25 26 27 26 25 31 32 33 37 38 39 43 44 45 49 50 51 55 56 57 61 62 63 67 68 69 73 74 75 79 80 81 85 86 87 91 92 93 97 98 99 103 104 105 109 110 111 115 116 117 121 122 123 117 116 125 129 130 131 135 136 137 141 142 143 131 130 146 147 146 130 129 131 149 137 136 151 146 147 154 155 154 147 159 160 161 178 179 180 180 179 181 179 182 181 183 181 184 181 182 184 182 185 184 184 185 186 186 185 187 187 185 188 185 189 188 189 190 188 191 188 190 189 192 190 193 190 192 154 155 196 197 196 155 201 202 203 207 208 209 213 214 215 220 221 222 223 222 221 226 227 220 221 220 227 196 197 226 227 226 197 233 234 235 235 234 236 237 236 234 241 242 243 209 208 245 213 247 214 251 252 253 257 258 259 253 252 261</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4062\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4063\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4065\">-1639.553368625746 -783.8924869336934 448.1711052908121 -1639.553368624176 -783.8924876024156 448.1764890915895</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4065\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4064\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4063\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4064\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4066\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4067\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4069\">-1727.198075278173 -50.58332933109099 431.202398308933 -1727.197893217811 -50.5834982616663 445.7963993529569</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4069\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4068\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4067\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4068\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4072\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4073\">\r\n\t\t\t\t\t<float_array count=\"354\" id=\"ID4076\">-10.60550294693621 6.812223201826555 76.51349330961983 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 460.6139713682113 -716.4778733919748 234.189700917167 -10.60550294695145 6.812237000088544 -2.226664360359507 -10.60550294695145 6.812237000088544 -2.226664360359507 -10.60550294693621 6.812223201826555 76.51349330961983 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 460.6139713682113 -716.4778733919748 234.189700917167 230.8099458516108 6.812237000084792 -2.226664360339555 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 -10.60550294695145 6.812237000088544 -2.226664360359507 241.9726684508291 5.002220859751105e-012 -4.132516551180743e-011 251.7019252709013 6.812237000082973 -2.226664360337963 483.3843441009414 1.284661266254261e-011 -2.347633198951371e-011 455.0452133103389 6.812237000069331 -2.226664360317386 483.3872593847015 6.812237000071832 -2.226664360316022 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 747.1264376524134 6.812237000073992 -2.226664360293057 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 747.1264376524134 6.812237000073992 -2.226664360293057 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 483.3872593847015 6.812237000071832 -2.226664360316022 483.3843441009414 1.284661266254261e-011 -2.347633198951371e-011 455.0452133103389 6.812237000069331 -2.226664360317386 251.7019252709013 6.812237000082973 -2.226664360337963 241.9726684508291 5.002220859751105e-012 -4.132516551180743e-011 230.8099458516108 6.812237000084792 -2.226664360339555 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 -10.60550294695145 6.812237000088544 -2.226664360359507 460.6139713682113 -716.4778733919748 234.189700917167 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 115.6831538196238 -1.092436036742583e-005 62.34026376937908 115.6831538196238 -1.092436036742583e-005 62.34026376937908 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 3.568409035954574 6.812223201826782 76.51349328730481 -10.60550294693621 6.812223201826555 76.51349330961983 -10.60550294693621 6.812223201826555 76.51349330961983 3.568409035954574 6.812223201826782 76.51349328730481 460.6139713682113 -716.4778733919748 234.189700917167 620.8377808858617 -1.092436423277832e-005 62.34026376926641 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 620.8377808858617 -1.092436423277832e-005 62.34026376926641 368.2604673527391 -1.092436536964669e-005 62.34026376933497 483.3843441009414 1.284661266254261e-011 -2.347633198951371e-011 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 241.9726684508398 -0.002644032025841625 0.0008638547279247177 241.9726684508398 -0.002644032025841625 0.0008638547279247177 368.2604673527391 -1.092436536964669e-005 62.34026376933497 483.3843441009414 1.284661266254261e-011 -2.347633198951371e-011 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 115.6831538196238 -1.092436036742583e-005 62.34026376937908 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 241.9726684508291 5.002220859751105e-012 -4.132516551180743e-011 241.9726684508291 5.002220859751105e-012 -4.132516551180743e-011 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 115.6831538196238 -1.092436036742583e-005 62.34026376937908 483.3872593847015 6.812237000071832 -2.226664360316022 455.0452133103389 6.812237000069331 -2.226664360317386 455.0452179998614 6.823195162639308 -2.230246171994565 455.0452179998614 6.823195162639308 -2.230246171994565 455.0452133103389 6.812237000069331 -2.226664360317386 483.3872593847015 6.812237000071832 -2.226664360316022 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 747.1264376524391 6.812223201792904 76.51349330949375 460.6139713682113 -716.4778733919748 234.189700917167 747.1264376524134 6.812237000073992 -2.226664360293057 747.1264376524134 6.812237000073992 -2.226664360293057 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 747.1264376524391 6.812223201792904 76.51349330949375 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 115.6831538196238 -1.092436036742583e-005 62.34026376937908 241.9726684508398 -0.002644032025841625 0.0008638547279247177 241.9726684508398 -0.002644032025841625 0.0008638547279247177 115.6831538196238 -1.092436036742583e-005 62.34026376937908 460.6139713682113 -716.4778733919748 234.189700917167 3.568409035945933 6.814490132649098 17.21621980177724 3.568409035954574 6.812223201826782 76.51349328730481 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 3.568409035954574 6.812223201826782 76.51349328730481 3.568409035945933 6.814490132649098 17.21621980177724 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 460.6139713682113 -716.4778733919748 234.189700917167 620.8377808858617 -1.092436423277832e-005 62.34026376926641 620.8377808858617 -1.092436423277832e-005 62.34026376926641 460.6139713682113 -716.4778733919748 234.189700917167 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 620.8377808858617 -1.092436423277832e-005 62.34026376926641 460.6139713682113 -716.4778733919748 234.189700917167 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 460.6139713682113 -716.4778733919748 234.189700917167 620.8377808858617 -1.092436423277832e-005 62.34026376926641 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 460.6139713682113 -716.4778733919748 234.189700917167 368.2604673527391 -1.092436536964669e-005 62.34026376933497 368.2604673527391 -1.092436536964669e-005 62.34026376933497 460.6139713682113 -716.4778733919748 234.189700917167 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 460.6139713682113 -716.4778733919748 234.189700917167 241.9726684508398 -0.002644032025841625 0.0008638547279247177 368.2604673527391 -1.092436536964669e-005 62.34026376933497 368.2604673527391 -1.092436536964669e-005 62.34026376933497 241.9726684508398 -0.002644032025841625 0.0008638547279247177 460.6139713682113 -716.4778733919748 234.189700917167 3.56840903594366 6.814606465975089 14.17322954063104 3.568409035945933 6.814490132649098 17.21621980177724 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 3.568409035945933 6.814490132649098 17.21621980177724 3.56840903594366 6.814606465975089 14.17322954063104</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"118\" source=\"#ID4076\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4074\">\r\n\t\t\t\t\t<float_array count=\"354\" id=\"ID4077\">-0.8378709868390235 -0.5458683077569092 -9.565670618463657e-008 -0.8378709868390235 -0.5458683077569092 -9.565670618463657e-008 -0.8378709868390235 -0.5458683077569092 -9.565670618463657e-008 -0.8378709868390235 -0.5458683077569092 -9.565670618463657e-008 0.8378709868390235 0.5458683077569092 9.565670618463657e-008 0.8378709868390235 0.5458683077569092 9.565670618463657e-008 0.8378709868390235 0.5458683077569092 9.565670618463657e-008 0.8378709868390235 0.5458683077569092 9.565670618463657e-008 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 0.4554575023196747 0.005742335681429244 -0.8902390067625915 0.4554575023196747 0.005742335681429244 -0.8902390067625915 0.4554575023196747 0.005742335681429244 -0.8902390067625915 -0.4554575023196747 -0.005742335681429244 0.8902390067625915 -0.4554575023196747 -0.005742335681429244 0.8902390067625915 -0.4554575023196747 -0.005742335681429244 0.8902390067625915 1.538292875210742e-009 0.212996166581034 0.977053034907412 1.538292875210742e-009 0.212996166581034 0.977053034907412 1.538292875210742e-009 0.212996166581034 0.977053034907412 -1.538292875210742e-009 -0.212996166581034 -0.977053034907412 -1.538292875210742e-009 -0.212996166581034 -0.977053034907412 -1.538292875210742e-009 -0.212996166581034 -0.977053034907412 -2.275238329681381e-014 -0.9999999999999847 -1.75237907563655e-007 -2.275238329681381e-014 -0.9999999999999847 -1.75237907563655e-007 -2.275238329681381e-014 -0.9999999999999847 -1.75237907563655e-007 2.275238329681381e-014 0.9999999999999847 1.75237907563655e-007 2.275238329681381e-014 0.9999999999999847 1.75237907563655e-007 2.275238329681381e-014 0.9999999999999847 1.75237907563655e-007 1.068861753817745e-005 -0.9999999997318919 2.054190683751488e-005 1.068861753817745e-005 -0.9999999997318919 2.054190683751488e-005 1.068861753817745e-005 -0.9999999997318919 2.054190683751488e-005 1.068861753817745e-005 -0.9999999997318919 2.054190683751488e-005 -1.068861753817745e-005 0.9999999997318919 -2.054190683751488e-005 -1.068861753817745e-005 0.9999999997318919 -2.054190683751488e-005 -1.068861753817745e-005 0.9999999997318919 -2.054190683751488e-005 -1.068861753817745e-005 0.9999999997318919 -2.054190683751488e-005 -3.002925309277699e-014 -0.9999999999999847 -1.752378208294868e-007 -3.002925309277699e-014 -0.9999999999999847 -1.752378208294868e-007 -3.002925309277699e-014 -0.9999999999999847 -1.752378208294868e-007 3.002925309277699e-014 0.9999999999999847 1.752378208294868e-007 3.002925309277699e-014 0.9999999999999847 1.752378208294868e-007 3.002925309277699e-014 0.9999999999999847 1.752378208294868e-007 7.652387948320986e-014 -0.3106867789905536 -0.9505123488732143 7.652387948320986e-014 -0.3106867789905536 -0.9505123488732143 7.652387948320986e-014 -0.3106867789905536 -0.9505123488732143 -7.652387948320986e-014 0.3106867789905536 0.9505123488732143 -7.652387948320986e-014 0.3106867789905536 0.9505123488732143 -7.652387948320986e-014 0.3106867789905536 0.9505123488732143 0.9297141440677855 -0.3682819712126846 -6.453717382087217e-008 0.9297141440677855 -0.3682819712126846 -6.453717382087217e-008 0.9297141440677855 -0.3682819712126846 -6.453717382087217e-008 0.9297141440677855 -0.3682819712126846 -6.453717382087217e-008 -0.9297141440677855 0.3682819712126846 6.453717382087217e-008 -0.9297141440677855 0.3682819712126846 6.453717382087217e-008 -0.9297141440677855 0.3682819712126846 6.453717382087217e-008 -0.9297141440677855 0.3682819712126846 6.453717382087217e-008 -0.4069090488152992 -0.3936109890718622 -0.8243151189163638 -0.4069090488152992 -0.3936109890718622 -0.8243151189163638 -0.4069090488152992 -0.3936109890718622 -0.8243151189163638 0.4069090488152992 0.3936109890718622 0.8243151189163638 0.4069090488152992 0.3936109890718622 0.8243151189163638 0.4069090488152992 0.3936109890718622 0.8243151189163638 0.8453650990408669 0.5341889636697554 2.042200842912393e-005 0.8453650990408669 0.5341889636697554 2.042200842912393e-005 0.8453650990408669 0.5341889636697554 2.042200842912393e-005 -0.8453650990408669 -0.5341889636697554 -2.042200842912393e-005 -0.8453650990408669 -0.5341889636697554 -2.042200842912393e-005 -0.8453650990408669 -0.5341889636697554 -2.042200842912393e-005 -0.4474915832276384 -0.1127159921110668 -0.8871563492771947 -0.4474915832276384 -0.1127159921110668 -0.8871563492771947 -0.4474915832276384 -0.1127159921110668 -0.8871563492771947 0.4474915832276384 0.1127159921110668 0.8871563492771947 0.4474915832276384 0.1127159921110668 0.8871563492771947 0.4474915832276384 0.1127159921110668 0.8871563492771947 0.4222939102679692 -0.2996318300996865 -0.8555048917111469 0.4222939102679692 -0.2996318300996865 -0.8555048917111469 0.4222939102679692 -0.2996318300996865 -0.8555048917111469 -0.4222939102679692 0.2996318300996865 0.8555048917111469 -0.4222939102679692 0.2996318300996865 0.8555048917111469 -0.4222939102679692 0.2996318300996865 0.8555048917111469 -0.4271173421898757 -0.2625829552843425 -0.8652288527290326 -0.4271173421898757 -0.2625829552843425 -0.8652288527290326 -0.4271173421898757 -0.2625829552843425 -0.8652288527290326 0.4271173421898757 0.2625829552843425 0.8652288527290326 0.4271173421898757 0.2625829552843425 0.8652288527290326 0.4271173421898757 0.2625829552843425 0.8652288527290326 0.437215510853546 -0.1560832944052977 -0.885709095740053 0.437215510853546 -0.1560832944052977 -0.885709095740053 0.437215510853546 -0.1560832944052977 -0.885709095740053 -0.437215510853546 0.1560832944052977 0.885709095740053 -0.437215510853546 0.1560832944052977 0.885709095740053 -0.437215510853546 0.1560832944052977 0.885709095740053 0.8453650990414756 0.5341889636687919 2.042200588795507e-005 0.8453650990414756 0.5341889636687919 2.042200588795507e-005 0.8453650990414756 0.5341889636687919 2.042200588795507e-005 -0.8453650990414756 -0.5341889636687919 -2.042200588795507e-005 -0.8453650990414756 -0.5341889636687919 -2.042200588795507e-005 -0.8453650990414756 -0.5341889636687919 -2.042200588795507e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"118\" source=\"#ID4077\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4075\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4073\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4074\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"27\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4075\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 11 8 12 11 12 13 13 12 14 13 14 15 13 15 16 16 15 17 16 17 18 30 31 32 36 37 38 42 43 44 48 49 50 49 48 51 56 57 58 62 63 64 68 69 70 69 68 71 76 77 78 82 83 84 88 89 90 94 95 96 100 101 102 106 107 108 112 113 114</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"27\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4075\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 19 20 21 20 22 21 21 22 23 22 24 23 24 25 23 23 25 26 25 27 26 26 27 28 29 28 27 33 34 35 39 40 41 45 46 47 52 53 54 55 54 53 59 60 61 65 66 67 72 73 74 75 74 73 79 80 81 85 86 87 91 92 93 97 98 99 103 104 105 109 110 111 115 116 117</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4078\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4079\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID4082\">460.6139713682113 -716.4778733919748 234.189700917167 115.6831538193758 6.816291415642581 70.60798139029129 3.568409035945933 6.814490132649098 17.21621980177724 3.568409035945933 6.814490132649098 17.21621980177724 115.6831538193758 6.816291415642581 70.60798139029129 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 241.9718105879431 6.810680644316562 17.45837520432889 115.6831538193758 6.816291415642581 70.60798139029129 115.6831538193758 6.816291415642581 70.60798139029129 241.9718105879431 6.810680644316562 17.45837520432889 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 368.2604673529305 6.814472648774313 70.60798192694819 241.9718105879431 6.810680644316562 17.45837520432889 241.9718105879431 6.810680644316562 17.45837520432889 368.2604673529305 6.814472648774313 70.60798192694819 460.6139713682113 -716.4778733919748 234.189700917167 494.5491241210725 6.8106806442986 17.45837521186621 368.2604673529305 6.814472648774313 70.60798192694819 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 368.2604673529305 6.814472648774313 70.60798192694819 494.5491241210725 6.8106806442986 17.45837521186621 368.2604673529305 6.814472648774313 70.60798192694819 494.5491241210725 6.8106806442986 17.45837521186621 241.9718105879431 6.810680644316562 17.45837520432889 241.9718105879431 6.810680644316562 17.45837520432889 494.5491241210725 6.8106806442986 17.45837521186621 368.2604673529305 6.814472648774313 70.60798192694819 620.8377808860525 6.812913439943259 70.60798147844167 494.5491241210725 6.8106806442986 17.45837521186621 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 494.5491241210725 6.8106806442986 17.45837521186621 620.8377808860525 6.812913439943259 70.60798147844167 732.9532093060069 6.810680644296212 17.45837521898 620.8377808860525 6.812913439943259 70.60798147844167 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 620.8377808860525 6.812913439943259 70.60798147844167 732.9532093060069 6.810680644296212 17.45837521898 732.9532093060069 6.810680644296212 17.45837521898 620.8377808860568 6.814472648773517 70.60798192690544 620.8377808860525 6.812913439943259 70.60798147844167 620.8377808860525 6.812913439943259 70.60798147844167 620.8377808860568 6.814472648773517 70.60798192690544 732.9532093060069 6.810680644296212 17.45837521898 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093060069 6.810680644296212 17.45837521898 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 732.9532093060069 6.810680644296212 17.45837521898 732.9532223139943 6.810690125986866 76.51328347705754 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093060069 6.810680644296212 17.45837521898 460.6139713682113 -716.4778733919748 234.189700917167 732.9532093063351 6.812317978336068 76.51349330701618 732.9532093063351 6.812317978336068 76.51349330701618 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093060069 6.810680644296212 17.45837521898 460.6139713682113 -716.4778733919748 234.189700917167 620.8377808860525 6.812913439943259 70.60798147844167 494.5491241210725 6.8106806442986 17.45837521186621 732.9532093060069 6.810680644296212 17.45837521898 732.9532093060069 6.810680644296212 17.45837521898 494.5491241210725 6.8106806442986 17.45837521186621 620.8377808860525 6.812913439943259 70.60798147844167 747.1264376524391 6.812223201792904 76.51349330949375 732.9532223139943 6.810690125986866 76.51328347705754 460.6139713682113 -716.4778733919748 234.189700917167 732.9532093063351 6.812317978336068 76.51349330701618 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093063351 6.812317978336068 76.51349330701618 747.1264376524391 6.812223201792904 76.51349330949375 460.6139713682113 -716.4778733919748 234.189700917167 732.9532093063351 6.812317978336068 76.51349330701618 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093060069 6.810680644296212 17.45837521898 732.9532093060069 6.810680644296212 17.45837521898 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093063351 6.812317978336068 76.51349330701618 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093063351 6.812317978336068 76.51349330701618 3.568409035954574 6.812223201826782 76.51349328730481 3.568409035954574 6.812223201826782 76.51349328730481 732.9532093063351 6.812317978336068 76.51349330701618 732.9532223139943 6.810690125986866 76.51328347705754</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID4082\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4080\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID4083\">-0.4299582780388869 -0.0008521759596814589 0.9028483554517719 -0.4299582780388869 -0.0008521759596814589 0.9028483554517719 -0.4299582780388869 -0.0008521759596814589 0.9028483554517719 0.4299582780388869 0.0008521759596814589 -0.9028483554517719 0.4299582780388869 0.0008521759596814589 -0.9028483554517719 0.4299582780388869 0.0008521759596814589 -0.9028483554517719 0.3609842530315138 0.3661274516665249 0.8576952012221223 0.3609842530315138 0.3661274516665249 0.8576952012221223 0.3609842530315138 0.3661274516665249 0.8576952012221223 -0.3609842530315138 -0.3661274516665249 -0.8576952012221223 -0.3609842530315138 -0.3661274516665249 -0.8576952012221223 -0.3609842530315138 -0.3661274516665249 -0.8576952012221223 -0.3831010018709191 0.1569538225640372 0.9102742004187722 -0.3831010018709191 0.1569538225640372 0.9102742004187722 -0.3831010018709191 0.1569538225640372 0.9102742004187722 0.3831010018709191 -0.1569538225640372 -0.9102742004187722 0.3831010018709191 -0.1569538225640372 -0.9102742004187722 0.3831010018709191 -0.1569538225640372 -0.9102742004187722 0.3756130433333598 0.249804730842502 0.8924754551955796 0.3756130433333598 0.249804730842502 0.8924754551955796 0.3756130433333598 0.249804730842502 0.8924754551955796 -0.3756130433333598 -0.249804730842502 -0.8924754551955796 -0.3756130433333598 -0.249804730842502 -0.8924754551955796 -0.3756130433333598 -0.249804730842502 -0.8924754551955796 4.426496584751e-014 0.9999999974548841 -7.134586102838354e-005 4.426496584751e-014 0.9999999974548841 -7.134586102838354e-005 4.426496584751e-014 0.9999999974548841 -7.134586102838354e-005 -4.426496584751e-014 -0.9999999974548841 7.134586102838354e-005 -4.426496584751e-014 -0.9999999974548841 7.134586102838354e-005 -4.426496584751e-014 -0.9999999974548841 7.134586102838354e-005 -0.3721198060128324 0.2824013926432465 0.884181148524513 -0.3721198060128324 0.2824013926432465 0.884181148524513 -0.3721198060128324 0.2824013926432465 0.884181148524513 0.3721198060128324 -0.2824013926432465 -0.884181148524513 0.3721198060128324 -0.2824013926432465 -0.884181148524513 0.3721198060128324 -0.2824013926432465 -0.884181148524513 0.4258226664836275 0.108820058549751 0.8982389724154716 0.4258226664836275 0.108820058549751 0.8982389724154716 0.4258226664836275 0.108820058549751 0.8982389724154716 -0.4258226664836275 -0.108820058549751 -0.8982389724154716 -0.4258226664836275 -0.108820058549751 -0.8982389724154716 -0.4258226664836275 -0.108820058549751 -0.8982389724154716 0.4283647347015759 -0.0002597520654789408 0.9036058801230285 0.4283647347015759 -0.0002597520654789408 0.9036058801230285 0.4283647347015759 -0.0002597520654789408 0.9036058801230285 -0.4283647347015759 0.0002597520654789408 -0.9036058801230285 -0.4283647347015759 0.0002597520654789408 -0.9036058801230285 -0.4283647347015759 0.0002597520654789408 -0.9036058801230285 -0.9358578286726064 0.3523778150113492 1.495639950690936e-007 -0.9358578286726064 0.3523778150113492 1.495639950690936e-007 -0.9358578286726064 0.3523778150113492 1.495639950690936e-007 0.9358578286726064 -0.3523778150113492 -1.495639950690936e-007 0.9358578286726064 -0.3523778150113492 -1.495639950690936e-007 0.9358578286726064 -0.3523778150113492 -1.495639950690936e-007 -0.9358583187659971 0.3523765133679367 -4.81020557757869e-006 -0.9358583187659971 0.3523765133679367 -4.81020557757869e-006 -0.9358583187659971 0.3523765133679367 -4.81020557757869e-006 -0.9358583187659971 0.3523765133679367 -4.81020557757869e-006 0.9358583187659971 -0.3523765133679367 4.81020557757869e-006 0.9358583187659971 -0.3523765133679367 4.81020557757869e-006 0.9358583187659971 -0.3523765133679367 4.81020557757869e-006 0.9358583187659971 -0.3523765133679367 4.81020557757869e-006 -1.910164731141618e-014 -0.9999999991175953 4.200963653558448e-005 -1.910164731141618e-014 -0.9999999991175953 4.200963653558448e-005 -1.910164731141618e-014 -0.9999999991175953 4.200963653558448e-005 1.910164731141618e-014 0.9999999991175953 -4.200963653558448e-005 1.910164731141618e-014 0.9999999991175953 -4.200963653558448e-005 1.910164731141618e-014 0.9999999991175953 -4.200963653558448e-005 -1.80391021871666e-005 0.2130029871362923 0.9770515478446404 -1.80391021871666e-005 0.2130029871362923 0.9770515478446404 -1.80391021871666e-005 0.2130029871362923 0.9770515478446404 -1.80391021871666e-005 0.2130029871362923 0.9770515478446404 1.80391021871666e-005 -0.2130029871362923 -0.9770515478446404 1.80391021871666e-005 -0.2130029871362923 -0.9770515478446404 1.80391021871666e-005 -0.2130029871362923 -0.9770515478446404 1.80391021871666e-005 -0.2130029871362923 -0.9770515478446404 0.999968075760748 0.007990460518521864 -2.215452428573613e-007 0.999968075760748 0.007990460518521864 -2.215452428573613e-007 0.999968075760748 0.007990460518521864 -2.215452428573613e-007 -0.999968075760748 -0.007990460518521864 2.215452428573613e-007 -0.999968075760748 -0.007990460518521864 2.215452428573613e-007 -0.999968075760748 -0.007990460518521864 2.215452428573613e-007 1.658317084327439e-008 -0.1278423427438335 0.9917945026071521 1.658317084327439e-008 -0.1278423427438335 0.9917945026071521 1.658317084327439e-008 -0.1278423427438335 0.9917945026071521 -1.658317084327439e-008 0.1278423427438335 -0.9917945026071521 -1.658317084327439e-008 0.1278423427438335 -0.9917945026071521 -1.658317084327439e-008 0.1278423427438335 -0.9917945026071521</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID4083\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4081\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4079\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4080\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4081\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8 12 13 14 18 19 20 24 25 26 30 31 32 36 37 38 42 43 44 48 49 50 54 55 56 55 54 57 62 63 64 68 69 70 68 71 69 76 77 78 82 83 84</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4081\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 15 16 17 21 22 23 27 28 29 33 34 35 39 40 41 45 46 47 51 52 53 58 59 60 61 60 59 65 66 67 72 73 74 75 72 74 79 80 81 85 86 87</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4084\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4085\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4087\">483.3843394114213 -0.01095816254257898 0.00358181165319138 483.3843441009414 1.284661266254261e-011 -2.347633198951371e-011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4087\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4086\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4085\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4086\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4088\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4089\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4091\">732.9532093060069 6.810680644296212 17.45837521898 747.1264376524642 6.810680644278591 17.45837521939853</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4091\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4090\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4089\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4090\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4092\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4093\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID4095\">3.568409035954574 6.812223201826782 76.51349328730481 3.568396027966628 6.812213720134196 17.45858502922579 241.9718105879431 6.810680644316562 17.45837520432889</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID4095\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4094\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4093\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4094\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4098\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4099\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID4102\">413.5861220788247 596.5971080973512 -15.04462598464374 -4.547473508864641e-012 -6.934897101018578e-012 -15.0446259842513 -0.03222641632146406 353.590181307425 -15.04462598441785 -678.2466131538226 -1065.033056999841 -15.04461537349573 -1236.472302367137 -748.2827669968171 -15.04461537352404 413.5861220810284 -467.9082807433531 -15.04462597010979 827.2483684108245 357.8193647383722 -15.04462598464454 827.2805948271071 4.229183430939997 -15.04462598447924 1481.980628434412 -1017.933784250162 -15.0446259849017 2040.641283048727 -696.1574957574402 -15.04462598447969 2040.641283048727 -696.1574957574402 -15.04462598447969 827.2805948271071 4.229183430939997 -15.04462598447924 1481.980628434412 -1017.933784250162 -15.0446259849017 413.5861220810284 -467.9082807433531 -15.04462597010979 827.2483684108245 357.8193647383722 -15.04462598464454 413.5861220788247 596.5971080973512 -15.04462598464374 -4.547473508864641e-012 -6.934897101018578e-012 -15.0446259842513 -678.2466131538226 -1065.033056999841 -15.04461537349573 -1236.472302367137 -748.2827669968171 -15.04461537352404 -0.03222641632146406 353.590181307425 -15.04462598441785 1481.980628436425 -1017.933784247332 -1.418959527654806e-008 413.5861220810284 -467.9082807433531 -15.04462597010979 1481.980628434412 -1017.933784250162 -15.0446259849017 413.5861220788279 -467.9082807402949 -5.867377694812603e-010 413.5861220788279 -467.9082807402949 -5.867377694812603e-010 1481.980628436425 -1017.933784247332 -1.418959527654806e-008 413.5861220810284 -467.9082807433531 -15.04462597010979 1481.980628434412 -1017.933784250162 -15.0446259849017 413.5861220788279 -467.9082807402949 -5.867377694812603e-010 -678.2466131538226 -1065.033056999841 -15.04461537349573 413.5861220810284 -467.9082807433531 -15.04462597010979 -678.2466131560241 -1065.033056996783 1.059602766417811e-005 -678.2466131560241 -1065.033056996783 1.059602766417811e-005 413.5861220788279 -467.9082807402949 -5.867377694812603e-010 -678.2466131538226 -1065.033056999841 -15.04461537349573 413.5861220810284 -467.9082807433531 -15.04462597010979 -678.2466131538226 -1065.033056999841 -15.04461537349573 -1236.472302367133 -748.2827669968096 1.061072816810338e-005 -1236.472302367137 -748.2827669968171 -15.04461537352404 -678.2466131560241 -1065.033056996783 1.059602766417811e-005 -678.2466131560241 -1065.033056996783 1.059602766417811e-005 -678.2466131538226 -1065.033056999841 -15.04461537349573 -1236.472302367133 -748.2827669968096 1.061072816810338e-005 -1236.472302367137 -748.2827669968171 -15.04461537352404 -1236.472302367137 -748.2827669968171 -15.04461537352404 0 0 1.13686837721616e-013 -4.547473508864641e-012 -6.934897101018578e-012 -15.0446259842513 -1236.472302367133 -748.2827669968096 1.061072816810338e-005 -1236.472302367133 -748.2827669968096 1.061072816810338e-005 -1236.472302367137 -748.2827669968171 -15.04461537352404 0 0 1.13686837721616e-013 -4.547473508864641e-012 -6.934897101018578e-012 -15.0446259842513 0 0 1.13686837721616e-013 -0.03222641632146406 353.590181307425 -15.04462598441785 -4.547473508864641e-012 -6.934897101018578e-012 -15.0446259842513 -0.03222641631896295 353.5901813074296 -1.659827830735594e-010 -0.03222641631896295 353.5901813074296 -1.659827830735594e-010 0 0 1.13686837721616e-013 -0.03222641632146406 353.590181307425 -15.04462598441785 -4.547473508864641e-012 -6.934897101018578e-012 -15.0446259842513 -0.03222641632146406 353.590181307425 -15.04462598441785 413.5861220788279 596.5971080973555 -3.932427716790699e-010 413.5861220788247 596.5971080973512 -15.04462598464374 -0.03222641631896295 353.5901813074296 -1.659827830735594e-010 -0.03222641631896295 353.5901813074296 -1.659827830735594e-010 -0.03222641632146406 353.590181307425 -15.04462598441785 413.5861220788279 596.5971080973555 -3.932427716790699e-010 413.5861220788247 596.5971080973512 -15.04462598464374 413.5861220788247 596.5971080973512 -15.04462598464374 827.2483684108272 357.8193647383781 -3.932427716790699e-010 827.2483684108245 357.8193647383722 -15.04462598464454 413.5861220788279 596.5971080973555 -3.932427716790699e-010 413.5861220788279 596.5971080973555 -3.932427716790699e-010 413.5861220788247 596.5971080973512 -15.04462598464374 827.2483684108272 357.8193647383781 -3.932427716790699e-010 827.2483684108245 357.8193647383722 -15.04462598464454 827.2483684108245 357.8193647383722 -15.04462598464454 827.2805948271137 4.22918343094716 -2.261231202282943e-010 827.2805948271071 4.229183430939997 -15.04462598447924 827.2483684108272 357.8193647383781 -3.932427716790699e-010 827.2483684108272 357.8193647383781 -3.932427716790699e-010 827.2483684108245 357.8193647383722 -15.04462598464454 827.2805948271137 4.22918343094716 -2.261231202282943e-010 827.2805948271071 4.229183430939997 -15.04462598447924 827.2805948271071 4.229183430939997 -15.04462598447924 2040.641283048727 -696.1574957574335 -2.265778675791808e-010 2040.641283048727 -696.1574957574402 -15.04462598447969 827.2805948271137 4.22918343094716 -2.261231202282943e-010 827.2805948271137 4.22918343094716 -2.261231202282943e-010 827.2805948271071 4.229183430939997 -15.04462598447924 2040.641283048727 -696.1574957574335 -2.265778675791808e-010 2040.641283048727 -696.1574957574402 -15.04462598447969 2040.641283048727 -696.1574957574402 -15.04462598447969 1481.980628436425 -1017.933784247332 -1.418959527654806e-008 1481.980628434412 -1017.933784250162 -15.0446259849017 2040.641283048727 -696.1574957574335 -2.265778675791808e-010 2040.641283048727 -696.1574957574335 -2.265778675791808e-010 2040.641283048727 -696.1574957574402 -15.04462598447969 1481.980628436425 -1017.933784247332 -1.418959527654806e-008 1481.980628434412 -1017.933784250162 -15.0446259849017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID4102\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4100\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID4103\">-3.378576700851167e-009 -3.906222559361882e-009 -1 -3.378576700851167e-009 -3.906222559361882e-009 -1 -3.378576700851167e-009 -3.906222559361882e-009 -1 -3.378576700851167e-009 -3.906222559361882e-009 -1 -3.378576700851167e-009 -3.906222559361882e-009 -1 -3.378576700851167e-009 -3.906222559361882e-009 -1 -3.378576700851167e-009 -3.906222559361882e-009 -1 -3.378576700851167e-009 -3.906222559361882e-009 -1 -3.378576700851167e-009 -3.906222559361882e-009 -1 -3.378576700851167e-009 -3.906222559361882e-009 -1 3.378576700851167e-009 3.906222559361882e-009 1 3.378576700851167e-009 3.906222559361882e-009 1 3.378576700851167e-009 3.906222559361882e-009 1 3.378576700851167e-009 3.906222559361882e-009 1 3.378576700851167e-009 3.906222559361882e-009 1 3.378576700851167e-009 3.906222559361882e-009 1 3.378576700851167e-009 3.906222559361882e-009 1 3.378576700851167e-009 3.906222559361882e-009 1 3.378576700851167e-009 3.906222559361882e-009 1 3.378576700851167e-009 3.906222559361882e-009 1 -0.4577201180084789 -0.8890963353710915 1.711015629650034e-010 -0.4577201180084789 -0.8890963353710915 1.711015629650034e-010 -0.4577201180084789 -0.8890963353710915 1.711015629650034e-010 -0.4577201180084789 -0.8890963353710915 1.711015629650034e-010 0.4577201180084789 0.8890963353710915 -1.711015629650034e-010 0.4577201180084789 0.8890963353710915 -1.711015629650034e-010 0.4577201180084789 0.8890963353710915 -1.711015629650034e-010 0.4577201180084789 0.8890963353710915 -1.711015629650034e-010 0.4798301252317249 -0.8773614140820802 2.485537244945696e-010 0.4798301252317249 -0.8773614140820802 2.485537244945696e-010 0.4798301252317249 -0.8773614140820802 2.485537244945696e-010 0.4798301252317249 -0.8773614140820802 2.485537244945696e-010 -0.4798301252317249 0.8773614140820802 -2.485537244945696e-010 -0.4798301252317249 0.8773614140820802 -2.485537244945696e-010 -0.4798301252317249 0.8773614140820802 -2.485537244945696e-010 -0.4798301252317249 0.8773614140820802 -2.485537244945696e-010 -0.4935106450260418 -0.8697397560454393 5.25661589721106e-011 -0.4935106450260418 -0.8697397560454393 5.25661589721106e-011 -0.4935106450260418 -0.8697397560454393 5.25661589721106e-011 -0.4935106450260418 -0.8697397560454393 5.25661589721106e-011 0.4935106450260418 0.8697397560454393 -5.25661589721106e-011 0.4935106450260418 0.8697397560454393 -5.25661589721106e-011 0.4935106450260418 0.8697397560454393 -5.25661589721106e-011 0.4935106450260418 0.8697397560454393 -5.25661589721106e-011 -0.5177478032581367 0.8555332911239479 -2.831813598915095e-013 -0.5177478032581367 0.8555332911239479 -2.831813598915095e-013 -0.5177478032581367 0.8555332911239479 -2.831813598915095e-013 -0.5177478032581367 0.8555332911239479 -2.831813598915095e-013 0.5177478032581367 -0.8555332911239479 2.831813598915095e-013 0.5177478032581367 -0.8555332911239479 2.831813598915095e-013 0.5177478032581367 -0.8555332911239479 2.831813598915095e-013 0.5177478032581367 -0.8555332911239479 2.831813598915095e-013 -0.999999995846697 -9.11405855905235e-005 2.74813292198882e-013 -0.999999995846697 -9.11405855905235e-005 2.74813292198882e-013 -0.999999995846697 -9.11405855905235e-005 2.74813292198882e-013 -0.999999995846697 -9.11405855905235e-005 2.74813292198882e-013 0.999999995846697 9.11405855905235e-005 -2.74813292198882e-013 0.999999995846697 9.11405855905235e-005 -2.74813292198882e-013 0.999999995846697 9.11405855905235e-005 -2.74813292198882e-013 0.999999995846697 9.11405855905235e-005 -2.74813292198882e-013 -0.5065585744767632 0.8622055501004791 -2.394790870164962e-013 -0.5065585744767632 0.8622055501004791 -2.394790870164962e-013 -0.5065585744767632 0.8622055501004791 -2.394790870164962e-013 -0.5065585744767632 0.8622055501004791 -2.394790870164962e-013 0.5065585744767632 -0.8622055501004791 2.394790870164962e-013 0.5065585744767632 -0.8622055501004791 2.394790870164962e-013 0.5065585744767632 -0.8622055501004791 2.394790870164962e-013 0.5065585744767632 -0.8622055501004791 2.394790870164962e-013 0.4999210678608873 0.8660709704803816 -5.162522614107987e-013 0.4999210678608873 0.8660709704803816 -5.162522614107987e-013 0.4999210678608873 0.8660709704803816 -5.162522614107987e-013 0.4999210678608873 0.8660709704803816 -5.162522614107987e-013 -0.4999210678608873 -0.8660709704803816 5.162522614107987e-013 -0.4999210678608873 -0.8660709704803816 5.162522614107987e-013 -0.4999210678608873 -0.8660709704803816 5.162522614107987e-013 -0.4999210678608873 -0.8660709704803816 5.162522614107987e-013 0.9999999958466969 9.114058550478655e-005 -2.969533545207407e-013 0.9999999958466969 9.114058550478655e-005 -2.969533545207407e-013 0.9999999958466969 9.114058550478655e-005 -2.969533545207407e-013 0.9999999958466969 9.114058550478655e-005 -2.969533545207407e-013 -0.9999999958466969 -9.114058550478655e-005 2.969533545207407e-013 -0.9999999958466969 -9.114058550478655e-005 2.969533545207407e-013 -0.9999999958466969 -9.114058550478655e-005 2.969533545207407e-013 -0.9999999958466969 -9.114058550478655e-005 2.969533545207407e-013 0.4999210678609133 0.8660709704803666 -5.87355855786169e-013 0.4999210678609133 0.8660709704803666 -5.87355855786169e-013 0.4999210678609133 0.8660709704803666 -5.87355855786169e-013 0.4999210678609133 0.8660709704803666 -5.87355855786169e-013 -0.4999210678609133 -0.8660709704803666 5.87355855786169e-013 -0.4999210678609133 -0.8660709704803666 5.87355855786169e-013 -0.4999210678609133 -0.8660709704803666 5.87355855786169e-013 -0.4999210678609133 -0.8660709704803666 5.87355855786169e-013 0.4991079392975819 -0.8665398230491901 4.826712492581303e-011 0.4991079392975819 -0.8665398230491901 4.826712492581303e-011 0.4991079392975819 -0.8665398230491901 4.826712492581303e-011 0.4991079392975819 -0.8665398230491901 4.826712492581303e-011 -0.4991079392975819 0.8665398230491901 -4.826712492581303e-011 -0.4991079392975819 0.8665398230491901 -4.826712492581303e-011 -0.4991079392975819 0.8665398230491901 -4.826712492581303e-011 -0.4991079392975819 0.8665398230491901 -4.826712492581303e-011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID4103\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4101\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4099\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4100\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"56\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4101\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 4 3 1 5 5 1 0 5 0 6 5 6 7 5 7 8 8 7 9 10 11 12 12 11 13 11 14 13 14 15 13 15 16 13 13 16 17 18 17 16 19 16 15 20 21 22 21 20 23 24 25 26 27 26 25 28 29 30 29 28 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 43 42 41 44 45 46 45 44 47 48 49 50 51 50 49 52 53 54 53 52 55 56 57 58 59 58 57 60 61 62 61 60 63 64 65 66 67 66 65 68 69 70 69 68 71 72 73 74 75 74 73 76 77 78 77 76 79 80 81 82 83 82 81 84 85 86 85 84 87 88 89 90 91 90 89 92 93 94 93 92 95 96 97 98 99 98 97</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4104\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4110\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID4114\">413.5861220788279 -467.9082807402949 -5.867377694812603e-010 414.864325689304 -349.4174522454588 -6.428990673157387e-010 -678.2466131560241 -1065.033056996783 1.059602766417811e-005 1481.980628436425 -1017.933784247332 -1.418959527654806e-008 1481.980628436425 -1017.933784247332 -1.418959527654806e-008 413.5861220788279 -467.9082807402949 -5.867377694812603e-010 414.864325689304 -349.4174522454588 -6.428990673157387e-010 -678.2466131560241 -1065.033056996783 1.059602766417811e-005 -678.2466131560241 -1065.033056996783 1.059602766417811e-005 0 0 1.13686837721616e-013 -1236.472302367133 -748.2827669968096 1.061072816810338e-005 414.864325689304 -349.4174522454588 -6.428990673157387e-010 413.5861220788279 596.5971080973555 -3.932427716790699e-010 827.2483684108272 357.8193647383781 -3.932427716790699e-010 827.2805948271137 4.22918343094716 -2.261231202282943e-010 1481.980628436425 -1017.933784247332 -1.418959527654806e-008 2040.641283048727 -696.1574957574335 -2.265778675791808e-010 -0.03222641631896295 353.5901813074296 -1.659827830735594e-010 0 0 1.13686837721616e-013 -0.03222641631896295 353.5901813074296 -1.659827830735594e-010 413.5861220788279 596.5971080973555 -3.932427716790699e-010 2040.641283048727 -696.1574957574335 -2.265778675791808e-010 1481.980628436425 -1017.933784247332 -1.418959527654806e-008 827.2805948271137 4.22918343094716 -2.261231202282943e-010 414.864325689304 -349.4174522454588 -6.428990673157387e-010 827.2483684108272 357.8193647383781 -3.932427716790699e-010 -678.2466131560241 -1065.033056996783 1.059602766417811e-005 -1236.472302367133 -748.2827669968096 1.061072816810338e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID4114\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4111\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID4115\">4.734665603019651e-009 8.125999298374004e-009 1 4.734665603019651e-009 8.125999298374004e-009 1 4.734665603019651e-009 8.125999298374004e-009 1 4.734665603019651e-009 8.125999298374004e-009 1 -4.734665603019651e-009 -8.125999298374004e-009 -1 -4.734665603019651e-009 -8.125999298374004e-009 -1 -4.734665603019651e-009 -8.125999298374004e-009 -1 -4.734665603019651e-009 -8.125999298374004e-009 -1 3.376317664522941e-009 4.015901174821912e-009 1 3.376317664522941e-009 4.015901174821912e-009 1 3.376317664522941e-009 4.015901174821912e-009 1 3.376317664522941e-009 4.015901174821912e-009 1 3.376317664522941e-009 4.015901174821912e-009 1 3.376317664522941e-009 4.015901174821912e-009 1 3.376317664522941e-009 4.015901174821912e-009 1 3.376317664522941e-009 4.015901174821912e-009 1 3.376317664522941e-009 4.015901174821912e-009 1 3.376317664522941e-009 4.015901174821912e-009 1 -3.376317664522941e-009 -4.015901174821912e-009 -1 -3.376317664522941e-009 -4.015901174821912e-009 -1 -3.376317664522941e-009 -4.015901174821912e-009 -1 -3.376317664522941e-009 -4.015901174821912e-009 -1 -3.376317664522941e-009 -4.015901174821912e-009 -1 -3.376317664522941e-009 -4.015901174821912e-009 -1 -3.376317664522941e-009 -4.015901174821912e-009 -1 -3.376317664522941e-009 -4.015901174821912e-009 -1 -3.376317664522941e-009 -4.015901174821912e-009 -1 -3.376317664522941e-009 -4.015901174821912e-009 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID4115\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4113\">\r\n\t\t\t\t\t<float_array count=\"52\" id=\"ID4116\">131.494372526472 -137.580100998187 131.4940802897182 -137.5136614133437 131.1916056767542 -137.9245838785705 131.7968674761612 -137.8789410135086 477.5867822714933 -258.5551811988224 133.2832976664282 -118.8487033080349 133.6952147574493 -88.75203287034653 -218.5734491721932 -270.518396477183 131.191086467115 -137.9543247862322 131.3753546170017 -137.351206900682 131.0328745839178 -137.7817199128224 131.4935610788622 -137.5434023226587 131.4880091117495 -137.0130600358876 131.605271206734 -137.1432394479665 131.6072214730359 -137.3414685098341 131.796348264087 -137.9086819213544 131.951176517361 -137.7233128343597 131.3734043506998 -137.1529778388144 -1.23698165607871e-022 -1.159649967126786e-022 -0.0103853654889898 89.81190605208711 133.2832976664282 151.5356654567283 657.6221614784903 -176.8240039223881 477.5867822714933 -258.5551811988223 266.6015126904727 1.074212591460576 266.5911273249942 90.88611864354805 -398.468655341588 -190.0638228171897</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID4116\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4112\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4110\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4111\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4112\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4113\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 8 9 9 10 10 9 9 8 8 11 11 9 9 11 11 12 12 12 12 11 11 13 13 13 13 11 11 14 14 14 14 11 11 15 15 14 14 15 15 16 16 12 12 17 17 9 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4112\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4113\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 18 18 19 19 20 20 21 21 22 22 23 23 22 22 24 6 23 23 23 23 24 6 25 24 25 24 24 6 20 20 20 20 24 6 18 18 24 6 26 7 18 18 27 25 18 18 26 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4119\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4120\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID4123\">11.03144505794489 -6.293672523705851 -47.70615568452661 2.731173556726617 -26.7512215295815 -47.70579392941796 1.2962711890832 -13.11285551966245 -47.70584596519733 13.90124979322991 -33.57040454355229 -47.70605161296695 22.2015212944475 -13.11285553767067 -47.70641336807558 23.63642366208615 -26.75122154759231 -47.70636133229543 23.63642366208615 -26.75122154759231 -47.70636133229543 22.2015212944475 -13.11285553767067 -47.70641336807558 13.90124979322991 -33.57040454355229 -47.70605161296695 11.03144505794489 -6.293672523705851 -47.70615568452661 2.731173556726617 -26.7512215295815 -47.70579392941796 1.2962711890832 -13.11285551966245 -47.70584596519733 11.03144505794489 -6.293672523705851 -47.70615568452661 22.18883299053664 -13.12089629470739 389.462874160858 22.2015212944475 -13.11285553767067 -47.70641336807558 11.01875672552774 -6.301713319934606 389.4643190486136 11.01875672552774 -6.301713319934606 389.4643190486136 11.03144505794489 -6.293672523705851 -47.70615568452661 22.18883299053664 -13.12089629470739 389.462874160858 22.2015212944475 -13.11285553767067 -47.70641336807558 23.63642366208615 -26.75122154759231 -47.70636133229543 22.18883299053664 -13.12089629470739 389.462874160858 23.62373536358609 -26.75926229718684 389.4627006898787 22.2015212944475 -13.11285553767067 -47.70641336807558 22.2015212944475 -13.11285553767067 -47.70641336807558 23.63642366208615 -26.75122154759231 -47.70636133229543 22.18883299053664 -13.12089629470739 389.462874160858 23.62373536358609 -26.75926229718684 389.4627006898787 23.62373536358609 -26.75926229718684 389.4627006898787 13.90124979322991 -33.57040454355229 -47.70605161296695 23.63642366208615 -26.75122154759231 -47.70636133229543 13.88851920925913 -33.57850341338533 391.2233808321582 13.88851920925913 -33.57850341338533 391.2233808321582 23.62373536358609 -26.75926229718684 389.4627006898787 13.90124979322991 -33.57040454355229 -47.70605161296695 23.63642366208615 -26.75122154759231 -47.70636133229543 13.88851920925913 -33.57850341338533 391.2233808321582 2.731173556726617 -26.7512215295815 -47.70579392941796 13.90124979322991 -33.57040454355229 -47.70605161296695 2.718485206623882 -26.75926235012631 389.4654169944066 2.718485206623882 -26.75926235012631 389.4654169944066 13.88851920925913 -33.57850341338533 391.2233808321582 2.731173556726617 -26.7512215295815 -47.70579392941796 13.90124979322991 -33.57040454355229 -47.70605161296695 1.283582833568744 -13.12089634764379 389.465590465386 2.731173556726617 -26.7512215295815 -47.70579392941796 2.718485206623882 -26.75926235012631 389.4654169944066 1.2962711890832 -13.11285551966245 -47.70584596519733 1.2962711890832 -13.11285551966245 -47.70584596519733 1.283582833568744 -13.12089634764379 389.465590465386 2.731173556726617 -26.7512215295815 -47.70579392941796 2.718485206623882 -26.75926235012631 389.4654169944066 1.2962711890832 -13.11285551966245 -47.70584596519733 11.01875672552774 -6.301713319934606 389.4643190486136 11.03144505794489 -6.293672523705851 -47.70615568452661 1.283582833568744 -13.12089634764379 389.465590465386 1.283582833568744 -13.12089634764379 389.465590465386 1.2962711890832 -13.11285551966245 -47.70584596519733 11.01875672552774 -6.301713319934606 389.4643190486136 11.03144505794489 -6.293672523705851 -47.70615568452661</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID4123\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4121\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID4124\">-2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004016e-006 -0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004016e-006 0.9999999996094146 0.5210619242131549 0.8535188751195267 3.082178046888042e-005 0.5210619242131549 0.8535188751195267 3.082178046888042e-005 0.5210619242131549 0.8535188751195267 3.082178046888042e-005 0.5210619242131549 0.8535188751195267 3.082178046888042e-005 -0.5210619242131549 -0.8535188751195267 -3.082178046888042e-005 -0.5210619242131549 -0.8535188751195267 -3.082178046888042e-005 -0.5210619242131549 -0.8535188751195267 -3.082178046888042e-005 -0.5210619242131549 -0.8535188751195267 -3.082178046888042e-005 0.9945108799681345 0.1046332102013843 3.078895815438144e-005 0.9945108799681345 0.1046332102013843 3.078895815438144e-005 0.9945108799681345 0.1046332102013843 3.078895815438144e-005 0.9945108799681345 0.1046332102013843 3.078895815438144e-005 -0.9945108799681345 -0.1046332102013843 -3.078895815438144e-005 -0.9945108799681345 -0.1046332102013843 -3.078895815438144e-005 -0.9945108799681345 -0.1046332102013843 -3.078895815438144e-005 -0.9945108799681345 -0.1046332102013843 -3.078895815438144e-005 0.5737207690513735 -0.8190509624905378 1.557036758695677e-006 0.5737207690513735 -0.8190509624905378 1.557036758695677e-006 0.5737207690513735 -0.8190509624905378 1.557036758695677e-006 0.5737207690513735 -0.8190509624905378 1.557036758695677e-006 -0.5737207690513735 0.8190509624905378 -1.557036758695677e-006 -0.5737207690513735 0.8190509624905378 -1.557036758695677e-006 -0.5737207690513735 0.8190509624905378 -1.557036758695677e-006 -0.5737207690513735 0.8190509624905378 -1.557036758695677e-006 -0.5210624895866387 -0.853518529965557 -3.0841676528717e-005 -0.5210624895866387 -0.853518529965557 -3.0841676528717e-005 -0.5210624895866387 -0.853518529965557 -3.0841676528717e-005 -0.5210624895866387 -0.853518529965557 -3.0841676528717e-005 0.5210624895866387 0.853518529965557 3.0841676528717e-005 0.5210624895866387 0.853518529965557 3.0841676528717e-005 0.5210624895866387 0.853518529965557 3.0841676528717e-005 0.5210624895866387 0.853518529965557 3.0841676528717e-005 -0.9945108799681038 -0.1046332102016798 -3.078894118640901e-005 -0.9945108799681038 -0.1046332102016798 -3.078894118640901e-005 -0.9945108799681038 -0.1046332102016798 -3.078894118640901e-005 -0.9945108799681038 -0.1046332102016798 -3.078894118640901e-005 0.9945108799681038 0.1046332102016798 3.078894118640901e-005 0.9945108799681038 0.1046332102016798 3.078894118640901e-005 0.9945108799681038 0.1046332102016798 3.078894118640901e-005 0.9945108799681038 0.1046332102016798 3.078894118640901e-005 -0.5737198708154458 0.8190515916772218 -1.586827988498502e-006 -0.5737198708154458 0.8190515916772218 -1.586827988498502e-006 -0.5737198708154458 0.8190515916772218 -1.586827988498502e-006 -0.5737198708154458 0.8190515916772218 -1.586827988498502e-006 0.5737198708154458 -0.8190515916772218 1.586827988498502e-006 0.5737198708154458 -0.8190515916772218 1.586827988498502e-006 0.5737198708154458 -0.8190515916772218 1.586827988498502e-006 0.5737198708154458 -0.8190515916772218 1.586827988498502e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID4124\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4122\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4120\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4121\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4122\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 6 7 8 7 9 8 8 9 10 11 10 9 12 13 14 13 12 15 16 17 18 19 18 17 20 21 22 21 20 23 24 25 26 27 26 25 28 29 30 29 28 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 43 42 41 44 45 46 45 44 47 48 49 50 51 50 49 52 53 54 53 52 55 56 57 58 59 58 57</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4125\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4126\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4128\">20.90849683442457 -0.007715229567139659 397.5527540878328 20.90624604557888 -0.00929183632575814 397.5527540878307</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4128\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4127\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4126\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4127\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4129\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4130\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4132\">2.716841321770971 -26.75350929184958 229.5485349495176 2.715939180942996 -26.74970186220193 147.6587695699113</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4132\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4131\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4130\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4131\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4135\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4136\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID4139\">495.1445966120321 857.6155984252149 -86.61417322834689 20.45729300277935 -51.18110236219809 -86.61417322834717 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689 32.43914176278895 -51.18110236220127 -86.61417322834666 117.9306742667955 -51.18110236219513 -86.61417322834569 370.9685973062269 -51.18110236219491 -86.61417322834814 624.4270984722389 -51.181102362194 -86.61417322834745 990.2891932240257 3.865352482534945e-012 -86.61417322834677 877.165233118867 -51.18110236219718 -86.61417322834672 956.9681812630345 -51.18110236220309 -86.61417322834672 969.8319002212436 -51.18110236220014 -86.614173228347 969.8319002212436 -51.18110236220014 -86.614173228347 990.2891932240257 3.865352482534945e-012 -86.61417322834677 956.9681812630345 -51.18110236220309 -86.61417322834672 877.165233118867 -51.18110236219718 -86.61417322834672 624.4270984722389 -51.181102362194 -86.61417322834745 495.1445966120321 857.6155984252149 -86.61417322834689 370.9685973062269 -51.18110236219491 -86.61417322834814 117.9306742667955 -51.18110236219513 -86.61417322834569 32.43914176278895 -51.18110236220127 -86.61417322834666 20.45729300277935 -51.18110236219809 -86.61417322834717 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID4139\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4137\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID4140\">2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID4140\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4138\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4136\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4137\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4138\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 6 7 8 8 7 9 9 7 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4138\" />\r\n\t\t\t\t\t<p>11 12 13 13 12 14 14 12 15 12 16 15 15 16 17 17 16 18 18 16 19 19 16 20 21 20 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4141\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4142\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4146\">877.1652331188579 19.68503937008131 -21.65354330708686 750.6636456761621 375.6735444042968 -5.905511811022961 750.6636456761455 19.68503937008427 -5.905511811022677 877.1652331188795 156.5663677154037 -21.65354330708738 877.1652331188795 156.5663677154037 -21.65354330708738 877.1652331188579 19.68503937008131 -21.65354330708686 750.6636456761621 375.6735444042968 -5.905511811022961 750.6636456761455 19.68503937008427 -5.905511811022677</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4146\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4143\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4147\">0.1235352441775758 -1.222437949477406e-015 0.9923401853427013 0.1235352441775758 -1.222437949477406e-015 0.9923401853427013 0.1235352441775758 -1.222437949477406e-015 0.9923401853427013 0.1235352441775758 -1.222437949477406e-015 0.9923401853427013 -0.1235352441775758 1.222437949477406e-015 -0.9923401853427013 -0.1235352441775758 1.222437949477406e-015 -0.9923401853427013 -0.1235352441775758 1.222437949477406e-015 -0.9923401853427013 -0.1235352441775758 1.222437949477406e-015 -0.9923401853427013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4147\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4145\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4148\">-14.93797304937732 -6.999998534568681 -13.93857193147181 -5.971780528501746 -13.93857107232807 -6.99999842122185 -14.93797337972725 -6.604637928836679</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4148\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4144\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4142\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4143\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4144\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4145\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4144\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4149\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4155\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4159\">956.1937048860718 19.68503937008723 -5.905511811023644 877.1652331188795 156.5663677154037 -21.65354330708738 877.1652331188579 19.68503937008131 -21.65354330708686 877.1652331188579 19.68503937008131 -21.65354330708686 877.1652331188795 156.5663677154037 -21.65354330708738 956.1937048860718 19.68503937008723 -5.905511811023644</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4159\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4156\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4160\">-0.1954280314664562 1.475124818302309e-015 0.9807180453714237 -0.1954280314664562 1.475124818302309e-015 0.9807180453714237 -0.1954280314664562 1.475124818302309e-015 0.9807180453714237 0.1954280314664562 -1.475124818302309e-015 -0.9807180453714237 0.1954280314664562 -1.475124818302309e-015 -0.9807180453714237 0.1954280314664562 -1.475124818302309e-015 -0.9807180453714237</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4160\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4158\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4161\">0.9999999999999525 1 0 2.486899575160351e-013 1 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID4161\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4157\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4155\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4156\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4157\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4158\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4157\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4162\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4163\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4167\">750.6636456761455 19.68503937008427 -5.905511811022677 624.2266605164668 594.6688266567332 -21.65354330708777 624.2266605164455 19.6850393700829 -21.65354330708584 750.6636456761621 375.6735444042968 -5.905511811022961 750.6636456761621 375.6735444042968 -5.905511811022961 750.6636456761455 19.68503937008427 -5.905511811022677 624.2266605164668 594.6688266567332 -21.65354330708777 624.2266605164455 19.6850393700829 -21.65354330708584</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4167\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4164\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4168\">-0.1235973998385544 5.079351652823027e-016 0.9923324456819643 -0.1235973998385544 5.079351652823027e-016 0.9923324456819643 -0.1235973998385544 5.079351652823027e-016 0.9923324456819643 -0.1235973998385544 5.079351652823027e-016 0.9923324456819643 0.1235973998385544 -5.079351652823027e-016 -0.9923324456819643 0.1235973998385544 -5.079351652823027e-016 -0.9923324456819643 0.1235973998385544 -5.079351652823027e-016 -0.9923324456819643 0.1235973998385544 -5.079351652823027e-016 -0.9923324456819643</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4168\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4166\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4169\">-18.13878692258709 1.100209518364163 -18.82379284499486 0.4021154593858187 -18.82275128176317 1.100261724315964 -18.13943178344393 0.6679676871283202</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4169\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4165\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4163\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4164\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4165\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4166\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4165\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4170\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4171\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4175\">624.2266605164455 19.6850393700829 -21.65354330708584 496.582307478468 815.7553314178099 -5.9055118110237 496.582307478463 19.68503937008654 -5.905511811022564 624.2266605164668 594.6688266567332 -21.65354330708777 624.2266605164668 594.6688266567332 -21.65354330708777 624.2266605164455 19.6850393700829 -21.65354330708584 496.582307478468 815.7553314178099 -5.9055118110237 496.582307478463 19.68503937008654 -5.905511811022564</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4175\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4172\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4176\">0.1224459220242791 -2.383754001480942e-016 0.9924751866820775 0.1224459220242791 -2.383754001480942e-016 0.9924751866820775 0.1224459220242791 -2.383754001480942e-016 0.9924751866820775 0.1224459220242791 -2.383754001480942e-016 0.9924751866820775 -0.1224459220242791 2.383754001480942e-016 -0.9924751866820775 -0.1224459220242791 2.383754001480942e-016 -0.9924751866820775 -0.1224459220242791 2.383754001480942e-016 -0.9924751866820775 -0.1224459220242791 2.383754001480942e-016 -0.9924751866820775</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4176\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4174\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4177\">-12.97204451805802 -7.0000234138831 -11.96372486539755 -4.700698738987111 -11.96375150817967 -7.000024999705298 -12.97202527457186 -5.339271424012162</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4177\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4173\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4171\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4172\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4173\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4174\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4173\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4178\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4179\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4183\">370.9685973062083 19.68503937008472 -21.65354330708686 496.582307478468 815.7553314178099 -5.9055118110237 370.9685973062074 603.1663798067432 -21.65354330708664 496.582307478463 19.68503937008654 -5.905511811022564 496.582307478463 19.68503937008654 -5.905511811022564 370.9685973062083 19.68503937008472 -21.65354330708686 496.582307478468 815.7553314178099 -5.9055118110237 370.9685973062074 603.1663798067432 -21.65354330708664</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4183\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4180\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4184\">-0.1243949651104207 9.131692797759161e-017 0.9922327814858655 -0.1243949651104207 9.131692797759161e-017 0.9922327814858655 -0.1243949651104207 9.131692797759161e-017 0.9922327814858655 -0.1243949651104207 9.131692797759161e-017 0.9922327814858655 0.1243949651104207 -9.131692797759161e-017 -0.9922327814858655 0.1243949651104207 -9.131692797759161e-017 -0.9922327814858655 0.1243949651104207 -9.131692797759161e-017 -0.9922327814858655 0.1243949651104207 -9.131692797759161e-017 -0.9922327814858655</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4184\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4182\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4185\">-19.86519388959034 1.074110167275077 -19.18707090458353 0.1074679443158094 -19.8662611309079 0.3656461720718374 -19.18561481841854 1.074057791293042</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4185\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4181\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4179\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4180\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4181\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4182\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4181\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4186\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4187\">\r\n\t\t\t\t\t<float_array count=\"1200\" id=\"ID4190\">496.582307478468 815.7553314178099 -5.9055118110237 495.1445966120323 818.2455196850583 -5.905511811022507 370.9685973062074 603.1663798067432 -21.65354330708664 370.9685973062074 603.1663798067432 -21.65354330708664 495.1445966120323 818.2455196850583 -5.905511811022507 496.582307478468 815.7553314178099 -5.9055118110237 495.1445966120327 818.2455196850524 -1.13686837721616e-013 956.1937048860718 19.68503937008723 -5.905511811023644 956.1937048860712 19.68503937008472 9.094947017729282e-013 750.6636456761621 375.6735444042968 -5.905511811022961 877.1652331188795 156.5663677154037 -21.65354330708738 624.2266605164668 594.6688266567332 -21.65354330708777 496.582307478468 815.7553314178099 -5.9055118110237 495.1445966120323 818.2455196850583 -5.905511811022507 495.1445966120323 818.2455196850583 -5.905511811022507 495.1445966120327 818.2455196850524 -1.13686837721616e-013 496.582307478468 815.7553314178099 -5.9055118110237 624.2266605164668 594.6688266567332 -21.65354330708777 750.6636456761621 375.6735444042968 -5.905511811022961 877.1652331188795 156.5663677154037 -21.65354330708738 956.1937048860718 19.68503937008723 -5.905511811023644 956.1937048860712 19.68503937008472 9.094947017729282e-013 973.5663585783625 -9.654933084283584 1.080024958355352e-012 956.1937048860718 19.68503937008723 -5.905511811023644 973.5663585783616 -9.654933084290178 -5.905511811023757 956.1937048860712 19.68503937008472 9.094947017729282e-013 956.1937048860712 19.68503937008472 9.094947017729282e-013 973.5663585783625 -9.654933084283584 1.080024958355352e-012 956.1937048860718 19.68503937008723 -5.905511811023644 973.5663585783616 -9.654933084290178 -5.905511811023757 973.5663585783625 -9.654933084283584 1.080024958355352e-012 973.5663585783616 -9.654933084290178 -5.905511811023757 956.9681812630358 -51.18110236220014 7.958078640513122e-013 956.9681812630358 -51.18110236220014 7.958078640513122e-013 973.5663585783616 -9.654933084290178 -5.905511811023757 973.5663585783625 -9.654933084283584 1.080024958355352e-012 973.5663585783616 -9.654933084290178 -5.905511811023757 956.1937048860718 19.68503937008723 -5.905511811023644 877.1652331188684 -15.74803149605987 -15.74803149606225 877.1652331188684 -15.74803149605987 -15.74803149606225 956.1937048860718 19.68503937008723 -5.905511811023644 973.5663585783616 -9.654933084290178 -5.905511811023757 973.5663585783616 -9.654933084290178 -5.905511811023757 490.8361277766442 -858.784579626654 -449.9098641741703 956.9681812630358 -51.18110236220014 7.958078640513122e-013 956.9681812630358 -51.18110236220014 7.958078640513122e-013 490.8361277766442 -858.784579626654 -449.9098641741703 973.5663585783616 -9.654933084290178 -5.905511811023757 956.1937048860718 19.68503937008723 -5.905511811023644 877.1652331188595 19.68503937008404 -15.74803149606322 877.1652331188684 -15.74803149605987 -15.74803149606225 877.1652331188684 -15.74803149605987 -15.74803149606225 877.1652331188595 19.68503937008404 -15.74803149606322 956.1937048860718 19.68503937008723 -5.905511811023644 973.5663585783616 -9.654933084290178 -5.905511811023757 877.1652331188684 -15.74803149605987 -15.74803149606225 877.1652331188648 -51.18110236219786 -71.63937358194215 877.1652331188648 -51.18110236219786 -71.63937358194215 877.1652331188684 -15.74803149605987 -15.74803149606225 973.5663585783616 -9.654933084290178 -5.905511811023757 973.5663585783616 -9.654933084290178 -5.905511811023757 877.1652331188648 -51.18110236219786 -71.63937358194215 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 877.1652331188648 -51.18110236219786 -71.63937358194215 973.5663585783616 -9.654933084290178 -5.905511811023757 969.8319002212493 -51.18110236220468 3.979039320256561e-013 956.9681812630358 -51.18110236220014 7.958078640513122e-013 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 956.9681812630358 -51.18110236220014 7.958078640513122e-013 969.8319002212493 -51.18110236220468 3.979039320256561e-013 117.7848635902433 19.68503937008086 -15.74803149606333 244.3901410013136 19.68503937008813 -5.905511811023871 117.7848635902424 19.68503937008109 -21.65354330708578 244.390141001315 19.68503937009064 1.080024958355352e-012 370.9685973062155 19.68503937008245 -15.7480314960622 370.9685973062083 19.68503937008472 -21.65354330708686 496.582307478463 19.68503937008654 -5.905511811022564 496.5823074784537 19.68503937008836 9.094947017729282e-013 624.2266605164539 19.68503937008813 -15.7480314960635 624.2266605164455 19.6850393700829 -21.65354330708584 956.1937048860718 19.68503937008723 -5.905511811023644 877.1652331188579 19.68503937008131 -21.65354330708686 877.1652331188595 19.68503937008404 -15.74803149606322 750.6636456761455 19.68503937008427 -5.905511811022677 750.6636456761685 19.68503937008859 -2.273736754432321e-013 750.6636456761685 19.68503937008859 -2.273736754432321e-013 750.6636456761455 19.68503937008427 -5.905511811022677 877.1652331188595 19.68503937008404 -15.74803149606322 877.1652331188579 19.68503937008131 -21.65354330708686 624.2266605164539 19.68503937008813 -15.7480314960635 624.2266605164455 19.6850393700829 -21.65354330708584 956.1937048860718 19.68503937008723 -5.905511811023644 496.5823074784537 19.68503937008836 9.094947017729282e-013 496.582307478463 19.68503937008654 -5.905511811022564 370.9685973062155 19.68503937008245 -15.7480314960622 370.9685973062083 19.68503937008472 -21.65354330708686 244.390141001315 19.68503937009064 1.080024958355352e-012 244.3901410013136 19.68503937008813 -5.905511811023871 117.7848635902433 19.68503937008086 -15.74803149606333 117.7848635902424 19.68503937008109 -21.65354330708578 877.1652331188684 -15.74803149605987 -15.74803149606225 750.6636456761685 19.68503937008859 -2.273736754432321e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 877.1652331188595 19.68503937008404 -15.74803149606322 877.1652331188595 19.68503937008404 -15.74803149606322 877.1652331188684 -15.74803149605987 -15.74803149606225 750.6636456761685 19.68503937008859 -2.273736754432321e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 877.1652331188648 -51.18110236219786 -71.63937358194215 877.1652331188684 -15.74803149605987 -15.74803149606225 877.1652331188684 -15.74803149605987 -15.74803149606225 877.1652331188648 -51.18110236219786 -71.63937358194215 750.6636456761657 -15.74803149604986 6.821210263296962e-013 877.1652331188648 -51.18110236219786 -71.63937358194215 750.6636456761657 -15.74803149604986 6.821210263296962e-013 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 750.6636456761657 -15.74803149604986 6.821210263296962e-013 877.1652331188648 -51.18110236219786 -71.63937358194215 969.8319002212436 -51.18110236220014 -86.614173228347 969.8319002212493 -51.18110236220468 3.979039320256561e-013 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 969.8319002212493 -51.18110236220468 3.979039320256561e-013 969.8319002212436 -51.18110236220014 -86.614173228347 34.09548833798135 19.68503937008677 -5.905511811022848 117.7848635902433 19.68503937008086 -15.74803149606333 117.7848635902424 19.68503937008109 -21.65354330708578 117.7848635902424 19.68503937008109 -21.65354330708578 117.7848635902433 19.68503937008086 -15.74803149606333 34.09548833798135 19.68503937008677 -5.905511811022848 117.7848635902587 -15.74803149605282 -15.74803149606294 244.390141001315 19.68503937009064 1.080024958355352e-012 117.7848635902433 19.68503937008086 -15.74803149606333 244.3901410013091 -15.74803149605555 8.526512829121202e-013 244.3901410013091 -15.74803149605555 8.526512829121202e-013 117.7848635902587 -15.74803149605282 -15.74803149606294 244.390141001315 19.68503937009064 1.080024958355352e-012 117.7848635902433 19.68503937008086 -15.74803149606333 370.9685973062169 -15.74803149605509 -15.74803149606225 244.390141001315 19.68503937009064 1.080024958355352e-012 244.3901410013091 -15.74803149605555 8.526512829121202e-013 370.9685973062155 19.68503937008245 -15.7480314960622 370.9685973062155 19.68503937008245 -15.7480314960622 370.9685973062169 -15.74803149605509 -15.74803149606225 244.390141001315 19.68503937009064 1.080024958355352e-012 244.3901410013091 -15.74803149605555 8.526512829121202e-013 370.9685973062169 -15.74803149605509 -15.74803149606225 496.5823074784537 19.68503937008836 9.094947017729282e-013 370.9685973062155 19.68503937008245 -15.7480314960622 496.5823074784505 -15.74803149605555 6.821210263296962e-013 496.5823074784505 -15.74803149605555 6.821210263296962e-013 370.9685973062169 -15.74803149605509 -15.74803149606225 496.5823074784537 19.68503937008836 9.094947017729282e-013 370.9685973062155 19.68503937008245 -15.7480314960622 624.2266605164493 -15.748031496056 -15.74803149606248 496.5823074784537 19.68503937008836 9.094947017729282e-013 496.5823074784505 -15.74803149605555 6.821210263296962e-013 624.2266605164539 19.68503937008813 -15.7480314960635 624.2266605164539 19.68503937008813 -15.7480314960635 624.2266605164493 -15.748031496056 -15.74803149606248 496.5823074784537 19.68503937008836 9.094947017729282e-013 496.5823074784505 -15.74803149605555 6.821210263296962e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 624.2266605164539 19.68503937008813 -15.7480314960635 624.2266605164493 -15.748031496056 -15.74803149606248 750.6636456761685 19.68503937008859 -2.273736754432321e-013 750.6636456761685 19.68503937008859 -2.273736754432321e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 624.2266605164539 19.68503937008813 -15.7480314960635 624.2266605164493 -15.748031496056 -15.74803149606248 750.6636456761657 -15.74803149604986 6.821210263296962e-013 624.4270984722402 -51.18110236219354 -72.00490323441454 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 624.4270984722402 -51.18110236219354 -72.00490323441454 750.6636456761657 -15.74803149604986 6.821210263296962e-013 969.8319002212436 -51.18110236220014 -86.614173228347 490.8361277766442 -858.784579626654 -449.9098641741703 956.9681812630345 -51.18110236220309 -86.61417322834672 956.9681812630345 -51.18110236220309 -86.61417322834672 490.8361277766442 -858.784579626654 -449.9098641741703 969.8319002212436 -51.18110236220014 -86.614173228347 969.8319002212436 -51.18110236220014 -86.614173228347 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013 969.8319002212493 -51.18110236220468 3.979039320256561e-013 990.2891932240257 3.865352482534945e-012 -86.61417322834677 990.2891932240257 3.865352482534945e-012 -86.61417322834677 969.8319002212436 -51.18110236220014 -86.614173228347 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013 969.8319002212493 -51.18110236220468 3.979039320256561e-013 117.7848635902587 -15.74803149605282 -15.74803149606294 117.7848635902433 19.68503937008086 -15.74803149606333 34.09548833798135 19.68503937008677 -5.905511811022848 34.09548833798135 19.68503937008677 -5.905511811022848 117.7848635902433 19.68503937008086 -15.74803149606333 117.7848635902587 -15.74803149605282 -15.74803149606294 244.3901410013091 -15.74803149605555 8.526512829121202e-013 117.7848635902587 -15.74803149605282 -15.74803149606294 117.9306742667968 -51.18110236219741 -71.6393735819421 117.9306742667968 -51.18110236219741 -71.6393735819421 117.7848635902587 -15.74803149605282 -15.74803149606294 244.3901410013091 -15.74803149605555 8.526512829121202e-013 244.3901410013091 -15.74803149605555 8.526512829121202e-013 370.9685973062296 -51.18110236219491 -71.6393735819421 370.9685973062169 -15.74803149605509 -15.74803149606225 370.9685973062169 -15.74803149605509 -15.74803149606225 370.9685973062296 -51.18110236219491 -71.6393735819421 244.3901410013091 -15.74803149605555 8.526512829121202e-013 496.5823074784505 -15.74803149605555 6.821210263296962e-013 370.9685973062169 -15.74803149605509 -15.74803149606225 370.9685973062296 -51.18110236219491 -71.6393735819421 370.9685973062296 -51.18110236219491 -71.6393735819421 370.9685973062169 -15.74803149605509 -15.74803149606225 496.5823074784505 -15.74803149605555 6.821210263296962e-013 496.5823074784505 -15.74803149605555 6.821210263296962e-013 624.4270984722402 -51.18110236219354 -72.00490323441454 624.2266605164493 -15.748031496056 -15.74803149606248 624.2266605164493 -15.748031496056 -15.74803149606248 624.4270984722402 -51.18110236219354 -72.00490323441454 496.5823074784505 -15.74803149605555 6.821210263296962e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 624.2266605164493 -15.748031496056 -15.74803149606248 624.4270984722402 -51.18110236219354 -72.00490323441454 624.4270984722402 -51.18110236219354 -72.00490323441454 624.2266605164493 -15.748031496056 -15.74803149606248 750.6636456761657 -15.74803149604986 6.821210263296962e-013 624.4270984722402 -51.18110236219354 -72.00490323441454 496.5823074784505 -15.74803149605555 6.821210263296962e-013 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 496.5823074784505 -15.74803149605555 6.821210263296962e-013 624.4270984722402 -51.18110236219354 -72.00490323441454 956.9681812630397 -51.18110236219854 -23.38047946702778 956.9681812630345 -51.18110236220309 -86.61417322834672 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 956.9681812630345 -51.18110236220309 -86.61417322834672 956.9681812630397 -51.18110236219854 -23.38047946702778 117.7848635902587 -15.74803149605282 -15.74803149606294 34.09548833798135 19.68503937008677 -5.905511811022848 16.37895290490678 -11.00090013408362 -5.905511811022905 16.37895290490678 -11.00090013408362 -5.905511811022905 34.09548833798135 19.68503937008677 -5.905511811022848 117.7848635902587 -15.74803149605282 -15.74803149606294 16.37895290490678 -11.00090013408362 -5.905511811022905 117.9306742667968 -51.18110236219741 -71.6393735819421 117.7848635902587 -15.74803149605282 -15.74803149606294 117.7848635902587 -15.74803149605282 -15.74803149606294 117.9306742667968 -51.18110236219741 -71.6393735819421 16.37895290490678 -11.00090013408362 -5.905511811022905 490.8361277766442 -858.784579626654 -449.9098641741703 244.3901410013091 -15.74803149605555 8.526512829121202e-013 117.9306742667968 -51.18110236219741 -71.6393735819421 117.9306742667968 -51.18110236219741 -71.6393735819421 244.3901410013091 -15.74803149605555 8.526512829121202e-013 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 370.9685973062296 -51.18110236219491 -71.6393735819421 244.3901410013091 -15.74803149605555 8.526512829121202e-013 244.3901410013091 -15.74803149605555 8.526512829121202e-013 370.9685973062296 -51.18110236219491 -71.6393735819421 490.8361277766442 -858.784579626654 -449.9098641741703 496.5823074784505 -15.74803149605555 6.821210263296962e-013 370.9685973062296 -51.18110236219491 -71.6393735819421 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 370.9685973062296 -51.18110236219491 -71.6393735819421 496.5823074784505 -15.74803149605555 6.821210263296962e-013 956.9681812630397 -51.18110236219854 -23.38047946702778 490.8361277766442 -858.784579626654 -449.9098641741703 877.165233118867 -51.18110236219718 -86.61417322834672 877.165233118867 -51.18110236219718 -86.61417322834672 490.8361277766442 -858.784579626654 -449.9098641741703 956.9681812630397 -51.18110236219854 -23.38047946702778 956.9681812630397 -51.18110236219854 -23.38047946702778 877.165233118867 -51.18110236219718 -86.61417322834672 956.9681812630345 -51.18110236220309 -86.61417322834672 956.9681812630345 -51.18110236220309 -86.61417322834672 877.165233118867 -51.18110236219718 -86.61417322834672 956.9681812630397 -51.18110236219854 -23.38047946702778 490.8361277766442 -858.784579626654 -449.9098641741703 117.9306742667968 -51.18110236219741 -71.6393735819421 16.37895290490678 -11.00090013408362 -5.905511811022905 16.37895290490678 -11.00090013408362 -5.905511811022905 117.9306742667968 -51.18110236219741 -71.6393735819421 490.8361277766442 -858.784579626654 -449.9098641741703 877.165233118867 -51.18110236219718 -86.61417322834672 490.8361277766442 -858.784579626654 -449.9098641741703 750.663645676161 -51.181102362194 -32.11021222323262 750.663645676161 -51.181102362194 -32.11021222323262 490.8361277766442 -858.784579626654 -449.9098641741703 877.165233118867 -51.18110236219718 -86.61417322834672 16.37895290490678 -11.00090013408362 -5.905511811022905 32.43914176278986 -51.18110236219127 1.70530256582424e-013 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 32.43914176278986 -51.18110236219127 1.70530256582424e-013 16.37895290490678 -11.00090013408362 -5.905511811022905 750.663645676161 -51.181102362194 -32.11021222323262 490.8361277766442 -858.784579626654 -449.9098641741703 624.4270984722389 -51.181102362194 -86.61417322834745 624.4270984722389 -51.181102362194 -86.61417322834745 490.8361277766442 -858.784579626654 -449.9098641741703 750.663645676161 -51.181102362194 -32.11021222323262 750.663645676161 -51.181102362194 -32.11021222323262 624.4270984722389 -51.181102362194 -86.61417322834745 877.165233118867 -51.18110236219718 -86.61417322834672 877.165233118867 -51.18110236219718 -86.61417322834672 624.4270984722389 -51.181102362194 -86.61417322834745 750.663645676161 -51.181102362194 -32.11021222323262 16.37895290490678 -11.00090013408362 -5.905511811022905 16.37895290490769 -11.00090013408749 9.663381206337363e-013 32.43914176278986 -51.18110236219127 1.70530256582424e-013 32.43914176278986 -51.18110236219127 1.70530256582424e-013 16.37895290490769 -11.00090013408749 9.663381206337363e-013 16.37895290490678 -11.00090013408362 -5.905511811022905 490.8361277766442 -858.784579626654 -449.9098641741703 32.43914176278986 -51.18110236219127 1.70530256582424e-013 20.45729300279072 -51.18110236219764 5.115907697472721e-013 20.45729300279072 -51.18110236219764 5.115907697472721e-013 32.43914176278986 -51.18110236219127 1.70530256582424e-013 490.8361277766442 -858.784579626654 -449.9098641741703 624.4270984722389 -51.181102362194 -86.61417322834745 490.8361277766442 -858.784579626654 -449.9098641741703 496.5823074784435 -51.1811023622065 -32.1102122232333 496.5823074784435 -51.1811023622065 -32.1102122232333 490.8361277766442 -858.784579626654 -449.9098641741703 624.4270984722389 -51.181102362194 -86.61417322834745 20.45729300279072 -51.18110236219764 5.115907697472721e-013 20.45729300277935 -51.18110236219809 -86.61417322834717 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 20.45729300277935 -51.18110236219809 -86.61417322834717 20.45729300279072 -51.18110236219764 5.115907697472721e-013 496.5823074784435 -51.1811023622065 -32.1102122232333 490.8361277766442 -858.784579626654 -449.9098641741703 370.9685973062269 -51.18110236219491 -86.61417322834814 370.9685973062269 -51.18110236219491 -86.61417322834814 490.8361277766442 -858.784579626654 -449.9098641741703 496.5823074784435 -51.1811023622065 -32.1102122232333 496.5823074784435 -51.1811023622065 -32.1102122232333 370.9685973062269 -51.18110236219491 -86.61417322834814 624.4270984722389 -51.181102362194 -86.61417322834745 624.4270984722389 -51.181102362194 -86.61417322834745 370.9685973062269 -51.18110236219491 -86.61417322834814 496.5823074784435 -51.1811023622065 -32.1102122232333 490.8361277766442 -858.784579626654 -449.9098641741703 20.45729300277935 -51.18110236219809 -86.61417322834717 32.43914176278895 -51.18110236220127 -86.61417322834666 32.43914176278895 -51.18110236220127 -86.61417322834666 20.45729300277935 -51.18110236219809 -86.61417322834717 490.8361277766442 -858.784579626654 -449.9098641741703 20.45729300279072 -51.18110236219764 5.115907697472721e-013 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689 20.45729300277935 -51.18110236219809 -86.61417322834717 0 0 0 0 0 0 20.45729300279072 -51.18110236219764 5.115907697472721e-013 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689 20.45729300277935 -51.18110236219809 -86.61417322834717 490.8361277766442 -858.784579626654 -449.9098641741703 244.44963578651 -51.18110236217717 -32.11021222323302 370.9685973062269 -51.18110236219491 -86.61417322834814 370.9685973062269 -51.18110236219491 -86.61417322834814 244.44963578651 -51.18110236217717 -32.11021222323302 490.8361277766442 -858.784579626654 -449.9098641741703 32.4391417627885 -51.18110236216285 -23.38047946702761 490.8361277766442 -858.784579626654 -449.9098641741703 32.43914176278895 -51.18110236220127 -86.61417322834666 32.43914176278895 -51.18110236220127 -86.61417322834666 490.8361277766442 -858.784579626654 -449.9098641741703 32.4391417627885 -51.18110236216285 -23.38047946702761 490.8361277766442 -858.784579626654 -449.9098641741703 117.9306742667955 -51.18110236219513 -86.61417322834569 244.44963578651 -51.18110236217717 -32.11021222323302 244.44963578651 -51.18110236217717 -32.11021222323302 117.9306742667955 -51.18110236219513 -86.61417322834569 490.8361277766442 -858.784579626654 -449.9098641741703 244.44963578651 -51.18110236217717 -32.11021222323302 117.9306742667955 -51.18110236219513 -86.61417322834569 370.9685973062269 -51.18110236219491 -86.61417322834814 370.9685973062269 -51.18110236219491 -86.61417322834814 117.9306742667955 -51.18110236219513 -86.61417322834569 244.44963578651 -51.18110236217717 -32.11021222323302 490.8361277766442 -858.784579626654 -449.9098641741703 32.4391417627885 -51.18110236216285 -23.38047946702761 117.9306742667955 -51.18110236219513 -86.61417322834569 117.9306742667955 -51.18110236219513 -86.61417322834569 32.4391417627885 -51.18110236216285 -23.38047946702761 490.8361277766442 -858.784579626654 -449.9098641741703 32.4391417627885 -51.18110236216285 -23.38047946702761 32.43914176278895 -51.18110236220127 -86.61417322834666 117.9306742667955 -51.18110236219513 -86.61417322834569 117.9306742667955 -51.18110236219513 -86.61417322834569 32.43914176278895 -51.18110236220127 -86.61417322834666 32.4391417627885 -51.18110236216285 -23.38047946702761</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"400\" source=\"#ID4190\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4188\">\r\n\t\t\t\t\t<float_array count=\"1200\" id=\"ID4191\">-0.06324083147043105 -0.03651211107331201 0.9973301674871261 -0.06324083147043105 -0.03651211107331201 0.9973301674871261 -0.06324083147043105 -0.03651211107331201 0.9973301674871261 0.06324083147043105 0.03651211107331201 -0.9973301674871261 0.06324083147043105 0.03651211107331201 -0.9973301674871261 0.06324083147043105 0.03651211107331201 -0.9973301674871261 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 -0.8604715114693308 -0.5094985553950918 -2.581093704653176e-013 -0.8604715114693308 -0.5094985553950918 -2.581093704653176e-013 -0.8604715114693308 -0.5094985553950918 -2.581093704653176e-013 -0.8604715114693308 -0.5094985553950918 -2.581093704653176e-013 0.8604715114693308 0.5094985553950918 2.581093704653176e-013 0.8604715114693308 0.5094985553950918 2.581093704653176e-013 0.8604715114693308 0.5094985553950918 2.581093704653176e-013 0.8604715114693308 0.5094985553950918 2.581093704653176e-013 -0.9285714285714174 0.3711537444790735 -4.114487613463003e-014 -0.9285714285714174 0.3711537444790735 -4.114487613463003e-014 -0.9285714285714174 0.3711537444790735 -4.114487613463003e-014 0.9285714285714174 -0.3711537444790735 4.114487613463003e-014 0.9285714285714174 -0.3711537444790735 4.114487613463003e-014 0.9285714285714174 -0.3711537444790735 4.114487613463003e-014 -0.09777891889563337 -0.05789641755872664 0.9935226659988522 -0.09777891889563337 -0.05789641755872664 0.9935226659988522 -0.09777891889563337 -0.05789641755872664 0.9935226659988522 0.09777891889563337 0.05789641755872664 -0.9935226659988522 0.09777891889563337 0.05789641755872664 -0.9935226659988522 0.09777891889563337 0.05789641755872664 -0.9935226659988522 -0.8928833118469073 0.3891147429224794 0.226603416270963 -0.8928833118469073 0.3891147429224794 0.226603416270963 -0.8928833118469073 0.3891147429224794 0.226603416270963 0.8928833118469073 -0.3891147429224794 -0.226603416270963 0.8928833118469073 -0.3891147429224794 -0.226603416270963 0.8928833118469073 -0.3891147429224794 -0.226603416270963 -0.1235891511517469 9.193139955884776e-015 0.9923334730409886 -0.1235891511517469 9.193139955884776e-015 0.9923334730409886 -0.1235891511517469 9.193139955884776e-015 0.9923334730409886 0.1235891511517469 -9.193139955884776e-015 -0.9923334730409886 0.1235891511517469 -9.193139955884776e-015 -0.9923334730409886 0.1235891511517469 -9.193139955884776e-015 -0.9923334730409886 -0.001285248464647008 -0.8445777148786074 0.5354314444135813 -0.001285248464647008 -0.8445777148786074 0.5354314444135813 -0.001285248464647008 -0.8445777148786074 0.5354314444135813 0.001285248464647008 0.8445777148786074 -0.5354314444135813 0.001285248464647008 0.8445777148786074 -0.5354314444135813 0.001285248464647008 0.8445777148786074 -0.5354314444135813 -0.5114935839833339 -0.1514935216669975 0.8458274211899347 -0.5114935839833339 -0.1514935216669975 0.8458274211899347 -0.5114935839833339 -0.1514935216669975 0.8458274211899347 0.5114935839833339 0.1514935216669975 -0.8458274211899347 0.5114935839833339 0.1514935216669975 -0.8458274211899347 0.5114935839833339 0.1514935216669975 -0.8458274211899347 -2.191294969913424e-013 -0.4866686069737359 0.8735866682741006 -2.191294969913424e-013 -0.4866686069737359 0.8735866682741006 -2.191294969913424e-013 -0.4866686069737359 0.8735866682741006 2.191294969913424e-013 0.4866686069737359 -0.8735866682741006 2.191294969913424e-013 0.4866686069737359 -0.8735866682741006 2.191294969913424e-013 0.4866686069737359 -0.8735866682741006 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 0.1235352441775784 2.545584728251559e-014 0.992340185342701 0.1235352441775784 2.545584728251559e-014 0.992340185342701 0.1235352441775784 2.545584728251559e-014 0.992340185342701 0.1235352441775784 2.545584728251559e-014 0.992340185342701 -0.1235352441775784 -2.545584728251559e-014 -0.992340185342701 -0.1235352441775784 -2.545584728251559e-014 -0.992340185342701 -0.1235352441775784 -2.545584728251559e-014 -0.992340185342701 -0.1235352441775784 -2.545584728251559e-014 -0.992340185342701 0.06650769527937173 -0.8427084416347712 0.5342463934048801 0.06650769527937173 -0.8427084416347712 0.5342463934048801 0.06650769527937173 -0.8427084416347712 0.5342463934048801 -0.06650769527937173 0.8427084416347712 -0.5342463934048801 -0.06650769527937173 0.8427084416347712 -0.5342463934048801 -0.06650769527937173 0.8427084416347712 -0.5342463934048801 0.3060102636536691 -0.5199298729004609 0.7975152950284542 0.3060102636536691 -0.5199298729004609 0.7975152950284542 0.3060102636536691 -0.5199298729004609 0.7975152950284542 -0.3060102636536691 0.5199298729004609 -0.7975152950284542 -0.3060102636536691 0.5199298729004609 -0.7975152950284542 -0.3060102636536691 0.5199298729004609 -0.7975152950284542 0.8600971941801456 -0.5101301956985499 -3.425878287652284e-014 0.8600971941801456 -0.5101301956985499 -3.425878287652284e-014 0.8600971941801456 -0.5101301956985499 -3.425878287652284e-014 -0.8600971941801456 0.5101301956985499 3.425878287652284e-014 -0.8600971941801456 0.5101301956985499 3.425878287652284e-014 -0.8600971941801456 0.5101301956985499 3.425878287652284e-014 2.680658063563444e-014 1 1.219727444046193e-019 2.680658063563444e-014 1 1.219727444046193e-019 2.680658063563444e-014 1 1.219727444046193e-019 -2.680658063563444e-014 -1 -1.219727444046193e-019 -2.680658063563444e-014 -1 -1.219727444046193e-019 -2.680658063563444e-014 -1 -1.219727444046193e-019 -0.1234356107414889 1.137680444643352e-014 0.9923525835109595 -0.1234356107414889 1.137680444643352e-014 0.9923525835109595 -0.1234356107414889 1.137680444643352e-014 0.9923525835109595 -0.1234356107414889 1.137680444643352e-014 0.9923525835109595 0.1234356107414889 -1.137680444643352e-014 -0.9923525835109595 0.1234356107414889 -1.137680444643352e-014 -0.9923525835109595 0.1234356107414889 -1.137680444643352e-014 -0.9923525835109595 0.1234356107414889 -1.137680444643352e-014 -0.9923525835109595 0.1234613672663514 2.371400872978185e-014 0.992349379398568 0.1234613672663514 2.371400872978185e-014 0.992349379398568 0.1234613672663514 2.371400872978185e-014 0.992349379398568 0.1234613672663514 2.371400872978185e-014 0.992349379398568 -0.1234613672663514 -2.371400872978185e-014 -0.992349379398568 -0.1234613672663514 -2.371400872978185e-014 -0.992349379398568 -0.1234613672663514 -2.371400872978185e-014 -0.992349379398568 -0.1234613672663514 -2.371400872978185e-014 -0.992349379398568 -0.1243949651104186 1.420677540452803e-014 0.9922327814858659 -0.1243949651104186 1.420677540452803e-014 0.9922327814858659 -0.1243949651104186 1.420677540452803e-014 0.9922327814858659 -0.1243949651104186 1.420677540452803e-014 0.9922327814858659 0.1243949651104186 -1.420677540452803e-014 -0.9922327814858659 0.1243949651104186 -1.420677540452803e-014 -0.9922327814858659 0.1243949651104186 -1.420677540452803e-014 -0.9922327814858659 0.1243949651104186 -1.420677540452803e-014 -0.9922327814858659 0.1224459220242786 1.363420823723843e-014 0.9924751866820775 0.1224459220242786 1.363420823723843e-014 0.9924751866820775 0.1224459220242786 1.363420823723843e-014 0.9924751866820775 0.1224459220242786 1.363420823723843e-014 0.9924751866820775 -0.1224459220242786 -1.363420823723843e-014 -0.9924751866820775 -0.1224459220242786 -1.363420823723843e-014 -0.9924751866820775 -0.1224459220242786 -1.363420823723843e-014 -0.9924751866820775 -0.1224459220242786 -1.363420823723843e-014 -0.9924751866820775 -0.1235973998385482 3.362558170273699e-014 0.992332445681965 -0.1235973998385482 3.362558170273699e-014 0.992332445681965 -0.1235973998385482 3.362558170273699e-014 0.992332445681965 -0.1235973998385482 3.362558170273699e-014 0.992332445681965 0.1235973998385482 -3.362558170273699e-014 -0.992332445681965 0.1235973998385482 -3.362558170273699e-014 -0.992332445681965 0.1235973998385482 -3.362558170273699e-014 -0.992332445681965 0.1235973998385482 -3.362558170273699e-014 -0.992332445681965 -0.3940233501695523 -0.335265772608463 0.8557700983549337 -0.3940233501695523 -0.335265772608463 0.8557700983549337 -0.3940233501695523 -0.335265772608463 0.8557700983549337 0.3940233501695523 0.335265772608463 -0.8557700983549337 0.3940233501695523 0.335265772608463 -0.8557700983549337 0.3940233501695523 0.335265772608463 -0.8557700983549337 -4.971283801280535e-015 0.410246469127406 -0.9119746896534445 -4.971283801280535e-015 0.410246469127406 -0.9119746896534445 -4.971283801280535e-015 0.410246469127406 -0.9119746896534445 4.971283801280535e-015 -0.410246469127406 0.9119746896534445 4.971283801280535e-015 -0.410246469127406 0.9119746896534445 4.971283801280535e-015 -0.410246469127406 0.9119746896534445 0.9285714285714389 -0.3711537444790191 -1.717923763314144e-014 0.9285714285714389 -0.3711537444790191 -1.717923763314144e-014 0.9285714285714389 -0.3711537444790191 -1.717923763314144e-014 0.9285714285714389 -0.3711537444790191 -1.717923763314144e-014 -0.9285714285714389 0.3711537444790191 1.717923763314144e-014 -0.9285714285714389 0.3711537444790191 1.717923763314144e-014 -0.9285714285714389 0.3711537444790191 1.717923763314144e-014 -0.9285714285714389 0.3711537444790191 1.717923763314144e-014 0.1168027472724069 2.880271162634257e-014 0.9931551330127727 0.1168027472724069 2.880271162634257e-014 0.9931551330127727 0.1168027472724069 2.880271162634257e-014 0.9931551330127727 -0.1168027472724069 -2.880271162634257e-014 -0.9931551330127727 -0.1168027472724069 -2.880271162634257e-014 -0.9931551330127727 -0.1168027472724069 -2.880271162634257e-014 -0.9931551330127727 -0.06643815458272512 -0.8427907255793229 0.5341252329680001 -0.06643815458272512 -0.8427907255793229 0.5341252329680001 -0.06643815458272512 -0.8427907255793229 0.5341252329680001 0.06643815458272512 0.8427907255793229 -0.5341252329680001 0.06643815458272512 0.8427907255793229 -0.5341252329680001 0.06643815458272512 0.8427907255793229 -0.5341252329680001 0.06646748481942172 -0.8427107046196537 0.5342478280547587 0.06646748481942172 -0.8427107046196537 0.5342478280547587 0.06646748481942172 -0.8427107046196537 0.5342478280547587 -0.06646748481942172 0.8427107046196537 -0.5342478280547587 -0.06646748481942172 0.8427107046196537 -0.5342478280547587 -0.06646748481942172 0.8427107046196537 -0.5342478280547587 -0.06697569125023399 -0.8426820024075721 0.5342296318999148 -0.06697569125023399 -0.8426820024075721 0.5342296318999148 -0.06697569125023399 -0.8426820024075721 0.5342296318999148 0.06697569125023399 0.8426820024075721 -0.5342296318999148 0.06697569125023399 0.8426820024075721 -0.5342296318999148 0.06697569125023399 0.8426820024075721 -0.5342296318999148 0.06563040137907363 -0.8442211589363028 0.5319617328521549 0.06563040137907363 -0.8442211589363028 0.5319617328521549 0.06563040137907363 -0.8442211589363028 0.5319617328521549 -0.06563040137907363 0.8442211589363028 -0.5319617328521549 -0.06563040137907363 0.8442211589363028 -0.5319617328521549 -0.06563040137907363 0.8442211589363028 -0.5319617328521549 -0.06621267361669034 -0.8444004404652235 0.5316049077977617 -0.06621267361669034 -0.8444004404652235 0.5316049077977617 -0.06621267361669034 -0.8444004404652235 0.5316049077977617 0.06621267361669034 0.8444004404652235 -0.5316049077977617 0.06621267361669034 0.8444004404652235 -0.5316049077977617 0.06621267361669034 0.8444004404652235 -0.5316049077977617 0.343102989544522 -0.4440638174570215 0.8277002262843166 0.343102989544522 -0.4440638174570215 0.8277002262843166 0.343102989544522 -0.4440638174570215 0.8277002262843166 -0.343102989544522 0.4440638174570215 -0.8277002262843166 -0.343102989544522 0.4440638174570215 -0.8277002262843166 -0.343102989544522 0.4440638174570215 -0.8277002262843166 -0.8660894945190319 0.4998889751572522 -8.218659043254806e-015 -0.8660894945190319 0.4998889751572522 -8.218659043254806e-015 -0.8660894945190319 0.4998889751572522 -8.218659043254806e-015 0.8660894945190319 -0.4998889751572522 8.218659043254806e-015 0.8660894945190319 -0.4998889751572522 8.218659043254806e-015 0.8660894945190319 -0.4998889751572522 8.218659043254806e-015 0.09394859041925038 -0.0542412439685518 0.9940983602294997 0.09394859041925038 -0.0542412439685518 0.9940983602294997 0.09394859041925038 -0.0542412439685518 0.9940983602294997 -0.09394859041925038 0.0542412439685518 -0.9940983602294997 -0.09394859041925038 0.0542412439685518 -0.9940983602294997 -0.09394859041925038 0.0542412439685518 -0.9940983602294997 0.01243393137216172 -0.8444984536753394 0.535413633642806 0.01243393137216172 -0.8444984536753394 0.535413633642806 0.01243393137216172 -0.8444984536753394 0.535413633642806 -0.01243393137216172 0.8444984536753394 -0.535413633642806 -0.01243393137216172 0.8444984536753394 -0.535413633642806 -0.01243393137216172 0.8444984536753394 -0.535413633642806 -0.3079466233539793 -0.516447596989788 0.7990311362696423 -0.3079466233539793 -0.516447596989788 0.7990311362696423 -0.3079466233539793 -0.516447596989788 0.7990311362696423 0.3079466233539793 0.516447596989788 -0.7990311362696423 0.3079466233539793 0.516447596989788 -0.7990311362696423 0.3079466233539793 0.516447596989788 -0.7990311362696423 0.3880948652847884 -0.3430520862752612 0.8553932672413155 0.3880948652847884 -0.3430520862752612 0.8553932672413155 0.3880948652847884 -0.3430520862752612 0.8553932672413155 -0.3880948652847884 0.3430520862752612 -0.8553932672413155 -0.3880948652847884 0.3430520862752612 -0.8553932672413155 -0.3880948652847884 0.3430520862752612 -0.8553932672413155 -0.3482386319819908 -0.439505409248896 0.8279884361730375 -0.3482386319819908 -0.439505409248896 0.8279884361730375 -0.3482386319819908 -0.439505409248896 0.8279884361730375 0.3482386319819908 0.439505409248896 -0.8279884361730375 0.3482386319819908 0.439505409248896 -0.8279884361730375 0.3482386319819908 0.439505409248896 -0.8279884361730375 0.6200891519361633 0.05540675429833522 -0.7825723833801022 0.6200891519361633 0.05540675429833522 -0.7825723833801022 0.6200891519361633 0.05540675429833522 -0.7825723833801022 -0.6200891519361633 -0.05540675429833522 0.7825723833801022 -0.6200891519361633 -0.05540675429833522 0.7825723833801022 -0.6200891519361633 -0.05540675429833522 0.7825723833801022 -3.779588511110255e-014 -1 1.546282362135249e-014 -3.779588511110255e-014 -1 1.546282362135249e-014 -3.779588511110255e-014 -1 1.546282362135249e-014 3.779588511110255e-014 1 -1.546282362135249e-014 3.779588511110255e-014 1 -1.546282362135249e-014 3.779588511110255e-014 1 -1.546282362135249e-014 0.4842412345449882 -0.1776735990049878 0.856704452528969 0.4842412345449882 -0.1776735990049878 0.856704452528969 0.4842412345449882 -0.1776735990049878 0.856704452528969 -0.4842412345449882 0.1776735990049878 -0.856704452528969 -0.4842412345449882 0.1776735990049878 -0.856704452528969 -0.4842412345449882 0.1776735990049878 -0.856704452528969 -0.3389407545893631 0.5160155053647877 -0.786668394624772 -0.3389407545893631 0.5160155053647877 -0.786668394624772 -0.3389407545893631 0.5160155053647877 -0.786668394624772 0.3389407545893631 -0.5160155053647877 0.786668394624772 0.3389407545893631 -0.5160155053647877 0.786668394624772 0.3389407545893631 -0.5160155053647877 0.786668394624772 0.8959059414426855 0.3894977775422805 0.213644624030936 0.8959059414426855 0.3894977775422805 0.213644624030936 0.8959059414426855 0.3894977775422805 0.213644624030936 -0.8959059414426855 -0.3894977775422805 -0.213644624030936 -0.8959059414426855 -0.3894977775422805 -0.213644624030936 -0.8959059414426855 -0.3894977775422805 -0.213644624030936 0.3744371258289185 0.3281817239763438 -0.8672332989737499 0.3744371258289185 0.3281817239763438 -0.8672332989737499 0.3744371258289185 0.3281817239763438 -0.8672332989737499 -0.3744371258289185 -0.3281817239763438 0.8672332989737499 -0.3744371258289185 -0.3281817239763438 0.8672332989737499 -0.3744371258289185 -0.3281817239763438 0.8672332989737499 -2.822776996431275e-015 -1 2.425428022485854e-014 -2.822776996431275e-015 -1 2.425428022485854e-014 -2.822776996431275e-015 -1 2.425428022485854e-014 2.822776996431275e-015 1 -2.425428022485854e-014 2.822776996431275e-015 1 -2.425428022485854e-014 2.822776996431275e-015 1 -2.425428022485854e-014 0.9285714285713755 0.3711537444791778 3.26651141031864e-014 0.9285714285713755 0.3711537444791778 3.26651141031864e-014 0.9285714285713755 0.3711537444791778 3.26651141031864e-014 -0.9285714285713755 -0.3711537444791778 -3.26651141031864e-014 -0.9285714285713755 -0.3711537444791778 -3.26651141031864e-014 -0.9285714285713755 -0.3711537444791778 -3.26651141031864e-014 -4.989243610267757e-014 -0.4866686069738744 0.8735866682740234 -4.989243610267757e-014 -0.4866686069738744 0.8735866682740234 -4.989243610267757e-014 -0.4866686069738744 0.8735866682740234 4.989243610267757e-014 0.4866686069738744 -0.8735866682740234 4.989243610267757e-014 0.4866686069738744 -0.8735866682740234 4.989243610267757e-014 0.4866686069738744 -0.8735866682740234 -0.3537377210334923 0.4317628622129531 -0.8297291458853965 -0.3537377210334923 0.4317628622129531 -0.8297291458853965 -0.3537377210334923 0.4317628622129531 -0.8297291458853965 0.3537377210334923 -0.4317628622129531 0.8297291458853965 0.3537377210334923 -0.4317628622129531 0.8297291458853965 0.3537377210334923 -0.4317628622129531 0.8297291458853965 -0.864115490967699 -0.5032935706619471 3.167052124025682e-014 -0.864115490967699 -0.5032935706619471 3.167052124025682e-014 -0.864115490967699 -0.5032935706619471 3.167052124025682e-014 0.864115490967699 0.5032935706619471 -3.167052124025682e-014 0.864115490967699 0.5032935706619471 -3.167052124025682e-014 0.864115490967699 0.5032935706619471 -3.167052124025682e-014 0.3599981369055668 0.426657761487656 -0.8296773445062021 0.3599981369055668 0.426657761487656 -0.8296773445062021 0.3599981369055668 0.426657761487656 -0.8296773445062021 -0.3599981369055668 -0.426657761487656 0.8296773445062021 -0.3599981369055668 -0.426657761487656 0.8296773445062021 -0.3599981369055668 -0.426657761487656 0.8296773445062021 3.747531392326611e-015 -1 -1.515317412563791e-013 3.747531392326611e-015 -1 -1.515317412563791e-013 3.747531392326611e-015 -1 -1.515317412563791e-013 -3.747531392326611e-015 1 1.515317412563791e-013 -3.747531392326611e-015 1 1.515317412563791e-013 -3.747531392326611e-015 1 1.515317412563791e-013 2.772291402518278e-015 0.4102464691274023 -0.9119746896534461 2.772291402518278e-015 0.4102464691274023 -0.9119746896534461 2.772291402518278e-015 0.4102464691274023 -0.9119746896534461 -2.772291402518278e-015 -0.4102464691274023 0.9119746896534461 -2.772291402518278e-015 -0.4102464691274023 0.9119746896534461 -2.772291402518278e-015 -0.4102464691274023 0.9119746896534461 -0.928571428571403 -0.3711537444791091 1.712456673859386e-014 -0.928571428571403 -0.3711537444791091 1.712456673859386e-014 -0.928571428571403 -0.3711537444791091 1.712456673859386e-014 -0.928571428571403 -0.3711537444791091 1.712456673859386e-014 0.928571428571403 0.3711537444791091 -1.712456673859386e-014 0.928571428571403 0.3711537444791091 -1.712456673859386e-014 0.928571428571403 0.3711537444791091 -1.712456673859386e-014 0.928571428571403 0.3711537444791091 -1.712456673859386e-014 -0.3729167891838332 0.3340553236991022 -0.8656443317281691 -0.3729167891838332 0.3340553236991022 -0.8656443317281691 -0.3729167891838332 0.3340553236991022 -0.8656443317281691 0.3729167891838332 -0.3340553236991022 0.8656443317281691 0.3729167891838332 -0.3340553236991022 0.8656443317281691 0.3729167891838332 -0.3340553236991022 0.8656443317281691 0.8696732278757162 0.4936278727100332 -2.972061344860139e-013 0.8696732278757162 0.4936278727100332 -2.972061344860139e-013 0.8696732278757162 0.4936278727100332 -2.972061344860139e-013 -0.8696732278757162 -0.4936278727100332 2.972061344860139e-013 -0.8696732278757162 -0.4936278727100332 2.972061344860139e-013 -0.8696732278757162 -0.4936278727100332 2.972061344860139e-013 0.3398874417791015 0.5118560452538455 -0.7889739639924444 0.3398874417791015 0.5118560452538455 -0.7889739639924444 0.3398874417791015 0.5118560452538455 -0.7889739639924444 -0.3398874417791015 -0.5118560452538455 0.7889739639924444 -0.3398874417791015 -0.5118560452538455 0.7889739639924444 -0.3398874417791015 -0.5118560452538455 0.7889739639924444 3.840323090692156e-016 -1 3.708859662530234e-013 3.840323090692156e-016 -1 3.708859662530234e-013 3.840323090692156e-016 -1 3.708859662530234e-013 -3.840323090692156e-016 1 -3.708859662530234e-013 -3.840323090692156e-016 1 -3.708859662530234e-013 -3.840323090692156e-016 1 -3.708859662530234e-013 -0.5924183571060055 0.08675553849687284 -0.8009456702573146 -0.5924183571060055 0.08675553849687284 -0.8009456702573146 -0.5924183571060055 0.08675553849687284 -0.8009456702573146 0.5924183571060055 -0.08675553849687284 0.8009456702573146 0.5924183571060055 -0.08675553849687284 0.8009456702573146 0.5924183571060055 -0.08675553849687284 0.8009456702573146 3.255285803271611e-014 -1 5.972591128264314e-013 3.255285803271611e-014 -1 5.972591128264314e-013 3.255285803271611e-014 -1 5.972591128264314e-013 -3.255285803271611e-014 1 -5.972591128264314e-013 -3.255285803271611e-014 1 -5.972591128264314e-013 -3.255285803271611e-014 1 -5.972591128264314e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"400\" source=\"#ID4191\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4189\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4187\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4188\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4189\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8 7 6 9 7 9 10 9 6 11 11 6 12 12 6 13 22 23 24 23 22 25 30 31 32 36 37 38 42 43 44 48 49 50 54 55 56 60 61 62 66 67 68 72 73 74 73 72 75 73 76 77 76 73 75 76 78 77 78 76 79 78 80 81 80 78 79 82 83 84 80 85 81 85 80 86 85 84 83 84 85 86 102 103 104 103 102 105 110 111 112 116 117 118 122 123 124 128 129 130 134 135 136 135 134 137 142 143 144 143 142 145 150 151 152 151 150 153 158 159 160 159 158 161 166 167 168 167 166 169 174 175 176 180 181 182 186 187 188 187 186 189 194 195 196 200 201 202 206 207 208 212 213 214 218 219 220 224 225 226 230 231 232 236 237 238 242 243 244 248 249 250 254 255 256 260 261 262 266 267 268 272 273 274 278 279 280 284 285 286 290 291 292 296 297 298 302 303 304 308 309 310 314 315 316 320 321 322 326 327 328 332 333 334 338 339 340 344 345 346 350 351 352 356 357 358 357 356 359 364 365 366 370 371 372 376 377 378 382 383 384 388 389 390 394 395 396</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4189\" />\r\n\t\t\t\t\t<p>3 4 5 14 15 16 16 15 17 17 15 18 19 18 20 18 15 20 21 20 15 26 27 28 29 28 27 33 34 35 39 40 41 45 46 47 51 52 53 57 58 59 63 64 65 69 70 71 87 88 89 90 89 88 87 91 88 92 88 91 89 90 93 94 95 91 92 91 95 94 96 95 97 95 96 98 99 96 97 96 99 98 100 99 101 99 100 106 107 108 109 108 107 113 114 115 119 120 121 125 126 127 131 132 133 138 139 140 141 140 139 146 147 148 149 148 147 154 155 156 157 156 155 162 163 164 165 164 163 170 171 172 173 172 171 177 178 179 183 184 185 190 191 192 193 192 191 197 198 199 203 204 205 209 210 211 215 216 217 221 222 223 227 228 229 233 234 235 239 240 241 245 246 247 251 252 253 257 258 259 263 264 265 269 270 271 275 276 277 281 282 283 287 288 289 293 294 295 299 300 301 305 306 307 311 312 313 317 318 319 323 324 325 329 330 331 335 336 337 341 342 343 347 348 349 353 354 355 360 361 362 363 362 361 367 368 369 373 374 375 379 380 381 385 386 387 391 392 393 397 398 399</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4192\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4193\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4197\">370.9685973062083 19.68503937008472 -21.65354330708686 244.3901410013141 383.9260623430239 -5.905511811022905 244.3901410013136 19.68503937008813 -5.905511811023871 370.9685973062074 603.1663798067432 -21.65354330708664 370.9685973062074 603.1663798067432 -21.65354330708664 370.9685973062083 19.68503937008472 -21.65354330708686 244.3901410013141 383.9260623430239 -5.905511811022905 244.3901410013136 19.68503937008813 -5.905511811023871</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4197\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4194\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4198\">0.1234613672663537 1.304295213500062e-016 0.9923493793985678 0.1234613672663537 1.304295213500062e-016 0.9923493793985678 0.1234613672663537 1.304295213500062e-016 0.9923493793985678 0.1234613672663537 1.304295213500062e-016 0.9923493793985678 -0.1234613672663537 -1.304295213500062e-016 -0.9923493793985678 -0.1234613672663537 -1.304295213500062e-016 -0.9923493793985678 -0.1234613672663537 -1.304295213500062e-016 -0.9923493793985678 -0.1234613672663537 -1.304295213500062e-016 -0.9923493793985678</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4198\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4196\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4199\">-10.9999999999996 -6.999999999999732 -9.999999999999496 -5.947945981998668 -9.99999999999981 -6.999999999999818 -10.99999999999908 -5.314704138416631</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4199\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4195\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4193\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4194\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4195\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4196\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4195\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4200\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4201\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4204\">370.9685973062074 603.1663798067432 -21.65354330708664 244.3901410013141 383.9260623430239 -5.905511811022905 117.7848635902392 164.6392893607117 -21.65354330708715 117.7848635902392 164.6392893607117 -21.65354330708715 244.3901410013141 383.9260623430239 -5.905511811022905 370.9685973062074 603.1663798067432 -21.65354330708664</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4204\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4202\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4205\">0.8660254037844352 -0.5000000000000061 5.391078750950629e-014 0.8660254037844352 -0.5000000000000061 5.391078750950629e-014 0.8660254037844352 -0.5000000000000061 5.391078750950629e-014 -0.8660254037844352 0.5000000000000061 -5.391078750950629e-014 -0.8660254037844352 0.5000000000000061 -5.391078750950629e-014 -0.8660254037844352 0.5000000000000061 -5.391078750950629e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4205\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4203\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4201\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4202\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4203\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4203\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4206\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4207\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID4210\">16.37895290490678 -11.00090013408362 -5.905511811022905 34.09548833798317 19.68503937008359 -5.115907697472721e-013 16.37895290490769 -11.00090013408749 9.663381206337363e-013 34.09548833798135 19.68503937008677 -5.905511811022848 495.1445966120327 818.2455196850524 -1.13686837721616e-013 244.3901410013141 383.9260623430239 -5.905511811022905 117.7848635902392 164.6392893607117 -21.65354330708715 370.9685973062074 603.1663798067432 -21.65354330708664 495.1445966120323 818.2455196850583 -5.905511811022507 495.1445966120323 818.2455196850583 -5.905511811022507 370.9685973062074 603.1663798067432 -21.65354330708664 495.1445966120327 818.2455196850524 -1.13686837721616e-013 244.3901410013141 383.9260623430239 -5.905511811022905 117.7848635902392 164.6392893607117 -21.65354330708715 34.09548833798135 19.68503937008677 -5.905511811022848 34.09548833798317 19.68503937008359 -5.115907697472721e-013 16.37895290490678 -11.00090013408362 -5.905511811022905 16.37895290490769 -11.00090013408749 9.663381206337363e-013 20.45729300279072 -51.18110236219764 5.115907697472721e-013 16.37895290490769 -11.00090013408749 9.663381206337363e-013 0 0 0 32.43914176278986 -51.18110236219127 1.70530256582424e-013 969.8319002212493 -51.18110236220468 3.979039320256561e-013 973.5663585783625 -9.654933084283584 1.080024958355352e-012 956.9681812630358 -51.18110236220014 7.958078640513122e-013 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013 457.3854330708782 792.2148087206369 -2.273736754432321e-013 34.09548833798317 19.68503937008359 -5.115907697472721e-013 495.1445966120327 818.2455196850524 -1.13686837721616e-013 495.1445966120327 857.615598425216 1.13686837721616e-013 956.1937048860712 19.68503937008472 9.094947017729282e-013 973.5663585783625 -9.654933084283584 1.080024958355352e-012 956.1937048860712 19.68503937008472 9.094947017729282e-013 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013 495.1445966120327 857.615598425216 1.13686837721616e-013 495.1445966120327 818.2455196850524 -1.13686837721616e-013 457.3854330708782 792.2148087206369 -2.273736754432321e-013 34.09548833798317 19.68503937008359 -5.115907697472721e-013 16.37895290490769 -11.00090013408749 9.663381206337363e-013 0 0 0 969.8319002212493 -51.18110236220468 3.979039320256561e-013 956.9681812630358 -51.18110236220014 7.958078640513122e-013 32.43914176278986 -51.18110236219127 1.70530256582424e-013 20.45729300279072 -51.18110236219764 5.115907697472721e-013 457.3854330708782 792.2148087206369 -2.273736754432321e-013 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689 0 0 0 495.1445966120321 857.6155984252149 -86.61417322834689 495.1445966120327 857.615598425216 1.13686837721616e-013 495.1445966120327 857.615598425216 1.13686837721616e-013 457.3854330708782 792.2148087206369 -2.273736754432321e-013 495.1445966120321 857.6155984252149 -86.61417322834689 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689 0 0 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID4210\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4208\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID4211\">0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 -0.8660254037844314 0.5000000000000127 -1.445146628233085e-015 -0.8660254037844314 0.5000000000000127 -1.445146628233085e-015 -0.8660254037844314 0.5000000000000127 -1.445146628233085e-015 -0.8660254037844314 0.5000000000000127 -1.445146628233085e-015 -0.8660254037844314 0.5000000000000127 -1.445146628233085e-015 0.8660254037844314 -0.5000000000000127 1.445146628233085e-015 0.8660254037844314 -0.5000000000000127 1.445146628233085e-015 0.8660254037844314 -0.5000000000000127 1.445146628233085e-015 0.8660254037844314 -0.5000000000000127 1.445146628233085e-015 0.8660254037844314 -0.5000000000000127 1.445146628233085e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID4211\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4209\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4207\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4208\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"21\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4209\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 4 5 7 4 7 8 18 19 20 19 18 21 22 23 24 23 22 25 19 26 20 26 19 27 26 27 28 26 28 29 29 28 30 29 30 25 25 30 23 44 45 46 45 44 47 47 44 48</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"21\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4209\" />\r\n\t\t\t\t\t<p>9 10 11 10 12 11 13 14 12 12 14 11 11 14 15 14 16 15 17 15 16 31 32 33 33 32 34 32 35 34 34 35 36 35 37 36 37 38 36 39 36 38 33 40 31 41 31 40 42 43 38 39 38 43 49 50 51 51 50 52 53 52 50</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4212\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4213\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4217\">117.7848635902424 19.68503937008109 -21.65354330708578 244.3901410013141 383.9260623430239 -5.905511811022905 117.7848635902392 164.6392893607117 -21.65354330708715 244.3901410013136 19.68503937008813 -5.905511811023871 244.3901410013136 19.68503937008813 -5.905511811023871 117.7848635902424 19.68503937008109 -21.65354330708578 244.3901410013141 383.9260623430239 -5.905511811022905 117.7848635902392 164.6392893607117 -21.65354330708715</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4217\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4214\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4218\">-0.1234356107414911 4.73118723018362e-017 0.9923525835109592 -0.1234356107414911 4.73118723018362e-017 0.9923525835109592 -0.1234356107414911 4.73118723018362e-017 0.9923525835109592 -0.1234356107414911 4.73118723018362e-017 0.9923525835109592 0.1234356107414911 -4.73118723018362e-017 -0.9923525835109592 0.1234356107414911 -4.73118723018362e-017 -0.9923525835109592 0.1234356107414911 -4.73118723018362e-017 -0.9923525835109592 0.1234356107414911 -4.73118723018362e-017 -0.9923525835109592</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4218\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4216\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4219\">-21.8624970622456 1.111644572055512 -21.17829470323503 0.6693303405180702 -21.86275911951774 0.9356408785413177 -21.17763620575128 1.111592401663354</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4219\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4215\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4213\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4214\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4215\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4216\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4215\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4220\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4221\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4225\">117.7848635902424 19.68503937008109 -21.65354330708578 117.7848635902392 164.6392893607117 -21.65354330708715 34.09548833798135 19.68503937008677 -5.905511811022848 34.09548833798135 19.68503937008677 -5.905511811022848 117.7848635902392 164.6392893607117 -21.65354330708715 117.7848635902424 19.68503937008109 -21.65354330708578</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4225\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4222\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4226\">0.1849268666760758 7.725753630588583e-016 0.9827522851570324 0.1849268666760758 7.725753630588583e-016 0.9827522851570324 0.1849268666760758 7.725753630588583e-016 0.9827522851570324 -0.1849268666760758 -7.725753630588583e-016 -0.9827522851570324 -0.1849268666760758 -7.725753630588583e-016 -0.9827522851570324 -0.1849268666760758 -7.725753630588583e-016 -0.9827522851570324</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4226\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4224\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4227\">-8.993007946863088 -6.998811251435206 -8.993202317528324 -6.580133262740672 -8.325385293218675 -6.998769181639214</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID4227\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4223\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4221\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4222\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4223\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4224\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4223\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4228\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4229\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4232\">990.2891932240257 3.865352482534945e-012 -86.61417322834677 495.1445966120327 857.615598425216 1.13686837721616e-013 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013 495.1445966120321 857.6155984252149 -86.61417322834689 495.1445966120321 857.6155984252149 -86.61417322834689 990.2891932240257 3.865352482534945e-012 -86.61417322834677 495.1445966120327 857.615598425216 1.13686837721616e-013 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4232\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4230\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4233\">0.8660254037844402 0.4999999999999976 1.897353801849633e-019 0.8660254037844402 0.4999999999999976 1.897353801849633e-019 0.8660254037844402 0.4999999999999976 1.897353801849633e-019 0.8660254037844402 0.4999999999999976 1.897353801849633e-019 -0.8660254037844402 -0.4999999999999976 -1.897353801849633e-019 -0.8660254037844402 -0.4999999999999976 -1.897353801849633e-019 -0.8660254037844402 -0.4999999999999976 -1.897353801849633e-019 -0.8660254037844402 -0.4999999999999976 -1.897353801849633e-019</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4233\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4231\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4229\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4230\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4231\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4236\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4237\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID4240\">969.8319002212436 -51.18110236220014 -86.614173228347 990.2891932240257 3.865352482534945e-012 -86.61417322834677 956.9681812630345 -51.18110236220309 -86.61417322834672 877.165233118867 -51.18110236219718 -86.61417322834672 624.4270984722389 -51.181102362194 -86.61417322834745 495.1445966120321 857.6155984252149 -86.61417322834689 370.9685973062269 -51.18110236219491 -86.61417322834814 117.9306742667955 -51.18110236219513 -86.61417322834569 32.43914176278895 -51.18110236220127 -86.61417322834666 20.45729300277935 -51.18110236219809 -86.61417322834717 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689 495.1445966120321 857.6155984252149 -86.61417322834689 20.45729300277935 -51.18110236219809 -86.61417322834717 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689 32.43914176278895 -51.18110236220127 -86.61417322834666 117.9306742667955 -51.18110236219513 -86.61417322834569 370.9685973062269 -51.18110236219491 -86.61417322834814 624.4270984722389 -51.181102362194 -86.61417322834745 990.2891932240257 3.865352482534945e-012 -86.61417322834677 877.165233118867 -51.18110236219718 -86.61417322834672 956.9681812630345 -51.18110236220309 -86.61417322834672 969.8319002212436 -51.18110236220014 -86.614173228347</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID4240\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4238\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID4241\">2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 2.279535067650773e-017 9.340401715962618e-017 -1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1 -2.279535067650773e-017 -9.340401715962618e-017 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID4241\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4239\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4237\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4238\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4239\" />\r\n\t\t\t\t\t<p>0 1 2 2 1 3 3 1 4 1 5 4 4 5 6 6 5 7 7 5 8 8 5 9 10 9 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"9\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4239\" />\r\n\t\t\t\t\t<p>11 12 13 12 11 14 14 11 15 15 11 16 16 11 17 17 11 18 17 18 19 19 18 20 20 18 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4242\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4243\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4247\">877.1652331188795 156.5663677154037 -21.65354330708738 877.1652331188579 19.68503937008131 -21.65354330708686 750.6636456761621 375.6735444042968 -5.905511811022961 750.6636456761455 19.68503937008427 -5.905511811022677 877.1652331188579 19.68503937008131 -21.65354330708686 750.6636456761621 375.6735444042968 -5.905511811022961 750.6636456761455 19.68503937008427 -5.905511811022677 877.1652331188795 156.5663677154037 -21.65354330708738</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4247\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4244\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4248\">0.1235352441775758 -1.222437949477406e-015 0.9923401853427013 0.1235352441775758 -1.222437949477406e-015 0.9923401853427013 0.1235352441775758 -1.222437949477406e-015 0.9923401853427013 0.1235352441775758 -1.222437949477406e-015 0.9923401853427013 -0.1235352441775758 1.222437949477406e-015 -0.9923401853427013 -0.1235352441775758 1.222437949477406e-015 -0.9923401853427013 -0.1235352441775758 1.222437949477406e-015 -0.9923401853427013 -0.1235352441775758 1.222437949477406e-015 -0.9923401853427013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4248\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4246\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4249\">-14.93797337972725 -6.604637928836679 -14.93797304937732 -6.999998534568681 -13.93857193147181 -5.971780528501746 -13.93857107232807 -6.99999842122185</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4249\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4245\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4243\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4244\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4245\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4246\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 2 2 1 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4245\" />\r\n\t\t\t\t\t<p>4 5 6 5 4 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4250\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4251\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4255\">877.1652331188579 19.68503937008131 -21.65354330708686 877.1652331188795 156.5663677154037 -21.65354330708738 956.1937048860718 19.68503937008723 -5.905511811023644 956.1937048860718 19.68503937008723 -5.905511811023644 877.1652331188795 156.5663677154037 -21.65354330708738 877.1652331188579 19.68503937008131 -21.65354330708686</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4255\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4252\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4256\">-0.1954280314664562 1.475124818302309e-015 0.9807180453714237 -0.1954280314664562 1.475124818302309e-015 0.9807180453714237 -0.1954280314664562 1.475124818302309e-015 0.9807180453714237 0.1954280314664562 -1.475124818302309e-015 -0.9807180453714237 0.1954280314664562 -1.475124818302309e-015 -0.9807180453714237 0.1954280314664562 -1.475124818302309e-015 -0.9807180453714237</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4256\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4254\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4257\">1 0 0 2.486899575160351e-013 0.9999999999999525 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID4257\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4253\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4251\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4252\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4253\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4254\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4253\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4258\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4259\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4263\">750.6636456761621 375.6735444042968 -5.905511811022961 750.6636456761455 19.68503937008427 -5.905511811022677 624.2266605164668 594.6688266567332 -21.65354330708777 624.2266605164455 19.6850393700829 -21.65354330708584 750.6636456761455 19.68503937008427 -5.905511811022677 624.2266605164668 594.6688266567332 -21.65354330708777 624.2266605164455 19.6850393700829 -21.65354330708584 750.6636456761621 375.6735444042968 -5.905511811022961</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4263\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4260\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4264\">-0.1235973998385544 5.079351652823027e-016 0.9923324456819643 -0.1235973998385544 5.079351652823027e-016 0.9923324456819643 -0.1235973998385544 5.079351652823027e-016 0.9923324456819643 -0.1235973998385544 5.079351652823027e-016 0.9923324456819643 0.1235973998385544 -5.079351652823027e-016 -0.9923324456819643 0.1235973998385544 -5.079351652823027e-016 -0.9923324456819643 0.1235973998385544 -5.079351652823027e-016 -0.9923324456819643 0.1235973998385544 -5.079351652823027e-016 -0.9923324456819643</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4264\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4262\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4265\">-18.13943178344393 0.6679676871283202 -18.13878692258709 1.100209518364163 -18.82379284499486 0.4021154593858187 -18.82275128176317 1.100261724315964</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4265\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4261\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4259\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4260\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4261\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4262\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 2 2 1 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4261\" />\r\n\t\t\t\t\t<p>4 5 6 5 4 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4266\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4267\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4271\">624.2266605164668 594.6688266567332 -21.65354330708777 624.2266605164455 19.6850393700829 -21.65354330708584 496.582307478468 815.7553314178099 -5.9055118110237 496.582307478463 19.68503937008654 -5.905511811022564 624.2266605164455 19.6850393700829 -21.65354330708584 496.582307478468 815.7553314178099 -5.9055118110237 496.582307478463 19.68503937008654 -5.905511811022564 624.2266605164668 594.6688266567332 -21.65354330708777</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4271\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4268\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4272\">0.1224459220242791 -2.383754001480942e-016 0.9924751866820775 0.1224459220242791 -2.383754001480942e-016 0.9924751866820775 0.1224459220242791 -2.383754001480942e-016 0.9924751866820775 0.1224459220242791 -2.383754001480942e-016 0.9924751866820775 -0.1224459220242791 2.383754001480942e-016 -0.9924751866820775 -0.1224459220242791 2.383754001480942e-016 -0.9924751866820775 -0.1224459220242791 2.383754001480942e-016 -0.9924751866820775 -0.1224459220242791 2.383754001480942e-016 -0.9924751866820775</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4272\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4270\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4273\">-12.97202527457186 -5.339271424012162 -12.97204451805802 -7.0000234138831 -11.96372486539755 -4.700698738987111 -11.96375150817967 -7.000024999705298</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4273\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4269\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4267\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4268\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4269\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4270\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 2 2 1 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4269\" />\r\n\t\t\t\t\t<p>4 5 6 5 4 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4274\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4275\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4279\">496.582307478463 19.68503937008654 -5.905511811022564 370.9685973062083 19.68503937008472 -21.65354330708686 496.582307478468 815.7553314178099 -5.9055118110237 370.9685973062074 603.1663798067432 -21.65354330708664 370.9685973062083 19.68503937008472 -21.65354330708686 496.582307478468 815.7553314178099 -5.9055118110237 370.9685973062074 603.1663798067432 -21.65354330708664 496.582307478463 19.68503937008654 -5.905511811022564</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4279\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4276\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4280\">-0.1243949651104207 9.131692797759161e-017 0.9922327814858655 -0.1243949651104207 9.131692797759161e-017 0.9922327814858655 -0.1243949651104207 9.131692797759161e-017 0.9922327814858655 -0.1243949651104207 9.131692797759161e-017 0.9922327814858655 0.1243949651104207 -9.131692797759161e-017 -0.9922327814858655 0.1243949651104207 -9.131692797759161e-017 -0.9922327814858655 0.1243949651104207 -9.131692797759161e-017 -0.9922327814858655 0.1243949651104207 -9.131692797759161e-017 -0.9922327814858655</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4280\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4278\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4281\">-19.18561481841854 1.074057791293042 -19.86519388959034 1.074110167275077 -19.18707090458353 0.1074679443158094 -19.8662611309079 0.3656461720718374</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4281\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4277\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4275\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4276\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4277\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4278\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 2 2 1 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4277\" />\r\n\t\t\t\t\t<p>4 5 6 5 4 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4282\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4283\">\r\n\t\t\t\t\t<float_array count=\"1200\" id=\"ID4286\">370.9685973062074 603.1663798067432 -21.65354330708664 495.1445966120323 818.2455196850583 -5.905511811022507 496.582307478468 815.7553314178099 -5.9055118110237 496.582307478468 815.7553314178099 -5.9055118110237 495.1445966120323 818.2455196850583 -5.905511811022507 370.9685973062074 603.1663798067432 -21.65354330708664 495.1445966120323 818.2455196850583 -5.905511811022507 495.1445966120327 818.2455196850524 -1.13686837721616e-013 496.582307478468 815.7553314178099 -5.9055118110237 624.2266605164668 594.6688266567332 -21.65354330708777 750.6636456761621 375.6735444042968 -5.905511811022961 877.1652331188795 156.5663677154037 -21.65354330708738 956.1937048860718 19.68503937008723 -5.905511811023644 956.1937048860712 19.68503937008472 9.094947017729282e-013 495.1445966120327 818.2455196850524 -1.13686837721616e-013 956.1937048860718 19.68503937008723 -5.905511811023644 956.1937048860712 19.68503937008472 9.094947017729282e-013 750.6636456761621 375.6735444042968 -5.905511811022961 877.1652331188795 156.5663677154037 -21.65354330708738 624.2266605164668 594.6688266567332 -21.65354330708777 496.582307478468 815.7553314178099 -5.9055118110237 495.1445966120323 818.2455196850583 -5.905511811022507 956.1937048860712 19.68503937008472 9.094947017729282e-013 973.5663585783625 -9.654933084283584 1.080024958355352e-012 956.1937048860718 19.68503937008723 -5.905511811023644 973.5663585783616 -9.654933084290178 -5.905511811023757 973.5663585783625 -9.654933084283584 1.080024958355352e-012 956.1937048860718 19.68503937008723 -5.905511811023644 973.5663585783616 -9.654933084290178 -5.905511811023757 956.1937048860712 19.68503937008472 9.094947017729282e-013 956.9681812630358 -51.18110236220014 7.958078640513122e-013 973.5663585783616 -9.654933084290178 -5.905511811023757 973.5663585783625 -9.654933084283584 1.080024958355352e-012 973.5663585783625 -9.654933084283584 1.080024958355352e-012 973.5663585783616 -9.654933084290178 -5.905511811023757 956.9681812630358 -51.18110236220014 7.958078640513122e-013 877.1652331188684 -15.74803149605987 -15.74803149606225 956.1937048860718 19.68503937008723 -5.905511811023644 973.5663585783616 -9.654933084290178 -5.905511811023757 973.5663585783616 -9.654933084290178 -5.905511811023757 956.1937048860718 19.68503937008723 -5.905511811023644 877.1652331188684 -15.74803149605987 -15.74803149606225 956.9681812630358 -51.18110236220014 7.958078640513122e-013 490.8361277766442 -858.784579626654 -449.9098641741703 973.5663585783616 -9.654933084290178 -5.905511811023757 973.5663585783616 -9.654933084290178 -5.905511811023757 490.8361277766442 -858.784579626654 -449.9098641741703 956.9681812630358 -51.18110236220014 7.958078640513122e-013 877.1652331188684 -15.74803149605987 -15.74803149606225 877.1652331188595 19.68503937008404 -15.74803149606322 956.1937048860718 19.68503937008723 -5.905511811023644 956.1937048860718 19.68503937008723 -5.905511811023644 877.1652331188595 19.68503937008404 -15.74803149606322 877.1652331188684 -15.74803149605987 -15.74803149606225 877.1652331188648 -51.18110236219786 -71.63937358194215 877.1652331188684 -15.74803149605987 -15.74803149606225 973.5663585783616 -9.654933084290178 -5.905511811023757 973.5663585783616 -9.654933084290178 -5.905511811023757 877.1652331188684 -15.74803149605987 -15.74803149606225 877.1652331188648 -51.18110236219786 -71.63937358194215 490.8361277766442 -858.784579626654 -449.9098641741703 877.1652331188648 -51.18110236219786 -71.63937358194215 973.5663585783616 -9.654933084290178 -5.905511811023757 973.5663585783616 -9.654933084290178 -5.905511811023757 877.1652331188648 -51.18110236219786 -71.63937358194215 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 956.9681812630358 -51.18110236220014 7.958078640513122e-013 969.8319002212493 -51.18110236220468 3.979039320256561e-013 969.8319002212493 -51.18110236220468 3.979039320256561e-013 956.9681812630358 -51.18110236220014 7.958078640513122e-013 490.8361277766442 -858.784579626654 -449.9098641741703 750.6636456761685 19.68503937008859 -2.273736754432321e-013 750.6636456761455 19.68503937008427 -5.905511811022677 877.1652331188595 19.68503937008404 -15.74803149606322 877.1652331188579 19.68503937008131 -21.65354330708686 624.2266605164539 19.68503937008813 -15.7480314960635 624.2266605164455 19.6850393700829 -21.65354330708584 956.1937048860718 19.68503937008723 -5.905511811023644 496.5823074784537 19.68503937008836 9.094947017729282e-013 496.582307478463 19.68503937008654 -5.905511811022564 370.9685973062155 19.68503937008245 -15.7480314960622 370.9685973062083 19.68503937008472 -21.65354330708686 244.390141001315 19.68503937009064 1.080024958355352e-012 244.3901410013136 19.68503937008813 -5.905511811023871 117.7848635902433 19.68503937008086 -15.74803149606333 117.7848635902424 19.68503937008109 -21.65354330708578 117.7848635902433 19.68503937008086 -15.74803149606333 244.3901410013136 19.68503937008813 -5.905511811023871 117.7848635902424 19.68503937008109 -21.65354330708578 244.390141001315 19.68503937009064 1.080024958355352e-012 370.9685973062155 19.68503937008245 -15.7480314960622 370.9685973062083 19.68503937008472 -21.65354330708686 496.582307478463 19.68503937008654 -5.905511811022564 496.5823074784537 19.68503937008836 9.094947017729282e-013 624.2266605164539 19.68503937008813 -15.7480314960635 624.2266605164455 19.6850393700829 -21.65354330708584 956.1937048860718 19.68503937008723 -5.905511811023644 877.1652331188579 19.68503937008131 -21.65354330708686 877.1652331188595 19.68503937008404 -15.74803149606322 750.6636456761455 19.68503937008427 -5.905511811022677 750.6636456761685 19.68503937008859 -2.273736754432321e-013 877.1652331188595 19.68503937008404 -15.74803149606322 877.1652331188684 -15.74803149605987 -15.74803149606225 750.6636456761685 19.68503937008859 -2.273736754432321e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 877.1652331188684 -15.74803149605987 -15.74803149606225 750.6636456761685 19.68503937008859 -2.273736754432321e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 877.1652331188595 19.68503937008404 -15.74803149606322 877.1652331188684 -15.74803149605987 -15.74803149606225 877.1652331188648 -51.18110236219786 -71.63937358194215 750.6636456761657 -15.74803149604986 6.821210263296962e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 877.1652331188648 -51.18110236219786 -71.63937358194215 877.1652331188684 -15.74803149605987 -15.74803149606225 490.8361277766442 -858.784579626654 -449.9098641741703 750.6636456761657 -15.74803149604986 6.821210263296962e-013 877.1652331188648 -51.18110236219786 -71.63937358194215 877.1652331188648 -51.18110236219786 -71.63937358194215 750.6636456761657 -15.74803149604986 6.821210263296962e-013 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 969.8319002212493 -51.18110236220468 3.979039320256561e-013 969.8319002212436 -51.18110236220014 -86.614173228347 969.8319002212436 -51.18110236220014 -86.614173228347 969.8319002212493 -51.18110236220468 3.979039320256561e-013 490.8361277766442 -858.784579626654 -449.9098641741703 117.7848635902424 19.68503937008109 -21.65354330708578 117.7848635902433 19.68503937008086 -15.74803149606333 34.09548833798135 19.68503937008677 -5.905511811022848 34.09548833798135 19.68503937008677 -5.905511811022848 117.7848635902433 19.68503937008086 -15.74803149606333 117.7848635902424 19.68503937008109 -21.65354330708578 244.3901410013091 -15.74803149605555 8.526512829121202e-013 117.7848635902587 -15.74803149605282 -15.74803149606294 244.390141001315 19.68503937009064 1.080024958355352e-012 117.7848635902433 19.68503937008086 -15.74803149606333 117.7848635902587 -15.74803149605282 -15.74803149606294 244.390141001315 19.68503937009064 1.080024958355352e-012 117.7848635902433 19.68503937008086 -15.74803149606333 244.3901410013091 -15.74803149605555 8.526512829121202e-013 370.9685973062155 19.68503937008245 -15.7480314960622 370.9685973062169 -15.74803149605509 -15.74803149606225 244.390141001315 19.68503937009064 1.080024958355352e-012 244.3901410013091 -15.74803149605555 8.526512829121202e-013 370.9685973062169 -15.74803149605509 -15.74803149606225 244.390141001315 19.68503937009064 1.080024958355352e-012 244.3901410013091 -15.74803149605555 8.526512829121202e-013 370.9685973062155 19.68503937008245 -15.7480314960622 496.5823074784505 -15.74803149605555 6.821210263296962e-013 370.9685973062169 -15.74803149605509 -15.74803149606225 496.5823074784537 19.68503937008836 9.094947017729282e-013 370.9685973062155 19.68503937008245 -15.7480314960622 370.9685973062169 -15.74803149605509 -15.74803149606225 496.5823074784537 19.68503937008836 9.094947017729282e-013 370.9685973062155 19.68503937008245 -15.7480314960622 496.5823074784505 -15.74803149605555 6.821210263296962e-013 624.2266605164539 19.68503937008813 -15.7480314960635 624.2266605164493 -15.748031496056 -15.74803149606248 496.5823074784537 19.68503937008836 9.094947017729282e-013 496.5823074784505 -15.74803149605555 6.821210263296962e-013 624.2266605164493 -15.748031496056 -15.74803149606248 496.5823074784537 19.68503937008836 9.094947017729282e-013 496.5823074784505 -15.74803149605555 6.821210263296962e-013 624.2266605164539 19.68503937008813 -15.7480314960635 750.6636456761685 19.68503937008859 -2.273736754432321e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 624.2266605164539 19.68503937008813 -15.7480314960635 624.2266605164493 -15.748031496056 -15.74803149606248 750.6636456761657 -15.74803149604986 6.821210263296962e-013 624.2266605164539 19.68503937008813 -15.7480314960635 624.2266605164493 -15.748031496056 -15.74803149606248 750.6636456761685 19.68503937008859 -2.273736754432321e-013 490.8361277766442 -858.784579626654 -449.9098641741703 624.4270984722402 -51.18110236219354 -72.00490323441454 750.6636456761657 -15.74803149604986 6.821210263296962e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 624.4270984722402 -51.18110236219354 -72.00490323441454 490.8361277766442 -858.784579626654 -449.9098641741703 956.9681812630345 -51.18110236220309 -86.61417322834672 490.8361277766442 -858.784579626654 -449.9098641741703 969.8319002212436 -51.18110236220014 -86.614173228347 969.8319002212436 -51.18110236220014 -86.614173228347 490.8361277766442 -858.784579626654 -449.9098641741703 956.9681812630345 -51.18110236220309 -86.61417322834672 990.2891932240257 3.865352482534945e-012 -86.61417322834677 969.8319002212436 -51.18110236220014 -86.614173228347 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013 969.8319002212493 -51.18110236220468 3.979039320256561e-013 969.8319002212436 -51.18110236220014 -86.614173228347 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013 969.8319002212493 -51.18110236220468 3.979039320256561e-013 990.2891932240257 3.865352482534945e-012 -86.61417322834677 34.09548833798135 19.68503937008677 -5.905511811022848 117.7848635902433 19.68503937008086 -15.74803149606333 117.7848635902587 -15.74803149605282 -15.74803149606294 117.7848635902587 -15.74803149605282 -15.74803149606294 117.7848635902433 19.68503937008086 -15.74803149606333 34.09548833798135 19.68503937008677 -5.905511811022848 117.9306742667968 -51.18110236219741 -71.6393735819421 117.7848635902587 -15.74803149605282 -15.74803149606294 244.3901410013091 -15.74803149605555 8.526512829121202e-013 244.3901410013091 -15.74803149605555 8.526512829121202e-013 117.7848635902587 -15.74803149605282 -15.74803149606294 117.9306742667968 -51.18110236219741 -71.6393735819421 370.9685973062169 -15.74803149605509 -15.74803149606225 370.9685973062296 -51.18110236219491 -71.6393735819421 244.3901410013091 -15.74803149605555 8.526512829121202e-013 244.3901410013091 -15.74803149605555 8.526512829121202e-013 370.9685973062296 -51.18110236219491 -71.6393735819421 370.9685973062169 -15.74803149605509 -15.74803149606225 370.9685973062296 -51.18110236219491 -71.6393735819421 370.9685973062169 -15.74803149605509 -15.74803149606225 496.5823074784505 -15.74803149605555 6.821210263296962e-013 496.5823074784505 -15.74803149605555 6.821210263296962e-013 370.9685973062169 -15.74803149605509 -15.74803149606225 370.9685973062296 -51.18110236219491 -71.6393735819421 624.2266605164493 -15.748031496056 -15.74803149606248 624.4270984722402 -51.18110236219354 -72.00490323441454 496.5823074784505 -15.74803149605555 6.821210263296962e-013 496.5823074784505 -15.74803149605555 6.821210263296962e-013 624.4270984722402 -51.18110236219354 -72.00490323441454 624.2266605164493 -15.748031496056 -15.74803149606248 624.4270984722402 -51.18110236219354 -72.00490323441454 624.2266605164493 -15.748031496056 -15.74803149606248 750.6636456761657 -15.74803149604986 6.821210263296962e-013 750.6636456761657 -15.74803149604986 6.821210263296962e-013 624.2266605164493 -15.748031496056 -15.74803149606248 624.4270984722402 -51.18110236219354 -72.00490323441454 490.8361277766442 -858.784579626654 -449.9098641741703 496.5823074784505 -15.74803149605555 6.821210263296962e-013 624.4270984722402 -51.18110236219354 -72.00490323441454 624.4270984722402 -51.18110236219354 -72.00490323441454 496.5823074784505 -15.74803149605555 6.821210263296962e-013 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 956.9681812630345 -51.18110236220309 -86.61417322834672 956.9681812630397 -51.18110236219854 -23.38047946702778 956.9681812630397 -51.18110236219854 -23.38047946702778 956.9681812630345 -51.18110236220309 -86.61417322834672 490.8361277766442 -858.784579626654 -449.9098641741703 16.37895290490678 -11.00090013408362 -5.905511811022905 34.09548833798135 19.68503937008677 -5.905511811022848 117.7848635902587 -15.74803149605282 -15.74803149606294 117.7848635902587 -15.74803149605282 -15.74803149606294 34.09548833798135 19.68503937008677 -5.905511811022848 16.37895290490678 -11.00090013408362 -5.905511811022905 117.7848635902587 -15.74803149605282 -15.74803149606294 117.9306742667968 -51.18110236219741 -71.6393735819421 16.37895290490678 -11.00090013408362 -5.905511811022905 16.37895290490678 -11.00090013408362 -5.905511811022905 117.9306742667968 -51.18110236219741 -71.6393735819421 117.7848635902587 -15.74803149605282 -15.74803149606294 117.9306742667968 -51.18110236219741 -71.6393735819421 244.3901410013091 -15.74803149605555 8.526512829121202e-013 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 244.3901410013091 -15.74803149605555 8.526512829121202e-013 117.9306742667968 -51.18110236219741 -71.6393735819421 244.3901410013091 -15.74803149605555 8.526512829121202e-013 370.9685973062296 -51.18110236219491 -71.6393735819421 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 370.9685973062296 -51.18110236219491 -71.6393735819421 244.3901410013091 -15.74803149605555 8.526512829121202e-013 490.8361277766442 -858.784579626654 -449.9098641741703 370.9685973062296 -51.18110236219491 -71.6393735819421 496.5823074784505 -15.74803149605555 6.821210263296962e-013 496.5823074784505 -15.74803149605555 6.821210263296962e-013 370.9685973062296 -51.18110236219491 -71.6393735819421 490.8361277766442 -858.784579626654 -449.9098641741703 877.165233118867 -51.18110236219718 -86.61417322834672 490.8361277766442 -858.784579626654 -449.9098641741703 956.9681812630397 -51.18110236219854 -23.38047946702778 956.9681812630397 -51.18110236219854 -23.38047946702778 490.8361277766442 -858.784579626654 -449.9098641741703 877.165233118867 -51.18110236219718 -86.61417322834672 956.9681812630345 -51.18110236220309 -86.61417322834672 877.165233118867 -51.18110236219718 -86.61417322834672 956.9681812630397 -51.18110236219854 -23.38047946702778 956.9681812630397 -51.18110236219854 -23.38047946702778 877.165233118867 -51.18110236219718 -86.61417322834672 956.9681812630345 -51.18110236220309 -86.61417322834672 16.37895290490678 -11.00090013408362 -5.905511811022905 117.9306742667968 -51.18110236219741 -71.6393735819421 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 117.9306742667968 -51.18110236219741 -71.6393735819421 16.37895290490678 -11.00090013408362 -5.905511811022905 750.663645676161 -51.181102362194 -32.11021222323262 490.8361277766442 -858.784579626654 -449.9098641741703 877.165233118867 -51.18110236219718 -86.61417322834672 877.165233118867 -51.18110236219718 -86.61417322834672 490.8361277766442 -858.784579626654 -449.9098641741703 750.663645676161 -51.181102362194 -32.11021222323262 490.8361277766442 -858.784579626654 -449.9098641741703 32.43914176278986 -51.18110236219127 1.70530256582424e-013 16.37895290490678 -11.00090013408362 -5.905511811022905 16.37895290490678 -11.00090013408362 -5.905511811022905 32.43914176278986 -51.18110236219127 1.70530256582424e-013 490.8361277766442 -858.784579626654 -449.9098641741703 624.4270984722389 -51.181102362194 -86.61417322834745 490.8361277766442 -858.784579626654 -449.9098641741703 750.663645676161 -51.181102362194 -32.11021222323262 750.663645676161 -51.181102362194 -32.11021222323262 490.8361277766442 -858.784579626654 -449.9098641741703 624.4270984722389 -51.181102362194 -86.61417322834745 877.165233118867 -51.18110236219718 -86.61417322834672 624.4270984722389 -51.181102362194 -86.61417322834745 750.663645676161 -51.181102362194 -32.11021222323262 750.663645676161 -51.181102362194 -32.11021222323262 624.4270984722389 -51.181102362194 -86.61417322834745 877.165233118867 -51.18110236219718 -86.61417322834672 32.43914176278986 -51.18110236219127 1.70530256582424e-013 16.37895290490769 -11.00090013408749 9.663381206337363e-013 16.37895290490678 -11.00090013408362 -5.905511811022905 16.37895290490678 -11.00090013408362 -5.905511811022905 16.37895290490769 -11.00090013408749 9.663381206337363e-013 32.43914176278986 -51.18110236219127 1.70530256582424e-013 20.45729300279072 -51.18110236219764 5.115907697472721e-013 32.43914176278986 -51.18110236219127 1.70530256582424e-013 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 32.43914176278986 -51.18110236219127 1.70530256582424e-013 20.45729300279072 -51.18110236219764 5.115907697472721e-013 496.5823074784435 -51.1811023622065 -32.1102122232333 490.8361277766442 -858.784579626654 -449.9098641741703 624.4270984722389 -51.181102362194 -86.61417322834745 624.4270984722389 -51.181102362194 -86.61417322834745 490.8361277766442 -858.784579626654 -449.9098641741703 496.5823074784435 -51.1811023622065 -32.1102122232333 490.8361277766442 -858.784579626654 -449.9098641741703 20.45729300277935 -51.18110236219809 -86.61417322834717 20.45729300279072 -51.18110236219764 5.115907697472721e-013 20.45729300279072 -51.18110236219764 5.115907697472721e-013 20.45729300277935 -51.18110236219809 -86.61417322834717 490.8361277766442 -858.784579626654 -449.9098641741703 370.9685973062269 -51.18110236219491 -86.61417322834814 490.8361277766442 -858.784579626654 -449.9098641741703 496.5823074784435 -51.1811023622065 -32.1102122232333 496.5823074784435 -51.1811023622065 -32.1102122232333 490.8361277766442 -858.784579626654 -449.9098641741703 370.9685973062269 -51.18110236219491 -86.61417322834814 624.4270984722389 -51.181102362194 -86.61417322834745 370.9685973062269 -51.18110236219491 -86.61417322834814 496.5823074784435 -51.1811023622065 -32.1102122232333 496.5823074784435 -51.1811023622065 -32.1102122232333 370.9685973062269 -51.18110236219491 -86.61417322834814 624.4270984722389 -51.181102362194 -86.61417322834745 32.43914176278895 -51.18110236220127 -86.61417322834666 20.45729300277935 -51.18110236219809 -86.61417322834717 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 20.45729300277935 -51.18110236219809 -86.61417322834717 32.43914176278895 -51.18110236220127 -86.61417322834666 0 0 0 20.45729300279072 -51.18110236219764 5.115907697472721e-013 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689 20.45729300277935 -51.18110236219809 -86.61417322834717 20.45729300279072 -51.18110236219764 5.115907697472721e-013 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689 20.45729300277935 -51.18110236219809 -86.61417322834717 0 0 0 370.9685973062269 -51.18110236219491 -86.61417322834814 244.44963578651 -51.18110236217717 -32.11021222323302 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 244.44963578651 -51.18110236217717 -32.11021222323302 370.9685973062269 -51.18110236219491 -86.61417322834814 32.43914176278895 -51.18110236220127 -86.61417322834666 490.8361277766442 -858.784579626654 -449.9098641741703 32.4391417627885 -51.18110236216285 -23.38047946702761 32.4391417627885 -51.18110236216285 -23.38047946702761 490.8361277766442 -858.784579626654 -449.9098641741703 32.43914176278895 -51.18110236220127 -86.61417322834666 244.44963578651 -51.18110236217717 -32.11021222323302 117.9306742667955 -51.18110236219513 -86.61417322834569 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 117.9306742667955 -51.18110236219513 -86.61417322834569 244.44963578651 -51.18110236217717 -32.11021222323302 370.9685973062269 -51.18110236219491 -86.61417322834814 117.9306742667955 -51.18110236219513 -86.61417322834569 244.44963578651 -51.18110236217717 -32.11021222323302 244.44963578651 -51.18110236217717 -32.11021222323302 117.9306742667955 -51.18110236219513 -86.61417322834569 370.9685973062269 -51.18110236219491 -86.61417322834814 117.9306742667955 -51.18110236219513 -86.61417322834569 32.4391417627885 -51.18110236216285 -23.38047946702761 490.8361277766442 -858.784579626654 -449.9098641741703 490.8361277766442 -858.784579626654 -449.9098641741703 32.4391417627885 -51.18110236216285 -23.38047946702761 117.9306742667955 -51.18110236219513 -86.61417322834569 117.9306742667955 -51.18110236219513 -86.61417322834569 32.43914176278895 -51.18110236220127 -86.61417322834666 32.4391417627885 -51.18110236216285 -23.38047946702761 32.4391417627885 -51.18110236216285 -23.38047946702761 32.43914176278895 -51.18110236220127 -86.61417322834666 117.9306742667955 -51.18110236219513 -86.61417322834569</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"400\" source=\"#ID4286\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4284\">\r\n\t\t\t\t\t<float_array count=\"1200\" id=\"ID4287\">-0.06324083147043105 -0.03651211107331201 0.9973301674871261 -0.06324083147043105 -0.03651211107331201 0.9973301674871261 -0.06324083147043105 -0.03651211107331201 0.9973301674871261 0.06324083147043105 0.03651211107331201 -0.9973301674871261 0.06324083147043105 0.03651211107331201 -0.9973301674871261 0.06324083147043105 0.03651211107331201 -0.9973301674871261 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 -0.8660254037844396 -0.4999999999999988 -5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 0.8660254037844396 0.4999999999999988 5.211705633029197e-014 -0.8604715114693308 -0.5094985553950918 -2.581093704653176e-013 -0.8604715114693308 -0.5094985553950918 -2.581093704653176e-013 -0.8604715114693308 -0.5094985553950918 -2.581093704653176e-013 -0.8604715114693308 -0.5094985553950918 -2.581093704653176e-013 0.8604715114693308 0.5094985553950918 2.581093704653176e-013 0.8604715114693308 0.5094985553950918 2.581093704653176e-013 0.8604715114693308 0.5094985553950918 2.581093704653176e-013 0.8604715114693308 0.5094985553950918 2.581093704653176e-013 -0.9285714285714174 0.3711537444790735 -4.114487613463003e-014 -0.9285714285714174 0.3711537444790735 -4.114487613463003e-014 -0.9285714285714174 0.3711537444790735 -4.114487613463003e-014 0.9285714285714174 -0.3711537444790735 4.114487613463003e-014 0.9285714285714174 -0.3711537444790735 4.114487613463003e-014 0.9285714285714174 -0.3711537444790735 4.114487613463003e-014 -0.09777891889563337 -0.05789641755872664 0.9935226659988522 -0.09777891889563337 -0.05789641755872664 0.9935226659988522 -0.09777891889563337 -0.05789641755872664 0.9935226659988522 0.09777891889563337 0.05789641755872664 -0.9935226659988522 0.09777891889563337 0.05789641755872664 -0.9935226659988522 0.09777891889563337 0.05789641755872664 -0.9935226659988522 -0.8928833118469073 0.3891147429224794 0.226603416270963 -0.8928833118469073 0.3891147429224794 0.226603416270963 -0.8928833118469073 0.3891147429224794 0.226603416270963 0.8928833118469073 -0.3891147429224794 -0.226603416270963 0.8928833118469073 -0.3891147429224794 -0.226603416270963 0.8928833118469073 -0.3891147429224794 -0.226603416270963 -0.1235891511517469 9.193139955884776e-015 0.9923334730409886 -0.1235891511517469 9.193139955884776e-015 0.9923334730409886 -0.1235891511517469 9.193139955884776e-015 0.9923334730409886 0.1235891511517469 -9.193139955884776e-015 -0.9923334730409886 0.1235891511517469 -9.193139955884776e-015 -0.9923334730409886 0.1235891511517469 -9.193139955884776e-015 -0.9923334730409886 -0.001285248464647008 -0.8445777148786074 0.5354314444135813 -0.001285248464647008 -0.8445777148786074 0.5354314444135813 -0.001285248464647008 -0.8445777148786074 0.5354314444135813 0.001285248464647008 0.8445777148786074 -0.5354314444135813 0.001285248464647008 0.8445777148786074 -0.5354314444135813 0.001285248464647008 0.8445777148786074 -0.5354314444135813 -0.5114935839833339 -0.1514935216669975 0.8458274211899347 -0.5114935839833339 -0.1514935216669975 0.8458274211899347 -0.5114935839833339 -0.1514935216669975 0.8458274211899347 0.5114935839833339 0.1514935216669975 -0.8458274211899347 0.5114935839833339 0.1514935216669975 -0.8458274211899347 0.5114935839833339 0.1514935216669975 -0.8458274211899347 -2.191294969913424e-013 -0.4866686069737359 0.8735866682741006 -2.191294969913424e-013 -0.4866686069737359 0.8735866682741006 -2.191294969913424e-013 -0.4866686069737359 0.8735866682741006 2.191294969913424e-013 0.4866686069737359 -0.8735866682741006 2.191294969913424e-013 0.4866686069737359 -0.8735866682741006 2.191294969913424e-013 0.4866686069737359 -0.8735866682741006 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 -1.102657746548032e-016 1 -1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 1.102657746548032e-016 -1 1.762108254449446e-013 0.1235352441775784 2.545584728251559e-014 0.992340185342701 0.1235352441775784 2.545584728251559e-014 0.992340185342701 0.1235352441775784 2.545584728251559e-014 0.992340185342701 0.1235352441775784 2.545584728251559e-014 0.992340185342701 -0.1235352441775784 -2.545584728251559e-014 -0.992340185342701 -0.1235352441775784 -2.545584728251559e-014 -0.992340185342701 -0.1235352441775784 -2.545584728251559e-014 -0.992340185342701 -0.1235352441775784 -2.545584728251559e-014 -0.992340185342701 0.06650769527937173 -0.8427084416347712 0.5342463934048801 0.06650769527937173 -0.8427084416347712 0.5342463934048801 0.06650769527937173 -0.8427084416347712 0.5342463934048801 -0.06650769527937173 0.8427084416347712 -0.5342463934048801 -0.06650769527937173 0.8427084416347712 -0.5342463934048801 -0.06650769527937173 0.8427084416347712 -0.5342463934048801 0.3060102636536691 -0.5199298729004609 0.7975152950284542 0.3060102636536691 -0.5199298729004609 0.7975152950284542 0.3060102636536691 -0.5199298729004609 0.7975152950284542 -0.3060102636536691 0.5199298729004609 -0.7975152950284542 -0.3060102636536691 0.5199298729004609 -0.7975152950284542 -0.3060102636536691 0.5199298729004609 -0.7975152950284542 0.8600971941801456 -0.5101301956985499 -3.425878287652284e-014 0.8600971941801456 -0.5101301956985499 -3.425878287652284e-014 0.8600971941801456 -0.5101301956985499 -3.425878287652284e-014 -0.8600971941801456 0.5101301956985499 3.425878287652284e-014 -0.8600971941801456 0.5101301956985499 3.425878287652284e-014 -0.8600971941801456 0.5101301956985499 3.425878287652284e-014 2.680658063563444e-014 1 1.219727444046193e-019 2.680658063563444e-014 1 1.219727444046193e-019 2.680658063563444e-014 1 1.219727444046193e-019 -2.680658063563444e-014 -1 -1.219727444046193e-019 -2.680658063563444e-014 -1 -1.219727444046193e-019 -2.680658063563444e-014 -1 -1.219727444046193e-019 -0.1234356107414889 1.137680444643352e-014 0.9923525835109595 -0.1234356107414889 1.137680444643352e-014 0.9923525835109595 -0.1234356107414889 1.137680444643352e-014 0.9923525835109595 -0.1234356107414889 1.137680444643352e-014 0.9923525835109595 0.1234356107414889 -1.137680444643352e-014 -0.9923525835109595 0.1234356107414889 -1.137680444643352e-014 -0.9923525835109595 0.1234356107414889 -1.137680444643352e-014 -0.9923525835109595 0.1234356107414889 -1.137680444643352e-014 -0.9923525835109595 0.1234613672663514 2.371400872978185e-014 0.992349379398568 0.1234613672663514 2.371400872978185e-014 0.992349379398568 0.1234613672663514 2.371400872978185e-014 0.992349379398568 0.1234613672663514 2.371400872978185e-014 0.992349379398568 -0.1234613672663514 -2.371400872978185e-014 -0.992349379398568 -0.1234613672663514 -2.371400872978185e-014 -0.992349379398568 -0.1234613672663514 -2.371400872978185e-014 -0.992349379398568 -0.1234613672663514 -2.371400872978185e-014 -0.992349379398568 -0.1243949651104186 1.420677540452803e-014 0.9922327814858659 -0.1243949651104186 1.420677540452803e-014 0.9922327814858659 -0.1243949651104186 1.420677540452803e-014 0.9922327814858659 -0.1243949651104186 1.420677540452803e-014 0.9922327814858659 0.1243949651104186 -1.420677540452803e-014 -0.9922327814858659 0.1243949651104186 -1.420677540452803e-014 -0.9922327814858659 0.1243949651104186 -1.420677540452803e-014 -0.9922327814858659 0.1243949651104186 -1.420677540452803e-014 -0.9922327814858659 0.1224459220242786 1.363420823723843e-014 0.9924751866820775 0.1224459220242786 1.363420823723843e-014 0.9924751866820775 0.1224459220242786 1.363420823723843e-014 0.9924751866820775 0.1224459220242786 1.363420823723843e-014 0.9924751866820775 -0.1224459220242786 -1.363420823723843e-014 -0.9924751866820775 -0.1224459220242786 -1.363420823723843e-014 -0.9924751866820775 -0.1224459220242786 -1.363420823723843e-014 -0.9924751866820775 -0.1224459220242786 -1.363420823723843e-014 -0.9924751866820775 -0.1235973998385482 3.362558170273699e-014 0.992332445681965 -0.1235973998385482 3.362558170273699e-014 0.992332445681965 -0.1235973998385482 3.362558170273699e-014 0.992332445681965 -0.1235973998385482 3.362558170273699e-014 0.992332445681965 0.1235973998385482 -3.362558170273699e-014 -0.992332445681965 0.1235973998385482 -3.362558170273699e-014 -0.992332445681965 0.1235973998385482 -3.362558170273699e-014 -0.992332445681965 0.1235973998385482 -3.362558170273699e-014 -0.992332445681965 -0.3940233501695523 -0.335265772608463 0.8557700983549337 -0.3940233501695523 -0.335265772608463 0.8557700983549337 -0.3940233501695523 -0.335265772608463 0.8557700983549337 0.3940233501695523 0.335265772608463 -0.8557700983549337 0.3940233501695523 0.335265772608463 -0.8557700983549337 0.3940233501695523 0.335265772608463 -0.8557700983549337 -4.971283801280535e-015 0.410246469127406 -0.9119746896534445 -4.971283801280535e-015 0.410246469127406 -0.9119746896534445 -4.971283801280535e-015 0.410246469127406 -0.9119746896534445 4.971283801280535e-015 -0.410246469127406 0.9119746896534445 4.971283801280535e-015 -0.410246469127406 0.9119746896534445 4.971283801280535e-015 -0.410246469127406 0.9119746896534445 0.9285714285714389 -0.3711537444790191 -1.717923763314144e-014 0.9285714285714389 -0.3711537444790191 -1.717923763314144e-014 0.9285714285714389 -0.3711537444790191 -1.717923763314144e-014 0.9285714285714389 -0.3711537444790191 -1.717923763314144e-014 -0.9285714285714389 0.3711537444790191 1.717923763314144e-014 -0.9285714285714389 0.3711537444790191 1.717923763314144e-014 -0.9285714285714389 0.3711537444790191 1.717923763314144e-014 -0.9285714285714389 0.3711537444790191 1.717923763314144e-014 0.1168027472724069 2.880271162634257e-014 0.9931551330127727 0.1168027472724069 2.880271162634257e-014 0.9931551330127727 0.1168027472724069 2.880271162634257e-014 0.9931551330127727 -0.1168027472724069 -2.880271162634257e-014 -0.9931551330127727 -0.1168027472724069 -2.880271162634257e-014 -0.9931551330127727 -0.1168027472724069 -2.880271162634257e-014 -0.9931551330127727 -0.06643815458272512 -0.8427907255793229 0.5341252329680001 -0.06643815458272512 -0.8427907255793229 0.5341252329680001 -0.06643815458272512 -0.8427907255793229 0.5341252329680001 0.06643815458272512 0.8427907255793229 -0.5341252329680001 0.06643815458272512 0.8427907255793229 -0.5341252329680001 0.06643815458272512 0.8427907255793229 -0.5341252329680001 0.06646748481942172 -0.8427107046196537 0.5342478280547587 0.06646748481942172 -0.8427107046196537 0.5342478280547587 0.06646748481942172 -0.8427107046196537 0.5342478280547587 -0.06646748481942172 0.8427107046196537 -0.5342478280547587 -0.06646748481942172 0.8427107046196537 -0.5342478280547587 -0.06646748481942172 0.8427107046196537 -0.5342478280547587 -0.06697569125023399 -0.8426820024075721 0.5342296318999148 -0.06697569125023399 -0.8426820024075721 0.5342296318999148 -0.06697569125023399 -0.8426820024075721 0.5342296318999148 0.06697569125023399 0.8426820024075721 -0.5342296318999148 0.06697569125023399 0.8426820024075721 -0.5342296318999148 0.06697569125023399 0.8426820024075721 -0.5342296318999148 0.06563040137907363 -0.8442211589363028 0.5319617328521549 0.06563040137907363 -0.8442211589363028 0.5319617328521549 0.06563040137907363 -0.8442211589363028 0.5319617328521549 -0.06563040137907363 0.8442211589363028 -0.5319617328521549 -0.06563040137907363 0.8442211589363028 -0.5319617328521549 -0.06563040137907363 0.8442211589363028 -0.5319617328521549 -0.06621267361669034 -0.8444004404652235 0.5316049077977617 -0.06621267361669034 -0.8444004404652235 0.5316049077977617 -0.06621267361669034 -0.8444004404652235 0.5316049077977617 0.06621267361669034 0.8444004404652235 -0.5316049077977617 0.06621267361669034 0.8444004404652235 -0.5316049077977617 0.06621267361669034 0.8444004404652235 -0.5316049077977617 0.343102989544522 -0.4440638174570215 0.8277002262843166 0.343102989544522 -0.4440638174570215 0.8277002262843166 0.343102989544522 -0.4440638174570215 0.8277002262843166 -0.343102989544522 0.4440638174570215 -0.8277002262843166 -0.343102989544522 0.4440638174570215 -0.8277002262843166 -0.343102989544522 0.4440638174570215 -0.8277002262843166 -0.8660894945190319 0.4998889751572522 -8.218659043254806e-015 -0.8660894945190319 0.4998889751572522 -8.218659043254806e-015 -0.8660894945190319 0.4998889751572522 -8.218659043254806e-015 0.8660894945190319 -0.4998889751572522 8.218659043254806e-015 0.8660894945190319 -0.4998889751572522 8.218659043254806e-015 0.8660894945190319 -0.4998889751572522 8.218659043254806e-015 0.09394859041925038 -0.0542412439685518 0.9940983602294997 0.09394859041925038 -0.0542412439685518 0.9940983602294997 0.09394859041925038 -0.0542412439685518 0.9940983602294997 -0.09394859041925038 0.0542412439685518 -0.9940983602294997 -0.09394859041925038 0.0542412439685518 -0.9940983602294997 -0.09394859041925038 0.0542412439685518 -0.9940983602294997 0.01243393137216172 -0.8444984536753394 0.535413633642806 0.01243393137216172 -0.8444984536753394 0.535413633642806 0.01243393137216172 -0.8444984536753394 0.535413633642806 -0.01243393137216172 0.8444984536753394 -0.535413633642806 -0.01243393137216172 0.8444984536753394 -0.535413633642806 -0.01243393137216172 0.8444984536753394 -0.535413633642806 -0.3079466233539793 -0.516447596989788 0.7990311362696423 -0.3079466233539793 -0.516447596989788 0.7990311362696423 -0.3079466233539793 -0.516447596989788 0.7990311362696423 0.3079466233539793 0.516447596989788 -0.7990311362696423 0.3079466233539793 0.516447596989788 -0.7990311362696423 0.3079466233539793 0.516447596989788 -0.7990311362696423 0.3880948652847884 -0.3430520862752612 0.8553932672413155 0.3880948652847884 -0.3430520862752612 0.8553932672413155 0.3880948652847884 -0.3430520862752612 0.8553932672413155 -0.3880948652847884 0.3430520862752612 -0.8553932672413155 -0.3880948652847884 0.3430520862752612 -0.8553932672413155 -0.3880948652847884 0.3430520862752612 -0.8553932672413155 -0.3482386319819908 -0.439505409248896 0.8279884361730375 -0.3482386319819908 -0.439505409248896 0.8279884361730375 -0.3482386319819908 -0.439505409248896 0.8279884361730375 0.3482386319819908 0.439505409248896 -0.8279884361730375 0.3482386319819908 0.439505409248896 -0.8279884361730375 0.3482386319819908 0.439505409248896 -0.8279884361730375 0.6200891519361633 0.05540675429833522 -0.7825723833801022 0.6200891519361633 0.05540675429833522 -0.7825723833801022 0.6200891519361633 0.05540675429833522 -0.7825723833801022 -0.6200891519361633 -0.05540675429833522 0.7825723833801022 -0.6200891519361633 -0.05540675429833522 0.7825723833801022 -0.6200891519361633 -0.05540675429833522 0.7825723833801022 -3.779588511110255e-014 -1 1.546282362135249e-014 -3.779588511110255e-014 -1 1.546282362135249e-014 -3.779588511110255e-014 -1 1.546282362135249e-014 3.779588511110255e-014 1 -1.546282362135249e-014 3.779588511110255e-014 1 -1.546282362135249e-014 3.779588511110255e-014 1 -1.546282362135249e-014 0.4842412345449882 -0.1776735990049878 0.856704452528969 0.4842412345449882 -0.1776735990049878 0.856704452528969 0.4842412345449882 -0.1776735990049878 0.856704452528969 -0.4842412345449882 0.1776735990049878 -0.856704452528969 -0.4842412345449882 0.1776735990049878 -0.856704452528969 -0.4842412345449882 0.1776735990049878 -0.856704452528969 -0.3389407545893631 0.5160155053647877 -0.786668394624772 -0.3389407545893631 0.5160155053647877 -0.786668394624772 -0.3389407545893631 0.5160155053647877 -0.786668394624772 0.3389407545893631 -0.5160155053647877 0.786668394624772 0.3389407545893631 -0.5160155053647877 0.786668394624772 0.3389407545893631 -0.5160155053647877 0.786668394624772 0.8959059414426855 0.3894977775422805 0.213644624030936 0.8959059414426855 0.3894977775422805 0.213644624030936 0.8959059414426855 0.3894977775422805 0.213644624030936 -0.8959059414426855 -0.3894977775422805 -0.213644624030936 -0.8959059414426855 -0.3894977775422805 -0.213644624030936 -0.8959059414426855 -0.3894977775422805 -0.213644624030936 0.3744371258289185 0.3281817239763438 -0.8672332989737499 0.3744371258289185 0.3281817239763438 -0.8672332989737499 0.3744371258289185 0.3281817239763438 -0.8672332989737499 -0.3744371258289185 -0.3281817239763438 0.8672332989737499 -0.3744371258289185 -0.3281817239763438 0.8672332989737499 -0.3744371258289185 -0.3281817239763438 0.8672332989737499 -2.822776996431275e-015 -1 2.425428022485854e-014 -2.822776996431275e-015 -1 2.425428022485854e-014 -2.822776996431275e-015 -1 2.425428022485854e-014 2.822776996431275e-015 1 -2.425428022485854e-014 2.822776996431275e-015 1 -2.425428022485854e-014 2.822776996431275e-015 1 -2.425428022485854e-014 0.9285714285713755 0.3711537444791778 3.26651141031864e-014 0.9285714285713755 0.3711537444791778 3.26651141031864e-014 0.9285714285713755 0.3711537444791778 3.26651141031864e-014 -0.9285714285713755 -0.3711537444791778 -3.26651141031864e-014 -0.9285714285713755 -0.3711537444791778 -3.26651141031864e-014 -0.9285714285713755 -0.3711537444791778 -3.26651141031864e-014 -4.989243610267757e-014 -0.4866686069738744 0.8735866682740234 -4.989243610267757e-014 -0.4866686069738744 0.8735866682740234 -4.989243610267757e-014 -0.4866686069738744 0.8735866682740234 4.989243610267757e-014 0.4866686069738744 -0.8735866682740234 4.989243610267757e-014 0.4866686069738744 -0.8735866682740234 4.989243610267757e-014 0.4866686069738744 -0.8735866682740234 -0.3537377210334923 0.4317628622129531 -0.8297291458853965 -0.3537377210334923 0.4317628622129531 -0.8297291458853965 -0.3537377210334923 0.4317628622129531 -0.8297291458853965 0.3537377210334923 -0.4317628622129531 0.8297291458853965 0.3537377210334923 -0.4317628622129531 0.8297291458853965 0.3537377210334923 -0.4317628622129531 0.8297291458853965 -0.864115490967699 -0.5032935706619471 3.167052124025682e-014 -0.864115490967699 -0.5032935706619471 3.167052124025682e-014 -0.864115490967699 -0.5032935706619471 3.167052124025682e-014 0.864115490967699 0.5032935706619471 -3.167052124025682e-014 0.864115490967699 0.5032935706619471 -3.167052124025682e-014 0.864115490967699 0.5032935706619471 -3.167052124025682e-014 0.3599981369055668 0.426657761487656 -0.8296773445062021 0.3599981369055668 0.426657761487656 -0.8296773445062021 0.3599981369055668 0.426657761487656 -0.8296773445062021 -0.3599981369055668 -0.426657761487656 0.8296773445062021 -0.3599981369055668 -0.426657761487656 0.8296773445062021 -0.3599981369055668 -0.426657761487656 0.8296773445062021 3.747531392326611e-015 -1 -1.515317412563791e-013 3.747531392326611e-015 -1 -1.515317412563791e-013 3.747531392326611e-015 -1 -1.515317412563791e-013 -3.747531392326611e-015 1 1.515317412563791e-013 -3.747531392326611e-015 1 1.515317412563791e-013 -3.747531392326611e-015 1 1.515317412563791e-013 2.772291402518278e-015 0.4102464691274023 -0.9119746896534461 2.772291402518278e-015 0.4102464691274023 -0.9119746896534461 2.772291402518278e-015 0.4102464691274023 -0.9119746896534461 -2.772291402518278e-015 -0.4102464691274023 0.9119746896534461 -2.772291402518278e-015 -0.4102464691274023 0.9119746896534461 -2.772291402518278e-015 -0.4102464691274023 0.9119746896534461 -0.928571428571403 -0.3711537444791091 1.712456673859386e-014 -0.928571428571403 -0.3711537444791091 1.712456673859386e-014 -0.928571428571403 -0.3711537444791091 1.712456673859386e-014 -0.928571428571403 -0.3711537444791091 1.712456673859386e-014 0.928571428571403 0.3711537444791091 -1.712456673859386e-014 0.928571428571403 0.3711537444791091 -1.712456673859386e-014 0.928571428571403 0.3711537444791091 -1.712456673859386e-014 0.928571428571403 0.3711537444791091 -1.712456673859386e-014 -0.3729167891838332 0.3340553236991022 -0.8656443317281691 -0.3729167891838332 0.3340553236991022 -0.8656443317281691 -0.3729167891838332 0.3340553236991022 -0.8656443317281691 0.3729167891838332 -0.3340553236991022 0.8656443317281691 0.3729167891838332 -0.3340553236991022 0.8656443317281691 0.3729167891838332 -0.3340553236991022 0.8656443317281691 0.8696732278757162 0.4936278727100332 -2.972061344860139e-013 0.8696732278757162 0.4936278727100332 -2.972061344860139e-013 0.8696732278757162 0.4936278727100332 -2.972061344860139e-013 -0.8696732278757162 -0.4936278727100332 2.972061344860139e-013 -0.8696732278757162 -0.4936278727100332 2.972061344860139e-013 -0.8696732278757162 -0.4936278727100332 2.972061344860139e-013 0.3398874417791015 0.5118560452538455 -0.7889739639924444 0.3398874417791015 0.5118560452538455 -0.7889739639924444 0.3398874417791015 0.5118560452538455 -0.7889739639924444 -0.3398874417791015 -0.5118560452538455 0.7889739639924444 -0.3398874417791015 -0.5118560452538455 0.7889739639924444 -0.3398874417791015 -0.5118560452538455 0.7889739639924444 3.840323090692156e-016 -1 3.708859662530234e-013 3.840323090692156e-016 -1 3.708859662530234e-013 3.840323090692156e-016 -1 3.708859662530234e-013 -3.840323090692156e-016 1 -3.708859662530234e-013 -3.840323090692156e-016 1 -3.708859662530234e-013 -3.840323090692156e-016 1 -3.708859662530234e-013 -0.5924183571060055 0.08675553849687284 -0.8009456702573146 -0.5924183571060055 0.08675553849687284 -0.8009456702573146 -0.5924183571060055 0.08675553849687284 -0.8009456702573146 0.5924183571060055 -0.08675553849687284 0.8009456702573146 0.5924183571060055 -0.08675553849687284 0.8009456702573146 0.5924183571060055 -0.08675553849687284 0.8009456702573146 3.255285803271611e-014 -1 5.972591128264314e-013 3.255285803271611e-014 -1 5.972591128264314e-013 3.255285803271611e-014 -1 5.972591128264314e-013 -3.255285803271611e-014 1 -5.972591128264314e-013 -3.255285803271611e-014 1 -5.972591128264314e-013 -3.255285803271611e-014 1 -5.972591128264314e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"400\" source=\"#ID4287\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4285\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4283\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4284\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4285\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8 8 7 9 9 7 10 11 10 12 10 7 12 13 12 7 22 23 24 25 24 23 30 31 32 36 37 38 42 43 44 48 49 50 54 55 56 60 61 62 66 67 68 72 73 74 75 74 73 72 76 73 77 73 76 74 75 78 79 80 76 77 76 80 79 81 80 82 80 81 83 84 81 82 81 84 83 85 84 86 84 85 102 103 104 105 104 103 110 111 112 116 117 118 122 123 124 128 129 130 134 135 136 137 136 135 142 143 144 145 144 143 150 151 152 153 152 151 158 159 160 161 160 159 166 167 168 169 168 167 174 175 176 180 181 182 186 187 188 189 188 187 194 195 196 200 201 202 206 207 208 212 213 214 218 219 220 224 225 226 230 231 232 236 237 238 242 243 244 248 249 250 254 255 256 260 261 262 266 267 268 272 273 274 278 279 280 284 285 286 290 291 292 296 297 298 302 303 304 308 309 310 314 315 316 320 321 322 326 327 328 332 333 334 338 339 340 344 345 346 350 351 352 356 357 358 359 358 357 364 365 366 370 371 372 376 377 378 382 383 384 388 389 390 394 395 396</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4285\" />\r\n\t\t\t\t\t<p>3 4 5 14 15 16 15 14 17 15 17 18 17 14 19 19 14 20 20 14 21 26 27 28 27 26 29 33 34 35 39 40 41 45 46 47 51 52 53 57 58 59 63 64 65 69 70 71 87 88 89 88 87 90 88 91 92 91 88 90 91 93 92 93 91 94 93 95 96 95 93 94 97 98 99 95 100 96 100 95 101 100 99 98 99 100 101 106 107 108 107 106 109 113 114 115 119 120 121 125 126 127 131 132 133 138 139 140 139 138 141 146 147 148 147 146 149 154 155 156 155 154 157 162 163 164 163 162 165 170 171 172 171 170 173 177 178 179 183 184 185 190 191 192 191 190 193 197 198 199 203 204 205 209 210 211 215 216 217 221 222 223 227 228 229 233 234 235 239 240 241 245 246 247 251 252 253 257 258 259 263 264 265 269 270 271 275 276 277 281 282 283 287 288 289 293 294 295 299 300 301 305 306 307 311 312 313 317 318 319 323 324 325 329 330 331 335 336 337 341 342 343 347 348 349 353 354 355 360 361 362 361 360 363 367 368 369 373 374 375 379 380 381 385 386 387 391 392 393 397 398 399</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4288\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4289\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4293\">370.9685973062074 603.1663798067432 -21.65354330708664 370.9685973062083 19.68503937008472 -21.65354330708686 244.3901410013141 383.9260623430239 -5.905511811022905 244.3901410013136 19.68503937008813 -5.905511811023871 370.9685973062083 19.68503937008472 -21.65354330708686 244.3901410013141 383.9260623430239 -5.905511811022905 244.3901410013136 19.68503937008813 -5.905511811023871 370.9685973062074 603.1663798067432 -21.65354330708664</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4293\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4290\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4294\">0.1234613672663537 1.304295213500062e-016 0.9923493793985678 0.1234613672663537 1.304295213500062e-016 0.9923493793985678 0.1234613672663537 1.304295213500062e-016 0.9923493793985678 0.1234613672663537 1.304295213500062e-016 0.9923493793985678 -0.1234613672663537 -1.304295213500062e-016 -0.9923493793985678 -0.1234613672663537 -1.304295213500062e-016 -0.9923493793985678 -0.1234613672663537 -1.304295213500062e-016 -0.9923493793985678 -0.1234613672663537 -1.304295213500062e-016 -0.9923493793985678</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4294\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4292\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4295\">-10.99999999999908 -5.314704138416631 -10.9999999999996 -6.999999999999732 -9.999999999999496 -5.947945981998668 -9.99999999999981 -6.999999999999818</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4295\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4291\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4289\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4290\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4291\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4292\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 2 2 1 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4291\" />\r\n\t\t\t\t\t<p>4 5 6 5 4 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4296\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4297\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4300\">117.7848635902392 164.6392893607117 -21.65354330708715 244.3901410013141 383.9260623430239 -5.905511811022905 370.9685973062074 603.1663798067432 -21.65354330708664 370.9685973062074 603.1663798067432 -21.65354330708664 244.3901410013141 383.9260623430239 -5.905511811022905 117.7848635902392 164.6392893607117 -21.65354330708715</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4300\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4298\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4301\">0.8660254037844352 -0.5000000000000061 5.391078750950629e-014 0.8660254037844352 -0.5000000000000061 5.391078750950629e-014 0.8660254037844352 -0.5000000000000061 5.391078750950629e-014 -0.8660254037844352 0.5000000000000061 -5.391078750950629e-014 -0.8660254037844352 0.5000000000000061 -5.391078750950629e-014 -0.8660254037844352 0.5000000000000061 -5.391078750950629e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4301\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4299\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4297\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4298\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4299\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4299\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4302\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4303\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID4306\">495.1445966120323 818.2455196850583 -5.905511811022507 370.9685973062074 603.1663798067432 -21.65354330708664 495.1445966120327 818.2455196850524 -1.13686837721616e-013 244.3901410013141 383.9260623430239 -5.905511811022905 117.7848635902392 164.6392893607117 -21.65354330708715 34.09548833798135 19.68503937008677 -5.905511811022848 34.09548833798317 19.68503937008359 -5.115907697472721e-013 16.37895290490678 -11.00090013408362 -5.905511811022905 16.37895290490769 -11.00090013408749 9.663381206337363e-013 16.37895290490678 -11.00090013408362 -5.905511811022905 34.09548833798317 19.68503937008359 -5.115907697472721e-013 16.37895290490769 -11.00090013408749 9.663381206337363e-013 34.09548833798135 19.68503937008677 -5.905511811022848 495.1445966120327 818.2455196850524 -1.13686837721616e-013 244.3901410013141 383.9260623430239 -5.905511811022905 117.7848635902392 164.6392893607117 -21.65354330708715 370.9685973062074 603.1663798067432 -21.65354330708664 495.1445966120323 818.2455196850583 -5.905511811022507 973.5663585783625 -9.654933084283584 1.080024958355352e-012 956.1937048860712 19.68503937008472 9.094947017729282e-013 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013 495.1445966120327 857.615598425216 1.13686837721616e-013 495.1445966120327 818.2455196850524 -1.13686837721616e-013 457.3854330708782 792.2148087206369 -2.273736754432321e-013 34.09548833798317 19.68503937008359 -5.115907697472721e-013 16.37895290490769 -11.00090013408749 9.663381206337363e-013 0 0 0 969.8319002212493 -51.18110236220468 3.979039320256561e-013 956.9681812630358 -51.18110236220014 7.958078640513122e-013 32.43914176278986 -51.18110236219127 1.70530256582424e-013 20.45729300279072 -51.18110236219764 5.115907697472721e-013 20.45729300279072 -51.18110236219764 5.115907697472721e-013 16.37895290490769 -11.00090013408749 9.663381206337363e-013 0 0 0 32.43914176278986 -51.18110236219127 1.70530256582424e-013 969.8319002212493 -51.18110236220468 3.979039320256561e-013 973.5663585783625 -9.654933084283584 1.080024958355352e-012 956.9681812630358 -51.18110236220014 7.958078640513122e-013 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013 457.3854330708782 792.2148087206369 -2.273736754432321e-013 34.09548833798317 19.68503937008359 -5.115907697472721e-013 495.1445966120327 818.2455196850524 -1.13686837721616e-013 495.1445966120327 857.615598425216 1.13686837721616e-013 956.1937048860712 19.68503937008472 9.094947017729282e-013 495.1445966120327 857.615598425216 1.13686837721616e-013 457.3854330708782 792.2148087206369 -2.273736754432321e-013 495.1445966120321 857.6155984252149 -86.61417322834689 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689 0 0 0 457.3854330708782 792.2148087206369 -2.273736754432321e-013 2.728484105318785e-012 7.048583938740194e-012 -86.61417322834689 0 0 0 495.1445966120321 857.6155984252149 -86.61417322834689 495.1445966120327 857.615598425216 1.13686837721616e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID4306\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4304\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID4307\">0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 0.8660254037844336 -0.5000000000000086 -2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -0.8660254037844336 0.5000000000000086 2.010373204713866e-013 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 -1.322726650432315e-017 4.914146346790548e-017 1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 1.322726650432315e-017 -4.914146346790548e-017 -1 -0.8660254037844314 0.5000000000000127 -1.445146628233085e-015 -0.8660254037844314 0.5000000000000127 -1.445146628233085e-015 -0.8660254037844314 0.5000000000000127 -1.445146628233085e-015 -0.8660254037844314 0.5000000000000127 -1.445146628233085e-015 -0.8660254037844314 0.5000000000000127 -1.445146628233085e-015 0.8660254037844314 -0.5000000000000127 1.445146628233085e-015 0.8660254037844314 -0.5000000000000127 1.445146628233085e-015 0.8660254037844314 -0.5000000000000127 1.445146628233085e-015 0.8660254037844314 -0.5000000000000127 1.445146628233085e-015 0.8660254037844314 -0.5000000000000127 1.445146628233085e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID4307\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4305\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4303\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4304\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"21\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4305\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 2 4 5 3 3 5 2 2 5 6 5 7 6 8 6 7 18 19 20 20 19 21 19 22 21 21 22 23 22 24 23 24 25 23 26 23 25 20 27 18 28 18 27 29 30 25 26 25 30 44 45 46 46 45 47 48 47 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"21\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4305\" />\r\n\t\t\t\t\t<p>9 10 11 10 9 12 10 12 13 13 12 14 14 12 15 13 14 16 13 16 17 31 32 33 32 31 34 35 36 37 36 35 38 32 39 33 39 32 40 39 40 41 39 41 42 42 41 43 42 43 38 38 43 36 49 50 51 50 49 52 52 49 53</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4308\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4309\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4313\">244.3901410013136 19.68503937008813 -5.905511811023871 117.7848635902424 19.68503937008109 -21.65354330708578 244.3901410013141 383.9260623430239 -5.905511811022905 117.7848635902392 164.6392893607117 -21.65354330708715 117.7848635902424 19.68503937008109 -21.65354330708578 244.3901410013141 383.9260623430239 -5.905511811022905 117.7848635902392 164.6392893607117 -21.65354330708715 244.3901410013136 19.68503937008813 -5.905511811023871</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4313\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4310\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4314\">-0.1234356107414911 4.73118723018362e-017 0.9923525835109592 -0.1234356107414911 4.73118723018362e-017 0.9923525835109592 -0.1234356107414911 4.73118723018362e-017 0.9923525835109592 -0.1234356107414911 4.73118723018362e-017 0.9923525835109592 0.1234356107414911 -4.73118723018362e-017 -0.9923525835109592 0.1234356107414911 -4.73118723018362e-017 -0.9923525835109592 0.1234356107414911 -4.73118723018362e-017 -0.9923525835109592 0.1234356107414911 -4.73118723018362e-017 -0.9923525835109592</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4314\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4312\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4315\">-21.17763620575128 1.111592401663354 -21.8624970622456 1.111644572055512 -21.17829470323503 0.6693303405180702 -21.86275911951774 0.9356408785413177</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4315\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4311\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4309\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4310\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4311\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4312\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 2 2 1 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4311\" />\r\n\t\t\t\t\t<p>4 5 6 5 4 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4316\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4317\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4321\">34.09548833798135 19.68503937008677 -5.905511811022848 117.7848635902392 164.6392893607117 -21.65354330708715 117.7848635902424 19.68503937008109 -21.65354330708578 117.7848635902424 19.68503937008109 -21.65354330708578 117.7848635902392 164.6392893607117 -21.65354330708715 34.09548833798135 19.68503937008677 -5.905511811022848</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4321\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4318\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID4322\">0.1849268666760758 7.725753630588583e-016 0.9827522851570324 0.1849268666760758 7.725753630588583e-016 0.9827522851570324 0.1849268666760758 7.725753630588583e-016 0.9827522851570324 -0.1849268666760758 -7.725753630588583e-016 -0.9827522851570324 -0.1849268666760758 -7.725753630588583e-016 -0.9827522851570324 -0.1849268666760758 -7.725753630588583e-016 -0.9827522851570324</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID4322\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4320\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4323\">-8.325385293218675 -6.998769181639214 -8.993202317528324 -6.580133262740672 -8.993007946863088 -6.998811251435206</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID4323\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4319\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4317\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4318\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4319\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4320\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4319\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4324\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4325\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4328\">495.1445966120321 857.6155984252149 -86.61417322834689 990.2891932240257 3.865352482534945e-012 -86.61417322834677 495.1445966120327 857.615598425216 1.13686837721616e-013 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013 990.2891932240257 3.865352482534945e-012 -86.61417322834677 495.1445966120327 857.615598425216 1.13686837721616e-013 990.2891932240264 2.728484105318785e-012 -1.13686837721616e-013 495.1445966120321 857.6155984252149 -86.61417322834689</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4328\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4326\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4329\">0.8660254037844402 0.4999999999999976 1.897353801849633e-019 0.8660254037844402 0.4999999999999976 1.897353801849633e-019 0.8660254037844402 0.4999999999999976 1.897353801849633e-019 0.8660254037844402 0.4999999999999976 1.897353801849633e-019 -0.8660254037844402 -0.4999999999999976 -1.897353801849633e-019 -0.8660254037844402 -0.4999999999999976 -1.897353801849633e-019 -0.8660254037844402 -0.4999999999999976 -1.897353801849633e-019 -0.8660254037844402 -0.4999999999999976 -1.897353801849633e-019</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4329\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4327\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4325\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4326\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4327\" />\r\n\t\t\t\t\t<p>0 1 2 3 2 1 4 5 6 5 4 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4333\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4334\">\r\n\t\t\t\t\t<float_array count=\"1764\" id=\"ID4337\">260.7486743384776 -538.7723243081156 20.80341327000417 317.822391788035 -652.5648955347623 79.22162104094639 249.5934442431505 -538.7723286255326 20.80341443298994 309.2955564211388 -619.7390604942294 62.36964283239854 313.9405104513352 -627.485940411871 66.34668575502224 318.5457844417664 -635.1666417406201 70.28975434328004 398.7235120636908 -538.7722712742412 20.80355359017642 323.7635644324618 -627.8275049759719 66.52202429885244 387.0775873272617 -538.7722764119475 20.80343705190921 387.0775873272617 -538.7722764119475 20.80343705190921 323.7635644324618 -627.8275049759719 66.52202429885244 398.7235120636908 -538.7722712742412 20.80355359017642 318.5457844417664 -635.1666417406201 70.28975434328004 317.822391788035 -652.5648955347623 79.22162104094639 313.9405104513352 -627.485940411871 66.34668575502224 309.2955564211388 -619.7390604942294 62.36964283239854 260.7486743384776 -538.7723243081156 20.80341327000417 249.5934442431505 -538.7723286255326 20.80341443298994 309.2955564211388 -619.7390604942294 62.36964283239854 260.7486744141456 -511.764995415247 73.4288808743114 313.9405104513352 -627.485940411871 66.34668575502224 260.7486743384776 -538.7723243081156 20.80341327000417 260.7486743384776 -538.7723243081156 20.80341327000417 309.2955564211388 -619.7390604942294 62.36964283239854 260.7486744141456 -511.764995415247 73.4288808743114 313.9405104513352 -627.485940411871 66.34668575502224 320.341053300599 -538.772299968556 20.80335977293419 318.5457844417664 -635.1666417406201 70.28975434328004 313.9405104513352 -627.485940411871 66.34668575502224 323.7635644324618 -627.8275049759719 66.52202429885244 330.1887512579403 -538.7722954921698 20.80333409374748 330.1887512579403 -538.7722954921698 20.80333409374748 320.341053300599 -538.772299968556 20.80335977293419 323.7635644324618 -627.8275049759719 66.52202429885244 318.5457844417664 -635.1666417406201 70.28975434328004 313.9405104513352 -627.485940411871 66.34668575502224 320.341053300599 -538.772299968556 20.80335977293419 318.5457844417664 -635.1666417406201 70.28975434328004 313.9405104513352 -627.485940411871 66.34668575502224 323.7635644324618 -627.8275049759719 66.52202429885244 330.1887512579403 -538.7722954921698 20.80333409374748 330.1887512579403 -538.7722954921698 20.80333409374748 320.341053300599 -538.772299968556 20.80335977293419 323.7635644324618 -627.8275049759719 66.52202429885244 318.5457844417664 -635.1666417406201 70.28975434328004 313.9405104513352 -627.485940411871 66.34668575502224 387.0775938148433 -511.7258238022035 73.50514830904672 387.0775873272617 -538.7722764119475 20.80343705190921 323.7635644324618 -627.8275049759719 66.52202429885244 568.8245648679856 -211.2484914190478 29.63964229624162 568.8242272188625 -184.203906100341 82.33723834521038 696.2539404712943 -31.99856885020529 -62.35121044732944 569.988182412478 -182.1063659826041 82.39379785654819 696.253935632546 -4.493926377879234 -8.75670327676653 696.253935632546 -4.493926377879234 -8.75670327676653 569.988182412478 -182.1063659826041 82.39379785654819 696.2539404712943 -31.99856885020529 -62.35121044732944 568.8242272188625 -184.203906100341 82.33723834521038 568.8245648679856 -211.2484914190478 29.63964229624162 387.0775938148433 -511.7258238022035 73.50514830904672 387.0775873272617 -538.7722764119475 20.80343705190921 323.7635644324618 -627.8275049759719 66.52202429885244 568.8245648679856 -211.2484914190478 29.63964229624162 398.7235120636908 -538.7722712742412 20.80355359017642 387.0775873272617 -538.7722764119475 20.80343705190921 580.4704200643459 -211.2486101849385 29.63970305581222 580.4704200643459 -211.2486101849385 29.63970305581222 568.8245648679856 -211.2484914190478 29.63964229624162 398.7235120636908 -538.7722712742412 20.80355359017642 387.0775873272617 -538.7722764119475 20.80343705190921 398.7235120636908 -538.7722712742412 20.80355359017642 580.4707710069451 -179.2488079375381 91.99027880389122 317.822391788035 -652.5648955347623 79.22162104094639 580.4704200643459 -211.2486101849385 29.63970305581222 641.2062907608975 -125.8087797920334 -14.19528021335918 580.4708005791031 -176.5524009719073 97.24427340003956 641.2062855748541 -91.11898198297649 53.39994031271249 641.2062855748541 -91.11898198297649 53.39994031271249 641.2062907608975 -125.8087797920334 -14.19528021335918 580.4708005791031 -176.5524009719073 97.24427340003956 580.4707710069451 -179.2488079375381 91.99027880389122 580.4704200643459 -211.2486101849385 29.63970305581222 398.7235120636908 -538.7722712742412 20.80355359017642 317.822391788035 -652.5648955347623 79.22162104094639 96.31467220002116 -179.2487574739117 91.9902543126384 249.5934442431505 -538.7723286255326 20.80341443298994 317.822391788035 -652.5648955347623 79.22162104094639 96.31467201874284 -211.2473256554342 29.63904523858446 52.70170126670109 -138.5050884100278 -7.692186519987217 96.31467221529692 -176.5524004000317 97.24427451437236 52.70170125553341 -105.1075528387402 57.38499738967823 52.67083703040441 -103.7586824034847 59.8866228928955 52.67083703040441 -103.7586824034847 59.8866228928955 96.31467221529692 -176.5524004000317 97.24427451437236 52.70170125553341 -105.1075528387402 57.38499738967823 52.70170126670109 -138.5050884100278 -7.692186519987217 96.31467220002116 -179.2487574739117 91.9902543126384 96.31467201874284 -211.2473256554342 29.63904523858446 249.5934442431505 -538.7723286255326 20.80341443298994 317.822391788035 -652.5648955347623 79.22162104094639 107.4699041249164 -211.2473256686137 29.63904521290283 249.5934442431505 -538.7723286255326 20.80341443298994 96.31467201874284 -211.2473256554342 29.63904523858446 260.7486743384776 -538.7723243081156 20.80341327000417 260.7486743384776 -538.7723243081156 20.80341327000417 107.4699041249164 -211.2473256686137 29.63904521290283 249.5934442431505 -538.7723286255326 20.80341443298994 96.31467201874284 -211.2473256554342 29.63904523858446 107.4699041249164 -211.2473256686137 29.63904521290283 260.7486744141456 -511.764995415247 73.4288808743114 260.7486743384776 -538.7723243081156 20.80341327000417 106.4092480023691 -181.9753461559756 82.32213203209028 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 106.4092480023691 -181.9753461559756 82.32213203209028 107.4699041249164 -211.2473256686137 29.63904521290283 260.7486744141456 -511.764995415247 73.4288808743114 260.7486743384776 -538.7723243081156 20.80341327000417 323.1998239408781 -423.6431948015674 75.87827901177423 313.9405104513352 -627.485940411871 66.34668575502224 260.7486744141456 -511.764995415247 73.4288808743114 260.7486744141456 -511.764995415247 73.4288808743114 313.9405104513352 -627.485940411871 66.34668575502224 323.1998239408781 -423.6431948015674 75.87827901177423 323.1997195353589 -450.6878532429365 23.17949381139329 330.1887512579403 -538.7722954921698 20.80333409374748 320.341053300599 -538.772299968556 20.80335977293419 327.8042582387495 -460.5267989843736 22.91406182609171 333.0339632201601 -451.1024177169458 23.16831221913458 333.0339632201601 -451.1024177169458 23.16831221913458 327.8042582387495 -460.5267989843736 22.91406182609171 330.1887512579403 -538.7722954921698 20.80333409374748 323.1997195353589 -450.6878532429365 23.17949381139329 320.341053300599 -538.772299968556 20.80335977293419 323.1997195353589 -450.6878532429365 23.17949381139329 330.1887512579403 -538.7722954921698 20.80333409374748 320.341053300599 -538.772299968556 20.80335977293419 327.8042582387495 -460.5267989843736 22.91406182609171 333.0339632201601 -451.1024177169458 23.16831221913458 333.0339632201601 -451.1024177169458 23.16831221913458 327.8042582387495 -460.5267989843736 22.91406182609171 330.1887512579403 -538.7722954921698 20.80333409374748 323.1997195353589 -450.6878532429365 23.17949381139329 320.341053300599 -538.772299968556 20.80335977293419 333.0340638771467 -424.0562226934228 75.87008734787105 323.7635644324618 -627.8275049759719 66.52202429885244 330.1887512579403 -538.7722954921698 20.80333409374748 330.1887512579403 -538.7722954921698 20.80333409374748 323.7635644324618 -627.8275049759719 66.52202429885244 333.0340638771467 -424.0562226934228 75.87008734787105 323.1998239408781 -423.6431948015674 75.87827901177423 320.341053300599 -538.772299968556 20.80335977293419 313.9405104513352 -627.485940411871 66.34668575502224 313.9405104513352 -627.485940411871 66.34668575502224 320.341053300599 -538.772299968556 20.80335977293419 323.1998239408781 -423.6431948015674 75.87827901177423 387.0775938148433 -511.7258238022035 73.50514830904672 323.7635644324618 -627.8275049759719 66.52202429885244 333.0340638771467 -424.0562226934228 75.87008734787105 333.0340638771467 -424.0562226934228 75.87008734787105 323.7635644324618 -627.8275049759719 66.52202429885244 387.0775938148433 -511.7258238022035 73.50514830904672 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 568.8242272188625 -184.203906100341 82.33723834521038 467.2910992993818 -182.1147143275845 82.39365457532801 569.988182412478 -182.1063659826041 82.39379785654819 569.988182412478 -182.1063659826041 82.39379785654819 467.2910992993818 -182.1147143275845 82.39365457532801 568.8242272188625 -184.203906100341 82.33723834521038 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 568.8242272188625 -184.203906100341 82.33723834521038 467.2910992993818 -182.1147143275845 82.39365457532801 569.988182412478 -182.1063659826041 82.39379785654819 569.988182412478 -182.1063659826041 82.39379785654819 467.2910992993818 -182.1147143275845 82.39365457532801 568.8242272188625 -184.203906100341 82.33723834521038 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 568.8242272188625 -184.203906100341 82.33723834521038 467.2910992993818 -182.1147143275845 82.39365457532801 569.988182412478 -182.1063659826041 82.39379785654819 569.988182412478 -182.1063659826041 82.39379785654819 467.2910992993818 -182.1147143275845 82.39365457532801 568.8242272188625 -184.203906100341 82.33723834521038 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 568.8245649570656 -179.2517207561726 91.98734866309451 569.988182412478 -182.1063659826041 82.39379785654819 568.8242272188625 -184.203906100341 82.33723834521038 581.3486829392864 -161.6338387549803 82.94587201564139 581.3486829392864 -161.6338387549803 82.94587201564139 568.8245649570656 -179.2517207561726 91.98734866309451 569.988182412478 -182.1063659826041 82.39379785654819 568.8242272188625 -184.203906100341 82.33723834521038 568.8245649570656 -179.2517207561726 91.98734866309451 569.988182412478 -182.1063659826041 82.39379785654819 568.8242272188625 -184.203906100341 82.33723834521038 581.3486829392864 -161.6338387549803 82.94587201564139 581.3486829392864 -161.6338387549803 82.94587201564139 568.8245649570656 -179.2517207561726 91.98734866309451 569.988182412478 -182.1063659826041 82.39379785654819 568.8242272188625 -184.203906100341 82.33723834521038 581.3486829392864 -161.6338387549803 82.94587201564139 696.253935632546 -4.493926377879234 -8.75670327676653 569.988182412478 -182.1063659826041 82.39379785654819 696.253940560367 -0.001798187334770773 -0.003504080482457539 696.253940560367 -0.001798187334770773 -0.003504080482457539 581.3486829392864 -161.6338387549803 82.94587201564139 696.253935632546 -4.493926377879234 -8.75670327676653 569.988182412478 -182.1063659826041 82.39379785654819 593.5615993942688 -4.495726586821547 -8.760204296521579 569.988182412478 -182.1063659826041 82.39379785654819 467.2910992993818 -182.1147143275845 82.39365457532801 696.253935632546 -4.493926377879234 -8.75670327676653 696.253935632546 -4.493926377879234 -8.75670327676653 593.5615993942688 -4.495726586821547 -8.760204296521579 569.988182412478 -182.1063659826041 82.39379785654819 467.2910992993818 -182.1147143275845 82.39365457532801 696.2539404712943 -31.99856885020529 -62.35121044732944 580.4704200643459 -211.2486101849385 29.63970305581222 568.8245648679856 -211.2484914190478 29.63964229624162 568.8245648679856 -211.2484914190478 29.63964229624162 580.4704200643459 -211.2486101849385 29.63970305581222 696.2539404712943 -31.99856885020529 -62.35121044732944 580.4708005791031 -176.5524009719073 97.24427340003956 472.3577143815135 -167.7957005718999 92.7503450678355 454.4865663768496 -176.5524008230862 97.24427369000046 575.0500409650774 -167.7957006292781 92.75034495603541 696.253923713751 2.696352051015765 5.254020905657967 641.2062855748541 -91.11898198297649 53.39994031271249 707.8998802401202 2.696356327536364 5.254018677091949 581.9156219266811 2.696310064816657 5.254042785400429 593.071220582139 2.696301618324583 5.254046672008371 593.5615786850221 2.696314277412967 5.254040432273541 593.5615786850221 2.696314277412967 5.254040432273541 472.3577143815135 -167.7957005718999 92.7503450678355 593.071220582139 2.696301618324583 5.254046672008371 581.9156219266811 2.696310064816657 5.254042785400429 454.4865663768496 -176.5524008230862 97.24427369000046 707.8998802401202 2.696356327536364 5.254018677091949 641.2062855748541 -91.11898198297649 53.39994031271249 696.253923713751 2.696352051015765 5.254020905657967 580.4708005791031 -176.5524009719073 97.24427340003956 575.0500409650774 -167.7957006292781 92.75034495603541 580.4707710069451 -179.2488079375381 91.99027880389122 454.4865663768496 -176.5524008230862 97.24427369000046 454.4865663615751 -179.2487578969744 91.99025348826365 580.4708005791031 -176.5524009719073 97.24427340003956 580.4708005791031 -176.5524009719073 97.24427340003956 580.4707710069451 -179.2488079375381 91.99027880389122 454.4865663768496 -176.5524008230862 97.24427369000046 454.4865663615751 -179.2487578969744 91.99025348826365 317.822391788035 -652.5648955347623 79.22162104094639 222.2988942015497 -179.2487083323823 91.99022702461969 96.31467220002116 -179.2487574739117 91.9902543126384 328.5277839541411 -406.2378533955485 85.86675632129641 580.4707710069451 -179.2488079375381 91.99027880389122 454.4865663615751 -179.2487578969744 91.99025348826365 454.4865663615751 -179.2487578969744 91.99025348826365 580.4707710069451 -179.2488079375381 91.99027880389122 328.5277839541411 -406.2378533955485 85.86675632129641 317.822391788035 -652.5648955347623 79.22162104094639 222.2988942015497 -179.2487083323823 91.99022702461969 96.31467220002116 -179.2487574739117 91.9902543126384 696.2539404712943 -31.99856885020529 -62.35121044732944 641.2062907608975 -125.8087797920334 -14.19528021335918 580.4704200643459 -211.2486101849385 29.63970305581222 580.4704200643459 -211.2486101849385 29.63970305581222 641.2062907608975 -125.8087797920334 -14.19528021335918 696.2539404712943 -31.99856885020529 -62.35121044732944 707.8998800435825 -31.99856892789057 -62.35121059869471 641.2062855748541 -91.11898198297649 53.39994031271249 641.2062907608975 -125.8087797920334 -14.19528021335918 707.8998802401202 2.696356327536364 5.254018677091949 707.8998802401202 2.696356327536364 5.254018677091949 707.8998800435825 -31.99856892789057 -62.35121059869471 641.2062855748541 -91.11898198297649 53.39994031271249 641.2062907608975 -125.8087797920334 -14.19528021335918 52.70170125553341 -105.1075528387402 57.38499738967823 -11.15523226531047 -31.99856807853882 -62.35120894372881 52.70170126670109 -138.5050884100278 -7.692186519987217 52.67083703040441 -103.7586824034847 59.8866228928955 -11.15523206876696 2.696357176866741 5.254020332064101 -11.15523206876696 2.696357176866741 5.254020332064101 52.67083703040441 -103.7586824034847 59.8866228928955 -11.15523226531047 -31.99856807853882 -62.35120894372881 52.70170125553341 -105.1075528387402 57.38499738967823 52.70170126670109 -138.5050884100278 -7.692186519987217 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 52.70170126670109 -138.5050884100278 -7.692186519987217 -11.15523226531047 -31.99856807853882 -62.35120894372881 107.4699041249164 -211.2473256686137 29.63904521290283 96.31467201874284 -211.2473256554342 29.63904523858446 96.31467201874284 -211.2473256554342 29.63904523858446 107.4699041249164 -211.2473256686137 29.63904521290283 52.70170126670109 -138.5050884100278 -7.692186519987217 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 -11.15523226531047 -31.99856807853882 -62.35120894372881 222.2989241837956 -176.5524005488381 97.24427422440317 96.31467220002116 -179.2487574739117 91.9902543126384 222.2988942015497 -179.2487083323823 91.99022702461969 96.31467221529692 -176.5524004000317 97.24427451437236 96.31467221529692 -176.5524004000317 97.24427451437236 222.2989241837956 -176.5524005488381 97.24427422440317 96.31467220002116 -179.2487574739117 91.9902543126384 222.2988942015497 -179.2487083323823 91.99022702461969 103.6737878029878 -4.493928404096778 -8.756700363099526 106.4092480023691 -181.9753461559756 82.32213203209028 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 210.0791792078799 -181.9671806855453 82.32236656320913 210.0791792078799 -181.9671806855453 82.32236656320913 103.6737878029878 -4.493928404096778 -8.756700363099526 106.4092480023691 -181.9753461559756 82.32213203209028 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 260.7486744141456 -511.764995415247 73.4288808743114 106.4092480023691 -181.9753461559756 82.32213203209028 210.0791792078799 -181.9671806855453 82.32236656320913 210.0791792078799 -181.9671806855453 82.32236656320913 106.4092480023691 -181.9753461559756 82.32213203209028 260.7486744141456 -511.764995415247 73.4288808743114 103.6737875970175 -31.99856815294379 -62.35120908871107 114.8290198997379 2.696357028058856 5.25402004209468 114.8290197031945 -31.99856822734705 -62.35120923369038 103.6737878029878 -4.493928404096778 -8.756700363099526 103.6737876876634 -0.001797585816007086 -0.003502672725517186 103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 -6.849461442470783e-008 -0.0017975245781372 -0.003502553420503318 103.6737877935582 2.696357102456091 5.254020187080641 -11.15523226531047 -31.99856807853882 -62.35120894372881 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 -11.15523206876696 2.696357176866741 5.254020332064101 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 3.739717158168787e-008 2.696357102461434 5.25402018707382 3.739717158168787e-008 2.696357102461434 5.25402018707382 -11.15523206876696 2.696357176866741 5.254020332064101 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 -6.849461442470783e-008 -0.0017975245781372 -0.003502553420503318 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 -11.15523226531047 -31.99856807853882 -62.35120894372881 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 103.6737877935582 2.696357102456091 5.254020187080641 114.8290198997379 2.696357028058856 5.25402004209468 103.6737876876634 -0.001797585816007086 -0.003502672725517186 103.6737878029878 -4.493928404096778 -8.756700363099526 103.6737875970175 -31.99856815294379 -62.35120908871107 114.8290197031945 -31.99856822734705 -62.35120923369038 210.0791792078799 -181.9671806855453 82.32236656320913 210.0791792078799 -181.9671806855453 82.32236656320913 333.0339632201601 -451.1024177169458 23.16831221913458 333.0339632201601 -451.1024177169458 23.16831221913458 323.1997195353589 -450.6878532429365 23.17949381139329 323.1997195353589 -450.6878532429365 23.17949381139329 222.2989239872381 -211.2473258042464 29.63904494861629 323.1997195353589 -450.6878532429365 23.17949381139329 211.1436918810509 -211.2473257298385 29.639045093601 328.5276718931058 -438.2361623716212 23.51538233117458 327.8042582387495 -460.5267989843736 22.91406182609171 327.8042582387495 -460.5267989843736 22.91406182609171 328.5276718931058 -438.2361623716212 23.51538233117458 323.1997195353589 -450.6878532429365 23.17949381139329 222.2989239872381 -211.2473258042464 29.63904494861629 211.1436918810509 -211.2473257298385 29.639045093601 222.2989239872381 -211.2473258042464 29.63904494861629 323.1997195353589 -450.6878532429365 23.17949381139329 211.1436918810509 -211.2473257298385 29.639045093601 328.5276718931058 -438.2361623716212 23.51538233117458 327.8042582387495 -460.5267989843736 22.91406182609171 327.8042582387495 -460.5267989843736 22.91406182609171 328.5276718931058 -438.2361623716212 23.51538233117458 323.1997195353589 -450.6878532429365 23.17949381139329 222.2989239872381 -211.2473258042464 29.63904494861629 211.1436918810509 -211.2473257298385 29.639045093601 328.5276718931058 -438.2361623716212 23.51538233117458 333.0339632201601 -451.1024177169458 23.16831221913458 327.8042582387495 -460.5267989843736 22.91406182609171 454.4865661803078 -211.2473260784965 29.6390444142146 466.1324352803119 -211.24744477728 29.63910530490989 466.1324352803119 -211.24744477728 29.63910530490989 454.4865661803078 -211.2473260784965 29.6390444142146 333.0339632201601 -451.1024177169458 23.16831221913458 328.5276718931058 -438.2361623716212 23.51538233117458 327.8042582387495 -460.5267989843736 22.91406182609171 328.5276718931058 -438.2361623716212 23.51538233117458 333.0339632201601 -451.1024177169458 23.16831221913458 327.8042582387495 -460.5267989843736 22.91406182609171 454.4865661803078 -211.2473260784965 29.6390444142146 466.1324352803119 -211.24744477728 29.63910530490989 466.1324352803119 -211.24744477728 29.63910530490989 454.4865661803078 -211.2473260784965 29.6390444142146 333.0339632201601 -451.1024177169458 23.16831221913458 328.5276718931058 -438.2361623716212 23.51538233117458 327.8042582387495 -460.5267989843736 22.91406182609171 466.1324352803119 -211.24744477728 29.63910530490989 333.0340638771467 -424.0562226934228 75.87008734787105 333.0339632201601 -451.1024177169458 23.16831221913458 466.1324505697901 -184.202773038542 82.33735865244285 593.5615993176791 -31.99856878950027 -62.35121032904982 467.2910992993818 -182.1147143275845 82.39365457532801 593.5615993942688 -4.495726586821547 -8.760204296521579 593.5615993942688 -4.495726586821547 -8.760204296521579 593.5615993176791 -31.99856878950027 -62.35121032904982 467.2910992993818 -182.1147143275845 82.39365457532801 466.1324505697901 -184.202773038542 82.33735865244285 466.1324352803119 -211.24744477728 29.63910530490989 333.0340638771467 -424.0562226934228 75.87008734787105 333.0339632201601 -451.1024177169458 23.16831221913458 593.5615994067787 -0.001798126633275388 -0.003503962193235566 696.253935632546 -4.493926377879234 -8.75670327676653 593.5615993942688 -4.495726586821547 -8.760204296521579 696.253940560367 -0.001798187334770773 -0.003504080482457539 696.253940560367 -0.001798187334770773 -0.003504080482457539 593.5615994067787 -0.001798126633275388 -0.003503962193235566 696.253935632546 -4.493926377879234 -8.75670327676653 593.5615993942688 -4.495726586821547 -8.760204296521579 472.3577143742859 -170.4920576503184 87.49632486842529 575.0500409650774 -167.7957006292781 92.75034495603541 575.0500409578301 -170.4920577076928 87.49632475662418 472.3577143815135 -167.7957005718999 92.7503450678355 472.3577143815135 -167.7957005718999 92.7503450678355 472.3577143742859 -170.4920576503184 87.49632486842529 575.0500409650774 -167.7957006292781 92.75034495603541 575.0500409578301 -170.4920577076928 87.49632475662418 593.5615786777867 -4.280100529285846e-005 2.023286049279705e-005 472.3577143815135 -167.7957005718999 92.7503450678355 472.3577143742859 -170.4920576503184 87.49632486842529 593.5615786850221 2.696314277412967 5.254040432273541 599.7867699722629 8.756653305307623 -4.493906070938351 599.787512273439 11.45318168226004 0.7600266984917425 599.787512273439 11.45318168226004 0.7600266984917425 599.7867699722629 8.756653305307623 -4.493906070938351 593.5615786850221 2.696314277412967 5.254040432273541 593.5615786777867 -4.280100529285846e-005 2.023286049279705e-005 472.3577143815135 -167.7957005718999 92.7503450678355 472.3577143742859 -170.4920576503184 87.49632486842529 328.5277839541411 -406.2378533955485 85.86675632129641 454.4865661803078 -211.2473260784965 29.6390444142146 328.5276718931058 -438.2361623716212 23.51538233117458 454.4865663615751 -179.2487578969744 91.99025348826365 581.915645841289 -31.99856877907428 -62.35121030873324 454.4865663768496 -176.5524008230862 97.24427369000046 581.9156219266811 2.696310064816657 5.254042785400429 581.9156219266811 2.696310064816657 5.254042785400429 454.4865663768496 -176.5524008230862 97.24427369000046 581.915645841289 -31.99856877907428 -62.35121030873324 454.4865663615751 -179.2487578969744 91.99025348826365 454.4865661803078 -211.2473260784965 29.6390444142146 328.5277839541411 -406.2378533955485 85.86675632129641 328.5276718931058 -438.2361623716212 23.51538233117458 575.0500409650774 -167.7957006292781 92.75034495603541 581.3532280410595 -161.6256481193608 82.94609288767219 575.0500409578301 -170.4920577076928 87.49632475662418 696.253923713751 2.696352051015765 5.254020905657967 696.2539237064889 -5.027398856327636e-006 7.06243781678495e-007 696.2539237064889 -5.027398856327636e-006 7.06243781678495e-007 696.253923713751 2.696352051015765 5.254020905657967 581.3532280410595 -161.6256481193608 82.94609288767219 575.0500409650774 -167.7957006292781 92.75034495603541 575.0500409578301 -170.4920577076928 87.49632475662418 707.8998800435825 -31.99856892789057 -62.35121059869471 641.2062907608975 -125.8087797920334 -14.19528021335918 696.2539404712943 -31.99856885020529 -62.35121044732944 696.2539404712943 -31.99856885020529 -62.35121044732944 641.2062907608975 -125.8087797920334 -14.19528021335918 707.8998800435825 -31.99856892789057 -62.35121059869471 114.8290197031945 -31.99856822734705 -62.35120923369038 211.1436918810509 -211.2473257298385 29.639045093601 103.6737875970175 -31.99856815294379 -62.35120908871107 222.2989239872381 -211.2473258042464 29.63904494861629 222.2989239872381 -211.2473258042464 29.63904494861629 114.8290197031945 -31.99856822734705 -62.35120923369038 211.1436918810509 -211.2473257298385 29.639045093601 103.6737875970175 -31.99856815294379 -62.35120908871107 96.82047581953384 -161.4864630320739 82.87466665075976 102.219785212887 -167.7957406629434 92.75036820162609 102.2197851754842 -170.4920977653391 87.49634801451975 3.739717158168787e-008 2.696357102461434 5.25402018707382 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 96.82047581953384 -161.4864630320739 82.87466665075976 3.739717158168787e-008 2.696357102461434 5.25402018707382 102.219785212887 -167.7957406629434 92.75036820162609 102.2197851754842 -170.4920977653391 87.49634801451975 96.82047581953384 -161.4864630320739 82.87466665075976 103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 102.2197851754842 -170.4920977653391 87.49634801451975 205.8935482714749 -170.4920572344026 87.49632573787972 200.4941644441135 -161.4863674638785 82.87461620763054 200.4941644441135 -161.4863674638785 82.87461620763054 205.8935482714749 -170.4920572344026 87.49632573787972 103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 102.2197851754842 -170.4920977653391 87.49634801451975 96.82047581953384 -161.4864630320739 82.87466665075976 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 327.8043622705814 -433.4805357770634 75.61597449128556 323.1997195353589 -450.6878532429365 23.17949381139329 327.8042582387495 -460.5267989843736 22.91406182609171 323.1998239408781 -423.6431948015674 75.87827901177423 323.1998239408781 -423.6431948015674 75.87827901177423 327.8043622705814 -433.4805357770634 75.61597449128556 323.1997195353589 -450.6878532429365 23.17949381139329 327.8042582387495 -460.5267989843736 22.91406182609171 581.915645841289 -31.99856877907428 -62.35121030873324 466.1324352803119 -211.24744477728 29.63910530490989 454.4865661803078 -211.2473260784965 29.6390444142146 593.5615993176791 -31.99856878950027 -62.35121032904982 593.5615993176791 -31.99856878950027 -62.35121032904982 581.915645841289 -31.99856877907428 -62.35121030873324 466.1324352803119 -211.24744477728 29.63910530490989 454.4865661803078 -211.2473260784965 29.6390444142146 333.0339632201601 -451.1024177169458 23.16831221913458 327.8043622705814 -433.4805357770634 75.61597449128556 327.8042582387495 -460.5267989843736 22.91406182609171 333.0340638771467 -424.0562226934228 75.87008734787105 333.0340638771467 -424.0562226934228 75.87008734787105 333.0339632201601 -451.1024177169458 23.16831221913458 327.8043622705814 -433.4805357770634 75.61597449128556 327.8042582387495 -460.5267989843736 22.91406182609171 593.5615993942688 -4.495726586821547 -8.760204296521579 478.6562784310811 -161.633880280967 82.94589347178999 467.2910992993818 -182.1147143275845 82.39365457532801 593.5615994067787 -0.001798126633275388 -0.003503962193235566 593.5615994067787 -0.001798126633275388 -0.003503962193235566 593.5615993942688 -4.495726586821547 -8.760204296521579 478.6562784310811 -161.633880280967 82.94589347178999 467.2910992993818 -182.1147143275845 82.39365457532801 593.5615993942688 -4.495726586821547 -8.760204296521579 478.6562784310811 -161.633880280967 82.94589347178999 467.2910992993818 -182.1147143275845 82.39365457532801 593.5615994067787 -0.001798126633275388 -0.003503962193235566 593.5615994067787 -0.001798126633275388 -0.003503962193235566 593.5615993942688 -4.495726586821547 -8.760204296521579 478.6562784310811 -161.633880280967 82.94589347178999 467.2910992993818 -182.1147143275845 82.39365457532801 467.2910992993818 -182.1147143275845 82.39365457532801 466.1324353694079 -179.250674114408 91.98681167176255 466.1324505697901 -184.202773038542 82.33735865244285 478.6562784310811 -161.633880280967 82.94589347178999 478.6562784310811 -161.633880280967 82.94589347178999 467.2910992993818 -182.1147143275845 82.39365457532801 466.1324353694079 -179.250674114408 91.98681167176255 466.1324505697901 -184.202773038542 82.33735865244285 568.8245649570656 -179.2517207561726 91.98734866309451 478.6562784310811 -161.633880280967 82.94589347178999 466.1324353694079 -179.250674114408 91.98681167176255 593.5615994067787 -0.001798126633275388 -0.003503962193235566 581.3486829392864 -161.6338387549803 82.94587201564139 696.253940560367 -0.001798187334770773 -0.003504080482457539 696.253940560367 -0.001798187334770773 -0.003504080482457539 581.3486829392864 -161.6338387549803 82.94587201564139 593.5615994067787 -0.001798126633275388 -0.003503962193235566 568.8245649570656 -179.2517207561726 91.98734866309451 478.6562784310811 -161.633880280967 82.94589347178999 466.1324353694079 -179.250674114408 91.98681167176255 575.0500409578301 -170.4920577076928 87.49632475662418 593.5615786777867 -4.280100529285846e-005 2.023286049279705e-005 472.3577143742859 -170.4920576503184 87.49632486842529 581.3532280410595 -161.6256481193608 82.94609288767219 696.2539237064889 -5.027398856327636e-006 7.06243781678495e-007 696.2539237064889 -5.027398856327636e-006 7.06243781678495e-007 581.3532280410595 -161.6256481193608 82.94609288767219 593.5615786777867 -4.280100529285846e-005 2.023286049279705e-005 575.0500409578301 -170.4920577076928 87.49632475662418 472.3577143742859 -170.4920576503184 87.49632486842529 102.2197851754842 -170.4920977653391 87.49634801451975 205.8935483088864 -167.7957001320078 92.75034592498662 205.8935482714749 -170.4920572344026 87.49632573787972 102.219785212887 -167.7957406629434 92.75036820162609 102.219785212887 -167.7957406629434 92.75036820162609 102.2197851754842 -170.4920977653391 87.49634801451975 205.8935483088864 -167.7957001320078 92.75034592498662 205.8935482714749 -170.4920572344026 87.49632573787972</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"588\" source=\"#ID4337\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4335\">\r\n\t\t\t\t\t<float_array count=\"1764\" id=\"ID4338\">7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 0.8823262803307107 0.4187177670033717 -0.2148854732956197 0.8823262803307107 0.4187177670033717 -0.2148854732956197 0.8823262803307107 0.4187177670033717 -0.2148854732956197 0.8823262803307107 0.4187177670033717 -0.2148854732956197 -0.8823262803307107 -0.4187177670033717 0.2148854732956197 -0.8823262803307107 -0.4187177670033717 0.2148854732956197 -0.8823262803307107 -0.4187177670033717 0.2148854732956197 -0.8823262803307107 -0.4187177670033717 0.2148854732956197 -1.602460042832053e-006 -0.4567068079673438 -0.8896172725131365 -1.602460042832053e-006 -0.4567068079673438 -0.8896172725131365 -1.602460042832053e-006 -0.4567068079673438 -0.8896172725131365 -1.602460042832053e-006 -0.4567068079673438 -0.8896172725131365 -1.602460042832053e-006 -0.4567068079673438 -0.8896172725131365 1.602460042832053e-006 0.4567068079673438 0.8896172725131365 1.602460042832053e-006 0.4567068079673438 0.8896172725131365 1.602460042832053e-006 0.4567068079673438 0.8896172725131365 1.602460042832053e-006 0.4567068079673438 0.8896172725131365 1.602460042832053e-006 0.4567068079673438 0.8896172725131365 -1.602460042988111e-006 -0.4567068079673441 -0.8896172725131362 -1.602460042988111e-006 -0.4567068079673441 -0.8896172725131362 -1.602460042988111e-006 -0.4567068079673441 -0.8896172725131362 -1.602460042988111e-006 -0.4567068079673441 -0.8896172725131362 -1.602460042988111e-006 -0.4567068079673441 -0.8896172725131362 1.602460042988111e-006 0.4567068079673441 0.8896172725131362 1.602460042988111e-006 0.4567068079673441 0.8896172725131362 1.602460042988111e-006 0.4567068079673441 0.8896172725131362 1.602460042988111e-006 0.4567068079673441 0.8896172725131362 1.602460042988111e-006 0.4567068079673441 0.8896172725131362 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 7.740814582785812e-006 0.02696463469692091 -0.9996363881010643 7.740814582785812e-006 0.02696463469692091 -0.9996363881010643 7.740814582785812e-006 0.02696463469692091 -0.9996363881010643 7.740814582785812e-006 0.02696463469692091 -0.9996363881010643 -7.740814582785812e-006 -0.02696463469692091 0.9996363881010643 -7.740814582785812e-006 -0.02696463469692091 0.9996363881010643 -7.740814582785812e-006 -0.02696463469692091 0.9996363881010643 -7.740814582785812e-006 -0.02696463469692091 0.9996363881010643 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 -5.846150160694026e-008 0.02696712939957341 -0.9996363208347041 -5.846150160694026e-008 0.02696712939957341 -0.9996363208347041 -5.846150160694026e-008 0.02696712939957341 -0.9996363208347041 -5.846150160694026e-008 0.02696712939957341 -0.9996363208347041 5.846150160694026e-008 -0.02696712939957341 0.9996363208347041 5.846150160694026e-008 -0.02696712939957341 0.9996363208347041 5.846150160694026e-008 -0.02696712939957341 0.9996363208347041 5.846150160694026e-008 -0.02696712939957341 0.9996363208347041 0.8823240724580531 0.4187181737419095 -0.2148937461613908 0.8823240724580531 0.4187181737419095 -0.2148937461613908 0.8823240724580531 0.4187181737419095 -0.2148937461613908 0.8823240724580531 0.4187181737419095 -0.2148937461613908 0.8823240724580531 0.4187181737419095 -0.2148937461613908 0.8823240724580531 0.4187181737419095 -0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.005379526776498625 0.03159374335062422 -0.9994863161008039 -0.02854709925913636 0.04798331961131298 -0.9984401154615973 -0.02062748816561698 0.04238322267560062 -0.9988884668308108 0.02062748816561698 -0.04238322267560062 0.9988884668308108 0.02854709925913636 -0.04798331961131298 0.9984401154615973 0.005379526776498625 -0.03159374335062422 0.9994863161008039 -1.228910442360982e-006 0.02696596068895449 -0.9996363523615034 -1.228910442360982e-006 0.02696596068895449 -0.9996363523615034 -1.228910442360982e-006 0.02696596068895449 -0.9996363523615034 -1.228910442360982e-006 0.02696596068895449 -0.9996363523615034 -1.228910442360982e-006 0.02696596068895449 -0.9996363523615034 1.228910442360982e-006 -0.02696596068895449 0.9996363523615034 1.228910442360982e-006 -0.02696596068895449 0.9996363523615034 1.228910442360982e-006 -0.02696596068895449 0.9996363523615034 1.228910442360982e-006 -0.02696596068895449 0.9996363523615034 1.228910442360982e-006 -0.02696596068895449 0.9996363523615034 -1.228910442138992e-006 0.02696596068895339 -0.9996363523615035 -1.228910442138992e-006 0.02696596068895339 -0.9996363523615035 -1.228910442138992e-006 0.02696596068895339 -0.9996363523615035 -1.228910442138992e-006 0.02696596068895339 -0.9996363523615035 -1.228910442138992e-006 0.02696596068895339 -0.9996363523615035 1.228910442138992e-006 -0.02696596068895339 0.9996363523615035 1.228910442138992e-006 -0.02696596068895339 0.9996363523615035 1.228910442138992e-006 -0.02696596068895339 0.9996363523615035 1.228910442138992e-006 -0.02696596068895339 0.9996363523615035 1.228910442138992e-006 -0.02696596068895339 0.9996363523615035 0.9988486332624309 -0.03850810168836465 0.02861003205402374 0.9977352496153796 -0.04757305087734008 0.04755182967203384 0.998064580608154 -0.04523745546920174 0.04266925776412963 -0.998064580608154 0.04523745546920174 -0.04266925776412963 -0.9977352496153796 0.04757305087734008 -0.04755182967203384 -0.9988486332624309 0.03850810168836465 -0.02861003205402374 -0.9988510601353812 0.03847169152399514 -0.02857426495480948 -0.9980627406179626 0.04522280933338653 -0.04272778143266643 -0.997734068832432 0.04754676769208848 -0.04760286517757485 0.997734068832432 -0.04754676769208848 0.04760286517757485 0.9980627406179626 -0.04522280933338653 0.04272778143266643 0.9988510601353812 -0.03847169152399514 0.02857426495480948 0.02851203350932213 0.04451398529185571 -0.9986018070575478 0.02851203350932213 0.04451398529185571 -0.9986018070575478 0.02851203350932213 0.04451398529185571 -0.9986018070575478 -0.02851203350932213 -0.04451398529185571 0.9986018070575478 -0.02851203350932213 -0.04451398529185571 0.9986018070575478 -0.02851203350932213 -0.04451398529185571 0.9986018070575478 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 -0.8451555601070796 0.4755693699091286 -0.2440201910177167 -0.8451555601070796 0.4755693699091286 -0.2440201910177167 -0.8451555601070796 0.4755693699091286 -0.2440201910177167 -0.8451555601070796 0.4755693699091286 -0.2440201910177167 0.8451555601070796 -0.4755693699091286 0.2440201910177167 0.8451555601070796 -0.4755693699091286 0.2440201910177167 0.8451555601070796 -0.4755693699091286 0.2440201910177167 0.8451555601070796 -0.4755693699091286 0.2440201910177167 -0.8451555601070793 0.475569369909129 -0.2440201910177169 -0.8451555601070793 0.475569369909129 -0.2440201910177169 -0.8451555601070793 0.475569369909129 -0.2440201910177169 -0.8451555601070793 0.475569369909129 -0.2440201910177169 0.8451555601070793 -0.475569369909129 0.2440201910177169 0.8451555601070793 -0.475569369909129 0.2440201910177169 0.8451555601070793 -0.475569369909129 0.2440201910177169 0.8451555601070793 -0.475569369909129 0.2440201910177169 -0.8451450769219164 0.4755661729280294 -0.2440627257924397 -0.8451450769219164 0.4755661729280294 -0.2440627257924397 -0.8451450769219164 0.4755661729280294 -0.2440627257924397 -0.8451450769219164 0.4755661729280294 -0.2440627257924397 0.8451450769219164 -0.4755661729280294 0.2440627257924397 0.8451450769219164 -0.4755661729280294 0.2440627257924397 0.8451450769219164 -0.4755661729280294 0.2440627257924397 0.8451450769219164 -0.4755661729280294 0.2440627257924397 3.834716350325261e-005 -0.4566047157675158 -0.8896696758170199 3.834716350325261e-005 -0.4566047157675158 -0.8896696758170199 3.834716350325261e-005 -0.4566047157675158 -0.8896696758170199 3.834716350325261e-005 -0.4566047157675158 -0.8896696758170199 -3.834716350325261e-005 0.4566047157675158 0.8896696758170199 -3.834716350325261e-005 0.4566047157675158 0.8896696758170199 -3.834716350325261e-005 0.4566047157675158 0.8896696758170199 -3.834716350325261e-005 0.4566047157675158 0.8896696758170199 -1.458714656101553e-008 -0.4565831244485197 -0.889680757614116 -1.458714656101553e-008 -0.4565831244485197 -0.889680757614116 -1.458714656101553e-008 -0.4565831244485197 -0.889680757614116 1.458714656101553e-008 0.4565831244485197 0.889680757614116 1.458714656101553e-008 0.4565831244485197 0.889680757614116 1.458714656101553e-008 0.4565831244485197 0.889680757614116 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -2.225628307450948e-007 -0.8896785862911967 0.456587355382131 -2.225628307450948e-007 -0.8896785862911967 0.456587355382131 -2.225628307450948e-007 -0.8896785862911967 0.456587355382131 -2.225628307450948e-007 -0.8896785862911967 0.456587355382131 2.225628307450948e-007 0.8896785862911967 -0.456587355382131 2.225628307450948e-007 0.8896785862911967 -0.456587355382131 2.225628307450948e-007 0.8896785862911967 -0.456587355382131 2.225628307450948e-007 0.8896785862911967 -0.456587355382131 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 0.002025726823972654 -0.4576175923418636 -0.8891468020580575 0.002025726823972654 -0.4576175923418636 -0.8891468020580575 0.002025726823972654 -0.4576175923418636 -0.8891468020580575 -0.002025726823972654 0.4576175923418636 0.8891468020580575 -0.002025726823972654 0.4576175923418636 0.8891468020580575 -0.002025726823972654 0.4576175923418636 0.8891468020580575 0.8451462229528719 -0.4755656391327831 0.2440597973954785 0.8451462229528719 -0.4755656391327831 0.2440597973954785 0.8451462229528719 -0.4755656391327831 0.2440597973954785 0.8451462229528719 -0.4755656391327831 0.2440597973954785 -0.8451462229528719 0.4755656391327831 -0.2440597973954785 -0.8451462229528719 0.4755656391327831 -0.2440597973954785 -0.8451462229528719 0.4755656391327831 -0.2440597973954785 -0.8451462229528719 0.4755656391327831 -0.2440597973954785 -0.8823226426957243 -0.4187238315719193 0.2148885922057384 -0.8823226426957243 -0.4187238315719193 0.2148885922057384 -0.8823226426957243 -0.4187238315719193 0.2148885922057384 -0.8823226426957243 -0.4187238315719193 0.2148885922057384 -0.8823226426957243 -0.4187238315719193 0.2148885922057384 0.8823226426957243 0.4187238315719193 -0.2148885922057384 0.8823226426957243 0.4187238315719193 -0.2148885922057384 0.8823226426957243 0.4187238315719193 -0.2148885922057384 0.8823226426957243 0.4187238315719193 -0.2148885922057384 0.8823226426957243 0.4187238315719193 -0.2148885922057384 2.924595475192183e-011 -0.4565831299108227 -0.8896807548108685 2.924595475192183e-011 -0.4565831299108227 -0.8896807548108685 2.924595475192183e-011 -0.4565831299108227 -0.8896807548108685 2.924595475192183e-011 -0.4565831299108227 -0.8896807548108685 2.924595475192183e-011 -0.4565831299108227 -0.8896807548108685 -2.924595475192183e-011 0.4565831299108227 0.8896807548108685 -2.924595475192183e-011 0.4565831299108227 0.8896807548108685 -2.924595475192183e-011 0.4565831299108227 0.8896807548108685 -2.924595475192183e-011 0.4565831299108227 0.8896807548108685 -2.924595475192183e-011 0.4565831299108227 0.8896807548108685 2.229624814127138e-007 -0.8896829259034452 0.4565788993764772 2.229624814127138e-007 -0.8896829259034452 0.4565788993764772 2.229624814127138e-007 -0.8896829259034452 0.4565788993764772 2.229624814127138e-007 -0.8896829259034452 0.4565788993764772 -2.229624814127138e-007 0.8896829259034452 -0.4565788993764772 -2.229624814127138e-007 0.8896829259034452 -0.4565788993764772 -2.229624814127138e-007 0.8896829259034452 -0.4565788993764772 -2.229624814127138e-007 0.8896829259034452 -0.4565788993764772 3.797367101332103e-005 -0.4565651084038339 -0.8896900023863346 3.797367101332103e-005 -0.4565651084038339 -0.8896900023863346 3.797367101332103e-005 -0.4565651084038339 -0.8896900023863346 3.797367101332103e-005 -0.4565651084038339 -0.8896900023863346 -3.797367101332103e-005 0.4565651084038339 0.8896900023863346 -3.797367101332103e-005 0.4565651084038339 0.8896900023863346 -3.797367101332103e-005 0.4565651084038339 0.8896900023863346 -3.797367101332103e-005 0.4565651084038339 0.8896900023863346 1.382440603968002e-007 0.02695670020484959 -0.9996366021280169 1.382440603968002e-007 0.02695670020484959 -0.9996366021280169 1.382440603968002e-007 0.02695670020484959 -0.9996366021280169 -1.382440603968002e-007 -0.02695670020484959 0.9996366021280169 -1.382440603968002e-007 -0.02695670020484959 0.9996366021280169 -1.382440603968002e-007 -0.02695670020484959 0.9996366021280169 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 0.0009611344381885759 0.02710422575894658 -0.9996321509268296 -0.0009611344381885759 -0.02710422575894658 0.9996321509268296 0.9993166085946316 -0.03288675055476787 0.0168753496222271 -0.9993166085946316 0.03288675055476787 -0.0168753496222271 -0.9993166101335561 0.03288674300588531 -0.01687527320203464 0.9993166101335561 -0.03288674300588531 0.01687527320203464 -1.541586955506427e-006 0.02696720330280328 -0.9996363188398313 -1.541586955506427e-006 0.02696720330280328 -0.9996363188398313 -1.541586955506427e-006 0.02696720330280328 -0.9996363188398313 -1.541586955506427e-006 0.02696720330280328 -0.9996363188398313 -1.541586955506427e-006 0.02696720330280328 -0.9996363188398313 1.541586955506427e-006 -0.02696720330280328 0.9996363188398313 1.541586955506427e-006 -0.02696720330280328 0.9996363188398313 1.541586955506427e-006 -0.02696720330280328 0.9996363188398313 1.541586955506427e-006 -0.02696720330280328 0.9996363188398313 1.541586955506427e-006 -0.02696720330280328 0.9996363188398313 -1.541586955908978e-006 0.02696720330280194 -0.9996363188398313 -1.541586955908978e-006 0.02696720330280194 -0.9996363188398313 -1.541586955908978e-006 0.02696720330280194 -0.9996363188398313 -1.541586955908978e-006 0.02696720330280194 -0.9996363188398313 -1.541586955908978e-006 0.02696720330280194 -0.9996363188398313 1.541586955908978e-006 -0.02696720330280194 0.9996363188398313 1.541586955908978e-006 -0.02696720330280194 0.9996363188398313 1.541586955908978e-006 -0.02696720330280194 0.9996363188398313 1.541586955908978e-006 -0.02696720330280194 0.9996363188398313 1.541586955908978e-006 -0.02696720330280194 0.9996363188398313 4.036709492554481e-006 0.02696583934270953 -0.9996363556275094 4.036709492554481e-006 0.02696583934270953 -0.9996363556275094 4.036709492554481e-006 0.02696583934270953 -0.9996363556275094 4.036709492554481e-006 0.02696583934270953 -0.9996363556275094 4.036709492554481e-006 0.02696583934270953 -0.9996363556275094 -4.036709492554481e-006 -0.02696583934270953 0.9996363556275094 -4.036709492554481e-006 -0.02696583934270953 0.9996363556275094 -4.036709492554481e-006 -0.02696583934270953 0.9996363556275094 -4.036709492554481e-006 -0.02696583934270953 0.9996363556275094 -4.036709492554481e-006 -0.02696583934270953 0.9996363556275094 4.036709492290858e-006 0.0269658393427103 -0.9996363556275093 4.036709492290858e-006 0.0269658393427103 -0.9996363556275093 4.036709492290858e-006 0.0269658393427103 -0.9996363556275093 4.036709492290858e-006 0.0269658393427103 -0.9996363556275093 4.036709492290858e-006 0.0269658393427103 -0.9996363556275093 -4.036709492290858e-006 -0.0269658393427103 0.9996363556275093 -4.036709492290858e-006 -0.0269658393427103 0.9996363556275093 -4.036709492290858e-006 -0.0269658393427103 0.9996363556275093 -4.036709492290858e-006 -0.0269658393427103 0.9996363556275093 -4.036709492290858e-006 -0.0269658393427103 0.9996363556275093 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -1.51194173119139e-008 0.889680825978471 -0.4565829912362762 -1.51194173119139e-008 0.889680825978471 -0.4565829912362762 -1.51194173119139e-008 0.889680825978471 -0.4565829912362762 -1.51194173119139e-008 0.889680825978471 -0.4565829912362762 1.51194173119139e-008 -0.889680825978471 0.4565829912362762 1.51194173119139e-008 -0.889680825978471 0.4565829912362762 1.51194173119139e-008 -0.889680825978471 0.4565829912362762 1.51194173119139e-008 -0.889680825978471 0.4565829912362762 8.83711130713131e-015 0.8896807537665422 -0.4565831319457578 8.83711130713131e-015 0.8896807537665422 -0.4565831319457578 8.83711130713131e-015 0.8896807537665422 -0.4565831319457578 8.83711130713131e-015 0.8896807537665422 -0.4565831319457578 -8.83711130713131e-015 -0.8896807537665422 0.4565831319457578 -8.83711130713131e-015 -0.8896807537665422 0.4565831319457578 -8.83711130713131e-015 -0.8896807537665422 0.4565831319457578 -8.83711130713131e-015 -0.8896807537665422 0.4565831319457578 0.8451446880601218 -0.4755813416232849 0.244034513427007 0.8451446880601218 -0.4755813416232849 0.244034513427007 0.8451446880601218 -0.4755813416232849 0.244034513427007 0.8451446880601218 -0.4755813416232849 0.244034513427007 0.8451446880601218 -0.4755813416232849 0.244034513427007 0.8451446880601218 -0.4755813416232849 0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 -0.8451450286996102 0.4755673448751584 -0.2440606091788006 -0.8451450286996102 0.4755673448751584 -0.2440606091788006 -0.8451450286996102 0.4755673448751584 -0.2440606091788006 -0.8451450286996102 0.4755673448751584 -0.2440606091788006 -0.8451450286996102 0.4755673448751584 -0.2440606091788006 0.8451450286996102 -0.4755673448751584 0.2440606091788006 0.8451450286996102 -0.4755673448751584 0.2440606091788006 0.8451450286996102 -0.4755673448751584 0.2440606091788006 0.8451450286996102 -0.4755673448751584 0.2440606091788006 0.8451450286996102 -0.4755673448751584 0.2440606091788006 -1.460896286826693e-008 -0.4566779928828167 -0.8896320648540731 -1.460896286826693e-008 -0.4566779928828167 -0.8896320648540731 -1.460896286826693e-008 -0.4566779928828167 -0.8896320648540731 1.460896286826693e-008 0.4566779928828167 0.8896320648540731 1.460896286826693e-008 0.4566779928828167 0.8896320648540731 1.460896286826693e-008 0.4566779928828167 0.8896320648540731 -1.460836859928882e-008 -0.4565831368835662 -0.8896807512324646 -1.460836859928882e-008 -0.4565831368835662 -0.8896807512324646 -1.460836859928882e-008 -0.4565831368835662 -0.8896807512324646 -1.460836859928882e-008 -0.4565831368835662 -0.8896807512324646 1.460836859928882e-008 0.4565831368835662 0.8896807512324646 1.460836859928882e-008 0.4565831368835662 0.8896807512324646 1.460836859928882e-008 0.4565831368835662 0.8896807512324646 1.460836859928882e-008 0.4565831368835662 0.8896807512324646 0.8823231211276741 0.4187247356974064 -0.2148848660065592 0.8823231211276741 0.4187247356974064 -0.2148848660065592 0.8823231211276741 0.4187247356974064 -0.2148848660065592 0.8823231211276741 0.4187247356974064 -0.2148848660065592 0.8823231211276741 0.4187247356974064 -0.2148848660065592 -0.8823231211276741 -0.4187247356974064 0.2148848660065592 -0.8823231211276741 -0.4187247356974064 0.2148848660065592 -0.8823231211276741 -0.4187247356974064 0.2148848660065592 -0.8823231211276741 -0.4187247356974064 0.2148848660065592 -0.8823231211276741 -0.4187247356974064 0.2148848660065592 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -0.8823263388198543 -0.4187179199915488 0.2148849350296631 -0.8823263388198543 -0.4187179199915488 0.2148849350296631 -0.8823263388198543 -0.4187179199915488 0.2148849350296631 -0.8823263388198543 -0.4187179199915488 0.2148849350296631 0.8823263388198543 0.4187179199915488 -0.2148849350296631 0.8823263388198543 0.4187179199915488 -0.2148849350296631 0.8823263388198543 0.4187179199915488 -0.2148849350296631 0.8823263388198543 0.4187179199915488 -0.2148849350296631 -1.950104990073483e-009 -0.4565831315375497 -0.8896807539760341 -1.950104990073483e-009 -0.4565831315375497 -0.8896807539760341 -1.950104990073483e-009 -0.4565831315375497 -0.8896807539760341 -1.950104990073483e-009 -0.4565831315375497 -0.8896807539760341 1.950104990073483e-009 0.4565831315375497 0.8896807539760341 1.950104990073483e-009 0.4565831315375497 0.8896807539760341 1.950104990073483e-009 0.4565831315375497 0.8896807539760341 1.950104990073483e-009 0.4565831315375497 0.8896807539760341 0.8451469778797047 -0.4755663546382378 0.2440557889436348 0.8451469778797047 -0.4755663546382378 0.2440557889436348 0.8451469778797047 -0.4755663546382378 0.2440557889436348 0.8451469778797047 -0.4755663546382378 0.2440557889436348 -0.8451469778797047 0.4755663546382378 -0.2440557889436348 -0.8451469778797047 0.4755663546382378 -0.2440557889436348 -0.8451469778797047 0.4755663546382378 -0.2440557889436348 -0.8451469778797047 0.4755663546382378 -0.2440557889436348 0.8451449479257523 -0.4755671181494874 0.2440613306744202 0.8451449479257523 -0.4755671181494874 0.2440613306744202 0.8451449479257523 -0.4755671181494874 0.2440613306744202 0.8451449479257523 -0.4755671181494874 0.2440613306744202 -0.8451449479257523 0.4755671181494874 -0.2440613306744202 -0.8451449479257523 0.4755671181494874 -0.2440613306744202 -0.8451449479257523 0.4755671181494874 -0.2440613306744202 -0.8451449479257523 0.4755671181494874 -0.2440613306744202 0.8451449479257517 -0.4755671181494885 0.2440613306744209 0.8451449479257517 -0.4755671181494885 0.2440613306744209 0.8451449479257517 -0.4755671181494885 0.2440613306744209 0.8451449479257517 -0.4755671181494885 0.2440613306744209 -0.8451449479257517 0.4755671181494885 -0.2440613306744209 -0.8451449479257517 0.4755671181494885 -0.2440613306744209 -0.8451449479257517 0.4755671181494885 -0.2440613306744209 -0.8451449479257517 0.4755671181494885 -0.2440613306744209 0.8451459927375311 -0.475566092687703 0.2440597108198 0.8451459927375311 -0.475566092687703 0.2440597108198 0.8451459927375311 -0.475566092687703 0.2440597108198 0.8451459927375311 -0.475566092687703 0.2440597108198 -0.8451459927375311 0.475566092687703 -0.2440597108198 -0.8451459927375311 0.475566092687703 -0.2440597108198 -0.8451459927375311 0.475566092687703 -0.2440597108198 -0.8451459927375311 0.475566092687703 -0.2440597108198 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 3.091211920564263e-009 0.4565831300971242 0.889680754715259 3.091211920564263e-009 0.4565831300971242 0.889680754715259 3.091211920564263e-009 0.4565831300971242 0.889680754715259 3.091211920564263e-009 0.4565831300971242 0.889680754715259 3.091211920564263e-009 0.4565831300971242 0.889680754715259 -3.091211920564263e-009 -0.4565831300971242 -0.889680754715259 -3.091211920564263e-009 -0.4565831300971242 -0.889680754715259 -3.091211920564263e-009 -0.4565831300971242 -0.889680754715259 -3.091211920564263e-009 -0.4565831300971242 -0.889680754715259 -3.091211920564263e-009 -0.4565831300971242 -0.889680754715259 -4.459250725082623e-007 0.8896807516830831 -0.4565831360052903 -4.459250725082623e-007 0.8896807516830831 -0.4565831360052903 -4.459250725082623e-007 0.8896807516830831 -0.4565831360052903 -4.459250725082623e-007 0.8896807516830831 -0.4565831360052903 4.459250725082623e-007 -0.8896807516830831 0.4565831360052903 4.459250725082623e-007 -0.8896807516830831 0.4565831360052903 4.459250725082623e-007 -0.8896807516830831 0.4565831360052903 4.459250725082623e-007 -0.8896807516830831 0.4565831360052903</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"588\" source=\"#ID4338\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4336\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4334\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4335\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"186\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4336\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 1 5 6 6 5 7 6 7 8 18 19 20 19 18 21 26 27 28 27 26 29 29 26 30 26 27 28 27 26 29 29 26 30 26 27 28 27 26 29 29 26 30 36 37 38 37 36 39 39 36 40 46 47 48 47 46 49 49 46 50 49 50 51 51 50 52 51 52 53 62 63 64 63 62 65 70 71 72 71 70 73 71 73 74 71 74 75 75 74 76 84 85 86 85 84 87 87 84 88 88 84 89 88 89 90 90 89 91 100 101 102 101 100 103 108 109 110 109 108 111 111 108 112 111 112 113 120 121 122 126 127 128 127 126 129 127 129 130 136 137 138 137 136 139 137 139 140 146 147 148 152 153 154 158 159 160 164 165 166 165 164 167 167 164 168 167 168 169 176 177 178 177 176 179 179 176 180 179 180 181 188 189 190 189 188 191 191 188 192 191 192 193 200 201 202 201 200 203 208 209 210 209 208 211 216 217 218 217 216 219 224 225 226 225 224 227 232 233 234 238 239 240 239 238 241 241 238 242 242 238 243 242 243 244 239 245 240 245 239 246 246 239 247 258 259 260 259 258 261 266 267 268 267 266 269 269 266 270 269 270 271 278 279 280 284 285 286 285 284 287 292 293 294 293 292 295 293 295 296 302 303 304 303 302 305 303 305 306 312 313 314 313 312 315 320 321 322 321 320 323 328 329 330 334 335 336 335 334 337 335 337 338 335 338 339 339 338 340 335 339 341 342 343 344 343 342 345 343 345 340 340 345 346 340 346 339 346 345 347 120 122 362 146 148 364 152 366 153 368 369 370 369 368 371 369 371 372 378 379 380 379 378 381 379 381 382 388 389 390 389 388 391 389 391 392 398 399 400 399 398 401 399 401 402 408 409 410 409 408 411 411 408 412 411 412 413 413 412 414 422 423 424 423 422 425 430 431 432 431 430 433 438 439 440 439 438 441 441 438 442 441 442 443 450 451 452 451 450 453 451 453 454 454 453 455 454 455 456 464 465 466 465 464 467 465 467 468 474 475 476 480 481 482 481 480 483 488 489 490 489 488 491 491 488 492 498 499 500 499 498 501 499 501 502 499 502 503 510 511 512 511 510 513 518 519 520 519 518 521 526 527 528 527 526 529 534 535 536 535 534 537 542 543 544 543 542 545 550 551 552 551 550 553 550 551 552 551 550 553 558 559 560 559 558 561 561 558 562 561 562 563 570 571 572 571 570 573 571 573 574 580 581 582 581 580 583</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"186\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4336\" />\r\n\t\t\t\t\t<p>9 10 11 10 12 11 11 12 13 12 14 13 14 15 13 15 16 13 17 13 16 22 23 24 25 24 23 31 32 33 33 32 34 35 34 32 31 32 33 33 32 34 35 34 32 31 32 33 33 32 34 35 34 32 41 42 43 43 42 44 45 44 42 54 55 56 55 57 56 56 57 58 57 59 58 58 59 60 61 60 59 66 67 68 69 68 67 77 78 79 79 78 80 78 81 80 81 82 80 83 80 82 92 93 94 94 93 95 93 96 95 95 96 97 97 96 98 99 98 96 104 105 106 107 106 105 114 115 116 115 117 116 116 117 118 119 118 117 123 124 125 131 132 133 132 134 133 135 133 134 141 142 143 142 144 143 145 143 144 149 150 151 155 156 157 161 162 163 170 171 172 171 173 172 172 173 174 175 174 173 182 183 184 183 185 184 184 185 186 187 186 185 194 195 196 195 197 196 196 197 198 199 198 197 204 205 206 207 206 205 212 213 214 215 214 213 220 221 222 223 222 221 228 229 230 231 230 229 235 236 237 248 249 250 250 249 251 252 251 249 253 254 255 254 256 255 255 256 257 257 256 249 252 249 256 262 263 264 265 264 263 272 273 274 273 275 274 274 275 276 277 276 275 281 282 283 288 289 290 291 290 289 297 298 299 298 300 299 301 299 300 307 308 309 308 310 309 311 309 310 316 317 318 319 318 317 324 325 326 327 326 325 331 332 333 348 349 350 351 350 352 350 349 352 352 349 353 349 354 353 355 353 354 356 351 357 352 358 351 351 358 357 358 359 357 359 360 357 361 357 360 363 123 125 365 149 151 156 367 157 373 374 375 374 376 375 377 375 376 383 384 385 384 386 385 387 385 386 393 394 395 394 396 395 397 395 396 403 404 405 404 406 405 407 405 406 415 416 417 417 416 418 416 419 418 418 419 420 421 420 419 426 427 428 429 428 427 434 435 436 437 436 435 444 445 446 445 447 446 446 447 448 449 448 447 457 458 459 458 460 459 459 460 461 460 462 461 463 461 462 469 470 471 470 472 471 473 471 472 477 478 479 484 485 486 487 486 485 493 494 495 495 494 496 497 496 494 504 505 506 505 507 506 507 508 506 509 506 508 514 515 516 517 516 515 522 523 524 525 524 523 530 531 532 533 532 531 538 539 540 541 540 539 546 547 548 549 548 547 554 555 556 557 556 555 554 555 556 557 556 555 564 565 566 565 567 566 566 567 568 569 568 567 575 576 577 576 578 577 579 577 578 584 585 586 587 586 585</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4339\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4340\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4343\">323.1998239408781 -423.6431948015674 75.87827901177423 211.1436918810509 -211.2473257298385 29.639045093601 323.1997195353589 -450.6878532429365 23.17949381139329 210.0791792078799 -181.9671806855453 82.32236656320913 103.6737875970175 -31.99856815294379 -62.35120908871107 103.6737878029878 -4.493928404096778 -8.756700363099526 103.6737878029878 -4.493928404096778 -8.756700363099526 210.0791792078799 -181.9671806855453 82.32236656320913 103.6737875970175 -31.99856815294379 -62.35120908871107 211.1436918810509 -211.2473257298385 29.639045093601 323.1998239408781 -423.6431948015674 75.87827901177423 323.1997195353589 -450.6878532429365 23.17949381139329</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4343\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4341\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4344\">-0.8823240576356526 -0.4187188087136177 0.2148925697803586 -0.8823240576356526 -0.4187188087136177 0.2148925697803586 -0.8823240576356526 -0.4187188087136177 0.2148925697803586 -0.8823240576356526 -0.4187188087136177 0.2148925697803586 -0.8823240576356526 -0.4187188087136177 0.2148925697803586 -0.8823240576356526 -0.4187188087136177 0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4344\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4342\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4340\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4341\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4342\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4342\" />\r\n\t\t\t\t\t<p>6 7 8 8 7 9 7 10 9 11 9 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4345\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4346\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID4349\">205.8935483088864 -167.7957001320078 92.75034592498662 200.4941644441135 -161.4863674638785 82.87461620763054 205.8935482714749 -170.4920572344026 87.49632573787972 103.6737877935582 2.696357102456091 5.254020187080641 103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 103.6737877935582 2.696357102456091 5.254020187080641 200.4941644441135 -161.4863674638785 82.87461620763054 205.8935483088864 -167.7957001320078 92.75034592498662 205.8935482714749 -170.4920572344026 87.49632573787972 52.67083703040441 -103.7586824034847 59.8866228928955 3.739717158168787e-008 2.696357102461434 5.25402018707382 -11.15523206876696 2.696357176866741 5.254020332064101 102.219785212887 -167.7957406629434 92.75036820162609 96.31467221529692 -176.5524004000317 97.24427451437236 222.2989241837956 -176.5524005488381 97.24427422440317 205.8935483088864 -167.7957001320078 92.75034592498662 114.8290198997379 2.696357028058856 5.25402004209468 103.6737877935582 2.696357102456091 5.254020187080641 222.2989241837956 -176.5524005488381 97.24427422440317 205.8935483088864 -167.7957001320078 92.75034592498662 114.8290198997379 2.696357028058856 5.25402004209468 103.6737877935582 2.696357102456091 5.254020187080641 102.219785212887 -167.7957406629434 92.75036820162609 96.31467221529692 -176.5524004000317 97.24427451437236 52.67083703040441 -103.7586824034847 59.8866228928955 3.739717158168787e-008 2.696357102461434 5.25402018707382 -11.15523206876696 2.696357176866741 5.254020332064101 222.2989239872381 -211.2473258042464 29.63904494861629 328.5277839541411 -406.2378533955485 85.86675632129641 328.5276718931058 -438.2361623716212 23.51538233117458 222.2988942015497 -179.2487083323823 91.99022702461969 114.8290197031945 -31.99856822734705 -62.35120923369038 222.2989241837956 -176.5524005488381 97.24427422440317 114.8290198997379 2.696357028058856 5.25402004209468 114.8290198997379 2.696357028058856 5.25402004209468 114.8290197031945 -31.99856822734705 -62.35120923369038 222.2989241837956 -176.5524005488381 97.24427422440317 222.2988942015497 -179.2487083323823 91.99022702461969 222.2989239872381 -211.2473258042464 29.63904494861629 328.5277839541411 -406.2378533955485 85.86675632129641 328.5276718931058 -438.2361623716212 23.51538233117458</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID4349\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4347\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID4350\">-0.8823231420005827 -0.4187238683834106 0.2148864703424854 -0.8823231420005827 -0.4187238683834106 0.2148864703424854 -0.8823231420005827 -0.4187238683834106 0.2148864703424854 -0.8823231420005827 -0.4187238683834106 0.2148864703424854 -0.8823231420005827 -0.4187238683834106 0.2148864703424854 0.8823231420005827 0.4187238683834106 -0.2148864703424854 0.8823231420005827 0.4187238683834106 -0.2148864703424854 0.8823231420005827 0.4187238683834106 -0.2148864703424854 0.8823231420005827 0.4187238683834106 -0.2148864703424854 0.8823231420005827 0.4187238683834106 -0.2148864703424854 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID4350\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4348\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4346\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4347\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4348\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 10 11 12 11 10 13 13 10 14 13 14 15 13 15 16 16 17 18 17 16 15 28 29 30 29 28 31 31 28 32 31 32 33 33 32 34</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4348\" />\r\n\t\t\t\t\t<p>5 6 7 6 8 7 9 7 8 19 20 21 22 21 20 20 19 23 19 24 23 24 25 23 23 25 26 27 26 25 35 36 37 37 36 38 36 39 38 38 39 40 41 40 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4351\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4352\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4355\">96.82430174717365 -161.4946424628247 82.87443788597909 103.6737876876634 -0.001797585816007086 -0.003502672725517186 -6.849461442470783e-008 -0.0017975245781372 -0.003502553420503318 107.4699042155643 -179.2505551014756 91.98675162889037 200.4980009330105 -161.4945639998141 82.87439746868381 211.1436919717295 -179.2505551626975 91.98675150958252 211.1436919717295 -179.2505551626975 91.98675150958252 107.4699042155643 -179.2505551014756 91.98675162889037 200.4980009330105 -161.4945639998141 82.87439746868381 103.6737876876634 -0.001797585816007086 -0.003502672725517186 96.82430174717365 -161.4946424628247 82.87443788597909 -6.849461442470783e-008 -0.0017975245781372 -0.003502553420503318</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4355\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4353\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4356\">1.29187982323741e-009 0.4565831305625449 0.8896807544764056 1.29187982323741e-009 0.4565831305625449 0.8896807544764056 1.29187982323741e-009 0.4565831305625449 0.8896807544764056 1.29187982323741e-009 0.4565831305625449 0.8896807544764056 1.29187982323741e-009 0.4565831305625449 0.8896807544764056 1.29187982323741e-009 0.4565831305625449 0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4356\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4354\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4352\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4353\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4354\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4354\" />\r\n\t\t\t\t\t<p>6 7 8 8 7 9 7 10 9 11 9 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4357\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4358\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4361\">598.3206270453534 8.756482209299634 -4.493818246322917 593.5615786777867 -4.280100529285846e-005 2.023286049279705e-005 592.4976295697297 0.5652446209451227 -0.2900252858905787 599.7867699722629 8.756653305307623 -4.493906070938351 598.3206270453534 8.756482209299634 -4.493818246322917 599.787512273439 11.45318168226004 0.7600266984917425 599.7867699722629 8.756653305307623 -4.493906070938351 598.3213693465293 11.45301058625205 0.7601145231074042 593.5615786850221 2.696314277412967 5.254040432273541 598.3213693465293 11.45301058625205 0.7601145231074042 593.071220582139 2.696301618324583 5.254046672008371 599.787512273439 11.45318168226004 0.7600266984917425</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4361\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4359\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4362\">-1.858824410864929e-005 -0.4565750526964278 -0.8896848997874086 -1.858824410864929e-005 -0.4565750526964278 -0.8896848997874086 -1.858824410864929e-005 -0.4565750526964278 -0.8896848997874086 -1.858824410864929e-005 -0.4565750526964278 -0.8896848997874086 -0.000131174156990502 0.8896658839942042 -0.4566120866229364 -0.000131174156990502 0.8896658839942042 -0.4566120866229364 -0.000131174156990502 0.8896658839942042 -0.4566120866229364 -0.000131174156990502 0.8896658839942042 -0.4566120866229364 -5.115577410353915e-008 0.4565831066071845 0.8896807667702666 -5.115577410353915e-008 0.4565831066071845 0.8896807667702666 -5.115577410353915e-008 0.4565831066071845 0.8896807667702666 -5.115577410353915e-008 0.4565831066071845 0.8896807667702666</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4362\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4360\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4358\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4359\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4360\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4363\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4364\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4366\">309.2003967289222 -619.7390605308252 62.3696428540286 309.2955564211388 -619.7390604942294 62.36964283239854</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4366\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4365\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4364\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4365\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4367\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4368\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4370\">581.3532280410595 -161.6256481193608 82.94609288767219 581.3486829392864 -161.6338387549803 82.94587201564139</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4370\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4369\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4368\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4369\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4371\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4372\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4374\">96.82430174717365 -161.4946424628247 82.87443788597909 96.82047581953384 -161.4864630320739 82.87466665075976</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4374\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4373\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4372\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4373\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4375\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4376\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4378\">200.4980009330105 -161.4945639998141 82.87439746868381 200.4941644441135 -161.4863674638785 82.87461620763054</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4378\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4377\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4376\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4377\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4379\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4380\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4382\">641.2062855748541 -91.11898198297649 53.39994031271249 632.0118909367927 -104.049127921678 60.04326367878525</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4382\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4381\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4380\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4381\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4383\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4384\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4386\">592.4976295697297 0.5652446209451227 -0.2900252858905787 592.4976295769659 3.261601699363723 4.963994913522697</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4386\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4385\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4384\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4385\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4390\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4391\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID4394\">8.841006847604376 3.543133371077147 -3.923985227851176 12.38431388840399 -0.0001737342231535877 -3.924132677834535 8.841006825849945 -0.0001737210616283846 -3.923926265244603 12.38431388610547 3.543133342451483 -3.924398099593219 12.38431388610547 3.543133342451483 -3.924398099593219 8.841006847604376 3.543133371077147 -3.923985227851176 12.38431388840399 -0.0001737342231535877 -3.924132677834535 8.841006825849945 -0.0001737210616283846 -3.923926265244603 8.844480264400318 0.001645684146978965 35.82343574607086 8.841006847604376 3.543133371077147 -3.923985227851176 8.841006825849945 -0.0001737210616283846 -3.923926265244603 8.844471750399862 0.00404140413775167 35.82322967098457 8.84448028615634 3.54495277628439 35.82337678346454 8.84448028615634 3.54495277628439 35.82337678346454 8.844471750399862 0.00404140413775167 35.82322967098457 8.841006847604376 3.543133371077147 -3.923985227851176 8.844480264400318 0.001645684146978965 35.82343574607086 8.841006825849945 -0.0001737210616283846 -3.923926265244603 8.841006847604376 3.543133371077147 -3.923985227851176 12.38778732465835 3.544952747658272 35.82296391172241 12.38431388610547 3.543133342451483 -3.924398099593219 8.84448028615634 3.54495277628439 35.82337678346454 12.33732720309945 3.544952655381167 35.82369073233389 12.33732720309945 3.544952655381167 35.82369073233389 8.84448028615634 3.54495277628439 35.82337678346454 12.38778732465835 3.544952747658272 35.82296391172241 8.841006847604376 3.543133371077147 -3.923985227851176 12.38431388610547 3.543133342451483 -3.924398099593219 12.38431388610547 3.543133342451483 -3.924398099593219 12.38778732695664 0.001645670982497904 35.82322933348155 12.38431388840399 -0.0001737342231535877 -3.924132677834535 12.38778732465835 3.544952747658272 35.82296391172241 12.38778732465835 3.544952747658272 35.82296391172241 12.38431388610547 3.543133342451483 -3.924398099593219 12.38778732695664 0.001645670982497904 35.82322933348155 12.38431388840399 -0.0001737342231535877 -3.924132677834535 12.38778732695664 0.001645670982497904 35.82322933348155 8.841006825849945 -0.0001737210616283846 -3.923926265244603 12.38431388840399 -0.0001737342231535877 -3.924132677834535 8.844480264400318 0.001645684146978965 35.82343574607086 8.844480264400318 0.001645684146978965 35.82343574607086 12.38778732695664 0.001645670982497904 35.82322933348155 8.841006825849945 -0.0001737210616283846 -3.923926265244603 12.38431388840399 -0.0001737342231535877 -3.924132677834535 8.84448028615634 3.54495277628439 35.82337678346454 8.844471750399862 0.00404140413775167 35.82322967098457 8.831887945606013 3.544907983772646 35.82369075178184 8.831887945606013 3.544907983772646 35.82369075178184 8.844471750399862 0.00404140413775167 35.82322967098457 8.84448028615634 3.54495277628439 35.82337678346454 12.33732720309945 3.544952655381167 35.82369073233389 8.84448028615634 3.54495277628439 35.82337678346454 12.33715043564416 3.557365255797095 35.82369234866565 12.33715043564416 3.557365255797095 35.82369234866565 8.84448028615634 3.54495277628439 35.82337678346454 12.33732720309945 3.544952655381167 35.82369073233389 12.38778732695664 0.001645670982497904 35.82322933348155 8.844525016094849 -0.01094664773131626 35.82322771928557 8.844480264400318 0.001645684146978965 35.82343574607086 8.844480264400318 0.001645684146978965 35.82343574607086 8.844525016094849 -0.01094664773131626 35.82322771928557 12.38778732695664 0.001645670982497904 35.82322933348155</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID4394\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4392\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID4395\">-8.738790084381423e-005 -4.577423784621822e-005 -0.9999999951340372 -8.738790084381423e-005 -4.577423784621822e-005 -0.9999999951340372 -8.738790084381423e-005 -4.577423784621822e-005 -0.9999999951340372 -8.738790084381423e-005 -4.577423784621822e-005 -0.9999999951340372 8.738790084381423e-005 4.577423784621822e-005 0.9999999951340372 8.738790084381423e-005 4.577423784621822e-005 0.9999999951340372 8.738790084381423e-005 4.577423784621822e-005 0.9999999951340372 8.738790084381423e-005 4.577423784621822e-005 0.9999999951340372 -0.9999999961873413 6.920082918263556e-007 8.732032342545308e-005 -0.9999999961873413 6.920082918263556e-007 8.732032342545308e-005 -0.9999999961873413 6.920082918263556e-007 8.732032342545308e-005 -0.9999999961873413 6.920082918263556e-007 8.732032342545308e-005 -0.9999999961873413 6.920082918263556e-007 8.732032342545308e-005 0.9999999961873413 -6.920082918263556e-007 -8.732032342545308e-005 0.9999999961873413 -6.920082918263556e-007 -8.732032342545308e-005 0.9999999961873413 -6.920082918263556e-007 -8.732032342545308e-005 0.9999999961873413 -6.920082918263556e-007 -8.732032342545308e-005 0.9999999961873413 -6.920082918263556e-007 -8.732032342545308e-005 1.267079045064575e-008 0.9999999989524057 -4.577323208239434e-005 1.267079045064575e-008 0.9999999989524057 -4.577323208239434e-005 1.267079045064575e-008 0.9999999989524057 -4.577323208239434e-005 1.267079045064575e-008 0.9999999989524057 -4.577323208239434e-005 1.267079045064575e-008 0.9999999989524057 -4.577323208239434e-005 -1.267079045064575e-008 -0.9999999989524057 4.577323208239434e-005 -1.267079045064575e-008 -0.9999999989524057 4.577323208239434e-005 -1.267079045064575e-008 -0.9999999989524057 4.577323208239434e-005 -1.267079045064575e-008 -0.9999999989524057 4.577323208239434e-005 -1.267079045064575e-008 -0.9999999989524057 4.577323208239434e-005 0.9999999961816776 -5.896580801390626e-009 -8.738790076482813e-005 0.9999999961816776 -5.896580801390626e-009 -8.738790076482813e-005 0.9999999961816776 -5.896580801390626e-009 -8.738790076482813e-005 0.9999999961816776 -5.896580801390626e-009 -8.738790076482813e-005 -0.9999999961816776 5.896580801390626e-009 8.738790076482813e-005 -0.9999999961816776 5.896580801390626e-009 8.738790076482813e-005 -0.9999999961816776 5.896580801390626e-009 8.738790076482813e-005 -0.9999999961816776 5.896580801390626e-009 8.738790076482813e-005 -1.047573395380673e-009 -0.9999999989523597 4.577423804670518e-005 -1.047573395380673e-009 -0.9999999989523597 4.577423804670518e-005 -1.047573395380673e-009 -0.9999999989523597 4.577423804670518e-005 -1.047573395380673e-009 -0.9999999989523597 4.577423804670518e-005 1.047573395380673e-009 0.9999999989523597 -4.577423804670518e-005 1.047573395380673e-009 0.9999999989523597 -4.577423804670518e-005 1.047573395380673e-009 0.9999999989523597 -4.577423804670518e-005 1.047573395380673e-009 0.9999999989523597 -4.577423804670518e-005 -0.02492567850733164 4.159367961808244e-005 -0.9996893061451219 -0.02492567850733164 4.159367961808244e-005 -0.9996893061451219 -0.02492567850733164 4.159367961808244e-005 -0.9996893061451219 0.02492567850733164 -4.159367961808244e-005 0.9996893061451219 0.02492567850733164 -4.159367961808244e-005 0.9996893061451219 0.02492567850733164 -4.159367961808244e-005 0.9996893061451219 8.988337840859941e-005 0.0001314970366449274 -0.9999999873147538 8.988337840859941e-005 0.0001314970366449274 -0.9999999873147538 8.988337840859941e-005 0.0001314970366449274 -0.9999999873147538 -8.988337840859941e-005 -0.0001314970366449274 0.9999999873147538 -8.988337840859941e-005 -0.0001314970366449274 0.9999999873147538 -8.988337840859941e-005 -0.0001314970366449274 0.9999999873147538 -5.824621130719815e-005 0.01651765535359837 -0.9998635725282719 -5.824621130719815e-005 0.01651765535359837 -0.9998635725282719 -5.824621130719815e-005 0.01651765535359837 -0.9998635725282719 5.824621130719815e-005 -0.01651765535359837 0.9998635725282719 5.824621130719815e-005 -0.01651765535359837 0.9998635725282719 5.824621130719815e-005 -0.01651765535359837 0.9998635725282719</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID4395\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4393\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4391\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4392\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"34\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4393\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 9 11 12 13 14 15 14 16 15 17 15 16 18 19 20 19 18 21 19 21 22 23 24 25 24 26 25 27 25 26 28 29 30 29 28 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 43 42 41 44 45 46 47 48 49 50 51 52 53 54 55 50 51 52 53 54 55 50 51 52 53 54 55 56 57 58 59 60 61</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4396\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4397\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID4400\">3.546663100942396 0.001582734242674633 32.67202592207735 0.003356060139367401 3.544889839542748 32.6721733720612 0.003356038382662518 0.001582747405336704 32.67223233466757 3.546663098638192 3.54488981091572 32.67176050031884 3.546663098638192 3.54488981091572 32.67176050031884 3.546663100942396 0.001582734242674633 32.67202592207735 0.003356060139367401 3.544889839542748 32.6721733720612 0.003356038382662518 0.001582747405336704 32.67223233466757 0.003356038382662518 0.001582747405336704 32.67223233466757 -6.426445725082886e-005 3.543098255698624 -6.467393366621622 -6.428621441045834e-005 -0.0002088364408336929 -6.467334404014878 0.003356060139367401 3.544889839542748 32.6721733720612 0.003356060139367401 3.544889839542748 32.6721733720612 0.003356038382662518 0.001582747405336704 32.67223233466757 -6.426445725082886e-005 3.543098255698624 -6.467393366621622 -6.428621441045834e-005 -0.0002088364408336929 -6.467334404014878 3.546663100942396 0.001582734242674633 32.67202592207735 -6.428621441045834e-005 -0.0002088364408336929 -6.467334404014878 3.543242776344869 -0.0002088496003125329 -6.46754081660464 0.003356038382662518 0.001582747405336704 32.67223233466757 0.003356038382662518 0.001582747405336704 32.67223233466757 3.546663100942396 0.001582734242674633 32.67202592207735 -6.428621441045834e-005 -0.0002088364408336929 -6.467334404014878 3.543242776344869 -0.0002088496003125329 -6.46754081660464 3.543242774041573 3.543098227073642 -6.467806238363522 3.546663100942396 0.001582734242674633 32.67202592207735 3.543242776344869 -0.0002088496003125329 -6.46754081660464 3.546663098638192 3.54488981091572 32.67176050031884 3.546663098638192 3.54488981091572 32.67176050031884 3.543242774041573 3.543098227073642 -6.467806238363522 3.546663100942396 0.001582734242674633 32.67202592207735 3.543242776344869 -0.0002088496003125329 -6.46754081660464 -6.426445725082886e-005 3.543098255698624 -6.467393366621622 3.546663098638192 3.54488981091572 32.67176050031884 3.543242774041573 3.543098227073642 -6.467806238363522 0.003356060139367401 3.544889839542748 32.6721733720612 0.003356060139367401 3.544889839542748 32.6721733720612 -6.426445725082886e-005 3.543098255698624 -6.467393366621622 3.546663098638192 3.54488981091572 32.67176050031884 3.543242774041573 3.543098227073642 -6.467806238363522 -6.426445725082886e-005 3.543098255698624 -6.467393366621622 3.543242776344869 -0.0002088496003125329 -6.46754081660464 -6.428621441045834e-005 -0.0002088364408336929 -6.467334404014878 3.543242774041573 3.543098227073642 -6.467806238363522 3.543242774041573 3.543098227073642 -6.467806238363522 -6.426445725082886e-005 3.543098255698624 -6.467393366621622 3.543242776344869 -0.0002088496003125329 -6.46754081660464 -6.428621441045834e-005 -0.0002088364408336929 -6.467334404014878</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID4400\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4398\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID4401\">8.738790086383623e-005 4.577423781010909e-005 0.9999999951340372 8.738790086383623e-005 4.577423781010909e-005 0.9999999951340372 8.738790086383623e-005 4.577423781010909e-005 0.9999999951340372 8.738790086383623e-005 4.577423781010909e-005 0.9999999951340372 -8.738790086383623e-005 -4.577423781010909e-005 -0.9999999951340372 -8.738790086383623e-005 -4.577423781010909e-005 -0.9999999951340372 -8.738790086383623e-005 -4.577423781010909e-005 -0.9999999951340372 -8.738790086383623e-005 -4.577423781010909e-005 -0.9999999951340372 -0.9999999961816773 7.59403828338808e-009 8.738790065251159e-005 -0.9999999961816773 7.59403828338808e-009 8.738790065251159e-005 -0.9999999961816773 7.59403828338808e-009 8.738790065251159e-005 -0.9999999961816773 7.59403828338808e-009 8.738790065251159e-005 0.9999999961816773 -7.59403828338808e-009 -8.738790065251159e-005 0.9999999961816773 -7.59403828338808e-009 -8.738790065251159e-005 0.9999999961816773 -7.59403828338808e-009 -8.738790065251159e-005 0.9999999961816773 -7.59403828338808e-009 -8.738790065251159e-005 -1.047396962435896e-009 -0.9999999989523597 4.577423808421026e-005 -1.047396962435896e-009 -0.9999999989523597 4.577423808421026e-005 -1.047396962435896e-009 -0.9999999989523597 4.577423808421026e-005 -1.047396962435896e-009 -0.9999999989523597 4.577423808421026e-005 1.047396962435896e-009 0.9999999989523597 -4.577423808421026e-005 1.047396962435896e-009 0.9999999989523597 -4.577423808421026e-005 1.047396962435896e-009 0.9999999989523597 -4.577423808421026e-005 1.047396962435896e-009 0.9999999989523597 -4.577423808421026e-005 0.9999999961816775 -5.89650068810696e-009 -8.738790074833345e-005 0.9999999961816775 -5.89650068810696e-009 -8.738790074833345e-005 0.9999999961816775 -5.89650068810696e-009 -8.738790074833345e-005 0.9999999961816775 -5.89650068810696e-009 -8.738790074833345e-005 -0.9999999961816775 5.89650068810696e-009 8.738790074833345e-005 -0.9999999961816775 5.89650068810696e-009 8.738790074833345e-005 -0.9999999961816775 5.89650068810696e-009 8.738790074833345e-005 -0.9999999961816775 5.89650068810696e-009 8.738790074833345e-005 2.744921954938603e-009 0.9999999989523597 -4.577423820592141e-005 2.744921954938603e-009 0.9999999989523597 -4.577423820592141e-005 2.744921954938603e-009 0.9999999989523597 -4.577423820592141e-005 2.744921954938603e-009 0.9999999989523597 -4.577423820592141e-005 -2.744921954938603e-009 -0.9999999989523597 4.577423820592141e-005 -2.744921954938603e-009 -0.9999999989523597 4.577423820592141e-005 -2.744921954938603e-009 -0.9999999989523597 4.577423820592141e-005 -2.744921954938603e-009 -0.9999999989523597 4.577423820592141e-005 -8.73879008197575e-005 -4.577423787428635e-005 -0.999999995134037 -8.73879008197575e-005 -4.577423787428635e-005 -0.999999995134037 -8.73879008197575e-005 -4.577423787428635e-005 -0.999999995134037 -8.73879008197575e-005 -4.577423787428635e-005 -0.999999995134037 8.73879008197575e-005 4.577423787428635e-005 0.999999995134037 8.73879008197575e-005 4.577423787428635e-005 0.999999995134037 8.73879008197575e-005 4.577423787428635e-005 0.999999995134037 8.73879008197575e-005 4.577423787428635e-005 0.999999995134037</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID4401\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4399\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4397\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4398\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4399\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 20 21 22 23 22 21 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 44 45 46 47 46 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4409\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4410\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID4413\">4.661308498942617 0.483334096771614 -1.406534963138768 8.192020958834149 -3.072480510251808 -1.389108388631911 4.648779194086529 -3.059950809743896 -1.406645724505211 8.204549032601932 0.470804375383068 -1.388748914284776 8.204549032601932 0.470804375383068 -1.388748914284776 4.661308498942617 0.483334096771614 -1.406534963138768 8.192020958834149 -3.072480510251808 -1.389108388631911 4.648779194086529 -3.059950809743896 -1.406645724505211 8.192020958834149 -3.072480510251808 -1.389108388631911 4.452629714578904 -3.061919415809825 37.96290697041118 4.648779194086529 -3.059950809743896 -1.406645724505211 7.995871479327661 -3.074449116319101 37.9804443062844 7.995871479327661 -3.074449116319101 37.9804443062844 8.192020958834149 -3.072480510251808 -1.389108388631911 4.452629714578904 -3.061919415809825 37.96290697041118 4.648779194086529 -3.059950809743896 -1.406645724505211 4.46515901943252 0.4813654907038654 37.96301773177757 4.648779194086529 -3.059950809743896 -1.406645724505211 4.452629714578904 -3.061919415809825 37.96290697041118 4.661308498942617 0.483334096771614 -1.406534963138768 4.661308498942617 0.483334096771614 -1.406534963138768 4.46515901943252 0.4813654907038654 37.96301773177757 4.648779194086529 -3.059950809743896 -1.406645724505211 4.452629714578904 -3.061919415809825 37.96290697041118 4.46515901943252 0.4813654907038654 37.96301773177757 8.204549032601932 0.470804375383068 -1.388748914284776 4.661308498942617 0.483334096771614 -1.406534963138768 8.008399553096723 0.4688357693144098 37.98080378063187 8.008399553096723 0.4688357693144098 37.98080378063187 4.46515901943252 0.4813654907038654 37.96301773177757 8.204549032601932 0.470804375383068 -1.388748914284776 4.661308498942617 0.483334096771614 -1.406534963138768 8.192020958834149 -3.072480510251808 -1.389108388631911 8.008399553096723 0.4688357693144098 37.98080378063187 7.995871479327661 -3.074449116319101 37.9804443062844 8.204549032601932 0.470804375383068 -1.388748914284776 8.204549032601932 0.470804375383068 -1.388748914284776 8.192020958834149 -3.072480510251808 -1.389108388631911 8.008399553096723 0.4688357693144098 37.98080378063187 7.995871479327661 -3.074449116319101 37.9804443062844 7.995871479327661 -3.074449116319101 37.9804443062844 4.46515901943252 0.4813654907038654 37.96301773177757 4.452629714578904 -3.061919415809825 37.96290697041118 8.008399553096723 0.4688357693144098 37.98080378063187 8.008399553096723 0.4688357693144098 37.98080378063187 7.995871479327661 -3.074449116319101 37.9804443062844 4.46515901943252 0.4813654907038654 37.96301773177757 4.452629714578904 -3.061919415809825 37.96290697041118</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID4413\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4411\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID4414\">0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 0.9999813388662154 -0.003536162398880151 0.004981714044411586 0.9999813388662154 -0.003536162398880151 0.004981714044411586 0.9999813388662154 -0.003536162398880151 0.004981714044411586 0.9999813388662154 -0.003536162398880151 0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID4414\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4412\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4410\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4411\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4412\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27 32 33 34 33 32 35 40 41 42 41 40 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4412\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29 36 37 38 39 38 37 44 45 46 47 46 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4418\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4419\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID4422\">8.204549032601932 0.470804375383068 -1.388748914284776 4.661308498942617 0.483334096771614 -1.406534963138768 8.192020958834149 -3.072480510251808 -1.389108388631911 4.648779194086529 -3.059950809743896 -1.406645724505211 4.661308498942617 0.483334096771614 -1.406534963138768 8.192020958834149 -3.072480510251808 -1.389108388631911 4.648779194086529 -3.059950809743896 -1.406645724505211 8.204549032601932 0.470804375383068 -1.388748914284776 7.995871479327661 -3.074449116319101 37.9804443062844 8.192020958834149 -3.072480510251808 -1.389108388631911 4.452629714578904 -3.061919415809825 37.96290697041118 4.648779194086529 -3.059950809743896 -1.406645724505211 8.192020958834149 -3.072480510251808 -1.389108388631911 4.452629714578904 -3.061919415809825 37.96290697041118 4.648779194086529 -3.059950809743896 -1.406645724505211 7.995871479327661 -3.074449116319101 37.9804443062844 4.661308498942617 0.483334096771614 -1.406534963138768 4.46515901943252 0.4813654907038654 37.96301773177757 4.648779194086529 -3.059950809743896 -1.406645724505211 4.452629714578904 -3.061919415809825 37.96290697041118 4.46515901943252 0.4813654907038654 37.96301773177757 4.648779194086529 -3.059950809743896 -1.406645724505211 4.452629714578904 -3.061919415809825 37.96290697041118 4.661308498942617 0.483334096771614 -1.406534963138768 8.008399553096723 0.4688357693144098 37.98080378063187 4.46515901943252 0.4813654907038654 37.96301773177757 8.204549032601932 0.470804375383068 -1.388748914284776 4.661308498942617 0.483334096771614 -1.406534963138768 4.46515901943252 0.4813654907038654 37.96301773177757 8.204549032601932 0.470804375383068 -1.388748914284776 4.661308498942617 0.483334096771614 -1.406534963138768 8.008399553096723 0.4688357693144098 37.98080378063187 8.204549032601932 0.470804375383068 -1.388748914284776 8.192020958834149 -3.072480510251808 -1.389108388631911 8.008399553096723 0.4688357693144098 37.98080378063187 7.995871479327661 -3.074449116319101 37.9804443062844 8.192020958834149 -3.072480510251808 -1.389108388631911 8.008399553096723 0.4688357693144098 37.98080378063187 7.995871479327661 -3.074449116319101 37.9804443062844 8.204549032601932 0.470804375383068 -1.388748914284776 8.008399553096723 0.4688357693144098 37.98080378063187 7.995871479327661 -3.074449116319101 37.9804443062844 4.46515901943252 0.4813654907038654 37.96301773177757 4.452629714578904 -3.061919415809825 37.96290697041118 7.995871479327661 -3.074449116319101 37.9804443062844 4.46515901943252 0.4813654907038654 37.96301773177757 4.452629714578904 -3.061919415809825 37.96290697041118 8.008399553096723 0.4688357693144098 37.98080378063187</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID4422\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4420\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID4423\">0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 0.9999813388662154 -0.003536162398880151 0.004981714044411586 0.9999813388662154 -0.003536162398880151 0.004981714044411586 0.9999813388662154 -0.003536162398880151 0.004981714044411586 0.9999813388662154 -0.003536162398880151 0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID4423\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4421\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4419\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4420\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4421\" />\r\n\t\t\t\t\t<p>0 1 2 3 2 1 8 9 10 11 10 9 16 17 18 19 18 17 24 25 26 27 26 25 32 33 34 35 34 33 40 41 42 43 42 41</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4421\" />\r\n\t\t\t\t\t<p>4 5 6 5 4 7 12 13 14 13 12 15 20 21 22 21 20 23 28 29 30 29 28 31 36 37 38 37 36 39 44 45 46 45 44 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4436\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4437\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4440\">8.841068731502446 3.574612474881633 36.22122382109441 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.85359739629348 0.0313275481457822 36.22095819460444 8.844228090207935 3.576283709028758 0.0008540603757580811 8.844228090207935 3.576283709028758 0.0008540603757580811 8.841068731502446 3.574612474881633 36.22122382109441 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.85359739629348 0.0313275481457822 36.22095819460444 12.4000416436902 0.04552741599354704 0.001001308182651428 8.85359739629348 0.0313275481457822 36.22095819460444 8.856756755001698 0.03299878228699527 0.0005884338854116322 12.39688228498176 0.04385618184505802 36.22137106890133 12.39688228498176 0.04385618184505802 36.22137106890133 12.4000416436902 0.04552741599354704 0.001001308182651428 8.85359739629348 0.0313275481457822 36.22095819460444 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.841068731502446 3.574612474881633 36.22122382109441 12.38751300290346 3.588812358292216 0.001060475520404225 8.844228090207935 3.576283709028758 0.0008540603757580811 12.38435364419615 3.587141124149184 36.22143023623991 12.38435364419615 3.587141124149184 36.22143023623991 8.841068731502446 3.574612474881633 36.22122382109441 12.38751300290346 3.588812358292216 0.001060475520404225 8.844228090207935 3.576283709028758 0.0008540603757580811 12.4000416436902 0.04552741599354704 0.001001308182651428 12.38435364419615 3.587141124149184 36.22143023623991 12.39688228498176 0.04385618184505802 36.22137106890133 12.38751300290346 3.588812358292216 0.001060475520404225 12.38751300290346 3.588812358292216 0.001060475520404225 12.4000416436902 0.04552741599354704 0.001001308182651428 12.38435364419615 3.587141124149184 36.22143023623991 12.39688228498176 0.04385618184505802 36.22137106890133</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4440\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4438\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4441\">-0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 -0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 -0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 -0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4441\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4439\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4437\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4438\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4439\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4439\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4442\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4443\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4446\">12.38751300290346 3.588812358292216 0.001060475520404225 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.844228090207935 3.576283709028758 0.0008540603757580811 12.4000416436902 0.04552741599354704 0.001001308182651428 12.4000416436902 0.04552741599354704 0.001001308182651428 12.38751300290346 3.588812358292216 0.001060475520404225 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.844228090207935 3.576283709028758 0.0008540603757580811</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4446\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4444\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4447\">8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4447\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4445\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4443\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4444\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4445\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4445\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4448\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4449\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4452\">2.273736754432321e-012 3.543284926734941 36.22070878192105 3.546444277802266 3.557484813533392 0.0004720416349357492 0.003159365109013379 3.54495616426766 0.0002656264900053884 3.543284912694162 3.555813576003402 36.22091519706609 3.543284912694162 3.555813576003402 36.22091519706609 2.273736754432321e-012 3.543284926734941 36.22070878192105 3.546444277802266 3.557484813533392 0.0004720416349357492 0.003159365109013379 3.54495616426766 0.0002656264900053884 2.273736754432321e-012 3.543284926734941 36.22070878192105 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.01252866479012482 4.547473508864641e-013 36.22044315543056 0.003159365109013379 3.54495616426766 0.0002656264900053884 0.003159365109013379 3.54495616426766 0.0002656264900053884 2.273736754432321e-012 3.543284926734941 36.22070878192105 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.01252866479012482 4.547473508864641e-013 36.22044315543056 3.55897291858787 0.01419987123290412 0.000412874297325061 3.543284912694162 3.555813576003402 36.22091519706609 3.555813553481585 0.01252863370382329 36.22085602972842 3.546444277802266 3.557484813533392 0.0004720416349357492 3.546444277802266 3.557484813533392 0.0004720416349357492 3.55897291858787 0.01419987123290412 0.000412874297325061 3.543284912694162 3.555813576003402 36.22091519706609 3.555813553481585 0.01252863370382329 36.22085602972842 3.55897291858787 0.01419987123290412 0.000412874297325061 0.01252866479012482 4.547473508864641e-013 36.22044315543056 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 3.555813553481585 0.01252863370382329 36.22085602972842 3.555813553481585 0.01252863370382329 36.22085602972842 3.55897291858787 0.01419987123290412 0.000412874297325061 0.01252866479012482 4.547473508864641e-013 36.22044315543056 0.01568802990027507 0.001671237526352343 4.263256414560601e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4452\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4450\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4453\">-0.003535865927505019 0.9999937477562393 4.583201771277479e-005 -0.003535865927505019 0.9999937477562393 4.583201771277479e-005 -0.003535865927505019 0.9999937477562393 4.583201771277479e-005 -0.003535865927505019 0.9999937477562393 4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4453\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4451\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4449\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4450\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4451\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4451\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4454\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4455\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4458\">3.546444277802266 3.557484813533392 0.0004720416349357492 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.003159365109013379 3.54495616426766 0.0002656264900053884 3.55897291858787 0.01419987123290412 0.000412874297325061 3.55897291858787 0.01419987123290412 0.000412874297325061 3.546444277802266 3.557484813533392 0.0004720416349357492 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.003159365109013379 3.54495616426766 0.0002656264900053884</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4458\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4456\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4459\">8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4459\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4457\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4455\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4456\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4457\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4457\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4606\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4607\">\r\n\t\t\t\t\t<float_array count=\"1764\" id=\"ID4610\">387.0775873272617 -538.7722764119475 20.80343705190921 323.7635644324618 -627.8275049759719 66.52202429885244 398.7235120636908 -538.7722712742412 20.80355359017642 318.5457844417664 -635.1666417406201 70.28975434328004 317.822391788035 -652.5648955347623 79.22162104094639 313.9405104513352 -627.485940411871 66.34668575502224 309.2955564211388 -619.7390604942294 62.36964283239854 260.7486743384776 -538.7723243081156 20.80341327000417 249.5934442431505 -538.7723286255326 20.80341443298994 260.7486743384776 -538.7723243081156 20.80341327000417 317.822391788035 -652.5648955347623 79.22162104094639 249.5934442431505 -538.7723286255326 20.80341443298994 309.2955564211388 -619.7390604942294 62.36964283239854 313.9405104513352 -627.485940411871 66.34668575502224 318.5457844417664 -635.1666417406201 70.28975434328004 398.7235120636908 -538.7722712742412 20.80355359017642 323.7635644324618 -627.8275049759719 66.52202429885244 387.0775873272617 -538.7722764119475 20.80343705190921 260.7486743384776 -538.7723243081156 20.80341327000417 309.2955564211388 -619.7390604942294 62.36964283239854 260.7486744141456 -511.764995415247 73.4288808743114 313.9405104513352 -627.485940411871 66.34668575502224 309.2955564211388 -619.7390604942294 62.36964283239854 260.7486744141456 -511.764995415247 73.4288808743114 313.9405104513352 -627.485940411871 66.34668575502224 260.7486743384776 -538.7723243081156 20.80341327000417 330.1887512579403 -538.7722954921698 20.80333409374748 320.341053300599 -538.772299968556 20.80335977293419 323.7635644324618 -627.8275049759719 66.52202429885244 318.5457844417664 -635.1666417406201 70.28975434328004 313.9405104513352 -627.485940411871 66.34668575502224 320.341053300599 -538.772299968556 20.80335977293419 318.5457844417664 -635.1666417406201 70.28975434328004 313.9405104513352 -627.485940411871 66.34668575502224 323.7635644324618 -627.8275049759719 66.52202429885244 330.1887512579403 -538.7722954921698 20.80333409374748 330.1887512579403 -538.7722954921698 20.80333409374748 320.341053300599 -538.772299968556 20.80335977293419 323.7635644324618 -627.8275049759719 66.52202429885244 318.5457844417664 -635.1666417406201 70.28975434328004 313.9405104513352 -627.485940411871 66.34668575502224 320.341053300599 -538.772299968556 20.80335977293419 318.5457844417664 -635.1666417406201 70.28975434328004 313.9405104513352 -627.485940411871 66.34668575502224 323.7635644324618 -627.8275049759719 66.52202429885244 330.1887512579403 -538.7722954921698 20.80333409374748 696.253935632546 -4.493926377879234 -8.75670327676653 569.988182412478 -182.1063659826041 82.39379785654819 696.2539404712943 -31.99856885020529 -62.35121044732944 568.8242272188625 -184.203906100341 82.33723834521038 568.8245648679856 -211.2484914190478 29.63964229624162 387.0775938148433 -511.7258238022035 73.50514830904672 387.0775873272617 -538.7722764119475 20.80343705190921 323.7635644324618 -627.8275049759719 66.52202429885244 387.0775938148433 -511.7258238022035 73.50514830904672 387.0775873272617 -538.7722764119475 20.80343705190921 323.7635644324618 -627.8275049759719 66.52202429885244 568.8245648679856 -211.2484914190478 29.63964229624162 568.8242272188625 -184.203906100341 82.33723834521038 696.2539404712943 -31.99856885020529 -62.35121044732944 569.988182412478 -182.1063659826041 82.39379785654819 696.253935632546 -4.493926377879234 -8.75670327676653 580.4704200643459 -211.2486101849385 29.63970305581222 568.8245648679856 -211.2484914190478 29.63964229624162 398.7235120636908 -538.7722712742412 20.80355359017642 387.0775873272617 -538.7722764119475 20.80343705190921 568.8245648679856 -211.2484914190478 29.63964229624162 398.7235120636908 -538.7722712742412 20.80355359017642 387.0775873272617 -538.7722764119475 20.80343705190921 580.4704200643459 -211.2486101849385 29.63970305581222 641.2062855748541 -91.11898198297649 53.39994031271249 641.2062907608975 -125.8087797920334 -14.19528021335918 580.4708005791031 -176.5524009719073 97.24427340003956 580.4707710069451 -179.2488079375381 91.99027880389122 580.4704200643459 -211.2486101849385 29.63970305581222 398.7235120636908 -538.7722712742412 20.80355359017642 317.822391788035 -652.5648955347623 79.22162104094639 398.7235120636908 -538.7722712742412 20.80355359017642 580.4707710069451 -179.2488079375381 91.99027880389122 317.822391788035 -652.5648955347623 79.22162104094639 580.4704200643459 -211.2486101849385 29.63970305581222 641.2062907608975 -125.8087797920334 -14.19528021335918 580.4708005791031 -176.5524009719073 97.24427340003956 641.2062855748541 -91.11898198297649 53.39994031271249 52.67083703040441 -103.7586824034847 59.8866228928955 96.31467221529692 -176.5524004000317 97.24427451437236 52.70170125553341 -105.1075528387402 57.38499738967823 52.70170126670109 -138.5050884100278 -7.692186519987217 96.31467220002116 -179.2487574739117 91.9902543126384 96.31467201874284 -211.2473256554342 29.63904523858446 249.5934442431505 -538.7723286255326 20.80341443298994 317.822391788035 -652.5648955347623 79.22162104094639 96.31467220002116 -179.2487574739117 91.9902543126384 249.5934442431505 -538.7723286255326 20.80341443298994 317.822391788035 -652.5648955347623 79.22162104094639 96.31467201874284 -211.2473256554342 29.63904523858446 52.70170126670109 -138.5050884100278 -7.692186519987217 96.31467221529692 -176.5524004000317 97.24427451437236 52.70170125553341 -105.1075528387402 57.38499738967823 52.67083703040441 -103.7586824034847 59.8866228928955 260.7486743384776 -538.7723243081156 20.80341327000417 107.4699041249164 -211.2473256686137 29.63904521290283 249.5934442431505 -538.7723286255326 20.80341443298994 96.31467201874284 -211.2473256554342 29.63904523858446 107.4699041249164 -211.2473256686137 29.63904521290283 249.5934442431505 -538.7723286255326 20.80341443298994 96.31467201874284 -211.2473256554342 29.63904523858446 260.7486743384776 -538.7723243081156 20.80341327000417 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 106.4092480023691 -181.9753461559756 82.32213203209028 107.4699041249164 -211.2473256686137 29.63904521290283 260.7486744141456 -511.764995415247 73.4288808743114 260.7486743384776 -538.7723243081156 20.80341327000417 107.4699041249164 -211.2473256686137 29.63904521290283 260.7486744141456 -511.764995415247 73.4288808743114 260.7486743384776 -538.7723243081156 20.80341327000417 106.4092480023691 -181.9753461559756 82.32213203209028 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 260.7486744141456 -511.764995415247 73.4288808743114 313.9405104513352 -627.485940411871 66.34668575502224 323.1998239408781 -423.6431948015674 75.87827901177423 323.1998239408781 -423.6431948015674 75.87827901177423 313.9405104513352 -627.485940411871 66.34668575502224 260.7486744141456 -511.764995415247 73.4288808743114 333.0339632201601 -451.1024177169458 23.16831221913458 327.8042582387495 -460.5267989843736 22.91406182609171 330.1887512579403 -538.7722954921698 20.80333409374748 323.1997195353589 -450.6878532429365 23.17949381139329 320.341053300599 -538.772299968556 20.80335977293419 323.1997195353589 -450.6878532429365 23.17949381139329 330.1887512579403 -538.7722954921698 20.80333409374748 320.341053300599 -538.772299968556 20.80335977293419 327.8042582387495 -460.5267989843736 22.91406182609171 333.0339632201601 -451.1024177169458 23.16831221913458 333.0339632201601 -451.1024177169458 23.16831221913458 327.8042582387495 -460.5267989843736 22.91406182609171 330.1887512579403 -538.7722954921698 20.80333409374748 323.1997195353589 -450.6878532429365 23.17949381139329 320.341053300599 -538.772299968556 20.80335977293419 323.1997195353589 -450.6878532429365 23.17949381139329 330.1887512579403 -538.7722954921698 20.80333409374748 320.341053300599 -538.772299968556 20.80335977293419 327.8042582387495 -460.5267989843736 22.91406182609171 333.0339632201601 -451.1024177169458 23.16831221913458 330.1887512579403 -538.7722954921698 20.80333409374748 323.7635644324618 -627.8275049759719 66.52202429885244 333.0340638771467 -424.0562226934228 75.87008734787105 333.0340638771467 -424.0562226934228 75.87008734787105 323.7635644324618 -627.8275049759719 66.52202429885244 330.1887512579403 -538.7722954921698 20.80333409374748 313.9405104513352 -627.485940411871 66.34668575502224 320.341053300599 -538.772299968556 20.80335977293419 323.1998239408781 -423.6431948015674 75.87827901177423 323.1998239408781 -423.6431948015674 75.87827901177423 320.341053300599 -538.772299968556 20.80335977293419 313.9405104513352 -627.485940411871 66.34668575502224 333.0340638771467 -424.0562226934228 75.87008734787105 323.7635644324618 -627.8275049759719 66.52202429885244 387.0775938148433 -511.7258238022035 73.50514830904672 387.0775938148433 -511.7258238022035 73.50514830904672 323.7635644324618 -627.8275049759719 66.52202429885244 333.0340638771467 -424.0562226934228 75.87008734787105 569.988182412478 -182.1063659826041 82.39379785654819 467.2910992993818 -182.1147143275845 82.39365457532801 568.8242272188625 -184.203906100341 82.33723834521038 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 568.8242272188625 -184.203906100341 82.33723834521038 467.2910992993818 -182.1147143275845 82.39365457532801 569.988182412478 -182.1063659826041 82.39379785654819 569.988182412478 -182.1063659826041 82.39379785654819 467.2910992993818 -182.1147143275845 82.39365457532801 568.8242272188625 -184.203906100341 82.33723834521038 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 568.8242272188625 -184.203906100341 82.33723834521038 467.2910992993818 -182.1147143275845 82.39365457532801 569.988182412478 -182.1063659826041 82.39379785654819 569.988182412478 -182.1063659826041 82.39379785654819 467.2910992993818 -182.1147143275845 82.39365457532801 568.8242272188625 -184.203906100341 82.33723834521038 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 466.1324505697901 -184.202773038542 82.33735865244285 387.0775938148433 -511.7258238022035 73.50514830904672 333.0340638771467 -424.0562226934228 75.87008734787105 568.8242272188625 -184.203906100341 82.33723834521038 467.2910992993818 -182.1147143275845 82.39365457532801 569.988182412478 -182.1063659826041 82.39379785654819 581.3486829392864 -161.6338387549803 82.94587201564139 568.8245649570656 -179.2517207561726 91.98734866309451 569.988182412478 -182.1063659826041 82.39379785654819 568.8242272188625 -184.203906100341 82.33723834521038 568.8245649570656 -179.2517207561726 91.98734866309451 569.988182412478 -182.1063659826041 82.39379785654819 568.8242272188625 -184.203906100341 82.33723834521038 581.3486829392864 -161.6338387549803 82.94587201564139 581.3486829392864 -161.6338387549803 82.94587201564139 568.8245649570656 -179.2517207561726 91.98734866309451 569.988182412478 -182.1063659826041 82.39379785654819 568.8242272188625 -184.203906100341 82.33723834521038 568.8245649570656 -179.2517207561726 91.98734866309451 569.988182412478 -182.1063659826041 82.39379785654819 568.8242272188625 -184.203906100341 82.33723834521038 581.3486829392864 -161.6338387549803 82.94587201564139 696.253940560367 -0.001798187334770773 -0.003504080482457539 581.3486829392864 -161.6338387549803 82.94587201564139 696.253935632546 -4.493926377879234 -8.75670327676653 569.988182412478 -182.1063659826041 82.39379785654819 581.3486829392864 -161.6338387549803 82.94587201564139 696.253935632546 -4.493926377879234 -8.75670327676653 569.988182412478 -182.1063659826041 82.39379785654819 696.253940560367 -0.001798187334770773 -0.003504080482457539 696.253935632546 -4.493926377879234 -8.75670327676653 593.5615993942688 -4.495726586821547 -8.760204296521579 569.988182412478 -182.1063659826041 82.39379785654819 467.2910992993818 -182.1147143275845 82.39365457532801 593.5615993942688 -4.495726586821547 -8.760204296521579 569.988182412478 -182.1063659826041 82.39379785654819 467.2910992993818 -182.1147143275845 82.39365457532801 696.253935632546 -4.493926377879234 -8.75670327676653 568.8245648679856 -211.2484914190478 29.63964229624162 580.4704200643459 -211.2486101849385 29.63970305581222 696.2539404712943 -31.99856885020529 -62.35121044732944 696.2539404712943 -31.99856885020529 -62.35121044732944 580.4704200643459 -211.2486101849385 29.63970305581222 568.8245648679856 -211.2484914190478 29.63964229624162 593.5615786850221 2.696314277412967 5.254040432273541 472.3577143815135 -167.7957005718999 92.7503450678355 593.071220582139 2.696301618324583 5.254046672008371 581.9156219266811 2.696310064816657 5.254042785400429 454.4865663768496 -176.5524008230862 97.24427369000046 707.8998802401202 2.696356327536364 5.254018677091949 641.2062855748541 -91.11898198297649 53.39994031271249 696.253923713751 2.696352051015765 5.254020905657967 580.4708005791031 -176.5524009719073 97.24427340003956 575.0500409650774 -167.7957006292781 92.75034495603541 580.4708005791031 -176.5524009719073 97.24427340003956 472.3577143815135 -167.7957005718999 92.7503450678355 454.4865663768496 -176.5524008230862 97.24427369000046 575.0500409650774 -167.7957006292781 92.75034495603541 696.253923713751 2.696352051015765 5.254020905657967 641.2062855748541 -91.11898198297649 53.39994031271249 707.8998802401202 2.696356327536364 5.254018677091949 581.9156219266811 2.696310064816657 5.254042785400429 593.071220582139 2.696301618324583 5.254046672008371 593.5615786850221 2.696314277412967 5.254040432273541 580.4708005791031 -176.5524009719073 97.24427340003956 580.4707710069451 -179.2488079375381 91.99027880389122 454.4865663768496 -176.5524008230862 97.24427369000046 454.4865663615751 -179.2487578969744 91.99025348826365 580.4707710069451 -179.2488079375381 91.99027880389122 454.4865663768496 -176.5524008230862 97.24427369000046 454.4865663615751 -179.2487578969744 91.99025348826365 580.4708005791031 -176.5524009719073 97.24427340003956 454.4865663615751 -179.2487578969744 91.99025348826365 580.4707710069451 -179.2488079375381 91.99027880389122 328.5277839541411 -406.2378533955485 85.86675632129641 317.822391788035 -652.5648955347623 79.22162104094639 222.2988942015497 -179.2487083323823 91.99022702461969 96.31467220002116 -179.2487574739117 91.9902543126384 317.822391788035 -652.5648955347623 79.22162104094639 222.2988942015497 -179.2487083323823 91.99022702461969 96.31467220002116 -179.2487574739117 91.9902543126384 328.5277839541411 -406.2378533955485 85.86675632129641 580.4707710069451 -179.2488079375381 91.99027880389122 454.4865663615751 -179.2487578969744 91.99025348826365 580.4704200643459 -211.2486101849385 29.63970305581222 641.2062907608975 -125.8087797920334 -14.19528021335918 696.2539404712943 -31.99856885020529 -62.35121044732944 696.2539404712943 -31.99856885020529 -62.35121044732944 641.2062907608975 -125.8087797920334 -14.19528021335918 580.4704200643459 -211.2486101849385 29.63970305581222 707.8998802401202 2.696356327536364 5.254018677091949 707.8998800435825 -31.99856892789057 -62.35121059869471 641.2062855748541 -91.11898198297649 53.39994031271249 641.2062907608975 -125.8087797920334 -14.19528021335918 707.8998800435825 -31.99856892789057 -62.35121059869471 641.2062855748541 -91.11898198297649 53.39994031271249 641.2062907608975 -125.8087797920334 -14.19528021335918 707.8998802401202 2.696356327536364 5.254018677091949 -11.15523206876696 2.696357176866741 5.254020332064101 52.67083703040441 -103.7586824034847 59.8866228928955 -11.15523226531047 -31.99856807853882 -62.35120894372881 52.70170125553341 -105.1075528387402 57.38499738967823 52.70170126670109 -138.5050884100278 -7.692186519987217 52.70170125553341 -105.1075528387402 57.38499738967823 -11.15523226531047 -31.99856807853882 -62.35120894372881 52.70170126670109 -138.5050884100278 -7.692186519987217 52.67083703040441 -103.7586824034847 59.8866228928955 -11.15523206876696 2.696357176866741 5.254020332064101 96.31467201874284 -211.2473256554342 29.63904523858446 107.4699041249164 -211.2473256686137 29.63904521290283 52.70170126670109 -138.5050884100278 -7.692186519987217 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 -11.15523226531047 -31.99856807853882 -62.35120894372881 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 52.70170126670109 -138.5050884100278 -7.692186519987217 -11.15523226531047 -31.99856807853882 -62.35120894372881 107.4699041249164 -211.2473256686137 29.63904521290283 96.31467201874284 -211.2473256554342 29.63904523858446 96.31467221529692 -176.5524004000317 97.24427451437236 222.2989241837956 -176.5524005488381 97.24427422440317 96.31467220002116 -179.2487574739117 91.9902543126384 222.2988942015497 -179.2487083323823 91.99022702461969 222.2989241837956 -176.5524005488381 97.24427422440317 96.31467220002116 -179.2487574739117 91.9902543126384 222.2988942015497 -179.2487083323823 91.99022702461969 96.31467221529692 -176.5524004000317 97.24427451437236 210.0791792078799 -181.9671806855453 82.32236656320913 103.6737878029878 -4.493928404096778 -8.756700363099526 106.4092480023691 -181.9753461559756 82.32213203209028 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 103.6737878029878 -4.493928404096778 -8.756700363099526 106.4092480023691 -181.9753461559756 82.32213203209028 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 210.0791792078799 -181.9671806855453 82.32236656320913 210.0791792078799 -181.9671806855453 82.32236656320913 106.4092480023691 -181.9753461559756 82.32213203209028 260.7486744141456 -511.764995415247 73.4288808743114 260.7486744141456 -511.764995415247 73.4288808743114 106.4092480023691 -181.9753461559756 82.32213203209028 210.0791792078799 -181.9671806855453 82.32236656320913 3.739717158168787e-008 2.696357102461434 5.25402018707382 -11.15523206876696 2.696357176866741 5.254020332064101 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 -6.849461442470783e-008 -0.0017975245781372 -0.003502553420503318 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 -11.15523226531047 -31.99856807853882 -62.35120894372881 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 103.6737877935582 2.696357102456091 5.254020187080641 114.8290198997379 2.696357028058856 5.25402004209468 103.6737876876634 -0.001797585816007086 -0.003502672725517186 103.6737878029878 -4.493928404096778 -8.756700363099526 103.6737875970175 -31.99856815294379 -62.35120908871107 114.8290197031945 -31.99856822734705 -62.35120923369038 103.6737875970175 -31.99856815294379 -62.35120908871107 114.8290198997379 2.696357028058856 5.25402004209468 114.8290197031945 -31.99856822734705 -62.35120923369038 103.6737878029878 -4.493928404096778 -8.756700363099526 103.6737876876634 -0.001797585816007086 -0.003502672725517186 103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 -6.849461442470783e-008 -0.0017975245781372 -0.003502553420503318 103.6737877935582 2.696357102456091 5.254020187080641 -11.15523226531047 -31.99856807853882 -62.35120894372881 -9.445584510103799e-006 -4.495730419048755 -8.760200612045537 -1.59123374032788e-007 -31.99856809171342 -62.35120896939895 -11.15523206876696 2.696357176866741 5.254020332064101 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 3.739717158168787e-008 2.696357102461434 5.25402018707382 210.0791792078799 -181.9671806855453 82.32236656320913 210.0791792078799 -181.9671806855453 82.32236656320913 333.0339632201601 -451.1024177169458 23.16831221913458 333.0339632201601 -451.1024177169458 23.16831221913458 323.1997195353589 -450.6878532429365 23.17949381139329 323.1997195353589 -450.6878532429365 23.17949381139329 327.8042582387495 -460.5267989843736 22.91406182609171 328.5276718931058 -438.2361623716212 23.51538233117458 323.1997195353589 -450.6878532429365 23.17949381139329 222.2989239872381 -211.2473258042464 29.63904494861629 211.1436918810509 -211.2473257298385 29.639045093601 222.2989239872381 -211.2473258042464 29.63904494861629 323.1997195353589 -450.6878532429365 23.17949381139329 211.1436918810509 -211.2473257298385 29.639045093601 328.5276718931058 -438.2361623716212 23.51538233117458 327.8042582387495 -460.5267989843736 22.91406182609171 327.8042582387495 -460.5267989843736 22.91406182609171 328.5276718931058 -438.2361623716212 23.51538233117458 323.1997195353589 -450.6878532429365 23.17949381139329 222.2989239872381 -211.2473258042464 29.63904494861629 211.1436918810509 -211.2473257298385 29.639045093601 222.2989239872381 -211.2473258042464 29.63904494861629 323.1997195353589 -450.6878532429365 23.17949381139329 211.1436918810509 -211.2473257298385 29.639045093601 328.5276718931058 -438.2361623716212 23.51538233117458 327.8042582387495 -460.5267989843736 22.91406182609171 466.1324352803119 -211.24744477728 29.63910530490989 454.4865661803078 -211.2473260784965 29.6390444142146 333.0339632201601 -451.1024177169458 23.16831221913458 328.5276718931058 -438.2361623716212 23.51538233117458 327.8042582387495 -460.5267989843736 22.91406182609171 328.5276718931058 -438.2361623716212 23.51538233117458 333.0339632201601 -451.1024177169458 23.16831221913458 327.8042582387495 -460.5267989843736 22.91406182609171 454.4865661803078 -211.2473260784965 29.6390444142146 466.1324352803119 -211.24744477728 29.63910530490989 466.1324352803119 -211.24744477728 29.63910530490989 454.4865661803078 -211.2473260784965 29.6390444142146 333.0339632201601 -451.1024177169458 23.16831221913458 328.5276718931058 -438.2361623716212 23.51538233117458 327.8042582387495 -460.5267989843736 22.91406182609171 328.5276718931058 -438.2361623716212 23.51538233117458 333.0339632201601 -451.1024177169458 23.16831221913458 327.8042582387495 -460.5267989843736 22.91406182609171 454.4865661803078 -211.2473260784965 29.6390444142146 466.1324352803119 -211.24744477728 29.63910530490989 593.5615993942688 -4.495726586821547 -8.760204296521579 593.5615993176791 -31.99856878950027 -62.35121032904982 467.2910992993818 -182.1147143275845 82.39365457532801 466.1324505697901 -184.202773038542 82.33735865244285 466.1324352803119 -211.24744477728 29.63910530490989 333.0340638771467 -424.0562226934228 75.87008734787105 333.0339632201601 -451.1024177169458 23.16831221913458 466.1324352803119 -211.24744477728 29.63910530490989 333.0340638771467 -424.0562226934228 75.87008734787105 333.0339632201601 -451.1024177169458 23.16831221913458 466.1324505697901 -184.202773038542 82.33735865244285 593.5615993176791 -31.99856878950027 -62.35121032904982 467.2910992993818 -182.1147143275845 82.39365457532801 593.5615993942688 -4.495726586821547 -8.760204296521579 696.253940560367 -0.001798187334770773 -0.003504080482457539 593.5615994067787 -0.001798126633275388 -0.003503962193235566 696.253935632546 -4.493926377879234 -8.75670327676653 593.5615993942688 -4.495726586821547 -8.760204296521579 593.5615994067787 -0.001798126633275388 -0.003503962193235566 696.253935632546 -4.493926377879234 -8.75670327676653 593.5615993942688 -4.495726586821547 -8.760204296521579 696.253940560367 -0.001798187334770773 -0.003504080482457539 472.3577143815135 -167.7957005718999 92.7503450678355 472.3577143742859 -170.4920576503184 87.49632486842529 575.0500409650774 -167.7957006292781 92.75034495603541 575.0500409578301 -170.4920577076928 87.49632475662418 472.3577143742859 -170.4920576503184 87.49632486842529 575.0500409650774 -167.7957006292781 92.75034495603541 575.0500409578301 -170.4920577076928 87.49632475662418 472.3577143815135 -167.7957005718999 92.7503450678355 599.787512273439 11.45318168226004 0.7600266984917425 599.7867699722629 8.756653305307623 -4.493906070938351 593.5615786850221 2.696314277412967 5.254040432273541 593.5615786777867 -4.280100529285846e-005 2.023286049279705e-005 472.3577143815135 -167.7957005718999 92.7503450678355 472.3577143742859 -170.4920576503184 87.49632486842529 593.5615786777867 -4.280100529285846e-005 2.023286049279705e-005 472.3577143815135 -167.7957005718999 92.7503450678355 472.3577143742859 -170.4920576503184 87.49632486842529 593.5615786850221 2.696314277412967 5.254040432273541 599.7867699722629 8.756653305307623 -4.493906070938351 599.787512273439 11.45318168226004 0.7600266984917425 581.9156219266811 2.696310064816657 5.254042785400429 454.4865663768496 -176.5524008230862 97.24427369000046 581.915645841289 -31.99856877907428 -62.35121030873324 454.4865663615751 -179.2487578969744 91.99025348826365 454.4865661803078 -211.2473260784965 29.6390444142146 328.5277839541411 -406.2378533955485 85.86675632129641 328.5276718931058 -438.2361623716212 23.51538233117458 328.5277839541411 -406.2378533955485 85.86675632129641 454.4865661803078 -211.2473260784965 29.6390444142146 328.5276718931058 -438.2361623716212 23.51538233117458 454.4865663615751 -179.2487578969744 91.99025348826365 581.915645841289 -31.99856877907428 -62.35121030873324 454.4865663768496 -176.5524008230862 97.24427369000046 581.9156219266811 2.696310064816657 5.254042785400429 696.2539237064889 -5.027398856327636e-006 7.06243781678495e-007 696.253923713751 2.696352051015765 5.254020905657967 581.3532280410595 -161.6256481193608 82.94609288767219 575.0500409650774 -167.7957006292781 92.75034495603541 575.0500409578301 -170.4920577076928 87.49632475662418 575.0500409650774 -167.7957006292781 92.75034495603541 581.3532280410595 -161.6256481193608 82.94609288767219 575.0500409578301 -170.4920577076928 87.49632475662418 696.253923713751 2.696352051015765 5.254020905657967 696.2539237064889 -5.027398856327636e-006 7.06243781678495e-007 696.2539404712943 -31.99856885020529 -62.35121044732944 641.2062907608975 -125.8087797920334 -14.19528021335918 707.8998800435825 -31.99856892789057 -62.35121059869471 707.8998800435825 -31.99856892789057 -62.35121059869471 641.2062907608975 -125.8087797920334 -14.19528021335918 696.2539404712943 -31.99856885020529 -62.35121044732944 222.2989239872381 -211.2473258042464 29.63904494861629 114.8290197031945 -31.99856822734705 -62.35120923369038 211.1436918810509 -211.2473257298385 29.639045093601 103.6737875970175 -31.99856815294379 -62.35120908871107 114.8290197031945 -31.99856822734705 -62.35120923369038 211.1436918810509 -211.2473257298385 29.639045093601 103.6737875970175 -31.99856815294379 -62.35120908871107 222.2989239872381 -211.2473258042464 29.63904494861629 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 96.82047581953384 -161.4864630320739 82.87466665075976 3.739717158168787e-008 2.696357102461434 5.25402018707382 102.219785212887 -167.7957406629434 92.75036820162609 102.2197851754842 -170.4920977653391 87.49634801451975 96.82047581953384 -161.4864630320739 82.87466665075976 102.219785212887 -167.7957406629434 92.75036820162609 102.2197851754842 -170.4920977653391 87.49634801451975 3.739717158168787e-008 2.696357102461434 5.25402018707382 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 200.4941644441135 -161.4863674638785 82.87461620763054 205.8935482714749 -170.4920572344026 87.49632573787972 103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 102.2197851754842 -170.4920977653391 87.49634801451975 96.82047581953384 -161.4864630320739 82.87466665075976 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 96.82047581953384 -161.4864630320739 82.87466665075976 103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 1.364242052659392e-012 6.264144758461043e-011 -2.705746737774462e-011 102.2197851754842 -170.4920977653391 87.49634801451975 205.8935482714749 -170.4920572344026 87.49632573787972 200.4941644441135 -161.4863674638785 82.87461620763054 323.1998239408781 -423.6431948015674 75.87827901177423 327.8043622705814 -433.4805357770634 75.61597449128556 323.1997195353589 -450.6878532429365 23.17949381139329 327.8042582387495 -460.5267989843736 22.91406182609171 327.8043622705814 -433.4805357770634 75.61597449128556 323.1997195353589 -450.6878532429365 23.17949381139329 327.8042582387495 -460.5267989843736 22.91406182609171 323.1998239408781 -423.6431948015674 75.87827901177423 593.5615993176791 -31.99856878950027 -62.35121032904982 581.915645841289 -31.99856877907428 -62.35121030873324 466.1324352803119 -211.24744477728 29.63910530490989 454.4865661803078 -211.2473260784965 29.6390444142146 581.915645841289 -31.99856877907428 -62.35121030873324 466.1324352803119 -211.24744477728 29.63910530490989 454.4865661803078 -211.2473260784965 29.6390444142146 593.5615993176791 -31.99856878950027 -62.35121032904982 333.0340638771467 -424.0562226934228 75.87008734787105 333.0339632201601 -451.1024177169458 23.16831221913458 327.8043622705814 -433.4805357770634 75.61597449128556 327.8042582387495 -460.5267989843736 22.91406182609171 333.0339632201601 -451.1024177169458 23.16831221913458 327.8043622705814 -433.4805357770634 75.61597449128556 327.8042582387495 -460.5267989843736 22.91406182609171 333.0340638771467 -424.0562226934228 75.87008734787105 593.5615994067787 -0.001798126633275388 -0.003503962193235566 593.5615993942688 -4.495726586821547 -8.760204296521579 478.6562784310811 -161.633880280967 82.94589347178999 467.2910992993818 -182.1147143275845 82.39365457532801 593.5615993942688 -4.495726586821547 -8.760204296521579 478.6562784310811 -161.633880280967 82.94589347178999 467.2910992993818 -182.1147143275845 82.39365457532801 593.5615994067787 -0.001798126633275388 -0.003503962193235566 593.5615994067787 -0.001798126633275388 -0.003503962193235566 593.5615993942688 -4.495726586821547 -8.760204296521579 478.6562784310811 -161.633880280967 82.94589347178999 467.2910992993818 -182.1147143275845 82.39365457532801 593.5615993942688 -4.495726586821547 -8.760204296521579 478.6562784310811 -161.633880280967 82.94589347178999 467.2910992993818 -182.1147143275845 82.39365457532801 593.5615994067787 -0.001798126633275388 -0.003503962193235566 478.6562784310811 -161.633880280967 82.94589347178999 467.2910992993818 -182.1147143275845 82.39365457532801 466.1324353694079 -179.250674114408 91.98681167176255 466.1324505697901 -184.202773038542 82.33735865244285 467.2910992993818 -182.1147143275845 82.39365457532801 466.1324353694079 -179.250674114408 91.98681167176255 466.1324505697901 -184.202773038542 82.33735865244285 478.6562784310811 -161.633880280967 82.94589347178999 696.253940560367 -0.001798187334770773 -0.003504080482457539 581.3486829392864 -161.6338387549803 82.94587201564139 593.5615994067787 -0.001798126633275388 -0.003503962193235566 568.8245649570656 -179.2517207561726 91.98734866309451 478.6562784310811 -161.633880280967 82.94589347178999 466.1324353694079 -179.250674114408 91.98681167176255 568.8245649570656 -179.2517207561726 91.98734866309451 478.6562784310811 -161.633880280967 82.94589347178999 466.1324353694079 -179.250674114408 91.98681167176255 593.5615994067787 -0.001798126633275388 -0.003503962193235566 581.3486829392864 -161.6338387549803 82.94587201564139 696.253940560367 -0.001798187334770773 -0.003504080482457539 696.2539237064889 -5.027398856327636e-006 7.06243781678495e-007 581.3532280410595 -161.6256481193608 82.94609288767219 593.5615786777867 -4.280100529285846e-005 2.023286049279705e-005 575.0500409578301 -170.4920577076928 87.49632475662418 472.3577143742859 -170.4920576503184 87.49632486842529 575.0500409578301 -170.4920577076928 87.49632475662418 593.5615786777867 -4.280100529285846e-005 2.023286049279705e-005 472.3577143742859 -170.4920576503184 87.49632486842529 581.3532280410595 -161.6256481193608 82.94609288767219 696.2539237064889 -5.027398856327636e-006 7.06243781678495e-007 102.219785212887 -167.7957406629434 92.75036820162609 102.2197851754842 -170.4920977653391 87.49634801451975 205.8935483088864 -167.7957001320078 92.75034592498662 205.8935482714749 -170.4920572344026 87.49632573787972 102.2197851754842 -170.4920977653391 87.49634801451975 205.8935483088864 -167.7957001320078 92.75034592498662 205.8935482714749 -170.4920572344026 87.49632573787972 102.219785212887 -167.7957406629434 92.75036820162609</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"588\" source=\"#ID4610\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4608\">\r\n\t\t\t\t\t<float_array count=\"1764\" id=\"ID4611\">7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 7.267376165921745e-007 -0.4567062737285868 -0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 -7.267376165921745e-007 0.4567062737285868 0.8896175467786261 0.8823262803307107 0.4187177670033717 -0.2148854732956197 0.8823262803307107 0.4187177670033717 -0.2148854732956197 0.8823262803307107 0.4187177670033717 -0.2148854732956197 0.8823262803307107 0.4187177670033717 -0.2148854732956197 -0.8823262803307107 -0.4187177670033717 0.2148854732956197 -0.8823262803307107 -0.4187177670033717 0.2148854732956197 -0.8823262803307107 -0.4187177670033717 0.2148854732956197 -0.8823262803307107 -0.4187177670033717 0.2148854732956197 -1.602460042832053e-006 -0.4567068079673438 -0.8896172725131365 -1.602460042832053e-006 -0.4567068079673438 -0.8896172725131365 -1.602460042832053e-006 -0.4567068079673438 -0.8896172725131365 -1.602460042832053e-006 -0.4567068079673438 -0.8896172725131365 -1.602460042832053e-006 -0.4567068079673438 -0.8896172725131365 1.602460042832053e-006 0.4567068079673438 0.8896172725131365 1.602460042832053e-006 0.4567068079673438 0.8896172725131365 1.602460042832053e-006 0.4567068079673438 0.8896172725131365 1.602460042832053e-006 0.4567068079673438 0.8896172725131365 1.602460042832053e-006 0.4567068079673438 0.8896172725131365 -1.602460042988111e-006 -0.4567068079673441 -0.8896172725131362 -1.602460042988111e-006 -0.4567068079673441 -0.8896172725131362 -1.602460042988111e-006 -0.4567068079673441 -0.8896172725131362 -1.602460042988111e-006 -0.4567068079673441 -0.8896172725131362 -1.602460042988111e-006 -0.4567068079673441 -0.8896172725131362 1.602460042988111e-006 0.4567068079673441 0.8896172725131362 1.602460042988111e-006 0.4567068079673441 0.8896172725131362 1.602460042988111e-006 0.4567068079673441 0.8896172725131362 1.602460042988111e-006 0.4567068079673441 0.8896172725131362 1.602460042988111e-006 0.4567068079673441 0.8896172725131362 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 -0.8451455475156399 0.4755653185406045 -0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 0.8451455475156399 -0.4755653185406045 0.2440627610182735 7.740814582785812e-006 0.02696463469692091 -0.9996363881010643 7.740814582785812e-006 0.02696463469692091 -0.9996363881010643 7.740814582785812e-006 0.02696463469692091 -0.9996363881010643 7.740814582785812e-006 0.02696463469692091 -0.9996363881010643 -7.740814582785812e-006 -0.02696463469692091 0.9996363881010643 -7.740814582785812e-006 -0.02696463469692091 0.9996363881010643 -7.740814582785812e-006 -0.02696463469692091 0.9996363881010643 -7.740814582785812e-006 -0.02696463469692091 0.9996363881010643 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 0.8451453450062724 -0.4755653171940744 0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8451453450062724 0.4755653171940744 -0.2440634648945403 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 -0.8823255742373317 -0.4187181672802165 0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 0.8823255742373317 0.4187181672802165 -0.2148875925600628 -5.846150160694026e-008 0.02696712939957341 -0.9996363208347041 -5.846150160694026e-008 0.02696712939957341 -0.9996363208347041 -5.846150160694026e-008 0.02696712939957341 -0.9996363208347041 -5.846150160694026e-008 0.02696712939957341 -0.9996363208347041 5.846150160694026e-008 -0.02696712939957341 0.9996363208347041 5.846150160694026e-008 -0.02696712939957341 0.9996363208347041 5.846150160694026e-008 -0.02696712939957341 0.9996363208347041 5.846150160694026e-008 -0.02696712939957341 0.9996363208347041 0.8823240724580531 0.4187181737419095 -0.2148937461613908 0.8823240724580531 0.4187181737419095 -0.2148937461613908 0.8823240724580531 0.4187181737419095 -0.2148937461613908 0.8823240724580531 0.4187181737419095 -0.2148937461613908 0.8823240724580531 0.4187181737419095 -0.2148937461613908 0.8823240724580531 0.4187181737419095 -0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.8823240724580531 -0.4187181737419095 0.2148937461613908 -0.02062748816561698 0.04238322267560062 -0.9988884668308108 -0.02854709925913636 0.04798331961131298 -0.9984401154615973 -0.005379526776498625 0.03159374335062422 -0.9994863161008039 0.005379526776498625 -0.03159374335062422 0.9994863161008039 0.02854709925913636 -0.04798331961131298 0.9984401154615973 0.02062748816561698 -0.04238322267560062 0.9988884668308108 -1.228910442360982e-006 0.02696596068895449 -0.9996363523615034 -1.228910442360982e-006 0.02696596068895449 -0.9996363523615034 -1.228910442360982e-006 0.02696596068895449 -0.9996363523615034 -1.228910442360982e-006 0.02696596068895449 -0.9996363523615034 -1.228910442360982e-006 0.02696596068895449 -0.9996363523615034 1.228910442360982e-006 -0.02696596068895449 0.9996363523615034 1.228910442360982e-006 -0.02696596068895449 0.9996363523615034 1.228910442360982e-006 -0.02696596068895449 0.9996363523615034 1.228910442360982e-006 -0.02696596068895449 0.9996363523615034 1.228910442360982e-006 -0.02696596068895449 0.9996363523615034 -1.228910442138992e-006 0.02696596068895339 -0.9996363523615035 -1.228910442138992e-006 0.02696596068895339 -0.9996363523615035 -1.228910442138992e-006 0.02696596068895339 -0.9996363523615035 -1.228910442138992e-006 0.02696596068895339 -0.9996363523615035 -1.228910442138992e-006 0.02696596068895339 -0.9996363523615035 1.228910442138992e-006 -0.02696596068895339 0.9996363523615035 1.228910442138992e-006 -0.02696596068895339 0.9996363523615035 1.228910442138992e-006 -0.02696596068895339 0.9996363523615035 1.228910442138992e-006 -0.02696596068895339 0.9996363523615035 1.228910442138992e-006 -0.02696596068895339 0.9996363523615035 0.998064580608154 -0.04523745546920174 0.04266925776412963 0.9977352496153796 -0.04757305087734008 0.04755182967203384 0.9988486332624309 -0.03850810168836465 0.02861003205402374 -0.9988486332624309 0.03850810168836465 -0.02861003205402374 -0.9977352496153796 0.04757305087734008 -0.04755182967203384 -0.998064580608154 0.04523745546920174 -0.04266925776412963 -0.997734068832432 0.04754676769208848 -0.04760286517757485 -0.9980627406179626 0.04522280933338653 -0.04272778143266643 -0.9988510601353812 0.03847169152399514 -0.02857426495480948 0.9988510601353812 -0.03847169152399514 0.02857426495480948 0.9980627406179626 -0.04522280933338653 0.04272778143266643 0.997734068832432 -0.04754676769208848 0.04760286517757485 0.02851203350932213 0.04451398529185571 -0.9986018070575478 0.02851203350932213 0.04451398529185571 -0.9986018070575478 0.02851203350932213 0.04451398529185571 -0.9986018070575478 -0.02851203350932213 -0.04451398529185571 0.9986018070575478 -0.02851203350932213 -0.04451398529185571 0.9986018070575478 -0.02851203350932213 -0.04451398529185571 0.9986018070575478 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 -3.466424211166689e-006 0.0269574833556154 -0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 3.466424211166689e-006 -0.0269574833556154 0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 -3.466424211111151e-006 0.02695748335561547 -0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 3.466424211111151e-006 -0.02695748335561547 0.9996365810028742 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 -3.466424211083369e-006 0.02695748335561585 -0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 3.466424211083369e-006 -0.02695748335561585 0.9996365810028741 -0.8451555601070796 0.4755693699091286 -0.2440201910177167 -0.8451555601070796 0.4755693699091286 -0.2440201910177167 -0.8451555601070796 0.4755693699091286 -0.2440201910177167 -0.8451555601070796 0.4755693699091286 -0.2440201910177167 0.8451555601070796 -0.4755693699091286 0.2440201910177167 0.8451555601070796 -0.4755693699091286 0.2440201910177167 0.8451555601070796 -0.4755693699091286 0.2440201910177167 0.8451555601070796 -0.4755693699091286 0.2440201910177167 -0.8451555601070793 0.475569369909129 -0.2440201910177169 -0.8451555601070793 0.475569369909129 -0.2440201910177169 -0.8451555601070793 0.475569369909129 -0.2440201910177169 -0.8451555601070793 0.475569369909129 -0.2440201910177169 0.8451555601070793 -0.475569369909129 0.2440201910177169 0.8451555601070793 -0.475569369909129 0.2440201910177169 0.8451555601070793 -0.475569369909129 0.2440201910177169 0.8451555601070793 -0.475569369909129 0.2440201910177169 -0.8451450769219164 0.4755661729280294 -0.2440627257924397 -0.8451450769219164 0.4755661729280294 -0.2440627257924397 -0.8451450769219164 0.4755661729280294 -0.2440627257924397 -0.8451450769219164 0.4755661729280294 -0.2440627257924397 0.8451450769219164 -0.4755661729280294 0.2440627257924397 0.8451450769219164 -0.4755661729280294 0.2440627257924397 0.8451450769219164 -0.4755661729280294 0.2440627257924397 0.8451450769219164 -0.4755661729280294 0.2440627257924397 3.834716350325261e-005 -0.4566047157675158 -0.8896696758170199 3.834716350325261e-005 -0.4566047157675158 -0.8896696758170199 3.834716350325261e-005 -0.4566047157675158 -0.8896696758170199 3.834716350325261e-005 -0.4566047157675158 -0.8896696758170199 -3.834716350325261e-005 0.4566047157675158 0.8896696758170199 -3.834716350325261e-005 0.4566047157675158 0.8896696758170199 -3.834716350325261e-005 0.4566047157675158 0.8896696758170199 -3.834716350325261e-005 0.4566047157675158 0.8896696758170199 -1.458714656101553e-008 -0.4565831244485197 -0.889680757614116 -1.458714656101553e-008 -0.4565831244485197 -0.889680757614116 -1.458714656101553e-008 -0.4565831244485197 -0.889680757614116 1.458714656101553e-008 0.4565831244485197 0.889680757614116 1.458714656101553e-008 0.4565831244485197 0.889680757614116 1.458714656101553e-008 0.4565831244485197 0.889680757614116 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 4.32237444985676e-009 0.4565831301311641 0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -4.32237444985676e-009 -0.4565831301311641 -0.8896807546977896 -2.225628307450948e-007 -0.8896785862911967 0.456587355382131 -2.225628307450948e-007 -0.8896785862911967 0.456587355382131 -2.225628307450948e-007 -0.8896785862911967 0.456587355382131 -2.225628307450948e-007 -0.8896785862911967 0.456587355382131 2.225628307450948e-007 0.8896785862911967 -0.456587355382131 2.225628307450948e-007 0.8896785862911967 -0.456587355382131 2.225628307450948e-007 0.8896785862911967 -0.456587355382131 2.225628307450948e-007 0.8896785862911967 -0.456587355382131 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 -6.577727135435509e-008 -0.02696716170529067 0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 6.577727135435509e-008 0.02696716170529067 -0.9996363199631937 0.002025726823972654 -0.4576175923418636 -0.8891468020580575 0.002025726823972654 -0.4576175923418636 -0.8891468020580575 0.002025726823972654 -0.4576175923418636 -0.8891468020580575 -0.002025726823972654 0.4576175923418636 0.8891468020580575 -0.002025726823972654 0.4576175923418636 0.8891468020580575 -0.002025726823972654 0.4576175923418636 0.8891468020580575 0.8451462229528719 -0.4755656391327831 0.2440597973954785 0.8451462229528719 -0.4755656391327831 0.2440597973954785 0.8451462229528719 -0.4755656391327831 0.2440597973954785 0.8451462229528719 -0.4755656391327831 0.2440597973954785 -0.8451462229528719 0.4755656391327831 -0.2440597973954785 -0.8451462229528719 0.4755656391327831 -0.2440597973954785 -0.8451462229528719 0.4755656391327831 -0.2440597973954785 -0.8451462229528719 0.4755656391327831 -0.2440597973954785 -0.8823226426957243 -0.4187238315719193 0.2148885922057384 -0.8823226426957243 -0.4187238315719193 0.2148885922057384 -0.8823226426957243 -0.4187238315719193 0.2148885922057384 -0.8823226426957243 -0.4187238315719193 0.2148885922057384 -0.8823226426957243 -0.4187238315719193 0.2148885922057384 0.8823226426957243 0.4187238315719193 -0.2148885922057384 0.8823226426957243 0.4187238315719193 -0.2148885922057384 0.8823226426957243 0.4187238315719193 -0.2148885922057384 0.8823226426957243 0.4187238315719193 -0.2148885922057384 0.8823226426957243 0.4187238315719193 -0.2148885922057384 2.924595475192183e-011 -0.4565831299108227 -0.8896807548108685 2.924595475192183e-011 -0.4565831299108227 -0.8896807548108685 2.924595475192183e-011 -0.4565831299108227 -0.8896807548108685 2.924595475192183e-011 -0.4565831299108227 -0.8896807548108685 2.924595475192183e-011 -0.4565831299108227 -0.8896807548108685 -2.924595475192183e-011 0.4565831299108227 0.8896807548108685 -2.924595475192183e-011 0.4565831299108227 0.8896807548108685 -2.924595475192183e-011 0.4565831299108227 0.8896807548108685 -2.924595475192183e-011 0.4565831299108227 0.8896807548108685 -2.924595475192183e-011 0.4565831299108227 0.8896807548108685 2.229624814127138e-007 -0.8896829259034452 0.4565788993764772 2.229624814127138e-007 -0.8896829259034452 0.4565788993764772 2.229624814127138e-007 -0.8896829259034452 0.4565788993764772 2.229624814127138e-007 -0.8896829259034452 0.4565788993764772 -2.229624814127138e-007 0.8896829259034452 -0.4565788993764772 -2.229624814127138e-007 0.8896829259034452 -0.4565788993764772 -2.229624814127138e-007 0.8896829259034452 -0.4565788993764772 -2.229624814127138e-007 0.8896829259034452 -0.4565788993764772 3.797367101332103e-005 -0.4565651084038339 -0.8896900023863346 3.797367101332103e-005 -0.4565651084038339 -0.8896900023863346 3.797367101332103e-005 -0.4565651084038339 -0.8896900023863346 3.797367101332103e-005 -0.4565651084038339 -0.8896900023863346 -3.797367101332103e-005 0.4565651084038339 0.8896900023863346 -3.797367101332103e-005 0.4565651084038339 0.8896900023863346 -3.797367101332103e-005 0.4565651084038339 0.8896900023863346 -3.797367101332103e-005 0.4565651084038339 0.8896900023863346 1.382440603968002e-007 0.02695670020484959 -0.9996366021280169 1.382440603968002e-007 0.02695670020484959 -0.9996366021280169 1.382440603968002e-007 0.02695670020484959 -0.9996366021280169 -1.382440603968002e-007 -0.02695670020484959 0.9996366021280169 -1.382440603968002e-007 -0.02695670020484959 0.9996366021280169 -1.382440603968002e-007 -0.02695670020484959 0.9996366021280169 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 -6.140724580946076e-009 0.8896807558190207 -0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 6.140724580946076e-009 -0.8896807558190207 0.4565831279463755 0.0009611344381885759 0.02710422575894658 -0.9996321509268296 -0.0009611344381885759 -0.02710422575894658 0.9996321509268296 0.9993166085946316 -0.03288675055476787 0.0168753496222271 -0.9993166085946316 0.03288675055476787 -0.0168753496222271 -0.9993166101335561 0.03288674300588531 -0.01687527320203464 0.9993166101335561 -0.03288674300588531 0.01687527320203464 -1.541586955506427e-006 0.02696720330280328 -0.9996363188398313 -1.541586955506427e-006 0.02696720330280328 -0.9996363188398313 -1.541586955506427e-006 0.02696720330280328 -0.9996363188398313 -1.541586955506427e-006 0.02696720330280328 -0.9996363188398313 -1.541586955506427e-006 0.02696720330280328 -0.9996363188398313 1.541586955506427e-006 -0.02696720330280328 0.9996363188398313 1.541586955506427e-006 -0.02696720330280328 0.9996363188398313 1.541586955506427e-006 -0.02696720330280328 0.9996363188398313 1.541586955506427e-006 -0.02696720330280328 0.9996363188398313 1.541586955506427e-006 -0.02696720330280328 0.9996363188398313 -1.541586955908978e-006 0.02696720330280194 -0.9996363188398313 -1.541586955908978e-006 0.02696720330280194 -0.9996363188398313 -1.541586955908978e-006 0.02696720330280194 -0.9996363188398313 -1.541586955908978e-006 0.02696720330280194 -0.9996363188398313 -1.541586955908978e-006 0.02696720330280194 -0.9996363188398313 1.541586955908978e-006 -0.02696720330280194 0.9996363188398313 1.541586955908978e-006 -0.02696720330280194 0.9996363188398313 1.541586955908978e-006 -0.02696720330280194 0.9996363188398313 1.541586955908978e-006 -0.02696720330280194 0.9996363188398313 1.541586955908978e-006 -0.02696720330280194 0.9996363188398313 4.036709492554481e-006 0.02696583934270953 -0.9996363556275094 4.036709492554481e-006 0.02696583934270953 -0.9996363556275094 4.036709492554481e-006 0.02696583934270953 -0.9996363556275094 4.036709492554481e-006 0.02696583934270953 -0.9996363556275094 4.036709492554481e-006 0.02696583934270953 -0.9996363556275094 -4.036709492554481e-006 -0.02696583934270953 0.9996363556275094 -4.036709492554481e-006 -0.02696583934270953 0.9996363556275094 -4.036709492554481e-006 -0.02696583934270953 0.9996363556275094 -4.036709492554481e-006 -0.02696583934270953 0.9996363556275094 -4.036709492554481e-006 -0.02696583934270953 0.9996363556275094 4.036709492290858e-006 0.0269658393427103 -0.9996363556275093 4.036709492290858e-006 0.0269658393427103 -0.9996363556275093 4.036709492290858e-006 0.0269658393427103 -0.9996363556275093 4.036709492290858e-006 0.0269658393427103 -0.9996363556275093 4.036709492290858e-006 0.0269658393427103 -0.9996363556275093 -4.036709492290858e-006 -0.0269658393427103 0.9996363556275093 -4.036709492290858e-006 -0.0269658393427103 0.9996363556275093 -4.036709492290858e-006 -0.0269658393427103 0.9996363556275093 -4.036709492290858e-006 -0.0269658393427103 0.9996363556275093 -4.036709492290858e-006 -0.0269658393427103 0.9996363556275093 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 0.8451453924575068 -0.4755660484958328 0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -0.8451453924575068 0.4755660484958328 -0.2440618756092525 -1.51194173119139e-008 0.889680825978471 -0.4565829912362762 -1.51194173119139e-008 0.889680825978471 -0.4565829912362762 -1.51194173119139e-008 0.889680825978471 -0.4565829912362762 -1.51194173119139e-008 0.889680825978471 -0.4565829912362762 1.51194173119139e-008 -0.889680825978471 0.4565829912362762 1.51194173119139e-008 -0.889680825978471 0.4565829912362762 1.51194173119139e-008 -0.889680825978471 0.4565829912362762 1.51194173119139e-008 -0.889680825978471 0.4565829912362762 8.83711130713131e-015 0.8896807537665422 -0.4565831319457578 8.83711130713131e-015 0.8896807537665422 -0.4565831319457578 8.83711130713131e-015 0.8896807537665422 -0.4565831319457578 8.83711130713131e-015 0.8896807537665422 -0.4565831319457578 -8.83711130713131e-015 -0.8896807537665422 0.4565831319457578 -8.83711130713131e-015 -0.8896807537665422 0.4565831319457578 -8.83711130713131e-015 -0.8896807537665422 0.4565831319457578 -8.83711130713131e-015 -0.8896807537665422 0.4565831319457578 0.8451446880601218 -0.4755813416232849 0.244034513427007 0.8451446880601218 -0.4755813416232849 0.244034513427007 0.8451446880601218 -0.4755813416232849 0.244034513427007 0.8451446880601218 -0.4755813416232849 0.244034513427007 0.8451446880601218 -0.4755813416232849 0.244034513427007 0.8451446880601218 -0.4755813416232849 0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451446880601218 0.4755813416232849 -0.244034513427007 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 -0.8451454571063368 0.475566152876079 -0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 0.8451454571063368 -0.475566152876079 0.2440614483509571 -0.8451450286996102 0.4755673448751584 -0.2440606091788006 -0.8451450286996102 0.4755673448751584 -0.2440606091788006 -0.8451450286996102 0.4755673448751584 -0.2440606091788006 -0.8451450286996102 0.4755673448751584 -0.2440606091788006 -0.8451450286996102 0.4755673448751584 -0.2440606091788006 0.8451450286996102 -0.4755673448751584 0.2440606091788006 0.8451450286996102 -0.4755673448751584 0.2440606091788006 0.8451450286996102 -0.4755673448751584 0.2440606091788006 0.8451450286996102 -0.4755673448751584 0.2440606091788006 0.8451450286996102 -0.4755673448751584 0.2440606091788006 -1.460896286826693e-008 -0.4566779928828167 -0.8896320648540731 -1.460896286826693e-008 -0.4566779928828167 -0.8896320648540731 -1.460896286826693e-008 -0.4566779928828167 -0.8896320648540731 1.460896286826693e-008 0.4566779928828167 0.8896320648540731 1.460896286826693e-008 0.4566779928828167 0.8896320648540731 1.460896286826693e-008 0.4566779928828167 0.8896320648540731 -1.460836859928882e-008 -0.4565831368835662 -0.8896807512324646 -1.460836859928882e-008 -0.4565831368835662 -0.8896807512324646 -1.460836859928882e-008 -0.4565831368835662 -0.8896807512324646 -1.460836859928882e-008 -0.4565831368835662 -0.8896807512324646 1.460836859928882e-008 0.4565831368835662 0.8896807512324646 1.460836859928882e-008 0.4565831368835662 0.8896807512324646 1.460836859928882e-008 0.4565831368835662 0.8896807512324646 1.460836859928882e-008 0.4565831368835662 0.8896807512324646 0.8823231211276741 0.4187247356974064 -0.2148848660065592 0.8823231211276741 0.4187247356974064 -0.2148848660065592 0.8823231211276741 0.4187247356974064 -0.2148848660065592 0.8823231211276741 0.4187247356974064 -0.2148848660065592 0.8823231211276741 0.4187247356974064 -0.2148848660065592 -0.8823231211276741 -0.4187247356974064 0.2148848660065592 -0.8823231211276741 -0.4187247356974064 0.2148848660065592 -0.8823231211276741 -0.4187247356974064 0.2148848660065592 -0.8823231211276741 -0.4187247356974064 0.2148848660065592 -0.8823231211276741 -0.4187247356974064 0.2148848660065592 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 8.220703190292191e-009 0.4565831368992207 0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -8.220703190292191e-009 -0.4565831368992207 -0.8896807512244309 -0.8823263388198543 -0.4187179199915488 0.2148849350296631 -0.8823263388198543 -0.4187179199915488 0.2148849350296631 -0.8823263388198543 -0.4187179199915488 0.2148849350296631 -0.8823263388198543 -0.4187179199915488 0.2148849350296631 0.8823263388198543 0.4187179199915488 -0.2148849350296631 0.8823263388198543 0.4187179199915488 -0.2148849350296631 0.8823263388198543 0.4187179199915488 -0.2148849350296631 0.8823263388198543 0.4187179199915488 -0.2148849350296631 -1.950104990073483e-009 -0.4565831315375497 -0.8896807539760341 -1.950104990073483e-009 -0.4565831315375497 -0.8896807539760341 -1.950104990073483e-009 -0.4565831315375497 -0.8896807539760341 -1.950104990073483e-009 -0.4565831315375497 -0.8896807539760341 1.950104990073483e-009 0.4565831315375497 0.8896807539760341 1.950104990073483e-009 0.4565831315375497 0.8896807539760341 1.950104990073483e-009 0.4565831315375497 0.8896807539760341 1.950104990073483e-009 0.4565831315375497 0.8896807539760341 0.8451469778797047 -0.4755663546382378 0.2440557889436348 0.8451469778797047 -0.4755663546382378 0.2440557889436348 0.8451469778797047 -0.4755663546382378 0.2440557889436348 0.8451469778797047 -0.4755663546382378 0.2440557889436348 -0.8451469778797047 0.4755663546382378 -0.2440557889436348 -0.8451469778797047 0.4755663546382378 -0.2440557889436348 -0.8451469778797047 0.4755663546382378 -0.2440557889436348 -0.8451469778797047 0.4755663546382378 -0.2440557889436348 0.8451449479257523 -0.4755671181494874 0.2440613306744202 0.8451449479257523 -0.4755671181494874 0.2440613306744202 0.8451449479257523 -0.4755671181494874 0.2440613306744202 0.8451449479257523 -0.4755671181494874 0.2440613306744202 -0.8451449479257523 0.4755671181494874 -0.2440613306744202 -0.8451449479257523 0.4755671181494874 -0.2440613306744202 -0.8451449479257523 0.4755671181494874 -0.2440613306744202 -0.8451449479257523 0.4755671181494874 -0.2440613306744202 0.8451449479257517 -0.4755671181494885 0.2440613306744209 0.8451449479257517 -0.4755671181494885 0.2440613306744209 0.8451449479257517 -0.4755671181494885 0.2440613306744209 0.8451449479257517 -0.4755671181494885 0.2440613306744209 -0.8451449479257517 0.4755671181494885 -0.2440613306744209 -0.8451449479257517 0.4755671181494885 -0.2440613306744209 -0.8451449479257517 0.4755671181494885 -0.2440613306744209 -0.8451449479257517 0.4755671181494885 -0.2440613306744209 0.8451459927375311 -0.475566092687703 0.2440597108198 0.8451459927375311 -0.475566092687703 0.2440597108198 0.8451459927375311 -0.475566092687703 0.2440597108198 0.8451459927375311 -0.475566092687703 0.2440597108198 -0.8451459927375311 0.475566092687703 -0.2440597108198 -0.8451459927375311 0.475566092687703 -0.2440597108198 -0.8451459927375311 0.475566092687703 -0.2440597108198 -0.8451459927375311 0.475566092687703 -0.2440597108198 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 1.266349698592205e-009 0.4565831319326393 0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 -1.266349698592205e-009 -0.4565831319326393 -0.8896807537732746 3.091211920564263e-009 0.4565831300971242 0.889680754715259 3.091211920564263e-009 0.4565831300971242 0.889680754715259 3.091211920564263e-009 0.4565831300971242 0.889680754715259 3.091211920564263e-009 0.4565831300971242 0.889680754715259 3.091211920564263e-009 0.4565831300971242 0.889680754715259 -3.091211920564263e-009 -0.4565831300971242 -0.889680754715259 -3.091211920564263e-009 -0.4565831300971242 -0.889680754715259 -3.091211920564263e-009 -0.4565831300971242 -0.889680754715259 -3.091211920564263e-009 -0.4565831300971242 -0.889680754715259 -3.091211920564263e-009 -0.4565831300971242 -0.889680754715259 -4.459250725082623e-007 0.8896807516830831 -0.4565831360052903 -4.459250725082623e-007 0.8896807516830831 -0.4565831360052903 -4.459250725082623e-007 0.8896807516830831 -0.4565831360052903 -4.459250725082623e-007 0.8896807516830831 -0.4565831360052903 4.459250725082623e-007 -0.8896807516830831 0.4565831360052903 4.459250725082623e-007 -0.8896807516830831 0.4565831360052903 4.459250725082623e-007 -0.8896807516830831 0.4565831360052903 4.459250725082623e-007 -0.8896807516830831 0.4565831360052903</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"588\" source=\"#ID4611\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4609\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4607\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4608\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"186\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4609\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 2 2 3 4 3 5 4 5 6 4 6 7 4 8 4 7 18 19 20 21 20 19 26 27 28 28 27 29 30 29 27 26 27 28 28 27 29 30 29 27 26 27 28 28 27 29 30 29 27 36 37 38 38 37 39 40 39 37 46 47 48 47 49 48 48 49 50 49 51 50 50 51 52 53 52 51 62 63 64 65 64 63 70 71 72 72 71 73 71 74 73 74 75 73 76 73 75 84 85 86 86 85 87 85 88 87 87 88 89 89 88 90 91 90 88 100 101 102 103 102 101 108 109 110 109 111 110 110 111 112 113 112 111 120 121 122 126 127 128 127 129 128 130 128 129 136 137 138 137 139 138 140 138 139 146 147 148 152 153 154 158 159 160 164 165 166 165 167 166 166 167 168 169 168 167 176 177 178 177 179 178 178 179 180 181 180 179 188 189 190 189 191 190 190 191 192 193 192 191 200 201 202 203 202 201 208 209 210 211 210 209 216 217 218 219 218 217 224 225 226 227 226 225 232 233 234 238 239 240 240 239 241 242 241 239 243 244 245 244 246 245 245 246 247 247 246 239 242 239 246 258 259 260 261 260 259 266 267 268 267 269 268 268 269 270 271 270 269 278 279 280 284 285 286 287 286 285 292 293 294 293 295 294 296 294 295 302 303 304 303 305 304 306 304 305 312 313 314 315 314 313 320 321 322 323 322 321 328 329 330 334 335 336 337 336 338 336 335 338 338 335 339 335 340 339 341 339 340 342 337 343 338 344 337 337 344 343 344 345 343 345 346 343 347 343 346 362 120 122 364 146 148 153 366 154 368 369 370 369 371 370 372 370 371 378 379 380 379 381 380 382 380 381 388 389 390 389 391 390 392 390 391 398 399 400 399 401 400 402 400 401 408 409 410 410 409 411 409 412 411 411 412 413 414 413 412 422 423 424 425 424 423 430 431 432 433 432 431 438 439 440 439 441 440 440 441 442 443 442 441 450 451 452 451 453 452 452 453 454 453 455 454 456 454 455 464 465 466 465 467 466 468 466 467 474 475 476 480 481 482 483 482 481 488 489 490 490 489 491 492 491 489 498 499 500 499 501 500 501 502 500 503 500 502 510 511 512 513 512 511 518 519 520 521 520 519 526 527 528 529 528 527 534 535 536 537 536 535 542 543 544 545 544 543 550 551 552 553 552 551 550 551 552 553 552 551 558 559 560 559 561 560 560 561 562 563 562 561 570 571 572 571 573 572 574 572 573 580 581 582 583 582 581</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"186\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4609\" />\r\n\t\t\t\t\t<p>9 10 11 10 9 12 10 12 13 10 13 14 10 14 15 15 14 16 15 16 17 22 23 24 23 22 25 31 32 33 32 31 34 34 31 35 31 32 33 32 31 34 34 31 35 31 32 33 32 31 34 34 31 35 41 42 43 42 41 44 44 41 45 54 55 56 55 54 57 57 54 58 57 58 59 59 58 60 59 60 61 66 67 68 67 66 69 77 78 79 78 77 80 78 80 81 78 81 82 82 81 83 92 93 94 93 92 95 95 92 96 96 92 97 96 97 98 98 97 99 104 105 106 105 104 107 114 115 116 115 114 117 117 114 118 117 118 119 123 124 125 131 132 133 132 131 134 132 134 135 141 142 143 142 141 144 142 144 145 149 150 151 155 156 157 161 162 163 170 171 172 171 170 173 173 170 174 173 174 175 182 183 184 183 182 185 185 182 186 185 186 187 194 195 196 195 194 197 197 194 198 197 198 199 204 205 206 205 204 207 212 213 214 213 212 215 220 221 222 221 220 223 228 229 230 229 228 231 235 236 237 248 249 250 249 248 251 251 248 252 252 248 253 252 253 254 249 255 250 255 249 256 256 249 257 262 263 264 263 262 265 272 273 274 273 272 275 275 272 276 275 276 277 281 282 283 288 289 290 289 288 291 297 298 299 298 297 300 298 300 301 307 308 309 308 307 310 308 310 311 316 317 318 317 316 319 324 325 326 325 324 327 331 332 333 348 349 350 349 348 351 349 351 352 349 352 353 353 352 354 349 353 355 356 357 358 357 356 359 357 359 354 354 359 360 354 360 353 360 359 361 123 125 363 149 151 365 155 367 156 373 374 375 374 373 376 374 376 377 383 384 385 384 383 386 384 386 387 393 394 395 394 393 396 394 396 397 403 404 405 404 403 406 404 406 407 415 416 417 416 415 418 418 415 419 418 419 420 420 419 421 426 427 428 427 426 429 434 435 436 435 434 437 444 445 446 445 444 447 447 444 448 447 448 449 457 458 459 458 457 460 458 460 461 461 460 462 461 462 463 469 470 471 470 469 472 470 472 473 477 478 479 484 485 486 485 484 487 493 494 495 494 493 496 496 493 497 504 505 506 505 504 507 505 507 508 505 508 509 514 515 516 515 514 517 522 523 524 523 522 525 530 531 532 531 530 533 538 539 540 539 538 541 546 547 548 547 546 549 554 555 556 555 554 557 554 555 556 555 554 557 564 565 566 565 564 567 567 564 568 567 568 569 575 576 577 576 575 578 576 578 579 584 585 586 585 584 587</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4612\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4613\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4616\">103.6737878029878 -4.493928404096778 -8.756700363099526 210.0791792078799 -181.9671806855453 82.32236656320913 103.6737875970175 -31.99856815294379 -62.35120908871107 211.1436918810509 -211.2473257298385 29.639045093601 323.1998239408781 -423.6431948015674 75.87827901177423 323.1997195353589 -450.6878532429365 23.17949381139329 323.1998239408781 -423.6431948015674 75.87827901177423 211.1436918810509 -211.2473257298385 29.639045093601 323.1997195353589 -450.6878532429365 23.17949381139329 210.0791792078799 -181.9671806855453 82.32236656320913 103.6737875970175 -31.99856815294379 -62.35120908871107 103.6737878029878 -4.493928404096778 -8.756700363099526</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4616\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4614\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4617\">-0.8823240576356526 -0.4187188087136177 0.2148925697803586 -0.8823240576356526 -0.4187188087136177 0.2148925697803586 -0.8823240576356526 -0.4187188087136177 0.2148925697803586 -0.8823240576356526 -0.4187188087136177 0.2148925697803586 -0.8823240576356526 -0.4187188087136177 0.2148925697803586 -0.8823240576356526 -0.4187188087136177 0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586 0.8823240576356526 0.4187188087136177 -0.2148925697803586</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4617\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4615\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4613\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4614\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4615\" />\r\n\t\t\t\t\t<p>0 1 2 2 1 3 1 4 3 5 3 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4615\" />\r\n\t\t\t\t\t<p>6 7 8 7 6 9 7 9 10 10 9 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4618\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4619\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID4622\">103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 103.6737877935582 2.696357102456091 5.254020187080641 200.4941644441135 -161.4863674638785 82.87461620763054 205.8935483088864 -167.7957001320078 92.75034592498662 205.8935482714749 -170.4920572344026 87.49632573787972 205.8935483088864 -167.7957001320078 92.75034592498662 200.4941644441135 -161.4863674638785 82.87461620763054 205.8935482714749 -170.4920572344026 87.49632573787972 103.6737877935582 2.696357102456091 5.254020187080641 103.6737877561586 6.548361852765083e-011 -2.751221472863108e-011 222.2989241837956 -176.5524005488381 97.24427422440317 205.8935483088864 -167.7957001320078 92.75034592498662 114.8290198997379 2.696357028058856 5.25402004209468 103.6737877935582 2.696357102456091 5.254020187080641 102.219785212887 -167.7957406629434 92.75036820162609 96.31467221529692 -176.5524004000317 97.24427451437236 52.67083703040441 -103.7586824034847 59.8866228928955 3.739717158168787e-008 2.696357102461434 5.25402018707382 -11.15523206876696 2.696357176866741 5.254020332064101 52.67083703040441 -103.7586824034847 59.8866228928955 3.739717158168787e-008 2.696357102461434 5.25402018707382 -11.15523206876696 2.696357176866741 5.254020332064101 102.219785212887 -167.7957406629434 92.75036820162609 96.31467221529692 -176.5524004000317 97.24427451437236 222.2989241837956 -176.5524005488381 97.24427422440317 205.8935483088864 -167.7957001320078 92.75034592498662 114.8290198997379 2.696357028058856 5.25402004209468 103.6737877935582 2.696357102456091 5.254020187080641 114.8290198997379 2.696357028058856 5.25402004209468 114.8290197031945 -31.99856822734705 -62.35120923369038 222.2989241837956 -176.5524005488381 97.24427422440317 222.2988942015497 -179.2487083323823 91.99022702461969 222.2989239872381 -211.2473258042464 29.63904494861629 328.5277839541411 -406.2378533955485 85.86675632129641 328.5276718931058 -438.2361623716212 23.51538233117458 222.2989239872381 -211.2473258042464 29.63904494861629 328.5277839541411 -406.2378533955485 85.86675632129641 328.5276718931058 -438.2361623716212 23.51538233117458 222.2988942015497 -179.2487083323823 91.99022702461969 114.8290197031945 -31.99856822734705 -62.35120923369038 222.2989241837956 -176.5524005488381 97.24427422440317 114.8290198997379 2.696357028058856 5.25402004209468</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID4622\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4620\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID4623\">-0.8823231420005827 -0.4187238683834106 0.2148864703424854 -0.8823231420005827 -0.4187238683834106 0.2148864703424854 -0.8823231420005827 -0.4187238683834106 0.2148864703424854 -0.8823231420005827 -0.4187238683834106 0.2148864703424854 -0.8823231420005827 -0.4187238683834106 0.2148864703424854 0.8823231420005827 0.4187238683834106 -0.2148864703424854 0.8823231420005827 0.4187238683834106 -0.2148864703424854 0.8823231420005827 0.4187238683834106 -0.2148864703424854 0.8823231420005827 0.4187238683834106 -0.2148864703424854 0.8823231420005827 0.4187238683834106 -0.2148864703424854 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 3.394608153614209e-009 0.4565831328985843 0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 -3.394608153614209e-009 -0.4565831328985843 -0.8896807532775529 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 0.8823241052417401 0.4187190979380725 -0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178 -0.8823241052417401 -0.4187190979380725 0.2148918107590178</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID4623\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4621\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4619\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4620\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4621\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 2 4 2 3 10 11 12 13 12 11 11 10 14 10 15 14 15 16 14 14 16 17 18 17 16 28 29 30 30 29 31 29 32 31 31 32 33 34 33 32</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4621\" />\r\n\t\t\t\t\t<p>5 6 7 6 5 8 6 8 9 19 20 21 20 19 22 22 19 23 22 23 24 22 24 25 25 26 27 26 25 24 35 36 37 36 35 38 38 35 39 38 39 40 40 39 41</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4624\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4625\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4628\">211.1436919717295 -179.2505551626975 91.98675150958252 107.4699042155643 -179.2505551014756 91.98675162889037 200.4980009330105 -161.4945639998141 82.87439746868381 103.6737876876634 -0.001797585816007086 -0.003502672725517186 96.82430174717365 -161.4946424628247 82.87443788597909 -6.849461442470783e-008 -0.0017975245781372 -0.003502553420503318 96.82430174717365 -161.4946424628247 82.87443788597909 103.6737876876634 -0.001797585816007086 -0.003502672725517186 -6.849461442470783e-008 -0.0017975245781372 -0.003502553420503318 107.4699042155643 -179.2505551014756 91.98675162889037 200.4980009330105 -161.4945639998141 82.87439746868381 211.1436919717295 -179.2505551626975 91.98675150958252</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4628\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4626\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4629\">1.29187982323741e-009 0.4565831305625449 0.8896807544764056 1.29187982323741e-009 0.4565831305625449 0.8896807544764056 1.29187982323741e-009 0.4565831305625449 0.8896807544764056 1.29187982323741e-009 0.4565831305625449 0.8896807544764056 1.29187982323741e-009 0.4565831305625449 0.8896807544764056 1.29187982323741e-009 0.4565831305625449 0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056 -1.29187982323741e-009 -0.4565831305625449 -0.8896807544764056</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4629\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4627\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4625\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4626\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4627\" />\r\n\t\t\t\t\t<p>0 1 2 2 1 3 1 4 3 5 3 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4627\" />\r\n\t\t\t\t\t<p>6 7 8 7 6 9 7 9 10 10 9 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4630\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4631\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4634\">599.7867699722629 8.756653305307623 -4.493906070938351 598.3206270453534 8.756482209299634 -4.493818246322917 593.5615786777867 -4.280100529285846e-005 2.023286049279705e-005 592.4976295697297 0.5652446209451227 -0.2900252858905787 598.3213693465293 11.45301058625205 0.7601145231074042 598.3206270453534 8.756482209299634 -4.493818246322917 599.787512273439 11.45318168226004 0.7600266984917425 599.7867699722629 8.756653305307623 -4.493906070938351 599.787512273439 11.45318168226004 0.7600266984917425 593.5615786850221 2.696314277412967 5.254040432273541 598.3213693465293 11.45301058625205 0.7601145231074042 593.071220582139 2.696301618324583 5.254046672008371</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4634\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4632\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4635\">-1.858824410864929e-005 -0.4565750526964278 -0.8896848997874086 -1.858824410864929e-005 -0.4565750526964278 -0.8896848997874086 -1.858824410864929e-005 -0.4565750526964278 -0.8896848997874086 -1.858824410864929e-005 -0.4565750526964278 -0.8896848997874086 -0.000131174156990502 0.8896658839942042 -0.4566120866229364 -0.000131174156990502 0.8896658839942042 -0.4566120866229364 -0.000131174156990502 0.8896658839942042 -0.4566120866229364 -0.000131174156990502 0.8896658839942042 -0.4566120866229364 -5.115577410353915e-008 0.4565831066071845 0.8896807667702666 -5.115577410353915e-008 0.4565831066071845 0.8896807667702666 -5.115577410353915e-008 0.4565831066071845 0.8896807667702666 -5.115577410353915e-008 0.4565831066071845 0.8896807667702666</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4635\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4633\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4631\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4632\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4633\" />\r\n\t\t\t\t\t<p>0 1 2 3 2 1 4 5 6 7 6 5 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4636\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4637\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4639\">309.2003967289222 -619.7390605308252 62.3696428540286 309.2955564211388 -619.7390604942294 62.36964283239854</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4639\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4638\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4637\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4638\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4640\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4641\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4643\">581.3532280410595 -161.6256481193608 82.94609288767219 581.3486829392864 -161.6338387549803 82.94587201564139</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4643\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4642\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4641\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4642\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4644\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4645\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4647\">96.82430174717365 -161.4946424628247 82.87443788597909 96.82047581953384 -161.4864630320739 82.87466665075976</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4647\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4646\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4645\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4646\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4648\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4649\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4651\">200.4980009330105 -161.4945639998141 82.87439746868381 200.4941644441135 -161.4863674638785 82.87461620763054</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4651\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4650\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4649\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4650\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4652\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4653\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4655\">641.2062855748541 -91.11898198297649 53.39994031271249 632.0118909367927 -104.049127921678 60.04326367878525</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4655\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4654\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4653\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4654\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4656\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4657\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4659\">592.4976295697297 0.5652446209451227 -0.2900252858905787 592.4976295769659 3.261601699363723 4.963994913522697</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4659\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4658\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4657\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4658\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4669\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4670\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID4673\">3.544515013384128 0.4069576522842908 37.4028232909767 0.00120769465183912 3.950264703980338 37.4028232909771 0.001207694650886992 0.4069576522824718 37.40307200700465 3.54451501338464 3.950264703979428 37.40282329097687 7.03717947487803e-005 3.949074872570463 2.005090671471947 3.54405510187658 3.950065211110314 25.00124850883071 3.543377690526796 3.9490748725716 2.005090671471493 0.00120769465183912 3.950264703980338 37.4028232909771 3.544180657350026 3.950184594804796 28.70113092460719 3.544460872134522 3.95014532028722 34.04926766975848 3.54451501338464 3.950264703979428 37.40282329097687 0.001207694650886992 0.4069576522824718 37.40307200700465 7.03717947487803e-005 3.949074872570463 2.005090671471947 7.0371794876678e-005 0.4057678208741891 2.005339387500243 0.00120769465183912 3.950264703980338 37.4028232909771 3.544055102300234 0.4067581594131298 25.001248508831 7.0371794876678e-005 0.4057678208741891 2.005339387500243 3.543377690526924 0.4057678208737343 2.005090671471066 0.001207694650886992 0.4069576522824718 37.40307200700465 3.544180657454902 0.4068775431076119 28.70113092460701 3.544460872131182 0.4068382685929919 34.04926766975842 3.544515013384128 0.4069576522842908 37.4028232909767 3.544460872134522 3.95014532028722 34.04926766975848 3.544515013384128 0.4069576522842908 37.4028232909767 3.544460872131182 0.4068382685929919 34.04926766975842 3.54451501338464 3.950264703979428 37.40282329097687 3.544460872134522 3.95014532028722 34.04926766975848 10.6311291856669 3.950264703979656 37.40270749381068 10.63125393887113 3.950310638691917 34.04915325965021 3.54451501338464 3.950264703979428 37.40282329097687 3.544180657454902 0.4068775431076119 28.70113092460701 3.544460872134522 3.95014532028722 34.04926766975848 3.544460872131182 0.4068382685929919 34.04926766975842 3.544180657350026 3.950184594804796 28.70113092460719 3.54405510187658 3.950065211110314 25.00124850883071 10.63121596834848 3.950515233265378 28.70089043073165 10.63133234479093 3.950561167996057 25.00100800888822 3.544180657350026 3.950184594804796 28.70113092460719 3.54405510187658 3.950065211110314 25.00124850883071 3.544180657454902 0.4068775431076119 28.70113092460701 3.544055102300234 0.4067581594131298 25.001248508831 3.544180657350026 3.950184594804796 28.70113092460719 3.543377690526796 3.9490748725716 2.005090671471493 3.544055102300234 0.4067581594131298 25.001248508831 3.543377690526924 0.4057678208737343 2.005090671471066 3.54405510187658 3.950065211110314 25.00124850883071 3.543377690526796 3.9490748725716 2.005090671471493 7.0371794876678e-005 0.4057678208741891 2.005339387500243 7.03717947487803e-005 3.949074872570463 2.005090671471947 3.543377690526924 0.4057678208737343 2.005090671471066 10.63121596133281 0.4072081738981979 28.70089043073085 3.544055102300234 0.4067581594131298 25.001248508831 10.63133233777487 0.4072541086309229 25.00100800888839 3.544180657454902 0.4068775431076119 28.70113092460701 10.63112917010893 0.4069576413910454 37.4029562098392 3.544460872131182 0.4068382685929919 34.04926766975842 10.63125393185501 0.4070035793272382 34.04915325964998 3.544515013384128 0.4069576522842908 37.4028232909767 10.63125393887113 3.950310638691917 34.04915325965021 14.17443649262787 3.950264695739406 37.40270749381114 14.17456124779752 3.950310631192679 34.04909605496448 10.6311291856669 3.950264703979656 37.40270749381068 10.71709083311637 3.95026470377934 37.40270749381097 10.6311291856669 3.950264703979656 37.40270749381068 10.63125393185501 0.4070035793272382 34.04915325964998 10.63112917010893 0.4069576413910454 37.4029562098392 10.63121596133281 0.4072081738981979 28.70089043073085 10.63133233777487 0.4072541086309229 25.00100800888839 10.63262253404825 0.4076087175924386 2.005378949346209 10.63125393887113 3.950310638691917 34.04915325965021 10.63262254960509 3.950915780181731 2.0051302333178 10.63133234479093 3.950561167996057 25.00100800888822 10.63121596834848 3.950515233265378 28.70089043073165 10.63133234479093 3.950561167996057 25.00100800888822 14.17452327943945 3.950515226582411 28.70077018878834 14.17463965588173 3.950561161313317 25.00088776694548 10.63121596834848 3.950515233265378 28.70089043073165 14.17452328045826 0.4072081755973613 28.70077018878772 10.63133233777487 0.4072541086309229 25.00100800888839 14.17463965689946 0.4072541103273579 25.0008877669448 10.63121596133281 0.4072081738981979 28.70089043073085 14.17443649364708 0.4069576447536747 37.40270749381085 10.63125393185501 0.4070035793272382 34.04915325964998 14.17456124881661 0.4070035802069469 34.04909605496465 10.63112917010893 0.4069576413910454 37.4029562098392 10.63121596834848 3.950515233265378 28.70089043073165 14.17456124779752 3.950310631192679 34.04909605496448 14.17452327943945 3.950515226582411 28.70077018878834 10.63125393887113 3.950310638691917 34.04915325965021 14.17443649364708 0.4069576447536747 37.40270749381085 10.6311291856669 3.950264703979656 37.40270749381068 10.63112917010893 0.4069576413910454 37.4029562098392 10.71709083311637 3.95026470377934 37.40270749381097 14.17443649262787 3.950264695739406 37.40270749381114 14.17456124881661 0.4070035802069469 34.04909605496465 14.17443649262787 3.950264695739406 37.40270749381114 14.17443649364708 0.4069576447536747 37.40270749381085 14.17452328045826 0.4072081755973613 28.70077018878772 14.17463965689946 0.4072541103273579 25.0008877669448 14.17592985758499 0.4076087209543857 2.005130233317431 14.17456124779752 3.950310631192679 34.04909605496448 14.17592985656732 3.9509157719408 2.005130233317487 14.17463965588173 3.950561161313317 25.00088776694548 14.17452327943945 3.950515226582411 28.70077018878834 14.17463965689946 0.4072541103273579 25.0008877669448 10.63262253404825 0.4076087175924386 2.005378949346209 14.17592985758499 0.4076087209543857 2.005130233317431 10.63133233777487 0.4072541086309229 25.00100800888839 14.17456124881661 0.4070035802069469 34.04909605496465 10.63121596133281 0.4072081738981979 28.70089043073085 14.17452328045826 0.4072081755973613 28.70077018878772 10.63125393185501 0.4070035793272382 34.04915325964998 10.63262254960509 3.950915780181731 2.0051302333178 14.17463965588173 3.950561161313317 25.00088776694548 14.17592985656732 3.9509157719408 2.005130233317487 10.63133234479093 3.950561167996057 25.00100800888822 10.63262254960509 3.950915780181731 2.0051302333178 14.17592985758499 0.4076087209543857 2.005130233317431 10.63262253404825 0.4076087175924386 2.005378949346209 14.17592985656732 3.9509157719408 2.005130233317487 122.0480545984938 0.4068775519399424 28.69710950201676 14.17463965689946 0.4072541103273579 25.0008877669448 122.0479290433378 0.4067581682479613 24.99722708624057 14.17452328045826 0.4072081755973613 28.70077018878772 122.0479290429144 3.950065219943326 24.99722708624012 122.0480545984938 0.4068775519399424 28.69710950201676 122.0479290433378 0.4067581682479613 24.99722708624057 122.048054598385 3.950184603639627 28.69710950201653</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"128\" source=\"#ID4673\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4671\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID4674\">3.509659257929294e-005 3.509659536560035e-005 0.9999999987682291 3.509659257929294e-005 3.509659536560035e-005 0.9999999987682291 3.509659257929294e-005 3.509659536560035e-005 0.9999999987682291 3.509659257929294e-005 3.509659536560035e-005 0.9999999987682291 -2.384025798011675e-005 0.9999999991361391 -3.404943687685644e-005 -2.384025798011675e-005 0.9999999991361391 -3.404943687685644e-005 -2.384025798011675e-005 0.9999999991361391 -3.404943687685644e-005 -2.384025798011675e-005 0.9999999991361391 -3.404943687685644e-005 -2.384025798011675e-005 0.9999999991361391 -3.404943687685644e-005 -2.384025798011675e-005 0.9999999991361391 -3.404943687685644e-005 -2.384025798011675e-005 0.9999999991361391 -3.404943687685644e-005 -0.9999999994787147 2.26649215800833e-009 3.22888647708819e-005 -0.9999999994787147 2.26649215800833e-009 3.22888647708819e-005 -0.9999999994787147 2.26649215800833e-009 3.22888647708819e-005 -0.9999999994787147 2.26649215800833e-009 3.22888647708819e-005 2.384264849445871e-005 -0.9999999991360821 3.404943679838571e-005 2.384264849445871e-005 -0.9999999991360821 3.404943679838571e-005 2.384264849445871e-005 -0.9999999991360821 3.404943679838571e-005 2.384264849445871e-005 -0.9999999991360821 3.404943679838571e-005 2.384264849445871e-005 -0.9999999991360821 3.404943679838571e-005 2.384264849445871e-005 -0.9999999991360821 3.404943679838571e-005 2.384264849445871e-005 -0.9999999991360821 3.404943679838571e-005 0.9999999998696787 -5.181271811066713e-013 -1.61444327752871e-005 0.9999999998696787 -5.181271811066713e-013 -1.61444327752871e-005 0.9999999998696787 -5.181271811066713e-013 -1.61444327752871e-005 0.9999999998696787 -5.181271811066713e-013 -1.61444327752871e-005 -1.166420941223325e-005 0.9999999998782611 -1.036456746232459e-005 -1.166420941223325e-005 0.9999999998782611 -1.036456746232459e-005 -1.166420941223325e-005 0.9999999998782611 -1.036456746232459e-005 -1.166420941223325e-005 0.9999999998782611 -1.036456746232459e-005 0.9999999985877935 1.423647537459273e-011 -5.314520605503061e-005 0.9999999985877935 1.423647537459273e-011 -5.314520605503061e-005 0.9999999985877935 1.423647537459273e-011 -5.314520605503061e-005 0.9999999985877935 1.423647537459273e-011 -5.314520605503061e-005 -5.831703648208177e-005 0.9999999982458506 -1.036447663071944e-005 -5.831703648208177e-005 0.9999999982458506 -1.036447663071944e-005 -5.831703648208177e-005 0.9999999982458506 -1.036447663071944e-005 -5.831703648208177e-005 0.9999999982458506 -1.036447663071944e-005 0.9999999994242097 7.450330819416892e-011 -3.393494614098281e-005 0.9999999994242097 7.450330819416892e-011 -3.393494614098281e-005 0.9999999994242097 7.450330819416892e-011 -3.393494614098281e-005 0.9999999994242097 7.450330819416892e-011 -3.393494614098281e-005 0.999999999566125 5.976167963370193e-011 -2.945759748987113e-005 0.999999999566125 5.976167963370193e-011 -2.945759748987113e-005 0.999999999566125 5.976167963370193e-011 -2.945759748987113e-005 0.999999999566125 5.976167963370193e-011 -2.945759748987113e-005 -3.509659277984774e-005 -3.509659546989725e-005 -0.9999999987682291 -3.509659277984774e-005 -3.509659546989725e-005 -0.9999999987682291 -3.509659277984774e-005 -3.509659546989725e-005 -0.9999999987682291 -3.509659277984774e-005 -3.509659546989725e-005 -0.9999999987682291 5.831595448658865e-005 -0.9999999982459137 1.036447671323463e-005 5.831595448658865e-005 -0.9999999982459137 1.036447671323463e-005 5.831595448658865e-005 -0.9999999982459137 1.036447671323463e-005 5.831595448658865e-005 -0.9999999982459137 1.036447671323463e-005 1.166271776296088e-005 -0.9999999998782954 1.036292997654174e-005 1.166271776296088e-005 -0.9999999998782954 1.036292997654174e-005 1.166271776296088e-005 -0.9999999998782954 1.036292997654174e-005 1.166271776296088e-005 -0.9999999998782954 1.036292997654174e-005 2.325785654536681e-009 0.99999999991597 1.296380183679079e-005 2.325785654536681e-009 0.99999999991597 1.296380183679079e-005 2.325785654536681e-009 0.99999999991597 1.296380183679079e-005 2.325785654536681e-009 0.99999999991597 1.296380183679079e-005 2.325785654536681e-009 0.99999999991597 1.296380183679079e-005 -0.9999999990518237 -2.756040886396795e-009 -4.354713522831431e-005 -0.9999999990518237 -2.756040886396795e-009 -4.354713522831431e-005 -0.9999999990518237 -2.756040886396795e-009 -4.354713522831431e-005 -0.9999999990518237 -2.756040886396795e-009 -4.354713522831431e-005 -0.9999999990518237 -2.756040886396795e-009 -4.354713522831431e-005 -0.9999999990518237 -2.756040886396795e-009 -4.354713522831431e-005 -0.9999999990518237 -2.756040886396795e-009 -4.354713522831431e-005 -0.9999999990518237 -2.756040886396795e-009 -4.354713522831431e-005 -0.9999999990518237 -2.756040886396795e-009 -4.354713522831431e-005 -0.9999999990518237 -2.756040886396795e-009 -4.354713522831431e-005 2.326034511079482e-009 0.99999999991597 1.296380188874424e-005 2.326034511079482e-009 0.99999999991597 1.296380188874424e-005 2.326034511079482e-009 0.99999999991597 1.296380188874424e-005 2.326034511079482e-009 0.99999999991597 1.296380188874424e-005 3.924107564999187e-011 -0.99999999991597 -1.296380166332893e-005 3.924107564999187e-011 -0.99999999991597 -1.296380166332893e-005 3.924107564999187e-011 -0.99999999991597 -1.296380166332893e-005 3.924107564999187e-011 -0.99999999991597 -1.296380166332893e-005 3.917979120919331e-011 -0.9999999999159699 -1.296380179347477e-005 3.917979120919331e-011 -0.9999999999159699 -1.296380179347477e-005 3.917979120919331e-011 -0.9999999999159699 -1.296380179347477e-005 3.917979120919331e-011 -0.9999999999159699 -1.296380179347477e-005 2.965160490959365e-009 0.9999999992591436 3.849302548980994e-005 2.965160490959365e-009 0.9999999992591436 3.849302548980994e-005 2.965160490959365e-009 0.9999999992591436 3.849302548980994e-005 2.965160490959365e-009 0.9999999992591436 3.849302548980994e-005 2.701927161658644e-005 7.359909065864301e-006 0.9999999996078954 2.701927161658644e-005 7.359909065864301e-006 0.9999999996078954 2.701927161658644e-005 7.359909065864301e-006 0.9999999996078954 2.701927161658644e-005 7.359909065864301e-006 0.9999999996078954 2.701927161658644e-005 7.359909065864301e-006 0.9999999996078954 0.9999999990518242 4.765169209916828e-009 4.354712048631267e-005 0.9999999990518242 4.765169209916828e-009 4.354712048631267e-005 0.9999999990518242 4.765169209916828e-009 4.354712048631267e-005 0.9999999990518242 4.765169209916828e-009 4.354712048631267e-005 0.9999999990518242 4.765169209916828e-009 4.354712048631267e-005 0.9999999990518242 4.765169209916828e-009 4.354712048631267e-005 0.9999999990518242 4.765169209916828e-009 4.354712048631267e-005 0.9999999990518242 4.765169209916828e-009 4.354712048631267e-005 0.9999999990518242 4.765169209916828e-009 4.354712048631267e-005 0.9999999990518242 4.765169209916828e-009 4.354712048631267e-005 -8.901851364598376e-011 -0.9999999998811009 -1.542070467181893e-005 -8.901851364598376e-011 -0.9999999998811009 -1.542070467181893e-005 -8.901851364598376e-011 -0.9999999998811009 -1.542070467181893e-005 -8.901851364598376e-011 -0.9999999998811009 -1.542070467181893e-005 -5.998112966187101e-010 -0.9999999992591435 -3.849302544016117e-005 -5.998112966187101e-010 -0.9999999992591435 -3.849302544016117e-005 -5.998112966187101e-010 -0.9999999992591435 -3.849302544016117e-005 -5.998112966187101e-010 -0.9999999992591435 -3.849302544016117e-005 2.367589221500523e-009 0.9999999998811012 1.542069150036832e-005 2.367589221500523e-009 0.9999999998811012 1.542069150036832e-005 2.367589221500523e-009 0.9999999998811012 1.542069150036832e-005 2.367589221500523e-009 0.9999999998811012 1.542069150036832e-005 -3.509657203495226e-005 -3.509658200917347e-005 -0.9999999987682304 -3.509657203495226e-005 -3.509658200917347e-005 -0.9999999987682304 -3.509657203495226e-005 -3.509658200917347e-005 -0.9999999987682304 -3.509657203495226e-005 -3.509658200917347e-005 -0.9999999987682304 -3.830831051772e-006 -0.9999999999389514 1.036446388263344e-005 -3.830831051772e-006 -0.9999999999389514 1.036446388263344e-005 -3.830831051772e-006 -0.9999999999389514 1.036446388263344e-005 -3.830831051772e-006 -0.9999999999389514 1.036446388263344e-005 0.9999999994242097 7.505383588066186e-011 -3.393494590929258e-005 0.9999999994242097 7.505383588066186e-011 -3.393494590929258e-005 0.9999999994242097 7.505383588066186e-011 -3.393494590929258e-005 0.9999999994242097 7.505383588066186e-011 -3.393494590929258e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"128\" source=\"#ID4674\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4672\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4670\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4671\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"74\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4672\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 5 7 8 8 7 9 9 7 10 11 12 13 12 11 14 15 16 17 16 15 18 18 15 19 18 19 20 18 20 21 22 23 24 23 22 25 26 27 28 27 26 29 30 31 32 31 30 33 34 35 36 35 34 37 38 39 40 39 38 41 42 43 44 43 42 45 46 47 48 47 46 49 50 51 52 51 50 53 54 55 56 55 54 57 58 59 60 59 58 61 59 61 62 63 64 65 64 63 66 66 63 67 67 63 68 68 63 69 68 69 70 70 69 71 71 69 72 73 74 75 74 73 76 77 78 79 78 77 80 81 82 83 82 81 84 85 86 87 86 85 88 89 90 91 90 89 92 92 89 93 94 95 96 95 94 97 95 97 98 95 98 99 95 99 100 100 99 101 100 101 102 100 102 103 104 105 106 105 104 107 108 109 110 109 108 111 112 113 114 113 112 115 116 117 118 117 116 119 120 121 122 121 120 123 124 125 126 125 124 127</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4675\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4676\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID4679\">122.0483976137129 3.950145320296997 34.0473544909633 122.0484517549635 0.4069576522931584 37.40091011218095 122.0483976137141 0.4068382686000405 34.04735449096302 122.0484517549632 3.95026470399057 37.40091011218152</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4679\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4677\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID4680\">0.9999999998696788 1.627759047306386e-013 -1.61444323962777e-005 0.9999999998696788 1.627759047306386e-013 -1.61444323962777e-005 0.9999999998696788 1.627759047306386e-013 -1.61444323962777e-005 0.9999999998696788 1.627759047306386e-013 -1.61444323962777e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4680\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4678\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4676\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4677\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4678\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4681\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4682\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4685\">3.544460872134522 3.95014532028722 34.04926766975848 10.63125393185501 0.4070035793272382 34.04915325964998 3.544460872131182 0.4068382685929919 34.04926766975842 10.63125393887113 3.950310638691917 34.04915325965021 14.17456124881661 0.4070035802069469 34.04909605496465 14.17456124779752 3.950310631192679 34.04909605496448 122.0483976137129 3.950145320296997 34.0473544909633 122.0483976137141 0.4068382686000405 34.04735449096302 122.0483976137141 0.4068382686000405 34.04735449096302 122.0483976137129 3.950145320296997 34.0473544909633 14.17456124881661 0.4070035802069469 34.04909605496465 14.17456124779752 3.950310631192679 34.04909605496448 10.63125393887113 3.950310638691917 34.04915325965021 10.63125393185501 0.4070035793272382 34.04915325964998 3.544460872134522 3.95014532028722 34.04926766975848 3.544460872131182 0.4068382685929919 34.04926766975842 14.17456124779752 3.950310631192679 34.04909605496448 122.0484517549632 3.95026470399057 37.40091011218152 122.0483976137129 3.950145320296997 34.0473544909633 14.17443649262787 3.950264695739406 37.40270749381114 14.17443649262787 3.950264695739406 37.40270749381114 14.17456124779752 3.950310631192679 34.04909605496448 122.0484517549632 3.95026470399057 37.40091011218152 122.0483976137129 3.950145320296997 34.0473544909633 122.0484517549635 0.4069576522931584 37.40091011218095 14.17456124881661 0.4070035802069469 34.04909605496465 122.0483976137141 0.4068382686000405 34.04735449096302 14.17443649364708 0.4069576447536747 37.40270749381085 14.17443649364708 0.4069576447536747 37.40270749381085 122.0484517549635 0.4069576522931584 37.40091011218095 14.17456124881661 0.4070035802069469 34.04909605496465 122.0483976137141 0.4068382686000405 34.04735449096302</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4685\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4683\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4686\">-1.614444368125752e-005 2.545381440344219e-014 -0.9999999998696786 -1.614444368125752e-005 2.545381440344219e-014 -0.9999999998696786 -1.614444368125752e-005 2.545381440344219e-014 -0.9999999998696786 -1.614444368125752e-005 2.545381440344219e-014 -0.9999999998696786 -1.614444368125752e-005 2.545381440344219e-014 -0.9999999998696786 -1.614444368125752e-005 2.545381440344219e-014 -0.9999999998696786 -1.614444368125752e-005 2.545381440344219e-014 -0.9999999998696786 -1.614444368125752e-005 2.545381440344219e-014 -0.9999999998696786 1.614444368125752e-005 -2.545381440344219e-014 0.9999999998696786 1.614444368125752e-005 -2.545381440344219e-014 0.9999999998696786 1.614444368125752e-005 -2.545381440344219e-014 0.9999999998696786 1.614444368125752e-005 -2.545381440344219e-014 0.9999999998696786 1.614444368125752e-005 -2.545381440344219e-014 0.9999999998696786 1.614444368125752e-005 -2.545381440344219e-014 0.9999999998696786 1.614444368125752e-005 -2.545381440344219e-014 0.9999999998696786 1.614444368125752e-005 -2.545381440344219e-014 0.9999999998696786 7.66014186803929e-007 0.9999999999459995 -1.03640777862552e-005 7.66014186803929e-007 0.9999999999459995 -1.03640777862552e-005 7.66014186803929e-007 0.9999999999459995 -1.03640777862552e-005 7.66014186803929e-007 0.9999999999459995 -1.03640777862552e-005 -7.66014186803929e-007 -0.9999999999459995 1.03640777862552e-005 -7.66014186803929e-007 -0.9999999999459995 1.03640777862552e-005 -7.66014186803929e-007 -0.9999999999459995 1.03640777862552e-005 -7.66014186803929e-007 -0.9999999999459995 1.03640777862552e-005 -7.660207702598153e-007 -0.9999999999459998 1.03640779028602e-005 -7.660207702598153e-007 -0.9999999999459998 1.03640779028602e-005 -7.660207702598153e-007 -0.9999999999459998 1.03640779028602e-005 -7.660207702598153e-007 -0.9999999999459998 1.03640779028602e-005 7.660207702598153e-007 0.9999999999459998 -1.03640779028602e-005 7.660207702598153e-007 0.9999999999459998 -1.03640779028602e-005 7.660207702598153e-007 0.9999999999459998 -1.03640779028602e-005 7.660207702598153e-007 0.9999999999459998 -1.03640779028602e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4686\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4684\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4682\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4683\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"20\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4684\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 8 9 10 9 11 10 11 12 10 10 12 13 12 14 13 15 13 14 16 17 18 17 16 19 20 21 22 23 22 21 24 25 26 25 24 27 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4687\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4688\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4691\">3.544180657454902 0.4068775431076119 28.70113092460701 10.63121596834848 3.950515233265378 28.70089043073165 3.544180657350026 3.950184594804796 28.70113092460719 10.63121596133281 0.4072081738981979 28.70089043073085 14.17452328045826 0.4072081755973613 28.70077018878772 14.17452327943945 3.950515226582411 28.70077018878834 122.048054598385 3.950184603639627 28.69710950201653 122.0480545984938 0.4068775519399424 28.69710950201676 122.0480545984938 0.4068775519399424 28.69710950201676 14.17452328045826 0.4072081755973613 28.70077018878772 122.048054598385 3.950184603639627 28.69710950201653 14.17452327943945 3.950515226582411 28.70077018878834 10.63121596834848 3.950515233265378 28.70089043073165 10.63121596133281 0.4072081738981979 28.70089043073085 3.544180657454902 0.4068775431076119 28.70113092460701 3.544180657350026 3.950184594804796 28.70113092460719</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4691\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4689\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4692\">3.393496878938327e-005 -1.951472295390333e-013 0.999999999424209 3.393496878938327e-005 -1.951472295390333e-013 0.999999999424209 3.393496878938327e-005 -1.951472295390333e-013 0.999999999424209 3.393496878938327e-005 -1.951472295390333e-013 0.999999999424209 3.393496878938327e-005 -1.951472295390333e-013 0.999999999424209 3.393496878938327e-005 -1.951472295390333e-013 0.999999999424209 3.393496878938327e-005 -1.951472295390333e-013 0.999999999424209 3.393496878938327e-005 -1.951472295390333e-013 0.999999999424209 -3.393496878938327e-005 1.951472295390333e-013 -0.999999999424209 -3.393496878938327e-005 1.951472295390333e-013 -0.999999999424209 -3.393496878938327e-005 1.951472295390333e-013 -0.999999999424209 -3.393496878938327e-005 1.951472295390333e-013 -0.999999999424209 -3.393496878938327e-005 1.951472295390333e-013 -0.999999999424209 -3.393496878938327e-005 1.951472295390333e-013 -0.999999999424209 -3.393496878938327e-005 1.951472295390333e-013 -0.999999999424209 -3.393496878938327e-005 1.951472295390333e-013 -0.999999999424209</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4692\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4690\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4688\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4689\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4690\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 6 4 7 8 9 10 10 9 11 11 9 12 9 13 12 13 14 12 15 12 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4693\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4694\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID4697\">10.63133234479093 3.950561167996057 25.00100800888822 3.544055102300234 0.4067581594131298 25.001248508831 3.54405510187658 3.950065211110314 25.00124850883071 10.63133233777487 0.4072541086309229 25.00100800888839 14.17463965689946 0.4072541103273579 25.0008877669448 14.17463965588173 3.950561161313317 25.00088776694548 122.0479290429144 3.950065219943326 24.99722708624012 122.0479290433378 0.4067581682479613 24.99722708624057 122.0479290433378 0.4067581682479613 24.99722708624057 122.0479290429144 3.950065219943326 24.99722708624012 14.17463965689946 0.4072541103273579 25.0008877669448 14.17463965588173 3.950561161313317 25.00088776694548 10.63133234479093 3.950561167996057 25.00100800888822 10.63133233777487 0.4072541086309229 25.00100800888839 3.544055102300234 0.4067581594131298 25.001248508831 3.54405510187658 3.950065211110314 25.00124850883071 14.17463965588173 3.950561161313317 25.00088776694548 122.048054598385 3.950184603639627 28.69710950201653 122.0479290429144 3.950065219943326 24.99722708624012 14.17452327943945 3.950515226582411 28.70077018878834 14.17452327943945 3.950515226582411 28.70077018878834 14.17463965588173 3.950561161313317 25.00088776694548 122.048054598385 3.950184603639627 28.69710950201653 122.0479290429144 3.950065219943326 24.99722708624012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID4697\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4695\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID4698\">-3.393498007854013e-005 2.130773584917839e-013 -0.9999999994242086 -3.393498007854013e-005 2.130773584917839e-013 -0.9999999994242086 -3.393498007854013e-005 2.130773584917839e-013 -0.9999999994242086 -3.393498007854013e-005 2.130773584917839e-013 -0.9999999994242086 -3.393498007854013e-005 2.130773584917839e-013 -0.9999999994242086 -3.393498007854013e-005 2.130773584917839e-013 -0.9999999994242086 -3.393498007854013e-005 2.130773584917839e-013 -0.9999999994242086 -3.393498007854013e-005 2.130773584917839e-013 -0.9999999994242086 3.393498007854013e-005 -2.130773584917839e-013 0.9999999994242086 3.393498007854013e-005 -2.130773584917839e-013 0.9999999994242086 3.393498007854013e-005 -2.130773584917839e-013 0.9999999994242086 3.393498007854013e-005 -2.130773584917839e-013 0.9999999994242086 3.393498007854013e-005 -2.130773584917839e-013 0.9999999994242086 3.393498007854013e-005 -2.130773584917839e-013 0.9999999994242086 3.393498007854013e-005 -2.130773584917839e-013 0.9999999994242086 3.393498007854013e-005 -2.130773584917839e-013 0.9999999994242086 3.830824443502211e-006 0.9999999999389514 -1.036446418540321e-005 3.830824443502211e-006 0.9999999999389514 -1.036446418540321e-005 3.830824443502211e-006 0.9999999999389514 -1.036446418540321e-005 3.830824443502211e-006 0.9999999999389514 -1.036446418540321e-005 -3.830824443502211e-006 -0.9999999999389514 1.036446418540321e-005 -3.830824443502211e-006 -0.9999999999389514 1.036446418540321e-005 -3.830824443502211e-006 -0.9999999999389514 1.036446418540321e-005 -3.830824443502211e-006 -0.9999999999389514 1.036446418540321e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID4698\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4696\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4694\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4695\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4696\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 4 6 7 8 9 10 9 11 10 11 12 10 10 12 13 13 12 14 15 14 12 16 17 18 17 16 19 20 21 22 23 22 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4699\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4700\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID4703\">10.63112917010893 0.4069576413910454 37.4029562098392 3.54451501338464 3.950264703979428 37.40282329097687 3.544515013384128 0.4069576522842908 37.4028232909767 10.6311291856669 3.950264703979656 37.40270749381068 14.17443649364708 0.4069576447536747 37.40270749381085 10.71709083311637 3.95026470377934 37.40270749381097 14.17443649262787 3.950264695739406 37.40270749381114 122.0484517549632 3.95026470399057 37.40091011218152 122.0484517549635 0.4069576522931584 37.40091011218095 122.0484517549635 0.4069576522931584 37.40091011218095 14.17443649364708 0.4069576447536747 37.40270749381085 122.0484517549632 3.95026470399057 37.40091011218152 14.17443649262787 3.950264695739406 37.40270749381114 10.71709083311637 3.95026470377934 37.40270749381097 10.6311291856669 3.950264703979656 37.40270749381068 10.63112917010893 0.4069576413910454 37.4029562098392 3.54451501338464 3.950264703979428 37.40282329097687 3.544515013384128 0.4069576522842908 37.4028232909767</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID4703\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4701\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID4704\">1.659870533008899e-005 1.900563626881942e-005 0.9999999996816344 1.659870533008899e-005 1.900563626881942e-005 0.9999999996816344 1.659870533008899e-005 1.900563626881942e-005 0.9999999996816344 1.659870533008899e-005 1.900563626881942e-005 0.9999999996816344 1.659870533008899e-005 1.900563626881942e-005 0.9999999996816344 1.659870533008899e-005 1.900563626881942e-005 0.9999999996816344 1.659870533008899e-005 1.900563626881942e-005 0.9999999996816344 1.659870533008899e-005 1.900563626881942e-005 0.9999999996816344 1.659870533008899e-005 1.900563626881942e-005 0.9999999996816344 -1.659870533008899e-005 -1.900563626881942e-005 -0.9999999996816344 -1.659870533008899e-005 -1.900563626881942e-005 -0.9999999996816344 -1.659870533008899e-005 -1.900563626881942e-005 -0.9999999996816344 -1.659870533008899e-005 -1.900563626881942e-005 -0.9999999996816344 -1.659870533008899e-005 -1.900563626881942e-005 -0.9999999996816344 -1.659870533008899e-005 -1.900563626881942e-005 -0.9999999996816344 -1.659870533008899e-005 -1.900563626881942e-005 -0.9999999996816344 -1.659870533008899e-005 -1.900563626881942e-005 -0.9999999996816344 -1.659870533008899e-005 -1.900563626881942e-005 -0.9999999996816344</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID4704\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4702\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4700\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4701\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4702\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 6 4 7 7 4 8 9 10 11 11 10 12 12 10 13 13 10 14 10 15 14 14 15 16 17 16 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4723\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4724\">\r\n\t\t\t\t\t<float_array count=\"354\" id=\"ID4727\">-10.60550294695145 6.812237000088544 -2.226664360359507 -10.60550294693621 6.812223201826555 76.51349330961983 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 460.6139713682113 -716.4778733919748 234.189700917167 -10.60550294693621 6.812223201826555 76.51349330961983 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 460.6139713682113 -716.4778733919748 234.189700917167 -10.60550294695145 6.812237000088544 -2.226664360359507 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 747.1264376524134 6.812237000073992 -2.226664360293057 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 483.3872593847015 6.812237000071832 -2.226664360316022 483.3843441009414 1.284661266254261e-011 -2.347633198951371e-011 455.0452133103389 6.812237000069331 -2.226664360317386 251.7019252709013 6.812237000082973 -2.226664360337963 241.9726684508291 5.002220859751105e-012 -4.132516551180743e-011 230.8099458516108 6.812237000084792 -2.226664360339555 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 -10.60550294695145 6.812237000088544 -2.226664360359507 230.8099458516108 6.812237000084792 -2.226664360339555 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 -10.60550294695145 6.812237000088544 -2.226664360359507 241.9726684508291 5.002220859751105e-012 -4.132516551180743e-011 251.7019252709013 6.812237000082973 -2.226664360337963 483.3843441009414 1.284661266254261e-011 -2.347633198951371e-011 455.0452133103389 6.812237000069331 -2.226664360317386 483.3872593847015 6.812237000071832 -2.226664360316022 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 747.1264376524134 6.812237000073992 -2.226664360293057 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 115.6831538196238 -1.092436036742583e-005 62.34026376937908 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 115.6831538196238 -1.092436036742583e-005 62.34026376937908 -10.60550294693621 6.812223201826555 76.51349330961983 3.568409035954574 6.812223201826782 76.51349328730481 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 3.568409035954574 6.812223201826782 76.51349328730481 -10.60550294693621 6.812223201826555 76.51349330961983 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 620.8377808858617 -1.092436423277832e-005 62.34026376926641 620.8377808858617 -1.092436423277832e-005 62.34026376926641 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 241.9726684508398 -0.002644032025841625 0.0008638547279247177 368.2604673527391 -1.092436536964669e-005 62.34026376933497 483.3843441009414 1.284661266254261e-011 -2.347633198951371e-011 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 368.2604673527391 -1.092436536964669e-005 62.34026376933497 483.3843441009414 1.284661266254261e-011 -2.347633198951371e-011 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 241.9726684508398 -0.002644032025841625 0.0008638547279247177 241.9726684508291 5.002220859751105e-012 -4.132516551180743e-011 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 115.6831538196238 -1.092436036742583e-005 62.34026376937908 115.6831538196238 -1.092436036742583e-005 62.34026376937908 -6.167368522084644 2.955857780762017e-012 7.389644451905042e-013 241.9726684508291 5.002220859751105e-012 -4.132516551180743e-011 455.0452179998614 6.823195162639308 -2.230246171994565 455.0452133103389 6.812237000069331 -2.226664360317386 483.3872593847015 6.812237000071832 -2.226664360316022 483.3872593847015 6.812237000071832 -2.226664360316022 455.0452133103389 6.812237000069331 -2.226664360317386 455.0452179998614 6.823195162639308 -2.230246171994565 747.1264376524134 6.812237000073992 -2.226664360293057 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 747.1264376524391 6.812223201792904 76.51349330949375 460.6139713682113 -716.4778733919748 234.189700917167 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 747.1264376524391 6.812223201792904 76.51349330949375 460.6139713682113 -716.4778733919748 234.189700917167 747.1264376524134 6.812237000073992 -2.226664360293057 241.9726684508398 -0.002644032025841625 0.0008638547279247177 115.6831538196238 -1.092436036742583e-005 62.34026376937908 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 115.6831538196238 -1.092436036742583e-005 62.34026376937908 241.9726684508398 -0.002644032025841625 0.0008638547279247177 460.6139713682113 -716.4778733919748 234.189700917167 3.568409035954574 6.812223201826782 76.51349328730481 3.568409035945933 6.814490132649098 17.21621980177724 3.568409035945933 6.814490132649098 17.21621980177724 3.568409035954574 6.812223201826782 76.51349328730481 460.6139713682113 -716.4778733919748 234.189700917167 620.8377808858617 -1.092436423277832e-005 62.34026376926641 460.6139713682113 -716.4778733919748 234.189700917167 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 744.42794807576 -1.818989403545857e-012 2.273736754432321e-013 460.6139713682113 -716.4778733919748 234.189700917167 620.8377808858617 -1.092436423277832e-005 62.34026376926641 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 460.6139713682113 -716.4778733919748 234.189700917167 620.8377808858617 -1.092436423277832e-005 62.34026376926641 620.8377808858617 -1.092436423277832e-005 62.34026376926641 460.6139713682113 -716.4778733919748 234.189700917167 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 368.2604673527391 -1.092436536964669e-005 62.34026376933497 460.6139713682113 -716.4778733919748 234.189700917167 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 494.5456510797487 1.386979420203716e-011 -2.347633198951371e-011 460.6139713682113 -716.4778733919748 234.189700917167 368.2604673527391 -1.092436536964669e-005 62.34026376933497 368.2604673527391 -1.092436536964669e-005 62.34026376933497 241.9726684508398 -0.002644032025841625 0.0008638547279247177 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 241.9726684508398 -0.002644032025841625 0.0008638547279247177 368.2604673527391 -1.092436536964669e-005 62.34026376933497 460.6139713682113 -716.4778733919748 234.189700917167 3.568409035945933 6.814490132649098 17.21621980177724 3.56840903594366 6.814606465975089 14.17322954063104 3.56840903594366 6.814606465975089 14.17322954063104 3.568409035945933 6.814490132649098 17.21621980177724 460.6139713682113 -716.4778733919748 234.189700917167</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"118\" source=\"#ID4727\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4725\">\r\n\t\t\t\t\t<float_array count=\"354\" id=\"ID4728\">-0.8378709868390235 -0.5458683077569092 -9.565670618463657e-008 -0.8378709868390235 -0.5458683077569092 -9.565670618463657e-008 -0.8378709868390235 -0.5458683077569092 -9.565670618463657e-008 -0.8378709868390235 -0.5458683077569092 -9.565670618463657e-008 0.8378709868390235 0.5458683077569092 9.565670618463657e-008 0.8378709868390235 0.5458683077569092 9.565670618463657e-008 0.8378709868390235 0.5458683077569092 9.565670618463657e-008 0.8378709868390235 0.5458683077569092 9.565670618463657e-008 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 4.176203383484778e-014 -0.3106867789900944 -0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 -4.176203383484778e-014 0.3106867789900944 0.9505123488733643 0.4554575023196747 0.005742335681429244 -0.8902390067625915 0.4554575023196747 0.005742335681429244 -0.8902390067625915 0.4554575023196747 0.005742335681429244 -0.8902390067625915 -0.4554575023196747 -0.005742335681429244 0.8902390067625915 -0.4554575023196747 -0.005742335681429244 0.8902390067625915 -0.4554575023196747 -0.005742335681429244 0.8902390067625915 1.538292875210742e-009 0.212996166581034 0.977053034907412 1.538292875210742e-009 0.212996166581034 0.977053034907412 1.538292875210742e-009 0.212996166581034 0.977053034907412 -1.538292875210742e-009 -0.212996166581034 -0.977053034907412 -1.538292875210742e-009 -0.212996166581034 -0.977053034907412 -1.538292875210742e-009 -0.212996166581034 -0.977053034907412 -2.275238329681381e-014 -0.9999999999999847 -1.75237907563655e-007 -2.275238329681381e-014 -0.9999999999999847 -1.75237907563655e-007 -2.275238329681381e-014 -0.9999999999999847 -1.75237907563655e-007 2.275238329681381e-014 0.9999999999999847 1.75237907563655e-007 2.275238329681381e-014 0.9999999999999847 1.75237907563655e-007 2.275238329681381e-014 0.9999999999999847 1.75237907563655e-007 1.068861753817745e-005 -0.9999999997318919 2.054190683751488e-005 1.068861753817745e-005 -0.9999999997318919 2.054190683751488e-005 1.068861753817745e-005 -0.9999999997318919 2.054190683751488e-005 1.068861753817745e-005 -0.9999999997318919 2.054190683751488e-005 -1.068861753817745e-005 0.9999999997318919 -2.054190683751488e-005 -1.068861753817745e-005 0.9999999997318919 -2.054190683751488e-005 -1.068861753817745e-005 0.9999999997318919 -2.054190683751488e-005 -1.068861753817745e-005 0.9999999997318919 -2.054190683751488e-005 -3.002925309277699e-014 -0.9999999999999847 -1.752378208294868e-007 -3.002925309277699e-014 -0.9999999999999847 -1.752378208294868e-007 -3.002925309277699e-014 -0.9999999999999847 -1.752378208294868e-007 3.002925309277699e-014 0.9999999999999847 1.752378208294868e-007 3.002925309277699e-014 0.9999999999999847 1.752378208294868e-007 3.002925309277699e-014 0.9999999999999847 1.752378208294868e-007 7.652387948320986e-014 -0.3106867789905536 -0.9505123488732143 7.652387948320986e-014 -0.3106867789905536 -0.9505123488732143 7.652387948320986e-014 -0.3106867789905536 -0.9505123488732143 -7.652387948320986e-014 0.3106867789905536 0.9505123488732143 -7.652387948320986e-014 0.3106867789905536 0.9505123488732143 -7.652387948320986e-014 0.3106867789905536 0.9505123488732143 0.9297141440677855 -0.3682819712126846 -6.453717382087217e-008 0.9297141440677855 -0.3682819712126846 -6.453717382087217e-008 0.9297141440677855 -0.3682819712126846 -6.453717382087217e-008 0.9297141440677855 -0.3682819712126846 -6.453717382087217e-008 -0.9297141440677855 0.3682819712126846 6.453717382087217e-008 -0.9297141440677855 0.3682819712126846 6.453717382087217e-008 -0.9297141440677855 0.3682819712126846 6.453717382087217e-008 -0.9297141440677855 0.3682819712126846 6.453717382087217e-008 -0.4069090488152992 -0.3936109890718622 -0.8243151189163638 -0.4069090488152992 -0.3936109890718622 -0.8243151189163638 -0.4069090488152992 -0.3936109890718622 -0.8243151189163638 0.4069090488152992 0.3936109890718622 0.8243151189163638 0.4069090488152992 0.3936109890718622 0.8243151189163638 0.4069090488152992 0.3936109890718622 0.8243151189163638 0.8453650990408669 0.5341889636697554 2.042200842912393e-005 0.8453650990408669 0.5341889636697554 2.042200842912393e-005 0.8453650990408669 0.5341889636697554 2.042200842912393e-005 -0.8453650990408669 -0.5341889636697554 -2.042200842912393e-005 -0.8453650990408669 -0.5341889636697554 -2.042200842912393e-005 -0.8453650990408669 -0.5341889636697554 -2.042200842912393e-005 -0.4474915832276384 -0.1127159921110668 -0.8871563492771947 -0.4474915832276384 -0.1127159921110668 -0.8871563492771947 -0.4474915832276384 -0.1127159921110668 -0.8871563492771947 0.4474915832276384 0.1127159921110668 0.8871563492771947 0.4474915832276384 0.1127159921110668 0.8871563492771947 0.4474915832276384 0.1127159921110668 0.8871563492771947 0.4222939102679692 -0.2996318300996865 -0.8555048917111469 0.4222939102679692 -0.2996318300996865 -0.8555048917111469 0.4222939102679692 -0.2996318300996865 -0.8555048917111469 -0.4222939102679692 0.2996318300996865 0.8555048917111469 -0.4222939102679692 0.2996318300996865 0.8555048917111469 -0.4222939102679692 0.2996318300996865 0.8555048917111469 -0.4271173421898757 -0.2625829552843425 -0.8652288527290326 -0.4271173421898757 -0.2625829552843425 -0.8652288527290326 -0.4271173421898757 -0.2625829552843425 -0.8652288527290326 0.4271173421898757 0.2625829552843425 0.8652288527290326 0.4271173421898757 0.2625829552843425 0.8652288527290326 0.4271173421898757 0.2625829552843425 0.8652288527290326 0.437215510853546 -0.1560832944052977 -0.885709095740053 0.437215510853546 -0.1560832944052977 -0.885709095740053 0.437215510853546 -0.1560832944052977 -0.885709095740053 -0.437215510853546 0.1560832944052977 0.885709095740053 -0.437215510853546 0.1560832944052977 0.885709095740053 -0.437215510853546 0.1560832944052977 0.885709095740053 0.8453650990414756 0.5341889636687919 2.042200588795507e-005 0.8453650990414756 0.5341889636687919 2.042200588795507e-005 0.8453650990414756 0.5341889636687919 2.042200588795507e-005 -0.8453650990414756 -0.5341889636687919 -2.042200588795507e-005 -0.8453650990414756 -0.5341889636687919 -2.042200588795507e-005 -0.8453650990414756 -0.5341889636687919 -2.042200588795507e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"118\" source=\"#ID4728\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4726\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4724\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4725\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"27\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4726\" />\r\n\t\t\t\t\t<p>0 1 2 3 2 1 8 9 10 9 11 10 10 11 12 11 13 12 13 14 12 12 14 15 14 16 15 15 16 17 18 17 16 30 31 32 36 37 38 42 43 44 48 49 50 51 50 49 56 57 58 62 63 64 68 69 70 71 70 69 76 77 78 82 83 84 88 89 90 94 95 96 100 101 102 106 107 108 112 113 114</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"27\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4726\" />\r\n\t\t\t\t\t<p>4 5 6 5 4 7 19 20 21 20 19 22 22 19 23 22 23 24 24 23 25 24 25 26 24 26 27 27 26 28 27 28 29 33 34 35 39 40 41 45 46 47 52 53 54 53 52 55 59 60 61 65 66 67 72 73 74 73 72 75 79 80 81 85 86 87 91 92 93 97 98 99 103 104 105 109 110 111 115 116 117</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4729\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4730\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID4733\">3.568409035945933 6.814490132649098 17.21621980177724 115.6831538193758 6.816291415642581 70.60798139029129 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 115.6831538193758 6.816291415642581 70.60798139029129 3.568409035945933 6.814490132649098 17.21621980177724 115.6831538193758 6.816291415642581 70.60798139029129 241.9718105879431 6.810680644316562 17.45837520432889 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 241.9718105879431 6.810680644316562 17.45837520432889 115.6831538193758 6.816291415642581 70.60798139029129 241.9718105879431 6.810680644316562 17.45837520432889 368.2604673529305 6.814472648774313 70.60798192694819 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 368.2604673529305 6.814472648774313 70.60798192694819 241.9718105879431 6.810680644316562 17.45837520432889 460.6139713682113 -716.4778733919748 234.189700917167 368.2604673529305 6.814472648774313 70.60798192694819 494.5491241210725 6.8106806442986 17.45837521186621 494.5491241210725 6.8106806442986 17.45837521186621 368.2604673529305 6.814472648774313 70.60798192694819 460.6139713682113 -716.4778733919748 234.189700917167 241.9718105879431 6.810680644316562 17.45837520432889 494.5491241210725 6.8106806442986 17.45837521186621 368.2604673529305 6.814472648774313 70.60798192694819 368.2604673529305 6.814472648774313 70.60798192694819 494.5491241210725 6.8106806442986 17.45837521186621 241.9718105879431 6.810680644316562 17.45837520432889 460.6139713682113 -716.4778733919748 234.189700917167 494.5491241210725 6.8106806442986 17.45837521186621 620.8377808860525 6.812913439943259 70.60798147844167 620.8377808860525 6.812913439943259 70.60798147844167 494.5491241210725 6.8106806442986 17.45837521186621 460.6139713682113 -716.4778733919748 234.189700917167 460.6139713682113 -716.4778733919748 234.189700917167 620.8377808860525 6.812913439943259 70.60798147844167 732.9532093060069 6.810680644296212 17.45837521898 732.9532093060069 6.810680644296212 17.45837521898 620.8377808860525 6.812913439943259 70.60798147844167 460.6139713682113 -716.4778733919748 234.189700917167 620.8377808860525 6.812913439943259 70.60798147844167 620.8377808860568 6.814472648773517 70.60798192690544 732.9532093060069 6.810680644296212 17.45837521898 732.9532093060069 6.810680644296212 17.45837521898 620.8377808860568 6.814472648773517 70.60798192690544 620.8377808860525 6.812913439943259 70.60798147844167 460.6139713682113 -716.4778733919748 234.189700917167 732.9532093060069 6.810680644296212 17.45837521898 732.9532223139943 6.810690125986866 76.51328347705754 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093060069 6.810680644296212 17.45837521898 460.6139713682113 -716.4778733919748 234.189700917167 732.9532093063351 6.812317978336068 76.51349330701618 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093060069 6.810680644296212 17.45837521898 460.6139713682113 -716.4778733919748 234.189700917167 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093060069 6.810680644296212 17.45837521898 460.6139713682113 -716.4778733919748 234.189700917167 732.9532093063351 6.812317978336068 76.51349330701618 732.9532093060069 6.810680644296212 17.45837521898 494.5491241210725 6.8106806442986 17.45837521186621 620.8377808860525 6.812913439943259 70.60798147844167 620.8377808860525 6.812913439943259 70.60798147844167 494.5491241210725 6.8106806442986 17.45837521186621 732.9532093060069 6.810680644296212 17.45837521898 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093063351 6.812317978336068 76.51349330701618 747.1264376524391 6.812223201792904 76.51349330949375 460.6139713682113 -716.4778733919748 234.189700917167 747.1264376524391 6.812223201792904 76.51349330949375 732.9532223139943 6.810690125986866 76.51328347705754 460.6139713682113 -716.4778733919748 234.189700917167 732.9532093063351 6.812317978336068 76.51349330701618 732.9532093060069 6.810680644296212 17.45837521898 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093063351 6.812317978336068 76.51349330701618 732.9532093063351 6.812317978336068 76.51349330701618 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093060069 6.810680644296212 17.45837521898 3.568409035954574 6.812223201826782 76.51349328730481 732.9532093063351 6.812317978336068 76.51349330701618 732.9532223139943 6.810690125986866 76.51328347705754 732.9532223139943 6.810690125986866 76.51328347705754 732.9532093063351 6.812317978336068 76.51349330701618 3.568409035954574 6.812223201826782 76.51349328730481</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID4733\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4731\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID4734\">-0.4299582780388869 -0.0008521759596814589 0.9028483554517719 -0.4299582780388869 -0.0008521759596814589 0.9028483554517719 -0.4299582780388869 -0.0008521759596814589 0.9028483554517719 0.4299582780388869 0.0008521759596814589 -0.9028483554517719 0.4299582780388869 0.0008521759596814589 -0.9028483554517719 0.4299582780388869 0.0008521759596814589 -0.9028483554517719 0.3609842530315138 0.3661274516665249 0.8576952012221223 0.3609842530315138 0.3661274516665249 0.8576952012221223 0.3609842530315138 0.3661274516665249 0.8576952012221223 -0.3609842530315138 -0.3661274516665249 -0.8576952012221223 -0.3609842530315138 -0.3661274516665249 -0.8576952012221223 -0.3609842530315138 -0.3661274516665249 -0.8576952012221223 -0.3831010018709191 0.1569538225640372 0.9102742004187722 -0.3831010018709191 0.1569538225640372 0.9102742004187722 -0.3831010018709191 0.1569538225640372 0.9102742004187722 0.3831010018709191 -0.1569538225640372 -0.9102742004187722 0.3831010018709191 -0.1569538225640372 -0.9102742004187722 0.3831010018709191 -0.1569538225640372 -0.9102742004187722 0.3756130433333598 0.249804730842502 0.8924754551955796 0.3756130433333598 0.249804730842502 0.8924754551955796 0.3756130433333598 0.249804730842502 0.8924754551955796 -0.3756130433333598 -0.249804730842502 -0.8924754551955796 -0.3756130433333598 -0.249804730842502 -0.8924754551955796 -0.3756130433333598 -0.249804730842502 -0.8924754551955796 4.426496584751e-014 0.9999999974548841 -7.134586102838354e-005 4.426496584751e-014 0.9999999974548841 -7.134586102838354e-005 4.426496584751e-014 0.9999999974548841 -7.134586102838354e-005 -4.426496584751e-014 -0.9999999974548841 7.134586102838354e-005 -4.426496584751e-014 -0.9999999974548841 7.134586102838354e-005 -4.426496584751e-014 -0.9999999974548841 7.134586102838354e-005 -0.3721198060128324 0.2824013926432465 0.884181148524513 -0.3721198060128324 0.2824013926432465 0.884181148524513 -0.3721198060128324 0.2824013926432465 0.884181148524513 0.3721198060128324 -0.2824013926432465 -0.884181148524513 0.3721198060128324 -0.2824013926432465 -0.884181148524513 0.3721198060128324 -0.2824013926432465 -0.884181148524513 0.4258226664836275 0.108820058549751 0.8982389724154716 0.4258226664836275 0.108820058549751 0.8982389724154716 0.4258226664836275 0.108820058549751 0.8982389724154716 -0.4258226664836275 -0.108820058549751 -0.8982389724154716 -0.4258226664836275 -0.108820058549751 -0.8982389724154716 -0.4258226664836275 -0.108820058549751 -0.8982389724154716 0.4283647347015759 -0.0002597520654789408 0.9036058801230285 0.4283647347015759 -0.0002597520654789408 0.9036058801230285 0.4283647347015759 -0.0002597520654789408 0.9036058801230285 -0.4283647347015759 0.0002597520654789408 -0.9036058801230285 -0.4283647347015759 0.0002597520654789408 -0.9036058801230285 -0.4283647347015759 0.0002597520654789408 -0.9036058801230285 -0.9358578286726064 0.3523778150113492 1.495639950690936e-007 -0.9358578286726064 0.3523778150113492 1.495639950690936e-007 -0.9358578286726064 0.3523778150113492 1.495639950690936e-007 0.9358578286726064 -0.3523778150113492 -1.495639950690936e-007 0.9358578286726064 -0.3523778150113492 -1.495639950690936e-007 0.9358578286726064 -0.3523778150113492 -1.495639950690936e-007 -0.9358583187659971 0.3523765133679367 -4.81020557757869e-006 -0.9358583187659971 0.3523765133679367 -4.81020557757869e-006 -0.9358583187659971 0.3523765133679367 -4.81020557757869e-006 -0.9358583187659971 0.3523765133679367 -4.81020557757869e-006 0.9358583187659971 -0.3523765133679367 4.81020557757869e-006 0.9358583187659971 -0.3523765133679367 4.81020557757869e-006 0.9358583187659971 -0.3523765133679367 4.81020557757869e-006 0.9358583187659971 -0.3523765133679367 4.81020557757869e-006 -1.910164731141618e-014 -0.9999999991175953 4.200963653558448e-005 -1.910164731141618e-014 -0.9999999991175953 4.200963653558448e-005 -1.910164731141618e-014 -0.9999999991175953 4.200963653558448e-005 1.910164731141618e-014 0.9999999991175953 -4.200963653558448e-005 1.910164731141618e-014 0.9999999991175953 -4.200963653558448e-005 1.910164731141618e-014 0.9999999991175953 -4.200963653558448e-005 -1.80391021871666e-005 0.2130029871362923 0.9770515478446404 -1.80391021871666e-005 0.2130029871362923 0.9770515478446404 -1.80391021871666e-005 0.2130029871362923 0.9770515478446404 -1.80391021871666e-005 0.2130029871362923 0.9770515478446404 1.80391021871666e-005 -0.2130029871362923 -0.9770515478446404 1.80391021871666e-005 -0.2130029871362923 -0.9770515478446404 1.80391021871666e-005 -0.2130029871362923 -0.9770515478446404 1.80391021871666e-005 -0.2130029871362923 -0.9770515478446404 0.999968075760748 0.007990460518521864 -2.215452428573613e-007 0.999968075760748 0.007990460518521864 -2.215452428573613e-007 0.999968075760748 0.007990460518521864 -2.215452428573613e-007 -0.999968075760748 -0.007990460518521864 2.215452428573613e-007 -0.999968075760748 -0.007990460518521864 2.215452428573613e-007 -0.999968075760748 -0.007990460518521864 2.215452428573613e-007 1.658317084327439e-008 -0.1278423427438335 0.9917945026071521 1.658317084327439e-008 -0.1278423427438335 0.9917945026071521 1.658317084327439e-008 -0.1278423427438335 0.9917945026071521 -1.658317084327439e-008 0.1278423427438335 -0.9917945026071521 -1.658317084327439e-008 0.1278423427438335 -0.9917945026071521 -1.658317084327439e-008 0.1278423427438335 -0.9917945026071521</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID4734\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4732\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4730\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4731\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4732\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8 12 13 14 18 19 20 24 25 26 30 31 32 36 37 38 42 43 44 48 49 50 54 55 56 57 56 55 62 63 64 68 69 70 71 68 70 76 77 78 82 83 84</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4732\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 15 16 17 21 22 23 27 28 29 33 34 35 39 40 41 45 46 47 51 52 53 58 59 60 59 58 61 65 66 67 72 73 74 72 75 73 79 80 81 85 86 87</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4735\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4736\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4738\">483.3843394114213 -0.01095816254257898 0.00358181165319138 483.3843441009414 1.284661266254261e-011 -2.347633198951371e-011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4738\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4737\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4736\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4737\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4739\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4740\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID4742\">732.9532093060069 6.810680644296212 17.45837521898 747.1264376524642 6.810680644278591 17.45837521939853</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID4742\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4741\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4740\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4741\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4743\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4744\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID4746\">3.568409035954574 6.812223201826782 76.51349328730481 3.568396027966628 6.812213720134196 17.45858502922579 241.9718105879431 6.810680644316562 17.45837520432889</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID4746\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4745\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4744\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4745\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4753\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4754\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4757\">8.841068731502446 3.574612474881633 36.22122382109441 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.85359739629348 0.0313275481457822 36.22095819460444 8.844228090207935 3.576283709028758 0.0008540603757580811 8.844228090207935 3.576283709028758 0.0008540603757580811 8.841068731502446 3.574612474881633 36.22122382109441 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.85359739629348 0.0313275481457822 36.22095819460444 12.4000416436902 0.04552741599354704 0.001001308182651428 8.85359739629348 0.0313275481457822 36.22095819460444 8.856756755001698 0.03299878228699527 0.0005884338854116322 12.39688228498176 0.04385618184505802 36.22137106890133 12.39688228498176 0.04385618184505802 36.22137106890133 12.4000416436902 0.04552741599354704 0.001001308182651428 8.85359739629348 0.0313275481457822 36.22095819460444 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.841068731502446 3.574612474881633 36.22122382109441 12.38751300290346 3.588812358292216 0.001060475520404225 8.844228090207935 3.576283709028758 0.0008540603757580811 12.38435364419615 3.587141124149184 36.22143023623991 12.38435364419615 3.587141124149184 36.22143023623991 8.841068731502446 3.574612474881633 36.22122382109441 12.38751300290346 3.588812358292216 0.001060475520404225 8.844228090207935 3.576283709028758 0.0008540603757580811 12.4000416436902 0.04552741599354704 0.001001308182651428 12.38435364419615 3.587141124149184 36.22143023623991 12.39688228498176 0.04385618184505802 36.22137106890133 12.38751300290346 3.588812358292216 0.001060475520404225 12.38751300290346 3.588812358292216 0.001060475520404225 12.4000416436902 0.04552741599354704 0.001001308182651428 12.38435364419615 3.587141124149184 36.22143023623991 12.39688228498176 0.04385618184505802 36.22137106890133</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4757\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4755\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4758\">-0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 -0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 -0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 -0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4758\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4756\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4754\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4755\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4756\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4756\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4759\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4760\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4763\">12.38751300290346 3.588812358292216 0.001060475520404225 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.844228090207935 3.576283709028758 0.0008540603757580811 12.4000416436902 0.04552741599354704 0.001001308182651428 12.4000416436902 0.04552741599354704 0.001001308182651428 12.38751300290346 3.588812358292216 0.001060475520404225 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.844228090207935 3.576283709028758 0.0008540603757580811</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4763\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4761\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4764\">8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4764\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4762\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4760\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4761\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4762\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4762\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4765\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4766\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4769\">2.273736754432321e-012 3.543284926734941 36.22070878192105 3.546444277802266 3.557484813533392 0.0004720416349357492 0.003159365109013379 3.54495616426766 0.0002656264900053884 3.543284912694162 3.555813576003402 36.22091519706609 3.543284912694162 3.555813576003402 36.22091519706609 2.273736754432321e-012 3.543284926734941 36.22070878192105 3.546444277802266 3.557484813533392 0.0004720416349357492 0.003159365109013379 3.54495616426766 0.0002656264900053884 2.273736754432321e-012 3.543284926734941 36.22070878192105 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.01252866479012482 4.547473508864641e-013 36.22044315543056 0.003159365109013379 3.54495616426766 0.0002656264900053884 0.003159365109013379 3.54495616426766 0.0002656264900053884 2.273736754432321e-012 3.543284926734941 36.22070878192105 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.01252866479012482 4.547473508864641e-013 36.22044315543056 3.55897291858787 0.01419987123290412 0.000412874297325061 3.543284912694162 3.555813576003402 36.22091519706609 3.555813553481585 0.01252863370382329 36.22085602972842 3.546444277802266 3.557484813533392 0.0004720416349357492 3.546444277802266 3.557484813533392 0.0004720416349357492 3.55897291858787 0.01419987123290412 0.000412874297325061 3.543284912694162 3.555813576003402 36.22091519706609 3.555813553481585 0.01252863370382329 36.22085602972842 3.55897291858787 0.01419987123290412 0.000412874297325061 0.01252866479012482 4.547473508864641e-013 36.22044315543056 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 3.555813553481585 0.01252863370382329 36.22085602972842 3.555813553481585 0.01252863370382329 36.22085602972842 3.55897291858787 0.01419987123290412 0.000412874297325061 0.01252866479012482 4.547473508864641e-013 36.22044315543056 0.01568802990027507 0.001671237526352343 4.263256414560601e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4769\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4767\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4770\">-0.003535865927505019 0.9999937477562393 4.583201771277479e-005 -0.003535865927505019 0.9999937477562393 4.583201771277479e-005 -0.003535865927505019 0.9999937477562393 4.583201771277479e-005 -0.003535865927505019 0.9999937477562393 4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4770\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4768\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4766\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4767\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4768\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4768\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4771\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4772\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4775\">3.546444277802266 3.557484813533392 0.0004720416349357492 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.003159365109013379 3.54495616426766 0.0002656264900053884 3.55897291858787 0.01419987123290412 0.000412874297325061 3.55897291858787 0.01419987123290412 0.000412874297325061 3.546444277802266 3.557484813533392 0.0004720416349357492 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.003159365109013379 3.54495616426766 0.0002656264900053884</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4775\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4773\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4776\">8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4776\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4774\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4772\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4773\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4774\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4774\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4798\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4799\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID4808\">4.661308498942617 0.483334096771614 -1.406534963138768 8.192020958834149 -3.072480510251808 -1.389108388631911 4.648779194086529 -3.059950809743896 -1.406645724505211 8.204549032601932 0.470804375383068 -1.388748914284776 8.204549032601932 0.470804375383068 -1.388748914284776 4.661308498942617 0.483334096771614 -1.406534963138768 8.192020958834149 -3.072480510251808 -1.389108388631911 4.648779194086529 -3.059950809743896 -1.406645724505211 8.192020958834149 -3.072480510251808 -1.389108388631911 4.452629714578904 -3.061919415809825 37.96290697041118 4.648779194086529 -3.059950809743896 -1.406645724505211 7.995871479327661 -3.074449116319101 37.9804443062844 7.995871479327661 -3.074449116319101 37.9804443062844 8.192020958834149 -3.072480510251808 -1.389108388631911 4.452629714578904 -3.061919415809825 37.96290697041118 4.648779194086529 -3.059950809743896 -1.406645724505211 4.46515901943252 0.4813654907038654 37.96301773177757 4.648779194086529 -3.059950809743896 -1.406645724505211 4.452629714578904 -3.061919415809825 37.96290697041118 4.661308498942617 0.483334096771614 -1.406534963138768 4.661308498942617 0.483334096771614 -1.406534963138768 4.46515901943252 0.4813654907038654 37.96301773177757 4.648779194086529 -3.059950809743896 -1.406645724505211 4.452629714578904 -3.061919415809825 37.96290697041118 4.46515901943252 0.4813654907038654 37.96301773177757 8.204549032601932 0.470804375383068 -1.388748914284776 4.661308498942617 0.483334096771614 -1.406534963138768 8.008399553096723 0.4688357693144098 37.98080378063187 8.008399553096723 0.4688357693144098 37.98080378063187 4.46515901943252 0.4813654907038654 37.96301773177757 8.204549032601932 0.470804375383068 -1.388748914284776 4.661308498942617 0.483334096771614 -1.406534963138768 8.192020958834149 -3.072480510251808 -1.389108388631911 8.008399553096723 0.4688357693144098 37.98080378063187 7.995871479327661 -3.074449116319101 37.9804443062844 8.204549032601932 0.470804375383068 -1.388748914284776 8.204549032601932 0.470804375383068 -1.388748914284776 8.192020958834149 -3.072480510251808 -1.389108388631911 8.008399553096723 0.4688357693144098 37.98080378063187 7.995871479327661 -3.074449116319101 37.9804443062844 7.995871479327661 -3.074449116319101 37.9804443062844 4.46515901943252 0.4813654907038654 37.96301773177757 4.452629714578904 -3.061919415809825 37.96290697041118 8.008399553096723 0.4688357693144098 37.98080378063187 8.008399553096723 0.4688357693144098 37.98080378063187 7.995871479327661 -3.074449116319101 37.9804443062844 4.46515901943252 0.4813654907038654 37.96301773177757 4.452629714578904 -3.061919415809825 37.96290697041118</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID4808\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4800\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID4809\">0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 0.00498472521065858 4.872957349724174e-005 -0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.00498472521065858 -4.872957349724174e-005 0.9999875749928111 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 -0.003535867623174147 -0.9999937465048592 -6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 0.003535867623174147 0.9999937465048592 6.775933179638655e-005 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 -0.9999813388742292 0.003536160132398574 -0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.9999813388742292 -0.003536160132398574 0.004981714044587119 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 0.003535869988381978 0.9999937464964953 6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 -0.003535869988381978 -0.9999937464964953 -6.775934356239667e-005 0.9999813388662154 -0.003536162398880151 0.004981714044411586 0.9999813388662154 -0.003536162398880151 0.004981714044411586 0.9999813388662154 -0.003536162398880151 0.004981714044411586 0.9999813388662154 -0.003536162398880151 0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.9999813388662154 0.003536162398880151 -0.004981714044411586 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 -0.0049847252107158 -4.872957347706883e-005 0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109 0.0049847252107158 4.872957347706883e-005 -0.9999875749928109</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID4809\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4807\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4810\">0.0992072824677179 3.489873048697289 0.1111872953837707 1.982314216392339 -0.8007129708762493 3.469803970650682 -0.7887329602069189 1.962245142007964 2.033699854526212 16.16092915128026 2.083519742848261 -0.5909838046564303 1.133710819201787 16.1534669399032 1.183530707524126 -0.5984460160335298 -0.1269528607994594 -0.6083562913138345 -0.1262766573421787 16.14376452360891 0.7730471321098835 -0.6084034213334176 0.7737233355667 16.14371739358934 -2.033699704143518 16.16097994892614 -1.133710981493862 16.1534119091125 -2.083519592463641 -0.5909330070107128 -1.183530869815227 -0.5985010468242158 0.1269528600213134 -0.6082991432548298 -0.7730471264786223 -0.6084521030238068 0.1262766564508882 16.14382167166802 -0.7737233300487022 16.1436687118989 -0.09919430571591166 3.489915116099753 0.8007259476277558 3.469846038058877 -0.1111743186284651 1.982356283792643 0.7887459369618186 1.962287209415597</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID4810\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4801\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4799\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4800\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4801\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27 32 33 34 33 32 35 40 41 42 41 40 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4801\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4807\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 12 4 13 5 14 6 15 7 14 6 13 5 20 8 21 9 22 10 23 11 22 10 21 9 28 12 29 13 30 14 31 15 30 14 29 13 36 16 37 17 38 18 39 19 38 18 37 17 44 20 45 21 46 22 47 23 46 22 45 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4815\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4816\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4819\">8.841068731502446 3.574612474881633 36.22122382109441 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.85359739629348 0.0313275481457822 36.22095819460444 8.844228090207935 3.576283709028758 0.0008540603757580811 8.844228090207935 3.576283709028758 0.0008540603757580811 8.841068731502446 3.574612474881633 36.22122382109441 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.85359739629348 0.0313275481457822 36.22095819460444 12.4000416436902 0.04552741599354704 0.001001308182651428 8.85359739629348 0.0313275481457822 36.22095819460444 8.856756755001698 0.03299878228699527 0.0005884338854116322 12.39688228498176 0.04385618184505802 36.22137106890133 12.39688228498176 0.04385618184505802 36.22137106890133 12.4000416436902 0.04552741599354704 0.001001308182651428 8.85359739629348 0.0313275481457822 36.22095819460444 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.841068731502446 3.574612474881633 36.22122382109441 12.38751300290346 3.588812358292216 0.001060475520404225 8.844228090207935 3.576283709028758 0.0008540603757580811 12.38435364419615 3.587141124149184 36.22143023623991 12.38435364419615 3.587141124149184 36.22143023623991 8.841068731502446 3.574612474881633 36.22122382109441 12.38751300290346 3.588812358292216 0.001060475520404225 8.844228090207935 3.576283709028758 0.0008540603757580811 12.4000416436902 0.04552741599354704 0.001001308182651428 12.38435364419615 3.587141124149184 36.22143023623991 12.39688228498176 0.04385618184505802 36.22137106890133 12.38751300290346 3.588812358292216 0.001060475520404225 12.38751300290346 3.588812358292216 0.001060475520404225 12.4000416436902 0.04552741599354704 0.001001308182651428 12.38435364419615 3.587141124149184 36.22143023623991 12.39688228498176 0.04385618184505802 36.22137106890133</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4819\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4817\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4820\">-0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 -0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 -0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 -0.9999937450053209 -0.003535861063749754 -8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.9999937450053209 0.003535861063749754 8.738862185303521e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 0.003535864230126111 -0.999993747762241 -4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535864230126111 0.999993747762241 4.583201787760304e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 -0.003535865927621657 0.9999937477562388 4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.003535865927621657 -0.9999937477562388 -4.583201775037493e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 0.9999937450113235 0.003535859366108338 8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005 -0.9999937450113235 -0.003535859366108338 -8.738862175506807e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4820\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4818\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4816\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4817\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4818\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4818\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4821\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4822\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4826\">12.38751300290346 3.588812358292216 0.001060475520404225 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.844228090207935 3.576283709028758 0.0008540603757580811 12.4000416436902 0.04552741599354704 0.001001308182651428 12.4000416436902 0.04552741599354704 0.001001308182651428 12.38751300290346 3.588812358292216 0.001060475520404225 8.856756755001698 0.03299878228699527 0.0005884338854116322 8.844228090207935 3.576283709028758 0.0008540603757580811</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4826\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4823\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4827\">8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 8.722601972060987e-005 4.614072558133289e-005 -0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277 -8.722601972060987e-005 -4.614072558133289e-005 0.9999999951313277</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4827\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4825\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4828\">-3.149610587699989 0.01937210846974111 -3.14642831426314 1.527054993239357 -2.249616220249459 0.01404111925404477 -2.246433945289013 1.521724001457559</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4828\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4824\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4822\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4823\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4824\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4824\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4825\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4829\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4830\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4833\">2.273736754432321e-012 3.543284926734941 36.22070878192105 3.546444277802266 3.557484813533392 0.0004720416349357492 0.003159365109013379 3.54495616426766 0.0002656264900053884 3.543284912694162 3.555813576003402 36.22091519706609 3.543284912694162 3.555813576003402 36.22091519706609 2.273736754432321e-012 3.543284926734941 36.22070878192105 3.546444277802266 3.557484813533392 0.0004720416349357492 0.003159365109013379 3.54495616426766 0.0002656264900053884 2.273736754432321e-012 3.543284926734941 36.22070878192105 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.01252866479012482 4.547473508864641e-013 36.22044315543056 0.003159365109013379 3.54495616426766 0.0002656264900053884 0.003159365109013379 3.54495616426766 0.0002656264900053884 2.273736754432321e-012 3.543284926734941 36.22070878192105 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.01252866479012482 4.547473508864641e-013 36.22044315543056 3.55897291858787 0.01419987123290412 0.000412874297325061 3.543284912694162 3.555813576003402 36.22091519706609 3.555813553481585 0.01252863370382329 36.22085602972842 3.546444277802266 3.557484813533392 0.0004720416349357492 3.546444277802266 3.557484813533392 0.0004720416349357492 3.55897291858787 0.01419987123290412 0.000412874297325061 3.543284912694162 3.555813576003402 36.22091519706609 3.555813553481585 0.01252863370382329 36.22085602972842 3.55897291858787 0.01419987123290412 0.000412874297325061 0.01252866479012482 4.547473508864641e-013 36.22044315543056 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 3.555813553481585 0.01252863370382329 36.22085602972842 3.555813553481585 0.01252863370382329 36.22085602972842 3.55897291858787 0.01419987123290412 0.000412874297325061 0.01252866479012482 4.547473508864641e-013 36.22044315543056 0.01568802990027507 0.001671237526352343 4.263256414560601e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4833\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4831\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID4834\">-0.003535865927505019 0.9999937477562393 4.583201771277479e-005 -0.003535865927505019 0.9999937477562393 4.583201771277479e-005 -0.003535865927505019 0.9999937477562393 4.583201771277479e-005 -0.003535865927505019 0.9999937477562393 4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 0.003535865927505019 -0.9999937477562393 -4.583201771277479e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 -0.9999937450053212 -0.003535861063678643 -8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450053212 0.003535861063678643 8.738862188973156e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 0.9999937450113234 0.003535859366125823 8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 -0.9999937450113234 -0.003535859366125823 -8.738862176789818e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 0.003535864230049163 -0.9999937477622413 -4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005 -0.003535864230049163 0.9999937477622413 4.583201784204986e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID4834\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4832\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4830\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4831\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4832\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4832\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4835\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4836\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4840\">3.546444277802266 3.557484813533392 0.0004720416349357492 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.003159365109013379 3.54495616426766 0.0002656264900053884 3.55897291858787 0.01419987123290412 0.000412874297325061 3.55897291858787 0.01419987123290412 0.000412874297325061 3.546444277802266 3.557484813533392 0.0004720416349357492 0.01568802990027507 0.001671237526352343 4.263256414560601e-013 0.003159365109013379 3.54495616426766 0.0002656264900053884</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4840\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4837\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID4841\">8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 8.722601974877484e-005 4.614072555338131e-005 -0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275 -8.722601974877484e-005 -4.614072555338131e-005 0.9999999951313275</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID4841\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4839\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID4842\">-0.9039791270298103 0.006042107897577014 -0.9007968535932495 1.513724992667967 -0.003984759579511098 0.0007111186818806795 -0.0008024846197001554 1.508394000885201</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID4842\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4838\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4836\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4837\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4838\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4838\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID4839\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4922\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4923\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4928\">-2496.375280205561 -170.5856722036069 13.73575163178117 -2645.333479874195 754.9200501380484 13.92100592722864 -2659.723394422013 763.1132506166061 13.92175505159986 -2486.222761609938 -163.0848426342739 13.73802726468643 -1632.981865982339 -601.2000831365391 13.70367857330598 -1637.021503813972 -584.9784613668996 13.70682820183373 -1637.021503813972 -584.9784613668996 13.70682820183373 -1632.981865982339 -601.2000831365391 13.70367857330598 -2486.222761609938 -163.0848426342739 13.73802726468643 -2496.375280205561 -170.5856722036069 13.73575163178117 -2645.333479874195 754.9200501380484 13.92100592722864 -2659.723394422013 763.1132506166061 13.92175505159986</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4928\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4924\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4929\">-6.815510693843557e-005 -0.0002111348943597894 0.9999999753884687 -6.815510693843557e-005 -0.0002111348943597894 0.9999999753884687 -6.815510693843557e-005 -0.0002111348943597894 0.9999999753884687 -6.815510693843557e-005 -0.0002111348943597894 0.9999999753884687 -6.815510693843557e-005 -0.0002111348943597894 0.9999999753884687 -6.815510693843557e-005 -0.0002111348943597894 0.9999999753884687 6.815510693843557e-005 0.0002111348943597894 -0.9999999753884687 6.815510693843557e-005 0.0002111348943597894 -0.9999999753884687 6.815510693843557e-005 0.0002111348943597894 -0.9999999753884687 6.815510693843557e-005 0.0002111348943597894 -0.9999999753884687 6.815510693843557e-005 0.0002111348943597894 -0.9999999753884687 6.815510693843557e-005 0.0002111348943597894 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4929\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4925\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4923\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4924\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4925\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4925\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4930\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4931\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4934\">-2659.723394422013 763.1132506166061 13.92175505159986 -2496.37478177091 -170.584131024681 6.392175699823442 -2496.375280205561 -170.5856722036069 13.73575163178117 -2659.722895987349 763.1147917955148 6.578179119642416 -2659.722895987349 763.1147917955148 6.578179119642416 -2659.723394422013 763.1132506166061 13.92175505159986 -2496.37478177091 -170.584131024681 6.392175699823442 -2496.375280205561 -170.5856722036069 13.73575163178117 -1632.981865982339 -601.2000831365391 13.70367857330598 -2496.37478177091 -170.584131024681 6.392175699823442 -1632.981367547692 -601.1985419576063 6.36010264134825 -2496.375280205561 -170.5856722036069 13.73575163178117 -2496.375280205561 -170.5856722036069 13.73575163178117 -1632.981865982339 -601.2000831365391 13.70367857330598 -2496.37478177091 -170.584131024681 6.392175699823442 -1632.981367547692 -601.1985419576063 6.36010264134825</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4934\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4932\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4935\">-0.9850392771523128 -0.1723299505401789 -0.0001030246021528928 -0.9850392771523128 -0.1723299505401789 -0.0001030246021528928 -0.9850392771523128 -0.1723299505401789 -0.0001030246021528928 -0.9850392771523128 -0.1723299505401789 -0.0001030246021528928 0.9850392771523128 0.1723299505401789 0.0001030246021528928 0.9850392771523128 0.1723299505401789 0.0001030246021528928 0.9850392771523128 0.1723299505401789 0.0001030246021528928 0.9850392771523128 0.1723299505401789 0.0001030246021528928 -0.4463159582009369 -0.8948754203174033 -0.0002180984420539814 -0.4463159582009369 -0.8948754203174033 -0.0002180984420539814 -0.4463159582009369 -0.8948754203174033 -0.0002180984420539814 -0.4463159582009369 -0.8948754203174033 -0.0002180984420539814 0.4463159582009369 0.8948754203174033 0.0002180984420539814 0.4463159582009369 0.8948754203174033 0.0002180984420539814 0.4463159582009369 0.8948754203174033 0.0002180984420539814 0.4463159582009369 0.8948754203174033 0.0002180984420539814</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4935\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4933\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4931\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4932\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4933\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4936\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4937\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4940\">-2486.223260044577 -163.0863838131921 21.08160319664405 -2630.944063761077 746.7253084805647 21.26383273481498 -2645.33397830887 754.9185089591194 21.26458185918626 -2476.070741448933 -155.5855542438707 21.08387882954919 -1637.022002248618 -584.980002545821 21.05040413379141 -1641.06164008025 -568.7583807761915 21.05355376231905 -1641.06164008025 -568.7583807761915 21.05355376231905 -1637.022002248618 -584.980002545821 21.05040413379141 -2476.070741448933 -155.5855542438707 21.08387882954919 -2486.223260044577 -163.0863838131921 21.08160319664405 -2630.944063761077 746.7253084805647 21.26383273481498 -2645.33397830887 754.9185089591194 21.26458185918626</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4940\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4938\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4941\">-6.815510693854634e-005 -0.0002111348943598794 0.9999999753884687 -6.815510693854634e-005 -0.0002111348943598794 0.9999999753884687 -6.815510693854634e-005 -0.0002111348943598794 0.9999999753884687 -6.815510693854634e-005 -0.0002111348943598794 0.9999999753884687 -6.815510693854634e-005 -0.0002111348943598794 0.9999999753884687 -6.815510693854634e-005 -0.0002111348943598794 0.9999999753884687 6.815510693854634e-005 0.0002111348943598794 -0.9999999753884687 6.815510693854634e-005 0.0002111348943598794 -0.9999999753884687 6.815510693854634e-005 0.0002111348943598794 -0.9999999753884687 6.815510693854634e-005 0.0002111348943598794 -0.9999999753884687 6.815510693854634e-005 0.0002111348943598794 -0.9999999753884687 6.815510693854634e-005 0.0002111348943598794 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4941\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4939\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4937\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4938\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4939\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4939\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4942\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4943\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4946\">-2645.33397830887 754.9185089591194 21.26458185918626 -2486.222761609938 -163.0848426342739 13.73802726468643 -2486.223260044577 -163.0863838131921 21.08160319664405 -2645.333479874195 754.9200501380484 13.92100592722864 -2645.333479874195 754.9200501380484 13.92100592722864 -2645.33397830887 754.9185089591194 21.26458185918626 -2486.222761609938 -163.0848426342739 13.73802726468643 -2486.223260044577 -163.0863838131921 21.08160319664405 -1637.022002248618 -584.980002545821 21.05040413379141 -2486.222761609938 -163.0848426342739 13.73802726468643 -1637.021503813972 -584.9784613668996 13.70682820183373 -2486.223260044577 -163.0863838131921 21.08160319664405 -2486.223260044577 -163.0863838131921 21.08160319664405 -1637.022002248618 -584.980002545821 21.05040413379141 -2486.222761609938 -163.0848426342739 13.73802726468643 -1637.021503813972 -584.9784613668996 13.70682820183373</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4946\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4944\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4947\">-0.9853098481876284 -0.1707761473793007 -0.0001027168735683322 -0.9853098481876284 -0.1707761473793007 -0.0001027168735683322 -0.9853098481876284 -0.1707761473793007 -0.0001027168735683322 -0.9853098481876284 -0.1707761473793007 -0.0001027168735683322 0.9853098481876284 0.1707761473793007 0.0001027168735683322 0.9853098481876284 0.1707761473793007 0.0001027168735683322 0.9853098481876284 0.1707761473793007 0.0001027168735683322 0.9853098481876284 0.1707761473793007 0.0001027168735683322 -0.4449282867911442 -0.8955661740061501 -0.0002181492228058016 -0.4449282867911442 -0.8955661740061501 -0.0002181492228058016 -0.4449282867911442 -0.8955661740061501 -0.0002181492228058016 -0.4449282867911442 -0.8955661740061501 -0.0002181492228058016 0.4449282867911442 0.8955661740061501 0.0002181492228058016 0.4449282867911442 0.8955661740061501 0.0002181492228058016 0.4449282867911442 0.8955661740061501 0.0002181492228058016 0.4449282867911442 0.8955661740061501 0.0002181492228058016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4947\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4945\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4943\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4944\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4945\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4948\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4949\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4952\">-2630.944562195717 746.7237673016447 28.60740866677266 -2476.070741448933 -155.5855542438707 21.08387882954919 -2476.07123988357 -155.5870954227842 28.42745476150681 -2630.944063761077 746.7253084805647 21.26383273481498 -2630.944063761077 746.7253084805647 21.26383273481498 -2630.944562195717 746.7237673016447 28.60740866677266 -2476.070741448933 -155.5855542438707 21.08387882954919 -2476.07123988357 -155.5870954227842 28.42745476150681 -1641.062138514902 -568.7599219551145 28.39712969427649 -2476.070741448933 -155.5855542438707 21.08387882954919 -1641.06164008025 -568.7583807761915 21.05355376231905 -2476.07123988357 -155.5870954227842 28.42745476150681 -2476.07123988357 -155.5870954227842 28.42745476150681 -1641.062138514902 -568.7599219551145 28.39712969427649 -2476.070741448933 -155.5855542438707 21.08387882954919 -1641.06164008025 -568.7583807761915 21.05355376231905</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4952\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4950\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4953\">-0.9855874046757136 -0.1691669508480952 -0.000102397994762937 -0.9855874046757136 -0.1691669508480952 -0.000102397994762937 -0.9855874046757136 -0.1691669508480952 -0.000102397994762937 -0.9855874046757136 -0.1691669508480952 -0.000102397994762937 0.9855874046757136 0.1691669508480952 0.000102397994762937 0.9855874046757136 0.1691669508480952 0.000102397994762937 0.9855874046757136 0.1691669508480952 0.000102397994762937 0.9855874046757136 0.1691669508480952 0.000102397994762937 -0.4434900667516467 -0.8962792606553107 -0.0002182012596729584 -0.4434900667516467 -0.8962792606553107 -0.0002182012596729584 -0.4434900667516467 -0.8962792606553107 -0.0002182012596729584 -0.4434900667516467 -0.8962792606553107 -0.0002182012596729584 0.4434900667516467 0.8962792606553107 0.0002182012596729584 0.4434900667516467 0.8962792606553107 0.0002182012596729584 0.4434900667516467 0.8962792606553107 0.0002182012596729584 0.4434900667516467 0.8962792606553107 0.0002182012596729584</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4953\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4951\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4949\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4950\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4951\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4954\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4955\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4958\">-2465.919219722589 -148.0878070323763 35.7733063263695 -2602.165231534785 730.3358251655986 35.94948634998776 -2616.555146082561 738.5290256441731 35.95023547435899 -2455.766701126942 -140.5869774630464 35.77558195927458 -1645.102274781188 -552.5398413644044 35.74385525476216 -1649.141912612823 -536.3182195947719 35.74700488328967 -1649.141912612823 -536.3182195947719 35.74700488328967 -1645.102274781188 -552.5398413644044 35.74385525476216 -2455.766701126942 -140.5869774630464 35.77558195927458 -2465.919219722589 -148.0878070323763 35.7733063263695 -2602.165231534785 730.3358251655986 35.94948634998776 -2616.555146082561 738.5290256441731 35.95023547435899</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4958\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4956\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4959\">-6.815510693860515e-005 -0.0002111348943597482 0.9999999753884687 -6.815510693860515e-005 -0.0002111348943597482 0.9999999753884687 -6.815510693860515e-005 -0.0002111348943597482 0.9999999753884687 -6.815510693860515e-005 -0.0002111348943597482 0.9999999753884687 -6.815510693860515e-005 -0.0002111348943597482 0.9999999753884687 -6.815510693860515e-005 -0.0002111348943597482 0.9999999753884687 6.815510693860515e-005 0.0002111348943597482 -0.9999999753884687 6.815510693860515e-005 0.0002111348943597482 -0.9999999753884687 6.815510693860515e-005 0.0002111348943597482 -0.9999999753884687 6.815510693860515e-005 0.0002111348943597482 -0.9999999753884687 6.815510693860515e-005 0.0002111348943597482 -0.9999999753884687 6.815510693860515e-005 0.0002111348943597482 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4959\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4957\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4955\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4956\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4957\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4957\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4960\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4961\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4964\">-2616.555146082561 738.5290256441731 35.95023547435899 -2465.918721287946 -148.0862658534578 28.42973039441194 -2465.919219722589 -148.0878070323763 35.7733063263695 -2616.554647647934 738.5305668230928 28.60665954240171 -2616.554647647934 738.5305668230928 28.60665954240171 -2616.555146082561 738.5290256441731 35.95023547435899 -2465.918721287946 -148.0862658534578 28.42973039441194 -2465.919219722589 -148.0878070323763 35.7733063263695 -1645.102274781188 -552.5398413644044 35.74385525476216 -2465.918721287946 -148.0862658534578 28.42973039441194 -1645.101776346532 -552.5383001854698 28.40027932280436 -2465.919219722589 -148.0878070323763 35.7733063263695 -2465.919219722589 -148.0878070323763 35.7733063263695 -1645.102274781188 -552.5398413644044 35.74385525476216 -2465.918721287946 -148.0862658534578 28.42973039441194 -1645.101776346532 -552.5383001854698 28.40027932280436</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4964\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4962\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4965\">-0.9858721795357066 -0.1674993588040613 -0.0001020673495583129 -0.9858721795357066 -0.1674993588040613 -0.0001020673495583129 -0.9858721795357066 -0.1674993588040613 -0.0001020673495583129 -0.9858721795357066 -0.1674993588040613 -0.0001020673495583129 0.9858721795357066 0.1674993588040613 0.0001020673495583129 0.9858721795357066 0.1674993588040613 0.0001020673495583129 0.9858721795357066 0.1674993588040613 0.0001020673495583129 0.9858721795357066 0.1674993588040613 0.0001020673495583129 -0.4419984980421914 -0.8970157635701733 -0.0002182545896729147 -0.4419984980421914 -0.8970157635701733 -0.0002182545896729147 -0.4419984980421914 -0.8970157635701733 -0.0002182545896729147 -0.4419984980421914 -0.8970157635701733 -0.0002182545896729147 0.4419984980421914 0.8970157635701733 0.0002182545896729147 0.4419984980421914 0.8970157635701733 0.0002182545896729147 0.4419984980421914 0.8970157635701733 0.0002182545896729147 0.4419984980421914 0.8970157635701733 0.0002182545896729147</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4965\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4963\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4961\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4962\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4963\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4966\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4967\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4970\">-2455.767199561601 -140.5885186419697 43.11915789123277 -2587.775815421641 722.1410835081178 43.29231315757444 -2602.165729969443 730.3342839866912 43.29306228194533 -2445.614680965959 -133.0876890726381 43.12143352413796 -1649.142411047475 -536.3197607736968 43.09058081524735 -1653.182048879094 -520.0981390040597 43.0937304437751 -1653.182048879094 -520.0981390040597 43.0937304437751 -1649.142411047475 -536.3197607736968 43.09058081524735 -2445.614680965959 -133.0876890726381 43.12143352413796 -2455.767199561601 -140.5885186419697 43.11915789123277 -2587.775815421641 722.1410835081178 43.29231315757444 -2602.165729969443 730.3342839866912 43.29306228194533</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4970\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4968\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4971\">-6.815510693822692e-005 -0.000211134894359433 0.9999999753884687 -6.815510693822692e-005 -0.000211134894359433 0.9999999753884687 -6.815510693822692e-005 -0.000211134894359433 0.9999999753884687 -6.815510693822692e-005 -0.000211134894359433 0.9999999753884687 -6.815510693822692e-005 -0.000211134894359433 0.9999999753884687 -6.815510693822692e-005 -0.000211134894359433 0.9999999753884687 6.815510693822692e-005 0.000211134894359433 -0.9999999753884687 6.815510693822692e-005 0.000211134894359433 -0.9999999753884687 6.815510693822692e-005 0.000211134894359433 -0.9999999753884687 6.815510693822692e-005 0.000211134894359433 -0.9999999753884687 6.815510693822692e-005 0.000211134894359433 -0.9999999753884687 6.815510693822692e-005 0.000211134894359433 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4971\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4969\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4967\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4968\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4969\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4969\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4972\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4973\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4976\">-2602.165729969443 730.3342839866912 43.29306228194533 -2455.766701126942 -140.5869774630464 35.77558195927458 -2455.767199561601 -140.5885186419697 43.11915789123277 -2602.165231534785 730.3358251655986 35.94948634998776 -2602.165231534785 730.3358251655986 35.94948634998776 -2602.165729969443 730.3342839866912 43.29306228194533 -2455.766701126942 -140.5869774630464 35.77558195927458 -2455.767199561601 -140.5885186419697 43.11915789123277 -1649.142411047475 -536.3197607736968 43.09058081524735 -2455.766701126942 -140.5869774630464 35.77558195927458 -1649.141912612823 -536.3182195947719 35.74700488328967 -2455.767199561601 -140.5885186419697 43.11915789123277 -2455.767199561601 -140.5885186419697 43.11915789123277 -1649.142411047475 -536.3197607736968 43.09058081524735 -2455.766701126942 -140.5869774630464 35.77558195927458 -1649.141912612823 -536.3182195947719 35.74700488328967</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4976\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4974\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4977\">-0.9861644118906812 -0.1657701492201725 -0.0001017242795152334 -0.9861644118906812 -0.1657701492201725 -0.0001017242795152334 -0.9861644118906812 -0.1657701492201725 -0.0001017242795152334 -0.9861644118906812 -0.1657701492201725 -0.0001017242795152334 0.9861644118906812 0.1657701492201725 0.0001017242795152334 0.9861644118906812 0.1657701492201725 0.0001017242795152334 0.9861644118906812 0.1657701492201725 0.0001017242795152334 0.9861644118906812 0.1657701492201725 0.0001017242795152334 -0.4404505709316056 -0.8977768358044742 -0.0002183092506862996 -0.4404505709316056 -0.8977768358044742 -0.0002183092506862996 -0.4404505709316056 -0.8977768358044742 -0.0002183092506862996 -0.4404505709316056 -0.8977768358044742 -0.0002183092506862996 0.4404505709316056 0.8977768358044742 0.0002183092506862996 0.4404505709316056 0.8977768358044742 0.0002183092506862996 0.4404505709316056 0.8977768358044742 0.0002183092506862996 0.4404505709316056 0.8977768358044742 0.0002183092506862996</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4977\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4975\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4973\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4974\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4975\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4978\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4979\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4982\">-2445.615179400607 -133.0892302515621 50.46500945609536 -2573.386399308503 713.9463418506473 50.63513996516066 -2587.776313856279 722.1395423292015 50.635889089532 -2435.462660804968 -125.5884006822235 50.46728508900038 -1653.182547313747 -520.0996801829783 50.43730637573187 -1657.222185145379 -503.8780584133509 50.44045600426013 -1657.222185145379 -503.8780584133509 50.44045600426013 -1653.182547313747 -520.0996801829783 50.43730637573187 -2435.462660804968 -125.5884006822235 50.46728508900038 -2445.615179400607 -133.0892302515621 50.46500945609536 -2573.386399308503 713.9463418506473 50.63513996516066 -2587.776313856279 722.1395423292015 50.635889089532</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4982\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4980\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4983\">-6.815510693868999e-005 -0.0002111348943602273 0.9999999753884687 -6.815510693868999e-005 -0.0002111348943602273 0.9999999753884687 -6.815510693868999e-005 -0.0002111348943602273 0.9999999753884687 -6.815510693868999e-005 -0.0002111348943602273 0.9999999753884687 -6.815510693868999e-005 -0.0002111348943602273 0.9999999753884687 -6.815510693868999e-005 -0.0002111348943602273 0.9999999753884687 6.815510693868999e-005 0.0002111348943602273 -0.9999999753884687 6.815510693868999e-005 0.0002111348943602273 -0.9999999753884687 6.815510693868999e-005 0.0002111348943602273 -0.9999999753884687 6.815510693868999e-005 0.0002111348943602273 -0.9999999753884687 6.815510693868999e-005 0.0002111348943602273 -0.9999999753884687 6.815510693868999e-005 0.0002111348943602273 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4983\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4981\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4979\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4980\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4981\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4981\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4984\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4985\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4988\">-2587.776313856279 722.1395423292015 50.635889089532 -2445.614680965959 -133.0876890726381 43.12143352413796 -2445.615179400607 -133.0892302515621 50.46500945609536 -2587.775815421641 722.1410835081178 43.29231315757444 -2587.775815421641 722.1410835081178 43.29231315757444 -2587.776313856279 722.1395423292015 50.635889089532 -2445.614680965959 -133.0876890726381 43.12143352413796 -2445.615179400607 -133.0892302515621 50.46500945609536 -1653.182547313747 -520.0996801829783 50.43730637573187 -2445.614680965959 -133.0876890726381 43.12143352413796 -1653.182048879094 -520.0981390040597 43.0937304437751 -2445.615179400607 -133.0892302515621 50.46500945609536 -2445.615179400607 -133.0892302515621 50.46500945609536 -1653.182547313747 -520.0996801829783 50.43730637573187 -2445.614680965959 -133.0876890726381 43.12143352413796 -1653.182048879094 -520.0981390040597 43.0937304437751</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4988\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4986\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID4989\">-0.9864643466106255 -0.1639758597799845 -0.0001013680739848998 -0.9864643466106255 -0.1639758597799845 -0.0001013680739848998 -0.9864643466106255 -0.1639758597799845 -0.0001013680739848998 -0.9864643466106255 -0.1639758597799845 -0.0001013680739848998 0.9864643466106255 0.1639758597799845 0.0001013680739848998 0.9864643466106255 0.1639758597799845 0.0001013680739848998 0.9864643466106255 0.1639758597799845 0.0001013680739848998 0.9864643466106255 0.1639758597799845 0.0001013680739848998 -0.4388430460912621 -0.8985637057070282 -0.0002183652808762938 -0.4388430460912621 -0.8985637057070282 -0.0002183652808762938 -0.4388430460912621 -0.8985637057070282 -0.0002183652808762938 -0.4388430460912621 -0.8985637057070282 -0.0002183652808762938 0.4388430460912621 0.8985637057070282 0.0002183652808762938 0.4388430460912621 0.8985637057070282 0.0002183652808762938 0.4388430460912621 0.8985637057070282 0.0002183652808762938 0.4388430460912621 0.8985637057070282 0.0002183652808762938</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID4989\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4987\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4985\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4986\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4987\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4990\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4991\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4994\">-2435.463159239615 -125.5899418611433 57.81086102095801 -2558.996983195356 705.7516001931671 57.97796677274683 -2573.386897743143 713.9448006717233 57.97871589711845 -2425.310640643987 -118.089112291812 57.8131366538632 -1657.222683580028 -503.8795995922665 57.78403193621781 -1661.262321411671 -487.6579778226368 57.78718156474545 -1661.262321411671 -487.6579778226368 57.78718156474545 -1657.222683580028 -503.8795995922665 57.78403193621781 -2425.310640643987 -118.089112291812 57.8131366538632 -2435.463159239615 -125.5899418611433 57.81086102095801 -2558.996983195356 705.7516001931671 57.97796677274683 -2573.386897743143 713.9448006717233 57.97871589711845</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4994\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4992\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID4995\">-6.815510693836395e-005 -0.0002111348943595886 0.9999999753884687 -6.815510693836395e-005 -0.0002111348943595886 0.9999999753884687 -6.815510693836395e-005 -0.0002111348943595886 0.9999999753884687 -6.815510693836395e-005 -0.0002111348943595886 0.9999999753884687 -6.815510693836395e-005 -0.0002111348943595886 0.9999999753884687 -6.815510693836395e-005 -0.0002111348943595886 0.9999999753884687 6.815510693836395e-005 0.0002111348943595886 -0.9999999753884687 6.815510693836395e-005 0.0002111348943595886 -0.9999999753884687 6.815510693836395e-005 0.0002111348943595886 -0.9999999753884687 6.815510693836395e-005 0.0002111348943595886 -0.9999999753884687 6.815510693836395e-005 0.0002111348943595886 -0.9999999753884687 6.815510693836395e-005 0.0002111348943595886 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID4995\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4993\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4991\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4992\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4993\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4993\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID4996\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID4997\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5000\">-2573.386897743143 713.9448006717233 57.97871589711845 -2435.462660804968 -125.5884006822235 50.46728508900038 -2435.463159239615 -125.5899418611433 57.81086102095801 -2573.386399308503 713.9463418506473 50.63513996516066 -2573.386399308503 713.9463418506473 50.63513996516066 -2573.386897743143 713.9448006717233 57.97871589711845 -2435.462660804968 -125.5884006822235 50.46728508900038 -2435.463159239615 -125.5899418611433 57.81086102095801 -1657.222683580028 -503.8795995922665 57.78403193621781 -2435.462660804968 -125.5884006822235 50.46728508900038 -1657.222185145379 -503.8780584133509 50.44045600426013 -2435.463159239615 -125.5899418611433 57.81086102095801 -2435.463159239615 -125.5899418611433 57.81086102095801 -1657.222683580028 -503.8795995922665 57.78403193621781 -2435.462660804968 -125.5884006822235 50.46728508900038 -1657.222185145379 -503.8780584133509 50.44045600426013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5000\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID4998\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5001\">-0.9867722336833485 -0.1621127651697595 -0.0001009979681434288 -0.9867722336833485 -0.1621127651697595 -0.0001009979681434288 -0.9867722336833485 -0.1621127651697595 -0.0001009979681434288 -0.9867722336833485 -0.1621127651697595 -0.0001009979681434288 0.9867722336833485 0.1621127651697595 0.0001009979681434288 0.9867722336833485 0.1621127651697595 0.0001009979681434288 0.9867722336833485 0.1621127651697595 0.0001009979681434288 0.9867722336833485 0.1621127651697595 0.0001009979681434288 -0.4371724323886146 -0.8993776829847063 -0.0002184227177775225 -0.4371724323886146 -0.8993776829847063 -0.0002184227177775225 -0.4371724323886146 -0.8993776829847063 -0.0002184227177775225 -0.4371724323886146 -0.8993776829847063 -0.0002184227177775225 0.4371724323886146 0.8993776829847063 0.0002184227177775225 0.4371724323886146 0.8993776829847063 0.0002184227177775225 0.4371724323886146 0.8993776829847063 0.0002184227177775225 0.4371724323886146 0.8993776829847063 0.0002184227177775225</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5001\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID4999\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID4997\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID4998\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID4999\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5002\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5003\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5006\">-2425.311139078616 -118.0906534707409 65.1567125858211 -2544.607567082224 697.5568585356933 65.32079358033363 -2558.997481629979 705.7500590142473 65.32154270470429 -2415.158620482981 -110.5898239014139 65.15898821872625 -1661.262819846314 -487.6595190015615 65.1307574967033 -1665.302457677942 -471.4378972319263 65.13390712523105 -1665.302457677942 -471.4378972319263 65.13390712523105 -1661.262819846314 -487.6595190015615 65.1307574967033 -2415.158620482981 -110.5898239014139 65.15898821872625 -2425.311139078616 -118.0906534707409 65.1567125858211 -2544.607567082224 697.5568585356933 65.32079358033363 -2558.997481629979 705.7500590142473 65.32154270470429</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5006\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5004\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5007\">-6.815510693843977e-005 -0.0002111348943596422 0.9999999753884687 -6.815510693843977e-005 -0.0002111348943596422 0.9999999753884687 -6.815510693843977e-005 -0.0002111348943596422 0.9999999753884687 -6.815510693843977e-005 -0.0002111348943596422 0.9999999753884687 -6.815510693843977e-005 -0.0002111348943596422 0.9999999753884687 -6.815510693843977e-005 -0.0002111348943596422 0.9999999753884687 6.815510693843977e-005 0.0002111348943596422 -0.9999999753884687 6.815510693843977e-005 0.0002111348943596422 -0.9999999753884687 6.815510693843977e-005 0.0002111348943596422 -0.9999999753884687 6.815510693843977e-005 0.0002111348943596422 -0.9999999753884687 6.815510693843977e-005 0.0002111348943596422 -0.9999999753884687 6.815510693843977e-005 0.0002111348943596422 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5007\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5005\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5003\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5004\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5005\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5005\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5008\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5009\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5012\">-2558.997481629979 705.7500590142473 65.32154270470429 -2425.310640643987 -118.089112291812 57.8131366538632 -2425.311139078616 -118.0906534707409 65.1567125858211 -2558.996983195356 705.7516001931671 57.97796677274683 -2558.996983195356 705.7516001931671 57.97796677274683 -2558.997481629979 705.7500590142473 65.32154270470429 -2425.310640643987 -118.089112291812 57.8131366538632 -2425.311139078616 -118.0906534707409 65.1567125858211 -1661.262819846314 -487.6595190015615 65.1307574967033 -2425.310640643987 -118.089112291812 57.8131366538632 -1661.262321411671 -487.6579778226368 57.78718156474545 -2425.311139078616 -118.0906534707409 65.1567125858211 -2425.311139078616 -118.0906534707409 65.1567125858211 -1661.262819846314 -487.6595190015615 65.1307574967033 -2425.310640643987 -118.089112291812 57.8131366538632 -1661.262321411671 -487.6579778226368 57.78718156474545</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5012\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5010\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5013\">-0.9870883273736015 -0.1601768517601179 -0.0001006131358057136 -0.9870883273736015 -0.1601768517601179 -0.0001006131358057136 -0.9870883273736015 -0.1601768517601179 -0.0001006131358057136 -0.9870883273736015 -0.1601768517601179 -0.0001006131358057136 0.9870883273736015 0.1601768517601179 0.0001006131358057136 0.9870883273736015 0.1601768517601179 0.0001006131358057136 0.9870883273736015 0.1601768517601179 0.0001006131358057136 0.9870883273736015 0.1601768517601179 0.0001006131358057136 -0.4354349620661505 -0.9002201653352591 -0.0002184815991805082 -0.4354349620661505 -0.9002201653352591 -0.0002184815991805082 -0.4354349620661505 -0.9002201653352591 -0.0002184815991805082 -0.4354349620661505 -0.9002201653352591 -0.0002184815991805082 0.4354349620661505 0.9002201653352591 0.0002184815991805082 0.4354349620661505 0.9002201653352591 0.0002184815991805082 0.4354349620661505 0.9002201653352591 0.0002184815991805082 0.4354349620661505 0.9002201653352591 0.0002184815991805082</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5013\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5011\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5009\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5010\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5011\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5014\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5015\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5018\">-2544.608065516863 697.5553173567654 72.66436951229129 -2415.158620482981 -110.5898239014139 65.15898821872625 -2415.159118917638 -110.5913650803306 72.50256415068398 -2544.607567082224 697.5568585356933 65.32079358033363 -2544.607567082224 697.5568585356933 65.32079358033363 -2544.608065516863 697.5553173567654 72.66436951229129 -2415.158620482981 -110.5898239014139 65.15898821872625 -2415.159118917638 -110.5913650803306 72.50256415068398 -1665.302956112584 -471.4394384108491 72.47748305718859 -2415.158620482981 -110.5898239014139 65.15898821872625 -1665.302457677942 -471.4378972319263 65.13390712523105 -2415.159118917638 -110.5913650803306 72.50256415068398 -2415.159118917638 -110.5913650803306 72.50256415068398 -1665.302956112584 -471.4394384108491 72.47748305718859 -2415.158620482981 -110.5898239014139 65.15898821872625 -1665.302457677942 -471.4378972319263 65.13390712523105</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5018\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5016\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5019\">-0.9874128851218204 -0.1581637893223979 -0.0001002126883951164 -0.9874128851218204 -0.1581637893223979 -0.0001002126883951164 -0.9874128851218204 -0.1581637893223979 -0.0001002126883951164 -0.9874128851218204 -0.1581637893223979 -0.0001002126883951164 0.9874128851218204 0.1581637893223979 0.0001002126883951164 0.9874128851218204 0.1581637893223979 0.0001002126883951164 0.9874128851218204 0.1581637893223979 0.0001002126883951164 0.9874128851218204 0.1581637893223979 0.0001002126883951164 -0.4336265629415333 -0.9010926457090432 -0.0002185419622989823 -0.4336265629415333 -0.9010926457090432 -0.0002185419622989823 -0.4336265629415333 -0.9010926457090432 -0.0002185419622989823 -0.4336265629415333 -0.9010926457090432 -0.0002185419622989823 0.4336265629415333 0.9010926457090432 0.0002185419622989823 0.4336265629415333 0.9010926457090432 0.0002185419622989823 0.4336265629415333 0.9010926457090432 0.0002185419622989823 0.4336265629415333 0.9010926457090432 0.0002185419622989823</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5019\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5017\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5015\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5016\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5017\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5020\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5021\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5024\">-2405.007098756634 -103.0920766899271 79.8484157155464 -2515.828734855925 681.167375220723 80.00644719550634 -2530.218649403714 689.3605756993027 80.00719631987752 -2394.854580160987 -95.59124712059179 79.85069134845153 -1669.343092378865 -455.2193578201267 79.82420861767322 -1673.382730210498 -438.9977360505044 79.82735824620139 -1673.382730210498 -438.9977360505044 79.82735824620139 -1669.343092378865 -455.2193578201267 79.82420861767322 -2394.854580160987 -95.59124712059179 79.85069134845153 -2405.007098756634 -103.0920766899271 79.8484157155464 -2515.828734855925 681.167375220723 80.00644719550634 -2530.218649403714 689.3605756993027 80.00719631987752</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5024\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5022\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5025\">-6.815510693872898e-005 -0.0002111348943602533 0.9999999753884687 -6.815510693872898e-005 -0.0002111348943602533 0.9999999753884687 -6.815510693872898e-005 -0.0002111348943602533 0.9999999753884687 -6.815510693872898e-005 -0.0002111348943602533 0.9999999753884687 -6.815510693872898e-005 -0.0002111348943602533 0.9999999753884687 -6.815510693872898e-005 -0.0002111348943602533 0.9999999753884687 6.815510693872898e-005 0.0002111348943602533 -0.9999999753884687 6.815510693872898e-005 0.0002111348943602533 -0.9999999753884687 6.815510693872898e-005 0.0002111348943602533 -0.9999999753884687 6.815510693872898e-005 0.0002111348943602533 -0.9999999753884687 6.815510693872898e-005 0.0002111348943602533 -0.9999999753884687 6.815510693872898e-005 0.0002111348943602533 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5025\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5023\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5021\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5022\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5023\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5023\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5026\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5027\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5030\">-2530.218649403714 689.3605756993027 80.00719631987752 -2405.006600321991 -103.0905355110006 72.50483978358876 -2405.007098756634 -103.0920766899271 79.8484157155464 -2530.218150969051 689.3621168782001 72.66362038792035 -2530.218150969051 689.3621168782001 72.66362038792035 -2530.218649403714 689.3605756993027 80.00719631987752 -2405.006600321991 -103.0905355110006 72.50483978358876 -2405.007098756634 -103.0920766899271 79.8484157155464 -1669.343092378865 -455.2193578201267 79.82420861767322 -2405.006600321991 -103.0905355110006 72.50483978358876 -1669.342593944231 -455.2178166412207 72.48063268571619 -2405.007098756634 -103.0920766899271 79.8484157155464 -2405.007098756634 -103.0920766899271 79.8484157155464 -1669.343092378865 -455.2193578201267 79.82420861767322 -2405.006600321991 -103.0905355110006 72.50483978358876 -1669.342593944231 -455.2178166412207 72.48063268571619</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5030\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5028\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5031\">-0.9877461661229611 -0.1560688993688939 -9.979566037521458e-005 -0.9877461661229611 -0.1560688993688939 -9.979566037521458e-005 -0.9877461661229611 -0.1560688993688939 -9.979566037521458e-005 -0.9877461661229611 -0.1560688993688939 -9.979566037521458e-005 0.9877461661229611 0.1560688993688939 9.979566037521458e-005 0.9877461661229611 0.1560688993688939 9.979566037521458e-005 0.9877461661229611 0.1560688993688939 9.979566037521458e-005 0.9877461661229611 0.1560688993688939 9.979566037521458e-005 -0.4317428272057417 -0.9019967202649649 -0.0002186038420743883 -0.4317428272057417 -0.9019967202649649 -0.0002186038420743883 -0.4317428272057417 -0.9019967202649649 -0.0002186038420743883 -0.4317428272057417 -0.9019967202649649 -0.0002186038420743883 0.4317428272057417 0.9019967202649649 0.0002186038420743883 0.4317428272057417 0.9019967202649649 0.0002186038420743883 0.4317428272057417 0.9019967202649649 0.0002186038420743883 0.4317428272057417 0.9019967202649649 0.0002186038420743883</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5031\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5029\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5027\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5028\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5029\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5032\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5033\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5036\">-2394.855078595639 -95.59278829950924 87.19426728040949 -2501.43931874278 672.9726335632435 87.34927400309212 -2515.82923329056 681.1658340418019 87.35002312746352 -2384.702560000007 -88.09195873017936 87.19654291331484 -1673.383228645152 -438.9992772294219 87.17093417815934 -1677.422866476782 -422.7776554597884 87.17408380668636 -1677.422866476782 -422.7776554597884 87.17408380668636 -1673.383228645152 -438.9992772294219 87.17093417815934 -2384.702560000007 -88.09195873017936 87.19654291331484 -2394.855078595639 -95.59278829950924 87.19426728040949 -2501.43931874278 672.9726335632435 87.34927400309212 -2515.82923329056 681.1658340418019 87.35002312746352</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5036\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5034\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5037\">-6.815510693813134e-005 -0.0002111348943590416 0.9999999753884687 -6.815510693813134e-005 -0.0002111348943590416 0.9999999753884687 -6.815510693813134e-005 -0.0002111348943590416 0.9999999753884687 -6.815510693813134e-005 -0.0002111348943590416 0.9999999753884687 -6.815510693813134e-005 -0.0002111348943590416 0.9999999753884687 -6.815510693813134e-005 -0.0002111348943590416 0.9999999753884687 6.815510693813134e-005 0.0002111348943590416 -0.9999999753884687 6.815510693813134e-005 0.0002111348943590416 -0.9999999753884687 6.815510693813134e-005 0.0002111348943590416 -0.9999999753884687 6.815510693813134e-005 0.0002111348943590416 -0.9999999753884687 6.815510693813134e-005 0.0002111348943590416 -0.9999999753884687 6.815510693813134e-005 0.0002111348943590416 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5037\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5035\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5033\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5034\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5035\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5035\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5038\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5039\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5042\">-2515.82923329056 681.1658340418019 87.35002312746352 -2394.854580160987 -95.59124712059179 79.85069134845153 -2394.855078595639 -95.59278829950924 87.19426728040949 -2515.828734855925 681.167375220723 80.00644719550634 -2515.828734855925 681.167375220723 80.00644719550634 -2515.82923329056 681.1658340418019 87.35002312746352 -2394.854580160987 -95.59124712059179 79.85069134845153 -2394.855078595639 -95.59278829950924 87.19426728040949 -1673.383228645152 -438.9992772294219 87.17093417815934 -2394.854580160987 -95.59124712059179 79.85069134845153 -1673.382730210498 -438.9977360505044 79.82735824620139 -2394.855078595639 -95.59278829950924 87.19426728040949 -2394.855078595639 -95.59278829950924 87.19426728040949 -1673.383228645152 -438.9992772294219 87.17093417815934 -2394.854580160987 -95.59124712059179 79.85069134845153 -1673.382730210498 -438.9977360505044 79.82735824620139</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5042\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5040\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5043\">-0.988088429512328 -0.1538871196405074 -9.936100631650002e-005 -0.988088429512328 -0.1538871196405074 -9.936100631650002e-005 -0.988088429512328 -0.1538871196405074 -9.936100631650002e-005 -0.988088429512328 -0.1538871196405074 -9.936100631650002e-005 0.988088429512328 0.1538871196405074 9.936100631650002e-005 0.988088429512328 0.1538871196405074 9.936100631650002e-005 0.988088429512328 0.1538871196405074 9.936100631650002e-005 0.988088429512328 0.1538871196405074 9.936100631650002e-005 -0.4297789763262045 -0.9029340970927076 -0.0002186672737665351 -0.4297789763262045 -0.9029340970927076 -0.0002186672737665351 -0.4297789763262045 -0.9029340970927076 -0.0002186672737665351 -0.4297789763262045 -0.9029340970927076 -0.0002186672737665351 0.4297789763262045 0.9029340970927076 0.0002186672737665351 0.4297789763262045 0.9029340970927076 0.0002186672737665351 0.4297789763262045 0.9029340970927076 0.0002186672737665351 0.4297789763262045 0.9029340970927076 0.0002186672737665351</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5043\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5041\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5039\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5040\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5041\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5044\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5045\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5048\">-2384.703058434651 -88.09349990910329 94.54011884527181 -2487.049902629642 664.7778919057668 94.69210081067914 -2501.439817177421 672.971092384328 94.69284993505076 -2374.550539839007 -80.59267033977537 94.54239447817704 -1677.42336491143 -422.779196638714 94.51765973864396 -1681.463002743056 -406.557574869079 94.52080936717154 -1681.463002743056 -406.557574869079 94.52080936717154 -1677.42336491143 -422.779196638714 94.51765973864396 -2374.550539839007 -80.59267033977537 94.54239447817704 -2384.703058434651 -88.09349990910329 94.54011884527181 -2487.049902629642 664.7778919057668 94.69210081067914 -2501.439817177421 672.971092384328 94.69284993505076</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5048\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5046\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5049\">-6.815510693876896e-005 -0.0002111348943603687 0.9999999753884687 -6.815510693876896e-005 -0.0002111348943603687 0.9999999753884687 -6.815510693876896e-005 -0.0002111348943603687 0.9999999753884687 -6.815510693876896e-005 -0.0002111348943603687 0.9999999753884687 -6.815510693876896e-005 -0.0002111348943603687 0.9999999753884687 -6.815510693876896e-005 -0.0002111348943603687 0.9999999753884687 6.815510693876896e-005 0.0002111348943603687 -0.9999999753884687 6.815510693876896e-005 0.0002111348943603687 -0.9999999753884687 6.815510693876896e-005 0.0002111348943603687 -0.9999999753884687 6.815510693876896e-005 0.0002111348943603687 -0.9999999753884687 6.815510693876896e-005 0.0002111348943603687 -0.9999999753884687 6.815510693876896e-005 0.0002111348943603687 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5049\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5047\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5045\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5046\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5047\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5047\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5050\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5051\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5054\">-2501.439817177421 672.971092384328 94.69284993505076 -2384.702560000007 -88.09195873017936 87.19654291331484 -2384.703058434651 -88.09349990910329 94.54011884527181 -2501.43931874278 672.9726335632435 87.34927400309212 -2501.43931874278 672.9726335632435 87.34927400309212 -2501.439817177421 672.971092384328 94.69284993505076 -2384.702560000007 -88.09195873017936 87.19654291331484 -2384.703058434651 -88.09349990910329 94.54011884527181 -1677.42336491143 -422.779196638714 94.51765973864396 -2384.702560000007 -88.09195873017936 87.19654291331484 -1677.422866476782 -422.7776554597884 87.17408380668636 -2384.703058434651 -88.09349990910329 94.54011884527181 -2384.703058434651 -88.09349990910329 94.54011884527181 -1677.42336491143 -422.779196638714 94.51765973864396 -2384.702560000007 -88.09195873017936 87.19654291331484 -1677.422866476782 -422.7776554597884 87.17408380668636</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5054\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5052\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5055\">-0.9884399320685757 -0.1516129641869637 -9.890759253019905e-005 -0.9884399320685757 -0.1516129641869637 -9.890759253019905e-005 -0.9884399320685757 -0.1516129641869637 -9.890759253019905e-005 -0.9884399320685757 -0.1516129641869637 -9.890759253019905e-005 0.9884399320685757 0.1516129641869637 9.890759253019905e-005 0.9884399320685757 0.1516129641869637 9.890759253019905e-005 0.9884399320685757 0.1516129641869637 9.890759253019905e-005 0.9884399320685757 0.1516129641869637 9.890759253019905e-005 -0.427729821479335 -0.9039066057803994 -0.0002187322885137392 -0.427729821479335 -0.9039066057803994 -0.0002187322885137392 -0.427729821479335 -0.9039066057803994 -0.0002187322885137392 -0.427729821479335 -0.9039066057803994 -0.0002187322885137392 0.427729821479335 0.9039066057803994 0.0002187322885137392 0.427729821479335 0.9039066057803994 0.0002187322885137392 0.427729821479335 0.9039066057803994 0.0002187322885137392 0.427729821479335 0.9039066057803994 0.0002187322885137392</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5055\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5053\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5051\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5052\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5053\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5056\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5057\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5060\">-2374.551038273653 -80.59421151869555 101.8859704101343 -2472.660486516497 656.5831502482805 102.0349276182648 -2487.050401064274 664.7763507268468 102.0356767426363 -2364.39851967801 -73.09338194936387 101.8882460430396 -1681.463501177717 -406.5591160480085 101.864385299129 -1685.503139009351 -390.3374942783717 101.8675349276567 -1685.503139009351 -390.3374942783717 101.8675349276567 -1681.463501177717 -406.5591160480085 101.864385299129 -2364.39851967801 -73.09338194936387 101.8882460430396 -2374.551038273653 -80.59421151869555 101.8859704101343 -2472.660486516497 656.5831502482805 102.0349276182648 -2487.050401064274 664.7763507268468 102.0356767426363</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5060\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5058\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5061\">-6.815510693897782e-005 -0.0002111348943603664 0.9999999753884687 -6.815510693897782e-005 -0.0002111348943603664 0.9999999753884687 -6.815510693897782e-005 -0.0002111348943603664 0.9999999753884687 -6.815510693897782e-005 -0.0002111348943603664 0.9999999753884687 -6.815510693897782e-005 -0.0002111348943603664 0.9999999753884687 -6.815510693897782e-005 -0.0002111348943603664 0.9999999753884687 6.815510693897782e-005 0.0002111348943603664 -0.9999999753884687 6.815510693897782e-005 0.0002111348943603664 -0.9999999753884687 6.815510693897782e-005 0.0002111348943603664 -0.9999999753884687 6.815510693897782e-005 0.0002111348943603664 -0.9999999753884687 6.815510693897782e-005 0.0002111348943603664 -0.9999999753884687 6.815510693897782e-005 0.0002111348943603664 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5061\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5059\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5057\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5058\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5059\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5059\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5062\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5063\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5066\">-2487.050401064274 664.7763507268468 102.0356767426363 -2374.550539839007 -80.59267033977537 94.54239447817704 -2374.551038273653 -80.59421151869555 101.8859704101343 -2487.049902629642 664.7778919057668 94.69210081067914 -2487.049902629642 664.7778919057668 94.69210081067914 -2487.050401064274 664.7763507268468 102.0356767426363 -2374.550539839007 -80.59267033977537 94.54239447817704 -2374.551038273653 -80.59421151869555 101.8859704101343 -1681.463501177717 -406.5591160480085 101.864385299129 -2374.550539839007 -80.59267033977537 94.54239447817704 -1681.463002743056 -406.557574869079 94.52080936717154 -2374.551038273653 -80.59421151869555 101.8859704101343 -2374.551038273653 -80.59421151869555 101.8859704101343 -1681.463501177717 -406.5591160480085 101.864385299129 -2374.550539839007 -80.59267033977537 94.54239447817704 -1681.463002743056 -406.557574869079 94.52080936717154</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5066\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5064\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5067\">-0.9888009253230964 -0.1492404783927592 -9.843418565169928e-005 -0.9888009253230964 -0.1492404783927592 -9.843418565169928e-005 -0.9888009253230964 -0.1492404783927592 -9.843418565169928e-005 -0.9888009253230964 -0.1492404783927592 -9.843418565169928e-005 0.9888009253230964 0.1492404783927592 9.843418565169928e-005 0.9888009253230964 0.1492404783927592 9.843418565169928e-005 0.9888009253230964 0.1492404783927592 9.843418565169928e-005 0.9888009253230964 0.1492404783927592 9.843418565169928e-005 -0.4255897188378889 -0.9049162079145899 -0.0002187989151147409 -0.4255897188378889 -0.9049162079145899 -0.0002187989151147409 -0.4255897188378889 -0.9049162079145899 -0.0002187989151147409 -0.4255897188378889 -0.9049162079145899 -0.0002187989151147409 0.4255897188378889 0.9049162079145899 0.0002187989151147409 0.4255897188378889 0.9049162079145899 0.0002187989151147409 0.4255897188378889 0.9049162079145899 0.0002187989151147409 0.4255897188378889 0.9049162079145899 0.0002187989151147409</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5067\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5065\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5063\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5064\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5065\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5068\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5069\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5072\">-2364.399018112661 -73.09492312828448 109.2318219749979 -2458.271070403341 648.3884085908071 109.3777544258509 -2472.660984951136 656.5816090693751 109.3785035502219 -2354.246499517021 -65.59409355895065 109.2340976079035 -1685.503637443991 -390.3390354572895 109.211110859615 -1689.543275275627 -374.1174136876617 109.2142604881425 -1689.543275275627 -374.1174136876617 109.2142604881425 -1685.503637443991 -390.3390354572895 109.211110859615 -2354.246499517021 -65.59409355895065 109.2340976079035 -2364.399018112661 -73.09492312828448 109.2318219749979 -2458.271070403341 648.3884085908071 109.3777544258509 -2472.660984951136 656.5816090693751 109.3785035502219</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5072\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5070\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5073\">-6.815510693804552e-005 -0.000211134894358862 0.9999999753884687 -6.815510693804552e-005 -0.000211134894358862 0.9999999753884687 -6.815510693804552e-005 -0.000211134894358862 0.9999999753884687 -6.815510693804552e-005 -0.000211134894358862 0.9999999753884687 -6.815510693804552e-005 -0.000211134894358862 0.9999999753884687 -6.815510693804552e-005 -0.000211134894358862 0.9999999753884687 6.815510693804552e-005 0.000211134894358862 -0.9999999753884687 6.815510693804552e-005 0.000211134894358862 -0.9999999753884687 6.815510693804552e-005 0.000211134894358862 -0.9999999753884687 6.815510693804552e-005 0.000211134894358862 -0.9999999753884687 6.815510693804552e-005 0.000211134894358862 -0.9999999753884687 6.815510693804552e-005 0.000211134894358862 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5073\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5071\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5069\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5070\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5071\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5071\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5074\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5075\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5078\">-2472.660984951136 656.5816090693751 109.3785035502219 -2364.39851967801 -73.09338194936387 101.8882460430396 -2364.399018112661 -73.09492312828448 109.2318219749979 -2472.660486516497 656.5831502482805 102.0349276182648 -2472.660486516497 656.5831502482805 102.0349276182648 -2472.660984951136 656.5816090693751 109.3785035502219 -2364.39851967801 -73.09338194936387 101.8882460430396 -2364.399018112661 -73.09492312828448 109.2318219749979 -1685.503637443991 -390.3390354572895 109.211110859615 -2364.39851967801 -73.09338194936387 101.8882460430396 -1685.503139009351 -390.3374942783717 101.8675349276567 -2364.399018112661 -73.09492312828448 109.2318219749979 -2364.399018112661 -73.09492312828448 109.2318219749979 -1685.503637443991 -390.3390354572895 109.211110859615 -2364.39851967801 -73.09338194936387 101.8882460430396 -1685.503139009351 -390.3374942783717 101.8675349276567</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5078\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5076\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5079\">-0.9891716519389971 -0.1467631881915234 -9.793944570199995e-005 -0.9891716519389971 -0.1467631881915234 -9.793944570199995e-005 -0.9891716519389971 -0.1467631881915234 -9.793944570199995e-005 -0.9891716519389971 -0.1467631881915234 -9.793944570199995e-005 0.9891716519389971 0.1467631881915234 9.793944570199995e-005 0.9891716519389971 0.1467631881915234 9.793944570199995e-005 0.9891716519389971 0.1467631881915234 9.793944570199995e-005 0.9891716519389971 0.1467631881915234 9.793944570199995e-005 -0.4233525189207141 -0.9059650086072008 -0.0002188671775299986 -0.4233525189207141 -0.9059650086072008 -0.0002188671775299986 -0.4233525189207141 -0.9059650086072008 -0.0002188671775299986 -0.4233525189207141 -0.9059650086072008 -0.0002188671775299986 0.4233525189207141 0.9059650086072008 0.0002188671775299986 0.4233525189207141 0.9059650086072008 0.0002188671775299986 0.4233525189207141 0.9059650086072008 0.0002188671775299986 0.4233525189207141 0.9059650086072008 0.0002188671775299986</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5079\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5077\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5075\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5076\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5077\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5080\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5081\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5084\">-2354.246997951665 -65.59563473786855 116.5776735398604 -2443.8816542902 640.1936669333276 116.7205812334383 -2458.271568837985 648.3868674118874 116.7213303578088 -2344.094479356047 -58.09480516854369 116.5799491727658 -1689.543773710274 -374.1189548665791 116.5578364201002 -1693.58341154191 -357.8973330969455 116.5609860486271 -1693.58341154191 -357.8973330969455 116.5609860486271 -1689.543773710274 -374.1189548665791 116.5578364201002 -2344.094479356047 -58.09480516854369 116.5799491727658 -2354.246997951665 -65.59563473786855 116.5776735398604 -2443.8816542902 640.1936669333276 116.7205812334383 -2458.271568837985 648.3868674118874 116.7213303578088</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5084\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5082\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5085\">-6.815510693879763e-005 -0.0002111348943600661 0.9999999753884687 -6.815510693879763e-005 -0.0002111348943600661 0.9999999753884687 -6.815510693879763e-005 -0.0002111348943600661 0.9999999753884687 -6.815510693879763e-005 -0.0002111348943600661 0.9999999753884687 -6.815510693879763e-005 -0.0002111348943600661 0.9999999753884687 -6.815510693879763e-005 -0.0002111348943600661 0.9999999753884687 6.815510693879763e-005 0.0002111348943600661 -0.9999999753884687 6.815510693879763e-005 0.0002111348943600661 -0.9999999753884687 6.815510693879763e-005 0.0002111348943600661 -0.9999999753884687 6.815510693879763e-005 0.0002111348943600661 -0.9999999753884687 6.815510693879763e-005 0.0002111348943600661 -0.9999999753884687 6.815510693879763e-005 0.0002111348943600661 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5085\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5083\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5081\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5082\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5083\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5083\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5086\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5087\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5090\">-2458.271568837985 648.3868674118874 116.7213303578088 -2354.246499517021 -65.59409355895065 109.2340976079035 -2354.246997951665 -65.59563473786855 116.5776735398604 -2458.271070403341 648.3884085908071 109.3777544258509 -2458.271070403341 648.3884085908071 109.3777544258509 -2458.271568837985 648.3868674118874 116.7213303578088 -2354.246499517021 -65.59409355895065 109.2340976079035 -2354.246997951665 -65.59563473786855 116.5776735398604 -1689.543773710274 -374.1189548665791 116.5578364201002 -2354.246499517021 -65.59409355895065 109.2340976079035 -1689.543275275627 -374.1174136876617 109.2142604881425 -2354.246997951665 -65.59563473786855 116.5776735398604 -2354.246997951665 -65.59563473786855 116.5776735398604 -1689.543773710274 -374.1189548665791 116.5578364201002 -2354.246499517021 -65.59409355895065 109.2340976079035 -1689.543275275627 -374.1174136876617 109.2142604881425</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5090\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5088\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5091\">-0.9895523411902075 -0.1441740425803179 -9.742190687593812e-005 -0.9895523411902075 -0.1441740425803179 -9.742190687593812e-005 -0.9895523411902075 -0.1441740425803179 -9.742190687593812e-005 -0.9895523411902075 -0.1441740425803179 -9.742190687593812e-005 0.9895523411902075 0.1441740425803179 9.742190687593812e-005 0.9895523411902075 0.1441740425803179 9.742190687593812e-005 0.9895523411902075 0.1441740425803179 9.742190687593812e-005 0.9895523411902075 0.1441740425803179 9.742190687593812e-005 -0.4210115090708121 -0.9070552691520323 -0.0002189370952296134 -0.4210115090708121 -0.9070552691520323 -0.0002189370952296134 -0.4210115090708121 -0.9070552691520323 -0.0002189370952296134 -0.4210115090708121 -0.9070552691520323 -0.0002189370952296134 0.4210115090708121 0.9070552691520323 0.0002189370952296134 0.4210115090708121 0.9070552691520323 0.0002189370952296134 0.4210115090708121 0.9070552691520323 0.0002189370952296134 0.4210115090708121 0.9070552691520323 0.0002189370952296134</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5091\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5089\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5087\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5088\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5089\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5092\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5093\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5096\">-2344.094977790682 -58.09634634746546 123.9235251047222 -2355.571950309844 589.910854779142 124.0595598257362 -2443.88215272486 640.1921257544003 124.0641571653954 -2281.789467273192 -12.06412180937719 123.9374905526634 -1693.583909976562 -357.8988742758719 123.9045619805867 -1718.374969951944 -258.3475741470155 123.9238910969534 -1718.374969951944 -258.3475741470155 123.9238910969534 -1693.583909976562 -357.8988742758719 123.9045619805867 -2281.789467273192 -12.06412180937719 123.9374905526634 -2344.094977790682 -58.09634634746546 123.9235251047222 -2355.571950309844 589.910854779142 124.0595598257362 -2443.88215272486 640.1921257544003 124.0641571653954</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5096\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5094\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5097\">-6.815510694006616e-005 -0.0002111348943608116 0.9999999753884687 -6.815510694006616e-005 -0.0002111348943608116 0.9999999753884687 -6.815510694006616e-005 -0.0002111348943608116 0.9999999753884687 -6.815510694006616e-005 -0.0002111348943608116 0.9999999753884687 -6.815510694006616e-005 -0.0002111348943608116 0.9999999753884687 -6.815510694006616e-005 -0.0002111348943608116 0.9999999753884687 6.815510694006616e-005 0.0002111348943608116 -0.9999999753884687 6.815510694006616e-005 0.0002111348943608116 -0.9999999753884687 6.815510694006616e-005 0.0002111348943608116 -0.9999999753884687 6.815510694006616e-005 0.0002111348943608116 -0.9999999753884687 6.815510694006616e-005 0.0002111348943608116 -0.9999999753884687 6.815510694006616e-005 0.0002111348943608116 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5097\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5095\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5093\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5094\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5095\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5095\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5098\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5099\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5102\">-2443.88215272486 640.1921257544003 124.0641571653954 -2344.094479356047 -58.09480516854369 116.5799491727658 -2344.094977790682 -58.09634634746546 123.9235251047222 -2443.8816542902 640.1936669333276 116.7205812334383 -2443.8816542902 640.1936669333276 116.7205812334383 -2443.88215272486 640.1921257544003 124.0641571653954 -2344.094479356047 -58.09480516854369 116.5799491727658 -2344.094977790682 -58.09634634746546 123.9235251047222 -1693.583909976562 -357.8988742758719 123.9045619805867 -2344.094479356047 -58.09480516854369 116.5799491727658 -1693.58341154191 -357.8973330969455 116.5609860486271 -2344.094977790682 -58.09634634746546 123.9235251047222 -2344.094977790682 -58.09634634746546 123.9235251047222 -1693.583909976562 -357.8988742758719 123.9045619805867 -2344.094479356047 -58.09480516854369 116.5799491727658 -1693.58341154191 -357.8973330969455 116.5609860486271</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5102\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5100\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5103\">-0.9899432033302474 -0.1414653483879371 -9.687996815350964e-005 -0.9899432033302474 -0.1414653483879371 -9.687996815350964e-005 -0.9899432033302474 -0.1414653483879371 -9.687996815350964e-005 -0.9899432033302474 -0.1414653483879371 -9.687996815350964e-005 0.9899432033302474 0.1414653483879371 9.687996815350964e-005 0.9899432033302474 0.1414653483879371 9.687996815350964e-005 0.9899432033302474 0.1414653483879371 9.687996815350964e-005 0.9899432033302474 0.1414653483879371 9.687996815350964e-005 -0.4185593479569759 -0.9081894209211147 -0.0002190086801429003 -0.4185593479569759 -0.9081894209211147 -0.0002190086801429003 -0.4185593479569759 -0.9081894209211147 -0.0002190086801429003 -0.4185593479569759 -0.9081894209211147 -0.0002190086801429003 0.4185593479569759 0.9081894209211147 0.0002190086801429003 0.4185593479569759 0.9081894209211147 0.0002190086801429003 0.4185593479569759 0.9081894209211147 0.0002190086801429003 0.4185593479569759 0.9081894209211147 0.0002190086801429003</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5103\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5101\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5099\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5100\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5101\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5104\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5105\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5108\">-2281.78996570785 -12.06566298828531 131.2810664846225 -2341.852811358895 582.097749520397 131.4024215272725 -2355.572448744494 589.909313600226 131.403135757695 -2272.110347860215 -4.914219424077666 131.2832361193468 -1718.375468386594 -258.3491153259399 131.267467028911 -1722.226941307786 -242.8830909971293 131.2704699488487 -1722.226941307786 -242.8830909971293 131.2704699488487 -1718.375468386594 -258.3491153259399 131.267467028911 -2272.110347860215 -4.914219424077666 131.2832361193468 -2281.78996570785 -12.06566298828531 131.2810664846225 -2341.852811358895 582.097749520397 131.4024215272725 -2355.572448744494 589.909313600226 131.403135757695</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5108\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5106\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5109\">-6.815510693881041e-005 -0.0002111348943604154 0.9999999753884687 -6.815510693881041e-005 -0.0002111348943604154 0.9999999753884687 -6.815510693881041e-005 -0.0002111348943604154 0.9999999753884687 -6.815510693881041e-005 -0.0002111348943604154 0.9999999753884687 -6.815510693881041e-005 -0.0002111348943604154 0.9999999753884687 -6.815510693881041e-005 -0.0002111348943604154 0.9999999753884687 6.815510693881041e-005 0.0002111348943604154 -0.9999999753884687 6.815510693881041e-005 0.0002111348943604154 -0.9999999753884687 6.815510693881041e-005 0.0002111348943604154 -0.9999999753884687 6.815510693881041e-005 0.0002111348943604154 -0.9999999753884687 6.815510693881041e-005 0.0002111348943604154 -0.9999999753884687 6.815510693881041e-005 0.0002111348943604154 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5109\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5107\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5105\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5106\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5107\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5107\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5110\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5111\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5114\">-2355.572448744494 589.909313600226 131.403135757695 -2281.789467273192 -12.06412180937719 123.9374905526634 -2281.78996570785 -12.06566298828531 131.2810664846225 -2355.571950309844 589.910854779142 124.0595598257362 -2355.571950309844 589.910854779142 124.0595598257362 -2355.572448744494 589.909313600226 131.403135757695 -2281.789467273192 -12.06412180937719 123.9374905526634 -2281.78996570785 -12.06566298828531 131.2810664846225 -1718.375468386594 -258.3491153259399 131.267467028911 -2281.789467273192 -12.06412180937719 123.9374905526634 -1718.374969951944 -258.3475741470155 123.9238910969534 -2281.78996570785 -12.06566298828531 131.2810664846225 -2281.78996570785 -12.06566298828531 131.2810664846225 -1718.375468386594 -258.3491153259399 131.267467028911 -2281.789467273192 -12.06412180937719 123.9374905526634 -1718.374969951944 -258.3475741470155 123.9238910969534</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5114\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5112\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5115\">-0.9925722047130322 -0.121656934863845 -9.290126358904647e-005 -0.9925722047130322 -0.121656934863845 -9.290126358904647e-005 -0.9925722047130322 -0.121656934863845 -9.290126358904647e-005 -0.9925722047130322 -0.121656934863845 -9.290126358904647e-005 0.9925722047130322 0.121656934863845 9.290126358904647e-005 0.9925722047130322 0.121656934863845 9.290126358904647e-005 0.9925722047130322 0.121656934863845 9.290126358904647e-005 0.9925722047130322 0.121656934863845 9.290126358904647e-005 -0.4005316204611274 -0.9162829109165559 -0.0002194836356796763 -0.4005316204611274 -0.9162829109165559 -0.0002194836356796763 -0.4005316204611274 -0.9162829109165559 -0.0002194836356796763 -0.4005316204611274 -0.9162829109165559 -0.0002194836356796763 0.4005316204611274 0.9162829109165559 0.0002194836356796763 0.4005316204611274 0.9162829109165559 0.0002194836356796763 0.4005316204611274 0.9162829109165559 0.0002194836356796763 0.4005316204611274 0.9162829109165559 0.0002194836356796763</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5115\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5113\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5111\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5112\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5113\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5116\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5117\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5120\">-2272.110846294876 -4.915760602991258 138.6268120513041 -2328.133672407951 574.2846442616473 138.7452832288095 -2341.853309793548 582.0962083414713 138.7459974592303 -2262.431228447225 2.235682961210813 138.6289816860274 -1722.227439742438 -242.8846321760519 138.614045880808 -1726.078912663635 -227.4186078472375 138.6170488007445 -1726.078912663635 -227.4186078472375 138.6170488007445 -1722.227439742438 -242.8846321760519 138.614045880808 -2262.431228447225 2.235682961210813 138.6289816860274 -2272.110846294876 -4.915760602991258 138.6268120513041 -2328.133672407951 574.2846442616473 138.7452832288095 -2341.853309793548 582.0962083414713 138.7459974592303</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5120\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5118\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5121\">-6.815510693930214e-005 -0.0002111348943602454 0.9999999753884687 -6.815510693930214e-005 -0.0002111348943602454 0.9999999753884687 -6.815510693930214e-005 -0.0002111348943602454 0.9999999753884687 -6.815510693930214e-005 -0.0002111348943602454 0.9999999753884687 -6.815510693930214e-005 -0.0002111348943602454 0.9999999753884687 -6.815510693930214e-005 -0.0002111348943602454 0.9999999753884687 6.815510693930214e-005 0.0002111348943602454 -0.9999999753884687 6.815510693930214e-005 0.0002111348943602454 -0.9999999753884687 6.815510693930214e-005 0.0002111348943602454 -0.9999999753884687 6.815510693930214e-005 0.0002111348943602454 -0.9999999753884687 6.815510693930214e-005 0.0002111348943602454 -0.9999999753884687 6.815510693930214e-005 0.0002111348943602454 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5121\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5119\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5117\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5118\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5119\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5119\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5122\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5123\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5126\">-2341.853309793548 582.0962083414713 138.7459974592303 -2272.110347860215 -4.914219424077666 131.2832361193468 -2272.110846294876 -4.915760602991258 138.6268120513041 -2341.852811358895 582.097749520397 131.4024215272725 -2341.852811358895 582.097749520397 131.4024215272725 -2341.853309793548 582.0962083414713 138.7459974592303 -2272.110347860215 -4.914219424077666 131.2832361193468 -2272.110846294876 -4.915760602991258 138.6268120513041 -1722.227439742438 -242.8846321760519 138.614045880808 -2272.110347860215 -4.914219424077666 131.2832361193468 -1722.226941307786 -242.8830909971293 131.2704699488487 -2272.110846294876 -4.915760602991258 138.6268120513041 -2272.110846294876 -4.915760602991258 138.6268120513041 -1722.227439742438 -242.8846321760519 138.614045880808 -2272.110347860215 -4.914219424077666 131.2832361193468 -1722.226941307786 -242.8830909971293 131.2704699488487</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5126\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5124\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5127\">-0.9930160277156799 -0.1179794906175575 -9.215961023752219e-005 -0.9930160277156799 -0.1179794906175575 -9.215961023752219e-005 -0.9930160277156799 -0.1179794906175575 -9.215961023752219e-005 -0.9930160277156799 -0.1179794906175575 -9.215961023752219e-005 0.9930160277156799 0.1179794906175575 9.215961023752219e-005 0.9930160277156799 0.1179794906175575 9.215961023752219e-005 0.9930160277156799 0.1179794906175575 9.215961023752219e-005 0.9930160277156799 0.1179794906175575 9.215961023752219e-005 -0.3971662622867896 -0.9177466490777779 -0.0002195624080175173 -0.3971662622867896 -0.9177466490777779 -0.0002195624080175173 -0.3971662622867896 -0.9177466490777779 -0.0002195624080175173 -0.3971662622867896 -0.9177466490777779 -0.0002195624080175173 0.3971662622867896 0.9177466490777779 0.0002195624080175173 0.3971662622867896 0.9177466490777779 0.0002195624080175173 0.3971662622867896 0.9177466490777779 0.0002195624080175173 0.3971662622867896 0.9177466490777779 0.0002195624080175173</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5127\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5125\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5123\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5124\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5125\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5128\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5129\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5132\">-2262.431726881891 2.234141782298369 145.9725576179853 -2314.414533457004 566.4715390028996 146.0881449303443 -2328.134170842596 574.2831030827288 146.0888591607667 -2252.752109034231 9.385585346502936 145.974727252709 -1726.079411098277 -227.4201490261611 145.9606247327017 -1729.930884019477 -211.9541246973548 145.9636276526403 -1729.930884019477 -211.9541246973548 145.9636276526403 -1726.079411098277 -227.4201490261611 145.9606247327017 -2252.752109034231 9.385585346502936 145.974727252709 -2262.431726881891 2.234141782298369 145.9725576179853 -2314.414533457004 566.4715390028996 146.0881449303443 -2328.134170842596 574.2831030827288 146.0888591607667</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5132\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5130\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5133\">-6.815510693863503e-005 -0.0002111348943597374 0.9999999753884687 -6.815510693863503e-005 -0.0002111348943597374 0.9999999753884687 -6.815510693863503e-005 -0.0002111348943597374 0.9999999753884687 -6.815510693863503e-005 -0.0002111348943597374 0.9999999753884687 -6.815510693863503e-005 -0.0002111348943597374 0.9999999753884687 -6.815510693863503e-005 -0.0002111348943597374 0.9999999753884687 6.815510693863503e-005 0.0002111348943597374 -0.9999999753884687 6.815510693863503e-005 0.0002111348943597374 -0.9999999753884687 6.815510693863503e-005 0.0002111348943597374 -0.9999999753884687 6.815510693863503e-005 0.0002111348943597374 -0.9999999753884687 6.815510693863503e-005 0.0002111348943597374 -0.9999999753884687 6.815510693863503e-005 0.0002111348943597374 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5133\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5131\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5129\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5130\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5131\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5131\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5134\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5135\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5138\">-2328.134170842596 574.2831030827288 146.0888591607667 -2262.431228447225 2.235682961210813 138.6289816860274 -2262.431726881891 2.234141782298369 145.9725576179853 -2328.133672407951 574.2846442616473 138.7452832288095 -2328.133672407951 574.2846442616473 138.7452832288095 -2328.134170842596 574.2831030827288 146.0888591607667 -2262.431228447225 2.235682961210813 138.6289816860274 -2262.431726881891 2.234141782298369 145.9725576179853 -1726.079411098277 -227.4201490261611 145.9606247327017 -2262.431228447225 2.235682961210813 138.6289816860274 -1726.078912663635 -227.4186078472375 138.6170488007445 -2262.431726881891 2.234141782298369 145.9725576179853 -2262.431726881891 2.234141782298369 145.9725576179853 -1726.079411098277 -227.4201490261611 145.9606247327017 -2262.431228447225 2.235682961210813 138.6289816860274 -1726.078912663635 -227.4186078472375 138.6170488007445</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5138\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5136\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5139\">-0.9934687579662198 -0.1141044197009234 -9.137708757733272e-005 -0.9934687579662198 -0.1141044197009234 -9.137708757733272e-005 -0.9934687579662198 -0.1141044197009234 -9.137708757733272e-005 -0.9934687579662198 -0.1141044197009234 -9.137708757733272e-005 0.9934687579662198 0.1141044197009234 9.137708757733272e-005 0.9934687579662198 0.1141044197009234 9.137708757733272e-005 0.9934687579662198 0.1141044197009234 9.137708757733272e-005 0.9934687579662198 0.1141044197009234 9.137708757733272e-005 -0.393613765067418 -0.9192758866122535 -0.0002196422250272495 -0.393613765067418 -0.9192758866122535 -0.0002196422250272495 -0.393613765067418 -0.9192758866122535 -0.0002196422250272495 -0.393613765067418 -0.9192758866122535 -0.0002196422250272495 0.393613765067418 0.9192758866122535 0.0002196422250272495 0.393613765067418 0.9192758866122535 0.0002196422250272495 0.393613765067418 0.9192758866122535 0.0002196422250272495 0.393613765067418 0.9192758866122535 0.0002196422250272495</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5139\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5137\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5135\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5136\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5137\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5140\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5141\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5144\">-2252.752607468907 9.384044167584921 153.3183031846674 -2300.695394506047 558.65843374415 153.4310066318816 -2314.415031891655 566.4699978239808 153.4317208623027 -2243.072989621258 16.53548773179415 153.3204728193908 -1729.931382454115 -211.9556658762749 153.3072035845976 -1733.782855375318 -196.4896415474632 153.3102065045341 -1733.782855375318 -196.4896415474632 153.3102065045341 -1729.931382454115 -211.9556658762749 153.3072035845976 -2243.072989621258 16.53548773179415 153.3204728193908 -2252.752607468907 9.384044167584921 153.3183031846674 -2300.695394506047 558.65843374415 153.4310066318816 -2314.415031891655 566.4699978239808 153.4317208623027</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5144\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5142\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5145\">-6.815510694152516e-005 -0.0002111348943611769 0.9999999753884687 -6.815510694152516e-005 -0.0002111348943611769 0.9999999753884687 -6.815510694152516e-005 -0.0002111348943611769 0.9999999753884687 -6.815510694152516e-005 -0.0002111348943611769 0.9999999753884687 -6.815510694152516e-005 -0.0002111348943611769 0.9999999753884687 -6.815510694152516e-005 -0.0002111348943611769 0.9999999753884687 6.815510694152516e-005 0.0002111348943611769 -0.9999999753884687 6.815510694152516e-005 0.0002111348943611769 -0.9999999753884687 6.815510694152516e-005 0.0002111348943611769 -0.9999999753884687 6.815510694152516e-005 0.0002111348943611769 -0.9999999753884687 6.815510694152516e-005 0.0002111348943611769 -0.9999999753884687 6.815510694152516e-005 0.0002111348943611769 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5145\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5143\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5141\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5142\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5143\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5143\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5146\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5147\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5150\">-2314.415031891655 566.4699978239808 153.4317208623027 -2252.752109034231 9.385585346502936 145.974727252709 -2252.752607468907 9.384044167584921 153.3183031846674 -2314.414533457004 566.4715390028996 146.0881449303443 -2314.414533457004 566.4715390028996 146.0881449303443 -2314.415031891655 566.4699978239808 153.4317208623027 -2252.752109034231 9.385585346502936 145.974727252709 -2252.752607468907 9.384044167584921 153.3183031846674 -1729.931382454115 -211.9556658762749 153.3072035845976 -2252.752109034231 9.385585346502936 145.974727252709 -1729.930884019477 -211.9541246973548 145.9636276526403 -2252.752607468907 9.384044167584921 153.3183031846674 -2252.752607468907 9.384044167584921 153.3183031846674 -1729.931382454115 -211.9556658762749 153.3072035845976 -2252.752109034231 9.385585346502936 145.974727252709 -1729.930884019477 -211.9541246973548 145.9636276526403</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5150\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5148\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5151\">-0.9939298625535116 -0.110015544924377 -9.055026162883102e-005 -0.9939298625535116 -0.110015544924377 -9.055026162883102e-005 -0.9939298625535116 -0.110015544924377 -9.055026162883102e-005 -0.9939298625535116 -0.110015544924377 -9.055026162883102e-005 0.9939298625535116 0.110015544924377 9.055026162883102e-005 0.9939298625535116 0.110015544924377 9.055026162883102e-005 0.9939298625535116 0.110015544924377 9.055026162883102e-005 0.9939298625535116 0.110015544924377 9.055026162883102e-005 -0.3898582625714751 -0.9208748486230906 -0.0002197228959169985 -0.3898582625714751 -0.9208748486230906 -0.0002197228959169985 -0.3898582625714751 -0.9208748486230906 -0.0002197228959169985 -0.3898582625714751 -0.9208748486230906 -0.0002197228959169985 0.3898582625714751 0.9208748486230906 0.0002197228959169985 0.3898582625714751 0.9208748486230906 0.0002197228959169985 0.3898582625714751 0.9208748486230906 0.0002197228959169985 0.3898582625714751 0.9208748486230906 0.0002197228959169985</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5151\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5149\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5147\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5148\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5149\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5152\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5153\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5156\">-2243.073488055914 16.53394655287783 160.6640487513512 -2286.976255555101 550.8453284854057 160.773868333419 -2300.695892940697 558.6568925652277 160.7745825638421 -2233.393870208276 23.68539011708425 160.6662183860759 -1733.783353809966 -196.4911827263835 160.6537824364949 -1737.634826731159 -181.0251583975749 160.6567853564317 -1737.634826731159 -181.0251583975749 160.6567853564317 -1733.783353809966 -196.4911827263835 160.6537824364949 -2233.393870208276 23.68539011708425 160.6662183860759 -2243.073488055914 16.53394655287783 160.6640487513512 -2286.976255555101 550.8453284854057 160.773868333419 -2300.695892940697 558.6568925652277 160.7745825638421</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5156\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5154\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5157\">-6.815510693901995e-005 -0.000211134894360495 0.9999999753884687 -6.815510693901995e-005 -0.000211134894360495 0.9999999753884687 -6.815510693901995e-005 -0.000211134894360495 0.9999999753884687 -6.815510693901995e-005 -0.000211134894360495 0.9999999753884687 -6.815510693901995e-005 -0.000211134894360495 0.9999999753884687 -6.815510693901995e-005 -0.000211134894360495 0.9999999753884687 6.815510693901995e-005 0.000211134894360495 -0.9999999753884687 6.815510693901995e-005 0.000211134894360495 -0.9999999753884687 6.815510693901995e-005 0.000211134894360495 -0.9999999753884687 6.815510693901995e-005 0.000211134894360495 -0.9999999753884687 6.815510693901995e-005 0.000211134894360495 -0.9999999753884687 6.815510693901995e-005 0.000211134894360495 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5157\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5155\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5153\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5154\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5155\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5155\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5158\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5159\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5162\">-2300.695892940697 558.6568925652277 160.7745825638421 -2243.072989621258 16.53548773179415 153.3204728193908 -2243.073488055914 16.53394655287783 160.6640487513512 -2300.695394506047 558.65843374415 153.4310066318816 -2300.695394506047 558.65843374415 153.4310066318816 -2300.695892940697 558.6568925652277 160.7745825638421 -2243.072989621258 16.53548773179415 153.3204728193908 -2243.073488055914 16.53394655287783 160.6640487513512 -1733.783353809966 -196.4911827263835 160.6537824364949 -2243.072989621258 16.53548773179415 153.3204728193908 -1733.782855375318 -196.4896415474632 153.3102065045341 -2243.073488055914 16.53394655287783 160.6640487513512 -2243.073488055914 16.53394655287783 160.6640487513512 -1733.783353809966 -196.4911827263835 160.6537824364949 -2243.072989621258 16.53548773179415 153.3204728193908 -1733.782855375318 -196.4896415474632 153.3102065045341</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5162\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5160\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5163\">-0.9943986025187871 -0.1056948970718164 -8.967531210968452e-005 -0.9943986025187871 -0.1056948970718164 -8.967531210968452e-005 -0.9943986025187871 -0.1056948970718164 -8.967531210968452e-005 -0.9943986025187871 -0.1056948970718164 -8.967531210968452e-005 0.9943986025187871 0.1056948970718164 8.967531210968452e-005 0.9943986025187871 0.1056948970718164 8.967531210968452e-005 0.9943986025187871 0.1056948970718164 8.967531210968452e-005 0.9943986025187871 0.1056948970718164 8.967531210968452e-005 -0.385882065522383 -0.9225480926186467 -0.0002198041769396624 -0.385882065522383 -0.9225480926186467 -0.0002198041769396624 -0.385882065522383 -0.9225480926186467 -0.0002198041769396624 -0.385882065522383 -0.9225480926186467 -0.0002198041769396624 0.385882065522383 0.9225480926186467 0.0002198041769396624 0.385882065522383 0.9225480926186467 0.0002198041769396624 0.385882065522383 0.9225480926186467 0.0002198041769396624 0.385882065522383 0.9225480926186467 0.0002198041769396624</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5163\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5161\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5159\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5160\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5161\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5164\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5165\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5168\">-2233.394368642934 23.68384893816701 168.0097943180317 -2273.257116604157 543.0322232266577 168.1167300349547 -2286.976753989742 550.8437873064778 168.1174442653762 -2223.7147507953 30.83529250237011 168.0119639527574 -1737.635325165802 -181.0266995764972 168.0003612883884 -1741.486798086996 -165.560675247685 168.0033642083276 -1741.486798086996 -165.560675247685 168.0033642083276 -1737.635325165802 -181.0266995764972 168.0003612883884 -2223.7147507953 30.83529250237011 168.0119639527574 -2233.394368642934 23.68384893816701 168.0097943180317 -2273.257116604157 543.0322232266577 168.1167300349547 -2286.976753989742 550.8437873064778 168.1174442653762</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5168\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5166\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5169\">-6.815510693841408e-005 -0.0002111348943594072 0.9999999753884687 -6.815510693841408e-005 -0.0002111348943594072 0.9999999753884687 -6.815510693841408e-005 -0.0002111348943594072 0.9999999753884687 -6.815510693841408e-005 -0.0002111348943594072 0.9999999753884687 -6.815510693841408e-005 -0.0002111348943594072 0.9999999753884687 -6.815510693841408e-005 -0.0002111348943594072 0.9999999753884687 6.815510693841408e-005 0.0002111348943594072 -0.9999999753884687 6.815510693841408e-005 0.0002111348943594072 -0.9999999753884687 6.815510693841408e-005 0.0002111348943594072 -0.9999999753884687 6.815510693841408e-005 0.0002111348943594072 -0.9999999753884687 6.815510693841408e-005 0.0002111348943594072 -0.9999999753884687 6.815510693841408e-005 0.0002111348943594072 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5169\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5167\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5165\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5166\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5167\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5167\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5170\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5171\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5174\">-2286.976753989742 550.8437873064778 168.1174442653762 -2233.393870208276 23.68539011708425 160.6662183860759 -2233.394368642934 23.68384893816701 168.0097943180317 -2286.976255555101 550.8453284854057 160.773868333419 -2286.976255555101 550.8453284854057 160.773868333419 -2286.976753989742 550.8437873064778 168.1174442653762 -2233.393870208276 23.68539011708425 160.6662183860759 -2233.394368642934 23.68384893816701 168.0097943180317 -1737.635325165802 -181.0266995764972 168.0003612883884 -2233.393870208276 23.68539011708425 160.6662183860759 -1737.634826731159 -181.0251583975749 160.6567853564317 -2233.394368642934 23.68384893816701 168.0097943180317 -2233.394368642934 23.68384893816701 168.0097943180317 -1737.635325165802 -181.0266995764972 168.0003612883884 -2233.393870208276 23.68539011708425 160.6662183860759 -1737.634826731159 -181.0251583975749 160.6567853564317</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5174\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5172\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5175\">-0.994873981740949 -0.1011224632745249 -8.874797231846458e-005 -0.994873981740949 -0.1011224632745249 -8.874797231846458e-005 -0.994873981740949 -0.1011224632745249 -8.874797231846458e-005 -0.994873981740949 -0.1011224632745249 -8.874797231846458e-005 0.994873981740949 0.1011224632745249 8.874797231846458e-005 0.994873981740949 0.1011224632745249 8.874797231846458e-005 0.994873981740949 0.1011224632745249 8.874797231846458e-005 0.994873981740949 0.1011224632745249 8.874797231846458e-005 -0.3816653955377273 -0.9243005341874923 -0.0002198857577155399 -0.3816653955377273 -0.9243005341874923 -0.0002198857577155399 -0.3816653955377273 -0.9243005341874923 -0.0002198857577155399 -0.3816653955377273 -0.9243005341874923 -0.0002198857577155399 0.3816653955377273 0.9243005341874923 0.0002198857577155399 0.3816653955377273 0.9243005341874923 0.0002198857577155399 0.3816653955377273 0.9243005341874923 0.0002198857577155399 0.3816653955377273 0.9243005341874923 0.0002198857577155399</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5175\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5173\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5171\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5172\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5173\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5176\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5177\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5180\">-2223.715249229956 30.83375132345744 175.3555398847144 -2259.537977653208 535.2191179679094 175.4595917364906 -2273.257615038805 543.0306820477282 175.4603059669124 -2214.035631382323 37.98519488766326 175.3577095194382 -1741.487296521648 -165.5622164266064 175.346940140284 -1745.338769442849 -150.0961920977988 175.3499430602223 -1745.338769442849 -150.0961920977988 175.3499430602223 -1741.487296521648 -165.5622164266064 175.346940140284 -2214.035631382323 37.98519488766326 175.3577095194382 -2223.715249229956 30.83375132345744 175.3555398847144 -2259.537977653208 535.2191179679094 175.4595917364906 -2273.257615038805 543.0306820477282 175.4603059669124</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5180\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5178\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5181\">-6.815510693891991e-005 -0.0002111348943599638 0.9999999753884687 -6.815510693891991e-005 -0.0002111348943599638 0.9999999753884687 -6.815510693891991e-005 -0.0002111348943599638 0.9999999753884687 -6.815510693891991e-005 -0.0002111348943599638 0.9999999753884687 -6.815510693891991e-005 -0.0002111348943599638 0.9999999753884687 -6.815510693891991e-005 -0.0002111348943599638 0.9999999753884687 6.815510693891991e-005 0.0002111348943599638 -0.9999999753884687 6.815510693891991e-005 0.0002111348943599638 -0.9999999753884687 6.815510693891991e-005 0.0002111348943599638 -0.9999999753884687 6.815510693891991e-005 0.0002111348943599638 -0.9999999753884687 6.815510693891991e-005 0.0002111348943599638 -0.9999999753884687 6.815510693891991e-005 0.0002111348943599638 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5181\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5179\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5177\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5178\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5179\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5179\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5182\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5183\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5186\">-2273.257615038805 543.0306820477282 175.4603059669124 -2223.7147507953 30.83529250237011 168.0119639527574 -2223.715249229956 30.83375132345744 175.3555398847144 -2273.257116604157 543.0322232266577 168.1167300349547 -2273.257116604157 543.0322232266577 168.1167300349547 -2273.257615038805 543.0306820477282 175.4603059669124 -2223.7147507953 30.83529250237011 168.0119639527574 -2223.715249229956 30.83375132345744 175.3555398847144 -1741.487296521648 -165.5622164266064 175.346940140284 -2223.7147507953 30.83529250237011 168.0119639527574 -1741.486798086996 -165.560675247685 168.0033642083276 -2223.715249229956 30.83375132345744 175.3555398847144 -2223.715249229956 30.83375132345744 175.3555398847144 -1741.487296521648 -165.5622164266064 175.346940140284 -2223.7147507953 30.83529250237011 168.0119639527574 -1741.486798086996 -165.560675247685 168.0033642083276</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5186\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5184\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5187\">-0.9953546829297364 -0.09627589245194776 -8.776346061885845e-005 -0.9953546829297364 -0.09627589245194776 -8.776346061885845e-005 -0.9953546829297364 -0.09627589245194776 -8.776346061885845e-005 -0.9953546829297364 -0.09627589245194776 -8.776346061885845e-005 0.9953546829297364 0.09627589245194776 8.776346061885845e-005 0.9953546829297364 0.09627589245194776 8.776346061885845e-005 0.9953546829297364 0.09627589245194776 8.776346061885845e-005 0.9953546829297364 0.09627589245194776 8.776346061885845e-005 -0.3771860717513 -0.9261374729980616 -0.0002199672438056805 -0.3771860717513 -0.9261374729980616 -0.0002199672438056805 -0.3771860717513 -0.9261374729980616 -0.0002199672438056805 -0.3771860717513 -0.9261374729980616 -0.0002199672438056805 0.3771860717513 0.9261374729980616 0.0002199672438056805 0.3771860717513 0.9261374729980616 0.0002199672438056805 0.3771860717513 0.9261374729980616 0.0002199672438056805 0.3771860717513 0.9261374729980616 0.0002199672438056805</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5187\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5185\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5183\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5184\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5185\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5188\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5189\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5192\">-2214.036129816971 37.98365370875047 182.7012854513941 -2245.818838702277 527.4060127091503 182.8024534380274 -2259.538476087858 535.2175767889838 182.8031676684495 -2204.356511969349 45.13509727295334 182.7034550861202 -1745.339267877494 -150.0977332767202 182.6935189921797 -1749.190740798693 -134.6317089479054 182.6965219121174 -1749.190740798693 -134.6317089479054 182.6965219121174 -1745.339267877494 -150.0977332767202 182.6935189921797 -2204.356511969349 45.13509727295334 182.7034550861202 -2214.036129816971 37.98365370875047 182.7012854513941 -2245.818838702277 527.4060127091503 182.8024534380274 -2259.538476087858 535.2175767889838 182.8031676684495</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5192\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5190\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5193\">-6.815510693924195e-005 -0.000211134894361031 0.9999999753884687 -6.815510693924195e-005 -0.000211134894361031 0.9999999753884687 -6.815510693924195e-005 -0.000211134894361031 0.9999999753884687 -6.815510693924195e-005 -0.000211134894361031 0.9999999753884687 -6.815510693924195e-005 -0.000211134894361031 0.9999999753884687 -6.815510693924195e-005 -0.000211134894361031 0.9999999753884687 6.815510693924195e-005 0.000211134894361031 -0.9999999753884687 6.815510693924195e-005 0.000211134894361031 -0.9999999753884687 6.815510693924195e-005 0.000211134894361031 -0.9999999753884687 6.815510693924195e-005 0.000211134894361031 -0.9999999753884687 6.815510693924195e-005 0.000211134894361031 -0.9999999753884687 6.815510693924195e-005 0.000211134894361031 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5193\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5191\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5189\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5190\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5191\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5191\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5194\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5195\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5198\">-2259.538476087858 535.2175767889838 182.8031676684495 -2214.035631382323 37.98519488766326 175.3577095194382 -2214.036129816971 37.98365370875047 182.7012854513941 -2259.537977653208 535.2191179679094 175.4595917364906 -2259.537977653208 535.2191179679094 175.4595917364906 -2259.538476087858 535.2175767889838 182.8031676684495 -2214.035631382323 37.98519488766326 175.3577095194382 -2214.036129816971 37.98365370875047 182.7012854513941 -1745.339267877494 -150.0977332767202 182.6935189921797 -2214.035631382323 37.98519488766326 175.3577095194382 -1745.338769442849 -150.0961920977988 175.3499430602223 -2214.036129816971 37.98365370875047 182.7012854513941 -2214.036129816971 37.98365370875047 182.7012854513941 -1745.339267877494 -150.0977332767202 182.6935189921797 -2214.035631382323 37.98519488766326 175.3577095194382 -1745.338769442849 -150.0961920977988 175.3499430602223</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5198\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5196\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5199\">-0.9958389871810961 -0.0911301491845249 -8.671640666982627e-005 -0.9958389871810961 -0.0911301491845249 -8.671640666982627e-005 -0.9958389871810961 -0.0911301491845249 -8.671640666982627e-005 -0.9958389871810961 -0.0911301491845249 -8.671640666982627e-005 0.9958389871810961 0.0911301491845249 8.671640666982627e-005 0.9958389871810961 0.0911301491845249 8.671640666982627e-005 0.9958389871810961 0.0911301491845249 8.671640666982627e-005 0.9958389871810961 0.0911301491845249 8.671640666982627e-005 -0.3724191401595418 -0.9280646182360598 -0.0002200481406230841 -0.3724191401595418 -0.9280646182360598 -0.0002200481406230841 -0.3724191401595418 -0.9280646182360598 -0.0002200481406230841 -0.3724191401595418 -0.9280646182360598 -0.0002200481406230841 0.3724191401595418 0.9280646182360598 0.0002200481406230841 0.3724191401595418 0.9280646182360598 0.0002200481406230841 0.3724191401595418 0.9280646182360598 0.0002200481406230841 0.3724191401595418 0.9280646182360598 0.0002200481406230841</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5199\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5197\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5195\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5196\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5197\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5200\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5201\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5204\">-2204.357010403988 45.13355609403769 190.0470310180773 -2232.099699751322 519.5929074504055 190.145315139565 -2245.819337136904 527.4044715302362 190.1460293699853 -2194.677392556348 52.28499965824363 190.0492006528011 -1749.191239233337 -134.6332501268306 190.0400978440747 -1753.042712154529 -119.1672257980228 190.0431007640134 -1753.042712154529 -119.1672257980228 190.0431007640134 -1749.191239233337 -134.6332501268306 190.0400978440747 -2194.677392556348 52.28499965824363 190.0492006528011 -2204.357010403988 45.13355609403769 190.0470310180773 -2232.099699751322 519.5929074504055 190.145315139565 -2245.819337136904 527.4044715302362 190.1460293699853</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5204\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5202\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5205\">-6.815510693995892e-005 -0.000211134894361477 0.9999999753884687 -6.815510693995892e-005 -0.000211134894361477 0.9999999753884687 -6.815510693995892e-005 -0.000211134894361477 0.9999999753884687 -6.815510693995892e-005 -0.000211134894361477 0.9999999753884687 -6.815510693995892e-005 -0.000211134894361477 0.9999999753884687 -6.815510693995892e-005 -0.000211134894361477 0.9999999753884687 6.815510693995892e-005 0.000211134894361477 -0.9999999753884687 6.815510693995892e-005 0.000211134894361477 -0.9999999753884687 6.815510693995892e-005 0.000211134894361477 -0.9999999753884687 6.815510693995892e-005 0.000211134894361477 -0.9999999753884687 6.815510693995892e-005 0.000211134894361477 -0.9999999753884687 6.815510693995892e-005 0.000211134894361477 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5205\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5203\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5201\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5202\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5203\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5203\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5206\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5207\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5210\">-2245.819337136904 527.4044715302362 190.1460293699853 -2204.356511969349 45.13509727295334 182.7034550861202 -2204.357010403988 45.13355609403769 190.0470310180773 -2245.818838702277 527.4060127091503 182.8024534380274 -2245.818838702277 527.4060127091503 182.8024534380274 -2245.819337136904 527.4044715302362 190.1460293699853 -2204.356511969349 45.13509727295334 182.7034550861202 -2204.357010403988 45.13355609403769 190.0470310180773 -1749.191239233337 -134.6332501268306 190.0400978440747 -2204.356511969349 45.13509727295334 182.7034550861202 -1749.190740798693 -134.6317089479054 182.6965219121174 -2204.357010403988 45.13355609403769 190.0470310180773 -2204.357010403988 45.13355609403769 190.0470310180773 -1749.191239233337 -134.6332501268306 190.0400978440747 -2204.356511969349 45.13509727295334 182.7034550861202 -1749.190740798693 -134.6317089479054 182.6965219121174</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5210\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5208\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5211\">-0.9963246724685561 -0.0856571053849885 -8.560075758092788e-005 -0.9963246724685561 -0.0856571053849885 -8.560075758092788e-005 -0.9963246724685561 -0.0856571053849885 -8.560075758092788e-005 -0.9963246724685561 -0.0856571053849885 -8.560075758092788e-005 0.9963246724685561 0.0856571053849885 8.560075758092788e-005 0.9963246724685561 0.0856571053849885 8.560075758092788e-005 0.9963246724685561 0.0856571053849885 8.560075758092788e-005 0.9963246724685561 0.0856571053849885 8.560075758092788e-005 -0.3673364333087885 -0.9300881121204158 -0.0002201278250673757 -0.3673364333087885 -0.9300881121204158 -0.0002201278250673757 -0.3673364333087885 -0.9300881121204158 -0.0002201278250673757 -0.3673364333087885 -0.9300881121204158 -0.0002201278250673757 0.3673364333087885 0.9300881121204158 0.0002201278250673757 0.3673364333087885 0.9300881121204158 0.0002201278250673757 0.3673364333087885 0.9300881121204158 0.0002201278250673757 0.3673364333087885 0.9300881121204158 0.0002201278250673757</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5211\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5209\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5207\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5208\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5209\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5212\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5213\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5216\">-2194.677890991004 52.28345847933085 197.3927765847609 -2218.380560800365 511.7798021916627 197.4881768411022 -2232.10019818595 519.5913662714891 197.4888910715231 -2184.99827314337 59.43490204354098 197.3949462194849 -1753.043210589181 -119.1687669769408 197.386676695971 -1756.894683510382 -103.7027426481243 197.3896796159091 -1756.894683510382 -103.7027426481243 197.3896796159091 -1753.043210589181 -119.1687669769408 197.386676695971 -2184.99827314337 59.43490204354098 197.3949462194849 -2194.677890991004 52.28345847933085 197.3927765847609 -2218.380560800365 511.7798021916627 197.4881768411022 -2232.10019818595 519.5913662714891 197.4888910715231</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5216\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5214\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5217\">-6.815510693869039e-005 -0.00021113489436 0.9999999753884687 -6.815510693869039e-005 -0.00021113489436 0.9999999753884687 -6.815510693869039e-005 -0.00021113489436 0.9999999753884687 -6.815510693869039e-005 -0.00021113489436 0.9999999753884687 -6.815510693869039e-005 -0.00021113489436 0.9999999753884687 -6.815510693869039e-005 -0.00021113489436 0.9999999753884687 6.815510693869039e-005 0.00021113489436 -0.9999999753884687 6.815510693869039e-005 0.00021113489436 -0.9999999753884687 6.815510693869039e-005 0.00021113489436 -0.9999999753884687 6.815510693869039e-005 0.00021113489436 -0.9999999753884687 6.815510693869039e-005 0.00021113489436 -0.9999999753884687 6.815510693869039e-005 0.00021113489436 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5217\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5215\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5213\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5214\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5215\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5215\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5218\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5219\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5222\">-2232.10019818595 519.5913662714891 197.4888910715231 -2194.677392556348 52.28499965824363 190.0492006528011 -2194.677890991004 52.28345847933085 197.3927765847609 -2232.099699751322 519.5929074504055 190.145315139565 -2232.099699751322 519.5929074504055 190.145315139565 -2232.10019818595 519.5913662714891 197.4888910715231 -2194.677392556348 52.28499965824363 190.0492006528011 -2194.677890991004 52.28345847933085 197.3927765847609 -1753.043210589181 -119.1687669769408 197.386676695971 -2194.677392556348 52.28499965824363 190.0492006528011 -1753.042712154529 -119.1672257980228 190.0431007640134 -2194.677890991004 52.28345847933085 197.3927765847609 -2194.677890991004 52.28345847933085 197.3927765847609 -1753.043210589181 -119.1687669769408 197.386676695971 -2194.677392556348 52.28499965824363 190.0492006528011 -1753.042712154529 -119.1672257980228 190.0431007640134</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5222\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5220\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5223\">-0.9968088849982436 -0.07982505661487128 -8.440966395994102e-005 -0.9968088849982436 -0.07982505661487128 -8.440966395994102e-005 -0.9968088849982436 -0.07982505661487128 -8.440966395994102e-005 -0.9968088849982436 -0.07982505661487128 -8.440966395994102e-005 0.9968088849982436 0.07982505661487128 8.440966395994102e-005 0.9968088849982436 0.07982505661487128 8.440966395994102e-005 0.9968088849982436 0.07982505661487128 8.440966395994102e-005 0.9968088849982436 0.07982505661487128 8.440966395994102e-005 -0.3619060448435636 -0.9322145494548021 -0.0002202055155225592 -0.3619060448435636 -0.9322145494548021 -0.0002202055155225592 -0.3619060448435636 -0.9322145494548021 -0.0002202055155225592 -0.3619060448435636 -0.9322145494548021 -0.0002202055155225592 0.3619060448435636 0.9322145494548021 0.0002202055155225592 0.3619060448435636 0.9322145494548021 0.0002202055155225592 0.3619060448435636 0.9322145494548021 0.0002202055155225592 0.3619060448435636 0.9322145494548021 0.0002202055155225592</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5223\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5221\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5219\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5220\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5221\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5224\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5225\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5228\">-2184.998771578021 59.43336086462286 204.7385221514419 -2204.661421849413 503.9666969329086 204.8310385426384 -2218.38105923501 511.7782610127382 204.8317527730581 -2175.319153730387 66.58480442882777 204.7406917861661 -1756.895181945021 -103.7042838270527 204.7332555478671 -1760.746654866234 -88.23825949824899 204.7362584678044 -1760.746654866234 -88.23825949824899 204.7362584678044 -1756.895181945021 -103.7042838270527 204.7332555478671 -2175.319153730387 66.58480442882777 204.7406917861661 -2184.998771578021 59.43336086462286 204.7385221514419 -2204.661421849413 503.9666969329086 204.8310385426384 -2218.38105923501 511.7782610127382 204.8317527730581</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5228\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5226\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5229\">-6.815510693970944e-005 -0.000211134894360244 0.9999999753884687 -6.815510693970944e-005 -0.000211134894360244 0.9999999753884687 -6.815510693970944e-005 -0.000211134894360244 0.9999999753884687 -6.815510693970944e-005 -0.000211134894360244 0.9999999753884687 -6.815510693970944e-005 -0.000211134894360244 0.9999999753884687 -6.815510693970944e-005 -0.000211134894360244 0.9999999753884687 6.815510693970944e-005 0.000211134894360244 -0.9999999753884687 6.815510693970944e-005 0.000211134894360244 -0.9999999753884687 6.815510693970944e-005 0.000211134894360244 -0.9999999753884687 6.815510693970944e-005 0.000211134894360244 -0.9999999753884687 6.815510693970944e-005 0.000211134894360244 -0.9999999753884687 6.815510693970944e-005 0.000211134894360244 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5229\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5227\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5225\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5226\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5227\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5227\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5230\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5231\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5234\">-2218.38105923501 511.7782610127382 204.8317527730581 -2184.99827314337 59.43490204354098 197.3949462194849 -2184.998771578021 59.43336086462286 204.7385221514419 -2218.380560800365 511.7798021916627 197.4881768411022 -2218.380560800365 511.7798021916627 197.4881768411022 -2218.38105923501 511.7782610127382 204.8317527730581 -2184.99827314337 59.43490204354098 197.3949462194849 -2184.998771578021 59.43336086462286 204.7385221514419 -1756.895181945021 -103.7042838270527 204.7332555478671 -2184.99827314337 59.43490204354098 197.3949462194849 -1756.894683510382 -103.7027426481243 197.3896796159091 -2184.998771578021 59.43336086462286 204.7385221514419 -2184.998771578021 59.43336086462286 204.7385221514419 -1756.895181945021 -103.7042838270527 204.7332555478671 -2184.99827314337 59.43490204354098 197.3949462194849 -1756.894683510382 -103.7027426481243 197.3896796159091</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5234\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5232\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5235\">-0.9972879754065536 -0.07359814670228038 -8.313535443300918e-005 -0.9972879754065536 -0.07359814670228038 -8.313535443300918e-005 -0.9972879754065536 -0.07359814670228038 -8.313535443300918e-005 -0.9972879754065536 -0.07359814670228038 -8.313535443300918e-005 0.9972879754065536 0.07359814670228038 8.313535443300918e-005 0.9972879754065536 0.07359814670228038 8.313535443300918e-005 0.9972879754065536 0.07359814670228038 8.313535443300918e-005 0.9972879754065536 0.07359814670228038 8.313535443300918e-005 -0.3560916994618445 -0.934450990181398 -0.0002202802316131269 -0.3560916994618445 -0.934450990181398 -0.0002202802316131269 -0.3560916994618445 -0.934450990181398 -0.0002202802316131269 -0.3560916994618445 -0.934450990181398 -0.0002202802316131269 0.3560916994618445 0.934450990181398 0.0002202802316131269 0.3560916994618445 0.934450990181398 0.0002202802316131269 0.3560916994618445 0.934450990181398 0.0002202802316131269 0.3560916994618445 0.934450990181398 0.0002202802316131269</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5235\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5233\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5231\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5232\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5233\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5236\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5237\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5240\">-2175.319652165023 66.58326324991407 212.0842677181234 -2190.942282898465 496.1535916741657 212.173900244174 -2204.661920284075 503.9651557539823 212.174614474594 -2165.640034317396 73.73470681412422 212.0864373528485 -1760.747153300866 -88.23980067716281 212.0798343997612 -1764.598626222078 -72.77377634835376 212.0828373196996 -1764.598626222078 -72.77377634835376 212.0828373196996 -1760.747153300866 -88.23980067716281 212.0798343997612 -2165.640034317396 73.73470681412422 212.0864373528485 -2175.319652165023 66.58326324991407 212.0842677181234 -2190.942282898465 496.1535916741657 212.173900244174 -2204.661920284075 503.9651557539823 212.174614474594</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5240\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5238\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5241\">-6.815510693865258e-005 -0.0002111348943602899 0.9999999753884687 -6.815510693865258e-005 -0.0002111348943602899 0.9999999753884687 -6.815510693865258e-005 -0.0002111348943602899 0.9999999753884687 -6.815510693865258e-005 -0.0002111348943602899 0.9999999753884687 -6.815510693865258e-005 -0.0002111348943602899 0.9999999753884687 -6.815510693865258e-005 -0.0002111348943602899 0.9999999753884687 6.815510693865258e-005 0.0002111348943602899 -0.9999999753884687 6.815510693865258e-005 0.0002111348943602899 -0.9999999753884687 6.815510693865258e-005 0.0002111348943602899 -0.9999999753884687 6.815510693865258e-005 0.0002111348943602899 -0.9999999753884687 6.815510693865258e-005 0.0002111348943602899 -0.9999999753884687 6.815510693865258e-005 0.0002111348943602899 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5241\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5239\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5237\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5238\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5239\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5239\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5242\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5243\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5246\">-2204.661920284075 503.9651557539823 212.174614474594 -2175.319153730387 66.58480442882777 204.7406917861661 -2175.319652165023 66.58326324991407 212.0842677181234 -2204.661421849413 503.9666969329086 204.8310385426384 -2204.661421849413 503.9666969329086 204.8310385426384 -2204.661920284075 503.9651557539823 212.174614474594 -2175.319153730387 66.58480442882777 204.7406917861661 -2175.319652165023 66.58326324991407 212.0842677181234 -1760.747153300866 -88.23980067716281 212.0798343997612 -2175.319153730387 66.58480442882777 204.7406917861661 -1760.746654866234 -88.23825949824899 204.7362584678044 -2175.319652165023 66.58326324991407 212.0842677181234 -2175.319652165023 66.58326324991407 212.0842677181234 -1760.747153300866 -88.23980067716281 212.0798343997612 -2175.319153730387 66.58480442882777 204.7406917861661 -1760.746654866234 -88.23825949824899 204.7362584678044</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5246\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5244\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5247\">-0.9977572891350025 -0.06693568025953202 -8.176897353843682e-005 -0.9977572891350025 -0.06693568025953202 -8.176897353843682e-005 -0.9977572891350025 -0.06693568025953202 -8.176897353843682e-005 -0.9977572891350025 -0.06693568025953202 -8.176897353843682e-005 0.9977572891350025 0.06693568025953202 8.176897353843682e-005 0.9977572891350025 0.06693568025953202 8.176897353843682e-005 0.9977572891350025 0.06693568025953202 8.176897353843682e-005 0.9977572891350025 0.06693568025953202 8.176897353843682e-005 -0.3498519936940054 -0.936804960466094 -0.0002203507427400247 -0.3498519936940054 -0.936804960466094 -0.0002203507427400247 -0.3498519936940054 -0.936804960466094 -0.0002203507427400247 -0.3498519936940054 -0.936804960466094 -0.0002203507427400247 0.3498519936940054 0.936804960466094 0.0002203507427400247 0.3498519936940054 0.936804960466094 0.0002203507427400247 0.3498519936940054 0.936804960466094 0.0002203507427400247 0.3498519936940054 0.936804960466094 0.0002203507427400247</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5247\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5245\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5243\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5244\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5245\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5248\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5249\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5252\">-2165.640532752056 73.73316563520345 219.4300132848054 -2177.223143947538 488.3404864154183 219.51676194571 -2190.942781333115 496.1520504952396 219.5174761761305 -2155.960914904415 80.8846091994136 219.4321829195292 -1764.599124656714 -72.77531752727373 219.4264132516567 -1768.450597577917 -57.30929319847311 219.4294161715947 -1768.450597577917 -57.30929319847311 219.4294161715947 -1764.599124656714 -72.77531752727373 219.4264132516567 -2155.960914904415 80.8846091994136 219.4321829195292 -2165.640532752056 73.73316563520345 219.4300132848054 -2177.223143947538 488.3404864154183 219.51676194571 -2190.942781333115 496.1520504952396 219.5174761761305</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5252\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5250\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5253\">-6.81551069398973e-005 -0.0002111348943617337 0.9999999753884687 -6.81551069398973e-005 -0.0002111348943617337 0.9999999753884687 -6.81551069398973e-005 -0.0002111348943617337 0.9999999753884687 -6.81551069398973e-005 -0.0002111348943617337 0.9999999753884687 -6.81551069398973e-005 -0.0002111348943617337 0.9999999753884687 -6.81551069398973e-005 -0.0002111348943617337 0.9999999753884687 6.81551069398973e-005 0.0002111348943617337 -0.9999999753884687 6.81551069398973e-005 0.0002111348943617337 -0.9999999753884687 6.81551069398973e-005 0.0002111348943617337 -0.9999999753884687 6.81551069398973e-005 0.0002111348943617337 -0.9999999753884687 6.81551069398973e-005 0.0002111348943617337 -0.9999999753884687 6.81551069398973e-005 0.0002111348943617337 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5253\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5251\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5249\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5250\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5251\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5251\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5254\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5255\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5258\">-2190.942781333115 496.1520504952396 219.5174761761305 -2165.640034317396 73.73470681412422 212.0864373528485 -2165.640532752056 73.73316563520345 219.4300132848054 -2190.942282898465 496.1535916741657 212.173900244174 -2190.942282898465 496.1535916741657 212.173900244174 -2190.942781333115 496.1520504952396 219.5174761761305 -2165.640034317396 73.73470681412422 212.0864373528485 -2165.640532752056 73.73316563520345 219.4300132848054 -1764.599124656714 -72.77531752727373 219.4264132516567 -2165.640034317396 73.73470681412422 212.0864373528485 -1764.598626222078 -72.77377634835376 212.0828373196996 -2165.640532752056 73.73316563520345 219.4300132848054 -2165.640532752056 73.73316563520345 219.4300132848054 -1764.599124656714 -72.77531752727373 219.4264132516567 -2165.640034317396 73.73470681412422 212.0864373528485 -1764.598626222078 -72.77377634835376 212.0828373196996</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5258\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5256\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5259\">-0.9982108967012485 -0.05979129751675872 -8.030038623706811e-005 -0.9982108967012485 -0.05979129751675872 -8.030038623706811e-005 -0.9982108967012485 -0.05979129751675872 -8.030038623706811e-005 -0.9982108967012485 -0.05979129751675872 -8.030038623706811e-005 0.9982108967012485 0.05979129751675872 8.030038623706811e-005 0.9982108967012485 0.05979129751675872 8.030038623706811e-005 0.9982108967012485 0.05979129751675872 8.030038623706811e-005 0.9982108967012485 0.05979129751675872 8.030038623706811e-005 -0.3431394762632747 -0.9392844357524361 -0.0002204155018585402 -0.3431394762632747 -0.9392844357524361 -0.0002204155018585402 -0.3431394762632747 -0.9392844357524361 -0.0002204155018585402 -0.3431394762632747 -0.9392844357524361 -0.0002204155018585402 0.3431394762632747 0.9392844357524361 0.0002204155018585402 0.3431394762632747 0.9392844357524361 0.0002204155018585402 0.3431394762632747 0.9392844357524361 0.0002204155018585402 0.3431394762632747 0.9392844357524361 0.0002204155018585402</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5259\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5257\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5255\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5256\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5257\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5260\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5261\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5264\">-2177.223642382159 488.3389452364955 226.8603378776672 -2155.960914904415 80.8846091994136 219.4321829195292 -2155.961413339054 80.88306802049365 226.7757588514876 -2177.223143947538 488.3404864154183 219.51676194571 -2177.223143947538 488.3404864154183 219.51676194571 -2177.223642382159 488.3389452364955 226.8603378776672 -2155.960914904415 80.8846091994136 219.4321829195292 -2155.961413339054 80.88306802049365 226.7757588514876 -1768.451096012558 -57.31083437739101 226.7729921035526 -2155.960914904415 80.8846091994136 219.4321829195292 -1768.450597577917 -57.30929319847311 219.4294161715947 -2155.961413339054 80.88306802049365 226.7757588514876 -2155.961413339054 80.88306802049365 226.7757588514876 -1768.451096012558 -57.31083437739101 226.7729921035526 -2155.960914904415 80.8846091994136 219.4321829195292 -1768.450597577917 -57.30929319847311 219.4294161715947</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5264\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5262\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5265\">-0.9986412446032087 -0.05211197924506533 -7.871795381331534e-005 -0.9986412446032087 -0.05211197924506533 -7.871795381331534e-005 -0.9986412446032087 -0.05211197924506533 -7.871795381331534e-005 -0.9986412446032087 -0.05211197924506533 -7.871795381331534e-005 0.9986412446032087 0.05211197924506533 7.871795381331534e-005 0.9986412446032087 0.05211197924506533 7.871795381331534e-005 0.9986412446032087 0.05211197924506533 7.871795381331534e-005 0.9986412446032087 0.05211197924506533 7.871795381331534e-005 -0.3358995280946704 -0.941897796163484 -0.0002204725604869653 -0.3358995280946704 -0.941897796163484 -0.0002204725604869653 -0.3358995280946704 -0.941897796163484 -0.0002204725604869653 -0.3358995280946704 -0.941897796163484 -0.0002204725604869653 0.3358995280946704 0.941897796163484 0.0002204725604869653 0.3358995280946704 0.941897796163484 0.0002204725604869653 0.3358995280946704 0.941897796163484 0.0002204725604869653 0.3358995280946704 0.941897796163484 0.0002204725604869653</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5265\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5263\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5261\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5262\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5263\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5266\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5267\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5270\">-2476.07123988357 -155.5870954227842 28.42745476150681 -2616.554647647934 738.5305668230928 28.60665954240171 -2630.944562195717 746.7237673016447 28.60740866677266 -2465.918721287946 -148.0862658534578 28.42973039441194 -1641.062138514902 -568.7599219551145 28.39712969427649 -1645.101776346532 -552.5383001854698 28.40027932280436 -1645.101776346532 -552.5383001854698 28.40027932280436 -1641.062138514902 -568.7599219551145 28.39712969427649 -2465.918721287946 -148.0862658534578 28.42973039441194 -2476.07123988357 -155.5870954227842 28.42745476150681 -2616.554647647934 738.5305668230928 28.60665954240171 -2630.944562195717 746.7237673016447 28.60740866677266</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5270\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5268\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5271\">-6.815510693868818e-005 -0.0002111348943600813 0.9999999753884687 -6.815510693868818e-005 -0.0002111348943600813 0.9999999753884687 -6.815510693868818e-005 -0.0002111348943600813 0.9999999753884687 -6.815510693868818e-005 -0.0002111348943600813 0.9999999753884687 -6.815510693868818e-005 -0.0002111348943600813 0.9999999753884687 -6.815510693868818e-005 -0.0002111348943600813 0.9999999753884687 6.815510693868818e-005 0.0002111348943600813 -0.9999999753884687 6.815510693868818e-005 0.0002111348943600813 -0.9999999753884687 6.815510693868818e-005 0.0002111348943600813 -0.9999999753884687 6.815510693868818e-005 0.0002111348943600813 -0.9999999753884687 6.815510693868818e-005 0.0002111348943600813 -0.9999999753884687 6.815510693868818e-005 0.0002111348943600813 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5271\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5269\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5267\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5268\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5269\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5269\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5272\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5273\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5276\">-2415.159118917638 -110.5913650803306 72.50256415068398 -2530.218150969051 689.3621168782001 72.66362038792035 -2544.608065516863 697.5553173567654 72.66436951229129 -2405.006600321991 -103.0905355110006 72.50483978358876 -1665.302956112584 -471.4394384108491 72.47748305718859 -1669.342593944231 -455.2178166412207 72.48063268571619 -1669.342593944231 -455.2178166412207 72.48063268571619 -1665.302956112584 -471.4394384108491 72.47748305718859 -2405.006600321991 -103.0905355110006 72.50483978358876 -2415.159118917638 -110.5913650803306 72.50256415068398 -2530.218150969051 689.3621168782001 72.66362038792035 -2544.608065516863 697.5553173567654 72.66436951229129</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5276\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5274\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5277\">-6.815510693868228e-005 -0.0002111348943603321 0.9999999753884687 -6.815510693868228e-005 -0.0002111348943603321 0.9999999753884687 -6.815510693868228e-005 -0.0002111348943603321 0.9999999753884687 -6.815510693868228e-005 -0.0002111348943603321 0.9999999753884687 -6.815510693868228e-005 -0.0002111348943603321 0.9999999753884687 -6.815510693868228e-005 -0.0002111348943603321 0.9999999753884687 6.815510693868228e-005 0.0002111348943603321 -0.9999999753884687 6.815510693868228e-005 0.0002111348943603321 -0.9999999753884687 6.815510693868228e-005 0.0002111348943603321 -0.9999999753884687 6.815510693868228e-005 0.0002111348943603321 -0.9999999753884687 6.815510693868228e-005 0.0002111348943603321 -0.9999999753884687 6.815510693868228e-005 0.0002111348943603321 -0.9999999753884687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5277\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5275\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5273\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5274\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5275\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5275\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5278\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5279\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5282\">-2155.961413339054 80.88306802049365 226.7757588514876 -2163.504004996591 480.5273811566711 226.8596236472459 -2177.223642382159 488.3389452364955 226.8603378776672 -2146.798175966813 87.0224332587463 226.7779284843811 -1768.451096012558 -57.31083437739101 226.7729921035526 -1772.302568933756 -41.84481004858483 226.7759950234891 -1772.302568933756 -41.84481004858483 226.7759950234891 -1768.451096012558 -57.31083437739101 226.7729921035526 -2146.798175966813 87.0224332587463 226.7779284843811 -2155.961413339054 80.88306802049365 226.7757588514876 -2163.504004996591 480.5273811566711 226.8596236472459 -2177.223642382159 488.3389452364955 226.8603378776672</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5282\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5280\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5283\">-6.772922317450889e-005 -0.0002108157198963619 0.9999999754847421 -6.772922317450889e-005 -0.0002108157198963619 0.9999999754847421 -6.772922317450889e-005 -0.0002108157198963619 0.9999999754847421 -6.772922317450889e-005 -0.0002108157198963619 0.9999999754847421 -6.772922317450889e-005 -0.0002108157198963619 0.9999999754847421 -6.772922317450889e-005 -0.0002108157198963619 0.9999999754847421 6.772922317450889e-005 0.0002108157198963619 -0.9999999754847421 6.772922317450889e-005 0.0002108157198963619 -0.9999999754847421 6.772922317450889e-005 0.0002108157198963619 -0.9999999754847421 6.772922317450889e-005 0.0002108157198963619 -0.9999999754847421 6.772922317450889e-005 0.0002108157198963619 -0.9999999754847421 6.772922317450889e-005 0.0002108157198963619 -0.9999999754847421</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5283\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5281\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5279\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5280\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5281\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5281\" />\r\n\t\t\t\t\t<p>6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5284\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5285\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID5288\">-2163.504503431224 480.5258399777458 234.2031995792042 -2146.798175966813 87.0224332587463 226.7779284843811 -2146.798674401493 87.0208920798261 234.1215044163389 -2163.504004996591 480.5273811566711 226.8596236472459 -2163.504004996591 480.5273811566711 226.8596236472459 -2163.504503431224 480.5258399777458 234.2031995792042 -2146.798175966813 87.0224332587463 226.7779284843811 -2146.798674401493 87.0208920798261 234.1215044163389 -1772.303067368405 -41.84635122750456 234.1195709554486 -2146.798175966813 87.0224332587463 226.7779284843811 -1772.302568933756 -41.84481004858483 226.7759950234891 -1795.991588542413 -33.69492204010558 234.1196932554925 -2146.798674401493 87.0208920798261 234.1215044163389 -2146.798674401493 87.0208920798261 234.1215044163389 -1795.991588542413 -33.69492204010558 234.1196932554925 -2146.798175966813 87.0224332587463 226.7779284843811 -1772.303067368405 -41.84635122750456 234.1195709554486 -1772.302568933756 -41.84481004858483 226.7759950234891</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID5288\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5286\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID5289\">-0.9991000462451326 -0.04241570119556503 -7.671416079414334e-005 -0.9991000462451326 -0.04241570119556503 -7.671416079414334e-005 -0.9991000462451326 -0.04241570119556503 -7.671416079414334e-005 -0.9991000462451326 -0.04241570119556503 -7.671416079414334e-005 0.9991000462451326 0.04241570119556503 7.671416079414334e-005 0.9991000462451326 0.04241570119556503 7.671416079414334e-005 0.9991000462451326 0.04241570119556503 7.671416079414334e-005 0.9991000462451326 0.04241570119556503 7.671416079414334e-005 -0.3253831874342026 -0.9455822189004965 -0.0002205320204726067 -0.3253831874342026 -0.9455822189004965 -0.0002205320204726067 -0.3253831874342026 -0.9455822189004965 -0.0002205320204726067 -0.3253831874342026 -0.9455822189004965 -0.0002205320204726067 -0.3253831874342026 -0.9455822189004965 -0.0002205320204726067 0.3253831874342026 0.9455822189004965 0.0002205320204726067 0.3253831874342026 0.9455822189004965 0.0002205320204726067 0.3253831874342026 0.9455822189004965 0.0002205320204726067 0.3253831874342026 0.9455822189004965 0.0002205320204726067 0.3253831874342026 0.9455822189004965 0.0002205320204726067</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID5289\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5287\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5285\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5286\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5287\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 9 11 12 13 14 15 14 16 15 17 15 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5290\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5291\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID5294\">-1795.991588542413 -33.69492204010558 234.1196932554925 -1795.995940676474 -33.65667156700437 234.1196812696165 -2146.798674401493 87.0208920798261 234.1215044163389 -2146.798674401493 87.0208920798261 234.1215044163389 -1795.995940676474 -33.65667156700437 234.1196812696165 -1795.991588542413 -33.69492204010558 234.1196932554925 -1795.991588542413 -33.69492204010558 234.1196932554925 -1784.242622049946 -37.69986085445341 234.1196326826311 -1795.995940676474 -33.65667156700437 234.1196812696165 -1772.303067368405 -41.84635122750456 234.1195709554486 -1772.303067368405 -41.84635122750456 234.1195709554486 -1795.991588542413 -33.69492204010558 234.1196932554925 -1784.242622049946 -37.69986085445341 234.1196326826311 -1795.995940676474 -33.65667156700437 234.1196812696165</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID5294\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5292\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID5295\">0.0001175942745024481 0.0003267322040772336 0.999999939708825 0.0001175942745024481 0.0003267322040772336 0.999999939708825 0.0001175942745024481 0.0003267322040772336 0.999999939708825 -0.0001175942745024481 -0.0003267322040772336 -0.999999939708825 -0.0001175942745024481 -0.0003267322040772336 -0.999999939708825 -0.0001175942745024481 -0.0003267322040772336 -0.999999939708825 4.689764644076387e-005 0.0001218897765729469 0.9999999914717465 4.689764644076387e-005 0.0001218897765729469 0.9999999914717465 4.689764644076387e-005 0.0001218897765729469 0.9999999914717465 4.689764644076387e-005 0.0001218897765729469 0.9999999914717465 -4.689764644076387e-005 -0.0001218897765729469 -0.9999999914717465 -4.689764644076387e-005 -0.0001218897765729469 -0.9999999914717465 -4.689764644076387e-005 -0.0001218897765729469 -0.9999999914717465 -4.689764644076387e-005 -0.0001218897765729469 -0.9999999914717465</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID5295\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5293\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5291\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5292\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5293\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 8 7 6 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5293\" />\r\n\t\t\t\t\t<p>3 4 5 10 11 12 13 12 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5296\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5297\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5300\">-1795.991588542413 -33.69492204010558 234.1196932554925 -1784.242622049946 -37.69986085445341 234.1196326826311 -1795.995940676474 -33.65667156700437 234.1196812696165 -1772.303067368405 -41.84635122750456 234.1195709554486 -1772.303067368405 -41.84635122750456 234.1195709554486 -1795.991588542413 -33.69492204010558 234.1196932554925 -1784.242622049946 -37.69986085445341 234.1196326826311 -1795.995940676474 -33.65667156700437 234.1196812696165</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5300\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5298\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5301\">4.689764644046754e-005 0.0001218897765720474 0.9999999914717465 4.689764644046754e-005 0.0001218897765720474 0.9999999914717465 4.689764644046754e-005 0.0001218897765720474 0.9999999914717465 4.689764644046754e-005 0.0001218897765720474 0.9999999914717465 -4.689764644046754e-005 -0.0001218897765720474 -0.9999999914717465 -4.689764644046754e-005 -0.0001218897765720474 -0.9999999914717465 -4.689764644046754e-005 -0.0001218897765720474 -0.9999999914717465 -4.689764644046754e-005 -0.0001218897765720474 -0.9999999914717465</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5301\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5299\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5297\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5298\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5299\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5302\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5303\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5306\">-1795.991588542413 -33.69492204010558 234.1196932554925 -1784.242622049946 -37.69986085445341 234.1196326826311 -1795.995940676474 -33.65667156700437 234.1196812696165 -1772.303067368405 -41.84635122750456 234.1195709554486 -1772.303067368405 -41.84635122750456 234.1195709554486 -1795.991588542413 -33.69492204010558 234.1196932554925 -1784.242622049946 -37.69986085445341 234.1196326826311 -1795.995940676474 -33.65667156700437 234.1196812696165</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5306\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5304\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5307\">4.689764644046754e-005 0.0001218897765720474 0.9999999914717465 4.689764644046754e-005 0.0001218897765720474 0.9999999914717465 4.689764644046754e-005 0.0001218897765720474 0.9999999914717465 4.689764644046754e-005 0.0001218897765720474 0.9999999914717465 -4.689764644046754e-005 -0.0001218897765720474 -0.9999999914717465 -4.689764644046754e-005 -0.0001218897765720474 -0.9999999914717465 -4.689764644046754e-005 -0.0001218897765720474 -0.9999999914717465 -4.689764644046754e-005 -0.0001218897765720474 -0.9999999914717465</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5307\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5305\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5303\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5304\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5305\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5308\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5309\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5312\">-1795.995940676474 -33.65667156700437 234.1196812696165 -1796.952714601144 -25.24768076103649 234.1170462924918 -2146.798674401493 87.0208920798261 234.1215044163389 -2146.798674401493 87.0208920798261 234.1215044163389 -1796.952714601144 -25.24768076103649 234.1170462924918 -1795.995940676474 -33.65667156700437 234.1196812696165</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5312\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5310\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5313\">0.0001175942745527283 0.0003267322042267509 0.999999939708825 0.0001175942745527283 0.0003267322042267509 0.999999939708825 0.0001175942745527283 0.0003267322042267509 0.999999939708825 -0.0001175942745527283 -0.0003267322042267509 -0.999999939708825 -0.0001175942745527283 -0.0003267322042267509 -0.999999939708825 -0.0001175942745527283 -0.0003267322042267509 -0.999999939708825</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5313\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5311\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5309\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5310\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5311\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5314\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5315\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5317\">-2645.333479874195 754.9200501380484 13.92100592722864 -2645.332981439582 754.9215913169662 6.577429995271247</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5317\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5316\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5315\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5316\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5320\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5321\">\r\n\t\t\t\t\t<float_array count=\"5742\" id=\"ID5324\">84.64293412253119 539.2472569849912 161.3867217472702 84.64293416672354 539.2472565560959 161.3892811276149 84.6429340036766 521.2191899349022 161.3868834741656 84.64293404786349 521.2191895060101 161.3894428545116 84.64293416672354 539.2472565560959 161.3892811276149 84.6429340036766 521.2191899349022 161.3868834741656 84.64293404786349 521.2191895060101 161.3894428545116 84.64293412253119 539.2472569849912 161.3867217472702 84.64293404786349 521.2191895060101 161.3894428545116 84.64304528388902 521.2191306422259 154.8277628232739 84.6429340036766 521.2191899349022 161.3868834741656 84.64161065286862 729.3711471074452 239.4755017721442 84.64161059341041 719.5286274531171 239.475590066744 84.64171085634507 729.3710940953689 233.5660531132185 84.64171079689095 719.5285744410377 233.5661414078168 84.64182296865147 719.5285156613892 227.0044616546904 84.64182284980006 701.5004486112985 227.0046233815842 84.64193411222141 701.5003897808703 220.4429436127356 84.64193399336182 683.4723227307836 220.4431053396326 84.64204522939554 683.4722638670098 213.8814255611271 84.64204511053367 665.4441968169206 213.8815872880221 84.64215634655693 665.4441379531463 207.3199075069374 84.64215622770689 647.4160709030555 207.3200692338333 84.6422674637297 647.4160120392841 200.7583894527495 84.6422673448692 629.38794498919 200.758551179644 84.64237858089155 629.3878861254124 194.1968713985612 84.64237846202968 611.3598190753259 194.1970331254554 84.64248969806431 611.3597602115543 187.6353533443713 84.64248957920063 593.331693161467 187.6355150712678 84.64260081521616 593.3316342976855 181.073835290183 84.64260069637567 575.3035672476013 181.0739970170779 84.64271193238619 575.3035083838275 174.5123172359938 84.64271181352797 557.2754413337364 174.5124789628895 84.64282304955623 557.2753824699535 167.9507991818049 84.64282293069027 539.2473154198689 167.9509609087015 84.64293416672354 539.2472565560959 161.3892811276149 84.64294542154494 503.1911166661179 160.7373736977825 84.64294489536087 414.6470303954657 160.7381681332172 84.64304506879307 414.6469769624 154.8287194273879 84.64314333246512 414.6469240182741 148.9232070358309 84.64314321361326 396.6188569681842 148.9233687627268 84.64325447603596 396.6187981377555 142.3616889938784 84.64325435717274 378.5907310876726 142.361850720774 84.64336559320645 378.5906722238935 135.8001709422693 84.6433654743505 360.5626051738027 135.8003326691648 84.64347671037012 360.5625463100296 129.2386528880797 84.64347659151417 342.5344792599451 129.2388146149763 84.6435878275397 342.5344203961728 122.6771348338905 84.64358770868057 324.5063533460772 122.6772965607864 84.64369894470565 324.5062944823027 116.115616779702 84.64369882584379 306.4782274322114 116.1157785065982 84.64381006187614 306.4781685684404 109.5540987255128 84.64380994301564 288.4501015183531 109.5542604524085 84.64392117903435 288.4500426545721 102.992580671324 84.64392106018431 270.4219756044846 102.99274239822 84.64403229619984 270.4219167407045 96.4310626171348 84.64403217734525 252.3938496906281 96.43122434403058 84.64414341336897 252.3937908268442 89.86954456294612 84.64414329450847 234.3657237767667 89.86970628984165 84.64425453053491 234.3656649129796 83.30802650875673 84.64425441167805 216.3375978629006 83.30818823565281 84.64436564772268 216.337538999123 76.74650820441651 84.64436576107391 198.3094681336994 76.74666994639578 84.64448812074625 198.3094033736934 69.52881939923753 84.64448800188757 180.2813325082777 69.52898115073229 84.64458811431132 180.2812795228238 63.62346926922889 84.644587995454 162.253208657412 63.62363102072405 84.64469923150045 162.2531497846848 57.061949826934 84.6446991126395 144.2250789192668 57.06211157842896 84.64481034869777 144.225020046536 50.50043038463863 84.64481022982727 126.1969491811146 50.50059213613384 84.64491976091313 126.1968912107488 44.03948437359354 84.64491964206172 108.1688203453286 44.03964612508855 84.64503258306422 108.1687605702449 37.37739150004781 84.64503246421191 90.14068970482016 37.37755325154306 84.64514370025381 90.14063083209361 30.81587205775245 84.64514358141014 72.11255996667181 30.8160338092475 84.64525481744477 72.11250109393842 24.25435261545723 84.64525469858199 54.0844302285296 24.25451436695217 84.64536593464163 54.08437135579803 17.69283317316184 84.64536581577386 36.05630049038306 17.69299492465697 84.64547705181212 36.05624161765604 11.13131373086645 84.64547693296254 18.02817075224221 11.13147548236156 84.64550116852843 8.812973111815836e-005 9.82323638468654 84.64558816900808 18.02811187950155 4.56979428857117 84.64558805015622 4.101408589463063e-005 4.569956040066177 84.64550116852843 8.812973111815836e-005 9.82323638468654 84.64558816900808 18.02811187950155 4.56979428857117 84.64558805015622 4.101408589463063e-005 4.569956040066177 84.64547693296254 18.02817075224221 11.13147548236156 84.64294489536087 414.6470303954657 160.7381681332172 84.64536581577386 36.05630049038306 17.69299492465697 84.64547705181212 36.05624161765604 11.13131373086645 84.64525469858199 54.0844302285296 24.25451436695217 84.64536593464163 54.08437135579803 17.69283317316184 84.64514358141014 72.11255996667181 30.8160338092475 84.64525481744477 72.11250109393842 24.25435261545723 84.64503246421191 90.14068970482016 37.37755325154306 84.64514370025381 90.14063083209361 30.81587205775245 84.64491964206172 108.1688203453286 44.03964612508855 84.64503258306422 108.1687605702449 37.37739150004781 84.64481022982727 126.1969491811146 50.50059213613384 84.64491976091313 126.1968912107488 44.03948437359354 84.6446991126395 144.2250789192668 57.06211157842896 84.64481034869777 144.225020046536 50.50043038463863 84.644587995454 162.253208657412 63.62363102072405 84.64469923150045 162.2531497846848 57.061949826934 84.64436576107391 198.3094681336994 76.74666994639578 84.64448800188757 180.2813325082777 69.52898115073229 84.64458811431132 180.2812795228238 63.62346926922889 84.64448812074625 198.3094033736934 69.52881939923753 84.64425441167805 216.3375978629006 83.30818823565281 84.64436564772268 216.337538999123 76.74650820441651 84.64414329450847 234.3657237767667 89.86970628984165 84.64425453053491 234.3656649129796 83.30802650875673 84.64403217734525 252.3938496906281 96.43122434403058 84.64414341336897 252.3937908268442 89.86954456294612 84.64392106018431 270.4219756044846 102.99274239822 84.64403229619984 270.4219167407045 96.4310626171348 84.64380994301564 288.4501015183531 109.5542604524085 84.64392117903435 288.4500426545721 102.992580671324 84.64369882584379 306.4782274322114 116.1157785065982 84.64381006187614 306.4781685684404 109.5540987255128 84.64358770868057 324.5063533460772 122.6772965607864 84.64369894470565 324.5062944823027 116.115616779702 84.64347659151417 342.5344792599451 129.2388146149763 84.6435878275397 342.5344203961728 122.6771348338905 84.6433654743505 360.5626051738027 135.8003326691648 84.64347671037012 360.5625463100296 129.2386528880797 84.64325435717274 378.5907310876726 142.361850720774 84.64336559320645 378.5906722238935 135.8001709422693 84.64314321361326 396.6188569681842 148.9233687627268 84.64325447603596 396.6187981377555 142.3616889938784 84.64304506879307 414.6469769624 154.8287194273879 84.64314333246512 414.6469240182741 148.9232070358309 84.64304528388902 521.2191306422259 154.8277628232739 84.64294542154494 503.1911166661179 160.7373736977825 84.64293404786349 521.2191895060101 161.3894428545116 84.64161059341041 719.5286274531171 239.475590066744 84.64282293069027 539.2473154198689 167.9509609087015 84.64293416672354 539.2472565560959 161.3892811276149 84.64271181352797 557.2754413337364 174.5124789628895 84.64282304955623 557.2753824699535 167.9507991818049 84.64260069637567 575.3035672476013 181.0739970170779 84.64271193238619 575.3035083838275 174.5123172359938 84.64248957920063 593.331693161467 187.6355150712678 84.64260081521616 593.3316342976855 181.073835290183 84.64237846202968 611.3598190753259 194.1970331254554 84.64248969806431 611.3597602115543 187.6353533443713 84.6422673448692 629.38794498919 200.758551179644 84.64237858089155 629.3878861254124 194.1968713985612 84.64215622770689 647.4160709030555 207.3200692338333 84.6422674637297 647.4160120392841 200.7583894527495 84.64204511053367 665.4441968169206 213.8815872880221 84.64215634655693 665.4441379531463 207.3199075069374 84.64193399336182 683.4723227307836 220.4431053396326 84.64204522939554 683.4722638670098 213.8814255611271 84.64182284980006 701.5004486112985 227.0046233815842 84.64193411222141 701.5003897808703 220.4429436127356 84.64171079689095 719.5285744410377 233.5661414078168 84.64182296865147 719.5285156613892 227.0044616546904 84.64171085634507 729.3710940953689 233.5660531132185 84.64161065286862 729.3711471074452 239.4755017721442 84.6429340036766 521.2191899349022 161.3868834741656 9.839672657119536 539.2473154314602 167.9522521983514 84.64282293069027 539.2473154198689 167.9509609087015 9.839672612939467 539.2473158603619 167.9496928180037 84.64293416672354 539.2472565560959 161.3892811276149 9.839783848964999 539.2472569965795 161.3880130369195 84.64293412253119 539.2472569849912 161.3867217472702 84.64293416672354 539.2472565560959 161.3892811276149 9.839783848964999 539.2472569965795 161.3880130369195 84.64293412253119 539.2472569849912 161.3867217472702 9.839672612939467 539.2473158603619 167.9496928180037 84.64282293069027 539.2473154198689 167.9509609087015 9.839672657119536 539.2473154314602 167.9522521983514 84.64182296865147 719.5285156613892 227.0044616546904 84.64182284980006 701.5004486112985 227.0046233815842 84.64195715912456 719.5284445588819 219.0577531062402 84.64193411222141 701.5003897808703 220.4429436127356 84.64193399336182 683.4723227307836 220.4431053396326 84.64204522939554 683.4722638670098 213.8814255611271 84.64204511053367 665.4441968169206 213.8815872880221 84.64215634655693 665.4441379531463 207.3199075069374 84.64215622770689 647.4160709030555 207.3200692338333 84.6422674637297 647.4160120392841 200.7583894527495 84.6422673448692 629.38794498919 200.758551179644 84.64237858089155 629.3878861254124 194.1968713985612 84.64237846202968 611.3598190753259 194.1970331254554 84.64248969806431 611.3597602115543 187.6353533443713 84.64248957920063 593.331693161467 187.6355150712678 84.64260081521616 593.3316342976855 181.073835290183 84.64260069637567 575.3035672476013 181.0739970170779 84.64271193238619 575.3035083838275 174.5123172359938 84.64271181352797 557.2754413337364 174.5124789628895 84.64282304955623 557.2753824699535 167.9507991818049 84.64304542783566 543.052532541099 154.8275669866999 84.64282293069027 539.2473154198689 167.9509609087015 84.64293412253119 539.2472569849912 161.3867217472702 84.6429340036766 521.2191899349022 161.3868834741656 84.64304528388902 521.2191306422259 154.8277628232739 84.64293416672354 539.2472565560959 161.3892811276149 84.64282293069027 539.2473154198689 167.9509609087015 84.64293412253119 539.2472569849912 161.3867217472702 84.64293416672354 539.2472565560959 161.3892811276149 84.6429340036766 521.2191899349022 161.3868834741656 84.64304542783566 543.052532541099 154.8275669866999 84.64304528388902 521.2191306422259 154.8277628232739 84.64282304955623 557.2753824699535 167.9507991818049 84.64195715912456 719.5284445588819 219.0577531062402 84.64271193238619 575.3035083838275 174.5123172359938 84.64271181352797 557.2754413337364 174.5124789628895 84.64260081521616 593.3316342976855 181.073835290183 84.64260069637567 575.3035672476013 181.0739970170779 84.64248969806431 611.3597602115543 187.6353533443713 84.64248957920063 593.331693161467 187.6355150712678 84.64237858089155 629.3878861254124 194.1968713985612 84.64237846202968 611.3598190753259 194.1970331254554 84.6422674637297 647.4160120392841 200.7583894527495 84.6422673448692 629.38794498919 200.758551179644 84.64215634655693 665.4441379531463 207.3199075069374 84.64215622770689 647.4160709030555 207.3200692338333 84.64204522939554 683.4722638670098 213.8814255611271 84.64204511053367 665.4441968169206 213.8815872880221 84.64193399336182 683.4723227307836 220.4431053396326 84.64193411222141 701.5003897808703 220.4429436127356 84.64182284980006 701.5004486112985 227.0046233815842 84.64182296865147 719.5285156613892 227.0044616546904 84.64293412253119 539.2472569849912 161.3867217472702 84.6429340036766 521.2191899349022 161.3868834741656 9.839783848964999 539.2472569965795 161.3880130369195 9.839783730105864 521.21918994649 161.3881747638153 84.6429340036766 521.2191899349022 161.3868834741656 9.839783848964999 539.2472569965795 161.3880130369195 9.839783730105864 521.21918994649 161.3881747638153 84.64293412253119 539.2472569849912 161.3867217472702 94.48546500627435 503.1911166101844 160.7375405410218 94.48546448008801 414.6470303395421 160.73833497646 84.64294542154494 503.1911166661179 160.7373736977825 84.64294489536087 414.6470303954657 160.7381681332172 94.48546448008801 414.6470303395421 160.73833497646 84.64294542154494 503.1911166661179 160.7373736977825 84.64294489536087 414.6470303954657 160.7381681332172 94.48546500627435 503.1911166101844 160.7375405410218 94.48546500627435 503.1911166101844 160.7375405410218 84.64294542154494 503.1911166661179 160.7373736977825 94.48413027701827 719.5286273951565 239.4757572979555 84.64161059341041 719.5286274531171 239.475590066744 84.64294542154494 503.1911166661179 160.7373736977825 94.48413027701827 719.5286273951565 239.4757572979555 84.64161059341041 719.5286274531171 239.475590066744 94.48546500627435 503.1911166101844 160.7375405410218 94.48413033648239 729.3711470494891 239.4756690033557 94.48413027701827 719.5286273951565 239.4757572979555 84.64161065286862 729.3711471074452 239.4755017721442 84.64161059341041 719.5286274531171 239.475590066744 94.48413027701827 719.5286273951565 239.4757572979555 84.64161065286862 729.3711471074452 239.4755017721442 84.64161059341041 719.5286274531171 239.475590066744 94.48413033648239 729.3711470494891 239.4756690033557 94.48413033648239 729.3711470494891 239.4756690033557 84.64161065286862 729.3711471074452 239.4755017721442 94.48423053997749 729.371094037406 233.5662199672548 84.64171085634507 729.3710940953689 233.5660531132185 84.64161065286862 729.3711471074452 239.4755017721442 94.48423053997749 729.371094037406 233.5662199672548 84.64171085634507 729.3710940953689 233.5660531132185 94.48413033648239 729.3711470494891 239.4756690033557 94.48423053997749 729.371094037406 233.5662199672548 84.64171085634507 729.3710940953689 233.5660531132185 94.484230480522 719.5285743830815 233.5663082618553 84.64171079689095 719.5285744410377 233.5661414078168 84.64171085634507 729.3710940953689 233.5660531132185 94.484230480522 719.5285743830815 233.5663082618553 84.64171079689095 719.5285744410377 233.5661414078168 94.48423053997749 729.371094037406 233.5662199672548 9.838560875687563 719.5285745918775 233.5674326974601 84.64171079689095 719.5285744410377 233.5661414078168 9.838672695085279 719.5285156729751 227.0057529443395 84.64182296865147 719.5285156613892 227.0044616546904 84.64171079689095 719.5285744410377 233.5661414078168 9.838672695085279 719.5285156729751 227.0057529443395 84.64182296865147 719.5285156613892 227.0044616546904 9.838560875687563 719.5285745918775 233.5674326974601 84.64182296865147 719.5285156613892 227.0044616546904 84.64182284980006 701.5004486112985 227.0046233815842 9.838672695085279 719.5285156729751 227.0057529443395 9.838672576223871 701.5004486228851 227.0059146712348 84.64182284980006 701.5004486112985 227.0046233815842 9.838672695085279 719.5285156729751 227.0057529443395 9.838672576223871 701.5004486228851 227.0059146712348 84.64182296865147 719.5285156613892 227.0044616546904 9.838672576223871 701.5004486228851 227.0059146712348 84.64182284980006 701.5004486112985 227.0046233815842 9.838672532042438 701.5004490517789 227.0033552908892 9.838783838648396 701.5003897924581 220.4442349023854 84.64193411222141 701.5003897808703 220.4429436127356 84.64182284980006 701.5004486112985 227.0046233815842 9.838783838648396 701.5003897924581 220.4442349023854 84.64193411222141 701.5003897808703 220.4429436127356 9.838672532042438 701.5004490517789 227.0033552908892 9.838672576223871 701.5004486228851 227.0059146712348 84.64193411222141 701.5003897808703 220.4429436127356 84.64193399336182 683.4723227307836 220.4431053396326 9.838783838648396 701.5003897924581 220.4442349023854 9.838783719791991 683.4723227423705 220.4443966292824 84.64193399336182 683.4723227307836 220.4431053396326 9.838783838648396 701.5003897924581 220.4442349023854 9.838783719791991 683.4723227423705 220.4443966292824 84.64193411222141 701.5003897808703 220.4429436127356 9.838783719791991 683.4723227423705 220.4443966292824 84.64193399336182 683.4723227307836 220.4431053396326 9.838783675615559 683.4723231712683 220.4418372489366 9.838894955825253 683.4722638785963 213.882716850777 84.64204522939554 683.4722638670098 213.8814255611271 84.64193399336182 683.4723227307836 220.4431053396326 9.838894955825253 683.4722638785963 213.882716850777 84.64204522939554 683.4722638670098 213.8814255611271 9.838783675615559 683.4723231712683 220.4418372489366 9.838783719791991 683.4723227423705 220.4443966292824 84.64204522939554 683.4722638670098 213.8814255611271 84.64204511053367 665.4441968169206 213.8815872880221 9.838894955825253 683.4722638785963 213.882716850777 9.838894836968393 665.4441968285083 213.8828785776719 84.64204511053367 665.4441968169206 213.8815872880221 9.838894955825253 683.4722638785963 213.882716850777 9.838894836968393 665.4441968285083 213.8828785776719 84.64204522939554 683.4722638670098 213.8814255611271 9.838894836968393 665.4441968285083 213.8828785776719 84.64204511053367 665.4441968169206 213.8815872880221 9.838894792788324 665.4441972574022 213.8803191973271 9.839006072991197 665.4441379647331 207.3211987965882 84.64215634655693 665.4441379531463 207.3199075069374 84.64204511053367 665.4441968169206 213.8815872880221 9.839006072991197 665.4441379647331 207.3211987965882 84.64215634655693 665.4441379531463 207.3199075069374 9.838894792788324 665.4441972574022 213.8803191973271 9.838894836968393 665.4441968285083 213.8828785776719 84.64215634655693 665.4441379531463 207.3199075069374 84.64215622770689 647.4160709030555 207.3200692338333 9.839006072991197 665.4441379647331 207.3211987965882 9.839005954131153 647.4160709146446 207.3213605234842 84.64215622770689 647.4160709030555 207.3200692338333 9.839006072991197 665.4441379647331 207.3211987965882 9.839005954131153 647.4160709146446 207.3213605234842 84.64215634655693 665.4441379531463 207.3199075069374 9.839005954131153 647.4160709146446 207.3213605234842 84.64215622770689 647.4160709030555 207.3200692338333 9.839005909950629 647.4160713435371 207.3188011431379 9.839117190154411 647.416012050868 200.7596807423993 84.6422674637297 647.4160120392841 200.7583894527495 84.64215622770689 647.4160709030555 207.3200692338333 9.839117190154411 647.416012050868 200.7596807423993 84.6422674637297 647.4160120392841 200.7583894527495 9.839005909950629 647.4160713435371 207.3188011431379 9.839005954131153 647.4160709146446 207.3213605234842 84.6422674637297 647.4160120392841 200.7583894527495 84.6422673448692 629.38794498919 200.758551179644 9.839117190154411 647.416012050868 200.7596807423993 9.839117071303008 629.3879450007787 200.7598424692943 84.6422673448692 629.38794498919 200.758551179644 9.839117190154411 647.416012050868 200.7596807423993 9.839117071303008 629.3879450007787 200.7598424692943 84.6422674637297 647.4160120392841 200.7583894527495 9.839117071303008 629.3879450007787 200.7598424692943 84.6422673448692 629.38794498919 200.758551179644 9.839117027119301 629.3879454296772 200.7572830889484 9.839228307313078 629.3878861370002 194.1981626882111 84.64237858089155 629.3878861254124 194.1968713985612 84.6422673448692 629.38794498919 200.758551179644 9.839228307313078 629.3878861370002 194.1981626882111 84.64237858089155 629.3878861254124 194.1968713985612 9.839117027119301 629.3879454296772 200.7572830889484 9.839117071303008 629.3879450007787 200.7598424692943 84.64237858089155 629.3878861254124 194.1968713985612 84.64237846202968 611.3598190753259 194.1970331254554 9.839228307313078 629.3878861370002 194.1981626882111 9.839228188459401 611.3598190869141 194.1983244151055 84.64237846202968 611.3598190753259 194.1970331254554 9.839228307313078 629.3878861370002 194.1981626882111 9.839228188459401 611.3598190869141 194.1983244151055 84.64237858089155 629.3878861254124 194.1968713985612 9.839228188459401 611.3598190869141 194.1983244151055 84.64237846202968 611.3598190753259 194.1970331254554 9.839228144284334 611.3598195158103 194.1957650347603 9.839339424484933 611.3597602231425 187.6366446340213 84.64248969806431 611.3597602115543 187.6353533443713 84.64237846202968 611.3598190753259 194.1970331254554 9.839339424484933 611.3597602231425 187.6366446340213 84.64248969806431 611.3597602115543 187.6353533443713 9.839228144284334 611.3598195158103 194.1957650347603 9.839228188459401 611.3598190869141 194.1983244151055 84.64248969806431 611.3597602115543 187.6353533443713 84.64248957920063 593.331693161467 187.6355150712678 9.839339424484933 611.3597602231425 187.6366446340213 9.839339305625799 593.3316931730541 187.6368063609176 84.64248957920063 593.331693161467 187.6355150712678 9.839339424484933 611.3597602231425 187.6366446340213 9.839339305625799 593.3316931730541 187.6368063609176 84.64248969806431 611.3597602115543 187.6353533443713 9.839339305625799 593.3316931730541 187.6368063609176 84.64248957920063 593.331693161467 187.6355150712678 9.839339261442547 593.3316936019432 187.6342469805713 9.839450541645874 593.3316343092733 181.075126579833 84.64260081521616 593.3316342976855 181.073835290183 84.64248957920063 593.331693161467 187.6355150712678 9.839450541645874 593.3316343092733 181.075126579833 84.64260081521616 593.3316342976855 181.073835290183 9.839339261442547 593.3316936019432 187.6342469805713 9.839339305625799 593.3316931730541 187.6368063609176 84.64260081521616 593.3316342976855 181.073835290183 84.64260069637567 575.3035672476013 181.0739970170779 9.839450541645874 593.3316343092733 181.075126579833 9.839450422793107 575.303567259189 181.0752883067285 84.64260069637567 575.3035672476013 181.0739970170779 9.839450541645874 593.3316343092733 181.075126579833 9.839450422793107 575.303567259189 181.0752883067285 84.64260081521616 593.3316342976855 181.073835290183 9.839450422793107 575.303567259189 181.0752883067285 84.64260069637567 575.3035672476013 181.0739970170779 9.839450378611673 575.3035676880834 181.0727289263818 9.839561658814091 575.3035083954148 174.5136085256439 84.64271193238619 575.3035083838275 174.5123172359938 84.64260069637567 575.3035672476013 181.0739970170779 9.839561658814091 575.3035083954148 174.5136085256439 84.64271193238619 575.3035083838275 174.5123172359938 9.839450378611673 575.3035676880834 181.0727289263818 9.839450422793107 575.303567259189 181.0752883067285 84.64271193238619 575.3035083838275 174.5123172359938 84.64271181352797 557.2754413337364 174.5124789628895 9.839561658814091 575.3035083954148 174.5136085256439 9.83956153995905 557.2754413453231 174.51377025254 84.64271181352797 557.2754413337364 174.5124789628895 9.839561658814091 575.3035083954148 174.5136085256439 9.83956153995905 557.2754413453231 174.51377025254 84.64271193238619 575.3035083838275 174.5123172359938 9.83956153995905 557.2754413453231 174.51377025254 84.64271181352797 557.2754413337364 174.5124789628895 9.839561495780345 557.2754417742207 174.5112108721949 9.839672775977306 557.2753824815434 167.9520904714541 84.64282304955623 557.2753824699535 167.9507991818049 84.64271181352797 557.2754413337364 174.5124789628895 9.839672775977306 557.2753824815434 167.9520904714541 84.64282304955623 557.2753824699535 167.9507991818049 9.839561495780345 557.2754417742207 174.5112108721949 9.83956153995905 557.2754413453231 174.51377025254 84.64282304955623 557.2753824699535 167.9507991818049 84.64282293069027 539.2473154198689 167.9509609087015 9.839672775977306 557.2753824815434 167.9520904714541 9.839672657119536 539.2473154314602 167.9522521983514 84.64282293069027 539.2473154198689 167.9509609087015 9.839672775977306 557.2753824815434 167.9520904714541 9.839672657119536 539.2473154314602 167.9522521983514 84.64282304955623 557.2753824699535 167.9507991818049 9.839783730105864 521.21918994649 161.3881747638153 84.6429340036766 521.2191899349022 161.3868834741656 9.839895010315104 521.2191306538099 154.8290541129247 76.76902947083681 521.2191306434461 154.8278987485001 84.64304528388902 521.2191306422259 154.8277628232739 84.6429340036766 521.2191899349022 161.3868834741656 76.76902947083681 521.2191306434461 154.8278987485001 84.64304528388902 521.2191306422259 154.8277628232739 9.839895010315104 521.2191306538099 154.8290541129247 9.839783730105864 521.21918994649 161.3881747638153 84.64304528388902 521.2191306422259 154.8277628232739 84.64304506879307 414.6469769624 154.8287194273879 76.76902947083681 521.2191306434461 154.8278987485001 9.839895010315104 521.2191306538099 154.8290541129247 9.839892928604968 414.6469769739911 154.8300107170691 84.64304506879307 414.6469769624 154.8287194273879 9.839895010315104 521.2191306538099 154.8290541129247 9.839892928604968 414.6469769739911 154.8300107170691 76.76902947083681 521.2191306434461 154.8278987485001 84.64304528388902 521.2191306422259 154.8277628232739 9.839892928604968 414.6469769739911 154.8300107170691 84.64304506879307 414.6469769624 154.8287194273879 9.839892884418987 414.6469774441987 154.8274507550724 9.83999305889256 414.6469240298618 148.9244983254806 17.71401082502507 414.6469247008893 148.9243624002142 84.64314333246512 414.6469240182741 148.9232070358309 84.64304506879307 414.6469769624 154.8287194273879 17.71401082502507 414.6469247008893 148.9243624002142 84.64314333246512 414.6469240182741 148.9232070358309 9.83999305889256 414.6469240298618 148.9244983254806 9.839892884418987 414.6469774441987 154.8274507550724 9.839892928604968 414.6469769739911 154.8300107170691 84.64314333246512 414.6469240182741 148.9232070358309 84.64314321361326 396.6188569681842 148.9233687627268 17.71401082502507 414.6469247008893 148.9243624002142 9.83999305889256 414.6469240298618 148.9244983254806 9.839992940033881 396.6188569797715 148.9246600523759 84.64314321361326 396.6188569681842 148.9233687627268 9.83999305889256 414.6469240298618 148.9244983254806 9.839992940033881 396.6188569797715 148.9246600523759 17.71401082502507 414.6469247008893 148.9243624002142 84.64314333246512 414.6469240182741 148.9232070358309 9.839992940033881 396.6188569797715 148.9246600523759 84.64314321361326 396.6188569681842 148.9233687627268 9.839992895853811 396.6188574086687 148.922100672031 9.840104202456587 396.618798149342 142.3629802835284 84.64325447603596 396.6187981377555 142.3616889938784 84.64314321361326 396.6188569681842 148.9233687627268 9.840104202456587 396.618798149342 142.3629802835284 84.64325447603596 396.6187981377555 142.3616889938784 9.839992895853811 396.6188574086687 148.922100672031 9.839992940033881 396.6188569797715 148.9246600523759 84.64325447603596 396.6187981377555 142.3616889938784 84.64325435717274 378.5907310876726 142.361850720774 9.840104202456587 396.618798149342 142.3629802835284 9.840104083598362 378.5907310992597 142.363142010424 84.64325435717274 378.5907310876726 142.361850720774 9.840104202456587 396.618798149342 142.3629802835284 9.840104083598362 378.5907310992597 142.363142010424 84.64325447603596 396.6187981377555 142.3616889938784 9.840104083598362 378.5907310992597 142.363142010424 84.64325435717274 378.5907310876726 142.361850720774 9.840104039416929 378.5907315281508 142.360582630077 9.840215319638446 378.5906722354819 135.8014622319193 84.64336559320645 378.5906722238935 135.8001709422693 84.64325435717274 378.5907310876726 142.361850720774 9.840215319638446 378.5906722354819 135.8014622319193 84.64336559320645 378.5906722238935 135.8001709422693 9.840104039416929 378.5907315281508 142.360582630077 9.840104083598362 378.5907310992597 142.363142010424 84.64336559320645 378.5906722238935 135.8001709422693 84.6433654743505 360.5626051738027 135.8003326691648 9.840215319638446 378.5906722354819 135.8014622319193 9.840215200783405 360.5626051853938 135.8016239588147 84.6433654743505 360.5626051738027 135.8003326691648 9.840215319638446 378.5906722354819 135.8014622319193 9.840215200783405 360.5626051853938 135.8016239588147 84.64336559320645 378.5906722238935 135.8001709422693 9.840215200783405 360.5626051853938 135.8016239588147 84.6433654743505 360.5626051738027 135.8003326691648 9.840215156604245 360.5626056142902 135.7990645784692 9.840326436807573 360.5625463216165 129.2399441777298 84.64347671037012 360.5625463100296 129.2386528880797 84.6433654743505 360.5626051738027 135.8003326691648 9.840326436807573 360.5625463216165 129.2399441777298 84.64347671037012 360.5625463100296 129.2386528880797 9.840215156604245 360.5626056142902 135.7990645784692 9.840215200783405 360.5626051853938 135.8016239588147 84.64347671037012 360.5625463100296 129.2386528880797 84.64347659151417 342.5344792599451 129.2388146149763 9.840326436807573 360.5625463216165 129.2399441777298 9.840326317943436 342.5344792715356 129.2401059046261 84.64347659151417 342.5344792599451 129.2388146149763 9.840326436807573 360.5625463216165 129.2399441777298 9.840326317943436 342.5344792715356 129.2401059046261 84.64347671037012 360.5625463100296 129.2386528880797 9.840326317943436 342.5344792715356 129.2401059046261 84.64347659151417 342.5344792599451 129.2388146149763 9.840326273765186 342.534479700425 129.2375465242787 9.840437553965785 342.5344204077607 122.6784261235403 84.6435878275397 342.5344203961728 122.6771348338905 84.64347659151417 342.5344792599451 129.2388146149763 9.840437553965785 342.5344204077607 122.6784261235403 84.6435878275397 342.5344203961728 122.6771348338905 9.840326273765186 342.534479700425 129.2375465242787 9.840326317943436 342.5344792715356 129.2401059046261 84.6435878275397 342.5344203961728 122.6771348338905 84.64358770868057 324.5063533460772 122.6772965607864 9.840437553965785 342.5344204077607 122.6784261235403 9.840437435112108 324.5063533576665 122.6785878504362 84.64358770868057 324.5063533460772 122.6772965607864 9.840437553965785 342.5344204077607 122.6784261235403 9.840437435112108 324.5063533576665 122.6785878504362 84.6435878275397 342.5344203961728 122.6771348338905 9.840437435112108 324.5063533576665 122.6785878504362 84.64358770868057 324.5063533460772 122.6772965607864 9.840437390934312 324.5063537865623 122.6760284700902 9.840548671125816 324.5062944938873 116.1169080693515 84.64369894470565 324.5062944823027 116.115616779702 84.64358770868057 324.5063533460772 122.6772965607864 9.840548671125816 324.5062944938873 116.1169080693515 84.64369894470565 324.5062944823027 116.115616779702 9.840437390934312 324.5063537865623 122.6760284700902 9.840437435112108 324.5063533576665 122.6785878504362 84.64369894470565 324.5062944823027 116.115616779702 84.64369882584379 306.4782274322114 116.1157785065982 9.840548671125816 324.5062944938873 116.1169080693515 9.840548552272139 306.4782274437993 116.1170697962476 84.64369882584379 306.4782274322114 116.1157785065982 9.840548671125816 324.5062944938873 116.1169080693515 9.840548552272139 306.4782274437993 116.1170697962476 84.64369894470565 324.5062944823027 116.115616779702 9.840548552272139 306.4782274437993 116.1170697962476 84.64369882584379 306.4782274322114 116.1157785065982 9.840548508089796 306.4782278726945 116.1145104159015 9.840659788297216 306.4781685800281 109.5553900151633 84.64381006187614 306.4781685684404 109.5540987255128 84.64369882584379 306.4782274322114 116.1157785065982 9.840659788297216 306.4781685800281 109.5553900151633 84.64381006187614 306.4781685684404 109.5540987255128 9.840548508089796 306.4782278726945 116.1145104159015 9.840548552272139 306.4782274437993 116.1170697962476 84.64381006187614 306.4781685684404 109.5540987255128 84.64380994301564 288.4501015183531 109.5542604524085 9.840659788297216 306.4781685800281 109.5553900151633 9.84065966943399 288.4501015299403 109.5555517420589 84.64380994301564 288.4501015183531 109.5542604524085 9.840659788297216 306.4781685800281 109.5553900151633 9.84065966943399 288.4501015299403 109.5555517420589 84.64381006187614 306.4781685684404 109.5540987255128 9.84065966943399 288.4501015299403 109.5555517420589 84.64380994301564 288.4501015183531 109.5542604524085 9.840659625258923 288.4501019588344 109.5529923617128 9.840770905461341 288.4500426661609 102.9938719609743 84.64392117903435 288.4500426545721 102.992580671324 84.64380994301564 288.4501015183531 109.5542604524085 9.840770905461341 288.4500426661609 102.9938719609743 84.64392117903435 288.4500426545721 102.992580671324 9.840659625258923 288.4501019588344 109.5529923617128 9.84065966943399 288.4501015299403 109.5555517420589 84.64392117903435 288.4500426545721 102.992580671324 84.64392106018431 270.4219756044846 102.99274239822 9.840770905461341 288.4500426661609 102.9938719609743 9.84077078660448 270.4219756160721 102.9940336878695 84.64392106018431 270.4219756044846 102.99274239822 9.840770905461341 288.4500426661609 102.9938719609743 9.84077078660448 270.4219756160721 102.9940336878695 84.64392117903435 288.4500426545721 102.992580671324 9.84077078660448 270.4219756160721 102.9940336878695 84.64392106018431 270.4219756044846 102.99274239822 9.840770742430323 270.4219760449716 102.9914743075235 9.840882022628193 270.4219167522925 96.43235390678471 84.64403229619984 270.4219167407045 96.4310626171348 84.64392106018431 270.4219756044846 102.99274239822 9.840882022628193 270.4219167522925 96.43235390678471 84.64403229619984 270.4219167407045 96.4310626171348 9.840770742430323 270.4219760449716 102.9914743075235 9.84077078660448 270.4219756160721 102.9940336878695 84.64403229619984 270.4219167407045 96.4310626171348 84.64403217734525 252.3938496906281 96.43122434403058 9.840882022628193 270.4219167522925 96.43235390678471 9.84088190376815 252.3938497022144 96.4325156336804 84.64403217734525 252.3938496906281 96.43122434403058 9.840882022628193 270.4219167522925 96.43235390678471 9.84088190376815 252.3938497022144 96.4325156336804 84.64403229619984 270.4219167407045 96.4310626171348 9.84088190376815 252.3938497022144 96.4325156336804 84.64403217734525 252.3938496906281 96.43122434403058 9.840881859592173 252.3938501311091 96.42995625333485 9.84099313979732 252.3937908384336 89.87083585259605 84.64414341336897 252.3937908268442 89.86954456294612 84.64403217734525 252.3938496906281 96.43122434403058 9.84099313979732 252.3937908384336 89.87083585259605 84.64414341336897 252.3937908268442 89.86954456294612 9.840881859592173 252.3938501311091 96.42995625333485 9.84088190376815 252.3938497022144 96.4325156336804 84.64414341336897 252.3937908268442 89.86954456294612 84.64414329450847 234.3657237767667 89.86970628984165 9.84099313979732 252.3937908384336 89.87083585259605 9.840993020936367 234.3657237883548 89.87099757949105 84.64414329450847 234.3657237767667 89.86970628984165 9.84099313979732 252.3937908384336 89.87083585259605 9.840993020936367 234.3657237883548 89.87099757949105 84.64414341336897 252.3937908268442 89.86954456294612 9.840993020936367 234.3657237883548 89.87099757949105 84.64414329450847 234.3657237767667 89.86970628984165 9.840992976758571 234.3657242172478 89.86843819914564 9.841104256961444 234.3656649245679 83.30931779840611 84.64425453053491 234.3656649129796 83.30802650875673 84.64414329450847 234.3657237767667 89.86970628984165 9.841104256961444 234.3656649245679 83.30931779840611 84.64425453053491 234.3656649129796 83.30802650875673 9.840992976758571 234.3657242172478 89.86843819914564 9.840993020936367 234.3657237883548 89.87099757949105 84.64425453053491 234.3656649129796 83.30802650875673 84.64425441167805 216.3375978629006 83.30818823565281 9.841104256961444 234.3656649245679 83.30931779840611 9.841104138102764 216.3375978744903 83.30947952530308 84.64425441167805 216.3375978629006 83.30818823565281 9.841104256961444 234.3656649245679 83.30931779840611 9.841104138102764 216.3375978744903 83.30947952530308 84.64425453053491 234.3656649129796 83.30802650875673 9.841104138102764 216.3375978744903 83.30947952530308 84.64425441167805 216.3375978629006 83.30818823565281 9.841104093924059 216.3375983033771 83.30692014495641 9.841215374156036 216.3375390107129 76.74779949406621 84.64436564772268 216.337538999123 76.74650820441651 84.64425441167805 216.3375978629006 83.30818823565281 9.841215374156036 216.3375390107129 76.74779949406621 84.64436564772268 216.337538999123 76.74650820441651 9.841104093924059 216.3375983033771 83.30692014495641 9.841104138102764 216.3375978744903 83.30947952530308 84.64436576107391 198.3094681336994 76.74666994639578 9.841215487514091 198.3094681452882 76.74796123604615 84.64436564772268 216.337538999123 76.74650820441651 9.841215374156036 216.3375390107129 76.74779949406621 9.841215487514091 198.3094681452882 76.74796123604615 84.64436564772268 216.337538999123 76.74650820441651 9.841215374156036 216.3375390107129 76.74779949406621 84.64436576107391 198.3094681336994 76.74666994639578 9.841215487514091 198.3094681452882 76.74796123604615 84.64436576107391 198.3094681336994 76.74666994639578 9.841215443334022 198.3094680578023 76.7454018557041 9.841337847180512 198.3094033852806 69.53011068888733 84.64448812074625 198.3094033736934 69.52881939923753 84.64436576107391 198.3094681336994 76.74666994639578 9.841337847180512 198.3094033852806 69.53011068888733 84.64448812074625 198.3094033736934 69.52881939923753 9.841215443334022 198.3094680578023 76.7454018557041 9.841215487514091 198.3094681452882 76.74796123604615 84.64448812074625 198.3094033736934 69.52881939923753 84.64448800188757 180.2813325082777 69.52898115073229 9.841337847180512 198.3094033852806 69.53011068888733 9.841337728334111 180.2813325198647 69.5302724403826 84.64448800188757 180.2813325082777 69.52898115073229 9.841337847180512 198.3094033852806 69.53011068888733 9.841337728334111 180.2813325198647 69.5302724403826 84.64448812074625 198.3094033736934 69.52881939923753 9.841337728334111 180.2813325198647 69.5302724403826 84.64448800188757 180.2813325082777 69.52898115073229 9.841337684141763 180.2813324323706 69.52771306004098 9.841437840742401 180.2812795344114 63.62476055887885 84.64458811431132 180.2812795228238 63.62346926922889 84.64448800188757 180.2813325082777 69.52898115073229 9.841437840742401 180.2812795344114 63.62476055887885 84.64458811431132 180.2812795228238 63.62346926922889 9.841337684141763 180.2813324323706 69.52771306004098 9.841337728334111 180.2813325198647 69.5302724403826 84.64458811431132 180.2812795228238 63.62346926922889 84.644587995454 162.253208657412 63.62363102072405 9.841437840742401 180.2812795344114 63.62476055887885 9.841437721890998 162.2532086689994 63.62492231037396 84.644587995454 162.253208657412 63.62363102072405 9.841437840742401 180.2812795344114 63.62476055887885 9.841437721890998 162.2532086689994 63.62492231037396 84.64458811431132 180.2812795228238 63.62346926922889 9.841437721890998 162.2532086689994 63.62492231037396 84.644587995454 162.253208657412 63.62363102072405 9.841437677713657 162.2532085815065 63.62236293003289 9.841548957936539 162.2531497962694 57.06324111658389 84.64469923150045 162.2531497846848 57.061949826934 84.644587995454 162.253208657412 63.62363102072405 9.841548957936539 162.2531497962694 57.06324111658389 84.64469923150045 162.2531497846848 57.061949826934 9.841437677713657 162.2532085815065 63.62236293003289 9.841437721890998 162.2532086689994 63.62492231037396 84.64469923150045 162.2531497846848 57.061949826934 84.6446991126395 144.2250789192668 57.06211157842896 9.841548957936539 162.2531497962694 57.06324111658389 9.841548839085135 144.2250789308529 57.06340286807888 84.6446991126395 144.2250789192668 57.06211157842896 9.841548957936539 162.2531497962694 57.06324111658389 9.841548839085135 144.2250789308529 57.06340286807888 84.64469923150045 162.2531497846848 57.061949826934 9.841548839085135 144.2250789308529 57.06340286807888 84.6446991126395 144.2250789192668 57.06211157842896 9.841548794906885 144.2250788433599 57.06084348773737 9.841660075125674 144.2250200581243 50.50172167428854 84.64481034869777 144.225020046536 50.50043038463863 84.6446991126395 144.2250789192668 57.06211157842896 9.841660075125674 144.2250200581243 50.50172167428854 84.64481034869777 144.225020046536 50.50043038463863 9.841548794906885 144.2250788433599 57.06084348773737 9.841548839085135 144.2250789308529 57.06340286807888 84.64481034869777 144.225020046536 50.50043038463863 84.64481022982727 126.1969491811146 50.50059213613384 9.841660075125674 144.2250200581243 50.50172167428854 9.841659956278363 126.1969491927036 50.50188342578373 84.64481022982727 126.1969491811146 50.50059213613384 9.841660075125674 144.2250200581243 50.50172167428854 9.841659956278363 126.1969491927036 50.50188342578373 84.64481034869777 144.225020046536 50.50043038463863 9.841659956278363 126.1969491927036 50.50188342578373 84.64481022982727 126.1969491811146 50.50059213613384 9.84165991208738 126.1969491052168 50.49932404544207 9.841769487362853 126.1968912223324 44.04077566324332 84.64491976091313 126.1968912107488 44.03948437359354 84.64481022982727 126.1969491811146 50.50059213613384 9.841769487362853 126.1968912223324 44.04077566324332 84.64491976091313 126.1968912107488 44.03948437359354 9.84165991208738 126.1969491052168 50.49932404544207 9.841659956278363 126.1969491927036 50.50188342578373 84.64491976091313 126.1968912107488 44.03948437359354 84.64491964206172 108.1688203453286 44.03964612508855 9.841769487362853 126.1968912223324 44.04077566324332 9.841769368499172 108.1688203569174 44.04093741473849 84.64491964206172 108.1688203453286 44.03964612508855 9.841769487362853 126.1968912223324 44.04077566324332 9.841769368499172 108.1688203569174 44.04093741473849 84.64491976091313 126.1968912107488 44.03948437359354 9.841769368499172 108.1688203569174 44.04093741473849 84.64491964206172 108.1688203453286 44.03964612508855 9.841769324321376 108.1688202694331 44.03837803439738 9.841882309507582 108.1687605818317 37.3786827896978 84.64503258306422 108.1687605702449 37.37739150004781 84.64491964206172 108.1688203453286 44.03964612508855 9.841882309507582 108.1687605818317 37.3786827896978 84.64503258306422 108.1687605702449 37.37739150004781 9.841769324321376 108.1688202694331 44.03837803439738 9.841769368499172 108.1688203569174 44.04093741473849 84.64503258306422 108.1687605702449 37.37739150004781 84.64503246421191 90.14068970482016 37.37755325154306 9.841882309507582 108.1687605818317 37.3786827896978 9.84188219064481 90.14068971640941 37.37884454119295 84.64503246421191 90.14068970482016 37.37755325154306 9.841882309507582 108.1687605818317 37.3786827896978 9.84188219064481 90.14068971640941 37.37884454119295 84.64503258306422 108.1687605702449 37.37739150004781 9.84188219064481 90.14068971640941 37.37884454119295 84.64503246421191 90.14068970482016 37.37755325154306 9.84188214646656 90.14068962891739 37.37628516085163 9.841993426690351 90.14063084367943 30.81716334740239 84.64514370025381 90.14063083209361 30.81587205775245 84.64503246421191 90.14068970482016 37.37755325154306 9.841993426690351 90.14063084367943 30.81716334740239 84.64514370025381 90.14063083209361 30.81587205775245 9.84188214646656 90.14068962891739 37.37628516085163 9.84188219064481 90.14068971640941 37.37884454119295 84.64514370025381 90.14063083209361 30.81587205775245 84.64514358141014 72.11255996667181 30.8160338092475 9.841993426690351 90.14063084367943 30.81716334740239 9.841993307838948 72.11255997825832 30.81732509889744 84.64514358141014 72.11255996667181 30.8160338092475 9.841993426690351 90.14063084367943 30.81716334740239 9.841993307838948 72.11255997825832 30.81732509889744 84.64514370025381 90.14063083209361 30.81587205775245 9.841993307838948 72.11255997825832 30.81732509889744 84.64514358141014 72.11255996667181 30.8160338092475 9.841993263659333 72.11255989077517 30.81476571855617 9.842104543884034 72.11250110552813 24.25564390510714 84.64525481744477 72.11250109393842 24.25435261545723 84.64514358141014 72.11255996667181 30.8160338092475 9.842104543884034 72.11250110552813 24.25564390510714 84.64525481744477 72.11250109393842 24.25435261545723 9.841993263659333 72.11255989077517 30.81476571855617 9.841993307838948 72.11255997825832 30.81732509889744 84.64525481744477 72.11250109393842 24.25435261545723 84.64525469858199 54.0844302285296 24.25451436695217 9.842104543884034 72.11250110552813 24.25564390510714 9.842104425029447 54.08443024011383 24.25580565660217 84.64525469858199 54.0844302285296 24.25451436695217 9.842104543884034 72.11250110552813 24.25564390510714 9.842104425029447 54.08443024011383 24.25580565660217 84.64525481744477 72.11250109393842 24.25435261545723 9.842104425029447 54.08443024011383 24.25580565660217 84.64525469858199 54.0844302285296 24.25451436695217 9.842104380853925 54.08443015261976 24.2532462762608 9.842215661069531 54.08437136738569 17.69412446281174 84.64536593464163 54.08437135579803 17.69283317316184 84.64525469858199 54.0844302285296 24.25451436695217 9.842215661069531 54.08437136738569 17.69412446281174 84.64536593464163 54.08437135579803 17.69283317316184 9.842104380853925 54.08443015261976 24.2532462762608 9.842104425029447 54.08443024011383 24.25580565660217 84.64536593464163 54.08437135579803 17.69283317316184 84.64536581577386 36.05630049038306 17.69299492465697 9.842215661069531 54.08437136738569 17.69412446281174 9.842215542217673 36.05630050196911 17.69428621430697 84.64536581577386 36.05630049038306 17.69299492465697 9.842215661069531 54.08437136738569 17.69412446281174 9.842215542217673 36.05630050196911 17.69428621430697 84.64536593464163 54.08437135579803 17.69283317316184 9.842215542217673 36.05630050196911 17.69428621430697 84.64536581577386 36.05630049038306 17.69299492465697 9.842215498030782 36.05630041447709 17.6917268339654 9.84232677826185 36.05624162923892 11.13260502051638 84.64547705181212 36.05624161765604 11.13131373086645 84.64536581577386 36.05630049038306 17.69299492465697 9.84232677826185 36.05624162923892 11.13260502051638 84.64547705181212 36.05624161765604 11.13131373086645 9.842215498030782 36.05630041447709 17.6917268339654 9.842215542217673 36.05630050196911 17.69428621430697 84.64547705181212 36.05624161765604 11.13131373086645 84.64547693296254 18.02817075224221 11.13147548236156 9.84232677826185 36.05624162923892 11.13260502051638 9.84232665939544 18.02817076383168 11.1327667720114 84.64547693296254 18.02817075224221 11.13147548236156 9.84232677826185 36.05624162923892 11.13260502051638 9.84232665939544 18.02817076383168 11.1327667720114 84.64547705181212 36.05624161765604 11.13131373086645 9.84232665939544 18.02817076383168 11.1327667720114 84.64547693296254 18.02817075224221 11.13147548236156 9.842326615217644 18.02817067633146 11.13020739167003 9.842437895456442 18.02811189108738 4.571085578221068 84.64558816900808 18.02811187950155 4.56979428857117 84.64547693296254 18.02817075224221 11.13147548236156 9.842437895456442 18.02811189108738 4.571085578221068 84.64558816900808 18.02811187950155 4.56979428857117 9.842326615217644 18.02817067633146 11.13020739167003 9.84232665939544 18.02817076383168 11.1327667720114 84.64558816900808 18.02811187950155 4.56979428857117 84.64558805015622 4.101408589463063e-005 4.569956040066177 9.842437895456442 18.02811189108738 4.571085578221068 9.84243777659276 4.102567400110502e-005 4.571247329716065 84.64558805015622 4.101408589463063e-005 4.569956040066177 9.842437895456442 18.02811189108738 4.571085578221068 9.84243777659276 4.102567400110502e-005 4.571247329716065 84.64558816900808 18.02811187950155 4.56979428857117 9.842351136039724 8.807656161025079e-005 9.821968231536081 9.84243777659276 4.102567400110502e-005 4.571247329716065 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 84.64558805015622 4.101408589463063e-005 4.569956040066177 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 84.64550116852843 8.812973111815836e-005 9.82323638468654 94.4880229927935 8.808418726147238e-005 9.823403231743306 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 17.71653492902442 2.857641447917558e-007 -0.001301406779838088 94.48818958965376 2.832173322531162e-007 -0.003232843467925572 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 17.71653492902442 2.857641447917558e-007 -0.001301406779838088 94.48818958965376 2.832173322531162e-007 -0.003232843467925572 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 84.64558805015622 4.101408589463063e-005 4.569956040066177 94.4880229927935 8.808418726147238e-005 9.823403231743306 84.64550116852843 8.812973111815836e-005 9.82323638468654 9.84243777659276 4.102567400110502e-005 4.571247329716065 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 9.842351136039724 8.807656161025079e-005 9.821968231536081 94.4880229927935 8.808418726147238e-005 9.823403231743306 84.64550116852843 8.812973111815836e-005 9.82323638468654 94.48546448008801 414.6470303395421 160.73833497646 84.64294489536087 414.6470303954657 160.7381681332172 84.64550116852843 8.812973111815836e-005 9.82323638468654 94.48546448008801 414.6470303395421 160.73833497646 84.64294489536087 414.6470303954657 160.7381681332172 94.4880229927935 8.808418726147238e-005 9.823403231743306 9.838672695085279 719.5285156729751 227.0057529443395 9.838672532042438 701.5004490517789 227.0033552908892 9.838560875687563 719.5285745918775 233.5674326974601 9.838460214744373 719.5286278958681 239.4743221169504 9.838783838648396 701.5003897924581 220.4442349023854 9.838783675615559 683.4723231712683 220.4418372489366 9.838894955825253 683.4722638785963 213.882716850777 9.838894792788324 665.4441972574022 213.8803191973271 9.839006072991197 665.4441379647331 207.3211987965882 9.839005909950629 647.4160713435371 207.3188011431379 9.839117190154411 647.416012050868 200.7596807423993 9.839117027119301 629.3879454296772 200.7572830889484 9.839228307313078 629.3878861370002 194.1981626882111 9.839228144284334 611.3598195158103 194.1957650347603 9.839339424484933 611.3597602231425 187.6366446340213 9.839339261442547 593.3316936019432 187.6342469805713 9.839450541645874 593.3316343092733 181.075126579833 9.839450378611673 575.3035676880834 181.0727289263818 9.839561658814091 575.3035083954148 174.5136085256439 9.839561495780345 557.2754417742207 174.5112108721949 9.839672775977306 557.2753824815434 167.9520904714541 9.839672657119536 539.2473154314602 167.9522521983514 9.839783848964999 539.2472569965795 161.3880130369195 9.839783730105864 521.21918994649 161.3881747638153 9.839892928423524 521.2191306435349 154.827909016755 9.839794943983179 503.1911171470628 160.73610554589 9.839895010315104 521.2191306538099 154.8290541129247 9.838672650902481 719.5285161018685 227.0031935639941 9.838783794471965 701.5003902213542 220.4416755220412 9.838894911645639 683.4722643074899 213.8801574704304 9.83900602881522 665.4441383936251 207.3186394162431 9.839117145974342 647.4160124797637 200.7571213620531 9.839228263137102 629.3878865658982 194.195603307864 9.83933938030259 611.359760652033 187.634085253675 9.839450497469898 593.3316347381652 181.0725671994868 9.839561614634476 575.3035088243079 174.5110491452988 9.839672612939467 539.2473158603619 167.9496928180037 9.839894966135489 521.2191310827094 154.8264947325787 9.839792623332869 414.6470304637383 160.7368999534899 9.839892884418987 414.6469774441987 154.8274507550724 9.83999305889256 414.6469240298618 148.9244983254806 9.839992940033881 396.6188569797715 148.9246600523759 9.840104202456587 396.618798149342 142.3629802835284 9.840104083598362 378.5907310992597 142.363142010424 9.840215319638446 378.5906722354819 135.8014622319193 9.840215200783405 360.5626051853938 135.8016239588147 9.840326436807573 360.5625463216165 129.2399441777298 9.840326317943436 342.5344792715356 129.2401059046261 9.840437553965785 342.5344204077607 122.6784261235403 9.840437435112108 324.5063533576665 122.6785878504362 9.840548671125816 324.5062944938873 116.1169080693515 9.840548552272139 306.4782274437993 116.1170697962476 9.840659788297216 306.4781685800281 109.5553900151633 9.84065966943399 288.4501015299403 109.5555517420589 9.840770905461341 288.4500426661609 102.9938719609743 9.84077078660448 270.4219756160721 102.9940336878695 9.840882022628193 270.4219167522925 96.43235390678471 9.84088190376815 252.3938497022144 96.4325156336804 9.84099313979732 252.3937908384336 89.87083585259605 9.840993020936367 234.3657237883548 89.87099757949105 9.841104256961444 234.3656649245679 83.30931779840611 9.841104138102764 216.3375978744903 83.30947952530308 9.841215374156036 216.3375390107129 76.74779949406621 9.841215487514091 198.3094681452882 76.74796123604615 9.841337847180512 198.3094033852806 69.53011068888733 9.841337728334111 180.2813325198647 69.5302724403826 9.841215443334022 198.3094680578023 76.7454018557041 9.841437840742401 180.2812795344114 63.62476055887885 9.841437721890998 162.2532086689994 63.62492231037396 9.841337684141763 180.2813324323706 69.52771306004098 9.841548957936539 162.2531497962694 57.06324111658389 9.841548839085135 144.2250789308529 57.06340286807888 9.841437677713657 162.2532085815065 63.62236293003289 9.841660075125674 144.2250200581243 50.50172167428854 9.841659956278363 126.1969491927036 50.50188342578373 9.841548794906885 144.2250788433599 57.06084348773737 9.841769487362853 126.1968912223324 44.04077566324332 9.841769368499172 108.1688203569174 44.04093741473849 9.84165991208738 126.1969491052168 50.49932404544207 9.841882309507582 108.1687605818317 37.3786827896978 9.84188219064481 90.14068971640941 37.37884454119295 9.841769324321376 108.1688202694331 44.03837803439738 9.841993426690351 90.14063084367943 30.81716334740239 9.841993307838948 72.11255997825832 30.81732509889744 9.84188214646656 90.14068962891739 37.37628516085163 9.842104543884034 72.11250110552813 24.25564390510714 9.842104425029447 54.08443024011383 24.25580565660217 9.841993263659333 72.11255989077517 30.81476571855617 9.842215661069531 54.08437136738569 17.69412446281174 9.842215542217673 36.05630050196911 17.69428621430697 9.842104380853925 54.08443015261976 24.2532462762608 9.84232677826185 36.05624162923892 11.13260502051638 9.84232665939544 18.02817076383168 11.1327667720114 9.842215498030782 36.05630041447709 17.6917268339654 9.842351136039724 8.807656161025079e-005 9.821968231536081 9.842326615217644 18.02817067633146 11.13020739167003 9.842437895456442 18.02811189108738 4.571085578221068 9.84243777659276 4.102567400110502e-005 4.571247329716065 9.839992895853811 396.6188574086687 148.922100672031 9.840104039416929 378.5907315281508 142.360582630077 9.840215156604245 360.5626056142902 135.7990645784692 9.840326273765186 342.534479700425 129.2375465242787 9.840437390934312 324.5063537865623 122.6760284700902 9.840548508089796 306.4782278726945 116.1145104159015 9.840659625258923 288.4501019588344 109.5529923617128 9.840770742430323 270.4219760449716 102.9914743075235 9.840881859592173 252.3938501311091 96.42995625333485 9.840992976758571 234.3657242172478 89.86843819914564 9.841104093924059 216.3375983033771 83.30692014495641 9.841104093924059 216.3375983033771 83.30692014495641 9.841104138102764 216.3375978744903 83.30947952530308 9.841215374156036 216.3375390107129 76.74779949406621 9.840992976758571 234.3657242172478 89.86843819914564 9.840993020936367 234.3657237883548 89.87099757949105 9.841104256961444 234.3656649245679 83.30931779840611 9.840881859592173 252.3938501311091 96.42995625333485 9.84088190376815 252.3938497022144 96.4325156336804 9.84099313979732 252.3937908384336 89.87083585259605 9.840770742430323 270.4219760449716 102.9914743075235 9.84077078660448 270.4219756160721 102.9940336878695 9.840882022628193 270.4219167522925 96.43235390678471 9.840659625258923 288.4501019588344 109.5529923617128 9.84065966943399 288.4501015299403 109.5555517420589 9.840770905461341 288.4500426661609 102.9938719609743 9.840548508089796 306.4782278726945 116.1145104159015 9.840548552272139 306.4782274437993 116.1170697962476 9.840659788297216 306.4781685800281 109.5553900151633 9.840437390934312 324.5063537865623 122.6760284700902 9.840437435112108 324.5063533576665 122.6785878504362 9.840548671125816 324.5062944938873 116.1169080693515 9.840326273765186 342.534479700425 129.2375465242787 9.840326317943436 342.5344792715356 129.2401059046261 9.840437553965785 342.5344204077607 122.6784261235403 9.840215156604245 360.5626056142902 135.7990645784692 9.840215200783405 360.5626051853938 135.8016239588147 9.840326436807573 360.5625463216165 129.2399441777298 9.840104039416929 378.5907315281508 142.360582630077 9.840104083598362 378.5907310992597 142.363142010424 9.840215319638446 378.5906722354819 135.8014622319193 9.839992895853811 396.6188574086687 148.922100672031 9.839992940033881 396.6188569797715 148.9246600523759 9.840104202456587 396.618798149342 142.3629802835284 9.842437895456442 18.02811189108738 4.571085578221068 9.842351136039724 8.807656161025079e-005 9.821968231536081 9.84243777659276 4.102567400110502e-005 4.571247329716065 9.842326615217644 18.02817067633146 11.13020739167003 9.84232665939544 18.02817076383168 11.1327667720114 9.839792623332869 414.6470304637383 160.7368999534899 9.842215542217673 36.05630050196911 17.69428621430697 9.842215498030782 36.05630041447709 17.6917268339654 9.84232677826185 36.05624162923892 11.13260502051638 9.842104425029447 54.08443024011383 24.25580565660217 9.842104380853925 54.08443015261976 24.2532462762608 9.842215661069531 54.08437136738569 17.69412446281174 9.841993307838948 72.11255997825832 30.81732509889744 9.841993263659333 72.11255989077517 30.81476571855617 9.842104543884034 72.11250110552813 24.25564390510714 9.84188219064481 90.14068971640941 37.37884454119295 9.84188214646656 90.14068962891739 37.37628516085163 9.841993426690351 90.14063084367943 30.81716334740239 9.841769368499172 108.1688203569174 44.04093741473849 9.841769324321376 108.1688202694331 44.03837803439738 9.841882309507582 108.1687605818317 37.3786827896978 9.841659956278363 126.1969491927036 50.50188342578373 9.84165991208738 126.1969491052168 50.49932404544207 9.841769487362853 126.1968912223324 44.04077566324332 9.841548839085135 144.2250789308529 57.06340286807888 9.841548794906885 144.2250788433599 57.06084348773737 9.841660075125674 144.2250200581243 50.50172167428854 9.841437721890998 162.2532086689994 63.62492231037396 9.841437677713657 162.2532085815065 63.62236293003289 9.841548957936539 162.2531497962694 57.06324111658389 9.841215487514091 198.3094681452882 76.74796123604615 9.841337728334111 180.2813325198647 69.5302724403826 9.841337684141763 180.2813324323706 69.52771306004098 9.841437840742401 180.2812795344114 63.62476055887885 9.841215443334022 198.3094680578023 76.7454018557041 9.841337847180512 198.3094033852806 69.53011068888733 9.83999305889256 414.6469240298618 148.9244983254806 9.839892884418987 414.6469774441987 154.8274507550724 9.839894966135489 521.2191310827094 154.8264947325787 9.839794943983179 503.1911171470628 160.73610554589 9.839892928423524 521.2191306435349 154.827909016755 9.839672612939467 539.2473158603619 167.9496928180037 9.839672657119536 539.2473154314602 167.9522521983514 9.839783848964999 539.2472569965795 161.3880130369195 9.839561614634476 575.3035088243079 174.5110491452988 9.839561658814091 575.3035083954148 174.5136085256439 9.839561495780345 557.2754417742207 174.5112108721949 9.839450497469898 593.3316347381652 181.0725671994868 9.839450541645874 593.3316343092733 181.075126579833 9.839450378611673 575.3035676880834 181.0727289263818 9.83933938030259 611.359760652033 187.634085253675 9.839339424484933 611.3597602231425 187.6366446340213 9.839339261442547 593.3316936019432 187.6342469805713 9.839228263137102 629.3878865658982 194.195603307864 9.839228307313078 629.3878861370002 194.1981626882111 9.839228144284334 611.3598195158103 194.1957650347603 9.839117145974342 647.4160124797637 200.7571213620531 9.839117190154411 647.416012050868 200.7596807423993 9.839117027119301 629.3879454296772 200.7572830889484 9.83900602881522 665.4441383936251 207.3186394162431 9.839006072991197 665.4441379647331 207.3211987965882 9.839005909950629 647.4160713435371 207.3188011431379 9.838894911645639 683.4722643074899 213.8801574704304 9.838894955825253 683.4722638785963 213.882716850777 9.838894792788324 665.4441972574022 213.8803191973271 9.838783794471965 701.5003902213542 220.4416755220412 9.838783838648396 701.5003897924581 220.4442349023854 9.838783675615559 683.4723231712683 220.4418372489366 9.838672650902481 719.5285161018685 227.0031935639941 9.838672695085279 719.5285156729751 227.0057529443395 9.838672532042438 701.5004490517789 227.0033552908892 9.839783730105864 521.21918994649 161.3881747638153 9.838460214744373 719.5286278958681 239.4743221169504 9.839895010315104 521.2191306538099 154.8290541129247 9.839672775977306 557.2753824815434 167.9520904714541 9.838560875687563 719.5285745918775 233.5674326974601 9.83967273179951 557.2753829104411 167.94953109111 9.839672612939467 539.2473158603619 167.9496928180037 9.839672775977306 557.2753824815434 167.9520904714541 9.839672657119536 539.2473154314602 167.9522521983514 9.839672612939467 539.2473158603619 167.9496928180037 9.839672775977306 557.2753824815434 167.9520904714541 9.839672657119536 539.2473154314602 167.9522521983514 9.83967273179951 557.2753829104411 167.94953109111 9.83967273179951 557.2753829104411 167.94953109111 9.839672775977306 557.2753824815434 167.9520904714541 9.839672612939467 539.2473158603619 167.9496928180037 9.839672657119536 539.2473154314602 167.9522521983514 9.839672775977306 557.2753824815434 167.9520904714541 9.839672612939467 539.2473158603619 167.9496928180037 9.839672657119536 539.2473154314602 167.9522521983514 9.83967273179951 557.2753829104411 167.94953109111 94.484230480522 719.5285743830815 233.5663082618553 94.48541876972513 719.5279457255224 163.4875693200625 94.48413027701827 719.5286273951565 239.4757572979555 94.48546500627435 503.1911166101844 160.7375405410218 94.48675309322425 503.1904346659889 84.74935263590139 94.48546448008801 414.6470303395421 160.73833497646 94.48675258624235 414.6463483953374 84.75014648464297 94.4881894592404 181.7592515306867 -0.01145868528037008 94.4880229927935 8.808418726147238e-005 9.823403231743306 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 94.4881894592404 181.7592515306867 -0.01145868528037008 94.4880229927935 8.808418726147238e-005 9.823403231743306 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 94.48546448008801 414.6470303395421 160.73833497646 94.48675258624235 414.6463483953374 84.75014648464297 94.48675309322425 503.1904346659889 84.74935263590139 94.48546500627435 503.1911166101844 160.7375405410218 94.48541876972513 719.5279457255224 163.4875693200625 94.48413027701827 719.5286273951565 239.4757572979555 94.484230480522 719.5285743830815 233.5663082618553 94.48413033648239 729.3711470494891 239.4756690033557 94.48423053997749 729.371094037406 233.5662199672548 94.48413027701827 719.5286273951565 239.4757572979555 94.484230480522 719.5285743830815 233.5663082618553 94.48423053997749 729.371094037406 233.5662199672548 94.48413027701827 719.5286273951565 239.4757572979555 94.484230480522 719.5285743830815 233.5663082618553 94.48413033648239 729.3711470494891 239.4756690033557 9.838672650902481 719.5285161018685 227.0031935639941 9.838672695085279 719.5285156729751 227.0057529443395 9.838672532042438 701.5004490517789 227.0033552908892 9.838672576223871 701.5004486228851 227.0059146712348 9.838672695085279 719.5285156729751 227.0057529443395 9.838672532042438 701.5004490517789 227.0033552908892 9.838672576223871 701.5004486228851 227.0059146712348 9.838672650902481 719.5285161018685 227.0031935639941 9.838783794471965 701.5003902213542 220.4416755220412 9.838783838648396 701.5003897924581 220.4442349023854 9.838783675615559 683.4723231712683 220.4418372489366 9.838783719791991 683.4723227423705 220.4443966292824 9.838783838648396 701.5003897924581 220.4442349023854 9.838783675615559 683.4723231712683 220.4418372489366 9.838783719791991 683.4723227423705 220.4443966292824 9.838783794471965 701.5003902213542 220.4416755220412 9.838894911645639 683.4722643074899 213.8801574704304 9.838894955825253 683.4722638785963 213.882716850777 9.838894792788324 665.4441972574022 213.8803191973271 9.838894836968393 665.4441968285083 213.8828785776719 9.838894955825253 683.4722638785963 213.882716850777 9.838894792788324 665.4441972574022 213.8803191973271 9.838894836968393 665.4441968285083 213.8828785776719 9.838894911645639 683.4722643074899 213.8801574704304 9.83900602881522 665.4441383936251 207.3186394162431 9.839006072991197 665.4441379647331 207.3211987965882 9.839005909950629 647.4160713435371 207.3188011431379 9.839005954131153 647.4160709146446 207.3213605234842 9.839006072991197 665.4441379647331 207.3211987965882 9.839005909950629 647.4160713435371 207.3188011431379 9.839005954131153 647.4160709146446 207.3213605234842 9.83900602881522 665.4441383936251 207.3186394162431 9.839117145974342 647.4160124797637 200.7571213620531 9.839117190154411 647.416012050868 200.7596807423993 9.839117027119301 629.3879454296772 200.7572830889484 9.839117071303008 629.3879450007787 200.7598424692943 9.839117190154411 647.416012050868 200.7596807423993 9.839117027119301 629.3879454296772 200.7572830889484 9.839117071303008 629.3879450007787 200.7598424692943 9.839117145974342 647.4160124797637 200.7571213620531 9.839228263137102 629.3878865658982 194.195603307864 9.839228307313078 629.3878861370002 194.1981626882111 9.839228144284334 611.3598195158103 194.1957650347603 9.839228188459401 611.3598190869141 194.1983244151055 9.839228307313078 629.3878861370002 194.1981626882111 9.839228144284334 611.3598195158103 194.1957650347603 9.839228188459401 611.3598190869141 194.1983244151055 9.839228263137102 629.3878865658982 194.195603307864 9.83933938030259 611.359760652033 187.634085253675 9.839339424484933 611.3597602231425 187.6366446340213 9.839339261442547 593.3316936019432 187.6342469805713 9.839339305625799 593.3316931730541 187.6368063609176 9.839339424484933 611.3597602231425 187.6366446340213 9.839339261442547 593.3316936019432 187.6342469805713 9.839339305625799 593.3316931730541 187.6368063609176 9.83933938030259 611.359760652033 187.634085253675 9.839450497469898 593.3316347381652 181.0725671994868 9.839450541645874 593.3316343092733 181.075126579833 9.839450378611673 575.3035676880834 181.0727289263818 9.839450422793107 575.303567259189 181.0752883067285 9.839450541645874 593.3316343092733 181.075126579833 9.839450378611673 575.3035676880834 181.0727289263818 9.839450422793107 575.303567259189 181.0752883067285 9.839450497469898 593.3316347381652 181.0725671994868 9.839561614634476 575.3035088243079 174.5110491452988 9.839561658814091 575.3035083954148 174.5136085256439 9.839561495780345 557.2754417742207 174.5112108721949 9.83956153995905 557.2754413453231 174.51377025254 9.839561658814091 575.3035083954148 174.5136085256439 9.839561495780345 557.2754417742207 174.5112108721949 9.83956153995905 557.2754413453231 174.51377025254 9.839561614634476 575.3035088243079 174.5110491452988 76.76902947083681 521.2191306434461 154.8278987485001 9.839892928423524 521.2191306435349 154.827909016755 9.839895010315104 521.2191306538099 154.8290541129247 9.839895010315104 521.2191306538099 154.8290541129247 9.839892928423524 521.2191306435349 154.827909016755 76.76902947083681 521.2191306434461 154.8278987485001 9.839892928604968 414.6469769739911 154.8300107170691 9.839892928423524 521.2191306435349 154.827909016755 9.839895010315104 521.2191306538099 154.8290541129247 9.839895010315104 521.2191306538099 154.8290541129247 9.839892928423524 521.2191306435349 154.827909016755 9.839892928604968 414.6469769739911 154.8300107170691 9.839894966135489 521.2191310827094 154.8264947325787 9.839892884418987 414.6469774441987 154.8274507550724 9.839892928423524 521.2191306435349 154.827909016755 9.839892928604968 414.6469769739911 154.8300107170691 9.839892884418987 414.6469774441987 154.8274507550724 9.839892928423524 521.2191306435349 154.827909016755 9.839892928604968 414.6469769739911 154.8300107170691 9.839894966135489 521.2191310827094 154.8264947325787 9.839993014717493 414.6469244587561 148.9219389451337 9.83999305889256 414.6469240298618 148.9244983254806 9.839992895853811 396.6188574086687 148.922100672031 9.839992940033881 396.6188569797715 148.9246600523759 9.83999305889256 414.6469240298618 148.9244983254806 9.839992895853811 396.6188574086687 148.922100672031 9.839992940033881 396.6188569797715 148.9246600523759 9.839993014717493 414.6469244587561 148.9219389451337 9.839993014717493 414.6469244587561 148.9219389451337 9.839992895853811 396.6188574086687 148.922100672031 9.83999305889256 414.6469240298618 148.9244983254806 9.839992940033881 396.6188569797715 148.9246600523759 9.839992895853811 396.6188574086687 148.922100672031 9.83999305889256 414.6469240298618 148.9244983254806 9.839992940033881 396.6188569797715 148.9246600523759 9.839993014717493 414.6469244587561 148.9219389451337 9.840104158279701 396.6187985782387 142.3604209031817 9.840104202456587 396.618798149342 142.3629802835284 9.840104039416929 378.5907315281508 142.360582630077 9.840104083598362 378.5907310992597 142.363142010424 9.840104202456587 396.618798149342 142.3629802835284 9.840104039416929 378.5907315281508 142.360582630077 9.840104083598362 378.5907310992597 142.363142010424 9.840104158279701 396.6187985782387 142.3604209031817 9.840104158279701 396.6187985782387 142.3604209031817 9.840104039416929 378.5907315281508 142.360582630077 9.840104202456587 396.618798149342 142.3629802835284 9.840104083598362 378.5907310992597 142.363142010424 9.840104039416929 378.5907315281508 142.360582630077 9.840104202456587 396.618798149342 142.3629802835284 9.840104083598362 378.5907310992597 142.363142010424 9.840104158279701 396.6187985782387 142.3604209031817 9.840215275460196 378.5906726643788 135.7989028515738 9.840215319638446 378.5906722354819 135.8014622319193 9.840215156604245 360.5626056142902 135.7990645784692 9.840215200783405 360.5626051853938 135.8016239588147 9.840215319638446 378.5906722354819 135.8014622319193 9.840215156604245 360.5626056142902 135.7990645784692 9.840215200783405 360.5626051853938 135.8016239588147 9.840215275460196 378.5906726643788 135.7989028515738 9.840326392630232 360.5625467505132 129.2373847973844 9.840326436807573 360.5625463216165 129.2399441777298 9.840326273765186 342.534479700425 129.2375465242787 9.840326317943436 342.5344792715356 129.2401059046261 9.840326436807573 360.5625463216165 129.2399441777298 9.840326273765186 342.534479700425 129.2375465242787 9.840326317943436 342.5344792715356 129.2401059046261 9.840326392630232 360.5625467505132 129.2373847973844 9.840326392630232 360.5625467505132 129.2373847973844 9.840326273765186 342.534479700425 129.2375465242787 9.840326436807573 360.5625463216165 129.2399441777298 9.840326317943436 342.5344792715356 129.2401059046261 9.840326273765186 342.534479700425 129.2375465242787 9.840326436807573 360.5625463216165 129.2399441777298 9.840326317943436 342.5344792715356 129.2401059046261 9.840326392630232 360.5625467505132 129.2373847973844 9.840437509790263 342.5344208366516 122.6758667431952 9.840437553965785 342.5344204077607 122.6784261235403 9.840437390934312 324.5063537865623 122.6760284700902 9.840437435112108 324.5063533576665 122.6785878504362 9.840437553965785 342.5344204077607 122.6784261235403 9.840437390934312 324.5063537865623 122.6760284700902 9.840437435112108 324.5063533576665 122.6785878504362 9.840437509790263 342.5344208366516 122.6758667431952 9.840437509790263 342.5344208366516 122.6758667431952 9.840437390934312 324.5063537865623 122.6760284700902 9.840437553965785 342.5344204077607 122.6784261235403 9.840437435112108 324.5063533576665 122.6785878504362 9.840437390934312 324.5063537865623 122.6760284700902 9.840437553965785 342.5344204077607 122.6784261235403 9.840437435112108 324.5063533576665 122.6785878504362 9.840437509790263 342.5344208366516 122.6758667431952 9.840548626947111 324.5062949227805 116.1143486890057 9.840548671125816 324.5062944938873 116.1169080693515 9.840548508089796 306.4782278726945 116.1145104159015 9.840548552272139 306.4782274437993 116.1170697962476 9.840548671125816 324.5062944938873 116.1169080693515 9.840548508089796 306.4782278726945 116.1145104159015 9.840548552272139 306.4782274437993 116.1170697962476 9.840548626947111 324.5062949227805 116.1143486890057 9.840548626947111 324.5062949227805 116.1143486890057 9.840548508089796 306.4782278726945 116.1145104159015 9.840548671125816 324.5062944938873 116.1169080693515 9.840548552272139 306.4782274437993 116.1170697962476 9.840548508089796 306.4782278726945 116.1145104159015 9.840548671125816 324.5062944938873 116.1169080693515 9.840548552272139 306.4782274437993 116.1170697962476 9.840548626947111 324.5062949227805 116.1143486890057 9.840659744117602 306.4781690089181 109.5528306348171 9.840659788297216 306.4781685800281 109.5553900151633 9.840659625258923 288.4501019588344 109.5529923617128 9.84065966943399 288.4501015299403 109.5555517420589 9.840659788297216 306.4781685800281 109.5553900151633 9.840659625258923 288.4501019588344 109.5529923617128 9.84065966943399 288.4501015299403 109.5555517420589 9.840659744117602 306.4781690089181 109.5528306348171 9.840659744117602 306.4781690089181 109.5528306348171 9.840659625258923 288.4501019588344 109.5529923617128 9.840659788297216 306.4781685800281 109.5553900151633 9.84065966943399 288.4501015299403 109.5555517420589 9.840659625258923 288.4501019588344 109.5529923617128 9.840659788297216 306.4781685800281 109.5553900151633 9.84065966943399 288.4501015299403 109.5555517420589 9.840659744117602 306.4781690089181 109.5528306348171 9.840770861281726 288.450043095052 102.991312580628 9.840770905461341 288.4500426661609 102.9938719609743 9.840770742430323 270.4219760449716 102.9914743075235 9.84077078660448 270.4219756160721 102.9940336878695 9.840770905461341 288.4500426661609 102.9938719609743 9.840770742430323 270.4219760449716 102.9914743075235 9.84077078660448 270.4219756160721 102.9940336878695 9.840770861281726 288.450043095052 102.991312580628 9.840770861281726 288.450043095052 102.991312580628 9.840770742430323 270.4219760449716 102.9914743075235 9.840770905461341 288.4500426661609 102.9938719609743 9.84077078660448 270.4219756160721 102.9940336878695 9.840770742430323 270.4219760449716 102.9914743075235 9.840770905461341 288.4500426661609 102.9938719609743 9.84077078660448 270.4219756160721 102.9940336878695 9.840770861281726 288.450043095052 102.991312580628 9.840881978449488 270.4219171811986 96.42979452643932 9.840882022628193 270.4219167522925 96.43235390678471 9.840881859592173 252.3938501311091 96.42995625333485 9.84088190376815 252.3938497022144 96.4325156336804 9.840882022628193 270.4219167522925 96.43235390678471 9.840881859592173 252.3938501311091 96.42995625333485 9.84088190376815 252.3938497022144 96.4325156336804 9.840881978449488 270.4219171811986 96.42979452643932 9.840881978449488 270.4219171811986 96.42979452643932 9.840881859592173 252.3938501311091 96.42995625333485 9.840882022628193 270.4219167522925 96.43235390678471 9.84088190376815 252.3938497022144 96.4325156336804 9.840881859592173 252.3938501311091 96.42995625333485 9.840882022628193 270.4219167522925 96.43235390678471 9.84088190376815 252.3938497022144 96.4325156336804 9.840881978449488 270.4219171811986 96.42979452643932 9.840993095619979 252.3937912673302 89.86827647224976 9.84099313979732 252.3937908384336 89.87083585259605 9.840992976758571 234.3657242172478 89.86843819914564 9.840993020936367 234.3657237883548 89.87099757949105 9.84099313979732 252.3937908384336 89.87083585259605 9.840992976758571 234.3657242172478 89.86843819914564 9.840993020936367 234.3657237883548 89.87099757949105 9.840993095619979 252.3937912673302 89.86827647224976 9.84110421278092 234.3656653534611 83.30675841806107 9.841104256961444 234.3656649245679 83.30931779840611 9.841104093924059 216.3375983033771 83.30692014495641 9.841104138102764 216.3375978744903 83.30947952530308 9.841104256961444 234.3656649245679 83.30931779840611 9.841104093924059 216.3375983033771 83.30692014495641 9.841104138102764 216.3375978744903 83.30947952530308 9.84110421278092 234.3656653534611 83.30675841806107 9.84110421278092 234.3656653534611 83.30675841806107 9.841104093924059 216.3375983033771 83.30692014495641 9.841104256961444 234.3656649245679 83.30931779840611 9.841104138102764 216.3375978744903 83.30947952530308 9.841104093924059 216.3375983033771 83.30692014495641 9.841104256961444 234.3656649245679 83.30931779840611 9.841104138102764 216.3375978744903 83.30947952530308 9.84110421278092 234.3656653534611 83.30675841806107 9.841215374156036 216.3375390107129 76.74779949406621 9.841215487514091 198.3094681452882 76.74796123604615 9.841215329977331 216.3375389232266 76.74524011372475 9.841215443334022 198.3094680578023 76.7454018557041 9.841215487514091 198.3094681452882 76.74796123604615 9.841215329977331 216.3375389232266 76.74524011372475 9.841215443334022 198.3094680578023 76.7454018557041 9.841215374156036 216.3375390107129 76.74779949406621 9.841215374156036 216.3375390107129 76.74779949406621 9.841215329977331 216.3375389232266 76.74524011372475 9.841215487514091 198.3094681452882 76.74796123604615 9.841215443334022 198.3094680578023 76.7454018557041 9.841215329977331 216.3375389232266 76.74524011372475 9.841215487514091 198.3094681452882 76.74796123604615 9.841215443334022 198.3094680578023 76.7454018557041 9.841215374156036 216.3375390107129 76.74779949406621 9.841337847180512 198.3094033852806 69.53011068888733 9.841337728334111 180.2813325198647 69.5302724403826 9.841337803003171 198.3094032977892 69.52755130854607 9.841337684141763 180.2813324323706 69.52771306004098 9.841337728334111 180.2813325198647 69.5302724403826 9.841337803003171 198.3094032977892 69.52755130854607 9.841337684141763 180.2813324323706 69.52771306004098 9.841337847180512 198.3094033852806 69.53011068888733 9.841437840742401 180.2812795344114 63.62476055887885 9.841437721890998 162.2532086689994 63.62492231037396 9.841437796566424 180.2812794469271 63.62220117853744 9.841437677713657 162.2532085815065 63.62236293003289 9.841437721890998 162.2532086689994 63.62492231037396 9.841437796566424 180.2812794469271 63.62220117853744 9.841437677713657 162.2532085815065 63.62236293003289 9.841437840742401 180.2812795344114 63.62476055887885 9.841437840742401 180.2812795344114 63.62476055887885 9.841437796566424 180.2812794469271 63.62220117853744 9.841437721890998 162.2532086689994 63.62492231037396 9.841437677713657 162.2532085815065 63.62236293003289 9.841437796566424 180.2812794469271 63.62220117853744 9.841437721890998 162.2532086689994 63.62492231037396 9.841437677713657 162.2532085815065 63.62236293003289 9.841437840742401 180.2812795344114 63.62476055887885 9.841548957936539 162.2531497962694 57.06324111658389 9.841548839085135 144.2250789308529 57.06340286807888 9.841548913761017 162.2531497087845 57.06068173624247 9.841548794906885 144.2250788433599 57.06084348773737 9.841548839085135 144.2250789308529 57.06340286807888 9.841548913761017 162.2531497087845 57.06068173624247 9.841548794906885 144.2250788433599 57.06084348773737 9.841548957936539 162.2531497962694 57.06324111658389 9.841548957936539 162.2531497962694 57.06324111658389 9.841548913761017 162.2531497087845 57.06068173624247 9.841548839085135 144.2250789308529 57.06340286807888 9.841548794906885 144.2250788433599 57.06084348773737 9.841548913761017 162.2531497087845 57.06068173624247 9.841548839085135 144.2250789308529 57.06340286807888 9.841548794906885 144.2250788433599 57.06084348773737 9.841548957936539 162.2531497962694 57.06324111658389 9.841660075125674 144.2250200581243 50.50172167428854 9.841659956278363 126.1969491927036 50.50188342578373 9.841660030952426 144.2250199706238 50.49916229394729 9.84165991208738 126.1969491052168 50.49932404544207 9.841659956278363 126.1969491927036 50.50188342578373 9.841660030952426 144.2250199706238 50.49916229394729 9.84165991208738 126.1969491052168 50.49932404544207 9.841660075125674 144.2250200581243 50.50172167428854 9.841660075125674 144.2250200581243 50.50172167428854 9.841660030952426 144.2250199706238 50.49916229394729 9.841659956278363 126.1969491927036 50.50188342578373 9.84165991208738 126.1969491052168 50.49932404544207 9.841660030952426 144.2250199706238 50.49916229394729 9.841659956278363 126.1969491927036 50.50188342578373 9.84165991208738 126.1969491052168 50.49932404544207 9.841660075125674 144.2250200581243 50.50172167428854 9.841769487362853 126.1968912223324 44.04077566324332 9.841769368499172 108.1688203569174 44.04093741473849 9.841769443172325 126.196891134847 44.03821628290188 9.841769324321376 108.1688202694331 44.03837803439738 9.841769368499172 108.1688203569174 44.04093741473849 9.841769443172325 126.196891134847 44.03821628290188 9.841769324321376 108.1688202694331 44.03837803439738 9.841769487362853 126.1968912223324 44.04077566324332 9.841882309507582 108.1687605818317 37.3786827896978 9.84188219064481 90.14068971640941 37.37884454119295 9.841882265317054 108.1687604943333 37.37612340935625 9.84188214646656 90.14068962891739 37.37628516085163 9.84188219064481 90.14068971640941 37.37884454119295 9.841882265317054 108.1687604943333 37.37612340935625 9.84188214646656 90.14068962891739 37.37628516085163 9.841882309507582 108.1687605818317 37.3786827896978 9.841882309507582 108.1687605818317 37.3786827896978 9.841882265317054 108.1687604943333 37.37612340935625 9.84188219064481 90.14068971640941 37.37884454119295 9.84188214646656 90.14068962891739 37.37628516085163 9.841882265317054 108.1687604943333 37.37612340935625 9.84188219064481 90.14068971640941 37.37884454119295 9.84188214646656 90.14068962891739 37.37628516085163 9.841882309507582 108.1687605818317 37.3786827896978 9.841993426690351 90.14063084367943 30.81716334740239 9.841993307838948 72.11255997825832 30.81732509889744 9.841993382515739 90.14063075618446 30.81460396706099 9.841993263659333 72.11255989077517 30.81476571855617 9.841993307838948 72.11255997825832 30.81732509889744 9.841993382515739 90.14063075618446 30.81460396706099 9.841993263659333 72.11255989077517 30.81476571855617 9.841993426690351 90.14063084367943 30.81716334740239 9.842104543884034 72.11250110552813 24.25564390510714 9.842104499709421 72.11250101804156 24.25308452476575 9.842104425029447 54.08443024011383 24.25580565660217 9.842104380853925 54.08443015261976 24.2532462762608 9.842104499709421 72.11250101804156 24.25308452476575 9.842104425029447 54.08443024011383 24.25580565660217 9.842104380853925 54.08443015261976 24.2532462762608 9.842104543884034 72.11250110552813 24.25564390510714 9.842215661069531 54.08437136738569 17.69412446281174 9.842215616890826 54.08437127989753 17.69156508247045 9.842215542217673 36.05630050196911 17.69428621430697 9.842215498030782 36.05630041447709 17.6917268339654 9.842215616890826 54.08437127989753 17.69156508247045 9.842215542217673 36.05630050196911 17.69428621430697 9.842215498030782 36.05630041447709 17.6917268339654 9.842215661069531 54.08437136738569 17.69412446281174 9.84232677826185 36.05624162923892 11.13260502051638 9.842326734083144 36.05624154174439 11.13004564017503 9.84232665939544 18.02817076383168 11.1327667720114 9.842326615217644 18.02817067633146 11.13020739167003 9.842326734083144 36.05624154174439 11.13004564017503 9.84232665939544 18.02817076383168 11.1327667720114 9.842326615217644 18.02817067633146 11.13020739167003 9.84232677826185 36.05624162923892 11.13260502051638 9.842437895456442 18.02811189108738 4.571085578221068 9.842437851266823 18.02811180360173 4.568526197879633 9.84243777659276 4.102567400110502e-005 4.571247329716065 9.842437732414055 4.093818606776267e-005 4.568687949374675 9.842437851266823 18.02811180360173 4.568526197879633 9.84243777659276 4.102567400110502e-005 4.571247329716065 9.842437732414055 4.093818606776267e-005 4.568687949374675 9.842437895456442 18.02811189108738 4.571085578221068 9.842351136039724 8.807656161025079e-005 9.821968231536081 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 9.839792623332869 414.6470304637383 160.7368999534899 -0.002725138191635779 414.6470305271358 160.7367329815699 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 9.839792623332869 414.6470304637383 160.7368999534899 -0.002725138191635779 414.6470305271358 160.7367329815699 9.842351136039724 8.807656161025079e-005 9.821968231536081 -0.00405946886894526 719.5286279507077 239.474155122006 -0.00272459282859927 503.191116715882 160.7359385461354 -0.002770193026663037 719.5279462522052 163.4859661585828 -0.001435463807865745 503.190435192679 84.74774947442907 -0.002725138191635779 414.6470305271358 160.7367329815699 -0.001436009172266495 414.6463490039169 84.74854390986434 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 -0.0001666254884185037 8.808982045138691e-005 9.821801170629138 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 -0.002725138191635779 414.6470305271358 160.7367329815699 -0.001436009172266495 414.6463490039169 84.74854390986434 -0.001435463807865745 503.190435192679 84.74774947442907 -0.00272459282859927 503.191116715882 160.7359385461354 -0.002770193026663037 719.5279462522052 163.4859661585828 -0.00405946886894526 719.5286279507077 239.474155122006 17.71653492902442 2.857641447917558e-007 -0.001301406779838088 17.71649144542653 181.757674322605 -0.01333422303743176 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 -7.424291652569082e-007 181.7951380383543 -0.009829844957527978 17.71649144542653 181.757674322605 -0.01333422303743176 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 -7.424291652569082e-007 181.7951380383543 -0.009829844957527978 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 17.71653492902442 2.857641447917558e-007 -0.001301406779838088 9.839794943983179 503.1911171470628 160.73610554589 -0.00272459282859927 503.191116715882 160.7359385461354 9.838460214744373 719.5286278958681 239.4743221169504 -0.00405946886894526 719.5286279507077 239.474155122006 -0.00272459282859927 503.191116715882 160.7359385461354 9.838460214744373 719.5286278958681 239.4743221169504 -0.00405946886894526 719.5286279507077 239.474155122006 9.839794943983179 503.1911171470628 160.73610554589 9.839794943983179 503.1911171470628 160.73610554589 9.839792623332869 414.6470304637383 160.7368999534899 -0.00272459282859927 503.191116715882 160.7359385461354 -0.002725138191635779 414.6470305271358 160.7367329815699 9.839792623332869 414.6470304637383 160.7368999534899 -0.00272459282859927 503.191116715882 160.7359385461354 -0.002725138191635779 414.6470305271358 160.7367329815699 9.839794943983179 503.1911171470628 160.73610554589 94.4881894592404 181.7592515306867 -0.01145868528037008 76.77165453322186 181.7576744770358 -0.01175891049841149 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 76.7716542149301 8.197298484446947e-008 -0.0003003246370116286 76.77165453321868 181.7592515531196 -0.01175925981286674 94.4881894592404 181.7592515306867 -0.01145868528037008 76.77165453322186 181.7576744770358 -0.01175891049841149 76.77165453321868 181.7592515531196 -0.01175925981286674 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016 76.7716542149301 8.197298484446947e-008 -0.0003003246370116286 94.48675258624235 414.6463483953374 84.75014648464297 84.64423300151702 414.6463484512637 84.74997964140168 94.4881894592404 181.7592515306867 -0.01145868528037008 76.77165453321868 181.7592515531196 -0.01175925981286674 76.77158800208508 192.5392564387268 3.911732128457376 76.77021755446276 414.6278490568375 84.74311298746578 76.77021722008021 414.6463485460473 84.74984606294481 84.64423300151702 414.6463484512637 84.74997964140168 76.77021755446276 414.6278490568375 84.74311298746578 76.77021722008021 414.6463485460473 84.74984606294481 76.77158800208508 192.5392564387268 3.911732128457376 76.77165453321868 181.7592515531196 -0.01175925981286674 94.4881894592404 181.7592515306867 -0.01145868528037008 94.48675258624235 414.6463483953374 84.75014648464297 94.48675258624235 414.6463483953374 84.75014648464297 94.48675309322425 503.1904346659889 84.74935263590139 84.64423300151702 414.6463484512637 84.74997964140168 76.77021772706985 503.1904348166929 84.74905221420346 76.77021722008021 414.6463485460473 84.74984606294481 76.77021772706985 503.1904348166929 84.74905221420346 84.64423300151702 414.6463484512637 84.74997964140168 76.77021722008021 414.6463485460473 84.74984606294481 94.48675309322425 503.1904346659889 84.74935263590139 94.48675258624235 414.6463483953374 84.75014648464297 94.48675309322425 503.1904346659889 84.74935263590139 94.48541876972513 719.5279457255224 163.4875693200625 76.77021772706985 503.1904348166929 84.74905221420346 76.76888316109807 719.5279458165892 163.4872688154743 94.48541876972513 719.5279457255224 163.4875693200625 76.77021772706985 503.1904348166929 84.74905221420346 76.76888316109807 719.5279458165892 163.4872688154743 94.48675309322425 503.1904346659889 84.74935263590139 17.71509996670238 503.1904350939219 84.74805006720644 -0.001435463807865745 503.190435192679 84.74774947442907 17.71509942134935 414.6463489051671 84.74884450264177 -0.001436009172266495 414.6463490039169 84.74854390986434 -0.001435463807865745 503.190435192679 84.74774947442907 17.71509942134935 414.6463489051671 84.74884450264177 -0.001436009172266495 414.6463490039169 84.74854390986434 17.71509996670238 503.1904350939219 84.74805006720644 17.7150995955526 414.6172049445924 84.73823726465852 17.71509942134935 414.6463489051671 84.74884450264177 17.7164912215294 181.7951356455583 0.0002992296709560249 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -0.001436009172266495 414.6463490039169 84.74854390986434 17.71509942134935 414.6463489051671 84.74884450264177 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -0.001436009172266495 414.6463490039169 84.74854390986434 17.7164912215294 181.7951356455583 0.0002992296709560249 17.7150995955526 414.6172049445924 84.73823726465852 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 17.71509992042502 503.2256012564315 84.76084914634312 17.71376523749586 719.5279461534541 163.4862667513612 17.71509996670238 503.1904350939219 84.74805006720644 -0.001435463807865745 503.190435192679 84.74774947442907 -0.002770193026663037 719.5279462522052 163.4859661585828 17.71376523749586 719.5279461534541 163.4862667513612 -0.001435463807865745 503.190435192679 84.74774947442907 -0.002770193026663037 719.5279462522052 163.4859661585828 17.71509996670238 503.1904350939219 84.74805006720644 17.71509992042502 503.2256012564315 84.76084914634312 76.7716542149301 8.197298484446947e-008 -0.0003003246370116286 76.77165453322186 181.7576744770358 -0.01175891049841149 17.71653496391309 9.112295629165601e-008 0.000719114570889301 17.71653479426732 181.7576744861865 -0.01073947128208747 76.77165453322186 181.7576744770358 -0.01175891049841149 17.71653496391309 9.112295629165601e-008 0.000719114570889301 17.71653479426732 181.7576744861865 -0.01073947128208747 76.7716542149301 8.197298484446947e-008 -0.0003003246370116286 76.77158797323136 192.5386370872663 3.913433870677238 76.77158677716761 192.5176875277981 3.97099529109646 76.77158800208508 192.5392564387268 3.911732128457376 76.77108577844865 181.7595523235645 33.53025855239667 76.77165453321868 181.7592515531196 -0.01175925981286674 76.76832575953677 719.5282410018076 196.3719838475184 76.76964903047383 503.2086646171221 118.2846351598872 76.76888316109807 719.5279458165892 163.4872688154743 76.77021772706985 503.1904348166929 84.74905221420346 76.77021722008021 414.6463485460473 84.74984606294481 76.76964880555397 414.6345231938786 118.2854298649846 76.76964886003316 414.6256952718247 118.2822169304082 76.77021624447616 414.625398986583 84.80740748336763 76.77021635862593 414.6068994457873 84.8006745496247 76.7715865719797 192.5509388444224 3.983097154281294 76.76964886003316 414.6256952718247 118.2822169304082 76.77158677716761 192.5176875277981 3.97099529109646 76.77108577844865 181.7595523235645 33.53025855239667 76.7715865719797 192.5509388444224 3.983097154281294 76.77021635862593 414.6068994457873 84.8006745496247 76.77021624447616 414.625398986583 84.80740748336763 76.77021722008021 414.6463485460473 84.74984606294481 76.76964880555397 414.6345231938786 118.2854298649846 76.76964903047383 503.2086646171221 118.2846351598872 76.77021772706985 503.1904348166929 84.74905221420346 76.76888316109807 719.5279458165892 163.4872688154743 76.76832575953677 719.5282410018076 196.3719838475184 76.77165453321868 181.7592515531196 -0.01175925981286674 76.77158800208508 192.5392564387268 3.911732128457376 76.77158797323136 192.5386370872663 3.913433870677238 76.77158800208508 192.5392564387268 3.911732128457376 76.77158797323136 192.5386370872663 3.913433870677238 76.77021755446276 414.6278490568375 84.74311298746578 76.77021755446276 414.6278490568375 84.74311298746578 76.77158797323136 192.5386370872663 3.913433870677238 76.77158800208508 192.5392564387268 3.911732128457376 17.7132073123812 719.5282413267396 196.3709819542949 17.71376523749586 719.5279461534541 163.4862667513612 17.71453096973482 503.2259021035919 118.2918768471013 17.71509992042502 503.2256012564315 84.76084914634312 17.71453107521438 503.2086646262686 118.2856545990728 17.71509996670238 503.1904350939219 84.74805006720644 17.71453088451153 414.6466497620156 118.2864491953677 17.71509942134935 414.6463489051671 84.74884450264177 17.71509996670238 503.1904350939219 84.74805006720644 17.71453088451153 414.6466497620156 118.2864491953677 17.71509942134935 414.6463489051671 84.74884450264177 17.71453107521438 503.2086646262686 118.2856545990728 17.71509992042502 503.2256012564315 84.76084914634312 17.71453096973482 503.2259021035919 118.2918768471013 17.71376523749586 719.5279461534541 163.4862667513612 17.7132073123812 719.5282413267396 196.3709819542949 17.71649144542653 181.757674322605 -0.01333422303743176 17.7164912215294 181.7951356455583 0.0002992296709560249 8.735246410651598e-007 181.7576743346938 -0.01363455624469423 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 6.42412942397641e-007 181.7951386580569 1.554312234475219e-015 8.735246410651598e-007 181.7576743346938 -0.01363455624469423 -7.423982424370479e-007 181.7681334001675 -0.009828142498657155 17.7164912215294 181.7951356455583 0.0002992296709560249 17.71649144542653 181.757674322605 -0.01333422303743176 76.77158677716761 192.5176875277981 3.97099529109646 76.77158797323136 192.5386370872663 3.913433870677238 76.7715865719797 192.5509388444224 3.983097154281294 76.7715865719797 192.5509388444224 3.983097154281294 76.77158797323136 192.5386370872663 3.913433870677238 76.77158677716761 192.5176875277981 3.97099529109646 76.77021758355704 414.6284683567116 84.74141138698565 76.77158800208508 192.5392564387268 3.911732128457376 76.77021755446276 414.6278490568375 84.74311298746578 76.77158797323136 192.5386370872663 3.913433870677238 76.77158800208508 192.5392564387268 3.911732128457376 76.77021755446276 414.6278490568375 84.74311298746578 76.77158797323136 192.5386370872663 3.913433870677238 76.77021758355704 414.6284683567116 84.74141138698565 76.76973100341775 181.7592515181766 -0.00992808311248089 76.77165453321868 181.7592515531196 -0.01175925981286674 76.77108577844865 181.7595523235645 33.53025855239667 76.77108577844865 181.7595523235645 33.53025855239667 76.77165453321868 181.7592515531196 -0.01175925981286674 76.76973100341775 181.7592515181766 -0.00992808311248089 76.77108577844865 181.7595523235645 33.53025855239667 76.76964886003316 414.6256952718247 118.2822169304082 17.71596891616355 181.7586316261001 33.52892241162324 17.71453088448834 414.6345232030249 118.2864493041696 76.76964886003316 414.6256952718247 118.2822169304082 17.71596891616355 181.7586316261001 33.52892241162324 17.71453088448834 414.6345232030249 118.2864493041696 76.77108577844865 181.7595523235645 33.53025855239667 76.76964880555397 414.6345231938786 118.2854298649846 17.71453088448834 414.6345232030249 118.2864493041696 76.76964886003316 414.6256952718247 118.2822169304082 76.76964886003316 414.6256952718247 118.2822169304082 17.71453088448834 414.6345232030249 118.2864493041696 76.76964880555397 414.6345231938786 118.2854298649846 76.76964903047383 503.2086646171221 118.2846351598872 17.71453107521438 503.2086646262686 118.2856545990728 76.76964880555397 414.6345231938786 118.2854298649846 17.71453088451153 414.6466497620156 118.2864491953677 17.71453088448834 414.6345232030249 118.2864493041696 17.71453088451153 414.6466497620156 118.2864491953677 76.76964880555397 414.6345231938786 118.2854298649846 17.71453088448834 414.6345232030249 118.2864493041696 17.71453107521438 503.2086646262686 118.2856545990728 76.76964903047383 503.2086646171221 118.2846351598872 76.76964903047383 503.2086646171221 118.2846351598872 76.76832575953677 719.5282410018076 196.3719838475184 17.71453096973482 503.2259021035919 118.2918768471013 17.7132073123812 719.5282413267396 196.3709819542949 76.76832575953677 719.5282410018076 196.3719838475184 17.71453096973482 503.2259021035919 118.2918768471013 17.7132073123812 719.5282413267396 196.3709819542949 76.76964903047383 503.2086646171221 118.2846351598872 17.71509942134935 414.6463489051671 84.74884450264177 17.71463668473461 414.6367206921264 112.0452533164658 17.71453088451153 414.6466497620156 118.2864491953677 17.71453088451153 414.6466497620156 118.2864491953677 17.71463668473461 414.6367206921264 112.0452533164658 17.71509942134935 414.6463489051671 84.74884450264177 17.71596891616355 181.7586316261001 33.52892241162324 17.71648728707669 181.7576765225566 0.2319023277075344 76.77108577844865 181.7595523235645 33.53025855239667 17.71742271838048 181.7576744703945 -0.005706314450553751 76.76973100341775 181.7592515181766 -0.00992808311248089 17.71653479426732 181.7576744861865 -0.01073947128208747 76.76973097181963 181.7592512503618 -0.01175922660467577 17.71649144542653 181.757674322605 -0.01333422303743176 17.71653479426732 181.7576744861865 -0.01073947128208747 76.76973097181963 181.7592512503618 -0.01175922660467577 17.71649144542653 181.757674322605 -0.01333422303743176 76.76973100341775 181.7592515181766 -0.00992808311248089 17.71742271838048 181.7576744703945 -0.005706314450553751 76.77108577844865 181.7595523235645 33.53025855239667 17.71648728707669 181.7576765225566 0.2319023277075344 17.71596891616355 181.7586316261001 33.52892241162324 17.71453088448834 414.6345232030249 118.2864493041696 17.71596891616355 181.7586316261001 33.52892241162324 17.71414609887552 414.6468532549262 140.9705421628555 17.71553811324156 181.7581786775084 56.20893686235574 17.71596891616355 181.7586316261001 33.52892241162324 17.71414609887552 414.6468532549262 140.9705421628555 17.71553811324156 181.7581786775084 56.20893686235574 17.71453088448834 414.6345232030249 118.2864493041696 17.71453114376345 414.6036628736269 118.2708036843821 17.71592289618775 181.7600499133143 33.52502558997264 17.71453088448834 414.6345232030249 118.2864493041696 17.71596891616355 181.7586316261001 33.52892241162324 17.71648728707669 181.7576765225566 0.2319023277075344 17.71592289618775 181.7600499133143 33.52502558997264 17.71596891616355 181.7586316261001 33.52892241162324 17.71648728707669 181.7576765225566 0.2319023277075344 17.71453088448834 414.6345232030249 118.2864493041696 17.71453114376345 414.6036628736269 118.2708036843821 17.71453088451153 414.6466497620156 118.2864491953677 17.71453088448834 414.6345232030249 118.2864493041696 17.71414609887552 414.6468532549262 140.9705421628555 17.71414609887552 414.6468532549262 140.9705421628555 17.71453088448834 414.6345232030249 118.2864493041696 17.71453088451153 414.6466497620156 118.2864491953677 17.71463668473461 414.6367206921264 112.0452533164658 17.71509942134935 414.6463489051671 84.74884450264177 17.71472716067638 414.6282297648814 106.7080424082922 17.71501956792599 414.6162918665531 84.74552569604246 17.71509942134935 414.6463489051671 84.74884450264177 17.71472716067638 414.6282297648814 106.7080424082922 17.71501956792599 414.6162918665531 84.74552569604246 17.71463668473461 414.6367206921264 112.0452533164658 17.71463668473461 414.6367206921264 112.0452533164658 17.71453095700872 414.6345208034652 118.2820347387428 17.71453088451153 414.6466497620156 118.2864491953677 17.71453088451153 414.6466497620156 118.2864491953677 17.71453095700872 414.6345208034652 118.2820347387428 17.71463668473461 414.6367206921264 112.0452533164658 17.71453088451153 414.6466497620156 118.2864491953677 17.71463668473461 414.6367206921264 112.0452533164658 17.71453095700872 414.6345208034652 118.2820347387428 17.71472716067638 414.6282297648814 106.7080424082922 17.71463668473461 414.6367206921264 112.0452533164658 17.71453095700872 414.6345208034652 118.2820347387428 17.71472716067638 414.6282297648814 106.7080424082922 17.71453088451153 414.6466497620156 118.2864491953677 17.71463668473461 414.6367206921264 112.0452533164658 17.71453095700872 414.6345208034652 118.2820347387428 17.71453088451153 414.6466497620156 118.2864491953677 17.71453088451153 414.6466497620156 118.2864491953677 17.71453095700872 414.6345208034652 118.2820347387428 17.71463668473461 414.6367206921264 112.0452533164658 17.71453095700872 414.6345208034652 118.2820347387428 17.71472716067638 414.6282297648814 106.7080424082922 17.71453114376345 414.6036628736269 118.2708036843821 17.71509960927278 414.5932764525147 84.73715575559328 17.71592289618775 181.7600499133143 33.52502558997264 17.71648728707669 181.7576765225566 0.2319023277075344 17.71742271838048 181.7576744703945 -0.005706314450553751 17.71509960927278 414.5932764525147 84.73715575559328 17.71648728707669 181.7576765225566 0.2319023277075344 17.71742271838048 181.7576744703945 -0.005706314450553751 17.71592289618775 181.7600499133143 33.52502558997264 17.71453114376345 414.6036628736269 118.2708036843821 17.71472716067638 414.6282297648814 106.7080424082922 17.71453095700872 414.6345208034652 118.2820347387428 17.71472716067638 414.6282297648814 106.7080424082922 17.71453095700872 414.6345208034652 118.2820347387428 17.71463668473461 414.6367206921264 112.0452533164658 17.71463668473461 414.6367206921264 112.0452533164658 17.71453095700872 414.6345208034652 118.2820347387428 17.71472716067638 414.6282297648814 106.7080424082922</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1914\" source=\"#ID5324\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5322\">\r\n\t\t\t\t\t<float_array count=\"5742\" id=\"ID5325\">-0.9999999998510096 6.7476667477142e-009 1.726212821001601e-005 -0.9999999998510096 6.7476667477142e-009 1.726212821001601e-005 -0.9999999998510096 6.7476667477142e-009 1.726212821001601e-005 -0.9999999998510096 6.7476667477142e-009 1.726212821001601e-005 0.9999999998510096 -6.7476667477142e-009 -1.726212821001601e-005 0.9999999998510096 -6.7476667477142e-009 -1.726212821001601e-005 0.9999999998510096 -6.7476667477142e-009 -1.726212821001601e-005 0.9999999998510096 -6.7476667477142e-009 -1.726212821001601e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 -0.9999999998558251 1.671536220919163e-008 -1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 0.9999999998558251 -1.671536220919163e-008 1.69808637017915e-005 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 -3.020947034275292e-009 -0.9999999999600706 8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 3.020947034275292e-009 0.9999999999600706 -8.936394754629256e-006 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 -0.9999999998564904 2.126606838759902e-009 -1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 0.9999999998564904 -2.126606838759902e-009 1.694165315261649e-005 1.726250358506658e-005 8.970839341325744e-006 0.999999999810765 1.726250358506658e-005 8.970839341325744e-006 0.999999999810765 1.726250358506658e-005 8.970839341325744e-006 0.999999999810765 1.726250358506658e-005 8.970839341325744e-006 0.999999999810765 -1.726250358506658e-005 -8.970839341325744e-006 -0.999999999810765 -1.726250358506658e-005 -8.970839341325744e-006 -0.999999999810765 -1.726250358506658e-005 -8.970839341325744e-006 -0.999999999810765 -1.726250358506658e-005 -8.970839341325744e-006 -0.999999999810765 -1.69512734065197e-005 8.972202195269999e-006 0.9999999998160771 -1.69512734065197e-005 8.972202195269999e-006 0.9999999998160771 -1.69512734065197e-005 8.972202195269999e-006 0.9999999998160771 -1.69512734065197e-005 8.972202195269999e-006 0.9999999998160771 1.69512734065197e-005 -8.972202195269999e-006 -0.9999999998160771 1.69512734065197e-005 -8.972202195269999e-006 -0.9999999998160771 1.69512734065197e-005 -8.972202195269999e-006 -0.9999999998160771 1.69512734065197e-005 -8.972202195269999e-006 -0.9999999998160771 -1.595234396569304e-005 -0.3420117130454115 0.9396956889787597 -1.595234396569304e-005 -0.3420117130454115 0.9396956889787597 -1.595234396569304e-005 -0.3420117130454115 0.9396956889787597 -1.595234396569304e-005 -0.3420117130454115 0.9396956889787597 1.595234396569304e-005 0.3420117130454115 -0.9396956889787597 1.595234396569304e-005 0.3420117130454115 -0.9396956889787597 1.595234396569304e-005 0.3420117130454115 -0.9396956889787597 1.595234396569304e-005 0.3420117130454115 -0.9396956889787597 -1.699069109691404e-005 8.970731482899785e-006 0.9999999998154213 -1.699069109691404e-005 8.970731482899785e-006 0.9999999998154213 -1.699069109691404e-005 8.970731482899785e-006 0.9999999998154213 -1.699069109691404e-005 8.970731482899785e-006 0.9999999998154213 1.699069109691404e-005 -8.970731482899785e-006 -0.9999999998154213 1.699069109691404e-005 -8.970731482899785e-006 -0.9999999998154213 1.699069109691404e-005 -8.970731482899785e-006 -0.9999999998154213 1.699069109691404e-005 -8.970731482899785e-006 -0.9999999998154213 6.04078447685371e-009 0.999999999959763 -8.970731381556801e-006 6.04078447685371e-009 0.999999999959763 -8.970731381556801e-006 6.04078447685371e-009 0.999999999959763 -8.970731381556801e-006 6.04078447685371e-009 0.999999999959763 -8.970731381556801e-006 -6.04078447685371e-009 -0.999999999959763 8.970731381556801e-006 -6.04078447685371e-009 -0.999999999959763 8.970731381556801e-006 -6.04078447685371e-009 -0.999999999959763 8.970731381556801e-006 -6.04078447685371e-009 -0.999999999959763 8.970731381556801e-006 1.695237010078904e-005 -8.970731482673993e-006 -0.9999999998160716 1.695237010078904e-005 -8.970731482673993e-006 -0.9999999998160716 1.695237010078904e-005 -8.970731482673993e-006 -0.9999999998160716 1.695237010078904e-005 -8.970731482673993e-006 -0.9999999998160716 -1.695237010078904e-005 8.970731482673993e-006 0.9999999998160716 -1.695237010078904e-005 8.970731482673993e-006 0.9999999998160716 -1.695237010078904e-005 8.970731482673993e-006 0.9999999998160716 -1.695237010078904e-005 8.970731482673993e-006 0.9999999998160716 -9.308728860105341e-010 -0.9999999999597818 8.968629598979562e-006 -9.308728860105341e-010 -0.9999999999597818 8.968629598979562e-006 -9.308728860105341e-010 -0.9999999999597818 8.968629598979562e-006 -9.308728860105341e-010 -0.9999999999597818 8.968629598979562e-006 9.308728860105341e-010 0.9999999999597818 -8.968629598979562e-006 9.308728860105341e-010 0.9999999999597818 -8.968629598979562e-006 9.308728860105341e-010 0.9999999999597818 -8.968629598979562e-006 9.308728860105341e-010 0.9999999999597818 -8.968629598979562e-006 1.726250358505767e-005 8.970839312939975e-006 0.999999999810765 1.726250358505767e-005 8.970839312939975e-006 0.999999999810765 1.726250358505767e-005 8.970839312939975e-006 0.999999999810765 1.726250358505767e-005 8.970839312939975e-006 0.999999999810765 -1.726250358505767e-005 -8.970839312939975e-006 -0.999999999810765 -1.726250358505767e-005 -8.970839312939975e-006 -0.999999999810765 -1.726250358505767e-005 -8.970839312939975e-006 -0.999999999810765 -1.726250358505767e-005 -8.970839312939975e-006 -0.999999999810765 -1.726007997197179e-009 -0.9999999999596313 8.985420324210389e-006 -1.726007997197179e-009 -0.9999999999596313 8.985420324210389e-006 -1.726007997197179e-009 -0.9999999999596313 8.985420324210389e-006 -1.726007997197179e-009 -0.9999999999596313 8.985420324210389e-006 -1.726007997197179e-009 -0.9999999999596313 8.985420324210389e-006 1.726007997197179e-009 0.9999999999596313 -8.985420324210389e-006 1.726007997197179e-009 0.9999999999596313 -8.985420324210389e-006 1.726007997197179e-009 0.9999999999596313 -8.985420324210389e-006 1.726007997197179e-009 0.9999999999596313 -8.985420324210389e-006 1.726007997197179e-009 0.9999999999596313 -8.985420324210389e-006 1.726250358505106e-005 8.970839347640652e-006 0.999999999810765 1.726250358505106e-005 8.970839347640652e-006 0.999999999810765 1.726250358505106e-005 8.970839347640652e-006 0.999999999810765 1.726250358505106e-005 8.970839347640652e-006 0.999999999810765 -1.726250358505106e-005 -8.970839347640652e-006 -0.999999999810765 -1.726250358505106e-005 -8.970839347640652e-006 -0.999999999810765 -1.726250358505106e-005 -8.970839347640652e-006 -0.999999999810765 -1.726250358505106e-005 -8.970839347640652e-006 -0.999999999810765 -1.725968055849582e-009 -0.9999999999595856 8.990503354976378e-006 -1.725968055849582e-009 -0.9999999999595856 8.990503354976378e-006 -1.725968055849582e-009 -0.9999999999595856 8.990503354976378e-006 -1.725968055849582e-009 -0.9999999999595856 8.990503354976378e-006 -1.725968055849582e-009 -0.9999999999595856 8.990503354976378e-006 1.725968055849582e-009 0.9999999999595856 -8.990503354976378e-006 1.725968055849582e-009 0.9999999999595856 -8.990503354976378e-006 1.725968055849582e-009 0.9999999999595856 -8.990503354976378e-006 1.725968055849582e-009 0.9999999999595856 -8.990503354976378e-006 1.725968055849582e-009 0.9999999999595856 -8.990503354976378e-006 1.726250358504899e-005 8.970839330290788e-006 0.999999999810765 1.726250358504899e-005 8.970839330290788e-006 0.999999999810765 1.726250358504899e-005 8.970839330290788e-006 0.999999999810765 1.726250358504899e-005 8.970839330290788e-006 0.999999999810765 -1.726250358504899e-005 -8.970839330290788e-006 -0.999999999810765 -1.726250358504899e-005 -8.970839330290788e-006 -0.999999999810765 -1.726250358504899e-005 -8.970839330290788e-006 -0.999999999810765 -1.726250358504899e-005 -8.970839330290788e-006 -0.999999999810765 -1.725970181422183e-009 -0.9999999999595854 8.990503679557698e-006 -1.725970181422183e-009 -0.9999999999595854 8.990503679557698e-006 -1.725970181422183e-009 -0.9999999999595854 8.990503679557698e-006 -1.725970181422183e-009 -0.9999999999595854 8.990503679557698e-006 -1.725970181422183e-009 -0.9999999999595854 8.990503679557698e-006 1.725970181422183e-009 0.9999999999595854 -8.990503679557698e-006 1.725970181422183e-009 0.9999999999595854 -8.990503679557698e-006 1.725970181422183e-009 0.9999999999595854 -8.990503679557698e-006 1.725970181422183e-009 0.9999999999595854 -8.990503679557698e-006 1.725970181422183e-009 0.9999999999595854 -8.990503679557698e-006 1.726250358505141e-005 8.970839376020789e-006 0.999999999810765 1.726250358505141e-005 8.970839376020789e-006 0.999999999810765 1.726250358505141e-005 8.970839376020789e-006 0.999999999810765 1.726250358505141e-005 8.970839376020789e-006 0.999999999810765 -1.726250358505141e-005 -8.970839376020789e-006 -0.999999999810765 -1.726250358505141e-005 -8.970839376020789e-006 -0.999999999810765 -1.726250358505141e-005 -8.970839376020789e-006 -0.999999999810765 -1.726250358505141e-005 -8.970839376020789e-006 -0.999999999810765 -1.72597302026107e-009 -0.9999999999595856 8.99050315774095e-006 -1.72597302026107e-009 -0.9999999999595856 8.99050315774095e-006 -1.72597302026107e-009 -0.9999999999595856 8.99050315774095e-006 -1.72597302026107e-009 -0.9999999999595856 8.99050315774095e-006 -1.72597302026107e-009 -0.9999999999595856 8.99050315774095e-006 1.72597302026107e-009 0.9999999999595856 -8.99050315774095e-006 1.72597302026107e-009 0.9999999999595856 -8.99050315774095e-006 1.72597302026107e-009 0.9999999999595856 -8.99050315774095e-006 1.72597302026107e-009 0.9999999999595856 -8.99050315774095e-006 1.72597302026107e-009 0.9999999999595856 -8.99050315774095e-006 1.726250358505206e-005 8.970839308225756e-006 0.999999999810765 1.726250358505206e-005 8.970839308225756e-006 0.999999999810765 1.726250358505206e-005 8.970839308225756e-006 0.999999999810765 1.726250358505206e-005 8.970839308225756e-006 0.999999999810765 -1.726250358505206e-005 -8.970839308225756e-006 -0.999999999810765 -1.726250358505206e-005 -8.970839308225756e-006 -0.999999999810765 -1.726250358505206e-005 -8.970839308225756e-006 -0.999999999810765 -1.726250358505206e-005 -8.970839308225756e-006 -0.999999999810765 -1.725999127657944e-009 -0.9999999999595854 8.990503474021936e-006 -1.725999127657944e-009 -0.9999999999595854 8.990503474021936e-006 -1.725999127657944e-009 -0.9999999999595854 8.990503474021936e-006 -1.725999127657944e-009 -0.9999999999595854 8.990503474021936e-006 -1.725999127657944e-009 -0.9999999999595854 8.990503474021936e-006 1.725999127657944e-009 0.9999999999595854 -8.990503474021936e-006 1.725999127657944e-009 0.9999999999595854 -8.990503474021936e-006 1.725999127657944e-009 0.9999999999595854 -8.990503474021936e-006 1.725999127657944e-009 0.9999999999595854 -8.990503474021936e-006 1.725999127657944e-009 0.9999999999595854 -8.990503474021936e-006 1.726250358505705e-005 8.970839339753515e-006 0.999999999810765 1.726250358505705e-005 8.970839339753515e-006 0.999999999810765 1.726250358505705e-005 8.970839339753515e-006 0.999999999810765 1.726250358505705e-005 8.970839339753515e-006 0.999999999810765 -1.726250358505705e-005 -8.970839339753515e-006 -0.999999999810765 -1.726250358505705e-005 -8.970839339753515e-006 -0.999999999810765 -1.726250358505705e-005 -8.970839339753515e-006 -0.999999999810765 -1.726250358505705e-005 -8.970839339753515e-006 -0.999999999810765 -1.725975730882705e-009 -0.9999999999595854 8.990503235457869e-006 -1.725975730882705e-009 -0.9999999999595854 8.990503235457869e-006 -1.725975730882705e-009 -0.9999999999595854 8.990503235457869e-006 -1.725975730882705e-009 -0.9999999999595854 8.990503235457869e-006 -1.725975730882705e-009 -0.9999999999595854 8.990503235457869e-006 1.725975730882705e-009 0.9999999999595854 -8.990503235457869e-006 1.725975730882705e-009 0.9999999999595854 -8.990503235457869e-006 1.725975730882705e-009 0.9999999999595854 -8.990503235457869e-006 1.725975730882705e-009 0.9999999999595854 -8.990503235457869e-006 1.725975730882705e-009 0.9999999999595854 -8.990503235457869e-006 1.726250358506563e-005 8.97083940440733e-006 0.999999999810765 1.726250358506563e-005 8.97083940440733e-006 0.999999999810765 1.726250358506563e-005 8.97083940440733e-006 0.999999999810765 1.726250358506563e-005 8.97083940440733e-006 0.999999999810765 -1.726250358506563e-005 -8.97083940440733e-006 -0.999999999810765 -1.726250358506563e-005 -8.97083940440733e-006 -0.999999999810765 -1.726250358506563e-005 -8.97083940440733e-006 -0.999999999810765 -1.726250358506563e-005 -8.97083940440733e-006 -0.999999999810765 -1.725956942010193e-009 -0.9999999999595856 8.990504366192559e-006 -1.725956942010193e-009 -0.9999999999595856 8.990504366192559e-006 -1.725956942010193e-009 -0.9999999999595856 8.990504366192559e-006 -1.725956942010193e-009 -0.9999999999595856 8.990504366192559e-006 -1.725956942010193e-009 -0.9999999999595856 8.990504366192559e-006 1.725956942010193e-009 0.9999999999595856 -8.990504366192559e-006 1.725956942010193e-009 0.9999999999595856 -8.990504366192559e-006 1.725956942010193e-009 0.9999999999595856 -8.990504366192559e-006 1.725956942010193e-009 0.9999999999595856 -8.990504366192559e-006 1.725956942010193e-009 0.9999999999595856 -8.990504366192559e-006 1.726250358505733e-005 8.970839352320848e-006 0.999999999810765 1.726250358505733e-005 8.970839352320848e-006 0.999999999810765 1.726250358505733e-005 8.970839352320848e-006 0.999999999810765 1.726250358505733e-005 8.970839352320848e-006 0.999999999810765 -1.726250358505733e-005 -8.970839352320848e-006 -0.999999999810765 -1.726250358505733e-005 -8.970839352320848e-006 -0.999999999810765 -1.726250358505733e-005 -8.970839352320848e-006 -0.999999999810765 -1.726250358505733e-005 -8.970839352320848e-006 -0.999999999810765 -1.725970982250205e-009 -0.9999999999595854 8.990503484359544e-006 -1.725970982250205e-009 -0.9999999999595854 8.990503484359544e-006 -1.725970982250205e-009 -0.9999999999595854 8.990503484359544e-006 -1.725970982250205e-009 -0.9999999999595854 8.990503484359544e-006 -1.725970982250205e-009 -0.9999999999595854 8.990503484359544e-006 1.725970982250205e-009 0.9999999999595854 -8.990503484359544e-006 1.725970982250205e-009 0.9999999999595854 -8.990503484359544e-006 1.725970982250205e-009 0.9999999999595854 -8.990503484359544e-006 1.725970982250205e-009 0.9999999999595854 -8.990503484359544e-006 1.725970982250205e-009 0.9999999999595854 -8.990503484359544e-006 1.72625035850538e-005 8.970839398085218e-006 0.999999999810765 1.72625035850538e-005 8.970839398085218e-006 0.999999999810765 1.72625035850538e-005 8.970839398085218e-006 0.999999999810765 1.72625035850538e-005 8.970839398085218e-006 0.999999999810765 -1.72625035850538e-005 -8.970839398085218e-006 -0.999999999810765 -1.72625035850538e-005 -8.970839398085218e-006 -0.999999999810765 -1.72625035850538e-005 -8.970839398085218e-006 -0.999999999810765 -1.72625035850538e-005 -8.970839398085218e-006 -0.999999999810765 -1.725987764130457e-009 -0.9999999999595854 8.990503797697355e-006 -1.725987764130457e-009 -0.9999999999595854 8.990503797697355e-006 -1.725987764130457e-009 -0.9999999999595854 8.990503797697355e-006 -1.725987764130457e-009 -0.9999999999595854 8.990503797697355e-006 -1.725987764130457e-009 -0.9999999999595854 8.990503797697355e-006 1.725987764130457e-009 0.9999999999595854 -8.990503797697355e-006 1.725987764130457e-009 0.9999999999595854 -8.990503797697355e-006 1.725987764130457e-009 0.9999999999595854 -8.990503797697355e-006 1.725987764130457e-009 0.9999999999595854 -8.990503797697355e-006 1.725987764130457e-009 0.9999999999595854 -8.990503797697355e-006 1.726250358505938e-005 8.970839363428987e-006 0.999999999810765 1.726250358505938e-005 8.970839363428987e-006 0.999999999810765 1.726250358505938e-005 8.970839363428987e-006 0.999999999810765 1.726250358505938e-005 8.970839363428987e-006 0.999999999810765 -1.726250358505938e-005 -8.970839363428987e-006 -0.999999999810765 -1.726250358505938e-005 -8.970839363428987e-006 -0.999999999810765 -1.726250358505938e-005 -8.970839363428987e-006 -0.999999999810765 -1.726250358505938e-005 -8.970839363428987e-006 -0.999999999810765 1.150837249832251e-012 -0.9999999999591418 9.039729434719052e-006 1.150837249832251e-012 -0.9999999999591418 9.039729434719052e-006 1.150837249832251e-012 -0.9999999999591418 9.039729434719052e-006 1.150837249832251e-012 -0.9999999999591418 9.039729434719052e-006 1.150837249832251e-012 -0.9999999999591418 9.039729434719052e-006 -1.150837249832251e-012 0.9999999999591418 -9.039729434719052e-006 -1.150837249832251e-012 0.9999999999591418 -9.039729434719052e-006 -1.150837249832251e-012 0.9999999999591418 -9.039729434719052e-006 -1.150837249832251e-012 0.9999999999591418 -9.039729434719052e-006 -1.150837249832251e-012 0.9999999999591418 -9.039729434719052e-006 1.804752578064531e-005 8.133170980468729e-006 0.9999999998040693 1.804752578064531e-005 8.133170980468729e-006 0.9999999998040693 1.804752578064531e-005 8.133170980468729e-006 0.9999999998040693 1.804752578064531e-005 8.133170980468729e-006 0.9999999998040693 1.804752578064531e-005 8.133170980468729e-006 0.9999999998040693 -1.804752578064531e-005 -8.133170980468729e-006 -0.9999999998040693 -1.804752578064531e-005 -8.133170980468729e-006 -0.9999999998040693 -1.804752578064531e-005 -8.133170980468729e-006 -0.9999999998040693 -1.804752578064531e-005 -8.133170980468729e-006 -0.9999999998040693 -1.804752578064531e-005 -8.133170980468729e-006 -0.9999999998040693 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 -3.575282107750629e-009 -0.9999999999598549 8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 3.575282107750629e-009 0.9999999999598549 -8.960485941934519e-006 1.726250358374275e-005 8.970839365598265e-006 0.999999999810765 1.726250358374275e-005 8.970839365598265e-006 0.999999999810765 1.726250358374275e-005 8.970839365598265e-006 0.999999999810765 1.726250358374275e-005 8.970839365598265e-006 0.999999999810765 1.726250358374275e-005 8.970839365598265e-006 0.999999999810765 -1.726250358374275e-005 -8.970839365598265e-006 -0.999999999810765 -1.726250358374275e-005 -8.970839365598265e-006 -0.999999999810765 -1.726250358374275e-005 -8.970839365598265e-006 -0.999999999810765 -1.726250358374275e-005 -8.970839365598265e-006 -0.999999999810765 -1.726250358374275e-005 -8.970839365598265e-006 -0.999999999810765 -1.726004999478209e-009 -0.9999999999596312 8.985420782917519e-006 -1.726004999478209e-009 -0.9999999999596312 8.985420782917519e-006 -1.726004999478209e-009 -0.9999999999596312 8.985420782917519e-006 -1.726004999478209e-009 -0.9999999999596312 8.985420782917519e-006 -1.726004999478209e-009 -0.9999999999596312 8.985420782917519e-006 1.726004999478209e-009 0.9999999999596312 -8.985420782917519e-006 1.726004999478209e-009 0.9999999999596312 -8.985420782917519e-006 1.726004999478209e-009 0.9999999999596312 -8.985420782917519e-006 1.726004999478209e-009 0.9999999999596312 -8.985420782917519e-006 1.726004999478209e-009 0.9999999999596312 -8.985420782917519e-006 1.726250358506297e-005 8.970839366574217e-006 0.999999999810765 1.726250358506297e-005 8.970839366574217e-006 0.999999999810765 1.726250358506297e-005 8.970839366574217e-006 0.999999999810765 1.726250358506297e-005 8.970839366574217e-006 0.999999999810765 -1.726250358506297e-005 -8.970839366574217e-006 -0.999999999810765 -1.726250358506297e-005 -8.970839366574217e-006 -0.999999999810765 -1.726250358506297e-005 -8.970839366574217e-006 -0.999999999810765 -1.726250358506297e-005 -8.970839366574217e-006 -0.999999999810765 -1.725961998388677e-009 -0.9999999999595856 8.990503868342639e-006 -1.725961998388677e-009 -0.9999999999595856 8.990503868342639e-006 -1.725961998388677e-009 -0.9999999999595856 8.990503868342639e-006 -1.725961998388677e-009 -0.9999999999595856 8.990503868342639e-006 -1.725961998388677e-009 -0.9999999999595856 8.990503868342639e-006 1.725961998388677e-009 0.9999999999595856 -8.990503868342639e-006 1.725961998388677e-009 0.9999999999595856 -8.990503868342639e-006 1.725961998388677e-009 0.9999999999595856 -8.990503868342639e-006 1.725961998388677e-009 0.9999999999595856 -8.990503868342639e-006 1.725961998388677e-009 0.9999999999595856 -8.990503868342639e-006 1.726250358504966e-005 8.970839358666419e-006 0.999999999810765 1.726250358504966e-005 8.970839358666419e-006 0.999999999810765 1.726250358504966e-005 8.970839358666419e-006 0.999999999810765 1.726250358504966e-005 8.970839358666419e-006 0.999999999810765 -1.726250358504966e-005 -8.970839358666419e-006 -0.999999999810765 -1.726250358504966e-005 -8.970839358666419e-006 -0.999999999810765 -1.726250358504966e-005 -8.970839358666419e-006 -0.999999999810765 -1.726250358504966e-005 -8.970839358666419e-006 -0.999999999810765 -1.725981120711787e-009 -0.9999999999595854 8.990503192188414e-006 -1.725981120711787e-009 -0.9999999999595854 8.990503192188414e-006 -1.725981120711787e-009 -0.9999999999595854 8.990503192188414e-006 -1.725981120711787e-009 -0.9999999999595854 8.990503192188414e-006 -1.725981120711787e-009 -0.9999999999595854 8.990503192188414e-006 1.725981120711787e-009 0.9999999999595854 -8.990503192188414e-006 1.725981120711787e-009 0.9999999999595854 -8.990503192188414e-006 1.725981120711787e-009 0.9999999999595854 -8.990503192188414e-006 1.725981120711787e-009 0.9999999999595854 -8.990503192188414e-006 1.725981120711787e-009 0.9999999999595854 -8.990503192188414e-006 1.726250358504725e-005 8.970839396527735e-006 0.999999999810765 1.726250358504725e-005 8.970839396527735e-006 0.999999999810765 1.726250358504725e-005 8.970839396527735e-006 0.999999999810765 1.726250358504725e-005 8.970839396527735e-006 0.999999999810765 -1.726250358504725e-005 -8.970839396527735e-006 -0.999999999810765 -1.726250358504725e-005 -8.970839396527735e-006 -0.999999999810765 -1.726250358504725e-005 -8.970839396527735e-006 -0.999999999810765 -1.726250358504725e-005 -8.970839396527735e-006 -0.999999999810765 -1.72595895667605e-009 -0.9999999999595854 8.990503316587983e-006 -1.72595895667605e-009 -0.9999999999595854 8.990503316587983e-006 -1.72595895667605e-009 -0.9999999999595854 8.990503316587983e-006 -1.72595895667605e-009 -0.9999999999595854 8.990503316587983e-006 -1.72595895667605e-009 -0.9999999999595854 8.990503316587983e-006 1.72595895667605e-009 0.9999999999595854 -8.990503316587983e-006 1.72595895667605e-009 0.9999999999595854 -8.990503316587983e-006 1.72595895667605e-009 0.9999999999595854 -8.990503316587983e-006 1.72595895667605e-009 0.9999999999595854 -8.990503316587983e-006 1.72595895667605e-009 0.9999999999595854 -8.990503316587983e-006 1.726250358504931e-005 8.970839372078189e-006 0.999999999810765 1.726250358504931e-005 8.970839372078189e-006 0.999999999810765 1.726250358504931e-005 8.970839372078189e-006 0.999999999810765 1.726250358504931e-005 8.970839372078189e-006 0.999999999810765 -1.726250358504931e-005 -8.970839372078189e-006 -0.999999999810765 -1.726250358504931e-005 -8.970839372078189e-006 -0.999999999810765 -1.726250358504931e-005 -8.970839372078189e-006 -0.999999999810765 -1.726250358504931e-005 -8.970839372078189e-006 -0.999999999810765 -1.72597907182599e-009 -0.9999999999595854 8.990503608481576e-006 -1.72597907182599e-009 -0.9999999999595854 8.990503608481576e-006 -1.72597907182599e-009 -0.9999999999595854 8.990503608481576e-006 -1.72597907182599e-009 -0.9999999999595854 8.990503608481576e-006 -1.72597907182599e-009 -0.9999999999595854 8.990503608481576e-006 1.72597907182599e-009 0.9999999999595854 -8.990503608481576e-006 1.72597907182599e-009 0.9999999999595854 -8.990503608481576e-006 1.72597907182599e-009 0.9999999999595854 -8.990503608481576e-006 1.72597907182599e-009 0.9999999999595854 -8.990503608481576e-006 1.72597907182599e-009 0.9999999999595854 -8.990503608481576e-006 1.726250358506079e-005 8.970839370496718e-006 0.999999999810765 1.726250358506079e-005 8.970839370496718e-006 0.999999999810765 1.726250358506079e-005 8.970839370496718e-006 0.999999999810765 1.726250358506079e-005 8.970839370496718e-006 0.999999999810765 -1.726250358506079e-005 -8.970839370496718e-006 -0.999999999810765 -1.726250358506079e-005 -8.970839370496718e-006 -0.999999999810765 -1.726250358506079e-005 -8.970839370496718e-006 -0.999999999810765 -1.726250358506079e-005 -8.970839370496718e-006 -0.999999999810765 -1.72597275833281e-009 -0.9999999999595854 8.990503028876744e-006 -1.72597275833281e-009 -0.9999999999595854 8.990503028876744e-006 -1.72597275833281e-009 -0.9999999999595854 8.990503028876744e-006 -1.72597275833281e-009 -0.9999999999595854 8.990503028876744e-006 -1.72597275833281e-009 -0.9999999999595854 8.990503028876744e-006 1.72597275833281e-009 0.9999999999595854 -8.990503028876744e-006 1.72597275833281e-009 0.9999999999595854 -8.990503028876744e-006 1.72597275833281e-009 0.9999999999595854 -8.990503028876744e-006 1.72597275833281e-009 0.9999999999595854 -8.990503028876744e-006 1.72597275833281e-009 0.9999999999595854 -8.990503028876744e-006 1.726250358506529e-005 8.970839353180464e-006 0.999999999810765 1.726250358506529e-005 8.970839353180464e-006 0.999999999810765 1.726250358506529e-005 8.970839353180464e-006 0.999999999810765 1.726250358506529e-005 8.970839353180464e-006 0.999999999810765 -1.726250358506529e-005 -8.970839353180464e-006 -0.999999999810765 -1.726250358506529e-005 -8.970839353180464e-006 -0.999999999810765 -1.726250358506529e-005 -8.970839353180464e-006 -0.999999999810765 -1.726250358506529e-005 -8.970839353180464e-006 -0.999999999810765 -1.725964934936938e-009 -0.9999999999595856 8.990504371792819e-006 -1.725964934936938e-009 -0.9999999999595856 8.990504371792819e-006 -1.725964934936938e-009 -0.9999999999595856 8.990504371792819e-006 -1.725964934936938e-009 -0.9999999999595856 8.990504371792819e-006 -1.725964934936938e-009 -0.9999999999595856 8.990504371792819e-006 1.725964934936938e-009 0.9999999999595856 -8.990504371792819e-006 1.725964934936938e-009 0.9999999999595856 -8.990504371792819e-006 1.725964934936938e-009 0.9999999999595856 -8.990504371792819e-006 1.725964934936938e-009 0.9999999999595856 -8.990504371792819e-006 1.725964934936938e-009 0.9999999999595856 -8.990504371792819e-006 1.726250358505903e-005 8.970839357852563e-006 0.999999999810765 1.726250358505903e-005 8.970839357852563e-006 0.999999999810765 1.726250358505903e-005 8.970839357852563e-006 0.999999999810765 1.726250358505903e-005 8.970839357852563e-006 0.999999999810765 -1.726250358505903e-005 -8.970839357852563e-006 -0.999999999810765 -1.726250358505903e-005 -8.970839357852563e-006 -0.999999999810765 -1.726250358505903e-005 -8.970839357852563e-006 -0.999999999810765 -1.726250358505903e-005 -8.970839357852563e-006 -0.999999999810765 -1.725985810800676e-009 -0.9999999999595854 8.990504341525355e-006 -1.725985810800676e-009 -0.9999999999595854 8.990504341525355e-006 -1.725985810800676e-009 -0.9999999999595854 8.990504341525355e-006 -1.725985810800676e-009 -0.9999999999595854 8.990504341525355e-006 -1.725985810800676e-009 -0.9999999999595854 8.990504341525355e-006 1.725985810800676e-009 0.9999999999595854 -8.990504341525355e-006 1.725985810800676e-009 0.9999999999595854 -8.990504341525355e-006 1.725985810800676e-009 0.9999999999595854 -8.990504341525355e-006 1.725985810800676e-009 0.9999999999595854 -8.990504341525355e-006 1.725985810800676e-009 0.9999999999595854 -8.990504341525355e-006 1.726250358505639e-005 8.970839369713307e-006 0.999999999810765 1.726250358505639e-005 8.970839369713307e-006 0.999999999810765 1.726250358505639e-005 8.970839369713307e-006 0.999999999810765 1.726250358505639e-005 8.970839369713307e-006 0.999999999810765 -1.726250358505639e-005 -8.970839369713307e-006 -0.999999999810765 -1.726250358505639e-005 -8.970839369713307e-006 -0.999999999810765 -1.726250358505639e-005 -8.970839369713307e-006 -0.999999999810765 -1.726250358505639e-005 -8.970839369713307e-006 -0.999999999810765 -1.725971656619349e-009 -0.9999999999595856 8.990504331939841e-006 -1.725971656619349e-009 -0.9999999999595856 8.990504331939841e-006 -1.725971656619349e-009 -0.9999999999595856 8.990504331939841e-006 -1.725971656619349e-009 -0.9999999999595856 8.990504331939841e-006 -1.725971656619349e-009 -0.9999999999595856 8.990504331939841e-006 1.725971656619349e-009 0.9999999999595856 -8.990504331939841e-006 1.725971656619349e-009 0.9999999999595856 -8.990504331939841e-006 1.725971656619349e-009 0.9999999999595856 -8.990504331939841e-006 1.725971656619349e-009 0.9999999999595856 -8.990504331939841e-006 1.725971656619349e-009 0.9999999999595856 -8.990504331939841e-006 1.726250358505629e-005 8.970839358690732e-006 0.999999999810765 1.726250358505629e-005 8.970839358690732e-006 0.999999999810765 1.726250358505629e-005 8.970839358690732e-006 0.999999999810765 1.726250358505629e-005 8.970839358690732e-006 0.999999999810765 -1.726250358505629e-005 -8.970839358690732e-006 -0.999999999810765 -1.726250358505629e-005 -8.970839358690732e-006 -0.999999999810765 -1.726250358505629e-005 -8.970839358690732e-006 -0.999999999810765 -1.726250358505629e-005 -8.970839358690732e-006 -0.999999999810765 -1.725968681625796e-009 -0.9999999999595854 8.99050506099777e-006 -1.725968681625796e-009 -0.9999999999595854 8.99050506099777e-006 -1.725968681625796e-009 -0.9999999999595854 8.99050506099777e-006 -1.725968681625796e-009 -0.9999999999595854 8.99050506099777e-006 -1.725968681625796e-009 -0.9999999999595854 8.99050506099777e-006 1.725968681625796e-009 0.9999999999595854 -8.99050506099777e-006 1.725968681625796e-009 0.9999999999595854 -8.99050506099777e-006 1.725968681625796e-009 0.9999999999595854 -8.99050506099777e-006 1.725968681625796e-009 0.9999999999595854 -8.99050506099777e-006 1.725968681625796e-009 0.9999999999595854 -8.99050506099777e-006 1.726250358505805e-005 8.970839381534567e-006 0.999999999810765 1.726250358505805e-005 8.970839381534567e-006 0.999999999810765 1.726250358505805e-005 8.970839381534567e-006 0.999999999810765 1.726250358505805e-005 8.970839381534567e-006 0.999999999810765 -1.726250358505805e-005 -8.970839381534567e-006 -0.999999999810765 -1.726250358505805e-005 -8.970839381534567e-006 -0.999999999810765 -1.726250358505805e-005 -8.970839381534567e-006 -0.999999999810765 -1.726250358505805e-005 -8.970839381534567e-006 -0.999999999810765 -1.725944462776718e-009 -0.9999999999595856 8.990502446358643e-006 -1.725944462776718e-009 -0.9999999999595856 8.990502446358643e-006 -1.725944462776718e-009 -0.9999999999595856 8.990502446358643e-006 -1.725944462776718e-009 -0.9999999999595856 8.990502446358643e-006 -1.725944462776718e-009 -0.9999999999595856 8.990502446358643e-006 1.725944462776718e-009 0.9999999999595856 -8.990502446358643e-006 1.725944462776718e-009 0.9999999999595856 -8.990502446358643e-006 1.725944462776718e-009 0.9999999999595856 -8.990502446358643e-006 1.725944462776718e-009 0.9999999999595856 -8.990502446358643e-006 1.725944462776718e-009 0.9999999999595856 -8.990502446358643e-006 1.72625035850452e-005 8.971674368422169e-006 0.9999999998107575 1.72625035850452e-005 8.971674368422169e-006 0.9999999998107575 1.72625035850452e-005 8.971674368422169e-006 0.9999999998107575 1.72625035850452e-005 8.971674368422169e-006 0.9999999998107575 -1.72625035850452e-005 -8.971674368422169e-006 -0.9999999998107575 -1.72625035850452e-005 -8.971674368422169e-006 -0.9999999998107575 -1.72625035850452e-005 -8.971674368422169e-006 -0.9999999998107575 -1.72625035850452e-005 -8.971674368422169e-006 -0.9999999998107575 2.464456939389925e-010 -0.9999999999597729 8.969648427962349e-006 2.464456939389925e-010 -0.9999999999597729 8.969648427962349e-006 2.464456939389925e-010 -0.9999999999597729 8.969648427962349e-006 2.464456939389925e-010 -0.9999999999597729 8.969648427962349e-006 2.464456939389925e-010 -0.9999999999597729 8.969648427962349e-006 -2.464456939389925e-010 0.9999999999597729 -8.969648427962349e-006 -2.464456939389925e-010 0.9999999999597729 -8.969648427962349e-006 -2.464456939389925e-010 0.9999999999597729 -8.969648427962349e-006 -2.464456939389925e-010 0.9999999999597729 -8.969648427962349e-006 -2.464456939389925e-010 0.9999999999597729 -8.969648427962349e-006 1.726250358504686e-005 8.972201978244476e-006 0.9999999998107528 1.726250358504686e-005 8.972201978244476e-006 0.9999999998107528 1.726250358504686e-005 8.972201978244476e-006 0.9999999998107528 1.726250358504686e-005 8.972201978244476e-006 0.9999999998107528 -1.726250358504686e-005 -8.972201978244476e-006 -0.9999999998107528 -1.726250358504686e-005 -8.972201978244476e-006 -0.9999999998107528 -1.726250358504686e-005 -8.972201978244476e-006 -0.9999999998107528 -1.726250358504686e-005 -8.972201978244476e-006 -0.9999999998107528 2.464703079328471e-010 -0.999999999959778 8.969083299690713e-006 2.464703079328471e-010 -0.999999999959778 8.969083299690713e-006 2.464703079328471e-010 -0.999999999959778 8.969083299690713e-006 2.464703079328471e-010 -0.999999999959778 8.969083299690713e-006 2.464703079328471e-010 -0.999999999959778 8.969083299690713e-006 -2.464703079328471e-010 0.999999999959778 -8.969083299690713e-006 -2.464703079328471e-010 0.999999999959778 -8.969083299690713e-006 -2.464703079328471e-010 0.999999999959778 -8.969083299690713e-006 -2.464703079328471e-010 0.999999999959778 -8.969083299690713e-006 -2.464703079328471e-010 0.999999999959778 -8.969083299690713e-006 1.726250358514213e-005 8.972201977084217e-006 0.9999999998107528 1.726250358514213e-005 8.972201977084217e-006 0.9999999998107528 1.726250358514213e-005 8.972201977084217e-006 0.9999999998107528 1.726250358514213e-005 8.972201977084217e-006 0.9999999998107528 -1.726250358514213e-005 -8.972201977084217e-006 -0.9999999998107528 -1.726250358514213e-005 -8.972201977084217e-006 -0.9999999998107528 -1.726250358514213e-005 -8.972201977084217e-006 -0.9999999998107528 -1.726250358514213e-005 -8.972201977084217e-006 -0.9999999998107528 2.46459619031712e-010 -0.9999999999597751 8.969393854444635e-006 2.46459619031712e-010 -0.9999999999597751 8.969393854444635e-006 2.46459619031712e-010 -0.9999999999597751 8.969393854444635e-006 2.46459619031712e-010 -0.9999999999597751 8.969393854444635e-006 2.46459619031712e-010 -0.9999999999597751 8.969393854444635e-006 -2.46459619031712e-010 0.9999999999597751 -8.969393854444635e-006 -2.46459619031712e-010 0.9999999999597751 -8.969393854444635e-006 -2.46459619031712e-010 0.9999999999597751 -8.969393854444635e-006 -2.46459619031712e-010 0.9999999999597751 -8.969393854444635e-006 -2.46459619031712e-010 0.9999999999597751 -8.969393854444635e-006 1.726250358514192e-005 8.972201968799266e-006 0.9999999998107528 1.726250358514192e-005 8.972201968799266e-006 0.9999999998107528 1.726250358514192e-005 8.972201968799266e-006 0.9999999998107528 1.726250358514192e-005 8.972201968799266e-006 0.9999999998107528 -1.726250358514192e-005 -8.972201968799266e-006 -0.9999999998107528 -1.726250358514192e-005 -8.972201968799266e-006 -0.9999999998107528 -1.726250358514192e-005 -8.972201968799266e-006 -0.9999999998107528 -1.726250358514192e-005 -8.972201968799266e-006 -0.9999999998107528 2.464625981408499e-010 -0.9999999999597751 8.969393701950967e-006 2.464625981408499e-010 -0.9999999999597751 8.969393701950967e-006 2.464625981408499e-010 -0.9999999999597751 8.969393701950967e-006 2.464625981408499e-010 -0.9999999999597751 8.969393701950967e-006 2.464625981408499e-010 -0.9999999999597751 8.969393701950967e-006 -2.464625981408499e-010 0.9999999999597751 -8.969393701950967e-006 -2.464625981408499e-010 0.9999999999597751 -8.969393701950967e-006 -2.464625981408499e-010 0.9999999999597751 -8.969393701950967e-006 -2.464625981408499e-010 0.9999999999597751 -8.969393701950967e-006 -2.464625981408499e-010 0.9999999999597751 -8.969393701950967e-006 1.726250358514175e-005 8.972201980237552e-006 0.9999999998107528 1.726250358514175e-005 8.972201980237552e-006 0.9999999998107528 1.726250358514175e-005 8.972201980237552e-006 0.9999999998107528 1.726250358514175e-005 8.972201980237552e-006 0.9999999998107528 -1.726250358514175e-005 -8.972201980237552e-006 -0.9999999998107528 -1.726250358514175e-005 -8.972201980237552e-006 -0.9999999998107528 -1.726250358514175e-005 -8.972201980237552e-006 -0.9999999998107528 -1.726250358514175e-005 -8.972201980237552e-006 -0.9999999998107528 2.464282623066445e-010 -0.9999999999597754 8.969350884824909e-006 2.464282623066445e-010 -0.9999999999597754 8.969350884824909e-006 2.464282623066445e-010 -0.9999999999597754 8.969350884824909e-006 2.464282623066445e-010 -0.9999999999597754 8.969350884824909e-006 2.464282623066445e-010 -0.9999999999597754 8.969350884824909e-006 -2.464282623066445e-010 0.9999999999597754 -8.969350884824909e-006 -2.464282623066445e-010 0.9999999999597754 -8.969350884824909e-006 -2.464282623066445e-010 0.9999999999597754 -8.969350884824909e-006 -2.464282623066445e-010 0.9999999999597754 -8.969350884824909e-006 -2.464282623066445e-010 0.9999999999597754 -8.969350884824909e-006 1.726250358514105e-005 8.97220196958288e-006 0.9999999998107528 1.726250358514105e-005 8.97220196958288e-006 0.9999999998107528 1.726250358514105e-005 8.97220196958288e-006 0.9999999998107528 1.726250358514105e-005 8.97220196958288e-006 0.9999999998107528 -1.726250358514105e-005 -8.97220196958288e-006 -0.9999999998107528 -1.726250358514105e-005 -8.97220196958288e-006 -0.9999999998107528 -1.726250358514105e-005 -8.97220196958288e-006 -0.9999999998107528 -1.726250358514105e-005 -8.97220196958288e-006 -0.9999999998107528 2.464259078493789e-010 -0.9999999999597746 8.969434920215588e-006 2.464259078493789e-010 -0.9999999999597746 8.969434920215588e-006 2.464259078493789e-010 -0.9999999999597746 8.969434920215588e-006 2.464259078493789e-010 -0.9999999999597746 8.969434920215588e-006 2.464259078493789e-010 -0.9999999999597746 8.969434920215588e-006 -2.464259078493789e-010 0.9999999999597746 -8.969434920215588e-006 -2.464259078493789e-010 0.9999999999597746 -8.969434920215588e-006 -2.464259078493789e-010 0.9999999999597746 -8.969434920215588e-006 -2.464259078493789e-010 0.9999999999597746 -8.969434920215588e-006 -2.464259078493789e-010 0.9999999999597746 -8.969434920215588e-006 1.726250358514227e-005 8.972201969971912e-006 0.9999999998107528 1.726250358514227e-005 8.972201969971912e-006 0.9999999998107528 1.726250358514227e-005 8.972201969971912e-006 0.9999999998107528 1.726250358514227e-005 8.972201969971912e-006 0.9999999998107528 -1.726250358514227e-005 -8.972201969971912e-006 -0.9999999998107528 -1.726250358514227e-005 -8.972201969971912e-006 -0.9999999998107528 -1.726250358514227e-005 -8.972201969971912e-006 -0.9999999998107528 -1.726250358514227e-005 -8.972201969971912e-006 -0.9999999998107528 2.464537909706929e-010 -0.9999999999597751 8.96939385947424e-006 2.464537909706929e-010 -0.9999999999597751 8.96939385947424e-006 2.464537909706929e-010 -0.9999999999597751 8.96939385947424e-006 2.464537909706929e-010 -0.9999999999597751 8.96939385947424e-006 2.464537909706929e-010 -0.9999999999597751 8.96939385947424e-006 -2.464537909706929e-010 0.9999999999597751 -8.96939385947424e-006 -2.464537909706929e-010 0.9999999999597751 -8.96939385947424e-006 -2.464537909706929e-010 0.9999999999597751 -8.96939385947424e-006 -2.464537909706929e-010 0.9999999999597751 -8.96939385947424e-006 -2.464537909706929e-010 0.9999999999597751 -8.96939385947424e-006 1.726250358512018e-005 8.972201971240368e-006 0.9999999998107528 1.726250358512018e-005 8.972201971240368e-006 0.9999999998107528 1.726250358512018e-005 8.972201971240368e-006 0.9999999998107528 1.726250358512018e-005 8.972201971240368e-006 0.9999999998107528 -1.726250358512018e-005 -8.972201971240368e-006 -0.9999999998107528 -1.726250358512018e-005 -8.972201971240368e-006 -0.9999999998107528 -1.726250358512018e-005 -8.972201971240368e-006 -0.9999999998107528 -1.726250358512018e-005 -8.972201971240368e-006 -0.9999999998107528 2.464214845433417e-010 -0.9999999999597751 8.969394783729552e-006 2.464214845433417e-010 -0.9999999999597751 8.969394783729552e-006 2.464214845433417e-010 -0.9999999999597751 8.969394783729552e-006 2.464214845433417e-010 -0.9999999999597751 8.969394783729552e-006 2.464214845433417e-010 -0.9999999999597751 8.969394783729552e-006 -2.464214845433417e-010 0.9999999999597751 -8.969394783729552e-006 -2.464214845433417e-010 0.9999999999597751 -8.969394783729552e-006 -2.464214845433417e-010 0.9999999999597751 -8.969394783729552e-006 -2.464214845433417e-010 0.9999999999597751 -8.969394783729552e-006 -2.464214845433417e-010 0.9999999999597751 -8.969394783729552e-006 1.726250358513736e-005 8.972201970975585e-006 0.9999999998107528 1.726250358513736e-005 8.972201970975585e-006 0.9999999998107528 1.726250358513736e-005 8.972201970975585e-006 0.9999999998107528 1.726250358513736e-005 8.972201970975585e-006 0.9999999998107528 -1.726250358513736e-005 -8.972201970975585e-006 -0.9999999998107528 -1.726250358513736e-005 -8.972201970975585e-006 -0.9999999998107528 -1.726250358513736e-005 -8.972201970975585e-006 -0.9999999998107528 -1.726250358513736e-005 -8.972201970975585e-006 -0.9999999998107528 2.464620023401496e-010 -0.9999999999597752 8.969393824172789e-006 2.464620023401496e-010 -0.9999999999597752 8.969393824172789e-006 2.464620023401496e-010 -0.9999999999597752 8.969393824172789e-006 2.464620023401496e-010 -0.9999999999597752 8.969393824172789e-006 2.464620023401496e-010 -0.9999999999597752 8.969393824172789e-006 -2.464620023401496e-010 0.9999999999597752 -8.969393824172789e-006 -2.464620023401496e-010 0.9999999999597752 -8.969393824172789e-006 -2.464620023401496e-010 0.9999999999597752 -8.969393824172789e-006 -2.464620023401496e-010 0.9999999999597752 -8.969393824172789e-006 -2.464620023401496e-010 0.9999999999597752 -8.969393824172789e-006 1.726250358512252e-005 8.972201969089473e-006 0.9999999998107528 1.726250358512252e-005 8.972201969089473e-006 0.9999999998107528 1.726250358512252e-005 8.972201969089473e-006 0.9999999998107528 1.726250358512252e-005 8.972201969089473e-006 0.9999999998107528 -1.726250358512252e-005 -8.972201969089473e-006 -0.9999999998107528 -1.726250358512252e-005 -8.972201969089473e-006 -0.9999999998107528 -1.726250358512252e-005 -8.972201969089473e-006 -0.9999999998107528 -1.726250358512252e-005 -8.972201969089473e-006 -0.9999999998107528 2.464479636346661e-010 -0.9999999999597751 8.969393870482124e-006 2.464479636346661e-010 -0.9999999999597751 8.969393870482124e-006 2.464479636346661e-010 -0.9999999999597751 8.969393870482124e-006 2.464479636346661e-010 -0.9999999999597751 8.969393870482124e-006 2.464479636346661e-010 -0.9999999999597751 8.969393870482124e-006 -2.464479636346661e-010 0.9999999999597751 -8.969393870482124e-006 -2.464479636346661e-010 0.9999999999597751 -8.969393870482124e-006 -2.464479636346661e-010 0.9999999999597751 -8.969393870482124e-006 -2.464479636346661e-010 0.9999999999597751 -8.969393870482124e-006 -2.464479636346661e-010 0.9999999999597751 -8.969393870482124e-006 1.726250358512083e-005 8.972201971064869e-006 0.9999999998107528 1.726250358512083e-005 8.972201971064869e-006 0.9999999998107528 1.726250358512083e-005 8.972201971064869e-006 0.9999999998107528 1.726250358512083e-005 8.972201971064869e-006 0.9999999998107528 -1.726250358512083e-005 -8.972201971064869e-006 -0.9999999998107528 -1.726250358512083e-005 -8.972201971064869e-006 -0.9999999998107528 -1.726250358512083e-005 -8.972201971064869e-006 -0.9999999998107528 -1.726250358512083e-005 -8.972201971064869e-006 -0.9999999998107528 2.464688429453018e-010 -0.9999999999597751 8.96939530240566e-006 2.464688429453018e-010 -0.9999999999597751 8.96939530240566e-006 2.464688429453018e-010 -0.9999999999597751 8.96939530240566e-006 2.464688429453018e-010 -0.9999999999597751 8.96939530240566e-006 2.464688429453018e-010 -0.9999999999597751 8.96939530240566e-006 -2.464688429453018e-010 0.9999999999597751 -8.96939530240566e-006 -2.464688429453018e-010 0.9999999999597751 -8.96939530240566e-006 -2.464688429453018e-010 0.9999999999597751 -8.96939530240566e-006 -2.464688429453018e-010 0.9999999999597751 -8.96939530240566e-006 -2.464688429453018e-010 0.9999999999597751 -8.96939530240566e-006 1.726250358512679e-005 8.972201968950133e-006 0.9999999998107528 1.726250358512679e-005 8.972201968950133e-006 0.9999999998107528 1.726250358512679e-005 8.972201968950133e-006 0.9999999998107528 1.726250358512679e-005 8.972201968950133e-006 0.9999999998107528 -1.726250358512679e-005 -8.972201968950133e-006 -0.9999999998107528 -1.726250358512679e-005 -8.972201968950133e-006 -0.9999999998107528 -1.726250358512679e-005 -8.972201968950133e-006 -0.9999999998107528 -1.726250358512679e-005 -8.972201968950133e-006 -0.9999999998107528 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 9.485083497766213e-007 -0.9999999998099166 1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -9.485083497766213e-007 0.9999999998099166 -1.947478892296245e-005 -1.593098187365111e-005 -0.3420117125642387 0.9396956891542497 -1.593098187365111e-005 -0.3420117125642387 0.9396956891542497 -1.593098187365111e-005 -0.3420117125642387 0.9396956891542497 -1.593098187365111e-005 -0.3420117125642387 0.9396956891542497 1.593098187365111e-005 0.3420117125642387 -0.9396956891542497 1.593098187365111e-005 0.3420117125642387 -0.9396956891542497 1.593098187365111e-005 0.3420117125642387 -0.9396956891542497 1.593098187365111e-005 0.3420117125642387 -0.9396956891542497 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 0.9999999998556725 -1.93805080909594e-008 1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 -0.9999999998556725 1.93805080909594e-008 -1.698985284915664e-005 0.9999999998509969 -6.747884073870952e-009 -1.726286943319848e-005 0.9999999998509969 -6.747884073870952e-009 -1.726286943319848e-005 0.9999999998509969 -6.747884073870952e-009 -1.726286943319848e-005 0.9999999998509969 -6.747884073870952e-009 -1.726286943319848e-005 -0.9999999998509969 6.747884073870952e-009 1.726286943319848e-005 -0.9999999998509969 6.747884073870952e-009 1.726286943319848e-005 -0.9999999998509969 6.747884073870952e-009 1.726286943319848e-005 -0.9999999998509969 6.747884073870952e-009 1.726286943319848e-005 -0.9999999998509933 6.74788601676116e-009 1.726306804625563e-005 -0.9999999998509933 6.74788601676116e-009 1.726306804625563e-005 -0.9999999998509933 6.74788601676116e-009 1.726306804625563e-005 -0.9999999998509933 6.74788601676116e-009 1.726306804625563e-005 0.9999999998509933 -6.74788601676116e-009 -1.726306804625563e-005 0.9999999998509933 -6.74788601676116e-009 -1.726306804625563e-005 0.9999999998509933 -6.74788601676116e-009 -1.726306804625563e-005 0.9999999998509933 -6.74788601676116e-009 -1.726306804625563e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 0.9999999998563117 -7.573041120030245e-010 1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 -0.9999999998563117 7.573041120030245e-010 -1.695219022681305e-005 0.9999999998562388 -5.888675717409531e-009 1.695648682850193e-005 0.9999999998562388 -5.888675717409531e-009 1.695648682850193e-005 0.9999999998562388 -5.888675717409531e-009 1.695648682850193e-005 0.9999999998562388 -5.888675717409531e-009 1.695648682850193e-005 -0.9999999998562388 5.888675717409531e-009 -1.695648682850193e-005 -0.9999999998562388 5.888675717409531e-009 -1.695648682850193e-005 -0.9999999998562388 5.888675717409531e-009 -1.695648682850193e-005 -0.9999999998562388 5.888675717409531e-009 -1.695648682850193e-005 -0.9999999998509929 6.74792165492024e-009 1.726309771268819e-005 -0.9999999998509929 6.74792165492024e-009 1.726309771268819e-005 -0.9999999998509929 6.74792165492024e-009 1.726309771268819e-005 -0.9999999998509929 6.74792165492024e-009 1.726309771268819e-005 0.9999999998509929 -6.74792165492024e-009 -1.726309771268819e-005 0.9999999998509929 -6.74792165492024e-009 -1.726309771268819e-005 0.9999999998509929 -6.74792165492024e-009 -1.726309771268819e-005 0.9999999998509929 -6.74792165492024e-009 -1.726309771268819e-005 -0.9999999998509934 6.747753900221231e-009 1.726306740497475e-005 -0.9999999998509934 6.747753900221231e-009 1.726306740497475e-005 -0.9999999998509934 6.747753900221231e-009 1.726306740497475e-005 -0.9999999998509934 6.747753900221231e-009 1.726306740497475e-005 0.9999999998509934 -6.747753900221231e-009 -1.726306740497475e-005 0.9999999998509934 -6.747753900221231e-009 -1.726306740497475e-005 0.9999999998509934 -6.747753900221231e-009 -1.726306740497475e-005 0.9999999998509934 -6.747753900221231e-009 -1.726306740497475e-005 -0.9999999998509928 6.747636383114061e-009 1.726309767014334e-005 -0.9999999998509928 6.747636383114061e-009 1.726309767014334e-005 -0.9999999998509928 6.747636383114061e-009 1.726309767014334e-005 -0.9999999998509928 6.747636383114061e-009 1.726309767014334e-005 0.9999999998509928 -6.747636383114061e-009 -1.726309767014334e-005 0.9999999998509928 -6.747636383114061e-009 -1.726309767014334e-005 0.9999999998509928 -6.747636383114061e-009 -1.726309767014334e-005 0.9999999998509928 -6.747636383114061e-009 -1.726309767014334e-005 -0.9999999998509936 6.748101177983341e-009 1.72630537979769e-005 -0.9999999998509936 6.748101177983341e-009 1.72630537979769e-005 -0.9999999998509936 6.748101177983341e-009 1.72630537979769e-005 -0.9999999998509936 6.748101177983341e-009 1.72630537979769e-005 0.9999999998509936 -6.748101177983341e-009 -1.72630537979769e-005 0.9999999998509936 -6.748101177983341e-009 -1.72630537979769e-005 0.9999999998509936 -6.748101177983341e-009 -1.72630537979769e-005 0.9999999998509936 -6.748101177983341e-009 -1.72630537979769e-005 -0.9999999998509942 6.747697667425052e-009 1.72630218206344e-005 -0.9999999998509942 6.747697667425052e-009 1.72630218206344e-005 -0.9999999998509942 6.747697667425052e-009 1.72630218206344e-005 -0.9999999998509942 6.747697667425052e-009 1.72630218206344e-005 0.9999999998509942 -6.747697667425052e-009 -1.72630218206344e-005 0.9999999998509942 -6.747697667425052e-009 -1.72630218206344e-005 0.9999999998509942 -6.747697667425052e-009 -1.72630218206344e-005 0.9999999998509942 -6.747697667425052e-009 -1.72630218206344e-005 -0.9999999998509939 6.747505432308333e-009 1.726303543108802e-005 -0.9999999998509939 6.747505432308333e-009 1.726303543108802e-005 -0.9999999998509939 6.747505432308333e-009 1.726303543108802e-005 -0.9999999998509939 6.747505432308333e-009 1.726303543108802e-005 0.9999999998509939 -6.747505432308333e-009 -1.726303543108802e-005 0.9999999998509939 -6.747505432308333e-009 -1.726303543108802e-005 0.9999999998509939 -6.747505432308333e-009 -1.726303543108802e-005 0.9999999998509939 -6.747505432308333e-009 -1.726303543108802e-005 -0.9999999998509938 6.747799585898704e-009 1.726304433221974e-005 -0.9999999998509938 6.747799585898704e-009 1.726304433221974e-005 -0.9999999998509938 6.747799585898704e-009 1.726304433221974e-005 -0.9999999998509938 6.747799585898704e-009 1.726304433221974e-005 0.9999999998509938 -6.747799585898704e-009 -1.726304433221974e-005 0.9999999998509938 -6.747799585898704e-009 -1.726304433221974e-005 0.9999999998509938 -6.747799585898704e-009 -1.726304433221974e-005 0.9999999998509938 -6.747799585898704e-009 -1.726304433221974e-005 -0.9999999998509929 6.747605796469737e-009 1.726308842192956e-005 -0.9999999998509929 6.747605796469737e-009 1.726308842192956e-005 -0.9999999998509929 6.747605796469737e-009 1.726308842192956e-005 -0.9999999998509929 6.747605796469737e-009 1.726308842192956e-005 0.9999999998509929 -6.747605796469737e-009 -1.726308842192956e-005 0.9999999998509929 -6.747605796469737e-009 -1.726308842192956e-005 0.9999999998509929 -6.747605796469737e-009 -1.726308842192956e-005 0.9999999998509929 -6.747605796469737e-009 -1.726308842192956e-005 -0.9999999998509932 6.747741077145292e-009 1.726307234352955e-005 -0.9999999998509932 6.747741077145292e-009 1.726307234352955e-005 -0.9999999998509932 6.747741077145292e-009 1.726307234352955e-005 -0.9999999998509932 6.747741077145292e-009 1.726307234352955e-005 0.9999999998509932 -6.747741077145292e-009 -1.726307234352955e-005 0.9999999998509932 -6.747741077145292e-009 -1.726307234352955e-005 0.9999999998509932 -6.747741077145292e-009 -1.726307234352955e-005 0.9999999998509932 -6.747741077145292e-009 -1.726307234352955e-005 3.965314657853132e-014 -0.9999999999597223 8.975278432058015e-006 3.965314657853132e-014 -0.9999999999597223 8.975278432058015e-006 3.965314657853132e-014 -0.9999999999597223 8.975278432058015e-006 -3.965314657853132e-014 0.9999999999597223 -8.975278432058015e-006 -3.965314657853132e-014 0.9999999999597223 -8.975278432058015e-006 -3.965314657853132e-014 0.9999999999597223 -8.975278432058015e-006 -0.9999983472753009 3.585268170723973e-008 0.001818088739753064 -0.9999983472753009 3.585268170723973e-008 0.001818088739753064 -0.9999983472753009 3.585268170723973e-008 0.001818088739753064 0.9999983472753009 -3.585268170723973e-008 -0.001818088739753064 0.9999983472753009 -3.585268170723973e-008 -0.001818088739753064 0.9999983472753009 -3.585268170723973e-008 -0.001818088739753064 0.9999999476103449 -5.122180537122829e-009 0.0003236963196724279 0.9999999476103449 -5.122180537122829e-009 0.0003236963196724279 0.9999999476103449 -5.122180537122829e-009 0.0003236963196724279 0.9999999476103449 -5.122180537122829e-009 0.0003236963196724279 -0.9999999476103449 5.122180537122829e-009 -0.0003236963196724279 -0.9999999476103449 5.122180537122829e-009 -0.0003236963196724279 -0.9999999476103449 5.122180537122829e-009 -0.0003236963196724279 -0.9999999476103449 5.122180537122829e-009 -0.0003236963196724279 -0.9999999998510034 6.748060543820882e-009 1.726248368100107e-005 -0.9999999998510034 6.748060543820882e-009 1.726248368100107e-005 -0.9999999998510034 6.748060543820882e-009 1.726248368100107e-005 -0.9999999998510034 6.748060543820882e-009 1.726248368100107e-005 0.9999999998510034 -6.748060543820882e-009 -1.726248368100107e-005 0.9999999998510034 -6.748060543820882e-009 -1.726248368100107e-005 0.9999999998510034 -6.748060543820882e-009 -1.726248368100107e-005 0.9999999998510034 -6.748060543820882e-009 -1.726248368100107e-005 0.9999999998510035 -6.748060599332033e-009 -1.726248356632988e-005 0.9999999998510035 -6.748060599332033e-009 -1.726248356632988e-005 0.9999999998510035 -6.748060599332033e-009 -1.726248356632988e-005 0.9999999998510035 -6.748060599332033e-009 -1.726248356632988e-005 -0.9999999998510035 6.748060599332033e-009 1.726248356632988e-005 -0.9999999998510035 6.748060599332033e-009 1.726248356632988e-005 -0.9999999998510035 6.748060599332033e-009 1.726248356632988e-005 -0.9999999998510035 6.748060599332033e-009 1.726248356632988e-005 -0.9999999998510043 6.747803582701856e-009 1.726242835685782e-005 -0.9999999998510043 6.747803582701856e-009 1.726242835685782e-005 -0.9999999998510043 6.747803582701856e-009 1.726242835685782e-005 -0.9999999998510043 6.747803582701856e-009 1.726242835685782e-005 0.9999999998510043 -6.747803582701856e-009 -1.726242835685782e-005 0.9999999998510043 -6.747803582701856e-009 -1.726242835685782e-005 0.9999999998510043 -6.747803582701856e-009 -1.726242835685782e-005 0.9999999998510043 -6.747803582701856e-009 -1.726242835685782e-005 0.9999999998510043 -6.747803582701857e-009 -1.726242824218714e-005 0.9999999998510043 -6.747803582701857e-009 -1.726242824218714e-005 0.9999999998510043 -6.747803582701857e-009 -1.726242824218714e-005 0.9999999998510043 -6.747803582701857e-009 -1.726242824218714e-005 -0.9999999998510043 6.747803582701857e-009 1.726242824218714e-005 -0.9999999998510043 6.747803582701857e-009 1.726242824218714e-005 -0.9999999998510043 6.747803582701857e-009 1.726242824218714e-005 -0.9999999998510043 6.747803582701857e-009 1.726242824218714e-005 -0.9999999998510044 6.747689562797231e-009 1.726241928588764e-005 -0.9999999998510044 6.747689562797231e-009 1.726241928588764e-005 -0.9999999998510044 6.747689562797231e-009 1.726241928588764e-005 -0.9999999998510044 6.747689562797231e-009 1.726241928588764e-005 0.9999999998510044 -6.747689562797231e-009 -1.726241928588764e-005 0.9999999998510044 -6.747689562797231e-009 -1.726241928588764e-005 0.9999999998510044 -6.747689562797231e-009 -1.726241928588764e-005 0.9999999998510044 -6.747689562797231e-009 -1.726241928588764e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426067e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426067e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426067e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426067e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426067e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426067e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426067e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426067e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426064e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426064e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426064e-005 0.9999999998510044 -6.748062542222351e-009 -1.726242577426064e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426064e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426064e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426064e-005 -0.9999999998510044 6.748062542222351e-009 1.726242577426064e-005 -0.9999999998510041 6.747809855461941e-009 1.726243971068499e-005 -0.9999999998510041 6.747809855461941e-009 1.726243971068499e-005 -0.9999999998510041 6.747809855461941e-009 1.726243971068499e-005 -0.9999999998510041 6.747809855461941e-009 1.726243971068499e-005 0.9999999998510041 -6.747809855461941e-009 -1.726243971068499e-005 0.9999999998510041 -6.747809855461941e-009 -1.726243971068499e-005 0.9999999998510041 -6.747809855461941e-009 -1.726243971068499e-005 0.9999999998510041 -6.747809855461941e-009 -1.726243971068499e-005 0.9999999998510041 -6.747809910973092e-009 -1.726243985402404e-005 0.9999999998510041 -6.747809910973092e-009 -1.726243985402404e-005 0.9999999998510041 -6.747809910973092e-009 -1.726243985402404e-005 0.9999999998510041 -6.747809910973092e-009 -1.726243985402404e-005 -0.9999999998510041 6.747809910973092e-009 1.726243985402404e-005 -0.9999999998510041 6.747809910973092e-009 1.726243985402404e-005 -0.9999999998510041 6.747809910973092e-009 1.726243985402404e-005 -0.9999999998510041 6.747809910973092e-009 1.726243985402404e-005 -0.999999999851004 6.747547176694311e-009 1.726244673851708e-005 -0.999999999851004 6.747547176694311e-009 1.726244673851708e-005 -0.999999999851004 6.747547176694311e-009 1.726244673851708e-005 -0.999999999851004 6.747547176694311e-009 1.726244673851708e-005 0.999999999851004 -6.747547176694311e-009 -1.726244673851708e-005 0.999999999851004 -6.747547176694311e-009 -1.726244673851708e-005 0.999999999851004 -6.747547176694311e-009 -1.726244673851708e-005 0.999999999851004 -6.747547176694311e-009 -1.726244673851708e-005 0.999999999851004 -6.747547176694311e-009 -1.726244668118191e-005 0.999999999851004 -6.747547176694311e-009 -1.726244668118191e-005 0.999999999851004 -6.747547176694311e-009 -1.726244668118191e-005 0.999999999851004 -6.747547176694311e-009 -1.726244668118191e-005 -0.999999999851004 6.747547176694311e-009 1.726244668118191e-005 -0.999999999851004 6.747547176694311e-009 1.726244668118191e-005 -0.999999999851004 6.747547176694311e-009 1.726244668118191e-005 -0.999999999851004 6.747547176694311e-009 1.726244668118191e-005 -0.999999999851004 6.748033454379095e-009 1.726245348042386e-005 -0.999999999851004 6.748033454379095e-009 1.726245348042386e-005 -0.999999999851004 6.748033454379095e-009 1.726245348042386e-005 -0.999999999851004 6.748033454379095e-009 1.726245348042386e-005 0.999999999851004 -6.748033454379095e-009 -1.726245348042386e-005 0.999999999851004 -6.748033454379095e-009 -1.726245348042386e-005 0.999999999851004 -6.748033454379095e-009 -1.726245348042386e-005 0.999999999851004 -6.748033454379095e-009 -1.726245348042386e-005 0.999999999851004 -6.748033454379095e-009 -1.726245345175599e-005 0.999999999851004 -6.748033454379095e-009 -1.726245345175599e-005 0.999999999851004 -6.748033454379095e-009 -1.726245345175599e-005 0.999999999851004 -6.748033454379095e-009 -1.726245345175599e-005 -0.999999999851004 6.748033454379095e-009 1.726245345175599e-005 -0.999999999851004 6.748033454379095e-009 1.726245345175599e-005 -0.999999999851004 6.748033454379095e-009 1.726245345175599e-005 -0.999999999851004 6.748033454379095e-009 1.726245345175599e-005 -0.999999999851003 6.747503877996321e-009 1.726251137000626e-005 -0.999999999851003 6.747503877996321e-009 1.726251137000626e-005 -0.999999999851003 6.747503877996321e-009 1.726251137000626e-005 -0.999999999851003 6.747503877996321e-009 1.726251137000626e-005 0.999999999851003 -6.747503877996321e-009 -1.726251137000626e-005 0.999999999851003 -6.747503877996321e-009 -1.726251137000626e-005 0.999999999851003 -6.747503877996321e-009 -1.726251137000626e-005 0.999999999851003 -6.747503877996321e-009 -1.726251137000626e-005 0.9999999998510029 -6.747503933507474e-009 -1.726251151334599e-005 0.9999999998510029 -6.747503933507474e-009 -1.726251151334599e-005 0.9999999998510029 -6.747503933507474e-009 -1.726251151334599e-005 0.9999999998510029 -6.747503933507474e-009 -1.726251151334599e-005 -0.9999999998510029 6.747503933507474e-009 1.726251151334599e-005 -0.9999999998510029 6.747503933507474e-009 1.726251151334599e-005 -0.9999999998510029 6.747503933507474e-009 1.726251151334599e-005 -0.9999999998510029 6.747503933507474e-009 1.726251151334599e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181842e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181842e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181842e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181842e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181842e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181842e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181842e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181842e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181841e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181841e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181841e-005 0.9999999998510049 -6.747933145728839e-009 -1.726240552181841e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181841e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181841e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181841e-005 -0.9999999998510049 6.747933145728839e-009 1.726240552181841e-005 -0.9999999998510036 6.747835557124947e-009 1.726247222972443e-005 -0.9999999998510036 6.747835557124947e-009 1.726247222972443e-005 -0.9999999998510036 6.747835557124947e-009 1.726247222972443e-005 -0.9999999998510036 6.747835557124947e-009 1.726247222972443e-005 0.9999999998510036 -6.747835557124947e-009 -1.726247222972443e-005 0.9999999998510036 -6.747835557124947e-009 -1.726247222972443e-005 0.9999999998510036 -6.747835557124947e-009 -1.726247222972443e-005 0.9999999998510036 -6.747835557124947e-009 -1.726247222972443e-005 -0.9999999998510026 6.747841774373863e-009 1.726252279979972e-005 -0.9999999998510026 6.747841774373863e-009 1.726252279979972e-005 -0.9999999998510026 6.747841774373863e-009 1.726252279979972e-005 -0.9999999998510026 6.747841774373863e-009 1.726252279979972e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252279979972e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252279979972e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252279979972e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252279979972e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252277113206e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252277113206e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252277113206e-005 0.9999999998510026 -6.747841774373863e-009 -1.726252277113206e-005 -0.9999999998510026 6.747841774373863e-009 1.726252277113206e-005 -0.9999999998510026 6.747841774373863e-009 1.726252277113206e-005 -0.9999999998510026 6.747841774373863e-009 1.726252277113206e-005 -0.9999999998510026 6.747841774373863e-009 1.726252277113206e-005 -0.9999999998510041 -6.132825092069947e-009 1.726243735044373e-005 -0.9999999998510041 -6.132825092069947e-009 1.726243735044373e-005 -0.9999999998510041 -6.132825092069947e-009 1.726243735044373e-005 -0.9999999998510041 -6.132825092069947e-009 1.726243735044373e-005 0.9999999998510041 6.132825092069947e-009 -1.726243735044373e-005 0.9999999998510041 6.132825092069947e-009 -1.726243735044373e-005 0.9999999998510041 6.132825092069947e-009 -1.726243735044373e-005 0.9999999998510041 6.132825092069947e-009 -1.726243735044373e-005 0.9999999998510041 6.132824925536493e-009 -1.726243760845345e-005 0.9999999998510041 6.132824925536493e-009 -1.726243760845345e-005 0.9999999998510041 6.132824925536493e-009 -1.726243760845345e-005 0.9999999998510041 6.132824925536493e-009 -1.726243760845345e-005 -0.9999999998510041 -6.132824925536493e-009 1.726243760845345e-005 -0.9999999998510041 -6.132824925536493e-009 1.726243760845345e-005 -0.9999999998510041 -6.132824925536493e-009 1.726243760845345e-005 -0.9999999998510041 -6.132824925536493e-009 1.726243760845345e-005 -0.999999999851004 6.747727921002717e-009 1.726245529794614e-005 -0.999999999851004 6.747727921002717e-009 1.726245529794614e-005 -0.999999999851004 6.747727921002717e-009 1.726245529794614e-005 -0.999999999851004 6.747727921002717e-009 1.726245529794614e-005 0.999999999851004 -6.747727921002717e-009 -1.726245529794614e-005 0.999999999851004 -6.747727921002717e-009 -1.726245529794614e-005 0.999999999851004 -6.747727921002717e-009 -1.726245529794614e-005 0.999999999851004 -6.747727921002717e-009 -1.726245529794614e-005 -0.9999999998510039 6.74777443934745e-009 1.726245105104819e-005 -0.9999999998510039 6.74777443934745e-009 1.726245105104819e-005 -0.9999999998510039 6.74777443934745e-009 1.726245105104819e-005 -0.9999999998510039 6.74777443934745e-009 1.726245105104819e-005 0.9999999998510039 -6.74777443934745e-009 -1.726245105104819e-005 0.9999999998510039 -6.74777443934745e-009 -1.726245105104819e-005 0.9999999998510039 -6.74777443934745e-009 -1.726245105104819e-005 0.9999999998510039 -6.74777443934745e-009 -1.726245105104819e-005 0.9999999998510041 -6.747772274412552e-009 -1.726245093637644e-005 0.9999999998510041 -6.747772274412552e-009 -1.726245093637644e-005 0.9999999998510041 -6.747772274412552e-009 -1.726245093637644e-005 0.9999999998510041 -6.747772274412552e-009 -1.726245093637644e-005 -0.9999999998510041 6.747772274412552e-009 1.726245093637644e-005 -0.9999999998510041 6.747772274412552e-009 1.726245093637644e-005 -0.9999999998510041 6.747772274412552e-009 1.726245093637644e-005 -0.9999999998510041 6.747772274412552e-009 1.726245093637644e-005 -0.9999999998510033 6.747865089057396e-009 1.726248547798955e-005 -0.9999999998510033 6.747865089057396e-009 1.726248547798955e-005 -0.9999999998510033 6.747865089057396e-009 1.726248547798955e-005 -0.9999999998510033 6.747865089057396e-009 1.726248547798955e-005 0.9999999998510033 -6.747865089057396e-009 -1.726248547798955e-005 0.9999999998510033 -6.747865089057396e-009 -1.726248547798955e-005 0.9999999998510033 -6.747865089057396e-009 -1.726248547798955e-005 0.9999999998510033 -6.747865089057396e-009 -1.726248547798955e-005 0.9999999998510034 -6.747864700479337e-009 -1.726248544932199e-005 0.9999999998510034 -6.747864700479337e-009 -1.726248544932199e-005 0.9999999998510034 -6.747864700479337e-009 -1.726248544932199e-005 0.9999999998510034 -6.747864700479337e-009 -1.726248544932199e-005 -0.9999999998510034 6.747864700479337e-009 1.726248544932199e-005 -0.9999999998510034 6.747864700479337e-009 1.726248544932199e-005 -0.9999999998510034 6.747864700479337e-009 1.726248544932199e-005 -0.9999999998510034 6.747864700479337e-009 1.726248544932199e-005 -0.9999999998510041 6.74771259992498e-009 1.726244611842134e-005 -0.9999999998510041 6.74771259992498e-009 1.726244611842134e-005 -0.9999999998510041 6.74771259992498e-009 1.726244611842134e-005 -0.9999999998510041 6.74771259992498e-009 1.726244611842134e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244611842134e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244611842134e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244611842134e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244611842134e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244603241781e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244603241781e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244603241781e-005 0.9999999998510041 -6.74771259992498e-009 -1.726244603241781e-005 -0.9999999998510041 6.74771259992498e-009 1.726244603241781e-005 -0.9999999998510041 6.74771259992498e-009 1.726244603241781e-005 -0.9999999998510041 6.74771259992498e-009 1.726244603241781e-005 -0.9999999998510041 6.74771259992498e-009 1.726244603241781e-005 -0.9999999998510039 6.747786207711508e-009 1.726245795478253e-005 -0.9999999998510039 6.747786207711508e-009 1.726245795478253e-005 -0.9999999998510039 6.747786207711508e-009 1.726245795478253e-005 -0.9999999998510039 6.747786207711508e-009 1.726245795478253e-005 0.9999999998510039 -6.747786207711508e-009 -1.726245795478253e-005 0.9999999998510039 -6.747786207711508e-009 -1.726245795478253e-005 0.9999999998510039 -6.747786207711508e-009 -1.726245795478253e-005 0.9999999998510039 -6.747786207711508e-009 -1.726245795478253e-005 -0.9999999998510035 6.747573155913077e-009 1.726247131866933e-005 -0.9999999998510035 6.747573155913077e-009 1.726247131866933e-005 -0.9999999998510035 6.747573155913077e-009 1.726247131866933e-005 -0.9999999998510035 6.747573155913077e-009 1.726247131866933e-005 0.9999999998510035 -6.747573155913077e-009 -1.726247131866933e-005 0.9999999998510035 -6.747573155913077e-009 -1.726247131866933e-005 0.9999999998510035 -6.747573155913077e-009 -1.726247131866933e-005 0.9999999998510035 -6.747573155913077e-009 -1.726247131866933e-005 0.9999999998510036 -6.747573100401925e-009 -1.726247149067627e-005 0.9999999998510036 -6.747573100401925e-009 -1.726247149067627e-005 0.9999999998510036 -6.747573100401925e-009 -1.726247149067627e-005 0.9999999998510036 -6.747573100401925e-009 -1.726247149067627e-005 -0.9999999998510036 6.747573100401925e-009 1.726247149067627e-005 -0.9999999998510036 6.747573100401925e-009 1.726247149067627e-005 -0.9999999998510036 6.747573100401925e-009 1.726247149067627e-005 -0.9999999998510036 6.747573100401925e-009 1.726247149067627e-005 -0.9999999998510034 6.747796810341382e-009 1.726248321214166e-005 -0.9999999998510034 6.747796810341382e-009 1.726248321214166e-005 -0.9999999998510034 6.747796810341382e-009 1.726248321214166e-005 -0.9999999998510034 6.747796810341382e-009 1.726248321214166e-005 0.9999999998510034 -6.747796810341382e-009 -1.726248321214166e-005 0.9999999998510034 -6.747796810341382e-009 -1.726248321214166e-005 0.9999999998510034 -6.747796810341382e-009 -1.726248321214166e-005 0.9999999998510034 -6.747796810341382e-009 -1.726248321214166e-005 0.9999999998510026 -6.747987879723901e-009 -1.726252481077155e-005 0.9999999998510026 -6.747987879723901e-009 -1.726252481077155e-005 0.9999999998510026 -6.747987879723901e-009 -1.726252481077155e-005 0.9999999998510026 -6.747987879723901e-009 -1.726252481077155e-005 -0.9999999998510026 6.747987879723901e-009 1.726252481077155e-005 -0.9999999998510026 6.747987879723901e-009 1.726252481077155e-005 -0.9999999998510026 6.747987879723901e-009 1.726252481077155e-005 -0.9999999998510026 6.747987879723901e-009 1.726252481077155e-005 0.9999999998510039 -6.747628111952802e-009 -1.726245552222103e-005 0.9999999998510039 -6.747628111952802e-009 -1.726245552222103e-005 0.9999999998510039 -6.747628111952802e-009 -1.726245552222103e-005 0.9999999998510039 -6.747628111952802e-009 -1.726245552222103e-005 -0.9999999998510039 6.747628111952802e-009 1.726245552222103e-005 -0.9999999998510039 6.747628111952802e-009 1.726245552222103e-005 -0.9999999998510039 6.747628111952802e-009 1.726245552222103e-005 -0.9999999998510039 6.747628111952802e-009 1.726245552222103e-005 0.9999999998510039 -6.747952075031388e-009 -1.726245279867705e-005 0.9999999998510039 -6.747952075031388e-009 -1.726245279867705e-005 0.9999999998510039 -6.747952075031388e-009 -1.726245279867705e-005 0.9999999998510039 -6.747952075031388e-009 -1.726245279867705e-005 -0.9999999998510039 6.747952075031388e-009 1.726245279867705e-005 -0.9999999998510039 6.747952075031388e-009 1.726245279867705e-005 -0.9999999998510039 6.747952075031388e-009 1.726245279867705e-005 -0.9999999998510039 6.747952075031388e-009 1.726245279867705e-005 0.9999999998510035 -6.747732306383653e-009 -1.726247862961352e-005 0.9999999998510035 -6.747732306383653e-009 -1.726247862961352e-005 0.9999999998510035 -6.747732306383653e-009 -1.726247862961352e-005 0.9999999998510035 -6.747732306383653e-009 -1.726247862961352e-005 -0.9999999998510035 6.747732306383653e-009 1.726247862961352e-005 -0.9999999998510035 6.747732306383653e-009 1.726247862961352e-005 -0.9999999998510035 6.747732306383653e-009 1.726247862961352e-005 -0.9999999998510035 6.747732306383653e-009 1.726247862961352e-005 -1.594690650249079e-005 -0.3420117124934623 0.9396956891797396 -1.594690650249079e-005 -0.3420117124934623 0.9396956891797396 -1.594690650249079e-005 -0.3420117124934623 0.9396956891797396 -1.594690650249079e-005 -0.3420117124934623 0.9396956891797396 1.594690650249079e-005 0.3420117124934623 -0.9396956891797396 1.594690650249079e-005 0.3420117124934623 -0.9396956891797396 1.594690650249079e-005 0.3420117124934623 -0.9396956891797396 1.594690650249079e-005 0.3420117124934623 -0.9396956891797396 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 -0.9999999998560879 5.057487543569035e-009 -1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 0.9999999998560879 -5.057487543569035e-009 1.69653918240327e-005 -0.0001840461841547816 -6.439700957874798e-005 -0.9999999809900135 -0.0001840461841547816 -6.439700957874798e-005 -0.9999999809900135 -0.0001840461841547816 -6.439700957874798e-005 -0.9999999809900135 -0.0001840461841547816 -6.439700957874798e-005 -0.9999999809900135 -0.0001840461841547816 -6.439700957874798e-005 -0.9999999809900135 0.0001840461841547816 6.439700957874798e-005 0.9999999809900135 0.0001840461841547816 6.439700957874798e-005 0.9999999809900135 0.0001840461841547816 6.439700957874798e-005 0.9999999809900135 0.0001840461841547816 6.439700957874798e-005 0.9999999809900135 0.0001840461841547816 6.439700957874798e-005 0.9999999809900135 -1.593825178472879e-005 -0.3420117129297029 0.9396956890211121 -1.593825178472879e-005 -0.3420117129297029 0.9396956890211121 -1.593825178472879e-005 -0.3420117129297029 0.9396956890211121 -1.593825178472879e-005 -0.3420117129297029 0.9396956890211121 1.593825178472879e-005 0.3420117129297029 -0.9396956890211121 1.593825178472879e-005 0.3420117129297029 -0.9396956890211121 1.593825178472879e-005 0.3420117129297029 -0.9396956890211121 1.593825178472879e-005 0.3420117129297029 -0.9396956890211121 -1.69657629720207e-005 8.97204516075339e-006 0.9999999998158328 -1.69657629720207e-005 8.97204516075339e-006 0.9999999998158328 -1.69657629720207e-005 8.97204516075339e-006 0.9999999998158328 -1.69657629720207e-005 8.97204516075339e-006 0.9999999998158328 1.69657629720207e-005 -8.97204516075339e-006 -0.9999999998158328 1.69657629720207e-005 -8.97204516075339e-006 -0.9999999998158328 1.69657629720207e-005 -8.97204516075339e-006 -0.9999999998158328 1.69657629720207e-005 -8.97204516075339e-006 -0.9999999998158328 1.695555674972735e-005 -6.304360896754815e-005 -0.9999999978690064 1.695555674972735e-005 -6.304360896754815e-005 -0.9999999978690064 1.695555674972735e-005 -6.304360896754815e-005 -0.9999999978690064 1.695555674972735e-005 -6.304360896754815e-005 -0.9999999978690064 1.695555674972735e-005 -6.304360896754815e-005 -0.9999999978690064 -1.695555674972735e-005 6.304360896754815e-005 0.9999999978690064 -1.695555674972735e-005 6.304360896754815e-005 0.9999999978690064 -1.695555674972735e-005 6.304360896754815e-005 0.9999999978690064 -1.695555674972735e-005 6.304360896754815e-005 0.9999999978690064 -1.695555674972735e-005 6.304360896754815e-005 0.9999999978690064 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 1.594046422725198e-005 0.3420117135285128 -0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 -1.594046422725198e-005 -0.3420117135285128 0.9396956888031318 1.69570154602588e-005 -8.96579294421756e-006 -0.9999999998160373 1.69570154602588e-005 -8.96579294421756e-006 -0.9999999998160373 1.69570154602588e-005 -8.96579294421756e-006 -0.9999999998160373 1.69570154602588e-005 -8.96579294421756e-006 -0.9999999998160373 1.69570154602588e-005 -8.96579294421756e-006 -0.9999999998160373 -1.69570154602588e-005 8.96579294421756e-006 0.9999999998160373 -1.69570154602588e-005 8.96579294421756e-006 0.9999999998160373 -1.69570154602588e-005 8.96579294421756e-006 0.9999999998160373 -1.69570154602588e-005 8.96579294421756e-006 0.9999999998160373 -1.69570154602588e-005 8.96579294421756e-006 0.9999999998160373 1.593907939474626e-005 0.3420117131069282 -0.9396956889565953 1.593907939474626e-005 0.3420117131069282 -0.9396956889565953 1.593907939474626e-005 0.3420117131069282 -0.9396956889565953 1.593907939474626e-005 0.3420117131069282 -0.9396956889565953 -1.593907939474626e-005 -0.3420117131069282 0.9396956889565953 -1.593907939474626e-005 -0.3420117131069282 0.9396956889565953 -1.593907939474626e-005 -0.3420117131069282 0.9396956889565953 -1.593907939474626e-005 -0.3420117131069282 0.9396956889565953 1.696679227514524e-005 -8.972202194845643e-006 -0.9999999998158139 1.696679227514524e-005 -8.972202194845643e-006 -0.9999999998158139 1.696679227514524e-005 -8.972202194845643e-006 -0.9999999998158139 1.696679227514524e-005 -8.972202194845643e-006 -0.9999999998158139 -1.696679227514524e-005 8.972202194845643e-006 0.9999999998158139 -1.696679227514524e-005 8.972202194845643e-006 0.9999999998158139 -1.696679227514524e-005 8.972202194845643e-006 0.9999999998158139 -1.696679227514524e-005 8.972202194845643e-006 0.9999999998158139 1.593866788461343e-005 0.3420117138390233 -0.9396956886901489 1.593866788461343e-005 0.3420117138390233 -0.9396956886901489 1.593866788461343e-005 0.3420117138390233 -0.9396956886901489 1.593866788461343e-005 0.3420117138390233 -0.9396956886901489 1.593866788461343e-005 0.3420117138390233 -0.9396956886901489 -1.593866788461343e-005 -0.3420117138390233 0.9396956886901489 -1.593866788461343e-005 -0.3420117138390233 0.9396956886901489 -1.593866788461343e-005 -0.3420117138390233 0.9396956886901489 -1.593866788461343e-005 -0.3420117138390233 0.9396956886901489 -1.593866788461343e-005 -0.3420117138390233 0.9396956886901489 -0.9999999900762957 7.857041953090821e-009 0.0001408808304329757 -0.9999999900762957 7.857041953090821e-009 0.0001408808304329757 -0.9999999900762957 7.857041953090821e-009 0.0001408808304329757 0.9999999900762957 -7.857041953090821e-009 -0.0001408808304329757 0.9999999900762957 -7.857041953090821e-009 -0.0001408808304329757 0.9999999900762957 -7.857041953090821e-009 -0.0001408808304329757 1.594552802150315e-005 0.3420117132242569 -0.9396956889137829 1.594552802150315e-005 0.3420117132242569 -0.9396956889137829 1.594552802150315e-005 0.3420117132242569 -0.9396956889137829 1.594552802150315e-005 0.3420117132242569 -0.9396956889137829 1.594552802150315e-005 0.3420117132242569 -0.9396956889137829 -1.594552802150315e-005 -0.3420117132242569 0.9396956889137829 -1.594552802150315e-005 -0.3420117132242569 0.9396956889137829 -1.594552802150315e-005 -0.3420117132242569 0.9396956889137829 -1.594552802150315e-005 -0.3420117132242569 0.9396956889137829 -1.594552802150315e-005 -0.3420117132242569 0.9396956889137829 -1.726250355988799e-005 -6.304320227228081e-005 -0.9999999978637805 -1.726250355988799e-005 -6.304320227228081e-005 -0.9999999978637805 -1.726250355988799e-005 -6.304320227228081e-005 -0.9999999978637805 -1.726250355988799e-005 -6.304320227228081e-005 -0.9999999978637805 1.726250355988799e-005 6.304320227228081e-005 0.9999999978637805 1.726250355988799e-005 6.304320227228081e-005 0.9999999978637805 1.726250355988799e-005 6.304320227228081e-005 0.9999999978637805 1.726250355988799e-005 6.304320227228081e-005 0.9999999978637805 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 -0.9999999998562256 2.20724577873649e-009 -1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.9999999998562256 -2.20724577873649e-009 1.695726586460545e-005 0.999999999861555 9.094465608016736e-008 1.663977141347047e-005 0.999999999861555 9.094465608016736e-008 1.663977141347047e-005 0.999999999861555 9.094465608016736e-008 1.663977141347047e-005 -0.999999999861555 -9.094465608016736e-008 -1.663977141347047e-005 -0.999999999861555 -9.094465608016736e-008 -1.663977141347047e-005 -0.999999999861555 -9.094465608016736e-008 -1.663977141347047e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 0.9999999998561273 -3.918640637899691e-009 1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 -0.9999999998561273 3.918640637899691e-009 -1.69630598544478e-005 1.592997444057336e-005 0.3419902888639281 -0.9397034862492547 1.592997444057336e-005 0.3419902888639281 -0.9397034862492547 1.592997444057336e-005 0.3419902888639281 -0.9397034862492547 1.592997444057336e-005 0.3419902888639281 -0.9397034862492547 1.592997444057336e-005 0.3419902888639281 -0.9397034862492547 -1.592997444057336e-005 -0.3419902888639281 0.9397034862492547 -1.592997444057336e-005 -0.3419902888639281 0.9397034862492547 -1.592997444057336e-005 -0.3419902888639281 0.9397034862492547 -1.592997444057336e-005 -0.3419902888639281 0.9397034862492547 -1.592997444057336e-005 -0.3419902888639281 0.9397034862492547 -0.9999999997925571 1.229147472863877e-006 -2.033162888228335e-005 -0.9999999997925571 1.229147472863877e-006 -2.033162888228335e-005 -0.9999999997925571 1.229147472863877e-006 -2.033162888228335e-005 0.9999999997925571 -1.229147472863877e-006 2.033162888228335e-005 0.9999999997925571 -1.229147472863877e-006 2.033162888228335e-005 0.9999999997925571 -1.229147472863877e-006 2.033162888228335e-005 0.9999999998522824 -1.039299766840868e-007 1.718792015359543e-005 0.9999999998522824 -1.039299766840868e-007 1.718792015359543e-005 0.9999999998522824 -1.039299766840868e-007 1.718792015359543e-005 0.9999999998522824 -1.039299766840868e-007 1.718792015359543e-005 -0.9999999998522824 1.039299766840868e-007 -1.718792015359543e-005 -0.9999999998522824 1.039299766840868e-007 -1.718792015359543e-005 -0.9999999998522824 1.039299766840868e-007 -1.718792015359543e-005 -0.9999999998522824 1.039299766840868e-007 -1.718792015359543e-005 -2.670386261448435e-005 0.9999999996032445 -8.967428000262958e-006 -2.670386261448435e-005 0.9999999996032445 -8.967428000262958e-006 -2.670386261448435e-005 0.9999999996032445 -8.967428000262958e-006 2.670386261448435e-005 -0.9999999996032445 8.967428000262958e-006 2.670386261448435e-005 -0.9999999996032445 8.967428000262958e-006 2.670386261448435e-005 -0.9999999996032445 8.967428000262958e-006 -1.145426847362377e-006 0.3420068401332684 -0.9396974626446243 -1.145426847362377e-006 0.3420068401332684 -0.9396974626446243 -1.145426847362377e-006 0.3420068401332684 -0.9396974626446243 -1.145426847362377e-006 0.3420068401332684 -0.9396974626446243 1.145426847362377e-006 -0.3420068401332684 0.9396974626446243 1.145426847362377e-006 -0.3420068401332684 0.9396974626446243 1.145426847362377e-006 -0.3420068401332684 0.9396974626446243 1.145426847362377e-006 -0.3420068401332684 0.9396974626446243 -1.622149256414784e-005 0.3420045132315082 -0.9396983093877217 -1.622149256414784e-005 0.3420045132315082 -0.9396983093877217 -1.622149256414784e-005 0.3420045132315082 -0.9396983093877217 1.622149256414784e-005 -0.3420045132315082 0.9396983093877217 1.622149256414784e-005 -0.3420045132315082 0.9396983093877217 1.622149256414784e-005 -0.3420045132315082 0.9396983093877217 -1.726250358513484e-005 -8.972202052281688e-006 -0.9999999998107528 -1.726250358513484e-005 -8.972202052281688e-006 -0.9999999998107528 -1.726250358513484e-005 -8.972202052281688e-006 -0.9999999998107528 -1.726250358513484e-005 -8.972202052281688e-006 -0.9999999998107528 -1.726250358513484e-005 -8.972202052281688e-006 -0.9999999998107528 1.726250358513484e-005 8.972202052281688e-006 0.9999999998107528 1.726250358513484e-005 8.972202052281688e-006 0.9999999998107528 1.726250358513484e-005 8.972202052281688e-006 0.9999999998107528 1.726250358513484e-005 8.972202052281688e-006 0.9999999998107528 1.726250358513484e-005 8.972202052281688e-006 0.9999999998107528 -1.381288785186336e-007 0.3395326625344007 -0.9405942648518977 -1.381288785186336e-007 0.3395326625344007 -0.9405942648518977 -1.381288785186336e-007 0.3395326625344007 -0.9405942648518977 -1.381288785186336e-007 0.3395326625344007 -0.9405942648518977 1.381288785186336e-007 -0.3395326625344007 0.9405942648518977 1.381288785186336e-007 -0.3395326625344007 0.9405942648518977 1.381288785186336e-007 -0.3395326625344007 0.9405942648518977 1.381288785186336e-007 -0.3395326625344007 0.9405942648518977 0.9999999998562926 -1.927178119346669e-007 1.695222128250001e-005 0.9999999998562926 -1.927178119346669e-007 1.695222128250001e-005 0.9999999998562926 -1.927178119346669e-007 1.695222128250001e-005 -0.9999999998562926 1.927178119346669e-007 -1.695222128250001e-005 -0.9999999998562926 1.927178119346669e-007 -1.695222128250001e-005 -0.9999999998562926 1.927178119346669e-007 -1.695222128250001e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 -2.368193695530726e-005 0.9999999995265892 -1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 2.368193695530726e-005 -0.9999999995265892 1.964655889045216e-005 0.9999999998409014 -4.004266721021217e-007 1.783359758932766e-005 0.9999999998409014 -4.004266721021217e-007 1.783359758932766e-005 0.9999999998409014 -4.004266721021217e-007 1.783359758932766e-005 0.9999999998409014 -4.004266721021217e-007 1.783359758932766e-005 -0.9999999998409014 4.004266721021217e-007 -1.783359758932766e-005 -0.9999999998409014 4.004266721021217e-007 -1.783359758932766e-005 -0.9999999998409014 4.004266721021217e-007 -1.783359758932766e-005 -0.9999999998409014 4.004266721021217e-007 -1.783359758932766e-005 0.9999999998677948 1.581922333093094e-007 1.625994382280994e-005 0.9999999998677948 1.581922333093094e-007 1.625994382280994e-005 0.9999999998677948 1.581922333093094e-007 1.625994382280994e-005 0.9999999998677948 1.581922333093094e-007 1.625994382280994e-005 0.9999999998677948 1.581922333093094e-007 1.625994382280994e-005 -0.9999999998677948 -1.581922333093094e-007 -1.625994382280994e-005 -0.9999999998677948 -1.581922333093094e-007 -1.625994382280994e-005 -0.9999999998677948 -1.581922333093094e-007 -1.625994382280994e-005 -0.9999999998677948 -1.581922333093094e-007 -1.625994382280994e-005 -0.9999999998677948 -1.581922333093094e-007 -1.625994382280994e-005 0.9999999998561319 -1.998816615920923e-009 1.696279550223705e-005 0.9999999998561319 -1.998816615920923e-009 1.696279550223705e-005 0.9999999998561319 -1.998816615920923e-009 1.696279550223705e-005 -0.9999999998561319 1.998816615920923e-009 -1.696279550223705e-005 -0.9999999998561319 1.998816615920923e-009 -1.696279550223705e-005 -0.9999999998561319 1.998816615920923e-009 -1.696279550223705e-005 0.9999971076580704 -0.00240508486724678 1.556519455516098e-005 0.9999971076580704 -0.00240508486724678 1.556519455516098e-005 0.9999971076580704 -0.00240508486724678 1.556519455516098e-005 0.9999971076580704 -0.00240508486724678 1.556519455516098e-005 -0.9999971076580704 0.00240508486724678 -1.556519455516098e-005 -0.9999971076580704 0.00240508486724678 -1.556519455516098e-005 -0.9999971076580704 0.00240508486724678 -1.556519455516098e-005 -0.9999971076580704 0.00240508486724678 -1.556519455516098e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785718e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785718e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785718e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785718e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785718e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785718e-005 0.9999999998562926 -1.927320820752916e-007 1.695222131549676e-005 0.9999999998562926 -1.927320820752916e-007 1.695222131549676e-005 0.9999999998562926 -1.927320820752916e-007 1.695222131549676e-005 0.9999999998562926 -1.927320820752916e-007 1.695222131549676e-005 -0.9999999998562926 1.927320820752916e-007 -1.695222131549676e-005 -0.9999999998562926 1.927320820752916e-007 -1.695222131549676e-005 -0.9999999998562926 1.927320820752916e-007 -1.695222131549676e-005 -0.9999999998562926 1.927320820752916e-007 -1.695222131549676e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785713e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785713e-005 0.9999999998562926 -1.927337509070311e-007 1.695222130785713e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785713e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785713e-005 -0.9999999998562926 1.927337509070311e-007 -1.695222130785713e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 0.9999999997111998 -1.745087250544266e-006 2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 -0.9999999997111998 1.745087250544266e-006 -2.396988176984731e-005 0.9999999998562925 -1.927219302514655e-007 1.69522213120266e-005 0.9999999998562925 -1.927219302514655e-007 1.69522213120266e-005 0.9999999998562925 -1.927219302514655e-007 1.69522213120266e-005 -0.9999999998562925 1.927219302514655e-007 -1.69522213120266e-005 -0.9999999998562925 1.927219302514655e-007 -1.69522213120266e-005 -0.9999999998562925 1.927219302514655e-007 -1.69522213120266e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1914\" source=\"#ID5325\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5323\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5321\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5322\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1254\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5323\" />\r\n\t\t\t\t\t<p>0 1 2 3 2 1 4 5 6 5 4 7 8 9 10 11 12 13 13 12 14 15 14 16 14 12 16 17 16 18 16 12 18 19 18 20 18 12 20 21 20 22 20 12 22 23 22 24 22 12 24 25 24 26 24 12 26 27 26 28 26 12 28 29 28 30 28 12 30 31 30 32 30 12 32 33 32 34 32 12 34 35 34 8 34 12 8 12 36 8 8 36 9 36 37 9 9 37 38 39 38 40 38 37 40 41 40 42 40 37 42 43 42 44 42 37 44 45 44 46 44 37 46 47 46 48 46 37 48 49 48 50 48 37 50 51 50 52 50 37 52 53 52 54 52 37 54 55 54 56 54 37 56 57 56 58 56 37 58 59 58 60 58 37 60 61 60 62 60 37 62 63 62 64 65 64 66 64 62 66 62 37 66 67 66 68 66 37 68 69 68 70 68 37 70 71 70 72 70 37 72 73 72 74 72 37 74 75 74 76 74 37 76 77 76 78 76 37 78 79 78 80 78 37 80 81 80 82 80 37 82 37 83 82 82 83 84 85 84 83 86 87 88 87 86 89 89 86 90 89 90 91 89 91 92 91 90 93 91 93 94 93 90 95 93 95 96 95 90 97 95 97 98 97 90 99 97 99 100 99 90 101 99 101 102 101 90 103 101 103 104 103 90 105 103 105 106 105 90 107 105 107 108 105 108 109 108 107 110 107 90 111 107 111 112 111 90 113 111 113 114 113 90 115 113 115 116 115 90 117 115 117 118 117 90 119 117 119 120 119 90 121 119 121 122 121 90 123 121 123 124 123 90 125 123 125 126 125 90 127 125 127 128 127 90 129 127 129 130 129 90 131 129 131 132 131 90 133 131 133 134 133 90 135 135 90 136 135 136 137 137 136 138 137 138 139 137 139 140 139 138 141 139 141 142 141 138 143 141 143 144 143 138 145 143 145 146 145 138 147 145 147 148 147 138 149 147 149 150 149 138 151 149 151 152 151 138 153 151 153 154 153 138 155 153 155 156 155 138 157 155 157 158 157 138 159 157 159 160 159 138 161 161 138 162 163 135 137 164 165 166 165 167 166 166 167 168 169 168 167 170 171 172 171 170 173 173 170 174 173 174 175 176 177 178 177 179 178 179 180 178 180 181 178 182 183 181 181 183 178 184 185 183 183 185 178 186 187 185 185 187 178 188 189 187 187 189 178 190 191 189 189 191 178 192 193 191 191 193 178 194 195 193 193 195 178 178 195 196 195 197 196 197 198 196 198 199 196 200 196 199 201 198 197 202 203 204 205 206 207 206 205 203 206 203 202 206 202 208 206 208 209 209 208 210 210 208 211 209 210 212 212 210 213 209 212 214 214 212 215 209 214 216 216 214 217 209 216 218 218 216 219 209 218 220 220 218 221 209 220 222 222 220 223 209 222 224 209 224 225 209 225 226 209 226 227 228 229 230 231 230 229 232 233 234 233 232 235 236 237 238 239 238 237 240 241 242 241 240 243 244 245 246 247 246 245 248 249 250 249 248 251 252 253 254 255 254 253 256 257 258 257 256 259 260 261 262 263 262 261 264 265 266 265 264 267 268 269 270 271 270 269 272 273 274 273 272 275 276 277 278 279 278 277 280 281 282 281 280 283 284 285 286 287 286 285 288 289 290 289 288 291 292 293 294 294 293 295 296 295 293 297 298 299 298 297 300 300 297 301 302 303 304 305 304 303 306 307 308 307 306 309 310 311 312 312 311 313 314 313 311 315 316 317 316 315 318 318 315 319 320 321 322 323 322 321 324 325 326 325 324 327 328 329 330 330 329 331 332 331 329 333 334 335 334 333 336 336 333 337 338 339 340 341 340 339 342 343 344 343 342 345 346 347 348 348 347 349 350 349 347 351 352 353 352 351 354 354 351 355 356 357 358 359 358 357 360 361 362 361 360 363 364 365 366 366 365 367 368 367 365 369 370 371 370 369 372 372 369 373 374 375 376 377 376 375 378 379 380 379 378 381 382 383 384 384 383 385 386 385 383 387 388 389 388 387 390 390 387 391 392 393 394 395 394 393 396 397 398 397 396 399 400 401 402 402 401 403 404 403 401 405 406 407 406 405 408 408 405 409 410 411 412 413 412 411 414 415 416 415 414 417 418 419 420 420 419 421 422 421 419 423 424 425 424 423 426 426 423 427 428 429 430 431 430 429 432 433 434 433 432 435 436 437 438 438 437 439 440 439 437 441 442 443 442 441 444 444 441 445 446 447 448 449 448 447 450 451 452 451 450 453 454 455 456 456 455 457 458 457 455 459 460 461 460 459 462 462 459 463 464 465 466 466 465 467 468 467 465 469 470 471 470 469 472 472 469 473 474 475 476 476 475 477 477 475 478 479 478 475 480 481 482 481 480 483 483 480 484 484 480 485 486 487 488 488 487 489 490 489 487 491 492 493 492 491 494 494 491 495 496 497 498 498 497 499 500 499 497 501 502 503 502 501 504 504 501 505 506 507 508 509 508 507 510 511 512 511 510 513 514 515 516 516 515 517 518 517 515 519 520 521 520 519 522 522 519 523 524 525 526 527 526 525 528 529 530 529 528 531 532 533 534 534 533 535 536 535 533 537 538 539 538 537 540 540 537 541 542 543 544 545 544 543 546 547 548 547 546 549 550 551 552 552 551 553 554 553 551 555 556 557 556 555 558 558 555 559 560 561 562 563 562 561 564 565 566 565 564 567 568 569 570 570 569 571 572 571 569 573 574 575 574 573 576 576 573 577 578 579 580 581 580 579 582 583 584 583 582 585 586 587 588 588 587 589 590 589 587 591 592 593 592 591 594 594 591 595 596 597 598 599 598 597 600 601 602 601 600 603 604 605 606 606 605 607 608 607 605 609 610 611 610 609 612 612 609 613 614 615 616 617 616 615 618 619 620 619 618 621 622 623 624 624 623 625 626 625 623 627 628 629 628 627 630 630 627 631 632 633 634 635 634 633 636 637 638 637 636 639 640 641 642 642 641 643 644 643 641 645 646 647 646 645 648 648 645 649 650 651 652 653 652 651 654 655 656 655 654 657 658 659 660 660 659 661 662 661 659 663 664 665 664 663 666 666 663 667 668 669 670 671 670 669 672 673 674 673 672 675 676 677 678 678 677 679 680 679 677 681 682 683 682 681 684 684 681 685 686 687 688 689 688 687 690 691 692 691 690 693 694 695 696 696 695 697 698 697 695 699 700 701 700 699 702 702 699 703 704 705 706 707 706 705 708 709 710 709 708 711 712 713 714 714 713 715 716 715 713 717 718 719 718 717 720 720 717 721 722 723 724 725 724 723 726 727 728 727 726 729 730 731 732 732 731 733 734 733 731 735 736 737 736 735 738 738 735 739 740 741 742 743 742 741 744 745 746 745 744 747 748 749 750 750 749 751 752 751 749 753 754 755 754 753 756 756 753 757 758 759 760 761 760 759 762 763 764 763 762 765 766 767 768 768 767 769 770 769 767 771 772 773 772 771 774 774 771 775 776 777 778 779 778 777 780 781 782 781 780 783 784 785 786 786 785 787 788 787 785 789 790 791 790 789 792 792 789 793 794 795 796 797 796 795 798 799 800 799 798 801 802 803 804 804 803 805 806 805 803 807 808 809 808 807 810 810 807 811 812 813 814 815 814 813 816 817 818 817 816 819 820 821 822 822 821 823 824 823 821 825 826 827 826 825 828 828 825 829 830 831 832 833 832 831 834 835 836 835 834 837 838 839 840 840 839 841 842 841 839 843 844 845 844 843 846 846 843 847 848 849 850 851 850 849 852 853 854 853 852 855 856 857 858 858 857 859 860 859 857 861 862 863 862 861 864 864 861 865 866 867 868 869 868 867 870 871 872 871 870 873 874 875 876 876 875 877 878 877 875 879 880 881 880 879 882 882 879 883 884 885 886 887 886 885 888 889 890 889 888 891 892 893 894 895 896 893 894 893 896 897 898 895 898 899 895 895 899 896 896 899 900 901 900 899 902 903 904 903 902 905 905 902 906 906 902 907 906 907 908 905 909 910 909 905 906 910 909 911 912 913 914 915 914 913 916 917 918 917 916 919 920 921 922 922 921 923 924 925 921 921 925 923 926 927 925 925 927 923 928 929 927 927 929 923 930 931 929 929 931 923 932 933 931 931 933 923 934 935 933 933 935 923 936 937 935 935 937 923 938 939 937 937 939 923 940 941 939 939 941 923 942 943 941 941 943 923 944 945 946 946 945 943 923 943 945 921 920 947 925 924 948 927 926 949 929 928 950 931 930 951 933 932 952 935 934 953 937 936 954 939 938 955 942 941 956 944 957 945 945 957 958 957 959 958 959 960 958 960 961 958 962 963 961 961 963 958 964 965 963 963 965 958 966 967 965 965 967 958 968 969 967 967 969 958 970 971 969 969 971 958 972 973 971 971 973 958 974 975 973 973 975 958 976 977 975 975 977 958 978 979 977 977 979 958 980 981 979 979 981 958 982 983 981 981 983 958 984 985 986 986 985 983 987 988 989 989 988 985 985 988 983 983 988 958 990 991 992 992 991 988 988 991 958 993 994 995 995 994 991 991 994 958 996 997 998 998 997 994 994 997 958 999 1000 1001 1001 1000 997 997 1000 958 1002 1003 1004 1004 1003 1000 1000 1003 958 1005 1006 1007 1007 1006 1003 1003 1006 958 1008 1009 1010 1010 1009 1006 1006 1009 958 1011 1012 1013 1013 1012 1009 1009 1012 958 958 1012 1014 1012 1015 1014 1015 1016 1014 1017 1014 1016 962 961 1018 964 963 1019 966 965 1020 968 967 1021 970 969 1022 972 971 1023 974 973 1024 976 975 1025 978 977 1026 980 979 1027 982 981 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1063 1062 1065 1063 1065 1066 1063 1066 1067 1067 1066 1068 1068 1066 1069 1069 1066 1070 1067 1068 1071 1071 1068 1072 1072 1068 1073 1067 1071 1074 1074 1071 1075 1075 1071 1076 1067 1074 1077 1077 1074 1078 1078 1074 1079 1067 1077 1080 1080 1077 1081 1081 1077 1082 1067 1080 1083 1083 1080 1084 1084 1080 1085 1067 1083 1086 1086 1083 1087 1087 1083 1088 1067 1086 1089 1089 1086 1090 1090 1086 1091 1067 1089 1092 1092 1089 1093 1093 1089 1094 1094 1089 1095 1092 1093 1096 1096 1093 1097 1067 1092 1030 1030 1092 1031 1067 1030 1033 1033 1030 1034 1067 1033 1036 1036 1033 1037 1067 1036 1039 1039 1036 1040 1067 1039 1042 1042 1039 1043 1067 1042 1045 1045 1042 1046 1067 1045 1048 1048 1045 1049 1067 1048 1051 1051 1048 1052 1067 1051 1054 1054 1051 1055 1067 1054 1057 1057 1054 1058 1067 1057 1060 1060 1057 1061 1067 1060 1098 1067 1098 1099 1067 1099 1100 1067 1100 1101 1101 1100 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1101 1133 1134 1133 1101 1135 1135 1101 1102 1134 1133 1104 1104 1133 1105 1134 1104 1108 1108 1104 1136 1134 1108 1111 1111 1108 1107 1134 1111 1114 1114 1111 1110 1134 1114 1117 1117 1114 1113 1134 1117 1120 1120 1117 1116 1134 1120 1123 1123 1120 1119 1134 1123 1126 1126 1123 1122 1134 1126 1129 1129 1126 1125 1134 1129 1132 1132 1129 1128 1134 1132 1137 1137 1132 1131 1138 1139 1140 1141 1140 1139 1142 1143 1144 1143 1142 1145 1146 1147 1148 1149 1148 1147 1150 1151 1152 1151 1150 1153 1154 1155 1156 1156 1155 1157 1155 1158 1157 1157 1158 1159 1158 1160 1159 1160 1161 1159 1159 1161 1162 1163 1162 1161 1164 1165 1166 1165 1164 1167 1167 1164 1168 1167 1168 1169 1167 1169 1170 1170 1169 1171 1170 1171 1172 1172 1171 1173 1174 1175 1176 1177 1176 1175 1178 1179 1180 1179 1178 1181 1182 1183 1184 1185 1184 1183 1186 1187 1188 1187 1186 1189 1190 1191 1192 1193 1192 1191 1194 1195 1196 1195 1194 1197 1198 1199 1200 1201 1200 1199 1202 1203 1204 1203 1202 1205 1206 1207 1208 1209 1208 1207 1210 1211 1212 1211 1210 1213 1214 1215 1216 1217 1216 1215 1218 1219 1220 1219 1218 1221 1222 1223 1224 1225 1224 1223 1226 1227 1228 1227 1226 1229 1230 1231 1232 1233 1232 1231 1234 1235 1236 1235 1234 1237 1238 1239 1240 1241 1240 1239 1242 1243 1244 1243 1242 1245 1246 1247 1248 1249 1248 1247 1250 1251 1252 1251 1250 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1268 1267 1270 1271 1272 1271 1270 1273 1274 1275 1276 1277 1276 1275 1278 1279 1280 1279 1278 1281 1282 1283 1284 1285 1284 1283 1286 1287 1288 1287 1286 1289 1290 1291 1292 1293 1292 1291 1294 1295 1296 1295 1294 1297 1298 1299 1300 1301 1300 1299 1302 1303 1304 1303 1302 1305 1306 1307 1308 1309 1308 1307 1310 1311 1312 1311 1310 1313 1313 1311 1310 1312 1310 1311 1308 1307 1309 1307 1308 1306 1314 1315 1316 1317 1316 1315 1318 1319 1320 1319 1318 1321 1322 1323 1324 1325 1324 1323 1326 1327 1328 1327 1326 1329 1330 1331 1332 1333 1332 1331 1334 1335 1336 1335 1334 1337 1338 1339 1340 1341 1340 1339 1342 1343 1344 1343 1342 1345 1346 1347 1348 1349 1348 1347 1350 1351 1352 1351 1350 1353 1354 1355 1356 1357 1356 1355 1358 1359 1360 1359 1358 1361 1362 1363 1364 1365 1364 1363 1366 1367 1368 1367 1366 1369 1370 1371 1372 1373 1372 1371 1374 1375 1376 1375 1374 1377 1378 1379 1380 1381 1380 1379 1382 1383 1384 1383 1382 1385 1386 1387 1388 1389 1388 1387 1390 1391 1392 1391 1390 1393 1394 1395 1396 1397 1396 1395 1398 1399 1400 1399 1398 1401 1402 1403 1404 1405 1404 1403 1406 1407 1408 1407 1406 1409 1410 1411 1412 1413 1412 1411 1414 1415 1416 1415 1414 1417 1418 1419 1420 1421 1420 1419 1422 1423 1424 1423 1422 1425 1426 1427 1428 1429 1428 1427 1430 1431 1432 1431 1430 1433 1434 1435 1436 1437 1436 1435 1438 1439 1440 1439 1438 1441 1442 1443 1444 1445 1444 1443 1446 1447 1448 1447 1446 1449 1450 1451 1452 1453 1452 1451 1454 1455 1456 1455 1454 1457 1458 1459 1460 1461 1460 1459 1462 1463 1464 1463 1462 1465 1466 1467 1468 1469 1468 1467 1470 1471 1472 1471 1470 1473 1474 1475 1476 1477 1476 1475 1478 1479 1480 1479 1478 1481 1482 1483 1484 1485 1484 1483 1486 1487 1488 1487 1486 1489 1490 1491 1492 1493 1492 1491 1494 1495 1496 1495 1494 1497 1498 1499 1500 1501 1500 1499 1502 1503 1504 1503 1502 1505 1506 1507 1508 1509 1508 1507 1510 1511 1512 1511 1510 1513 1513 1511 1510 1512 1510 1511 1508 1507 1509 1507 1508 1506 1514 1515 1516 1517 1516 1515 1518 1519 1520 1519 1518 1521 1522 1523 1524 1525 1524 1523 1526 1527 1528 1527 1526 1529 1530 1531 1532 1533 1532 1531 1534 1535 1536 1535 1534 1537 1537 1535 1534 1536 1534 1535 1532 1531 1533 1531 1532 1530 1538 1539 1540 1541 1540 1539 1542 1543 1544 1543 1542 1545 1546 1547 1548 1549 1548 1547 1550 1551 1552 1551 1550 1553 1554 1555 1556 1557 1556 1555 1558 1559 1560 1559 1558 1561 1562 1563 1564 1565 1564 1563 1566 1567 1568 1567 1566 1569 1570 1571 1572 1573 1572 1571 1574 1575 1576 1575 1574 1577 1578 1579 1580 1580 1579 1581 1579 1582 1581 1581 1582 1583 1583 1582 1584 1582 1585 1584 1586 1584 1585 1587 1588 1589 1588 1587 1590 1588 1590 1591 1591 1590 1592 1592 1590 1593 1592 1593 1594 1594 1593 1595 1596 1597 1598 1598 1597 1599 1600 1599 1597 1601 1602 1603 1602 1601 1604 1604 1601 1605 1606 1607 1608 1609 1608 1607 1610 1611 1612 1611 1610 1613 1614 1615 1616 1617 1616 1615 1618 1619 1620 1619 1618 1621 1622 1623 1624 1625 1624 1623 1626 1623 1622 1627 1628 1629 1628 1630 1631 1630 1628 1627 1632 1633 1634 1634 1633 1635 1635 1633 1636 1636 1633 1637 1638 1637 1633 1639 1640 1641 1640 1639 1642 1642 1639 1643 1643 1639 1644 1644 1639 1645 1646 1647 1648 1647 1649 1648 1650 1648 1649 1651 1652 1653 1652 1651 1654 1652 1654 1655 1656 1657 1658 1659 1658 1657 1660 1661 1662 1661 1660 1663 1664 1665 1666 1667 1666 1665 1668 1669 1670 1669 1668 1671 1672 1673 1674 1674 1673 1675 1676 1675 1673 1677 1678 1679 1678 1677 1680 1680 1677 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1690 1689 1691 1692 1691 1689 1693 1694 1695 1694 1693 1696 1696 1693 1697 1698 1699 1700 1701 1700 1699 1702 1703 1704 1703 1702 1705 1706 1707 1708 1709 1710 1707 1708 1707 1710 1711 1712 1713 1713 1712 1714 1714 1712 1715 1712 1716 1715 1716 1717 1715 1715 1717 1718 1718 1717 1719 1719 1717 1720 1720 1717 1707 1709 1707 1717 1721 1722 1723 1722 1721 1724 1724 1721 1725 1725 1721 1726 1726 1721 1727 1727 1721 1728 1727 1728 1729 1727 1729 1730 1730 1729 1731 1731 1729 1732 1733 1722 1734 1722 1733 1723 1734 1722 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1743 1745 1744 1744 1745 1746 1745 1747 1746 1746 1747 1748 1749 1748 1747 1750 1751 1752 1751 1750 1753 1753 1750 1754 1753 1754 1755 1755 1754 1756 1755 1756 1757 1758 1759 1760 1759 1761 1760 1762 1760 1761 1763 1764 1765 1764 1763 1766 1764 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1776 1775 1778 1779 1780 1779 1778 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1790 1789 1792 1793 1794 1793 1792 1795 1796 1797 1798 1799 1800 1801 1796 1797 1798 1799 1800 1801 1802 1803 1804 1803 1805 1804 1806 1804 1805 1807 1808 1809 1808 1807 1810 1808 1810 1811 1812 1813 1814 1815 1814 1813 1816 1817 1818 1817 1816 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1827 1829 1828 1828 1829 1830 1829 1831 1830 1830 1831 1832 1833 1832 1831 1834 1835 1836 1835 1834 1837 1837 1834 1838 1837 1838 1839 1839 1838 1840 1839 1840 1841 1842 1843 1844 1845 1844 1843 1846 1847 1848 1847 1846 1849 1850 1851 1852 1852 1851 1853 1854 1853 1851 1855 1856 1857 1856 1855 1858 1858 1855 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1868 1867 1870 1871 1872 1871 1870 1873 1866 1867 1868 1869 1868 1867 1870 1871 1872 1871 1870 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1882 1881 1884 1885 1886 1885 1884 1887 1888 1889 1890 1891 1892 1893 1888 1889 1890 1891 1892 1893 1894 1895 1896 1895 1897 1896 1896 1897 1898 1898 1897 1899 1900 1899 1897 1901 1902 1903 1902 1901 1904 1904 1901 1905 1905 1901 1906 1905 1906 1907 1908 1909 1910 1911 1912 1913</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5326\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5327\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5329\">84.64314333246512 414.6469240182741 148.9232070358309 84.64423300151702 414.6463484512637 84.74997964140168</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5329\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5328\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5327\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5328\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5330\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5331\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5333\">94.48556371832683 414.6469768990124 154.8288863579324 84.64304506879307 414.6469769624 154.8287194273879</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5333\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5332\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5331\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5332\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5334\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5335\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID5337\">94.48818980180386 27.30516311904466 -0.0002449271512856011 94.48818939834746 37.60304305902355 -0.0003375323330171987 76.77165423771658 27.30516313112662 -0.0005452611212627967 94.48818964546217 -3.645084234449314e-012 2.220446049250313e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5337\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5336\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5335\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5336\" />\r\n\t\t\t\t\t<p>1 0 0 2 0 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5338\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5339\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID5341\">94.48675258624235 414.6463483953374 84.75014648464297 76.77020919075676 414.6253984771122 84.74984624823864 76.77021624447616 414.625398986583 84.80740748336763 76.77021755446276 414.6278490568375 84.74311298746578 76.77021635862593 414.6068994457873 84.8006745496247</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID5341\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5340\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5339\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5340\" />\r\n\t\t\t\t\t<p>1 0 2 1 3 1 1 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5342\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5343\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID5345\">-5.013662303099409e-007 2.978536031150725e-007 -0.001601740747550817 -5.561714715440758e-007 1.463354237785097e-008 0.001631102722286115 17.71653492902442 2.857641447917558e-007 -0.001301406779838088</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5345\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5344\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5343\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5344\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5346\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5347\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5349\">9.839892928604968 414.6469769739911 154.8300107170691 76.76902947101598 414.6469769739005 154.8300004488145</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5349\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5348\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5347\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5348\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5350\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5351\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5353\">76.7692643702112 414.6468526939065 140.9695226641056 76.76926440855232 414.625896056945 140.9672609634845</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5353\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5352\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5351\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5352\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5354\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5355\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5357\">17.71553811324156 181.7581786775084 56.20893686235574 76.77070146418873 181.7597558847504 56.20791740822955</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5357\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5356\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5355\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5356\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5358\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5359\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5361\">76.76973097181963 181.7592512503618 -0.01175922660467577 76.77165453321868 181.7592515531196 -0.01175925981286674</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5361\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5360\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5359\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5360\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5362\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5363\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5365\">17.71596891616355 181.7586316261001 33.52892241162324 17.71561808528941 181.7592788325137 56.20591422992882</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5365\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5364\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5363\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5364\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5366\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5367\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID5369\">17.71509992042502 503.2256012564315 84.76084914634312 17.71510013757279 503.2256011415905 84.74804975169242 17.71509996670238 503.1904350939219 84.74805006720644</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5369\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5368\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5367\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5368\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5370\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5371\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID5373\">17.71398357069666 414.6469391166334 150.5310742121952 17.71398411627388 503.2261913530594 150.5302794612427 17.71453096973482 503.2259021035919 118.2918768471013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5373\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5372\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5371\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5372\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5374\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5375\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5377\">17.71414609887552 414.6468532549262 140.9705421628555 17.71401082502507 414.6469247008893 148.9243624002142</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5377\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5376\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5375\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5376\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5378\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5379\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5381\">17.71501964206209 414.6162892724735 84.74075326383473 17.7150995955526 414.6172049445924 84.73823726465852 17.71501956792599 414.6162918665531 84.74552569604246 17.71509948086487 414.6147535636574 84.74497256647818 17.71509960927278 414.5932764525147 84.73715575559328 17.71603081957255 414.6253914338675 84.74884467468026</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5381\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5380\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5379\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5380\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 5 2 1 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5382\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5383\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5385\">17.71453088448834 414.6345232030249 118.2864493041696 17.71453095700872 414.6345208034652 118.2820347387428</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5385\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5384\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5383\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5384\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5386\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5387\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5389\">17.71742271838048 181.7576744703945 -0.005706314450553751 17.7174227330388 181.7552228346799 -0.006598611960785594</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5389\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5388\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5387\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5388\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5394\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5395\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5404\">4.547473508864641e-013 202.7750151694713 159.7112507862273 0.005533269186798862 0.01901589079670885 0.00903268429004811 0.004026628766723661 0.01901583476865199 159.7112493238586 0.001504751321590447 202.7750153480947 0.009034789753712857 0.001504751321590447 202.7750153480947 0.009034789753712857 4.547473508864641e-013 202.7750151694713 159.7112507862273 0.005533269186798862 0.01901589079670885 0.00903268429004811 0.004026628766723661 0.01901583476865199 159.7112493238586</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5404\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5396\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5405\">-0.9999999997582632 -1.98641387196766e-005 -9.428146383312893e-006 -0.9999999997582632 -1.98641387196766e-005 -9.428146383312893e-006 -0.9999999997582632 -1.98641387196766e-005 -9.428146383312893e-006 -0.9999999997582632 -1.98641387196766e-005 -9.428146383312893e-006 0.9999999997582632 1.98641387196766e-005 9.428146383312893e-006 0.9999999997582632 1.98641387196766e-005 9.428146383312893e-006 0.9999999997582632 1.98641387196766e-005 9.428146383312893e-006 0.9999999997582632 1.98641387196766e-005 9.428146383312893e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5405\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5398\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID5406\">471.7246398877058 37.00004588937458 470.8402104102833 36.00011346233458 470.8402141213408 37.00005264336414 471.7246361771832 36.00010671237172 60.00000000047204 18.00000000398588 59.99999999986201 18.99999999995497 58.99999999986741 17.99999999995829 58.9999999998622 18.99999999995433</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5406\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5397\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5395\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5396\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5397\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5398\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5397\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5398\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5407\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5408\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5411\">904.5151232762024 202.7583872827008 0.001137737066017053 0.005533269186798862 0.01901589079670885 0.00903268429004811 0.001504751321590447 202.7750153480947 0.009034789753712857 1034.423369076731 5.605761543847621e-008 -2.842170943040401e-014 1034.423369076731 5.605761543847621e-008 -2.842170943040401e-014 904.5151232762024 202.7583872827008 0.001137737066017053 0.005533269186798862 0.01901589079670885 0.00903268429004811 0.001504751321590447 202.7750153480947 0.009034789753712857</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5411\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5409\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5412\">-8.731524891943192e-006 1.358835324209023e-008 -0.9999999999618803 -8.731524891943192e-006 1.358835324209023e-008 -0.9999999999618803 -8.731524891943192e-006 1.358835324209023e-008 -0.9999999999618803 -8.731524891943192e-006 1.358835324209023e-008 -0.9999999999618803 8.731524891943192e-006 -1.358835324209023e-008 0.9999999999618803 8.731524891943192e-006 -1.358835324209023e-008 0.9999999999618803 8.731524891943192e-006 -1.358835324209023e-008 0.9999999999618803 8.731524891943192e-006 -1.358835324209023e-008 0.9999999999618803</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5412\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5410\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5408\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5409\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5410\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5413\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5414\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5418\">0.001504751321590447 202.7750153480947 0.009034789753712857 904.5136185248803 202.7583871040706 159.703353733539 904.5151232762024 202.7583872827008 0.001137737066017053 4.547473508864641e-013 202.7750151694713 159.7112507862273 4.547473508864641e-013 202.7750151694713 159.7112507862273 0.001504751321590447 202.7750153480947 0.009034789753712857 904.5136185248803 202.7583871040706 159.703353733539 904.5151232762024 202.7583872827008 0.001137737066017053 1034.423369076731 5.605761543847621e-008 -2.842170943040401e-014 904.5136185248803 202.7583871040706 159.703353733539 1034.421864306609 9.094947017729282e-013 159.7022183546735 904.5151232762024 202.7583872827008 0.001137737066017053 904.5151232762024 202.7583872827008 0.001137737066017053 1034.423369076731 5.605761543847621e-008 -2.842170943040401e-014 904.5136185248803 202.7583871040706 159.703353733539 1034.421864306609 9.094947017729282e-013 159.7022183546735</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5418\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5415\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5419\">1.838343289067652e-005 0.9999999998310248 1.291719756643119e-009 1.838343289067652e-005 0.9999999998310248 1.291719756643119e-009 1.838343289067652e-005 0.9999999998310248 1.291719756643119e-009 1.838343289067652e-005 0.9999999998310248 1.291719756643119e-009 -1.838343289067652e-005 -0.9999999998310248 -1.291719756643119e-009 -1.838343289067652e-005 -0.9999999998310248 -1.291719756643119e-009 -1.838343289067652e-005 -0.9999999998310248 -1.291719756643119e-009 -1.838343289067652e-005 -0.9999999998310248 -1.291719756643119e-009 0.8420019040896553 0.5394745531037095 7.933983133551843e-006 0.8420019040896553 0.5394745531037095 7.933983133551843e-006 0.8420019040896553 0.5394745531037095 7.933983133551843e-006 0.8420019040896553 0.5394745531037095 7.933983133551843e-006 -0.8420019040896553 -0.5394745531037095 -7.933983133551843e-006 -0.8420019040896553 -0.5394745531037095 -7.933983133551843e-006 -0.8420019040896553 -0.5394745531037095 -7.933983133551843e-006 -0.8420019040896553 -0.5394745531037095 -7.933983133551843e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5419\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5417\">\r\n\t\t\t\t\t<float_array count=\"32\" id=\"ID5420\">471.7246360587225 36.00010670204274 474.4253173784288 37.00347334841944 474.4253136058559 36.0035341668349 471.7246398312954 37.00004588362728 469.8051389028263 37.00010290498653 469.8051389024774 36.00023515215418 473.7503637628324 37.00000010195929 473.7503637624835 36.00013234912694 474.527499107412 36.00235976227659 473.7668299019907 37.00128611405241 474.5274991077418 37.00226228235145 473.7668299013029 36.00138360874188 473.7668299013031 36.00138360874188 474.5274991074123 36.00235976227659 473.766829901991 37.00128611405241 474.5274991077421 37.00226228235145</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5420\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5416\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5414\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5415\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5416\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5417\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 7 7 6 6 5 5 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 15 15 14 14 13 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5421\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5422\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5425\">0.004026628766723661 0.01901583476865199 159.7112493238586 904.5136185248803 202.7583871040706 159.703353733539 4.547473508864641e-013 202.7750151694713 159.7112507862273 1034.421864306609 9.094947017729282e-013 159.7022183546735 1034.421864306609 9.094947017729282e-013 159.7022183546735 0.004026628766723661 0.01901583476865199 159.7112493238586 904.5136185248803 202.7583871040706 159.703353733539 4.547473508864641e-013 202.7750151694713 159.7112507862273</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5425\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5423\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5426\">8.730585405772651e-006 -6.488165873704335e-009 0.9999999999618885 8.730585405772651e-006 -6.488165873704335e-009 0.9999999999618885 8.730585405772651e-006 -6.488165873704335e-009 0.9999999999618885 8.730585405772651e-006 -6.488165873704335e-009 0.9999999999618885 -8.730585405772651e-006 6.488165873704335e-009 -0.9999999999618885 -8.730585405772651e-006 6.488165873704335e-009 -0.9999999999618885 -8.730585405772651e-006 6.488165873704335e-009 -0.9999999999618885 -8.730585405772651e-006 6.488165873704335e-009 -0.9999999999618885</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5426\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5424\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5422\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5423\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5424\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5427\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5428\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5437\">1034.421864306609 9.094947017729282e-013 159.7022183546735 0.005533269186798862 0.01901589079670885 0.00903268429004811 1034.423369076731 5.605761543847621e-008 -2.842170943040401e-014 0.004026628766723661 0.01901583476865199 159.7112493238586 0.004026628766723661 0.01901583476865199 159.7112493238586 1034.421864306609 9.094947017729282e-013 159.7022183546735 0.005533269186798862 0.01901589079670885 0.00903268429004811 1034.423369076731 5.605761543847621e-008 -2.842170943040401e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5437\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5429\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5438\">-1.838312728195772e-005 -0.9999999998310303 -5.24239505741964e-010 -1.838312728195772e-005 -0.9999999998310303 -5.24239505741964e-010 -1.838312728195772e-005 -0.9999999998310303 -5.24239505741964e-010 -1.838312728195772e-005 -0.9999999998310303 -5.24239505741964e-010 1.838312728195772e-005 0.9999999998310303 5.24239505741964e-010 1.838312728195772e-005 0.9999999998310303 5.24239505741964e-010 1.838312728195772e-005 0.9999999998310303 5.24239505741964e-010 1.838312728195772e-005 0.9999999998310303 5.24239505741964e-010</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5438\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5431\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID5439\">474.8132057548914 37.00396562839359 471.7246591828987 36.00010673167469 474.8132019823747 36.00402643204262 471.724662949831 37.00004591727974 183.9999999970448 43.99999999914652 181.5291697926369 44.00000000984249 183.999999997105 42.99999999918027 181.5291697971646 42.99999999913674</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5439\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5430\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5428\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5429\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5430\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5431\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5430\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5431\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5442\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5443\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID5446\">11.03144505794512 -6.293672523706164 -47.7061556845266 2.731173556726844 -26.7512215295817 -47.70579392941796 1.296271189083655 -13.11285551966284 -47.70584596519733 13.90124979323014 -33.57040454355229 -47.70605161296695 22.20152129444773 -13.11285553767129 -47.70641336807558 23.63642366208615 -26.75122154759265 -47.70636133229542 23.63642366208615 -26.75122154759265 -47.70636133229542 22.20152129444773 -13.11285553767129 -47.70641336807558 13.90124979323014 -33.57040454355229 -47.70605161296695 11.03144505794512 -6.293672523706164 -47.7061556845266 2.731173556726844 -26.7512215295817 -47.70579392941796 1.296271189083655 -13.11285551966284 -47.70584596519733 11.03144505794512 -6.293672523706164 -47.7061556845266 22.19626366068496 -13.1161782012 133.3541080119669 22.20152129444773 -13.11285553767129 -47.70641336807558 11.02618739567583 -6.296995226427271 133.3555528997225 11.02618739567583 -6.296995226427271 133.3555528997225 11.03144505794512 -6.293672523706164 -47.7061556845266 22.19626366068496 -13.1161782012 133.3541080119669 22.20152129444773 -13.11285553767129 -47.70641336807558 23.63642366208615 -26.75122154759265 -47.70636133229542 22.19626366068496 -13.1161782012 133.3541080119669 23.63116603373396 -26.75454420367964 133.3539345409876 22.20152129444773 -13.11285553767129 -47.70641336807558 22.20152129444773 -13.11285553767129 -47.70641336807558 23.63642366208615 -26.75122154759265 -47.70636133229542 22.19626366068496 -13.1161782012 133.3541080119669 23.63116603373396 -26.75454420367964 133.3539345409876 23.63116603373396 -26.75454420367964 133.3539345409876 13.90124979323014 -33.57040454355229 -47.70605161296695 23.63642366208615 -26.75122154759265 -47.70636133229542 13.89594987940723 -33.57378531987797 135.1146146832672 13.89594987940723 -33.57378531987797 135.1146146832672 23.63116603373396 -26.75454420367964 133.3539345409876 13.90124979323014 -33.57040454355229 -47.70605161296695 23.63642366208615 -26.75122154759265 -47.70636133229542 13.89594987940723 -33.57378531987797 135.1146146832672 2.731173556726844 -26.7512215295817 -47.70579392941796 13.90124979323014 -33.57040454355229 -47.70605161296695 2.725915876772206 -26.75454425661906 133.3566508455155 2.725915876772206 -26.75454425661906 133.3566508455155 13.89594987940723 -33.57378531987797 135.1146146832672 2.731173556726844 -26.7512215295817 -47.70579392941796 13.90124979323014 -33.57040454355229 -47.70605161296695 1.29101350371684 -13.11617825413691 133.356824316495 2.731173556726844 -26.7512215295817 -47.70579392941796 2.725915876772206 -26.75454425661906 133.3566508455155 1.296271189083655 -13.11285551966284 -47.70584596519733 1.296271189083655 -13.11285551966284 -47.70584596519733 1.29101350371684 -13.11617825413691 133.356824316495 2.731173556726844 -26.7512215295817 -47.70579392941796 2.725915876772206 -26.75454425661906 133.3566508455155 1.296271189083655 -13.11285551966284 -47.70584596519733 11.02618739567583 -6.296995226427271 133.3555528997225 11.03144505794512 -6.293672523706164 -47.7061556845266 1.29101350371684 -13.11617825413691 133.356824316495 1.29101350371684 -13.11617825413691 133.356824316495 1.296271189083655 -13.11285551966284 -47.70584596519733 11.02618739567583 -6.296995226427271 133.3555528997225 11.03144505794512 -6.293672523706164 -47.7061556845266</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID5446\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5444\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID5447\">-2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 0.5210619242120158 0.8535188751212375 3.079365194353411e-005 0.5210619242120158 0.8535188751212375 3.079365194353411e-005 0.5210619242120158 0.8535188751212375 3.079365194353411e-005 0.5210619242120158 0.8535188751212375 3.079365194353411e-005 -0.5210619242120158 -0.8535188751212375 -3.079365194353411e-005 -0.5210619242120158 -0.8535188751212375 -3.079365194353411e-005 -0.5210619242120158 -0.8535188751212375 -3.079365194353411e-005 -0.5210619242120158 -0.8535188751212375 -3.079365194353411e-005 0.9945108799678434 0.1046332102012737 3.079873669759285e-005 0.9945108799678434 0.1046332102012737 3.079873669759285e-005 0.9945108799678434 0.1046332102012737 3.079873669759285e-005 0.9945108799678434 0.1046332102012737 3.079873669759285e-005 -0.9945108799678434 -0.1046332102012737 -3.079873669759285e-005 -0.9945108799678434 -0.1046332102012737 -3.079873669759285e-005 -0.9945108799678434 -0.1046332102012737 -3.079873669759285e-005 -0.9945108799678434 -0.1046332102012737 -3.079873669759285e-005 0.573720769039123 -0.8190509624991195 1.556834011680379e-006 0.573720769039123 -0.8190509624991195 1.556834011680379e-006 0.573720769039123 -0.8190509624991195 1.556834011680379e-006 0.573720769039123 -0.8190509624991195 1.556834011680379e-006 -0.573720769039123 0.8190509624991195 -1.556834011680379e-006 -0.573720769039123 0.8190509624991195 -1.556834011680379e-006 -0.573720769039123 0.8190509624991195 -1.556834011680379e-006 -0.573720769039123 0.8190509624991195 -1.556834011680379e-006 -0.5210624895789423 -0.8535185299702505 -3.084181103095389e-005 -0.5210624895789423 -0.8535185299702505 -3.084181103095389e-005 -0.5210624895789423 -0.8535185299702505 -3.084181103095389e-005 -0.5210624895789423 -0.8535185299702505 -3.084181103095389e-005 0.5210624895789423 0.8535185299702505 3.084181103095389e-005 0.5210624895789423 0.8535185299702505 3.084181103095389e-005 0.5210624895789423 0.8535185299702505 3.084181103095389e-005 0.5210624895789423 0.8535185299702505 3.084181103095389e-005 -0.9945108799678051 -0.1046332102016501 -3.079869560615023e-005 -0.9945108799678051 -0.1046332102016501 -3.079869560615023e-005 -0.9945108799678051 -0.1046332102016501 -3.079869560615023e-005 -0.9945108799678051 -0.1046332102016501 -3.079869560615023e-005 0.9945108799678051 0.1046332102016501 3.079869560615023e-005 0.9945108799678051 0.1046332102016501 3.079869560615023e-005 0.9945108799678051 0.1046332102016501 3.079869560615023e-005 0.9945108799678051 0.1046332102016501 3.079869560615023e-005 -0.5737198708176843 0.8190515916755711 -1.629020331077151e-006 -0.5737198708176843 0.8190515916755711 -1.629020331077151e-006 -0.5737198708176843 0.8190515916755711 -1.629020331077151e-006 -0.5737198708176843 0.8190515916755711 -1.629020331077151e-006 0.5737198708176843 -0.8190515916755711 1.629020331077151e-006 0.5737198708176843 -0.8190515916755711 1.629020331077151e-006 0.5737198708176843 -0.8190515916755711 1.629020331077151e-006 0.5737198708176843 -0.8190515916755711 1.629020331077151e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID5447\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5445\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5443\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5444\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5445\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 6 7 8 7 9 8 8 9 10 11 10 9 12 13 14 13 12 15 16 17 18 19 18 17 20 21 22 21 20 23 24 25 26 27 26 25 28 29 30 29 28 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 43 42 41 44 45 46 45 44 47 48 49 50 51 50 49 52 53 54 53 52 55 56 57 58 59 58 57</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5448\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5449\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5451\">20.91592750457289 -0.002997136059775585 141.4439879389418 20.91367671572721 -0.004573742818593019 141.4439879389397</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5451\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5450\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5449\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5450\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5454\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5455\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID5458\">11.03144505794376 -6.293672523705936 -47.70615568452659 2.731173556725707 -26.7512215295817 -47.70579392941794 1.296271189082745 -13.11285551966284 -47.70584596519732 13.90124979322945 -33.57040454355251 -47.70605161296695 22.20152129444682 -13.11285553767129 -47.70641336807559 23.63642366208546 -26.75122154759242 -47.70636133229542 23.63642366208546 -26.75122154759242 -47.70636133229542 22.20152129444682 -13.11285553767129 -47.70641336807559 13.90124979322945 -33.57040454355251 -47.70605161296695 11.03144505794376 -6.293672523705936 -47.70615568452659 2.731173556725707 -26.7512215295817 -47.70579392941794 1.296271189082745 -13.11285551966284 -47.70584596519732 11.03144505794376 -6.293672523705936 -47.70615568452659 22.19439982244194 -13.11736851165961 197.6604061170579 22.20152129444682 -13.11285553767129 -47.70641336807559 11.02432355743281 -6.298185536886876 197.6618510048135 11.02432355743281 -6.298185536886876 197.6618510048135 11.03144505794376 -6.293672523705936 -47.70615568452659 22.19439982244194 -13.11736851165961 197.6604061170579 22.20152129444682 -13.11285553767129 -47.70641336807559 23.63642366208546 -26.75122154759242 -47.70636133229542 22.19439982244194 -13.11736851165961 197.6604061170579 23.62930219549139 -26.75573451413948 197.6602326460787 22.20152129444682 -13.11285553767129 -47.70641336807559 22.20152129444682 -13.11285553767129 -47.70641336807559 23.63642366208546 -26.75122154759242 -47.70636133229542 22.19439982244194 -13.11736851165961 197.6604061170579 23.62930219549139 -26.75573451413948 197.6602326460787 23.62930219549139 -26.75573451413948 197.6602326460787 13.90124979322945 -33.57040454355251 -47.70605161296695 23.63642366208546 -26.75122154759242 -47.70636133229542 13.89408604116466 -33.5749756303378 199.4209127883582 13.89408604116466 -33.5749756303378 199.4209127883582 23.62930219549139 -26.75573451413948 197.6602326460787 13.90124979322945 -33.57040454355251 -47.70605161296695 23.63642366208546 -26.75122154759242 -47.70636133229542 13.89408604116466 -33.5749756303378 199.4209127883582 2.731173556725707 -26.7512215295817 -47.70579392941794 13.90124979322945 -33.57040454355251 -47.70605161296695 2.724052038528953 -26.75573456707889 197.6629489506065 2.724052038528953 -26.75573456707889 197.6629489506065 13.89408604116466 -33.5749756303378 199.4209127883582 2.731173556725707 -26.7512215295817 -47.70579392941794 13.90124979322945 -33.57040454355251 -47.70605161296695 1.289149665473587 -13.11736856459629 197.663122421586 2.731173556725707 -26.7512215295817 -47.70579392941794 2.724052038528953 -26.75573456707889 197.6629489506065 1.296271189082745 -13.11285551966284 -47.70584596519732 1.296271189082745 -13.11285551966284 -47.70584596519732 1.289149665473587 -13.11736856459629 197.663122421586 2.731173556725707 -26.7512215295817 -47.70579392941794 2.724052038528953 -26.75573456707889 197.6629489506065 1.296271189082745 -13.11285551966284 -47.70584596519732 11.02432355743281 -6.298185536886876 197.6618510048135 11.03144505794376 -6.293672523705936 -47.70615568452659 1.289149665473587 -13.11736856459629 197.663122421586 1.289149665473587 -13.11736856459629 197.663122421586 1.296271189082745 -13.11285551966284 -47.70584596519732 11.02432355743281 -6.298185536886876 197.6618510048135 11.03144505794376 -6.293672523705936 -47.70615568452659</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID5458\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5456\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID5459\">-2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 -2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 -2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 -2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 -2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 -2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 0.5210619242131316 0.8535188751195409 3.082178047031497e-005 0.5210619242131316 0.8535188751195409 3.082178047031497e-005 0.5210619242131316 0.8535188751195409 3.082178047031497e-005 0.5210619242131316 0.8535188751195409 3.082178047031497e-005 -0.5210619242131316 -0.8535188751195409 -3.082178047031497e-005 -0.5210619242131316 -0.8535188751195409 -3.082178047031497e-005 -0.5210619242131316 -0.8535188751195409 -3.082178047031497e-005 -0.5210619242131316 -0.8535188751195409 -3.082178047031497e-005 0.9945108799681366 0.1046332102013636 3.078895815590923e-005 0.9945108799681366 0.1046332102013636 3.078895815590923e-005 0.9945108799681366 0.1046332102013636 3.078895815590923e-005 0.9945108799681366 0.1046332102013636 3.078895815590923e-005 -0.9945108799681366 -0.1046332102013636 -3.078895815590923e-005 -0.9945108799681366 -0.1046332102013636 -3.078895815590923e-005 -0.9945108799681366 -0.1046332102013636 -3.078895815590923e-005 -0.9945108799681366 -0.1046332102013636 -3.078895815590923e-005 0.5737207676361732 -0.8190509634818874 1.533686845888606e-006 0.5737207676361732 -0.8190509634818874 1.533686845888606e-006 0.5737207676361732 -0.8190509634818874 1.533686845888606e-006 0.5737207676361732 -0.8190509634818874 1.533686845888606e-006 -0.5737207676361732 0.8190509634818874 -1.533686845888606e-006 -0.5737207676361732 0.8190509634818874 -1.533686845888606e-006 -0.5737207676361732 0.8190509634818874 -1.533686845888606e-006 -0.5737207676361732 0.8190509634818874 -1.533686845888606e-006 -0.5210624886955856 -0.853518530508972 -3.085722050939857e-005 -0.5210624886955856 -0.853518530508972 -3.085722050939857e-005 -0.5210624886955856 -0.853518530508972 -3.085722050939857e-005 -0.5210624886955856 -0.853518530508972 -3.085722050939857e-005 0.5210624886955856 0.853518530508972 3.085722050939857e-005 0.5210624886955856 0.853518530508972 3.085722050939857e-005 0.5210624886955856 0.853518530508972 3.085722050939857e-005 0.5210624886955856 0.853518530508972 3.085722050939857e-005 -0.9945108799680985 -0.1046332102017341 -3.078892791960352e-005 -0.9945108799680985 -0.1046332102017341 -3.078892791960352e-005 -0.9945108799680985 -0.1046332102017341 -3.078892791960352e-005 -0.9945108799680985 -0.1046332102017341 -3.078892791960352e-005 0.9945108799680985 0.1046332102017341 3.078892791960352e-005 0.9945108799680985 0.1046332102017341 3.078892791960352e-005 0.9945108799680985 0.1046332102017341 3.078892791960352e-005 0.9945108799680985 0.1046332102017341 3.078892791960352e-005 -0.5737198708154324 0.8190515916772312 -1.58679441855429e-006 -0.5737198708154324 0.8190515916772312 -1.58679441855429e-006 -0.5737198708154324 0.8190515916772312 -1.58679441855429e-006 -0.5737198708154324 0.8190515916772312 -1.58679441855429e-006 0.5737198708154324 -0.8190515916772312 1.58679441855429e-006 0.5737198708154324 -0.8190515916772312 1.58679441855429e-006 0.5737198708154324 -0.8190515916772312 1.58679441855429e-006 0.5737198708154324 -0.8190515916772312 1.58679441855429e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID5459\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5457\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5455\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5456\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5457\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 6 7 8 7 9 8 8 9 10 11 10 9 12 13 14 13 12 15 16 17 18 19 18 17 20 21 22 21 20 23 24 25 26 27 26 25 28 29 30 29 28 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 43 42 41 44 45 46 45 44 47 48 49 50 51 50 49 52 53 54 53 52 55 56 57 58 59 58 57</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5460\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5461\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5463\">20.90849683442411 -0.007715229567793358 397.5527540878329 20.90624604557843 -0.009291836325928671 397.5527540878308</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5463\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5462\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5461\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5462\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5466\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5467\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID5470\">23.63642366208615 -26.75122154759265 -47.70636133229542 22.20152129444773 -13.11285553767129 -47.70641336807558 13.90124979323014 -33.57040454355229 -47.70605161296695 11.03144505794512 -6.293672523706164 -47.7061556845266 2.731173556726844 -26.7512215295817 -47.70579392941796 1.296271189083655 -13.11285551966284 -47.70584596519733 11.03144505794512 -6.293672523706164 -47.7061556845266 2.731173556726844 -26.7512215295817 -47.70579392941796 1.296271189083655 -13.11285551966284 -47.70584596519733 13.90124979323014 -33.57040454355229 -47.70605161296695 22.20152129444773 -13.11285553767129 -47.70641336807558 23.63642366208615 -26.75122154759265 -47.70636133229542 11.02618739567583 -6.296995226427271 133.3555528997225 11.03144505794512 -6.293672523706164 -47.7061556845266 22.19626366068496 -13.1161782012 133.3541080119669 22.20152129444773 -13.11285553767129 -47.70641336807558 11.03144505794512 -6.293672523706164 -47.7061556845266 22.19626366068496 -13.1161782012 133.3541080119669 22.20152129444773 -13.11285553767129 -47.70641336807558 11.02618739567583 -6.296995226427271 133.3555528997225 22.20152129444773 -13.11285553767129 -47.70641336807558 23.63642366208615 -26.75122154759265 -47.70636133229542 22.19626366068496 -13.1161782012 133.3541080119669 23.63116603373396 -26.75454420367964 133.3539345409876 23.63642366208615 -26.75122154759265 -47.70636133229542 22.19626366068496 -13.1161782012 133.3541080119669 23.63116603373396 -26.75454420367964 133.3539345409876 22.20152129444773 -13.11285553767129 -47.70641336807558 13.89594987940723 -33.57378531987797 135.1146146832672 23.63116603373396 -26.75454420367964 133.3539345409876 13.90124979323014 -33.57040454355229 -47.70605161296695 23.63642366208615 -26.75122154759265 -47.70636133229542 23.63116603373396 -26.75454420367964 133.3539345409876 13.90124979323014 -33.57040454355229 -47.70605161296695 23.63642366208615 -26.75122154759265 -47.70636133229542 13.89594987940723 -33.57378531987797 135.1146146832672 2.725915876772206 -26.75454425661906 133.3566508455155 13.89594987940723 -33.57378531987797 135.1146146832672 2.731173556726844 -26.7512215295817 -47.70579392941796 13.90124979323014 -33.57040454355229 -47.70605161296695 13.89594987940723 -33.57378531987797 135.1146146832672 2.731173556726844 -26.7512215295817 -47.70579392941796 13.90124979323014 -33.57040454355229 -47.70605161296695 2.725915876772206 -26.75454425661906 133.3566508455155 1.296271189083655 -13.11285551966284 -47.70584596519733 1.29101350371684 -13.11617825413691 133.356824316495 2.731173556726844 -26.7512215295817 -47.70579392941796 2.725915876772206 -26.75454425661906 133.3566508455155 1.29101350371684 -13.11617825413691 133.356824316495 2.731173556726844 -26.7512215295817 -47.70579392941796 2.725915876772206 -26.75454425661906 133.3566508455155 1.296271189083655 -13.11285551966284 -47.70584596519733 1.29101350371684 -13.11617825413691 133.356824316495 1.296271189083655 -13.11285551966284 -47.70584596519733 11.02618739567583 -6.296995226427271 133.3555528997225 11.03144505794512 -6.293672523706164 -47.7061556845266 1.296271189083655 -13.11285551966284 -47.70584596519733 11.02618739567583 -6.296995226427271 133.3555528997225 11.03144505794512 -6.293672523706164 -47.7061556845266 1.29101350371684 -13.11617825413691 133.356824316495</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID5470\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5468\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID5471\">-2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 -2.714164503522011e-005 -6.670989065004013e-006 -0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 2.714164503522011e-005 6.670989065004013e-006 0.9999999996094146 0.5210619242120158 0.8535188751212375 3.079365194353411e-005 0.5210619242120158 0.8535188751212375 3.079365194353411e-005 0.5210619242120158 0.8535188751212375 3.079365194353411e-005 0.5210619242120158 0.8535188751212375 3.079365194353411e-005 -0.5210619242120158 -0.8535188751212375 -3.079365194353411e-005 -0.5210619242120158 -0.8535188751212375 -3.079365194353411e-005 -0.5210619242120158 -0.8535188751212375 -3.079365194353411e-005 -0.5210619242120158 -0.8535188751212375 -3.079365194353411e-005 0.9945108799678434 0.1046332102012737 3.079873669759285e-005 0.9945108799678434 0.1046332102012737 3.079873669759285e-005 0.9945108799678434 0.1046332102012737 3.079873669759285e-005 0.9945108799678434 0.1046332102012737 3.079873669759285e-005 -0.9945108799678434 -0.1046332102012737 -3.079873669759285e-005 -0.9945108799678434 -0.1046332102012737 -3.079873669759285e-005 -0.9945108799678434 -0.1046332102012737 -3.079873669759285e-005 -0.9945108799678434 -0.1046332102012737 -3.079873669759285e-005 0.573720769039123 -0.8190509624991195 1.556834011680379e-006 0.573720769039123 -0.8190509624991195 1.556834011680379e-006 0.573720769039123 -0.8190509624991195 1.556834011680379e-006 0.573720769039123 -0.8190509624991195 1.556834011680379e-006 -0.573720769039123 0.8190509624991195 -1.556834011680379e-006 -0.573720769039123 0.8190509624991195 -1.556834011680379e-006 -0.573720769039123 0.8190509624991195 -1.556834011680379e-006 -0.573720769039123 0.8190509624991195 -1.556834011680379e-006 -0.5210624895789423 -0.8535185299702505 -3.084181103095389e-005 -0.5210624895789423 -0.8535185299702505 -3.084181103095389e-005 -0.5210624895789423 -0.8535185299702505 -3.084181103095389e-005 -0.5210624895789423 -0.8535185299702505 -3.084181103095389e-005 0.5210624895789423 0.8535185299702505 3.084181103095389e-005 0.5210624895789423 0.8535185299702505 3.084181103095389e-005 0.5210624895789423 0.8535185299702505 3.084181103095389e-005 0.5210624895789423 0.8535185299702505 3.084181103095389e-005 -0.9945108799678051 -0.1046332102016501 -3.079869560615023e-005 -0.9945108799678051 -0.1046332102016501 -3.079869560615023e-005 -0.9945108799678051 -0.1046332102016501 -3.079869560615023e-005 -0.9945108799678051 -0.1046332102016501 -3.079869560615023e-005 0.9945108799678051 0.1046332102016501 3.079869560615023e-005 0.9945108799678051 0.1046332102016501 3.079869560615023e-005 0.9945108799678051 0.1046332102016501 3.079869560615023e-005 0.9945108799678051 0.1046332102016501 3.079869560615023e-005 -0.5737198708176843 0.8190515916755711 -1.629020331077151e-006 -0.5737198708176843 0.8190515916755711 -1.629020331077151e-006 -0.5737198708176843 0.8190515916755711 -1.629020331077151e-006 -0.5737198708176843 0.8190515916755711 -1.629020331077151e-006 0.5737198708176843 -0.8190515916755711 1.629020331077151e-006 0.5737198708176843 -0.8190515916755711 1.629020331077151e-006 0.5737198708176843 -0.8190515916755711 1.629020331077151e-006 0.5737198708176843 -0.8190515916755711 1.629020331077151e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID5471\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5469\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5467\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5468\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5469\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 2 2 3 4 5 4 3 6 7 8 7 6 9 9 6 10 9 10 11 12 13 14 15 14 13 16 17 18 17 16 19 20 21 22 23 22 21 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 44 45 46 47 46 45 48 49 50 49 48 51 52 53 54 55 54 53 56 57 58 57 56 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5472\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5473\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5475\">20.91592750457289 -0.002997136059775585 141.4439879389418 20.91367671572721 -0.004573742818593019 141.4439879389397</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5475\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5474\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5473\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5474\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5478\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5479\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID5482\">23.63642366208546 -26.75122154759242 -47.70636133229542 22.20152129444682 -13.11285553767129 -47.70641336807559 13.90124979322945 -33.57040454355251 -47.70605161296695 11.03144505794376 -6.293672523705936 -47.70615568452659 2.731173556725707 -26.7512215295817 -47.70579392941794 1.296271189082745 -13.11285551966284 -47.70584596519732 11.03144505794376 -6.293672523705936 -47.70615568452659 2.731173556725707 -26.7512215295817 -47.70579392941794 1.296271189082745 -13.11285551966284 -47.70584596519732 13.90124979322945 -33.57040454355251 -47.70605161296695 22.20152129444682 -13.11285553767129 -47.70641336807559 23.63642366208546 -26.75122154759242 -47.70636133229542 11.02432355743281 -6.298185536886876 197.6618510048135 11.03144505794376 -6.293672523705936 -47.70615568452659 22.19439982244194 -13.11736851165961 197.6604061170579 22.20152129444682 -13.11285553767129 -47.70641336807559 11.03144505794376 -6.293672523705936 -47.70615568452659 22.19439982244194 -13.11736851165961 197.6604061170579 22.20152129444682 -13.11285553767129 -47.70641336807559 11.02432355743281 -6.298185536886876 197.6618510048135 22.20152129444682 -13.11285553767129 -47.70641336807559 23.63642366208546 -26.75122154759242 -47.70636133229542 22.19439982244194 -13.11736851165961 197.6604061170579 23.62930219549139 -26.75573451413948 197.6602326460787 23.63642366208546 -26.75122154759242 -47.70636133229542 22.19439982244194 -13.11736851165961 197.6604061170579 23.62930219549139 -26.75573451413948 197.6602326460787 22.20152129444682 -13.11285553767129 -47.70641336807559 13.89408604116466 -33.5749756303378 199.4209127883582 23.62930219549139 -26.75573451413948 197.6602326460787 13.90124979322945 -33.57040454355251 -47.70605161296695 23.63642366208546 -26.75122154759242 -47.70636133229542 23.62930219549139 -26.75573451413948 197.6602326460787 13.90124979322945 -33.57040454355251 -47.70605161296695 23.63642366208546 -26.75122154759242 -47.70636133229542 13.89408604116466 -33.5749756303378 199.4209127883582 2.724052038528953 -26.75573456707889 197.6629489506065 13.89408604116466 -33.5749756303378 199.4209127883582 2.731173556725707 -26.7512215295817 -47.70579392941794 13.90124979322945 -33.57040454355251 -47.70605161296695 13.89408604116466 -33.5749756303378 199.4209127883582 2.731173556725707 -26.7512215295817 -47.70579392941794 13.90124979322945 -33.57040454355251 -47.70605161296695 2.724052038528953 -26.75573456707889 197.6629489506065 1.296271189082745 -13.11285551966284 -47.70584596519732 1.289149665473587 -13.11736856459629 197.663122421586 2.731173556725707 -26.7512215295817 -47.70579392941794 2.724052038528953 -26.75573456707889 197.6629489506065 1.289149665473587 -13.11736856459629 197.663122421586 2.731173556725707 -26.7512215295817 -47.70579392941794 2.724052038528953 -26.75573456707889 197.6629489506065 1.296271189082745 -13.11285551966284 -47.70584596519732 1.289149665473587 -13.11736856459629 197.663122421586 1.296271189082745 -13.11285551966284 -47.70584596519732 11.02432355743281 -6.298185536886876 197.6618510048135 11.03144505794376 -6.293672523705936 -47.70615568452659 1.296271189082745 -13.11285551966284 -47.70584596519732 11.02432355743281 -6.298185536886876 197.6618510048135 11.03144505794376 -6.293672523705936 -47.70615568452659 1.289149665473587 -13.11736856459629 197.663122421586</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID5482\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5480\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID5483\">-2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 -2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 -2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 -2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 -2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 -2.71416450352201e-005 -6.67098906500399e-006 -0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 2.71416450352201e-005 6.67098906500399e-006 0.9999999996094147 0.5210619242131316 0.8535188751195409 3.082178047031497e-005 0.5210619242131316 0.8535188751195409 3.082178047031497e-005 0.5210619242131316 0.8535188751195409 3.082178047031497e-005 0.5210619242131316 0.8535188751195409 3.082178047031497e-005 -0.5210619242131316 -0.8535188751195409 -3.082178047031497e-005 -0.5210619242131316 -0.8535188751195409 -3.082178047031497e-005 -0.5210619242131316 -0.8535188751195409 -3.082178047031497e-005 -0.5210619242131316 -0.8535188751195409 -3.082178047031497e-005 0.9945108799681366 0.1046332102013636 3.078895815590923e-005 0.9945108799681366 0.1046332102013636 3.078895815590923e-005 0.9945108799681366 0.1046332102013636 3.078895815590923e-005 0.9945108799681366 0.1046332102013636 3.078895815590923e-005 -0.9945108799681366 -0.1046332102013636 -3.078895815590923e-005 -0.9945108799681366 -0.1046332102013636 -3.078895815590923e-005 -0.9945108799681366 -0.1046332102013636 -3.078895815590923e-005 -0.9945108799681366 -0.1046332102013636 -3.078895815590923e-005 0.5737207676361732 -0.8190509634818874 1.533686845888606e-006 0.5737207676361732 -0.8190509634818874 1.533686845888606e-006 0.5737207676361732 -0.8190509634818874 1.533686845888606e-006 0.5737207676361732 -0.8190509634818874 1.533686845888606e-006 -0.5737207676361732 0.8190509634818874 -1.533686845888606e-006 -0.5737207676361732 0.8190509634818874 -1.533686845888606e-006 -0.5737207676361732 0.8190509634818874 -1.533686845888606e-006 -0.5737207676361732 0.8190509634818874 -1.533686845888606e-006 -0.5210624886955856 -0.853518530508972 -3.085722050939857e-005 -0.5210624886955856 -0.853518530508972 -3.085722050939857e-005 -0.5210624886955856 -0.853518530508972 -3.085722050939857e-005 -0.5210624886955856 -0.853518530508972 -3.085722050939857e-005 0.5210624886955856 0.853518530508972 3.085722050939857e-005 0.5210624886955856 0.853518530508972 3.085722050939857e-005 0.5210624886955856 0.853518530508972 3.085722050939857e-005 0.5210624886955856 0.853518530508972 3.085722050939857e-005 -0.9945108799680985 -0.1046332102017341 -3.078892791960352e-005 -0.9945108799680985 -0.1046332102017341 -3.078892791960352e-005 -0.9945108799680985 -0.1046332102017341 -3.078892791960352e-005 -0.9945108799680985 -0.1046332102017341 -3.078892791960352e-005 0.9945108799680985 0.1046332102017341 3.078892791960352e-005 0.9945108799680985 0.1046332102017341 3.078892791960352e-005 0.9945108799680985 0.1046332102017341 3.078892791960352e-005 0.9945108799680985 0.1046332102017341 3.078892791960352e-005 -0.5737198708154324 0.8190515916772312 -1.58679441855429e-006 -0.5737198708154324 0.8190515916772312 -1.58679441855429e-006 -0.5737198708154324 0.8190515916772312 -1.58679441855429e-006 -0.5737198708154324 0.8190515916772312 -1.58679441855429e-006 0.5737198708154324 -0.8190515916772312 1.58679441855429e-006 0.5737198708154324 -0.8190515916772312 1.58679441855429e-006 0.5737198708154324 -0.8190515916772312 1.58679441855429e-006 0.5737198708154324 -0.8190515916772312 1.58679441855429e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID5483\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5481\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5479\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5480\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5481\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 2 2 3 4 5 4 3 6 7 8 7 6 9 9 6 10 9 10 11 12 13 14 15 14 13 16 17 18 17 16 19 20 21 22 23 22 21 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 44 45 46 47 46 45 48 49 50 49 48 51 52 53 54 55 54 53 56 57 58 57 56 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5484\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5485\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5487\">20.90849683442411 -0.007715229567793358 397.5527540878329 20.90624604557843 -0.009291836325928671 397.5527540878308</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5487\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5486\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5485\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5486\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5488\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5489\">\r\n\t\t\t\t\t<float_array count=\"1644\" id=\"ID5492\">406.3992405085924 4757.921509905813 277.3087201700359 416.7767150426794 4641.614055418256 277.3232654820259 402.6301692593538 4759.609498564638 277.3086873996147 419.5902312062899 4647.896291258468 277.3223135484074 604.0065710229328 4772.289150811242 277.2971195726766 606.8211521397652 4778.572129924274 277.296167490341 660.8121092799479 4297.69839526197 277.3557597766612 665.0923528492867 4291.736268139626 277.3563206937236 450.0039639985093 4394.2172703859 277.3536556749418 445.7223875382128 4400.180032577395 277.3530947413634 459.7781062747495 4282.942172081071 277.3675803627105 463.0620925205494 4285.300246738373 277.3671131941767 674.8433491529145 4180.472206275913 277.3702443472165 678.1277397902427 4182.830088256869 277.3697771836928 841.6326582321349 2787.004832455889 277.5424207660062 844.8966041676422 2789.533522896425 277.5419324974386 1533.120021287646 2517.500569282357 277.5432224328229 1534.406021126476 2520.800155814221 277.5427318711492 1584.127255955934 2497.620716185618 277.5432815673929 1585.413255794759 2500.920302717483 277.5427910057197 1585.413255794759 2500.920302717483 277.5427910057197 1534.406021126476 2520.800155814221 277.5427318711492 1584.127255955934 2497.620716185618 277.5432815673929 1533.120021287646 2517.500569282357 277.5432224328229 844.8966041676422 2789.533522896425 277.5419324974386 841.6326582321349 2787.004832455889 277.5424207660062 678.1277397902427 4182.830088256869 277.3697771836928 674.8433491529145 4180.472206275913 277.3702443472165 463.0620925205494 4285.300246738373 277.3671131941767 459.7781062747495 4282.942172081071 277.3675803627105 450.0039639985093 4394.2172703859 277.3536556749418 445.7223875382128 4400.180032577395 277.3530947413634 665.0923528492867 4291.736268139626 277.3563206937236 660.8121092799479 4297.69839526197 277.3557597766612 606.8211521397652 4778.572129924274 277.296167490341 604.0065710229328 4772.289150811242 277.2971195726766 419.5902312062899 4647.896291258468 277.3223135484074 416.7767150426794 4641.614055418256 277.3232654820259 406.3992405085924 4757.921509905813 277.3087201700359 402.6301692593538 4759.609498564638 277.3086873996147 416.7768896872317 4641.614514100211 280.8668462527592 402.6301692593538 4759.609498564638 277.3086873996147 416.7767150426794 4641.614055418256 277.3232654820259 402.6303438938171 4759.609957330764 280.8522681703367 402.6303438938171 4759.609957330764 280.8522681703367 416.7768896872317 4641.614514100211 280.8668462527592 402.6301692593538 4759.609498564638 277.3086873996147 416.7767150426794 4641.614055418256 277.3232654820259 591.584825441827 4891.488399994684 277.2823000172284 406.3992405085924 4757.921509905813 277.3087201700359 402.6301692593538 4759.609498564638 277.3086873996147 593.6501530885871 4888.611301529556 277.2825707142241 1144.513856092803 5299.630293064804 277.2022041397399 1146.616764489767 5296.780934648903 277.2024693928839 1146.616764489767 5296.780934648903 277.2024693928839 1144.513856092803 5299.630293064804 277.2022041397399 593.6501530885871 4888.611301529556 277.2825707142241 591.584825441827 4891.488399994684 277.2823000172284 406.3992405085924 4757.921509905813 277.3087201700359 402.6301692593538 4759.609498564638 277.3086873996147 406.3992405085924 4757.921509905813 277.3087201700359 419.5904058508399 4647.896749940419 280.8658943191411 419.5902312062899 4647.896291258468 277.3223135484074 406.3994151430538 4757.921968671932 280.8523009407588 406.3994151430538 4757.921968671932 280.8523009407588 406.3992405085924 4757.921509905813 277.3087201700359 419.5904058508399 4647.896749940419 280.8658943191411 419.5902312062899 4647.896291258468 277.3223135484074 419.5902312062899 4647.896291258468 277.3223135484074 606.82132677357 4778.57258859872 280.8397482610758 606.8211521397652 4778.572129924274 277.296167490341 419.5904058508399 4647.896749940419 280.8658943191411 419.5904058508399 4647.896749940419 280.8658943191411 419.5902312062899 4647.896291258468 277.3223135484074 606.82132677357 4778.57258859872 280.8397482610758 606.8211521397652 4778.572129924274 277.296167490341 606.8211521397652 4778.572129924274 277.296167490341 665.0925274650326 4291.736726964968 280.8999014644403 665.0923528492867 4291.736268139626 277.3563206937236 606.82132677357 4778.57258859872 280.8397482610758 606.82132677357 4778.57258859872 280.8397482610758 606.8211521397652 4778.572129924274 277.296167490341 665.0925274650326 4291.736726964968 280.8999014644403 665.0923528492867 4291.736268139626 277.3563206937236 665.0923528492867 4291.736268139626 277.3563206937236 450.0041386669591 4394.217729186117 280.8972364456585 450.0039639985093 4394.2172703859 277.3536556749418 665.0925274650326 4291.736726964968 280.8999014644403 665.0925274650326 4291.736726964968 280.8999014644403 665.0923528492867 4291.736268139626 277.3563206937236 450.0041386669591 4394.217729186117 280.8972364456585 450.0039639985093 4394.2172703859 277.3536556749418 450.0039639985093 4394.2172703859 277.3536556749418 463.0622671934098 4285.300705501863 280.910693964898 463.0620925205494 4285.300246738373 277.3671131941767 450.0041386669591 4394.217729186117 280.8972364456585 450.0041386669591 4394.217729186117 280.8972364456585 450.0039639985093 4394.2172703859 277.3536556749418 463.0622671934098 4285.300705501863 280.910693964898 463.0620925205494 4285.300246738373 277.3671131941767 463.0622671934098 4285.300705501863 280.910693964898 678.1277397902427 4182.830088256869 277.3697771836928 463.0620925205494 4285.300246738373 277.3671131941767 678.1279144787013 4182.830547012922 280.9133579544139 678.1279144787013 4182.830547012922 280.9133579544139 463.0622671934098 4285.300705501863 280.910693964898 678.1277397902427 4182.830088256869 277.3697771836928 463.0620925205494 4285.300246738373 277.3671131941767 678.1277397902427 4182.830088256869 277.3697771836928 844.8967788564692 2789.53398164939 281.0855132681605 844.8966041676422 2789.533522896425 277.5419324974386 678.1279144787013 4182.830547012922 280.9133579544139 678.1279144787013 4182.830547012922 280.9133579544139 678.1277397902427 4182.830088256869 277.3697771836928 844.8967788564692 2789.53398164939 281.0855132681605 844.8966041676422 2789.533522896425 277.5419324974386 844.8967788564692 2789.53398164939 281.0855132681605 1534.406021126476 2520.800155814221 277.5427318711492 844.8966041676422 2789.533522896425 277.5419324974386 1585.413255794759 2500.920302717483 277.5427910057197 1585.413430483578 2500.92076147045 281.086371776441 1534.406195815289 2520.800614567189 281.0863126418722 1534.406195815289 2520.800614567189 281.0863126418722 844.8967788564692 2789.53398164939 281.0855132681605 1585.413430483578 2500.92076147045 281.086371776441 1585.413255794759 2500.920302717483 277.5427910057197 1534.406021126476 2520.800155814221 277.5427318711492 844.8966041676422 2789.533522896425 277.5419324974386 1585.413255794759 2500.920302717483 277.5427910057197 1584.127430644752 2497.621174938584 281.0868623381143 1584.127255955934 2497.620716185618 277.5432815673929 1585.413430483578 2500.92076147045 281.086371776441 1585.413430483578 2500.92076147045 281.086371776441 1585.413255794759 2500.920302717483 277.5427910057197 1584.127430644752 2497.621174938584 281.0868623381143 1584.127255955934 2497.620716185618 277.5432815673929 1533.120021287646 2517.500569282357 277.5432224328229 841.6328329209641 2787.005291208854 281.0860015367277 841.6326582321349 2787.004832455889 277.5424207660062 1584.127255955934 2497.620716185618 277.5432815673929 1533.120195976464 2517.501028035325 281.0868032035448 1584.127430644752 2497.621174938584 281.0868623381143 1584.127430644752 2497.621174938584 281.0868623381143 1584.127255955934 2497.620716185618 277.5432815673929 1533.120195976464 2517.501028035325 281.0868032035448 841.6328329209641 2787.005291208854 281.0860015367277 1533.120021287646 2517.500569282357 277.5432224328229 841.6326582321349 2787.004832455889 277.5424207660062 841.6328329209641 2787.005291208854 281.0860015367277 674.8433491529145 4180.472206275913 277.3702443472165 841.6326582321349 2787.004832455889 277.5424207660062 674.8435238413736 4180.472665031967 280.913825117938 674.8435238413736 4180.472665031967 280.913825117938 841.6328329209641 2787.005291208854 281.0860015367277 674.8433491529145 4180.472206275913 277.3702443472165 841.6326582321349 2787.004832455889 277.5424207660062 674.8433491529145 4180.472206275913 277.3702443472165 459.7782809476084 4282.942630844551 280.9111611334317 459.7781062747495 4282.942172081071 277.3675803627105 674.8435238413736 4180.472665031967 280.913825117938 674.8435238413736 4180.472665031967 280.913825117938 674.8433491529145 4180.472206275913 277.3702443472165 459.7782809476084 4282.942630844551 280.9111611334317 459.7781062747495 4282.942172081071 277.3675803627105 459.7782809476084 4282.942630844551 280.9111611334317 445.7223875382128 4400.180032577395 277.3530947413634 459.7781062747495 4282.942172081071 277.3675803627105 445.7225622066676 4400.180491377616 280.8966755120808 445.7225622066676 4400.180491377616 280.8966755120808 459.7782809476084 4282.942630844551 280.9111611334317 445.7223875382128 4400.180032577395 277.3530947413634 459.7781062747495 4282.942172081071 277.3675803627105 445.7225622066676 4400.180491377616 280.8966755120808 660.8121092799479 4297.69839526197 277.3557597766612 445.7223875382128 4400.180032577395 277.3530947413634 660.8122838956942 4297.698854087305 280.8993405473771 660.8122838956942 4297.698854087305 280.8993405473771 445.7225622066676 4400.180491377616 280.8966755120808 660.8121092799479 4297.69839526197 277.3557597766612 445.7223875382128 4400.180032577395 277.3530947413634 660.8122838956942 4297.698854087305 280.8993405473771 604.0065710229328 4772.289150811242 277.2971195726766 660.8121092799479 4297.69839526197 277.3557597766612 604.0067456567354 4772.289609485691 280.8407003434119 604.0067456567354 4772.289609485691 280.8407003434119 660.8122838956942 4297.698854087305 280.8993405473771 604.0065710229328 4772.289150811242 277.2971195726766 660.8121092799479 4297.69839526197 277.3557597766612 604.0067456567354 4772.289609485691 280.8407003434119 416.7767150426794 4641.614055418256 277.3232654820259 604.0065710229328 4772.289150811242 277.2971195726766 416.7768896872317 4641.614514100211 280.8668462527592 416.7768896872317 4641.614514100211 280.8668462527592 604.0067456567354 4772.289609485691 280.8407003434119 416.7767150426794 4641.614055418256 277.3232654820259 604.0065710229328 4772.289150811242 277.2971195726766 459.7782809476084 4282.942630844551 280.9111611334317 450.0041386669591 4394.217729186117 280.8972364456585 445.7225622066676 4400.180491377616 280.8966755120808 463.0622671934098 4285.300705501863 280.910693964898 674.8435238413736 4180.472665031967 280.913825117938 678.1279144787013 4182.830547012922 280.9133579544139 841.6328329209641 2787.005291208854 281.0860015367277 844.8967788564692 2789.53398164939 281.0855132681605 1533.120195976464 2517.501028035325 281.0868032035448 1534.406195815289 2520.800614567189 281.0863126418722 1584.127430644752 2497.621174938584 281.0868623381143 1585.413430483578 2500.92076147045 281.086371776441 1706.274376484919 5078.991760659455 280.7466558636399 1256.540867573326 5257.804736128331 280.7456769988679 1249.264281451799 5256.836374401531 280.7461611732146 1702.05784695713 5084.43264659428 280.7461592485736 1679.186964532113 5305.725912504471 280.7186378407644 1674.970435004323 5311.16679843929 280.7181412256985 1785.720577358698 5268.068590100062 280.71826154919 1782.45627988421 5265.538853838179 280.7187500367785 1809.543691836993 5038.804701993103 280.7467674592966 1813.0600237386 5039.224793665495 280.7465396594045 1921.480895337626 4101.854427235603 280.8625472247821 1924.74518998532 4104.3841515138 280.862058735743 2107.399477755672 4029.503334137402 280.8627485495725 2106.866497292038 4033.510785932277 280.8622559485943 4119.003502113328 5517.809704080883 280.5709053178738 4119.427918725633 5513.722167676119 280.5714136385299 4495.683956329005 5345.674552063043 280.5746206871548 4494.212046845005 5342.453597338346 280.5751103034905 1441.084654038946 5398.382976103258 280.718380248903 1448.361240160471 5399.35133783006 280.7178960745567 406.3994151430538 4757.921968671932 280.8523009407588 591.5850001017793 4891.488858778601 280.8258807879478 402.6303438938171 4759.609957330764 280.8522681703367 593.6503277485422 4888.611760313478 280.8261514849435 1144.514030752335 5299.630751848408 280.745784910459 1146.616939149291 5296.781393432506 280.7460501636039 1337.903978957053 5442.335572023764 280.717777378649 1338.437303458184 5438.327998355815 280.7182699454224 660.8122838956942 4297.698854087305 280.8993405473771 665.0925274650326 4291.736726964968 280.8999014644403 416.7768896872317 4641.614514100211 280.8668462527592 419.5904058508399 4647.896749940419 280.8658943191411 604.0067456567354 4772.289609485691 280.8407003434119 606.82132677357 4778.57258859872 280.8397482610758 665.0925274650326 4291.736726964968 280.8999014644403 660.8122838956942 4297.698854087305 280.8993405473771 606.82132677357 4778.57258859872 280.8397482610758 604.0067456567354 4772.289609485691 280.8407003434119 419.5904058508399 4647.896749940419 280.8658943191411 416.7768896872317 4641.614514100211 280.8668462527592 406.3994151430538 4757.921968671932 280.8523009407588 402.6303438938171 4759.609957330764 280.8522681703367 450.0041386669591 4394.217729186117 280.8972364456585 445.7225622066676 4400.180491377616 280.8966755120808 1441.084654038946 5398.382976103258 280.718380248903 1338.437303458184 5438.327998355815 280.7182699454224 1448.361240160471 5399.35133783006 280.7178960745567 1337.903978957053 5442.335572023764 280.717777378649 1146.616939149291 5296.781393432506 280.7460501636039 1144.514030752335 5299.630751848408 280.745784910459 593.6503277485422 4888.611760313478 280.8261514849435 591.5850001017793 4891.488858778601 280.8258807879478 1256.540867573326 5257.804736128331 280.7456769988679 1249.264281451799 5256.836374401531 280.7461611732146 4494.212046845005 5342.453597338346 280.5751103034905 4119.427918725633 5513.722167676119 280.5714136385299 4495.683956329005 5345.674552063043 280.5746206871548 4119.003502113328 5517.809704080883 280.5709053178738 2107.399477755672 4029.503334137402 280.8627485495725 2106.866497292038 4033.510785932277 280.8622559485943 1924.74518998532 4104.3841515138 280.862058735743 1921.480895337626 4101.854427235603 280.8625472247821 1813.0600237386 5039.224793665495 280.7465396594045 1809.543691836993 5038.804701993103 280.7467674592966 1785.720577358698 5268.068590100062 280.71826154919 1782.45627988421 5265.538853838179 280.7187500367785 1679.186964532113 5305.725912504471 280.7186378407644 1674.970435004323 5311.16679843929 280.7181412256985 1706.274376484919 5078.991760659455 280.7466558636399 1702.05784695713 5084.43264659428 280.7461592485736 1585.413430483578 2500.92076147045 281.086371776441 1584.127430644752 2497.621174938584 281.0868623381143 1534.406195815289 2520.800614567189 281.0863126418722 1533.120195976464 2517.501028035325 281.0868032035448 844.8967788564692 2789.53398164939 281.0855132681605 841.6328329209641 2787.005291208854 281.0860015367277 678.1279144787013 4182.830547012922 280.9133579544139 674.8435238413736 4180.472665031967 280.913825117938 463.0622671934098 4285.300705501863 280.910693964898 459.7782809476084 4282.942630844551 280.9111611334317 402.6301692593538 4759.609498564638 277.3086873996147 591.5850001017793 4891.488858778601 280.8258807879478 591.584825441827 4891.488399994684 277.2823000172284 402.6303438938171 4759.609957330764 280.8522681703367 402.6303438938171 4759.609957330764 280.8522681703367 402.6301692593538 4759.609498564638 277.3086873996147 591.5850001017793 4891.488858778601 280.8258807879478 591.584825441827 4891.488399994684 277.2823000172284 1144.514030752335 5299.630751848408 280.745784910459 1144.513856092803 5299.630293064804 277.2022041397399 1144.514030752335 5299.630751848408 280.745784910459 1144.513856092803 5299.630293064804 277.2022041397399 1337.903804266962 5442.335113217609 277.1741966079338 1146.616764489767 5296.780934648903 277.2024693928839 1144.513856092803 5299.630293064804 277.2022041397399 1338.437128768095 5438.32753954966 277.174689174707 1448.361065321337 5399.350879081899 277.1743153038416 1441.084479199812 5398.382517355094 277.1747994781875 1256.540692689307 5257.804277347053 277.20209622816 1249.26410656778 5256.835915620244 277.2025804025064 1785.720402606877 5268.06813129091 277.1746807784782 1679.186789950919 5305.725453628909 277.1750570700539 1674.970260423132 5311.16633956374 277.174560454987 1782.456105132387 5265.538395029033 277.1751692660675 1809.543517079175 5038.804243234099 277.2031866885795 1813.059848980788 5039.224334906488 277.202958888687 1921.480720585047 4101.85396843279 277.3189664540699 1924.745015232734 4104.383692710994 277.3184779650299 2107.399303077387 4029.502875305677 277.3191677788605 2106.866322613753 4033.510327100556 277.3186751778828 4119.00332743291 5517.809245247594 277.0273245471625 4119.427744045215 5513.721708842829 277.0278328678183 4495.68378161141 5345.674093246745 277.0310399164424 4494.211872127406 5342.453138522039 277.0315295327783 1702.057672378895 5084.432187694002 277.2025784778652 1706.274201906683 5078.991301759176 277.2030750929312 1702.057672378895 5084.432187694002 277.2025784778652 1256.540692689307 5257.804277347053 277.20209622816 1706.274201906683 5078.991301759176 277.2030750929312 1249.26410656778 5256.835915620244 277.2025804025064 1679.186789950919 5305.725453628909 277.1750570700539 1674.970260423132 5311.16633956374 277.174560454987 4494.211872127406 5342.453138522039 277.0315295327783 4495.68378161141 5345.674093246745 277.0310399164424 4119.427744045215 5513.721708842829 277.0278328678183 4119.00332743291 5517.809245247594 277.0273245471625 2107.399303077387 4029.502875305677 277.3191677788605 2106.866322613753 4033.510327100556 277.3186751778828 1924.745015232734 4104.383692710994 277.3184779650299 1921.480720585047 4101.85396843279 277.3189664540699 1813.059848980788 5039.224334906488 277.202958888687 1809.543517079175 5038.804243234099 277.2031866885795 1785.720402606877 5268.06813129091 277.1746807784782 1782.456105132387 5265.538395029033 277.1751692660675 1448.361065321337 5399.350879081899 277.1743153038416 1441.084479199812 5398.382517355094 277.1747994781875 1338.437128768095 5438.32753954966 277.174689174707 1337.903804266962 5442.335113217609 277.1741966079338 1146.616764489767 5296.780934648903 277.2024693928839 1144.513856092803 5299.630293064804 277.2022041397399 1146.616939149291 5296.781393432506 280.7460501636039 593.6501530885871 4888.611301529556 277.2825707142241 1146.616764489767 5296.780934648903 277.2024693928839 593.6503277485422 4888.611760313478 280.8261514849435 593.6503277485422 4888.611760313478 280.8261514849435 1146.616939149291 5296.781393432506 280.7460501636039 593.6501530885871 4888.611301529556 277.2825707142241 1146.616764489767 5296.780934648903 277.2024693928839 406.3992405085924 4757.921509905813 277.3087201700359 406.3994151430538 4757.921968671932 280.8523009407588 406.3994151430538 4757.921968671932 280.8523009407588 406.3992405085924 4757.921509905813 277.3087201700359 1441.084479199812 5398.382517355094 277.1747994781875 1338.437303458184 5438.327998355815 280.7182699454224 1338.437128768095 5438.32753954966 277.174689174707 1441.084654038946 5398.382976103258 280.718380248903 1441.084654038946 5398.382976103258 280.718380248903 1441.084479199812 5398.382517355094 277.1747994781875 1338.437303458184 5438.327998355815 280.7182699454224 1338.437128768095 5438.32753954966 277.174689174707 1249.26410656778 5256.835915620244 277.2025804025064 1441.084654038946 5398.382976103258 280.718380248903 1441.084479199812 5398.382517355094 277.1747994781875 1249.264281451799 5256.836374401531 280.7461611732146 1249.264281451799 5256.836374401531 280.7461611732146 1249.26410656778 5256.835915620244 277.2025804025064 1441.084654038946 5398.382976103258 280.718380248903 1441.084479199812 5398.382517355094 277.1747994781875 1706.274201906683 5078.991301759176 277.2030750929312 1249.264281451799 5256.836374401531 280.7461611732146 1249.26410656778 5256.835915620244 277.2025804025064 1706.274376484919 5078.991760659455 280.7466558636399 1706.274376484919 5078.991760659455 280.7466558636399 1706.274201906683 5078.991301759176 277.2030750929312 1249.264281451799 5256.836374401531 280.7461611732146 1249.26410656778 5256.835915620244 277.2025804025064 1679.186789950919 5305.725453628909 277.1750570700539 1706.274376484919 5078.991760659455 280.7466558636399 1706.274201906683 5078.991301759176 277.2030750929312 1679.186964532113 5305.725912504471 280.7186378407644 1679.186964532113 5305.725912504471 280.7186378407644 1679.186789950919 5305.725453628909 277.1750570700539 1706.274376484919 5078.991760659455 280.7466558636399 1706.274201906683 5078.991301759176 277.2030750929312 1782.456105132387 5265.538395029033 277.1751692660675 1679.186964532113 5305.725912504471 280.7186378407644 1679.186789950919 5305.725453628909 277.1750570700539 1782.45627988421 5265.538853838179 280.7187500367785 1782.45627988421 5265.538853838179 280.7187500367785 1782.456105132387 5265.538395029033 277.1751692660675 1679.186964532113 5305.725912504471 280.7186378407644 1679.186789950919 5305.725453628909 277.1750570700539 1809.543691836993 5038.804701993103 280.7467674592966 1782.456105132387 5265.538395029033 277.1751692660675 1809.543517079175 5038.804243234099 277.2031866885795 1782.45627988421 5265.538853838179 280.7187500367785 1782.45627988421 5265.538853838179 280.7187500367785 1809.543691836993 5038.804701993103 280.7467674592966 1782.456105132387 5265.538395029033 277.1751692660675 1809.543517079175 5038.804243234099 277.2031866885795 1921.480895337626 4101.854427235603 280.8625472247821 1809.543517079175 5038.804243234099 277.2031866885795 1921.480720585047 4101.85396843279 277.3189664540699 1809.543691836993 5038.804701993103 280.7467674592966 1809.543691836993 5038.804701993103 280.7467674592966 1921.480895337626 4101.854427235603 280.8625472247821 1809.543517079175 5038.804243234099 277.2031866885795 1921.480720585047 4101.85396843279 277.3189664540699 2107.399303077387 4029.502875305677 277.3191677788605 1921.480895337626 4101.854427235603 280.8625472247821 1921.480720585047 4101.85396843279 277.3189664540699 2107.399477755672 4029.503334137402 280.8627485495725 2107.399477755672 4029.503334137402 280.8627485495725 2107.399303077387 4029.502875305677 277.3191677788605 1921.480895337626 4101.854427235603 280.8625472247821 1921.480720585047 4101.85396843279 277.3189664540699 4119.427918725633 5513.722167676119 280.5714136385299 2107.399303077387 4029.502875305677 277.3191677788605 4119.427744045215 5513.721708842829 277.0278328678183 2107.399477755672 4029.503334137402 280.8627485495725 2107.399477755672 4029.503334137402 280.8627485495725 4119.427918725633 5513.722167676119 280.5714136385299 2107.399303077387 4029.502875305677 277.3191677788605 4119.427744045215 5513.721708842829 277.0278328678183 4494.211872127406 5342.453138522039 277.0315295327783 4119.427918725633 5513.722167676119 280.5714136385299 4119.427744045215 5513.721708842829 277.0278328678183 4494.212046790115 5342.453597194201 280.5739970535841 4494.212046845005 5342.453597338346 280.5751103034905 4494.212046845005 5342.453597338346 280.5751103034905 4494.212046790115 5342.453597194201 280.5739970535841 4119.427918725633 5513.722167676119 280.5714136385299 4494.211872127406 5342.453138522039 277.0315295327783 4119.427744045215 5513.721708842829 277.0278328678183 4495.68378161141 5345.674093246745 277.0310399164424 4494.212046790115 5342.453597194201 280.5739970535841 4494.211872127406 5342.453138522039 277.0315295327783 4494.212046845005 5342.453597338346 280.5751103034905 4495.683956329005 5345.674552063043 280.5746206871548 4495.683956329005 5345.674552063043 280.5746206871548 4495.68378161141 5345.674093246745 277.0310399164424 4494.212046845005 5342.453597338346 280.5751103034905 4494.212046790115 5342.453597194201 280.5739970535841 4494.211872127406 5342.453138522039 277.0315295327783 4119.003502113328 5517.809704080883 280.5709053178738 4495.68378161141 5345.674093246745 277.0310399164424 4119.00332743291 5517.809245247594 277.0273245471625 4495.683956329005 5345.674552063043 280.5746206871548 4495.683956329005 5345.674552063043 280.5746206871548 4119.003502113328 5517.809704080883 280.5709053178738 4495.68378161141 5345.674093246745 277.0310399164424 4119.00332743291 5517.809245247594 277.0273245471625 2106.866322613753 4033.510327100556 277.3186751778828 4119.003502113328 5517.809704080883 280.5709053178738 4119.00332743291 5517.809245247594 277.0273245471625 2106.866497292038 4033.510785932277 280.8622559485943 2106.866497292038 4033.510785932277 280.8622559485943 2106.866322613753 4033.510327100556 277.3186751778828 4119.003502113328 5517.809704080883 280.5709053178738 4119.00332743291 5517.809245247594 277.0273245471625 1924.74518998532 4104.3841515138 280.862058735743 2106.866322613753 4033.510327100556 277.3186751778828 1924.745015232734 4104.383692710994 277.3184779650299 2106.866497292038 4033.510785932277 280.8622559485943 2106.866497292038 4033.510785932277 280.8622559485943 1924.74518998532 4104.3841515138 280.862058735743 2106.866322613753 4033.510327100556 277.3186751778828 1924.745015232734 4104.383692710994 277.3184779650299 1813.059848980788 5039.224334906488 277.202958888687 1924.74518998532 4104.3841515138 280.862058735743 1924.745015232734 4104.383692710994 277.3184779650299 1813.0600237386 5039.224793665495 280.7465396594045 1813.0600237386 5039.224793665495 280.7465396594045 1813.059848980788 5039.224334906488 277.202958888687 1924.74518998532 4104.3841515138 280.862058735743 1924.745015232734 4104.383692710994 277.3184779650299 1785.720402606877 5268.06813129091 277.1746807784782 1813.0600237386 5039.224793665495 280.7465396594045 1813.059848980788 5039.224334906488 277.202958888687 1785.720577358698 5268.068590100062 280.71826154919 1785.720577358698 5268.068590100062 280.71826154919 1785.720402606877 5268.06813129091 277.1746807784782 1813.0600237386 5039.224793665495 280.7465396594045 1813.059848980788 5039.224334906488 277.202958888687 1674.970435004323 5311.16679843929 280.7181412256985 1785.720402606877 5268.06813129091 277.1746807784782 1674.970260423132 5311.16633956374 277.174560454987 1785.720577358698 5268.068590100062 280.71826154919 1785.720577358698 5268.068590100062 280.71826154919 1674.970435004323 5311.16679843929 280.7181412256985 1785.720402606877 5268.06813129091 277.1746807784782 1674.970260423132 5311.16633956374 277.174560454987 1702.05784695713 5084.43264659428 280.7461592485736 1674.970260423132 5311.16633956374 277.174560454987 1702.057672378895 5084.432187694002 277.2025784778652 1674.970435004323 5311.16679843929 280.7181412256985 1674.970435004323 5311.16679843929 280.7181412256985 1702.05784695713 5084.43264659428 280.7461592485736 1674.970260423132 5311.16633956374 277.174560454987 1702.057672378895 5084.432187694002 277.2025784778652 1256.540867573326 5257.804736128331 280.7456769988679 1702.057672378895 5084.432187694002 277.2025784778652 1256.540692689307 5257.804277347053 277.20209622816 1702.05784695713 5084.43264659428 280.7461592485736 1702.05784695713 5084.43264659428 280.7461592485736 1256.540867573326 5257.804736128331 280.7456769988679 1702.057672378895 5084.432187694002 277.2025784778652 1256.540692689307 5257.804277347053 277.20209622816 1448.361240160471 5399.35133783006 280.7178960745567 1256.540692689307 5257.804277347053 277.20209622816 1448.361065321337 5399.350879081899 277.1743153038416 1256.540867573326 5257.804736128331 280.7456769988679 1256.540867573326 5257.804736128331 280.7456769988679 1448.361240160471 5399.35133783006 280.7178960745567 1256.540692689307 5257.804277347053 277.20209622816 1448.361065321337 5399.350879081899 277.1743153038416 1337.903978957053 5442.335572023764 280.717777378649 1448.361065321337 5399.350879081899 277.1743153038416 1337.903804266962 5442.335113217609 277.1741966079338 1448.361240160471 5399.35133783006 280.7178960745567 1448.361240160471 5399.35133783006 280.7178960745567 1337.903978957053 5442.335572023764 280.717777378649 1448.361065321337 5399.350879081899 277.1743153038416 1337.903804266962 5442.335113217609 277.1741966079338 1144.513856092803 5299.630293064804 277.2022041397399 1337.903978957053 5442.335572023764 280.717777378649 1337.903804266962 5442.335113217609 277.1741966079338 1144.514030752335 5299.630751848408 280.745784910459 1144.514030752335 5299.630751848408 280.745784910459 1144.513856092803 5299.630293064804 277.2022041397399 1337.903978957053 5442.335572023764 280.717777378649 1337.903804266962 5442.335113217609 277.1741966079338 1338.437303458184 5438.327998355815 280.7182699454224 1146.616764489767 5296.780934648903 277.2024693928839 1338.437128768095 5438.32753954966 277.174689174707 1146.616939149291 5296.781393432506 280.7460501636039 1146.616939149291 5296.781393432506 280.7460501636039 1338.437303458184 5438.327998355815 280.7182699454224 1146.616764489767 5296.780934648903 277.2024693928839 1338.437128768095 5438.32753954966 277.174689174707</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"548\" source=\"#ID5492\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5490\">\r\n\t\t\t\t\t<float_array count=\"1644\" id=\"ID5493\">-4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 -4.929662756798595e-005 -0.0001294603295568237 -0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 4.929662756798595e-005 0.0001294603295568237 0.9999999904049327 -0.9928896799180947 -0.119038142509724 6.43426621162865e-005 -0.9928896799180947 -0.119038142509724 6.43426621162865e-005 -0.9928896799180947 -0.119038142509724 6.43426621162865e-005 -0.9928896799180947 -0.119038142509724 6.43426621162865e-005 0.9928896799180947 0.119038142509724 -6.43426621162865e-005 0.9928896799180947 0.119038142509724 -6.43426621162865e-005 0.9928896799180947 0.119038142509724 -6.43426621162865e-005 0.9928896799180947 0.119038142509724 -6.43426621162865e-005 -4.926110132621921e-005 -0.0001295085356005131 -0.9999999904004415 -4.926110132621921e-005 -0.0001295085356005131 -0.9999999904004415 -4.926110132621921e-005 -0.0001295085356005131 -0.9999999904004415 -4.926110132621921e-005 -0.0001295085356005131 -0.9999999904004415 -4.926110132621921e-005 -0.0001295085356005131 -0.9999999904004415 -4.926110132621921e-005 -0.0001295085356005131 -0.9999999904004415 4.926110132621921e-005 0.0001295085356005131 0.9999999904004415 4.926110132621921e-005 0.0001295085356005131 0.9999999904004415 4.926110132621921e-005 0.0001295085356005131 0.9999999904004415 4.926110132621921e-005 0.0001295085356005131 0.9999999904004415 4.926110132621921e-005 0.0001295085356005131 0.9999999904004415 4.926110132621921e-005 0.0001295085356005131 0.9999999904004415 0.9928896799180945 0.1190381425097251 -6.434266177470882e-005 0.9928896799180945 0.1190381425097251 -6.434266177470882e-005 0.9928896799180945 0.1190381425097251 -6.434266177470882e-005 0.9928896799180945 0.1190381425097251 -6.434266177470882e-005 -0.9928896799180945 -0.1190381425097251 6.434266177470882e-005 -0.9928896799180945 -0.1190381425097251 6.434266177470882e-005 -0.9928896799180945 -0.1190381425097251 6.434266177470882e-005 -0.9928896799180945 -0.1190381425097251 6.434266177470882e-005 -0.5723277505071581 0.8200249629890611 -7.793718944494036e-005 -0.5723277505071581 0.8200249629890611 -7.793718944494036e-005 -0.5723277505071581 0.8200249629890611 -7.793718944494036e-005 -0.5723277505071581 0.8200249629890611 -7.793718944494036e-005 0.5723277505071581 -0.8200249629890611 7.793718944494036e-005 0.5723277505071581 -0.8200249629890611 7.793718944494036e-005 0.5723277505071581 -0.8200249629890611 7.793718944494036e-005 0.5723277505071581 -0.8200249629890611 7.793718944494036e-005 0.9929127658930183 0.1188454256174015 -6.431559217001346e-005 0.9929127658930183 0.1188454256174015 -6.431559217001346e-005 0.9929127658930183 0.1188454256174015 -6.431559217001346e-005 0.9929127658930183 0.1188454256174015 -6.431559217001346e-005 -0.9929127658930183 -0.1188454256174015 6.431559217001346e-005 -0.9929127658930183 -0.1188454256174015 6.431559217001346e-005 -0.9929127658930183 -0.1188454256174015 6.431559217001346e-005 -0.9929127658930183 -0.1188454256174015 6.431559217001346e-005 -0.4301318694939904 -0.9027660581666748 0.0001380862378559187 -0.4301318694939904 -0.9027660581666748 0.0001380862378559187 -0.4301318694939904 -0.9027660581666748 0.0001380862378559187 -0.4301318694939904 -0.9027660581666748 0.0001380862378559187 0.4301318694939904 0.9027660581666748 -0.0001380862378559187 0.4301318694939904 0.9027660581666748 -0.0001380862378559187 0.4301318694939904 0.9027660581666748 -0.0001380862378559187 0.4301318694939904 0.9027660581666748 -0.0001380862378559187 0.99288967991757 0.1190381425083322 -6.435333234108462e-005 0.99288967991757 0.1190381425083322 -6.435333234108462e-005 0.99288967991757 0.1190381425083322 -6.435333234108462e-005 0.99288967991757 0.1190381425083322 -6.435333234108462e-005 -0.99288967991757 -0.1190381425083322 6.435333234108462e-005 -0.99288967991757 -0.1190381425083322 6.435333234108462e-005 -0.99288967991757 -0.1190381425083322 6.435333234108462e-005 -0.99288967991757 -0.1190381425083322 6.435333234108462e-005 0.4301318410577122 0.9027660717167713 -0.000138077413685032 0.4301318410577122 0.9027660717167713 -0.000138077413685032 0.4301318410577122 0.9027660717167713 -0.000138077413685032 0.4301318410577122 0.9027660717167713 -0.000138077413685032 -0.4301318410577122 -0.9027660717167713 0.000138077413685032 -0.4301318410577122 -0.9027660717167713 0.000138077413685032 -0.4301318410577122 -0.9027660717167713 0.000138077413685032 -0.4301318410577122 -0.9027660717167713 0.000138077413685032 0.9929127658921283 0.1188454256150651 -6.433364272464104e-005 0.9929127658921283 0.1188454256150651 -6.433364272464104e-005 0.9929127658921283 0.1188454256150651 -6.433364272464104e-005 0.9929127658921283 0.1188454256150651 -6.433364272464104e-005 -0.9929127658921283 -0.1188454256150651 6.433364272464104e-005 -0.9929127658921283 -0.1188454256150651 6.433364272464104e-005 -0.9929127658921283 -0.1188454256150651 6.433364272464104e-005 -0.9929127658921283 -0.1188454256150651 6.433364272464104e-005 0.3631396480061752 0.9317347137769066 -0.0001385244289597858 0.3631396480061752 0.9317347137769066 -0.0001385244289597858 0.3631396480061752 0.9317347137769066 -0.0001385244289597858 0.3631396480061752 0.9317347137769066 -0.0001385244289597858 0.3631396480061752 0.9317347137769066 -0.0001385244289597858 0.3631396480061752 0.9317347137769066 -0.0001385244289597858 -0.3631396480061752 -0.9317347137769066 0.0001385244289597858 -0.3631396480061752 -0.9317347137769066 0.0001385244289597858 -0.3631396480061752 -0.9317347137769066 0.0001385244289597858 -0.3631396480061752 -0.9317347137769066 0.0001385244289597858 -0.3631396480061752 -0.9317347137769066 0.0001385244289597858 -0.3631396480061752 -0.9317347137769066 0.0001385244289597858 0.9317347227702348 -0.3631396513506989 1.080194417836089e-006 0.9317347227702348 -0.3631396513506989 1.080194417836089e-006 0.9317347227702348 -0.3631396513506989 1.080194417836089e-006 0.9317347227702348 -0.3631396513506989 1.080194417836089e-006 -0.9317347227702348 0.3631396513506989 -1.080194417836089e-006 -0.9317347227702348 0.3631396513506989 -1.080194417836089e-006 -0.9317347227702348 0.3631396513506989 -1.080194417836089e-006 -0.9317347227702348 0.3631396513506989 -1.080194417836089e-006 -0.3631396480061753 -0.9317347137769065 0.0001385244289500338 -0.3631396480061753 -0.9317347137769065 0.0001385244289500338 -0.3631396480061753 -0.9317347137769065 0.0001385244289500338 -0.3631396480061753 -0.9317347137769065 0.0001385244289500338 -0.3631396480061753 -0.9317347137769065 0.0001385244289500338 -0.3631396480061753 -0.9317347137769065 0.0001385244289500338 0.3631396480061753 0.9317347137769065 -0.0001385244289500338 0.3631396480061753 0.9317347137769065 -0.0001385244289500338 0.3631396480061753 0.9317347137769065 -0.0001385244289500338 0.3631396480061753 0.9317347137769065 -0.0001385244289500338 0.3631396480061753 0.9317347137769065 -0.0001385244289500338 0.3631396480061753 0.9317347137769065 -0.0001385244289500338 -0.9929127658921283 -0.1188454256150651 6.433364248018815e-005 -0.9929127658921283 -0.1188454256150651 6.433364248018815e-005 -0.9929127658921283 -0.1188454256150651 6.433364248018815e-005 -0.9929127658921283 -0.1188454256150651 6.433364248018815e-005 0.9929127658921283 0.1188454256150651 -6.433364248018815e-005 0.9929127658921283 0.1188454256150651 -6.433364248018815e-005 0.9929127658921283 0.1188454256150651 -6.433364248018815e-005 0.9929127658921283 0.1188454256150651 -6.433364248018815e-005 -0.4301318410577131 -0.9027660717167712 0.0001380774135437997 -0.4301318410577131 -0.9027660717167712 0.0001380774135437997 -0.4301318410577131 -0.9027660717167712 0.0001380774135437997 -0.4301318410577131 -0.9027660717167712 0.0001380774135437997 0.4301318410577131 0.9027660717167712 -0.0001380774135437997 0.4301318410577131 0.9027660717167712 -0.0001380774135437997 0.4301318410577131 0.9027660717167712 -0.0001380774135437997 0.4301318410577131 0.9027660717167712 -0.0001380774135437997 -0.9928896799175703 -0.1190381425083306 6.43533322212625e-005 -0.9928896799175703 -0.1190381425083306 6.43533322212625e-005 -0.9928896799175703 -0.1190381425083306 6.43533322212625e-005 -0.9928896799175703 -0.1190381425083306 6.43533322212625e-005 0.9928896799175703 0.1190381425083306 -6.43533322212625e-005 0.9928896799175703 0.1190381425083306 -6.43533322212625e-005 0.9928896799175703 0.1190381425083306 -6.43533322212625e-005 0.9928896799175703 0.1190381425083306 -6.43533322212625e-005 0.4301318694939905 0.9027660581666746 -0.0001380862380288184 0.4301318694939905 0.9027660581666746 -0.0001380862380288184 0.4301318694939905 0.9027660581666746 -0.0001380862380288184 0.4301318694939905 0.9027660581666746 -0.0001380862380288184 -0.4301318694939905 -0.9027660581666746 0.0001380862380288184 -0.4301318694939905 -0.9027660581666746 0.0001380862380288184 -0.4301318694939905 -0.9027660581666746 0.0001380862380288184 -0.4301318694939905 -0.9027660581666746 0.0001380862380288184 -0.9929127658930181 -0.1188454256174012 6.431559226413846e-005 -0.9929127658930181 -0.1188454256174012 6.431559226413846e-005 -0.9929127658930181 -0.1188454256174012 6.431559226413846e-005 -0.9929127658930181 -0.1188454256174012 6.431559226413846e-005 0.9929127658930181 0.1188454256174012 -6.431559226413846e-005 0.9929127658930181 0.1188454256174012 -6.431559226413846e-005 0.9929127658930181 0.1188454256174012 -6.431559226413846e-005 0.9929127658930181 0.1188454256174012 -6.431559226413846e-005 0.572327750507158 -0.8200249629890609 7.793718974001768e-005 0.572327750507158 -0.8200249629890609 7.793718974001768e-005 0.572327750507158 -0.8200249629890609 7.793718974001768e-005 0.572327750507158 -0.8200249629890609 7.793718974001768e-005 -0.572327750507158 0.8200249629890609 -7.793718974001768e-005 -0.572327750507158 0.8200249629890609 -7.793718974001768e-005 -0.572327750507158 0.8200249629890609 -7.793718974001768e-005 -0.572327750507158 0.8200249629890609 -7.793718974001768e-005 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 4.929709435773757e-005 0.0001294603626035625 0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -4.929709435773757e-005 -0.0001294603626035625 -0.9999999904049055 -0.5723277505082108 0.8200249629863197 -7.795829859671716e-005 -0.5831543304628126 0.8123613857271567 -7.643247025433159e-005 -0.5831543304628259 0.8123613857271472 -7.64324702543297e-005 -0.5723277505082108 0.8200249629863197 -7.795829859671716e-005 0.5723277505082108 -0.8200249629863197 7.795829859671716e-005 0.5723277505082108 -0.8200249629863197 7.795829859671716e-005 0.5831543304628126 -0.8123613857271567 7.643247025433159e-005 0.5831543304628259 -0.8123613857271472 7.64324702543297e-005 -0.5938783071816545 0.8045548773390551 -7.489319398168524e-005 -0.5938783071816545 0.8045548773390551 -7.489319398168524e-005 0.5938783071816545 -0.8045548773390551 7.489319398168524e-005 0.5938783071816545 -0.8045548773390551 7.489319398168524e-005 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 -4.929725279563469e-005 -0.0001294602824599093 -0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 4.929725279563469e-005 0.0001294602824599093 0.9999999904049081 0.5938783071816536 -0.8045548773390558 7.489319429159272e-005 0.5831543304628152 -0.8123613857271547 7.643247055246183e-005 0.5938783071816536 -0.8045548773390558 7.489319429159272e-005 0.5831543304628227 -0.8123613857271492 7.643247055246074e-005 -0.5831543304628227 0.8123613857271492 -7.643247055246074e-005 -0.5938783071816536 0.8045548773390558 -7.489319429159272e-005 -0.5831543304628152 0.8123613857271547 -7.643247055246183e-005 -0.5938783071816536 0.8045548773390558 -7.489319429159272e-005 0.5723277505082112 -0.8200249629863194 7.795829888301853e-005 0.5723277505082112 -0.8200249629863194 7.795829888301853e-005 -0.5723277505082112 0.8200249629863194 -7.795829888301853e-005 -0.5723277505082112 0.8200249629863194 -7.795829888301853e-005 -0.3626560860514547 -0.9319230354791971 0.0001385390897970206 -0.3626560860514547 -0.9319230354791971 0.0001385390897970206 -0.3626560860514547 -0.9319230354791971 0.0001385390897970206 -0.3626560860514547 -0.9319230354791971 0.0001385390897970206 0.3626560860514547 0.9319230354791971 -0.0001385390897970206 0.3626560860514547 0.9319230354791971 -0.0001385390897970206 0.3626560860514547 0.9319230354791971 -0.0001385390897970206 0.3626560860514547 0.9319230354791971 -0.0001385390897970206 -0.5937569807418005 0.8046444197373592 -7.487262328626518e-005 -0.5937569807418005 0.8046444197373592 -7.487262328626518e-005 -0.5937569807418005 0.8046444197373592 -7.487262328626518e-005 -0.5937569807418005 0.8046444197373592 -7.487262328626518e-005 0.5937569807418005 -0.8046444197373592 7.487262328626518e-005 0.5937569807418005 -0.8046444197373592 7.487262328626518e-005 0.5937569807418005 -0.8046444197373592 7.487262328626518e-005 0.5937569807418005 -0.8046444197373592 7.487262328626518e-005 -0.3626560860507244 -0.9319230354775031 0.0001385523945461129 -0.3626560860507244 -0.9319230354775031 0.0001385523945461129 -0.3626560860507244 -0.9319230354775031 0.0001385523945461129 -0.3626560860507244 -0.9319230354775031 0.0001385523945461129 0.3626560860507244 0.9319230354775031 -0.0001385523945461129 0.3626560860507244 0.9319230354775031 -0.0001385523945461129 0.3626560860507244 0.9319230354775031 -0.0001385523945461129 0.3626560860507244 0.9319230354775031 -0.0001385523945461129 0.9929392230594375 0.1186241761959632 -6.428024627587091e-005 0.9929392230594375 0.1186241761959632 -6.428024627587091e-005 0.9929392230594375 0.1186241761959632 -6.428024627587091e-005 0.9929392230594375 0.1186241761959632 -6.428024627587091e-005 -0.9929392230594375 -0.1186241761959632 6.428024627587091e-005 -0.9929392230594375 -0.1186241761959632 6.428024627587091e-005 -0.9929392230594375 -0.1186241761959632 6.428024627587091e-005 -0.9929392230594375 -0.1186241761959632 6.428024627587091e-005 -0.3626560860510976 -0.9319230354782797 0.0001385461947829042 -0.3626560860510976 -0.9319230354782797 0.0001385461947829042 -0.3626560860510976 -0.9319230354782797 0.0001385461947829042 -0.3626560860510976 -0.9319230354782797 0.0001385461947829042 0.3626560860510976 0.9319230354782797 -0.0001385461947829042 0.3626560860510976 0.9319230354782797 -0.0001385461947829042 0.3626560860510976 0.9319230354782797 -0.0001385461947829042 0.3626560860510976 0.9319230354782797 -0.0001385461947829042 -0.9929392230571881 -0.1186241761900772 6.432583670440634e-005 -0.9929392230571881 -0.1186241761900772 6.432583670440634e-005 -0.9929392230571881 -0.1186241761900772 6.432583670440634e-005 -0.9929392230571881 -0.1186241761900772 6.432583670440634e-005 0.9929392230571881 0.1186241761900772 -6.432583670440634e-005 0.9929392230571881 0.1186241761900772 -6.432583670440634e-005 0.9929392230571881 0.1186241761900772 -6.432583670440634e-005 0.9929392230571881 0.1186241761900772 -6.432583670440634e-005 -0.9929389869725868 -0.118626152310562 6.43260808851217e-005 -0.9929389869725868 -0.118626152310562 6.43260808851217e-005 -0.9929389869725868 -0.118626152310562 6.43260808851217e-005 -0.9929389869725868 -0.118626152310562 6.43260808851217e-005 0.9929389869725868 0.118626152310562 -6.43260808851217e-005 0.9929389869725868 0.118626152310562 -6.43260808851217e-005 0.9929389869725868 0.118626152310562 -6.43260808851217e-005 0.9929389869725868 0.118626152310562 -6.43260808851217e-005 -0.3626614342187972 -0.9319209542315052 0.0001385445984925038 -0.3626614342187972 -0.9319209542315052 0.0001385445984925038 -0.3626614342187972 -0.9319209542315052 0.0001385445984925038 -0.3626614342187972 -0.9319209542315052 0.0001385445984925038 0.3626614342187972 0.9319209542315052 -0.0001385445984925038 0.3626614342187972 0.9319209542315052 -0.0001385445984925038 0.3626614342187972 0.9319209542315052 -0.0001385445984925038 0.3626614342187972 0.9319209542315052 -0.0001385445984925038 0.5936322626408188 -0.804736435820105 7.493661225260739e-005 0.5936322626408188 -0.804736435820105 7.493661225260739e-005 0.5936322626408188 -0.804736435820105 7.493661225260739e-005 0.5936322626408188 -0.804736435820105 7.493661225260739e-005 -0.5936322626408188 0.804736435820105 -7.493661225260739e-005 -0.5936322626408188 0.804736435820105 -7.493661225260739e-005 -0.5936322626408188 0.804736435820105 -7.493661225260739e-005 -0.5936322626408188 0.804736435820105 -7.493661225260739e-005 -0.4156366710001189 -0.9095307243874761 0.0001382574849610448 -0.4156366710001189 -0.9095307243874761 0.0001382574849610448 -0.4156366710001189 -0.9095307243874761 0.0001382574849610448 -0.4156366710001189 -0.9095307243874761 0.0001382574849610448 -0.4156366710001189 -0.9095307243874761 0.0001382574849610448 0.4156366710001189 0.9095307243874761 -0.0001382574849610448 0.4156366710001189 0.9095307243874761 -0.0001382574849610448 0.4156366710001189 0.9095307243874761 -0.0001382574849610448 0.4156366710001189 0.9095307243874761 -0.0001382574849610448 0.4156366710001189 0.9095307243874761 -0.0001382574849610448 0.9095307335591486 -0.4156366738280878 8.971111251485434e-006 0.9095307335591486 -0.4156366738280878 8.971111251485434e-006 0.9095307335591486 -0.4156366738280878 8.971111251485434e-006 0.9095307335591486 -0.4156366738280878 8.971111251485434e-006 0.9095307335591486 -0.4156366738280878 8.971111251485434e-006 -0.9095307335591486 0.4156366738280878 -8.971111251485434e-006 -0.9095307335591486 0.4156366738280878 -8.971111251485434e-006 -0.9095307335591486 0.4156366738280878 -8.971111251485434e-006 -0.9095307335591486 0.4156366738280878 -8.971111251485434e-006 -0.9095307335591486 0.4156366738280878 -8.971111251485434e-006 0.4156366710001136 0.9095307243874786 -0.0001382574846904718 0.4156366710001136 0.9095307243874786 -0.0001382574846904718 0.4156366710001136 0.9095307243874786 -0.0001382574846904718 0.4156366710001136 0.9095307243874786 -0.0001382574846904718 -0.4156366710001136 -0.9095307243874786 0.0001382574846904718 -0.4156366710001136 -0.9095307243874786 0.0001382574846904718 -0.4156366710001136 -0.9095307243874786 0.0001382574846904718 -0.4156366710001136 -0.9095307243874786 0.0001382574846904718 -0.5936322626408187 0.8047364358201052 -7.493661176430095e-005 -0.5936322626408187 0.8047364358201052 -7.493661176430095e-005 -0.5936322626408187 0.8047364358201052 -7.493661176430095e-005 -0.5936322626408187 0.8047364358201052 -7.493661176430095e-005 0.5936322626408187 -0.8047364358201052 7.493661176430095e-005 0.5936322626408187 -0.8047364358201052 7.493661176430095e-005 0.5936322626408187 -0.8047364358201052 7.493661176430095e-005 0.5936322626408187 -0.8047364358201052 7.493661176430095e-005 0.3626614342187985 0.9319209542315049 -0.000138544598068386 0.3626614342187985 0.9319209542315049 -0.000138544598068386 0.3626614342187985 0.9319209542315049 -0.000138544598068386 0.3626614342187985 0.9319209542315049 -0.000138544598068386 -0.3626614342187985 -0.9319209542315049 0.000138544598068386 -0.3626614342187985 -0.9319209542315049 0.000138544598068386 -0.3626614342187985 -0.9319209542315049 0.000138544598068386 -0.3626614342187985 -0.9319209542315049 0.000138544598068386 0.9929389869725868 0.1186261523105622 -6.432608050306382e-005 0.9929389869725868 0.1186261523105622 -6.432608050306382e-005 0.9929389869725868 0.1186261523105622 -6.432608050306382e-005 0.9929389869725868 0.1186261523105622 -6.432608050306382e-005 -0.9929389869725868 -0.1186261523105622 6.432608050306382e-005 -0.9929389869725868 -0.1186261523105622 6.432608050306382e-005 -0.9929389869725868 -0.1186261523105622 6.432608050306382e-005 -0.9929389869725868 -0.1186261523105622 6.432608050306382e-005 0.9929392230571881 0.1186241761900775 -6.432583629193051e-005 0.9929392230571881 0.1186241761900775 -6.432583629193051e-005 0.9929392230571881 0.1186241761900775 -6.432583629193051e-005 0.9929392230571881 0.1186241761900775 -6.432583629193051e-005 -0.9929392230571881 -0.1186241761900775 6.432583629193051e-005 -0.9929392230571881 -0.1186241761900775 6.432583629193051e-005 -0.9929392230571881 -0.1186241761900775 6.432583629193051e-005 -0.9929392230571881 -0.1186241761900775 6.432583629193051e-005 0.3626560860510996 0.931923035478279 -0.0001385461942544331 0.3626560860510996 0.931923035478279 -0.0001385461942544331 0.3626560860510996 0.931923035478279 -0.0001385461942544331 0.3626560860510996 0.931923035478279 -0.0001385461942544331 -0.3626560860510996 -0.931923035478279 0.0001385461942544331 -0.3626560860510996 -0.931923035478279 0.0001385461942544331 -0.3626560860510996 -0.931923035478279 0.0001385461942544331 -0.3626560860510996 -0.931923035478279 0.0001385461942544331 -0.9929392230594374 -0.1186241761959626 6.428024695781303e-005 -0.9929392230594374 -0.1186241761959626 6.428024695781303e-005 -0.9929392230594374 -0.1186241761959626 6.428024695781303e-005 -0.9929392230594374 -0.1186241761959626 6.428024695781303e-005 0.9929392230594374 0.1186241761959626 -6.428024695781303e-005 0.9929392230594374 0.1186241761959626 -6.428024695781303e-005 0.9929392230594374 0.1186241761959626 -6.428024695781303e-005 0.9929392230594374 0.1186241761959626 -6.428024695781303e-005 0.3626560860507244 0.9319230354775034 -0.0001385523938645037 0.3626560860507244 0.9319230354775034 -0.0001385523938645037 0.3626560860507244 0.9319230354775034 -0.0001385523938645037 0.3626560860507244 0.9319230354775034 -0.0001385523938645037 -0.3626560860507244 -0.9319230354775034 0.0001385523938645037 -0.3626560860507244 -0.9319230354775034 0.0001385523938645037 -0.3626560860507244 -0.9319230354775034 0.0001385523938645037 -0.3626560860507244 -0.9319230354775034 0.0001385523938645037 0.5937569807417996 -0.8046444197373599 7.487262389143387e-005 0.5937569807417996 -0.8046444197373599 7.487262389143387e-005 0.5937569807417996 -0.8046444197373599 7.487262389143387e-005 0.5937569807417996 -0.8046444197373599 7.487262389143387e-005 -0.5937569807417996 0.8046444197373599 -7.487262389143387e-005 -0.5937569807417996 0.8046444197373599 -7.487262389143387e-005 -0.5937569807417996 0.8046444197373599 -7.487262389143387e-005 -0.5937569807417996 0.8046444197373599 -7.487262389143387e-005 0.3626560860514551 0.931923035479197 -0.0001385390892656969 0.3626560860514551 0.931923035479197 -0.0001385390892656969 0.3626560860514551 0.931923035479197 -0.0001385390892656969 0.3626560860514551 0.931923035479197 -0.0001385390892656969 -0.3626560860514551 -0.931923035479197 0.0001385390892656969 -0.3626560860514551 -0.931923035479197 0.0001385390892656969 -0.3626560860514551 -0.931923035479197 0.0001385390892656969 -0.3626560860514551 -0.931923035479197 0.0001385390892656969 -0.5937570060836095 0.8046444010337774 -7.491076330418514e-005 -0.5937570060836095 0.8046444010337774 -7.491076330418514e-005 -0.5937570060836095 0.8046444010337774 -7.491076330418514e-005 -0.5937570060836095 0.8046444010337774 -7.491076330418514e-005 0.5937570060836095 -0.8046444010337774 7.491076330418514e-005 0.5937570060836095 -0.8046444010337774 7.491076330418514e-005 0.5937570060836095 -0.8046444010337774 7.491076330418514e-005 0.5937570060836095 -0.8046444010337774 7.491076330418514e-005 0.593757006083609 -0.8046444010337776 7.491076369102977e-005 0.593757006083609 -0.8046444010337776 7.491076369102977e-005 0.593757006083609 -0.8046444010337776 7.491076369102977e-005 0.593757006083609 -0.8046444010337776 7.491076369102977e-005 -0.593757006083609 0.8046444010337776 -7.491076369102977e-005 -0.593757006083609 0.8046444010337776 -7.491076369102977e-005 -0.593757006083609 0.8046444010337776 -7.491076369102977e-005 -0.593757006083609 0.8046444010337776 -7.491076369102977e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"548\" source=\"#ID5493\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5491\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5489\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5490\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"364\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5491\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 8 9 8 6 7 8 10 9 10 8 11 10 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 16 17 18 18 17 19 20 21 22 22 21 23 21 24 23 23 24 25 24 26 25 25 26 27 26 28 27 27 28 29 28 30 29 31 29 30 32 33 30 31 30 33 32 34 33 33 34 35 34 36 35 35 36 37 36 38 37 39 37 38 40 41 42 41 40 43 44 45 46 47 46 45 48 49 50 49 48 51 51 48 52 51 52 53 54 55 56 55 57 56 56 57 58 59 58 57 60 61 62 61 60 63 64 65 66 67 66 65 68 69 70 69 68 71 72 73 74 75 74 73 76 77 78 77 76 79 80 81 82 83 82 81 84 85 86 85 84 87 88 89 90 91 90 89 92 93 94 93 92 95 96 97 98 99 98 97 100 101 102 101 100 103 104 105 106 107 106 105 108 109 110 109 108 111 112 113 114 115 114 113 116 117 118 117 116 119 119 116 120 120 116 121 122 123 124 124 123 125 125 123 126 127 126 123 128 129 130 129 128 131 132 133 134 135 134 133 136 137 138 137 136 139 137 139 140 140 139 141 142 143 144 144 143 145 143 146 145 147 145 146 148 149 150 149 148 151 152 153 154 155 154 153 156 157 158 157 156 159 160 161 162 163 162 161 164 165 166 165 164 167 168 169 170 171 170 169 172 173 174 173 172 175 176 177 178 179 178 177 180 181 182 181 180 183 184 185 186 187 186 185 188 189 190 189 188 191 192 193 194 195 194 193 196 197 198 197 196 199 199 196 200 199 200 201 201 200 202 201 202 203 203 202 204 203 204 205 205 204 206 205 206 207 208 209 210 209 208 211 211 212 213 212 211 208 212 214 213 214 212 215 214 215 216 214 216 217 217 216 218 217 218 219 219 218 220 219 220 221 221 220 222 222 220 223 222 223 224 224 223 225 209 226 210 226 209 227 228 229 230 229 228 231 229 231 232 232 231 233 232 233 234 234 233 235 234 235 227 227 235 226 197 236 198 236 197 237 238 228 230 228 238 239 239 238 240 239 240 241 241 240 236 241 236 237 242 243 244 243 245 244 244 245 246 245 247 246 246 247 248 249 248 247 242 250 243 251 243 250 252 253 254 254 253 255 253 256 255 255 256 257 256 258 257 257 258 259 258 248 259 249 259 248 254 260 252 261 252 260 262 263 264 264 263 265 263 266 265 265 266 267 267 266 268 266 269 268 268 269 270 269 271 270 270 271 272 271 273 272 273 274 272 275 272 274 276 277 274 275 274 277 277 276 260 261 260 276 278 279 280 279 281 280 280 281 282 281 283 282 282 283 284 283 285 284 284 285 286 285 287 286 286 287 250 251 250 287 288 289 290 289 288 291 292 293 294 295 294 293 290 296 297 296 290 289 294 295 298 299 298 295 300 301 302 301 300 303 303 300 304 303 304 305 305 306 307 306 305 304 308 309 310 309 308 311 311 308 312 312 308 313 312 313 314 314 313 315 314 315 316 316 315 317 316 317 318 316 318 319 319 318 320 319 320 321 309 322 310 322 309 323 306 323 307 323 306 322 324 325 326 327 326 325 326 328 324 329 324 328 330 331 332 331 333 332 332 333 334 333 335 334 335 336 334 334 336 337 336 338 337 337 338 339 338 340 339 339 340 341 341 340 328 329 328 340 342 343 325 327 325 343 343 342 344 342 345 344 344 345 346 347 346 345 348 349 350 349 348 351 352 353 354 355 354 353 351 356 349 356 351 357 358 352 359 354 359 352 360 361 362 361 360 363 364 365 366 367 366 365 368 369 370 369 368 371 372 373 374 375 374 373 376 377 378 377 376 379 380 381 382 383 382 381 384 385 386 385 384 387 388 389 390 391 390 389 392 393 394 393 392 395 396 397 398 399 398 397 400 401 402 401 400 403 404 405 406 407 406 405 408 409 410 409 408 411 412 413 414 415 414 413 416 417 418 417 416 419 420 421 422 423 422 421 424 425 426 425 424 427 428 429 430 431 430 429 432 433 434 433 432 435 433 435 436 437 438 439 438 440 439 441 439 440 442 443 444 443 442 445 445 442 446 447 448 449 449 448 450 451 450 448 452 453 454 453 452 455 456 457 458 459 458 457 460 461 462 461 460 463 464 465 466 467 466 465 468 469 470 469 468 471 472 473 474 475 474 473 476 477 478 477 476 479 480 481 482 483 482 481 484 485 486 485 484 487 488 489 490 491 490 489 492 493 494 493 492 495 496 497 498 499 498 497 500 501 502 501 500 503 504 505 506 507 506 505 508 509 510 509 508 511 512 513 514 515 514 513 516 517 518 517 516 519 520 521 522 523 522 521 524 525 526 525 524 527 528 529 530 531 530 529 532 533 534 533 532 535 536 537 538 539 538 537 540 541 542 541 540 543 544 545 546 547 546 545</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5494\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5495\">\r\n\t\t\t\t\t<float_array count=\"648\" id=\"ID5498\">445.6719485914164 4400.176355913873 271.6258165636052 660.7614956646999 4297.694259798227 268.0849008281856 445.6717739229666 4400.175897113641 268.0822357928892 660.7616702804457 4297.694718623562 271.6284815989017 660.7616702804457 4297.694718623562 271.6284815989017 445.6719485914164 4400.176355913873 271.6258165636052 660.7614956646999 4297.694259798227 268.0849008281856 445.6717739229666 4400.175897113641 268.0822357928892 459.7276673323577 4282.938495380813 271.6403021849561 445.6717739229666 4400.175897113641 268.0822357928892 459.7274926595023 4282.938036617322 268.0967214142349 445.6719485914164 4400.176355913873 271.6258165636052 445.6719485914164 4400.176355913873 271.6258165636052 459.7276673323577 4282.938495380813 271.6403021849561 445.6717739229666 4400.175897113641 268.0822357928892 459.7274926595023 4282.938036617322 268.0967214142349 660.7616702804457 4297.694718623562 271.6284815989017 603.9559574076834 4772.285015347496 268.0262606242019 660.7614956646999 4297.694259798227 268.0849008281856 603.9561320414896 4772.285474021946 271.5698413949365 603.9561320414896 4772.285474021946 271.5698413949365 660.7616702804457 4297.694718623562 271.6284815989017 603.9559574076834 4772.285015347496 268.0262606242019 660.7614956646999 4297.694259798227 268.0849008281856 674.7927355376669 4180.468070812171 268.0993853987415 459.7276673323577 4282.938495380813 271.6403021849561 459.7274926595023 4282.938036617322 268.0967214142349 674.7929102261242 4180.468529568216 271.6429661694633 674.7929102261242 4180.468529568216 271.6429661694633 674.7927355376669 4180.468070812171 268.0993853987415 459.7276673323577 4282.938495380813 271.6403021849561 459.7274926595023 4282.938036617322 268.0967214142349 603.9561320414896 4772.285474021946 271.5698413949365 416.7261014274282 4641.609919954514 268.0524065335512 603.9559574076834 4772.285015347496 268.0262606242019 416.7262760719791 4641.610378636463 271.5959873042845 416.7262760719791 4641.610378636463 271.5959873042845 603.9561320414896 4772.285474021946 271.5698413949365 416.7261014274282 4641.609919954514 268.0524065335512 603.9559574076834 4772.285015347496 268.0262606242019 841.5822193057179 2787.001155745111 271.8151425882534 674.7927355376669 4180.468070812171 268.0993853987415 841.5820446168909 2787.000696992142 268.2715618175309 674.7929102261242 4180.468529568216 271.6429661694633 674.7929102261242 4180.468529568216 271.6429661694633 841.5822193057179 2787.001155745111 271.8151425882534 674.7927355376669 4180.468070812171 268.0993853987415 841.5820446168909 2787.000696992142 268.2715618175309 416.7262760719791 4641.610378636463 271.5959873042845 402.579555644104 4759.605363100887 268.0378284511397 416.7261014274282 4641.609919954514 268.0524065335512 402.5797302785668 4759.605821867015 271.5814092218628 402.5797302785668 4759.605821867015 271.5814092218628 416.7262760719791 4641.610378636463 271.5959873042845 402.579555644104 4759.605363100887 268.0378284511397 416.7261014274282 4641.609919954514 268.0524065335512 1533.069407672401 2517.496433818612 268.2723634843481 841.5822193057179 2787.001155745111 271.8151425882534 841.5820446168909 2787.000696992142 268.2715618175309 1584.076642340685 2497.616580721872 268.272422618917 1533.069582361217 2517.496892571582 271.8159442550698 1584.076817029504 2497.617039474839 271.8160033896396 1584.076817029504 2497.617039474839 271.8160033896396 1584.076642340685 2497.616580721872 268.272422618917 1533.069582361217 2517.496892571582 271.8159442550698 841.5822193057179 2787.001155745111 271.8151425882534 1533.069407672401 2517.496433818612 268.2723634843481 841.5820446168909 2787.000696992142 268.2715618175309 402.579555644104 4759.605363100887 268.0378284511397 591.5343864865313 4891.484723314859 271.5550218394737 591.5342118265785 4891.484264530942 268.0114410687538 402.5797302785668 4759.605821867015 271.5814092218628 402.5797302785668 4759.605821867015 271.5814092218628 402.579555644104 4759.605363100887 268.0378284511397 591.5343864865313 4891.484723314859 271.5550218394737 591.5342118265785 4891.484264530942 268.0114410687538 1585.362642179513 2500.916167253734 268.2719320572443 1584.076817029504 2497.617039474839 271.8160033896396 1584.076642340685 2497.616580721872 268.272422618917 1585.362816868331 2500.916626006703 271.8155128279662 1585.362816868331 2500.916626006703 271.8155128279662 1585.362642179513 2500.916167253734 268.2719320572443 1584.076817029504 2497.617039474839 271.8160033896396 1584.076642340685 2497.616580721872 268.272422618917 1144.463417137082 5299.626616384659 271.4749259619852 1144.463242477552 5299.626157601055 267.9313451912652 1144.463417137082 5299.626616384659 271.4749259619852 1144.463242477552 5299.626157601055 267.9313451912652 844.8461652412216 2789.529846185642 271.8146543196855 1534.355407511226 2520.796020350474 268.2718729226754 844.8459905523928 2789.529387432678 268.2710735489636 1585.362642179513 2500.916167253734 268.2719320572443 1534.355582200043 2520.796479103447 271.8154536933967 1585.362816868331 2500.916626006703 271.8155128279662 1585.362816868331 2500.916626006703 271.8155128279662 1534.355582200043 2520.796479103447 271.8154536933967 1585.362642179513 2500.916167253734 268.2719320572443 844.8461652412216 2789.529846185642 271.8146543196855 1534.355407511226 2520.796020350474 268.2718729226754 844.8459905523928 2789.529387432678 268.2710735489636 1144.463242477552 5299.626157601055 267.9313451912652 1337.853365341805 5442.331436560022 271.4469184301736 1337.853190651714 5442.330977753865 267.9033376594587 1144.463417137082 5299.626616384659 271.4749259619852 1144.463417137082 5299.626616384659 271.4749259619852 1144.463242477552 5299.626157601055 267.9313451912652 1337.853365341805 5442.331436560022 271.4469184301736 1337.853190651714 5442.330977753865 267.9033376594587 678.0771261749978 4182.825952793128 268.0989182352173 844.8461652412216 2789.529846185642 271.8146543196855 844.8459905523928 2789.529387432678 268.2710735489636 678.0773008634542 4182.826411549177 271.6424990059391 678.0773008634542 4182.826411549177 271.6424990059391 678.0771261749978 4182.825952793128 268.0989182352173 844.8461652412216 2789.529846185642 271.8146543196855 844.8459905523928 2789.529387432678 268.2710735489636 1337.853365341805 5442.331436560022 271.4469184301736 1448.310451706087 5399.346743618151 267.9034563553665 1337.853190651714 5442.330977753865 267.9033376594587 1448.31062654522 5399.347202366314 271.4470371260816 1448.31062654522 5399.347202366314 271.4470371260816 1337.853365341805 5442.331436560022 271.4469184301736 1448.310451706087 5399.346743618151 267.9034563553665 1337.853190651714 5442.330977753865 267.9033376594587 463.011653578159 4285.296570038116 271.6398350164233 678.0771261749978 4182.825952793128 268.0989182352173 463.0114789053 4285.296111274634 268.0962542457019 678.0773008634542 4182.826411549177 271.6424990059391 678.0773008634542 4182.826411549177 271.6424990059391 463.011653578159 4285.296570038116 271.6398350164233 678.0771261749978 4182.825952793128 268.0989182352173 463.0114789053 4285.296111274634 268.0962542457019 1448.31062654522 5399.347202366314 271.4470371260816 1256.490079074061 5257.800141883307 267.9312372796841 1448.310451706087 5399.346743618151 267.9034563553665 1256.490253958077 5257.800600664585 271.4748180503931 1256.490253958077 5257.800600664585 271.4748180503931 1448.31062654522 5399.347202366314 271.4470371260816 1256.490079074061 5257.800141883307 267.9312372796841 1448.310451706087 5399.346743618151 267.9034563553665 449.9533503832586 4394.213134922155 268.0827967264666 463.011653578159 4285.296570038116 271.6398350164233 463.0114789053 4285.296111274634 268.0962542457019 449.953525051712 4394.213593722378 271.6263774971836 449.953525051712 4394.213593722378 271.6263774971836 449.9533503832586 4394.213134922155 268.0827967264666 463.011653578159 4285.296570038116 271.6398350164233 463.0114789053 4285.296111274634 268.0962542457019 665.0417392340373 4291.732132675887 268.0854617452494 449.953525051712 4394.213593722378 271.6263774971836 449.9533503832586 4394.213134922155 268.0827967264666 665.0419138497855 4291.732591501223 271.6290425159649 665.0419138497855 4291.732591501223 271.6290425159649 665.0417392340373 4291.732132675887 268.0854617452494 449.953525051712 4394.213593722378 271.6263774971836 449.9533503832586 4394.213134922155 268.0827967264666 606.7705385245154 4778.567994460522 268.0253085418669 665.0419138497855 4291.732591501223 271.6290425159649 665.0417392340373 4291.732132675887 268.0854617452494 606.7707131583243 4778.568453134978 271.5688893126019 606.7707131583243 4778.568453134978 271.5688893126019 606.7705385245154 4778.567994460522 268.0253085418669 665.0419138497855 4291.732591501223 271.6290425159649 665.0417392340373 4291.732132675887 268.0854617452494 419.5396175910396 4647.892155794723 268.0514545999326 606.7707131583243 4778.568453134978 271.5688893126019 606.7705385245154 4778.567994460522 268.0253085418669 419.5397922355924 4647.892614476676 271.5950353706661 419.5397922355924 4647.892614476676 271.5950353706661 419.5396175910396 4647.892155794723 268.0514545999326 606.7707131583243 4778.568453134978 271.5688893126019 606.7705385245154 4778.567994460522 268.0253085418669 406.3486268933375 4757.917374442064 268.0378612215608 419.5397922355924 4647.892614476676 271.5950353706661 419.5396175910396 4647.892155794723 268.0514545999326 406.3488015277994 4757.917833208196 271.5814419922837 406.3488015277994 4757.917833208196 271.5814419922837 406.3486268933375 4757.917374442064 268.0378612215608 419.5397922355924 4647.892614476676 271.5950353706661 419.5396175910396 4647.892155794723 268.0514545999326 593.5997141332964 4888.607624849736 271.5552925364687 406.3486268933375 4757.917374442064 268.0378612215608 593.5995394733409 4888.607166065815 268.0117117657491 406.3488015277994 4757.917833208196 271.5814419922837 406.3488015277994 4757.917833208196 271.5814419922837 593.5997141332964 4888.607624849736 271.5552925364687 406.3486268933375 4757.917374442064 268.0378612215608 593.5995394733409 4888.607166065815 268.0117117657491 1146.566325534044 5296.777257968762 271.475191215129 1146.56615087452 5296.776799185154 267.9316104444094 1146.566325534044 5296.777257968762 271.475191215129 1146.56615087452 5296.776799185154 267.9316104444094 1338.386689842934 5438.323862892066 271.4474109969465 1146.56615087452 5296.776799185154 267.9316104444094 1338.386515152843 5438.323404085909 267.903830226232 1146.566325534044 5296.777257968762 271.475191215129 1146.566325534044 5296.777257968762 271.475191215129 1338.386689842934 5438.323862892066 271.4474109969465 1146.56615087452 5296.776799185154 267.9316104444094 1338.386515152843 5438.323404085909 267.903830226232 1441.033865584564 5398.37838189135 267.9039405297133 1338.386689842934 5438.323862892066 271.4474109969465 1338.386515152843 5438.323404085909 267.903830226232 1441.034040423703 5398.378840639508 271.4475213004287 1441.034040423703 5398.378840639508 271.4475213004287 1441.033865584564 5398.37838189135 267.9039405297133 1338.386689842934 5438.323862892066 271.4474109969465 1338.386515152843 5438.323404085909 267.903830226232 1249.213492952531 5256.831780156505 267.9317214540316 1441.034040423703 5398.378840639508 271.4475213004287 1441.033865584564 5398.37838189135 267.9039405297133 1249.213667836554 5256.832238937785 271.4753022247396 1249.213667836554 5256.832238937785 271.4753022247396 1249.213492952531 5256.831780156505 267.9317214540316 1441.034040423703 5398.378840639508 271.4475213004287 1441.033865584564 5398.37838189135 267.9039405297133</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"216\" source=\"#ID5498\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5496\">\r\n\t\t\t\t\t<float_array count=\"648\" id=\"ID5499\">0.4301318694939882 0.9027660581666757 -0.000138086238008535 0.4301318694939882 0.9027660581666757 -0.000138086238008535 0.4301318694939882 0.9027660581666757 -0.000138086238008535 0.4301318694939882 0.9027660581666757 -0.000138086238008535 -0.4301318694939882 -0.9027660581666757 0.000138086238008535 -0.4301318694939882 -0.9027660581666757 0.000138086238008535 -0.4301318694939882 -0.9027660581666757 0.000138086238008535 -0.4301318694939882 -0.9027660581666757 0.000138086238008535 -0.9928896799175708 -0.1190381425083264 6.435333205306458e-005 -0.9928896799175708 -0.1190381425083264 6.435333205306458e-005 -0.9928896799175708 -0.1190381425083264 6.435333205306458e-005 -0.9928896799175708 -0.1190381425083264 6.435333205306458e-005 0.9928896799175708 0.1190381425083264 -6.435333205306458e-005 0.9928896799175708 0.1190381425083264 -6.435333205306458e-005 0.9928896799175708 0.1190381425083264 -6.435333205306458e-005 0.9928896799175708 0.1190381425083264 -6.435333205306458e-005 -0.9929127658930183 -0.1188454256173997 6.431559200894891e-005 -0.9929127658930183 -0.1188454256173997 6.431559200894891e-005 -0.9929127658930183 -0.1188454256173997 6.431559200894891e-005 -0.9929127658930183 -0.1188454256173997 6.431559200894891e-005 0.9929127658930183 0.1188454256173997 -6.431559200894891e-005 0.9929127658930183 0.1188454256173997 -6.431559200894891e-005 0.9929127658930183 0.1188454256173997 -6.431559200894891e-005 0.9929127658930183 0.1188454256173997 -6.431559200894891e-005 -0.4301318410577152 -0.9027660717167702 0.0001380774134619685 -0.4301318410577152 -0.9027660717167702 0.0001380774134619685 -0.4301318410577152 -0.9027660717167702 0.0001380774134619685 -0.4301318410577152 -0.9027660717167702 0.0001380774134619685 0.4301318410577152 0.9027660717167702 -0.0001380774134619685 0.4301318410577152 0.9027660717167702 -0.0001380774134619685 0.4301318410577152 0.9027660717167702 -0.0001380774134619685 0.4301318410577152 0.9027660717167702 -0.0001380774134619685 0.5723277505071555 -0.8200249629890628 7.793718982998826e-005 0.5723277505071555 -0.8200249629890628 7.793718982998826e-005 0.5723277505071555 -0.8200249629890628 7.793718982998826e-005 0.5723277505071555 -0.8200249629890628 7.793718982998826e-005 -0.5723277505071555 0.8200249629890628 -7.793718982998826e-005 -0.5723277505071555 0.8200249629890628 -7.793718982998826e-005 -0.5723277505071555 0.8200249629890628 -7.793718982998826e-005 -0.5723277505071555 0.8200249629890628 -7.793718982998826e-005 -0.9929127658921282 -0.1188454256150661 6.43336423430498e-005 -0.9929127658921282 -0.1188454256150661 6.43336423430498e-005 -0.9929127658921282 -0.1188454256150661 6.43336423430498e-005 -0.9929127658921282 -0.1188454256150661 6.43336423430498e-005 0.9929127658921282 0.1188454256150661 -6.43336423430498e-005 0.9929127658921282 0.1188454256150661 -6.43336423430498e-005 0.9929127658921282 0.1188454256150661 -6.43336423430498e-005 0.9929127658921282 0.1188454256150661 -6.43336423430498e-005 -0.9928896799180947 -0.1190381425097244 6.434266187660886e-005 -0.9928896799180947 -0.1190381425097244 6.434266187660886e-005 -0.9928896799180947 -0.1190381425097244 6.434266187660886e-005 -0.9928896799180947 -0.1190381425097244 6.434266187660886e-005 0.9928896799180947 0.1190381425097244 -6.434266187660886e-005 0.9928896799180947 0.1190381425097244 -6.434266187660886e-005 0.9928896799180947 0.1190381425097244 -6.434266187660886e-005 0.9928896799180947 0.1190381425097244 -6.434266187660886e-005 -0.363139648006175 -0.9317347137769065 0.0001385244289095811 -0.363139648006175 -0.9317347137769065 0.0001385244289095811 -0.363139648006175 -0.9317347137769065 0.0001385244289095811 -0.363139648006175 -0.9317347137769065 0.0001385244289095811 -0.363139648006175 -0.9317347137769065 0.0001385244289095811 -0.363139648006175 -0.9317347137769065 0.0001385244289095811 0.363139648006175 0.9317347137769065 -0.0001385244289095811 0.363139648006175 0.9317347137769065 -0.0001385244289095811 0.363139648006175 0.9317347137769065 -0.0001385244289095811 0.363139648006175 0.9317347137769065 -0.0001385244289095811 0.363139648006175 0.9317347137769065 -0.0001385244289095811 0.363139648006175 0.9317347137769065 -0.0001385244289095811 -0.5723277505082117 0.820024962986319 -7.795829881728509e-005 -0.5831543304628138 0.8123613857271557 -7.643247027326947e-005 -0.5831543304628236 0.8123613857271488 -7.643247027326807e-005 -0.5723277505082117 0.820024962986319 -7.795829881728509e-005 0.5723277505082117 -0.820024962986319 7.795829881728509e-005 0.5723277505082117 -0.820024962986319 7.795829881728509e-005 0.5831543304628138 -0.8123613857271557 7.643247027326947e-005 0.5831543304628236 -0.8123613857271488 7.643247027326807e-005 0.9317347227701809 -0.3631396513508374 1.080194280820256e-006 0.9317347227701809 -0.3631396513508374 1.080194280820256e-006 0.9317347227701809 -0.3631396513508374 1.080194280820256e-006 0.9317347227701809 -0.3631396513508374 1.080194280820256e-006 -0.9317347227701809 0.3631396513508374 -1.080194280820256e-006 -0.9317347227701809 0.3631396513508374 -1.080194280820256e-006 -0.9317347227701809 0.3631396513508374 -1.080194280820256e-006 -0.9317347227701809 0.3631396513508374 -1.080194280820256e-006 -0.5938783071816526 0.8045548773390567 -7.489319379899025e-005 -0.5938783071816526 0.8045548773390567 -7.489319379899025e-005 0.5938783071816526 -0.8045548773390567 7.489319379899025e-005 0.5938783071816526 -0.8045548773390567 7.489319379899025e-005 0.3631396480061757 0.9317347137769063 -0.0001385244290734141 0.3631396480061757 0.9317347137769063 -0.0001385244290734141 0.3631396480061757 0.9317347137769063 -0.0001385244290734141 0.3631396480061757 0.9317347137769063 -0.0001385244290734141 0.3631396480061757 0.9317347137769063 -0.0001385244290734141 0.3631396480061757 0.9317347137769063 -0.0001385244290734141 -0.3631396480061757 -0.9317347137769063 0.0001385244290734141 -0.3631396480061757 -0.9317347137769063 0.0001385244290734141 -0.3631396480061757 -0.9317347137769063 0.0001385244290734141 -0.3631396480061757 -0.9317347137769063 0.0001385244290734141 -0.3631396480061757 -0.9317347137769063 0.0001385244290734141 -0.3631396480061757 -0.9317347137769063 0.0001385244290734141 -0.5937570060836135 0.8046444010337743 -7.491076316535868e-005 -0.5937570060836135 0.8046444010337743 -7.491076316535868e-005 -0.5937570060836135 0.8046444010337743 -7.491076316535868e-005 -0.5937570060836135 0.8046444010337743 -7.491076316535868e-005 0.5937570060836135 -0.8046444010337743 7.491076316535868e-005 0.5937570060836135 -0.8046444010337743 7.491076316535868e-005 0.5937570060836135 -0.8046444010337743 7.491076316535868e-005 0.5937570060836135 -0.8046444010337743 7.491076316535868e-005 0.9929127658921283 0.1188454256150663 -6.433364284572519e-005 0.9929127658921283 0.1188454256150663 -6.433364284572519e-005 0.9929127658921283 0.1188454256150663 -6.433364284572519e-005 0.9929127658921283 0.1188454256150663 -6.433364284572519e-005 -0.9929127658921283 -0.1188454256150663 6.433364284572519e-005 -0.9929127658921283 -0.1188454256150663 6.433364284572519e-005 -0.9929127658921283 -0.1188454256150663 6.433364284572519e-005 -0.9929127658921283 -0.1188454256150663 6.433364284572519e-005 0.3626560860514555 0.9319230354791966 -0.0001385390894555825 0.3626560860514555 0.9319230354791966 -0.0001385390894555825 0.3626560860514555 0.9319230354791966 -0.0001385390894555825 0.3626560860514555 0.9319230354791966 -0.0001385390894555825 -0.3626560860514555 -0.9319230354791966 0.0001385390894555825 -0.3626560860514555 -0.9319230354791966 0.0001385390894555825 -0.3626560860514555 -0.9319230354791966 0.0001385390894555825 -0.3626560860514555 -0.9319230354791966 0.0001385390894555825 0.4301318410577131 0.9027660717167709 -0.0001380774136274846 0.4301318410577131 0.9027660717167709 -0.0001380774136274846 0.4301318410577131 0.9027660717167709 -0.0001380774136274846 0.4301318410577131 0.9027660717167709 -0.0001380774136274846 -0.4301318410577131 -0.9027660717167709 0.0001380774136274846 -0.4301318410577131 -0.9027660717167709 0.0001380774136274846 -0.4301318410577131 -0.9027660717167709 0.0001380774136274846 -0.4301318410577131 -0.9027660717167709 0.0001380774136274846 0.5937569807417996 -0.8046444197373599 7.487262383111494e-005 0.5937569807417996 -0.8046444197373599 7.487262383111494e-005 0.5937569807417996 -0.8046444197373599 7.487262383111494e-005 0.5937569807417996 -0.8046444197373599 7.487262383111494e-005 -0.5937569807417996 0.8046444197373599 -7.487262383111494e-005 -0.5937569807417996 0.8046444197373599 -7.487262383111494e-005 -0.5937569807417996 0.8046444197373599 -7.487262383111494e-005 -0.5937569807417996 0.8046444197373599 -7.487262383111494e-005 0.9928896799175697 0.1190381425083358 -6.435333238952007e-005 0.9928896799175697 0.1190381425083358 -6.435333238952007e-005 0.9928896799175697 0.1190381425083358 -6.435333238952007e-005 0.9928896799175697 0.1190381425083358 -6.435333238952007e-005 -0.9928896799175697 -0.1190381425083358 6.435333238952007e-005 -0.9928896799175697 -0.1190381425083358 6.435333238952007e-005 -0.9928896799175697 -0.1190381425083358 6.435333238952007e-005 -0.9928896799175697 -0.1190381425083358 6.435333238952007e-005 -0.4301318694939903 -0.9027660581666748 0.0001380862379422444 -0.4301318694939903 -0.9027660581666748 0.0001380862379422444 -0.4301318694939903 -0.9027660581666748 0.0001380862379422444 -0.4301318694939903 -0.9027660581666748 0.0001380862379422444 0.4301318694939903 0.9027660581666748 -0.0001380862379422444 0.4301318694939903 0.9027660581666748 -0.0001380862379422444 0.4301318694939903 0.9027660581666748 -0.0001380862379422444 0.4301318694939903 0.9027660581666748 -0.0001380862379422444 0.9929127658930183 0.1188454256174013 -6.431559199418665e-005 0.9929127658930183 0.1188454256174013 -6.431559199418665e-005 0.9929127658930183 0.1188454256174013 -6.431559199418665e-005 0.9929127658930183 0.1188454256174013 -6.431559199418665e-005 -0.9929127658930183 -0.1188454256174013 6.431559199418665e-005 -0.9929127658930183 -0.1188454256174013 6.431559199418665e-005 -0.9929127658930183 -0.1188454256174013 6.431559199418665e-005 -0.9929127658930183 -0.1188454256174013 6.431559199418665e-005 -0.5723277505071603 0.8200249629890593 -7.793718970244486e-005 -0.5723277505071603 0.8200249629890593 -7.793718970244486e-005 -0.5723277505071603 0.8200249629890593 -7.793718970244486e-005 -0.5723277505071603 0.8200249629890593 -7.793718970244486e-005 0.5723277505071603 -0.8200249629890593 7.793718970244486e-005 0.5723277505071603 -0.8200249629890593 7.793718970244486e-005 0.5723277505071603 -0.8200249629890593 7.793718970244486e-005 0.5723277505071603 -0.8200249629890593 7.793718970244486e-005 0.992889679918094 0.1190381425097307 -6.434266159893905e-005 0.992889679918094 0.1190381425097307 -6.434266159893905e-005 0.992889679918094 0.1190381425097307 -6.434266159893905e-005 0.992889679918094 0.1190381425097307 -6.434266159893905e-005 -0.992889679918094 -0.1190381425097307 6.434266159893905e-005 -0.992889679918094 -0.1190381425097307 6.434266159893905e-005 -0.992889679918094 -0.1190381425097307 6.434266159893905e-005 -0.992889679918094 -0.1190381425097307 6.434266159893905e-005 0.583154330462821 -0.8123613857271506 7.643247071129496e-005 0.5723277505082097 -0.8200249629863206 7.795829904883424e-005 0.5831543304628141 -0.8123613857271556 7.643247071129597e-005 0.5723277505082097 -0.8200249629863206 7.795829904883424e-005 -0.5723277505082097 0.8200249629863206 -7.795829904883424e-005 -0.583154330462821 0.8123613857271506 -7.643247071129496e-005 -0.5723277505082097 0.8200249629863206 -7.795829904883424e-005 -0.5831543304628141 0.8123613857271556 -7.643247071129597e-005 0.5938783071816521 -0.8045548773390567 7.489319444341744e-005 0.5938783071816521 -0.8045548773390567 7.489319444341744e-005 -0.5938783071816521 0.8045548773390567 -7.489319444341744e-005 -0.5938783071816521 0.8045548773390567 -7.489319444341744e-005 0.5937570060836116 -0.8046444010337757 7.491076372787921e-005 0.5937570060836116 -0.8046444010337757 7.491076372787921e-005 0.5937570060836116 -0.8046444010337757 7.491076372787921e-005 0.5937570060836116 -0.8046444010337757 7.491076372787921e-005 -0.5937570060836116 0.8046444010337757 -7.491076372787921e-005 -0.5937570060836116 0.8046444010337757 -7.491076372787921e-005 -0.5937570060836116 0.8046444010337757 -7.491076372787921e-005 -0.5937570060836116 0.8046444010337757 -7.491076372787921e-005 -0.3626560860514583 -0.9319230354791956 0.000138539089833159 -0.3626560860514583 -0.9319230354791956 0.000138539089833159 -0.3626560860514583 -0.9319230354791956 0.000138539089833159 -0.3626560860514583 -0.9319230354791956 0.000138539089833159 0.3626560860514583 0.9319230354791956 -0.000138539089833159 0.3626560860514583 0.9319230354791956 -0.000138539089833159 0.3626560860514583 0.9319230354791956 -0.000138539089833159 0.3626560860514583 0.9319230354791956 -0.000138539089833159 -0.5937569807417994 0.8046444197373601 -7.487262306796498e-005 -0.5937569807417994 0.8046444197373601 -7.487262306796498e-005 -0.5937569807417994 0.8046444197373601 -7.487262306796498e-005 -0.5937569807417994 0.8046444197373601 -7.487262306796498e-005 0.5937569807417994 -0.8046444197373601 7.487262306796498e-005 0.5937569807417994 -0.8046444197373601 7.487262306796498e-005 0.5937569807417994 -0.8046444197373601 7.487262306796498e-005 0.5937569807417994 -0.8046444197373601 7.487262306796498e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"216\" source=\"#ID5499\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5497\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5495\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5496\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"58\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5497\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27 32 33 34 33 32 35 40 41 42 41 40 43 48 49 50 49 48 51 56 57 58 57 56 59 57 59 60 60 59 61 68 69 70 69 68 71 76 77 78 77 76 79 70 84 85 84 70 69 88 89 90 89 88 91 91 88 92 91 92 93 100 101 102 101 100 103 108 109 110 109 108 111 116 117 118 117 116 119 124 125 126 125 124 127 132 133 134 133 132 135 140 141 142 141 140 143 148 149 150 149 148 151 156 157 158 157 156 159 164 165 166 165 164 167 172 173 174 173 172 175 180 181 182 181 180 183 188 182 189 182 188 180 192 193 194 193 192 195 200 201 202 201 200 203 208 209 210 209 208 211</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"58\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5497\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29 36 37 38 39 38 37 44 45 46 47 46 45 52 53 54 55 54 53 62 63 64 64 63 65 63 66 65 67 65 66 72 73 74 75 74 73 80 81 82 83 82 81 74 75 86 87 86 75 94 95 96 95 97 96 96 97 98 99 98 97 104 105 106 107 106 105 112 113 114 115 114 113 120 121 122 123 122 121 128 129 130 131 130 129 136 137 138 139 138 137 144 145 146 147 146 145 152 153 154 155 154 153 160 161 162 163 162 161 168 169 170 171 170 169 176 177 178 179 178 177 184 185 186 187 186 185 185 190 187 191 187 190 196 197 198 199 198 197 204 205 206 207 206 205 212 213 214 215 214 213</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5500\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5501\">\r\n\t\t\t\t\t<float_array count=\"234\" id=\"ID5504\">1987.663548096262 1728.167325192859 182.3182839395183 1984.144593256391 1727.746304705456 178.7752047387616 1987.663373449879 1728.166866488371 178.7749768567888 1984.144767903254 1727.746763410018 182.3185118214957 1984.144767903254 1727.746763410018 182.3185118214957 1987.663548096262 1728.167325192859 182.3182839395183 1984.144593256391 1727.746304705456 178.7752047387616 1987.663373449879 1728.166866488371 178.7749768567888 2012.01455893884 1524.313089727982 79.50289642686468 2012.393091330828 1521.146160423659 81.50363247637347 2012.39291668444 1521.145701719177 77.96032539364725 1987.663548096262 1728.167325192859 182.3182839395183 1987.663373449879 1728.166866488371 178.7749768567888 1987.663373449879 1728.166866488371 178.7749768567888 2012.01455893884 1524.313089727982 79.50289642686468 1987.663548096262 1728.167325192859 182.3182839395183 2012.393091330828 1521.146160423659 81.50363247637347 2012.39291668444 1521.145701719177 77.96032539364725 2008.874125243939 1520.72715398822 81.50386016616054 1987.663548096262 1728.167325192859 182.3182839395183 1984.144767903254 1727.746763410018 182.3185118214957 2012.393091330828 1521.146160423659 81.50363247637347 2012.393091330828 1521.146160423659 81.50363247637347 2008.874125243939 1520.72715398822 81.50386016616054 1987.663548096262 1728.167325192859 182.3182839395183 1984.144767903254 1727.746763410018 182.3185118214957 2008.874125243939 1520.72715398822 81.50386016616054 2008.495593123409 1523.894081037646 79.5031288142917 2008.873950597552 1520.726695283695 77.96055308343355 1984.144767903254 1727.746763410018 182.3185118214957 1984.144593256391 1727.746304705456 178.7752047387616 1984.144593256391 1727.746304705456 178.7752047387616 1984.144767903254 1727.746763410018 182.3185118214957 2008.495593123409 1523.894081037646 79.5031288142917 2008.874125243939 1520.72715398822 81.50386016616054 2008.873950597552 1520.726695283695 77.96055308343355 2008.495593123409 1523.894081037646 79.5031288142917 1984.144593256391 1727.746304705456 178.7752047387616 1987.663373449879 1728.166866488371 178.7749768567888 1987.663373449879 1728.166866488371 178.7749768567888 1984.144593256391 1727.746304705456 178.7752047387616 2008.495593123409 1523.894081037646 79.5031288142917 2012.393091330828 1521.146160423659 81.50363247637347 2008.873950597552 1520.726695283695 77.96055308343355 2012.39291668444 1521.145701719177 77.96032539364725 2008.874125243939 1520.72715398822 81.50386016616054 2008.874125243939 1520.72715398822 81.50386016616054 2012.393091330828 1521.146160423659 81.50363247637347 2008.873950597552 1520.726695283695 77.96055308343355 2012.39291668444 1521.145701719177 77.96032539364725 2012.39291668444 1521.145701719177 77.96032539364725 2008.873950597552 1520.726695283695 77.96055308343355 2012.01455893884 1524.313089727982 79.50289642686468 2012.01455893884 1524.313089727982 79.50289642686468 2008.873950597552 1520.726695283695 77.96055308343355 2012.39291668444 1521.145701719177 77.96032539364725 2012.01455893884 1524.313089727982 79.50289642686468 2008.495593123409 1523.894081037646 79.5031288142917 1987.663373449879 1728.166866488371 178.7749768567888 1987.663373449879 1728.166866488371 178.7749768567888 2008.495593123409 1523.894081037646 79.5031288142917 2012.01455893884 1524.313089727982 79.50289642686468 2012.01455893884 1524.313089727982 79.50289642686468 2008.873950597552 1520.726695283695 77.96055308343355 2008.495593123409 1523.894081037646 79.5031288142917 2008.495593123409 1523.894081037646 79.5031288142917 2008.873950597552 1520.726695283695 77.96055308343355 2012.01455893884 1524.313089727982 79.50289642686468 2012.014074638774 1524.317050189608 79.4976426266276 2008.873950597552 1520.726695283695 77.96055308343355 2008.495593123409 1523.894081037646 79.5031288142917 2012.392432112916 1521.149664435657 77.95506689576934 2012.014547993531 1524.313087542606 79.49571274388796 2012.014547993531 1524.313087542606 79.49571274388796 2012.014074638774 1524.317050189608 79.4976426266276 2012.392432112916 1521.149664435657 77.95506689576934 2008.873950597552 1520.726695283695 77.96055308343355 2008.495593123409 1523.894081037646 79.5031288142917</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"78\" source=\"#ID5504\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5502\">\r\n\t\t\t\t\t<float_array count=\"234\" id=\"ID5505\">0.1186745858920121 -0.9929331939309593 0.0001226923953249317 0.1186745858920121 -0.9929331939309593 0.0001226923953249317 0.1186745858920121 -0.9929331939309593 0.0001226923953249317 0.1186745858920121 -0.9929331939309593 0.0001226923953249317 -0.1186745858920121 0.9929331939309593 -0.0001226923953249317 -0.1186745858920121 0.9929331939309593 -0.0001226923953249317 -0.1186745858920121 0.9929331939309593 -0.0001226923953249317 -0.1186745858920121 0.9929331939309593 -0.0001226923953249317 0.9929371172637912 0.1186418013399259 -6.430155345842676e-005 0.9929371172637912 0.1186418013399259 -6.430155345842676e-005 0.9929371172637912 0.1186418013399259 -6.430155345842676e-005 0.9929371172637912 0.1186418013399259 -6.430155345842676e-005 0.9929371172637912 0.1186418013399259 -6.430155345842676e-005 -0.9929371172637912 -0.1186418013399259 6.430155345842676e-005 -0.9929371172637912 -0.1186418013399259 6.430155345842676e-005 -0.9929371172637912 -0.1186418013399259 6.430155345842676e-005 -0.9929371172637912 -0.1186418013399259 6.430155345842676e-005 -0.9929371172637912 -0.1186418013399259 6.430155345842676e-005 0.05162342831304288 -0.4322489139002239 0.9002754567804707 0.05162342831304288 -0.4322489139002239 0.9002754567804707 0.05162342831304288 -0.4322489139002239 0.9002754567804707 0.05162342831304288 -0.4322489139002239 0.9002754567804707 -0.05162342831304288 0.4322489139002239 -0.9002754567804707 -0.05162342831304288 0.4322489139002239 -0.9002754567804707 -0.05162342831304288 0.4322489139002239 -0.9002754567804707 -0.05162342831304288 0.4322489139002239 -0.9002754567804707 -0.9929371172938689 -0.1186418010882087 6.430153677278758e-005 -0.9929371172938689 -0.1186418010882087 6.430153677278758e-005 -0.9929371172938689 -0.1186418010882087 6.430153677278758e-005 -0.9929371172938689 -0.1186418010882087 6.430153677278758e-005 -0.9929371172938689 -0.1186418010882087 6.430153677278758e-005 0.9929371172938689 0.1186418010882087 -6.430153677278758e-005 0.9929371172938689 0.1186418010882087 -6.430153677278758e-005 0.9929371172938689 0.1186418010882087 -6.430153677278758e-005 0.9929371172938689 0.1186418010882087 -6.430153677278758e-005 0.9929371172938689 0.1186418010882087 -6.430153677278758e-005 -0.05171908928267092 0.4322383961888094 -0.9002750161277926 -0.05171908928267092 0.4322383961888094 -0.9002750161277926 -0.05171908928267092 0.4322383961888094 -0.9002750161277926 0.05171908928267092 -0.4322383961888094 0.9002750161277926 0.05171908928267092 -0.4322383961888094 0.9002750161277926 0.05171908928267092 -0.4322383961888094 0.9002750161277926 0.1182356847308023 -0.9929855526621935 0.0001227208083513925 0.1182356847308023 -0.9929855526621935 0.0001227208083513925 0.1182356847308023 -0.9929855526621935 0.0001227208083513925 0.1182356847308023 -0.9929855526621935 0.0001227208083513925 -0.1182356847308023 0.9929855526621935 -0.0001227208083513925 -0.1182356847308023 0.9929855526621935 -0.0001227208083513925 -0.1182356847308023 0.9929855526621935 -0.0001227208083513925 -0.1182356847308023 0.9929855526621935 -0.0001227208083513925 -0.05153107844313225 0.4322872433048799 -0.9002623435590069 -0.05153107844313225 0.4322872433048799 -0.9002623435590069 -0.05153107844313225 0.4322872433048799 -0.9002623435590069 0.05153107844313225 -0.4322872433048799 0.9002623435590069 0.05153107844313225 -0.4322872433048799 0.9002623435590069 0.05153107844313225 -0.4322872433048799 0.9002623435590069 -0.05152912725665355 0.4322583960631624 -0.9002763065176545 -0.05152912725665355 0.4322583960631624 -0.9002763065176545 -0.05152912725665355 0.4322583960631624 -0.9002763065176545 0.05152912725665355 -0.4322583960631624 0.9002763065176545 0.05152912725665355 -0.4322583960631624 0.9002763065176545 0.05152912725665355 -0.4322583960631624 0.9002763065176545 -0.05153269713978339 0.432288385155755 -0.9002617026092631 -0.05153269713978339 0.432288385155755 -0.9002617026092631 -0.05153269713978339 0.432288385155755 -0.9002617026092631 0.05153269713978339 -0.432288385155755 0.9002617026092631 0.05153269713978339 -0.432288385155755 0.9002617026092631 0.05153269713978339 -0.432288385155755 0.9002617026092631 -0.05334455507382831 0.4320713053254652 -0.900260376534658 -0.05334455507382831 0.4320713053254652 -0.900260376534658 -0.05334455507382831 0.4320713053254652 -0.900260376534658 -0.05334455507382831 0.4320713053254652 -0.900260376534658 -0.05334455507382831 0.4320713053254652 -0.900260376534658 0.05334455507382831 -0.4320713053254652 0.900260376534658 0.05334455507382831 -0.4320713053254652 0.900260376534658 0.05334455507382831 -0.4320713053254652 0.900260376534658 0.05334455507382831 -0.4320713053254652 0.900260376534658 0.05334455507382831 -0.4320713053254652 0.900260376534658</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"78\" source=\"#ID5505\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5503\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5501\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5502\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"38\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5503\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 11 8 12 13 14 15 15 14 16 17 16 14 18 19 20 19 18 21 22 23 24 25 24 23 26 27 28 27 26 29 27 29 30 31 32 33 32 34 33 35 33 34 36 37 38 39 40 41 42 43 44 43 42 45 46 47 48 49 48 47 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 69 68 71 71 68 72 73 74 75 75 74 76 77 76 74</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5506\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5507\">\r\n\t\t\t\t\t<float_array count=\"234\" id=\"ID5510\">1987.657577908889 1728.167205987038 170.0882009070718 1987.657938449164 1728.166109344156 173.6315081819961 1987.657763802777 1728.165650639636 170.0882010992636 1987.657752555274 1728.167664691546 173.631507989803 1987.657752555274 1728.167664691546 173.631507989803 1987.657577908889 1728.167205987038 170.0882009070718 1987.657938449164 1728.166109344156 173.6315081819961 1987.657763802777 1728.165650639636 170.0882010992636 1987.657763802777 1728.165650639636 170.0882010992636 2012.387295789839 1521.146499922351 72.81685652665804 2012.387121143453 1521.146041217832 69.2735494439323 2012.386822619899 1521.150461019787 72.81878536677299 2012.009162166308 1524.312011893244 74.35828955498162 2012.008464877415 1524.317846837148 74.3611310826074 1987.657938449164 1728.166109344156 173.6315081819961 1987.657938449164 1728.166109344156 173.6315081819961 1987.657763802777 1728.165650639636 170.0882010992636 2012.008464877415 1524.317846837148 74.3611310826074 2012.009162166308 1524.312011893244 74.35828955498162 2012.386822619899 1521.150461019787 72.81878536677299 2012.387295789839 1521.146499922351 72.81685652665804 2012.387121143453 1521.146041217832 69.2735494439323 1987.657577908889 1728.167205987038 170.0882009070718 2008.868155056569 1520.727034782375 69.273777133718 1984.138797715891 1727.746644204193 170.0884287890529 1987.657763802777 1728.165650639636 170.0882010992636 2012.387121143453 1521.146041217832 69.2735494439323 2012.387121143453 1521.146041217832 69.2735494439323 1987.657763802777 1728.165650639636 170.0882010992636 2008.868155056569 1520.727034782375 69.273777133718 1987.657577908889 1728.167205987038 170.0882009070718 1984.138797715891 1727.746644204193 170.0884287890529 2012.387295789839 1521.146499922351 72.81685652665804 2008.868155056569 1520.727034782375 69.273777133718 2012.387121143453 1521.146041217832 69.2735494439323 2008.868329702952 1520.727493486903 72.81708421644491 2008.868329702952 1520.727493486903 72.81708421644491 2012.387295789839 1521.146499922351 72.81685652665804 2008.868155056569 1520.727034782375 69.273777133718 2012.387121143453 1521.146041217832 69.2735494439323 2008.489972137585 1523.894879279163 74.35954146192255 1987.657938449164 1728.166109344156 173.6315081819961 1984.138972362267 1727.747102908693 173.6317358717829 2012.008464877415 1524.317846837148 74.3611310826074 2012.009162166308 1524.312011893244 74.35828955498162 2012.009162166308 1524.312011893244 74.35828955498162 2008.489972137585 1523.894879279163 74.35954146192255 2012.008464877415 1524.317846837148 74.3611310826074 1987.657938449164 1728.166109344156 173.6315081819961 1984.138972362267 1727.747102908693 173.6317358717829 2012.009162166308 1524.312011893244 74.35828955498162 2012.386811218317 1521.150462638864 72.81159802878072 2012.386822619899 1521.150461019787 72.81878536677299 2012.008453652951 1524.317848431126 74.3540552742583 2012.008464877415 1524.317846837148 74.3611310826074 2012.008464877415 1524.317846837148 74.3611310826074 2012.009162166308 1524.312011893244 74.35828955498162 2012.008453652951 1524.317848431126 74.3540552742583 2012.386811218317 1521.150462638864 72.81159802878072 2012.386822619899 1521.150461019787 72.81878536677299 2008.868329702952 1520.727493486903 72.81708421644491 1984.138797715891 1727.746644204193 170.0884287890529 2008.868155056569 1520.727034782375 69.273777133718 2008.489972137585 1523.894879279163 74.35954146192255 1984.138972362267 1727.747102908693 173.6317358717829 1984.138972362267 1727.747102908693 173.6317358717829 2008.489972137585 1523.894879279163 74.35954146192255 1984.138797715891 1727.746644204193 170.0884287890529 2008.868329702952 1520.727493486903 72.81708421644491 2008.868155056569 1520.727034782375 69.273777133718 2008.868329702952 1520.727493486903 72.81708421644491 2012.008453652951 1524.317848431126 74.3540552742583 2008.489972137585 1523.894879279163 74.35954146192255 2012.386811218317 1521.150462638864 72.81159802878072 2012.386811218317 1521.150462638864 72.81159802878072 2008.868329702952 1520.727493486903 72.81708421644491 2012.008453652951 1524.317848431126 74.3540552742583 2008.489972137585 1523.894879279163 74.35954146192255</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"78\" source=\"#ID5510\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5508\">\r\n\t\t\t\t\t<float_array count=\"234\" id=\"ID5511\">0.9929331998951325 0.1186745819921468 -6.430398386741694e-005 0.9929331998951325 0.1186745819921468 -6.430398386741694e-005 0.9929331998951325 0.1186745819921468 -6.430398386741694e-005 0.9929331998951325 0.1186745819921468 -6.430398386741694e-005 -0.9929331998951325 -0.1186745819921468 6.430398386741694e-005 -0.9929331998951325 -0.1186745819921468 6.430398386741694e-005 -0.9929331998951325 -0.1186745819921468 6.430398386741694e-005 -0.9929331998951325 -0.1186745819921468 6.430398386741694e-005 0.9929371180346628 0.1186417948951743 -6.428895335494731e-005 0.9929371180346628 0.1186417948951743 -6.428895335494731e-005 0.9929371180346628 0.1186417948951743 -6.428895335494731e-005 0.9929371180346628 0.1186417948951743 -6.428895335494731e-005 0.9929371180346628 0.1186417948951743 -6.428895335494731e-005 0.9929371180346628 0.1186417948951743 -6.428895335494731e-005 0.9929371180346628 0.1186417948951743 -6.428895335494731e-005 -0.9929371180346628 -0.1186417948951743 6.428895335494731e-005 -0.9929371180346628 -0.1186417948951743 6.428895335494731e-005 -0.9929371180346628 -0.1186417948951743 6.428895335494731e-005 -0.9929371180346628 -0.1186417948951743 6.428895335494731e-005 -0.9929371180346628 -0.1186417948951743 6.428895335494731e-005 -0.9929371180346628 -0.1186417948951743 6.428895335494731e-005 -0.9929371180346628 -0.1186417948951743 6.428895335494731e-005 -0.05158254371864373 0.432254369383186 -0.9002751808934081 -0.05158254371864373 0.432254369383186 -0.9002751808934081 -0.05158254371864373 0.432254369383186 -0.9002751808934081 -0.05158254371864373 0.432254369383186 -0.9002751808934081 -0.05158254371864373 0.432254369383186 -0.9002751808934081 0.05158254371864373 -0.432254369383186 0.9002751808934081 0.05158254371864373 -0.432254369383186 0.9002751808934081 0.05158254371864373 -0.432254369383186 0.9002751808934081 0.05158254371864373 -0.432254369383186 0.9002751808934081 0.05158254371864373 -0.432254369383186 0.9002751808934081 0.1182356847287526 -0.9929855526624368 0.0001227208141212311 0.1182356847287526 -0.9929855526624368 0.0001227208141212311 0.1182356847287526 -0.9929855526624368 0.0001227208141212311 0.1182356847287526 -0.9929855526624368 0.0001227208141212311 -0.1182356847287526 0.9929855526624368 -0.0001227208141212311 -0.1182356847287526 0.9929855526624368 -0.0001227208141212311 -0.1182356847287526 0.9929855526624368 -0.0001227208141212311 -0.1182356847287526 0.9929855526624368 -0.0001227208141212311 0.05154415748806705 -0.4322599449881003 0.9002747024035109 0.05154415748806705 -0.4322599449881003 0.9002747024035109 0.05154415748806705 -0.4322599449881003 0.9002747024035109 0.05154415748806705 -0.4322599449881003 0.9002747024035109 0.05154415748806705 -0.4322599449881003 0.9002747024035109 -0.05154415748806705 0.4322599449881003 -0.9002747024035109 -0.05154415748806705 0.4322599449881003 -0.9002747024035109 -0.05154415748806705 0.4322599449881003 -0.9002747024035109 -0.05154415748806705 0.4322599449881003 -0.9002747024035109 -0.05154415748806705 0.4322599449881003 -0.9002747024035109 -0.9928498925541637 -0.1193593723399467 0.001559195240980419 -0.9928498925541637 -0.1193593723399467 0.001559195240980419 -0.9928498925541637 -0.1193593723399467 0.001559195240980419 -0.9928498925541637 -0.1193593723399467 0.001559195240980419 -0.9928498925541637 -0.1193593723399467 0.001559195240980419 0.9928498925541637 0.1193593723399467 -0.001559195240980419 0.9928498925541637 0.1193593723399467 -0.001559195240980419 0.9928498925541637 0.1193593723399467 -0.001559195240980419 0.9928498925541637 0.1193593723399467 -0.001559195240980419 0.9928498925541637 0.1193593723399467 -0.001559195240980419 -0.992937117853778 -0.1186417964073805 6.429200748036667e-005 -0.992937117853778 -0.1186417964073805 6.429200748036667e-005 -0.992937117853778 -0.1186417964073805 6.429200748036667e-005 -0.992937117853778 -0.1186417964073805 6.429200748036667e-005 -0.992937117853778 -0.1186417964073805 6.429200748036667e-005 0.992937117853778 0.1186417964073805 -6.429200748036667e-005 0.992937117853778 0.1186417964073805 -6.429200748036667e-005 0.992937117853778 0.1186417964073805 -6.429200748036667e-005 0.992937117853778 0.1186417964073805 -6.429200748036667e-005 0.992937117853778 0.1186417964073805 -6.429200748036667e-005 0.05334133982710831 -0.4320443891782002 0.9002734846951148 0.05334133982710831 -0.4320443891782002 0.9002734846951148 0.05334133982710831 -0.4320443891782002 0.9002734846951148 0.05334133982710831 -0.4320443891782002 0.9002734846951148 -0.05334133982710831 0.4320443891782002 -0.9002734846951148 -0.05334133982710831 0.4320443891782002 -0.9002734846951148 -0.05334133982710831 0.4320443891782002 -0.9002734846951148 -0.05334133982710831 0.4320443891782002 -0.9002734846951148</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"78\" source=\"#ID5511\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5509\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5507\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5508\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"46\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5509\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 11 8 12 12 8 13 13 8 14 15 16 17 17 16 18 18 16 19 19 16 20 21 20 16 22 23 24 23 22 25 23 25 26 27 28 29 28 30 29 31 29 30 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 43 40 44 45 46 47 47 46 48 49 48 46 50 51 52 51 50 53 53 50 54 55 56 57 57 56 58 59 58 56 60 61 62 61 60 63 61 63 64 65 66 67 66 68 67 69 67 68 70 71 72 71 70 73 74 75 76 77 76 75</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5512\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5513\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID5517\">927.6508141184891 2850.315473018058 392.093246961036 738.4774399797916 4432.927181190375 239.5354851413113 927.6432142020271 2850.295673211268 239.7318609341848 688.371984548714 4852.211516025303 391.8450301603698 688.364384632308 4852.191716218393 239.4836441334934 688.364384632308 4852.191716218393 239.4836441334934 688.371984548714 4852.211516025303 391.8450301603698 738.4774399797916 4432.927181190375 239.5354851413113 927.6508141184891 2850.315473018058 392.093246961036 927.6432142020271 2850.295673211268 239.7318609341848</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID5517\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5514\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID5518\">-0.9929323933199504 -0.118681329943862 6.495130307266414e-005 -0.9929323933199504 -0.118681329943862 6.495130307266414e-005 -0.9929323933199504 -0.118681329943862 6.495130307266414e-005 -0.9929323933199504 -0.118681329943862 6.495130307266414e-005 -0.9929323933199504 -0.118681329943862 6.495130307266414e-005 0.9929323933199504 0.118681329943862 -6.495130307266414e-005 0.9929323933199504 0.118681329943862 -6.495130307266414e-005 0.9929323933199504 0.118681329943862 -6.495130307266414e-005 0.9929323933199504 0.118681329943862 -6.495130307266414e-005 0.9929323933199504 0.118681329943862 -6.495130307266414e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID5518\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5516\">\r\n\t\t\t\t\t<float_array count=\"20\" id=\"ID5519\">-3.347526217676283 1.000146906183192 -13.9206111957422 -0.002687909209423411 -3.347284009424584 -0.001397037610070484 -16.72189779387889 0.998515258953288 -16.72165558562634 -0.003028684840139961 -16.72165558562627 -0.003028684839966989 -16.72189779387881 0.9985152589535726 -13.92061119574217 -0.002687909209250439 -3.347526217676418 1.000146906183476 -3.347284009424719 -0.001397037609897289</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID5519\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5515\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5513\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5514\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5515\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5516\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 5 5 6 6 7 7 6 6 8 8 7 7 9 9 7 7 8 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5520\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5521\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5524\">1360.353650675021 5220.642651407595 5.666552940793023 1366.922437404164 5198.871563039365 5.669143833883055 1358.570661709247 5208.530036206053 5.668184510687494 1370.48841533569 5223.096793442447 5.665880694098602 1377.057202064843 5201.325705074209 5.668471587183719 1378.840191030613 5213.438320275764 5.666840017290474 1378.840191030613 5213.438320275764 5.666840017290474 1370.48841533569 5223.096793442447 5.665880694098602 1377.057202064843 5201.325705074209 5.668471587183719 1366.922437404164 5198.871563039365 5.669143833883055 1360.353650675021 5220.642651407595 5.666552940793023 1358.570661709247 5208.530036206053 5.668184510687494</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5524\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5522\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5525\">-3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 -3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 -3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 -3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 -3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 -3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5525\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5523\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5521\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5522\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5523\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 6 7 8 8 7 9 7 10 9 11 9 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5526\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5527\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5530\">1583.703681560926 5133.599134473144 5.66692210008023 1590.272468290079 5111.828046104873 5.669512993166427 1581.920692595155 5121.486519271547 5.668553669975129 1593.838446221602 5136.053276507998 5.666249853383226 1600.407232950762 5114.282188139709 5.668840746473196 1602.190221916472 5126.394803341308 5.667209176583016 1602.190221916472 5126.394803341308 5.667209176583016 1593.838446221602 5136.053276507998 5.666249853383226 1600.407232950762 5114.282188139709 5.668840746473196 1590.272468290079 5111.828046104873 5.669512993166427 1583.703681560926 5133.599134473144 5.66692210008023 1581.920692595155 5121.486519271547 5.668553669975129</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5530\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5528\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5531\">-3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 -3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 -3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 -3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 -3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 -3.495914444601112e-005 -0.0001295540296973735 -0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057 3.495914444601112e-005 0.0001295540296973735 0.9999999909968057</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5531\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5529\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5527\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5528\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5529\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 6 7 8 8 7 9 7 10 9 11 9 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5532\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5533\">\r\n\t\t\t\t\t<float_array count=\"672\" id=\"ID5536\">4402.128733975059 4322.624628458232 280.7077214055935 4398.608533618028 4322.21864949715 277.1646408564166 4402.128558810003 4322.624171021405 277.1644144899473 4398.608708783072 4322.219106933952 280.7079476349524 4398.608708783072 4322.219106933952 280.7079476349524 4402.128733975059 4322.624628458232 280.7077214055935 4398.608533618028 4322.21864949715 277.1646408564166 4402.128558810003 4322.624171021405 277.1644144899473 4351.716097173257 4760.216535697194 277.1104139862582 4402.128733975059 4322.624628458232 280.7077214055935 4402.128558810003 4322.624171021405 277.1644144899473 4351.716272264534 4760.216993774411 280.6537209018255 4351.716272264534 4760.216993774411 280.6537209018255 4351.716097173257 4760.216535697194 277.1104139862582 4402.128733975059 4322.624628458232 280.7077214055935 4402.128558810003 4322.624171021405 277.1644144899473 2344.702493291679 3955.07798381868 280.8567031895486 3783.349681751003 5019.948732929146 280.6481148412139 2340.922004548288 3956.693197128554 280.8566805524429 3783.773570327136 5015.859271679005 280.6486228209907 4351.716272264534 4760.216993774411 280.6537209018255 4348.425067801149 4757.825252961009 280.6541922379338 4398.608708783072 4322.219106933952 280.7079476349524 4402.128733975059 4322.624628458232 280.7077214055935 4402.128733975059 4322.624628458232 280.7077214055935 4398.608708783072 4322.219106933952 280.7079476349524 4351.716272264534 4760.216993774411 280.6537209018255 4348.425067801149 4757.825252961009 280.6541922379338 3783.773570327136 5015.859271679005 280.6486228209907 3783.349681751003 5019.948732929146 280.6481148412139 2344.702493291679 3955.07798381868 280.8567031895486 2340.922004548288 3956.693197128554 280.8566805524429 4398.608708783072 4322.219106933952 280.7079476349524 4348.424892709878 4757.824794883807 277.1108854594773 4398.608533618028 4322.21864949715 277.1646408564166 4348.425067801149 4757.825252961009 280.6541922379338 4348.425067801149 4757.825252961009 280.6541922379338 4398.608708783072 4322.219106933952 280.7079476349524 4348.424892709878 4757.824794883807 277.1108854594773 4398.608533618028 4322.21864949715 277.1646408564166 3783.349507258507 5019.948274578292 277.1048079256527 2344.702318636278 3955.077525347764 277.3133964111219 2340.921829892881 3956.692738657616 277.3133736369047 3783.773395834648 5015.858813328174 277.1053160425405 4351.716097173257 4760.216535697194 277.1104139862582 4348.424892709878 4757.824794883807 277.1108854594773 4398.608533618028 4322.21864949715 277.1646408564166 4402.128558810003 4322.624171021405 277.1644144899473 4540.011676344261 4129.518447966104 277.1825897697192 4939.883326299446 3951.020716145657 277.1860088693481 4538.593583124969 4126.271289748353 277.18308005542 4943.200429266886 3953.438542057772 277.185532444243 4998.751476404977 3368.253037252712 277.2585294603389 5002.479801633772 3366.599951435306 277.2585596263422 2491.954852007941 2783.513772223238 277.4577995490735 2495.201183551594 2786.047730946988 277.4573115334001 3615.290178090002 2343.568127545386 277.4593777442028 3614.761175840352 2347.580666725927 277.4588844244902 5002.479801633772 3366.599951435306 277.2585596263422 4998.751476404977 3368.253037252712 277.2585294603389 3615.290178090002 2343.568127545386 277.4593777442028 3614.761175840352 2347.580666725927 277.4588844244902 2495.201183551594 2786.047730946988 277.4573115334001 2491.954852007941 2783.513772223238 277.4577995490735 2344.702318636278 3955.077525347764 277.3133964111219 2340.921829892881 3956.692738657616 277.3133736369047 4943.200429266886 3953.438542057772 277.185532444243 4939.883326299446 3951.020716145657 277.1860088693481 4540.011676344261 4129.518447966104 277.1825897697192 4538.593583124969 4126.271289748353 277.18308005542 4402.128558810003 4322.624171021405 277.1644144899473 4351.716097173257 4760.216535697194 277.1104139862582 4398.608533618028 4322.21864949715 277.1646408564166 4348.424892709878 4757.824794883807 277.1108854594773 3783.773395834648 5015.858813328174 277.1053160425405 3783.349507258507 5019.948274578292 277.1048079256527 3783.349681751003 5019.948732929146 280.6481148412139 4351.716097173257 4760.216535697194 277.1104139862582 3783.349507258507 5019.948274578292 277.1048079256527 4351.716272264534 4760.216993774411 280.6537209018255 4351.716272264534 4760.216993774411 280.6537209018255 3783.349681751003 5019.948732929146 280.6481148412139 4351.716097173257 4760.216535697194 277.1104139862582 3783.349507258507 5019.948274578292 277.1048079256527 2491.955026638545 2783.51423088687 281.0011064645879 2344.702493291679 3955.07798381868 280.8567031895486 2340.922004548288 3956.693197128554 280.8566805524429 2495.20135818219 2786.048189610597 281.0006183118028 3615.290352764504 2343.568586191822 281.0026846597165 3614.761350514844 2347.581125372343 281.0021912028936 4998.75165105762 3368.253495883023 280.8018362387455 5002.479976286422 3366.600410065629 280.8018665418589 5002.479976286422 3366.600410065629 280.8018665418589 3615.290352764504 2343.568586191822 281.0026846597165 4998.75165105762 3368.253495883023 280.8018362387455 3614.761350514844 2347.581125372343 281.0021912028936 2495.20135818219 2786.048189610597 281.0006183118028 2491.955026638545 2783.51423088687 281.0011064645879 2344.702493291679 3955.07798381868 280.8567031895486 2340.922004548288 3956.693197128554 280.8566805524429 3783.773570327136 5015.859271679005 280.6486228209907 2344.702318636278 3955.077525347764 277.3133964111219 3783.773395834648 5015.858813328174 277.1053160425405 2344.702493291679 3955.07798381868 280.8567031895486 2344.702493291679 3955.07798381868 280.8567031895486 3783.773570327136 5015.859271679005 280.6486228209907 2344.702318636278 3955.077525347764 277.3133964111219 3783.773395834648 5015.858813328174 277.1053160425405 4348.424892709878 4757.824794883807 277.1108854594773 3783.773570327136 5015.859271679005 280.6486228209907 3783.773395834648 5015.858813328174 277.1053160425405 4348.425067801149 4757.825252961009 280.6541922379338 4348.425067801149 4757.825252961009 280.6541922379338 4348.424892709878 4757.824794883807 277.1108854594773 3783.773570327136 5015.859271679005 280.6486228209907 3783.773395834648 5015.858813328174 277.1053160425405 2340.921829892881 3956.692738657616 277.3133736369047 3783.349681751003 5019.948732929146 280.6481148412139 3783.349507258507 5019.948274578292 277.1048079256527 2340.922004548288 3956.693197128554 280.8566805524429 2340.922004548288 3956.693197128554 280.8566805524429 2340.921829892881 3956.692738657616 277.3133736369047 3783.349681751003 5019.948732929146 280.6481148412139 3783.349507258507 5019.948274578292 277.1048079256527 2344.702318636278 3955.077525347764 277.3133964111219 2495.20135818219 2786.048189610597 281.0006183118028 2495.201183551594 2786.047730946988 277.4573115334001 2344.702493291679 3955.07798381868 280.8567031895486 2344.702493291679 3955.07798381868 280.8567031895486 2344.702318636278 3955.077525347764 277.3133964111219 2495.20135818219 2786.048189610597 281.0006183118028 2495.201183551594 2786.047730946988 277.4573115334001 2495.20135818219 2786.048189610597 281.0006183118028 3614.761175840352 2347.580666725927 277.4588844244902 2495.201183551594 2786.047730946988 277.4573115334001 3614.761350514844 2347.581125372343 281.0021912028936 3614.761350514844 2347.581125372343 281.0021912028936 2495.20135818219 2786.048189610597 281.0006183118028 3614.761175840352 2347.580666725927 277.4588844244902 2495.201183551594 2786.047730946988 277.4573115334001 3614.761175840352 2347.580666725927 277.4588844244902 4998.75165105762 3368.253495883023 280.8018362387455 4998.751476404977 3368.253037252712 277.2585294603389 3614.761350514844 2347.581125372343 281.0021912028936 3614.761350514844 2347.581125372343 281.0021912028936 3614.761175840352 2347.580666725927 277.4588844244902 4998.75165105762 3368.253495883023 280.8018362387455 4998.751476404977 3368.253037252712 277.2585294603389 4998.75165105762 3368.253495883023 280.8018362387455 4939.883326299446 3951.020716145657 277.1860088693481 4998.751476404977 3368.253037252712 277.2585294603389 4939.883500941879 3951.021174877043 280.7293156477419 4939.883500941879 3951.021174877043 280.7293156477419 4998.75165105762 3368.253495883023 280.8018362387455 4939.883326299446 3951.020716145657 277.1860088693481 4998.751476404977 3368.253037252712 277.2585294603389 4939.883326299446 3951.020716145657 277.1860088693481 4538.593757626201 4126.271748541409 280.7263868338127 4538.593583124969 4126.271289748353 277.18308005542 4939.883500941879 3951.021174877043 280.7293156477419 4939.883500941879 3951.021174877043 280.7293156477419 4939.883326299446 3951.020716145657 277.1860088693481 4538.593757626201 4126.271748541409 280.7263868338127 4538.593583124969 4126.271289748353 277.18308005542 4538.593757626201 4126.271748541409 280.7263868338127 4540.011676344261 4129.518447966104 277.1825897697192 4538.593583124969 4126.271289748353 277.18308005542 4540.011851009595 4129.518906687508 280.7258966852241 4540.011851009595 4129.518906687508 280.7258966852241 4538.593757626201 4126.271748541409 280.7263868338127 4540.011676344261 4129.518447966104 277.1825897697192 4538.593583124969 4126.271289748353 277.18308005542 4540.011851009595 4129.518906687508 280.7258966852241 4943.200429266886 3953.438542057772 277.185532444243 4540.011676344261 4129.518447966104 277.1825897697192 4943.200603909326 3953.439000789176 280.7288393597473 4943.200603909326 3953.439000789176 280.7288393597473 4540.011851009595 4129.518906687508 280.7258966852241 4943.200429266886 3953.438542057772 277.185532444243 4540.011676344261 4129.518447966104 277.1825897697192 4943.200429266886 3953.438542057772 277.185532444243 5002.479976286422 3366.600410065629 280.8018665418589 5002.479801633772 3366.599951435306 277.2585596263422 4943.200603909326 3953.439000789176 280.7288393597473 4943.200603909326 3953.439000789176 280.7288393597473 4943.200429266886 3953.438542057772 277.185532444243 5002.479976286422 3366.600410065629 280.8018665418589 5002.479801633772 3366.599951435306 277.2585596263422 5002.479976286422 3366.600410065629 280.8018665418589 3615.290178090002 2343.568127545386 277.4593777442028 5002.479801633772 3366.599951435306 277.2585596263422 3615.290352764504 2343.568586191822 281.0026846597165 3615.290352764504 2343.568586191822 281.0026846597165 5002.479976286422 3366.600410065629 280.8018665418589 3615.290178090002 2343.568127545386 277.4593777442028 5002.479801633772 3366.599951435306 277.2585596263422 3615.290178090002 2343.568127545386 277.4593777442028 2491.955026638545 2783.51423088687 281.0011064645879 2491.954852007941 2783.513772223238 277.4577995490735 3615.290352764504 2343.568586191822 281.0026846597165 3615.290352764504 2343.568586191822 281.0026846597165 3615.290178090002 2343.568127545386 277.4593777442028 2491.955026638545 2783.51423088687 281.0011064645879 2491.954852007941 2783.513772223238 277.4577995490735 2491.955026638545 2783.51423088687 281.0011064645879 2340.921829892881 3956.692738657616 277.3133736369047 2491.954852007941 2783.513772223238 277.4577995490735 2340.922004548288 3956.693197128554 280.8566805524429 2340.922004548288 3956.693197128554 280.8566805524429 2491.955026638545 2783.51423088687 281.0011064645879 2340.921829892881 3956.692738657616 277.3133736369047 2491.954852007941 2783.513772223238 277.4577995490735 4939.883500941879 3951.021174877043 280.7293156477419 4540.011851009595 4129.518906687508 280.7258966852241 4538.593757626201 4126.271748541409 280.7263868338127 4943.200603909326 3953.439000789176 280.7288393597473 4998.75165105762 3368.253495883023 280.8018362387455 5002.479976286422 3366.600410065629 280.8018665418589 5002.479976286422 3366.600410065629 280.8018665418589 4998.75165105762 3368.253495883023 280.8018362387455 4943.200603909326 3953.439000789176 280.7288393597473 4939.883500941879 3951.021174877043 280.7293156477419 4540.011851009595 4129.518906687508 280.7258966852241 4538.593757626201 4126.271748541409 280.7263868338127</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"224\" source=\"#ID5536\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5534\">\r\n\t\t\t\t\t<float_array count=\"672\" id=\"ID5537\">0.1144471928891287 -0.9934293256245248 0.0001225928246266462 0.1144471928891287 -0.9934293256245248 0.0001225928246266462 0.1144471928891287 -0.9934293256245248 0.0001225928246266462 0.1144471928891287 -0.9934293256245248 0.0001225928246266462 -0.1144471928891287 0.9934293256245248 -0.0001225928246266462 -0.1144471928891287 0.9934293256245248 -0.0001225928246266462 -0.1144471928891287 0.9934293256245248 -0.0001225928246266462 -0.1144471928891287 0.9934293256245248 -0.0001225928246266462 0.9934293319587098 0.1144471857351491 -6.388564800718141e-005 0.9934293319587098 0.1144471857351491 -6.388564800718141e-005 0.9934293319587098 0.1144471857351491 -6.388564800718141e-005 0.9934293319587098 0.1144471857351491 -6.388564800718141e-005 -0.9934293319587098 -0.1144471857351491 6.388564800718141e-005 -0.9934293319587098 -0.1144471857351491 6.388564800718141e-005 -0.9934293319587098 -0.1144471857351491 6.388564800718141e-005 -0.9934293319587098 -0.1144471857351491 6.388564800718141e-005 4.930947879742421e-005 0.000129236368945152 0.999999990433268 4.930947879742421e-005 0.000129236368945152 0.999999990433268 4.930947879742421e-005 0.000129236368945152 0.999999990433268 4.930947879742421e-005 0.000129236368945152 0.999999990433268 4.930947879742421e-005 0.000129236368945152 0.999999990433268 4.930947879742421e-005 0.000129236368945152 0.999999990433268 4.930947879742421e-005 0.000129236368945152 0.999999990433268 4.930947879742421e-005 0.000129236368945152 0.999999990433268 -4.930947879742421e-005 -0.000129236368945152 -0.999999990433268 -4.930947879742421e-005 -0.000129236368945152 -0.999999990433268 -4.930947879742421e-005 -0.000129236368945152 -0.999999990433268 -4.930947879742421e-005 -0.000129236368945152 -0.999999990433268 -4.930947879742421e-005 -0.000129236368945152 -0.999999990433268 -4.930947879742421e-005 -0.000129236368945152 -0.999999990433268 -4.930947879742421e-005 -0.000129236368945152 -0.999999990433268 -4.930947879742421e-005 -0.000129236368945152 -0.999999990433268 -0.9934293319587098 -0.114447185735149 6.388564831266838e-005 -0.9934293319587098 -0.114447185735149 6.388564831266838e-005 -0.9934293319587098 -0.114447185735149 6.388564831266838e-005 -0.9934293319587098 -0.114447185735149 6.388564831266838e-005 0.9934293319587098 0.114447185735149 -6.388564831266838e-005 0.9934293319587098 0.114447185735149 -6.388564831266838e-005 0.9934293319587098 0.114447185735149 -6.388564831266838e-005 0.9934293319587098 0.114447185735149 -6.388564831266838e-005 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 -4.930377726713596e-005 -0.0001293873922558553 -0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 4.930377726713596e-005 0.0001293873922558553 0.9999999904140202 0.4156366710739805 0.909530724374264 -0.0001381222884176395 0.4156366710739805 0.909530724374264 -0.0001381222884176395 0.4156366710739805 0.909530724374264 -0.0001381222884176395 0.4156366710739805 0.909530724374264 -0.0001381222884176395 -0.4156366710739805 -0.909530724374264 0.0001381222884176395 -0.4156366710739805 -0.909530724374264 0.0001381222884176395 -0.4156366710739805 -0.909530724374264 0.0001381222884176395 -0.4156366710739805 -0.909530724374264 0.0001381222884176395 4.929558129282786e-005 0.0001294534890463811 0.99999999040587 4.929558129282786e-005 0.0001294534890463811 0.99999999040587 4.929558129282786e-005 0.0001294534890463811 0.99999999040587 4.929558129282786e-005 0.0001294534890463811 0.99999999040587 4.929558129282786e-005 0.0001294534890463811 0.99999999040587 4.929558129282786e-005 0.0001294534890463811 0.99999999040587 4.929558129282786e-005 0.0001294534890463811 0.99999999040587 4.929558129282786e-005 0.0001294534890463811 0.99999999040587 -4.929558129282786e-005 -0.0001294534890463811 -0.99999999040587 -4.929558129282786e-005 -0.0001294534890463811 -0.99999999040587 -4.929558129282786e-005 -0.0001294534890463811 -0.99999999040587 -4.929558129282786e-005 -0.0001294534890463811 -0.99999999040587 -4.929558129282786e-005 -0.0001294534890463811 -0.99999999040587 -4.929558129282786e-005 -0.0001294534890463811 -0.99999999040587 -4.929558129282786e-005 -0.0001294534890463811 -0.99999999040587 -4.929558129282786e-005 -0.0001294534890463811 -0.99999999040587 0.5933488009812092 -0.8049454607384 7.490531524030793e-005 0.5933488009812092 -0.8049454607384 7.490531524030793e-005 0.5933488009812092 -0.8049454607384 7.490531524030793e-005 0.5933488009812092 -0.8049454607384 7.490531524030793e-005 -0.5933488009812092 0.8049454607384 -7.490531524030793e-005 -0.5933488009812092 0.8049454607384 -7.490531524030793e-005 -0.5933488009812092 0.8049454607384 -7.490531524030793e-005 -0.5933488009812092 0.8049454607384 -7.490531524030793e-005 -0.4156366710739802 -0.9095307243742641 0.0001381222887117152 -0.4156366710739802 -0.9095307243742641 0.0001381222887117152 -0.4156366710739802 -0.9095307243742641 0.0001381222887117152 -0.4156366710739802 -0.9095307243742641 0.0001381222887117152 0.4156366710739802 0.9095307243742641 -0.0001381222887117152 0.4156366710739802 0.9095307243742641 -0.0001381222887117152 0.4156366710739802 0.9095307243742641 -0.0001381222887117152 0.4156366710739802 0.9095307243742641 -0.0001381222887117152 -0.5933488009812096 0.8049454607383999 -7.490531498765022e-005 -0.5933488009812096 0.8049454607383999 -7.490531498765022e-005 -0.5933488009812096 0.8049454607383999 -7.490531498765022e-005 -0.5933488009812096 0.8049454607383999 -7.490531498765022e-005 0.5933488009812096 -0.8049454607383999 7.490531498765022e-005 0.5933488009812096 -0.8049454607383999 7.490531498765022e-005 0.5933488009812096 -0.8049454607383999 7.490531498765022e-005 0.5933488009812096 -0.8049454607383999 7.490531498765022e-005 0.991814832265583 0.1276845104921043 -6.540936699731817e-005 0.991814832265583 0.1276845104921043 -6.540936699731817e-005 0.991814832265583 0.1276845104921043 -6.540936699731817e-005 0.991814832265583 0.1276845104921043 -6.540936699731817e-005 -0.991814832265583 -0.1276845104921043 6.540936699731817e-005 -0.991814832265583 -0.1276845104921043 6.540936699731817e-005 -0.991814832265583 -0.1276845104921043 6.540936699731817e-005 -0.991814832265583 -0.1276845104921043 6.540936699731817e-005 0.3646722337147282 0.9311359421557283 -0.0001385037013214982 0.3646722337147282 0.9311359421557283 -0.0001385037013214982 0.3646722337147282 0.9311359421557283 -0.0001385037013214982 0.3646722337147282 0.9311359421557283 -0.0001385037013214982 -0.3646722337147282 -0.9311359421557283 0.0001385037013214982 -0.3646722337147282 -0.9311359421557283 0.0001385037013214982 -0.3646722337147282 -0.9311359421557283 0.0001385037013214982 -0.3646722337147282 -0.9311359421557283 0.0001385037013214982 -0.5935344381659446 0.8048085891059821 -7.491511915669151e-005 -0.5935344381659446 0.8048085891059821 -7.491511915669151e-005 -0.5935344381659446 0.8048085891059821 -7.491511915669151e-005 -0.5935344381659446 0.8048085891059821 -7.491511915669151e-005 0.5935344381659446 -0.8048085891059821 7.491511915669151e-005 0.5935344381659446 -0.8048085891059821 7.491511915669151e-005 0.5935344381659446 -0.8048085891059821 7.491511915669151e-005 0.5935344381659446 -0.8048085891059821 7.491511915669151e-005 -0.9949367221755596 -0.1005033084846003 6.205000297593798e-005 -0.9949367221755596 -0.1005033084846003 6.205000297593798e-005 -0.9949367221755596 -0.1005033084846003 6.205000297593798e-005 -0.9949367221755596 -0.1005033084846003 6.205000297593798e-005 0.9949367221755596 0.1005033084846003 -6.205000297593798e-005 0.9949367221755596 0.1005033084846003 -6.205000297593798e-005 0.9949367221755596 0.1005033084846003 -6.205000297593798e-005 0.9949367221755596 0.1005033084846003 -6.205000297593798e-005 -0.4002174659778562 -0.9164201878942538 0.0001383695197181476 -0.4002174659778562 -0.9164201878942538 0.0001383695197181476 -0.4002174659778562 -0.9164201878942538 0.0001383695197181476 -0.4002174659778562 -0.9164201878942538 0.0001383695197181476 0.4002174659778562 0.9164201878942538 -0.0001383695197181476 0.4002174659778562 0.9164201878942538 -0.0001383695197181476 0.4002174659778562 0.9164201878942538 -0.0001383695197181476 0.4002174659778562 0.9164201878942538 -0.0001383695197181476 -0.9164202071282033 0.4002174458000278 -6.663546786421764e-006 -0.9164202071282033 0.4002174458000278 -6.663546786421764e-006 -0.9164202071282033 0.4002174458000278 -6.663546786421764e-006 -0.9164202071282033 0.4002174458000278 -6.663546786421764e-006 0.9164202071282033 -0.4002174458000278 6.663546786421764e-006 0.9164202071282033 -0.4002174458000278 6.663546786421764e-006 0.9164202071282033 -0.4002174458000278 6.663546786421764e-006 0.9164202071282033 -0.4002174458000278 6.663546786421764e-006 0.4002174659778561 0.916420187894254 -0.0001383695197205756 0.4002174659778561 0.916420187894254 -0.0001383695197205756 0.4002174659778561 0.916420187894254 -0.0001383695197205756 0.4002174659778561 0.916420187894254 -0.0001383695197205756 -0.4002174659778561 -0.916420187894254 0.0001383695197205756 -0.4002174659778561 -0.916420187894254 0.0001383695197205756 -0.4002174659778561 -0.916420187894254 0.0001383695197205756 -0.4002174659778561 -0.916420187894254 0.0001383695197205756 0.9949367221755595 0.1005033084846002 -6.205000296390225e-005 0.9949367221755595 0.1005033084846002 -6.205000296390225e-005 0.9949367221755595 0.1005033084846002 -6.205000296390225e-005 0.9949367221755595 0.1005033084846002 -6.205000296390225e-005 -0.9949367221755595 -0.1005033084846002 6.205000296390225e-005 -0.9949367221755595 -0.1005033084846002 6.205000296390225e-005 -0.9949367221755595 -0.1005033084846002 6.205000296390225e-005 -0.9949367221755595 -0.1005033084846002 6.205000296390225e-005 0.5935344381659445 -0.8048085891059821 7.4915119242206e-005 0.5935344381659445 -0.8048085891059821 7.4915119242206e-005 0.5935344381659445 -0.8048085891059821 7.4915119242206e-005 0.5935344381659445 -0.8048085891059821 7.4915119242206e-005 -0.5935344381659445 0.8048085891059821 -7.4915119242206e-005 -0.5935344381659445 0.8048085891059821 -7.4915119242206e-005 -0.5935344381659445 0.8048085891059821 -7.4915119242206e-005 -0.5935344381659445 0.8048085891059821 -7.4915119242206e-005 -0.364672233714728 -0.9311359421557283 0.0001385037014502223 -0.364672233714728 -0.9311359421557283 0.0001385037014502223 -0.364672233714728 -0.9311359421557283 0.0001385037014502223 -0.364672233714728 -0.9311359421557283 0.0001385037014502223 0.364672233714728 0.9311359421557283 -0.0001385037014502223 0.364672233714728 0.9311359421557283 -0.0001385037014502223 0.364672233714728 0.9311359421557283 -0.0001385037014502223 0.364672233714728 0.9311359421557283 -0.0001385037014502223 -0.9918148322655831 -0.1276845104921043 6.540936713089274e-005 -0.9918148322655831 -0.1276845104921043 6.540936713089274e-005 -0.9918148322655831 -0.1276845104921043 6.540936713089274e-005 -0.9918148322655831 -0.1276845104921043 6.540936713089274e-005 0.9918148322655831 0.1276845104921043 -6.540936713089274e-005 0.9918148322655831 0.1276845104921043 -6.540936713089274e-005 0.9918148322655831 0.1276845104921043 -6.540936713089274e-005 0.9918148322655831 0.1276845104921043 -6.540936713089274e-005 4.921838064065416e-005 0.0001294134689509073 0.9999999904148526 4.921838064065416e-005 0.0001294134689509073 0.9999999904148526 4.921838064065416e-005 0.0001294134689509073 0.9999999904148526 4.921838064065416e-005 0.0001294134689509073 0.9999999904148526 4.921838064065416e-005 0.0001294134689509073 0.9999999904148526 4.921838064065416e-005 0.0001294134689509073 0.9999999904148526 -4.921838064065416e-005 -0.0001294134689509073 -0.9999999904148526 -4.921838064065416e-005 -0.0001294134689509073 -0.9999999904148526 -4.921838064065416e-005 -0.0001294134689509073 -0.9999999904148526 -4.921838064065416e-005 -0.0001294134689509073 -0.9999999904148526 -4.921838064065416e-005 -0.0001294134689509073 -0.9999999904148526 -4.921838064065416e-005 -0.0001294134689509073 -0.9999999904148526</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"224\" source=\"#ID5537\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5535\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5533\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5534\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"136\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5535\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 17 19 20 20 19 21 20 21 22 20 22 23 24 25 26 25 27 26 27 28 26 26 28 29 28 30 29 31 29 30 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 43 40 44 43 44 45 45 44 46 46 44 47 48 49 50 49 48 51 49 51 52 52 51 53 41 54 42 54 41 55 54 55 56 56 55 57 56 57 52 56 52 53 58 59 60 59 61 60 61 62 60 60 62 63 62 64 63 65 63 64 58 66 59 59 66 67 66 68 67 69 67 68 70 71 72 72 71 73 73 71 74 71 75 74 74 75 64 65 64 75 76 77 78 77 76 79 80 81 82 83 82 81 84 85 86 85 84 87 87 84 88 87 88 89 89 88 90 90 88 91 92 93 94 94 93 95 95 93 96 93 97 96 96 97 98 99 98 97 100 101 102 101 100 103 104 105 106 107 106 105 108 109 110 109 108 111 112 113 114 115 114 113 116 117 118 117 116 119 120 121 122 123 122 121 124 125 126 125 124 127 128 129 130 131 130 129 132 133 134 133 132 135 136 137 138 139 138 137 140 141 142 141 140 143 144 145 146 147 146 145 148 149 150 149 148 151 152 153 154 155 154 153 156 157 158 157 156 159 160 161 162 163 162 161 164 165 166 165 164 167 168 169 170 171 170 169 172 173 174 173 172 175 176 177 178 179 178 177 180 181 182 181 180 183 184 185 186 187 186 185 188 189 190 189 188 191 192 193 194 195 194 193 196 197 198 197 196 199 200 201 202 203 202 201 204 205 206 205 204 207 208 209 210 211 210 209 212 213 214 213 212 215 215 212 216 215 216 217 218 219 220 219 221 220 220 221 222 223 222 221</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5538\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5539\">\r\n\t\t\t\t\t<float_array count=\"672\" id=\"ID5542\">4348.362830019213 4757.861037328259 268.2530342220218 3783.711507636472 5015.895514123453 271.7907715835351 3783.711333143979 5015.895055772624 268.2474648050843 4348.363005110485 4757.861495405461 271.796341000478 4348.363005110485 4757.861495405461 271.796341000478 4348.362830019213 4757.861037328259 268.2530342220218 3783.711507636472 5015.895514123453 271.7907715835351 3783.711333143979 5015.895055772624 268.2474648050843 3783.711507636472 5015.895514123453 271.7907715835351 2344.640255945609 3955.11376779221 268.4555451736661 3783.711333143979 5015.895055772624 268.2474648050843 2344.640430601012 3955.114226263128 271.9988519520929 2344.640430601012 3955.114226263128 271.9988519520929 3783.711507636472 5015.895514123453 271.7907715835351 2344.640255945609 3955.11376779221 268.4555451736661 3783.711333143979 5015.895055772624 268.2474648050843 3783.28744456784 5019.984517022744 268.2469566881969 2344.640255945609 3955.11376779221 268.4555451736661 2340.859767202215 3956.728981102065 268.4555223994495 3783.711333143979 5015.895055772624 268.2474648050843 4351.654034482594 4760.252778141645 268.2525627488027 4348.362830019213 4757.861037328259 268.2530342220218 4398.546470927364 4322.254891941598 268.3067896189604 4402.066496119342 4322.660413465853 268.3065632524911 4539.949613653589 4129.554690410556 268.3247385322633 4939.821263608777 3951.056958590103 268.3281576318929 4538.531520434295 4126.307532192809 268.325228817964 4943.138366576218 3953.474784502216 268.3276812067873 4998.689413714314 3368.289279697161 268.4006782228828 5002.417738943101 3366.636193879754 268.4007083888864 2491.892789317275 2783.550014667685 268.5999483116182 2495.139120860926 2786.083973391433 268.5994602959439 3615.228115399334 2343.604369989832 268.601526506747 3614.699113149687 2347.616909170373 268.601033187035 5002.417738943101 3366.636193879754 268.4007083888864 4998.689413714314 3368.289279697161 268.4006782228828 3615.228115399334 2343.604369989832 268.601526506747 3614.699113149687 2347.616909170373 268.601033187035 2495.139120860926 2786.083973391433 268.5994602959439 2491.892789317275 2783.550014667685 268.5999483116182 2344.640255945609 3955.11376779221 268.4555451736661 2340.859767202215 3956.728981102065 268.4555223994495 4943.138366576218 3953.474784502216 268.3276812067873 4939.821263608777 3951.056958590103 268.3281576318929 4539.949613653589 4129.554690410556 268.3247385322633 4538.531520434295 4126.307532192809 268.325228817964 4402.066496119342 4322.660413465853 268.3065632524911 4351.654034482594 4760.252778141645 268.2525627488027 4398.546470927364 4322.254891941598 268.3067896189604 4348.362830019213 4757.861037328259 268.2530342220218 3783.711333143979 5015.895055772624 268.2474648050843 3783.28744456784 5019.984517022744 268.2469566881969 4398.546646092408 4322.255349378405 271.8500963974962 4348.362830019213 4757.861037328259 268.2530342220218 4398.546470927364 4322.254891941598 268.3067896189604 4348.363005110485 4757.861495405461 271.796341000478 4348.363005110485 4757.861495405461 271.796341000478 4398.546646092408 4322.255349378405 271.8500963974962 4348.362830019213 4757.861037328259 268.2530342220218 4398.546470927364 4322.254891941598 268.3067896189604 2344.640430601012 3955.114226263128 271.9988519520929 3783.287619060337 5019.984975373593 271.7902636037582 2340.859941857624 3956.729439573001 271.9988293149867 3783.711507636472 5015.895514123453 271.7907715835351 4351.654209573871 4760.25323621886 271.7958696643692 4348.363005110485 4757.861495405461 271.796341000478 4398.546646092408 4322.255349378405 271.8500963974962 4402.066671284393 4322.660870902677 271.8498701681371 4402.066671284393 4322.660870902677 271.8498701681371 4398.546646092408 4322.255349378405 271.8500963974962 4351.654209573871 4760.25323621886 271.7958696643692 4348.363005110485 4757.861495405461 271.796341000478 3783.711507636472 5015.895514123453 271.7907715835351 3783.287619060337 5019.984975373593 271.7902636037582 2344.640430601012 3955.114226263128 271.9988519520929 2340.859941857624 3956.729439573001 271.9988293149867 2344.640255945609 3955.11376779221 268.4555451736661 2495.139295491523 2786.084432055045 272.1427670743475 2495.139120860926 2786.083973391433 268.5994602959439 2344.640430601012 3955.114226263128 271.9988519520929 2344.640430601012 3955.114226263128 271.9988519520929 2344.640255945609 3955.11376779221 268.4555451736661 2495.139295491523 2786.084432055045 272.1427670743475 2495.139120860926 2786.083973391433 268.5994602959439 2340.859767202215 3956.728981102065 268.4555223994495 3783.287619060337 5019.984975373593 271.7902636037582 3783.28744456784 5019.984517022744 268.2469566881969 2340.859941857624 3956.729439573001 271.9988293149867 2340.859941857624 3956.729439573001 271.9988293149867 2340.859767202215 3956.728981102065 268.4555223994495 3783.287619060337 5019.984975373593 271.7902636037582 3783.28744456784 5019.984517022744 268.2469566881969 3783.287619060337 5019.984975373593 271.7902636037582 4351.654034482594 4760.252778141645 268.2525627488027 3783.28744456784 5019.984517022744 268.2469566881969 4351.654209573871 4760.25323621886 271.7958696643692 4351.654209573871 4760.25323621886 271.7958696643692 3783.287619060337 5019.984975373593 271.7902636037582 4351.654034482594 4760.252778141645 268.2525627488027 3783.28744456784 5019.984517022744 268.2469566881969 4351.654034482594 4760.252778141645 268.2525627488027 4402.066671284393 4322.660870902677 271.8498701681371 4402.066496119342 4322.660413465853 268.3065632524911 4351.654209573871 4760.25323621886 271.7958696643692 4351.654209573871 4760.25323621886 271.7958696643692 4351.654034482594 4760.252778141645 268.2525627488027 4402.066671284393 4322.660870902677 271.8498701681371 4402.066496119342 4322.660413465853 268.3065632524911 4402.066671284393 4322.660870902677 271.8498701681371 4398.546470927364 4322.254891941598 268.3067896189604 4402.066496119342 4322.660413465853 268.3065632524911 4398.546646092408 4322.255349378405 271.8500963974962 4398.546646092408 4322.255349378405 271.8500963974962 4402.066671284393 4322.660870902677 271.8498701681371 4398.546470927364 4322.254891941598 268.3067896189604 4402.066496119342 4322.660413465853 268.3065632524911 2495.139295491523 2786.084432055045 272.1427670743475 3614.699113149687 2347.616909170373 268.601033187035 2495.139120860926 2786.083973391433 268.5994602959439 3614.69928782418 2347.617367816792 272.1443399654378 3614.69928782418 2347.617367816792 272.1443399654378 2495.139295491523 2786.084432055045 272.1427670743475 3614.699113149687 2347.616909170373 268.601033187035 2495.139120860926 2786.083973391433 268.5994602959439 3614.699113149687 2347.616909170373 268.601033187035 4998.689588366956 3368.289738327471 271.9439850012897 4998.689413714314 3368.289279697161 268.4006782228828 3614.69928782418 2347.617367816792 272.1443399654378 3614.69928782418 2347.617367816792 272.1443399654378 3614.699113149687 2347.616909170373 268.601033187035 4998.689588366956 3368.289738327471 271.9439850012897 4998.689413714314 3368.289279697161 268.4006782228828 4998.689588366956 3368.289738327471 271.9439850012897 4939.821263608777 3951.056958590103 268.3281576318929 4998.689413714314 3368.289279697161 268.4006782228828 4939.821438251214 3951.057417321493 271.8714644102863 4939.821438251214 3951.057417321493 271.8714644102863 4998.689588366956 3368.289738327471 271.9439850012897 4939.821263608777 3951.056958590103 268.3281576318929 4998.689413714314 3368.289279697161 268.4006782228828 4939.821263608777 3951.056958590103 268.3281576318929 4538.531694935537 4126.30799098586 271.8685355963571 4538.531520434295 4126.307532192809 268.325228817964 4939.821438251214 3951.057417321493 271.8714644102863 4939.821438251214 3951.057417321493 271.8714644102863 4939.821263608777 3951.056958590103 268.3281576318929 4538.531694935537 4126.30799098586 271.8685355963571 4538.531520434295 4126.307532192809 268.325228817964 4538.531694935537 4126.30799098586 271.8685355963571 4539.949613653589 4129.554690410556 268.3247385322633 4538.531520434295 4126.307532192809 268.325228817964 4539.949788318934 4129.55514913196 271.8680454477682 4539.949788318934 4129.55514913196 271.8680454477682 4538.531694935537 4126.30799098586 271.8685355963571 4539.949613653589 4129.554690410556 268.3247385322633 4538.531520434295 4126.307532192809 268.325228817964 4539.949788318934 4129.55514913196 271.8680454477682 4943.138366576218 3953.474784502216 268.3276812067873 4539.949613653589 4129.554690410556 268.3247385322633 4943.138541218661 3953.475243233625 271.870988122292 4943.138541218661 3953.475243233625 271.870988122292 4539.949788318934 4129.55514913196 271.8680454477682 4943.138366576218 3953.474784502216 268.3276812067873 4539.949613653589 4129.554690410556 268.3247385322633 4943.138366576218 3953.474784502216 268.3276812067873 5002.417913595758 3366.636652510081 271.944015304403 5002.417738943101 3366.636193879754 268.4007083888864 4943.138541218661 3953.475243233625 271.870988122292 4943.138541218661 3953.475243233625 271.870988122292 4943.138366576218 3953.474784502216 268.3276812067873 5002.417913595758 3366.636652510081 271.944015304403 5002.417738943101 3366.636193879754 268.4007083888864 5002.417913595758 3366.636652510081 271.944015304403 3615.228115399334 2343.604369989832 268.601526506747 5002.417738943101 3366.636193879754 268.4007083888864 3615.228290073838 2343.604828636271 272.1448334222606 3615.228290073838 2343.604828636271 272.1448334222606 5002.417913595758 3366.636652510081 271.944015304403 3615.228115399334 2343.604369989832 268.601526506747 5002.417738943101 3366.636193879754 268.4007083888864 3615.228115399334 2343.604369989832 268.601526506747 2491.892963947877 2783.550473331316 272.1432552271317 2491.892789317275 2783.550014667685 268.5999483116182 3615.228290073838 2343.604828636271 272.1448334222606 3615.228290073838 2343.604828636271 272.1448334222606 3615.228115399334 2343.604369989832 268.601526506747 2491.892963947877 2783.550473331316 272.1432552271317 2491.892789317275 2783.550014667685 268.5999483116182 2491.892963947877 2783.550473331316 272.1432552271317 2340.859767202215 3956.728981102065 268.4555223994495 2491.892789317275 2783.550014667685 268.5999483116182 2340.859941857624 3956.729439573001 271.9988293149867 2340.859941857624 3956.729439573001 271.9988293149867 2491.892963947877 2783.550473331316 272.1432552271317 2340.859767202215 3956.728981102065 268.4555223994495 2491.892789317275 2783.550014667685 268.5999483116182 2491.892963947877 2783.550473331316 272.1432552271317 2344.640430601012 3955.114226263128 271.9988519520929 2340.859941857624 3956.729439573001 271.9988293149867 2495.139295491523 2786.084432055045 272.1427670743475 3615.228290073838 2343.604828636271 272.1448334222606 3614.69928782418 2347.617367816792 272.1443399654378 4998.689588366956 3368.289738327471 271.9439850012897 5002.417913595758 3366.636652510081 271.944015304403 5002.417913595758 3366.636652510081 271.944015304403 3615.228290073838 2343.604828636271 272.1448334222606 4998.689588366956 3368.289738327471 271.9439850012897 3614.69928782418 2347.617367816792 272.1443399654378 2495.139295491523 2786.084432055045 272.1427670743475 2491.892963947877 2783.550473331316 272.1432552271317 2344.640430601012 3955.114226263128 271.9988519520929 2340.859941857624 3956.729439573001 271.9988293149867 4939.821438251214 3951.057417321493 271.8714644102863 4539.949788318934 4129.55514913196 271.8680454477682 4538.531694935537 4126.30799098586 271.8685355963571 4943.138541218661 3953.475243233625 271.870988122292 4998.689588366956 3368.289738327471 271.9439850012897 5002.417913595758 3366.636652510081 271.944015304403 5002.417913595758 3366.636652510081 271.944015304403 4998.689588366956 3368.289738327471 271.9439850012897 4943.138541218661 3953.475243233625 271.870988122292 4939.821438251214 3951.057417321493 271.8714644102863 4539.949788318934 4129.55514913196 271.8680454477682 4538.531694935537 4126.30799098586 271.8685355963571</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"224\" source=\"#ID5542\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5540\">\r\n\t\t\t\t\t<float_array count=\"672\" id=\"ID5543\">-0.4156366710739805 -0.9095307243742637 0.0001381222887696055 -0.4156366710739805 -0.9095307243742637 0.0001381222887696055 -0.4156366710739805 -0.9095307243742637 0.0001381222887696055 -0.4156366710739805 -0.9095307243742637 0.0001381222887696055 0.4156366710739805 0.9095307243742637 -0.0001381222887696055 0.4156366710739805 0.9095307243742637 -0.0001381222887696055 0.4156366710739805 0.9095307243742637 -0.0001381222887696055 0.4156366710739805 0.9095307243742637 -0.0001381222887696055 0.5933488009812095 -0.8049454607384001 7.490531521077948e-005 0.5933488009812095 -0.8049454607384001 7.490531521077948e-005 0.5933488009812095 -0.8049454607384001 7.490531521077948e-005 0.5933488009812095 -0.8049454607384001 7.490531521077948e-005 -0.5933488009812095 0.8049454607384001 -7.490531521077948e-005 -0.5933488009812095 0.8049454607384001 -7.490531521077948e-005 -0.5933488009812095 0.8049454607384001 -7.490531521077948e-005 -0.5933488009812095 0.8049454607384001 -7.490531521077948e-005 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 -4.930377726712577e-005 -0.0001293873922558785 -0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 4.930377726712577e-005 0.0001293873922558785 0.9999999904140202 -0.9934293319587099 -0.1144471857351491 6.38856483127187e-005 -0.9934293319587099 -0.1144471857351491 6.38856483127187e-005 -0.9934293319587099 -0.1144471857351491 6.38856483127187e-005 -0.9934293319587099 -0.1144471857351491 6.38856483127187e-005 0.9934293319587099 0.1144471857351491 -6.38856483127187e-005 0.9934293319587099 0.1144471857351491 -6.38856483127187e-005 0.9934293319587099 0.1144471857351491 -6.38856483127187e-005 0.9934293319587099 0.1144471857351491 -6.38856483127187e-005 4.930947879770328e-005 0.0001292363689447118 0.999999990433268 4.930947879770328e-005 0.0001292363689447118 0.999999990433268 4.930947879770328e-005 0.0001292363689447118 0.999999990433268 4.930947879770328e-005 0.0001292363689447118 0.999999990433268 4.930947879770328e-005 0.0001292363689447118 0.999999990433268 4.930947879770328e-005 0.0001292363689447118 0.999999990433268 4.930947879770328e-005 0.0001292363689447118 0.999999990433268 4.930947879770328e-005 0.0001292363689447118 0.999999990433268 -4.930947879770328e-005 -0.0001292363689447118 -0.999999990433268 -4.930947879770328e-005 -0.0001292363689447118 -0.999999990433268 -4.930947879770328e-005 -0.0001292363689447118 -0.999999990433268 -4.930947879770328e-005 -0.0001292363689447118 -0.999999990433268 -4.930947879770328e-005 -0.0001292363689447118 -0.999999990433268 -4.930947879770328e-005 -0.0001292363689447118 -0.999999990433268 -4.930947879770328e-005 -0.0001292363689447118 -0.999999990433268 -4.930947879770328e-005 -0.0001292363689447118 -0.999999990433268 0.991814832265583 0.1276845104921043 -6.540936699903988e-005 0.991814832265583 0.1276845104921043 -6.540936699903988e-005 0.991814832265583 0.1276845104921043 -6.540936699903988e-005 0.991814832265583 0.1276845104921043 -6.540936699903988e-005 -0.991814832265583 -0.1276845104921043 6.540936699903988e-005 -0.991814832265583 -0.1276845104921043 6.540936699903988e-005 -0.991814832265583 -0.1276845104921043 6.540936699903988e-005 -0.991814832265583 -0.1276845104921043 6.540936699903988e-005 -0.5933488009812092 0.8049454607384 -7.49053150949754e-005 -0.5933488009812092 0.8049454607384 -7.49053150949754e-005 -0.5933488009812092 0.8049454607384 -7.49053150949754e-005 -0.5933488009812092 0.8049454607384 -7.49053150949754e-005 0.5933488009812092 -0.8049454607384 7.49053150949754e-005 0.5933488009812092 -0.8049454607384 7.49053150949754e-005 0.5933488009812092 -0.8049454607384 7.49053150949754e-005 0.5933488009812092 -0.8049454607384 7.49053150949754e-005 0.4156366710739815 0.9095307243742636 -0.000138122288463658 0.4156366710739815 0.9095307243742636 -0.000138122288463658 0.4156366710739815 0.9095307243742636 -0.000138122288463658 0.4156366710739815 0.9095307243742636 -0.000138122288463658 -0.4156366710739815 -0.9095307243742636 0.000138122288463658 -0.4156366710739815 -0.9095307243742636 0.000138122288463658 -0.4156366710739815 -0.9095307243742636 0.000138122288463658 -0.4156366710739815 -0.9095307243742636 0.000138122288463658 0.9934293319587099 0.1144471857351489 -6.388564812744112e-005 0.9934293319587099 0.1144471857351489 -6.388564812744112e-005 0.9934293319587099 0.1144471857351489 -6.388564812744112e-005 0.9934293319587099 0.1144471857351489 -6.388564812744112e-005 -0.9934293319587099 -0.1144471857351489 6.388564812744112e-005 -0.9934293319587099 -0.1144471857351489 6.388564812744112e-005 -0.9934293319587099 -0.1144471857351489 6.388564812744112e-005 -0.9934293319587099 -0.1144471857351489 6.388564812744112e-005 0.114447192889069 -0.9934293256245317 0.0001225928245482167 0.114447192889069 -0.9934293256245317 0.0001225928245482167 0.114447192889069 -0.9934293256245317 0.0001225928245482167 0.114447192889069 -0.9934293256245317 0.0001225928245482167 -0.114447192889069 0.9934293256245317 -0.0001225928245482167 -0.114447192889069 0.9934293256245317 -0.0001225928245482167 -0.114447192889069 0.9934293256245317 -0.0001225928245482167 -0.114447192889069 0.9934293256245317 -0.0001225928245482167 0.3646722337147281 0.9311359421557283 -0.0001385037013171423 0.3646722337147281 0.9311359421557283 -0.0001385037013171423 0.3646722337147281 0.9311359421557283 -0.0001385037013171423 0.3646722337147281 0.9311359421557283 -0.0001385037013171423 -0.3646722337147281 -0.9311359421557283 0.0001385037013171423 -0.3646722337147281 -0.9311359421557283 0.0001385037013171423 -0.3646722337147281 -0.9311359421557283 0.0001385037013171423 -0.3646722337147281 -0.9311359421557283 0.0001385037013171423 -0.5935344381659445 0.8048085891059822 -7.491511920057481e-005 -0.5935344381659445 0.8048085891059822 -7.491511920057481e-005 -0.5935344381659445 0.8048085891059822 -7.491511920057481e-005 -0.5935344381659445 0.8048085891059822 -7.491511920057481e-005 0.5935344381659445 -0.8048085891059822 7.491511920057481e-005 0.5935344381659445 -0.8048085891059822 7.491511920057481e-005 0.5935344381659445 -0.8048085891059822 7.491511920057481e-005 0.5935344381659445 -0.8048085891059822 7.491511920057481e-005 -0.9949367221755596 -0.1005033084846008 6.205000285739328e-005 -0.9949367221755596 -0.1005033084846008 6.205000285739328e-005 -0.9949367221755596 -0.1005033084846008 6.205000285739328e-005 -0.9949367221755596 -0.1005033084846008 6.205000285739328e-005 0.9949367221755596 0.1005033084846008 -6.205000285739328e-005 0.9949367221755596 0.1005033084846008 -6.205000285739328e-005 0.9949367221755596 0.1005033084846008 -6.205000285739328e-005 0.9949367221755596 0.1005033084846008 -6.205000285739328e-005 -0.400217465977856 -0.9164201878942541 0.0001383695196981827 -0.400217465977856 -0.9164201878942541 0.0001383695196981827 -0.400217465977856 -0.9164201878942541 0.0001383695196981827 -0.400217465977856 -0.9164201878942541 0.0001383695196981827 0.400217465977856 0.9164201878942541 -0.0001383695196981827 0.400217465977856 0.9164201878942541 -0.0001383695196981827 0.400217465977856 0.9164201878942541 -0.0001383695196981827 0.400217465977856 0.9164201878942541 -0.0001383695196981827 -0.9164202071281929 0.4002174458000514 -6.663546701939863e-006 -0.9164202071281929 0.4002174458000514 -6.663546701939863e-006 -0.9164202071281929 0.4002174458000514 -6.663546701939863e-006 -0.9164202071281929 0.4002174458000514 -6.663546701939863e-006 0.9164202071281929 -0.4002174458000514 6.663546701939863e-006 0.9164202071281929 -0.4002174458000514 6.663546701939863e-006 0.9164202071281929 -0.4002174458000514 6.663546701939863e-006 0.9164202071281929 -0.4002174458000514 6.663546701939863e-006 0.4002174659778556 0.9164201878942543 -0.0001383695196250792 0.4002174659778556 0.9164201878942543 -0.0001383695196250792 0.4002174659778556 0.9164201878942543 -0.0001383695196250792 0.4002174659778556 0.9164201878942543 -0.0001383695196250792 -0.4002174659778556 -0.9164201878942543 0.0001383695196250792 -0.4002174659778556 -0.9164201878942543 0.0001383695196250792 -0.4002174659778556 -0.9164201878942543 0.0001383695196250792 -0.4002174659778556 -0.9164201878942543 0.0001383695196250792 0.9949367221755595 0.1005033084845997 -6.205000292300288e-005 0.9949367221755595 0.1005033084845997 -6.205000292300288e-005 0.9949367221755595 0.1005033084845997 -6.205000292300288e-005 0.9949367221755595 0.1005033084845997 -6.205000292300288e-005 -0.9949367221755595 -0.1005033084845997 6.205000292300288e-005 -0.9949367221755595 -0.1005033084845997 6.205000292300288e-005 -0.9949367221755595 -0.1005033084845997 6.205000292300288e-005 -0.9949367221755595 -0.1005033084845997 6.205000292300288e-005 0.5935344381659445 -0.8048085891059823 7.491511922295362e-005 0.5935344381659445 -0.8048085891059823 7.491511922295362e-005 0.5935344381659445 -0.8048085891059823 7.491511922295362e-005 0.5935344381659445 -0.8048085891059823 7.491511922295362e-005 -0.5935344381659445 0.8048085891059823 -7.491511922295362e-005 -0.5935344381659445 0.8048085891059823 -7.491511922295362e-005 -0.5935344381659445 0.8048085891059823 -7.491511922295362e-005 -0.5935344381659445 0.8048085891059823 -7.491511922295362e-005 -0.364672233714728 -0.9311359421557283 0.000138503701437549 -0.364672233714728 -0.9311359421557283 0.000138503701437549 -0.364672233714728 -0.9311359421557283 0.000138503701437549 -0.364672233714728 -0.9311359421557283 0.000138503701437549 0.364672233714728 0.9311359421557283 -0.000138503701437549 0.364672233714728 0.9311359421557283 -0.000138503701437549 0.364672233714728 0.9311359421557283 -0.000138503701437549 0.364672233714728 0.9311359421557283 -0.000138503701437549 -0.991814832265583 -0.1276845104921043 6.540936707699532e-005 -0.991814832265583 -0.1276845104921043 6.540936707699532e-005 -0.991814832265583 -0.1276845104921043 6.540936707699532e-005 -0.991814832265583 -0.1276845104921043 6.540936707699532e-005 0.991814832265583 0.1276845104921043 -6.540936707699532e-005 0.991814832265583 0.1276845104921043 -6.540936707699532e-005 0.991814832265583 0.1276845104921043 -6.540936707699532e-005 0.991814832265583 0.1276845104921043 -6.540936707699532e-005 4.929558129283892e-005 0.0001294534890463655 0.99999999040587 4.929558129283892e-005 0.0001294534890463655 0.99999999040587 4.929558129283892e-005 0.0001294534890463655 0.99999999040587 4.929558129283892e-005 0.0001294534890463655 0.99999999040587 4.929558129283892e-005 0.0001294534890463655 0.99999999040587 4.929558129283892e-005 0.0001294534890463655 0.99999999040587 4.929558129283892e-005 0.0001294534890463655 0.99999999040587 4.929558129283892e-005 0.0001294534890463655 0.99999999040587 -4.929558129283892e-005 -0.0001294534890463655 -0.99999999040587 -4.929558129283892e-005 -0.0001294534890463655 -0.99999999040587 -4.929558129283892e-005 -0.0001294534890463655 -0.99999999040587 -4.929558129283892e-005 -0.0001294534890463655 -0.99999999040587 -4.929558129283892e-005 -0.0001294534890463655 -0.99999999040587 -4.929558129283892e-005 -0.0001294534890463655 -0.99999999040587 -4.929558129283892e-005 -0.0001294534890463655 -0.99999999040587 -4.929558129283892e-005 -0.0001294534890463655 -0.99999999040587 4.921838064055593e-005 0.0001294134689508487 0.9999999904148526 4.921838064055593e-005 0.0001294134689508487 0.9999999904148526 4.921838064055593e-005 0.0001294134689508487 0.9999999904148526 4.921838064055593e-005 0.0001294134689508487 0.9999999904148526 4.921838064055593e-005 0.0001294134689508487 0.9999999904148526 4.921838064055593e-005 0.0001294134689508487 0.9999999904148526 -4.921838064055593e-005 -0.0001294134689508487 -0.9999999904148526 -4.921838064055593e-005 -0.0001294134689508487 -0.9999999904148526 -4.921838064055593e-005 -0.0001294134689508487 -0.9999999904148526 -4.921838064055593e-005 -0.0001294134689508487 -0.9999999904148526 -4.921838064055593e-005 -0.0001294134689508487 -0.9999999904148526 -4.921838064055593e-005 -0.0001294134689508487 -0.9999999904148526</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"224\" source=\"#ID5543\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5541\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5539\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5540\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"136\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5541\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 19 16 20 19 20 21 21 20 22 22 20 23 24 25 26 25 24 27 25 27 28 28 27 29 17 30 18 30 17 31 30 31 32 32 31 33 32 33 28 32 28 29 34 35 36 35 37 36 37 38 36 36 38 39 38 40 39 41 39 40 34 42 35 35 42 43 42 44 43 45 43 44 46 47 48 48 47 49 49 47 50 47 51 50 50 51 40 41 40 51 52 53 54 53 52 55 56 57 58 59 58 57 60 61 62 61 60 63 61 63 64 64 63 65 64 65 66 64 66 67 68 69 70 69 71 70 71 72 70 70 72 73 72 74 73 75 73 74 76 77 78 77 76 79 80 81 82 83 82 81 84 85 86 85 84 87 88 89 90 91 90 89 92 93 94 93 92 95 96 97 98 99 98 97 100 101 102 101 100 103 104 105 106 107 106 105 108 109 110 109 108 111 112 113 114 115 114 113 116 117 118 117 116 119 120 121 122 123 122 121 124 125 126 125 124 127 128 129 130 131 130 129 132 133 134 133 132 135 136 137 138 139 138 137 140 141 142 141 140 143 144 145 146 147 146 145 148 149 150 149 148 151 152 153 154 155 154 153 156 157 158 157 156 159 160 161 162 163 162 161 164 165 166 165 164 167 168 169 170 171 170 169 172 173 174 173 172 175 176 177 178 179 178 177 180 181 182 181 180 183 184 185 186 187 186 185 188 189 190 189 188 191 192 193 194 195 194 193 196 197 198 197 196 199 199 196 200 199 200 201 201 200 202 202 200 203 204 205 206 206 205 207 207 205 208 205 209 208 208 209 210 211 210 209 212 213 214 213 212 215 215 212 216 215 216 217 218 219 220 219 221 220 220 221 222 223 222 221</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5544\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5545\">\r\n\t\t\t\t\t<float_array count=\"252\" id=\"ID5548\">4494.212046790115 5342.453597194201 280.5739970535841 4493.171832906392 5342.926044497908 277.2864619840337 4494.211136172154 5342.451604352071 280.5739973565865 4495.683045655718 5345.672559228029 280.5735076194385 4494.643742389997 5346.146999373879 277.2859722469491 4494.643742389997 5346.146999373879 277.2859722469491 4495.683045655718 5345.672559228029 280.5735076194385 4493.171832906392 5342.926044497908 277.2864619840337 4494.212046790115 5342.453597194201 280.5739970535841 4494.211136172154 5342.451604352071 280.5739973565865 4701.200429637669 5251.742883083348 198.3623675041192 4701.73497822353 5251.49913466736 201.8427654722319 4775.269935623322 5217.894655718744 198.3630981772284 4494.643742389997 5346.146999373879 277.2859722469491 4495.683045655718 5345.672559228029 280.5735076194385 5153.163602058921 5045.18286492614 52.13254334091191 5152.088945180054 5045.673463032044 48.85877492413313 4775.823791411265 5217.642084312007 201.8434963358006 4701.73497822353 5251.49913466736 201.8427654722319 4775.269935623322 5217.894655718744 198.3630981772284 4775.823791411265 5217.642084312007 201.8434963358006 5153.163602058921 5045.18286492614 52.13254334091191 5152.088945180054 5045.673463032044 48.85877492413313 4495.683045655718 5345.672559228029 280.5735076194385 4494.643742389997 5346.146999373879 277.2859722469491 4701.200429637669 5251.742883083348 198.3623675041192 4494.643742389997 5346.146999373879 277.2859722469491 4699.728520126801 5248.521928219831 198.3628572516193 4493.171832906392 5342.926044497908 277.2864619840337 4701.200429637669 5251.742883083348 198.3623675041192 4701.200429637669 5251.742883083348 198.3623675041192 4494.643742389997 5346.146999373879 277.2859722469491 4699.728520126801 5248.521928219831 198.3628572516193 4493.171832906392 5342.926044497908 277.2864619840337 5151.691692577811 5041.961910049054 52.13303307720945 4773.798026113783 5214.673700854619 198.3635879247285 5150.617035698912 5042.452508154947 48.85926466036742 4774.351881901751 5214.421129447904 201.8439860833682 4700.263068712684 5248.27817980387 201.8432552197994 4699.728520126801 5248.521928219831 198.3628572516193 4493.171832906392 5342.926044497908 277.2864619840337 4494.211136172154 5342.451604352071 280.5739973565865 4494.211136172154 5342.451604352071 280.5739973565865 4700.263068712684 5248.27817980387 201.8432552197994 4493.171832906392 5342.926044497908 277.2864619840337 4773.798026113783 5214.673700854619 198.3635879247285 4699.728520126801 5248.521928219831 198.3628572516193 4774.351881901751 5214.421129447904 201.8439860833682 5151.691692577811 5041.961910049054 52.13303307720945 5150.617035698912 5042.452508154947 48.85926466036742 4700.263068712684 5248.27817980387 201.8432552197994 4494.212046790115 5342.453597194201 280.5739970535841 4494.211136172154 5342.451604352071 280.5739973565865 4495.683045655718 5345.672559228029 280.5735076194385 4701.73497822353 5251.49913466736 201.8427654722319 4701.73497822353 5251.49913466736 201.8427654722319 4700.263068712684 5248.27817980387 201.8432552197994 4495.683045655718 5345.672559228029 280.5735076194385 4494.212046790115 5342.453597194201 280.5739970535841 4494.211136172154 5342.451604352071 280.5739973565865 4775.269935623322 5217.894655718744 198.3630981772284 5150.617035698912 5042.452508154947 48.85926466036742 4773.798026113783 5214.673700854619 198.3635879247285 5152.088945180054 5045.673463032044 48.85877492413313 5152.088945180054 5045.673463032044 48.85877492413313 4775.269935623322 5217.894655718744 198.3630981772284 5150.617035698912 5042.452508154947 48.85926466036742 4773.798026113783 5214.673700854619 198.3635879247285 4774.351881901751 5214.421129447904 201.8439860833682 4775.823791411265 5217.642084312007 201.8434963358006 4775.823791411265 5217.642084312007 201.8434963358006 4774.351881901751 5214.421129447904 201.8439860833682 5151.691692577811 5041.961910049054 52.13303307720945 5153.163602058921 5045.18286492614 52.13254334091191 5153.163602058921 5045.18286492614 52.13254334091191 5151.691692577811 5041.961910049054 52.13303307720945 5150.617035698912 5042.452508154947 48.85926466036742 5153.163602058921 5045.18286492614 52.13254334091191 5151.691692577811 5041.961910049054 52.13303307720945 5152.088945180054 5045.673463032044 48.85877492413313 5152.088945180054 5045.673463032044 48.85877492413313 5150.617035698912 5042.452508154947 48.85926466036742 5153.163602058921 5045.18286492614 52.13254334091191 5151.691692577811 5041.961910049054 52.13303307720945</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"84\" source=\"#ID5548\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5546\">\r\n\t\t\t\t\t<float_array count=\"252\" id=\"ID5549\">-0.8591124830251983 0.3926464784450847 0.3282597819943102 -0.8591124830251983 0.3926464784450847 0.3282597819943102 -0.8591124830251983 0.3926464784450847 0.3282597819943102 -0.8591124830251983 0.3926464784450847 0.3282597819943102 -0.8591124830251983 0.3926464784450847 0.3282597819943102 0.8591124830251983 -0.3926464784450847 -0.3282597819943102 0.8591124830251983 -0.3926464784450847 -0.3282597819943102 0.8591124830251983 -0.3926464784450847 -0.3282597819943102 0.8591124830251983 -0.3926464784450847 -0.3282597819943102 0.8591124830251983 -0.3926464784450847 -0.3282597819943102 0.415636670196249 0.9095307247571035 -0.00013824251415771 0.415636670196249 0.9095307247571035 -0.00013824251415771 0.415636670196249 0.9095307247571035 -0.00013824251415771 0.415636670196249 0.9095307247571035 -0.00013824251415771 0.415636670196249 0.9095307247571035 -0.00013824251415771 0.415636670196249 0.9095307247571035 -0.00013824251415771 0.415636670196249 0.9095307247571035 -0.00013824251415771 0.415636670196249 0.9095307247571035 -0.00013824251415771 -0.415636670196249 -0.9095307247571035 0.00013824251415771 -0.415636670196249 -0.9095307247571035 0.00013824251415771 -0.415636670196249 -0.9095307247571035 0.00013824251415771 -0.415636670196249 -0.9095307247571035 0.00013824251415771 -0.415636670196249 -0.9095307247571035 0.00013824251415771 -0.415636670196249 -0.9095307247571035 0.00013824251415771 -0.415636670196249 -0.9095307247571035 0.00013824251415771 -0.415636670196249 -0.9095307247571035 0.00013824251415771 -0.2986166636526598 0.1363179915847433 -0.9445874725822147 -0.1514458404342607 0.0690576759599912 -0.9860503003428199 -0.2986166636526598 0.1363179915847433 -0.9445874725822147 -0.151445840434121 0.06905767595992736 -0.9860503003428458 0.151445840434121 -0.06905767595992736 0.9860503003428458 0.2986166636526598 -0.1363179915847433 0.9445874725822147 0.1514458404342607 -0.0690576759599912 0.9860503003428199 0.2986166636526598 -0.1363179915847433 0.9445874725822147 -0.4156366701961566 -0.9095307247571456 0.000138242514480135 -0.4156366701961566 -0.9095307247571456 0.000138242514480135 -0.4156366701961566 -0.9095307247571456 0.000138242514480135 -0.4156366701961566 -0.9095307247571456 0.000138242514480135 -0.4156366701961566 -0.9095307247571456 0.000138242514480135 -0.4156366701961566 -0.9095307247571456 0.000138242514480135 -0.4156366701961566 -0.9095307247571456 0.000138242514480135 -0.4156366701961566 -0.9095307247571456 0.000138242514480135 0.4156366701961566 0.9095307247571456 -0.000138242514480135 0.4156366701961566 0.9095307247571456 -0.000138242514480135 0.4156366701961566 0.9095307247571456 -0.000138242514480135 0.4156366701961566 0.9095307247571456 -0.000138242514480135 0.4156366701961566 0.9095307247571456 -0.000138242514480135 0.4156366701961566 0.9095307247571456 -0.000138242514480135 0.4156366701961566 0.9095307247571456 -0.000138242514480135 0.4156366701961566 0.9095307247571456 -0.000138242514480135 0.1514458400787331 -0.06905767670882404 0.9860503003449805 0.298616662944113 -0.1363179930790502 0.9445874725905602 0.298616662944113 -0.1363179930790502 0.9445874725905602 0.298616662944113 -0.1363179930790502 0.9445874725905602 0.1514458400784656 -0.0690576767087018 0.9860503003450302 -0.1514458400784656 0.0690576767087018 -0.9860503003450302 -0.1514458400787331 0.06905767670882404 -0.9860503003449805 -0.298616662944113 0.1363179930790502 -0.9445874725905602 -0.298616662944113 0.1363179930790502 -0.9445874725905602 -0.298616662944113 0.1363179930790502 -0.9445874725905602 -0.1567561874881915 0.07148454681385237 -0.9850469314966598 -0.3087746015298075 0.1409605596249959 -0.9406318972267082 -0.1567561874880339 0.07148454681378036 -0.9850469314966901 -0.3087746015298075 0.1409605596249959 -0.9406318972267082 0.3087746015298075 -0.1409605596249959 0.9406318972267082 0.1567561874881915 -0.07148454681385237 0.9850469314966598 0.3087746015298075 -0.1409605596249959 0.9406318972267082 0.1567561874880339 -0.07148454681378036 0.9850469314966901 0.156756187496101 -0.07148454679622451 0.9850469314966802 0.1567561874961743 -0.07148454679625807 0.9850469314966661 -0.1567561874961743 0.07148454679625807 -0.9850469314966661 -0.156756187496101 0.07148454679622451 -0.9850469314966802 0.3087746015377054 -0.1409605596076788 0.9406318972267108 0.3087746015377054 -0.1409605596076788 0.9406318972267108 -0.3087746015377054 0.1409605596076788 -0.9406318972267108 -0.3087746015377054 0.1409605596076788 -0.9406318972267108 0.8555141245187444 -0.3910037953188002 -0.3394283647475855 0.8555141245187444 -0.3910037953188002 -0.3394283647475855 0.8555141245187444 -0.3910037953188002 -0.3394283647475855 0.8555141245187444 -0.3910037953188002 -0.3394283647475855 -0.8555141245187444 0.3910037953188002 0.3394283647475855 -0.8555141245187444 0.3910037953188002 0.3394283647475855 -0.8555141245187444 0.3910037953188002 0.3394283647475855 -0.8555141245187444 0.3910037953188002 0.3394283647475855</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"84\" source=\"#ID5549\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5547\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5545\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5546\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"60\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5547\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 6 7 6 8 7 9 7 8 10 11 12 11 10 13 11 13 14 12 15 16 15 12 17 17 12 11 18 19 20 20 19 21 22 21 19 23 24 18 24 25 18 19 18 25 26 27 28 27 26 29 30 31 32 33 32 31 34 35 36 35 34 37 35 37 38 39 38 40 38 39 35 40 38 41 42 43 44 45 46 43 44 43 46 43 47 45 47 48 45 49 45 48 50 51 52 51 50 53 53 50 54 55 56 57 57 56 58 59 58 56 60 61 62 61 60 63 64 65 66 67 66 65 29 62 27 62 29 60 65 30 67 32 67 30 68 54 50 54 68 69 70 71 55 56 55 71 72 69 68 69 72 73 74 75 70 71 70 75 76 77 78 77 76 79 80 81 82 83 82 81</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5550\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5551\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID5554\">4494.643284034845 5346.145795626548 267.9868674211721 4699.728061771654 5248.520724472503 189.0637524258424 4493.171374551242 5342.924840750566 267.9873571582573 4701.199971282522 5251.741679336019 189.0632626783423 4701.199971282522 5251.741679336019 189.0632626783423 4494.643284034845 5346.145795626548 267.9868674211721 4699.728061771654 5248.520724472503 189.0637524258424 4493.171374551242 5342.924840750566 267.9873571582573 4495.682587300579 5345.671355480694 271.2744027936619 4493.171374551242 5342.924840750566 267.9873571582573 4494.210677817002 5342.450400604737 271.2748925308103 4494.643284034845 5346.145795626548 267.9868674211721 4494.643284034845 5346.145795626548 267.9868674211721 4495.682587300579 5345.671355480694 271.2744027936619 4493.171374551242 5342.924840750566 267.9873571582573 4494.210677817002 5342.450400604737 271.2748925308103 4701.199971282522 5251.741679336019 189.0632626783423 4701.734519868382 5251.497930920026 192.543660646455 4775.26947726817 5217.893451971408 189.0639933514516 4494.643284034845 5346.145795626548 267.9868674211721 4495.682587300579 5345.671355480694 271.2744027936619 5153.163143703777 5045.181661178802 42.8334385151351 5152.088486824905 5045.672259284715 39.55967009835626 4775.82333305612 5217.640880564675 192.5443915100238 4701.734519868382 5251.497930920026 192.543660646455 4775.26947726817 5217.893451971408 189.0639933514516 4775.82333305612 5217.640880564675 192.5443915100238 5153.163143703777 5045.181661178802 42.8334385151351 5152.088486824905 5045.672259284715 39.55967009835626 4495.682587300579 5345.671355480694 271.2744027936619 4494.643284034845 5346.145795626548 267.9868674211721 4701.199971282522 5251.741679336019 189.0632626783423 4773.797567758633 5214.672497107287 189.0644830989517 4775.26947726817 5217.893451971408 189.0639933514516 4775.26947726817 5217.893451971408 189.0639933514516 4773.797567758633 5214.672497107287 189.0644830989517 5151.691234222667 5041.960706301722 42.83392825143265 4773.797567758633 5214.672497107287 189.0644830989517 5150.616577343764 5042.451304407612 39.56015983459061 4774.351423546606 5214.419925700571 192.5448812575914 4700.262610357541 5248.276976056533 192.5441503940224 4699.728061771654 5248.520724472503 189.0637524258424 4493.171374551242 5342.924840750566 267.9873571582573 4494.210677817002 5342.450400604737 271.2748925308103 4494.210677817002 5342.450400604737 271.2748925308103 4700.262610357541 5248.276976056533 192.5441503940224 4493.171374551242 5342.924840750566 267.9873571582573 4773.797567758633 5214.672497107287 189.0644830989517 4699.728061771654 5248.520724472503 189.0637524258424 4774.351423546606 5214.419925700571 192.5448812575914 5151.691234222667 5041.960706301722 42.83392825143265 5150.616577343764 5042.451304407612 39.56015983459061 4700.262610357541 5248.276976056533 192.5441503940224 4495.682587300579 5345.671355480694 271.2744027936619 4494.210677817002 5342.450400604737 271.2748925308103 4701.734519868382 5251.497930920026 192.543660646455 4701.734519868382 5251.497930920026 192.543660646455 4700.262610357541 5248.276976056533 192.5441503940224 4495.682587300579 5345.671355480694 271.2744027936619 4494.210677817002 5342.450400604737 271.2748925308103 5150.616577343764 5042.451304407612 39.56015983459061 5152.088486824905 5045.672259284715 39.55967009835626 5152.088486824905 5045.672259284715 39.55967009835626 5150.616577343764 5042.451304407612 39.56015983459061 4774.351423546606 5214.419925700571 192.5448812575914 4775.82333305612 5217.640880564675 192.5443915100238 4775.82333305612 5217.640880564675 192.5443915100238 4774.351423546606 5214.419925700571 192.5448812575914 5151.691234222667 5041.960706301722 42.83392825143265 5153.163143703777 5045.181661178802 42.8334385151351 5153.163143703777 5045.181661178802 42.8334385151351 5151.691234222667 5041.960706301722 42.83392825143265 5150.616577343764 5042.451304407612 39.56015983459061 5153.163143703777 5045.181661178802 42.8334385151351 5151.691234222667 5041.960706301722 42.83392825143265 5152.088486824905 5045.672259284715 39.55967009835626 5152.088486824905 5045.672259284715 39.55967009835626 5150.616577343764 5042.451304407612 39.56015983459061 5153.163143703777 5045.181661178802 42.8334385151351 5151.691234222667 5041.960706301722 42.83392825143265</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID5554\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5552\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID5555\">-0.2986166636526226 0.13631799158494 -0.944587472582198 -0.1514458404342425 0.06905767596009121 -0.9860503003428156 -0.2986166636526226 0.13631799158494 -0.944587472582198 -0.1514458404341074 0.06905767596002947 -0.9860503003428407 0.1514458404341074 -0.06905767596002947 0.9860503003428407 0.2986166636526226 -0.13631799158494 0.944587472582198 0.1514458404342425 -0.06905767596009121 0.9860503003428156 0.2986166636526226 -0.13631799158494 0.944587472582198 -0.8591124835614452 0.3926464733990015 0.3282597866267094 -0.8591124835614452 0.3926464733990015 0.3282597866267094 -0.8591124835614452 0.3926464733990015 0.3282597866267094 -0.8591124835614452 0.3926464733990015 0.3282597866267094 0.8591124835614452 -0.3926464733990015 -0.3282597866267094 0.8591124835614452 -0.3926464733990015 -0.3282597866267094 0.8591124835614452 -0.3926464733990015 -0.3282597866267094 0.8591124835614452 -0.3926464733990015 -0.3282597866267094 0.4156366701962487 0.9095307247571038 -0.0001382425141577118 0.4156366701962487 0.9095307247571038 -0.0001382425141577118 0.4156366701962487 0.9095307247571038 -0.0001382425141577118 0.4156366701962487 0.9095307247571038 -0.0001382425141577118 0.4156366701962487 0.9095307247571038 -0.0001382425141577118 0.4156366701962487 0.9095307247571038 -0.0001382425141577118 0.4156366701962487 0.9095307247571038 -0.0001382425141577118 0.4156366701962487 0.9095307247571038 -0.0001382425141577118 -0.4156366701962487 -0.9095307247571038 0.0001382425141577118 -0.4156366701962487 -0.9095307247571038 0.0001382425141577118 -0.4156366701962487 -0.9095307247571038 0.0001382425141577118 -0.4156366701962487 -0.9095307247571038 0.0001382425141577118 -0.4156366701962487 -0.9095307247571038 0.0001382425141577118 -0.4156366701962487 -0.9095307247571038 0.0001382425141577118 -0.4156366701962487 -0.9095307247571038 0.0001382425141577118 -0.4156366701962487 -0.9095307247571038 0.0001382425141577118 -0.1567561874879984 0.07148454681376414 -0.9850469314966969 -0.1567561874881619 0.07148454681383888 -0.9850469314966656 0.1567561874881619 -0.07148454681383888 0.9850469314966656 0.1567561874879984 -0.07148454681376414 0.9850469314966969 -0.415636670196164 -0.9095307247571421 0.0001382425144597609 -0.415636670196164 -0.9095307247571421 0.0001382425144597609 -0.415636670196164 -0.9095307247571421 0.0001382425144597609 -0.415636670196164 -0.9095307247571421 0.0001382425144597609 -0.415636670196164 -0.9095307247571421 0.0001382425144597609 -0.415636670196164 -0.9095307247571421 0.0001382425144597609 -0.415636670196164 -0.9095307247571421 0.0001382425144597609 -0.415636670196164 -0.9095307247571421 0.0001382425144597609 0.415636670196164 0.9095307247571421 -0.0001382425144597609 0.415636670196164 0.9095307247571421 -0.0001382425144597609 0.415636670196164 0.9095307247571421 -0.0001382425144597609 0.415636670196164 0.9095307247571421 -0.0001382425144597609 0.415636670196164 0.9095307247571421 -0.0001382425144597609 0.415636670196164 0.9095307247571421 -0.0001382425144597609 0.415636670196164 0.9095307247571421 -0.0001382425144597609 0.415636670196164 0.9095307247571421 -0.0001382425144597609 0.1514458404422112 -0.0690576759423152 0.9860503003428366 0.2986166636606167 -0.1363179915672874 0.9445874725822185 0.2986166636606167 -0.1363179915672874 0.9445874725822185 0.1514458404422643 -0.06905767594233941 0.9860503003428268 -0.1514458404422643 0.06905767594233941 -0.9860503003428268 -0.1514458404422112 0.0690576759423152 -0.9860503003428366 -0.2986166636606167 0.1363179915672874 -0.9445874725822185 -0.2986166636606167 0.1363179915672874 -0.9445874725822185 -0.3087746015297472 0.1409605596249684 -0.9406318972267322 -0.3087746015297472 0.1409605596249684 -0.9406318972267322 0.3087746015297472 -0.1409605596249684 0.9406318972267322 0.3087746015297472 -0.1409605596249684 0.9406318972267322 0.1567561874961602 -0.07148454679622314 0.9850469314966709 0.1567561874962161 -0.0714845467962487 0.9850469314966602 -0.1567561874962161 0.0714845467962487 -0.9850469314966602 -0.1567561874961602 0.07148454679622314 -0.9850469314966709 0.3087746015377993 -0.1409605596076745 0.9406318972266805 0.3087746015377993 -0.1409605596076745 0.9406318972266805 -0.3087746015377993 0.1409605596076745 -0.9406318972266805 -0.3087746015377993 0.1409605596076745 -0.9406318972266805 0.855514124518739 -0.3910037953188578 -0.3394283647475329 0.855514124518739 -0.3910037953188578 -0.3394283647475329 0.855514124518739 -0.3910037953188578 -0.3394283647475329 0.855514124518739 -0.3910037953188578 -0.3394283647475329 -0.855514124518739 0.3910037953188578 0.3394283647475329 -0.855514124518739 0.3910037953188578 0.3394283647475329 -0.855514124518739 0.3910037953188578 0.3394283647475329 -0.855514124518739 0.3910037953188578 0.3394283647475329</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID5555\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5553\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5551\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5552\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"56\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5553\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 17 19 20 18 21 22 21 18 23 23 18 17 24 25 26 26 25 27 28 27 25 29 30 24 30 31 24 25 24 31 3 32 1 32 3 33 34 4 35 6 35 4 36 37 38 37 36 39 37 39 40 41 40 42 40 41 37 42 40 43 44 45 46 47 48 45 46 45 48 45 49 47 49 50 47 51 47 50 52 53 54 53 52 55 56 57 58 59 58 57 33 60 32 60 33 61 62 34 63 35 63 34 64 55 52 55 64 65 66 67 56 57 56 67 68 65 64 65 68 69 70 71 66 67 66 71 72 73 74 73 72 75 76 77 78 79 78 77</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5556\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5557\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID5560\">5330.280497755748 4856.500380228436 277.0534990723062 4454.902842959618 5256.530343537615 280.5881711224444 4454.902668347735 5256.529884595821 277.0448648192347 5330.280672697048 4856.500839028262 280.5968060386607 5330.280672697048 4856.500839028262 280.5968060386607 5330.280497755748 4856.500380228436 277.0534990723062 4454.902842959618 5256.530343537615 280.5881711224444 4454.902668347735 5256.529884595821 277.0448648192347 4454.902842959618 5256.530343537615 280.5881711224444 4456.375396701049 5259.75263125911 277.0443748525442 4454.902668347735 5256.529884595821 277.0448648192347 4456.375571312936 5259.753090200904 280.5876811557534 4456.375571312936 5259.753090200904 280.5876811557534 4454.902842959618 5256.530343537615 280.5881711224444 4456.375396701049 5259.75263125911 277.0443748525442 4454.902668347735 5256.529884595821 277.0448648192347 4456.375396701049 5259.75263125911 277.0443748525442 5330.280497755748 4856.500380228436 277.0534990723062 4454.902668347735 5256.529884595821 277.0448648192347 5333.57643446858 4858.889958478346 277.0530269442164 5333.57643446858 4858.889958478346 277.0530269442164 4456.375396701049 5259.75263125911 277.0443748525442 5330.280497755748 4856.500380228436 277.0534990723062 4454.902668347735 5256.529884595821 277.0448648192347 5333.576609429942 4858.890417292723 280.5963339968071 5330.280497755748 4856.500380228436 277.0534990723062 5333.57643446858 4858.889958478346 277.0530269442164 5330.280672697048 4856.500839028262 280.5968060386607 5330.280672697048 4856.500839028262 280.5968060386607 5333.576609429942 4858.890417292723 280.5963339968071 5330.280497755748 4856.500380228436 277.0534990723062 5333.57643446858 4858.889958478346 277.0530269442164 5330.280672697048 4856.500839028262 280.5968060386607 4456.375571312936 5259.753090200904 280.5876811557534 4454.902842959618 5256.530343537615 280.5881711224444 5333.576609429942 4858.890417292723 280.5963339968071 5333.576609429942 4858.890417292723 280.5963339968071 5330.280672697048 4856.500839028262 280.5968060386607 4456.375571312936 5259.753090200904 280.5876811557534 4454.902842959618 5256.530343537615 280.5881711224444 4456.375571312936 5259.753090200904 280.5876811557534 5333.57643446858 4858.889958478346 277.0530269442164 4456.375396701049 5259.75263125911 277.0443748525442 5333.576609429942 4858.890417292723 280.5963339968071 5333.576609429942 4858.890417292723 280.5963339968071 4456.375571312936 5259.753090200904 280.5876811557534 5333.57643446858 4858.889958478346 277.0530269442164 4456.375396701049 5259.75263125911 277.0443748525442</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID5560\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5558\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID5561\">-0.4156366702341153 -0.9095307247327186 0.0001382890924668119 -0.4156366702341153 -0.9095307247327186 0.0001382890924668119 -0.4156366702341153 -0.9095307247327186 0.0001382890924668119 -0.4156366702341153 -0.9095307247327186 0.0001382890924668119 0.4156366702341153 0.9095307247327186 -0.0001382890924668119 0.4156366702341153 0.9095307247327186 -0.0001382890924668119 0.4156366702341153 0.9095307247327186 -0.0001382890924668119 0.4156366702341153 0.9095307247327186 -0.0001382890924668119 -0.9095307345691821 0.4156366716169277 -9.013662244857031e-006 -0.9095307345691821 0.4156366716169277 -9.013662244857031e-006 -0.9095307345691821 0.4156366716169277 -9.013662244857031e-006 -0.9095307345691821 0.4156366716169277 -9.013662244857031e-006 0.9095307345691821 -0.4156366716169277 9.013662244857031e-006 0.9095307345691821 -0.4156366716169277 9.013662244857031e-006 0.9095307345691821 -0.4156366716169277 9.013662244857031e-006 0.9095307345691821 -0.4156366716169277 9.013662244857031e-006 -4.932243383183469e-005 -0.0001295157707460937 -0.9999999903964814 -4.932243383183469e-005 -0.0001295157707460937 -0.9999999903964814 -4.932243383183469e-005 -0.0001295157707460937 -0.9999999903964814 -4.932243383183469e-005 -0.0001295157707460937 -0.9999999903964814 4.932243383183469e-005 0.0001295157707460937 0.9999999903964814 4.932243383183469e-005 0.0001295157707460937 0.9999999903964814 4.932243383183469e-005 0.0001295157707460937 0.9999999903964814 4.932243383183469e-005 0.0001295157707460937 0.9999999903964814 0.5869714625153837 -0.8096076188124867 7.585069050946399e-005 0.5869714625153837 -0.8096076188124867 7.585069050946399e-005 0.5869714625153837 -0.8096076188124867 7.585069050946399e-005 0.5869714625153837 -0.8096076188124867 7.585069050946399e-005 -0.5869714625153837 0.8096076188124867 -7.585069050946399e-005 -0.5869714625153837 0.8096076188124867 -7.585069050946399e-005 -0.5869714625153837 0.8096076188124867 -7.585069050946399e-005 -0.5869714625153837 0.8096076188124867 -7.585069050946399e-005 4.931741667519663e-005 0.0001295060961363156 0.9999999903979818 4.931741667519663e-005 0.0001295060961363156 0.9999999903979818 4.931741667519663e-005 0.0001295060961363156 0.9999999903979818 4.931741667519663e-005 0.0001295060961363156 0.9999999903979818 -4.931741667519663e-005 -0.0001295060961363156 -0.9999999903979818 -4.931741667519663e-005 -0.0001295060961363156 -0.9999999903979818 -4.931741667519663e-005 -0.0001295060961363156 -0.9999999903979818 -4.931741667519663e-005 -0.0001295060961363156 -0.9999999903979818 0.4156366703526395 0.9095307246818589 -0.0001382673642038388 0.4156366703526395 0.9095307246818589 -0.0001382673642038388 0.4156366703526395 0.9095307246818589 -0.0001382673642038388 0.4156366703526395 0.9095307246818589 -0.0001382673642038388 -0.4156366703526395 -0.9095307246818589 0.0001382673642038388 -0.4156366703526395 -0.9095307246818589 0.0001382673642038388 -0.4156366703526395 -0.9095307246818589 0.0001382673642038388 -0.4156366703526395 -0.9095307246818589 0.0001382673642038388</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID5561\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5559\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5557\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5558\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5559\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 20 21 22 23 22 21 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 44 45 46 47 46 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5562\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5563\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID5566\">5330.224191272191 4856.496349752009 271.2461371441126 4456.32909644407 5259.770498148218 271.2370092005197 4454.846361364253 5256.525854021242 271.2375022168945 5333.530134698571 4858.907825495317 271.2456624446729 5333.530134698571 4858.907825495317 271.2456624446729 5330.224191272191 4856.496349752009 271.2461371441126 4456.32909644407 5259.770498148218 271.2370092005197 4454.846361364253 5256.525854021242 271.2375022168945 4456.32909644407 5259.770498148218 271.2370092005197 5333.529959737246 4858.907366703939 267.702355478319 4456.328921959826 5259.770039667704 267.6937034831068 5333.530134698571 4858.907825495317 271.2456624446729 5333.530134698571 4858.907825495317 271.2456624446729 4456.32909644407 5259.770498148218 271.2370092005197 5333.529959737246 4858.907366703939 267.702355478319 4456.328921959826 5259.770039667704 267.6937034831068 4454.846361364253 5256.525854021242 271.2375022168945 4456.328921959826 5259.770039667704 267.6937034831068 4454.846186879998 5256.525395540725 267.6941964994821 4456.32909644407 5259.770498148218 271.2370092005197 4456.32909644407 5259.770498148218 271.2370092005197 4454.846361364253 5256.525854021242 271.2375022168945 4456.328921959826 5259.770039667704 267.6937034831068 4454.846186879998 5256.525395540725 267.6941964994821 5330.224016319949 4856.495890951212 267.7028315096994 4454.846361364253 5256.525854021242 271.2375022168945 4454.846186879998 5256.525395540725 267.6941964994821 5330.224191272191 4856.496349752009 271.2461371441126 5330.224191272191 4856.496349752009 271.2461371441126 5330.224016319949 4856.495890951212 267.7028315096994 4454.846361364253 5256.525854021242 271.2375022168945 4454.846186879998 5256.525395540725 267.6941964994821 5333.530134698571 4858.907825495317 271.2456624446729 5330.224016319949 4856.495890951212 267.7028315096994 5333.529959737246 4858.907366703939 267.702355478319 5330.224191272191 4856.496349752009 271.2461371441126 5330.224191272191 4856.496349752009 271.2461371441126 5333.530134698571 4858.907825495317 271.2456624446729 5330.224016319949 4856.495890951212 267.7028315096994 5333.529959737246 4858.907366703939 267.702355478319 4456.328921959826 5259.770039667704 267.6937034831068 5330.224016319949 4856.495890951212 267.7028315096994 4454.846186879998 5256.525395540725 267.6941964994821 5333.529959737246 4858.907366703939 267.702355478319 5333.529959737246 4858.907366703939 267.702355478319 4456.328921959826 5259.770039667704 267.6937034831068 5330.224016319949 4856.495890951212 267.7028315096994 4454.846186879998 5256.525395540725 267.6941964994821</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID5566\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5564\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID5567\">4.92618192311884e-005 0.0001293849508446285 0.9999999904164038 4.92618192311884e-005 0.0001293849508446285 0.9999999904164038 4.92618192311884e-005 0.0001293849508446285 0.9999999904164038 4.92618192311884e-005 0.0001293849508446285 0.9999999904164038 -4.92618192311884e-005 -0.0001293849508446285 -0.9999999904164038 -4.92618192311884e-005 -0.0001293849508446285 -0.9999999904164038 -4.92618192311884e-005 -0.0001293849508446285 -0.9999999904164038 -4.92618192311884e-005 -0.0001293849508446285 -0.9999999904164038 0.4156366702593726 0.9095307247209842 -0.0001382903582246804 0.4156366702593726 0.9095307247209842 -0.0001382903582246804 0.4156366702593726 0.9095307247209842 -0.0001382903582246804 0.4156366702593726 0.9095307247209842 -0.0001382903582246804 -0.4156366702593726 -0.9095307247209842 0.0001382903582246804 -0.4156366702593726 -0.9095307247209842 0.0001382903582246804 -0.4156366702593726 -0.9095307247209842 0.0001382903582246804 -0.4156366702593726 -0.9095307247209842 0.0001382903582246804 -0.9095307303319444 0.4156366808896662 -8.992319476062126e-006 -0.9095307303319444 0.4156366808896662 -8.992319476062126e-006 -0.9095307303319444 0.4156366808896662 -8.992319476062126e-006 -0.9095307303319444 0.4156366808896662 -8.992319476062126e-006 0.9095307303319444 -0.4156366808896662 8.992319476062126e-006 0.9095307303319444 -0.4156366808896662 8.992319476062126e-006 0.9095307303319444 -0.4156366808896662 8.992319476062126e-006 0.9095307303319444 -0.4156366808896662 8.992319476062126e-006 -0.4156366701899213 -0.9095307247629294 0.0001382232076859152 -0.4156366701899213 -0.9095307247629294 0.0001382232076859152 -0.4156366701899213 -0.9095307247629294 0.0001382232076859152 -0.4156366701899213 -0.9095307247629294 0.0001382232076859152 0.4156366701899213 0.9095307247629294 -0.0001382232076859152 0.4156366701899213 0.9095307247629294 -0.0001382232076859152 0.4156366701899213 0.9095307247629294 -0.0001382232076859152 0.4156366701899213 0.9095307247629294 -0.0001382232076859152 0.5893144721981489 -0.8079037363175827 7.551097183026337e-005 0.5893144721981489 -0.8079037363175827 7.551097183026337e-005 0.5893144721981489 -0.8079037363175827 7.551097183026337e-005 0.5893144721981489 -0.8079037363175827 7.551097183026337e-005 -0.5893144721981489 0.8079037363175827 -7.551097183026337e-005 -0.5893144721981489 0.8079037363175827 -7.551097183026337e-005 -0.5893144721981489 0.8079037363175827 -7.551097183026337e-005 -0.5893144721981489 0.8079037363175827 -7.551097183026337e-005 -4.935577272143724e-005 -0.0001295901027888742 -0.9999999903852065 -4.935577272143724e-005 -0.0001295901027888742 -0.9999999903852065 -4.935577272143724e-005 -0.0001295901027888742 -0.9999999903852065 -4.935577272143724e-005 -0.0001295901027888742 -0.9999999903852065 4.935577272143724e-005 0.0001295901027888742 0.9999999903852065 4.935577272143724e-005 0.0001295901027888742 0.9999999903852065 4.935577272143724e-005 0.0001295901027888742 0.9999999903852065 4.935577272143724e-005 0.0001295901027888742 0.9999999903852065</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID5567\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5565\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5563\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5564\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5565\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 20 21 22 23 22 21 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 44 45 46 47 46 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5568\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5569\">\r\n\t\t\t\t\t<float_array count=\"1458\" id=\"ID5572\">4554.517089807268 1559.589023724203 281.1015824465769 4555.747958638784 1562.866826242104 277.518215715066 4554.516913261789 1559.588559893293 277.5187007706482 4555.748135184266 1562.867290073014 281.1010973909937 4555.748135184266 1562.867290073014 281.1010973909937 4554.517089807268 1559.589023724203 281.1015824465769 4555.747958638784 1562.866826242104 277.518215715066 4554.516913261789 1559.588559893293 277.5187007706482 4555.747958638784 1562.866826242104 277.518215715066 4765.475523248648 1480.369974825049 277.5185612850216 4554.516913261789 1559.588559893293 277.5187007706482 4768.699883063937 1482.899717331162 277.5180749114616 4778.267064440862 1373.343133377856 277.5317864129364 4782.426984335312 1368.045043510025 277.5322673115388 4571.060789079717 1450.976705935852 277.5319226698226 4584.060084164204 1442.322444536598 277.5323955530745 4569.817616584158 1447.658642190805 277.5324127144982 4584.074651974206 1442.361326447507 277.5323898115047 4782.426984335312 1368.045043510025 277.5322673115388 4778.267064440862 1373.343133377856 277.5317864129364 4584.074651974206 1442.361326447507 277.5323898115047 4571.060789079717 1450.976705935852 277.5319226698226 4584.060084164204 1442.322444536598 277.5323955530745 4569.817616584158 1447.658642190805 277.5324127144982 4768.699883063937 1482.899717331162 277.5180749114616 4765.475523248648 1480.369974825049 277.5185612850216 4555.747958638784 1562.866826242104 277.518215715066 4554.516913261789 1559.588559893293 277.5187007706482 4765.475699794126 1480.370438655956 281.10144296095 4554.516913261789 1559.588559893293 277.5187007706482 4765.475523248648 1480.369974825049 277.5185612850216 4554.517089807268 1559.589023724203 281.1015824465769 4554.517089807268 1559.589023724203 281.1015824465769 4765.475699794126 1480.370438655956 281.10144296095 4554.516913261789 1559.588559893293 277.5187007706482 4765.475523248648 1480.369974825049 277.5185612850216 4782.41259318389 1368.00662448368 281.1151547291541 4571.060966921546 1450.977168377089 281.1148043458668 4569.817794425977 1447.659104632021 281.1152942136719 4778.267241099443 1373.343596262419 281.1146680889814 4765.475699794126 1480.370438655956 281.10144296095 4555.748135184266 1562.867290073014 281.1010973909937 4554.517089807268 1559.589023724203 281.1015824465769 4768.700059609413 1482.900181162072 281.1009565873894 4782.427160993891 1368.045506394589 281.1151489875842 4782.41259318389 1368.00662448368 281.1151547291541 4778.267241099443 1373.343596262419 281.1146680889814 4782.427160993891 1368.045506394589 281.1151489875842 4768.700059609413 1482.900181162072 281.1009565873894 4765.475699794126 1480.370438655956 281.10144296095 4555.748135184266 1562.867290073014 281.1010973909937 4554.517089807268 1559.589023724203 281.1015824465769 4571.060966921546 1450.977168377089 281.1148043458668 4569.817794425977 1447.659104632021 281.1152942136719 4555.747958638784 1562.866826242104 277.518215715066 4768.700059609413 1482.900181162072 281.1009565873894 4768.699883063937 1482.899717331162 277.5180749114616 4555.748135184266 1562.867290073014 281.1010973909937 4555.748135184266 1562.867290073014 281.1010973909937 4555.747958638784 1562.866826242104 277.518215715066 4768.700059609413 1482.900181162072 281.1009565873894 4768.699883063937 1482.899717331162 277.5180749114616 4782.427160993891 1368.045506394589 281.1151489875842 4584.074651974206 1442.361326447507 277.5323898115047 4782.426984335312 1368.045043510025 277.5322673115388 4584.074664057876 1442.361357868606 277.7758328046364 4584.074664057876 1442.361357868606 277.7758328046364 4782.427160993891 1368.045506394589 281.1151489875842 4584.074651974206 1442.361326447507 277.5323898115047 4782.426984335312 1368.045043510025 277.5322673115388 4584.074651974206 1442.361326447507 277.5323898115047 4584.060096247874 1442.322475957697 277.7758385462062 4584.060084164204 1442.322444536598 277.5323955530745 4584.074664057876 1442.361357868606 277.7758328046364 4584.074664057876 1442.361357868606 277.7758328046364 4584.074651974206 1442.361326447507 277.5323898115047 4584.060096247874 1442.322475957697 277.7758385462062 4584.060084164204 1442.322444536598 277.5323955530745 4584.060096247874 1442.322475957697 277.7758385462062 4569.817616584158 1447.658642190805 277.5324127144982 4584.060084164204 1442.322444536598 277.5323955530745 4569.817794425977 1447.659104632021 281.1152942136719 4782.41259318389 1368.00662448368 281.1151547291541 4782.41259318389 1368.00662448368 281.1151547291541 4584.060096247874 1442.322475957697 277.7758385462062 4569.817794425977 1447.659104632021 281.1152942136719 4569.817616584158 1447.658642190805 277.5324127144982 4584.060084164204 1442.322444536598 277.5323955530745 4569.817794425977 1447.659104632021 281.1152942136719 4571.060789079717 1450.976705935852 277.5319226698226 4569.817616584158 1447.658642190805 277.5324127144982 4571.060966921546 1450.977168377089 281.1148043458668 4571.060966921546 1450.977168377089 281.1148043458668 4569.817794425977 1447.659104632021 281.1152942136719 4571.060789079717 1450.976705935852 277.5319226698226 4569.817616584158 1447.658642190805 277.5324127144982 4571.060789079717 1450.976705935852 277.5319226698226 4569.817616584158 1447.658642190805 277.5324127144982 4569.659213014082 1447.347045542043 277.5908489377144 4569.659213014082 1447.347045542043 277.5908489377144 4569.817616584158 1447.658642190805 277.5324127144982 4571.060789079717 1450.976705935852 277.5319226698226 4571.060789079717 1450.976705935852 277.5319226698226 4778.267241099443 1373.343596262419 281.1146680889814 4778.267064440862 1373.343133377856 277.5317864129364 4571.060966921546 1450.977168377089 281.1148043458668 4571.060966921546 1450.977168377089 281.1148043458668 4571.060789079717 1450.976705935852 277.5319226698226 4778.267241099443 1373.343596262419 281.1146680889814 4778.267064440862 1373.343133377856 277.5317864129364 4778.267241099443 1373.343596262419 281.1146680889814 4765.475523248648 1480.369974825049 277.5185612850216 4778.267064440862 1373.343133377856 277.5317864129364 4765.475699794126 1480.370438655956 281.10144296095 4765.475699794126 1480.370438655956 281.10144296095 4778.267241099443 1373.343596262419 281.1146680889814 4765.475523248648 1480.369974825049 277.5185612850216 4778.267064440862 1373.343133377856 277.5317864129364 4768.699883063937 1482.899717331162 277.5180749114616 4782.427160993891 1368.045506394589 281.1151489875842 4782.426984335312 1368.045043510025 277.5322673115388 4768.700059609413 1482.900181162072 281.1009565873894 4768.700059609413 1482.900181162072 281.1009565873894 4768.699883063937 1482.899717331162 277.5180749114616 4782.427160993891 1368.045506394589 281.1151489875842 4782.426984335312 1368.045043510025 277.5322673115388 4571.060966921546 1450.977168377089 281.1148043458668 4569.817794425977 1447.659104632021 281.1152942136719 4569.702805339913 1447.352195335386 281.1338841044206 4569.702805339913 1447.352195335386 281.1338841044206 4569.817794425977 1447.659104632021 281.1152942136719 4571.060966921546 1450.977168377089 281.1148043458668 4584.074664057876 1442.361357868606 277.7758328046364 4782.41259318389 1368.00662448368 281.1151547291541 4584.060096247874 1442.322475957697 277.7758385462062 4782.427160993891 1368.045506394589 281.1151489875842 4782.427160993891 1368.045506394589 281.1151489875842 4584.074664057876 1442.361357868606 277.7758328046364 4782.41259318389 1368.00662448368 281.1151547291541 4584.060096247874 1442.322475957697 277.7758385462062 4782.427160993891 1368.045506394589 281.1151489875842 4584.074845181136 1442.359872296818 277.8307316449739 4584.074664057876 1442.361357868606 277.7758328046364 4584.074664057876 1442.361357868606 277.7758328046364 4584.074845181136 1442.359872296818 277.8307316449739 4782.427160993891 1368.045506394589 281.1151489875842 4571.060966921546 1450.977168377089 281.1148043458668 4571.060789079717 1450.976705935852 277.5319226698226 4565.390898391574 1453.19828190489 277.6348601022512 4565.390898391574 1453.19828190489 277.6348601022512 4571.060789079717 1450.976705935852 277.5319226698226 4571.060966921546 1450.977168377089 281.1148043458668 4571.060789079717 1450.976705935852 277.5319226698226 4569.659213014082 1447.347045542043 277.5908489377144 4565.390898391574 1453.19828190489 277.6348601022512 4565.390898391574 1453.19828190489 277.6348601022512 4569.659213014082 1447.347045542043 277.5908489377144 4571.060789079717 1450.976705935852 277.5319226698226 4571.060966921546 1450.977168377089 281.1148043458668 4565.434524098141 1453.203435692044 281.1778948524475 4569.702805339913 1447.352195335386 281.1338841044206 4569.702805339913 1447.352195335386 281.1338841044206 4565.434524098141 1453.203435692044 281.1778948524475 4571.060966921546 1450.977168377089 281.1148043458668 4565.434524098141 1453.203435692044 281.1778948524475 4565.434524098141 1453.203435692044 281.1778948524475 4569.659213014082 1447.347045542043 277.5908489377144 4622.106760612614 979.1592483455008 277.6260616331885 4565.390898391574 1453.19828190489 277.6348601022512 4624.871536358569 985.8689651713576 277.5822920250824 4624.871536358569 985.8689651713576 277.5822920250824 4569.659213014082 1447.347045542043 277.5908489377144 4622.106760612614 979.1592483455008 277.6260616331885 4565.390898391574 1453.19828190489 277.6348601022512 4565.390898391574 1453.19828190489 277.6348601022512 4569.702805339913 1447.352195335386 281.1338841044206 4569.659213014082 1447.347045542043 277.5908489377144 4565.434524098141 1453.203435692044 281.1778948524475 4565.434524098141 1453.203435692044 281.1778948524475 4565.390898391574 1453.19828190489 277.6348601022512 4569.702805339913 1447.352195335386 281.1338841044206 4569.659213014082 1447.347045542043 277.5908489377144 4565.390898391574 1453.19828190489 277.6348601022512 4569.702805339913 1447.352195335386 281.1338841044206 4569.659213014082 1447.347045542043 277.5908489377144 4565.434524098141 1453.203435692044 281.1778948524475 4565.434524098141 1453.203435692044 281.1778948524475 4565.390898391574 1453.19828190489 277.6348601022512 4569.702805339913 1447.352195335386 281.1338841044206 4569.659213014082 1447.347045542043 277.5908489377144 4622.141168875747 979.2414428018328 281.1690978133084 4569.702805339913 1447.352195335386 281.1338841044206 4565.434524098141 1453.203435692044 281.1778948524475 4624.906459229147 985.9524085065686 281.1253202278986 4624.906459229147 985.9524085065686 281.1253202278986 4622.141168875747 979.2414428018328 281.1690978133084 4569.702805339913 1447.352195335386 281.1338841044206 4565.434524098141 1453.203435692044 281.1778948524475 4622.141168875747 979.2414428018328 281.1690978133084 4565.390898391574 1453.19828190489 277.6348601022512 4622.106760612614 979.1592483455008 277.6260616331885 4565.434524098141 1453.203435692044 281.1778948524475 4565.434524098141 1453.203435692044 281.1778948524475 4622.141168875747 979.2414428018328 281.1690978133084 4565.390898391574 1453.19828190489 277.6348601022512 4622.106760612614 979.1592483455008 277.6260616331885 4807.470453771395 1126.016064810852 277.597916403271 4810.233568468659 1132.724465649098 277.5541470473752 4810.233568468659 1132.724465649098 277.5541470473752 4807.470453771395 1126.016064810852 277.597916403271 4569.659213014082 1447.347045542043 277.5908489377144 4624.906459229147 985.9524085065686 281.1253202278986 4624.871536358569 985.8689651713576 277.5822920250824 4569.702805339913 1447.352195335386 281.1338841044206 4569.702805339913 1447.352195335386 281.1338841044206 4569.659213014082 1447.347045542043 277.5908489377144 4624.906459229147 985.9524085065686 281.1253202278986 4624.871536358569 985.8689651713576 277.5822920250824 4807.500655498304 1126.094926583701 281.1409532221022 4810.264284493636 1132.804576055723 281.0971758889493 4810.264284493636 1132.804576055723 281.0971758889493 4807.500655498304 1126.094926583701 281.1409532221022 4807.500655498304 1126.094926583701 281.1409532221022 4622.106760612614 979.1592483455008 277.6260616331885 4807.470453771395 1126.016064810852 277.597916403271 4622.141168875747 979.2414428018328 281.1690978133084 4622.141168875747 979.2414428018328 281.1690978133084 4807.500655498304 1126.094926583701 281.1409532221022 4622.106760612614 979.1592483455008 277.6260616331885 4807.470453771395 1126.016064810852 277.597916403271 4820.163034324335 1020.193122421546 277.6725344018941 4823.916106155977 1018.647868586279 277.6345848727693 4823.916106155977 1018.647868586279 277.6345848727693 4820.163034324335 1020.193122421546 277.6725344018941 4624.871536358569 985.8689651713576 277.5822920250824 4810.264284493636 1132.804576055723 281.0971758889493 4810.233568468659 1132.724465649098 277.5541470473752 4624.906459229147 985.9524085065686 281.1253202278986 4624.906459229147 985.9524085065686 281.1253202278986 4624.871536358569 985.8689651713576 277.5822920250824 4810.264284493636 1132.804576055723 281.0971758889493 4810.233568468659 1132.724465649098 277.5541470473752 4820.204607273505 1020.177177926016 281.2156380706341 4823.958377663799 1018.63163647296 281.1776816474953 4823.958377663799 1018.63163647296 281.1776816474953 4820.204607273505 1020.177177926016 281.2156380706341 4807.500655498304 1126.094926583701 281.1409532221022 4820.163034324335 1020.193122421546 277.6725344018941 4820.204607273505 1020.177177926016 281.2156380706341 4807.470453771395 1126.016064810852 277.597916403271 4807.470453771395 1126.016064810852 277.597916403271 4807.500655498304 1126.094926583701 281.1409532221022 4820.163034324335 1020.193122421546 277.6725344018941 4820.204607273505 1020.177177926016 281.2156380706341 4641.43905575709 873.9978786166946 277.5959091756485 4639.286504364245 876.8118687939418 277.6341979323289 4641.43905575709 873.9978786166946 277.5959091756485 4639.286504364245 876.8118687939418 277.6341979323289 4823.916106155977 1018.647868586279 277.6345848727693 4810.264284493636 1132.804576055723 281.0971758889493 4823.958377663799 1018.63163647296 281.1776816474953 4810.233568468659 1132.724465649098 277.5541470473752 4810.233568468659 1132.724465649098 277.5541470473752 4823.916106155977 1018.647868586279 277.6345848727693 4810.264284493636 1132.804576055723 281.0971758889493 4823.958377663799 1018.63163647296 281.1776816474953 4641.462673160184 873.9668593503841 281.1390019966696 4639.309721113327 876.7813732951347 281.1772977105037 4641.462673160184 873.9668593503841 281.1390019966696 4639.309721113327 876.7813732951347 281.1772977105037 4639.309721113327 876.7813732951347 281.1772977105037 4820.163034324335 1020.193122421546 277.6725344018941 4639.286504364245 876.8118687939418 277.6341979323289 4820.204607273505 1020.177177926016 281.2156380706341 4820.204607273505 1020.177177926016 281.2156380706341 4639.309721113327 876.7813732951347 281.1772977105037 4820.163034324335 1020.193122421546 277.6725344018941 4639.286504364245 876.8118687939418 277.6341979323289 4639.286504364245 876.8118687939418 277.6341979323289 4079.150725846061 459.0776925989708 277.6773116026766 4077.047298757291 461.9279322665636 277.7155932476362 4641.43905575709 873.9978786166946 277.5959091756485 4641.43905575709 873.9978786166946 277.5959091756485 4639.286504364245 876.8118687939418 277.6341979323289 4079.150725846061 459.0776925989708 277.6773116026766 4077.047298757291 461.9279322665636 277.7155932476362 4823.916106155977 1018.647868586279 277.6345848727693 4641.462673160184 873.9668593503841 281.1390019966696 4641.43905575709 873.9978786166946 277.5959091756485 4823.958377663799 1018.63163647296 281.1776816474953 4823.958377663799 1018.63163647296 281.1776816474953 4823.916106155977 1018.647868586279 277.6345848727693 4641.462673160184 873.9668593503841 281.1390019966696 4641.43905575709 873.9978786166946 277.5959091756485 4079.149679133093 459.028473346857 281.2204079943195 4639.309721113327 876.7813732951347 281.1772977105037 4077.045860534968 461.8792435299165 281.2586965951088 4641.462673160184 873.9668593503841 281.1390019966696 4641.462673160184 873.9668593503841 281.1390019966696 4079.149679133093 459.028473346857 281.2204079943195 4639.309721113327 876.7813732951347 281.1772977105037 4077.045860534968 461.8792435299165 281.2586965951088 4077.047298757291 461.9279322665636 277.7155932476362 4077.045860534968 461.8792435299165 281.2586965951088 4077.045860534968 461.8792435299165 281.2586965951088 4077.047298757291 461.9279322665636 277.7155932476362 3787.188524453669 363.7544176779784 273.7398599573722 3890.369784021017 319.8011114699355 273.6683585300356 3779.909686546454 362.7863926708601 273.6682364348101 3889.836013827048 323.8093941250222 273.739973417062 3978.994326707413 505.2630523840126 277.8130567815666 3526.202137398812 677.6650899377621 277.7409278704448 3521.98388616477 683.1071748186671 277.8125384499417 3971.715484246811 504.2950240175396 277.7414331623085 3549.086346259213 456.4113073768658 273.7395966507563 3553.304598083887 450.9692175556934 273.6679859824999 3418.563692328421 724.5550933868462 277.8350834471637 3442.552004275427 494.0683230036152 273.6678634573584 3415.046268995419 724.1351720545965 277.8013742560744 3445.817163669906 496.5982613513688 273.7394824044813 3549.086346259213 456.4113073768658 273.7395966507563 3445.817163669906 496.5982613513688 273.7394824044813 3553.304598083887 450.9692175556934 273.6679859824999 3442.552004275427 494.0683230036152 273.6678634573584 3418.563692328421 724.5550933868462 277.8350834471637 3415.046268995419 724.1351720545965 277.8013742560744 3526.202137398812 677.6650899377621 277.7409278704448 3521.98388616477 683.1071748186671 277.8125384499417 3978.994326707413 505.2630523840126 277.8130567815666 3971.715484246811 504.2950240175396 277.7414331623085 3787.188524453669 363.7544176779784 273.7398599573722 3779.909686546454 362.7863926708601 273.6682364348101 3890.369784021017 319.8011114699355 273.6683585300356 3889.836013827048 323.8093941250222 273.739973417062 4079.150725846061 459.0776925989708 277.6773116026766 4079.149679133093 459.028473346857 281.2204079943195 4079.149679133093 459.028473346857 281.2204079943195 4079.150725846061 459.0776925989708 277.6773116026766 3442.52538471083 494.0010741210867 277.2104325596249 3418.537678138669 724.4883352120314 281.3776660662312 3415.019600108854 724.068335716921 281.3439507703551 3445.791151848408 496.5314833677069 277.282064667652 3553.279441817433 450.9013992342129 277.2105550863849 3549.060404853708 456.3445019909907 277.2821789140045 3526.176981140945 677.5972715444495 281.2834969730401 3521.957944767961 683.0403693600422 281.3551207118831 3890.343907241116 319.7335733833113 277.2109276302463 3787.162474655426 363.6876543216599 277.2824422176501 3779.882281941906 362.7194491335224 277.2108055333321 3889.810037698108 323.742602100469 277.2825556774214 3971.688079713961 504.2280805331022 281.2840022623536 3978.968276981716 505.1962890812185 281.3556390433853 3971.688079713961 504.2280805331022 281.2840022623536 3526.176981140945 677.5972715444495 281.2834969730401 3978.968276981716 505.1962890812185 281.3556390433853 3521.957944767961 683.0403693600422 281.3551207118831 3787.162474655426 363.6876543216599 277.2824422176501 3779.882281941906 362.7194491335224 277.2108055333321 3890.343907241116 319.7335733833113 277.2109276302463 3889.810037698108 323.742602100469 277.2825556774214 3553.279441817433 450.9013992342129 277.2105550863849 3549.060404853708 456.3445019909907 277.2821789140045 3445.791151848408 496.5314833677069 277.282064667652 3442.52538471083 494.0010741210867 277.2104325596249 3418.537678138669 724.4883352120314 281.3776660662312 3415.019600108854 724.068335716921 281.3439507703551 3889.810037698108 323.742602100469 277.2825556774214 4077.047298757291 461.9279322665636 277.7155932476362 3889.836013827048 323.8093941250222 273.739973417062 4077.045860534968 461.8792435299165 281.2586965951088 4077.045860534968 461.8792435299165 281.2586965951088 3889.810037698108 323.742602100469 277.2825556774214 4077.047298757291 461.9279322665636 277.7155932476362 3889.836013827048 323.8093941250222 273.739973417062 3787.162474655426 363.6876543216599 277.2824422176501 3889.836013827048 323.8093941250222 273.739973417062 3787.188524453669 363.7544176779784 273.7398599573722 3889.810037698108 323.742602100469 277.2825556774214 3889.810037698108 323.742602100469 277.2825556774214 3787.162474655426 363.6876543216599 277.2824422176501 3889.836013827048 323.8093941250222 273.739973417062 3787.188524453669 363.7544176779784 273.7398599573722 4079.150725846061 459.0776925989708 277.6773116026766 3890.343907241116 319.7335733833113 277.2109276302463 3890.369784021017 319.8011114699355 273.6683585300356 4079.149679133093 459.028473346857 281.2204079943195 4079.149679133093 459.028473346857 281.2204079943195 4079.150725846061 459.0776925989708 277.6773116026766 3890.343907241116 319.7335733833113 277.2109276302463 3890.369784021017 319.8011114699355 273.6683585300356 3890.369784021017 319.8011114699355 273.6683585300356 3779.882281941906 362.7194491335224 277.2108055333321 3779.909686546454 362.7863926708601 273.6682364348101 3890.343907241116 319.7335733833113 277.2109276302463 3890.343907241116 319.7335733833113 277.2109276302463 3890.369784021017 319.8011114699355 273.6683585300356 3779.882281941906 362.7194491335224 277.2108055333321 3779.909686546454 362.7863926708601 273.6682364348101 3779.882281941906 362.7194491335224 277.2108055333321 3971.715484246811 504.2950240175396 277.7414331623085 3779.909686546454 362.7863926708601 273.6682364348101 3971.688079713961 504.2280805331022 281.2840022623536 3971.688079713961 504.2280805331022 281.2840022623536 3779.882281941906 362.7194491335224 277.2108055333321 3971.715484246811 504.2950240175396 277.7414331623085 3779.909686546454 362.7863926708601 273.6682364348101 3971.715484246811 504.2950240175396 277.7414331623085 3526.176981140945 677.5972715444495 281.2834969730401 3526.202137398812 677.6650899377621 277.7409278704448 3971.688079713961 504.2280805331022 281.2840022623536 3971.688079713961 504.2280805331022 281.2840022623536 3971.715484246811 504.2950240175396 277.7414331623085 3526.176981140945 677.5972715444495 281.2834969730401 3526.202137398812 677.6650899377621 277.7409278704448 3553.304598083887 450.9692175556934 273.6679859824999 3526.176981140945 677.5972715444495 281.2834969730401 3553.279441817433 450.9013992342129 277.2105550863849 3526.202137398812 677.6650899377621 277.7409278704448 3526.202137398812 677.6650899377621 277.7409278704448 3553.304598083887 450.9692175556934 273.6679859824999 3526.176981140945 677.5972715444495 281.2834969730401 3553.279441817433 450.9013992342129 277.2105550863849 3553.304598083887 450.9692175556934 273.6679859824999 3442.52538471083 494.0010741210867 277.2104325596249 3442.552004275427 494.0683230036152 273.6678634573584 3553.279441817433 450.9013992342129 277.2105550863849 3553.279441817433 450.9013992342129 277.2105550863849 3553.304598083887 450.9692175556934 273.6679859824999 3442.52538471083 494.0010741210867 277.2104325596249 3442.552004275427 494.0683230036152 273.6678634573584 3415.019600108854 724.068335716921 281.3439507703551 3442.552004275427 494.0683230036152 273.6678634573584 3442.52538471083 494.0010741210867 277.2104325596249 3415.046268995419 724.1351720545965 277.8013742560744 3415.046268995419 724.1351720545965 277.8013742560744 3415.019600108854 724.068335716921 281.3439507703551 3442.552004275427 494.0683230036152 273.6678634573584 3442.52538471083 494.0010741210867 277.2104325596249 3415.019600108854 724.068335716921 281.3439507703551 3418.563692328421 724.5550933868462 277.8350834471637 3415.046268995419 724.1351720545965 277.8013742560744 3418.537678138669 724.4883352120314 281.3776660662312 3418.537678138669 724.4883352120314 281.3776660662312 3415.019600108854 724.068335716921 281.3439507703551 3418.563692328421 724.5550933868462 277.8350834471637 3415.046268995419 724.1351720545965 277.8013742560744 3445.817163669906 496.5982613513688 273.7394824044813 3418.537678138669 724.4883352120314 281.3776660662312 3445.791151848408 496.5314833677069 277.282064667652 3418.563692328421 724.5550933868462 277.8350834471637 3418.563692328421 724.5550933868462 277.8350834471637 3445.817163669906 496.5982613513688 273.7394824044813 3418.537678138669 724.4883352120314 281.3776660662312 3445.791151848408 496.5314833677069 277.282064667652 3445.791151848408 496.5314833677069 277.282064667652 3549.086346259213 456.4113073768658 273.7395966507563 3445.817163669906 496.5982613513688 273.7394824044813 3549.060404853708 456.3445019909907 277.2821789140045 3549.060404853708 456.3445019909907 277.2821789140045 3445.791151848408 496.5314833677069 277.282064667652 3549.086346259213 456.4113073768658 273.7395966507563 3445.817163669906 496.5982613513688 273.7394824044813 3521.957944767961 683.0403693600422 281.3551207118831 3549.086346259213 456.4113073768658 273.7395966507563 3549.060404853708 456.3445019909907 277.2821789140045 3521.98388616477 683.1071748186671 277.8125384499417 3521.98388616477 683.1071748186671 277.8125384499417 3521.957944767961 683.0403693600422 281.3551207118831 3549.086346259213 456.4113073768658 273.7395966507563 3549.060404853708 456.3445019909907 277.2821789140045 3521.957944767961 683.0403693600422 281.3551207118831 3978.994326707413 505.2630523840126 277.8130567815666 3521.98388616477 683.1071748186671 277.8125384499417 3978.968276981716 505.1962890812185 281.3556390433853 3978.968276981716 505.1962890812185 281.3556390433853 3521.957944767961 683.0403693600422 281.3551207118831 3978.994326707413 505.2630523840126 277.8130567815666 3521.98388616477 683.1071748186671 277.8125384499417 3978.994326707413 505.2630523840126 277.8130567815666 3787.162474655426 363.6876543216599 277.2824422176501 3787.188524453669 363.7544176779784 273.7398599573722 3978.968276981716 505.1962890812185 281.3556390433853 3978.968276981716 505.1962890812185 281.3556390433853 3978.994326707413 505.2630523840126 277.8130567815666 3787.162474655426 363.6876543216599 277.2824422176501 3787.188524453669 363.7544176779784 273.7398599573722</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"486\" source=\"#ID5572\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5570\">\r\n\t\t\t\t\t<float_array count=\"1458\" id=\"ID5573\">-0.9361698987016361 0.351547892561718 6.189946215309425e-007 -0.9361698987016361 0.351547892561718 6.189946215309425e-007 -0.9361698987016361 0.351547892561718 6.189946215309425e-007 -0.9361698987016361 0.351547892561718 6.189946215309425e-007 0.9361698987016361 -0.351547892561718 -6.189946215309425e-007 0.9361698987016361 -0.351547892561718 -6.189946215309425e-007 0.9361698987016361 -0.351547892561718 -6.189946215309425e-007 0.9361698987016361 -0.351547892561718 -6.189946215309425e-007 -4.913527374177236e-005 -0.000129288745670803 -0.9999999904350725 -4.913527374177236e-005 -0.000129288745670803 -0.9999999904350725 -4.913527374177236e-005 -0.000129288745670803 -0.9999999904350725 -4.913527374177236e-005 -0.000129288745670803 -0.9999999904350725 -4.913527374177236e-005 -0.000129288745670803 -0.9999999904350725 -4.913527374177236e-005 -0.000129288745670803 -0.9999999904350725 -4.913527374177236e-005 -0.000129288745670803 -0.9999999904350725 -4.913527374177236e-005 -0.000129288745670803 -0.9999999904350725 -4.913527374177236e-005 -0.000129288745670803 -0.9999999904350725 -4.913527374177236e-005 -0.000129288745670803 -0.9999999904350725 4.913527374177236e-005 0.000129288745670803 0.9999999904350725 4.913527374177236e-005 0.000129288745670803 0.9999999904350725 4.913527374177236e-005 0.000129288745670803 0.9999999904350725 4.913527374177236e-005 0.000129288745670803 0.9999999904350725 4.913527374177236e-005 0.000129288745670803 0.9999999904350725 4.913527374177236e-005 0.000129288745670803 0.9999999904350725 4.913527374177236e-005 0.000129288745670803 0.9999999904350725 4.913527374177236e-005 0.000129288745670803 0.9999999904350725 4.913527374177236e-005 0.000129288745670803 0.9999999904350725 4.913527374177236e-005 0.000129288745670803 0.9999999904350725 -0.3515478891089467 -0.9361698897508854 0.0001385166374584031 -0.3515478891089467 -0.9361698897508854 0.0001385166374584031 -0.3515478891089467 -0.9361698897508854 0.0001385166374584031 -0.3515478891089467 -0.9361698897508854 0.0001385166374584031 0.3515478891089467 0.9361698897508854 -0.0001385166374584031 0.3515478891089467 0.9361698897508854 -0.0001385166374584031 0.3515478891089467 0.9361698897508854 -0.0001385166374584031 0.3515478891089467 0.9361698897508854 -0.0001385166374584031 4.917284899445035e-005 0.0001293367672045239 0.9999999904270158 4.917284899445035e-005 0.0001293367672045239 0.9999999904270158 4.917284899445035e-005 0.0001293367672045239 0.9999999904270158 4.917284899445035e-005 0.0001293367672045239 0.9999999904270158 4.917284899445035e-005 0.0001293367672045239 0.9999999904270158 4.917284899445035e-005 0.0001293367672045239 0.9999999904270158 4.917284899445035e-005 0.0001293367672045239 0.9999999904270158 4.917284899445035e-005 0.0001293367672045239 0.9999999904270158 4.917284899445035e-005 0.0001293367672045239 0.9999999904270158 -4.917284899445035e-005 -0.0001293367672045239 -0.9999999904270158 -4.917284899445035e-005 -0.0001293367672045239 -0.9999999904270158 -4.917284899445035e-005 -0.0001293367672045239 -0.9999999904270158 -4.917284899445035e-005 -0.0001293367672045239 -0.9999999904270158 -4.917284899445035e-005 -0.0001293367672045239 -0.9999999904270158 -4.917284899445035e-005 -0.0001293367672045239 -0.9999999904270158 -4.917284899445035e-005 -0.0001293367672045239 -0.9999999904270158 -4.917284899445035e-005 -0.0001293367672045239 -0.9999999904270158 -4.917284899445035e-005 -0.0001293367672045239 -0.9999999904270158 0.3515478891089463 0.9361698897508857 -0.0001385166374422819 0.3515478891089463 0.9361698897508857 -0.0001385166374422819 0.3515478891089463 0.9361698897508857 -0.0001385166374422819 0.3515478891089463 0.9361698897508857 -0.0001385166374422819 -0.3515478891089463 -0.9361698897508857 0.0001385166374422819 -0.3515478891089463 -0.9361698897508857 0.0001385166374422819 -0.3515478891089463 -0.9361698897508857 0.0001385166374422819 -0.3515478891089463 -0.9361698897508857 0.0001385166374422819 -0.3508509043034512 -0.9364313236047408 0.0001382798745119317 -0.3508509043034512 -0.9364313236047408 0.0001382798745119317 -0.3508509043034512 -0.9364313236047408 0.0001382798745119317 -0.3508509043034512 -0.9364313236047408 0.0001382798745119317 0.3508509043034512 0.9364313236047408 -0.0001382798745119317 0.3508509043034512 0.9364313236047408 -0.0001382798745119317 0.3508509043034512 0.9364313236047408 -0.0001382798745119317 0.3508509043034512 0.9364313236047408 -0.0001382798745119317 0.9364313324989009 -0.3508509078125637 -1.197007098065715e-006 0.9364313324989009 -0.3508509078125637 -1.197007098065715e-006 0.9364313324989009 -0.3508509078125637 -1.197007098065715e-006 0.9364313324989009 -0.3508509078125637 -1.197007098065715e-006 -0.9364313324989009 0.3508509078125637 1.197007098065715e-006 -0.9364313324989009 0.3508509078125637 1.197007098065715e-006 -0.9364313324989009 0.3508509078125637 1.197007098065715e-006 -0.9364313324989009 0.3508509078125637 1.197007098065715e-006 -0.3508509043034482 -0.936431323604742 0.0001382798743950072 -0.3508509043034482 -0.936431323604742 0.0001382798743950072 -0.3508509043034482 -0.936431323604742 0.0001382798743950072 -0.3508509043034482 -0.936431323604742 0.0001382798743950072 -0.3508509043034482 -0.936431323604742 0.0001382798743950072 0.3508509043034482 0.936431323604742 -0.0001382798743950072 0.3508509043034482 0.936431323604742 -0.0001382798743950072 0.3508509043034482 0.936431323604742 -0.0001382798743950072 0.3508509043034482 0.936431323604742 -0.0001382798743950072 0.3508509043034482 0.936431323604742 -0.0001382798743950072 -0.9364313324989028 0.3508509078125592 1.197006843724896e-006 -0.9364313324989028 0.3508509078125592 1.197006843724896e-006 -0.9364313324989028 0.3508509078125592 1.197006843724896e-006 -0.9364313324989028 0.3508509078125592 1.197006843724896e-006 0.9364313324989028 -0.3508509078125592 -1.197006843724896e-006 0.9364313324989028 -0.3508509078125592 -1.197006843724896e-006 0.9364313324989028 -0.3508509078125592 -1.197006843724896e-006 0.9364313324989028 -0.3508509078125592 -1.197006843724896e-006 -0.778663554019949 0.2916583138012077 -0.5555344252444292 -0.778663554019949 0.2916583138012077 -0.5555344252444292 -0.778663554019949 0.2916583138012077 -0.5555344252444292 0.778663554019949 -0.2916583138012077 0.5555344252444292 0.778663554019949 -0.2916583138012077 0.5555344252444292 0.778663554019949 -0.2916583138012077 0.5555344252444292 0.3508509043034514 0.9364313236047409 -0.0001382798745102978 0.3508509043034514 0.9364313236047409 -0.0001382798745102978 0.3508509043034514 0.9364313236047409 -0.0001382798745102978 0.3508509043034514 0.9364313236047409 -0.0001382798745102978 -0.3508509043034514 -0.9364313236047409 0.0001382798745102978 -0.3508509043034514 -0.9364313236047409 0.0001382798745102978 -0.3508509043034514 -0.9364313236047409 0.0001382798745102978 -0.3508509043034514 -0.9364313236047409 0.0001382798745102978 -0.9929334427660357 -0.1186725499163124 6.428956578976826e-005 -0.9929334427660357 -0.1186725499163124 6.428956578976826e-005 -0.9929334427660357 -0.1186725499163124 6.428956578976826e-005 -0.9929334427660357 -0.1186725499163124 6.428956578976826e-005 0.9929334427660357 0.1186725499163124 -6.428956578976826e-005 0.9929334427660357 0.1186725499163124 -6.428956578976826e-005 0.9929334427660357 0.1186725499163124 -6.428956578976826e-005 0.9929334427660357 0.1186725499163124 -6.428956578976826e-005 0.9929334427660357 0.1186725499163127 -6.428956578794702e-005 0.9929334427660357 0.1186725499163127 -6.428956578794702e-005 0.9929334427660357 0.1186725499163127 -6.428956578794702e-005 0.9929334427660357 0.1186725499163127 -6.428956578794702e-005 -0.9929334427660357 -0.1186725499163127 6.428956578794702e-005 -0.9929334427660357 -0.1186725499163127 6.428956578794702e-005 -0.9929334427660357 -0.1186725499163127 6.428956578794702e-005 -0.9929334427660357 -0.1186725499163127 6.428956578794702e-005 -0.9364313324989153 0.3508509078125257 1.197008934858586e-006 -0.9364313324989153 0.3508509078125257 1.197008934858586e-006 -0.9364313324989153 0.3508509078125257 1.197008934858586e-006 0.9364313324989153 -0.3508509078125257 -1.197008934858586e-006 0.9364313324989153 -0.3508509078125257 -1.197008934858586e-006 0.9364313324989153 -0.3508509078125257 -1.197008934858586e-006 0.01471257060163646 -0.005659978750179039 -0.9998757447337341 0.01471257060163646 -0.005659978750179039 -0.9998757447337341 0.01471257060163646 -0.005659978750179039 -0.9998757447337341 0.01471257060163646 -0.005659978750179039 -0.9998757447337341 -0.01471257060163646 0.005659978750179039 0.9998757447337341 -0.01471257060163646 0.005659978750179039 0.9998757447337341 -0.01471257060163646 0.005659978750179039 0.9998757447337341 -0.01471257060163646 0.005659978750179039 0.9998757447337341 -0.3503892875634412 -0.9362919762419431 -0.02418020648672775 -0.3503892875634412 -0.9362919762419431 -0.02418020648672775 -0.3503892875634412 -0.9362919762419431 -0.02418020648672775 0.3503892875634412 0.9362919762419431 0.02418020648672775 0.3503892875634412 0.9362919762419431 0.02418020648672775 0.3503892875634412 0.9362919762419431 0.02418020648672775 0.3658360185092416 0.9306770413955355 -0.00206208160802824 0.3648134073508056 0.9310806402751036 -0.0001382823140195835 0.366826865497909 0.9302809312185896 -0.00392934600828234 -0.366826865497909 -0.9302809312185896 0.00392934600828234 -0.3648134073508056 -0.9310806402751036 0.0001382823140195835 -0.3658360185092416 -0.9306770413955355 0.00206208160802824 -0.0212888294235787 -0.008009870227886106 -0.9997412803924356 -0.0212888294235787 -0.008009870227886106 -0.9997412803924356 -0.0212888294235787 -0.008009870227886106 -0.9997412803924356 0.0212888294235787 0.008009870227886106 0.9997412803924356 0.0212888294235787 0.008009870227886106 0.9997412803924356 0.0212888294235787 0.008009870227886106 0.9997412803924356 0.01157845612577689 0.0009249881592266346 0.9999325395998716 0.01157845612577689 0.0009249881592266346 0.9999325395998716 0.01157845612577689 0.0009249881592266346 0.9999325395998716 -0.01157845612577689 -0.0009249881592266346 -0.9999325395998716 -0.01157845612577689 -0.0009249881592266346 -0.9999325395998716 -0.01157845612577689 -0.0009249881592266346 -0.9999325395998716 0.3678612772277787 0.9298620766010728 -0.005882109782064425 -0.3678612772277787 -0.9298620766010728 0.005882109782064425 -0.01230274350798466 -0.001453388362498924 -0.9999232621378726 -0.002427938884961271 -0.005522745139683137 -0.9999818020338636 -0.01230274350798466 -0.001453388362498924 -0.9999232621378726 -0.002427941682658158 -0.005522743986871884 -0.9999818020334375 0.002427941682658158 0.005522743986871884 0.9999818020334375 0.01230274350798466 0.001453388362498924 0.9999232621378726 0.002427938884961271 0.005522745139683137 0.9999818020338636 0.01230274350798466 0.001453388362498924 0.9999232621378726 0.8078053824869753 0.5893503456685686 -0.01079972617294309 0.8078053824869753 0.5893503456685686 -0.01079972617294309 0.8078053824869753 0.5893503456685686 -0.01079972617294309 0.8078053824869753 0.5893503456685686 -0.01079972617294309 -0.8078053824869753 -0.5893503456685686 0.01079972617294309 -0.8078053824869753 -0.5893503456685686 0.01079972617294309 -0.8078053824869753 -0.5893503456685686 0.01079972617294309 -0.8078053824869753 -0.5893503456685686 0.01079972617294309 0.8078053824869752 0.5893503456685686 -0.01079972617294304 0.8078053824869752 0.5893503456685686 -0.01079972617294304 0.8078053824869752 0.5893503456685686 -0.01079972617294304 0.8078053824869752 0.5893503456685686 -0.01079972617294304 -0.8078053824869752 -0.5893503456685686 0.01079972617294304 -0.8078053824869752 -0.5893503456685686 0.01079972617294304 -0.8078053824869752 -0.5893503456685686 0.01079972617294304 -0.8078053824869752 -0.5893503456685686 0.01079972617294304 0.002427943543839344 0.005522725271052392 0.9999818021322831 0.01230272311922654 0.001453386127953517 0.9999232623919772 0.01230272311922654 0.001453386127953517 0.9999232623919772 0.002427943543842701 0.005522725271051009 0.9999818021322831 -0.002427943543842701 -0.005522725271051009 -0.9999818021322831 -0.002427943543839344 -0.005522725271052392 -0.9999818021322831 -0.01230272311922654 -0.001453386127953517 -0.9999232623919772 -0.01230272311922654 -0.001453386127953517 -0.9999232623919772 -0.992842270536399 -0.1187877168708171 0.0123977480514183 -0.992842270536399 -0.1187877168708171 0.0123977480514183 -0.992842270536399 -0.1187877168708171 0.0123977480514183 -0.992842270536399 -0.1187877168708171 0.0123977480514183 0.992842270536399 0.1187877168708171 -0.0123977480514183 0.992842270536399 0.1187877168708171 -0.0123977480514183 0.992842270536399 0.1187877168708171 -0.0123977480514183 0.992842270536399 0.1187877168708171 -0.0123977480514183 -0.001747316848562377 -0.005804738825533286 -0.9999816257766929 -0.001747316848565064 -0.005804738825532179 -0.9999816257766929 0.001747316848565064 0.005804738825532179 0.9999816257766929 0.001747316848562377 0.005804738825533286 0.9999816257766929 0.9928399621775504 0.1187874441435251 -0.01258382362913015 0.9928399621775504 0.1187874441435251 -0.01258382362913015 0.9928399621775504 0.1187874441435251 -0.01258382362913015 0.9928399621775504 0.1187874441435251 -0.01258382362913015 -0.9928399621775504 -0.1187874441435251 0.01258382362913015 -0.9928399621775504 -0.1187874441435251 0.01258382362913015 -0.9928399621775504 -0.1187874441435251 0.01258382362913015 -0.9928399621775504 -0.1187874441435251 0.01258382362913015 0.001747307951643912 0.005804717225228233 0.9999816259176253 0.001747307951642727 0.00580471722522872 0.9999816259176252 -0.001747307951642727 -0.00580471722522872 -0.9999816259176252 -0.001747307951643912 -0.005804717225228233 -0.9999816259176253 0.6209455716774575 -0.7837594819621387 0.01215201417854111 0.6209455716774575 -0.7837594819621387 0.01215201417854111 0.6209455716774575 -0.7837594819621387 0.01215201417854111 0.6209455716774575 -0.7837594819621387 0.01215201417854111 -0.6209455716774575 0.7837594819621387 -0.01215201417854111 -0.6209455716774575 0.7837594819621387 -0.01215201417854111 -0.6209455716774575 0.7837594819621387 -0.01215201417854111 -0.6209455716774575 0.7837594819621387 -0.01215201417854111 -0.008762019061586612 0.003276731346295146 -0.9999562440695337 -0.008762019061585394 0.003276731346298098 -0.9999562440695335 0.008762019061585394 -0.003276731346298098 0.9999562440695335 0.008762019061586612 -0.003276731346295146 0.9999562440695337 -0.620944173995535 0.7837576821366687 -0.01233809032060095 -0.620944173995535 0.7837576821366687 -0.01233809032060095 -0.620944173995535 0.7837576821366687 -0.01233809032060095 -0.620944173995535 0.7837576821366687 -0.01233809032060095 0.620944173995535 -0.7837576821366687 0.01233809032060095 0.620944173995535 -0.7837576821366687 0.01233809032060095 0.620944173995535 -0.7837576821366687 0.01233809032060095 0.620944173995535 -0.7837576821366687 0.01233809032060095 0.008761980451224768 -0.003276715449234722 0.9999562444599449 0.008761980451224227 -0.003276715449236038 0.9999562444599449 -0.008761980451224227 0.003276715449236038 -0.9999562444599449 -0.008761980451224768 0.003276715449234722 -0.9999562444599449 -0.9928232977983861 -0.1190730491495417 0.01111342948725612 -0.9928232977983861 -0.1190730491495417 0.01111342948725612 -0.9928232977983861 -0.1190730491495417 0.01111342948725612 -0.9928232977983861 -0.1190730491495417 0.01111342948725612 0.9928232977983861 0.1190730491495417 -0.01111342948725612 0.9928232977983861 0.1190730491495417 -0.01111342948725612 0.9928232977983861 0.1190730491495417 -0.01111342948725612 0.9928232977983861 0.1190730491495417 -0.01111342948725612 -0.00658214728585526 0.008570787049458755 -0.9999416067683453 -0.00658214728585526 0.008570787049458755 -0.9999416067683453 0.00658214728585526 -0.008570787049458755 0.9999416067683453 0.00658214728585526 -0.008570787049458755 0.9999416067683453 0.9928212427395916 0.1190726714545584 -0.01129950785157825 0.9928212427395916 0.1190726714545584 -0.01129950785157825 0.9928212427395916 0.1190726714545584 -0.01129950785157825 0.9928212427395916 0.1190726714545584 -0.01129950785157825 -0.9928212427395916 -0.1190726714545584 0.01129950785157825 -0.9928212427395916 -0.1190726714545584 0.01129950785157825 -0.9928212427395916 -0.1190726714545584 0.01129950785157825 -0.9928212427395916 -0.1190726714545584 0.01129950785157825 0.006582117567760453 -0.008570749559996718 0.9999416072852974 0.006582117567760453 -0.008570749559996718 0.9999416072852974 -0.006582117567760453 0.008570749559996718 -0.9999416072852974 -0.006582117567760453 0.008570749559996718 -0.9999416072852974 -0.6075350527656845 0.7942192114895502 0.01081682771953592 -0.6211668279324678 0.7836037342363259 0.01081478465813409 -0.6075350527656707 0.7942192114895609 0.01081682771953592 -0.6211668279324678 0.7836037342363259 0.01081478465813409 0.6211668279324678 -0.7836037342363259 -0.01081478465813409 0.6075350527656845 -0.7942192114895502 -0.01081682771953592 0.6211668279324678 -0.7836037342363259 -0.01081478465813409 0.6075350527656707 -0.7942192114895609 -0.01081682771953592 -0.006509991061553961 0.008625982656072255 -0.9999416045147814 0.0004112504251189242 0.01373325896302059 -0.9999056097809146 0.000411250425123406 0.01373325896302389 -0.9999056097809146 -0.006509991061553961 0.008625982656072255 -0.9999416045147814 0.006509991061553961 -0.008625982656072255 0.9999416045147814 0.006509991061553961 -0.008625982656072255 0.9999416045147814 -0.0004112504251189242 -0.01373325896302059 0.9999056097809146 -0.000411250425123406 -0.01373325896302389 0.9999056097809146 0.6211655912134032 -0.7836021243531669 -0.01100086368007821 0.6075338227463253 -0.7942175959088574 -0.01100293451729795 0.6075338227463106 -0.7942175959088685 -0.01100293451729795 0.6211655912134032 -0.7836021243531669 -0.01100086368007821 -0.6211655912134032 0.7836021243531669 0.01100086368007821 -0.6211655912134032 0.7836021243531669 0.01100086368007821 -0.6075338227463253 0.7942175959088574 0.01100293451729795 -0.6075338227463106 0.7942175959088685 0.01100293451729795 -0.000411264636264075 -0.01373323977448964 0.9999056100386153 0.006509962656490245 -0.00862594416221632 0.9999416050317747 -0.0004112646362611553 -0.01373323977448748 0.9999056100386152 0.006509962656490245 -0.00862594416221632 0.9999416050317747 -0.006509962656490245 0.00862594416221632 -0.9999416050317747 0.000411264636264075 0.01373323977448964 -0.9999056100386153 -0.006509962656490245 0.00862594416221632 -0.9999416050317747 0.0004112646362611553 0.01373323977448748 -0.9999056100386152 -0.593721920089329 0.8045976034625476 0.01081564181015226 -0.593721920089329 0.8045976034625476 0.01081564181015226 0.593721920089329 -0.8045976034625476 -0.01081564181015226 0.593721920089329 -0.8045976034625476 -0.01081564181015226 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 0.007332461483726658 0.0188395191578064 -0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 -0.007332461483726658 -0.0188395191578064 0.9997956328802864 0.5937206973212429 -0.8045959829076451 -0.01100172083165112 0.5937206973212429 -0.8045959829076451 -0.01100172083165112 -0.5937206973212429 0.8045959829076451 0.01100172083165112 -0.5937206973212429 0.8045959829076451 0.01100172083165112 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 -0.007332461499894041 -0.0188395192760046 0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 0.007332461499894041 0.0188395192760046 -0.9997956328779405 -0.5937959272493161 0.8045429979530352 0.01081486138919677 -0.5937959272493161 0.8045429979530352 0.01081486138919677 -0.5937959272493161 0.8045429979530352 0.01081486138919677 -0.5937959272493161 0.8045429979530352 0.01081486138919677 0.5937959272493161 -0.8045429979530352 -0.01081486138919677 0.5937959272493161 -0.8045429979530352 -0.01081486138919677 0.5937959272493161 -0.8045429979530352 -0.01081486138919677 0.5937959272493161 -0.8045429979530352 -0.01081486138919677 0.3625814702928781 0.9317325815146003 0.02022557649101637 0.3625814702928781 0.9317325815146003 0.02022557649101637 0.3625814702928781 0.9317325815146003 0.02022557649101637 0.3625814702928781 0.9317325815146003 0.02022557649101637 -0.3625814702928781 -0.9317325815146003 -0.02022557649101637 -0.3625814702928781 -0.9317325815146003 -0.02022557649101637 -0.3625814702928781 -0.9317325815146003 -0.02022557649101637 -0.3625814702928781 -0.9317325815146003 -0.02022557649101637 0.5937972804245302 -0.8045394767618097 -0.01100091324689856 0.5937972804245302 -0.8045394767618097 -0.01100091324689856 0.5937972804245302 -0.8045394767618097 -0.01100091324689856 0.5937972804245302 -0.8045394767618097 -0.01100091324689856 -0.5937972804245302 0.8045394767618097 0.01100091324689856 -0.5937972804245302 0.8045394767618097 0.01100091324689856 -0.5937972804245302 0.8045394767618097 0.01100091324689856 -0.5937972804245302 0.8045394767618097 0.01100091324689856 -0.3625800988802947 -0.9317290578979673 -0.02041162816930579 -0.3625800988802947 -0.9317290578979673 -0.02041162816930579 -0.3625800988802947 -0.9317290578979673 -0.02041162816930579 -0.3625800988802947 -0.9317290578979673 -0.02041162816930579 0.3625800988802947 0.9317290578979673 0.02041162816930579 0.3625800988802947 0.9317290578979673 0.02041162816930579 0.3625800988802947 0.9317290578979673 0.02041162816930579 0.3625800988802947 0.9317290578979673 0.02041162816930579 -0.5937955203901625 0.8045460268111923 0.01060993434949057 -0.5937955203901625 0.8045460268111923 0.01060993434949057 -0.5937955203901625 0.8045460268111923 0.01060993434949057 -0.5937955203901625 0.8045460268111923 0.01060993434949057 0.5937955203901625 -0.8045460268111923 -0.01060993434949057 0.5937955203901625 -0.8045460268111923 -0.01060993434949057 0.5937955203901625 -0.8045460268111923 -0.01060993434949057 0.5937955203901625 -0.8045460268111923 -0.01060993434949057 -0.3625794060710079 -0.9317293279740857 -0.02041160665293791 -0.3625794060710079 -0.9317293279740857 -0.02041160665293791 -0.3625794060710079 -0.9317293279740857 -0.02041160665293791 -0.3625794060710079 -0.9317293279740857 -0.02041160665293791 0.3625794060710079 0.9317293279740857 0.02041160665293791 0.3625794060710079 0.9317293279740857 0.02041160665293791 0.3625794060710079 0.9317293279740857 0.02041160665293791 0.3625794060710079 0.9317293279740857 0.02041160665293791 0.9929056954866894 0.1185386716695366 0.009320042323699604 0.9929056954866894 0.1185386716695366 0.009320042323699604 0.9929056954866894 0.1185386716695366 0.009320042323699604 0.9929056954866894 0.1185386716695366 0.009320042323699604 -0.9929056954866894 -0.1185386716695366 -0.009320042323699604 -0.9929056954866894 -0.1185386716695366 -0.009320042323699604 -0.9929056954866894 -0.1185386716695366 -0.009320042323699604 -0.9929056954866894 -0.1185386716695366 -0.009320042323699604 -0.3625800991746346 -0.9317290586547066 -0.02041158839793674 -0.3625800991746346 -0.9317290586547066 -0.02041158839793674 -0.3625800991746346 -0.9317290586547066 -0.02041158839793674 -0.3625800991746346 -0.9317290586547066 -0.02041158839793674 0.3625800991746346 0.9317290586547066 0.02041158839793674 0.3625800991746346 0.9317290586547066 0.02041158839793674 0.3625800991746346 0.9317290586547066 0.02041158839793674 0.3625800991746346 0.9317290586547066 0.02041158839793674 -0.9929026963755123 -0.1185324109340483 -0.009710977726230453 -0.9929026963755123 -0.1185324109340483 -0.009710977726230453 -0.9929026963755123 -0.1185324109340483 -0.009710977726230453 -0.9929026963755123 -0.1185324109340483 -0.009710977726230453 0.9929026963755123 0.1185324109340483 0.009710977726230453 0.9929026963755123 0.1185324109340483 0.009710977726230453 0.9929026963755123 0.1185324109340483 0.009710977726230453 0.9929026963755123 0.1185324109340483 0.009710977726230453 -0.1186911392894986 0.9927710038881951 0.01783668391227684 -0.1186911392894986 0.9927710038881951 0.01783668391227684 -0.1186911392894986 0.9927710038881951 0.01783668391227684 -0.1186911392894986 0.9927710038881951 0.01783668391227684 0.1186911392894986 -0.9927710038881951 -0.01783668391227684 0.1186911392894986 -0.9927710038881951 -0.01783668391227684 0.1186911392894986 -0.9927710038881951 -0.01783668391227684 0.1186911392894986 -0.9927710038881951 -0.01783668391227684 0.9929040798004067 0.1185359190430526 0.009524925843635162 0.9929040798004067 0.1185359190430526 0.009524925843635162 0.9929040798004067 0.1185359190430526 0.009524925843635162 0.9929040798004067 0.1185359190430526 0.009524925843635162 -0.9929040798004067 -0.1185359190430526 -0.009524925843635162 -0.9929040798004067 -0.1185359190430526 -0.009524925843635162 -0.9929040798004067 -0.1185359190430526 -0.009524925843635162 -0.9929040798004067 -0.1185359190430526 -0.009524925843635162 0.3625814705846928 0.9317325822643823 0.02022553671939963 0.3625814705846928 0.9317325822643823 0.02022553671939963 0.3625814705846928 0.9317325822643823 0.02022553671939963 0.3625814705846928 0.9317325822643823 0.02022553671939963 -0.3625814705846928 -0.9317325822643823 -0.02022553671939963 -0.3625814705846928 -0.9317325822643823 -0.02022553671939963 -0.3625814705846928 -0.9317325822643823 -0.02022553671939963 -0.3625814705846928 -0.9317325822643823 -0.02022553671939963 -0.992904349921512 -0.1185351680851851 -0.00950609456911552 -0.992904349921512 -0.1185351680851851 -0.00950609456911552 -0.992904349921512 -0.1185351680851851 -0.00950609456911552 -0.992904349921512 -0.1185351680851851 -0.00950609456911552 0.992904349921512 0.1185351680851851 0.00950609456911552 0.992904349921512 0.1185351680851851 0.00950609456911552 0.992904349921512 0.1185351680851851 0.00950609456911552 0.992904349921512 0.1185351680851851 0.00950609456911552 0.3625807774841838 0.9317328515861947 0.02022555497441153 0.3625807774841838 0.9317328515861947 0.02022555497441153 0.3625807774841838 0.9317328515861947 0.02022555497441153 0.3625807774841838 0.9317328515861947 0.02022555497441153 -0.3625807774841838 -0.9317328515861947 -0.02022555497441153 -0.3625807774841838 -0.9317328515861947 -0.02022555497441153 -0.3625807774841838 -0.9317328515861947 -0.02022555497441153 -0.3625807774841838 -0.9317328515861947 -0.02022555497441153 0.5937968962118208 -0.8045425363037807 -0.0107959866194776 0.5937968962118208 -0.8045425363037807 -0.0107959866194776 0.5937968962118208 -0.8045425363037807 -0.0107959866194776 0.5937968962118208 -0.8045425363037807 -0.0107959866194776 -0.5937968962118208 0.8045425363037807 0.0107959866194776 -0.5937968962118208 0.8045425363037807 0.0107959866194776 -0.5937968962118208 0.8045425363037807 0.0107959866194776 -0.5937968962118208 0.8045425363037807 0.0107959866194776</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"486\" source=\"#ID5573\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5571\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5569\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5570\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"296\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5571\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 9 11 12 12 11 13 14 15 16 15 14 17 17 14 12 17 12 13 18 19 20 19 21 20 20 21 22 23 22 21 18 24 19 19 24 25 24 26 25 27 25 26 28 29 30 29 28 31 32 33 34 35 34 33 36 37 38 37 36 39 40 41 42 41 40 43 43 40 39 43 39 44 44 39 36 45 46 47 47 46 48 46 49 48 48 49 50 51 50 49 46 45 52 53 52 45 54 55 56 55 54 57 58 59 60 61 60 59 62 63 64 63 62 65 66 67 68 69 68 67 70 71 72 71 70 73 74 75 76 77 76 75 78 79 80 79 78 81 81 78 82 83 84 85 85 84 86 87 86 84 88 89 90 89 88 91 92 93 94 95 94 93 96 97 98 99 100 101 102 103 104 103 102 105 106 107 108 109 108 107 110 111 112 111 110 113 114 115 116 117 116 115 118 119 120 119 118 121 122 123 124 125 124 123 126 127 128 129 130 131 126 127 128 129 130 131 132 133 134 133 132 135 136 137 138 139 138 137 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 146 148 149 151 165 166 167 168 167 166 169 170 171 172 173 172 171 174 175 176 175 174 177 178 179 180 181 180 179 182 183 184 183 182 185 186 187 188 189 188 187 190 191 192 191 190 193 194 195 196 197 196 195 198 199 200 199 198 201 202 203 204 205 204 203 169 206 167 206 169 207 208 170 209 172 209 170 210 211 212 211 210 213 214 215 216 217 216 215 218 193 190 193 218 219 220 221 194 195 194 221 222 223 224 223 222 225 226 227 228 229 228 227 207 230 206 230 207 231 232 208 233 209 233 208 234 235 236 235 234 237 238 239 240 241 240 239 242 219 218 219 242 243 244 245 220 221 220 245 246 247 248 247 246 249 250 251 252 253 252 251 230 254 255 254 230 231 232 233 256 257 256 233 258 259 260 259 258 261 262 263 264 265 264 263 266 242 267 242 266 243 244 268 245 269 245 268 270 271 272 271 270 273 274 275 276 277 276 275 278 279 280 279 278 281 282 283 284 285 284 283 286 287 288 287 286 289 290 291 292 293 292 291 294 295 296 295 294 297 298 299 300 301 300 299 302 270 272 270 302 303 304 305 275 277 275 305 306 307 308 307 306 309 307 309 280 307 280 279 310 311 312 311 310 313 313 306 308 306 313 310 311 314 312 314 311 315 316 317 318 317 316 319 317 319 315 315 319 314 320 321 322 322 321 323 321 324 323 325 323 324 322 326 320 327 320 326 328 329 330 331 330 329 329 328 326 327 326 328 284 285 332 285 333 332 333 330 332 331 332 330 287 334 288 334 287 335 336 292 337 293 337 292 338 339 340 339 338 341 341 338 342 341 342 343 343 344 345 344 343 342 346 347 348 347 346 349 349 346 296 296 346 294 347 350 348 350 347 351 344 351 345 351 344 350 352 353 354 355 354 353 354 356 352 357 352 356 299 358 301 301 358 359 359 358 356 357 356 358 360 361 353 355 353 361 361 360 362 360 363 362 362 363 364 365 364 363 366 367 368 367 366 369 370 371 372 373 372 371 374 375 376 375 374 377 378 379 380 381 380 379 382 383 384 383 382 385 386 387 388 389 388 387 390 391 392 391 390 393 394 395 396 397 396 395 398 399 400 399 398 401 402 403 404 405 404 403 406 407 408 407 406 409 410 411 412 413 412 411 414 415 416 415 414 417 418 419 420 421 420 419 422 423 424 423 422 425 426 427 428 429 428 427 430 431 432 431 430 433 434 435 436 437 436 435 438 439 440 439 438 441 442 443 444 445 444 443 446 447 448 447 446 449 450 451 452 453 452 451 454 455 456 455 454 457 458 459 460 461 460 459 462 463 464 463 462 465 466 467 468 469 468 467 470 471 472 471 470 473 474 475 476 477 476 475 478 479 480 479 478 481 482 483 484 485 484 483</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5574\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5575\">\r\n\t\t\t\t\t<float_array count=\"1530\" id=\"ID5578\">4765.328549149273 1480.393401432046 272.2438216685067 4554.369762616932 1559.611522669382 268.6610794782058 4765.32837260379 1480.392937601136 268.6609399925789 4554.369939162409 1559.611986500291 272.2439611541335 4554.369939162409 1559.611986500291 272.2439611541335 4765.328549149273 1480.393401432046 272.2438216685067 4554.369762616932 1559.611522669382 268.6610794782058 4765.32837260379 1480.392937601136 268.6609399925789 4554.369939162409 1559.611986500291 272.2439611541335 4555.570462475887 1562.808979088287 268.6606063793416 4554.369762616932 1559.611522669382 268.6610794782058 4555.570639021366 1562.809442919195 272.2434880552698 4555.570639021366 1562.809442919195 272.2434880552698 4554.369939162409 1559.611986500291 272.2439611541335 4555.570462475887 1562.808979088287 268.6606063793416 4554.369762616932 1559.611522669382 268.6610794782058 4555.570462475887 1562.808979088287 268.6606063793416 4765.32837260379 1480.392937601136 268.6609399925789 4554.369762616932 1559.611522669382 268.6610794782058 4555.739596530927 1562.837671536356 268.6605943308563 4768.552732419082 1482.922680107252 268.6604536190183 4778.119913795999 1373.366096153945 268.6741651204935 4782.279833690454 1368.068006286115 268.6746460190959 4571.050219364801 1450.948496198614 268.6742903027479 4584.073681242759 1442.316150810172 268.6747694078608 4569.817222169484 1447.657590628287 268.674775786583 4584.078073752514 1442.327874546331 268.6747679316039 4782.279833690454 1368.068006286115 268.6746460190959 4778.119913795999 1373.366096153945 268.6741651204935 4584.078073752514 1442.327874546331 268.6747679316039 4571.050219364801 1450.948496198614 268.6742903027479 4584.073681242759 1442.316150810172 268.6747694078608 4569.817222169484 1447.657590628287 268.674775786583 4768.552732419082 1482.922680107252 268.6604536190183 4765.32837260379 1480.392937601136 268.6609399925789 4555.739596530927 1562.837671536356 268.6605943308563 4555.570462475887 1562.808979088287 268.6606063793416 4554.369762616932 1559.611522669382 268.6610794782058 4778.120090454588 1373.366559038509 272.2570467965381 4765.32837260379 1480.392937601136 268.6609399925789 4778.119913795999 1373.366096153945 268.6741651204935 4765.328549149273 1480.393401432046 272.2438216685067 4765.328549149273 1480.393401432046 272.2438216685067 4778.120090454588 1373.366559038509 272.2570467965381 4765.32837260379 1480.392937601136 268.6609399925789 4778.119913795999 1373.366096153945 268.6741651204935 4782.275617839286 1368.056745434518 272.2575291713975 4571.050396428631 1450.948964938535 272.2567845433481 4569.817397250361 1447.658054075351 272.2574635599746 4778.120090454588 1373.366559038509 272.2570467965381 4765.328549149273 1480.393401432046 272.2438216685067 4555.570639021366 1562.809442919195 272.2434880552698 4554.369939162409 1559.611986500291 272.2439611541335 4555.739773076403 1562.838135367266 272.2434760067844 4768.552908964555 1482.923143938161 272.2433352949469 4782.280010349034 1368.068469170679 272.2575276951411 4782.275617839286 1368.056745434518 272.2575291713975 4778.120090454588 1373.366559038509 272.2570467965381 4782.280010349034 1368.068469170679 272.2575276951411 4768.552908964555 1482.923143938161 272.2433352949469 4765.328549149273 1480.393401432046 272.2438216685067 4555.739773076403 1562.838135367266 272.2434760067844 4555.570639021366 1562.809442919195 272.2434880552698 4554.369939162409 1559.611986500291 272.2439611541335 4571.050396428631 1450.948964938535 272.2567845433481 4569.817397250361 1447.658054075351 272.2574635599746 4555.570462475887 1562.808979088287 268.6606063793416 4555.739773076403 1562.838135367266 272.2434760067844 4555.739596530927 1562.837671536356 268.6605943308563 4555.570639021366 1562.809442919195 272.2434880552698 4555.570639021366 1562.809442919195 272.2434880552698 4555.570462475887 1562.808979088287 268.6606063793416 4555.739773076403 1562.838135367266 272.2434760067844 4555.739596530927 1562.837671536356 268.6605943308563 4782.280010349034 1368.068469170679 272.2575276951411 4584.078073752514 1442.327874546331 268.6747679316039 4782.279833690454 1368.068006286115 268.6746460190959 4584.078085968357 1442.32790630489 268.9208623836137 4584.078085968357 1442.32790630489 268.9208623836137 4782.280010349034 1368.068469170679 272.2575276951411 4584.078073752514 1442.327874546331 268.6747679316039 4782.279833690454 1368.068006286115 268.6746460190959 4584.078073752514 1442.327874546331 268.6747679316039 4584.07369345861 1442.316182568728 268.9208638598701 4584.073681242759 1442.316150810172 268.6747694078608 4584.078085968357 1442.32790630489 268.9208623836137 4584.078085968357 1442.32790630489 268.9208623836137 4584.078073752514 1442.327874546331 268.6747679316039 4584.07369345861 1442.316182568728 268.9208638598701 4584.073681242759 1442.316150810172 268.6747694078608 4584.07369345861 1442.316182568728 268.9208638598701 4569.817222169484 1447.657590628287 268.674775786583 4584.073681242759 1442.316150810172 268.6747694078608 4569.817397250361 1447.658054075351 272.2574635599746 4584.073651442715 1442.316536108721 268.9245253074533 4782.275617839286 1368.056745434518 272.2575291713975 4782.275617839286 1368.056745434518 272.2575291713975 4584.073651442715 1442.316536108721 268.9245253074533 4569.817397250361 1447.658054075351 272.2574635599746 4584.07369345861 1442.316182568728 268.9208638598701 4569.817222169484 1447.657590628287 268.674775786583 4584.073681242759 1442.316150810172 268.6747694078608 4571.050219364801 1450.948496198614 268.6742903027479 4569.817222169484 1447.657590628287 268.674775786583 4565.455851297563 1453.365167479522 268.7784027256932 4565.455851297563 1453.365167479522 268.7784027256932 4569.817222169484 1447.657590628287 268.674775786583 4571.050219364801 1450.948496198614 268.6742903027479 4569.817397250361 1447.658054075351 272.2574635599746 4571.050219364801 1450.948496198614 268.6742903027479 4569.817222169484 1447.657590628287 268.674775786583 4571.050396428631 1450.948964938535 272.2567845433481 4571.050396428631 1450.948964938535 272.2567845433481 4569.817397250361 1447.658054075351 272.2574635599746 4571.050219364801 1450.948496198614 268.6742903027479 4569.817222169484 1447.657590628287 268.674775786583 4571.050219364801 1450.948496198614 268.6742903027479 4778.120090454588 1373.366559038509 272.2570467965381 4778.119913795999 1373.366096153945 268.6741651204935 4571.050396428631 1450.948964938535 272.2567845433481 4571.050396428631 1450.948964938535 272.2567845433481 4571.050219364801 1450.948496198614 268.6742903027479 4778.120090454588 1373.366559038509 272.2570467965381 4778.119913795999 1373.366096153945 268.6741651204935 4555.739596530927 1562.837671536356 268.6605943308563 4555.570462475887 1562.808979088287 268.6606063793416 4555.600807993927 1562.889789018192 268.6605944226232 4555.600807993927 1562.889789018192 268.6605944226232 4555.570462475887 1562.808979088287 268.6606063793416 4555.739596530927 1562.837671536356 268.6605943308563 4555.739596530927 1562.837671536356 268.6605943308563 4768.552908964555 1482.923143938161 272.2433352949469 4768.552732419082 1482.922680107252 268.6604536190183 4555.739773076403 1562.838135367266 272.2434760067844 4555.739773076403 1562.838135367266 272.2434760067844 4555.739596530927 1562.837671536356 268.6605943308563 4768.552908964555 1482.923143938161 272.2433352949469 4768.552732419082 1482.922680107252 268.6604536190183 4768.552732419082 1482.922680107252 268.6604536190183 4782.280010349034 1368.068469170679 272.2575276951411 4782.279833690454 1368.068006286115 268.6746460190959 4768.552908964555 1482.923143938161 272.2433352949469 4768.552908964555 1482.923143938161 272.2433352949469 4768.552732419082 1482.922680107252 268.6604536190183 4782.280010349034 1368.068469170679 272.2575276951411 4782.279833690454 1368.068006286115 268.6746460190959 4571.050396428631 1450.948964938535 272.2567845433481 4565.49947700413 1453.370321266675 272.3214374758884 4569.817397250361 1447.658054075351 272.2574635599746 4569.817397250361 1447.658054075351 272.2574635599746 4565.49947700413 1453.370321266675 272.3214374758884 4571.050396428631 1450.948964938535 272.2567845433481 4584.078043952467 1442.32825984488 268.924523831197 4782.275617839286 1368.056745434518 272.2575291713975 4584.073651442715 1442.316536108721 268.9245253074533 4782.280010349034 1368.068469170679 272.2575276951411 4782.280010349034 1368.068469170679 272.2575276951411 4584.078043952467 1442.32825984488 268.924523831197 4782.275617839286 1368.056745434518 272.2575291713975 4584.073651442715 1442.316536108721 268.9245253074533 4555.739773076403 1562.838135367266 272.2434760067844 4555.600984539408 1562.890252849103 272.2434760985508 4555.570639021366 1562.809442919195 272.2434880552698 4555.570639021366 1562.809442919195 272.2434880552698 4555.600984539408 1562.890252849103 272.2434760985508 4555.739773076403 1562.838135367266 272.2434760067844 4555.600807993927 1562.889789018192 268.6605944226232 4555.739773076403 1562.838135367266 272.2434760067844 4555.739596530927 1562.837671536356 268.6605943308563 4555.600984539408 1562.890252849103 272.2434760985508 4555.600984539408 1562.890252849103 272.2434760985508 4555.600807993927 1562.889789018192 268.6605944226232 4555.739773076403 1562.838135367266 272.2434760067844 4555.739596530927 1562.837671536356 268.6605943308563 4782.280010349034 1368.068469170679 272.2575276951411 4584.078043952467 1442.32825984488 268.924523831197 4584.078043952467 1442.32825984488 268.924523831197 4782.280010349034 1368.068469170679 272.2575276951411 4584.073651442715 1442.316536108721 268.9245253074533 4584.078043952467 1442.32825984488 268.924523831197 4584.078043952467 1442.32825984488 268.924523831197 4584.073651442715 1442.316536108721 268.9245253074533 4569.817222169484 1447.657590628287 268.674775786583 4569.724165920066 1447.513931116673 268.7343915611565 4565.455851297563 1453.365167479522 268.7784027256932 4565.455851297563 1453.365167479522 268.7784027256932 4569.724165920066 1447.513931116673 268.7343915611565 4569.817222169484 1447.657590628287 268.674775786583 4571.050396428631 1450.948964938535 272.2567845433481 4571.050219364801 1450.948496198614 268.6742903027479 4565.455851297563 1453.365167479522 268.7784027256932 4565.455851297563 1453.365167479522 268.7784027256932 4571.050219364801 1450.948496198614 268.6742903027479 4571.050396428631 1450.948964938535 272.2567845433481 4569.767758245896 1447.519080910018 272.2774267278628 4569.767758245896 1447.519080910018 272.2774267278628 4565.49947700413 1453.370321266675 272.3214374758884 4565.49947700413 1453.370321266675 272.3214374758884 4565.455851297563 1453.365167479522 268.7784027256932 4569.767758245896 1447.519080910018 272.2774267278628 4569.724165920066 1447.513931116673 268.7343915611565 4565.49947700413 1453.370321266675 272.3214374758884 4565.49947700413 1453.370321266675 272.3214374758884 4565.455851297563 1453.365167479522 268.7784027256932 4569.767758245896 1447.519080910018 272.2774267278628 4569.724165920066 1447.513931116673 268.7343915611565 4569.724165920066 1447.513931116673 268.7343915611565 4622.171713518605 979.3261339201304 268.7696042566294 4565.455851297563 1453.365167479522 268.7784027256932 4624.93648926456 986.0358507459889 268.7258346485233 4624.93648926456 986.0358507459889 268.7258346485233 4569.724165920066 1447.513931116673 268.7343915611565 4622.171713518605 979.3261339201304 268.7696042566294 4565.455851297563 1453.365167479522 268.7784027256932 4622.20612178173 979.4083283764637 272.3126404367499 4569.767758245896 1447.519080910018 272.2774267278628 4565.49947700413 1453.370321266675 272.3214374758884 4624.971412135129 986.1192940811991 272.2688628513401 4624.971412135129 986.1192940811991 272.2688628513401 4622.20612178173 979.4083283764637 272.3126404367499 4569.767758245896 1447.519080910018 272.2774267278628 4565.49947700413 1453.370321266675 272.3214374758884 4622.20612178173 979.4083283764637 272.3126404367499 4565.455851297563 1453.365167479522 268.7784027256932 4622.171713518605 979.3261339201304 268.7696042566294 4565.49947700413 1453.370321266675 272.3214374758884 4565.49947700413 1453.370321266675 272.3214374758884 4622.20612178173 979.4083283764637 272.3126404367499 4565.455851297563 1453.365167479522 268.7784027256932 4622.171713518605 979.3261339201304 268.7696042566294 4569.724165920066 1447.513931116673 268.7343915611565 4624.971412135129 986.1192940811991 272.2688628513401 4624.93648926456 986.0358507459889 268.7258346485233 4569.767758245896 1447.519080910018 272.2774267278628 4569.767758245896 1447.519080910018 272.2774267278628 4569.724165920066 1447.513931116673 268.7343915611565 4624.971412135129 986.1192940811991 272.2688628513401 4624.93648926456 986.0358507459889 268.7258346485233 4807.535406677385 1126.182950385482 268.7414590267121 4810.298521374648 1132.89135122373 268.6976896708161 4810.298521374648 1132.89135122373 268.6976896708161 4807.535406677385 1126.182950385482 268.7414590267121 4807.56560840429 1126.261812158332 272.2844958455441 4810.329237399621 1132.971461630354 272.2407185123913 4810.329237399621 1132.971461630354 272.2407185123913 4807.56560840429 1126.261812158332 272.2844958455441 4807.56560840429 1126.261812158332 272.2844958455441 4622.171713518605 979.3261339201304 268.7696042566294 4807.535406677385 1126.182950385482 268.7414590267121 4622.20612178173 979.4083283764637 272.3126404367499 4622.20612178173 979.4083283764637 272.3126404367499 4807.56560840429 1126.261812158332 272.2844958455441 4622.171713518605 979.3261339201304 268.7696042566294 4807.535406677385 1126.182950385482 268.7414590267121 4624.93648926456 986.0358507459889 268.7258346485233 4810.329237399621 1132.971461630354 272.2407185123913 4810.298521374648 1132.89135122373 268.6976896708161 4624.971412135129 986.1192940811991 272.2688628513401 4624.971412135129 986.1192940811991 272.2688628513401 4624.93648926456 986.0358507459889 268.7258346485233 4810.329237399621 1132.971461630354 272.2407185123913 4810.298521374648 1132.89135122373 268.6976896708161 4820.227987230326 1020.360007996176 268.816077025336 4823.981059061965 1018.81475416091 268.7781274962102 4823.981059061965 1018.81475416091 268.7781274962102 4820.227987230326 1020.360007996176 268.816077025336 4820.269560179488 1020.344063500646 272.359180694076 4824.023330569784 1018.798522047591 272.3212242709374 4824.023330569784 1018.798522047591 272.3212242709374 4820.269560179488 1020.344063500646 272.359180694076 4807.56560840429 1126.261812158332 272.2844958455441 4820.227987230326 1020.360007996176 268.816077025336 4820.269560179488 1020.344063500646 272.359180694076 4807.535406677385 1126.182950385482 268.7414590267121 4807.535406677385 1126.182950385482 268.7414590267121 4807.56560840429 1126.261812158332 272.2844958455441 4820.227987230326 1020.360007996176 268.816077025336 4820.269560179488 1020.344063500646 272.359180694076 4823.981059061965 1018.81475416091 268.7781274962102 4810.329237399621 1132.971461630354 272.2407185123913 4824.023330569784 1018.798522047591 272.3212242709374 4810.298521374648 1132.89135122373 268.6976896708161 4810.298521374648 1132.89135122373 268.6976896708161 4823.981059061965 1018.81475416091 268.7781274962102 4810.329237399621 1132.971461630354 272.2407185123913 4824.023330569784 1018.798522047591 272.3212242709374 4641.504008663079 874.1647641913262 268.73945179909 4639.351457270235 876.978754368572 268.7777405557708 4641.504008663079 874.1647641913262 268.73945179909 4639.351457270235 876.978754368572 268.7777405557708 4641.527626066169 874.133744925015 272.2825446201108 4639.374674019316 876.9482588697651 272.3208403339457 4641.527626066169 874.133744925015 272.2825446201108 4639.374674019316 876.9482588697651 272.3208403339457 4639.374674019316 876.9482588697651 272.3208403339457 4820.227987230326 1020.360007996176 268.816077025336 4639.351457270235 876.978754368572 268.7777405557708 4820.269560179488 1020.344063500646 272.359180694076 4820.269560179488 1020.344063500646 272.359180694076 4639.374674019316 876.9482588697651 272.3208403339457 4820.227987230326 1020.360007996176 268.816077025336 4639.351457270235 876.978754368572 268.7777405557708 4823.981059061965 1018.81475416091 268.7781274962102 4641.527626066169 874.133744925015 272.2825446201108 4641.504008663079 874.1647641913262 268.73945179909 4824.023330569784 1018.798522047591 272.3212242709374 4824.023330569784 1018.798522047591 272.3212242709374 4823.981059061965 1018.81475416091 268.7781274962102 4641.527626066169 874.133744925015 272.2825446201108 4641.504008663079 874.1647641913262 268.73945179909 4639.351457270235 876.978754368572 268.7777405557708 4079.215678752046 459.2445781736017 268.8208542261181 4077.112251663278 462.0948178411934 268.8591358710775 4641.504008663079 874.1647641913262 268.73945179909 4641.504008663079 874.1647641913262 268.73945179909 4639.351457270235 876.978754368572 268.7777405557708 4079.215678752046 459.2445781736017 268.8208542261181 4077.112251663278 462.0948178411934 268.8591358710775 4079.214632039079 459.1953589214895 272.3639506177604 4639.374674019316 876.9482588697651 272.3208403339457 4077.110813440954 462.0461291045476 272.4022392185503 4641.527626066169 874.133744925015 272.2825446201108 4641.527626066169 874.133744925015 272.2825446201108 4079.214632039079 459.1953589214895 272.3639506177604 4639.374674019316 876.9482588697651 272.3208403339457 4077.110813440954 462.0461291045476 272.4022392185503 4077.112251663278 462.0948178411934 268.8591358710775 4077.110813440954 462.0461291045476 272.4022392185503 4077.110813440954 462.0461291045476 272.4022392185503 4077.112251663278 462.0948178411934 268.8591358710775 4079.215678752046 459.2445781736017 268.8208542261181 4079.214632039079 459.1953589214895 272.3639506177604 4079.214632039079 459.1953589214895 272.3639506177604 4079.215678752046 459.2445781736017 268.8208542261181 3787.25347735966 363.9213032526093 264.8834025808136 3890.434736927004 319.9679970445668 264.8119011534769 3779.97463945244 362.9532782454903 264.8117790582517 3889.900966733033 323.9762796996515 264.8835160405033 3979.0592796134 505.4299379586437 268.9565994050086 3526.267090304799 677.8319755123939 268.8844704938863 3522.048839070757 683.2740603932991 268.9560810733835 3971.780437152798 504.4619095921712 268.8849757857497 3549.151299165202 456.5781929514969 264.8831392741972 3553.369550989874 451.136103130325 264.8115286059415 3418.644116629127 724.5925712216902 268.9763010581491 3442.616957181415 494.2352085782475 264.8114060807998 3415.126693296128 724.1726498894423 268.9425918670598 3445.882116575892 496.7651469259986 264.8830250279232 3549.151299165202 456.5781929514969 264.8831392741972 3445.882116575892 496.7651469259986 264.8830250279232 3553.369550989874 451.136103130325 264.8115286059415 3442.616957181415 494.2352085782475 264.8114060807998 3418.644116629127 724.5925712216902 268.9763010581491 3415.126693296128 724.1726498894423 268.9425918670598 3526.267090304799 677.8319755123939 268.8844704938863 3522.048839070757 683.2740603932991 268.9560810733835 3979.0592796134 505.4299379586437 268.9565994050086 3971.780437152798 504.4619095921712 268.8849757857497 3787.25347735966 363.9213032526093 264.8834025808136 3779.97463945244 362.9532782454903 264.8117790582517 3890.434736927004 319.9679970445668 264.8119011534769 3889.900966733033 323.9762796996515 264.8835160405033 3442.590337616817 494.1679596957179 268.3539751830658 3418.618102439377 724.5258130468762 272.5188836772163 3415.100024409561 724.1058135517669 272.4851683813399 3445.856104754396 496.6983689423387 268.4256072910929 3553.34439472342 451.0682848088425 268.3540977098269 3549.125357759696 456.511387565623 268.4257215374453 3526.241934046933 677.7641571190793 272.4270395964811 3522.02289767395 683.2072549346731 272.4986633353244 3890.408860147101 319.9004589579433 268.3544702536884 3787.227427561413 363.8545398962913 268.4259848410911 3779.947234847893 362.8863347081526 268.3543481567734 3889.874990604095 323.9094876750994 268.4260983008628 3971.753032619949 504.3949661077334 272.4275448857945 3979.033229887707 505.3631746558497 272.4991816668263 3971.753032619949 504.3949661077334 272.4275448857945 3526.241934046933 677.7641571190793 272.4270395964811 3979.033229887707 505.3631746558497 272.4991816668263 3522.02289767395 683.2072549346731 272.4986633353244 3787.227427561413 363.8545398962913 268.4259848410911 3779.947234847893 362.8863347081526 268.3543481567734 3890.408860147101 319.9004589579433 268.3544702536884 3889.874990604095 323.9094876750994 268.4260983008628 3553.34439472342 451.0682848088425 268.3540977098269 3549.125357759696 456.511387565623 268.4257215374453 3445.856104754396 496.6983689423387 268.4256072910929 3442.590337616817 494.1679596957179 268.3539751830658 3418.618102439377 724.5258130468762 272.5188836772163 3415.100024409561 724.1058135517669 272.4851683813399 3889.874990604095 323.9094876750994 268.4260983008628 4077.112251663278 462.0948178411934 268.8591358710775 3889.900966733033 323.9762796996515 264.8835160405033 4077.110813440954 462.0461291045476 272.4022392185503 4077.110813440954 462.0461291045476 272.4022392185503 3889.874990604095 323.9094876750994 268.4260983008628 4077.112251663278 462.0948178411934 268.8591358710775 3889.900966733033 323.9762796996515 264.8835160405033 4079.215678752046 459.2445781736017 268.8208542261181 3890.408860147101 319.9004589579433 268.3544702536884 3890.434736927004 319.9679970445668 264.8119011534769 4079.214632039079 459.1953589214895 272.3639506177604 4079.214632039079 459.1953589214895 272.3639506177604 4079.215678752046 459.2445781736017 268.8208542261181 3890.408860147101 319.9004589579433 268.3544702536884 3890.434736927004 319.9679970445668 264.8119011534769 3787.227427561413 363.8545398962913 268.4259848410911 3889.900966733033 323.9762796996515 264.8835160405033 3787.25347735966 363.9213032526093 264.8834025808136 3889.874990604095 323.9094876750994 268.4260983008628 3889.874990604095 323.9094876750994 268.4260983008628 3787.227427561413 363.8545398962913 268.4259848410911 3889.900966733033 323.9762796996515 264.8835160405033 3787.25347735966 363.9213032526093 264.8834025808136 3890.434736927004 319.9679970445668 264.8119011534769 3779.947234847893 362.8863347081526 268.3543481567734 3779.97463945244 362.9532782454903 264.8117790582517 3890.408860147101 319.9004589579433 268.3544702536884 3890.408860147101 319.9004589579433 268.3544702536884 3890.434736927004 319.9679970445668 264.8119011534769 3779.947234847893 362.8863347081526 268.3543481567734 3779.97463945244 362.9532782454903 264.8117790582517 3779.947234847893 362.8863347081526 268.3543481567734 3971.780437152798 504.4619095921712 268.8849757857497 3779.97463945244 362.9532782454903 264.8117790582517 3971.753032619949 504.3949661077334 272.4275448857945 3971.753032619949 504.3949661077334 272.4275448857945 3779.947234847893 362.8863347081526 268.3543481567734 3971.780437152798 504.4619095921712 268.8849757857497 3779.97463945244 362.9532782454903 264.8117790582517 3971.780437152798 504.4619095921712 268.8849757857497 3526.241934046933 677.7641571190793 272.4270395964811 3526.267090304799 677.8319755123939 268.8844704938863 3971.753032619949 504.3949661077334 272.4275448857945 3971.753032619949 504.3949661077334 272.4275448857945 3971.780437152798 504.4619095921712 268.8849757857497 3526.241934046933 677.7641571190793 272.4270395964811 3526.267090304799 677.8319755123939 268.8844704938863 3553.369550989874 451.136103130325 264.8115286059415 3526.241934046933 677.7641571190793 272.4270395964811 3553.34439472342 451.0682848088425 268.3540977098269 3526.267090304799 677.8319755123939 268.8844704938863 3526.267090304799 677.8319755123939 268.8844704938863 3553.369550989874 451.136103130325 264.8115286059415 3526.241934046933 677.7641571190793 272.4270395964811 3553.34439472342 451.0682848088425 268.3540977098269 3553.369550989874 451.136103130325 264.8115286059415 3442.590337616817 494.1679596957179 268.3539751830658 3442.616957181415 494.2352085782475 264.8114060807998 3553.34439472342 451.0682848088425 268.3540977098269 3553.34439472342 451.0682848088425 268.3540977098269 3553.369550989874 451.136103130325 264.8115286059415 3442.590337616817 494.1679596957179 268.3539751830658 3442.616957181415 494.2352085782475 264.8114060807998 3415.100024409561 724.1058135517669 272.4851683813399 3442.616957181415 494.2352085782475 264.8114060807998 3442.590337616817 494.1679596957179 268.3539751830658 3415.126693296128 724.1726498894423 268.9425918670598 3415.126693296128 724.1726498894423 268.9425918670598 3415.100024409561 724.1058135517669 272.4851683813399 3442.616957181415 494.2352085782475 264.8114060807998 3442.590337616817 494.1679596957179 268.3539751830658 3415.100024409561 724.1058135517669 272.4851683813399 3418.644116629127 724.5925712216902 268.9763010581491 3415.126693296128 724.1726498894423 268.9425918670598 3418.618102439377 724.5258130468762 272.5188836772163 3418.618102439377 724.5258130468762 272.5188836772163 3415.100024409561 724.1058135517669 272.4851683813399 3418.644116629127 724.5925712216902 268.9763010581491 3415.126693296128 724.1726498894423 268.9425918670598 3445.882116575892 496.7651469259986 264.8830250279232 3418.618102439377 724.5258130468762 272.5188836772163 3445.856104754396 496.6983689423387 268.4256072910929 3418.644116629127 724.5925712216902 268.9763010581491 3418.644116629127 724.5925712216902 268.9763010581491 3445.882116575892 496.7651469259986 264.8830250279232 3418.618102439377 724.5258130468762 272.5188836772163 3445.856104754396 496.6983689423387 268.4256072910929 3445.856104754396 496.6983689423387 268.4256072910929 3549.151299165202 456.5781929514969 264.8831392741972 3445.882116575892 496.7651469259986 264.8830250279232 3549.125357759696 456.511387565623 268.4257215374453 3549.125357759696 456.511387565623 268.4257215374453 3445.856104754396 496.6983689423387 268.4256072910929 3549.151299165202 456.5781929514969 264.8831392741972 3445.882116575892 496.7651469259986 264.8830250279232 3522.02289767395 683.2072549346731 272.4986633353244 3549.151299165202 456.5781929514969 264.8831392741972 3549.125357759696 456.511387565623 268.4257215374453 3522.048839070757 683.2740603932991 268.9560810733835 3522.048839070757 683.2740603932991 268.9560810733835 3522.02289767395 683.2072549346731 272.4986633353244 3549.151299165202 456.5781929514969 264.8831392741972 3549.125357759696 456.511387565623 268.4257215374453 3522.02289767395 683.2072549346731 272.4986633353244 3979.0592796134 505.4299379586437 268.9565994050086 3522.048839070757 683.2740603932991 268.9560810733835 3979.033229887707 505.3631746558497 272.4991816668263 3979.033229887707 505.3631746558497 272.4991816668263 3522.02289767395 683.2072549346731 272.4986633353244 3979.0592796134 505.4299379586437 268.9565994050086 3522.048839070757 683.2740603932991 268.9560810733835 3979.0592796134 505.4299379586437 268.9565994050086 3787.227427561413 363.8545398962913 268.4259848410911 3787.25347735966 363.9213032526093 264.8834025808136 3979.033229887707 505.3631746558497 272.4991816668263 3979.033229887707 505.3631746558497 272.4991816668263 3979.0592796134 505.4299379586437 268.9565994050086 3787.227427561413 363.8545398962913 268.4259848410911 3787.25347735966 363.9213032526093 264.8834025808136</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"510\" source=\"#ID5578\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5576\">\r\n\t\t\t\t\t<float_array count=\"1530\" id=\"ID5579\">-0.3515478891089467 -0.9361698897508853 0.0001385166374629845 -0.3515478891089467 -0.9361698897508853 0.0001385166374629845 -0.3515478891089467 -0.9361698897508853 0.0001385166374629845 -0.3515478891089467 -0.9361698897508853 0.0001385166374629845 0.3515478891089467 0.9361698897508853 -0.0001385166374629845 0.3515478891089467 0.9361698897508853 -0.0001385166374629845 0.3515478891089467 0.9361698897508853 -0.0001385166374629845 0.3515478891089467 0.9361698897508853 -0.0001385166374629845 -0.9361698987016326 0.3515478925617276 6.189946040627108e-007 -0.9361698987016326 0.3515478925617276 6.189946040627108e-007 -0.9361698987016326 0.3515478925617276 6.189946040627108e-007 -0.9361698987016326 0.3515478925617276 6.189946040627108e-007 0.9361698987016326 -0.3515478925617276 -6.189946040627108e-007 0.9361698987016326 -0.3515478925617276 -6.189946040627108e-007 0.9361698987016326 -0.3515478925617276 -6.189946040627108e-007 0.9361698987016326 -0.3515478925617276 -6.189946040627108e-007 -4.911000735459891e-005 -0.0001292426641006468 -0.9999999904422705 -4.911000735459891e-005 -0.0001292426641006468 -0.9999999904422705 -4.911000735459891e-005 -0.0001292426641006468 -0.9999999904422705 -4.911000735459891e-005 -0.0001292426641006468 -0.9999999904422705 -4.911000735459891e-005 -0.0001292426641006468 -0.9999999904422705 -4.911000735459891e-005 -0.0001292426641006468 -0.9999999904422705 -4.911000735459891e-005 -0.0001292426641006468 -0.9999999904422705 -4.911000735459891e-005 -0.0001292426641006468 -0.9999999904422705 -4.911000735459891e-005 -0.0001292426641006468 -0.9999999904422705 -4.911000735459891e-005 -0.0001292426641006468 -0.9999999904422705 -4.911000735459891e-005 -0.0001292426641006468 -0.9999999904422705 4.911000735459891e-005 0.0001292426641006468 0.9999999904422705 4.911000735459891e-005 0.0001292426641006468 0.9999999904422705 4.911000735459891e-005 0.0001292426641006468 0.9999999904422705 4.911000735459891e-005 0.0001292426641006468 0.9999999904422705 4.911000735459891e-005 0.0001292426641006468 0.9999999904422705 4.911000735459891e-005 0.0001292426641006468 0.9999999904422705 4.911000735459891e-005 0.0001292426641006468 0.9999999904422705 4.911000735459891e-005 0.0001292426641006468 0.9999999904422705 4.911000735459891e-005 0.0001292426641006468 0.9999999904422705 4.911000735459891e-005 0.0001292426641006468 0.9999999904422705 4.911000735459891e-005 0.0001292426641006468 0.9999999904422705 -0.9929334427660356 -0.1186725499163125 6.428956578984176e-005 -0.9929334427660356 -0.1186725499163125 6.428956578984176e-005 -0.9929334427660356 -0.1186725499163125 6.428956578984176e-005 -0.9929334427660356 -0.1186725499163125 6.428956578984176e-005 0.9929334427660356 0.1186725499163125 -6.428956578984176e-005 0.9929334427660356 0.1186725499163125 -6.428956578984176e-005 0.9929334427660356 0.1186725499163125 -6.428956578984176e-005 0.9929334427660356 0.1186725499163125 -6.428956578984176e-005 4.824026447949751e-005 0.0001281076027696308 0.9999999906306595 4.824026447949751e-005 0.0001281076027696308 0.9999999906306595 4.824026447949751e-005 0.0001281076027696308 0.9999999906306595 4.824026447949751e-005 0.0001281076027696308 0.9999999906306595 4.824026447949751e-005 0.0001281076027696308 0.9999999906306595 4.824026447949751e-005 0.0001281076027696308 0.9999999906306595 4.824026447949751e-005 0.0001281076027696308 0.9999999906306595 4.824026447949751e-005 0.0001281076027696308 0.9999999906306595 4.824026447949751e-005 0.0001281076027696308 0.9999999906306595 4.824026447949751e-005 0.0001281076027696308 0.9999999906306595 -4.824026447949751e-005 -0.0001281076027696308 -0.9999999906306595 -4.824026447949751e-005 -0.0001281076027696308 -0.9999999906306595 -4.824026447949751e-005 -0.0001281076027696308 -0.9999999906306595 -4.824026447949751e-005 -0.0001281076027696308 -0.9999999906306595 -4.824026447949751e-005 -0.0001281076027696308 -0.9999999906306595 -4.824026447949751e-005 -0.0001281076027696308 -0.9999999906306595 -4.824026447949751e-005 -0.0001281076027696308 -0.9999999906306595 -4.824026447949751e-005 -0.0001281076027696308 -0.9999999906306595 -4.824026447949751e-005 -0.0001281076027696308 -0.9999999906306595 -4.824026447949751e-005 -0.0001281076027696308 -0.9999999906306595 -0.1672536301101119 0.9859138953074975 -0.0001193925739604179 -0.1672536301101119 0.9859138953074975 -0.0001193925739604179 -0.1672536301101119 0.9859138953074975 -0.0001193925739604179 -0.1672536301101119 0.9859138953074975 -0.0001193925739604179 0.1672536301101119 -0.9859138953074975 0.0001193925739604179 0.1672536301101119 -0.9859138953074975 0.0001193925739604179 0.1672536301101119 -0.9859138953074975 0.0001193925739604179 0.1672536301101119 -0.9859138953074975 0.0001193925739604179 -0.3508509042968142 -0.9364313236072358 0.0001382798198352759 -0.3508509042968142 -0.9364313236072358 0.0001382798198352759 -0.3508509042968142 -0.9364313236072358 0.0001382798198352759 -0.3511589455539391 -0.9353145784622118 0.04329011750389354 0.3511589455539391 0.9353145784622118 -0.04329011750389354 0.3508509042968142 0.9364313236072358 -0.0001382798198352759 0.3508509042968142 0.9364313236072358 -0.0001382798198352759 0.3508509042968142 0.9364313236072358 -0.0001382798198352759 0.9364313245101165 -0.3508509291348317 -1.205961271371313e-006 0.936212395912575 -0.3507661751645839 0.02166656641105372 0.9364313245101165 -0.3508509291348317 -1.205961271371313e-006 0.9361869578471421 -0.3507564905197243 0.02288808238363706 -0.9361869578471421 0.3507564905197243 -0.02288808238363706 -0.9364313245101165 0.3508509291348317 1.205961271371313e-006 -0.936212395912575 0.3507661751645839 -0.02166656641105372 -0.9364313245101165 0.3508509291348317 1.205961271371313e-006 -0.350850926562789 -0.9364313180505648 0.0001179157103294764 -0.350850926562789 -0.9364313180505648 0.0001179157103294764 -0.350850926562789 -0.9364313180505648 0.0001179157103294764 -0.350850926562789 -0.9364313180505648 0.0001179157103294764 -0.350850926562789 -0.9364313180505648 0.0001179157103294764 -0.350850926562789 -0.9364313180505648 0.0001179157103294764 0.350850926562789 0.9364313180505648 -0.0001179157103294764 0.350850926562789 0.9364313180505648 -0.0001179157103294764 0.350850926562789 0.9364313180505648 -0.0001179157103294764 0.350850926562789 0.9364313180505648 -0.0001179157103294764 0.350850926562789 0.9364313180505648 -0.0001179157103294764 0.350850926562789 0.9364313180505648 -0.0001179157103294764 -0.01607024240618881 0.005873505220476583 -0.9998536139082718 -0.01607024240618881 0.005873505220476583 -0.9998536139082718 -0.01607024240618881 0.005873505220476583 -0.9998536139082718 0.01607024240618881 -0.005873505220476583 0.9998536139082718 0.01607024240618881 -0.005873505220476583 0.9998536139082718 0.01607024240618881 -0.005873505220476583 0.9998536139082718 -0.9364313325412308 0.3508509077014235 3.769171622713258e-007 -0.9364313325412308 0.3508509077014235 3.769171622713258e-007 -0.9364313325412308 0.3508509077014235 3.769171622713258e-007 -0.9364313325412308 0.3508509077014235 3.769171622713258e-007 0.9364313325412308 -0.3508509077014235 -3.769171622713258e-007 0.9364313325412308 -0.3508509077014235 -3.769171622713258e-007 0.9364313325412308 -0.3508509077014235 -3.769171622713258e-007 0.9364313325412308 -0.3508509077014235 -3.769171622713258e-007 0.3508509148163301 0.9364313195314468 -0.0001391874203761452 0.3508509148163301 0.9364313195314468 -0.0001391874203761452 0.3508509148163301 0.9364313195314468 -0.0001391874203761452 0.3508509148163301 0.9364313195314468 -0.0001391874203761452 -0.3508509148163301 -0.9364313195314468 0.0001391874203761452 -0.3508509148163301 -0.9364313195314468 0.0001391874203761452 -0.3508509148163301 -0.9364313195314468 0.0001391874203761452 -0.3508509148163301 -0.9364313195314468 0.0001391874203761452 -4.927471634489829e-005 -0.0001294575001860977 -0.9999999904063789 -4.927471634489829e-005 -0.0001294575001860977 -0.9999999904063789 -4.927471634489829e-005 -0.0001294575001860977 -0.9999999904063789 4.927471634489829e-005 0.0001294575001860977 0.9999999904063789 4.927471634489829e-005 0.0001294575001860977 0.9999999904063789 4.927471634489829e-005 0.0001294575001860977 0.9999999904063789 0.351547889108946 0.9361698897508857 -0.0001385166374550367 0.351547889108946 0.9361698897508857 -0.0001385166374550367 0.351547889108946 0.9361698897508857 -0.0001385166374550367 0.351547889108946 0.9361698897508857 -0.0001385166374550367 -0.351547889108946 -0.9361698897508857 0.0001385166374550367 -0.351547889108946 -0.9361698897508857 0.0001385166374550367 -0.351547889108946 -0.9361698897508857 0.0001385166374550367 -0.351547889108946 -0.9361698897508857 0.0001385166374550367 0.9929334427660355 0.1186725499163136 -6.428956584905806e-005 0.9929334427660355 0.1186725499163136 -6.428956584905806e-005 0.9929334427660355 0.1186725499163136 -6.428956584905806e-005 0.9929334427660355 0.1186725499163136 -6.428956584905806e-005 -0.9929334427660355 -0.1186725499163136 6.428956584905806e-005 -0.9929334427660355 -0.1186725499163136 6.428956584905806e-005 -0.9929334427660355 -0.1186725499163136 6.428956584905806e-005 -0.9929334427660355 -0.1186725499163136 6.428956584905806e-005 0.01008788295595455 -0.003573288412766343 0.9999427314738512 0.01424122265837204 -0.0004332708007333693 0.9998984947751487 0.0968764592576723 0.06210421875219348 0.9933569437291293 -0.0968764592576723 -0.06210421875219348 -0.9933569437291293 -0.01424122265837204 0.0004332708007333693 -0.9998984947751487 -0.01008788295595455 0.003573288412766343 -0.9999427314738512 0.01470299673477398 -0.005634648284496326 -0.9998760286284132 0.01470299673477398 -0.005634648284496326 -0.9998760286284132 0.01470299673477398 -0.005634648284496326 -0.9998760286284132 0.01470299673477398 -0.005634648284496326 -0.9998760286284132 -0.01470299673477398 0.005634648284496326 0.9998760286284132 -0.01470299673477398 0.005634648284496326 0.9998760286284132 -0.01470299673477398 0.005634648284496326 0.9998760286284132 -0.01470299673477398 0.005634648284496326 0.9998760286284132 4.927471634326548e-005 0.0001294575001817163 0.9999999904063789 4.927471634326548e-005 0.0001294575001817163 0.9999999904063789 4.927471634326548e-005 0.0001294575001817163 0.9999999904063789 -4.927471634326548e-005 -0.0001294575001817163 -0.9999999904063789 -4.927471634326548e-005 -0.0001294575001817163 -0.9999999904063789 -4.927471634326548e-005 -0.0001294575001817163 -0.9999999904063789 0.3515478891102228 0.9361698897504062 -0.0001385166374531146 0.3515478891102228 0.9361698897504062 -0.0001385166374531146 0.3515478891102228 0.9361698897504062 -0.0001385166374531146 0.3515478891102228 0.9361698897504062 -0.0001385166374531146 -0.3515478891102228 -0.9361698897504062 0.0001385166374531146 -0.3515478891102228 -0.9361698897504062 0.0001385166374531146 -0.3515478891102228 -0.9361698897504062 0.0001385166374531146 -0.3515478891102228 -0.9361698897504062 0.0001385166374531146 -0.3508509184116549 -0.9364313181767077 0.0001392391179266077 -0.3508180664999431 -0.9324851237028297 0.08601266354531674 0.3508180664999431 0.9324851237028297 -0.08601266354531674 0.3508509184116549 0.9364313181767077 -0.0001392391179266077 0.9355022604083677 -0.3504972250168496 0.0445782012459336 0.9355022604083677 -0.3504972250168496 0.0445782012459336 -0.9355022604083677 0.3504972250168496 -0.0445782012459336 -0.9355022604083677 0.3504972250168496 -0.0445782012459336 -0.2872116038886848 -0.2024709164038981 -0.9362238101021865 -0.2872116038886848 -0.2024709164038981 -0.9362238101021865 -0.2872116038886848 -0.2024709164038981 -0.9362238101021865 0.2872116038886848 0.2024709164038981 0.9362238101021865 0.2872116038886848 0.2024709164038981 0.9362238101021865 0.2872116038886848 0.2024709164038981 0.9362238101021865 0.3976326818377128 0.9175420798514845 -0.002186786766074246 0.3965612567545819 0.9180082516629629 -0.0001397137675274232 0.3986728004093511 0.9170837158250058 -0.00417808357570097 -0.3986728004093511 -0.9170837158250058 0.00417808357570097 -0.3965612567545819 -0.9180082516629629 0.0001397137675274232 -0.3976326818377128 -0.9175420798514845 0.002186786766074246 0.1371952022219423 0.09266142823664339 0.9862004543724495 -0.1371952022219423 -0.09266142823664339 -0.9862004543724495 0.399755700121228 0.9166003755543314 -0.006255537886207356 -0.399755700121228 -0.9166003755543314 0.006255537886207356 0.8078053824869639 0.5893503456685839 -0.0107997261729488 0.8078053824869639 0.5893503456685839 -0.0107997261729488 0.8078053824869639 0.5893503456685839 -0.0107997261729488 0.8078053824869639 0.5893503456685839 -0.0107997261729488 -0.8078053824869639 -0.5893503456685839 0.0107997261729488 -0.8078053824869639 -0.5893503456685839 0.0107997261729488 -0.8078053824869639 -0.5893503456685839 0.0107997261729488 -0.8078053824869639 -0.5893503456685839 0.0107997261729488 -0.01230274350798466 -0.001453388362498925 -0.9999232621378726 -0.00242793888496169 -0.005522745139682968 -0.9999818020338636 -0.01230274350798466 -0.001453388362498925 -0.9999232621378726 -0.002427941682658044 -0.005522743986871935 -0.9999818020334375 0.002427941682658044 0.005522743986871935 0.9999818020334375 0.01230274350798466 0.001453388362498925 0.9999232621378726 0.00242793888496169 0.005522745139682968 0.9999818020338636 0.01230274350798466 0.001453388362498925 0.9999232621378726 0.002427943543837358 0.005522725271053216 0.9999818021322831 0.01230272311922654 0.001453386127953516 0.9999232623919773 0.01230272311922654 0.001453386127953516 0.9999232623919773 0.002427943543843062 0.005522725271050866 0.9999818021322831 -0.002427943543843062 -0.005522725271050866 -0.9999818021322831 -0.002427943543837358 -0.005522725271053216 -0.9999818021322831 -0.01230272311922654 -0.001453386127953516 -0.9999232623919773 -0.01230272311922654 -0.001453386127953516 -0.9999232623919773 -0.9928422705363991 -0.1187877168708171 0.0123977480514183 -0.9928422705363991 -0.1187877168708171 0.0123977480514183 -0.9928422705363991 -0.1187877168708171 0.0123977480514183 -0.9928422705363991 -0.1187877168708171 0.0123977480514183 0.9928422705363991 0.1187877168708171 -0.0123977480514183 0.9928422705363991 0.1187877168708171 -0.0123977480514183 0.9928422705363991 0.1187877168708171 -0.0123977480514183 0.9928422705363991 0.1187877168708171 -0.0123977480514183 0.9928399621775504 0.118787444143525 -0.01258382362913017 0.9928399621775504 0.118787444143525 -0.01258382362913017 0.9928399621775504 0.118787444143525 -0.01258382362913017 0.9928399621775504 0.118787444143525 -0.01258382362913017 -0.9928399621775504 -0.118787444143525 0.01258382362913017 -0.9928399621775504 -0.118787444143525 0.01258382362913017 -0.9928399621775504 -0.118787444143525 0.01258382362913017 -0.9928399621775504 -0.118787444143525 0.01258382362913017 -0.001747316848563139 -0.005804738825532976 -0.9999816257766929 -0.001747316848561014 -0.005804738825533853 -0.9999816257766929 0.001747316848561014 0.005804738825533853 0.9999816257766929 0.001747316848563139 0.005804738825532976 0.9999816257766929 0.00174730795164488 0.005804717225227841 0.9999816259176252 0.001747307951638084 0.005804717225230638 0.9999816259176252 -0.001747307951638084 -0.005804717225230638 -0.9999816259176252 -0.00174730795164488 -0.005804717225227841 -0.9999816259176252 0.6209455716774575 -0.7837594819621387 0.01215201417854109 0.6209455716774575 -0.7837594819621387 0.01215201417854109 0.6209455716774575 -0.7837594819621387 0.01215201417854109 0.6209455716774575 -0.7837594819621387 0.01215201417854109 -0.6209455716774575 0.7837594819621387 -0.01215201417854109 -0.6209455716774575 0.7837594819621387 -0.01215201417854109 -0.6209455716774575 0.7837594819621387 -0.01215201417854109 -0.6209455716774575 0.7837594819621387 -0.01215201417854109 -0.6209441739955349 0.783757682136669 -0.01233809032060093 -0.6209441739955349 0.783757682136669 -0.01233809032060093 -0.6209441739955349 0.783757682136669 -0.01233809032060093 -0.6209441739955349 0.783757682136669 -0.01233809032060093 0.6209441739955349 -0.783757682136669 0.01233809032060093 0.6209441739955349 -0.783757682136669 0.01233809032060093 0.6209441739955349 -0.783757682136669 0.01233809032060093 0.6209441739955349 -0.783757682136669 0.01233809032060093 -0.008762019061586829 0.003276731346294618 -0.9999562440695337 -0.008762019061584988 0.003276731346299085 -0.9999562440695337 0.008762019061584988 -0.003276731346299085 0.9999562440695337 0.008762019061586829 -0.003276731346294618 0.9999562440695337 0.008761980451224307 -0.003276715449235843 0.9999562444599449 0.00876198045122511 -0.003276715449233895 0.9999562444599449 -0.00876198045122511 0.003276715449233895 -0.9999562444599449 -0.008761980451224307 0.003276715449235843 -0.9999562444599449 -0.9928232977983861 -0.1190730491495417 0.01111342948725611 -0.9928232977983861 -0.1190730491495417 0.01111342948725611 -0.9928232977983861 -0.1190730491495417 0.01111342948725611 -0.9928232977983861 -0.1190730491495417 0.01111342948725611 0.9928232977983861 0.1190730491495417 -0.01111342948725611 0.9928232977983861 0.1190730491495417 -0.01111342948725611 0.9928232977983861 0.1190730491495417 -0.01111342948725611 0.9928232977983861 0.1190730491495417 -0.01111342948725611 0.9928212427395915 0.1190726714545583 -0.01129950785157825 0.9928212427395915 0.1190726714545583 -0.01129950785157825 0.9928212427395915 0.1190726714545583 -0.01129950785157825 0.9928212427395915 0.1190726714545583 -0.01129950785157825 -0.9928212427395915 -0.1190726714545583 0.01129950785157825 -0.9928212427395915 -0.1190726714545583 0.01129950785157825 -0.9928212427395915 -0.1190726714545583 0.01129950785157825 -0.9928212427395915 -0.1190726714545583 0.01129950785157825 -0.006582147285855263 0.008570787049458753 -0.9999416067683454 -0.006582147285855263 0.008570787049458753 -0.9999416067683454 0.006582147285855263 -0.008570787049458753 0.9999416067683454 0.006582147285855263 -0.008570787049458753 0.9999416067683454 0.006582117567760453 -0.00857074955999672 0.9999416072852974 0.006582117567760453 -0.00857074955999672 0.9999416072852974 -0.006582117567760453 0.00857074955999672 -0.9999416072852974 -0.006582117567760453 0.00857074955999672 -0.9999416072852974 -0.6075350527656814 0.7942192114895526 0.01081682771953592 -0.6211668279324678 0.7836037342363259 0.0108147846581341 -0.6075350527656738 0.7942192114895584 0.01081682771953592 -0.6211668279324678 0.7836037342363259 0.0108147846581341 0.6211668279324678 -0.7836037342363259 -0.0108147846581341 0.6075350527656814 -0.7942192114895526 -0.01081682771953592 0.6211668279324678 -0.7836037342363259 -0.0108147846581341 0.6075350527656738 -0.7942192114895584 -0.01081682771953592 0.6211655912134031 -0.7836021243531668 -0.01100086368007822 0.6075338227463153 -0.794217595908865 -0.01100293451729795 0.6075338227463204 -0.794217595908861 -0.01100293451729795 0.6211655912134031 -0.7836021243531668 -0.01100086368007822 -0.6211655912134031 0.7836021243531668 0.01100086368007822 -0.6211655912134031 0.7836021243531668 0.01100086368007822 -0.6075338227463153 0.794217595908865 0.01100293451729795 -0.6075338227463204 0.794217595908861 0.01100293451729795 -0.006509991061553962 0.00862598265607226 -0.9999416045147814 0.0004112504251199041 0.01373325896302131 -0.9999056097809146 0.00041125042512244 0.01373325896302318 -0.9999056097809146 -0.006509991061553962 0.00862598265607226 -0.9999416045147814 0.006509991061553962 -0.00862598265607226 0.9999416045147814 0.006509991061553962 -0.00862598265607226 0.9999416045147814 -0.0004112504251199041 -0.01373325896302131 0.9999056097809146 -0.00041125042512244 -0.01373325896302318 0.9999056097809146 -0.0004112646358625592 -0.01373323977200073 0.9999056100386496 0.006509962656490245 -0.008625944162216324 0.9999416050317747 -0.0004112646358607338 -0.01373323977199938 0.9999056100386496 0.006509962656490245 -0.008625944162216324 0.9999416050317747 -0.006509962656490245 0.008625944162216324 -0.9999416050317747 0.0004112646358625592 0.01373323977200073 -0.9999056100386496 -0.006509962656490245 0.008625944162216324 -0.9999416050317747 0.0004112646358607338 0.01373323977199938 -0.9999056100386496 -0.593721920089329 0.8045976034625476 0.01081564181015226 -0.593721920089329 0.8045976034625476 0.01081564181015226 0.593721920089329 -0.8045976034625476 -0.01081564181015226 0.593721920089329 -0.8045976034625476 -0.01081564181015226 0.5937206973212428 -0.8045959829076453 -0.01100172083165113 0.5937206973212428 -0.8045959829076453 -0.01100172083165113 -0.5937206973212428 0.8045959829076453 0.01100172083165113 -0.5937206973212428 0.8045959829076453 0.01100172083165113 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 0.007332461483726658 0.01883951915780641 -0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461483726658 -0.01883951915780641 0.9997956328802865 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 -0.007332461499092152 -0.01883951927102821 0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 0.007332461499092152 0.01883951927102821 -0.9997956328780402 -0.5937959272493159 0.8045429979530354 0.01081486138919677 -0.5937959272493159 0.8045429979530354 0.01081486138919677 -0.5937959272493159 0.8045429979530354 0.01081486138919677 -0.5937959272493159 0.8045429979530354 0.01081486138919677 0.5937959272493159 -0.8045429979530354 -0.01081486138919677 0.5937959272493159 -0.8045429979530354 -0.01081486138919677 0.5937959272493159 -0.8045429979530354 -0.01081486138919677 0.5937959272493159 -0.8045429979530354 -0.01081486138919677 0.5937972804245298 -0.8045394767618097 -0.01100091324689856 0.5937972804245298 -0.8045394767618097 -0.01100091324689856 0.5937972804245298 -0.8045394767618097 -0.01100091324689856 0.5937972804245298 -0.8045394767618097 -0.01100091324689856 -0.5937972804245298 0.8045394767618097 0.01100091324689856 -0.5937972804245298 0.8045394767618097 0.01100091324689856 -0.5937972804245298 0.8045394767618097 0.01100091324689856 -0.5937972804245298 0.8045394767618097 0.01100091324689856 0.362581470292878 0.9317325815146001 0.02022557649101636 0.362581470292878 0.9317325815146001 0.02022557649101636 0.362581470292878 0.9317325815146001 0.02022557649101636 0.362581470292878 0.9317325815146001 0.02022557649101636 -0.362581470292878 -0.9317325815146001 -0.02022557649101636 -0.362581470292878 -0.9317325815146001 -0.02022557649101636 -0.362581470292878 -0.9317325815146001 -0.02022557649101636 -0.362581470292878 -0.9317325815146001 -0.02022557649101636 -0.3625800988802945 -0.9317290578979673 -0.02041162816930579 -0.3625800988802945 -0.9317290578979673 -0.02041162816930579 -0.3625800988802945 -0.9317290578979673 -0.02041162816930579 -0.3625800988802945 -0.9317290578979673 -0.02041162816930579 0.3625800988802945 0.9317290578979673 0.02041162816930579 0.3625800988802945 0.9317290578979673 0.02041162816930579 0.3625800988802945 0.9317290578979673 0.02041162816930579 0.3625800988802945 0.9317290578979673 0.02041162816930579 -0.5937955203901624 0.8045460268111925 0.01060993434949058 -0.5937955203901624 0.8045460268111925 0.01060993434949058 -0.5937955203901624 0.8045460268111925 0.01060993434949058 -0.5937955203901624 0.8045460268111925 0.01060993434949058 0.5937955203901624 -0.8045460268111925 -0.01060993434949058 0.5937955203901624 -0.8045460268111925 -0.01060993434949058 0.5937955203901624 -0.8045460268111925 -0.01060993434949058 0.5937955203901624 -0.8045460268111925 -0.01060993434949058 -0.3625794060710077 -0.9317293279740856 -0.02041160665293791 -0.3625794060710077 -0.9317293279740856 -0.02041160665293791 -0.3625794060710077 -0.9317293279740856 -0.02041160665293791 -0.3625794060710077 -0.9317293279740856 -0.02041160665293791 0.3625794060710077 0.9317293279740856 0.02041160665293791 0.3625794060710077 0.9317293279740856 0.02041160665293791 0.3625794060710077 0.9317293279740856 0.02041160665293791 0.3625794060710077 0.9317293279740856 0.02041160665293791 0.9929056954866894 0.1185386716695366 0.009320042323699604 0.9929056954866894 0.1185386716695366 0.009320042323699604 0.9929056954866894 0.1185386716695366 0.009320042323699604 0.9929056954866894 0.1185386716695366 0.009320042323699604 -0.9929056954866894 -0.1185386716695366 -0.009320042323699604 -0.9929056954866894 -0.1185386716695366 -0.009320042323699604 -0.9929056954866894 -0.1185386716695366 -0.009320042323699604 -0.9929056954866894 -0.1185386716695366 -0.009320042323699604 -0.3625800991746345 -0.9317290586547066 -0.02041158839793674 -0.3625800991746345 -0.9317290586547066 -0.02041158839793674 -0.3625800991746345 -0.9317290586547066 -0.02041158839793674 -0.3625800991746345 -0.9317290586547066 -0.02041158839793674 0.3625800991746345 0.9317290586547066 0.02041158839793674 0.3625800991746345 0.9317290586547066 0.02041158839793674 0.3625800991746345 0.9317290586547066 0.02041158839793674 0.3625800991746345 0.9317290586547066 0.02041158839793674 -0.9929026963755123 -0.1185324109340483 -0.009710977726230453 -0.9929026963755123 -0.1185324109340483 -0.009710977726230453 -0.9929026963755123 -0.1185324109340483 -0.009710977726230453 -0.9929026963755123 -0.1185324109340483 -0.009710977726230453 0.9929026963755123 0.1185324109340483 0.009710977726230453 0.9929026963755123 0.1185324109340483 0.009710977726230453 0.9929026963755123 0.1185324109340483 0.009710977726230453 0.9929026963755123 0.1185324109340483 0.009710977726230453 -0.1186911392894986 0.992771003888195 0.01783668391227684 -0.1186911392894986 0.992771003888195 0.01783668391227684 -0.1186911392894986 0.992771003888195 0.01783668391227684 -0.1186911392894986 0.992771003888195 0.01783668391227684 0.1186911392894986 -0.992771003888195 -0.01783668391227684 0.1186911392894986 -0.992771003888195 -0.01783668391227684 0.1186911392894986 -0.992771003888195 -0.01783668391227684 0.1186911392894986 -0.992771003888195 -0.01783668391227684 0.9929040798004067 0.1185359190430526 0.009524925843635164 0.9929040798004067 0.1185359190430526 0.009524925843635164 0.9929040798004067 0.1185359190430526 0.009524925843635164 0.9929040798004067 0.1185359190430526 0.009524925843635164 -0.9929040798004067 -0.1185359190430526 -0.009524925843635164 -0.9929040798004067 -0.1185359190430526 -0.009524925843635164 -0.9929040798004067 -0.1185359190430526 -0.009524925843635164 -0.9929040798004067 -0.1185359190430526 -0.009524925843635164 0.3625814705846928 0.9317325822643823 0.02022553671939963 0.3625814705846928 0.9317325822643823 0.02022553671939963 0.3625814705846928 0.9317325822643823 0.02022553671939963 0.3625814705846928 0.9317325822643823 0.02022553671939963 -0.3625814705846928 -0.9317325822643823 -0.02022553671939963 -0.3625814705846928 -0.9317325822643823 -0.02022553671939963 -0.3625814705846928 -0.9317325822643823 -0.02022553671939963 -0.3625814705846928 -0.9317325822643823 -0.02022553671939963 -0.9929043499215119 -0.1185351680851851 -0.00950609456911552 -0.9929043499215119 -0.1185351680851851 -0.00950609456911552 -0.9929043499215119 -0.1185351680851851 -0.00950609456911552 -0.9929043499215119 -0.1185351680851851 -0.00950609456911552 0.9929043499215119 0.1185351680851851 0.00950609456911552 0.9929043499215119 0.1185351680851851 0.00950609456911552 0.9929043499215119 0.1185351680851851 0.00950609456911552 0.9929043499215119 0.1185351680851851 0.00950609456911552 0.3625807774841837 0.9317328515861947 0.02022555497441153 0.3625807774841837 0.9317328515861947 0.02022555497441153 0.3625807774841837 0.9317328515861947 0.02022555497441153 0.3625807774841837 0.9317328515861947 0.02022555497441153 -0.3625807774841837 -0.9317328515861947 -0.02022555497441153 -0.3625807774841837 -0.9317328515861947 -0.02022555497441153 -0.3625807774841837 -0.9317328515861947 -0.02022555497441153 -0.3625807774841837 -0.9317328515861947 -0.02022555497441153 0.5937968962118208 -0.8045425363037807 -0.0107959866194776 0.5937968962118208 -0.8045425363037807 -0.0107959866194776 0.5937968962118208 -0.8045425363037807 -0.0107959866194776 0.5937968962118208 -0.8045425363037807 -0.0107959866194776 -0.5937968962118208 0.8045425363037807 0.0107959866194776 -0.5937968962118208 0.8045425363037807 0.0107959866194776 -0.5937968962118208 0.8045425363037807 0.0107959866194776 -0.5937968962118208 0.8045425363037807 0.0107959866194776</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"510\" source=\"#ID5579\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5577\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5575\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5576\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"312\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5577\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 17 19 20 17 20 21 21 20 22 23 24 25 24 23 26 26 23 21 26 21 22 27 28 29 28 30 29 29 30 31 32 31 30 27 33 28 28 33 34 33 35 34 35 36 34 37 34 36 38 39 40 39 38 41 42 43 44 45 44 43 46 47 48 47 46 49 50 51 52 51 50 53 53 50 54 54 50 49 54 49 55 55 49 46 56 57 58 58 57 59 57 60 59 59 60 61 61 60 62 63 62 60 57 56 64 65 64 56 66 67 68 67 66 69 70 71 72 73 72 71 74 75 76 75 74 77 78 79 80 81 80 79 82 83 84 83 82 85 86 87 88 89 88 87 90 91 92 91 90 93 93 90 94 93 94 95 96 97 98 97 99 98 98 99 100 101 100 99 102 103 104 105 106 107 108 109 110 109 108 111 112 113 114 115 114 113 116 117 118 117 116 119 120 121 122 123 122 121 124 125 126 127 128 129 130 131 132 131 130 133 134 135 136 137 136 135 138 139 140 139 138 141 142 143 144 145 144 143 146 147 148 149 150 151 152 153 154 153 152 155 156 157 158 159 158 157 160 161 162 163 164 165 166 167 168 167 166 169 170 171 172 173 172 171 174 175 77 78 176 177 85 178 83 178 85 179 180 86 181 88 181 86 182 183 184 185 186 187 188 189 190 191 192 193 148 147 194 195 150 149 196 188 190 191 193 197 198 199 200 199 198 201 202 203 204 205 204 203 206 207 208 207 206 209 210 211 212 213 212 211 214 215 216 215 214 217 218 219 220 221 220 219 222 223 224 223 222 225 226 227 228 229 228 227 230 231 232 231 230 233 234 235 236 237 236 235 209 238 207 238 209 239 240 210 241 212 241 210 242 217 214 217 242 243 244 245 218 219 218 245 246 247 248 247 246 249 250 251 252 253 252 251 254 255 256 255 254 257 258 259 260 261 260 259 239 262 238 262 239 263 264 240 265 241 265 240 266 243 242 243 266 267 268 269 244 245 244 269 270 271 272 271 270 273 274 275 276 277 276 275 278 279 280 279 278 281 282 283 284 285 284 283 262 286 287 286 262 263 264 265 288 289 288 265 290 266 291 266 290 267 268 292 269 293 269 292 294 295 296 295 294 297 298 299 300 301 300 299 302 303 304 303 302 305 306 307 308 309 308 307 310 311 312 311 310 313 314 315 316 317 316 315 318 319 320 319 318 321 322 323 324 325 324 323 326 294 296 294 326 327 328 329 299 301 299 329 303 330 304 330 303 331 332 308 333 309 333 308 334 335 336 335 334 337 335 337 312 335 312 311 338 339 340 339 338 341 341 334 336 334 341 338 339 342 340 342 339 343 344 345 346 345 344 347 345 347 343 343 347 342 348 349 350 350 349 351 349 352 351 353 351 352 350 354 348 355 348 354 356 357 358 359 358 357 357 356 354 355 354 356 316 317 360 317 361 360 361 358 360 359 360 358 362 363 364 363 362 365 365 362 366 365 366 367 367 368 369 368 367 366 370 371 372 371 370 373 373 370 320 320 370 318 371 374 372 374 371 375 368 375 369 375 368 374 376 377 378 379 378 377 378 380 376 381 376 380 323 382 325 325 382 383 383 382 380 381 380 382 384 385 377 379 377 385 385 384 386 384 387 386 386 387 388 389 388 387 390 391 392 391 390 393 394 395 396 397 396 395 398 399 400 399 398 401 402 403 404 405 404 403 406 407 408 407 406 409 410 411 412 413 412 411 414 415 416 415 414 417 418 419 420 421 420 419 422 423 424 423 422 425 426 427 428 429 428 427 430 431 432 431 430 433 434 435 436 437 436 435 438 439 440 439 438 441 442 443 444 445 444 443 446 447 448 447 446 449 450 451 452 453 452 451 454 455 456 455 454 457 458 459 460 461 460 459 462 463 464 463 462 465 466 467 468 469 468 467 470 471 472 471 470 473 474 475 476 477 476 475 478 479 480 479 478 481 482 483 484 485 484 483 486 487 488 487 486 489 490 491 492 493 492 491 494 495 496 495 494 497 498 499 500 501 500 499 502 503 504 503 502 505 506 507 508 509 508 507</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5580\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5581\">\r\n\t\t\t\t\t<float_array count=\"360\" id=\"ID5584\">1782.405491517141 5265.534259565283 267.904310317592 1679.136350916862 5305.721777040719 271.4477788922896 1679.136176335673 5305.721318165168 267.904198121578 1782.405666268965 5265.534718374439 271.4478910883035 1782.405666268965 5265.534718374439 271.4478910883035 1782.405491517141 5265.534259565283 267.904310317592 1679.136350916862 5305.721777040719 271.4477788922896 1679.136176335673 5305.721318165168 267.904198121578 1679.136176335673 5305.721318165168 267.904198121578 1706.223762869668 5078.987625195714 271.4757969151646 1706.223588291435 5078.987166295426 267.9322161444565 1679.136350916862 5305.721777040719 271.4477788922896 1679.136350916862 5305.721777040719 271.4477788922896 1679.136176335673 5305.721318165168 267.904198121578 1706.223762869668 5078.987625195714 271.4757969151646 1706.223588291435 5078.987166295426 267.9322161444565 1809.493078221743 5038.800566529362 271.4759085108221 1782.405491517141 5265.534259565283 267.904310317592 1809.492903463928 5038.800107770348 267.9323277401039 1782.405666268965 5265.534718374439 271.4478910883035 1782.405666268965 5265.534718374439 271.4478910883035 1809.493078221743 5038.800566529362 271.4759085108221 1782.405491517141 5265.534259565283 267.904310317592 1809.492903463928 5038.800107770348 267.9323277401039 1921.430281722381 4101.850291771847 271.5916882763077 1809.492903463928 5038.800107770348 267.9323277401039 1921.430106969799 4101.849832969045 268.0481075055951 1809.493078221743 5038.800566529362 271.4759085108221 1809.493078221743 5038.800566529362 271.4759085108221 1921.430281722381 4101.850291771847 271.5916882763077 1809.492903463928 5038.800107770348 267.9323277401039 1921.430106969799 4101.849832969045 268.0481075055951 2107.348689462141 4029.498739841937 268.0483088303847 1921.430281722381 4101.850291771847 271.5916882763077 1921.430106969799 4101.849832969045 268.0481075055951 2107.348864140422 4029.49919867366 271.5918896010974 2107.348864140422 4029.49919867366 271.5918896010974 2107.348689462141 4029.498739841937 268.0483088303847 1921.430281722381 4101.850291771847 271.5916882763077 1921.430106969799 4101.849832969045 268.0481075055951 4119.377305110387 5513.718032212376 271.3005546900548 2107.348689462141 4029.498739841937 268.0483088303847 4119.37713042997 5513.717573379084 267.7569739193434 2107.348864140422 4029.49919867366 271.5918896010974 2107.348864140422 4029.49919867366 271.5918896010974 4119.377305110387 5513.718032212376 271.3005546900548 2107.348689462141 4029.498739841937 268.0483088303847 4119.37713042997 5513.717573379084 267.7569739193434 4494.161258512432 5342.449003058167 267.7606705842979 4119.377305110387 5513.718032212376 271.3005546900548 4119.37713042997 5513.717573379084 267.7569739193434 4494.161433230029 5342.449461874475 271.3042513550099 4494.161433230029 5342.449461874475 271.3042513550099 4494.161258512432 5342.449003058167 267.7606705842979 4119.377305110387 5513.718032212376 271.3005546900548 4119.37713042997 5513.717573379084 267.7569739193434 4495.633167996437 5345.66995778287 267.7601809679611 4494.161433230029 5342.449461874475 271.3042513550099 4494.161258512432 5342.449003058167 267.7606705842979 4495.633342714035 5345.670416599172 271.3037617386741 4495.633342714035 5345.670416599172 271.3037617386741 4495.633167996437 5345.66995778287 267.7601809679611 4494.161433230029 5342.449461874475 271.3042513550099 4494.161258512432 5342.449003058167 267.7606705842979 4118.952888498089 5517.805568617146 271.3000463693993 4495.633167996437 5345.66995778287 267.7601809679611 4118.95271381766 5517.80510978385 267.7564655986869 4495.633342714035 5345.670416599172 271.3037617386741 4495.633342714035 5345.670416599172 271.3037617386741 4118.952888498089 5517.805568617146 271.3000463693993 4495.633167996437 5345.66995778287 267.7601809679611 4118.95271381766 5517.80510978385 267.7564655986869 2106.815708998504 4033.506191636809 268.0478162294075 4118.952888498089 5517.805568617146 271.3000463693993 4118.95271381766 5517.80510978385 267.7564655986869 2106.815883676794 4033.50665046853 271.5913970001196 2106.815883676794 4033.50665046853 271.5913970001196 2106.815708998504 4033.506191636809 268.0478162294075 4118.952888498089 5517.805568617146 271.3000463693993 4118.95271381766 5517.80510978385 267.7564655986869 1924.69457637007 4104.380016050058 271.591199787268 2106.815708998504 4033.506191636809 268.0478162294075 1924.69440161749 4104.379557247249 268.0476190165555 2106.815883676794 4033.50665046853 271.5913970001196 2106.815883676794 4033.50665046853 271.5913970001196 1924.69457637007 4104.380016050058 271.591199787268 2106.815708998504 4033.506191636809 268.0478162294075 1924.69440161749 4104.379557247249 268.0476190165555 1813.009235365539 5039.220199442738 267.9320999402119 1924.69457637007 4104.380016050058 271.591199787268 1924.69440161749 4104.379557247249 268.0476190165555 1813.009410123354 5039.220658201752 271.47568071093 1813.009410123354 5039.220658201752 271.47568071093 1813.009235365539 5039.220199442738 267.9320999402119 1924.69457637007 4104.380016050058 271.591199787268 1924.69440161749 4104.379557247249 268.0476190165555 1785.66978899163 5268.06399582716 267.903821830003 1813.009410123354 5039.220658201752 271.47568071093 1813.009235365539 5039.220199442738 267.9320999402119 1785.669963743451 5268.064454636318 271.4474026007151 1785.669963743451 5268.064454636318 271.4474026007151 1785.66978899163 5268.06399582716 267.903821830003 1813.009410123354 5039.220658201752 271.47568071093 1813.009235365539 5039.220199442738 267.9320999402119 1674.919821389077 5311.162662975541 271.4472822772232 1785.66978899163 5268.06399582716 267.903821830003 1674.919646807889 5311.162204099994 267.9037015065122 1785.669963743451 5268.064454636318 271.4474026007151 1785.669963743451 5268.064454636318 271.4474026007151 1674.919821389077 5311.162662975541 271.4472822772232 1785.66978899163 5268.06399582716 267.903821830003 1674.919646807889 5311.162204099994 267.9037015065122 1702.007233341884 5084.428511130534 271.4753003000988 1674.919646807889 5311.162204099994 267.9037015065122 1702.007058763643 5084.428052230262 267.9317195293905 1674.919821389077 5311.162662975541 271.4472822772232 1674.919821389077 5311.162662975541 271.4472822772232 1702.007233341884 5084.428511130534 271.4753003000988 1674.919646807889 5311.162204099994 267.9037015065122 1702.007058763643 5084.428052230262 267.9317195293905</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"120\" source=\"#ID5584\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5582\">\r\n\t\t\t\t\t<float_array count=\"360\" id=\"ID5585\">-0.3626560860510952 -0.9319230354782806 0.000138546194891285 -0.3626560860510952 -0.9319230354782806 0.000138546194891285 -0.3626560860510952 -0.9319230354782806 0.000138546194891285 -0.3626560860510952 -0.9319230354782806 0.000138546194891285 0.3626560860510952 0.9319230354782806 -0.000138546194891285 0.3626560860510952 0.9319230354782806 -0.000138546194891285 0.3626560860510952 0.9319230354782806 -0.000138546194891285 0.3626560860510952 0.9319230354782806 -0.000138546194891285 0.9929392230594371 0.1186241761959659 -6.428024601235144e-005 0.9929392230594371 0.1186241761959659 -6.428024601235144e-005 0.9929392230594371 0.1186241761959659 -6.428024601235144e-005 0.9929392230594371 0.1186241761959659 -6.428024601235144e-005 -0.9929392230594371 -0.1186241761959659 6.428024601235144e-005 -0.9929392230594371 -0.1186241761959659 6.428024601235144e-005 -0.9929392230594371 -0.1186241761959659 6.428024601235144e-005 -0.9929392230594371 -0.1186241761959659 6.428024601235144e-005 -0.9929392230571884 -0.1186241761900754 6.432583682304843e-005 -0.9929392230571884 -0.1186241761900754 6.432583682304843e-005 -0.9929392230571884 -0.1186241761900754 6.432583682304843e-005 -0.9929392230571884 -0.1186241761900754 6.432583682304843e-005 0.9929392230571884 0.1186241761900754 -6.432583682304843e-005 0.9929392230571884 0.1186241761900754 -6.432583682304843e-005 0.9929392230571884 0.1186241761900754 -6.432583682304843e-005 0.9929392230571884 0.1186241761900754 -6.432583682304843e-005 -0.9929389869725868 -0.1186261523105628 6.432608113913706e-005 -0.9929389869725868 -0.1186261523105628 6.432608113913706e-005 -0.9929389869725868 -0.1186261523105628 6.432608113913706e-005 -0.9929389869725868 -0.1186261523105628 6.432608113913706e-005 0.9929389869725868 0.1186261523105628 -6.432608113913706e-005 0.9929389869725868 0.1186261523105628 -6.432608113913706e-005 0.9929389869725868 0.1186261523105628 -6.432608113913706e-005 0.9929389869725868 0.1186261523105628 -6.432608113913706e-005 -0.3626614342187982 -0.9319209542315049 0.000138544598542375 -0.3626614342187982 -0.9319209542315049 0.000138544598542375 -0.3626614342187982 -0.9319209542315049 0.000138544598542375 -0.3626614342187982 -0.9319209542315049 0.000138544598542375 0.3626614342187982 0.9319209542315049 -0.000138544598542375 0.3626614342187982 0.9319209542315049 -0.000138544598542375 0.3626614342187982 0.9319209542315049 -0.000138544598542375 0.3626614342187982 0.9319209542315049 -0.000138544598542375 0.5936322626408181 -0.8047364358201057 7.493661212050386e-005 0.5936322626408181 -0.8047364358201057 7.493661212050386e-005 0.5936322626408181 -0.8047364358201057 7.493661212050386e-005 0.5936322626408181 -0.8047364358201057 7.493661212050386e-005 -0.5936322626408181 0.8047364358201057 -7.493661212050386e-005 -0.5936322626408181 0.8047364358201057 -7.493661212050386e-005 -0.5936322626408181 0.8047364358201057 -7.493661212050386e-005 -0.5936322626408181 0.8047364358201057 -7.493661212050386e-005 -0.4156366710001146 -0.9095307243874778 0.0001382574856080429 -0.4156366710001146 -0.9095307243874778 0.0001382574856080429 -0.4156366710001146 -0.9095307243874778 0.0001382574856080429 -0.4156366710001146 -0.9095307243874778 0.0001382574856080429 0.4156366710001146 0.9095307243874778 -0.0001382574856080429 0.4156366710001146 0.9095307243874778 -0.0001382574856080429 0.4156366710001146 0.9095307243874778 -0.0001382574856080429 0.4156366710001146 0.9095307243874778 -0.0001382574856080429 0.9095307335592567 -0.4156366738278511 8.971111905676109e-006 0.9095307335592567 -0.4156366738278511 8.971111905676109e-006 0.9095307335592567 -0.4156366738278511 8.971111905676109e-006 0.9095307335592567 -0.4156366738278511 8.971111905676109e-006 -0.9095307335592567 0.4156366738278511 -8.971111905676109e-006 -0.9095307335592567 0.4156366738278511 -8.971111905676109e-006 -0.9095307335592567 0.4156366738278511 -8.971111905676109e-006 -0.9095307335592567 0.4156366738278511 -8.971111905676109e-006 0.4156366710001148 0.909530724387478 -0.0001382574848041925 0.4156366710001148 0.909530724387478 -0.0001382574848041925 0.4156366710001148 0.909530724387478 -0.0001382574848041925 0.4156366710001148 0.909530724387478 -0.0001382574848041925 -0.4156366710001148 -0.909530724387478 0.0001382574848041925 -0.4156366710001148 -0.909530724387478 0.0001382574848041925 -0.4156366710001148 -0.909530724387478 0.0001382574848041925 -0.4156366710001148 -0.909530724387478 0.0001382574848041925 -0.5936322626408185 0.8047364358201053 -7.493661197563884e-005 -0.5936322626408185 0.8047364358201053 -7.493661197563884e-005 -0.5936322626408185 0.8047364358201053 -7.493661197563884e-005 -0.5936322626408185 0.8047364358201053 -7.493661197563884e-005 0.5936322626408185 -0.8047364358201053 7.493661197563884e-005 0.5936322626408185 -0.8047364358201053 7.493661197563884e-005 0.5936322626408185 -0.8047364358201053 7.493661197563884e-005 0.5936322626408185 -0.8047364358201053 7.493661197563884e-005 0.3626614342187999 0.9319209542315045 -0.0001385445979417721 0.3626614342187999 0.9319209542315045 -0.0001385445979417721 0.3626614342187999 0.9319209542315045 -0.0001385445979417721 0.3626614342187999 0.9319209542315045 -0.0001385445979417721 -0.3626614342187999 -0.9319209542315045 0.0001385445979417721 -0.3626614342187999 -0.9319209542315045 0.0001385445979417721 -0.3626614342187999 -0.9319209542315045 0.0001385445979417721 -0.3626614342187999 -0.9319209542315045 0.0001385445979417721 0.9929389869725869 0.1186261523105623 -6.432608041609911e-005 0.9929389869725869 0.1186261523105623 -6.432608041609911e-005 0.9929389869725869 0.1186261523105623 -6.432608041609911e-005 0.9929389869725869 0.1186261523105623 -6.432608041609911e-005 -0.9929389869725869 -0.1186261523105623 6.432608041609911e-005 -0.9929389869725869 -0.1186261523105623 6.432608041609911e-005 -0.9929389869725869 -0.1186261523105623 6.432608041609911e-005 -0.9929389869725869 -0.1186261523105623 6.432608041609911e-005 0.9929392230571883 0.1186241761900756 -6.4325836125005e-005 0.9929392230571883 0.1186241761900756 -6.4325836125005e-005 0.9929392230571883 0.1186241761900756 -6.4325836125005e-005 0.9929392230571883 0.1186241761900756 -6.4325836125005e-005 -0.9929392230571883 -0.1186241761900756 6.4325836125005e-005 -0.9929392230571883 -0.1186241761900756 6.4325836125005e-005 -0.9929392230571883 -0.1186241761900756 6.4325836125005e-005 -0.9929392230571883 -0.1186241761900756 6.4325836125005e-005 0.362656086051101 0.9319230354782784 -0.0001385461942796731 0.362656086051101 0.9319230354782784 -0.0001385461942796731 0.362656086051101 0.9319230354782784 -0.0001385461942796731 0.362656086051101 0.9319230354782784 -0.0001385461942796731 -0.362656086051101 -0.9319230354782784 0.0001385461942796731 -0.362656086051101 -0.9319230354782784 0.0001385461942796731 -0.362656086051101 -0.9319230354782784 0.0001385461942796731 -0.362656086051101 -0.9319230354782784 0.0001385461942796731 -0.9929392230594376 -0.1186241761959613 6.42802470298212e-005 -0.9929392230594376 -0.1186241761959613 6.42802470298212e-005 -0.9929392230594376 -0.1186241761959613 6.42802470298212e-005 -0.9929392230594376 -0.1186241761959613 6.42802470298212e-005 0.9929392230594376 0.1186241761959613 -6.42802470298212e-005 0.9929392230594376 0.1186241761959613 -6.42802470298212e-005 0.9929392230594376 0.1186241761959613 -6.42802470298212e-005 0.9929392230594376 0.1186241761959613 -6.42802470298212e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"120\" source=\"#ID5585\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5583\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5581\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5582\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"30\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5583\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27 32 33 34 33 32 35 40 41 42 41 40 43 48 49 50 49 48 51 56 57 58 57 56 59 64 65 66 65 64 67 72 73 74 73 72 75 80 81 82 81 80 83 88 89 90 89 88 91 96 97 98 97 96 99 104 105 106 105 104 107 112 113 114 113 112 115</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"30\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5583\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 12 13 14 15 14 13 20 21 22 23 22 21 28 29 30 31 30 29 36 37 38 39 38 37 44 45 46 47 46 45 52 53 54 55 54 53 60 61 62 63 62 61 68 69 70 71 70 69 76 77 78 79 78 77 84 85 86 87 86 85 92 93 94 95 94 93 100 101 102 103 102 101 108 109 110 111 110 109 116 117 118 119 118 117</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5586\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5587\">\r\n\t\t\t\t\t<float_array count=\"612\" id=\"ID5590\">1256.490253958077 5257.800600664585 271.4748180503931 1702.007058763643 5084.428052230262 267.9317195293905 1256.490079074061 5257.800141883307 267.9312372796841 1702.007233341884 5084.428511130534 271.4753003000988 1702.007233341884 5084.428511130534 271.4753003000988 1256.490253958077 5257.800600664585 271.4748180503931 1702.007058763643 5084.428052230262 267.9317195293905 1256.490079074061 5257.800141883307 267.9312372796841 459.7276673323577 4282.938495380813 271.6403021849561 449.953525051712 4394.213593722378 271.6263774971836 445.6719485914164 4400.176355913873 271.6258165636052 463.011653578159 4285.296570038116 271.6398350164233 674.7929102261242 4180.468529568216 271.6429661694633 678.0773008634542 4182.826411549177 271.6424990059391 841.5822193057179 2787.001155745111 271.8151425882534 844.8461652412216 2789.529846185642 271.8146543196855 1533.069582361217 2517.496892571582 271.8159442550698 1534.355582200043 2520.796479103447 271.8154536933967 1584.076817029504 2497.617039474839 271.8160033896396 1585.362816868331 2500.916626006703 271.8155128279662 1706.223762869668 5078.987625195714 271.4757969151646 1256.490253958077 5257.800600664585 271.4748180503931 1249.213667836554 5256.832238937785 271.4753022247396 1702.007233341884 5084.428511130534 271.4753003000988 1679.136350916862 5305.721777040719 271.4477788922896 1674.919821389077 5311.162662975541 271.4472822772232 1785.669963743451 5268.064454636318 271.4474026007151 1782.405666268965 5265.534718374439 271.4478910883035 1809.493078221743 5038.800566529362 271.4759085108221 1813.009410123354 5039.220658201752 271.47568071093 1921.430281722381 4101.850291771847 271.5916882763077 1924.69457637007 4104.380016050058 271.591199787268 2107.348864140422 4029.49919867366 271.5918896010974 2106.815883676794 4033.50665046853 271.5913970001196 4118.952888498089 5517.805568617146 271.3000463693993 4119.377305110387 5513.718032212376 271.3005546900548 4495.633342714035 5345.670416599172 271.3037617386741 4494.161433230029 5342.449461874475 271.3042513550099 660.7616702804457 4297.694718623562 271.6284815989017 665.0419138497855 4291.732591501223 271.6290425159649 416.7262760719791 4641.610378636463 271.5959873042845 406.3488015277994 4757.917833208196 271.5814419922837 402.5797302785668 4759.605821867015 271.5814092218628 419.5397922355924 4647.892614476676 271.5950353706661 603.9561320414896 4772.285474021946 271.5698413949365 606.7707131583243 4778.568453134978 271.5688893126019 1441.034040423703 5398.378840639508 271.4475213004287 1448.31062654522 5399.347202366314 271.4470371260816 591.5343864865313 4891.484723314859 271.5550218394737 593.5997141332964 4888.607624849736 271.5552925364687 1144.463417137082 5299.626616384659 271.4749259619852 1146.566325534044 5296.777257968762 271.475191215129 1337.853365341805 5442.331436560022 271.4469184301736 1338.386689842934 5438.323862892066 271.4474109969465 1441.034040423703 5398.378840639508 271.4475213004287 1338.386689842934 5438.323862892066 271.4474109969465 1448.31062654522 5399.347202366314 271.4470371260816 1337.853365341805 5442.331436560022 271.4469184301736 1146.566325534044 5296.777257968762 271.475191215129 1144.463417137082 5299.626616384659 271.4749259619852 593.5997141332964 4888.607624849736 271.5552925364687 591.5343864865313 4891.484723314859 271.5550218394737 406.3488015277994 4757.917833208196 271.5814419922837 402.5797302785668 4759.605821867015 271.5814092218628 1256.490253958077 5257.800600664585 271.4748180503931 1249.213667836554 5256.832238937785 271.4753022247396 665.0419138497855 4291.732591501223 271.6290425159649 660.7616702804457 4297.694718623562 271.6284815989017 606.7707131583243 4778.568453134978 271.5688893126019 603.9561320414896 4772.285474021946 271.5698413949365 419.5397922355924 4647.892614476676 271.5950353706661 416.7262760719791 4641.610378636463 271.5959873042845 449.953525051712 4394.213593722378 271.6263774971836 445.6719485914164 4400.176355913873 271.6258165636052 4494.161433230029 5342.449461874475 271.3042513550099 4119.377305110387 5513.718032212376 271.3005546900548 4495.633342714035 5345.670416599172 271.3037617386741 4118.952888498089 5517.805568617146 271.3000463693993 2107.348864140422 4029.49919867366 271.5918896010974 2106.815883676794 4033.50665046853 271.5913970001196 1924.69457637007 4104.380016050058 271.591199787268 1921.430281722381 4101.850291771847 271.5916882763077 1813.009410123354 5039.220658201752 271.47568071093 1809.493078221743 5038.800566529362 271.4759085108221 1785.669963743451 5268.064454636318 271.4474026007151 1782.405666268965 5265.534718374439 271.4478910883035 1679.136350916862 5305.721777040719 271.4477788922896 1674.919821389077 5311.162662975541 271.4472822772232 1706.223762869668 5078.987625195714 271.4757969151646 1702.007233341884 5084.428511130534 271.4753003000988 1585.362816868331 2500.916626006703 271.8155128279662 1584.076817029504 2497.617039474839 271.8160033896396 1534.355582200043 2520.796479103447 271.8154536933967 1533.069582361217 2517.496892571582 271.8159442550698 844.8461652412216 2789.529846185642 271.8146543196855 841.5822193057179 2787.001155745111 271.8151425882534 678.0773008634542 4182.826411549177 271.6424990059391 674.7929102261242 4180.468529568216 271.6429661694633 463.011653578159 4285.296570038116 271.6398350164233 459.7276673323577 4282.938495380813 271.6403021849561 1337.853190651714 5442.330977753865 267.9033376594587 1146.56615087452 5296.776799185154 267.9316104444094 1144.463242477552 5299.626157601055 267.9313451912652 1338.386515152843 5438.323404085909 267.903830226232 1448.310451706087 5399.346743618151 267.9034563553665 1441.033865584564 5398.37838189135 267.9039405297133 1256.490079074061 5257.800141883307 267.9312372796841 1249.213492952531 5256.831780156505 267.9317214540316 1785.66978899163 5268.06399582716 267.903821830003 1679.136176335673 5305.721318165168 267.904198121578 1674.919646807889 5311.162204099994 267.9037015065122 1782.405491517141 5265.534259565283 267.904310317592 1809.492903463928 5038.800107770348 267.9323277401039 1813.009235365539 5039.220199442738 267.9320999402119 1921.430106969799 4101.849832969045 268.0481075055951 1924.69440161749 4104.379557247249 268.0476190165555 2107.348689462141 4029.498739841937 268.0483088303847 2106.815708998504 4033.506191636809 268.0478162294075 4118.95271381766 5517.80510978385 267.7564655986869 4119.37713042997 5513.717573379084 267.7569739193434 4495.633167996437 5345.66995778287 267.7601809679611 4494.161258512432 5342.449003058167 267.7606705842979 1702.007058763643 5084.428052230262 267.9317195293905 1706.223588291435 5078.987166295426 267.9322161444565 1702.007058763643 5084.428052230262 267.9317195293905 1256.490079074061 5257.800141883307 267.9312372796841 1706.223588291435 5078.987166295426 267.9322161444565 1249.213492952531 5256.831780156505 267.9317214540316 1679.136176335673 5305.721318165168 267.904198121578 1674.919646807889 5311.162204099994 267.9037015065122 4494.161258512432 5342.449003058167 267.7606705842979 4495.633167996437 5345.66995778287 267.7601809679611 4119.37713042997 5513.717573379084 267.7569739193434 4118.95271381766 5517.80510978385 267.7564655986869 2107.348689462141 4029.498739841937 268.0483088303847 2106.815708998504 4033.506191636809 268.0478162294075 1924.69440161749 4104.379557247249 268.0476190165555 1921.430106969799 4101.849832969045 268.0481075055951 1813.009235365539 5039.220199442738 267.9320999402119 1809.492903463928 5038.800107770348 267.9323277401039 1785.66978899163 5268.06399582716 267.903821830003 1782.405491517141 5265.534259565283 267.904310317592 1448.310451706087 5399.346743618151 267.9034563553665 1441.033865584564 5398.37838189135 267.9039405297133 1338.386515152843 5438.323404085909 267.903830226232 1337.853190651714 5442.330977753865 267.9033376594587 1146.56615087452 5296.776799185154 267.9316104444094 1144.463242477552 5299.626157601055 267.9313451912652 1706.223588291435 5078.987166295426 267.9322161444565 1249.213667836554 5256.832238937785 271.4753022247396 1249.213492952531 5256.831780156505 267.9317214540316 1706.223762869668 5078.987625195714 271.4757969151646 1706.223762869668 5078.987625195714 271.4757969151646 1706.223588291435 5078.987166295426 267.9322161444565 1249.213667836554 5256.832238937785 271.4753022247396 1249.213492952531 5256.831780156505 267.9317214540316 591.5342118265785 4891.484264530942 268.0114410687538 406.3486268933375 4757.917374442064 268.0378612215608 402.579555644104 4759.605363100887 268.0378284511397 593.5995394733409 4888.607166065815 268.0117117657491 1144.463242477552 5299.626157601055 267.9313451912652 1146.56615087452 5296.776799185154 267.9316104444094 416.7261014274282 4641.609919954514 268.0524065335512 419.5396175910396 4647.892155794723 268.0514545999326 603.9559574076834 4772.285015347496 268.0262606242019 606.7705385245154 4778.567994460522 268.0253085418669 660.7614956646999 4297.694259798227 268.0849008281856 665.0417392340373 4291.732132675887 268.0854617452494 449.9533503832586 4394.213134922155 268.0827967264666 445.6717739229666 4400.175897113641 268.0822357928892 459.7274926595023 4282.938036617322 268.0967214142349 463.0114789053 4285.296111274634 268.0962542457019 674.7927355376669 4180.468070812171 268.0993853987415 678.0771261749978 4182.825952793128 268.0989182352173 841.5820446168909 2787.000696992142 268.2715618175309 844.8459905523928 2789.529387432678 268.2710735489636 1533.069407672401 2517.496433818612 268.2723634843481 1534.355407511226 2520.796020350474 268.2718729226754 1584.076642340685 2497.616580721872 268.272422618917 1585.362642179513 2500.916167253734 268.2719320572443 1585.362642179513 2500.916167253734 268.2719320572443 1534.355407511226 2520.796020350474 268.2718729226754 1584.076642340685 2497.616580721872 268.272422618917 1533.069407672401 2517.496433818612 268.2723634843481 844.8459905523928 2789.529387432678 268.2710735489636 841.5820446168909 2787.000696992142 268.2715618175309 678.0771261749978 4182.825952793128 268.0989182352173 674.7927355376669 4180.468070812171 268.0993853987415 463.0114789053 4285.296111274634 268.0962542457019 459.7274926595023 4282.938036617322 268.0967214142349 449.9533503832586 4394.213134922155 268.0827967264666 445.6717739229666 4400.175897113641 268.0822357928892 665.0417392340373 4291.732132675887 268.0854617452494 660.7614956646999 4297.694259798227 268.0849008281856 606.7705385245154 4778.567994460522 268.0253085418669 603.9559574076834 4772.285015347496 268.0262606242019 419.5396175910396 4647.892155794723 268.0514545999326 416.7261014274282 4641.609919954514 268.0524065335512 406.3486268933375 4757.917374442064 268.0378612215608 402.579555644104 4759.605363100887 268.0378284511397 1146.56615087452 5296.776799185154 267.9316104444094 1144.463242477552 5299.626157601055 267.9313451912652 593.5995394733409 4888.607166065815 268.0117117657491 591.5342118265785 4891.484264530942 268.0114410687538</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"204\" source=\"#ID5590\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5588\">\r\n\t\t\t\t\t<float_array count=\"612\" id=\"ID5591\">0.3626560860507246 0.9319230354775031 -0.0001385523939107266 0.3626560860507246 0.9319230354775031 -0.0001385523939107266 0.3626560860507246 0.9319230354775031 -0.0001385523939107266 0.3626560860507246 0.9319230354775031 -0.0001385523939107266 -0.3626560860507246 -0.9319230354775031 0.0001385523939107266 -0.3626560860507246 -0.9319230354775031 0.0001385523939107266 -0.3626560860507246 -0.9319230354775031 0.0001385523939107266 -0.3626560860507246 -0.9319230354775031 0.0001385523939107266 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 4.929709435841411e-005 0.0001294603626036534 0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929709435841411e-005 -0.0001294603626036534 -0.9999999904049055 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 -4.929725279672214e-005 -0.0001294602824599789 -0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 4.929725279672214e-005 0.0001294602824599789 0.9999999904049081 -0.3626560860507243 -0.9319230354775032 0.0001385523943762043 -0.3626560860507243 -0.9319230354775032 0.0001385523943762043 -0.3626560860507243 -0.9319230354775032 0.0001385523943762043 -0.3626560860507243 -0.9319230354775032 0.0001385523943762043 0.3626560860507243 0.9319230354775032 -0.0001385523943762043 0.3626560860507243 0.9319230354775032 -0.0001385523943762043 0.3626560860507243 0.9319230354775032 -0.0001385523943762043 0.3626560860507243 0.9319230354775032 -0.0001385523943762043 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 -4.929660679566589e-005 -0.000129460307706713 -0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366 4.929660679566589e-005 0.000129460307706713 0.9999999904049366</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"204\" source=\"#ID5591\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5589\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5587\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5588\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"92\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5589\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 11 8 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 17 18 19 20 21 22 21 20 23 23 24 25 24 23 20 24 26 25 26 24 27 26 27 28 26 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 34 32 35 34 35 36 36 35 37 9 38 10 38 9 39 40 41 42 41 40 43 43 40 44 43 44 45 45 44 38 45 38 39 21 46 22 46 21 47 41 48 42 48 41 49 48 49 50 50 49 51 50 51 52 52 51 53 52 53 47 47 53 46 100 101 102 101 100 103 103 100 104 103 104 105 105 106 107 106 105 104 108 109 110 109 108 111 111 108 112 112 108 113 112 113 114 114 113 115 114 115 116 116 115 117 116 117 118 116 118 119 119 118 120 119 120 121 109 122 110 122 109 123 106 123 107 123 106 122 148 149 150 149 148 151 156 157 158 157 156 159 159 156 160 159 160 161 157 162 158 162 157 163 162 163 164 164 163 165 164 165 166 166 165 167 166 168 169 168 166 167 168 170 169 170 168 171 170 171 172 172 171 173 172 173 174 174 173 175 174 175 176 176 175 177 176 177 178 178 177 179</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"92\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5589\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 54 55 56 56 55 57 55 58 57 57 58 59 58 60 59 59 60 61 60 62 61 63 61 62 56 64 54 65 54 64 66 67 68 67 69 68 68 69 70 69 71 70 70 71 62 63 62 71 66 72 67 73 67 72 74 75 76 76 75 77 75 78 77 77 78 79 79 78 80 78 81 80 80 81 82 81 83 82 82 83 84 83 85 84 85 86 84 87 84 86 88 89 86 87 86 89 89 88 64 65 64 88 90 91 92 91 93 92 92 93 94 93 95 94 94 95 96 95 97 96 96 97 98 97 99 98 98 99 72 73 72 99 124 125 126 127 126 125 126 128 124 129 124 128 130 131 132 131 133 132 132 133 134 133 135 134 135 136 134 134 136 137 136 138 137 137 138 139 138 140 139 139 140 141 141 140 128 129 128 140 142 143 125 127 125 143 143 142 144 142 145 144 144 145 146 147 146 145 152 153 154 155 154 153 180 181 182 182 181 183 181 184 183 183 184 185 184 186 185 185 186 187 186 188 187 187 188 189 188 190 189 191 189 190 192 193 190 191 190 193 192 194 193 193 194 195 194 196 195 195 196 197 196 198 197 199 197 198 200 201 202 201 203 202 202 203 198 199 198 203</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5592\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5593\">\r\n\t\t\t\t\t<float_array count=\"324\" id=\"ID5596\">1949.100526715475 2021.365418819194 272.1932425939588 1951.362561722237 2032.341106000395 272.1917722033037 1947.843595361656 2031.922101843788 272.1919998928178 1952.619492802369 2021.784425254647 272.1930149041717 1952.619492802369 2021.784425254647 272.1930149041717 1949.100526715475 2021.365418819194 272.1932425939588 1951.362561722237 2032.341106000395 272.1917722033037 1947.843595361656 2031.922101843788 272.1919998928178 1949.100526715475 2021.365418819194 272.1932425939588 1947.843416082239 2031.921681881691 268.6486928359399 1949.100347162376 2021.365001135925 268.6499355368106 1947.843595361656 2031.922101843788 272.1919998928178 1947.843595361656 2031.922101843788 272.1919998928178 1949.100526715475 2021.365418819194 272.1932425939588 1947.843416082239 2031.921681881691 268.6486928359399 1949.100347162376 2021.365001135925 268.6499355368106 1952.619492802369 2021.784425254647 272.1930149041717 1949.100347162376 2021.365001135925 268.6499355368106 1952.619318152626 2021.783966549745 268.6497078214328 1949.100526715475 2021.365418819194 272.1932425939588 1949.100526715475 2021.365418819194 272.1932425939588 1952.619492802369 2021.784425254647 272.1930149041717 1949.100347162376 2021.365001135925 268.6499355368106 1952.619318152626 2021.783966549745 268.6497078214328 1951.362387072484 2032.340647295507 268.6484651205598 1952.619492802369 2021.784425254647 272.1930149041717 1952.619318152626 2021.783966549745 268.6497078214328 1951.362561722237 2032.341106000395 272.1917722033037 1951.362561722237 2032.341106000395 272.1917722033037 1951.362387072484 2032.340647295507 268.6484651205598 1952.619492802369 2021.784425254647 272.1930149041717 1952.619318152626 2021.783966549745 268.6497078214328 1958.399595940891 2033.182146573495 272.1913164475274 1947.843416082239 2031.921681881691 268.6486928359399 1958.399416391171 2033.181728890632 268.6480093903865 1947.843595361656 2031.922101843788 272.1919998928178 1947.843595361656 2031.922101843788 272.1919998928178 1958.399595940891 2033.182146573495 272.1913164475274 1947.843416082239 2031.921681881691 268.6486928359399 1958.399416391171 2033.181728890632 268.6480093903865 1947.843595361656 2031.922101843788 272.1919998928178 1947.423442961028 2035.439998434835 268.6482993801956 1947.843416082239 2031.921681881691 268.6486928359399 1947.423627413152 2035.440375095958 272.1916064419315 1947.423627413152 2035.440375095958 272.1916064419315 1947.843595361656 2031.922101843788 272.1919998928178 1947.423442961028 2035.439998434835 268.6482993801956 1947.843416082239 2031.921681881691 268.6486928359399 1964.8962138417 1978.824613002608 272.1973948776493 1958.399416391171 2033.181728890632 268.6480093903865 1964.896029389562 1978.824236341496 268.6540878159125 1958.399595940891 2033.182146573495 272.1913164475274 1958.399595940891 2033.182146573495 272.1913164475274 1964.8962138417 1978.824613002608 272.1973948776493 1958.399416391171 2033.181728890632 268.6480093903865 1964.896029389562 1978.824236341496 268.6540878159125 1947.843595361656 2031.922101843788 272.1919998928178 1961.497519740345 2037.12087542227 272.1906951721998 1947.423627413152 2035.440375095958 272.1916064419315 1958.399595940891 2033.182146573495 272.1913164475274 1964.8962138417 1978.824613002608 272.1973948776493 1968.414105589648 1979.245068599212 272.1971670532024 1968.414105589648 1979.245068599212 272.1971670532024 1964.8962138417 1978.824613002608 272.1973948776493 1961.497519740345 2037.12087542227 272.1906951721998 1958.399595940891 2033.182146573495 272.1913164475274 1947.843595361656 2031.922101843788 272.1919998928178 1947.423627413152 2035.440375095958 272.1916064419315 1961.497345093984 2037.120416717766 268.6473881206075 1947.843416082239 2031.921681881691 268.6486928359399 1947.423442961028 2035.439998434835 268.6482993801956 1958.399416391171 2033.181728890632 268.6480093903865 1964.896029389562 1978.824236341496 268.6540878159125 1968.413930943279 1979.244609894706 268.6538600016065 1968.413930943279 1979.244609894706 268.6538600016065 1961.497345093984 2037.120416717766 268.6473881206075 1964.896029389562 1978.824236341496 268.6540878159125 1958.399416391171 2033.181728890632 268.6480093903865 1947.843416082239 2031.921681881691 268.6486928359399 1947.423442961028 2035.439998434835 268.6482993801956 1947.423442961028 2035.439998434835 268.6482993801956 1961.497519740345 2037.12087542227 272.1906951721998 1961.497345093984 2037.120416717766 268.6473881206075 1947.423627413152 2035.440375095958 272.1916064419315 1947.423627413152 2035.440375095958 272.1916064419315 1947.423442961028 2035.439998434835 268.6482993801956 1961.497519740345 2037.12087542227 272.1906951721998 1961.497345093984 2037.120416717766 268.6473881206075 1964.8962138417 1978.824613002608 272.1973948776493 1964.896029389562 1978.824236341496 268.6540878159125 1968.414105589648 1979.245068599212 272.1971670532024 1968.414105589648 1979.245068599212 272.1971670532024 1964.896029389562 1978.824236341496 268.6540878159125 1964.8962138417 1978.824613002608 272.1973948776493 1961.497345093984 2037.120416717766 268.6473881206075 1968.414105589648 1979.245068599212 272.1971670532024 1968.413930943279 1979.244609894706 268.6538600016065 1961.497519740345 2037.12087542227 272.1906951721998 1961.497519740345 2037.12087542227 272.1906951721998 1961.497345093984 2037.120416717766 268.6473881206075 1968.414105589648 1979.245068599212 272.1971670532024 1968.413930943279 1979.244609894706 268.6538600016065 1968.414105589648 1979.245068599212 272.1971670532024 1964.896029389562 1978.824236341496 268.6540878159125 1968.413930943279 1979.244609894706 268.6538600016065 1968.413930943279 1979.244609894706 268.6538600016065 1964.896029389562 1978.824236341496 268.6540878159125 1968.414105589648 1979.245068599212 272.1971670532024</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"108\" source=\"#ID5596\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5594\">\r\n\t\t\t\t\t<float_array count=\"324\" id=\"ID5597\">4.997838094442336e-005 0.0001236676821955863 0.999999991104233 4.997838094442336e-005 0.0001236676821955863 0.999999991104233 4.997838094442336e-005 0.0001236676821955863 0.999999991104233 4.997838094442336e-005 0.0001236676821955863 0.999999991104233 -4.997838094442336e-005 -0.0001236676821955863 -0.999999991104233 -4.997838094442336e-005 -0.0001236676821955863 -0.999999991104233 -4.997838094442336e-005 -0.0001236676821955863 -0.999999991104233 -4.997838094442336e-005 -0.0001236676821955863 -0.999999991104233 -0.9929862481843719 -0.1182298895712017 6.425501154734732e-005 -0.9929862481843719 -0.1182298895712017 6.425501154734732e-005 -0.9929862481843719 -0.1182298895712017 6.425501154734732e-005 -0.9929862481843719 -0.1182298895712017 6.425501154734732e-005 0.9929862481843719 0.1182298895712017 -6.425501154734732e-005 0.9929862481843719 0.1182298895712017 -6.425501154734732e-005 0.9929862481843719 0.1182298895712017 -6.425501154734732e-005 0.9929862481843719 0.1182298895712017 -6.425501154734732e-005 0.118229896357172 -0.9929862425752837 0.0001168913695875279 0.118229896357172 -0.9929862425752837 0.0001168913695875279 0.118229896357172 -0.9929862425752837 0.0001168913695875279 0.118229896357172 -0.9929862425752837 0.0001168913695875279 -0.118229896357172 0.9929862425752837 -0.0001168913695875279 -0.118229896357172 0.9929862425752837 -0.0001168913695875279 -0.118229896357172 0.9929862425752837 -0.0001168913695875279 -0.118229896357172 0.9929862425752837 -0.0001168913695875279 0.9929862481976094 0.1182298894627548 -6.424998444911072e-005 0.9929862481976094 0.1182298894627548 -6.424998444911072e-005 0.9929862481976094 0.1182298894627548 -6.424998444911072e-005 0.9929862481976094 0.1182298894627548 -6.424998444911072e-005 -0.9929862481976094 -0.1182298894627548 6.424998444911072e-005 -0.9929862481976094 -0.1182298894627548 6.424998444911072e-005 -0.9929862481976094 -0.1182298894627548 6.424998444911072e-005 -0.9929862481976094 -0.1182298894627548 6.424998444911072e-005 0.1185263083635545 -0.9929509060488673 0.0001113662483073093 0.1185263083635545 -0.9929509060488673 0.0001113662483073093 0.1185263083635545 -0.9929509060488673 0.0001113662483073093 0.1185263083635545 -0.9929509060488673 0.0001113662483073093 -0.1185263083635545 0.9929509060488673 -0.0001113662483073093 -0.1185263083635545 0.9929509060488673 -0.0001113662483073093 -0.1185263083635545 0.9929509060488673 -0.0001113662483073093 -0.1185263083635545 0.9929509060488673 -0.0001113662483073093 -0.9929509238272247 -0.1185261943101226 6.428856986537626e-005 -0.9929509238272247 -0.1185261943101226 6.428856986537626e-005 -0.9929509238272247 -0.1185261943101226 6.428856986537626e-005 -0.9929509238272247 -0.1185261943101226 6.428856986537626e-005 0.9929509238272247 0.1185261943101226 -6.428856986537626e-005 0.9929509238272247 0.1185261943101226 -6.428856986537626e-005 0.9929509238272247 0.1185261943101226 -6.428856986537626e-005 0.9929509238272247 0.1185261943101226 -6.428856986537626e-005 -0.9929335258509637 -0.118671854734812 6.430375770182656e-005 -0.9929335258509637 -0.118671854734812 6.430375770182656e-005 -0.9929335258509637 -0.118671854734812 6.430375770182656e-005 -0.9929335258509637 -0.118671854734812 6.430375770182656e-005 0.9929335258509637 0.118671854734812 -6.430375770182656e-005 0.9929335258509637 0.118671854734812 -6.430375770182656e-005 0.9929335258509637 0.118671854734812 -6.430375770182656e-005 0.9929335258509637 0.118671854734812 -6.430375770182656e-005 5.067352934977798e-005 0.0001178794504436711 0.9999999917683143 5.067352934977798e-005 0.0001178794504436711 0.9999999917683143 5.067352934977798e-005 0.0001178794504436711 0.9999999917683143 5.067352934977798e-005 0.0001178794504436711 0.9999999917683143 5.067352934977798e-005 0.0001178794504436711 0.9999999917683143 5.067352934977798e-005 0.0001178794504436711 0.9999999917683143 -5.067352934977798e-005 -0.0001178794504436711 -0.9999999917683143 -5.067352934977798e-005 -0.0001178794504436711 -0.9999999917683143 -5.067352934977798e-005 -0.0001178794504436711 -0.9999999917683143 -5.067352934977798e-005 -0.0001178794504436711 -0.9999999917683143 -5.067352934977798e-005 -0.0001178794504436711 -0.9999999917683143 -5.067352934977798e-005 -0.0001178794504436711 -0.9999999917683143 -5.067347291001668e-005 -0.0001178794412506436 -0.9999999917683182 -5.067347291001668e-005 -0.0001178794412506436 -0.9999999917683182 -5.067347291001668e-005 -0.0001178794412506436 -0.9999999917683182 -5.067347291001668e-005 -0.0001178794412506436 -0.9999999917683182 -5.067347291001668e-005 -0.0001178794412506436 -0.9999999917683182 -5.067347291001668e-005 -0.0001178794412506436 -0.9999999917683182 5.067347291001668e-005 0.0001178794412506436 0.9999999917683182 5.067347291001668e-005 0.0001178794412506436 0.9999999917683182 5.067347291001668e-005 0.0001178794412506436 0.9999999917683182 5.067347291001668e-005 0.0001178794412506436 0.9999999917683182 5.067347291001668e-005 0.0001178794412506436 0.9999999917683182 5.067347291001668e-005 0.0001178794412506436 0.9999999917683182 -0.1185603975936961 0.9929468363374279 -0.000111040164431072 -0.1185603975936961 0.9929468363374279 -0.000111040164431072 -0.1185603975936961 0.9929468363374279 -0.000111040164431072 -0.1185603975936961 0.9929468363374279 -0.000111040164431072 0.1185603975936961 -0.9929468363374279 0.000111040164431072 0.1185603975936961 -0.9929468363374279 0.000111040164431072 0.1185603975936961 -0.9929468363374279 0.000111040164431072 0.1185603975936961 -0.9929468363374279 0.000111040164431072 0.1186745847084522 -0.9929331966800465 9.937313836582863e-005 0.1186745847084522 -0.9929331966800465 9.937313836582863e-005 0.1186745847084522 -0.9929331966800465 9.937313836582863e-005 -0.1186745847084522 0.9929331966800465 -9.937313836582863e-005 -0.1186745847084522 0.9929331966800465 -9.937313836582863e-005 -0.1186745847084522 0.9929331966800465 -9.937313836582863e-005 0.9929345840718187 0.1186630002119741 -6.430254724979867e-005 0.9929345840718187 0.1186630002119741 -6.430254724979867e-005 0.9929345840718187 0.1186630002119741 -6.430254724979867e-005 0.9929345840718187 0.1186630002119741 -6.430254724979867e-005 -0.9929345840718187 -0.1186630002119741 6.430254724979867e-005 -0.9929345840718187 -0.1186630002119741 6.430254724979867e-005 -0.9929345840718187 -0.1186630002119741 6.430254724979867e-005 -0.9929345840718187 -0.1186630002119741 6.430254724979867e-005 0.1186514289177519 -0.992935961360038 0.0001226938989656642 0.1186514289177519 -0.992935961360038 0.0001226938989656642 0.1186514289177519 -0.992935961360038 0.0001226938989656642 -0.1186514289177519 0.992935961360038 -0.0001226938989656642 -0.1186514289177519 0.992935961360038 -0.0001226938989656642 -0.1186514289177519 0.992935961360038 -0.0001226938989656642</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"108\" source=\"#ID5597\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5595\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5593\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5594\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"56\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5595\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 20 21 22 23 22 21 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 44 45 46 47 46 45 48 49 50 49 48 51 52 53 54 55 54 53 56 57 58 57 56 59 57 59 60 57 60 61 62 63 64 63 65 64 65 66 64 67 64 66 68 69 70 69 68 71 71 68 72 72 68 73 74 75 76 76 75 77 77 75 78 79 78 75 80 81 82 81 80 83 84 85 86 87 86 85 88 89 90 91 92 93 94 95 96 95 94 97 98 99 100 101 100 99 102 103 104 105 106 107</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5598\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5599\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5602\">641.0813034735234 4438.418417003288 5.662844022105615 643.3688674479413 4419.278698411434 5.665474718251948 636.1272701875332 4429.489884767494 5.664390148307614 653.2769340199034 4437.135762883036 5.662382465846832 655.5644979943213 4417.996044291185 5.665013161993814 660.5185312803087 4426.924576526987 5.663467035790779 660.5185312803087 4426.924576526987 5.663467035790779 653.2769340199034 4437.135762883036 5.662382465846832 655.5644979943213 4417.996044291185 5.665013161993814 643.3688674479413 4419.278698411434 5.665474718251948 641.0813034735234 4438.418417003288 5.662844022105615 636.1272701875332 4429.489884767494 5.664390148307614</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5602\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5600\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5603\">-5.296759246829416e-005 -0.0001437776035678401 -0.9999999882612175 -5.296759246829416e-005 -0.0001437776035678401 -0.9999999882612175 -5.296759246829416e-005 -0.0001437776035678401 -0.9999999882612175 -5.296759246829416e-005 -0.0001437776035678401 -0.9999999882612175 -5.296759246829416e-005 -0.0001437776035678401 -0.9999999882612175 -5.296759246829416e-005 -0.0001437776035678401 -0.9999999882612175 5.296759246829416e-005 0.0001437776035678401 0.9999999882612175 5.296759246829416e-005 0.0001437776035678401 0.9999999882612175 5.296759246829416e-005 0.0001437776035678401 0.9999999882612175 5.296759246829416e-005 0.0001437776035678401 0.9999999882612175 5.296759246829416e-005 0.0001437776035678401 0.9999999882612175 5.296759246829416e-005 0.0001437776035678401 0.9999999882612175</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5603\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5601\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5599\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5600\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5601\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 6 7 8 8 7 9 7 10 9 11 9 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5604\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5605\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5608\">613.4410884585204 4669.660604949578 5.663522170642555 615.7286524329406 4650.520886357725 5.666152866789242 608.4870551725353 4660.732072713787 5.665068296845092 625.6367190049045 4668.377950829326 5.663060614383594 627.9242829793247 4649.238232237474 5.66569131053075 632.8783162653072 4658.166764473274 5.664145184327968 632.8783162653072 4658.166764473274 5.664145184327968 625.6367190049045 4668.377950829326 5.663060614383594 627.9242829793247 4649.238232237474 5.66569131053075 615.7286524329406 4650.520886357725 5.666152866789242 613.4410884585204 4669.660604949578 5.663522170642555 608.4870551725353 4660.732072713787 5.665068296845092</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5608\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5606\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID5609\">-5.296759246832907e-005 -0.0001437776035676946 -0.9999999882612175 -5.296759246832907e-005 -0.0001437776035676946 -0.9999999882612175 -5.296759246832907e-005 -0.0001437776035676946 -0.9999999882612175 -5.296759246832907e-005 -0.0001437776035676946 -0.9999999882612175 -5.296759246832907e-005 -0.0001437776035676946 -0.9999999882612175 -5.296759246832907e-005 -0.0001437776035676946 -0.9999999882612175 5.296759246832907e-005 0.0001437776035676946 0.9999999882612175 5.296759246832907e-005 0.0001437776035676946 0.9999999882612175 5.296759246832907e-005 0.0001437776035676946 0.9999999882612175 5.296759246832907e-005 0.0001437776035676946 0.9999999882612175 5.296759246832907e-005 0.0001437776035676946 0.9999999882612175 5.296759246832907e-005 0.0001437776035676946 0.9999999882612175</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID5609\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5607\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5605\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5606\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5607\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 6 7 8 8 7 9 7 10 9 11 9 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5610\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5611\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5615\">1835.093750377338 4068.331441860845 391.8909000256418 1936.944022212094 4028.676235195544 249.3449663251792 1835.086732608606 4068.313010822901 249.3448559326997 1936.95103998083 4028.694666233489 391.8910104181229 1936.95103998083 4028.694666233489 391.8910104181229 1835.093750377338 4068.331441860845 391.8909000256418 1936.944022212094 4028.676235195544 249.3449663251792 1835.086732608606 4068.313010822901 249.3448559326997</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5615\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5612\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5616\">0.3626497618961021 0.9319254965155648 -0.0001383507094761825 0.3626497618961021 0.9319254965155648 -0.0001383507094761825 0.3626497618961021 0.9319254965155648 -0.0001383507094761825 0.3626497618961021 0.9319254965155648 -0.0001383507094761825 -0.3626497618961021 -0.9319254965155648 0.0001383507094761825 -0.3626497618961021 -0.9319254965155648 0.0001383507094761825 -0.3626497618961021 -0.9319254965155648 0.0001383507094761825 -0.3626497618961021 -0.9319254965155648 0.0001383507094761825</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5616\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5614\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID5617\">24.99999997697711 153.4728161076241 25.22696634751418 153.0304601813392 25.00000033925048 153.0304595016653 25.22696598524082 153.472816787298</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5617\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5613\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5611\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5612\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5613\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5614\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5613\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5618\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5619\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5622\">1951.362387072484 2032.340647295507 268.6484651205598 1949.100347162376 2021.365001135925 268.6499355368106 1947.843416082239 2031.921681881691 268.6486928359399 1952.619318152626 2021.783966549745 268.6497078214328 1947.843416082239 2031.921681881691 268.6486928359399 1951.362561722237 2032.341106000395 272.1917722033037 1951.362387072484 2032.340647295507 268.6484651205598 1947.843595361656 2031.922101843788 272.1919998928178</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5622\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5620\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5623\">-4.998690550130124e-005 -0.0001236686973498261 -0.9999999911036813 -4.998690550130124e-005 -0.0001236686973498261 -0.9999999911036813 -4.998690550130124e-005 -0.0001236686973498261 -0.9999999911036813 -4.998690550130124e-005 -0.0001236686973498261 -0.9999999911036813 -0.1182295748099818 0.9929862808220628 -0.000117215266438063 -0.1182295748099818 0.9929862808220628 -0.000117215266438063 -0.1182295748099818 0.9929862808220628 -0.000117215266438063 -0.1182295748099818 0.9929862808220628 -0.000117215266438063</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5623\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5621\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5619\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5620\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5621\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5624\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5625\">\r\n\t\t\t\t\t<float_array count=\"378\" id=\"ID5628\">1955.819039794625 2026.350058198709 245.696478675398 1981.048062651154 1847.128530272127 245.7184370598012 1964.837199358604 2033.833448249482 245.6950653030256 2048.610700525378 1249.977023085212 245.792413806869 1981.468563167612 1843.610262826784 245.7188718059384 1995.531968799141 1725.943770416883 245.733411648016 1984.986830424009 1844.03076326572 245.7186438922581 1995.952469315602 1722.42550297154 245.7338463941536 2010.015874524865 1604.759010633326 245.748386236242 1999.470736571988 1722.846003410477 245.7336184804734 2010.436375041315 1601.240743187982 245.7488209823799 2024.499780250599 1483.574250849756 245.7633608244688 2013.954642297713 1601.66124362692 245.7485930686998 2024.920280767057 1480.055983404411 245.7637955706062 2028.438548023446 1480.476483843349 245.763567656926 2038.983685976343 1362.389491066195 245.7783354126952 2039.404186492805 1358.871223620851 245.778770158833 2042.922453749195 1359.291724059788 245.7785422451526 1984.566329915886 1847.549030709374 245.7182091461207 2057.682919378723 1257.008107678344 245.7910563251213 1999.050236063863 1726.36427085413 245.7331837343355 2013.534141789586 1605.179511070571 245.7481583225619 2028.018047515322 1483.994751287 245.7631329107883 2042.501953241067 1362.809991503439 245.7781074990147 2065.543774947588 1247.304489724283 245.791924877736 3412.779503827326 719.1151842904471 245.7938741787423 2063.679265176941 1251.672537227602 245.7914513176303 2179.301634439041 1203.092704190491 245.7920395404416 2066.774811719881 1250.467915381255 245.7914546375973 2177.466230574207 1207.392564344378 245.7915733728397 2293.059493844374 1158.880918435336 245.7921542031802 2180.513454127615 1206.206747231903 245.7915766409804 2291.253195754968 1163.112591545269 245.7916954280488 2406.817353378744 1114.669133011807 245.7922688658693 2294.252096535325 1161.945579082415 245.7916986443638 2405.040161260185 1118.832618619972 245.7918174832587 2520.5752128528 1070.457347433255 245.7923835285815 2407.990738943055 1117.684410933003 245.7918206477469 2518.827126613719 1074.55264575369 245.7919395384682 2634.333072416287 1026.245562084514 245.7924981912593 2521.729381350781 1073.423242783572 245.7919426511303 2632.61409219216 1030.272672799852 245.792061593678 2748.090931824614 982.0337763370885 245.792612853997 2635.468023758503 1029.162074634113 245.7920646545137 2746.401057380422 985.9926999979093 245.7921836488873 2861.848791275848 937.8219906999514 245.7927275167178 2749.206666166233 984.9009064847076 245.7921866578968 2860.188022676604 941.7127271539587 245.7923057040969 2975.606650748098 893.610205116795 245.7928421794307 2862.945308573948 940.6397383352951 245.7923086612797 2973.974988025595 897.4327542894753 245.7924277593063 3089.364510290877 849.398419714837 245.7929568421173 2976.683950981673 896.3785701859006 245.7924306646634 3087.761953551956 853.1527813559289 245.7925498145161 3203.122369832149 805.1866343090519 245.7930715048035 3090.422593389409 852.1174020364574 245.7925526680465 3201.548919074528 808.8728084238901 245.7926718697255 3204.161235797131 807.8562338870522 245.7926746714298 3316.959654299319 761.1789486670257 245.7931558282505 3315.535605058934 764.5151150025313 245.7927941391252 3317.89987837762 763.5950657478416 245.7927966748034 3421.849465756069 726.1467619985817 245.7925245114649 3423.175323498707 715.069676077238 245.7938855316912 3423.175323498707 715.069676077238 245.7938855316912 3412.779503827326 719.1151842904471 245.7938741787423 3421.849465756069 726.1467619985817 245.7925245114649 3317.89987837762 763.5950657478416 245.7927966748034 3315.535605058934 764.5151150025313 245.7927941391252 3204.161235797131 807.8562338870522 245.7926746714298 3201.548919074528 808.8728084238901 245.7926718697255 3090.422593389409 852.1174020364574 245.7925526680465 3087.761953551956 853.1527813559289 245.7925498145161 2976.683950981673 896.3785701859006 245.7924306646634 2973.974988025595 897.4327542894753 245.7924277593063 2862.945308573948 940.6397383352951 245.7923086612797 2860.188022676604 941.7127271539587 245.7923057040969 2749.206666166233 984.9009064847076 245.7921866578968 2746.401057380422 985.9926999979093 245.7921836488873 2635.468023758503 1029.162074634113 245.7920646545137 2632.61409219216 1030.272672799852 245.792061593678 2521.729381350781 1073.423242783572 245.7919426511303 2518.827126613719 1074.55264575369 245.7919395384682 2407.990738943055 1117.684410933003 245.7918206477469 2405.040161260185 1118.832618619972 245.7918174832587 2294.252096535325 1161.945579082415 245.7916986443638 2291.253195754968 1163.112591545269 245.7916954280488 2180.513454127615 1206.206747231903 245.7915766409804 2177.466230574207 1207.392564344378 245.7915733728397 2066.774811719881 1250.467915381255 245.7914546375973 2063.679265176941 1251.672537227602 245.7914513176303 2057.682919378723 1257.008107678344 245.7910563251213 3316.959654299319 761.1789486670257 245.7931558282505 3203.122369832149 805.1866343090519 245.7930715048035 3089.364510290877 849.398419714837 245.7929568421173 2975.606650748098 893.610205116795 245.7928421794307 2861.848791275848 937.8219906999514 245.7927275167178 2748.090931824614 982.0337763370885 245.792612853997 2634.333072416287 1026.245562084514 245.7924981912593 2520.5752128528 1070.457347433255 245.7923835285815 2406.817353378744 1114.669133011807 245.7922688658693 2293.059493844374 1158.880918435336 245.7921542031802 2179.301634439041 1203.092704190491 245.7920395404416 2065.543774947588 1247.304489724283 245.791924877736 2048.610700525378 1249.977023085212 245.792413806869 2042.922453749195 1359.291724059788 245.7785422451526 2042.501953241067 1362.809991503439 245.7781074990147 2038.983685976343 1362.389491066195 245.7783354126952 2028.438548023446 1480.476483843349 245.763567656926 2028.018047515322 1483.994751287 245.7631329107883 2024.499780250599 1483.574250849756 245.7633608244688 2013.954642297713 1601.66124362692 245.7485930686998 2013.534141789586 1605.179511070571 245.7481583225619 2010.015874524865 1604.759010633326 245.748386236242 1999.470736571988 1722.846003410477 245.7336184804734 1999.050236063863 1726.36427085413 245.7331837343355 1995.531968799141 1725.943770416883 245.733411648016 1984.986830424009 1844.03076326572 245.7186438922581 1984.566329915886 1847.549030709374 245.7182091461207 1981.048062651154 1847.128530272127 245.7184370598012 1964.837199358604 2033.833448249482 245.6950653030256 2039.404186492805 1358.871223620851 245.778770158833 2024.920280767057 1480.055983404411 245.7637955706062 2010.436375041315 1601.240743187982 245.7488209823799 1995.952469315602 1722.42550297154 245.7338463941536 1981.468563167612 1843.610262826784 245.7188718059384 1955.819039794625 2026.350058198709 245.696478675398</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"126\" source=\"#ID5628\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5626\">\r\n\t\t\t\t\t<float_array count=\"378\" id=\"ID5629\">4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 4.930697424992469e-005 0.0001294613751545979 0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872 -4.930697424992469e-005 -0.0001294613751545979 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"126\" source=\"#ID5629\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5627\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5625\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5626\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"190\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5627\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 5 3 7 7 3 8 7 8 9 8 3 10 10 3 11 10 11 12 11 3 13 13 3 14 14 3 15 15 3 16 16 3 17 2 18 19 18 2 1 19 18 6 19 6 20 20 6 5 19 20 9 19 9 21 21 9 8 19 21 12 19 12 22 22 12 11 19 22 14 19 14 23 23 14 15 19 23 17 19 17 3 19 3 24 24 3 25 19 24 26 24 25 27 24 27 28 28 27 29 27 25 30 27 30 31 31 30 32 30 25 33 30 33 34 34 33 35 33 25 36 33 36 37 37 36 38 36 25 39 36 39 40 40 39 41 39 25 42 39 42 43 43 42 44 42 25 45 42 45 46 46 45 47 45 25 48 45 48 49 49 48 50 48 25 51 48 51 52 52 51 53 51 25 54 51 54 55 55 54 56 54 25 57 57 25 58 57 58 59 58 25 60 26 61 19 61 26 28 61 28 29 61 29 31 61 31 32 61 32 34 61 34 35 61 35 37 61 37 38 61 38 40 61 40 41 61 41 43 61 43 44 61 44 46 61 46 47 61 47 49 61 49 50 61 50 52 61 52 53 61 53 55 61 55 56 61 56 57 61 57 59 61 59 60 61 60 25 61 25 62 63 64 65 64 66 65 66 67 65 67 68 65 68 69 65 69 70 65 70 71 65 71 72 65 72 73 65 73 74 65 74 75 65 75 76 65 76 77 65 77 78 65 78 79 65 79 80 65 80 81 65 81 82 65 82 83 65 83 84 65 84 85 65 85 86 65 86 87 65 87 88 65 88 89 65 90 65 89 66 64 91 67 91 68 91 64 68 68 64 92 69 92 70 70 92 93 92 64 93 71 93 72 72 93 94 93 64 94 73 94 74 74 94 95 94 64 95 75 95 76 76 95 96 95 64 96 77 96 78 78 96 97 96 64 97 79 97 80 80 97 98 97 64 98 81 98 82 82 98 99 98 64 99 83 99 84 84 99 100 99 64 100 85 100 86 86 100 101 100 64 101 87 101 88 88 101 102 101 64 102 89 102 90 64 103 102 102 103 90 103 104 90 104 105 90 106 107 105 105 107 90 107 108 90 109 110 108 108 110 90 110 111 90 112 113 111 111 113 90 113 114 90 115 116 114 114 116 90 116 117 90 118 119 117 90 117 119 104 103 120 120 103 106 106 103 107 107 103 121 121 103 109 110 109 122 109 103 122 122 103 112 113 112 123 112 103 123 123 103 115 116 115 124 115 103 124 124 103 118 103 125 118 119 118 125</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5630\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5631\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5635\">1808.641113926174 5046.332381533302 244.1318366883602 1809.136175961724 5046.139849579391 245.3127667495575 1809.136022326173 5046.139788931851 244.1318317919321 1808.64123653235 5046.332454321831 245.3127662140076 1808.64123653235 5046.332454321831 245.3127662140076 1808.641113926174 5046.332381533302 244.1318366883602 1809.136175961724 5046.139849579391 245.3127667495575 1809.136022326173 5046.139788931851 244.1318317919321</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5635\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5632\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5636\">0.3626560334759175 0.9319230613875709 -9.506593533369057e-005 0.3626560334759175 0.9319230613875709 -9.506593533369057e-005 0.3626560334759175 0.9319230613875709 -9.506593533369057e-005 0.3626560334759175 0.9319230613875709 -9.506593533369057e-005 -0.3626560334759175 -0.9319230613875709 9.506593533369057e-005 -0.3626560334759175 -0.9319230613875709 9.506593533369057e-005 -0.3626560334759175 -0.9319230613875709 9.506593533369057e-005 -0.3626560334759175 -0.9319230613875709 9.506593533369057e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5636\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5634\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID5637\">735.999412334485 102.0545415822441 735.9994346515155 101.5520510201018 735.8645142698786 102.0545418101216 735.864545050187 101.552048936652</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5637\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5633\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5631\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5632\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5633\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5633\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5634\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5638\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5639\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5642\">5259.55543571566 4804.817385608872 239.2644607757584 5259.881019431412 4804.837179331324 239.264442162675 4385.94337001091 5185.686930684873 239.258220382598 5366.531926444171 3857.696659685384 239.3818018997679 5366.531926444171 3857.696659685384 239.3818018997679 5259.55543571566 4804.817385608872 239.2644607757584 5259.881019431412 4804.837179331324 239.264442162675 4385.94337001091 5185.686930684873 239.258220382598</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5642\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5640\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5643\">4.929787017019936e-005 0.0001294606196173866 0.999999990404834 4.929787017019936e-005 0.0001294606196173866 0.999999990404834 4.929787017019936e-005 0.0001294606196173866 0.999999990404834 4.929787017019936e-005 0.0001294606196173866 0.999999990404834 -4.929787017019936e-005 -0.0001294606196173866 -0.999999990404834 -4.929787017019936e-005 -0.0001294606196173866 -0.999999990404834 -4.929787017019936e-005 -0.0001294606196173866 -0.999999990404834 -4.929787017019936e-005 -0.0001294606196173866 -0.999999990404834</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5643\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5641\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5639\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5640\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5641\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5644\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5645\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5649\">2749.206666166233 984.9009064847076 245.7921866578968 2746.401057380422 985.9926999979093 245.7921836488873 2748.090931824614 982.0337763370885 245.792612853997 2748.090931824614 982.0337763370885 245.792612853997 2746.401057380422 985.9926999979093 245.7921836488873 2749.206666166233 984.9009064847076 245.7921866578968</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5649\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5646\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5650\">4.930697426136823e-005 0.000129461375157684 0.9999999904042872 4.930697426136823e-005 0.000129461375157684 0.9999999904042872 4.930697426136823e-005 0.000129461375157684 0.9999999904042872 -4.930697426136823e-005 -0.000129461375157684 -0.9999999904042872 -4.930697426136823e-005 -0.000129461375157684 -0.9999999904042872 -4.930697426136823e-005 -0.000129461375157684 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5650\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5648\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5651\">-254.9244370668049 -454.204147103242 -255.3536651697325 -452.5196081529689 -254.6410405390406 -452.9841709625136</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5651\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5647\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5645\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5646\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5647\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5647\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5648\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5652\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5653\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5657\">2862.945308573948 940.6397383352951 245.7923086612797 2860.188022676604 941.7127271539587 245.7923057040969 2861.848791275848 937.8219906999514 245.7927275167178 2861.848791275848 937.8219906999514 245.7927275167178 2860.188022676604 941.7127271539587 245.7923057040969 2862.945308573948 940.6397383352951 245.7923086612797</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5657\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5654\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5658\">4.930697426070318e-005 0.0001294613751614184 0.9999999904042872 4.930697426070318e-005 0.0001294613751614184 0.9999999904042872 4.930697426070318e-005 0.0001294613751614184 0.9999999904042872 -4.930697426070318e-005 -0.0001294613751614184 -0.9999999904042872 -4.930697426070318e-005 -0.0001294613751614184 -0.9999999904042872 -4.930697426070318e-005 -0.0001294613751614184 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5658\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5656\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5659\">-226.0299408027491 -473.0164509887505 -226.4517760211617 -471.360925986618 -225.7514254041246 -471.8174873182077</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5659\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5655\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5653\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5654\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5655\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5655\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5656\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5660\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5661\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5665\">2976.683950981673 896.3785701859006 245.7924306646634 2973.974988025595 897.4327542894753 245.7924277593063 2975.606650748098 893.610205116795 245.7928421794307 2975.606650748098 893.610205116795 245.7928421794307 2973.974988025595 897.4327542894753 245.7924277593063 2976.683950981673 896.3785701859006 245.7924306646634</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5665\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5662\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5666\">4.930697424480184e-005 0.0001294613751529499 0.9999999904042872 4.930697424480184e-005 0.0001294613751529499 0.9999999904042872 4.930697424480184e-005 0.0001294613751529499 0.9999999904042872 -4.930697424480184e-005 -0.0001294613751529499 -0.9999999904042872 -4.930697424480184e-005 -0.0001294613751529499 -0.9999999904042872 -4.930697424480184e-005 -0.0001294613751529499 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5666\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5664\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5667\">-197.1354445334068 -491.8287548512881 -197.5498868592285 -490.2022438290021 -196.8618102692575 -490.6508036738924</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5667\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5663\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5661\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5662\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5663\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5663\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5664\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5668\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5669\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5673\">2066.774811719881 1250.467915381255 245.7914546375973 2063.679265176941 1251.672537227602 245.7914513176303 2065.543774947588 1247.304489724283 245.791924877736 2065.543774947588 1247.304489724283 245.791924877736 2063.679265176941 1251.672537227602 245.7914513176303 2066.774811719881 1250.467915381255 245.7914546375973</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5673\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5670\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5674\">4.930697425358171e-005 0.0001294613751536709 0.9999999904042872 4.930697425358171e-005 0.0001294613751536709 0.9999999904042872 4.930697425358171e-005 0.0001294613751536709 0.9999999904042872 -4.930697425358171e-005 -0.0001294613751536709 -0.9999999904042872 -4.930697425358171e-005 -0.0001294613751536709 -0.9999999904042872 -4.930697425358171e-005 -0.0001294613751536709 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5674\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5672\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5675\">-428.291414694211 -341.3303239756518 -428.7650001694487 -339.4717010805446 -427.9787313485393 -339.9842728284169</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5675\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5671\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5669\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5670\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5671\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5671\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5672\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5676\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5677\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5681\">2180.513454127615 1206.206747231903 245.7915766409804 2177.466230574207 1207.392564344378 245.7915733728397 2179.301634439041 1203.092704190491 245.7920395404416 2179.301634439041 1203.092704190491 245.7920395404416 2177.466230574207 1207.392564344378 245.7915733728397 2180.513454127615 1206.206747231903 245.7915766409804</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5681\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5678\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5682\">4.930697423256618e-005 0.0001294613751483128 0.9999999904042873 4.930697423256618e-005 0.0001294613751483128 0.9999999904042873 4.930697423256618e-005 0.0001294613751483128 0.9999999904042873 -4.930697423256618e-005 -0.0001294613751483128 -0.9999999904042873 -4.930697423256618e-005 -0.0001294613751483128 -0.9999999904042873 -4.930697423256618e-005 -0.0001294613751483128 -0.9999999904042873</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5682\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5680\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5683\">-399.3969184199887 -360.1426278170997 -399.8631109952514 -358.3130189308178 -399.0891162136675 -358.8175891839987</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5683\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5679\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5677\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5678\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5679\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5679\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5680\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5684\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5685\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5689\">2294.252096535325 1161.945579082415 245.7916986443638 2291.253195754968 1163.112591545269 245.7916954280488 2293.059493844374 1158.880918435336 245.7921542031802 2293.059493844374 1158.880918435336 245.7921542031802 2291.253195754968 1163.112591545269 245.7916954280488 2294.252096535325 1161.945579082415 245.7916986443638</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5689\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5686\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5690\">4.930697423478012e-005 0.00012946137515144 0.9999999904042873 4.930697423478012e-005 0.00012946137515144 0.9999999904042873 4.930697423478012e-005 0.00012946137515144 0.9999999904042873 -4.930697423478012e-005 -0.00012946137515144 -0.9999999904042873 -4.930697423478012e-005 -0.00012946137515144 -0.9999999904042873 -4.930697423478012e-005 -0.00012946137515144 -0.9999999904042873</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5690\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5688\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5691\">-370.502422167542 -378.9549317529084 -370.9612218759477 -377.1543367454696 -370.1995010787032 -377.650905539808</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5691\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5687\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5685\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5686\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5687\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5687\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5688\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5692\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5693\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5697\">2407.990738943055 1117.684410933003 245.7918206477469 2405.040161260185 1118.832618619972 245.7918174832587 2406.817353378744 1114.669133011807 245.7922688658693 2406.817353378744 1114.669133011807 245.7922688658693 2405.040161260185 1118.832618619972 245.7918174832587 2407.990738943055 1117.684410933003 245.7918206477469</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5697\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5694\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5698\">4.930697424366407e-005 0.0001294613751528465 0.9999999904042872 4.930697424366407e-005 0.0001294613751528465 0.9999999904042872 4.930697424366407e-005 0.0001294613751528465 0.9999999904042872 -4.930697424366407e-005 -0.0001294613751528465 -0.9999999904042872 -4.930697424366407e-005 -0.0001294613751528465 -0.9999999904042872 -4.930697424366407e-005 -0.0001294613751528465 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5698\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5696\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5699\">-341.6079258824258 -397.7672355474384 -342.0593326743381 -395.9956546136446 -341.3098859438396 -396.4842218954149</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5699\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5695\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5693\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5694\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5695\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5695\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5696\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5700\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5701\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5705\">2521.729381350781 1073.423242783572 245.7919426511303 2518.827126613719 1074.55264575369 245.7919395384682 2520.5752128528 1070.457347433255 245.7923835285815 2520.5752128528 1070.457347433255 245.7923835285815 2518.827126613719 1074.55264575369 245.7919395384682 2521.729381350781 1073.423242783572 245.7919426511303</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5705\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5702\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5706\">4.930697422795507e-005 0.0001294613751475805 0.9999999904042873 4.930697422795507e-005 0.0001294613751475805 0.9999999904042873 4.930697422795507e-005 0.0001294613751475805 0.9999999904042873 -4.930697422795507e-005 -0.0001294613751475805 -0.9999999904042873 -4.930697422795507e-005 -0.0001294613751475805 -0.9999999904042873 -4.930697422795507e-005 -0.0001294613751475805 -0.9999999904042873</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5706\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5704\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5707\">-312.713429612572 -416.5795394081019 -313.1574435111984 -414.8369724568787 -312.4202708089198 -415.3175382511997</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5707\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5703\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5701\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5702\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5703\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5703\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5704\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5708\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5709\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5713\">2635.468023758503 1029.162074634113 245.7920646545137 2632.61409219216 1030.272672799852 245.792061593678 2634.333072416287 1026.245562084514 245.7924981912593 2634.333072416287 1026.245562084514 245.7924981912593 2632.61409219216 1030.272672799852 245.792061593678 2635.468023758503 1029.162074634113 245.7920646545137</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5713\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5710\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5714\">4.930697425230235e-005 0.0001294613751565995 0.9999999904042872 4.930697425230235e-005 0.0001294613751565995 0.9999999904042872 4.930697425230235e-005 0.0001294613751565995 0.9999999904042872 -4.930697425230235e-005 -0.0001294613751565995 -0.9999999904042872 -4.930697425230235e-005 -0.0001294613751565995 -0.9999999904042872 -4.930697425230235e-005 -0.0001294613751565995 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5714\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5712\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5715\">-283.8189333200094 -435.3918431707265 -284.2555542909389 -433.6782903371151 -283.5306556740073 -434.1508546067434</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5715\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5711\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5709\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5710\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5711\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5711\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5712\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5716\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5717\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5721\">3090.422593389409 852.1174020364574 245.7925526680465 3087.761953551956 853.1527813559289 245.7925498145161 3089.364510290877 849.398419714837 245.7929568421173 3089.364510290877 849.398419714837 245.7929568421173 3087.761953551956 853.1527813559289 245.7925498145161 3090.422593389409 852.1174020364574 245.7925526680465</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5721\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5718\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5722\">4.930697426014286e-005 0.000129461375162616 0.9999999904042872 4.930697426014286e-005 0.000129461375162616 0.9999999904042872 4.930697426014286e-005 0.000129461375162616 0.9999999904042872 -4.930697426014286e-005 -0.000129461375162616 -0.9999999904042872 -4.930697426014286e-005 -0.000129461375162616 -0.9999999904042872 -4.930697426014286e-005 -0.000129461375162616 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5722\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5720\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5723\">-168.2409482461515 -510.641058636809 -168.647997652245 -509.0435617008567 -167.9721951343894 -509.4841200296817</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5723\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5719\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5717\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5718\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5719\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5719\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5720\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5724\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5725\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5729\">3204.161235797131 807.8562338870522 245.7926746714298 3201.548919074528 808.8728084238901 245.7926718697255 3203.122369832149 805.1866343090519 245.7930715048035 3203.122369832149 805.1866343090519 245.7930715048035 3201.548919074528 808.8728084238901 245.7926718697255 3204.161235797131 807.8562338870522 245.7926746714298</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5729\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5726\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5730\">4.930697424695831e-005 0.0001294613751497656 0.9999999904042872 4.930697424695831e-005 0.0001294613751497656 0.9999999904042872 4.930697424695831e-005 0.0001294613751497656 0.9999999904042872 -4.930697424695831e-005 -0.0001294613751497656 -0.9999999904042872 -4.930697424695831e-005 -0.0001294613751497656 -0.9999999904042872 -4.930697424695831e-005 -0.0001294613751497656 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5730\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5728\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5731\">-139.3464519592269 -529.4533624238723 -139.7461084461718 -527.8848795719837 -139.0825799994722 -528.3174363853686</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5731\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5727\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5725\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5726\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5727\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5727\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5728\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5732\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5733\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5737\">3317.89987837762 763.5950657478416 245.7927966748034 3315.535605058934 764.5151150025313 245.7927941391252 3316.959654299319 761.1789486670257 245.7931558282505 3316.959654299319 761.1789486670257 245.7931558282505 3315.535605058934 764.5151150025313 245.7927941391252 3317.89987837762 763.5950657478416 245.7927966748034</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5737\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5734\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID5738\">4.930697424760103e-005 0.0001294613751532075 0.9999999904042872 4.930697424760103e-005 0.0001294613751532075 0.9999999904042872 4.930697424760103e-005 0.0001294613751532075 0.9999999904042872 -4.930697424760103e-005 -0.0001294613751532075 -0.9999999904042872 -4.930697424760103e-005 -0.0001294613751532075 -0.9999999904042872 -4.930697424760103e-005 -0.0001294613751532075 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID5738\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5736\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5739\">-110.4317817406704 -548.178820888509 -110.7934902427585 -546.7592678437343 -110.1929648205743 -547.1507527367199</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5739\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5735\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5733\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5734\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5735\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5735\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5736\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5740\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5741\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5745\">2039.404186492805 1358.871223620851 245.778770158833 2042.501953241067 1362.809991503439 245.7781074990147 2038.983685976343 1362.389491066195 245.7783354126952 2042.922453749195 1359.291724059788 245.7785422451526 2042.922453749195 1359.291724059788 245.7785422451526 2039.404186492805 1358.871223620851 245.778770158833 2042.501953241067 1362.809991503439 245.7781074990147 2038.983685976343 1362.389491066195 245.7783354126952</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5745\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5742\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5746\">4.930697424194171e-005 0.0001294613751547785 0.9999999904042872 4.930697424194171e-005 0.0001294613751547785 0.9999999904042872 4.930697424194171e-005 0.0001294613751547785 0.9999999904042872 4.930697424194171e-005 0.0001294613751547785 0.9999999904042872 -4.930697424194171e-005 -0.0001294613751547785 -0.9999999904042872 -4.930697424194171e-005 -0.0001294613751547785 -0.9999999904042872 -4.930697424194171e-005 -0.0001294613751547785 -0.9999999904042872 -4.930697424194171e-005 -0.0001294613751547785 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5746\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5744\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID5747\">-434.0372301040628 -293.6792767885661 -434.9308699889541 -293.8582015238434 -434.1440372275526 -292.1822389434161 -435.0376771145608 -292.3611636779731</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5747\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5743\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5741\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5742\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5743\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5743\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5744\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5748\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5749\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5753\">2024.920280767057 1480.055983404411 245.7637955706062 2028.018047515322 1483.994751287 245.7631329107883 2024.499780250599 1483.574250849756 245.7633608244688 2028.438548023446 1480.476483843349 245.763567656926 2028.438548023446 1480.476483843349 245.763567656926 2024.920280767057 1480.055983404411 245.7637955706062 2028.018047515322 1483.994751287 245.7631329107883 2024.499780250599 1483.574250849756 245.7633608244688</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5753\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5750\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5754\">4.93069742339609e-005 0.0001294613751538301 0.9999999904042873 4.93069742339609e-005 0.0001294613751538301 0.9999999904042873 4.93069742339609e-005 0.0001294613751538301 0.9999999904042873 4.93069742339609e-005 0.0001294613751538301 0.9999999904042873 -4.93069742339609e-005 -0.0001294613751538301 -0.9999999904042873 -4.93069742339609e-005 -0.0001294613751538301 -0.9999999904042873 -4.93069742339609e-005 -0.0001294613751538301 -0.9999999904042873 -4.93069742339609e-005 -0.0001294613751538301 -0.9999999904042873</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5754\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5752\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID5755\">-437.7161419664385 -242.1146431849491 -438.6097818513296 -242.2935679202269 -437.8229490899277 -240.6176053397991 -438.7165889769353 -240.7965300743566</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5755\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5751\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5749\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5750\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5751\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5751\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5752\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5756\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5757\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5761\">2010.436375041315 1601.240743187982 245.7488209823799 2013.534141789586 1605.179511070571 245.7481583225619 2010.015874524865 1604.759010633326 245.748386236242 2013.954642297713 1601.66124362692 245.7485930686998 2013.954642297713 1601.66124362692 245.7485930686998 2010.436375041315 1601.240743187982 245.7488209823799 2013.534141789586 1605.179511070571 245.7481583225619 2010.015874524865 1604.759010633326 245.748386236242</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5761\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5758\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5762\">4.930697424191157e-005 0.000129461375154777 0.9999999904042872 4.930697424191157e-005 0.000129461375154777 0.9999999904042872 4.930697424191157e-005 0.000129461375154777 0.9999999904042872 4.930697424191157e-005 0.000129461375154777 0.9999999904042872 -4.930697424191157e-005 -0.000129461375154777 -0.9999999904042872 -4.930697424191157e-005 -0.000129461375154777 -0.9999999904042872 -4.930697424191157e-005 -0.000129461375154777 -0.9999999904042872 -4.930697424191157e-005 -0.000129461375154777 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5762\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5760\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID5763\">-441.3950538287122 -190.5500095813364 -442.2886937136054 -190.7289343166145 -441.5018609522019 -189.0529717361865 -442.3955008392091 -189.2318964707441</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5763\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5759\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5757\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5758\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5759\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5759\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5760\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5764\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5765\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5769\">1995.952469315602 1722.42550297154 245.7338463941536 1999.050236063863 1726.36427085413 245.7331837343355 1995.531968799141 1725.943770416883 245.733411648016 1999.470736571988 1722.846003410477 245.7336184804734 1999.470736571988 1722.846003410477 245.7336184804734 1995.952469315602 1722.42550297154 245.7338463941536 1999.050236063863 1726.36427085413 245.7331837343355 1995.531968799141 1725.943770416883 245.733411648016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5769\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5766\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5770\">4.930697424637393e-005 0.0001294613751512718 0.9999999904042872 4.930697424637393e-005 0.0001294613751512718 0.9999999904042872 4.930697424637393e-005 0.0001294613751512718 0.9999999904042872 4.930697424637393e-005 0.0001294613751512718 0.9999999904042872 -4.930697424637393e-005 -0.0001294613751512718 -0.9999999904042872 -4.930697424637393e-005 -0.0001294613751512718 -0.9999999904042872 -4.930697424637393e-005 -0.0001294613751512718 -0.9999999904042872 -4.930697424637393e-005 -0.0001294613751512718 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5770\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5768\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID5771\">-445.0739656910341 -138.9853759778084 -445.9676055759243 -139.1643007130863 -445.1807728145234 -137.488338132658 -446.074412701531 -137.6672628672162</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5771\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5767\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5765\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5766\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5767\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5767\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5768\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5772\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5773\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5777\">1981.468563167612 1843.610262826784 245.7188718059384 1984.566329915886 1847.549030709374 245.7182091461207 1981.048062651154 1847.128530272127 245.7184370598012 1984.986830424009 1844.03076326572 245.7186438922581 1984.986830424009 1844.03076326572 245.7186438922581 1981.468563167612 1843.610262826784 245.7188718059384 1984.566329915886 1847.549030709374 245.7182091461207 1981.048062651154 1847.128530272127 245.7184370598012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5777\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5774\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5778\">4.930697424191569e-005 0.0001294613751547772 0.9999999904042872 4.930697424191569e-005 0.0001294613751547772 0.9999999904042872 4.930697424191569e-005 0.0001294613751547772 0.9999999904042872 4.930697424191569e-005 0.0001294613751547772 0.9999999904042872 -4.930697424191569e-005 -0.0001294613751547772 -0.9999999904042872 -4.930697424191569e-005 -0.0001294613751547772 -0.9999999904042872 -4.930697424191569e-005 -0.0001294613751547772 -0.9999999904042872 -4.930697424191569e-005 -0.0001294613751547772 -0.9999999904042872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5778\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5776\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID5779\">-448.7528776606067 -87.42074234361314 -449.6465175454999 -87.59966707889009 -448.8596847840955 -85.92370449846192 -449.7533246711054 -86.10262923302037</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5779\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5775\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5773\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5774\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5775\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5775\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5776\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5780\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5781\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID5784\">4364.019314233246 2903.788804058938 5.836756309095882 3652.076737239104 2126.431710238408 5.963455196619579 3636.217436023473 2366.714039243391 5.934267745497498 4014.86873132489 2394.150756602061 5.914848698464203 4484.403889097842 2740.639947991062 5.851940861047082 4484.403889097842 2740.639947991062 5.851940861047082 4364.019314233246 2903.788804058938 5.836756309095882 4014.86873132489 2394.150756602061 5.914848698464203 3652.076737239104 2126.431710238408 5.963455196619579 3636.217436023473 2366.714039243391 5.934267745497498</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID5784\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5782\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID5785\">-4.228234657167048e-005 -0.0001242641629452549 -0.9999999913853105 -4.228234657167048e-005 -0.0001242641629452549 -0.9999999913853105 -4.228234657167048e-005 -0.0001242641629452549 -0.9999999913853105 -4.228234657167048e-005 -0.0001242641629452549 -0.9999999913853105 -4.228234657167048e-005 -0.0001242641629452549 -0.9999999913853105 4.228234657167048e-005 0.0001242641629452549 0.9999999913853105 4.228234657167048e-005 0.0001242641629452549 0.9999999913853105 4.228234657167048e-005 0.0001242641629452549 0.9999999913853105 4.228234657167048e-005 0.0001242641629452549 0.9999999913853105 4.228234657167048e-005 0.0001242641629452549 0.9999999913853105</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID5785\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5783\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5781\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5782\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5783\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 7 6 8 9 8 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5786\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5792\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5796\">3652.085820963454 2126.453278749081 165.6656718435825 3636.217436023473 2366.714039243391 5.934267745497498 3652.076737239104 2126.431710238408 5.963455196619579 3636.226519805358 2366.735607643975 165.6364820342713 3636.226519805358 2366.735607643975 165.6364820342713 3652.085820963454 2126.453278749081 165.6656718435825 3636.217436023473 2366.714039243391 5.934267745497498 3652.076737239104 2126.431710238408 5.963455196619579 3636.217436023473 2366.714039243391 5.934267745497498 4364.028398015131 2903.810372459518 165.5389705978702 4364.019314233246 2903.788804058938 5.836756309095882 3636.226519805358 2366.735607643975 165.6364820342713 3636.226519805358 2366.735607643975 165.6364820342713 3636.217436023473 2366.714039243391 5.934267745497498 4364.028398015131 2903.810372459518 165.5389705978702 4364.019314233246 2903.788804058938 5.836756309095882</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5796\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5793\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID5797\">-0.9978289060227743 -0.06585947156966542 6.565026876615168e-005 -0.9978289060227743 -0.06585947156966542 6.565026876615168e-005 -0.9978289060227743 -0.06585947156966542 6.565026876615168e-005 -0.9978289060227743 -0.06585947156966542 6.565026876615168e-005 0.9978289060227743 0.06585947156966542 -6.565026876615168e-005 0.9978289060227743 0.06585947156966542 -6.565026876615168e-005 0.9978289060227743 0.06585947156966542 -6.565026876615168e-005 0.9978289060227743 0.06585947156966542 -6.565026876615168e-005 -0.59377190063773 0.804633409947497 -7.489540032046705e-005 -0.59377190063773 0.804633409947497 -7.489540032046705e-005 -0.59377190063773 0.804633409947497 -7.489540032046705e-005 -0.59377190063773 0.804633409947497 -7.489540032046705e-005 0.59377190063773 -0.804633409947497 7.489540032046705e-005 0.59377190063773 -0.804633409947497 7.489540032046705e-005 0.59377190063773 -0.804633409947497 7.489540032046705e-005 0.59377190063773 -0.804633409947497 7.489540032046705e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5797\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5795\">\r\n\t\t\t\t\t<float_array count=\"32\" id=\"ID5798\">474.4007122958972 36.99237581740914 473.6402463291512 35.99176456395087 474.4007122955675 35.99274045667166 473.6402463298389 36.99139990992798 473.6402463298388 36.99139990992797 474.4007122958972 36.99237581740913 473.6402463291512 35.99176456395087 474.4007122955675 35.99274045667165 474.1682234589093 35.9840239235646 471.4690131740726 36.97999563264717 471.4690094035441 35.98059831610773 474.1682272294378 36.98342124010404 473.7503636536027 37.00000009538857 473.7503636532539 36.00013234273378 469.8051387942973 37.00010289841476 469.8051387939485 36.00023514575997</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID5798\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5794\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5792\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5793\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5794\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5795\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 7 7 6 6 5 5 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 15 15 14 14 13 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5799\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5800\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID5803\">3652.085820963454 2126.453278749081 165.6656718435825 4364.028398015131 2903.810372459518 165.5389705978702 3636.226519805358 2366.735607643975 165.6364820342713 4014.875482378399 2394.170603739477 165.6170649103794 4484.412974327017 2740.661517612041 165.5541557926873 4484.412974327017 2740.661517612041 165.5541557926873 4014.875482378399 2394.170603739477 165.6170649103794 4364.028398015131 2903.810372459518 165.5389705978702 3652.085820963454 2126.453278749081 165.6656718435825 3636.226519805358 2366.735607643975 165.6364820342713</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID5803\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5801\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID5804\">4.227877648875782e-005 0.0001242721585169855 0.9999999913844678 4.227877648875782e-005 0.0001242721585169855 0.9999999913844678 4.227877648875782e-005 0.0001242721585169855 0.9999999913844678 4.227877648875782e-005 0.0001242721585169855 0.9999999913844678 4.227877648875782e-005 0.0001242721585169855 0.9999999913844678 -4.227877648875782e-005 -0.0001242721585169855 -0.9999999913844678 -4.227877648875782e-005 -0.0001242721585169855 -0.9999999913844678 -4.227877648875782e-005 -0.0001242721585169855 -0.9999999913844678 -4.227877648875782e-005 -0.0001242721585169855 -0.9999999913844678 -4.227877648875782e-005 -0.0001242721585169855 -0.9999999913844678</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID5804\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5802\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5800\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5801\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5802\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 6 7 6 8 7 9 7 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5805\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5811\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5815\">4364.019314233246 2903.788804058938 5.836756309095882 4484.412974327017 2740.661517612041 165.5541557926873 4484.403889097842 2740.639947991062 5.851940861047082 4364.028398015131 2903.810372459518 165.5389705978702 4364.028398015131 2903.810372459518 165.5389705978702 4364.019314233246 2903.788804058938 5.836756309095882 4484.412974327017 2740.661517612041 165.5541557926873 4484.403889097842 2740.639947991062 5.851940861047082</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5815\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5812\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5816\">0.8046561197222896 0.5937411162511818 -0.0001259613810343705 0.8046561197222896 0.5937411162511818 -0.0001259613810343705 0.8046561197222896 0.5937411162511818 -0.0001259613810343705 0.8046561197222896 0.5937411162511818 -0.0001259613810343705 -0.8046561197222896 -0.5937411162511818 0.0001259613810343705 -0.8046561197222896 -0.5937411162511818 0.0001259613810343705 -0.8046561197222896 -0.5937411162511818 0.0001259613810343705 -0.8046561197222896 -0.5937411162511818 0.0001259613810343705</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5816\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5814\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID5817\">59.99999984071525 17.99999995605881 58.99999984276804 18.99999994936464 58.99999984277323 17.99999995203122 59.99999984010521 18.99999994936528</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5817\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5813\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5811\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5812\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5813\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5814\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5818\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5819\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID5822\">4157.04145998311 5484.404685321607 183.8988421668799 4175.482041917008 5475.978396755316 227.4184247606821 4175.47329399593 5475.981718922897 183.8944946096798 4157.050207904191 5484.401363154024 227.4227723178821 2199.874975468181 4019.700773181868 227.7043469277978 4157.050207904191 5484.401363154024 227.4227723178821 2180.333180991644 4027.305555330374 227.7088551235269 4175.482041917008 5475.978396755316 227.4184247606821 4175.482041917008 5475.978396755316 227.4184247606821 2199.866227547096 4019.704095349459 184.1804167767954 4175.47329399593 5475.981718922897 183.8944946096798 2199.874975468181 4019.700773181868 227.7043469277978 4157.04145998311 5484.404685321607 183.8988421668799 2199.866227547096 4019.704095349459 184.1804167767954 2180.324433070562 4027.308877497963 184.1849249725247 4175.47329399593 5475.981718922897 183.8944946096798 2180.324433070562 4027.308877497963 184.1849249725247 4157.050207904191 5484.401363154024 227.4227723178821 4157.04145998311 5484.404685321607 183.8988421668799 2180.333180991644 4027.305555330374 227.7088551235269 2199.874975468181 4019.700773181868 227.7043469277978 2180.324433070562 4027.308877497963 184.1849249725247 2199.866227547096 4019.704095349459 184.1804167767954 2180.333180991644 4027.305555330374 227.7088551235269</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID5822\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5820\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID5823\">0.4156366991324047 0.909530721930317 -1.411507549860908e-005 0.4156366991324047 0.909530721930317 -1.411507549860908e-005 0.4156366991324047 0.909530721930317 -1.411507549860908e-005 0.4156366991324047 0.909530721930317 -1.411507549860908e-005 0.0002009910605414102 -7.632967651584875e-005 0.9999999768881869 0.0002009910605414102 -7.632967651584875e-005 0.9999999768881869 0.0002009910605414102 -7.632967651584875e-005 0.9999999768881869 0.0002009910605414102 -7.632967651584875e-005 0.9999999768881869 0.5933487689898276 -0.8049454675231839 -0.0001806990296754321 0.5933487689898276 -0.8049454675231839 -0.0001806990296754321 0.5933487689898276 -0.8049454675231839 -0.0001806990296754321 0.5933487689898276 -0.8049454675231839 -0.0001806990296754321 -0.0002009910605414102 7.632967651584875e-005 -0.9999999768881869 -0.0002009910605414102 7.632967651584875e-005 -0.9999999768881869 -0.0002009910605414102 7.632967651584875e-005 -0.9999999768881869 -0.0002009910605414102 7.632967651584875e-005 -0.9999999768881869 -0.5933487689898278 0.8049454675231839 0.0001806990296754326 -0.5933487689898278 0.8049454675231839 0.0001806990296754326 -0.5933487689898278 0.8049454675231839 0.0001806990296754326 -0.5933487689898278 0.8049454675231839 0.0001806990296754326 -0.3626614650999728 -0.9319209525106994 1.758487685104681e-006 -0.3626614650999728 -0.9319209525106994 1.758487685104681e-006 -0.3626614650999728 -0.9319209525106994 1.758487685104681e-006 -0.3626614650999728 -0.9319209525106994 1.758487685104681e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID5823\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5821\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5819\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5820\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5821\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 8 9 10 9 8 11 12 13 14 13 12 15 16 17 18 17 16 19 20 21 22 21 20 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5824\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5830\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5834\">4484.412974327017 2740.661517612041 165.5541557926873 4014.86873132489 2394.150756602061 5.914848698464203 4484.403889097842 2740.639947991062 5.851940861047082 4014.875482378399 2394.170603739477 165.6170649103794 4014.875482378399 2394.170603739477 165.6170649103794 4484.412974327017 2740.661517612041 165.5541557926873 4014.86873132489 2394.150756602061 5.914848698464203 4484.403889097842 2740.639947991062 5.851940861047082</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5834\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5831\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5835\">0.5937719023499283 -0.8046334086839246 7.489616755771215e-005 0.5937719023499283 -0.8046334086839246 7.489616755771215e-005 0.5937719023499283 -0.8046334086839246 7.489616755771215e-005 0.5937719023499283 -0.8046334086839246 7.489616755771215e-005 -0.5937719023499283 0.8046334086839246 -7.489616755771215e-005 -0.5937719023499283 0.8046334086839246 -7.489616755771215e-005 -0.5937719023499283 0.8046334086839246 -7.489616755771215e-005 -0.5937719023499283 0.8046334086839246 -7.489616755771215e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5835\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5833\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID5836\">184.0000003271256 44.00000007807857 182.6061473845664 43.00000007629387 184.0000003271859 43.00000007631842 182.6061404553174 44.00000008411245 182.6061404553175 44.00000008411244 184.0000003271257 44.00000007807857 182.6061473845664 43.00000007629387 184.0000003271859 43.00000007631842</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5836\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5832\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5830\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5831\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5832\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5833\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 7 7 6 6 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5837\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5838\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID5841\">5448.073683805964 3901.103591144749 280.7153754549822 5447.687894280532 3904.625831323041 280.7149385056913 5447.676001096548 3904.624487996753 280.7149392659002 5450.077092368778 3915.048602535027 280.7134714541642 5446.555575811495 3914.650849858233 280.7136965483682 5451.602828587316 3901.540447109631 280.715144922647 5451.209410837806 3905.02358399983 280.7147134114879 5451.209410837806 3905.02358399983 280.7147134114879 5451.602828587316 3901.540447109631 280.715144922647 5450.077092368778 3915.048602535027 280.7134714541642 5448.073683805964 3901.103591144749 280.7153754549822 5447.687894280532 3904.625831323041 280.7149385056913 5446.555575811495 3914.650849858233 280.7136965483682 5447.676001096548 3904.624487996753 280.7149392659002 5450.076917691002 3915.048143839911 277.1701644015458 5451.209410837806 3905.02358399983 280.7147134114879 5451.209236160036 3905.023125304717 277.1714063588694 5450.077092368778 3915.048602535027 280.7134714541642 5450.077092368778 3915.048602535027 280.7134714541642 5450.076917691002 3915.048143839911 277.1701644015458 5451.209410837806 3905.02358399983 280.7147134114879 5451.209236160036 3905.023125304717 277.1714063588694 5446.555401133725 3914.650391163123 277.1703894957491 5450.077092368778 3915.048602535027 280.7134714541642 5450.076917691002 3915.048143839911 277.1701644015458 5446.555575811495 3914.650849858233 280.7136965483682 5446.555575811495 3914.650849858233 280.7136965483682 5446.555401133725 3914.650391163123 277.1703894957491 5450.077092368778 3915.048602535027 280.7134714541642 5450.076917691002 3915.048143839911 277.1701644015458 5447.687894280532 3904.625831323041 280.7149385056913 5446.555401133725 3914.650391163123 277.1703894957491 5447.687719602758 3904.625372627926 277.1716314530731 5446.555575811495 3914.650849858233 280.7136965483682 5446.555575811495 3914.650849858233 280.7136965483682 5447.687894280532 3904.625831323041 280.7149385056913 5446.555401133725 3914.650391163123 277.1703894957491 5447.687719602758 3904.625372627926 277.1716314530731 5451.209410837806 3905.02358399983 280.7147134114879 5447.687719602758 3904.625372627926 277.1716314530731 5451.209236160036 3905.023125304717 277.1714063588694 5447.687894280532 3904.625831323041 280.7149385056913 5447.687894280532 3904.625831323041 280.7149385056913 5451.209410837806 3905.02358399983 280.7147134114879 5447.687719602758 3904.625372627926 277.1716314530731 5451.209236160036 3905.023125304717 277.1714063588694 5450.076917691002 3915.048143839911 277.1701644015458 5447.687719602758 3904.625372627926 277.1716314530731 5446.555401133725 3914.650391163123 277.1703894957491 5451.209236160036 3905.023125304717 277.1714063588694 5451.209236160036 3905.023125304717 277.1714063588694 5450.076917691002 3915.048143839911 277.1701644015458 5447.687719602758 3904.625372627926 277.1716314530731 5446.555401133725 3914.650391163123 277.1703894957491</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID5841\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5839\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID5842\">4.929794937005089e-005 0.0001294539541889729 0.999999990405693 4.929794937005089e-005 0.0001294539541889729 0.999999990405693 4.929794937005089e-005 0.0001294539541889729 0.999999990405693 4.929794937005089e-005 0.0001294539541889729 0.999999990405693 4.929794937005089e-005 0.0001294539541889729 0.999999990405693 4.929794937005089e-005 0.0001294539541889729 0.999999990405693 4.929794937005089e-005 0.0001294539541889729 0.999999990405693 -4.929794937005089e-005 -0.0001294539541889729 -0.999999990405693 -4.929794937005089e-005 -0.0001294539541889729 -0.999999990405693 -4.929794937005089e-005 -0.0001294539541889729 -0.999999990405693 -4.929794937005089e-005 -0.0001294539541889729 -0.999999990405693 -4.929794937005089e-005 -0.0001294539541889729 -0.999999990405693 -4.929794937005089e-005 -0.0001294539541889729 -0.999999990405693 -4.929794937005089e-005 -0.0001294539541889729 -0.999999990405693 0.9936816220368886 0.1122356003765297 -6.351580912415731e-005 0.9936816220368886 0.1122356003765297 -6.351580912415731e-005 0.9936816220368886 0.1122356003765297 -6.351580912415731e-005 0.9936816220368886 0.1122356003765297 -6.351580912415731e-005 -0.9936816220368886 -0.1122356003765297 6.351580912415731e-005 -0.9936816220368886 -0.1122356003765297 6.351580912415731e-005 -0.9936816220368886 -0.1122356003765297 6.351580912415731e-005 -0.9936816220368886 -0.1122356003765297 6.351580912415731e-005 -0.1122356075220798 0.9936816156344012 -0.0001231030302013836 -0.1122356075220798 0.9936816156344012 -0.0001231030302013836 -0.1122356075220798 0.9936816156344012 -0.0001231030302013836 -0.1122356075220798 0.9936816156344012 -0.0001231030302013836 0.1122356075220798 -0.9936816156344012 0.0001231030302013836 0.1122356075220798 -0.9936816156344012 0.0001231030302013836 0.1122356075220798 -0.9936816156344012 0.0001231030302013836 0.1122356075220798 -0.9936816156344012 0.0001231030302013836 -0.9936816220368886 -0.1122356003765297 6.351580912415731e-005 -0.9936816220368886 -0.1122356003765297 6.351580912415731e-005 -0.9936816220368886 -0.1122356003765297 6.351580912415731e-005 -0.9936816220368886 -0.1122356003765297 6.351580912415731e-005 0.9936816220368886 0.1122356003765297 -6.351580912415731e-005 0.9936816220368886 0.1122356003765297 -6.351580912415731e-005 0.9936816220368886 0.1122356003765297 -6.351580912415731e-005 0.9936816220368886 0.1122356003765297 -6.351580912415731e-005 0.1122356075220798 -0.9936816156344012 0.0001231030302013836 0.1122356075220798 -0.9936816156344012 0.0001231030302013836 0.1122356075220798 -0.9936816156344012 0.0001231030302013836 0.1122356075220798 -0.9936816156344012 0.0001231030302013836 -0.1122356075220798 0.9936816156344012 -0.0001231030302013836 -0.1122356075220798 0.9936816156344012 -0.0001231030302013836 -0.1122356075220798 0.9936816156344012 -0.0001231030302013836 -0.1122356075220798 0.9936816156344012 -0.0001231030302013836 -4.929794933159013e-005 -0.0001294539541531045 -0.999999990405693 -4.929794933159013e-005 -0.0001294539541531045 -0.999999990405693 -4.929794933159013e-005 -0.0001294539541531045 -0.999999990405693 -4.929794933159013e-005 -0.0001294539541531045 -0.999999990405693 4.929794933159013e-005 0.0001294539541531045 0.999999990405693 4.929794933159013e-005 0.0001294539541531045 0.999999990405693 4.929794933159013e-005 0.0001294539541531045 0.999999990405693 4.929794933159013e-005 0.0001294539541531045 0.999999990405693</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID5842\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5840\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5838\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5839\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"30\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5840\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 4 3 1 0 3 0 5 3 5 6 7 8 9 8 10 9 10 11 9 12 9 11 13 11 10 14 15 16 15 14 17 18 19 20 21 20 19 22 23 24 23 22 25 26 27 28 29 28 27 30 31 32 31 30 33 34 35 36 37 36 35 38 39 40 39 38 41 42 43 44 45 44 43 46 47 48 47 46 49 50 51 52 53 52 51</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5843\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5844\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID5847\">5451.207469521649 3905.022267316145 271.8564458761163 5447.686375710679 3904.624123422844 268.3133638795143 5451.207294843875 3905.021808621031 268.3131388234976 5447.686550388451 3904.624582117957 271.8566709321324 5447.686550388451 3904.624582117957 271.8566709321324 5451.207469521649 3905.022267316145 271.8564458761163 5447.686375710679 3904.624123422844 268.3133638795143 5451.207294843875 3905.021808621031 268.3131388234976 5450.068926136708 3915.100393137135 268.3118902301113 5451.207469521649 3905.022267316145 271.8564458761163 5451.207294843875 3905.021808621031 268.3131388234976 5450.069100814483 3915.100851832244 271.8551972827294 5450.069100814483 3915.100851832244 271.8551972827294 5450.068926136708 3915.100393137135 268.3118902301113 5451.207469521649 3905.022267316145 271.8564458761163 5451.207294843875 3905.021808621031 268.3131388234976 5447.686550388451 3904.624582117957 271.8566709321324 5450.069100814483 3915.100851832244 271.8551972827294 5446.548181681279 3914.703166634062 271.8554223387465 5451.207469521649 3905.022267316145 271.8564458761163 5451.207469521649 3905.022267316145 271.8564458761163 5447.686550388451 3904.624582117957 271.8566709321324 5450.069100814483 3915.100851832244 271.8551972827294 5446.548181681279 3914.703166634062 271.8554223387465 5447.686550388451 3904.624582117957 271.8566709321324 5446.548007003505 3914.702707938949 268.3121152861274 5447.686375710679 3904.624123422844 268.3133638795143 5446.548181681279 3914.703166634062 271.8554223387465 5446.548181681279 3914.703166634062 271.8554223387465 5447.686550388451 3904.624582117957 271.8566709321324 5446.548007003505 3914.702707938949 268.3121152861274 5447.686375710679 3904.624123422844 268.3133638795143 5450.068926136708 3915.100393137135 268.3118902301113 5447.686375710679 3904.624123422844 268.3133638795143 5446.548007003505 3914.702707938949 268.3121152861274 5451.207294843875 3905.021808621031 268.3131388234976 5451.207294843875 3905.021808621031 268.3131388234976 5450.068926136708 3915.100393137135 268.3118902301113 5447.686375710679 3904.624123422844 268.3133638795143 5446.548007003505 3914.702707938949 268.3121152861274 5446.548007003505 3914.702707938949 268.3121152861274 5450.069100814483 3915.100851832244 271.8551972827294 5450.068926136708 3915.100393137135 268.3118902301113 5446.548181681279 3914.703166634062 271.8554223387465 5446.548181681279 3914.703166634062 271.8554223387465 5446.548007003505 3914.702707938949 268.3121152861274 5450.069100814483 3915.100851832244 271.8551972827294 5450.068926136708 3915.100393137135 268.3118902301113</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID5847\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5845\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID5848\">0.1122356075220265 -0.9936816156344073 0.0001231030301695005 0.1122356075220265 -0.9936816156344073 0.0001231030301695005 0.1122356075220265 -0.9936816156344073 0.0001231030301695005 0.1122356075220265 -0.9936816156344073 0.0001231030301695005 -0.1122356075220265 0.9936816156344073 -0.0001231030301695005 -0.1122356075220265 0.9936816156344073 -0.0001231030301695005 -0.1122356075220265 0.9936816156344073 -0.0001231030301695005 -0.1122356075220265 0.9936816156344073 -0.0001231030301695005 0.9936816220368946 0.1122356003764765 -6.351580912414842e-005 0.9936816220368946 0.1122356003764765 -6.351580912414842e-005 0.9936816220368946 0.1122356003764765 -6.351580912414842e-005 0.9936816220368946 0.1122356003764765 -6.351580912414842e-005 -0.9936816220368946 -0.1122356003764765 6.351580912414842e-005 -0.9936816220368946 -0.1122356003764765 6.351580912414842e-005 -0.9936816220368946 -0.1122356003764765 6.351580912414842e-005 -0.9936816220368946 -0.1122356003764765 6.351580912414842e-005 4.92979493436085e-005 0.0001294539541223723 0.9999999904056929 4.92979493436085e-005 0.0001294539541223723 0.9999999904056929 4.92979493436085e-005 0.0001294539541223723 0.9999999904056929 4.92979493436085e-005 0.0001294539541223723 0.9999999904056929 -4.92979493436085e-005 -0.0001294539541223723 -0.9999999904056929 -4.92979493436085e-005 -0.0001294539541223723 -0.9999999904056929 -4.92979493436085e-005 -0.0001294539541223723 -0.9999999904056929 -4.92979493436085e-005 -0.0001294539541223723 -0.9999999904056929 -0.9936816220368946 -0.1122356003764765 6.351580911694694e-005 -0.9936816220368946 -0.1122356003764765 6.351580911694694e-005 -0.9936816220368946 -0.1122356003764765 6.351580911694694e-005 -0.9936816220368946 -0.1122356003764765 6.351580911694694e-005 0.9936816220368946 0.1122356003764765 -6.351580911694694e-005 0.9936816220368946 0.1122356003764765 -6.351580911694694e-005 0.9936816220368946 0.1122356003764765 -6.351580911694694e-005 0.9936816220368946 0.1122356003764765 -6.351580911694694e-005 -4.929794934361674e-005 -0.0001294539541223734 -0.9999999904056929 -4.929794934361674e-005 -0.0001294539541223734 -0.9999999904056929 -4.929794934361674e-005 -0.0001294539541223734 -0.9999999904056929 -4.929794934361674e-005 -0.0001294539541223734 -0.9999999904056929 4.929794934361674e-005 0.0001294539541223734 0.9999999904056929 4.929794934361674e-005 0.0001294539541223734 0.9999999904056929 4.929794934361674e-005 0.0001294539541223734 0.9999999904056929 4.929794934361674e-005 0.0001294539541223734 0.9999999904056929 -0.1122356075220265 0.9936816156344073 -0.0001231030301695005 -0.1122356075220265 0.9936816156344073 -0.0001231030301695005 -0.1122356075220265 0.9936816156344073 -0.0001231030301695005 -0.1122356075220265 0.9936816156344073 -0.0001231030301695005 0.1122356075220265 -0.9936816156344073 0.0001231030301695005 0.1122356075220265 -0.9936816156344073 0.0001231030301695005 0.1122356075220265 -0.9936816156344073 0.0001231030301695005 0.1122356075220265 -0.9936816156344073 0.0001231030301695005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID5848\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5846\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5844\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5845\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5846\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 9 8 11 12 13 14 15 14 13 16 17 18 17 16 19 20 21 22 23 22 21 24 25 26 25 24 27 28 29 30 31 30 29 32 33 34 33 32 35 36 37 38 39 38 37 40 41 42 41 40 43 44 45 46 47 46 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5849\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5855\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5859\">4014.875482378399 2394.170603739477 165.6170649103794 3652.076737239104 2126.431710238408 5.963455196619579 4014.86873132489 2394.150756602061 5.914848698464203 3652.085820963454 2126.453278749081 165.6656718435825 3652.085820963454 2126.453278749081 165.6656718435825 4014.875482378399 2394.170603739477 165.6170649103794 3652.076737239104 2126.431710238408 5.963455196619579 4014.86873132489 2394.150756602061 5.914848698464203</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5859\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5856\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5860\">0.5937719023499191 -0.8046334086839314 7.489616755671859e-005 0.5937719023499191 -0.8046334086839314 7.489616755671859e-005 0.5937719023499191 -0.8046334086839314 7.489616755671859e-005 0.5937719023499191 -0.8046334086839314 7.489616755671859e-005 -0.5937719023499191 0.8046334086839314 -7.489616755671859e-005 -0.5937719023499191 0.8046334086839314 -7.489616755671859e-005 -0.5937719023499191 0.8046334086839314 -7.489616755671859e-005 -0.5937719023499191 0.8046334086839314 -7.489616755671859e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5860\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5858\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID5861\">55.99965818837818 86.9994689712306 55.00001818734242 86.00002843839017 56.00001825587994 86.00002803581583 54.99966454961418 86.99946937848081</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5861\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5857\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5855\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5856\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5857\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID5858\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5862\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5863\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID5866\">2012.01455893884 1524.313089727982 79.50289642686468 2008.873950597552 1520.726695283695 77.96055308343355 2008.495593123409 1523.894081037646 79.5031288142917</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5866\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5864\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID5867\">-0.05153269713978339 0.432288385155755 -0.9002617026092631 -0.05153269713978339 0.432288385155755 -0.9002617026092631 -0.05153269713978339 0.432288385155755 -0.9002617026092631</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5867\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5865\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5863\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5864\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5865\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5868\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5869\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID5872\">2008.489972137585 1523.894879279163 74.35954146192255 2012.008464877415 1524.317846837148 74.3611310826074 2012.008453652951 1524.317848431126 74.3540552742583 2012.014547993531 1524.313087542606 79.49571274388796 2012.01455893884 1524.313089727982 79.50289642686468 2012.01455893884 1524.313089727982 79.50289642686468 2008.489972137585 1523.894879279163 74.35954146192255 2012.014547993531 1524.313087542606 79.49571274388796 2012.008464877415 1524.317846837148 74.3611310826074 2012.008453652951 1524.317848431126 74.3540552742583 2008.495593123409 1523.894081037646 79.5031288142917 2008.495593123409 1523.894081037646 79.5031288142917 2012.387295789839 1521.146499922351 72.81685652665804 2012.392432112916 1521.149664435657 77.95506689576934 2012.39291668444 1521.145701719177 77.96032539364725 2012.386822619899 1521.150461019787 72.81878536677299 2012.014547993531 1524.313087542606 79.49571274388796 2012.009162166308 1524.312011893244 74.35828955498162 2012.008464877415 1524.317846837148 74.3611310826074 2012.008464877415 1524.317846837148 74.3611310826074 2012.009162166308 1524.312011893244 74.35828955498162 2012.014547993531 1524.313087542606 79.49571274388796 2012.386822619899 1521.150461019787 72.81878536677299 2012.392432112916 1521.149664435657 77.95506689576934 2012.387295789839 1521.146499922351 72.81685652665804 2012.39291668444 1521.145701719177 77.96032539364725 2008.495593123409 1523.894081037646 79.5031288142917 2008.868329702952 1520.727493486903 72.81708421644491 2008.873950597552 1520.726695283695 77.96055308343355 2008.489972137585 1523.894879279163 74.35954146192255 2008.489972137585 1523.894879279163 74.35954146192255 2008.495593123409 1523.894081037646 79.5031288142917 2008.868329702952 1520.727493486903 72.81708421644491 2008.873950597552 1520.726695283695 77.96055308343355 2012.39291668444 1521.145701719177 77.96032539364725 2008.868329702952 1520.727493486903 72.81708421644491 2012.387295789839 1521.146499922351 72.81685652665804 2008.873950597552 1520.726695283695 77.96055308343355 2008.873950597552 1520.726695283695 77.96055308343355 2012.39291668444 1521.145701719177 77.96032539364725 2008.868329702952 1520.727493486903 72.81708421644491 2012.387295789839 1521.146499922351 72.81685652665804</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID5872\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5870\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID5873\">-0.1189246037559924 0.9929029950930192 0.0007622052166822354 -0.1193531746742286 0.9928512956238947 0.001060411777038211 -0.1193531746742286 0.9928512956238947 0.001060411777038211 -0.1193531746742286 0.9928512956238947 0.001060411777038211 -0.1186651076747396 0.9929341639295325 0.0005816546249365617 0.1186651076747396 -0.9929341639295325 -0.0005816546249365617 0.1189246037559924 -0.9929029950930192 -0.0007622052166822354 0.1193531746742286 -0.9928512956238947 -0.001060411777038211 0.1193531746742286 -0.9928512956238947 -0.001060411777038211 0.1193531746742286 -0.9928512956238947 -0.001060411777038211 -0.1182362909793613 0.9929854476421172 0.0002833133036998884 0.1182362909793613 -0.9929854476421172 -0.0002833133036998884 0.9928789402967888 0.1191229340018541 -0.001066072190595684 0.9928789402967888 0.1191229340018541 -0.001066072190595684 0.9928789402967888 0.1191229340018541 -0.001066072190595684 0.9928789402967888 0.1191229340018541 -0.001066072190595684 0.9928789402967888 0.1191229340018541 -0.001066072190595684 0.9928789402967888 0.1191229340018541 -0.001066072190595684 0.9928789402967888 0.1191229340018541 -0.001066072190595684 -0.9928789402967888 -0.1191229340018541 0.001066072190595684 -0.9928789402967888 -0.1191229340018541 0.001066072190595684 -0.9928789402967888 -0.1191229340018541 0.001066072190595684 -0.9928789402967888 -0.1191229340018541 0.001066072190595684 -0.9928789402967888 -0.1191229340018541 0.001066072190595684 -0.9928789402967888 -0.1191229340018541 0.001066072190595684 -0.9928789402967888 -0.1191229340018541 0.001066072190595684 -0.9928789361764947 -0.1191229640729771 0.001066549342666124 -0.9928789361764947 -0.1191229640729771 0.001066549342666124 -0.9928789361764947 -0.1191229640729771 0.001066549342666124 -0.9928789361764947 -0.1191229640729771 0.001066549342666124 0.9928789361764947 0.1191229640729771 -0.001066549342666124 0.9928789361764947 0.1191229640729771 -0.001066549342666124 0.9928789361764947 0.1191229640729771 -0.001066549342666124 0.9928789361764947 0.1191229640729771 -0.001066549342666124 0.1182356549729446 -0.9929855233732065 -0.0002833096505247233 0.1182356549729446 -0.9929855233732065 -0.0002833096505247233 0.1182356549729446 -0.9929855233732065 -0.0002833096505247233 0.1182356549729446 -0.9929855233732065 -0.0002833096505247233 -0.1182356549729446 0.9929855233732065 0.0002833096505247233 -0.1182356549729446 0.9929855233732065 0.0002833096505247233 -0.1182356549729446 0.9929855233732065 0.0002833096505247233 -0.1182356549729446 0.9929855233732065 0.0002833096505247233</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID5873\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5871\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5869\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5870\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5871\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 10 4 0 12 13 14 13 12 15 13 15 16 16 15 17 16 17 18 26 27 28 27 26 29 34 35 36 35 34 37</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5871\" />\r\n\t\t\t\t\t<p>5 6 7 7 6 8 9 8 6 6 5 11 19 20 21 20 22 21 21 22 23 22 24 23 25 23 24 30 31 32 33 32 31 38 39 40 41 40 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5874\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5875\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID5878\">2008.868329702952 1520.727493486903 72.81708421644491 2012.009162166308 1524.312011893244 74.35828955498162 2008.489972137585 1523.894879279163 74.35954146192255 2012.386822619899 1521.150461019787 72.81878536677299 2012.387295789839 1521.146499922351 72.81685652665804</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID5878\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5876\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID5879\">0.05153838800256847 -0.4322457085552742 0.900281868082239 0.05153838800256847 -0.4322457085552742 0.900281868082239 0.05153838800256847 -0.4322457085552742 0.900281868082239 0.05153838800256847 -0.4322457085552742 0.900281868082239 0.05153838800256847 -0.4322457085552742 0.900281868082239</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID5879\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5877\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5875\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5876\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5877\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 0 1 2 1 0 3 3 0 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5880\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5881\">\r\n\t\t\t\t\t<float_array count=\"21\" id=\"ID5884\">2008.873950597552 1520.726695283695 77.96055308343355 2012.392432112916 1521.149664435657 77.95506689576934 2012.39291668444 1521.145701719177 77.96032539364725 2012.392432112916 1521.149664435657 77.95506689576934 2012.01455893884 1524.313089727982 79.50289642686468 2012.39291668444 1521.145701719177 77.96032539364725 2012.014547993531 1524.313087542606 79.49571274388796</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID5884\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5882\">\r\n\t\t\t\t\t<float_array count=\"21\" id=\"ID5885\">0.09413281031225469 -0.7908896321206299 -0.6046756186806378 0.09413281031225469 -0.7908896321206299 -0.6046756186806378 0.09413281031225469 -0.7908896321206299 -0.6046756186806378 0.9928505155634648 0.1193543282458603 -0.001548571710262476 0.9928505155634648 0.1193543282458603 -0.001548571710262476 0.9928505155634648 0.1193543282458603 -0.001548571710262476 0.9928505155634648 0.1193543282458603 -0.001548571710262476</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID5885\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5883\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5881\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5882\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5883\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5886\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5887\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5890\">1589.792039411752 2494.016847897292 239.7445296239131 1587.99374865937 2492.721091281534 232.5192709991473 1589.785667129152 2494.174763664811 232.5197000485192 1589.785667129152 2494.174763664811 232.5197000485192 1587.99374865937 2492.721091281534 232.5192709991473 1589.792039411752 2494.016847897292 239.7445296239131 1587.994103979282 2492.722027662594 239.7437054809056 1587.994103979282 2492.722027662594 239.7437054809056</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5890\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID5888\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID5891\">0.5934839396674743 -0.8048387578887628 -0.003374486160466908 0.6214601185157052 -0.7833171541060535 -0.01419708342015604 0.629907861545473 -0.7764720746623313 -0.01752721406226951 -0.629907861545473 0.7764720746623313 0.01752721406226951 -0.6214601185157052 0.7833171541060535 0.01419708342015604 -0.5934839396674743 0.8048387578887628 0.003374486160466908 0.5843958687071206 -0.8114687072190823 7.64345562579297e-005 -0.5843958687071206 0.8114687072190823 -7.64345562579297e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID5891\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5889\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5887\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID5888\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5889\" />\r\n\t\t\t\t\t<p>0 1 2 0 6 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5889\" />\r\n\t\t\t\t\t<p>3 4 5 4 7 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5892\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5893\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5895\">1580.14333210665 5109.931141501572 399.2888582799015 1580.145675281572 5109.931708903409 399.2888580909536</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5895\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5894\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5893\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5894\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5896\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5897\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5899\">665.0047256870575 4436.040750706023 399.4212058904386 665.0035803061037 4436.038686414027 399.4212062143716</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5899\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5898\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5897\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5898\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5900\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5901\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5903\">1356.79330125061 5196.974658546852 399.2893442108376 1356.795644425543 5196.975225948685 399.2893440218772</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5903\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5902\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5901\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5902\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5904\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5905\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5907\">637.3645091621088 4667.282934553594 399.3933771221307 637.3633637811417 4667.280870261683 399.3933774460717</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5907\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5906\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5905\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5906\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5908\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5909\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5911\">1984.138797715891 1727.746644204193 170.0884287890529 1987.657763802777 1728.165650639636 170.0882010992636</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5911\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5910\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5909\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5910\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5912\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5913\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5915\">1984.138972362267 1727.747102908693 173.6317358717829 1987.657752555274 1728.167664691546 173.631507989803</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5915\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5914\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5913\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5914\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5916\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5917\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5919\">2012.009162166308 1524.312011893244 74.35828955498162 2012.014384284985 1524.312630875454 74.35828769727699</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5919\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5918\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5917\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5918\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5920\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5921\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5923\">668.2714317501504 4207.780150084212 192.4188943158657 668.2754336498147 4207.746888016735 192.4172869963418</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5923\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5922\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5921\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5922\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5924\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5925\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID5927\">1888.665295987919 4100.881057669593 456.2597102923054 1888.665317682435 4100.881128919345 456.2964023365275 1888.665005073303 4100.880475687773 455.9307814965599 1888.665294018114 4100.881066770342 455.8163283173763</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5927\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5926\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5925\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5926\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5928\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5929\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID5931\">1588.013235938893 2492.715941884355 249.7004281237679 1588.011246655449 2492.757090771014 249.7004281884203 1588.013235517916 2492.715916226371 249.5609956321272</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5931\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5930\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5929\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5930\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5930\" />\r\n\t\t\t\t\t<p>0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5932\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5933\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5935\">1915.922333059473 4121.606236351602 249.3339605667096 1915.922331632084 4121.606237676093 249.2195405113329</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5935\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5934\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5933\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5934\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5936\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5937\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5939\">5374.585420097027 3901.140287348223 392.2389642340262 5374.585413973878 3901.140293029833 391.7481310256579</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5939\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5938\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5937\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5938\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5940\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5941\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5943\">638.6667499365744 4918.558332512559 249.2937516845548 638.6647528552589 4918.560999353897 249.2937514378201</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5943\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5942\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5941\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5942\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5944\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5945\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID5947\">1919.501605176155 4100.126119248324 254.4274954492475 1919.499138521053 4100.127079142552 254.4274954465766 1919.501299725165 4100.128674258353 254.4274951335433</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5947\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5946\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5945\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5946\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5946\" />\r\n\t\t\t\t\t<p>0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5948\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5949\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5951\">859.0790107627727 2943.245894245722 442.993967755542 859.0801647931639 2943.246752543413 442.9939510210016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5951\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5950\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5949\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5950\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5952\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5953\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5955\">1510.43846416015 2564.000475546648 434.5260718451465 1510.240273078737 2564.077469119886 434.5567633376231</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5955\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5954\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5953\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5954\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5956\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5957\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5959\">1915.17032867972 4136.367865169944 249.3320866492194 1915.163000198466 4136.367846398127 249.3320870835313</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5959\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5958\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5957\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5958\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5960\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5961\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID5963\">491.1803010378799 4504.550097551256 442.809980720461 491.2035244052313 4504.567234365841 442.8099773572142 491.1570776707777 4504.53296073668 442.8099840837109 491.1338543044844 4504.515823922888 442.8099874469296 491.2499711400965 4504.60150799537 442.8099706307827</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID5963\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5962\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5961\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5962\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 4 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5964\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5965\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID5967\">511.6636371603559 4257.839110840379 442.8409095258452 511.6868605267241 4257.856247654402 442.8409061626045 511.7100838936567 4257.873384469084 442.8409027993621 511.7333072606821 4257.890521283525 442.8408994361731</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID5967\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5966\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5965\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5966\" />\r\n\t\t\t\t\t<p>1 0 2 1 3 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5968\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5969\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID5971\">289.6658644552299 4617.675959673816 442.8052690574185 289.6890878216032 4617.693096487725 442.8052656941711 289.7123111885057 4617.710233302368 442.8052623309456 289.7355345559063 4617.727370116694 442.80525896771 289.7819812909852 4617.761643746553 442.8052522412865</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID5971\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5970\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5969\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5970\" />\r\n\t\t\t\t\t<p>1 0 2 1 3 2 4 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5972\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5973\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5975\">816.9128096151694 3296.077621000753 457.5443630202473 816.9105559150385 3296.075959541723 457.544371265864</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5975\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5974\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5973\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5974\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5976\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5977\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5979\">830.3220038534741 3183.851635604908 442.9642371945449 830.3242067099204 3183.85326664121 442.9642164537724</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5979\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5978\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5977\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5978\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5980\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5981\">\r\n\t\t\t\t\t<float_array count=\"21\" id=\"ID5983\">628.1212611236429 4875.648053913985 459.7227261114486 628.1226680586128 4875.646175147142 459.722726141319 628.1215739184568 4875.64828492897 459.7249580387629 628.1217432496387 4875.646868335205 459.7249532773649 628.123001438687 4875.646378673439 459.7249582151364 628.1231189093646 4875.635358391294 459.7249596359765 628.1343070364092 4875.631282415412 459.7249596132834</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID5983\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5982\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5981\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5982\" />\r\n\t\t\t\t\t<p>1 0 2 3 4 3 3 5 5 6</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5982\" />\r\n\t\t\t\t\t<p>0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5984\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5985\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5987\">629.0229557316243 4868.091823042499 442.7561229576866 629.0333614105662 4868.09950151898 442.7560717550477</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5987\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5986\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5985\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5986\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5988\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5989\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID5991\">1857.842491309808 5251.203271042755 443.1608234106219 1857.888938046129 5251.237544674405 443.1608235505769 1857.912161415018 5251.254681489649 443.1608236192028</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID5991\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5990\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5989\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5990\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5992\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5993\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5995\">1878.372271377097 5004.52655563489 443.160450767652 1878.418718114064 5004.560829266024 443.160450906771</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5995\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5994\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5993\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5994\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID5996\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID5997\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID5999\">1635.891168955356 5611.07439710974 443.1610343254768 1635.914392323694 5611.091533925244 443.1610343941183</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID5999\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID5998\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID5997\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID5998\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6000\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6001\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6003\">788.156851087379 3536.684138821261 457.514633106905 788.1535490419556 3536.681700591651 457.5146406637422</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6003\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6002\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6001\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6002\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6004\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6005\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6007\">801.564996978896 3424.457376668242 442.934506596264 801.5682485439988 3424.459781433122 442.9344841543037</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6007\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6006\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6005\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6006\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6008\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6009\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6011\">573.1600922550283 3517.740424331806 442.9336892097777 573.1833156216608 3517.757561145805 442.9336858465226</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6011\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6010\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6009\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6010\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6012\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6013\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID6015\">532.1934200141573 4011.162397756728 442.8718316038069 532.2166433812186 4011.179534571537 442.8718282405736 532.1701966478454 4011.145260942727 442.8718349669682</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID6015\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6014\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6013\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6014\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6016\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6017\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6019\">552.6767561354805 3764.451411044999 442.9027604072425 552.6999795020679 3764.468547858985 442.9027570440286</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6019\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6018\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6017\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6018\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6020\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6021\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6023\">730.6449350583243 4017.89716587288 457.4551716394146 730.6395352928648 4017.893182718268 457.4551794624982</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6023\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6022\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6021\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6022\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6024\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6025\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6027\">744.050983229773 3905.668858794647 442.8750453970466 744.0563334786525 3905.672800419463 442.8750222120928</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6027\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6026\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6025\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6026\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6028\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6029\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6031\">715.293976355174 4146.274599857686 442.8453147962248 715.300373998216 4146.279326210197 442.8452917353548</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6031\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6030\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6029\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6030\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6032\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6033\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6035\">1919.384106828585 4511.136046708944 442.7387274382141 1919.407330196616 4511.153183524089 442.7387240750167</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6035\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6034\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6033\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6034\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6036\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6037\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6039\">854.3893058046519 2796.244811785345 459.9829981140123 854.385341991564 2796.246340697535 459.9829979262216</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6039\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6038\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6037\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6038\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6040\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6041\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6043\">1779.267415970639 5016.408101001471 459.6499920526802 1779.265063161061 5016.399143650015 459.6499933196105</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6043\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6042\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6041\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6042\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6044\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6045\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6047\">1787.183826108427 5054.383396098542 459.3048886762273 1787.182045394648 5054.384075146582 459.3048671931792</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6047\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6046\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6045\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6046\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6048\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6049\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6051\">701.8889768777403 4258.503680786278 457.425440847852 701.8825284167779 4258.498923794107 457.4254488643299</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6051\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6050\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6049\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6050\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6052\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6053\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6055\">673.1330187607873 4499.110195167514 457.3957072139879 673.1255215423971 4499.104664856608 457.3957182614154</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6055\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6054\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6053\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6054\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6056\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6057\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6059\">686.5369694807764 4386.880340920194 442.8155841943924 686.544415808306 4386.885841203713 442.8155615102174</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6059\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6058\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6057\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6058\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6060\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6061\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID6063\">1213.209290841952 2638.607891536035 459.9857179528091 1213.211960992745 2638.606849995088 459.9852366126877 1213.213064355337 2638.606419608594 459.9850377128005 1213.217089632293 2638.60487781707 459.983257108714 1213.209289921855 2638.607888169933 459.9832571547988</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID6063\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6062\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6061\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6062\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"3\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6062\" />\r\n\t\t\t\t\t<p>2 1 3 2 1 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6064\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6065\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6067\">759.4008929066558 3777.29065373743 457.4849023849576 759.3965421657381 3777.287441668349 457.4849100669118</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6067\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6066\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6065\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6066\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6068\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6069\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6071\">1462.6044508019 2504.884397910799 459.9698108733448 1462.611868775158 2504.881974570677 459.9698107701084</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6071\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6070\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6069\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6070\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6072\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6073\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6075\">1560.676980395672 5024.364536230096 391.7621973911917 1560.669819370377 5024.366907141749 391.7621974372373</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6075\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6074\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6073\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6074\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6076\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6077\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6079\">1935.468402074486 4514.130593422266 537.6434826610224 1936.679944412138 4515.024960081395 537.6433071581334</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6079\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6078\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6077\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6078\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6080\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6081\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6083\">772.8079901041701 3665.063117731674 442.9047759972927 772.8122903639692 3665.06629634235 442.9047530795202</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6083\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6082\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6081\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6082\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6084\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6085\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6087\">845.6687677004475 3055.47110688627 457.5740981132708 845.6675627893856 3055.470218478384 457.5741018640187</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6087\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6086\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6085\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6086\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6088\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6089\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6091\">3536.589629329065 2305.366604202357 435.7493812542955 3536.588799973248 2305.373578890131 435.7493803923552</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6091\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6090\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6089\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6090\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6092\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6093\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID6095\">1400.607400920152 2565.681670192994 459.9822728829359 1400.6125189043 2565.679678914183 459.9849063705121 1400.618592782921 2565.677314863674 459.9822728212125</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID6095\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6094\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6093\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6094\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6096\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6097\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6099\">1400.611618692478 2565.677857112395 445.3912285502119 1400.608973951781 2565.67886433408 445.3899115466696</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6099\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6098\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6097\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6098\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6100\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6101\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6103\">3449.518458910227 745.9190067420686 457.7447375277982 3449.446077258503 745.8655954115327 457.7447480102472</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6103\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6102\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6101\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6102\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6104\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6105\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6107\">1602.207850436766 5126.426672052119 250.6228616712295 1602.204224314119 5126.413736972052 178.160637836005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6107\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6106\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6105\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6106\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6108\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6109\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6111\">643.3794272638825 4419.30528661107 250.7616689201179 643.3793019121158 4419.295088549498 178.2994445574177</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6111\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6110\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6109\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6110\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6112\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6113\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6115\">615.7392107389806 4650.547470458587 250.7338401517892 615.739085387208 4650.537272397028 178.2716157890939</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6115\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6114\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6113\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6114\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6116\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6117\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6119\">4545.137475415012 4127.275102864034 245.2928634416098 4545.137126084323 4127.274185421182 238.2062493363783</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6119\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6118\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6117\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6118\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6120\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6121\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID6123\">3976.328824994007 499.8103937044386 239.8877603906463 3976.443283296274 499.8948376391986 239.8901910323763 3976.258072250603 499.8380540639785 239.8877627074922</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID6123\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6122\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6121\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6122\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6124\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6125\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6127\">3964.560484430296 504.379539163383 169.8062979845219 3965.475927846252 504.0348033789271 245.7906042408697</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6127\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6126\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6125\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6126\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6128\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6129\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6131\">4072.030570836004 462.5693904357443 245.7862408184845 4072.030510637787 462.5692357668295 245.7946025318375</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6131\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6130\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6129\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6130\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6132\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6133\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6135\">2054.666159195257 1251.375838882934 245.791934137595 2053.227921924599 1254.745244905932 245.7915688447824</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6135\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6134\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6133\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6134\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6136\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6137\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6139\">2052.278324670927 1252.305056889492 245.7919315766495 2053.072709894621 1254.346408241464 245.7916281317617</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6139\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6138\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6137\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6138\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6140\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6141\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6143\">2053.56332505938 1255.607138637537 245.7914407251194 2053.865266905757 1255.489647241578 245.7914410478783</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6143\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6142\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6141\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6142\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6144\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6145\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6147\">2056.865419137743 1254.322147801451 245.7914442655328 2055.580421200231 1251.020056804761 245.7919351181387</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6147\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6146\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6145\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6146\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6148\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6149\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6151\">2062.187632794753 1248.450857347104 245.7919419486217 2063.188479206986 1251.022757158196 245.7915596382234</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6151\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6150\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6149\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6150\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6152\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6153\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6155\">2065.543774947588 1247.304489724283 245.791924877736 2065.489724063342 1247.165859304478 245.7919454901067</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6155\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6154\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6153\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6154\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6156\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6157\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6159\">2168.453124563263 1207.095866011366 245.7920561928046 2166.985781408383 1210.533459352017 245.7916835074907</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6159\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6158\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6157\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6158\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6160\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6161\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6163\">2166.016967078578 1208.043888740078 245.7920535800324 2166.82085688567 1210.109664255018 245.7917465045169</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6163\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6162\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6161\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6162\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6164\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6165\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6167\">2167.301967467026 1211.345970488123 245.7915627285025 2167.60391717083 1211.228476034687 245.7915630512702</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6167\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6166\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6165\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6166\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6168\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6169\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6171\">2170.604061545393 1210.06097965202 245.7915662689161 2169.319063607907 1206.758888655401 245.7920571215223</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6171\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6170\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6169\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6170\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6172\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6173\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6175\">2175.926275202564 1204.189689197724 245.7920639520052 2176.936626198273 1206.786013172352 245.7916780109788</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6175\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6174\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6173\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6174\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6176\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6177\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6179\">2179.301634439041 1203.092704190491 245.7920395404416 2179.228366471141 1202.904691155071 245.7920674934898</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6179\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6178\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6177\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6178\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6180\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6181\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6183\">2282.240089716268 1162.815893223321 245.7921782480136 2280.743640806636 1166.321673578288 245.7917981702322</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6183\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6182\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6181\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6182\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6184\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6185\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6187\">2279.7556094862 1163.782720590531 245.792175583416 2280.569003834282 1165.872920159472 245.7918648772883</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6187\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6186\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6185\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6186\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6188\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6189\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6191\">2281.040609874652 1167.084802338573 245.7916847318862 2281.342567458121 1166.967304819009 245.791685054662</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6191\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6190\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6189\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6190\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6192\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6193\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6195\">2284.342703953012 1165.799811502454 245.7916882722993 2283.057706015561 1162.497720505909 245.7921791249053</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6195\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6194\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6193\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6194\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6196\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6197\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6199\">2289.664917610348 1159.928521048209 245.7921859553885 2290.684773146836 1162.549269076646 245.7917963837504</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6199\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6198\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6197\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6198\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6200\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6201\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6203\">2293.059493844374 1158.880918435336 245.7921542031802 2292.967008878916 1158.64352300553 245.7921894968732</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6203\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6202\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6201\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6202\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6204\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6205\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6207\">2396.027055192985 1118.535920309384 245.7923003032234 2394.501500333631 1122.109888135407 245.7919128329245</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6207\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6206\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6205\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6206\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6208\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6209\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6211\">2393.494251893842 1119.521552441055 245.792297586799 2394.317150846491 1121.636176227379 245.7919832500352</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6211\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6210\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6209\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6210\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6212\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6213\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6215\">2394.779252282291 1122.823634189097 245.7918067352694 2395.081217718729 1122.706133613788 245.7918070580536</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6215\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6214\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6213\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6214\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6216\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6217\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6219\">2398.081346360653 1121.53864335296 245.7918102756826 2396.796348423225 1118.236552356484 245.7923011282887</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6219\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6218\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6217\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6218\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6220\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6221\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6223\">2403.403560018145 1115.667352898767 245.7923079587717 2404.43292015884 1118.312525144013 245.7919147564972</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6223\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6222\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6221\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6222\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6224\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6225\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6227\">2406.817353378744 1114.669133011807 245.7922688658693 2406.705651286703 1114.382354856057 245.7923115002564</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6227\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6226\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6225\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6226\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6228\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6229\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6231\">2509.814020517259 1074.255947454754 245.7924223584329 2508.259359800016 1077.898102536736 245.7920274956396</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6231\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6230\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6229\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6230\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6232\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6233\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6235\">2507.232894301487 1075.260384291565 245.7924195901826 2508.065297828858 1077.399432218582 245.7921016227941</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6235\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6234\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6233\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6234\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6236\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6237\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6239\">2508.517894689936 1078.562466039607 245.7919287386528 2508.819868001579 1078.444962399901 245.7919290614453</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6239\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6238\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6237\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6238\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6240\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6241\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6243\">2511.819988768295 1077.277475203454 245.7919322790656 2510.534990830892 1073.975384207048 245.7924231316721</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6243\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6242\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6241\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6242\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6244\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6245\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6247\">2517.142202425952 1071.406184749309 245.7924299621546 2518.181067141307 1074.075781135437 245.7920331292563</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6247\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6246\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6245\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6246\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6248\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6249\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6251\">2520.5752128528 1070.457347433255 245.7923835285815 2520.444293694502 1070.121186706572 245.7924335036395</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6251\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6250\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6249\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6250\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6252\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6253\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6255\">2623.600986066443 1029.975974512569 245.7925444136426 2622.017219355833 1033.686317167876 245.7921421583207</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6255\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6254\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6253\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6254\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6256\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6257\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6259\">2620.971536709119 1030.999216142042 245.7925415935659 2621.813444855578 1033.16268832374 245.7922199955357</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6259\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6258\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6257\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6258\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6260\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6261\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6263\">2622.25653709757 1034.301297890086 245.7920507420362 2622.558518266624 1034.18379119291 245.7920510648371</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6263\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6262\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6261\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6262\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6264\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6265\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6267\">2625.55863117593 1033.016307053914 245.7920542824493 2624.273633238558 1029.714216057583 245.7925451350553</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6267\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6266\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6265\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6266\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6268\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6269\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6271\">2630.880844833746 1027.14501659982 245.7925519655381 2631.929214167972 1029.839037240435 245.7921515019975</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6271\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6270\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6269\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6270\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6272\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6273\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6275\">2634.333072416287 1026.245562084514 245.7924981912593 2634.182936102288 1025.860018557057 245.7925555070228</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6275\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6274\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6273\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6274\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6276\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6277\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6279\">2737.387951225447 985.6960017222787 245.7926664688518 2735.775078756487 989.4745314003301 245.7922568210611</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6279\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6278\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6277\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6278\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6280\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6281\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6283\">2734.71017911676 986.7380479925751 245.7926635969491 2735.561591805473 988.9259442315097 245.7923383683064</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6283\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6282\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6281\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6282\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6284\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6285\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6287\">2735.995179505214 990.0401297406165 245.7921727454193 2736.297168545806 989.9226199804748 245.7921730682285</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6287\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6286\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6285\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6286\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6288\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6289\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6291\">2739.297273583568 988.7551389044263 245.7921762858321 2738.012275646222 985.4530479081684 245.7926671384382</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6291\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6290\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6289\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6290\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6292\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6293\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6295\">2744.619487241547 982.8838484503845 245.7926739689211 2745.677361118228 985.6022931491264 245.7922698747682</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6295\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6294\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6293\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6294\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6296\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6297\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6299\">2748.090931824614 982.0337763370885 245.792612853997 2747.921578510075 981.5988504075945 245.792677510406</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6299\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6298\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6297\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6298\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6300\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6301\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6303\">2851.174916492366 941.4160288899814 245.7927885240611 2849.532938200048 945.2627457430726 245.7923714837848</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6303\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6302\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6301\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6302\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6304\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6305\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6307\">2848.448821524386 942.4768798430996 245.792785600332 2849.30973877641 944.6892001933893 245.7924567410697</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6307\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6306\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6305\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6306\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6308\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6309\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6311\">2849.73382191284 945.7789615911393 245.7922947488026 2850.035818817533 945.6614487709244 245.7922950716203</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6311\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6310\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6309\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6310\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6312\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6313\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6315\">2853.035915991194 944.4939707549336 245.7922982892158 2851.750918053876 941.1918797587441 245.7927891418216</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6315\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6314\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6313\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6314\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6316\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6317\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6319\">2858.358129649339 938.6226803009442 245.7927959723047 2859.425508089262 941.3655491112268 245.7923882475309</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6319\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6318\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6317\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6318\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6320\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6321\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6323\">2861.848791275848 937.8219906999514 245.7927275167178 2861.660220917857 937.3376822581249 245.7927995137893</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6323\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6322\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6321\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6322\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6324\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6325\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6327\">2964.961881814364 897.1360560362693 245.7929105792703 2963.290797665524 901.0509601421081 245.7924861465002</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6327\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6326\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6325\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6326\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6328\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6329\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6331\">1378.857819580769 5213.470189097375 250.623347602167 1378.854193458086 5213.457254017366 178.1611237669324</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6331\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6330\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6329\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6330\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6332\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6333\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID6335\">3026.550135303331 4884.141120021002 188.9500846985076 3026.550122676448 4884.141136196689 188.9528086882448 3026.550168375767 4884.141077653519 188.942949998984</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID6335\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6334\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6333\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6334\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6336\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6337\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6339\">3345.383497980135 4899.066589037111 88.88965188404075 3345.383205085288 4899.068963958373 88.88976710090014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6339\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6338\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6337\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6338\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6340\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6341\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6343\">4893.163323699073 3290.41937653978 245.3840539215157 4896.007553660253 3292.532521300936 245.3836401961898 4895.276468491651 3287.575146558723 245.3843179792673 4898.120698454078 3289.688291328276 245.3839042539404</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6343\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6342\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6341\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6342\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6344\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6345\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6347\">4891.023924341233 3284.415599923294 245.3849365705083 4888.179694378819 3282.302455153728 245.3853502958351 4888.910779547408 3287.259829895955 245.3846725127579 4886.066549586232 3285.146685134803 245.3850862380839</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6347\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6346\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6345\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6346\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6348\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6349\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6351\">4782.686533384345 3208.921019938399 245.4000487633846 4784.799678178165 3206.076789965742 245.4003128211348 4779.842303423164 3206.807875177247 245.4004624887105 4781.955448215744 3203.963645196169 245.4007265464617</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6351\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6350\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6349\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6350\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6352\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6353\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6355\">4791.896452291006 3211.349481370719 245.399280504567 4789.052222328579 3209.23633660116 245.3996942298938 4789.783307497188 3214.193711343381 245.3990164468165 4786.939077536008 3212.080566582233 245.3994301721424</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6355\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6354\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6353\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6354\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6356\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6357\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6359\">4676.462287221273 3130.582209980838 245.415425014011 4678.575432015093 3127.737980008189 245.4156890717616 4673.618057260091 3128.469065219696 245.4158387393372 4675.731202052679 3125.624835238619 245.4161027970888</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6359\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6358\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6357\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6358\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6360\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6361\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6363\">4685.672206127941 3133.010671413161 245.4146567551934 4682.82797616551 3130.897526643604 245.4150704805206 4683.559061334118 3135.854901385824 245.414392697443 4680.714831372937 3133.741756624672 245.414806422769</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6363\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6362\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6361\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6362\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6364\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6365\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6367\">4570.238041058203 3052.243400023284 245.4308012646377 4572.351185852031 3049.399170050629 245.4310653223883 4567.393811097025 3050.13025526214 245.4312149899637 4569.506955889605 3047.286025281062 245.4314790477153</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6367\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6366\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6365\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6366\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6368\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6369\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6371\">4579.447959964869 3054.671861455609 245.4300330058202 4576.603730002445 3052.558716686054 245.430446731147 4577.334815171043 3057.516091428264 245.4297689480696 4574.490585209866 3055.402946667123 245.4301826733953</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6371\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6370\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6369\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6370\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6372\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6373\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6375\">4464.013794895139 2973.904590065728 245.4461775152645 4466.126939688958 2971.060360093079 245.4464415730148 4461.169564933954 2971.79144530458 245.4465912405905 4463.282709726545 2968.947215323512 245.4468552983421</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6375\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6374\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6373\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6374\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6376\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6377\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6379\">4473.223713801807 2976.333051498054 245.4454092564467 4470.379483839372 2974.219906728498 245.4458229817739 4471.110569007975 2979.177281470714 245.4451451986965 4468.266339046798 2977.064136709563 245.4455589240224</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6379\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6378\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6377\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6378\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6380\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6381\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6383\">4357.789548732068 2895.565780108175 245.461553765891 4359.902693525895 2892.721550135522 245.4618178236412 4354.945318770889 2893.452635347026 245.4619674912171 4357.05846356347 2890.608405365955 245.4622315489687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6383\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6382\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6381\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6382\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6384\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6385\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6387\">4366.999467638734 2897.994241540495 245.4607855070734 4364.15523767631 2895.881096770944 245.4611992324006 4364.886322844911 2900.838471513157 245.4605214493231 4362.042092883732 2898.725326752007 245.460935174649</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6387\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6386\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6385\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6386\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6388\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6389\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6391\">4251.565302569001 2817.226970150618 245.4769300165174 4253.678447362819 2814.382740177966 245.4771940742679 4248.721072607823 2815.113825389473 245.4773437418437 4250.834217400401 2812.269595408396 245.4776077995953</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6391\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6390\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6389\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6390\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6392\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6393\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6395\">4260.77522147567 2819.655431582945 245.4761617577001 4257.930991513243 2817.542286813387 245.4765754830272 4258.66207668184 2822.499661555607 245.4758976999498 4255.817846720664 2820.386516794458 245.4763114252756</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6395\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6394\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6393\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6394\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6396\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6397\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6399\">4145.341056405939 2738.888160193063 245.4923062671444 4147.454201199753 2736.043930220413 245.4925703248949 4142.496826444753 2736.775015431919 245.4927199924704 4144.609971237338 2733.930785450843 245.492984050222</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6399\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6398\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6397\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6398\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6400\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6401\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6403\">4154.550975312595 2741.316621625385 245.4915380083269 4151.70674535017 2739.203476855832 245.491951733654 4152.437830518775 2744.16085159805 245.4912739505764 4149.593600557598 2742.047706836897 245.4916876759023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6403\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6402\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6401\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6402\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6404\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6405\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6407\">4039.116810242866 2660.549350235511 245.507682517771 4041.229955036686 2657.705120262855 245.5079465755215 4036.272580281682 2658.43620547436 245.5080962430971 4038.385725074265 2655.591975493285 245.5083603008486</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6407\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6406\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6405\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6406\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6408\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6409\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6411\">4048.32672914953 2662.977811667835 245.5069142589535 4045.482499187102 2660.864666898278 245.5073279842803 4046.213584355704 2665.822041640492 245.5066502012031 4043.369354394526 2663.708896879345 245.507063926529</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6411\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6410\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6409\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6410\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6412\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6413\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6415\">2962.187463932028 898.2157116936446 245.7929076037158 2963.057885758359 900.4524561835506 245.7925751138283</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6415\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6414\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6413\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6414\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6416\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6417\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6419\">2963.47246432048 901.5177934416834 245.792416752186 2963.774469087048 901.4002775622619 245.792417075012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6419\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6418\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6417\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6418\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6420\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6421\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6423\">2966.774558398834 900.232802605462 245.7924202925989 2965.48956046154 896.9307116093428 245.7929111452051</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6423\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6422\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6421\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6422\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6424\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6425\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6427\">2972.096772057138 894.3615121515222 245.792917975688 2973.173655071156 897.1288051012282 245.7925066202904</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6427\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6426\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6425\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6426\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6428\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6429\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6431\">2975.606650748098 893.610205116795 245.7928421794307 2975.398863325644 893.0765141086738 245.7929215171725</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6431\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6430\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6429\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6430\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6432\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6433\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6435\">3078.748847311463 852.8560831143745 245.7930326344803 3077.048657200631 856.8391747200326 245.7926008091895</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6435\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6434\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6433\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6434\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6436\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6437\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6439\">3075.926106339674 853.9545435441387 245.793029607099 3076.806032774708 856.2157122620588 245.7926934865736</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6439\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6438\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6437\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6438\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6440\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6441\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6443\">3077.211106728124 857.2566252921763 245.7925387555691 3077.513119366551 857.1391063496683 245.7925390784036</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6443\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6442\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6441\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6442\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6444\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6445\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6447\">3080.513200806477 855.9716344559397 245.7925422959819 3079.228202869216 852.6695434598946 245.7930331485883</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6447\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6446\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6445\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6446\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6448\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6449\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6451\">3085.835414464945 850.1003440020502 245.7930399790713 3086.921802087456 852.8920611795784 245.7926249930363</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6451\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6450\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6449\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6450\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6452\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6453\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6455\">3089.364510290877 849.398419714837 245.7929568421173 3089.137505733443 848.8153459591808 245.7930435205557</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6455\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6454\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6453\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6454\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6456\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6457\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6459\">3192.535812806285 808.5761101934006 245.79315468969 3190.806516734834 812.6273892956731 245.792715471879</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6459\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6458\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6457\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6458\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6460\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6461\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6463\">3189.664748747312 809.6933753946735 245.7931516104821 3190.55417979034 811.9789683387733 245.7928118593195</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6463\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6462\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6461\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6462\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6464\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6465\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6467\">3190.949749135761 812.9954571427102 245.7926607589517 3191.251769631603 812.8779351427279 245.792661081795</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6467\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6466\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6465\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6466\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6468\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6469\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6471\">3194.251843214109 811.7104663064533 245.7926642993652 3192.966845276879 808.4083753104833 245.7931551519715</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6471\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6470\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6469\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6470\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6472\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6473\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6475\">3199.574056872744 805.8391758526182 245.7931619824544 3200.669949103181 808.6553172565161 245.7927433657816</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6475\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6474\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6473\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6474\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6476\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6477\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6479\">3203.122369832149 805.1866343090519 245.7930715048035 3202.87614814123 804.5541778097174 245.7931655239391</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6479\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6478\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6477\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6478\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6480\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6481\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6483\">3306.522498642823 764.2184168309534 245.7932769590888 3304.643801163536 768.6197035527428 245.7927997953411</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6483\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6482\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6481\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6482\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6484\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6485\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6487\">3303.40339132735 765.4322072551418 245.7932736138556 3304.341609691895 767.8431701856964 245.792915226567</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6487\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6486\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6485\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6486\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6488\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6489\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6491\">3304.688391715799 768.7342890031744 245.7927827623259 3304.990452582037 768.6167512942939 245.7927830852119</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6491\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6490\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6489\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6490\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6492\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6493\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6495\">3307.990485794145 767.4492981668325 245.792786302739 3306.705487857055 764.147207171226 245.7932771553451</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6495\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6494\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6493\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6494\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6496\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6497\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6499\">3313.312699453608 761.5780077132586 245.7932839858279 3314.457379004376 764.5195191024043 245.7928467330291</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6499\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6498\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6497\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6498\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6500\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6501\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6503\">3316.959654299319 761.1789486670257 245.7931558282505 3316.614790722041 760.2930096702162 245.7932875273125</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6503\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6502\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6501\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6502\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6504\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6505\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6507\">2037.720056014686 1372.946675157343 245.7770309708825 2041.238323251861 1373.367175629168 245.7768030571988 2038.140559091067 1369.428402923498 245.7774657175134 2041.658826314461 1369.848903400562 245.7772378038301</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6507\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6506\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6505\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6506\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6508\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6509\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6511\">2023.236150161007 1494.131435118067 245.7620563826388 2026.754417398183 1494.551935589891 245.7618284689557 2023.656653217828 1490.61316287572 245.7624911292729 2027.174920441219 1491.03366335278 245.7622632155892</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6511\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6510\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6509\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6510\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6512\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6513\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6515\">2008.752244307342 1615.316195078802 245.7470817943965 2012.270511544518 1615.736695550628 245.7468538807127 2009.1727473446 1611.797922827955 245.747516541032 2012.691014567994 1612.218423305014 245.7472886273483</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6515\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6514\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6513\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6514\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6516\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6517\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6519\">1994.268338453687 1736.500955039519 245.7321072061529 1997.78660569086 1736.921455511349 245.7318792924698 1994.688841471382 1732.982682780169 245.7325419527907 1998.207108694774 1733.403183257231 245.7323140391073</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6519\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6518\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6517\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6518\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6520\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6521\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6523\">1979.784432305691 1857.685714894791 245.7171326179385 1983.302699542863 1858.106215366618 245.716904704255 1980.204935323378 1854.167442635441 245.717567364576 1983.723202546773 1854.5879431125 245.7173394508925</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6523\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6522\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6521\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6522\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6524\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6525\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID6527\">4615.525491765893 4184.984790509121 235.3487828561726 4615.525690051758 4184.985312051513 239.376453915921</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID6527\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6526\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6525\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6526\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6528\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6529\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID6531\">4605.091711827247 4189.534224298652 239.3763793838151 4605.14983797416 4189.577116305887 239.376370965494 4605.091709712982 4189.534222738508 239.3599404260083</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID6531\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6530\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6529\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6530\" />\r\n\t\t\t\t\t<p>1 0 2 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6532\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6533\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6535\">4528.307477015303 4132.874181783292 239.2081412580675 4528.307937135378 4132.874521311619 239.3875012043792 4409.508287515963 4300.388758732081 239.2077010318082 4409.524052174011 4300.367426016497 239.3703500191757</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6535\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6534\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6533\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6534\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6536\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6537\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6539\">5259.536338540398 4804.811165165389 169.1857232677471 5366.528045497877 3857.555488668178 169.3030809276579 4385.924227809781 5185.680724084601 169.1794826951403 4492.561799672329 4238.579450718334 169.2968378239586</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6539\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6538\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6537\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6538\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6540\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6541\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6543\">4498.023429030702 5344.436028352915 245.1415945686815 4496.550700641695 5341.213281695091 245.1420843880972 4494.80068234368 5345.908756724924 245.1415627811289 4493.327953962649 5342.686010070051 245.1420526005442</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6543\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6542\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6541\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6542\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6544\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6545\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6547\">4277.611830226762 5441.439873224753 245.1399020910862 4274.383896313303 5442.901197185031 245.1398720356691 4279.073154195989 5444.667807106162 245.1394121623362 4275.845220290499 5446.129131069446 245.1393821069186</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6547\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6546\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6545\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6546\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6548\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6549\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6551\">4282.438140973641 5439.255018161433 245.1399470195953 4283.899464950834 5442.482952045834 245.1394570908444 4285.666074887087 5437.793694201142 245.1399770750124 4287.127398856324 5441.021628082563 245.1394871462624</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6551\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6550\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6549\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6550\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6552\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6553\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6555\">4168.948318801236 5494.992571846984 245.1383259463775 4167.486994832013 5491.764637965574 245.1388158751278 4165.720384895747 5496.453895810262 245.1382958909602 4164.259060918558 5493.225961925855 245.1387858197107</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6555\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6554\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6553\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6554\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6556\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6557\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6559\">4175.541239492341 5488.118458941965 245.138890859054 4172.313305578895 5489.579782902261 245.1388608036369 4177.002563461572 5491.346392823374 245.1384009303041 4173.77462955608 5492.807716786656 245.1383708748863</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6559\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6558\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6557\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6558\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6560\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6561\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6563\">4988.076736482791 3473.471466419702 245.3556795036017 4991.600821615754 3473.840043484478 245.3554581154621 4988.445313582384 3469.947381325033 245.3561175474703 4991.969398721937 3470.315958384455 245.3558961593311</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6563\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6562\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6561\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6562\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6564\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6565\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6567\">4992.520547292499 3465.046888077528 245.3565511016093 4992.889124398703 3461.522802977513 245.3569891454783 4988.996462159555 3464.678311012759 245.3567724897491 4989.365039259141 3461.154225918086 245.3572105336176</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6567\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6566\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6565\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6566\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6568\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6569\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6571\">4998.393789678924 3371.774275867443 245.3683362005796 4998.050138736517 3375.300923312339 245.3678965965906 5001.92039399168 3372.117920101133 245.3681179159523 5001.576742305091 3375.644568751859 245.3676783118434</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6571\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6570\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6569\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6570\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6572\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6573\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6575\">4992.7975424372 3363.853270483359 245.3696374038063 4995.656425971522 3365.946622612823 245.369225518564 4994.890866853326 3360.994420679492 245.3699043309469 4997.749751045405 3363.087774063293 245.3694924455096</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6575\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6574\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6573\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6574\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6576\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6577\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6579\">3932.892564079793 2582.210540277952 245.5230587683976 3935.005708873619 2579.366310305296 245.5233228261482 3930.048334118616 2580.097395516806 245.5234724937239 3932.161478911198 2577.253165535733 245.5237365514755</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6579\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6578\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6577\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6578\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6580\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6581\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6583\">3942.102482986462 2584.639001710276 245.5222905095797 3939.258253024033 2582.525856940719 245.5227042349071 3939.989338192637 2587.483231682939 245.5220264518295 3937.145108231458 2585.370086921788 245.5224401771555</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6583\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6582\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6581\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6582\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6584\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6585\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6587\">3826.668317916728 2503.871730320402 245.5384350190242 3828.78146271055 2501.027500347743 245.5386990767748 3823.824087955547 2501.758585559252 245.5388487443503 3825.937232748129 2498.914355578175 245.5391128021018</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6587\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6586\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6585\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6586\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6588\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6589\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6591\">3835.878236823394 2506.300191752718 245.5376667602068 3833.034006860968 2504.187046983169 245.5380804855337 3833.765092029565 2509.144421725382 245.5374027024564 3830.920862068388 2507.031276964231 245.5378164277819</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6591\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6590\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6589\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6590\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6592\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6593\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6595\">3720.444071753661 2425.532920362843 245.5538112696508 3722.557216547481 2422.688690390188 245.5540753274008 3717.599841792478 2423.419775601696 245.554224994977 3719.712986585062 2420.575545620618 245.5544890527285</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6595\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6594\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6593\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6594\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6596\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6597\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6599\">3729.653990660327 2427.961381795168 245.5530430108333 3726.809760697898 2425.848237025611 245.5534567361604 3727.540845866501 2430.805611767831 245.552778953083 3724.696615905322 2428.692467006678 245.5531926784086</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6599\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6598\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6597\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6598\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6600\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6601\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6603\">3487.092222347983 2397.576533299098 245.5689304093908 3485.811750584176 2394.272684491429 245.5694212112714 3483.788373517627 2398.857005060171 245.568927467299 3482.50790174603 2395.553156249066 245.5694182691802</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6603\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6602\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6601\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6602\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6604\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6605\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6607\">3494.055411864144 2391.077762391067 245.5694285430475 3490.751563026006 2392.358234148716 245.5694256009563 3495.335883627956 2394.381611198742 245.5689377411675 3492.032034797594 2395.66208295981 245.5689347990752</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6607\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6606\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6605\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6606\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6608\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6609\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6611\">3363.013737841818 2446.170917886746 245.5687545009176 3361.73326607801 2442.867069079076 245.5692453027977 3359.709889011459 2447.451389647819 245.5687515588255 3358.42941723987 2444.147540836715 245.5692423607065</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6611\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6610\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6609\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6610\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6612\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6613\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6615\">3369.976927357981 2439.672146978719 245.5692526345737 3366.673078519844 2440.952618736366 245.5692496924821 3371.257399121787 2442.975995786387 245.5687618326938 3367.95355029143 2444.256467547458 245.5687588906017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6615\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6614\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6613\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6614\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6616\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6617\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6619\">3238.935253335657 2494.7653024744 245.5685785924439 3237.654781571846 2491.461453666732 245.5690693943239 3235.631404505299 2496.045774235471 245.5685756503519 3234.350932733705 2492.741925424371 245.569066452233</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6619\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6618\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6617\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6618\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6620\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6621\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6623\">3245.898442851817 2488.266531566371 245.5690767261002 3242.594594013683 2489.547003324019 245.5690737840092 3247.178914615633 2491.570380374042 245.5685859242202 3243.875065785271 2492.850852135111 245.5685829821283</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6623\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6622\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6621\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6622\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6624\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6625\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6627\">3114.856768829493 2543.359687062047 245.5684026839704 3113.576297065685 2540.055838254382 245.5688934858506 3111.552919999132 2544.640158823122 245.5683997418779 3110.272448227542 2541.336310012017 245.5688905437594</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6627\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6626\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6625\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6626\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6628\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6629\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6631\">3121.819958345652 2536.860916154021 245.5689008176266 3118.516109507518 2538.141387911669 245.5688978755354 3123.100430109463 2540.164764961691 245.5684100157467 3119.796581279104 2541.445236722761 245.5684070736546</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6631\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6630\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6629\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6630\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6632\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6633\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6635\">2990.778284323329 2591.954071649703 245.5682267754969 2989.497812559516 2588.650222842035 245.5687175773767 2987.474435492974 2593.234543410776 245.5682238334046 2986.193963721379 2589.930694599672 245.5687146352854</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6635\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6634\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6633\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6634\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6636\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6637\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6639\">2997.74147383949 2585.455300741674 245.5687249091533 2994.437625001353 2586.73577249932 245.568721967062 2999.021945603304 2588.759149549346 245.5682341072732 2995.718096772943 2590.039621310416 245.5682311651808</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6639\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6638\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6637\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6638\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6640\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6641\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6643\">2866.699799817166 2640.548456237353 245.5680508670231 2865.41932805336 2637.244607429685 245.5685416689035 2863.395950986809 2641.828927998425 245.5680479249308 2862.115479215211 2638.525079187321 245.5685387268121</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6643\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6642\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6641\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6642\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6644\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6645\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6647\">2873.662989333331 2634.049685329323 245.5685490006796 2870.359140495188 2635.33015708697 245.5685460585882 2874.943461097139 2637.353534136996 245.5680581987995 2871.63961226678 2638.634005898068 245.5680552567075</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6647\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6646\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6645\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6646\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6648\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6649\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6651\">2742.621315311 2689.142840825007 245.5678749585496 2741.340843547194 2685.838992017337 245.5683657604297 2739.317466480643 2690.423312586078 245.5678720164575 2738.036994709052 2687.119463774975 245.5683628183382</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6651\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6650\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6649\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6650\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6652\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6653\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6655\">2749.584504827164 2682.644069916975 245.568373092206 2746.280655989031 2683.924541674622 245.5683701501147 2750.864976590974 2685.94791872465 245.5678822903261 2747.561127760615 2687.228390485722 245.567879348234</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6655\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6654\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6653\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6654\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6656\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6657\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6659\">2618.542830804841 2737.737225412655 245.567699050076 2617.262359041029 2734.433376604987 245.5681898519563 2615.238981974481 2739.017697173729 245.567696107984 2613.95851020289 2735.713848362626 245.5681869098648</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6659\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6658\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6657\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6658\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6660\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6661\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6663\">2625.506020321 2731.238454504622 245.5681971837324 2622.202171482863 2732.518926262272 245.5681942416413 2626.786492084812 2734.542303312296 245.5677063818525 2623.482643254451 2735.822775073372 245.5677034397603</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6663\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6662\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6661\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6662\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6664\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6665\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6667\">2500.424944548076 2783.997140879775 245.5675315980959 2503.719696784619 2782.693321079769 245.5675380109916 2499.121138044442 2780.702430061994 245.568022367008 2502.415892206425 2779.398610418444 245.5680287797888</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6667\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6666\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6665\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6666\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6668\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6669\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6671\">2493.974611953573 2795.116829881175 245.5664099918772 2494.414613955396 2791.600903770112 245.566843459562 2490.458728649842 2794.676835955547 245.5666402210363 2490.898731555917 2791.160908468497 245.5670736888554</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6671\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6670\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6669\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6670\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6672\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6673\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6675\">5526.933054639302 3508.528597609692 245.3285491735359 5529.026824166224 3505.670074525529 245.3288160176041 5524.074531544495 3506.434828134772 245.3289611512503 5526.168301079822 3503.576305049302 245.3292279953184</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6675\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6674\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6673\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6674\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6676\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6677\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6679\">5531.20704833899 3511.659067949895 245.3279332052289 5534.065571433795 3513.752837424821 245.3275212275145 5533.300817874311 3508.800544864428 245.328200049297 5536.159340960715 3510.894314340653 245.3277880715829</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6679\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6678\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6677\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6678\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6680\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6681\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6683\">5429.507733383511 3436.637235839053 245.3426590630999 5431.601502910418 3433.778712754883 245.3429259071681 5426.649210288695 3434.543466364132 245.3430710408141 5428.742979824019 3431.684943278662 245.3433378848822</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6683\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6682\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6681\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6682\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6684\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6685\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6687\">5433.781727083187 3439.767706179245 245.342043094793 5436.640250177993 3441.861475654176 245.3416311170787 5435.875496618512 3436.909183093787 245.3423099388609 5438.734019704918 3439.002952570008 245.341897961147</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6687\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6686\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6685\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6686\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6688\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6689\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6691\">5332.08241212768 3364.745874068436 245.3567689526633 5334.176181654593 3361.887350984267 245.3570357967319 5329.223889032866 3362.652104593514 245.357180930378 5331.317658568199 3359.79358150804 245.3574477744459</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6691\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6690\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6689\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6690\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6692\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6693\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6695\">5336.356405827368 3367.876344408631 245.3561529843566 5339.214928922163 3369.970113883559 245.3557410066425 5338.450175362684 3365.017821323166 245.3564198284244 5341.308698449088 3367.111590799394 245.3560078507106</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6695\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6694\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6693\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6694\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6696\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6697\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6699\">5234.657090871851 3292.854512297807 245.3708788422278 5236.750860398773 3289.995989213637 245.3711456862962 5231.798567777038 3290.760742822889 245.3712908199421 5233.892337312371 3287.902219737412 245.3715576640101</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6699\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6698\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6697\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6698\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6700\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6701\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6703\">5238.931084571539 3295.984982637999 245.3702628739208 5241.789607666342 3298.078752112934 245.3698508962064 5241.024854106862 3293.12645955254 245.3705297179887 5243.883377193264 3295.220229028762 245.3701177402748</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6703\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6702\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6701\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6702\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6704\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6705\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6707\">5137.231769616037 3220.963150527179 245.3849887317918 5139.325539142954 3218.104627443016 245.3852555758595 5134.373246521225 3218.869381052262 245.3854007095054 5136.467016056557 3216.010857966793 245.385667553574</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6707\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6706\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6705\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6706\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6708\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6709\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6711\">5141.505763315726 3224.093620867376 245.3843727634848 5144.364286410527 3226.187390342307 245.3839607857704 5143.599532851044 3221.235097781917 245.3846396075527 5146.458055937444 3223.328867258139 245.3842276298387</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6711\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6710\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6709\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6710\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6712\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6713\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6715\">5039.806448360228 3149.071788756561 245.3990986213559 5041.900217887147 3146.213265672392 245.399365465424 5036.947925265416 3146.97801928164 245.3995105990699 5039.041694800747 3144.119496196166 245.399777443138</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6715\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6714\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6713\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6714\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6716\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6717\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6719\">5044.080442059908 3152.202259096752 245.3984826530488 5046.938965154714 3154.296028571684 245.3980706753341 5046.174211595235 3149.343736011291 245.3987494971167 5049.032734681638 3151.437505487515 245.3983375194026</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6719\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6718\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6717\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6718\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6720\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6721\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6723\">4942.381127104399 3077.180426985933 245.4132085109197 4944.474896631315 3074.321903901771 245.4134753549879 4939.522604009589 3075.086657511014 245.4136204886338 4941.616373544915 3072.228134425542 245.4138873327015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6723\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6722\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6721\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6722\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6724\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6725\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6727\">4946.655120804082 3080.310897326128 245.4125925426126 4949.51364389889 3082.404666801066 245.4121805648983 4948.748890339404 3077.452374240666 245.4128593866803 4951.607413425812 3079.546143716896 245.4124474089665</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6727\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6726\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6725\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6726\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6728\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6729\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6731\">4844.95580584858 3005.289065215305 245.4273184004837 4847.049575375495 3002.43054213114 245.4275852445518 4842.097282753769 3003.195295740389 245.4277303781978 4844.191052289104 3000.336772654918 245.4279972222658</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6731\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6730\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6729\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6730\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6732\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6733\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6735\">4849.22979954827 3008.419535555503 245.4267024321762 4852.088322643062 3010.513305030433 245.4262904544622 4851.323569083587 3005.561012470039 245.4269692762445 4854.182092169991 3007.654781946266 245.4265572985302</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6735\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6734\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6733\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6734\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6736\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6737\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6739\">4747.530484592749 2933.397703444685 245.4414282900476 4749.62425411967 2930.539180360519 245.4416951341158 4744.671961497937 2931.303933969764 245.4418402677618 4746.765731033272 2928.445410884292 245.4421071118298</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6739\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6738\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6737\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6738\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6740\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6741\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6743\">4751.804478292434 2936.528173784879 245.4408123217404 4754.663001387238 2938.621943259808 245.4404003440261 4753.898247827759 2933.669650699419 245.4410791658085 4756.756770914157 2935.763420175637 245.4406671880944</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6743\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6742\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6741\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6742\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6744\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6745\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6747\">4650.105163336943 2861.506341674053 245.4555381796116 4652.198932863853 2858.647818589889 245.4558050236799 4647.246640242128 2859.412572199131 245.4559501573257 4649.34040977746 2856.554049113665 245.4562170013937</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6747\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6746\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6745\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6746\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6748\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6749\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6751\">4654.379157036627 2864.636812014255 245.4549222113045 4657.237680131432 2866.730581489181 245.4545102335896 4656.472926571949 2861.77828892879 245.4551890553724 4659.331449658352 2863.872058405012 245.4547770776582</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6751\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6750\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6749\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6750\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6752\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6753\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6755\">4552.679842081119 2789.614979903433 245.4696480691753 4554.773611608041 2786.756456819268 245.4699149132438 4549.821318986311 2787.521210428515 245.4700600468896 4551.91508852164 2784.662687343043 245.4703268909576</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6755\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6754\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6753\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6754\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6756\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6757\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6759\">675.9916180469822 4170.738057561004 245.4819575714984 675.5829495881794 4174.257763268801 245.4815220556832 679.5112808213944 4171.146718411746 245.4817311564468 679.1026115268046 4174.666425417652 245.4812956405047</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6759\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6758\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6757\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6758\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6760\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6761\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6763\">840.7400405447456 2794.419004786664 245.6520145615764 840.3313720859355 2797.938710494468 245.6515790457616 844.2597032080585 2794.827665807256 245.6517881465085 843.851034024563 2798.347372643304 245.651352630583</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6763\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6762\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6761\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6762\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6764\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6765\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6767\">852.1173123230642 2782.89541062744 245.6529455409253 848.8204033053248 2784.193767010425 245.6529399839186 853.4156549301138 2786.192278134921 245.6524547228466 850.1187445809214 2787.490634410941 245.6524491659191</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6767\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6766\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6765\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6766\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6768\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6769\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6771\">4556.95383578081 2792.745450243632 245.4690321008684 4559.812358875608 2794.839219718564 245.4686201231542 4559.047605316128 2789.886927158164 245.4692989449364 4561.906128402532 2791.980696634389 245.4688869672222</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6771\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6770\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6769\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6770\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6772\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6773\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6775\">4455.254520825311 2717.723618132809 245.4837579587392 4457.348290352225 2714.865095048645 245.4840248028076 4452.395997730499 2715.629848657891 245.4841699364534 4454.489767265823 2712.771325572417 245.4844367805212</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6775\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6774\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6773\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6774\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6776\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6777\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6779\">4459.52851452499 2720.854088473004 245.4831419904319 4462.387037619799 2722.947857947938 245.4827300127181 4461.622284060321 2717.995565387546 245.4834088345002 4464.480807146721 2720.089334863766 245.4829968567859</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6779\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6778\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6777\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6778\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6780\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6781\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6783\">4357.829199569501 2645.832256362182 245.4978678483034 4359.922969096413 2642.973733278016 245.4981346923715 4354.970676474685 2643.738486887264 245.4982798260176 4357.064446010021 2640.879963801795 245.4985466700856</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6783\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6782\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6781\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6782\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6784\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6785\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6787\">4362.103193269189 2648.962726702383 245.4972518799961 4364.961716363986 2651.056496177305 245.496839902282 4364.196962804503 2646.104203616913 245.4975187240643 4367.055485890905 2648.19797309314 245.4971067463503</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6787\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6786\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6785\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6786\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6788\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6789\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6791\">4260.403878313663 2573.940894591542 245.5119777378672 4262.497647840587 2571.08237150738 245.5122445819355 4257.545355218852 2571.847125116623 245.5123897155815 4259.639124754184 2568.988602031154 245.5126565596495</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6791\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6790\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6789\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6790\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6792\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6793\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6795\">4264.677872013352 2577.07136493174 245.51136176956 4267.536395108154 2579.165134406672 245.5109497918456 4266.771641548674 2574.21284184628 245.511628613628 4269.630164635073 2576.306611322504 245.5112166359142</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6795\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6794\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6793\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6794\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6796\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6797\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6799\">4162.978557057844 2502.049532820918 245.5260876274311 4165.072326584765 2499.191009736746 245.5263544714995 4160.120033963031 2499.955763345995 245.5264996051454 4162.213803498362 2497.097240260526 245.5267664492134</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6799\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6798\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6797\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6798\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6800\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6801\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6803\">4167.252550757528 2505.180003161115 245.5254716591241 4170.111073852336 2507.27377263604 245.5250596814097 4169.346320292851 2502.321480075648 245.525738503192 4172.204843379256 2504.415249551869 245.525326525478</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6803\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6802\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6801\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6802\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6804\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6805\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6807\">4065.553235802032 2430.1581710503 245.540197516995 4067.647005328945 2427.299647966132 245.540464361063 4062.694712707218 2428.064401575377 245.540609494709 4064.78848224255 2425.20587848991 245.5408763387769</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6807\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6806\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6805\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6806\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6808\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6809\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6811\">4069.827229501717 2433.288641390499 245.5395815486876 4072.685752596521 2435.382410865426 245.5391695709737 4071.92099903704 2430.430118305033 245.5398483927558 4074.77952212344 2432.523887781262 245.5394364150416</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6811\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6810\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6809\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6810\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6812\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6813\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6815\">3632.206362433305 2105.943437124161 245.6035333118373 3630.112593900067 2108.801960908108 245.6032664676295 3635.064921197576 2108.037232718279 245.6031213289831 3632.97115336103 2110.895757832755 245.6028544845688</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6815\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6814\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6813\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6814\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6816\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6817\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6819\">3650.549208255699 1922.30311941275 245.626403015861 3650.957271091644 1918.783343439688 245.6268385673459 3647.029475317427 1921.895064024335 245.6266293583332 3647.437538888822 1918.375286906139 245.6270649099302</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6819\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6818\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6817\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6818\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6820\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6821\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6823\">3639.812334512953 2011.858870445157 245.6153384864068 3636.295576090302 2011.425932493657 245.6155679035235 3639.37939652654 2015.375628829861 245.6149045518723 3635.862638097175 2014.942690883595 245.6151339689888</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6823\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6822\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6821\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6822\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6824\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6825\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6827\">3637.375892452406 2002.651059622112 245.6166506360659 3636.942954459295 2006.167818012052 245.6162167015311 3640.892650875067 2003.083997573615 245.6164212189491 3640.459712888649 2006.600755958318 245.6159872844147</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6827\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6826\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6825\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6826\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6828\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6829\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6831\">2477.953321548372 2920.008014211789 245.5510406920258 2474.440638704485 2919.543165516312 245.5512739605099 2477.488472817927 2923.520697017868 245.5506088935801 2473.975789967285 2923.055848327562 245.5508421620641</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6831\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6830\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6829\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6830\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6832\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6833\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6835\">2475.600577457922 2910.778462472078 245.5523513630926 2475.135728720744 2914.291145283334 245.5519195646472 2479.11326030182 2911.243311167553 245.5521180946084 2478.648411571371 2914.755993973629 245.5516862961634</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6835\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6834\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6833\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6834\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6836\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6837\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6839\">2461.284188189142 3049.48881497787 245.5351012491972 2457.771505345259 3049.023966282391 245.5353345176813 2460.819339458701 3053.001497783944 245.5346694507517 2457.30665660806 3052.536649093642 245.5349027192357</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6839\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6838\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6837\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6838\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6840\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6841\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6843\">2458.931444098704 3040.259263238163 245.5364119202643 2458.466595361516 3043.771946049412 245.5359801218186 2462.444126942588 3040.72411193364 245.5361786517799 2461.979278212144 3044.236794739715 245.5357468533348</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6843\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6842\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6841\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6842\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6844\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6845\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6847\">2444.615054829912 3178.969615743933 245.5191618063689 2441.102371986033 3178.504767048461 245.5193950748526 2444.150206099473 3182.482298550017 245.5187300079232 2440.637523248834 3182.017449859712 245.518963276407</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6847\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6846\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6845\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6846\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6848\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6849\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6851\">2442.262310739472 3169.740064004226 245.5204724774358 2441.797462002284 3173.252746815478 245.5200406789903 2445.774993583362 3170.204912699703 245.5202392089514 2445.310144852915 3173.717595505778 245.5198074105062</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6851\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6850\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6849\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6850\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6852\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6853\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6855\">2427.945921470672 3308.450416510068 245.5032223635398 2424.433238626789 3307.985567814593 245.5034556320241 2427.481072740228 3311.963099316144 245.5027905650946 2423.96838988959 3311.498250625842 245.5030238335786</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6855\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6854\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6853\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6854\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6856\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6857\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6859\">2425.593177380229 3299.220864770357 245.5045330346075 2425.128328643047 3302.733547581609 245.5041012361616 2429.105860224119 3299.68571346583 245.5042997661229 2428.641011493674 3303.198396271907 245.5038679676778</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6859\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6858\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6857\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6858\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6860\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6861\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6863\">2411.27678811144 3437.93121727615 245.4872829207114 2407.764105267555 3437.466368580669 245.4875161891959 2410.811939380997 3441.44390008222 245.4868511222661 2407.299256530356 3440.979051391918 245.4870843907501</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6863\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6862\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6861\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6862\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6864\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6865\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6867\">2408.924044020997 3428.701665536441 245.4885935917789 2408.459195283812 3432.214348347694 245.4881617933332 2412.436726864887 3429.166514231915 245.4883603232947 2411.97187813444 3432.679197037995 245.4879285248491</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6867\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6866\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6865\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6866\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6868\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6869\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6871\">2394.607654752206 3567.412018042223 245.4713434778828 2391.094971908325 3566.947169346754 245.4715767463674 2394.142806021766 3570.924700848298 245.4709116794376 2390.630123171121 3570.459852158002 245.4711449479207</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6871\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6870\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6869\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6870\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6872\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6873\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6875\">2392.254910661762 3558.182466302517 245.4726541489503 2391.790061924577 3561.695149113768 245.4722223505047 2395.767593505657 3558.647314997992 245.4724208804662 2395.302744775213 3562.159997804069 245.47198908202</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6875\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6874\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6873\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6874\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6876\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6877\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6879\">2377.938521393002 3696.892818808303 245.4554040350542 2374.425838549115 3696.427970112824 245.455637303539 2377.473672662555 3700.405501614377 245.4549722366086 2373.960989811916 3699.940652924073 245.455205505093</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6879\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6878\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6877\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6878\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6880\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6881\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6883\">2375.585777302556 3687.663267068587 245.4567147061218 2375.120928565367 3691.175949879842 245.456282907676 2379.098460146442 3688.128115764065 245.4564814376375 2378.633611416001 3691.64079857014 245.4560496391923</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6883\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6882\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6881\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6882\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6884\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6885\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6887\">2361.269388033743 3826.373619574414 245.4394645922262 2357.756705189862 3825.908770878936 245.4396978607103 2360.804539303301 3829.886302380486 245.4390327937799 2357.291856452659 3829.421453690184 245.4392660622644</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6887\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6886\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6885\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6886\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6888\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6889\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6891\">2358.916643943297 3817.144067834707 245.4407752632933 2358.451795206109 3820.656750645954 245.4403434648476 2362.429326787194 3817.608916530175 245.4405419948091 2361.964478056749 3821.121599336253 245.4401101963636</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6891\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6890\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6889\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6890\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6892\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6893\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6895\">2447.247038419901 4030.647392975041 245.4087852994352 2445.134549676171 4033.492110247588 245.4085211580587 2450.091755682041 4032.759881685562 245.4083716650341 2447.97926693955 4035.604598966524 245.4081075236562</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6895\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6894\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6893\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6894\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6896\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6897\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6899\">2438.036559656283 4028.221055785879 245.4095532477566 2440.881276919677 4030.333544504807 245.4091396133543 2440.149048400019 4025.376338513327 245.4098173891327 2442.993765662154 4027.488827223854 245.4094037547318</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6899\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6898\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6897\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6898\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6900\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6901\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6903\">2549.669883633703 4106.146261227235 245.3939651087486 2547.557394889976 4108.99097849977 245.3937009673715 2552.514600895846 4108.258749937761 245.3935514743472 2550.402112153359 4111.103467218723 245.3932873329693</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6903\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6902\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6901\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6902\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6904\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6905\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6907\">2540.45940487009 4103.719924038076 245.3947330570695 2543.304122133481 4105.832412757007 245.3943194226673 2542.57189361383 4100.875206765521 245.3949971984461 2545.416610875963 4102.987695476051 245.3945835640444</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6907\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6906\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6905\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6906\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6908\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6909\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6911\">2652.092728847537 4181.645129479348 245.3791449180616 2649.980240103804 4184.489846751898 245.3788807766852 2654.93744610967 4183.757618189877 245.3787312836605 2652.824957367187 4186.602335470839 245.3784671422828</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6911\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6910\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6909\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6910\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6912\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6913\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6915\">2642.882250083923 4179.218792290185 245.379912866383 2645.726967347309 4181.331281009121 245.3794992319805 2644.994738827656 4176.374075017639 245.3801770077594 2647.839456089797 4178.486563728166 245.3797633733582</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6915\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6914\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6913\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6914\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6916\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6917\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6919\">2754.515574061359 4257.143997731527 245.3643247273749 2752.403085317631 4259.988715004069 245.3640605859984 2757.360291323504 4259.256486442045 245.3639110929734 2755.247802581012 4262.101203723007 245.363646951596</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6919\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6918\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6917\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6918\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6920\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6921\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6923\">2745.305095297747 4254.717660542367 245.3650926756961 2748.149812561139 4256.830149261293 245.3646790412938 2747.417584041481 4251.872943269813 245.3653568170727 2750.262301303622 4253.985431980331 245.3649431826715</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6923\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6922\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6921\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6922\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6924\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6925\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6927\">2856.938419275174 4332.642865983693 245.3495045366883 2854.825930531444 4335.487583256238 245.3492403953117 2859.783136537318 4334.755354694205 245.349090902287 2857.670647794824 4337.600071975179 245.3488267609093</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6927\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6926\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6925\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6926\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6928\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6929\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6931\">2847.727940511563 4330.21652879453 245.3502724850092 2850.572657774953 4332.329017513453 245.3498588506066 2849.840429255292 4327.371811521984 245.3505366263853 2852.685146517433 4329.484300232508 245.3501229919846</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6931\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6930\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6929\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6930\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6932\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6933\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6935\">2959.361264489005 4408.141734235831 245.3346843460015 2957.248775745274 4410.986451508375 245.3344202046245 2962.20598175114 4410.254222946356 245.3342707116 2960.093493008654 4413.098940227317 245.3340065702226</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6935\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6934\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6933\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6934\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6936\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6937\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6939\">2950.150785725391 4405.715397046679 245.3354522943226 2952.995502988777 4407.827885765597 245.3350386599202 2952.263274469121 4402.87067977412 245.3357164356991 2955.107991731258 4404.983168484649 245.3353028012979</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6939\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6938\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6937\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6938\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6940\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6941\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6943\">3061.784109702827 4483.640602488003 245.3198641553143 3059.671620959098 4486.485319760543 245.319600013938 3064.628826964966 4485.753091198521 245.3194505209133 3062.516338222476 4488.597808479482 245.3191863795358</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6943\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6942\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6941\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6942\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6944\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6945\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6947\">3052.573630939216 4481.214265298842 245.3206321036355 3055.418348202604 4483.326754017769 245.3202184692333 3054.686119682946 4478.369548026285 245.3208962450123 3057.530836945085 4480.48203673681 245.3204826106113</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6947\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6946\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6945\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6946\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6948\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6949\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6951\">3164.206954916649 4559.139470740114 245.3050439646278 3162.09446617292 4561.984188012673 245.3047798232512 3167.051672178791 4561.251959450643 245.3046303302263 3164.939183436299 4564.096676731608 245.304366188849</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6951\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6950\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6949\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6950\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6952\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6953\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6955\">3154.996476153036 4556.713133550957 245.3058119129489 3157.841193416424 4558.825622269883 245.3053982785467 3157.108964896772 4553.868416278416 245.3060760543255 3159.953682158904 4555.980904988941 245.3056624199244</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6955\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6954\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6953\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6954\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6956\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6957\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6959\">3266.62980013046 4634.638338992261 245.290223773941 3264.51731138673 4637.483056264816 245.2899596325646 3269.474517392604 4636.750827702798 245.2898101395398 3267.362028650112 4639.595544983754 245.2895459981619</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6959\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6958\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6957\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6958\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6960\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6961\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6963\">3257.41932136685 4632.2120018031 245.2909917222622 3260.264038630241 4634.324490522045 245.2905780878596 3259.531810110586 4629.367284530556 245.2912558636385 3262.37652737272 4631.479773241081 245.2908422292375</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6963\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6962\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6961\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6962\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6964\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6965\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6967\">3369.052645344285 4710.137207244466 245.2754035832543 3366.940156600556 4712.981924517009 245.2751394418777 3371.897362606423 4712.249695954986 245.2749899488531 3369.784873863933 4715.094413235946 245.2747258074754</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6967\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6966\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6965\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6966\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6968\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6969\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6971\">3359.842166580672 4707.710870055303 245.2761715315754 3362.68688384406 4709.823358774236 245.2757578971731 3361.954655324404 4704.86615278275 245.276435672952 3364.799372586543 4706.978641493279 245.2760220385507</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6971\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6970\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6969\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6970\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6972\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6973\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6975\">3471.475490558106 4785.636075496575 245.2605833925668 3469.36300181438 4788.480792769125 245.2603192511909 3474.320207820248 4787.748564207095 245.2601697581663 3472.207719077758 4790.593281488066 245.2599056167882</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6975\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6974\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6973\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6974\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6976\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6977\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6979\">3462.265011794497 4783.209738307412 245.2613513408888 3465.109729057886 4785.322227026337 245.2609377064863 3464.37750053823 4780.365021034868 245.2616154822652 3467.222217800367 4782.477509745389 245.261201847864</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6979\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6978\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6977\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6978\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6980\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6981\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6983\">3573.89833577192 4861.134943748759 245.2457632018807 3571.785847028194 4863.979661021307 245.2454990605041 3576.743053034061 4863.247432459288 245.2453495674794 3574.630564291571 4866.092149740247 245.2450854261019</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6983\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6982\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6981\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6982\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6984\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6985\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6987\">3564.68785700831 4858.708606559609 245.2465311502018 3567.532574271696 4860.821095278538 245.2461175157991 3566.800345752041 4855.863889287051 245.2467952915785 3569.645063014179 4857.976377997569 245.2463816571773</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6987\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6986\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6985\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6986\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6988\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6989\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6991\">3676.321180985753 4936.633812000944 245.2309430111939 3674.208692242023 4939.478529273481 245.2306788698173 3679.165898247893 4938.746300711462 245.2305293767926 3677.053409505403 4941.59101799243 245.230265235415</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6991\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6990\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6989\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6990\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6992\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6993\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6995\">3667.110702222142 4934.207474811785 245.2317109595151 3669.955419485528 4936.319963530707 245.2312973251124 3669.223190965872 4931.362757539218 245.2319751008918 3672.067908228009 4933.475246249755 245.2315614664904</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6995\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6994\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6993\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6994\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID6996\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID6997\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID6999\">4074.263377484115 5484.806446691207 245.14431234961 4076.376868060258 5481.962473653241 245.1445763422535 4071.419404457383 5482.692956147876 245.1447261628427 4073.53289503229 5479.848983101493 245.1449901554872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID6999\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID6998\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID6997\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID6998\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7000\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7001\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7003\">4083.473001073603 5487.236027835865 245.1435438063451 4080.629028045625 5485.122537284129 245.143957619579 4081.359510497455 5490.080000873835 245.1432798137014 4078.515537470728 5487.966510330506 245.1436936269342</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7003\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7002\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7001\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7002\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7004\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7005\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7007\">3966.029953802871 5404.965580427916 245.159984184627 3968.143444379013 5402.121607389952 245.1602481772705 3963.185980776136 5402.852089884584 245.1603979978599 3965.299471351045 5400.008116838204 245.1606619905047</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7007\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7006\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7005\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7006\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7008\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7009\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7011\">3975.239577392353 5407.395161572571 245.1592156413624 3972.395604364374 5405.281671020842 245.1596294545963 3973.12608681621 5410.239134610552 245.1589516487187 3970.28211378948 5408.12564406722 245.1593654619512</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7011\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7010\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7009\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7010\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7012\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7013\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7015\">4408.537588472589 4314.534373010761 169.2911468589848 4408.121465007505 4313.640166086781 169.2912831372362</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7015\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7014\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7013\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7014\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7016\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7017\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7019\">4467.860623002664 5268.781803505895 232.6817459616837 4467.860231343287 5268.780774924833 224.7350373922328</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7019\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7018\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7017\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7018\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7020\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7021\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7023\">4495.675694789105 5329.647685554348 169.1554350895536 4495.677315883073 5329.651942741071 202.0401499234</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7023\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7022\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7021\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7022\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7024\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7025\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7027\">4471.131843226891 5275.939498451842 202.0483135521707 4471.130222175538 5275.93524135838 169.1635988462783</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7027\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7026\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7025\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7026\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7028\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7029\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7031\">2845.578334156282 4574.059079016601 245.3227887981023 2843.464843581382 4576.903052062976 245.3225248054574 2848.422307184257 4576.172569568342 245.3223749848685 2846.308816608113 4579.016542606296 245.3221109922248</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7031\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7030\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7029\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7030\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7032\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7033\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7035\">2838.482201142947 4568.785524833964 245.3238213340104 2836.368710568041 4571.629497880347 245.323557341366 2841.326174170915 4570.899015385714 245.3234075207766 2839.212683594776 4573.742988423679 245.3231435281334</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7035\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7034\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7033\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7034\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7036\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7037\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7039\">2736.774749939502 4498.177298241408 245.3379761957248 2738.888240515644 4495.333325203444 245.3382401883684 2733.930776912769 4496.063807698072 245.3383900089574 2736.04426748767 4493.219834651694 245.3386540016023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7039\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7038\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7037\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7038\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7040\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7041\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7043\">2745.984373528983 4500.606879386064 245.3372076524599 2743.140400501007 4498.493388834337 245.3376214656937 2743.870882952841 4503.450852424037 245.3369436598159 2741.02690992611 4501.337361880705 245.337357473049</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7043\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7042\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7041\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7042\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7044\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7045\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7047\">2634.336816284206 4422.611608059207 245.3528088633162 2636.450306860351 4419.767635021242 245.3530728559598 2631.492843257474 4420.49811751587 245.3532226765489 2633.606333832384 4417.654144469501 245.3534866691937</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7047\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7046\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7045\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7046\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7048\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7049\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7051\">2643.546439873696 4425.041189203867 245.3520403200513 2640.702466845717 4422.927698652124 245.3524541332848 2641.432949297554 4427.885162241837 245.3517763274077 2638.588976270819 4425.771671698502 245.3521901406401</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7051\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7050\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7049\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7050\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7052\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7053\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7055\">2531.898882628916 4347.045917877033 245.3676415309078 2534.012373205062 4344.201944839069 245.3679055235513 2529.054909602184 4344.932427333704 245.3680553441405 2531.168400177088 4342.088454287312 245.3683193367853</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7055\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7054\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7053\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7054\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7056\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7057\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7059\">2541.108506218405 4349.475499021697 245.3668729876429 2538.264533190425 4347.362008469952 245.3672868008767 2538.995015642256 4352.319472059668 245.3666089949988 2536.151042615529 4350.205981516334 245.3670228082319</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7059\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7058\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7057\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7058\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7060\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7061\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7063\">2429.460948973614 4271.480227694801 245.3824741984987 2431.574439549755 4268.636254656842 245.3827381911427 2426.616975946881 4269.366737151477 245.3828880117319 2428.730466521784 4266.522764105089 245.3831520043767</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7063\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7062\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7061\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7062\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7064\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7065\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7067\">2438.670572563098 4273.909808839464 245.3817056552341 2435.826599535118 4271.79631828773 245.3821194684678 2436.55708198695 4276.753781877435 245.3814416625907 2433.713108960223 4274.640291334102 245.381855475823</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7067\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7066\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7065\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7066\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7068\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7069\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7071\">2327.023015318358 4195.914537512634 245.3973068660907 2329.136505894496 4193.070564474676 245.3975708587341 2324.179042291618 4193.801046969313 245.3977206793235 2326.292532866529 4190.957073922928 245.3979846719682</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7071\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7070\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7069\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7070\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7072\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7073\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7075\">2336.232638907845 4198.344118657305 245.3965383228257 2333.388665879862 4196.230628105568 245.3969521360596 2334.119148331698 4201.188091695271 245.3962743301822 2331.275175304964 4199.074601151937 245.3966881434148</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7075\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7074\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7073\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7074\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7076\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7077\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7079\">2224.585081663055 4120.348847330411 245.4121395336822 2226.698572239195 4117.504874292456 245.4124035263257 2221.741108636323 4118.235356787088 245.4125533469147 2223.854599211228 4115.391383740702 245.4128173395595</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7079\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7078\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7077\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7078\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7080\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7081\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7083\">2233.794705252544 4122.778428475083 245.4113709904171 2230.950732224562 4120.664937923348 245.4117848036508 2231.681214676401 4125.622401513052 245.4111069977735 2228.837241649666 4123.508910969713 245.4115208110059</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7083\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7082\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7081\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7082\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7084\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7085\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7087\">2111.564604318191 4036.976877305398 245.4285044951377 2114.423487852284 4039.070229434689 245.4280925539855 2113.657928591469 4034.118027223904 245.4287714079116 2116.516812926116 4036.211380885113 245.4283594665215</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7087\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7086\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7085\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7086\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7088\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7089\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7091\">2098.144157588388 4036.902171406107 245.4291757571932 2101.441716573675 4035.605466695325 245.4291810686173 2096.847466241612 4033.604653903029 245.4296665783359 2100.145026949492 4032.307949334793 245.4296718896568</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7091\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7090\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7089\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7090\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7092\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7093\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7095\">2004.074312634846 4073.509743100103 245.4290739080253 2002.800975540789 4070.203137963445 245.4295647543571 2000.767707475651 4074.783080190571 245.4290720677331 1999.494370373817 4071.476475050457 245.4295629140655</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7095\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7094\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7093\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7094\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7096\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7097\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7099\">2011.051514173017 4067.026018072043 245.4295693369633 2007.744909006052 4068.299355159072 245.4295674966723 2012.324851267083 4070.332623208703 245.4290784906318 2009.018246107887 4071.605960299168 245.4290766503397</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7099\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7098\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7097\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7098\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7100\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7101\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7103\">1929.960148625906 4102.351768962631 245.428993629962 1933.25770761119 4101.055064251857 245.4289989413863 1928.663457294457 4099.054251460926 245.429484451104 1931.961017987004 4097.757546891324 245.4294897624258</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7103\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7102\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7101\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7102\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7104\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7105\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7107\">1923.664825039798 4113.426191501225 245.4278702728892 1924.072716226658 4109.906395632369 245.4283058391087 1920.14507201342 4113.018308054549 245.4280965916452 1920.552964128363 4109.498510745789 245.4285321580052</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7107\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7106\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7105\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7106\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7108\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7109\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7111\">3604.623735668458 2351.559855862933 245.5690952708292 3607.918487905005 2350.256036062926 245.5691016837251 3603.319929310051 2348.2651450578 245.5695860397325 3606.614683326811 2346.961325401606 245.5695924525222</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7111\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7110\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7109\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7110\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7112\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7113\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7115\">3621.625728914816 2352.075366034087 245.5681906422402 3624.469409714424 2354.189323864299 245.5677768387228 3623.739661389631 2349.231721472552 245.5684545853881 3626.583352190789 2351.345681088655 245.5680407811464</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7115\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7114\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7113\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7114\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7116\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7117\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7119\">2345.421900988453 3949.473113945287 245.4243106994642 2345.861902990259 3945.957187834352 245.4247441421229 2341.906017769543 3949.033119892539 245.4245409083046 2342.346020590762 3945.517192532833 245.4249743510844</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7119\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7118\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7117\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7118\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7120\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7121\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7123\">2352.66932558174 3960.785852680822 245.4224891704283 2349.809704906502 3958.693507635 245.4229009316994 2350.577008227388 3963.645439641334 245.4222221102303 2347.717386866757 3961.553093288589 245.4226338717046</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7123\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7122\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7121\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7122\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7124\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7125\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7127\">3779.226829691918 5012.504221206379 245.2160509345523 3776.367209016686 5010.411876160559 245.2164626958234 3777.134512372535 5015.363808234816 245.2157838743436 3774.274890976934 5013.271461814154 245.2161956358283</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7127\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7126\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7125\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7126\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7128\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7129\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7131\">3792.097939052098 5012.052480966442 245.2154751577761 3788.88037973799 5013.536613852381 245.2154415943014 3793.582056163954 5015.269999583537 245.2149855276372 3790.364495276922 5016.754132431058 245.2149519642455</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7131\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7130\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7129\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7130\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7132\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7133\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7135\">3890.111030395439 4967.259825624173 245.2164435988847 3891.572354369806 4970.487759504487 245.2159537437086 3893.338964299642 4965.798501658042 245.21647369859 3894.800288281971 4969.026435541348 245.2159838434135</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7135\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7134\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7133\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7134\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7136\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7137\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7139\">3883.518109712693 4974.133938535226 245.2158786492772 3886.746043624848 4972.67261457207 245.2159087489811 3882.056785738323 4970.906004654908 245.2163685044529 3885.284719642526 4969.444680688762 245.2163986041581</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7139\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7138\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7137\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7138\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7140\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7141\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7143\">4005.841511344363 4914.373397055531 245.2175866871409 4007.302835318727 4917.601330935851 245.2170968319649 4009.069445248562 4912.912073089388 245.2176167868463 4010.530769230892 4916.140006972718 245.2171269316697</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7143\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7142\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7141\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7142\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7144\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7145\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7147\">3999.248590661613 4921.247509966583 245.2170217375334 4002.476524573769 4919.786186003432 245.2170518372381 3997.787266687247 4918.019576086257 245.2175115927088 4001.015200591447 4916.558252120129 245.2175416924142</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7147\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7146\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7145\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7146\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7148\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7149\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7151\">4121.571992293288 4861.486968486892 245.2187297753972 4123.033316267651 4864.714902367204 245.2182399202212 4124.799926197487 4860.025644520751 245.2187598751026 4126.261250179819 4863.253578404079 245.218270019926</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7151\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7150\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7149\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7150\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7152\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7153\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7155\">4114.979071610534 4868.361081397943 245.2181648257897 4118.207005522693 4866.89975743479 245.2181949254943 4113.517747636167 4865.133147517608 245.218654680965 4116.745681540373 4863.671823551476 245.2186847806707</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7155\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7154\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7153\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7154\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7156\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7157\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7159\">4237.302473242211 4808.600539918251 245.2198728636535 4238.763797216575 4811.828473798561 245.2193830084778 4240.530407146406 4807.139215952111 245.2199029633588 4241.991731128734 4810.367149835427 245.2194131081822</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7159\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7158\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7157\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7158\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7160\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7161\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7163\">4230.709552559463 4815.474652829289 245.2193079140459 4233.937486471617 4814.01332886615 245.2193380137505 4229.248228585097 4812.246718948974 245.2197977692217 4232.476162489291 4810.785394982839 245.2198278689272</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7163\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7162\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7161\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7162\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7164\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7165\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7167\">4343.15756876387 4760.215389438423 245.220919908625 4339.940009449751 4761.699522324348 245.2208863451508 4344.641686013864 4763.432908059852 245.220430278479 4341.424124988686 4764.917040903032 245.2203967150943</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7167\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7166\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7165\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7166\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7168\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7169\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7171\">4363.410678863691 4627.615709080115 245.2370864713166 4363.01760128848 4631.13719004631 245.2366499972931 4366.932116974916 4628.008778939137 245.2368620629248 4366.53903847851 4631.530261347866 245.2364255887598</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7171\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7170\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7169\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7170\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7172\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7173\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7175\">4366.430375093637 4601.404808236604 245.2403305814892 4366.037297518435 4604.926289202787 245.2398941074657 4369.951813204865 4601.797878095616 245.240106173097 4369.558734708455 4605.319360504343 245.2396696989323</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7175\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7174\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7173\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7174\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7176\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7177\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7179\">1908.231561299047 4242.606377825962 245.4119073735018 1904.714781767533 4242.173611376409 245.4121367670358 1907.798794814592 4246.123157319531 245.4114734240666 1904.282015276361 4245.690390875217 245.4117028176005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7179\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7178\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7177\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7178\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7180\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7181\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7183\">1905.7946702049 4233.398685831624 245.4132195367596 1905.361903713746 4236.915465330427 245.4127855873236 1909.311449736429 4233.831452281156 245.4129901432254 1908.87868325197 4237.348231774729 245.4125561937899</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7183\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7182\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7181\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7182\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7184\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7185\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7187\">1892.224425604543 4376.591230131965 245.3953507505085 1888.707646073024 4376.158463682425 245.395580144043 1891.791659120084 4380.108009625535 245.3949168010736 1888.274879581853 4379.675243181226 245.3951461946074</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7187\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7186\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7185\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7186\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7188\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7189\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7191\">1889.787534510395 4367.383538137619 245.3966629137664 1889.354768019244 4370.900317636435 245.3962289643308 1893.304314041926 4367.816304587172 245.3964335202322 1892.871547557463 4371.333084080742 245.3959995707966</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7191\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7190\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7189\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7190\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7192\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7193\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7195\">1876.217289910037 4510.576082437968 245.3787941275157 1872.700510378518 4510.143315988417 245.3790235210496 1875.78452342558 4514.092861931546 245.3783601780804 1872.267743887349 4513.660095487228 245.3785895716143</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7195\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7194\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7193\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7194\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7196\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7197\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7199\">1873.780398815887 4501.368390443636 245.3801062907733 1873.347632324735 4504.885169942434 245.3796723413375 1877.297178347422 4501.801156893182 245.3798768972391 1876.864411862953 4505.317936386743 245.3794429478039</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7199\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7198\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7197\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7198\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7200\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7201\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7203\">1860.210154215531 4644.560934743973 245.3622375045227 1856.693374684007 4644.128168294437 245.3624668980567 1859.777387731074 4648.077714237545 245.3618035550872 1856.260608192841 4647.644947793242 245.3620329486211</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7203\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7202\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7201\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7202\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7204\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7205\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7207\">1857.773263121383 4635.353242749637 245.3635496677804 1857.340496630227 4638.870022248441 245.3631157183446 1861.29004265291 4635.786009199184 245.363320274246 1860.857276168447 4639.302788692754 245.3628863248103</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7207\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7206\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7205\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7206\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7208\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7209\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7211\">1844.203018521022 4778.54578704999 245.3456808815295 1840.686238989505 4778.113020600453 245.3459102750634 1843.770252036569 4782.062566543561 245.3452469320942 1840.253472498336 4781.629800099247 245.3454763256281</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7211\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7210\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7209\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7210\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7212\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7213\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7215\">1841.766127426876 4769.338095055651 245.3469930447871 1841.333360935726 4772.854874554458 245.3465590953511 1845.282906958403 4769.770861505188 245.3467636512529 1844.85014047394 4773.287640998766 245.3463297018176</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7215\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7214\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7213\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7214\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7216\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7217\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7219\">1828.195882826527 4912.530639356004 245.3291242585362 1824.679103295004 4912.097872906456 245.3293536520706 1827.763116342067 4916.04741884957 245.3286903091012 1824.246336803835 4915.614652405267 245.3289197026349</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7219\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7218\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7217\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7218\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7220\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7221\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7223\">1825.758991732377 4903.32294736166 245.3304364217939 1825.326225241225 4906.839726860462 245.3300024723583 1829.275771263902 4903.755713811202 245.3302070282599 1828.843004779438 4907.272493304776 245.3297730788241</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7223\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7222\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7221\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7222\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7224\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7225\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7227\">1809.751856037871 5037.307799667664 245.3138797988009 1809.319089546719 5040.824579166481 245.3134458493652 1813.268635569396 5037.740566117216 245.3136504052665 1812.835869084936 5041.257345610788 245.3132164558314</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7227\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7226\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7225\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7226\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7228\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7229\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7231\">587.8496718007336 4880.717056126579 229.6424198486446 587.8462886966736 4880.709495971316 169.4062003824087 600.172159234854 4777.767873767774 229.6590773756738</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7231\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7230\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7229\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7230\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7232\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7233\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7235\">600.1894345761166 4777.77420466977 169.4189179384626 601.5173328334954 4766.6982899135 169.4202863685703 601.4945820007615 4766.68241132566 169.4202891197735</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7235\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7234\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7233\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7234\" />\r\n\t\t\t\t\t<p>1 0 2 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7236\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7237\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7239\">600.1928886787264 4777.783276970813 239.4976570805491 600.1928888727675 4777.783277480537 239.5015941386685</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7239\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7238\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7237\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7238\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7240\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7241\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7243\">670.5866434551331 4189.484559497636 229.7317654191345 670.5872198460447 4189.485816011277 239.5703481378729</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7243\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7242\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7241\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7242\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7244\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7245\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7247\">658.3840823836486 4291.437882128908 239.5577507303204 658.3835034471076 4291.436644453232 229.7152312362524</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7247\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7246\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7245\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7246\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7248\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7249\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID7251\">670.7267509514027 4189.408371321479 169.4916106915373 670.729049635891 4189.407427656798 169.4916107003845 670.5831464698435 4189.476944492091 169.491608893379 672.1116406639417 4177.846143597268 169.493039270372 670.584031458649 4189.469203585314 169.4916096157567 672.1154038318191 4177.844358566168 169.4930393159478</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID7251\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7250\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7249\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7250\" />\r\n\t\t\t\t\t<p>1 0 0 2 0 3 4 0 5 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7252\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7253\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7255\">1158.254053789911 5198.869535784556 239.4156320856518 1726.428544557104 4977.447088140629 239.4162879785398 688.364384632308 4852.191716218393 239.4836441334934 1835.086335628744 4068.31172891848 239.5286284751839</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7255\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7254\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7253\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7254\" />\r\n\t\t\t\t\t<p>1 0 0 2 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7256\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7257\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID7259\">2050.592219934966 3984.454101462808 239.5288608295756 2283.863910039483 3893.674047263911 239.5291135554235 1882.344585773624 4049.929302076009 239.52867856094 1835.089164134392 4068.319208283491 239.5286273674636 2298.21937600574 3773.563928021153 239.5439553744671</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID7259\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7258\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7257\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7258\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 4 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7260\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7261\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID7263\">1162.066166302317 5166.535924400866 169.3408895396112 1699.032603473055 4957.575987951523 169.3414704370898 719.576206411019 4840.037978873537 169.4049717687901 826.8799025924727 3942.243449360201 169.5159107889513 1109.117609587219 3832.413834824734 169.516215742213 1774.806395909582 4323.633976084677 169.4198053545497</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID7263\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7262\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7261\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7262\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5 5 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7264\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7265\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID7267\">4509.691696251466 917.8493462142574 169.7258963803689 4066.412070056354 596.1639562713742 169.7893945028445 4442.652487645431 1478.756819621573 169.656585949122 3830.824339483134 1716.846592933697 169.6559243916037 3108.147817047096 1183.54521964278 169.7605919886359 3135.036154514427 958.6087376327298 169.7883868240503</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID7267\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7266\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7265\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7266\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5 5 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7268\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7269\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID7271\">969.1119632610048 2752.208242444212 169.662961518244 874.1700968927148 3546.573186348859 169.5648031245989 1668.708846586067 4133.048499256694 169.4497089757453 1803.873610482447 4080.450658408925 169.4498550191145 1984.818854678963 2566.618795549864 169.6369161245058 2134.343319773985 2377.034964447852 169.654088529472</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID7271\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7270\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7269\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7270\" />\r\n\t\t\t\t\t<p>1 0 2 1 3 2 4 3 5 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7272\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7273\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7275\">3612.813131080919 1668.443268585435 169.6729381265533 2818.037659170675 1081.968631073314 169.7880438577988 3596.049535747136 1808.21043948013 169.6556702183487</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7275\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7274\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7273\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7274\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7276\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7277\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7279\">1805.314258666063 5047.624910719737 229.5607942702347 1805.312065468219 5047.618239662235 177.5935005439841 1708.698672216164 5085.222670914234 229.5646268782352</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7279\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7278\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7277\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7278\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7280\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7281\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7283\">1252.161465145844 5262.884676780192 239.4027153461762 1252.161428415613 5262.88462943296 239.340165321069</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7283\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7282\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7281\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7282\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7284\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7285\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7287\">1156.459611430948 5300.125382014523 229.564029838103 1252.160955641955 5262.883397333932 229.5601951615916</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7287\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7286\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7285\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7286\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7288\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7289\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7291\">1252.161397355093 5262.884557965941 238.7631086242683 1156.459901155316 5300.126196301048 235.9664649235155</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7291\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7290\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7289\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7290\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7292\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7293\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7295\">1698.30364297935 5089.270120075562 245.3126468528785 1698.300793068971 5089.263248661348 189.9506905757741</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7295\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7294\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7293\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7294\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7296\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7297\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7299\">1156.459815250469 5300.12596804161 234.1591407229769 1145.606702644891 5304.34946459372 234.3648092854465</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7299\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7298\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7297\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7298\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7300\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7301\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7303\">1263.014230872318 5258.660240803267 232.1399141395822 1252.161089332506 5262.883748615132 232.3455832503613</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7303\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7302\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7301\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7302\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7304\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7305\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7307\">3423.334410000912 715.0050802379055 230.0386468445385 3423.940471735798 714.7600197311535 169.8057132952215 3519.949968099389 677.4074329717057 230.0426927715589</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7307\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7306\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7305\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7306\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7308\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7309\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7311\">3976.386247951885 499.8527582897152 239.8850420677462 3976.443404509963 499.8949267007388 239.8862558469793</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7311\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7310\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7309\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7310\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7312\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7313\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7315\">3519.791042630997 677.4710279477733 239.887256721761 3519.850835695778 677.4475292335267 239.8872524462013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7315\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7314\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7313\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7314\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7316\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7317\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7319\">3968.127914546207 2358.266809279691 245.5543074065589 3970.221684073127 2355.408286195526 245.5545742506272 3965.269391451396 2356.173039804772 245.5547193842733 3967.363160986728 2353.3145167193 245.5549862283413</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7319\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7318\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7317\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7318\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7320\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7321\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7323\">3972.401908245895 2361.39727961989 245.5536914382521 3975.260431340698 2363.491049094819 245.5532794605376 3974.495677781215 2358.538756534428 245.5539582823199 3977.354200867619 2360.632526010648 245.553546304606</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7323\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7322\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7321\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7322\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7324\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7325\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7327\">3870.7025932904 2286.375447509064 245.568417296123 3872.796362817317 2283.5169244249 245.568684140191 3867.844070195589 2284.281678034145 245.5688292738372 3869.937839730916 2281.423154948676 245.5690961179053</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7327\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7326\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7325\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7326\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7328\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7329\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7331\">3874.976586990084 2289.505917849261 245.5678013278158 3877.835110084888 2291.599687324193 245.5673893501016 3877.07035652541 2286.647394763798 245.5680681718834 3879.928879611811 2288.741164240023 245.5676561941699</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7331\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7330\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7329\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7330\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7332\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7333\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7335\">3773.277272034583 2214.484085738442 245.5825271856868 3775.371041561499 2211.625562654273 245.5827940297552 3770.418748939767 2212.39031626352 245.5829391634011 3772.512518475102 2209.531793178052 245.5832060074691</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7335\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7334\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7333\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7334\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7336\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7337\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7339\">3777.551265734267 2217.614556078639 245.5819112173798 3780.40978882907 2219.708325553569 245.5814992396654 3779.645035269589 2214.756032993171 245.5821780614477 3782.503558355991 2216.849802469398 245.5817660837338</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7339\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7338\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7337\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7338\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7340\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7341\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7343\">3675.851950778761 2142.592723967812 245.5966370752508 3677.945720305678 2139.734200883647 245.5969039193187 3672.993427683952 2140.498954492894 245.5970490529647 3675.087197219282 2137.640431407421 245.5973158970327</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7343\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7342\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7341\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7342\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7344\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7345\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7347\">3680.125944478447 2145.72319430801 245.5960211069438 3682.98446757325 2147.816963782942 245.5956091292293 3682.21971401377 2142.864671222546 245.5962879510117 3685.078237100173 2144.958440698767 245.5958759732977</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7347\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7346\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7345\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7346\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7348\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7349\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7351\">3629.382981199914 2099.395372598966 245.6045202076036 3629.791044035857 2095.875596625903 245.6049557590891 3625.863248184517 2098.987317328507 245.6047465500646 3626.271311833037 2095.467540092356 245.6051821016733</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7351\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7350\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7349\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7350\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7352\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7353\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7355\">4389.197989549865 5394.343042275867 245.1404983783083 4387.736665580638 5391.115108394467 245.1409883070583 4385.970055644375 5395.804366239157 245.1404683228906 4384.508731667185 5392.576432354748 245.1409582516411</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7355\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7354\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7353\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7354\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7356\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7357\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7359\">4395.790910240969 5387.468929370861 245.1410632909842 4392.562976327521 5388.930253331145 245.1410332355671 4397.252234210201 5390.696863252272 245.1405733622345 4394.024300304705 5392.158187215549 245.1405433068167</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7359\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7358\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7357\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7358\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7360\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7361\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7363\">4400.319895323932 4331.469889070329 245.2736027617656 4400.71296943795 4327.948409148285 245.2740392358247 4396.797478656214 4331.077114377432 245.2738271801698 4397.190553661061 4327.555633059984 245.2742636543659</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7363\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7362\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7361\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7362\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7364\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7365\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7367\">4385.117249703552 4463.083044344934 245.2573150283524 4381.597747686192 4462.664978729898 245.2575425769553 4384.699281062121 4466.601613274397 245.2568801578458 4381.179779038074 4466.183547664628 245.2571077064483</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7367\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7366\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7365\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7366\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7368\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7369\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7371\">4382.640713162805 4453.885587976974 245.2586276449354 4382.222744514699 4457.404156911707 245.2581927744283 4386.160215180164 4454.303653592004 245.2584000963323 4385.742246538726 4457.822222521472 245.2579652258257</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7371\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7370\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7369\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7370\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7372\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7373\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7375\">4544.708366914951 4123.161259109779 245.2934244541669 4541.46530570835 4124.5888085857 245.2933994764859 4546.135806748317 4126.404574287936 245.292934245736 4542.892744119435 4127.832123705197 245.2929092681323</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7375\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7374\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7373\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7374\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7376\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7377\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7379\">4684.363780212738 4062.202709414179 245.294433294067 4685.768431567716 4065.455959238453 245.2939429226163 4687.616814897914 4060.79814888047 245.2944548042158 4689.021466260803 4064.051398707892 245.2939644327645</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7379\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7378\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7377\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7378\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7380\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7381\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7383\">4677.651557466564 4068.960503848286 245.2938892605265 4680.904592159639 4067.55594331771 245.2939107706745 4676.246906111581 4065.707254023999 245.2943796319769 4679.499940796754 4064.302693490294 245.2944011421259</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7383\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7382\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7381\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7382\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7384\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7385\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7387\">4936.407908667494 3952.09411116132 245.2962660716795 4933.164847460896 3953.521660637239 245.2962410939985 4937.835348692756 3955.337426348893 245.295775863238 4934.59228587198 3956.764975756737 245.2957508856453</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7387\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7386\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7385\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7386\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7388\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7389\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7391\">4940.568563284355 3944.11102966568 245.2970944705291 4940.22491234195 3947.637677110572 245.2966548665403 4944.095167589653 3944.454673911254 245.2968761859007 4943.751515910521 3947.981322550093 245.2964365817937</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7391\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7390\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7389\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7390\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7392\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7393\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7395\">4806.172530202925 4009.421784532778 245.2952630255895 4802.930366066352 4010.85136841794 245.2952377403358 4807.602098744842 4012.663907745983 245.2947728665566 4804.35993319247 4014.09349157375 245.2947475813802</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7395\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7394\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7393\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7394\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7396\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7397\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7399\">4782.00323169283 4019.97695943683 245.2950877256341 4778.76106755626 4021.40654332199 245.2950624403803 4783.432800234752 4023.219082650031 245.2945975666009 4780.190634682369 4024.648666477799 245.2945722814246</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7399\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7398\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7397\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7398\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7400\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7401\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7403\">4952.490017673799 3826.075363227693 245.3117871859124 4956.014102806753 3826.443940292474 245.3115657977727 4952.858594773395 3822.551278133024 245.3122252297808 4956.382679912949 3822.919855192447 245.3120038416417</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7403\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7402\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7401\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7402\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7404\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7405\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7407\">4955.094377129996 3835.237095699423 245.3104728116256 4955.462954236191 3831.713010599392 245.3109108554943 4951.57029199705 3834.868518634634 245.3106941997654 4951.938869096637 3831.344433539974 245.3111322436341</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7407\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7406\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7405\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7406\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7408\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7409\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7411\">4964.65883250238 3705.609679156046 245.3267822871916 4968.182917635334 3705.978256220828 245.3265608990515 4965.027409601973 3702.085594061376 245.32722033106 4968.551494741532 3702.454171120796 245.3269989429206</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7411\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7410\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7409\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7410\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7412\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7413\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7415\">4967.26319195858 3714.771411627778 245.3254679129046 4967.631769064772 3711.247326527742 245.3259059567735 4963.739106825631 3714.402834563 245.3256893010444 4964.107683925218 3710.878749468325 245.3261273449128</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7415\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7414\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7413\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7414\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7416\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7417\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7419\">4976.82764733097 3585.143995084402 245.3417773884702 4980.351732463918 3585.512572149184 245.3415560003299 4977.19622443056 3581.619909989737 245.342215432339 4980.720309570121 3581.988487049161 245.3419940441991</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7419\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7418\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7417\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7418\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7420\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7421\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7423\">4979.432006787165 3594.305727556131 245.340463014183 4979.800583893355 3590.781642456105 245.3409010580519 4975.90792165421 3593.937150491346 245.3406844023232 4976.276498753803 3590.413065396684 245.3411224461918</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7423\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7422\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7421\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7422\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7424\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7425\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7427\">3863.592020147587 5329.399890245697 245.1748168522187 3865.705510723729 5326.555917207735 245.1750808448623 3860.748047120856 5327.286399702371 245.175230665451 3862.861537695759 5324.442426655979 245.1754946580962</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7427\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7426\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7425\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7426\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7428\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7429\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7431\">3872.801643737074 5331.829471390363 245.1740483089533 3869.957670709094 5329.71598083862 245.1744621221876 3870.688153160931 5334.673444428326 245.1737843163103 3867.844180134202 5332.559953884995 245.174198129543</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7431\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7430\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7429\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7430\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7432\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7433\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7435\">3761.154086492279 5253.834200063471 245.1896495198103 3763.267577068418 5250.990227025503 245.1899135124533 3758.310113465544 5251.720709520145 245.1900633330428 3760.42360404045 5248.87673647376 245.1903273256877</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7435\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7434\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7433\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7434\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7436\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7437\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7439\">3770.363710081765 5256.263781208134 245.1888809765451 3767.519737053787 5254.150290656397 245.1892947897792 3768.25021950562 5259.107754246099 245.1886169839018 3765.406246478889 5256.994263702772 245.1890307971343</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7439\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7438\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7437\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7438\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7440\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7441\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7443\">3658.716152837023 5178.268509881321 245.2044821874018 3660.829643413164 5175.424536843359 245.204746180045 3655.872179810285 5176.155019337989 245.204896000634 3657.985670385195 5173.31104629161 245.2051599932787</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7443\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7442\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7441\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7442\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7444\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7445\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7447\">3667.92577642651 5180.698091025988 245.2037136441367 3665.08180339853 5178.584600474247 245.2041274573707 3665.812285850363 5183.542064063954 245.2034496514933 3662.968312823627 5181.42857352062 245.2038634647259</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7447\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7446\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7445\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7446\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7448\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7449\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7451\">3258.174041805382 4878.435330297116 245.2630443145025 3255.330068777404 4876.321839745377 245.2634581277364 3256.060551229238 4881.279303335085 245.2627803218589 3253.216578202506 4879.165812791753 245.2631941350918</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7451\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7450\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7449\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7450\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7452\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7453\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7455\">3251.077908792038 4873.161776114489 245.2640768504112 3248.233935764067 4871.048285562736 245.264490663645 3248.964418215898 4876.005749152459 245.2638128577673 3246.120445189163 4873.892258609121 245.2642266709998</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7455\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7454\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7453\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7454\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7456\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7457\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7459\">3146.526484560608 4800.440058970232 245.2786455253589 3148.63997513675 4797.596085932268 245.2789095180026 3143.682511533873 4798.326568426903 245.2790593385916 3145.796002108778 4795.482595380521 245.2793233312362</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7459\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7458\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7457\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7458\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7460\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7461\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7463\">3155.736108150092 4802.869640114889 245.277876982094 3152.892135122113 4800.756149563156 245.2782907953279 3153.622617573949 4805.713613152862 245.27761298945 3150.778644547218 4803.600122609532 245.2780268026831</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7463\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7462\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7461\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7462\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7464\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7465\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7467\">3044.088550905343 4724.874368788065 245.2934781929503 3046.202041481488 4722.030395750111 245.2937421855941 3041.244577878611 4722.760878244741 245.2938920061829 3043.358068453516 4719.916905198355 245.2941559988279</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7467\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7466\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7465\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7466\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7468\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7469\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7471\">3053.298174494832 4727.303949932737 245.2927096496856 3050.454201466851 4725.190459380997 245.2931234629193 3051.184683918678 4730.1479229707 245.2924456570419 3048.34071089195 4728.034432427367 245.2928594702746</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7471\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7470\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7469\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7470\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7472\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7473\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7475\">2941.650617250048 4649.308678605872 245.3083108605418 2943.764107826186 4646.464705567901 245.3085748531856 2938.806644223312 4647.195188062538 245.3087246737744 2940.920134798216 4644.351215016152 245.3089886664193</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7475\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7474\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7473\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7474\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7476\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7477\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7479\">2950.860240839531 4651.738259750529 245.3075423172769 2948.016267811551 4649.624769198787 245.3079561305108 2948.746750263383 4654.582232788496 245.3072783246334 2945.902777236654 4652.468742245168 245.307692137866</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7479\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7478\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7477\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7478\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7480\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7481\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7483\">605.0320472506278 4763.597172715203 245.4087038316658 604.623364876285 4767.116876807273 245.4082683165638 608.5517084082985 4764.005847483177 245.4084774305127 608.1430251991428 4767.525552871837 245.4080419152841</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7483\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7482\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7481\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7482\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7484\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7485\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7487\">961.1369291975998 2740.418492682896 245.6530702464617 962.4119640488866 2743.724443531418 245.6525794014594 964.4428800686765 2739.143457835216 245.6530723385179 965.7179149277413 2742.449408687194 245.6525814935148</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7487\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7486\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7485\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7486\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7488\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7489\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7491\">954.16305793944 2746.905799613955 245.6525741906604 957.4690088182924 2745.63076476971 245.6525762827158 952.8880230881578 2743.599848765415 245.653065035663 956.1939739592335 2742.324813917744 245.6530671277192</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7491\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7490\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7489\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7490\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7492\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7493\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7495\">1079.944983060068 2694.113517828159 245.6532079902157 1081.220017911351 2697.419468676686 245.6527171452132 1083.250933931141 2692.838482980485 245.653210082272 1084.525968790209 2696.144433832462 245.6527192372683</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7495\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7494\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7493\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7494\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7496\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7497\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7499\">1072.97111180191 2700.600824759216 245.6527119344142 1076.277062680763 2699.325789914977 245.6527140264696 1071.696076950621 2697.294873910684 245.6532027794168 1075.002027821702 2696.01983906301 245.653204871473</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7499\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7498\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7497\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7498\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7500\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7501\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7503\">1198.753036922522 2647.808542973418 245.6533457339696 1200.028071773811 2651.114493821942 245.6528548889671 1202.058987793607 2646.53350812574 245.6533478260259 1203.334022652666 2649.83945897772 245.6528569810225</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7503\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7502\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7501\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7502\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7504\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7505\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7507\">1191.779165664368 2654.29584990448 245.6528496781684 1195.08511654322 2653.020815060243 245.6528517702238 1190.50413081308 2650.98989905595 245.6533405231708 1193.810081684157 2649.71486420827 245.6533426152271</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7507\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7506\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7505\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7506\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7508\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7509\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7511\">1317.561090784993 2601.503568118684 245.6534834777236 1318.836125636278 2604.809518967212 245.6529926327208 1320.867041656066 2600.228533271007 245.6534855697801</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7511\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7510\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7509\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7510\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7512\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7513\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7515\">1312.618135546622 2603.409889353538 245.653480358981 1309.312184675546 2604.684924201207 245.6534782669248 1313.893170405687 2606.715840205504 245.6529895139776</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7515\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7514\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7513\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7514\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7516\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7517\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7519\">1439.675095518529 2553.923558416265 245.6536233135335 1436.369144647455 2555.198593263943 245.6536212214776</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7519\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7518\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7517\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7518\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7520\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7521\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7523\">1431.426189409088 2557.1049144988 245.653618102735 1428.120238538009 2558.379949346473 245.6536160106788</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7523\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7522\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7521\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7522\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7524\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7525\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7527\">3532.934175538458 679.5402683391553 245.793081017274 3536.240829459343 678.2669383446264 245.7930829120428 3531.660927023753 676.2328371180051 245.793570395831 3534.967588071493 674.9594993269623 245.7935722912562</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7527\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7526\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7525\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7526\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7528\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7529\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7531\">3632.118465852298 640.9422784021576 245.7931899878795 3635.425119773182 639.668948407628 245.7931918826484 3630.84521733759 637.6348471810022 245.7936793664367 3634.151878513595 636.3615092493485 245.7936812618736</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7531\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7530\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7529\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7530\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7532\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7533\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7535\">3662.07629372457 629.2842579022652 245.7932228762806 3665.382947645452 628.0109279077371 245.793224771049 3660.803045209865 625.9768266811141 245.7937122548376 3664.109706385869 624.7034887494585 245.7937141502744</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7535\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7534\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7533\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7534\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7536\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7537\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7539\">3773.504135069449 581.3443171255908 245.793936014284 3774.777452082047 584.6509299955928 245.7934467379721 3776.81074796178 580.0710001167354 245.7939379093926 3778.084064982159 583.3776129901905 245.7934486330802</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7539\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7538\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7537\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7538\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7540\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7541\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7543\">3766.526894154766 587.8279997799777 245.793442018561 3769.833507054866 586.554682774565 245.7934439136685 3765.253577142159 584.521386909973 245.7939312948722 3768.560190034494 583.2480699011173 245.7939331899809</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7543\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7542\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7541\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7542\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7544\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7545\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7547\">3850.87084295379 551.2260658527034 245.7940223911724 3847.573276093389 552.5227505368328 245.7940170360352 3852.167513739004 554.5235911816706 245.7935331404313 3848.869945694483 555.8202757713004 245.7935277853645</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7547\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7546\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7545\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7546\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7548\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7549\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7551\">3881.293301141885 539.3872355241765 245.7940557896553 3877.995734281486 540.6839202083036 245.7940504345177 3882.589971927099 542.6847608531427 245.7935665389141 3879.292403882578 543.9814454427688 245.7935611838472</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7551\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7550\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7549\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7550\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7552\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7553\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7555\">3966.208403287186 506.3428307529289 245.7941489967355 3962.910836426784 507.6395154370568 245.7941436415987 3967.505074072398 509.6403560818967 245.7936597459945 3964.207506027874 510.9370406715211 245.7936543909277</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7555\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7554\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7553\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7554\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7556\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7557\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7559\">4560.581305695402 1553.539571387387 239.7198289550547 4560.524651431501 1554.0133451079 239.7197738882809</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7559\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7558\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7557\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7558\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7560\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7561\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7563\">4560.524160308049 1554.012097127669 229.8772542936835 4572.478712246892 1453.988386855935 229.8935511996887</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7563\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7562\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7561\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7562\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7564\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7565\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7567\">4628.967314195737 981.3483639954802 229.948016790053 4640.808687621308 882.2716181208823 229.9641977617489</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7567\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7566\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7565\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7566\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7568\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7569\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7571\">4560.581276150023 1553.53956834317 239.7237697293533 4560.524651635667 1554.013345542688 239.7237111882646</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7571\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7570\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7569\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7570\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7572\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7573\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7575\">4640.806403949248 882.2655892214166 183.7824461882785 4640.805712755979 882.2637205498609 169.7240404002751</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7575\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7574\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7573\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7574\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7576\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7577\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7579\">2063.472720457448 1251.752913430965 245.7914510961115 2063.679265176941 1251.672537227602 245.7914513176303</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7579\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7578\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7577\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7578\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7580\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7581\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7583\">2177.211362865279 1207.491745281575 245.7915730994947 2177.466230574207 1207.392564344378 245.7915733728397</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7583\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7582\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7581\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7582\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7584\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7585\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7587\">2290.950005273085 1163.230577132056 245.7916951028779 2291.253195754968 1163.112591545269 245.7916954280488</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7587\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7586\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7585\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7586\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7588\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7589\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7591\">2404.688647680909 1118.969408982605 245.7918171062614 2405.040161260185 1118.832618619972 245.7918174832587</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7591\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7590\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7589\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7590\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7592\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7593\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7595\">2518.427290088731 1074.708240833135 245.7919391096447 2518.827126613719 1074.55264575369 245.7919395384682</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7595\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7594\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7593\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7594\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7596\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7597\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7599\">2632.16593249655 1030.44707268364 245.7920611130278 2632.61409219216 1030.272672799852 245.792061593678</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7599\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7598\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7597\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7598\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7600\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7601\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7603\">2745.904574904373 986.1859045341985 245.7921831164111 2746.401057380422 985.9926999979093 245.7921836488873</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7603\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7602\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7601\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7602\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7604\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7605\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7607\">2859.643217312188 941.9247363847471 245.7923051197944 2860.188022676604 941.7127271539587 245.7923057040969</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7607\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7606\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7605\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7606\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7608\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7609\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7611\">2973.381859720006 897.663568235316 245.7924271231771 2973.974988025595 897.4327542894753 245.7924277593063</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7611\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7610\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7609\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7610\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7612\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7613\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7615\">3087.120502127832 853.402400085836 245.7925491265606 3087.761953551956 853.1527813559289 245.7925498145161</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7615\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7614\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7613\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7614\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7616\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7617\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7619\">3200.859144535653 809.1412319363956 245.792671129944 3201.548919074528 808.8728084238901 245.7926718697255</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7619\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7618\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7617\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7618\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7620\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7621\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7623\">3314.597787116627 764.8800637969941 245.7927931333175 3315.535605058934 764.5151150025313 245.7927941391252</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7623\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7622\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7621\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7622\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7624\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7625\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7627\">3556.278219181737 5102.70281969911 245.2193148549931 3558.391709757879 5099.858846661149 245.2195788476363 3553.434246155005 5100.589329155784 245.2197286682258 3555.54773672991 5097.745356109394 245.2199926608705</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7627\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7626\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7625\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7626\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7628\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7629\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7631\">3565.487842771227 5105.13240084377 245.2185463117281 3562.643869743247 5103.018910292039 245.2189601249619 3563.374352195078 5107.976373881743 245.2182823190847 3560.530379168346 5105.862883338414 245.218696132317</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7631\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7630\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7629\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7630\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7632\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7633\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7635\">3453.840285526446 5027.137129516898 245.2341475225844 3455.953776102587 5024.293156478936 245.2344115152281 3450.996312499711 5025.023638973564 245.234561335817 3453.109803074617 5022.179665927188 245.2348253284619</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7635\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7634\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7633\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7634\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7636\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7637\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7639\">3463.049909115931 5029.566710661562 245.2333789793196 3460.205936087956 5027.453220109828 245.2337927925535 3460.936418539787 5032.410683699536 245.233114986676 3458.092445513055 5030.297193156194 245.2335287999087</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7639\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7638\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7637\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7638\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7640\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7641\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7643\">3351.402351871186 4951.571439334659 245.248980190176 3353.515842447329 4948.727466296698 245.2492441828196 3348.558378844457 4949.457948791331 245.2493940034087 3350.671869419358 4946.613975744947 245.2496579960535</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7643\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7642\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7641\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7642\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7644\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7645\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7647\">3360.611975460673 4954.001020479325 245.2482116469111 3357.768002432693 4951.887529927582 245.248625460145 3358.498484884525 4956.844993517294 245.2479476542673 3355.654511857795 4954.731502973957 245.2483614675002</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7647\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7646\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7645\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7646\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 1</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7648\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7649\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7651\">1694.489993150502 2202.356844991414 239.7771268242047 1677.268155408097 2558.595190663371 239.7318570498964 1946.430946551842 2123.209913865206 239.7749531740341</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7651\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7650\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7649\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7650\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7652\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7653\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7655\">1588.010429500539 2492.757848994123 184.1971211766439 1605.232263211023 2136.519500058052 184.1965614804087 1955.836185775716 2026.387194544402 184.1969867982565</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7655\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7654\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7653\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7654\" />\r\n\t\t\t\t\t<p>1 0 1 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7658\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7661\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID7664\">3.892456817325638 0 2.866858411874716 3.655763648308039 -2.273736754432321e-013 3.073114105917426 3.949213003636487 -3.410605131648481e-013 2.185974806787868 3.503039113633349 0 3.627106248704138 3.050581752611834 -1.13686837721616e-013 3.600472848196063 2.07297981638385 -3.410605131648481e-013 3.972726001745798 3.14950835575155 -1.13686837721616e-013 3.95683127158992 2.31017923892432 -1.13686837721616e-013 4.465704851252241 1.09537788015723 1.13686837721616e-013 3.988236495768661 0.2256371848598064 -1.13686837721616e-013 4.084641408830294 0.8791916285294974 0 4.451951467443791 1.512128559306348 -1.13686837721616e-013 4.56197821366132 -0.2391257460358247 0 3.0265822995988 -0.418612277297143 -2.273736754432321e-013 3.186903512530364 -0.3632655808351046 -1.13686837721616e-013 2.390649774909718 0.2574335931617497 -1.13686837721616e-013 3.569451535900384</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID7664\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7662\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID7665\">-6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017 -6.670726799459748e-015 -1 -9.376718253576137e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID7665\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7663\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7661\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7662\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7663\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 5 6 7 5 7 8 8 7 9 9 7 10 10 7 11 12 13 14 13 12 15 13 15 9 9 15 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7666\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7669\">\r\n\t\t\t\t\t<float_array count=\"27\" id=\"ID7672\">1.37606621354189 -3.410605131648481e-013 58.88633454941169 0.9739964462442003 -1.13686837721616e-013 59.11934312239839 -0.3285531563860786 -1.13686837721616e-013 58.91904033994399 3.01687511243108 -2.273736754432321e-013 59.99305228226882 3.112569171490122 0 60.10702473563475 0.2914635211432142 1.13686837721616e-013 58.62688761223234 -1.487429478560443 -3.410605131648481e-013 58.66472206345173 -0.7282478574193192 1.13686837721616e-013 58.56202595900004 -2.716526806158527 0 59.17059438602865</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"9\" source=\"#ID7672\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7670\">\r\n\t\t\t\t\t<float_array count=\"27\" id=\"ID7673\">-6.948282889191007e-015 -1 8.635115497266579e-016 -6.948282889191007e-015 -1 8.635115497266579e-016 -6.948282889191007e-015 -1 8.635115497266579e-016 -6.948282889191007e-015 -1 8.635115497266579e-016 -6.948282889191007e-015 -1 8.635115497266579e-016 -6.948282889191007e-015 -1 8.635115497266579e-016 -6.948282889191007e-015 -1 8.635115497266579e-016 -6.948282889191007e-015 -1 8.635115497266579e-016 -6.948282889191007e-015 -1 8.635115497266579e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"9\" source=\"#ID7673\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7671\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7669\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7670\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7671\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 6 7 6 5 0 6 0 2 6 2 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7674\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7677\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID7680\">-8.699609308150684 -1.13686837721616e-013 30.24236351563752 -9.15082471860751 -2.273736754432321e-013 30.18222829108959 -8.88009557956002 1.13686837721616e-013 30.07699185078724 -8.541683485585054 2.273736754432321e-013 31.73070914778941 -9.609560457389762 -2.273736754432321e-013 32.13662171083081 -9.083142299812607 -2.273736754432321e-013 31.72319238658025 -8.383758199149725 0 31.89608113688962 -9.1508247186066 -1.13686837721616e-013 33.29422401328236 -10.34654619967841 0 33.8880591733012 -9.556918695245258 -3.410605131648481e-013 34.85022211756598 -9.635688330819903 -3.410605131648481e-013 30.0814172134385 -9.272521398336266 -1.13686837721616e-013 30.04360416271283 -10.97486649487973 -4.547473508864641e-013 30.64861167732659 -8.737210413643879 -2.273736754432321e-013 30.51297178291509 -9.353871974993126 -2.273736754432321e-013 30.95646880050208 -11.06020494405311 -4.547473508864641e-013 30.76447412610429 -12.15345528270746 -3.410605131648481e-013 32.24876007917356 -9.887809924763587 -3.410605131648481e-013 31.5277530283937 -10.30142422972722 1.13686837721616e-013 32.1742061653764 -10.4969511577865 -2.273736754432321e-013 32.89582853569988 -12.38970419081397 -4.547473508864641e-013 32.56951089290067 -12.46521417920076 0 35.09825352491265 -9.855484097590761 -2.273736754432321e-013 35.28573481013677 -11.08748377344045 -2.273736754432321e-013 35.49857762871898 -12.15345528270746 -3.410605131648481e-013 32.24876007917356 -11.28507159421315 -4.547473508864641e-013 30.8528018918463 -11.06020494405311 -4.547473508864641e-013 30.76447412610429 -12.09463089062956 -2.273736754432321e-013 31.85106455035913</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID7680\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7678\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID7681\">-6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -6.531948928414153e-015 -1 -7.35853520180068e-017 -1.230510719153476e-014 -1 -4.277579911105255e-015 -1.230510719153476e-014 -1 -4.277579911105255e-015 -1.230510719153476e-014 -1 -4.277579911105255e-015 -1.230510719153476e-014 -1 -4.277579911105255e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID7681\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7679\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7677\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7678\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7679\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 4 6 7 4 7 8 8 7 9 1 10 11 10 1 12 12 1 0 12 0 13 12 13 14 12 14 15 15 14 16 16 14 17 16 17 18 16 18 19 16 19 20 20 19 21 21 19 8 21 8 9 21 9 22 21 22 23 24 25 26 25 24 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7682\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7685\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID7688\">-0.2004856160674535 -6.821210263296962e-013 64.85641659643 -0.6044441775979976 -1.13686837721616e-013 63.77692868917188 -0.08506865443087008 -2.273736754432321e-013 63.54619829599079 -0.670396497333968 -1.13686837721616e-013 64.55976360433994 -1.049622737912614 0 65.17779104948579 0.02359035906738427 0 65.37478388894886 -1.338164873938695 -4.547473508864641e-013 65.51564582801899 0.5208182552923972 1.13686837721616e-013 66.08922931195968 -1.700902900551682 -4.547473508864641e-013 65.75461670818862 4.555836559194177 -3.410605131648481e-013 68.42453741073587 4.330499064663854 0 68.05355953204759 4.913725268796043 -1.13686837721616e-013 67.88131960579057 3.063002866651459 -3.410605131648481e-013 68.24538480083567 1.822797949245796 -2.273736754432321e-013 68.30372124905665 0.713909534134018 0 68.4933150300248 5.059531819828862 0 68.66302321305341 3.94610021927474 -2.273736754432321e-013 70.18668225344305 3.124281720783984 0 69.97469512579977 3.9858656910219 -2.273736754432321e-013 69.68321229838386 2.050615591977021 -3.410605131648481e-013 70.72990005838847 0.9902047991304244 -2.273736754432321e-013 70.51791260649509 1.99759532040116 -4.547473508864641e-013 70.34567300448799 0.9504393273819005 -2.273736754432321e-013 70.79614593444887 -0.361819095782721 -2.273736754432321e-013 70.58415880680548 -1.910760297058914 -3.410605131648481e-013 63.64484805067065 -2.816906327938341 0 63.16121249732169 -2.544323243260806 -2.273736754432321e-013 62.97351752377477 -3.169509844939512 -1.13686837721616e-013 64.75896685537941 -2.038909142345347 -1.13686837721616e-013 63.80164982588775 -2.426379489909323 -1.13686837721616e-013 64.69160945065761 -2.426379489908413 -2.273736754432321e-013 65.30963689580369 -3.639647510184204 -3.410605131648481e-013 66.25098721166148 -2.129593783031851 -2.273736754432321e-013 65.69693394776834 0.4275880582581522 -1.13686837721616e-013 66.82438327915963 -3.486853010239429 -3.410605131648481e-013 67.89573445939743 0.8626626685045267 -1.13686837721616e-013 68.06689722748268 -2.840529927211719 1.13686837721616e-013 69.35198194533183 4.650137571001324 1.13686837721616e-013 69.20108757481245 4.873959797048428 -1.13686837721616e-013 69.31223441969559 -1.634312047199273 0 70.27942680417766 3.0447507772883 -3.410605131648481e-013 70.30592515460182 -0.7594732771335657 -2.273736754432321e-013 70.78289675923674 -0.2097926399155767 -3.410605131648481e-013 71.09923811856663 3.968377054109624 -1.13686837721616e-013 67.77190731313584</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID7688\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7686\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID7689\">-6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017 -6.726238003504347e-015 -1 5.779411678234491e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID7689\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7687\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7685\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7686\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"42\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7687\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 9 10 11 10 9 12 12 9 13 13 9 14 14 9 15 16 17 18 19 20 21 22 23 20 24 25 26 25 24 27 27 24 28 27 28 29 27 29 30 27 30 31 31 30 32 31 32 8 31 8 7 31 7 33 31 33 34 34 33 35 34 35 36 36 35 14 36 14 15 36 15 37 36 37 38 36 38 18 36 18 39 39 18 17 39 17 40 39 40 21 39 21 23 39 23 41 23 21 20 41 23 42 12 43 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7690\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7691\">\r\n\t\t\t\t\t<float_array count=\"21\" id=\"ID7694\">0.07751133297369961 -1.13686837721616e-013 1.290536331437608 -0.6875039441524677 -3.410605131648481e-013 1.261942353902072 -0.5625030808150768 -3.410605131648481e-013 0.8246355911785486 -0.6312534752314605 -1.13686837721616e-013 1.443112284562517 -0.203501896608941 -3.410605131648481e-013 1.524609092600031 -0.2856781170689828 -2.273736754432321e-013 1.816759550562324 -0.3632655808351046 -1.13686837721616e-013 2.390649774909718</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID7694\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7692\">\r\n\t\t\t\t\t<float_array count=\"21\" id=\"ID7695\">-6.948282609808635e-015 -1 6.175230174486424e-017 -6.948282609808635e-015 -1 6.175230174486424e-017 -6.948282609808635e-015 -1 6.175230174486424e-017 -6.948282609808635e-015 -1 6.175230174486424e-017 -6.948282609808635e-015 -1 6.175230174486424e-017 -6.948282609808635e-015 -1 6.175230174486424e-017 -6.948282609808635e-015 -1 6.175230174486424e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID7695\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7693\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7691\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7692\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7693\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 3 5 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7696\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7699\">\r\n\t\t\t\t\t<float_array count=\"51\" id=\"ID7702\">0.02499985098802426 0 0.57474591983663 -0.6125033189246096 -1.13686837721616e-013 0.4747900512998058 -0.4750025300927518 -1.13686837721616e-013 0.1749227699393146 -0.5851945928625355 0 0.6658658616108255 0.450002142973517 0 0.6122292084129413 0.6125033189237001 0 0.7871519783523411 -0.5625030808150768 -3.410605131648481e-013 0.8246355911785486 0.4365827505171183 3.410605131648481e-013 1.118883297501725 0.07751133297369961 -1.13686837721616e-013 1.290536331437608 0 0 0 -2.229967952241623 -3.410605131648481e-013 -0.08746154709470488 -0.6332960997856389 -3.410605131648481e-013 -0.08746154709470488 -2.616320455123514 -3.410605131648481e-013 0.5809267350428229 -0.4750025300927518 -1.13686837721616e-013 0.1749227699393146 -0.6125033189246096 -1.13686837721616e-013 0.4747900512998058 -0.5851945928625355 0 0.6658658616108255 -1.937342087433535 0 0.7194317015811862</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"17\" source=\"#ID7702\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7700\">\r\n\t\t\t\t\t<float_array count=\"51\" id=\"ID7703\">-6.642971200195003e-015 -1 -1.616344268850912e-016 -6.642971200195003e-015 -1 -1.616344268850912e-016 -6.642971200195003e-015 -1 -1.616344268850912e-016 -6.642971200195003e-015 -1 -1.616344268850912e-016 -6.642971200195003e-015 -1 -1.616344268850912e-016 -6.642971200195003e-015 -1 -1.616344268850912e-016 -6.642971200195003e-015 -1 -1.616344268850912e-016 -6.642971200195003e-015 -1 -1.616344268850912e-016 -6.642971200195003e-015 -1 -1.616344268850912e-016 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"17\" source=\"#ID7703\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7701\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7699\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7700\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7701\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 3 5 6 6 5 7 6 7 8 9 10 11 10 9 12 12 9 13 12 13 14 12 14 15 12 15 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7704\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7705\">\r\n\t\t\t\t\t<float_array count=\"45\" id=\"ID7708\">8.68646463950563 0 34.77599561459493 8.311984018340809 -1.13686837721616e-013 37.62550101625374 8.436185508359813 -2.273736754432321e-013 34.74946275777421 11.25638965617964 0 34.94384480070085 11.62401285080796 1.13686837721616e-013 34.95637180771507 11.4884764508688 0 37.79230359591787 7.732379388161007 0 42.30164956561981 11.62350812490922 3.410605131648481e-013 38.84663821427529 11.62331212583968 -1.13686837721616e-013 40.3573365889315 11.26292450340316 0 45.09838213476905 7.226799622353155 0 46.52386025058092 11.0148394498442 -2.273736754432321e-013 46.76356361127733 6.412227087879273 -1.13686837721616e-013 48.64961512768184 6.967613412573883 -1.13686837721616e-013 48.73177510268226 10.28515716928132 -2.273736754432321e-013 49.99596853611701</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"15\" source=\"#ID7708\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7706\">\r\n\t\t\t\t\t<float_array count=\"45\" id=\"ID7709\">-6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017 -6.642971239581907e-015 -1 -4.860359754639894e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"15\" source=\"#ID7709\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7707\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7705\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7706\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7707\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 1 5 6 6 5 7 6 7 8 6 8 9 6 9 10 10 9 11 10 11 12 12 11 13 13 11 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7710\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7713\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID7716\">2.200011549022293 0 0 0 0 0 1.062505461897217 1.13686837721616e-013 -0.08746154709467646 3.200016847316874 -2.273736754432321e-013 0.8371299126207532 -0.4750025300927518 -1.13686837721616e-013 0.1749227699393146 0.02499985098802426 0 0.57474591983663 0.450002142973517 0 0.6122292084129413 0.6125033189237001 0 0.7871519783523411 0.4365827505171183 3.410605131648481e-013 1.118883297501725 3.810938575839828 0 1.925333332972656 0.07751133297369961 -1.13686837721616e-013 1.290536331437608 -0.203501896608941 -3.410605131648481e-013 1.524609092600031 -0.2856781170689828 -2.273736754432321e-013 1.816759550562324 -0.03739844746951349 -1.13686837721616e-013 2.375139280886884 3.143686494678605 -1.13686837721616e-013 2.607797339730382 0.6764060047262319 1.13686837721616e-013 2.871476710869814 2.445399320782599 -1.13686837721616e-013 2.902498023165549 1.514350291721257 -1.13686837721616e-013 3.042092793621691</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID7716\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7714\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID7717\">-6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018 -6.67072683151961e-015 -1 -1.763310837946637e-018</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID7717\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7715\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7713\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7714\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7715\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 7 3 8 8 3 9 8 9 10 10 9 11 11 9 12 12 9 13 13 9 14 13 14 15 15 14 16 15 16 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7718\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7719\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID7722\">4.148515911762843 -1.13686837721616e-013 64.18444726197379 -0.08506865443087008 -2.273736754432321e-013 63.54619829599079 4.62440318698782 -3.410605131648481e-013 63.02911979701901 -0.2004856160674535 -6.821210263296962e-013 64.85641659643 4.119427515555344 -1.13686837721616e-013 64.75432327254464 4.538299134238514 0 65.44631536264859 0.02359035906738427 0 65.37478388894886 0.5208182552923972 1.13686837721616e-013 66.08922931195968 4.317228180866096 0 66.44069026484624 0.4275880582581522 -1.13686837721616e-013 66.82438327915963 4.194989471342524 -2.273736754432321e-013 67.39926019595617 0.8626626685045267 -1.13686837721616e-013 68.06689722748268 3.968377054109624 -1.13686837721616e-013 67.77190731313584 3.063002866651459 -3.410605131648481e-013 68.24538480083567 1.822797949245796 -2.273736754432321e-013 68.30372124905665 0.713909534134018 0 68.4933150300248 0.9739964462442003 -1.13686837721616e-013 59.11934312239839 -2.716526806158527 0 59.17059438602865 -0.3285531563860786 -1.13686837721616e-013 58.91904033994399 3.112569171490122 0 60.10702473563475 -3.627504648828108 -1.13686837721616e-013 60.13897903739741 3.319971384794371 -3.410605131648481e-013 60.35404256846692 -3.584124572847941 -4.547473508864641e-013 60.44250256064368 3.21351344283039 -1.13686837721616e-013 60.37299375782754 3.410830516772421 1.13686837721616e-013 60.62534740416868 -3.237085573398872 0 60.76047952323489 3.400432230049319 0 61.16700070334076 -2.83560340714439 -1.13686837721616e-013 61.19022477826286 3.785802011105261 -1.13686837721616e-013 62.17977549043093 -2.544323243260806 -2.273736754432321e-013 62.97351752377477 3.840890145115282 -1.13686837721616e-013 62.64230954396589 4.579500254757477 1.13686837721616e-013 62.78328705575541 -1.910760297058914 -3.410605131648481e-013 63.64484805067065 -0.6044441775979976 -1.13686837721616e-013 63.77692868917188 -2.038909142345347 -1.13686837721616e-013 63.80164982588775 -0.670396497333968 -1.13686837721616e-013 64.55976360433994 -2.426379489909323 -1.13686837721616e-013 64.69160945065761 -1.049622737912614 0 65.17779104948579 -2.426379489908413 -2.273736754432321e-013 65.30963689580369 -1.338164873938695 -4.547473508864641e-013 65.51564582801899 -2.129593783031851 -2.273736754432321e-013 65.69693394776834 -1.700902900551682 -4.547473508864641e-013 65.75461670818862</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID7722\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7720\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID7723\">-6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016 -6.67072679106238e-015 -1 -1.178656934016198e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID7723\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7721\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7719\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7720\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"40\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7721\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 3 5 6 6 5 7 7 5 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 11 13 14 11 14 15 16 17 18 17 16 19 17 19 20 20 19 21 20 21 22 22 21 23 22 23 24 22 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 29 30 31 29 31 2 29 2 32 32 2 1 32 1 33 32 33 34 34 33 35 34 35 36 36 35 37 36 37 38 38 37 39 38 39 40 40 39 41</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7724\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7725\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID7728\">9.028750110658166 1.13686837721616e-013 29.68472853199592 8.775303152493962 -2.273736754432321e-013 30.05464422334808 8.933046690063748 0 29.59147950375518 9.242663116087897 -1.13686837721616e-013 29.69769598938399 10.45619276894558 -1.13686837721616e-013 30.56953036892804 9.356982614825938 0 30.84300954483058 11.42322378383642 1.13686837721616e-013 32.49641069817915 9.65275181478728 0 31.72006564478323 9.613315528295971 -1.13686837721616e-013 32.43944906953908 9.36684155241619 -2.273736754432321e-013 33.30665089074495 11.48521676624523 -3.410605131648481e-013 33.99951780708233 8.864033590802592 -2.273736754432321e-013 30.99082794128054 8.371085102910911 0 30.95140952929393 8.548546515661201 0 30.85286414782729 8.292213066059048 0 32.2029395703695 9.130225977994542 2.273736754432321e-013 31.8481751594897 9.120367040403835 0 32.40988526054923 8.420379790860352 -1.13686837721616e-013 34.21327079968756 11.25638965617964 0 34.94384480070085 8.68646463950563 0 34.77599561459493</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID7728\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7726\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID7729\">-6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016 -6.476437701854883e-015 -1 -2.89758324552671e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID7729\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7727\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7725\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7726\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7727\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 5 6 7 7 6 8 8 6 9 9 6 10 11 12 13 12 11 14 14 11 15 14 15 16 14 16 17 17 16 9 17 9 10 17 10 18 17 18 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7730\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7731\">\r\n\t\t\t\t\t<float_array count=\"45\" id=\"ID7734\">3.949213003636487 -3.410605131648481e-013 2.185974806787868 3.143686494678605 -1.13686837721616e-013 2.607797339730382 3.810938575839828 0 1.925333332972656 3.655763648308039 -2.273736754432321e-013 3.073114105917426 2.445399320782599 -1.13686837721616e-013 2.902498023165549 1.514350291721257 -1.13686837721616e-013 3.042092793621691 -0.03739844746951349 -1.13686837721616e-013 2.375139280886884 -0.3632655808351046 -1.13686837721616e-013 2.390649774909718 -0.2856781170689828 -2.273736754432321e-013 1.816759550562324 0.6764060047262319 1.13686837721616e-013 2.871476710869814 -0.2391257460358247 0 3.0265822995988 0.2574335931617497 -1.13686837721616e-013 3.569451535900384 3.050581752611834 -1.13686837721616e-013 3.600472848196063 1.09537788015723 1.13686837721616e-013 3.988236495768661 2.07297981638385 -3.410605131648481e-013 3.972726001745798</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"15\" source=\"#ID7734\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7732\">\r\n\t\t\t\t\t<float_array count=\"45\" id=\"ID7735\">-6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017 -6.670726811513543e-015 -1 -5.917583927755348e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"15\" source=\"#ID7735\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7733\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7731\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7732\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7733\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 6 7 8 7 6 9 7 9 10 10 9 5 10 5 11 11 5 3 11 3 12 11 12 13 13 12 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7736\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7737\">\r\n\t\t\t\t\t<float_array count=\"27\" id=\"ID7740\">-0.5625030808150768 -3.410605131648481e-013 0.8246355911785486 -1.937342087433535 0 0.7194317015811862 -0.5851945928625355 0 0.6658658616108255 -2.38531925856023 0 1.360664090904891 -2.616320455123514 -3.410605131648481e-013 0.5809267350428229 -0.8026565925456453 -1.13686837721616e-013 0.919441398534957 -0.9599727079939839 -1.13686837721616e-013 1.71776612855237 -1.663174322189661 -4.547473508864641e-013 1.962182210104373 -1.024971439422188 -3.410605131648481e-013 2.047612149546154</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"9\" source=\"#ID7740\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7738\">\r\n\t\t\t\t\t<float_array count=\"27\" id=\"ID7741\">-6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020 -6.670726832149841e-015 -1 4.531626267810501e-020</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"9\" source=\"#ID7741\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7739\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7737\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7738\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7739\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 4 3 1 0 3 0 5 3 5 6 3 6 7 7 6 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7742\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7745\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID7748\">7.129937664851695 -3.410605131648481e-013 39.0309641584156 7.024294549850765 1.13686837721616e-013 35.60014427738616 7.377741619802237 -1.13686837721616e-013 35.57307033221713 6.080942737908117 -3.410605131648481e-013 35.67240475824224 -7.087642184594188 -3.410605131648481e-013 36.42289996101641 -6.584431587593826 -1.13686837721616e-013 42.71022292335033 6.64637524582713 -2.273736754432321e-013 44.69383985181014 -6.761215617304515 -1.13686837721616e-013 49.32585777090242 6.276589223480642 0 48.62954980908711 6.412227087879273 -1.13686837721616e-013 48.64961512768184 6.967613412573883 -1.13686837721616e-013 48.73177510268226 10.28515716928132 -2.273736754432321e-013 49.99596853611701 -6.636205021900878 -3.410605131648481e-013 34.80158314025846 -7.294846611139292 -1.13686837721616e-013 34.60327501407727 1.121015192497907 0 35.10383320502393 -6.978890503899947 -1.13686837721616e-013 49.32048265630749 -10.98489506109945 0 50.9515563871858 -7.433721507155042 -1.13686837721616e-013 49.31780654032946 -6.870615526444908 -4.547473508864641e-013 49.32111972017322 10.55650152125736 -1.13686837721616e-013 50.10338363691182 9.094294388604794 3.410605131648481e-013 55.81306707329094 -11.74801597186024 0 51.30263713616938 -9.127465968710567 0 57.5823895118105 8.381689264452689 -1.13686837721616e-013 57.61984394214568 -8.481248503754159 -3.410605131648481e-013 58.46157042136559 -0.7282478574193192 1.13686837721616e-013 58.56202595900004 7.182426093147569 -3.410605131648481e-013 58.80119787410837 0.2914635211432142 1.13686837721616e-013 58.62688761223234 1.37606621354189 -3.410605131648481e-013 58.88633454941169 3.845345940988409 -2.273736754432321e-013 60.26051762785647 3.01687511243108 -2.273736754432321e-013 59.99305228226882 3.112569171490122 0 60.10702473563475 3.319971384794371 -3.410605131648481e-013 60.35404256846692 -7.027258671468189 -3.410605131648481e-013 59.39457876001569 -1.487429478560443 -3.410605131648481e-013 58.66472206345173 -2.716526806158527 0 59.17059438602865 -3.627504648828108 -1.13686837721616e-013 60.13897903739741 -4.061303800239784 -1.13686837721616e-013 60.61594480553413 -3.584124572847941 -4.547473508864641e-013 60.44250256064368 -3.237085573398872 0 60.76047952323489</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID7748\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7746\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID7749\">-6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017 -6.698482387310218e-015 -1 -5.865618456441297e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID7749\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7747\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7745\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7746\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"38\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7747\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7 7 6 8 7 8 9 7 9 10 7 10 11 12 4 13 4 12 14 4 14 3 15 16 17 16 15 18 16 18 7 16 7 11 16 11 19 16 19 20 16 20 21 21 20 22 22 20 23 22 23 24 24 23 25 25 23 26 25 26 27 27 26 28 28 26 29 28 29 30 30 29 31 31 29 32 25 33 24 33 25 34 33 34 35 33 35 36 33 36 37 37 36 38 37 38 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7750\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7751\">\r\n\t\t\t\t\t<float_array count=\"39\" id=\"ID7754\">-9.658082578637732 0 36.97898173229129 -9.855484097590761 -2.273736754432321e-013 35.28573481013677 -9.692525864653362 -1.13686837721616e-013 35.25758180791638 -11.08748377344045 -2.273736754432321e-013 35.49857762871898 -6.978890503899947 -1.13686837721616e-013 49.32048265630749 -7.433721507155042 -1.13686837721616e-013 49.31780654032946 -8.550981628747195 3.410605131648481e-013 43.58935681666964 -12.46521417920076 0 35.09825352491265 -12.71122114637683 -2.273736754432321e-013 42.07123758584163 -12.93020547268407 -3.410605131648481e-013 34.72394785730018 -9.279205360212018 -4.547473508864641e-013 37.75361150370986 -8.848662676630738 -2.273736754432321e-013 40.50785144755957 -10.98489506109945 0 50.9515563871858</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"13\" source=\"#ID7754\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7752\">\r\n\t\t\t\t\t<float_array count=\"39\" id=\"ID7755\">-6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016 -6.448682162661404e-015 -1 -1.852357294109114e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"13\" source=\"#ID7755\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7753\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7751\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7752\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"11\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7753\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 8 9 8 7 3 8 3 0 8 0 10 8 10 11 8 11 6 8 6 12 12 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7756\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7759\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID7762\">-0.6875039441524677 -3.410605131648481e-013 1.261942353902072 -0.8026565925456453 -1.13686837721616e-013 0.919441398534957 -0.5625030808150768 -3.410605131648481e-013 0.8246355911785486 -0.9599727079939839 -1.13686837721616e-013 1.71776612855237 -0.6312534752314605 -1.13686837721616e-013 1.443112284562517 -0.3632655808351046 -1.13686837721616e-013 2.390649774909718 -1.024971439422188 -3.410605131648481e-013 2.047612149546154 4.011513744891545 2.273736754432321e-013 3.996891358703664 3.892456817325638 0 2.866858411874716 4.26624046604411 -1.13686837721616e-013 2.773631554928983 3.503039113633349 0 3.627106248704138 3.14950835575155 -1.13686837721616e-013 3.95683127158992 2.31017923892432 -1.13686837721616e-013 4.465704851252241 5.003464172036274 -2.273736754432321e-013 8.475154099805991 1.512128559306348 -1.13686837721616e-013 4.56197821366132 -1.549514837497554 -3.410605131648481e-013 6.546715002980051 -1.937112086659454 -1.13686837721616e-013 7.012806500480735 -4.260261975271988 0 15.98369946495214 5.509694266372208 -2.273736754432321e-013 13.80150703326149 5.34983193379594 -3.410605131648481e-013 17.39679544978765 -4.041846485376937 -2.273736754432321e-013 16.7378894953502 -3.595335739871189 -3.410605131648481e-013 17.04189849531136 -6.350575886925526 -1.13686837721616e-013 27.75496109008253 5.330934877228174 -1.13686837721616e-013 19.7565153508738 6.204863294580719 -1.13686837721616e-013 23.9918500505853 6.602103581766187 -4.547473508864641e-013 29.70955186277075 -6.686255983035608 -3.410605131648481e-013 29.92575122711611 6.867097177046617 -2.273736754432321e-013 31.14510280176268 -6.636205021900878 -3.410605131648481e-013 34.80158314025846 1.121015192497907 0 35.10383320502393 7.024294549850765 1.13686837721616e-013 35.60014427738616 6.080942737908117 -3.410605131648481e-013 35.67240475824224 -1.663174322189661 -4.547473508864641e-013 1.962182210104373 -1.840464859786607 1.13686837721616e-013 2.689219836316198 -2.204369913746177 -2.273736754432321e-013 1.793183750841877 -0.418612277297143 -2.273736754432321e-013 3.186903512530364 0.2256371848598064 -1.13686837721616e-013 4.084641408830294 0.8791916285294974 0 4.451951467443791</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID7762\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7760\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID7763\">-6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017 -6.670726803743477e-015 -1 -8.14739816140229e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID7763\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7761\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7759\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7760\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"36\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7761\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 3 5 6 7 8 9 8 7 10 10 7 11 11 7 12 12 7 13 12 13 14 14 13 15 15 13 16 16 13 17 17 13 18 17 18 19 17 19 20 20 19 21 21 19 22 22 19 23 22 23 24 22 24 25 22 25 26 26 25 27 26 27 28 28 27 29 29 27 30 29 30 31 32 33 34 33 32 6 33 6 5 33 5 35 33 35 15 15 35 36 15 36 37 15 37 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7764\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7767\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7769\">-10.31646488637716 -1.13686837721616e-013 30.73096174897898 -9.15082471860751 -2.273736754432321e-013 30.18222829108959 -11.60994956341165 -4.547473508864641e-013 32.43729767144492</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7769\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7768\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7767\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7768\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7770\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7771\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7773\">10.10626455231932 0 30.73460923611737 9.028750110658166 1.13686837721616e-013 29.68472853199592 10.73723870260119 1.13686837721616e-013 32.17337576137942</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7773\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7772\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7771\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7772\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7774\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7775\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID7777\">-0.2300517061898972 0 61.41776422816645 1.349407032963882 -2.273736754432321e-013 60.31827561425382 2.266968044629721 -1.13686837721616e-013 60.17538581630191 3.01687511243108 -1.13686837721616e-013 60.23916479911424 3.21351344283039 -1.13686837721616e-013 60.37299375782754</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID7777\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7776\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7775\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7776\" />\r\n\t\t\t\t\t<p>1 0 1 2 2 3 3 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7778\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7779\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID7781\">-1.560754154095775 0 63.21658368019632 -1.910760297058914 -3.410605131648481e-013 63.64484805067065 -1.263968447218758 -2.273736754432321e-013 63.21658368019632 -1.016646846111144 0 63.45555423611609</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID7781\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7780\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7779\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7780\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7782\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7783\">\r\n\t\t\t\t\t<float_array count=\"21\" id=\"ID7785\">-1.38959604926049 0 3.897955595783316 -1.024971439422188 -3.410605131648481e-013 2.047612149546154 -1.161917588337019 0 6.080623505479309 -0.622697875358881 0 13.67194552749754 -0.02460686598305983 -1.13686837721616e-013 17.1791796681097 -0.3037157534963626 -3.410605131648481e-013 23.11756466603828 0.01526583223312628 -2.273736754432321e-013 29.73348345097719</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"7\" source=\"#ID7785\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7784\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7783\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7784\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5 5 6</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7786\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7787\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7789\">6.262331320045178 -1.13686837721616e-013 52.07277136494173 6.276589223480642 0 48.62954980908711</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7789\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7788\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7787\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7788\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7790\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7791\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7793\">-2.671783345638687 -3.410605131648481e-013 17.67070360830959 -3.595335739871189 -3.410605131648481e-013 17.04189849531136</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7793\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7792\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7791\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7792\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7794\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7795\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7797\">-6.904132126790046 -2.273736754432321e-013 52.62574923392907 -6.761215617304515 -1.13686837721616e-013 49.32585777090242</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7797\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7796\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7795\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7796\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7800\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7803\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID7806\">0.1120042258351788 6.976558052372108e-016 0.3528893627476837 -3.3125 0 0 0 0 0 -4.512842175299937 4.456652783217166e-016 0.0176441205157083 -5.483706511681504 1.344876418834711e-015 0.1411556678498078 -5.430469576778094 5.151828670801048e-016 0.7958950252669705 0.1473085579409315 1.234734952503588e-015 1.393913716721383 -5.474503581786308 8.021002802640705e-016 1.522147512198618 0.1961832145388058 1.619029197979396e-016 1.81250667730351 -5.133237964478923 4.985210271085186e-016 1.852262436995591 -0.5886220538423004 -3.394577864092643e-017 2.105770415125214 -4.791972347171551 1.949417739529651e-016 2.182377361792565 -2.153143159325367 4.771952582387608e-016 2.85641706416816 -4.100586782839713 -2.400690560207243e-015 2.953747091848382 -4.100586782839713 -2.400690560207243e-015 2.953747091848382 -2.153143159325367 4.771952582387608e-016 2.85641706416816 -4.791972347171551 1.949417739529651e-016 2.182377361792565 -0.5886220538423004 -3.394577864092643e-017 2.105770415125214 -5.133237964478923 4.985210271085186e-016 1.852262436995591 0.1961832145388058 1.619029197979396e-016 1.81250667730351 -5.474503581786308 8.021002802640705e-016 1.522147512198618 0.1473085579409315 1.234734952503588e-015 1.393913716721383 -5.430469576778094 5.151828670801048e-016 0.7958950252669705 0.1120042258351788 6.976558052372108e-016 0.3528893627476837 -5.483706511681504 1.344876418834711e-015 0.1411556678498078 -4.512842175299937 4.456652783217166e-016 0.0176441205157083 -3.3125 0 0 0 0 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID7806\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7804\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID7807\">4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 4.633490700992892e-018 -1 -3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016 -4.633490700992892e-018 1 3.680073758640091e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID7807\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7805\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7803\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7804\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7805\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7 7 6 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 14 15 16 15 17 16 16 17 18 17 19 18 18 19 20 19 21 20 20 21 22 21 23 22 22 23 24 24 23 25 25 23 26 27 26 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7808\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7811\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID7814\">5.723089420244193 -2.950822855484471e-015 6.738180742073827 3.096363460213397 -1.240428212972833e-015 5.99973252594886 4.738067025348443 -1.240428212972833e-015 5.99973252594886 1.824043373106179 1.992791539768282e-015 7.394579413904739 6.174557724783782 -2.002179088636455e-015 7.415091606855095 2.35759714369398 -2.581828433744761e-015 10.8690812479181 6.626026029323342 -1.053535321788435e-015 8.092002471636342 6.29768544420358 -1.769479139280487e-015 10.02017255624291 6.092472258735526 -4.475001316912709e-015 14.53291139728698 1.823745349108151 -6.075065887661208e-015 16.50650714520229 6.092472258735526 -2.284548486712805e-015 19.16872494101859 1.173625183579958 -4.969210575951585e-015 18.94340464374208 1.051728252108859 -7.535791218121955e-015 20.04000869189587 5.741561152291425 5.422947066945722e-016 20.98576576448201 1.391252411591083 -4.658409742236369e-015 22.42282667716416 6.206937136814702 -6.383074219992536e-015 23.00152378010969 0.8337703837394344 -4.192326814966976e-015 27.64063509536472 7.26132813469394 -1.197816039062818e-014 29.96664937170024 0.2256082878171384 -5.710754275135983e-015 30.52816005608087 7.459047231731717 -3.637269248736436e-015 33.85451651477501 0.4777679274069158 6.742343660486422e-016 2.576479984916827 -0.5886220538423004 -3.394577864092643e-017 2.105770415125214 0.1961832145388058 1.619029197979396e-016 1.81250667730351 -2.153143159325367 4.771952582387608e-016 2.85641706416816 0.558220976599074 -1.28760955689552e-015 5.47153636363906 -4.100586782839713 -2.400690560207243e-015 2.953747091848382 -4.656377183912866 7.1041514466765e-016 2.981524581511076 -5.031862479461992 -2.697019564068122e-015 4.607925783186305 -5.577489419650803 -2.0083242583056e-015 7.346296299936628 0.2364094193666517 -2.581828433744761e-015 10.8690812479181 -5.507948141818645 -2.581828433744761e-015 10.8690812479181 -0.6083459983103268 -2.606539782644368e-015 15.56402544185001 -4.951617279624614 -2.632750559328453e-015 15.27059523184202 -5.090699835288973 -1.42790630664357e-015 18.81567605851933 -0.5278929491180406 -5.026839700233376e-015 18.2982453550877 -0.6359541484591915 -2.692124320751714e-015 24.54908124791808 -5.577489419650803 6.402798575576632e-016 22.08271164067496 -5.855655170516116 -1.049002762931923e-014 26.73997460417838 -6.481527310542404 -7.515035621153015e-015 30.21554460253323 -6.589645428629851 -8.963546688346034e-015 33.88578508981375 7.418072684827592 -1.420727823903824e-014 34.84115667073691 4.808661619757316 -7.105449958042372e-015 34.80086493055653 6.756048271726939 -1.058861316804128e-014 35.57948392810032 7.377098137923454 -1.234278935353829e-014 35.82779682669883 -5.317749354206526 -1.238670450953487e-014 35.33616570863147 -6.304357984121722 -7.002576971701065e-015 35.95253023029589 -3.07825441665004 -7.079368527929068e-015 35.09284710291625 0.9138883158180704 -7.105449958042372e-015 34.80086493055653 4.808661619757316 -7.105449958042372e-015 34.80086493055653 -6.589645428629851 -8.963546688346034e-015 33.88578508981375 0.9138883158180704 -7.105449958042372e-015 34.80086493055653 -3.07825441665004 -7.079368527929068e-015 35.09284710291625 -5.317749354206526 -1.238670450953487e-014 35.33616570863147 -6.304357984121722 -7.002576971701065e-015 35.95253023029589 7.377098137923454 -1.234278935353829e-014 35.82779682669883 7.418072684827592 -1.420727823903824e-014 34.84115667073691 6.756048271726939 -1.058861316804128e-014 35.57948392810032 7.459047231731717 -3.637269248736436e-015 33.85451651477501 0.2256082878171384 -5.710754275135983e-015 30.52816005608087 -6.481527310542404 -7.515035621153015e-015 30.21554460253323 -5.855655170516116 -1.049002762931923e-014 26.73997460417838 -0.6359541484591915 -2.692124320751714e-015 24.54908124791808 -5.577489419650803 6.402798575576632e-016 22.08271164067496 -5.090699835288973 -1.42790630664357e-015 18.81567605851933 -0.5278929491180406 -5.026839700233376e-015 18.2982453550877 -0.6083459983103268 -2.606539782644368e-015 15.56402544185001 -4.951617279624614 -2.632750559328453e-015 15.27059523184202 -5.507948141818645 -2.581828433744761e-015 10.8690812479181 0.2364094193666517 -2.581828433744761e-015 10.8690812479181 -5.577489419650803 -2.0083242583056e-015 7.346296299936628 0.558220976599074 -1.28760955689552e-015 5.47153636363906 -5.031862479461992 -2.697019564068122e-015 4.607925783186305 -4.656377183912866 7.1041514466765e-016 2.981524581511076 -4.100586782839713 -2.400690560207243e-015 2.953747091848382 -2.153143159325367 4.771952582387608e-016 2.85641706416816 0.4777679274069158 6.742343660486422e-016 2.576479984916827 -0.5886220538423004 -3.394577864092643e-017 2.105770415125214 0.1961832145388058 1.619029197979396e-016 1.81250667730351 7.26132813469394 -1.197816039062818e-014 29.96664937170024 0.8337703837394344 -4.192326814966976e-015 27.64063509536472 6.206937136814702 -6.383074219992536e-015 23.00152378010969 1.391252411591083 -4.658409742236369e-015 22.42282667716416 5.741561152291425 5.422947066945722e-016 20.98576576448201 1.051728252108859 -7.535791218121955e-015 20.04000869189587 6.092472258735526 -2.284548486712805e-015 19.16872494101859 1.173625183579958 -4.969210575951585e-015 18.94340464374208 1.823745349108151 -6.075065887661208e-015 16.50650714520229 6.092472258735526 -4.475001316912709e-015 14.53291139728698 2.35759714369398 -2.581828433744761e-015 10.8690812479181 6.29768544420358 -1.769479139280487e-015 10.02017255624291 6.626026029323342 -1.053535321788435e-015 8.092002471636342 6.174557724783782 -2.002179088636455e-015 7.415091606855095 1.824043373106179 1.992791539768282e-015 7.394579413904739 5.723089420244193 -2.950822855484471e-015 6.738180742073827 3.096363460213397 -1.240428212972833e-015 5.99973252594886 4.738067025348443 -1.240428212972833e-015 5.99973252594886</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID7814\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7812\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID7815\">-5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 -5.10508722341874e-017 -1 -2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016 5.10508722341874e-017 1 2.666758309284457e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID7815\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7813\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7811\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7812\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"92\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7813\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 5 7 8 5 8 9 9 8 10 9 10 11 11 10 12 12 10 13 12 13 14 14 13 15 14 15 16 16 15 17 16 17 18 18 17 19 20 21 22 21 20 23 23 20 24 23 24 25 25 24 26 26 24 27 27 24 28 28 24 29 28 29 30 30 29 31 30 31 32 32 31 33 33 31 34 33 34 35 33 35 36 36 35 37 37 35 18 37 18 38 38 18 39 39 18 19 39 19 40 39 40 41 41 40 42 42 40 43 39 44 45 44 39 46 46 39 47 47 39 41 48 49 50 50 49 51 51 49 52 53 52 49 54 55 56 56 55 48 48 55 49 55 57 49 57 58 49 49 58 59 59 58 60 58 61 60 60 61 62 62 61 63 61 64 63 64 65 63 63 65 66 66 65 67 65 68 67 67 68 69 68 70 69 69 70 71 71 70 72 72 70 73 73 70 74 70 75 74 74 75 76 77 76 75 57 78 58 58 78 79 78 80 79 79 80 81 80 82 81 81 82 83 82 84 83 83 84 85 85 84 86 84 87 86 86 87 88 87 89 88 89 90 88 90 91 88 88 91 92 91 93 92 92 93 94 95 94 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7816\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7817\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID7820\">5.938133560427147 8.769552350279265e-016 2.360150344439493 4.079636083309609 -1.590302510073146e-015 2.082882227618061 5.161447847150143 -1.156120129693055e-015 1.971975058138721 3.663554291312906 1.994608390380961e-015 2.443330818110533 6.520647685500748 2.925528582595116e-016 3.27513555482116 3.136517397419368 -2.332355048459369e-015 3.718764618984741 6.659341402987522 -1.789197474906397e-015 4.827837086270447 3.025562295522676 2.019625949616607e-018 4.994198033612603 6.326476097297302 -2.965432393672712e-015 6.574626647116469 4.738067025348443 -1.240428212972833e-015 5.99973252594886 5.723089420244193 -2.950822855484471e-015 6.738180742073827 6.174557724783782 -2.002179088636455e-015 7.415091606855095 3.096363460213397 -1.240428212972833e-015 5.99973252594886 4.738067025348443 -1.240428212972833e-015 5.99973252594886 3.025562295522676 2.019625949616607e-018 4.994198033612603 3.096363460213397 -1.240428212972833e-015 5.99973252594886 6.174557724783782 -2.002179088636455e-015 7.415091606855095 6.326476097297302 -2.965432393672712e-015 6.574626647116469 5.723089420244193 -2.950822855484471e-015 6.738180742073827 6.659341402987522 -1.789197474906397e-015 4.827837086270447 3.136517397419368 -2.332355048459369e-015 3.718764618984741 6.520647685500748 2.925528582595116e-016 3.27513555482116 3.663554291312906 1.994608390380961e-015 2.443330818110533 5.938133560427147 8.769552350279265e-016 2.360150344439493 4.079636083309609 -1.590302510073146e-015 2.082882227618061 5.161447847150143 -1.156120129693055e-015 1.971975058138721</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID7820\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7818\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID7821\">-1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 -1.099027904227324e-016 -1 -4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016 1.099027904227324e-016 1 4.380031441209988e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID7821\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7819\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7817\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7818\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7819\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 7 8 9 9 8 10 10 8 11 12 7 9 13 14 15 16 17 18 18 17 13 13 17 14 17 19 14 14 19 20 19 21 20 20 21 22 21 23 22 22 23 24 25 24 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7822\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7825\">\r\n\t\t\t\t\t<float_array count=\"258\" id=\"ID7828\">-4.425131666173755 -1.510158997346634e-014 44.71567063527897 -5.472833752046441 -2.217045938074605e-014 45.12493767721109 -4.954588553818127 -9.800340641549555e-015 44.40421185508448 -4.011079123416508 -4.39538866439025e-015 45.25370642391344 -5.641116421471097 -1.145337235375916e-014 45.78483931252204 -3.754584705589863 -1.148577652462318e-014 45.42207392115768 -3.141111259231167 -6.14985909106735e-015 45.49872528615782 -2.727017146602961 -2.033880375993697e-014 45.74400872716701 -3.202458795727964 -9.671077104141264e-015 45.85131994292372 -2.588985988905748 -6.10877777144495e-015 45.9586315449268 -2.803701407339844 -1.675733315395063e-014 46.06594314692994 -2.420280743191924 -2.554736902330963e-014 47.09306765271738 -3.355827317201715 -1.487690359447157e-014 47.23103949172337 -4.076657833241114 -7.778323117724037e-015 47.15438851296962 -2.573649264665676 -1.842140102314824e-014 47.32302058897861 -3.018416825774054 -1.301838408132489e-014 48.15085239550774 -4.659457191583144 -7.692052336166505e-015 48.12019177225839 -2.435617467431996 -4.142077395906743e-015 48.0895315352554 -4.015310296744303 -9.467039771794764e-015 48.1355222770063 -3.431382272077741 -9.465798388430265e-015 48.14941959053256 -3.21779551996805 -9.43006659448509e-015 48.54943779402439 -4.015310296744303 -5.88419979653805e-015 48.47278681527064 -3.47852175065897 -5.891046677391516e-015 48.39613583651688 -4.276036527435096 -6.10877777144495e-015 45.9586315449268 -5.809399090895738 -7.362853267722715e-016 46.444740947833 -3.67790044485298 -1.677513505797029e-014 45.86665044767153 -4.552099482366103 -4.30914151644195e-015 46.21924510443743 -4.506088670109378 -1.138581191235549e-014 46.54117991044672 -5.487645416839428 -2.369843516405878e-014 47.90556895449858 -4.690130640063316 -9.546463707000447e-015 47.24636961022492 -3.447848302178812 -1.492483182944906e-014 46.69448186795432 -2.681006973882717 -6.034831347822356e-015 46.78646335145591 -4.199352266698213 -2.428711956962892e-015 47.38434144923095 -3.585810545802758 -7.748261484492767e-015 47.49092914503679 -2.7730279588597 -3.261034569201786e-014 47.56830402998783 -2.450954191672068 -2.1949465882574e-014 47.59896465323716 -2.328259758214983 -1.127626168069359e-014 47.76759711549249 -5.257593274165274 -7.633169078022823e-015 48.77939111653211 -4.506088670109378 -5.606067899203945e-016 48.4114659550184 -3.279143056464832 -4.070869745326506e-015 48.8867027185352 -4.797488349280343 -9.388985240361066e-015 49.00934443903979 -4.558280872957866 -9.388179269052821e-015 49.01836730521004 -3.984636848264145 -2.004438750372021e-014 49.04000506228915 -3.984636848264145 -2.004438750372021e-014 49.04000506228915 -3.279143056464832 -4.070869745326506e-015 48.8867027185352 -4.558280872957866 -9.388179269052821e-015 49.01836730521004 -4.797488349280343 -9.388985240361066e-015 49.00934443903979 -5.257593274165274 -7.633169078022823e-015 48.77939111653211 -3.21779551996805 -9.43006659448509e-015 48.54943779402439 -4.015310296744303 -5.88419979653805e-015 48.47278681527064 -4.506088670109378 -5.606067899203945e-016 48.4114659550184 -4.659457191583144 -7.692052336166505e-015 48.12019177225839 -5.487645416839428 -2.369843516405878e-014 47.90556895449858 -2.435617467431996 -4.142077395906743e-015 48.0895315352554 -2.328259758214983 -1.127626168069359e-014 47.76759711549249 -2.450954191672068 -2.1949465882574e-014 47.59896465323716 -2.7730279588597 -3.261034569201786e-014 47.56830402998783 -3.585810545802758 -7.748261484492767e-015 47.49092914503679 -4.199352266698213 -2.428711956962892e-015 47.38434144923095 -4.690130640063316 -9.546463707000447e-015 47.24636961022492 -2.420280743191924 -2.554736902330963e-014 47.09306765271738 -2.681006973882717 -6.034831347822356e-015 46.78646335145591 -4.076657833241114 -7.778323117724037e-015 47.15438851296962 -3.447848302178812 -1.492483182944906e-014 46.69448186795432 -4.506088670109378 -1.138581191235549e-014 46.54117991044672 -5.809399090895738 -7.362853267722715e-016 46.444740947833 -4.552099482366103 -4.30914151644195e-015 46.21924510443743 -4.276036527435096 -6.10877777144495e-015 45.9586315449268 -3.202458795727964 -9.671077104141264e-015 45.85131994292372 -5.641116421471097 -1.145337235375916e-014 45.78483931252204 -3.67790044485298 -1.677513505797029e-014 45.86665044767153 -3.47852175065897 -5.891046677391516e-015 48.39613583651688 -3.431382272077741 -9.465798388430265e-015 48.14941959053256 -3.018416825774054 -1.301838408132489e-014 48.15085239550774 -4.015310296744303 -9.467039771794764e-015 48.1355222770063 -2.573649264665676 -1.842140102314824e-014 47.32302058897861 -3.355827317201715 -1.487690359447157e-014 47.23103949172337 -2.803701407339844 -1.675733315395063e-014 46.06594314692994 -2.588985988905748 -6.10877777144495e-015 45.9586315449268 -2.727017146602961 -2.033880375993697e-014 45.74400872716701 -3.141111259231167 -6.14985909106735e-015 45.49872528615782 -3.754584705589863 -1.148577652462318e-014 45.42207392115768 -4.011079123416508 -4.39538866439025e-015 45.25370642391344 -5.472833752046441 -2.217045938074605e-014 45.12493767721109 -4.425131666173755 -1.510158997346634e-014 44.71567063527897 -4.954588553818127 -9.800340641549555e-015 44.40421185508448</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"86\" source=\"#ID7828\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7826\">\r\n\t\t\t\t\t<float_array count=\"258\" id=\"ID7829\">-1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 -1.716414166938985e-015 -1 6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016 1.716414166938985e-015 1 -6.015484340951977e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"86\" source=\"#ID7829\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7827\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7825\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7826\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"82\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7827\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 4 7 8 8 7 9 8 9 10 11 12 13 12 11 14 15 16 17 16 15 18 18 15 19 20 21 22 4 23 24 23 4 25 25 4 8 24 23 26 24 26 27 24 27 28 28 27 29 29 27 30 29 30 31 29 31 13 13 31 11 28 29 32 28 32 33 28 33 34 28 34 35 28 35 36 28 36 17 28 17 16 28 16 37 37 16 38 37 38 21 37 21 20 37 20 39 37 39 40 40 39 41 41 39 42 43 44 45 45 44 46 46 44 47 44 48 47 48 49 47 49 50 47 50 51 47 47 51 52 51 53 52 53 54 52 54 55 52 55 56 52 56 57 52 57 58 52 58 59 52 60 61 62 62 61 59 61 63 59 63 64 59 59 64 52 52 64 65 64 66 65 66 67 65 68 69 70 70 69 67 65 67 69 71 49 48 72 73 74 74 73 51 53 51 73 75 60 76 62 76 60 77 78 68 78 79 68 68 79 69 79 80 69 80 81 69 81 82 69 69 82 83 82 84 83 85 83 84</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7830\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7831\">\r\n\t\t\t\t\t<float_array count=\"648\" id=\"ID7834\">-6.930822789903502 6.516106219986369e-016 42.09591290312775 -9.160688866271585 -2.985336759250543e-015 41.15291478837618 -8.388812467297029 -1.720384910885815e-014 41.06718740612868 -9.789625665092729 -1.890618237901503e-014 41.8958828595454 -10.10409406450324 2.512201198349187e-015 43.03891140412567 -5.873065911549119 -1.030302347246005e-015 43.15321406546049 -9.903977984752004 -8.013207933875166e-015 44.5248479327104 -4.815309033194694 -2.712215316490639e-015 44.21051522779325 -4.954588553818127 -9.800340641549555e-015 44.40421185508448 -5.472833752046441 -2.217045938074605e-014 45.12493767721109 -9.560921665310772 -4.414548586647521e-015 45.03921068120998 -8.160108467515059 -1.681841602833172e-014 45.38211905146086 -5.641116421471097 -1.145337235375916e-014 45.78483931252204 -5.809399090895738 -7.362853267722715e-016 46.444740947833 -5.844477991518431 -7.239979025656032e-016 46.5822989267085 -5.844477991518431 -7.239979025656032e-016 46.5822989267085 -5.809399090895738 -7.362853267722715e-016 46.444740947833 -8.160108467515059 -1.681841602833172e-014 45.38211905146086 -5.641116421471097 -1.145337235375916e-014 45.78483931252204 -5.472833752046441 -2.217045938074605e-014 45.12493767721109 -9.560921665310772 -4.414548586647521e-015 45.03921068120998 -9.903977984752004 -8.013207933875166e-015 44.5248479327104 -4.954588553818127 -9.800340641549555e-015 44.40421185508448 -4.815309033194694 -2.712215316490639e-015 44.21051522779325 -5.873065911549119 -1.030302347246005e-015 43.15321406546049 -10.10409406450324 2.512201198349187e-015 43.03891140412567 -6.930822789903502 6.516106219986369e-016 42.09591290312775 -9.789625665092729 -1.890618237901503e-014 41.8958828595454 -9.160688866271585 -2.985336759250543e-015 41.15291478837618 -8.388812467297029 -1.720384910885815e-014 41.06718740612868 6.756048271726939 -1.058861316804128e-014 35.57948392810032 0.9138883158180704 -7.105449958042372e-015 34.80086493055653 4.808661619757316 -7.105449958042372e-015 34.80086493055653 -3.07825441665004 -7.079368527929068e-015 35.09284710291625 -5.317749354206526 -1.238670450953487e-014 35.33616570863147 -6.304357984121722 -7.002576971701065e-015 35.95253023029589 7.377098137923454 -1.234278935353829e-014 35.82779682669883 8.086177979543493 -3.298118330930274e-015 37.65131835074226 -6.486181217481033 -1.054514412935299e-014 36.06612075328434 -6.191375367036812 -1.222489729168161e-014 37.14760100060121 -5.896569516592592 -1.390465045401023e-014 38.2290812479181 7.520199709603276 -1.38754490535574e-014 38.55599155548649 8.037381985932186 -2.094111234611041e-014 39.00115112089877 -5.487645416839428 -2.369843516405878e-014 47.90556895449858 -5.844477991518431 -7.239979025656032e-016 46.5822989267085 -5.809399090895738 -7.362853267722715e-016 46.444740947833 -4.607223689411157 -7.00776938966616e-015 50.16855247761161 -4.7719337507571 -9.286343509444716e-015 50.15842082931154 -4.607223689411157 -3.963377811269336e-015 50.09007723752499 -6.179559930635662 -1.373747210970806e-014 40.10064641626958 6.874360601247901 -1.004063999181152e-014 41.71405544873255 -5.873065911549119 -1.030302347246005e-015 43.15321406546049 7.124980556770765 -1.000059675691089e-014 42.16234032666318 6.540881340540437 -4.5017166173168e-015 44.06336269877308 -4.815309033194694 -2.712215316490639e-015 44.21051522779325 6.131472078088166 -1.6656656652484e-014 47.19301875114734 -4.954588553818127 -9.800340641549555e-015 44.40421185508448 -4.425131666173755 -1.510158997346634e-014 44.71567063527897 -4.011079123416508 -4.39538866439025e-015 45.25370642391344 -3.141111259231167 -6.14985909106735e-015 45.49872528615782 -3.754584705589863 -1.148577652462318e-014 45.42207392115768 -2.20580451139999 -2.57571959616147e-015 45.73858775933709 -1.838321096243362 -7.867429614601422e-016 45.87986663977951 -1.593943720734544 -1.48530418311824e-014 47.49817244613733 -1.472459545590851 -9.523406930347102e-015 47.50449072189755 4.816803558638071 -1.287080116212596e-014 49.803046357407 -1.276041265745974 -2.19491360125918e-014 47.60265755479904 -1.223159273587029 -9.493053475229365e-015 47.84429830627464 -1.291150315000508 -1.83579746262756e-014 48.03308046926031 -1.486449913531189 -7.684028971233788e-015 48.21001351564102 -0.9672027059369839 -1.640631512817023e-014 49.99559751248981 -1.211543372566453 -2.350862585099421e-014 50.03048830600437 -0.2700932200478547 -1.105918076400511e-014 50.19766695034973 4.062222144594287 -3.763572413045631e-015 52.32690297787434 0.4710884074414992 -1.087333708633767e-014 52.27834625230193 1.963990980312573 -1.062709256927256e-014 55.03505931461271 3.80102073830146 -1.246396441553375e-014 54.3575925057476 4.004252639765724 -1.051124718403443e-014 56.33195089712422 3.147795722390455 -1.166298426355419e-014 56.52495963839033 -1.188272558800406 -5.66610281281185e-015 50.91438724963493 -0.9884421354555855 -1.091956648604348e-014 51.74946424243801 -2.456516240407197 -9.20738886526487e-015 51.04231977294208 -3.51704742799609 -9.204410271466689e-015 51.07566519472265 -2.698248237749453 -5.327816022562895e-015 54.70151515897115 -2.804154199165211 -1.608682147346367e-014 53.57233586430245 -1.983575100473502 -1.069254028659104e-014 53.22681387757341 -8.160108467515059 -1.681841602833172e-014 45.38211905146086 -9.270606000467154 -7.883545293751738e-015 45.97642398404926 -9.560921665310772 -4.414548586647521e-015 45.03921068120998 -8.557458875655144 -1.623539239026749e-014 51.90908124791808 -5.257593274165274 -7.633169078022823e-015 48.77939111653211 -4.797488349280343 -9.388985240361066e-015 49.00934443903979 -4.558280872957866 -9.388179269052821e-015 49.01836730521004 -4.425098410276959 -3.877955148517647e-015 51.04638578849929 -7.951284459101331 -1.42248762600342e-014 54.53049955660104 -3.757309770515718 -1.417808009218947e-014 55.05438366441472 -6.232204654761929 -2.303209790349525e-014 55.36522895083985 -4.569257606490865 -2.119209906660327e-014 56.07770248469964 -2.727017146602961 -2.033880375993697e-014 45.74400872716701 -2.20580451139999 -2.57571959616147e-015 45.73858775933709 -3.141111259231167 -6.14985909106735e-015 45.49872528615782 -2.727017146602961 -2.033880375993697e-014 45.74400872716701 -4.569257606490865 -2.119209906660327e-014 56.07770248469964 -3.757309770515718 -1.417808009218947e-014 55.05438366441472 -6.232204654761929 -2.303209790349525e-014 55.36522895083985 -7.951284459101331 -1.42248762600342e-014 54.53049955660104 -2.804154199165211 -1.608682147346367e-014 53.57233586430245 -1.983575100473502 -1.069254028659104e-014 53.22681387757341 -8.557458875655144 -1.623539239026749e-014 51.90908124791808 -0.9884421354555855 -1.091956648604348e-014 51.74946424243801 -3.51704742799609 -9.204410271466689e-015 51.07566519472265 -4.425098410276959 -3.877955148517647e-015 51.04638578849929 -4.7719337507571 -9.286343509444716e-015 50.15842082931154 -4.607223689411157 -3.963377811269336e-015 50.09007723752499 -4.558280872957866 -9.388179269052821e-015 49.01836730521004 -4.797488349280343 -9.388985240361066e-015 49.00934443903979 -5.257593274165274 -7.633169078022823e-015 48.77939111653211 -5.487645416839428 -2.369843516405878e-014 47.90556895449858 -5.844477991518431 -7.239979025656032e-016 46.5822989267085 -9.270606000467154 -7.883545293751738e-015 45.97642398404926 -8.160108467515059 -1.681841602833172e-014 45.38211905146086 -9.560921665310772 -4.414548586647521e-015 45.03921068120998 -2.698248237749453 -5.327816022562895e-015 54.70151515897115 -2.456516240407197 -9.20738886526487e-015 51.04231977294208 -1.188272558800406 -5.66610281281185e-015 50.91438724963493 -0.2700932200478547 -1.105918076400511e-014 50.19766695034973 -0.9672027059369839 -1.640631512817023e-014 49.99559751248981 3.147795722390455 -1.166298426355419e-014 56.52495963839033 4.004252639765724 -1.051124718403443e-014 56.33195089712422 1.963990980312573 -1.062709256927256e-014 55.03505931461271 3.80102073830146 -1.246396441553375e-014 54.3575925057476 4.062222144594287 -3.763572413045631e-015 52.32690297787434 0.4710884074414992 -1.087333708633767e-014 52.27834625230193 4.816803558638071 -1.287080116212596e-014 49.803046357407 -1.211543372566453 -2.350862585099421e-014 50.03048830600437 -1.486449913531189 -7.684028971233788e-015 48.21001351564102 -1.291150315000508 -1.83579746262756e-014 48.03308046926031 -1.223159273587029 -9.493053475229365e-015 47.84429830627464 -1.276041265745974 -2.19491360125918e-014 47.60265755479904 -1.472459545590851 -9.523406930347102e-015 47.50449072189755 6.131472078088166 -1.6656656652484e-014 47.19301875114734 -1.593943720734544 -1.48530418311824e-014 47.49817244613733 -1.838321096243362 -7.867429614601422e-016 45.87986663977951 -3.754584705589863 -1.148577652462318e-014 45.42207392115768 -4.011079123416508 -4.39538866439025e-015 45.25370642391344 -4.425131666173755 -1.510158997346634e-014 44.71567063527897 -4.954588553818127 -9.800340641549555e-015 44.40421185508448 -4.815309033194694 -2.712215316490639e-015 44.21051522779325 6.540881340540437 -4.5017166173168e-015 44.06336269877308 -5.873065911549119 -1.030302347246005e-015 43.15321406546049 7.124980556770765 -1.000059675691089e-014 42.16234032666318 6.874360601247901 -1.004063999181152e-014 41.71405544873255 -6.179559930635662 -1.373747210970806e-014 40.10064641626958 7.520199709603276 -1.38754490535574e-014 38.55599155548649 -5.896569516592592 -1.390465045401023e-014 38.2290812479181 -4.607223689411157 -7.00776938966616e-015 50.16855247761161 -5.809399090895738 -7.362853267722715e-016 46.444740947833 8.037381985932186 -2.094111234611041e-014 39.00115112089877 8.086177979543493 -3.298118330930274e-015 37.65131835074226 -6.191375367036812 -1.222489729168161e-014 37.14760100060121 -6.486181217481033 -1.054514412935299e-014 36.06612075328434 -6.304357984121722 -7.002576971701065e-015 35.95253023029589 7.377098137923454 -1.234278935353829e-014 35.82779682669883 6.756048271726939 -1.058861316804128e-014 35.57948392810032 -5.317749354206526 -1.238670450953487e-014 35.33616570863147 -3.07825441665004 -7.079368527929068e-015 35.09284710291625 0.9138883158180704 -7.105449958042372e-015 34.80086493055653 4.808661619757316 -7.105449958042372e-015 34.80086493055653 8.037381985932186 -2.094111234611041e-014 39.00115112089877 6.874360601247901 -1.004063999181152e-014 41.71405544873255 7.520199709603276 -1.38754490535574e-014 38.55599155548649 8.55456426226111 3.967647470541104e-015 39.44631068631105 9.703858636016292 -1.012263236556504e-014 40.79614905704001 10.93934973605812 -4.642201863391519e-015 42.49062734050504 7.124980556770765 -1.000059675691089e-014 42.16234032666318 7.37560051229363 -1.078769325008998e-015 42.61062520459385 11.60019364922245 -1.342393453854603e-014 43.61070628440496 8.219795056480834 -2.578052565334958e-014 44.48287415322763 11.65765855977111 -6.262067879506716e-015 44.24254548067744 10.96966568364807 -6.067656153931188e-015 46.41898893945823 8.140651777992147 6.281050374814945e-015 45.45855295975362 7.032646518688537 -2.353407929122112e-015 48.22737166424869 9.940767249253852 -1.648504178564968e-014 49.1142508848849 5.923981687057932 -1.638099770974378e-014 50.27902655754528 8.45974210751757 -1.964552677247659e-014 53.50525954686221 5.600407137980014 -1.623539239026749e-014 51.90908124791808 5.012469104050268 -1.609191784565826e-014 53.51528186772079 7.220657452014947 -7.045077832880153e-015 55.36308528347567 4.686677071788921 -1.772606208091148e-014 55.10735503684522 4.848012240682166 -1.646447975269735e-015 56.14180358766801 5.305708729663863 -1.231380250029148e-014 56.03865838394782 6.7137595617627 -1.678291144997908e-015 55.78531861611313 6.7137595617627 -1.678291144997908e-015 55.78531861611313 7.220657452014947 -7.045077832880153e-015 55.36308528347567 5.305708729663863 -1.231380250029148e-014 56.03865838394782 4.848012240682166 -1.646447975269735e-015 56.14180358766801 4.686677071788921 -1.772606208091148e-014 55.10735503684522 5.012469104050268 -1.609191784565826e-014 53.51528186772079 8.45974210751757 -1.964552677247659e-014 53.50525954686221 5.600407137980014 -1.623539239026749e-014 51.90908124791808 5.923981687057932 -1.638099770974378e-014 50.27902655754528 9.940767249253852 -1.648504178564968e-014 49.1142508848849 7.032646518688537 -2.353407929122112e-015 48.22737166424869 10.96966568364807 -6.067656153931188e-015 46.41898893945823 8.140651777992147 6.281050374814945e-015 45.45855295975362 8.219795056480834 -2.578052565334958e-014 44.48287415322763 11.65765855977111 -6.262067879506716e-015 44.24254548067744 11.60019364922245 -1.342393453854603e-014 43.61070628440496 7.37560051229363 -1.078769325008998e-015 42.61062520459385 10.93934973605812 -4.642201863391519e-015 42.49062734050504 7.124980556770765 -1.000059675691089e-014 42.16234032666318 6.874360601247901 -1.004063999181152e-014 41.71405544873255 9.703858636016292 -1.012263236556504e-014 40.79614905704001 8.55456426226111 3.967647470541104e-015 39.44631068631105 8.037381985932186 -2.094111234611041e-014 39.00115112089877 7.520199709603276 -1.38754490535574e-014 38.55599155548649</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"216\" source=\"#ID7834\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7832\">\r\n\t\t\t\t\t<float_array count=\"648\" id=\"ID7835\">1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 1.212579252340746e-016 -1 1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -1.212579252340746e-016 1 -1.434111914678687e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 -7.5183930245911e-017 -1 -1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 7.5183930245911e-017 1 1.593892509960021e-016 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 3.633928750344448e-016 -1 -4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017 -3.633928750344448e-016 1 4.929562278065228e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"216\" source=\"#ID7835\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7833\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7831\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7832\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"204\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7833\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 6 8 9 6 9 10 10 9 11 11 9 12 11 12 13 11 13 14 15 16 17 16 18 17 18 19 17 17 19 20 20 19 21 19 22 21 22 23 21 23 24 21 21 24 25 24 26 25 25 26 27 27 26 28 29 28 26 30 31 32 31 30 33 33 30 34 34 30 35 35 30 36 35 36 37 35 37 38 38 37 39 39 37 40 40 37 41 41 37 42 43 44 45 46 47 48 41 49 40 49 41 50 49 50 51 51 50 52 51 52 53 51 53 54 54 53 55 54 55 56 56 55 57 57 55 58 58 55 59 58 59 60 59 55 61 61 55 62 62 55 63 63 55 64 64 55 65 64 65 66 66 65 67 67 65 68 68 65 69 69 65 70 69 70 71 65 72 70 72 65 73 72 73 74 74 73 75 75 73 76 75 76 77 75 77 78 72 79 70 79 72 80 79 80 81 81 80 82 83 84 85 86 87 88 87 86 44 87 44 89 89 44 43 89 43 90 89 90 91 89 91 92 89 92 47 47 92 48 89 47 93 89 93 82 89 82 80 89 80 85 89 85 94 94 85 84 94 84 95 94 95 96 96 95 97 98 59 61 99 100 101 102 103 104 104 103 105 103 106 105 106 107 105 105 107 108 107 109 108 109 110 108 110 111 108 111 112 108 113 114 112 112 114 108 114 115 108 115 116 108 116 117 108 117 118 108 108 118 119 118 120 119 121 119 120 107 106 122 110 109 123 123 109 124 109 125 124 126 124 125 127 128 129 128 130 129 130 131 129 129 131 132 132 131 125 131 133 125 126 125 133 134 126 135 126 133 135 135 133 136 136 133 137 137 133 138 138 133 139 133 140 139 139 140 141 141 140 142 142 140 99 99 140 100 143 100 144 100 140 144 144 140 145 145 140 146 146 140 147 140 148 147 147 148 149 148 150 149 150 151 149 149 151 152 151 153 152 154 152 153 113 112 155 156 118 117 157 158 153 153 158 154 154 158 159 159 158 160 160 158 161 158 162 161 162 163 161 161 163 164 164 163 165 165 163 166 167 166 163 168 169 170 169 168 171 169 171 172 169 172 173 169 173 174 174 173 175 175 173 176 175 176 177 177 176 178 177 178 179 177 179 180 180 179 181 181 179 182 181 182 183 183 182 184 183 184 185 185 184 186 186 184 187 186 187 188 188 187 189 189 187 190 190 187 191 192 193 194 194 193 195 195 193 196 196 193 197 193 198 197 197 198 199 199 198 200 198 201 200 200 201 202 201 203 202 202 203 204 204 203 205 203 206 205 206 207 205 205 207 208 207 209 208 208 209 210 210 209 211 209 212 211 212 213 211 213 214 211 215 211 214</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7836\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7839\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID7842\">-1.838321096243362 -7.867429614601422e-016 45.87986663977951 -2.727017146602961 -2.033880375993697e-014 45.74400872716701 -2.20580451139999 -2.57571959616147e-015 45.73858775933709 -2.588985988905748 -6.10877777144495e-015 45.9586315449268 -1.593943720734544 -1.48530418311824e-014 47.49817244613733 -2.803701407339844 -1.675733315395063e-014 46.06594314692994 -2.681006973882717 -6.034831347822356e-015 46.78646335145591 -4.552099482366103 -4.30914151644195e-015 46.21924510443743 -4.506088670109378 -1.138581191235549e-014 46.54117991044672 -3.447848302178812 -1.492483182944906e-014 46.69448186795432 -2.420280743191924 -2.554736902330963e-014 47.09306765271738 -2.573649264665676 -1.842140102314824e-014 47.32302058897861 -4.199352266698213 -2.428711956962892e-015 47.38434144923095 -3.585810545802758 -7.748261484492767e-015 47.49092914503679 -2.7730279588597 -3.261034569201786e-014 47.56830402998783 -2.450954191672068 -2.1949465882574e-014 47.59896465323716 -1.486449913531189 -7.684028971233788e-015 48.21001351564102 -2.328259758214983 -1.127626168069359e-014 47.76759711549249 -2.435617467431996 -4.142077395906743e-015 48.0895315352554 -3.018416825774054 -1.301838408132489e-014 48.15085239550774 -3.21779551996805 -9.43006659448509e-015 48.54943779402439 -3.47852175065897 -5.891046677391516e-015 48.39613583651688 -1.211543372566453 -2.350862585099421e-014 50.03048830600437 -3.279143056464832 -4.070869745326506e-015 48.8867027185352 -3.984636848264145 -2.004438750372021e-014 49.04000506228915 -4.607223689411157 -3.963377811269336e-015 50.09007723752499 -4.558280872957866 -9.388179269052821e-015 49.01836730521004 -2.514692955054031 -9.286343509444716e-015 50.15842082931154 -4.607223689411157 -7.00776938966616e-015 50.16855247761161 -4.01564157663897 -1.283490167520917e-014 50.20494188733105 -4.015310296744303 -9.467039771794764e-015 48.1355222770063 -4.506088670109378 -5.606067899203945e-016 48.4114659550184 -4.659457191583144 -7.692052336166505e-015 48.12019177225839 -3.431382272077741 -9.465798388430265e-015 48.14941959053256 -4.015310296744303 -5.88419979653805e-015 48.47278681527064 -3.355827317201715 -1.487690359447157e-014 47.23103949172337 -4.690130640063316 -9.546463707000447e-015 47.24636961022492 -4.076657833241114 -7.778323117724037e-015 47.15438851296962 -3.67790044485298 -1.677513505797029e-014 45.86665044767153 -3.202458795727964 -9.671077104141264e-015 45.85131994292372 -4.276036527435096 -6.10877777144495e-015 45.9586315449268 -4.552099482366103 -4.30914151644195e-015 46.21924510443743 -2.803701407339844 -1.675733315395063e-014 46.06594314692994 -4.276036527435096 -6.10877777144495e-015 45.9586315449268 -3.67790044485298 -1.677513505797029e-014 45.86665044767153 -3.202458795727964 -9.671077104141264e-015 45.85131994292372 -4.199352266698213 -2.428711956962892e-015 47.38434144923095 -2.573649264665676 -1.842140102314824e-014 47.32302058897861 -4.690130640063316 -9.546463707000447e-015 47.24636961022492 -3.355827317201715 -1.487690359447157e-014 47.23103949172337 -4.076657833241114 -7.778323117724037e-015 47.15438851296962 -4.015310296744303 -5.88419979653805e-015 48.47278681527064 -3.47852175065897 -5.891046677391516e-015 48.39613583651688 -4.506088670109378 -5.606067899203945e-016 48.4114659550184 -1.486449913531189 -7.684028971233788e-015 48.21001351564102 -3.018416825774054 -1.301838408132489e-014 48.15085239550774 -3.431382272077741 -9.465798388430265e-015 48.14941959053256 -4.015310296744303 -9.467039771794764e-015 48.1355222770063 -4.659457191583144 -7.692052336166505e-015 48.12019177225839 -4.01564157663897 -1.283490167520917e-014 50.20494188733105 -2.514692955054031 -9.286343509444716e-015 50.15842082931154 -4.607223689411157 -7.00776938966616e-015 50.16855247761161 -4.607223689411157 -3.963377811269336e-015 50.09007723752499 -1.211543372566453 -2.350862585099421e-014 50.03048830600437 -3.984636848264145 -2.004438750372021e-014 49.04000506228915 -4.558280872957866 -9.388179269052821e-015 49.01836730521004 -3.279143056464832 -4.070869745326506e-015 48.8867027185352 -3.21779551996805 -9.43006659448509e-015 48.54943779402439 -2.435617467431996 -4.142077395906743e-015 48.0895315352554 -2.328259758214983 -1.127626168069359e-014 47.76759711549249 -2.450954191672068 -2.1949465882574e-014 47.59896465323716 -1.593943720734544 -1.48530418311824e-014 47.49817244613733 -2.7730279588597 -3.261034569201786e-014 47.56830402998783 -3.585810545802758 -7.748261484492767e-015 47.49092914503679 -2.420280743191924 -2.554736902330963e-014 47.09306765271738 -2.681006973882717 -6.034831347822356e-015 46.78646335145591 -3.447848302178812 -1.492483182944906e-014 46.69448186795432 -4.506088670109378 -1.138581191235549e-014 46.54117991044672 -2.588985988905748 -6.10877777144495e-015 45.9586315449268 -1.838321096243362 -7.867429614601422e-016 45.87986663977951 -2.727017146602961 -2.033880375993697e-014 45.74400872716701 -2.20580451139999 -2.57571959616147e-015 45.73858775933709</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID7842\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7840\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID7843\">-2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 -2.436355573798555e-015 -1 -2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016 2.436355573798555e-015 1 2.07486277259268e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID7843\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7841\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7839\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7840\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"78\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7841\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 8 6 9 6 4 10 10 4 11 11 4 12 12 4 13 13 4 14 14 4 15 15 4 16 15 16 17 17 16 18 18 16 19 16 20 21 20 16 22 20 22 23 23 22 24 24 25 26 25 24 22 25 22 27 25 27 28 28 27 29 30 31 32 31 30 33 31 33 19 31 19 16 31 16 21 31 21 34 35 36 37 36 35 11 36 11 12 5 38 39 38 5 40 40 5 7 41 42 43 43 42 44 45 44 42 46 47 48 47 49 48 50 48 49 51 52 53 52 54 53 54 55 53 55 56 53 56 57 53 58 53 57 59 60 61 61 60 62 60 63 62 63 64 62 65 62 64 64 63 66 66 63 67 63 54 67 52 67 54 55 54 68 68 54 69 69 54 70 54 71 70 70 71 72 72 71 73 73 71 46 46 71 47 47 71 74 74 71 75 76 75 77 77 75 41 41 75 42 75 71 42 42 71 78 71 79 78 78 79 80 81 80 79</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7844\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7847\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID7850\">-1.188272558800406 -5.66610281281185e-015 50.91438724963493 -1.211543372566453 -2.350862585099421e-014 50.03048830600437 -0.9672027059369839 -1.640631512817023e-014 49.99559751248981 -2.514692955054031 -9.286343509444716e-015 50.15842082931154 -4.01564157663897 -1.283490167520917e-014 50.20494188733105 -4.607223689411157 -7.00776938966616e-015 50.16855247761161 -4.425098410276959 -3.877955148517647e-015 51.04638578849929 -4.7719337507571 -9.286343509444716e-015 50.15842082931154 -2.456516240407197 -9.20738886526487e-015 51.04231977294208 -3.51704742799609 -9.204410271466689e-015 51.07566519472265 -3.51704742799609 -9.204410271466689e-015 51.07566519472265 -2.456516240407197 -9.20738886526487e-015 51.04231977294208 -4.425098410276959 -3.877955148517647e-015 51.04638578849929 -1.188272558800406 -5.66610281281185e-015 50.91438724963493 -4.01564157663897 -1.283490167520917e-014 50.20494188733105 -4.607223689411157 -7.00776938966616e-015 50.16855247761161 -4.7719337507571 -9.286343509444716e-015 50.15842082931154 -2.514692955054031 -9.286343509444716e-015 50.15842082931154 -1.211543372566453 -2.350862585099421e-014 50.03048830600437 -0.9672027059369839 -1.640631512817023e-014 49.99559751248981</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID7850\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7848\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID7851\">-1.805126738104956e-015 -1 6.869667024031631e-015 -1.805126738104956e-015 -1 6.869667024031631e-015 -1.805126738104956e-015 -1 6.869667024031631e-015 -1.805126738104956e-015 -1 6.869667024031631e-015 -1.805126738104956e-015 -1 6.869667024031631e-015 -1.805126738104956e-015 -1 6.869667024031631e-015 -1.805126738104956e-015 -1 6.869667024031631e-015 -1.805126738104956e-015 -1 6.869667024031631e-015 -1.805126738104956e-015 -1 6.869667024031631e-015 -1.805126738104956e-015 -1 6.869667024031631e-015 1.805126738104956e-015 1 -6.869667024031631e-015 1.805126738104956e-015 1 -6.869667024031631e-015 1.805126738104956e-015 1 -6.869667024031631e-015 1.805126738104956e-015 1 -6.869667024031631e-015 1.805126738104956e-015 1 -6.869667024031631e-015 1.805126738104956e-015 1 -6.869667024031631e-015 1.805126738104956e-015 1 -6.869667024031631e-015 1.805126738104956e-015 1 -6.869667024031631e-015 1.805126738104956e-015 1 -6.869667024031631e-015 1.805126738104956e-015 1 -6.869667024031631e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID7851\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7849\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7847\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7848\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7849\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 6 5 4 6 4 0 6 0 8 6 8 9 10 11 12 11 13 12 13 14 12 14 15 12 16 12 15 14 13 17 17 13 18 19 18 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7852\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7853\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID7856\">-1.472459545590851 -9.523406930347102e-015 47.50449072189755 -1.486449913531189 -7.684028971233788e-015 48.21001351564102 -1.593943720734544 -1.48530418311824e-014 47.49817244613733 -1.276041265745974 -2.19491360125918e-014 47.60265755479904 -1.223159273587029 -9.493053475229365e-015 47.84429830627464 -1.291150315000508 -1.83579746262756e-014 48.03308046926031 -1.291150315000508 -1.83579746262756e-014 48.03308046926031 -1.223159273587029 -9.493053475229365e-015 47.84429830627464 -1.486449913531189 -7.684028971233788e-015 48.21001351564102 -1.276041265745974 -2.19491360125918e-014 47.60265755479904 -1.472459545590851 -9.523406930347102e-015 47.50449072189755 -1.593943720734544 -1.48530418311824e-014 47.49817244613733</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID7856\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7854\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID7857\">-1.64726911713273e-014 -1 7.2954702929358e-015 -1.64726911713273e-014 -1 7.2954702929358e-015 -1.64726911713273e-014 -1 7.2954702929358e-015 -1.64726911713273e-014 -1 7.2954702929358e-015 -1.64726911713273e-014 -1 7.2954702929358e-015 -1.64726911713273e-014 -1 7.2954702929358e-015 1.64726911713273e-014 1 -7.2954702929358e-015 1.64726911713273e-014 1 -7.2954702929358e-015 1.64726911713273e-014 1 -7.2954702929358e-015 1.64726911713273e-014 1 -7.2954702929358e-015 1.64726911713273e-014 1 -7.2954702929358e-015 1.64726911713273e-014 1 -7.2954702929358e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID7857\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7855\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7853\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7854\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7855\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 6 7 8 7 9 8 9 10 8 11 8 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7858\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7861\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID7864\">7.37560051229363 -1.078769325008998e-015 42.61062520459385 6.540881340540437 -4.5017166173168e-015 44.06336269877308 7.124980556770765 -1.000059675691089e-014 42.16234032666318 8.219795056480834 -2.578052565334958e-014 44.48287415322763 6.131472078088166 -1.6656656652484e-014 47.19301875114734 8.140651777992147 6.281050374814945e-015 45.45855295975362 7.032646518688537 -2.353407929122112e-015 48.22737166424869 4.816803558638071 -1.287080116212596e-014 49.803046357407 5.923981687057932 -1.638099770974378e-014 50.27902655754528 4.062222144594287 -3.763572413045631e-015 52.32690297787434 5.600407137980014 -1.623539239026749e-014 51.90908124791808 5.012469104050268 -1.609191784565826e-014 53.51528186772079 3.80102073830146 -1.246396441553375e-014 54.3575925057476 4.686677071788921 -1.772606208091148e-014 55.10735503684522 4.004252639765724 -1.051124718403443e-014 56.33195089712422 4.848012240682166 -1.646447975269735e-015 56.14180358766801 4.848012240682166 -1.646447975269735e-015 56.14180358766801 4.686677071788921 -1.772606208091148e-014 55.10735503684522 4.004252639765724 -1.051124718403443e-014 56.33195089712422 3.80102073830146 -1.246396441553375e-014 54.3575925057476 5.012469104050268 -1.609191784565826e-014 53.51528186772079 4.062222144594287 -3.763572413045631e-015 52.32690297787434 5.600407137980014 -1.623539239026749e-014 51.90908124791808 5.923981687057932 -1.638099770974378e-014 50.27902655754528 4.816803558638071 -1.287080116212596e-014 49.803046357407 7.032646518688537 -2.353407929122112e-015 48.22737166424869 6.131472078088166 -1.6656656652484e-014 47.19301875114734 8.140651777992147 6.281050374814945e-015 45.45855295975362 8.219795056480834 -2.578052565334958e-014 44.48287415322763 6.540881340540437 -4.5017166173168e-015 44.06336269877308 7.37560051229363 -1.078769325008998e-015 42.61062520459385 7.124980556770765 -1.000059675691089e-014 42.16234032666318</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID7864\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7862\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID7865\">2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 2.996258631585134e-016 -1 -2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016 -2.996258631585134e-016 1 2.126224249420003e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID7865\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7863\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7861\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7862\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7863\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 7 6 8 7 8 9 9 8 10 9 10 11 9 11 12 12 11 13 12 13 14 14 13 15 16 17 18 18 17 19 17 20 19 19 20 21 20 22 21 22 23 21 21 23 24 23 25 24 24 25 26 25 27 26 27 28 26 26 28 29 28 30 29 31 29 30</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7866\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7867\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID7870\">10.42867346430346 -3.528982224862291e-015 35.06679208140565 7.377098137923454 -1.234278935353829e-014 35.82779682669883 7.418072684827592 -1.420727823903824e-014 34.84115667073691 10.51585443722721 -1.390465045401023e-014 38.2290812479181 8.086177979543493 -3.298118330930274e-015 37.65131835074226 8.037381985932186 -2.094111234611041e-014 39.00115112089877 8.55456426226111 3.967647470541104e-015 39.44631068631105 9.703858636016292 -1.012263236556504e-014 40.79614905704001 10.93934973605812 -4.642201863391519e-015 42.49062734050504 10.93934973605812 -4.642201863391519e-015 42.49062734050504 10.51585443722721 -1.390465045401023e-014 38.2290812479181 9.703858636016292 -1.012263236556504e-014 40.79614905704001 8.55456426226111 3.967647470541104e-015 39.44631068631105 8.037381985932186 -2.094111234611041e-014 39.00115112089877 8.086177979543493 -3.298118330930274e-015 37.65131835074226 7.377098137923454 -1.234278935353829e-014 35.82779682669883 10.42867346430346 -3.528982224862291e-015 35.06679208140565 7.418072684827592 -1.420727823903824e-014 34.84115667073691</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID7870\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7868\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID7871\">1.251797023186524e-015 -1 1.819174480748517e-016 1.251797023186524e-015 -1 1.819174480748517e-016 1.251797023186524e-015 -1 1.819174480748517e-016 1.251797023186524e-015 -1 1.819174480748517e-016 1.251797023186524e-015 -1 1.819174480748517e-016 1.251797023186524e-015 -1 1.819174480748517e-016 1.251797023186524e-015 -1 1.819174480748517e-016 1.251797023186524e-015 -1 1.819174480748517e-016 1.251797023186524e-015 -1 1.819174480748517e-016 -1.251797023186524e-015 1 -1.819174480748517e-016 -1.251797023186524e-015 1 -1.819174480748517e-016 -1.251797023186524e-015 1 -1.819174480748517e-016 -1.251797023186524e-015 1 -1.819174480748517e-016 -1.251797023186524e-015 1 -1.819174480748517e-016 -1.251797023186524e-015 1 -1.819174480748517e-016 -1.251797023186524e-015 1 -1.819174480748517e-016 -1.251797023186524e-015 1 -1.819174480748517e-016 -1.251797023186524e-015 1 -1.819174480748517e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID7871\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7869\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7867\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7868\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7869\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 7 3 8 9 10 11 11 10 12 12 10 13 13 10 14 14 10 15 10 16 15 17 15 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7872\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7875\">\r\n\t\t\t\t\t<float_array count=\"360\" id=\"ID7878\">6.468373252994368 -8.74957545861952e-015 56.16755072948918 5.305708729663863 -1.231380250029148e-014 56.03865838394782 6.7137595617627 -1.678291144997908e-015 55.78531861611313 4.848012240682166 -1.646447975269735e-015 56.14180358766801 4.004252639765724 -1.051124718403443e-014 56.33195089712422 6.035636550015866 -1.579392653116648e-014 56.85130105729986 3.147795722390455 -1.166298426355419e-014 56.52495963839033 2.702796549867571 -1.226140554657788e-014 56.62524341030068 2.079100112933901 -1.400084758540831e-014 57.03850539845762 5.71562347141888 3.139265591779034e-016 58.20188565062065 1.570185124635245 -1.751290490103145e-014 57.49365426066365 1.355905230541509 -2.101778753591605e-014 58.02912382840306 1.329120163837771 -2.273674713641789e-014 58.67168715519181 5.46470709073914 -8.473264824177186e-015 59.26085423854094 1.433521935461016 -2.620077519632218e-014 59.66452457054395 4.118460424181336 -1.009521949932211e-014 60.98938979585002 1.964297559595295 -6.574404223650375e-015 60.63228648518474 1.593054309494065 -1.545973987933681e-014 60.59252782864481 2.269247737627978 -2.076986918104509e-014 60.80457515559668 2.468127593370426 -8.303407970067022e-015 61.16240538193394 3.631624153656574 -1.134402339465171e-015 61.87416551874482 2.570588371787835 -2.949467408108516e-015 61.44082605792924 1.8925575553573 -6.449024683551189e-015 62.03591313942071 3.388205698626081 -4.570542395465918e-015 63.17920973898311 1.313751462773865 -1.17633295092347e-014 62.20121538545745 1.049154117791389 -1.520530064941323e-014 63.440980492624 2.680601436454779 -2.577735414235735e-014 64.40473239743152 0.7349447306538082 8.143953528233861e-016 63.80464458416277 0.4703473856714595 -9.749245368773319e-015 64.86257764555991 2.045777704368604 -9.684350129523506e-015 65.58908124791806 -0.07538443849962562 -9.684350129523506e-015 65.58908124791806 1.079741868383792 -1.669348823379526e-014 66.66704151466099 -0.7203403469811178 -3.27473840006734e-014 65.92051032071079 -1.447982566030291 -1.319564620635652e-014 66.05275219478939 -1.741472250406119 -2.119998099603601e-014 55.98946411478828 -2.698248237749453 -5.327816022562895e-015 54.70151515897115 -2.274623113013789 -1.780013802361296e-014 54.27807326143599 -3.757309770515718 -1.417808009218947e-014 55.05438366441472 -4.569257606490865 -2.119209906660327e-014 56.07770248469964 -2.239321339054058 -6.84255577715207e-015 57.63032406314996 -4.922278543770659 -1.400471935712716e-014 56.9951608306008 -4.781070168858733 -1.560456346252828e-014 58.97122469283259 -2.212733889121495 -3.235151373481446e-015 58.24258790704715 -2.96829635212012 -2.095678401525936e-014 58.71205955721668 -3.397129222382972 -1.734754823113421e-014 59.34482574478169 -3.764700254036754 -1.549461308108563e-014 60.20212158329987 -4.216236669211085 -1.174610454129313e-014 62.39404927288454 -3.887223931254724 -1.00579682389608e-014 61.40641845862588 -3.839265090890933 -1.176789562604214e-014 62.15009760936574 -3.647446996920664 -1.703481392667293e-014 62.84589302488605 -4.251539082707424 -8.956907072051613e-016 64.54654738783817 -3.76320821543743 -1.519644125460386e-014 63.54016160849819 -3.564760686352969 -1.332410756909887e-014 64.61462446962806 -3.969122332883543 -2.389520484472549e-014 65.58908124791809 -3.085178038543376 -1.148573489702978e-014 65.3088930532402 -2.473297038010855 -9.666557614882634e-015 65.78826883287856 -3.08630873903364 -1.313418988644804e-014 66.74075702098817 -0.5211183392237757 -9.541237072552463e-015 67.1912350058186 -1.845967394354958 -1.664912884631908e-014 67.16364581371876 -2.804154199165211 -1.608682147346367e-014 53.57233586430245 -2.698248237749453 -5.327816022562895e-015 54.70151515897115 -2.804154199165211 -1.608682147346367e-014 53.57233586430245 -3.757309770515718 -1.417808009218947e-014 55.05438366441472 -1.845967394354958 -1.664912884631908e-014 67.16364581371876 -0.5211183392237757 -9.541237072552463e-015 67.1912350058186 -3.08630873903364 -1.313418988644804e-014 66.74075702098817 1.079741868383792 -1.669348823379526e-014 66.66704151466099 -1.447982566030291 -1.319564620635652e-014 66.05275219478939 -2.473297038010855 -9.666557614882634e-015 65.78826883287856 -3.969122332883543 -2.389520484472549e-014 65.58908124791809 -3.085178038543376 -1.148573489702978e-014 65.3088930532402 -3.564760686352969 -1.332410756909887e-014 64.61462446962806 -4.251539082707424 -8.956907072051613e-016 64.54654738783817 -3.76320821543743 -1.519644125460386e-014 63.54016160849819 -3.647446996920664 -1.703481392667293e-014 62.84589302488605 -4.216236669211085 -1.174610454129313e-014 62.39404927288454 -3.839265090890933 -1.176789562604214e-014 62.15009760936574 -3.887223931254724 -1.00579682389608e-014 61.40641845862588 -3.764700254036754 -1.549461308108563e-014 60.20212158329987 -4.781070168858733 -1.560456346252828e-014 58.97122469283259 -3.397129222382972 -1.734754823113421e-014 59.34482574478169 -2.96829635212012 -2.095678401525936e-014 58.71205955721668 -2.212733889121495 -3.235151373481446e-015 58.24258790704715 -2.239321339054058 -6.84255577715207e-015 57.63032406314996 -4.922278543770659 -1.400471935712716e-014 56.9951608306008 -4.569257606490865 -2.119209906660327e-014 56.07770248469964 -1.741472250406119 -2.119998099603601e-014 55.98946411478828 -2.274623113013789 -1.780013802361296e-014 54.27807326143599 -0.7203403469811178 -3.27473840006734e-014 65.92051032071079 -0.07538443849962562 -9.684350129523506e-015 65.58908124791806 2.045777704368604 -9.684350129523506e-015 65.58908124791806 0.4703473856714595 -9.749245368773319e-015 64.86257764555991 2.680601436454779 -2.577735414235735e-014 64.40473239743152 0.7349447306538082 8.143953528233861e-016 63.80464458416277 1.049154117791389 -1.520530064941323e-014 63.440980492624 3.388205698626081 -4.570542395465918e-015 63.17920973898311 1.313751462773865 -1.17633295092347e-014 62.20121538545745 1.8925575553573 -6.449024683551189e-015 62.03591313942071 3.631624153656574 -1.134402339465171e-015 61.87416551874482 2.570588371787835 -2.949467408108516e-015 61.44082605792924 2.468127593370426 -8.303407970067022e-015 61.16240538193394 4.118460424181336 -1.009521949932211e-014 60.98938979585002 2.269247737627978 -2.076986918104509e-014 60.80457515559668 1.964297559595295 -6.574404223650375e-015 60.63228648518474 1.593054309494065 -1.545973987933681e-014 60.59252782864481 1.433521935461016 -2.620077519632218e-014 59.66452457054395 5.46470709073914 -8.473264824177186e-015 59.26085423854094 1.329120163837771 -2.273674713641789e-014 58.67168715519181 5.71562347141888 3.139265591779034e-016 58.20188565062065 1.355905230541509 -2.101778753591605e-014 58.02912382840306 1.570185124635245 -1.751290490103145e-014 57.49365426066365 2.079100112933901 -1.400084758540831e-014 57.03850539845762 6.035636550015866 -1.579392653116648e-014 56.85130105729986 2.702796549867571 -1.226140554657788e-014 56.62524341030068 3.147795722390455 -1.166298426355419e-014 56.52495963839033 4.004252639765724 -1.051124718403443e-014 56.33195089712422 6.468373252994368 -8.74957545861952e-015 56.16755072948918 4.848012240682166 -1.646447975269735e-015 56.14180358766801 5.305708729663863 -1.231380250029148e-014 56.03865838394782 6.7137595617627 -1.678291144997908e-015 55.78531861611313</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"120\" source=\"#ID7878\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7876\">\r\n\t\t\t\t\t<float_array count=\"360\" id=\"ID7879\">6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 6.058799577324411e-016 -1 4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017 -6.058799577324411e-016 1 -4.929709325576681e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"120\" source=\"#ID7879\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7877\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7875\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7876\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"116\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7877\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 7 5 8 8 5 9 8 9 10 10 9 11 11 9 12 12 9 13 12 13 14 14 13 15 14 15 16 14 16 17 16 15 18 18 15 19 19 15 20 19 20 21 21 20 22 22 20 23 22 23 24 24 23 25 25 23 26 25 26 27 27 26 28 28 26 29 28 29 30 30 29 31 30 31 32 32 31 33 34 35 36 35 34 37 37 34 38 38 34 39 38 39 40 40 39 41 41 39 42 41 42 43 41 43 44 41 44 45 41 45 46 46 45 47 46 47 48 46 48 49 46 49 50 50 49 51 50 51 52 50 52 53 53 52 54 53 54 55 53 55 56 56 55 33 56 33 31 56 31 57 56 57 58 37 59 35 60 61 62 63 64 65 64 66 65 66 67 65 67 68 65 65 68 69 68 70 69 70 71 69 69 71 72 71 73 72 73 74 72 72 74 75 74 76 75 76 77 75 77 78 75 75 78 79 78 80 79 80 81 79 81 82 79 82 83 79 79 83 84 84 83 85 83 86 85 85 86 62 62 86 60 87 60 86 67 66 88 88 66 89 66 90 89 89 90 91 90 92 91 91 92 93 93 92 94 92 95 94 94 95 96 96 95 97 95 98 97 97 98 99 99 98 100 98 101 100 100 101 102 102 101 103 104 103 105 103 101 105 101 106 105 105 106 107 106 108 107 107 108 109 109 108 110 110 108 111 108 112 111 111 112 113 113 112 114 114 112 115 112 116 115 115 116 117 117 116 118 119 118 116</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7880\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7881\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID7884\">-2.698248237749453 -5.327816022562895e-015 54.70151515897115 -1.983575100473502 -1.069254028659104e-014 53.22681387757341 -2.274623113013789 -1.780013802361296e-014 54.27807326143599 0.4710884074414992 -1.087333708633767e-014 52.27834625230193 -0.9884421354555855 -1.091956648604348e-014 51.74946424243801 -0.2700932200478547 -1.105918076400511e-014 50.19766695034973 1.963990980312573 -1.062709256927256e-014 55.03505931461271 -1.741472250406119 -2.119998099603601e-014 55.98946411478828 3.147795722390455 -1.166298426355419e-014 56.52495963839033 -2.239321339054058 -6.84255577715207e-015 57.63032406314996 2.702796549867571 -1.226140554657788e-014 56.62524341030068 2.079100112933901 -1.400084758540831e-014 57.03850539845762 1.570185124635245 -1.751290490103145e-014 57.49365426066365 1.355905230541509 -2.101778753591605e-014 58.02912382840306 -2.212733889121495 -3.235151373481446e-015 58.24258790704715 1.329120163837771 -2.273674713641789e-014 58.67168715519181 -2.96829635212012 -2.095678401525936e-014 58.71205955721668 1.433521935461016 -2.620077519632218e-014 59.66452457054395 -3.397129222382972 -1.734754823113421e-014 59.34482574478169 -3.764700254036754 -1.549461308108563e-014 60.20212158329987 1.593054309494065 -1.545973987933681e-014 60.59252782864481 -3.887223931254724 -1.00579682389608e-014 61.40641845862588 1.964297559595295 -6.574404223650375e-015 60.63228648518474 2.269247737627978 -2.076986918104509e-014 60.80457515559668 2.468127593370426 -8.303407970067022e-015 61.16240538193394 2.570588371787835 -2.949467408108516e-015 61.44082605792924 -3.839265090890933 -1.176789562604214e-014 62.15009760936574 1.8925575553573 -6.449024683551189e-015 62.03591313942071 1.313751462773865 -1.17633295092347e-014 62.20121538545745 -3.647446996920664 -1.703481392667293e-014 62.84589302488605 1.049154117791389 -1.520530064941323e-014 63.440980492624 -3.76320821543743 -1.519644125460386e-014 63.54016160849819 0.7349447306538082 8.143953528233861e-016 63.80464458416277 -3.564760686352969 -1.332410756909887e-014 64.61462446962806 0.4703473856714595 -9.749245368773319e-015 64.86257764555991 -3.085178038543376 -1.148573489702978e-014 65.3088930532402 -0.07538443849962562 -9.684350129523506e-015 65.58908124791806 -2.473297038010855 -9.666557614882634e-015 65.78826883287856 -0.7203403469811178 -3.27473840006734e-014 65.92051032071079 -1.447982566030291 -1.319564620635652e-014 66.05275219478939 -1.447982566030291 -1.319564620635652e-014 66.05275219478939 -0.7203403469811178 -3.27473840006734e-014 65.92051032071079 -2.473297038010855 -9.666557614882634e-015 65.78826883287856 -0.07538443849962562 -9.684350129523506e-015 65.58908124791806 -3.085178038543376 -1.148573489702978e-014 65.3088930532402 0.4703473856714595 -9.749245368773319e-015 64.86257764555991 -3.564760686352969 -1.332410756909887e-014 64.61462446962806 0.7349447306538082 8.143953528233861e-016 63.80464458416277 -3.76320821543743 -1.519644125460386e-014 63.54016160849819 1.049154117791389 -1.520530064941323e-014 63.440980492624 -3.647446996920664 -1.703481392667293e-014 62.84589302488605 1.313751462773865 -1.17633295092347e-014 62.20121538545745 -3.839265090890933 -1.176789562604214e-014 62.15009760936574 1.8925575553573 -6.449024683551189e-015 62.03591313942071 2.570588371787835 -2.949467408108516e-015 61.44082605792924 -3.887223931254724 -1.00579682389608e-014 61.40641845862588 2.468127593370426 -8.303407970067022e-015 61.16240538193394 2.269247737627978 -2.076986918104509e-014 60.80457515559668 1.964297559595295 -6.574404223650375e-015 60.63228648518474 1.593054309494065 -1.545973987933681e-014 60.59252782864481 -3.764700254036754 -1.549461308108563e-014 60.20212158329987 1.433521935461016 -2.620077519632218e-014 59.66452457054395 -3.397129222382972 -1.734754823113421e-014 59.34482574478169 -2.96829635212012 -2.095678401525936e-014 58.71205955721668 1.329120163837771 -2.273674713641789e-014 58.67168715519181 -2.212733889121495 -3.235151373481446e-015 58.24258790704715 1.355905230541509 -2.101778753591605e-014 58.02912382840306 -2.239321339054058 -6.84255577715207e-015 57.63032406314996 1.570185124635245 -1.751290490103145e-014 57.49365426066365 2.079100112933901 -1.400084758540831e-014 57.03850539845762 2.702796549867571 -1.226140554657788e-014 56.62524341030068 3.147795722390455 -1.166298426355419e-014 56.52495963839033 -1.741472250406119 -2.119998099603601e-014 55.98946411478828 1.963990980312573 -1.062709256927256e-014 55.03505931461271 -2.274623113013789 -1.780013802361296e-014 54.27807326143599 -1.983575100473502 -1.069254028659104e-014 53.22681387757341 0.4710884074414992 -1.087333708633767e-014 52.27834625230193 -0.9884421354555855 -1.091956648604348e-014 51.74946424243801 -0.2700932200478547 -1.105918076400511e-014 50.19766695034973 -2.698248237749453 -5.327816022562895e-015 54.70151515897115</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID7884\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7882\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID7885\">1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 1.187778716963469e-016 -1 -4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017 -1.187778716963469e-016 1 4.020608136245246e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID7885\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7883\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7881\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7882\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"76\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7883\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 1 1 3 6 1 6 2 2 6 7 7 6 8 7 8 9 9 8 10 9 10 11 9 11 12 9 12 13 9 13 14 14 13 15 14 15 16 16 15 17 16 17 18 18 17 19 19 17 20 19 20 21 21 20 22 21 22 23 21 23 24 21 24 25 21 25 26 26 25 27 26 27 28 26 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 37 38 39 40 41 42 41 43 42 42 43 44 43 45 44 44 45 46 45 47 46 46 47 48 47 49 48 48 49 50 49 51 50 50 51 52 51 53 52 53 54 52 52 54 55 54 56 55 56 57 55 57 58 55 58 59 55 55 59 60 59 61 60 60 61 62 62 61 63 61 64 63 63 64 65 64 66 65 65 66 67 66 68 67 68 69 67 69 70 67 70 71 67 67 71 72 71 73 72 72 73 74 74 73 75 73 76 75 75 76 77 78 77 76 74 75 79</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7886\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7887\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID7889\">7.37560051229363 -1.395138735916755e-014 37.70586058716741 7.520199709603276 -1.38754490535574e-014 38.55599155548649 6.927122360549234 -1.399378608862164e-014 37.23120589693299</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID7889\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7888\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7887\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7888\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7890\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7891\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID7893\">0.8285671149675835 -6.675863825584346e-015 59.49644405435406 1.236091908910439 -1.727487664234508e-014 60.15838574786834 -0.06289237250643964 -2.095266921413412e-014 58.75812484451724 -1.056232578813948 -1.566453362518504e-014 58.29985742910438 -1.640956941949881 -2.278601638033466e-014 58.12011690743896 -2.212733889121495 -3.235151373481446e-015 58.24258790704715</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID7893\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7892\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7891\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7892\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7894\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7895\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID7897\">1.297297334904613 -5.930986868267393e-014 60.79112761334183 1.593054309494065 -1.545973987933681e-014 60.59252782864481</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID7897\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7896\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7895\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7896\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7900\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7901\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID7904\">1.70011402508552 7.609471940084283e-015 65.47462941847201 0.4452679589509686 2.282841582025285e-014 65.51510832383119 1.092930444697835 -8.696539360096323e-015 65.37343215507411 2.206100342075261 1.956721356021673e-014 65.85917901938424 0.1011972633979446 1.630601130018061e-014 65.91989737742298 2.287058152793615 7.609471940084283e-015 66.22348916761682 -0.08095781071836267 -1.08706742001204e-015 66.30444697833522 2.263445458000761 9.783606780108364e-015 66.36516533637395 -0.1011972633979446 -4.543125047755293e-032 66.56755986316989 2.206100342075261 -2.065428098022877e-014 66.70923603192703 0.2483932828858693 4.348269680048162e-015 66.9521094640821 1.679874572405921 3.043788776033713e-014 66.99258836944127 0.3035917901938426 2.174134840024081e-015 67.01282782212086 1.052451539338654 6.522404520072242e-015 67.09378563283917 1.052451539338654 6.522404520072242e-015 67.09378563283917 1.679874572405921 3.043788776033713e-014 66.99258836944127 0.3035917901938426 2.174134840024081e-015 67.01282782212086 0.2483932828858693 4.348269680048162e-015 66.9521094640821 2.206100342075261 -2.065428098022877e-014 66.70923603192703 -0.1011972633979446 -4.543125047755293e-032 66.56755986316989 2.263445458000761 9.783606780108364e-015 66.36516533637395 -0.08095781071836267 -1.08706742001204e-015 66.30444697833522 2.287058152793615 7.609471940084283e-015 66.22348916761682 0.1011972633979446 1.630601130018061e-014 65.91989737742298 2.206100342075261 1.956721356021673e-014 65.85917901938424 0.4452679589509686 2.282841582025285e-014 65.51510832383119 1.70011402508552 7.609471940084283e-015 65.47462941847201 1.092930444697835 -8.696539360096323e-015 65.37343215507411</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID7904\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7902\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID7905\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID7905\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7903\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7901\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7902\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7903\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 12 11 13 14 15 16 16 15 17 15 18 17 17 18 19 18 20 19 19 20 21 20 22 21 21 22 23 22 24 23 23 24 25 24 26 25 27 25 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7906\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7907\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID7910\">-0.9310148232611184 -4.543125047755293e-032 65.67702394526795 -2.307297605473206 -8.696539360096323e-015 65.37343215507411 -1.376282782212087 -3.261202260036121e-015 65.31271379703534 -2.853762827822119 -4.543125047755293e-032 65.67702394526795 -0.7083808437856385 -1.08706742001204e-014 66.16277080957809 -3.015678449258835 9.783606780108364e-015 65.96037628278218 -3.046852426648108 5.597696258150007e-015 66.19418111320169 -0.7725408560242013 7.609471940084283e-015 66.56377088606915 -3.056157354618017 4.348269680048162e-015 66.263968072976 -2.712086659064993 1.196554787577434e-014 66.69077822120866 -0.7893386545039838 8.696539360096323e-015 66.66875712656783 -1.21436716077537 4.348269680048162e-015 66.91163055872286 -2.044184720638536 1.044203754511801e-014 67.01817274800457 -2.044184720638536 1.044203754511801e-014 67.01817274800457 -1.21436716077537 4.348269680048162e-015 66.91163055872286 -2.712086659064993 1.196554787577434e-014 66.69077822120866 -0.7893386545039838 8.696539360096323e-015 66.66875712656783 -0.7725408560242013 7.609471940084283e-015 66.56377088606915 -3.056157354618017 4.348269680048162e-015 66.263968072976 -3.046852426648108 5.597696258150007e-015 66.19418111320169 -0.7083808437856385 -1.08706742001204e-014 66.16277080957809 -3.015678449258835 9.783606780108364e-015 65.96037628278218 -2.853762827822119 -4.543125047755293e-032 65.67702394526795 -0.9310148232611184 -4.543125047755293e-032 65.67702394526795 -2.307297605473206 -8.696539360096323e-015 65.37343215507411 -1.376282782212087 -3.261202260036121e-015 65.31271379703534</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID7910\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7908\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID7911\">-2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 -2.809823151882734e-015 -1 9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015 2.809823151882734e-015 1 -9.281504917936062e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID7911\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7909\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7907\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7908\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7909\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 6 4 7 6 7 8 8 7 9 9 7 10 9 10 11 9 11 12 13 14 15 14 16 15 16 17 15 15 17 18 18 17 19 17 20 19 19 20 21 21 20 22 20 23 22 22 23 24 25 24 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7912\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7915\">\r\n\t\t\t\t\t<float_array count=\"552\" id=\"ID7918\">-0.1011972633979446 -4.543125047755293e-032 66.56755986316989 -0.7893386545039838 8.696539360096323e-015 66.66875712656783 -0.7725408560242013 7.609471940084283e-015 66.56377088606915 0.2483932828858693 4.348269680048162e-015 66.9521094640821 -1.21436716077537 4.348269680048162e-015 66.91163055872286 -1.21436716077537 4.348269680048162e-015 66.91163055872286 0.2483932828858693 4.348269680048162e-015 66.9521094640821 -0.7893386545039838 8.696539360096323e-015 66.66875712656783 -0.1011972633979446 -4.543125047755293e-032 66.56755986316989 -0.7725408560242013 7.609471940084283e-015 66.56377088606915 4.311003420752568 9.783606780108364e-015 65.57582668186998 3.278791334093496 -3.261202260036121e-015 65.23175598631697 4.290763968072977 8.696539360096323e-015 64.60433295324972 3.521664766248576 -4.543125047755293e-032 65.69726339794751 4.169327251995442 9.783606780108364e-015 65.96037628278218 3.825256556442418 9.783606780108364e-015 65.96037628278218 3.926453819840363 1.413187646015652e-014 63.93643101482325 3.116875712656789 7.609471940084283e-015 63.38996579247433 3.460946408209804 1.08706742001204e-015 63.32924743443556 -3.11687571265678 1.195774162013245e-014 63.55188141391103 -3.460946408209804 1.08706742001204e-015 64.442417331813 -3.541904218928166 1.848014614020469e-014 65.41391106043326 -1.376282782212087 -3.261202260036121e-015 65.31271379703534 3.096636259977189 -2.717668550030101e-014 65.29247434435575 -2.307297605473206 -8.696539360096323e-015 65.37343215507411 -2.853762827822119 -4.543125047755293e-032 65.67702394526795 -3.197833523375143 -5.435337100060202e-015 65.89965792474345 -3.015678449258835 9.783606780108364e-015 65.96037628278218 -3.183717820069761 -2.781780951153856e-015 66.07963314188704 -3.046852426648108 5.597696258150007e-015 66.19418111320169 0.8095781071835831 -7.609471940084283e-015 61.30530216647663 -1.173888255416189 -1.848014614020469e-014 61.22434435575824 -0.202394526795898 -4.543125047755293e-032 61.12314709236032 -2.125142531356898 -6.522404520072242e-015 61.73033067274798 1.821550741163056 -1.08706742001204e-015 61.64937286202965 2.448973774230332 1.521894388016857e-014 62.13511972633979 -2.266818700114024 2.174134840024081e-015 61.89224629418471 -2.712086659064993 -2.174134840024081e-015 62.70182440136829 3.021838518754471 1.195774162013245e-014 62.79598333058485 -2.813283922462946 1.08706742001204e-015 63.32924743443556 1.092930444697835 -8.696539360096323e-015 65.37343215507411 1.70011402508552 7.609471940084283e-015 65.47462941847201 3.047734883767742 -5.435337100060202e-015 66.22160049233527 2.206100342075261 1.956721356021673e-014 65.85917901938424 2.287058152793615 7.609471940084283e-015 66.22348916761682 2.263445458000761 9.783606780108364e-015 66.36516533637395 -0.9310148232611184 -4.543125047755293e-032 65.67702394526795 0.4452679589509686 2.282841582025285e-014 65.51510832383119 0.1011972633979446 1.630601130018061e-014 65.91989737742298 -0.7083808437856385 -1.08706742001204e-014 66.16277080957809 -0.08095781071836267 -1.08706742001204e-015 66.30444697833522 -0.7725408560242013 7.609471940084283e-015 66.56377088606915 -0.1011972633979446 -4.543125047755293e-032 66.56755986316989 -0.1011972633979446 -4.543125047755293e-032 66.56755986316989 -0.08095781071836267 -1.08706742001204e-015 66.30444697833522 -0.7725408560242013 7.609471940084283e-015 66.56377088606915 -0.7083808437856385 -1.08706742001204e-014 66.16277080957809 0.1011972633979446 1.630601130018061e-014 65.91989737742298 -0.9310148232611184 -4.543125047755293e-032 65.67702394526795 0.4452679589509686 2.282841582025285e-014 65.51510832383119 1.092930444697835 -8.696539360096323e-015 65.37343215507411 -1.376282782212087 -3.261202260036121e-015 65.31271379703534 2.263445458000761 9.783606780108364e-015 66.36516533637395 3.047734883767742 -5.435337100060202e-015 66.22160049233527 2.287058152793615 7.609471940084283e-015 66.22348916761682 2.206100342075261 1.956721356021673e-014 65.85917901938424 1.70011402508552 7.609471940084283e-015 65.47462941847201 3.096636259977189 -2.717668550030101e-014 65.29247434435575 -3.11687571265678 1.195774162013245e-014 63.55188141391103 3.116875712656789 7.609471940084283e-015 63.38996579247433 -2.813283922462946 1.08706742001204e-015 63.32924743443556 3.021838518754471 1.195774162013245e-014 62.79598333058485 -2.712086659064993 -2.174134840024081e-015 62.70182440136829 2.448973774230332 1.521894388016857e-014 62.13511972633979 -2.266818700114024 2.174134840024081e-015 61.89224629418471 -2.125142531356898 -6.522404520072242e-015 61.73033067274798 1.821550741163056 -1.08706742001204e-015 61.64937286202965 0.8095781071835831 -7.609471940084283e-015 61.30530216647663 -1.173888255416189 -1.848014614020469e-014 61.22434435575824 -0.202394526795898 -4.543125047755293e-032 61.12314709236032 -3.046852426648108 5.597696258150007e-015 66.19418111320169 -3.015678449258835 9.783606780108364e-015 65.96037628278218 -3.183717820069761 -2.781780951153856e-015 66.07963314188704 -3.197833523375143 -5.435337100060202e-015 65.89965792474345 -2.853762827822119 -4.543125047755293e-032 65.67702394526795 -3.541904218928166 1.848014614020469e-014 65.41391106043326 -2.307297605473206 -8.696539360096323e-015 65.37343215507411 3.278791334093496 -3.261202260036121e-015 65.23175598631697 4.290763968072977 8.696539360096323e-015 64.60433295324972 -3.460946408209804 1.08706742001204e-015 64.442417331813 3.926453819840363 1.413187646015652e-014 63.93643101482325 3.460946408209804 1.08706742001204e-015 63.32924743443556 3.825256556442418 9.783606780108364e-015 65.96037628278218 4.169327251995442 9.783606780108364e-015 65.96037628278218 3.521664766248576 -4.543125047755293e-032 65.69726339794751 4.311003420752568 9.783606780108364e-015 65.57582668186998 0.2483932828858693 4.348269680048162e-015 66.9521094640821 -2.044184720638536 1.044203754511801e-014 67.01817274800457 -1.21436716077537 4.348269680048162e-015 66.91163055872286 0.3035917901938426 2.174134840024081e-015 67.01282782212086 1.052451539338654 6.522404520072242e-015 67.09378563283917 3.015678449258835 8.696539360096323e-015 66.83067274800457 2.263445458000761 9.783606780108364e-015 66.36516533637395 3.047734883767742 -5.435337100060202e-015 66.22160049233527 2.206100342075261 -2.065428098022877e-014 66.70923603192703 1.679874572405921 3.043788776033713e-014 66.99258836944127 2.712086659064993 1.08706742001204e-015 67.33665906499428 -3.183717820069761 -2.781780951153856e-015 66.07963314188704 -3.056157354618017 4.348269680048162e-015 66.263968072976 -3.11687571265678 9.783606780108364e-015 66.93187001140247 -3.046852426648108 5.597696258150007e-015 66.19418111320169 -2.712086659064993 1.196554787577434e-014 66.69077822120866 -2.712086659064993 2.174134840024081e-014 67.62001140250851 1.841790193842646 1.08706742001204e-015 67.92360319270236 -1.922748004561 -3.261202260036121e-015 68.32839224629417 1.275085518814134 -3.261202260036121e-015 68.32839224629417 0.2226339794754799 -1.739307872019265e-014 68.59150513112886 -0.8702964652223464 3.261202260036121e-015 68.69270239452678 -0.8702964652223464 3.261202260036121e-015 68.69270239452678 0.2226339794754799 -1.739307872019265e-014 68.59150513112886 -1.922748004561 -3.261202260036121e-015 68.32839224629417 1.275085518814134 -3.261202260036121e-015 68.32839224629417 1.841790193842646 1.08706742001204e-015 67.92360319270236 -2.712086659064993 2.174134840024081e-014 67.62001140250851 2.712086659064993 1.08706742001204e-015 67.33665906499428 1.052451539338654 6.522404520072242e-015 67.09378563283917 -2.044184720638536 1.044203754511801e-014 67.01817274800457 -3.11687571265678 9.783606780108364e-015 66.93187001140247 -2.712086659064993 1.196554787577434e-014 66.69077822120866 -3.056157354618017 4.348269680048162e-015 66.263968072976 -3.046852426648108 5.597696258150007e-015 66.19418111320169 -3.183717820069761 -2.781780951153856e-015 66.07963314188704 1.679874572405921 3.043788776033713e-014 66.99258836944127 3.015678449258835 8.696539360096323e-015 66.83067274800457 2.206100342075261 -2.065428098022877e-014 66.70923603192703 2.263445458000761 9.783606780108364e-015 66.36516533637395 3.047734883767742 -5.435337100060202e-015 66.22160049233527 0.3035917901938426 2.174134840024081e-015 67.01282782212086 0.2483932828858693 4.348269680048162e-015 66.9521094640821 -1.21436716077537 4.348269680048162e-015 66.91163055872286 2.90633283478209 1.630601130018061e-014 61.04218928164192 0.8095781071835831 -7.609471940084283e-015 61.30530216647663 -0.202394526795898 -4.543125047755293e-032 61.12314709236032 2.874002280501709 1.739307872019265e-014 61.87200684150515 1.821550741163056 -1.08706742001204e-015 61.64937286202965 2.448973774230332 1.521894388016857e-014 62.13511972633979 3.021838518754471 1.195774162013245e-014 62.79598333058485 -0.1619156214367166 -4.543125047755293e-032 57.2776510832383 -1.052451539338654 1.08706742001204e-015 57.64196123147088 -0.7083808437856385 -5.435337100060202e-015 56.71094640820977 0.8298175598631651 -1.521894388016857e-014 58.28962371721781 -1.922748004561 8.696539360096323e-015 58.69441277080958 0.9107753705815278 -1.739307872019265e-014 59.68614595210946 -1.801311288483465 1.413187646015652e-014 59.38255416191555 -1.821550741163056 -3.261202260036121e-015 59.80758266818702 2.408494868871151 2.608961808028897e-014 60.07069555302162 -2.064424173318126 2.174134840024081e-015 60.09093500570125 2.934720638540473 -3.261202260036121e-015 60.31356898517669 -2.152482595373165 3.261202260036121e-015 60.84823743537456 -2.16562143671608 4.348269680048162e-015 60.96123147092362 -1.173888255416189 -1.848014614020469e-014 61.22434435575824 -2.125142531356898 -6.522404520072242e-015 61.73033067274798 -2.125142531356898 -6.522404520072242e-015 61.73033067274798 -1.173888255416189 -1.848014614020469e-014 61.22434435575824 -2.16562143671608 4.348269680048162e-015 60.96123147092362 -0.202394526795898 -4.543125047755293e-032 61.12314709236032 2.90633283478209 1.630601130018061e-014 61.04218928164192 -2.152482595373165 3.261202260036121e-015 60.84823743537456 2.934720638540473 -3.261202260036121e-015 60.31356898517669 -2.064424173318126 2.174134840024081e-015 60.09093500570125 2.408494868871151 2.608961808028897e-014 60.07069555302162 -1.821550741163056 -3.261202260036121e-015 59.80758266818702 0.9107753705815278 -1.739307872019265e-014 59.68614595210946 -1.801311288483465 1.413187646015652e-014 59.38255416191555 -1.922748004561 8.696539360096323e-015 58.69441277080958 0.8298175598631651 -1.521894388016857e-014 58.28962371721781 -1.052451539338654 1.08706742001204e-015 57.64196123147088 -0.1619156214367166 -4.543125047755293e-032 57.2776510832383 -0.7083808437856385 -5.435337100060202e-015 56.71094640820977 3.021838518754471 1.195774162013245e-014 62.79598333058485 2.874002280501709 1.739307872019265e-014 61.87200684150515 2.448973774230332 1.521894388016857e-014 62.13511972633979 1.821550741163056 -1.08706742001204e-015 61.64937286202965 0.8095781071835831 -7.609471940084283e-015 61.30530216647663</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"184\" source=\"#ID7918\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7916\">\r\n\t\t\t\t\t<float_array count=\"552\" id=\"ID7919\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 5.893708575870633e-016 -1 9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -5.893708575870633e-016 1 -9.442888811213052e-016 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 -9.352775981199764e-016 -1 -2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 9.352775981199764e-016 1 2.391869281434984e-015 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"184\" source=\"#ID7919\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7917\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7915\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7916\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"168\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7917\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 6 7 6 8 7 9 7 8 10 11 12 11 10 13 13 10 14 13 14 15 16 17 18 17 16 19 19 16 20 20 16 12 20 12 21 21 12 22 22 12 11 22 11 23 21 22 24 21 24 25 21 25 26 26 25 27 26 27 28 28 27 29 30 31 32 31 30 33 33 30 34 33 34 35 33 35 36 36 35 37 37 35 38 37 38 39 39 38 17 39 17 19 23 40 22 40 23 41 41 23 42 41 42 43 43 42 44 44 42 45 40 46 22 46 40 47 46 47 48 46 48 49 49 48 50 49 50 51 51 50 52 53 54 55 55 54 56 54 57 56 56 57 58 57 59 58 59 60 58 61 58 60 62 63 64 64 63 65 65 63 66 63 67 66 66 67 60 61 60 67 68 69 70 69 71 70 70 71 72 71 73 72 72 73 74 74 73 75 73 76 75 76 77 75 75 77 78 79 78 77 80 81 82 82 81 83 81 84 83 83 84 85 84 86 85 86 61 85 67 87 61 87 88 61 61 88 85 85 88 89 88 90 89 89 90 68 68 90 69 91 69 90 92 93 94 93 95 94 94 95 87 88 87 95 96 97 98 97 96 99 97 99 100 101 102 103 102 101 104 104 101 105 105 101 106 105 106 100 107 108 109 108 107 110 109 108 111 109 111 97 109 97 112 112 97 100 112 100 106 112 106 113 112 113 114 114 113 115 114 115 116 114 116 117 118 119 120 119 121 120 121 122 120 120 122 123 122 124 123 124 125 123 125 126 123 123 126 127 126 128 127 128 129 127 130 131 129 127 129 131 125 124 132 124 133 132 132 133 134 134 133 135 136 135 133 125 137 126 137 138 126 139 126 138 140 141 142 141 140 143 141 143 144 144 143 145 145 143 146 147 148 149 148 147 150 148 150 151 151 150 152 151 152 153 153 152 154 154 152 155 154 155 156 156 155 157 156 157 158 158 157 140 158 140 159 159 140 142 159 142 160 159 160 161 162 163 164 163 165 164 165 166 164 164 166 167 166 168 167 167 168 169 168 170 169 169 170 171 170 172 171 171 172 173 173 172 174 172 175 174 174 175 176 175 177 176 178 176 177 179 180 181 181 180 182 182 180 183 180 166 183 165 183 166</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7920\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7923\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID7926\">2.954960091220063 -3.261202260036121e-015 67.11402508551883 2.712086659064993 1.08706742001204e-015 67.33665906499428 3.015678449258835 8.696539360096323e-015 66.83067274800457 2.671607753705812 -1.08706742001204e-015 67.53905359179016 1.841790193842646 1.08706742001204e-015 67.92360319270236 2.631128848346639 6.522404520072242e-015 67.59977194982898 1.497719498289622 1.848014614020469e-014 68.57126567844924 1.275085518814134 -3.261202260036121e-015 68.32839224629417 0.2226339794754799 -1.739307872019265e-014 68.59150513112886 0.4452679589509686 -1.08706742001204e-014 69.01653363740022 -0.8702964652223464 3.261202260036121e-015 68.69270239452678 -2.712086659064993 2.174134840024081e-014 67.62001140250851 -3.481185860889394 1.413187646015652e-014 67.19498289623715 -3.11687571265678 9.783606780108364e-015 66.93187001140247 -3.683580387685292 -5.435337100060202e-015 67.68072976054728 -1.922748004561 -3.261202260036121e-015 68.32839224629417 -3.420467502850631 9.783606780108364e-015 67.95846002787279 -2.954960091220063 -3.261202260036121e-015 68.44982896237174 -2.044184720638536 -1.08706742001204e-014 69.01653363740022 -0.6071835803876852 5.435337100060202e-015 69.15820980615729 -0.6071835803876852 5.435337100060202e-015 69.15820980615729 0.4452679589509686 -1.08706742001204e-014 69.01653363740022 -2.044184720638536 -1.08706742001204e-014 69.01653363740022 -0.8702964652223464 3.261202260036121e-015 68.69270239452678 -2.954960091220063 -3.261202260036121e-015 68.44982896237174 -1.922748004561 -3.261202260036121e-015 68.32839224629417 -3.420467502850631 9.783606780108364e-015 67.95846002787279 -3.683580387685292 -5.435337100060202e-015 67.68072976054728 -2.712086659064993 2.174134840024081e-014 67.62001140250851 -3.481185860889394 1.413187646015652e-014 67.19498289623715 -3.11687571265678 9.783606780108364e-015 66.93187001140247 0.2226339794754799 -1.739307872019265e-014 68.59150513112886 1.497719498289622 1.848014614020469e-014 68.57126567844924 1.275085518814134 -3.261202260036121e-015 68.32839224629417 1.841790193842646 1.08706742001204e-015 67.92360319270236 2.631128848346639 6.522404520072242e-015 67.59977194982898 2.671607753705812 -1.08706742001204e-015 67.53905359179016 2.712086659064993 1.08706742001204e-015 67.33665906499428 2.954960091220063 -3.261202260036121e-015 67.11402508551883 3.015678449258835 8.696539360096323e-015 66.83067274800457</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID7926\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7924\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID7927\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID7927\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7925\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7923\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7924\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"36\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7925\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 7 6 8 8 6 9 8 9 10 11 12 13 12 11 14 14 11 15 14 15 16 16 15 17 17 15 10 17 10 18 18 10 9 18 9 19 20 21 22 21 23 22 22 23 24 23 25 24 24 25 26 26 25 27 25 28 27 27 28 29 30 29 28 23 21 31 21 32 31 31 32 33 33 32 34 32 35 34 35 36 34 34 36 37 36 38 37 39 37 38</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7928\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7931\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID7934\">3.521664766248576 -4.543125047755293e-032 65.69726339794751 3.096636259977189 -2.717668550030101e-014 65.29247434435575 3.278791334093496 -3.261202260036121e-015 65.23175598631697 3.047734883767742 -5.435337100060202e-015 66.22160049233527 3.258551881413915 -1.304480904014448e-014 66.1830102622577 3.258551881413915 -1.304480904014448e-014 66.1830102622577 3.521664766248576 -4.543125047755293e-032 65.69726339794751 3.047734883767742 -5.435337100060202e-015 66.22160049233527 3.096636259977189 -2.717668550030101e-014 65.29247434435575 3.278791334093496 -3.261202260036121e-015 65.23175598631697 3.825256556442418 9.783606780108364e-015 65.96037628278218 3.278791334093496 9.783606780108364e-015 66.93187001140247 3.015678449258835 8.696539360096323e-015 66.83067274800457 2.954960091220063 -3.261202260036121e-015 67.11402508551883 2.671607753705812 -1.08706742001204e-015 67.53905359179016 2.671607753705812 -1.08706742001204e-015 67.53905359179016 3.278791334093496 9.783606780108364e-015 66.93187001140247 2.954960091220063 -3.261202260036121e-015 67.11402508551883 3.015678449258835 8.696539360096323e-015 66.83067274800457 3.825256556442418 9.783606780108364e-015 65.96037628278218</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID7934\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7932\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID7935\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID7935\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7933\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7931\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7932\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7933\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 7 6 8 9 8 6 10 4 0 4 10 11 4 11 3 3 11 12 12 11 13 13 11 14 15 16 17 17 16 18 18 16 7 7 16 5 16 19 5 6 5 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7936\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7937\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID7940\">3.987172177879135 1.521894388016857e-014 66.54732041049026 3.278791334093496 9.783606780108364e-015 66.93187001140247 3.825256556442418 9.783606780108364e-015 65.96037628278218 3.703819840364883 7.609471940084283e-015 68.12599771949824 2.671607753705812 -1.08706742001204e-015 67.53905359179016 2.631128848346639 6.522404520072242e-015 67.59977194982898 1.497719498289622 1.848014614020469e-014 68.57126567844924 3.197833523375143 1.195774162013245e-014 69.27964652223487 0.4452679589509686 -1.08706742001204e-014 69.01653363740022 -0.6071835803876852 5.435337100060202e-015 69.15820980615729 -3.07734553164196 1.195774162013245e-014 69.20667380808149 -2.590649942987457 -4.543125047755293e-032 69.70467502850627 2.489452679589513 9.783606780108364e-015 70.27137970353476 -1.477480045610032 5.435337100060202e-015 70.51425313568981 1.760832383124284 2.174134840024081e-015 70.49401368301021 0.9714937286203 6.522404520072242e-015 70.97976054732038 -0.2833523375142519 -4.543125047755293e-032 71 -2.954960091220063 -3.261202260036121e-015 68.44982896237174 -3.400228050171032 5.435337100060202e-015 68.58478500035631 -3.420467502850631 9.783606780108364e-015 67.95846002787279 -2.044184720638536 -1.08706742001204e-014 69.01653363740022 -0.6071835803876852 5.435337100060202e-015 69.15820980615729 -2.044184720638536 -1.08706742001204e-014 69.01653363740022 -3.07734553164196 1.195774162013245e-014 69.20667380808149 -3.400228050171032 5.435337100060202e-015 68.58478500035631 -2.954960091220063 -3.261202260036121e-015 68.44982896237174 -3.420467502850631 9.783606780108364e-015 67.95846002787279 -0.2833523375142519 -4.543125047755293e-032 71 0.9714937286203 6.522404520072242e-015 70.97976054732038 -1.477480045610032 5.435337100060202e-015 70.51425313568981 1.760832383124284 2.174134840024081e-015 70.49401368301021 2.489452679589513 9.783606780108364e-015 70.27137970353476 -2.590649942987457 -4.543125047755293e-032 69.70467502850627 3.197833523375143 1.195774162013245e-014 69.27964652223487 0.4452679589509686 -1.08706742001204e-014 69.01653363740022 1.497719498289622 1.848014614020469e-014 68.57126567844924 3.703819840364883 7.609471940084283e-015 68.12599771949824 2.631128848346639 6.522404520072242e-015 67.59977194982898 2.671607753705812 -1.08706742001204e-015 67.53905359179016 3.278791334093496 9.783606780108364e-015 66.93187001140247 3.987172177879135 1.521894388016857e-014 66.54732041049026 3.825256556442418 9.783606780108364e-015 65.96037628278218</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID7940\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7938\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID7941\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID7941\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7939\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7937\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7938\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"38\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7939\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 6 7 8 8 7 9 9 7 10 10 7 11 11 7 12 11 12 13 13 12 14 13 14 15 13 15 16 17 18 19 18 17 20 18 20 10 10 20 9 21 22 23 23 22 24 22 25 24 26 24 25 27 28 29 28 30 29 30 31 29 29 31 32 31 33 32 32 33 23 23 33 21 21 33 34 34 33 35 33 36 35 35 36 37 37 36 38 38 36 39 36 40 39 41 39 40</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7942\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7945\">\r\n\t\t\t\t\t<float_array count=\"804\" id=\"ID7948\">3.724059293044465 1.08706742001204e-014 58.6539338654504 1.862029646522237 1.521894388016857e-014 58.97776510832378 2.145381984036489 9.783606780108364e-015 57.35860889395668 4.776510832383119 1.195774162013245e-014 59.46351197263397 1.254846066134552 -1.521894388016857e-014 59.09920182440137 0.9107753705815278 -1.739307872019265e-014 59.68614595210946 0.8298175598631651 -1.521894388016857e-014 58.28962371721781 2.408494868871151 2.608961808028897e-014 60.07069555302162 4.493158494868867 1.739307872019265e-014 60.88027366020519 2.934720638540473 -3.261202260036121e-015 60.31356898517669 2.90633283478209 1.630601130018061e-014 61.04218928164192 4.209806157354615 1.630601130018061e-014 61.04218928164192 4.209806157354615 1.630601130018061e-014 61.04218928164192 4.493158494868867 1.739307872019265e-014 60.88027366020519 2.90633283478209 1.630601130018061e-014 61.04218928164192 2.934720638540473 -3.261202260036121e-015 60.31356898517669 2.408494868871151 2.608961808028897e-014 60.07069555302162 4.776510832383119 1.195774162013245e-014 59.46351197263397 0.9107753705815278 -1.739307872019265e-014 59.68614595210946 1.254846066134552 -1.521894388016857e-014 59.09920182440137 0.8298175598631651 -1.521894388016857e-014 58.28962371721781 1.862029646522237 1.521894388016857e-014 58.97776510832378 3.724059293044465 1.08706742001204e-014 58.6539338654504 2.145381984036489 9.783606780108364e-015 57.35860889395668 5.842481693628849 6.522404520072242e-015 39.23749955458949 5.113861397163619 1.630601130018061e-015 39.45349246365448 5.437692640037062 -1.08706742001204e-014 39.12966122078106 6.942055893806069 -4.891803390054182e-015 39.36445617564164 6.733096671892808 7.065938230078262e-015 40.47890535917899 4.266964796897636 2.717668550030101e-015 39.80636604709866 4.142367668543328 1.08706742001204e-015 39.85828151724628 3.764538198403646 -1.08706742001204e-015 40.10115494940136 3.224793106827256 -2.717668550030101e-015 40.14406573538813 2.712086659064993 5.978870810066222e-015 40.18482689653126 1.389802104119155 8.153005650090303e-015 40.28995109392815 10.64595210946409 9.240073070102343e-015 45.41733181299883 10.18724388896808 -1.630601130018061e-015 43.2853900905074 10.72690992018244 -3.261202260036121e-015 42.46237172177875 8.675926008409348 -5.435337100060202e-015 43.44730571194412 -3.197833523375143 3.261202260036121e-015 44.81014823261115 -3.076396807297607 3.043788776033713e-014 48.16989737742295 3.980452047106612 -5.435337100060202e-016 47.19840364880276 2.037464589866022 7.609471940084283e-015 47.76510832383121 0.4992661862172177 5.435337100060201e-016 48.03502039980045 0.2833523375142519 1.250127533013847e-014 49.33034537129416 -2.954960091220063 3.804735970042141e-015 50.88198403648801 0.8770165959948693 -4.543125047755293e-032 52.78449258836944 -2.469213226909922 5.435337100060202e-015 53.27023945267961 -2.833523375142528 1.630601130018061e-015 39.6679097486484 -3.035917901938426 1.630601130018061e-015 40.03363740022805 -2.961904705898234 -7.065938230078262e-015 39.65440946839624 -2.307297605473206 4.348269680048162e-015 39.72324641889964 -0.9107753705815278 1.630601130018061e-015 39.89542269636434 -0.3373505647805011 -7.609471940084283e-015 39.96611985105472 -3.238312428734315 7.609471940084283e-015 41.77423033067272 6.423990884846775 3.804735970042141e-015 42.21301649060697 7.164766248574686 -9.783606780108364e-015 42.961558847634 10.44355758266819 -1.35883427501505e-014 48.93899657924743 4.601075889039334 -2.174134840024081e-015 48.7636406962657 5.54561003420752 -1.521894388016857e-014 51.40820980615734 10.40307867730901 1.250127533013847e-014 52.01539338654503 4.061409857824966 1.793661243019867e-014 51.83995844320123 9.674458380843786 1.08706742001204e-015 54.92987457240593 -1.700114025085512 5.435337100060202e-015 55.17274800456095 9.067274800456101 5.435337100060202e-015 56.30615735461796 -0.7083808437856385 -5.435337100060202e-015 56.71094640820977 7.974344355758269 -5.435337100060202e-015 57.60148232611176 -0.1619156214367166 -4.543125047755293e-032 57.2776510832383 6.638540478905355 5.435337100060202e-015 58.61345496009119 5.909920182440135 -6.522404520072242e-015 58.73489167616872 5.262257696693268 1.413187646015652e-014 59.30159635119725 -0.1619156214367166 -4.543125047755293e-032 57.2776510832383 5.262257696693268 1.413187646015652e-014 59.30159635119725 5.909920182440135 -6.522404520072242e-015 58.73489167616872 6.638540478905355 5.435337100060202e-015 58.61345496009119 7.974344355758269 -5.435337100060202e-015 57.60148232611176 -0.7083808437856385 -5.435337100060202e-015 56.71094640820977 9.067274800456101 5.435337100060202e-015 56.30615735461796 -1.700114025085512 5.435337100060202e-015 55.17274800456095 9.674458380843786 1.08706742001204e-015 54.92987457240593 -2.469213226909922 5.435337100060202e-015 53.27023945267961 0.8770165959948693 -4.543125047755293e-032 52.78449258836944 10.40307867730901 1.250127533013847e-014 52.01539338654503 4.061409857824966 1.793661243019867e-014 51.83995844320123 5.54561003420752 -1.521894388016857e-014 51.40820980615734 10.44355758266819 -1.35883427501505e-014 48.93899657924743 4.601075889039334 -2.174134840024081e-015 48.7636406962657 3.980452047106612 -5.435337100060202e-016 47.19840364880276 10.64595210946409 9.240073070102343e-015 45.41733181299883 8.675926008409348 -5.435337100060202e-015 43.44730571194412 7.164766248574686 -9.783606780108364e-015 42.961558847634 -3.197833523375143 3.261202260036121e-015 44.81014823261115 6.423990884846775 3.804735970042141e-015 42.21301649060697 -3.238312428734315 7.609471940084283e-015 41.77423033067272 6.733096671892808 7.065938230078262e-015 40.47890535917899 1.389802104119155 8.153005650090303e-015 40.28995109392815 -3.035917901938426 1.630601130018061e-015 40.03363740022805 -0.3373505647805011 -7.609471940084283e-015 39.96611985105472 -0.9107753705815278 1.630601130018061e-015 39.89542269636434 -2.307297605473206 4.348269680048162e-015 39.72324641889964 -2.833523375142528 1.630601130018061e-015 39.6679097486484 -2.961904705898234 -7.065938230078262e-015 39.65440946839624 -2.954960091220063 3.804735970042141e-015 50.88198403648801 0.2833523375142519 1.250127533013847e-014 49.33034537129416 -3.076396807297607 3.043788776033713e-014 48.16989737742295 0.4992661862172177 5.435337100060201e-016 48.03502039980045 2.037464589866022 7.609471940084283e-015 47.76510832383121 10.18724388896808 -1.630601130018061e-015 43.2853900905074 10.72690992018244 -3.261202260036121e-015 42.46237172177875 2.712086659064993 5.978870810066222e-015 40.18482689653126 3.224793106827256 -2.717668550030101e-015 40.14406573538813 3.764538198403646 -1.08706742001204e-015 40.10115494940136 4.142367668543328 1.08706742001204e-015 39.85828151724628 4.266964796897636 2.717668550030101e-015 39.80636604709866 5.113861397163619 1.630601130018061e-015 39.45349246365448 6.942055893806069 -4.891803390054182e-015 39.36445617564164 5.842481693628849 6.522404520072242e-015 39.23749955458949 5.437692640037062 -1.08706742001204e-014 39.12966122078106 10.68643101482327 1.08706742001204e-014 39.22405929304444 10.48403648802737 1.413187646015652e-014 39.56133079746291 10.1102009225761 -1.630601130018061e-015 39.15654174387114 10.84834663625998 5.435337100060202e-015 41.36944127708095 10.40307867730901 6.522404520072242e-015 39.99315849486886 10.16020524515394 5.435337100060202e-015 40.15939419688984 9.890451289908784 5.435337100060201e-016 40.34402838155643 8.730003296037628 2.011074727022275e-014 40.85665576895667 7.407639680729758 1.08706742001204e-015 41.12656784492587 7.192680573015772 1.413187646015652e-014 40.9201748526154 10.84834663625998 5.435337100060202e-015 41.36944127708095 7.407639680729758 1.08706742001204e-015 41.12656784492587 7.192680573015772 1.413187646015652e-014 40.9201748526154 8.730003296037628 2.011074727022275e-014 40.85665576895667 9.890451289908784 5.435337100060201e-016 40.34402838155643 10.16020524515394 5.435337100060202e-015 40.15939419688984 10.40307867730901 6.522404520072242e-015 39.99315849486886 10.48403648802737 1.413187646015652e-014 39.56133079746291 10.68643101482327 1.08706742001204e-014 39.22405929304444 10.1102009225761 -1.630601130018061e-015 39.15654174387114 -2.961904705898234 -7.065938230078262e-015 39.65440946839624 -3.460946408209804 4.891803390054182e-015 39.64591395654733 -3.332789561359745 5.435337100060202e-015 39.6154080850912 -4.973121525451282 -4.891803390054182e-015 39.84563242343099 -3.035917901938426 1.630601130018061e-015 40.03363740022805 -5.979605308769625 -1.08706742001204e-015 40.07015322392751 -3.238312428734315 7.609471940084283e-015 41.77423033067272 -6.436145952109467 1.032714049011438e-014 40.18195463939564 -6.628941234519274 -5.435337100060202e-016 40.24873993330233 -7.137727604760542 4.348269680048162e-015 40.42498619227481 -7.515557074900229 2.717668550030101e-015 41.20752565564425 -7.596514885618583 9.240073070102343e-015 42.47581198332379 -3.197833523375143 3.261202260036121e-015 44.81014823261115 -7.48162656263429 -3.261202260036121e-015 43.79702769764324 -7.677472696336942 -1.684954501018663e-014 44.17576788768528 -8.217217787913336 -5.435337100060202e-016 44.66151475199544 -9.431584948688711 -4.348269680048162e-015 45.30917723774228 -3.076396807297607 3.043788776033713e-014 48.16989737742295 -10.6054732041049 5.435337100060201e-016 45.74116305587227 -10.32212086659065 7.609471940084283e-015 47.48175598631697 -9.431584948688711 -1.141420791012643e-014 49.5866590649943 -2.954960091220063 3.804735970042141e-015 50.88198403648801 -9.188711516533635 -3.261202260036121e-015 51.69156214367158 -2.469213226909922 5.435337100060202e-015 53.27023945267961 -8.783922462941844 -1.521894388016857e-014 54.68700114025084 -1.700114025085512 5.435337100060202e-015 55.17274800456095 -8.379133409350057 1.08706742001204e-015 55.77993158494867 -0.7083808437856385 -5.435337100060202e-015 56.71094640820977 -7.043329532497142 -4.543125047755293e-032 57.2776510832383 -1.052451539338654 1.08706742001204e-015 57.64196123147088 -5.667046750285064 1.304480904014448e-014 58.12770809578105 -2.631128848346639 1.195774162013245e-014 58.53249714937287 -1.922748004561 8.696539360096323e-015 58.69441277080958 -2.307297605473206 -6.522404520072242e-015 59.58494868871151 -4.493158494868871 9.783606780108364e-015 58.85632839224627 -2.874002280501709 1.521894388016857e-014 58.97776510832378 -3.197833523375143 -6.522404520072242e-015 59.58494868871151 -2.843238312428731 1.630601130018061e-014 59.74686431014816 -2.843238312428731 1.630601130018061e-014 59.74686431014816 -2.874002280501709 1.521894388016857e-014 58.97776510832378 -3.197833523375143 -6.522404520072242e-015 59.58494868871151 -4.493158494868871 9.783606780108364e-015 58.85632839224627 -2.631128848346639 1.195774162013245e-014 58.53249714937287 -5.667046750285064 1.304480904014448e-014 58.12770809578105 -2.307297605473206 -6.522404520072242e-015 59.58494868871151 -1.922748004561 8.696539360096323e-015 58.69441277080958 -1.052451539338654 1.08706742001204e-015 57.64196123147088 -7.043329532497142 -4.543125047755293e-032 57.2776510832383 -0.7083808437856385 -5.435337100060202e-015 56.71094640820977 -8.379133409350057 1.08706742001204e-015 55.77993158494867 -1.700114025085512 5.435337100060202e-015 55.17274800456095 -8.783922462941844 -1.521894388016857e-014 54.68700114025084 -2.469213226909922 5.435337100060202e-015 53.27023945267961 -9.188711516533635 -3.261202260036121e-015 51.69156214367158 -2.954960091220063 3.804735970042141e-015 50.88198403648801 -9.431584948688711 -1.141420791012643e-014 49.5866590649943 -3.076396807297607 3.043788776033713e-014 48.16989737742295 -10.32212086659065 7.609471940084283e-015 47.48175598631697 -10.6054732041049 5.435337100060201e-016 45.74116305587227 -9.431584948688711 -4.348269680048162e-015 45.30917723774228 -3.197833523375143 3.261202260036121e-015 44.81014823261115 -8.217217787913336 -5.435337100060202e-016 44.66151475199544 -7.677472696336942 -1.684954501018663e-014 44.17576788768528 -7.48162656263429 -3.261202260036121e-015 43.79702769764324 -7.596514885618583 9.240073070102343e-015 42.47581198332379 -3.238312428734315 7.609471940084283e-015 41.77423033067272 -7.515557074900229 2.717668550030101e-015 41.20752565564425 -7.137727604760542 4.348269680048162e-015 40.42498619227481 -6.628941234519274 -5.435337100060202e-016 40.24873993330233 -6.436145952109467 1.032714049011438e-014 40.18195463939564 -5.979605308769625 -1.08706742001204e-015 40.07015322392751 -3.035917901938426 1.630601130018061e-015 40.03363740022805 -4.973121525451282 -4.891803390054182e-015 39.84563242343099 -2.961904705898234 -7.065938230078262e-015 39.65440946839624 -3.460946408209804 4.891803390054182e-015 39.64591395654733 -3.332789561359745 5.435337100060202e-015 39.6154080850912 6.975970104047887 5.435337100060201e-016 39.18358038768529 7.481549946351274 -4.891803390054182e-015 38.91366831171607 6.975970104047887 5.435337100060201e-016 39.18358038768529 7.481549946351274 -4.891803390054182e-015 38.91366831171607 -1.801311288483465 1.413187646015652e-014 59.38255416191555 -2.307297605473206 -6.522404520072242e-015 59.58494868871151 -1.922748004561 8.696539360096323e-015 58.69441277080958 -1.821550741163056 -3.261202260036121e-015 59.80758266818702 -2.843238312428731 1.630601130018061e-014 59.74686431014816 -2.833523375142528 8.696539360096323e-015 59.98973774230329 -2.064424173318126 2.174134840024081e-015 60.09093500570125 -2.152482595373165 3.261202260036121e-015 60.84823743537456 -2.874002280501709 1.521894388016857e-014 58.97776510832378 -2.631128848346639 1.195774162013245e-014 58.53249714937287 -2.843238312428731 1.630601130018061e-014 59.74686431014816 -2.307297605473206 -6.522404520072242e-015 59.58494868871151 -2.874002280501709 1.521894388016857e-014 58.97776510832378 -2.631128848346639 1.195774162013245e-014 58.53249714937287 -2.152482595373165 3.261202260036121e-015 60.84823743537456 -2.064424173318126 2.174134840024081e-015 60.09093500570125 -2.833523375142528 8.696539360096323e-015 59.98973774230329 -1.821550741163056 -3.261202260036121e-015 59.80758266818702 -1.801311288483465 1.413187646015652e-014 59.38255416191555 -1.922748004561 8.696539360096323e-015 58.69441277080958 -7.758430507055295 -5.435337100060202e-016 42.07086480900795 -8.460091220068412 7.609471940084283e-015 41.77423033067272 -8.257696693272521 1.250127533013847e-014 41.16704675028507 -9.229190421892813 3.261202260036121e-015 42.58380843785631 -7.596514885618583 9.240073070102343e-015 42.47581198332379 -7.48162656263429 -3.261202260036121e-015 43.79702769764324 -10.403078677309 6.522404520072242e-015 43.15051311288483 -11.09122006841504 -5.435337100060202e-016 43.30010906747312 -11.33409350057012 1.032714049011438e-014 43.35290763968067 -10.6054732041049 5.435337100060201e-016 45.74116305587227 -12.02223489167616 3.261202260036121e-015 42.9885974914481 -7.677472696336942 -1.684954501018663e-014 44.17576788768528 -8.217217787913336 -5.435337100060202e-016 44.66151475199544 -9.431584948688711 -4.348269680048162e-015 45.30917723774228 -9.431584948688711 -4.348269680048162e-015 45.30917723774228 -8.217217787913336 -5.435337100060202e-016 44.66151475199544 -10.6054732041049 5.435337100060201e-016 45.74116305587227 -7.677472696336942 -1.684954501018663e-014 44.17576788768528 -7.48162656263429 -3.261202260036121e-015 43.79702769764324 -11.33409350057012 1.032714049011438e-014 43.35290763968067 -12.02223489167616 3.261202260036121e-015 42.9885974914481 -11.09122006841504 -5.435337100060202e-016 43.30010906747312 -10.403078677309 6.522404520072242e-015 43.15051311288483 -9.229190421892813 3.261202260036121e-015 42.58380843785631 -7.596514885618583 9.240073070102343e-015 42.47581198332379 -7.758430507055295 -5.435337100060202e-016 42.07086480900795 -8.460091220068412 7.609471940084283e-015 41.77423033067272 -8.257696693272521 1.250127533013847e-014 41.16704675028507 -11.29361459521094 -3.261202260036121e-015 42.46237172177875 -11.29361459521094 -3.261202260036121e-015 42.46237172177875</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"268\" source=\"#ID7948\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7946\">\r\n\t\t\t\t\t<float_array count=\"804\" id=\"ID7949\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 9.901235106956461e-016 -1 4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 -9.901235106956461e-016 1 -4.41806759403372e-017 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"268\" source=\"#ID7949\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7947\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7945\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7946\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"280\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7947\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 5 6 5 4 3 5 3 7 7 3 8 7 8 9 9 8 10 10 8 11 12 13 14 14 13 15 15 13 16 13 17 16 16 17 18 17 19 18 20 18 19 19 17 21 17 22 21 23 21 22 24 25 26 25 24 27 25 27 28 25 28 29 29 28 30 30 28 31 31 28 32 32 28 33 33 28 34 35 36 37 36 35 38 38 35 39 39 35 40 40 35 41 40 41 42 40 42 43 40 43 44 40 44 45 45 44 46 45 46 47 48 49 50 49 48 51 49 51 52 49 52 53 49 53 34 49 34 54 54 34 28 54 28 55 54 55 39 39 55 56 39 56 38 57 41 35 41 57 58 58 57 59 59 57 60 59 60 61 61 60 46 46 60 62 46 62 47 47 62 63 63 62 64 63 64 65 65 64 66 65 66 2 65 2 67 2 66 0 0 66 68 0 68 69 0 69 3 3 69 70 2 6 67 6 2 1 6 1 4 19 21 20 21 23 20 71 20 23 72 73 17 17 73 22 73 74 22 74 75 22 22 75 23 71 23 76 23 75 76 75 77 76 76 77 78 77 79 78 78 79 80 80 79 81 79 82 81 81 82 83 83 82 84 82 85 84 84 85 86 86 85 87 88 87 85 89 90 91 90 92 91 91 92 93 92 94 93 94 95 93 93 95 96 95 97 96 97 98 96 98 99 96 99 100 96 101 96 100 80 81 102 81 103 102 102 103 104 103 105 104 105 106 104 106 87 104 87 88 104 104 88 91 91 88 89 89 88 107 108 107 88 95 94 109 109 94 110 110 94 111 111 94 112 112 94 113 113 94 114 94 115 114 115 116 114 117 114 116 118 119 120 119 118 121 119 121 122 122 121 123 123 121 124 124 121 125 125 121 126 127 55 28 55 127 126 55 126 121 55 121 37 55 37 56 56 37 36 56 36 38 89 107 90 107 108 90 90 108 92 108 128 92 128 129 92 129 130 92 94 92 130 129 128 131 131 128 132 132 128 133 133 128 134 134 128 135 128 136 135 137 135 136 138 139 140 139 138 141 141 138 142 141 142 143 143 142 144 143 144 145 145 144 146 146 144 147 147 144 148 148 144 149 149 144 150 149 150 151 151 150 152 152 150 153 153 150 154 154 150 155 154 155 156 156 155 157 157 155 158 158 155 159 158 159 160 160 159 161 160 161 162 162 161 163 162 163 164 164 163 165 164 165 166 166 165 167 166 167 168 168 167 169 169 167 170 169 170 171 169 172 168 172 169 173 172 173 174 174 173 175 176 177 178 178 177 179 177 180 179 181 179 180 182 183 180 183 184 180 180 184 181 181 184 185 184 186 185 185 186 187 186 188 187 187 188 189 188 190 189 189 190 191 190 192 191 191 192 193 192 194 193 193 194 195 195 194 196 196 194 197 194 198 197 197 198 199 199 198 200 200 198 201 201 198 202 198 203 202 202 203 204 204 203 205 205 203 206 206 203 207 207 203 208 203 209 208 208 209 210 209 211 210 210 211 212 213 212 211 127 214 215 214 127 27 27 127 28 94 130 115 115 130 216 217 216 130 119 123 120 123 119 122 134 135 133 137 133 135 218 219 220 219 218 221 219 221 222 222 221 223 223 221 224 223 224 225 219 226 227 226 219 222 228 229 230 231 230 229 232 233 234 233 235 234 234 235 228 228 235 229 235 236 229 237 229 236 238 239 240 239 238 241 241 238 242 241 242 243 241 243 244 244 243 245 245 243 246 246 247 248 247 246 243 247 243 249 247 249 250 247 250 251 252 253 254 253 255 254 255 256 254 256 257 254 258 254 257 257 256 259 259 256 260 260 256 261 256 262 261 262 263 261 261 263 264 265 264 263 245 248 266 248 245 246 257 259 258 267 258 259</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7950\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7951\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID7954\">4.601075889039334 -2.174134840024081e-015 48.7636406962657 2.037464589866022 7.609471940084283e-015 47.76510832383121 3.980452047106612 -5.435337100060202e-016 47.19840364880276 0.4992661862172177 5.435337100060201e-016 48.03502039980045 0.2833523375142519 1.250127533013847e-014 49.33034537129416 5.54561003420752 -1.521894388016857e-014 51.40820980615734 4.061409857824966 1.793661243019867e-014 51.83995844320123 0.8770165959948693 -4.543125047755293e-032 52.78449258836944 0.8770165959948693 -4.543125047755293e-032 52.78449258836944 4.061409857824966 1.793661243019867e-014 51.83995844320123 0.2833523375142519 1.250127533013847e-014 49.33034537129416 5.54561003420752 -1.521894388016857e-014 51.40820980615734 4.601075889039334 -2.174134840024081e-015 48.7636406962657 0.4992661862172177 5.435337100060201e-016 48.03502039980045 2.037464589866022 7.609471940084283e-015 47.76510832383121 3.980452047106612 -5.435337100060202e-016 47.19840364880276</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID7954\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7952\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID7955\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID7955\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7953\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7951\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7952\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7953\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 4 6 7 8 9 10 9 11 10 11 12 10 10 12 13 13 12 14 15 14 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7956\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7957\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID7960\">9.242630683437863 -1.08706742001204e-015 36.2543616947717 8.487129863882558 -4.543125047755293e-032 36.37693753563284 9.1616728727195 1.35883427501505e-014 36.24190243728619 9.863412646094639 1.195774162013245e-014 36.34989889181868 10.07924743443558 -1.35883427501505e-014 38.53575978121435 7.650513112884828 1.08706742001204e-015 36.43085670253704 7.54251665835233 -5.978870810066222e-015 38.48184061431013 7.481549946351274 -4.891803390054182e-015 38.91366831171607 10.1102009225761 -1.630601130018061e-015 39.15654174387114 7.192680573015772 1.413187646015652e-014 40.9201748526154 10.16020524515394 5.435337100060202e-015 40.15939419688984 9.890451289908784 5.435337100060201e-016 40.34402838155643 8.730003296037628 2.011074727022275e-014 40.85665576895667 7.407639680729758 1.08706742001204e-015 41.12656784492587 7.407639680729758 1.08706742001204e-015 41.12656784492587 8.730003296037628 2.011074727022275e-014 40.85665576895667 7.192680573015772 1.413187646015652e-014 40.9201748526154 9.890451289908784 5.435337100060201e-016 40.34402838155643 10.16020524515394 5.435337100060202e-015 40.15939419688984 10.1102009225761 -1.630601130018061e-015 39.15654174387114 7.481549946351274 -4.891803390054182e-015 38.91366831171607 10.07924743443558 -1.35883427501505e-014 38.53575978121435 7.54251665835233 -5.978870810066222e-015 38.48184061431013 7.650513112884828 1.08706742001204e-015 36.43085670253704 8.487129863882558 -4.543125047755293e-032 36.37693753563284 9.863412646094639 1.195774162013245e-014 36.34989889181868 9.242630683437863 -1.08706742001204e-015 36.2543616947717 9.1616728727195 1.35883427501505e-014 36.24190243728619</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID7960\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7958\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID7961\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID7961\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7959\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7957\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7958\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7959\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 6 4 7 7 4 8 7 8 9 9 8 10 9 10 11 9 11 12 9 12 13 14 15 16 15 17 16 17 18 16 18 19 16 16 19 20 19 21 20 20 21 22 22 21 23 23 21 24 21 25 24 25 26 24 27 24 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7962\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7963\">\r\n\t\t\t\t\t<float_array count=\"138\" id=\"ID7966\">-10.11972633979475 -5.978870810066222e-015 31.81641961231469 -10.92930444697833 -2.717668550030101e-015 32.5855188141391 -10.56499429874572 1.08706742001204e-015 31.69498289623717 -10.07924743443557 1.08706742001204e-014 32.62599771949828 -10.84834663625998 7.065938230078262e-015 33.63797035347776 -9.957810718358035 -3.261202260036121e-015 34.81185860889395 -13.23660205245153 5.435337100060201e-016 33.96180159635118 -12.7103762827822 4.348269680048162e-015 35.86431014823258 -10.56499429874572 1.35883427501505e-014 36.39053591790191 -12.5079817559863 -2.717668550030101e-015 36.71436716077536 -10.24116305587229 1.08706742001204e-014 37.80729760547317 -11.29361459521094 -3.261202260036121e-015 42.46237172177875 -9.067274800456096 -5.435337100060202e-016 39.83124287343214 -8.257696693272521 1.250127533013847e-014 41.16704675028507 -8.460091220068412 7.609471940084283e-015 41.77423033067272 -9.229190421892813 3.261202260036121e-015 42.58380843785631 -11.09122006841504 -5.435337100060202e-016 43.30010906747312 -10.403078677309 6.522404520072242e-015 43.15051311288483 -10.80786773090079 1.304480904014448e-014 30.4401368301026 -12.95324971493728 5.435337100060202e-015 32.14025085518814 -11.25313568985176 7.609471940084283e-015 30.2377423033067 -11.49600912200683 -2.717668550030101e-015 31.85689851767388 -11.29361459521094 2.174134840024081e-015 33.47605473204105 -10.84834663625998 7.065938230078262e-015 33.63797035347776 -11.29361459521094 2.174134840024081e-015 33.47605473204105 -13.23660205245153 5.435337100060201e-016 33.96180159635118 -12.95324971493728 5.435337100060202e-015 32.14025085518814 -11.49600912200683 -2.717668550030101e-015 31.85689851767388 -10.80786773090079 1.304480904014448e-014 30.4401368301026 -11.25313568985176 7.609471940084283e-015 30.2377423033067 -10.403078677309 6.522404520072242e-015 43.15051311288483 -9.229190421892813 3.261202260036121e-015 42.58380843785631 -11.09122006841504 -5.435337100060202e-016 43.30010906747312 -11.29361459521094 -3.261202260036121e-015 42.46237172177875 -8.460091220068412 7.609471940084283e-015 41.77423033067272 -8.257696693272521 1.250127533013847e-014 41.16704675028507 -9.067274800456096 -5.435337100060202e-016 39.83124287343214 -10.24116305587229 1.08706742001204e-014 37.80729760547317 -12.5079817559863 -2.717668550030101e-015 36.71436716077536 -10.56499429874572 1.35883427501505e-014 36.39053591790191 -12.7103762827822 4.348269680048162e-015 35.86431014823258 -9.957810718358035 -3.261202260036121e-015 34.81185860889395 -10.07924743443557 1.08706742001204e-014 32.62599771949828 -10.92930444697833 -2.717668550030101e-015 32.5855188141391 -10.11972633979475 -5.978870810066222e-015 31.81641961231469 -10.56499429874572 1.08706742001204e-015 31.69498289623717</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"46\" source=\"#ID7966\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7964\">\r\n\t\t\t\t\t<float_array count=\"138\" id=\"ID7967\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"46\" source=\"#ID7967\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7965\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7963\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7964\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"42\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7965\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 7 5 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 11 13 14 11 14 15 11 15 16 16 15 17 18 19 20 19 18 21 19 21 22 19 22 6 6 22 4 23 24 25 25 24 26 24 27 26 27 28 26 29 26 28 30 31 32 32 31 33 31 34 33 34 35 33 35 36 33 36 37 33 33 37 38 37 39 38 38 39 40 39 41 40 40 41 25 25 41 23 41 42 23 23 42 43 42 44 43 45 43 44</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7968\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7969\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID7972\">-5.979605308769625 -1.08706742001204e-015 40.07015322392751 -7.265963511972632 -1.08706742001204e-014 39.7300456100342 -6.376369329162521 5.435337100060201e-016 39.55405176495724 -6.436145952109467 1.032714049011438e-014 40.18195463939564 -6.628941234519274 -5.435337100060202e-016 40.24873993330233 -6.628941234519274 -5.435337100060202e-016 40.24873993330233 -6.436145952109467 1.032714049011438e-014 40.18195463939564 -7.265963511972632 -1.08706742001204e-014 39.7300456100342 -5.979605308769625 -1.08706742001204e-015 40.07015322392751 -6.376369329162521 5.435337100060201e-016 39.55405176495724</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID7972\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7970\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID7973\">-3.60158978776117e-033 -1 1.249000902703301e-016 -3.60158978776117e-033 -1 1.249000902703301e-016 -3.60158978776117e-033 -1 1.249000902703301e-016 -3.60158978776117e-033 -1 1.249000902703301e-016 -3.60158978776117e-033 -1 1.249000902703301e-016 3.60158978776117e-033 1 -1.249000902703301e-016 3.60158978776117e-033 1 -1.249000902703301e-016 3.60158978776117e-033 1 -1.249000902703301e-016 3.60158978776117e-033 1 -1.249000902703301e-016 3.60158978776117e-033 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID7973\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7971\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7969\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7970\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7971\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 6 7 6 8 7 9 7 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7974\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7977\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID7980\">-2.833523375142528 1.630601130018061e-015 39.6679097486484 -3.332789561359745 5.435337100060202e-015 39.6154080850912 -2.732326111744583 1.032714049011438e-014 38.39984811149204 -2.961904705898234 -7.065938230078262e-015 39.65440946839624 -3.460946408209804 4.891803390054182e-015 39.64591395654733 -3.154018444497344 -1.08706742001204e-015 38.37400228050166 -3.332789561359745 5.435337100060202e-015 39.6154080850912 -2.732326111744583 1.032714049011438e-014 38.39984811149204 -3.460946408209804 4.891803390054182e-015 39.64591395654733 -3.154018444497344 -1.08706742001204e-015 38.37400228050166 -2.961904705898234 -7.065938230078262e-015 39.65440946839624 -2.833523375142528 1.630601130018061e-015 39.6679097486484</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID7980\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7978\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID7981\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID7981\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7979\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7977\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7978\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7979\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 2 4 5 4 2 1 6 7 8 9 8 7 10 11 6 7 6 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7982\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7985\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID7988\">-2.712086659064993 -4.891803390054182e-015 38.40104092431583 -2.833523375142528 1.630601130018061e-015 39.6679097486484 -2.732326111744583 1.032714049011438e-014 38.39984811149204 -1.200847838868303 2.717668550030101e-015 38.50887925812428 -0.7893386545039838 -2.174134840024081e-015 38.57450546806281 -2.307297605473206 4.348269680048162e-015 39.72324641889964 -0.9107753705815278 1.630601130018061e-015 39.89542269636434 -0.9107753705815278 1.630601130018061e-015 39.89542269636434 -0.7893386545039838 -2.174134840024081e-015 38.57450546806281 -2.307297605473206 4.348269680048162e-015 39.72324641889964 -2.833523375142528 1.630601130018061e-015 39.6679097486484 -1.200847838868303 2.717668550030101e-015 38.50887925812428 -2.712086659064993 -4.891803390054182e-015 38.40104092431583 -2.732326111744583 1.032714049011438e-014 38.39984811149204</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID7988\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7986\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID7989\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID7989\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7987\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7985\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7986\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7987\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 7 8 9 9 8 10 8 11 10 11 12 10 13 10 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7990\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7991\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID7994\">0.6611818076539343 2.174134840024081e-015 38.80582997790763 -0.9107753705815278 1.630601130018061e-015 39.89542269636434 -0.7893386545039838 -2.174134840024081e-015 38.57450546806281 2.793044469783355 1.08706742001204e-015 39.31845736530786 2.712086659064993 5.978870810066222e-015 40.18482689653126 -0.3373505647805011 -7.609471940084283e-015 39.96611985105472 1.389802104119155 8.153005650090303e-015 40.28995109392815 1.389802104119155 8.153005650090303e-015 40.28995109392815 2.712086659064993 5.978870810066222e-015 40.18482689653126 -0.3373505647805011 -7.609471940084283e-015 39.96611985105472 -0.9107753705815278 1.630601130018061e-015 39.89542269636434 2.793044469783355 1.08706742001204e-015 39.31845736530786 0.6611818076539343 2.174134840024081e-015 38.80582997790763 -0.7893386545039838 -2.174134840024081e-015 38.57450546806281</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID7994\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID7992\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID7995\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID7995\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID7993\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7991\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID7992\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID7993\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 7 8 9 9 8 10 8 11 10 11 12 10 13 10 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID7996\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID7999\">\r\n\t\t\t\t\t<float_array count=\"492\" id=\"ID8002\">7.056769794042189 1.141420791012643e-014 29.38752717003989 6.463184595923602 5.435337100060202e-015 29.60336195838084 5.950399087799307 5.435337100060202e-015 29.54944279147662 7.029889270952106 9.783606780108364e-015 31.33051462728049 -1.84807140329493 4.076502825045151e-016 7.73147092360319 -3.562143671607757 6.794171375075253e-016 7.569555302166478 -2.631128848346639 4.076502825045151e-016 7.3266818700114 -4.614595210946411 -9.511839925105353e-016 8.014823261117444 -1.781071835803874 -8.153005650090302e-016 8.21721778791334 -5.424173318129985 1.766484557519566e-015 10.44355758266818 -1.376282782212087 -8.153005650090302e-016 11.41505131128848 -6.75997719498289 -1.358834275015051e-015 13.31755986316989 -1.497719498289622 -1.766484557519566e-015 12.22462941847205 -1.132247554677931 -4.543125047755293e-032 14.60019705194806 -7.893386545039907 -5.435337100060202e-016 18.41790193842645 -1.841790193842646 -2.717668550030101e-015 16.39395667046749 -2.118422400584375 8.153005650090302e-016 19.42987457240592 -8.702964652223486 2.717668550030101e-015 21.66965462870581 -1.875548968429305 -5.435337100060202e-015 22.20947878064423 -8.918878500926448 -8.696539360096323e-015 26.71591941633408 -1.26072653727681 4.620036535051172e-015 25.58253307698466 2.995438996579245 1.35883427501505e-016 3.238312428734317 1.740592930444693 4.416211393798913e-016 3.013838499015236 1.90250855188141 4.416211393798913e-016 2.995438996579244 0.121436716077544 -3.397085687537631e-017 3.197833523375139 -1.942987457240591 -4.076502825045152e-016 4.128848346636257 3.683580387685292 1.35883427501505e-016 5.140820980615737 -2.064424173318126 -5.435337100060202e-016 4.295823831242867 -2.266818700114024 1.698542843768813e-015 4.574116305587225 -2.251639110604331 -2.038251412522576e-016 4.695553021664768 -2.104903078677308 1.698542843768813e-015 5.869441277080956 3.60262257696693 2.717668550030101e-016 7.650513112884831 3.885974914481182 5.435337100060201e-016 8.662485746864308 4.655074116305584 2.445901695027091e-015 12.58893956670467 5.181299885974915 -8.153005650090302e-016 15.62485746864308 -1.092930444697835 -1.08706742001204e-015 14.85575826681869 -1.173888255416189 -5.435337100060202e-016 17.12257696693271 5.54561003420752 -4.348269680048162e-015 18.4988597491448 -1.376282782212087 1.630601130018061e-015 20.88711516533636 6.152793614595215 2.717668550030101e-016 21.41334093500569 -1.092930444697835 2.717668550030101e-015 22.50627137970352 6.112314709236024 3.261202260036121e-015 22.99201824401368 6.638540478905355 3.532969115039131e-015 25.17787913340935 7.205245153933859 1.630601130018061e-015 27.77184646933034 6.75997719498289 1.630601130018061e-015 27.8493287663911 -8.702964652223486 -2.717668550030101e-015 33.84036488027364 6.220232103406501 -5.978870810066222e-015 32.08617356755987 6.732938551168755 1.630601130018061e-015 33.7322103050171 7.299643226197268 -3.804735970042141e-015 34.64978486673319 -9.148232611174459 -3.261202260036121e-015 34.77137970353477 7.272762703107176 3.261202260036121e-015 35.24352818557582 7.317840738089926 5.435337100060201e-016 35.2623033632322 -9.148232611174459 1.08706742001204e-015 36.14766248574686 6.733096671892808 4.891803390054182e-015 36.13406410347775 5.59960826147377 5.435337100060202e-015 37.99609374999998 -3.278791334093505 -2.174134840024081e-015 37.30131128848345 -3.885974914481182 5.435337100060201e-016 37.26083238312427 -2.995438996579245 -2.717668550030101e-015 37.74657924743443 -3.154018444497344 -1.08706742001204e-015 38.37400228050166 -2.712086659064993 -4.891803390054182e-015 38.40104092431583 -1.200847838868303 2.717668550030101e-015 38.50887925812428 -0.7893386545039838 -2.174134840024081e-015 38.57450546806281 0.6611818076539343 2.174134840024081e-015 38.80582997790763 3.332789561359754 -4.543125047755293e-032 39.42645381984034 4.319764283855968 6.522404520072242e-015 39.73464285099828 -2.732326111744583 1.032714049011438e-014 38.39984811149204 2.793044469783355 1.08706742001204e-015 39.31845736530786 2.712086659064993 5.978870810066222e-015 40.18482689653126 3.224793106827256 -2.717668550030101e-015 40.14406573538813 -8.298175598631694 -3.261202260036121e-015 37.36202964652223 -6.75997719498289 3.261202260036121e-015 37.76681870011401 -7.225484606613454 2.717668550030101e-015 38.09064994298743 -7.488597491448118 1.304480904014448e-014 38.93058722919041 -7.488597491448118 1.304480904014448e-014 38.93058722919041 -7.225484606613454 2.717668550030101e-015 38.09064994298743 -8.298175598631694 -3.261202260036121e-015 37.36202964652223 -6.75997719498289 3.261202260036121e-015 37.76681870011401 -3.885974914481182 5.435337100060201e-016 37.26083238312427 -9.148232611174459 1.08706742001204e-015 36.14766248574686 3.224793106827256 -2.717668550030101e-015 40.14406573538813 3.332789561359754 -4.543125047755293e-032 39.42645381984034 2.712086659064993 5.978870810066222e-015 40.18482689653126 2.793044469783355 1.08706742001204e-015 39.31845736530786 0.6611818076539343 2.174134840024081e-015 38.80582997790763 -2.732326111744583 1.032714049011438e-014 38.39984811149204 -2.712086659064993 -4.891803390054182e-015 38.40104092431583 -3.154018444497344 -1.08706742001204e-015 38.37400228050166 4.319764283855968 6.522404520072242e-015 39.73464285099828 5.59960826147377 5.435337100060202e-015 37.99609374999998 -0.7893386545039838 -2.174134840024081e-015 38.57450546806281 -1.200847838868303 2.717668550030101e-015 38.50887925812428 -2.995438996579245 -2.717668550030101e-015 37.74657924743443 -3.278791334093505 -2.174134840024081e-015 37.30131128848345 6.733096671892808 4.891803390054182e-015 36.13406410347775 7.272762703107176 3.261202260036121e-015 35.24352818557582 -9.148232611174459 -3.261202260036121e-015 34.77137970353477 7.317840738089926 5.435337100060201e-016 35.2623033632322 7.299643226197268 -3.804735970042141e-015 34.64978486673319 -8.702964652223486 -2.717668550030101e-015 33.84036488027364 6.732938551168755 1.630601130018061e-015 33.7322103050171 6.220232103406501 -5.978870810066222e-015 32.08617356755987 5.950399087799307 5.435337100060202e-015 29.54944279147662 7.056769794042189 1.141420791012643e-014 29.38752717003989 6.75997719498289 1.630601130018061e-015 27.8493287663911 -8.918878500926448 -8.696539360096323e-015 26.71591941633408 7.205245153933859 1.630601130018061e-015 27.77184646933034 -1.26072653727681 4.620036535051172e-015 25.58253307698466 6.638540478905355 3.532969115039131e-015 25.17787913340935 6.112314709236024 3.261202260036121e-015 22.99201824401368 -1.092930444697835 2.717668550030101e-015 22.50627137970352 6.152793614595215 2.717668550030101e-016 21.41334093500569 -1.376282782212087 1.630601130018061e-015 20.88711516533636 5.54561003420752 -4.348269680048162e-015 18.4988597491448 -1.173888255416189 -5.435337100060202e-016 17.12257696693271 5.181299885974915 -8.153005650090302e-016 15.62485746864308 -1.092930444697835 -1.08706742001204e-015 14.85575826681869 -1.132247554677931 -4.543125047755293e-032 14.60019705194806 4.655074116305584 2.445901695027091e-015 12.58893956670467 -1.497719498289622 -1.766484557519566e-015 12.22462941847205 -1.376282782212087 -8.153005650090302e-016 11.41505131128848 3.885974914481182 5.435337100060201e-016 8.662485746864308 -1.781071835803874 -8.153005650090302e-016 8.21721778791334 -1.84807140329493 4.076502825045151e-016 7.73147092360319 3.60262257696693 2.717668550030101e-016 7.650513112884831 -2.104903078677308 1.698542843768813e-015 5.869441277080956 3.683580387685292 1.35883427501505e-016 5.140820980615737 -2.251639110604331 -2.038251412522576e-016 4.695553021664768 -2.266818700114024 1.698542843768813e-015 4.574116305587225 -2.064424173318126 -5.435337100060202e-016 4.295823831242867 -1.942987457240591 -4.076502825045152e-016 4.128848346636257 2.995438996579245 1.35883427501505e-016 3.238312428734317 0.121436716077544 -3.397085687537631e-017 3.197833523375139 1.740592930444693 4.416211393798913e-016 3.013838499015236 1.90250855188141 4.416211393798913e-016 2.995438996579244 -1.875548968429305 -5.435337100060202e-015 22.20947878064423 -8.702964652223486 2.717668550030101e-015 21.66965462870581 -2.118422400584375 8.153005650090302e-016 19.42987457240592 -7.893386545039907 -5.435337100060202e-016 18.41790193842645 -1.841790193842646 -2.717668550030101e-015 16.39395667046749 -6.75997719498289 -1.358834275015051e-015 13.31755986316989 -5.424173318129985 1.766484557519566e-015 10.44355758266818 -4.614595210946411 -9.511839925105353e-016 8.014823261117444 -3.562143671607757 6.794171375075253e-016 7.569555302166478 -2.631128848346639 4.076502825045151e-016 7.3266818700114 7.029889270952106 9.783606780108364e-015 31.33051462728049 6.463184595923602 5.435337100060202e-015 29.60336195838084 6.975970104047887 5.435337100060201e-016 39.18358038768529 5.437692640037062 -1.08706742001204e-014 39.12966122078106 7.164766248574686 2.717668550030101e-015 38.05017103762823 5.842481693628849 6.522404520072242e-015 39.23749955458949 6.942055893806069 -4.891803390054182e-015 39.36445617564164 7.299643226197268 1.630601130018061e-015 36.26894108110034 7.650513112884828 1.08706742001204e-015 36.43085670253704 5.113861397163619 1.630601130018061e-015 39.45349246365448 4.266964796897636 2.717668550030101e-015 39.80636604709866 4.266964796897636 2.717668550030101e-015 39.80636604709866 5.113861397163619 1.630601130018061e-015 39.45349246365448 5.437692640037062 -1.08706742001204e-014 39.12966122078106 7.164766248574686 2.717668550030101e-015 38.05017103762823 7.650513112884828 1.08706742001204e-015 36.43085670253704 7.299643226197268 1.630601130018061e-015 36.26894108110034 6.942055893806069 -4.891803390054182e-015 39.36445617564164 6.975970104047887 5.435337100060201e-016 39.18358038768529 5.842481693628849 6.522404520072242e-015 39.23749955458949</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"164\" source=\"#ID8002\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8000\">\r\n\t\t\t\t\t<float_array count=\"492\" id=\"ID8003\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"164\" source=\"#ID8003\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8001\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID7999\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8000\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"174\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8001\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 7 4 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 11 13 14 14 13 15 14 15 16 14 16 17 17 16 18 17 18 19 19 18 20 21 22 23 22 21 24 24 21 25 25 21 26 25 26 27 27 26 28 28 26 29 29 26 30 30 26 31 30 31 4 4 31 32 4 32 8 8 32 10 10 32 33 10 33 12 12 33 13 13 33 34 13 34 35 35 34 36 36 34 37 36 37 38 38 37 39 38 39 40 40 39 41 40 41 20 20 41 42 20 42 43 20 43 19 19 43 44 19 44 45 45 44 2 2 44 0 45 2 46 45 46 47 45 47 48 45 48 49 49 48 50 50 48 51 50 52 49 52 50 53 52 53 54 52 54 55 52 55 56 55 54 57 57 54 58 58 54 59 59 54 60 60 54 61 61 54 62 62 54 63 63 54 64 58 59 65 62 63 66 63 67 66 67 63 68 56 69 52 69 56 70 69 70 71 69 71 72 73 74 75 74 76 75 76 77 75 78 75 77 79 80 81 82 81 80 82 80 83 84 85 86 87 88 80 80 88 83 83 88 89 89 88 90 90 88 85 85 88 86 86 88 91 91 88 92 77 92 78 92 88 78 88 93 78 93 94 78 95 78 94 96 97 94 94 97 95 95 97 98 97 99 98 99 100 98 100 101 98 102 103 101 101 103 98 98 103 104 103 105 104 104 105 106 105 107 106 107 108 106 106 108 109 108 110 109 109 110 111 110 112 111 111 112 113 112 114 113 113 114 115 115 114 116 114 117 116 116 117 118 118 117 119 117 120 119 119 120 121 121 120 122 120 123 122 122 123 124 123 125 124 124 125 126 126 125 127 127 125 128 128 125 129 125 130 129 129 130 131 131 130 132 133 132 130 106 134 104 104 134 135 134 136 135 135 136 137 136 138 137 138 116 137 137 116 139 116 118 139 118 119 139 139 119 140 119 121 140 140 121 141 121 122 141 141 122 142 143 142 122 144 102 145 101 145 102 146 147 148 147 146 149 149 146 150 151 53 50 53 151 54 54 151 152 54 152 148 54 148 64 64 148 147 64 147 153 64 153 154 155 156 87 156 157 87 157 158 87 87 158 88 158 159 88 159 160 88 88 160 93 94 93 160 161 162 163 163 162 157 158 157 162</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8004\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8005\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8008\">9.134792349629418 -2.174134840024081e-015 35.4864016177309 8.837841629846066 9.240073070102343e-015 35.40544380701255 9.247775005025696 3.804735970042141e-015 35.08651777619244 7.920425188854043 7.065938230078262e-015 35.51328214082097 9.242630683437863 -1.08706742001204e-015 36.2543616947717 9.1616728727195 1.35883427501505e-014 36.24190243728619 7.317840738089926 5.435337100060201e-016 35.2623033632322 7.299643226197268 1.630601130018061e-015 36.26894108110034 7.272762703107176 3.261202260036121e-015 35.24352818557582 8.487129863882558 -4.543125047755293e-032 36.37693753563284 7.650513112884828 1.08706742001204e-015 36.43085670253704 7.650513112884828 1.08706742001204e-015 36.43085670253704 8.487129863882558 -4.543125047755293e-032 36.37693753563284 7.299643226197268 1.630601130018061e-015 36.26894108110034 9.1616728727195 1.35883427501505e-014 36.24190243728619 7.920425188854043 7.065938230078262e-015 35.51328214082097 7.317840738089926 5.435337100060201e-016 35.2623033632322 7.272762703107176 3.261202260036121e-015 35.24352818557582 9.242630683437863 -1.08706742001204e-015 36.2543616947717 9.134792349629418 -2.174134840024081e-015 35.4864016177309 8.837841629846066 9.240073070102343e-015 35.40544380701255 9.247775005025696 3.804735970042141e-015 35.08651777619244</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8008\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8006\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8009\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8009\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8007\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8005\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8006\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8007\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 6 7 8 7 6 3 7 3 5 7 5 9 7 9 10 11 12 13 12 14 13 14 15 13 15 16 13 17 13 16 14 18 15 18 19 15 15 19 20 21 20 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8010\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8011\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8014\">4.319764283855968 6.522404520072242e-015 39.73464285099828 3.224793106827256 -2.717668550030101e-015 40.14406573538813 3.332789561359754 -4.543125047755293e-032 39.42645381984034 4.266964796897636 2.717668550030101e-015 39.80636604709866 4.142367668543328 1.08706742001204e-015 39.85828151724628 3.764538198403646 -1.08706742001204e-015 40.10115494940136 3.764538198403646 -1.08706742001204e-015 40.10115494940136 4.142367668543328 1.08706742001204e-015 39.85828151724628 3.224793106827256 -2.717668550030101e-015 40.14406573538813 4.266964796897636 2.717668550030101e-015 39.80636604709866 4.319764283855968 6.522404520072242e-015 39.73464285099828 3.332789561359754 -4.543125047755293e-032 39.42645381984034</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8014\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8012\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8015\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8015\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8013\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8011\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8012\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8013\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 6 7 8 7 9 8 9 10 8 11 8 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8016\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8017\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8020\">10.26820169968643 5.435337100060202e-015 35.4323243301026 9.674458380843786 -2.119781469023479e-014 34.75778132126568 10.05220879062144 6.522404520072242e-015 34.73074267745153 9.323588494156217 3.804735970042141e-015 35.02753527651081 9.247775005025696 3.804735970042141e-015 35.08651777619244 9.134792349629418 -2.174134840024081e-015 35.4864016177309 10.18724388896808 1.250127533013847e-014 36.02606764894526 9.242630683437863 -1.08706742001204e-015 36.2543616947717 9.863412646094639 1.195774162013245e-014 36.34989889181868 9.863412646094639 1.195774162013245e-014 36.34989889181868 10.18724388896808 1.250127533013847e-014 36.02606764894526 9.242630683437863 -1.08706742001204e-015 36.2543616947717 9.134792349629418 -2.174134840024081e-015 35.4864016177309 10.26820169968643 5.435337100060202e-015 35.4323243301026 9.247775005025696 3.804735970042141e-015 35.08651777619244 9.323588494156217 3.804735970042141e-015 35.02753527651081 9.674458380843786 -2.119781469023479e-014 34.75778132126568 10.05220879062144 6.522404520072242e-015 34.73074267745153</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8020\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8018\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8021\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8021\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8019\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8017\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8018\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8019\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7 7 6 8 9 10 11 11 10 12 10 13 12 12 13 14 14 13 15 15 13 16 17 16 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8022\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8023\">\r\n\t\t\t\t\t<float_array count=\"138\" id=\"ID8026\">7.54251665835233 -1.08706742001204e-015 27.90324793329531 7.205245153933859 1.630601130018061e-015 27.77184646933034 7.380601036915613 -5.978870810066222e-015 27.74133231185861 6.75997719498289 1.630601130018061e-015 27.8493287663911 7.056769794042189 1.141420791012643e-014 29.38752717003989 8.109221333380843 5.978870810066222e-015 28.06516355473202 8.514010386972631 -3.261202260036121e-015 28.20019865307867 9.377665781784497 5.435337100060202e-015 29.52240414766247 7.029889270952106 9.783606780108364e-015 31.33051462728049 9.782454835376283 -4.543125047755293e-032 29.90031267816421 9.971250979903086 -5.435337100060202e-015 31.89721930230899 6.463184595923602 5.435337100060202e-015 29.60336195838084 6.220232103406501 -5.978870810066222e-015 32.08617356755987 5.950399087799307 5.435337100060202e-015 29.54944279147662 9.647419737029651 -5.435337100060202e-016 33.48933687286202 6.732938551168755 1.630601130018061e-015 33.7322103050171 9.674458380843786 -2.119781469023479e-014 34.75778132126568 7.299643226197268 -3.804735970042141e-015 34.64978486673319 7.317840738089926 5.435337100060201e-016 35.2623033632322 9.323588494156217 3.804735970042141e-015 35.02753527651081 9.247775005025696 3.804735970042141e-015 35.08651777619244 8.837841629846066 9.240073070102343e-015 35.40544380701255 7.920425188854043 7.065938230078262e-015 35.51328214082097 7.920425188854043 7.065938230078262e-015 35.51328214082097 8.837841629846066 9.240073070102343e-015 35.40544380701255 7.317840738089926 5.435337100060201e-016 35.2623033632322 9.247775005025696 3.804735970042141e-015 35.08651777619244 9.323588494156217 3.804735970042141e-015 35.02753527651081 9.674458380843786 -2.119781469023479e-014 34.75778132126568 7.299643226197268 -3.804735970042141e-015 34.64978486673319 6.732938551168755 1.630601130018061e-015 33.7322103050171 9.647419737029651 -5.435337100060202e-016 33.48933687286202 6.220232103406501 -5.978870810066222e-015 32.08617356755987 9.971250979903086 -5.435337100060202e-015 31.89721930230899 7.029889270952106 9.783606780108364e-015 31.33051462728049 6.463184595923602 5.435337100060202e-015 29.60336195838084 5.950399087799307 5.435337100060202e-015 29.54944279147662 9.782454835376283 -4.543125047755293e-032 29.90031267816421 9.377665781784497 5.435337100060202e-015 29.52240414766247 7.056769794042189 1.141420791012643e-014 29.38752717003989 8.514010386972631 -3.261202260036121e-015 28.20019865307867 8.109221333380843 5.978870810066222e-015 28.06516355473202 7.54251665835233 -1.08706742001204e-015 27.90324793329531 6.75997719498289 1.630601130018061e-015 27.8493287663911 7.205245153933859 1.630601130018061e-015 27.77184646933034 7.380601036915613 -5.978870810066222e-015 27.74133231185861</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"46\" source=\"#ID8026\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8024\">\r\n\t\t\t\t\t<float_array count=\"138\" id=\"ID8027\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"46\" source=\"#ID8027\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8025\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8023\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8024\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"42\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8025\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 4 6 7 4 7 8 8 7 9 8 9 10 11 12 13 12 11 8 12 8 10 12 10 14 12 14 15 15 14 16 15 16 17 17 16 18 18 16 19 18 19 20 18 20 21 18 21 22 23 24 25 24 26 25 26 27 25 27 28 25 25 28 29 29 28 30 28 31 30 30 31 32 31 33 32 33 34 32 34 35 32 36 32 35 33 37 34 37 38 34 34 38 39 38 40 39 40 41 39 41 42 39 39 42 43 43 42 44 45 44 42</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8028\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8029\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8032\">-5.221778791334088 -1.630601130018061e-015 6.557582668187004 -3.562143671607757 6.794171375075253e-016 7.569555302166478 -4.614595210946411 -9.511839925105353e-016 8.014823261117444 -2.631128848346639 4.076502825045151e-016 7.3266818700114 -2.874002280501709 3.397085687537626e-016 4.290763968072974 -6.071835803876851 6.794171375075248e-017 4.371721778791331 -4.857468643101481 1.155009133762793e-015 3.966932725199543 -2.251639110604331 -2.038251412522576e-016 4.695553021664768 -5.869441277080954 -1.358834275015051e-015 5.46465222348917 -2.104903078677308 1.698542843768813e-015 5.869441277080956 -1.84807140329493 4.076502825045151e-016 7.73147092360319 -1.84807140329493 4.076502825045151e-016 7.73147092360319 -2.104903078677308 1.698542843768813e-015 5.869441277080956 -2.631128848346639 4.076502825045151e-016 7.3266818700114 -5.221778791334088 -1.630601130018061e-015 6.557582668187004 -5.869441277080954 -1.358834275015051e-015 5.46465222348917 -2.251639110604331 -2.038251412522576e-016 4.695553021664768 -6.071835803876851 6.794171375075248e-017 4.371721778791331 -2.874002280501709 3.397085687537626e-016 4.290763968072974 -4.857468643101481 1.155009133762793e-015 3.966932725199543 -3.562143671607757 6.794171375075253e-016 7.569555302166478 -4.614595210946411 -9.511839925105353e-016 8.014823261117444</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8032\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8030\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8033\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8033\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8031\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8029\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8030\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8031\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 5 7 8 8 7 9 8 9 0 0 9 3 3 9 10 11 12 13 13 12 14 14 12 15 12 16 15 15 16 17 16 18 17 19 17 18 13 14 20 21 20 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8034\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8035\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8038\">1.21436716077537 4.246357109422028e-017 0.2428734321550751 -2.793044469783355 1.91086069923991e-017 0.1214367160775376 0 0 -4.827549116068932e-031 -2.914481185860891 9.341985640728468e-017 0.6476624857468644 1.90250855188141 1.019125706261287e-016 0.8095781071835808 -2.428734321550741 -1.698542843768814e-016 2.793044469783353 1.740592930444693 4.416211393798913e-016 3.013838499015236 0.121436716077544 -3.397085687537631e-017 3.197833523375139 -1.942987457240591 -4.076502825045152e-016 4.128848346636257 -2.064424173318126 -5.435337100060202e-016 4.295823831242867 -2.064424173318126 -5.435337100060202e-016 4.295823831242867 -1.942987457240591 -4.076502825045152e-016 4.128848346636257 -2.428734321550741 -1.698542843768814e-016 2.793044469783353 0.121436716077544 -3.397085687537631e-017 3.197833523375139 1.740592930444693 4.416211393798913e-016 3.013838499015236 1.90250855188141 1.019125706261287e-016 0.8095781071835808 -2.914481185860891 9.341985640728468e-017 0.6476624857468644 1.21436716077537 4.246357109422028e-017 0.2428734321550751 -2.793044469783355 1.91086069923991e-017 0.1214367160775376 0 0 -4.827549116068932e-031</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8038\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8036\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8039\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8039\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8037\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8035\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8036\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8037\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 5 7 8 5 8 9 10 11 12 11 13 12 13 14 12 14 15 12 12 15 16 15 17 16 16 17 18 19 18 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8040\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8041\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID8044\">-3.460946408209804 4.891803390054182e-015 39.64591395654733 -4.189566704675033 6.522404520072242e-015 39.24429874572407 -3.154018444497344 -1.08706742001204e-015 38.37400228050166 -3.278791334093505 -2.174134840024081e-015 37.30131128848345 -6.75997719498289 3.261202260036121e-015 37.76681870011401 -3.885974914481182 5.435337100060201e-016 37.26083238312427 -2.995438996579245 -2.717668550030101e-015 37.74657924743443 -5.343215507411627 7.065938230078262e-015 37.94897377423029 -5.100342075256561 1.08706742001204e-015 38.13112884834661 -5.214188996579241 1.630601130018061e-015 39.34549600912197 -7.225484606613454 2.717668550030101e-015 38.09064994298743 -6.213511972633977 5.435337100060201e-016 38.69783352337512 -7.488597491448118 1.304480904014448e-014 38.93058722919041 -6.476624857468639 -4.543125047755293e-032 39.42645381984034 -7.751710376282781 -5.435337100060202e-016 39.7705245153934 -6.376369329162521 5.435337100060201e-016 39.55405176495724 -7.265963511972632 -1.08706742001204e-014 39.7300456100342 -7.265963511972632 -1.08706742001204e-014 39.7300456100342 -6.376369329162521 5.435337100060201e-016 39.55405176495724 -7.751710376282781 -5.435337100060202e-016 39.7705245153934 -6.476624857468639 -4.543125047755293e-032 39.42645381984034 -7.488597491448118 1.304480904014448e-014 38.93058722919041 -6.213511972633977 5.435337100060201e-016 38.69783352337512 -7.225484606613454 2.717668550030101e-015 38.09064994298743 -5.343215507411627 7.065938230078262e-015 37.94897377423029 -6.75997719498289 3.261202260036121e-015 37.76681870011401 -4.189566704675033 6.522404520072242e-015 39.24429874572407 -3.154018444497344 -1.08706742001204e-015 38.37400228050166 -5.214188996579241 1.630601130018061e-015 39.34549600912197 -5.100342075256561 1.08706742001204e-015 38.13112884834661 -2.995438996579245 -2.717668550030101e-015 37.74657924743443 -3.278791334093505 -2.174134840024081e-015 37.30131128848345 -3.885974914481182 5.435337100060201e-016 37.26083238312427 -3.460946408209804 4.891803390054182e-015 39.64591395654733 -5.100342075256561 1.08706742001204e-015 38.13112884834661 -6.213511972633977 5.435337100060201e-016 38.69783352337512 -5.343215507411627 7.065938230078262e-015 37.94897377423029 -5.214188996579241 1.630601130018061e-015 39.34549600912197 -6.476624857468639 -4.543125047755293e-032 39.42645381984034 -5.221778791334088 -4.543125047755293e-032 39.42645381984034 -4.973121525451282 -4.891803390054182e-015 39.84563242343099 -6.376369329162521 5.435337100060201e-016 39.55405176495724 -5.979605308769625 -1.08706742001204e-015 40.07015322392751 -5.979605308769625 -1.08706742001204e-015 40.07015322392751 -4.973121525451282 -4.891803390054182e-015 39.84563242343099 -6.376369329162521 5.435337100060201e-016 39.55405176495724 -6.476624857468639 -4.543125047755293e-032 39.42645381984034 -5.221778791334088 -4.543125047755293e-032 39.42645381984034 -5.214188996579241 1.630601130018061e-015 39.34549600912197 -6.213511972633977 5.435337100060201e-016 38.69783352337512 -5.100342075256561 1.08706742001204e-015 38.13112884834661 -5.343215507411627 7.065938230078262e-015 37.94897377423029</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID8044\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8042\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID8045\">0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 0 -1 1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -0 1 -1.249000902703301e-016 -1.013704794990459e-015 -1 -3.339988456328372e-015 -1.013704794990459e-015 -1 -3.339988456328372e-015 -1.013704794990459e-015 -1 -3.339988456328372e-015 -1.013704794990459e-015 -1 -3.339988456328372e-015 -1.013704794990459e-015 -1 -3.339988456328372e-015 -1.013704794990459e-015 -1 -3.339988456328372e-015 -1.013704794990459e-015 -1 -3.339988456328372e-015 -1.013704794990459e-015 -1 -3.339988456328372e-015 -1.013704794990459e-015 -1 -3.339988456328372e-015 1.013704794990459e-015 1 3.339988456328372e-015 1.013704794990459e-015 1 3.339988456328372e-015 1.013704794990459e-015 1 3.339988456328372e-015 1.013704794990459e-015 1 3.339988456328372e-015 1.013704794990459e-015 1 3.339988456328372e-015 1.013704794990459e-015 1 3.339988456328372e-015 1.013704794990459e-015 1 3.339988456328372e-015 1.013704794990459e-015 1 3.339988456328372e-015 1.013704794990459e-015 1 3.339988456328372e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID8045\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8043\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8041\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8042\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"44\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8043\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 4 6 7 7 6 2 7 2 8 8 2 9 9 2 1 7 10 4 10 7 11 10 11 12 12 11 13 12 13 14 14 13 15 14 15 16 17 18 19 18 20 19 19 20 21 20 22 21 21 22 23 22 24 23 25 23 24 26 27 28 28 27 29 29 27 24 27 30 24 24 30 25 30 31 25 32 25 31 27 26 33 34 35 36 35 34 37 35 37 38 38 37 39 38 39 40 38 40 41 41 40 42 43 44 45 45 44 46 44 47 46 47 48 46 46 48 49 48 50 49 51 49 50</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8046\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8047\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID8050\">-3.460946408209804 4.891803390054182e-015 39.64591395654733 -5.214188996579241 1.630601130018061e-015 39.34549600912197 -4.189566704675033 6.522404520072242e-015 39.24429874572407 -5.221778791334088 -4.543125047755293e-032 39.42645381984034 -4.973121525451282 -4.891803390054182e-015 39.84563242343099 -4.973121525451282 -4.891803390054182e-015 39.84563242343099 -3.460946408209804 4.891803390054182e-015 39.64591395654733 -5.221778791334088 -4.543125047755293e-032 39.42645381984034 -5.214188996579241 1.630601130018061e-015 39.34549600912197 -4.189566704675033 6.522404520072242e-015 39.24429874572407</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID8050\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8048\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID8051\">4.294127033561057e-015 -1 -1.369104105005678e-014 4.294127033561057e-015 -1 -1.369104105005678e-014 4.294127033561057e-015 -1 -1.369104105005678e-014 4.294127033561057e-015 -1 -1.369104105005678e-014 4.294127033561057e-015 -1 -1.369104105005678e-014 -4.294127033561057e-015 1 1.369104105005678e-014 -4.294127033561057e-015 1 1.369104105005678e-014 -4.294127033561057e-015 1 1.369104105005678e-014 -4.294127033561057e-015 1 1.369104105005678e-014 -4.294127033561057e-015 1 1.369104105005678e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID8051\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8049\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8047\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8048\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8049\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 7 6 8 9 8 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8052\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8053\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID8055\">6.247270747220636 1.141420791012643e-014 43.20443227978901 6.423990884846775 3.804735970042141e-015 42.21301649060697 5.59960826147377 1.032714049011438e-014 45.7682016996864 5.761523882910486 3.043788776033713e-014 48.16989737742295 6.247270747220636 -1.467541017016255e-014 50.76054732041047 6.166312936502274 -4.543125047755293e-032 52.67657519419895</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID8055\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8054\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8053\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8054\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8056\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8057\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID8059\">-1.335803876852914 3.804735970042141e-015 26.95895096921322 -1.26072653727681 4.620036535051172e-015 25.58253307698466 -1.821550741163056 1.08706742001204e-015 30.15678449258835 -1.821550741163056 1.08706742001204e-014 31.37115165336372</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID8059\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8058\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8057\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8058\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8060\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8061\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID8063\">-7.785390090507409 1.576247759017459e-014 51.57012542759406 -7.434599264181871 7.609471940084283e-015 53.594070695553 -7.974344355758269 3.804735970042141e-015 48.95243684079246 -7.623474469070692 2.717668550030101e-015 46.49682199615164 -7.434599264181871 7.065938230078262e-015 44.33784162984604 -7.48162656263429 -3.261202260036121e-015 43.79702769764324</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID8063\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8062\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8061\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8062\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8069\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8070\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8073\">1.663816151269227 6.794564910705958e-014 1.482212252388625 -1.145973216276795 0 0 0 0 0 -2.131937444926908 2.087219286295294e-014 0.4463913395940624 -2.131937444926908 6.483702463810914e-014 1.401369019824721 -1.068613770100173 1.145750161413162e-013 2.498646390904667 1.663816151269227 1.296740492762183e-013 2.141346013836709 0.6585180322029167 1.709743457922741e-013 3.033795655989268 -0.6525220031386869 1.607602939657227e-013 2.806145947422054 -0.2327944693457003 1.709743457922741e-013 3.033795655989268 -0.2327944693457003 1.709743457922741e-013 3.033795655989268 0.6585180322029167 1.709743457922741e-013 3.033795655989268 -0.6525220031386869 1.607602939657227e-013 2.806145947422054 -1.068613770100173 1.145750161413162e-013 2.498646390904667 1.663816151269227 1.296740492762183e-013 2.141346013836709 1.663816151269227 6.794564910705958e-014 1.482212252388625 -2.131937444926908 6.483702463810914e-014 1.401369019824721 -2.131937444926908 2.087219286295294e-014 0.4463913395940624 -1.145973216276795 0 0 0 0 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8073\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8071\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8074\">2.609024107869116e-015 -1 5.536275215372719e-014 2.609024107869116e-015 -1 5.536275215372719e-014 2.609024107869116e-015 -1 5.536275215372719e-014 2.609024107869116e-015 -1 5.536275215372719e-014 2.609024107869116e-015 -1 5.536275215372719e-014 2.609024107869116e-015 -1 5.536275215372719e-014 2.609024107869116e-015 -1 5.536275215372719e-014 2.609024107869116e-015 -1 5.536275215372719e-014 2.609024107869116e-015 -1 5.536275215372719e-014 2.609024107869116e-015 -1 5.536275215372719e-014 -2.609024107869116e-015 1 -5.536275215372719e-014 -2.609024107869116e-015 1 -5.536275215372719e-014 -2.609024107869116e-015 1 -5.536275215372719e-014 -2.609024107869116e-015 1 -5.536275215372719e-014 -2.609024107869116e-015 1 -5.536275215372719e-014 -2.609024107869116e-015 1 -5.536275215372719e-014 -2.609024107869116e-015 1 -5.536275215372719e-014 -2.609024107869116e-015 1 -5.536275215372719e-014 -2.609024107869116e-015 1 -5.536275215372719e-014 -2.609024107869116e-015 1 -5.536275215372719e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8074\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8072\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8070\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8071\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8072\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7 5 7 8 8 7 9 10 11 12 12 11 13 11 14 13 14 15 13 13 15 16 16 15 17 17 15 18 19 18 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8075\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8076\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8079\">-1.23341120065456 2.077449323678593e-012 44.48938511439474 -2.719738404219012 2.032152224273887e-012 43.56031828898157 -1.940819644161994 2.022826350867035e-012 43.2805225487005 -1.93389733263216 2.093436535233195e-012 44.90321129901728 -0.6448222999958606 2.117861441774949e-012 45.49520161986587 -1.355496475898885 2.122746423083299e-012 45.49520161986587 -1.355496475898885 2.122746423083299e-012 45.49520161986587 -0.6448222999958606 2.117861441774949e-012 45.49520161986587 -1.93389733263216 2.093436535233195e-012 44.90321129901728 -1.23341120065456 2.077449323678593e-012 44.48938511439474 -2.719738404219012 2.032152224273887e-012 43.56031828898157 -1.940819644161994 2.022826350867035e-012 43.2805225487005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8079\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8077\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8080\">-4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8080\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8078\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8076\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8077\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8078\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8081\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8082\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID8085\">-7.441318957875044 1.659561377209684e-012 35.50997379987386 -8.821312221355447 1.652455949852083e-012 35.38228667603519 -7.123084316912337 1.635136470667931e-012 35.02842545938982 -8.180950175189096 1.665778626147585e-012 35.66580087673817 -7.544298388368656 1.665778626147585e-012 35.66580087673817 -7.434174809817382 1.595168441781425e-012 34.19316461352134 -10.01693160898817 1.610711564126177e-012 34.41555728836533 -8.423915620645413 1.577404873387422e-012 33.61552481242966 -10.64932817967385 1.665778626147585e-012 35.59350466497978 -9.420596040398229 1.653344128271783e-012 35.46137659406001 -9.924783222612376 1.676880856393836e-012 35.8664260665672 -10.86144852184085 1.710631636342441e-012 36.43380787759464 -10.07392652824975 1.69997349530604e-012 36.27872055579632 -10.22341326367564 1.720845688168993e-012 36.80225676297884 -10.61503685968041 1.737276988933445e-012 37.16418692815523 -10.61503685968041 1.737276988933445e-012 37.16418692815523 -10.22341326367564 1.720845688168993e-012 36.80225676297884 -10.86144852184085 1.710631636342441e-012 36.43380787759464 -10.07392652824975 1.69997349530604e-012 36.27872055579632 -9.924783222612376 1.676880856393836e-012 35.8664260665672 -10.64932817967385 1.665778626147585e-012 35.59350466497978 -9.420596040398229 1.653344128271783e-012 35.46137659406001 -8.821312221355447 1.652455949852083e-012 35.38228667603519 -7.123084316912337 1.635136470667931e-012 35.02842545938982 -10.01693160898817 1.610711564126177e-012 34.41555728836533 -7.434174809817382 1.595168441781425e-012 34.19316461352134 -8.423915620645413 1.577404873387422e-012 33.61552481242966 -7.544298388368656 1.665778626147585e-012 35.66580087673817 -7.441318957875044 1.659561377209684e-012 35.50997379987386 -8.180950175189096 1.665778626147585e-012 35.66580087673817</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID8085\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8083\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID8086\">0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID8086\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8084\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8082\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8083\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"26\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8084\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 6 5 2 6 2 8 8 2 1 8 1 9 8 9 10 8 10 11 11 10 12 11 12 13 11 13 14 15 16 17 16 18 17 18 19 17 17 19 20 19 21 20 21 22 20 22 23 20 20 23 24 23 25 24 26 24 25 27 28 29 29 28 22 23 22 28</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8087\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8088\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID8091\">4.503986029942851 1.98729921407903e-012 42.92176686030718 3.950315847919974 1.959321593858476e-012 41.79920495354923 4.303934864168959 1.925126724700021e-012 41.15040257458277 3.766068152813396 2.003286425633633e-012 43.05910763927322 4.261251170455314 2.052136238717139e-012 44.04173757439455 3.766068152813393 2.05435668476639e-012 44.20508085555001 4.509477002588643 2.104538765479447e-012 45.16050410441119 4.002459442839044 2.108091479158247e-012 45.19591506570519 5.228258317762521 2.151168132513703e-012 46.13342674651356 4.477522141038925 2.140065902267452e-012 46.02434599373589 5.103395868087617 2.173816682216057e-012 46.65894827328351 6.214172645001433 2.174260771425907e-012 46.57992828916178 6.214172645001433 2.174260771425907e-012 46.57992828916178 5.228258317762521 2.151168132513703e-012 46.13342674651356 5.103395868087617 2.173816682216057e-012 46.65894827328351 4.477522141038925 2.140065902267452e-012 46.02434599373589 4.002459442839044 2.108091479158247e-012 45.19591506570519 4.509477002588643 2.104538765479447e-012 45.16050410441119 3.766068152813393 2.05435668476639e-012 44.20508085555001 4.261251170455314 2.052136238717139e-012 44.04173757439455 3.766068152813396 2.003286425633633e-012 43.05910763927322 4.503986029942851 1.98729921407903e-012 42.92176686030718 3.950315847919974 1.959321593858476e-012 41.79920495354923 4.303934864168959 1.925126724700021e-012 41.15040257458277</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID8091\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8089\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID8092\">0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID8092\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8090\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8088\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8089\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"20\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8090\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 7 8 9 9 8 10 10 8 11 12 13 14 14 13 15 15 13 16 13 17 16 16 17 18 17 19 18 18 19 20 19 21 20 20 21 22 23 22 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8093\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8094\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID8097\">3.789289583095428 2.170708057747106e-012 46.68449646373521 3.136655183458313 2.215561067941962e-012 47.59175929046102 2.286604412384158 2.202238391646461e-012 47.15656271839848 3.88584865799621 2.258193632087568e-012 48.54146144601739 1.762238476342031 2.068123450271742e-012 44.32327745333759 0.9380310354461443 2.082334304986944e-012 44.50386791749424 1.454223782151871 2.034372670323137e-012 43.50428297950828 2.10166352711467 2.105871033108997e-012 45.22579037270632 0.5652251628253424 2.116529174145398e-012 45.22579037270632 3.170887482902941 2.138733634637902e-012 46.0055049908698 0.03632646435707443 2.12763140439165e-012 45.58017951534506 0.1923877810984891 2.155609024612204e-012 46.1974074822087 3.641609718329772 2.151168132513703e-012 46.33220704195106 1.076966017425317 2.202238391646461e-012 47.15656271839848 -0.07357771627437515 2.238653706854166e-012 48.10439695379773 2.286604412384158 2.202238391646461e-012 47.15656271839848 3.789289583095428 2.170708057747106e-012 46.68449646373521 1.076966017425317 2.202238391646461e-012 47.15656271839848 3.641609718329772 2.151168132513703e-012 46.33220704195106 -0.07357771627437515 2.238653706854166e-012 48.10439695379773 0.1923877810984891 2.155609024612204e-012 46.1974074822087 3.170887482902941 2.138733634637902e-012 46.0055049908698 0.03632646435707443 2.12763140439165e-012 45.58017951534506 0.5652251628253424 2.116529174145398e-012 45.22579037270632 2.10166352711467 2.105871033108997e-012 45.22579037270632 0.9380310354461443 2.082334304986944e-012 44.50386791749424 1.762238476342031 2.068123450271742e-012 44.32327745333759 1.454223782151871 2.034372670323137e-012 43.50428297950828 3.88584865799621 2.258193632087568e-012 48.54146144601739 3.136655183458313 2.215561067941962e-012 47.59175929046102 5.073699114229925 2.291500322826323e-012 49.37311859036304 4.331851045651874 2.273736754432321e-012 48.89777191181909 4.650176939062096 2.273736754432321e-012 48.89777191181909 4.118548421737554 2.286171252308122e-012 49.13406276023832 -0.5250018495215532 2.291056233616473e-012 49.14805322645639 5.035959637031787 2.362998685612183e-012 50.97274531914584 4.392343763683456 2.359445971933383e-012 50.75520594699224 5.219965802499566 2.354560990625032e-012 50.63799330611525 4.781298922303609 2.363442774822033e-012 50.97274531914584 3.136655183458313 2.215561067941962e-012 47.59175929046102 1.076966017425317 2.202238391646461e-012 47.15656271839848 2.286604412384158 2.202238391646461e-012 47.15656271839848 -0.07357771627437515 2.238653706854166e-012 48.10439695379773 3.88584865799621 2.258193632087568e-012 48.54146144601739 -0.2006274205847412 2.243538688162516e-012 48.20906230098576 -0.5250018495215532 2.27107221917322e-012 48.82972733304615 -1.119089006676875 2.27018404075352e-012 48.90622162119483 -0.7811236046696326 2.27018404075352e-012 48.90622162119483 -1.354815583994801 2.314148872528676e-012 49.69958980293281 -1.354815583994801 2.335021065391629e-012 50.27257641107118 -1.217113940815844 2.377653629537235e-012 50.95922195983447 4.060196219359469 2.41318076632524e-012 51.98442521117833 -0.7811236046696344 2.377653629537235e-012 51.10303324440967 -0.1992596877509971 2.41406894474494e-012 51.75653105021173 0.5481392782416208 2.471800542025449e-012 53.05706739558359 3.955342081081103 2.445155189434445e-012 52.67684810353278 3.049282561477529 2.499778162246003e-012 53.9983204462084 1.724780172144875 2.518873998269555e-012 54.18047111280067 -0.981648916364712 2.377653629537235e-012 51.26000992737708 -0.7811236046696344 2.377653629537235e-012 51.10303324440967 -1.217113940815844 2.377653629537235e-012 50.95922195983447 -0.981648916364712 2.377653629537235e-012 51.26000992737708 1.724780172144875 2.518873998269555e-012 54.18047111280067 3.049282561477529 2.499778162246003e-012 53.9983204462084 0.5481392782416208 2.471800542025449e-012 53.05706739558359 3.955342081081103 2.445155189434445e-012 52.67684810353278 4.060196219359469 2.41318076632524e-012 51.98442521117833 -0.1992596877509971 2.41406894474494e-012 51.75653105021173 4.392343763683456 2.359445971933383e-012 50.75520594699224 5.219965802499566 2.354560990625032e-012 50.63799330611525 -1.354815583994801 2.335021065391629e-012 50.27257641107118 -1.354815583994801 2.314148872528676e-012 49.69958980293281 5.073699114229925 2.291500322826323e-012 49.37311859036304 -0.5250018495215532 2.291056233616473e-012 49.14805322645639 -1.119089006676875 2.27018404075352e-012 48.90622162119483 -0.7811236046696326 2.27018404075352e-012 48.90622162119483 4.118548421737554 2.286171252308122e-012 49.13406276023832 -0.5250018495215532 2.27107221917322e-012 48.82972733304615 3.88584865799621 2.258193632087568e-012 48.54146144601739 -0.2006274205847412 2.243538688162516e-012 48.20906230098576 -0.07357771627437515 2.238653706854166e-012 48.10439695379773 3.136655183458313 2.215561067941962e-012 47.59175929046102 1.076966017425317 2.202238391646461e-012 47.15656271839848 2.286604412384158 2.202238391646461e-012 47.15656271839848 4.781298922303609 2.363442774822033e-012 50.97274531914584 5.035959637031787 2.362998685612183e-012 50.97274531914584 4.331851045651874 2.273736754432321e-012 48.89777191181909 4.650176939062096 2.273736754432321e-012 48.89777191181909</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID8097\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8095\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID8098\">-2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 -2.151057110211239e-015 -1 4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 2.151057110211239e-015 1 -4.519756875154035e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 -6.522560269672791e-016 -1 4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014 6.522560269672791e-016 1 -4.542978044168174e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID8098\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8096\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8094\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8095\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"80\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8096\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 5 7 8 8 7 9 8 9 10 10 9 11 11 9 12 11 12 13 11 13 14 13 12 0 13 0 2 15 16 17 16 18 17 19 17 20 17 18 20 18 21 20 20 21 22 22 21 23 21 24 23 23 24 25 24 26 25 27 25 26 28 16 29 15 29 16 30 31 32 31 30 33 33 30 34 35 36 37 36 35 38 39 40 41 40 39 42 42 39 43 42 43 44 44 43 45 45 43 33 45 33 34 34 46 47 46 34 48 48 34 30 48 30 37 48 37 49 49 37 50 50 37 36 50 36 51 50 51 52 52 51 53 53 51 54 54 51 55 54 55 56 54 56 57 58 50 52 59 60 61 62 63 64 63 65 64 65 66 64 64 66 67 67 66 59 59 66 60 66 68 60 68 69 60 60 69 70 70 69 71 69 72 71 72 73 71 71 73 74 75 74 73 73 76 77 76 78 77 77 78 79 79 78 80 78 81 80 80 81 82 83 82 81 84 85 68 69 68 85 73 72 76 76 72 86 87 86 72</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8099\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8102\">\r\n\t\t\t\t\t<float_array count=\"636\" id=\"ID8105\">-1.93389733263216 2.093436535233195e-012 44.90321129901728 -2.719738404219013 2.048139435828489e-012 43.94230936107385 -2.719738404219012 2.032152224273887e-012 43.56031828898157 -3.347745747253638 2.048139435828489e-012 43.94230936107385 -3.576542465768446 2.091216089183945e-012 44.7701532788885 -2.543104070318488 2.110311925207498e-012 45.26539028804027 -1.355496475898885 2.122746423083299e-012 45.49520161986587 -3.041726412345621 1.575628516548022e-012 33.69408420195119 -7.794208448008678 1.550759520796419e-012 33.07843174062736 -5.073110911398553 1.538769112130467e-012 32.77827070381812 -8.423915620645413 1.577404873387422e-012 33.61552481242966 -7.434174809817382 1.595168441781425e-012 34.19316461352134 -2.435606197142556 1.70530256582424e-012 35.38002562115491 -7.123084316912337 1.635136470667931e-012 35.02842545938982 -7.441318957875044 1.659561377209684e-012 35.50997379987386 -5.595249077037565 1.665334536937735e-012 35.66580087673817 -2.237437237683263 1.764366430734299e-012 37.73114306318018 -4.295561081457448 1.716848885280342e-012 36.58454756355143 -4.126400969718885 1.759481449425948e-012 37.71796693387308 -4.295546842682297 1.824318474064057e-012 39.10835000423243 -2.719738404219012 1.907807245515869e-012 40.94204663989157 -4.295546842682297 1.926458992329572e-012 41.33663125810396 -3.742172789948461 1.950439809661475e-012 41.99028316353891 -4.075693504718082 2.038813562421638e-012 43.80982056125481 -3.742172789948462 2.009503674571533e-012 43.07259120113366 -6.804887471996405 1.665334536937735e-012 35.66580087673817 -5.595249077037565 1.665334536937735e-012 35.66580087673817 -7.441318957875044 1.659561377209684e-012 35.50997379987386 -6.804887471996405 1.665334536937735e-012 35.66580087673817 -3.576542465768446 2.091216089183945e-012 44.7701532788885 -3.347745747253638 2.048139435828489e-012 43.94230936107385 -4.075693504718082 2.038813562421638e-012 43.80982056125481 -3.742172789948462 2.009503674571533e-012 43.07259120113366 -3.742172789948461 1.950439809661475e-012 41.99028316353891 -4.295546842682297 1.926458992329572e-012 41.33663125810396 -2.719738404219012 1.907807245515869e-012 40.94204663989157 -4.295546842682297 1.824318474064057e-012 39.10835000423243 -2.237437237683263 1.764366430734299e-012 37.73114306318018 -4.126400969718885 1.759481449425948e-012 37.71796693387308 -4.295561081457448 1.716848885280342e-012 36.58454756355143 -2.435606197142556 1.70530256582424e-012 35.38002562115491 -7.123084316912337 1.635136470667931e-012 35.02842545938982 -7.434174809817382 1.595168441781425e-012 34.19316461352134 -3.041726412345621 1.575628516548022e-012 33.69408420195119 -8.423915620645413 1.577404873387422e-012 33.61552481242966 -7.794208448008678 1.550759520796419e-012 33.07843174062736 -5.073110911398553 1.538769112130467e-012 32.77827070381812 -1.355496475898885 2.122746423083299e-012 45.49520161986587 -1.93389733263216 2.093436535233195e-012 44.90321129901728 -2.543104070318488 2.110311925207498e-012 45.26539028804027 -2.719738404219013 2.048139435828489e-012 43.94230936107385 -2.719738404219012 2.032152224273887e-012 43.56031828898157 6.143905623669888 1.588951192843524e-012 29.44863031710927 0.512309753955968 1.554756323685069e-012 28.68807546668939 3.249912437283854 1.554756323685069e-012 28.68807546668939 -1.341685634841257 1.583622122325323e-012 29.36474313316026 -2.833948963248238 1.605826582817826e-012 29.70801771778027 8.102723762802281 1.63247193540883e-012 30.36982207281201 -3.554816126941436 1.48769885299771e-012 29.75906513449232 -3.68543826736139 1.577404873387422e-012 29.76831499794799 -3.041726412345621 1.575628516548022e-012 33.69408420195119 7.886028536205934 1.691091711109038e-012 36.30484727627031 -2.435606197142556 1.70530256582424e-012 35.38002562115491 4.720965820857511 1.687538997430238e-012 36.20148954942747 5.695796588753773 1.707078922663641e-012 36.49702000128754 7.886028536205934 1.758593271006248e-012 37.64181602859324 6.214172645001433 1.765254609153999e-012 37.72940456342593 8.368143594225288 1.919797654181821e-012 41.17043520062585 7.300293905710785 1.885158695813516e-012 40.31154364600162 8.501238250929507 2.025934975335986e-012 43.40501294017133 -2.237437237683263 1.764366430734299e-012 37.73114306318018 3.788902065508527 1.70219394135529e-012 36.4094307086613 -0.6666972073638906 1.811883976188256e-012 38.74266867951697 -1.727906013129053 1.855404718753562e-012 39.65678643957247 -2.719738404219012 1.907807245515869e-012 40.94204663989157 -2.025097687785506 1.898037282899168e-012 40.69749187184286 -2.025097687785506 1.898037282899168e-012 40.69749187184286 -1.727906013129053 1.855404718753562e-012 39.65678643957247 -2.719738404219012 1.907807245515869e-012 40.94204663989157 -2.237437237683263 1.764366430734299e-012 37.73114306318018 -0.6666972073638906 1.811883976188256e-012 38.74266867951697 3.788902065508527 1.70219394135529e-012 36.4094307086613 4.720965820857511 1.687538997430238e-012 36.20148954942747 -2.435606197142556 1.70530256582424e-012 35.38002562115491 8.501238250929507 2.025934975335986e-012 43.40501294017133 8.368143594225288 1.919797654181821e-012 41.17043520062585 7.300293905710785 1.885158695813516e-012 40.31154364600162 6.214172645001433 1.765254609153999e-012 37.72940456342593 7.886028536205934 1.758593271006248e-012 37.64181602859324 5.695796588753773 1.707078922663641e-012 36.49702000128754 7.886028536205934 1.691091711109038e-012 36.30484727627031 -3.041726412345621 1.575628516548022e-012 33.69408420195119 8.102723762802281 1.63247193540883e-012 30.36982207281201 -3.68543826736139 1.577404873387422e-012 29.76831499794799 -3.554816126941436 1.48769885299771e-012 29.75906513449232 -2.833948963248238 1.605826582817826e-012 29.70801771778027 6.143905623669888 1.588951192843524e-012 29.44863031710927 -1.341685634841257 1.583622122325323e-012 29.36474313316026 0.512309753955968 1.554756323685069e-012 28.68807546668939 3.249912437283854 1.554756323685069e-012 28.68807546668939 5.695796588753773 1.707078922663641e-012 36.49702000128754 3.788902065508527 1.70219394135529e-012 36.4094307086613 4.720965820857511 1.687538997430238e-012 36.20148954942747 -0.6666972073638906 1.811883976188256e-012 38.74266867951697 6.214172645001433 1.765254609153999e-012 37.72940456342593 7.300293905710785 1.885158695813516e-012 40.31154364600162 3.763996622183893 1.860733789271762e-012 39.92731135168483 -1.727906013129053 1.855404718753562e-012 39.65678643957247 4.303934864168959 1.925126724700021e-012 41.15040257458277 8.501238250929507 2.025934975335986e-012 43.40501294017133 4.503986029942851 1.98729921407903e-012 42.92176686030718 4.261251170455314 2.052136238717139e-012 44.04173757439455 8.66509670137205 2.081446126567244e-012 44.60429941777381 4.509477002588643 2.104538765479447e-012 45.16050410441119 8.338498343897854 2.1254109583424e-012 45.67380088084786 5.228258317762521 2.151168132513703e-012 46.13342674651356 7.443939731760604 2.173816682216057e-012 46.57992828916178 6.214172645001433 2.174260771425907e-012 46.57992828916178 6.561616783719906 2.168043522488006e-012 46.70619859753879 -2.025097687785506 1.898037282899168e-012 40.69749187184286 1.358921131790684 1.905586799466619e-012 40.76446118779325 -1.907419811373675 1.922018100231071e-012 41.25826417011476 -0.02423420395076903 1.943334382303874e-012 41.67379153557825 -1.193592588959143 1.959321593858476e-012 42.07180051520461 -0.7069064029663696 1.976196983832779e-012 42.22195002358629 -0.7069064029663696 1.976196983832779e-012 42.22195002358629 -0.02423420395076903 1.943334382303874e-012 41.67379153557825 -1.193592588959143 1.959321593858476e-012 42.07180051520461 -1.907419811373675 1.922018100231071e-012 41.25826417011476 1.358921131790684 1.905586799466619e-012 40.76446118779325 -2.025097687785506 1.898037282899168e-012 40.69749187184286 3.763996622183893 1.860733789271762e-012 39.92731135168483 -1.727906013129053 1.855404718753562e-012 39.65678643957247 6.561616783719906 2.168043522488006e-012 46.70619859753879 7.443939731760604 2.173816682216057e-012 46.57992828916178 6.214172645001433 2.174260771425907e-012 46.57992828916178 5.228258317762521 2.151168132513703e-012 46.13342674651356 8.338498343897854 2.1254109583424e-012 45.67380088084786 4.509477002588643 2.104538765479447e-012 45.16050410441119 8.66509670137205 2.081446126567244e-012 44.60429941777381 4.261251170455314 2.052136238717139e-012 44.04173757439455 8.501238250929507 2.025934975335986e-012 43.40501294017133 4.503986029942851 1.98729921407903e-012 42.92176686030718 4.303934864168959 1.925126724700021e-012 41.15040257458277 7.300293905710785 1.885158695813516e-012 40.31154364600162 -0.6666972073638906 1.811883976188256e-012 38.74266867951697 6.214172645001433 1.765254609153999e-012 37.72940456342593 5.695796588753773 1.707078922663641e-012 36.49702000128754 3.788902065508527 1.70219394135529e-012 36.4094307086613 4.720965820857511 1.687538997430238e-012 36.20148954942747 4.303934864168959 1.925126724700021e-012 41.15040257458277 1.358921131790684 1.905586799466619e-012 40.76446118779325 3.763996622183893 1.860733789271762e-012 39.92731135168483 -0.02423420395076903 1.943334382303874e-012 41.67379153557825 3.950315847919974 1.959321593858476e-012 41.79920495354923 -0.7069064029663696 1.976196983832779e-012 42.22195002358629 3.766068152813396 2.003286425633633e-012 43.05910763927322 -0.5477500881067883 2.015276834299584e-012 43.16357183576943 1.454223782151871 2.034372670323137e-012 43.50428297950828 3.766068152813393 2.05435668476639e-012 44.20508085555001 1.762238476342031 2.068123450271742e-012 44.32327745333759 4.002459442839044 2.108091479158247e-012 45.19591506570519 2.10166352711467 2.105871033108997e-012 45.22579037270632 4.477522141038925 2.140065902267452e-012 46.02434599373589 3.170887482902941 2.138733634637902e-012 46.0055049908698 3.641609718329772 2.151168132513703e-012 46.33220704195106 5.103395868087617 2.173816682216057e-012 46.65894827328351 3.789289583095428 2.170708057747106e-012 46.68449646373521 4.691967150098357 2.173816682216057e-012 46.83022554517888 -0.7016391780738562 2.064126647383091e-012 44.2991654076132 0.9380310354461443 2.082334304986944e-012 44.50386791749424 -0.866943369667915 2.078781591308143e-012 44.50091445419295 -1.113172321295425 2.064126647383091e-012 44.2991654076132 -1.940819644161994 2.022826350867035e-012 43.2805225487005 -1.113172321295425 2.022826350867035e-012 43.2805225487005 -1.23341120065456 2.077449323678593e-012 44.48938511439474 -0.6448222999958606 2.117861441774949e-012 45.49520161986587 0.5652251628253424 2.116529174145398e-012 45.22579037270632 0.03632646435707443 2.12763140439165e-012 45.58017951534506 -0.3875717906089378 2.138733634637902e-012 45.93478152605319 0.1923877810984891 2.155609024612204e-012 46.1974074822087 0.1923877810984891 2.155609024612204e-012 46.1974074822087 0.03632646435707443 2.12763140439165e-012 45.58017951534506 -0.3875717906089378 2.138733634637902e-012 45.93478152605319 -0.6448222999958606 2.117861441774949e-012 45.49520161986587 0.5652251628253424 2.116529174145398e-012 45.22579037270632 0.9380310354461443 2.082334304986944e-012 44.50386791749424 -0.866943369667915 2.078781591308143e-012 44.50091445419295 -1.23341120065456 2.077449323678593e-012 44.48938511439474 -1.113172321295425 2.064126647383091e-012 44.2991654076132 -1.940819644161994 2.022826350867035e-012 43.2805225487005 -1.113172321295425 2.022826350867035e-012 43.2805225487005 -0.7016391780738562 2.064126647383091e-012 44.2991654076132 1.454223782151871 2.034372670323137e-012 43.50428297950828 -0.5477500881067883 2.015276834299584e-012 43.16357183576943 4.691967150098357 2.173816682216057e-012 46.83022554517888 5.103395868087617 2.173816682216057e-012 46.65894827328351 3.789289583095428 2.170708057747106e-012 46.68449646373521 3.641609718329772 2.151168132513703e-012 46.33220704195106 4.477522141038925 2.140065902267452e-012 46.02434599373589 3.170887482902941 2.138733634637902e-012 46.0055049908698 2.10166352711467 2.105871033108997e-012 45.22579037270632 4.002459442839044 2.108091479158247e-012 45.19591506570519 1.762238476342031 2.068123450271742e-012 44.32327745333759 3.766068152813393 2.05435668476639e-012 44.20508085555001 3.766068152813396 2.003286425633633e-012 43.05910763927322 -0.7069064029663696 1.976196983832779e-012 42.22195002358629 3.950315847919974 1.959321593858476e-012 41.79920495354923 -0.02423420395076903 1.943334382303874e-012 41.67379153557825 4.303934864168959 1.925126724700021e-012 41.15040257458277 1.358921131790684 1.905586799466619e-012 40.76446118779325 3.763996622183893 1.860733789271762e-012 39.92731135168483</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"212\" source=\"#ID8105\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8103\">\r\n\t\t\t\t\t<float_array count=\"636\" id=\"ID8106\">3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 3.344546861683282e-015 -1 4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 -3.344546861683282e-015 1 -4.458980871920745e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 1.443289932012703e-015 -1 2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 -1.443289932012703e-015 1 -2.83004454721732e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 0 -1 4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -0 1 -4.593038676487325e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 -8.743006318923102e-016 -1 4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014 8.743006318923102e-016 1 -4.516131395235744e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"212\" source=\"#ID8106\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8104\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8102\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8103\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"196\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8104\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 7 8 9 8 7 10 10 7 11 11 7 12 11 12 13 13 12 14 14 12 15 15 12 16 15 16 17 17 16 18 18 16 19 19 16 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 3 23 3 4 25 14 15 26 27 28 29 30 31 30 32 31 32 33 31 31 33 34 33 35 34 34 35 36 35 37 36 36 37 38 38 37 39 39 37 26 37 40 26 26 40 27 27 40 41 41 40 42 40 43 42 42 43 44 44 43 45 46 45 43 47 48 49 49 48 29 29 48 30 30 48 50 51 50 48 52 53 54 53 52 55 55 52 56 56 52 57 56 57 58 58 57 59 59 57 60 60 57 61 60 61 62 62 61 63 63 61 64 64 61 65 64 65 66 66 65 67 66 67 68 68 67 69 63 70 62 70 63 71 70 71 72 70 72 73 70 73 74 74 73 75 76 77 78 78 77 79 77 80 79 80 81 79 81 82 79 83 79 82 84 85 86 86 85 87 85 88 87 87 88 89 88 90 89 89 90 82 82 90 83 83 90 91 90 92 91 91 92 93 93 92 94 94 92 95 92 96 95 95 96 97 97 96 98 99 98 96 100 101 102 101 100 103 103 100 104 103 104 105 103 105 106 103 106 107 106 105 108 108 105 109 108 109 110 110 109 111 111 109 112 111 112 113 113 112 114 113 114 115 115 114 116 115 116 117 117 116 118 106 119 107 119 106 120 119 120 121 121 120 122 121 122 123 123 122 124 125 126 127 127 126 128 126 129 128 128 129 130 129 131 130 132 130 131 133 134 135 135 134 136 134 137 136 136 137 138 137 139 138 138 139 140 139 141 140 140 141 142 142 141 143 141 144 143 143 144 131 132 131 145 131 144 145 144 146 145 146 147 145 145 147 148 149 148 147 150 151 152 151 150 153 153 150 154 153 154 155 155 154 156 155 156 157 157 156 158 158 156 159 158 159 160 160 159 161 160 161 162 162 161 163 162 163 164 164 163 165 165 163 166 165 166 167 167 166 168 158 169 157 169 158 170 169 170 171 172 173 174 173 172 175 175 172 171 175 171 176 176 171 170 176 170 177 176 177 178 176 178 179 179 178 180 181 182 183 183 182 184 182 185 184 185 186 184 186 187 184 184 187 188 187 189 188 188 189 190 191 190 189 187 186 192 186 193 192 194 192 193 195 196 197 197 196 198 196 199 198 198 199 200 200 199 201 199 202 201 201 202 203 202 204 203 203 204 193 204 205 193 193 205 194 194 205 206 205 207 206 206 207 208 207 209 208 208 209 210 211 210 209</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8107\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8108\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID8111\">6.817480842530806 1.265654248072679e-013 2.064923204546942 5.701344431062871 9.547918011776346e-014 1.384894731720268 6.147000681837177 9.547918011776346e-014 1.384894731720268 4.937813408897156 1.092459456231154e-013 1.704301164402472 4.155585932649817 1.70086167372574e-013 3.016854036455586 7.22812877682038 1.940669847044774e-013 3.536671532419221 4.155585932649817 2.491340467258851e-013 4.735813860870769 6.92928311362413 2.713385072183883e-013 5.229454491791824 3.723907248737906 3.081979116359435e-013 6.068266082355091 5.093056175761795 3.215205879314453e-013 6.37320084005319 6.418463019741871 3.437250484239485e-013 6.803958602894401 5.891133741900937 3.423927807943983e-013 6.770076354342324 6.22227927269271 3.597122599785507e-013 7.157053040901216 4.265408852895227 3.215205879314453e-013 6.37320084005319 3.891772897291578 3.352873534367973e-013 6.616111660179353 5.093056175761795 3.215205879314453e-013 6.37320084005319 3.723907248737906 3.081979116359435e-013 6.068266082355091 4.265408852895227 3.215205879314453e-013 6.37320084005319 3.891772897291578 3.352873534367973e-013 6.616111660179353 6.22227927269271 3.597122599785507e-013 7.157053040901216 6.418463019741871 3.437250484239485e-013 6.803958602894401 5.891133741900937 3.423927807943983e-013 6.770076354342324 6.92928311362413 2.713385072183883e-013 5.229454491791824 4.155585932649817 2.491340467258851e-013 4.735813860870769 7.22812877682038 1.940669847044774e-013 3.536671532419221 4.155585932649817 1.70086167372574e-013 3.016854036455586 6.817480842530806 1.265654248072679e-013 2.064923204546942 4.937813408897156 1.092459456231154e-013 1.704301164402472 5.701344431062871 9.547918011776346e-014 1.384894731720268 6.147000681837177 9.547918011776346e-014 1.384894731720268</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID8111\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8109\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID8112\">0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 0 -1 4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014 -0 1 -4.589796424869779e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID8112\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8110\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8108\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8109\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"26\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8110\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 9 7 10 9 10 11 11 10 12 8 13 14 13 8 9 15 16 17 18 17 16 19 20 21 21 20 15 20 22 15 15 22 16 16 22 23 22 24 23 23 24 25 24 26 25 25 26 27 27 26 28 29 28 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8113\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8114\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID8117\">-0.7016391780738562 2.064126647383091e-012 44.2991654076132 -1.113172321295425 2.022826350867035e-012 43.2805225487005 -0.5477500881067883 2.015276834299584e-012 43.16357183576943 -1.113172321295425 2.064126647383091e-012 44.2991654076132 -0.866943369667915 2.078781591308143e-012 44.50091445419295 -1.907419811373675 1.922018100231071e-012 41.25826417011476 -2.719738404219012 1.907807245515869e-012 40.94204663989157 -2.025097687785506 1.898037282899168e-012 40.69749187184286 -3.742172789948461 1.950439809661475e-012 41.99028316353891 -1.193592588959143 1.959321593858476e-012 42.07180051520461 -3.742172789948462 2.009503674571533e-012 43.07259120113366 -0.7069064029663696 1.976196983832779e-012 42.22195002358629 -1.940819644161994 2.022826350867035e-012 43.2805225487005 -2.719738404219012 2.032152224273887e-012 43.56031828898157 -3.347745747253638 2.048139435828489e-012 43.94230936107385 -2.719738404219013 2.048139435828489e-012 43.94230936107385 -2.719738404219013 2.048139435828489e-012 43.94230936107385 -2.719738404219012 2.032152224273887e-012 43.56031828898157 -3.347745747253638 2.048139435828489e-012 43.94230936107385 -1.113172321295425 2.022826350867035e-012 43.2805225487005 -0.5477500881067883 2.015276834299584e-012 43.16357183576943 -1.940819644161994 2.022826350867035e-012 43.2805225487005 -3.742172789948462 2.009503674571533e-012 43.07259120113366 -0.7069064029663696 1.976196983832779e-012 42.22195002358629 -1.193592588959143 1.959321593858476e-012 42.07180051520461 -3.742172789948461 1.950439809661475e-012 41.99028316353891 -1.907419811373675 1.922018100231071e-012 41.25826417011476 -2.719738404219012 1.907807245515869e-012 40.94204663989157 -2.025097687785506 1.898037282899168e-012 40.69749187184286 -0.866943369667915 2.078781591308143e-012 44.50091445419295 -0.7016391780738562 2.064126647383091e-012 44.2991654076132 -1.113172321295425 2.064126647383091e-012 44.2991654076132</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID8117\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8115\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID8118\">-4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 -4.02455846426619e-016 -1 4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014 4.02455846426619e-016 1 -4.478774122407263e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID8118\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8116\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8114\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8115\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8116\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 6 5 8 8 5 9 8 9 10 10 9 11 10 11 2 10 2 12 10 12 13 10 13 14 12 2 1 14 13 15 16 17 18 19 20 21 18 17 22 17 21 22 21 20 22 20 23 22 23 24 22 22 24 25 24 26 25 25 26 27 28 27 26 29 30 31 31 30 19 20 19 30</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8119\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8120\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID8123\">-0.3875717906089378 2.138733634637902e-012 45.93478152605319 -1.355496475898885 2.122746423083299e-012 45.49520161986587 -0.6448222999958606 2.117861441774949e-012 45.49520161986587 5.658784256544525 2.231992368706415e-012 47.89655128402934 5.103395868087617 2.173816682216057e-012 46.65894827328351 6.214172645001433 2.174260771425907e-012 46.57992828916178 4.691967150098357 2.173816682216057e-012 46.83022554517888 -0.5250018495215532 2.291056233616473e-012 49.14805322645639 -0.7811236046696326 2.27018404075352e-012 48.90622162119483 -0.5250018495215532 2.27107221917322e-012 48.82972733304615 3.88584865799621 2.258193632087568e-012 48.54146144601739 3.789289583095428 2.170708057747106e-012 46.68449646373521 4.650176939062096 2.273736754432321e-012 48.89777191181909 5.469971134458874 2.307043445171075e-012 49.7617663752693 5.073699114229925 2.291500322826323e-012 49.37311859036304 5.219965802499566 2.354560990625032e-012 50.63799330611525 5.469971134458877 2.400746268449439e-012 51.60805655704859 5.035959637031787 2.362998685612183e-012 50.97274531914584 4.781298922303609 2.363442774822033e-012 50.97274531914584 -0.1992596877509971 2.41406894474494e-012 51.75653105021173 -0.981648916364712 2.377653629537235e-012 51.26000992737708 -0.7811236046696344 2.377653629537235e-012 51.10303324440967 4.060196219359469 2.41318076632524e-012 51.98442521117833 4.392343763683456 2.359445971933383e-012 50.75520594699224 5.256028012021737 2.462918757828447e-012 52.92779660154588 3.955342081081103 2.445155189434445e-012 52.67684810353278 3.049282561477529 2.499778162246003e-012 53.9983204462084 4.37741865378748 2.530864406935507e-012 54.40524997596306 1.724780172144875 2.518873998269555e-012 54.18047111280067 -2.082423120678392 2.175148949845607e-012 46.61943828122264 -2.543104070318488 2.110311925207498e-012 45.26539028804027 0.1923877810984891 2.155609024612204e-012 46.1974074822087 -0.07357771627437515 2.238653706854166e-012 48.10439695379773 -2.082423120678392 2.203570659276011e-012 47.89820141405489 -2.383520578080837 2.277289468111121e-012 49.02686604794238 -0.2006274205847412 2.243538688162516e-012 48.20906230098576 -1.119089006676875 2.27018404075352e-012 48.90622162119483 -1.354815583994801 2.314148872528676e-012 49.69958980293281 -2.079704903133552 2.377653629537235e-012 51.10573369769591 -1.354815583994801 2.335021065391629e-012 50.27257641107118 -1.217113940815844 2.377653629537235e-012 50.95922195983447 -1.447020767930763 2.487343664370201e-012 53.3747900760283 0.5481392782416208 2.471800542025449e-012 53.05706739558359 -0.3282087192551941 2.55173659979846e-012 54.76259824051133 3.270054092461056 2.567723811353062e-012 55.15440227890701 1.495959278340056 2.567723811353062e-012 55.32858463213595 4.331851045651874 2.273736754432321e-012 48.89777191181909 4.118548421737554 2.286171252308122e-012 49.13406276023832 4.650176939062096 2.273736754432321e-012 48.89777191181909 3.88584865799621 2.258193632087568e-012 48.54146144601739 4.331851045651874 2.273736754432321e-012 48.89777191181909 4.118548421737554 2.286171252308122e-012 49.13406276023832 1.495959278340056 2.567723811353062e-012 55.32858463213595 3.270054092461056 2.567723811353062e-012 55.15440227890701 -0.3282087192551941 2.55173659979846e-012 54.76259824051133 4.37741865378748 2.530864406935507e-012 54.40524997596306 1.724780172144875 2.518873998269555e-012 54.18047111280067 -1.447020767930763 2.487343664370201e-012 53.3747900760283 0.5481392782416208 2.471800542025449e-012 53.05706739558359 -0.1992596877509971 2.41406894474494e-012 51.75653105021173 -0.981648916364712 2.377653629537235e-012 51.26000992737708 -2.079704903133552 2.377653629537235e-012 51.10573369769591 -1.217113940815844 2.377653629537235e-012 50.95922195983447 -1.354815583994801 2.335021065391629e-012 50.27257641107118 -1.354815583994801 2.314148872528676e-012 49.69958980293281 -2.383520578080837 2.277289468111121e-012 49.02686604794238 -1.119089006676875 2.27018404075352e-012 48.90622162119483 -0.7811236046696326 2.27018404075352e-012 48.90622162119483 -0.5250018495215532 2.27107221917322e-012 48.82972733304615 -0.2006274205847412 2.243538688162516e-012 48.20906230098576 -0.07357771627437515 2.238653706854166e-012 48.10439695379773 -2.082423120678392 2.203570659276011e-012 47.89820141405489 -2.082423120678392 2.175148949845607e-012 46.61943828122264 0.1923877810984891 2.155609024612204e-012 46.1974074822087 -0.3875717906089378 2.138733634637902e-012 45.93478152605319 -1.355496475898885 2.122746423083299e-012 45.49520161986587 -2.543104070318488 2.110311925207498e-012 45.26539028804027 3.049282561477529 2.499778162246003e-012 53.9983204462084 5.256028012021737 2.462918757828447e-012 52.92779660154588 3.955342081081103 2.445155189434445e-012 52.67684810353278 4.060196219359469 2.41318076632524e-012 51.98442521117833 5.469971134458877 2.400746268449439e-012 51.60805655704859 4.781298922303609 2.363442774822033e-012 50.97274531914584 4.392343763683456 2.359445971933383e-012 50.75520594699224 -0.7811236046696344 2.377653629537235e-012 51.10303324440967 5.035959637031787 2.362998685612183e-012 50.97274531914584 5.219965802499566 2.354560990625032e-012 50.63799330611525 5.469971134458874 2.307043445171075e-012 49.7617663752693 5.073699114229925 2.291500322826323e-012 49.37311859036304 5.658784256544525 2.231992368706415e-012 47.89655128402934 4.691967150098357 2.173816682216057e-012 46.83022554517888 3.789289583095428 2.170708057747106e-012 46.68449646373521 -0.5250018495215532 2.291056233616473e-012 49.14805322645639 5.103395868087617 2.173816682216057e-012 46.65894827328351 6.214172645001433 2.174260771425907e-012 46.57992828916178 -0.6448222999958606 2.117861441774949e-012 45.49520161986587</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID8123\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8121\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID8124\">-2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 -2.220446049250312e-016 -1 4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014 2.220446049250312e-016 1 -4.6175367266504e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID8124\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8122\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8120\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8121\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"92\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8122\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 7 8 9 6 10 11 10 6 3 10 3 12 12 3 13 12 13 14 14 13 15 15 13 16 15 16 17 17 16 18 19 20 21 18 22 23 22 18 16 22 16 24 22 24 25 25 24 26 26 24 27 26 27 28 1 29 30 29 1 0 29 0 31 29 31 32 29 32 33 33 32 34 34 32 35 34 35 9 34 9 36 36 9 8 34 36 37 34 37 38 38 37 39 38 39 40 38 40 20 38 20 41 41 20 19 41 19 42 41 42 28 41 28 43 43 28 27 43 27 44 43 44 45 10 46 47 46 10 12 48 49 50 51 50 49 52 53 54 53 55 54 55 56 54 54 56 57 56 58 57 58 59 57 59 60 57 57 60 61 60 62 61 62 63 61 63 64 61 61 64 65 64 66 65 67 68 66 66 68 65 68 69 65 69 70 65 65 70 71 71 70 72 70 73 72 73 74 72 74 75 72 76 72 75 56 55 77 55 78 77 77 78 79 79 78 80 78 81 80 81 82 80 83 80 82 84 60 59 82 81 85 85 81 86 81 87 86 86 87 88 88 87 48 87 89 48 48 89 49 89 90 49 91 49 90 68 67 92 90 89 93 94 93 89 95 75 74</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8125\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8126\">\r\n\t\t\t\t\t<float_array count=\"270\" id=\"ID8129\">2.380818290706682 1.310063169057685e-013 2.154536941299317 1.663816151269227 1.296740492762183e-013 2.141346013836709 1.944013720721177 1.190159082398168e-013 1.892601670395917 0.6585180322029167 1.709743457922741e-013 3.033795655989268 2.736434566388287 1.811883976188256e-013 3.243936627775369 -0.2327944693457003 1.709743457922741e-013 3.033795655989268 5.891133741900937 3.423927807943983e-013 6.770076354342324 4.265408852895227 3.215205879314453e-013 6.37320084005319 5.093056175761795 3.215205879314453e-013 6.37320084005319 3.891772897291578 3.352873534367973e-013 6.616111660179353 3.518136941687931 3.459454944731988e-013 6.859022480305518 6.22227927269271 3.597122599785507e-013 7.157053040901216 2.664251706204873 4.11226608321158e-013 8.277077616334033 6.553424803484475 3.801403636316536e-013 7.544029727460108 6.553424803484479 4.947153797729698e-013 10.09063687474187 2.988524526478873 5.822009541134321e-013 12.01929991219432 6.845914117537983 6.323830348264892e-013 13.13253586505845 2.562509520748012 7.243095012654521e-013 15.10966824198099 7.241217490314675 7.243095012654521e-013 14.12246652889761 7.241217490314675 7.696066006701585e-013 16.08934139466974 2.204176795707308 8.615330671091215e-013 18.12168275373066 7.022655419043097 7.998046669399628e-013 16.74490436598436 7.219276542850587 9.299228054260311e-013 19.66689472602894 -0.6525220031386869 1.607602939657227e-013 2.806145947422054 -1.838415971510115 3.823608096809039e-013 7.678142785048674 -1.072249536931681 1.496580637194711e-013 2.578496238854841 2.348849569603079 2.273736754432321e-013 4.25446547867929 1.746980245678227 5.293543381412746e-013 10.91215948141898 -2.115328038427197 5.861977570020827e-013 12.12609389680979 1.986026906627728 6.963318810448982e-013 14.46938653357047 -2.687066768505192 6.705747068735946e-013 13.88162864721017 -2.687066768505193 8.180123245438153e-013 17.12855275999441 1.659270929209161 7.465139617579553e-013 15.63405626262666 -3.5255521993638 1.153299677980613e-012 24.46595973709405 7.467230089670544 1.020517004235444e-012 21.65696037549058 8.254786916808026 1.195044063706519e-012 25.21189939492929 -3.843148602370555 1.250111125727926e-012 26.54276670798291 8.254786916808026 1.35047528715404e-012 28.7134842224417 3.249912437283854 1.554756323685069e-012 28.68807546668939 6.143905623669888 1.588951192843524e-012 29.44863031710927 8.102723762802281 1.63247193540883e-012 30.36982207281201 0.512309753955968 1.554756323685069e-012 28.68807546668939 -3.554816126941436 1.48769885299771e-012 29.75906513449232 -1.341685634841257 1.583622122325323e-012 29.36474313316026 -2.833948963248238 1.605826582817826e-012 29.70801771778027 -2.833948963248238 1.605826582817826e-012 29.70801771778027 -1.341685634841257 1.583622122325323e-012 29.36474313316026 -3.554816126941436 1.48769885299771e-012 29.75906513449232 0.512309753955968 1.554756323685069e-012 28.68807546668939 3.249912437283854 1.554756323685069e-012 28.68807546668939 -3.843148602370555 1.250111125727926e-012 26.54276670798291 8.102723762802281 1.63247193540883e-012 30.36982207281201 8.254786916808026 1.35047528715404e-012 28.7134842224417 6.143905623669888 1.588951192843524e-012 29.44863031710927 8.254786916808026 1.195044063706519e-012 25.21189939492929 -3.5255521993638 1.153299677980613e-012 24.46595973709405 7.467230089670544 1.020517004235444e-012 21.65696037549058 7.219276542850587 9.299228054260311e-013 19.66689472602894 2.204176795707308 8.615330671091215e-013 18.12168275373066 -2.687066768505193 8.180123245438153e-013 17.12855275999441 1.659270929209161 7.465139617579553e-013 15.63405626262666 1.986026906627728 6.963318810448982e-013 14.46938653357047 -2.687066768505192 6.705747068735946e-013 13.88162864721017 -2.115328038427197 5.861977570020827e-013 12.12609389680979 1.746980245678227 5.293543381412746e-013 10.91215948141898 -1.838415971510115 3.823608096809039e-013 7.678142785048674 2.348849569603079 2.273736754432321e-013 4.25446547867929 2.736434566388287 1.811883976188256e-013 3.243936627775369 -0.2327944693457003 1.709743457922741e-013 3.033795655989268 -0.6525220031386869 1.607602939657227e-013 2.806145947422054 -1.072249536931681 1.496580637194711e-013 2.578496238854841 7.022655419043097 7.998046669399628e-013 16.74490436598436 7.241217490314675 7.696066006701585e-013 16.08934139466974 2.562509520748012 7.243095012654521e-013 15.10966824198099 7.241217490314675 7.243095012654521e-013 14.12246652889761 6.845914117537983 6.323830348264892e-013 13.13253586505845 2.988524526478873 5.822009541134321e-013 12.01929991219432 6.553424803484479 4.947153797729698e-013 10.09063687474187 2.664251706204873 4.11226608321158e-013 8.277077616334033 6.553424803484475 3.801403636316536e-013 7.544029727460108 6.22227927269271 3.597122599785507e-013 7.157053040901216 3.518136941687931 3.459454944731988e-013 6.859022480305518 5.891133741900937 3.423927807943983e-013 6.770076354342324 3.891772897291578 3.352873534367973e-013 6.616111660179353 4.265408852895227 3.215205879314453e-013 6.37320084005319 5.093056175761795 3.215205879314453e-013 6.37320084005319 0.6585180322029167 1.709743457922741e-013 3.033795655989268 2.380818290706682 1.310063169057685e-013 2.154536941299317 1.663816151269227 1.296740492762183e-013 2.141346013836709 1.944013720721177 1.190159082398168e-013 1.892601670395917</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"90\" source=\"#ID8129\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8127\">\r\n\t\t\t\t\t<float_array count=\"270\" id=\"ID8130\">-1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 -1.387778780781445e-015 -1 5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014 1.387778780781445e-015 1 -5.092896090023664e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"90\" source=\"#ID8130\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8128\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8126\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8127\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"86\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8128\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 6 7 8 7 6 9 9 6 10 10 6 11 10 11 12 12 11 13 12 13 14 12 14 15 15 14 16 15 16 17 17 16 18 17 18 19 17 19 20 20 19 21 20 21 22 23 24 25 24 23 5 24 5 4 24 4 26 24 26 27 24 27 28 28 27 29 28 29 30 30 29 31 31 29 32 31 32 20 31 20 33 33 20 22 33 22 34 33 34 35 33 35 36 36 35 37 36 37 38 38 37 39 39 37 40 36 41 42 41 36 38 42 41 43 42 43 44 45 46 47 46 48 47 49 50 48 47 48 50 51 52 53 53 52 49 49 52 50 52 54 50 50 54 55 54 56 55 56 57 55 57 58 55 55 58 59 58 60 59 60 61 59 59 61 62 62 61 63 61 64 63 63 64 65 64 66 65 66 67 65 67 68 65 68 69 65 70 65 69 57 71 58 71 72 58 58 72 73 72 74 73 74 75 73 73 75 76 75 77 76 76 77 78 77 79 78 79 80 78 78 80 81 80 82 81 81 82 83 83 82 84 85 84 82 68 67 86 67 87 86 86 87 88 89 88 87</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8131\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8132\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8134\">1.881102136340811 1.004973881890692e-012 21.22450211091722 1.881102136340807 1.210587186051271e-012 25.68106461866029</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8134\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8133\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8132\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8133\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8135\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8136\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8138\">1.881102136340811 1.004973881890692e-012 21.22450211091722 2.204176795707308 8.615330671091215e-013 18.12168275373066</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8138\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8137\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8136\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8137\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8141\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8144\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID8147\">9.410447980734832 -2.220446049250313e-014 1.062039749433173 6.455675183329127 -1.909583602355269e-014 0.9112774276809019 8.040896993000009 -1.687538997430238e-014 0.7686023614318902 5.639253802694011 -3.863576125695545e-014 1.803847411379902 9.410447980734833 -5.684341886080802e-014 2.717334395166315 5.639253802694011 -7.460698725481052e-014 3.586472414477133 8.975246604271506 -6.661338147750939e-014 3.182011981871416 7.856656737218369 -1.056932319443149e-013 5.035203677917677 5.320927909283792 -7.460698725481052e-014 3.586472414477133 4.691911993173287 -8.260059303211165e-014 3.894340615904732 4.378739326045285 -1.039168751049147e-013 5.062736065708654 6.242794379053507 -1.079136779935652e-013 5.080898768337285 7.103207164340931 -1.123545700920658e-013 5.313552619220488 7.648763718987862 -1.310063169057685e-013 6.097357706866967 5.361989597767174 -1.154631945610163e-013 5.449904604337048 4.66726998843894 -1.354472090042691e-013 6.433329172922138 6.242794379053507 -1.079136779935652e-013 5.080898768337285 4.378739326045285 -1.039168751049147e-013 5.062736065708654 5.361989597767174 -1.154631945610163e-013 5.449904604337048 4.66726998843894 -1.354472090042691e-013 6.433329172922138 7.648763718987862 -1.310063169057685e-013 6.097357706866967 7.856656737218369 -1.056932319443149e-013 5.035203677917677 7.103207164340931 -1.123545700920658e-013 5.313552619220488 4.691911993173287 -8.260059303211165e-014 3.894340615904732 5.320927909283792 -7.460698725481052e-014 3.586472414477133 5.639253802694011 -7.460698725481052e-014 3.586472414477133 8.975246604271506 -6.661338147750939e-014 3.182011981871416 9.410447980734833 -5.684341886080802e-014 2.717334395166315 5.639253802694011 -3.863576125695545e-014 1.803847411379902 9.410447980734832 -2.220446049250313e-014 1.062039749433173 6.455675183329127 -1.909583602355269e-014 0.9112774276809019 8.040896993000009 -1.687538997430238e-014 0.7686023614318902</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID8147\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8145\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID8148\">-3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 -3.885780586188041e-016 -1 -2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014 3.885780586188041e-016 1 2.122400645228064e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID8148\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8146\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8144\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8145\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8146\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 5 7 8 8 7 9 9 7 10 10 7 11 11 7 12 12 7 13 10 14 15 14 10 11 16 17 18 19 18 17 20 21 22 22 21 16 16 21 17 17 21 23 23 21 24 24 21 25 21 26 25 26 27 25 25 27 28 27 29 28 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8149\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8150\">\r\n\t\t\t\t\t<float_array count=\"282\" id=\"ID8153\">2.27858759084333 -1.260769266764328e-012 60.71558973989587 -0.4407922630841853 -1.221328593814519e-012 59.21269626172142 0.02288384577075327 -1.211883024487825e-012 58.38014185808702 -1.653957681004036 -1.227906665235423e-012 59.59938949855136 -2.592020287497173 -1.251665437962402e-012 60.25763957164141 -2.889734356628373 -1.249222947308226e-012 60.8915245653208 2.793898062669195 -1.282085548837131e-012 62.02565707136846 -2.951743004620741 -1.275646255294305e-012 61.58833111919146 -2.557779287864606 -1.282973727256831e-012 61.81371427416345 -2.764504064875391 -1.301403429465609e-012 62.48282466770132 2.047782001621435 -1.302957741700084e-012 62.88162273140733 -0.9926311878102785 -1.315669795332042e-012 63.03025305760573 1.853908304653774 -1.318722908649761e-012 63.13409919375484 0.1370539250549432 -1.332975396728386e-012 63.96190933993357 1.853908304653774 -1.325828336007362e-012 63.74635612791526 1.318660841218482 -1.329381049686162e-012 64.17811125108383 1.853908304653774 -1.346589506567852e-012 64.78939383948799 1.036530415801175 -1.334710120204363e-012 64.42514854190011 0.8274703102848867 -1.340538791083645e-012 64.95038939339628 1.318660841218482 -1.329381049686162e-012 64.17811125108383 0.1370539250549432 -1.332975396728386e-012 63.96190933993357 1.036530415801175 -1.334710120204363e-012 64.42514854190011 0.8274703102848867 -1.340538791083645e-012 64.95038939339628 1.853908304653774 -1.346589506567852e-012 64.78939383948799 1.853908304653774 -1.325828336007362e-012 63.74635612791526 1.853908304653774 -1.318722908649761e-012 63.13409919375484 -0.9926311878102785 -1.315669795332042e-012 63.03025305760573 2.047782001621435 -1.302957741700084e-012 62.88162273140733 -2.764504064875391 -1.301403429465609e-012 62.48282466770132 2.793898062669195 -1.282085548837131e-012 62.02565707136846 -2.557779287864606 -1.282973727256831e-012 61.81371427416345 -2.951743004620741 -1.275646255294305e-012 61.58833111919146 -2.889734356628373 -1.249222947308226e-012 60.8915245653208 2.27858759084333 -1.260769266764328e-012 60.71558973989587 -2.592020287497173 -1.251665437962402e-012 60.25763957164141 -1.653957681004036 -1.227906665235423e-012 59.59938949855136 -0.4407922630841853 -1.221328593814519e-012 59.21269626172142 0.02288384577075327 -1.211883024487825e-012 58.38014185808702 -2.764504064875391 -1.301403429465609e-012 62.48282466770132 -4.0680856005803 -1.320277220884236e-012 62.31611291884114 -3.304103456395769 -1.320055176279311e-012 62.31611291884114 -4.404469222442451 -1.289635065404582e-012 62.77996603357562 -0.9926311878102785 -1.315669795332042e-012 63.03025305760573 -4.68193565937238 -1.312727704316785e-012 64.21773661993758 0.1370539250549432 -1.332975396728386e-012 63.96190933993357 0.8274703102848867 -1.340538791083645e-012 64.95038939339628 -4.68193565937238 -1.341593502957039e-012 64.98171876412211 1.487398750570372 -1.353139822413141e-012 65.23438188030293 -4.957766450297674 -1.342037592166889e-012 64.98171876412211 -5.167097568610682 -1.357580714511641e-012 65.30124601188672 -2.63091025600013 -1.375788372115494e-012 65.45381973760028 1.953386380453725 -1.375122238300719e-012 66.21123714954086 0.8714165227466807 -1.363908985752005e-012 66.03998049588779 -2.361157400000395 -1.362021606610142e-012 66.03049893294347 1.147871528297362 -1.405875416082836e-012 66.61347690177682 1.751748830493507 -1.38489220091742e-012 66.81511445173699 -0.3685696336020582 -1.373429148188166e-012 66.22912550250713 -2.400972707121473 -1.376232461325344e-012 66.78743115456571 0.3954125105824651 -1.37340139261255e-012 66.22912550250713 -0.5180793311797718 -1.394939719290278e-012 67.10780907794658 -3.140231685456485 -1.376010416720419e-012 65.45381973760028 -4.992022001958494 -1.366462498708643e-012 65.84683028499893 -3.63360703592596 -1.368682944757893e-012 65.74518620213426 -4.0911286046014 -1.389999226830696e-012 66.27539169660547 -4.437531786572308 -1.396216475768597e-012 66.62434103783757 -4.246536250526176 -1.396216475768597e-012 66.62434103783757 -4.246536250526176 -1.396216475768597e-012 66.62434103783757 -4.0911286046014 -1.389999226830696e-012 66.27539169660547 -4.437531786572308 -1.396216475768597e-012 66.62434103783757 -4.992022001958494 -1.366462498708643e-012 65.84683028499893 -3.63360703592596 -1.368682944757893e-012 65.74518620213426 -3.140231685456485 -1.376010416720419e-012 65.45381973760028 -2.63091025600013 -1.375788372115494e-012 65.45381973760028 -5.167097568610682 -1.357580714511641e-012 65.30124601188672 -0.5180793311797718 -1.394939719290278e-012 67.10780907794658 -0.3685696336020582 -1.373429148188166e-012 66.22912550250713 -2.400972707121473 -1.376232461325344e-012 66.78743115456571 0.3954125105824651 -1.37340139261255e-012 66.22912550250713 0.8714165227466807 -1.363908985752005e-012 66.03998049588779 -2.361157400000395 -1.362021606610142e-012 66.03049893294347 1.751748830493507 -1.38489220091742e-012 66.81511445173699 1.953386380453725 -1.375122238300719e-012 66.21123714954086 1.147871528297362 -1.405875416082836e-012 66.61347690177682 1.487398750570372 -1.353139822413141e-012 65.23438188030293 -4.957766450297674 -1.342037592166889e-012 64.98171876412211 -4.68193565937238 -1.341593502957039e-012 64.98171876412211 0.8274703102848867 -1.340538791083645e-012 64.95038939339628 -4.68193565937238 -1.312727704316785e-012 64.21773661993758 0.1370539250549432 -1.332975396728386e-012 63.96190933993357 -0.9926311878102785 -1.315669795332042e-012 63.03025305760573 -4.404469222442451 -1.289635065404582e-012 62.77996603357562 -2.764504064875391 -1.301403429465609e-012 62.48282466770132 -4.0680856005803 -1.320277220884236e-012 62.31611291884114 -3.304103456395769 -1.320055176279311e-012 62.31611291884114</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"94\" source=\"#ID8153\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8151\">\r\n\t\t\t\t\t<float_array count=\"282\" id=\"ID8154\">-1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 -1.110223024625155e-016 -1 -2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.110223024625155e-016 1 2.162180741608968e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 1.665334536937732e-016 -1 -1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014 -1.665334536937732e-016 1 1.965801020947032e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"94\" source=\"#ID8154\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8152\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8150\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8151\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"86\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8152\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7 7 6 8 8 6 9 9 6 10 9 10 11 11 10 12 11 12 13 13 12 14 13 14 15 15 14 16 13 17 18 17 13 15 19 20 21 22 21 20 23 24 19 19 24 20 24 25 20 20 25 26 25 27 26 26 27 28 27 29 28 28 29 30 30 29 31 31 29 32 29 33 32 32 33 34 34 33 35 35 33 36 37 36 33 38 39 40 39 38 41 41 38 42 41 42 43 43 42 44 43 44 45 43 45 46 46 45 47 46 47 48 48 47 49 49 47 50 50 47 51 50 51 52 50 52 53 52 51 54 54 51 55 53 56 57 56 53 52 56 52 58 57 56 59 49 60 61 60 49 50 61 60 62 61 62 63 61 63 64 64 63 65 66 67 68 68 67 69 67 70 69 70 71 69 72 73 71 69 71 73 74 75 76 77 78 75 78 79 75 76 75 79 80 81 82 82 81 78 79 78 72 78 81 72 81 83 72 72 83 73 73 83 84 84 83 85 83 86 85 85 86 87 86 88 87 88 89 87 87 89 90 89 91 90 90 91 92 93 92 91</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8155\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8156\">\r\n\t\t\t\t\t<float_array count=\"438\" id=\"ID8159\">7.103207164340931 -1.123545700920658e-013 5.313552619220488 5.361989597767174 -1.154631945610163e-013 5.449904604337048 6.242794379053507 -1.079136779935652e-013 5.080898768337285 7.648763718987862 -1.310063169057685e-013 6.097357706866967 4.66726998843894 -1.354472090042691e-013 6.433329172922138 7.785412811411643 -1.469935284603707e-013 7.106793341047563 4.006253233693669 -1.532107773982716e-013 7.357674720676329 8.593424463004972 -1.927347170749272e-013 9.183414278350453 4.006253233693669 -1.878497357665765e-013 9.076634545091519 3.515575908261678 -2.180478020363807e-013 10.38850769863547 8.256069460426415 -2.335909243811329e-013 11.32158039799691 3.065733487538157 -3.297362383136715e-013 15.90908092199989 8.005740198761867 -3.055333763768431e-013 14.81420570928062 8.306602793862922 -3.348432642269472e-013 15.91997978715224 3.065733487538156 -3.859135233597044e-013 18.77401396269187 8.306602793862922 -4.263256414560601e-013 20.69486818830552 1.956119018495314 -4.193312364009216e-013 20.16918693826092 1.571413011447673 -4.428679645229749e-013 21.31602011475176 8.800752413476616 -4.423128530106624e-013 21.51205759301803 1.69602843385639 -4.763966998666547e-013 22.46285329124259 8.601551080740997 -4.760636329592671e-013 22.64058470454885 1.665287255507634 -5.137001934940599e-013 24.44312954452271 9.456144147692898 -5.17808018685173e-013 25.1742801220506 2.12006876235565 -5.910827383104333e-013 28.42816941674735 9.456144147692898 -6.776801342311956e-013 32.87776674257792 1.65054682073559 -6.794564910705958e-013 32.53968390930875 0.8067628214403291 -7.073230889886872e-013 33.57675382364489 7.096935876998709 -7.154277170684509e-013 34.01554105039749 8.627447702262899 -7.069900220812997e-013 34.26696839158245 9.069959861041001 -7.291944825738028e-013 34.96638463416031 0.0370401265296111 -7.483805242181063e-013 36.13750932772779 6.300427882827329 -7.216449660063518e-013 34.41555728836534 5.403745218161294 -7.23421322845752e-013 35.22745952721309 5.081690604439979 -7.633893517322576e-013 36.39343803144862 0.03704012652961109 -8.154345254585138e-013 39.38443344051205 5.466262002694851 -7.713829575095588e-013 37.33669733495862 6.582880017596658 -7.86926079854311e-013 37.8018739200909 6.734282538171606 -8.08242361927114e-013 39.03394332602429 1.262294136775876 -8.225642389447785e-013 39.58444047847294 6.734282538171606 -8.402167850363185e-013 40.62557279307541 3.895245141986228 -8.266720641358916e-013 40.11041113608175 1.54674486594058 -8.301137555122296e-013 39.92751084520823 1.54674486594058 -8.301137555122296e-013 39.92751084520823 3.895245141986228 -8.266720641358916e-013 40.11041113608175 1.262294136775876 -8.225642389447785e-013 39.58444047847294 6.734282538171606 -8.402167850363185e-013 40.62557279307541 6.734282538171606 -8.08242361927114e-013 39.03394332602429 0.03704012652961109 -8.154345254585138e-013 39.38443344051205 6.582880017596658 -7.86926079854311e-013 37.8018739200909 5.466262002694851 -7.713829575095588e-013 37.33669733495862 5.081690604439979 -7.633893517322576e-013 36.39343803144862 0.0370401265296111 -7.483805242181063e-013 36.13750932772779 5.403745218161294 -7.23421322845752e-013 35.22745952721309 6.300427882827329 -7.216449660063518e-013 34.41555728836534 7.096935876998709 -7.154277170684509e-013 34.01554105039749 0.8067628214403291 -7.073230889886872e-013 33.57675382364489 9.069959861041001 -7.291944825738028e-013 34.96638463416031 9.456144147692898 -6.776801342311956e-013 32.87776674257792 8.627447702262899 -7.069900220812997e-013 34.26696839158245 1.65054682073559 -6.794564910705958e-013 32.53968390930875 2.12006876235565 -5.910827383104333e-013 28.42816941674735 9.456144147692898 -5.17808018685173e-013 25.1742801220506 1.665287255507634 -5.137001934940599e-013 24.44312954452271 8.601551080740997 -4.760636329592671e-013 22.64058470454885 1.69602843385639 -4.763966998666547e-013 22.46285329124259 8.800752413476616 -4.423128530106624e-013 21.51205759301803 1.571413011447673 -4.428679645229749e-013 21.31602011475176 8.306602793862922 -4.263256414560601e-013 20.69486818830552 1.956119018495314 -4.193312364009216e-013 20.16918693826092 3.065733487538156 -3.859135233597044e-013 18.77401396269187 8.306602793862922 -3.348432642269472e-013 15.91997978715224 3.065733487538157 -3.297362383136715e-013 15.90908092199989 8.005740198761867 -3.055333763768431e-013 14.81420570928062 8.256069460426415 -2.335909243811329e-013 11.32158039799691 3.515575908261678 -2.180478020363807e-013 10.38850769863547 8.593424463004972 -1.927347170749272e-013 9.183414278350453 4.006253233693669 -1.878497357665765e-013 9.076634545091519 4.006253233693669 -1.532107773982716e-013 7.357674720676329 7.785412811411643 -1.469935284603707e-013 7.106793341047563 4.66726998843894 -1.354472090042691e-013 6.433329172922138 7.648763718987862 -1.310063169057685e-013 6.097357706866967 5.361989597767174 -1.154631945610163e-013 5.449904604337048 7.103207164340931 -1.123545700920658e-013 5.313552619220488 6.242794379053507 -1.079136779935652e-013 5.080898768337285 -1.614903952208367 -9.203748874142548e-014 4.479642413885056 -1.400763968394831 -7.505107646466058e-014 3.614436055407964 -0.4402079718948727 -8.570921750106209e-014 4.113157285986906 3.063230999949272 -1.261213355974178e-013 6.012957060382519 0.7677212014754555 -6.922240558537851e-014 3.285462297025975 3.028370280176339 -5.995204332975845e-014 2.907991513171177 -2.34613270698781 -9.903189379656396e-014 4.700941362857924 -3.126095522140208 -1.70530256582424e-013 8.114554450371607 2.043829817607836 -1.834088436680759e-013 8.826222329209283 -3.898210365427145 -2.76223488526739e-013 13.0844843269232 2.322348499326865 -2.424727085781342e-013 11.80549532564305 1.891237154453477 -3.314015728506092e-013 16.36907032854392 -4.603672896502943 -3.224087663511455e-013 15.26515877922991 -4.603672896502943 -3.512745649913995e-013 17.04778378232713 1.277876453809701 -4.195532810058467e-013 19.81651647825693 -4.603672896502943 -4.405364961712621e-013 21.50434629007021 1.571413011447673 -4.428679645229749e-013 21.31602011475176 1.69602843385639 -4.763966998666547e-013 22.46285329124259 -5.424259428268567 -5.901945598907332e-013 28.20277973835859 1.665287255507634 -5.137001934940599e-013 24.44312954452271 2.12006876235565 -5.910827383104333e-013 28.42816941674735 -5.748108942795935 -7.247535904753022e-013 35.00725162963889 1.65054682073559 -6.794564910705958e-013 32.53968390930875 0.8067628214403291 -7.073230889886872e-013 33.57675382364489 0.0370401265296111 -7.483805242181063e-013 36.13750932772779 -5.501148527757639 -8.069100942975638e-013 39.1381126572709 -1.188213883716661 -8.11684053303452e-013 39.18442640255113 0.03704012652961109 -8.154345254585138e-013 39.38443344051205 -4.861106754988823 -8.388845174067683e-013 40.3119235337748 -3.032344989399173 -8.173461907290403e-013 39.76096084568025 -1.397075800561024 -8.335554468885675e-013 39.50426054527247 -1.397075800561024 -8.335554468885675e-013 39.50426054527247 -1.188213883716661 -8.11684053303452e-013 39.18442640255113 -3.032344989399173 -8.173461907290403e-013 39.76096084568025 -4.861106754988823 -8.388845174067683e-013 40.3119235337748 -5.501148527757639 -8.069100942975638e-013 39.1381126572709 0.03704012652961109 -8.154345254585138e-013 39.38443344051205 0.0370401265296111 -7.483805242181063e-013 36.13750932772779 -5.748108942795935 -7.247535904753022e-013 35.00725162963889 0.8067628214403291 -7.073230889886872e-013 33.57675382364489 1.65054682073559 -6.794564910705958e-013 32.53968390930875 2.12006876235565 -5.910827383104333e-013 28.42816941674735 -5.424259428268567 -5.901945598907332e-013 28.20277973835859 1.665287255507634 -5.137001934940599e-013 24.44312954452271 1.69602843385639 -4.763966998666547e-013 22.46285329124259 -4.603672896502943 -4.405364961712621e-013 21.50434629007021 1.571413011447673 -4.428679645229749e-013 21.31602011475176 1.277876453809701 -4.195532810058467e-013 19.81651647825693 -4.603672896502943 -3.512745649913995e-013 17.04778378232713 1.891237154453477 -3.314015728506092e-013 16.36907032854392 -4.603672896502943 -3.224087663511455e-013 15.26515877922991 -3.898210365427145 -2.76223488526739e-013 13.0844843269232 2.322348499326865 -2.424727085781342e-013 11.80549532564305 2.043829817607836 -1.834088436680759e-013 8.826222329209283 -3.126095522140208 -1.70530256582424e-013 8.114554450371607 3.063230999949272 -1.261213355974178e-013 6.012957060382519 -2.34613270698781 -9.903189379656396e-014 4.700941362857924 -1.614903952208367 -9.203748874142548e-014 4.479642413885056 -0.4402079718948727 -8.570921750106209e-014 4.113157285986906 0.7677212014754555 -6.922240558537851e-014 3.285462297025975 3.028370280176339 -5.995204332975845e-014 2.907991513171177 -1.400763968394831 -7.505107646466058e-014 3.614436055407964</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"146\" source=\"#ID8159\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8157\">\r\n\t\t\t\t\t<float_array count=\"438\" id=\"ID8160\">3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 3.330669073875464e-016 -1 -2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 -3.330669073875464e-016 1 2.069226883073582e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"146\" source=\"#ID8160\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8158\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8156\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8157\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"138\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8158\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 8 7 9 9 7 10 9 10 11 11 10 12 11 12 13 11 13 14 14 13 15 14 15 16 16 15 17 17 15 18 17 18 19 19 18 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 25 24 26 26 24 27 27 24 28 28 24 29 27 30 26 30 27 31 30 31 32 30 32 33 30 33 34 34 33 35 34 35 36 34 36 37 34 37 38 38 37 39 38 39 40 38 40 41 42 43 44 43 45 44 45 46 44 44 46 47 46 48 47 48 49 47 49 50 47 47 50 51 50 52 51 52 53 51 53 54 51 55 51 54 56 57 58 58 57 54 54 57 55 55 57 59 59 57 60 57 61 60 60 61 62 61 63 62 62 63 64 63 65 64 64 65 66 65 67 66 66 67 68 68 67 69 67 70 69 69 70 71 70 72 71 72 73 71 71 73 74 73 75 74 74 75 76 76 75 77 75 78 77 77 78 79 78 80 79 79 80 81 80 82 81 83 81 82 84 85 86 87 88 89 88 87 86 86 87 84 84 87 90 90 87 91 91 87 92 91 92 93 93 92 94 93 94 95 93 95 96 96 95 97 97 95 98 97 98 99 99 98 100 99 100 101 99 101 102 102 101 103 102 103 104 102 104 105 105 104 106 105 106 107 105 107 108 105 108 109 109 108 110 110 108 111 110 112 109 112 110 113 113 110 114 115 116 117 117 116 118 119 118 116 120 121 116 116 121 119 119 121 122 121 123 122 123 124 122 124 125 122 122 125 126 125 127 126 127 128 126 126 128 129 128 130 129 130 131 129 129 131 132 131 133 132 132 133 134 134 133 135 133 136 135 136 137 135 135 137 138 137 139 138 138 139 140 140 139 141 141 139 142 142 139 143 144 143 139 142 145 141</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8161\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8162\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID8165\">8.627447702262899 -7.069900220812997e-013 34.26696839158245 6.300427882827329 -7.216449660063518e-013 34.41555728836534 7.096935876998709 -7.154277170684509e-013 34.01554105039749 9.069959861041001 -7.291944825738028e-013 34.96638463416031 5.403745218161294 -7.23421322845752e-013 35.22745952721309 9.512472019819104 -7.380762667708041e-013 35.66580087673815 5.081690604439979 -7.633893517322576e-013 36.39343803144862 9.307461086816689 -7.362999099314038e-013 36.16852682609173 9.102450153814262 -7.558398351648066e-013 36.67125277544528 5.466262002694851 -7.713829575095588e-013 37.33669733495862 7.893443871170089 -7.878142582740111e-013 37.8018739200909 6.582880017596658 -7.86926079854311e-013 37.8018739200909 6.582880017596658 -7.86926079854311e-013 37.8018739200909 7.893443871170089 -7.878142582740111e-013 37.8018739200909 5.466262002694851 -7.713829575095588e-013 37.33669733495862 9.102450153814262 -7.558398351648066e-013 36.67125277544528 5.081690604439979 -7.633893517322576e-013 36.39343803144862 9.307461086816689 -7.362999099314038e-013 36.16852682609173 9.512472019819104 -7.380762667708041e-013 35.66580087673815 5.403745218161294 -7.23421322845752e-013 35.22745952721309 9.069959861041001 -7.291944825738028e-013 34.96638463416031 6.300427882827329 -7.216449660063518e-013 34.41555728836534 8.627447702262899 -7.069900220812997e-013 34.26696839158245 7.096935876998709 -7.154277170684509e-013 34.01554105039749 9.90606616994824 -8.091305403468141e-013 39.03394332602429 7.893443871170089 -7.878142582740111e-013 37.8018739200909 9.102450153814262 -7.558398351648066e-013 36.67125277544528 6.582880017596658 -7.86926079854311e-013 37.8018739200909 6.734282538171606 -8.08242361927114e-013 39.03394332602429 10.6074993202332 -8.72191208145523e-013 41.74559255600889 6.734282538171606 -8.402167850363185e-013 40.62557279307541 8.347960521957191 -8.757439218243235e-013 41.91218343743428 10.18363984062279 -8.766321002440236e-013 41.91218343743428 10.18363984062279 -8.766321002440236e-013 41.91218343743428 10.6074993202332 -8.72191208145523e-013 41.74559255600889 8.347960521957191 -8.757439218243235e-013 41.91218343743428 6.734282538171606 -8.402167850363185e-013 40.62557279307541 6.734282538171606 -8.08242361927114e-013 39.03394332602429 9.90606616994824 -8.091305403468141e-013 39.03394332602429 6.582880017596658 -7.86926079854311e-013 37.8018739200909 7.893443871170089 -7.878142582740111e-013 37.8018739200909 9.102450153814262 -7.558398351648066e-013 36.67125277544528</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID8165\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8163\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID8166\">0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -4.440892098500618e-016 -1 -2.204248791256821e-014 -4.440892098500618e-016 -1 -2.204248791256821e-014 -4.440892098500618e-016 -1 -2.204248791256821e-014 -4.440892098500618e-016 -1 -2.204248791256821e-014 -4.440892098500618e-016 -1 -2.204248791256821e-014 -4.440892098500618e-016 -1 -2.204248791256821e-014 -4.440892098500618e-016 -1 -2.204248791256821e-014 -4.440892098500618e-016 -1 -2.204248791256821e-014 -4.440892098500618e-016 -1 -2.204248791256821e-014 4.440892098500618e-016 1 2.204248791256821e-014 4.440892098500618e-016 1 2.204248791256821e-014 4.440892098500618e-016 1 2.204248791256821e-014 4.440892098500618e-016 1 2.204248791256821e-014 4.440892098500618e-016 1 2.204248791256821e-014 4.440892098500618e-016 1 2.204248791256821e-014 4.440892098500618e-016 1 2.204248791256821e-014 4.440892098500618e-016 1 2.204248791256821e-014 4.440892098500618e-016 1 2.204248791256821e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID8166\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8164\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8162\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8163\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"34\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8164\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 6 8 9 9 8 10 9 10 11 12 13 14 13 15 14 14 15 16 15 17 16 17 18 16 16 18 19 18 20 19 19 20 21 20 22 21 23 21 22 24 25 26 25 24 27 27 24 28 28 24 29 28 29 30 30 29 31 31 29 32 33 34 35 35 34 36 36 34 37 34 38 37 37 38 39 39 38 40 41 40 38</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8167\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8170\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID8173\">2.736751303789946 -1.311395436687235e-012 62.75606337158085 2.861198609012595 -1.296962537367108e-012 62.1967544038995 2.047782001621435 -1.302957741700084e-012 62.88162273140733 2.793898062669195 -1.282085548837131e-012 62.02565707136846</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID8173\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8171\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID8174\">-0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID8174\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8172\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8170\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8171\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8172\" />\r\n\t\t\t\t\t<p>0 1 2 3 2 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8175\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8176\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID8179\">1.801193848142375 -1.931788062847772e-014 0.8933135347221817 1.202474204803263 -1.06581410364015e-014 0.4187574207454818 1.96645634898779 -1.06581410364015e-014 0.4187574207454818 1.96645634898779 -1.06581410364015e-014 0.4187574207454818 1.202474204803263 -1.06581410364015e-014 0.4187574207454818 1.801193848142375 -1.931788062847772e-014 0.8933135347221817</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID8179\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8177\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID8180\">0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID8180\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8178\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8176\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8177\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8178\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8181\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8182\">\r\n\t\t\t\t\t<float_array count=\"702\" id=\"ID8185\">0.02288384577075327 -1.211883024487825e-012 58.38014185808702 -0.7945551965957084 -1.224964574220167e-012 58.9037025423109 -0.2563524544372777 -1.193295462442734e-012 57.9373317190682 -0.4407922630841853 -1.221328593814519e-012 59.21269626172142 -1.831817733086374 -1.221356349390135e-012 59.21269626172142 -1.653957681004036 -1.227906665235423e-012 59.59938949855136 -2.659465055952945 -1.221245327087672e-012 59.21269626172142 -3.336057917226814 -1.225908263791098e-012 58.85788530260935 -3.991053290581869 -1.274313987664755e-012 60.60811201157822 -3.619576548865486 -1.211031275261121e-012 58.21752521821595 -2.592020287497173 -1.251665437962402e-012 60.25763957164141 -2.889734356628373 -1.249222947308226e-012 60.8915245653208 -3.397399255395051 -1.27542421068938e-012 61.58833111919146 -2.951743004620741 -1.275646255294305e-012 61.58833111919146 -2.951743004620741 -1.275646255294305e-012 61.58833111919146 -2.889734356628373 -1.249222947308226e-012 60.8915245653208 -3.397399255395051 -1.27542421068938e-012 61.58833111919146 -3.991053290581869 -1.274313987664755e-012 60.60811201157822 -2.592020287497173 -1.251665437962402e-012 60.25763957164141 -1.653957681004036 -1.227906665235423e-012 59.59938949855136 -2.659465055952945 -1.221245327087672e-012 59.21269626172142 -3.336057917226814 -1.225908263791098e-012 58.85788530260935 -3.619576548865486 -1.211031275261121e-012 58.21752521821595 -1.831817733086374 -1.221356349390135e-012 59.21269626172142 -0.4407922630841853 -1.221328593814519e-012 59.21269626172142 -0.7945551965957084 -1.224964574220167e-012 58.9037025423109 0.02288384577075327 -1.211883024487825e-012 58.38014185808702 -0.2563524544372777 -1.193295462442734e-012 57.9373317190682 -7.151643745353882 -8.943956686380261e-013 42.60548789922981 -7.599599858913257 -9.015010959956271e-013 43.55352934067035 -7.599599858913257 -9.015010959956271e-013 42.24102934067035 -6.631921267487918 -9.343636975245317e-013 44.91446707477241 -8.591142864434307 -9.166001291305292e-013 43.93529984529621 -0.7945551965957084 -1.224964574220167e-012 58.9037025423109 -3.619576548865486 -1.211031275261121e-012 58.21752521821595 -0.2563524544372777 -1.193295462442734e-012 57.9373317190682 -3.336057917226814 -1.225908263791098e-012 58.85788530260935 -2.659465055952945 -1.221245327087672e-012 59.21269626172142 -1.831817733086374 -1.221356349390135e-012 59.21269626172142 -1.521418328413799 -8.462119893692943e-013 40.98329744173422 -3.113047795464904 -8.413270080609436e-013 40.72863672700605 -1.521418328413799 -8.411049634560186e-013 40.72863672700605 -5.021269366561777 -8.553158181712206e-013 41.19457393594157 -0.6519790104444162 -9.37638855447176e-013 41.15185545007147 -0.6519790104444163 -1.023348072948238e-012 50.1232652540585 -5.077076682960191 -8.615330671091215e-013 41.50212605300025 -10.85103700531831 -9.423573033018329e-013 45.60948385518187 -10.85103700531831 -9.823253321883385e-013 47.39210885827912 -10.43703169657781 -1.071143174158351e-012 51.18951817518903 -1.471315888176581 -1.13420384195706e-012 55.05567714691458 -10.00818049251229 -1.113775738303957e-012 53.76432074246756 -7.763945028313222 -1.222577594717222e-012 58.75844538931882 -1.471315888176581 -1.141975403129436e-012 56.01065482714522 -3.991053290581869 -1.274313987664755e-012 60.60811201157822 -10.53554166262166 -9.094947017729282e-013 43.46699085156707 -10.72161983331574 -8.961720254774264e-013 43.30481484660206 -6.631921267487918 -9.343636975245317e-013 44.91446707477241 -8.591142864434307 -9.166001291305292e-013 43.93529984529621 -10.85103700531831 -9.423573033018329e-013 45.60948385518187 -10.53554166262166 -9.094947017729282e-013 43.46699085156707 -10.72161983331574 -8.961720254774264e-013 43.30481484660206 -3.991053290581869 -1.274313987664755e-012 60.60811201157822 -3.619576548865486 -1.211031275261121e-012 58.21752521821595 -7.763945028313222 -1.222577594717222e-012 58.75844538931882 -0.2563524544372777 -1.193295462442734e-012 57.9373317190682 -1.471315888176581 -1.141975403129436e-012 56.01065482714522 -1.471315888176581 -1.13420384195706e-012 55.05567714691458 -10.00818049251229 -1.113775738303957e-012 53.76432074246756 -10.43703169657781 -1.071143174158351e-012 51.18951817518903 -0.6519790104444163 -1.023348072948238e-012 50.1232652540585 -10.85103700531831 -9.823253321883385e-013 47.39210885827912 -5.077076682960191 -8.615330671091215e-013 41.50212605300025 -5.021269366561777 -8.553158181712206e-013 41.19457393594157 -0.6519790104444162 -9.37638855447176e-013 41.15185545007147 -1.521418328413799 -8.462119893692943e-013 40.98329744173422 -3.113047795464904 -8.413270080609436e-013 40.72863672700605 -1.521418328413799 -8.411049634560186e-013 40.72863672700605 -1.831817733086374 -1.221356349390135e-012 59.21269626172142 -0.7945551965957084 -1.224964574220167e-012 58.9037025423109 -2.659465055952945 -1.221245327087672e-012 59.21269626172142 -3.336057917226814 -1.225908263791098e-012 58.85788530260935 -7.599599858913257 -9.015010959956271e-013 43.55352934067035 -7.151643745353882 -8.943956686380261e-013 42.60548789922981 -7.599599858913257 -9.015010959956271e-013 42.24102934067035 -0.846913559761741 -1.150302075814125e-012 56.38017464215574 -1.471315888176581 -1.141975403129436e-012 56.01065482714522 -1.471315888176581 -1.13420384195706e-012 55.05567714691458 0.7441525941443163 -1.206645894313851e-012 57.65259029356459 2.610380840386154 -1.20303766948382e-012 58.29475083848897 2.423947133795193 -1.207700606187245e-012 58.83655903901083 2.27858759084333 -1.260769266764328e-012 60.71558973989587 4.115020230533752 -1.221689416297522e-012 59.1449332588161 3.909437417330209 -1.262323578998803e-012 60.2723153233085 4.371566184922493 -1.27542421068938e-012 61.58833111919146 2.793898062669195 -1.282085548837131e-012 62.02565707136846 2.861198609012595 -1.296962537367108e-012 62.1967544038995 3.041252949063373 -1.327604692846762e-012 62.95880409355213 2.736751303789946 -1.311395436687235e-012 62.75606337158085 2.047782001621435 -1.302957741700084e-012 62.88162273140733 1.853908304653774 -1.318722908649761e-012 63.13409919375484 2.363229734110129 -1.318722908649761e-012 63.13409919375484 2.363229734110129 -1.318722908649761e-012 63.13409919375484 3.041252949063373 -1.327604692846762e-012 62.95880409355213 1.853908304653774 -1.318722908649761e-012 63.13409919375484 2.047782001621435 -1.302957741700084e-012 62.88162273140733 2.736751303789946 -1.311395436687235e-012 62.75606337158085 2.861198609012595 -1.296962537367108e-012 62.1967544038995 4.371566184922493 -1.27542421068938e-012 61.58833111919146 2.793898062669195 -1.282085548837131e-012 62.02565707136846 2.27858759084333 -1.260769266764328e-012 60.71558973989587 3.909437417330209 -1.262323578998803e-012 60.2723153233085 4.115020230533752 -1.221689416297522e-012 59.1449332588161 2.423947133795193 -1.207700606187245e-012 58.83655903901083 2.610380840386154 -1.20303766948382e-012 58.29475083848897 0.7441525941443163 -1.206645894313851e-012 57.65259029356459 -0.846913559761741 -1.150302075814125e-012 56.38017464215574 -1.471315888176581 -1.141975403129436e-012 56.01065482714522 -1.471315888176581 -1.13420384195706e-012 55.05567714691458 5.005315679595983 -8.544276397515205e-013 41.36709619434033 0.791134918551438 -8.61422044806659e-013 41.43163162840602 1.059515547749182 -8.552047958687581e-013 41.26044981778692 6.19324367776247 -8.624212455288216e-013 41.78084905969342 7.664094300819458 -8.646416915780719e-013 42.96671051395622 7.132168326280828 -8.735234757750732e-013 42.40008384423041 7.664094300819458 -8.646416915780719e-013 41.78590878155599 6.6002423517422 -8.815170815523743e-013 43.01425890690484 8.666467683528207 2.1262991367621e-012 43.60342383377687 11.41191146165546 -9.467981954003335e-013 46.26798539362843 11.04146768352822 2.1254109583424e-012 43.60342383377687 11.41191146165546 6.208367153703875e-013 43.25339142064705 -0.6519790104444163 -1.023348072948238e-012 50.1232652540585 -0.6519790104444162 -9.37638855447176e-013 41.15185545007147 10.88973644928857 -1.045385999987047e-012 49.92345841333435 10.88973644928857 -1.111111203044857e-012 53.42504324084676 -1.471315888176581 -1.13420384195706e-012 55.05567714691458 9.383510217116172 -1.191935439237568e-012 57.9561404347926 -0.846913559761741 -1.150302075814125e-012 56.38017464215574 0.7441525941443163 -1.206645894313851e-012 57.65259029356459 2.610380840386154 -1.20303766948382e-012 58.29475083848897 8.017331923004788 -1.261657445184028e-012 60.10527161535961 4.115020230533752 -1.221689416297522e-012 59.1449332588161 2.423947133795193 -1.207700606187245e-012 58.83655903901083 3.909437417330209 -1.262323578998803e-012 60.2723153233085 7.188998739223957 -1.265210158862828e-012 60.58050472277773 4.371566184922493 -1.27542421068938e-012 61.58833111919146 4.371566184922493 -1.27542421068938e-012 61.58833111919146 7.188998739223957 -1.265210158862828e-012 60.58050472277773 3.909437417330209 -1.262323578998803e-012 60.2723153233085 8.017331923004788 -1.261657445184028e-012 60.10527161535961 4.115020230533752 -1.221689416297522e-012 59.1449332588161 2.423947133795193 -1.207700606187245e-012 58.83655903901083 2.610380840386154 -1.20303766948382e-012 58.29475083848897 9.383510217116172 -1.191935439237568e-012 57.9561404347926 0.7441525941443163 -1.206645894313851e-012 57.65259029356459 -0.846913559761741 -1.150302075814125e-012 56.38017464215574 -1.471315888176581 -1.13420384195706e-012 55.05567714691458 10.88973644928857 -1.111111203044857e-012 53.42504324084676 -0.6519790104444163 -1.023348072948238e-012 50.1232652540585 10.88973644928857 -1.045385999987047e-012 49.92345841333435 11.41191146165546 -9.467981954003335e-013 46.26798539362843 8.666467683528207 2.1262991367621e-012 43.60342383377687 6.6002423517422 -8.815170815523743e-013 43.01425890690484 6.19324367776247 -8.624212455288216e-013 41.78084905969342 0.791134918551438 -8.61422044806659e-013 41.43163162840602 -0.6519790104444162 -9.37638855447176e-013 41.15185545007147 11.04146768352822 2.1254109583424e-012 43.60342383377687 11.41191146165546 6.208367153703875e-013 43.25339142064705 7.664094300819458 -8.646416915780719e-013 42.96671051395622 7.132168326280828 -8.735234757750732e-013 42.40008384423041 7.664094300819458 -8.646416915780719e-013 41.78590878155599 5.005315679595983 -8.544276397515205e-013 41.36709619434033 1.059515547749182 -8.552047958687581e-013 41.26044981778692 -6.581500184474448 -9.023892744153272e-013 41.88185856441391 -7.79780262059267 -8.752998326144734e-013 42.12957608913289 -7.442787901134039 -8.606448886894214e-013 41.31201720783768 -7.599599858913257 -9.015010959956271e-013 42.24102934067035 -6.581500184474448 -9.023892744153272e-013 43.06935856441391 -7.151643745353882 -8.943956686380261e-013 42.60548789922981 -8.489427818691896 -9.050538096744276e-013 42.58416895797532 -7.599599858913257 -9.015010959956271e-013 43.55352934067035 -11.4778729287633 -8.526512829121202e-013 42.64570418733107 -10.72161983331574 -8.961720254774264e-013 43.30481484660206 -10.53554166262166 -9.094947017729282e-013 43.46699085156707 -8.591142864434307 -9.166001291305292e-013 43.93529984529621 -10.62616147519802 -8.588685318500211e-013 41.60488649737616 -11.16553313612351 -8.455458555545192e-013 41.17858324687192 -9.677151045804266 -8.828493491819245e-013 42.35495599512989 -8.489427818691896 -9.050538096744276e-013 42.58416895797532 -9.677151045804266 -8.828493491819245e-013 42.35495599512989 -11.4778729287633 -8.526512829121202e-013 42.64570418733107 -10.62616147519802 -8.588685318500211e-013 41.60488649737616 -11.16553313612351 -8.455458555545192e-013 41.17858324687192 -8.591142864434307 -9.166001291305292e-013 43.93529984529621 -7.599599858913257 -9.015010959956271e-013 43.55352934067035 -10.53554166262166 -9.094947017729282e-013 43.46699085156707 -10.72161983331574 -8.961720254774264e-013 43.30481484660206 -7.599599858913257 -9.015010959956271e-013 42.24102934067035 -7.79780262059267 -8.752998326144734e-013 42.12957608913289 -7.151643745353882 -8.943956686380261e-013 42.60548789922981 -6.581500184474448 -9.023892744153272e-013 43.06935856441391 -6.581500184474448 -9.023892744153272e-013 41.88185856441391 -7.442787901134039 -8.606448886894214e-013 41.31201720783768 11.41191146165546 -8.641976023682219e-013 41.81142288588532 10.6074993202332 -8.72191208145523e-013 41.74559255600889 11.0313587998436 -8.677503160470224e-013 41.57900167458351 10.18363984062279 -8.766321002440236e-013 41.91218343743428 12.13173931811532 2.147615418834903e-012 42.57322590967938 8.347960521957191 -8.757439218243235e-013 41.91218343743428 5.993109284792975 -8.388845174067683e-013 41.17434160196507 6.734282538171606 -8.402167850363185e-013 40.62557279307541 7.664094300819458 -8.646416915780719e-013 41.78590878155599 6.19324367776247 -8.624212455288216e-013 41.78084905969342 7.664094300819458 -8.646416915780719e-013 42.96671051395622 11.41191146165546 6.208367153703875e-013 43.25339142064705 8.666467683528207 2.1262991367621e-012 43.60342383377687 11.04146768352822 2.1254109583424e-012 43.60342383377687 7.132168326280828 -8.735234757750732e-013 42.40008384423041 6.6002423517422 -8.815170815523743e-013 43.01425890690484 7.664094300819458 -8.646416915780719e-013 41.78590878155599 6.19324367776247 -8.624212455288216e-013 41.78084905969342 7.132168326280828 -8.735234757750732e-013 42.40008384423041 6.6002423517422 -8.815170815523743e-013 43.01425890690484 11.04146768352822 2.1254109583424e-012 43.60342383377687 11.41191146165546 6.208367153703875e-013 43.25339142064705 8.666467683528207 2.1262991367621e-012 43.60342383377687 7.664094300819458 -8.646416915780719e-013 42.96671051395622 12.13173931811532 2.147615418834903e-012 42.57322590967938 8.347960521957191 -8.757439218243235e-013 41.91218343743428 5.993109284792975 -8.388845174067683e-013 41.17434160196507 6.734282538171606 -8.402167850363185e-013 40.62557279307541 10.18363984062279 -8.766321002440236e-013 41.91218343743428 11.41191146165546 -8.641976023682219e-013 41.81142288588532 10.6074993202332 -8.72191208145523e-013 41.74559255600889 11.0313587998436 -8.677503160470224e-013 41.57900167458351</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"234\" source=\"#ID8185\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8183\">\r\n\t\t\t\t\t<float_array count=\"702\" id=\"ID8186\">0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 -3.885780586188041e-016 -1 -2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 3.885780586188041e-016 1 2.004911332142398e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 7.155387393709121e-014 -1 -4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -7.155387393709121e-014 1 4.464186313955254e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 -6.050715484207092e-015 -1 -1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 6.050715484207092e-015 1 1.973737515895216e-014 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 2.163269563482114e-013 -1 7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013 -2.163269563482114e-013 1 -7.57547813427085e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"234\" source=\"#ID8186\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8184\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8182\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8183\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"214\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8184\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 7 8 9 8 7 6 8 6 5 8 5 10 8 10 11 8 11 12 12 11 13 14 15 16 16 15 17 15 18 17 18 19 17 19 20 17 20 21 17 22 17 21 20 19 23 19 24 23 23 24 25 24 26 25 27 25 26 28 29 30 29 28 31 29 31 32 33 34 35 34 33 36 36 33 37 37 33 38 39 40 41 40 39 42 42 39 43 42 43 44 42 44 45 45 44 31 31 44 46 46 44 47 47 44 48 48 44 49 48 49 50 50 49 51 51 49 52 51 52 34 34 52 35 51 34 53 54 46 55 46 54 32 46 32 31 56 57 58 57 59 58 60 58 59 61 62 63 64 65 62 62 65 63 65 66 63 63 66 67 67 66 68 66 69 68 68 69 70 70 69 58 58 69 56 56 69 71 71 69 72 69 73 72 73 74 72 72 74 75 76 75 74 77 78 79 79 78 80 80 78 62 64 62 78 57 56 81 56 82 81 83 81 82 84 85 86 85 84 2 2 84 87 2 87 88 2 88 0 0 88 89 0 89 90 90 89 91 90 91 92 90 92 93 90 93 94 94 93 95 95 93 96 95 96 97 97 96 98 98 96 99 99 96 100 101 102 103 103 102 104 104 102 105 105 102 106 102 107 106 106 107 108 108 107 109 107 110 109 110 111 109 111 112 109 109 112 26 112 113 26 26 113 27 113 114 27 114 115 27 27 115 116 117 116 115 118 119 120 119 118 121 122 123 124 123 122 125 125 122 126 127 128 129 128 127 126 119 130 131 130 119 121 130 121 125 130 125 126 130 126 127 130 127 132 130 132 133 130 133 134 134 133 135 134 135 136 136 135 137 137 135 138 138 135 139 138 139 140 138 140 141 140 139 142 142 139 143 142 143 144 145 146 147 146 148 147 147 148 149 150 149 151 149 148 151 148 152 151 151 152 153 153 152 154 154 152 155 152 156 155 155 156 157 156 158 157 158 159 157 159 160 157 160 161 157 161 162 157 162 163 157 164 157 163 160 159 165 166 165 159 160 167 161 161 167 168 169 168 167 162 170 163 171 163 170 172 173 174 173 172 175 175 172 176 175 176 177 175 178 173 178 175 179 178 179 180 180 179 181 181 179 182 182 179 183 184 180 185 180 184 186 180 186 178 187 188 189 188 190 189 191 189 190 192 193 194 194 193 195 195 193 189 189 193 187 193 196 187 197 187 196 198 199 196 199 200 196 196 200 197 201 197 200 202 203 204 203 202 205 205 202 206 205 206 207 207 208 209 208 207 210 208 210 211 210 207 212 212 207 206 212 206 213 212 213 214 214 213 215 211 216 217 216 211 210 218 219 220 221 220 219 222 223 224 224 223 225 223 226 225 226 227 225 225 227 218 219 218 228 218 227 228 229 228 227 227 226 230 226 231 230 230 231 232 233 232 231</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8187\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8188\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8191\">-7.526626043027324 -7.225331444260519e-013 34.55296635715047 -9.934035102799303 -7.016609515630989e-013 34.14649581185208 -8.722805546754568 1.623590151211829e-012 33.83758973783656 -8.846172370987983 -7.229772336359019e-013 34.67543789119029 -7.738708619758346 -7.558398351648066e-013 36.3229304478355 -8.846172370987983 -7.283063041541027e-013 35.50308521405682 -9.32223632357192 -7.469580509678053e-013 36.10060661926585 -9.559066437083462 -7.558398351648066e-013 36.89364608132453 -8.121048088009504 -7.602807272633072e-013 36.98435712377939 -9.01128942794033 -7.744915819785092e-013 37.3299764612258 -9.01128942794033 -7.744915819785092e-013 37.3299764612258 -8.121048088009504 -7.602807272633072e-013 36.98435712377939 -9.559066437083462 -7.558398351648066e-013 36.89364608132453 -7.738708619758346 -7.558398351648066e-013 36.3229304478355 -9.32223632357192 -7.469580509678053e-013 36.10060661926585 -8.846172370987983 -7.283063041541027e-013 35.50308521405682 -8.846172370987983 -7.229772336359019e-013 34.67543789119029 -7.526626043027324 -7.225331444260519e-013 34.55296635715047 -9.934035102799303 -7.016609515630989e-013 34.14649581185208 -8.722805546754568 1.623590151211829e-012 33.83758973783656</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8191\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8189\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8192\">-2.164934898019051e-015 -1 -1.910842517116109e-014 -2.164934898019051e-015 -1 -1.910842517116109e-014 -2.164934898019051e-015 -1 -1.910842517116109e-014 -2.164934898019051e-015 -1 -1.910842517116109e-014 -2.164934898019051e-015 -1 -1.910842517116109e-014 -2.164934898019051e-015 -1 -1.910842517116109e-014 -2.164934898019051e-015 -1 -1.910842517116109e-014 -2.164934898019051e-015 -1 -1.910842517116109e-014 -2.164934898019051e-015 -1 -1.910842517116109e-014 -2.164934898019051e-015 -1 -1.910842517116109e-014 2.164934898019051e-015 1 1.910842517116109e-014 2.164934898019051e-015 1 1.910842517116109e-014 2.164934898019051e-015 1 1.910842517116109e-014 2.164934898019051e-015 1 1.910842517116109e-014 2.164934898019051e-015 1 1.910842517116109e-014 2.164934898019051e-015 1 1.910842517116109e-014 2.164934898019051e-015 1 1.910842517116109e-014 2.164934898019051e-015 1 1.910842517116109e-014 2.164934898019051e-015 1 1.910842517116109e-014 2.164934898019051e-015 1 1.910842517116109e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8192\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8190\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8188\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8189\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8190\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 6 4 7 7 4 8 7 8 9 10 11 12 11 13 12 12 13 14 14 13 15 15 13 16 13 17 16 16 17 18 19 18 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8193\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8194\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID8197\">-2.361157400000395 -1.362021606610142e-012 66.03049893294347 -3.140231685456485 -1.376010416720419e-012 65.45381973760028 -2.63091025600013 -1.375788372115494e-012 65.45381973760028 -3.63360703592596 -1.368682944757893e-012 65.74518620213426 -4.0911286046014 -1.389999226830696e-012 66.27539169660547 -2.400972707121473 -1.376232461325344e-012 66.78743115456571 -4.246536250526176 -1.396216475768597e-012 66.62434103783757 -4.437531786572308 -1.396216475768597e-012 66.62434103783757 -4.992022001958494 -1.366462498708643e-012 65.84683028499893 -5.29442792597477 -1.357580714511641e-012 65.30124601188672 -5.167097568610682 -1.357580714511641e-012 65.30124601188672 -5.685972383757905 -1.354916179252541e-012 65.62697788948356 -5.92900633541471 -1.379341085794295e-012 66.2154164980093 -5.819462202264033 -1.386446513151896e-012 66.90711291629035 -2.45436902768494 -1.386224468546971e-012 67.10124671722269 -5.563313137359071 -1.402433724706498e-012 67.19049399488689 -2.507765348248406 -1.396216475768597e-012 67.41506227987968 -4.180529146879874 -1.400657367867098e-012 67.35467514878745 -2.99119621036733 -1.406208482990223e-012 67.5753835824393 -4.817180933700316 -1.400657367867098e-012 67.35467514878745 -4.707924577556683 -1.400657367867098e-012 67.35467514878745 -4.707924577556683 -1.400657367867098e-012 67.35467514878745 -4.180529146879874 -1.400657367867098e-012 67.35467514878745 -4.817180933700316 -1.400657367867098e-012 67.35467514878745 -5.563313137359071 -1.402433724706498e-012 67.19049399488689 -2.99119621036733 -1.406208482990223e-012 67.5753835824393 -2.507765348248406 -1.396216475768597e-012 67.41506227987968 -2.45436902768494 -1.386224468546971e-012 67.10124671722269 -5.819462202264033 -1.386446513151896e-012 66.90711291629035 -2.400972707121473 -1.376232461325344e-012 66.78743115456571 -4.437531786572308 -1.396216475768597e-012 66.62434103783757 -5.92900633541471 -1.379341085794295e-012 66.2154164980093 -4.992022001958494 -1.366462498708643e-012 65.84683028499893 -5.685972383757905 -1.354916179252541e-012 65.62697788948356 -5.29442792597477 -1.357580714511641e-012 65.30124601188672 -5.167097568610682 -1.357580714511641e-012 65.30124601188672 -4.246536250526176 -1.396216475768597e-012 66.62434103783757 -4.0911286046014 -1.389999226830696e-012 66.27539169660547 -2.361157400000395 -1.362021606610142e-012 66.03049893294347 -3.63360703592596 -1.368682944757893e-012 65.74518620213426 -3.140231685456485 -1.376010416720419e-012 65.45381973760028 -2.63091025600013 -1.375788372115494e-012 65.45381973760028 -0.5180793311797718 -1.394939719290278e-012 67.10780907794658 -2.45436902768494 -1.386224468546971e-012 67.10124671722269 -2.400972707121473 -1.376232461325344e-012 66.78743115456571 -0.5455389394970158 -1.396105453466134e-012 67.26919196619582 -0.5455389394970158 -1.396105453466134e-012 67.26919196619582 -0.5180793311797718 -1.394939719290278e-012 67.10780907794658 -2.45436902768494 -1.386224468546971e-012 67.10124671722269 -2.400972707121473 -1.376232461325344e-012 66.78743115456571</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID8197\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8195\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID8198\">0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -3.996802888650556e-015 -1 -2.710165468505724e-014 -3.996802888650556e-015 -1 -2.710165468505724e-014 -3.996802888650556e-015 -1 -2.710165468505724e-014 -3.996802888650556e-015 -1 -2.710165468505724e-014 3.996802888650556e-015 1 2.710165468505724e-014 3.996802888650556e-015 1 2.710165468505724e-014 3.996802888650556e-015 1 2.710165468505724e-014 3.996802888650556e-015 1 2.710165468505724e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID8198\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8196\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8194\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8195\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"42\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8196\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 8 9 10 9 8 11 11 8 12 12 8 7 12 7 13 13 7 5 13 5 14 13 14 15 15 14 16 15 16 17 17 16 18 17 19 15 19 17 20 21 22 23 24 23 22 25 26 22 22 26 24 26 27 24 24 27 28 27 29 28 29 30 28 28 30 31 30 32 31 31 32 33 33 32 34 35 34 32 30 29 36 36 29 37 29 38 37 37 38 39 39 38 40 41 40 38 42 43 44 43 42 45 46 47 48 49 48 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8199\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8200\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID8203\">-6.991929043748557 -7.274181257344026e-013 35.46655417088711 -7.738708619758346 -7.558398351648066e-013 36.3229304478355 -7.526626043027324 -7.225331444260519e-013 34.55296635715047 -6.991929043748558 -7.442935157087049e-013 36.54886220848184 -8.121048088009504 -7.602807272633072e-013 36.98435712377939 -7.516624730386518 -7.669420654110581e-013 37.49547993738076 -9.01128942794033 -7.744915819785092e-013 37.3299764612258 -9.999883641121315 -7.700506898800086e-013 37.38623277122558 -8.16316900207004 -7.842615445952106e-013 37.90248020935366 -10.62616147519802 -8.588685318500211e-013 41.60488649737616 -8.16316900207004 -7.984723993104126e-013 38.53913199617405 -7.442787901134039 -8.606448886894214e-013 41.31201720783768 -7.79780262059267 -8.752998326144734e-013 42.12957608913289 -9.677151045804266 -8.828493491819245e-013 42.35495599512989 -8.489427818691896 -9.050538096744276e-013 42.58416895797532 -8.846172370987983 -7.229772336359019e-013 34.67543789119029 -10.32378189810112 -7.274181257344026e-013 34.94807887739726 -9.934035102799303 -7.016609515630989e-013 34.14649581185208 -8.846172370987983 -7.283063041541027e-013 35.50308521405682 -10.51662890428585 -7.434053372890048e-013 35.94830050594734 -9.32223632357192 -7.469580509678053e-013 36.10060661926585 -9.559066437083462 -7.558398351648066e-013 36.89364608132453 -9.01128942794033 -7.744915819785092e-013 37.3299764612258 -9.559066437083462 -7.558398351648066e-013 36.89364608132453 -9.999883641121315 -7.700506898800086e-013 37.38623277122558 -9.32223632357192 -7.469580509678053e-013 36.10060661926585 -10.51662890428585 -7.434053372890048e-013 35.94830050594734 -8.846172370987983 -7.283063041541027e-013 35.50308521405682 -10.32378189810112 -7.274181257344026e-013 34.94807887739726 -8.846172370987983 -7.229772336359019e-013 34.67543789119029 -9.934035102799303 -7.016609515630989e-013 34.14649581185208 -8.489427818691896 -9.050538096744276e-013 42.58416895797532 -7.79780262059267 -8.752998326144734e-013 42.12957608913289 -9.677151045804266 -8.828493491819245e-013 42.35495599512989 -10.62616147519802 -8.588685318500211e-013 41.60488649737616 -7.442787901134039 -8.606448886894214e-013 41.31201720783768 -8.16316900207004 -7.984723993104126e-013 38.53913199617405 -8.16316900207004 -7.842615445952106e-013 37.90248020935366 -7.516624730386518 -7.669420654110581e-013 37.49547993738076 -8.121048088009504 -7.602807272633072e-013 36.98435712377939 -6.991929043748558 -7.442935157087049e-013 36.54886220848184 -7.738708619758346 -7.558398351648066e-013 36.3229304478355 -6.991929043748557 -7.274181257344026e-013 35.46655417088711 -7.526626043027324 -7.225331444260519e-013 34.55296635715047</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID8203\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8201\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID8204\">3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 3.275157922644206e-015 -1 -2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014 -3.275157922644206e-015 1 2.168198346558229e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID8204\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8202\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8200\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8201\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"40\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8202\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 7 5 8 7 8 9 9 8 10 9 10 11 9 11 12 9 12 13 13 12 14 15 16 17 16 15 18 16 18 19 19 18 20 19 20 7 7 20 21 7 21 6 22 23 24 23 25 24 24 25 26 25 27 26 26 27 28 27 29 28 30 28 29 31 32 33 33 32 34 32 35 34 35 36 34 36 37 34 34 37 24 37 38 24 24 38 22 22 38 39 38 40 39 39 40 41 40 42 41 43 41 42</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8205\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8206\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID8209\">3.028370280176339 -2.131628207280301e-014 0.9980361527098611 1.801193848142375 -1.931788062847772e-014 0.8933135347221817 1.96645634898779 -1.06581410364015e-014 0.4187574207454818 1.202474204803263 -1.06581410364015e-014 0.4187574207454818 -3.501584827512425 0 0 0 0 0 -3.748896529099147 -2.353672812205332e-014 1.053673388911607 3.028370280176339 -5.995204332975845e-014 2.907991513171177 -3.054548016213636 -3.708144902248023e-014 1.799001113250049 -1.255937649300304 -6.727951529228449e-014 3.219571138883066 0.7677212014754555 -6.922240558537851e-014 3.285462297025975 -1.400763968394831 -7.505107646466058e-014 3.614436055407964 -0.4402079718948727 -8.570921750106209e-014 4.113157285986906 -0.4402079718948727 -8.570921750106209e-014 4.113157285986906 0.7677212014754555 -6.922240558537851e-014 3.285462297025975 -1.400763968394831 -7.505107646466058e-014 3.614436055407964 -1.255937649300304 -6.727951529228449e-014 3.219571138883066 3.028370280176339 -5.995204332975845e-014 2.907991513171177 -3.054548016213636 -3.708144902248023e-014 1.799001113250049 -3.748896529099147 -2.353672812205332e-014 1.053673388911607 3.028370280176339 -2.131628207280301e-014 0.9980361527098611 1.801193848142375 -1.931788062847772e-014 0.8933135347221817 1.202474204803263 -1.06581410364015e-014 0.4187574207454818 -3.501584827512425 0 0 0 0 0 1.96645634898779 -1.06581410364015e-014 0.4187574207454818</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID8209\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8207\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID8210\">0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 0 -1 -2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014 -0 1 2.037747141164774e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID8210\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8208\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8206\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8207\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8208\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 6 3 1 6 1 0 6 0 7 6 7 8 8 7 9 9 7 10 9 10 11 11 10 12 13 14 15 15 14 16 14 17 16 16 17 18 18 17 19 17 20 19 20 21 19 21 22 19 19 22 23 24 23 22 25 21 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8211\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8212\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID8215\">-0.5455389394970158 -1.396105453466134e-012 67.26919196619582 -2.507765348248406 -1.396216475768597e-012 67.41506227987968 -2.45436902768494 -1.386224468546971e-012 67.10124671722269 -0.6675890287574816 -1.401267990530641e-012 67.98649265338601 -2.99119621036733 -1.406208482990223e-012 67.5753835824393 -4.707924577556683 -1.400657367867098e-012 67.35467514878745 -4.180529146879874 -1.400657367867098e-012 67.35467514878745 -4.707924577556683 -1.424638185199001e-012 68.65811215092752 -2.214867687030001 -1.413757999557674e-012 68.88753048817384 -1.802769504516745 -1.444733221944716e-012 69.36094424915883 -3.12462384086383 -1.413757999557674e-012 69.43639293957808 -3.889030388219896 -1.413535954952749e-012 69.0105906023849 -4.356123876124041 -1.465494392505207e-012 69.47705918333462 -3.528466291890045 -1.444400155037329e-012 69.80784748221588 -3.528466291890045 -1.444400155037329e-012 69.80784748221588 -3.889030388219896 -1.413535954952749e-012 69.0105906023849 -4.356123876124041 -1.465494392505207e-012 69.47705918333462 -2.214867687030001 -1.413757999557674e-012 68.88753048817384 -4.707924577556683 -1.424638185199001e-012 68.65811215092752 -3.12462384086383 -1.413757999557674e-012 69.43639293957808 -1.802769504516745 -1.444733221944716e-012 69.36094424915883 -0.6675890287574816 -1.401267990530641e-012 67.98649265338601 -2.99119621036733 -1.406208482990223e-012 67.5753835824393 -4.707924577556683 -1.400657367867098e-012 67.35467514878745 -4.180529146879874 -1.400657367867098e-012 67.35467514878745 -2.507765348248406 -1.396216475768597e-012 67.41506227987968 -0.5455389394970158 -1.396105453466134e-012 67.26919196619582 -2.45436902768494 -1.386224468546971e-012 67.10124671722269</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID8215\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8213\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID8216\">2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 2.331468351712825e-015 -1 -1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014 -2.331468351712825e-015 1 1.86267252792706e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID8216\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8214\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8212\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8213\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8214\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 5 6 5 4 7 7 4 3 7 3 8 8 3 9 10 11 8 7 11 12 11 7 8 12 11 13 14 15 16 17 18 15 16 15 18 17 15 19 20 21 17 17 21 18 21 22 18 18 22 23 24 23 22 22 21 25 21 26 25 27 25 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8217\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8218\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID8221\">3.226997738792623 -1.364686141869242e-012 65.56876292466444 1.853908304653774 -1.325828336007362e-012 63.74635612791526 2.181613533489259 -1.325828336007362e-012 63.74635612791526 1.853908304653774 -1.346589506567852e-012 64.78939383948799 0.8274703102848867 -1.340538791083645e-012 64.95038939339628 1.487398750570372 -1.353139822413141e-012 65.23438188030293 1.953386380453725 -1.375122238300719e-012 66.21123714954086 3.702495339398963 -1.407762795224699e-012 68.00574935286868 1.751748830493507 -1.38489220091742e-012 66.81511445173699 -0.5180793311797718 -1.394939719290278e-012 67.10780907794658 -0.5455389394970158 -1.396105453466134e-012 67.26919196619582 -0.6675890287574816 -1.401267990530641e-012 67.98649265338601 -1.802769504516745 -1.444733221944716e-012 69.36094424915883 3.702495339398962 -1.446398556481654e-012 69.21538774782748 2.964905331145487 -1.492361789701135e-012 71.04599939759186 -3.12462384086383 -1.413757999557674e-012 69.43639293957808 -3.528466291890045 -1.444400155037329e-012 69.80784748221588 -5.039687299621294 -1.467714838554457e-012 70.58223007687857 -3.427970243908669 -1.476818667356383e-012 71.72132891580938 1.492066812703425 -1.502131752317837e-012 72.05023970760777 -0.8389409233495284 -1.512512337598082e-012 72.38981149302198 -4.356123876124041 -1.465494392505207e-012 69.47705918333462 -5.039687299621294 -1.471267552233257e-012 69.4910840732914 -4.757252499708439 -1.470823463023407e-012 69.15696308652436 -5.649523670179619 -1.470379373813557e-012 69.4910840732914 -3.889030388219896 -1.413535954952749e-012 69.0105906023849 -2.214867687030001 -1.413757999557674e-012 68.88753048817384 1.147871528297362 -1.405875416082836e-012 66.61347690177682 0.3954125105824651 -1.37340139261255e-012 66.22912550250713 0.8714165227466807 -1.363908985752005e-012 66.03998049588779 -0.3685696336020582 -1.373429148188166e-012 66.22912550250713 1.036530415801175 -1.334710120204363e-012 64.42514854190011 1.318660841218482 -1.329381049686162e-012 64.17811125108383 0.8274703102848867 -1.340538791083645e-012 64.95038939339628 1.853908304653774 -1.346589506567852e-012 64.78939383948799 1.036530415801175 -1.334710120204363e-012 64.42514854190011 1.318660841218482 -1.329381049686162e-012 64.17811125108383 1.751748830493507 -1.38489220091742e-012 66.81511445173699 1.147871528297362 -1.405875416082836e-012 66.61347690177682 -0.5180793311797718 -1.394939719290278e-012 67.10780907794658 -0.3685696336020582 -1.373429148188166e-012 66.22912550250713 0.3954125105824651 -1.37340139261255e-012 66.22912550250713 0.8714165227466807 -1.363908985752005e-012 66.03998049588779 -1.802769504516745 -1.444733221944716e-012 69.36094424915883 -2.214867687030001 -1.413757999557674e-012 68.88753048817384 -3.12462384086383 -1.413757999557674e-012 69.43639293957808 -3.889030388219896 -1.413535954952749e-012 69.0105906023849 -3.528466291890045 -1.444400155037329e-012 69.80784748221588 -5.039687299621294 -1.467714838554457e-012 70.58223007687857 -5.649523670179619 -1.470379373813557e-012 69.4910840732914 -5.039687299621294 -1.471267552233257e-012 69.4910840732914 -4.356123876124041 -1.465494392505207e-012 69.47705918333462 -4.757252499708439 -1.470823463023407e-012 69.15696308652436 -0.8389409233495284 -1.512512337598082e-012 72.38981149302198 1.492066812703425 -1.502131752317837e-012 72.05023970760777 -3.427970243908669 -1.476818667356383e-012 71.72132891580938 2.964905331145487 -1.492361789701135e-012 71.04599939759186 3.702495339398962 -1.446398556481654e-012 69.21538774782748 3.702495339398963 -1.407762795224699e-012 68.00574935286868 -0.6675890287574816 -1.401267990530641e-012 67.98649265338601 -0.5455389394970158 -1.396105453466134e-012 67.26919196619582 1.953386380453725 -1.375122238300719e-012 66.21123714954086 3.226997738792623 -1.364686141869242e-012 65.56876292466444 1.487398750570372 -1.353139822413141e-012 65.23438188030293 1.853908304653774 -1.325828336007362e-012 63.74635612791526 2.181613533489259 -1.325828336007362e-012 63.74635612791526</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID8221\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8219\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID8222\">4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 4.996003610813196e-016 -1 -2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014 -4.996003610813196e-016 1 2.150016656883469e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID8222\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8220\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8218\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8219\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"62\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8220\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 6 7 8 8 7 9 9 7 10 10 7 11 11 7 12 12 7 13 12 13 14 12 14 15 15 14 16 16 14 17 17 14 18 18 14 19 18 19 20 21 22 23 22 21 16 22 16 24 24 16 17 16 25 15 15 26 12 27 28 29 28 27 30 30 27 9 9 27 8 3 31 32 31 3 4 33 34 35 36 35 34 37 38 39 39 38 40 40 38 41 42 41 38 43 44 45 45 46 47 48 47 49 49 47 50 47 51 50 52 50 51 53 54 55 54 56 55 55 56 48 48 56 47 47 56 45 45 56 43 56 57 43 57 58 43 43 58 59 59 58 60 60 58 39 39 58 37 37 58 61 58 62 61 61 62 63 63 62 33 33 62 34 34 62 64 65 64 62</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8223\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8224\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID8227\">5.993109284792975 -8.388845174067683e-013 41.17434160196507 5.005315679595983 -8.544276397515205e-013 41.36709619434033 1.059515547749182 -8.552047958687581e-013 41.26044981778692 6.19324367776247 -8.624212455288216e-013 41.78084905969342 -1.521418328413799 -8.411049634560186e-013 40.72863672700605 6.734282538171606 -8.402167850363185e-013 40.62557279307541 -1.521418328413799 -8.462119893692943e-013 40.98329744173422 -0.6519790104444162 -9.37638855447176e-013 41.15185545007147 0.791134918551438 -8.61422044806659e-013 41.43163162840602 0.03704012652961109 -8.154345254585138e-013 39.38443344051205 -1.397075800561024 -8.335554468885675e-013 39.50426054527247 -1.188213883716661 -8.11684053303452e-013 39.18442640255113 1.262294136775876 -8.225642389447785e-013 39.58444047847294 -3.032344989399173 -8.173461907290403e-013 39.76096084568025 1.54674486594058 -8.301137555122296e-013 39.92751084520823 -4.861106754988823 -8.388845174067683e-013 40.3119235337748 3.895245141986228 -8.266720641358916e-013 40.11041113608175 -3.113047795464904 -8.413270080609436e-013 40.72863672700605 -5.021269366561777 -8.553158181712206e-013 41.19457393594157 -1.521418328413799 -8.411049634560186e-013 40.72863672700605 6.734282538171606 -8.402167850363185e-013 40.62557279307541 -3.113047795464904 -8.413270080609436e-013 40.72863672700605 -5.021269366561777 -8.553158181712206e-013 41.19457393594157 -4.861106754988823 -8.388845174067683e-013 40.3119235337748 3.895245141986228 -8.266720641358916e-013 40.11041113608175 1.54674486594058 -8.301137555122296e-013 39.92751084520823 -3.032344989399173 -8.173461907290403e-013 39.76096084568025 1.262294136775876 -8.225642389447785e-013 39.58444047847294 -1.397075800561024 -8.335554468885675e-013 39.50426054527247 0.03704012652961109 -8.154345254585138e-013 39.38443344051205 -1.188213883716661 -8.11684053303452e-013 39.18442640255113 0.791134918551438 -8.61422044806659e-013 41.43163162840602 1.059515547749182 -8.552047958687581e-013 41.26044981778692 -0.6519790104444162 -9.37638855447176e-013 41.15185545007147 5.993109284792975 -8.388845174067683e-013 41.17434160196507 -1.521418328413799 -8.462119893692943e-013 40.98329744173422 6.19324367776247 -8.624212455288216e-013 41.78084905969342 5.005315679595983 -8.544276397515205e-013 41.36709619434033</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID8227\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8225\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID8228\">1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 1.387778780781443e-015 -1 -2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014 -1.387778780781443e-015 1 2.475084309228932e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID8228\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8226\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8224\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8225\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"34\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8226\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 0 4 5 4 0 6 6 0 7 7 0 2 7 2 8 9 10 11 10 9 12 10 12 13 13 12 14 13 14 15 15 14 16 15 16 5 15 5 17 15 17 18 17 5 4 19 20 21 22 21 23 21 20 23 20 24 23 24 25 23 23 25 26 25 27 26 26 27 28 27 29 28 30 28 29 31 32 33 32 34 33 33 34 35 35 34 19 20 19 34 36 34 37 32 37 34</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8229\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8230\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID8232\">6.054227081189898 -1.024069717914244e-012 49.93119010380906 7.113880068540803 -9.685585666829866e-013 46.26119644411183 6.511653334916296 -1.086686296503103e-012 52.30682926172767</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID8232\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8231\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8230\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8231\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8233\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8234\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID8236\">-6.120703518611014 -1.026734253173345e-012 49.27751685180965 -6.631921267487918 -9.343636975245317e-013 44.91446707477241 -6.906461783439136 -1.067590460479551e-012 51.29448157689114</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID8236\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8235\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8234\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8235\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8237\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8238\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8240\">-4.130119127431101 -1.342037592166889e-012 64.98171876412211 -4.68193565937238 -1.341593502957039e-012 64.98171876412211</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8240\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8239\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8238\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8239\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8241\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8242\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID8244\">-7.692220048267258 -1.110667113835007e-012 53.31144630197262 -6.906461783439136 -1.067590460479551e-012 51.29448157689114 -6.906461783439136 -1.067590460479551e-012 54.16948157689114</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID8244\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8243\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8242\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8243\" />\r\n\t\t\t\t\t<p>1 0 1 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8245\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8246\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8248\">7.132168326280828 -8.735234757750732e-013 46.26119644411183 7.132168326280828 -8.735234757750732e-013 42.40008384423041</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8248\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8247\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8246\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8247\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8251\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8252\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID8255\">1.365827086867432 8.313350008393172e-013 18.16380282926442 -1.116058941507824 7.638334409421077e-013 16.79682789166051 -0.3792531622096895 5.595524044110789e-013 12.107347847173 -1.116058941507824 8.86402062860725e-013 19.59809575367042 1.69669371426987 8.846257060213247e-013 19.59809575367042 0.2903173863810231 8.881784197001252e-013 19.59809575367042 0.2903173863810231 8.881784197001252e-013 19.59809575367042 1.69669371426987 8.846257060213247e-013 19.59809575367042 -1.116058941507824 8.86402062860725e-013 19.59809575367042 1.365827086867432 8.313350008393172e-013 18.16380282926442 -1.116058941507824 7.638334409421077e-013 16.79682789166051 -0.3792531622096895 5.595524044110789e-013 12.107347847173 0.4053224066383478 1.261213355974178e-013 2.881627341540729 -0.5136706038242132 1.56319401867222e-013 3.534280842130735 0.310671101592586 1.083577672034153e-013 2.454573175968796 0.8066176208726734 2.060573933704291e-013 4.086271732397163 -1.723308998783047 1.580957587066223e-013 3.534280842130735 -0.3792531622096895 5.595524044110789e-013 12.107347847173 1.393880878850691 2.842170943040401e-013 5.775366225712627 2.709195748933134 4.476419235288631e-013 9.558492572968909 3.419754459323885 5.861977570020827e-013 12.59608561976505 1.365827086867432 8.313350008393172e-013 18.16380282926442 3.710732714318629 6.110667527536862e-013 13.34458671784114 6.141771428245184 8.881784197001252e-013 19.59809575367042 1.69669371426987 8.846257060213247e-013 19.59809575367042 1.69669371426987 8.846257060213247e-013 19.59809575367042 6.141771428245184 8.881784197001252e-013 19.59809575367042 1.365827086867432 8.313350008393172e-013 18.16380282926442 3.710732714318629 6.110667527536862e-013 13.34458671784114 3.419754459323885 5.861977570020827e-013 12.59608561976505 -0.3792531622096895 5.595524044110789e-013 12.107347847173 2.709195748933134 4.476419235288631e-013 9.558492572968909 1.393880878850691 2.842170943040401e-013 5.775366225712627 0.8066176208726734 2.060573933704291e-013 4.086271732397163 -1.723308998783047 1.580957587066223e-013 3.534280842130735 -0.5136706038242132 1.56319401867222e-013 3.534280842130735 0.4053224066383478 1.261213355974178e-013 2.881627341540729 0.310671101592586 1.083577672034153e-013 2.454573175968796 4.627500211160127 1.639577362766431e-012 5.444294428258203 4.426596018122309 4.245492846166599e-013 3.458957632611415 4.921552916555806 2.120970066243899e-012 3.288604938108179 4.2637817022934 2.184918912462308e-013 3.514994547124451 1.532580136371351 1.971756091734278e-013 3.001286181740698 1.434536132014891 2.682298827494378e-013 5.444294428258203 1.196653773357534 1.953992523340276e-013 2.938102202576978 3.880417307101904 4.156675004196586e-013 8.856859205213709 1.393880878850691 2.842170943040401e-013 5.775366225712627 2.709195748933134 4.476419235288631e-013 9.558492572968909 3.710732714318629 5.027089855502709e-013 10.86164474924142 3.419754459323885 5.861977570020827e-013 12.59608561976505 3.710732714318629 6.110667527536862e-013 13.34458671784114 3.710732714318629 6.110667527536862e-013 13.34458671784114 3.710732714318629 5.027089855502709e-013 10.86164474924142 3.419754459323885 5.861977570020827e-013 12.59608561976505 2.709195748933134 4.476419235288631e-013 9.558492572968909 3.880417307101904 4.156675004196586e-013 8.856859205213709 1.393880878850691 2.842170943040401e-013 5.775366225712627 1.434536132014891 2.682298827494378e-013 5.444294428258203 4.627500211160127 1.639577362766431e-012 5.444294428258203 4.2637817022934 2.184918912462308e-013 3.514994547124451 1.532580136371351 1.971756091734278e-013 3.001286181740698 1.196653773357534 1.953992523340276e-013 2.938102202576978 4.426596018122309 4.245492846166599e-013 3.458957632611415 4.921552916555806 2.120970066243899e-012 3.288604938108179</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID8255\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8253\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID8256\">1.387778780781445e-015 -1 4.355886344872153e-014 1.387778780781445e-015 -1 4.355886344872153e-014 1.387778780781445e-015 -1 4.355886344872153e-014 1.387778780781445e-015 -1 4.355886344872153e-014 1.387778780781445e-015 -1 4.355886344872153e-014 1.387778780781445e-015 -1 4.355886344872153e-014 -1.387778780781445e-015 1 -4.355886344872153e-014 -1.387778780781445e-015 1 -4.355886344872153e-014 -1.387778780781445e-015 1 -4.355886344872153e-014 -1.387778780781445e-015 1 -4.355886344872153e-014 -1.387778780781445e-015 1 -4.355886344872153e-014 -1.387778780781445e-015 1 -4.355886344872153e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 1.276756478318929e-015 -1 4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 -1.276756478318929e-015 1 -4.509418674564318e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 2.854383396311275e-013 -1 -2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014 -2.854383396311275e-013 1 2.853012539244823e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID8256\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8254\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8252\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8253\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"52\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8254\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 6 7 8 7 9 8 8 9 10 11 10 9 12 13 14 13 12 15 13 15 16 16 15 17 17 15 18 17 18 19 17 19 20 17 20 21 21 20 22 21 22 23 21 23 24 25 26 27 26 28 27 28 29 27 27 29 30 29 31 30 31 32 30 32 33 30 30 33 34 34 33 35 33 36 35 37 35 36 38 39 40 39 38 41 42 43 44 43 42 41 43 41 38 43 38 45 43 45 46 46 45 47 47 45 48 47 48 49 49 48 50 51 52 53 53 52 54 52 55 54 54 55 56 56 55 57 55 58 57 58 59 57 59 60 57 61 57 60 59 58 62 63 62 58</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8257\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8258\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8261\">0.8447318519382403 1.48858703141741e-012 33.33843943318923 0.3494350957325807 1.497468815614411e-012 33.6520575710334 -0.07075031644756535 1.444178110432404e-012 32.27840744874249 2.781394651310743 1.56319401867222e-012 35.27333107183222 2.068180776990523 1.589839371263224e-012 35.66830561638222 4.136153216721279 1.611155653336027e-012 35.82902983202246 2.662316583410913 1.621813794372429e-012 36.36528200528584 4.529644148732064 1.623590151211829e-012 36.32951997586842 4.627500211160127 1.639577362766431e-012 36.58616571181496 3.002500211160125 1.639577362766431e-012 36.58616571181496 2.662316583410911 1.63247193540883e-012 36.64333561921706 2.662316583410911 1.63247193540883e-012 36.64333561921706 3.002500211160125 1.639577362766431e-012 36.58616571181496 2.662316583410913 1.621813794372429e-012 36.36528200528584 4.627500211160127 1.639577362766431e-012 36.58616571181496 4.529644148732064 1.623590151211829e-012 36.32951997586842 4.136153216721279 1.611155653336027e-012 35.82902983202246 2.068180776990523 1.589839371263224e-012 35.66830561638222 2.781394651310743 1.56319401867222e-012 35.27333107183222 0.3494350957325807 1.497468815614411e-012 33.6520575710334 0.8447318519382403 1.48858703141741e-012 33.33843943318923 -0.07075031644756535 1.444178110432404e-012 32.27840744874249</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8261\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8259\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8262\">3.386180225106724e-015 -1 4.227835144493048e-014 3.386180225106724e-015 -1 4.227835144493048e-014 3.386180225106724e-015 -1 4.227835144493048e-014 3.386180225106724e-015 -1 4.227835144493048e-014 3.386180225106724e-015 -1 4.227835144493048e-014 3.386180225106724e-015 -1 4.227835144493048e-014 3.386180225106724e-015 -1 4.227835144493048e-014 3.386180225106724e-015 -1 4.227835144493048e-014 3.386180225106724e-015 -1 4.227835144493048e-014 3.386180225106724e-015 -1 4.227835144493048e-014 3.386180225106724e-015 -1 4.227835144493048e-014 -3.386180225106724e-015 1 -4.227835144493048e-014 -3.386180225106724e-015 1 -4.227835144493048e-014 -3.386180225106724e-015 1 -4.227835144493048e-014 -3.386180225106724e-015 1 -4.227835144493048e-014 -3.386180225106724e-015 1 -4.227835144493048e-014 -3.386180225106724e-015 1 -4.227835144493048e-014 -3.386180225106724e-015 1 -4.227835144493048e-014 -3.386180225106724e-015 1 -4.227835144493048e-014 -3.386180225106724e-015 1 -4.227835144493048e-014 -3.386180225106724e-015 1 -4.227835144493048e-014 -3.386180225106724e-015 1 -4.227835144493048e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8262\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8260\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8258\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8259\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8260\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 6 8 9 6 9 10 11 12 13 12 14 13 14 15 13 15 16 13 13 16 17 16 18 17 17 18 19 18 20 19 21 19 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8263\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8266\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID8269\">3.578528025533354 1.762145984685049e-012 39.47109362130377 3.290020214027459 1.77280412572145e-012 39.70566363798359 3.100030731079436 1.726618847897044e-012 38.73851916147031 3.884006772018166 1.806554905670055e-012 40.42329251620235 3.204542937871088 1.790567694115453e-012 40.27223868894051 3.055550416555658 1.790567694115453e-012 40.27223868894051 2.952318000179483 1.820765760385257e-012 40.8670874984205 2.952318000179481 1.781685909918451e-012 40.03944017555394 3.884006772018166 1.806554905670055e-012 41.61079251620235 2.11463025094786 1.84385839929746e-012 41.32563041301626 1.477978464127425 1.84385839929746e-012 41.32563041301626 0.6919438100007049 1.877609179246065e-012 41.9735368850674 3.361731358397799 1.900701818158268e-012 42.60721280520076 0.3292613947812306 1.930899884428072e-012 43.32639935936884 3.089436377816581 1.939781668625074e-012 43.12670929339038 1.898460823577112 1.964650664376677e-012 43.968313383424 0.784580203311041 1.977085162252479e-012 44.23761725680768 0.784580203311041 1.977085162252479e-012 44.23761725680768 1.898460823577112 1.964650664376677e-012 43.968313383424 0.3292613947812306 1.930899884428072e-012 43.32639935936884 3.089436377816581 1.939781668625074e-012 43.12670929339038 3.361731358397799 1.900701818158268e-012 42.60721280520076 0.6919438100007049 1.877609179246065e-012 41.9735368850674 3.884006772018166 1.806554905670055e-012 41.61079251620235 1.477978464127425 1.84385839929746e-012 41.32563041301626 2.11463025094786 1.84385839929746e-012 41.32563041301626 2.952318000179483 1.820765760385257e-012 40.8670874984205 3.884006772018166 1.806554905670055e-012 40.42329251620235 3.055550416555658 1.790567694115453e-012 40.27223868894051 2.952318000179481 1.781685909918451e-012 40.03944017555394 3.204542937871088 1.790567694115453e-012 40.27223868894051 3.290020214027459 1.77280412572145e-012 39.70566363798359 3.578528025533354 1.762145984685049e-012 39.47109362130377 3.100030731079436 1.726618847897044e-012 38.73851916147031 -1.63661868239948 1.84030568561866e-012 41.23091719310261 -2.10180419027429 1.795896764633653e-012 40.00535550980995 -1.847143475546115 1.797673121473054e-012 40.00535550980995 -2.653781865459205 1.847411112976261e-012 40.34049260471012 -2.653781865459205 1.847411112976261e-012 41.34049260471012 -0.8878964938934146 1.852740183494461e-012 41.58364254729038 -2.199849989505704 1.907807245515869e-012 42.64733170303273 -0.4835988822544302 1.897149104479468e-012 42.51861672620488 0.3292613947812306 1.930899884428072e-012 43.32639935936884 -0.6635981445354631 1.966427021216077e-012 43.98541367543985 0.784580203311041 1.977085162252479e-012 44.23761725680768 -2.31487954395357 1.781685909918451e-012 39.62324931559891 -2.517486150968278 1.792344050954853e-012 39.53950588309021 -2.20834186711393 1.751487843648647e-012 39.11398544720195 -2.10180419027429 1.795896764633653e-012 40.00535550980995 -2.31487954395357 1.781685909918451e-012 39.62324931559891 -2.653781865459205 1.847411112976261e-012 40.34049260471012 -2.517486150968278 1.792344050954853e-012 39.53950588309021 -2.20834186711393 1.751487843648647e-012 39.11398544720195 0.784580203311041 1.977085162252479e-012 44.23761725680768 0.3292613947812306 1.930899884428072e-012 43.32639935936884 -0.6635981445354631 1.966427021216077e-012 43.98541367543985 -2.199849989505704 1.907807245515869e-012 42.64733170303273 -0.4835988822544302 1.897149104479468e-012 42.51861672620488 -0.8878964938934146 1.852740183494461e-012 41.58364254729038 -2.653781865459205 1.847411112976261e-012 41.34049260471012 -1.63661868239948 1.84030568561866e-012 41.23091719310261 -1.847143475546115 1.797673121473054e-012 40.00535550980995</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID8269\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8267\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID8270\">-3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 -3.941291737419303e-015 -1 4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 3.941291737419303e-015 1 -4.434352917338088e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 -4.9960036108132e-015 -1 4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014 4.9960036108132e-015 1 -4.333924878419828e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID8270\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8268\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8266\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8267\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"54\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8268\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 6 7 6 5 3 6 3 8 6 8 9 9 8 10 10 8 11 11 8 12 11 12 13 13 12 14 13 14 15 13 15 16 17 18 19 18 20 19 20 21 19 19 21 22 21 23 22 22 23 24 24 23 25 25 23 26 23 27 26 27 28 26 29 26 28 28 27 30 30 27 31 27 32 31 33 31 32 34 35 36 35 34 37 37 34 38 38 34 39 38 39 40 40 39 41 40 41 42 40 42 43 43 42 44 45 46 47 46 45 37 37 45 35 48 49 50 50 49 51 52 51 49 53 54 55 55 54 56 54 57 56 57 58 56 56 58 59 58 60 59 59 60 50 50 60 48 61 48 60</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8271\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8272\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8275\">0.4908252838953722 9.947598300641403e-014 2.21861052790029 -0.1365213348712153 9.947598300641403e-014 2.246257221876649 0.453002068309516 5.151434834260726e-014 1.189996267537812 0.310671101592586 1.083577672034153e-013 2.454573175968796 -1.600820444558227 9.947598300641403e-014 2.246257221876649 -2.414625226058853 1.243449787580175e-013 2.701530842342481 -2.414625226058853 8.171241461241152e-014 1.746553162111825 -0.5136706038242132 1.56319401867222e-013 3.534280842130735 -1.723308998783047 1.580957587066223e-013 3.534280842130735 -1.723308998783047 1.580957587066223e-013 3.534280842130735 -0.5136706038242132 1.56319401867222e-013 3.534280842130735 -2.414625226058853 1.243449787580175e-013 2.701530842342481 0.310671101592586 1.083577672034153e-013 2.454573175968796 -1.600820444558227 9.947598300641403e-014 2.246257221876649 -2.414625226058853 8.171241461241152e-014 1.746553162111825 -0.1365213348712153 9.947598300641403e-014 2.246257221876649 0.4908252838953722 9.947598300641403e-014 2.21861052790029 0.453002068309516 5.151434834260726e-014 1.189996267537812</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8275\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8273\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8276\">-1.054711873393898e-015 -1 4.331531273363071e-014 -1.054711873393898e-015 -1 4.331531273363071e-014 -1.054711873393898e-015 -1 4.331531273363071e-014 -1.054711873393898e-015 -1 4.331531273363071e-014 -1.054711873393898e-015 -1 4.331531273363071e-014 -1.054711873393898e-015 -1 4.331531273363071e-014 -1.054711873393898e-015 -1 4.331531273363071e-014 -1.054711873393898e-015 -1 4.331531273363071e-014 -1.054711873393898e-015 -1 4.331531273363071e-014 1.054711873393898e-015 1 -4.331531273363071e-014 1.054711873393898e-015 1 -4.331531273363071e-014 1.054711873393898e-015 1 -4.331531273363071e-014 1.054711873393898e-015 1 -4.331531273363071e-014 1.054711873393898e-015 1 -4.331531273363071e-014 1.054711873393898e-015 1 -4.331531273363071e-014 1.054711873393898e-015 1 -4.331531273363071e-014 1.054711873393898e-015 1 -4.331531273363071e-014 1.054711873393898e-015 1 -4.331531273363071e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8276\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8274\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8272\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8273\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8274\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 5 6 5 4 3 5 3 7 5 7 8 9 10 11 10 12 11 12 13 11 14 11 13 13 12 15 12 16 15 17 15 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8277\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8278\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8281\">0.453002068309516 5.151434834260726e-014 1.189996267537812 -1.145973216276794 1.776356839400251e-015 0 0 0 0 -1.720536465139517 1.4210854715202e-014 0.2977769721660266 -1.720536465139517 3.907985046680551e-014 0.8707635803044211 -2.414625226058856 5.861977570020827e-014 1.189996267537811 -2.414625226058853 8.171241461241152e-014 1.746553162111825 -0.1365213348712153 9.947598300641403e-014 2.246257221876649 -1.600820444558227 9.947598300641403e-014 2.246257221876649 -1.600820444558227 9.947598300641403e-014 2.246257221876649 -0.1365213348712153 9.947598300641403e-014 2.246257221876649 -2.414625226058853 8.171241461241152e-014 1.746553162111825 0.453002068309516 5.151434834260726e-014 1.189996267537812 -2.414625226058856 5.861977570020827e-014 1.189996267537811 -1.720536465139517 3.907985046680551e-014 0.8707635803044211 -1.720536465139517 1.4210854715202e-014 0.2977769721660266 -1.145973216276794 1.776356839400251e-015 0 0 0 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8281\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8279\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8282\">-1.221245327087671e-015 -1 4.453282693182197e-014 -1.221245327087671e-015 -1 4.453282693182197e-014 -1.221245327087671e-015 -1 4.453282693182197e-014 -1.221245327087671e-015 -1 4.453282693182197e-014 -1.221245327087671e-015 -1 4.453282693182197e-014 -1.221245327087671e-015 -1 4.453282693182197e-014 -1.221245327087671e-015 -1 4.453282693182197e-014 -1.221245327087671e-015 -1 4.453282693182197e-014 -1.221245327087671e-015 -1 4.453282693182197e-014 1.221245327087671e-015 1 -4.453282693182197e-014 1.221245327087671e-015 1 -4.453282693182197e-014 1.221245327087671e-015 1 -4.453282693182197e-014 1.221245327087671e-015 1 -4.453282693182197e-014 1.221245327087671e-015 1 -4.453282693182197e-014 1.221245327087671e-015 1 -4.453282693182197e-014 1.221245327087671e-015 1 -4.453282693182197e-014 1.221245327087671e-015 1 -4.453282693182197e-014 1.221245327087671e-015 1 -4.453282693182197e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8282\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8280\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8278\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8279\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8280\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 6 7 8 9 10 11 10 12 11 11 12 13 13 12 14 14 12 15 15 12 16 17 16 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8283\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8284\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID8287\">11.02314055926056 1.483257960899209e-012 33.22098076211256 10.19387767874067 1.465494392505207e-012 32.74737180450029 11.02314055926056 1.454836251468805e-012 32.52053393664062 9.673377845388419 1.429967255717202e-012 31.83858882470583 10.18269927484477 1.429967255717202e-012 31.83858882470583 8.780923778396108 1.451283537790005e-012 32.32966826056395 8.78092377839611 1.483257960899209e-012 33.22098076211256 9.472354778258444 1.479705247220409e-012 32.99851602743303 9.472354778258444 1.479705247220409e-012 32.99851602743303 10.19387767874067 1.465494392505207e-012 32.74737180450029 8.78092377839611 1.483257960899209e-012 33.22098076211256 8.780923778396108 1.451283537790005e-012 32.32966826056395 11.02314055926056 1.454836251468805e-012 32.52053393664062 9.673377845388419 1.429967255717202e-012 31.83858882470583 10.18269927484477 1.429967255717202e-012 31.83858882470583 11.02314055926056 1.483257960899209e-012 33.22098076211256</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID8287\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8285\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID8288\">-3.330669073875468e-016 -1 3.894020278355704e-014 -3.330669073875468e-016 -1 3.894020278355704e-014 -3.330669073875468e-016 -1 3.894020278355704e-014 -3.330669073875468e-016 -1 3.894020278355704e-014 -3.330669073875468e-016 -1 3.894020278355704e-014 -3.330669073875468e-016 -1 3.894020278355704e-014 -3.330669073875468e-016 -1 3.894020278355704e-014 -3.330669073875468e-016 -1 3.894020278355704e-014 3.330669073875468e-016 1 -3.894020278355704e-014 3.330669073875468e-016 1 -3.894020278355704e-014 3.330669073875468e-016 1 -3.894020278355704e-014 3.330669073875468e-016 1 -3.894020278355704e-014 3.330669073875468e-016 1 -3.894020278355704e-014 3.330669073875468e-016 1 -3.894020278355704e-014 3.330669073875468e-016 1 -3.894020278355704e-014 3.330669073875468e-016 1 -3.894020278355704e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID8288\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8286\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8284\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8285\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8286\" />\r\n\t\t\t\t\t<p>0 1 2 2 3 4 3 2 5 5 2 1 5 1 6 6 1 7 8 9 10 10 9 11 9 12 11 11 12 13 14 13 12 12 9 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8289\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8290\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID8293\">-5.200360526170272 9.485745522397338e-013 21.04489561142831 -5.824987882581628 9.308109838457312e-013 20.42829096951737 -5.741402940960153 9.29034627006331e-013 20.41857844221886 -7.260306933504996 9.36140054363932e-013 20.59507430624902 -7.512113674708541 9.325873406851315e-013 20.62433412028302 -7.512113674708541 9.78772618509538e-013 21.57931180051367 -5.819007097266987 9.78772618509538e-013 21.57931180051367 -5.819007097266987 9.78772618509538e-013 21.57931180051367 -5.200360526170272 9.485745522397338e-013 21.04489561142831 -7.512113674708541 9.78772618509538e-013 21.57931180051367 -7.512113674708541 9.325873406851315e-013 20.62433412028302 -7.260306933504996 9.36140054363932e-013 20.59507430624902 -5.824987882581628 9.308109838457312e-013 20.42829096951737 -5.741402940960153 9.29034627006331e-013 20.41857844221886</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID8293\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8291\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID8294\">-1.221245327087671e-015 -1 4.276675409439356e-014 -1.221245327087671e-015 -1 4.276675409439356e-014 -1.221245327087671e-015 -1 4.276675409439356e-014 -1.221245327087671e-015 -1 4.276675409439356e-014 -1.221245327087671e-015 -1 4.276675409439356e-014 -1.221245327087671e-015 -1 4.276675409439356e-014 -1.221245327087671e-015 -1 4.276675409439356e-014 1.221245327087671e-015 1 -4.276675409439356e-014 1.221245327087671e-015 1 -4.276675409439356e-014 1.221245327087671e-015 1 -4.276675409439356e-014 1.221245327087671e-015 1 -4.276675409439356e-014 1.221245327087671e-015 1 -4.276675409439356e-014 1.221245327087671e-015 1 -4.276675409439356e-014 1.221245327087671e-015 1 -4.276675409439356e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID8294\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8292\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8290\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8291\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8292\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 7 8 9 9 8 10 10 8 11 11 8 12 13 12 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8295\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8296\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID8299\">-5.824987882581628 8.86402062860725e-013 19.43946361382734 -7.281299087667613 8.615330671091215e-013 18.97904256596392 -6.475909729864146 8.402167850363185e-013 18.54579385225878 -7.554655871113045 8.828493491819245e-013 19.6238060273317 -5.824987882581628 9.308109838457312e-013 20.42829096951737 -7.554655871113045 9.14823772291129e-013 20.26045781415215 -7.260306933504996 9.36140054363932e-013 20.59507430624902 -7.260306933504996 9.36140054363932e-013 20.59507430624902 -5.824987882581628 9.308109838457312e-013 20.42829096951737 -7.554655871113045 9.14823772291129e-013 20.26045781415215 -7.554655871113045 8.828493491819245e-013 19.6238060273317 -5.824987882581628 8.86402062860725e-013 19.43946361382734 -7.281299087667613 8.615330671091215e-013 18.97904256596392 -6.475909729864146 8.402167850363185e-013 18.54579385225878</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID8299\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8297\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID8300\">3.77475828372553e-015 -1 4.646799304150957e-014 3.77475828372553e-015 -1 4.646799304150957e-014 3.77475828372553e-015 -1 4.646799304150957e-014 3.77475828372553e-015 -1 4.646799304150957e-014 3.77475828372553e-015 -1 4.646799304150957e-014 3.77475828372553e-015 -1 4.646799304150957e-014 3.77475828372553e-015 -1 4.646799304150957e-014 -3.77475828372553e-015 1 -4.646799304150957e-014 -3.77475828372553e-015 1 -4.646799304150957e-014 -3.77475828372553e-015 1 -4.646799304150957e-014 -3.77475828372553e-015 1 -4.646799304150957e-014 -3.77475828372553e-015 1 -4.646799304150957e-014 -3.77475828372553e-015 1 -4.646799304150957e-014 -3.77475828372553e-015 1 -4.646799304150957e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID8300\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8298\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8296\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8297\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8298\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 7 8 9 9 8 10 8 11 10 10 11 12 13 12 11</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8301\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8302\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID8305\">-0.02520557226005593 1.534772309241816e-012 34.24374010589195 -0.09245140372467375 1.529443238723616e-012 34.08909644028899 0.3494350957325807 1.497468815614411e-012 33.6520575710334 -0.9200987265912488 1.531219595563016e-012 34.08909644028899 -0.7255225377625436 1.534772309241816e-012 34.24374010589195 -1.698226501791687 1.534772309241816e-012 34.37108448349265 -1.176997243912688 1.56141766183282e-012 34.9374047804681 -1.949637958975401 1.554312234475219e-012 34.65867700487483 -2.377510129181733 1.564970375511621e-012 34.78331608308523 -2.679782772174434 1.564970375511621e-012 34.78331608308523 -2.299964273773991 1.568523089190421e-012 35.2123283922079 -0.8077123225251448 1.580957587066223e-012 35.40268456340137 -0.4384274011376128 1.600497512299626e-012 35.86796434633465 -0.4384274011376128 1.600497512299626e-012 35.86796434633465 -0.8077123225251448 1.580957587066223e-012 35.40268456340137 -2.299964273773991 1.568523089190421e-012 35.2123283922079 -1.176997243912688 1.56141766183282e-012 34.9374047804681 -2.679782772174434 1.564970375511621e-012 34.78331608308523 -2.377510129181733 1.564970375511621e-012 34.78331608308523 -1.949637958975401 1.554312234475219e-012 34.65867700487483 -1.698226501791687 1.534772309241816e-012 34.37108448349265 -0.7255225377625436 1.534772309241816e-012 34.24374010589195 -0.9200987265912488 1.531219595563016e-012 34.08909644028899 -0.02520557226005593 1.534772309241816e-012 34.24374010589195 -0.09245140372467375 1.529443238723616e-012 34.08909644028899 0.3494350957325807 1.497468815614411e-012 33.6520575710334</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID8305\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8303\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID8306\">-2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 -2.609024107869116e-015 -1 4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014 2.609024107869116e-015 1 -4.285562433452016e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID8306\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8304\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8302\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8303\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8304\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 8 6 9 9 6 10 10 6 11 10 11 12 13 14 15 14 16 15 15 16 17 17 16 18 18 16 19 19 16 20 16 21 20 20 21 22 21 23 22 22 23 24 25 24 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8307\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8308\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID8311\">11.02314055926056 1.483257960899209e-012 33.22098076211256 9.472354778258444 1.479705247220409e-012 32.99851602743303 10.19387767874067 1.465494392505207e-012 32.74737180450029 8.78092377839611 1.483257960899209e-012 33.22098076211256 11.42371393860817 1.532995952402416e-012 34.55296635715047 9.016304878836195 1.525890525044815e-012 34.14649581185207 10.10416761064751 1.550759520796419e-012 34.67543789119027 11.21163136187714 1.62891922173003e-012 36.3229304478355 10.10416761064751 1.582733943905623e-012 35.50308521405685 9.628103658063573 1.618261080693628e-012 36.10060661926583 9.391273544552034 1.644906433284632e-012 36.89364608132451 10.82929189362599 1.659117287999834e-012 36.9843571237794 9.939050553695161 1.671551785875636e-012 37.32997646122581 9.939050553695161 1.671551785875636e-012 37.32997646122581 10.82929189362599 1.659117287999834e-012 36.9843571237794 9.391273544552034 1.644906433284632e-012 36.89364608132451 11.21163136187714 1.62891922173003e-012 36.3229304478355 9.628103658063573 1.618261080693628e-012 36.10060661926583 10.10416761064751 1.582733943905623e-012 35.50308521405685 10.10416761064751 1.550759520796419e-012 34.67543789119027 11.42371393860817 1.532995952402416e-012 34.55296635715047 9.016304878836195 1.525890525044815e-012 34.14649581185207 8.78092377839611 1.483257960899209e-012 33.22098076211256 11.02314055926056 1.483257960899209e-012 33.22098076211256 9.472354778258444 1.479705247220409e-012 32.99851602743303 10.19387767874067 1.465494392505207e-012 32.74737180450029</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID8311\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8309\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID8312\">-1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 -1.054711873393898e-015 -1 4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014 1.054711873393898e-015 1 -4.534420737639726e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID8312\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8310\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8308\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8309\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8310\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 6 4 7 6 7 8 8 7 9 9 7 10 10 7 11 10 11 12 13 14 15 14 16 15 15 16 17 17 16 18 18 16 19 16 20 19 19 20 21 21 20 22 20 23 22 22 23 24 25 24 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8313\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8314\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID8317\">3.055550416555654 1.715960706860642e-012 38.51209141485121 2.662316583410913 1.719513420539442e-012 38.40256772311123 2.881729310583133 1.70530256582424e-012 38.17193938666868 2.08525845452073 1.671551785875636e-012 37.2162707536532 0.4742638510394972 1.636024649087631e-012 36.77096186105415 1.110915637859939 1.63424829224823e-012 36.77096186105415 -0.6610177460166504 1.644906433284632e-012 36.92713582754475 -1.083850883035122 1.655564574321033e-012 37.14570887878055 -1.495657481572334 1.712407993181841e-012 38.07740013634124 -1.877648553664603 1.714184350021242e-012 38.07740013634124 -2.101804190274287 1.719513420539442e-012 38.60472157880499 3.100030731079436 1.726618847897044e-012 38.73851916147031 -2.20834186711393 1.751487843648647e-012 39.11398544720195 3.290020214027459 1.77280412572145e-012 39.70566363798359 -2.31487954395357 1.781685909918451e-012 39.62324931559891 -2.10180419027429 1.795896764633653e-012 40.00535550980995 -1.847143475546115 1.797673121473054e-012 40.00535550980995 2.952318000179481 1.781685909918451e-012 40.03944017555394 3.204542937871088 1.790567694115453e-012 40.27223868894051 3.055550416555658 1.790567694115453e-012 40.27223868894051 -1.63661868239948 1.84030568561866e-012 41.23091719310261 2.952318000179483 1.820765760385257e-012 40.8670874984205 2.11463025094786 1.84385839929746e-012 41.32563041301626 1.477978464127425 1.84385839929746e-012 41.32563041301626 -0.8878964938934146 1.852740183494461e-012 41.58364254729038 0.6919438100007049 1.877609179246065e-012 41.9735368850674 -0.4835988822544302 1.897149104479468e-012 42.51861672620488 0.3292613947812306 1.930899884428072e-012 43.32639935936884 0.3292613947812306 1.930899884428072e-012 43.32639935936884 0.6919438100007049 1.877609179246065e-012 41.9735368850674 -0.4835988822544302 1.897149104479468e-012 42.51861672620488 -0.8878964938934146 1.852740183494461e-012 41.58364254729038 1.477978464127425 1.84385839929746e-012 41.32563041301626 -1.63661868239948 1.84030568561866e-012 41.23091719310261 2.11463025094786 1.84385839929746e-012 41.32563041301626 2.952318000179483 1.820765760385257e-012 40.8670874984205 2.952318000179481 1.781685909918451e-012 40.03944017555394 -1.847143475546115 1.797673121473054e-012 40.00535550980995 3.055550416555658 1.790567694115453e-012 40.27223868894051 3.204542937871088 1.790567694115453e-012 40.27223868894051 3.290020214027459 1.77280412572145e-012 39.70566363798359 -2.10180419027429 1.795896764633653e-012 40.00535550980995 -2.31487954395357 1.781685909918451e-012 39.62324931559891 -2.20834186711393 1.751487843648647e-012 39.11398544720195 3.100030731079436 1.726618847897044e-012 38.73851916147031 -2.101804190274287 1.719513420539442e-012 38.60472157880499 3.055550416555654 1.715960706860642e-012 38.51209141485121 2.662316583410913 1.719513420539442e-012 38.40256772311123 -1.877648553664603 1.714184350021242e-012 38.07740013634124 -1.495657481572334 1.712407993181841e-012 38.07740013634124 2.08525845452073 1.671551785875636e-012 37.2162707536532 -1.083850883035122 1.655564574321033e-012 37.14570887878055 -0.6610177460166504 1.644906433284632e-012 36.92713582754475 0.4742638510394972 1.636024649087631e-012 36.77096186105415 1.110915637859939 1.63424829224823e-012 36.77096186105415 2.881729310583133 1.70530256582424e-012 38.17193938666868 2.662316583410911 1.63247193540883e-012 36.64333561921706 2.08525845452073 1.671551785875636e-012 37.2162707536532 1.110915637859939 1.63424829224823e-012 36.77096186105415 2.662316583410913 1.719513420539442e-012 38.40256772311123 1.283616271699676 1.580957587066223e-012 35.39437482187482 -0.3315488907848803 1.575628516548022e-012 35.25014477753116 0.2309511092151233 1.575628516548022e-012 35.25014477753116 -0.8077123225251448 1.580957587066223e-012 35.40268456340137 2.068180776990523 1.589839371263224e-012 35.66830561638222 -0.4384274011376128 1.600497512299626e-012 35.86796434633465 2.662316583410913 1.621813794372429e-012 36.36528200528584 -0.6610177460166504 1.644906433284632e-012 36.92713582754475 0.4742638510394972 1.636024649087631e-012 36.77096186105415 1.110915637859939 1.63424829224823e-012 36.77096186105415 2.662316583410911 1.63247193540883e-012 36.64333561921706 0.4742638510394972 1.636024649087631e-012 36.77096186105415 2.662316583410913 1.621813794372429e-012 36.36528200528584 -0.6610177460166504 1.644906433284632e-012 36.92713582754475 -0.4384274011376128 1.600497512299626e-012 35.86796434633465 2.068180776990523 1.589839371263224e-012 35.66830561638222 -0.8077123225251448 1.580957587066223e-012 35.40268456340137 1.283616271699676 1.580957587066223e-012 35.39437482187482 -0.3315488907848803 1.575628516548022e-012 35.25014477753116 0.2309511092151233 1.575628516548022e-012 35.25014477753116 2.662316583410913 1.719513420539442e-012 38.40256772311123 2.08525845452073 1.671551785875636e-012 37.2162707536532</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID8317\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8315\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID8318\">-1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 -1.665334536937733e-015 -1 4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 1.665334536937733e-015 1 -4.436738706922997e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 6.661338147750933e-016 -1 4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014 -6.661338147750933e-016 1 -4.45411349152017e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID8318\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8316\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8314\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8315\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"74\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8316\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 6 3 7 7 3 8 8 3 1 8 1 9 9 1 10 10 1 0 10 0 11 10 11 12 12 11 13 12 13 14 14 13 15 15 13 16 13 17 16 17 13 18 17 18 19 17 20 16 20 17 21 20 21 22 20 22 23 20 23 24 24 23 25 24 25 26 26 25 27 28 29 30 30 29 31 29 32 31 31 32 33 32 34 33 34 35 33 35 36 33 37 33 36 38 39 36 39 40 36 37 36 40 37 40 41 41 40 42 42 40 43 40 44 43 43 44 45 44 46 45 46 47 45 45 47 48 48 47 49 47 50 49 49 50 51 51 50 52 52 50 53 54 53 50 55 47 46 56 57 58 57 56 59 60 61 62 61 60 63 63 60 64 63 64 65 65 64 66 65 66 67 67 66 68 68 66 56 68 56 58 69 70 71 70 72 71 71 72 73 73 72 74 72 75 74 74 75 76 75 77 76 76 77 78 79 78 77 80 70 81 69 81 70</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8319\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8320\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID8323\">3.60465990591144 5.506706202140776e-014 0.6257492595671015 1.020894735286387 3.907985046680551e-014 0.6699847948159308 2.416542794644533 3.907985046680551e-014 0.2644209142080011 4.192530835464337 1.49213974509621e-013 1.356032779979972 0.7953122724461785 1.13686837721616e-013 1.100838006113401 0.7953122724461785 1.13686837721616e-013 1.725838006113401 4.702018974410178 2.291500322826323e-013 1.988945164337794 0.7953122724461785 1.13686837721616e-013 2.225838006113401 4.426596018122309 4.245492846166599e-013 3.458957632611415 1.020894735286388 1.332267629550188e-013 2.741123172267975 1.532580136371351 1.971756091734278e-013 3.001286181740698 4.2637817022934 2.184918912462308e-013 3.514994547124451 4.2637817022934 2.184918912462308e-013 3.514994547124451 4.426596018122309 4.245492846166599e-013 3.458957632611415 1.532580136371351 1.971756091734278e-013 3.001286181740698 1.020894735286388 1.332267629550188e-013 2.741123172267975 0.7953122724461785 1.13686837721616e-013 2.225838006113401 4.702018974410178 2.291500322826323e-013 1.988945164337794 0.7953122724461785 1.13686837721616e-013 1.725838006113401 4.192530835464337 1.49213974509621e-013 1.356032779979972 0.7953122724461785 1.13686837721616e-013 1.100838006113401 1.020894735286387 3.907985046680551e-014 0.6699847948159308 3.60465990591144 5.506706202140776e-014 0.6257492595671015 2.416542794644533 3.907985046680551e-014 0.2644209142080011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID8323\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8321\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID8324\">2.525757381022229e-014 -1 6.729967297144027e-014 2.525757381022229e-014 -1 6.729967297144027e-014 2.525757381022229e-014 -1 6.729967297144027e-014 2.525757381022229e-014 -1 6.729967297144027e-014 2.525757381022229e-014 -1 6.729967297144027e-014 2.525757381022229e-014 -1 6.729967297144027e-014 2.525757381022229e-014 -1 6.729967297144027e-014 2.525757381022229e-014 -1 6.729967297144027e-014 2.525757381022229e-014 -1 6.729967297144027e-014 2.525757381022229e-014 -1 6.729967297144027e-014 2.525757381022229e-014 -1 6.729967297144027e-014 2.525757381022229e-014 -1 6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014 -2.525757381022229e-014 1 -6.729967297144027e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID8324\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8322\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8320\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8321\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"20\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8322\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 5 6 7 7 6 8 7 8 9 9 8 10 10 8 11 12 13 14 14 13 15 15 13 16 13 17 16 16 17 18 17 19 18 18 19 20 20 19 21 19 22 21 23 21 22</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8325\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8326\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID8329\">-0.07075031644756535 1.444178110432404e-012 22.34090744874249 -1.116058941507824 8.86402062860725e-013 19.59809575367042 0.2903173863810231 8.881784197001252e-013 19.59809575367042 -2.59785429339442 1.030286966852145e-012 21.81205881970826 -2.541395822632179 1.099564883588755e-012 24.39804772860251 -0.07075031644756535 1.444178110432404e-012 27.90340744874249 -2.611182175851994 1.127986593019159e-012 25.02748944689213 -5.796134114320644 1.236344360222574e-012 27.43482125723924 -4.703538875651592 1.321609488513786e-012 29.59332440309565 -0.07075031644756535 1.444178110432404e-012 32.27840744874249 -3.838195463757177 1.483257960899209e-012 32.98629906904233 0.3494350957325807 1.497468815614411e-012 33.6520575710334 -3.43045054794068 1.524114168205415e-012 34.06734229502425 -0.09245140372467375 1.529443238723616e-012 34.08909644028899 -0.9200987265912488 1.531219595563016e-012 34.08909644028899 -1.698226501791687 1.534772309241816e-012 34.37108448349265 -2.377510129181733 1.564970375511621e-012 34.78331608308523 -1.949637958975401 1.554312234475219e-012 34.65867700487483 -3.536579975712222 1.072919530997751e-012 23.75874375041082 -5.819007097266987 9.78772618509538e-013 21.57931180051367 -5.200360526170272 9.485745522397338e-013 21.04489561142831 -7.512113674708541 9.78772618509538e-013 21.57931180051367 -6.731965584060561 1.119104808822158e-012 24.86214018256081 -3.170984196048629 1.030286966852145e-012 19.39303368515554 -1.116058941507824 8.86402062860725e-013 19.59809575367042 -3.170984196048629 1.030286966852145e-012 19.39303368515554 -2.59785429339442 1.030286966852145e-012 21.81205881970826 -5.796134114320644 1.236344360222574e-012 27.43482125723924 -2.611182175851994 1.127986593019159e-012 25.02748944689213 -6.731965584060561 1.119104808822158e-012 24.86214018256081 -3.536579975712222 1.072919530997751e-012 23.75874375041082 -7.512113674708541 9.78772618509538e-013 21.57931180051367 -5.819007097266987 9.78772618509538e-013 21.57931180051367 -5.200360526170272 9.485745522397338e-013 21.04489561142831 -1.949637958975401 1.554312234475219e-012 34.65867700487483 -1.698226501791687 1.534772309241816e-012 34.37108448349265 -2.377510129181733 1.564970375511621e-012 34.78331608308523 -3.43045054794068 1.524114168205415e-012 34.06734229502425 -0.9200987265912488 1.531219595563016e-012 34.08909644028899 -0.09245140372467375 1.529443238723616e-012 34.08909644028899 0.3494350957325807 1.497468815614411e-012 33.6520575710334 -3.838195463757177 1.483257960899209e-012 32.98629906904233 -0.07075031644756535 1.444178110432404e-012 32.27840744874249 -4.703538875651592 1.321609488513786e-012 29.59332440309565 -0.07075031644756535 1.444178110432404e-012 27.90340744874249 -2.541395822632179 1.099564883588755e-012 24.39804772860251 -0.07075031644756535 1.444178110432404e-012 22.34090744874249 0.2903173863810231 8.881784197001252e-013 19.59809575367042 10.21308344308396 1.309174990637985e-012 29.22599865569224 7.882491800228063 1.307398633798584e-012 28.94943938767504 9.017161492414456 1.302069563280384e-012 28.78888004644129 6.435120291503422 1.34647848426539e-012 29.84406701532593 10.84963206638984 1.34470212742599e-012 30.17892072102139 11.02314055926056 1.454836251468805e-012 32.52053393664062 10.18269927484477 1.429967255717202e-012 31.83858882470583 10.84963206638984 1.405098259965598e-012 31.45222429466225 6.722160891995904 8.952838470577262e-013 19.72747000572706 1.69669371426987 8.846257060213247e-013 19.59809575367042 6.141771428245184 8.881784197001252e-013 19.59809575367042 0.2903173863810231 8.881784197001252e-013 19.59809575367042 -0.07075031644756535 1.444178110432404e-012 22.34090744874249 6.435120291503424 1.138644734055561e-012 25.19650897153673 -0.07075031644756535 1.444178110432404e-012 27.90340744874249 -0.07075031644756535 1.444178110432404e-012 32.27840744874249 9.673377845388419 1.429967255717202e-012 31.83858882470583 8.780923778396108 1.451283537790005e-012 32.32966826056395 0.8447318519382403 1.48858703141741e-012 33.33843943318923 8.78092377839611 1.483257960899209e-012 33.22098076211256 8.051320307787895 1.541877736599417e-012 34.26452317443852 2.781394651310743 1.56319401867222e-012 35.27333107183222 6.663925691443431 1.589839371263224e-012 35.48268720849673 4.136153216721279 1.611155653336027e-012 35.82902983202246 5.548287007644765 1.623590151211829e-012 36.32951997586842 4.529644148732064 1.623590151211829e-012 36.32951997586842 4.529644148732064 1.623590151211829e-012 36.32951997586842 5.548287007644765 1.623590151211829e-012 36.32951997586842 4.136153216721279 1.611155653336027e-012 35.82902983202246 6.663925691443431 1.589839371263224e-012 35.48268720849673 2.781394651310743 1.56319401867222e-012 35.27333107183222 8.051320307787895 1.541877736599417e-012 34.26452317443852 0.8447318519382403 1.48858703141741e-012 33.33843943318923 8.78092377839611 1.483257960899209e-012 33.22098076211256 8.780923778396108 1.451283537790005e-012 32.32966826056395 -0.07075031644756535 1.444178110432404e-012 32.27840744874249 9.673377845388419 1.429967255717202e-012 31.83858882470583 10.18269927484477 1.429967255717202e-012 31.83858882470583 10.84963206638984 1.405098259965598e-012 31.45222429466225 10.84963206638984 1.34470212742599e-012 30.17892072102139 6.435120291503422 1.34647848426539e-012 29.84406701532593 -0.07075031644756535 1.444178110432404e-012 27.90340744874249 6.435120291503424 1.138644734055561e-012 25.19650897153673 -0.07075031644756535 1.444178110432404e-012 22.34090744874249 6.722160891995904 8.952838470577262e-013 19.72747000572706 0.2903173863810231 8.881784197001252e-013 19.59809575367042 1.69669371426987 8.846257060213247e-013 19.59809575367042 6.141771428245184 8.881784197001252e-013 19.59809575367042 11.02314055926056 1.454836251468805e-012 32.52053393664062 10.21308344308396 1.309174990637985e-012 29.22599865569224 7.882491800228063 1.307398633798584e-012 28.94943938767504 9.017161492414456 1.302069563280384e-012 28.78888004644129</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID8329\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8327\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID8330\">1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 1.704192342799614e-014 -1 3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -1.704192342799614e-014 1 -3.761625269181758e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 -9.325873406851307e-015 -1 4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014 9.325873406851307e-015 1 -4.095062918798044e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID8330\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8328\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8326\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8327\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"92\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8328\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 7 5 8 8 5 9 8 9 10 10 9 11 10 11 12 12 11 13 12 13 14 12 14 15 12 15 16 16 15 17 18 19 20 19 18 21 21 18 22 22 18 6 22 6 7 3 23 1 24 25 26 27 28 29 28 30 29 29 30 31 31 30 32 33 32 30 34 35 36 36 35 37 35 38 37 38 39 37 39 40 37 37 40 41 40 42 41 41 42 43 42 44 43 43 44 27 27 44 28 28 44 45 44 46 45 45 46 26 26 46 24 47 24 46 48 49 50 49 48 51 51 48 52 53 54 55 56 57 58 57 56 59 59 56 60 60 56 61 60 61 62 62 61 51 62 51 63 63 51 52 63 52 55 63 55 64 64 55 54 63 64 65 63 65 66 66 65 67 66 67 68 66 68 69 69 68 70 69 70 71 71 70 72 71 72 73 74 75 76 75 77 76 76 77 78 77 79 78 78 79 80 79 81 80 81 82 80 80 82 83 82 84 83 85 86 84 84 86 83 86 87 83 87 88 83 83 88 89 88 90 89 89 90 91 90 92 91 91 92 93 93 92 94 95 94 92 86 85 96 87 97 88 88 97 98 99 98 97</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8331\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8334\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8337\">2.068180776990523 1.589839371263224e-012 35.66830561638222 -0.02520557226005593 1.534772309241816e-012 34.24374010589195 0.3494350957325807 1.497468815614411e-012 33.6520575710334 -0.7255225377625436 1.534772309241816e-012 34.24374010589195 1.283616271699676 1.580957587066223e-012 35.39437482187482 -1.176997243912688 1.56141766183282e-012 34.9374047804681 0.2309511092151233 1.575628516548022e-012 35.25014477753116 -0.3315488907848803 1.575628516548022e-012 35.25014477753116 -0.8077123225251448 1.580957587066223e-012 35.40268456340137 0.2309511092151233 1.575628516548022e-012 35.25014477753116 -1.176997243912688 1.56141766183282e-012 34.9374047804681 -0.3315488907848803 1.575628516548022e-012 35.25014477753116 -0.8077123225251448 1.580957587066223e-012 35.40268456340137 1.283616271699676 1.580957587066223e-012 35.39437482187482 -0.7255225377625436 1.534772309241816e-012 34.24374010589195 2.068180776990523 1.589839371263224e-012 35.66830561638222 -0.02520557226005593 1.534772309241816e-012 34.24374010589195 0.3494350957325807 1.497468815614411e-012 33.6520575710334</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8337\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8335\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8338\">-1.276756478318929e-015 -1 4.538507217997903e-014 -1.276756478318929e-015 -1 4.538507217997903e-014 -1.276756478318929e-015 -1 4.538507217997903e-014 -1.276756478318929e-015 -1 4.538507217997903e-014 -1.276756478318929e-015 -1 4.538507217997903e-014 -1.276756478318929e-015 -1 4.538507217997903e-014 -1.276756478318929e-015 -1 4.538507217997903e-014 -1.276756478318929e-015 -1 4.538507217997903e-014 -1.276756478318929e-015 -1 4.538507217997903e-014 1.276756478318929e-015 1 -4.538507217997903e-014 1.276756478318929e-015 1 -4.538507217997903e-014 1.276756478318929e-015 1 -4.538507217997903e-014 1.276756478318929e-015 1 -4.538507217997903e-014 1.276756478318929e-015 1 -4.538507217997903e-014 1.276756478318929e-015 1 -4.538507217997903e-014 1.276756478318929e-015 1 -4.538507217997903e-014 1.276756478318929e-015 1 -4.538507217997903e-014 1.276756478318929e-015 1 -4.538507217997903e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8338\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8336\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8334\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8335\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8336\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 7 8 7 5 6 9 10 11 12 11 10 9 13 10 10 13 14 13 15 14 14 15 16 17 16 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8339\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8340\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID8342\">-2.719383963721345 1.168842800325365e-012 26.00342121773518 -2.611182175851994 1.127986593019159e-012 25.02748944689213 -2.719383963721345 1.168842800325365e-012 29.19092121773518 -2.719383963721345 1.168842800325365e-012 30.81592121773518</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID8342\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8341\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8340\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8341\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8343\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8344\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8346\">6.435120291503422 1.34647848426539e-012 29.84406701532593 5.520048385193379 1.374900193695794e-012 30.72947392569468</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8346\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8345\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8344\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8345\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8349\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8350\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID8353\">-7.557869052482602 0 31.65506245928401 -8.408624748880584 9.094947017729282e-013 31.97992417921046 -7.883711335455246 9.094947017729282e-013 31.37317049824691 -7.763081606729429 1.818989403545857e-012 32.49689437021607 -8.408624748880811 4.547473508864641e-013 32.46130374207587 -8.556354641495091 0 32.81431542151051 -7.763081606728974 9.094947017729282e-013 33.42756152508923 -8.704084534109143 4.547473508864641e-013 33.16732710094505 -8.123874004404343 9.094947017729282e-013 29.85865440784971 -8.814637036548447 4.547473508864641e-013 29.19634462720495 -8.123874004404115 9.094947017729282e-013 29.19634462720495 -9.054541159277505 9.094947017729282e-013 29.19634462720507 -9.839370961360601 9.094947017729282e-013 29.85865440784971 -8.814637036548447 9.094947017729282e-013 30.5989487954983 -10.76858966912027 9.094947017729282e-013 30.69711864078408 -9.021524532543708 1.364242052659392e-012 30.82067121698401 -11.17144378636158 9.094947017729282e-013 31.94970052311624 -9.021524532543936 1.364242052659392e-012 31.65506245928401 -8.704084534108915 9.094947017729282e-013 32.46130374207587 -11.17144378636112 1.364242052659392e-012 33.61848300771635 -8.462591589705653 4.547473508864641e-013 34.38704653396627 -11.01841363101971 9.094947017729282e-013 34.20871492808379 -9.144580377673719 9.094947017729282e-013 34.80962837697797 -11.89762721082138 9.094947017729282e-013 39.36528868753038 -9.570427814419872 9.094947017729282e-013 35.98654113388773 -9.32842953971408 9.094947017729282e-013 40.24790738193639 -12.2361018851982 4.547473508864641e-013 42.36288497843498 -9.328429539713625 1.818989403545857e-012 43.3608285551324 -11.91453733487811 9.094947017729282e-013 44.35894306418828 -8.815629669974896 4.547473508864641e-013 47.98582262243491 -11.91453733487788 9.094947017729282e-013 50.00712993514196 -8.688157052221413 4.547473508864641e-013 49.79444841780173 -11.68354347615264 1.364242052659392e-012 52.77733329462262 -11.68354347615264 1.364242052659392e-012 52.77733329462262 -8.688157052221413 4.547473508864641e-013 49.79444841780173 -11.91453733487788 9.094947017729282e-013 50.00712993514196 -8.815629669974896 4.547473508864641e-013 47.98582262243491 -11.91453733487811 9.094947017729282e-013 44.35894306418828 -9.328429539713625 1.818989403545857e-012 43.3608285551324 -12.2361018851982 4.547473508864641e-013 42.36288497843498 -9.32842953971408 9.094947017729282e-013 40.24790738193639 -11.89762721082138 9.094947017729282e-013 39.36528868753038 -9.570427814419872 9.094947017729282e-013 35.98654113388773 -9.144580377673719 9.094947017729282e-013 34.80962837697797 -11.01841363101971 9.094947017729282e-013 34.20871492808379 -8.462591589705653 4.547473508864641e-013 34.38704653396627 -11.17144378636112 1.364242052659392e-012 33.61848300771635 -7.763081606728974 9.094947017729282e-013 33.42756152508923 -8.704084534109143 4.547473508864641e-013 33.16732710094505 -8.704084534108915 9.094947017729282e-013 32.46130374207587 -11.17144378636158 9.094947017729282e-013 31.94970052311624 -9.021524532543936 1.364242052659392e-012 31.65506245928401 -9.021524532543708 1.364242052659392e-012 30.82067121698401 -10.76858966912027 9.094947017729282e-013 30.69711864078408 -8.814637036548447 9.094947017729282e-013 30.5989487954983 -9.839370961360601 9.094947017729282e-013 29.85865440784971 -8.123874004404343 9.094947017729282e-013 29.85865440784971 -9.054541159277505 9.094947017729282e-013 29.19634462720507 -8.814637036548447 4.547473508864641e-013 29.19634462720495 -8.123874004404115 9.094947017729282e-013 29.19634462720495 -8.556354641495091 0 32.81431542151051 -7.763081606729429 1.818989403545857e-012 32.49689437021607 -8.408624748880811 4.547473508864641e-013 32.46130374207587 -8.408624748880584 9.094947017729282e-013 31.97992417921046 -7.557869052482602 0 31.65506245928401 -7.883711335455246 9.094947017729282e-013 31.37317049824691</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID8353\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8351\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID8354\">2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 2.627711215386541e-016 -1 2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014 -2.627711215386541e-016 1 -2.316372355826317e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID8354\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8352\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8350\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8351\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"62\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8352\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 5 6 7 8 9 10 9 8 11 11 8 12 12 8 13 12 13 14 14 13 15 14 15 16 16 15 17 16 17 18 16 18 19 19 18 7 19 7 6 19 6 20 19 20 21 21 20 22 21 22 23 23 22 24 23 24 25 23 25 26 26 25 27 26 27 28 28 27 29 28 29 30 30 29 31 30 31 32 33 34 35 34 36 35 35 36 37 36 38 37 37 38 39 38 40 39 39 40 41 40 42 41 42 43 41 41 43 44 43 45 44 44 45 46 45 47 46 47 48 46 48 49 46 46 49 50 49 51 50 51 52 50 50 52 53 52 54 53 53 54 55 54 56 55 55 56 57 57 56 58 59 58 56 48 47 60 47 61 60 60 61 62 62 61 63 61 64 63 65 63 64</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8355\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8356\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID8359\">-0.7774957005435681 1.364242052659392e-012 58.86061927287949 -1.79449624785434 1.818989403545857e-012 58.18363181216841 -0.3111762842011103 1.364242052659392e-012 57.76861565544692 -0.8137349224455193 1.364242052659392e-012 55.57545929642322 -1.987580073732033 1.364242052659392e-012 53.65127015419978 -1.987580073731806 9.094947017729282e-013 52.97960803676892 -2.184479060774265 1.364242052659392e-012 53.88284227886066 -4.313015415574455 1.818989403545857e-012 55.90725311569548 -5.388362747916972 9.094947017729282e-013 57.65091728900558 -4.969022489573035 9.094947017729282e-013 58.5175538229168 -2.564703548438274 4.547473508864641e-013 58.18363181216841 -3.781170790286296 4.547473508864641e-013 58.68508994724613 -4.969022489573035 1.364242052659392e-012 60.02587645322825 -4.969022489573035 1.364242052659392e-012 60.02587645322825 -3.781170790286296 4.547473508864641e-013 58.68508994724613 -4.969022489573035 9.094947017729282e-013 58.5175538229168 -2.564703548438274 4.547473508864641e-013 58.18363181216841 -1.79449624785434 1.818989403545857e-012 58.18363181216841 -0.3111762842011103 1.364242052659392e-012 57.76861565544692 -5.388362747916972 9.094947017729282e-013 57.65091728900558 -4.313015415574455 1.818989403545857e-012 55.90725311569548 -0.8137349224455193 1.364242052659392e-012 55.57545929642322 -2.184479060774265 1.364242052659392e-012 53.88284227886066 -1.987580073732033 1.364242052659392e-012 53.65127015419978 -1.987580073731806 9.094947017729282e-013 52.97960803676892 -0.7774957005435681 1.364242052659392e-012 58.86061927287949 -0.7774957005435681 1.364242052659392e-012 58.86061927287949 -2.564703548438274 4.547473508864641e-013 58.18363181216841 -1.79449624785434 1.818989403545857e-012 58.18363181216841 -3.781170790286296 4.547473508864641e-013 58.68508994724613 -4.969022489573035 1.364242052659392e-012 60.02587645322825 -0.5656335024798409 2.273736754432321e-012 59.00164972941866 0.1198614114466636 1.364242052659392e-012 60.59327448347256 -5.364344131371809 2.273736754432321e-012 61.11144735959118 0.4844461656905423 1.364242052659392e-012 61.99063431861634 -5.660502705500448 1.364242052659392e-012 61.30356020348091 -5.660502705500221 9.094947017729282e-013 62.04167553320787 0.484446165690315 2.273736754432321e-012 63.81987665750478 -5.261854389236987 1.818989403545857e-012 62.1646865337201 -3.898991980176106 9.094947017729282e-013 64.23964098194796 -0.7161460070014982 2.273736754432321e-012 65.01521502246425 -2.916621952355627 1.364242052659392e-012 65.73529677631166 -1.656455885623018 9.094947017729282e-013 65.63282520062347 -2.49080015716504 2.728484105318785e-012 65.86662596030897 -2.49080015716504 2.728484105318785e-012 65.86662596030897 -1.656455885623018 9.094947017729282e-013 65.63282520062347 -2.916621952355627 1.364242052659392e-012 65.73529677631166 -0.7161460070014982 2.273736754432321e-012 65.01521502246425 -3.898991980176106 9.094947017729282e-013 64.23964098194796 0.484446165690315 2.273736754432321e-012 63.81987665750478 -5.261854389236987 1.818989403545857e-012 62.1646865337201 -5.660502705500221 9.094947017729282e-013 62.04167553320787 0.4844461656905423 1.364242052659392e-012 61.99063431861634 -5.660502705500448 1.364242052659392e-012 61.30356020348091 -5.364344131371809 2.273736754432321e-012 61.11144735959118 0.1198614114466636 1.364242052659392e-012 60.59327448347256 -4.969022489573035 1.364242052659392e-012 60.02587645322825 -0.5656335024798409 2.273736754432321e-012 59.00164972941866 -0.7774957005435681 1.364242052659392e-012 58.86061927287949 -3.781170790286296 4.547473508864641e-013 58.68508994724613 -2.564703548438274 4.547473508864641e-013 58.18363181216841 -1.79449624785434 1.818989403545857e-012 58.18363181216841</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID8359\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8357\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID8360\">2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 2.871797226316963e-015 -1 2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.871797226316963e-015 1 -2.114498964390442e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 -2.923407132052059e-016 -1 2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014 2.923407132052059e-016 1 -2.348967872408601e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID8360\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8358\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8356\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8357\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"54\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8358\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 6 3 7 7 3 2 7 2 8 8 2 9 9 2 10 10 2 1 9 10 11 9 11 12 13 14 15 14 16 15 17 18 16 16 18 15 15 18 19 19 18 20 18 21 20 20 21 22 22 21 23 24 23 21 18 17 25 26 27 28 27 26 29 29 26 30 30 26 31 30 31 32 30 32 33 33 32 34 33 34 35 35 34 36 36 34 37 36 37 38 38 37 39 39 37 40 39 40 41 41 40 42 41 42 43 44 45 46 45 47 46 46 47 48 47 49 48 48 49 50 50 49 51 49 52 51 51 52 53 53 52 54 52 55 54 54 55 56 55 57 56 57 58 56 56 58 59 59 58 60 61 60 58</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8361\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8362\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID8365\">3.520804938052606 9.094947017729282e-013 44.27652684949635 2.321326401573515 1.364242052659392e-012 44.22849987770616 2.615601065848068 9.094947017729282e-013 43.93277262452739 2.515383629228381 1.818989403545857e-012 44.66903146106813 2.25199369091456 1.364242052659392e-012 46.54296386178231 2.258647862366843 1.364242052659392e-012 44.66903146106807 1.539196364278268 1.364242052659392e-012 44.58254945946629 1.819918551518867 1.818989403545857e-012 44.24558306979947 2.515383629228381 1.818989403545857e-012 44.66903146106813 2.258647862366843 1.364242052659392e-012 44.66903146106807 2.25199369091456 1.364242052659392e-012 46.54296386178231 1.539196364278268 1.364242052659392e-012 44.58254945946629 1.819918551518867 1.818989403545857e-012 44.24558306979947 3.520804938052606 9.094947017729282e-013 44.27652684949635 2.321326401573515 1.364242052659392e-012 44.22849987770616 2.615601065848068 9.094947017729282e-013 43.93277262452739 3.520804938052606 9.094947017729282e-013 44.27652684949635 3.40165786782336 1.364242052659392e-012 45.32291783401701 2.25199369091456 1.364242052659392e-012 46.54296386178231 4.121249504964226 9.094947017729282e-013 44.58254945946629 4.121249504964226 4.547473508864641e-013 44.9573666877759 3.882666883471075 1.364242052659392e-012 45.32291783401689 3.124391675474499 9.094947017729282e-013 45.71642735375559 3.553854918560546 1.364242052659392e-012 45.82671643392416 3.320119925887184 1.364242052659392e-012 46.18484014785327 3.086384933214504 9.094947017729282e-013 46.54296386178226 3.086384933214504 9.094947017729282e-013 46.54296386178226 3.320119925887184 1.364242052659392e-012 46.18484014785327 2.25199369091456 1.364242052659392e-012 46.54296386178231 3.553854918560546 1.364242052659392e-012 45.82671643392416 3.124391675474499 9.094947017729282e-013 45.71642735375559 3.40165786782336 1.364242052659392e-012 45.32291783401701 3.882666883471075 1.364242052659392e-012 45.32291783401689 4.121249504964226 4.547473508864641e-013 44.9573666877759 4.121249504964226 9.094947017729282e-013 44.58254945946629 3.520804938052606 9.094947017729282e-013 44.27652684949635</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID8365\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8363\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID8366\">-6.454088367932938e-015 -1 3.346559459611563e-014 -6.454088367932938e-015 -1 3.346559459611563e-014 -6.454088367932938e-015 -1 3.346559459611563e-014 -6.454088367932938e-015 -1 3.346559459611563e-014 -6.454088367932938e-015 -1 3.346559459611563e-014 -6.454088367932938e-015 -1 3.346559459611563e-014 -6.454088367932938e-015 -1 3.346559459611563e-014 -6.454088367932938e-015 -1 3.346559459611563e-014 6.454088367932938e-015 1 -3.346559459611563e-014 6.454088367932938e-015 1 -3.346559459611563e-014 6.454088367932938e-015 1 -3.346559459611563e-014 6.454088367932938e-015 1 -3.346559459611563e-014 6.454088367932938e-015 1 -3.346559459611563e-014 6.454088367932938e-015 1 -3.346559459611563e-014 6.454088367932938e-015 1 -3.346559459611563e-014 6.454088367932938e-015 1 -3.346559459611563e-014 1.103193115266277e-014 -1 2.650762985128009e-014 1.103193115266277e-014 -1 2.650762985128009e-014 1.103193115266277e-014 -1 2.650762985128009e-014 1.103193115266277e-014 -1 2.650762985128009e-014 1.103193115266277e-014 -1 2.650762985128009e-014 1.103193115266277e-014 -1 2.650762985128009e-014 1.103193115266277e-014 -1 2.650762985128009e-014 1.103193115266277e-014 -1 2.650762985128009e-014 1.103193115266277e-014 -1 2.650762985128009e-014 1.103193115266277e-014 -1 2.650762985128009e-014 -1.103193115266277e-014 1 -2.650762985128009e-014 -1.103193115266277e-014 1 -2.650762985128009e-014 -1.103193115266277e-014 1 -2.650762985128009e-014 -1.103193115266277e-014 1 -2.650762985128009e-014 -1.103193115266277e-014 1 -2.650762985128009e-014 -1.103193115266277e-014 1 -2.650762985128009e-014 -1.103193115266277e-014 1 -2.650762985128009e-014 -1.103193115266277e-014 1 -2.650762985128009e-014 -1.103193115266277e-014 1 -2.650762985128009e-014 -1.103193115266277e-014 1 -2.650762985128009e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID8366\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8364\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8362\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8363\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8364\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 6 5 4 4 5 3 8 9 10 10 9 11 12 11 9 10 13 8 8 13 14 15 14 13 16 17 18 17 16 19 17 19 20 17 20 21 18 17 22 18 22 23 18 23 24 18 24 25 26 27 28 27 29 28 29 30 28 30 31 28 32 33 31 33 34 31 34 35 31 28 31 35</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8367\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8368\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8371\">4.4371895624638 9.094947017729282e-013 44.50532338662902 2.615601065848068 9.094947017729282e-013 43.93277262452739 3.546268220720776 9.094947017729282e-013 43.93277262452739 3.520804938052606 9.094947017729282e-013 44.27652684949635 4.121249504964226 9.094947017729282e-013 44.58254945946629 4.437189562463573 9.094947017729282e-013 45.08297886206742 4.121249504964226 4.547473508864641e-013 44.9573666877759 3.882666883471075 1.364242052659392e-012 45.32291783401689 3.947221372404101 1.364242052659392e-012 45.32291783401701 3.947221372404101 1.364242052659392e-012 45.32291783401701 4.437189562463573 9.094947017729282e-013 45.08297886206742 3.882666883471075 1.364242052659392e-012 45.32291783401689 4.121249504964226 4.547473508864641e-013 44.9573666877759 4.121249504964226 9.094947017729282e-013 44.58254945946629 4.4371895624638 9.094947017729282e-013 44.50532338662902 3.520804938052606 9.094947017729282e-013 44.27652684949635 2.615601065848068 9.094947017729282e-013 43.93277262452739 3.546268220720776 9.094947017729282e-013 43.93277262452739</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8371\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8369\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8372\">2.62778286696623e-016 -1 1.592024608270439e-014 2.62778286696623e-016 -1 1.592024608270439e-014 2.62778286696623e-016 -1 1.592024608270439e-014 2.62778286696623e-016 -1 1.592024608270439e-014 2.62778286696623e-016 -1 1.592024608270439e-014 2.62778286696623e-016 -1 1.592024608270439e-014 2.62778286696623e-016 -1 1.592024608270439e-014 2.62778286696623e-016 -1 1.592024608270439e-014 2.62778286696623e-016 -1 1.592024608270439e-014 -2.62778286696623e-016 1 -1.592024608270439e-014 -2.62778286696623e-016 1 -1.592024608270439e-014 -2.62778286696623e-016 1 -1.592024608270439e-014 -2.62778286696623e-016 1 -1.592024608270439e-014 -2.62778286696623e-016 1 -1.592024608270439e-014 -2.62778286696623e-016 1 -1.592024608270439e-014 -2.62778286696623e-016 1 -1.592024608270439e-014 -2.62778286696623e-016 1 -1.592024608270439e-014 -2.62778286696623e-016 1 -1.592024608270439e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8372\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8370\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8368\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8369\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8370\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 7 5 8 9 10 11 11 10 12 12 10 13 10 14 13 13 14 15 15 14 16 17 16 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8373\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8374\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID8377\">5.502331874311494 9.094947017729282e-013 44.09039162127203 3.546268220720776 9.094947017729282e-013 43.93277262452739 4.899026079282294 9.094947017729282e-013 43.06767571926042 4.4371895624638 9.094947017729282e-013 44.50532338662902 5.187008495710643 9.094947017729282e-013 45.13496297691472 4.437189562463573 9.094947017729282e-013 45.08297886206742 3.947221372404101 1.364242052659392e-012 45.32291783401701 4.664733486778914 9.094947017729282e-013 45.74398919638475 3.40165786782336 1.364242052659392e-012 45.32291783401701 3.124391675474499 9.094947017729282e-013 45.71642735375559 3.553854918560546 1.364242052659392e-012 45.82671643392416 3.777142338545446 1.364242052659392e-012 45.88405816120775 3.882666883471075 1.364242052659392e-012 45.32291783401689 3.83320020962492 9.094947017729282e-013 42.09322625034508 1.765955573677957 9.094947017729282e-013 42.4123060076588 3.027750865219559 0 41.87537286197522 1.515086616102963 1.364242052659392e-012 42.93264302770359 2.615601065848068 9.094947017729282e-013 43.93277262452739 1.819918551518867 1.818989403545857e-012 44.24558306979947 2.321326401573515 1.364242052659392e-012 44.22849987770616 2.515383629228381 1.818989403545857e-012 44.66903146106813 2.258647862366843 1.364242052659392e-012 44.66903146106807 2.258647862366843 1.364242052659392e-012 44.66903146106807 2.515383629228381 1.818989403545857e-012 44.66903146106813 1.819918551518867 1.818989403545857e-012 44.24558306979947 2.321326401573515 1.364242052659392e-012 44.22849987770616 2.615601065848068 9.094947017729282e-013 43.93277262452739 3.546268220720776 9.094947017729282e-013 43.93277262452739 4.899026079282294 9.094947017729282e-013 43.06767571926042 1.515086616102963 1.364242052659392e-012 42.93264302770359 1.765955573677957 9.094947017729282e-013 42.4123060076588 3.83320020962492 9.094947017729282e-013 42.09322625034508 3.027750865219559 0 41.87537286197522 3.947221372404101 1.364242052659392e-012 45.32291783401701 3.882666883471075 1.364242052659392e-012 45.32291783401689 3.40165786782336 1.364242052659392e-012 45.32291783401701 3.777142338545446 1.364242052659392e-012 45.88405816120775 4.664733486778914 9.094947017729282e-013 45.74398919638475 3.553854918560546 1.364242052659392e-012 45.82671643392416 3.124391675474499 9.094947017729282e-013 45.71642735375559 5.187008495710643 9.094947017729282e-013 45.13496297691472 4.437189562463573 9.094947017729282e-013 45.08297886206742 4.4371895624638 9.094947017729282e-013 44.50532338662902 5.502331874311494 9.094947017729282e-013 44.09039162127203</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID8377\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8375\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID8378\">4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 4.848184790479822e-016 -1 2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014 -4.848184790479822e-016 1 -2.038105211108342e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID8378\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8376\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8374\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8375\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"40\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8376\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 6 4 7 6 7 8 8 7 9 9 7 10 10 7 11 8 12 6 13 14 15 14 13 2 14 2 16 16 2 17 16 17 18 17 2 1 18 17 19 18 19 20 18 20 21 22 23 24 23 25 24 25 26 24 27 28 26 24 26 29 26 28 29 29 28 30 28 31 30 32 30 31 33 34 35 36 37 38 38 37 39 39 37 35 35 37 33 37 40 33 33 40 41 41 40 42 40 43 42 42 43 27 28 27 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8379\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8380\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8383\">4.804704555402395 1.818989403545857e-012 47.76153926017173 3.908855085266168 2.273736754432321e-012 48.90519150369062 4.282480174795182 1.364242052659392e-012 47.14730819192391 5.612663624297284 9.094947017729282e-013 48.07458127280881 6.479146837453982 1.364242052659392e-012 48.07458127280887 6.213228753716521 9.094947017729282e-013 50.82165025383119 4.064029101040887 1.818989403545857e-012 49.39465451636073 3.892923075645058 9.094947017729282e-013 51.47360314144561 4.57346487076029 1.818989403545857e-012 51.83427217390459 5.513341031545451 1.364242052659392e-012 52.61131824425507 5.854724063440699 9.094947017729282e-013 53.10429082122568 5.854724063440699 9.094947017729282e-013 53.10429082122568 6.213228753716521 9.094947017729282e-013 50.82165025383119 5.513341031545451 1.364242052659392e-012 52.61131824425507 4.57346487076029 1.818989403545857e-012 51.83427217390459 3.892923075645058 9.094947017729282e-013 51.47360314144561 4.064029101040887 1.818989403545857e-012 49.39465451636073 3.908855085266168 2.273736754432321e-012 48.90519150369062 6.479146837453982 1.364242052659392e-012 48.07458127280887 5.612663624297284 9.094947017729282e-013 48.07458127280881 4.804704555402395 1.818989403545857e-012 47.76153926017173 4.282480174795182 1.364242052659392e-012 47.14730819192391</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8383\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8381\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8384\">1.858145416175519e-014 -1 1.999558486037275e-014 1.858145416175519e-014 -1 1.999558486037275e-014 1.858145416175519e-014 -1 1.999558486037275e-014 1.858145416175519e-014 -1 1.999558486037275e-014 1.858145416175519e-014 -1 1.999558486037275e-014 1.858145416175519e-014 -1 1.999558486037275e-014 1.858145416175519e-014 -1 1.999558486037275e-014 1.858145416175519e-014 -1 1.999558486037275e-014 1.858145416175519e-014 -1 1.999558486037275e-014 1.858145416175519e-014 -1 1.999558486037275e-014 1.858145416175519e-014 -1 1.999558486037275e-014 -1.858145416175519e-014 1 -1.999558486037275e-014 -1.858145416175519e-014 1 -1.999558486037275e-014 -1.858145416175519e-014 1 -1.999558486037275e-014 -1.858145416175519e-014 1 -1.999558486037275e-014 -1.858145416175519e-014 1 -1.999558486037275e-014 -1.858145416175519e-014 1 -1.999558486037275e-014 -1.858145416175519e-014 1 -1.999558486037275e-014 -1.858145416175519e-014 1 -1.999558486037275e-014 -1.858145416175519e-014 1 -1.999558486037275e-014 -1.858145416175519e-014 1 -1.999558486037275e-014 -1.858145416175519e-014 1 -1.999558486037275e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8384\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8382\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8380\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8381\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8382\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 1 5 6 6 5 7 7 5 8 8 5 9 9 5 10 11 12 13 13 12 14 14 12 15 15 12 16 16 12 17 12 18 17 18 19 17 19 20 17 21 17 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8385\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8388\">\r\n\t\t\t\t\t<float_array count=\"372\" id=\"ID8391\">9.492669820608853 4.547473508864641e-013 31.48724290413611 6.434247010065064 4.547473508864641e-013 37.17020915253147 7.799187991799954 4.547473508864641e-013 30.71478921093967 8.440534617806634 9.094947017729282e-013 33.79388194682377 8.777239019841545 9.094947017729282e-013 34.4507262096655 8.173188816406537 9.094947017729282e-013 36.10920578360083 7.420782551672119 9.094947017729282e-013 38.60465508322449 6.775049618910543 1.364242052659392e-012 39.01639721297244 6.775049618910543 1.364242052659392e-012 39.01639721297244 7.420782551672119 9.094947017729282e-013 38.60465508322449 6.434247010065064 4.547473508864641e-013 37.17020915253147 8.173188816406537 9.094947017729282e-013 36.10920578360083 8.777239019841545 9.094947017729282e-013 34.4507262096655 8.440534617806634 9.094947017729282e-013 33.79388194682377 9.492669820608853 4.547473508864641e-013 31.48724290413611 7.799187991799954 4.547473508864641e-013 30.71478921093967 8.307617712214551 4.547473508864641e-013 27.62800127358258 5.413381600003731 0 27.11957155316804 6.921704230315072 4.547473508864641e-013 27.11957155316799 5.087722482380514 4.547473508864641e-013 28.58612943592112 7.799187991800181 9.094947017729282e-013 29.01391475548201 4.592480785085854 4.547473508864641e-013 30.81637749511197 7.799187991799954 4.547473508864641e-013 30.71478921093967 6.093444401219131 4.547473508864641e-013 35.32402109209039 6.434247010065064 4.547473508864641e-013 37.17020915253147 3.854365455358675 9.094947017729282e-013 30.81637749511197 2.898207068167494 9.094947017729282e-013 34.61304870404194 2.898207068167494 9.094947017729282e-013 34.61304870404194 6.093444401219131 4.547473508864641e-013 35.32402109209039 3.854365455358675 9.094947017729282e-013 30.81637749511197 4.592480785085854 4.547473508864641e-013 30.81637749511197 6.434247010065064 4.547473508864641e-013 37.17020915253147 7.799187991799954 4.547473508864641e-013 30.71478921093967 7.799187991800181 9.094947017729282e-013 29.01391475548201 5.087722482380514 4.547473508864641e-013 28.58612943592112 8.307617712214551 4.547473508864641e-013 27.62800127358258 5.413381600003731 0 27.11957155316804 6.921704230315072 4.547473508864641e-013 27.11957155316799 8.748513518920163 9.094947017729282e-013 36.71353204639632 7.420782551672119 9.094947017729282e-013 38.60465508322449 8.173188816406537 9.094947017729282e-013 36.10920578360083 9.765135135255832 9.094947017729282e-013 37.10981305694446 9.765135135255832 9.094947017729282e-013 37.10981305694446 8.748513518920163 9.094947017729282e-013 36.71353204639632 7.420782551672119 9.094947017729282e-013 38.60465508322449 8.173188816406537 9.094947017729282e-013 36.10920578360083 7.865545648154921 9.094947017729282e-013 47.48049752888147 4.804704555402395 1.818989403545857e-012 47.76153926017173 4.282480174795182 1.364242052659392e-012 47.14730819192391 6.479146837453982 1.364242052659392e-012 48.07458127280887 5.612663624297284 9.094947017729282e-013 48.07458127280881 13.34330020847847 1.818989403545857e-012 37.52115567968565 9.765135135255832 9.094947017729282e-013 37.10981305694446 12.24154030471595 4.547473508864641e-013 36.74471561280984 7.420782551672119 9.094947017729282e-013 38.60465508322449 13.74318088247287 4.547473508864641e-013 39.50301013657452 11.33218276524349 9.094947017729282e-013 39.28385442668008 6.775049618910543 1.364242052659392e-012 39.01639721297244 11.33218276524303 9.094947017729282e-013 42.30049968730299 13.39201285960189 1.364242052659392e-012 41.98142893224946 12.45776656152475 9.094947017729282e-013 43.88232469581715 6.775049618910316 1.818989403545857e-012 46.20523034738363 8.560750029346082 1.818989403545857e-012 49.10287911587113 5.187008495710415 9.094947017729282e-013 46.20523034738363 4.899026079282294 9.094947017729282e-013 43.06767571926042 9.788907019315502 9.094947017729282e-013 42.49440441989378 6.673063521154063 9.094947017729282e-013 45.77569284198586 5.502331874311494 9.094947017729282e-013 44.09039162127203 5.187008495710643 9.094947017729282e-013 45.13496297691472 4.664733486778914 9.094947017729282e-013 45.74398919638475 3.777142338545446 1.364242052659392e-012 45.88405816120775 3.320119925887184 1.364242052659392e-012 46.18484014785327 3.553854918560546 1.364242052659392e-012 45.82671643392416 3.777142338545446 1.364242052659392e-012 45.88405816120775 3.553854918560546 1.364242052659392e-012 45.82671643392416 3.320119925887184 1.364242052659392e-012 46.18484014785327 4.282480174795182 1.364242052659392e-012 47.14730819192391 5.187008495710415 9.094947017729282e-013 46.20523034738363 6.673063521154063 9.094947017729282e-013 45.77569284198586 4.664733486778914 9.094947017729282e-013 45.74398919638475 5.187008495710643 9.094947017729282e-013 45.13496297691472 5.502331874311494 9.094947017729282e-013 44.09039162127203 4.899026079282294 9.094947017729282e-013 43.06767571926042 9.788907019315502 9.094947017729282e-013 42.49440441989378 11.33218276524349 9.094947017729282e-013 39.28385442668008 6.775049618910543 1.364242052659392e-012 39.01639721297244 7.865545648154921 9.094947017729282e-013 47.48049752888147 6.775049618910316 1.818989403545857e-012 46.20523034738363 8.560750029346082 1.818989403545857e-012 49.10287911587113 12.45776656152475 9.094947017729282e-013 43.88232469581715 11.33218276524303 9.094947017729282e-013 42.30049968730299 13.39201285960189 1.364242052659392e-012 41.98142893224946 13.74318088247287 4.547473508864641e-013 39.50301013657452 7.420782551672119 9.094947017729282e-013 38.60465508322449 13.34330020847847 1.818989403545857e-012 37.52115567968565 9.765135135255832 9.094947017729282e-013 37.10981305694446 12.24154030471595 4.547473508864641e-013 36.74471561280984 5.612663624297284 9.094947017729282e-013 48.07458127280881 6.479146837453982 1.364242052659392e-012 48.07458127280887 4.804704555402395 1.818989403545857e-012 47.76153926017173 1.765955573677957 9.094947017729282e-013 42.4123060076588 1.996737465964998 1.364242052659392e-012 41.71617593183373 3.027750865219559 0 41.87537286197522 6.093444401219131 4.547473508864641e-013 35.32402109209039 2.031723855009659 0 34.613048704042 2.898207068167494 9.094947017729282e-013 34.61304870404194 2.016245987145112 9.094947017729282e-013 37.112863711464 6.434247010065064 4.547473508864641e-013 37.17020915253147 2.0106478681505 9.094947017729282e-013 38.01701032885558 6.775049618910543 1.364242052659392e-012 39.01639721297244 3.83320020962492 9.094947017729282e-013 42.09322625034508 4.899026079282294 9.094947017729282e-013 43.06767571926042 4.899026079282294 9.094947017729282e-013 43.06767571926042 6.775049618910543 1.364242052659392e-012 39.01639721297244 3.83320020962492 9.094947017729282e-013 42.09322625034508 3.027750865219559 0 41.87537286197522 1.996737465964998 1.364242052659392e-012 41.71617593183373 2.0106478681505 9.094947017729282e-013 38.01701032885558 6.434247010065064 4.547473508864641e-013 37.17020915253147 2.016245987145112 9.094947017729282e-013 37.112863711464 6.093444401219131 4.547473508864641e-013 35.32402109209039 2.031723855009659 0 34.613048704042 2.898207068167494 9.094947017729282e-013 34.61304870404194 1.765955573677957 9.094947017729282e-013 42.4123060076588</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"124\" source=\"#ID8391\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8389\">\r\n\t\t\t\t\t<float_array count=\"372\" id=\"ID8392\">2.627708196704391e-016 -1 2.346889137089008e-014 2.627708196704391e-016 -1 2.346889137089008e-014 2.627708196704391e-016 -1 2.346889137089008e-014 2.627708196704391e-016 -1 2.346889137089008e-014 2.627708196704391e-016 -1 2.346889137089008e-014 2.627708196704391e-016 -1 2.346889137089008e-014 2.627708196704391e-016 -1 2.346889137089008e-014 2.627708196704391e-016 -1 2.346889137089008e-014 -2.627708196704391e-016 1 -2.346889137089008e-014 -2.627708196704391e-016 1 -2.346889137089008e-014 -2.627708196704391e-016 1 -2.346889137089008e-014 -2.627708196704391e-016 1 -2.346889137089008e-014 -2.627708196704391e-016 1 -2.346889137089008e-014 -2.627708196704391e-016 1 -2.346889137089008e-014 -2.627708196704391e-016 1 -2.346889137089008e-014 -2.627708196704391e-016 1 -2.346889137089008e-014 2.627749631806706e-016 -1 1.928009006824751e-014 2.627749631806706e-016 -1 1.928009006824751e-014 2.627749631806706e-016 -1 1.928009006824751e-014 2.627749631806706e-016 -1 1.928009006824751e-014 2.627749631806706e-016 -1 1.928009006824751e-014 2.627749631806706e-016 -1 1.928009006824751e-014 2.627749631806706e-016 -1 1.928009006824751e-014 2.627749631806706e-016 -1 1.928009006824751e-014 2.627749631806706e-016 -1 1.928009006824751e-014 2.627749631806706e-016 -1 1.928009006824751e-014 2.627749631806706e-016 -1 1.928009006824751e-014 -2.627749631806706e-016 1 -1.928009006824751e-014 -2.627749631806706e-016 1 -1.928009006824751e-014 -2.627749631806706e-016 1 -1.928009006824751e-014 -2.627749631806706e-016 1 -1.928009006824751e-014 -2.627749631806706e-016 1 -1.928009006824751e-014 -2.627749631806706e-016 1 -1.928009006824751e-014 -2.627749631806706e-016 1 -1.928009006824751e-014 -2.627749631806706e-016 1 -1.928009006824751e-014 -2.627749631806706e-016 1 -1.928009006824751e-014 -2.627749631806706e-016 1 -1.928009006824751e-014 -2.627749631806706e-016 1 -1.928009006824751e-014 -5.121810616119271e-015 -1 2.323268993374068e-014 -5.121810616119271e-015 -1 2.323268993374068e-014 -5.121810616119271e-015 -1 2.323268993374068e-014 -5.121810616119271e-015 -1 2.323268993374068e-014 5.121810616119271e-015 1 -2.323268993374068e-014 5.121810616119271e-015 1 -2.323268993374068e-014 5.121810616119271e-015 1 -2.323268993374068e-014 5.121810616119271e-015 1 -2.323268993374068e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 -7.564307205704563e-015 -1 2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 7.564307205704563e-015 1 -2.923297511444129e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 -1.236030574024291e-015 -1 2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014 1.236030574024291e-015 1 -2.378273412438587e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"124\" source=\"#ID8392\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8390\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8388\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8389\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"108\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8390\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 1 5 6 1 6 7 8 9 10 9 11 10 11 12 10 12 13 10 13 14 10 15 10 14 16 17 18 17 16 19 19 16 20 19 20 21 21 20 22 21 22 23 23 22 24 21 23 25 25 23 26 27 28 29 29 28 30 31 32 28 28 32 30 32 33 30 30 33 34 33 35 34 34 35 36 37 36 35 38 39 40 39 38 41 42 43 44 45 44 43 46 47 48 47 46 49 47 49 50 51 52 53 52 51 54 54 51 55 54 55 56 54 56 57 56 55 58 58 55 59 58 59 60 58 60 61 61 60 46 46 60 62 61 46 63 63 46 48 56 64 57 64 56 65 64 65 66 64 66 67 67 66 68 68 66 69 69 66 70 70 66 63 70 63 71 71 63 48 71 72 70 73 74 75 76 77 75 75 77 73 77 78 73 73 78 79 79 78 80 80 78 81 81 78 82 78 83 82 83 84 82 85 82 84 76 86 77 77 86 87 88 89 86 86 89 87 87 89 90 89 91 90 91 92 90 90 92 84 85 84 93 84 92 93 92 94 93 93 94 95 96 95 94 97 98 99 98 86 99 76 99 86 100 101 102 103 104 105 104 103 106 106 103 107 106 107 108 108 107 109 108 109 101 101 109 102 102 109 110 110 109 111 112 113 114 114 113 115 115 113 116 116 113 117 113 118 117 117 118 119 118 120 119 119 120 121 122 121 120 115 116 123</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8393\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8394\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8397\">11.33218276524303 9.094947017729282e-013 42.30049968730299 9.788907019315502 9.094947017729282e-013 42.49440441989378 11.33218276524349 9.094947017729282e-013 39.28385442668008 6.775049618910316 1.818989403545857e-012 46.20523034738363 6.673063521154063 9.094947017729282e-013 45.77569284198586 5.187008495710415 9.094947017729282e-013 46.20523034738363 5.187008495710415 9.094947017729282e-013 46.20523034738363 6.775049618910316 1.818989403545857e-012 46.20523034738363 6.673063521154063 9.094947017729282e-013 45.77569284198586 9.788907019315502 9.094947017729282e-013 42.49440441989378 11.33218276524303 9.094947017729282e-013 42.30049968730299 11.33218276524349 9.094947017729282e-013 39.28385442668008</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8397\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8395\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8398\">-7.897364936095359e-015 -1 1.99556679033378e-014 -7.897364936095359e-015 -1 1.99556679033378e-014 -7.897364936095359e-015 -1 1.99556679033378e-014 -7.897364936095359e-015 -1 1.99556679033378e-014 -7.897364936095359e-015 -1 1.99556679033378e-014 -7.897364936095359e-015 -1 1.99556679033378e-014 7.897364936095359e-015 1 -1.99556679033378e-014 7.897364936095359e-015 1 -1.99556679033378e-014 7.897364936095359e-015 1 -1.99556679033378e-014 7.897364936095359e-015 1 -1.99556679033378e-014 7.897364936095359e-015 1 -1.99556679033378e-014 7.897364936095359e-015 1 -1.99556679033378e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8398\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8396\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8394\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8395\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8396\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 6 7 8 8 7 9 7 10 9 11 9 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8399\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8400\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8403\">-3.303220571661541 0 2.929946779624601 -4.459145580859286 0 2.66130675762787 -3.488368426894112 4.547473508864641e-013 2.303570320599818 -6.876084605091819 4.547473508864641e-013 2.837802741519653 -4.809045191673249 0 3.888785571460744 -4.501694095084758 0 3.888785571460716 -6.456693261588953 4.547473508864641e-013 2.37015224531126 -6.903827781635982 0 2.24064528623046 -5.451455905632884 4.547473508864641e-013 2.661306757627841 -4.459145580859286 0 2.66130675762787 -5.451455905632884 4.547473508864641e-013 2.661306757627841 -6.876084605091819 4.547473508864641e-013 2.837802741519653 -6.456693261588953 4.547473508864641e-013 2.37015224531126 -6.903827781635982 0 2.24064528623046 -4.501694095084758 0 3.888785571460716 -3.303220571661541 0 2.929946779624601 -4.809045191673249 0 3.888785571460744 -3.488368426894112 4.547473508864641e-013 2.303570320599818</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8403\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8401\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8404\">1.206461605543441e-015 -1 2.2240670701012e-014 1.206461605543441e-015 -1 2.2240670701012e-014 1.206461605543441e-015 -1 2.2240670701012e-014 1.206461605543441e-015 -1 2.2240670701012e-014 1.206461605543441e-015 -1 2.2240670701012e-014 1.206461605543441e-015 -1 2.2240670701012e-014 1.206461605543441e-015 -1 2.2240670701012e-014 1.206461605543441e-015 -1 2.2240670701012e-014 1.206461605543441e-015 -1 2.2240670701012e-014 -1.206461605543441e-015 1 -2.2240670701012e-014 -1.206461605543441e-015 1 -2.2240670701012e-014 -1.206461605543441e-015 1 -2.2240670701012e-014 -1.206461605543441e-015 1 -2.2240670701012e-014 -1.206461605543441e-015 1 -2.2240670701012e-014 -1.206461605543441e-015 1 -2.2240670701012e-014 -1.206461605543441e-015 1 -2.2240670701012e-014 -1.206461605543441e-015 1 -2.2240670701012e-014 -1.206461605543441e-015 1 -2.2240670701012e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8404\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8402\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8400\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8401\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8402\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 6 3 7 3 6 8 3 8 1 9 10 11 10 12 11 13 11 12 14 15 16 16 15 11 11 15 9 17 9 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8405\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8406\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8409\">3.923574937090052 0 0.03377060230113216 0 0 0 3.745919514256002 4.547473508864641e-013 0 -1.621329590836695 -4.547473508864641e-013 1.778889385680486 3.923574937090507 0 1.06071366974723 2.532958320658054 0 2.438546463895364 -0.6307797265462796 0 2.821677923138793 -1.356695332914796 4.547473508864641e-013 3.429423959185613 1.119220273453266 4.547473508864641e-013 2.821677923138793 1.119220273453266 4.547473508864641e-013 2.821677923138793 2.532958320658054 0 2.438546463895364 -0.6307797265462796 0 2.821677923138793 -1.356695332914796 4.547473508864641e-013 3.429423959185613 -1.621329590836695 -4.547473508864641e-013 1.778889385680486 3.923574937090507 0 1.06071366974723 3.923574937090052 0 0.03377060230113216 0 0 0 3.745919514256002 4.547473508864641e-013 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8409\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8407\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8410\">4.848149251250454e-016 -1 2.397382158091288e-014 4.848149251250454e-016 -1 2.397382158091288e-014 4.848149251250454e-016 -1 2.397382158091288e-014 4.848149251250454e-016 -1 2.397382158091288e-014 4.848149251250454e-016 -1 2.397382158091288e-014 4.848149251250454e-016 -1 2.397382158091288e-014 4.848149251250454e-016 -1 2.397382158091288e-014 4.848149251250454e-016 -1 2.397382158091288e-014 4.848149251250454e-016 -1 2.397382158091288e-014 -4.848149251250454e-016 1 -2.397382158091288e-014 -4.848149251250454e-016 1 -2.397382158091288e-014 -4.848149251250454e-016 1 -2.397382158091288e-014 -4.848149251250454e-016 1 -2.397382158091288e-014 -4.848149251250454e-016 1 -2.397382158091288e-014 -4.848149251250454e-016 1 -2.397382158091288e-014 -4.848149251250454e-016 1 -2.397382158091288e-014 -4.848149251250454e-016 1 -2.397382158091288e-014 -4.848149251250454e-016 1 -2.397382158091288e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8410\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8408\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8406\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8407\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8408\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 3 5 6 3 6 7 6 5 8 9 10 11 12 11 13 11 10 13 10 14 13 14 15 13 13 15 16 17 16 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8411\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8412\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID8415\">-2.184479060774265 1.364242052659392e-012 53.88284227886066 -6.210385340910989 1.364242052659392e-012 55.61214861966482 -2.611543748401573 1.364242052659392e-012 53.23601826927887 -4.313015415574455 1.818989403545857e-012 55.90725311569548 -6.555009002419638 1.364242052659392e-012 57.16650676765948 -5.388362747916972 9.094947017729282e-013 57.65091728900558 -6.602715514715328 1.364242052659392e-012 57.38167773350341 -6.602715514715328 1.364242052659392e-012 57.38167773350341 -5.388362747916972 9.094947017729282e-013 57.65091728900558 -6.555009002419638 1.364242052659392e-012 57.16650676765948 -4.313015415574455 1.818989403545857e-012 55.90725311569548 -6.210385340910989 1.364242052659392e-012 55.61214861966482 -2.184479060774265 1.364242052659392e-012 53.88284227886066 -2.611543748401573 1.364242052659392e-012 53.23601826927887 -1.987580073732033 1.364242052659392e-012 53.65127015419978 -2.611543748401573 1.364242052659392e-012 53.23601826927887 -1.987580073731806 9.094947017729282e-013 52.97960803676892 -2.184479060774265 1.364242052659392e-012 53.88284227886066 -8.494342204681516 9.094947017729282e-013 36.69340197394371 -8.930003166259667 9.094947017729282e-013 38.34906764536584 -8.930003166259894 9.094947017729282e-013 36.41156764536595 -7.346321887100658 1.364242052659392e-012 37.35520615139956 -6.448301569519572 9.094947017729282e-013 37.57951032885558 -2.944940433180136 1.364242052659392e-012 38.11019765354149 -0.92143794159756 9.094947017729282e-013 38.9555112076913 -7.10409074870222 9.094947017729282e-013 43.71492695495914 -1.987580073732261 1.818989403545857e-012 49.77627015419978 -7.293293877564565 4.547473508864641e-013 45.27600962256418 -8.55571103861439 1.364242052659392e-012 48.57267877387579 -8.688157052221413 4.547473508864641e-013 49.79444841780173 -11.68354347615264 1.364242052659392e-012 52.77733329462262 -11.91453733487765 9.094947017729282e-013 52.93514159235087 -10.30336569124165 1.818989403545857e-012 55.29351412655751 -6.210385340910989 1.364242052659392e-012 55.61214861966482 -9.308318480818798 1.364242052659392e-012 55.94143908176022 -8.116002320423831 1.364242052659392e-012 56.32203315741123 -6.555009002419638 1.364242052659392e-012 57.16650676765948 -6.555009002419638 1.364242052659392e-012 57.16650676765948 -6.210385340910989 1.364242052659392e-012 55.61214861966482 -8.116002320423831 1.364242052659392e-012 56.32203315741123 -9.308318480818798 1.364242052659392e-012 55.94143908176022 -10.30336569124165 1.818989403545857e-012 55.29351412655751 -2.611543748401573 1.364242052659392e-012 53.23601826927887 -1.987580073731806 9.094947017729282e-013 52.97960803676892 -11.91453733487765 9.094947017729282e-013 52.93514159235087 -11.68354347615264 1.364242052659392e-012 52.77733329462262 -8.688157052221413 4.547473508864641e-013 49.79444841780173 -1.987580073732261 1.818989403545857e-012 49.77627015419978 -8.55571103861439 1.364242052659392e-012 48.57267877387579 -7.293293877564565 4.547473508864641e-013 45.27600962256418 -7.10409074870222 9.094947017729282e-013 43.71492695495914 -0.92143794159756 9.094947017729282e-013 38.9555112076913 -8.930003166259667 9.094947017729282e-013 38.34906764536584 -2.944940433180136 1.364242052659392e-012 38.11019765354149 -6.448301569519572 9.094947017729282e-013 37.57951032885558 -7.346321887100658 1.364242052659392e-012 37.35520615139956 -8.494342204681516 9.094947017729282e-013 36.69340197394371 -8.930003166259894 9.094947017729282e-013 36.41156764536595 -2.184479060774265 1.364242052659392e-012 53.88284227886066 -1.987580073732033 1.364242052659392e-012 53.65127015419978 3.753681069491904 1.364242052659392e-012 48.41572849102016 3.086384933214504 9.094947017729282e-013 46.54296386178226 3.320119925887184 1.364242052659392e-012 46.18484014785327 2.25199369091456 1.364242052659392e-012 46.54296386178231 5.854724063440699 9.094947017729282e-013 53.10429082122568 -1.624822389250539 1.364242052659392e-012 52.97960803676892 5.513341031545451 1.364242052659392e-012 52.61131824425507 0.6791113501844848 1.364242052659392e-012 55.57545929642322 5.970103093078706 9.094947017729282e-013 53.27090337151356 5.092741191812365 1.818989403545857e-012 55.61528277793406 1.119220273453948 1.818989403545857e-012 57.50591466388403 2.587285156638018 1.364242052659392e-012 57.10806030743453 4.055350039822997 9.094947017729282e-013 56.71020595098497 1.996737465964998 1.364242052659392e-012 41.71617593183373 -0.4917467675213629 1.364242052659392e-012 38.84222410696884 2.0106478681505 9.094947017729282e-013 38.01701032885558 -0.92143794159756 9.094947017729282e-013 38.9555112076913 -1.987580073732261 1.818989403545857e-012 49.77627015419978 1.765955573677957 9.094947017729282e-013 42.4123060076588 1.515086616102963 1.364242052659392e-012 42.93264302770359 1.539196364278268 1.364242052659392e-012 44.58254945946629 1.819918551518867 1.818989403545857e-012 44.24558306979947 3.908855085266168 2.273736754432321e-012 48.90519150369062 4.064029101040887 1.818989403545857e-012 49.39465451636073 3.892923075645058 9.094947017729282e-013 51.47360314144561 -1.987580073731806 9.094947017729282e-013 52.97960803676892 4.57346487076029 1.818989403545857e-012 51.83427217390459 -1.624822389250539 1.364242052659392e-012 52.97960803676892 5.513341031545451 1.364242052659392e-012 52.61131824425507 -1.987580073731806 9.094947017729282e-013 52.97960803676892 4.57346487076029 1.818989403545857e-012 51.83427217390459 3.892923075645058 9.094947017729282e-013 51.47360314144561 -1.987580073732261 1.818989403545857e-012 49.77627015419978 4.064029101040887 1.818989403545857e-012 49.39465451636073 3.908855085266168 2.273736754432321e-012 48.90519150369062 3.753681069491904 1.364242052659392e-012 48.41572849102016 2.25199369091456 1.364242052659392e-012 46.54296386178231 1.539196364278268 1.364242052659392e-012 44.58254945946629 1.819918551518867 1.818989403545857e-012 44.24558306979947 1.515086616102963 1.364242052659392e-012 42.93264302770359 1.765955573677957 9.094947017729282e-013 42.4123060076588 1.996737465964998 1.364242052659392e-012 41.71617593183373 -0.92143794159756 9.094947017729282e-013 38.9555112076913 -0.4917467675213629 1.364242052659392e-012 38.84222410696884 2.0106478681505 9.094947017729282e-013 38.01701032885558 4.055350039822997 9.094947017729282e-013 56.71020595098497 5.092741191812365 1.818989403545857e-012 55.61528277793406 2.587285156638018 1.364242052659392e-012 57.10806030743453 1.119220273453948 1.818989403545857e-012 57.50591466388403 0.6791113501844848 1.364242052659392e-012 55.57545929642322 5.970103093078706 9.094947017729282e-013 53.27090337151356 5.854724063440699 9.094947017729282e-013 53.10429082122568 3.086384933214504 9.094947017729282e-013 46.54296386178226 3.320119925887184 1.364242052659392e-012 46.18484014785327 0.6791113501844848 1.364242052659392e-012 55.57545929642322 -1.987580073731806 9.094947017729282e-013 52.97960803676892 -1.624822389250539 1.364242052659392e-012 52.97960803676892 -0.8137349224455193 1.364242052659392e-012 55.57545929642322 1.119220273453948 1.818989403545857e-012 57.50591466388403 -0.3111762842011103 1.364242052659392e-012 57.76861565544692 1.179111350184257 1.818989403545857e-012 57.76861565544681 1.179111350184257 1.818989403545857e-012 57.76861565544681 1.119220273453948 1.818989403545857e-012 57.50591466388403 -0.3111762842011103 1.364242052659392e-012 57.76861565544692 -0.8137349224455193 1.364242052659392e-012 55.57545929642322 0.6791113501844848 1.364242052659392e-012 55.57545929642322 -1.987580073731806 9.094947017729282e-013 52.97960803676892 -1.624822389250539 1.364242052659392e-012 52.97960803676892</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"128\" source=\"#ID8415\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8413\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID8416\">-3.567495044551361e-015 -1 1.985912242626526e-014 -3.567495044551361e-015 -1 1.985912242626526e-014 -3.567495044551361e-015 -1 1.985912242626526e-014 -3.567495044551361e-015 -1 1.985912242626526e-014 -3.567495044551361e-015 -1 1.985912242626526e-014 -3.567495044551361e-015 -1 1.985912242626526e-014 -3.567495044551361e-015 -1 1.985912242626526e-014 3.567495044551361e-015 1 -1.985912242626526e-014 3.567495044551361e-015 1 -1.985912242626526e-014 3.567495044551361e-015 1 -1.985912242626526e-014 3.567495044551361e-015 1 -1.985912242626526e-014 3.567495044551361e-015 1 -1.985912242626526e-014 3.567495044551361e-015 1 -1.985912242626526e-014 3.567495044551361e-015 1 -1.985912242626526e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 2.205662875948406e-015 -1 2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -2.205662875948406e-015 1 -2.168643682071189e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 -6.731634473324957e-015 -1 2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 6.731634473324957e-015 1 -2.370934136648424e-014 8.367408171842056e-015 -1 1.409513847378316e-014 8.367408171842056e-015 -1 1.409513847378316e-014 8.367408171842056e-015 -1 1.409513847378316e-014 8.367408171842056e-015 -1 1.409513847378316e-014 8.367408171842056e-015 -1 1.409513847378316e-014 8.367408171842056e-015 -1 1.409513847378316e-014 8.367408171842056e-015 -1 1.409513847378316e-014 -8.367408171842056e-015 1 -1.409513847378316e-014 -8.367408171842056e-015 1 -1.409513847378316e-014 -8.367408171842056e-015 1 -1.409513847378316e-014 -8.367408171842056e-015 1 -1.409513847378316e-014 -8.367408171842056e-015 1 -1.409513847378316e-014 -8.367408171842056e-015 1 -1.409513847378316e-014 -8.367408171842056e-015 1 -1.409513847378316e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"128\" source=\"#ID8416\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8414\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8412\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8413\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"112\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8414\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 7 8 9 8 10 9 9 10 11 10 12 11 13 11 12 14 15 16 15 14 17 18 19 20 19 18 21 19 21 22 19 22 23 19 23 24 19 24 25 25 24 26 25 26 27 27 26 28 28 26 29 29 26 16 29 16 30 30 16 31 31 16 32 32 16 15 32 15 33 32 33 34 34 33 35 35 33 36 37 38 39 39 38 40 40 38 41 38 42 41 42 43 41 41 43 44 44 43 45 45 43 46 43 47 46 46 47 48 48 47 49 49 47 50 47 51 50 50 51 52 51 53 52 53 54 52 54 55 52 55 56 52 57 52 56 58 59 42 43 42 59 60 61 62 61 60 63 64 65 66 65 64 67 67 64 68 67 68 69 67 69 70 70 69 71 71 69 72 73 74 75 74 73 76 76 73 77 77 73 78 77 78 79 77 79 80 80 79 81 77 80 63 77 63 60 77 60 82 77 82 83 77 83 84 77 84 85 85 84 86 85 86 66 85 66 65 87 88 89 88 90 89 90 91 89 89 91 92 91 93 92 93 94 92 94 95 92 95 96 92 96 97 92 98 99 97 97 99 92 99 100 92 100 101 92 92 101 102 102 101 103 104 103 101 105 106 107 107 106 108 108 106 109 106 110 109 110 111 109 109 111 87 88 87 111 96 95 112 113 112 95 114 115 116 115 114 117 117 114 118 117 118 119 119 118 120 121 122 123 123 122 124 122 125 124 124 125 126 127 126 125</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8417\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8418\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID8421\">2.016245987145112 9.094947017729282e-013 37.112863711464 -0.4917467675213629 1.364242052659392e-012 38.84222410696884 -0.4917467675222724 9.094947017729282e-013 36.7052728635357 2.0106478681505 9.094947017729282e-013 38.01701032885558 2.0106478681505 9.094947017729282e-013 38.01701032885558 2.016245987145112 9.094947017729282e-013 37.112863711464 -0.4917467675213629 1.364242052659392e-012 38.84222410696884 -0.4917467675222724 9.094947017729282e-013 36.7052728635357</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID8421\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8419\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID8422\">-6.509590053200778e-015 -1 2.38961623709955e-014 -6.509590053200778e-015 -1 2.38961623709955e-014 -6.509590053200778e-015 -1 2.38961623709955e-014 -6.509590053200778e-015 -1 2.38961623709955e-014 6.509590053200778e-015 1 -2.38961623709955e-014 6.509590053200778e-015 1 -2.38961623709955e-014 6.509590053200778e-015 1 -2.38961623709955e-014 6.509590053200778e-015 1 -2.38961623709955e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID8422\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8420\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8418\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8419\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8420\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8423\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8424\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID8427\">-2.944940433180136 1.364242052659392e-012 38.11019765354149 -8.494342204681516 9.094947017729282e-013 36.69340197394371 -2.829438689420613 9.094947017729282e-013 36.58970401792226 -7.346321887100658 1.364242052659392e-012 37.35520615139956 -6.448301569519572 9.094947017729282e-013 37.57951032885558 -6.448301569519572 9.094947017729282e-013 37.57951032885558 -2.944940433180136 1.364242052659392e-012 38.11019765354149 -7.346321887100658 1.364242052659392e-012 37.35520615139956 -8.494342204681516 9.094947017729282e-013 36.69340197394371 -2.829438689420613 9.094947017729282e-013 36.58970401792226</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID8427\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8425\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID8428\">1.872605890862918e-015 -1 1.165567768292992e-014 1.872605890862918e-015 -1 1.165567768292992e-014 1.872605890862918e-015 -1 1.165567768292992e-014 1.872605890862918e-015 -1 1.165567768292992e-014 1.872605890862918e-015 -1 1.165567768292992e-014 -1.872605890862918e-015 1 -1.165567768292992e-014 -1.872605890862918e-015 1 -1.165567768292992e-014 -1.872605890862918e-015 1 -1.165567768292992e-014 -1.872605890862918e-015 1 -1.165567768292992e-014 -1.872605890862918e-015 1 -1.165567768292992e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID8428\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8426\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8424\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8425\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8426\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 7 6 8 9 8 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8429\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8430\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8433\">-1.558206948254792 9.094947017729282e-013 36.70527286353558 -2.944940433180136 1.364242052659392e-012 38.11019765354149 -2.829438689420613 9.094947017729282e-013 36.58970401792226 -0.4917467675222724 9.094947017729282e-013 36.7052728635357 -0.4917467675213629 1.364242052659392e-012 38.84222410696884 -0.92143794159756 9.094947017729282e-013 38.9555112076913 -0.92143794159756 9.094947017729282e-013 38.9555112076913 -0.4917467675213629 1.364242052659392e-012 38.84222410696884 -2.944940433180136 1.364242052659392e-012 38.11019765354149 -0.4917467675222724 9.094947017729282e-013 36.7052728635357 -1.558206948254792 9.094947017729282e-013 36.70527286353558 -2.829438689420613 9.094947017729282e-013 36.58970401792226</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8433\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8431\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8434\">3.737941292105325e-016 -1 2.245080596975907e-014 3.737941292105325e-016 -1 2.245080596975907e-014 3.737941292105325e-016 -1 2.245080596975907e-014 3.737941292105325e-016 -1 2.245080596975907e-014 3.737941292105325e-016 -1 2.245080596975907e-014 3.737941292105325e-016 -1 2.245080596975907e-014 -3.737941292105325e-016 1 -2.245080596975907e-014 -3.737941292105325e-016 1 -2.245080596975907e-014 -3.737941292105325e-016 1 -2.245080596975907e-014 -3.737941292105325e-016 1 -2.245080596975907e-014 -3.737941292105325e-016 1 -2.245080596975907e-014 -3.737941292105325e-016 1 -2.245080596975907e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8434\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8432\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8430\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8431\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8432\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 6 7 8 7 9 8 9 10 8 11 8 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8435\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8436\">\r\n\t\t\t\t\t<float_array count=\"348\" id=\"ID8439\">-6.99227903239489 4.547473508864641e-013 2.711583930618531 -8.073905695218627 -4.547473508864641e-013 3.913810178794705 -8.136405695219082 4.547473508864641e-013 1.851310178794705 -6.876084605091819 4.547473508864641e-013 2.837802741519653 -4.809045191673249 0 3.888785571460744 1.135897376575485 0 3.789904788930159 -1.356695332914796 4.547473508864641e-013 3.429423959185613 -0.5775128626237347 -4.547473508864641e-013 3.304495721921455 -1.654880071977686 0 3.477232650025826 -1.286466598331572 0 4.572228040724923 2.031723855009659 0 34.613048704042 -0.4917467675222724 9.094947017729282e-013 36.7052728635357 -2.829438689420613 9.094947017729282e-013 36.58970401792226 2.016245987145112 9.094947017729282e-013 37.112863711464 -1.558206948254792 9.094947017729282e-013 36.70527286353558 2.898207068167494 9.094947017729282e-013 34.61304870404194 -7.883711335455246 9.094947017729282e-013 31.37317049824691 3.854365455358675 9.094947017729282e-013 30.81637749511197 -7.557869052482602 0 31.65506245928401 -7.763081606729429 1.818989403545857e-012 32.49689437021607 -7.763081606728974 9.094947017729282e-013 33.42756152508923 -8.462591589705653 4.547473508864641e-013 34.38704653396627 -8.494342204681516 9.094947017729282e-013 36.69340197394371 4.160867305754664 4.547473508864641e-013 7.659435931088012 2.644199086777007 0 3.213889545004321 4.711311289408741 0 2.87851889867062 2.47331390602767 0 3.279150008747649 -1.637837154701401 -4.547473508864641e-013 6.137882924772896 -0.6353164463989742 0 14.80913853380767 4.353984490222274 4.547473508864641e-013 9.118560947707664 4.930492662124607 0 13.46822820412277 5.857610574917771 4.547473508864641e-013 18.32053849315295 -0.6353164463989742 4.547473508864641e-013 19.84757795846522 5.568782837198796 4.547473508864641e-013 21.88274725835669 -1.439347907376487 4.547473508864641e-013 29.221611383599 5.288438980983756 4.547473508864641e-013 25.21905623209221 4.911458149139207 9.094947017729282e-013 27.04817305282234 5.087722482380514 4.547473508864641e-013 28.58612943592112 4.592480785085854 4.547473508864641e-013 30.81637749511197 -8.123874004404343 9.094947017729282e-013 29.85865440784971 -8.814637036548447 9.094947017729282e-013 30.5989487954983 -8.408624748880584 9.094947017729282e-013 31.97992417921046 -8.556354641495091 0 32.81431542151051 -8.408624748880811 4.547473508864641e-013 32.46130374207587 -2.354108100700387 0 4.434926091467247 -3.303220571661541 0 2.929946779624601 -2.729835320548091 -4.547473508864641e-013 2.557678030313952 -4.501694095084758 0 3.888785571460716 -8.280532358043729 0 5.116036426970794 -2.759211482261662 0 7.093768830642091 -8.79440006511004 4.547473508864641e-013 7.203891022002409 -3.486134153629564 -4.547473508864641e-013 8.755173087761875 -9.4967309544827 4.547473508864641e-013 15.4215694855319 -3.734032319234984 0 11.50392678957732 -2.605643160016143 0 16.8743909887686 -9.496730954482473 -4.547473508864641e-013 19.81816949303573 -8.123874004404115 9.094947017729282e-013 29.19634462720495 -8.814637036548447 4.547473508864641e-013 29.19634462720495 -8.123874004404115 9.094947017729282e-013 29.19634462720495 -9.496730954482473 -4.547473508864641e-013 19.81816949303573 -8.814637036548447 4.547473508864641e-013 29.19634462720495 -8.123874004404343 9.094947017729282e-013 29.85865440784971 -1.439347907376487 4.547473508864641e-013 29.221611383599 -2.605643160016143 0 16.8743909887686 -9.4967309544827 4.547473508864641e-013 15.4215694855319 -3.734032319234984 0 11.50392678957732 -3.486134153629564 -4.547473508864641e-013 8.755173087761875 -8.79440006511004 4.547473508864641e-013 7.203891022002409 -2.759211482261662 0 7.093768830642091 -8.280532358043729 0 5.116036426970794 -2.354108100700387 0 4.434926091467247 -8.073905695218627 -4.547473508864641e-013 3.913810178794705 -4.809045191673249 0 3.888785571460744 -4.501694095084758 0 3.888785571460716 -3.303220571661541 0 2.929946779624601 -2.729835320548091 -4.547473508864641e-013 2.557678030313952 -8.408624748880811 4.547473508864641e-013 32.46130374207587 -8.408624748880584 9.094947017729282e-013 31.97992417921046 -8.556354641495091 0 32.81431542151051 -8.814637036548447 9.094947017729282e-013 30.5989487954983 -7.883711335455246 9.094947017729282e-013 31.37317049824691 3.854365455358675 9.094947017729282e-013 30.81637749511197 4.592480785085854 4.547473508864641e-013 30.81637749511197 5.087722482380514 4.547473508864641e-013 28.58612943592112 4.911458149139207 9.094947017729282e-013 27.04817305282234 5.288438980983756 4.547473508864641e-013 25.21905623209221 5.568782837198796 4.547473508864641e-013 21.88274725835669 -0.6353164463989742 4.547473508864641e-013 19.84757795846522 5.857610574917771 4.547473508864641e-013 18.32053849315295 -0.6353164463989742 0 14.80913853380767 4.930492662124607 0 13.46822820412277 4.353984490222274 4.547473508864641e-013 9.118560947707664 4.160867305754664 4.547473508864641e-013 7.659435931088012 -1.637837154701401 -4.547473508864641e-013 6.137882924772896 -1.286466598331572 0 4.572228040724923 1.135897376575485 0 3.789904788930159 2.47331390602767 0 3.279150008747649 2.644199086777007 0 3.213889545004321 4.711311289408741 0 2.87851889867062 -2.829438689420613 9.094947017729282e-013 36.58970401792226 2.031723855009659 0 34.613048704042 -8.494342204681516 9.094947017729282e-013 36.69340197394371 -8.462591589705653 4.547473508864641e-013 34.38704653396627 2.898207068167494 9.094947017729282e-013 34.61304870404194 -7.763081606728974 9.094947017729282e-013 33.42756152508923 -7.763081606729429 1.818989403545857e-012 32.49689437021607 -7.557869052482602 0 31.65506245928401 -1.558206948254792 9.094947017729282e-013 36.70527286353558 -0.4917467675222724 9.094947017729282e-013 36.7052728635357 2.016245987145112 9.094947017729282e-013 37.112863711464 -1.654880071977686 0 3.477232650025826 -1.356695332914796 4.547473508864641e-013 3.429423959185613 -0.5775128626237347 -4.547473508864641e-013 3.304495721921455 -6.876084605091819 4.547473508864641e-013 2.837802741519653 -6.99227903239489 4.547473508864641e-013 2.711583930618531 -8.136405695219082 4.547473508864641e-013 1.851310178794705</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"116\" source=\"#ID8439\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8437\">\r\n\t\t\t\t\t<float_array count=\"348\" id=\"ID8440\">4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 4.848157692666723e-016 -1 2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014 -4.848157692666723e-016 1 -2.312045295956202e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"116\" source=\"#ID8440\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8438\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8436\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8437\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"112\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8438\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 6 7 6 5 8 8 5 9 10 11 12 11 10 13 12 11 14 15 16 17 16 15 18 18 15 19 19 15 20 20 15 21 21 15 10 21 10 22 22 10 12 23 24 25 24 23 26 26 23 5 5 23 9 9 23 27 27 23 28 28 23 29 28 29 30 28 30 31 28 31 32 32 31 33 32 33 34 34 33 35 34 35 36 34 36 37 34 37 38 34 38 39 39 38 40 40 38 17 40 17 16 40 16 41 40 41 42 42 41 43 44 45 46 45 44 47 47 44 4 4 44 1 1 44 48 48 44 49 48 49 50 50 49 51 50 51 52 52 51 53 52 53 54 52 54 55 55 54 34 55 34 56 56 34 39 57 55 56 58 59 60 61 62 58 58 62 59 62 63 59 59 63 64 63 65 64 65 66 64 64 66 67 66 68 67 67 68 69 68 70 69 69 70 71 71 70 72 72 70 73 73 70 74 75 74 70 76 77 78 78 77 79 77 80 79 80 81 79 81 82 79 79 82 61 61 82 62 82 83 62 83 84 62 84 85 62 85 86 62 62 86 87 86 88 87 87 88 89 88 90 89 90 91 89 91 92 89 89 92 93 93 92 94 94 92 95 95 92 96 96 92 97 98 97 92 99 100 101 101 100 102 100 103 102 102 103 104 104 103 105 105 103 106 106 103 80 81 80 103 107 108 99 109 100 108 99 108 100 94 95 110 110 95 111 112 111 95 72 113 71 113 114 71 115 71 114</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8441\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8442\">\r\n\t\t\t\t\t<float_array count=\"216\" id=\"ID8445\">2.587285156638018 1.364242052659392e-012 57.10806030743453 1.179111350184257 1.818989403545857e-012 57.76861565544681 1.119220273453948 1.818989403545857e-012 57.50591466388403 1.561127726871291 2.273736754432321e-012 62.07226763734644 -0.3111762842011103 1.364242052659392e-012 57.76861565544692 -0.5656335024798409 2.273736754432321e-012 59.00164972941866 -0.7774957005435681 1.364242052659392e-012 58.86061927287949 0.1198614114466636 1.364242052659392e-012 60.59327448347256 0.4844461656905423 1.364242052659392e-012 61.99063431861634 0.484446165690315 2.273736754432321e-012 63.81987665750478 1.152268228383719 1.818989403545857e-012 65.29608461944872 -0.7161460070014982 2.273736754432321e-012 65.01521502246425 -1.656455885623018 9.094947017729282e-013 65.63282520062347 0.7735291978372061 1.364242052659392e-012 66.20996238363608 -2.49080015716504 2.728484105318785e-012 65.86662596030897 -5.559291826647723 1.364242052659392e-012 65.93225183630642 -4.276032710584104 1.364242052659392e-012 67.06617891774926 -0.4930588044853721 1.364242052659392e-012 67.24654844863312 -2.634218835391721 1.818989403545857e-012 67.71415912165804 -1.478907884515138 1.818989403545857e-012 67.7141591216581 -8.116002320423831 1.364242052659392e-012 56.32203315741123 -8.728594730959003 1.364242052659392e-012 57.50591466388403 -9.308318480818798 1.364242052659392e-012 55.94143908176022 -6.555009002419638 1.364242052659392e-012 57.16650676765948 -6.602715514715328 1.364242052659392e-012 57.38167773350341 -5.388362747916972 9.094947017729282e-013 57.65091728900558 -6.950923853740051 9.094947017729282e-013 62.67061007733645 -4.969022489573035 9.094947017729282e-013 58.5175538229168 -4.969022489573035 1.364242052659392e-012 60.02587645322825 -5.660502705500448 1.364242052659392e-012 61.30356020348091 -5.364344131371809 2.273736754432321e-012 61.11144735959118 -5.660502705500221 9.094947017729282e-013 62.04167553320787 -5.261854389236987 1.818989403545857e-012 62.1646865337201 -3.898991980176106 9.094947017729282e-013 64.23964098194796 -5.831177882287193 1.818989403545857e-012 65.35508830188599 -2.916621952355627 1.364242052659392e-012 65.73529677631166 -2.49080015716504 2.728484105318785e-012 65.86662596030897 -2.916621952355627 1.364242052659392e-012 65.73529677631166 -5.559291826647723 1.364242052659392e-012 65.93225183630642 -5.831177882287193 1.818989403545857e-012 65.35508830188599 -3.898991980176106 9.094947017729282e-013 64.23964098194796 -6.950923853740051 9.094947017729282e-013 62.67061007733645 -5.261854389236987 1.818989403545857e-012 62.1646865337201 -5.660502705500221 9.094947017729282e-013 62.04167553320787 -5.660502705500448 1.364242052659392e-012 61.30356020348091 -5.364344131371809 2.273736754432321e-012 61.11144735959118 -4.969022489573035 1.364242052659392e-012 60.02587645322825 -4.969022489573035 9.094947017729282e-013 58.5175538229168 -5.388362747916972 9.094947017729282e-013 57.65091728900558 -8.728594730959003 1.364242052659392e-012 57.50591466388403 -6.602715514715328 1.364242052659392e-012 57.38167773350341 -6.555009002419638 1.364242052659392e-012 57.16650676765948 -8.116002320423831 1.364242052659392e-012 56.32203315741123 -9.308318480818798 1.364242052659392e-012 55.94143908176022 -1.478907884515138 1.818989403545857e-012 67.7141591216581 -0.4930588044853721 1.364242052659392e-012 67.24654844863312 -2.634218835391721 1.818989403545857e-012 67.71415912165804 -4.276032710584104 1.364242052659392e-012 67.06617891774926 0.7735291978372061 1.364242052659392e-012 66.20996238363608 -1.656455885623018 9.094947017729282e-013 65.63282520062347 1.152268228383719 1.818989403545857e-012 65.29608461944872 -0.7161460070014982 2.273736754432321e-012 65.01521502246425 0.484446165690315 2.273736754432321e-012 63.81987665750478 1.561127726871291 2.273736754432321e-012 62.07226763734644 0.4844461656905423 1.364242052659392e-012 61.99063431861634 0.1198614114466636 1.364242052659392e-012 60.59327448347256 -0.5656335024798409 2.273736754432321e-012 59.00164972941866 -0.7774957005435681 1.364242052659392e-012 58.86061927287949 -0.3111762842011103 1.364242052659392e-012 57.76861565544692 1.179111350184257 1.818989403545857e-012 57.76861565544681 2.587285156638018 1.364242052659392e-012 57.10806030743453 1.119220273453948 1.818989403545857e-012 57.50591466388403</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"72\" source=\"#ID8445\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8443\">\r\n\t\t\t\t\t<float_array count=\"216\" id=\"ID8446\">3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 3.737935493844386e-016 -1 2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014 -3.737935493844386e-016 1 -2.303696992167623e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"72\" source=\"#ID8446\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8444\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8442\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8443\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"68\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8444\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 5 3 7 7 3 8 8 3 9 9 3 10 9 10 11 11 10 12 12 10 13 12 13 14 14 13 15 15 13 16 16 13 17 16 17 18 18 17 19 20 21 22 21 20 23 21 23 24 21 24 25 21 25 26 26 25 27 26 27 28 26 28 29 29 28 30 26 29 31 26 31 32 26 32 33 26 33 34 34 33 35 34 35 15 15 35 14 36 37 38 38 37 39 37 40 39 39 40 41 40 42 41 42 43 41 43 44 41 45 46 44 44 46 41 46 47 41 47 48 41 41 48 49 48 50 49 50 51 49 51 52 49 53 49 52 54 55 56 56 55 57 55 58 57 57 58 38 38 58 36 36 58 59 58 60 59 59 60 61 61 60 62 60 63 62 62 63 64 64 63 65 65 63 66 67 66 68 66 63 68 68 63 69 63 70 69 71 69 70</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8447\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8448\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8451\">-3.866087869445892 9.094947017729282e-013 0.05290073354490232 -6.992279032393981 4.547473508864641e-013 0.3367780871493835 -6.196893410599387 0 0 -3.065410471207088 9.094947017729282e-013 0.5273025222305137 -6.903827781635982 0 2.24064528623046 -3.065410471207088 4.547473508864641e-013 1.778889385680486 -3.488368426894112 4.547473508864641e-013 2.303570320599818 -6.456693261588953 4.547473508864641e-013 2.37015224531126 -4.459145580859286 0 2.66130675762787 -5.451455905632884 4.547473508864641e-013 2.661306757627841 -5.451455905632884 4.547473508864641e-013 2.661306757627841 -4.459145580859286 0 2.66130675762787 -6.456693261588953 4.547473508864641e-013 2.37015224531126 -3.488368426894112 4.547473508864641e-013 2.303570320599818 -6.903827781635982 0 2.24064528623046 -3.065410471207088 4.547473508864641e-013 1.778889385680486 -3.065410471207088 9.094947017729282e-013 0.5273025222305137 -6.992279032393981 4.547473508864641e-013 0.3367780871493835 -3.866087869445892 9.094947017729282e-013 0.05290073354490232 -6.196893410599387 0 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8451\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8449\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8452\">7.623692514712971e-016 -1 2.541926062080123e-014 7.623692514712971e-016 -1 2.541926062080123e-014 7.623692514712971e-016 -1 2.541926062080123e-014 7.623692514712971e-016 -1 2.541926062080123e-014 7.623692514712971e-016 -1 2.541926062080123e-014 7.623692514712971e-016 -1 2.541926062080123e-014 7.623692514712971e-016 -1 2.541926062080123e-014 7.623692514712971e-016 -1 2.541926062080123e-014 7.623692514712971e-016 -1 2.541926062080123e-014 7.623692514712971e-016 -1 2.541926062080123e-014 -7.623692514712971e-016 1 -2.541926062080123e-014 -7.623692514712971e-016 1 -2.541926062080123e-014 -7.623692514712971e-016 1 -2.541926062080123e-014 -7.623692514712971e-016 1 -2.541926062080123e-014 -7.623692514712971e-016 1 -2.541926062080123e-014 -7.623692514712971e-016 1 -2.541926062080123e-014 -7.623692514712971e-016 1 -2.541926062080123e-014 -7.623692514712971e-016 1 -2.541926062080123e-014 -7.623692514712971e-016 1 -2.541926062080123e-014 -7.623692514712971e-016 1 -2.541926062080123e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8452\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8450\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8448\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8449\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8450\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 7 6 8 7 8 9 10 11 12 11 13 12 12 13 14 13 15 14 15 16 14 14 16 17 16 18 17 19 17 18</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8453\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8454\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID8457\">1.135897376575485 0 3.789904788930159 -0.5775128626237347 -4.547473508864641e-013 3.304495721921455 2.47331390602767 0 3.279150008747649 1.119220273453266 4.547473508864641e-013 2.821677923138793 2.532958320658054 0 2.438546463895364 -0.6307797265462796 0 2.821677923138793 -1.356695332914796 4.547473508864641e-013 3.429423959185613 -1.356695332914796 4.547473508864641e-013 3.429423959185613 -0.5775128626237347 -4.547473508864641e-013 3.304495721921455 -0.6307797265462796 0 2.821677923138793 2.47331390602767 0 3.279150008747649 1.119220273453266 4.547473508864641e-013 2.821677923138793 2.532958320658054 0 2.438546463895364 1.135897376575485 0 3.789904788930159</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID8457\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8455\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID8458\">3.737929742757329e-016 -1 2.361836491928167e-014 3.737929742757329e-016 -1 2.361836491928167e-014 3.737929742757329e-016 -1 2.361836491928167e-014 3.737929742757329e-016 -1 2.361836491928167e-014 3.737929742757329e-016 -1 2.361836491928167e-014 3.737929742757329e-016 -1 2.361836491928167e-014 3.737929742757329e-016 -1 2.361836491928167e-014 -3.737929742757329e-016 1 -2.361836491928167e-014 -3.737929742757329e-016 1 -2.361836491928167e-014 -3.737929742757329e-016 1 -2.361836491928167e-014 -3.737929742757329e-016 1 -2.361836491928167e-014 -3.737929742757329e-016 1 -2.361836491928167e-014 -3.737929742757329e-016 1 -2.361836491928167e-014 -3.737929742757329e-016 1 -2.361836491928167e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID8458\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8456\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8454\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8455\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8456\" />\r\n\t\t\t\t\t<p>0 1 2 2 3 4 3 2 5 5 2 1 5 1 6 7 8 9 8 10 9 9 10 11 12 11 10 10 8 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8459\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8460\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8462\">-4.860938966035064 0 0.0529007335448739 -3.866087869445892 9.094947017729282e-013 0.05290073354490232</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8462\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8461\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8460\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8461\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8463\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8464\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8466\">-1.439347907376487 4.547473508864641e-013 29.221611383599 -1.208730351256008 4.547473508864641e-013 31.66309074818082</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8466\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8465\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8464\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8465\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8467\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8468\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8470\">-8.820603065828664 1.364242052659392e-012 51.01621806172767 -8.688157052221413 4.547473508864641e-013 49.79444841780173</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8470\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8469\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8468\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8469\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8473\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8474\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID8477\">8.732825965255415 0 49.06826374240694 7.272380257571058 2.273736754432321e-013 48.84698408972747 8.002603111413919 2.273736754432321e-013 48.80272815919159 6.896204848017078 2.273736754432321e-013 49.00187984660312 6.409389612122141 2.273736754432321e-013 49.35592729089018 8.887721722131573 2.273736754432321e-013 49.77635863098124 6.121726063638562 2.273736754432321e-013 49.82061456151706 8.799209861059353 2.273736754432321e-013 50.57296538062724 5.81193454988761 0 50.57296538062724 8.423034451504464 0 51.17042044286177 5.590654897207969 2.273736754432321e-013 50.88275689437847 5.236607452920453 0 50.99339672071824 4.882560008633845 0 51.21467637339765 7.825579389269478 2.273736754432321e-013 51.96702719250783 4.760856199659884 2.273736754432321e-013 51.39170009554124 4.760856199660339 0 51.60665747242985 5.236607452920453 0 51.87851533143606 5.679166758279735 2.273736754432321e-013 51.900643296704 5.701294723547562 2.273736754432321e-013 52.09979498411548 7.427276014447216 2.273736754432321e-013 52.38745853259877 5.922574376226294 0 52.27681870625906 6.343005716317748 2.273736754432321e-013 52.43171446313471 7.139612465963637 0 52.54235428947447 6.74130909114092 0 52.54235428947442 5.502143036136204 0 51.92277126197195 5.679166758279735 2.273736754432321e-013 51.900643296704 5.236607452920453 0 51.87851533143606 5.502143036136204 0 51.92277126197195 6.74130909114092 0 52.54235428947442 7.139612465963637 0 52.54235428947447 6.343005716317748 2.273736754432321e-013 52.43171446313471 7.427276014447216 2.273736754432321e-013 52.38745853259877 5.922574376226294 0 52.27681870625906 5.701294723547562 2.273736754432321e-013 52.09979498411548 7.825579389269478 2.273736754432321e-013 51.96702719250783 4.760856199660339 0 51.60665747242985 4.760856199659884 2.273736754432321e-013 51.39170009554124 4.882560008633845 0 51.21467637339765 8.423034451504464 0 51.17042044286177 5.236607452920453 0 50.99339672071824 5.590654897207969 2.273736754432321e-013 50.88275689437847 5.81193454988761 0 50.57296538062724 8.799209861059353 2.273736754432321e-013 50.57296538062724 6.121726063638562 2.273736754432321e-013 49.82061456151706 8.887721722131573 2.273736754432321e-013 49.77635863098124 6.409389612122141 2.273736754432321e-013 49.35592729089018 8.732825965255415 0 49.06826374240694 6.896204848017078 2.273736754432321e-013 49.00187984660312 7.272380257571058 2.273736754432321e-013 48.84698408972747 8.002603111413919 2.273736754432321e-013 48.80272815919159</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID8477\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8475\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID8478\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID8478\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8476\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8474\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8475\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"46\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8476\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 11 9 12 12 9 13 12 13 14 14 13 15 15 13 16 16 13 17 17 13 18 18 13 19 18 19 20 20 19 21 21 19 22 21 22 23 24 16 17 25 26 27 28 29 30 29 31 30 30 31 32 32 31 33 31 34 33 33 34 25 25 34 26 26 34 35 35 34 36 36 34 37 34 38 37 37 38 39 39 38 40 40 38 41 38 42 41 41 42 43 42 44 43 43 44 45 44 46 45 45 46 47 47 46 48 49 48 46</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8479\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8482\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID8485\">2.485091636025118 2.273736754432321e-013 53.71255841073446 2.318673281868087 0 53.54614005657749 2.439704812164109 2.273736754432321e-013 53.54614005657749 2.091739162563044 2.273736754432321e-013 53.65204264558651 1.42606574593583 0 53.90923464746544 2.424575870877561 0 54.22694241449233 1.07810009633431 0 53.96975041261345 0.8042592496926773 2.273736754432321e-013 54.13923535661661 0.7140835189834434 0 54.35565711031973 2.409446929590104 0 54.83210006597216 1.12889188024792 2.273736754432321e-013 54.71636003315825 1.579770533795909 0 55.13116839442256 2.469962694738115 2.273736754432321e-013 55.31622618715602 1.736393788111855 2.273736754432321e-013 55.54370432239455 2.485091636025572 2.273736754432321e-013 55.4977734826 2.424575870877106 2.273736754432321e-013 55.61880501289591 1.895062925832463 0 55.63393395418296 2.243028575433527 0 55.63393395418296 2.061481279989494 2.273736754432321e-013 55.63393395418296 0.8403295419766437 2.273736754432321e-013 53.92281360291349 1.07810009633431 0 53.96975041261345 0.8403295419766437 2.273736754432321e-013 53.92281360291349 0.8042592496926773 2.273736754432321e-013 54.13923535661661 2.061481279989494 2.273736754432321e-013 55.63393395418296 2.243028575433527 0 55.63393395418296 1.895062925832463 0 55.63393395418296 2.424575870877106 2.273736754432321e-013 55.61880501289591 1.736393788111855 2.273736754432321e-013 55.54370432239455 2.485091636025572 2.273736754432321e-013 55.4977734826 2.469962694738115 2.273736754432321e-013 55.31622618715602 1.579770533795909 0 55.13116839442256 2.409446929590104 0 54.83210006597216 1.12889188024792 2.273736754432321e-013 54.71636003315825 0.7140835189834434 0 54.35565711031973 2.424575870877561 0 54.22694241449233 1.42606574593583 0 53.90923464746544 2.485091636025118 2.273736754432321e-013 53.71255841073446 2.091739162563044 2.273736754432321e-013 53.65204264558651 2.318673281868087 0 53.54614005657749 2.439704812164109 2.273736754432321e-013 53.54614005657749</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID8485\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8483\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID8486\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID8486\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8484\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8482\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8483\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"36\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8484\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 7 5 8 8 5 9 8 9 10 10 9 11 11 9 12 11 12 13 13 12 14 13 14 15 13 15 16 16 15 17 16 17 18 7 19 6 20 21 22 23 24 25 24 26 25 25 26 27 26 28 27 28 29 27 27 29 30 29 31 30 30 31 32 32 31 33 31 34 33 33 34 22 22 34 20 20 34 35 34 36 35 35 36 37 37 36 38 39 38 36</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8487\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8488\">\r\n\t\t\t\t\t<float_array count=\"252\" id=\"ID8493\">-7.718142177438494 2.273736754432321e-013 51.16988095858653 -9.334840403088947 0 51.01270196442607 -9.177661408928088 0 50.99024782240315 -9.312386261065967 0 51.10251853251782 -9.289932119043442 2.273736754432321e-013 51.19233510060951 -7.156788626866273 0 51.16988095858659 -6.078989809765972 2.273736754432321e-013 50.99024782240321 -6.595435076292688 2.273736754432321e-013 50.87797711228853 -5.472727975146427 2.273736754432321e-013 51.32705995274699 -9.200115550951068 0 51.46178480488453 -4.299687108471062 2.273736754432321e-013 52.94891571124947 -9.110298982860059 2.273736754432321e-013 52.2027714916411 -8.21213330194314 0 53.21320788267269 -4.335757400755028 -2.273736754432321e-013 53.74246214149423 -6.275030803738446 0 55.00769788844053 -4.389862839180296 2.273736754432321e-013 54.08512991819083 -5.1710186288351 2.273736754432321e-013 55.11503240544499 -3.837003917494712 0 55.29903443459563 -3.576334376198247 2.273736754432321e-013 55.39103544917083 -4.542345029237822 4.547473508864641e-013 55.26836742973711 -4.281675487941357 0 55.40636895160003 -4.097673458791178 2.273736754432321e-013 55.40636895160003 -5.738358218715803 2.273736754432321e-013 55.11503240544505 -5.1710186288351 2.273736754432321e-013 55.11503240544499 -6.275030803738446 0 55.00769788844053 -5.738358218715803 2.273736754432321e-013 55.11503240544505 -4.097673458791178 2.273736754432321e-013 55.40636895160003 -3.837003917494712 0 55.29903443459563 -4.281675487941357 0 55.40636895160003 -4.542345029237822 4.547473508864641e-013 55.26836742973711 -3.576334376198247 2.273736754432321e-013 55.39103544917083 -4.389862839180296 2.273736754432321e-013 54.08512991819083 -4.335757400755028 -2.273736754432321e-013 53.74246214149423 -8.21213330194314 0 53.21320788267269 -4.299687108471062 2.273736754432321e-013 52.94891571124947 -9.110298982860059 2.273736754432321e-013 52.2027714916411 -9.200115550951068 0 51.46178480488453 -5.472727975146427 2.273736754432321e-013 51.32705995274699 -9.289932119043442 2.273736754432321e-013 51.19233510060951 -7.156788626866273 0 51.16988095858659 -6.078989809765972 2.273736754432321e-013 50.99024782240321 -6.595435076292688 2.273736754432321e-013 50.87797711228853 -7.718142177438494 2.273736754432321e-013 51.16988095858653 -9.312386261065967 0 51.10251853251782 -9.334840403088947 0 51.01270196442607 -9.177661408928088 0 50.99024782240315 -10.95279646931158 2.273736754432321e-013 33.90562349439028 -11.14218871363528 0 35.18901107163953 -11.03976821798324 2.273736754432321e-013 33.6080885647234 -10.74428680548454 0 34.6189460285363 -10.68437174839664 0 34.82391859225794 -10.49719767601528 0 35.46425094514046 -11.14218871363528 0 35.65799839305561 -10.41594702748125 2.273736754432321e-013 35.74221369012565 -11.09007901125551 2.273736754432321e-013 37.84660589299762 -9.285737676259487 2.273736754432321e-013 39.98049875720699 -10.36054317794196 0 42.32804029764054 -8.494591130404842 0 41.90185465428391 -8.09901785747752 0 43.65367914867755 -10.20421407080357 0 43.47445374999114 -10.04788496366473 2.273736754432321e-013 44.62086720234163 -7.307871311621966 -2.273736754432321e-013 47.60941187795351 -9.94366555890565 0 46.96580380942226 -6.742766636011311 0 49.53076777503043 -6.573235233327978 0 50.26540385332453 -6.573235233327978 0 50.26540385332453 -6.742766636011311 0 49.53076777503043 -7.307871311621966 -2.273736754432321e-013 47.60941187795351 -9.94366555890565 0 46.96580380942226 -10.04788496366473 2.273736754432321e-013 44.62086720234163 -8.09901785747752 0 43.65367914867755 -10.20421407080357 0 43.47445374999114 -10.36054317794196 0 42.32804029764054 -8.494591130404842 0 41.90185465428391 -9.285737676259487 2.273736754432321e-013 39.98049875720699 -11.09007901125551 2.273736754432321e-013 37.84660589299762 -10.41594702748125 2.273736754432321e-013 35.74221369012565 -11.14218871363528 0 35.65799839305561 -10.49719767601528 0 35.46425094514046 -11.14218871363528 0 35.18901107163953 -10.68437174839664 0 34.82391859225794 -10.74428680548454 0 34.6189460285363 -10.95279646931158 2.273736754432321e-013 33.90562349439028 -11.03976821798324 2.273736754432321e-013 33.6080885647234</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"84\" source=\"#ID8493\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8489\">\r\n\t\t\t\t\t<float_array count=\"252\" id=\"ID8494\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"84\" source=\"#ID8494\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8490\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8488\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8489\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"43\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8490\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 6 5 7 5 6 8 5 8 4 4 8 9 9 8 10 9 10 11 11 10 12 12 10 13 12 13 14 14 13 15 14 15 16 16 15 17 17 15 18 16 17 19 17 20 19 20 17 21 22 14 16 5 2 7 2 5 0 46 47 48 47 46 49 47 49 50 47 50 51 47 51 52 52 51 53 52 53 54 54 53 55 54 55 56 56 55 57 56 57 58 56 58 59 59 58 60 60 58 61 60 61 62 62 61 1 1 61 63 1 63 64 1 64 2 2 64 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"43\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8490\" />\r\n\t\t\t\t\t<p>23 24 25 26 27 28 29 28 27 29 27 23 30 31 27 27 31 23 23 31 24 31 32 24 24 32 33 32 34 33 33 34 35 35 34 36 34 37 36 36 37 38 38 37 39 37 40 39 41 39 40 39 42 38 38 42 43 43 42 44 45 44 42 41 65 45 45 65 44 65 66 44 66 67 44 44 67 68 68 67 69 67 70 69 69 70 71 71 70 72 70 73 72 73 74 72 72 74 75 74 76 75 75 76 77 76 78 77 77 78 79 78 80 79 80 81 79 81 82 79 83 79 82 42 39 45 41 45 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8495\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8496\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID8499\">-2.62565722558702 0 55.62103798560895 -3.392332347047613 2.273736754432321e-013 55.26836742973717 -2.410995319539325 0 54.36867695271275 -3.376998844617901 0 55.32970143945397 -3.315664834901327 0 55.46770296131689 -3.192996815467723 0 55.52903697103369 -3.830773308780863 2.273736754432321e-013 52.0471584041531 -4.173441085477862 0 51.84877179659196 -4.047195062484207 0 51.79466635816613 -4.245581670044885 0 52.20947471943049 -3.343824362948908 0 52.6964236652625 -4.299687108471062 2.273736754432321e-013 52.94891571124947 -3.055262024678086 0 52.9669508573914 -4.335757400755028 -2.273736754432321e-013 53.74246214149423 -2.676523955698031 -2.273736754432321e-013 53.11123202652675 -2.335734739157942 0 53.11486170051194 -2.06284845799064 2.273736754432321e-013 53.53569185503687 -4.389862839180296 2.273736754432321e-013 54.08512991819083 -3.576334376198247 2.273736754432321e-013 55.39103544917083 -3.4689998591939 0 55.29903443459557 -3.392332347047613 2.273736754432321e-013 55.26836742973717 -2.410995319539325 0 54.36867695271275 -3.4689998591939 0 55.29903443459557 -3.576334376198247 2.273736754432321e-013 55.39103544917083 -4.389862839180296 2.273736754432321e-013 54.08512991819083 -4.335757400755028 -2.273736754432321e-013 53.74246214149423 -2.06284845799064 2.273736754432321e-013 53.53569185503687 -2.335734739157942 0 53.11486170051194 -2.676523955698031 -2.273736754432321e-013 53.11123202652675 -3.055262024678086 0 52.9669508573914 -4.299687108471062 2.273736754432321e-013 52.94891571124947 -3.343824362948908 0 52.6964236652625 -4.245581670044885 0 52.20947471943049 -3.830773308780863 2.273736754432321e-013 52.0471584041531 -4.173441085477862 0 51.84877179659196 -4.047195062484207 0 51.79466635816613 -3.192996815467723 0 55.52903697103369 -2.62565722558702 0 55.62103798560895 -3.315664834901327 0 55.46770296131689 -3.376998844617901 0 55.32970143945397</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID8499\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8497\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID8500\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID8500\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8498\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8496\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8497\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"36\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8498\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 6 7 8 7 6 9 9 6 10 9 10 11 11 10 12 11 12 13 13 12 14 13 14 15 13 15 16 13 16 2 13 2 17 17 2 18 18 2 19 19 2 1 20 21 22 22 21 23 23 21 24 24 21 25 21 26 25 26 27 25 27 28 25 28 29 25 25 29 30 29 31 30 30 31 32 31 33 32 32 33 34 35 34 33 36 37 38 38 37 39 39 37 20 21 20 37</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8501\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8502\">\r\n\t\t\t\t\t<float_array count=\"498\" id=\"ID8505\">0.770528710922008 2.273736754432321e-013 57.33527503700549 -0.4923402234476271 0 57.28761960551987 0.4925386939225973 2.273736754432321e-013 57.28761960551987 -0.9530093944754299 0 57.49412647529101 1.048518727921874 2.273736754432321e-013 57.38293046849117 1.25502559769302 0 57.49412647529107 -1.191286551903886 0 57.62120762591945 1.382106748321348 2.273736754432321e-013 57.68474820123367 -1.397793421675033 0 57.81182935186212 1.413877035978658 2.273736754432321e-013 58.16130251609025 -1.582979060401158 0 58.05906487185337 -1.214975002100346 2.273736754432321e-013 58.42706893015441 1.540958186606986 2.273736754432321e-013 58.59020139946125 -1.076973480237484 0 58.70307197388019 1.874546207006006 2.273736754432321e-013 59.49565459768883 -1.01563947052091 -2.273736754432321e-013 58.85640699817225 -1.046306475379424 0 58.97907501760597 -1.168974494812574 2.273736754432321e-013 58.97907501760597 -1.291642514246178 0 59.04040902732282 -1.383643528821267 0 59.14774354432728 -1.33764302153395 2.273736754432321e-013 59.270411563761 -1.291642514246178 0 59.39307958319466 -1.291642514246632 2.273736754432321e-013 59.45441359291152 -1.874315606555683 0 59.48508059776992 -2.027650630847802 2.273736754432321e-013 59.63841562206198 1.985742213806134 0 60.00397920020254 -2.242319664857405 0 60.63509327996064 1.938086782321079 2.273736754432321e-013 60.46464837123062 1.795120487863642 2.273736754432321e-013 60.9412026860872 -2.211652659998435 2.273736754432321e-013 61.171765864983 1.763350200206332 0 61.33833128180106 -2.165652152710663 2.273736754432321e-013 61.49376941599644 -2.190417460696153 0 61.61373148943096 -1.352976523963207 2.273736754432321e-013 59.42374658805306 -1.766981089551337 0 59.39307958319461 -1.62897956768893 2.273736754432321e-013 59.37774608076546 1.83283052841216 0 62.17962784304802 -2.134985147852603 0 61.5551034257133 -1.111452490276861 0 62.53855860693307 1.762353247472674 0 62.47219635088447 1.552702118780417 2.273736754432321e-013 62.85298451626568 1.479112232806983 0 62.84967760319159 -0.4640735080256491 2.273736754432321e-013 62.78517917160031 0.2757881859747613 2.273736754432321e-013 62.87766188335047 1.479112232806983 0 62.84967760319159 -0.4640735080256491 2.273736754432321e-013 62.78517917160031 0.2757881859747613 2.273736754432321e-013 62.87766188335047 -1.111452490276861 0 62.53855860693307 1.552702118780417 2.273736754432321e-013 62.85298451626568 1.762353247472674 0 62.47219635088447 1.83283052841216 0 62.17962784304802 -2.190417460696153 0 61.61373148943096 -2.134985147852603 0 61.5551034257133 -2.165652152710663 2.273736754432321e-013 61.49376941599644 1.763350200206332 0 61.33833128180106 -1.291642514246632 2.273736754432321e-013 59.45441359291152 -1.352976523963207 2.273736754432321e-013 59.42374658805306 -1.874315606555683 0 59.48508059776992 -1.766981089551337 0 59.39307958319461 -1.62897956768893 2.273736754432321e-013 59.37774608076546 -2.211652659998435 2.273736754432321e-013 61.171765864983 1.795120487863642 2.273736754432321e-013 60.9412026860872 -2.242319664857405 0 60.63509327996064 1.938086782321079 2.273736754432321e-013 60.46464837123062 1.985742213806134 0 60.00397920020254 -2.027650630847802 2.273736754432321e-013 59.63841562206198 1.874546207006006 2.273736754432321e-013 59.49565459768883 -1.291642514246178 0 59.39307958319466 -1.33764302153395 2.273736754432321e-013 59.270411563761 -1.383643528821267 0 59.14774354432728 -1.291642514246178 0 59.04040902732282 -1.168974494812574 2.273736754432321e-013 58.97907501760597 -1.046306475379424 0 58.97907501760597 -1.01563947052091 -2.273736754432321e-013 58.85640699817225 -1.076973480237484 0 58.70307197388019 1.540958186606986 2.273736754432321e-013 58.59020139946125 -1.214975002100346 2.273736754432321e-013 58.42706893015441 1.413877035978658 2.273736754432321e-013 58.16130251609025 -1.582979060401158 0 58.05906487185337 -1.397793421675033 0 57.81182935186212 1.382106748321348 2.273736754432321e-013 57.68474820123367 -1.191286551903886 0 57.62120762591945 1.25502559769302 0 57.49412647529107 -0.9530093944754299 0 57.49412647529101 1.048518727921874 2.273736754432321e-013 57.38293046849117 0.770528710922008 2.273736754432321e-013 57.33527503700549 -0.4923402234476271 0 57.28761960551987 0.4925386939225973 2.273736754432321e-013 57.28761960551987 -0.3139198111061887 0 52.17340442714664 -0.6385524416605222 2.273736754432321e-013 52.06519355029502 -0.5664118570930441 0 52.06519355029502 -0.83693904922211 2.273736754432321e-013 52.06519355029508 -1.251747410486587 0 52.11929898872086 -2.189575009866076 2.273736754432321e-013 52.60624793455287 -0.09749805740284501 0 52.38982618084975 0.3173103038607223 0 52.89481027282363 -2.335734739157942 0 53.11486170051194 0.6599780805577211 2.273736754432321e-013 53.45389980322341 -2.06284845799064 2.273736754432321e-013 53.53569185503687 0.8403295419766437 2.273736754432321e-013 53.92281360291349 -2.410995319539325 0 54.36867695271275 0.8042592496926773 2.273736754432321e-013 54.13923535661661 0.7140835189834434 0 54.35565711031973 1.12889188024792 2.273736754432321e-013 54.71636003315825 -2.62565722558702 0 55.62103798560895 1.579770533795909 0 55.13116839442256 1.324773780928354 0 55.54370432239455 1.736393788111855 2.273736754432321e-013 55.54370432239455 1.023974544910288 2.273736754432321e-013 55.65452509355936 -2.380321186720266 2.273736754432321e-013 55.75903950747187 0.7390068476288434 2.273736754432321e-013 55.92366125210242 -2.579656718299702 2.273736754432321e-013 55.88170752690553 -2.794325752308851 0 56.09637656091445 0.6440176152023014 0 56.19279741064548 -2.85565976202497 0 56.20371107791891 0.6440176152023014 0 56.79439588268298 -2.840326259596168 2.273736754432321e-013 56.35704610221109 -2.870993264454683 2.273736754432321e-013 56.9550526969503 -2.916993771742455 2.273736754432321e-013 57.23105574067603 -2.870993264454683 2.273736754432321e-013 57.35372376010969 -1.536978553113841 0 57.44572477468495 -1.59831256282996 4.547473508864641e-013 57.56839279411867 -1.659646572547445 0 57.82906233541519 -2.640990728016732 0 57.53772578926021 -1.904982611414653 2.273736754432321e-013 57.47639177954341 -1.659646572547445 2.273736754432321e-013 57.47639177954341 -2.441655196436386 2.273736754432321e-013 57.58372629654787 -2.441655196436386 2.273736754432321e-013 57.58372629654787 -1.904982611414653 2.273736754432321e-013 57.47639177954341 -2.640990728016732 0 57.53772578926021 -1.659646572547445 2.273736754432321e-013 57.47639177954341 -1.536978553113841 0 57.44572477468495 -2.870993264454683 2.273736754432321e-013 57.35372376010969 -1.659646572547445 0 57.82906233541519 -1.59831256282996 4.547473508864641e-013 57.56839279411867 -2.916993771742455 2.273736754432321e-013 57.23105574067603 -2.870993264454683 2.273736754432321e-013 56.9550526969503 0.6440176152023014 0 56.79439588268298 -2.840326259596168 2.273736754432321e-013 56.35704610221109 -2.85565976202497 0 56.20371107791891 0.6440176152023014 0 56.19279741064548 -2.794325752308851 0 56.09637656091445 0.7390068476288434 2.273736754432321e-013 55.92366125210242 -2.579656718299702 2.273736754432321e-013 55.88170752690553 -2.380321186720266 2.273736754432321e-013 55.75903950747187 1.023974544910288 2.273736754432321e-013 55.65452509355936 -2.62565722558702 0 55.62103798560895 1.324773780928354 0 55.54370432239455 1.736393788111855 2.273736754432321e-013 55.54370432239455 1.579770533795909 0 55.13116839442256 1.12889188024792 2.273736754432321e-013 54.71636003315825 -2.410995319539325 0 54.36867695271275 0.7140835189834434 0 54.35565711031973 0.8042592496926773 2.273736754432321e-013 54.13923535661661 0.8403295419766437 2.273736754432321e-013 53.92281360291349 -2.06284845799064 2.273736754432321e-013 53.53569185503687 0.6599780805577211 2.273736754432321e-013 53.45389980322341 -2.335734739157942 0 53.11486170051194 0.3173103038607223 0 52.89481027282363 -2.189575009866076 2.273736754432321e-013 52.60624793455287 -0.09749805740284501 0 52.38982618084975 -0.3139198111061887 0 52.17340442714664 -1.251747410486587 0 52.11929898872086 -0.83693904922211 2.273736754432321e-013 52.06519355029508 -0.6385524416605222 2.273736754432321e-013 52.06519355029502 -0.5664118570930441 0 52.06519355029502</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"166\" source=\"#ID8505\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8503\">\r\n\t\t\t\t\t<float_array count=\"498\" id=\"ID8506\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"166\" source=\"#ID8506\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8504\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8502\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8503\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"174\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8504\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 3 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 11 9 12 11 12 13 13 12 14 13 14 15 15 14 16 16 14 17 17 14 18 18 14 19 19 14 20 20 14 21 21 14 22 22 14 23 23 14 24 24 14 25 24 25 26 26 25 27 26 27 28 26 28 29 29 28 30 29 30 31 29 31 32 33 34 35 34 33 23 23 33 22 36 31 30 31 36 37 37 36 32 32 36 38 38 36 39 38 39 40 38 40 41 38 41 42 43 42 41 44 45 46 45 44 47 44 48 47 48 49 47 49 50 47 47 50 51 51 50 52 52 50 53 54 53 50 55 56 57 57 56 58 59 58 56 51 53 60 53 54 60 54 61 60 60 61 62 61 63 62 63 64 62 62 64 65 64 66 65 65 66 57 57 66 55 55 66 67 67 66 68 68 66 69 69 66 70 70 66 71 71 66 72 72 66 73 73 66 74 66 75 74 74 75 76 75 77 76 76 77 78 78 77 79 77 80 79 79 80 81 80 82 81 81 82 83 82 84 83 84 85 83 83 85 86 87 86 85 88 89 90 89 88 91 91 88 92 92 88 93 93 88 94 93 94 95 93 95 96 96 95 97 96 97 98 98 97 99 98 99 100 100 99 101 100 101 102 100 102 103 100 103 104 104 103 105 104 105 106 106 105 107 104 106 108 104 108 109 109 108 110 109 110 111 111 110 112 112 110 113 112 113 114 114 113 115 114 115 116 116 115 117 117 115 2 2 115 0 117 2 118 118 1 119 1 118 2 119 1 120 120 1 3 120 3 121 121 3 6 121 6 122 122 6 8 122 8 10 120 123 119 123 120 124 124 120 125 123 124 126 127 128 129 130 131 128 128 131 129 132 129 131 78 79 133 79 81 133 133 81 134 81 83 134 134 83 131 83 86 131 131 86 132 87 135 86 132 86 135 135 87 136 85 137 87 87 137 136 136 137 138 138 137 139 137 140 139 139 140 141 140 142 141 141 142 143 143 142 144 142 145 144 144 145 146 145 147 146 148 149 147 147 149 146 149 150 146 146 150 151 150 152 151 152 153 151 153 154 151 151 154 155 154 156 155 155 156 157 156 158 157 157 158 159 158 160 159 160 161 159 159 161 162 162 161 163 163 161 164 165 164 161</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8507\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8510\">\r\n\t\t\t\t\t<float_array count=\"402\" id=\"ID8515\">3.526584844728859 2.273736754432321e-013 38.29895319381001 2.513647864013819 2.273736754432321e-013 37.37577286164827 3.703628729350385 2.273736754432321e-013 37.37577286164827 -2.507272855150859 2.273736754432321e-013 37.90517176277552 -4.63535596886959 0 38.28216434961303 -4.566738284741859 2.273736754432321e-013 38.62525277025242 3.26451572408223 2.273736754432321e-013 39.30979123059115 -4.507239241474963 0 40.17222789519093 2.927569711821889 2.273736754432321e-013 41.36890574996028 -4.507239241474963 0 40.64822024132582 -4.090745938607142 2.273736754432321e-013 41.36220876052823 -3.912248808806453 0 42.07619727973059 2.777815928594919 0 43.31570493190924 -3.851114551035153 0 42.27827865519362 -3.461399068705305 2.273736754432321e-013 43.56649648230348 2.403431470527721 0 45.0753118848246 -3.047346169712455 0 44.34589017452583 -2.779429588011226 0 44.73558702063701 -2.633293270719605 0 44.9547914965745 -2.633293270719605 4.547473508864641e-013 45.14963991963003 1.916731675040865 2.273736754432321e-013 47.28418018742053 -4.804734457809445 0 45.88413604880998 -4.685736371275652 2.273736754432321e-013 48.79958916888637 1.729539446007038 2.273736754432321e-013 49.41817159840309 -4.389862839180296 0 50.1873835914061 1.766977891813895 0 50.50388652679766 -3.343824362948908 0 52.6964236652625 -1.251747410486587 0 52.11929898872086 2.06648545826738 0 51.62703990099902 -0.83693904922211 2.273736754432321e-013 52.06519355029508 -0.6385524416605222 2.273736754432321e-013 52.06519355029502 -0.5664118570930441 0 52.06519355029502 -2.189575009866076 2.273736754432321e-013 52.60624793455287 -2.335734739157942 0 53.11486170051194 -3.055262024678086 0 52.9669508573914 -2.676523955698031 -2.273736754432321e-013 53.11123202652675 -4.269243068407832 0 42.79018579893301 -3.76569536461875 2.273736754432321e-013 43.35838947702797 -4.507239241475418 0 44.27766188060463 -3.802383809052572 0 43.61520858806739 -3.802383809053026 0 44.41895833317165 -4.745235414542549 0 44.99165039980704 -3.729315650406988 0 44.80865517928288 -3.339618804295697 2.273736754432321e-013 44.90607939081065 -0.3139198111061887 0 52.17340442714664 2.439704812164109 2.273736754432321e-013 53.54614005657749 2.485091636025118 2.273736754432321e-013 53.71255841073446 -0.09749805740284501 0 52.38982618084975 0.3173103038607223 0 52.89481027282363 0.6599780805577211 2.273736754432321e-013 53.45389980322341 2.318673281868087 0 53.54614005657749 0.8403295419766437 2.273736754432321e-013 53.92281360291349 2.091739162563044 2.273736754432321e-013 53.65204264558651 1.42606574593583 0 53.90923464746544 1.07810009633431 0 53.96975041261345 -3.537296932644949 2.273736754432321e-013 37.78892970417206 -2.662768900202991 0 36.18579199631097 -4.507239241474963 2.273736754432321e-013 36.06679390977723 -4.269243068408287 2.273736754432321e-013 36.06679390977723 -4.617813718194157 2.273736754432321e-013 36.12208114813689 -4.98323158760968 0 36.3047900828447 -0.7587995156632132 0 36.54278625591212 -4.864233501075887 0 37.1377766885808 0.8476746525416274 2.273736754432321e-013 37.1377766885808 -3.198308323695528 0 37.27348034783284 -4.280576843533709 0 37.48858303812881 -4.66784237264983 2.273736754432321e-013 38.11973233071393 -3.198308323695528 0 37.27348034783284 -4.864233501075887 0 37.1377766885808 -4.280576843533709 0 37.48858303812881 -4.66784237264983 2.273736754432321e-013 38.11973233071393 -2.507272855150859 2.273736754432321e-013 37.90517176277552 2.513647864013819 2.273736754432321e-013 37.37577286164827 0.8476746525416274 2.273736754432321e-013 37.1377766885808 -0.7587995156632132 0 36.54278625591212 -4.98323158760968 0 36.3047900828447 -2.662768900202991 0 36.18579199631097 -4.617813718194157 2.273736754432321e-013 36.12208114813689 -4.507239241474963 2.273736754432321e-013 36.06679390977723 -4.269243068408287 2.273736754432321e-013 36.06679390977723 -3.537296932644949 2.273736754432321e-013 37.78892970417206 -4.63535596886959 0 38.28216434961303 1.07810009633431 0 53.96975041261345 1.42606574593583 0 53.90923464746544 0.8403295419766437 2.273736754432321e-013 53.92281360291349 2.091739162563044 2.273736754432321e-013 53.65204264558651 2.318673281868087 0 53.54614005657749 2.439704812164109 2.273736754432321e-013 53.54614005657749 0.6599780805577211 2.273736754432321e-013 53.45389980322341 0.3173103038607223 0 52.89481027282363 -0.09749805740284501 0 52.38982618084975 -0.3139198111061887 0 52.17340442714664 2.485091636025118 2.273736754432321e-013 53.71255841073446 2.06648545826738 0 51.62703990099902 -0.5664118570930441 0 52.06519355029502 -4.804734457809445 0 45.88413604880998 -2.633293270719605 4.547473508864641e-013 45.14963991963003 -4.745235414542549 0 44.99165039980704 -3.339618804295697 2.273736754432321e-013 44.90607939081065 -3.729315650406988 0 44.80865517928288 -3.802383809053026 0 44.41895833317165 -4.507239241475418 0 44.27766188060463 -3.802383809052572 0 43.61520858806739 -3.76569536461875 2.273736754432321e-013 43.35838947702797 -4.269243068407832 0 42.79018579893301 -3.851114551035153 0 42.27827865519362 -3.912248808806453 0 42.07619727973059 -2.676523955698031 -2.273736754432321e-013 53.11123202652675 -2.335734739157942 0 53.11486170051194 -3.055262024678086 0 52.9669508573914 -3.343824362948908 0 52.6964236652625 -2.189575009866076 2.273736754432321e-013 52.60624793455287 -1.251747410486587 0 52.11929898872086 -0.6385524416605222 2.273736754432321e-013 52.06519355029502 -0.83693904922211 2.273736754432321e-013 52.06519355029508 1.766977891813895 0 50.50388652679766 -4.389862839180296 0 50.1873835914061 1.729539446007038 2.273736754432321e-013 49.41817159840309 -4.685736371275652 2.273736754432321e-013 48.79958916888637 1.916731675040865 2.273736754432321e-013 47.28418018742053 2.403431470527721 0 45.0753118848246 -2.633293270719605 0 44.9547914965745 -2.779429588011226 0 44.73558702063701 -3.047346169712455 0 44.34589017452583 -3.461399068705305 2.273736754432321e-013 43.56649648230348 2.777815928594919 0 43.31570493190924 2.927569711821889 2.273736754432321e-013 41.36890574996028 -4.090745938607142 2.273736754432321e-013 41.36220876052823 -4.507239241474963 0 40.64822024132582 -4.507239241474963 0 40.17222789519093 3.26451572408223 2.273736754432321e-013 39.30979123059115 -4.566738284741859 2.273736754432321e-013 38.62525277025242 3.526584844728859 2.273736754432321e-013 38.29895319381001 3.703628729350385 2.273736754432321e-013 37.37577286164827</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"134\" source=\"#ID8515\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8511\">\r\n\t\t\t\t\t<float_array count=\"402\" id=\"ID8516\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"134\" source=\"#ID8516\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8512\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8510\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8511\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"67\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8512\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7 7 6 8 7 8 9 9 8 10 10 8 11 11 8 12 11 12 13 13 12 14 14 12 15 14 15 16 16 15 17 17 15 18 18 15 19 19 15 20 19 20 21 21 20 22 22 20 23 22 23 24 24 23 25 24 25 26 26 25 27 27 25 28 27 28 29 29 28 30 30 28 31 26 27 32 26 32 33 26 33 34 34 33 35 13 36 11 36 13 37 36 37 38 38 37 39 38 39 40 38 40 41 41 40 42 41 42 43 41 43 19 41 19 21 28 44 31 44 28 45 45 28 46 44 45 47 47 45 48 48 45 49 49 50 51 50 49 45 51 50 52 51 52 53 51 53 54 4 55 3 56 57 58 57 56 59 59 56 60 60 56 61 60 61 62 62 61 63 62 63 1 62 1 64 64 1 3 62 65 66 65 62 64</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"67\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8512\" />\r\n\t\t\t\t\t<p>67 68 69 70 69 68 71 72 67 67 72 68 72 73 68 73 74 68 68 74 75 74 76 75 75 76 77 77 76 78 79 78 76 71 80 81 82 83 84 83 85 84 85 86 84 87 88 86 84 86 88 88 87 89 89 87 90 90 87 91 92 93 87 87 93 91 94 91 93 95 96 97 96 98 97 98 99 97 99 100 97 97 100 101 100 102 101 102 103 101 101 103 104 103 105 104 106 104 105 107 108 109 109 108 110 108 111 110 111 112 110 94 93 113 113 93 114 114 93 112 93 115 112 112 115 110 110 115 116 115 117 116 116 117 118 117 119 118 118 119 95 95 119 96 119 120 96 96 120 121 121 120 122 122 120 123 123 120 124 120 125 124 124 125 105 105 125 106 125 126 106 106 126 127 127 126 128 128 126 129 126 130 129 129 130 131 130 132 131 131 132 81 81 132 71 71 132 72 133 72 132</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8517\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8520\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID8523\">3.646795554949222 0 56.51608530142346 2.34080683743332 0 56.49394989943164 3.248358319096951 2.273736754432321e-013 56.49394989943164 1.189765933860599 2.273736754432321e-013 55.89629404565318 0.7390068476288434 2.273736754432321e-013 55.92366125210242 1.023974544910288 2.273736754432321e-013 55.65452509355936 1.256172139836053 2.273736754432321e-013 56.07337726158755 0.6440176152023014 0 56.19279741064548 1.543932365729233 0 56.3611374874809 0.6440176152023014 0 56.79439588268298 3.624660152957404 0 56.89238713528391 0.770528710922008 2.273736754432321e-013 57.33527503700549 3.049139701170589 2.273736754432321e-013 57.64499080300493 1.048518727921874 2.273736754432321e-013 57.38293046849117 1.25502559769302 0 57.49412647529107 1.382106748321348 2.273736754432321e-013 57.68474820123367 2.894191887227862 0 57.79993861694749 1.413877035978658 2.273736754432321e-013 58.16130251609025 2.849921083245135 2.273736754432321e-013 57.95488643089004 3.093410505154225 0 58.28691746076697 1.540958186606986 2.273736754432321e-013 58.59020139946125 2.894191887228317 0 58.39759447072595 3.071275103162861 0 58.37545906873413 2.982733495195589 2.273736754432321e-013 58.39759447072595 2.717108671293772 2.273736754432321e-013 58.46400067670135 2.318671435441502 2.273736754432321e-013 58.75176090259458 1.874546207006006 2.273736754432321e-013 59.49565459768883 2.16372362149923 0 59.10592733446333 2.16372362149923 0 59.10592733446333 2.318671435441502 2.273736754432321e-013 58.75176090259458 1.874546207006006 2.273736754432321e-013 59.49565459768883 1.540958186606986 2.273736754432321e-013 58.59020139946125 2.717108671293772 2.273736754432321e-013 58.46400067670135 2.894191887228317 0 58.39759447072595 2.982733495195589 2.273736754432321e-013 58.39759447072595 3.071275103162861 0 58.37545906873413 3.093410505154225 0 58.28691746076697 1.413877035978658 2.273736754432321e-013 58.16130251609025 2.849921083245135 2.273736754432321e-013 57.95488643089004 2.894191887227862 0 57.79993861694749 1.382106748321348 2.273736754432321e-013 57.68474820123367 3.049139701170589 2.273736754432321e-013 57.64499080300493 1.25502559769302 0 57.49412647529107 1.048518727921874 2.273736754432321e-013 57.38293046849117 0.770528710922008 2.273736754432321e-013 57.33527503700549 3.624660152957404 0 56.89238713528391 0.6440176152023014 0 56.79439588268298 3.646795554949222 0 56.51608530142346 2.34080683743332 0 56.49394989943164 1.543932365729233 0 56.3611374874809 0.6440176152023014 0 56.19279741064548 1.256172139836053 2.273736754432321e-013 56.07337726158755 0.7390068476288434 2.273736754432321e-013 55.92366125210242 1.189765933860599 2.273736754432321e-013 55.89629404565318 1.023974544910288 2.273736754432321e-013 55.65452509355936 3.248358319096951 2.273736754432321e-013 56.49394989943164</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID8523\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8521\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID8524\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID8524\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8522\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8520\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8521\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"52\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8522\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 4 6 7 7 6 8 7 8 9 9 8 1 9 1 0 9 0 10 9 10 11 11 10 12 11 12 13 13 12 14 14 12 15 15 12 16 15 16 17 17 16 18 17 18 19 17 19 20 20 19 21 21 19 22 21 22 23 20 21 24 20 24 25 20 25 26 26 25 27 28 29 30 30 29 31 29 32 31 32 33 31 34 35 33 35 36 33 33 36 31 31 36 37 36 38 37 38 39 37 37 39 40 39 41 40 40 41 42 42 41 43 43 41 44 41 45 44 44 45 46 45 47 46 47 48 46 48 49 46 46 49 50 49 51 50 50 51 52 51 53 52 54 52 53 55 48 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8525\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8528\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID8533\">-2.190417460696153 0 61.61373148943096 -2.134985147852603 0 61.5551034257133 -2.165652152710663 2.273736754432321e-013 61.49376941599644 -2.165652152710663 2.273736754432321e-013 61.49376941599644 -2.134985147852603 0 61.5551034257133 -2.190417460696153 0 61.61373148943096</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID8533\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8529\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID8534\">2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID8534\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8530\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8528\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8529\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8530\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8530\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8535\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8536\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8539\">-9.484120585876099 2.273736754432321e-013 27.70081380075561 -9.993985321437776 0 27.76454689270071 -9.739052953656483 0 27.63708070881035 -9.101722034205523 2.273736754432321e-013 27.79641343867331 -10.47198351102634 0 27.95574616853628 -8.751190028507153 2.273736754432321e-013 28.01947926048143 -10.98184824658756 2.273736754432321e-013 28.14694544437174 -8.432524568780991 2.273736754432321e-013 28.33814472020731 -11.38160252032048 0 28.46484149125973 -8.21636642117528 2.273736754432321e-013 28.89843547744408 -8.21636642117528 2.273736754432321e-013 28.89843547744408 -8.432524568780991 2.273736754432321e-013 28.33814472020731 -11.38160252032048 0 28.46484149125973 -10.98184824658756 2.273736754432321e-013 28.14694544437174 -8.751190028507153 2.273736754432321e-013 28.01947926048143 -10.47198351102634 0 27.95574616853628 -9.101722034205523 2.273736754432321e-013 27.79641343867331 -9.993985321437776 0 27.76454689270071 -9.484120585876099 2.273736754432321e-013 27.70081380075561 -9.739052953656483 0 27.63708070881035</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8539\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8537\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8540\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8540\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8538\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8536\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8537\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8538\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 8 7 9 10 11 12 12 11 13 11 14 13 13 14 15 14 16 15 15 16 17 16 18 17 19 17 18</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8541\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8544\">\r\n\t\t\t\t\t<float_array count=\"324\" id=\"ID8547\">-5.386515414546011 -2.273736754432321e-013 29.07397851791751 -7.759955052110854 0 28.96095758279535 -6.064641025278434 2.273736754432321e-013 28.96095758279535 -11.38160252032048 0 28.46484149125973 -11.82870871650857 2.273736754432321e-013 30.20418786913922 -11.88521918406968 0 28.39585290718446 -8.21636642117528 2.273736754432321e-013 28.89843547744408 -4.990942141618234 0 29.3000203881619 -5.033093547497629 2.273736754432321e-013 30.89612000960398 -4.827460729723498 0 30.99893641849116 -11.48964591114191 2.273736754432321e-013 32.06903329865503 -5.161614058606574 -2.273736754432321e-013 31.05034462293475 -5.161614058606574 2.273736754432321e-013 31.61583487181412 -5.135909956384694 0 33.8006835606663 -11.03976821798324 2.273736754432321e-013 33.6080885647234 -10.95279646931158 2.273736754432321e-013 33.90562349439028 -4.853164831945378 2.273736754432321e-013 35.08588867175587 -10.74428680548454 0 34.6189460285363 -10.68437174839664 0 34.82391859225794 -10.49719767601528 0 35.46425094514046 -4.750348423058313 0 35.59997071619165 -10.41594702748125 2.273736754432321e-013 35.74221369012565 -4.673236116392673 0 35.90841994285313 -9.285737676259487 2.273736754432321e-013 39.98049875720699 -4.98323158760968 0 36.3047900828447 -4.617813718194157 2.273736754432321e-013 36.12208114813689 -4.864233501075887 0 37.1377766885808 -4.66784237264983 2.273736754432321e-013 38.11973233071393 -4.63535596886959 0 38.28216434961303 -4.566738284741859 2.273736754432321e-013 38.62525277025242 -4.507239241474963 0 40.17222789519093 -8.494591130404842 0 41.90185465428391 -4.507239241474963 0 40.64822024132582 -4.090745938607142 2.273736754432321e-013 41.36220876052823 -3.912248808806453 0 42.07619727973059 -8.09901785747752 0 43.65367914867755 -4.269243068407832 0 42.79018579893301 -4.507239241475418 0 44.27766188060463 -7.307871311621966 -2.273736754432321e-013 47.60941187795351 -4.745235414542549 0 44.99165039980704 -4.804734457809445 0 45.88413604880998 -4.685736371275652 2.273736754432321e-013 48.79958916888637 -6.742766636011311 0 49.53076777503043 -4.389862839180296 0 50.1873835914061 -6.573235233327978 0 50.26540385332453 -4.047195062484207 0 51.79466635816613 -3.830773308780863 2.273736754432321e-013 52.0471584041531 -3.343824362948908 0 52.6964236652625 -6.078989809765972 2.273736754432321e-013 50.99024782240321 -6.595435076292688 2.273736754432321e-013 50.87797711228853 -5.472727975146427 2.273736754432321e-013 51.32705995274699 -4.245581670044885 0 52.20947471943049 -4.299687108471062 2.273736754432321e-013 52.94891571124947 -4.173441085477862 0 51.84877179659196 -4.047195062484207 0 51.79466635816613 -5.472727975146427 2.273736754432321e-013 51.32705995274699 -4.173441085477862 0 51.84877179659196 -4.245581670044885 0 52.20947471943049 -4.299687108471062 2.273736754432321e-013 52.94891571124947 -6.078989809765972 2.273736754432321e-013 50.99024782240321 -6.595435076292688 2.273736754432321e-013 50.87797711228853 -6.573235233327978 0 50.26540385332453 -3.343824362948908 0 52.6964236652625 -4.389862839180296 0 50.1873835914061 -3.830773308780863 2.273736754432321e-013 52.0471584041531 -6.742766636011311 0 49.53076777503043 -4.685736371275652 2.273736754432321e-013 48.79958916888637 -7.307871311621966 -2.273736754432321e-013 47.60941187795351 -4.804734457809445 0 45.88413604880998 -4.745235414542549 0 44.99165039980704 -4.507239241475418 0 44.27766188060463 -8.09901785747752 0 43.65367914867755 -4.269243068407832 0 42.79018579893301 -3.912248808806453 0 42.07619727973059 -8.494591130404842 0 41.90185465428391 -4.090745938607142 2.273736754432321e-013 41.36220876052823 -4.507239241474963 0 40.64822024132582 -4.507239241474963 0 40.17222789519093 -9.285737676259487 2.273736754432321e-013 39.98049875720699 -4.566738284741859 2.273736754432321e-013 38.62525277025242 -4.63535596886959 0 38.28216434961303 -4.66784237264983 2.273736754432321e-013 38.11973233071393 -4.864233501075887 0 37.1377766885808 -4.98323158760968 0 36.3047900828447 -4.617813718194157 2.273736754432321e-013 36.12208114813689 -4.673236116392673 0 35.90841994285313 -10.41594702748125 2.273736754432321e-013 35.74221369012565 -4.750348423058313 0 35.59997071619165 -10.49719767601528 0 35.46425094514046 -4.853164831945378 2.273736754432321e-013 35.08588867175587 -10.68437174839664 0 34.82391859225794 -10.74428680548454 0 34.6189460285363 -10.95279646931158 2.273736754432321e-013 33.90562349439028 -5.135909956384694 0 33.8006835606663 -11.03976821798324 2.273736754432321e-013 33.6080885647234 -11.48964591114191 2.273736754432321e-013 32.06903329865503 -5.161614058606574 2.273736754432321e-013 31.61583487181412 -5.161614058606574 -2.273736754432321e-013 31.05034462293475 -5.033093547497629 2.273736754432321e-013 30.89612000960398 -11.82870871650857 2.273736754432321e-013 30.20418786913922 -4.827460729723498 0 30.99893641849116 -4.990942141618234 0 29.3000203881619 -5.386515414546011 -2.273736754432321e-013 29.07397851791751 -7.759955052110854 0 28.96095758279535 -8.21636642117528 2.273736754432321e-013 28.89843547744408 -11.38160252032048 0 28.46484149125973 -11.88521918406968 0 28.39585290718446 -6.064641025278434 2.273736754432321e-013 28.96095758279535</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"108\" source=\"#ID8547\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8545\">\r\n\t\t\t\t\t<float_array count=\"324\" id=\"ID8548\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"108\" source=\"#ID8548\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8546\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8544\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8545\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"104\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8546\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 4 6 1 4 1 0 4 0 7 4 7 8 8 7 9 8 10 4 10 8 11 10 11 12 10 12 13 10 13 14 14 13 15 15 13 16 15 16 17 17 16 18 18 16 19 19 16 20 19 20 21 21 20 22 21 22 23 23 22 24 24 22 25 23 24 26 23 26 27 23 27 28 23 28 29 23 29 30 23 30 31 31 30 32 31 32 33 31 33 34 31 34 35 35 34 36 35 36 37 35 37 38 38 37 39 38 39 40 38 40 41 38 41 42 42 41 43 42 43 44 44 43 45 45 43 46 46 43 47 44 45 48 44 48 49 48 45 50 50 51 52 51 50 53 53 50 45 54 55 56 56 55 57 58 57 55 55 54 59 60 59 61 59 54 61 62 63 64 64 63 54 54 63 61 61 63 65 63 66 65 65 66 67 66 68 67 68 69 67 69 70 67 67 70 71 70 72 71 72 73 71 71 73 74 73 75 74 75 76 74 76 77 74 74 77 78 77 79 78 79 80 78 80 81 78 81 82 78 82 83 78 84 85 83 83 85 78 78 85 86 85 87 86 86 87 88 87 89 88 88 89 90 90 89 91 91 89 92 89 93 92 92 93 94 94 93 95 93 96 95 96 97 95 97 98 95 99 95 98 100 101 98 98 101 99 101 102 99 102 103 99 103 104 99 104 105 99 106 99 105 107 103 102</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8549\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8550\">\r\n\t\t\t\t\t<float_array count=\"594\" id=\"ID8553\">5.343651663764831 0 32.23964482128696 4.784004402545179 0 32.32359191046987 4.979880943972148 2.273736754432321e-013 32.18368009516502 6.854699269057164 0 32.43552136271381 4.532163134996154 0 32.7433273563845 8.589605778836813 2.273736754432321e-013 32.63139790414056 9.149253040056465 4.547473508864641e-013 32.63139790414061 5.701294723547562 2.273736754432321e-013 52.09979498411548 5.502143036136204 0 51.92277126197195 5.679166758279735 2.273736754432321e-013 51.900643296704 9.861352193920538 0 44.42139103613835 9.28602509695429 0 44.46564696667423 9.573688645437414 2.273736754432321e-013 44.37713510560246 10.72434283937037 2.273736754432321e-013 44.84182237622935 8.821337826327181 2.273736754432321e-013 45.15161388998052 11.58733348482019 0 45.43927743846382 7.692811597662058 0 46.63418756293288 11.96350889437508 0 45.74906895221506 12.14053261651816 2.273736754432321e-013 46.01460453543047 12.20691651232255 0 46.589931632397 12.22592452921799 4.547473508864641e-013 47.30273226598621 6.807692986944403 2.273736754432321e-013 48.02824937481347 12.25117244285866 2.273736754432321e-013 48.24952902749294 6.520029438461279 2.273736754432321e-013 48.66996036758394 12.18478854705427 0 49.02400781187106 8.002603111413919 2.273736754432321e-013 48.80272815919159 8.732825965255415 0 49.06826374240694 11.98135683995042 0 49.74006072848533 8.887721722131573 2.273736754432321e-013 49.77635863098124 11.73171398193199 0 49.87622956013172 8.799209861059353 2.273736754432321e-013 50.57296538062724 11.50476592918858 2.273736754432321e-013 50.12587241815004 11.00548021315217 2.273736754432321e-013 50.579768523638 8.423034451504464 0 51.17042044286177 10.05229839162712 2.273736754432321e-013 51.62372956626024 7.825579389269478 2.273736754432321e-013 51.96702719250783 9.121811375376637 2.273736754432321e-013 52.73577502470567 7.427276014447216 2.273736754432321e-013 52.38745853259877 7.139612465963637 0 52.54235428947447 3.646795554949222 0 56.51608530142346 3.248358319096951 2.273736754432321e-013 56.49394989943164 4.991356815437939 2.273736754432321e-013 56.41233347915795 9.718339898792692 0 32.74615582001582 9.429076670666291 2.273736754432321e-013 32.63139790414056 4.084445326020614 0 33.97455133106729 10.05259748588151 0 34.04392354654129 3.888568784594099 0 35.12182821656717 10.00177223332275 0 35.16207910283538 3.804621695411242 2.273736754432321e-013 36.40901691737201 9.595170212852736 2.273736754432321e-013 37.44921546798236 3.703628729350385 2.273736754432321e-013 37.37577286164827 3.526584844728859 2.273736754432321e-013 38.29895319381001 8.629490414235079 0 41.82018718804119 3.26451572408223 2.273736754432321e-013 39.30979123059115 2.927569711821889 2.273736754432321e-013 41.36890574996028 2.777815928594919 0 43.31570493190924 8.121237888647102 0 42.88751749177646 7.40968435282366 0 44.00567304807055 2.403431470527721 0 45.0753118848246 6.494829806764756 0 46.19115890809991 1.916731675040865 2.273736754432321e-013 47.28418018742053 5.732451018383017 2.273736754432321e-013 48.52912052580575 1.729539446007038 2.273736754432321e-013 49.41817159840309 5.579975260706306 2.273736754432321e-013 49.59645082954103 1.766977891813895 0 50.50388652679766 5.81193454988761 0 50.57296538062724 2.06648545826738 0 51.62703990099902 5.590654897207969 2.273736754432321e-013 50.88275689437847 5.236607452920453 0 50.99339672071824 4.882560008633845 0 51.21467637339765 4.760856199659884 2.273736754432321e-013 51.39170009554124 4.760856199660339 0 51.60665747242985 5.236607452920453 0 51.87851533143606 2.485091636025118 2.273736754432321e-013 53.71255841073446 5.922574376226294 0 52.27681870625906 6.343005716317748 2.273736754432321e-013 52.43171446313471 6.74130909114092 0 52.54235428947442 8.372882801322248 2.273736754432321e-013 53.9839893147975 2.424575870877561 0 54.22694241449233 7.850902280011269 2.273736754432321e-013 54.59674905720624 2.409446929590104 0 54.83210006597216 7.215447732327448 2.273736754432321e-013 55.14142438379179 2.469962694738115 2.273736754432321e-013 55.31622618715602 6.171486689705944 0 55.95843737367011 2.485091636025572 2.273736754432321e-013 55.4977734826 2.424575870877106 2.273736754432321e-013 55.61880501289591 2.243028575433527 0 55.63393395418296 2.061481279989494 2.273736754432321e-013 55.63393395418296 1.895062925832463 0 55.63393395418296 1.023974544910288 2.273736754432321e-013 55.65452509355936 1.189765933860599 2.273736754432321e-013 55.89629404565318 1.256172139836053 2.273736754432321e-013 56.07337726158755 1.543932365729233 0 56.3611374874809 2.34080683743332 0 56.49394989943164 1.324773780928354 0 55.54370432239455 1.736393788111855 2.273736754432321e-013 55.54370432239455 6.896204848017078 2.273736754432321e-013 49.00187984660312 6.409389612122141 2.273736754432321e-013 49.35592729089018 7.272380257571058 2.273736754432321e-013 48.84698408972747 8.002603111413919 2.273736754432321e-013 48.80272815919159 6.520029438461279 2.273736754432321e-013 48.66996036758394 7.272380257571058 2.273736754432321e-013 48.84698408972747 6.896204848017078 2.273736754432321e-013 49.00187984660312 6.409389612122141 2.273736754432321e-013 49.35592729089018 1.023974544910288 2.273736754432321e-013 55.65452509355936 1.895062925832463 0 55.63393395418296 1.324773780928354 0 55.54370432239455 1.736393788111855 2.273736754432321e-013 55.54370432239455 3.248358319096951 2.273736754432321e-013 56.49394989943164 4.991356815437939 2.273736754432321e-013 56.41233347915795 2.34080683743332 0 56.49394989943164 1.543932365729233 0 56.3611374874809 1.256172139836053 2.273736754432321e-013 56.07337726158755 6.171486689705944 0 55.95843737367011 1.189765933860599 2.273736754432321e-013 55.89629404565318 2.061481279989494 2.273736754432321e-013 55.63393395418296 2.243028575433527 0 55.63393395418296 2.424575870877106 2.273736754432321e-013 55.61880501289591 2.485091636025572 2.273736754432321e-013 55.4977734826 2.469962694738115 2.273736754432321e-013 55.31622618715602 7.215447732327448 2.273736754432321e-013 55.14142438379179 2.409446929590104 0 54.83210006597216 7.850902280011269 2.273736754432321e-013 54.59674905720624 2.424575870877561 0 54.22694241449233 8.372882801322248 2.273736754432321e-013 53.9839893147975 2.485091636025118 2.273736754432321e-013 53.71255841073446 9.121811375376637 2.273736754432321e-013 52.73577502470567 7.139612465963637 0 52.54235428947447 6.74130909114092 0 52.54235428947442 6.343005716317748 2.273736754432321e-013 52.43171446313471 5.922574376226294 0 52.27681870625906 5.701294723547562 2.273736754432321e-013 52.09979498411548 5.502143036136204 0 51.92277126197195 5.236607452920453 0 51.87851533143606 2.06648545826738 0 51.62703990099902 4.760856199660339 0 51.60665747242985 4.760856199659884 2.273736754432321e-013 51.39170009554124 4.882560008633845 0 51.21467637339765 5.236607452920453 0 50.99339672071824 5.590654897207969 2.273736754432321e-013 50.88275689437847 5.81193454988761 0 50.57296538062724 1.766977891813895 0 50.50388652679766 5.579975260706306 2.273736754432321e-013 49.59645082954103 1.729539446007038 2.273736754432321e-013 49.41817159840309 5.732451018383017 2.273736754432321e-013 48.52912052580575 1.916731675040865 2.273736754432321e-013 47.28418018742053 6.494829806764756 0 46.19115890809991 2.403431470527721 0 45.0753118848246 7.40968435282366 0 44.00567304807055 2.777815928594919 0 43.31570493190924 8.121237888647102 0 42.88751749177646 8.629490414235079 0 41.82018718804119 2.927569711821889 2.273736754432321e-013 41.36890574996028 3.26451572408223 2.273736754432321e-013 39.30979123059115 3.526584844728859 2.273736754432321e-013 38.29895319381001 9.595170212852736 2.273736754432321e-013 37.44921546798236 3.703628729350385 2.273736754432321e-013 37.37577286164827 3.804621695411242 2.273736754432321e-013 36.40901691737201 10.00177223332275 0 35.16207910283538 3.888568784594099 0 35.12182821656717 10.05259748588151 0 34.04392354654129 4.084445326020614 0 33.97455133106729 9.718339898792692 0 32.74615582001582 4.532163134996154 0 32.7433273563845 9.149253040056465 4.547473508864641e-013 32.63139790414061 9.429076670666291 2.273736754432321e-013 32.63139790414056 3.646795554949222 0 56.51608530142346 7.427276014447216 2.273736754432321e-013 52.38745853259877 7.825579389269478 2.273736754432321e-013 51.96702719250783 10.05229839162712 2.273736754432321e-013 51.62372956626024 8.423034451504464 0 51.17042044286177 11.00548021315217 2.273736754432321e-013 50.579768523638 8.799209861059353 2.273736754432321e-013 50.57296538062724 11.50476592918858 2.273736754432321e-013 50.12587241815004 11.73171398193199 0 49.87622956013172 8.887721722131573 2.273736754432321e-013 49.77635863098124 11.98135683995042 0 49.74006072848533 8.732825965255415 0 49.06826374240694 12.18478854705427 0 49.02400781187106 12.25117244285866 2.273736754432321e-013 48.24952902749294 6.807692986944403 2.273736754432321e-013 48.02824937481347 12.22592452921799 4.547473508864641e-013 47.30273226598621 7.692811597662058 0 46.63418756293288 12.20691651232255 0 46.589931632397 12.14053261651816 2.273736754432321e-013 46.01460453543047 11.96350889437508 0 45.74906895221506 11.58733348482019 0 45.43927743846382 8.821337826327181 2.273736754432321e-013 45.15161388998052 10.72434283937037 2.273736754432321e-013 44.84182237622935 9.28602509695429 0 44.46564696667423 9.861352193920538 0 44.42139103613835 9.573688645437414 2.273736754432321e-013 44.37713510560246 5.679166758279735 2.273736754432321e-013 51.900643296704 8.589605778836813 2.273736754432321e-013 32.63139790414056 6.854699269057164 0 32.43552136271381 4.784004402545179 0 32.32359191046987 5.343651663764831 0 32.23964482128696 4.979880943972148 2.273736754432321e-013 32.18368009516502</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"198\" source=\"#ID8553\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8551\">\r\n\t\t\t\t\t<float_array count=\"594\" id=\"ID8554\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"198\" source=\"#ID8554\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8552\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8550\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8551\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"97\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8552\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 7 8 9 10 11 12 11 10 13 11 13 14 14 13 15 14 15 16 16 15 17 16 17 18 16 18 19 16 19 20 16 20 21 21 20 22 21 22 23 23 22 24 23 24 25 25 24 26 26 24 27 26 27 28 28 27 29 28 29 30 30 29 31 30 31 32 30 32 33 33 32 34 33 34 35 35 34 36 35 36 37 37 36 38 39 40 41 42 6 43 6 42 4 4 42 44 44 42 45 44 45 46 46 45 47 46 47 48 48 47 49 48 49 50 50 49 51 51 49 52 51 52 53 53 52 54 54 52 55 55 52 56 55 56 57 55 57 58 58 57 59 58 59 60 60 59 61 60 61 62 62 61 63 62 63 64 64 63 65 64 65 66 66 65 67 66 67 68 66 68 69 66 69 70 66 70 71 66 71 72 66 72 73 73 72 8 73 8 7 73 7 74 73 74 75 73 75 76 73 76 38 73 38 36 73 36 77 73 77 78 78 77 79 78 79 80 80 79 81 80 81 82 82 81 83 82 83 84 84 83 85 85 83 86 86 83 87 87 83 88 88 83 89 89 83 90 90 83 91 91 83 41 91 41 92 92 41 93 93 41 40 88 94 95 94 88 89 23 96 97 96 23 98 98 23 25</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"97\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8552\" />\r\n\t\t\t\t\t<p>99 100 101 101 100 102 103 102 100 104 105 106 107 106 105 108 109 110 110 109 111 111 109 112 109 113 112 112 113 114 114 113 104 104 113 105 105 113 115 115 113 116 116 113 117 117 113 118 118 113 119 113 120 119 119 120 121 120 122 121 121 122 123 122 124 123 123 124 125 124 126 125 126 127 125 127 128 125 128 129 125 129 130 125 130 131 125 131 132 125 132 133 125 125 133 134 133 135 134 135 136 134 136 137 134 137 138 134 138 139 134 139 140 134 134 140 141 140 142 141 141 142 143 142 144 143 143 144 145 144 146 145 145 146 147 146 148 147 147 148 149 148 150 149 150 151 149 149 151 152 152 151 153 153 151 154 151 155 154 154 155 156 156 155 157 155 158 157 157 158 159 158 160 159 159 160 161 160 162 161 161 162 163 163 162 164 165 164 162 109 108 166 127 126 167 167 126 168 126 169 168 168 169 170 169 171 170 170 171 172 171 173 172 173 174 172 172 174 175 174 176 175 175 176 177 176 178 177 177 178 99 99 178 100 178 179 100 100 179 180 179 181 180 180 181 182 181 183 182 183 184 182 184 185 182 185 186 182 182 186 187 186 188 187 187 188 189 188 190 189 191 189 190 192 132 131 164 193 163 193 194 163 163 194 195 194 196 195 197 195 196</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8555\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8556\">\r\n\t\t\t\t\t<float_array count=\"270\" id=\"ID8559\">9.557077353015302 2.273736754432321e-013 29.06604591225323 8.539519552823549 0 29.36591481440769 8.946672364575989 0 28.91344466514346 10.85418795344822 0 29.4475490300278 8.671392795255542 2.273736754432321e-013 29.95934440535325 12.15129855388159 0 30.13425464202197 8.737329416472221 2.273736754432321e-013 30.22309089021798 13.21950728364982 2.273736754432321e-013 31.1261627482358 10.19158242679259 0 30.91234102401648 8.898920471005567 2.273736754432321e-013 30.86945510835142 9.718339898792692 0 32.74615582001582 15.1270228725225 2.273736754432321e-013 34.25448831398717 10.05259748588151 0 34.04392354654129 10.00177223332275 0 35.16207910283538 15.73742786096136 2.273736754432321e-013 35.78050078508539 9.595170212852736 2.273736754432321e-013 37.44921546798236 15.96632973162605 2.273736754432321e-013 37.23021263262871 15.50852599029713 0 39.90073445705059 8.629490414235079 0 41.82018718804119 14.97442162541256 0 41.27414568103899 14.82182037830262 2.273736754432321e-013 42.80015815213722 8.121237888647102 0 42.88751749177646 14.05881414275382 2.273736754432321e-013 45.31807872944927 9.861352193920538 0 44.42139103613835 7.40968435282366 0 44.00567304807055 9.573688645437414 2.273736754432321e-013 44.37713510560246 10.72434283937037 2.273736754432321e-013 44.84182237622935 11.58733348482019 0 45.43927743846382 13.60101040142445 2.273736754432321e-013 46.61518932988281 11.96350889437508 0 45.74906895221506 12.14053261651816 2.273736754432321e-013 46.01460453543047 12.20691651232255 0 46.589931632397 12.99060541298513 2.273736754432321e-013 46.92039182410235 12.22592452921799 4.547473508864641e-013 47.30273226598621 9.28602509695429 0 44.46564696667423 6.494829806764756 0 46.19115890809991 8.821337826327181 2.273736754432321e-013 45.15161388998052 7.692811597662058 0 46.63418756293288 5.732451018383017 2.273736754432321e-013 48.52912052580575 6.807692986944403 2.273736754432321e-013 48.02824937481347 6.520029438461279 2.273736754432321e-013 48.66996036758394 5.579975260706306 2.273736754432321e-013 49.59645082954103 6.409389612122141 2.273736754432321e-013 49.35592729089018 6.121726063638562 2.273736754432321e-013 49.82061456151706 5.81193454988761 0 50.57296538062724 5.81193454988761 0 50.57296538062724 6.121726063638562 2.273736754432321e-013 49.82061456151706 5.579975260706306 2.273736754432321e-013 49.59645082954103 6.409389612122141 2.273736754432321e-013 49.35592729089018 6.520029438461279 2.273736754432321e-013 48.66996036758394 5.732451018383017 2.273736754432321e-013 48.52912052580575 6.807692986944403 2.273736754432321e-013 48.02824937481347 7.692811597662058 0 46.63418756293288 6.494829806764756 0 46.19115890809991 8.821337826327181 2.273736754432321e-013 45.15161388998052 9.28602509695429 0 44.46564696667423 9.573688645437414 2.273736754432321e-013 44.37713510560246 7.40968435282366 0 44.00567304807055 12.22592452921799 4.547473508864641e-013 47.30273226598621 12.99060541298513 2.273736754432321e-013 46.92039182410235 12.20691651232255 0 46.589931632397 13.60101040142445 2.273736754432321e-013 46.61518932988281 12.14053261651816 2.273736754432321e-013 46.01460453543047 11.96350889437508 0 45.74906895221506 11.58733348482019 0 45.43927743846382 14.05881414275382 2.273736754432321e-013 45.31807872944927 10.72434283937037 2.273736754432321e-013 44.84182237622935 9.861352193920538 0 44.42139103613835 8.121237888647102 0 42.88751749177646 14.82182037830262 2.273736754432321e-013 42.80015815213722 8.629490414235079 0 41.82018718804119 14.97442162541256 0 41.27414568103899 15.50852599029713 0 39.90073445705059 9.595170212852736 2.273736754432321e-013 37.44921546798236 15.96632973162605 2.273736754432321e-013 37.23021263262871 15.73742786096136 2.273736754432321e-013 35.78050078508539 10.00177223332275 0 35.16207910283538 15.1270228725225 2.273736754432321e-013 34.25448831398717 10.05259748588151 0 34.04392354654129 9.718339898792692 0 32.74615582001582 13.21950728364982 2.273736754432321e-013 31.1261627482358 10.19158242679259 0 30.91234102401648 8.898920471005567 2.273736754432321e-013 30.86945510835142 8.737329416472221 2.273736754432321e-013 30.22309089021798 12.15129855388159 0 30.13425464202197 8.671392795255542 2.273736754432321e-013 29.95934440535325 10.85418795344822 0 29.4475490300278 8.539519552823549 0 29.36591481440769 9.557077353015302 2.273736754432321e-013 29.06604591225323 8.946672364575989 0 28.91344466514346</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"90\" source=\"#ID8559\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8557\">\r\n\t\t\t\t\t<float_array count=\"270\" id=\"ID8560\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"90\" source=\"#ID8560\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8558\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8556\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8557\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"86\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8558\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 6 8 9 8 7 10 10 7 11 10 11 12 12 11 13 13 11 14 13 14 15 15 14 16 15 16 17 15 17 18 18 17 19 18 19 20 18 20 21 21 20 22 21 22 23 21 23 24 24 23 25 23 22 26 26 22 27 27 22 28 27 28 29 29 28 30 30 28 31 31 28 32 31 32 33 24 34 35 34 24 25 35 34 36 35 36 37 35 37 38 38 37 39 38 39 40 38 40 41 41 40 42 41 42 43 41 43 44 45 46 47 46 48 47 48 49 47 47 49 50 49 51 50 51 52 50 50 52 53 52 54 53 54 55 53 56 57 55 53 55 57 58 59 60 59 61 60 60 61 62 62 61 63 63 61 64 61 65 64 64 65 66 66 65 67 56 67 57 57 67 68 67 65 68 65 69 68 68 69 70 69 71 70 71 72 70 70 72 73 72 74 73 74 75 73 73 75 76 75 77 76 76 77 78 78 77 79 77 80 79 79 80 81 82 81 83 81 80 83 80 84 83 83 84 85 84 86 85 85 86 87 86 88 87 89 87 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8561\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8562\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8565\">-3.461399068705305 2.273736754432321e-013 43.56649648230348 -3.76569536461875 2.273736754432321e-013 43.35838947702797 -3.851114551035153 0 42.27827865519362 -3.802383809052572 0 43.61520858806739 -3.047346169712455 0 44.34589017452583 -3.802383809053026 0 44.41895833317165 -2.779429588011226 0 44.73558702063701 -3.729315650406988 0 44.80865517928288 -2.633293270719605 0 44.9547914965745 -3.339618804295697 2.273736754432321e-013 44.90607939081065 -2.633293270719605 4.547473508864641e-013 45.14963991963003 -2.633293270719605 4.547473508864641e-013 45.14963991963003 -2.633293270719605 0 44.9547914965745 -3.339618804295697 2.273736754432321e-013 44.90607939081065 -3.729315650406988 0 44.80865517928288 -2.779429588011226 0 44.73558702063701 -3.802383809053026 0 44.41895833317165 -3.047346169712455 0 44.34589017452583 -3.802383809052572 0 43.61520858806739 -3.461399068705305 2.273736754432321e-013 43.56649648230348 -3.76569536461875 2.273736754432321e-013 43.35838947702797 -3.851114551035153 0 42.27827865519362</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8565\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8563\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8566\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8566\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8564\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8562\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8563\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8564\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 7 8 9 9 8 10 11 12 13 13 12 14 12 15 14 14 15 16 15 17 16 16 17 18 17 19 18 18 19 20 21 20 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8567\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8568\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID8573\">1.552702118780417 2.273736754432321e-013 62.85298451626568 0.2757881859747613 2.273736754432321e-013 62.87766188335047 1.479112232806983 0 62.84967760319159 1.665627443693666 0 62.85805904829414 1.479112232807438 2.273736754432321e-013 63.50027290567181 -5.98220864245377 2.273736754432321e-013 62.97014459510069 -5.673932936619622 2.273736754432321e-013 63.58669600676876 0.5224087506426258 0 64.78897125952148 -5.273174519036274 0 63.95662685376959 -2.714486160613888 2.273736754432321e-013 65.6829708064401 -0.001659949275108374 0 65.31303995943932 -0.5257286491928426 2.273736754432321e-013 65.59048809468987 -1.265590343193708 2.273736754432321e-013 65.80628108877369 -1.974624466612113 2.273736754432321e-013 65.83710865935711 -4.101726836866419 0 59.17835341334217 -4.749105819118086 0 58.62345714284095 -4.533312825034045 0 58.53097443109073 -4.903243672034932 0 58.87007770750819 -5.550622654286599 2.273736754432321e-013 60.28814595434466 -3.084417007614775 2.273736754432321e-013 60.38062866609494 -5.951381071870401 0 61.49042120709737 -2.190417460696153 0 61.61373148943096 -6.043863783620509 2.273736754432321e-013 62.23028290109903 -1.111452490276861 0 62.53855860693307 -0.4640735080256491 2.273736754432321e-013 62.78517917160031 0.2757881859747613 2.273736754432321e-013 62.87766188335047 -0.4640735080256491 2.273736754432321e-013 62.78517917160031 -5.98220864245377 2.273736754432321e-013 62.97014459510069 -1.111452490276861 0 62.53855860693307 -6.043863783620509 2.273736754432321e-013 62.23028290109903 -2.190417460696153 0 61.61373148943096 -5.951381071870401 0 61.49042120709737 -3.084417007614775 2.273736754432321e-013 60.38062866609494 -5.550622654286599 2.273736754432321e-013 60.28814595434466 -4.101726836866419 0 59.17835341334217 -4.903243672034932 0 58.87007770750819 -4.749105819118086 0 58.62345714284095 -4.533312825034045 0 58.53097443109073 -1.974624466612113 2.273736754432321e-013 65.83710865935711 -1.265590343193708 2.273736754432321e-013 65.80628108877369 -2.714486160613888 2.273736754432321e-013 65.6829708064401 -0.5257286491928426 2.273736754432321e-013 65.59048809468987 -0.001659949275108374 0 65.31303995943932 0.5224087506426258 0 64.78897125952148 -5.273174519036274 0 63.95662685376959 -5.673932936619622 2.273736754432321e-013 63.58669600676876 1.479112232807438 2.273736754432321e-013 63.50027290567181 1.665627443693666 0 62.85805904829414 1.552702118780417 2.273736754432321e-013 62.85298451626568 1.479112232806983 0 62.84967760319159</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID8573\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8569\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID8574\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID8574\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8570\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8568\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8569\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"23\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8570\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 6 4 7 6 7 8 8 7 9 9 7 10 9 10 11 9 11 12 9 12 13 14 15 16 15 14 17 17 14 18 18 14 19 18 19 20 20 19 21 20 21 22 22 21 23 22 23 5 5 23 24 5 24 1</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"23\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8570\" />\r\n\t\t\t\t\t<p>25 26 27 26 28 27 27 28 29 28 30 29 29 30 31 30 32 31 31 32 33 32 34 33 33 34 35 35 34 36 37 36 34 38 39 40 39 41 40 41 42 40 42 43 40 40 43 44 44 43 45 43 46 45 45 46 27 27 46 25 46 47 25 47 48 25 49 25 48</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8575\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8576\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8579\">-2.507272855150859 2.273736754432321e-013 37.90517176277552 -4.280576843533709 0 37.48858303812881 -3.198308323695528 0 37.27348034783284 -3.537296932644949 2.273736754432321e-013 37.78892970417206 -4.66784237264983 2.273736754432321e-013 38.11973233071393 -4.63535596886959 0 38.28216434961303 -4.63535596886959 0 38.28216434961303 -3.537296932644949 2.273736754432321e-013 37.78892970417206 -4.66784237264983 2.273736754432321e-013 38.11973233071393 -4.280576843533709 0 37.48858303812881 -2.507272855150859 2.273736754432321e-013 37.90517176277552 -3.198308323695528 0 37.27348034783284</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8579\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8577\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8580\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8580\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8578\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8576\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8577\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8578\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 4 1 4 3 5 6 7 8 9 8 7 7 10 9 11 9 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8581\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8582\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID8585\">3.792082825259513 2.273736754432321e-013 3.452822676450751 5.572371598096197 2.273736754432321e-013 3.980315646180173 4.31957579498885 0 3.320949434018417 3.3305264767464 4.547473508864641e-013 4.375935373477205 6.297674431474206 0 5.496857934152189 3.396463097962624 2.273736754432321e-013 6.09028752509775 6.693294158771096 -2.273736754432321e-013 7.013400222124233 3.26458985553063 2.273736754432321e-013 7.804639676718324 6.825167401203544 0 8.266196025231551 4.583322279854201 2.273736754432321e-013 8.464005888880053 3.033811681274074 2.273736754432321e-013 8.661815752528611 3.792082825259513 0 8.595879131312415 4.055829310124864 0 8.595879131312415 5.967991325393086 2.273736754432321e-013 8.595879131312415 6.825167401203544 2.273736754432321e-013 8.793688994960945 4.583322279854201 2.273736754432321e-013 8.464005888880053 6.825167401203544 0 8.266196025231551 5.967991325393086 2.273736754432321e-013 8.595879131312415 6.825167401203544 2.273736754432321e-013 8.793688994960945 3.792082825259513 0 8.595879131312415 4.055829310124864 0 8.595879131312415 3.033811681274074 2.273736754432321e-013 8.661815752528611 3.26458985553063 2.273736754432321e-013 7.804639676718324 6.693294158771096 -2.273736754432321e-013 7.013400222124233 3.396463097962624 2.273736754432321e-013 6.09028752509775 6.297674431474206 0 5.496857934152189 3.3305264767464 4.547473508864641e-013 4.375935373477205 5.572371598096197 2.273736754432321e-013 3.980315646180173 3.792082825259513 2.273736754432321e-013 3.452822676450751 4.31957579498885 0 3.320949434018417</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID8585\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8583\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID8586\">2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID8586\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8584\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8582\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8583\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8584\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 8 7 9 9 7 10 9 10 11 12 9 11 8 13 14 13 8 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8584\" />\r\n\t\t\t\t\t<p>15 16 17 18 17 16 19 15 20 19 21 15 21 22 15 15 22 16 16 22 23 22 24 23 23 24 25 24 26 25 25 26 27 26 28 27 29 27 28</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8587\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8588\">\r\n\t\t\t\t\t<float_array count=\"372\" id=\"ID8591\">1.813984188774612 2.273736754432321e-013 1.870343767262511 -0.3619243113580524 2.273736754432321e-013 2.002217009694903 1.418364461478177 0 1.672533903613982 2.209603916071956 0 2.068153630911041 5.967991325393086 2.273736754432321e-013 8.595879131312415 4.055829310124864 0 8.595879131312415 4.583322279854201 2.273736754432321e-013 8.464005888880053 6.825167401203544 2.273736754432321e-013 8.793688994960945 3.792082825259513 0 8.595879131312415 3.033811681274074 2.273736754432321e-013 8.661815752528611 8.898920471005567 2.273736754432321e-013 30.86945510835142 2.755249425702914 0 30.40774206739002 8.737329416472221 2.273736754432321e-013 30.22309089021798 3.757709412353051 0 30.58767078294244 5.891149896760908 0 30.76759949849503 8.153110892278164 0 30.84471180516039 2.009830461271122 0 30.53626257849891 1.5471566212791 0 30.45915027183361 2.292575585711347 2.273736754432321e-013 30.43344616961178 1.778493541275111 2.273736754432321e-013 30.56196668072073 -1.746593356897847 0 1.936280388478707 -1.219100387168965 2.273736754432321e-013 1.936280388478707 -2.262066119026258 2.273736754432321e-013 2.138852868055039 2.671160264585069 2.273736754432321e-013 2.793456464288965 -2.61797185627529 2.273736754432321e-013 2.278718081092251 -2.459225967760176 2.273736754432321e-013 4.525649855700664 3.3305264767464 4.547473508864641e-013 4.375935373477205 3.396463097962624 2.273736754432321e-013 6.09028752509775 -2.603769432708305 -2.273736754432321e-013 5.826541040233053 -2.735642675140298 2.273736754432321e-013 9.518991828338869 3.26458985553063 2.273736754432321e-013 7.804639676718324 7.616406855797322 2.273736754432321e-013 9.782738313203595 -3.526882129734531 2.273736754432321e-013 13.01363275279616 7.616406855797322 0 11.1674073587433 7.616406855797322 0 12.35426654063443 7.154850507284209 2.273736754432321e-013 13.73893558617411 -3.592818750949846 2.273736754432321e-013 16.50827367725347 6.891104022419768 2.273736754432321e-013 14.99173138928143 7.220787128499524 2.273736754432321e-013 16.50827367725347 7.352660370932426 2.273736754432321e-013 17.10170326819906 -3.592818750950301 0 18.28856245009021 7.550470234581098 2.273736754432321e-013 17.29951313184756 7.484533613364874 2.273736754432321e-013 17.82700610157698 7.154850507284209 2.273736754432321e-013 19.27761176833283 -3.856565235815197 0 20.33259770779165 7.088913886067985 0 20.39853432900782 -4.581868069192751 -2.273736754432321e-013 23.9591118746813 7.41859699214865 0 22.04694985941219 8.275773067958653 0 25.01409781414009 -4.779677932841423 0 27.45375279913861 8.47358293160687 0 26.39876685967977 8.341709689175332 0 27.98124576886795 -4.990942141618234 0 29.3000203881619 8.539519552823549 0 29.36591481440769 -4.827460729723498 0 30.99893641849116 8.671392795255542 2.273736754432321e-013 29.95934440535325 1.36722790572685 2.273736754432321e-013 30.5876707829425 1.058778679065654 2.273736754432321e-013 30.92182411182574 0.3133597146338616 0 31.48731436070517 -4.056337663070281 2.273736754432321e-013 31.35879384959623 -3.028173574198263 -2.273736754432321e-013 31.56442666737053 -1.100365907564083 2.273736754432321e-013 31.64153897403594 -1.100365907564083 2.273736754432321e-013 31.64153897403594 0.3133597146338616 0 31.48731436070517 -3.028173574198263 -2.273736754432321e-013 31.56442666737053 -4.056337663070281 2.273736754432321e-013 31.35879384959623 -4.827460729723498 0 30.99893641849116 1.058778679065654 2.273736754432321e-013 30.92182411182574 1.36722790572685 2.273736754432321e-013 30.5876707829425 1.5471566212791 0 30.45915027183361 2.292575585711347 2.273736754432321e-013 30.43344616961178 2.755249425702914 0 30.40774206739002 8.737329416472221 2.273736754432321e-013 30.22309089021798 8.671392795255542 2.273736754432321e-013 29.95934440535325 8.539519552823549 0 29.36591481440769 -4.990942141618234 0 29.3000203881619 8.341709689175332 0 27.98124576886795 -4.779677932841423 0 27.45375279913861 8.47358293160687 0 26.39876685967977 8.275773067958653 0 25.01409781414009 -4.581868069192751 -2.273736754432321e-013 23.9591118746813 7.41859699214865 0 22.04694985941219 7.088913886067985 0 20.39853432900782 -3.856565235815197 0 20.33259770779165 7.154850507284209 2.273736754432321e-013 19.27761176833283 -3.592818750950301 0 18.28856245009021 7.484533613364874 2.273736754432321e-013 17.82700610157698 7.550470234581098 2.273736754432321e-013 17.29951313184756 7.352660370932426 2.273736754432321e-013 17.10170326819906 -3.592818750949846 2.273736754432321e-013 16.50827367725347 7.220787128499524 2.273736754432321e-013 16.50827367725347 6.891104022419768 2.273736754432321e-013 14.99173138928143 7.154850507284209 2.273736754432321e-013 13.73893558617411 -3.526882129734531 2.273736754432321e-013 13.01363275279616 7.616406855797322 0 12.35426654063443 7.616406855797322 0 11.1674073587433 7.616406855797322 2.273736754432321e-013 9.782738313203595 -2.735642675140298 2.273736754432321e-013 9.518991828338869 6.825167401203544 2.273736754432321e-013 8.793688994960945 3.033811681274074 2.273736754432321e-013 8.661815752528611 3.26458985553063 2.273736754432321e-013 7.804639676718324 3.396463097962624 2.273736754432321e-013 6.09028752509775 -2.603769432708305 -2.273736754432321e-013 5.826541040233053 -2.459225967760176 2.273736754432321e-013 4.525649855700664 3.3305264767464 4.547473508864641e-013 4.375935373477205 2.671160264585069 2.273736754432321e-013 2.793456464288965 -2.61797185627529 2.273736754432321e-013 2.278718081092251 -2.262066119026258 2.273736754432321e-013 2.138852868055039 2.209603916071956 0 2.068153630911041 -0.3619243113580524 2.273736754432321e-013 2.002217009694903 -1.746593356897847 0 1.936280388478707 -1.219100387168965 2.273736754432321e-013 1.936280388478707 1.778493541275111 2.273736754432321e-013 30.56196668072073 2.009830461271122 0 30.53626257849891 8.153110892278164 0 30.84471180516039 8.898920471005567 2.273736754432321e-013 30.86945510835142 5.891149896760908 0 30.76759949849503 3.757709412353051 0 30.58767078294244 3.792082825259513 0 8.595879131312415 4.055829310124864 0 8.595879131312415 5.967991325393086 2.273736754432321e-013 8.595879131312415 4.583322279854201 2.273736754432321e-013 8.464005888880053 1.813984188774612 2.273736754432321e-013 1.870343767262511 1.418364461478177 0 1.672533903613982</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"124\" source=\"#ID8591\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8589\">\r\n\t\t\t\t\t<float_array count=\"372\" id=\"ID8592\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"124\" source=\"#ID8592\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8590\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8588\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8589\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"120\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8590\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 5 7 8 8 7 9 10 11 12 11 10 13 13 10 14 14 10 15 16 17 18 17 16 19 1 20 21 20 1 22 22 1 3 22 3 23 22 23 24 24 23 25 25 23 26 25 26 27 25 27 28 28 27 29 29 27 30 29 30 9 29 9 7 29 7 31 29 31 32 32 31 33 32 33 34 32 34 35 32 35 36 36 35 37 36 37 38 36 38 39 36 39 40 40 39 41 40 41 42 40 42 43 40 43 44 44 43 45 44 45 46 46 45 47 46 47 48 46 48 49 49 48 50 49 50 51 49 51 52 52 51 53 52 53 54 54 53 17 17 53 55 17 55 11 11 55 12 17 11 18 54 17 56 54 56 57 54 57 58 54 58 59 59 58 60 60 58 61 62 63 64 64 63 65 65 63 66 63 67 66 67 68 66 68 69 66 70 71 69 72 73 71 71 73 69 73 74 69 69 74 66 66 74 75 74 76 75 75 76 77 76 78 77 78 79 77 77 79 80 79 81 80 81 82 80 80 82 83 82 84 83 83 84 85 84 86 85 86 87 85 87 88 85 85 88 89 88 90 89 90 91 89 91 92 89 89 92 93 92 94 93 94 95 93 95 96 93 93 96 97 96 98 97 98 99 97 99 100 97 100 101 97 97 101 102 102 101 103 101 104 103 104 105 103 103 105 106 106 105 107 105 108 107 108 109 107 107 109 110 111 110 109 112 113 69 70 69 113 114 115 116 116 115 117 117 115 71 72 71 115 99 98 118 118 98 119 98 120 119 121 119 120 108 122 109 123 109 122</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8593\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8594\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID8597\">3.757709412353051 0 30.58767078294244 2.292575585711347 2.273736754432321e-013 30.43344616961178 2.755249425702914 0 30.40774206739002 2.009830461271122 0 30.53626257849891 1.778493541275111 2.273736754432321e-013 30.56196668072073 1.36722790572685 2.273736754432321e-013 30.5876707829425 1.5471566212791 0 30.45915027183361 5.891149896760908 0 30.76759949849503 1.058778679065654 2.273736754432321e-013 30.92182411182574 8.153110892278164 0 30.84471180516039 8.898920471005567 2.273736754432321e-013 30.86945510835142 10.19158242679259 0 30.91234102401648 9.429076670666291 2.273736754432321e-013 32.63139790414056 9.718339898792692 0 32.74615582001582 0.3133597146338616 0 31.48731436070517 4.979880943972148 2.273736754432321e-013 32.18368009516502 -1.100365907564083 2.273736754432321e-013 31.64153897403594 5.343651663764831 0 32.23964482128696 6.854699269057164 0 32.43552136271381 -4.827460729723498 0 30.99893641849116 -5.161614058606574 -2.273736754432321e-013 31.05034462293475 -5.033093547497629 2.273736754432321e-013 30.89612000960398 -4.056337663070281 2.273736754432321e-013 31.35879384959623 -5.161614058606574 2.273736754432321e-013 31.61583487181412 -3.028173574198263 -2.273736754432321e-013 31.56442666737053 -5.135909956384694 0 33.8006835606663 4.784004402545179 0 32.32359191046987 4.532163134996154 0 32.7433273563845 4.084445326020614 0 33.97455133106729 -4.853164831945378 2.273736754432321e-013 35.08588867175587 3.888568784594099 0 35.12182821656717 -4.750348423058313 0 35.59997071619165 3.804621695411242 2.273736754432321e-013 36.40901691737201 -4.673236116392673 0 35.90841994285313 -4.269243068408287 2.273736754432321e-013 36.06679390977723 -2.662768900202991 0 36.18579199631097 -0.7587995156632132 0 36.54278625591212 3.703628729350385 2.273736754432321e-013 37.37577286164827 0.8476746525416274 2.273736754432321e-013 37.1377766885808 2.513647864013819 2.273736754432321e-013 37.37577286164827 -4.507239241474963 2.273736754432321e-013 36.06679390977723 -4.617813718194157 2.273736754432321e-013 36.12208114813689 8.589605778836813 2.273736754432321e-013 32.63139790414056 9.149253040056465 4.547473508864641e-013 32.63139790414061 9.149253040056465 4.547473508864641e-013 32.63139790414061 9.429076670666291 2.273736754432321e-013 32.63139790414056 8.589605778836813 2.273736754432321e-013 32.63139790414056 6.854699269057164 0 32.43552136271381 -4.269243068408287 2.273736754432321e-013 36.06679390977723 -4.673236116392673 0 35.90841994285313 -4.507239241474963 2.273736754432321e-013 36.06679390977723 -4.617813718194157 2.273736754432321e-013 36.12208114813689 2.513647864013819 2.273736754432321e-013 37.37577286164827 3.703628729350385 2.273736754432321e-013 37.37577286164827 0.8476746525416274 2.273736754432321e-013 37.1377766885808 -0.7587995156632132 0 36.54278625591212 3.804621695411242 2.273736754432321e-013 36.40901691737201 -2.662768900202991 0 36.18579199631097 -4.750348423058313 0 35.59997071619165 3.888568784594099 0 35.12182821656717 -4.853164831945378 2.273736754432321e-013 35.08588867175587 4.084445326020614 0 33.97455133106729 -5.135909956384694 0 33.8006835606663 4.532163134996154 0 32.7433273563845 4.784004402545179 0 32.32359191046987 4.979880943972148 2.273736754432321e-013 32.18368009516502 -1.100365907564083 2.273736754432321e-013 31.64153897403594 -5.161614058606574 2.273736754432321e-013 31.61583487181412 -3.028173574198263 -2.273736754432321e-013 31.56442666737053 -4.056337663070281 2.273736754432321e-013 31.35879384959623 -5.161614058606574 -2.273736754432321e-013 31.05034462293475 -4.827460729723498 0 30.99893641849116 -5.033093547497629 2.273736754432321e-013 30.89612000960398 5.343651663764831 0 32.23964482128696 0.3133597146338616 0 31.48731436070517 1.058778679065654 2.273736754432321e-013 30.92182411182574 9.718339898792692 0 32.74615582001582 10.19158242679259 0 30.91234102401648 8.898920471005567 2.273736754432321e-013 30.86945510835142 8.153110892278164 0 30.84471180516039 5.891149896760908 0 30.76759949849503 1.36722790572685 2.273736754432321e-013 30.5876707829425 3.757709412353051 0 30.58767078294244 1.778493541275111 2.273736754432321e-013 30.56196668072073 1.5471566212791 0 30.45915027183361 2.009830461271122 0 30.53626257849891 2.292575585711347 2.273736754432321e-013 30.43344616961178 2.755249425702914 0 30.40774206739002</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID8597\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8595\">\r\n\t\t\t\t\t<float_array count=\"264\" id=\"ID8598\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"88\" source=\"#ID8598\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8596\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8594\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8595\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8596\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 5 6 5 4 0 5 0 7 5 7 8 8 7 9 8 9 10 8 10 11 8 11 12 12 11 13 8 12 14 14 12 15 14 15 16 15 12 17 17 12 18 19 20 21 20 19 22 20 22 23 23 22 24 23 24 16 23 16 25 25 16 15 25 15 26 25 26 27 25 27 28 25 28 29 29 28 30 29 30 31 31 30 32 31 32 33 33 32 34 34 32 35 35 32 36 36 32 37 36 37 38 38 37 39 33 40 41 40 33 34 12 42 18 42 12 43 44 45 46 47 46 45 48 49 50 51 50 49 52 53 54 54 53 55 53 56 55 55 56 57 57 56 48 48 56 49 49 56 58 56 59 58 58 59 60 59 61 60 60 61 62 61 63 62 63 64 62 64 65 62 65 66 62 62 66 67 66 68 67 68 69 67 67 69 70 69 71 70 72 70 71 47 45 73 73 45 65 66 65 74 65 45 74 74 45 75 76 77 45 45 77 75 77 78 75 78 79 75 79 80 75 75 80 81 80 82 81 82 83 81 84 81 83 83 82 85 85 82 86 87 86 82</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8599\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8600\">\r\n\t\t\t\t\t<float_array count=\"408\" id=\"ID8603\">-1.291642514246178 0 59.39307958319466 -1.62897956768893 2.273736754432321e-013 59.37774608076546 -1.33764302153395 2.273736754432321e-013 59.270411563761 -1.352976523963207 2.273736754432321e-013 59.42374658805306 -1.291642514246632 2.273736754432321e-013 59.45441359291152 -1.59831256282996 4.547473508864641e-013 57.56839279411867 -1.659646572547445 2.273736754432321e-013 57.47639177954341 -1.536978553113841 0 57.44572477468495 -1.904982611414653 2.273736754432321e-013 57.47639177954341 -2.441655196436386 2.273736754432321e-013 57.58372629654787 -1.659646572547445 0 57.82906233541519 -5.186352131264812 2.273736754432321e-013 57.62972680383547 -4.803014570534288 2.273736754432321e-013 58.07439837428257 -1.582979060401158 0 58.05906487185337 -1.214975002100346 2.273736754432321e-013 58.42706893015441 -4.619012541384109 2.273736754432321e-013 58.27373390586234 -4.533312825034045 0 58.53097443109073 -1.076973480237484 0 58.70307197388019 -4.101726836866419 0 59.17835341334217 -1.01563947052091 -2.273736754432321e-013 58.85640699817225 -1.168974494812574 2.273736754432321e-013 58.97907501760597 -1.046306475379424 0 58.97907501760597 -1.291642514246178 0 59.04040902732282 -1.383643528821267 0 59.14774354432728 -1.766981089551337 0 59.39307958319461 -3.084417007614775 2.273736754432321e-013 60.38062866609494 -1.874315606555683 0 59.48508059776992 -2.027650630847802 2.273736754432321e-013 59.63841562206198 -2.242319664857405 0 60.63509327996064 -2.190417460696153 0 61.61373148943096 -2.211652659998435 2.273736754432321e-013 61.171765864983 -3.376998844617901 0 55.32970143945397 -3.4689998591939 0 55.29903443459557 -3.392332347047613 2.273736754432321e-013 55.26836742973717 -3.576334376198247 2.273736754432321e-013 55.39103544917083 -3.315664834901327 0 55.46770296131689 -4.097673458791178 2.273736754432321e-013 55.40636895160003 -4.281675487941357 0 55.40636895160003 -6.075695272158555 0 55.43703595645843 -5.600356696853396 0 55.88170752690553 -3.192996815467723 0 55.52903697103369 -2.62565722558702 0 55.62103798560895 -2.380321186720266 2.273736754432321e-013 55.75903950747187 -2.579656718299702 2.273736754432321e-013 55.88170752690553 -2.794325752308851 0 56.09637656091445 -5.416354667702763 2.273736754432321e-013 56.11171006334371 -2.85565976202497 0 56.20371107791891 -5.370354160414991 2.273736754432321e-013 56.37237960464023 -2.840326259596168 2.273736754432321e-013 56.35704610221109 -2.870993264454683 2.273736754432321e-013 56.9550526969503 -5.631023701711911 0 56.41838011192789 -5.769025223574317 0 56.46438061921549 -5.830359233291347 0 56.49504762407395 -5.784358726003575 0 56.55638163379081 -5.539022687136367 0 56.80171767265813 -5.385687662844703 0 57.07772071638391 -2.916993771742455 2.273736754432321e-013 57.23105574067603 -5.355020657985733 2.273736754432321e-013 57.36905726253895 -2.870993264454683 2.273736754432321e-013 57.35372376010969 -2.640990728016732 0 57.53772578926021 -5.324353653127673 2.273736754432321e-013 57.49172528197261 -4.542345029237822 4.547473508864641e-013 55.26836742973711 -5.738358218715803 2.273736754432321e-013 55.11503240544505 -5.1710186288351 2.273736754432321e-013 55.11503240544499 -6.275030803738446 2.273736754432321e-013 55.19169991759111 -3.837003917494712 0 55.29903443459563 -6.30569780859696 0 55.06903189815739 -6.275030803738446 0 55.00769788844053 -6.275030803738446 2.273736754432321e-013 55.19169991759111 -5.738358218715803 2.273736754432321e-013 55.11503240544505 -6.30569780859696 0 55.06903189815739 -6.275030803738446 0 55.00769788844053 -3.576334376198247 2.273736754432321e-013 55.39103544917083 -3.837003917494712 0 55.29903443459563 -4.097673458791178 2.273736754432321e-013 55.40636895160003 -4.281675487941357 0 55.40636895160003 -4.542345029237822 4.547473508864641e-013 55.26836742973711 -6.075695272158555 0 55.43703595645843 -5.1710186288351 2.273736754432321e-013 55.11503240544499 -2.441655196436386 2.273736754432321e-013 57.58372629654787 -2.640990728016732 0 57.53772578926021 -5.186352131264812 2.273736754432321e-013 57.62972680383547 -5.324353653127673 2.273736754432321e-013 57.49172528197261 -5.355020657985733 2.273736754432321e-013 57.36905726253895 -2.870993264454683 2.273736754432321e-013 57.35372376010969 -2.916993771742455 2.273736754432321e-013 57.23105574067603 -5.385687662844703 0 57.07772071638391 -2.870993264454683 2.273736754432321e-013 56.9550526969503 -5.539022687136367 0 56.80171767265813 -5.784358726003575 0 56.55638163379081 -5.830359233291347 0 56.49504762407395 -5.769025223574317 0 56.46438061921549 -5.631023701711911 0 56.41838011192789 -5.370354160414991 2.273736754432321e-013 56.37237960464023 -2.840326259596168 2.273736754432321e-013 56.35704610221109 -2.85565976202497 0 56.20371107791891 -5.416354667702763 2.273736754432321e-013 56.11171006334371 -2.794325752308851 0 56.09637656091445 -5.600356696853396 0 55.88170752690553 -2.579656718299702 2.273736754432321e-013 55.88170752690553 -2.380321186720266 2.273736754432321e-013 55.75903950747187 -2.62565722558702 0 55.62103798560895 -3.192996815467723 0 55.52903697103369 -3.315664834901327 0 55.46770296131689 -3.376998844617901 0 55.32970143945397 -3.4689998591939 0 55.29903443459557 -3.392332347047613 2.273736754432321e-013 55.26836742973717 -2.211652659998435 2.273736754432321e-013 61.171765864983 -2.242319664857405 0 60.63509327996064 -2.190417460696153 0 61.61373148943096 -3.084417007614775 2.273736754432321e-013 60.38062866609494 -2.027650630847802 2.273736754432321e-013 59.63841562206198 -1.874315606555683 0 59.48508059776992 -1.766981089551337 0 59.39307958319461 -1.62897956768893 2.273736754432321e-013 59.37774608076546 -1.33764302153395 2.273736754432321e-013 59.270411563761 -4.101726836866419 0 59.17835341334217 -1.383643528821267 0 59.14774354432728 -1.291642514246178 0 59.04040902732282 -1.168974494812574 2.273736754432321e-013 58.97907501760597 -1.046306475379424 0 58.97907501760597 -1.01563947052091 -2.273736754432321e-013 58.85640699817225 -1.076973480237484 0 58.70307197388019 -4.533312825034045 0 58.53097443109073 -1.214975002100346 2.273736754432321e-013 58.42706893015441 -4.619012541384109 2.273736754432321e-013 58.27373390586234 -4.803014570534288 2.273736754432321e-013 58.07439837428257 -1.582979060401158 0 58.05906487185337 -1.659646572547445 0 57.82906233541519 -1.59831256282996 4.547473508864641e-013 57.56839279411867 -1.904982611414653 2.273736754432321e-013 57.47639177954341 -1.659646572547445 2.273736754432321e-013 57.47639177954341 -1.536978553113841 0 57.44572477468495 -1.291642514246632 2.273736754432321e-013 59.45441359291152 -1.291642514246178 0 59.39307958319466 -1.352976523963207 2.273736754432321e-013 59.42374658805306</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"136\" source=\"#ID8603\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8601\">\r\n\t\t\t\t\t<float_array count=\"408\" id=\"ID8604\">-2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"136\" source=\"#ID8604\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8602\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8600\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8601\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"132\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8602\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 6 5 8 8 5 9 9 5 10 9 10 11 11 10 12 12 10 13 12 13 14 12 14 15 15 14 16 16 14 17 16 17 18 18 17 19 18 19 20 20 19 21 18 20 22 18 22 23 18 23 2 18 2 24 18 24 25 24 2 1 25 24 26 25 26 27 25 27 28 25 28 29 29 28 30 31 32 33 32 31 34 34 31 35 34 35 36 36 35 37 37 35 38 38 35 39 39 35 40 39 40 41 39 41 42 39 42 43 39 43 44 39 44 45 45 44 46 45 46 47 47 46 48 47 48 49 47 49 50 50 49 51 51 49 52 52 49 53 53 49 54 54 49 55 55 49 56 55 56 57 57 56 58 57 58 59 57 59 60 60 59 11 11 59 9 61 62 63 62 61 64 64 61 38 38 61 37 36 65 34 62 66 67 66 62 64 68 69 70 71 70 69 72 73 74 75 76 77 77 76 68 68 76 69 78 69 76 79 80 81 81 80 82 82 80 83 80 84 83 84 85 83 83 85 86 85 87 86 86 87 88 88 87 89 89 87 90 90 87 91 91 87 92 92 87 93 87 94 93 94 95 93 93 95 96 95 97 96 96 97 98 97 99 98 99 100 98 100 101 98 101 102 98 102 103 98 98 103 77 77 103 75 75 103 74 74 103 72 103 104 72 72 104 105 106 105 104 107 108 109 109 108 110 108 111 110 111 112 110 112 113 110 114 115 113 110 113 116 113 115 116 115 117 116 117 118 116 118 119 116 120 121 119 119 121 116 121 122 116 116 122 123 122 124 123 123 124 125 125 124 126 124 127 126 127 128 126 126 128 81 81 128 79 128 129 79 79 129 130 130 129 131 132 131 129 133 134 135 135 134 114 115 114 134</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8605\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8606\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID8609\">-2.262066119026258 2.273736754432321e-013 2.138852868055039 -1.746593356897847 0 1.936280388478707 -2.286235764681805 0 1.727968891911104 -1.010197198348124 0 0.1063365471945303 0.5316827359729359 0 0.02658413679861837 0 0 0 0.9038606511535363 -2.273736754432321e-013 0.1860889575904139 -1.75455302870887 0 0.1860889575904139 -2.153315080688572 2.273736754432321e-013 0.319009641583591 1.24945442953549 0 0.5582668727712985 -2.339404038279099 2.273736754432321e-013 0.7975241039589776 1.462127523924664 0 1.01019719834801 1.418364461478177 0 1.672533903613982 -0.3619243113580524 2.273736754432321e-013 2.002217009694903 -1.219100387168965 2.273736754432321e-013 1.936280388478707 1.813984188774612 2.273736754432321e-013 1.870343767262511 1.418364461478177 0 1.672533903613982 1.462127523924664 0 1.01019719834801 1.813984188774612 2.273736754432321e-013 1.870343767262511 -1.746593356897847 0 1.936280388478707 -2.286235764681805 0 1.727968891911104 -1.219100387168965 2.273736754432321e-013 1.936280388478707 -0.3619243113580524 2.273736754432321e-013 2.002217009694903 -2.339404038279099 2.273736754432321e-013 0.7975241039589776 1.24945442953549 0 0.5582668727712985 -2.153315080688572 2.273736754432321e-013 0.319009641583591 0.9038606511535363 -2.273736754432321e-013 0.1860889575904139 -1.75455302870887 0 0.1860889575904139 -1.010197198348124 0 0.1063365471945303 0.5316827359729359 0 0.02658413679861837 0 0 0 -2.262066119026258 2.273736754432321e-013 2.138852868055039</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID8609\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8607\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID8610\">2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 2.518333528650752e-015 1 -9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017 -2.518333528650752e-015 -1 9.384839181958821e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID8610\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8608\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8606\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8607\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8608\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 6 3 7 6 7 8 6 8 9 9 8 10 9 10 11 11 10 2 11 2 12 12 2 13 13 2 14 14 2 1 15 11 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8608\" />\r\n\t\t\t\t\t<p>16 17 18 19 20 21 21 20 22 22 20 16 16 20 17 20 23 17 17 23 24 23 25 24 24 25 26 25 27 26 27 28 26 26 28 29 30 29 28 20 19 31</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8611\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8612\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID8614\">2.6052236433693 2.273736754432321e-013 11.29928060117561 2.803033507017517 2.273736754432321e-013 9.518991828338869 2.077730673639962 0 13.27737923766088 2.077730673639962 2.273736754432321e-013 15.45328773779468 1.94585743120706 2.273736754432321e-013 17.23357651063142 2.275540537287725 0 18.8819920410358</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID8614\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8613\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8612\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8613\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8615\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8616\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID8618\">2.539287022152621 2.273736754432321e-013 22.24475972306075 2.275540537287725 0 18.8819920410358 2.360219286143092 0 24.66217415918635</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID8618\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8617\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8616\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8617\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8619\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8620\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8622\">2.27554053728818 2.273736754432321e-013 25.80533726873421 2.360219286143092 0 24.66217415918635</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8622\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8621\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8620\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8621\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8623\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8624\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8626\">2.803033507017517 2.273736754432321e-013 9.518991828338869 3.033811681274074 2.273736754432321e-013 8.661815752528611</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8626\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8625\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8624\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8625\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8629\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8630\">\r\n\t\t\t\t\t<float_array count=\"786\" id=\"ID8633\">9.647471759556149 1.673698456497626e-015 47.3580090830008 9.097194002804082 -9.878235978070453e-015 46.57832694059336 9.024682642293191 9.660877330948318e-015 46.46558511140167 9.145534751344064 -1.879874642094534e-015 47.23867215795439 8.936057540468335 7.857045216390342e-016 47.38362619575513 11.30586089671482 1.69081228456126e-015 49.73439328628337 5.600534956967436 2.552434252067812e-015 46.04682944881933 2.358997867389968 9.659921204109429e-015 46.33281968289456 4.440353188793129 -7.217760343884577e-015 46.01461737881643 7.324694343316557 2.555333982723616e-015 46.44947893779411 1.122388043607266 6.996572793972301e-015 46.49762261987916 8.388194139009071 8.776990512419144e-015 47.06150632736306 4.78056419584979 -3.104782821179412e-015 50.95559020748951 8.742694070906575 -3.656811427625943e-015 47.15814226015946 11.5468887162385 4.35783484207035e-015 50.07977344467552 11.72102133785646 -4.522152384798942e-015 50.32929631118328 12.44095714879814 4.367061225124308e-015 51.36092637325084 5.290605960999552 -4.51316586068917e-015 51.57714301488272 13.27846435969159 7.040569208472209e-015 52.6068568619148 7.144539844836465 7.937602370605477e-015 53.83640468511445 13.42637285151746 -9.514519351759075e-016 52.82689520558653 13.75260654430015 1.05972585150865e-014 53.15890279224043 14.68678814451591 4.386856272669992e-015 54.10961813969126 8.102530000133518 1.728760874049334e-015 55.0038413759217 15.17583657928407 1.150001654763441e-014 55.18339208432735 10.44138125192326 -7.136187791946025e-015 57.34158193212621 15.92285855550964 -7.136647823118176e-015 57.27770313151826 16.12327938086886 9.751201563229059e-015 59.00778653866086 12.07416396534969 7.088643590026736e-015 59.28234761033023 16.01395874732073 -9.781379177202301e-015 60.02762482460387 13.21597858312198 1.686887229291723e-014 60.70787116699234 15.79531828697416 1.153923090235357e-014 60.62860123040628 15.30337684781954 1.687249827440678e-014 61.21136606603628 13.80933249199349 1.243173732711264e-014 61.22957740099619 14.61101498668059 -4.442078825936366e-015 61.44811436136529 14.61101498668059 -4.442078825936366e-015 61.44811436136529 15.30337684781954 1.687249827440678e-014 61.21136606603628 13.80933249199349 1.243173732711264e-014 61.22957740099619 13.21597858312198 1.686887229291723e-014 60.70787116699234 15.79531828697416 1.153923090235357e-014 60.62860123040628 16.01395874732073 -9.781379177202301e-015 60.02762482460387 12.07416396534969 7.088643590026736e-015 59.28234761033023 16.12327938086886 9.751201563229059e-015 59.00778653866086 10.44138125192326 -7.136187791946025e-015 57.34158193212621 15.92285855550964 -7.136647823118176e-015 57.27770313151826 15.17583657928407 1.150001654763441e-014 55.18339208432735 8.102530000133518 1.728760874049334e-015 55.0038413759217 14.68678814451591 4.386856272669992e-015 54.10961813969126 7.144539844836465 7.937602370605477e-015 53.83640468511445 13.75260654430015 1.05972585150865e-014 53.15890279224043 13.42637285151746 -9.514519351759075e-016 52.82689520558653 13.27846435969159 7.040569208472209e-015 52.6068568619148 5.290605960999552 -4.51316586068917e-015 51.57714301488272 12.44095714879814 4.367061225124308e-015 51.36092637325084 4.78056419584979 -3.104782821179412e-015 50.95559020748951 11.72102133785646 -4.522152384798942e-015 50.32929631118328 11.5468887162385 4.35783484207035e-015 50.07977344467552 11.30586089671482 1.69081228456126e-015 49.73439328628337 8.936057540468335 7.857045216390342e-016 47.38362619575513 8.742694070906575 -3.656811427625943e-015 47.15814226015946 8.388194139009071 8.776990512419144e-015 47.06150632736306 1.122388043607266 6.996572793972301e-015 46.49762261987916 7.324694343316557 2.555333982723616e-015 46.44947893779411 2.358997867389968 9.659921204109429e-015 46.33281968289456 5.600534956967436 2.552434252067812e-015 46.04682944881933 4.440353188793129 -7.217760343884577e-015 46.01461737881643 9.647471759556149 1.673698456497626e-015 47.3580090830008 9.145534751344064 -1.879874642094534e-015 47.23867215795439 9.097194002804082 -9.878235978070453e-015 46.57832694059336 9.024682642293191 9.660877330948318e-015 46.46558511140167 13.90493031332342 5.265817233126766e-015 52.82970434957654 13.27846435969159 7.040569208472209e-015 52.6068568619148 13.67570650717533 2.59683966033695e-015 52.21285556283217 13.42637285151746 -9.514519351759075e-016 52.82689520558653 13.75260654430015 1.05972585150865e-014 53.15890279224043 14.02922112101947 1.148392888936653e-014 52.94949930280328 14.02922112101947 1.148392888936653e-014 52.94949930280328 13.90493031332342 5.265817233126766e-015 52.82970434957654 13.75260654430015 1.05972585150865e-014 53.15890279224043 13.42637285151746 -9.514519351759075e-016 52.82689520558653 13.27846435969159 7.040569208472209e-015 52.6068568619148 13.67570650717533 2.59683966033695e-015 52.21285556283217 4.763801306517435 9.706659077972176e-015 52.82272625023074 4.115756025110619 8.818114793853304e-015 52.77192321411187 4.484252259059256 2.600225595216001e-015 52.68301817811619 3.988688276265968 1.059657534966858e-014 53.06404011737072 7.144539844836465 7.937602370605477e-015 53.83640468511445 5.171984726958281 1.76951132870414e-014 52.10739211675348 5.290605960999552 -4.51316586068917e-015 51.57714301488272 5.221244726956448 8.236858236063789e-016 52.65761666005677 6.268977940951849 8.29036419886152e-016 53.4005873402645 5.449791402782078 8.821101495901167e-015 53.1866493373416 5.187967245056654 1.326171438504416e-014 53.14787901053791 5.604946713188702 -1.835852898613005e-015 53.35142352027294 5.86677087091413 3.493357223419607e-015 53.37080856606848 6.225567148065493 -2.720331790513182e-015 53.86513087964996 6.720994956003223 8.831931639841614e-015 54.6904965703309 5.876468002181716 -1.827057794531028e-015 54.57269010825798 5.857073739646455 -3.599017080196375e-015 55.18332363746303 6.467998858442452 1.416607527219235e-014 55.39493676235843 6.112362014762534 4.396552435087416e-015 55.45600347881905 5.246150436037342 7.953375185785957e-015 56.02657912749013 5.663302951977744 1.062016193801722e-014 56.33921594317808 5.018682117213579 7.957267042150771e-015 56.56699275981101 5.50395980393301 8.846307614394795e-015 56.68670914813355 4.592642850068607 4.409482021454883e-015 57.25137413957241 4.895557189728577 4.409482106150526e-015 57.25138590020203 4.182128270573225 4.413347417206245e-015 57.78811351598882 4.245148096152564 5.303689347759231e-015 58.08853332827481 -0.6603407366748728 7.85887499765126e-016 47.40903408969761 -1.01812664526398 1.322030386740113e-014 47.39771606565218 -0.7683846302571133 7.021422677867722e-015 47.2764977149422 -1.609798503440216 6.116944689067973e-015 47.6848983677877 1.028967900353155 7.018060064156052e-015 49.48129227265786 0.09658447620019128 -8.415663442308786e-017 49.92711651217412 1.728867149013981 7.911390459535407e-015 50.19668298327478 0.2407982439431615 4.361925860522113e-015 50.64784223606204 2.578237452594658 7.031788171002422e-015 51.38754352920829 0.7970150443586213 5.258047051373408e-015 51.75075596312215 2.692598188853994 1.708754401736308e-015 52.22579168468337 1.424564248943572 8.81967631042325e-015 52.98875157631026 2.781210606532991 1.05952161737123e-014 52.87530827666435 3.010267323264703 1.237302365517352e-014 53.07674087640043 1.721824080029984 5.269696742560433e-015 53.3684035173121 3.556658405595837 5.268145092204254e-015 53.15294515336645 4.829170967905291 -6.040349174245378e-017 53.22541966414524 4.674015657498662 6.159637543122587e-015 53.61312340260718 3.903906118659315 7.935709811930866e-015 53.57360862794885 4.545066400630474 1.504200796272547e-014 53.69452483570479 2.706268052748255 -9.449423549350317e-016 53.730799556904 1.705309913886151 1.593604011177497e-014 54.50735934031761 3.117578087437439 4.383170291091523e-015 53.59779177541501 2.629827712919635 6.164641248344435e-015 54.30792564105848 2.509706717903562 1.14991879244025e-014 55.06833149405708 1.193361889181961 -6.259861423349999e-015 55.69583517602067 1.815673674782827 1.595381845776327e-014 56.97601687327809 0.3814094709477675 -9.184837894256318e-016 57.40477108941354 1.175027292363909 1.152282187320783e-014 58.35008367675749 -0.4265878569338319 1.755068935397346e-015 58.65691426960417 0.8947447017430199 -9.085536307268108e-016 58.78364857843726 -1.120620900054565 1.152993127308923e-014 59.33727751265104 0.6144621111221333 -1.793609678559826e-015 59.21721348011707 -0.2931199950547869 -4.450939465814629e-015 60.21774763339631 -1.707879815022027 1.15314684397613e-014 59.55072470773506 -2.178007008747413 7.979123082478123e-015 59.60186893053771 -1.965715895088502 6.208092500655852e-015 60.34145999829041 -0.7202173144175186 1.686784050346571e-014 60.56459941361255 -1.14731463378025 5.321809266644452e-015 60.60462083619478 4.829170967905291 -6.040349174245378e-017 53.22541966414524 5.187967245056654 1.326171438504416e-014 53.14787901053791 3.556658405595837 5.268145092204254e-015 53.15294515336645 3.988688276265968 1.059657534966858e-014 53.06404011737072 -1.14731463378025 5.321809266644452e-015 60.60462083619478 -0.7202173144175186 1.686784050346571e-014 60.56459941361255 -1.965715895088502 6.208092500655852e-015 60.34145999829041 -0.2931199950547869 -4.450939465814629e-015 60.21774763339631 -2.178007008747413 7.979123082478123e-015 59.60186893053771 -1.707879815022027 1.15314684397613e-014 59.55072470773506 -1.120620900054565 1.152993127308923e-014 59.33727751265104 0.6144621111221333 -1.793609678559826e-015 59.21721348011707 0.8947447017430199 -9.085536307268108e-016 58.78364857843726 -0.4265878569338319 1.755068935397346e-015 58.65691426960417 1.175027292363909 1.152282187320783e-014 58.35008367675749 0.3814094709477675 -9.184837894256318e-016 57.40477108941354 1.815673674782827 1.595381845776327e-014 56.97601687327809 1.193361889181961 -6.259861423349999e-015 55.69583517602067 2.509706717903562 1.14991879244025e-014 55.06833149405708 1.705309913886151 1.593604011177497e-014 54.50735934031761 2.629827712919635 6.164641248344435e-015 54.30792564105848 2.706268052748255 -9.449423549350317e-016 53.730799556904 3.903906118659315 7.935709811930866e-015 53.57360862794885 1.721824080029984 5.269696742560433e-015 53.3684035173121 3.117578087437439 4.383170291091523e-015 53.59779177541501 4.545066400630474 1.504200796272547e-014 53.69452483570479 4.674015657498662 6.159637543122587e-015 53.61312340260718 3.010267323264703 1.237302365517352e-014 53.07674087640043 1.424564248943572 8.81967631042325e-015 52.98875157631026 2.781210606532991 1.05952161737123e-014 52.87530827666435 2.692598188853994 1.708754401736308e-015 52.22579168468337 0.7970150443586213 5.258047051373408e-015 51.75075596312215 2.578237452594658 7.031788171002422e-015 51.38754352920829 0.2407982439431615 4.361925860522113e-015 50.64784223606204 1.728867149013981 7.911390459535407e-015 50.19668298327478 0.09658447620019128 -8.415663442308786e-017 49.92711651217412 1.028967900353155 7.018060064156052e-015 49.48129227265786 -1.609798503440216 6.116944689067973e-015 47.6848983677877 -0.6603407366748728 7.85887499765126e-016 47.40903408969761 -1.01812664526398 1.322030386740113e-014 47.39771606565218 -0.7683846302571133 7.021422677867722e-015 47.2764977149422 4.245148096152564 5.303689347759231e-015 58.08853332827481 4.895557189728577 4.409482106150526e-015 57.25138590020203 4.182128270573225 4.413347417206245e-015 57.78811351598882 4.592642850068607 4.409482021454883e-015 57.25137413957241 5.50395980393301 8.846307614394795e-015 56.68670914813355 5.018682117213579 7.957267042150771e-015 56.56699275981101 5.663302951977744 1.062016193801722e-014 56.33921594317808 5.246150436037342 7.953375185785957e-015 56.02657912749013 6.112362014762534 4.396552435087416e-015 55.45600347881905 5.857073739646455 -3.599017080196375e-015 55.18332363746303 6.467998858442452 1.416607527219235e-014 55.39493676235843 6.720994956003223 8.831931639841614e-015 54.6904965703309 5.876468002181716 -1.827057794531028e-015 54.57269010825798 6.225567148065493 -2.720331790513182e-015 53.86513087964996 7.144539844836465 7.937602370605477e-015 53.83640468511445 6.268977940951849 8.29036419886152e-016 53.4005873402645 5.86677087091413 3.493357223419607e-015 53.37080856606848 5.604946713188702 -1.835852898613005e-015 53.35142352027294 5.449791402782078 8.821101495901167e-015 53.1866493373416 4.763801306517435 9.706659077972176e-015 52.82272625023074 5.221244726956448 8.236858236063789e-016 52.65761666005677 5.171984726958281 1.76951132870414e-014 52.10739211675348 5.290605960999552 -4.51316586068917e-015 51.57714301488272 4.115756025110619 8.818114793853304e-015 52.77192321411187 4.484252259059256 2.600225595216001e-015 52.68301817811619 15.42133615704268 1.699268920458463e-015 50.90866101202546 14.42854188023195 6.051070166606861e-015 51.04082998238579 14.69839848267222 1.324533452846644e-014 50.87341228815389 15.80925367773552 1.701934307655778e-015 51.27877014294453 15.13921417712982 2.589605034556414e-015 51.20827316562663 15.59766219280082 -7.226483565273377e-017 51.57838253175827 16.09137565764838 1.236642150743871e-014 52.15998282984376 15.70345813695563 2.213562258494084e-014 52.05423736386683 15.54476442241089 1.059273005692969e-014 52.53009219597538 15.87978417271369 1.712215091927158e-015 52.70633463927018 15.15684690171805 4.37573496542856e-015 52.56534068463437 14.50129017153802 8.807279971225319e-015 51.26742631004246 14.7865617022387 1.701934307655778e-015 51.27877014294453 14.0872113935952 2.479454229168578e-014 51.27447553264141 13.74623700215358 9.697570857848773e-015 51.56075828742882 14.61023526310565 8.154058912479029e-016 51.50788555444039 14.64550071228219 7.923879405645838e-015 51.93086741834789 13.67570650717533 2.59683966033695e-015 52.21285556283217 14.82182674804034 1.709168933436315e-015 52.28335254015008 13.90493031332342 5.265817233126766e-015 52.82970434957654 15.54476442241089 -2.725630848082623e-015 53.12931673839031 14.02922112101947 1.148392888936653e-014 52.94949930280328 14.39864377817104 1.148649309911811e-014 53.30555918168511 14.8923572430186 1.717165098416084e-015 53.39368040333248 14.8923572430186 1.717165098416084e-015 53.39368040333248 15.54476442241089 -2.725630848082623e-015 53.12931673839031 14.39864377817104 1.148649309911811e-014 53.30555918168511 14.02922112101947 1.148392888936653e-014 52.94949930280328 13.90493031332342 5.265817233126766e-015 52.82970434957654 15.87978417271369 1.712215091927158e-015 52.70633463927018 15.15684690171805 4.37573496542856e-015 52.56534068463437 14.82182674804034 1.709168933436315e-015 52.28335254015008 13.67570650717533 2.59683966033695e-015 52.21285556283217 14.64550071228219 7.923879405645838e-015 51.93086741834789 13.74623700215358 9.697570857848773e-015 51.56075828742882 14.61023526310565 8.154058912479029e-016 51.50788555444039 14.7865617022387 1.701934307655778e-015 51.27877014294453 14.0872113935952 2.479454229168578e-014 51.27447553264141 14.50129017153802 8.807279971225319e-015 51.26742631004246 15.13921417712982 2.589605034556414e-015 51.20827316562663 14.42854188023195 6.051070166606861e-015 51.04082998238579 15.54476442241089 1.059273005692969e-014 52.53009219597538 16.09137565764838 1.236642150743871e-014 52.15998282984376 15.70345813695563 2.213562258494084e-014 52.05423736386683 15.59766219280082 -7.226483565273377e-017 51.57838253175827 15.80925367773552 1.701934307655778e-015 51.27877014294453 15.42133615704268 1.699268920458463e-015 50.90866101202546 14.69839848267222 1.324533452846644e-014 50.87341228815389</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"262\" source=\"#ID8633\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8631\">\r\n\t\t\t\t\t<float_array count=\"786\" id=\"ID8634\">-3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 -3.633011091012239e-017 -1 3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 3.633011091012239e-017 1 -3.720173966784936e-016 6.257843348241789e-015 -1 5.82874126382519e-015 6.257843348241789e-015 -1 5.82874126382519e-015 6.257843348241789e-015 -1 5.82874126382519e-015 6.257843348241789e-015 -1 5.82874126382519e-015 6.257843348241789e-015 -1 5.82874126382519e-015 6.257843348241789e-015 -1 5.82874126382519e-015 -6.257843348241789e-015 1 -5.82874126382519e-015 -6.257843348241789e-015 1 -5.82874126382519e-015 -6.257843348241789e-015 1 -5.82874126382519e-015 -6.257843348241789e-015 1 -5.82874126382519e-015 -6.257843348241789e-015 1 -5.82874126382519e-015 -6.257843348241789e-015 1 -5.82874126382519e-015 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 -1.002352386535822e-016 -1 -1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 1.002352386535822e-016 1 1.920666024273558e-018 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 -3.17512683112615e-015 -1 -2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015 3.17512683112615e-015 1 2.105564854961527e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"262\" source=\"#ID8634\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8632\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8630\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8631\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"250\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8632\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 6 7 8 7 6 9 7 9 10 10 9 11 10 11 12 12 11 13 12 13 4 12 4 5 12 5 14 12 14 15 12 15 16 12 16 17 17 16 18 17 18 19 19 18 20 19 20 21 19 21 22 19 22 23 23 22 24 23 24 25 25 24 26 25 26 27 25 27 28 28 27 29 28 29 30 30 29 31 30 31 32 30 32 33 33 32 34 35 36 37 37 36 38 36 39 38 39 40 38 38 40 41 40 42 41 41 42 43 42 44 43 44 45 43 43 45 46 45 47 46 46 47 48 47 49 48 49 50 48 50 51 48 48 51 52 51 53 52 52 53 54 53 55 54 55 56 54 56 57 54 57 58 54 58 59 54 59 60 54 54 60 61 60 62 61 61 62 63 62 64 63 65 63 64 57 66 58 58 66 67 67 66 68 69 68 66 70 71 72 71 70 73 73 70 74 74 70 75 76 77 78 78 77 79 79 77 80 81 80 77 82 83 84 83 82 85 86 87 88 87 86 89 89 86 90 89 90 82 82 90 91 82 91 92 82 92 85 91 90 93 93 90 94 90 86 95 95 86 96 95 96 97 97 96 98 98 96 99 98 99 100 98 100 101 101 100 102 101 102 103 103 102 104 103 104 105 105 104 106 105 106 107 107 106 108 109 110 111 110 109 112 112 109 113 112 113 114 114 113 115 114 115 116 116 115 117 116 117 118 118 117 119 118 119 120 120 119 121 120 121 122 120 122 123 123 122 124 123 124 125 123 125 126 123 126 127 127 126 128 123 129 130 129 123 131 131 123 127 130 129 132 130 132 133 130 133 134 134 133 135 134 135 136 136 135 137 136 137 138 138 137 139 138 139 140 140 139 141 140 141 142 140 142 143 143 142 144 144 142 145 145 142 146 145 146 147 92 124 85 124 92 125 148 149 150 151 150 149 152 153 154 153 155 154 154 155 156 156 155 157 157 155 158 155 159 158 159 160 158 158 160 161 160 162 161 161 162 163 162 164 163 163 164 165 164 166 165 165 166 167 166 168 167 168 169 167 170 171 172 172 171 169 167 169 171 173 174 170 170 174 171 174 148 171 148 150 171 150 175 171 171 175 176 175 177 176 177 178 176 176 178 179 178 180 179 179 180 181 180 182 181 181 182 183 182 184 183 183 184 185 184 186 185 185 186 187 188 187 186 189 190 191 191 190 192 190 193 192 192 193 194 193 195 194 194 195 196 195 197 196 196 197 198 197 199 198 199 200 198 198 200 201 201 200 202 200 203 202 202 203 204 205 204 206 206 204 207 151 149 208 149 207 208 207 204 208 208 204 209 204 203 209 209 203 210 211 210 203 151 208 212 213 212 208 214 215 216 215 214 217 215 217 218 218 217 219 219 217 220 219 220 221 221 220 222 222 220 223 222 223 224 218 225 215 225 218 226 225 226 227 227 226 228 228 226 229 228 229 230 228 230 231 231 230 232 231 232 233 233 232 224 233 224 223 233 223 234 233 234 235 235 234 236 236 234 237 238 239 240 240 239 241 241 239 242 239 243 242 243 244 242 244 245 242 242 245 246 245 247 246 246 247 248 247 249 248 249 250 248 248 250 251 251 250 252 250 253 252 254 252 253 244 243 255 243 256 255 255 256 257 257 256 258 256 259 258 258 259 253 253 259 254 259 260 254 261 254 260</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8635\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8636\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID8639\">-0.04697743779361652 4.936943125844929e-016 6.835804550344565 -0.4855539984880846 4.045038110469432e-015 6.645586245239627 0.1428486180917679 4.453428266784303e-017 6.131682909112681 -1.289623262131467 4.937713957850346e-016 6.846508134570391 0.09797611941460183 5.199003046638907e-017 7.166969767566807 -2.198314649131527 7.203603455492729e-016 7.477524716600193 -2.670893288988709 4.93419477842206e-015 6.781423399001624 0.8434511531106206 2.496418436306559e-015 7.436041212544197 0.939460416782214 1.834381656484418e-015 8.004945440534304 -1.498272530948656 -1.557188828481923e-016 9.157588754711743 2.694740003060314 3.854423668156584e-015 11.0099015615132 -0.2260920038534851 4.085017073758002e-015 12.19696706251278 4.954104224819182 2.768724447132272e-015 14.41521679927089 0.2161113000699987 1.875853046817482e-015 13.76356101790329 0.2953696165639732 4.546321691521471e-015 14.58745639466968 5.669521378584295 -1.216288297849042e-015 16.05236724076514 0.4380344249031296 3.220557965910019e-015 15.49057254859031 0.7233644449562604 -3.261082236198445e-016 16.33031208078755 3.526041102472366 1.011233134123755e-015 17.03483753737985 6.401395595916383 1.461013958071909e-015 17.82516111569275 3.570285818093872 5.707109273300482e-016 17.53014283580085 1.106637981331077 4.120766230876313e-015 17.16100736610471 3.526041102472366 1.011233134123755e-015 17.03483753737985 0.7233644449562604 -3.261082236198445e-016 16.33031208078755 1.106637981331077 4.120766230876313e-015 17.16100736610471 3.570285818093872 5.707109273300482e-016 17.53014283580085 6.401395595916383 1.461013958071909e-015 17.82516111569275 5.669521378584295 -1.216288297849042e-015 16.05236724076514 0.4380344249031296 3.220557965910019e-015 15.49057254859031 0.2953696165639732 4.546321691521471e-015 14.58745639466968 4.954104224819182 2.768724447132272e-015 14.41521679927089 0.2161113000699987 1.875853046817482e-015 13.76356101790329 -0.2260920038534851 4.085017073758002e-015 12.19696706251278 2.694740003060314 3.854423668156584e-015 11.0099015615132 -1.498272530948656 -1.557188828481923e-016 9.157588754711743 0.939460416782214 1.834381656484418e-015 8.004945440534304 -2.198314649131527 7.203603455492729e-016 7.477524716600193 0.8434511531106206 2.496418436306559e-015 7.436041212544197 0.09797611941460183 5.199003046638907e-017 7.166969767566807 -1.289623262131467 4.937713957850346e-016 6.846508134570391 -2.670893288988709 4.93419477842206e-015 6.781423399001624 -0.04697743779361652 4.936943125844929e-016 6.835804550344565 -0.4855539984880846 4.045038110469432e-015 6.645586245239627 0.1428486180917679 4.453428266784303e-017 6.131682909112681</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID8639\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8637\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID8640\">-2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 -2.808426458319419e-016 -1 1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016 2.808426458319419e-016 1 -1.12215948556422e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID8640\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8638\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8636\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8637\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"40\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8638\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 5 6 5 3 4 5 4 7 5 7 8 5 8 9 9 8 10 9 10 11 11 10 12 11 12 13 13 12 14 14 12 15 14 15 16 16 15 17 17 15 18 18 15 19 18 19 20 21 17 18 22 23 24 25 26 22 26 27 22 22 27 23 23 27 28 28 27 29 27 30 29 29 30 31 31 30 32 30 33 32 32 33 34 33 35 34 34 35 36 35 37 36 37 38 36 38 39 36 40 36 39 38 41 39 39 41 42 43 42 41</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8641\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8642\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID8645\">3.570285818093872 5.707109273300482e-016 17.53014283580085 1.106637981331077 4.120766230876313e-015 17.16100736610471 3.526041102472366 1.011233134123755e-015 17.03483753737985 -0.5543063299424613 5.453657642451832e-015 17.24762420868202 -0.8531470742536644 3.233323825431981e-015 17.26320850102101 -1.287284494781658 6.00803368839658e-015 32.56178385495908 -1.841573163439226 6.793781754691152e-016 32.61941046965081 -1.48484942624008 1.566252769234268e-015 32.4383643971895 -0.8098363137986642 7.785279347611557e-015 32.68520319512243 -2.198296900638371 -2.074964182960373e-016 32.80045654211212 -4.824934321910889 -1.189797720773611e-015 19.73078382084429 -5.109965037829257 1.012524908715383e-015 17.21421018985316 6.401395595916383 1.461013958071909e-015 17.82516111569275 8.275454779200745 6.347401657253805e-015 18.02044909816492 9.285568518601368 5.460705674746832e-015 18.2262966919976 10.295682258002 4.57400969223986e-015 18.43214428583028 9.652945587137557 2.397784116756436e-015 24.57249084830455 -4.44489390518624 5.069853182228103e-015 25.61861672877715 9.250826448285869 -3.793009885690388e-015 28.24595832022887 -4.484473851702117 1.042915793173535e-014 29.8168679562631 -0.5958076380521185 9.542082137536503e-015 29.96997582982829 8.560074052777443 6.000037843566349e-015 31.45150044695667 -0.184214030847035 4.658048903767784e-015 30.10162314168335 0.1121333663405091 8.212421714357167e-015 30.33200611383915 0.375553274951776 3.775025642042119e-015 30.81745573801338 0.4990311554258219 -2.181034544272238e-016 31.32758951247538 0.482567411137639 -1.990905011180739e-015 31.82126734355395 7.107290909820207 3.351808908284596e-015 33.7157565907083 8.362716052614415 6.912111920739264e-016 34.26251414185652 0.2767708092225076 1.564415873990614e-015 32.18329762756476 -0.1018953094060358 4.231202810858387e-015 32.49596008142525 -2.024744066937839 -2.055410406205047e-016 33.07197549171882 -1.631817034048096 6.013982414075433e-015 33.38780931696149 -0.9183643157769073 6.015959129124843e-015 33.66229112198726 7.684065709197902 -1.974192929159361e-015 34.14186607645582 3.897412187033833 -4.635298485539939e-015 34.61810618679059 2.894325035741151 7.799018880127271e-015 34.59304099210329 5.151271025305827 4.243958562802059e-015 34.26719252031766 1.941392302519454 1.313043603685274e-014 34.9188894638889 0.7059506804973896 2.478347634439172e-015 35.759343378917 6.279744020088208 8.681240446754435e-015 33.76588698008295 -1.451921937663657 9.988600789455689e-015 30.30732219876396 -2.811378259666905 2.446257299459848e-015 31.3033581464278 -1.023864586170478 4.657752629931571e-015 30.06048328322471 -1.756501408682876 6.437605497211314e-015 30.5459331426115 -1.937602595853057 7.772598842666839e-015 30.92441937000586 -1.962298010597921 5.555767329136591e-015 31.42632493756356 -2.824596449954298 3.337069853664237e-015 31.66912760501871 -1.917022814649081 1.560712454425772e-015 31.66904986725694 -2.598223092146586 4.22834428794671e-015 32.09903259876207 -2.598223092146586 4.22834428794671e-015 32.09903259876207 -1.917022814649081 1.560712454425772e-015 31.66904986725694 -2.824596449954298 3.337069853664237e-015 31.66912760501871 -1.962298010597921 5.555767329136591e-015 31.42632493756356 -2.811378259666905 2.446257299459848e-015 31.3033581464278 -1.937602595853057 7.772598842666839e-015 30.92441937000586 -1.756501408682876 6.437605497211314e-015 30.5459331426115 -1.451921937663657 9.988600789455689e-015 30.30732219876396 -0.5958076380521185 9.542082137536503e-015 29.96997582982829 -4.484473851702117 1.042915793173535e-014 29.8168679562631 -1.023864586170478 4.657752629931571e-015 30.06048328322471 5.151271025305827 4.243958562802059e-015 34.26719252031766 6.279744020088208 8.681240446754435e-015 33.76588698008295 2.894325035741151 7.799018880127271e-015 34.59304099210329 7.107290909820207 3.351808908284596e-015 33.7157565907083 -0.9183643157769073 6.015959129124843e-015 33.66229112198726 1.941392302519454 1.313043603685274e-014 34.9188894638889 0.7059506804973896 2.478347634439172e-015 35.759343378917 3.897412187033833 -4.635298485539939e-015 34.61810618679059 7.684065709197902 -1.974192929159361e-015 34.14186607645582 8.362716052614415 6.912111920739264e-016 34.26251414185652 -1.631817034048096 6.013982414075433e-015 33.38780931696149 -2.024744066937839 -2.055410406205047e-016 33.07197549171882 -2.198296900638371 -2.074964182960373e-016 32.80045654211212 -0.8098363137986642 7.785279347611557e-015 32.68520319512243 -0.1018953094060358 4.231202810858387e-015 32.49596008142525 0.2767708092225076 1.564415873990614e-015 32.18329762756476 0.482567411137639 -1.990905011180739e-015 31.82126734355395 8.560074052777443 6.000037843566349e-015 31.45150044695667 0.4990311554258219 -2.181034544272238e-016 31.32758951247538 0.375553274951776 3.775025642042119e-015 30.81745573801338 0.1121333663405091 8.212421714357167e-015 30.33200611383915 -0.184214030847035 4.658048903767784e-015 30.10162314168335 9.250826448285869 -3.793009885690388e-015 28.24595832022887 -4.44489390518624 5.069853182228103e-015 25.61861672877715 9.652945587137557 2.397784116756436e-015 24.57249084830455 -4.824934321910889 -1.189797720773611e-015 19.73078382084429 10.295682258002 4.57400969223986e-015 18.43214428583028 9.285568518601368 5.460705674746832e-015 18.2262966919976 8.275454779200745 6.347401657253805e-015 18.02044909816492 6.401395595916383 1.461013958071909e-015 17.82516111569275 3.570285818093872 5.707109273300482e-016 17.53014283580085 -0.8531470742536644 3.233323825431981e-015 17.26320850102101 -5.109965037829257 1.012524908715383e-015 17.21421018985316 -1.841573163439226 6.793781754691152e-016 32.61941046965081 -1.287284494781658 6.00803368839658e-015 32.56178385495908 -1.48484942624008 1.566252769234268e-015 32.4383643971895 -0.5543063299424613 5.453657642451832e-015 17.24762420868202 1.106637981331077 4.120766230876313e-015 17.16100736610471 3.526041102472366 1.011233134123755e-015 17.03483753737985</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID8645\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8643\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID8646\">-1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 -1.082019742753219e-016 -1 4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017 1.082019742753219e-016 1 -4.671167610408626e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID8646\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8644\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8642\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8643\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8644\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 6 5 8 6 8 9 4 10 11 10 4 0 10 0 12 10 12 13 10 13 14 10 14 15 10 15 16 10 16 17 17 16 18 17 18 19 19 18 20 20 18 21 20 21 22 22 21 23 23 21 24 24 21 25 25 21 26 26 21 27 27 21 28 26 27 29 29 27 30 30 27 8 8 27 9 9 27 31 31 27 32 32 27 33 27 28 34 35 36 37 33 38 39 38 33 36 36 33 40 40 33 27 36 40 37 19 41 42 41 19 43 43 19 20 42 41 44 42 44 45 42 45 46 42 46 47 47 46 48 47 48 49 50 51 52 51 53 52 52 53 54 53 55 54 55 56 54 56 57 54 58 59 60 60 59 57 54 57 59 61 62 63 64 65 62 62 65 63 63 65 66 67 66 65 61 63 68 69 70 64 65 64 71 71 64 72 72 64 73 73 64 74 74 64 75 75 64 76 76 64 77 70 78 64 64 78 77 77 78 79 79 78 80 80 78 81 81 78 82 82 78 58 78 83 58 58 83 59 59 83 84 83 85 84 84 85 86 85 87 86 87 88 86 88 89 86 89 90 86 90 91 86 91 92 86 93 86 92 73 74 94 74 95 94 96 94 95 92 91 97 97 91 98 99 98 91</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8647\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8648\">\r\n\t\t\t\t\t<float_array count=\"528\" id=\"ID8651\">3.89572608018274 1.898007977806051e-015 1.423655710178216 1.590137319777957 1.232255852425281e-015 1.476656163604273 2.751669101648602 8.985752793531506e-016 1.391444051298591 4.57249225969943 8.998511481026241e-016 1.568608057530112 1.364442841833961 -9.73604409351193e-017 1.844814206070121 5.132881166134019 9.008183223995266e-016 1.702907508969799 5.122830275127519 1.125322765813762e-015 2.044474650268277 0.3489325520729487 5.724282992192869e-016 2.352328182678895 4.700693659605487 -9.796153911977658e-016 2.667332648321067 -1.157407072395739 3.558660806693112e-016 3.113598912379541 3.776014107259252 1.800283062713437e-015 3.27009831631329 -2.460644638912227 3.425127122262395e-017 4.703809152888682 3.283521456379267 1.412645530600709e-015 3.400697520857 2.791028805499281 1.025007998487982e-015 3.531296725400712 1.886451035166017 2.250449522189921e-015 4.113970298544859 1.102483150160701 3.810404917395512e-015 4.897565761019759 -3.224807625790335 3.154207385661337e-015 6.277293661170986 0.3989223932071075 1.597338386153677e-015 5.922267537734023 0.1428486180917679 4.453428266784303e-017 6.131682909112681 -0.4855539984880846 4.045038110469432e-015 6.645586245239627 -3.21406674881577 4.767110459339366e-017 6.567254310477241 -2.670893288988709 4.93419477842206e-015 6.781423399001624 -1.289623262131467 4.937713957850346e-016 6.846508134570391 -1.289623262131467 4.937713957850346e-016 6.846508134570391 -0.4855539984880846 4.045038110469432e-015 6.645586245239627 -2.670893288988709 4.93419477842206e-015 6.781423399001624 -3.21406674881577 4.767110459339366e-017 6.567254310477241 -3.224807625790335 3.154207385661337e-015 6.277293661170986 0.1428486180917679 4.453428266784303e-017 6.131682909112681 0.3989223932071075 1.597338386153677e-015 5.922267537734023 1.102483150160701 3.810404917395512e-015 4.897565761019759 -2.460644638912227 3.425127122262395e-017 4.703809152888682 1.886451035166017 2.250449522189921e-015 4.113970298544859 2.791028805499281 1.025007998487982e-015 3.531296725400712 3.283521456379267 1.412645530600709e-015 3.400697520857 3.776014107259252 1.800283062713437e-015 3.27009831631329 -1.157407072395739 3.558660806693112e-016 3.113598912379541 4.700693659605487 -9.796153911977658e-016 2.667332648321067 0.3489325520729487 5.724282992192869e-016 2.352328182678895 5.122830275127519 1.125322765813762e-015 2.044474650268277 1.364442841833961 -9.73604409351193e-017 1.844814206070121 5.132881166134019 9.008183223995266e-016 1.702907508969799 4.57249225969943 8.998511481026241e-016 1.568608057530112 1.590137319777957 1.232255852425281e-015 1.476656163604273 3.89572608018274 1.898007977806051e-015 1.423655710178216 2.751669101648602 8.985752793531506e-016 1.391444051298591 2.717493167927726 2.498872548096815e-016 3.813923707285681 3.283521456379267 1.412645530600709e-015 3.400697520857 3.776014107259252 1.800283062713437e-015 3.27009831631329 2.791028805499281 1.025007998487982e-015 3.531296725400712 1.886451035166017 2.250449522189921e-015 4.113970298544859 1.909895181142471 7.042614599986008e-016 5.242072942115825 1.102483150160701 3.810404917395512e-015 4.897565761019759 0.3989223932071075 1.597338386153677e-015 5.922267537734023 1.299019475765022 7.105218910602115e-016 6.111381049292862 0.1428486180917679 4.453428266784303e-017 6.131682909112681 2.148033167984586 2.713096957222508e-015 6.69091994421922 -0.04697743779361652 4.936943125844929e-016 6.835804550344565 1.661403368785525 1.161542294378672e-015 7.073829579624653 0.09797611941460183 5.199003046638907e-017 7.166969767566807 0.8434511531106206 2.496418436306559e-015 7.436041212544197 0.8434511531106206 2.496418436306559e-015 7.436041212544197 1.661403368785525 1.161542294378672e-015 7.073829579624653 0.09797611941460183 5.199003046638907e-017 7.166969767566807 -0.04697743779361652 4.936943125844929e-016 6.835804550344565 2.148033167984586 2.713096957222508e-015 6.69091994421922 0.1428486180917679 4.453428266784303e-017 6.131682909112681 1.299019475765022 7.105218910602115e-016 6.111381049292862 0.3989223932071075 1.597338386153677e-015 5.922267537734023 1.909895181142471 7.042614599986008e-016 5.242072942115825 1.102483150160701 3.810404917395512e-015 4.897565761019759 1.886451035166017 2.250449522189921e-015 4.113970298544859 2.717493167927726 2.498872548096815e-016 3.813923707285681 2.791028805499281 1.025007998487982e-015 3.531296725400712 3.283521456379267 1.412645530600709e-015 3.400697520857 3.776014107259252 1.800283062713437e-015 3.27009831631329 -3.224807625790335 3.154207385661337e-015 6.277293661170986 -4.191701969138299 4.476140613515044e-015 4.842283980660823 -2.460644638912227 3.425127122262395e-017 4.703809152888682 -4.426100671169674 1.818565256318934e-015 5.808718894007146 -4.045202679525071 4.26421950457883e-015 6.248007811727184 -5.041396961470662 -1.836324975199802e-016 5.281572663168274 -6.180949983894293 1.368612771593353e-015 4.994558921038022 -5.920391489025832 -1.842652163368901e-016 5.193714879624293 0.6371898633743545 2.004157646639289e-015 0.7470537516950087 -2.73273468643631 7.815261821539297e-016 0.5545781113416832 -0.7829925246307363 7.813529151909576e-016 0.5305186856990893 -4.875043965374021 8.944544245969613e-016 0.81923226383537 1.590137319777957 1.232255852425281e-015 1.476656163604273 -6.560006038591898 1.008595535780797e-015 1.252302395827255 -7.56555559162425 9.012941205129733e-016 1.768975668387038 1.364442841833961 -9.73604409351193e-017 1.844814206070121 -7.52995433288945 1.832816809558409e-017 2.492766094746536 0.3489325520729487 5.724282992192869e-016 2.352328182678895 -1.157407072395739 3.558660806693112e-016 3.113598912379541 -7.319231717370408 1.469581435362094e-015 3.598535302677305 -6.916585770971421 2.696831087431819e-015 4.432281147597212 -6.410003046948426 4.036272739862803e-015 5.428448374737057 -4.191701969138299 4.476140613515044e-015 4.842283980660823 -2.460644638912227 3.425127122262395e-017 4.703809152888682 -6.180949983894293 1.368612771593353e-015 4.994558921038022 -6.410003046948426 4.036272739862803e-015 5.428448374737057 -6.916585770971421 2.696831087431819e-015 4.432281147597212 -7.319231717370408 1.469581435362094e-015 3.598535302677305 -1.157407072395739 3.558660806693112e-016 3.113598912379541 -7.52995433288945 1.832816809558409e-017 2.492766094746536 0.3489325520729487 5.724282992192869e-016 2.352328182678895 1.364442841833961 -9.73604409351193e-017 1.844814206070121 -7.56555559162425 9.012941205129733e-016 1.768975668387038 1.590137319777957 1.232255852425281e-015 1.476656163604273 -6.560006038591898 1.008595535780797e-015 1.252302395827255 -4.875043965374021 8.944544245969613e-016 0.81923226383537 0.6371898633743545 2.004157646639289e-015 0.7470537516950087 -2.73273468643631 7.815261821539297e-016 0.5545781113416832 -0.7829925246307363 7.813529151909576e-016 0.5305186856990893 -5.920391489025832 -1.842652163368901e-016 5.193714879624293 -5.041396961470662 -1.836324975199802e-016 5.281572663168274 -4.045202679525071 4.26421950457883e-015 6.248007811727184 -3.224807625790335 3.154207385661337e-015 6.277293661170986 -4.426100671169674 1.818565256318934e-015 5.808718894007146 4.821304351683067 1.561743066187254e-015 0.9795886838578776 2.489502882054916 2.005253489713309e-015 0.8992198340405464 4.198150319406468 1.174402589544952e-016 0.8389433142838794 5.142932057140491 1.009380786372839e-015 1.361340367671316 3.89572608018274 1.898007977806051e-015 1.423655710178216 2.751669101648602 8.985752793531506e-016 1.391444051298591 4.57249225969943 8.998511481026241e-016 1.568608057530112 5.132881166134019 9.008183223995266e-016 1.702907508969799 1.815831797721954 5.634707014603982e-016 1.10849812113843 1.752488837414795 8.949417633390135e-016 0.8869029266440576 1.590137319777957 1.232255852425281e-015 1.476656163604273 1.590137319777957 1.232255852425281e-015 1.476656163604273 2.751669101648602 8.985752793531506e-016 1.391444051298591 1.815831797721954 5.634707014603982e-016 1.10849812113843 5.142932057140491 1.009380786372839e-015 1.361340367671316 4.821304351683067 1.561743066187254e-015 0.9795886838578776 2.489502882054916 2.005253489713309e-015 0.8992198340405464 1.752488837414795 8.949417633390135e-016 0.8869029266440576 5.132881166134019 9.008183223995266e-016 1.702907508969799 4.57249225969943 8.998511481026241e-016 1.568608057530112 3.89572608018274 1.898007977806051e-015 1.423655710178216 4.198150319406468 1.174402589544952e-016 0.8389433142838794 0 1.443441918347882e-015 -0.03113393806997999 -3.885035840047358 2.228045315191811e-016 0.05328315567364556 -1.499117197873478 -2.220446049250307e-016 -0.05223838791533764 1.140173285528954 6.685655791988078e-016 0.2854304574843818 -5.1307811966922 6.685655791988078e-016 0.2854304574843818 1.689145877107636 7.823236153675664e-016 0.6653077321496848 -0.7829925246307363 7.813529151909576e-016 0.5305186856990893 0.6371898633743545 2.004157646639289e-015 0.7470537516950087 1.752488837414795 8.949417633390135e-016 0.8869029266440576 1.590137319777957 1.232255852425281e-015 1.476656163604273 1.815831797721954 5.634707014603982e-016 1.10849812113843 -2.73273468643631 7.815261821539297e-016 0.5545781113416832 -6.482097817703376 8.930419485475521e-016 0.6230993028841438 -4.875043965374021 8.944544245969613e-016 0.81923226383537 -7.601156850359081 1.18925535992628e-016 1.045185242027531 -6.560006038591898 1.008595535780797e-015 1.252302395827255 -7.56555559162425 9.012941205129733e-016 1.768975668387038 -7.56555559162425 9.012941205129733e-016 1.768975668387038 -6.560006038591898 1.008595535780797e-015 1.252302395827255 -7.601156850359081 1.18925535992628e-016 1.045185242027531 -4.875043965374021 8.944544245969613e-016 0.81923226383537 -6.482097817703376 8.930419485475521e-016 0.6230993028841438 -2.73273468643631 7.815261821539297e-016 0.5545781113416832 -0.7829925246307363 7.813529151909576e-016 0.5305186856990893 -5.1307811966922 6.685655791988078e-016 0.2854304574843818 1.815831797721954 5.634707014603982e-016 1.10849812113843 1.752488837414795 8.949417633390135e-016 0.8869029266440576 1.590137319777957 1.232255852425281e-015 1.476656163604273 0.6371898633743545 2.004157646639289e-015 0.7470537516950087 1.689145877107636 7.823236153675664e-016 0.6653077321496848 1.140173285528954 6.685655791988078e-016 0.2854304574843818 -3.885035840047358 2.228045315191811e-016 0.05328315567364556 0 1.443441918347882e-015 -0.03113393806997999 -1.499117197873478 -2.220446049250307e-016 -0.05223838791533764</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"176\" source=\"#ID8651\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8649\">\r\n\t\t\t\t\t<float_array count=\"528\" id=\"ID8652\">8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 8.757928342673676e-017 -1 3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 -8.757928342673676e-017 1 -3.735195885648735e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 2.636430262840568e-016 -1 1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 -2.636430262840568e-016 1 -1.002840813327185e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 2.756027676582057e-018 -1 3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -2.756027676582057e-018 1 -3.239721354466848e-016 -1.857108279342485e-017 -1 1.197737959664697e-016 -1.857108279342485e-017 -1 1.197737959664697e-016 -1.857108279342485e-017 -1 1.197737959664697e-016 -1.857108279342485e-017 -1 1.197737959664697e-016 -1.857108279342485e-017 -1 1.197737959664697e-016 -1.857108279342485e-017 -1 1.197737959664697e-016 -1.857108279342485e-017 -1 1.197737959664697e-016 -1.857108279342485e-017 -1 1.197737959664697e-016 -1.857108279342485e-017 -1 1.197737959664697e-016 -1.857108279342485e-017 -1 1.197737959664697e-016 -1.857108279342485e-017 -1 1.197737959664697e-016 1.857108279342485e-017 1 -1.197737959664697e-016 1.857108279342485e-017 1 -1.197737959664697e-016 1.857108279342485e-017 1 -1.197737959664697e-016 1.857108279342485e-017 1 -1.197737959664697e-016 1.857108279342485e-017 1 -1.197737959664697e-016 1.857108279342485e-017 1 -1.197737959664697e-016 1.857108279342485e-017 1 -1.197737959664697e-016 1.857108279342485e-017 1 -1.197737959664697e-016 1.857108279342485e-017 1 -1.197737959664697e-016 1.857108279342485e-017 1 -1.197737959664697e-016 1.857108279342485e-017 1 -1.197737959664697e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 4.71774149299156e-017 -1 3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016 -4.71774149299156e-017 1 -3.199804265515666e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"176\" source=\"#ID8652\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8650\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8648\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8649\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"156\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8650\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 7 6 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 11 13 14 11 14 15 11 15 16 16 15 17 16 17 18 16 18 19 16 19 20 20 19 21 21 19 22 23 24 25 25 24 26 26 24 27 24 28 27 28 29 27 29 30 27 27 30 31 30 32 31 32 33 31 33 34 31 34 35 31 31 35 36 35 37 36 36 37 38 37 39 38 38 39 40 39 41 40 41 42 40 40 42 43 42 44 43 45 43 44 46 47 48 47 46 49 49 46 50 50 46 51 50 51 52 52 51 53 53 51 54 53 54 55 55 54 56 55 56 57 57 56 58 57 58 59 59 58 60 61 62 63 63 62 64 62 65 64 64 65 66 65 67 66 66 67 68 67 69 68 68 69 70 70 69 71 69 72 71 71 72 73 73 72 74 75 74 72 76 77 78 77 76 79 79 76 80 81 82 77 82 81 83 84 85 86 85 84 87 87 84 88 87 88 89 89 88 90 90 88 91 90 91 92 92 91 93 92 93 94 92 94 95 95 94 78 95 78 96 96 78 82 96 82 97 82 78 77 98 99 100 101 100 102 100 99 102 102 99 103 99 104 103 103 104 105 104 106 105 106 107 105 105 107 108 107 109 108 108 109 110 110 109 111 109 112 111 111 112 113 114 113 112 115 116 100 98 100 116 117 118 119 119 118 98 99 98 118 120 121 122 123 124 125 124 123 126 126 123 127 121 128 129 128 121 120 128 120 123 128 123 125 128 125 130 131 132 133 132 134 133 134 135 133 135 136 133 137 133 136 138 134 139 139 134 140 132 140 134 141 136 135 142 143 144 143 142 145 143 145 146 146 145 147 146 147 148 148 147 149 149 147 150 149 150 151 151 150 152 146 153 154 153 146 148 154 153 155 154 155 156 156 155 157 156 157 158 159 160 161 160 162 161 161 162 163 162 164 163 165 166 164 163 164 166 167 168 169 169 168 170 168 171 170 170 171 165 165 171 166 171 172 166 166 172 173 172 174 173 175 173 174</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8653\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8656\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID8659\">7.684065709197902 -1.974192929159361e-015 34.14186607645582 6.279744020088208 8.681240446754435e-015 33.76588698008295 7.107290909820207 3.351808908284596e-015 33.7157565907083 6.480361288996718 1.312953348448611e-014 34.79356325523965 8.362716052614415 6.912111920739264e-016 34.26251414185652 8.310995330021397 8.703082239096745e-015 36.7987847105406 6.405129863577911 1.048034163255753e-014 36.92411115440243 8.486535591581992 -2.818507252346414e-015 40.23272696727099 6.246056976679124 7.832524707711061e-015 39.24557805698256 6.145548066614427 2.888683572957833e-016 40.05931342582397 5.872343985804863 -1.381527157393801e-016 42.42935305433843 8.285917919298493 1.14039001453446e-014 41.83690413151175 7.203502084334672 7.857175828531915e-015 42.66857225173894 7.54620016852257 1.052245112939234e-014 42.77133263602052 8.039163772066472 -1.019469000382671e-015 43.38221230296578 7.866051872231863 -1.019921425344098e-015 43.31938968212926 8.014554533847166 7.579977274330451e-016 43.53632868698652 7.6375861658388 -1.019921425344098e-015 43.31938968212926 6.128326422388489 -1.357727008430595e-016 42.75983608724977 7.203502084334672 7.857175828531915e-015 42.66857225173894 5.872343985804863 -1.381527157393801e-016 42.42935305433843 6.128326422388489 -1.357727008430595e-016 42.75983608724977 7.866051872231863 -1.019921425344098e-015 43.31938968212926 7.54620016852257 1.052245112939234e-014 42.77133263602052 7.6375861658388 -1.019921425344098e-015 43.31938968212926 8.014554533847166 7.579977274330451e-016 43.53632868698652 8.039163772066472 -1.019469000382671e-015 43.38221230296578 8.285917919298493 1.14039001453446e-014 41.83690413151175 8.486535591581992 -2.818507252346414e-015 40.23272696727099 6.145548066614427 2.888683572957833e-016 40.05931342582397 6.246056976679124 7.832524707711061e-015 39.24557805698256 6.405129863577911 1.048034163255753e-014 36.92411115440243 8.310995330021397 8.703082239096745e-015 36.7987847105406 6.480361288996718 1.312953348448611e-014 34.79356325523965 8.362716052614415 6.912111920739264e-016 34.26251414185652 7.684065709197902 -1.974192929159361e-015 34.14186607645582 6.279744020088208 8.681240446754435e-015 33.76588698008295 7.107290909820207 3.351808908284596e-015 33.7157565907083 6.480361288996718 1.312953348448611e-014 34.79356325523965 5.151271025305827 4.243958562802059e-015 34.26719252031766 6.279744020088208 8.681240446754435e-015 33.76588698008295 3.897412187033833 -4.635298485539939e-015 34.61810618679059 1.941392302519454 1.313043603685274e-014 34.9188894638889 2.894325035741151 7.799018880127271e-015 34.59304099210329 6.405129863577911 1.048034163255753e-014 36.92411115440243 0.7059506804973896 2.478347634439172e-015 35.759343378917 5.155218849447972 2.250325974020039e-016 41.5035173087179 6.246056976679124 7.832524707711061e-015 39.24557805698256 6.145548066614427 2.888683572957833e-016 40.05931342582397 5.872343985804863 -1.381527157393801e-016 42.42935305433843 5.872343985804863 -1.381527157393801e-016 42.42935305433843 6.145548066614427 2.888683572957833e-016 40.05931342582397 5.155218849447972 2.250325974020039e-016 41.5035173087179 6.246056976679124 7.832524707711061e-015 39.24557805698256 6.405129863577911 1.048034163255753e-014 36.92411115440243 0.7059506804973896 2.478347634439172e-015 35.759343378917 1.941392302519454 1.313043603685274e-014 34.9188894638889 6.480361288996718 1.312953348448611e-014 34.79356325523965 3.897412187033833 -4.635298485539939e-015 34.61810618679059 2.894325035741151 7.799018880127271e-015 34.59304099210329 5.151271025305827 4.243958562802059e-015 34.26719252031766 6.279744020088208 8.681240446754435e-015 33.76588698008295</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID8659\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8657\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID8660\">-1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 -1.06699629964404e-015 -1 -3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 1.06699629964404e-015 1 3.469992375695915e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 7.258605551612976e-016 -1 -9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016 -7.258605551612976e-016 1 9.553569313351687e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID8660\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8658\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8656\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8657\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"54\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8658\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 3 5 6 6 5 7 6 7 8 8 7 9 9 7 10 10 7 11 10 11 12 12 11 13 13 11 14 13 14 15 15 14 16 17 13 15 18 10 12 19 20 21 22 23 24 25 26 22 22 26 23 26 27 23 23 27 19 19 27 20 27 28 20 20 28 29 29 28 30 30 28 31 28 32 31 31 32 33 32 34 33 34 35 33 33 35 36 37 36 35 38 39 40 39 38 41 41 42 43 42 41 38 42 38 44 42 44 45 45 44 46 46 44 47 46 47 48 46 48 49 50 51 52 51 53 52 53 54 52 52 54 55 55 54 56 54 57 56 57 58 56 59 56 58 58 57 60 61 60 57</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8661\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8662\">\r\n\t\t\t\t\t<float_array count=\"426\" id=\"ID8665\">-7.506911544883518 5.529128561784796e-015 27.72733101905838 -9.243334567294438 2.019112012385173e-016 27.98465594717561 -7.980567195576219 -2.909047100255089e-015 27.66058568258788 -5.441970367917342 9.979521280785208e-015 29.04656388695467 -10.16481374362247 -1.125688764919247e-015 28.6327962411385 -10.44462277217561 -3.787301707501079e-015 29.03858194763451 -10.3205015088241 1.175919590269196e-014 29.50726303089005 -4.484473851702117 1.042915793173535e-014 29.8168679562631 -9.258572858804302 3.337285238077615e-015 31.69903535655659 -2.811378259666905 2.446257299459848e-015 31.3033581464278 -2.824596449954298 3.337069853664237e-015 31.66912760501871 -2.598223092146586 4.22834428794671e-015 32.09903259876207 -6.294963614565289 3.358757258330134e-015 34.68058744127527 -2.371849734338874 6.007797141929309e-015 32.52893759250545 -2.198296900638371 -2.074964182960373e-016 32.80045654211212 -2.024744066937839 -2.055410406205047e-016 33.07197549171882 -1.631817034048096 6.013982414075433e-015 33.38780931696149 -0.9183643157769073 6.015959129124843e-015 33.66229112198726 0.7059506804973896 2.478347634439172e-015 35.759343378917 -6.21280880510107 -1.933611902671657e-016 34.76323964783857 -5.838330524110635 8.692207650269561e-015 35.28876596955416 -5.816512785508115 -2.84940037511807e-015 35.94298368647723 5.155218849447972 2.250325974020039e-016 41.5035173087179 -5.84232433844846 -1.067874213243667e-015 36.66078313050418 -5.224375963616562 -3.726026438894203e-015 37.54711550470019 -0.6639189532039174 -9.007990190851028e-015 44.08824556359483 5.872343985804863 -1.381527157393801e-016 42.42935305433843 5.506101634623305 8.746395401854834e-015 42.81314429098149 6.128326422388489 -1.357727008430595e-016 42.75983608724977 4.7597955716211 -9.902262083072817e-015 43.24212090990675 0.2176021611069351 -1.268501939099145e-016 43.99879352276714 4.1008968689369 6.97625617734623e-015 43.67650704977888 2.250373803691026 7.866553759446453e-015 43.97076874465228 2.250373803691026 7.866553759446453e-015 43.97076874465228 4.1008968689369 6.97625617734623e-015 43.67650704977888 0.2176021611069351 -1.268501939099145e-016 43.99879352276714 4.7597955716211 -9.902262083072817e-015 43.24212090990675 -0.6639189532039174 -9.007990190851028e-015 44.08824556359483 5.506101634623305 8.746395401854834e-015 42.81314429098149 6.128326422388489 -1.357727008430595e-016 42.75983608724977 5.872343985804863 -1.381527157393801e-016 42.42935305433843 5.155218849447972 2.250325974020039e-016 41.5035173087179 -5.224375963616562 -3.726026438894203e-015 37.54711550470019 -5.84232433844846 -1.067874213243667e-015 36.66078313050418 -5.816512785508115 -2.84940037511807e-015 35.94298368647723 0.7059506804973896 2.478347634439172e-015 35.759343378917 -5.838330524110635 8.692207650269561e-015 35.28876596955416 -6.21280880510107 -1.933611902671657e-016 34.76323964783857 -6.294963614565289 3.358757258330134e-015 34.68058744127527 -0.9183643157769073 6.015959129124843e-015 33.66229112198726 -1.631817034048096 6.013982414075433e-015 33.38780931696149 -2.024744066937839 -2.055410406205047e-016 33.07197549171882 -2.198296900638371 -2.074964182960373e-016 32.80045654211212 -2.371849734338874 6.007797141929309e-015 32.52893759250545 -2.598223092146586 4.22834428794671e-015 32.09903259876207 -9.258572858804302 3.337285238077615e-015 31.69903535655659 -2.824596449954298 3.337069853664237e-015 31.66912760501871 -2.811378259666905 2.446257299459848e-015 31.3033581464278 -4.484473851702117 1.042915793173535e-014 29.8168679562631 -10.3205015088241 1.175919590269196e-014 29.50726303089005 -5.441970367917342 9.979521280785208e-015 29.04656388695467 -10.44462277217561 -3.787301707501079e-015 29.03858194763451 -10.16481374362247 -1.125688764919247e-015 28.6327962411385 -9.243334567294438 2.019112012385173e-016 27.98465594717561 -7.506911544883518 5.529128561784796e-015 27.72733101905838 -7.980567195576219 -2.909047100255089e-015 27.66058568258788 -1.87174761870024 -1.102074790734858e-015 31.91177479695033 -2.598223092146586 4.22834428794671e-015 32.09903259876207 -1.917022814649081 1.560712454425772e-015 31.66904986725694 -1.682414357698472 3.341720787972833e-015 32.31494493941984 -2.371849734338874 6.007797141929309e-015 32.52893759250545 -1.48484942624008 1.566252769234268e-015 32.4383643971895 -1.841573163439226 6.793781754691152e-016 32.61941046965081 -2.198296900638371 -2.074964182960373e-016 32.80045654211212 -2.198296900638371 -2.074964182960373e-016 32.80045654211212 -1.841573163439226 6.793781754691152e-016 32.61941046965081 -2.371849734338874 6.007797141929309e-015 32.52893759250545 -1.48484942624008 1.566252769234268e-015 32.4383643971895 -1.682414357698472 3.341720787972833e-015 32.31494493941984 -2.598223092146586 4.22834428794671e-015 32.09903259876207 -1.87174761870024 -1.102074790734858e-015 31.91177479695033 -1.917022814649081 1.560712454425772e-015 31.66904986725694 0.1121333663405091 8.212421714357167e-015 30.33200611383915 -0.4983623599332532 7.767159437637773e-015 30.1691169246226 -0.184214030847035 4.658048903767784e-015 30.10162314168335 0.02904379557126902 1.551981252361086e-015 30.45665655671066 0.375553274951776 3.775025642042119e-015 30.81745573801338 0.2847560176490757 3.775763512196364e-015 30.91991457843787 0.4990311554258219 -2.181034544272238e-016 31.32758951247538 0.3646657845173084 1.399418692649182e-014 31.52694253381534 0.482567411137639 -1.990905011180739e-015 31.82126734355395 0.204845847406025 1.562680138378542e-015 31.9422776363468 0.2767708092225076 1.564415873990614e-015 32.18329762756476 -0.1307765449148333 6.004837694839942e-015 32.1179960259859 -1.023864586170478 4.657752629931571e-015 30.06048328322471 -0.5958076380521185 9.542082137536503e-015 29.96997582982829 -1.451921937663657 9.988600789455689e-015 30.30732219876396 -0.8339847522541097 3.771161841956711e-015 30.28093793185897 -1.057732744884803 1.552786545330591e-015 30.56847756394702 -1.756501408682876 6.437605497211314e-015 30.5459331426115 -1.937602595853057 7.772598842666839e-015 30.92441937000586 -1.137642915127855 2.239701684601426e-016 31.04771004888118 -1.962298010597921 5.555767329136591e-015 31.42632493756356 -0.9778225746417517 3.336275974279868e-015 31.55889146022935 -1.917022814649081 1.560712454425772e-015 31.66904986725694 -0.6262184709721552 2.451088640574301e-015 31.97422632754816 -1.87174761870024 -1.102074790734858e-015 31.91177479695033 -1.682414357698472 3.341720787972833e-015 32.31494493941984 -0.1018953094060358 4.231202810858387e-015 32.49596008142525 -1.48484942624008 1.566252769234268e-015 32.4383643971895 -1.287284494781658 6.00803368839658e-015 32.56178385495908 -0.8098363137986642 7.785279347611557e-015 32.68520319512243 -0.8098363137986642 7.785279347611557e-015 32.68520319512243 -0.1018953094060358 4.231202810858387e-015 32.49596008142525 -1.287284494781658 6.00803368839658e-015 32.56178385495908 -1.48484942624008 1.566252769234268e-015 32.4383643971895 -1.682414357698472 3.341720787972833e-015 32.31494493941984 0.2767708092225076 1.564415873990614e-015 32.18329762756476 -0.1307765449148333 6.004837694839942e-015 32.1179960259859 -0.6262184709721552 2.451088640574301e-015 31.97422632754816 -1.87174761870024 -1.102074790734858e-015 31.91177479695033 -1.917022814649081 1.560712454425772e-015 31.66904986725694 -0.9778225746417517 3.336275974279868e-015 31.55889146022935 -1.962298010597921 5.555767329136591e-015 31.42632493756356 -1.137642915127855 2.239701684601426e-016 31.04771004888118 -1.937602595853057 7.772598842666839e-015 30.92441937000586 -1.057732744884803 1.552786545330591e-015 30.56847756394702 -1.756501408682876 6.437605497211314e-015 30.5459331426115 -1.451921937663657 9.988600789455689e-015 30.30732219876396 -0.8339847522541097 3.771161841956711e-015 30.28093793185897 -0.4983623599332532 7.767159437637773e-015 30.1691169246226 -0.184214030847035 4.658048903767784e-015 30.10162314168335 -1.023864586170478 4.657752629931571e-015 30.06048328322471 -0.5958076380521185 9.542082137536503e-015 29.96997582982829 0.204845847406025 1.562680138378542e-015 31.9422776363468 0.482567411137639 -1.990905011180739e-015 31.82126734355395 0.3646657845173084 1.399418692649182e-014 31.52694253381534 0.4990311554258219 -2.181034544272238e-016 31.32758951247538 0.2847560176490757 3.775763512196364e-015 30.91991457843787 0.375553274951776 3.775025642042119e-015 30.81745573801338 0.02904379557126902 1.551981252361086e-015 30.45665655671066 0.1121333663405091 8.212421714357167e-015 30.33200611383915</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"142\" source=\"#ID8665\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8663\">\r\n\t\t\t\t\t<float_array count=\"426\" id=\"ID8666\">4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 4.627260237147873e-016 -1 -5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -4.627260237147873e-016 1 5.742663092687063e-016 -2.9645782179601e-015 -1 2.63910984577767e-016 -2.9645782179601e-015 -1 2.63910984577767e-016 -2.9645782179601e-015 -1 2.63910984577767e-016 -2.9645782179601e-015 -1 2.63910984577767e-016 -2.9645782179601e-015 -1 2.63910984577767e-016 -2.9645782179601e-015 -1 2.63910984577767e-016 -2.9645782179601e-015 -1 2.63910984577767e-016 -2.9645782179601e-015 -1 2.63910984577767e-016 2.9645782179601e-015 1 -2.63910984577767e-016 2.9645782179601e-015 1 -2.63910984577767e-016 2.9645782179601e-015 1 -2.63910984577767e-016 2.9645782179601e-015 1 -2.63910984577767e-016 2.9645782179601e-015 1 -2.63910984577767e-016 2.9645782179601e-015 1 -2.63910984577767e-016 2.9645782179601e-015 1 -2.63910984577767e-016 2.9645782179601e-015 1 -2.63910984577767e-016 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 -1.000829173708724e-015 -1 -1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015 1.000829173708724e-015 1 1.743329264394975e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"142\" source=\"#ID8666\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8664\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8662\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8663\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"134\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8664\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 6 7 8 8 7 9 8 9 10 8 10 11 8 11 12 12 11 13 12 13 14 12 14 15 12 15 16 12 16 17 12 17 18 12 18 19 19 18 20 20 18 21 21 18 22 21 22 23 23 22 24 24 22 25 25 22 26 25 26 27 27 26 28 25 27 29 25 29 30 30 29 31 30 31 32 33 34 35 34 36 35 35 36 37 36 38 37 39 40 38 38 40 37 40 41 37 37 41 42 42 41 43 43 41 44 41 45 44 44 45 46 46 45 47 47 45 48 45 49 48 49 50 48 50 51 48 51 52 48 52 53 48 53 54 48 48 54 55 54 56 55 56 57 55 57 58 55 55 58 59 58 60 59 59 60 61 61 60 62 62 60 63 60 64 63 65 63 64 66 67 68 67 66 69 67 69 70 70 69 71 70 71 72 70 72 73 74 75 76 75 77 76 77 78 76 76 78 79 78 80 79 81 79 80 82 83 84 83 82 85 85 82 86 85 86 87 87 86 88 87 88 89 89 88 90 89 90 91 91 90 92 91 92 93 84 94 95 94 84 96 96 84 83 96 83 97 96 97 98 96 98 99 99 98 100 100 98 101 100 101 102 102 101 103 102 103 104 104 103 105 104 105 106 106 105 107 107 105 93 107 93 92 107 92 108 107 108 109 109 108 110 110 108 111 112 113 114 114 113 115 115 113 116 113 117 116 117 118 116 118 119 116 116 119 120 120 119 121 119 122 121 121 122 123 122 124 123 123 124 125 124 126 125 125 126 127 127 126 128 126 129 128 129 130 128 130 131 128 128 131 132 133 132 131 118 117 134 117 135 134 134 135 136 135 137 136 136 137 138 137 139 138 138 139 140 139 141 140 140 141 130 131 130 141</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8667\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8668\">\r\n\t\t\t\t\t<float_array count=\"444\" id=\"ID8671\">8.492875837391603 1.64740559975892e-015 43.70704746408612 8.014554533847166 7.579977274330451e-016 43.53632868698652 8.039163772066472 -1.019469000382671e-015 43.38221230296578 8.16305719546247 -2.793153637990564e-015 43.7532676918438 9.195312792027741 2.538364975558048e-015 44.09320420932844 8.471485471231551 5.201356638787826e-015 43.87886427150144 8.665680893804053 1.651520906154425e-015 44.2784888197888 10.01482243797825 1.651619170837829e-015 44.29213361278968 8.528601660128961 6.093975319030135e-015 44.49542796325222 10.86945393166057 2.541061661184061e-015 44.46765936331568 11.49791147485894 1.231103252186578e-014 44.46880410221174 8.928416408615936 1.764185708950684e-014 44.71236710671567 11.39474895439584 1.673261146678642e-015 47.29728531378267 8.928416408615936 -3.670642537651798e-015 45.23758823466066 8.448638615351202 -4.556025236050671e-015 45.62579523968457 8.178716928133346 -6.330741816446775e-015 45.85355758322651 10.83321191198491 -2.769411358463521e-015 47.05006241294284 8.952171281782304 -3.662610888937549e-015 46.35284328220997 8.597671349884793 1.587638642945751e-014 46.22399527941065 9.024682642293191 9.660877330948318e-015 46.46558511140167 10.13730035221225 -9.929226953733705e-016 47.0683671273019 9.647471759556149 1.673698456497626e-015 47.3580090830008 10.83321191198491 -2.769411358463521e-015 47.05006241294284 9.024682642293191 9.660877330948318e-015 46.46558511140167 10.13730035221225 -9.929226953733705e-016 47.0683671273019 9.647471759556149 1.673698456497626e-015 47.3580090830008 8.952171281782304 -3.662610888937549e-015 46.35284328220997 8.597671349884793 1.587638642945751e-014 46.22399527941065 8.178716928133346 -6.330741816446775e-015 45.85355758322651 11.39474895439584 1.673261146678642e-015 47.29728531378267 8.448638615351202 -4.556025236050671e-015 45.62579523968457 8.928416408615936 -3.670642537651798e-015 45.23758823466066 8.928416408615936 1.764185708950684e-014 44.71236710671567 11.49791147485894 1.231103252186578e-014 44.46880410221174 8.528601660128961 6.093975319030135e-015 44.49542796325222 10.86945393166057 2.541061661184061e-015 44.46765936331568 10.01482243797825 1.651619170837829e-015 44.29213361278968 8.665680893804053 1.651520906154425e-015 44.2784888197888 9.195312792027741 2.538364975558048e-015 44.09320420932844 8.471485471231551 5.201356638787826e-015 43.87886427150144 8.16305719546247 -2.793153637990564e-015 43.7532676918438 8.492875837391603 1.64740559975892e-015 43.70704746408612 8.014554533847166 7.579977274330451e-016 43.53632868698652 8.039163772066472 -1.019469000382671e-015 43.38221230296578 8.014554533847166 7.579977274330451e-016 43.53632868698652 7.6375861658388 -1.019921425344098e-015 43.31938968212926 7.866051872231863 -1.019921425344098e-015 43.31938968212926 8.178716928133346 -6.330741816446775e-015 45.85355758322651 5.600534956967436 2.552434252067812e-015 46.04682944881933 4.440353188793129 -7.217760343884577e-015 46.01461737881643 8.597671349884793 1.587638642945751e-014 46.22399527941065 7.324694343316557 2.555333982723616e-015 46.44947893779411 8.952171281782304 -3.662610888937549e-015 46.35284328220997 9.024682642293191 9.660877330948318e-015 46.46558511140167 8.388194139009071 8.776990512419144e-015 47.06150632736306 9.097194002804082 -9.878235978070453e-015 46.57832694059336 9.145534751344064 -1.879874642094534e-015 47.23867215795439 8.742694070906575 -3.656811427625943e-015 47.15814226015946 8.936057540468335 7.857045216390342e-016 47.38362619575513 7.54620016852257 1.052245112939234e-014 42.77133263602052 6.128326422388489 -1.357727008430595e-016 42.75983608724977 7.203502084334672 7.857175828531915e-015 42.66857225173894 5.506101634623305 8.746395401854834e-015 42.81314429098149 4.7597955716211 -9.902262083072817e-015 43.24212090990675 4.1008968689369 6.97625617734623e-015 43.67650704977888 8.16305719546247 -2.793153637990564e-015 43.7532676918438 2.250373803691026 7.866553759446453e-015 43.97076874465228 8.471485471231551 5.201356638787826e-015 43.87886427150144 8.665680893804053 1.651520906154425e-015 44.2784888197888 0.2176021611069351 -1.268501939099145e-016 43.99879352276714 -0.6639189532039174 -9.007990190851028e-015 44.08824556359483 -2.544163315428107 1.586237961012185e-014 44.27904268997698 8.528601660128961 6.093975319030135e-015 44.49542796325222 -2.84834297365049 2.540079132449376e-015 44.33122783229322 -4.422724623341432 2.542024300964843e-015 44.60132916296521 8.928416408615936 1.764185708950684e-014 44.71236710671567 -5.492238659064682 2.544892401452098e-015 44.99958656428976 8.928416408615936 -3.670642537651798e-015 45.23758823466066 -5.852674048576055 7.695021364788789e-016 45.13380271927006 -6.656977695265329 2.550087392649863e-015 45.72095030434023 8.448638615351202 -4.556025236050671e-015 45.62579523968457 -6.474657332267312 7.762615666609423e-016 46.07240062081026 2.358997867389968 9.659921204109429e-015 46.33281968289456 -5.08121162813574 1.672220506556009e-015 47.15278457791376 1.122388043607266 6.996572793972301e-015 46.49762261987916 0.8513530635839799 3.44411924377409e-015 46.53374343978076 0.5498238175817676 1.055041478871297e-014 46.65429780479733 -0.0009065659301921158 1.499310503071192e-014 46.90398360208364 -0.7683846302571133 7.021422677867722e-015 47.2764977149422 -4.143565405293923 1.233439241602027e-014 47.71250172805407 -1.01812664526398 1.322030386740113e-014 47.39771606565218 -1.609798503440216 6.116944689067973e-015 47.6848983677877 -2.01356460284792 1.144742656504131e-014 47.88087604756039 -2.826956028824859 1.411331296952145e-014 48.0684927821028 -3.336148352737579 7.897156226667729e-015 48.22015230838287 -2.983880376773521 4.893848352709398e-015 48.19814599762221 -2.983880376773521 4.893848352709398e-015 48.19814599762221 -2.826956028824859 1.411331296952145e-014 48.0684927821028 -3.336148352737579 7.897156226667729e-015 48.22015230838287 -4.143565405293923 1.233439241602027e-014 47.71250172805407 -2.01356460284792 1.144742656504131e-014 47.88087604756039 -1.609798503440216 6.116944689067973e-015 47.6848983677877 -1.01812664526398 1.322030386740113e-014 47.39771606565218 -0.7683846302571133 7.021422677867722e-015 47.2764977149422 -5.08121162813574 1.672220506556009e-015 47.15278457791376 -0.0009065659301921158 1.499310503071192e-014 46.90398360208364 0.5498238175817676 1.055041478871297e-014 46.65429780479733 0.8513530635839799 3.44411924377409e-015 46.53374343978076 1.122388043607266 6.996572793972301e-015 46.49762261987916 2.358997867389968 9.659921204109429e-015 46.33281968289456 -6.474657332267312 7.762615666609423e-016 46.07240062081026 4.440353188793129 -7.217760343884577e-015 46.01461737881643 8.178716928133346 -6.330741816446775e-015 45.85355758322651 -6.656977695265329 2.550087392649863e-015 45.72095030434023 8.448638615351202 -4.556025236050671e-015 45.62579523968457 8.928416408615936 -3.670642537651798e-015 45.23758823466066 -5.852674048576055 7.695021364788789e-016 45.13380271927006 -5.492238659064682 2.544892401452098e-015 44.99958656428976 8.928416408615936 1.764185708950684e-014 44.71236710671567 -4.422724623341432 2.542024300964843e-015 44.60132916296521 8.528601660128961 6.093975319030135e-015 44.49542796325222 -2.84834297365049 2.540079132449376e-015 44.33122783229322 -2.544163315428107 1.586237961012185e-014 44.27904268997698 8.665680893804053 1.651520906154425e-015 44.2784888197888 -0.6639189532039174 -9.007990190851028e-015 44.08824556359483 0.2176021611069351 -1.268501939099145e-016 43.99879352276714 2.250373803691026 7.866553759446453e-015 43.97076874465228 8.471485471231551 5.201356638787826e-015 43.87886427150144 8.16305719546247 -2.793153637990564e-015 43.7532676918438 4.1008968689369 6.97625617734623e-015 43.67650704977888 8.014554533847166 7.579977274330451e-016 43.53632868698652 7.6375861658388 -1.019921425344098e-015 43.31938968212926 4.7597955716211 -9.902262083072817e-015 43.24212090990675 5.506101634623305 8.746395401854834e-015 42.81314429098149 7.54620016852257 1.052245112939234e-014 42.77133263602052 6.128326422388489 -1.357727008430595e-016 42.75983608724977 7.203502084334672 7.857175828531915e-015 42.66857225173894 8.936057540468335 7.857045216390342e-016 47.38362619575513 9.145534751344064 -1.879874642094534e-015 47.23867215795439 8.742694070906575 -3.656811427625943e-015 47.15814226015946 8.388194139009071 8.776990512419144e-015 47.06150632736306 9.097194002804082 -9.878235978070453e-015 46.57832694059336 9.024682642293191 9.660877330948318e-015 46.46558511140167 7.324694343316557 2.555333982723616e-015 46.44947893779411 8.952171281782304 -3.662610888937549e-015 46.35284328220997 8.597671349884793 1.587638642945751e-014 46.22399527941065 5.600534956967436 2.552434252067812e-015 46.04682944881933 7.866051872231863 -1.019921425344098e-015 43.31938968212926</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"148\" source=\"#ID8671\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8669\">\r\n\t\t\t\t\t<float_array count=\"444\" id=\"ID8672\">1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 1.242673415671108e-015 -1 -8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -1.242673415671108e-015 1 8.194270703256391e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 -2.472311791779601e-016 -1 6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016 2.472311791779601e-016 1 -6.156649748602764e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"148\" source=\"#ID8672\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8670\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8668\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8669\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"140\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8670\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 6 4 7 6 7 8 8 7 9 8 9 10 8 10 11 11 10 12 11 12 13 13 12 14 14 12 15 15 12 16 15 16 17 15 17 18 17 16 19 19 20 21 20 19 16 22 23 24 25 24 23 23 22 26 27 26 28 26 22 28 22 29 28 28 29 30 30 29 31 31 29 32 29 33 32 32 33 34 33 35 34 35 36 34 34 36 37 36 38 37 37 38 39 39 38 40 38 41 40 40 41 42 43 42 41 44 45 46 47 48 49 48 47 50 48 50 51 51 50 52 51 52 53 51 53 54 54 53 55 54 55 56 54 56 57 57 56 58 59 60 61 60 59 62 62 59 45 62 45 63 63 45 64 64 45 44 64 44 65 64 65 66 66 65 67 66 67 68 66 68 69 69 68 70 70 68 71 71 68 72 71 72 73 73 72 74 74 72 75 74 75 76 76 75 77 76 77 78 78 77 79 79 77 80 79 80 47 79 47 81 81 47 49 81 49 82 81 82 83 83 82 84 83 84 85 83 85 86 83 86 87 83 87 88 83 88 89 89 88 90 89 90 91 89 91 92 89 92 93 89 93 94 94 93 95 96 97 98 98 97 99 97 100 99 100 101 99 101 102 99 102 103 99 99 103 104 103 105 104 105 106 104 106 107 104 107 108 104 108 109 104 104 109 110 109 111 110 111 112 110 110 112 113 112 114 113 114 115 113 113 115 116 116 115 117 115 118 117 117 118 119 118 120 119 119 120 121 121 120 122 120 123 122 122 123 124 124 123 125 125 123 126 123 127 126 127 128 126 126 128 129 128 130 129 130 131 129 129 131 132 132 131 133 131 134 133 133 134 135 136 135 134 137 138 139 139 138 140 138 141 140 141 142 140 140 142 143 142 144 143 144 145 143 143 145 146 145 112 146 111 146 112 147 131 130</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8673\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8676\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID8679\">14.38819556294244 1.682563483657399e-015 48.58898501812318 14.16342541845522 8.782548670069568e-015 47.83329847057673 14.42617578094811 -8.98141375079676e-015 47.77858486638629 13.67301761046028 1.055964093700166e-014 47.93541813444306 13.75475224512608 -3.678424630756706e-015 44.15698586713581 12.20179418647559 1.23083456663101e-014 44.09571392768844 12.97827301411347 -4.567338479682585e-015 44.05486596805684 11.5070495901287 4.315622404079874e-015 44.21825780658318 13.91586912540726 1.054010654038432e-014 45.22291971681855 11.49791147485894 1.231103252186578e-014 44.46880410221174 13.48846313124425 4.323513207677108e-015 45.31395544652364 11.39474895439584 1.673261146678642e-015 47.29728531378267 13.55398169377652 1.764831176261279e-014 45.60864718790621 13.78191951440479 -1.254890439307902e-014 45.72669194915176 13.62968627788825 7.880871878539744e-015 45.958947655151 13.65216151748765 6.105971058913975e-015 46.16112699100025 13.92186197243154 -3.662292868050509e-015 46.39700288282433 13.66339913728735 7.885806167210846e-015 46.64411088156925 13.58473620206427 1.588135330421126e-014 46.91368332936821 13.92843839421283 -7.209516712340921e-015 47.15930784229337 13.67301761046028 1.233158520612913e-014 47.32269944560708 11.39000880187824 6.115089198473694e-015 47.42724949336954 13.48911458161851 7.005309315598411e-015 47.71075459168196 11.33416771301961 4.349758301991333e-015 48.95828489228426 14.52101439469625 4.347981256981724e-015 48.71152877941163 14.69567045859722 2.21207060997196e-014 49.98297079998269 14.03510018247185 7.020365362303695e-015 49.80140032104682 11.30586089671482 1.69081228456126e-015 49.73439328628337 12.21710904753201 9.685514041336167e-015 49.88657830876472 11.5468887162385 4.35783484207035e-015 50.07977344467552 12.97818790202121 1.691651463586307e-015 49.85091962810665 12.97818790202121 1.691651463586307e-015 49.85091962810665 14.03510018247185 7.020365362303695e-015 49.80140032104682 12.21710904753201 9.685514041336167e-015 49.88657830876472 11.30586089671482 1.69081228456126e-015 49.73439328628337 11.5468887162385 4.35783484207035e-015 50.07977344467552 11.33416771301961 4.349758301991333e-015 48.95828489228426 14.69567045859722 2.21207060997196e-014 49.98297079998269 14.52101439469625 4.347981256981724e-015 48.71152877941163 14.38819556294244 1.682563483657399e-015 48.58898501812318 13.67301761046028 1.055964093700166e-014 47.93541813444306 13.48911458161851 7.005309315598411e-015 47.71075459168196 11.39000880187824 6.115089198473694e-015 47.42724949336954 13.67301761046028 1.233158520612913e-014 47.32269944560708 11.39474895439584 1.673261146678642e-015 47.29728531378267 13.92843839421283 -7.209516712340921e-015 47.15930784229337 13.58473620206427 1.588135330421126e-014 46.91368332936821 13.66339913728735 7.885806167210846e-015 46.64411088156925 13.92186197243154 -3.662292868050509e-015 46.39700288282433 13.65216151748765 6.105971058913975e-015 46.16112699100025 13.62968627788825 7.880871878539744e-015 45.958947655151 13.78191951440479 -1.254890439307902e-014 45.72669194915176 13.55398169377652 1.764831176261279e-014 45.60864718790621 13.48846313124425 4.323513207677108e-015 45.31395544652364 11.49791147485894 1.231103252186578e-014 44.46880410221174 13.91586912540726 1.054010654038432e-014 45.22291971681855 11.5070495901287 4.315622404079874e-015 44.21825780658318 13.75475224512608 -3.678424630756706e-015 44.15698586713581 12.20179418647559 1.23083456663101e-014 44.09571392768844 12.97827301411347 -4.567338479682585e-015 44.05486596805684 14.16342541845522 8.782548670069568e-015 47.83329847057673 14.42617578094811 -8.98141375079676e-015 47.77858486638629</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID8679\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8677\">\r\n\t\t\t\t\t<float_array count=\"186\" id=\"ID8680\">-2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 -2.007283018606348e-016 -1 4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016 2.007283018606348e-016 1 -4.483115515182614e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"62\" source=\"#ID8680\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8678\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8676\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8677\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"58\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8678\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 7 4 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 11 13 14 11 14 15 11 15 16 11 16 17 11 17 18 11 18 19 11 19 20 11 20 21 21 20 22 21 22 23 23 22 3 23 3 0 23 0 24 23 24 25 23 25 26 23 26 27 27 28 29 28 27 26 28 26 30 31 32 33 32 34 33 35 33 34 34 32 36 32 37 36 37 38 36 38 39 36 39 40 36 40 41 36 36 41 42 41 43 42 42 43 44 43 45 44 45 46 44 46 47 44 47 48 44 48 49 44 49 50 44 50 51 44 51 52 44 52 53 44 44 53 54 53 55 54 54 55 56 55 57 56 56 57 58 59 58 57 40 39 60 61 60 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8681\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8682\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID8685\">-6.21280880510107 -1.933611902671657e-016 34.76323964783857 -6.233674175695125 -1.01996830672609e-015 43.31287984837484 -6.294963614565289 3.358757258330134e-015 34.68058744127527 -5.838330524110635 8.692207650269561e-015 35.28876596955416 -5.816512785508115 -2.84940037511807e-015 35.94298368647723 -5.84232433844846 -1.067874213243667e-015 36.66078313050418 -5.224375963616562 -3.726026438894203e-015 37.54711550470019 -5.248999875940507 -1.057054154860644e-015 38.16322990771885 -5.098045311167037 1.582176279665566e-014 38.63909156099258 -4.799748403354792 3.390821863535297e-015 39.13299990041157 -4.528622825084502 6.062864293920486e-015 40.17542729808263 -4.168389726736057 1.406582449687444e-014 41.47435990798667 -3.521532985207474 6.084972677663216e-015 43.24534325674379 -2.84834297365049 2.540079132449376e-015 44.33122783229322 -5.7519201556191 7.869708525714694e-015 44.40883185344485 -4.422724623341432 2.542024300964843e-015 44.60132916296521 -5.492238659064682 2.544892401452098e-015 44.99958656428976 -5.492238659064682 2.544892401452098e-015 44.99958656428976 -4.422724623341432 2.542024300964843e-015 44.60132916296521 -5.7519201556191 7.869708525714694e-015 44.40883185344485 -2.84834297365049 2.540079132449376e-015 44.33122783229322 -6.233674175695125 -1.01996830672609e-015 43.31287984837484 -3.521532985207474 6.084972677663216e-015 43.24534325674379 -4.168389726736057 1.406582449687444e-014 41.47435990798667 -4.528622825084502 6.062864293920486e-015 40.17542729808263 -4.799748403354792 3.390821863535297e-015 39.13299990041157 -5.098045311167037 1.582176279665566e-014 38.63909156099258 -5.248999875940507 -1.057054154860644e-015 38.16322990771885 -5.224375963616562 -3.726026438894203e-015 37.54711550470019 -5.84232433844846 -1.067874213243667e-015 36.66078313050418 -5.816512785508115 -2.84940037511807e-015 35.94298368647723 -5.838330524110635 8.692207650269561e-015 35.28876596955416 -6.21280880510107 -1.933611902671657e-016 34.76323964783857 -6.294963614565289 3.358757258330134e-015 34.68058744127527</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID8685\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8683\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID8686\">1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 1.515105544391785e-015 -1 5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017 -1.515105544391785e-015 1 -5.90139193126343e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID8686\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8684\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8682\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8683\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8684\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 1 5 6 1 6 7 1 7 8 1 8 9 1 9 10 1 10 11 1 11 12 1 12 13 1 13 14 14 13 15 14 15 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8684\" />\r\n\t\t\t\t\t<p>17 18 19 18 20 19 19 20 21 20 22 21 22 23 21 23 24 21 24 25 21 25 26 21 26 27 21 27 28 21 28 29 21 29 30 21 30 31 21 31 32 21 33 21 32</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8687\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8688\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8691\">-0.6639189532039174 -9.007990190851028e-015 44.08824556359483 -5.248999875940507 -1.057054154860644e-015 38.16322990771885 -5.224375963616562 -3.726026438894203e-015 37.54711550470019 -5.098045311167037 1.582176279665566e-014 38.63909156099258 -4.799748403354792 3.390821863535297e-015 39.13299990041157 -4.528622825084502 6.062864293920486e-015 40.17542729808263 -4.168389726736057 1.406582449687444e-014 41.47435990798667 -3.521532985207474 6.084972677663216e-015 43.24534325674379 -2.544163315428107 1.586237961012185e-014 44.27904268997698 -2.84834297365049 2.540079132449376e-015 44.33122783229322 -2.84834297365049 2.540079132449376e-015 44.33122783229322 -2.544163315428107 1.586237961012185e-014 44.27904268997698 -3.521532985207474 6.084972677663216e-015 43.24534325674379 -0.6639189532039174 -9.007990190851028e-015 44.08824556359483 -4.168389726736057 1.406582449687444e-014 41.47435990798667 -4.528622825084502 6.062864293920486e-015 40.17542729808263 -4.799748403354792 3.390821863535297e-015 39.13299990041157 -5.098045311167037 1.582176279665566e-014 38.63909156099258 -5.248999875940507 -1.057054154860644e-015 38.16322990771885 -5.224375963616562 -3.726026438894203e-015 37.54711550470019</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8691\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8689\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8692\">-8.054979801997248e-015 -1 4.120667004492489e-015 -8.054979801997248e-015 -1 4.120667004492489e-015 -8.054979801997248e-015 -1 4.120667004492489e-015 -8.054979801997248e-015 -1 4.120667004492489e-015 -8.054979801997248e-015 -1 4.120667004492489e-015 -8.054979801997248e-015 -1 4.120667004492489e-015 -8.054979801997248e-015 -1 4.120667004492489e-015 -8.054979801997248e-015 -1 4.120667004492489e-015 -8.054979801997248e-015 -1 4.120667004492489e-015 -8.054979801997248e-015 -1 4.120667004492489e-015 8.054979801997248e-015 1 -4.120667004492489e-015 8.054979801997248e-015 1 -4.120667004492489e-015 8.054979801997248e-015 1 -4.120667004492489e-015 8.054979801997248e-015 1 -4.120667004492489e-015 8.054979801997248e-015 1 -4.120667004492489e-015 8.054979801997248e-015 1 -4.120667004492489e-015 8.054979801997248e-015 1 -4.120667004492489e-015 8.054979801997248e-015 1 -4.120667004492489e-015 8.054979801997248e-015 1 -4.120667004492489e-015 8.054979801997248e-015 1 -4.120667004492489e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8692\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8690\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8688\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8689\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8690\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 7 0 8 7 8 9 10 11 12 11 13 12 12 13 14 14 13 15 15 13 16 16 13 17 17 13 18 19 18 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8693\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8694\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID8697\">2.825590768946633 7.091851517199773e-015 59.72779251201633 0.8947447017430199 -9.085536307268108e-016 58.78364857843726 2.452091478704311 2.635805927960231e-015 57.62361594306599 0.6144621111221333 -1.793609678559826e-015 59.21721348011707 -0.2931199950547869 -4.450939465814629e-015 60.21774763339631 -0.4299805544259172 3.551848146048336e-015 61.49271466758491 -0.7202173144175186 1.686784050346571e-014 60.56459941361255 -1.14731463378025 5.321809266644452e-015 60.60462083619478 -1.466601612247132 3.551848146048336e-015 61.49271466758491 -1.965715895088502 6.208092500655852e-015 60.34145999829041 -0.7035244532175291 3.551848146048336e-015 61.49271466758491 -0.7035244532175291 3.551848146048336e-015 61.49271466758491 -0.4299805544259172 3.551848146048336e-015 61.49271466758491 -1.466601612247132 3.551848146048336e-015 61.49271466758491 -1.14731463378025 5.321809266644452e-015 60.60462083619478 -1.965715895088502 6.208092500655852e-015 60.34145999829041 -0.7202173144175186 1.686784050346571e-014 60.56459941361255 -0.2931199950547869 -4.450939465814629e-015 60.21774763339631 2.825590768946633 7.091851517199773e-015 59.72779251201633 0.6144621111221333 -1.793609678559826e-015 59.21721348011707 0.8947447017430199 -9.085536307268108e-016 58.78364857843726 2.452091478704311 2.635805927960231e-015 57.62361594306599 3.098400437193755 1.595912717402408e-014 57.7131721967391 2.452091478704311 2.635805927960231e-015 57.62361594306599 3.098400437193755 1.151483606989329e-014 57.2411946090023 2.825590768946633 7.091851517199773e-015 59.72779251201633 3.203334369305335 1.754315137380078e-015 58.55224372517414 3.108957967005196 6.198927500562407e-015 59.06883055710627 4.545066400630474 1.504200796272547e-014 53.69452483570479 3.117578087437439 4.383170291091523e-015 53.59779177541501 3.903906118659315 7.935709811930866e-015 53.57360862794885 2.706268052748255 -9.449423549350317e-016 53.730799556904 4.124475965242 4.391692935922197e-015 54.78122533981043 2.629827712919635 6.164641248344435e-015 54.30792564105848 2.509706717903562 1.14991879244025e-014 55.06833149405708 3.710514099969748 3.5114109403589e-015 55.87770343409841 1.815673674782827 1.595381845776327e-014 56.97601687327809 3.3607348640978 3.518083065094076e-015 56.80417831534916 1.175027292363909 1.152282187320783e-014 58.35008367675749 0.8947447017430199 -9.085536307268108e-016 58.78364857843726 0.8947447017430199 -9.085536307268108e-016 58.78364857843726 2.452091478704311 2.635805927960231e-015 57.62361594306599 1.175027292363909 1.152282187320783e-014 58.35008367675749 3.098400437193755 1.151483606989329e-014 57.2411946090023 1.815673674782827 1.595381845776327e-014 56.97601687327809 3.3607348640978 3.518083065094076e-015 56.80417831534916 3.710514099969748 3.5114109403589e-015 55.87770343409841 2.509706717903562 1.14991879244025e-014 55.06833149405708 4.124475965242 4.391692935922197e-015 54.78122533981043 2.629827712919635 6.164641248344435e-015 54.30792564105848 2.706268052748255 -9.449423549350317e-016 53.730799556904 4.545066400630474 1.504200796272547e-014 53.69452483570479 3.117578087437439 4.383170291091523e-015 53.59779177541501 3.903906118659315 7.935709811930866e-015 53.57360862794885 3.108957967005196 6.198927500562407e-015 59.06883055710627 3.203334369305335 1.754315137380078e-015 58.55224372517414 2.825590768946633 7.091851517199773e-015 59.72779251201633 3.098400437193755 1.595912717402408e-014 57.7131721967391 5.449791402782078 8.821101495901167e-015 53.1866493373416 4.829170967905291 -6.040349174245378e-017 53.22541966414524 5.187967245056654 1.326171438504416e-014 53.14787901053791 5.604946713188702 -1.835852898613005e-015 53.35142352027294 4.674015657498662 6.159637543122587e-015 53.61312340260718 5.86677087091413 3.493357223419607e-015 53.37080856606848 6.268977940951849 8.29036419886152e-016 53.4005873402645 6.225567148065493 -2.720331790513182e-015 53.86513087964996 4.545066400630474 1.504200796272547e-014 53.69452483570479 4.124475965242 4.391692935922197e-015 54.78122533981043 5.876468002181716 -1.827057794531028e-015 54.57269010825798 5.857073739646455 -3.599017080196375e-015 55.18332363746303 3.710514099969748 3.5114109403589e-015 55.87770343409841 5.246150436037342 7.953375185785957e-015 56.02657912749013 3.3607348640978 3.518083065094076e-015 56.80417831534916 5.018682117213579 7.957267042150771e-015 56.56699275981101 4.592642850068607 4.409482021454883e-015 57.25137413957241 3.504329854828864 8.578378403010273e-016 57.39988196046971 4.182128270573225 4.413347417206245e-015 57.78811351598882 3.556596343586845 -5.352488836134184e-015 58.36109021480221 4.245148096152564 5.303689347759231e-015 58.08853332827481 4.317640212757931 2.641642789311083e-015 58.43410819876339 3.575577550281079 7.091436676236035e-015 59.67018871294604 4.570527824205502 8.739677430908567e-016 59.63964071273191 3.708465379923629 5.320075167398339e-015 60.36382806674146 3.708465379923629 5.320075167398339e-015 60.36382806674146 4.570527824205502 8.739677430908567e-016 59.63964071273191 3.575577550281079 7.091436676236035e-015 59.67018871294604 4.317640212757931 2.641642789311083e-015 58.43410819876339 3.556596343586845 -5.352488836134184e-015 58.36109021480221 4.245148096152564 5.303689347759231e-015 58.08853332827481 4.182128270573225 4.413347417206245e-015 57.78811351598882 3.504329854828864 8.578378403010273e-016 57.39988196046971 4.592642850068607 4.409482021454883e-015 57.25137413957241 3.3607348640978 3.518083065094076e-015 56.80417831534916 5.018682117213579 7.957267042150771e-015 56.56699275981101 5.246150436037342 7.953375185785957e-015 56.02657912749013 3.710514099969748 3.5114109403589e-015 55.87770343409841 5.857073739646455 -3.599017080196375e-015 55.18332363746303 4.124475965242 4.391692935922197e-015 54.78122533981043 5.876468002181716 -1.827057794531028e-015 54.57269010825798 6.225567148065493 -2.720331790513182e-015 53.86513087964996 4.545066400630474 1.504200796272547e-014 53.69452483570479 4.674015657498662 6.159637543122587e-015 53.61312340260718 6.268977940951849 8.29036419886152e-016 53.4005873402645 5.86677087091413 3.493357223419607e-015 53.37080856606848 5.604946713188702 -1.835852898613005e-015 53.35142352027294 4.829170967905291 -6.040349174245378e-017 53.22541966414524 5.449791402782078 8.821101495901167e-015 53.1866493373416 5.187967245056654 1.326171438504416e-014 53.14787901053791 6.215002760881709 -3.970632885967245e-017 56.09937695438604 6.112362014762534 4.396552435087416e-015 55.45600347881905 6.467998858442452 1.416607527219235e-014 55.39493676235843 5.663302951977744 1.062016193801722e-014 56.33921594317808 5.848755467262012 6.185498065243241e-015 57.20405209650654 5.50395980393301 8.846307614394795e-015 56.68670914813355 4.895557189728577 4.409482106150526e-015 57.25138590020203 5.58251221444863 6.187038439155302e-015 57.41794464107129 4.245148096152564 5.303689347759231e-015 58.08853332827481 4.317640212757931 2.641642789311083e-015 58.43410819876339 4.317640212757931 2.641642789311083e-015 58.43410819876339 5.58251221444863 6.187038439155302e-015 57.41794464107129 4.245148096152564 5.303689347759231e-015 58.08853332827481 4.895557189728577 4.409482106150526e-015 57.25138590020203 5.848755467262012 6.185498065243241e-015 57.20405209650654 5.50395980393301 8.846307614394795e-015 56.68670914813355 5.663302951977744 1.062016193801722e-014 56.33921594317808 6.215002760881709 -3.970632885967245e-017 56.09937695438604 6.112362014762534 4.396552435087416e-015 55.45600347881905 6.467998858442452 1.416607527219235e-014 55.39493676235843</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"128\" source=\"#ID8697\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8695\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID8698\">2.443868786527132e-016 -1 1.428576418554277e-015 2.443868786527132e-016 -1 1.428576418554277e-015 2.443868786527132e-016 -1 1.428576418554277e-015 2.443868786527132e-016 -1 1.428576418554277e-015 2.443868786527132e-016 -1 1.428576418554277e-015 2.443868786527132e-016 -1 1.428576418554277e-015 2.443868786527132e-016 -1 1.428576418554277e-015 2.443868786527132e-016 -1 1.428576418554277e-015 2.443868786527132e-016 -1 1.428576418554277e-015 2.443868786527132e-016 -1 1.428576418554277e-015 2.443868786527132e-016 -1 1.428576418554277e-015 -2.443868786527132e-016 1 -1.428576418554277e-015 -2.443868786527132e-016 1 -1.428576418554277e-015 -2.443868786527132e-016 1 -1.428576418554277e-015 -2.443868786527132e-016 1 -1.428576418554277e-015 -2.443868786527132e-016 1 -1.428576418554277e-015 -2.443868786527132e-016 1 -1.428576418554277e-015 -2.443868786527132e-016 1 -1.428576418554277e-015 -2.443868786527132e-016 1 -1.428576418554277e-015 -2.443868786527132e-016 1 -1.428576418554277e-015 -2.443868786527132e-016 1 -1.428576418554277e-015 -2.443868786527132e-016 1 -1.428576418554277e-015 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 5.671471134517031e-016 -1 7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -5.671471134517031e-016 1 -7.972212312933696e-017 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 -2.224439676669385e-015 -1 -7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 2.224439676669385e-015 1 7.722936299738713e-016 -3.988260439609124e-016 -1 -1.788135617485892e-015 -3.988260439609124e-016 -1 -1.788135617485892e-015 -3.988260439609124e-016 -1 -1.788135617485892e-015 -3.988260439609124e-016 -1 -1.788135617485892e-015 -3.988260439609124e-016 -1 -1.788135617485892e-015 -3.988260439609124e-016 -1 -1.788135617485892e-015 -3.988260439609124e-016 -1 -1.788135617485892e-015 -3.988260439609124e-016 -1 -1.788135617485892e-015 -3.988260439609124e-016 -1 -1.788135617485892e-015 -3.988260439609124e-016 -1 -1.788135617485892e-015 3.988260439609124e-016 1 1.788135617485892e-015 3.988260439609124e-016 1 1.788135617485892e-015 3.988260439609124e-016 1 1.788135617485892e-015 3.988260439609124e-016 1 1.788135617485892e-015 3.988260439609124e-016 1 1.788135617485892e-015 3.988260439609124e-016 1 1.788135617485892e-015 3.988260439609124e-016 1 1.788135617485892e-015 3.988260439609124e-016 1 1.788135617485892e-015 3.988260439609124e-016 1 1.788135617485892e-015 3.988260439609124e-016 1 1.788135617485892e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"128\" source=\"#ID8698\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8696\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8694\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8695\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"112\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8696\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 7 8 9 8 7 5 8 5 10 11 12 13 12 14 13 15 13 14 14 12 16 16 12 17 12 18 17 17 18 19 19 18 20 21 20 18 22 23 24 23 22 25 25 22 26 25 26 27 28 29 30 29 28 31 31 28 32 31 32 33 33 32 34 34 32 35 34 35 36 36 35 37 36 37 24 36 24 38 38 24 23 38 23 39 40 41 42 41 43 42 42 43 44 43 45 44 45 46 44 44 46 47 46 48 47 47 48 49 49 48 50 48 51 50 50 51 52 53 52 51 54 55 56 55 57 56 56 57 41 43 41 57 58 59 60 59 58 61 59 61 62 62 61 63 62 63 64 62 64 65 62 65 66 66 65 67 67 65 68 67 68 69 67 69 70 70 69 71 70 71 72 72 71 73 72 73 74 72 74 75 75 74 76 75 76 77 77 76 78 77 78 79 77 79 80 80 79 81 80 81 82 83 84 85 84 86 85 85 86 87 86 88 87 88 89 87 87 89 90 89 91 90 90 91 92 91 93 92 93 94 92 92 94 95 94 96 95 95 96 97 96 98 97 98 99 97 97 99 100 100 99 101 99 102 101 102 103 101 103 104 101 101 104 105 104 106 105 107 105 106 108 109 110 109 108 111 111 108 112 111 112 113 113 112 114 114 112 115 114 115 116 116 115 117 118 119 120 120 119 121 119 122 121 121 122 123 123 122 124 122 125 124 124 125 126 127 126 125</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8699\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8702\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID8705\">-5.492238659064682 2.544892401452098e-015 44.99958656428976 -7.203512348660119 1.142810853897518e-014 45.1984223141554 -5.7519201556191 7.869708525714694e-015 44.40883185344485 -5.852674048576055 7.695021364788789e-016 45.13380271927006 -6.656977695265329 2.550087392649863e-015 45.72095030434023 -8.007675195267474 3.442649578185628e-015 46.32966927966043 -7.555554929320552 -1.107919592988028e-016 46.22860060745678 -7.549043589656746 2.558196007767424e-015 46.84689271793794 -7.750897971646269 1.410953061970328e-014 47.54328496034854 -8.170212265332893 -1.862336058043836e-015 49.67403693613554 -7.542532249992939 5.22718397483365e-015 47.46518482841912 -7.764522034150307 9.67148229734514e-015 47.93816474279968 -7.197039041389793 1.322594662992288e-014 48.18125623385441 -7.269055508709684 7.995110861838978e-016 49.30077189594682 -7.102552711753817 5.249511957780135e-015 50.56559379407529 -8.509095136523852 8.096527684675522e-016 50.70902103132288 -6.936049914797949 1.236932158774434e-014 52.56268087033551 -8.5279222540274 -4.514945607931461e-015 51.33001167660532 -7.913560986616485 8.818615807454114e-015 52.84149273427813 -6.519792447006531 1.237723183864211e-014 53.66107891474528 -7.068040520552366 -4.524782432546047e-017 55.32989848127669 -6.436149317510935 -5.37868970672062e-015 54.72290156744966 -6.166120664905954 8.840537960162357e-015 55.88554910811225 -7.099984581257356 6.194423867225898e-015 58.44346707452014 -5.646835087066797 6.18347854985024e-015 56.92362714071246 -4.649806910727992 -1.802352343034138e-015 58.00322852747498 -3.715092490296091 2.129566918053622e-014 58.75064474421262 -2.161670868110444 7.096821084994896e-015 60.41785451109465 -2.178007008747413 7.979123082478123e-015 59.60186893053771 -1.965715895088502 6.208092500655852e-015 60.34145999829041 -1.965715895088502 6.208092500655852e-015 60.34145999829041 -2.178007008747413 7.979123082478123e-015 59.60186893053771 -2.161670868110444 7.096821084994896e-015 60.41785451109465 -3.715092490296091 2.129566918053622e-014 58.75064474421262 -7.099984581257356 6.194423867225898e-015 58.44346707452014 -4.649806910727992 -1.802352343034138e-015 58.00322852747498 -5.646835087066797 6.18347854985024e-015 56.92362714071246 -6.166120664905954 8.840537960162357e-015 55.88554910811225 -7.068040520552366 -4.524782432546047e-017 55.32989848127669 -6.436149317510935 -5.37868970672062e-015 54.72290156744966 -6.519792447006531 1.237723183864211e-014 53.66107891474528 -7.913560986616485 8.818615807454114e-015 52.84149273427813 -6.936049914797949 1.236932158774434e-014 52.56268087033551 -8.5279222540274 -4.514945607931461e-015 51.33001167660532 -8.509095136523852 8.096527684675522e-016 50.70902103132288 -7.102552711753817 5.249511957780135e-015 50.56559379407529 -8.170212265332893 -1.862336058043836e-015 49.67403693613554 -7.269055508709684 7.995110861838978e-016 49.30077189594682 -7.197039041389793 1.322594662992288e-014 48.18125623385441 -7.764522034150307 9.67148229734514e-015 47.93816474279968 -7.750897971646269 1.410953061970328e-014 47.54328496034854 -7.542532249992939 5.22718397483365e-015 47.46518482841912 -7.549043589656746 2.558196007767424e-015 46.84689271793794 -8.007675195267474 3.442649578185628e-015 46.32966927966043 -7.555554929320552 -1.107919592988028e-016 46.22860060745678 -6.656977695265329 2.550087392649863e-015 45.72095030434023 -7.203512348660119 1.142810853897518e-014 45.1984223141554 -5.852674048576055 7.695021364788789e-016 45.13380271927006 -5.492238659064682 2.544892401452098e-015 44.99958656428976 -5.7519201556191 7.869708525714694e-015 44.40883185344485</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID8705\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8703\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID8706\">8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 8.450858392662722e-016 -1 -3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017 -8.450858392662722e-016 1 3.038420793605609e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID8706\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8704\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8702\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8703\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"56\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8704\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 5 6 7 5 7 8 5 8 9 8 7 10 9 8 11 9 11 12 9 12 13 9 13 14 9 14 15 15 14 16 15 16 17 17 16 18 18 16 19 18 19 20 20 19 21 20 21 22 20 22 23 23 22 24 23 24 25 23 25 26 23 26 27 27 26 28 27 28 29 30 31 32 31 33 32 32 33 34 33 35 34 35 36 34 36 37 34 34 37 38 37 39 38 39 40 38 38 40 41 40 42 41 41 42 43 43 42 44 42 45 44 44 45 46 45 47 46 47 48 46 48 49 46 49 50 46 51 52 50 46 50 53 50 52 53 52 54 53 54 55 53 53 55 56 55 57 56 57 58 56 59 56 58</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8707\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8708\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID8711\">4.78056419584979 -3.104782821179412e-015 50.95559020748951 0.8513530635839799 3.44411924377409e-015 46.53374343978076 1.122388043607266 6.996572793972301e-015 46.49762261987916 0.5498238175817676 1.055041478871297e-014 46.65429780479733 -0.0009065659301921158 1.499310503071192e-014 46.90398360208364 -0.7683846302571133 7.021422677867722e-015 47.2764977149422 -0.6603407366748728 7.85887499765126e-016 47.40903408969761 1.028967900353155 7.018060064156052e-015 49.48129227265786 1.728867149013981 7.911390459535407e-015 50.19668298327478 2.578237452594658 7.031788171002422e-015 51.38754352920829 4.545066400630474 1.504200796272547e-014 51.81764266342773 2.692598188853994 1.708754401736308e-015 52.22579168468337 4.484252259059256 2.600225595216001e-015 52.68301817811619 4.763801306517435 9.706659077972176e-015 52.82272625023074 2.781210606532991 1.05952161737123e-014 52.87530827666435 4.115756025110619 8.818114793853304e-015 52.77192321411187 3.988688276265968 1.059657534966858e-014 53.06404011737072 3.010267323264703 1.237302365517352e-014 53.07674087640043 3.556658405595837 5.268145092204254e-015 53.15294515336645 3.556658405595837 5.268145092204254e-015 53.15294515336645 3.988688276265968 1.059657534966858e-014 53.06404011737072 3.010267323264703 1.237302365517352e-014 53.07674087640043 2.781210606532991 1.05952161737123e-014 52.87530827666435 4.115756025110619 8.818114793853304e-015 52.77192321411187 4.484252259059256 2.600225595216001e-015 52.68301817811619 2.692598188853994 1.708754401736308e-015 52.22579168468337 4.763801306517435 9.706659077972176e-015 52.82272625023074 4.545066400630474 1.504200796272547e-014 51.81764266342773 2.578237452594658 7.031788171002422e-015 51.38754352920829 4.78056419584979 -3.104782821179412e-015 50.95559020748951 1.728867149013981 7.911390459535407e-015 50.19668298327478 1.028967900353155 7.018060064156052e-015 49.48129227265786 -0.6603407366748728 7.85887499765126e-016 47.40903408969761 -0.7683846302571133 7.021422677867722e-015 47.2764977149422 -0.0009065659301921158 1.499310503071192e-014 46.90398360208364 0.5498238175817676 1.055041478871297e-014 46.65429780479733 0.8513530635839799 3.44411924377409e-015 46.53374343978076 1.122388043607266 6.996572793972301e-015 46.49762261987916 5.290605960999552 -4.51316586068917e-015 51.57714301488272 4.545066400630474 1.504200796272547e-014 51.81764266342773 4.78056419584979 -3.104782821179412e-015 50.95559020748951 5.171984726958281 1.76951132870414e-014 52.10739211675348 4.763801306517435 9.706659077972176e-015 52.82272625023074 5.221244726956448 8.236858236063789e-016 52.65761666005677 5.221244726956448 8.236858236063789e-016 52.65761666005677 5.171984726958281 1.76951132870414e-014 52.10739211675348 4.763801306517435 9.706659077972176e-015 52.82272625023074 4.545066400630474 1.504200796272547e-014 51.81764266342773 5.290605960999552 -4.51316586068917e-015 51.57714301488272 4.78056419584979 -3.104782821179412e-015 50.95559020748951</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID8711\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8709\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID8712\">-6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 -6.51755778445938e-016 -1 5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 6.51755778445938e-016 1 -5.154476686388741e-016 -1.328302634129155e-014 -1 6.307335360755824e-015 -1.328302634129155e-014 -1 6.307335360755824e-015 -1.328302634129155e-014 -1 6.307335360755824e-015 -1.328302634129155e-014 -1 6.307335360755824e-015 -1.328302634129155e-014 -1 6.307335360755824e-015 -1.328302634129155e-014 -1 6.307335360755824e-015 1.328302634129155e-014 1 -6.307335360755824e-015 1.328302634129155e-014 1 -6.307335360755824e-015 1.328302634129155e-014 1 -6.307335360755824e-015 1.328302634129155e-014 1 -6.307335360755824e-015 1.328302634129155e-014 1 -6.307335360755824e-015 1.328302634129155e-014 1 -6.307335360755824e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID8712\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8710\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8708\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8709\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"42\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8710\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 7 0 8 8 0 9 9 0 10 9 10 11 11 10 12 12 10 13 12 14 11 14 12 15 14 15 16 14 16 17 17 16 18 19 20 21 21 20 22 20 23 22 23 24 22 25 22 24 26 27 24 24 27 25 25 27 28 27 29 28 28 29 30 30 29 31 31 29 32 32 29 33 33 29 34 34 29 35 35 29 36 37 36 29 38 39 40 39 38 41 39 41 42 42 41 43 44 45 46 46 45 47 45 48 47 49 47 48</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8713\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8714\">\r\n\t\t\t\t\t<float_array count=\"324\" id=\"ID8717\">-2.085953547415767 -2.761547257602155e-015 48.14205217645348 -2.826956028824859 1.411331296952145e-014 48.0684927821028 -2.01356460284792 1.144742656504131e-014 47.88087604756039 -2.983880376773521 4.893848352709398e-015 48.19814599762221 -2.033862354703309 7.011696302336268e-015 48.59763590975866 -3.336148352737579 7.897156226667729e-015 48.22015230838287 -6.629556048629305 6.122269926099113e-015 48.4243477249091 -4.785235549629863 4.355395799566662e-015 49.74109398293582 -1.910144999483377 1.145488506030427e-014 48.91654441218733 -2.167582399821922 4.352095445535666e-015 49.2828149143756 -2.791427356650318 -2.75234617992264e-015 49.41969126278035 -3.993469672513434 1.057306826530011e-014 49.7999040193125 -6.474657332267312 7.762615666609423e-016 46.07240062081026 -7.555554929320552 -1.107919592988028e-016 46.22860060745678 -6.656977695265329 2.550087392649863e-015 45.72095030434023 -5.08121162813574 1.672220506556009e-015 47.15278457791376 -7.549043589656746 2.558196007767424e-015 46.84689271793794 -7.542532249992939 5.22718397483365e-015 47.46518482841912 -4.143565405293923 1.233439241602027e-014 47.71250172805407 -7.750897971646269 1.410953061970328e-014 47.54328496034854 -7.764522034150307 9.67148229734514e-015 47.93816474279968 -7.197039041389793 1.322594662992288e-014 48.18125623385441 -6.629556048629305 6.122269926099113e-015 48.4243477249091 -3.336148352737579 7.897156226667729e-015 48.22015230838287 -7.197039041389793 1.322594662992288e-014 48.18125623385441 -7.764522034150307 9.67148229734514e-015 47.93816474279968 -4.143565405293923 1.233439241602027e-014 47.71250172805407 -7.750897971646269 1.410953061970328e-014 47.54328496034854 -7.542532249992939 5.22718397483365e-015 47.46518482841912 -5.08121162813574 1.672220506556009e-015 47.15278457791376 -7.549043589656746 2.558196007767424e-015 46.84689271793794 -7.555554929320552 -1.107919592988028e-016 46.22860060745678 -6.474657332267312 7.762615666609423e-016 46.07240062081026 -6.656977695265329 2.550087392649863e-015 45.72095030434023 -3.993469672513434 1.057306826530011e-014 49.7999040193125 -2.791427356650318 -2.75234617992264e-015 49.41969126278035 -4.785235549629863 4.355395799566662e-015 49.74109398293582 -2.167582399821922 4.352095445535666e-015 49.2828149143756 -1.910144999483377 1.145488506030427e-014 48.91654441218733 -2.033862354703309 7.011696302336268e-015 48.59763590975866 -2.983880376773521 4.893848352709398e-015 48.19814599762221 -2.085953547415767 -2.761547257602155e-015 48.14205217645348 -2.826956028824859 1.411331296952145e-014 48.0684927821028 -2.01356460284792 1.144742656504131e-014 47.88087604756039 0.09658447620019128 -8.415663442308786e-017 49.92711651217412 -2.01356460284792 1.144742656504131e-014 47.88087604756039 -1.609798503440216 6.116944689067973e-015 47.6848983677877 -2.085953547415767 -2.761547257602155e-015 48.14205217645348 -2.033862354703309 7.011696302336268e-015 48.59763590975866 -1.910144999483377 1.145488506030427e-014 48.91654441218733 -2.167582399821922 4.352095445535666e-015 49.2828149143756 -2.791427356650318 -2.75234617992264e-015 49.41969126278035 -3.993469672513434 1.057306826530011e-014 49.7999040193125 -6.629556048629305 6.122269926099113e-015 48.4243477249091 -7.269055508709684 7.995110861838978e-016 49.30077189594682 -7.197039041389793 1.322594662992288e-014 48.18125623385441 -4.785235549629863 4.355395799566662e-015 49.74109398293582 -7.102552711753817 5.249511957780135e-015 50.56559379407529 0.2407982439431615 4.361925860522113e-015 50.64784223606204 -6.936049914797949 1.236932158774434e-014 52.56268087033551 0.7970150443586213 5.258047051373408e-015 51.75075596312215 1.424564248943572 8.81967631042325e-015 52.98875157631026 -6.519792447006531 1.237723183864211e-014 53.66107891474528 1.721824080029984 5.269696742560433e-015 53.3684035173121 1.705309913886151 1.593604011177497e-014 54.50735934031761 -6.436149317510935 -5.37868970672062e-015 54.72290156744966 1.193361889181961 -6.259861423349999e-015 55.69583517602067 -6.166120664905954 8.840537960162357e-015 55.88554910811225 0.3814094709477675 -9.184837894256318e-016 57.40477108941354 -5.646835087066797 6.18347854985024e-015 56.92362714071246 -4.649806910727992 -1.802352343034138e-015 58.00322852747498 -0.4265878569338319 1.755068935397346e-015 58.65691426960417 -3.715092490296091 2.129566918053622e-014 58.75064474421262 -1.120620900054565 1.152993127308923e-014 59.33727751265104 -2.178007008747413 7.979123082478123e-015 59.60186893053771 -1.707879815022027 1.15314684397613e-014 59.55072470773506 -1.707879815022027 1.15314684397613e-014 59.55072470773506 -1.120620900054565 1.152993127308923e-014 59.33727751265104 -2.178007008747413 7.979123082478123e-015 59.60186893053771 -3.715092490296091 2.129566918053622e-014 58.75064474421262 -0.4265878569338319 1.755068935397346e-015 58.65691426960417 -4.649806910727992 -1.802352343034138e-015 58.00322852747498 0.3814094709477675 -9.184837894256318e-016 57.40477108941354 -5.646835087066797 6.18347854985024e-015 56.92362714071246 -6.166120664905954 8.840537960162357e-015 55.88554910811225 1.193361889181961 -6.259861423349999e-015 55.69583517602067 -6.436149317510935 -5.37868970672062e-015 54.72290156744966 1.705309913886151 1.593604011177497e-014 54.50735934031761 -6.519792447006531 1.237723183864211e-014 53.66107891474528 1.721824080029984 5.269696742560433e-015 53.3684035173121 1.424564248943572 8.81967631042325e-015 52.98875157631026 -6.936049914797949 1.236932158774434e-014 52.56268087033551 0.7970150443586213 5.258047051373408e-015 51.75075596312215 0.2407982439431615 4.361925860522113e-015 50.64784223606204 -7.102552711753817 5.249511957780135e-015 50.56559379407529 0.09658447620019128 -8.415663442308786e-017 49.92711651217412 -3.993469672513434 1.057306826530011e-014 49.7999040193125 -4.785235549629863 4.355395799566662e-015 49.74109398293582 -7.269055508709684 7.995110861838978e-016 49.30077189594682 -6.629556048629305 6.122269926099113e-015 48.4243477249091 -7.197039041389793 1.322594662992288e-014 48.18125623385441 -2.791427356650318 -2.75234617992264e-015 49.41969126278035 -2.167582399821922 4.352095445535666e-015 49.2828149143756 -1.910144999483377 1.145488506030427e-014 48.91654441218733 -2.033862354703309 7.011696302336268e-015 48.59763590975866 -2.085953547415767 -2.761547257602155e-015 48.14205217645348 -2.01356460284792 1.144742656504131e-014 47.88087604756039 -1.609798503440216 6.116944689067973e-015 47.6848983677877</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"108\" source=\"#ID8717\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8715\">\r\n\t\t\t\t\t<float_array count=\"324\" id=\"ID8718\">-3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 -3.724073288109593e-016 -1 1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 3.724073288109593e-016 1 -1.49613214356977e-015 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 -2.5567731517032e-016 -1 1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016 2.5567731517032e-016 1 -1.774757241727893e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"108\" source=\"#ID8718\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8716\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8714\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8715\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"100\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8716\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 6 4 7 7 4 8 7 8 9 7 9 10 7 10 11 12 13 14 13 12 15 13 15 16 16 15 17 17 15 18 17 18 19 19 18 20 20 18 5 20 5 21 21 5 6 22 23 24 24 23 25 23 26 25 25 26 27 27 26 28 26 29 28 28 29 30 30 29 31 29 32 31 33 31 32 34 35 36 35 37 36 37 38 36 38 39 36 36 39 22 22 39 23 23 39 40 39 41 40 40 41 42 43 42 41 44 45 46 45 44 47 47 44 48 48 44 49 49 44 50 50 44 51 51 44 52 53 54 55 54 53 56 54 56 57 57 56 52 57 52 44 57 44 58 57 58 59 59 58 60 59 60 61 59 61 62 62 61 63 62 63 64 62 64 65 65 64 66 65 66 67 67 66 68 67 68 69 69 68 70 70 68 71 70 71 72 72 71 73 72 73 74 74 73 75 76 77 78 78 77 79 77 80 79 79 80 81 80 82 81 81 82 83 83 82 84 82 85 84 84 85 86 85 87 86 86 87 88 87 89 88 89 90 88 88 90 91 90 92 91 92 93 91 91 93 94 93 95 94 95 96 94 96 97 94 94 97 98 97 99 98 100 98 99 96 95 101 101 95 102 102 95 103 103 95 104 104 95 105 105 95 106 107 106 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8719\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8722\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID8725\">14.66060064622032 -1.903045258715113e-015 44.02125714637888 13.75475224512608 -3.678424630756706e-015 44.15698586713581 12.97827301411347 -4.567338479682585e-015 44.05486596805684 14.20363664660315 -1.007690134892238e-015 45.01779668420281 13.91586912540726 1.054010654038432e-014 45.22291971681855 14.17837720155429 -1.004878483190923e-015 45.40821574551935 17.50427349933227 6.922852498217061e-015 36.2610031071277 13.2252126400678 3.37265567924884e-015 36.6104880923149 14.04106488630103 -1.910842393192642e-016 35.07941147357636 16.94542225780586 -1.94670354650444e-015 37.95897435031723 11.92650941018111 3.388595784179683e-015 38.82389197924612 16.0522648360769 2.516167210807102e-015 41.0108770230212 11.76000918226604 1.138975213928375e-014 39.87234669959522 12.04305973107153 6.067033692832637e-015 40.7543798080164 12.18475119591037 1.05120259092077e-014 41.32371212292451 15.74069810599714 8.738200619252422e-015 41.67523687171227 11.75274273439479 1.584357496474937e-014 41.6678757409268 11.6099803627613 4.301366035022823e-015 42.23865335471111 11.48225333167271 -2.800383705541627e-015 42.74931823920657 11.88672172562018 7.572334632055835e-016 43.43020483027133 12.20179418647559 1.23083456663101e-014 44.09571392768844 12.20179418647559 1.23083456663101e-014 44.09571392768844 12.97827301411347 -4.567338479682585e-015 44.05486596805684 11.88672172562018 7.572334632055835e-016 43.43020483027133 14.66060064622032 -1.903045258715113e-015 44.02125714637888 11.48225333167271 -2.800383705541627e-015 42.74931823920657 11.6099803627613 4.301366035022823e-015 42.23865335471111 15.74069810599714 8.738200619252422e-015 41.67523687171227 11.75274273439479 1.584357496474937e-014 41.6678757409268 12.18475119591037 1.05120259092077e-014 41.32371212292451 16.0522648360769 2.516167210807102e-015 41.0108770230212 12.04305973107153 6.067033692832637e-015 40.7543798080164 11.76000918226604 1.138975213928375e-014 39.87234669959522 11.92650941018111 3.388595784179683e-015 38.82389197924612 16.94542225780586 -1.94670354650444e-015 37.95897435031723 13.2252126400678 3.37265567924884e-015 36.6104880923149 17.50427349933227 6.922852498217061e-015 36.2610031071277 14.04106488630103 -1.910842393192642e-016 35.07941147357636 14.17837720155429 -1.004878483190923e-015 45.40821574551935 14.20363664660315 -1.007690134892238e-015 45.01779668420281 13.91586912540726 1.054010654038432e-014 45.22291971681855 13.75475224512608 -3.678424630756706e-015 44.15698586713581</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID8725\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8723\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID8726\">-8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 -8.784421282777286e-016 -1 -3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016 8.784421282777286e-016 1 3.305776438949201e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID8726\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8724\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8722\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8723\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"38\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8724\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 6 7 8 7 6 9 7 9 10 10 9 11 10 11 12 12 11 13 13 11 14 14 11 15 14 15 16 16 15 17 17 15 0 17 0 18 18 0 19 19 0 2 19 2 20 21 22 23 22 24 23 23 24 25 25 24 26 24 27 26 26 27 28 28 27 29 27 30 29 29 30 31 31 30 32 32 30 33 30 34 33 33 34 35 34 36 35 37 35 36 38 39 40 40 39 41 39 24 41 22 41 24</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8727\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8728\">\r\n\t\t\t\t\t<float_array count=\"138\" id=\"ID8731\">14.17837720155429 -1.004878483190923e-015 45.40821574551935 13.48846313124425 4.323513207677108e-015 45.31395544652364 13.91586912540726 1.054010654038432e-014 45.22291971681855 13.55398169377652 1.764831176261279e-014 45.60864718790621 14.52037504556737 1.321001353938849e-014 45.96882634881558 13.78191951440479 -1.254890439307902e-014 45.72669194915176 13.62968627788825 7.880871878539744e-015 45.958947655151 13.65216151748765 6.105971058913975e-015 46.16112699100025 14.9298634394577 -5.436899236490348e-015 46.64006898838289 13.92186197243154 -3.662292868050509e-015 46.39700288282433 13.66339913728735 7.885806167210846e-015 46.64411088156925 14.96033840897801 7.00104383117078e-015 47.11845988266175 13.58473620206427 1.588135330421126e-014 46.91368332936821 13.92843839421283 -7.209516712340921e-015 47.15930784229337 14.79686913964641 -9.860901757193699e-016 48.01711405370622 14.42617578094811 -8.98141375079676e-015 47.77858486638629 13.67301761046028 1.233158520612913e-014 47.32269944560708 13.48911458161851 7.005309315598411e-015 47.71075459168196 14.38819556294244 1.682563483657399e-015 48.58898501812318 14.65383322645008 -3.644742006095454e-015 48.83407254070007 14.52101439469625 4.347981256981724e-015 48.71152877941163 13.67301761046028 1.055964093700166e-014 47.93541813444306 14.16342541845522 8.782548670069568e-015 47.83329847057673 14.16342541845522 8.782548670069568e-015 47.83329847057673 14.42617578094811 -8.98141375079676e-015 47.77858486638629 13.67301761046028 1.055964093700166e-014 47.93541813444306 13.48911458161851 7.005309315598411e-015 47.71075459168196 14.52101439469625 4.347981256981724e-015 48.71152877941163 14.65383322645008 -3.644742006095454e-015 48.83407254070007 14.38819556294244 1.682563483657399e-015 48.58898501812318 14.79686913964641 -9.860901757193699e-016 48.01711405370622 13.67301761046028 1.233158520612913e-014 47.32269944560708 13.92843839421283 -7.209516712340921e-015 47.15930784229337 14.96033840897801 7.00104383117078e-015 47.11845988266175 13.58473620206427 1.588135330421126e-014 46.91368332936821 13.66339913728735 7.885806167210846e-015 46.64411088156925 14.9298634394577 -5.436899236490348e-015 46.64006898838289 13.92186197243154 -3.662292868050509e-015 46.39700288282433 13.65216151748765 6.105971058913975e-015 46.16112699100025 14.52037504556737 1.321001353938849e-014 45.96882634881558 13.62968627788825 7.880871878539744e-015 45.958947655151 13.78191951440479 -1.254890439307902e-014 45.72669194915176 13.55398169377652 1.764831176261279e-014 45.60864718790621 14.17837720155429 -1.004878483190923e-015 45.40821574551935 13.48846313124425 4.323513207677108e-015 45.31395544652364 13.91586912540726 1.054010654038432e-014 45.22291971681855</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"46\" source=\"#ID8731\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8729\">\r\n\t\t\t\t\t<float_array count=\"138\" id=\"ID8732\">-6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 -6.375347374543467e-015 -1 6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017 6.375347374543467e-015 1 -6.346497366794475e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"46\" source=\"#ID8732\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8730\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8728\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8729\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"42\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8730\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 6 4 7 7 4 8 7 8 9 9 8 10 10 8 11 10 11 12 12 11 13 13 11 14 13 14 15 13 15 16 16 15 17 15 14 18 18 14 19 18 19 20 15 21 17 21 15 22 23 24 25 26 25 24 27 28 29 28 30 29 29 30 24 26 24 31 31 24 32 24 30 32 30 33 32 32 33 34 34 33 35 33 36 35 35 36 37 37 36 38 36 39 38 38 39 40 40 39 41 41 39 42 39 43 42 42 43 44 45 44 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8733\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8734\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID8737\">11.33416771301961 4.349758301991333e-015 48.95828489228426 11.22693497738597 1.677122484898181e-015 47.8334612712788 11.39000880187824 6.115089198473694e-015 47.42724949336954 11.07628236642855 7.907256276879025e-016 48.08084467038105 10.91635876198224 -2.760096853256073e-015 48.34345176768384 10.9392051064388 -1.868793846897718e-015 48.77732420982807 11.13339822756996 -8.084233814556092e-015 49.0285133822622 11.13339822756996 -8.084233814556092e-015 49.0285133822622 11.33416771301961 4.349758301991333e-015 48.95828489228426 10.9392051064388 -1.868793846897718e-015 48.77732420982807 10.91635876198224 -2.760096853256073e-015 48.34345176768384 11.07628236642855 7.907256276879025e-016 48.08084467038105 11.22693497738597 1.677122484898181e-015 47.8334612712788 11.39000880187824 6.115089198473694e-015 47.42724949336954</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID8737\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8735\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID8738\">1.368367387649385e-014 -1 -3.26984529018807e-015 1.368367387649385e-014 -1 -3.26984529018807e-015 1.368367387649385e-014 -1 -3.26984529018807e-015 1.368367387649385e-014 -1 -3.26984529018807e-015 1.368367387649385e-014 -1 -3.26984529018807e-015 1.368367387649385e-014 -1 -3.26984529018807e-015 1.368367387649385e-014 -1 -3.26984529018807e-015 -1.368367387649385e-014 1 3.26984529018807e-015 -1.368367387649385e-014 1 3.26984529018807e-015 -1.368367387649385e-014 1 3.26984529018807e-015 -1.368367387649385e-014 1 3.26984529018807e-015 -1.368367387649385e-014 1 3.26984529018807e-015 -1.368367387649385e-014 1 3.26984529018807e-015 -1.368367387649385e-014 1 3.26984529018807e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID8738\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8736\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8734\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8735\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8736\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 7 8 9 9 8 10 10 8 11 11 8 12 13 12 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8739\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8742\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID8745\">14.15493875805369 1.145946789550941e-016 50.18861116586202 13.69299595977074 -9.716938623539652e-016 50.01615082910485 14.07742872517984 -2.748547382425925e-015 49.94718296884957 13.76688806885414 1.972560377097876e-015 50.25201238671567 14.42854188023195 6.051070166606861e-015 51.04082998238579 14.0872113935952 2.479454229168578e-014 51.27447553264141 14.50129017153802 8.807279971225319e-015 51.26742631004246 14.50129017153802 8.807279971225319e-015 51.26742631004246 14.42854188023195 6.051070166606861e-015 51.04082998238579 14.0872113935952 2.479454229168578e-014 51.27447553264141 13.76688806885414 1.972560377097876e-015 50.25201238671567 14.15493875805369 1.145946789550941e-016 50.18861116586202 13.69299595977074 -9.716938623539652e-016 50.01615082910485 14.07742872517984 -2.748547382425925e-015 49.94718296884957 14.69567045859722 2.21207060997196e-014 49.98297079998269 12.97818790202121 1.691651463586307e-015 49.85091962810665 14.03510018247185 7.020365362303695e-015 49.80140032104682 14.07742872517984 -2.748547382425925e-015 49.94718296884957 12.21710904753201 9.685514041336167e-015 49.88657830876472 14.15493875805369 1.145946789550941e-016 50.18861116586202 14.5725967597175 -1.85912171602264e-015 50.12037258790873 11.5468887162385 4.35783484207035e-015 50.07977344467552 13.69299595977074 -9.716938623539652e-016 50.01615082910485 13.76688806885414 1.972560377097876e-015 50.25201238671567 11.72102133785646 -4.522152384798942e-015 50.32929631118328 13.46901683335398 8.06712047585325e-016 50.3006797400113 12.14259852463463 7.024495664012143e-015 50.37492388913739 12.14259852463463 7.024495664012143e-015 50.37492388913739 13.46901683335398 8.06712047585325e-016 50.3006797400113 11.72102133785646 -4.522152384798942e-015 50.32929631118328 13.76688806885414 1.972560377097876e-015 50.25201238671567 11.5468887162385 4.35783484207035e-015 50.07977344467552 13.69299595977074 -9.716938623539652e-016 50.01615082910485 14.07742872517984 -2.748547382425925e-015 49.94718296884957 12.21710904753201 9.685514041336167e-015 49.88657830876472 14.5725967597175 -1.85912171602264e-015 50.12037258790873 14.69567045859722 2.21207060997196e-014 49.98297079998269 14.15493875805369 1.145946789550941e-016 50.18861116586202 12.97818790202121 1.691651463586307e-015 49.85091962810665 14.03510018247185 7.020365362303695e-015 49.80140032104682</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID8745\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8743\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID8746\">-1.687735827619253e-014 -1 1.897550573792469e-014 -1.687735827619253e-014 -1 1.897550573792469e-014 -1.687735827619253e-014 -1 1.897550573792469e-014 -1.687735827619253e-014 -1 1.897550573792469e-014 -1.687735827619253e-014 -1 1.897550573792469e-014 -1.687735827619253e-014 -1 1.897550573792469e-014 -1.687735827619253e-014 -1 1.897550573792469e-014 1.687735827619253e-014 1 -1.897550573792469e-014 1.687735827619253e-014 1 -1.897550573792469e-014 1.687735827619253e-014 1 -1.897550573792469e-014 1.687735827619253e-014 1 -1.897550573792469e-014 1.687735827619253e-014 1 -1.897550573792469e-014 1.687735827619253e-014 1 -1.897550573792469e-014 1.687735827619253e-014 1 -1.897550573792469e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 3.659082068087267e-016 -1 -1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014 -3.659082068087267e-016 1 1.050283113172245e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID8746\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8744\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8742\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8743\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8744\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 7 8 9 9 8 10 8 11 10 10 11 12 13 12 11 14 15 16 15 14 17 15 17 18 17 14 19 19 14 20 17 21 18 21 17 22 21 22 23 21 23 24 24 23 25 24 25 26 27 28 29 28 30 29 29 30 31 30 32 31 32 33 31 34 31 33 35 36 37 37 36 33 34 33 38 33 36 38 39 38 36</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8747\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8748\">\r\n\t\t\t\t\t<float_array count=\"354\" id=\"ID8751\">2.398336133394411 -8.851541446165623e-015 65.81233465175161 1.405974315848713 1.33535401974232e-014 65.89858616850268 1.826649504308282 4.470901919373032e-015 65.77999056818256 2.743505601540699 8.024780253071393e-015 65.94171169166563 1.222602935052318 9.801913531328769e-015 66.04952608760453 3.088674666312169 -5.295722017018368e-015 66.24359152986926 1.172535938362255 4.475305701402888e-015 66.39148894315392 3.174967033348697 8.916530286432545e-015 66.43765720734668 1.157883861462288 -1.417572040803608e-014 66.49156417010354 2.926876578962274 2.700989510629511e-015 66.674848407987 1.227996460101353 6.253082039191273e-015 66.58859700884221 1.298109058740417 -5.292538622785901e-015 66.68562984758088 2.53856133067254 3.590254943035696e-015 66.82578832708886 1.675637660306817 -4.403661409808281e-015 66.78266256871324 1.675637660306817 -4.403661409808281e-015 66.78266256871324 2.53856133067254 3.590254943035696e-015 66.82578832708886 1.298109058740417 -5.292538622785901e-015 66.68562984758088 2.926876578962274 2.700989510629511e-015 66.674848407987 1.227996460101353 6.253082039191273e-015 66.58859700884221 1.157883861462288 -1.417572040803608e-014 66.49156417010354 3.174967033348697 8.916530286432545e-015 66.43765720734668 1.172535938362255 4.475305701402888e-015 66.39148894315392 3.088674666312169 -5.295722017018368e-015 66.24359152986926 1.222602935052318 9.801913531328769e-015 66.04952608760453 2.743505601540699 8.024780253071393e-015 65.94171169166563 1.405974315848713 1.33535401974232e-014 65.89858616850268 2.398336133394411 -8.851541446165623e-015 65.81233465175161 1.826649504308282 4.470901919373032e-015 65.77999056818256 -0.4201290189197868 -8.566995139030234e-016 65.9839840987563 -1.117315646576699 5.359026636952407e-015 65.77253362336838 -0.857853651942099 8.910878319048993e-015 65.65283887460433 -0.4339909954593733 2.696862303699937e-015 66.10175457330264 -0.2502025936280381 5.169717182492522e-015 66.03706089097918 0.57793006493314 5.362794497198844e-015 66.29572945871942 -0.2312876054482587 6.262947841649455e-015 66.17210426784618 0.5640680883934657 1.069296260659173e-014 66.4481382804602 1.172535938362255 4.475305701402888e-015 66.39148894315392 1.157883861462288 -1.417572040803608e-014 66.49156417010354 1.227996460101353 6.253082039191273e-015 66.58859700884221 1.227996460101353 6.253082039191273e-015 66.58859700884221 1.157883861462288 -1.417572040803608e-014 66.49156417010354 0.5640680883934657 1.069296260659173e-014 66.4481382804602 1.172535938362255 4.475305701402888e-015 66.39148894315392 0.57793006493314 5.362794497198844e-015 66.29572945871942 -0.2312876054482587 6.262947841649455e-015 66.17210426784618 -0.4339909954593733 2.696862303699937e-015 66.10175457330264 -0.2502025936280381 5.169717182492522e-015 66.03706089097918 -0.4201290189197868 -8.566995139030234e-016 65.9839840987563 -1.117315646576699 5.359026636952407e-015 65.77253362336838 -0.857853651942099 8.910878319048993e-015 65.65283887460433 4.652529089643705 2.716583730403051e-015 68.84022353005592 3.797840316733476 8.045815073776508e-015 68.86255531920794 4.53626758514208 -5.28236253080146e-015 68.09865702963862 3.833020653817746 1.337767426046171e-014 69.24978298738304 3.122716679584569 6.271078126672753e-015 69.08748959166285 0.4449773127308809 9.824622898430178e-015 69.20289312189271 1.481927378864821 4.497234447599007e-015 69.43646087254841 2.709123946649031 -1.148921470899017e-014 69.54232559130959 -1.336860069950333 6.247013502205866e-015 65.74593484257919 -1.555898257893787 9.808327857765393e-015 66.9402037292184 -1.536446312755714 1.157526991231437e-014 65.63288978901244 -1.117315646576699 5.359026636952407e-015 65.77253362336838 -0.4339909954593733 2.696862303699937e-015 66.10175457330264 -0.2312876054482587 6.262947841649455e-015 66.17210426784618 -0.1602370267006688 3.648680853512214e-017 66.67936919401129 0.2104192776358404 7.146011541565573e-015 67.24832069973243 -1.219985032309868 -1.061273213282802e-014 67.91826943482944 0.3030833537199661 8.9253223025113e-015 67.65849500277595 0.05156663340233436 1.8231347311972e-015 68.1083637828982 -0.5773677603995022 1.781381324443961e-014 68.58977715898833 0.6737392546817418 -3.502791290093063e-015 68.54500091385248 1.759231853006964 -9.716705155718442e-015 69.00810087271771 3.122716679584569 6.271078126672753e-015 69.08748959166285 1.759231853006964 -9.716705155718442e-015 69.00810087271771 0.4449773127308809 9.824622898430178e-015 69.20289312189271 -0.5773677603995022 1.781381324443961e-014 68.58977715898833 0.6737392546817418 -3.502791290093063e-015 68.54500091385248 0.05156663340233436 1.8231347311972e-015 68.1083637828982 -1.219985032309868 -1.061273213282802e-014 67.91826943482944 0.3030833537199661 8.9253223025113e-015 67.65849500277595 0.2104192776358404 7.146011541565573e-015 67.24832069973243 -1.555898257893787 9.808327857765393e-015 66.9402037292184 -0.1602370267006688 3.648680853512214e-017 66.67936919401129 -0.2312876054482587 6.262947841649455e-015 66.17210426784618 -0.4339909954593733 2.696862303699937e-015 66.10175457330264 -1.117315646576699 5.359026636952407e-015 65.77253362336838 -1.336860069950333 6.247013502205866e-015 65.74593484257919 -1.536446312755714 1.157526991231437e-014 65.63288978901244 2.709123946649031 -1.148921470899017e-014 69.54232559130959 3.833020653817746 1.337767426046171e-014 69.24978298738304 1.481927378864821 4.497234447599007e-015 69.43646087254841 3.797840316733476 8.045815073776508e-015 68.86255531920794 4.652529089643705 2.716583730403051e-015 68.84022353005592 4.53626758514208 -5.28236253080146e-015 68.09865702963862 0.05862772963863527 1.334154267730728e-014 64.23263994209172 -0.1984414649959865 1.245477789653432e-014 64.42893437739657 -0.1323845987334105 9.051894451586466e-016 63.97500970893866 -0.05872512983639489 1.156785847961471e-014 64.60375641653296 -0.3322772047333897 1.246052711992717e-014 65.22725744112658 -0.1602370267006688 -5.302207777456009e-015 65.342994738025 -0.5917387959931713 9.155485483400321e-016 65.41344937707626 -0.2529006994099774 1.068986345572964e-014 66.01779779060215 -0.7247962239676351 4.913213433694512e-015 65.53314412584028 -0.857853651942099 8.910878319048993e-015 65.65283887460433 -0.4201290189197868 -8.566995139030234e-016 65.9839840987563 -0.2502025936280381 5.169717182492522e-015 66.03706089097918 -0.2502025936280381 5.169717182492522e-015 66.03706089097918 -0.2529006994099774 1.068986345572964e-014 66.01779779060215 -0.4201290189197868 -8.566995139030234e-016 65.9839840987563 -0.857853651942099 8.910878319048993e-015 65.65283887460433 -0.7247962239676351 4.913213433694512e-015 65.53314412584028 -0.5917387959931713 9.155485483400321e-016 65.41344937707626 -0.1602370267006688 -5.302207777456009e-015 65.342994738025 -0.3322772047333897 1.246052711992717e-014 65.22725744112658 -0.05872512983639489 1.156785847961471e-014 64.60375641653296 -0.1984414649959865 1.245477789653432e-014 64.42893437739657 0.05862772963863527 1.334154267730728e-014 64.23263994209172 -0.1323845987334105 9.051894451586466e-016 63.97500970893866</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"118\" source=\"#ID8751\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8749\">\r\n\t\t\t\t\t<float_array count=\"354\" id=\"ID8752\">4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 4.467785466827958e-016 -1 -5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.467785466827958e-016 1 5.328716984040522e-015 -4.207537878051739e-015 -1 5.650000362468156e-015 -4.207537878051739e-015 -1 5.650000362468156e-015 -4.207537878051739e-015 -1 5.650000362468156e-015 -4.207537878051739e-015 -1 5.650000362468156e-015 -4.207537878051739e-015 -1 5.650000362468156e-015 -4.207537878051739e-015 -1 5.650000362468156e-015 -4.207537878051739e-015 -1 5.650000362468156e-015 -4.207537878051739e-015 -1 5.650000362468156e-015 -4.207537878051739e-015 -1 5.650000362468156e-015 -4.207537878051739e-015 -1 5.650000362468156e-015 -4.207537878051739e-015 -1 5.650000362468156e-015 4.207537878051739e-015 1 -5.650000362468156e-015 4.207537878051739e-015 1 -5.650000362468156e-015 4.207537878051739e-015 1 -5.650000362468156e-015 4.207537878051739e-015 1 -5.650000362468156e-015 4.207537878051739e-015 1 -5.650000362468156e-015 4.207537878051739e-015 1 -5.650000362468156e-015 4.207537878051739e-015 1 -5.650000362468156e-015 4.207537878051739e-015 1 -5.650000362468156e-015 4.207537878051739e-015 1 -5.650000362468156e-015 4.207537878051739e-015 1 -5.650000362468156e-015 4.207537878051739e-015 1 -5.650000362468156e-015 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 -4.216361457141966e-016 -1 -7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 4.216361457141966e-016 1 7.02084016820916e-016 1.11349694892223e-015 -1 -2.018317758415531e-015 1.11349694892223e-015 -1 -2.018317758415531e-015 1.11349694892223e-015 -1 -2.018317758415531e-015 1.11349694892223e-015 -1 -2.018317758415531e-015 1.11349694892223e-015 -1 -2.018317758415531e-015 1.11349694892223e-015 -1 -2.018317758415531e-015 1.11349694892223e-015 -1 -2.018317758415531e-015 1.11349694892223e-015 -1 -2.018317758415531e-015 1.11349694892223e-015 -1 -2.018317758415531e-015 1.11349694892223e-015 -1 -2.018317758415531e-015 1.11349694892223e-015 -1 -2.018317758415531e-015 1.11349694892223e-015 -1 -2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015 -1.11349694892223e-015 1 2.018317758415531e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"118\" source=\"#ID8752\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8750\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8748\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8749\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"102\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8750\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 11 9 12 11 12 13 14 15 16 15 17 16 16 17 18 18 17 19 17 20 19 19 20 21 20 22 21 21 22 23 22 24 23 23 24 25 24 26 25 27 25 26 28 29 30 29 28 31 31 28 32 31 32 33 31 33 34 34 33 35 35 33 36 35 36 37 35 37 38 39 40 41 40 42 41 42 43 41 41 43 44 44 43 45 43 46 45 46 47 45 45 47 48 49 48 47 50 51 52 51 50 53 51 53 54 54 53 55 55 53 56 56 53 57 58 59 60 59 58 61 59 61 62 59 62 63 59 63 64 59 64 65 59 65 66 66 65 67 66 67 68 66 68 69 69 68 70 69 70 71 69 71 55 55 71 54 72 73 74 74 73 75 73 76 75 76 77 75 75 77 78 77 79 78 79 80 78 78 80 81 80 82 81 82 83 81 83 84 81 84 85 81 85 86 81 87 81 86 88 89 90 90 89 74 74 89 72 72 89 91 89 92 91 93 91 92 94 95 96 95 94 97 95 97 98 98 97 99 98 99 100 100 99 101 100 101 102 102 101 103 103 101 104 104 101 105 106 107 108 108 107 109 109 107 110 110 107 111 107 112 111 111 112 113 112 114 113 113 114 115 114 116 115 117 115 116</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8753\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8754\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID8757\">5.22860726066456 -4.411758045844034e-015 65.65838354104298 4.904393922452392 9.800877513870634e-015 65.90566724359424 5.033065723198638 5.118539787450567e-016 65.64844541020737 5.342435585520245 1.068827769085766e-014 65.79760236863665 5.297917143362581 1.601879024203277e-014 65.99783953171911 5.02219430198669 1.246880457777744e-014 66.37664494260118 5.256331213743819 -1.743431108387903e-015 66.18488670065447 5.256331213743819 -1.743431108387903e-015 66.18488670065447 5.297917143362581 1.601879024203277e-014 65.99783953171911 5.02219430198669 1.246880457777744e-014 66.37664494260118 4.904393922452392 9.800877513870634e-015 65.90566724359424 5.342435585520245 1.068827769085766e-014 65.79760236863665 5.22860726066456 -4.411758045844034e-015 65.65838354104298 5.033065723198638 5.118539787450567e-016 65.64844541020737 5.033065723198638 5.118539787450567e-016 65.64844541020737 4.313720036049331 1.157565307033118e-014 65.68609417175601 4.81968036455813 2.693519639306813e-015 65.63760039159877 4.904393922452392 9.800877513870634e-015 65.90566724359424 3.974102619266105 4.471073851532636e-015 65.80386464630237 3.814690494122868 1.601879024203277e-014 65.99783953171911 5.02219430198669 1.246880457777744e-014 66.37664494260118 3.683002322058888 -1.240087367674319e-014 66.28187426096915 3.606761652778527 -2.629863359666389e-015 66.42735536622851 4.667199429372138 4.476162684347398e-015 66.51048749358041 3.828552470662542 -5.293301027574629e-015 66.57976418796939 4.161238697488519 8.029524938683492e-015 66.60054710220101 4.161238697488519 8.029524938683492e-015 66.60054710220101 4.667199429372138 4.476162684347398e-015 66.51048749358041 3.828552470662542 -5.293301027574629e-015 66.57976418796939 3.606761652778527 -2.629863359666389e-015 66.42735536622851 5.02219430198669 1.246880457777744e-014 66.37664494260118 3.683002322058888 -1.240087367674319e-014 66.28187426096915 3.814690494122868 1.601879024203277e-014 65.99783953171911 4.904393922452392 9.800877513870634e-015 65.90566724359424 3.974102619266105 4.471073851532636e-015 65.80386464630237 4.313720036049331 1.157565307033118e-014 65.68609417175601 5.033065723198638 5.118539787450567e-016 65.64844541020737 4.81968036455813 2.693519639306813e-015 65.63760039159877</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID8757\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8755\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID8758\">-2.844583609401305e-016 -1 1.190720708922174e-014 -2.844583609401305e-016 -1 1.190720708922174e-014 -2.844583609401305e-016 -1 1.190720708922174e-014 -2.844583609401305e-016 -1 1.190720708922174e-014 -2.844583609401305e-016 -1 1.190720708922174e-014 -2.844583609401305e-016 -1 1.190720708922174e-014 -2.844583609401305e-016 -1 1.190720708922174e-014 2.844583609401305e-016 1 -1.190720708922174e-014 2.844583609401305e-016 1 -1.190720708922174e-014 2.844583609401305e-016 1 -1.190720708922174e-014 2.844583609401305e-016 1 -1.190720708922174e-014 2.844583609401305e-016 1 -1.190720708922174e-014 2.844583609401305e-016 1 -1.190720708922174e-014 2.844583609401305e-016 1 -1.190720708922174e-014 5.189015928622191e-015 -1 -2.648127433446934e-015 5.189015928622191e-015 -1 -2.648127433446934e-015 5.189015928622191e-015 -1 -2.648127433446934e-015 5.189015928622191e-015 -1 -2.648127433446934e-015 5.189015928622191e-015 -1 -2.648127433446934e-015 5.189015928622191e-015 -1 -2.648127433446934e-015 5.189015928622191e-015 -1 -2.648127433446934e-015 5.189015928622191e-015 -1 -2.648127433446934e-015 5.189015928622191e-015 -1 -2.648127433446934e-015 5.189015928622191e-015 -1 -2.648127433446934e-015 5.189015928622191e-015 -1 -2.648127433446934e-015 5.189015928622191e-015 -1 -2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015 -5.189015928622191e-015 1 2.648127433446934e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID8758\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8756\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8754\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8755\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"30\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8756\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 7 8 9 9 8 10 8 11 10 11 12 10 13 10 12 14 15 16 15 14 17 15 17 18 18 17 19 19 17 20 19 20 21 21 20 22 22 20 23 22 23 24 24 23 25 26 27 28 28 27 29 27 30 29 29 30 31 31 30 32 30 33 32 32 33 34 34 33 35 33 36 35 37 35 36</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8759\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8760\">\r\n\t\t\t\t\t<float_array count=\"498\" id=\"ID8763\">5.007469103279344 5.367828963879002e-015 66.994803157847 4.667199429372138 4.476162684347398e-015 66.51048749358041 5.02219430198669 1.246880457777744e-014 66.37664494260118 4.161238697488519 8.029524938683492e-015 66.60054710220101 2.926876578962274 2.700989510629511e-015 66.674848407987 2.53856133067254 3.590254943035696e-015 66.82578832708886 0.5640680883934657 1.069296260659173e-014 66.4481382804602 -0.1602370267006688 3.648680853512214e-017 66.67936919401129 -0.2312876054482587 6.262947841649455e-015 66.17210426784618 1.227996460101353 6.253082039191273e-015 66.58859700884221 1.298109058740417 -5.292538622785901e-015 66.68562984758088 0.2104192776358404 7.146011541565573e-015 67.24832069973243 1.675637660306817 -4.403661409808281e-015 66.78266256871324 4.874943928412526 1.336546250864667e-014 67.55408907251218 0.3030833537199661 8.9253223025113e-015 67.65849500277595 4.53626758514208 -5.28236253080146e-015 68.09865702963862 0.05156663340233436 1.8231347311972e-015 68.1083637828982 3.797840316733476 8.045815073776508e-015 68.86255531920794 0.6737392546817418 -3.502791290093063e-015 68.54500091385248 1.759231853006964 -9.716705155718442e-015 69.00810087271771 3.122716679584569 6.271078126672753e-015 69.08748959166285 3.828552470662542 -5.293301027574629e-015 66.57976418796939 3.384970834894512 1.069286282665221e-014 66.43428308270997 3.606761652778527 -2.629863359666389e-015 66.42735536622851 3.174967033348697 8.916530286432545e-015 66.43765720734668 4.161238697488519 8.029524938683492e-015 66.60054710220101 3.828552470662542 -5.293301027574629e-015 66.57976418796939 2.926876578962274 2.700989510629511e-015 66.674848407987 3.174967033348697 8.916530286432545e-015 66.43765720734668 3.384970834894512 1.069286282665221e-014 66.43428308270997 3.606761652778527 -2.629863359666389e-015 66.42735536622851 3.122716679584569 6.271078126672753e-015 69.08748959166285 3.797840316733476 8.045815073776508e-015 68.86255531920794 1.759231853006964 -9.716705155718442e-015 69.00810087271771 0.6737392546817418 -3.502791290093063e-015 68.54500091385248 0.05156663340233436 1.8231347311972e-015 68.1083637828982 4.53626758514208 -5.28236253080146e-015 68.09865702963862 0.3030833537199661 8.9253223025113e-015 67.65849500277595 4.874943928412526 1.336546250864667e-014 67.55408907251218 0.2104192776358404 7.146011541565573e-015 67.24832069973243 5.007469103279344 5.367828963879002e-015 66.994803157847 2.53856133067254 3.590254943035696e-015 66.82578832708886 1.675637660306817 -4.403661409808281e-015 66.78266256871324 1.298109058740417 -5.292538622785901e-015 66.68562984758088 -0.1602370267006688 3.648680853512214e-017 66.67936919401129 1.227996460101353 6.253082039191273e-015 66.58859700884221 0.5640680883934657 1.069296260659173e-014 66.4481382804602 -0.2312876054482587 6.262947841649455e-015 66.17210426784618 4.667199429372138 4.476162684347398e-015 66.51048749358041 5.02219430198669 1.246880457777744e-014 66.37664494260118 5.033065723198638 5.118539787450567e-016 65.64844541020737 4.81968036455813 2.693519639306813e-015 65.63760039159877 5.110544284106296 -2.636588192195439e-015 65.49356160995541 3.974102619266105 4.471073851532636e-015 65.80386464630237 1.826649504308282 4.470901919373032e-015 65.77999056818256 4.313720036049331 1.157565307033118e-014 65.68609417175601 2.398336133394411 -8.851541446165623e-015 65.81233465175161 3.814690494122868 1.601879024203277e-014 65.99783953171911 2.743505601540699 8.024780253071393e-015 65.94171169166563 3.088674666312169 -5.295722017018368e-015 66.24359152986926 3.683002322058888 -1.240087367674319e-014 66.28187426096915 3.174967033348697 8.916530286432545e-015 66.43765720734668 3.606761652778527 -2.629863359666389e-015 66.42735536622851 3.384970834894512 1.069286282665221e-014 66.43428308270997 3.504329854828864 8.578378403010273e-016 57.39988196046971 3.098400437193755 1.151483606989329e-014 57.2411946090023 3.3607348640978 3.518083065094076e-015 56.80417831534916 3.098400437193755 1.595912717402408e-014 57.7131721967391 3.556596343586845 -5.352488836134184e-015 58.36109021480221 3.203334369305335 1.754315137380078e-015 58.55224372517414 3.575577550281079 7.091436676236035e-015 59.67018871294604 3.108957967005196 6.198927500562407e-015 59.06883055710627 2.825590768946633 7.091851517199773e-015 59.72779251201633 3.708465379923629 5.320075167398339e-015 60.36382806674146 -0.4299805544259172 3.551848146048336e-015 61.49271466758491 3.830533053287226 2.092262751654173e-014 61.00098906409547 4.13531488241072 -4.444797712472081e-015 61.07057644349164 4.330117223488179 -2.66488856275504e-015 61.56384154412223 -0.7035244532175291 3.551848146048336e-015 61.49271466758491 -0.5889139619553898 3.560190194490753e-015 62.65107106031424 4.550992783849423 5.332744982012633e-015 62.12312745878742 4.978019109239475 -7.983147703876392e-015 63.06508285680129 -0.6051086552221667 5.783303215593902e-015 63.02140023261345 -0.6213033484889436 8.006416236697051e-015 63.39172940491264 5.110544284106296 1.156483306615337e-014 64.18365492134426 -1.103959905467294 6.23175956581966e-015 63.6278106373298 -0.1323845987334105 9.051894451586466e-016 63.97500970893866 0.05862772963863527 1.334154267730728e-014 64.23263994209172 5.184169874268284 9.794835861823863e-015 65.0667382539902 -0.05872512983639489 1.156785847961471e-014 64.60375641653296 -0.1602370267006688 -5.302207777456009e-015 65.342994738025 -0.2529006994099774 1.068986345572964e-014 66.01779779060215 1.405974315848713 1.33535401974232e-014 65.89858616850268 1.222602935052318 9.801913531328769e-015 66.04952608760453 -0.2502025936280381 5.169717182492522e-015 66.03706089097918 0.57793006493314 5.362794497198844e-015 66.29572945871942 1.172535938362255 4.475305701402888e-015 66.39148894315392 -1.422307770062042 9.05867627750904e-016 64.06918048085406 -0.1984414649959865 1.245477789653432e-014 64.42893437739657 -1.637962853182607 2.271579803594038e-017 64.76716044142756 -0.3322772047333897 1.246052711992717e-014 65.22725744112658 -1.648231969980072 3.579273339566985e-015 65.30090979537035 -0.5917387959931713 9.155485483400321e-016 65.41344937707626 -1.536446312755714 1.157526991231437e-014 65.63288978901244 -0.7247962239676351 4.913213433694512e-015 65.53314412584028 -0.857853651942099 8.910878319048993e-015 65.65283887460433 -1.336860069950333 6.247013502205866e-015 65.74593484257919 -1.117315646576699 5.359026636952407e-015 65.77253362336838 -1.117315646576699 5.359026636952407e-015 65.77253362336838 -0.857853651942099 8.910878319048993e-015 65.65283887460433 -1.336860069950333 6.247013502205866e-015 65.74593484257919 -1.536446312755714 1.157526991231437e-014 65.63288978901244 -0.7247962239676351 4.913213433694512e-015 65.53314412584028 -0.5917387959931713 9.155485483400321e-016 65.41344937707626 -1.648231969980072 3.579273339566985e-015 65.30090979537035 -0.3322772047333897 1.246052711992717e-014 65.22725744112658 -1.637962853182607 2.271579803594038e-017 64.76716044142756 -0.1984414649959865 1.245477789653432e-014 64.42893437739657 -1.422307770062042 9.05867627750904e-016 64.06918048085406 -0.1323845987334105 9.051894451586466e-016 63.97500970893866 -1.103959905467294 6.23175956581966e-015 63.6278106373298 1.172535938362255 4.475305701402888e-015 66.39148894315392 1.222602935052318 9.801913531328769e-015 66.04952608760453 0.57793006493314 5.362794497198844e-015 66.29572945871942 -0.2502025936280381 5.169717182492522e-015 66.03706089097918 -0.2529006994099774 1.068986345572964e-014 66.01779779060215 1.405974315848713 1.33535401974232e-014 65.89858616850268 1.826649504308282 4.470901919373032e-015 65.77999056818256 4.313720036049331 1.157565307033118e-014 65.68609417175601 4.81968036455813 2.693519639306813e-015 65.63760039159877 5.110544284106296 -2.636588192195439e-015 65.49356160995541 -0.1602370267006688 -5.302207777456009e-015 65.342994738025 5.184169874268284 9.794835861823863e-015 65.0667382539902 -0.05872512983639489 1.156785847961471e-014 64.60375641653296 0.05862772963863527 1.334154267730728e-014 64.23263994209172 5.110544284106296 1.156483306615337e-014 64.18365492134426 -0.6213033484889436 8.006416236697051e-015 63.39172940491264 4.978019109239475 -7.983147703876392e-015 63.06508285680129 -0.6051086552221667 5.783303215593902e-015 63.02140023261345 -0.5889139619553898 3.560190194490753e-015 62.65107106031424 4.550992783849423 5.332744982012633e-015 62.12312745878742 4.330117223488179 -2.66488856275504e-015 61.56384154412223 -0.7035244532175291 3.551848146048336e-015 61.49271466758491 -0.4299805544259172 3.551848146048336e-015 61.49271466758491 4.13531488241072 -4.444797712472081e-015 61.07057644349164 3.830533053287226 2.092262751654173e-014 61.00098906409547 3.708465379923629 5.320075167398339e-015 60.36382806674146 2.825590768946633 7.091851517199773e-015 59.72779251201633 3.575577550281079 7.091436676236035e-015 59.67018871294604 3.108957967005196 6.198927500562407e-015 59.06883055710627 3.203334369305335 1.754315137380078e-015 58.55224372517414 3.556596343586845 -5.352488836134184e-015 58.36109021480221 3.098400437193755 1.595912717402408e-014 57.7131721967391 3.504329854828864 8.578378403010273e-016 57.39988196046971 3.098400437193755 1.151483606989329e-014 57.2411946090023 3.3607348640978 3.518083065094076e-015 56.80417831534916 3.384970834894512 1.069286282665221e-014 66.43428308270997 3.606761652778527 -2.629863359666389e-015 66.42735536622851 3.174967033348697 8.916530286432545e-015 66.43765720734668 3.683002322058888 -1.240087367674319e-014 66.28187426096915 3.088674666312169 -5.295722017018368e-015 66.24359152986926 3.814690494122868 1.601879024203277e-014 65.99783953171911 2.743505601540699 8.024780253071393e-015 65.94171169166563 2.398336133394411 -8.851541446165623e-015 65.81233465175161 3.974102619266105 4.471073851532636e-015 65.80386464630237 5.033065723198638 5.118539787450567e-016 65.64844541020737</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"166\" source=\"#ID8763\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8761\">\r\n\t\t\t\t\t<float_array count=\"498\" id=\"ID8764\">5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 5.859555626077435e-016 -1 -1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -5.859555626077435e-016 1 1.641414762762277e-015 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 -4.361852393037018e-016 -1 -1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016 4.361852393037018e-016 1 1.323826556604128e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"166\" source=\"#ID8764\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8762\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8760\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8761\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"158\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8762\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 6 7 8 7 6 9 7 9 10 7 10 11 11 10 12 11 12 5 11 5 0 11 0 13 11 13 14 14 13 15 14 15 16 16 15 17 16 17 18 18 17 19 19 17 20 21 22 23 22 21 24 24 21 4 4 21 3 25 26 27 27 26 28 28 26 29 30 29 26 31 32 33 33 32 34 34 32 35 32 36 35 35 36 37 36 38 37 37 38 39 38 40 39 40 41 39 41 42 39 42 43 39 39 43 44 43 45 44 45 46 44 47 44 46 41 40 27 27 40 25 25 40 48 49 48 40 50 51 52 53 54 55 54 53 56 56 53 57 56 57 58 58 57 59 59 57 60 59 60 61 61 60 62 61 62 63 64 65 66 65 64 67 67 64 68 67 68 69 69 68 70 69 70 71 71 70 72 72 70 73 72 73 74 74 73 75 74 75 76 74 76 77 74 77 78 78 77 79 79 77 80 79 80 81 79 81 82 82 81 83 83 81 84 83 84 85 85 84 86 86 84 87 87 84 88 87 88 89 89 88 90 90 88 52 90 52 54 90 54 91 54 52 51 54 51 55 91 54 92 91 92 93 91 93 94 94 93 95 95 93 96 86 97 85 97 86 98 97 98 99 99 98 100 99 100 101 101 100 102 101 102 103 103 102 104 103 104 105 103 105 106 106 105 107 108 109 110 110 109 111 109 112 111 112 113 111 111 113 114 113 115 114 114 115 116 115 117 116 116 117 118 117 119 118 120 118 119 121 122 123 123 122 124 124 122 125 122 126 125 126 127 125 128 129 127 129 130 127 125 127 131 127 130 131 130 132 131 131 132 133 133 132 134 132 135 134 134 135 119 119 135 120 120 135 136 135 137 136 136 137 138 138 137 139 137 140 139 140 141 139 139 141 142 142 141 143 141 144 143 144 145 143 145 146 143 143 146 147 146 148 147 147 148 149 149 148 150 148 151 150 150 151 152 151 153 152 152 153 154 155 154 153 156 157 158 157 159 158 158 159 160 159 161 160 160 161 162 162 161 163 161 164 163 163 164 127 128 127 164 130 129 165</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8765\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8768\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8771\">0.02904379557126902 1.551981252361086e-015 30.45665655671066 -0.8339847522541097 3.771161841956711e-015 30.28093793185897 -0.4983623599332532 7.767159437637773e-015 30.1691169246226 -1.057732744884803 1.552786545330591e-015 30.56847756394702 0.2847560176490757 3.775763512196364e-015 30.91991457843787 -1.137642915127855 2.239701684601426e-016 31.04771004888118 0.3646657845173084 1.399418692649182e-014 31.52694253381534 -0.9778225746417517 3.336275974279868e-015 31.55889146022935 0.204845847406025 1.562680138378542e-015 31.9422776363468 -0.6262184709721552 2.451088640574301e-015 31.97422632754816 -0.1307765449148333 6.004837694839942e-015 32.1179960259859 -0.1307765449148333 6.004837694839942e-015 32.1179960259859 0.204845847406025 1.562680138378542e-015 31.9422776363468 -0.6262184709721552 2.451088640574301e-015 31.97422632754816 -0.9778225746417517 3.336275974279868e-015 31.55889146022935 0.3646657845173084 1.399418692649182e-014 31.52694253381534 -1.137642915127855 2.239701684601426e-016 31.04771004888118 0.2847560176490757 3.775763512196364e-015 30.91991457843787 -1.057732744884803 1.552786545330591e-015 30.56847756394702 0.02904379557126902 1.551981252361086e-015 30.45665655671066 -0.8339847522541097 3.771161841956711e-015 30.28093793185897 -0.4983623599332532 7.767159437637773e-015 30.1691169246226</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8771\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8769\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8772\">3.281804351356544e-015 -1 -2.415396087094229e-016 3.281804351356544e-015 -1 -2.415396087094229e-016 3.281804351356544e-015 -1 -2.415396087094229e-016 3.281804351356544e-015 -1 -2.415396087094229e-016 3.281804351356544e-015 -1 -2.415396087094229e-016 3.281804351356544e-015 -1 -2.415396087094229e-016 3.281804351356544e-015 -1 -2.415396087094229e-016 3.281804351356544e-015 -1 -2.415396087094229e-016 3.281804351356544e-015 -1 -2.415396087094229e-016 3.281804351356544e-015 -1 -2.415396087094229e-016 3.281804351356544e-015 -1 -2.415396087094229e-016 -3.281804351356544e-015 1 2.415396087094229e-016 -3.281804351356544e-015 1 2.415396087094229e-016 -3.281804351356544e-015 1 2.415396087094229e-016 -3.281804351356544e-015 1 2.415396087094229e-016 -3.281804351356544e-015 1 2.415396087094229e-016 -3.281804351356544e-015 1 2.415396087094229e-016 -3.281804351356544e-015 1 2.415396087094229e-016 -3.281804351356544e-015 1 2.415396087094229e-016 -3.281804351356544e-015 1 2.415396087094229e-016 -3.281804351356544e-015 1 2.415396087094229e-016 -3.281804351356544e-015 1 2.415396087094229e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8772\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8770\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8768\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8769\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8770\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 7 8 9 9 8 10 11 12 13 13 12 14 12 15 14 14 15 16 15 17 16 16 17 18 17 19 18 18 19 20 21 20 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8773\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8774\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8777\">15.59766219280082 -7.226483565273377e-017 51.57838253175827 14.7865617022387 1.701934307655778e-015 51.27877014294453 15.13921417712982 2.589605034556414e-015 51.20827316562663 14.61023526310565 8.154058912479029e-016 51.50788555444039 14.64550071228219 7.923879405645838e-015 51.93086741834789 15.70345813695563 2.213562258494084e-014 52.05423736386683 14.82182674804034 1.709168933436315e-015 52.28335254015008 15.54476442241089 1.059273005692969e-014 52.53009219597538 15.15684690171805 4.37573496542856e-015 52.56534068463437 15.15684690171805 4.37573496542856e-015 52.56534068463437 15.54476442241089 1.059273005692969e-014 52.53009219597538 14.82182674804034 1.709168933436315e-015 52.28335254015008 15.70345813695563 2.213562258494084e-014 52.05423736386683 14.64550071228219 7.923879405645838e-015 51.93086741834789 15.59766219280082 -7.226483565273377e-017 51.57838253175827 14.61023526310565 8.154058912479029e-016 51.50788555444039 14.7865617022387 1.701934307655778e-015 51.27877014294453 15.13921417712982 2.589605034556414e-015 51.20827316562663</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8777\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8775\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8778\">7.614614925132265e-015 -1 3.729918473278908e-015 7.614614925132265e-015 -1 3.729918473278908e-015 7.614614925132265e-015 -1 3.729918473278908e-015 7.614614925132265e-015 -1 3.729918473278908e-015 7.614614925132265e-015 -1 3.729918473278908e-015 7.614614925132265e-015 -1 3.729918473278908e-015 7.614614925132265e-015 -1 3.729918473278908e-015 7.614614925132265e-015 -1 3.729918473278908e-015 7.614614925132265e-015 -1 3.729918473278908e-015 -7.614614925132265e-015 1 -3.729918473278908e-015 -7.614614925132265e-015 1 -3.729918473278908e-015 -7.614614925132265e-015 1 -3.729918473278908e-015 -7.614614925132265e-015 1 -3.729918473278908e-015 -7.614614925132265e-015 1 -3.729918473278908e-015 -7.614614925132265e-015 1 -3.729918473278908e-015 -7.614614925132265e-015 1 -3.729918473278908e-015 -7.614614925132265e-015 1 -3.729918473278908e-015 -7.614614925132265e-015 1 -3.729918473278908e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8778\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8776\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8774\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8775\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8776\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 9 10 11 10 12 11 11 12 13 12 14 13 13 14 15 15 14 16 17 16 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8779\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8780\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID8783\">-4.426100671169674 1.818565256318934e-015 5.808718894007146 -5.041396961470662 -1.836324975199802e-016 5.281572663168274 -4.191701969138299 4.476140613515044e-015 4.842283980660823 -6.410003046948426 4.036272739862803e-015 5.428448374737057 -5.718281419683364 3.388419476387996e-015 6.91869653162363 -4.045202679525071 4.26421950457883e-015 6.248007811727184 -3.224807625790335 3.154207385661337e-015 6.277293661170986 -3.21406674881577 4.767110459339366e-017 6.567254310477241 -3.172069188464056 -1.662085435195814e-016 7.701020193627887 -5.788542370398786 2.416701626160513e-015 11.78304511723604 -2.835613020339076 3.176670844038865e-015 9.396514413007818 -1.984335185115919 2.749686155175784e-015 11.77160625844662 -1.29326089648144 3.658591630239683e-015 14.64971434530403 -5.715292725592168 4.549535957316586e-015 15.03378146187618 -0.921757915986217 5.611094696794845e-016 16.19690796839145 -5.109965037829257 1.012524908715383e-015 17.21421018985316 -0.5543063299424613 5.453657642451832e-015 17.24762420868202 -0.8531470742536644 3.233323825431981e-015 17.26320850102101 -5.920391489025832 -1.842652163368901e-016 5.193714879624293 -6.180949983894293 1.368612771593353e-015 4.994558921038022 -5.041396961470662 -1.836324975199802e-016 5.281572663168274 -5.920391489025832 -1.842652163368901e-016 5.193714879624293 -6.410003046948426 4.036272739862803e-015 5.428448374737057 -6.180949983894293 1.368612771593353e-015 4.994558921038022 -0.8531470742536644 3.233323825431981e-015 17.26320850102101 -0.5543063299424613 5.453657642451832e-015 17.24762420868202 -5.109965037829257 1.012524908715383e-015 17.21421018985316 -0.921757915986217 5.611094696794845e-016 16.19690796839145 -5.715292725592168 4.549535957316586e-015 15.03378146187618 -1.29326089648144 3.658591630239683e-015 14.64971434530403 -5.788542370398786 2.416701626160513e-015 11.78304511723604 -1.984335185115919 2.749686155175784e-015 11.77160625844662 -2.835613020339076 3.176670844038865e-015 9.396514413007818 -3.172069188464056 -1.662085435195814e-016 7.701020193627887 -5.718281419683364 3.388419476387996e-015 6.91869653162363 -3.21406674881577 4.767110459339366e-017 6.567254310477241 -3.224807625790335 3.154207385661337e-015 6.277293661170986 -4.045202679525071 4.26421950457883e-015 6.248007811727184 -4.426100671169674 1.818565256318934e-015 5.808718894007146 -4.191701969138299 4.476140613515044e-015 4.842283980660823</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID8783\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8781\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID8784\">3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 3.987826155583005e-017 -1 7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017 -3.987826155583005e-017 1 -7.974110136684953e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID8784\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8782\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8780\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8781\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"36\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8782\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 4 6 7 4 7 8 4 8 9 9 8 10 9 10 11 9 11 12 9 12 13 13 12 14 13 14 15 15 14 16 15 16 17 18 3 19 3 18 1 20 21 22 23 22 21 24 25 26 25 27 26 26 27 28 27 29 28 28 29 30 29 31 30 31 32 30 32 33 30 30 33 34 33 35 34 35 36 34 36 37 34 37 38 34 34 38 22 22 38 20 39 20 38</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8785\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8788\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID8790\">-1.279633523313911 -7.972973117321846e-017 50.54182544306516 -1.786427644263473 -2.753672995430357e-015 49.23545291461601 -0.6082236516845088 -4.508157936993406e-015 52.27253102027834 -0.6489862419841375 6.162462261836198e-015 54.00535691721209</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID8790\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8789\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8788\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8789\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8791\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8792\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID8794\">3.906840267280016 7.25918204976541e-015 21.29776117276027 3.570285818093872 5.707109273300482e-016 17.53014283580085 3.89947181899109 2.835927810892594e-015 23.74691111416461 3.883957414568972 1.540797021648088e-015 28.90364170267513</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID8794\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8793\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8792\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8793\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8793\" />\r\n\t\t\t\t\t<p>0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8795\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8796\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID8798\">-2.697410747907322 1.799794609376695e-015 3.202272883618837 -4.191701969138299 4.476140613515044e-015 4.842283980660823 -1.525418044500514 -9.306809274276721e-017 2.440839151591754 -0.7636224645861267 9.050780974937197e-016 2.294409433947557</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID8798\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8797\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8796\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8797\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<lines count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8797\" />\r\n\t\t\t\t\t<p>0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8799\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8800\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID8802\">2.82816268695669 6.212655878661658e-015 60.97511947916669 3.652764940322108 1.065344198225632e-014 60.96040128641523 2.150810403790617 -4.443471274853528e-015 61.25476231889304 1.591258903533744 1.065863568352497e-014 61.6815859100708 0.868110429244783 2.669002428424474e-015 62.23320060256831</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID8802\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8801\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8800\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8801\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8803\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8804\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID8806\">0.04927143053574845 1.244467372978563e-014 63.02589455722106 -0.06632773247083446 7.119169387785486e-015 63.52108504048078 0.6395924426150295 1.155204195929893e-014 62.40751318623085 0.868110429244783 2.669002428424474e-015 62.23320060256831</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID8806\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8805\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8804\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8805\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8807\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8808\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8810\">-1.786427644263473 -2.753672995430357e-015 49.23545291461601 -1.910144999483377 1.145488506030427e-014 48.91654441218733</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8810\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8809\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8808\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8809\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8811\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8812\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8814\">3.830533053287226 2.092262751654173e-014 61.00098906409547 3.652764940322108 1.065344198225632e-014 60.96040128641523</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8814\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8813\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8812\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8813\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8815\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8816\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8818\">13.86648828724459 5.184640966470149e-015 41.55776699885893 13.93035139941402 1.648323329585155e-015 43.83448117756247</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8818\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8817\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8816\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8817\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8819\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8820\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8822\">15.1011811731435 1.627023797722938e-015 40.87688040779415 14.16451735415989 -4.569691778672828e-015 43.72809264035828</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8822\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8821\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8820\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8821\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8825\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8826\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8829\">-3.327817408737247 3.685097988222936e-016 0.264127263908831 -6.079919958846513 1.385017653474237e-016 -0.002090224857474822 -3.614637260981112 1.385017653474237e-016 -0.002090224857474822 -6.368446712424484 2.095787835385355e-016 0.286312318157361 -2.839540558695481 1.522511134743349e-016 1.617400816060362 -3.690880880268088 6.833743193830463e-016 1.505959049517623 -6.590390100514524 9.601828012221582e-017 1.129334892953011 -5.608520203018671 -1.315057069199153e-015 1.898558721936787 -6.057724921915506 -1.053067356513613e-015 2.14983579359281 -4.776772669413804 -8.21959126190753e-016 1.529052713865513 -3.690880880268088 6.833743193830463e-016 1.505959049517623 -6.590390100514524 9.601828012221582e-017 1.129334892953011 -4.776772669413804 -8.21959126190753e-016 1.529052713865513 -5.608520203018671 -1.315057069199153e-015 1.898558721936787 -6.057724921915506 -1.053067356513613e-015 2.14983579359281 -6.368446712424484 2.095787835385355e-016 0.286312318157361 -2.839540558695481 1.522511134743349e-016 1.617400816060362 -3.327817408737247 3.685097988222936e-016 0.264127263908831 -6.079919958846513 1.385017653474237e-016 -0.002090224857474822 -3.614637260981112 1.385017653474237e-016 -0.002090224857474822</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8829\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8827\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID8830\">1.713935886083581e-016 -1 -4.817875443811866e-016 1.713935886083581e-016 -1 -4.817875443811866e-016 1.713935886083581e-016 -1 -4.817875443811866e-016 1.713935886083581e-016 -1 -4.817875443811866e-016 1.713935886083581e-016 -1 -4.817875443811866e-016 1.713935886083581e-016 -1 -4.817875443811866e-016 1.713935886083581e-016 -1 -4.817875443811866e-016 1.713935886083581e-016 -1 -4.817875443811866e-016 1.713935886083581e-016 -1 -4.817875443811866e-016 1.713935886083581e-016 -1 -4.817875443811866e-016 -1.713935886083581e-016 1 4.817875443811866e-016 -1.713935886083581e-016 1 4.817875443811866e-016 -1.713935886083581e-016 1 4.817875443811866e-016 -1.713935886083581e-016 1 4.817875443811866e-016 -1.713935886083581e-016 1 4.817875443811866e-016 -1.713935886083581e-016 1 4.817875443811866e-016 -1.713935886083581e-016 1 4.817875443811866e-016 -1.713935886083581e-016 1 4.817875443811866e-016 -1.713935886083581e-016 1 4.817875443811866e-016 -1.713935886083581e-016 1 4.817875443811866e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID8830\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8828\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8826\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8827\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8828\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 3 5 6 6 7 8 7 6 9 9 6 5 10 11 12 12 11 13 14 13 11 11 10 15 10 16 15 16 17 15 15 17 18 19 18 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8831\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8832\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID8835\">-2.839540558695481 1.522511134743349e-016 1.617400816060362 -4.776772669413804 -8.21959126190753e-016 1.529052713865513 -3.690880880268088 6.833743193830463e-016 1.505959049517623 -5.608520203018671 -1.315057069199153e-015 1.898558721936787 -2.927753482466433 -8.207125467926366e-016 2.505880247627464 -6.057724921915506 -1.053067356513613e-015 2.14983579359281 -5.303116355226448 6.571482624708337e-016 4.346131920539989 -2.767606089706207 -1.772949120783798e-015 4.30231836208073 -2.376134297335231 -6.566848884169045e-016 5.458442495957675 -4.542800642924157 -1.319383913195167e-015 5.446299586044365 -3.974662150995355 -1.463698335124075e-015 5.563996216078937 -2.518488311035291 -3.128821337615543e-016 6.205476000332615 -3.016782950202983 -1.088871367685708e-015 6.47437355403686 -2.626171556823644 -6.455205536808523e-016 6.47437355403686 -2.733854802612 -9.781589736001504e-016 6.743271107741106 -5.079722231287088 -8.626982456728709e-016 5.794261518952134 -4.542800642924157 -1.319383913195167e-015 5.446299586044365 -5.303116355226448 6.571482624708337e-016 4.346131920539989 -5.079722231287088 -8.626982456728709e-016 5.794261518952134 -2.733854802612 -9.781589736001504e-016 6.743271107741106 -2.626171556823644 -6.455205536808523e-016 6.47437355403686 -3.016782950202983 -1.088871367685708e-015 6.47437355403686 -2.518488311035291 -3.128821337615543e-016 6.205476000332615 -3.974662150995355 -1.463698335124075e-015 5.563996216078937 -2.376134297335231 -6.566848884169045e-016 5.458442495957675 -2.767606089706207 -1.772949120783798e-015 4.30231836208073 -2.927753482466433 -8.207125467926366e-016 2.505880247627464 -6.057724921915506 -1.053067356513613e-015 2.14983579359281 -5.608520203018671 -1.315057069199153e-015 1.898558721936787 -2.839540558695481 1.522511134743349e-016 1.617400816060362 -4.776772669413804 -8.21959126190753e-016 1.529052713865513 -3.690880880268088 6.833743193830463e-016 1.505959049517623</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID8835\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8833\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID8836\">1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 1.034655819602629e-016 -1 -1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016 -1.034655819602629e-016 1 1.205132727532512e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID8836\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8834\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8832\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8833\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8834\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 6 4 7 6 7 8 6 8 9 9 8 10 10 8 11 10 11 12 12 11 13 12 13 14 15 6 9 16 17 18 19 20 21 20 22 21 21 22 23 22 24 23 23 24 16 16 24 17 24 25 17 25 26 17 17 26 27 27 26 28 26 29 28 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8837\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8838\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID8841\">5.544724088767691 -1.767634277674256e-015 10.17093612767039 3.992602135630984 6.317677840682081e-016 7.183315443254013 5.964757788771676 -2.411444210245249e-015 6.952064686306366 0.04424099794716373 -1.199276328171682e-016 6.700811182613263 -0.5089604533024978 3.066533986748369e-016 16.18255879300079 -0.7024391798324929 -9.822955581749762e-016 6.609564117172329 2.320220714379898 -1.530869055166975e-015 6.978944279363107 5.031349760463307 -6.282344520301552e-015 22.20671753711557 -0.3637476308823535 -4.390224739617702e-015 23.36743953323565 5.089988500008802 -1.514221605360373e-015 32.03969497883212 -0.7396495620862353 3.138411630799803e-015 26.58120715777675 -1.661721837869009 -7.95138842249727e-015 31.24718880660499 4.241666682515334 -1.539067673830201e-014 38.70737840696041 -1.522196962713315 5.070916117269653e-015 38.58898503530676 4.502000660355114 7.253466093359129e-015 37.15298263901129 -3.974662150995355 -1.463698335124075e-015 5.563996216078937 -5.079722231287088 -8.626982456728709e-016 5.794261518952134 -4.542800642924157 -1.319383913195167e-015 5.446299586044365 -3.016782950202983 -1.088871367685708e-015 6.47437355403686 -6.382580188013636 -9.905095044079071e-016 6.638602634587153 -2.733854802612 -9.781589736001504e-016 6.743271107741106 -7.003898107109344 -2.196284093659452e-016 15.68814419398984 -2.450926655021015 -8.454364469384086e-016 7.012168661445351 -1.737569279477904 -5.10798150604093e-016 7.690150173124877 -1.664222859173098 -9.911809605288307e-015 17.7681287415647 -7.568734482983455 -3.722314535806947e-015 22.57617189565689 -1.661721837869009 -5.466369871949141e-015 25.60192785244729 -8.360531997295366 -8.09218256154567e-015 27.03500836104481 -8.729063935423239 -1.023086292837936e-014 29.88589509089196 -8.800346978149646 -8.084994431897107e-015 34.85947260993169 -8.292327243955809 -2.069822316884053e-014 38.63128494631512 -3.058971464985444 -1.447172511753745e-014 38.59858683349759 -4.907262103334561 4.176755140166247e-015 38.61013499081096 -4.907262103334561 4.176755140166247e-015 38.61013499081096 -3.058971464985444 -1.447172511753745e-014 38.59858683349759 -8.292327243955809 -2.069822316884053e-014 38.63128494631512 -1.522196962713315 5.070916117269653e-015 38.58898503530676 4.502000660355114 7.253466093359129e-015 37.15298263901129 -8.800346978149646 -8.084994431897107e-015 34.85947260993169 5.089988500008802 -1.514221605360373e-015 32.03969497883212 -1.661721837869009 -7.95138842249727e-015 31.24718880660499 -8.729063935423239 -1.023086292837936e-014 29.88589509089196 -8.360531997295366 -8.09218256154567e-015 27.03500836104481 -1.661721837869009 -5.466369871949141e-015 25.60192785244729 -7.568734482983455 -3.722314535806947e-015 22.57617189565689 -1.664222859173098 -9.911809605288307e-015 17.7681287415647 -7.003898107109344 -2.196284093659452e-016 15.68814419398984 -1.737569279477904 -5.10798150604093e-016 7.690150173124877 -2.450926655021015 -8.454364469384086e-016 7.012168661445351 -2.733854802612 -9.781589736001504e-016 6.743271107741106 -6.382580188013636 -9.905095044079071e-016 6.638602634587153 -3.016782950202983 -1.088871367685708e-015 6.47437355403686 -5.079722231287088 -8.626982456728709e-016 5.794261518952134 -3.974662150995355 -1.463698335124075e-015 5.563996216078937 -4.542800642924157 -1.319383913195167e-015 5.446299586044365 4.241666682515334 -1.539067673830201e-014 38.70737840696041 -0.7396495620862353 3.138411630799803e-015 26.58120715777675 -0.3637476308823535 -4.390224739617702e-015 23.36743953323565 5.031349760463307 -6.282344520301552e-015 22.20671753711557 -0.5089604533024978 3.066533986748369e-016 16.18255879300079 5.544724088767691 -1.767634277674256e-015 10.17093612767039 3.992602135630984 6.317677840682081e-016 7.183315443254013 2.320220714379898 -1.530869055166975e-015 6.978944279363107 0.04424099794716373 -1.199276328171682e-016 6.700811182613263 -0.7024391798324929 -9.822955581749762e-016 6.609564117172329 5.964757788771676 -2.411444210245249e-015 6.952064686306366 0.04424099794716373 -1.199276328171682e-016 6.700811182613263 -0.7024391798324929 -9.822955581749762e-016 6.609564117172329 0.03447222381921833 -4.690307350891276e-016 6.507951012221215 0.03447222381921833 -4.690307350891276e-016 6.507951012221215 -0.7024391798324929 -9.822955581749762e-016 6.609564117172329 0.04424099794716373 -1.199276328171682e-016 6.700811182613263 5.964757788771676 -2.411444210245249e-015 6.952064686306366 2.320220714379898 -1.530869055166975e-015 6.978944279363107 2.330549110193088 -9.123895315717429e-016 6.507951012221215 3.992602135630984 6.317677840682081e-016 7.183315443254013 3.992602135630984 6.317677840682081e-016 7.183315443254013 5.964757788771676 -2.411444210245249e-015 6.952064686306366 2.320220714379898 -1.530869055166975e-015 6.978944279363107 2.330549110193088 -9.123895315717429e-016 6.507951012221215</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID8841\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8839\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID8842\">2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 2.919715912899855e-016 -1 -1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 -2.919715912899855e-016 1 1.606794783303302e-016 9.395465607485421e-016 -1 1.762545804280456e-015 9.395465607485421e-016 -1 1.762545804280456e-015 9.395465607485421e-016 -1 1.762545804280456e-015 -9.395465607485421e-016 1 -1.762545804280456e-015 -9.395465607485421e-016 1 -1.762545804280456e-015 -9.395465607485421e-016 1 -1.762545804280456e-015 -3.987862643211349e-016 -1 2.32703306358256e-015 -3.987862643211349e-016 -1 2.32703306358256e-015 -3.987862643211349e-016 -1 2.32703306358256e-015 -3.987862643211349e-016 -1 2.32703306358256e-015 3.987862643211349e-016 1 -2.32703306358256e-015 3.987862643211349e-016 1 -2.32703306358256e-015 3.987862643211349e-016 1 -2.32703306358256e-015 3.987862643211349e-016 1 -2.32703306358256e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID8842\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8840\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8838\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8839\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"68\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8840\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 4 6 1 4 1 0 4 0 7 4 7 8 8 7 9 8 9 10 10 9 11 12 13 14 15 16 17 16 15 18 16 18 19 19 18 20 19 20 21 21 20 22 21 22 23 21 23 24 21 24 25 25 24 26 25 26 27 27 26 11 27 11 28 28 11 29 29 11 9 29 9 14 29 14 30 30 14 13 30 13 31 30 31 32 33 34 35 34 36 35 36 37 35 35 37 38 37 39 38 39 40 38 38 40 41 41 40 42 40 43 42 42 43 44 43 45 44 44 45 46 45 47 46 47 48 46 48 49 46 46 49 50 49 51 50 50 51 52 51 53 52 54 52 53 37 36 55 40 39 56 56 39 57 39 58 57 57 58 59 58 60 59 60 61 59 61 62 59 62 63 59 64 59 63 65 61 60 66 67 68 69 70 71 72 73 74 73 72 75 76 77 78 79 78 77</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8843\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8844\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID8847\">-0.4760946248489582 -1.195157728719756e-015 3.82964505298909 -0.6551070136135619 -2.463449583877919e-016 4.007780065714904 -0.128496787427629 -9.040001288272642e-017 2.671484960838336 -0.4638862200891358 -2.578065470758783e-016 4.24454678165337 -0.6551070136135619 1.11897459774036e-016 4.311271649997632 -0.4516778153293117 6.795446345679992e-016 4.659448510317649 -0.6551070136135619 4.701398779358642e-016 4.61476323428036 -0.04853107525897915 -1.670517812315993e-015 5.510171279284442 -0.04853107525897915 -1.670517812315993e-015 5.510171279284442 -0.4516778153293117 6.795446345679992e-016 4.659448510317649 -0.6551070136135619 4.701398779358642e-016 4.61476323428036 -0.6551070136135619 1.11897459774036e-016 4.311271649997632 -0.4638862200891358 -2.578065470758783e-016 4.24454678165337 -0.6551070136135619 -2.463449583877919e-016 4.007780065714904 -0.4760946248489582 -1.195157728719756e-015 3.82964505298909 -0.128496787427629 -9.040001288272642e-017 2.671484960838336</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID8847\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8845\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID8848\">-1.848772917057218e-015 -1 -2.24189874763569e-016 -1.848772917057218e-015 -1 -2.24189874763569e-016 -1.848772917057218e-015 -1 -2.24189874763569e-016 -1.848772917057218e-015 -1 -2.24189874763569e-016 -1.848772917057218e-015 -1 -2.24189874763569e-016 -1.848772917057218e-015 -1 -2.24189874763569e-016 -1.848772917057218e-015 -1 -2.24189874763569e-016 -1.848772917057218e-015 -1 -2.24189874763569e-016 1.848772917057218e-015 1 2.24189874763569e-016 1.848772917057218e-015 1 2.24189874763569e-016 1.848772917057218e-015 1 2.24189874763569e-016 1.848772917057218e-015 1 2.24189874763569e-016 1.848772917057218e-015 1 2.24189874763569e-016 1.848772917057218e-015 1 2.24189874763569e-016 1.848772917057218e-015 1 2.24189874763569e-016 1.848772917057218e-015 1 2.24189874763569e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID8848\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8846\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8844\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8845\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8846\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 8 9 10 10 9 11 9 12 11 11 12 13 12 14 13 15 13 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8849\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8850\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID8853\">3.088718719699717 2.421831252834461e-016 1.691960687169234 1.910113569880995 -5.205119010723695e-016 1.444589921214155 2.701127442486319 -5.205119010723695e-016 1.444589921214155 0.4702702933925682 -1.49412482938108e-016 1.604505086802224 0.1231347252831618 -8.330865755123294e-016 1.764638156937293 2.307385009001553 3.450644769830157e-016 3.683210202826646 0.03665139384647631 -8.229307202940458e-016 2.12122827839803 -0.128496787427629 -9.040001288272642e-017 2.671484960838336 -0.4760946248489582 -1.195157728719756e-015 3.82964505298909 2.258551389962269 -1.388457691602157e-015 4.513012606083246 -0.4638862200891358 -2.578065470758783e-016 4.24454678165337 -0.4516778153293117 6.795446345679992e-016 4.659448510317649 2.341563306415882 -1.81068044459412e-015 6.005684023450937 -0.04853107525897915 -1.670517812315993e-015 5.510171279284442 -0.01218222519280943 -2.136303687822818e-015 5.586874849730465 0.03447222381921833 -4.690307350891276e-016 6.507951012221215 2.330549110193088 -9.123895315717429e-016 6.507951012221215 2.320220714379898 -1.530869055166975e-015 6.978944279363107 0.04424099794716373 -1.199276328171682e-016 6.700811182613263 0.04424099794716373 -1.199276328171682e-016 6.700811182613263 2.320220714379898 -1.530869055166975e-015 6.978944279363107 0.03447222381921833 -4.690307350891276e-016 6.507951012221215 2.330549110193088 -9.123895315717429e-016 6.507951012221215 2.341563306415882 -1.81068044459412e-015 6.005684023450937 -0.01218222519280943 -2.136303687822818e-015 5.586874849730465 -0.04853107525897915 -1.670517812315993e-015 5.510171279284442 -0.4516778153293117 6.795446345679992e-016 4.659448510317649 2.258551389962269 -1.388457691602157e-015 4.513012606083246 -0.4638862200891358 -2.578065470758783e-016 4.24454678165337 -0.4760946248489582 -1.195157728719756e-015 3.82964505298909 2.307385009001553 3.450644769830157e-016 3.683210202826646 -0.128496787427629 -9.040001288272642e-017 2.671484960838336 0.03665139384647631 -8.229307202940458e-016 2.12122827839803 0.1231347252831618 -8.330865755123294e-016 1.764638156937293 3.088718719699717 2.421831252834461e-016 1.691960687169234 0.4702702933925682 -1.49412482938108e-016 1.604505086802224 1.910113569880995 -5.205119010723695e-016 1.444589921214155 2.701127442486319 -5.205119010723695e-016 1.444589921214155</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID8853\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8851\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID8854\">-4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 -4.999877914219284e-017 -1 -1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016 4.999877914219284e-017 1 1.555525877507331e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID8854\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8852\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8850\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8851\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"34\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8852\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 7 5 8 8 5 9 8 9 10 10 9 11 11 9 12 11 12 13 13 12 14 14 12 15 15 12 16 15 16 17 15 17 18 19 20 21 20 22 21 22 23 21 21 23 24 24 23 25 25 23 26 23 27 26 26 27 28 28 27 29 27 30 29 29 30 31 31 30 32 32 30 33 30 34 33 33 34 35 35 34 36 37 36 34</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8855\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8856\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID8859\">3.088718719699717 2.421831252834461e-016 1.691960687169234 2.701127442486319 -5.205119010723695e-016 1.444589921214155 3.479376158206506 -2.346439600622463e-016 1.071772018789743 3.894456684127798 -1.037587185140961e-016 0.412810449734843 0.8668124456890656 -2.761127307208806e-019 -0.002090224857474822 3.699123953274755 -2.761127307208806e-019 -0.002090224857474822 0.4273151102481281 -6.198405988676908e-017 0.5104343858910578 0.4702702933925682 -1.49412482938108e-016 1.604505086802224 0.1231347252831618 -8.330865755123294e-016 1.764638156937293 1.910113569880995 -5.205119010723695e-016 1.444589921214155 2.701127442486319 -5.205119010723695e-016 1.444589921214155 3.479376158206506 -2.346439600622463e-016 1.071772018789743 1.910113569880995 -5.205119010723695e-016 1.444589921214155 0.4702702933925682 -1.49412482938108e-016 1.604505086802224 0.1231347252831618 -8.330865755123294e-016 1.764638156937293 0.4273151102481281 -6.198405988676908e-017 0.5104343858910578 3.894456684127798 -1.037587185140961e-016 0.412810449734843 0.8668124456890656 -2.761127307208806e-019 -0.002090224857474822 3.699123953274755 -2.761127307208806e-019 -0.002090224857474822 3.088718719699717 2.421831252834461e-016 1.691960687169234 0.4273151102481281 -6.198405988676908e-017 0.5104343858910578 0 0 0 0.3875588197513569 0 0 -0.128496787427629 -9.040001288272642e-017 2.671484960838336 0.1231347252831618 -8.330865755123294e-016 1.764638156937293 0.03665139384647631 -8.229307202940458e-016 2.12122827839803 0.03665139384647631 -8.229307202940458e-016 2.12122827839803 0.1231347252831618 -8.330865755123294e-016 1.764638156937293 -0.128496787427629 -9.040001288272642e-017 2.671484960838336 0.4273151102481281 -6.198405988676908e-017 0.5104343858910578 0 0 0 0.3875588197513569 0 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID8859\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8857\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID8860\">5.143191235938005e-017 -1 -1.923787383634676e-016 5.143191235938005e-017 -1 -1.923787383634676e-016 5.143191235938005e-017 -1 -1.923787383634676e-016 5.143191235938005e-017 -1 -1.923787383634676e-016 5.143191235938005e-017 -1 -1.923787383634676e-016 5.143191235938005e-017 -1 -1.923787383634676e-016 5.143191235938005e-017 -1 -1.923787383634676e-016 5.143191235938005e-017 -1 -1.923787383634676e-016 5.143191235938005e-017 -1 -1.923787383634676e-016 5.143191235938005e-017 -1 -1.923787383634676e-016 -5.143191235938005e-017 1 1.923787383634676e-016 -5.143191235938005e-017 1 1.923787383634676e-016 -5.143191235938005e-017 1 1.923787383634676e-016 -5.143191235938005e-017 1 1.923787383634676e-016 -5.143191235938005e-017 1 1.923787383634676e-016 -5.143191235938005e-017 1 1.923787383634676e-016 -5.143191235938005e-017 1 1.923787383634676e-016 -5.143191235938005e-017 1 1.923787383634676e-016 -5.143191235938005e-017 1 1.923787383634676e-016 -5.143191235938005e-017 1 1.923787383634676e-016 -4.203698775232262e-016 -1 -2.552188771382048e-016 -4.203698775232262e-016 -1 -2.552188771382048e-016 -4.203698775232262e-016 -1 -2.552188771382048e-016 -4.203698775232262e-016 -1 -2.552188771382048e-016 -4.203698775232262e-016 -1 -2.552188771382048e-016 -4.203698775232262e-016 -1 -2.552188771382048e-016 4.203698775232262e-016 1 2.552188771382048e-016 4.203698775232262e-016 1 2.552188771382048e-016 4.203698775232262e-016 1 2.552188771382048e-016 4.203698775232262e-016 1 2.552188771382048e-016 4.203698775232262e-016 1 2.552188771382048e-016 4.203698775232262e-016 1 2.552188771382048e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID8860\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8858\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8856\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8857\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8858\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 6 3 2 6 2 7 6 7 8 7 2 9 9 2 1 10 11 12 12 11 13 14 13 15 13 11 15 11 16 15 15 16 17 18 17 16 11 10 19 20 21 22 21 20 23 23 20 24 23 24 25 26 27 28 27 29 28 28 29 30 31 30 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8861\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8862\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID8865\">4.241666682515334 -1.539067673830201e-014 38.70737840696041 -3.058971464985444 -1.447172511753745e-014 38.59858683349759 -1.522196962713315 5.070916117269653e-015 38.58898503530676 -2.917278543361555 -1.515104209749873e-014 39.43018050420353 3.981332704675552 -1.583035907746002e-014 40.26177417490948 -2.775585621737665 -1.583035907746002e-014 40.26177417490948 -1.931478898344809 -1.470962069403955e-014 40.26177417490948 -2.250393836874538 -1.583035907746002e-014 40.26177417490948 -2.250393836874538 -1.583035907746002e-014 40.26177417490948 -1.931478898344809 -1.470962069403955e-014 40.26177417490948 -2.775585621737665 -1.583035907746002e-014 40.26177417490948 3.981332704675552 -1.583035907746002e-014 40.26177417490948 -2.917278543361555 -1.515104209749873e-014 39.43018050420353 4.241666682515334 -1.539067673830201e-014 38.70737840696041 -3.058971464985444 -1.447172511753745e-014 38.59858683349759 -1.522196962713315 5.070916117269653e-015 38.58898503530676</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID8865\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8863\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID8866\">-3.620780629959492e-016 -1 -4.652719376770412e-015 -3.620780629959492e-016 -1 -4.652719376770412e-015 -3.620780629959492e-016 -1 -4.652719376770412e-015 -3.620780629959492e-016 -1 -4.652719376770412e-015 -3.620780629959492e-016 -1 -4.652719376770412e-015 -3.620780629959492e-016 -1 -4.652719376770412e-015 -3.620780629959492e-016 -1 -4.652719376770412e-015 -3.620780629959492e-016 -1 -4.652719376770412e-015 3.620780629959492e-016 1 4.652719376770412e-015 3.620780629959492e-016 1 4.652719376770412e-015 3.620780629959492e-016 1 4.652719376770412e-015 3.620780629959492e-016 1 4.652719376770412e-015 3.620780629959492e-016 1 4.652719376770412e-015 3.620780629959492e-016 1 4.652719376770412e-015 3.620780629959492e-016 1 4.652719376770412e-015 3.620780629959492e-016 1 4.652719376770412e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID8866\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8864\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8862\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8863\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8864\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 8 9 10 9 11 10 10 11 12 11 13 12 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8867\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8868\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8871\">-2.917278543361555 -1.515104209749873e-014 39.43018050420353 -4.907262103334561 4.176755140166247e-015 38.61013499081096 -3.058971464985444 -1.447172511753745e-014 38.59858683349759 -4.763997040701643 -5.826801968646886e-015 39.43595458286021 -2.775585621737665 -1.583035907746002e-014 40.26177417490948 -4.620731978068725 -1.583035907746002e-014 40.26177417490948 -4.620731978068725 -1.583035907746002e-014 40.26177417490948 -2.775585621737665 -1.583035907746002e-014 40.26177417490948 -4.763997040701643 -5.826801968646886e-015 39.43595458286021 -2.917278543361555 -1.515104209749873e-014 39.43018050420353 -4.907262103334561 4.176755140166247e-015 38.61013499081096 -3.058971464985444 -1.447172511753745e-014 38.59858683349759</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8871\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8869\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8872\">-5.071135970442286e-015 -1 -5.554010688544381e-015 -5.071135970442286e-015 -1 -5.554010688544381e-015 -5.071135970442286e-015 -1 -5.554010688544381e-015 -5.071135970442286e-015 -1 -5.554010688544381e-015 -5.071135970442286e-015 -1 -5.554010688544381e-015 -5.071135970442286e-015 -1 -5.554010688544381e-015 5.071135970442286e-015 1 5.554010688544381e-015 5.071135970442286e-015 1 5.554010688544381e-015 5.071135970442286e-015 1 5.554010688544381e-015 5.071135970442286e-015 1 5.554010688544381e-015 5.071135970442286e-015 1 5.554010688544381e-015 5.071135970442286e-015 1 5.554010688544381e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8872\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8870\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8868\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8869\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8870\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 6 7 8 7 9 8 8 9 10 11 10 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8873\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8874\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID8877\">-4.763997040701643 -5.826801968646886e-015 39.43595458286021 -8.292327243955809 -2.069822316884053e-014 38.63128494631512 -4.907262103334561 4.176755140166247e-015 38.61013499081096 -7.882915466949525 -1.583035907746002e-014 40.26177417490948 -4.620731978068725 -1.583035907746002e-014 40.26177417490948 -4.620731978068725 -1.583035907746002e-014 40.26177417490948 -4.763997040701643 -5.826801968646886e-015 39.43595458286021 -7.882915466949525 -1.583035907746002e-014 40.26177417490948 -8.292327243955809 -2.069822316884053e-014 38.63128494631512 -4.907262103334561 4.176755140166247e-015 38.61013499081096</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID8877\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8875\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID8878\">3.783087538973716e-015 -1 -5.461582582055156e-015 3.783087538973716e-015 -1 -5.461582582055156e-015 3.783087538973716e-015 -1 -5.461582582055156e-015 3.783087538973716e-015 -1 -5.461582582055156e-015 3.783087538973716e-015 -1 -5.461582582055156e-015 -3.783087538973716e-015 1 5.461582582055156e-015 -3.783087538973716e-015 1 5.461582582055156e-015 -3.783087538973716e-015 1 5.461582582055156e-015 -3.783087538973716e-015 1 5.461582582055156e-015 -3.783087538973716e-015 1 5.461582582055156e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID8878\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8876\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8874\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8875\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8876\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 7 6 8 9 8 6</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8879\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8880\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID8883\">2.598807529684253 -4.117397605405058e-015 45.75252622998552 1.891110694823658 -2.234816114159548e-015 45.57701782187078 1.785230770330292 -1.904534302876715e-014 45.34770939506687 1.82225779875567 -2.811269087799739e-014 46.00372700146488 1.82225779875567 -2.811269087799739e-014 46.00372700146488 2.598807529684253 -4.117397605405058e-015 45.75252622998552 1.891110694823658 -2.234816114159548e-015 45.57701782187078 1.785230770330292 -1.904534302876715e-014 45.34770939506687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID8883\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8881\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID8884\">2.160562100543344e-014 -1 -2.107727449034257e-014 2.160562100543344e-014 -1 -2.107727449034257e-014 2.160562100543344e-014 -1 -2.107727449034257e-014 2.160562100543344e-014 -1 -2.107727449034257e-014 -2.160562100543344e-014 1 2.107727449034257e-014 -2.160562100543344e-014 1 2.107727449034257e-014 -2.160562100543344e-014 1 2.107727449034257e-014 -2.160562100543344e-014 1 2.107727449034257e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID8884\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8882\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8880\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8881\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8882\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8882\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8885\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8886\">\r\n\t\t\t\t\t<float_array count=\"876\" id=\"ID8889\">-1.573486225140406 -8.579043851447467e-015 55.44577363087751 -2.158704266601817 -1.308680791217483e-014 55.6821840704661 -1.378200617507755 -1.381933041509032e-014 55.13189838291812 -2.902039911726243 -9.027184659131448e-015 57.03007236855989 -2.694334717493403 -1.308680791217483e-014 55.6821840704661 -4.448260990453855 -1.724597970443306e-015 56.33306090696605 -4.035463189224048 -1.078793965561336e-014 56.97491564188555 -3.881124303289909 8.684103965112466e-015 57.21489546838632 -3.303751405415861 -1.716589421321924e-014 57.5430533925022 -3.264651349399646 -1.189677091786367e-014 57.75498300893688 -2.869351417815743 6.582496101219549e-015 58.36474564649596 -2.866235863199363 -3.159198652529622e-014 58.30397640416259 -3.345493852398322 -1.122433504364132e-014 55.37774065913041 -4.836856521059745 -2.173697008696222e-014 54.86333769200454 -4.794845297189095 -3.375416472106461e-016 54.56939283819784 -2.694334717493403 -1.308680791217483e-014 55.6821840704661 -3.345493852398322 -1.122433504364132e-014 55.37774065913041 -4.448260990453855 -1.724597970443306e-015 56.33306090696605 -4.836856521059745 -2.173697008696222e-014 54.86333769200454 -4.794845297189095 -3.375416472106461e-016 54.56939283819784 -2.866235863199363 -3.159198652529622e-014 58.30397640416259 -3.264651349399646 -1.189677091786367e-014 57.75498300893688 -2.869351417815743 6.582496101219549e-015 58.36474564649596 -3.881124303289909 8.684103965112466e-015 57.21489546838632 -3.303751405415861 -1.716589421321924e-014 57.5430533925022 -2.902039911726243 -9.027184659131448e-015 57.03007236855989 -4.035463189224048 -1.078793965561336e-014 56.97491564188555 -2.158704266601817 -1.308680791217483e-014 55.6821840704661 -1.573486225140406 -8.579043851447467e-015 55.44577363087751 -1.378200617507755 -1.381933041509032e-014 55.13189838291812 -1.378200617507755 -1.381933041509032e-014 55.13189838291812 -4.794845297189095 -3.375416472106461e-016 54.56939283819784 -1.344680299878421 -7.397311045039114e-015 54.40797962433184 -3.345493852398322 -1.122433504364132e-014 55.37774065913041 -2.158704266601817 -1.308680791217483e-014 55.6821840704661 -2.694334717493403 -1.308680791217483e-014 55.6821840704661 -4.965335364232233 -8.883129275209954e-015 43.96099573204025 -7.223918169674652 -1.063411607589164e-014 43.87130579613707 -5.92392464541772 -1.725437055793048e-015 43.77622533581587 -7.708602353778643 -1.87141168814122e-014 44.17673554456251 -0.07622093676513053 -7.205905484186061e-015 44.3114578205453 -2.900610507366364 -3.526521699740593e-015 43.8636448005426 -7.953183170171213 1.321670966073443e-014 44.33086117867742 1.540498225374142 -9.125454902119547e-015 44.81768224270432 -8.607822442187098 -1.102848184716481e-014 45.26549526270718 1.785230770330292 -1.904534302876715e-014 45.34770939506687 -9.445399292717925 -7.055718827754005e-015 46.92045793595121 1.891110694823658 -2.234816114159548e-015 45.57701782187078 1.82225779875567 -2.811269087799739e-014 46.00372700146488 1.793719214851006 -5.95825913060306e-015 46.18059212145545 1.482061941146675 2.802362252943368e-015 46.60893537678759 0.7418765705885031 -1.945166476374795e-014 46.78416642104013 -1.652211673818166 -1.324842422327933e-014 46.83368988774599 -1.560400804884776 -1.386623598750657e-014 47.44784601655096 -9.776534164294683 -1.226764674082264e-014 49.64627769345346 -1.468589935951386 -1.448404775173381e-014 48.06200214535594 -1.313219441522343 -7.049549457245053e-015 50.03859803678179 -9.537088862990641 3.238384967095235e-016 52.23123547967445 -1.333109489573037 -2.057460266353739e-014 50.75405505119294 -1.411947824718191 -6.277732433312402e-015 53.58991747546878 -9.286398564993581 -7.512205963067444e-015 54.81416417721631 -4.836856521059745 -2.173697008696222e-014 54.86333769200454 -8.804300092771593 1.919709810112986e-015 56.00925103001956 -4.448260990453855 -1.724597970443306e-015 56.33306090696605 -8.245067889547427 5.336114205681106e-015 56.49114114503836 -5.725420696344554 6.145957946016755e-015 56.76807538424608 -4.035463189224048 -1.078793965561336e-014 56.97491564188555 -7.358008166714827 -6.383702053692986e-017 56.74172358321926 -5.473343710988392 -1.456231836302179e-014 56.8326826980754 -4.581970444342561 -1.166850284231175e-014 56.9479937373749 -5.128477699461073 -1.254906602901016e-014 56.92107183286426 -6.322363693228035 -1.162626570135533e-014 56.79867404152661 -5.725420696344554 6.145957946016755e-015 56.76807538424608 -7.358008166714827 -6.383702053692986e-017 56.74172358321926 -6.322363693228035 -1.162626570135533e-014 56.79867404152661 -5.128477699461073 -1.254906602901016e-014 56.92107183286426 -4.581970444342561 -1.166850284231175e-014 56.9479937373749 -5.473343710988392 -1.456231836302179e-014 56.8326826980754 -4.035463189224048 -1.078793965561336e-014 56.97491564188555 -8.245067889547427 5.336114205681106e-015 56.49114114503836 -4.448260990453855 -1.724597970443306e-015 56.33306090696605 -8.804300092771593 1.919709810112986e-015 56.00925103001956 -4.836856521059745 -2.173697008696222e-014 54.86333769200454 -9.286398564993581 -7.512205963067444e-015 54.81416417721631 -4.794845297189095 -3.375416472106461e-016 54.56939283819784 -1.344680299878421 -7.397311045039114e-015 54.40797962433184 -1.411947824718191 -6.277732433312402e-015 53.58991747546878 -9.537088862990641 3.238384967095235e-016 52.23123547967445 -1.333109489573037 -2.057460266353739e-014 50.75405505119294 -1.313219441522343 -7.049549457245053e-015 50.03859803678179 -9.776534164294683 -1.226764674082264e-014 49.64627769345346 -1.468589935951386 -1.448404775173381e-014 48.06200214535594 -1.560400804884776 -1.386623598750657e-014 47.44784601655096 -9.445399292717925 -7.055718827754005e-015 46.92045793595121 -1.652211673818166 -1.324842422327933e-014 46.83368988774599 0.7418765705885031 -1.945166476374795e-014 46.78416642104013 1.482061941146675 2.802362252943368e-015 46.60893537678759 1.793719214851006 -5.95825913060306e-015 46.18059212145545 1.82225779875567 -2.811269087799739e-014 46.00372700146488 1.891110694823658 -2.234816114159548e-015 45.57701782187078 1.785230770330292 -1.904534302876715e-014 45.34770939506687 -8.607822442187098 -1.102848184716481e-014 45.26549526270718 1.540498225374142 -9.125454902119547e-015 44.81768224270432 -7.953183170171213 1.321670966073443e-014 44.33086117867742 -0.07622093676513053 -7.205905484186061e-015 44.3114578205453 -7.708602353778643 -1.87141168814122e-014 44.17673554456251 -4.965335364232233 -8.883129275209954e-015 43.96099573204025 -2.900610507366364 -3.526521699740593e-015 43.8636448005426 -7.223918169674652 -1.063411607589164e-014 43.87130579613707 -5.92392464541772 -1.725437055793048e-015 43.77622533581587 -2.694334717493403 -1.308680791217483e-014 55.6821840704661 -2.158704266601817 -1.308680791217483e-014 55.6821840704661 -3.345493852398322 -1.122433504364132e-014 55.37774065913041 -1.378200617507755 -1.381933041509032e-014 55.13189838291812 -2.847099472350311 -2.260462129654438e-014 57.93071895369711 -3.303751405415861 -1.716589421321924e-014 57.5430533925022 -2.902039911726243 -9.027184659131448e-015 57.03007236855989 -3.264651349399646 -1.189677091786367e-014 57.75498300893688 -2.866235863199363 -3.159198652529622e-014 58.30397640416259 -2.866235863199363 -3.159198652529622e-014 58.30397640416259 -2.847099472350311 -2.260462129654438e-014 57.93071895369711 -3.264651349399646 -1.189677091786367e-014 57.75498300893688 -3.303751405415861 -1.716589421321924e-014 57.5430533925022 -2.902039911726243 -9.027184659131448e-015 57.03007236855989 2.992898717071983 -3.011638927090121e-015 42.04339519868133 -1.931478898344809 -1.358888231061909e-014 41.75740015620843 -1.084294835556831 -1.358888231061909e-014 41.75740015620843 -4.017013709237327 -1.358888231061909e-014 41.75740015620843 -5.233019691842638 -4.757659295742602e-015 41.93614758479004 -5.376078808548409 -9.572703784175852e-015 43.25887729140739 4.209567915375754 -1.90691515688977e-014 42.29192852081443 5.426237113679527 2.176829416699964e-015 42.54046184294752 5.973714691305903 -1.479602391639703e-014 42.88502112802267 6.602298312905844 8.070672014693943e-016 44.24299057111729 -2.900610507366364 -3.526521699740593e-015 43.8636448005426 -0.07622093676513053 -7.205905484186061e-015 44.3114578205453 7.060163232577435 -1.220636303749862e-014 46.2896727666262 1.540498225374142 -9.125454902119547e-015 44.81768224270432 1.785230770330292 -1.904534302876715e-014 45.34770939506687 2.598807529684253 -4.117397605405058e-015 45.75252622998552 1.82225779875567 -2.811269087799739e-014 46.00372700146488 1.793719214851006 -5.95825913060306e-015 46.18059212145545 1.482061941146675 2.802362252943368e-015 46.60893537678759 7.150487974755674 -1.861697663875318e-014 46.97326905335323 0.7418765705885031 -1.945166476374795e-014 46.78416642104013 -1.652211673818166 -1.324842422327933e-014 46.83368988774599 -1.560400804884776 -1.386623598750657e-014 47.44784601655096 7.405370763172599 -1.339742012921238e-014 47.36043063896106 7.286255209390042 -1.92749786428588e-014 49.29948377565128 -1.468589935951386 -1.448404775173381e-014 48.06200214535594 -1.313219441522343 -7.049549457245053e-015 50.03859803678179 7.145735510686905 5.835148476948784e-015 51.58696978301615 -1.333109489573037 -2.057460266353739e-014 50.75405505119294 -0.4948130152778694 -1.153659488987027e-014 53.34171302381265 6.806701391083664 -1.054588769060679e-014 52.97924610883155 6.374477699975975 -2.049384864011389e-014 53.60851826869374 3.066032210231825 -2.720777146656509e-015 53.57492224661253 3.006325344351316 1.385495900526366e-014 54.63427940490246 6.073755543462539 -2.239404885876049e-014 54.04633804775896 5.516078406519846 -2.074834016043382e-014 54.5082144969338 4.129852879064016 1.640198002080426e-014 55.04972398066788 2.812274539630634 2.137710146928071e-015 55.23856098682664 3.141968662368525 -1.928283539365015e-014 55.60716049294248 2.61822373490995 -9.579538711407514e-015 55.84284256875083 2.315583092506548 -3.016101560815427e-014 56.38505839050342 -0.2400421954325074 -2.865402068067627e-014 54.19737497645276 2.692858189912803 -4.657512142769287e-015 54.14190232714711 2.245582032454003 -3.823954725542872e-016 54.72796321976922 0.1268295304492497 -1.632613397546528e-014 54.57427424582018 0.7350454488973641 1.466214018703406e-014 54.92062650743705 1.802780835653282 -1.999676292148404e-014 54.99113654848083 1.387499599718066 -6.711112588775764e-015 55.12203332268567 -4.965335364232233 -8.883129275209954e-015 43.96099573204025 -2.900610507366364 -3.526521699740593e-015 43.8636448005426 -5.376078808548409 -9.572703784175852e-015 43.25887729140739 -4.965335364232233 -8.883129275209954e-015 43.96099573204025 1.387499599718066 -6.711112588775764e-015 55.12203332268567 1.802780835653282 -1.999676292148404e-014 54.99113654848083 0.7350454488973641 1.466214018703406e-014 54.92062650743705 2.245582032454003 -3.823954725542872e-016 54.72796321976922 0.1268295304492497 -1.632613397546528e-014 54.57427424582018 -0.2400421954325074 -2.865402068067627e-014 54.19737497645276 2.692858189912803 -4.657512142769287e-015 54.14190232714711 3.066032210231825 -2.720777146656509e-015 53.57492224661253 -0.4948130152778694 -1.153659488987027e-014 53.34171302381265 2.315583092506548 -3.016101560815427e-014 56.38505839050342 3.141968662368525 -1.928283539365015e-014 55.60716049294248 2.61822373490995 -9.579538711407514e-015 55.84284256875083 2.812274539630634 2.137710146928071e-015 55.23856098682664 4.129852879064016 1.640198002080426e-014 55.04972398066788 3.006325344351316 1.385495900526366e-014 54.63427940490246 5.516078406519846 -2.074834016043382e-014 54.5082144969338 6.073755543462539 -2.239404885876049e-014 54.04633804775896 6.374477699975975 -2.049384864011389e-014 53.60851826869374 6.806701391083664 -1.054588769060679e-014 52.97924610883155 7.145735510686905 5.835148476948784e-015 51.58696978301615 -1.333109489573037 -2.057460266353739e-014 50.75405505119294 -1.313219441522343 -7.049549457245053e-015 50.03859803678179 7.286255209390042 -1.92749786428588e-014 49.29948377565128 -1.468589935951386 -1.448404775173381e-014 48.06200214535594 -1.560400804884776 -1.386623598750657e-014 47.44784601655096 7.405370763172599 -1.339742012921238e-014 47.36043063896106 7.150487974755674 -1.861697663875318e-014 46.97326905335323 -1.652211673818166 -1.324842422327933e-014 46.83368988774599 0.7418765705885031 -1.945166476374795e-014 46.78416642104013 1.482061941146675 2.802362252943368e-015 46.60893537678759 7.060163232577435 -1.220636303749862e-014 46.2896727666262 1.793719214851006 -5.95825913060306e-015 46.18059212145545 1.82225779875567 -2.811269087799739e-014 46.00372700146488 2.598807529684253 -4.117397605405058e-015 45.75252622998552 1.785230770330292 -1.904534302876715e-014 45.34770939506687 1.540498225374142 -9.125454902119547e-015 44.81768224270432 -0.07622093676513053 -7.205905484186061e-015 44.3114578205453 6.602298312905844 8.070672014693943e-016 44.24299057111729 5.973714691305903 -1.479602391639703e-014 42.88502112802267 5.426237113679527 2.176829416699964e-015 42.54046184294752 4.209567915375754 -1.90691515688977e-014 42.29192852081443 2.992898717071983 -3.011638927090121e-015 42.04339519868133 -5.233019691842638 -4.757659295742602e-015 41.93614758479004 -4.017013709237327 -1.358888231061909e-014 41.75740015620843 -1.931478898344809 -1.358888231061909e-014 41.75740015620843 -1.084294835556831 -1.358888231061909e-014 41.75740015620843 -1.931478898344809 -1.358888231061909e-014 41.75740015620843 -2.250393836874538 -1.583035907746002e-014 40.26177417490948 -1.931478898344809 -1.470962069403955e-014 40.26177417490948 -2.775585621737665 -1.583035907746002e-014 40.26177417490948 -4.620731978068725 -1.583035907746002e-014 40.26177417490948 -7.882915466949525 -1.583035907746002e-014 40.26177417490948 -7.922861995633285 3.302957683970049e-015 41.69924489355816 -4.017013709237327 -1.358888231061909e-014 41.75740015620843 -5.233019691842638 -4.757659295742602e-015 41.93614758479004 -5.626032588059443 -5.686442329880161e-015 42.07969585866797 -6.019045484276248 -6.615225364017722e-015 42.22324413254594 -6.669042246404715 4.796619976597222e-015 42.69864643415188 -7.708602353778643 -1.87141168814122e-014 44.17673554456251 -7.081236038734642 -1.580181765550838e-014 43.30082303420996 -7.223918169674652 -1.063411607589164e-014 43.87130579613707 -7.223918169674652 -1.063411607589164e-014 43.87130579613707 -7.081236038734642 -1.580181765550838e-014 43.30082303420996 -7.708602353778643 -1.87141168814122e-014 44.17673554456251 -6.669042246404715 4.796619976597222e-015 42.69864643415188 -7.922861995633285 3.302957683970049e-015 41.69924489355816 -6.019045484276248 -6.615225364017722e-015 42.22324413254594 -5.626032588059443 -5.686442329880161e-015 42.07969585866797 -5.233019691842638 -4.757659295742602e-015 41.93614758479004 -4.017013709237327 -1.358888231061909e-014 41.75740015620843 -1.931478898344809 -1.358888231061909e-014 41.75740015620843 -7.882915466949525 -1.583035907746002e-014 40.26177417490948 -4.620731978068725 -1.583035907746002e-014 40.26177417490948 -2.775585621737665 -1.583035907746002e-014 40.26177417490948 -2.250393836874538 -1.583035907746002e-014 40.26177417490948 -1.931478898344809 -1.470962069403955e-014 40.26177417490948 4.121147300373302 -3.644344107059549e-015 41.14022832729392 2.992898717071983 -3.011638927090121e-015 42.04339519868133 -1.084294835556831 -1.358888231061909e-014 41.75740015620843 4.209567915375754 -1.90691515688977e-014 42.29192852081443 -1.931478898344809 -1.470962069403955e-014 40.26177417490948 3.981332704675552 -1.583035907746002e-014 40.26177417490948 -1.931478898344809 -1.358888231061909e-014 41.75740015620843 -1.084294835556831 -1.358888231061909e-014 41.75740015620843 4.121147300373302 -3.644344107059549e-015 41.14022832729392 -1.931478898344809 -1.358888231061909e-014 41.75740015620843 -1.931478898344809 -1.470962069403955e-014 40.26177417490948 3.981332704675552 -1.583035907746002e-014 40.26177417490948 4.209567915375754 -1.90691515688977e-014 42.29192852081443 2.992898717071983 -3.011638927090121e-015 42.04339519868133 3.006325344351316 1.385495900526366e-014 54.63427940490246 2.692858189912803 -4.657512142769287e-015 54.14190232714711 3.066032210231825 -2.720777146656509e-015 53.57492224661253 2.245582032454003 -3.823954725542872e-016 54.72796321976922 2.812274539630634 2.137710146928071e-015 55.23856098682664 1.802780835653282 -1.999676292148404e-014 54.99113654848083 1.387499599718066 -6.711112588775764e-015 55.12203332268567 1.205197312029815 1.095479178552348e-014 55.46730199824439 0.7350454488973641 1.466214018703406e-014 54.92062650743705 2.61822373490995 -9.579538711407514e-015 55.84284256875083 1.454664151594225 -1.853957231434108e-014 56.11947534335499 2.315583092506548 -3.016101560815427e-014 56.38505839050342 1.75937685881687 -2.958472264861371e-014 57.48765769045544 1.75937685881687 -2.958472264861371e-014 57.48765769045544 2.315583092506548 -3.016101560815427e-014 56.38505839050342 1.454664151594225 -1.853957231434108e-014 56.11947534335499 2.61822373490995 -9.579538711407514e-015 55.84284256875083 1.205197312029815 1.095479178552348e-014 55.46730199824439 2.812274539630634 2.137710146928071e-015 55.23856098682664 1.387499599718066 -6.711112588775764e-015 55.12203332268567 0.7350454488973641 1.466214018703406e-014 54.92062650743705 1.802780835653282 -1.999676292148404e-014 54.99113654848083 2.245582032454003 -3.823954725542872e-016 54.72796321976922 3.006325344351316 1.385495900526366e-014 54.63427940490246 2.692858189912803 -4.657512142769287e-015 54.14190232714711 3.066032210231825 -2.720777146656509e-015 53.57492224661253</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"292\" source=\"#ID8889\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8887\">\r\n\t\t\t\t\t<float_array count=\"876\" id=\"ID8890\">-1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 -1.839064038405788e-015 -1 3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 1.839064038405788e-015 1 -3.023752980916927e-016 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 -7.662645018066945e-016 -1 -1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 7.662645018066945e-016 1 1.536955287295166e-017 -1.08483490222329e-014 -1 -1.579723816082639e-014 -1.08483490222329e-014 -1 -1.579723816082639e-014 -1.08483490222329e-014 -1 -1.579723816082639e-014 -1.08483490222329e-014 -1 -1.579723816082639e-014 -1.08483490222329e-014 -1 -1.579723816082639e-014 1.08483490222329e-014 1 1.579723816082639e-014 1.08483490222329e-014 1 1.579723816082639e-014 1.08483490222329e-014 1 1.579723816082639e-014 1.08483490222329e-014 1 1.579723816082639e-014 1.08483490222329e-014 1 1.579723816082639e-014 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 3.120303678999488e-017 -1 6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -3.120303678999488e-017 1 -6.235655928788572e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 -1.165536986933443e-015 -1 -3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 1.165536986933443e-015 1 3.853892575126666e-017 4.617107683028091e-016 -1 7.02709259290788e-016 4.617107683028091e-016 -1 7.02709259290788e-016 4.617107683028091e-016 -1 7.02709259290788e-016 4.617107683028091e-016 -1 7.02709259290788e-016 4.617107683028091e-016 -1 7.02709259290788e-016 4.617107683028091e-016 -1 7.02709259290788e-016 4.617107683028091e-016 -1 7.02709259290788e-016 -4.617107683028091e-016 1 -7.02709259290788e-016 -4.617107683028091e-016 1 -7.02709259290788e-016 -4.617107683028091e-016 1 -7.02709259290788e-016 -4.617107683028091e-016 1 -7.02709259290788e-016 -4.617107683028091e-016 1 -7.02709259290788e-016 -4.617107683028091e-016 1 -7.02709259290788e-016 -4.617107683028091e-016 1 -7.02709259290788e-016 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 -5.358941372927e-015 -1 -1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014 5.358941372927e-015 1 1.07384182563406e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"292\" source=\"#ID8890\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8888\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8886\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8887\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"264\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8888\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 7 3 8 7 8 9 7 9 10 10 9 11 12 13 14 13 12 5 5 12 4 15 16 17 17 16 18 19 18 16 20 21 22 22 21 23 21 24 23 24 25 23 23 25 26 26 25 17 17 25 15 15 25 27 25 28 27 29 27 28 30 31 32 31 30 33 33 30 34 33 34 35 36 37 38 37 36 39 40 36 41 36 40 39 39 40 42 42 40 43 42 43 44 44 43 45 44 45 46 46 45 47 46 47 48 46 48 49 46 49 50 46 50 51 46 51 52 46 52 53 46 53 54 54 53 55 54 55 56 54 56 57 57 56 58 57 58 59 57 59 60 60 59 31 31 59 32 60 31 61 60 61 62 62 61 63 62 63 64 64 63 65 65 63 66 64 65 67 65 66 68 68 66 69 68 69 70 71 67 65 72 73 74 75 76 77 76 78 77 77 78 72 73 72 79 78 80 72 72 80 79 79 80 81 80 82 81 81 82 83 82 84 83 85 86 84 84 86 83 83 86 87 86 88 87 88 89 87 87 89 90 89 91 90 91 92 90 90 92 93 92 94 93 94 95 93 95 96 93 96 97 93 97 98 93 98 99 93 99 100 93 93 100 101 100 102 101 101 102 103 102 104 103 103 104 105 105 104 106 107 106 104 105 106 108 109 108 106 110 111 112 111 113 112 112 113 84 85 84 113 114 115 116 115 114 117 117 114 118 119 120 121 121 120 122 123 122 120 124 125 126 125 124 127 127 124 128 128 124 129 129 124 130 129 130 131 129 131 132 129 132 133 129 133 134 134 133 135 135 133 136 135 136 137 137 136 138 138 136 139 139 136 140 140 136 141 141 136 142 142 136 143 142 143 144 144 143 145 145 143 146 146 143 147 146 147 148 146 148 149 149 148 150 150 148 151 150 151 152 152 151 153 153 151 154 153 154 155 153 155 156 156 155 157 157 155 158 157 158 159 157 159 160 157 160 161 161 160 162 161 162 163 163 162 164 156 165 153 165 156 166 165 166 167 165 167 168 168 167 169 169 167 170 169 170 171 172 129 134 173 174 175 176 177 178 177 179 178 178 179 180 180 179 181 179 182 181 182 183 181 184 181 183 185 186 187 187 186 188 186 189 188 188 189 190 189 191 190 191 192 190 192 193 190 190 193 183 183 193 184 193 194 184 194 195 184 184 195 196 196 195 197 195 198 197 197 198 199 199 198 200 198 201 200 201 202 200 200 202 203 203 202 204 204 202 205 202 206 205 205 206 207 207 206 208 208 206 209 209 206 210 210 206 211 211 206 212 206 213 212 212 213 173 173 213 174 213 214 174 214 215 174 215 216 174 216 217 174 174 217 218 218 217 219 219 217 220 221 220 217 222 223 224 223 222 225 225 222 226 226 222 227 227 222 228 228 222 229 228 229 230 228 230 231 228 231 232 228 232 233 228 233 234 234 233 235 234 235 236 237 238 239 238 240 239 239 240 241 240 242 241 242 243 241 243 244 241 244 245 241 245 246 241 241 246 247 247 246 248 248 246 249 249 246 250 251 250 246 252 253 254 253 252 255 252 256 257 256 252 258 258 252 254 259 260 261 261 260 262 263 262 260 264 260 265 259 265 260 266 267 268 267 266 269 269 266 270 269 270 271 271 270 272 272 273 274 273 272 270 273 270 275 273 275 276 276 275 277 276 277 278 279 280 281 280 282 281 281 282 283 282 284 283 284 285 283 286 283 285 285 284 287 287 284 288 284 289 288 288 289 290 291 290 289</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8891\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8892\">\r\n\t\t\t\t\t<float_array count=\"330\" id=\"ID8895\">1.75937685881687 -6.644197824169778e-015 58.02542205622763 -0.7775069613206869 -1.544358313846917e-014 57.73411976102792 1.75937685881687 -2.958472264861371e-014 57.48765769045544 0.1057898850769563 -1.548331548917954e-014 57.87458434714966 1.109535428785712 -3.958900502883896e-014 58.3160413127447 1.896533355808456 -4.590296745601693e-014 58.6579496066366 1.731856897951364 1.800069159544983e-014 58.81769844074982 2.15873451051946 1.728404108355983e-017 59.59488922160608 -0.4948130152778694 -1.153659488987027e-014 53.34171302381265 -1.411947824718191 -6.277732433312402e-015 53.58991747546878 -1.333109489573037 -2.057460266353739e-014 50.75405505119294 -0.2400421954325074 -2.865402068067627e-014 54.19737497645276 -1.344680299878421 -7.397311045039114e-015 54.40797962433184 0.1268295304492497 -1.632613397546528e-014 54.57427424582018 -1.378200617507755 -1.381933041509032e-014 55.13189838291812 0.7350454488973641 1.466214018703406e-014 54.92062650743705 1.205197312029815 1.095479178552348e-014 55.46730199824439 -1.573486225140406 -8.579043851447467e-015 55.44577363087751 -2.902039911726243 -9.027184659131448e-015 57.03007236855989 1.454664151594225 -1.853957231434108e-014 56.11947534335499 -1.560427857104006 -1.279039997957173e-014 57.77425249991974 -2.847099472350311 -2.260462129654438e-014 57.93071895369711 -2.283125276883984 -4.750882275113855e-014 58.05518061809135 -2.866235863199363 -3.159198652529622e-014 58.30397640416259 -2.885372254048416 -5.940393385743163e-015 58.67723385462801 -2.869351417815743 6.582496101219549e-015 58.36474564649596 -2.869351417815743 6.582496101219549e-015 58.36474564649596 -2.885372254048416 -5.940393385743163e-015 58.67723385462801 -2.866235863199363 -3.159198652529622e-014 58.30397640416259 -2.283125276883984 -4.750882275113855e-014 58.05518061809135 -2.847099472350311 -2.260462129654438e-014 57.93071895369711 -1.560427857104006 -1.279039997957173e-014 57.77425249991974 -0.7775069613206869 -1.544358313846917e-014 57.73411976102792 1.75937685881687 -2.958472264861371e-014 57.48765769045544 -2.902039911726243 -9.027184659131448e-015 57.03007236855989 1.454664151594225 -1.853957231434108e-014 56.11947534335499 1.205197312029815 1.095479178552348e-014 55.46730199824439 -1.573486225140406 -8.579043851447467e-015 55.44577363087751 -1.378200617507755 -1.381933041509032e-014 55.13189838291812 0.7350454488973641 1.466214018703406e-014 54.92062650743705 0.1268295304492497 -1.632613397546528e-014 54.57427424582018 -1.344680299878421 -7.397311045039114e-015 54.40797962433184 -0.2400421954325074 -2.865402068067627e-014 54.19737497645276 -1.411947824718191 -6.277732433312402e-015 53.58991747546878 -0.4948130152778694 -1.153659488987027e-014 53.34171302381265 -1.333109489573037 -2.057460266353739e-014 50.75405505119294 2.15873451051946 1.728404108355983e-017 59.59488922160608 1.896533355808456 -4.590296745601693e-014 58.6579496066366 1.731856897951364 1.800069159544983e-014 58.81769844074982 1.109535428785712 -3.958900502883896e-014 58.3160413127447 1.75937685881687 -6.644197824169778e-015 58.02542205622763 0.1057898850769563 -1.548331548917954e-014 57.87458434714966 2.815902154969116 -4.498921713377188e-015 59.86114332750756 2.293954891113678 -2.403317089667847e-014 59.84107695806164 2.595077507043678 -1.068779069892956e-014 59.76081253434995 0.1057898850769563 -1.548331548917954e-014 57.87458434714966 -1.560427857104006 -1.279039997957173e-014 57.77425249991974 -0.7775069613206869 -1.544358313846917e-014 57.73411976102792 -2.283125276883984 -4.750882275113855e-014 58.05518061809135 1.109535428785712 -3.958900502883896e-014 58.3160413127447 -2.885372254048416 -5.940393385743163e-015 58.67723385462801 1.731856897951364 1.800069159544983e-014 58.81769844074982 -3.035934434665633 -7.799052504376617e-015 58.96819463048643 2.15873451051946 1.728404108355983e-017 59.59488922160608 -3.186496615282849 -9.657711623010069e-015 59.25915540634485 -3.327019804595184 -1.161002512107972e-014 59.88120969695368 2.591284960432677 5.830658105280982e-015 61.02269593239603 -3.347096041900842 -2.112511418455189e-015 60.84439015999974 -3.273510514883565 7.287952471705073e-015 62.15066791019997 2.087529005056387 2.683230431440461e-015 62.72985098275402 -3.157639751194475 -9.665246527902394e-015 62.42574382039931 -3.186606569464531 -4.516365629619671e-015 63.06276277177523 1.65323965815052 1.039469325584822e-014 63.72730249007169 -3.056251523988031 -1.988977855533647e-014 64.03276940535943 0.9564949158228773 -2.094436658720446e-014 64.62107230921296 -2.592764978622146 -2.986040714940557e-014 64.74217780822835 -0.0558438095684668 -9.557530055878128e-015 65.18488750316776 -2.071343051411715 1.085246744360568e-014 65.24889764424647 -0.6808537451383394 1.026978703544524e-015 65.44519748045627 -1.491985742356738 -1.676706301611965e-014 65.55292891341431 -1.098899543352527 -1.234494747144267e-014 65.61930910020108 -1.098899543352527 -1.234494747144267e-014 65.61930910020108 -0.6808537451383394 1.026978703544524e-015 65.44519748045627 -1.491985742356738 -1.676706301611965e-014 65.55292891341431 -2.071343051411715 1.085246744360568e-014 65.24889764424647 -0.0558438095684668 -9.557530055878128e-015 65.18488750316776 -2.592764978622146 -2.986040714940557e-014 64.74217780822835 0.9564949158228773 -2.094436658720446e-014 64.62107230921296 -3.056251523988031 -1.988977855533647e-014 64.03276940535943 1.65323965815052 1.039469325584822e-014 63.72730249007169 -3.186606569464531 -4.516365629619671e-015 63.06276277177523 2.087529005056387 2.683230431440461e-015 62.72985098275402 -3.157639751194475 -9.665246527902394e-015 62.42574382039931 -3.273510514883565 7.287952471705073e-015 62.15066791019997 2.591284960432677 5.830658105280982e-015 61.02269593239603 -3.347096041900842 -2.112511418455189e-015 60.84439015999974 -3.327019804595184 -1.161002512107972e-014 59.88120969695368 2.815902154969116 -4.498921713377188e-015 59.86114332750756 2.293954891113678 -2.403317089667847e-014 59.84107695806164 2.15873451051946 1.728404108355983e-017 59.59488922160608 -3.186496615282849 -9.657711623010069e-015 59.25915540634485 -3.035934434665633 -7.799052504376617e-015 58.96819463048643 1.731856897951364 1.800069159544983e-014 58.81769844074982 -2.885372254048416 -5.940393385743163e-015 58.67723385462801 1.109535428785712 -3.958900502883896e-014 58.3160413127447 -2.283125276883984 -4.750882275113855e-014 58.05518061809135 0.1057898850769563 -1.548331548917954e-014 57.87458434714966 -1.560427857104006 -1.279039997957173e-014 57.77425249991974 -0.7775069613206869 -1.544358313846917e-014 57.73411976102792 2.595077507043678 -1.068779069892956e-014 59.76081253434995</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"110\" source=\"#ID8895\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8893\">\r\n\t\t\t\t\t<float_array count=\"330\" id=\"ID8896\">9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 9.319259887041974e-016 -1 -7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 -9.319259887041974e-016 1 7.968955457216216e-016 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 1.155214253752684e-015 -1 1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015 -1.155214253752684e-015 1 -1.078879699297802e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"110\" source=\"#ID8896\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8894\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8892\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8893\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"102\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8894\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 8 9 10 9 8 11 9 11 12 12 11 13 12 13 14 14 13 15 14 15 16 14 16 17 17 16 18 18 16 19 18 19 2 18 2 20 18 20 21 20 2 1 21 20 22 21 22 23 23 22 24 23 24 25 26 27 28 27 29 28 28 29 30 29 31 30 32 33 31 30 31 34 31 33 34 33 35 34 35 36 34 34 36 37 37 36 38 36 39 38 39 40 38 38 40 41 40 42 41 41 42 43 42 44 43 45 43 44 46 47 48 48 47 49 47 50 49 49 50 51 51 50 32 33 32 50 52 53 54 55 56 57 56 55 58 58 55 59 58 59 60 60 59 61 60 61 62 62 61 63 62 63 64 64 63 65 65 63 53 65 53 52 65 52 66 65 66 67 67 66 68 68 66 69 68 69 70 70 69 71 71 69 72 71 72 73 73 72 74 73 74 75 75 74 76 75 76 77 77 76 78 77 78 79 79 78 80 81 82 83 83 82 84 82 85 84 84 85 86 85 87 86 86 87 88 87 89 88 88 89 90 89 91 90 90 91 92 92 91 93 91 94 93 93 94 95 95 94 96 94 97 96 97 98 96 98 99 96 96 99 100 100 99 101 99 102 101 101 102 103 102 104 103 103 104 105 104 106 105 105 106 107 108 107 106 109 98 97</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8897\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8898\">\r\n\t\t\t\t\t<float_array count=\"372\" id=\"ID8901\">-5.128477699461073 -1.254906602901016e-014 56.92107183286426 -5.406379039432467 -2.856063835461057e-014 57.00719373490838 -5.473343710988392 -1.456231836302179e-014 56.8326826980754 -4.581970444342561 -1.166850284231175e-014 56.9479937373749 -4.035463189224048 -1.078793965561336e-014 56.97491564188555 -3.881124303289909 8.684103965112466e-015 57.21489546838632 -4.882454345613843 -3.782863248559565e-014 58.37255011486671 -2.869351417815743 6.582496101219549e-015 58.36474564649596 -2.885372254048416 -5.940393385743163e-015 58.67723385462801 6.167476648136907 -2.518638633267408e-014 54.49815337930176 6.073755543462539 -2.239404885876049e-014 54.04633804775896 6.374477699975975 -2.049384864011389e-014 53.60851826869374 5.516078406519846 -2.074834016043382e-014 54.5082144969338 5.822110563920687 -1.302313728156228e-014 55.45709120238248 4.129852879064016 1.640198002080426e-014 55.04972398066788 3.141968662368525 -1.928283539365015e-014 55.60716049294248 5.227312546229729 -3.042475020236393e-014 57.31743138025397 2.315583092506548 -3.016101560815427e-014 56.38505839050342 1.75937685881687 -2.958472264861371e-014 57.48765769045544 4.922461959954125 7.285668707380001e-015 59.01879114253009 1.75937685881687 -6.644197824169778e-015 58.02542205622763 1.896533355808456 -4.590296745601693e-014 58.6579496066366 2.15873451051946 1.728404108355983e-017 59.59488922160608 -4.78889555425485 -2.759902622512301e-014 59.88753623734425 -5.387667630221622 1.110582938732452e-014 58.07329379204512 -3.035934434665633 -7.799052504376617e-015 58.96819463048643 -3.186496615282849 -9.657711623010069e-015 59.25915540634485 -3.327019804595184 -1.161002512107972e-014 59.88120969695368 -3.347096041900842 -2.112511418455189e-015 60.84439015999974 -4.545645489208438 -1.64759507160879e-014 61.38381785145257 -3.273510514883565 7.287952471705073e-015 62.15066791019997 4.941457853793398 1.506444387464173e-014 59.77827534585434 5.511315470624469 -2.182012970539607e-014 58.29727988448558 2.595077507043678 -1.068779069892956e-014 59.76081253434995 2.815902154969116 -4.498921713377188e-015 59.86114332750756 4.352602597818621 -1.048663974960224e-014 62.18964011577458 2.591284960432677 5.830658105280982e-015 61.02269593239603 2.087529005056387 2.683230431440461e-015 62.72985098275402 3.649775469417071 -3.768518166832754e-014 64.14531373125713 1.65323965815052 1.039469325584822e-014 63.72730249007169 0.9564949158228773 -2.094436658720446e-014 64.62107230921296 3.041926064907457 1.527253582959184e-014 65.32251508966731 -0.0558438095684668 -9.557530055878128e-015 65.18488750316776 -0.6808537451383394 1.026978703544524e-015 65.44519748045627 2.415080766558564 2.623207045591814e-015 66.08200034706368 -1.098899543352527 -1.234494747144267e-014 65.61930910020108 -4.657915689778275 -8.900298355149937e-015 62.86139601126419 -4.863742936402996 -1.188692316157427e-014 60.86011902299659 -3.157639751194475 -9.665246527902394e-015 62.42574382039931 -3.186606569464531 -4.516365629619671e-015 63.06276277177523 -4.152702405170495 -2.526842931303266e-014 64.20804893692581 -3.056251523988031 -1.988977855533647e-014 64.03276940535943 -2.592764978622146 -2.986040714940557e-014 64.74217780822835 -3.235834627313926 2.498740196984194e-014 65.51729600806578 -2.071343051411715 1.085246744360568e-014 65.24889764424647 -1.491985742356738 -1.676706301611965e-014 65.55292891341431 -2.412523895511587 -8.092112212378829e-015 66.28414079645296 1.27536204228789 -3.04112592098714e-014 66.68958855298065 -1.589214909014009 -5.57571211113258e-015 66.80783857083679 0.2555370085072717 -1.802874682103944e-014 66.87337128370247 -0.9343086054143726 -2.15946671481141e-014 66.92006035068991 2.293954891113678 -2.403317089667847e-014 59.84107695806164 2.595077507043678 -1.068779069892956e-014 59.76081253434995 2.15873451051946 1.728404108355983e-017 59.59488922160608 2.293954891113678 -2.403317089667847e-014 59.84107695806164 -0.9343086054143726 -2.15946671481141e-014 66.92006035068991 0.2555370085072717 -1.802874682103944e-014 66.87337128370247 -1.589214909014009 -5.57571211113258e-015 66.80783857083679 1.27536204228789 -3.04112592098714e-014 66.68958855298065 -2.412523895511587 -8.092112212378829e-015 66.28414079645296 2.415080766558564 2.623207045591814e-015 66.08200034706368 -1.098899543352527 -1.234494747144267e-014 65.61930910020108 -1.491985742356738 -1.676706301611965e-014 65.55292891341431 -3.235834627313926 2.498740196984194e-014 65.51729600806578 -2.071343051411715 1.085246744360568e-014 65.24889764424647 -2.592764978622146 -2.986040714940557e-014 64.74217780822835 -4.152702405170495 -2.526842931303266e-014 64.20804893692581 -3.056251523988031 -1.988977855533647e-014 64.03276940535943 -3.186606569464531 -4.516365629619671e-015 63.06276277177523 -4.657915689778275 -8.900298355149937e-015 62.86139601126419 -3.157639751194475 -9.665246527902394e-015 62.42574382039931 -3.273510514883565 7.287952471705073e-015 62.15066791019997 -4.545645489208438 -1.64759507160879e-014 61.38381785145257 -4.863742936402996 -1.188692316157427e-014 60.86011902299659 -0.6808537451383394 1.026978703544524e-015 65.44519748045627 3.041926064907457 1.527253582959184e-014 65.32251508966731 -0.0558438095684668 -9.557530055878128e-015 65.18488750316776 0.9564949158228773 -2.094436658720446e-014 64.62107230921296 3.649775469417071 -3.768518166832754e-014 64.14531373125713 1.65323965815052 1.039469325584822e-014 63.72730249007169 2.087529005056387 2.683230431440461e-015 62.72985098275402 4.352602597818621 -1.048663974960224e-014 62.18964011577458 2.591284960432677 5.830658105280982e-015 61.02269593239603 2.815902154969116 -4.498921713377188e-015 59.86114332750756 4.941457853793398 1.506444387464173e-014 59.77827534585434 4.922461959954125 7.285668707380001e-015 59.01879114253009 5.511315470624469 -2.182012970539607e-014 58.29727988448558 -3.347096041900842 -2.112511418455189e-015 60.84439015999974 -4.78889555425485 -2.759902622512301e-014 59.88753623734425 -3.327019804595184 -1.161002512107972e-014 59.88120969695368 -3.186496615282849 -9.657711623010069e-015 59.25915540634485 -3.035934434665633 -7.799052504376617e-015 58.96819463048643 -2.885372254048416 -5.940393385743163e-015 58.67723385462801 -4.882454345613843 -3.782863248559565e-014 58.37255011486671 -5.387667630221622 1.110582938732452e-014 58.07329379204512 1.896533355808456 -4.590296745601693e-014 58.6579496066366 1.75937685881687 -6.644197824169778e-015 58.02542205622763 1.75937685881687 -2.958472264861371e-014 57.48765769045544 5.227312546229729 -3.042475020236393e-014 57.31743138025397 2.315583092506548 -3.016101560815427e-014 56.38505839050342 3.141968662368525 -1.928283539365015e-014 55.60716049294248 5.822110563920687 -1.302313728156228e-014 55.45709120238248 4.129852879064016 1.640198002080426e-014 55.04972398066788 5.516078406519846 -2.074834016043382e-014 54.5082144969338 6.167476648136907 -2.518638633267408e-014 54.49815337930176 6.073755543462539 -2.239404885876049e-014 54.04633804775896 6.374477699975975 -2.049384864011389e-014 53.60851826869374 -2.869351417815743 6.582496101219549e-015 58.36474564649596 -3.881124303289909 8.684103965112466e-015 57.21489546838632 -5.406379039432467 -2.856063835461057e-014 57.00719373490838 -4.035463189224048 -1.078793965561336e-014 56.97491564188555 -4.581970444342561 -1.166850284231175e-014 56.9479937373749 -5.128477699461073 -1.254906602901016e-014 56.92107183286426 -5.473343710988392 -1.456231836302179e-014 56.8326826980754</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"124\" source=\"#ID8901\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8899\">\r\n\t\t\t\t\t<float_array count=\"372\" id=\"ID8902\">-1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 -1.215711913621575e-016 -1 6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016 1.215711913621575e-016 1 -6.146714558329634e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"124\" source=\"#ID8902\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8900\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8898\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8899\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"120\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8900\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 1 5 6 6 5 7 6 7 8 9 10 11 10 9 12 12 9 13 12 13 14 14 13 15 15 13 16 15 16 17 17 16 18 18 16 19 18 19 20 20 19 21 21 19 22 6 23 24 23 6 8 23 8 25 23 25 26 23 26 27 23 27 28 23 28 29 29 28 30 31 19 32 19 31 22 22 31 33 33 31 34 34 31 35 34 35 36 36 35 37 37 35 38 37 38 39 39 38 40 40 38 41 40 41 42 42 41 43 43 41 44 43 44 45 29 46 47 46 29 30 46 30 48 46 48 49 46 49 50 50 49 51 50 51 52 50 52 53 53 52 54 53 54 55 53 55 56 56 55 45 56 45 44 56 44 57 56 57 58 58 57 59 58 59 60 61 22 33 62 63 64 65 66 67 66 68 67 67 68 69 68 70 69 70 71 69 71 72 69 69 72 73 72 74 73 74 75 73 73 75 76 75 77 76 77 78 76 76 78 79 78 80 79 80 81 79 81 82 79 83 79 82 71 70 84 70 85 84 84 85 86 86 85 87 85 88 87 87 88 89 89 88 90 88 91 90 90 91 92 92 91 93 91 94 93 93 94 62 62 94 63 63 94 95 96 95 94 81 97 82 82 97 98 97 99 98 99 100 98 100 101 98 101 102 98 102 103 98 104 98 103 63 95 105 105 95 106 106 95 107 95 108 107 107 108 109 109 108 110 108 111 110 110 111 112 112 111 113 111 114 113 113 114 115 116 115 114 102 117 103 117 118 103 103 118 119 118 120 119 120 121 119 121 122 119 123 119 122</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8903\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8904\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8907\">-5.376078808548409 -9.572703784175852e-015 43.25887729140739 -5.626032588059443 -5.686442329880161e-015 42.07969585866797 -5.233019691842638 -4.757659295742602e-015 41.93614758479004 -6.019045484276248 -6.615225364017722e-015 42.22324413254594 -6.669042246404715 4.796619976597222e-015 42.69864643415188 -7.081236038734642 -1.580181765550838e-014 43.30082303420996 -4.965335364232233 -8.883129275209954e-015 43.96099573204025 -5.92392464541772 -1.725437055793048e-015 43.77622533581587 -7.223918169674652 -1.063411607589164e-014 43.87130579613707 -5.92392464541772 -1.725437055793048e-015 43.77622533581587 -7.081236038734642 -1.580181765550838e-014 43.30082303420996 -7.223918169674652 -1.063411607589164e-014 43.87130579613707 -4.965335364232233 -8.883129275209954e-015 43.96099573204025 -5.376078808548409 -9.572703784175852e-015 43.25887729140739 -6.669042246404715 4.796619976597222e-015 42.69864643415188 -6.019045484276248 -6.615225364017722e-015 42.22324413254594 -5.626032588059443 -5.686442329880161e-015 42.07969585866797 -5.233019691842638 -4.757659295742602e-015 41.93614758479004</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8907\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8905\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID8908\">5.173631825474309e-016 -1 -2.17297091864692e-015 5.173631825474309e-016 -1 -2.17297091864692e-015 5.173631825474309e-016 -1 -2.17297091864692e-015 5.173631825474309e-016 -1 -2.17297091864692e-015 5.173631825474309e-016 -1 -2.17297091864692e-015 5.173631825474309e-016 -1 -2.17297091864692e-015 5.173631825474309e-016 -1 -2.17297091864692e-015 5.173631825474309e-016 -1 -2.17297091864692e-015 5.173631825474309e-016 -1 -2.17297091864692e-015 -5.173631825474309e-016 1 2.17297091864692e-015 -5.173631825474309e-016 1 2.17297091864692e-015 -5.173631825474309e-016 1 2.17297091864692e-015 -5.173631825474309e-016 1 2.17297091864692e-015 -5.173631825474309e-016 1 2.17297091864692e-015 -5.173631825474309e-016 1 2.17297091864692e-015 -5.173631825474309e-016 1 2.17297091864692e-015 -5.173631825474309e-016 1 2.17297091864692e-015 -5.173631825474309e-016 1 2.17297091864692e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID8908\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8906\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8904\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8905\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8906\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7 8 5 7 9 10 11 9 12 10 12 13 10 10 13 14 14 13 15 15 13 16 17 16 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8909\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8910\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID8912\">-5.152635284522422 2.478207984801349e-015 47.75490822511142 -3.387573143142909 -2.048303576198131e-014 47.29039084319914 -6.192483370566952 -1.019389045813442e-014 48.5948903738661</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID8912\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8911\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8910\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8911\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8913\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8914\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID8916\">-6.192483370566952 -1.594152323307797e-014 50.07462094878562 -6.192483370566952 -1.019389045813442e-014 48.5948903738661 -6.090435418271409 -9.39084666111627e-015 52.03581473954709</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID8916\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8915\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8914\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8915\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8917\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8918\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID8920\">-6.522347660490668 -1.476306814352558e-015 49.17538365796728 -6.192483370566952 -1.019389045813442e-014 48.5948903738661 -7.171628847787142 -1.936226106942852e-014 49.60805071681185</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID8920\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8919\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8918\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8919\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8921\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8922\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID8924\">2.991230205999962 -2.099144000655874e-014 45.94778660824727 2.598807529684253 -4.117397605405058e-015 45.75252622998552 3.427660449989705 1.16718276718047e-014 46.65248558315625</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID8924\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8923\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8922\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8923\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8925\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8926\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID8928\">3.50986313666901 3.64067688407802e-015 46.78521733086495 3.427660449989705 1.16718276718047e-014 46.65248558315625 4.573725692808621 -1.068673737003362e-014 47.19728676795491</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID8928\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8927\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8926\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8927\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8929\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8930\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID8932\">-1.652211673818166 -1.324842422327933e-014 46.83368988774599 -3.387573143142909 -2.048303576198131e-014 47.29039084319914</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID8932\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8931\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8930\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8931\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8933\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8934\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID8936\">3.722634949775092 -1.456656947588348e-014 48.35373871823662 3.427660449989705 1.16718276718047e-014 46.65248558315625 3.927064207519759 -1.098720380778842e-014 51.39946723206133 4.370162106080278 -2.59314760987853e-014 50.8523458687807</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID8936\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8935\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8934\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8935\" />\r\n\t\t\t\t\t<p>1 0 0 2 0 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8939\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8940\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID8943\">-9.232131865458996 0 35.12130388768514 -11.38514965544755 2.273736754432321e-013 34.9113853042121 -9.784333943487923 0 34.76322584064991 -12.74880722259502 2.273736754432321e-013 35.6225502892608 -8.199504831315608 0 36.28740013255413 -12.95632072541446 0 37.54862237260562 -8.236237752763486 0 37.06579991808712 -7.977970007860904 0 38.87289036193209 -12.33378122582644 0 39.47469445595044 -6.766162034615377 4.547473508864641e-013 43.51364138397747 -11.47408408586102 0 40.36365060868099 -10.64403158788832 0 43.20831086319737 -7.774197900182571 -2.273736754432321e-013 44.08315367212839 -8.351573307472677 2.273736754432321e-013 45.3154905189906 -7.270179967398917 0 43.79839752805293 -7.511189561160109 2.273736754432321e-013 43.93456125981862 -7.389920249406714 0 46.51000586129743 -7.389920249406714 0 46.51000586129743 -7.774197900182571 -2.273736754432321e-013 44.08315367212839 -8.351573307472677 2.273736754432321e-013 45.3154905189906 -7.511189561160109 2.273736754432321e-013 43.93456125981862 -7.270179967398917 0 43.79839752805293 -6.766162034615377 4.547473508864641e-013 43.51364138397747 -10.64403158788832 0 43.20831086319737 -11.47408408586102 0 40.36365060868099 -12.33378122582644 0 39.47469445595044 -7.977970007860904 0 38.87289036193209 -12.95632072541446 0 37.54862237260562 -8.236237752763486 0 37.06579991808712 -8.199504831315608 0 36.28740013255413 -12.74880722259502 2.273736754432321e-013 35.6225502892608 -9.232131865458996 0 35.12130388768514 -11.38514965544755 2.273736754432321e-013 34.9113853042121 -9.784333943487923 0 34.76322584064991 -5.048226076560468 0 48.79355453773763 -7.511189561160109 2.273736754432321e-013 43.93456125981862 -7.270179967398917 0 43.79839752805293 -5.370985652529384 0 48.7052303334919 -5.370985652529384 0 48.7052303334919 -5.048226076560468 0 48.79355453773763 -7.511189561160109 2.273736754432321e-013 43.93456125981862 -7.270179967398917 0 43.79839752805293</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID8943\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8941\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID8944\">-3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 -3.536171561735951e-015 -1 -7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 3.536171561735951e-015 1 7.341318198356979e-016 8.620766265765524e-015 -1 -9.679891038915034e-015 8.620766265765524e-015 -1 -9.679891038915034e-015 8.620766265765524e-015 -1 -9.679891038915034e-015 8.620766265765524e-015 -1 -9.679891038915034e-015 -8.620766265765524e-015 1 9.679891038915034e-015 -8.620766265765524e-015 1 9.679891038915034e-015 -8.620766265765524e-015 1 9.679891038915034e-015 -8.620766265765524e-015 1 9.679891038915034e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID8944\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8942\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8940\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8941\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"34\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8942\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 5 7 8 8 7 9 8 9 10 10 9 11 11 9 12 11 12 13 12 9 14 12 14 15 13 12 16 17 18 19 20 21 18 21 22 18 19 18 23 18 22 23 23 22 24 24 22 25 22 26 25 25 26 27 26 28 27 28 29 27 27 29 30 29 31 30 30 31 32 33 32 31 34 35 36 35 34 37 38 39 40 41 40 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8945\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8948\">\r\n\t\t\t\t\t<float_array count=\"420\" id=\"ID8951\">2.145970327198143 2.273736754432321e-013 37.33084952675824 -4.491354442805118 0 37.62513730919477 -0.789516093287375 2.273736754432321e-013 37.28092963554065 3.750779147414278 2.273736754432321e-013 37.52738902115027 3.670178621127548 0 40.84209699985888 -6.987943484255766 0 38.2705267758767 -7.977970007860904 0 38.87289036193209 -6.766162034615377 4.547473508864641e-013 43.51364138397747 3.658579508594698 -2.273736754432321e-013 41.31911213399775 3.019371959976979 2.273736754432321e-013 43.43249649361957 4.002768188619598 2.273736754432321e-013 46.52885021318593 -7.270179967398917 0 43.79839752805293 2.36442805396041 0 46.32834712632803 3.298231754556696 2.273736754432321e-013 47.32611787954937 4.179713933212156 0 48.37680212070887 2.686429156085069 0 49.16072841655551 3.33930286044847 2.273736754432321e-013 49.30527475597853 2.589828825447512 0 50.38380221266675 3.118142370417218 0 50.45481243911672 1.173023976099671 0 48.45263309399866 0.6578222127004665 2.273736754432321e-013 46.8755117937697 1.817026180348876 2.273736754432321e-013 46.55365016921786 0.7544225433380234 2.273736754432321e-013 47.8089101592164 -1.692786337243433 2.273736754432321e-013 50.44817460044141 -3.571340484554412 0 49.68898193881773 -1.04878413299457 0 49.54696242888201 -2.917636984450269 0 50.26979973797688 -2.990270594587514 2.273736754432321e-013 50.75381441344894 -5.048226076560468 0 48.79355453773763 -1.435185455543888 0 47.7767239653291 -4.079776764384292 0 49.85838701236861 -4.079776764384292 0 49.85838701236861 -3.571340484554412 0 49.68898193881773 -5.048226076560468 0 48.79355453773763 -1.04878413299457 0 49.54696242888201 -1.435185455543888 0 47.7767239653291 0.6578222127004665 2.273736754432321e-013 46.8755117937697 1.817026180348876 2.273736754432321e-013 46.55365016921786 2.36442805396041 0 46.32834712632803 -7.270179967398917 0 43.79839752805293 -2.990270594587514 2.273736754432321e-013 50.75381441344894 -1.692786337243433 2.273736754432321e-013 50.44817460044141 -2.917636984450269 0 50.26979973797688 0.7544225433380234 2.273736754432321e-013 47.8089101592164 1.173023976099671 0 48.45263309399866 3.118142370417218 0 50.45481243911672 3.33930286044847 2.273736754432321e-013 49.30527475597853 2.589828825447512 0 50.38380221266675 2.686429156085069 0 49.16072841655551 4.179713933212156 0 48.37680212070887 3.298231754556696 2.273736754432321e-013 47.32611787954937 4.002768188619598 2.273736754432321e-013 46.52885021318593 -6.766162034615377 4.547473508864641e-013 43.51364138397747 3.019371959976979 2.273736754432321e-013 43.43249649361957 3.658579508594698 -2.273736754432321e-013 41.31911213399775 3.670178621127548 0 40.84209699985888 -7.977970007860904 0 38.87289036193209 -6.987943484255766 0 38.2705267758767 -4.491354442805118 0 37.62513730919477 3.750779147414278 2.273736754432321e-013 37.52738902115027 2.145970327198143 2.273736754432321e-013 37.33084952675824 -0.789516093287375 2.273736754432321e-013 37.28092963554065 -2.922031118611812 0 6.965439493735744 -3.349604634921548 2.273736754432321e-013 8.040137816212678 -3.14945467485245 0 6.916531717326961 -2.161112964483323 0 7.369501814124618 -1.435863164101534 0 7.595301327617193 -0.7106133637198582 4.547473508864641e-013 7.821100841109768 0.002747405775494372 0 7.832985017758801 0.7161081752709606 0 7.844869194407835 0.03183237702421593 2.273736754432321e-013 14.73706709429348 2.015129446366359 2.273736754432321e-013 7.268351311579693 -4.236439678016382 -2.273736754432321e-013 13.01867122577383 -4.574527215499302 0 17.83432763101007 0.2545394650740036 0 16.90392066203427 0.2297634618672646 2.273736754432321e-013 18.88258359288719 -4.68346989231452 0 19.38608698692789 0.4313137017325062 2.273736754432321e-013 19.74628479894841 -4.720840267400831 2.273736754432321e-013 19.9183837036031 3.636182590127305 2.273736754432321e-013 33.48007705852405 -6.333853082429528 0 25.58751808301332 -7.6697425061584 0 30.26110280096646 -8.021014463866322 2.273736754432321e-013 32.50504745636619 -8.199504831315608 0 36.28740013255413 3.827176347836939 0 35.42736866318387 2.145970327198143 2.273736754432321e-013 37.33084952675824 3.750779147414278 2.273736754432321e-013 37.52738902115027 -8.236237752763486 0 37.06579991808712 -0.789516093287375 2.273736754432321e-013 37.28092963554065 -6.987943484255766 0 38.2705267758767 -7.977970007860904 0 38.87289036193209 -4.491354442805118 0 37.62513730919477 -0.789516093287375 2.273736754432321e-013 37.28092963554065 -8.236237752763486 0 37.06579991808712 -4.491354442805118 0 37.62513730919477 -6.987943484255766 0 38.2705267758767 -7.977970007860904 0 38.87289036193209 2.145970327198143 2.273736754432321e-013 37.33084952675824 -8.199504831315608 0 36.28740013255413 3.750779147414278 2.273736754432321e-013 37.52738902115027 3.827176347836939 0 35.42736866318387 3.636182590127305 2.273736754432321e-013 33.48007705852405 -8.021014463866322 2.273736754432321e-013 32.50504745636619 -7.6697425061584 0 30.26110280096646 -6.333853082429528 0 25.58751808301332 -4.720840267400831 2.273736754432321e-013 19.9183837036031 0.4313137017325062 2.273736754432321e-013 19.74628479894841 -4.68346989231452 0 19.38608698692789 0.2297634618672646 2.273736754432321e-013 18.88258359288719 -4.574527215499302 0 17.83432763101007 0.2545394650740036 0 16.90392066203427 0.03183237702421593 2.273736754432321e-013 14.73706709429348 -4.236439678016382 -2.273736754432321e-013 13.01867122577383 -3.349604634921548 2.273736754432321e-013 8.040137816212678 0.7161081752709606 0 7.844869194407835 2.015129446366359 2.273736754432321e-013 7.268351311579693 0.002747405775494372 0 7.832985017758801 -0.7106133637198582 4.547473508864641e-013 7.821100841109768 -1.435863164101534 0 7.595301327617193 -2.161112964483323 0 7.369501814124618 -2.922031118611812 0 6.965439493735744 -3.14945467485245 0 6.916531717326961 -3.349604634921548 2.273736754432321e-013 8.040137816212678 -4.307375359604748 0 8.160932532661519 -3.985064029893351 -2.273736754432321e-013 7.976834506706183 -4.236439678016382 -2.273736754432321e-013 13.01867122577383 -4.629686689316145 0 8.345030558616884 -5.64266500999895 2.273736754432321e-013 8.736238706611346 -4.698752934421691 0 14.53532620988355 -4.574527215499302 0 17.83432763101007 -4.68346989231452 0 19.38608698692789 -4.68346989231452 0 19.38608698692789 -4.574527215499302 0 17.83432763101007 -4.698752934421691 0 14.53532620988355 -4.236439678016382 -2.273736754432321e-013 13.01867122577383 -5.64266500999895 2.273736754432321e-013 8.736238706611346 -4.629686689316145 0 8.345030558616884 -4.307375359604748 0 8.160932532661519 -3.349604634921548 2.273736754432321e-013 8.040137816212678 -3.985064029893351 -2.273736754432321e-013 7.976834506706183</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"140\" source=\"#ID8951\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8949\">\r\n\t\t\t\t\t<float_array count=\"420\" id=\"ID8952\">-4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 -4.701905968029632e-015 -1 -1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 4.701905968029632e-015 1 1.214411888785767e-015 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 -4.368838496169453e-015 -1 -3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 4.368838496169453e-015 1 3.792971186157609e-017 -6.200706518421285e-015 -1 -1.038319456523982e-016 -6.200706518421285e-015 -1 -1.038319456523982e-016 -6.200706518421285e-015 -1 -1.038319456523982e-016 -6.200706518421285e-015 -1 -1.038319456523982e-016 -6.200706518421285e-015 -1 -1.038319456523982e-016 -6.200706518421285e-015 -1 -1.038319456523982e-016 -6.200706518421285e-015 -1 -1.038319456523982e-016 -6.200706518421285e-015 -1 -1.038319456523982e-016 -6.200706518421285e-015 -1 -1.038319456523982e-016 6.200706518421285e-015 1 1.038319456523982e-016 6.200706518421285e-015 1 1.038319456523982e-016 6.200706518421285e-015 1 1.038319456523982e-016 6.200706518421285e-015 1 1.038319456523982e-016 6.200706518421285e-015 1 1.038319456523982e-016 6.200706518421285e-015 1 1.038319456523982e-016 6.200706518421285e-015 1 1.038319456523982e-016 6.200706518421285e-015 1 1.038319456523982e-016 6.200706518421285e-015 1 1.038319456523982e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"140\" source=\"#ID8952\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8950\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8948\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8949\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"128\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8950\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 6 4 7 7 4 8 7 8 9 7 9 10 7 10 11 11 10 12 12 10 13 13 10 14 13 14 15 15 14 16 15 16 17 17 16 18 19 20 21 20 19 22 23 24 25 24 23 26 26 23 27 11 20 28 20 11 12 20 12 21 28 20 29 28 29 25 28 25 24 28 24 30 31 32 33 32 34 33 34 35 33 35 36 33 37 38 36 38 39 36 33 36 39 40 41 42 42 41 32 34 32 41 43 44 36 37 36 44 45 46 47 47 46 48 46 49 48 48 49 50 49 51 50 50 51 38 38 51 39 39 51 52 51 53 52 53 54 52 54 55 52 52 55 56 56 55 57 57 55 58 55 59 58 59 60 58 61 58 60 62 63 64 63 62 65 63 65 66 63 66 67 63 67 68 63 68 69 70 69 71 69 70 63 63 70 72 72 70 73 73 70 74 73 74 75 73 75 76 76 75 77 76 77 78 78 77 79 78 79 80 80 79 81 81 79 82 82 79 83 83 79 84 83 84 85 85 84 86 83 85 87 87 85 88 87 89 90 89 87 91 91 87 88 92 93 94 94 93 95 96 95 93 92 97 93 93 97 98 99 100 97 97 100 98 100 101 98 98 101 102 102 101 103 103 101 104 104 101 105 101 106 105 105 106 107 106 108 107 107 108 109 108 110 109 110 111 109 109 111 112 112 111 113 113 111 114 115 114 111 114 116 113 116 117 113 117 118 113 118 119 113 119 120 113 121 113 120 122 123 124 123 122 125 123 125 126 126 125 127 127 125 128 128 125 129 128 129 130 131 132 133 132 134 133 133 134 135 135 134 136 136 134 137 134 138 137 139 137 138</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8953\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8954\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID8957\">-2.917636984450269 0 50.26979973797688 -4.079776764384292 0 49.85838701236861 -3.571340484554412 0 49.68898193881773 -10.64403158788832 0 43.20831086319737 -11.78493011017054 2.273736754432321e-013 43.57811718348251 -11.26408220469011 0 42.78348353019322 -8.351573307472677 2.273736754432321e-013 45.3154905189906 -12.05906082568208 2.273736754432321e-013 44.45495404717991 -12.11388686789746 0 45.52359924001968 -7.389920249406714 0 46.51000586129743 -9.317756192742081 2.273736754432321e-013 47.71569155642379 -6.428267191340865 2.273736754432321e-013 47.70452120360432 -5.693745228498074 2.273736754432321e-013 48.61690612924639 -7.152125507497431 2.273736754432321e-013 49.74337682336903 -5.370985652529384 0 48.7052303334919 -5.048226076560468 0 48.79355453773763 -6.091805952622053 0 50.95165676991638 -2.990270594587514 2.273736754432321e-013 50.75381441344894 -3.305016911094981 0 51.09262487487206 -6.03567515388238 0 51.82449540088373 -2.916202875459362 2.273736754432321e-013 51.325095073623 -2.978469335408704 2.273736754432321e-013 51.77633325967616 -3.352070112844899 0 52.10309169683922 -5.905006068339162 0 52.0719716810363 -5.609239122491999 2.273736754432321e-013 52.6321294509176 -3.320936378435135 2.273736754432321e-013 52.70992901894283 -5.095538557952182 2.273736754432321e-013 52.94332803733983 -5.453571963748573 0 53.23896677302128 -5.53140529090274 2.273736754432321e-013 53.56572521018421 -4.81961138009649 0 52.92726155908633 -3.492169899948408 0 52.84996830425251 -4.494142590992283 2.273736754432321e-013 52.90831040950053 -4.494142590992283 2.273736754432321e-013 52.90831040950053 -3.492169899948408 0 52.84996830425251 -4.81961138009649 0 52.92726155908633 -3.320936378435135 2.273736754432321e-013 52.70992901894283 -5.095538557952182 2.273736754432321e-013 52.94332803733983 -5.53140529090274 2.273736754432321e-013 53.56572521018421 -5.453571963748573 0 53.23896677302128 -5.609239122491999 2.273736754432321e-013 52.6321294509176 -3.352070112844899 0 52.10309169683922 -5.905006068339162 0 52.0719716810363 -6.03567515388238 0 51.82449540088373 -2.978469335408704 2.273736754432321e-013 51.77633325967616 -2.916202875459362 2.273736754432321e-013 51.325095073623 -3.305016911094981 0 51.09262487487206 -6.091805952622053 0 50.95165676991638 -2.990270594587514 2.273736754432321e-013 50.75381441344894 -2.917636984450269 0 50.26979973797688 -4.079776764384292 0 49.85838701236861 -7.152125507497431 2.273736754432321e-013 49.74337682336903 -5.048226076560468 0 48.79355453773763 -5.370985652529384 0 48.7052303334919 -5.693745228498074 2.273736754432321e-013 48.61690612924639 -9.317756192742081 2.273736754432321e-013 47.71569155642379 -6.428267191340865 2.273736754432321e-013 47.70452120360432 -7.389920249406714 0 46.51000586129743 -12.11388686789746 0 45.52359924001968 -8.351573307472677 2.273736754432321e-013 45.3154905189906 -12.05906082568208 2.273736754432321e-013 44.45495404717991 -11.78493011017054 2.273736754432321e-013 43.57811718348251 -10.64403158788832 0 43.20831086319737 -11.26408220469011 0 42.78348353019322 -3.571340484554412 0 49.68898193881773</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID8957\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8955\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID8958\">-4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 -4.0912841400905e-015 -1 -2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015 4.0912841400905e-015 1 2.955992308228933e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID8958\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8956\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8954\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8955\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"60\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8956\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 4 6 7 7 6 8 8 6 9 8 9 10 10 9 11 10 11 12 10 12 13 13 12 14 13 14 15 13 15 1 13 1 16 16 1 0 16 0 17 16 17 18 16 18 19 19 18 20 19 20 21 19 21 22 19 22 23 23 22 24 24 22 25 24 25 26 24 26 27 24 27 28 26 25 29 29 25 30 29 30 31 32 33 34 33 35 34 34 35 36 37 38 39 38 36 39 36 35 39 35 40 39 39 40 41 41 40 42 40 43 42 43 44 42 44 45 42 42 45 46 45 47 46 47 48 46 48 49 46 46 49 50 49 51 50 51 52 50 52 53 50 50 53 54 53 55 54 55 56 54 54 56 57 56 58 57 57 58 59 59 58 60 58 61 60 62 60 61 63 49 48</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8959\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8960\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID8963\">-11.26408220469011 0 42.78348353019322 -13.0916273701921 0 43.07754594420806 -12.23043791436112 0 42.1213854566679 -11.78493011017054 2.273736754432321e-013 43.57811718348251 -13.31702814167909 2.273736754432321e-013 44.71903963221166 -12.05906082568208 2.273736754432321e-013 44.45495404717991 -12.11388686789746 0 45.52359924001968 -14.21863173206293 0 45.23401810576598 -12.09342395360602 2.273736754432321e-013 49.06417014921493 -9.317756192742081 2.273736754432321e-013 47.71569155642379 -7.152125507497431 2.273736754432321e-013 49.74337682336903 -10.83588908589297 0 51.33056018980477 -6.091805952622053 0 50.95165676991638 -6.03567515388238 0 51.82449540088373 -9.871615844511666 -2.273736754432321e-013 53.82772055811068 -5.905006068339162 0 52.0719716810363 -5.609239122491999 2.273736754432321e-013 52.6321294509176 -5.53140529090274 2.273736754432321e-013 53.56572521018421 -6.672115154457401 0 54.39831819794944 -8.443443134751078 0 54.94736992971662 -7.652520082953402 0 54.92587078355825 -14.1220314014256 2.273736754432321e-013 43.88219984842687 -13.31702814167909 2.273736754432321e-013 44.71903963221166 -14.1220314014256 2.273736754432321e-013 43.88219984842687 -14.21863173206293 0 45.23401810576598 -7.652520082953402 0 54.92587078355825 -6.672115154457401 0 54.39831819794944 -8.443443134751078 0 54.94736992971662 -9.871615844511666 -2.273736754432321e-013 53.82772055811068 -5.53140529090274 2.273736754432321e-013 53.56572521018421 -5.609239122491999 2.273736754432321e-013 52.6321294509176 -5.905006068339162 0 52.0719716810363 -6.03567515388238 0 51.82449540088373 -10.83588908589297 0 51.33056018980477 -6.091805952622053 0 50.95165676991638 -7.152125507497431 2.273736754432321e-013 49.74337682336903 -12.09342395360602 2.273736754432321e-013 49.06417014921493 -9.317756192742081 2.273736754432321e-013 47.71569155642379 -12.11388686789746 0 45.52359924001968 -12.05906082568208 2.273736754432321e-013 44.45495404717991 -11.78493011017054 2.273736754432321e-013 43.57811718348251 -13.0916273701921 0 43.07754594420806 -11.26408220469011 0 42.78348353019322 -12.23043791436112 0 42.1213854566679</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID8963\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8961\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID8964\">-5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 -5.423551374878662e-015 -1 -2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015 5.423551374878662e-015 1 2.133222407990449e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID8964\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8962\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8960\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8961\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"40\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8962\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 7 6 8 8 6 9 8 9 10 8 10 11 11 10 12 11 12 13 11 13 14 14 13 15 14 15 16 14 16 17 14 17 18 14 18 19 19 18 20 7 21 4 22 23 24 25 26 27 27 26 28 26 29 28 29 30 28 30 31 28 31 32 28 28 32 33 32 34 33 34 35 33 33 35 36 35 37 36 37 38 36 36 38 24 24 38 22 38 39 22 39 40 22 22 40 41 40 42 41 43 41 42</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8965\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8966\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8969\">-5.370985652529384 0 48.7052303334919 -7.774197900182571 -2.273736754432321e-013 44.08315367212839 -7.511189561160109 2.273736754432321e-013 43.93456125981862 -7.389920249406714 0 46.51000586129743 -6.428267191340865 2.273736754432321e-013 47.70452120360432 -5.693745228498074 2.273736754432321e-013 48.61690612924639 -5.693745228498074 2.273736754432321e-013 48.61690612924639 -5.370985652529384 0 48.7052303334919 -6.428267191340865 2.273736754432321e-013 47.70452120360432 -7.389920249406714 0 46.51000586129743 -7.774197900182571 -2.273736754432321e-013 44.08315367212839 -7.511189561160109 2.273736754432321e-013 43.93456125981862</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8969\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8967\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8970\">-3.702707158152102e-015 -1 -5.200026213357156e-015 -3.702707158152102e-015 -1 -5.200026213357156e-015 -3.702707158152102e-015 -1 -5.200026213357156e-015 -3.702707158152102e-015 -1 -5.200026213357156e-015 -3.702707158152102e-015 -1 -5.200026213357156e-015 -3.702707158152102e-015 -1 -5.200026213357156e-015 3.702707158152102e-015 1 5.200026213357156e-015 3.702707158152102e-015 1 5.200026213357156e-015 3.702707158152102e-015 1 5.200026213357156e-015 3.702707158152102e-015 1 5.200026213357156e-015 3.702707158152102e-015 1 5.200026213357156e-015 3.702707158152102e-015 1 5.200026213357156e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8970\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8968\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8966\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8967\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8968\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 6 7 8 8 7 9 9 7 10 11 10 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8971\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8972\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8975\">-6.293254127792011 2.273736754432321e-013 55.28946045580295 -5.929506481175736 0 54.31350957771184 -5.604048485306862 0 53.99776071798806 -6.86759182690605 0 54.98327969571903 -7.638253698025778 2.273736754432321e-013 55.43250147214025 -6.749439084976075 0 55.90962090361182 -6.749439084976075 0 55.90962090361182 -6.293254127792011 2.273736754432321e-013 55.28946045580295 -7.638253698025778 2.273736754432321e-013 55.43250147214025 -6.86759182690605 0 54.98327969571903 -5.929506481175736 0 54.31350957771184 -5.604048485306862 0 53.99776071798806</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8975\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8973\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID8976\">-2.037370353245279e-015 -1 -4.730915120849583e-016 -2.037370353245279e-015 -1 -4.730915120849583e-016 -2.037370353245279e-015 -1 -4.730915120849583e-016 -2.037370353245279e-015 -1 -4.730915120849583e-016 -2.037370353245279e-015 -1 -4.730915120849583e-016 -2.037370353245279e-015 -1 -4.730915120849583e-016 2.037370353245279e-015 1 4.730915120849583e-016 2.037370353245279e-015 1 4.730915120849583e-016 2.037370353245279e-015 1 4.730915120849583e-016 2.037370353245279e-015 1 4.730915120849583e-016 2.037370353245279e-015 1 4.730915120849583e-016 2.037370353245279e-015 1 4.730915120849583e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID8976\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8974\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8972\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8973\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8974\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 6 7 8 8 7 9 9 7 10 11 10 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8977\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8978\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID8981\">-5.278590489437875 2.273736754432321e-013 53.68201185826422 -5.095538557952182 2.273736754432321e-013 52.94332803733983 -4.81961138009649 0 52.92726155908633 -5.453571963748573 0 53.23896677302128 -5.53140529090274 2.273736754432321e-013 53.56572521018421 -6.672115154457401 0 54.39831819794944 -5.604048485306862 0 53.99776071798806 -5.929506481175736 0 54.31350957771184 -6.86759182690605 0 54.98327969571903 -7.652520082953402 0 54.92587078355825 -8.443443134751078 0 54.94736992971662 -8.229409719241517 2.273736754432321e-013 55.11516642767515 -7.638253698025778 2.273736754432321e-013 55.43250147214025 -7.638253698025778 2.273736754432321e-013 55.43250147214025 -6.86759182690605 0 54.98327969571903 -8.229409719241517 2.273736754432321e-013 55.11516642767515 -8.443443134751078 0 54.94736992971662 -7.652520082953402 0 54.92587078355825 -6.672115154457401 0 54.39831819794944 -5.929506481175736 0 54.31350957771184 -5.604048485306862 0 53.99776071798806 -5.278590489437875 2.273736754432321e-013 53.68201185826422 -5.53140529090274 2.273736754432321e-013 53.56572521018421 -5.453571963748573 0 53.23896677302128 -5.095538557952182 2.273736754432321e-013 52.94332803733983 -4.81961138009649 0 52.92726155908633 -6.196835894968217 0 56.15020958309657 -4.81961138009649 0 52.92726155908633 -4.494142590992283 2.273736754432321e-013 52.90831040950053 -5.278590489437875 2.273736754432321e-013 53.68201185826422 -5.604048485306862 0 53.99776071798806 -6.293254127792011 2.273736754432321e-013 55.28946045580295 -6.749439084976075 0 55.90962090361182 -6.749439084976075 0 55.90962090361182 -6.196835894968217 0 56.15020958309657 -6.293254127792011 2.273736754432321e-013 55.28946045580295 -5.604048485306862 0 53.99776071798806 -5.278590489437875 2.273736754432321e-013 53.68201185826422 -4.81961138009649 0 52.92726155908633 -4.494142590992283 2.273736754432321e-013 52.90831040950053</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID8981\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8979\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID8982\">-3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 -3.702704384125026e-015 -1 5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 3.702704384125026e-015 1 -5.816433370776945e-016 -2.540757198206696e-014 -1 -1.498017895405191e-014 -2.540757198206696e-014 -1 -1.498017895405191e-014 -2.540757198206696e-014 -1 -1.498017895405191e-014 -2.540757198206696e-014 -1 -1.498017895405191e-014 -2.540757198206696e-014 -1 -1.498017895405191e-014 -2.540757198206696e-014 -1 -1.498017895405191e-014 -2.540757198206696e-014 -1 -1.498017895405191e-014 2.540757198206696e-014 1 1.498017895405191e-014 2.540757198206696e-014 1 1.498017895405191e-014 2.540757198206696e-014 1 1.498017895405191e-014 2.540757198206696e-014 1 1.498017895405191e-014 2.540757198206696e-014 1 1.498017895405191e-014 2.540757198206696e-014 1 1.498017895405191e-014 2.540757198206696e-014 1 1.498017895405191e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"40\" source=\"#ID8982\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8980\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8978\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8979\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8980\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7 5 7 8 5 8 9 9 8 10 10 8 11 11 8 12 13 14 15 15 14 16 16 14 17 17 14 18 14 19 18 19 20 18 20 21 18 18 21 22 22 21 23 23 21 24 25 24 21 26 27 28 27 26 29 29 26 30 30 26 31 31 26 32 33 34 35 35 34 36 36 34 37 37 34 38 39 38 34</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8983\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8984\">\r\n\t\t\t\t\t<float_array count=\"294\" id=\"ID8987\">1.112540694231029 0 60.33861551931022 0.3965949470625674 0 59.49537018034204 0.7251864937766186 0 59.4122104900074 -1.617069115336449 0 57.76562793903605 -3.316098341385214 0 57.92287726227482 -2.466583728360888 0 57.51402908471812 -0.9248721727047951 0 58.20592616983333 -3.850978118059288 0 58.6462240863093 -0.1776436126847329 0 58.68122935699734 -4.071222553948132 0 59.30667111818389 -4.134149319443964 0 60.4074160665345 0.6123832516377661 2.273736754432321e-013 61.13796276817533 0.8062910825584595 0 61.29302186779052 -4.226696514048058 0 61.32306533290387 0.5557432124354591 2.273736754432321e-013 61.89442363045612 -4.07426833308557 2.273736754432321e-013 61.95155971166844 0.365207986232349 0 62.63718985732407 -4.169535946187011 4.547473508864641e-013 62.58005377611181 -3.769411466725387 2.273736754432321e-013 63.8179971732369 -0.7398978390508546 0 64.33222001821974 -3.254965851542011 0 64.44649155200165 -1.806896114658343 0 64.960714082663 -2.549984505720545 0 64.88453295536789 -2.549984505720545 0 64.88453295536789 -1.806896114658343 0 64.960714082663 -3.254965851542011 0 64.44649155200165 -0.7398978390508546 0 64.33222001821974 -3.769411466725387 2.273736754432321e-013 63.8179971732369 0.365207986232349 0 62.63718985732407 -4.169535946187011 4.547473508864641e-013 62.58005377611181 -4.07426833308557 2.273736754432321e-013 61.95155971166844 0.5557432124354591 2.273736754432321e-013 61.89442363045612 -4.226696514048058 0 61.32306533290387 0.6123832516377661 2.273736754432321e-013 61.13796276817533 -4.134149319443964 0 60.4074160665345 0.8062910825584595 0 61.29302186779052 1.112540694231029 0 60.33861551931022 0.3965949470625674 0 59.49537018034204 -4.071222553948132 0 59.30667111818389 -0.1776436126847329 0 58.68122935699734 -3.850978118059288 0 58.6462240863093 -0.9248721727047951 0 58.20592616983333 -3.316098341385214 0 57.92287726227482 -1.617069115336449 0 57.76562793903605 -2.466583728360888 0 57.51402908471812 0.7251864937766186 0 59.4122104900074 1.43855911749688 2.273736754432321e-013 52.26343299938714 0.1404634848111073 2.273736754432321e-013 52.24283740598997 0.7586043103219708 0 52.11926290264307 -0.6219099645826418 0 52.36641190933688 1.933071475244446 0 53.27262493388071 -1.920005597268528 0 53.37560384383039 -1.137027487319983 0 52.16045440375876 2.461054241275747 0 53.65644602839228 -2.599960404443436 0 53.49917834717729 -2.826611670544935 0 54.30241277609275 2.716049585192877 0 55.373391805099 -3.115077422745685 0 54.73492369496739 -2.970844798862913 0 55.62054081179275 1.768234190806993 0 55.41458330621458 1.191302686405606 0 55.64113671951128 -3.045191470601708 0 56.788846309566 0.7173949892126075 2.273736754432321e-013 56.23841364284857 0.5937665214494245 2.273736754432321e-013 58.00964850514185 -2.937593131433118 0 57.41100421446237 -2.466583728360888 0 57.51402908471812 -1.617069115336449 0 57.76562793903605 -0.9248721727047951 0 58.20592616983333 -0.1776436126847329 0 58.68122935699734 0.7251864937766186 0 59.4122104900074 0.3965949470625674 0 59.49537018034204 -3.316098341385214 0 57.92287726227482 -2.466583728360888 0 57.51402908471812 -2.937593131433118 0 57.41100421446237 -3.316098341385214 0 57.92287726227482 0.3965949470625674 0 59.49537018034204 0.7251864937766186 0 59.4122104900074 -0.1776436126847329 0 58.68122935699734 0.5937665214494245 2.273736754432321e-013 58.00964850514185 -0.9248721727047951 0 58.20592616983333 -1.617069115336449 0 57.76562793903605 -3.045191470601708 0 56.788846309566 0.7173949892126075 2.273736754432321e-013 56.23841364284857 1.191302686405606 0 55.64113671951128 -2.970844798862913 0 55.62054081179275 1.768234190806993 0 55.41458330621458 2.716049585192877 0 55.373391805099 -3.115077422745685 0 54.73492369496739 -2.826611670544935 0 54.30241277609275 2.461054241275747 0 53.65644602839228 -2.599960404443436 0 53.49917834717729 -1.920005597268528 0 53.37560384383039 1.933071475244446 0 53.27262493388071 -0.6219099645826418 0 52.36641190933688 -1.137027487319983 0 52.16045440375876 1.43855911749688 2.273736754432321e-013 52.26343299938714 0.1404634848111073 2.273736754432321e-013 52.24283740598997 0.7586043103219708 0 52.11926290264307</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID8987\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8985\">\r\n\t\t\t\t\t<float_array count=\"294\" id=\"ID8988\">-5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 -5.423550106583086e-015 -1 5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 5.423550106583086e-015 1 -5.101785320431348e-016 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 -6.533773338000529e-015 -1 7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017 6.533773338000529e-015 1 -7.917947523903401e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID8988\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8986\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8984\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8985\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"90\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8986\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 4 6 7 7 6 8 7 8 9 9 8 1 9 1 10 10 1 0 10 0 11 11 0 12 11 13 10 13 11 14 13 14 15 15 14 16 15 16 17 17 16 18 18 16 19 18 19 20 20 19 21 20 21 22 23 24 25 24 26 25 25 26 27 26 28 27 27 28 29 29 28 30 28 31 30 30 31 32 31 33 32 34 32 33 35 36 33 33 36 34 36 37 34 34 37 38 37 39 38 38 39 40 39 41 40 40 41 42 41 43 42 44 42 43 45 37 36 46 47 48 47 46 49 49 46 50 49 51 52 51 49 50 51 50 53 51 53 54 54 53 55 55 53 56 55 56 57 57 56 58 58 56 59 58 59 60 58 60 61 61 60 62 61 62 63 61 63 64 64 63 65 65 63 66 66 63 67 67 63 68 68 63 69 68 69 70 71 64 65 72 73 74 75 76 77 76 78 77 77 78 79 79 78 80 80 78 72 72 78 73 73 78 81 78 82 81 82 83 81 81 83 84 83 85 84 85 86 84 84 86 87 87 86 88 86 89 88 88 89 90 90 89 91 89 92 91 92 93 91 94 91 93 92 95 93 93 95 96 97 96 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8989\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8990\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8993\">-2.309159117726836 2.273736754432321e-013 6.0461349841637 -2.209632054635677 2.273736754432321e-013 5.079949442371657 -1.718602821257719 0 4.883622743546596 -4.345609774708237 2.273736754432321e-013 5.619847471238927 -4.171839701291674 0 5.841013259106347 -3.619349590820207 0 6.219699472393586 -3.017295331869605 0 6.258483587644719 -3.609065672423981 2.273736754432321e-013 4.540051570665128 -4.075543545019968 2.273736754432321e-013 4.810000506518435 -3.633617033205724 2.273736754432321e-013 4.122857532112732 -3.118036439045909 0 5.030867846245741 -2.209632054635677 2.273736754432321e-013 5.079949442371657 -3.118036439045909 0 5.030867846245741 -4.345609774708237 2.273736754432321e-013 5.619847471238927 -4.075543545019968 2.273736754432321e-013 4.810000506518435 -3.609065672423981 2.273736754432321e-013 4.540051570665128 -3.633617033205724 2.273736754432321e-013 4.122857532112732 -3.017295331869605 0 6.258483587644719 -2.309159117726836 2.273736754432321e-013 6.0461349841637 -3.619349590820207 0 6.219699472393586 -4.171839701291674 0 5.841013259106347 -1.718602821257719 0 4.883622743546596</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8993\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8991\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID8994\">-4.479861145843511e-015 -1 -7.615932632603942e-016 -4.479861145843511e-015 -1 -7.615932632603942e-016 -4.479861145843511e-015 -1 -7.615932632603942e-016 -4.479861145843511e-015 -1 -7.615932632603942e-016 -4.479861145843511e-015 -1 -7.615932632603942e-016 -4.479861145843511e-015 -1 -7.615932632603942e-016 -4.479861145843511e-015 -1 -7.615932632603942e-016 -4.479861145843511e-015 -1 -7.615932632603942e-016 -4.479861145843511e-015 -1 -7.615932632603942e-016 -4.479861145843511e-015 -1 -7.615932632603942e-016 -4.479861145843511e-015 -1 -7.615932632603942e-016 4.479861145843511e-015 1 7.615932632603942e-016 4.479861145843511e-015 1 7.615932632603942e-016 4.479861145843511e-015 1 7.615932632603942e-016 4.479861145843511e-015 1 7.615932632603942e-016 4.479861145843511e-015 1 7.615932632603942e-016 4.479861145843511e-015 1 7.615932632603942e-016 4.479861145843511e-015 1 7.615932632603942e-016 4.479861145843511e-015 1 7.615932632603942e-016 4.479861145843511e-015 1 7.615932632603942e-016 4.479861145843511e-015 1 7.615932632603942e-016 4.479861145843511e-015 1 7.615932632603942e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID8994\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8992\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8990\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8991\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8992\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 7 8 9 8 7 10 8 10 3 3 10 1 11 12 13 13 12 14 12 15 14 16 14 15 17 18 19 19 18 20 20 18 13 13 18 11 21 11 18</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID8995\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID8996\">\r\n\t\t\t\t\t<float_array count=\"258\" id=\"ID8999\">-1.718602821257719 0 4.883622743546596 -3.633617033205724 2.273736754432321e-013 4.122857532112732 -1.571294152131372 0 4.073775935986788 -3.609065672423981 2.273736754432321e-013 4.540051570665128 -3.118036439045909 0 5.030867846245741 -2.209632054635677 2.273736754432321e-013 5.079949442371657 -1.522191178350113 0 2.527704400734677 -3.805477567549019 2.273736754432321e-013 2.748571583301384 -2.970727769919449 2.273736754432321e-013 2.454082006545804 -1.718602821257719 2.273736754432321e-013 3.239388173203338 -4.591124139179669 0 3.092143070504221 -4.607055631120034 0 5.257851142344777 -4.075543545019968 2.273736754432321e-013 4.810000506518435 -4.345609774708237 2.273736754432321e-013 5.619847471238927 -4.615676004396619 2.273736754432321e-013 6.429694435959391 -4.517732363285063 0 6.135991070827942 -4.517732363285063 0 6.135991070827942 -4.345609774708237 2.273736754432321e-013 5.619847471238927 -4.615676004396619 2.273736754432321e-013 6.429694435959391 -4.607055631120034 0 5.257851142344777 -4.075543545019968 2.273736754432321e-013 4.810000506518435 -3.633617033205724 2.273736754432321e-013 4.122857532112732 -1.571294152131372 0 4.073775935986788 -1.718602821257719 2.273736754432321e-013 3.239388173203338 -4.591124139179669 0 3.092143070504221 -3.805477567549019 2.273736754432321e-013 2.748571583301384 -1.522191178350113 0 2.527704400734677 -2.970727769919449 2.273736754432321e-013 2.454082006545804 -2.209632054635677 2.273736754432321e-013 5.079949442371657 -1.718602821257719 0 4.883622743546596 -3.118036439045909 0 5.030867846245741 -3.609065672423981 2.273736754432321e-013 4.540051570665128 0.8593011584113128 2.273736754432321e-013 0.1963266988250609 -0.976388460025305 0 0.06982357312506338 0 0 0 -1.104816279535271 0 0.7116839296292881 1.006609827537886 0 1.177959249986287 -1.325779535442393 2.273736754432321e-013 1.816020628266017 0.5401319549416712 0 1.644234884664627 0.6137865417224475 0 2.478622647448077 -1.522191178350113 0 2.527704400734677 1.276675805008608 0 3.141224666630137 -1.718602821257719 2.273736754432321e-013 3.239388173203338 1.104815775100292 0 4.368265827063738 -1.571294152131372 0 4.073775935986788 -0.8593016628464056 0 4.540051570665128 0.7856465716306502 2.273736754432321e-013 4.687296359042875 0.7856465716306502 2.273736754432321e-013 4.687296359042875 1.104815775100292 0 4.368265827063738 -0.8593016628464056 0 4.540051570665128 -1.571294152131372 0 4.073775935986788 -1.718602821257719 2.273736754432321e-013 3.239388173203338 1.276675805008608 0 3.141224666630137 -1.522191178350113 0 2.527704400734677 0.6137865417224475 0 2.478622647448077 -1.325779535442393 2.273736754432321e-013 1.816020628266017 0.5401319549416712 0 1.644234884664627 1.006609827537886 0 1.177959249986287 -1.104816279535271 0 0.7116839296292881 0.8593011584113128 2.273736754432321e-013 0.1963266988250609 -0.976388460025305 0 0.06982357312506338 0 0 0 -1.897084819453539 0 6.211016022387327 -2.309159117726836 2.273736754432321e-013 6.0461349841637 -1.835595949707567 0 5.904127732761339 -3.017295331869605 0 6.258483587644719 -2.456460045740869 4.547473508864641e-013 6.40746823049497 -4.171839701291674 0 5.841013259106347 -4.517732363285063 0 6.135991070827942 -4.345609774708237 2.273736754432321e-013 5.619847471238927 -3.619349590820207 0 6.219699472393586 -3.935058369499529 0 6.519492593612029 -2.640653184009807 0 6.472156738370813 -3.22471386968823 2.273736754432321e-013 6.677278463428166 -3.22471386968823 2.273736754432321e-013 6.677278463428166 -2.640653184009807 0 6.472156738370813 -3.935058369499529 0 6.519492593612029 -2.456460045740869 4.547473508864641e-013 6.40746823049497 -3.017295331869605 0 6.258483587644719 -3.619349590820207 0 6.219699472393586 -4.517732363285063 0 6.135991070827942 -4.171839701291674 0 5.841013259106347 -4.345609774708237 2.273736754432321e-013 5.619847471238927 -1.897084819453539 0 6.211016022387327 -2.309159117726836 2.273736754432321e-013 6.0461349841637 -1.835595949707567 0 5.904127732761339</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"86\" source=\"#ID8999\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID8997\">\r\n\t\t\t\t\t<float_array count=\"258\" id=\"ID9000\">-4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 -4.368838581436002e-015 -1 -2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 4.368838581436002e-015 1 2.156435769426428e-016 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 -4.424349599993531e-015 -1 6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 4.424349599993531e-015 1 -6.087721083123568e-017 -3.980261482167961e-015 -1 -2.215137164374404e-015 -3.980261482167961e-015 -1 -2.215137164374404e-015 -3.980261482167961e-015 -1 -2.215137164374404e-015 -3.980261482167961e-015 -1 -2.215137164374404e-015 -3.980261482167961e-015 -1 -2.215137164374404e-015 -3.980261482167961e-015 -1 -2.215137164374404e-015 -3.980261482167961e-015 -1 -2.215137164374404e-015 -3.980261482167961e-015 -1 -2.215137164374404e-015 -3.980261482167961e-015 -1 -2.215137164374404e-015 -3.980261482167961e-015 -1 -2.215137164374404e-015 -3.980261482167961e-015 -1 -2.215137164374404e-015 -3.980261482167961e-015 -1 -2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015 3.980261482167961e-015 1 2.215137164374404e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"86\" source=\"#ID9000\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID8998\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID8996\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID8997\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"74\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID8998\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 6 7 8 7 6 9 7 9 10 10 9 1 10 1 11 1 9 2 11 1 12 11 12 13 11 13 14 14 13 15 16 17 18 18 17 19 17 20 19 20 21 19 22 23 21 19 21 24 21 23 24 24 23 25 23 26 25 27 25 26 28 29 30 30 29 31 31 29 21 22 21 29 32 33 34 33 32 35 35 32 36 35 36 37 37 36 38 37 38 39 37 39 40 40 39 41 40 41 42 42 41 43 42 43 44 44 43 45 45 43 46 47 48 49 49 48 50 50 48 51 48 52 51 51 52 53 52 54 53 53 54 55 54 56 55 56 57 55 55 57 58 57 59 58 58 59 60 61 60 59 62 63 64 63 62 65 65 62 66 67 68 69 68 67 70 68 70 71 71 70 65 71 65 66 71 66 72 71 72 73 74 75 76 75 77 76 77 78 76 78 79 76 76 79 80 79 81 80 82 80 81 77 83 78 78 83 84 85 84 83</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9001\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9002\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID9005\">-2.922031118611812 0 6.965439493735744 -2.640653184009807 0 6.472156738370813 -2.456460045740869 4.547473508864641e-013 6.40746823049497 -3.22471386968823 2.273736754432321e-013 6.677278463428166 -3.14945467485245 0 6.916531717326961 -3.935058369499529 0 6.519492593612029 -4.615676004396619 2.273736754432321e-013 6.429694435959391 -4.517732363285063 0 6.135991070827942 -4.392835745480056 2.273736754432321e-013 7.450429194095023 -3.349604634921548 2.273736754432321e-013 8.040137816212678 -4.372683557404116 0 7.617971111448952 -3.985064029893351 -2.273736754432321e-013 7.976834506706183 -4.307375359604748 0 8.160932532661519 -3.985064029893351 -2.273736754432321e-013 7.976834506706183 -4.372683557404116 0 7.617971111448952 -4.307375359604748 0 8.160932532661519 -3.349604634921548 2.273736754432321e-013 8.040137816212678 -4.392835745480056 2.273736754432321e-013 7.450429194095023 -3.14945467485245 0 6.916531717326961 -3.22471386968823 2.273736754432321e-013 6.677278463428166 -3.935058369499529 0 6.519492593612029 -4.615676004396619 2.273736754432321e-013 6.429694435959391 -4.517732363285063 0 6.135991070827942 -2.922031118611812 0 6.965439493735744 -2.640653184009807 0 6.472156738370813 -2.456460045740869 4.547473508864641e-013 6.40746823049497</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID9005\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9003\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID9006\">-3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 -3.980260066456067e-015 -1 7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016 3.980260066456067e-015 1 -7.355111071111831e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID9006\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9004\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9002\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9003\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9004\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 6 5 8 8 5 3 8 3 4 8 4 9 8 9 10 10 9 11 12 10 11 13 14 15 13 16 14 14 16 17 16 18 17 18 19 17 19 20 17 17 20 21 22 21 20 18 23 19 19 23 24 25 24 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9007\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9008\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID9011\">14.34198225608566 2.273736754432321e-013 38.72150533247901 12.7409274418884 0 37.8299673440215 13.04774101200371 0 37.54910768479965 12.9370543311818 0 38.88859260025316 14.07908934574562 2.273736754432321e-013 39.32791800641274 10.74043468440141 0 40.80980118905188 14.58465286767762 2.273736754432321e-013 40.13646823832448 14.50376266381363 2.273736754432321e-013 40.9854458561033 9.092969823207454 2.273736754432321e-013 41.79000955008928 13.31063392234387 2.273736754432321e-013 41.65249960883773 10.09525210201696 0 44.84627283629629 8.821233156683206 0 42.60254600560546 8.881901061798885 0 43.63344748842866 9.407686378043991 0 44.44199772034045 9.407686378043991 0 44.44199772034045 10.09525210201696 0 44.84627283629629 8.881901061798885 0 43.63344748842866 8.821233156683206 0 42.60254600560546 9.092969823207454 2.273736754432321e-013 41.79000955008928 13.31063392234387 2.273736754432321e-013 41.65249960883773 14.50376266381363 2.273736754432321e-013 40.9854458561033 10.74043468440141 0 40.80980118905188 14.58465286767762 2.273736754432321e-013 40.13646823832448 14.07908934574562 2.273736754432321e-013 39.32791800641274 12.9370543311818 0 38.88859260025316 14.34198225608566 2.273736754432321e-013 38.72150533247901 12.7409274418884 0 37.8299673440215 13.04774101200371 0 37.54910768479965</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID9011\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9009\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID9012\">-5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 -5.645594841698501e-015 -1 2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016 5.645594841698501e-015 1 -2.388338567308091e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID9012\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9010\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9008\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9009\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9010\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 5 7 8 8 7 9 8 9 10 8 10 11 11 10 12 12 10 13 14 15 16 16 15 17 17 15 18 15 19 18 19 20 18 18 20 21 20 22 21 22 23 21 21 23 24 23 25 24 24 25 26 27 26 25</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9013\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9014\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9017\">0.002747405775494372 0 7.832985017758801 -0.05791419390118335 0 6.576552923374408 0.4986058485891363 0 6.329318106946857 -1.435863164101534 0 7.595301327617193 -0.7106133637198582 4.547473508864641e-013 7.821100841109768 -0.6968816314110882 2.273736754432321e-013 6.535347277797143 -1.45951990923254 0 6.226303678682399 -1.449213795692003 2.273736754432321e-013 5.886355688223944 -0.05791419390118335 0 6.576552923374408 -0.6968816314110882 2.273736754432321e-013 6.535347277797143 -1.435863164101534 0 7.595301327617193 -1.45951990923254 0 6.226303678682399 -1.449213795692003 2.273736754432321e-013 5.886355688223944 -0.7106133637198582 4.547473508864641e-013 7.821100841109768 0.002747405775494372 0 7.832985017758801 0.4986058485891363 0 6.329318106946857</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID9017\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9015\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9018\">-4.701905649338359e-015 -1 -5.501906744055356e-016 -4.701905649338359e-015 -1 -5.501906744055356e-016 -4.701905649338359e-015 -1 -5.501906744055356e-016 -4.701905649338359e-015 -1 -5.501906744055356e-016 -4.701905649338359e-015 -1 -5.501906744055356e-016 -4.701905649338359e-015 -1 -5.501906744055356e-016 -4.701905649338359e-015 -1 -5.501906744055356e-016 -4.701905649338359e-015 -1 -5.501906744055356e-016 4.701905649338359e-015 1 5.501906744055356e-016 4.701905649338359e-015 1 5.501906744055356e-016 4.701905649338359e-015 1 5.501906744055356e-016 4.701905649338359e-015 1 5.501906744055356e-016 4.701905649338359e-015 1 5.501906744055356e-016 4.701905649338359e-015 1 5.501906744055356e-016 4.701905649338359e-015 1 5.501906744055356e-016 4.701905649338359e-015 1 5.501906744055356e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID9018\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9016\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9014\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9015\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9016\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 5 6 7 6 5 3 3 5 1 8 9 10 10 9 11 12 11 9 13 14 10 10 14 8 15 8 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9019\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9020\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID9023\">4.086261782037695 0 55.92947738448129 3.360836690458427 2.273736754432321e-013 55.63911311853616 3.784644397893771 0 55.49790518637576 1.191302686405606 0 55.64113671951128 0.7173949892126075 2.273736754432321e-013 56.23841364284857 4.280567426790412 0 56.20750152572305 4.137817571495702 0 56.9099848223014 0.5937665214494245 2.273736754432321e-013 58.00964850514185 4.702894346597645 0 57.6395592956244 4.938342960854016 0 58.43973757786671 0.7251864937766186 0 59.4122104900074 4.302631651918659 2.273736754432321e-013 59.66353997091187 1.112540694231029 0 60.33861551931022 3.872127615537238 0 60.49229960210579 0.8062910825584595 0 61.29302186779052 3.642662563429894 2.273736754432321e-013 62.74076126305482 0.5557432124354591 2.273736754432321e-013 61.89442363045612 0.365207986232349 0 62.63718985732407 -0.7398978390508546 0 64.33222001821974 2.694360389171948 2.273736754432321e-013 64.07373281109523 1.688449685323576 2.273736754432321e-013 65.48768121751778 -1.806896114658343 0 64.960714082663 -3.825217121906121 0 65.3770830276211 -2.610204976901741 0 66.17686589358112 0.3828738078909737 2.273736754432321e-013 66.17686589358107 -0.7728697349671165 0 66.29535216260291 -4.816197532286537 0 56.62791565445082 -5.632918314984977 2.273736754432321e-013 58.03092837615969 -5.462861360168631 0 56.4041675354253 -3.045191470601708 0 56.788846309566 -2.937593131433118 0 57.41100421446237 -3.316098341385214 0 57.92287726227482 -3.850978118059288 0 58.6462240863093 -6.107069149896461 0 59.27503498669273 -4.071222553948132 0 59.30667111818389 -6.403413673933869 0 60.84497938709825 -4.134149319443964 0 60.4074160665345 -4.226696514048058 0 61.32306533290387 -6.284875965205742 2.273736754432321e-013 62.23719422681029 -4.07426833308557 2.273736754432321e-013 61.95155971166844 -4.169535946187011 4.547473508864641e-013 62.58005377611181 -5.781090577003624 0 63.24432829929947 -3.769411466725387 2.273736754432321e-013 63.8179971732369 -5.455111499675809 0 64.28108401762449 -3.254965851542011 0 64.44649155200165 -4.793739635304178 -2.273736754432321e-013 64.73955218918707 -2.549984505720545 0 64.88453295536789 0.6123832516377661 2.273736754432321e-013 61.13796276817533 1.768234190806993 0 55.41458330621458 2.716049585192877 0 55.373391805099 1.191302686405606 0 55.64113671951128 3.360836690458427 2.273736754432321e-013 55.63911311853616 1.768234190806993 0 55.41458330621458 2.716049585192877 0 55.373391805099 0.8062910825584595 0 61.29302186779052 0.6123832516377661 2.273736754432321e-013 61.13796276817533 0.5557432124354591 2.273736754432321e-013 61.89442363045612 -1.806896114658343 0 64.960714082663 -2.549984505720545 0 64.88453295536789 -3.825217121906121 0 65.3770830276211 -4.793739635304178 -2.273736754432321e-013 64.73955218918707 -3.254965851542011 0 64.44649155200165 -5.455111499675809 0 64.28108401762449 -3.769411466725387 2.273736754432321e-013 63.8179971732369 -5.781090577003624 0 63.24432829929947 -4.169535946187011 4.547473508864641e-013 62.58005377611181 -6.284875965205742 2.273736754432321e-013 62.23719422681029 -4.07426833308557 2.273736754432321e-013 61.95155971166844 -4.226696514048058 0 61.32306533290387 -6.403413673933869 0 60.84497938709825 -4.134149319443964 0 60.4074160665345 -4.071222553948132 0 59.30667111818389 -6.107069149896461 0 59.27503498669273 -3.850978118059288 0 58.6462240863093 -5.632918314984977 2.273736754432321e-013 58.03092837615969 -3.316098341385214 0 57.92287726227482 -2.937593131433118 0 57.41100421446237 -3.045191470601708 0 56.788846309566 -4.816197532286537 0 56.62791565445082 -5.462861360168631 0 56.4041675354253 -0.7728697349671165 0 66.29535216260291 0.3828738078909737 2.273736754432321e-013 66.17686589358107 -2.610204976901741 0 66.17686589358112 1.688449685323576 2.273736754432321e-013 65.48768121751778 -0.7398978390508546 0 64.33222001821974 2.694360389171948 2.273736754432321e-013 64.07373281109523 3.642662563429894 2.273736754432321e-013 62.74076126305482 0.365207986232349 0 62.63718985732407 3.872127615537238 0 60.49229960210579 1.112540694231029 0 60.33861551931022 4.302631651918659 2.273736754432321e-013 59.66353997091187 0.7251864937766186 0 59.4122104900074 4.938342960854016 0 58.43973757786671 0.5937665214494245 2.273736754432321e-013 58.00964850514185 4.702894346597645 0 57.6395592956244 4.137817571495702 0 56.9099848223014 0.7173949892126075 2.273736754432321e-013 56.23841364284857 4.280567426790412 0 56.20750152572305 4.086261782037695 0 55.92947738448129 3.784644397893771 0 55.49790518637576</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID9023\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9021\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID9024\">-4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 -4.812926961571731e-015 -1 1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015 4.812926961571731e-015 1 -1.513660158721256e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID9024\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9022\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9020\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9021\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9022\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 4 6 7 7 6 8 7 8 9 7 9 10 10 9 11 10 11 12 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 17 15 18 18 15 19 18 19 20 18 20 21 21 20 22 22 20 23 23 20 24 23 24 25 26 27 28 27 26 29 27 29 30 27 30 31 27 31 32 27 32 33 33 32 34 33 34 35 35 34 36 35 36 37 35 37 38 38 37 39 38 39 40 38 40 41 41 40 42 41 42 43 43 42 44 43 44 45 45 44 46 45 46 22 22 46 21 16 47 14 1 48 49 48 1 3 50 51 52 53 52 51 54 55 56 57 58 59 59 58 60 58 61 60 60 61 62 61 63 62 62 63 64 63 65 64 64 65 66 65 67 66 67 68 66 66 68 69 68 70 69 70 71 69 69 71 72 71 73 72 72 73 74 73 75 74 75 76 74 76 77 74 77 78 74 79 74 78 80 81 82 81 83 82 82 83 59 59 83 57 57 83 84 83 85 84 85 86 84 84 86 87 87 86 56 56 86 54 86 88 54 54 88 89 88 90 89 89 90 91 90 92 91 91 92 93 92 94 93 94 95 93 93 95 96 95 97 96 97 98 96 96 98 50 50 98 51 99 51 98</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9025\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9026\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9029\">0.4986058485891363 0 6.329318106946857 -0.2434207065863348 2.273736754432321e-013 6.288112147048253 0.651137236991417 0 5.835888333037303 -0.8823881440961259 0 6.040877330620674 -1.449213795692003 2.273736754432321e-013 5.886355688223944 -1.438907682151353 0 5.546407697765517 -0.6968816314110882 2.273736754432321e-013 6.535347277797143 -0.05791419390118335 0 6.576552923374408 -0.05791419390118335 0 6.576552923374408 0.4986058485891363 0 6.329318106946857 -0.6968816314110882 2.273736754432321e-013 6.535347277797143 -0.2434207065863348 2.273736754432321e-013 6.288112147048253 -0.8823881440961259 0 6.040877330620674 -1.449213795692003 2.273736754432321e-013 5.886355688223944 -1.438907682151353 0 5.546407697765517 0.651137236991417 0 5.835888333037303</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID9029\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9027\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9030\">-4.92395096338963e-015 -1 -2.028162158685413e-015 -4.92395096338963e-015 -1 -2.028162158685413e-015 -4.92395096338963e-015 -1 -2.028162158685413e-015 -4.92395096338963e-015 -1 -2.028162158685413e-015 -4.92395096338963e-015 -1 -2.028162158685413e-015 -4.92395096338963e-015 -1 -2.028162158685413e-015 -4.92395096338963e-015 -1 -2.028162158685413e-015 -4.92395096338963e-015 -1 -2.028162158685413e-015 4.92395096338963e-015 1 2.028162158685413e-015 4.92395096338963e-015 1 2.028162158685413e-015 4.92395096338963e-015 1 2.028162158685413e-015 4.92395096338963e-015 1 2.028162158685413e-015 4.92395096338963e-015 1 2.028162158685413e-015 4.92395096338963e-015 1 2.028162158685413e-015 4.92395096338963e-015 1 2.028162158685413e-015 4.92395096338963e-015 1 2.028162158685413e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID9030\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9028\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9026\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9027\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9028\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 6 3 1 6 1 0 6 0 7 8 9 10 9 11 10 11 12 10 10 12 13 14 13 12 15 11 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9031\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9032\">\r\n\t\t\t\t\t<float_array count=\"372\" id=\"ID9035\">9.092969823207454 2.273736754432321e-013 41.79000955008928 6.817899420709864 2.273736754432321e-013 42.14288463549974 7.484730339872044 0 41.39792633140286 8.821233156683206 0 42.60254600560546 5.876491360971841 2.273736754432321e-013 43.16230144413424 8.881901061798885 0 43.63344748842866 5.40578682666785 0 44.14250980517147 9.407686378043991 0 44.44199772034045 3.298231754556696 2.273736754432321e-013 47.32611787954937 1.817026180348876 2.273736754432321e-013 46.55365016921786 2.36442805396041 0 46.32834712632803 1.173023976099671 0 48.45263309399866 2.686429156085069 0 49.16072841655551 0.7544225433380234 2.273736754432321e-013 47.8089101592164 -1.435185455543888 0 47.7767239653291 0.6578222127004665 2.273736754432321e-013 46.8755117937697 -1.04878413299457 0 49.54696242888201 2.589828825447512 0 50.38380221266675 -1.692786337243433 2.273736754432321e-013 50.44817460044141 3.118142370417218 0 50.45481243911672 -2.990270594587514 2.273736754432321e-013 50.75381441344894 3.658579508594698 -2.273736754432321e-013 41.31911213399775 3.670178621127548 0 40.84209699985888 3.019371959976979 2.273736754432321e-013 43.43249649361957 4.002768188619598 2.273736754432321e-013 46.52885021318593 10.09525210201696 0 44.84627283629629 9.055891825572076 2.273736754432321e-013 46.87484637543099 4.179713933212156 0 48.37680212070887 7.856942396996715 0 48.79377295630906 3.33930286044847 2.273736754432321e-013 49.30527475597853 7.631410987298182 2.273736754432321e-013 50.79046931424244 -3.305016911094981 0 51.09262487487206 7.382126727102218 2.273736754432321e-013 52.99745669169136 -2.916202875459362 2.273736754432321e-013 51.325095073623 0.7586043103219708 0 52.11926290264307 -2.978469335408704 2.273736754432321e-013 51.77633325967616 -3.352070112844899 0 52.10309169683922 1.43855911749688 2.273736754432321e-013 52.26343299938714 1.933071475244446 0 53.27262493388071 5.423466268074094 0 55.16884748839692 2.461054241275747 0 53.65644602839228 2.613026282419469 0 53.76692326158951 3.35479507125865 2.273736754432321e-013 54.63194478501771 4.014145217878763 0 55.04385979617399 4.199587667305991 0 55.78530713057666 4.280567426790412 0 56.20750152572305 4.086261782037695 0 55.92947738448129 0.1404634848111073 2.273736754432321e-013 52.24283740598997 -1.137027487319983 0 52.16045440375876 -0.6219099645826418 0 52.36641190933688 -3.320936378435135 2.273736754432321e-013 52.70992901894283 -1.920005597268528 0 53.37560384383039 -3.492169899948408 0 52.84996830425251 -4.494142590992283 2.273736754432321e-013 52.90831040950053 -2.599960404443436 0 53.49917834717729 -6.196835894968217 0 56.15020958309657 -2.826611670544935 0 54.30241277609275 -3.115077422745685 0 54.73492369496739 -2.970844798862913 0 55.62054081179275 -3.045191470601708 0 56.788846309566 -5.462861360168631 0 56.4041675354253 -4.816197532286537 0 56.62791565445082 -4.816197532286537 0 56.62791565445082 -3.045191470601708 0 56.788846309566 -5.462861360168631 0 56.4041675354253 -6.196835894968217 0 56.15020958309657 -2.970844798862913 0 55.62054081179275 -3.115077422745685 0 54.73492369496739 -2.826611670544935 0 54.30241277609275 -2.599960404443436 0 53.49917834717729 -4.494142590992283 2.273736754432321e-013 52.90831040950053 -1.920005597268528 0 53.37560384383039 -3.492169899948408 0 52.84996830425251 -3.320936378435135 2.273736754432321e-013 52.70992901894283 -1.137027487319983 0 52.16045440375876 0.7586043103219708 0 52.11926290264307 -3.352070112844899 0 52.10309169683922 -0.6219099645826418 0 52.36641190933688 0.1404634848111073 2.273736754432321e-013 52.24283740598997 4.086261782037695 0 55.92947738448129 4.280567426790412 0 56.20750152572305 4.199587667305991 0 55.78530713057666 5.423466268074094 0 55.16884748839692 4.014145217878763 0 55.04385979617399 3.35479507125865 2.273736754432321e-013 54.63194478501771 2.613026282419469 0 53.76692326158951 2.461054241275747 0 53.65644602839228 1.933071475244446 0 53.27262493388071 7.382126727102218 2.273736754432321e-013 52.99745669169136 1.43855911749688 2.273736754432321e-013 52.26343299938714 -2.978469335408704 2.273736754432321e-013 51.77633325967616 -2.916202875459362 2.273736754432321e-013 51.325095073623 -3.305016911094981 0 51.09262487487206 7.631410987298182 2.273736754432321e-013 50.79046931424244 -2.990270594587514 2.273736754432321e-013 50.75381441344894 3.118142370417218 0 50.45481243911672 3.33930286044847 2.273736754432321e-013 49.30527475597853 7.856942396996715 0 48.79377295630906 4.179713933212156 0 48.37680212070887 9.055891825572076 2.273736754432321e-013 46.87484637543099 4.002768188619598 2.273736754432321e-013 46.52885021318593 10.09525210201696 0 44.84627283629629 9.407686378043991 0 44.44199772034045 5.40578682666785 0 44.14250980517147 3.019371959976979 2.273736754432321e-013 43.43249649361957 3.658579508594698 -2.273736754432321e-013 41.31911213399775 3.670178621127548 0 40.84209699985888 -1.692786337243433 2.273736754432321e-013 50.44817460044141 2.589828825447512 0 50.38380221266675 -1.04878413299457 0 49.54696242888201 2.686429156085069 0 49.16072841655551 1.173023976099671 0 48.45263309399866 0.7544225433380234 2.273736754432321e-013 47.8089101592164 -1.435185455543888 0 47.7767239653291 0.6578222127004665 2.273736754432321e-013 46.8755117937697 3.298231754556696 2.273736754432321e-013 47.32611787954937 1.817026180348876 2.273736754432321e-013 46.55365016921786 2.36442805396041 0 46.32834712632803 8.881901061798885 0 43.63344748842866 5.876491360971841 2.273736754432321e-013 43.16230144413424 8.821233156683206 0 42.60254600560546 6.817899420709864 2.273736754432321e-013 42.14288463549974 9.092969823207454 2.273736754432321e-013 41.79000955008928 7.484730339872044 0 41.39792633140286</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"124\" source=\"#ID9035\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9033\">\r\n\t\t\t\t\t<float_array count=\"372\" id=\"ID9036\">-4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 -4.091283404627426e-015 -1 -1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015 4.091283404627426e-015 1 1.423128853802237e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"124\" source=\"#ID9036\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9034\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9032\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9033\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"120\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9034\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 8 9 10 9 8 11 11 8 12 13 14 15 14 13 16 16 13 11 16 11 12 16 12 17 16 17 18 18 17 19 18 19 20 6 21 22 21 6 23 23 6 24 24 6 7 24 7 25 24 25 26 24 26 27 27 26 28 27 28 29 29 28 30 29 30 19 19 30 20 20 30 31 31 30 32 31 32 33 33 32 34 33 34 35 35 34 36 34 32 37 37 32 38 38 32 39 38 39 40 40 39 41 41 39 42 42 39 43 43 39 44 44 39 45 44 45 46 47 48 34 48 47 49 36 48 50 48 36 34 50 48 51 50 51 52 52 51 53 53 51 54 53 54 55 55 54 56 55 56 57 55 57 58 55 58 59 55 59 60 60 59 61 62 63 64 64 63 65 63 66 65 66 67 65 67 68 65 68 69 65 65 69 70 69 71 70 70 71 72 72 71 73 71 74 73 75 76 74 73 74 76 77 78 74 75 74 78 79 80 81 80 82 81 81 82 83 83 82 84 84 82 85 85 82 86 86 82 87 82 88 87 87 88 89 89 88 75 76 75 90 90 75 91 75 88 91 91 88 92 88 93 92 92 93 94 94 93 95 95 93 96 93 97 96 96 97 98 97 99 98 98 99 100 99 101 100 101 102 100 102 103 100 100 103 104 104 103 105 106 105 103 94 95 107 95 108 107 107 108 109 108 110 109 110 111 109 111 112 109 109 112 113 114 113 112 110 115 111 111 115 116 117 116 115 102 118 103 103 118 119 118 120 119 119 120 121 120 122 121 123 121 122</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9037\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9038\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID9041\">2.613026282419469 0 53.76692326158951 2.716049585192877 0 55.373391805099 2.461054241275747 0 53.65644602839228 3.35479507125865 2.273736754432321e-013 54.63194478501771 4.014145217878763 0 55.04385979617399 3.784644397893771 0 55.49790518637576 4.199587667305991 0 55.78530713057666 4.086261782037695 0 55.92947738448129 3.360836690458427 2.273736754432321e-013 55.63911311853616 3.784644397893771 0 55.49790518637576 2.716049585192877 0 55.373391805099 3.360836690458427 2.273736754432321e-013 55.63911311853616 4.086261782037695 0 55.92947738448129 4.199587667305991 0 55.78530713057666 4.014145217878763 0 55.04385979617399 3.35479507125865 2.273736754432321e-013 54.63194478501771 2.613026282419469 0 53.76692326158951 2.461054241275747 0 53.65644602839228</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID9041\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9039\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID9042\">9.397918812333872e-015 -1 -1.712193490134859e-014 9.397918812333872e-015 -1 -1.712193490134859e-014 9.397918812333872e-015 -1 -1.712193490134859e-014 9.397918812333872e-015 -1 -1.712193490134859e-014 9.397918812333872e-015 -1 -1.712193490134859e-014 9.397918812333872e-015 -1 -1.712193490134859e-014 9.397918812333872e-015 -1 -1.712193490134859e-014 9.397918812333872e-015 -1 -1.712193490134859e-014 9.397918812333872e-015 -1 -1.712193490134859e-014 -9.397918812333872e-015 1 1.712193490134859e-014 -9.397918812333872e-015 1 1.712193490134859e-014 -9.397918812333872e-015 1 1.712193490134859e-014 -9.397918812333872e-015 1 1.712193490134859e-014 -9.397918812333872e-015 1 1.712193490134859e-014 -9.397918812333872e-015 1 1.712193490134859e-014 -9.397918812333872e-015 1 1.712193490134859e-014 -9.397918812333872e-015 1 1.712193490134859e-014 -9.397918812333872e-015 1 1.712193490134859e-014</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID9042\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9040\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9038\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9039\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9040\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 5 6 7 8 1 5 9 10 11 12 13 9 13 14 9 9 14 10 14 15 10 15 16 10 17 10 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9043\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9044\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID9047\">0.651137236991417 0 5.835888333037303 0.7856465716306502 2.273736754432321e-013 4.687296359042875 1.104815775100292 0 4.368265827063738 -1.718602821257719 0 4.883622743546596 -1.438907682151353 0 5.546407697765517 -0.8823881440961259 0 6.040877330620674 -0.2434207065863348 2.273736754432321e-013 6.288112147048253 -0.8593016628464056 0 4.540051570665128 -1.571294152131372 0 4.073775935986788 0.7856465716306502 2.273736754432321e-013 4.687296359042875 -0.8593016628464056 0 4.540051570665128 -1.718602821257719 0 4.883622743546596 -1.571294152131372 0 4.073775935986788 -0.2434207065863348 2.273736754432321e-013 6.288112147048253 0.651137236991417 0 5.835888333037303 -0.8823881440961259 0 6.040877330620674 -1.438907682151353 0 5.546407697765517 1.104815775100292 0 4.368265827063738</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID9047\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9045\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID9048\">-4.479860874750009e-015 -1 -1.965760182670002e-016 -4.479860874750009e-015 -1 -1.965760182670002e-016 -4.479860874750009e-015 -1 -1.965760182670002e-016 -4.479860874750009e-015 -1 -1.965760182670002e-016 -4.479860874750009e-015 -1 -1.965760182670002e-016 -4.479860874750009e-015 -1 -1.965760182670002e-016 -4.479860874750009e-015 -1 -1.965760182670002e-016 -4.479860874750009e-015 -1 -1.965760182670002e-016 -4.479860874750009e-015 -1 -1.965760182670002e-016 4.479860874750009e-015 1 1.965760182670002e-016 4.479860874750009e-015 1 1.965760182670002e-016 4.479860874750009e-015 1 1.965760182670002e-016 4.479860874750009e-015 1 1.965760182670002e-016 4.479860874750009e-015 1 1.965760182670002e-016 4.479860874750009e-015 1 1.965760182670002e-016 4.479860874750009e-015 1 1.965760182670002e-016 4.479860874750009e-015 1 1.965760182670002e-016 4.479860874750009e-015 1 1.965760182670002e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID9048\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9046\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9044\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9045\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9046\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 7 3 8 3 7 1 9 10 11 12 11 10 13 14 15 15 14 16 16 14 11 11 14 9 17 9 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9049\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9050\">\r\n\t\t\t\t\t<float_array count=\"27\" id=\"ID9052\">-0.6169609518104835 2.273736754432321e-013 50.65829089205579 -1.083554844479636 2.273736754432321e-013 50.81973389100284 -0.1144754928626526 0 50.96323888372956 0.493801313402173 -2.273736754432321e-013 51.3323894474903 1.177629973003491 0 51.10674387645628 1.12379211915038 0 50.08427060682743 0.8725496418940111 2.273736754432321e-013 49.54612696268259 0.3162263290928422 2.273736754432321e-013 49.33086931643175 -0.5990151686709169 2.273736754432321e-013 49.43849829671785</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"9\" source=\"#ID9052\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9051\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9050\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9051\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5 5 6 6 7 7 8</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9053\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9054\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID9056\">2.512353684014215 2.273736754432321e-013 51.36472862060049 2.542413928826818 2.273736754432321e-013 50.98413056785654 2.286161993863061 0 51.56916437558965</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID9056\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9055\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9054\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9055\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9057\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9058\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID9060\">3.451224902831996 2.273736754432321e-013 53.23373898000835 2.82401282090666 2.273736754432321e-013 52.16425297750584 4.484280244954107 0 54.56137680873422</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID9060\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9059\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9058\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9059\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9061\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9062\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID9064\">4.650306987358931 0 51.92454081440792 3.248303272733324 0 50.98413056785648 6.324413050853877 2.273736754432321e-013 53.04746686624435</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID9064\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9063\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9062\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9063\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9065\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9066\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9068\">2.542413928826818 2.273736754432321e-013 50.98413056785654 2.589828825447512 0 50.38380221266675</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9068\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9067\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9066\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9067\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9069\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9070\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9072\">1.7909579832193 2.273736754432321e-013 52.01673787275047 2.286161993863061 0 51.56916437558965</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9072\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9071\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9070\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9071\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9073\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9074\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9076\">2.286161993863061 0 51.56916437558965 2.82401282090666 2.273736754432321e-013 52.16425297750584</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9076\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9075\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9074\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9075\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9077\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9078\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9080\">2.542413928826818 2.273736754432321e-013 50.98413056785654 3.248303272733324 0 50.98413056785648</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9080\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9079\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9078\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9079\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9081\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9082\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID9084\">-2.501758996796752 0 52.56355867261425 -1.083554844479636 2.273736754432321e-013 50.81973389100284 -3.10495593245173 0 52.96551598279342</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID9084\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9083\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9082\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9083\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9085\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9086\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID9088\">-0.8986370075569994 2.273736754432321e-013 27.20436928999101 -1.452359452979295 0 32.73919455962198 -0.7480777586422391 0 24.41506322884476 -0.6266139801213058 2.273736754432321e-013 22.16478862877554 -0.2910303002521459 2.273736754432321e-013 18.01039317437486 0.03183237702421593 2.273736754432321e-013 14.73706709429348</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID9088\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9087\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9086\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9087\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9093\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9094\">\r\n\t\t\t\t\t<float_array count=\"258\" id=\"ID9097\">-3.129887901726222 -5.995204332975845e-015 50.94643229354722 -4.170328210052746 -3.996802888650564e-015 50.53043514849094 -3.285954942199084 -5.440092820663267e-015 49.83710782435282 -4.414837672707802 -5.88418203051333e-015 51.21942791026021 -2.765734788035654 -2.55351295663786e-015 51.70909235009909 -5.077272844050877 -1.165734175856414e-014 52.17514449598852 -1.933381795706644 -1.521005543736465e-014 52.81841756986705 -5.478427239770913 -7.882583474838611e-015 52.56229935045698 -5.602922703019904 -1.199040866595169e-014 53.41957070669844 -1.343799617137768 -2.775557561562891e-015 53.26908070584358 -0.9102832362615603 -4.996003610813204e-015 54.84640130647451 -5.240253468372567 -1.054711873393899e-014 54.93630650987809 -0.9102832362615603 -8.770761894538737e-015 55.92105903417528 -4.878723862771975 -1.043609643147647e-014 55.37928077019991 -4.925818582403989 -5.440092820663267e-015 55.83718605040296 -5.007008561533456 3.441691376337985e-015 56.62660194317081 -0.8896804332693735 -7.438494264988549e-015 56.41383422617653 -0.8690776302771868 -5.551115123125783e-015 56.90660941817779 -5.28690244974032 -1.110223024625157e-014 57.75735078435714 -0.524861189623298 -7.438494264988549e-015 57.41806225819056 -0.1620378502847508 -1.665334536937735e-014 58.37587294418008 -5.520147356579078 -1.676436767183986e-014 58.3402116927056 -5.838878249317102 -6.661338147750939e-016 58.38632879144804 -5.667133405287955 -1.110223024625157e-014 58.32814246969446 -0.02249108126662858 -1.154631945610163e-014 59.53826446594529 -5.883940064137078 -5.551115123125783e-016 59.29843969760036 -5.751716996291218 -1.187938636348918e-014 60.55401492812428 -0.09297533580289308 -6.439293542825908e-015 60.11105042525892 -0.2176820716125887 -8.326672684688674e-015 60.44345769293274 -0.3631730562604227 -1.110223024625157e-015 60.7161358170253 -5.407938014115676 -5.10702591327572e-015 62.06070505463848 -0.5890843196889755 -1.187938636348918e-014 61.05337302562431 -0.6038522716709522 -1.376676550535194e-014 61.2452796760911 -0.6547476234772525 -1.043609643147647e-014 61.81448835003815 -0.7579843040450855 -1.199040866595169e-014 62.06413292413408 -4.812934830198993 -2.153832667772804e-014 63.25019753630818 -1.131043177552361 -6.994405055138486e-015 62.89586826636511 -1.783062611660419 -8.992806499463768e-015 63.73811464087537 -4.336932780177587 -1.432187701766452e-014 63.79207787828912 -2.485236908861928 -1.443289932012704e-014 64.1391843787647 -3.742303672970942 -1.454392162258955e-014 64.21006104101259 -3.127225867463529 -9.214851104388799e-015 64.32969271066989 -3.548530694340244 -2.109423746787797e-015 64.31966579834351 -3.548530694340244 -2.109423746787797e-015 64.31966579834351 -3.127225867463529 -9.214851104388799e-015 64.32969271066989 -3.742303672970942 -1.454392162258955e-014 64.21006104101259 -2.485236908861928 -1.443289932012704e-014 64.1391843787647 -4.336932780177587 -1.432187701766452e-014 63.79207787828912 -1.783062611660419 -8.992806499463768e-015 63.73811464087537 -4.812934830198993 -2.153832667772804e-014 63.25019753630818 -1.131043177552361 -6.994405055138486e-015 62.89586826636511 -0.7579843040450855 -1.199040866595169e-014 62.06413292413408 -5.407938014115676 -5.10702591327572e-015 62.06070505463848 -0.6547476234772525 -1.043609643147647e-014 61.81448835003815 -0.6038522716709522 -1.376676550535194e-014 61.2452796760911 -0.5890843196889755 -1.187938636348918e-014 61.05337302562431 -0.3631730562604227 -1.110223024625157e-015 60.7161358170253 -5.751716996291218 -1.187938636348918e-014 60.55401492812428 -0.2176820716125887 -8.326672684688674e-015 60.44345769293274 -0.09297533580289308 -6.439293542825908e-015 60.11105042525892 -0.02249108126662858 -1.154631945610163e-014 59.53826446594529 -5.883940064137078 -5.551115123125783e-016 59.29843969760036 -5.838878249317102 -6.661338147750939e-016 58.38632879144804 -0.1620378502847508 -1.665334536937735e-014 58.37587294418008 -5.520147356579078 -1.676436767183986e-014 58.3402116927056 -5.667133405287955 -1.110223024625157e-014 58.32814246969446 -5.28690244974032 -1.110223024625157e-014 57.75735078435714 -0.524861189623298 -7.438494264988549e-015 57.41806225819056 -0.8690776302771868 -5.551115123125783e-015 56.90660941817779 -5.007008561533456 3.441691376337985e-015 56.62660194317081 -0.8896804332693735 -7.438494264988549e-015 56.41383422617653 -0.9102832362615603 -8.770761894538737e-015 55.92105903417528 -4.925818582403989 -5.440092820663267e-015 55.83718605040296 -4.878723862771975 -1.043609643147647e-014 55.37928077019991 -5.240253468372567 -1.054711873393899e-014 54.93630650987809 -0.9102832362615603 -4.996003610813204e-015 54.84640130647451 -5.602922703019904 -1.199040866595169e-014 53.41957070669844 -1.343799617137768 -2.775557561562891e-015 53.26908070584358 -1.933381795706644 -1.521005543736465e-014 52.81841756986705 -5.478427239770913 -7.882583474838611e-015 52.56229935045698 -5.077272844050877 -1.165734175856414e-014 52.17514449598852 -2.765734788035654 -2.55351295663786e-015 51.70909235009909 -4.414837672707802 -5.88418203051333e-015 51.21942791026021 -3.129887901726222 -5.995204332975845e-015 50.94643229354722 -4.170328210052746 -3.996802888650564e-015 50.53043514849094 -3.285954942199084 -5.440092820663267e-015 49.83710782435282</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"86\" source=\"#ID9097\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9095\">\r\n\t\t\t\t\t<float_array count=\"258\" id=\"ID9098\">5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 5.551115123125778e-017 -1 -3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016 -5.551115123125778e-017 1 3.388754056621737e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"86\" source=\"#ID9098\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9096\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9094\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9095\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"82\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9096\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 8 6 9 8 9 10 8 10 11 11 10 12 11 12 13 13 12 14 14 12 15 15 12 16 15 16 17 15 17 18 18 17 19 18 19 20 18 20 21 21 22 23 22 21 20 22 20 24 22 24 25 25 24 26 26 24 27 26 27 28 26 28 29 26 29 30 30 29 31 30 31 32 30 32 33 30 33 34 30 34 35 35 34 36 35 36 37 35 37 38 38 37 39 38 39 40 40 39 41 40 41 42 43 44 45 44 46 45 45 46 47 46 48 47 47 48 49 48 50 49 50 51 49 49 51 52 51 53 52 53 54 52 54 55 52 55 56 52 52 56 57 56 58 57 58 59 57 59 60 57 57 60 61 61 60 62 60 63 62 63 64 62 65 62 64 64 63 66 63 67 66 67 68 66 66 68 69 68 70 69 70 71 69 69 71 72 72 71 73 73 71 74 71 75 74 74 75 76 75 77 76 77 78 76 76 78 79 79 78 80 78 81 80 80 81 82 81 83 82 82 83 84 85 84 83</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9099\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9100\">\r\n\t\t\t\t\t<float_array count=\"600\" id=\"ID9103\">-2.27312298641644 -7.66053886991358e-015 32.60353258884928 -3.404518617615993 -6.106226635438361e-015 32.72918911255565 -2.951960365136102 -6.550315845288424e-015 31.74906912833465 -2.273122986416438 -1.076916333886402e-014 33.91035848390394 -3.630731087263714 -3.663735981263017e-015 35.09066835689885 -2.27312298641644 -5.662137425588298e-015 35.19243745118157 -2.556128795161981 -5.662137425588298e-015 35.17400688375054 -2.556128795161981 -5.662137425588298e-015 35.17400688375054 -2.27312298641644 -5.662137425588298e-015 35.19243745118157 -3.630731087263714 -3.663735981263017e-015 35.09066835689885 -2.273122986416438 -1.076916333886402e-014 33.91035848390394 -3.404518617615993 -6.106226635438361e-015 32.72918911255565 -2.27312298641644 -7.66053886991358e-015 32.60353258884928 -2.951960365136102 -6.550315845288424e-015 31.74906912833465 0.296019702668187 -3.33066907387547e-016 2.101958162420555 -0.746671665829223 3.33066907387547e-016 2.111532335391703 -0.4437238269165711 -4.440892098500626e-016 1.796544522630728 1.132250167872916 3.33066907387547e-016 2.198405365063207 -1.62521218222074 -7.771561172376096e-016 2.147376119735906 -2.500842494407398 -4.440892098500626e-016 2.183101169963732 3.835318533085665 -2.331468351712829e-015 32.18220562086994 1.875995448310373 -2.220446049250313e-015 32.51056654642603 1.471315286389063 -6.772360450213455e-015 32.41618191995472 3.666718058653462 -5.440092820663267e-015 34.04172762305409 2.172761314646067 -7.771561172376096e-015 32.82068853422263 2.395335714397931 -7.216449660063518e-015 33.9802725355479 -2.951960365136102 -6.550315845288424e-015 31.74906912833465 3.967090471875711 -6.328271240363392e-015 30.68509656598137 -2.27312298641644 -7.66053886991358e-015 32.60353258884928 0.9452304545010062 -4.107825191113079e-015 32.47011588499917 0.4865925233966388 -4.107825191113079e-015 32.68585249575091 -2.273122986416438 -1.076916333886402e-014 33.91035848390394 0.3516987218295906 -5.218048215738236e-015 33.04990844859196 0.5482496872307978 -3.774758283725532e-015 34.83893589467816 -2.27312298641644 -5.662137425588298e-015 35.19243745118157 -1.584415583796996 -3.885780586188048e-015 35.23728906846987 -0.1532886649866638 -4.440892098500626e-016 35.3304902691675 3.480027681920072 -5.551115123125783e-016 1.626686721366476 3.303234803258059 1.110223024625157e-016 1.266087910390366 3.271072284254709 -5.551115123125783e-016 1.033008546722198 3.062014978648317 -7.771561172376096e-016 1.732246637726866 3.24504274764133 -3.33066907387547e-016 5.463085561595561 2.161458232657062 -3.33066907387547e-016 2.101958162420555 -2.94759323703184 -9.992007221626409e-016 2.82614381775626 -2.57232221553786 -1.110223024625157e-016 3.451325066295238 -3.127945436948864 3.33066907387547e-016 3.576674605411324 -3.21134714439282 -1.443289932012704e-015 4.271390490654437 -2.877740314617676 -2.109423746787797e-015 5.271781215290003 -2.599732966098507 -2.220446049250313e-016 6.605636015186187 3.811525514429017 -1.221245327087672e-015 8.014488126231816 -3.100144453541041 -9.992007221626409e-016 8.578629729735791 3.719442990306543 -5.551115123125783e-016 10.2787524227851 -3.600555940983917 -3.219646771412954e-015 10.07921619197567 -3.822961322687124 -3.774758283725532e-015 11.21855009365982 2.342593383828081 -2.886579864025407e-015 16.89848766960994 -4.119025364314434 -3.33066907387547e-016 13.94105831514135 -4.227220182267524 -3.33066907387547e-015 14.84268767648534 -4.311813715508738 -7.771561172376096e-016 15.54763838293371 -4.174199469029653 -3.774758283725532e-015 16.15287989400286 -4.587042208466886 -2.331468351712829e-015 16.97820909081092 1.979187180778449 -4.551914400963142e-015 19.71622116407038 -4.631138676176671 -1.554312234475219e-015 17.97723061279635 -4.75217905568561 -5.440092820663267e-015 18.43628982118855 -5.016067183261533 -2.55351295663786e-015 19.43711512792123 -6.203385418457088 -2.664535259100376e-015 22.60430141583801 1.962330116006545 -1.332267629550188e-015 21.06301885461374 2.079104188557814 -5.218048215738236e-015 22.12699141696703 3.584229794338944 -4.662936703425658e-015 27.47773732885889 -7.157561897534069 -2.109423746787797e-015 24.89723462048425 -8.152424500652639 -4.551914400963142e-015 27.98862648812001 -8.455207906624679 -1.110223024625157e-016 29.84778521269618 -8.509669001613396 -8.326672684688674e-015 32.54400084611711 -3.404518617615993 -6.106226635438361e-015 32.72918911255565 -8.504288779389206 -8.992806499463768e-015 33.20897697059254 -7.564072674053729 -1.665334536937735e-015 33.56934889254027 -3.630731087263714 -3.663735981263017e-015 35.09066835689885 -6.662794311059991 -1.887379141862766e-015 34.82548080481026 -6.343242882417283 -3.33066907387547e-016 34.88030519395248 -3.162032400422882 -9.992007221626409e-016 1.986615270144297 1.132250167872916 3.33066907387547e-016 2.198405365063207 -2.500842494407398 -4.440892098500626e-016 2.183101169963732 -2.94759323703184 -9.992007221626409e-016 2.82614381775626 -3.162032400422882 -9.992007221626409e-016 1.986615270144297 -6.343242882417283 -3.33066907387547e-016 34.88030519395248 -3.630731087263714 -3.663735981263017e-015 35.09066835689885 -6.662794311059991 -1.887379141862766e-015 34.82548080481026 -7.564072674053729 -1.665334536937735e-015 33.56934889254027 -3.404518617615993 -6.106226635438361e-015 32.72918911255565 -8.504288779389206 -8.992806499463768e-015 33.20897697059254 -8.509669001613396 -8.326672684688674e-015 32.54400084611711 -2.951960365136102 -6.550315845288424e-015 31.74906912833465 3.967090471875711 -6.328271240363392e-015 30.68509656598137 -8.455207906624679 -1.110223024625157e-016 29.84778521269618 -8.152424500652639 -4.551914400963142e-015 27.98862648812001 3.584229794338944 -4.662936703425658e-015 27.47773732885889 -7.157561897534069 -2.109423746787797e-015 24.89723462048425 -6.203385418457088 -2.664535259100376e-015 22.60430141583801 2.079104188557814 -5.218048215738236e-015 22.12699141696703 1.962330116006545 -1.332267629550188e-015 21.06301885461374 1.979187180778449 -4.551914400963142e-015 19.71622116407038 -5.016067183261533 -2.55351295663786e-015 19.43711512792123 -4.75217905568561 -5.440092820663267e-015 18.43628982118855 -4.631138676176671 -1.554312234475219e-015 17.97723061279635 -4.587042208466886 -2.331468351712829e-015 16.97820909081092 2.342593383828081 -2.886579864025407e-015 16.89848766960994 -4.174199469029653 -3.774758283725532e-015 16.15287989400286 -4.311813715508738 -7.771561172376096e-016 15.54763838293371 -4.227220182267524 -3.33066907387547e-015 14.84268767648534 -4.119025364314434 -3.33066907387547e-016 13.94105831514135 -3.822961322687124 -3.774758283725532e-015 11.21855009365982 3.719442990306543 -5.551115123125783e-016 10.2787524227851 -3.600555940983917 -3.219646771412954e-015 10.07921619197567 -3.100144453541041 -9.992007221626409e-016 8.578629729735791 3.811525514429017 -1.221245327087672e-015 8.014488126231816 -2.599732966098507 -2.220446049250313e-016 6.605636015186187 3.24504274764133 -3.33066907387547e-016 5.463085561595561 -2.877740314617676 -2.109423746787797e-015 5.271781215290003 -3.21134714439282 -1.443289932012704e-015 4.271390490654437 -3.127945436948864 3.33066907387547e-016 3.576674605411324 -2.57232221553786 -1.110223024625157e-016 3.451325066295238 2.161458232657062 -3.33066907387547e-016 2.101958162420555 3.062014978648317 -7.771561172376096e-016 1.732246637726866 3.480027681920072 -5.551115123125783e-016 1.626686721366476 3.303234803258059 1.110223024625157e-016 1.266087910390366 3.271072284254709 -5.551115123125783e-016 1.033008546722198 -0.1532886649866638 -4.440892098500626e-016 35.3304902691675 0.5482496872307978 -3.774758283725532e-015 34.83893589467816 -1.584415583796996 -3.885780586188048e-015 35.23728906846987 -2.27312298641644 -5.662137425588298e-015 35.19243745118157 -2.273122986416438 -1.076916333886402e-014 33.91035848390394 0.3516987218295906 -5.218048215738236e-015 33.04990844859196 0.4865925233966388 -4.107825191113079e-015 32.68585249575091 -2.27312298641644 -7.66053886991358e-015 32.60353258884928 0.9452304545010062 -4.107825191113079e-015 32.47011588499917 1.471315286389063 -6.772360450213455e-015 32.41618191995472 3.835318533085665 -2.331468351712829e-015 32.18220562086994 2.395335714397931 -7.216449660063518e-015 33.9802725355479 3.666718058653462 -5.440092820663267e-015 34.04172762305409 2.172761314646067 -7.771561172376096e-015 32.82068853422263 1.875995448310373 -2.220446049250313e-015 32.51056654642603 -1.62521218222074 -7.771561172376096e-016 2.147376119735906 -0.746671665829223 3.33066907387547e-016 2.111532335391703 0.296019702668187 -3.33066907387547e-016 2.101958162420555 -0.4437238269165711 -4.440892098500626e-016 1.796544522630728 -7.564072674053729 -1.665334536937735e-015 33.56934889254027 -8.493751478346354 -7.438494264988549e-015 34.51134949684397 -8.504288779389206 -8.992806499463768e-015 33.20897697059254 -6.662794311059991 -1.887379141862766e-015 34.82548080481026 -6.662794311059991 -1.887379141862766e-015 34.82548080481026 -7.564072674053729 -1.665334536937735e-015 33.56934889254027 -8.493751478346354 -7.438494264988549e-015 34.51134949684397 -8.504288779389206 -8.992806499463768e-015 33.20897697059254 2.557989487640595 1.110223024625157e-016 22.5222029281398 1.962330116006545 -1.332267629550188e-015 21.06301885461374 1.979187180778449 -4.551914400963142e-015 19.71622116407038 2.079104188557814 -5.218048215738236e-015 22.12699141696703 3.584229794338944 -4.662936703425658e-015 27.47773732885889 3.525569346514639 -3.441691376337985e-015 25.69018707576185 4.110212718285975 -7.438494264988549e-015 28.05697596915671 3.967090471875711 -6.328271240363392e-015 30.68509656598137 4.391781873619813 -5.218048215738236e-015 29.30253929882581 4.530118175144231 -7.327471962526033e-015 31.56104069150585 3.835318533085665 -2.331468351712829e-015 32.18220562086994 4.163608751013708 -1.110223024625157e-016 34.35259568097971 3.666718058653462 -5.440092820663267e-015 34.04172762305409 3.531957501650779 -7.549516567451065e-015 35.46569795754254 4.014058226253933 -4.440892098500626e-016 35.51739616861887 4.014058226253933 -4.440892098500626e-016 35.51739616861887 4.163608751013708 -1.110223024625157e-016 34.35259568097971 3.531957501650779 -7.549516567451065e-015 35.46569795754254 3.666718058653462 -5.440092820663267e-015 34.04172762305409 3.835318533085665 -2.331468351712829e-015 32.18220562086994 4.530118175144231 -7.327471962526033e-015 31.56104069150585 3.967090471875711 -6.328271240363392e-015 30.68509656598137 4.391781873619813 -5.218048215738236e-015 29.30253929882581 4.110212718285975 -7.438494264988549e-015 28.05697596915671 3.584229794338944 -4.662936703425658e-015 27.47773732885889 3.525569346514639 -3.441691376337985e-015 25.69018707576185 2.557989487640595 1.110223024625157e-016 22.5222029281398 2.079104188557814 -5.218048215738236e-015 22.12699141696703 1.962330116006545 -1.332267629550188e-015 21.06301885461374 1.979187180778449 -4.551914400963142e-015 19.71622116407038 3.666718058653462 -5.440092820663267e-015 34.04172762305409 2.617910114149805 -9.214851104388799e-015 35.13985653687318 2.395335714397931 -7.216449660063518e-015 33.9802725355479 3.531957501650779 -7.549516567451065e-015 35.46569795754254 2.523484950164839 -7.438494264988549e-015 35.38256050543399 3.027721225907802 -7.438494264988549e-015 35.42412923148827 3.027721225907802 -7.438494264988549e-015 35.42412923148827 3.531957501650779 -7.549516567451065e-015 35.46569795754254 2.523484950164839 -7.438494264988549e-015 35.38256050543399 2.617910114149805 -9.214851104388799e-015 35.13985653687318 3.666718058653462 -5.440092820663267e-015 34.04172762305409 2.395335714397931 -7.216449660063518e-015 33.9802725355479 0.6076989262186086 -5.773159728050814e-015 35.38004908626758 -0.1532886649866638 -4.440892098500626e-016 35.3304902691675 0.5482496872307978 -3.774758283725532e-015 34.83893589467816 0.5482496872307978 -3.774758283725532e-015 34.83893589467816 -0.1532886649866638 -4.440892098500626e-016 35.3304902691675 0.6076989262186086 -5.773159728050814e-015 35.38004908626758</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"200\" source=\"#ID9103\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9101\">\r\n\t\t\t\t\t<float_array count=\"600\" id=\"ID9104\">-2.470246229790971e-015 -1 5.931201320652756e-016 -2.470246229790971e-015 -1 5.931201320652756e-016 -2.470246229790971e-015 -1 5.931201320652756e-016 -2.470246229790971e-015 -1 5.931201320652756e-016 -2.470246229790971e-015 -1 5.931201320652756e-016 -2.470246229790971e-015 -1 5.931201320652756e-016 -2.470246229790971e-015 -1 5.931201320652756e-016 2.470246229790971e-015 1 -5.931201320652756e-016 2.470246229790971e-015 1 -5.931201320652756e-016 2.470246229790971e-015 1 -5.931201320652756e-016 2.470246229790971e-015 1 -5.931201320652756e-016 2.470246229790971e-015 1 -5.931201320652756e-016 2.470246229790971e-015 1 -5.931201320652756e-016 2.470246229790971e-015 1 -5.931201320652756e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 -2.775557561562889e-017 -1 -1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 2.775557561562889e-017 1 1.41945095718776e-016 3.941291737419303e-015 -1 -7.115831949989751e-016 3.941291737419303e-015 -1 -7.115831949989751e-016 3.941291737419303e-015 -1 -7.115831949989751e-016 3.941291737419303e-015 -1 -7.115831949989751e-016 -3.941291737419303e-015 1 7.115831949989751e-016 -3.941291737419303e-015 1 7.115831949989751e-016 -3.941291737419303e-015 1 7.115831949989751e-016 -3.941291737419303e-015 1 7.115831949989751e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 -1.415534356397074e-015 -1 1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.415534356397074e-015 1 -1.220482908086697e-016 1.2490009027033e-015 -1 -1.022289357106531e-015 1.2490009027033e-015 -1 -1.022289357106531e-015 1.2490009027033e-015 -1 -1.022289357106531e-015 1.2490009027033e-015 -1 -1.022289357106531e-015 1.2490009027033e-015 -1 -1.022289357106531e-015 1.2490009027033e-015 -1 -1.022289357106531e-015 -1.2490009027033e-015 1 1.022289357106531e-015 -1.2490009027033e-015 1 1.022289357106531e-015 -1.2490009027033e-015 1 1.022289357106531e-015 -1.2490009027033e-015 1 1.022289357106531e-015 -1.2490009027033e-015 1 1.022289357106531e-015 -1.2490009027033e-015 1 1.022289357106531e-015 -6.827871601444706e-015 -1 -2.773985463716996e-015 -6.827871601444706e-015 -1 -2.773985463716996e-015 -6.827871601444706e-015 -1 -2.773985463716996e-015 6.827871601444706e-015 1 2.773985463716996e-015 6.827871601444706e-015 1 2.773985463716996e-015 6.827871601444706e-015 1 2.773985463716996e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"200\" source=\"#ID9104\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9102\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9100\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9101\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"176\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9102\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 7 8 9 8 10 9 9 10 11 10 12 11 13 11 12 14 15 16 15 14 17 15 17 18 18 17 19 20 21 22 21 20 23 21 23 24 24 23 25 20 26 27 26 20 28 28 20 22 28 22 29 28 29 30 28 30 31 31 30 32 31 32 33 31 33 34 34 33 35 35 33 36 37 38 39 38 37 40 40 37 41 40 41 42 42 41 17 17 41 43 43 41 44 44 41 45 45 41 46 46 41 47 47 41 48 48 41 49 48 49 50 50 49 51 50 51 52 52 51 53 53 51 54 53 54 55 55 54 56 56 54 57 57 54 58 58 54 59 59 54 60 59 60 61 61 60 62 62 60 63 63 60 64 64 60 65 64 65 66 64 66 67 64 67 68 68 67 69 69 67 27 69 27 70 70 27 71 71 27 26 71 26 72 71 72 73 73 72 74 74 72 75 74 75 76 76 75 77 19 43 78 43 19 17 79 80 81 82 81 80 83 84 85 85 84 86 84 87 86 86 87 88 88 87 89 87 90 89 90 91 89 89 91 92 92 91 93 91 94 93 93 94 95 95 94 96 94 97 96 97 98 96 98 99 96 96 99 100 100 99 101 101 99 102 102 99 103 99 104 103 103 104 105 105 104 106 106 104 107 107 104 108 108 104 109 104 110 109 109 110 111 111 110 112 110 113 112 112 113 114 113 115 114 114 115 116 116 115 117 117 115 118 118 115 119 119 115 81 81 115 79 79 115 120 120 115 121 115 122 121 121 122 123 124 123 122 125 126 127 127 126 128 128 126 129 126 130 129 130 131 129 129 131 132 131 133 132 133 134 132 134 135 132 132 135 90 91 90 135 136 137 138 138 137 139 137 135 139 134 139 135 80 79 140 140 79 141 79 142 141 143 141 142 144 145 146 145 144 147 148 149 150 151 150 149 152 153 154 153 152 155 155 152 156 156 152 157 156 157 158 156 158 159 159 158 160 159 160 161 159 161 162 162 161 163 162 163 164 164 163 165 165 163 166 167 168 169 169 168 170 170 168 171 168 172 171 171 172 173 172 174 173 174 175 173 173 175 176 175 177 176 177 178 176 176 178 179 179 178 180 181 180 178 182 183 184 183 182 185 183 185 186 186 185 187 188 189 190 190 189 191 189 192 191 193 191 192 194 195 196 197 198 199</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9105\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9106\">\r\n\t\t\t\t\t<float_array count=\"498\" id=\"ID9109\">-0.9102832362615603 -8.770761894538737e-015 55.92105903417528 -0.9102832362615603 -4.996003610813204e-015 54.84640130647451 -0.8058640086804916 -8.659739592076221e-015 55.2263237408533 0.7649453646911066 -8.548717289613705e-015 54.29557112524079 0.9957034692144813 -2.997602166487923e-015 53.7733918383344 1.17703260608264 -6.661338147750939e-015 53.70943496144515 0.3099450499673511 -4.996003610813204e-015 54.28954326889727 -0.1677036832462866 -6.883382752675971e-015 54.63057387632088 0.5434422410992053 -1.398881011027697e-014 54.66569396425102 -0.4065274284635363 -1.043609643147647e-014 54.73288230797428 -6.890568063318276 -4.996003610813204e-015 53.58145441435133 -7.601198234060143 -6.772360450213455e-015 54.65453443640709 -7.687109780684145 -1.920685832601521e-014 53.13777218842142 -6.164771008288779 -4.996003610813204e-015 54.12556846327766 -5.647206674489572 1.110223024625157e-016 54.88608863458028 -7.462893002030151 -1.054711873393899e-014 54.89963048293647 -5.26064002768491 -1.076916333886402e-014 55.60394995701238 -7.48597943435182 -9.103828801926284e-015 55.17993135546927 -7.604192090521019 -3.663735981263017e-015 56.61519472604864 -4.925818582403989 -5.440092820663267e-015 55.83718605040296 -5.007008561533456 3.441691376337985e-015 56.62660194317081 -7.693104283455837 -9.547918011776346e-015 58.19713961044664 -5.28690244974032 -1.110223024625157e-014 57.75735078435714 -5.667133405287955 -1.110223024625157e-014 58.32814246969446 -5.520147356579078 -1.676436767183986e-014 58.3402116927056 3.286800283607227 3.33066907387547e-016 54.19940538768703 1.585365185688808 -8.548717289613705e-015 54.18215345417254 2.441229085666785 -3.108624468950438e-015 54.07056643204236 1.055100885441425 -1.210143096841421e-014 54.35883171747047 2.484496463286164 -3.219646771412954e-015 54.88826679908156 1.692479131104147 -1.254552017826427e-014 56.03979677071013 -0.8896804332693735 -7.438494264988549e-015 56.41383422617653 1.229610777669769 -7.327471962526033e-015 57.1399192079322 -0.8690776302771868 -5.551115123125783e-015 56.90660941817779 -0.524861189623298 -7.438494264988549e-015 57.41806225819056 0.7961714491393419 -4.440892098500626e-015 59.22213638843868 -0.1620378502847508 -1.665334536937735e-014 58.37587294418008 -0.02249108126662858 -1.154631945610163e-014 59.53826446594529 0.3973261382280677 -4.662936703425658e-015 60.80648686112963 -0.09297533580289308 -6.439293542825908e-015 60.11105042525892 -0.2176820716125887 -8.326672684688674e-015 60.44345769293274 -0.3631730562604227 -1.110223024625157e-015 60.7161358170253 -0.5890843196889755 -1.187938636348918e-014 61.05337302562431 0.0689066712040729 -1.387778780781446e-014 61.78950856277366 -0.6038522716709522 -1.376676550535194e-014 61.2452796760911 -0.6547476234772525 -1.043609643147647e-014 61.81448835003815 -0.4755340178557255 -1.06581410364015e-014 62.90180605388014 -0.7579843040450855 -1.199040866595169e-014 62.06413292413408 -1.131043177552361 -6.994405055138486e-015 62.89586826636511 -1.783062611660419 -8.992806499463768e-015 63.73811464087537 -1.030006425201838 -1.432187701766452e-014 63.74107565361042 -2.485236908861928 -1.443289932012704e-014 64.1391843787647 -1.753969137294141 6.883382752675971e-015 64.48397911264343 -3.127225867463529 -9.214851104388799e-015 64.32969271066989 -5.536837888862164 -2.164934898019055e-014 64.47819219041607 -4.813783648780285 -1.809663530139005e-014 64.81700110007148 -2.570563682166289 -3.885780586188048e-015 64.90721629035947 -4.09285704766138 -1.088018564132653e-014 64.97775594507434 -3.215775168705734 -1.287858708565182e-014 65.04829559978938 -5.838878249317102 -6.661338147750939e-016 58.38632879144804 -7.622843729277895 -9.658940314238862e-015 59.07886315246269 -5.883940064137078 -5.551115123125783e-016 59.29843969760036 -7.403263185986725 -2.886579864025407e-015 60.90058777079133 -5.751716996291218 -1.187938636348918e-014 60.55401492812428 -5.407938014115676 -5.10702591327572e-015 62.06070505463848 -7.051936802280948 -1.409983241273949e-014 62.21749762176356 -4.812934830198993 -2.153832667772804e-014 63.25019753630818 -6.305365440651293 -1.243449787580175e-014 63.66609785737395 -4.336932780177587 -1.432187701766452e-014 63.79207787828912 -3.742303672970942 -1.454392162258955e-014 64.21006104101259 -3.548530694340244 -2.109423746787797e-015 64.31966579834351 -3.127225867463529 -9.214851104388799e-015 64.32969271066989 -3.548530694340244 -2.109423746787797e-015 64.31966579834351 -5.536837888862164 -2.164934898019055e-014 64.47819219041607 -3.742303672970942 -1.454392162258955e-014 64.21006104101259 -4.336932780177587 -1.432187701766452e-014 63.79207787828912 -6.305365440651293 -1.243449787580175e-014 63.66609785737395 -4.812934830198993 -2.153832667772804e-014 63.25019753630818 -7.051936802280948 -1.409983241273949e-014 62.21749762176356 -5.407938014115676 -5.10702591327572e-015 62.06070505463848 -7.403263185986725 -2.886579864025407e-015 60.90058777079133 -5.751716996291218 -1.187938636348918e-014 60.55401492812428 -5.883940064137078 -5.551115123125783e-016 59.29843969760036 -7.622843729277895 -9.658940314238862e-015 59.07886315246269 -5.838878249317102 -6.661338147750939e-016 58.38632879144804 -5.667133405287955 -1.110223024625157e-014 58.32814246969446 -7.693104283455837 -9.547918011776346e-015 58.19713961044664 -3.215775168705734 -1.287858708565182e-014 65.04829559978938 -2.570563682166289 -3.885780586188048e-015 64.90721629035947 -4.09285704766138 -1.088018564132653e-014 64.97775594507434 -4.813783648780285 -1.809663530139005e-014 64.81700110007148 -1.753969137294141 6.883382752675971e-015 64.48397911264343 -2.485236908861928 -1.443289932012704e-014 64.1391843787647 -1.030006425201838 -1.432187701766452e-014 63.74107565361042 -1.783062611660419 -8.992806499463768e-015 63.73811464087537 -0.4755340178557255 -1.06581410364015e-014 62.90180605388014 -1.131043177552361 -6.994405055138486e-015 62.89586826636511 -0.7579843040450855 -1.199040866595169e-014 62.06413292413408 -0.6547476234772525 -1.043609643147647e-014 61.81448835003815 0.0689066712040729 -1.387778780781446e-014 61.78950856277366 -0.6038522716709522 -1.376676550535194e-014 61.2452796760911 -0.5890843196889755 -1.187938636348918e-014 61.05337302562431 0.3973261382280677 -4.662936703425658e-015 60.80648686112963 -0.3631730562604227 -1.110223024625157e-015 60.7161358170253 -0.2176820716125887 -8.326672684688674e-015 60.44345769293274 -0.09297533580289308 -6.439293542825908e-015 60.11105042525892 -0.02249108126662858 -1.154631945610163e-014 59.53826446594529 0.7961714491393419 -4.440892098500626e-015 59.22213638843868 -0.1620378502847508 -1.665334536937735e-014 58.37587294418008 -0.524861189623298 -7.438494264988549e-015 57.41806225819056 1.229610777669769 -7.327471962526033e-015 57.1399192079322 -0.8690776302771868 -5.551115123125783e-015 56.90660941817779 -0.8896804332693735 -7.438494264988549e-015 56.41383422617653 1.692479131104147 -1.254552017826427e-014 56.03979677071013 -0.9102832362615603 -8.770761894538737e-015 55.92105903417528 -0.8058640086804916 -8.659739592076221e-015 55.2263237408533 2.484496463286164 -3.219646771412954e-015 54.88826679908156 -0.4065274284635363 -1.043609643147647e-014 54.73288230797428 0.5434422410992053 -1.398881011027697e-014 54.66569396425102 1.055100885441425 -1.210143096841421e-014 54.35883171747047 3.286800283607227 3.33066907387547e-016 54.19940538768703 1.585365185688808 -8.548717289613705e-015 54.18215345417254 2.441229085666785 -3.108624468950438e-015 54.07056643204236 -5.520147356579078 -1.676436767183986e-014 58.3402116927056 -5.28690244974032 -1.110223024625157e-014 57.75735078435714 -5.007008561533456 3.441691376337985e-015 56.62660194317081 -7.604192090521019 -3.663735981263017e-015 56.61519472604864 -4.925818582403989 -5.440092820663267e-015 55.83718605040296 -5.26064002768491 -1.076916333886402e-014 55.60394995701238 -7.48597943435182 -9.103828801926284e-015 55.17993135546927 -7.462893002030151 -1.054711873393899e-014 54.89963048293647 -5.647206674489572 1.110223024625157e-016 54.88608863458028 -7.601198234060143 -6.772360450213455e-015 54.65453443640709 -6.164771008288779 -4.996003610813204e-015 54.12556846327766 -6.890568063318276 -4.996003610813204e-015 53.58145441435133 -7.687109780684145 -1.920685832601521e-014 53.13777218842142 -0.1677036832462866 -6.883382752675971e-015 54.63057387632088 0.7649453646911066 -8.548717289613705e-015 54.29557112524079 0.3099450499673511 -4.996003610813204e-015 54.28954326889727 0.9957034692144813 -2.997602166487923e-015 53.7733918383344 1.17703260608264 -6.661338147750939e-015 53.70943496144515 -0.9102832362615603 -4.996003610813204e-015 54.84640130647451 3.286800283607227 3.33066907387547e-016 54.19940538768703 2.441229085666785 -3.108624468950438e-015 54.07056643204236 3.762236868834161 -1.032507412901396e-014 53.97757787241201 3.808751629987316 -8.326672684688674e-015 53.41964651462919 2.732305506225186 -1.010302952408893e-014 53.43696675033837 3.172803600243343 -8.326672684688674e-015 53.41044203925767 1.788380717453357 -1.221245327087672e-015 53.49380543510018 1.17703260608264 -6.661338147750939e-015 53.70943496144515 1.585365185688808 -8.548717289613705e-015 54.18215345417254 0.7649453646911066 -8.548717289613705e-015 54.29557112524079 1.055100885441425 -1.210143096841421e-014 54.35883171747047 0.5434422410992053 -1.398881011027697e-014 54.66569396425102 0.5434422410992053 -1.398881011027697e-014 54.66569396425102 1.055100885441425 -1.210143096841421e-014 54.35883171747047 0.7649453646911066 -8.548717289613705e-015 54.29557112524079 1.585365185688808 -8.548717289613705e-015 54.18215345417254 1.17703260608264 -6.661338147750939e-015 53.70943496144515 2.441229085666785 -3.108624468950438e-015 54.07056643204236 3.762236868834161 -1.032507412901396e-014 53.97757787241201 1.788380717453357 -1.221245327087672e-015 53.49380543510018 2.732305506225186 -1.010302952408893e-014 53.43696675033837 3.808751629987316 -8.326672684688674e-015 53.41964651462919 3.172803600243343 -8.326672684688674e-015 53.41044203925767 3.286800283607227 3.33066907387547e-016 54.19940538768703</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"166\" source=\"#ID9109\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9107\">\r\n\t\t\t\t\t<float_array count=\"498\" id=\"ID9110\">1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 1.665334536937733e-016 -1 -3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 -1.665334536937733e-016 1 3.767071972698228e-016 7.771561172376089e-016 -1 -1.556216805493246e-015 7.771561172376089e-016 -1 -1.556216805493246e-015 7.771561172376089e-016 -1 -1.556216805493246e-015 7.771561172376089e-016 -1 -1.556216805493246e-015 7.771561172376089e-016 -1 -1.556216805493246e-015 7.771561172376089e-016 -1 -1.556216805493246e-015 7.771561172376089e-016 -1 -1.556216805493246e-015 7.771561172376089e-016 -1 -1.556216805493246e-015 7.771561172376089e-016 -1 -1.556216805493246e-015 7.771561172376089e-016 -1 -1.556216805493246e-015 7.771561172376089e-016 -1 -1.556216805493246e-015 7.771561172376089e-016 -1 -1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015 -7.771561172376089e-016 1 1.556216805493246e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"166\" source=\"#ID9110\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9108\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9106\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9107\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"158\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9108\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 4 3 6 6 3 7 7 3 8 7 8 9 10 11 12 11 10 13 11 13 14 11 14 15 15 14 16 15 16 17 17 16 18 18 16 19 18 19 20 18 20 21 21 20 22 21 22 23 23 22 24 25 26 27 26 25 28 28 25 29 28 29 8 8 29 9 9 29 2 2 29 30 2 30 0 0 30 31 31 30 32 31 32 33 33 32 34 34 32 35 34 35 36 36 35 37 37 35 38 37 38 39 39 38 40 40 38 41 41 38 42 42 38 43 42 43 44 44 43 45 45 43 46 45 46 47 47 46 48 48 46 49 49 46 50 49 50 51 51 50 52 51 52 53 53 52 54 54 52 55 55 52 56 55 56 57 57 56 58 21 59 60 59 21 23 60 59 61 60 61 62 62 61 63 62 63 64 62 64 65 65 64 66 65 66 67 67 66 68 67 68 54 54 68 69 54 69 70 54 70 53 71 72 73 72 74 73 74 75 73 73 75 76 75 77 76 76 77 78 77 79 78 78 79 80 79 81 80 81 82 80 80 82 83 82 84 83 85 86 84 83 84 86 87 88 89 89 88 90 88 91 90 90 91 73 73 91 71 71 91 92 91 93 92 92 93 94 93 95 94 94 95 96 96 95 97 97 95 98 95 99 98 98 99 100 100 99 101 99 102 101 101 102 103 103 102 104 104 102 105 105 102 106 102 107 106 106 107 108 108 107 109 107 110 109 109 110 111 111 110 112 110 113 112 112 113 114 114 113 115 113 116 115 115 116 117 117 116 118 118 116 119 116 120 119 119 120 121 122 121 120 123 124 85 85 124 86 124 125 86 86 125 126 125 127 126 127 128 126 126 128 129 129 128 130 128 131 130 130 131 132 131 133 132 133 134 132 135 132 134 117 118 136 118 137 136 136 137 138 138 137 139 140 139 137 115 141 114 142 143 144 145 146 147 146 145 144 146 144 148 148 144 149 149 144 143 149 143 150 149 150 151 151 150 152 151 152 153 154 155 156 155 157 156 156 157 158 157 159 158 159 160 158 158 160 161 161 160 162 160 163 162 164 162 163 160 159 165</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9111\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9114\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID9117\">-4.414837672707802 -5.88418203051333e-015 51.21942791026021 -4.725230619198572 -7.882583474838611e-015 51.43176142044381 -4.170328210052746 -3.996802888650564e-015 50.53043514849094 -5.077272844050877 -1.165734175856414e-014 52.17514449598852 -5.280131785564577 -7.882583474838611e-015 52.05575676274162 -5.783011433626389 -1.509903313490213e-014 52.17708923210922 -5.478427239770913 -7.882583474838611e-015 52.56229935045698 -7.308989641133315 -9.880984919163893e-015 51.9170912979142 -6.684725207581676 -6.328271240363392e-015 51.86509156096029 -7.742506022009507 -1.187938636348918e-014 52.15975548607557 -7.687109780684145 -1.920685832601521e-014 53.13777218842142 -5.602922703019904 -1.199040866595169e-014 53.41957070669844 -6.890568063318276 -4.996003610813204e-015 53.58145441435133 -6.164771008288779 -4.996003610813204e-015 54.12556846327766 -5.240253468372567 -1.054711873393899e-014 54.93630650987809 -5.647206674489572 1.110223024625157e-016 54.88608863458028 -5.26064002768491 -1.076916333886402e-014 55.60394995701238 -4.878723862771975 -1.043609643147647e-014 55.37928077019991 -4.925818582403989 -5.440092820663267e-015 55.83718605040296 -4.925818582403989 -5.440092820663267e-015 55.83718605040296 -4.878723862771975 -1.043609643147647e-014 55.37928077019991 -5.26064002768491 -1.076916333886402e-014 55.60394995701238 -5.240253468372567 -1.054711873393899e-014 54.93630650987809 -5.647206674489572 1.110223024625157e-016 54.88608863458028 -6.164771008288779 -4.996003610813204e-015 54.12556846327766 -5.602922703019904 -1.199040866595169e-014 53.41957070669844 -6.890568063318276 -4.996003610813204e-015 53.58145441435133 -7.687109780684145 -1.920685832601521e-014 53.13777218842142 -5.478427239770913 -7.882583474838611e-015 52.56229935045698 -5.783011433626389 -1.509903313490213e-014 52.17708923210922 -7.742506022009507 -1.187938636348918e-014 52.15975548607557 -7.308989641133315 -9.880984919163893e-015 51.9170912979142 -6.684725207581676 -6.328271240363392e-015 51.86509156096029 -5.077272844050877 -1.165734175856414e-014 52.17514449598852 -5.280131785564577 -7.882583474838611e-015 52.05575676274162 -4.725230619198572 -7.882583474838611e-015 51.43176142044381 -4.414837672707802 -5.88418203051333e-015 51.21942791026021 -4.170328210052746 -3.996802888650564e-015 50.53043514849094</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID9117\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9115\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID9118\">1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 1.387778780781445e-015 -1 1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016 -1.387778780781445e-015 1 -1.144732902412272e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID9118\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9116\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9114\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9115\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"34\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9116\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 5 7 8 7 5 9 9 5 10 10 5 6 10 6 11 10 11 12 12 11 13 13 11 14 13 14 15 15 14 16 16 14 17 16 17 18 19 20 21 20 22 21 21 22 23 23 22 24 22 25 24 24 25 26 26 25 27 25 28 27 28 29 27 27 29 30 30 29 31 32 31 29 28 33 29 29 33 34 34 33 35 33 36 35 37 35 36</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9119\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9120\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID9123\">0.9063376616645389 -1.165734175856414e-014 52.6746662185268 -0.9971535420376325 -9.992007221626409e-016 52.64786773977112 -0.1124322958490103 -9.992007221626409e-016 52.55854047801682 -1.479728654251544 -1.165734175856414e-014 52.89798437291258 0.9957034692144813 -2.997602166487923e-015 53.7733918383344 -1.343799617137768 -2.775557561562891e-015 53.26908070584358 -0.9102832362615603 -4.996003610813204e-015 54.84640130647451 0.3099450499673511 -4.996003610813204e-015 54.28954326889727 -0.1677036832462866 -6.883382752675971e-015 54.63057387632088 -0.4065274284635363 -1.043609643147647e-014 54.73288230797428 -0.8058640086804916 -8.659739592076221e-015 55.2263237408533 -2.453601949870083 -7.438494264988549e-015 49.92377355222674 -2.912131386989075 -1.099120794378905e-014 49.54403916810249 -2.800415800238873 -7.216449660063518e-015 48.88378181544609 -3.285954942199084 -5.440092820663267e-015 49.83710782435282 -3.129887901726222 -5.995204332975845e-015 50.94643229354722 -2.288704959146485 -7.882583474838611e-015 51.61024856604637 -2.765734788035654 -2.55351295663786e-015 51.70909235009909 -2.209224221870293 -1.321165399303936e-014 52.09896653261314 -1.933381795706644 -1.521005543736465e-014 52.81841756986705 -1.80144580998742 -8.104628079763643e-015 52.71039727334328 -1.343799617137768 -2.775557561562891e-015 53.26908070584358 -1.479728654251544 -1.165734175856414e-014 52.89798437291258 -1.933381795706644 -1.521005543736465e-014 52.81841756986705 -1.80144580998742 -8.104628079763643e-015 52.71039727334328 -2.209224221870293 -1.321165399303936e-014 52.09896653261314 -2.765734788035654 -2.55351295663786e-015 51.70909235009909 -2.288704959146485 -7.882583474838611e-015 51.61024856604637 -3.129887901726222 -5.995204332975845e-015 50.94643229354722 -2.453601949870083 -7.438494264988549e-015 49.92377355222674 -3.285954942199084 -5.440092820663267e-015 49.83710782435282 -2.912131386989075 -1.099120794378905e-014 49.54403916810249 -2.800415800238873 -7.216449660063518e-015 48.88378181544609 -0.8058640086804916 -8.659739592076221e-015 55.2263237408533 -0.4065274284635363 -1.043609643147647e-014 54.73288230797428 -0.9102832362615603 -4.996003610813204e-015 54.84640130647451 -0.1677036832462866 -6.883382752675971e-015 54.63057387632088 0.3099450499673511 -4.996003610813204e-015 54.28954326889727 0.9957034692144813 -2.997602166487923e-015 53.7733918383344 0.9063376616645389 -1.165734175856414e-014 52.6746662185268 -0.9971535420376325 -9.992007221626409e-016 52.64786773977112 -0.1124322958490103 -9.992007221626409e-016 52.55854047801682</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID9123\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9121\">\r\n\t\t\t\t\t<float_array count=\"126\" id=\"ID9124\">8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 8.326672684688666e-016 -1 -3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016 -8.326672684688666e-016 1 3.184332581174397e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID9124\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9122\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9120\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9121\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"38\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9122\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 6 4 7 6 7 8 6 8 9 6 9 10 11 12 13 12 11 14 14 11 15 15 11 16 15 16 17 17 16 18 17 18 19 19 18 20 19 20 3 19 3 5 21 22 23 22 24 23 24 25 23 23 25 26 25 27 26 26 27 28 27 29 28 28 29 30 30 29 31 32 31 29 33 34 35 34 36 35 36 37 35 37 38 35 35 38 21 21 38 22 38 39 22 22 39 40 41 40 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9125\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9126\">\r\n\t\t\t\t\t<float_array count=\"486\" id=\"ID9129\">-9.70619126376975 -2.331468351712829e-015 46.34425141712962 -10.75918364775206 -1.010302952408893e-014 46.46742054002384 -10.19908144805713 -8.104628079763643e-015 46.31065949698881 -9.443777298352792 -1.010302952408893e-014 46.52362706673735 -11.22967024116364 -6.550315845288424e-015 46.85932352289847 -9.306927136076894 -8.770761894538737e-015 46.73503229251674 -9.067796424257065 -1.221245327087672e-015 47.10443983491447 -11.43363401389119 -8.548717289613705e-015 47.28956505317293 -8.698230383287612 -1.443289932012704e-015 47.37063000106498 -11.32185653739672 -2.109423746787797e-015 47.68759909625694 -8.328664342318145 -1.665334536937735e-015 47.63682016721549 -8.11670701012352 -1.232347557333924e-014 47.99536203132203 -11.21007906090227 -1.210143096841421e-014 48.08563313934099 -7.904749677928892 -1.232347557333924e-014 48.35390389542852 -11.08433087564734 -8.992806499463768e-015 49.24481971196092 -7.415618902439094 -5.329070518200751e-015 48.97320364947031 -6.43735486590085 -9.325873406851315e-015 49.69028737768338 -11.1821351578214 -9.214851104388799e-015 50.11071816081979 -6.089528150021265 -9.103828801926284e-015 49.89672062903062 -6.230833452410969 -5.88418203051333e-015 50.12488373581309 -10.36396574139608 -1.454392162258955e-014 50.12374393488486 -10.14456069963961 -7.438494264988549e-015 50.17323118177342 -6.459094812380639 -3.996802888650564e-015 50.21180315755369 -8.763448358557206 -4.107825191113079e-015 50.29872257929431 -9.840181564445661 -1.121325254871408e-014 50.57889593106052 -9.067796424257061 -1.143529715363911e-014 50.51602038307242 -9.122144426286948 -1.676436767183986e-014 51.46126796864147 -9.671081492546964 -8.104628079763643e-015 51.50854359554349 -9.252579134046997 -7.882583474838611e-015 51.6677012199887 -9.524319144196443 -2.55351295663786e-015 51.67856577241948 -6.073224122246214 -4.218847493575595e-015 50.45083119205368 -8.535186998587545 -3.885780586188048e-015 50.34218229016462 -8.345318833987477 -5.218048215738236e-015 50.52603740463913 -7.035182888229913 -1.121325254871408e-014 50.52688568607677 -5.687353432111773 -4.107825191113079e-015 50.68985922655368 -6.752573526230349 -1.809663530139005e-014 50.63553496325241 -6.198224154081031 -1.465494392505207e-014 51.00494175507655 -5.709092135811743 -2.109423746787797e-015 50.90715778090525 -5.883005493751544 1.221245327087672e-015 51.07013132138211 -8.187359039928456 -1.121325254871408e-014 50.67899467412273 -7.046052240079709 1.110223024625157e-015 50.72245363441965 -7.81515643472178 -2.331468351712829e-015 50.87711761453524 -7.328661602079621 -4.107825191113079e-015 50.87456262246563 -11.65718772409998 -5.440092820663267e-015 50.68332848591803 -10.73641095128522 -1.98729921407903e-014 50.62960393089957 -11.09856443232892 -4.107825191113079e-015 51.12148556506534 -11.9645743863322 -5.551115123125783e-016 50.86488772914396 -12.28593362149485 -9.214851104388799e-015 51.0324810499463 -12.22448810421035 -1.099120794378905e-014 51.20429484593486 -11.56499956369729 -1.298960938811433e-014 51.25500359634749 -11.9539287348404 -6.106226635438361e-015 51.32261376241735 -11.9539287348404 -6.106226635438361e-015 51.32261376241735 -11.56499956369729 -1.298960938811433e-014 51.25500359634749 -12.22448810421035 -1.099120794378905e-014 51.20429484593486 -11.09856443232892 -4.107825191113079e-015 51.12148556506534 -12.28593362149485 -9.214851104388799e-015 51.0324810499463 -11.9645743863322 -5.551115123125783e-016 50.86488772914396 -11.65718772409998 -5.440092820663267e-015 50.68332848591803 -10.73641095128522 -1.98729921407903e-014 50.62960393089957 -10.36396574139608 -1.454392162258955e-014 50.12374393488486 -11.1821351578214 -9.214851104388799e-015 50.11071816081979 -7.328661602079621 -4.107825191113079e-015 50.87456262246563 -7.046052240079709 1.110223024625157e-015 50.72245363441965 -7.81515643472178 -2.331468351712829e-015 50.87711761453524 -8.187359039928456 -1.121325254871408e-014 50.67899467412273 -7.035182888229913 -1.121325254871408e-014 50.52688568607677 -8.345318833987477 -5.218048215738236e-015 50.52603740463913 -5.883005493751544 1.221245327087672e-015 51.07013132138211 -5.709092135811743 -2.109423746787797e-015 50.90715778090525 -6.198224154081031 -1.465494392505207e-014 51.00494175507655 -5.687353432111773 -4.107825191113079e-015 50.68985922655368 -6.752573526230349 -1.809663530139005e-014 50.63553496325241 -6.073224122246214 -4.218847493575595e-015 50.45083119205368 -8.535186998587545 -3.885780586188048e-015 50.34218229016462 -8.763448358557206 -4.107825191113079e-015 50.29872257929431 -6.459094812380639 -3.996802888650564e-015 50.21180315755369 -9.524319144196443 -2.55351295663786e-015 51.67856577241948 -9.252579134046997 -7.882583474838611e-015 51.6677012199887 -9.671081492546964 -8.104628079763643e-015 51.50854359554349 -9.122144426286948 -1.676436767183986e-014 51.46126796864147 -9.840181564445661 -1.121325254871408e-014 50.57889593106052 -9.067796424257061 -1.143529715363911e-014 50.51602038307242 -10.14456069963961 -7.438494264988549e-015 50.17323118177342 -6.230833452410969 -5.88418203051333e-015 50.12488373581309 -6.089528150021265 -9.103828801926284e-015 49.89672062903062 -6.43735486590085 -9.325873406851315e-015 49.69028737768338 -11.08433087564734 -8.992806499463768e-015 49.24481971196092 -7.415618902439094 -5.329070518200751e-015 48.97320364947031 -7.904749677928892 -1.232347557333924e-014 48.35390389542852 -11.21007906090227 -1.210143096841421e-014 48.08563313934099 -8.11670701012352 -1.232347557333924e-014 47.99536203132203 -11.32185653739672 -2.109423746787797e-015 47.68759909625694 -8.328664342318145 -1.665334536937735e-015 47.63682016721549 -8.698230383287612 -1.443289932012704e-015 47.37063000106498 -11.43363401389119 -8.548717289613705e-015 47.28956505317293 -9.067796424257065 -1.221245327087672e-015 47.10443983491447 -11.22967024116364 -6.550315845288424e-015 46.85932352289847 -9.306927136076894 -8.770761894538737e-015 46.73503229251674 -9.443777298352792 -1.010302952408893e-014 46.52362706673735 -10.75918364775206 -1.010302952408893e-014 46.46742054002384 -9.70619126376975 -2.331468351712829e-015 46.34425141712962 -10.19908144805713 -8.104628079763643e-015 46.31065949698881 -12.05938854038452 -1.343369859796439e-014 46.45702884894248 -11.66655082687127 -6.550315845288424e-015 47.16164855244643 -11.56613919274438 -1.387778780781446e-014 48.2020118231443 -11.68895441774707 -1.032507412901396e-014 46.76974556957162 -11.58813639463624 -1.054711873393899e-014 47.5311574222761 -11.32185653739672 -2.109423746787797e-015 47.68759909625694 -11.21007906090227 -1.210143096841421e-014 48.08563313934099 -11.08433087564734 -8.992806499463768e-015 49.24481971196092 -11.1821351578214 -9.214851104388799e-015 50.11071816081979 -11.1821351578214 -9.214851104388799e-015 50.11071816081979 -11.08433087564734 -8.992806499463768e-015 49.24481971196092 -11.56613919274438 -1.387778780781446e-014 48.2020118231443 -11.21007906090227 -1.210143096841421e-014 48.08563313934099 -11.32185653739672 -2.109423746787797e-015 47.68759909625694 -11.58813639463624 -1.054711873393899e-014 47.5311574222761 -11.66655082687127 -6.550315845288424e-015 47.16164855244643 -11.68895441774707 -1.032507412901396e-014 46.76974556957162 -12.05938854038452 -1.343369859796439e-014 46.45702884894248 -8.698230383287612 -1.443289932012704e-015 47.37063000106498 -9.306927136076894 -8.770761894538737e-015 46.73503229251674 -9.202098662654553 -1.165734175856414e-014 46.50101246016481 -9.067796424257065 -1.221245327087672e-015 47.10443983491447 -9.067796424257065 -1.221245327087672e-015 47.10443983491447 -8.698230383287612 -1.443289932012704e-015 47.37063000106498 -9.306927136076894 -8.770761894538737e-015 46.73503229251674 -9.202098662654553 -1.165734175856414e-014 46.50101246016481 -10.50694160938116 -7.438494264988549e-015 42.08383821138177 -11.42429700949497 -1.032507412901396e-014 41.7029476439313 -11.18437340418317 -7.216449660063518e-015 41.67473358342182 -12.24285887473938 -1.054711873393899e-014 42.46472877883225 -10.37320324039972 -9.214851104388799e-015 42.24618010434099 -10.42881550205189 -7.216449660063518e-015 42.68077987990983 -12.34165116682895 -5.662137425588298e-015 42.91615524812975 -9.403735330266798 -4.996003610813204e-015 46.06991940417479 -9.526957565643706 -1.521005543736465e-014 45.94115137773253 -12.41221744482998 -3.885780586188048e-015 43.48043795946489 -12.73681909240706 -4.329869796038111e-015 44.49614638952416 -12.68036706422997 -6.328271240363392e-015 45.10275094219686 -10.12066701582209 -8.326672684688674e-015 45.81798150426486 -10.77038606457988 -4.773959005888173e-015 45.97474254729995 -12.05938854038452 -1.343369859796439e-014 46.45702884894248 -11.30808467339868 -6.328271240363392e-015 46.26587052032541 -11.68895441774707 -1.032507412901396e-014 46.76974556957162 -11.68895441774707 -1.032507412901396e-014 46.76974556957162 -11.30808467339868 -6.328271240363392e-015 46.26587052032541 -12.05938854038452 -1.343369859796439e-014 46.45702884894248 -10.77038606457988 -4.773959005888173e-015 45.97474254729995 -10.12066701582209 -8.326672684688674e-015 45.81798150426486 -12.68036706422997 -6.328271240363392e-015 45.10275094219686 -9.526957565643706 -1.521005543736465e-014 45.94115137773253 -12.73681909240706 -4.329869796038111e-015 44.49614638952416 -12.41221744482998 -3.885780586188048e-015 43.48043795946489 -12.34165116682895 -5.662137425588298e-015 42.91615524812975 -9.403735330266798 -4.996003610813204e-015 46.06991940417479 -10.42881550205189 -7.216449660063518e-015 42.68077987990983 -12.24285887473938 -1.054711873393899e-014 42.46472877883225 -10.37320324039972 -9.214851104388799e-015 42.24618010434099 -10.50694160938116 -7.438494264988549e-015 42.08383821138177 -11.42429700949497 -1.032507412901396e-014 41.7029476439313 -11.18437340418317 -7.216449660063518e-015 41.67473358342182</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"162\" source=\"#ID9129\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9127\">\r\n\t\t\t\t\t<float_array count=\"486\" id=\"ID9130\">4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 4.996003610813201e-016 -1 -2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 -4.996003610813201e-016 1 2.911222974131524e-016 1.149080830487036e-014 -1 -2.310453134203955e-015 1.149080830487036e-014 -1 -2.310453134203955e-015 1.149080830487036e-014 -1 -2.310453134203955e-015 1.149080830487036e-014 -1 -2.310453134203955e-015 1.149080830487036e-014 -1 -2.310453134203955e-015 1.149080830487036e-014 -1 -2.310453134203955e-015 1.149080830487036e-014 -1 -2.310453134203955e-015 1.149080830487036e-014 -1 -2.310453134203955e-015 1.149080830487036e-014 -1 -2.310453134203955e-015 -1.149080830487036e-014 1 2.310453134203955e-015 -1.149080830487036e-014 1 2.310453134203955e-015 -1.149080830487036e-014 1 2.310453134203955e-015 -1.149080830487036e-014 1 2.310453134203955e-015 -1.149080830487036e-014 1 2.310453134203955e-015 -1.149080830487036e-014 1 2.310453134203955e-015 -1.149080830487036e-014 1 2.310453134203955e-015 -1.149080830487036e-014 1 2.310453134203955e-015 -1.149080830487036e-014 1 2.310453134203955e-015 -8.187894806610522e-015 -1 1.789518587429079e-014 -8.187894806610522e-015 -1 1.789518587429079e-014 -8.187894806610522e-015 -1 1.789518587429079e-014 -8.187894806610522e-015 -1 1.789518587429079e-014 8.187894806610522e-015 1 -1.789518587429079e-014 8.187894806610522e-015 1 -1.789518587429079e-014 8.187894806610522e-015 1 -1.789518587429079e-014 8.187894806610522e-015 1 -1.789518587429079e-014 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 -5.828670879282068e-016 -1 -1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016 5.828670879282068e-016 1 1.301235044053255e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"162\" source=\"#ID9130\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9128\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9126\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9127\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"146\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9128\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 7 6 8 7 8 9 9 8 10 9 10 11 9 11 12 12 11 13 12 13 14 14 13 15 14 15 16 14 16 17 17 16 18 17 18 19 17 19 20 20 19 21 21 19 22 21 22 23 21 23 24 24 23 25 24 25 26 24 26 27 27 26 28 27 28 29 30 23 22 23 30 31 31 30 32 32 30 33 33 30 34 33 34 35 35 34 36 36 34 37 36 37 38 33 39 32 39 33 40 39 40 41 41 40 42 20 43 17 43 20 44 43 44 45 43 45 46 46 45 47 47 45 48 48 45 49 48 49 50 51 52 53 52 54 53 53 54 55 55 54 56 56 54 57 54 58 57 58 59 57 60 57 59 61 62 63 63 62 64 62 65 64 66 64 65 67 68 69 68 70 69 69 70 71 71 70 65 70 72 65 65 72 66 66 72 73 73 72 74 75 74 72 76 77 78 77 79 78 78 79 80 79 81 80 81 74 80 80 74 82 74 75 82 75 83 82 82 83 59 59 83 60 83 84 60 84 85 60 60 85 86 85 87 86 87 88 86 86 88 89 88 90 89 89 90 91 90 92 91 92 93 91 91 93 94 93 95 94 94 95 96 95 97 96 97 98 96 96 98 99 98 100 99 101 99 100 102 103 104 103 102 105 104 103 106 104 106 107 104 107 108 104 108 109 104 109 110 111 112 113 112 114 113 114 115 113 115 116 113 116 117 113 118 119 117 113 117 119 120 121 122 121 120 123 124 125 126 127 126 125 128 129 130 129 128 131 131 128 132 131 132 133 131 133 134 134 133 135 134 135 136 134 136 137 137 136 138 138 136 139 139 136 140 139 141 142 141 139 140 142 141 143 142 143 144 145 146 147 146 148 147 149 150 148 147 148 150 149 151 150 150 151 152 152 151 153 153 151 154 151 155 154 155 156 154 154 156 157 156 158 157 158 159 157 157 159 160 161 160 159</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9131\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9132\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID9135\">2.572948827706662 1.110223024625157e-016 48.14868357097105 2.622421404707309 -1.076916333886402e-014 48.84100512652488 2.452279736440424 -3.219646771412954e-015 48.05273813743739 4.024152704918812 -7.216449660063518e-015 49.30255308041853 3.562405338835084 -5.662137425588298e-015 49.66519720437373 5.145536502307989 -1.476596622751458e-014 50.22564823763231 4.43642625122207 -9.325873406851315e-015 50.40697029960989 5.607283868391717 -7.66053886991358e-015 50.50587337897481 4.997118771306747 -5.88418203051333e-015 50.78609852031731 5.450619672240391 -7.66053886991358e-015 51.0003887757989 5.450619672240391 -7.66053886991358e-015 51.0003887757989 5.607283868391717 -7.66053886991358e-015 50.50587337897481 4.997118771306747 -5.88418203051333e-015 50.78609852031731 4.43642625122207 -9.325873406851315e-015 50.40697029960989 5.145536502307989 -1.476596622751458e-014 50.22564823763231 3.562405338835084 -5.662137425588298e-015 49.66519720437373 4.024152704918812 -7.216449660063518e-015 49.30255308041853 2.622421404707309 -1.076916333886402e-014 48.84100512652488 2.572948827706662 1.110223024625157e-016 48.14868357097105 2.452279736440424 -3.219646771412954e-015 48.05273813743739</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID9135\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9133\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID9136\">-3.330669073875467e-016 -1 -1.552142677979707e-015 -3.330669073875467e-016 -1 -1.552142677979707e-015 -3.330669073875467e-016 -1 -1.552142677979707e-015 -3.330669073875467e-016 -1 -1.552142677979707e-015 -3.330669073875467e-016 -1 -1.552142677979707e-015 -3.330669073875467e-016 -1 -1.552142677979707e-015 -3.330669073875467e-016 -1 -1.552142677979707e-015 -3.330669073875467e-016 -1 -1.552142677979707e-015 -3.330669073875467e-016 -1 -1.552142677979707e-015 -3.330669073875467e-016 -1 -1.552142677979707e-015 3.330669073875467e-016 1 1.552142677979707e-015 3.330669073875467e-016 1 1.552142677979707e-015 3.330669073875467e-016 1 1.552142677979707e-015 3.330669073875467e-016 1 1.552142677979707e-015 3.330669073875467e-016 1 1.552142677979707e-015 3.330669073875467e-016 1 1.552142677979707e-015 3.330669073875467e-016 1 1.552142677979707e-015 3.330669073875467e-016 1 1.552142677979707e-015 3.330669073875467e-016 1 1.552142677979707e-015 3.330669073875467e-016 1 1.552142677979707e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID9136\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9134\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9132\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9133\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9134\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 6 7 8 8 7 9 10 11 12 12 11 13 11 14 13 13 14 15 14 16 15 15 16 17 16 18 17 19 17 18</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9137\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9138\">\r\n\t\t\t\t\t<float_array count=\"480\" id=\"ID9141\">3.614101248840231 -3.663735981263017e-015 41.39461052008486 2.999418647298955 -5.440092820663267e-015 41.62175584910596 3.392053787709964 -3.663735981263017e-015 41.26666699870982 4.244971056858592 -1.665334536937735e-015 41.50111766029097 4.480200682986588 -5.551115123125783e-015 41.88180106943598 2.722179336676487 -3.885780586188048e-015 42.60806431241455 4.765269506146962 -4.440892098500626e-016 42.85400700593142 2.621674064910176 1.221245327087672e-015 43.13657948087538 4.95197852457714 -1.298960938811433e-014 43.49387622866838 2.72375393864227 -9.436895709313831e-015 43.6322722375842 5.155605503987529 -1.143529715363911e-014 43.87241750084382 3.130262229602619 -4.440892098500626e-015 45.07273700626583 5.428865618952097 -7.66053886991358e-015 44.13417887360997 5.390226168029679 -4.551914400963142e-015 45.02268801002142 5.462335978502429 -4.662936703425658e-015 46.01977095693243 4.980136185778389 -2.886579864025407e-015 45.95401170528701 5.233935427198487 4.440892098500626e-016 46.08637085097652 4.516677511954281 -3.108624468950438e-015 46.18564096081729 4.384260570464651 -6.661338147750939e-015 46.05328106455407 4.582886604089001 -2.886579864025407e-015 45.95401170528701 3.248234341849957 -1.010302952408893e-014 46.10454974285041 4.053218838130166 -2.775557561562891e-015 46.06431149374402 3.832524764167351 -8.326672684688674e-015 46.24079085504567 3.248234341849957 -5.440092820663267e-015 46.27437864533683 3.755281030473479 -3.108624468950438e-015 46.59375032822287 3.755281030473479 -3.108624468950438e-015 46.59375032822287 3.832524764167351 -8.326672684688674e-015 46.24079085504567 3.248234341849957 -5.440092820663267e-015 46.27437864533683 3.248234341849957 -1.010302952408893e-014 46.10454974285041 4.053218838130166 -2.775557561562891e-015 46.06431149374402 4.384260570464651 -6.661338147750939e-015 46.05328106455407 4.582886604089001 -2.886579864025407e-015 45.95401170528701 4.980136185778389 -2.886579864025407e-015 45.95401170528701 3.130262229602619 -4.440892098500626e-015 45.07273700626583 4.516677511954281 -3.108624468950438e-015 46.18564096081729 5.233935427198487 4.440892098500626e-016 46.08637085097652 5.462335978502429 -4.662936703425658e-015 46.01977095693243 5.390226168029679 -4.551914400963142e-015 45.02268801002142 5.428865618952097 -7.66053886991358e-015 44.13417887360997 5.155605503987529 -1.143529715363911e-014 43.87241750084382 2.72375393864227 -9.436895709313831e-015 43.6322722375842 4.95197852457714 -1.298960938811433e-014 43.49387622866838 2.621674064910176 1.221245327087672e-015 43.13657948087538 4.765269506146962 -4.440892098500626e-016 42.85400700593142 2.722179336676487 -3.885780586188048e-015 42.60806431241455 4.480200682986588 -5.551115123125783e-015 41.88180106943598 2.999418647298955 -5.440092820663267e-015 41.62175584910596 4.244971056858592 -1.665334536937735e-015 41.50111766029097 3.614101248840231 -3.663735981263017e-015 41.39461052008486 3.392053787709964 -3.663735981263017e-015 41.26666699870982 3.248234341849957 -1.010302952408893e-014 46.10454974285041 2.684912099776492 -2.997602166487923e-015 46.0091615995155 3.130262229602619 -4.440892098500626e-015 45.07273700626583 2.949745982755738 5.551115123125783e-016 46.08637085097652 3.248234341849957 -5.440092820663267e-015 46.27437864533683 5.595733473228946 -5.551115123125783e-015 49.2727290396007 5.18979686096189 -5.329070518200751e-015 48.4909060892243 5.576011801092121 -5.329070518200751e-015 48.4909060892243 2.72375393864227 -9.436895709313831e-015 43.6322722375842 2.44575901792107 -4.218847493575595e-015 44.06164310251715 2.621674064910176 1.221245327087672e-015 43.13657948087538 2.530425875168572 -6.550315845288424e-015 46.16358085301107 2.337594923601711 -5.10702591327572e-015 47.52140296815585 2.57456444140517 -8.326672684688674e-015 46.38418042992517 3.082162924245706 -8.43769498715119e-015 46.7592000109084 3.159405415159747 -4.884981308350689e-015 46.96876915863248 3.137336132041448 -1.387778780781446e-014 47.26657873758117 3.335960922885962 -5.218048215738236e-015 47.75189735644766 2.452279736440424 -3.219646771412954e-015 48.05273813743739 3.865628688844804 -8.770761894538737e-015 48.00558671978403 4.362191287346356 -8.770761894538737e-015 48.06073661401259 2.572948827706662 1.110223024625157e-016 48.14868357097105 4.704267661239644 -1.665334536937735e-015 48.28133619092666 4.024152704918812 -7.216449660063518e-015 49.30255308041853 5.607283868391717 -7.66053886991358e-015 50.50587337897481 5.145536502307989 -1.476596622751458e-014 50.22564823763231 5.145536502307989 -1.476596622751458e-014 50.22564823763231 5.607283868391717 -7.66053886991358e-015 50.50587337897481 4.024152704918812 -7.216449660063518e-015 49.30255308041853 5.595733473228946 -5.551115123125783e-015 49.2727290396007 5.18979686096189 -5.329070518200751e-015 48.4909060892243 4.704267661239644 -1.665334536937735e-015 48.28133619092666 2.572948827706662 1.110223024625157e-016 48.14868357097105 4.362191287346356 -8.770761894538737e-015 48.06073661401259 2.452279736440424 -3.219646771412954e-015 48.05273813743739 3.865628688844804 -8.770761894538737e-015 48.00558671978403 3.335960922885962 -5.218048215738236e-015 47.75189735644766 2.337594923601711 -5.10702591327572e-015 47.52140296815585 3.137336132041448 -1.387778780781446e-014 47.26657873758117 3.159405415159747 -4.884981308350689e-015 46.96876915863248 3.082162924245706 -8.43769498715119e-015 46.7592000109084 2.57456444140517 -8.326672684688674e-015 46.38418042992517 2.530425875168572 -6.550315845288424e-015 46.16358085301107 2.684912099776492 -2.997602166487923e-015 46.0091615995155 3.130262229602619 -4.440892098500626e-015 45.07273700626583 2.44575901792107 -4.218847493575595e-015 44.06164310251715 2.72375393864227 -9.436895709313831e-015 43.6322722375842 2.621674064910176 1.221245327087672e-015 43.13657948087538 5.576011801092121 -5.329070518200751e-015 48.4909060892243 3.248234341849957 -5.440092820663267e-015 46.27437864533683 3.248234341849957 -1.010302952408893e-014 46.10454974285041 2.949745982755738 5.551115123125783e-016 46.08637085097652 5.840845684071364 5.551115123125783e-016 46.08637085097652 5.233935427198487 4.440892098500626e-016 46.08637085097652 5.462335978502429 -4.662936703425658e-015 46.01977095693243 6.094644925491803 -6.550315845288424e-015 46.32903053569663 4.516677511954281 -3.108624468950438e-015 46.18564096081729 3.832524764167351 -8.326672684688674e-015 46.24079085504567 3.755281030473479 -3.108624468950438e-015 46.59375032822287 6.216025982642446 1.998401444325282e-015 47.1342188413179 3.082162924245706 -8.43769498715119e-015 46.7592000109084 3.159405415159747 -4.884981308350689e-015 46.96876915863248 3.137336132041448 -1.387778780781446e-014 47.26657873758117 6.282235074777177 -1.232347557333924e-014 47.64159756799064 3.335960922885962 -5.218048215738236e-015 47.75189735644766 6.238096508540579 -1.765254609153999e-014 47.99455704116782 3.865628688844804 -8.770761894538737e-015 48.00558671978403 4.362191287346356 -8.770761894538737e-015 48.06073661401259 5.940158700883543 -1.243449787580175e-014 48.29236662011644 4.704267661239644 -1.665334536937735e-015 48.28133619092666 5.18979686096189 -5.329070518200751e-015 48.4909060892243 5.576011801092121 -5.329070518200751e-015 48.4909060892243 2.949745982755738 5.551115123125783e-016 46.08637085097652 2.530425875168572 -6.550315845288424e-015 46.16358085301107 2.684912099776492 -2.997602166487923e-015 46.0091615995155 3.248234341849957 -5.440092820663267e-015 46.27437864533683 2.57456444140517 -8.326672684688674e-015 46.38418042992517 4.053218838130166 -2.775557561562891e-015 46.06431149374402 4.384260570464651 -6.661338147750939e-015 46.05328106455407 4.582886604089001 -2.886579864025407e-015 45.95401170528701 4.980136185778389 -2.886579864025407e-015 45.95401170528701 4.516677511954281 -3.108624468950438e-015 46.18564096081729 5.233935427198487 4.440892098500626e-016 46.08637085097652 4.582886604089001 -2.886579864025407e-015 45.95401170528701 4.980136185778389 -2.886579864025407e-015 45.95401170528701 3.832524764167351 -8.326672684688674e-015 46.24079085504567 4.053218838130166 -2.775557561562891e-015 46.06431149374402 4.384260570464651 -6.661338147750939e-015 46.05328106455407 3.082162924245706 -8.43769498715119e-015 46.7592000109084 3.755281030473479 -3.108624468950438e-015 46.59375032822287 2.57456444140517 -8.326672684688674e-015 46.38418042992517 3.248234341849957 -5.440092820663267e-015 46.27437864533683 2.530425875168572 -6.550315845288424e-015 46.16358085301107 2.949745982755738 5.551115123125783e-016 46.08637085097652 2.684912099776492 -2.997602166487923e-015 46.0091615995155 5.576011801092121 -5.329070518200751e-015 48.4909060892243 5.940158700883543 -1.243449787580175e-014 48.29236662011644 5.18979686096189 -5.329070518200751e-015 48.4909060892243 4.704267661239644 -1.665334536937735e-015 48.28133619092666 4.362191287346356 -8.770761894538737e-015 48.06073661401259 6.238096508540579 -1.765254609153999e-014 47.99455704116782 3.865628688844804 -8.770761894538737e-015 48.00558671978403 3.335960922885962 -5.218048215738236e-015 47.75189735644766 6.282235074777177 -1.232347557333924e-014 47.64159756799064 3.137336132041448 -1.387778780781446e-014 47.26657873758117 6.216025982642446 1.998401444325282e-015 47.1342188413179 3.159405415159747 -4.884981308350689e-015 46.96876915863248 6.094644925491803 -6.550315845288424e-015 46.32903053569663 5.840845684071364 5.551115123125783e-016 46.08637085097652 5.462335978502429 -4.662936703425658e-015 46.01977095693243</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"160\" source=\"#ID9141\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9139\">\r\n\t\t\t\t\t<float_array count=\"480\" id=\"ID9142\">-1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 -1.942890293094022e-016 -1 -6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 1.942890293094022e-016 1 6.389584540471503e-017 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 -3.608224830031756e-016 -1 -4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.608224830031756e-016 1 4.532048572715492e-016 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 3.885780586188045e-016 -1 -2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015 -3.885780586188045e-016 1 2.369049682054832e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"160\" source=\"#ID9142\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9140\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9138\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9139\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"148\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9140\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 5 6 7 7 6 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 11 13 14 11 14 15 15 14 16 17 18 19 11 19 20 19 11 15 20 19 21 21 19 18 20 21 22 20 22 23 23 22 24 25 26 27 27 26 28 26 29 28 30 31 29 29 31 28 32 33 31 28 31 33 31 30 34 35 36 32 32 36 33 36 37 33 37 38 33 38 39 33 33 39 40 39 41 40 40 41 42 41 43 42 42 43 44 43 45 44 44 45 46 45 47 46 47 48 46 49 46 48 50 51 52 51 50 53 53 50 54 55 56 57 58 59 60 59 58 52 59 52 61 59 61 62 61 52 51 62 61 63 62 63 64 62 64 65 62 65 66 62 66 67 62 67 68 68 67 69 68 69 70 68 70 71 71 70 72 71 72 73 73 72 56 73 56 55 73 55 74 73 74 75 76 77 78 77 79 78 79 80 78 80 81 78 78 81 82 81 83 82 82 83 84 83 85 84 85 86 84 84 86 87 86 88 87 88 89 87 89 90 87 90 91 87 91 92 87 93 94 92 87 92 95 92 94 95 94 96 95 97 95 96 98 80 79 99 100 101 101 100 93 94 93 100 102 103 104 103 102 105 103 105 106 106 105 107 107 105 108 108 105 109 108 109 110 110 109 111 111 109 112 112 109 113 112 113 114 114 113 115 114 115 116 116 115 117 117 115 118 117 118 119 119 118 120 120 118 121 122 123 124 123 122 125 123 125 126 126 125 108 126 108 110 106 127 128 127 106 107 103 129 130 129 103 106 131 132 133 134 133 132 135 131 136 137 136 131 138 139 140 139 141 140 140 141 142 141 143 142 144 142 143 145 146 147 147 146 148 148 146 149 146 150 149 149 150 151 151 150 152 150 153 152 152 153 154 153 155 154 154 155 156 156 155 138 138 155 139 155 157 139 139 157 135 135 157 131 131 157 132 157 158 132 159 132 158</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9143\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9144\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID9147\">-8.535186998587545 -3.885780586188048e-015 50.34218229016462 -9.067796424257061 -1.143529715363911e-014 50.51602038307242 -8.763448358557206 -4.107825191113079e-015 50.29872257929431 -8.345318833987477 -5.218048215738236e-015 50.52603740463913 -9.122144426286948 -1.676436767183986e-014 51.46126796864147 -8.345318833987477 -2.331468351712829e-015 50.71239594857695 -8.289510565730481 3.33066907387547e-016 54.39420474869394 -9.252579134046997 -7.882583474838611e-015 51.6677012199887 -9.524319144196443 -2.55351295663786e-015 51.67856577241948 -10.6596951988361 -1.010302952408893e-014 52.13654036001029 -9.88936954487934 -4.773959005888173e-015 53.24131473775572 -9.461500355268548 -6.994405055138486e-015 53.85494991306204 -8.940615313929612 -1.587618925213974e-014 54.28263423918224 -10.14456069963961 -7.438494264988549e-015 50.17323118177342 -10.73641095128522 -1.98729921407903e-014 50.62960393089957 -10.36396574139608 -1.454392162258955e-014 50.12374393488486 -9.840181564445661 -1.121325254871408e-014 50.57889593106052 -9.671081492546964 -8.104628079763643e-015 51.50854359554349 -11.09856443232892 -4.107825191113079e-015 51.12148556506534 -9.524319144196443 -2.55351295663786e-015 51.67856577241948 -9.671081492546964 -8.104628079763643e-015 51.50854359554349 -10.6596951988361 -1.010302952408893e-014 52.13654036001029 -11.09856443232892 -4.107825191113079e-015 51.12148556506534 -10.73641095128522 -1.98729921407903e-014 50.62960393089957 -9.840181564445661 -1.121325254871408e-014 50.57889593106052 -10.14456069963961 -7.438494264988549e-015 50.17323118177342 -10.36396574139608 -1.454392162258955e-014 50.12374393488486 -8.940615313929612 -1.587618925213974e-014 54.28263423918224 -8.289510565730481 3.33066907387547e-016 54.39420474869394 -9.461500355268548 -6.994405055138486e-015 53.85494991306204 -9.88936954487934 -4.773959005888173e-015 53.24131473775572 -9.252579134046997 -7.882583474838611e-015 51.6677012199887 -9.122144426286948 -1.676436767183986e-014 51.46126796864147 -8.345318833987477 -2.331468351712829e-015 50.71239594857695 -8.345318833987477 -5.218048215738236e-015 50.52603740463913 -9.067796424257061 -1.143529715363911e-014 50.51602038307242 -8.535186998587545 -3.885780586188048e-015 50.34218229016462 -8.763448358557206 -4.107825191113079e-015 50.29872257929431</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID9147\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9145\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID9148\">2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 2.4980018054066e-015 -1 2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016 -2.4980018054066e-015 1 -2.99616940411211e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID9148\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9146\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9144\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9145\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"34\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9146\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 7 6 8 8 6 9 9 6 10 10 6 11 11 6 12 13 14 15 14 13 16 14 16 17 14 17 18 18 17 9 9 17 8 19 20 21 21 20 22 22 20 23 20 24 23 24 25 23 26 23 25 27 28 29 29 28 30 30 28 21 21 28 19 19 28 31 31 28 32 28 33 32 33 34 32 32 34 35 34 36 35 37 35 36</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9149\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9150\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9153\">-8.187359039928456 -1.121325254871408e-014 50.67899467412273 -8.345318833987477 -2.331468351712829e-015 50.71239594857695 -8.345318833987477 -5.218048215738236e-015 50.52603740463913 -7.81515643472178 -2.331468351712829e-015 50.87711761453524 -8.289510565730481 3.33066907387547e-016 54.39420474869394 -7.742506022009507 -1.187938636348918e-014 52.15975548607557 -7.687109780684145 -1.920685832601521e-014 53.13777218842142 -7.601198234060143 -6.772360450213455e-015 54.65453443640709 -7.601198234060143 -6.772360450213455e-015 54.65453443640709 -7.687109780684145 -1.920685832601521e-014 53.13777218842142 -8.289510565730481 3.33066907387547e-016 54.39420474869394 -7.742506022009507 -1.187938636348918e-014 52.15975548607557 -7.81515643472178 -2.331468351712829e-015 50.87711761453524 -8.345318833987477 -2.331468351712829e-015 50.71239594857695 -8.187359039928456 -1.121325254871408e-014 50.67899467412273 -8.345318833987477 -5.218048215738236e-015 50.52603740463913</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID9153\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9151\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9154\">-1.271205363195803e-014 -1 8.630188529166615e-016 -1.271205363195803e-014 -1 8.630188529166615e-016 -1.271205363195803e-014 -1 8.630188529166615e-016 -1.271205363195803e-014 -1 8.630188529166615e-016 -1.271205363195803e-014 -1 8.630188529166615e-016 -1.271205363195803e-014 -1 8.630188529166615e-016 -1.271205363195803e-014 -1 8.630188529166615e-016 -1.271205363195803e-014 -1 8.630188529166615e-016 1.271205363195803e-014 1 -8.630188529166615e-016 1.271205363195803e-014 1 -8.630188529166615e-016 1.271205363195803e-014 1 -8.630188529166615e-016 1.271205363195803e-014 1 -8.630188529166615e-016 1.271205363195803e-014 1 -8.630188529166615e-016 1.271205363195803e-014 1 -8.630188529166615e-016 1.271205363195803e-014 1 -8.630188529166615e-016 1.271205363195803e-014 1 -8.630188529166615e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID9154\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9152\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9150\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9151\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9152\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 8 9 10 9 11 10 11 12 10 10 12 13 12 14 13 15 13 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9155\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9158\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID9161\">-9.526957565643706 -1.521005543736465e-014 45.94115137773253 -10.77038606457988 -4.773959005888173e-015 45.97474254729995 -10.12066701582209 -8.326672684688674e-015 45.81798150426486 -9.403735330266798 -4.996003610813204e-015 46.06991940417479 -11.30808467339868 -6.328271240363392e-015 46.26587052032541 -9.280513094889919 -8.548717289613705e-015 46.19868743061707 -10.19908144805713 -8.104628079763643e-015 46.31065949698881 -9.70619126376975 -2.331468351712829e-015 46.34425141712962 -9.202098662654553 -1.165734175856414e-014 46.50101246016481 -9.443777298352792 -1.010302952408893e-014 46.52362706673735 -9.306927136076894 -8.770761894538737e-015 46.73503229251674 -10.75918364775206 -1.010302952408893e-014 46.46742054002384 -11.68895441774707 -1.032507412901396e-014 46.76974556957162 -11.22967024116364 -6.550315845288424e-015 46.85932352289847 -11.66655082687127 -6.550315845288424e-015 47.16164855244643 -11.43363401389119 -8.548717289613705e-015 47.28956505317293 -11.58813639463624 -1.054711873393899e-014 47.5311574222761 -11.32185653739672 -2.109423746787797e-015 47.68759909625694 -11.32185653739672 -2.109423746787797e-015 47.68759909625694 -11.43363401389119 -8.548717289613705e-015 47.28956505317293 -11.58813639463624 -1.054711873393899e-014 47.5311574222761 -11.66655082687127 -6.550315845288424e-015 47.16164855244643 -11.22967024116364 -6.550315845288424e-015 46.85932352289847 -11.68895441774707 -1.032507412901396e-014 46.76974556957162 -10.75918364775206 -1.010302952408893e-014 46.46742054002384 -10.19908144805713 -8.104628079763643e-015 46.31065949698881 -11.30808467339868 -6.328271240363392e-015 46.26587052032541 -9.306927136076894 -8.770761894538737e-015 46.73503229251674 -9.202098662654553 -1.165734175856414e-014 46.50101246016481 -9.443777298352792 -1.010302952408893e-014 46.52362706673735 -9.70619126376975 -2.331468351712829e-015 46.34425141712962 -9.280513094889919 -8.548717289613705e-015 46.19868743061707 -9.403735330266798 -4.996003610813204e-015 46.06991940417479 -10.77038606457988 -4.773959005888173e-015 45.97474254729995 -9.526957565643706 -1.521005543736465e-014 45.94115137773253 -10.12066701582209 -8.326672684688674e-015 45.81798150426486</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID9161\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9159\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID9162\">-5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 -5.828670879282068e-016 -1 4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016 5.828670879282068e-016 1 -4.487944945353877e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID9162\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9160\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9158\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9159\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9160\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 7 5 8 7 8 9 9 8 10 4 11 12 11 4 6 12 11 13 12 13 14 14 13 15 14 15 16 16 15 17 18 19 20 20 19 21 19 22 21 21 22 23 22 24 23 25 26 24 23 24 26 27 28 29 29 28 30 28 31 30 30 31 25 25 31 26 31 32 26 26 32 33 32 34 33 35 33 34</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9163\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9164\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID9167\">1.875995448310373 -2.220446049250313e-015 32.51056654642603 0.9452304545010062 -4.107825191113079e-015 32.47011588499917 1.471315286389063 -6.772360450213455e-015 32.41618191995472 0.4865925233966388 -4.107825191113079e-015 32.68585249575091 2.172761314646067 -7.771561172376096e-015 32.82068853422263 0.3516987218295906 -5.218048215738236e-015 33.04990844859196 2.395335714397931 -7.216449660063518e-015 33.9802725355479 0.5482496872307978 -3.774758283725532e-015 34.83893589467816 2.617910114149805 -9.214851104388799e-015 35.13985653687318 0.6076989262186086 -5.773159728050814e-015 35.38004908626758 2.523484950164839 -7.438494264988549e-015 35.38256050543399 0.9047618169189224 -7.549516567451065e-015 35.67919843903927 1.714123383541884 -7.438494264988549e-015 35.53087947223663 1.714123383541884 -7.438494264988549e-015 35.53087947223663 2.523484950164839 -7.438494264988549e-015 35.38256050543399 0.9047618169189224 -7.549516567451065e-015 35.67919843903927 0.6076989262186086 -5.773159728050814e-015 35.38004908626758 2.617910114149805 -9.214851104388799e-015 35.13985653687318 0.5482496872307978 -3.774758283725532e-015 34.83893589467816 2.395335714397931 -7.216449660063518e-015 33.9802725355479 0.3516987218295906 -5.218048215738236e-015 33.04990844859196 2.172761314646067 -7.771561172376096e-015 32.82068853422263 0.4865925233966388 -4.107825191113079e-015 32.68585249575091 1.875995448310373 -2.220446049250313e-015 32.51056654642603 0.9452304545010062 -4.107825191113079e-015 32.47011588499917 1.471315286389063 -6.772360450213455e-015 32.41618191995472</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID9167\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9165\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID9168\">-1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 -1.221245327087671e-015 -1 -6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016 1.221245327087671e-015 1 6.467888534166421e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID9168\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9166\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9164\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9165\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9166\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 7 6 8 7 8 9 9 8 10 9 10 11 11 10 12 13 14 15 15 14 16 14 17 16 16 17 18 17 19 18 18 19 20 19 21 20 20 21 22 21 23 22 22 23 24 25 24 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9169\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9170\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID9173\">4.708760310100705 -9.214851104388799e-015 35.01850530316634 4.411994443765003 -2.109423746787797e-015 35.5039124897144 4.479441344548693 -3.885780586188048e-015 34.87018596107701 4.39850406938454 -7.882583474838611e-015 37.02755206859403 4.196164609813628 -2.331468351712829e-015 36.25899025205847 3.027721225907802 -7.438494264988549e-015 35.42412923148827 1.714123383541884 -7.438494264988549e-015 35.53087947223663 2.523484950164839 -7.438494264988549e-015 35.38256050543399 3.531957501650779 -7.549516567451065e-015 35.46569795754254 4.014058226253933 -4.440892098500626e-016 35.51739616861887 4.196164609813629 -3.885780586188048e-015 35.54436315114108 0.9047618169189224 -7.549516567451065e-015 35.67919843903927 -7.915432612813583 -9.436895709313831e-015 35.71775615392156 -7.890287449769661 9.992007221626409e-016 37.1252309624657 4.142124540054407 -7.216449660063518e-015 37.82472291898986 3.634465438116965 -4.551914400963142e-015 37.84263293387264 -7.588555435481475 -2.775557561562891e-015 38.53270577100966 3.125365677316929 -8.104628079763643e-015 37.99529659578718 3.06427435226656 -8.104628079763643e-015 38.27009133734817 3.125365677316929 -1.176836406102666e-014 38.57541866117735 -7.365843851499952 -8.548717289613705e-015 39.57157778054578 3.043910162989826 -2.997602166487923e-015 38.96216745534447 3.054092257628193 -6.772360450213455e-015 39.44051399631623 2.901363323611677 -4.996003610813204e-015 39.72548651549113 -7.355629923042918 -1.232347557333924e-014 39.57724973649435 -7.133853387902186 -1.776356839400251e-015 41.93656591942297 2.931908364747287 -3.219646771412954e-015 40.20383305646271 3.155911961232037 -1.665334536937735e-015 40.46845002040976 3.200496038668358 -1.243449787580175e-014 40.89479972836266 2.999418647298955 -5.440092820663267e-015 41.62175584910596 2.722179336676487 -3.885780586188048e-015 42.60806431241455 -7.371402041077235 -9.214851104388799e-015 43.76838124883138 2.621674064910176 1.221245327087672e-015 43.13657948087538 2.44575901792107 -4.218847493575595e-015 44.06164310251715 -7.900175005603082 -6.328271240363392e-015 46.31082537374772 2.337594923601711 -5.10702591327572e-015 47.52140296815585 -8.097914937252913 -3.219646771412954e-015 47.29812909761076 -8.11670701012352 -1.232347557333924e-014 47.99536203132203 2.452279736440424 -3.219646771412954e-015 48.05273813743739 -7.904749677928892 -1.232347557333924e-014 48.35390389542852 2.622421404707309 -1.076916333886402e-014 48.84100512652488 -2.800415800238873 -7.216449660063518e-015 48.88378181544609 -7.415618902439094 -5.329070518200751e-015 48.97320364947031 -2.912131386989075 -1.099120794378905e-014 49.54403916810249 -6.43735486590085 -9.325873406851315e-015 49.69028737768338 -3.285954942199084 -5.440092820663267e-015 49.83710782435282 -6.089528150021265 -9.103828801926284e-015 49.89672062903062 -4.170328210052746 -3.996802888650564e-015 50.53043514849094 -6.230833452410969 -5.88418203051333e-015 50.12488373581309 -6.459094812380639 -3.996802888650564e-015 50.21180315755369 -6.073224122246214 -4.218847493575595e-015 50.45083119205368 -5.687353432111773 -4.107825191113079e-015 50.68985922655368 -4.725230619198572 -7.882583474838611e-015 51.43176142044381 -5.709092135811743 -2.109423746787797e-015 50.90715778090525 -5.883005493751544 1.221245327087672e-015 51.07013132138211 -5.280131785564577 -7.882583474838611e-015 52.05575676274162 -6.684725207581676 -6.328271240363392e-015 51.86509156096029 -5.783011433626389 -1.509903313490213e-014 52.17708923210922 -6.752573526230349 -1.809663530139005e-014 50.63553496325241 -7.046052240079709 1.110223024625157e-015 50.72245363441965 -7.035182888229913 -1.121325254871408e-014 50.52688568607677 -6.198224154081031 -1.465494392505207e-014 51.00494175507655 -7.328661602079621 -4.107825191113079e-015 50.87456262246563 -7.81515643472178 -2.331468351712829e-015 50.87711761453524 -7.742506022009507 -1.187938636348918e-014 52.15975548607557 -7.308989641133315 -9.880984919163893e-015 51.9170912979142 -6.662794311059991 -1.887379141862766e-015 34.82548080481026 -8.493751478346354 -7.438494264988549e-015 34.51134949684397 -6.343242882417283 -3.33066907387547e-016 34.88030519395248 -3.630731087263714 -3.663735981263017e-015 35.09066835689885 -2.556128795161981 -5.662137425588298e-015 35.17400688375054 -2.27312298641644 -5.662137425588298e-015 35.19243745118157 -1.584415583796996 -3.885780586188048e-015 35.23728906846987 -0.1532886649866638 -4.440892098500626e-016 35.3304902691675 0.6076989262186086 -5.773159728050814e-015 35.38004908626758 3.808751629987316 -8.326672684688674e-015 53.41964651462919 3.172803600243343 -8.326672684688674e-015 53.41044203925767 4.222043012920359 -1.69864122767649e-014 53.17625577125148 3.562405338835084 -5.662137425588298e-015 49.66519720437373 -2.453601949870083 -7.438494264988549e-015 49.92377355222674 4.43642625122207 -9.325873406851315e-015 50.40697029960989 -2.288704959146485 -7.882583474838611e-015 51.61024856604637 4.997118771306747 -5.88418203051333e-015 50.78609852031731 5.450619672240391 -7.66053886991358e-015 51.0003887757989 5.293955476089066 -1.321165399303936e-014 51.49490417262292 4.700280823744241 -1.165734175856414e-014 52.61580548856654 -2.209224221870293 -1.321165399303936e-014 52.09896653261314 -0.1124322958490103 -9.992007221626409e-016 52.55854047801682 0.9063376616645389 -1.165734175856414e-014 52.6746662185268 1.788380717453357 -1.221245327087672e-015 53.49380543510018 0.9957034692144813 -2.997602166487923e-015 53.7733918383344 2.732305506225186 -1.010302952408893e-014 53.43696675033837 1.17703260608264 -6.661338147750939e-015 53.70943496144515 -1.80144580998742 -8.104628079763643e-015 52.71039727334328 -0.9971535420376325 -9.992007221626409e-016 52.64786773977112 -1.479728654251544 -1.165734175856414e-014 52.89798437291258 -1.479728654251544 -1.165734175856414e-014 52.89798437291258 -0.9971535420376325 -9.992007221626409e-016 52.64786773977112 -1.80144580998742 -8.104628079763643e-015 52.71039727334328 -0.1124322958490103 -9.992007221626409e-016 52.55854047801682 -2.209224221870293 -1.321165399303936e-014 52.09896653261314 1.17703260608264 -6.661338147750939e-015 53.70943496144515 1.788380717453357 -1.221245327087672e-015 53.49380543510018 0.9957034692144813 -2.997602166487923e-015 53.7733918383344 2.732305506225186 -1.010302952408893e-014 53.43696675033837 3.172803600243343 -8.326672684688674e-015 53.41044203925767 4.222043012920359 -1.69864122767649e-014 53.17625577125148 0.9063376616645389 -1.165734175856414e-014 52.6746662185268 4.700280823744241 -1.165734175856414e-014 52.61580548856654 -2.288704959146485 -7.882583474838611e-015 51.61024856604637 5.293955476089066 -1.321165399303936e-014 51.49490417262292 5.450619672240391 -7.66053886991358e-015 51.0003887757989 4.997118771306747 -5.88418203051333e-015 50.78609852031731 4.43642625122207 -9.325873406851315e-015 50.40697029960989 -2.453601949870083 -7.438494264988549e-015 49.92377355222674 3.562405338835084 -5.662137425588298e-015 49.66519720437373 -2.800415800238873 -7.216449660063518e-015 48.88378181544609 2.622421404707309 -1.076916333886402e-014 48.84100512652488 3.808751629987316 -8.326672684688674e-015 53.41964651462919 0.9047618169189224 -7.549516567451065e-015 35.67919843903927 0.6076989262186086 -5.773159728050814e-015 35.38004908626758 -7.915432612813583 -9.436895709313831e-015 35.71775615392156 -0.1532886649866638 -4.440892098500626e-016 35.3304902691675 -1.584415583796996 -3.885780586188048e-015 35.23728906846987 -2.27312298641644 -5.662137425588298e-015 35.19243745118157 -2.556128795161981 -5.662137425588298e-015 35.17400688375054 -3.630731087263714 -3.663735981263017e-015 35.09066835689885 -6.343242882417283 -3.33066907387547e-016 34.88030519395248 -6.662794311059991 -1.887379141862766e-015 34.82548080481026 -8.493751478346354 -7.438494264988549e-015 34.51134949684397 -6.684725207581676 -6.328271240363392e-015 51.86509156096029 -4.725230619198572 -7.882583474838611e-015 51.43176142044381 -7.308989641133315 -9.880984919163893e-015 51.9170912979142 -5.883005493751544 1.221245327087672e-015 51.07013132138211 -7.742506022009507 -1.187938636348918e-014 52.15975548607557 -6.198224154081031 -1.465494392505207e-014 51.00494175507655 -7.81515643472178 -2.331468351712829e-015 50.87711761453524 -7.328661602079621 -4.107825191113079e-015 50.87456262246563 -7.046052240079709 1.110223024625157e-015 50.72245363441965 -6.752573526230349 -1.809663530139005e-014 50.63553496325241 -7.035182888229913 -1.121325254871408e-014 50.52688568607677 -5.783011433626389 -1.509903313490213e-014 52.17708923210922 -5.280131785564577 -7.882583474838611e-015 52.05575676274162 -5.709092135811743 -2.109423746787797e-015 50.90715778090525 -5.687353432111773 -4.107825191113079e-015 50.68985922655368 -4.170328210052746 -3.996802888650564e-015 50.53043514849094 -6.073224122246214 -4.218847493575595e-015 50.45083119205368 -6.459094812380639 -3.996802888650564e-015 50.21180315755369 -6.230833452410969 -5.88418203051333e-015 50.12488373581309 -6.089528150021265 -9.103828801926284e-015 49.89672062903062 -3.285954942199084 -5.440092820663267e-015 49.83710782435282 -6.43735486590085 -9.325873406851315e-015 49.69028737768338 -2.912131386989075 -1.099120794378905e-014 49.54403916810249 -7.415618902439094 -5.329070518200751e-015 48.97320364947031 -7.904749677928892 -1.232347557333924e-014 48.35390389542852 2.452279736440424 -3.219646771412954e-015 48.05273813743739 -8.11670701012352 -1.232347557333924e-014 47.99536203132203 2.337594923601711 -5.10702591327572e-015 47.52140296815585 -8.097914937252913 -3.219646771412954e-015 47.29812909761076 -7.900175005603082 -6.328271240363392e-015 46.31082537374772 2.44575901792107 -4.218847493575595e-015 44.06164310251715 -7.371402041077235 -9.214851104388799e-015 43.76838124883138 2.621674064910176 1.221245327087672e-015 43.13657948087538 2.722179336676487 -3.885780586188048e-015 42.60806431241455 -7.133853387902186 -1.776356839400251e-015 41.93656591942297 2.999418647298955 -5.440092820663267e-015 41.62175584910596 3.200496038668358 -1.243449787580175e-014 40.89479972836266 3.155911961232037 -1.665334536937735e-015 40.46845002040976 2.931908364747287 -3.219646771412954e-015 40.20383305646271 2.901363323611677 -4.996003610813204e-015 39.72548651549113 -7.355629923042918 -1.232347557333924e-014 39.57724973649435 -7.365843851499952 -8.548717289613705e-015 39.57157778054578 3.054092257628193 -6.772360450213455e-015 39.44051399631623 3.043910162989826 -2.997602166487923e-015 38.96216745534447 3.125365677316929 -1.176836406102666e-014 38.57541866117735 -7.588555435481475 -2.775557561562891e-015 38.53270577100966 3.06427435226656 -8.104628079763643e-015 38.27009133734817 3.125365677316929 -8.104628079763643e-015 37.99529659578718 3.634465438116965 -4.551914400963142e-015 37.84263293387264 -7.890287449769661 9.992007221626409e-016 37.1252309624657 4.142124540054407 -7.216449660063518e-015 37.82472291898986 4.39850406938454 -7.882583474838611e-015 37.02755206859403 4.196164609813628 -2.331468351712829e-015 36.25899025205847 4.196164609813629 -3.885780586188048e-015 35.54436315114108 1.714123383541884 -7.438494264988549e-015 35.53087947223663 4.014058226253933 -4.440892098500626e-016 35.51739616861887 3.531957501650779 -7.549516567451065e-015 35.46569795754254 3.027721225907802 -7.438494264988549e-015 35.42412923148827 2.523484950164839 -7.438494264988549e-015 35.38256050543399 4.411994443765003 -2.109423746787797e-015 35.5039124897144 4.708760310100705 -9.214851104388799e-015 35.01850530316634 4.479441344548693 -3.885780586188048e-015 34.87018596107701</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID9173\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9171\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID9174\">-2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 -2.775557561562889e-017 -1 -1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016 2.775557561562889e-017 1 1.701408061791978e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID9174\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9172\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9170\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9171\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"188\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9172\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 5 6 7 6 5 8 6 8 9 6 9 10 6 10 11 11 10 4 11 4 12 12 4 13 13 4 3 13 3 14 13 14 15 13 15 16 16 15 17 16 17 18 16 18 19 16 19 20 20 19 21 20 21 22 20 22 23 20 23 24 24 23 25 25 23 26 25 26 27 25 27 28 25 28 29 25 29 30 25 30 31 31 30 32 31 32 33 31 33 34 34 33 35 34 35 36 36 35 37 37 35 38 37 38 39 39 38 40 39 40 41 39 41 42 42 41 43 42 43 44 44 43 45 44 45 46 46 45 47 46 47 48 48 47 49 49 47 50 50 47 51 51 47 52 51 52 53 53 52 54 55 56 52 56 55 57 58 59 60 59 58 61 59 61 62 62 61 63 63 61 64 64 61 54 64 54 65 65 54 52 65 52 56 66 12 67 12 66 68 12 68 69 12 69 70 12 70 71 12 71 72 12 72 73 12 73 74 12 74 11 75 76 77 78 41 40 41 78 79 79 78 80 79 80 81 81 80 82 81 82 83 81 83 84 81 84 85 81 85 86 86 85 87 87 85 88 88 85 77 88 77 89 88 89 90 89 77 76 89 76 91 90 89 92 87 93 86 93 87 94 93 94 95 96 97 98 97 99 98 100 98 99 101 102 103 104 105 102 105 106 102 103 102 107 102 106 107 106 108 107 107 108 99 99 108 100 100 108 109 108 110 109 110 111 109 111 112 109 112 113 109 109 113 114 113 115 114 114 115 116 117 116 115 106 105 118 119 120 121 120 122 121 122 123 121 123 124 121 124 125 121 125 126 121 126 127 121 127 128 121 129 121 128 130 131 132 131 133 132 132 133 134 133 135 134 134 135 136 136 135 137 137 135 138 135 139 138 140 138 139 141 142 130 131 130 142 133 131 143 143 131 144 131 145 144 144 145 146 146 145 147 147 145 148 148 145 149 145 150 149 149 150 151 150 152 151 151 152 153 152 116 153 153 116 154 116 117 154 117 155 154 154 155 156 155 157 156 156 157 158 158 157 159 157 160 159 159 160 161 160 162 161 162 163 161 161 163 164 163 165 164 165 166 164 166 167 164 167 168 164 168 169 164 164 169 170 170 169 171 169 172 171 172 173 171 173 174 171 171 174 175 174 176 175 176 177 175 177 178 175 175 178 179 178 180 179 180 181 179 181 182 179 179 182 121 121 182 119 182 183 119 119 183 184 183 185 184 185 186 184 186 187 184 188 184 187 182 181 189 181 190 189 191 189 190</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9175\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9176\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID9179\">-7.365843851499952 -8.548717289613705e-015 39.57157778054578 -9.779328853110588 -1.720845688168993e-014 39.64058688722815 -7.925911731816563 -6.772360450213455e-015 39.2605632322515 -7.355629923042918 -1.232347557333924e-014 39.57724973649435 -7.133853387902186 -1.776356839400251e-015 41.93656591942297 -10.08031022841899 -1.010302952408893e-014 39.95727414204475 -10.37320324039972 -9.214851104388799e-015 42.24618010434099 -7.371402041077235 -9.214851104388799e-015 43.76838124883138 -10.42881550205189 -7.216449660063518e-015 42.68077987990983 -9.403735330266798 -4.996003610813204e-015 46.06991940417479 -7.900175005603082 -6.328271240363392e-015 46.31082537374772 -9.280513094889919 -8.548717289613705e-015 46.19868743061707 -9.202098662654553 -1.165734175856414e-014 46.50101246016481 -8.097914937252913 -3.219646771412954e-015 47.29812909761076 -8.698230383287612 -1.443289932012704e-015 47.37063000106498 -8.328664342318145 -1.665334536937735e-015 47.63682016721549 -8.11670701012352 -1.232347557333924e-014 47.99536203132203 -8.11670701012352 -1.232347557333924e-014 47.99536203132203 -8.097914937252913 -3.219646771412954e-015 47.29812909761076 -8.328664342318145 -1.665334536937735e-015 47.63682016721549 -8.698230383287612 -1.443289932012704e-015 47.37063000106498 -9.202098662654553 -1.165734175856414e-014 46.50101246016481 -7.900175005603082 -6.328271240363392e-015 46.31082537374772 -9.280513094889919 -8.548717289613705e-015 46.19868743061707 -9.403735330266798 -4.996003610813204e-015 46.06991940417479 -7.371402041077235 -9.214851104388799e-015 43.76838124883138 -10.42881550205189 -7.216449660063518e-015 42.68077987990983 -10.37320324039972 -9.214851104388799e-015 42.24618010434099 -7.133853387902186 -1.776356839400251e-015 41.93656591942297 -10.08031022841899 -1.010302952408893e-014 39.95727414204475 -9.779328853110588 -1.720845688168993e-014 39.64058688722815 -7.355629923042918 -1.232347557333924e-014 39.57724973649435 -7.365843851499952 -8.548717289613705e-015 39.57157778054578 -7.925911731816563 -6.772360450213455e-015 39.2605632322515</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID9179\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9177\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID9180\">1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 1.026956297778269e-015 -1 5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016 -1.026956297778269e-015 1 -5.442354836035579e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID9180\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9178\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9176\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9177\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"30\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9178\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 6 4 7 6 7 8 8 7 9 9 7 10 9 10 11 11 10 12 12 10 13 12 13 14 14 13 15 15 13 16 17 18 19 19 18 20 20 18 21 18 22 21 21 22 23 23 22 24 22 25 24 24 25 26 26 25 27 25 28 27 27 28 29 29 28 30 28 31 30 31 32 30 33 30 32</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9181\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9182\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID9185\">-1.907128073110042 3.33066907387547e-016 0.1730261187447706 -4.640961451476886 -1.110223024625157e-016 0.2533982872312331 -3.740404705485639 9.992007221626409e-016 0.1408768010059713 -0.9261647189155484 -7.771561172376096e-016 0.3819933064655299 -4.689204919286705 -9.992007221626409e-016 0.9445992364445156 -0.6849448943061427 0 0.4302169077867699 -0.5402120053163628 9.992007221626409e-016 0.9606735200271264 -4.415821954283868 -1.221245327087672e-015 1.024971404930973 -0.5209824739677416 0 1.47354869695546 -3.947417069697871 2.220446049250313e-016 1.753222394598375 -0.4437238269165711 -4.440892098500626e-016 1.796544522630728 -3.162032400422882 -9.992007221626409e-016 1.986615270144297 -0.746671665829223 3.33066907387547e-016 2.111532335391703 -1.62521218222074 -7.771561172376096e-016 2.147376119735906 -2.500842494407398 -4.440892098500626e-016 2.183101169963732 -2.500842494407398 -4.440892098500626e-016 2.183101169963732 -1.62521218222074 -7.771561172376096e-016 2.147376119735906 -3.162032400422882 -9.992007221626409e-016 1.986615270144297 -0.746671665829223 3.33066907387547e-016 2.111532335391703 -0.4437238269165711 -4.440892098500626e-016 1.796544522630728 -3.947417069697871 2.220446049250313e-016 1.753222394598375 -0.5209824739677416 0 1.47354869695546 -4.415821954283868 -1.221245327087672e-015 1.024971404930973 -0.5402120053163628 9.992007221626409e-016 0.9606735200271264 -4.689204919286705 -9.992007221626409e-016 0.9445992364445156 -0.6849448943061427 0 0.4302169077867699 -0.9261647189155484 -7.771561172376096e-016 0.3819933064655299 -4.640961451476886 -1.110223024625157e-016 0.2533982872312331 -1.907128073110042 3.33066907387547e-016 0.1730261187447706 -3.740404705485639 9.992007221626409e-016 0.1408768010059713 3.592699338457442 -9.992007221626409e-016 0.6391848460811058 3.129930304357314 1.110223024625157e-016 0.294960432244073 3.528374300450745 1.110223024625157e-016 0.2212489694924339 2.731486308263884 -3.33066907387547e-016 0.368671894995712 1.646854200264989 -7.771561172376096e-016 0.4623654749519925 0.3442631704779995 -1.110223024625157e-015 0.574886961177249 -0.5402120053163628 9.992007221626409e-016 0.9606735200271264 -0.6849448943061427 0 0.4302169077867699 3.238909765251362 -3.33066907387547e-016 0.7999291830540311 3.271072284254709 -5.551115123125783e-016 1.033008546722198 -0.5209824739677416 0 1.47354869695546 3.303234803258059 1.110223024625157e-016 1.266087910390366 3.062014978648317 -7.771561172376096e-016 1.732246637726866 -0.4437238269165711 -4.440892098500626e-016 1.796544522630728 2.161458232657062 -3.33066907387547e-016 2.101958162420555 0.296019702668187 -3.33066907387547e-016 2.101958162420555 1.132250167872916 3.33066907387547e-016 2.198405365063207 1.132250167872916 3.33066907387547e-016 2.198405365063207 2.161458232657062 -3.33066907387547e-016 2.101958162420555 0.296019702668187 -3.33066907387547e-016 2.101958162420555 -0.4437238269165711 -4.440892098500626e-016 1.796544522630728 3.062014978648317 -7.771561172376096e-016 1.732246637726866 -0.5209824739677416 0 1.47354869695546 3.303234803258059 1.110223024625157e-016 1.266087910390366 3.271072284254709 -5.551115123125783e-016 1.033008546722198 -0.5402120053163628 9.992007221626409e-016 0.9606735200271264 3.238909765251362 -3.33066907387547e-016 0.7999291830540311 3.592699338457442 -9.992007221626409e-016 0.6391848460811058 0.3442631704779995 -1.110223024625157e-015 0.574886961177249 -0.6849448943061427 0 0.4302169077867699 1.646854200264989 -7.771561172376096e-016 0.4623654749519925 2.731486308263884 -3.33066907387547e-016 0.368671894995712 3.129930304357314 1.110223024625157e-016 0.294960432244073 3.528374300450745 1.110223024625157e-016 0.2212489694924339 3.528374300450745 1.110223024625157e-016 0.2212489694924339 0 0 0 2.390625000000011 1.110223024625157e-016 0 -0.6849448943061427 0 0.4302169077867699 3.129930304357314 1.110223024625157e-016 0.294960432244073 2.731486308263884 -3.33066907387547e-016 0.368671894995712 1.646854200264989 -7.771561172376096e-016 0.4623654749519925 0.3442631704779995 -1.110223024625157e-015 0.574886961177249 0.3442631704779995 -1.110223024625157e-015 0.574886961177249 1.646854200264989 -7.771561172376096e-016 0.4623654749519925 -0.6849448943061427 0 0.4302169077867699 2.731486308263884 -3.33066907387547e-016 0.368671894995712 3.129930304357314 1.110223024625157e-016 0.294960432244073 3.528374300450745 1.110223024625157e-016 0.2212489694924339 0 0 0 2.390625000000011 1.110223024625157e-016 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID9185\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9183\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID9186\">1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 1.110223024625156e-016 -1 -2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -1.110223024625156e-016 1 2.95522431534302e-016 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 -5.551115123125778e-017 -1 3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 1 -3.509609044788054e-017 5.551115123125778e-017 -1 -1.356669167098786e-015 5.551115123125778e-017 -1 -1.356669167098786e-015 5.551115123125778e-017 -1 -1.356669167098786e-015 5.551115123125778e-017 -1 -1.356669167098786e-015 5.551115123125778e-017 -1 -1.356669167098786e-015 5.551115123125778e-017 -1 -1.356669167098786e-015 5.551115123125778e-017 -1 -1.356669167098786e-015 5.551115123125778e-017 -1 -1.356669167098786e-015 -5.551115123125778e-017 1 1.356669167098786e-015 -5.551115123125778e-017 1 1.356669167098786e-015 -5.551115123125778e-017 1 1.356669167098786e-015 -5.551115123125778e-017 1 1.356669167098786e-015 -5.551115123125778e-017 1 1.356669167098786e-015 -5.551115123125778e-017 1 1.356669167098786e-015 -5.551115123125778e-017 1 1.356669167098786e-015 -5.551115123125778e-017 1 1.356669167098786e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID9186\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9184\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9182\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9183\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"68\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9184\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 7 6 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 11 13 14 15 16 17 16 18 17 18 19 17 17 19 20 19 21 20 20 21 22 21 23 22 22 23 24 23 25 24 25 26 24 24 26 27 26 28 27 29 27 28 30 31 32 31 30 33 33 30 34 34 30 35 35 36 37 36 35 30 36 30 38 36 38 39 36 39 40 40 39 41 40 41 42 40 42 43 43 42 44 43 44 45 45 44 46 47 48 49 49 48 50 48 51 50 50 51 52 51 53 52 53 54 52 52 54 55 54 56 55 56 57 55 57 58 55 59 55 58 58 57 60 60 57 61 61 57 62 63 62 57 64 65 66 65 64 67 67 64 68 67 68 69 67 69 70 67 70 71 72 73 74 73 75 74 75 76 74 76 77 74 74 77 78 79 78 77</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9187\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9188\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9190\">6.238096508540579 -1.765254609153999e-014 47.99455704116782 5.79670711783477 -1.776356839400251e-015 48.01661714897389</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9190\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9189\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9188\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9189\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9191\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9192\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9194\">-7.740512603261801 -9.436895709313831e-015 44.31590140061982 -8.036799999386766 -7.438494264988549e-015 42.31659032497335</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9194\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9193\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9192\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9193\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9195\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9196\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID9198\">5.399456293365899 -8.992806499463768e-015 48.16000672385338 5.79670711783477 -1.776356839400251e-015 48.01661714897389 5.079449202590565 -6.994405055138486e-015 48.04970693539637 4.980136185778389 -1.554312234475219e-015 47.72983724864162 5.200831502521039 -1.232347557333924e-014 47.47614788530526 5.531873234855519 -8.659739592076221e-015 47.42099799107676</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID9198\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9197\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9196\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9197\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9199\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9200\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID9202\">2.227699637066024 -3.33066907387547e-016 4.572071013509639 2.798613399351539 -5.551115123125783e-016 4.001402797524788 3.130111853250566 -2.997602166487923e-015 6.099988861740207</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID9202\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9201\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9200\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9201\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9203\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9204\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9206\">-5.44760505874732 -1.63202784619898e-014 57.1705696302509 -5.831051085554488 -4.218847493575595e-015 58.22789661421221</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9206\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9205\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9204\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9205\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9207\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9208\">\r\n\t\t\t\t\t<float_array count=\"15\" id=\"ID9210\">-2.067099927613547 -1.27675647831893e-014 56.53031761499292 -1.362144289291698 -5.440092820663267e-015 56.60903702047747 -3.412057319688096 -1.27675647831893e-014 56.61799436546603 -4.508491070456921 -1.110223024625157e-014 57.04176595156405 -4.917826685389312 -1.265654248072679e-014 57.42169878713875</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"5\" source=\"#ID9210\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9209\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9208\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9209\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9211\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9212\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID9214\">0.2377718577264698 -2.220446049250313e-016 5.898408443812159 -0.3898083122460641 -7.771561172376096e-016 5.492377039336032 0.865352027699009 5.551115123125783e-016 6.304439848288279</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID9214\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9213\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9212\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9213\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9215\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9216\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID9218\">-0.7363885200182061 -1.110223024625157e-015 3.126972203604857 -0.4437238269165711 -4.440892098500626e-016 1.796544522630728 -1.10602104970556 -2.220446049250313e-016 3.964444179633925 -0.3898083122460641 -7.771561172376096e-016 5.492377039336032</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID9218\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9217\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9216\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9217\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9219\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9220\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID9222\">-2.529715996754839 -4.996003610813204e-015 25.18879867675401 -2.237211622243222 -6.106226635438361e-015 29.41528595712217 -2.655138573710722 -5.440092820663267e-015 19.56324226125621 -1.94506641108469 -3.774758283725532e-015 16.79177111937787 -1.244922816024112 4.440892098500626e-016 10.35058756748232 -0.3898083122460641 -7.771561172376096e-016 5.492377039336032</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID9222\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9221\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9220\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9221\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9223\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9224\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9226\">-5.838878249317102 -6.661338147750939e-016 58.38632879144804 -5.831051085554488 -4.218847493575595e-015 58.22789661421221</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9226\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9225\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9224\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9225\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9227\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9228\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9230\">-0.8690776302771868 -5.551115123125783e-015 56.90660941817779 -1.362144289291698 -5.440092820663267e-015 56.60903702047747</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9230\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9229\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9228\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9229\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9231\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9232\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID9234\">-9.953581489927206 -9.214851104388799e-015 42.58577377852237 -8.036799999386766 -7.438494264988549e-015 42.31659032497335 -7.365843851499952 -8.548717289613705e-015 39.57157778054578</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID9234\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9233\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9232\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9233\" />\r\n\t\t\t\t\t<p>1 0 1 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9235\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9236\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID9238\">-3.967778099311057 -4.107825191113079e-015 16.40047835281584 -3.761356729592429 -4.773959005888173e-015 16.6480768116288 -4.174199469029653 -3.774758283725532e-015 16.15287989400286</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID9238\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9237\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9236\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9237\" />\r\n\t\t\t\t\t<p>1 0 2 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9239\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9240\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID9242\">-2.794337985783813 -5.551115123125783e-016 3.826772098926775 -3.127945436948864 3.33066907387547e-016 3.576674605411324 -2.460730534618754 -7.771561172376096e-016 4.076869592442226</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID9242\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9241\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9240\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9241\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9243\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9244\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9246\">-2.237211622243222 -6.106226635438361e-015 29.41528595712217 -2.499656882508611 -5.218048215738236e-015 30.26786472740178</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9246\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9245\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9244\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9245\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9249\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9252\">\r\n\t\t\t\t\t<float_array count=\"222\" id=\"ID9255\">2.201054934649009 -3.774758283725532e-015 53.41160637054355 1.559712221526819 -1.088018564132653e-014 52.56906201832591 1.852897639351411 -1.998401444325282e-015 52.38590030052741 1.321499923955751 -9.547918011776346e-015 53.2144648101532 3.025639310649089 -5.773159728050814e-015 54.34573195694713 2.677480772571314 -3.774758283725532e-015 54.19920198224948 2.622508895097968 -1.265654248072679e-014 53.46655511105519 2.12775951227782 -9.769962616701378e-015 55.13332756865322 2.988990978073575 2.886579864025407e-015 55.16996006232765 3.671849467026042 -1.021405182655144e-014 57.30401815350788 2.906531919083723 -6.439293542825908e-015 57.30379456255383 3.447092028318214 2.220446049250313e-015 57.2763201922981 6.04197392917568 -1.243449787580175e-014 58.35811662522627 6.635631182603724 -1.709743457922741e-014 57.78515090354264 7.112206154098078 -1.332267629550188e-015 57.70786321714348 0.6801572108332215 -4.218847493575595e-015 54.19920198224948 1.321499923955751 -1.06581410364015e-014 52.56906201832591 0.3227952671845813 -1.13242748511766e-014 54.85044689801873 -0.03456667646406508 -2.664535259100376e-015 55.50169181378808 2.75077805911242 -9.547918011776346e-015 55.88429106197153 -1.602452660524426 -4.440892098500626e-016 59.28742052701401 4.784750574815771 -1.176836406102666e-014 57.44116641383297 5.874650261314865 -1.199040866595169e-014 57.77525833672581 5.296074911400501 -1.332267629550188e-015 59.28650032381691 4.385092485936271 -1.620925615952729e-014 61.19507756283822 -2.803819278215956 -4.218847493575595e-015 62.9917367767851 3.387879786276547 1.998401444325282e-015 64.28925931243514 -3.373960652875859 -1.709743457922741e-014 64.37576666928554 2.178821604601535 -1.221245327087672e-014 66.45496429231869 -4.74782137401243 -1.110223024625157e-015 65.56415280551273 -5.171905056450184 -7.105427357601002e-015 65.91314774909129 -5.224789063913446 -1.598721155460225e-014 66.40210364747978 -4.524089946296694 -6.883382752675971e-015 66.90427489472141 1.081500509078021 -1.443289932012704e-014 67.32715630056518 -3.18879516691773 -1.4210854715202e-014 67.43287683966943 -0.3595585568883184 -1.598721155460225e-014 67.81611294952728 -1.430438270069947 -1.643130076445232e-014 67.81611294952728 -1.430438270069947 -1.643130076445232e-014 67.81611294952728 -0.3595585568883184 -1.598721155460225e-014 67.81611294952728 -3.18879516691773 -1.4210854715202e-014 67.43287683966943 1.081500509078021 -1.443289932012704e-014 67.32715630056518 -4.524089946296694 -6.883382752675971e-015 66.90427489472141 2.178821604601535 -1.221245327087672e-014 66.45496429231869 -5.224789063913446 -1.598721155460225e-014 66.40210364747978 -5.171905056450184 -7.105427357601002e-015 65.91314774909129 -4.74782137401243 -1.110223024625157e-015 65.56415280551273 -3.373960652875859 -1.709743457922741e-014 64.37576666928554 3.387879786276547 1.998401444325282e-015 64.28925931243514 -2.803819278215956 -4.218847493575595e-015 62.9917367767851 4.385092485936271 -1.620925615952729e-014 61.19507756283822 -1.602452660524426 -4.440892098500626e-016 59.28742052701401 5.296074911400501 -1.332267629550188e-015 59.28650032381691 6.04197392917568 -1.243449787580175e-014 58.35811662522627 6.635631182603724 -1.709743457922741e-014 57.78515090354264 5.874650261314865 -1.199040866595169e-014 57.77525833672581 4.784750574815771 -1.176836406102666e-014 57.44116641383297 3.671849467026042 -1.021405182655144e-014 57.30401815350788 2.906531919083723 -6.439293542825908e-015 57.30379456255383 2.75077805911242 -9.547918011776346e-015 55.88429106197153 -0.03456667646406508 -2.664535259100376e-015 55.50169181378808 2.988990978073575 2.886579864025407e-015 55.16996006232765 2.12775951227782 -9.769962616701378e-015 55.13332756865322 0.3227952671845813 -1.13242748511766e-014 54.85044689801873 0.6801572108332215 -4.218847493575595e-015 54.19920198224948 2.201054934649009 -3.774758283725532e-015 53.41160637054355 1.321499923955751 -9.547918011776346e-015 53.2144648101532 1.321499923955751 -1.06581410364015e-014 52.56906201832591 7.112206154098078 -1.332267629550188e-015 57.70786321714348 3.447092028318214 2.220446049250313e-015 57.2763201922981 3.025639310649089 -5.773159728050814e-015 54.34573195694713 2.677480772571314 -3.774758283725532e-015 54.19920198224948 2.622508895097968 -1.265654248072679e-014 53.46655511105519 1.559712221526819 -1.088018564132653e-014 52.56906201832591 1.852897639351411 -1.998401444325282e-015 52.38590030052741</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"74\" source=\"#ID9255\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9253\">\r\n\t\t\t\t\t<float_array count=\"222\" id=\"ID9256\">-1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 -1.942890293094018e-016 -1 -4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016 1.942890293094018e-016 1 4.208294091199821e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"74\" source=\"#ID9256\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9254\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9252\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9253\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"70\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9254\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 7 4 8 9 10 11 12 13 14 3 15 16 15 3 0 15 0 7 15 7 17 17 7 18 18 7 8 18 8 19 18 19 20 20 19 10 20 10 9 20 9 21 20 21 22 20 22 13 20 13 12 20 12 23 20 23 24 20 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 30 28 31 31 28 32 32 28 33 32 33 34 34 33 35 34 35 36 37 38 39 38 40 39 39 40 41 40 42 41 41 42 43 43 42 44 44 42 45 45 42 46 42 47 46 46 47 48 47 49 48 48 49 50 49 51 50 51 52 50 52 53 50 53 54 50 54 55 50 55 56 50 56 57 50 57 58 50 50 58 59 58 60 59 60 61 59 59 61 62 62 61 63 61 64 63 64 65 63 66 63 65 67 53 52 68 57 56 60 69 61 61 69 70 71 70 69 65 64 72 73 72 64</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9257\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9258\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID9261\">0.6801572108332215 -4.218847493575595e-015 54.19920198224948 -0.0788121217606772 -3.996802888650564e-015 54.6681123122947 -1.181372776785516 -3.774758283725532e-015 54.53035203919294 0.3227952671845813 -1.13242748511766e-014 54.85044689801873 -0.2272484944587063 -1.110223024625157e-014 53.88583526490821 -2.176220466546806 -3.774758283725532e-015 53.95962790547707 -1.260795103412708 -2.442490654175344e-015 53.8120426243395 0.2895241886283797 -5.773159728050814e-015 54.03342054604592 -2.823466907129344 -7.771561172376096e-015 54.56616229568841 -1.801563378258333 -1.48769885299771e-014 54.71403240332865 -2.361994503180465 -1.332267629550188e-014 55.33910783808045 -2.361994503180465 -1.332267629550188e-014 55.33910783808045 -1.801563378258333 -1.48769885299771e-014 54.71403240332865 -2.823466907129344 -7.771561172376096e-015 54.56616229568841 -1.181372776785516 -3.774758283725532e-015 54.53035203919294 0.6801572108332215 -4.218847493575595e-015 54.19920198224948 0.2895241886283797 -5.773159728050814e-015 54.03342054604592 -2.176220466546806 -3.774758283725532e-015 53.95962790547707 -0.2272484944587063 -1.110223024625157e-014 53.88583526490821 -1.260795103412708 -2.442490654175344e-015 53.8120426243395 0.3227952671845813 -1.13242748511766e-014 54.85044689801873 -0.0788121217606772 -3.996802888650564e-015 54.6681123122947</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID9261\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9259\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID9262\">1.66533453693773e-016 -1 -5.237650404710435e-015 1.66533453693773e-016 -1 -5.237650404710435e-015 1.66533453693773e-016 -1 -5.237650404710435e-015 1.66533453693773e-016 -1 -5.237650404710435e-015 1.66533453693773e-016 -1 -5.237650404710435e-015 1.66533453693773e-016 -1 -5.237650404710435e-015 1.66533453693773e-016 -1 -5.237650404710435e-015 1.66533453693773e-016 -1 -5.237650404710435e-015 1.66533453693773e-016 -1 -5.237650404710435e-015 1.66533453693773e-016 -1 -5.237650404710435e-015 1.66533453693773e-016 -1 -5.237650404710435e-015 -1.66533453693773e-016 1 5.237650404710435e-015 -1.66533453693773e-016 1 5.237650404710435e-015 -1.66533453693773e-016 1 5.237650404710435e-015 -1.66533453693773e-016 1 5.237650404710435e-015 -1.66533453693773e-016 1 5.237650404710435e-015 -1.66533453693773e-016 1 5.237650404710435e-015 -1.66533453693773e-016 1 5.237650404710435e-015 -1.66533453693773e-016 1 5.237650404710435e-015 -1.66533453693773e-016 1 5.237650404710435e-015 -1.66533453693773e-016 1 5.237650404710435e-015 -1.66533453693773e-016 1 5.237650404710435e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID9262\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9260\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9258\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9259\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9260\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 5 7 8 8 7 0 8 0 2 8 2 9 8 9 10 11 12 13 12 14 13 14 15 13 15 16 13 13 16 17 16 18 17 19 17 18 20 15 21 14 21 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9263\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9264\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID9267\">-3.455404982185163 -8.659739592076221e-015 53.0149837810585 -3.845895084716934 -9.103828801926284e-015 53.0149837810585 -4.029656229537601 -1.221245327087672e-014 52.16545909463675 -2.927094331732931 -5.995204332975845e-015 54.39259101551766 -5.93616738807575 -1.154631945610163e-014 53.26754503231874 -5.453797334523729 -1.06581410364015e-014 53.68082735277108 -5.224096835582689 -5.551115123125783e-015 54.25482999184238 -5.821317138605394 -2.442490654175344e-015 54.41555106103456 -2.823466907129344 -7.771561172376096e-015 54.56616229568841 -5.109246586112331 -1.354472090042691e-014 55.15027476929807 -2.361994503180465 -1.332267629550188e-014 55.33910783808045 -4.098565882108083 -2.664535259100376e-015 56.1146004338782 -2.077204474099242 -1.154631945610163e-014 55.81611834101064 -1.853043906407619 -6.661338147750939e-015 56.96635442787157 -3.889131544113566 1.554312234475219e-015 56.57103692766134 -3.370917706614382 -8.215650382226158e-015 57.70042052961987 -2.816611210367183 -1.199040866595169e-014 57.70613239449027 -2.513743295371068 -9.547918011776346e-015 57.72326836438805 -2.210875380374958 -6.661338147750939e-015 57.74040433428586 -4.557966879989829 -1.287858708565182e-014 52.39506030037994 -6.487448336978085 -7.327471962526033e-015 52.46394118750428 -5.72943718758515 -1.243449787580175e-014 52.25730002727806 -6.165867887016793 -7.105427357601002e-015 52.76242252979839 -6.946848092080339 -3.774758283725532e-015 52.94610364450772 -5.93616738807575 -1.154631945610163e-014 53.26754503231874 -3.845895084716934 -9.103828801926284e-015 53.0149837810585 -6.946848092080339 -3.774758283725532e-015 52.94610364450772 -6.165867887016793 -7.105427357601002e-015 52.76242252979839 -6.487448336978085 -7.327471962526033e-015 52.46394118750428 -4.557966879989829 -1.287858708565182e-014 52.39506030037994 -5.72943718758515 -1.243449787580175e-014 52.25730002727806 -2.210875380374958 -6.661338147750939e-015 57.74040433428586 -1.853043906407619 -6.661338147750939e-015 56.96635442787157 -2.513743295371068 -9.547918011776346e-015 57.72326836438805 -2.816611210367183 -1.199040866595169e-014 57.70613239449027 -3.370917706614382 -8.215650382226158e-015 57.70042052961987 -3.889131544113566 1.554312234475219e-015 56.57103692766134 -4.098565882108083 -2.664535259100376e-015 56.1146004338782 -2.077204474099242 -1.154631945610163e-014 55.81611834101064 -2.361994503180465 -1.332267629550188e-014 55.33910783808045 -5.109246586112331 -1.354472090042691e-014 55.15027476929807 -2.823466907129344 -7.771561172376096e-015 54.56616229568841 -5.821317138605394 -2.442490654175344e-015 54.41555106103456 -2.927094331732931 -5.995204332975845e-015 54.39259101551766 -5.224096835582689 -5.551115123125783e-015 54.25482999184238 -5.453797334523729 -1.06581410364015e-014 53.68082735277108 -3.455404982185163 -8.659739592076221e-015 53.0149837810585 -4.029656229537601 -1.221245327087672e-014 52.16545909463675</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9267\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9265\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID9268\">-1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 -1.249000902703297e-015 -1 1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015 1.249000902703297e-015 1 -1.058459005936302e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9268\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9266\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9264\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9265\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"44\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9266\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 7 3 8 7 8 9 9 8 10 9 10 11 11 10 12 11 12 13 11 13 14 14 13 15 15 13 16 16 13 17 17 13 18 19 20 21 20 19 1 20 1 22 22 1 23 23 1 4 24 25 26 26 25 27 27 25 28 25 29 28 30 28 29 31 32 33 33 32 34 34 32 35 35 32 36 36 32 37 32 38 37 38 39 37 37 39 40 39 41 40 40 41 42 41 43 42 42 43 44 44 43 45 45 43 24 24 43 25 43 46 25 47 25 46</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9269\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9270\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID9273\">8.544498651581989 -2.886579864025407e-015 40.77114958616921 6.747143325617565 -6.217248937900877e-015 41.47989294086871 7.357254983172536 -6.217248937900877e-015 40.7546669905643 9.955802521101397 -6.883382752675971e-015 41.20416436788594 9.173949205105263 -5.995204332975845e-015 42.41059441064436 6.450331476430498 -1.176836406102666e-014 42.58421333606953 8.639844715375032 4.218847493575595e-015 44.9846294265633 6.054584415480445 -6.883382752675971e-015 44.11707596298165 6.104052021361764 1.554312234475219e-015 45.25436154939224 8.207056066980041 -2.664535259100376e-015 46.47662196144756 7.060443133985462 -1.287858708565182e-014 46.34219934898834 6.499800325091647 -1.110223024625157e-014 47.10038973992876 6.765956698492959 -2.664535259100376e-015 47.63810244441047 6.765956698492959 -2.664535259100376e-015 47.63810244441047 7.060443133985462 -1.287858708565182e-014 46.34219934898834 6.499800325091647 -1.110223024625157e-014 47.10038973992876 6.104052021361764 1.554312234475219e-015 45.25436154939224 8.207056066980041 -2.664535259100376e-015 46.47662196144756 8.639844715375032 4.218847493575595e-015 44.9846294265633 6.054584415480445 -6.883382752675971e-015 44.11707596298165 6.450331476430498 -1.176836406102666e-014 42.58421333606953 9.173949205105263 -5.995204332975845e-015 42.41059441064436 6.747143325617565 -6.217248937900877e-015 41.47989294086871 9.955802521101397 -6.883382752675971e-015 41.20416436788594 8.544498651581989 -2.886579864025407e-015 40.77114958616921 7.357254983172536 -6.217248937900877e-015 40.7546669905643 8.207056066980041 -2.664535259100376e-015 46.47662196144756 6.765956698492959 -2.664535259100376e-015 47.63810244441047 7.060443133985462 -1.287858708565182e-014 46.34219934898834 7.961161441346563 -9.769962616701378e-015 47.32431736005363 7.120241968077369 -5.10702591327572e-015 50.96972709487659 6.731819851079416 -2.442490654175344e-015 47.78832344239027 5.335014929867818 -2.442490654175344e-015 54.22119078556641 6.959397912033611 -3.108624468950438e-015 51.73247205258254 6.396786310130542 -1.13242748511766e-014 54.4004547748141 5.111037431758154 -9.547918011776346e-015 56.19541018675622 6.12759399850516 8.881784197001252e-016 56.55306825048369 5.335014929867817 -9.992007221626409e-015 57.19269653910478 6.279014285425764 -7.993605777301127e-015 57.36029811621649 5.874650261314865 -1.199040866595169e-014 57.77525833672581 6.635631182603724 -1.709743457922741e-014 57.78515090354264 6.635631182603724 -1.709743457922741e-014 57.78515090354264 6.279014285425764 -7.993605777301127e-015 57.36029811621649 5.874650261314865 -1.199040866595169e-014 57.77525833672581 5.335014929867817 -9.992007221626409e-015 57.19269653910478 6.12759399850516 8.881784197001252e-016 56.55306825048369 5.111037431758154 -9.547918011776346e-015 56.19541018675622 6.396786310130542 -1.13242748511766e-014 54.4004547748141 5.335014929867818 -2.442490654175344e-015 54.22119078556641 6.959397912033611 -3.108624468950438e-015 51.73247205258254 7.120241968077369 -5.10702591327572e-015 50.96972709487659 6.731819851079416 -2.442490654175344e-015 47.78832344239027 6.765956698492959 -2.664535259100376e-015 47.63810244441047 7.961161441346563 -9.769962616701378e-015 47.32431736005363 8.207056066980041 -2.664535259100376e-015 46.47662196144756 7.060443133985462 -1.287858708565182e-014 46.34219934898834</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID9273\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9271\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID9274\">1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 1.276756478318926e-015 -1 3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.276756478318926e-015 1 -3.655347698532561e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 -1.637578961322101e-015 -1 -6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016 1.637578961322101e-015 1 6.364851798052518e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID9274\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9272\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9270\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9271\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9272\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 5 6 7 7 6 8 8 6 9 8 9 10 10 11 8 11 10 12 13 14 15 16 15 14 14 17 16 17 18 16 16 18 19 19 18 20 18 21 20 20 21 22 21 23 22 23 24 22 25 22 24 26 27 28 27 26 29 27 29 30 27 30 31 31 30 32 32 30 33 32 33 34 32 34 35 35 34 36 35 36 37 37 36 38 37 38 39 39 38 40 41 42 43 43 42 44 42 45 44 44 45 46 45 47 46 46 47 48 47 49 48 49 50 48 48 50 51 51 50 52 50 53 52 53 54 52 55 52 54</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9275\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9278\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID9281\">7.052736595257296 -2.220446049250313e-016 51.78926233818021 6.396786310130542 -1.13242748511766e-014 54.4004547748141 6.959397912033611 -3.108624468950438e-015 51.73247205258254 7.557679319120999 -1.998401444325282e-015 52.09648588696299 8.718573570891637 -1.798561299892754e-014 52.80281164419247 9.425204476340472 -1.4210854715202e-014 53.08870586771167 9.35790546634917 1.110223024625157e-015 53.98002249053062 8.785871338102766 -7.771561172376096e-015 55.72902103333374 6.12759399850516 8.881784197001252e-016 56.55306825048369 7.860521135742026 -9.992007221626409e-015 57.04076994043622 6.279014285425764 -7.993605777301127e-015 57.36029811621649 7.112206154098078 -1.332267629550188e-015 57.70786321714348 6.635631182603724 -1.709743457922741e-014 57.78515090354264 6.635631182603724 -1.709743457922741e-014 57.78515090354264 7.112206154098078 -1.332267629550188e-015 57.70786321714348 6.279014285425764 -7.993605777301127e-015 57.36029811621649 7.860521135742026 -9.992007221626409e-015 57.04076994043622 6.12759399850516 8.881784197001252e-016 56.55306825048369 8.785871338102766 -7.771561172376096e-015 55.72902103333374 6.396786310130542 -1.13242748511766e-014 54.4004547748141 9.35790546634917 1.110223024625157e-015 53.98002249053062 9.425204476340472 -1.4210854715202e-014 53.08870586771167 8.718573570891637 -1.798561299892754e-014 52.80281164419247 7.557679319120999 -1.998401444325282e-015 52.09648588696299 7.052736595257296 -2.220446049250313e-016 51.78926233818021 6.959397912033611 -3.108624468950438e-015 51.73247205258254</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID9281\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9279\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID9282\">-1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 -1.554312234475214e-015 -1 -7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016 1.554312234475214e-015 1 7.195686675677473e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID9282\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9280\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9278\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9279\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9280\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 1 5 6 1 6 7 1 7 8 8 7 9 8 9 10 10 9 11 10 11 12 13 14 15 14 16 15 15 16 17 16 18 17 17 18 19 18 20 19 20 21 19 21 22 19 22 23 19 23 24 19 25 19 24</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9283\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9284\">\r\n\t\t\t\t\t<float_array count=\"444\" id=\"ID9287\">0.08208436089006721 -1.998401444325282e-015 38.6270250975803 -3.849153653268521 -7.327471962526033e-015 38.17960143713336 -1.825150095473255 -7.327471962526033e-015 38.17960143713336 -5.215366307713312 -5.773159728050814e-015 38.19300893282059 -5.233644616493535 -5.551115123125783e-015 39.01202397866258 2.149866894079064 -3.774758283725532e-015 39.1121121968202 -5.25192292527376 -5.995204332975845e-015 39.83103902450462 4.772325262696287 -3.996802888650564e-015 39.346792876881 -5.208659855665369 -4.440892098500626e-015 37.89250601444271 7.399637501597224 -3.996802888650564e-015 40.33890552560904 6.822662577016154 -4.440892098500626e-016 39.11605968954249 7.711023429122512 -7.327471962526033e-015 39.01608866063825 -4.790229990812204 -1.043609643147647e-014 41.45984061736321 7.357254983172536 -6.217248937900877e-015 40.7546669905643 6.747143325617565 -6.217248937900877e-015 41.47989294086871 -4.338521799693778 -9.992007221626409e-015 43.05341714038084 6.450331476430498 -1.176836406102666e-014 42.58421333606953 6.054584415480445 -6.883382752675971e-015 44.11707596298165 -4.258808662600778 -4.440892098500626e-016 45.62969937356937 6.104052021361764 1.554312234475219e-015 45.25436154939224 6.499800325091647 -1.110223024625157e-014 47.10038973992876 -4.657374348064389 -1.332267629550188e-014 47.54199120119037 6.765956698492959 -2.664535259100376e-015 47.63810244441047 -4.949656264997511 -9.769962616701378e-015 48.57781650408203 6.731819851079416 -2.442490654175344e-015 47.78832344239027 5.335014929867818 -2.442490654175344e-015 54.22119078556641 1.852897639351411 -1.998401444325282e-015 52.38590030052741 -4.979029364811794 -1.176836406102666e-014 50.34006417154906 -6.16265902965606 -3.33066907387547e-015 50.64429490739207 -7.346288694500329 -1.021405182655144e-014 50.98232847454914 -7.753878042627536 -8.43769498715119e-015 51.01697059418265 -7.904930278225166 -1.176836406102666e-014 51.02980893169202 -7.785922037393888 -8.659739592076221e-015 51.62459352812275 -4.029656229537601 -1.221245327087672e-014 52.16545909463675 2.622508895097968 -1.265654248072679e-014 53.46655511105519 2.201054934649009 -3.774758283725532e-015 53.41160637054355 3.025639310649089 -5.773159728050814e-015 54.34573195694713 5.111037431758154 -9.547918011776346e-015 56.19541018675622 2.988990978073575 2.886579864025407e-015 55.16996006232765 2.75077805911242 -9.547918011776346e-015 55.88429106197153 3.389660689684054 -8.215650382226158e-015 56.59676289088161 5.335014929867817 -9.992007221626409e-015 57.19269653910478 3.671849467026042 -1.021405182655144e-014 57.30401815350788 4.784750574815771 -1.176836406102666e-014 57.44116641383297 5.874650261314865 -1.199040866595169e-014 57.77525833672581 -3.455404982185163 -8.659739592076221e-015 53.0149837810585 1.321499923955751 -1.06581410364015e-014 52.56906201832591 1.559712221526819 -1.088018564132653e-014 52.56906201832591 -0.2272484944587063 -1.110223024625157e-014 53.88583526490821 0.2895241886283797 -5.773159728050814e-015 54.03342054604592 0.6801572108332215 -4.218847493575595e-015 54.19920198224948 -1.260795103412708 -2.442490654175344e-015 53.8120426243395 -2.176220466546806 -3.774758283725532e-015 53.95962790547707 -2.927094331732931 -5.995204332975845e-015 54.39259101551766 -2.823466907129344 -7.771561172376096e-015 54.56616229568841 2.12775951227782 -9.769962616701378e-015 55.13332756865322 2.677480772571314 -3.774758283725532e-015 54.19920198224948 1.321499923955751 -9.547918011776346e-015 53.2144648101532 -4.557966879989829 -1.287858708565182e-014 52.39506030037994 -5.72943718758515 -1.243449787580175e-014 52.25730002727806 -3.845895084716934 -9.103828801926284e-015 53.0149837810585 -6.487448336978085 -7.327471962526033e-015 52.46394118750428 -7.464651039594839 -1.243449787580175e-014 53.23025578677022 -6.946848092080339 -3.774758283725532e-015 52.94610364450772 -6.165867887016793 -7.105427357601002e-015 52.76242252979839 -5.93616738807575 -1.154631945610163e-014 53.26754503231874 -6.822110286776573 -5.773159728050814e-015 54.75140871541126 -5.453797334523729 -1.06581410364015e-014 53.68082735277108 -5.821317138605394 -2.442490654175344e-015 54.41555106103456 -5.224096835582689 -5.551115123125783e-015 54.25482999184238 -5.109246586112331 -1.354472090042691e-014 55.15027476929807 -6.128840506612255 -9.547918011776346e-015 55.5795923435074 -4.098565882108083 -2.664535259100376e-015 56.1146004338782 -3.889131544113566 1.554312234475219e-015 56.57103692766134 -3.889131544113566 1.554312234475219e-015 56.57103692766134 -4.098565882108083 -2.664535259100376e-015 56.1146004338782 -6.128840506612255 -9.547918011776346e-015 55.5795923435074 -5.109246586112331 -1.354472090042691e-014 55.15027476929807 -6.822110286776573 -5.773159728050814e-015 54.75140871541126 -5.821317138605394 -2.442490654175344e-015 54.41555106103456 -5.224096835582689 -5.551115123125783e-015 54.25482999184238 -5.453797334523729 -1.06581410364015e-014 53.68082735277108 -5.93616738807575 -1.154631945610163e-014 53.26754503231874 -7.464651039594839 -1.243449787580175e-014 53.23025578677022 -6.946848092080339 -3.774758283725532e-015 52.94610364450772 -6.165867887016793 -7.105427357601002e-015 52.76242252979839 -6.487448336978085 -7.327471962526033e-015 52.46394118750428 -4.029656229537601 -1.221245327087672e-014 52.16545909463675 -7.785922037393888 -8.659739592076221e-015 51.62459352812275 -5.72943718758515 -1.243449787580175e-014 52.25730002727806 -3.845895084716934 -9.103828801926284e-015 53.0149837810585 -4.557966879989829 -1.287858708565182e-014 52.39506030037994 1.559712221526819 -1.088018564132653e-014 52.56906201832591 1.321499923955751 -1.06581410364015e-014 52.56906201832591 1.321499923955751 -9.547918011776346e-015 53.2144648101532 2.677480772571314 -3.774758283725532e-015 54.19920198224948 2.622508895097968 -1.265654248072679e-014 53.46655511105519 2.12775951227782 -9.769962616701378e-015 55.13332756865322 2.201054934649009 -3.774758283725532e-015 53.41160637054355 -2.823466907129344 -7.771561172376096e-015 54.56616229568841 -2.176220466546806 -3.774758283725532e-015 53.95962790547707 -2.927094331732931 -5.995204332975845e-015 54.39259101551766 -1.260795103412708 -2.442490654175344e-015 53.8120426243395 -3.455404982185163 -8.659739592076221e-015 53.0149837810585 -0.2272484944587063 -1.110223024625157e-014 53.88583526490821 0.6801572108332215 -4.218847493575595e-015 54.19920198224948 0.2895241886283797 -5.773159728050814e-015 54.03342054604592 1.852897639351411 -1.998401444325282e-015 52.38590030052741 5.874650261314865 -1.199040866595169e-014 57.77525833672581 5.335014929867817 -9.992007221626409e-015 57.19269653910478 4.784750574815771 -1.176836406102666e-014 57.44116641383297 3.671849467026042 -1.021405182655144e-014 57.30401815350788 3.389660689684054 -8.215650382226158e-015 56.59676289088161 5.111037431758154 -9.547918011776346e-015 56.19541018675622 2.75077805911242 -9.547918011776346e-015 55.88429106197153 2.988990978073575 2.886579864025407e-015 55.16996006232765 3.025639310649089 -5.773159728050814e-015 54.34573195694713 5.335014929867818 -2.442490654175344e-015 54.22119078556641 -7.904930278225166 -1.176836406102666e-014 51.02980893169202 -7.753878042627536 -8.43769498715119e-015 51.01697059418265 -7.346288694500329 -1.021405182655144e-014 50.98232847454914 -6.16265902965606 -3.33066907387547e-015 50.64429490739207 -4.979029364811794 -1.176836406102666e-014 50.34006417154906 -4.949656264997511 -9.769962616701378e-015 48.57781650408203 6.731819851079416 -2.442490654175344e-015 47.78832344239027 6.765956698492959 -2.664535259100376e-015 47.63810244441047 -4.657374348064389 -1.332267629550188e-014 47.54199120119037 6.499800325091647 -1.110223024625157e-014 47.10038973992876 -4.258808662600778 -4.440892098500626e-016 45.62969937356937 6.104052021361764 1.554312234475219e-015 45.25436154939224 6.054584415480445 -6.883382752675971e-015 44.11707596298165 -4.338521799693778 -9.992007221626409e-015 43.05341714038084 6.450331476430498 -1.176836406102666e-014 42.58421333606953 6.747143325617565 -6.217248937900877e-015 41.47989294086871 -4.790229990812204 -1.043609643147647e-014 41.45984061736321 7.357254983172536 -6.217248937900877e-015 40.7546669905643 7.399637501597224 -3.996802888650564e-015 40.33890552560904 -5.25192292527376 -5.995204332975845e-015 39.83103902450462 4.772325262696287 -3.996802888650564e-015 39.346792876881 6.822662577016154 -4.440892098500626e-016 39.11605968954249 7.711023429122512 -7.327471962526033e-015 39.01608866063825 -3.849153653268521 -7.327471962526033e-015 38.17960143713336 -5.208659855665369 -4.440892098500626e-015 37.89250601444271 -5.215366307713312 -5.773159728050814e-015 38.19300893282059 2.149866894079064 -3.774758283725532e-015 39.1121121968202 -5.233644616493535 -5.551115123125783e-015 39.01202397866258 0.08208436089006721 -1.998401444325282e-015 38.6270250975803 -1.825150095473255 -7.327471962526033e-015 38.17960143713336</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"148\" source=\"#ID9287\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9285\">\r\n\t\t\t\t\t<float_array count=\"444\" id=\"ID9288\">1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 1.110223024625153e-016 -1 -1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016 -1.110223024625153e-016 1 1.201940741634316e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"148\" source=\"#ID9288\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9286\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9284\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9285\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9286\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 3 8 1 9 10 11 10 9 7 7 9 6 6 9 12 12 9 13 12 13 14 12 14 15 15 14 16 15 16 17 15 17 18 18 17 19 18 19 20 18 20 21 21 20 22 21 22 23 23 22 24 23 24 25 23 25 26 23 26 27 27 26 28 28 26 29 29 26 30 30 26 31 31 26 32 32 26 33 26 25 34 26 34 35 34 25 36 36 25 37 36 37 38 38 37 39 39 37 40 40 37 41 40 41 42 42 41 43 43 41 44 26 45 33 45 26 46 46 26 47 45 46 48 48 46 49 49 46 50 45 48 51 45 52 53 52 45 51 53 52 54 34 55 35 55 34 56 57 46 47 33 58 59 58 33 60 32 61 62 61 32 59 59 32 33 62 61 63 63 61 64 62 63 65 62 65 66 66 65 67 66 67 68 68 67 69 66 68 70 66 70 71 71 70 72 71 72 73 74 75 76 75 77 76 76 77 78 77 79 78 80 81 79 79 81 78 81 82 78 78 82 83 82 84 83 85 86 84 84 86 83 87 88 89 89 88 86 83 86 88 90 87 91 89 91 87 92 93 94 95 96 97 98 97 96 99 100 101 102 103 100 101 100 103 102 104 103 105 93 106 106 93 104 104 93 103 92 107 93 93 107 103 87 103 107 108 109 110 110 109 111 111 109 112 109 113 112 112 113 114 114 113 115 115 113 116 113 117 116 116 117 96 98 96 107 96 117 107 87 107 88 88 107 118 118 107 119 119 107 120 120 107 121 121 107 122 122 107 123 107 117 123 117 124 123 124 125 123 123 125 126 125 127 126 126 127 128 127 129 128 129 130 128 128 130 131 130 132 131 132 133 131 131 133 134 133 135 134 135 136 134 134 136 137 137 136 138 138 136 139 140 139 136 141 142 143 138 144 137 137 144 145 144 146 145 145 146 143 143 146 141 147 141 146</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9289\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9290\">\r\n\t\t\t\t\t<float_array count=\"258\" id=\"ID9293\">-10.28854369662224 -5.995204332975845e-015 38.05636176032361 -10.87035505041431 -6.883382752675971e-015 37.82472291898986 -10.512547293107 -6.883382752675971e-015 37.81209960103085 -11.37801415235175 -3.774758283725532e-015 37.84263293387264 -11.88711391315179 -6.883382752675971e-015 37.99529659578718 -11.94820523820216 -7.771561172376096e-015 38.27009133734817 -9.891446976844238 -1.088018564132653e-014 38.17849283997006 -9.85071859829077 -1.554312234475219e-015 38.60595199401916 -11.88711391315179 -1.088018564132653e-014 38.57541866117735 -11.96856942747889 -1.998401444325282e-015 38.96216745534447 -9.647079191082751 -5.10702591327572e-015 38.68737271378347 -9.667443380359481 -6.883382752675971e-015 39.03341039749481 -11.95838733284053 -5.995204332975845e-015 39.44051399631623 -10.10526723591113 -1.13242748511766e-014 39.28785033440154 -9.981070661196155 -9.992007221626409e-015 39.58506725479159 -12.11111626685704 -4.662936703425658e-015 39.72548651549113 -9.918972373838669 -9.992007221626409e-015 39.73367571498664 -12.08057122572144 -1.554312234475219e-015 40.20383305646271 -9.856874086481183 -9.547918011776346e-015 39.88228417518167 -8.649245101539227 -7.327471962526033e-015 40.16312269658055 -7.295042670771169 -1.110223024625157e-014 41.14017058317822 -11.85656762923668 -6.661338147750939e-016 40.46845002040976 -11.81198355180037 -1.13242748511766e-014 40.89479972836266 -11.62042580275876 -2.442490654175344e-015 41.26666699870982 -6.490667136577121 -6.217248937900877e-015 42.21899474476798 -11.39837834162849 -2.886579864025407e-015 41.39461052008486 -10.76750853361012 -2.220446049250313e-016 41.50111766029097 -10.53227890748213 -4.218847493575595e-015 41.88180106943598 -10.24721008432175 2.220446049250313e-016 42.85400700593142 -5.825229409314689 0 43.99209420491504 -10.06050106589157 -1.13242748511766e-014 43.49387622866838 -9.856874086481183 -1.043609643147647e-014 43.87241750084382 -9.583613971516611 -7.771561172376096e-015 44.13417887360997 -4.949047009829428 -9.325873406851315e-015 46.32673571360873 -9.028775129297619 -5.995204332975845e-015 44.66567018554934 -8.345948427522885 -1.265654248072679e-014 46.70239360081009 -4.657374348064389 -1.332267629550188e-014 47.54199120119037 -7.917780970768019 -6.661338147750939e-015 48.72159712779153 -4.949656264997511 -9.769962616701378e-015 48.57781650408203 -4.979029364811794 -1.176836406102666e-014 50.34006417154906 -7.753878042627536 -8.43769498715119e-015 51.01697059418265 -6.16265902965606 -3.33066907387547e-015 50.64429490739207 -7.346288694500329 -1.021405182655144e-014 50.98232847454914 -7.346288694500329 -1.021405182655144e-014 50.98232847454914 -6.16265902965606 -3.33066907387547e-015 50.64429490739207 -7.753878042627536 -8.43769498715119e-015 51.01697059418265 -4.979029364811794 -1.176836406102666e-014 50.34006417154906 -7.917780970768019 -6.661338147750939e-015 48.72159712779153 -4.949656264997511 -9.769962616701378e-015 48.57781650408203 -4.657374348064389 -1.332267629550188e-014 47.54199120119037 -8.345948427522885 -1.265654248072679e-014 46.70239360081009 -4.949047009829428 -9.325873406851315e-015 46.32673571360873 -9.028775129297619 -5.995204332975845e-015 44.66567018554934 -9.583613971516611 -7.771561172376096e-015 44.13417887360997 -5.825229409314689 0 43.99209420491504 -9.856874086481183 -1.043609643147647e-014 43.87241750084382 -10.06050106589157 -1.13242748511766e-014 43.49387622866838 -10.24721008432175 2.220446049250313e-016 42.85400700593142 -6.490667136577121 -6.217248937900877e-015 42.21899474476798 -10.53227890748213 -4.218847493575595e-015 41.88180106943598 -10.76750853361012 -2.220446049250313e-016 41.50111766029097 -11.39837834162849 -2.886579864025407e-015 41.39461052008486 -11.62042580275876 -2.442490654175344e-015 41.26666699870982 -7.295042670771169 -1.110223024625157e-014 41.14017058317822 -11.81198355180037 -1.13242748511766e-014 40.89479972836266 -11.85656762923668 -6.661338147750939e-016 40.46845002040976 -12.08057122572144 -1.554312234475219e-015 40.20383305646271 -8.649245101539227 -7.327471962526033e-015 40.16312269658055 -9.856874086481183 -9.547918011776346e-015 39.88228417518167 -9.918972373838669 -9.992007221626409e-015 39.73367571498664 -12.11111626685704 -4.662936703425658e-015 39.72548651549113 -9.981070661196155 -9.992007221626409e-015 39.58506725479159 -11.95838733284053 -5.995204332975845e-015 39.44051399631623 -10.10526723591113 -1.13242748511766e-014 39.28785033440154 -9.667443380359481 -6.883382752675971e-015 39.03341039749481 -11.96856942747889 -1.998401444325282e-015 38.96216745534447 -9.647079191082751 -5.10702591327572e-015 38.68737271378347 -9.85071859829077 -1.554312234475219e-015 38.60595199401916 -11.88711391315179 -1.088018564132653e-014 38.57541866117735 -11.94820523820216 -7.771561172376096e-015 38.27009133734817 -9.891446976844238 -1.088018564132653e-014 38.17849283997006 -10.28854369662224 -5.995204332975845e-015 38.05636176032361 -11.88711391315179 -6.883382752675971e-015 37.99529659578718 -11.37801415235175 -3.774758283725532e-015 37.84263293387264 -10.87035505041431 -6.883382752675971e-015 37.82472291898986 -10.512547293107 -6.883382752675971e-015 37.81209960103085</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"86\" source=\"#ID9293\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9291\">\r\n\t\t\t\t\t<float_array count=\"258\" id=\"ID9294\">-6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 -6.106226635438342e-016 -1 4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017 6.106226635438342e-016 1 -4.658080307167557e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"86\" source=\"#ID9294\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9292\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9290\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9291\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"82\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9292\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7 5 7 8 8 7 9 9 7 10 9 10 11 9 11 12 12 11 13 12 13 14 12 14 15 15 14 16 15 16 17 17 16 18 17 18 19 17 19 20 17 20 21 21 20 22 22 20 23 23 20 24 23 24 25 25 24 26 26 24 27 27 24 28 28 24 29 28 29 30 30 29 31 31 29 32 32 29 33 32 33 34 34 33 35 35 33 36 35 36 37 37 36 38 37 38 39 37 39 40 40 39 41 40 41 42 43 44 45 44 46 45 45 46 47 46 48 47 48 49 47 47 49 50 49 51 50 50 51 52 52 51 53 51 54 53 53 54 55 55 54 56 56 54 57 54 58 57 57 58 59 59 58 60 60 58 61 61 58 62 58 63 62 62 63 64 64 63 65 65 63 66 63 67 66 67 68 66 68 69 66 66 69 70 69 71 70 70 71 72 71 73 72 73 74 72 72 74 75 74 76 75 76 77 75 75 77 78 78 77 79 77 80 79 80 81 79 79 81 82 82 81 83 83 81 84 85 84 81</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9295\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9296\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID9299\">-0.1322873985056665 -5.10702591327572e-015 37.17186737786056 -1.620803546577186 -4.662936703425658e-015 37.54737267805567 -1.416456997681115 -1.332267629550188e-015 36.91514391897799 0.4323929079660669 -1.776356839400251e-015 37.28475486681326 0.2572386344280631 -1.776356839400251e-015 37.95588998219679 -1.825150095473255 -7.327471962526033e-015 38.17960143713336 0.08208436089006721 -1.998401444325282e-015 38.6270250975803 0.08208436089006721 -1.998401444325282e-015 38.6270250975803 0.2572386344280631 -1.776356839400251e-015 37.95588998219679 -1.825150095473255 -7.327471962526033e-015 38.17960143713336 -1.620803546577186 -4.662936703425658e-015 37.54737267805567 0.4323929079660669 -1.776356839400251e-015 37.28475486681326 -0.1322873985056665 -5.10702591327572e-015 37.17186737786056 -1.416456997681115 -1.332267629550188e-015 36.91514391897799</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID9299\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9297\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID9300\">1.387778780781441e-015 -1 -7.587488566798215e-016 1.387778780781441e-015 -1 -7.587488566798215e-016 1.387778780781441e-015 -1 -7.587488566798215e-016 1.387778780781441e-015 -1 -7.587488566798215e-016 1.387778780781441e-015 -1 -7.587488566798215e-016 1.387778780781441e-015 -1 -7.587488566798215e-016 1.387778780781441e-015 -1 -7.587488566798215e-016 -1.387778780781441e-015 1 7.587488566798215e-016 -1.387778780781441e-015 1 7.587488566798215e-016 -1.387778780781441e-015 1 7.587488566798215e-016 -1.387778780781441e-015 1 7.587488566798215e-016 -1.387778780781441e-015 1 7.587488566798215e-016 -1.387778780781441e-015 1 7.587488566798215e-016 -1.387778780781441e-015 1 7.587488566798215e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID9300\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9298\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9296\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9297\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9298\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 1 4 5 5 4 6 7 8 9 9 8 10 8 11 10 11 12 10 13 10 12</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9301\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9302\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID9305\">-1.416456997681115 -1.332267629550188e-015 36.91514391897799 -4.004867959149173 -3.774758283725532e-015 36.92250676969241 -3.674000001120437 -3.552713678800501e-015 36.89569130375513 -1.620803546577186 -4.662936703425658e-015 37.54737267805567 -5.114156808975483 -1.110223024625157e-015 37.01240999738577 -5.204060005609987 -7.105427357601002e-015 37.68639578568691 -1.825150095473255 -7.327471962526033e-015 38.17960143713336 -5.208659855665369 -4.440892098500626e-015 37.89250601444271 -3.849153653268521 -7.327471962526033e-015 38.17960143713336 -3.849153653268521 -7.327471962526033e-015 38.17960143713336 -1.825150095473255 -7.327471962526033e-015 38.17960143713336 -5.208659855665369 -4.440892098500626e-015 37.89250601444271 -5.204060005609987 -7.105427357601002e-015 37.68639578568691 -1.620803546577186 -4.662936703425658e-015 37.54737267805567 -5.114156808975483 -1.110223024625157e-015 37.01240999738577 -4.004867959149173 -3.774758283725532e-015 36.92250676969241 -1.416456997681115 -1.332267629550188e-015 36.91514391897799 -3.674000001120437 -3.552713678800501e-015 36.89569130375513</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID9305\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9303\">\r\n\t\t\t\t\t<float_array count=\"54\" id=\"ID9306\">1.110223024625153e-016 -1 -3.714279692358714e-015 1.110223024625153e-016 -1 -3.714279692358714e-015 1.110223024625153e-016 -1 -3.714279692358714e-015 1.110223024625153e-016 -1 -3.714279692358714e-015 1.110223024625153e-016 -1 -3.714279692358714e-015 1.110223024625153e-016 -1 -3.714279692358714e-015 1.110223024625153e-016 -1 -3.714279692358714e-015 1.110223024625153e-016 -1 -3.714279692358714e-015 1.110223024625153e-016 -1 -3.714279692358714e-015 -1.110223024625153e-016 1 3.714279692358714e-015 -1.110223024625153e-016 1 3.714279692358714e-015 -1.110223024625153e-016 1 3.714279692358714e-015 -1.110223024625153e-016 1 3.714279692358714e-015 -1.110223024625153e-016 1 3.714279692358714e-015 -1.110223024625153e-016 1 3.714279692358714e-015 -1.110223024625153e-016 1 3.714279692358714e-015 -1.110223024625153e-016 1 3.714279692358714e-015 -1.110223024625153e-016 1 3.714279692358714e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"18\" source=\"#ID9306\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9304\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9302\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9303\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9304\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 5 6 7 7 6 8 9 10 11 11 10 12 10 13 12 12 13 14 14 13 15 13 16 15 17 15 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9307\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9308\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9311\">3.464070161525733 2.220446049250313e-016 37.89082954047724 0.2572386344280631 -1.776356839400251e-015 37.95588998219679 0.4323929079660669 -1.776356839400251e-015 37.28475486681326 4.998400792818051 -5.551115123125783e-015 38.19756368757727 0.08208436089006721 -1.998401444325282e-015 38.6270250975803 4.928395889397682 -2.220446049250313e-015 38.55342563496178 4.772325262696287 -3.996802888650564e-015 39.346792876881 2.149866894079064 -3.774758283725532e-015 39.1121121968202 2.149866894079064 -3.774758283725532e-015 39.1121121968202 4.772325262696287 -3.996802888650564e-015 39.346792876881 0.08208436089006721 -1.998401444325282e-015 38.6270250975803 4.928395889397682 -2.220446049250313e-015 38.55342563496178 4.998400792818051 -5.551115123125783e-015 38.19756368757727 0.2572386344280631 -1.776356839400251e-015 37.95588998219679 3.464070161525733 2.220446049250313e-016 37.89082954047724 0.4323929079660669 -1.776356839400251e-015 37.28475486681326 5.875529233206914 -1.110223024625157e-015 38.83474266225214 4.772325262696287 -3.996802888650564e-015 39.346792876881 4.928395889397682 -2.220446049250313e-015 38.55342563496178 6.822662577016154 -4.440892098500626e-016 39.11605968954249 6.822662577016154 -4.440892098500626e-016 39.11605968954249 5.875529233206914 -1.110223024625157e-015 38.83474266225214 4.772325262696287 -3.996802888650564e-015 39.346792876881 4.928395889397682 -2.220446049250313e-015 38.55342563496178</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9311\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9309\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9312\">-1.942890293094018e-016 -1 -1.009873713659508e-015 -1.942890293094018e-016 -1 -1.009873713659508e-015 -1.942890293094018e-016 -1 -1.009873713659508e-015 -1.942890293094018e-016 -1 -1.009873713659508e-015 -1.942890293094018e-016 -1 -1.009873713659508e-015 -1.942890293094018e-016 -1 -1.009873713659508e-015 -1.942890293094018e-016 -1 -1.009873713659508e-015 -1.942890293094018e-016 -1 -1.009873713659508e-015 1.942890293094018e-016 1 1.009873713659508e-015 1.942890293094018e-016 1 1.009873713659508e-015 1.942890293094018e-016 1 1.009873713659508e-015 1.942890293094018e-016 1 1.009873713659508e-015 1.942890293094018e-016 1 1.009873713659508e-015 1.942890293094018e-016 1 1.009873713659508e-015 1.942890293094018e-016 1 1.009873713659508e-015 1.942890293094018e-016 1 1.009873713659508e-015 1.526556658859586e-015 -1 -2.183571526890288e-015 1.526556658859586e-015 -1 -2.183571526890288e-015 1.526556658859586e-015 -1 -2.183571526890288e-015 1.526556658859586e-015 -1 -2.183571526890288e-015 -1.526556658859586e-015 1 2.183571526890288e-015 -1.526556658859586e-015 1 2.183571526890288e-015 -1.526556658859586e-015 1 2.183571526890288e-015 -1.526556658859586e-015 1 2.183571526890288e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9312\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9310\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9308\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9309\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9310\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 4 6 7 8 9 10 9 11 10 11 12 10 10 12 13 12 14 13 15 13 14 16 17 18 17 16 19 20 21 22 23 22 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9313\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9314\">\r\n\t\t\t\t\t<float_array count=\"618\" id=\"ID9317\">7.573900080651802 -3.33066907387547e-015 37.12428974320846 4.36532980206706 -5.10702591327572e-015 36.60011543175192 7.659845758280311 -6.661338147750939e-015 35.74975760866695 3.479498753545913 -5.10702591327572e-015 37.02644272085699 3.464070161525733 2.220446049250313e-016 37.89082954047724 4.998400792818051 -5.551115123125783e-015 38.19756368757727 6.822662577016154 -4.440892098500626e-016 39.11605968954249 4.928395889397682 -2.220446049250313e-015 38.55342563496178 5.875529233206914 -1.110223024625157e-015 38.83474266225214 5.875529233206914 -1.110223024625157e-015 38.83474266225214 6.822662577016154 -4.440892098500626e-016 39.11605968954249 4.928395889397682 -2.220446049250313e-015 38.55342563496178 4.998400792818051 -5.551115123125783e-015 38.19756368757727 7.573900080651802 -3.33066907387547e-015 37.12428974320846 3.464070161525733 2.220446049250313e-016 37.89082954047724 3.479498753545913 -5.10702591327572e-015 37.02644272085699 4.36532980206706 -5.10702591327572e-015 36.60011543175192 7.659845758280311 -6.661338147750939e-015 35.74975760866695 3.561210280505256 0 0.6921594316626119 1.615734247904197 6.661338147750939e-016 1.713918235272216 2.96767481949435 6.661338147750939e-016 0.5932796200784194 4.484486283433371 6.661338147750939e-016 2.537916665140188 -0.4616380014638803 1.110223024625157e-015 2.537916665140188 4.616383742980221 6.661338147750939e-016 4.185915026022934 -1.071660178875625 6.661338147750939e-016 2.554396633737555 -1.285992463206817 1.110223024625157e-015 3.526715531555224 -1.024619721881043 4.440892098500626e-016 3.975256796048192 -1.155664285928197 0 4.618289753783403 3.627158388888764 -2.220446049250313e-016 5.636153013164065 -1.588901389935309 -1.332267629550188e-015 6.744175237213939 4.583409067398373 -4.440892098500626e-016 10.08574678617113 -1.383708508017268 -1.110223024625157e-015 8.538844680625735 -1.028518404389649 -1.554312234475219e-015 13.09388240156886 4.223813848506744 2.220446049250313e-016 13.62171801570906 -1.126620871331006 -1.554312234475219e-015 18.87493477315661 3.864218629615116 -1.332267629550188e-015 17.15768924524701 3.354478837234485 -4.662936703425658e-015 19.9430722682518 -1.330205596229522 -2.442490654175344e-015 21.8867050458764 3.770719336557213 -3.33066907387547e-015 22.31987231192795 -0.4344285812256326 -3.996802888650564e-015 27.46254872208918 4.662033529414631 -4.884981308350689e-015 24.88711763932952 6.399315366958134 -3.552713678800501e-015 29.65027402937977 -0.4344285812256334 -6.217248937900877e-015 29.94522392302535 7.487954403022959 -1.021405182655144e-014 33.02933072358728 0.05417649842223948 -7.327471962526033e-015 32.30580031897851 -0.1294392411656977 2.220446049250313e-016 35.74746160411534 7.659845758280311 -6.661338147750939e-015 35.74975760866695 -0.1322873985056665 -5.10702591327572e-015 37.17186737786056 4.36532980206706 -5.10702591327572e-015 36.60011543175192 3.479498753545913 -5.10702591327572e-015 37.02644272085699 3.464070161525733 2.220446049250313e-016 37.89082954047724 0.4323929079660669 -1.776356839400251e-015 37.28475486681326 -2.050341789416118 2.220446049250313e-016 2.014218967900888 -2.539010872222049 6.661338147750939e-016 1.483198299622473 -2.451704631484928 1.110223024625157e-015 0.9923117300531759 -2.506036818030292 -2.220446049250313e-016 2.208317293193032 -1.285992463206817 1.110223024625157e-015 3.526715531555224 -1.071660178875625 6.661338147750939e-016 2.554396633737555 -2.506036818030292 -2.220446049250313e-016 2.208317293193032 -2.050341789416118 2.220446049250313e-016 2.014218967900888 -2.539010872222049 6.661338147750939e-016 1.483198299622473 -2.451704631484928 1.110223024625157e-015 0.9923117300531759 0.4323929079660669 -1.776356839400251e-015 37.28475486681326 3.464070161525733 2.220446049250313e-016 37.89082954047724 -0.1322873985056665 -5.10702591327572e-015 37.17186737786056 3.479498753545913 -5.10702591327572e-015 37.02644272085699 4.36532980206706 -5.10702591327572e-015 36.60011543175192 7.659845758280311 -6.661338147750939e-015 35.74975760866695 -0.1294392411656977 2.220446049250313e-016 35.74746160411534 7.487954403022959 -1.021405182655144e-014 33.02933072358728 0.05417649842223948 -7.327471962526033e-015 32.30580031897851 -0.4344285812256334 -6.217248937900877e-015 29.94522392302535 6.399315366958134 -3.552713678800501e-015 29.65027402937977 -0.4344285812256326 -3.996802888650564e-015 27.46254872208918 4.662033529414631 -4.884981308350689e-015 24.88711763932952 3.770719336557213 -3.33066907387547e-015 22.31987231192795 -1.330205596229522 -2.442490654175344e-015 21.8867050458764 3.354478837234485 -4.662936703425658e-015 19.9430722682518 -1.126620871331006 -1.554312234475219e-015 18.87493477315661 3.864218629615116 -1.332267629550188e-015 17.15768924524701 4.223813848506744 2.220446049250313e-016 13.62171801570906 -1.028518404389649 -1.554312234475219e-015 13.09388240156886 4.583409067398373 -4.440892098500626e-016 10.08574678617113 -1.383708508017268 -1.110223024625157e-015 8.538844680625735 -1.588901389935309 -1.332267629550188e-015 6.744175237213939 3.627158388888764 -2.220446049250313e-016 5.636153013164065 -1.155664285928197 0 4.618289753783403 4.616383742980221 6.661338147750939e-016 4.185915026022934 -1.024619721881043 4.440892098500626e-016 3.975256796048192 -0.4616380014638803 1.110223024625157e-015 2.537916665140188 4.484486283433371 6.661338147750939e-016 2.537916665140188 1.615734247904197 6.661338147750939e-016 1.713918235272216 3.561210280505256 0 0.6921594316626119 2.96767481949435 6.661338147750939e-016 0.5932796200784194 4.115138350313337 -1.554312234475219e-015 22.3586604528964 3.770719336557213 -3.33066907387547e-015 22.31987231192795 3.354478837234485 -4.662936703425658e-015 19.9430722682518 4.662033529414631 -4.884981308350689e-015 24.88711763932952 4.61638374298022 -1.554312234475219e-015 23.34717799883566 6.604731949234513 -1.998401444325282e-015 27.26844514278219 6.399315366958134 -3.552713678800501e-015 29.65027402937977 8.017745204178931 -5.551115123125783e-015 31.0684835411269 7.487954403022959 -1.021405182655144e-014 33.02933072358728 8.286890290173114 -5.995204332975845e-015 33.55700420902871 7.659845758280311 -6.661338147750939e-015 35.74975760866695 8.219603707979442 -9.103828801926284e-015 36.78535548776678 7.573900080651802 -3.33066907387547e-015 37.12428974320846 7.711023429122512 -7.327471962526033e-015 39.01608866063825 6.822662577016154 -4.440892098500626e-016 39.11605968954249 6.822662577016154 -4.440892098500626e-016 39.11605968954249 7.711023429122512 -7.327471962526033e-015 39.01608866063825 7.573900080651802 -3.33066907387547e-015 37.12428974320846 8.219603707979442 -9.103828801926284e-015 36.78535548776678 7.659845758280311 -6.661338147750939e-015 35.74975760866695 8.286890290173114 -5.995204332975845e-015 33.55700420902871 7.487954403022959 -1.021405182655144e-014 33.02933072358728 8.017745204178931 -5.551115123125783e-015 31.0684835411269 6.399315366958134 -3.552713678800501e-015 29.65027402937977 6.604731949234513 -1.998401444325282e-015 27.26844514278219 4.662033529414631 -4.884981308350689e-015 24.88711763932952 4.61638374298022 -1.554312234475219e-015 23.34717799883566 4.115138350313337 -1.554312234475219e-015 22.3586604528964 3.770719336557213 -3.33066907387547e-015 22.31987231192795 3.354478837234485 -4.662936703425658e-015 19.9430722682518 5.4796845086396 -2.220446049250313e-016 4.317062474066688 3.627158388888764 -2.220446049250313e-016 5.636153013164065 4.616383742980221 6.661338147750939e-016 4.185915026022934 6.342985274298981 -6.661338147750939e-016 4.448209922110445 7.228509213117253 0 5.30282929516073 8.090173414579789 8.881784197001252e-016 6.134421629769471 4.583409067398373 -4.440892098500626e-016 10.08574678617113 8.214008713464525 -1.332267629550188e-015 6.253935107446413 7.534353585657632 -1.554312234475219e-015 7.137105755306265 6.820715887877094 -2.442490654175344e-015 8.971382215451795 8.247991283437836 -8.881784197001252e-016 9.752647489665486 9.097559261111657 -2.664535259100376e-015 11.07740308616848 5.291494025175872 2.220446049250313e-016 12.33422201709851 4.223813848506744 2.220446049250313e-016 13.62171801570906 7.024612550497177 -2.886579864025407e-015 11.85866911095576 8.723749748624641 -1.110223024625157e-015 11.62089190731064 8.723749748624641 -1.110223024625157e-015 11.62089190731064 9.097559261111657 -2.664535259100376e-015 11.07740308616848 7.024612550497177 -2.886579864025407e-015 11.85866911095576 5.291494025175872 2.220446049250313e-016 12.33422201709851 4.223813848506744 2.220446049250313e-016 13.62171801570906 4.583409067398373 -4.440892098500626e-016 10.08574678617113 8.247991283437836 -8.881784197001252e-016 9.752647489665486 6.820715887877094 -2.442490654175344e-015 8.971382215451795 7.534353585657632 -1.554312234475219e-015 7.137105755306265 8.214008713464525 -1.332267629550188e-015 6.253935107446413 8.090173414579789 8.881784197001252e-016 6.134421629769471 3.627158388888764 -2.220446049250313e-016 5.636153013164065 7.228509213117253 0 5.30282929516073 6.342985274298981 -6.661338147750939e-016 4.448209922110445 5.4796845086396 -2.220446049250313e-016 4.317062474066688 4.616383742980221 6.661338147750939e-016 4.185915026022934 -0.1294392411656977 2.220446049250313e-016 35.74746160411534 -1.416456997681115 -1.332267629550188e-015 36.91514391897799 -3.674000001120437 -3.552713678800501e-015 36.89569130375513 -0.1322873985056665 -5.10702591327572e-015 37.17186737786056 -1.126620871331006 -1.554312234475219e-015 18.87493477315661 -2.388851385375755 -3.33066907387547e-015 15.17127227296544 -1.028518404389649 -1.554312234475219e-015 13.09388240156886 -3.854669109878348 -6.661338147750939e-016 17.40974986393575 -4.587577350739904 0 19.85172521301967 -1.330205596229522 -2.442490654175344e-015 21.8867050458764 -5.243940300136815 0 26.01538583486594 -0.4344285812256326 -3.996802888650564e-015 27.46254872208918 -5.54847851114093 -9.325873406851315e-015 31.62750548230734 -0.4344285812256334 -6.217248937900877e-015 29.94522392302535 0.05417649842223948 -7.327471962526033e-015 32.30580031897851 -5.452491794377552 -4.218847493575595e-015 33.49843770390802 -4.85790276681851 -2.886579864025407e-015 34.4425804451816 -4.263313739259468 -1.332267629550188e-015 35.38672318645519 -4.004867959149173 -3.774758283725532e-015 36.92250676969241 -3.674000001120437 -3.552713678800501e-015 36.89569130375513 -0.1294392411656977 2.220446049250313e-016 35.74746160411534 -4.004867959149173 -3.774758283725532e-015 36.92250676969241 -4.263313739259468 -1.332267629550188e-015 35.38672318645519 -4.85790276681851 -2.886579864025407e-015 34.4425804451816 -5.452491794377552 -4.218847493575595e-015 33.49843770390802 0.05417649842223948 -7.327471962526033e-015 32.30580031897851 -5.54847851114093 -9.325873406851315e-015 31.62750548230734 -0.4344285812256334 -6.217248937900877e-015 29.94522392302535 -0.4344285812256326 -3.996802888650564e-015 27.46254872208918 -5.243940300136815 0 26.01538583486594 -1.330205596229522 -2.442490654175344e-015 21.8867050458764 -4.587577350739904 0 19.85172521301967 -1.126620871331006 -1.554312234475219e-015 18.87493477315661 -3.854669109878348 -6.661338147750939e-016 17.40974986393575 -2.388851385375755 -3.33066907387547e-015 15.17127227296544 -1.028518404389649 -1.554312234475219e-015 13.09388240156886 -0.1322873985056665 -5.10702591327572e-015 37.17186737786056 -1.416456997681115 -1.332267629550188e-015 36.91514391897799 -4.85790276681851 -2.886579864025407e-015 34.4425804451816 -5.356505077614173 -6.661338147750939e-015 35.36936992550874 -5.452491794377552 -4.218847493575595e-015 33.49843770390802 -4.263313739259468 -1.332267629550188e-015 35.38672318645519 -5.114156808975483 -1.110223024625157e-015 37.01240999738577 -4.004867959149173 -3.774758283725532e-015 36.92250676969241 -4.004867959149173 -3.774758283725532e-015 36.92250676969241 -4.263313739259468 -1.332267629550188e-015 35.38672318645519 -5.114156808975483 -1.110223024625157e-015 37.01240999738577 -5.356505077614173 -6.661338147750939e-015 35.36936992550874 -4.85790276681851 -2.886579864025407e-015 34.4425804451816 -5.452491794377552 -4.218847493575595e-015 33.49843770390802</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"206\" source=\"#ID9317\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9315\">\r\n\t\t\t\t\t<float_array count=\"618\" id=\"ID9318\">2.775557561562883e-017 -1 1.685214046382009e-015 2.775557561562883e-017 -1 1.685214046382009e-015 2.775557561562883e-017 -1 1.685214046382009e-015 2.775557561562883e-017 -1 1.685214046382009e-015 2.775557561562883e-017 -1 1.685214046382009e-015 2.775557561562883e-017 -1 1.685214046382009e-015 2.775557561562883e-017 -1 1.685214046382009e-015 2.775557561562883e-017 -1 1.685214046382009e-015 2.775557561562883e-017 -1 1.685214046382009e-015 -2.775557561562883e-017 1 -1.685214046382009e-015 -2.775557561562883e-017 1 -1.685214046382009e-015 -2.775557561562883e-017 1 -1.685214046382009e-015 -2.775557561562883e-017 1 -1.685214046382009e-015 -2.775557561562883e-017 1 -1.685214046382009e-015 -2.775557561562883e-017 1 -1.685214046382009e-015 -2.775557561562883e-017 1 -1.685214046382009e-015 -2.775557561562883e-017 1 -1.685214046382009e-015 -2.775557561562883e-017 1 -1.685214046382009e-015 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 -1.387778780781441e-016 -1 -1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 1.387778780781441e-016 1 1.446274771473913e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 -1.304512053934555e-015 -1 1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 1.304512053934555e-015 1 -1.44406907132883e-016 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 -3.330669073875459e-016 -1 -9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 3.330669073875459e-016 1 9.88417006961243e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 -8.326672684688648e-017 -1 -9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 8.326672684688648e-017 1 9.689130941378014e-017 1.637578961322101e-015 -1 9.510182839090163e-017 1.637578961322101e-015 -1 9.510182839090163e-017 1.637578961322101e-015 -1 9.510182839090163e-017 1.637578961322101e-015 -1 9.510182839090163e-017 1.637578961322101e-015 -1 9.510182839090163e-017 1.637578961322101e-015 -1 9.510182839090163e-017 -1.637578961322101e-015 1 -9.510182839090163e-017 -1.637578961322101e-015 1 -9.510182839090163e-017 -1.637578961322101e-015 1 -9.510182839090163e-017 -1.637578961322101e-015 1 -9.510182839090163e-017 -1.637578961322101e-015 1 -9.510182839090163e-017 -1.637578961322101e-015 1 -9.510182839090163e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"206\" source=\"#ID9318\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9316\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9314\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9315\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"182\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9316\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 5 6 7 7 6 8 9 10 11 11 10 12 10 13 12 12 13 14 14 13 15 15 13 16 17 16 13 18 19 20 19 18 21 19 21 22 22 21 23 22 23 24 24 23 25 25 23 26 26 23 27 27 23 28 27 28 29 29 28 30 29 30 31 31 30 32 32 30 33 32 33 34 34 33 35 34 35 36 34 36 37 37 36 38 37 38 39 39 38 40 39 40 41 39 41 42 42 41 43 42 43 44 44 43 45 45 43 46 45 46 47 47 46 48 47 48 49 47 49 50 47 50 51 52 53 54 53 52 55 55 52 24 55 24 25 56 57 58 57 59 58 58 59 60 61 60 59 62 63 64 63 65 64 65 66 64 66 67 64 64 67 68 67 69 68 68 69 70 70 69 71 69 72 71 71 72 73 72 74 73 74 75 73 73 75 76 75 77 76 76 77 78 77 79 78 79 80 78 78 80 81 80 82 81 81 82 83 83 82 84 82 85 84 84 85 86 85 87 86 86 87 88 88 87 56 56 87 57 57 87 89 87 90 89 89 90 91 90 92 91 93 91 92 94 95 96 95 94 97 97 94 98 97 98 99 97 99 100 100 99 101 100 101 102 102 101 103 102 103 104 104 103 105 104 105 106 106 105 107 106 107 108 109 110 111 110 112 111 111 112 113 112 114 113 113 114 115 114 116 115 115 116 117 116 118 117 117 118 119 118 120 119 120 121 119 119 121 122 123 122 121 124 125 126 125 124 127 125 127 128 125 128 129 125 129 130 130 129 131 130 131 132 130 132 133 130 133 134 130 134 135 130 135 136 130 136 137 136 135 138 138 135 139 140 141 142 142 141 143 144 143 145 143 141 145 141 146 145 146 147 145 147 148 145 148 149 145 149 150 145 145 150 151 150 152 151 152 153 151 153 154 151 155 151 154 156 157 158 157 156 159 160 161 162 161 160 163 163 160 164 164 160 165 164 165 166 166 165 167 166 167 168 168 167 169 168 169 170 168 170 171 171 170 156 171 156 172 172 156 173 173 156 174 174 156 158 175 176 177 177 176 178 178 176 179 179 176 180 176 181 180 180 181 182 181 183 182 183 184 182 182 184 185 184 186 185 185 186 187 186 188 187 187 188 189 189 188 190 191 190 188 192 176 193 175 193 176 194 195 196 195 194 197 195 197 198 198 197 199 200 201 202 202 201 203 201 204 203 205 203 204</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9319\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9320\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9323\">2.96767481949435 6.661338147750939e-016 0.5932796200784194 -2.275217817298268 2.220446049250313e-016 0 2.275217817298267 2.220446049250313e-016 0 -2.451704631484928 1.110223024625157e-015 0.9923117300531759 1.615734247904197 6.661338147750939e-016 1.713918235272216 -2.050341789416118 2.220446049250313e-016 2.014218967900888 -0.4616380014638803 1.110223024625157e-015 2.537916665140188 -1.071660178875625 6.661338147750939e-016 2.554396633737555 -1.071660178875625 6.661338147750939e-016 2.554396633737555 -0.4616380014638803 1.110223024625157e-015 2.537916665140188 -2.050341789416118 2.220446049250313e-016 2.014218967900888 1.615734247904197 6.661338147750939e-016 1.713918235272216 -2.451704631484928 1.110223024625157e-015 0.9923117300531759 2.96767481949435 6.661338147750939e-016 0.5932796200784194 -2.275217817298268 2.220446049250313e-016 0 2.275217817298267 2.220446049250313e-016 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID9323\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9321\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9324\">5.551115123125765e-017 -1 2.344377326485587e-016 5.551115123125765e-017 -1 2.344377326485587e-016 5.551115123125765e-017 -1 2.344377326485587e-016 5.551115123125765e-017 -1 2.344377326485587e-016 5.551115123125765e-017 -1 2.344377326485587e-016 5.551115123125765e-017 -1 2.344377326485587e-016 5.551115123125765e-017 -1 2.344377326485587e-016 5.551115123125765e-017 -1 2.344377326485587e-016 -5.551115123125765e-017 1 -2.344377326485587e-016 -5.551115123125765e-017 1 -2.344377326485587e-016 -5.551115123125765e-017 1 -2.344377326485587e-016 -5.551115123125765e-017 1 -2.344377326485587e-016 -5.551115123125765e-017 1 -2.344377326485587e-016 -5.551115123125765e-017 1 -2.344377326485587e-016 -5.551115123125765e-017 1 -2.344377326485587e-016 -5.551115123125765e-017 1 -2.344377326485587e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID9324\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9322\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9320\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9321\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9322\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 3 4 5 5 4 6 5 6 7 8 9 10 9 11 10 10 11 12 11 13 12 12 13 14 15 14 13</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9325\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9326\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9329\">7.2678208227353 4.440892098500626e-016 2.529712145442659 5.646897969300293 1.554312234475219e-015 2.708319382816284 6.4509777219099 -4.440892098500626e-016 2.363862407044166 7.918741639528989 -6.661338147750939e-016 3.180352849487917 4.957687107858161 2.220446049250313e-016 3.371718336410247 8.301637114898993 2.220446049250313e-016 4.239239525328455 4.616383742980221 6.661338147750939e-016 4.185915026022934 5.4796845086396 -2.220446049250313e-016 4.317062474066688 6.342985274298981 -6.661338147750939e-016 4.448209922110445 8.276110418466377 -6.661338147750939e-016 5.489490937517924 7.228509213117253 0 5.30282929516073 8.090173414579789 8.881784197001252e-016 6.134421629769471 8.090173414579789 8.881784197001252e-016 6.134421629769471 8.276110418466377 -6.661338147750939e-016 5.489490937517924 7.228509213117253 0 5.30282929516073 6.342985274298981 -6.661338147750939e-016 4.448209922110445 8.301637114898993 2.220446049250313e-016 4.239239525328455 5.4796845086396 -2.220446049250313e-016 4.317062474066688 4.616383742980221 6.661338147750939e-016 4.185915026022934 4.957687107858161 2.220446049250313e-016 3.371718336410247 7.918741639528989 -6.661338147750939e-016 3.180352849487917 5.646897969300293 1.554312234475219e-015 2.708319382816284 7.2678208227353 4.440892098500626e-016 2.529712145442659 6.4509777219099 -4.440892098500626e-016 2.363862407044166</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9329\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9327\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9330\">-1.387778780781441e-016 -1 -5.132062171963467e-017 -1.387778780781441e-016 -1 -5.132062171963467e-017 -1.387778780781441e-016 -1 -5.132062171963467e-017 -1.387778780781441e-016 -1 -5.132062171963467e-017 -1.387778780781441e-016 -1 -5.132062171963467e-017 -1.387778780781441e-016 -1 -5.132062171963467e-017 -1.387778780781441e-016 -1 -5.132062171963467e-017 -1.387778780781441e-016 -1 -5.132062171963467e-017 -1.387778780781441e-016 -1 -5.132062171963467e-017 -1.387778780781441e-016 -1 -5.132062171963467e-017 -1.387778780781441e-016 -1 -5.132062171963467e-017 -1.387778780781441e-016 -1 -5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017 1.387778780781441e-016 1 5.132062171963467e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9330\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9328\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9326\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9327\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"20\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9328\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 7 5 8 8 5 9 8 9 10 10 9 11 12 13 14 14 13 15 13 16 15 15 16 17 17 16 18 18 16 19 16 20 19 19 20 21 20 22 21 23 21 22</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9331\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9332\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID9335\">-0.0788121217606772 -3.996802888650564e-015 54.6681123122947 -1.801563378258333 -1.48769885299771e-014 54.71403240332865 -1.181372776785516 -3.774758283725532e-015 54.53035203919294 0.3227952671845813 -1.13242748511766e-014 54.85044689801873 -2.361994503180465 -1.332267629550188e-014 55.33910783808045 -0.03456667646406508 -2.664535259100376e-015 55.50169181378808 -2.077204474099242 -1.154631945610163e-014 55.81611834101064 -1.853043906407619 -6.661338147750939e-015 56.96635442787157 -1.602452660524426 -4.440892098500626e-016 59.28742052701401 -2.210875380374958 -6.661338147750939e-015 57.74040433428586 -4.530960032853809 -8.881784197001252e-015 57.96888568426204 -4.889578565115357 -9.992007221626409e-015 58.91119346317354 -5.022407349830674 -1.554312234475219e-015 59.09986870440265 -5.12526850288006 -3.33066907387547e-015 59.37014716451175 -2.803819278215956 -4.218847493575595e-015 62.9917367767851 -5.12526850288006 -3.552713678800501e-015 59.97952216451176 -5.243066625959926 -9.325873406851315e-015 60.40578190199544 -5.740913015961812 -9.325873406851315e-015 60.53018947128071 -5.812034816519006 -7.327471962526033e-015 60.95673142442701 -5.474209992211486 -5.773159728050814e-015 61.8098153307194 -5.207505725681328 -7.771561172376096e-015 62.44962826043876 -5.349748084016229 -7.993605777301127e-015 63.16053176587359 -3.373960652875859 -1.709743457922741e-014 64.37576666928554 -5.302245312947862 -9.769962616701378e-015 63.92376300891247 -5.191360773716811 -1.354472090042691e-014 64.89912961071261 -4.74782137401243 -1.110223024625157e-015 65.56415280551273 -3.370917706614382 -8.215650382226158e-015 57.70042052961987 -3.925224202861578 -4.662936703425658e-015 57.69470866474954 -2.816611210367183 -1.199040866595169e-014 57.70613239449027 -2.513743295371068 -9.547918011776346e-015 57.72326836438805 -2.210875380374958 -6.661338147750939e-015 57.74040433428586 -2.513743295371068 -9.547918011776346e-015 57.72326836438805 -4.530960032853809 -8.881784197001252e-015 57.96888568426204 -2.816611210367183 -1.199040866595169e-014 57.70613239449027 -3.370917706614382 -8.215650382226158e-015 57.70042052961987 -3.925224202861578 -4.662936703425658e-015 57.69470866474954 -4.74782137401243 -1.110223024625157e-015 65.56415280551273 -3.373960652875859 -1.709743457922741e-014 64.37576666928554 -5.191360773716811 -1.354472090042691e-014 64.89912961071261 -5.302245312947862 -9.769962616701378e-015 63.92376300891247 -5.349748084016229 -7.993605777301127e-015 63.16053176587359 -2.803819278215956 -4.218847493575595e-015 62.9917367767851 -5.207505725681328 -7.771561172376096e-015 62.44962826043876 -5.474209992211486 -5.773159728050814e-015 61.8098153307194 -5.812034816519006 -7.327471962526033e-015 60.95673142442701 -5.740913015961812 -9.325873406851315e-015 60.53018947128071 -5.243066625959926 -9.325873406851315e-015 60.40578190199544 -5.12526850288006 -3.552713678800501e-015 59.97952216451176 -5.12526850288006 -3.33066907387547e-015 59.37014716451175 -1.602452660524426 -4.440892098500626e-016 59.28742052701401 -5.022407349830674 -1.554312234475219e-015 59.09986870440265 -4.889578565115357 -9.992007221626409e-015 58.91119346317354 -1.853043906407619 -6.661338147750939e-015 56.96635442787157 -0.03456667646406508 -2.664535259100376e-015 55.50169181378808 -2.077204474099242 -1.154631945610163e-014 55.81611834101064 -2.361994503180465 -1.332267629550188e-014 55.33910783808045 0.3227952671845813 -1.13242748511766e-014 54.85044689801873 -1.801563378258333 -1.48769885299771e-014 54.71403240332865 -0.0788121217606772 -3.996802888650564e-015 54.6681123122947 -1.181372776785516 -3.774758283725532e-015 54.53035203919294</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID9335\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9333\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID9336\">5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 5.551115123125765e-017 -1 1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017 -5.551115123125765e-017 1 -1.080244302299115e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID9336\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9334\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9332\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9333\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"56\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9334\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 7 5 8 7 8 9 9 8 10 10 8 11 11 8 12 12 8 13 13 8 14 13 14 15 15 14 16 16 14 17 17 14 18 18 14 19 19 14 20 20 14 21 21 14 22 21 22 23 23 22 24 24 22 25 26 10 27 10 26 28 10 28 29 10 29 9 30 31 32 31 33 32 33 34 32 35 32 34 36 37 38 38 37 39 39 37 40 37 41 40 40 41 42 42 41 43 43 41 44 44 41 45 45 41 46 46 41 47 47 41 48 41 49 48 48 49 50 50 49 51 51 49 32 32 49 30 30 49 52 49 53 52 52 53 54 54 53 55 53 56 55 55 56 57 56 58 57 59 57 58</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9337\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9338\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID9341\">3.671849467026042 -1.021405182655144e-014 57.30401815350788 3.447092028318214 2.220446049250313e-015 57.2763201922981 3.389660689684054 -8.215650382226158e-015 56.59676289088161 2.906531919083723 -6.439293542825908e-015 57.30379456255383 2.75077805911242 -9.547918011776346e-015 55.88429106197153 3.447092028318214 2.220446049250313e-015 57.2763201922981 3.389660689684054 -8.215650382226158e-015 56.59676289088161 2.906531919083723 -6.439293542825908e-015 57.30379456255383 2.75077805911242 -9.547918011776346e-015 55.88429106197153 3.671849467026042 -1.021405182655144e-014 57.30401815350788</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID9341\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9339\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID9342\">-9.436895709313801e-016 -1 3.920214303358345e-015 -9.436895709313801e-016 -1 3.920214303358345e-015 -9.436895709313801e-016 -1 3.920214303358345e-015 -9.436895709313801e-016 -1 3.920214303358345e-015 -9.436895709313801e-016 -1 3.920214303358345e-015 9.436895709313801e-016 1 -3.920214303358345e-015 9.436895709313801e-016 1 -3.920214303358345e-015 9.436895709313801e-016 1 -3.920214303358345e-015 9.436895709313801e-016 1 -3.920214303358345e-015 9.436895709313801e-016 1 -3.920214303358345e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID9342\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9340\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9338\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9339\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9340\" />\r\n\t\t\t\t\t<p>0 1 2 2 3 4 3 2 1 5 6 7 8 7 6 6 5 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9343\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9344\">\r\n\t\t\t\t\t<float_array count=\"204\" id=\"ID9347\">14.64914553038517 -1.332267629550188e-015 34.20032856293994 13.42895033125403 -4.440892098500626e-016 32.10249899533052 13.69234473450549 1.332267629550188e-015 31.90682221091089 13.42895033125403 -4.440892098500626e-016 32.33687399533051 13.21062008313239 -8.881784197001252e-016 32.51416884933126 13.21062008313239 -8.881784197001252e-016 32.84229384933128 13.62161845160217 -1.776356839400251e-015 34.52726773095085 14.74309194053343 -1.554312234475219e-015 36.34646390416322 13.0180688597754 -1.998401444325282e-015 36.44157719188382 14.64914553038517 -1.776356839400251e-015 36.66085233850083 12.806186014612 -1.332267629550188e-015 34.1798485592866 12.35043960954081 -9.547918011776346e-015 34.77620101734083 12.48821479599982 -6.217248937900877e-015 34.00287531035433 12.806186014612 -1.332267629550188e-015 34.7423485592866 12.23451187001184 -3.108624468950438e-015 36.94904957887126 13.84177084590654 4.440892098500626e-016 37.8690403969123 11.28540344682803 -5.551115123125783e-015 39.07889290413726 13.69234473450549 -4.440892098500626e-016 38.55610415149157 13.13513696889006 -2.220446049250313e-015 41.11815475921281 10.13992960641793 -2.442490654175344e-015 40.92004912162847 9.955802521101397 -6.883382752675971e-015 41.20416436788594 12.56553496064954 -9.769962616701378e-015 42.96301956071527 9.173949205105263 -5.995204332975845e-015 42.41059441064436 8.639844715375032 4.218847493575595e-015 44.9846294265633 11.6739113156299 -8.881784197001252e-015 45.46343907142794 8.207056066980041 -2.664535259100376e-015 46.47662196144756 10.80367093929693 -4.440892098500626e-015 47.26728727903148 7.961161441346563 -9.769962616701378e-015 47.32431736005363 9.425204476340472 -1.4210854715202e-014 53.08870586771167 7.120241968077369 -5.10702591327572e-015 50.96972709487659 6.959397912033611 -3.108624468950438e-015 51.73247205258254 7.052736595257296 -2.220446049250313e-016 51.78926233818021 7.557679319120999 -1.998401444325282e-015 52.09648588696299 8.718573570891637 -1.798561299892754e-014 52.80281164419247 8.718573570891637 -1.798561299892754e-014 52.80281164419247 9.425204476340472 -1.4210854715202e-014 53.08870586771167 7.557679319120999 -1.998401444325282e-015 52.09648588696299 7.052736595257296 -2.220446049250313e-016 51.78926233818021 6.959397912033611 -3.108624468950438e-015 51.73247205258254 7.120241968077369 -5.10702591327572e-015 50.96972709487659 7.961161441346563 -9.769962616701378e-015 47.32431736005363 10.80367093929693 -4.440892098500626e-015 47.26728727903148 8.207056066980041 -2.664535259100376e-015 46.47662196144756 11.6739113156299 -8.881784197001252e-015 45.46343907142794 8.639844715375032 4.218847493575595e-015 44.9846294265633 12.56553496064954 -9.769962616701378e-015 42.96301956071527 9.173949205105263 -5.995204332975845e-015 42.41059441064436 9.955802521101397 -6.883382752675971e-015 41.20416436788594 13.13513696889006 -2.220446049250313e-015 41.11815475921281 10.13992960641793 -2.442490654175344e-015 40.92004912162847 11.28540344682803 -5.551115123125783e-015 39.07889290413726 13.69234473450549 -4.440892098500626e-016 38.55610415149157 13.84177084590654 4.440892098500626e-016 37.8690403969123 12.23451187001184 -3.108624468950438e-015 36.94904957887126 14.64914553038517 -1.776356839400251e-015 36.66085233850083 13.0180688597754 -1.998401444325282e-015 36.44157719188382 12.35043960954081 -9.547918011776346e-015 34.77620101734083 12.806186014612 -1.332267629550188e-015 34.7423485592866 12.806186014612 -1.332267629550188e-015 34.1798485592866 12.48821479599982 -6.217248937900877e-015 34.00287531035433 14.74309194053343 -1.554312234475219e-015 36.34646390416322 13.62161845160217 -1.776356839400251e-015 34.52726773095085 14.64914553038517 -1.332267629550188e-015 34.20032856293994 13.21062008313239 -8.881784197001252e-016 32.84229384933128 13.21062008313239 -8.881784197001252e-016 32.51416884933126 13.42895033125403 -4.440892098500626e-016 32.33687399533051 13.42895033125403 -4.440892098500626e-016 32.10249899533052 13.69234473450549 1.332267629550188e-015 31.90682221091089</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"68\" source=\"#ID9347\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9345\">\r\n\t\t\t\t\t<float_array count=\"204\" id=\"ID9348\">-6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 -6.383782391594631e-016 -1 -4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016 6.383782391594631e-016 1 4.990484377792404e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"68\" source=\"#ID9348\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9346\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9344\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9345\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"64\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9346\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 5 0 6 6 0 7 6 7 8 8 7 9 10 11 12 11 10 13 11 13 8 11 8 14 14 8 9 14 9 15 14 15 16 16 15 17 16 17 18 16 18 19 19 18 20 20 18 21 20 21 22 22 21 23 23 21 24 23 24 25 25 24 26 25 26 27 27 26 28 27 28 29 29 28 30 30 28 31 31 28 32 32 28 33 34 35 36 36 35 37 37 35 38 38 35 39 39 35 40 35 41 40 40 41 42 41 43 42 42 43 44 43 45 44 44 45 46 46 45 47 45 48 47 47 48 49 49 48 50 48 51 50 51 52 50 50 52 53 52 54 53 54 55 53 53 55 56 55 57 56 57 58 56 59 56 58 54 60 55 55 60 61 60 62 61 61 62 63 63 62 64 64 62 65 65 62 66 67 66 62</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9349\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9350\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID9352\">-10.59400280743444 -4.218847493575595e-015 40.14276714135269 -10.09508638405259 -9.103828801926284e-015 39.70513096026325 -10.68564041639991 -5.551115123125783e-015 40.54987074017409 -10.16635980374133 -8.659739592076221e-015 40.87555361923114 -10.2008270578242 -5.551115123125783e-015 40.55565541068066 -10.2008270578242 -7.327471962526033e-015 40.22136045047757 -10.00720445554521 -6.883382752675971e-015 40.08060463825645 -9.584755028502402 -5.10702591327572e-015 39.99263291237025 -9.373529693591079 -9.992007221626409e-015 40.15098291965388 -9.355928203738246 -2.442490654175344e-015 40.43249454409578 -9.109498646341757 -8.659739592076221e-015 40.6964112229018 -9.179907091312083 -6.439293542825908e-015 41.13627360520094</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID9352\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9351\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9350\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"11\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9351\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9353\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9354\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID9356\">7.109911982646611 -1.021405182655144e-014 43.95225225865385 6.516289527051974 -6.883382752675971e-015 44.11707596298165 7.884919388145356 -5.10702591327572e-015 44.06762892674074 8.250096870802674 -6.439293542825908e-015 44.12199351849871</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID9356\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9355\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9354\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9355\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9357\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9358\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID9360\">6.829590578199707 -1.376676550535194e-014 42.78200223160707 6.516289527051974 -6.883382752675971e-015 44.11707596298165 7.043953932025143 -4.440892098500626e-015 42.12270591314866 7.588107538958289 -4.218847493575595e-015 41.84250554073399 8.247688045174415 -3.996802888650564e-015 41.77657590888824 8.742372803446756 -5.995204332975845e-015 42.15567110435844</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID9360\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9359\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9358\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"5\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9359\" />\r\n\t\t\t\t\t<p>1 0 0 2 2 3 3 4 4 5</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9361\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9362\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID9364\">1.747630464671212 1.332267629550188e-015 5.20767307905913 3.9569001735858 2.220446049250313e-016 3.9551947150864 1.220044354823648 -2.220446049250313e-016 6.59199119181079</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID9364\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9363\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9362\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9363\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9365\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9366\">\r\n\t\t\t\t\t<float_array count=\"9\" id=\"ID9368\">-1.730857287533475 -9.769962616701378e-015 57.48336290938432 -2.210875380374958 -6.661338147750939e-015 57.74040433428586 -1.250839194691997 -1.376676550535194e-014 57.22632148448277</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3\" source=\"#ID9368\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9367\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9366\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9367\" />\r\n\t\t\t\t\t<p>1 0 0 2</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9369\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9370\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9372\">-9.981070661196155 -9.992007221626409e-015 39.58506725479159 -10.09508638405259 -9.103828801926284e-015 39.70513096026325</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9372\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9371\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9370\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9371\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9373\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9374\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9376\">-4.917690564116809 -8.215650382226158e-015 50.75745615416773 -4.979029364811794 -1.176836406102666e-014 50.34006417154906</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9376\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9375\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9374\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9375\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9377\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9378\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9380\">0.6265088938127423 -1.776356839400251e-015 5.108793267474931 -1.024619721881043 4.440892098500626e-016 3.975256796048192</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9380\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9379\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9378\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9379\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9381\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9382\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9384\">0.6907742783906263 -6.217248937900877e-015 33.2550874915032 0.05417649842223948 -7.327471962526033e-015 32.30580031897851</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9384\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9383\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9382\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9383\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9385\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9386\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID9388\">-10.33126247568461 -5.995204332975845e-015 41.46801740433336 -10.76750853361012 -2.220446049250313e-016 41.50111766029097</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID9388\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9387\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9386\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9387\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9393\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9399\">\r\n\t\t\t\t\t<float_array count=\"1080\" id=\"ID9408\">2.429714618231628 9.787152334344683 9.094947017729282e-013 2.271715105272051 6.813643240828696 9.094947017729282e-013 1.874098523918292 9.621050282260512 0 2.324648805622928 7.093780226370654 1.818989403545857e-012 2.483449906676469 7.328508329537272 9.094947017729282e-013 3.028876444211164 9.842519685038951 1.818989403545857e-012 2.706551371706155 7.495094223084379 9.094947017729282e-013 2.952386163976371 7.570804579766445 9.094947017729282e-013 2.990111355060435 7.570804579766445 0 3.0279520903714 7.585940873891559 0 4.540426060568279 7.585940873891559 0 8.329583537924918 9.85765597916452 1.818989403545857e-012 6.812025621609791 7.585940873892014 0 8.328543639854615 7.585940873891559 0 8.622343730588909 7.530941820429689 0 8.934894483393691 9.795666499790514 1.818989403545857e-012 8.86686420724709 7.365944660044988 9.094947017729282e-013 9.031774709459569 7.125092712689366 -9.094947017729282e-013 9.493821642046896 9.624834355791336 1.818989403545857e-012 9.086744876863122 6.842529298319278 0 11.35845998213517 0.01478966143486105 0 9.086744876862213 0.01478966143531579 1.818989403545857e-012 10.00636501388362 9.345159547170169 0 10.47252459890478 8.956642073923831 9.094947017729282e-013 10.86012132906944 8.490522207232061 0 11.13697613632849 7.978040218265051 0 11.30308902068282 7.419196107028256 9.094947017729282e-013 11.35845998213608 6.813989873519404 0 6.812025621610701 0.01478966143531579 0 4.54042606056737 0.0147896614344063 9.094947017729282e-013 2.728484105318785e-012 6.829126167644517 9.094947017729282e-013 2.27171510527478 0.0147896614344063 0 1.818989403545857e-012 0.0147896614344063 1.818989403545857e-012 0.05584397064467339 7.427710272473178 1.818989403545857e-012 0.2233758825741461 7.981824291797238 0 0.5025957357902371 8.491468225613971 9.094947017729282e-013 0.8935035302938559 8.956642073924741 0 1.362028161272065 9.344213528787805 1.818989403545857e-012 2.271715105272051 6.813643240828696 9.094947017729282e-013 1.874098523918292 9.621050282260512 0 2.27171510527478 0.0147896614344063 0 1.362028161272065 9.344213528787805 1.818989403545857e-012 0.8935035302938559 8.956642073924741 0 0.5025957357902371 8.491468225613971 9.094947017729282e-013 0.2233758825741461 7.981824291797238 0 0.05584397064467339 7.427710272473178 1.818989403545857e-012 2.728484105318785e-012 6.829126167644517 9.094947017729282e-013 1.818989403545857e-012 0.0147896614344063 1.818989403545857e-012 6.812025621609791 7.585940873892014 0 4.540426060568279 7.585940873891559 0 6.812025621610701 0.01478966143531579 0 4.54042606056737 0.0147896614344063 9.094947017729282e-013 11.35845998213608 6.813989873519404 0 11.30308902068282 7.419196107028256 9.094947017729282e-013 11.35845998213517 0.01478966143486105 0 11.13697613632849 7.978040218265051 0 10.86012132906944 8.490522207232061 0 10.47252459890478 8.956642073923831 9.094947017729282e-013 10.00636501388362 9.345159547170169 0 9.493821642046896 9.624834355791336 1.818989403545857e-012 9.086744876863122 6.842529298319278 0 9.086744876862213 0.01478966143531579 1.818989403545857e-012 9.031774709459569 7.125092712689366 -9.094947017729282e-013 8.934894483393691 9.795666499790514 1.818989403545857e-012 8.86686420724709 7.365944660044988 9.094947017729282e-013 8.622343730588909 7.530941820429689 0 8.329583537924918 9.85765597916452 1.818989403545857e-012 8.328543639854615 7.585940873891559 0 3.028876444211164 9.842519685038951 1.818989403545857e-012 3.0279520903714 7.585940873891559 0 2.990111355060435 7.570804579766445 0 2.952386163976371 7.570804579766445 9.094947017729282e-013 2.706551371706155 7.495094223084379 9.094947017729282e-013 2.483449906676469 7.328508329537272 9.094947017729282e-013 2.429714618231628 9.787152334344683 9.094947017729282e-013 2.324648805622928 7.093780226370654 1.818989403545857e-012 6.812025621610701 0.01478966143486105 1.18110236220673 4.54042606056737 0.0147896614344063 9.094947017729282e-013 6.812025621610701 0.01478966143531579 0 4.540426060568279 0.01478966143531579 1.181102362204911 4.540426060568279 0.01478966143531579 1.181102362204911 6.812025621610701 0.01478966143486105 1.18110236220673 4.54042606056737 0.0147896614344063 9.094947017729282e-013 6.812025621610701 0.01478966143531579 0 4.540426060568279 0.01478966143531579 1.181102362204911 4.540426060568279 7.585940873891559 0 4.54042606056737 0.0147896614344063 9.094947017729282e-013 4.540426060568279 7.58594087389065 1.181102362204001 4.540426060568279 7.58594087389065 1.181102362204001 4.540426060568279 0.01478966143531579 1.181102362204911 4.540426060568279 7.585940873891559 0 4.54042606056737 0.0147896614344063 9.094947017729282e-013 4.540426060568279 7.58594087389065 1.181102362204001 3.0279520903714 7.585940873891559 0 4.540426060568279 7.585940873891559 0 3.027952090373219 7.585940873891559 1.181102362204001 3.027952090373219 7.585940873891559 1.181102362204001 4.540426060568279 7.58594087389065 1.181102362204001 3.0279520903714 7.585940873891559 0 4.540426060568279 7.585940873891559 0 3.027952090373219 7.585940873891559 1.181102362204001 2.990111355060435 7.570804579766445 0 3.0279520903714 7.585940873891559 0 2.990111355060435 7.570804579765991 1.181102362204911 2.990111355060435 7.570804579765991 1.181102362204911 3.027952090373219 7.585940873891559 1.181102362204001 2.990111355060435 7.570804579766445 0 3.0279520903714 7.585940873891559 0 2.990111355060435 7.570804579765991 1.181102362204911 2.952386163976371 7.570804579766445 9.094947017729282e-013 2.990111355060435 7.570804579766445 0 2.952386163974552 7.570804579765991 1.18110236220673 2.952386163974552 7.570804579765991 1.18110236220673 2.990111355060435 7.570804579765991 1.181102362204911 2.952386163976371 7.570804579766445 9.094947017729282e-013 2.990111355060435 7.570804579766445 0 2.706551371706155 7.495094223084379 9.094947017729282e-013 2.706551371707064 7.49509422308347 1.18110236220582 2.706551371707064 7.49509422308347 1.18110236220582 2.706551371706155 7.495094223084379 9.094947017729282e-013 2.483449906676469 7.328508329537272 9.094947017729282e-013 2.483449906677379 7.328508329537272 1.181102362204911 2.483449906677379 7.328508329537272 1.181102362204911 2.483449906676469 7.328508329537272 9.094947017729282e-013 2.324648805624747 7.093780226370654 1.181102362204001 2.324648805622928 7.093780226370654 1.818989403545857e-012 2.324648805624747 7.093780226370654 1.181102362204001 2.324648805622928 7.093780226370654 1.818989403545857e-012 2.324648805622928 7.093780226370654 1.818989403545857e-012 2.27171510527478 6.813643240829151 1.181102362204911 2.271715105272051 6.813643240828696 9.094947017729282e-013 2.324648805624747 7.093780226370654 1.181102362204001 2.324648805624747 7.093780226370654 1.181102362204001 2.324648805622928 7.093780226370654 1.818989403545857e-012 2.27171510527478 6.813643240829151 1.181102362204911 2.271715105272051 6.813643240828696 9.094947017729282e-013 2.271715105275689 0.01478966143486105 1.18110236220582 2.27171510527478 0.0147896614344063 0 2.271715105275689 0.01478966143486105 1.18110236220582 2.27171510527478 0.0147896614344063 0 2.271715105275689 0.01478966143486105 1.18110236220582 1.818989403545857e-012 0.0147896614344063 1.818989403545857e-012 2.27171510527478 0.0147896614344063 0 0 0.0147896614344063 1.18110236220673 0 0.0147896614344063 1.18110236220673 2.271715105275689 0.01478966143486105 1.18110236220582 1.818989403545857e-012 0.0147896614344063 1.818989403545857e-012 2.27171510527478 0.0147896614344063 0 1.818989403545857e-012 6.829126167643153 1.181102362204911 1.818989403545857e-012 0.0147896614344063 1.818989403545857e-012 0 0.0147896614344063 1.18110236220673 2.728484105318785e-012 6.829126167644517 9.094947017729282e-013 2.728484105318785e-012 6.829126167644517 9.094947017729282e-013 1.818989403545857e-012 6.829126167643153 1.181102362204911 1.818989403545857e-012 0.0147896614344063 1.818989403545857e-012 0 0.0147896614344063 1.18110236220673 0.0558439706428544 7.427710272473178 1.18110236220582 0.05584397064467339 7.427710272473178 1.818989403545857e-012 0.05584397064467339 7.427710272473178 1.818989403545857e-012 0.0558439706428544 7.427710272473178 1.18110236220582 0.2233758825741461 7.981824291797238 1.181102362204911 0.2233758825741461 7.981824291797238 0 0.2233758825741461 7.981824291797238 0 0.2233758825741461 7.981824291797238 1.181102362204911 0.5025957357902371 8.491468225613971 1.18110236220582 0.5025957357902371 8.491468225613971 9.094947017729282e-013 0.5025957357902371 8.491468225613971 9.094947017729282e-013 0.5025957357902371 8.491468225613971 1.18110236220582 0.8935035302929464 8.956642073924741 1.18110236220582 0.8935035302938559 8.956642073924741 0 0.8935035302938559 8.956642073924741 0 0.8935035302929464 8.956642073924741 1.18110236220582 1.362028161272065 9.344213528787805 1.818989403545857e-012 1.362028161270246 9.344213528786895 1.18110236220582 1.362028161270246 9.344213528786895 1.18110236220582 1.362028161272065 9.344213528787805 1.818989403545857e-012 1.87409852392102 9.621050282260512 1.18110236220582 1.874098523918292 9.621050282260512 0 1.87409852392102 9.621050282260512 1.18110236220582 1.874098523918292 9.621050282260512 0 2.429714618231628 9.787152334344683 9.094947017729282e-013 2.4297146182289 9.787152334344683 1.181102362204911 2.4297146182289 9.787152334344683 1.181102362204911 2.429714618231628 9.787152334344683 9.094947017729282e-013 3.028876444211164 9.842519685038951 1.818989403545857e-012 3.028876444211164 9.842519685039406 1.18110236220582 3.028876444211164 9.842519685039406 1.18110236220582 3.028876444211164 9.842519685038951 1.818989403545857e-012 8.329583537924918 9.85765597916452 1.818989403545857e-012 8.329583537926737 9.85765597916361 1.18110236220582 8.329583537926737 9.85765597916361 1.18110236220582 8.329583537924918 9.85765597916452 1.818989403545857e-012 8.934894483393691 9.795666499790514 1.818989403545857e-012 8.934894483390963 9.795666499789604 1.181102362204911 8.934894483390963 9.795666499789604 1.181102362204911 8.934894483393691 9.795666499790514 1.818989403545857e-012 9.493821642046896 9.624834355791336 1.818989403545857e-012 9.493821642046896 9.624834355791336 1.181102362204001 9.493821642046896 9.624834355791336 1.181102362204001 9.493821642046896 9.624834355791336 1.818989403545857e-012 10.00636501388181 9.345159547169715 1.18110236220582 10.00636501388362 9.345159547170169 0 10.00636501388181 9.345159547169715 1.18110236220582 10.00636501388362 9.345159547170169 0 10.47252459890478 8.956642073923831 9.094947017729282e-013 10.47252459890569 8.956642073924286 1.18110236220582 10.47252459890569 8.956642073924286 1.18110236220582 10.47252459890478 8.956642073923831 9.094947017729282e-013 10.86012132906944 8.490522207232061 0 10.86012132906853 8.490522207231152 1.181102362204911 10.86012132906944 8.490522207232061 0 10.86012132906853 8.490522207231152 1.181102362204911 11.13697613632849 7.978040218265051 1.18110236220582 11.13697613632849 7.978040218265051 0 11.13697613632849 7.978040218265051 1.18110236220582 11.13697613632849 7.978040218265051 0 11.30308902068282 7.419196107028256 9.094947017729282e-013 11.30308902068282 7.419196107027346 1.18110236220582 11.30308902068282 7.419196107028256 9.094947017729282e-013 11.30308902068282 7.419196107027346 1.18110236220582 11.35845998213608 6.813989873519404 0 11.35845998213517 6.813989873518949 1.18110236220582 11.35845998213608 6.813989873519404 0 11.35845998213517 6.813989873518949 1.18110236220582 11.35845998213517 0.01478966143531579 1.181102362204911 11.35845998213517 0.01478966143486105 0 11.35845998213517 0.01478966143531579 1.181102362204911 11.35845998213517 0.01478966143486105 0 11.35845998213517 0.01478966143531579 1.181102362204911 9.086744876862213 0.01478966143531579 1.818989403545857e-012 11.35845998213517 0.01478966143486105 0 9.086744876860394 0.01478966143486105 1.18110236220582 9.086744876860394 0.01478966143486105 1.18110236220582 11.35845998213517 0.01478966143531579 1.181102362204911 9.086744876862213 0.01478966143531579 1.818989403545857e-012 11.35845998213517 0.01478966143486105 0 9.086744876862213 6.842529298318823 1.181102362204911 9.086744876862213 0.01478966143531579 1.818989403545857e-012 9.086744876860394 0.01478966143486105 1.18110236220582 9.086744876863122 6.842529298319278 0 9.086744876863122 6.842529298319278 0 9.086744876862213 6.842529298318823 1.181102362204911 9.086744876862213 0.01478966143531579 1.818989403545857e-012 9.086744876860394 0.01478966143486105 1.18110236220582 9.03177470945775 7.125092712689366 1.181102362204911 9.031774709459569 7.125092712689366 -9.094947017729282e-013 9.031774709459569 7.125092712689366 -9.094947017729282e-013 9.03177470945775 7.125092712689366 1.181102362204911 8.866864207244362 7.365944660044988 1.18110236220673 9.031774709459569 7.125092712689366 -9.094947017729282e-013 9.03177470945775 7.125092712689366 1.181102362204911 8.86686420724709 7.365944660044988 9.094947017729282e-013 8.86686420724709 7.365944660044988 9.094947017729282e-013 8.866864207244362 7.365944660044988 1.18110236220673 9.031774709459569 7.125092712689366 -9.094947017729282e-013 9.03177470945775 7.125092712689366 1.181102362204911 8.86686420724709 7.365944660044988 9.094947017729282e-013 8.622343730588 7.530941820430144 1.181102362204911 8.622343730588909 7.530941820429689 0 8.866864207244362 7.365944660044988 1.18110236220673 8.866864207244362 7.365944660044988 1.18110236220673 8.86686420724709 7.365944660044988 9.094947017729282e-013 8.622343730588 7.530941820430144 1.181102362204911 8.622343730588909 7.530941820429689 0 8.622343730588 7.530941820430144 1.181102362204911 8.328543639854615 7.585940873891559 0 8.622343730588909 7.530941820429689 0 8.328543639853706 7.585940873891559 1.181102362204911 8.328543639853706 7.585940873891559 1.181102362204911 8.622343730588 7.530941820430144 1.181102362204911 8.328543639854615 7.585940873891559 0 8.622343730588909 7.530941820429689 0 6.812025621609791 7.585940873892014 0 6.81202562161161 7.585940873891559 1.181102362204911 6.81202562161161 7.585940873891559 1.181102362204911 6.812025621609791 7.585940873892014 0 6.812025621610701 0.01478966143531579 0 6.81202562161161 7.585940873891559 1.181102362204911 6.812025621610701 0.01478966143486105 1.18110236220673 6.812025621609791 7.585940873892014 0 6.812025621609791 7.585940873892014 0 6.812025621610701 0.01478966143531579 0 6.81202562161161 7.585940873891559 1.181102362204911 6.812025621610701 0.01478966143486105 1.18110236220673 2.271715105275689 0.01478966143486105 1.18110236220582 1.818989403545857e-012 6.829126167643153 1.181102362204911 0 0.0147896614344063 1.18110236220673 0.0558439706428544 7.427710272473178 1.18110236220582 0.2233758825741461 7.981824291797238 1.181102362204911 0.5025957357902371 8.491468225613971 1.18110236220582 0.8935035302929464 8.956642073924741 1.18110236220582 1.362028161270246 9.344213528786895 1.18110236220582 1.87409852392102 9.621050282260512 1.18110236220582 2.27171510527478 6.813643240829151 1.181102362204911 6.812025621610701 0.01478966143486105 1.18110236220673 4.540426060568279 7.58594087389065 1.181102362204001 4.540426060568279 0.01478966143531579 1.181102362204911 11.35845998213517 0.01478966143531579 1.181102362204911 9.086744876862213 6.842529298318823 1.181102362204911 9.086744876860394 0.01478966143486105 1.18110236220582 9.493821642046896 9.624834355791336 1.181102362204001 10.00636501388181 9.345159547169715 1.18110236220582 10.47252459890569 8.956642073924286 1.18110236220582 10.86012132906853 8.490522207231152 1.181102362204911 11.13697613632849 7.978040218265051 1.18110236220582 11.30308902068282 7.419196107027346 1.18110236220582 11.35845998213517 6.813989873518949 1.18110236220582 2.4297146182289 9.787152334344683 1.181102362204911 2.324648805624747 7.093780226370654 1.181102362204001 2.483449906677379 7.328508329537272 1.181102362204911 3.028876444211164 9.842519685039406 1.18110236220582 2.706551371707064 7.49509422308347 1.18110236220582 2.952386163974552 7.570804579765991 1.18110236220673 2.990111355060435 7.570804579765991 1.181102362204911 3.027952090373219 7.585940873891559 1.181102362204001 8.329583537926737 9.85765597916361 1.18110236220582 6.81202562161161 7.585940873891559 1.181102362204911 8.328543639853706 7.585940873891559 1.181102362204911 8.622343730588 7.530941820430144 1.181102362204911 8.934894483390963 9.795666499789604 1.181102362204911 8.866864207244362 7.365944660044988 1.18110236220673 9.03177470945775 7.125092712689366 1.181102362204911 9.086744876862213 6.842529298318823 1.181102362204911 9.03177470945775 7.125092712689366 1.181102362204911 9.493821642046896 9.624834355791336 1.181102362204001 8.934894483390963 9.795666499789604 1.181102362204911 8.866864207244362 7.365944660044988 1.18110236220673 8.622343730588 7.530941820430144 1.181102362204911 8.329583537926737 9.85765597916361 1.18110236220582 8.328543639853706 7.585940873891559 1.181102362204911 6.81202562161161 7.585940873891559 1.181102362204911 6.812025621610701 0.01478966143486105 1.18110236220673 4.540426060568279 7.58594087389065 1.181102362204001 3.028876444211164 9.842519685039406 1.18110236220582 3.027952090373219 7.585940873891559 1.181102362204001 2.990111355060435 7.570804579765991 1.181102362204911 2.952386163974552 7.570804579765991 1.18110236220673 2.706551371707064 7.49509422308347 1.18110236220582 2.483449906677379 7.328508329537272 1.181102362204911 2.4297146182289 9.787152334344683 1.181102362204911 2.324648805624747 7.093780226370654 1.181102362204001 2.27171510527478 6.813643240829151 1.181102362204911 1.87409852392102 9.621050282260512 1.18110236220582 11.35845998213517 6.813989873518949 1.18110236220582 11.35845998213517 0.01478966143531579 1.181102362204911 11.30308902068282 7.419196107027346 1.18110236220582 11.13697613632849 7.978040218265051 1.18110236220582 10.86012132906853 8.490522207231152 1.181102362204911 10.47252459890569 8.956642073924286 1.18110236220582 10.00636501388181 9.345159547169715 1.18110236220582 9.086744876860394 0.01478966143486105 1.18110236220582 4.540426060568279 0.01478966143531579 1.181102362204911 2.271715105275689 0.01478966143486105 1.18110236220582 1.362028161270246 9.344213528786895 1.18110236220582 0.8935035302929464 8.956642073924741 1.18110236220582 0.5025957357902371 8.491468225613971 1.18110236220582 0.2233758825741461 7.981824291797238 1.181102362204911 0.0558439706428544 7.427710272473178 1.18110236220582 1.818989403545857e-012 6.829126167643153 1.181102362204911 0 0.0147896614344063 1.18110236220673</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"360\" source=\"#ID9408\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9400\">\r\n\t\t\t\t\t<float_array count=\"1080\" id=\"ID9409\">2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 0.3713906763541 -0.9284766908852609 -7.709882115452503e-017 0.3713906763541 -0.9284766908852609 -7.709882115452503e-017 0.3713906763541 -0.9284766908852609 -7.709882115452503e-017 0.3713906763541 -0.9284766908852609 -7.709882115452503e-017 -0.3713906763541 0.9284766908852609 7.709882115452503e-017 -0.3713906763541 0.9284766908852609 7.709882115452503e-017 -0.3713906763541 0.9284766908852609 7.709882115452503e-017 -0.3713906763541 0.9284766908852609 7.709882115452503e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 0.1488225317786403 -0.9888639208885089 -1.169506028974791e-016 -2.891205793294696e-017 -1 -7.709882115452523e-017 0.1488225317821951 -0.988863920887974 -1.169506028984103e-016 -0.1488225317821951 0.988863920887974 1.169506028984103e-016 2.891205793294696e-017 1 7.709882115452523e-017 -0.1488225317786403 0.9888639208885089 1.169506028974791e-016 2.891205793294696e-017 1 7.709882115452523e-017 0.452943884383791 -0.8915390275244953 -7.824413228388073e-017 0.4529438843833918 -0.8915390275246983 -7.824413228408332e-017 -0.4529438843833918 0.8915390275246983 7.824413228408332e-017 -0.452943884383791 0.8915390275244953 7.824413228388073e-017 0.7233795791619756 -0.6904505662619469 -3.909532766376136e-017 0.7233795791617766 -0.6904505662621553 -3.909532766369462e-017 -0.7233795791617766 0.6904505662621553 3.909532766369462e-017 -0.7233795791619756 0.6904505662619469 3.909532766376136e-017 0.8282597604593792 -0.5603443309285566 -7.709882115452433e-017 0.8282597604593792 -0.5603443309285566 -7.709882115452433e-017 -0.8282597604593792 0.5603443309285566 7.709882115452433e-017 -0.8282597604593792 0.5603443309285566 7.709882115452433e-017 0.9826119854825035 -0.1856709077538333 -8.673617379883944e-017 0.9956435068543679 -0.09324166053184858 -1.31883479252214e-016 0.9956435068543744 -0.09324166053177781 -1.31883479252248e-016 0.9826119854825035 -0.1856709077538333 -8.673617379883944e-017 -0.9826119854825035 0.1856709077538333 8.673617379883944e-017 -0.9826119854825035 0.1856709077538333 8.673617379883944e-017 -0.9956435068543679 0.09324166053184858 1.31883479252214e-016 -0.9956435068543744 0.09324166053177781 1.31883479252248e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 -0.9989185077269245 0.04649532149167843 2.23105066305072e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -0.9989185077269229 0.04649532149170992 2.231050663051038e-016 0.9989185077269229 -0.04649532149170992 -2.231050663051038e-016 0.9989185077269245 -0.04649532149167843 -2.23105066305072e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 -0.9813729497030458 0.1921122942217472 1.84034439877941e-016 -0.9813729497030282 0.1921122942218373 1.840344398778614e-016 0.9813729497030282 -0.1921122942218373 -1.840344398778614e-016 0.9813729497030458 -0.1921122942217472 -1.84034439877941e-016 -0.922067993983647 0.3870279246656154 1.065845820479931e-016 -0.9220679939836266 0.3870279246656638 1.06584582047998e-016 0.9220679939836266 -0.3870279246656638 -1.06584582047998e-016 0.922067993983647 -0.3870279246656154 -1.065845820479931e-016 -0.8253152997479203 0.5646721668384237 1.936921706124971e-017 -0.8253152997479495 0.5646721668383811 1.936921706130007e-017 0.8253152997479495 -0.5646721668383811 -1.936921706130007e-017 0.8253152997479203 -0.5646721668384237 -1.936921706124971e-017 -0.7043628531778372 0.7098401024619392 7.74149820136692e-017 -0.7043628531778233 0.7098401024619532 7.741498201370286e-017 0.7043628531778233 -0.7098401024619532 -7.741498201370286e-017 0.7043628531778372 -0.7098401024619392 -7.74149820136692e-017 -0.559155120441545 0.8290630562773865 1.162029676773469e-016 -0.5591551204417244 0.8290630562772656 1.162029676776032e-016 0.5591551204417244 -0.8290630562772656 -1.162029676776032e-016 0.559155120441545 -0.8290630562773865 -1.162029676773469e-016 -0.383011923427972 0.9237433986297305 3.875304667405194e-017 -0.3830119234281344 0.9237433986296633 3.875304667398574e-017 0.383011923427972 -0.9237433986297305 -3.875304667405194e-017 0.3830119234281344 -0.9237433986296633 -3.875304667398574e-017 -0.1901552480653961 0.981754033163698 1.162192994281176e-016 -0.1901552480655828 0.9817540331636619 1.162192994280436e-016 0.1901552480655828 -0.9817540331636619 -1.162192994280436e-016 0.1901552480653961 -0.981754033163698 -1.162192994281176e-016 -0.04748305487206025 0.9988720436071964 1.543514443156899e-016 -0.04748305487201626 0.9988720436071984 1.543514443156899e-016 0.04748305487201626 -0.9988720436071984 -1.543514443156899e-016 0.04748305487206025 -0.9988720436071964 -1.543514443156899e-016 0.04957867828268228 0.9987702211518634 1.158075160906524e-016 0.04957867828276243 0.9987702211518594 1.158075160905934e-016 -0.04957867828276243 -0.9987702211518594 -1.158075160905934e-016 -0.04957867828268228 -0.9987702211518634 -1.158075160906524e-016 0.1980220886887421 0.980197557837882 1.161976795715956e-016 0.1980220886883932 0.9801975578379525 1.161976795714543e-016 -0.1980220886883932 -0.9801975578379525 -1.161976795714543e-016 -0.1980220886887421 -0.980197557837882 -1.161976795715956e-016 0.3876359964848027 0.92181252661766 1.162458074444269e-016 0.3876359964847562 0.9218125266176794 1.162458074444461e-016 -0.3876359964847562 -0.9218125266176794 -1.162458074444461e-016 -0.3876359964848027 -0.92181252661766 -1.162458074444269e-016 0.5622915634017819 0.8269390532120126 1.936696654742904e-017 0.5622915634018517 0.826939053211965 1.936696654737893e-017 -0.5622915634017819 -0.8269390532120126 -1.936696654742904e-017 -0.5622915634018517 -0.826939053211965 -1.936696654737893e-017 0.7075043430321278 0.7067089956910674 -5.806520089628637e-017 0.7075043430321192 0.706708995691076 -5.806520089628379e-017 -0.7075043430321192 -0.706708995691076 5.806520089628379e-017 -0.7075043430321278 -0.7067089956910674 5.806520089628637e-017 0.8284329848266594 0.5600881981002565 -1.54959251241544e-016 0.8284329848266484 0.5600881981002724 -1.549592512415288e-016 -0.8284329848266594 -0.5600881981002565 1.54959251241544e-016 -0.8284329848266484 -0.5600881981002724 1.549592512415288e-016 0.9241024286718311 0.3821448695492632 -1.647111548385311e-016 0.9241024286717918 0.3821448695493583 -1.647111548385985e-016 -0.9241024286718311 -0.3821448695492632 1.647111548385311e-016 -0.9241024286717918 -0.3821448695493583 1.647111548385985e-016 0.9819888198865894 0.188939031483025 -1.54953995408555e-016 0.9819888198866078 0.1889390314829297 -1.549539954086119e-016 -0.9819888198865894 -0.188939031483025 1.54953995408555e-016 -0.9819888198866078 -0.1889390314829297 1.549539954086119e-016 0.9989596553336477 0.0456027084248266 -1.941537087421871e-016 0.9989596553336476 0.04560270842483 -1.941537087421885e-016 -0.9989596553336477 -0.0456027084248266 1.941537087421871e-016 -0.9989596553336476 -0.04560270842483 1.941537087421885e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 -0.9953887755023382 -0.09592281065500541 1.658042245359015e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -0.9953887755023239 -0.09592281065515169 1.658042245358849e-016 0.9953887755023239 0.09592281065515169 -1.658042245358849e-016 0.9953887755023382 0.09592281065500541 -1.658042245359015e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 -0.9815976287920792 -0.1909609780813021 1.541976423090479e-016 -0.9815976287920792 -0.1909609780813021 1.541976423090479e-016 0.9815976287920792 0.1909609780813021 -1.541976423090479e-016 0.9815976287920792 0.1909609780813021 -1.541976423090479e-016 -0.8251203141947732 -0.5649570489011698 1.156482317317865e-016 -0.8251203141947732 -0.5649570489011698 1.156482317317865e-016 -0.8251203141947732 -0.5649570489011698 1.156482317317865e-016 -0.8251203141947732 -0.5649570489011698 1.156482317317865e-016 0.8251203141947732 0.5649570489011698 -1.156482317317865e-016 0.8251203141947732 0.5649570489011698 -1.156482317317865e-016 0.8251203141947732 0.5649570489011698 -1.156482317317865e-016 0.8251203141947732 0.5649570489011698 -1.156482317317865e-016 -0.559346710895468 -0.8289338073757286 2.698458740408368e-016 -0.559346710895468 -0.8289338073757286 2.698458740408368e-016 -0.559346710895468 -0.8289338073757286 2.698458740408368e-016 -0.559346710895468 -0.8289338073757286 2.698458740408368e-016 0.559346710895468 0.8289338073757286 -2.698458740408368e-016 0.559346710895468 0.8289338073757286 -2.698458740408368e-016 0.559346710895468 0.8289338073757286 -2.698458740408368e-016 0.559346710895468 0.8289338073757286 -2.698458740408368e-016 -0.1840026186337543 -0.9829257532163461 -7.709882115452518e-017 -0.09239655508640615 -0.995722288897946 -7.743004451558171e-017 -0.1840026186337543 -0.9829257532163461 -7.709882115452518e-017 -0.09239655508631633 -0.9957222888979543 -7.743004451558169e-017 0.09239655508631633 0.9957222888979543 7.743004451558169e-017 0.1840026186337543 0.9829257532163461 7.709882115452518e-017 0.09239655508640615 0.995722288897946 7.743004451558171e-017 0.1840026186337543 0.9829257532163461 7.709882115452518e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"360\" source=\"#ID9409\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9402\">\r\n\t\t\t\t\t<float_array count=\"456\" id=\"ID9410\">-0.04499471515243756 0.1812435617471238 -0.04206879824577872 0.1261785785338647 -0.03470552822070911 0.1781675978196391 -0.04304905195598015 0.1313663004883454 -0.04598981308660128 0.1357131172136532 -0.05609030452242896 0.1822688830562769 -0.05012132169826213 0.1387980411682293 -0.05467381785141427 0.1402000848104897 -0.05537243250111917 0.1402000848104897 -0.05607318685872963 0.1404803865535474 -0.08408196408459776 0.1404803865535474 -0.1542515469986096 0.182549184799343 -0.1261486226224035 0.1404803865535558 -0.1542322896269373 0.1404803865535474 -0.1596730320479428 0.1394618855635127 -0.165461008951735 0.1814012314776021 -0.1642011890230943 0.1364063825934257 -0.1672550872122142 0.1319461613460994 -0.1758115118897573 0.1782376732553951 -0.168273053275243 0.1267135055244311 -0.2103418515210217 0.0002738826191640934 -0.1682730532752262 0.0002738826191725147 -0.1853030558126597 0.1730585101327809 -0.1939356407204589 0.1658637421097006 -0.2011133579457304 0.1572318927265196 -0.2062402988208979 0.1477414855234269 -0.2093164633459781 0.1373925205005233 -0.2103418515210385 0.1261849976577667 -0.1261486226224204 0.0002738826191725147 -0.08408196408458092 0.0002738826191556722 -5.052748343182935e-014 0.1264652994008244 -0.04206879824582925 0.0002738826191556722 -3.36849889545529e-014 0.0002738826191556722 -0.001034147604530989 0.1375501902309848 -0.004136590418039743 0.1478115609592081 -0.009307328440559946 0.1572494115854439 -0.01654636167210844 0.1658637421097174 -0.02522274372726046 0.1730409912738482 0.1261486226224204 0.02187226596679129 0.08408196408458092 1.684247336124938e-014 0.1261486226224204 -2.111602707291493e-020 0.08408196408459776 0.0218722659667576 -0.0002738826191725136 0.02187226596675762 -0.1404803865535474 1.478847758510637e-017 -0.0002738826191556712 1.685728295486155e-014 -0.1404803865535305 0.02187226596674078 0.08408196408459776 0.02187226596674075 0.05607318685872963 -1.083087219861052e-017 0.08408196408459776 -1.083087219861052e-017 0.05607318685876331 0.02187226596674075 0.1042357527586228 0.02187226596674075 0.1034810172175766 -8.450624894968023e-018 0.1042357527585916 -8.450624894968989e-018 0.1034810172175734 0.0218722659667576 0.05537243250111917 0.02187226596675759 0.05467381785141427 1.68316852160118e-014 0.05537243250111917 -1.080926126465322e-017 0.05467381785138059 0.02187226596679127 0.09351712655197088 0.02187226596679127 0.0887536249408724 1.682431494983805e-014 0.09351712655200554 1.682431494983805e-014 0.08875362494088353 0.02187226596677443 0.123203407593003 0.02187226596677444 0.1180472346698185 1.684249447727645e-014 0.1232034075929995 1.684249447727645e-014 0.118047234669832 0.0218722659667576 0.138175844998117 1.683956822511205e-014 0.1329277127903131 0.02187226596674076 0.1329277127902942 3.36820627023885e-014 0.1381758449981264 0.0218722659667576 0.1370750579029531 3.368654236595897e-014 0.1317955355369451 0.0218722659667576 0.1317955355369274 1.684404788868253e-014 0.1370750579029593 0.02187226596674076 0.1261785785338647 1.684989360842976e-014 0.0002738826191640929 0.02187226596677445 0.0002738826191556716 7.399131153321514e-018 0.1261785785338732 0.02187226596675761 0.04206879824584609 0.02187226596677444 3.368498103604275e-014 3.368496783852582e-014 0.04206879824582925 -2.111602707161621e-020 -7.918510151856043e-021 0.02187226596679129 -0.1264652994007991 0.0218722659667576 -0.0002738826191556722 3.36849889545529e-014 -0.0002738826191556722 0.02187226596679129 -0.1264652994008244 1.684249447727645e-014 -0.1370515361716762 0.02187226596677444 -0.1259185102584594 1.683932449766498e-014 -0.1259185102584326 0.0218722659667576 -0.1370515361716793 3.368181897494142e-014 -0.142683418991102 0.0218722659667576 -0.1319633032905543 3.368124795958345e-014 -0.1319633032905445 0.02187226596677444 -0.142683418991102 -3.740994969443267e-018 -0.1423801860299364 0.02187226596677444 -0.1316187011816139 -7.79394132788321e-018 -0.1316187011816139 0.0218722659667576 -0.1423801860299364 1.683470053594856e-014 -0.1376259958367495 0.02187226596677445 -0.1263738719257427 1.68497449023557e-014 -0.1263738719257427 0.02187226596677445 -0.1376259958367603 7.250425079245398e-018 -0.1184708813663833 0.02187226596677442 -0.1297310994429249 3.365786781601297e-014 -0.1184708813663963 -2.712113853992216e-017 -0.1297310994428882 0.02187226596677442 -0.1044814435922754 3.36849889545529e-014 -0.1152612996407342 0.02187226596677444 -0.1152612996406898 0 -0.1044814435922377 0.02187226596677444 -0.08428324617114233 0.02187226596677443 -0.09502237657347 1.683009989731729e-014 -0.08428324617109392 -1.239457995915864e-017 -0.09502237657342159 0.02187226596675759 -0.06148112857840792 0.02187226596675758 -0.07262399119335526 3.365779860438439e-014 -0.06148112857845824 1.681530412710794e-014 -0.07262399119335604 0.02187226596677442 -0.05661054681571356 0.02187226596677442 -0.1547721894951975 3.365690833440666e-014 -0.05661054681571354 3.365690833440666e-014 -0.1547721894952312 0.02187226596677442 -0.1348515154536937 0.02187226596677443 -0.1461196046487023 3.366977627798884e-014 -0.1348515154536585 3.366977627798884e-014 -0.1461196046486537 0.02187226596675759 -0.1052123627451142 0.02187226596675757 -0.1160355328766534 3.365078135846431e-014 -0.1052123627451576 3.36507813584643e-014 -0.1160355328766534 0.02187226596674073 -0.0689564114764995 3.36664333697878e-014 -0.07976904929945833 0.02187226596677443 -0.07976904929948385 -1.855558476509735e-017 -0.0689564114764995 0.02187226596674074 -0.03154810113277365 0.02187226596677445 -0.04278581482803939 1.685219263772631e-014 -0.03154810113279415 9.698160449856634e-018 -0.04278581482804696 0.02187226596677445 -0.007690268767502343 1.967294084982842e-017 0.003535970511071006 0.02187226596677446 -0.007690268767504531 0.02187226596675762 0.003535970511075315 1.686216741812627e-014 0.04274685407623308 5.821192879815142e-017 0.03196013299807508 0.0218722659667745 0.03196013299807508 5.821192879814731e-017 0.04274685407622628 0.02187226596675766 0.07205856856191877 1.686560356468128e-014 0.08285504322870906 0.02187226596677447 0.07205856856190263 0.02187226596677447 0.08285504322870906 2.310908740483088e-017 0.1064958092971394 4.684912848830838e-017 0.1177501413155261 0.02187226596677449 0.1064958092971325 0.02187226596677449 0.1177501413155429 1.688934360576475e-014 0.1261849976577667 3.699527943113856e-017 0.0002738826191725121 0.02187226596675764 0.0002738826191640909 3.69952794311356e-017 0.1261849976577583 0.02187226596677448 0.2103418515210217 0.0218722659667576 0.1682730532752262 3.368496783852582e-014 0.2103418515210217 -2.111602707226585e-020 0.1682730532751925 0.02187226596677444 -0.1267135055244227 0.02187226596675763 -0.0002738826191725127 3.371458510283072e-014 -0.0002738826191640914 0.02187226596677448 -0.1267135055244311 2.959614827782297e-017 -0.09757884406243675 0.02187226596675763 -0.09224808972054611 2.920098808368292e-017 -0.09224808972054106 0.02187226596675763 -0.09757884406243032 -1.681329348919276e-014 -0.01978505808713791 0.02187226596679131 -0.0143795176215674 -1.681791350529182e-014 -0.01437951762158644 0.02187226596675763 -0.01978505808710936 1.686707544926108e-014 0.05981345534375376 1.68977905536189e-014 0.05435082740547828 0.02187226596675766 0.05435082740549695 5.529607634244841e-017 0.05981345534371187 0.02187226596679134 0.1312853831507565 0.02187226596675759 0.1257501304593043 -1.283394185173046e-017 0.1312853831507746 -1.28339418517301e-017 0.1257501304592877 0.02187226596675759 0.1542322896269205 0.02187226596675759 0.1261486226224035 -1.083087219861117e-017 0.1542322896269373 -1.083087219861052e-017 0.1261486226224372 0.02187226596675759 0.0002738826191725132 2.218723240297664e-017 0.1404803865535474 0.02187226596675762 0.0002738826191640919 0.02187226596679131 0.1404803865535558 2.218723240297368e-017 0.0420687982458461 0.0002738826191640951 3.369023237421666e-014 0.1264652994007991 5.243419663774179e-018 0.0002738826191556739 0.001034147604497309 0.1375501902309848 0.004136590418039748 0.1478115609592081 0.009307328440559952 0.1572494115854439 0.0165463616720916 0.1658637421097174 0.02522274372722677 0.1730409912738314 0.03470552822075964 0.1781675978196391 0.04206879824582926 0.1261785785338732 0.1261486226224204 0.0002738826191640951 0.08408196408459776 0.1404803865535305 0.08408196408459776 0.0002738826191725164 0.2103418515210217 0.0002738826191725164 0.1682730532752262 0.1267135055244227 0.1682730532751925 0.0002738826191640951 0.1758115118897573 0.1782376732553951 0.185303055812626 0.1730585101327725 0.1939356407204758 0.165863742109709 0.2011133579457136 0.1572318927265028 0.2062402988208979 0.1477414855234269 0.2093164633459781 0.1373925205005064 0.2103418515210217 0.1261849976577583 0.04499471515238704 0.1812435617471238 0.04304905195601384 0.1313663004883454 0.04598981308661813 0.1357131172136532 0.05609030452242897 0.1822688830562853 0.05012132169827897 0.1387980411682124 0.0546738178513806 0.1402000848104813 0.05537243250111917 0.1402000848104813 0.05607318685876332 0.1404803865535474 0.1542515469986433 0.1825491847993261 0.1261486226224372 0.1404803865535474 0.1542322896269205 0.1404803865535474 0.1596730320479259 0.1394618855635212 0.1654610089516845 0.1814012314775853 0.1642011890230437 0.1364063825934257 0.1672550872121806 0.1319461613460994</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"228\" source=\"#ID9410\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9401\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9399\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9400\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"148\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9401\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9402\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 7 7 5 5 8 8 8 8 5 5 9 9 9 9 5 5 10 10 10 10 5 5 11 11 10 10 11 11 12 12 12 12 11 11 13 13 13 13 11 11 14 14 14 14 11 11 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 17 17 18 18 19 19 19 19 20 20 21 21 20 20 19 19 18 18 20 20 18 18 22 22 20 20 22 22 23 23 20 20 23 23 24 24 20 20 24 24 25 25 20 20 25 25 26 26 20 20 26 26 27 27 10 10 28 28 29 29 28 28 10 10 12 12 30 30 31 31 32 32 31 31 30 30 33 33 31 31 33 33 34 34 31 31 34 34 35 35 31 31 35 35 36 36 31 31 36 36 37 37 31 31 37 37 2 2 31 31 2 2 1 1 76 38 77 39 78 40 77 39 76 38 79 41 84 42 85 43 86 44 85 43 84 42 87 45 92 46 93 47 94 48 93 47 92 46 95 49 100 50 101 51 102 52 101 51 100 50 103 53 108 54 109 55 110 56 109 55 108 54 111 57 111 58 116 59 109 60 116 59 111 58 117 61 117 62 120 63 116 64 120 63 117 62 121 65 120 66 124 67 125 68 124 67 120 66 121 69 128 70 129 71 130 72 129 71 128 70 131 73 130 74 136 75 137 76 136 75 130 74 129 77 140 78 141 79 142 80 141 79 140 78 143 81 148 82 149 83 150 84 149 83 148 82 151 85 156 86 151 87 148 88 151 87 156 86 157 89 160 90 157 91 156 92 157 91 160 90 161 93 164 94 161 95 160 96 161 95 164 94 165 97 168 98 165 99 164 100 165 99 168 98 169 101 168 102 172 103 169 104 172 103 168 102 173 105 172 106 176 107 177 108 176 107 172 106 173 109 176 110 180 111 177 112 180 111 176 110 181 113 181 114 184 115 180 116 184 115 181 114 185 117 185 118 188 119 184 120 188 119 185 118 189 121 189 122 192 123 188 124 192 123 189 122 193 125 193 126 196 127 192 128 196 127 193 126 197 129 196 130 200 131 201 132 200 131 196 130 197 133 200 134 204 135 201 136 204 135 200 134 205 137 208 138 205 139 209 140 205 139 208 138 204 141 208 142 212 143 213 144 212 143 208 142 209 145 216 146 212 147 217 148 212 147 216 146 213 149 220 150 217 151 221 152 217 151 220 150 216 153 220 154 224 155 225 156 224 155 220 154 221 157 228 158 229 159 230 160 229 159 228 158 231 161 236 162 237 163 238 164 237 163 236 162 239 165 244 166 239 167 236 168 239 167 244 166 245 169 248 170 249 171 250 172 249 171 248 170 251 173 256 174 257 175 258 176 257 175 256 174 259 177 264 178 265 179 266 180 265 179 264 178 267 181 267 182 272 183 265 184 272 183 267 182 273 185 276 186 277 187 278 188 277 187 276 186 279 189 284 190 285 191 286 192 285 191 284 190 287 193 287 193 284 190 288 194 288 194 284 190 289 195 289 195 284 190 290 196 290 196 284 190 291 197 291 197 284 190 292 198 292 198 284 190 293 199 294 200 295 201 296 202 297 203 298 204 299 205 298 204 297 203 300 206 300 206 297 203 301 207 301 207 297 203 302 208 302 208 297 203 303 209 303 209 297 203 304 210 304 210 297 203 305 211 305 211 297 203 306 212 293 199 307 213 292 198 307 213 293 199 308 214 307 213 308 214 309 215 307 213 309 215 310 216 310 216 309 215 311 217 310 216 311 217 312 218 310 216 312 218 313 219 310 216 313 219 314 220 310 216 314 220 295 201 310 216 295 201 315 221 315 221 295 201 316 222 316 222 295 201 294 200 315 221 316 222 317 223 315 221 317 223 318 224 315 221 318 224 319 225 319 225 318 224 320 226 319 225 320 226 321 227 319 225 321 227 300 206 300 206 321 227 298 204</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"148\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9401\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9402\" />\r\n\t\t\t\t\t<p>38 1 39 2 40 31 39 2 41 37 40 31 41 37 42 36 40 31 42 36 43 35 40 31 43 35 44 34 40 31 44 34 45 33 40 31 45 33 46 30 40 31 47 32 40 31 46 30 48 12 49 10 50 28 51 29 50 28 49 10 52 27 53 26 54 20 53 26 55 25 54 20 55 25 56 24 54 20 56 24 57 23 54 20 57 23 58 22 54 20 58 22 59 18 54 20 59 18 60 19 54 20 61 21 54 20 60 19 60 19 59 18 62 17 59 18 63 15 62 17 62 17 63 15 64 16 64 16 63 15 65 14 63 15 66 11 65 14 65 14 66 11 67 13 67 13 66 11 48 12 48 12 66 11 49 10 66 11 68 5 49 10 49 10 68 5 69 9 69 9 68 5 70 8 70 8 68 5 71 7 71 7 68 5 72 6 72 6 68 5 73 4 68 5 74 0 73 4 73 4 74 0 75 3 75 3 74 0 38 1 39 2 38 1 74 0 80 41 81 38 82 39 83 40 82 39 81 38 88 45 89 42 90 43 91 44 90 43 89 42 96 49 97 46 98 47 99 48 98 47 97 46 104 53 105 50 106 51 107 52 106 51 105 50 112 57 113 54 114 55 115 56 114 55 113 54 118 61 112 58 119 59 114 60 119 59 112 58 122 65 118 62 123 63 119 64 123 63 118 62 122 69 123 66 126 67 127 68 126 67 123 66 132 73 133 70 134 71 135 72 134 71 133 70 134 77 135 74 138 75 139 76 138 75 135 74 144 81 145 78 146 79 147 80 146 79 145 78 152 85 153 82 154 83 155 84 154 83 153 82 158 89 159 86 152 87 153 88 152 87 159 86 162 93 163 90 158 91 159 92 158 91 163 90 166 97 167 94 162 95 163 96 162 95 167 94 170 101 171 98 166 99 167 100 166 99 171 98 174 105 171 102 175 103 170 104 175 103 171 102 174 109 175 106 178 107 179 108 178 107 175 106 182 113 178 110 183 111 179 112 183 111 178 110 186 117 182 114 187 115 183 116 187 115 182 114 190 121 186 118 191 119 187 120 191 119 186 118 194 125 190 122 195 123 191 124 195 123 190 122 198 129 194 126 199 127 195 128 199 127 194 126 198 133 199 130 202 131 203 132 202 131 199 130 206 137 202 134 207 135 203 136 207 135 202 134 207 141 210 138 206 139 211 140 206 139 210 138 211 145 210 142 214 143 215 144 214 143 210 142 215 149 218 146 214 147 219 148 214 147 218 146 218 153 222 150 219 151 223 152 219 151 222 150 223 157 222 154 226 155 227 156 226 155 222 154 232 161 233 158 234 159 235 160 234 159 233 158 240 165 241 162 242 163 243 164 242 163 241 162 246 169 247 166 240 167 241 168 240 167 247 166 252 173 253 170 254 171 255 172 254 171 253 170 260 177 261 174 262 175 263 176 262 175 261 174 268 181 269 178 270 179 271 180 270 179 269 178 274 185 268 182 275 183 270 184 275 183 268 182 280 189 281 186 282 187 283 188 282 187 281 186 322 204 323 227 324 206 324 206 323 227 325 225 323 227 326 226 325 225 326 226 327 224 325 225 325 225 327 224 328 221 327 224 329 223 328 221 329 223 330 222 328 221 331 200 332 201 330 222 330 222 332 201 328 221 328 221 332 201 333 216 332 201 334 220 333 216 334 220 335 219 333 216 335 219 336 218 333 216 336 218 337 217 333 216 337 217 338 215 333 216 333 216 338 215 339 213 338 215 340 214 339 213 340 214 341 199 339 213 342 198 339 213 341 199 343 212 344 203 345 211 345 211 344 203 346 210 346 210 344 203 347 209 347 209 344 203 348 208 348 208 344 203 349 207 349 207 344 203 324 206 324 206 344 203 322 204 350 205 322 204 344 203 351 202 332 201 331 200 341 199 352 190 342 198 342 198 352 190 353 197 353 197 352 190 354 196 354 196 352 190 355 195 355 195 352 190 356 194 356 194 352 190 357 193 357 193 352 190 358 191 359 192 358 191 352 190</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9411\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9412\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID9416\">12.11273271532355 2.286504766706912 9.094947017729282e-013 14.38444782059742 0.01478966143531579 9.094947017729282e-013 12.11273271532264 0.01478966143486105 9.094947017729282e-013 14.38444782059651 2.286504766708276 9.094947017729282e-013 14.38444782059651 2.286504766708276 9.094947017729282e-013 12.11273271532355 2.286504766706912 9.094947017729282e-013 14.38444782059742 0.01478966143531579 9.094947017729282e-013 12.11273271532264 0.01478966143486105 9.094947017729282e-013 14.38444782059833 0.0147896614344063 1.18110236220582 12.11273271532264 0.01478966143486105 9.094947017729282e-013 14.38444782059742 0.01478966143531579 9.094947017729282e-013 12.11273271532173 0.01478966143531579 1.181102362204911 12.11273271532173 0.01478966143531579 1.181102362204911 14.38444782059833 0.0147896614344063 1.18110236220582 12.11273271532264 0.01478966143486105 9.094947017729282e-013 14.38444782059742 0.01478966143531579 9.094947017729282e-013 12.11273271532173 0.01478966143531579 1.181102362204911 12.11273271532355 2.286504766706912 9.094947017729282e-013 12.11273271532264 0.01478966143486105 9.094947017729282e-013 12.11273271532537 2.286504766707367 1.181102362204911 12.11273271532537 2.286504766707367 1.181102362204911 12.11273271532173 0.01478966143531579 1.181102362204911 12.11273271532355 2.286504766706912 9.094947017729282e-013 12.11273271532264 0.01478966143486105 9.094947017729282e-013 12.11273271532537 2.286504766707367 1.181102362204911 14.38444782059651 2.286504766708276 9.094947017729282e-013 12.11273271532355 2.286504766706912 9.094947017729282e-013 14.38444782059742 2.286504766707822 1.181102362204911 14.38444782059742 2.286504766707822 1.181102362204911 12.11273271532537 2.286504766707367 1.181102362204911 14.38444782059651 2.286504766708276 9.094947017729282e-013 12.11273271532355 2.286504766706912 9.094947017729282e-013 14.38444782059742 0.01478966143531579 9.094947017729282e-013 14.38444782059742 2.286504766707822 1.181102362204911 14.38444782059833 0.0147896614344063 1.18110236220582 14.38444782059651 2.286504766708276 9.094947017729282e-013 14.38444782059651 2.286504766708276 9.094947017729282e-013 14.38444782059742 0.01478966143531579 9.094947017729282e-013 14.38444782059742 2.286504766707822 1.181102362204911 14.38444782059833 0.0147896614344063 1.18110236220582 14.38444782059833 0.0147896614344063 1.18110236220582 12.11273271532537 2.286504766707367 1.181102362204911 12.11273271532173 0.01478966143531579 1.181102362204911 14.38444782059742 2.286504766707822 1.181102362204911 14.38444782059742 2.286504766707822 1.181102362204911 14.38444782059833 0.0147896614344063 1.18110236220582 12.11273271532537 2.286504766707367 1.181102362204911 12.11273271532173 0.01478966143531579 1.181102362204911</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9416\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9413\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID9417\">2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9417\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9415\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9418\">-0.2243098650985842 0.04234268086494281 -0.2663786633443966 0.0002738826191725147 -0.2243098650985673 0.0002738826191640934 -0.2663786633443797 0.04234268086496808 0.2663786633444134 0.02187226596677444 0.2243098650985673 1.684247336124938e-014 0.2663786633443966 1.684247336124938e-014 0.2243098650985505 0.0218722659667576 -0.000273882619172512 0.02187226596675765 -0.04234268086494281 1.688194647448231e-014 -0.0002738826191640907 1.68819464744823e-014 -0.04234268086495124 0.02187226596675765 -0.2243098650986179 0.0218722659667576 -0.2663786633443797 1.683922990649724e-014 -0.2243098650985842 1.683922990649724e-014 -0.2663786633443966 0.0218722659667576 0.0002738826191725115 1.688934560563562e-014 0.04234268086495965 0.02187226596675765 0.000273882619155669 0.02187226596677449 0.04234268086496808 1.688934560563562e-014 0.2663786633444134 0.0002738826191556739 0.2243098650986179 0.04234268086495124 0.2243098650985505 0.0002738826191725164 0.2663786633443966 0.04234268086495965</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9418\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9414\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9412\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9413\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9414\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9415\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 9 5 10 6 9 5 8 4 11 7 16 8 17 9 18 10 17 9 16 8 19 11 24 12 25 13 26 14 25 13 24 12 27 15 32 16 33 17 34 18 33 17 32 16 35 19 40 20 41 21 42 22 41 21 40 20 43 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9414\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9415\" />\r\n\t\t\t\t\t<p>4 3 5 0 6 1 7 2 6 1 5 0 12 7 13 4 14 5 15 6 14 5 13 4 20 11 21 8 22 9 23 10 22 9 21 8 28 15 29 12 30 13 31 14 30 13 29 12 36 19 37 16 38 17 39 18 38 17 37 16 44 23 45 20 46 21 47 22 46 21 45 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9419\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9420\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID9424\">15.14495994220306 9.857309346475176 -9.094947017729282e-013 18.91597697545603 7.585594241200852 -9.094947017729282e-013 15.14495994220124 7.585594241201761 1.818989403545857e-012 24.97384540810526 9.857309346473812 1.818989403545857e-012 21.18769208072627 7.585594241201306 1.818989403545857e-012 18.91597697545785 0 9.094947017729282e-013 24.97384540810617 7.585594241201306 1.818989403545857e-012 21.18769208072899 -4.547473508864641e-013 9.094947017729282e-013 21.18769208072627 7.585594241201306 1.818989403545857e-012 18.91597697545785 0 9.094947017729282e-013 21.18769208072899 -4.547473508864641e-013 9.094947017729282e-013 24.97384540810617 7.585594241201306 1.818989403545857e-012 24.97384540810526 9.857309346473812 1.818989403545857e-012 18.91597697545603 7.585594241200852 -9.094947017729282e-013 15.14495994220306 9.857309346475176 -9.094947017729282e-013 15.14495994220124 7.585594241201761 1.818989403545857e-012 18.91597697545603 7.585594241201306 1.181102362204911 15.14495994220124 7.585594241201761 1.818989403545857e-012 18.91597697545603 7.585594241200852 -9.094947017729282e-013 15.14495994220215 7.585594241202671 1.181102362204001 15.14495994220215 7.585594241202671 1.181102362204001 18.91597697545603 7.585594241201306 1.181102362204911 15.14495994220124 7.585594241201761 1.818989403545857e-012 18.91597697545603 7.585594241200852 -9.094947017729282e-013 15.14495994220215 7.585594241202671 1.181102362204001 15.14495994220306 9.857309346475176 -9.094947017729282e-013 15.14495994220124 7.585594241201761 1.818989403545857e-012 15.14495994220488 9.857309346474267 1.18110236220582 15.14495994220488 9.857309346474267 1.18110236220582 15.14495994220215 7.585594241202671 1.181102362204001 15.14495994220306 9.857309346475176 -9.094947017729282e-013 15.14495994220124 7.585594241201761 1.818989403545857e-012 15.14495994220488 9.857309346474267 1.18110236220582 24.97384540810526 9.857309346473812 1.818989403545857e-012 15.14495994220306 9.857309346475176 -9.094947017729282e-013 24.9738454081089 9.857309346474722 1.18110236220582 24.9738454081089 9.857309346474722 1.18110236220582 15.14495994220488 9.857309346474267 1.18110236220582 24.97384540810526 9.857309346473812 1.818989403545857e-012 15.14495994220306 9.857309346475176 -9.094947017729282e-013 24.97384540810617 7.585594241201306 1.818989403545857e-012 24.9738454081089 9.857309346474722 1.18110236220582 24.97384540810799 7.585594241200397 1.181102362204001 24.97384540810526 9.857309346473812 1.818989403545857e-012 24.97384540810526 9.857309346473812 1.818989403545857e-012 24.97384540810617 7.585594241201306 1.818989403545857e-012 24.9738454081089 9.857309346474722 1.18110236220582 24.97384540810799 7.585594241200397 1.181102362204001 24.97384540810799 7.585594241200397 1.181102362204001 21.18769208072627 7.585594241201306 1.818989403545857e-012 24.97384540810617 7.585594241201306 1.818989403545857e-012 21.1876920807299 7.585594241200852 1.18110236220582 21.1876920807299 7.585594241200852 1.18110236220582 24.97384540810799 7.585594241200397 1.181102362204001 21.18769208072627 7.585594241201306 1.818989403545857e-012 24.97384540810617 7.585594241201306 1.818989403545857e-012 21.18769208072627 7.585594241201306 1.818989403545857e-012 21.18769208072808 0 1.181102362204001 21.18769208072899 -4.547473508864641e-013 9.094947017729282e-013 21.1876920807299 7.585594241200852 1.18110236220582 21.1876920807299 7.585594241200852 1.18110236220582 21.18769208072627 7.585594241201306 1.818989403545857e-012 21.18769208072808 0 1.181102362204001 21.18769208072899 -4.547473508864641e-013 9.094947017729282e-013 21.18769208072808 0 1.181102362204001 18.91597697545785 0 9.094947017729282e-013 21.18769208072899 -4.547473508864641e-013 9.094947017729282e-013 18.91597697545785 0 1.18110236220582 18.91597697545785 0 1.18110236220582 21.18769208072808 0 1.181102362204001 18.91597697545785 0 9.094947017729282e-013 21.18769208072899 -4.547473508864641e-013 9.094947017729282e-013 18.91597697545603 7.585594241201306 1.181102362204911 18.91597697545785 0 9.094947017729282e-013 18.91597697545785 0 1.18110236220582 18.91597697545603 7.585594241200852 -9.094947017729282e-013 18.91597697545603 7.585594241200852 -9.094947017729282e-013 18.91597697545603 7.585594241201306 1.181102362204911 18.91597697545785 0 9.094947017729282e-013 18.91597697545785 0 1.18110236220582 18.91597697545603 7.585594241201306 1.181102362204911 15.14495994220488 9.857309346474267 1.18110236220582 15.14495994220215 7.585594241202671 1.181102362204001 24.9738454081089 9.857309346474722 1.18110236220582 21.1876920807299 7.585594241200852 1.18110236220582 18.91597697545785 0 1.18110236220582 21.18769208072808 0 1.181102362204001 24.97384540810799 7.585594241200397 1.181102362204001 24.97384540810799 7.585594241200397 1.181102362204001 21.1876920807299 7.585594241200852 1.18110236220582 24.9738454081089 9.857309346474722 1.18110236220582 21.18769208072808 0 1.181102362204001 18.91597697545785 0 1.18110236220582 18.91597697545603 7.585594241201306 1.181102362204911 15.14495994220488 9.857309346474267 1.18110236220582 15.14495994220215 7.585594241202671 1.181102362204001</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID9424\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9421\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID9425\">2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID9425\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9423\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID9426\">-0.2804622211519085 0.1825427656754662 -0.3502958699158524 0.1404739674296454 -0.2804622211518748 0.1404739674296622 -0.462478618668616 0.182542765675441 -0.3923646681615975 0.1404739674296538 -0.3502958699158861 1.292062008863603e-030 -0.4624786186686328 0.1404739674296538 -0.392364668161648 -8.421247238638222e-015 0.3502958699158524 0.02187226596675759 0.2804622211518748 3.367415857726117e-014 0.3502958699158524 -1.685332485456818e-014 0.2804622211518916 0.02187226596674075 -0.1404739674296791 0.02187226596674081 -0.1825427656754662 -1.679316630902861e-014 -0.1404739674296622 3.373431712280073e-014 -0.1825427656754494 0.0218722659667745 -0.2804622211519421 0.02187226596677443 -0.462478618668616 3.367091512250903e-014 -0.2804622211519085 -1.685656830932031e-014 -0.4624786186686833 0.02187226596677443 0.1404739674296538 3.376633047363172e-014 0.1825427656754578 0.02187226596677453 0.140473967429637 0.02187226596674084 0.182542765675441 3.376633047363171e-014 0.4624786186686665 0.02187226596674075 0.3923646681615975 3.367415857726117e-014 0.4624786186686328 3.367415857726117e-014 0.3923646681616648 0.02187226596677443 0.1404739674296538 3.375399871382133e-014 -4.72669584030433e-018 0.02187226596674083 -8.425973934478528e-015 1.69115042365449e-014 0.1404739674296454 0.02187226596677452 0.3923646681616312 0.02187226596674076 0.3502958699158861 1.684249447727645e-014 0.392364668161648 1.684249447727645e-014 0.3502958699158861 0.02187226596677444 -0.1404739674296538 0.02187226596675767 4.219906035283324e-018 1.690410510539159e-014 4.219906035283324e-018 0.02187226596677451 -0.1404739674296454 -1.678088384916132e-014 0.3502958699158524 0.1404739674296538 0.2804622211519421 0.1825427656754494 0.2804622211518916 0.1404739674296791 0.4624786186686833 0.1825427656754578 0.3923646681616648 0.1404739674296454 0.3502958699158861 1.686325922016521e-018 0.3923646681616312 1.686325922013923e-018 0.4624786186686665 0.140473967429637</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9426\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9422\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9420\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9421\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9422\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9423\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 1 1 4 4 5 5 4 4 3 3 6 6 7 7 5 5 4 4 16 8 17 9 18 10 17 9 16 8 19 11 24 12 25 13 26 14 25 13 24 12 27 15 32 16 33 17 34 18 33 17 32 16 35 19 40 20 41 21 42 22 41 21 40 20 43 23 48 24 49 25 50 26 49 25 48 24 51 27 56 28 57 29 58 30 57 29 56 28 59 31 64 32 65 33 66 34 65 33 64 32 67 35 72 36 73 37 74 38 73 37 72 36 75 39 80 40 81 41 82 42 81 41 80 40 83 43 83 43 80 40 84 44 84 44 80 40 85 45 84 44 85 45 86 46 83 43 84 44 87 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9422\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9423\" />\r\n\t\t\t\t\t<p>8 4 9 5 10 7 11 6 12 3 8 4 9 5 8 4 13 1 8 4 12 3 13 1 12 3 14 0 13 1 15 2 13 1 14 0 20 11 21 8 22 9 23 10 22 9 21 8 28 15 29 12 30 13 31 14 30 13 29 12 36 19 37 16 38 17 39 18 38 17 37 16 44 23 45 20 46 21 47 22 46 21 45 20 52 27 53 24 54 25 55 26 54 25 53 24 60 31 61 28 62 29 63 30 62 29 61 28 68 35 69 32 70 33 71 34 70 33 69 32 76 39 77 36 78 37 79 38 78 37 77 36 88 47 89 44 90 43 91 46 92 45 89 44 92 45 93 40 89 44 89 44 93 40 90 43 90 43 93 40 94 41 95 42 94 41 93 40</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9427\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9428\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID9432\">25.74880055846006 2.286504766707822 0 28.0205156637312 0.01478966143531579 9.094947017729282e-013 25.74880055845824 0.01478966143486105 0 28.02051566373029 2.286504766707822 9.094947017729282e-013 28.02051566373029 2.286504766707822 9.094947017729282e-013 25.74880055846006 2.286504766707822 0 28.0205156637312 0.01478966143531579 9.094947017729282e-013 25.74880055845824 0.01478966143486105 0 28.0205156637312 0.01478966143531579 9.094947017729282e-013 25.74880055846006 0.01478966143486105 1.181102362204911 25.74880055845824 0.01478966143486105 0 28.02051566373211 0.0147896614344063 1.18110236220582 28.02051566373211 0.0147896614344063 1.18110236220582 28.0205156637312 0.01478966143531579 9.094947017729282e-013 25.74880055846006 0.01478966143486105 1.181102362204911 25.74880055845824 0.01478966143486105 0 25.74880055845824 2.286504766706912 1.181102362204911 25.74880055845824 0.01478966143486105 0 25.74880055846006 0.01478966143486105 1.181102362204911 25.74880055846006 2.286504766707822 0 25.74880055846006 2.286504766707822 0 25.74880055845824 2.286504766706912 1.181102362204911 25.74880055845824 0.01478966143486105 0 25.74880055846006 0.01478966143486105 1.181102362204911 25.74880055845824 2.286504766706912 1.181102362204911 28.02051566373029 2.286504766707822 9.094947017729282e-013 25.74880055846006 2.286504766707822 0 28.02051566372938 2.286504766707822 1.18110236220673 28.02051566372938 2.286504766707822 1.18110236220673 25.74880055845824 2.286504766706912 1.181102362204911 28.02051566373029 2.286504766707822 9.094947017729282e-013 25.74880055846006 2.286504766707822 0 28.0205156637312 0.01478966143531579 9.094947017729282e-013 28.02051566372938 2.286504766707822 1.18110236220673 28.02051566373211 0.0147896614344063 1.18110236220582 28.02051566373029 2.286504766707822 9.094947017729282e-013 28.02051566373029 2.286504766707822 9.094947017729282e-013 28.0205156637312 0.01478966143531579 9.094947017729282e-013 28.02051566372938 2.286504766707822 1.18110236220673 28.02051566373211 0.0147896614344063 1.18110236220582 25.74880055846006 0.01478966143486105 1.181102362204911 28.02051566372938 2.286504766707822 1.18110236220673 25.74880055845824 2.286504766706912 1.181102362204911 28.02051566373211 0.0147896614344063 1.18110236220582 28.02051566373211 0.0147896614344063 1.18110236220582 25.74880055846006 0.01478966143486105 1.181102362204911 28.02051566372938 2.286504766707822 1.18110236220673 25.74880055845824 2.286504766706912 1.181102362204911</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9432\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9429\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID9433\">2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 2.891205793294696e-017 1 7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 -2.891205793294696e-017 -1 -7.709882115452523e-017 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 1 1.204669080539436e-017 -1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -1 -1.204669080539436e-017 1.758816857587576e-016 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 -2.397291470273485e-016 -7.709882115452413e-017 1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1 2.397291470273485e-016 7.709882115452413e-017 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9433\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9431\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9434\">-0.4768296399714826 0.04234268086495965 -0.5188984382172445 0.0002738826191725147 -0.4768296399714489 0.0002738826191640934 -0.5188984382172276 0.04234268086495965 0.5188984382172445 1.684247336124938e-014 0.4768296399714826 0.0218722659667576 0.4768296399714489 -2.111602707226645e-020 0.5188984382172613 0.02187226596677444 -0.04234268086494281 0.02187226596675769 -0.0002738826191640877 8.386560089791991e-017 -0.0002738826191640877 0.02187226596675769 -0.04234268086495965 8.386560089792584e-017 -0.4768296399714489 0.0218722659667576 -0.5188984382172276 1.683922990649724e-014 -0.4768296399714826 -3.264570779210663e-018 -0.5188984382172108 0.02187226596679128 0.0002738826191725084 1.693375920932768e-014 0.04234268086495965 0.02187226596679138 0.0002738826191556659 0.02187226596677454 0.04234268086495965 1.693375920932768e-014 0.4768296399714826 0.0002738826191640951 0.5188984382172108 0.04234268086495965 0.4768296399714489 0.04234268086494281 0.5188984382172613 0.0002738826191556739</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9434\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9430\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9428\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9429\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9430\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9431\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 9 5 10 6 9 5 8 4 11 7 16 8 17 9 18 10 17 9 16 8 19 11 24 12 25 13 26 14 25 13 24 12 27 15 32 16 33 17 34 18 33 17 32 16 35 19 40 20 41 21 42 22 41 21 40 20 43 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9430\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9431\" />\r\n\t\t\t\t\t<p>4 3 5 0 6 1 7 2 6 1 5 0 12 7 13 4 14 5 15 6 14 5 13 4 20 11 21 8 22 9 23 10 22 9 21 8 28 15 29 12 30 13 31 14 30 13 29 12 36 19 37 16 38 17 39 18 38 17 37 16 44 23 45 20 46 21 47 22 46 21 45 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9437\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9438\">\r\n\t\t\t\t\t<float_array count=\"1104\" id=\"ID9442\">1.174044920638153 9.827383390914633 -6.821210263296962e-013 0 0 0 -9.094947017729282e-013 9.842519685039633 -4.547473508864641e-013 1.196749361828552 1.13686837721616e-013 0 2.271715105272961 7.570804579766786 -2.273736754432321e-013 3.756920637199983 9.827383390913496 -2.273736754432321e-013 2.256578811147847 3.771363665942772 -6.821210263296962e-013 2.271715105270232 6.058215065341301 0 7.481488890008222 7.570804579766218 -4.547473508864641e-013 6.036839382797552 9.827383390914406 0 7.407771671292721 9.827383390914747 2.273736754432321e-013 8.013252322346489 9.772019650976858 4.547473508864641e-013 7.765409949079185 7.515415564529008 -9.094947017729282e-013 8.011490272840092 7.349248518815216 -2.273736754432321e-013 8.181860239915295 7.102864891451532 2.273736754432321e-013 8.572341965073065 9.605928431164443 -4.547473508864641e-013 8.238650228943698 6.806826131261232 0 8.277660849583299 3.311237656179173 0 8.33258768790347 3.029107532670764 2.273736754432321e-013 8.33258768790347 3.013971238545082 0 7.57496417204311 3.771363665942886 2.273736754432321e-013 7.481488890003675 6.058215065340733 0 7.765409949079185 6.104143896750998 -2.273736754432321e-013 7.868547617348668 3.716451270653806 -2.273736754432321e-013 8.011490272839183 6.272202979229746 -4.547473508864641e-013 8.112880334631882 3.551714084786227 -6.821210263296962e-013 8.181860239918024 6.5204208712438 -4.547473508864641e-013 2.271715105272961 2.271715105272961 -4.547473508864641e-013 3.832602107822822 -3.410605131648481e-013 2.273736754432321e-013 7.57496417204402 2.271715105272847 9.094947017729282e-013 6.180691949100037 -2.273736754432321e-013 -2.273736754432321e-013 7.574386450893144 4.547473508864641e-013 -2.273736754432321e-013 8.17986710194964 0.05536373993766119 -6.821210263296962e-013 7.868547617347758 2.317167316734185 -2.273736754432321e-013 8.112880334628244 2.483796539367518 -4.547473508864641e-013 8.277660849586027 2.729949078271147 -2.273736754432321e-013 8.738956744676216 0.2214549597492805 0 9.085040599469721 9.329109731477161 2.273736754432321e-013 9.251655379071053 0.4982736594369044 -2.273736754432321e-013 9.551348225535548 8.941563551914669 -2.273736754432321e-013 9.717963005138699 0.8858198389998506 -6.821210263296962e-013 9.816406689067662 4.966668724894362 2.273736754432321e-013 9.939071332200001 8.475468960521539 0 10.08347273359323 5.377457348464873 -4.547473508864641e-013 10.21601640838981 7.963005025342682 -2.273736754432321e-013 10.27852583680124 5.822273747759368 4.547473508864641e-013 10.38218345410223 7.404171746376164 -9.094947017729282e-013 10.39781081120509 6.297362735303523 4.547473508864641e-013 10.43757246934001 6.798969123623806 -4.547473508864641e-013 10.10568611180406 1.350968412009934 -2.273736754432321e-013 10.13268013253128 4.546492132639855 -2.273736754432321e-013 10.38263118799478 1.860594292041469 -4.547473508864641e-013 10.38453766778639 4.073280738833091 0 10.54879823370811 2.414697479092638 -6.821210263296962e-013 10.5492748536517 3.558415650123607 -2.273736754432321e-013 10.60418724894407 3.013277973166055 -6.821210263296962e-013 10.60418724894407 3.013277973166055 -6.821210263296962e-013 10.5492748536517 3.558415650123607 -2.273736754432321e-013 10.54879823370811 2.414697479092638 -6.821210263296962e-013 10.38453766778639 4.073280738833091 0 10.38263118799478 1.860594292041469 -4.547473508864641e-013 10.13268013253128 4.546492132639855 -2.273736754432321e-013 10.10568611180406 1.350968412009934 -2.273736754432321e-013 9.816406689067662 4.966668724894362 2.273736754432321e-013 9.717963005138699 0.8858198389998506 -6.821210263296962e-013 10.43757246934001 6.798969123623806 -4.547473508864641e-013 10.38218345410223 7.404171746376164 -9.094947017729282e-013 10.39781081120509 6.297362735303523 4.547473508864641e-013 10.27852583680124 5.822273747759368 4.547473508864641e-013 10.21601640838981 7.963005025342682 -2.273736754432321e-013 10.08347273359323 5.377457348464873 -4.547473508864641e-013 9.939071332200001 8.475468960521539 0 9.551348225535548 8.941563551914669 -2.273736754432321e-013 9.251655379071053 0.4982736594369044 -2.273736754432321e-013 9.085040599469721 9.329109731477161 2.273736754432321e-013 8.738956744676216 0.2214549597492805 0 8.572341965073065 9.605928431164443 -4.547473508864641e-013 8.33258768790347 3.013971238545082 0 8.277660849586027 2.729949078271147 -2.273736754432321e-013 8.17986710194964 0.05536373993766119 -6.821210263296962e-013 8.112880334628244 2.483796539367518 -4.547473508864641e-013 7.868547617347758 2.317167316734185 -2.273736754432321e-013 7.57496417204402 2.271715105272847 9.094947017729282e-013 7.574386450893144 4.547473508864641e-013 -2.273736754432321e-013 6.180691949100037 -2.273736754432321e-013 -2.273736754432321e-013 3.832602107822822 -3.410605131648481e-013 2.273736754432321e-013 2.271715105272961 2.271715105272961 -4.547473508864641e-013 2.256578811147847 3.771363665942772 -6.821210263296962e-013 1.196749361828552 1.13686837721616e-013 0 8.238650228943698 6.806826131261232 0 8.181860239918024 6.5204208712438 -4.547473508864641e-013 8.277660849583299 3.311237656179173 0 8.112880334631882 3.551714084786227 -6.821210263296962e-013 8.011490272839183 6.272202979229746 -4.547473508864641e-013 7.868547617348668 3.716451270653806 -2.273736754432321e-013 7.765409949079185 6.104143896750998 -2.273736754432321e-013 7.57496417204311 3.771363665942886 2.273736754432321e-013 7.481488890003675 6.058215065340733 0 2.271715105270232 6.058215065341301 0 8.33258768790347 3.029107532670764 2.273736754432321e-013 8.181860239915295 7.102864891451532 2.273736754432321e-013 8.013252322346489 9.772019650976858 4.547473508864641e-013 8.011490272840092 7.349248518815216 -2.273736754432321e-013 7.765409949079185 7.515415564529008 -9.094947017729282e-013 7.481488890008222 7.570804579766218 -4.547473508864641e-013 7.407771671292721 9.827383390914747 2.273736754432321e-013 6.036839382797552 9.827383390914406 0 3.756920637199983 9.827383390913496 -2.273736754432321e-013 2.271715105272961 7.570804579766786 -2.273736754432321e-013 1.174044920638153 9.827383390914633 -6.821210263296962e-013 0 0 0 -9.094947017729282e-013 9.842519685039633 -4.547473508864641e-013 1.818989403545857e-012 9.842519685039292 1.181102362204911 0 0 0 1.818989403545857e-012 -1.13686837721616e-013 1.181102362204456 -9.094947017729282e-013 9.842519685039633 -4.547473508864641e-013 -9.094947017729282e-013 9.842519685039633 -4.547473508864641e-013 1.818989403545857e-012 9.842519685039292 1.181102362204911 0 0 0 1.818989403545857e-012 -1.13686837721616e-013 1.181102362204456 -9.094947017729282e-013 9.842519685039633 -4.547473508864641e-013 1.174044920636334 9.827383390914633 1.181102362205138 1.174044920638153 9.827383390914633 -6.821210263296962e-013 1.818989403545857e-012 9.842519685039292 1.181102362204911 1.818989403545857e-012 9.842519685039292 1.181102362204911 -9.094947017729282e-013 9.842519685039633 -4.547473508864641e-013 1.174044920636334 9.827383390914633 1.181102362205138 1.174044920638153 9.827383390914633 -6.821210263296962e-013 3.756920637199983 9.827383390913496 -2.273736754432321e-013 3.756920637199983 9.827383390914292 1.181102362205138 3.756920637199983 9.827383390914292 1.181102362205138 3.756920637199983 9.827383390913496 -2.273736754432321e-013 6.036839382797552 9.827383390914406 0 6.036839382798462 9.827383390914861 1.181102362204683 6.036839382798462 9.827383390914861 1.181102362204683 6.036839382797552 9.827383390914406 0 7.407771671292721 9.827383390914747 2.273736754432321e-013 7.407771671289993 9.827383390914179 1.181102362204683 7.407771671289993 9.827383390914179 1.181102362204683 7.407771671292721 9.827383390914747 2.273736754432321e-013 8.013252322346489 9.772019650976858 4.547473508864641e-013 8.013252322346489 9.772019650977086 1.181102362204456 8.013252322346489 9.772019650977086 1.181102362204456 8.013252322346489 9.772019650976858 4.547473508864641e-013 8.572341965071246 9.605928431164443 1.181102362205138 8.572341965073065 9.605928431164443 -4.547473508864641e-013 8.572341965071246 9.605928431164443 1.181102362205138 8.572341965073065 9.605928431164443 -4.547473508864641e-013 9.085040599469721 9.329109731477161 2.273736754432321e-013 9.085040599469721 9.329109731477388 1.181102362205365 9.085040599469721 9.329109731477388 1.181102362205365 9.085040599469721 9.329109731477161 2.273736754432321e-013 9.551348225536458 8.941563551914555 1.181102362204229 9.551348225535548 8.941563551914669 -2.273736754432321e-013 9.551348225536458 8.941563551914555 1.181102362204229 9.551348225535548 8.941563551914669 -2.273736754432321e-013 9.939071332200001 8.475468960521539 0 9.939071332200001 8.475468960521084 1.181102362204456 9.939071332200001 8.475468960521539 0 9.939071332200001 8.475468960521084 1.181102362204456 10.21601640838981 7.963005025342682 -2.273736754432321e-013 10.21601640838799 7.963005025341658 1.181102362205138 10.21601640838981 7.963005025342682 -2.273736754432321e-013 10.21601640838799 7.963005025341658 1.181102362205138 10.38218345410041 7.404171746376846 1.181102362204456 10.38218345410223 7.404171746376164 -9.094947017729282e-013 10.38218345410041 7.404171746376846 1.181102362204456 10.38218345410223 7.404171746376164 -9.094947017729282e-013 10.43757246933819 6.798969123623806 1.181102362204229 10.43757246934001 6.798969123623806 -4.547473508864641e-013 10.43757246933819 6.798969123623806 1.181102362204229 10.43757246934001 6.798969123623806 -4.547473508864641e-013 10.39781081120236 6.297362735303636 1.181102362204683 10.39781081120509 6.297362735303523 4.547473508864641e-013 10.39781081120236 6.297362735303636 1.181102362204683 10.39781081120509 6.297362735303523 4.547473508864641e-013 10.27852583680124 5.822273747759368 4.547473508864641e-013 10.27852583679942 5.822273747759141 1.181102362204456 10.27852583680124 5.822273747759368 4.547473508864641e-013 10.27852583679942 5.822273747759141 1.181102362204456 10.08347273359505 5.377457348464986 1.181102362204001 10.08347273359323 5.377457348464873 -4.547473508864641e-013 10.08347273359505 5.377457348464986 1.181102362204001 10.08347273359323 5.377457348464873 -4.547473508864641e-013 9.816406689065843 4.96666872489493 1.181102362204911 9.816406689067662 4.966668724894362 2.273736754432321e-013 9.816406689065843 4.96666872489493 1.181102362204911 9.816406689067662 4.966668724894362 2.273736754432321e-013 10.13268013253128 4.546492132639855 -2.273736754432321e-013 9.816406689065843 4.96666872489493 1.181102362204911 10.13268013252946 4.546492132639401 1.181102362204683 9.816406689067662 4.966668724894362 2.273736754432321e-013 9.816406689067662 4.966668724894362 2.273736754432321e-013 10.13268013253128 4.546492132639855 -2.273736754432321e-013 9.816406689065843 4.96666872489493 1.181102362204911 10.13268013252946 4.546492132639401 1.181102362204683 10.38453766778639 4.073280738833091 0 10.3845376677873 4.073280738832295 1.181102362204683 10.38453766778639 4.073280738833091 0 10.3845376677873 4.073280738832295 1.181102362204683 10.54927485365624 3.558415650124289 1.181102362205138 10.5492748536517 3.558415650123607 -2.273736754432321e-013 10.54927485365624 3.558415650124289 1.181102362205138 10.5492748536517 3.558415650123607 -2.273736754432321e-013 10.60418724894407 3.013277973166055 -6.821210263296962e-013 10.6041872489468 3.013277973165373 1.181102362204456 10.60418724894407 3.013277973166055 -6.821210263296962e-013 10.6041872489468 3.013277973165373 1.181102362204456 10.54879823370811 2.414697479092752 1.181102362204456 10.54879823370811 2.414697479092638 -6.821210263296962e-013 10.54879823370811 2.414697479092752 1.181102362204456 10.54879823370811 2.414697479092638 -6.821210263296962e-013 10.38263118799478 1.860594292041469 -4.547473508864641e-013 10.38263118799569 1.860594292041014 1.181102362204911 10.38263118799478 1.860594292041469 -4.547473508864641e-013 10.38263118799569 1.860594292041014 1.181102362204911 10.10568611180406 1.35096841201073 1.181102362203774 10.10568611180406 1.350968412009934 -2.273736754432321e-013 10.10568611180406 1.35096841201073 1.181102362203774 10.10568611180406 1.350968412009934 -2.273736754432321e-013 9.71796300513779 0.8858198389999643 1.181102362204911 9.717963005138699 0.8858198389998506 -6.821210263296962e-013 9.71796300513779 0.8858198389999643 1.181102362204911 9.717963005138699 0.8858198389998506 -6.821210263296962e-013 9.251655379071053 0.4982736594369044 -2.273736754432321e-013 9.251655379072872 0.4982736594373591 1.181102362204456 9.251655379072872 0.4982736594373591 1.181102362204456 9.251655379071053 0.4982736594369044 -2.273736754432321e-013 8.738956744676216 0.2214549597492805 0 8.738956744677125 0.2214549597505311 1.181102362204456 8.738956744677125 0.2214549597505311 1.181102362204456 8.738956744676216 0.2214549597492805 0 8.179867101952368 0.05536373993732013 1.181102362204229 8.17986710194964 0.05536373993766119 -6.821210263296962e-013 8.179867101952368 0.05536373993732013 1.181102362204229 8.17986710194964 0.05536373993766119 -6.821210263296962e-013 7.574386450893144 4.547473508864641e-013 -2.273736754432321e-013 7.574386450894053 7.958078640513122e-013 1.181102362204911 7.574386450894053 7.958078640513122e-013 1.181102362204911 7.574386450893144 4.547473508864641e-013 -2.273736754432321e-013 6.180691949100037 -2.273736754432321e-013 -2.273736754432321e-013 6.180691949099128 3.410605131648481e-013 1.181102362204911 6.180691949099128 3.410605131648481e-013 1.181102362204911 6.180691949100037 -2.273736754432321e-013 -2.273736754432321e-013 3.832602107822822 -3.410605131648481e-013 2.273736754432321e-013 3.832602107821913 0 1.181102362204683 3.832602107821913 0 1.181102362204683 3.832602107822822 -3.410605131648481e-013 2.273736754432321e-013 1.196749361824914 1.13686837721616e-012 1.181102362204683 1.196749361828552 1.13686837721616e-013 0 1.196749361824914 1.13686837721616e-012 1.181102362204683 1.196749361828552 1.13686837721616e-013 0 0 0 0 1.818989403545857e-012 -1.13686837721616e-013 1.181102362204456 1.818989403545857e-012 -1.13686837721616e-013 1.181102362204456 0 0 0 7.574964172044929 3.771363665943454 1.181102362204911 2.271715105271142 6.058215065340391 1.181102362205138 2.256578811147847 3.771363665943568 1.181102362204456 7.481488890004584 6.05821506534096 1.181102362204683 7.765409949080095 6.104143896751111 1.181102362204911 7.868547617351396 3.71645127065392 1.181102362204683 8.011490272836454 6.272202979229178 1.181102362204229 8.112880334630972 3.551714084785999 1.181102362204683 8.181860239918933 6.520420871244028 1.181102362204456 8.277660849584208 3.311237656178378 1.181102362204229 8.238650228943698 6.806826131261914 1.181102362204911 10.10568611180406 1.35096841201073 1.181102362203774 9.816406689065843 4.96666872489493 1.181102362204911 9.71796300513779 0.8858198389999643 1.181102362204911 10.13268013252946 4.546492132639401 1.181102362204683 10.38263118799569 1.860594292041014 1.181102362204911 10.3845376677873 4.073280738832295 1.181102362204683 10.54879823370811 2.414697479092752 1.181102362204456 10.54927485365624 3.558415650124289 1.181102362205138 10.6041872489468 3.013277973165373 1.181102362204456 1.196749361824914 1.13686837721616e-012 1.181102362204683 2.27171510527387 2.271715105272961 1.181102362204683 3.832602107821913 0 1.181102362204683 7.57496417204402 2.271715105272392 1.181102362204229 6.180691949099128 3.410605131648481e-013 1.181102362204911 7.574386450894053 7.958078640513122e-013 1.181102362204911 8.179867101952368 0.05536373993732013 1.181102362204229 7.868547617346849 2.31716731673373 1.181102362204456 8.112880334630063 2.483796539367177 1.181102362204456 8.277660849586027 2.729949078271602 1.181102362205365 8.738956744677125 0.2214549597505311 1.181102362204456 8.33258768790256 3.013971238545878 1.181102362204683 8.33258768790256 3.029107532670764 1.181102362204683 8.572341965071246 9.605928431164443 1.181102362205138 9.085040599469721 9.329109731477388 1.181102362205365 9.251655379072872 0.4982736594373591 1.181102362204456 9.551348225536458 8.941563551914555 1.181102362204229 9.939071332200001 8.475468960521084 1.181102362204456 10.08347273359505 5.377457348464986 1.181102362204001 10.21601640838799 7.963005025341658 1.181102362205138 10.27852583679942 5.822273747759141 1.181102362204456 10.38218345410041 7.404171746376846 1.181102362204456 10.39781081120236 6.297362735303636 1.181102362204683 10.43757246933819 6.798969123623806 1.181102362204229 1.818989403545857e-012 9.842519685039292 1.181102362204911 1.818989403545857e-012 -1.13686837721616e-013 1.181102362204456 1.174044920636334 9.827383390914633 1.181102362205138 2.271715105272051 7.570804579766332 1.181102362204456 3.756920637199983 9.827383390914292 1.181102362205138 7.481488890004584 7.570804579766332 1.181102362204229 6.036839382798462 9.827383390914861 1.181102362204683 7.407771671289993 9.827383390914179 1.181102362204683 8.013252322346489 9.772019650977086 1.181102362204456 7.765409949079185 7.515415564528553 1.181102362204911 8.011490272836454 7.349248518815784 1.181102362204229 8.181860239916205 7.102864891451077 1.181102362203774 8.33258768790256 3.029107532670764 1.181102362204683 8.277660849584208 3.311237656178378 1.181102362204229 8.572341965071246 9.605928431164443 1.181102362205138 8.238650228943698 6.806826131261914 1.181102362204911 8.181860239916205 7.102864891451077 1.181102362203774 8.013252322346489 9.772019650977086 1.181102362204456 8.011490272836454 7.349248518815784 1.181102362204229 7.765409949079185 7.515415564528553 1.181102362204911 7.481488890004584 7.570804579766332 1.181102362204229 7.407771671289993 9.827383390914179 1.181102362204683 6.036839382798462 9.827383390914861 1.181102362204683 3.756920637199983 9.827383390914292 1.181102362205138 2.271715105272051 7.570804579766332 1.181102362204456 2.271715105271142 6.058215065340391 1.181102362205138 2.256578811147847 3.771363665943568 1.181102362204456 1.196749361824914 1.13686837721616e-012 1.181102362204683 1.174044920636334 9.827383390914633 1.181102362205138 1.818989403545857e-012 9.842519685039292 1.181102362204911 1.818989403545857e-012 -1.13686837721616e-013 1.181102362204456 10.43757246933819 6.798969123623806 1.181102362204229 10.39781081120236 6.297362735303636 1.181102362204683 10.38218345410041 7.404171746376846 1.181102362204456 10.27852583679942 5.822273747759141 1.181102362204456 10.21601640838799 7.963005025341658 1.181102362205138 10.08347273359505 5.377457348464986 1.181102362204001 9.939071332200001 8.475468960521084 1.181102362204456 9.816406689065843 4.96666872489493 1.181102362204911 9.551348225536458 8.941563551914555 1.181102362204229 9.71796300513779 0.8858198389999643 1.181102362204911 9.251655379072872 0.4982736594373591 1.181102362204456 9.085040599469721 9.329109731477388 1.181102362205365 8.738956744677125 0.2214549597505311 1.181102362204456 8.33258768790256 3.013971238545878 1.181102362204683 8.277660849586027 2.729949078271602 1.181102362205365 8.179867101952368 0.05536373993732013 1.181102362204229 8.112880334630063 2.483796539367177 1.181102362204456 7.868547617346849 2.31716731673373 1.181102362204456 7.57496417204402 2.271715105272392 1.181102362204229 7.574386450894053 7.958078640513122e-013 1.181102362204911 6.180691949099128 3.410605131648481e-013 1.181102362204911 3.832602107821913 0 1.181102362204683 2.27171510527387 2.271715105272961 1.181102362204683 10.6041872489468 3.013277973165373 1.181102362204456 10.54879823370811 2.414697479092752 1.181102362204456 10.54927485365624 3.558415650124289 1.181102362205138 10.3845376677873 4.073280738832295 1.181102362204683 10.38263118799569 1.860594292041014 1.181102362204911 10.13268013252946 4.546492132639401 1.181102362204683 10.10568611180406 1.35096841201073 1.181102362203774 8.181860239918933 6.520420871244028 1.181102362204456 8.112880334630972 3.551714084785999 1.181102362204683 8.011490272836454 6.272202979229178 1.181102362204229 7.868547617351396 3.71645127065392 1.181102362204683 7.765409949080095 6.104143896751111 1.181102362204911 7.574964172044929 3.771363665943454 1.181102362204911 7.481488890004584 6.05821506534096 1.181102362204683</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"368\" source=\"#ID9442\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9439\">\r\n\t\t\t\t\t<float_array count=\"1104\" id=\"ID9443\">1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 0.01289136052432664 0.999916902959357 3.330990824542154e-016 0.00644581417058072 0.9999792255240498 -5.549621660238312e-017 0.006445814170568441 0.9999792255240497 -5.549621660312331e-017 0.01289136052432664 0.999916902959357 3.330990824542154e-016 -0.01289136052432664 -0.999916902959357 -3.330990824542154e-016 -0.01289136052432664 -0.999916902959357 -3.330990824542154e-016 -0.00644581417058072 -0.9999792255240498 5.549621660238312e-017 -0.006445814170568441 -0.9999792255240497 5.549621660312331e-017 2.104347478334897e-017 1 -4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 0.04557626106672123 0.9989608623100198 -2.78111673707832e-016 0.04557626106659112 0.9989608623100257 -2.78111673708307e-016 -0.04557626106659112 -0.9989608623100257 2.78111673708307e-016 -0.04557626106672123 -0.9989608623100198 2.78111673707832e-016 0.1888366571070893 0.9820085116395987 -1.144050658499905e-016 0.1888366571070727 0.9820085116396018 -1.144050658499901e-016 -0.1888366571070727 -0.9820085116396018 1.144050658499901e-016 -0.1888366571070893 -0.9820085116395987 1.144050658499905e-016 0.3819661392915594 0.9241763189103588 -6.227188773284522e-016 0.3819661392916962 0.9241763189103023 -6.227188773291756e-016 -0.3819661392915594 -0.9241763189103588 6.227188773284522e-016 -0.3819661392916962 -0.9241763189103023 6.227188773291756e-016 0.5598838287228589 0.8285711184531069 -4.286105877241353e-016 0.5598838287228198 0.8285711184531333 -4.286105877244676e-016 -0.5598838287228198 -0.8285711184531333 4.286105877244676e-016 -0.5598838287228589 -0.8285711184531069 4.286105877241353e-016 0.7069480092461117 0.7072655174847419 -9.411405754756246e-018 0.7069480092460998 0.7072655174847535 -9.411405754705787e-018 -0.7069480092461117 -0.7072655174847419 9.411405754756246e-018 -0.7069480092460998 -0.7072655174847535 9.411405754705787e-018 0.8283383174152883 0.5602281962750616 -4.140396236199835e-016 0.828338317415338 0.5602281962749882 -4.140396236200944e-016 -0.8283383174152883 -0.5602281962750616 4.140396236199835e-016 -0.828338317415338 -0.5602281962749882 4.140396236200944e-016 0.9240555296281393 0.3822582610796778 -3.695535129732529e-016 0.9240555296281302 0.3822582610796997 -3.695535129732914e-016 -0.9240555296281393 -0.3822582610796778 3.695535129732529e-016 -0.9240555296281302 -0.3822582610796997 3.695535129732914e-016 0.9819770596895273 0.1890001435012957 -1.667835735949035e-016 0.9819770596895594 0.1890001435011288 -1.667835735948457e-016 -0.9819770596895273 -0.1890001435012957 1.667835735949035e-016 -0.9819770596895594 -0.1890001435011288 1.667835735948457e-016 0.9999815048633836 0.006081934820651233 -6.134142727624207e-016 0.999981504863383 0.006081934820734079 -6.134142727619544e-016 -0.9999815048633836 -0.006081934820651233 6.134142727624207e-016 -0.999981504863383 -0.006081934820734079 6.134142727619544e-016 0.9868180243768601 -0.1618338245390963 -8.088723251127274e-016 0.9868180243768745 -0.1618338245390081 -8.088723251130323e-016 -0.9868180243768601 0.1618338245390963 8.088723251127274e-016 -0.9868180243768745 0.1618338245390081 8.088723251130323e-016 0.9461644858621076 -0.3236862148644791 -3.598234345160018e-016 0.9461644858621124 -0.323686214864465 -3.598234345160311e-016 -0.9461644858621076 0.3236862148644791 3.598234345160018e-016 -0.9461644858621124 0.323686214864465 3.598234345160311e-016 0.8800356233615279 -0.4749076769380415 -9.784431930733896e-017 0.8800356233614931 -0.474907676938106 -9.784431930725132e-017 -0.8800356233615279 0.4749076769380415 9.784431930733896e-017 -0.8800356233614931 0.474907676938106 9.784431930725132e-017 0.8383937759295123 -0.5450650204174312 0 0.8383937759295123 -0.5450650204174312 0 -0.8383937759295123 0.5450650204174312 -0 -0.8383937759295123 0.5450650204174312 -0 0.8434260759401285 0.5372452460694619 -2.441277556920019e-016 0.7989573930698668 0.6013876321134336 5.861548341154552e-016 0.84342607594009 0.5372452460695222 -2.441277556912397e-016 0.7989573930698668 0.6013876321134336 5.861548341154552e-016 -0.7989573930698668 -0.6013876321134336 -5.861548341154552e-016 -0.8434260759401285 -0.5372452460694619 2.441277556920019e-016 -0.7989573930698668 -0.6013876321134336 -5.861548341154552e-016 -0.84342607594009 -0.5372452460695222 2.441277556912397e-016 0.9213009613626267 0.3888502778606437 -2.390349399702676e-016 0.9213009613626769 0.3888502778605247 -2.390349399690639e-016 -0.9213009613626267 -0.3888502778606437 2.390349399702676e-016 -0.9213009613626769 -0.3888502778605247 2.390349399690639e-016 0.9790547814657961 0.2035969913553792 3.256105886371337e-016 0.9790547814658015 0.2035969913553535 3.25610588637065e-016 -0.9790547814657961 -0.2035969913553792 -3.256105886371337e-016 -0.9790547814658015 -0.2035969913553535 -3.25610588637065e-016 0.999991755337762 0.004060696553755036 -6.392835130398492e-016 0.999991755337762 0.004060696553746978 -6.392835130399067e-016 -0.999991755337762 -0.004060696553755036 6.392835130398492e-016 -0.999991755337762 -0.004060696553746978 6.392835130399067e-016 0.9816605861565356 -0.1906370729601323 -6.249532915275035e-016 0.9816605861565405 -0.1906370729601072 -6.249532915276836e-016 -0.9816605861565356 0.1906370729601323 6.249532915275035e-016 -0.9816605861565405 0.1906370729601072 6.249532915276836e-016 0.9231629724512523 -0.38440880101133 3.476228014365287e-016 0.9231629724512543 -0.3844088010113254 3.476228014365158e-016 -0.9231629724512523 0.38440880101133 -3.476228014365287e-016 -0.9231629724512543 0.3844088010113254 -3.476228014365158e-016 0.8274056781210731 -0.5616047042297697 6.332989982853976e-016 0.8274056781210261 -0.561604704229839 6.332989982854132e-016 -0.8274056781210731 0.5616047042297697 -6.332989982853976e-016 -0.8274056781210261 0.561604704229839 -6.332989982854132e-016 0.7065946151949309 -0.7076185764785485 5.288084838736197e-016 0.7065946151949933 -0.7076185764784863 5.288084838737379e-016 -0.7065946151949309 0.7076185764785485 -5.288084838736197e-016 -0.7065946151949933 0.7076185764784863 -5.288084838737379e-016 0.559883828722816 -0.828571118453136 -1.101440270520563e-016 0.5598838287229615 -0.8285711184530377 -1.10144027051144e-016 -0.5598838287229615 0.8285711184530377 1.10144027051144e-016 -0.559883828722816 0.828571118453136 1.101440270520563e-016 0.3819661392915059 -0.9241763189103808 -2.551424399704426e-016 0.3819661392916768 -0.9241763189103103 -2.551424399711066e-016 -0.3819661392916768 0.9241763189103103 2.551424399711066e-016 -0.3819661392915059 0.9241763189103808 2.551424399704426e-016 0.1888366571071645 -0.9820085116395841 5.067647522063485e-016 0.1888366571069011 -0.9820085116396348 5.067647522074042e-016 -0.1888366571071645 0.9820085116395841 -5.067647522063485e-016 -0.1888366571069011 0.9820085116396348 -5.067647522074042e-016 0.04557626106665136 -0.9989608623100229 6.689643306609476e-016 0.04557626106666959 -0.9989608623100222 6.689643306610374e-016 -0.04557626106666959 0.9989608623100222 -6.689643306610374e-016 -0.04557626106665136 0.9989608623100229 -6.689643306609476e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"368\" source=\"#ID9443\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9441\">\r\n\t\t\t\t\t<float_array count=\"464\" id=\"ID9444\">-0.02174157260441023 0.181988581313234 0 0 1.684249447727645e-014 0.1822688830562895 -0.02216202521904725 2.105311809659556e-015 -0.04206879824579556 0.140200084810496 -0.06957260439259226 0.1819885813132129 -0.0417884965027379 0.06984006788782911 -0.04206879824574503 0.1121891678766908 -0.1385460905557078 0.1402000848104855 -0.1117933219036584 0.1819885813132297 -0.1371809568757911 0.1819885813132361 -0.148393561524935 0.1809633268699418 -0.1438038879459108 0.1391743623060927 -0.1483609309785202 0.1360971947928744 -0.1515159303688018 0.1315345350268802 -0.158747073427279 0.1778875635400823 -0.1525675968322907 0.1260523357640969 -0.153290015733024 0.06131921585516988 -0.1543071794056198 0.05609458393834748 -0.1543071794056198 0.05581428219527929 -0.1402771142970946 0.06984006788783122 -0.1385460905556236 0.1121891678766802 -0.1438038879459108 0.1130397017916851 -0.1457138447657161 0.06882317167877419 -0.1483609309785034 0.1161519070227731 -0.1502385247154052 0.06577248305159679 -0.1515159303688523 0.120748534652663 -0.04206879824579556 0.04206879824579556 -0.07097411310783004 -6.315935428978669e-015 -0.1402771142971115 0.04206879824579346 -0.1144572583166674 -4.210623619319111e-015 -0.1402664157572804 8.421247238638224e-015 -0.1514790204064748 0.001025254443290022 -0.1457138447656992 0.04291050586544787 -0.1502385247153378 0.04599623221050959 -0.1532900157330746 0.0505546125605768 -0.1618325323088188 0.004101017773134825 -0.1682414925827726 0.1727612913236511 -0.1713269514642788 0.009227289989572302 -0.176876818991399 0.165584510220642 -0.1799622778729389 0.01640407109258982 -0.1817853090568085 0.09197534675730298 -0.1840568765222222 0.156953128898547 -0.1867309765480227 0.09958254349009023 -0.1891854890442556 0.1474630560248645 -0.1903430710518747 0.1078198842177661 -0.1922626565574487 0.1371142915995586 -0.1925520520593535 0.1166178284315467 -0.1932883790618521 0.1259068356226631 -0.1871423354037789 0.02501793355573951 -0.1876422246765051 0.08419429875258991 -0.1922709479258292 0.03445544985261979 -0.1923062531071554 0.07543112479320539 -0.1953481154390391 0.044716619983197 -0.1953569417342906 0.06589658611340012 -0.1963738379434087 0.05580144394751953 -0.1822688830562832 0.0218722659667576 2.105311809659557e-015 0.02187226596674918 -0.1822688830562895 -8.421247238638218e-015 0.002349693883861801 -8.481955791223932e-015 -0.01939368553101456 0.02187226596676175 -0.01939368553104825 -1.269257941054304e-014 0.002349693883811196 0.02187226596675754 -0.02174157260437655 0.0218722659667619 -0.06957260439259226 -4.129804454041993e-015 -0.02174157260441023 -1.255105169268021e-014 -0.06957260439259226 0.0218722659667619 -0.1117933219036584 8.081916527712584e-017 -0.1117933219036752 0.02187226596675347 -0.1371809568757911 4.291442784596241e-015 -0.1371809568757406 0.02187226596675347 -0.1200395732992759 0.02187226596675341 -0.1312989538192072 8.442858333000443e-015 -0.1200395732993252 4.232234713681333e-015 -0.1312989538192068 0.0218722659667492 -0.0907156412129087 8.446301647940487e-015 -0.1015163601136389 0.02187226596676184 -0.1015163601136712 -8.396192829335961e-015 -0.09071564121290748 0.02187226596674921 -0.05517283196087057 0.02187226596676207 -0.06596276532200855 4.471028554800106e-015 -0.05517283196090021 -8.160842303157233e-015 -0.06596276532200654 0.02187226596676628 -0.0189654672364282 4.145795044690137e-015 -0.03019378185547725 0.02187226596674491 -0.03019378185546296 -4.275452193948083e-015 -0.0189654672364255 0.02187226596676596 0.00295557422603797 6.975944136926736e-017 0.01418295012929618 0.02187226596674504 0.002955574226031506 0.02187226596674925 0.01418295012930858 -4.140864177949844e-015 0.03978559968655255 -4.083931413522814e-015 0.05057282127270731 0.02187226596674931 0.0397855996865519 0.02187226596676194 0.05057282127271472 1.266922057962875e-016 0.08742639043593824 -4.166044094912695e-015 0.07662982222959329 0.02187226596674923 0.07662982222957158 -1.679791495287003e-014 0.08742639043592969 0.02187226596676186 0.1190207069029266 -1.681549869098025e-014 0.1077664110062469 0.021872265966745 0.1077664110062438 -8.394251452342026e-015 0.1190207069029422 0.02187226596674921 0.1407869173951626 -8.222062538325952e-015 0.1314687720833929 0.02187226596675359 0.1314687720833948 8.620431938950507e-015 0.1407869173951599 0.02187226596674517 0.1509265138033551 8.503924317037601e-015 0.1599975346654198 0.02187226596675347 0.1509265138033429 0.02187226596674926 0.15999753466543 8.503924317037577e-015 0.1751833333203526 8.446801163441289e-015 0.1661888345033919 0.02187226596674079 0.1661888345033764 -8.395693313835174e-015 0.1751833333203352 0.02187226596674921 0.1852699081980365 -8.421247238638224e-015 0.1761963714529103 0.0218722659667576 0.1761963714529199 4.210623619319112e-015 0.1852699081980566 0.02187226596674076 -0.04557805573998554 -4.328177881377647e-015 -0.03583905329474232 0.02187226596675749 -0.04557805573997201 0.02187226596675327 -0.035839053294771 4.093069357260593e-015 -0.02376392732435784 2.201632773969502e-016 -0.01383687443618831 0.02187226596675361 -0.02376392732437876 0.02187226596675361 -0.01383687443619669 -3.990460341922106e-015 0.01323928078542514 -1.230231184145575e-016 0.003228580063861825 0.02187226596676169 0.003228580063875451 -4.333646737733642e-015 0.01323928078540597 0.02187226596675327 0.03583909648665352 -1.264209727404243e-014 0.04598532599566536 0.0218722659667618 0.03583909648663589 0.02187226596674917 0.04598532599566124 -4.220850035404204e-015 0.07365801276044293 -1.237987626656958e-014 0.06252583287616406 0.02187226596674943 0.06252583287616197 -1.237987626656953e-014 0.073658012760435 0.02187226596674943 0.08823254501937942 -8.435154564966872e-015 0.09894518112600825 0.02187226596674917 0.08823254501937621 0.02187226596675759 0.09894518112600623 -1.264577818428598e-014 0.1220794488434676 -8.514529250072553e-015 0.1113384349129797 0.02187226596673646 0.1113384349129668 -4.303905630753425e-015 0.1220794488434682 0.02187226596675751 0.1390410041869225 -4.293485503102466e-015 0.127827090834286 0.02187226596675752 0.1278270908342952 -1.271473274174068e-014 0.1390410041869338 0.02187226596673647 0.1488880116762988 0.02187226596675756 0.1376596970572443 -4.252049115223874e-015 0.1488880116763104 -1.26732963538621e-014 0.1376596970572756 0.02187226596674914 0.1551401138560413 0.02187226596674923 0.144350180494926 4.570405160796233e-017 0.1551401138560077 -4.164919567711161e-015 0.1443501804949518 0.02187226596674923 0.1562996708865593 -4.89574857716192e-018 0.1454989519858476 0.02187226596674497 0.145498951985801 -1.26367666065345e-014 0.156299670886582 0.02187226596674918 0.1509430747216103 0.02187226596674496 0.1396836942016295 -4.222022293704375e-015 0.1509430747215605 -1.264326953234261e-014 0.1396836942016468 0.02187226596675759 0.1402664157572973 0.0218722659667576 0.1144572583166674 -4.210623619319114e-015 0.1402664157572804 -4.210623619319108e-015 0.1144572583166505 0.0218722659667576 0.07097411310783004 4.210623619319109e-015 0.07097411310781319 0.02187226596675339 0.02216202521897988 0.02187226596675339 0.02216202521904725 9.35153366156525e-031 3.36849889545529e-014 0.02187226596674918 0.1402771142971283 0.06984006788784174 0.04206879824576188 0.1121891678766739 0.0417884965027379 0.06984006788784385 0.1385460905556404 0.1121891678766844 0.1438038879459277 0.1130397017916872 0.1457138447657666 0.06882317167877629 0.1483609309784529 0.1161519070227625 0.1502385247153884 0.06577248305159257 0.1515159303688691 0.1207485346526672 0.1532900157330409 0.06131921585515514 0.1525675968322907 0.1260523357641095 0.1871423354037789 0.02501793355575424 0.1817853090567749 0.09197534675731352 0.179962277872922 0.01640407109259193 0.1876422246764714 0.08419429875258148 0.192270947925846 0.03445544985261137 0.1923062531071722 0.07543112479319065 0.1953481154390391 0.0447166199831991 0.1953569417343749 0.06589658611341275 0.1963738379434593 0.0558014439475069 0.02216202521897989 2.104947563260401e-014 0.0420687982458124 0.04206879824579556 0.07097411310781319 -3.642463991552189e-018 0.1402771142971115 0.04206879824578504 0.1144572583166505 6.312292964987115e-015 0.1402664157572973 1.473354020362534e-014 0.1514790204065253 0.001025254443283703 0.1457138447656824 0.04291050586543945 0.1502385247153715 0.04599623221050327 0.1532900157330746 0.05055461256058522 0.1618325323088357 0.00410101777315798 0.154307179405603 0.05581428219529403 0.154307179405603 0.05609458393834748 0.1587470734272453 0.1778875635400823 0.1682414925827726 0.1727612913236553 0.1713269514643124 0.009227289989580721 0.1768768189914159 0.1655845102206399 0.1840568765222222 0.1569531288985386 0.1867309765480564 0.09958254349009234 0.189185489044222 0.1474630560248455 0.1903430710518411 0.1078198842177619 0.1922626565574151 0.1371142915995712 0.192552052059303 0.1166178284315488 0.1932883790618184 0.1259068356226631 3.368744625616304e-014 0.1822688830562832 3.368744625616304e-014 -2.108954273651108e-015 0.02174157260437655 0.181988581313234 0.04206879824577872 0.1402000848104876 0.06957260439259226 0.1819885813132276 0.1385460905556404 0.1402000848104876 0.1117933219036752 0.1819885813132381 0.1371809568757406 0.1819885813132255 0.148393561524935 0.180963326869946 0.1438038879459108 0.1391743623060843 0.1483609309784529 0.1360971947928849 0.1515159303688186 0.1315345350268718</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"232\" source=\"#ID9444\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9440\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9438\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9439\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"182\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9440\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9441\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 3 3 4 4 6 6 6 6 4 4 7 7 4 4 5 5 8 8 8 8 5 5 9 9 8 8 9 9 10 10 8 8 10 10 11 11 8 8 11 11 12 12 12 12 11 11 13 13 13 13 11 11 14 14 14 14 11 11 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 18 18 15 15 19 19 7 7 20 20 6 6 20 20 7 7 21 21 20 20 21 21 22 22 20 20 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 25 25 24 24 26 26 25 25 26 26 17 17 17 17 26 26 16 16 3 3 27 27 28 28 27 27 3 3 6 6 28 28 27 27 29 29 28 28 29 29 30 30 30 30 29 29 31 31 31 31 29 29 32 32 32 32 29 29 33 33 32 32 33 33 34 34 32 32 34 34 35 35 32 32 35 35 36 36 36 36 35 35 19 19 36 36 19 19 15 15 36 36 15 15 37 37 36 36 37 37 38 38 38 38 37 37 39 39 38 38 39 39 40 40 40 40 39 39 41 41 41 41 39 39 42 42 41 41 42 42 43 43 43 43 42 42 44 44 43 43 44 44 45 45 45 45 44 44 46 46 45 45 46 46 47 47 47 47 46 46 48 48 41 41 49 49 40 40 49 49 41 41 50 50 49 49 50 50 51 51 51 51 50 50 52 52 51 51 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 112 56 113 1 114 57 113 1 112 56 115 58 120 59 121 60 122 61 121 60 120 59 123 62 121 63 128 64 122 65 128 64 121 63 129 66 129 66 132 67 128 64 132 67 129 66 133 68 133 68 136 69 132 67 136 69 133 68 137 70 137 71 140 72 136 73 140 72 137 71 141 74 140 75 144 76 145 77 144 76 140 75 141 78 144 79 148 80 145 81 148 80 144 79 149 82 148 83 152 84 153 85 152 84 148 83 149 86 156 87 152 88 157 89 152 88 156 87 153 90 160 91 157 92 161 93 157 92 160 91 156 94 160 95 164 96 165 97 164 96 160 95 161 98 165 99 168 100 169 101 168 100 165 99 164 102 169 103 172 104 173 105 172 104 169 103 168 106 176 107 172 108 177 109 172 108 176 107 173 110 176 111 180 112 181 113 180 112 176 111 177 114 181 115 184 116 185 117 184 116 181 115 180 118 188 119 189 120 190 121 189 120 188 119 191 122 196 123 190 124 197 125 190 124 196 123 188 126 196 127 200 128 201 129 200 128 196 127 197 130 204 131 200 132 205 133 200 132 204 131 201 134 204 135 208 136 209 137 208 136 204 135 205 138 212 139 208 140 213 141 208 140 212 139 209 142 212 143 216 144 217 145 216 144 212 143 213 146 217 147 220 148 221 149 220 148 217 147 216 150 220 151 224 152 221 153 224 152 220 151 225 154 225 155 228 156 224 157 228 156 225 155 229 158 228 159 232 160 233 161 232 160 228 159 229 162 232 163 236 164 233 165 236 164 232 163 237 166 237 167 240 168 236 169 240 168 237 167 241 170 241 170 244 171 240 168 244 171 241 170 245 172 244 171 248 173 249 174 248 173 244 171 245 172 248 173 252 1 249 174 252 1 248 173 253 175 256 176 257 177 258 178 257 177 256 176 259 179 259 179 256 176 260 180 260 180 256 176 261 181 260 180 261 181 262 182 262 182 261 181 263 183 262 182 263 183 264 184 264 184 263 183 265 185 264 184 265 185 266 186 267 187 268 188 269 189 268 188 267 187 270 190 270 190 267 187 271 191 270 190 271 191 272 192 272 192 271 191 273 193 272 192 273 193 274 194 274 194 273 193 275 195 276 196 277 197 258 178 277 197 276 196 278 198 277 197 278 198 279 199 279 199 278 198 280 200 279 199 280 200 281 201 279 199 281 201 282 202 279 199 282 202 283 203 283 203 282 202 284 204 284 204 282 202 285 205 285 205 282 202 286 206 285 205 286 206 287 207 287 207 286 206 288 208 288 208 286 206 289 209 289 209 286 206 290 210 290 210 286 206 291 211 290 210 291 211 292 212 292 212 291 211 269 189 292 212 269 189 268 188 292 212 268 188 293 213 293 213 268 188 294 214 293 213 294 214 295 215 295 215 294 214 296 216 295 215 296 216 297 217 297 217 296 216 298 218 297 217 298 218 299 219 276 196 300 220 301 221 300 220 276 196 302 222 302 222 276 196 303 223 302 222 303 223 304 224 303 223 276 196 258 178 303 223 258 178 257 177 304 224 303 223 305 225 304 224 305 225 306 226 306 226 305 225 307 227 307 227 305 225 308 228 308 228 305 225 309 229 308 228 309 229 310 230 308 228 310 230 311 231 308 228 311 231 289 209 289 209 311 231 266 186 289 209 266 186 265 185 289 209 265 185 288 208</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"182\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9440\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9441\" />\r\n\t\t\t\t\t<p>56 55 57 54 58 53 57 54 59 52 58 53 58 53 59 52 60 51 59 52 61 50 60 51 60 51 61 50 62 49 61 50 63 41 62 49 64 40 62 49 63 41 65 48 66 46 67 47 67 47 66 46 68 45 66 46 69 44 68 45 68 45 69 44 70 43 69 44 71 42 70 43 70 43 71 42 63 41 71 42 72 39 63 41 63 41 72 39 64 40 64 40 72 39 73 38 72 39 74 37 73 38 73 38 74 37 75 36 74 37 76 15 75 36 76 15 77 19 75 36 77 19 78 35 75 36 75 36 78 35 79 32 78 35 80 34 79 32 80 34 81 33 79 32 81 33 82 29 79 32 79 32 82 29 83 31 83 31 82 29 84 30 84 30 82 29 85 28 82 29 86 27 85 28 87 6 88 3 86 27 85 28 86 27 88 3 89 16 90 26 91 17 91 17 90 26 92 25 90 26 93 24 92 25 92 25 93 24 94 23 93 24 95 22 94 23 94 23 95 22 96 20 95 22 97 21 96 20 97 21 98 7 96 20 87 6 96 20 98 7 77 19 76 15 99 18 99 18 76 15 91 17 91 17 76 15 89 16 89 16 76 15 100 14 76 15 101 11 100 14 100 14 101 11 102 13 102 13 101 11 103 12 103 12 101 11 104 8 101 11 105 10 104 8 105 10 106 9 104 8 106 9 107 5 104 8 104 8 107 5 108 4 98 7 108 4 87 6 87 6 108 4 88 3 107 5 109 0 108 4 108 4 109 0 88 3 88 3 109 0 110 1 111 2 110 1 109 0 116 58 117 56 118 1 119 57 118 1 117 56 124 62 125 59 126 60 127 61 126 60 125 59 130 66 126 63 131 64 127 65 131 64 126 63 134 68 130 66 135 67 131 64 135 67 130 66 138 70 134 68 139 69 135 67 139 69 134 68 142 74 138 71 143 72 139 73 143 72 138 71 142 78 143 75 146 76 147 77 146 76 143 75 150 82 146 79 151 80 147 81 151 80 146 79 150 86 151 83 154 84 155 85 154 84 151 83 155 90 158 87 154 88 159 89 154 88 158 87 158 94 162 91 159 92 163 93 159 92 162 91 163 98 162 95 166 96 167 97 166 96 162 95 166 102 167 99 170 100 171 101 170 100 167 99 170 106 171 103 174 104 175 105 174 104 171 103 175 110 178 107 174 108 179 109 174 108 178 107 179 114 178 111 182 112 183 113 182 112 178 111 182 118 183 115 186 116 187 117 186 116 183 115 192 122 193 119 194 120 195 121 194 120 193 119 193 126 198 123 195 124 199 125 195 124 198 123 199 130 198 127 202 128 203 129 202 128 198 127 203 134 206 131 202 132 207 133 202 132 206 131 207 138 206 135 210 136 211 137 210 136 206 135 211 142 214 139 210 140 215 141 210 140 214 139 215 146 214 143 218 144 219 145 218 144 214 143 218 150 219 147 222 148 223 149 222 148 219 147 226 154 222 151 227 152 223 153 227 152 222 151 230 158 226 155 231 156 227 157 231 156 226 155 230 162 231 159 234 160 235 161 234 160 231 159 238 166 234 163 239 164 235 165 239 164 234 163 242 170 238 167 243 168 239 169 243 168 238 167 246 172 242 170 247 171 243 168 247 171 242 170 246 172 247 171 250 173 251 174 250 173 247 171 254 175 250 173 255 1 251 174 255 1 250 173 312 208 313 185 314 209 313 185 315 186 314 209 315 186 316 231 314 209 314 209 316 231 317 228 316 231 318 230 317 228 318 230 319 229 317 228 319 229 320 225 317 228 317 228 320 225 321 227 321 227 320 225 322 226 322 226 320 225 323 224 320 225 324 223 323 224 325 177 326 178 324 223 326 178 327 196 324 223 323 224 324 223 328 222 324 223 327 196 328 222 328 222 327 196 329 220 330 221 329 220 327 196 331 219 332 218 333 217 332 218 334 216 333 217 333 217 334 216 335 215 334 216 336 214 335 215 335 215 336 214 337 213 336 214 338 188 337 213 337 213 338 188 339 212 338 188 340 189 339 212 340 189 341 211 339 212 339 212 341 211 342 210 341 211 343 206 342 210 342 210 343 206 314 209 314 209 343 206 312 208 312 208 343 206 344 207 344 207 343 206 345 205 343 206 346 202 345 205 345 205 346 202 347 204 347 204 346 202 348 203 348 203 346 202 349 199 346 202 350 201 349 199 350 201 351 200 349 199 351 200 352 198 349 199 349 199 352 198 353 197 352 198 327 196 353 197 326 178 353 197 327 196 354 195 355 193 356 194 356 194 355 193 357 192 355 193 358 191 357 192 357 192 358 191 359 190 358 191 360 187 359 190 359 190 360 187 338 188 340 189 338 188 360 187 315 186 313 185 361 184 313 185 362 183 361 184 361 184 362 183 363 182 362 183 364 181 363 182 363 182 364 181 365 180 364 181 366 176 365 180 365 180 366 176 367 179 367 179 366 176 325 177 326 178 325 177 366 176</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9445\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9446\">\r\n\t\t\t\t\t<float_array count=\"1284\" id=\"ID9450\">23.84983113903945 3.039506513366518 2.273736754432321e-013 24.00783065199539 0.05536735069506449 0 23.45221455768569 0.22146940277878 -2.273736754432321e-013 23.90283705453749 2.76098714704483 -4.547473508864641e-013 24.06185480102158 2.527645574637973 -2.273736754432321e-013 24.60699247797675 3.410605131648481e-013 2.273736754432321e-013 24.28523068359209 2.358286619571345 4.547473508864641e-013 24.53131100735209 2.271715105272847 -2.273736754432321e-013 24.56915174266578 2.271715105273074 6.821210263296962e-013 24.60710802220638 2.271715105272847 -4.547473508864641e-013 29.90769957168959 1.13686837721616e-013 0 29.90758402746269 2.271715105272506 -6.821210263296962e-013 30.20105192853589 2.326598614504974 -4.547473508864641e-013 30.51301051715836 0.05536735069483711 -4.547473508864641e-013 30.44526910158584 2.491249142199422 -4.547473508864641e-013 30.60996295836958 2.7316100265773 -4.547473508864641e-013 31.07193767580975 0.2214694027788937 2.273736754432321e-013 30.6648609106287 3.013624605855739 4.547473508864641e-013 21.5781160337674 6.799200212083974 -9.094947017729282e-013 21.5781160337674 4.921490930979303 0 21.57811603376649 6.132856637895998 0 21.63396000440935 7.404406445593622 4.547473508864641e-013 21.5781160337674 3.61156599590629 2.273736754432321e-013 21.57811603376831 3.013393517396139 2.273736754432321e-013 21.63396000441117 2.414809412565205 -6.821210263296962e-013 21.80149191633882 7.963250556831099 -2.273736754432321e-013 21.80149191634155 1.860695393242281 -4.547473508864641e-013 22.08071176955582 8.475732545796404 0 22.08071176955764 1.351051459426003 -4.547473508864641e-013 22.47161956406217 8.94185241248897 -6.821210263296962e-013 22.47161956406035 0.8858776111150064 -2.273736754432321e-013 22.94014419504038 0.4983061562525109 2.273736754432321e-013 22.94014419503765 9.329423867352148 -2.273736754432321e-013 23.45221455768569 9.606260620825879 -4.547473508864641e-013 24.00783065199903 9.772362672909821 9.094947017729282e-013 23.84983113904218 6.788223510237117 -2.273736754432321e-013 23.97854741121591 7.149530317326821 2.273736754432321e-013 24.27387846299735 7.405460786691947 -4.547473508864641e-013 24.60699247797766 9.827730023604431 -2.273736754432321e-013 24.45557176461171 7.503326749469238 -4.547473508864641e-013 24.6071080222091 7.556014918331243 -9.094947017729282e-013 29.9076995716905 9.842866317729204 0 29.90758402745996 7.556014918331698 -2.273736754432321e-013 29.97581289525351 7.548446771269141 -6.821210263296962e-013 30.51301051716109 9.780876838354857 -4.547473508864641e-013 30.04392621881652 7.540878624206812 -2.273736754432321e-013 30.46797354277442 7.27593570490501 0 30.61563906866559 7.058279261715597 -6.821210263296962e-013 31.07193767581248 9.610044694356475 -2.273736754432321e-013 30.6648609106287 6.814105417749147 -2.273736754432321e-013 31.5844810476483 0.4983061562522835 0 31.58448104764921 9.330369885735422 0 32.05064063267218 0.8858776111150064 -2.273736754432321e-013 32.05064063267128 8.941852412489311 0 32.4382373628323 8.475732545795836 -6.821210263296962e-013 32.43823736283503 1.351051459425776 0 32.71509217009225 7.963250556831099 0 32.71509217009407 1.860695393242054 -2.273736754432321e-013 32.8812050544484 7.40440644559294 0 32.88120505445113 2.41480941256566 -9.094947017729282e-013 32.93657601590167 6.799200212083747 -4.547473508864641e-013 32.93657601589985 6.132856637896225 -6.821210263296962e-013 32.93657601589985 3.01339351739523 -2.273736754432321e-013 32.93657601590348 4.921490930979758 -1.13686837721616e-012 32.93657601590167 3.61156599590629 -9.094947017729282e-013 32.93657601590167 3.61156599590629 -9.094947017729282e-013 32.93657601590348 4.921490930979758 -1.13686837721616e-012 32.93657601589985 3.01339351739523 -2.273736754432321e-013 32.93657601589985 6.132856637896225 -6.821210263296962e-013 32.88120505445113 2.41480941256566 -9.094947017729282e-013 32.93657601590167 6.799200212083747 -4.547473508864641e-013 32.8812050544484 7.40440644559294 0 32.71509217009407 1.860695393242054 -2.273736754432321e-013 32.71509217009225 7.963250556831099 0 32.43823736283503 1.351051459425776 0 32.4382373628323 8.475732545795836 -6.821210263296962e-013 32.05064063267218 0.8858776111150064 -2.273736754432321e-013 32.05064063267128 8.941852412489311 0 31.58448104764921 9.330369885735422 0 31.5844810476483 0.4983061562522835 0 31.07193767581248 9.610044694356475 -2.273736754432321e-013 31.07193767580975 0.2214694027788937 2.273736754432321e-013 30.6648609106287 3.013624605855739 4.547473508864641e-013 30.6648609106287 6.814105417749147 -2.273736754432321e-013 30.61563906866559 7.058279261715597 -6.821210263296962e-013 30.51301051716109 9.780876838354857 -4.547473508864641e-013 30.46797354277442 7.27593570490501 0 30.04392621881652 7.540878624206812 -2.273736754432321e-013 29.97581289525351 7.548446771269141 -6.821210263296962e-013 29.9076995716905 9.842866317729204 0 29.90758402745996 7.556014918331698 -2.273736754432321e-013 24.6071080222091 7.556014918331243 -9.094947017729282e-013 24.60699247797766 9.827730023604431 -2.273736754432321e-013 24.45557176461171 7.503326749469238 -4.547473508864641e-013 24.27387846299735 7.405460786691947 -4.547473508864641e-013 24.00783065199903 9.772362672909821 9.094947017729282e-013 23.97854741121591 7.149530317326821 2.273736754432321e-013 23.84983113904218 6.788223510237117 -2.273736754432321e-013 23.84983113903945 3.039506513366518 2.273736754432321e-013 23.45221455768569 0.22146940277878 -2.273736754432321e-013 23.45221455768569 9.606260620825879 -4.547473508864641e-013 22.94014419504038 0.4983061562525109 2.273736754432321e-013 22.94014419503765 9.329423867352148 -2.273736754432321e-013 22.47161956406217 8.94185241248897 -6.821210263296962e-013 22.47161956406035 0.8858776111150064 -2.273736754432321e-013 22.08071176955764 1.351051459426003 -4.547473508864641e-013 22.08071176955582 8.475732545796404 0 21.80149191634155 1.860695393242281 -4.547473508864641e-013 21.80149191633882 7.963250556831099 -2.273736754432321e-013 21.63396000441117 2.414809412565205 -6.821210263296962e-013 21.63396000440935 7.404406445593622 4.547473508864641e-013 21.57811603376831 3.013393517396139 2.273736754432321e-013 21.5781160337674 3.61156599590629 2.273736754432321e-013 21.5781160337674 4.921490930979303 0 21.5781160337674 6.799200212083974 -9.094947017729282e-013 21.57811603376649 6.132856637895998 0 30.60996295836958 2.7316100265773 -4.547473508864641e-013 30.51301051715836 0.05536735069483711 -4.547473508864641e-013 30.44526910158584 2.491249142199422 -4.547473508864641e-013 30.20105192853589 2.326598614504974 -4.547473508864641e-013 29.90769957168959 1.13686837721616e-013 0 29.90758402746269 2.271715105272506 -6.821210263296962e-013 24.60710802220638 2.271715105272847 -4.547473508864641e-013 24.60699247797675 3.410605131648481e-013 2.273736754432321e-013 24.56915174266578 2.271715105273074 6.821210263296962e-013 24.53131100735209 2.271715105272847 -2.273736754432321e-013 24.28523068359209 2.358286619571345 4.547473508864641e-013 24.06185480102158 2.527645574637973 -2.273736754432321e-013 24.00783065199539 0.05536735069506449 0 23.90283705453749 2.76098714704483 -4.547473508864641e-013 24.60699247797675 3.410605131648481e-013 2.273736754432321e-013 24.00783065199994 0.05536735069438237 1.181102362205138 24.00783065199539 0.05536735069506449 0 24.60699247797675 -2.273736754432321e-013 1.181102362205138 24.60699247797675 -2.273736754432321e-013 1.181102362205138 24.60699247797675 3.410605131648481e-013 2.273736754432321e-013 24.00783065199994 0.05536735069438237 1.181102362205138 24.00783065199539 0.05536735069506449 0 23.4522145576866 0.221469402778439 1.181102362205138 23.45221455768569 0.22146940277878 -2.273736754432321e-013 23.4522145576866 0.221469402778439 1.181102362205138 23.45221455768569 0.22146940277878 -2.273736754432321e-013 22.94014419504038 0.4983061562525109 2.273736754432321e-013 22.94014419504219 0.4983061562520561 1.181102362204229 22.94014419504219 0.4983061562520561 1.181102362204229 22.94014419504038 0.4983061562525109 2.273736754432321e-013 22.47161956406126 0.8858776111150064 1.181102362204683 22.47161956406035 0.8858776111150064 -2.273736754432321e-013 22.47161956406126 0.8858776111150064 1.181102362204683 22.47161956406035 0.8858776111150064 -2.273736754432321e-013 22.08071176955673 1.351051459425321 1.181102362204001 22.08071176955764 1.351051459426003 -4.547473508864641e-013 22.08071176955764 1.351051459426003 -4.547473508864641e-013 22.08071176955673 1.351051459425321 1.181102362204001 21.80149191633973 1.860695393242168 1.181102362204911 21.80149191634155 1.860695393242281 -4.547473508864641e-013 21.80149191634155 1.860695393242281 -4.547473508864641e-013 21.80149191633973 1.860695393242168 1.181102362204911 21.63396000441207 2.414809412565433 1.181102362204456 21.63396000441117 2.414809412565205 -6.821210263296962e-013 21.63396000441117 2.414809412565205 -6.821210263296962e-013 21.63396000441207 2.414809412565433 1.181102362204456 21.57811603376831 3.013393517396139 2.273736754432321e-013 21.5781160337674 3.013393517395684 1.181102362204683 21.5781160337674 3.013393517395684 1.181102362204683 21.57811603376831 3.013393517396139 2.273736754432321e-013 21.57811603376558 3.611565995906631 1.181102362204456 21.5781160337674 3.61156599590629 2.273736754432321e-013 21.5781160337674 3.61156599590629 2.273736754432321e-013 21.57811603376558 3.611565995906631 1.181102362204456 21.5781160337674 4.921490930979303 0 21.57811603376649 4.921490930979076 1.181102362204456 21.57811603376649 4.921490930979076 1.181102362204456 21.5781160337674 4.921490930979303 0 21.57811603377013 6.132856637896452 1.181102362204911 21.57811603376649 6.132856637895998 0 21.57811603376649 6.132856637895998 0 21.57811603377013 6.132856637896452 1.181102362204911 21.5781160337674 6.799200212083974 -9.094947017729282e-013 21.57811603376649 6.799200212083633 1.181102362203774 21.57811603376649 6.799200212083633 1.181102362203774 21.5781160337674 6.799200212083974 -9.094947017729282e-013 21.63396000441207 7.404406445593736 1.181102362204456 21.63396000440935 7.404406445593622 4.547473508864641e-013 21.63396000440935 7.404406445593622 4.547473508864641e-013 21.63396000441207 7.404406445593736 1.181102362204456 21.80149191633882 7.963250556831099 -2.273736754432321e-013 21.80149191633973 7.963250556830644 1.181102362204911 21.80149191633973 7.963250556830644 1.181102362204911 21.80149191633882 7.963250556831099 -2.273736754432321e-013 22.08071176955582 8.475732545796404 1.181102362203774 22.08071176955582 8.475732545796404 0 22.08071176955582 8.475732545796404 0 22.08071176955582 8.475732545796404 1.181102362203774 22.47161956406217 8.941852412489538 1.181102362204911 22.47161956406217 8.94185241248897 -6.821210263296962e-013 22.47161956406217 8.94185241248897 -6.821210263296962e-013 22.47161956406217 8.941852412489538 1.181102362204911 22.94014419503765 9.329423867352148 -2.273736754432321e-013 22.94014419504038 9.32942386735283 1.181102362204911 22.94014419504038 9.32942386735283 1.181102362204911 22.94014419503765 9.329423867352148 -2.273736754432321e-013 23.45221455768569 9.60626062082531 1.181102362205138 23.45221455768569 9.606260620825879 -4.547473508864641e-013 23.45221455768569 9.60626062082531 1.181102362205138 23.45221455768569 9.606260620825879 -4.547473508864641e-013 24.00783065199903 9.772362672909821 9.094947017729282e-013 24.00783065199994 9.772362672909253 1.181102362204456 24.00783065199994 9.772362672909253 1.181102362204456 24.00783065199903 9.772362672909821 9.094947017729282e-013 24.60699247797857 9.827730023603976 1.181102362204001 24.60699247797766 9.827730023604431 -2.273736754432321e-013 24.60699247797857 9.827730023603976 1.181102362204001 24.60699247797766 9.827730023604431 -2.273736754432321e-013 29.9076995716905 9.842866317729204 0 29.9076995716905 9.842866317729545 1.181102362205138 29.9076995716905 9.842866317729545 1.181102362205138 29.9076995716905 9.842866317729204 0 30.51301051715836 9.780876838355084 1.181102362204229 30.51301051716109 9.780876838354857 -4.547473508864641e-013 30.51301051715836 9.780876838355084 1.181102362204229 30.51301051716109 9.780876838354857 -4.547473508864641e-013 31.07193767581248 9.610044694356475 -2.273736754432321e-013 31.07193767581066 9.610044694356816 1.181102362204456 31.07193767581066 9.610044694356816 1.181102362204456 31.07193767581248 9.610044694356475 -2.273736754432321e-013 31.58448104764921 9.330369885735422 0 31.5844810476483 9.330369885735081 1.181102362204456 31.5844810476483 9.330369885735081 1.181102362204456 31.58448104764921 9.330369885735422 0 32.05064063267128 8.941852412489311 0 32.05064063267309 8.941852412489538 1.181102362204683 32.05064063267309 8.941852412489538 1.181102362204683 32.05064063267128 8.941852412489311 0 32.43823736283321 8.475732545796404 1.181102362203546 32.4382373628323 8.475732545795836 -6.821210263296962e-013 32.43823736283321 8.475732545796404 1.181102362203546 32.4382373628323 8.475732545795836 -6.821210263296962e-013 32.71509217009498 7.963250556831213 1.181102362204229 32.71509217009225 7.963250556831099 0 32.71509217009498 7.963250556831213 1.181102362204229 32.71509217009225 7.963250556831099 0 32.88120505445204 7.404406445593054 1.181102362204911 32.8812050544484 7.40440644559294 0 32.88120505445204 7.404406445593054 1.181102362204911 32.8812050544484 7.40440644559294 0 32.93657601590167 6.799200212083747 -4.547473508864641e-013 32.93657601589985 6.799200212083065 1.181102362204683 32.93657601590167 6.799200212083747 -4.547473508864641e-013 32.93657601589985 6.799200212083065 1.181102362204683 32.93657601589985 6.132856637896225 -6.821210263296962e-013 32.93657601590076 6.132856637895998 1.181102362204911 32.93657601589985 6.132856637896225 -6.821210263296962e-013 32.93657601590076 6.132856637895998 1.181102362204911 32.93657601590076 4.921490930980326 1.181102362205138 32.93657601590348 4.921490930979758 -1.13686837721616e-012 32.93657601590076 4.921490930980326 1.181102362205138 32.93657601590348 4.921490930979758 -1.13686837721616e-012 32.93657601590167 3.61156599590629 -9.094947017729282e-013 32.93657601590076 3.611565995906176 1.181102362204683 32.93657601590167 3.61156599590629 -9.094947017729282e-013 32.93657601590076 3.611565995906176 1.181102362204683 32.93657601589894 3.013393517395457 1.181102362204911 32.93657601589985 3.01339351739523 -2.273736754432321e-013 32.93657601589894 3.013393517395457 1.181102362204911 32.93657601589985 3.01339351739523 -2.273736754432321e-013 32.88120505444749 2.41480941256566 1.181102362204683 32.88120505445113 2.41480941256566 -9.094947017729282e-013 32.88120505444749 2.41480941256566 1.181102362204683 32.88120505445113 2.41480941256566 -9.094947017729282e-013 32.71509217009316 1.86069539324285 1.181102362205138 32.71509217009407 1.860695393242054 -2.273736754432321e-013 32.71509217009316 1.86069539324285 1.181102362205138 32.71509217009407 1.860695393242054 -2.273736754432321e-013 32.43823736283503 1.351051459425776 0 32.43823736283594 1.351051459425094 1.181102362204001 32.43823736283503 1.351051459425776 0 32.43823736283594 1.351051459425094 1.181102362204001 32.05064063267218 0.8858776111150064 1.181102362204683 32.05064063267218 0.8858776111150064 -2.273736754432321e-013 32.05064063267218 0.8858776111150064 1.181102362204683 32.05064063267218 0.8858776111150064 -2.273736754432321e-013 31.5844810476483 0.4983061562522835 0 31.58448104764921 0.4983061562520561 1.181102362204683 31.58448104764921 0.4983061562520561 1.181102362204683 31.5844810476483 0.4983061562522835 0 31.07193767580975 0.2214694027788937 2.273736754432321e-013 31.07193767581066 0.2214694027786663 1.181102362204456 31.07193767581066 0.2214694027786663 1.181102362204456 31.07193767580975 0.2214694027788937 2.273736754432321e-013 30.51301051716109 0.05536735069460974 1.181102362204683 30.51301051715836 0.05536735069483711 -4.547473508864641e-013 30.51301051716109 0.05536735069460974 1.181102362204683 30.51301051715836 0.05536735069483711 -4.547473508864641e-013 29.90769957168959 1.13686837721616e-013 0 29.90769957168777 1.13686837721616e-013 1.181102362205138 29.90769957168777 1.13686837721616e-013 1.181102362205138 29.90769957168959 1.13686837721616e-013 0 21.5781160337674 3.013393517395684 1.181102362204683 21.57811603376649 4.921490930979076 1.181102362204456 21.57811603376558 3.611565995906631 1.181102362204456 21.57811603377013 6.132856637896452 1.181102362204911 21.63396000441207 2.414809412565433 1.181102362204456 24.00783065199994 0.05536735069438237 1.181102362205138 23.84983113903763 3.039506513367201 1.181102362204911 23.4522145576866 0.221469402778439 1.181102362205138 23.90283705453658 2.760987147045285 1.181102362204911 24.06185480101976 2.527645574637063 1.181102362204683 24.60699247797675 -2.273736754432321e-013 1.181102362205138 24.28523068359391 2.35828661957089 1.181102362204001 24.53131100735391 2.271715105272165 1.181102362205365 24.56915174266487 2.271715105273188 1.181102362204456 24.60710802220729 2.271715105273529 1.181102362204456 29.90769957168777 1.13686837721616e-013 1.181102362205138 29.90758402746087 2.271715105273074 1.181102362204229 30.20105192853498 2.326598614504746 1.181102362204229 30.51301051716109 0.05536735069460974 1.181102362204683 30.44526910158584 2.491249142200331 1.181102362204001 30.60996295836867 2.731610026577187 1.181102362204456 31.07193767581066 0.2214694027786663 1.181102362204456 30.66486091062961 3.013624605855512 1.181102362204001 30.66486091062961 6.814105417748806 1.181102362205138 21.63396000441207 7.404406445593736 1.181102362204456 21.57811603376649 6.799200212083633 1.181102362203774 21.80149191633973 1.860695393242168 1.181102362204911 21.80149191633973 7.963250556830644 1.181102362204911 22.08071176955673 1.351051459425321 1.181102362204001 22.08071176955582 8.475732545796404 1.181102362203774 22.47161956406217 8.941852412489538 1.181102362204911 22.47161956406126 0.8858776111150064 1.181102362204683 22.94014419504219 0.4983061562520561 1.181102362204229 22.94014419504038 9.32942386735283 1.181102362204911 23.45221455768569 9.60626062082531 1.181102362205138 24.00783065199994 9.772362672909253 1.181102362204456 23.84983113904218 6.788223510237458 1.181102362204683 23.9785474112141 7.149530317327276 1.181102362204683 24.27387846300007 7.405460786692402 1.181102362204229 24.60699247797857 9.827730023603976 1.181102362204001 24.45557176461443 7.503326749469238 1.181102362204683 24.6071080222091 7.556014918331925 1.181102362204456 29.9076995716905 9.842866317729545 1.181102362205138 29.90758402746178 7.556014918331925 1.181102362204683 29.9758128952526 7.548446771269596 1.181102362204911 30.51301051715836 9.780876838355084 1.181102362204229 30.04392621881561 7.540878624207039 1.181102362204683 30.46797354277533 7.27593570490501 1.181102362204229 30.61563906866377 7.058279261715256 1.181102362204683 31.07193767581066 9.610044694356816 1.181102362204456 31.58448104764921 0.4983061562520561 1.181102362204683 31.5844810476483 9.330369885735081 1.181102362204456 32.05064063267309 8.941852412489538 1.181102362204683 32.05064063267218 0.8858776111150064 1.181102362204683 32.43823736283594 1.351051459425094 1.181102362204001 32.43823736283321 8.475732545796404 1.181102362203546 32.71509217009498 7.963250556831213 1.181102362204229 32.71509217009316 1.86069539324285 1.181102362205138 32.88120505444749 2.41480941256566 1.181102362204683 32.88120505445204 7.404406445593054 1.181102362204911 32.93657601589894 3.013393517395457 1.181102362204911 32.93657601589985 6.799200212083065 1.181102362204683 32.93657601590076 3.611565995906176 1.181102362204683 32.93657601590076 6.132856637895998 1.181102362204911 32.93657601590076 4.921490930980326 1.181102362205138 32.93657601590076 4.921490930980326 1.181102362205138 32.93657601590076 3.611565995906176 1.181102362204683 32.93657601590076 6.132856637895998 1.181102362204911 32.93657601589985 6.799200212083065 1.181102362204683 32.93657601589894 3.013393517395457 1.181102362204911 32.88120505445204 7.404406445593054 1.181102362204911 32.88120505444749 2.41480941256566 1.181102362204683 32.71509217009498 7.963250556831213 1.181102362204229 32.71509217009316 1.86069539324285 1.181102362205138 32.43823736283594 1.351051459425094 1.181102362204001 32.43823736283321 8.475732545796404 1.181102362203546 32.05064063267309 8.941852412489538 1.181102362204683 32.05064063267218 0.8858776111150064 1.181102362204683 31.58448104764921 0.4983061562520561 1.181102362204683 31.5844810476483 9.330369885735081 1.181102362204456 31.07193767581066 9.610044694356816 1.181102362204456 31.07193767581066 0.2214694027786663 1.181102362204456 30.66486091062961 6.814105417748806 1.181102362205138 30.61563906866377 7.058279261715256 1.181102362204683 30.51301051715836 9.780876838355084 1.181102362204229 30.46797354277533 7.27593570490501 1.181102362204229 30.04392621881561 7.540878624207039 1.181102362204683 29.9758128952526 7.548446771269596 1.181102362204911 29.9076995716905 9.842866317729545 1.181102362205138 29.90758402746178 7.556014918331925 1.181102362204683 24.6071080222091 7.556014918331925 1.181102362204456 24.60699247797857 9.827730023603976 1.181102362204001 24.45557176461443 7.503326749469238 1.181102362204683 24.27387846300007 7.405460786692402 1.181102362204229 24.00783065199994 9.772362672909253 1.181102362204456 23.9785474112141 7.149530317327276 1.181102362204683 23.84983113904218 6.788223510237458 1.181102362204683 23.84983113903763 3.039506513367201 1.181102362204911 23.4522145576866 0.221469402778439 1.181102362205138 23.45221455768569 9.60626062082531 1.181102362205138 22.94014419504219 0.4983061562520561 1.181102362204229 22.94014419504038 9.32942386735283 1.181102362204911 22.47161956406217 8.941852412489538 1.181102362204911 22.47161956406126 0.8858776111150064 1.181102362204683 22.08071176955673 1.351051459425321 1.181102362204001 22.08071176955582 8.475732545796404 1.181102362203774 21.80149191633973 7.963250556830644 1.181102362204911 21.80149191633973 1.860695393242168 1.181102362204911 21.63396000441207 7.404406445593736 1.181102362204456 21.63396000441207 2.414809412565433 1.181102362204456 21.57811603377013 6.132856637896452 1.181102362204911 21.57811603376649 6.799200212083633 1.181102362203774 30.66486091062961 3.013624605855512 1.181102362204001 30.60996295836867 2.731610026577187 1.181102362204456 30.51301051716109 0.05536735069460974 1.181102362204683 30.44526910158584 2.491249142200331 1.181102362204001 30.20105192853498 2.326598614504746 1.181102362204229 29.90769957168777 1.13686837721616e-013 1.181102362205138 29.90758402746087 2.271715105273074 1.181102362204229 24.60710802220729 2.271715105273529 1.181102362204456 24.60699247797675 -2.273736754432321e-013 1.181102362205138 24.56915174266487 2.271715105273188 1.181102362204456 24.53131100735391 2.271715105272165 1.181102362205365 24.28523068359391 2.35828661957089 1.181102362204001 24.06185480101976 2.527645574637063 1.181102362204683 24.00783065199994 0.05536735069438237 1.181102362205138 23.90283705453658 2.760987147045285 1.181102362204911 21.5781160337674 3.013393517395684 1.181102362204683 21.57811603376649 4.921490930979076 1.181102362204456 21.57811603376558 3.611565995906631 1.181102362204456</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"428\" source=\"#ID9450\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9447\">\r\n\t\t\t\t\t<float_array count=\"1284\" id=\"ID9451\">1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -0.04605685949630511 -0.9989388197949549 5.573382751516839e-016 -0.1901552480652006 -0.9817540331637359 6.866657693429469e-016 -0.190155248065706 -0.981754033163638 6.866657693430192e-016 -0.04605685949629888 -0.9989388197949553 5.573382751516686e-016 0.04605685949629888 0.9989388197949553 -5.573382751516686e-016 0.04605685949630511 0.9989388197949549 -5.573382751516839e-016 0.1901552480652006 0.9817540331637359 -6.866657693429469e-016 0.190155248065706 0.981754033163638 -6.866657693430192e-016 -0.3830119234279567 -0.923743398629737 7.267124140517375e-016 -0.3830119234280912 -0.9237433986296812 7.267124140517743e-016 0.3830119234279567 0.923743398629737 -7.267124140517375e-016 0.3830119234280912 0.9237433986296812 -7.267124140517743e-016 -0.559155120441713 -0.8290630562772734 4.437803000760887e-016 -0.5591551204415391 -0.8290630562773905 4.437803000767485e-016 0.5591551204415391 0.8290630562773905 -4.437803000767485e-016 0.559155120441713 0.8290630562772734 -4.437803000760887e-016 -0.7043628531777858 -0.7098401024619903 -1.130569961526337e-016 -0.7043628531778612 -0.7098401024619157 -1.130569961529242e-016 0.7043628531777858 0.7098401024619903 1.130569961526337e-016 0.7043628531778612 0.7098401024619157 1.130569961529242e-016 -0.8253152997479547 -0.5646721668383733 4.948969903256587e-017 -0.8253152997479565 -0.5646721668383707 4.948969903257872e-017 0.8253152997479565 0.5646721668383707 -4.948969903257872e-017 0.8253152997479547 0.5646721668383733 -4.948969903256587e-017 -0.9220679939836696 -0.3870279246655616 6.9163016720968e-016 -0.9220679939836387 -0.3870279246656351 6.916301672095034e-016 0.9220679939836387 0.3870279246656351 -6.916301672095034e-016 0.9220679939836696 0.3870279246655616 -6.9163016720968e-016 -0.9813729497030399 -0.192112294221777 1.018665614736652e-015 -0.9813729497030346 -0.1921122942218045 1.018665614736625e-015 0.9813729497030346 0.1921122942218045 -1.018665614736625e-015 0.9813729497030399 0.192112294221777 -1.018665614736652e-015 -0.9989185077269231 -0.04649532149170572 3.943577409913058e-016 -0.9989185077269231 -0.04649532149170398 3.943577409912789e-016 0.9989185077269231 0.04649532149170398 -3.943577409912789e-016 0.9989185077269231 0.04649532149170572 -3.943577409913058e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -0.9989419087338337 0.04598981382007205 -4.158761787799535e-016 -0.9989419087338345 0.04598981382005745 -4.158761787799237e-016 0.9989419087338345 -0.04598981382005745 4.158761787799237e-016 0.9989419087338337 -0.04598981382007205 4.158761787799535e-016 -0.9816941673031878 0.1904640697950685 -1.354924537897705e-016 -0.9816941673032187 0.1904640697949091 -1.354924537903816e-016 0.9816941673032187 -0.1904640697949091 1.354924537903816e-016 0.9816941673031878 -0.1904640697950685 1.354924537897705e-016 -0.9229716790792463 0.3848678729351635 6.968052065980246e-016 -0.9229716790792739 0.3848678729350967 6.968052065977076e-016 0.9229716790792739 -0.3848678729350967 -6.968052065977076e-016 0.9229716790792463 -0.3848678729351635 -6.968052065980246e-016 -0.8262563137816912 0.5632943315318304 1.155105678812179e-015 -0.8262563137816766 0.5632943315318516 1.15510567881218e-015 0.8262563137816766 -0.5632943315318516 -1.15510567881218e-015 0.8262563137816912 -0.5632943315318304 -1.155105678812179e-015 -0.704717848473708 0.7094876701131515 1.726128644725735e-016 -0.7047178484737665 0.7094876701130933 1.726128644734653e-016 0.7047178484737665 -0.7094876701130933 -1.726128644734653e-016 0.704717848473708 -0.7094876701131515 -1.726128644725735e-016 -0.5591551204417613 0.8290630562772408 -7.194998399601899e-016 -0.5591551204415115 0.8290630562774093 -7.194998399599051e-016 0.5591551204415115 -0.8290630562774093 7.194998399599051e-016 0.5591551204417613 -0.8290630562772408 7.194998399601899e-016 -0.3830119234280865 0.9237433986296831 -1.967576590594497e-016 -0.3830119234280999 0.9237433986296775 -1.967576590595103e-016 0.3830119234280865 -0.9237433986296831 1.967576590594497e-016 0.3830119234280999 -0.9237433986296775 1.967576590595103e-016 -0.1901552480654959 0.9817540331636787 -2.195847222759135e-016 -0.1901552480654594 0.9817540331636857 -2.195847222760831e-016 0.1901552480654594 -0.9817540331636857 2.195847222760831e-016 0.1901552480654959 -0.9817540331636787 2.195847222759135e-016 -0.04748305487202458 0.9988720436071982 -3.90602860685384e-016 -0.04748305487203327 0.9988720436071976 -3.906028606854384e-016 0.04748305487202458 -0.9988720436071982 3.90602860685384e-016 0.04748305487203327 -0.9988720436071976 3.906028606854384e-016 0.04957867828274836 0.9987702211518601 -1.674318355637076e-016 0.04957867828271428 0.9987702211518619 -1.67431835563671e-016 -0.04957867828271428 -0.9987702211518619 1.67431835563671e-016 -0.04957867828274836 -0.9987702211518601 1.674318355637076e-016 0.1980220886884422 0.9801975578379425 -4.630971673811326e-016 0.1980220886887658 0.9801975578378772 -4.630971673819401e-016 -0.1980220886884422 -0.9801975578379425 4.630971673811326e-016 -0.1980220886887658 -0.9801975578378772 4.630971673819401e-016 0.3876359964847785 0.9218125266176702 -3.510217223840866e-016 0.3876359964846313 0.9218125266177321 -3.510217223846372e-016 -0.3876359964846313 -0.9218125266177321 3.510217223846372e-016 -0.3876359964847785 -0.9218125266176702 3.510217223840866e-016 0.5622915634017709 0.82693905321202 2.71106465600851e-016 0.5622915634017419 0.8269390532120398 2.711064656007539e-016 -0.5622915634017419 -0.8269390532120398 -2.711064656007539e-016 -0.5622915634017709 -0.82693905321202 -2.71106465600851e-016 0.7075043430321226 0.7067089956910725 -1.869460023782425e-017 0.7075043430321466 0.7067089956910485 -1.869460023803242e-017 -0.7075043430321466 -0.7067089956910485 1.869460023803242e-017 -0.7075043430321226 -0.7067089956910725 1.869460023782425e-017 0.8284329848266284 0.5600881981003021 -7.512225947571109e-016 0.8284329848266377 0.5600881981002882 -7.512225947571396e-016 -0.8284329848266284 -0.5600881981003021 7.512225947571109e-016 -0.8284329848266377 -0.5600881981002882 7.512225947571396e-016 0.9241024286718605 0.3821448695491917 -9.631769533139017e-016 0.9241024286717766 0.382144869549395 -9.631769533138169e-016 -0.9241024286718605 -0.3821448695491917 9.631769533139017e-016 -0.9241024286717766 -0.382144869549395 9.631769533138169e-016 0.9819888198866094 0.1889390314829219 -9.720468941716655e-016 0.9819888198865975 0.1889390314829836 -9.720468941716853e-016 -0.9819888198866094 -0.1889390314829219 9.720468941716655e-016 -0.9819888198865975 -0.1889390314829836 9.720468941716853e-016 0.9989596553336472 0.04560270842483719 -3.07758061134129e-016 0.9989596553336478 0.0456027084248241 -3.077580611339482e-016 -0.9989596553336472 -0.04560270842483719 3.07758061134129e-016 -0.9989596553336478 -0.0456027084248241 3.077580611339482e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 0.998936644513607 -0.0461040155289693 6.604785721963455e-016 0.9989366445136068 -0.04610401552897839 6.604785721964123e-016 -0.998936644513607 0.0461040155289693 -6.604785721963455e-016 -0.9989366445136068 0.04610401552897839 -6.604785721964123e-016 0.9816725484937011 -0.1905754641444747 3.208950231910965e-016 0.9816725484937181 -0.1905754641443877 3.208950231917018e-016 -0.9816725484937011 0.1905754641444747 -3.208950231910965e-016 -0.9816725484937181 0.1905754641443877 -3.208950231917018e-016 0.9232103774416037 -0.384294937494799 -1.805195184126972e-016 0.9232103774415924 -0.3842949374948266 -1.805195184126455e-016 -0.9232103774416037 0.384294937494799 1.805195184126972e-016 -0.9232103774415924 0.3842949374948266 1.805195184126455e-016 0.8275007646504213 -0.5614645888237014 4.346090580621531e-016 0.8275007646504324 -0.5614645888236849 4.346090580620651e-016 -0.8275007646504213 0.5614645888237014 -4.346090580621531e-016 -0.8275007646504324 0.5614645888236849 -4.346090580620651e-016 0.7067273522711678 -0.7074860066119929 7.051252332956397e-016 0.7067273522711909 -0.7074860066119698 7.051252332956983e-016 -0.7067273522711678 0.7074860066119929 -7.051252332956397e-016 -0.7067273522711909 0.7074860066119698 -7.051252332956983e-016 0.5600255262165333 -0.8284753526725434 4.590703815476346e-016 0.5600255262165789 -0.8284753526725126 4.590703815476802e-016 -0.5600255262165789 0.8284753526725126 -4.590703815476802e-016 -0.5600255262165333 0.8284753526725434 -4.590703815476346e-016 0.3820821498995592 -0.9241283626900166 4.800312185471405e-016 0.3820821498996603 -0.9241283626899747 4.800312185470308e-016 -0.3820821498996603 0.9241283626899747 -4.800312185470308e-016 -0.3820821498995592 0.9241283626900166 -4.800312185471405e-016 0.1888997520348473 -0.9819963766130572 6.841398364466883e-016 0.1888997520345941 -0.9819963766131058 6.841398364469499e-016 -0.1888997520348473 0.9819963766130572 -6.841398364466883e-016 -0.1888997520345941 0.9819963766131058 -6.841398364469499e-016 0.04559191406742016 -0.9989601480397847 6.131299544393928e-016 0.0455919140673086 -0.9989601480397898 6.131299544389804e-016 -0.0455919140673086 0.9989601480397898 -6.131299544389804e-016 -0.04559191406742016 0.9989601480397847 -6.131299544393928e-016 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"428\" source=\"#ID9451\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9449\">\r\n\t\t\t\t\t<float_array count=\"572\" id=\"ID9452\">-0.4416635396118417 0.05628715765493553 -0.4445894565184331 0.001025321309167861 -0.4343002695867721 0.004101285236644075 -0.4426451306395831 0.05112939161194129 -0.4455899037226219 0.04680825138218468 -0.4556850458884583 6.315935428978667e-015 -0.4497264941405942 0.04367197443650639 -0.4542835371731868 0.04206879824579346 -0.4549842915308478 0.04206879824579766 -0.4556871855964144 0.04206879824579346 -0.553846288364622 2.105311809659556e-015 -0.5538441486567165 0.04206879824578714 -0.5592787394173313 0.04308515952786989 -0.5650557503177475 0.00102532130916365 -0.563801279658997 0.04613424337406336 -0.5668511658957329 0.0505853708625426 -0.575406253255736 0.00410128523664618 -0.5678677946412722 0.05580786307140257 -0.3995947413660629 0.1259111150385921 -0.3995947413660629 0.09113872094406116 -0.3995947413660461 0.1135714192202963 -0.4006288889705434 0.1371186378813634 -0.3995947413660629 0.0668808517760424 -0.3995947413660798 0.05580358365548405 -0.4006288889705771 0.04471869282528158 -0.4037313317840522 0.1474676029042796 -0.4037313317841027 0.03445732209707928 -0.4089020698065892 0.1569580101073408 -0.4089020698066229 0.02501947147085191 -0.4161411030381882 0.1655898594905365 -0.4161411030381546 0.01640514094657419 -0.4248174850933403 0.009227891782453904 -0.4248174850932897 0.1727671086546694 -0.4343002695867721 0.1778937152004792 -0.4445894565185005 0.1809696791279596 -0.4416635396118922 0.1257078427821688 -0.4440471742817762 0.1323987095801263 -0.4495162678332841 0.1371381627165175 -0.4556850458884751 0.1819950004371191 -0.4528809586039204 0.1389504953605414 -0.4556871855964649 0.1399262021913193 -0.5538462883646389 0.1822753021801704 -0.5538441486566659 0.1399262021913277 -0.5551076462083984 0.1397860513197989 -0.565055750317798 0.1811273488584233 -0.5563690040521578 0.1396459004482743 -0.5642217322736003 0.1347395500908335 -0.5669562790493626 0.1307088752169555 -0.5754062532557867 0.177963790636231 -0.5678677946412722 0.1261871373657249 -0.5848977971786721 0.009227891782449694 -0.584897797178689 0.1727846275136189 -0.5935303820865219 0.01640514094657419 -0.5935303820865051 0.1655898594905428 -0.6007080993117092 0.1569580101073303 -0.6007080993117597 0.0250194714708477 -0.6058350401868935 0.1474676029042796 -0.6058350401869271 0.03445732209707507 -0.6089112047120074 0.1371186378813507 -0.608911204712058 0.04471869282528999 -0.6099365928870678 0.1259111150385879 -0.6099365928870342 0.1135714192203005 -0.6099365928870342 0.05580358365546721 -0.6099365928871016 0.09113872094406958 -0.6099365928870678 0.0668808517760424 0.4537518163837149 4.238691950405743e-015 0.4426089537688686 0.02187226596676184 0.4426089537687835 2.806833108662985e-017 0.4537518163837159 0.02187226596676184 0.4256685600559706 8.946496205582718e-017 0.4149294296536795 0.02187226596676191 0.4149294296536614 -4.121158657263276e-015 0.4256685600560549 0.02187226596676191 0.3800932190368435 0.02187226596676197 0.3693133629884171 4.367943119056256e-015 0.3800932190368258 -4.053304119581979e-015 0.3693133629884507 0.02187226596674513 0.3214545136871661 4.248059357691698e-015 0.3101942956106313 0.02187226596675343 0.3101942956106183 -4.173187880946528e-015 0.3214545136871975 0.02187226596674501 0.2439121446482021 0.02187226596674064 0.2551642685592132 -4.329083240436833e-015 0.2551642685592241 0.02187226596675327 0.2439121446482033 -8.539706859755947e-015 0.1637679106597841 0.02187226596675777 0.1745293955081136 -8.251349879029202e-015 0.1745293955081166 0.02187226596674093 0.1637679106597984 -8.251349879029204e-015 0.07313849531236742 0.02187226596674954 0.08385861101289908 -8.057560396889865e-015 0.08385861101289135 0.02187226596675796 0.07313849531236659 -1.226818401620899e-014 -0.007310898478694113 0.02187226596674963 -0.01844392439195489 4.6578813130909e-015 -0.007310898478691481 -1.218461316418556e-014 -0.01844392439194807 0.02187226596675384 -0.0668808517760487 0.02187226596674905 -0.05580358365548405 4.082026580636065e-015 -0.05580358365547562 0.02187226596675327 -0.06688085177604239 4.082026580636069e-015 -0.09113872094406114 -1.285970386830422e-016 -0.09113872094405694 0.02187226596674905 -0.1135714192203047 0.02187226596675748 -0.1135714192202962 -1.285970386830368e-016 -0.1259111150385921 -1.697109151595949e-014 -0.1259111150385858 0.02187226596673642 -0.1733493144608516 0.02187226596674899 -0.1620941809858881 -1.703915992041321e-014 -0.1620941809858803 0.02187226596673635 -0.1733493144608448 8.224581795501474e-015 -0.2463871106421109 0.02187226596674926 -0.2571911019627423 -4.128174506290225e-015 -0.2463871106420943 8.503696351667113e-015 -0.257191101962739 0.02187226596675769 -0.3334615184007756 0.02187226596673687 -0.3226539117935 -3.88499395527101e-015 -0.3226539117935007 0.02187226596675793 -0.3334615184007756 3.256296640481158e-016 -0.3942825109360874 0.02187226596675785 -0.3830169694088216 2.447607195182251e-016 -0.3830169694088216 0.0218722659667368 -0.3942825109360794 -1.238711013843904e-014 -0.4261976852326687 0.02187226596675749 -0.437457903309153 -4.32188888396172e-015 -0.426197685232662 -1.274313612259999e-014 -0.4374579033092 0.02187226596675749 -0.4558652386677452 -4.241848400607728e-015 -0.4666450947161932 0.02187226596676178 -0.4666450947161982 -8.452472019926845e-015 -0.4558652386677957 0.02187226596675757 -0.4670574917361491 0.0218722659667618 -0.477796622138527 1.683179380285436e-014 -0.4670574917361521 -8.431947913060316e-015 -0.4777966221385401 0.02187226596674917 -0.4593554002214298 1.693573755999654e-014 -0.4704982628363266 0.02187226596674086 -0.4704982628363106 -4.117380536599022e-015 -0.4593554002214456 0.02187226596674928 -0.4562028769659027 0.02187226596674078 -0.5543645196453531 2.006105291227948e-017 -0.456202876965886 -4.190562566406832e-015 -0.5543645196453531 0.02187226596676183 -0.5323950897842505 5.310884677965672e-017 -0.5436631789792777 0.02187226596674502 -0.5436631789793285 -8.368138391858566e-015 -0.5323950897842499 0.02187226596676187 -0.4874361417193592 0.02187226596674521 -0.498259311850868 -3.974287247454719e-015 -0.4874361417194089 -8.184910866773821e-015 -0.4982593118508341 0.02187226596674942 -0.4198596400791915 0.02187226596674918 -0.4306722779022074 0 -0.4198596400792241 -4.210623619319112e-015 -0.4306722779021957 0.02187226596674918 -0.3386840674930968 0.02187226596674891 -0.3499217811883612 -2.737009419756408e-016 -0.3386840674931058 -2.737009419756478e-016 -0.3499217811883843 0.02187226596675312 -0.2521633870834795 3.243349821902005e-016 -0.2633896263620411 0.02187226596673267 -0.2633896263620384 -1.230753587576715e-014 -0.2521633870834978 0.02187226596675372 -0.1474219521565602 -1.207808861996464e-014 -0.1582086732347114 0.02187226596674553 -0.1582086732346892 5.537822379927184e-016 -0.147421952156559 0.02187226596673289 -0.0312612407877229 6.214387844414372e-016 -0.04205771545456419 0.02187226596675822 -0.042057715454547 6.214387844414439e-016 -0.03126124078773529 0.02187226596674559 0.06981577643175707 -7.841553697582092e-015 0.08107010845016287 0.02187226596675818 0.06981577643174758 0.02187226596675397 0.08107010845016689 5.796935410561076e-016 0.1135714192203004 -1.282815982652973e-014 0.1259111150385752 0.02187226596675319 0.1135714192202962 0.02187226596675741 0.1259111150385879 -8.61753620721063e-015 0.09113872094408008 0.02187226596676162 0.09113872094406957 -2.124940706516798e-014 0.06688085177604237 -1.703878344584885e-014 0.06688085177604028 0.02187226596675319 0.0558035836554714 0.02187226596675741 0.05580358365546719 -4.406912587891506e-015 0.1117476017338899 -4.811462523879815e-015 0.1006153860682434 0.02187226596675279 0.1006153860682496 -1.744333338183721e-014 0.1117476017338926 0.021872265966757 0.217687503636929 -1.663764421701849e-014 0.2069749634429629 0.02187226596676202 0.2069749634429536 -4.005773359061165e-015 0.2176875036369097 0.0218722659667536 0.3087306893380087 0 0.3194711989711941 0.02187226596676182 0.3087306893380056 0.02187226596674076 0.3194711989711892 -4.210623619319112e-015 0.4037572337951282 -3.853452441189123e-016 0.392544459163178 0.02187226596675301 0.392544459163178 -4.595968863438028e-015 0.4037572337951292 0.02187226596674037 0.4668812713822267 0.02187226596675319 0.4556547657925447 -1.978642770789439e-016 0.4668812713822267 -4.408487896398065e-015 0.4556547657925549 0.02187226596675319 0.5190135397486333 0.02187226596675329 0.5082259774328561 4.109635045618396e-015 0.5190135397486205 -1.009885737007192e-016 0.508225977432869 0.02187226596674908 0.5527337823386906 4.117720273330889e-015 0.5419358906393141 0.0218722659667533 0.541935890639267 -8.514150584626452e-015 0.5527337823387056 0.02187226596674909 0.5628000704834925 0.02187226596675335 0.5515438135094042 -3.9395642974756e-017 0.5628000704834425 -8.46064288161298e-015 0.5515438135093707 0.02187226596676177 0.5538462883645884 0.02187226596676182 0.4556850458884583 4.210623619319115e-015 0.553846288364622 9.401220513461274e-031 0.4556850458884583 0.02187226596676182 0.3995947413660629 0.05580358365547563 0.3995947413660461 0.09113872094405695 0.3995947413660293 0.06688085177604872 0.3995947413661135 0.1135714192203047 0.400628888970594 0.04471869282528578 0.4445894565185173 0.001025321309155225 0.441663539611808 0.05628715765494816 0.4343002695867889 0.004101285236637755 0.4426451306395662 0.05112939161194971 0.4455899037225882 0.04680825138216783 0.4556850458884583 -4.214266083310666e-015 0.4497264941406279 0.04367197443649797 0.4542835371732205 0.04206879824578082 0.4549842915308309 0.04206879824579977 0.4556871855964312 0.04206879824580609 0.5538462883645884 2.101669345668003e-015 0.5538441486566827 0.04206879824579766 0.5592787394173144 0.04308515952786567 0.565055750317798 0.001025321309159436 0.563801279658997 0.04613424337408021 0.5668511658957161 0.05058537086254049 0.5754062532557529 0.004101285236641965 0.5678677946412891 0.05580786307139836 0.5678677946412891 0.1261871373657186 0.400628888970594 0.1371186378813655 0.3995947413660461 0.1259111150385858 0.403731331784069 0.03445732209707717 0.403731331784069 0.1474676029042712 0.408902069806606 0.02501947147083927 0.4089020698065892 0.1569580101073408 0.4161411030381882 0.165589859490547 0.4161411030381714 0.01640514094657419 0.4248174850933739 0.009227891782445478 0.4248174850933403 0.172767108654682 0.4343002695867721 0.1778937152004687 0.4445894565185173 0.1809696791279491 0.4416635396118922 0.1257078427821751 0.4440471742817425 0.1323987095801347 0.4495162678333347 0.137138162716526 0.4556850458884919 0.1819950004371107 0.452880958603971 0.1389504953605414 0.4556871855964649 0.139926202191332 0.5538462883646389 0.1822753021801767 0.5538441486566996 0.139926202191332 0.5551076462083815 0.1397860513198073 0.5650557503177475 0.1811273488584275 0.556369004052141 0.1396459004482785 0.5642217322736172 0.1347395500908335 0.566956279049329 0.1307088752169492 0.5754062532557529 0.1779637906362373 0.584897797178689 0.009227891782445478 0.5848977971786721 0.1727846275136126 0.5935303820865387 0.165589859490547 0.5935303820865219 0.01640514094657419 0.6007080993117765 0.02501947147083506 0.600708099311726 0.1569580101073408 0.605835040186944 0.1474676029042817 0.6058350401869103 0.0344573220970898 0.6089112047119906 0.04471869282528999 0.6089112047120747 0.1371186378813528 0.6099365928870173 0.05580358365547142 0.6099365928870342 0.1259111150385753 0.6099365928870509 0.06688085177604029 0.6099365928870509 0.1135714192202963 0.6099365928870509 0.09113872094408011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"286\" source=\"#ID9452\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9448\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9446\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9447\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"214\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9448\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9449\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 1 1 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 5 5 7 7 8 8 5 5 8 8 9 9 5 5 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 10 10 12 12 13 13 13 13 12 12 14 14 13 13 14 14 15 15 13 13 15 15 16 16 16 16 15 15 17 17 18 18 19 19 20 20 19 19 18 18 21 21 19 19 21 21 22 22 22 22 21 21 23 23 23 23 21 21 24 24 24 24 21 21 25 25 24 24 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29 28 28 29 29 30 30 30 30 29 29 31 31 31 31 29 29 32 32 31 31 32 32 33 33 31 31 33 33 2 2 2 2 33 33 34 34 2 2 34 34 35 35 2 2 35 35 0 0 35 35 34 34 36 36 36 36 34 34 37 37 37 37 34 34 38 38 37 37 38 38 39 39 39 39 38 38 40 40 40 40 38 38 41 41 40 40 41 41 42 42 42 42 41 41 43 43 43 43 41 41 44 44 43 43 44 44 45 45 45 45 44 44 46 46 46 46 44 44 47 47 47 47 44 44 48 48 47 47 48 48 49 49 49 49 48 48 17 17 17 17 48 48 16 16 16 16 48 48 50 50 50 50 48 48 51 51 50 50 51 51 52 52 52 52 51 51 53 53 52 52 53 53 54 54 52 52 54 54 55 55 55 55 54 54 56 56 55 55 56 56 57 57 57 57 56 56 58 58 57 57 58 58 59 59 59 59 58 58 60 60 59 59 60 60 61 61 61 61 62 62 59 59 62 62 61 61 63 63 62 62 63 63 64 64 130 65 131 66 132 67 131 66 130 65 133 68 132 69 138 70 139 71 138 70 132 69 131 72 138 73 142 74 139 75 142 74 138 73 143 76 142 77 146 78 147 79 146 78 142 77 143 80 150 81 147 82 146 83 147 82 150 81 151 84 154 85 151 86 150 87 151 86 154 85 155 88 158 89 155 90 154 91 155 90 158 89 159 92 158 93 162 94 159 95 162 94 158 93 163 96 166 97 162 98 163 99 162 98 166 97 167 100 166 97 170 101 167 100 170 101 166 97 171 102 174 103 170 101 171 102 170 101 174 103 175 104 174 103 178 105 175 104 178 105 174 103 179 106 182 107 178 108 179 109 178 108 182 107 183 110 182 111 186 112 183 113 186 112 182 111 187 114 190 115 186 116 187 117 186 116 190 115 191 118 194 119 191 120 190 121 191 120 194 119 195 122 194 123 198 124 195 125 198 124 194 123 199 126 198 127 202 128 203 129 202 128 198 127 199 130 202 131 206 132 203 133 206 132 202 131 207 134 206 135 210 136 211 137 210 136 206 135 207 138 210 139 214 140 211 141 214 140 210 139 215 142 214 143 218 144 219 145 218 144 214 143 215 146 218 147 222 148 219 149 222 148 218 147 223 150 223 151 226 152 222 153 226 152 223 151 227 154 227 155 230 156 226 157 230 156 227 155 231 158 230 159 234 160 235 161 234 160 230 159 231 162 235 163 238 164 239 165 238 164 235 163 234 166 239 167 242 168 243 169 242 168 239 167 238 170 246 171 242 172 247 173 242 172 246 171 243 174 250 175 247 176 251 177 247 176 250 175 246 178 250 175 254 179 255 180 254 179 250 175 251 177 258 181 254 179 259 182 254 179 258 181 255 180 258 181 262 183 263 184 262 183 258 181 259 182 263 185 266 186 267 187 266 186 263 185 262 188 267 189 270 190 271 191 270 190 267 189 266 192 274 193 270 194 275 195 270 194 274 193 271 196 274 197 278 198 279 199 278 198 274 197 275 200 278 201 282 202 279 203 282 202 278 201 283 204 283 205 286 206 282 207 286 206 283 205 287 208 286 209 290 210 291 211 290 210 286 209 287 212 290 213 294 214 291 215 294 214 290 213 295 216 295 217 130 218 294 219 130 218 295 217 133 220 298 221 299 222 300 223 299 222 298 221 301 224 301 224 298 221 302 225 303 226 304 227 305 228 304 227 303 226 306 229 306 229 303 226 307 230 307 230 303 226 308 231 307 230 308 231 309 232 309 232 308 231 310 233 310 233 308 231 311 234 311 234 308 231 312 235 312 235 308 231 313 236 312 235 313 236 314 237 314 237 313 236 315 238 315 238 313 236 316 239 315 238 316 239 317 240 317 240 316 239 318 241 318 241 316 239 319 242 318 241 319 242 320 243 320 243 319 242 321 244 301 224 322 245 323 246 322 245 301 224 302 225 322 245 302 225 324 247 322 245 324 247 325 248 325 248 324 247 326 249 325 248 326 249 327 250 327 250 326 249 328 251 328 251 326 249 329 252 328 251 329 252 330 253 328 251 330 253 331 254 331 254 330 253 332 255 332 255 330 253 305 228 332 255 305 228 333 256 333 256 305 228 334 257 334 257 305 228 304 227 333 256 334 257 335 258 333 256 335 258 336 259 333 256 336 259 337 260 337 260 336 259 338 261 337 260 338 261 339 262 337 260 339 262 340 263 340 263 339 262 341 264 340 263 341 264 342 265 340 263 342 265 343 266 343 266 342 265 344 267 343 266 344 267 345 268 343 266 345 268 346 269 343 266 346 269 347 270 347 270 346 269 321 244 347 270 321 244 319 242 347 270 319 242 348 271 347 270 348 271 349 272 349 272 348 271 350 273 350 273 348 271 351 274 350 273 351 274 352 275 350 273 352 275 353 276 353 276 352 275 354 277 354 277 352 275 355 278 354 277 355 278 356 279 354 277 356 279 357 280 357 280 356 279 358 281 357 280 358 281 359 282 359 282 358 281 360 283 359 282 360 283 361 284 361 284 360 283 362 285</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"214\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9448\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9449\" />\r\n\t\t\t\t\t<p>65 64 66 63 67 62 66 63 68 61 67 62 69 59 67 62 68 61 68 61 70 60 69 59 70 60 71 58 69 59 69 59 71 58 72 57 71 58 73 56 72 57 72 57 73 56 74 55 73 56 75 54 74 55 74 55 75 54 76 52 75 54 77 53 76 52 77 53 78 51 76 52 76 52 78 51 79 50 78 51 80 48 79 50 79 50 80 48 81 16 81 16 80 48 82 17 82 17 80 48 83 49 83 49 80 48 84 47 80 48 85 44 84 47 84 47 85 44 86 46 86 46 85 44 87 45 87 45 85 44 88 43 85 44 89 41 88 43 88 43 89 41 90 42 90 42 89 41 91 40 89 41 92 38 91 40 91 40 92 38 93 39 93 39 92 38 94 37 92 38 95 34 94 37 94 37 95 34 96 36 96 36 95 34 97 35 98 0 97 35 99 2 97 35 95 34 99 2 95 34 100 33 99 2 99 2 100 33 101 31 100 33 102 32 101 31 102 32 103 29 101 31 101 31 103 29 104 30 104 30 103 29 105 28 103 29 106 27 105 28 105 28 106 27 107 26 106 27 108 25 107 26 107 26 108 25 109 24 108 25 110 21 109 24 109 24 110 21 111 23 111 23 110 21 112 22 112 22 110 21 113 19 110 21 114 18 113 19 115 20 113 19 114 18 82 17 116 15 81 16 81 16 116 15 117 13 116 15 118 14 117 13 118 14 119 12 117 13 117 13 119 12 120 10 119 12 121 11 120 10 121 11 122 9 120 10 120 10 122 9 123 5 122 9 124 8 123 5 124 8 125 7 123 5 125 7 126 6 123 5 126 6 127 4 123 5 123 5 127 4 128 1 127 4 129 3 128 1 129 3 98 0 128 1 99 2 128 1 98 0 134 68 135 65 136 66 137 67 136 66 135 65 136 72 137 69 140 70 141 71 140 70 137 69 144 76 140 73 145 74 141 75 145 74 140 73 144 80 145 77 148 78 149 79 148 78 145 77 152 84 153 81 149 82 148 83 149 82 153 81 156 88 157 85 152 86 153 87 152 86 157 85 160 92 161 89 156 90 157 91 156 90 161 89 164 96 161 93 165 94 160 95 165 94 161 93 168 100 169 97 165 98 164 99 165 98 169 97 172 102 169 97 173 101 168 100 173 101 169 97 176 104 177 103 173 101 172 102 173 101 177 103 180 106 177 103 181 105 176 104 181 105 177 103 184 110 185 107 181 108 180 109 181 108 185 107 188 114 185 111 189 112 184 113 189 112 185 111 192 118 193 115 189 116 188 117 189 116 193 115 196 122 197 119 192 120 193 121 192 120 197 119 200 126 197 123 201 124 196 125 201 124 197 123 200 130 201 127 204 128 205 129 204 128 201 127 208 134 204 131 209 132 205 133 209 132 204 131 208 138 209 135 212 136 213 137 212 136 209 135 216 142 212 139 217 140 213 141 217 140 212 139 216 146 217 143 220 144 221 145 220 144 217 143 224 150 220 147 225 148 221 149 225 148 220 147 228 154 224 151 229 152 225 153 229 152 224 151 232 158 228 155 233 156 229 157 233 156 228 155 232 162 233 159 236 160 237 161 236 160 233 159 236 166 237 163 240 164 241 165 240 164 237 163 240 170 241 167 244 168 245 169 244 168 241 167 245 174 248 171 244 172 249 173 244 172 248 171 248 178 252 175 249 176 253 177 249 176 252 175 253 177 252 175 256 179 257 180 256 179 252 175 257 180 260 181 256 179 261 182 256 179 260 181 261 182 260 181 264 183 265 184 264 183 260 181 264 188 265 185 268 186 269 187 268 186 265 185 268 192 269 189 272 190 273 191 272 190 269 189 273 196 276 193 272 194 277 195 272 194 276 193 277 200 276 197 280 198 281 199 280 198 276 197 284 204 280 201 285 202 281 203 285 202 280 201 288 208 284 205 289 206 285 207 289 206 284 205 288 212 289 209 292 210 293 211 292 210 289 209 296 216 292 213 297 214 293 215 297 214 292 213 134 220 296 217 135 218 297 219 135 218 296 217 363 285 364 283 365 284 365 284 364 283 366 282 364 283 367 281 366 282 366 282 367 281 368 280 367 281 369 279 368 280 368 280 369 279 370 277 369 279 371 278 370 277 371 278 372 275 370 277 370 277 372 275 373 276 373 276 372 275 374 273 372 275 375 274 374 273 375 274 376 271 374 273 374 273 376 271 377 272 377 272 376 271 378 270 376 271 379 242 378 270 379 242 380 244 378 270 380 244 381 269 378 270 378 270 381 269 382 266 381 269 383 268 382 266 383 268 384 267 382 266 384 267 385 265 382 266 382 266 385 265 386 263 385 265 387 264 386 263 387 264 388 262 386 263 386 263 388 262 389 260 388 262 390 261 389 260 390 261 391 259 389 260 389 260 391 259 392 256 391 259 393 258 392 256 393 258 394 257 392 256 395 227 396 228 394 257 394 257 396 228 392 256 392 256 396 228 397 255 396 228 398 253 397 255 397 255 398 253 399 254 399 254 398 253 400 251 398 253 401 252 400 251 401 252 402 249 400 251 400 251 402 249 403 250 403 250 402 249 404 248 402 249 405 247 404 248 404 248 405 247 406 245 405 247 407 225 406 245 407 225 408 224 406 245 409 246 406 245 408 224 380 244 379 242 410 243 410 243 379 242 411 241 379 242 412 239 411 241 411 241 412 239 413 240 413 240 412 239 414 238 412 239 415 236 414 238 414 238 415 236 416 237 416 237 415 236 417 235 415 236 418 231 417 235 417 235 418 231 419 234 419 234 418 231 420 233 420 233 418 231 421 232 421 232 418 231 422 230 418 231 423 226 422 230 422 230 423 226 424 229 424 229 423 226 395 227 396 228 395 227 423 226 407 225 425 221 408 224 408 224 425 221 426 222 427 223 426 222 425 221</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9453\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9454\">\r\n\t\t\t\t\t<float_array count=\"1284\" id=\"ID9458\">55.26896478285835 6.799200212083974 -6.821210263296962e-013 55.26896478285562 6.132856637896907 0 55.2135938214069 7.404406445593281 -4.547473508864641e-013 43.96634877136876 7.404406445592599 -2.273736754432321e-013 43.91050480072499 6.13285663789577 4.547473508864641e-013 43.91050480072317 6.799200212084202 -2.273736754432321e-013 43.9105048007259 3.013393517396025 -2.273736754432321e-013 43.96634877136603 2.41480941256566 -2.273736754432321e-013 44.1338806832955 1.860695393242963 -6.821210263296962e-013 44.13388068329823 7.963250556830303 0 44.41310053651159 1.351051459425321 -2.273736754432321e-013 44.4131005365125 8.475732545796404 -4.547473508864641e-013 44.8040083310143 0.8858776111150064 -6.821210263296962e-013 44.80400833101612 8.941852412489538 6.821210263296962e-013 45.27253296199524 0.4983061562521698 0 45.27253296199433 9.329423867352034 -2.273736754432321e-013 45.78460332464238 9.60626062082531 2.273736754432321e-013 45.78460332464238 0.221469402778439 0 46.34021941895389 9.772362672909821 -2.273736754432321e-013 46.18221990599704 6.788223510237458 0 46.3109361781726 7.149530317327503 -2.273736754432321e-013 46.60626722995585 7.405460786691378 -2.273736754432321e-013 46.93938124493616 9.827730023604772 2.273736754432321e-013 46.78796053157021 7.503326749469011 -4.547473508864641e-013 46.93949678916215 7.556014918331471 -2.273736754432321e-013 52.24008833864991 9.842866317729545 -6.821210263296962e-013 52.23997279441846 7.556014918331925 2.273736754432321e-013 52.30820166220929 7.548446771269369 0 52.84539928411414 9.780876838355084 4.547473508864641e-013 52.37631498577048 7.54087862420613 0 52.80036230972928 7.275935704905123 2.273736754432321e-013 52.94802783561954 7.058279261715711 0 53.40432644277189 9.610044694357043 -2.273736754432321e-013 52.99724967758539 6.814105417748692 -4.547473508864641e-013 53.40432644276825 0.2214694027790074 2.273736754432321e-013 53.91686981460498 0.4983061562521698 -2.273736754432321e-013 53.91686981460498 9.330369885735308 2.273736754432321e-013 54.38302939962978 8.941852412489993 -6.821210263296962e-013 54.38302939962796 0.8858776111143243 0 54.7706261297908 1.351051459425094 4.547473508864641e-013 54.77062612979171 8.475732545796518 -4.547473508864641e-013 55.04748093705166 1.860695393242622 -4.547473508864641e-013 55.04748093704893 7.963250556830303 -4.547473508864641e-013 55.21359382140508 2.414809412565319 0 55.26896478286108 3.013393517395571 0 55.26896478285562 4.921490930979985 4.547473508864641e-013 55.26896478286017 3.611565995905949 4.547473508864641e-013 46.18221990599886 3.03950651336686 -2.273736754432321e-013 46.34021941895571 0.05536735069483711 -2.273736754432321e-013 46.23522582148962 2.760987147044602 0 46.39424356797372 2.5276455746382 -9.094947017729282e-013 46.93938124493252 7.958078640513122e-013 0 46.61761945055059 2.358286619571345 -4.547473508864641e-013 46.86369977430786 2.271715105272392 -9.094947017729282e-013 46.90154050962156 2.271715105272847 4.547473508864641e-013 46.93949678915942 2.271715105273074 -6.821210263296962e-013 52.24008833864991 -2.273736754432321e-013 2.273736754432321e-013 52.23997279441755 2.271715105272847 0 52.53344069548984 2.32659861450486 -2.273736754432321e-013 52.84539928411687 0.05536735069506449 -9.094947017729282e-013 52.77765786854525 2.491249142199536 2.273736754432321e-013 52.94235172532353 2.731610026577414 -2.273736754432321e-013 52.99724967758357 3.013624605856307 9.094947017729282e-013 43.91050480072317 4.921490930978962 -2.273736754432321e-013 43.91050480072227 3.611565995906517 -2.273736754432321e-013 43.91050480072499 6.13285663789577 4.547473508864641e-013 43.91050480072317 4.921490930978962 -2.273736754432321e-013 43.9105048007259 3.013393517396025 -2.273736754432321e-013 43.91050480072227 3.611565995906517 -2.273736754432321e-013 52.99724967758539 6.814105417748692 -4.547473508864641e-013 52.99724967758357 3.013624605856307 9.094947017729282e-013 53.40432644276825 0.2214694027790074 2.273736754432321e-013 52.94235172532353 2.731610026577414 -2.273736754432321e-013 52.84539928411687 0.05536735069506449 -9.094947017729282e-013 52.77765786854525 2.491249142199536 2.273736754432321e-013 52.53344069548984 2.32659861450486 -2.273736754432321e-013 52.24008833864991 -2.273736754432321e-013 2.273736754432321e-013 52.23997279441755 2.271715105272847 0 46.93949678915942 2.271715105273074 -6.821210263296962e-013 46.93938124493252 7.958078640513122e-013 0 46.90154050962156 2.271715105272847 4.547473508864641e-013 46.86369977430786 2.271715105272392 -9.094947017729282e-013 46.61761945055059 2.358286619571345 -4.547473508864641e-013 46.39424356797372 2.5276455746382 -9.094947017729282e-013 46.34021941895571 0.05536735069483711 -2.273736754432321e-013 46.23522582148962 2.760987147044602 0 46.18221990599886 3.03950651336686 -2.273736754432321e-013 46.18221990599704 6.788223510237458 0 45.78460332464238 0.221469402778439 0 55.26896478286017 3.611565995905949 4.547473508864641e-013 55.26896478285562 4.921490930979985 4.547473508864641e-013 55.26896478286108 3.013393517395571 0 55.26896478285562 6.132856637896907 0 55.2135938214069 7.404406445593281 -4.547473508864641e-013 55.21359382140508 2.414809412565319 0 55.04748093705166 1.860695393242622 -4.547473508864641e-013 55.04748093704893 7.963250556830303 -4.547473508864641e-013 54.77062612979171 8.475732545796518 -4.547473508864641e-013 54.7706261297908 1.351051459425094 4.547473508864641e-013 54.38302939962978 8.941852412489993 -6.821210263296962e-013 54.38302939962796 0.8858776111143243 0 53.91686981460498 0.4983061562521698 -2.273736754432321e-013 53.91686981460498 9.330369885735308 2.273736754432321e-013 53.40432644277189 9.610044694357043 -2.273736754432321e-013 52.94802783561954 7.058279261715711 0 52.84539928411414 9.780876838355084 4.547473508864641e-013 52.80036230972928 7.275935704905123 2.273736754432321e-013 52.37631498577048 7.54087862420613 0 52.30820166220929 7.548446771269369 0 52.24008833864991 9.842866317729545 -6.821210263296962e-013 52.23997279441846 7.556014918331925 2.273736754432321e-013 46.93949678916215 7.556014918331471 -2.273736754432321e-013 46.93938124493616 9.827730023604772 2.273736754432321e-013 46.78796053157021 7.503326749469011 -4.547473508864641e-013 46.60626722995585 7.405460786691378 -2.273736754432321e-013 46.34021941895389 9.772362672909821 -2.273736754432321e-013 46.3109361781726 7.149530317327503 -2.273736754432321e-013 45.78460332464238 9.60626062082531 2.273736754432321e-013 45.27253296199524 0.4983061562521698 0 45.27253296199433 9.329423867352034 -2.273736754432321e-013 44.80400833101612 8.941852412489538 6.821210263296962e-013 44.8040083310143 0.8858776111150064 -6.821210263296962e-013 44.4131005365125 8.475732545796404 -4.547473508864641e-013 44.41310053651159 1.351051459425321 -2.273736754432321e-013 44.13388068329823 7.963250556830303 0 44.1338806832955 1.860695393242963 -6.821210263296962e-013 43.96634877136876 7.404406445592599 -2.273736754432321e-013 43.96634877136603 2.41480941256566 -2.273736754432321e-013 43.91050480072317 6.799200212084202 -2.273736754432321e-013 55.26896478285835 6.799200212083974 -6.821210263296962e-013 46.93938124493252 7.958078640513122e-013 0 46.34021941895389 0.05536735069483711 1.181102362204683 46.34021941895571 0.05536735069483711 -2.273736754432321e-013 46.93938124493616 0 1.181102362204456 46.93938124493616 0 1.181102362204456 46.93938124493252 7.958078640513122e-013 0 46.34021941895389 0.05536735069483711 1.181102362204683 46.34021941895571 0.05536735069483711 -2.273736754432321e-013 45.78460332464238 0.221469402778439 0 45.78460332464238 0.2214694027790074 1.181102362204229 45.78460332464238 0.2214694027790074 1.181102362204229 45.78460332464238 0.221469402778439 0 45.27253296199524 0.4983061562521698 0 45.27253296199524 0.4983061562519424 1.181102362204229 45.27253296199524 0.4983061562519424 1.181102362204229 45.27253296199524 0.4983061562521698 0 44.80400833101521 0.885877611114779 1.181102362204683 44.8040083310143 0.8858776111150064 -6.821210263296962e-013 44.80400833101521 0.885877611114779 1.181102362204683 44.8040083310143 0.8858776111150064 -6.821210263296962e-013 44.41310053651341 1.351051459425548 1.181102362204683 44.41310053651159 1.351051459425321 -2.273736754432321e-013 44.41310053651159 1.351051459425321 -2.273736754432321e-013 44.41310053651341 1.351051459425548 1.181102362204683 44.1338806832955 1.860695393242963 -6.821210263296962e-013 44.1338806832955 1.860695393242395 1.181102362204683 44.1338806832955 1.860695393242395 1.181102362204683 44.1338806832955 1.860695393242963 -6.821210263296962e-013 43.96634877136603 2.414809412565887 1.181102362204683 43.96634877136603 2.41480941256566 -2.273736754432321e-013 43.96634877136603 2.41480941256566 -2.273736754432321e-013 43.96634877136603 2.414809412565887 1.181102362204683 43.9105048007259 3.013393517396025 -2.273736754432321e-013 43.91050480072317 3.013393517395343 1.181102362204229 43.91050480072317 3.013393517395343 1.181102362204229 43.9105048007259 3.013393517396025 -2.273736754432321e-013 43.91050480072045 3.611565995906631 1.181102362205593 43.91050480072227 3.611565995906517 -2.273736754432321e-013 43.91050480072227 3.611565995906517 -2.273736754432321e-013 43.91050480072045 3.611565995906631 1.181102362205593 43.91050480072317 4.921490930978962 -2.273736754432321e-013 43.9105048007259 4.921490930979644 1.181102362204229 43.9105048007259 4.921490930979644 1.181102362204229 43.91050480072317 4.921490930978962 -2.273736754432321e-013 43.91050480072499 6.13285663789577 4.547473508864641e-013 43.91050480072317 6.132856637895998 1.181102362204229 43.91050480072317 6.132856637895998 1.181102362204229 43.91050480072499 6.13285663789577 4.547473508864641e-013 43.91050480072317 6.799200212084202 -2.273736754432321e-013 43.91050480072317 6.799200212084202 1.181102362204456 43.91050480072317 6.799200212084202 1.181102362204456 43.91050480072317 6.799200212084202 -2.273736754432321e-013 43.96634877136785 7.404406445593054 1.181102362204911 43.96634877136876 7.404406445592599 -2.273736754432321e-013 43.96634877136876 7.404406445592599 -2.273736754432321e-013 43.96634877136785 7.404406445593054 1.181102362204911 44.13388068329823 7.963250556830303 0 44.13388068329732 7.963250556830644 1.181102362203774 44.13388068329732 7.963250556830644 1.181102362203774 44.13388068329823 7.963250556830303 0 44.4131005365125 8.475732545796404 -4.547473508864641e-013 44.41310053651432 8.475732545796063 1.181102362204683 44.41310053651432 8.475732545796063 1.181102362204683 44.4131005365125 8.475732545796404 -4.547473508864641e-013 44.80400833101703 8.941852412489538 1.181102362205138 44.80400833101612 8.941852412489538 6.821210263296962e-013 44.80400833101612 8.941852412489538 6.821210263296962e-013 44.80400833101703 8.941852412489538 1.181102362205138 45.27253296199615 9.329423867351466 1.181102362204229 45.27253296199433 9.329423867352034 -2.273736754432321e-013 45.27253296199615 9.329423867351466 1.181102362204229 45.27253296199433 9.329423867352034 -2.273736754432321e-013 45.78460332464238 9.60626062082531 2.273736754432321e-013 45.78460332463965 9.60626062082531 1.181102362204229 45.78460332463965 9.60626062082531 1.181102362204229 45.78460332464238 9.60626062082531 2.273736754432321e-013 46.3402194189548 9.772362672909821 1.181102362204911 46.34021941895389 9.772362672909821 -2.273736754432321e-013 46.3402194189548 9.772362672909821 1.181102362204911 46.34021941895389 9.772362672909821 -2.273736754432321e-013 46.93938124493616 9.827730023604772 2.273736754432321e-013 46.93938124493525 9.827730023604659 1.181102362204456 46.93938124493525 9.827730023604659 1.181102362204456 46.93938124493616 9.827730023604772 2.273736754432321e-013 52.240088338649 9.842866317729545 1.181102362205138 52.24008833864991 9.842866317729545 -6.821210263296962e-013 52.240088338649 9.842866317729545 1.181102362205138 52.24008833864991 9.842866317729545 -6.821210263296962e-013 52.84539928411414 9.780876838355084 4.547473508864641e-013 52.84539928411414 9.780876838355084 1.181102362205365 52.84539928411414 9.780876838355084 1.181102362205365 52.84539928411414 9.780876838355084 4.547473508864641e-013 53.40432644277007 9.610044694356816 1.181102362204911 53.40432644277189 9.610044694357043 -2.273736754432321e-013 53.40432644277007 9.610044694356816 1.181102362204911 53.40432644277189 9.610044694357043 -2.273736754432321e-013 53.91686981460498 9.330369885735308 2.273736754432321e-013 53.91686981460498 9.330369885735649 1.181102362204683 53.91686981460498 9.330369885735649 1.181102362204683 53.91686981460498 9.330369885735308 2.273736754432321e-013 54.38302939962796 8.941852412489766 1.181102362204229 54.38302939962978 8.941852412489993 -6.821210263296962e-013 54.38302939962796 8.941852412489766 1.181102362204229 54.38302939962978 8.941852412489993 -6.821210263296962e-013 54.77062612979171 8.475732545796518 -4.547473508864641e-013 54.77062612979262 8.475732545796404 1.181102362204456 54.77062612979171 8.475732545796518 -4.547473508864641e-013 54.77062612979262 8.475732545796404 1.181102362204456 55.04748093704984 7.963250556831213 1.181102362204229 55.04748093704893 7.963250556830303 -4.547473508864641e-013 55.04748093704984 7.963250556831213 1.181102362204229 55.04748093704893 7.963250556830303 -4.547473508864641e-013 55.21359382140508 7.404406445593509 1.181102362205138 55.2135938214069 7.404406445593281 -4.547473508864641e-013 55.21359382140508 7.404406445593509 1.181102362205138 55.2135938214069 7.404406445593281 -4.547473508864641e-013 55.26896478285926 6.799200212084202 1.181102362204911 55.26896478285835 6.799200212083974 -6.821210263296962e-013 55.26896478285926 6.799200212084202 1.181102362204911 55.26896478285835 6.799200212083974 -6.821210263296962e-013 55.26896478285562 6.132856637896907 0 55.26896478285653 6.13285663789577 1.181102362204456 55.26896478285562 6.132856637896907 0 55.26896478285653 6.13285663789577 1.181102362204456 55.26896478285562 4.921490930979985 4.547473508864641e-013 55.26896478285562 4.92149093097953 1.181102362203774 55.26896478285562 4.921490930979985 4.547473508864641e-013 55.26896478285562 4.92149093097953 1.181102362203774 55.26896478285835 3.611565995906062 1.181102362204229 55.26896478286017 3.611565995905949 4.547473508864641e-013 55.26896478285835 3.611565995906062 1.181102362204229 55.26896478286017 3.611565995905949 4.547473508864641e-013 55.26896478285926 3.013393517395798 1.181102362204456 55.26896478286108 3.013393517395571 0 55.26896478285926 3.013393517395798 1.181102362204456 55.26896478286108 3.013393517395571 0 55.21359382140508 2.41480941256566 1.181102362204456 55.21359382140508 2.414809412565319 0 55.21359382140508 2.41480941256566 1.181102362204456 55.21359382140508 2.414809412565319 0 55.04748093705166 1.860695393242622 -4.547473508864641e-013 55.04748093705257 1.860695393242281 1.181102362205365 55.04748093705166 1.860695393242622 -4.547473508864641e-013 55.04748093705257 1.860695393242281 1.181102362205365 54.77062612979353 1.351051459425548 1.181102362204229 54.7706261297908 1.351051459425094 4.547473508864641e-013 54.77062612979353 1.351051459425548 1.181102362204229 54.7706261297908 1.351051459425094 4.547473508864641e-013 54.38302939962796 0.8858776111143243 0 54.38302939962796 0.8858776111140969 1.181102362203774 54.38302939962796 0.8858776111143243 0 54.38302939962796 0.8858776111140969 1.181102362203774 53.91686981460589 0.4983061562523972 1.181102362204683 53.91686981460498 0.4983061562521698 -2.273736754432321e-013 53.91686981460589 0.4983061562523972 1.181102362204683 53.91686981460498 0.4983061562521698 -2.273736754432321e-013 53.40432644276825 0.2214694027790074 2.273736754432321e-013 53.40432644276916 0.22146940277878 1.181102362204683 53.40432644276916 0.22146940277878 1.181102362204683 53.40432644276825 0.2214694027790074 2.273736754432321e-013 52.84539928411505 0.05536735069460974 1.181102362205138 52.84539928411687 0.05536735069506449 -9.094947017729282e-013 52.84539928411505 0.05536735069460974 1.181102362205138 52.84539928411687 0.05536735069506449 -9.094947017729282e-013 52.24008833864991 -2.273736754432321e-013 2.273736754432321e-013 52.240088338649 -1.13686837721616e-013 1.181102362204229 52.240088338649 -1.13686837721616e-013 1.181102362204229 52.24008833864991 -2.273736754432321e-013 2.273736754432321e-013 43.91050480072317 3.013393517395343 1.181102362204229 43.9105048007259 4.921490930979644 1.181102362204229 43.91050480072045 3.611565995906631 1.181102362205593 43.96634877136603 2.414809412565887 1.181102362204683 45.78460332464238 0.2214694027790074 1.181102362204229 46.18221990599795 3.039506513366632 1.181102362204683 46.18221990599614 6.788223510237117 1.181102362204683 46.34021941895389 0.05536735069483711 1.181102362204683 46.23522582148962 2.76098714704483 1.181102362204456 46.39424356797645 2.527645574637404 1.181102362204229 46.93938124493616 0 1.181102362204456 46.61761945054786 2.358286619571686 1.181102362204456 46.86369977430968 2.271715105273188 1.181102362204456 46.90154050962428 2.271715105272506 1.181102362204456 46.93949678916579 2.271715105272506 1.181102362204683 52.240088338649 -1.13686837721616e-013 1.181102362204229 52.23997279441574 2.271715105272961 1.181102362204911 52.53344069548984 2.326598614504064 1.181102362204456 52.84539928411505 0.05536735069460974 1.181102362205138 52.77765786854343 2.491249142199308 1.181102362204001 52.94235172532262 2.731610026576959 1.181102362204229 53.40432644276916 0.22146940277878 1.181102362204683 52.99724967758357 3.013624605855966 1.181102362204683 52.99724967758448 6.814105417748806 1.181102362204911 43.91050480072317 6.799200212084202 1.181102362204456 43.91050480072317 6.132856637895998 1.181102362204229 43.96634877136785 7.404406445593054 1.181102362204911 44.1338806832955 1.860695393242395 1.181102362204683 44.13388068329732 7.963250556830644 1.181102362203774 44.41310053651341 1.351051459425548 1.181102362204683 44.41310053651432 8.475732545796063 1.181102362204683 44.80400833101521 0.885877611114779 1.181102362204683 44.80400833101703 8.941852412489538 1.181102362205138 45.27253296199524 0.4983061562519424 1.181102362204229 45.27253296199615 9.329423867351466 1.181102362204229 45.78460332463965 9.60626062082531 1.181102362204229 46.3402194189548 9.772362672909821 1.181102362204911 46.31093617817442 7.149530317327162 1.181102362204456 46.60626722995494 7.405460786691947 1.181102362204456 46.93938124493525 9.827730023604659 1.181102362204456 46.7879605315693 7.503326749469011 1.181102362204911 46.93949678916397 7.556014918331471 1.181102362204683 52.240088338649 9.842866317729545 1.181102362205138 52.23997279441755 7.556014918332039 1.181102362204229 52.3082016622102 7.548446771269141 1.181102362204229 52.84539928411414 9.780876838355084 1.181102362205365 52.37631498577321 7.540878624206926 1.181102362204456 52.80036230972928 7.275935704905464 1.181102362204456 52.94802783561954 7.058279261714688 1.18110236220582 53.40432644277007 9.610044694356816 1.181102362204911 53.91686981460589 0.4983061562523972 1.181102362204683 53.91686981460498 9.330369885735649 1.181102362204683 54.38302939962796 8.941852412489766 1.181102362204229 54.38302939962796 0.8858776111140969 1.181102362203774 54.77062612979353 1.351051459425548 1.181102362204229 54.77062612979262 8.475732545796404 1.181102362204456 55.04748093704984 7.963250556831213 1.181102362204229 55.04748093705257 1.860695393242281 1.181102362205365 55.21359382140508 7.404406445593509 1.181102362205138 55.21359382140508 2.41480941256566 1.181102362204456 55.26896478285926 3.013393517395798 1.181102362204456 55.26896478285562 4.92149093097953 1.181102362203774 55.26896478285835 3.611565995906062 1.181102362204229 55.26896478285653 6.13285663789577 1.181102362204456 55.26896478285926 6.799200212084202 1.181102362204911 55.26896478285562 4.92149093097953 1.181102362203774 55.21359382140508 7.404406445593509 1.181102362205138 55.26896478285653 6.13285663789577 1.181102362204456 55.26896478285926 6.799200212084202 1.181102362204911 55.26896478285835 3.611565995906062 1.181102362204229 55.26896478285926 3.013393517395798 1.181102362204456 55.21359382140508 2.41480941256566 1.181102362204456 55.04748093705257 1.860695393242281 1.181102362205365 55.04748093704984 7.963250556831213 1.181102362204229 54.77062612979353 1.351051459425548 1.181102362204229 54.77062612979262 8.475732545796404 1.181102362204456 54.38302939962796 8.941852412489766 1.181102362204229 54.38302939962796 0.8858776111140969 1.181102362203774 53.91686981460589 0.4983061562523972 1.181102362204683 53.91686981460498 9.330369885735649 1.181102362204683 53.40432644277007 9.610044694356816 1.181102362204911 53.40432644276916 0.22146940277878 1.181102362204683 52.99724967758448 6.814105417748806 1.181102362204911 52.94802783561954 7.058279261714688 1.18110236220582 52.84539928411414 9.780876838355084 1.181102362205365 52.80036230972928 7.275935704905464 1.181102362204456 52.37631498577321 7.540878624206926 1.181102362204456 52.3082016622102 7.548446771269141 1.181102362204229 52.240088338649 9.842866317729545 1.181102362205138 52.23997279441755 7.556014918332039 1.181102362204229 46.93949678916397 7.556014918331471 1.181102362204683 46.93938124493525 9.827730023604659 1.181102362204456 46.7879605315693 7.503326749469011 1.181102362204911 46.60626722995494 7.405460786691947 1.181102362204456 46.3402194189548 9.772362672909821 1.181102362204911 46.31093617817442 7.149530317327162 1.181102362204456 46.18221990599614 6.788223510237117 1.181102362204683 45.78460332464238 0.2214694027790074 1.181102362204229 45.78460332463965 9.60626062082531 1.181102362204229 45.27253296199615 9.329423867351466 1.181102362204229 45.27253296199524 0.4983061562519424 1.181102362204229 44.80400833101703 8.941852412489538 1.181102362205138 44.80400833101521 0.885877611114779 1.181102362204683 44.41310053651432 8.475732545796063 1.181102362204683 44.41310053651341 1.351051459425548 1.181102362204683 44.13388068329732 7.963250556830644 1.181102362203774 44.1338806832955 1.860695393242395 1.181102362204683 43.96634877136785 7.404406445593054 1.181102362204911 43.96634877136603 2.414809412565887 1.181102362204683 43.9105048007259 4.921490930979644 1.181102362204229 43.91050480072317 6.799200212084202 1.181102362204456 43.91050480072317 6.132856637895998 1.181102362204229 52.99724967758357 3.013624605855966 1.181102362204683 52.94235172532262 2.731610026576959 1.181102362204229 52.84539928411505 0.05536735069460974 1.181102362205138 52.77765786854343 2.491249142199308 1.181102362204001 52.53344069548984 2.326598614504064 1.181102362204456 52.240088338649 -1.13686837721616e-013 1.181102362204229 52.23997279441574 2.271715105272961 1.181102362204911 46.93949678916579 2.271715105272506 1.181102362204683 46.93938124493616 0 1.181102362204456 46.90154050962428 2.271715105272506 1.181102362204456 46.86369977430968 2.271715105273188 1.181102362204456 46.61761945054786 2.358286619571686 1.181102362204456 46.39424356797645 2.527645574637404 1.181102362204229 46.34021941895389 0.05536735069483711 1.181102362204683 46.23522582148962 2.76098714704483 1.181102362204456 46.18221990599795 3.039506513366632 1.181102362204683 43.91050480072317 3.013393517395343 1.181102362204229 43.91050480072045 3.611565995906631 1.181102362205593</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"428\" source=\"#ID9458\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9455\">\r\n\t\t\t\t\t<float_array count=\"1284\" id=\"ID9459\">1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -0.04605685949639728 -0.9989388197949508 3.898093798633345e-016 -0.190155248065521 -0.9817540331636738 2.26562622904697e-016 -0.1901552480653461 -0.9817540331637077 2.265626229048937e-016 -0.04605685949621522 -0.9989388197949591 3.898093798635509e-016 0.04605685949621522 0.9989388197949591 -3.898093798635509e-016 0.04605685949639728 0.9989388197949508 -3.898093798633345e-016 0.190155248065521 0.9817540331636738 -2.26562622904697e-016 0.1901552480653461 0.9817540331637077 -2.265626229048937e-016 -0.3830119234280288 -0.9237433986297071 4.346866859679884e-016 -0.3830119234280391 -0.9237433986297028 4.34686685968023e-016 0.3830119234280391 0.9237433986297028 -4.34686685968023e-016 0.3830119234280288 0.9237433986297071 -4.346866859679884e-016 -0.55915512044167 -0.8290630562773025 3.760997342898171e-016 -0.5591551204416493 -0.8290630562773164 3.760997342899131e-016 0.5591551204416493 0.8290630562773164 -3.760997342899131e-016 0.55915512044167 0.8290630562773025 -3.760997342898171e-016 -0.7043628531778019 -0.7098401024619745 -1.806906791096115e-016 -0.70436285317785 -0.7098401024619266 -1.806906791097462e-016 0.7043628531778019 0.7098401024619745 1.806906791096115e-016 0.70436285317785 0.7098401024619266 1.806906791097462e-016 -0.8253152997479246 -0.5646721668384175 -2.728524226525099e-017 -0.8253152997479756 -0.5646721668383429 -2.728524226494622e-017 0.8253152997479756 0.5646721668383429 2.728524226494622e-017 0.8253152997479246 0.5646721668384175 2.728524226525099e-017 -0.922067993983659 -0.3870279246655871 6.148163895534419e-016 -0.9220679939836363 -0.387027924665641 6.148163895532692e-016 0.9220679939836363 0.387027924665641 -6.148163895532692e-016 0.922067993983659 0.3870279246655871 -6.148163895534419e-016 -0.9813729497030396 -0.1921122942217787 1.018665614736651e-015 -0.9813729497030348 -0.1921122942218032 1.018665614736627e-015 0.9813729497030348 0.1921122942218032 -1.018665614736627e-015 0.9813729497030396 0.1921122942217787 -1.018665614736651e-015 -0.9989185077269243 -0.04649532149167976 3.943577409909057e-016 -0.998918507726924 -0.04649532149168496 3.943577409909859e-016 0.998918507726924 0.04649532149168496 -3.943577409909859e-016 0.9989185077269243 0.04649532149167976 -3.943577409909057e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -0.9989419087338329 0.04598981382009044 -4.158761787799909e-016 -0.9989419087338328 0.0459898138200914 -4.158761787799929e-016 0.9989419087338328 -0.0459898138200914 4.158761787799929e-016 0.9989419087338329 -0.04598981382009044 4.158761787799909e-016 -0.9816941673032104 0.1904640697949528 -1.354924537902141e-016 -0.9816941673032109 0.1904640697949494 -1.354924537902273e-016 0.9816941673032109 -0.1904640697949494 1.354924537902273e-016 0.9816941673032104 -0.1904640697949528 1.354924537902141e-016 -0.9229716790792528 0.3848678729351474 2.35644282483263e-016 -0.9229716790792643 0.3848678729351198 2.356442824832645e-016 0.9229716790792643 -0.3848678729351198 -2.356442824832645e-016 0.9229716790792528 -0.3848678729351474 -2.35644282483263e-016 -0.8262563137817331 0.5632943315317688 6.941475130774545e-016 -0.8262563137816276 0.5632943315319238 6.94147513078325e-016 0.8262563137816276 -0.5632943315319238 -6.94147513078325e-016 0.8262563137817331 -0.5632943315317688 -6.941475130774545e-016 -0.7047178484737521 0.7094876701131078 5.107966575877677e-016 -0.704717848473789 0.7094876701130709 5.107966575881381e-016 0.704717848473789 -0.7094876701130709 -5.107966575881381e-016 0.7047178484737521 -0.7094876701131078 -5.107966575877677e-016 -0.5591551204416221 0.8290630562773346 -3.810970110280874e-016 -0.5591551204416687 0.8290630562773032 -3.810970110279466e-016 0.5591551204416221 -0.8290630562773346 3.810970110280874e-016 0.5591551204416687 -0.8290630562773032 3.810970110279466e-016 -0.3830119234279217 0.9237433986297516 -5.471885327596223e-016 -0.3830119234281432 0.9237433986296597 -5.471885327598085e-016 0.3830119234281432 -0.9237433986296597 5.471885327598085e-016 0.3830119234279217 -0.9237433986297516 5.471885327596223e-016 -0.1901552480653795 0.9817540331637013 -5.138363435691617e-016 -0.1901552480654853 0.9817540331636807 -5.138363435691111e-016 0.1901552480653795 -0.9817540331637013 5.138363435691617e-016 0.1901552480654853 -0.9817540331636807 5.138363435691111e-016 -0.04748305487202507 0.9988720436071982 -3.347635144609845e-016 -0.04748305487206958 0.9988720436071961 -3.347635144612075e-016 0.04748305487206958 -0.9988720436071961 3.347635144612075e-016 0.04748305487202507 -0.9988720436071982 3.347635144609845e-016 0.0495786782827186 0.9987702211518617 -2.233538177411183e-016 0.04957867828273316 0.998770221151861 -2.233538177411494e-016 -0.0495786782827186 -0.9987702211518617 2.233538177411183e-016 -0.04957867828273316 -0.998770221151861 2.233538177411494e-016 0.1980220886885938 0.9801975578379119 -5.192075545603475e-016 0.1980220886886028 0.98019755783791 -5.192075545603647e-016 -0.1980220886886028 -0.98019755783791 5.192075545603647e-016 -0.1980220886885938 -0.9801975578379119 5.192075545603475e-016 0.3876359964845975 0.9218125266177464 -1.04182744586197e-015 0.3876359964848038 0.9218125266176594 -1.041827445862717e-015 -0.3876359964845975 -0.9218125266177464 1.04182744586197e-015 -0.3876359964848038 -0.9218125266176594 1.041827445862717e-015 0.5622915634017834 0.8269390532120117 -9.616506649057223e-016 0.5622915634017189 0.8269390532120555 -9.616506649060568e-016 -0.5622915634017189 -0.8269390532120555 9.616506649060568e-016 -0.5622915634017834 -0.8269390532120117 9.616506649057223e-016 0.7075043430320906 0.7067089956911047 -5.605743813186993e-016 0.7075043430321995 0.7067089956909958 -5.605743813187307e-016 -0.7075043430320906 -0.7067089956911047 5.605743813186993e-016 -0.7075043430321995 -0.7067089956909958 5.605743813187307e-016 0.8284329848266152 0.5600881981003217 -7.512225947570699e-016 0.8284329848266577 0.560088198100259 -7.512225947572006e-016 -0.8284329848266152 -0.5600881981003217 7.512225947570699e-016 -0.8284329848266577 -0.560088198100259 7.512225947572006e-016 0.9241024286718156 0.3821448695493008 -9.631769533138561e-016 0.9241024286718217 0.3821448695492859 -9.631769533138624e-016 -0.9241024286718156 -0.3821448695493008 9.631769533138561e-016 -0.9241024286718217 -0.3821448695492859 9.631769533138624e-016 0.9819888198866 0.1889390314829695 -9.720468941716807e-016 0.9819888198866067 0.1889390314829354 -9.720468941716699e-016 -0.9819888198866 -0.1889390314829695 9.720468941716807e-016 -0.9819888198866067 -0.1889390314829354 9.720468941716699e-016 0.9989596553336463 0.0456027084248582 -3.077580611344193e-016 0.998959655333647 0.04560270842484319 -3.077580611342118e-016 -0.9989596553336463 -0.0456027084248582 3.077580611344193e-016 -0.998959655333647 -0.04560270842484319 3.077580611342118e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 0.9989366445136068 -0.0461040155289759 6.604785721963939e-016 0.9989366445136062 -0.04610401552898859 6.604785721964871e-016 -0.9989366445136068 0.0461040155289759 -6.604785721963939e-016 -0.9989366445136062 0.04610401552898859 -6.604785721964871e-016 0.9816725484937047 -0.1905754641444571 3.208950231912199e-016 0.9816725484937026 -0.1905754641444677 3.208950231911456e-016 -0.9816725484937047 0.1905754641444571 -3.208950231912199e-016 -0.9816725484937026 0.1905754641444677 -3.208950231911456e-016 0.9232103774415899 -0.3842949374948326 -1.805195184126341e-016 0.9232103774415864 -0.3842949374948411 -1.805195184126181e-016 -0.9232103774415899 0.3842949374948326 1.805195184126341e-016 -0.9232103774415864 0.3842949374948411 1.805195184126181e-016 0.827500764650524 -0.56146458882355 4.34609058061348e-016 0.8275007646503769 -0.5614645888237667 4.346090580624997e-016 -0.827500764650524 0.56146458882355 -4.34609058061348e-016 -0.8275007646503769 0.5614645888237667 -4.346090580624997e-016 0.7067273522711721 -0.7074860066119886 3.666044958495605e-016 0.7067273522711687 -0.7074860066119919 3.666044958495342e-016 -0.7067273522711721 0.7074860066119886 -3.666044958495605e-016 -0.7067273522711687 0.7074860066119919 -3.666044958495342e-016 0.5600255262165405 -0.8284753526725386 1.202931396214764e-016 0.5600255262165125 -0.8284753526725573 1.202931396215629e-016 -0.5600255262165405 0.8284753526725386 -1.202931396214764e-016 -0.5600255262165125 0.8284753526725573 -1.202931396215629e-016 0.382082149899549 -0.9241283626900209 4.800312185471538e-016 0.3820821498996382 -0.924128362689984 4.80031218547057e-016 -0.3820821498996382 0.924128362689984 -4.80031218547057e-016 -0.382082149899549 0.9241283626900209 -4.800312185471538e-016 0.188899752034669 -0.9819963766130914 3.478293358566855e-016 0.1888997520348399 -0.9819963766130586 3.478293358570992e-016 -0.188899752034669 0.9819963766130914 -3.478293358566855e-016 -0.1888997520348399 0.9819963766130586 -3.478293358570992e-016 0.04559191406741246 -0.9989601480397852 2.781120553091774e-016 0.04559191406736269 -0.9989601480397875 2.781120553093592e-016 -0.04559191406736269 0.9989601480397875 -2.781120553093592e-016 -0.04559191406741246 0.9989601480397852 -2.781120553091774e-016 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 -1.123478296156288e-016 1.66533453693772e-016 1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1 1.123478296156288e-016 -1.66533453693772e-016 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"428\" source=\"#ID9459\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9457\">\r\n\t\t\t\t\t<float_array count=\"572\" id=\"ID9460\">-1.02349934783071 0.1259111150385921 -1.02349934783066 0.1135714192203131 -1.022473959655683 0.1371186378813571 -0.8141916439142362 0.1371186378813444 -0.813157496309722 0.113571419220292 -0.8131574963096884 0.1259111150385963 -0.8131574963097389 0.05580358365548195 -0.8141916439141856 0.04471869282528999 -0.8172940867276944 0.03445732209709191 -0.817294086727745 0.1474676029042649 -0.8224648247502147 0.02501947147083928 -0.8224648247502315 0.1569580101073408 -0.8297038579817463 0.01640514094657419 -0.8297038579817799 0.165589859490547 -0.8383802400369488 0.009227891782447588 -0.838380240036932 0.1727671086546673 -0.8478630245304143 0.1778937152004687 -0.8478630245304143 0.004101285236637759 -0.8581522114621091 0.1809696791279596 -0.8552262945555008 0.1257078427821751 -0.8576099292254185 0.1323987095801389 -0.8630790227769601 0.137138162716507 -0.869247800832151 0.1819950004371254 -0.8664437135475964 0.1389504953605372 -0.8692499405400398 0.1399262021913235 -0.9674090433083317 0.1822753021801767 -0.9674069036003419 0.139926202191332 -0.9686704011520237 0.1397860513198031 -0.9786185052613728 0.1811273488584275 -0.9699317589957496 0.1396459004482616 -0.9777844872172088 0.1347395500908356 -0.9805190339929544 0.1307088752169576 -0.9889690081994794 0.1779637906362415 -0.9814305495849145 0.1261871373657165 -0.988969008199412 0.004101285236648285 -0.9984605521223143 0.009227891782447588 -0.9984605521223143 0.1727846275136168 -1.007093137030181 0.1655898594905554 -1.007093137030147 0.01640514094656156 -1.014270854255385 0.02501947147083506 -1.014270854255402 0.1569580101073429 -1.019397795130586 0.0344573220970856 -1.019397795130536 0.1474676029042649 -1.02247395965565 0.04471869282528368 -1.023499347830761 0.05580358365547353 -1.02349934783066 0.0911387209440738 -1.023499347830744 0.06688085177603607 -0.8552262945555345 0.05628715765494184 -0.8581522114621428 0.00102532130916365 -0.8562078855831411 0.05112939161193708 -0.8591526586661799 0.04680825138218888 -0.8692478008320836 1.473718266761689e-014 -0.8632892490842702 0.04367197443650639 -0.8678462921168122 0.04206879824578504 -0.8685470464744732 0.04206879824579346 -0.8692499405399893 0.04206879824579766 -0.9674090433083317 -4.210623619319113e-015 -0.967406903600325 0.04206879824579346 -0.9728414943609229 0.04308515952786778 -0.9786185052614234 0.001025321309167861 -0.9773640346026897 0.04613424337406547 -0.9804139208393247 0.0505853708625447 -0.9814305495848809 0.0558078630714131 -0.8131574963096884 0.09113872094405484 -0.8131574963096715 0.06688085177604661 0.8655600443198517 2.677105084994844e-017 0.8544171817049717 0.02187226596675342 0.8544171817050053 -4.183852568469166e-015 0.86556004431992 0.02187226596674921 0.8219040404142967 0.02187226596675342 0.8111649100119558 2.867488644268209e-017 0.8219040404143289 -4.181948732876429e-015 0.8111649100119527 0.021872265966745 0.743894596535015 0.02187226596674528 0.7331147404865819 3.045552404366583e-016 0.74389459653502 3.045552404366599e-016 0.7331147404865839 0.02187226596674528 0.6401187208357658 0 0.6288585027592167 0.02187226596675339 0.6288585027592011 -1.263187085795734e-014 0.6401187208357686 0.02187226596674497 0.5099769827214417 0.02187226596675316 0.5212291066324234 -1.286428115645477e-014 0.5212291066324375 0.02187226596675316 0.5099769827214231 -4.443033917816547e-015 0.3732403254425621 0.02187226596675362 0.3624788405942123 -1.240776570446238e-014 0.3732403254425496 -3.986518465824157e-015 0.3624788405942215 0.02187226596675362 0.1928251510214573 0.02187226596675412 0.2035452667219849 -1.190501218613036e-014 0.203545266721995 0.02187226596675412 0.1928251510214613 -3.483764947492135e-015 0.03110497656462539 0.0218722659667543 0.01997195065138135 -3.30642734908396e-015 0.03110497656462959 -3.306427349084025e-015 0.01997195065138924 0.02187226596674588 -0.06688085177604869 0.02187226596676997 -0.05580358365548192 -4.472312863904427e-015 -0.05580358365546929 0.02187226596674471 -0.06688085177604658 -4.472312863904405e-015 -0.09113872094405483 -4.472312863904411e-015 -0.09113872094406746 0.02187226596674471 -0.113571419220292 8.159557994052916e-015 -0.1135714192202962 0.02187226596674471 -0.1259111150385963 -4.472312863904411e-015 -0.1259111150385963 0.02187226596674892 -0.2113484135642818 0.0218722659667572 -0.200093280089335 -4.616924138927035e-015 -0.200093280089335 0.02187226596674877 -0.2113484135642749 -4.616924138927058e-015 -0.365144591922172 0.02187226596675778 -0.3759485832428208 1.772911012897927e-016 -0.3651445919221689 -4.033332518029317e-015 -0.375948583242822 0.02187226596673673 -0.5205168373600402 0.0218722659667367 -0.5313244439673071 -8.272834717713566e-015 -0.5205168373600426 1.484125209246671e-016 -0.5313244439673177 0.02187226596675354 -0.6600304573730883 0.02187226596676242 -0.6487649158458441 -7.811413664396587e-015 -0.6487649158458608 0.021872265966754 -0.6600304573730775 1.324170443219899e-014 -0.7448618923812503 1.257781519805909e-014 -0.7561221104577914 0.02187226596674492 -0.7561221104577722 -4.264679279217362e-015 -0.7448618923812633 0.02187226596676176 -0.8196666161659607 0.02187226596674482 -0.8304464722143851 4.056702387447542e-015 -0.8196666161659362 -4.364544851190671e-015 -0.8304464722143405 0.02187226596674482 -0.8632929720944411 4.176968730429786e-015 -0.8740321024968027 0.02187226596675757 -0.8740321024967866 -4.244278508208431e-015 -0.8632929720943926 0.02187226596674494 -0.8711636281575674 0.02187226596675766 -0.8823064907724991 4.267098046074805e-015 -0.8711636281575506 -4.154149192563419e-015 -0.8823064907724821 0.02187226596674924 -0.8697639458214307 4.230553561666354e-015 -0.9679255885008978 0.02187226596676183 -0.9679255885009146 -1.26119409156101e-014 -0.8697639458214138 0.0218722659667492 -0.9438061006954515 0.02187226596676191 -0.955074189890429 8.515027801855024e-015 -0.9438061006954681 -1.253809029474053e-014 -0.955074189890429 0.02187226596676612 -0.8829378716280552 8.742011989875021e-015 -0.8937610417595943 0.02187226596675792 -0.8937610417596252 -3.889858868082296e-015 -0.8829378716280552 0.02187226596676635 -0.7828930753691461 0.02187226596675847 -0.7937057131921039 5.076465344404924e-015 -0.7828930753691737 -3.344781894233246e-015 -0.7937057131921009 0.02187226596675426 -0.6563746310346876 4.627206148842653e-015 -0.6676123447299494 0.02187226596674539 -0.6676123447299726 -1.221528832843378e-014 -0.6563746310346836 0.02187226596675381 -0.5278091203898231 -7.913476362435158e-015 -0.5165828811112352 0.02187226596674548 -0.5278091203898355 0.02187226596674969 -0.5165828811112534 -1.212409998175426e-014 -0.3439888029549412 -7.533367932857985e-015 -0.3547755240330634 0.02187226596674586 -0.3547755240330702 -7.533367932858023e-015 -0.343988802954951 0.02187226596675007 -0.1490948035869513 -7.404216247432543e-015 -0.1598912782537512 0.02187226596676283 -0.1598912782537648 -7.404216247432498e-015 -0.14909480358694 0.02187226596674599 0.04339018592255755 -7.455782977240293e-015 0.03213585390415135 0.02187226596675857 0.03213585390414869 -1.166640659655941e-014 0.04339018592256482 0.02187226596676278 0.1135714192203131 -3.2938117447465e-016 0.1259111150385963 0.02187226596675727 0.113571419220292 0.02187226596674885 0.1259111150385921 -1.2961252032432e-014 0.09113872094407376 8.091866064163573e-015 0.09113872094406533 0.02187226596673622 0.06688085177603816 0.02187226596674464 0.06688085177603605 8.091866064163547e-015 0.0558035836554777 0.02187226596674885 0.05580358365547349 -3.293811744746825e-016 0.1498408592928927 -1.01171032728088e-015 0.1387086436272337 0.02187226596674817 0.1387086436272274 -1.011710327280805e-015 0.1498408592928938 0.02187226596674817 0.3257317711306846 -8.074133886042029e-015 0.3364443113246307 0.02187226596674953 0.3257317711306834 0.02187226596676637 0.3364443113246246 3.47113352596183e-016 0.5168837860067661 -8.421247238638224e-015 0.5061432763735806 0.02187226596674497 0.5061432763735492 8.421247238638224e-015 0.5168837860067685 0.02187226596676602 0.6572814762988459 -6.601773250240974e-016 0.6684942509308349 0.02187226596674431 0.6572814762988428 0.02187226596673589 0.6684942509307961 7.761069913614131e-015 0.7848890047994546 8.511850585462863e-017 0.7736624992098079 0.02187226596675348 0.7736624992097924 -4.125505113464485e-015 0.7848890047994519 0.02187226596673664 0.882890840155994 0.02187226596675322 0.8721032778402442 4.036080703916307e-015 0.882890840155977 -4.385166534721916e-015 0.8721032778402571 0.02187226596675322 0.9491614025857595 4.049306844234273e-015 0.9383635108863019 0.02187226596676165 0.9383635108863364 -1.700381125236129e-014 0.9491614025857745 0.02187226596675323 0.9746435436257672 0.0218722659667618 0.9633872866517957 4.200793222566854e-015 0.9746435436258015 -1.685232487402871e-014 0.9633872866517792 0.02187226596674496 0.9674090433083317 4.21062361931911e-015 0.869247800832151 0.02187226596674918 0.8692478008320836 6.552747083518781e-030 0.9674090433083148 0.02187226596674497 0.8131574963096884 0.05580358365546932 0.8131574963097389 0.09113872094406747 0.8131574963096379 0.06688085177604872 0.8141916439141856 0.04471869282529421 0.8478630245304143 0.004101285236648281 0.8552262945555176 0.05628715765493763 0.8552262945554839 0.1257078427821688 0.8581522114621091 0.001025321309163647 0.8562078855831411 0.05112939161194129 0.8591526586662305 0.04680825138217415 0.869247800832151 -3.642463991551473e-018 0.8632892490842197 0.0436719744365127 0.8678462921168458 0.04206879824579977 0.8685470464745237 0.04206879824578714 0.8692499405401071 0.04206879824578714 0.9674090433083148 -2.108954273651107e-015 0.9674069036002914 0.04206879824579556 0.9728414943609229 0.04308515952785304 0.9786185052613897 0.001025321309159436 0.9773640346026561 0.04613424337406126 0.9804139208393078 0.05058537086253628 0.9889690081994289 0.00410128523664407 0.9814305495848809 0.05580786307140678 0.9814305495848977 0.1261871373657186 0.8131574963096884 0.1259111150385963 0.8131574963096884 0.1135714192202963 0.8141916439142194 0.1371186378813528 0.8172940867276944 0.03445732209708138 0.8172940867277281 0.1474676029042712 0.8224648247502483 0.02501947147084348 0.8224648247502652 0.1569580101073345 0.8297038579817632 0.01640514094656998 0.8297038579817968 0.165589859490547 0.8383802400369488 0.009227891782443374 0.8383802400369657 0.1727671086546568 0.8478630245303638 0.1778937152004687 0.858152211462126 0.1809696791279596 0.8576099292254521 0.1323987095801326 0.8630790227769433 0.1371381627165175 0.8692478008321342 0.1819950004371233 0.8664437135475795 0.1389504953605372 0.8692499405400734 0.1399262021913235 0.9674090433083148 0.1822753021801767 0.967406903600325 0.1399262021913341 0.9686704011520406 0.1397860513197989 0.9786185052613728 0.1811273488584275 0.9699317589958001 0.1396459004482764 0.9777844872172088 0.1347395500908419 0.9805190339929544 0.1307088752169387 0.9889690081994457 0.1779637906362373 0.9984605521223312 0.009227891782451795 0.9984605521223143 0.1727846275136231 1.007093137030147 0.1655898594905512 1.007093137030147 0.01640514094655735 1.014270854255436 0.02501947147084348 1.014270854255419 0.1569580101073408 1.019397795130553 0.1474676029042817 1.019397795130603 0.03445732209707927 1.02247395965565 0.1371186378813613 1.02247395965565 0.04471869282528999 1.023499347830727 0.05580358365547774 1.02349934783066 0.09113872094406537 1.02349934783071 0.06688085177603818 1.023499347830676 0.113571419220292 1.023499347830727 0.1259111150385963</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"286\" source=\"#ID9460\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9456\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9454\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9455\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"214\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9456\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9457\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 4 4 5 5 4 4 3 3 6 6 6 6 3 3 7 7 7 7 3 3 8 8 8 8 3 3 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 14 14 16 16 17 17 17 17 16 16 18 18 17 17 18 18 19 19 19 19 18 18 20 20 20 20 18 18 21 21 21 21 18 18 22 22 21 21 22 22 23 23 23 23 22 22 24 24 24 24 22 22 25 25 24 24 25 25 26 26 26 26 25 25 27 27 27 27 25 25 28 28 27 27 28 28 29 29 29 29 28 28 30 30 30 30 28 28 31 31 31 31 28 28 32 32 31 31 32 32 33 33 33 33 32 32 34 34 34 34 32 32 35 35 35 35 32 32 36 36 35 35 36 36 37 37 35 35 37 37 38 38 38 38 37 37 39 39 39 39 37 37 40 40 39 39 40 40 41 41 41 41 40 40 42 42 41 41 42 42 2 2 41 41 2 2 43 43 43 43 2 2 44 44 44 44 2 2 45 45 45 45 2 2 1 1 44 44 45 45 46 46 17 17 47 47 48 48 47 47 17 17 19 19 48 48 47 47 49 49 48 48 49 49 50 50 48 48 50 50 51 51 51 51 50 50 52 52 51 51 52 52 53 53 51 51 53 53 54 54 51 51 54 54 55 55 51 51 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 56 56 58 58 59 59 59 59 58 58 60 60 59 59 60 60 61 61 59 59 61 61 34 34 34 34 61 61 62 62 34 34 62 62 33 33 63 63 6 6 64 64 6 6 63 63 4 4 130 65 131 66 132 67 131 66 130 65 133 68 131 69 138 70 132 71 138 70 131 69 139 72 139 73 142 74 138 75 142 74 139 73 143 76 142 77 146 78 147 79 146 78 142 77 143 80 150 81 147 82 146 83 147 82 150 81 151 84 150 85 154 86 151 87 154 86 150 85 155 88 158 89 154 90 155 91 154 90 158 89 159 92 158 93 162 94 159 95 162 94 158 93 163 96 166 97 162 98 163 99 162 98 166 97 167 100 166 97 170 101 167 100 170 101 166 97 171 102 171 102 174 103 170 101 174 103 171 102 175 104 175 104 178 105 174 103 178 105 175 104 179 106 182 107 178 108 179 109 178 108 182 107 183 110 182 111 186 112 183 113 186 112 182 111 187 114 187 115 190 116 186 117 190 116 187 115 191 118 194 119 190 120 191 121 190 120 194 119 195 122 195 123 198 124 199 125 198 124 195 123 194 126 198 127 202 128 199 129 202 128 198 127 203 130 202 131 206 132 207 133 206 132 202 131 203 134 206 135 210 136 207 137 210 136 206 135 211 138 210 139 214 140 215 141 214 140 210 139 211 142 214 143 218 144 215 145 218 144 214 143 219 146 218 147 222 148 223 149 222 148 218 147 219 150 222 151 226 152 223 153 226 152 222 151 227 154 226 155 230 156 231 157 230 156 226 155 227 158 234 159 230 160 235 161 230 160 234 159 231 162 234 163 238 164 239 165 238 164 234 163 235 166 239 167 242 168 243 169 242 168 239 167 238 170 243 171 246 172 247 173 246 172 243 171 242 174 250 175 246 176 251 177 246 176 250 175 247 178 254 179 251 177 255 180 251 177 254 179 250 175 254 179 258 181 259 182 258 181 254 179 255 180 259 182 262 183 263 184 262 183 259 182 258 181 263 185 266 186 267 187 266 186 263 185 262 188 270 189 266 190 271 191 266 190 270 189 267 192 270 193 274 194 275 195 274 194 270 193 271 196 278 197 274 198 279 199 274 198 278 197 275 200 278 201 282 202 283 203 282 202 278 201 279 204 282 205 286 206 283 207 286 206 282 205 287 208 286 209 290 210 291 211 290 210 286 209 287 212 290 213 294 214 291 215 294 214 290 213 295 216 294 217 133 218 130 219 133 218 294 217 295 220 298 221 299 222 300 223 299 222 298 221 301 224 302 225 303 226 304 227 303 226 302 225 305 228 303 226 305 228 306 229 306 229 305 228 307 230 307 230 305 228 308 231 307 230 308 231 309 232 309 232 308 231 310 233 310 233 308 231 311 234 311 234 308 231 312 235 312 235 308 231 313 236 312 235 313 236 314 237 314 237 313 236 315 238 315 238 313 236 316 239 315 238 316 239 317 240 317 240 316 239 318 241 318 241 316 239 319 242 318 241 319 242 320 243 320 243 319 242 321 244 299 222 322 245 323 246 322 245 299 222 324 247 324 247 299 222 301 224 324 247 301 224 325 248 324 247 325 248 326 249 326 249 325 248 327 250 326 249 327 250 328 251 328 251 327 250 329 252 328 251 329 252 330 253 330 253 329 252 331 254 330 253 331 254 332 255 332 255 331 254 302 225 332 255 302 225 333 256 333 256 302 225 334 257 334 257 302 225 304 227 334 257 304 227 335 258 334 257 335 258 336 259 334 257 336 259 337 260 337 260 336 259 338 261 337 260 338 261 339 262 337 260 339 262 340 263 340 263 339 262 341 264 340 263 341 264 342 265 340 263 342 265 343 266 343 266 342 265 344 267 343 266 344 267 345 268 343 266 345 268 346 269 343 266 346 269 347 270 347 270 346 269 321 244 347 270 321 244 319 242 347 270 319 242 348 271 347 270 348 271 349 272 349 272 348 271 350 273 350 273 348 271 351 274 350 273 351 274 352 275 350 273 352 275 353 276 353 276 352 275 354 277 354 277 352 275 355 278 354 277 355 278 356 279 356 279 355 278 357 280 356 279 357 280 358 281 356 279 358 281 359 282 359 282 358 281 360 283 356 279 361 284 362 285 361 284 356 279 359 282</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"214\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9456\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9457\" />\r\n\t\t\t\t\t<p>65 4 66 63 67 6 68 64 67 6 66 63 69 33 70 62 71 34 70 62 72 61 71 34 71 34 72 61 73 59 72 61 74 60 73 59 74 60 75 58 73 59 73 59 75 58 76 56 75 58 77 57 76 56 77 57 78 55 76 56 76 56 78 55 79 51 78 55 80 54 79 51 80 54 81 53 79 51 81 53 82 52 79 51 82 52 83 50 79 51 79 51 83 50 84 48 83 50 85 49 84 48 85 49 86 47 84 48 87 19 88 17 86 47 84 48 86 47 88 17 89 46 90 45 91 44 92 1 93 2 90 45 90 45 93 2 91 44 91 44 93 2 94 43 94 43 93 2 95 41 93 2 96 42 95 41 96 42 97 40 95 41 95 41 97 40 98 39 97 40 99 37 98 39 98 39 99 37 100 38 100 38 99 37 101 35 99 37 102 36 101 35 102 36 103 32 101 35 101 35 103 32 71 34 71 34 103 32 69 33 69 33 103 32 104 31 103 32 105 28 104 31 104 31 105 28 106 30 106 30 105 28 107 29 107 29 105 28 108 27 105 28 109 25 108 27 108 27 109 25 110 26 110 26 109 25 111 24 109 25 112 22 111 24 111 24 112 22 113 23 113 23 112 22 114 21 112 22 115 18 114 21 114 21 115 18 116 20 116 20 115 18 87 19 87 19 115 18 88 17 115 18 117 16 88 17 88 17 117 16 118 14 117 16 119 15 118 14 119 15 120 13 118 14 118 14 120 13 121 12 120 13 122 11 121 12 121 12 122 11 123 10 122 11 124 9 123 10 123 10 124 9 125 8 124 9 126 3 125 8 125 8 126 3 127 7 127 7 126 3 67 6 67 6 126 3 65 4 128 5 65 4 126 3 93 2 92 1 129 0 134 68 135 65 136 66 137 67 136 66 135 65 140 72 136 69 141 70 137 71 141 70 136 69 144 76 140 73 145 74 141 75 145 74 140 73 144 80 145 77 148 78 149 79 148 78 145 77 152 84 153 81 149 82 148 83 149 82 153 81 156 88 153 85 157 86 152 87 157 86 153 85 160 92 161 89 157 90 156 91 157 90 161 89 164 96 161 93 165 94 160 95 165 94 161 93 168 100 169 97 165 98 164 99 165 98 169 97 172 102 169 97 173 101 168 100 173 101 169 97 176 104 172 102 177 103 173 101 177 103 172 102 180 106 176 104 181 105 177 103 181 105 176 104 184 110 185 107 181 108 180 109 181 108 185 107 188 114 185 111 189 112 184 113 189 112 185 111 192 118 188 115 193 116 189 117 193 116 188 115 196 122 197 119 193 120 192 121 193 120 197 119 197 126 196 123 200 124 201 125 200 124 196 123 204 130 200 127 205 128 201 129 205 128 200 127 204 134 205 131 208 132 209 133 208 132 205 131 212 138 208 135 213 136 209 137 213 136 208 135 212 142 213 139 216 140 217 141 216 140 213 139 220 146 216 143 221 144 217 145 221 144 216 143 220 150 221 147 224 148 225 149 224 148 221 147 228 154 224 151 229 152 225 153 229 152 224 151 228 158 229 155 232 156 233 157 232 156 229 155 233 162 236 159 232 160 237 161 232 160 236 159 237 166 236 163 240 164 241 165 240 164 236 163 240 170 241 167 244 168 245 169 244 168 241 167 244 174 245 171 248 172 249 173 248 172 245 171 249 178 252 175 248 176 253 177 248 176 252 175 252 175 256 179 253 177 257 180 253 177 256 179 257 180 256 179 260 181 261 182 260 181 256 179 260 181 261 182 264 183 265 184 264 183 261 182 264 188 265 185 268 186 269 187 268 186 265 185 269 192 272 189 268 190 273 191 268 190 272 189 273 196 272 193 276 194 277 195 276 194 272 193 277 200 280 197 276 198 281 199 276 198 280 197 281 204 280 201 284 202 285 203 284 202 280 201 288 208 284 205 289 206 285 207 289 206 284 205 288 212 289 209 292 210 293 211 292 210 289 209 296 216 292 213 297 214 293 215 297 214 292 213 296 220 297 217 134 218 135 219 134 218 297 217 363 282 364 279 365 284 366 285 365 284 364 279 367 283 368 281 363 282 363 282 368 281 364 279 368 281 369 280 364 279 369 280 370 278 364 279 364 279 370 278 371 277 370 278 372 275 371 277 371 277 372 275 373 276 373 276 372 275 374 273 372 275 375 274 374 273 375 274 376 271 374 273 374 273 376 271 377 272 377 272 376 271 378 270 376 271 379 242 378 270 379 242 380 244 378 270 380 244 381 269 378 270 378 270 381 269 382 266 381 269 383 268 382 266 383 268 384 267 382 266 384 267 385 265 382 266 382 266 385 265 386 263 385 265 387 264 386 263 387 264 388 262 386 263 386 263 388 262 389 260 388 262 390 261 389 260 390 261 391 259 389 260 389 260 391 259 392 257 391 259 393 258 392 257 393 258 394 227 392 257 394 227 395 225 392 257 392 257 395 225 396 256 396 256 395 225 397 255 395 225 398 254 397 255 397 255 398 254 399 253 398 254 400 252 399 253 399 253 400 252 401 251 400 252 402 250 401 251 401 251 402 250 403 249 402 250 404 248 403 249 403 249 404 248 405 247 404 248 406 224 405 247 406 224 407 222 405 247 405 247 407 222 408 245 409 246 408 245 407 222 380 244 379 242 410 243 410 243 379 242 411 241 379 242 412 239 411 241 411 241 412 239 413 240 413 240 412 239 414 238 412 239 415 236 414 238 414 238 415 236 416 237 416 237 415 236 417 235 415 236 418 231 417 235 417 235 418 231 419 234 419 234 418 231 420 233 420 233 418 231 421 232 421 232 418 231 422 230 418 231 423 228 422 230 422 230 423 228 424 229 424 229 423 228 425 226 423 228 395 225 425 226 394 227 425 226 395 225 406 224 426 221 407 222 427 223 407 222 426 221</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9461\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9462\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID9466\">8.277660849584208 3.311237656178378 1.181102362204229 8.33258768790347 3.029107532670764 2.273736754432321e-013 8.33258768790256 3.029107532670764 1.181102362204683 8.277660849583299 3.311237656179173 0 8.277660849583299 3.311237656179173 0 8.277660849584208 3.311237656178378 1.181102362204229 8.33258768790347 3.029107532670764 2.273736754432321e-013 8.33258768790256 3.029107532670764 1.181102362204683 8.33258768790256 3.013971238545878 1.181102362204683 8.33258768790347 3.013971238545082 0 8.33258768790256 3.013971238545878 1.181102362204683 8.33258768790347 3.013971238545082 0 8.112880334630972 3.551714084785999 1.181102362204683 8.277660849583299 3.311237656179173 0 8.277660849584208 3.311237656178378 1.181102362204229 8.112880334631882 3.551714084786227 -6.821210263296962e-013 8.112880334631882 3.551714084786227 -6.821210263296962e-013 8.112880334630972 3.551714084785999 1.181102362204683 8.277660849583299 3.311237656179173 0 8.277660849584208 3.311237656178378 1.181102362204229 8.277660849586027 2.729949078271602 1.181102362205365 8.277660849586027 2.729949078271147 -2.273736754432321e-013 8.277660849586027 2.729949078271602 1.181102362205365 8.277660849586027 2.729949078271147 -2.273736754432321e-013 8.112880334630972 3.551714084785999 1.181102362204683 7.868547617348668 3.716451270653806 -2.273736754432321e-013 8.112880334631882 3.551714084786227 -6.821210263296962e-013 7.868547617351396 3.71645127065392 1.181102362204683 7.868547617351396 3.71645127065392 1.181102362204683 8.112880334630972 3.551714084785999 1.181102362204683 7.868547617348668 3.716451270653806 -2.273736754432321e-013 8.112880334631882 3.551714084786227 -6.821210263296962e-013 8.277660849586027 2.729949078271602 1.181102362205365 8.112880334628244 2.483796539367518 -4.547473508864641e-013 8.112880334630063 2.483796539367177 1.181102362204456 8.277660849586027 2.729949078271147 -2.273736754432321e-013 8.277660849586027 2.729949078271147 -2.273736754432321e-013 8.277660849586027 2.729949078271602 1.181102362205365 8.112880334628244 2.483796539367518 -4.547473508864641e-013 8.112880334630063 2.483796539367177 1.181102362204456 7.868547617351396 3.71645127065392 1.181102362204683 7.57496417204311 3.771363665942886 2.273736754432321e-013 7.868547617348668 3.716451270653806 -2.273736754432321e-013 7.574964172044929 3.771363665943454 1.181102362204911 7.574964172044929 3.771363665943454 1.181102362204911 7.868547617351396 3.71645127065392 1.181102362204683 7.57496417204311 3.771363665942886 2.273736754432321e-013 7.868547617348668 3.716451270653806 -2.273736754432321e-013 7.868547617347758 2.317167316734185 -2.273736754432321e-013 8.112880334630063 2.483796539367177 1.181102362204456 8.112880334628244 2.483796539367518 -4.547473508864641e-013 7.868547617346849 2.31716731673373 1.181102362204456 7.868547617346849 2.31716731673373 1.181102362204456 7.868547617347758 2.317167316734185 -2.273736754432321e-013 8.112880334630063 2.483796539367177 1.181102362204456 8.112880334628244 2.483796539367518 -4.547473508864641e-013 2.256578811147847 3.771363665943568 1.181102362204456 2.256578811147847 3.771363665942772 -6.821210263296962e-013 2.256578811147847 3.771363665943568 1.181102362204456 2.256578811147847 3.771363665942772 -6.821210263296962e-013 7.57496417204402 2.271715105272847 9.094947017729282e-013 7.868547617346849 2.31716731673373 1.181102362204456 7.868547617347758 2.317167316734185 -2.273736754432321e-013 7.57496417204402 2.271715105272392 1.181102362204229 7.57496417204402 2.271715105272392 1.181102362204229 7.57496417204402 2.271715105272847 9.094947017729282e-013 7.868547617346849 2.31716731673373 1.181102362204456 7.868547617347758 2.317167316734185 -2.273736754432321e-013 2.256578811147847 3.771363665942772 -6.821210263296962e-013 2.27171510527387 2.271715105272961 1.181102362204683 2.271715105272961 2.271715105272961 -4.547473508864641e-013 2.256578811147847 3.771363665943568 1.181102362204456 2.256578811147847 3.771363665943568 1.181102362204456 2.256578811147847 3.771363665942772 -6.821210263296962e-013 2.27171510527387 2.271715105272961 1.181102362204683 2.271715105272961 2.271715105272961 -4.547473508864641e-013 2.27171510527387 2.271715105272961 1.181102362204683 2.271715105272961 2.271715105272961 -4.547473508864641e-013 2.27171510527387 2.271715105272961 1.181102362204683 2.271715105272961 2.271715105272961 -4.547473508864641e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID9466\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9463\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID9467\">-0.9815709045026908 -0.1910982978306441 7.072514628064224e-016 -0.9953820634567561 -0.09599243589247167 1.936104892694617e-016 -0.9953820634567179 -0.0959924358928671 1.936104892715913e-016 -0.9815709045026908 -0.1910982978306441 7.072514628064224e-016 0.9815709045026908 0.1910982978306441 -7.072514628064224e-016 0.9815709045026908 0.1910982978306441 -7.072514628064224e-016 0.9953820634567561 0.09599243589247167 -1.936104892694617e-016 0.9953820634567179 0.0959924358928671 -1.936104892715913e-016 -0.995441857626281 0.09537037320645624 -9.058802608188533e-017 -0.9954418576262351 0.09537037320693674 -9.058802608071293e-017 0.995441857626281 -0.09537037320645624 9.058802608188533e-017 0.9954418576262351 -0.09537037320693674 9.058802608071293e-017 -0.8249169709978177 -0.5652539172440873 1.262978083326954e-015 -0.8249169709978177 -0.5652539172440873 1.262978083326954e-015 -0.8249169709978177 -0.5652539172440873 1.262978083326954e-015 -0.8249169709978177 -0.5652539172440873 1.262978083326954e-015 0.8249169709978177 0.5652539172440873 -1.262978083326954e-015 0.8249169709978177 0.5652539172440873 -1.262978083326954e-015 0.8249169709978177 0.5652539172440873 -1.262978083326954e-015 0.8249169709978177 0.5652539172440873 -1.262978083326954e-015 -0.9818089838289362 0.1898713229342231 1.414684202464384e-016 -0.9818089838289362 0.1898713229342231 1.414684202464384e-016 0.9818089838289362 -0.1898713229342231 -1.414684202464384e-016 0.9818089838289362 -0.1898713229342231 -1.414684202464384e-016 -0.5590358952457062 -0.829143454311033 -1.296323316483165e-016 -0.5590358952457062 -0.829143454311033 -1.296323316483165e-016 -0.5590358952457062 -0.829143454311033 -1.296323316483165e-016 -0.5590358952457062 -0.829143454311033 -1.296323316483165e-016 0.5590358952457062 0.829143454311033 1.296323316483165e-016 0.5590358952457062 0.829143454311033 1.296323316483165e-016 0.5590358952457062 0.829143454311033 1.296323316483165e-016 0.5590358952457062 0.829143454311033 1.296323316483165e-016 -0.8309910974061814 0.5562857143875531 8.944194298716184e-016 -0.8309910974061814 0.5562857143875531 8.944194298716184e-016 -0.8309910974061814 0.5562857143875531 8.944194298716184e-016 -0.8309910974061814 0.5562857143875531 8.944194298716184e-016 0.8309910974061814 -0.5562857143875531 -8.944194298716184e-016 0.8309910974061814 -0.5562857143875531 -8.944194298716184e-016 0.8309910974061814 -0.5562857143875531 -8.944194298716184e-016 0.8309910974061814 -0.5562857143875531 -8.944194298716184e-016 -0.1838534860707299 -0.9829536589583663 1.131828313599803e-016 -0.09232101884624203 -0.9957292952801938 2.798310965900626e-016 -0.1838534860707299 -0.9829536589583663 1.131828313599803e-016 -0.09232101884635677 -0.9957292952801834 2.798310965898563e-016 0.09232101884635677 0.9957292952801834 -2.798310965898563e-016 0.1838534860707299 0.9829536589583663 -1.131828313599803e-016 0.09232101884624203 0.9957292952801938 -2.798310965900626e-016 0.1838534860707299 0.9829536589583663 -1.131828313599803e-016 -0.5634262285701985 0.8261663784971901 3.897133018125607e-016 -0.5634262285701985 0.8261663784971901 3.897133018125607e-016 -0.5634262285701985 0.8261663784971901 3.897133018125607e-016 -0.5634262285701985 0.8261663784971901 3.897133018125607e-016 0.5634262285701985 -0.8261663784971901 -3.897133018125607e-016 0.5634262285701985 -0.8261663784971901 -3.897133018125607e-016 0.5634262285701985 -0.8261663784971901 -3.897133018125607e-016 0.5634262285701985 -0.8261663784971901 -3.897133018125607e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -0.07672415712763096 0.9970523575585459 -2.791288139652458e-016 -0.1529960034914179 0.9882268074261363 -1.125228742034635e-016 -0.1529960034914179 0.9882268074261363 -1.125228742034635e-016 -0.07672415712755752 0.9970523575585516 -2.79128813965405e-016 0.07672415712755752 -0.9970523575585516 2.79128813965405e-016 0.07672415712763096 -0.9970523575585459 2.791288139652458e-016 0.1529960034914179 -0.9882268074261363 1.125228742034635e-016 0.1529960034914179 -0.9882268074261363 1.125228742034635e-016 0.9999490672705796 0.01009271344575415 1.167079793562844e-015 0.9999490672705796 0.01009271344575415 1.167079793562844e-015 0.9999490672705796 0.01009271344575415 1.167079793562844e-015 0.9999490672705796 0.01009271344575415 1.167079793562844e-015 -0.9999490672705796 -0.01009271344575415 -1.167079793562844e-015 -0.9999490672705796 -0.01009271344575415 -1.167079793562844e-015 -0.9999490672705796 -0.01009271344575415 -1.167079793562844e-015 -0.9999490672705796 -0.01009271344575415 -1.167079793562844e-015 2.104347478334897e-017 1 -4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID9467\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9465\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID9468\">-0.03089569708932361 0.02187226596674509 -0.02557297216660409 4.325327795453942e-015 -0.02557297216660731 0.02187226596675351 -0.03089569708934129 1.147041761348012e-016 -0.05581428219529402 0.02187226596675334 -0.05609458393834747 4.160964691748498e-015 -0.05581428219527929 -4.965892757061417e-017 -0.05609458393834747 0.02187226596675334 0.03066607712242085 0.02187226596675359 0.03606452006029152 2.034815089963462e-016 0.0360645200603132 0.02187226596674517 0.03066607712242691 -1.242838934896095e-014 -0.07874035086582049 0.02187226596676604 -0.08409747197728219 1.993327437185884e-017 -0.07874035086581221 -4.190690344947252e-015 -0.08409747197729346 0.02187226596675341 0.08780011040783051 0.02187226596675338 0.08234305719689498 -4.228580750347981e-015 0.08780011040784212 -1.264982798898621e-014 0.0823430571969357 0.02187226596675338 -0.1272834788812177 0.02187226596676611 -0.1217980045309647 -8.332467318410041e-015 -0.1217980045309782 0.02187226596674927 -0.1272834788812107 -4.121843699090869e-015 0.1305765768378143 0.02187226596675341 0.1250455628178559 4.221312604413269e-015 0.1305765768377651 -4.199934634224954e-015 0.1250455628178871 0.02187226596675761 -0.1445607839127882 -4.192444357091636e-015 -0.150037501517662 0.0218722659667492 -0.1500375015176378 -8.403067976410755e-015 -0.1445607839127695 0.0218722659667492 0.1402771142970946 4.241638839883294e-015 0.0417884965027379 0.02187226596674921 0.0417884965027379 -1.260085563739316e-014 0.1402771142971283 0.02187226596675763 -0.1450619628200789 1.684475750090034e-014 -0.1505634635157852 0.02187226596674919 -0.1505634635158032 -4.208360595695219e-015 -0.1450619628200776 0.02187226596674497 0.06941475142201764 -1.268146153010795e-014 0.04164206724137524 0.02187226596675334 0.04164206724137541 -8.470837910788839e-015 0.06941475142203238 0.02187226596674913 -0.0420687982458124 0.02187226596675341 -0.1402771142971115 1.686117677664876e-014 -0.04206879824579556 -8.402564939265906e-015 -0.1402771142971115 0.02187226596674499</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9468\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9464\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9462\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9463\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9464\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9465\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 1 5 9 6 1 5 8 4 2 7 12 8 13 9 14 10 13 9 12 8 15 11 20 12 9 13 21 14 9 13 20 12 8 15 24 16 25 17 26 18 25 17 24 16 27 19 32 20 33 21 34 22 33 21 32 20 35 23 40 24 41 25 42 26 41 25 40 24 43 27 48 28 49 29 50 30 49 29 48 28 51 31 41 32 56 33 57 34 56 33 41 32 43 35 60 36 61 37 62 38 61 37 60 36 63 39 68 40 69 41 70 42 69 41 68 40 71 43 76 44 60 45 77 46 60 45 76 44 63 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9464\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9465\" />\r\n\t\t\t\t\t<p>4 3 5 0 6 1 7 2 6 1 5 0 7 7 10 4 6 5 11 6 6 5 10 4 16 11 17 8 18 9 19 10 18 9 17 8 10 15 22 12 11 13 23 14 11 13 22 12 28 19 29 16 30 17 31 18 30 17 29 16 36 23 37 20 38 21 39 22 38 21 37 20 44 27 45 24 46 25 47 26 46 25 45 24 52 31 53 28 54 29 55 30 54 29 53 28 44 35 46 32 58 33 59 34 58 33 46 32 64 39 65 36 66 37 67 38 66 37 65 36 72 43 73 40 74 41 75 42 74 41 73 40 64 47 78 44 65 45 79 46 65 45 78 44</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9469\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9470\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID9474\">7.481488890004584 7.570804579766332 1.181102362204229 2.271715105272961 7.570804579766786 -2.273736754432321e-013 7.481488890008222 7.570804579766218 -4.547473508864641e-013 2.271715105272051 7.570804579766332 1.181102362204456 2.271715105272051 7.570804579766332 1.181102362204456 7.481488890004584 7.570804579766332 1.181102362204229 2.271715105272961 7.570804579766786 -2.273736754432321e-013 7.481488890008222 7.570804579766218 -4.547473508864641e-013 7.765409949079185 7.515415564528553 1.181102362204911 7.765409949079185 7.515415564529008 -9.094947017729282e-013 7.765409949079185 7.515415564528553 1.181102362204911 7.765409949079185 7.515415564529008 -9.094947017729282e-013 2.271715105270232 6.058215065341301 0 2.271715105272051 7.570804579766332 1.181102362204456 2.271715105271142 6.058215065340391 1.181102362205138 2.271715105272961 7.570804579766786 -2.273736754432321e-013 2.271715105272961 7.570804579766786 -2.273736754432321e-013 2.271715105270232 6.058215065341301 0 2.271715105272051 7.570804579766332 1.181102362204456 2.271715105271142 6.058215065340391 1.181102362205138 8.011490272840092 7.349248518815216 -2.273736754432321e-013 7.765409949079185 7.515415564528553 1.181102362204911 7.765409949079185 7.515415564529008 -9.094947017729282e-013 8.011490272836454 7.349248518815784 1.181102362204229 8.011490272836454 7.349248518815784 1.181102362204229 8.011490272840092 7.349248518815216 -2.273736754432321e-013 7.765409949079185 7.515415564528553 1.181102362204911 7.765409949079185 7.515415564529008 -9.094947017729282e-013 2.271715105271142 6.058215065340391 1.181102362205138 7.481488890003675 6.058215065340733 0 2.271715105270232 6.058215065341301 0 7.481488890004584 6.05821506534096 1.181102362204683 7.481488890004584 6.05821506534096 1.181102362204683 2.271715105271142 6.058215065340391 1.181102362205138 7.481488890003675 6.058215065340733 0 2.271715105270232 6.058215065341301 0 8.011490272836454 7.349248518815784 1.181102362204229 8.181860239915295 7.102864891451532 2.273736754432321e-013 8.181860239916205 7.102864891451077 1.181102362203774 8.011490272840092 7.349248518815216 -2.273736754432321e-013 8.011490272840092 7.349248518815216 -2.273736754432321e-013 8.011490272836454 7.349248518815784 1.181102362204229 8.181860239915295 7.102864891451532 2.273736754432321e-013 8.181860239916205 7.102864891451077 1.181102362203774 7.765409949080095 6.104143896751111 1.181102362204911 7.765409949079185 6.104143896750998 -2.273736754432321e-013 7.765409949080095 6.104143896751111 1.181102362204911 7.765409949079185 6.104143896750998 -2.273736754432321e-013 8.238650228943698 6.806826131261914 1.181102362204911 8.181860239915295 7.102864891451532 2.273736754432321e-013 8.238650228943698 6.806826131261232 0 8.181860239916205 7.102864891451077 1.181102362203774 8.181860239916205 7.102864891451077 1.181102362203774 8.238650228943698 6.806826131261914 1.181102362204911 8.181860239915295 7.102864891451532 2.273736754432321e-013 8.238650228943698 6.806826131261232 0 7.765409949079185 6.104143896750998 -2.273736754432321e-013 8.011490272836454 6.272202979229178 1.181102362204229 8.011490272839183 6.272202979229746 -4.547473508864641e-013 7.765409949080095 6.104143896751111 1.181102362204911 7.765409949080095 6.104143896751111 1.181102362204911 7.765409949079185 6.104143896750998 -2.273736754432321e-013 8.011490272836454 6.272202979229178 1.181102362204229 8.011490272839183 6.272202979229746 -4.547473508864641e-013 8.181860239918933 6.520420871244028 1.181102362204456 8.238650228943698 6.806826131261232 0 8.181860239918024 6.5204208712438 -4.547473508864641e-013 8.238650228943698 6.806826131261914 1.181102362204911 8.238650228943698 6.806826131261914 1.181102362204911 8.181860239918933 6.520420871244028 1.181102362204456 8.238650228943698 6.806826131261232 0 8.181860239918024 6.5204208712438 -4.547473508864641e-013 8.181860239918933 6.520420871244028 1.181102362204456 8.011490272839183 6.272202979229746 -4.547473508864641e-013 8.011490272836454 6.272202979229178 1.181102362204229 8.181860239918024 6.5204208712438 -4.547473508864641e-013 8.181860239918024 6.5204208712438 -4.547473508864641e-013 8.181860239918933 6.520420871244028 1.181102362204456 8.011490272839183 6.272202979229746 -4.547473508864641e-013 8.011490272836454 6.272202979229178 1.181102362204229</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID9474\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9471\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID9475\">-0.09618412157581927 -0.9953635590861703 3.98621531211697e-016 -1.320658831249827e-016 -1 0 -0.0961841215761727 -0.9953635590861359 3.986215312131618e-016 -1.320658831249827e-016 -1 0 1.320658831249827e-016 1 -0 0.09618412157581927 0.9953635590861703 -3.98621531211697e-016 1.320658831249827e-016 1 -0 0.0961841215761727 0.9953635590861359 -3.986215312131618e-016 -0.1914763391587985 -0.9814972295133312 7.935466920714601e-016 -0.1914763391587985 -0.9814972295133312 7.935466920714601e-016 0.1914763391587985 0.9814972295133312 -7.935466920714601e-016 0.1914763391587985 0.9814972295133312 -7.935466920714601e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 1 2.918277630628455e-017 3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -1 -2.918277630628455e-017 -3.218186461699113e-016 -0.5596182064136979 -0.8287505433182629 -3.890049966120114e-016 -0.5596182064136979 -0.8287505433182629 -3.890049966120114e-016 -0.5596182064136979 -0.8287505433182629 -3.890049966120114e-016 -0.5596182064136979 -0.8287505433182629 -3.890049966120114e-016 0.5596182064136979 0.8287505433182629 3.890049966120114e-016 0.5596182064136979 0.8287505433182629 3.890049966120114e-016 0.5596182064136979 0.8287505433182629 3.890049966120114e-016 0.5596182064136979 0.8287505433182629 3.890049966120114e-016 1.320658831249827e-016 1 0 -0.08010254082496622 0.9967866285988114 0 1.320658831249827e-016 1 0 -0.0801025408250436 0.9967866285988052 0 0.0801025408250436 -0.9967866285988052 -0 -1.320658831249827e-016 -1 -0 0.08010254082496622 -0.9967866285988114 -0 -1.320658831249827e-016 -1 -0 -0.8225097079137343 -0.5687510706694655 -2.225914365315656e-016 -0.8225097079137343 -0.5687510706694655 -2.225914365315656e-016 -0.8225097079137343 -0.5687510706694655 -2.225914365315656e-016 -0.8225097079137343 -0.5687510706694655 -2.225914365315656e-016 0.8225097079137343 0.5687510706694655 2.225914365315656e-016 0.8225097079137343 0.5687510706694655 2.225914365315656e-016 0.8225097079137343 0.5687510706694655 2.225914365315656e-016 0.8225097079137343 0.5687510706694655 2.225914365315656e-016 -0.1596902832222725 0.9871671659067629 0 -0.1596902832222725 0.9871671659067629 0 0.1596902832222725 -0.9871671659067629 -0 0.1596902832222725 -0.9871671659067629 -0 -0.9820928079363908 -0.1883977616629662 8.085144783443731e-017 -0.9820928079363908 -0.1883977616629662 8.085144783443731e-017 -0.9820928079363908 -0.1883977616629662 8.085144783443731e-017 -0.9820928079363908 -0.1883977616629662 8.085144783443731e-017 0.9820928079363908 0.1883977616629662 -8.085144783443731e-017 0.9820928079363908 0.1883977616629662 -8.085144783443731e-017 0.9820928079363908 0.1883977616629662 -8.085144783443731e-017 0.9820928079363908 0.1883977616629662 -8.085144783443731e-017 -0.5639713200164308 0.8257943752526561 -6.496916298940976e-016 -0.5639713200164308 0.8257943752526561 -6.496916298940976e-016 -0.5639713200164308 0.8257943752526561 -6.496916298940976e-016 -0.5639713200164308 0.8257943752526561 -6.496916298940976e-016 0.5639713200164308 -0.8257943752526561 6.496916298940976e-016 0.5639713200164308 -0.8257943752526561 6.496916298940976e-016 0.5639713200164308 -0.8257943752526561 6.496916298940976e-016 0.5639713200164308 -0.8257943752526561 6.496916298940976e-016 -0.9809027711144411 0.1944987239547101 4.645981305944007e-016 -0.9809027711144411 0.1944987239547101 4.645981305944007e-016 -0.9809027711144411 0.1944987239547101 4.645981305944007e-016 -0.9809027711144411 0.1944987239547101 4.645981305944007e-016 0.9809027711144411 -0.1944987239547101 -4.645981305944007e-016 0.9809027711144411 -0.1944987239547101 -4.645981305944007e-016 0.9809027711144411 -0.1944987239547101 -4.645981305944007e-016 0.9809027711144411 -0.1944987239547101 -4.645981305944007e-016 -0.8244756088423471 0.5658974910918418 7.427527364838061e-017 -0.8244756088423471 0.5658974910918418 7.427527364838061e-017 -0.8244756088423471 0.5658974910918418 7.427527364838061e-017 -0.8244756088423471 0.5658974910918418 7.427527364838061e-017 0.8244756088423471 -0.5658974910918418 -7.427527364838061e-017 0.8244756088423471 -0.5658974910918418 -7.427527364838061e-017 0.8244756088423471 -0.5658974910918418 -7.427527364838061e-017 0.8244756088423471 -0.5658974910918418 -7.427527364838061e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID9475\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9473\">\r\n\t\t\t\t\t<float_array count=\"88\" id=\"ID9476\">0.1385460905556404 0.02187226596674497 0.04206879824579555 -4.210623619319112e-015 0.1385460905557078 -8.421247238638224e-015 0.0420687982457787 0.02187226596674918 0.1144945202130277 0.02187226596675774 0.1091376050510655 -8.290999013338149e-015 0.1144945202130261 -1.671224625197637e-014 0.109137605050999 0.0218722659667451 0.1121891678766908 -1.353852369744081e-017 0.1402000848104876 0.02187226596674917 0.1121891678766739 0.0218722659667618 0.140200084810496 -4.224162143016569e-015 0.04679173410772793 -4.28679706150163e-015 0.04129304325395113 0.02187226596675752 0.04129304325394642 -1.691866791945897e-014 0.0467917341076662 0.02187226596674489 -0.04206879824576186 0.02187226596676182 -0.1385460905556236 0 -0.04206879824574502 0 -0.1385460905556404 0.02187226596675339 -0.02756082559746062 0.02187226596674493 -0.02201358436479192 4.16623137858544e-015 -0.0220135843647754 0.02187226596673651 -0.02756082559741366 -4.255015860052794e-015 -0.1546836715539548 0 -0.1600098185044309 0.0218722659667576 -0.1600098185044139 -4.210623619319112e-015 -0.1546836715539721 0.02187226596675339 -0.09505169863201363 0.02187226596675761 -0.1006338587073922 4.224658098027842e-015 -0.09505169863200122 1.40344787087334e-017 -0.1006338587073808 0.02187226596673656 -0.1825035916389168 -4.202667312788758e-015 -0.188021966635307 0.02187226596674498 -0.1880219666353547 -8.413290932107869e-015 -0.1825035916389318 0.02187226596675761 -0.1479122273643651 0.02187226596674924 -0.1533192883571678 5.813839771095154e-017 -0.1479122273643577 -8.363108840927269e-015 -0.1533192883571802 0.02187226596675766 -0.1852967064807683 0.02187226596674919 -0.1797214928775855 -8.417044008617644e-015 -0.1797214928775482 0.02187226596674497 -0.1852967064807553 -8.417044008617642e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID9476\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9472\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9470\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9471\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9472\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9473\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 2 5 9 6 2 5 8 4 0 7 12 8 13 9 14 10 13 9 12 8 15 11 20 12 21 13 22 14 21 13 20 12 23 15 28 16 29 17 30 18 29 17 28 16 31 19 36 20 37 21 38 22 37 21 36 20 39 23 29 24 44 25 45 26 44 25 29 24 31 27 48 28 49 29 50 30 49 29 48 28 51 31 56 32 57 33 58 34 57 33 56 32 59 35 64 36 65 37 66 38 65 37 64 36 67 39 72 40 73 41 74 42 73 41 72 40 75 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9472\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9473\" />\r\n\t\t\t\t\t<p>4 3 5 0 6 1 7 2 6 1 5 0 5 7 10 4 7 5 11 6 7 5 10 4 16 11 17 8 18 9 19 10 18 9 17 8 24 15 25 12 26 13 27 14 26 13 25 12 32 19 33 16 34 17 35 18 34 17 33 16 40 23 41 20 42 21 43 22 42 21 41 20 32 27 34 24 46 25 47 26 46 25 34 24 52 31 53 28 54 29 55 30 54 29 53 28 60 35 61 32 62 33 63 34 62 33 61 32 68 39 69 36 70 37 71 38 70 37 69 36 76 43 77 40 78 41 79 42 78 41 77 40</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9477\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9478\">\r\n\t\t\t\t\t<float_array count=\"408\" id=\"ID9482\">29.90758402746087 2.271715105273074 1.181102362204229 30.20105192853589 2.326598614504974 -4.547473508864641e-013 29.90758402746269 2.271715105272506 -6.821210263296962e-013 30.20105192853498 2.326598614504746 1.181102362204229 30.20105192853498 2.326598614504746 1.181102362204229 29.90758402746087 2.271715105273074 1.181102362204229 30.20105192853589 2.326598614504974 -4.547473508864641e-013 29.90758402746269 2.271715105272506 -6.821210263296962e-013 24.60710802220638 2.271715105272847 -4.547473508864641e-013 24.60710802220729 2.271715105273529 1.181102362204456 24.60710802220729 2.271715105273529 1.181102362204456 24.60710802220638 2.271715105272847 -4.547473508864641e-013 30.20105192853498 2.326598614504746 1.181102362204229 30.44526910158584 2.491249142199422 -4.547473508864641e-013 30.20105192853589 2.326598614504974 -4.547473508864641e-013 30.44526910158584 2.491249142200331 1.181102362204001 30.44526910158584 2.491249142200331 1.181102362204001 30.20105192853498 2.326598614504746 1.181102362204229 30.44526910158584 2.491249142199422 -4.547473508864641e-013 30.20105192853589 2.326598614504974 -4.547473508864641e-013 24.56915174266578 2.271715105273074 6.821210263296962e-013 24.60710802220729 2.271715105273529 1.181102362204456 24.60710802220638 2.271715105272847 -4.547473508864641e-013 24.56915174266487 2.271715105273188 1.181102362204456 24.56915174266487 2.271715105273188 1.181102362204456 24.56915174266578 2.271715105273074 6.821210263296962e-013 24.60710802220729 2.271715105273529 1.181102362204456 24.60710802220638 2.271715105272847 -4.547473508864641e-013 30.44526910158584 2.491249142200331 1.181102362204001 30.60996295836958 2.7316100265773 -4.547473508864641e-013 30.44526910158584 2.491249142199422 -4.547473508864641e-013 30.60996295836867 2.731610026577187 1.181102362204456 30.60996295836867 2.731610026577187 1.181102362204456 30.44526910158584 2.491249142200331 1.181102362204001 30.60996295836958 2.7316100265773 -4.547473508864641e-013 30.44526910158584 2.491249142199422 -4.547473508864641e-013 24.53131100735391 2.271715105272165 1.181102362205365 24.56915174266578 2.271715105273074 6.821210263296962e-013 24.53131100735209 2.271715105272847 -2.273736754432321e-013 24.56915174266487 2.271715105273188 1.181102362204456 24.56915174266487 2.271715105273188 1.181102362204456 24.53131100735391 2.271715105272165 1.181102362205365 24.56915174266578 2.271715105273074 6.821210263296962e-013 24.53131100735209 2.271715105272847 -2.273736754432321e-013 30.66486091062961 3.013624605855512 1.181102362204001 30.60996295836958 2.7316100265773 -4.547473508864641e-013 30.60996295836867 2.731610026577187 1.181102362204456 30.6648609106287 3.013624605855739 4.547473508864641e-013 30.6648609106287 3.013624605855739 4.547473508864641e-013 30.66486091062961 3.013624605855512 1.181102362204001 30.60996295836958 2.7316100265773 -4.547473508864641e-013 30.60996295836867 2.731610026577187 1.181102362204456 24.28523068359209 2.358286619571345 4.547473508864641e-013 24.28523068359391 2.35828661957089 1.181102362204001 24.28523068359391 2.35828661957089 1.181102362204001 24.28523068359209 2.358286619571345 4.547473508864641e-013 30.66486091062961 6.814105417748806 1.181102362205138 30.6648609106287 6.814105417749147 -2.273736754432321e-013 30.6648609106287 6.814105417749147 -2.273736754432321e-013 30.66486091062961 6.814105417748806 1.181102362205138 24.06185480101976 2.527645574637063 1.181102362204683 24.06185480102158 2.527645574637973 -2.273736754432321e-013 24.06185480101976 2.527645574637063 1.181102362204683 24.06185480102158 2.527645574637973 -2.273736754432321e-013 30.61563906866377 7.058279261715256 1.181102362204683 30.61563906866559 7.058279261715597 -6.821210263296962e-013 30.61563906866559 7.058279261715597 -6.821210263296962e-013 30.61563906866377 7.058279261715256 1.181102362204683 23.90283705453658 2.760987147045285 1.181102362204911 23.90283705453749 2.76098714704483 -4.547473508864641e-013 23.90283705453749 2.76098714704483 -4.547473508864641e-013 23.90283705453658 2.760987147045285 1.181102362204911 30.46797354277533 7.27593570490501 1.181102362204229 30.61563906866559 7.058279261715597 -6.821210263296962e-013 30.61563906866377 7.058279261715256 1.181102362204683 30.46797354277442 7.27593570490501 0 30.46797354277442 7.27593570490501 0 30.46797354277533 7.27593570490501 1.181102362204229 30.61563906866559 7.058279261715597 -6.821210263296962e-013 30.61563906866377 7.058279261715256 1.181102362204683 23.84983113903945 3.039506513366518 2.273736754432321e-013 23.90283705453658 2.760987147045285 1.181102362204911 23.90283705453749 2.76098714704483 -4.547473508864641e-013 23.84983113903763 3.039506513367201 1.181102362204911 23.84983113903763 3.039506513367201 1.181102362204911 23.84983113903945 3.039506513366518 2.273736754432321e-013 23.90283705453658 2.760987147045285 1.181102362204911 23.90283705453749 2.76098714704483 -4.547473508864641e-013 30.46797354277442 7.27593570490501 0 30.04392621881561 7.540878624207039 1.181102362204683 30.04392621881652 7.540878624206812 -2.273736754432321e-013 30.46797354277533 7.27593570490501 1.181102362204229 30.46797354277533 7.27593570490501 1.181102362204229 30.46797354277442 7.27593570490501 0 30.04392621881561 7.540878624207039 1.181102362204683 30.04392621881652 7.540878624206812 -2.273736754432321e-013 23.84983113904218 6.788223510237117 -2.273736754432321e-013 23.84983113904218 6.788223510237458 1.181102362204683 23.84983113904218 6.788223510237458 1.181102362204683 23.84983113904218 6.788223510237117 -2.273736754432321e-013 30.04392621881652 7.540878624206812 -2.273736754432321e-013 29.9758128952526 7.548446771269596 1.181102362204911 29.97581289525351 7.548446771269141 -6.821210263296962e-013 30.04392621881561 7.540878624207039 1.181102362204683 30.04392621881561 7.540878624207039 1.181102362204683 30.04392621881652 7.540878624206812 -2.273736754432321e-013 29.9758128952526 7.548446771269596 1.181102362204911 29.97581289525351 7.548446771269141 -6.821210263296962e-013 23.97854741121591 7.149530317326821 2.273736754432321e-013 23.9785474112141 7.149530317327276 1.181102362204683 23.9785474112141 7.149530317327276 1.181102362204683 23.97854741121591 7.149530317326821 2.273736754432321e-013 29.9758128952526 7.548446771269596 1.181102362204911 29.90758402745996 7.556014918331698 -2.273736754432321e-013 29.97581289525351 7.548446771269141 -6.821210263296962e-013 29.90758402746178 7.556014918331925 1.181102362204683 29.90758402746178 7.556014918331925 1.181102362204683 29.9758128952526 7.548446771269596 1.181102362204911 29.90758402745996 7.556014918331698 -2.273736754432321e-013 29.97581289525351 7.548446771269141 -6.821210263296962e-013 24.27387846300007 7.405460786692402 1.181102362204229 23.97854741121591 7.149530317326821 2.273736754432321e-013 24.27387846299735 7.405460786691947 -4.547473508864641e-013 23.9785474112141 7.149530317327276 1.181102362204683 23.9785474112141 7.149530317327276 1.181102362204683 24.27387846300007 7.405460786692402 1.181102362204229 23.97854741121591 7.149530317326821 2.273736754432321e-013 24.27387846299735 7.405460786691947 -4.547473508864641e-013 24.6071080222091 7.556014918331925 1.181102362204456 24.6071080222091 7.556014918331243 -9.094947017729282e-013 24.6071080222091 7.556014918331925 1.181102362204456 24.6071080222091 7.556014918331243 -9.094947017729282e-013 24.45557176461443 7.503326749469238 1.181102362204683 24.45557176461171 7.503326749469238 -4.547473508864641e-013 24.45557176461443 7.503326749469238 1.181102362204683 24.45557176461171 7.503326749469238 -4.547473508864641e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"136\" source=\"#ID9482\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9479\">\r\n\t\t\t\t\t<float_array count=\"408\" id=\"ID9483\">-0.09230909492573794 0.9957304007581526 -2.7983051074964e-016 -0.1838299441682293 0.9829580619879496 -1.131822833758122e-016 -0.09230909492589236 0.9957304007581382 -2.798305107493621e-016 -0.1838299441682293 0.9829580619879496 -1.131822833758122e-016 0.1838299441682293 -0.9829580619879496 1.131822833758122e-016 0.09230909492573794 -0.9957304007581526 2.7983051074964e-016 0.1838299441682293 -0.9829580619879496 1.131822833758122e-016 0.09230909492589236 -0.9957304007581382 2.798305107493621e-016 2.104347478334897e-017 1 -4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -0.5590154613160709 0.8291572311748722 -7.777864130941823e-016 -0.5590154613160709 0.8291572311748722 -7.777864130941823e-016 -0.5590154613160709 0.8291572311748722 -7.777864130941823e-016 -0.5590154613160709 0.8291572311748722 -7.777864130941823e-016 0.5590154613160709 -0.8291572311748722 7.777864130941823e-016 0.5590154613160709 -0.8291572311748722 7.777864130941823e-016 0.5590154613160709 -0.8291572311748722 7.777864130941823e-016 0.5590154613160709 -0.8291572311748722 7.777864130941823e-016 1.320658831249827e-016 1 0 1.320658831249827e-016 1 0 1.320658831249827e-016 1 0 1.320658831249827e-016 1 0 -1.320658831249827e-016 -1 -0 -1.320658831249827e-016 -1 -0 -1.320658831249827e-016 -1 -0 -1.320658831249827e-016 -1 -0 -0.8249289481627179 0.5652364376817473 -7.429330488506344e-017 -0.8249289481627179 0.5652364376817473 -7.429330488506344e-017 -0.8249289481627179 0.5652364376817473 -7.429330488506344e-017 -0.8249289481627179 0.5652364376817473 -7.429330488506344e-017 0.8249289481627179 -0.5652364376817473 7.429330488506344e-017 0.8249289481627179 -0.5652364376817473 7.429330488506344e-017 0.8249289481627179 -0.5652364376817473 7.429330488506344e-017 0.8249289481627179 -0.5652364376817473 7.429330488506344e-017 0.168334256106467 0.9857299722647589 -5.243170918459482e-016 2.104347478334897e-017 1 -4.440892098500614e-016 0.1683342561069484 0.9857299722646767 -5.243170918461593e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -0.168334256106467 -0.9857299722647589 5.243170918459482e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -0.1683342561069484 -0.9857299722646767 5.243170918461593e-016 -0.9953831114003404 0.09598156874617808 3.154168270644957e-016 -0.9815750769220633 0.1910768650712215 9.497398115922613e-016 -0.9815750769220633 0.1910768650712215 9.497398115922613e-016 -0.9953831114003369 0.09598156874621579 3.154168270647465e-016 0.9953831114003369 -0.09598156874621579 -3.154168270647465e-016 0.9953831114003404 -0.09598156874617808 -3.154168270644957e-016 0.9815750769220633 -0.1910768650712215 -9.497398115922613e-016 0.9815750769220633 -0.1910768650712215 -9.497398115922613e-016 0.4737087120731836 0.8806815861058784 -3.014892926953832e-017 0.4737087120728022 0.8806815861060836 -3.014892927110667e-017 -0.4737087120728022 -0.8806815861060836 3.014892927110667e-017 -0.4737087120731836 -0.8806815861058784 3.014892926953832e-017 -0.9950579620468254 -0.09929578121561145 4.470949100181154e-016 -0.9950579620468097 -0.09929578121576886 4.470949100193369e-016 0.9950579620468097 0.09929578121576886 -4.470949100193369e-016 0.9950579620468254 0.09929578121561145 -4.470949100181154e-016 0.7247432028747544 0.6890190780282086 1.178456697676667e-016 0.7247432028746833 0.6890190780282833 1.178456697679317e-016 -0.7247432028747544 -0.6890190780282086 -1.178456697676667e-016 -0.7247432028746833 -0.6890190780282833 -1.178456697679317e-016 -0.9802806956655348 -0.1976101153926477 1.211589346179273e-015 -0.9802806956655348 -0.1976101153926477 1.211589346179273e-015 0.9802806956655348 0.1976101153926477 -1.211589346179273e-015 0.9802806956655348 0.1976101153926477 -1.211589346179273e-015 0.8263571763205776 0.5631463549944026 -2.974005910431712e-016 0.8263571763205776 0.5631463549944026 -2.974005910431712e-016 -0.8263571763205776 -0.5631463549944026 2.974005910431712e-016 -0.8263571763205776 -0.5631463549944026 2.974005910431712e-016 -0.8275286208343535 -0.5614235314804617 9.671585516094334e-016 -0.8275286208343535 -0.5614235314804617 9.671585516094334e-016 -0.8275286208343535 -0.5614235314804617 9.671585516094334e-016 -0.8275286208343535 -0.5614235314804617 9.671585516094334e-016 0.8275286208343535 0.5614235314804617 -9.671585516094334e-016 0.8275286208343535 0.5614235314804617 -9.671585516094334e-016 0.8275286208343535 0.5614235314804617 -9.671585516094334e-016 0.8275286208343535 0.5614235314804617 -9.671585516094334e-016 0.9955822373234202 0.09389360322244018 -6.607518859939151e-016 0.9823679825478557 0.1869576071328897 -1.63748432811459e-015 0.9823679825478557 0.1869576071328897 -1.63748432811459e-015 0.9955822373234347 0.09389360322228808 -6.60751885992321e-016 -0.9955822373234347 -0.09389360322228808 6.60751885992321e-016 -0.9955822373234202 -0.09389360322244018 6.607518859939151e-016 -0.9823679825478557 -0.1869576071328897 1.63748432811459e-015 -0.9823679825478557 -0.1869576071328897 1.63748432811459e-015 -0.5298743050136154 -0.8480761881377984 5.114604199731215e-016 -0.5298743050136154 -0.8480761881377984 5.114604199731215e-016 -0.5298743050136154 -0.8480761881377984 5.114604199731215e-016 -0.5298743050136154 -0.8480761881377984 5.114604199731215e-016 0.5298743050136154 0.8480761881377984 -5.114604199731215e-016 0.5298743050136154 0.8480761881377984 -5.114604199731215e-016 0.5298743050136154 0.8480761881377984 -5.114604199731215e-016 0.5298743050136154 0.8480761881377984 -5.114604199731215e-016 0.9853952064900148 -0.1702829616447315 -7.759647187718351e-017 0.9853952064899949 -0.1702829616448466 -7.759647187745686e-017 -0.9853952064899949 0.1702829616448466 7.759647187745686e-017 -0.9853952064900148 0.1702829616447315 7.759647187718351e-017 -0.1104315260748566 -0.9938837346736178 4.472263688261614e-016 -0.1104315260748566 -0.9938837346736178 4.472263688261614e-016 -0.1104315260748566 -0.9938837346736178 4.472263688261614e-016 -0.1104315260748566 -0.9938837346736178 4.472263688261614e-016 0.1104315260748566 0.9938837346736178 -4.472263688261614e-016 0.1104315260748566 0.9938837346736178 -4.472263688261614e-016 0.1104315260748566 0.9938837346736178 -4.472263688261614e-016 0.1104315260748566 0.9938837346736178 -4.472263688261614e-016 0.942007425946938 -0.3355920283034513 -4.747450290269486e-016 0.942007425946938 -0.3355920283034513 -4.747450290269486e-016 -0.942007425946938 0.3355920283034513 4.747450290269486e-016 -0.942007425946938 0.3355920283034513 4.747450290269486e-016 -0.1102467874167201 -0.9939042438103848 8.944318361746641e-016 -0.05520759091659735 -0.9984748979845139 6.702827726200759e-016 -0.1102467874167201 -0.9939042438103848 8.944318361746641e-016 -0.05520759091664934 -0.998474897984511 6.702827726202882e-016 0.05520759091664934 0.998474897984511 -6.702827726202882e-016 0.1102467874167201 0.9939042438103848 -8.944318361746641e-016 0.05520759091659735 0.9984748979845139 -6.702827726200759e-016 0.1102467874167201 0.9939042438103848 -8.944318361746641e-016 0.5679887144729656 -0.8230363419870038 1.539935544567203e-016 0.6548967689809534 -0.7557183483139124 -6.795617043882985e-017 0.567988714473189 -0.8230363419868494 1.539935544561737e-016 0.6548967689809534 -0.7557183483139124 -6.795617043882985e-017 -0.6548967689809534 0.7557183483139124 6.795617043882985e-017 -0.5679887144729656 0.8230363419870038 -1.539935544567203e-016 -0.6548967689809534 0.7557183483139124 6.795617043882985e-017 -0.567988714473189 0.8230363419868494 -1.539935544561737e-016 0.1665297962759244 -0.9860364227310769 2.84911726754345e-016 0.1665297962757282 -0.9860364227311101 2.849117267545399e-016 -0.1665297962759244 0.9860364227310769 -2.84911726754345e-016 -0.1665297962757282 0.9860364227311101 -2.849117267545399e-016 0.4025916445627172 -0.9153796850096067 2.467135943774193e-016 0.4025916445628658 -0.9153796850095414 2.467135943776805e-016 -0.4025916445627172 0.9153796850096067 -2.467135943774193e-016 -0.4025916445628658 0.9153796850095414 -2.467135943776805e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"136\" source=\"#ID9483\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9481\">\r\n\t\t\t\t\t<float_array count=\"184\" id=\"ID9484\">-0.5521390758396882 0.02187226596674496 -0.557667888279211 -8.428090383745523e-015 -0.5521390758397193 -1.263871400306464e-014 -0.5576678882791936 0.02187226596674496 -0.4556871855964144 -8.402564939265908e-015 -0.5538441486566827 0.02187226596674499 -0.5538441486567165 -1.261318855858502e-014 -0.4556871855964312 0.0218722659667492 -0.4878152813595796 0.02187226596674476 -0.4932696633171236 -8.636632700671181e-015 -0.4878152813595959 -8.636632700671192e-015 -0.493269663317133 0.02187226596674055 -0.4549842915308478 1.263187085795734e-014 -0.4556871855964312 0.02187226596674918 -0.4556871855964144 -8.421247238638224e-015 -0.4549842915308309 0.02187226596674918 -0.3567384997357249 0.02187226596674073 -0.3621342704847075 -8.45386342897674e-015 -0.356738499735711 -8.453863428976738e-015 -0.3621342704846963 0.02187226596674915 -0.4542835371732205 0.02187226596676604 -0.4549842915308478 1.265055315732965e-014 -0.4542835371731868 -4.191941319946796e-015 -0.4549842915308309 0.0218722659667492 -0.1632860054621295 0.02187226596674128 -0.1579654830368549 -7.901985275831655e-015 -0.1579654830368496 0.0218722659667497 -0.1632860054621304 8.940509201444771e-015 -0.4097460481489879 8.533530039985264e-015 -0.4145768674480009 0.02187226596676613 -0.414576867447965 -4.098340817972071e-015 -0.4097460481490225 0.02187226596674087 -0.1261871373657186 0.02187226596676163 -0.05580786307140256 8.238496793763276e-015 -0.05580786307139835 0.02187226596674058 -0.1261871373657249 -4.393374064194059e-015 -0.3267932273962215 0.02187226596675323 -0.331984336465219 8.25879519854884e-015 -0.3267932273962382 -4.373075659408516e-015 -0.3319843364652508 0.0218722659667406 -0.01609509140180646 0.0218722659667541 -0.01148239437408507 -3.50595635975638e-015 -0.01148239437407556 0.02187226596676252 -0.01609509140180601 -1.192720359839459e-014 -0.2122519956630155 -4.093276391279506e-015 -0.2070228521962531 0.02187226596675772 -0.2122519956630104 0.02187226596675351 -0.2070228521962696 -8.303900010598618e-015 0.2052665234125689 0.0218722659667455 0.2101372611398184 -1.210713358323857e-014 0.2101372611398047 0.02187226596675392 0.2052665234125595 5.247372747187507e-016 -0.02727765701484004 4.938320725757114e-015 -0.03252799714666835 0.02187226596675833 -0.03252799714667977 -7.693550132200123e-015 -0.02727765701482133 0.02187226596675833 0.4071079905088726 2.113538592815526e-016 0.3978485297065308 0.0218722659667536 0.3978485297065473 -3.999269760037555e-015 0.4071079905088869 0.02187226596674518 0.1257078427821688 -4.352759181699622e-015 0.05628715765494814 0.02187226596675746 0.05628715765493551 4.068488056938618e-015 0.1257078427821751 0.02187226596675325 0.5375447937073994 -4.121074380070856e-015 0.536275673588243 0.02187226596675769 0.5362756735882607 -1.254232161870908e-014 0.5375447937073822 0.02187226596675348 0.2737392594899084 4.388113592378209e-015 0.2666364844866158 0.02187226596675357 0.2666364844866098 -4.033133646259987e-015 0.273739259489905 0.02187226596675357 0.5363128822544265 0.02187226596675778 0.5350416354923936 -4.03161848558144e-015 0.5363128822544442 -1.245286572421966e-014 0.5350416354924266 0.02187226596675357 0.4295190311342791 0.02187226596674499 0.4222820842429562 4.223586185817494e-015 0.4295190311342353 -8.408284672139842e-015 0.4222820842429362 0.02187226596675341 0.5538441486566659 -4.148483902750645e-015 0.4556871855964649 0.02187226596674924 0.4556871855964649 -1.678035476070799e-014 0.5538441486566996 0.02187226596675345 0.4646127378155692 0.02187226596675336 0.4607909982123336 -8.455823872528068e-015 0.4646127378155248 -8.455823872528068e-015 0.4607909982123821 0.02187226596674494 0.4763658024543888 0.02187226596674918 0.4733947902105 -8.423306746774624e-015 0.4763658024543846 -1.684455398541285e-014 0.4733947902105478 0.02187226596675339</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"92\" source=\"#ID9484\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9480\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9478\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9479\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"46\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9480\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9481\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 0 5 2 6 0 5 8 4 9 7 12 8 13 9 14 10 13 9 12 8 15 11 20 12 21 13 22 14 21 13 20 12 23 15 28 16 29 17 30 18 29 17 28 16 31 19 36 20 37 21 38 22 37 21 36 20 39 23 44 24 45 25 46 26 45 25 44 24 47 27 52 28 36 29 38 30 36 29 52 28 53 31 56 32 47 33 44 34 47 33 56 32 57 35 60 36 52 37 61 38 52 37 60 36 53 39 64 40 57 41 56 42 57 41 64 40 65 43 61 44 68 45 60 46 68 45 61 44 69 47 72 48 73 49 74 50 73 49 72 48 75 51 80 52 81 53 82 54 81 53 80 52 83 55 88 56 89 57 90 58 89 57 88 56 91 59 96 60 83 61 80 62 83 61 96 60 97 63 100 64 101 65 102 66 101 65 100 64 103 67 108 68 97 69 96 70 97 69 108 68 109 71 112 72 113 73 114 74 113 73 112 72 115 75 120 76 121 77 122 78 121 77 120 76 123 79 113 80 128 81 129 82 128 81 113 80 115 83 132 84 122 85 133 86 122 85 132 84 120 87 128 88 133 89 129 90 133 89 128 88 132 91</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"46\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9480\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9481\" />\r\n\t\t\t\t\t<p>4 3 5 0 6 1 7 2 6 1 5 0 10 7 11 4 5 5 7 6 5 5 11 4 16 11 17 8 18 9 19 10 18 9 17 8 24 15 25 12 26 13 27 14 26 13 25 12 32 19 33 16 34 17 35 18 34 17 33 16 40 23 41 20 42 21 43 22 42 21 41 20 48 27 49 24 50 25 51 26 50 25 49 24 54 31 55 28 41 29 43 30 41 29 55 28 58 35 59 32 48 33 49 34 48 33 59 32 54 39 62 36 55 37 63 38 55 37 62 36 66 43 67 40 58 41 59 42 58 41 67 40 70 47 63 44 71 45 62 46 71 45 63 44 76 51 77 48 78 49 79 50 78 49 77 48 84 55 85 52 86 53 87 54 86 53 85 52 92 59 93 56 94 57 95 58 94 57 93 56 98 63 99 60 84 61 85 62 84 61 99 60 104 67 105 64 106 65 107 66 106 65 105 64 110 71 111 68 98 69 99 70 98 69 111 68 116 75 117 72 118 73 119 74 118 73 117 72 124 79 125 76 126 77 127 78 126 77 125 76 116 83 118 80 130 81 131 82 130 81 118 80 125 87 134 84 127 85 135 86 127 85 134 84 134 91 130 88 135 89 131 90 135 89 130 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9485\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9486\">\r\n\t\t\t\t\t<float_array count=\"408\" id=\"ID9490\">52.23997279441755 2.271715105272847 0 52.53344069548984 2.326598614504064 1.181102362204456 52.53344069548984 2.32659861450486 -2.273736754432321e-013 52.23997279441574 2.271715105272961 1.181102362204911 52.23997279441574 2.271715105272961 1.181102362204911 52.23997279441755 2.271715105272847 0 52.53344069548984 2.326598614504064 1.181102362204456 52.53344069548984 2.32659861450486 -2.273736754432321e-013 46.93949678916579 2.271715105272506 1.181102362204683 46.93949678915942 2.271715105273074 -6.821210263296962e-013 46.93949678916579 2.271715105272506 1.181102362204683 46.93949678915942 2.271715105273074 -6.821210263296962e-013 52.53344069548984 2.326598614504064 1.181102362204456 52.77765786854525 2.491249142199536 2.273736754432321e-013 52.53344069548984 2.32659861450486 -2.273736754432321e-013 52.77765786854343 2.491249142199308 1.181102362204001 52.77765786854343 2.491249142199308 1.181102362204001 52.53344069548984 2.326598614504064 1.181102362204456 52.77765786854525 2.491249142199536 2.273736754432321e-013 52.53344069548984 2.32659861450486 -2.273736754432321e-013 46.90154050962156 2.271715105272847 4.547473508864641e-013 46.93949678916579 2.271715105272506 1.181102362204683 46.93949678915942 2.271715105273074 -6.821210263296962e-013 46.90154050962428 2.271715105272506 1.181102362204456 46.90154050962428 2.271715105272506 1.181102362204456 46.90154050962156 2.271715105272847 4.547473508864641e-013 46.93949678916579 2.271715105272506 1.181102362204683 46.93949678915942 2.271715105273074 -6.821210263296962e-013 52.94235172532262 2.731610026576959 1.181102362204229 52.77765786854525 2.491249142199536 2.273736754432321e-013 52.77765786854343 2.491249142199308 1.181102362204001 52.94235172532353 2.731610026577414 -2.273736754432321e-013 52.94235172532353 2.731610026577414 -2.273736754432321e-013 52.94235172532262 2.731610026576959 1.181102362204229 52.77765786854525 2.491249142199536 2.273736754432321e-013 52.77765786854343 2.491249142199308 1.181102362204001 46.86369977430968 2.271715105273188 1.181102362204456 46.90154050962156 2.271715105272847 4.547473508864641e-013 46.86369977430786 2.271715105272392 -9.094947017729282e-013 46.90154050962428 2.271715105272506 1.181102362204456 46.90154050962428 2.271715105272506 1.181102362204456 46.86369977430968 2.271715105273188 1.181102362204456 46.90154050962156 2.271715105272847 4.547473508864641e-013 46.86369977430786 2.271715105272392 -9.094947017729282e-013 52.99724967758357 3.013624605855966 1.181102362204683 52.94235172532353 2.731610026577414 -2.273736754432321e-013 52.94235172532262 2.731610026576959 1.181102362204229 52.99724967758357 3.013624605856307 9.094947017729282e-013 52.99724967758357 3.013624605856307 9.094947017729282e-013 52.99724967758357 3.013624605855966 1.181102362204683 52.94235172532353 2.731610026577414 -2.273736754432321e-013 52.94235172532262 2.731610026576959 1.181102362204229 46.61761945055059 2.358286619571345 -4.547473508864641e-013 46.61761945054786 2.358286619571686 1.181102362204456 46.61761945054786 2.358286619571686 1.181102362204456 46.61761945055059 2.358286619571345 -4.547473508864641e-013 52.99724967758448 6.814105417748806 1.181102362204911 52.99724967758539 6.814105417748692 -4.547473508864641e-013 52.99724967758539 6.814105417748692 -4.547473508864641e-013 52.99724967758448 6.814105417748806 1.181102362204911 46.39424356797645 2.527645574637404 1.181102362204229 46.39424356797372 2.5276455746382 -9.094947017729282e-013 46.39424356797645 2.527645574637404 1.181102362204229 46.39424356797372 2.5276455746382 -9.094947017729282e-013 52.94802783561954 7.058279261715711 0 52.94802783561954 7.058279261714688 1.18110236220582 52.94802783561954 7.058279261714688 1.18110236220582 52.94802783561954 7.058279261715711 0 46.23522582148962 2.76098714704483 1.181102362204456 46.23522582148962 2.760987147044602 0 46.23522582148962 2.760987147044602 0 46.23522582148962 2.76098714704483 1.181102362204456 52.80036230972928 7.275935704905464 1.181102362204456 52.94802783561954 7.058279261715711 0 52.94802783561954 7.058279261714688 1.18110236220582 52.80036230972928 7.275935704905123 2.273736754432321e-013 52.80036230972928 7.275935704905123 2.273736754432321e-013 52.80036230972928 7.275935704905464 1.181102362204456 52.94802783561954 7.058279261715711 0 52.94802783561954 7.058279261714688 1.18110236220582 46.18221990599886 3.03950651336686 -2.273736754432321e-013 46.23522582148962 2.76098714704483 1.181102362204456 46.23522582148962 2.760987147044602 0 46.18221990599795 3.039506513366632 1.181102362204683 46.18221990599795 3.039506513366632 1.181102362204683 46.18221990599886 3.03950651336686 -2.273736754432321e-013 46.23522582148962 2.76098714704483 1.181102362204456 46.23522582148962 2.760987147044602 0 52.80036230972928 7.275935704905123 2.273736754432321e-013 52.37631498577321 7.540878624206926 1.181102362204456 52.37631498577048 7.54087862420613 0 52.80036230972928 7.275935704905464 1.181102362204456 52.80036230972928 7.275935704905464 1.181102362204456 52.80036230972928 7.275935704905123 2.273736754432321e-013 52.37631498577321 7.540878624206926 1.181102362204456 52.37631498577048 7.54087862420613 0 46.18221990599614 6.788223510237117 1.181102362204683 46.18221990599704 6.788223510237458 0 46.18221990599704 6.788223510237458 0 46.18221990599614 6.788223510237117 1.181102362204683 52.37631498577321 7.540878624206926 1.181102362204456 52.30820166220929 7.548446771269369 0 52.37631498577048 7.54087862420613 0 52.3082016622102 7.548446771269141 1.181102362204229 52.3082016622102 7.548446771269141 1.181102362204229 52.37631498577321 7.540878624206926 1.181102362204456 52.30820166220929 7.548446771269369 0 52.37631498577048 7.54087862420613 0 46.31093617817442 7.149530317327162 1.181102362204456 46.3109361781726 7.149530317327503 -2.273736754432321e-013 46.3109361781726 7.149530317327503 -2.273736754432321e-013 46.31093617817442 7.149530317327162 1.181102362204456 52.3082016622102 7.548446771269141 1.181102362204229 52.23997279441846 7.556014918331925 2.273736754432321e-013 52.30820166220929 7.548446771269369 0 52.23997279441755 7.556014918332039 1.181102362204229 52.23997279441755 7.556014918332039 1.181102362204229 52.3082016622102 7.548446771269141 1.181102362204229 52.23997279441846 7.556014918331925 2.273736754432321e-013 52.30820166220929 7.548446771269369 0 46.60626722995494 7.405460786691947 1.181102362204456 46.3109361781726 7.149530317327503 -2.273736754432321e-013 46.60626722995585 7.405460786691378 -2.273736754432321e-013 46.31093617817442 7.149530317327162 1.181102362204456 46.31093617817442 7.149530317327162 1.181102362204456 46.60626722995494 7.405460786691947 1.181102362204456 46.3109361781726 7.149530317327503 -2.273736754432321e-013 46.60626722995585 7.405460786691378 -2.273736754432321e-013 46.93949678916397 7.556014918331471 1.181102362204683 46.93949678916215 7.556014918331471 -2.273736754432321e-013 46.93949678916397 7.556014918331471 1.181102362204683 46.93949678916215 7.556014918331471 -2.273736754432321e-013 46.7879605315693 7.503326749469011 1.181102362204911 46.78796053157021 7.503326749469011 -4.547473508864641e-013 46.7879605315693 7.503326749469011 1.181102362204911 46.78796053157021 7.503326749469011 -4.547473508864641e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"136\" source=\"#ID9490\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9487\">\r\n\t\t\t\t\t<float_array count=\"408\" id=\"ID9491\">-0.09230909492593327 0.9957304007581346 -5.071657076856623e-016 -0.1838299441682276 0.98295806198795 -5.659114168790611e-016 -0.1838299441682276 0.98295806198795 -5.659114168790611e-016 -0.09230909492569275 0.9957304007581568 -5.071657076855029e-016 0.09230909492569275 -0.9957304007581568 5.071657076855029e-016 0.09230909492593327 -0.9957304007581346 5.071657076856623e-016 0.1838299441682276 -0.98295806198795 5.659114168790611e-016 0.1838299441682276 -0.98295806198795 5.659114168790611e-016 2.104347478334897e-017 1 -4.440892098500614e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -0.5590154613160766 0.8291572311748684 0 -0.5590154613160766 0.8291572311748684 0 -0.5590154613160766 0.8291572311748684 0 -0.5590154613160766 0.8291572311748684 0 0.5590154613160766 -0.8291572311748684 -0 0.5590154613160766 -0.8291572311748684 -0 0.5590154613160766 -0.8291572311748684 -0 0.5590154613160766 -0.8291572311748684 -0 1.320658831249827e-016 1 0 1.320658831249827e-016 1 0 1.320658831249827e-016 1 0 1.320658831249827e-016 1 0 -1.320658831249827e-016 -1 -0 -1.320658831249827e-016 -1 -0 -1.320658831249827e-016 -1 -0 -1.320658831249827e-016 -1 -0 -0.8249289481627238 0.5652364376817388 7.429330488506367e-017 -0.8249289481627238 0.5652364376817388 7.429330488506367e-017 -0.8249289481627238 0.5652364376817388 7.429330488506367e-017 -0.8249289481627238 0.5652364376817388 7.429330488506367e-017 0.8249289481627238 -0.5652364376817388 -7.429330488506367e-017 0.8249289481627238 -0.5652364376817388 -7.429330488506367e-017 0.8249289481627238 -0.5652364376817388 -7.429330488506367e-017 0.8249289481627238 -0.5652364376817388 -7.429330488506367e-017 0.1683342561054793 0.9857299722649277 -6.439403054119371e-016 2.104347478334897e-017 1 -4.440892098500614e-016 0.1683342561076144 0.9857299722645629 -6.439403054143904e-016 2.104347478334897e-017 1 -4.440892098500614e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -0.1683342561054793 -0.9857299722649277 6.439403054119371e-016 -2.104347478334897e-017 -1 4.440892098500614e-016 -0.1683342561076144 -0.9857299722645629 6.439403054143904e-016 -0.9953831114003475 0.09598156874610504 -3.984992554874766e-017 -0.9815750769220609 0.1910768650712333 2.424867604065345e-016 -0.9815750769220609 0.1910768650712333 2.424867604065345e-016 -0.9953831114003355 0.09598156874623015 -3.984992554837807e-017 0.9953831114003355 -0.09598156874623015 3.984992554837807e-017 0.9953831114003475 -0.09598156874610504 3.984992554874766e-017 0.9815750769220609 -0.1910768650712333 -2.424867604065345e-016 0.9815750769220609 -0.1910768650712333 -2.424867604065345e-016 0.4737087120728662 0.8806815861060491 -6.859573370860139e-016 0.4737087120732123 0.8806815861058629 -6.859573370856385e-016 -0.4737087120732123 -0.8806815861058629 6.859573370856385e-016 -0.4737087120728662 -0.8806815861060491 6.859573370860139e-016 -0.9950579620468055 -0.09929578121581073 4.470949100196617e-016 -0.9950579620468241 -0.09929578121562541 4.470949100182238e-016 0.9950579620468241 0.09929578121562541 -4.470949100182238e-016 0.9950579620468055 0.09929578121581073 -4.470949100196617e-016 0.7247432028744546 0.689019078028524 -3.43853349179825e-016 0.7247432028746919 0.6890190780282746 -3.438533491794182e-016 -0.7247432028744546 -0.689019078028524 3.43853349179825e-016 -0.7247432028746919 -0.6890190780282746 3.438533491794182e-016 -0.9802806956655348 -0.1976101153926477 1.211589346179273e-015 -0.9802806956655348 -0.1976101153926477 1.211589346179273e-015 0.9802806956655348 0.1976101153926477 -1.211589346179273e-015 0.9802806956655348 0.1976101153926477 -1.211589346179273e-015 0.8263571763205716 0.5631463549944115 -1.487002955215851e-016 0.8263571763205716 0.5631463549944115 -1.487002955215851e-016 -0.8263571763205716 -0.5631463549944115 1.487002955215851e-016 -0.8263571763205716 -0.5631463549944115 1.487002955215851e-016 -0.8275286208343599 -0.5614235314804523 5.207776816358505e-016 -0.8275286208343599 -0.5614235314804523 5.207776816358505e-016 -0.8275286208343599 -0.5614235314804523 5.207776816358505e-016 -0.8275286208343599 -0.5614235314804523 5.207776816358505e-016 0.8275286208343599 0.5614235314804523 -5.207776816358505e-016 0.8275286208343599 0.5614235314804523 -5.207776816358505e-016 0.8275286208343599 0.5614235314804523 -5.207776816358505e-016 0.8275286208343599 0.5614235314804523 -5.207776816358505e-016 0.9955822373234341 0.09389360322229343 5.981928992555496e-016 0.9823679825478582 0.1869576071328771 8.692818038139195e-016 0.9823679825478582 0.1869576071328771 8.692818038139195e-016 0.9955822373234329 0.09389360322230579 5.981928992555859e-016 -0.9955822373234329 -0.09389360322230579 -5.981928992555859e-016 -0.9955822373234341 -0.09389360322229343 -5.981928992555496e-016 -0.9823679825478582 -0.1869576071328771 -8.692818038139195e-016 -0.9823679825478582 -0.1869576071328771 -8.692818038139195e-016 -0.5298743050136154 -0.8480761881377984 5.114604199731215e-016 -0.5298743050136154 -0.8480761881377984 5.114604199731215e-016 -0.5298743050136154 -0.8480761881377984 5.114604199731215e-016 -0.5298743050136154 -0.8480761881377984 5.114604199731215e-016 0.5298743050136154 0.8480761881377984 -5.114604199731215e-016 0.5298743050136154 0.8480761881377984 -5.114604199731215e-016 0.5298743050136154 0.8480761881377984 -5.114604199731215e-016 0.5298743050136154 0.8480761881377984 -5.114604199731215e-016 0.985395206490012 -0.1702829616447474 -1.779675856487827e-016 0.9853952064899864 -0.1702829616448972 -1.779675856492266e-016 -0.9853952064899864 0.1702829616448972 1.779675856492266e-016 -0.985395206490012 0.1702829616447474 1.779675856487827e-016 -0.1104315260748452 -0.9938837346736191 8.944527376523216e-016 -0.1104315260748452 -0.9938837346736191 8.944527376523216e-016 -0.1104315260748452 -0.9938837346736191 8.944527376523216e-016 -0.1104315260748452 -0.9938837346736191 8.944527376523216e-016 0.1104315260748452 0.9938837346736191 -8.944527376523216e-016 0.1104315260748452 0.9938837346736191 -8.944527376523216e-016 0.1104315260748452 0.9938837346736191 -8.944527376523216e-016 0.1104315260748452 0.9938837346736191 -8.944527376523216e-016 0.9420074259469349 -0.3355920283034596 -6.725554577881759e-016 0.9420074259469349 -0.3355920283034596 -6.725554577881759e-016 -0.9420074259469349 0.3355920283034596 6.725554577881759e-016 -0.9420074259469349 0.3355920283034596 6.725554577881759e-016 -0.1102467874167259 -0.993904243810384 6.708238771309985e-016 -0.05520759091662358 -0.9984748979845124 5.583080201775351e-016 -0.1102467874167259 -0.993904243810384 6.708238771309985e-016 -0.05520759091651105 -0.9984748979845188 5.583080201773036e-016 0.05520759091651105 0.9984748979845188 -5.583080201773036e-016 0.1102467874167259 0.993904243810384 -6.708238771309985e-016 0.05520759091662358 0.9984748979845124 -5.583080201775351e-016 0.1102467874167259 0.993904243810384 -6.708238771309985e-016 0.5679887144730734 -0.8230363419869291 7.069163686521885e-016 0.6548967689809576 -0.7557183483139087 4.077370226329801e-016 0.5679887144730639 -0.8230363419869358 7.069163686522198e-016 0.6548967689809576 -0.7557183483139087 4.077370226329801e-016 -0.6548967689809576 0.7557183483139087 -4.077370226329801e-016 -0.5679887144730734 0.8230363419869291 -7.069163686521885e-016 -0.6548967689809576 0.7557183483139087 -4.077370226329801e-016 -0.5679887144730639 0.8230363419869358 -7.069163686522198e-016 0.1665297962757859 -0.9860364227311005 2.849117267544863e-016 0.1665297962761034 -0.9860364227310466 2.849117267541708e-016 -0.1665297962757859 0.9860364227311005 -2.849117267544863e-016 -0.1665297962761034 0.9860364227310466 -2.849117267541708e-016 0.4025916445628477 -0.9153796850095494 5.594422590571354e-016 0.4025916445628078 -0.9153796850095669 5.594422590568953e-016 -0.4025916445628477 0.9153796850095494 -5.594422590571354e-016 -0.4025916445628078 0.9153796850095669 -5.594422590568953e-016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"136\" source=\"#ID9491\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9489\">\r\n\t\t\t\t\t<float_array count=\"184\" id=\"ID9492\">-0.9586539199494877 -7.72392644590666e-017 -0.9641827323889584 0.0218722659667491 -0.9641827323889611 -4.287862883778173e-015 -0.9586539199494549 0.02187226596675752 -0.8692499405401071 0.02187226596675341 -0.967406903600325 1.868229937231607e-017 -0.8692499405399893 -1.261318855858502e-014 -0.9674069036002914 0.02187226596675762 -0.8307238301656639 0.02187226596674918 -0.8361782121232858 4.210623619319112e-015 -0.830723830165672 -4.210623619319112e-015 -0.8361782121232555 0.02187226596674076 -0.8685470464744732 8.421247238638224e-015 -0.8692499405401071 0.02187226596675339 -0.8692499405399893 -1.263187085795734e-014 -0.8685470464745237 0.02187226596674918 -0.59589500884685 0.02187226596674503 -0.590499238097927 4.268585705263681e-015 -0.5904992380979045 0.02187226596674082 -0.5958950088468664 -4.152661533374547e-015 -0.8678462921168458 0.0218722659667492 -0.8685470464744732 8.439929538010539e-015 -0.8678462921168122 -1.682381217790414e-014 -0.8685470464745237 0.0218722659667492 -0.2423082801869886 0.02187226596675362 -0.2369877577617077 -3.979610319867792e-015 -0.2369877577616962 0.0218722659667452 -0.2423082801869948 1.707350777672776e-014 -0.7998710257806282 -8.150766071651646e-015 -0.8047018450795873 0.02187226596674945 -0.8047018450795604 -1.657201331028989e-014 -0.7998710257805785 0.02187226596674945 -0.1261871373657186 0.02187226596675729 -0.05580786307141308 1.652665182649925e-014 -0.05580786307140676 0.02187226596675308 -0.1261871373657165 -8.737089889415433e-015 -0.6563451028445286 0.02187226596674527 -0.6615362119135566 -8.126367727409051e-015 -0.6563451028444796 -1.654761496604729e-014 -0.6615362119135125 0.02187226596674948 0.07024178935243225 0.0218722659667588 0.06562909232469638 1.195854770551324e-015 0.07024178935243762 -7.225392468086854e-015 0.06562909232471495 0.02187226596677564 -0.4451483536709278 -1.673300245541653e-014 -0.4399192102041855 0.02187226596674929 -0.4451483536709685 0.02187226596674508 -0.439919210204189 1.094920218599154e-016 0.437450385781772 0.02187226596674964 0.4423211235090268 4.607791985584499e-016 0.4423211235090425 0.02187226596677491 0.4374503857817773 4.671402817877562e-015 -0.1045963600783814 -4.950095781659093e-015 -0.1098467002102021 0.02187226596674844 -0.1098467002102062 -7.394721623399172e-016 -0.1045963600783824 0.02187226596675265 0.7578407152772134 4.534057011048134e-015 0.7485812544749166 0.02187226596674951 0.7485812544748816 3.234333917290154e-016 0.7578407152772101 0.02187226596674951 0.05628715765494181 -4.485851387601883e-015 0.1257078427821688 0.02187226596675312 0.0562871576549376 0.02187226596675312 0.1257078427821751 -2.75227768282761e-016 0.9485780891126994 0.0218722659667494 0.9473089689935437 2.19948462534451e-016 0.9485780891126506 2.199484625344365e-016 0.9473089689935609 0.02187226596674519 0.4054248482489112 5.134577364548503e-016 0.4125276232522324 0.0218722659667497 0.4054248482488996 0.0218722659667539 0.412527623252227 -3.697165882864282e-015 0.9473546594748428 0.02187226596674513 0.9460834127128253 4.375462990083143e-015 0.9473546594748257 1.64839370764029e-016 0.9460834127128083 0.02187226596674513 0.7420559932244062 0.02187226596674899 0.7348190463331225 -4.398830885368735e-015 0.742055993224412 -4.398830885368748e-015 0.7348190463331439 0.02187226596674899 0.9674069036003419 4.27276333588758e-015 0.8692499405400734 0.02187226596675345 0.8692499405400398 -4.148483902750647e-015 0.967406903600325 0.02187226596674503 0.8287167661160906 0.02187226596675732 0.8248950265129112 -4.498466394958869e-015 0.8287167661161053 -8.709090014277977e-015 0.8248950265129014 0.0218722659667489 0.8669905696256188 -4.228679390749545e-015 0.8640195573818111 0.02187226596675759 0.864019557381827 -8.43930301006866e-015 0.8669905696256507 0.02187226596675338</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"92\" source=\"#ID9492\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9488\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9486\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9487\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"46\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9488\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9489\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 0 5 9 6 0 5 8 4 3 7 12 8 13 9 14 10 13 9 12 8 15 11 20 12 21 13 22 14 21 13 20 12 23 15 28 16 29 17 30 18 29 17 28 16 31 19 36 20 37 21 38 22 37 21 36 20 39 23 44 24 45 25 46 26 45 25 44 24 47 27 52 28 36 29 38 30 36 29 52 28 53 31 56 32 47 33 44 34 47 33 56 32 57 35 60 36 52 37 61 38 52 37 60 36 53 39 56 40 64 41 57 42 64 41 56 40 65 43 61 44 68 45 60 46 68 45 61 44 69 47 72 48 73 49 74 50 73 49 72 48 75 51 80 52 81 53 82 54 81 53 80 52 83 55 88 56 89 57 90 58 89 57 88 56 91 59 80 60 96 61 83 62 96 61 80 60 97 63 100 64 101 65 102 66 101 65 100 64 103 67 97 68 108 69 96 70 108 69 97 68 109 71 112 72 113 73 114 74 113 73 112 72 115 75 120 76 121 77 122 78 121 77 120 76 123 79 113 80 128 81 129 82 128 81 113 80 115 83 132 84 122 85 133 86 122 85 132 84 120 87 129 88 132 89 133 90 132 89 129 88 128 91</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"46\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9488\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9489\" />\r\n\t\t\t\t\t<p>4 3 5 0 6 1 7 2 6 1 5 0 4 7 10 4 5 5 11 6 5 5 10 4 16 11 17 8 18 9 19 10 18 9 17 8 24 15 25 12 26 13 27 14 26 13 25 12 32 19 33 16 34 17 35 18 34 17 33 16 40 23 41 20 42 21 43 22 42 21 41 20 48 27 49 24 50 25 51 26 50 25 49 24 54 31 55 28 41 29 43 30 41 29 55 28 58 35 59 32 48 33 49 34 48 33 59 32 54 39 62 36 55 37 63 38 55 37 62 36 66 43 59 40 67 41 58 42 67 41 59 40 70 47 63 44 71 45 62 46 71 45 63 44 76 51 77 48 78 49 79 50 78 49 77 48 84 55 85 52 86 53 87 54 86 53 85 52 92 59 93 56 94 57 95 58 94 57 93 56 98 63 85 60 99 61 84 62 99 61 85 60 104 67 105 64 106 65 107 66 106 65 105 64 110 71 98 68 111 69 99 70 111 69 98 68 116 75 117 72 118 73 119 74 118 73 117 72 124 79 125 76 126 77 127 78 126 77 125 76 116 83 118 80 130 81 131 82 130 81 118 80 125 87 134 84 127 85 135 86 127 85 134 84 130 91 131 88 134 89 135 90 134 89 131 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9497\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9503\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9507\">2.273736754432321e-013 0 640.8733615231577 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.0236220472442 0 640.8733615231577 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 6.821210263296962e-013 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.0236220472442 0 640.8733615231577 6.821210263296962e-013 5.900346877751872e-011 0 11.02362204724477 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 11.02362204724477 5.900346877751872e-011 0 11.02362204724432 7.874015748031525 640.8733615231595 11.0236220472442 0 640.8733615231577 11.02362204724477 7.874015748090415 1.818989403545857e-012 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 5.900346877751872e-011 0 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724477 5.900346877751872e-011 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9507\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9504\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9508\">7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9508\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9506\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9509\">4.209712601685165e-015 1.096649602822556e-012 0.2041411490230429 0.1458151064461249 2.104400792025609e-015 0.1458151064461228 0.2041411490230408 1.096649602822556e-012 -2.153297912249132e-015 11.86802521339183 -0.2041411490230513 2.021113168162476e-014 -1.267985696054727e-014 2.021113168162475e-014 -0.2041411490230429 11.86802521339183 -0.1458151064450261 11.86802521339184 -1.09265682921331e-012 9.696522289450465e-034 4.224110513231977e-030 11.86802521339181 -0.1458151064461188 3.36849889545529e-014 0.2041411490230408 11.86802521339181 1.26318708579577e-014 -1.009655482475713e-025 0.2041411490230513 -1.009593405158871e-025 4.210623619319112e-015 11.86802521339181 1.092452034187268e-012 1.567035654460425e-020 0.145815106445028 11.86802521339184 -2.047950260419916e-016 11.86802521339181 0.1458151064461186 3.368500462490944e-014 -0.2041411490230513 0.1458151064461188 -1.263187085795734e-014 1.09265682921331e-012 -1.263187085795734e-014 0.1458151064461188 -0.2041411490230513 1.09265682921331e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9509\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9505\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9503\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9504\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9505\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9506\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 16 16 17 17 18 18 17 17 16 16 19 19 20 20 21 21 22 22 21 21 20 20 23 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9511\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9512\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9516\">2.273736754432321e-013 0 640.8733615231577 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.0236220472442 0 640.8733615231577 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 6.821210263296962e-013 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.0236220472442 0 640.8733615231577 6.821210263296962e-013 5.900346877751872e-011 0 11.02362204724477 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 11.02362204724477 5.900346877751872e-011 0 11.02362204724432 7.874015748031525 640.8733615231595 11.0236220472442 0 640.8733615231577 11.02362204724477 7.874015748090415 1.818989403545857e-012 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 5.900346877751872e-011 0 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724477 5.900346877751872e-011 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9516\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9513\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9517\">7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9517\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9515\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9518\">4.209712601685165e-015 1.096649602822556e-012 0.2041411490230429 0.1458151064461249 2.104400792025609e-015 0.1458151064461228 0.2041411490230408 1.096649602822556e-012 -2.153297912249132e-015 11.86802521339183 -0.2041411490230513 2.021113168162476e-014 -1.267985696054727e-014 2.021113168162475e-014 -0.2041411490230429 11.86802521339183 -0.1458151064450261 11.86802521339184 -1.09265682921331e-012 9.696522289450465e-034 4.224110513231977e-030 11.86802521339181 -0.1458151064461188 3.36849889545529e-014 0.2041411490230408 11.86802521339181 1.26318708579577e-014 -1.009655482475713e-025 0.2041411490230513 -1.009593405158871e-025 4.210623619319112e-015 11.86802521339181 1.092452034187268e-012 1.567035654460425e-020 0.145815106445028 11.86802521339184 -2.047950260419916e-016 11.86802521339181 0.1458151064461186 3.368500462490944e-014 -0.2041411490230513 0.1458151064461188 -1.263187085795734e-014 1.09265682921331e-012 -1.263187085795734e-014 0.1458151064461188 -0.2041411490230513 1.09265682921331e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9518\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9514\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9512\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9513\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9514\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9515\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 16 16 17 17 18 18 17 17 16 16 19 19 20 20 21 21 22 22 21 21 20 20 23 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9520\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9521\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9525\">2.273736754432321e-013 0 640.8733615231577 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.0236220472442 0 640.8733615231577 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 6.821210263296962e-013 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.0236220472442 0 640.8733615231577 6.821210263296962e-013 5.900346877751872e-011 0 11.02362204724477 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 11.02362204724477 5.900346877751872e-011 0 11.02362204724432 7.874015748031525 640.8733615231595 11.0236220472442 0 640.8733615231577 11.02362204724477 7.874015748090415 1.818989403545857e-012 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 5.900346877751872e-011 0 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724477 5.900346877751872e-011 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9525\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9522\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9526\">7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9526\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9524\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9527\">4.209712601685165e-015 1.096649602822556e-012 0.2041411490230429 0.1458151064461249 2.104400792025609e-015 0.1458151064461228 0.2041411490230408 1.096649602822556e-012 -2.153297912249132e-015 11.86802521339183 -0.2041411490230513 2.021113168162476e-014 -1.267985696054727e-014 2.021113168162475e-014 -0.2041411490230429 11.86802521339183 -0.1458151064450261 11.86802521339184 -1.09265682921331e-012 9.696522289450465e-034 4.224110513231977e-030 11.86802521339181 -0.1458151064461188 3.36849889545529e-014 0.2041411490230408 11.86802521339181 1.26318708579577e-014 -1.009655482475713e-025 0.2041411490230513 -1.009593405158871e-025 4.210623619319112e-015 11.86802521339181 1.092452034187268e-012 1.567035654460425e-020 0.145815106445028 11.86802521339184 -2.047950260419916e-016 11.86802521339181 0.1458151064461186 3.368500462490944e-014 -0.2041411490230513 0.1458151064461188 -1.263187085795734e-014 1.09265682921331e-012 -1.263187085795734e-014 0.1458151064461188 -0.2041411490230513 1.09265682921331e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9527\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9523\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9521\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9522\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9523\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9524\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 16 16 17 17 18 18 17 17 16 16 19 19 20 20 21 21 22 22 21 21 20 20 23 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9529\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9530\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9534\">2.273736754432321e-013 0 640.8733615231577 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.0236220472442 0 640.8733615231577 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 6.821210263296962e-013 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.0236220472442 0 640.8733615231577 6.821210263296962e-013 5.900346877751872e-011 0 11.02362204724477 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 11.02362204724477 5.900346877751872e-011 0 11.02362204724432 7.874015748031525 640.8733615231595 11.0236220472442 0 640.8733615231577 11.02362204724477 7.874015748090415 1.818989403545857e-012 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 5.900346877751872e-011 0 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724477 5.900346877751872e-011 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9534\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9531\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9535\">7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9535\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9533\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9536\">4.209712601685165e-015 1.096649602822556e-012 0.2041411490230429 0.1458151064461249 2.104400792025609e-015 0.1458151064461228 0.2041411490230408 1.096649602822556e-012 -2.153297912249132e-015 11.86802521339183 -0.2041411490230513 2.021113168162476e-014 -1.267985696054727e-014 2.021113168162475e-014 -0.2041411490230429 11.86802521339183 -0.1458151064450261 11.86802521339184 -1.09265682921331e-012 9.696522289450465e-034 4.224110513231977e-030 11.86802521339181 -0.1458151064461188 3.36849889545529e-014 0.2041411490230408 11.86802521339181 1.26318708579577e-014 -1.009655482475713e-025 0.2041411490230513 -1.009593405158871e-025 4.210623619319112e-015 11.86802521339181 1.092452034187268e-012 1.567035654460425e-020 0.145815106445028 11.86802521339184 -2.047950260419916e-016 11.86802521339181 0.1458151064461186 3.368500462490944e-014 -0.2041411490230513 0.1458151064461188 -1.263187085795734e-014 1.09265682921331e-012 -1.263187085795734e-014 0.1458151064461188 -0.2041411490230513 1.09265682921331e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9536\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9532\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9530\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9531\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9532\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9533\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 16 16 17 17 18 18 17 17 16 16 19 19 20 20 21 21 22 22 21 21 20 20 23 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9538\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9539\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9543\">2.273736754432321e-013 0 640.8733615231577 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.0236220472442 0 640.8733615231577 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 6.821210263296962e-013 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.0236220472442 0 640.8733615231577 6.821210263296962e-013 5.900346877751872e-011 0 11.02362204724477 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 11.02362204724477 5.900346877751872e-011 0 11.02362204724432 7.874015748031525 640.8733615231595 11.0236220472442 0 640.8733615231577 11.02362204724477 7.874015748090415 1.818989403545857e-012 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 5.900346877751872e-011 0 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724477 5.900346877751872e-011 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9543\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9540\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9544\">7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9544\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9542\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9545\">4.209712601685165e-015 1.096649602822556e-012 0.2041411490230429 0.1458151064461249 2.104400792025609e-015 0.1458151064461228 0.2041411490230408 1.096649602822556e-012 -2.153297912249132e-015 11.86802521339183 -0.2041411490230513 2.021113168162476e-014 -1.267985696054727e-014 2.021113168162475e-014 -0.2041411490230429 11.86802521339183 -0.1458151064450261 11.86802521339184 -1.09265682921331e-012 9.696522289450465e-034 4.224110513231977e-030 11.86802521339181 -0.1458151064461188 3.36849889545529e-014 0.2041411490230408 11.86802521339181 1.26318708579577e-014 -1.009655482475713e-025 0.2041411490230513 -1.009593405158871e-025 4.210623619319112e-015 11.86802521339181 1.092452034187268e-012 1.567035654460425e-020 0.145815106445028 11.86802521339184 -2.047950260419916e-016 11.86802521339181 0.1458151064461186 3.368500462490944e-014 -0.2041411490230513 0.1458151064461188 -1.263187085795734e-014 1.09265682921331e-012 -1.263187085795734e-014 0.1458151064461188 -0.2041411490230513 1.09265682921331e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9545\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9541\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9539\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9540\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9541\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9542\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 16 16 17 17 18 18 17 17 16 16 19 19 20 20 21 21 22 22 21 21 20 20 23 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9547\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9548\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9552\">2.273736754432321e-013 0 640.8733615231577 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.0236220472442 0 640.8733615231577 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 6.821210263296962e-013 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.0236220472442 0 640.8733615231577 6.821210263296962e-013 5.900346877751872e-011 0 11.02362204724477 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 11.02362204724477 5.900346877751872e-011 0 11.02362204724432 7.874015748031525 640.8733615231595 11.0236220472442 0 640.8733615231577 11.02362204724477 7.874015748090415 1.818989403545857e-012 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 5.900346877751872e-011 0 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724477 5.900346877751872e-011 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9552\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9549\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9553\">7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9553\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9551\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9554\">4.209712601685165e-015 1.096649602822556e-012 0.2041411490230429 0.1458151064461249 2.104400792025609e-015 0.1458151064461228 0.2041411490230408 1.096649602822556e-012 -2.153297912249132e-015 11.86802521339183 -0.2041411490230513 2.021113168162476e-014 -1.267985696054727e-014 2.021113168162475e-014 -0.2041411490230429 11.86802521339183 -0.1458151064450261 11.86802521339184 -1.09265682921331e-012 9.696522289450465e-034 4.224110513231977e-030 11.86802521339181 -0.1458151064461188 3.36849889545529e-014 0.2041411490230408 11.86802521339181 1.26318708579577e-014 -1.009655482475713e-025 0.2041411490230513 -1.009593405158871e-025 4.210623619319112e-015 11.86802521339181 1.092452034187268e-012 1.567035654460425e-020 0.145815106445028 11.86802521339184 -2.047950260419916e-016 11.86802521339181 0.1458151064461186 3.368500462490944e-014 -0.2041411490230513 0.1458151064461188 -1.263187085795734e-014 1.09265682921331e-012 -1.263187085795734e-014 0.1458151064461188 -0.2041411490230513 1.09265682921331e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9554\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9550\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9548\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9549\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9550\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9551\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 16 16 17 17 18 18 17 17 16 16 19 19 20 20 21 21 22 22 21 21 20 20 23 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9556\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9557\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9561\">2.273736754432321e-013 0 640.8733615231577 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.0236220472442 0 640.8733615231577 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 6.821210263296962e-013 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.0236220472442 0 640.8733615231577 6.821210263296962e-013 5.900346877751872e-011 0 11.02362204724477 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 11.02362204724477 5.900346877751872e-011 0 11.02362204724432 7.874015748031525 640.8733615231595 11.0236220472442 0 640.8733615231577 11.02362204724477 7.874015748090415 1.818989403545857e-012 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 5.900346877751872e-011 0 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724477 5.900346877751872e-011 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9561\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9558\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9562\">7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9562\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9560\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9563\">4.209712601685165e-015 1.096649602822556e-012 0.2041411490230429 0.1458151064461249 2.104400792025609e-015 0.1458151064461228 0.2041411490230408 1.096649602822556e-012 -2.153297912249132e-015 11.86802521339183 -0.2041411490230513 2.021113168162476e-014 -1.267985696054727e-014 2.021113168162475e-014 -0.2041411490230429 11.86802521339183 -0.1458151064450261 11.86802521339184 -1.09265682921331e-012 9.696522289450465e-034 4.224110513231977e-030 11.86802521339181 -0.1458151064461188 3.36849889545529e-014 0.2041411490230408 11.86802521339181 1.26318708579577e-014 -1.009655482475713e-025 0.2041411490230513 -1.009593405158871e-025 4.210623619319112e-015 11.86802521339181 1.092452034187268e-012 1.567035654460425e-020 0.145815106445028 11.86802521339184 -2.047950260419916e-016 11.86802521339181 0.1458151064461186 3.368500462490944e-014 -0.2041411490230513 0.1458151064461188 -1.263187085795734e-014 1.09265682921331e-012 -1.263187085795734e-014 0.1458151064461188 -0.2041411490230513 1.09265682921331e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9563\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9559\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9557\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9558\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9559\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9560\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 16 16 17 17 18 18 17 17 16 16 19 19 20 20 21 21 22 22 21 21 20 20 23 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9565\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9566\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9570\">2.273736754432321e-013 0 640.8733615231577 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.0236220472442 0 640.8733615231577 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 6.821210263296962e-013 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.0236220472442 0 640.8733615231577 6.821210263296962e-013 5.900346877751872e-011 0 11.02362204724477 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 11.02362204724477 5.900346877751872e-011 0 11.02362204724432 7.874015748031525 640.8733615231595 11.0236220472442 0 640.8733615231577 11.02362204724477 7.874015748090415 1.818989403545857e-012 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 5.900346877751872e-011 0 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724477 5.900346877751872e-011 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9570\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9567\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9571\">7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9571\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9569\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9572\">4.209712601685165e-015 1.096649602822556e-012 0.2041411490230429 0.1458151064461249 2.104400792025609e-015 0.1458151064461228 0.2041411490230408 1.096649602822556e-012 -2.153297912249132e-015 11.86802521339183 -0.2041411490230513 2.021113168162476e-014 -1.267985696054727e-014 2.021113168162475e-014 -0.2041411490230429 11.86802521339183 -0.1458151064450261 11.86802521339184 -1.09265682921331e-012 9.696522289450465e-034 4.224110513231977e-030 11.86802521339181 -0.1458151064461188 3.36849889545529e-014 0.2041411490230408 11.86802521339181 1.26318708579577e-014 -1.009655482475713e-025 0.2041411490230513 -1.009593405158871e-025 4.210623619319112e-015 11.86802521339181 1.092452034187268e-012 1.567035654460425e-020 0.145815106445028 11.86802521339184 -2.047950260419916e-016 11.86802521339181 0.1458151064461186 3.368500462490944e-014 -0.2041411490230513 0.1458151064461188 -1.263187085795734e-014 1.09265682921331e-012 -1.263187085795734e-014 0.1458151064461188 -0.2041411490230513 1.09265682921331e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9572\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9568\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9566\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9567\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9568\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9569\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 16 16 17 17 18 18 17 17 16 16 19 19 20 20 21 21 22 22 21 21 20 20 23 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9574\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9575\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID9579\">6.821210263296962e-013 -1.13686837721616e-013 640.8733615231595 11.02362204724454 7.874015748031468 640.8733615231613 2.273736754432321e-013 7.874015748031127 640.8733615231613 11.02362204724386 -1.13686837721616e-013 640.8733615231577 11.02362204724386 -1.13686837721616e-013 640.8733615231577 6.821210263296962e-013 -1.13686837721616e-013 640.8733615231595 11.02362204724454 7.874015748031468 640.8733615231613 2.273736754432321e-013 7.874015748031127 640.8733615231613 2.273736754432321e-013 7.874015748031127 640.8733615231613 11.02362204724523 7.874015748090358 1.818989403545857e-012 6.821210263296962e-013 7.874015748090358 -1.818989403545857e-012 11.02362204724454 7.874015748031468 640.8733615231613 11.02362204724454 7.874015748031468 640.8733615231613 2.273736754432321e-013 7.874015748031127 640.8733615231613 11.02362204724523 7.874015748090358 1.818989403545857e-012 6.821210263296962e-013 7.874015748090358 -1.818989403545857e-012 2.273736754432321e-013 7.874015748031127 640.8733615231613 9.094947017729282e-013 5.88897819397971e-011 0 6.821210263296962e-013 -1.13686837721616e-013 640.8733615231595 6.821210263296962e-013 7.874015748090358 -1.818989403545857e-012 6.821210263296962e-013 7.874015748090358 -1.818989403545857e-012 2.273736754432321e-013 7.874015748031127 640.8733615231613 9.094947017729282e-013 5.88897819397971e-011 0 6.821210263296962e-013 -1.13686837721616e-013 640.8733615231595 11.02362204724477 5.894662535865791e-011 1.818989403545857e-012 6.821210263296962e-013 -1.13686837721616e-013 640.8733615231595 9.094947017729282e-013 5.88897819397971e-011 0 11.02362204724386 -1.13686837721616e-013 640.8733615231577 11.02362204724386 -1.13686837721616e-013 640.8733615231577 11.02362204724477 5.894662535865791e-011 1.818989403545857e-012 6.821210263296962e-013 -1.13686837721616e-013 640.8733615231595 9.094947017729282e-013 5.88897819397971e-011 0 11.02362204724477 5.894662535865791e-011 1.818989403545857e-012 11.02362204724454 7.874015748031468 640.8733615231613 11.02362204724386 -1.13686837721616e-013 640.8733615231577 11.02362204724523 7.874015748090358 1.818989403545857e-012 11.02362204724523 7.874015748090358 1.818989403545857e-012 11.02362204724477 5.894662535865791e-011 1.818989403545857e-012 11.02362204724454 7.874015748031468 640.8733615231613 11.02362204724386 -1.13686837721616e-013 640.8733615231577 11.02362204724523 7.874015748090358 1.818989403545857e-012 9.094947017729282e-013 5.88897819397971e-011 0 6.821210263296962e-013 7.874015748090358 -1.818989403545857e-012 11.02362204724477 5.894662535865791e-011 1.818989403545857e-012 11.02362204724477 5.894662535865791e-011 1.818989403545857e-012 11.02362204724523 7.874015748090358 1.818989403545857e-012 9.094947017729282e-013 5.88897819397971e-011 0 6.821210263296962e-013 7.874015748090358 -1.818989403545857e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9579\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9576\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID9580\">7.686823996332774e-020 -9.240371391820357e-014 1 7.686823996332774e-020 -9.240371391820357e-014 1 7.686823996332774e-020 -9.240371391820357e-014 1 7.686823996332774e-020 -9.240371391820357e-014 1 -7.686823996332774e-020 9.240371391820357e-014 -1 -7.686823996332774e-020 9.240371391820357e-014 -1 -7.686823996332774e-020 9.240371391820357e-014 -1 -7.686823996332774e-020 9.240371391820357e-014 -1 -3.25747601710811e-016 1 9.240371317704973e-014 -3.25747601710811e-016 1 9.240371317704973e-014 -3.25747601710811e-016 1 9.240371317704973e-014 -3.25747601710811e-016 1 9.240371317704973e-014 3.25747601710811e-016 -1 -9.240371317704973e-014 3.25747601710811e-016 -1 -9.240371317704973e-014 3.25747601710811e-016 -1 -9.240371317704973e-014 3.25747601710811e-016 -1 -9.240371317704973e-014 -1 -1.062097377837355e-015 7.655060260810738e-020 -1 -1.062097377837355e-015 7.655060260810738e-020 -1 -1.062097377837355e-015 7.655060260810738e-020 -1 -1.062097377837355e-015 7.655060260810738e-020 1 1.062097377837355e-015 -7.655060260810738e-020 1 1.062097377837355e-015 -7.655060260810738e-020 1 1.062097377837355e-015 -7.655060260810738e-020 1 1.062097377837355e-015 -7.655060260810738e-020 3.25747601710811e-016 -1 -9.240371317704973e-014 3.25747601710811e-016 -1 -9.240371317704973e-014 3.25747601710811e-016 -1 -9.240371317704973e-014 3.25747601710811e-016 -1 -9.240371317704973e-014 -3.25747601710811e-016 1 9.240371317704973e-014 -3.25747601710811e-016 1 9.240371317704973e-014 -3.25747601710811e-016 1 9.240371317704973e-014 -3.25747601710811e-016 1 9.240371317704973e-014 1 1.062097377837355e-015 -7.655060260810738e-020 1 1.062097377837355e-015 -7.655060260810738e-020 1 1.062097377837355e-015 -7.655060260810738e-020 1 1.062097377837355e-015 -7.655060260810738e-020 -1 -1.062097377837355e-015 7.655060260810738e-020 -1 -1.062097377837355e-015 7.655060260810738e-020 -1 -1.062097377837355e-015 7.655060260810738e-020 -1 -1.062097377837355e-015 7.655060260810738e-020 -7.697411908173453e-020 9.240371370644533e-014 -1 -7.697411908173453e-020 9.240371370644533e-014 -1 -7.697411908173453e-020 9.240371370644533e-014 -1 -7.697411908173453e-020 9.240371370644533e-014 -1 7.697411908173453e-020 -9.240371370644533e-014 1 7.697411908173453e-020 -9.240371370644533e-014 1 7.697411908173453e-020 -9.240371370644533e-014 1 7.697411908173453e-020 -9.240371370644533e-014 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9580\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9578\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9581\">0.2041411490230345 1.094544294782624e-012 1.263095858374734e-014 1.094544294782627e-012 0.2041411490230471 0.1458151064461238 4.209711345109119e-015 0.1458151064461175 -0.2041411490230471 11.86802521339186 -4.258122540536785e-015 11.86802521339186 -0.2041411490230598 2.021113168162486e-014 -1.267936977917537e-014 -4.715884622748094e-014 -0.1458151064461177 -3.36849889545529e-014 -0.1458151064450209 11.86802521339188 -1.09055151740365e-012 1.289303101659321e-033 2.105311809659569e-015 11.86802521339184 0.2041411490230345 11.86802521339181 0.2041411490230513 3.368498895445204e-014 1.263187085795734e-014 11.86802521339184 1.68424944772768e-014 -1.007710096189632e-025 0.1458151064461175 3.368500458168087e-014 1.091387355529394e-012 3.368500458168087e-014 0.145815106445027 11.86802521339188 -2.322129588745626e-015 11.86802521339181 -0.2041411490230513 1.091604173308483e-012 -0.2041411490230597 0.1458151064461177 -1.684249447727645e-014 1.09055151740365e-012 -1.263187085795734e-014 0.1458151064461177</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9581\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9577\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9575\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9576\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9577\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 9 10 9 8 11 16 17 18 17 16 19 24 25 26 25 24 27 32 33 34 33 32 35 40 41 42 41 40 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9577\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9578\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 12 4 13 5 14 6 15 7 14 6 13 5 20 8 21 9 22 10 23 11 22 10 21 9 28 12 29 13 30 14 31 15 30 14 29 13 36 16 37 17 38 18 39 19 38 18 37 17 44 20 45 21 46 22 47 23 46 22 45 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9583\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9584\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9588\">2.273736754432321e-013 0 640.8733615231577 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.0236220472442 0 640.8733615231577 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 6.821210263296962e-013 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.0236220472442 0 640.8733615231577 6.821210263296962e-013 5.900346877751872e-011 0 11.02362204724477 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 11.02362204724477 5.900346877751872e-011 0 11.02362204724432 7.874015748031525 640.8733615231595 11.0236220472442 0 640.8733615231577 11.02362204724477 7.874015748090415 1.818989403545857e-012 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 5.900346877751872e-011 0 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724477 5.900346877751872e-011 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9588\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9585\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9589\">7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9589\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9587\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9590\">4.209712601685165e-015 1.096649602822556e-012 0.2041411490230429 0.1458151064461249 2.104400792025609e-015 0.1458151064461228 0.2041411490230408 1.096649602822556e-012 -2.153297912249132e-015 11.86802521339183 -0.2041411490230513 2.021113168162476e-014 -1.267985696054727e-014 2.021113168162475e-014 -0.2041411490230429 11.86802521339183 -0.1458151064450261 11.86802521339184 -1.09265682921331e-012 9.696522289450465e-034 4.224110513231977e-030 11.86802521339181 -0.1458151064461188 3.36849889545529e-014 0.2041411490230408 11.86802521339181 1.26318708579577e-014 -1.009655482475713e-025 0.2041411490230513 -1.009593405158871e-025 4.210623619319112e-015 11.86802521339181 1.092452034187268e-012 1.567035654460425e-020 0.145815106445028 11.86802521339184 -2.047950260419916e-016 11.86802521339181 0.1458151064461186 3.368500462490944e-014 -0.2041411490230513 0.1458151064461188 -1.263187085795734e-014 1.09265682921331e-012 -1.263187085795734e-014 0.1458151064461188 -0.2041411490230513 1.09265682921331e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9590\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9586\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9584\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9585\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9586\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9587\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 16 16 17 17 18 18 17 17 16 16 19 19 20 20 21 21 22 22 21 21 20 20 23 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9592\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9593\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9597\">2.273736754432321e-013 0 640.8733615231558 11.02362204724432 7.874015748031752 640.8733615231595 1.13686837721616e-013 7.874015748031297 640.8733615231577 11.02362204724432 2.273736754432321e-013 640.8733615231577 6.821210263296962e-013 7.874015748090642 1.818989403545857e-012 11.02362204724432 7.874015748031752 640.8733615231595 11.02362204724477 7.874015748090415 0 1.13686837721616e-013 7.874015748031297 640.8733615231577 1.13686837721616e-013 7.874015748031297 640.8733615231577 6.821210263296962e-013 5.911715561524034e-011 0 2.273736754432321e-013 0 640.8733615231558 6.821210263296962e-013 7.874015748090642 1.818989403545857e-012 11.02362204724432 2.273736754432321e-013 640.8733615231577 6.821210263296962e-013 5.911715561524034e-011 0 11.02362204724477 5.88897819397971e-011 -1.818989403545857e-012 2.273736754432321e-013 0 640.8733615231558 11.02362204724477 5.88897819397971e-011 -1.818989403545857e-012 11.02362204724432 7.874015748031752 640.8733615231595 11.02362204724432 2.273736754432321e-013 640.8733615231577 11.02362204724477 7.874015748090415 0 11.02362204724477 7.874015748090415 0 6.821210263296962e-013 5.911715561524034e-011 0 6.821210263296962e-013 7.874015748090642 1.818989403545857e-012 11.02362204724477 5.88897819397971e-011 -1.818989403545857e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9597\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9594\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9598\">7.678883062452267e-020 -9.240371360056624e-014 1 7.678883062452267e-020 -9.240371360056624e-014 1 7.678883062452267e-020 -9.240371360056624e-014 1 7.678883062452267e-020 -9.240371360056624e-014 1 -4.025889056423255e-016 1 9.240371317704974e-014 -4.025889056423255e-016 1 9.240371317704974e-014 -4.025889056423255e-016 1 9.240371317704974e-014 -4.025889056423255e-016 1 9.240371317704974e-014 -1 -9.852070580516323e-016 7.676236084492096e-020 -1 -9.852070580516323e-016 7.676236084492096e-020 -1 -9.852070580516323e-016 7.676236084492096e-020 -1 -9.852070580516323e-016 7.676236084492096e-020 4.025889056423255e-016 -1 -9.240371317704974e-014 4.025889056423255e-016 -1 -9.240371317704974e-014 4.025889056423255e-016 -1 -9.240371317704974e-014 4.025889056423255e-016 -1 -9.240371317704974e-014 1 9.852070580516323e-016 -7.676236084492096e-020 1 9.852070580516323e-016 -7.676236084492096e-020 1 9.852070580516323e-016 -7.676236084492096e-020 1 9.852070580516323e-016 -7.676236084492096e-020 -7.673589106531927e-020 9.240371360056624e-014 -1 -7.673589106531927e-020 9.240371360056624e-014 -1 -7.673589106531927e-020 9.240371360056624e-014 -1 -7.673589106531927e-020 9.240371360056624e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9598\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9596\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9599\">4.209712287541154e-015 1.096649602822552e-012 0.2041411490230429 0.1458151064461291 2.104400477881597e-015 0.1458151064461207 0.2041411490230429 1.100860226441875e-012 -1.26905744020876e-014 2.021113168162437e-014 -0.204141149023043 11.86802521339183 -0.2041411490230514 -1.347385727292813e-014 -2.164015353789377e-015 11.86802521339179 -0.145815106445024 11.86802521339181 -1.094762141022969e-012 9.69652228945045e-034 4.148336108552099e-030 11.86802521339178 -0.145815106446123 3.36849889545529e-014 0.2041411490230429 11.86802521339181 1.263187085795778e-014 -1.011600868761793e-025 0.2041411490230513 -3.368498895465366e-014 4.210623619319112e-015 11.86802521339178 1.090350396102794e-012 -3.368497328419635e-014 0.1458151064450322 11.86802521339184 4.00950231846284e-015 11.86802521339181 0.1458151064461186 1.567035654460426e-020 -0.2041411490230513 0.1458151064461188 -1.263187085795734e-014 1.094762141022969e-012 -1.263187085795734e-014 0.145815106446123 -0.2041411490230513 1.090551517403647e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9599\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9595\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9593\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9594\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9595\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9596\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 16 16 17 17 18 18 17 17 16 16 19 19 20 20 21 21 22 22 21 21 20 20 23 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9601\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9602\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9606\">2.273736754432321e-013 0 640.8733615231577 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.0236220472442 0 640.8733615231577 1.13686837721616e-013 7.874015748031411 640.8733615231595 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724432 7.874015748031525 640.8733615231595 1.13686837721616e-013 7.874015748031411 640.8733615231595 6.821210263296962e-013 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.0236220472442 0 640.8733615231577 6.821210263296962e-013 5.900346877751872e-011 0 11.02362204724477 5.900346877751872e-011 0 2.273736754432321e-013 0 640.8733615231577 11.02362204724477 5.900346877751872e-011 0 11.02362204724432 7.874015748031525 640.8733615231595 11.0236220472442 0 640.8733615231577 11.02362204724477 7.874015748090415 1.818989403545857e-012 11.02362204724477 7.874015748090415 1.818989403545857e-012 6.821210263296962e-013 5.900346877751872e-011 0 6.821210263296962e-013 7.874015748090415 1.818989403545857e-012 11.02362204724477 5.900346877751872e-011 0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9606\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9603\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID9607\">7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 7.676236084492097e-020 -9.240371360056624e-014 1 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -3.290886915593148e-016 1 9.240371317704979e-014 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 -1 -1.003203063282832e-015 7.676236084492097e-020 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 3.290886915593148e-016 -1 -9.240371317704979e-014 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 1 1.003203063282832e-015 -7.676236084492097e-020 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1 -7.670942128571756e-020 9.240371360056622e-014 -1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9607\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9605\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9608\">4.209712601685165e-015 1.096649602822556e-012 0.2041411490230429 0.1458151064461249 2.104400792025609e-015 0.1458151064461228 0.2041411490230408 1.096649602822556e-012 -2.153297912249132e-015 11.86802521339183 -0.2041411490230513 2.021113168162476e-014 -1.267985696054727e-014 2.021113168162475e-014 -0.2041411490230429 11.86802521339183 -0.1458151064450261 11.86802521339184 -1.09265682921331e-012 9.696522289450465e-034 4.224110513231977e-030 11.86802521339181 -0.1458151064461188 3.36849889545529e-014 0.2041411490230408 11.86802521339181 1.26318708579577e-014 -1.009655482475713e-025 0.2041411490230513 -1.009593405158871e-025 4.210623619319112e-015 11.86802521339181 1.092452034187268e-012 1.567035654460425e-020 0.145815106445028 11.86802521339184 -2.047950260419916e-016 11.86802521339181 0.1458151064461186 3.368500462490944e-014 -0.2041411490230513 0.1458151064461188 -1.263187085795734e-014 1.09265682921331e-012 -1.263187085795734e-014 0.1458151064461188 -0.2041411490230513 1.09265682921331e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9608\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9604\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9602\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9603\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9604\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9605\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 16 16 17 17 18 18 17 17 16 16 19 19 20 20 21 21 22 22 21 21 20 20 23 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9611\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9612\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID9616\">379.9302076563988 22.31464938267436 7.874015749790488 440.9548545134411 58.69628000650437 1.860826159827411e-009 379.9302076564187 22.3146493826589 1.768057700246573e-009 440.9548545134194 58.69628000652051 7.874015749883256 311.5686663196856 2.967033587849528 7.874015749657701 311.5686663197072 2.967033587831111 1.629814505577087e-009 490.4838780554755 109.6325774558595 1.871740096248686e-009 490.4838780554534 109.6325774558754 7.87401574989417 240.5289565725968 1.971940664997874 7.874015749477621 240.5289565726185 1.971940664979684 1.449734554626048e-009 525.1419571787111 171.6523172357304 1.822627382352948e-009 525.1419571786906 171.6523172357479 7.874015749850514 171.6523172357306 19.39718455237221 7.8740157492648 171.6523172357526 19.3971845523547 1.231455826200545e-009 542.567201066079 240.5289565725975 1.717125996947289e-009 542.5672010660609 240.5289565726159 7.874015749745013 109.6325774558577 54.05526367560378 7.874015749022874 109.6325774558778 54.05526367558718 9.949872037395835e-010 541.5721081432357 311.5686663196859 1.551597961224616e-009 541.5721081432158 311.568666319705 7.874015749579485 58.69628000651574 103.584287217642 7.874015748780948 58.69628000653631 103.584287217624 7.530616130679846e-010 522.2244923489766 379.9302076543627 1.34787114802748e-009 522.2244923489589 379.9302076543797 7.874015749370301 22.31464938268641 164.6089340746478 5.311449058353901e-010 22.31464938266447 164.6089340746657 7.874015748559032 485.8428617241198 440.9548545130726 1.156877260655165e-009 485.8428617240999 440.9548545130892 7.874015749184764 2.967033587852939 232.9704754113607 3.274180926382542e-010 2.967033587830997 232.9704754113793 7.874015748349848 434.9065642733482 490.483878056499 7.874015748893726 434.9065642733698 490.483878056481 8.658389560878277e-010 1.971940665007651 304.0101851584466 1.637090463191271e-010 1.971940664987642 304.010185158463 7.874015748191596 372.8868244953164 525.1419571787058 7.874015748662714 372.8868244953358 525.1419571786882 6.530171958729625e-010 19.39718455237596 372.8868244953128 5.638867150992155e-011 19.39718455235402 372.8868244953305 7.874015748078818 304.0101851584476 542.5672010660749 7.874015748444435 304.0101851584681 542.567201066056 4.165485734120011e-010 54.05526367560947 434.9065642751887 7.275957614183426e-012 54.05526367558946 434.906564275205 7.874015748035163 232.9704754113592 541.572108143225 7.874015748260717 232.9704754113811 541.5721081432057 2.382876118645072e-010 103.5842872176439 485.8428617245293 1.818989403545857e-011 103.5842872176216 485.842861724547 7.874015748046077 164.6089340746478 522.2244923483975 7.874015748113379 164.6089340746679 522.2244923483804 8.549250196665525e-011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9616\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9613\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID9617\">-0.3955859219982081 0.9184289729297673 -3.074870068499092e-012 -0.6198135683427097 0.7847490939773536 -3.365487574521307e-012 -0.3955859219981964 0.9184289729297726 -3.074870068499073e-012 -0.6198135683426891 0.7847490939773695 -3.365487574521288e-012 -0.1443997488063275 0.9895194351525742 -2.574705249111109e-012 -0.14439974880635 0.9895194351525709 -2.57470524911116e-012 -0.8018019442949145 0.5975898611296001 -3.426752663277452e-012 -0.8018019442948837 0.5975898611296412 -3.426752663277463e-012 0.1166270286348909 0.9931757831279398 -1.899078522537462e-012 0.1166270286348579 0.9931757831279436 -1.899078522537557e-012 -0.9291488427837256 0.3697058668099056 -3.254490221349361e-012 -0.9291488427837272 0.3697058668099015 -3.254490221349356e-012 0.3697058668099457 0.9291488427837096 -1.094032732352509e-012 0.3697058668099174 0.9291488427837209 -1.094032732352608e-012 -0.9931757831279401 0.1166270286348873 -2.860439649065714e-012 -0.9931757831279426 0.1166270286348656 -2.860439649065672e-012 0.597589861129649 0.8018019442948782 -2.144304198472368e-013 0.5975898611296631 0.8018019442948675 -2.144304198471761e-013 -0.9895194351525746 -0.144399748806325 -2.271454842088629e-012 -0.9895194351525716 -0.1443997488063454 -2.271454842088575e-012 0.7847490939773921 0.6198135683426609 6.797849711168922e-013 0.7847490939773799 0.6198135683426763 6.797849711168266e-013 -0.9184289729297351 -0.3955859219982832 -1.527674140980307e-012 -0.9184289729297299 -0.3955859219982952 -1.527674140980267e-012 0.9184289729297352 0.395585921998283 1.527674140272738e-012 0.9184289729297456 0.3955859219982591 1.527674140272818e-012 -0.784749093977384 -0.6198135683426711 -6.797849713036866e-013 -0.7847490939774028 -0.6198135683426475 -6.797849713037884e-013 0.9895194351525722 0.1443997488063417 2.271454841394413e-012 0.9895194351525755 0.1443997488063191 2.271454841394473e-012 -0.597589861129705 -0.8018019442948362 2.144304200473968e-013 -0.5975898611296947 -0.801801944294844 2.144304200474414e-013 0.9931757831279395 -0.116627028634892 2.860439648531756e-012 0.9931757831279426 -0.1166270286348664 2.860439648531706e-012 -0.3697058668099125 -0.9291488427837229 1.094032732726321e-012 -0.3697058668099002 -0.9291488427837278 1.094032732726364e-012 0.9291488427837314 -0.3697058668098907 3.254490220975579e-012 0.9291488427837344 -0.3697058668098834 3.254490220975571e-012 -0.1166270286348356 -0.9931757831279463 1.899078523231656e-012 -0.1166270286348305 -0.9931757831279467 1.89907852323167e-012 0.8018019442948633 -0.5975898611296688 3.426752662690142e-012 0.8018019442948735 -0.5975898611296551 3.426752662690139e-012 0.1443997488063337 -0.9895194351525735 2.574705250446061e-012 0.144399748806325 -0.9895194351525746 2.574705250446041e-012 0.6198135683426476 -0.7847490939774027 3.365487573346519e-012 0.6198135683426826 -0.784749093977375 3.365487573346549e-012 0.3955859219982258 -0.9184289729297599 3.074870068712677e-012 0.3955859219982339 -0.9184289729297565 3.074870068712691e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID9617\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9615\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID9618\">-6.254873161113757 0.1458151064670525 -7.570552398459036 2.391059029108074e-011 -6.254873161113927 2.219265585439853e-011 -7.570552398458844 0.1458151064687704 -5.566689509098781 0.1458151064708165 -6.882368746444309 2.841570985469344e-011 -5.566689509099074 2.585565069414735e-011 -6.882368746444032 0.1458151064732755 -6.471966860983336 0.1458151064618613 -7.787646098328821 1.720362934627526e-011 -6.471966860983404 1.700151941254794e-011 -7.787646098328747 0.1458151064620634 -4.454314483546688 0.1458151064717494 -5.769993720892389 3.012337543814456e-011 -4.454314483547085 2.678856153164383e-011 -5.769993720891993 0.1458151064750842 -6.203176031828503 0.1458151064561425 -7.518855269173703 1.037315795715709e-011 -6.203176031828444 1.128265265893009e-011 -7.5188552691738 0.145815106455334 -2.993554604162599 0.1458151064695691 -4.309233841508311 2.854942131994149e-011 -2.993554604163072 2.450722264539515e-011 -4.309233841507838 0.1458151064735103 -5.46681832445551 0.1458151064520435 -6.782497561800515 5.128952924246988e-012 -5.466818324455288 7.082682283611071e-012 -6.782497561800764 0.1458151064500898 -1.283958242706778 0.1458151064646167 -2.599637480052545 2.403489831896273e-011 -1.283958242707253 1.965584975487085e-011 -2.599637480052032 0.1458151064690968 -4.313075299734357 0.1458151064505966 -5.628754537079308 2.570456754133098e-012 -4.313075299734011 5.635790748997431e-012 -5.628754537079666 0.1458151064475313 0.5579684340296326 0.1458151064584059 -0.7577108033161398 1.792510143153597e-011 0.5579684340291276 1.344499790058042e-011 -0.7577108033156585 0.145815106462886 -2.820572638148924 0.1458151064521946 -4.136251875454594 3.461029659326779e-012 -2.820572638148484 7.233748422236669e-012 -4.136251875454988 0.1458151064483208 2.406701166953834 7.703106614839276e-012 1.091021929609142 0.1458151064567735 1.091021929608661 1.181267526729474e-011 2.406701166954328 0.145815106452664 -1.091021929570898 0.1458151064565621 -2.406701166952002 8.165358433866674e-012 -1.091021929570459 1.170228227409475e-011 -2.406701166952455 0.1458151064531262 4.136251875493707 3.711000307677728e-012 2.820572638148849 0.1458151064524446 2.820572638148418 7.483719070587644e-012 4.136251875494149 0.1458151064485708 0.7577108033141994 1.857772268365042e-011 -0.5579684340679928 0.145815106458149 -0.5579684340674739 1.318812445092196e-011 0.7577108033137204 0.1458151064635386 5.628754537079189 2.733071271738778e-012 4.313075299734289 0.1458151064506245 4.313075299733938 5.764720277648462e-012 5.628754537079498 0.1458151064476939 2.599637480013432 2.385874562428313e-011 1.283958242706687 0.1458151064645416 1.283958242707158 1.991760191660045e-011 2.59963748001292 0.1458151064688196 6.782497561800549 5.193224100835769e-012 5.46681832445554 0.1458151064521415 5.466818324455336 7.180638449154419e-012 6.782497561800768 0.145815106450053 4.309233841508391 2.888039276669966e-011 2.993554604162701 0.1458151064694622 2.993554604163155 2.450134420260777e-011 4.309233841507964 0.1458151064735044 7.518855269173768 1.042836890473981e-011 6.203176031828537 0.1458151064561977 6.203176031828448 1.133786360651275e-011 7.518855269173852 0.1458151064553892 5.769993720893154 3.020293335743229e-011 4.45431448354748 0.1458151064717616 4.454314483547882 2.690180443988609e-011 5.769993720892779 0.1458151064751638 7.787646098329405 1.71108716448839e-011 6.471966860984139 0.1458151064618696 6.471966860984181 1.690876171115658e-011 7.787646098329353 0.1458151064620717 6.882368746443192 2.855995746927981e-011 5.566689509097667 0.1458151064706913 5.56668950909794 2.573041839709743e-011 6.882368746442899 0.1458151064734198 7.570552398459003 2.349283224210129e-011 6.254873161113628 0.1458151064672073 6.254873161113814 2.224648765078281e-011 7.570552398458845 0.1458151064684537</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID9618\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9614\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9612\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9613\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9614\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9615\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 2 5 5 6 2 5 4 4 0 7 3 8 6 9 1 10 6 9 3 8 7 11 8 12 5 13 9 14 5 13 8 12 4 15 7 16 10 17 6 18 10 17 7 16 11 19 12 20 9 21 13 22 9 21 12 20 8 23 11 24 14 25 10 26 14 25 11 24 15 27 16 28 13 29 17 30 13 29 16 28 12 31 15 32 18 33 14 34 18 33 15 32 19 35 20 36 17 37 21 38 17 37 20 36 16 39 19 40 22 41 18 42 22 41 19 40 23 43 24 44 20 45 21 46 20 45 24 44 25 47 23 48 26 49 22 50 26 49 23 48 27 51 28 52 25 53 24 54 25 53 28 52 29 55 26 56 30 57 31 58 30 57 26 56 27 59 32 60 29 61 28 62 29 61 32 60 33 63 31 64 34 65 35 66 34 65 31 64 30 67 36 68 33 69 32 70 33 69 36 68 37 71 35 72 38 73 39 74 38 73 35 72 34 75 40 76 37 77 36 78 37 77 40 76 41 79 39 80 42 81 43 82 42 81 39 80 38 83 44 84 41 85 40 86 41 85 44 84 45 87 43 88 46 89 47 90 46 89 43 88 42 91 47 92 45 93 44 94 45 93 47 92 46 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9619\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9620\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID9624\">8.753886504564434e-012 304.2417469668635 7.874015748186139 17.55236874229399 373.6208718263383 4.18367562815547e-011 2.76259015663527e-011 304.2417469668467 1.582520781084895e-010 17.55236874227194 373.6208718263549 7.874015748069724 1.002352565484898 232.6837711425883 7.874015748344391 1.002352565503884 232.6837711425703 3.219611244276166e-010 1.002352565484898 232.6837711425883 7.874015748344391 2.967033587830997 232.9704754113793 7.874015748349848 1.971940664987642 304.010185158463 7.874015748191596 20.49111776783684 163.8235021507967 7.874015748555394 22.31464938266447 164.6089340746657 7.874015748559032 57.13816846522627 102.3536535263206 7.874015748780948 58.69628000651574 103.584287217642 7.874015748780948 108.4460687147481 52.46329386917819 7.874015749031969 109.6325774558577 54.05526367560378 7.874015749022874 170.9182699047059 17.55236874229126 7.874015749259343 171.6523172357306 19.39718455237221 7.8740157492648 240.2973947641992 1.818989403545857e-011 7.874015749490354 240.5289565725968 1.971940664997874 7.874015749477621 311.8553705884759 1.002352565503998 7.874015749655882 311.5686663196856 2.967033587849528 7.874015749657701 379.9302076563988 22.31464938267436 7.874015749790488 380.7156395802674 20.49111776784707 7.874015749794125 440.9548545134194 58.69628000652051 7.874015749883256 442.1854882047435 57.13816846523264 7.874015749895989 490.4838780554534 109.6325774558754 7.87401574989417 492.0758478618835 108.4460687147664 7.874015749899627 525.1419571786906 171.6523172357479 7.874015749850514 526.9867729887728 170.9182699047242 7.874015749848695 542.5672010660609 240.5289565726159 7.874015749745013 544.539141731039 240.2973947642147 7.874015749745013 543.5367891655599 311.8553705884985 7.874015749584942 8.753886504564434e-012 304.2417469668635 7.874015748186139 17.55236874227194 373.6208718263549 7.874015748069724 19.39718455235402 372.8868244953305 7.874015748078818 52.46329386916091 436.0930730163186 7.874015748018792 54.05526367558946 434.906564275205 7.874015748035163 102.3536535263028 487.400973265836 7.874015748033344 103.5842872176216 485.842861724547 7.874015748046077 163.8235021507805 524.0480239632257 7.874015748098827 164.6089340746478 522.2244923483975 7.874015748113379 232.6837711425686 543.5367891655715 7.874015748262536 232.9704754113592 541.572108143225 7.874015748260717 304.2417469668509 544.5391417310536 7.874015748448073 304.0101851584476 542.5672010660749 7.874015748444435 372.8868244953164 525.1419571787058 7.874015748662714 373.6208718263393 526.9867729887885 7.874015748659076 434.9065642733482 490.483878056499 7.874015748893726 436.0930730144597 492.0758478629271 7.874015748895545 485.8428617240999 440.9548545130892 7.874015749184764 487.4009732653877 442.185488204409 7.874015749195678 522.2244923489589 379.9302076543797 7.874015749370301 524.0480239637845 380.7156395782499 7.874015749373939 541.5721081432158 311.568666319705 7.874015749579485 52.4632938691816 436.0930730163002 -9.094947017729282e-012 52.46329386916091 436.0930730163186 7.874015748018792 20.49111776783684 163.8235021507967 7.874015748555394 20.49111776785514 163.8235021507796 5.275069270282984e-010 543.5367891655814 311.8553705884795 1.557054929435253e-009 544.539141731039 240.2973947642147 7.874015749745013 544.5391417310573 240.2973947641974 1.722582965157926e-009 543.5367891655599 311.8553705884985 7.874015749584942 524.0480239638063 380.7156395782315 1.351509126834571e-009 524.0480239637845 380.7156395782499 7.874015749373939 487.4009732654075 442.1854882043929 1.165972207672894e-009 487.4009732653877 442.185488204409 7.874015749195678 436.0930730144597 492.0758478629271 7.874015748895545 436.0930730144782 492.0758478629111 8.731149137020111e-010 373.6208718263393 526.9867729887885 7.874015748659076 373.6208718263609 526.9867729887708 6.311893230304122e-010 304.2417469668509 544.5391417310536 7.874015748448073 304.2417469668695 544.5391417310352 4.201865522190929e-010 232.6837711425686 543.5367891655715 7.874015748262536 232.6837711425876 543.5367891655533 2.328306436538696e-010 163.8235021507805 524.0480239632257 7.874015748098827 163.8235021507994 524.0480239632093 7.09405867382884e-011 102.3536535263028 487.400973265836 7.874015748033344 102.3536535263216 487.4009732658183 1.2732925824821e-011 57.13816846522627 102.3536535263206 7.874015748780948 57.13816846524833 102.3536535263024 7.60337570682168e-010 108.4460687147698 52.46329386916023 1.004082150757313e-009 108.4460687147481 52.46329386917819 7.874015749031969 170.9182699047275 17.55236874227398 1.231455826200545e-009 170.9182699047059 17.55236874229126 7.874015749259343 240.297394764219 6.821210263296962e-013 1.462467480450869e-009 240.2973947641992 1.818989403545857e-011 7.874015749490354 311.8553705884958 1.002352565486035 1.635271473787725e-009 311.8553705884759 1.002352565503998 7.874015749655882 380.7156395802874 20.49111776783047 1.766238710843027e-009 380.7156395802674 20.49111776784707 7.874015749794125 442.1854882047617 57.13816846521581 1.868102117441595e-009 442.1854882047435 57.13816846523264 7.874015749895989 492.0758478619035 108.4460687147478 1.871740096248686e-009 492.0758478618835 108.4460687147664 7.874015749899627 526.9867729887927 170.9182699047058 1.820808392949402e-009 526.9867729887728 170.9182699047242 7.874015749848695</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID9624\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9621\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID9625\">-0.9931757831279419 0.1166270286348719 -2.860439648585113e-012 -0.929148842783725 0.3697058668099068 -3.254490220762012e-012 -0.9931757831279398 0.1166270286348904 -2.860439648585148e-012 -0.9291488427837408 0.3697058668098671 -3.254490220761964e-012 -0.9895194351525738 -0.144399748806331 -2.271454841527935e-012 -0.9895194351525737 -0.1443997488063316 -2.271454841527933e-012 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -2.619435501961116e-012 2.219723376515704e-012 1 -0.8018019442948745 0.5975898611296536 -3.426752663597876e-012 -0.8018019442948672 0.5975898611296636 -3.426752663597879e-012 -0.9184289729297356 -0.3955859219982826 -1.527674140246042e-012 -0.9184289729297469 -0.3955859219982559 -1.52767414024613e-012 0.9895194351525748 0.1443997488063234 2.271454841714862e-012 0.9931757831279419 -0.1166270286348724 2.860439648905497e-012 0.9931757831279409 -0.1166270286348806 2.860439648905512e-012 0.9895194351525706 0.1443997488063529 2.271454841714785e-012 0.9184289729297479 0.3955859219982538 1.527674140766825e-012 0.9184289729297156 0.3955859219983285 1.527674140766575e-012 0.7847490939773832 0.619813568342672 6.797849715306214e-013 0.7847490939774039 0.6198135683426458 6.797849715307334e-013 0.59758986112974 0.8018019442948102 -2.144304197936093e-013 0.5975898611296495 0.8018019442948777 -2.144304197939966e-013 0.3697058668098871 0.9291488427837329 -1.09403273248612e-012 0.3697058668099194 0.92914884278372 -1.094032732486007e-012 0.1166270286348523 0.9931757831279442 -1.89907852323161e-012 0.116627028634822 0.9931757831279477 -1.899078523231696e-012 -0.1443997488062947 0.9895194351525789 -2.574705250178992e-012 -0.144399748806362 0.9895194351525694 -2.574705250179147e-012 -0.3955859219982105 0.9184289729297664 -3.074870068232084e-012 -0.3955859219982415 0.918428972929753 -3.074870068232136e-012 -0.6198135683426596 0.7847490939773931 -3.365487573987286e-012 -0.6198135683426699 0.7847490939773849 -3.365487573987295e-012 -0.7847490939773967 -0.6198135683426552 -6.797849714372909e-013 -0.7847490939773769 -0.61981356834268 -6.797849714371844e-013 -0.5975898611296404 -0.8018019442948844 2.144304201142552e-013 -0.5975898611296708 -0.8018019442948617 2.144304201141249e-013 -0.3697058668099209 -0.9291488427837195 1.094032732726368e-012 -0.3697058668099409 -0.9291488427837115 1.094032732726297e-012 -0.1166270286348806 -0.9931757831279409 1.899078522804473e-012 -0.1166270286348698 -0.9931757831279421 1.899078522804505e-012 0.1443997488063422 -0.989519435152572 2.574705249912089e-012 0.1443997488063372 -0.9895194351525728 2.574705249912077e-012 0.3955859219981934 -0.9184289729297738 3.07487006919322e-012 0.3955859219982199 -0.9184289729297624 3.074870069193263e-012 0.6198135683426842 -0.7847490939773735 3.365487574307697e-012 0.6198135683427168 -0.784749093977348 3.365487574307726e-012 0.8018019442948959 -0.5975898611296251 3.426752662903684e-012 0.8018019442949002 -0.5975898611296192 3.426752662903681e-012 0.9291488427837196 -0.3697058668099204 3.254490221189189e-012 0.9291488427837301 -0.3697058668098944 3.254490221189157e-012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID9625\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9623\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID9626\">-5.462019093718176 0.1458151064521529 -6.787296792537914 5.036162082568005e-012 -5.462019093717959 7.192001375659371e-012 -6.787296792538112 0.145815106449997 -4.308276068996951 0.1458151064506178 -5.633553767816543 2.726361912224133e-012 -4.308276068996613 5.758010918133946e-012 -5.63355376781686 0.1458151064476872 0.01856208454639859 4.308958724862422 0.05494506644169671 4.314268063173367 0.03651741972237532 5.629818243674916 0.3794651438492123 3.033768558347763 0.4132342478275018 3.048313593974968 1.058114230837906 1.895438028264873 1.086968148269192 1.91822754106712 2.008260531754976 0.9715424790585315 2.030232915849598 1.001023401399746 3.165153146383824 0.3250438655976627 3.178746615476875 0.3592071213399024 4.44995175489296 1.318068908628144e-014 4.454239936529953 0.03651741972185917 5.775099455342528 0.01856208454604665 5.769790117031596 0.05494506644133426 7.035744586229989 0.4132342478269793 7.050289621857186 0.3794651438486961 8.165830639137777 1.086968148268575 8.188620151940075 1.058114230837318 9.083034778805075 2.030232915849221 9.112515701146371 2.00826053175461 9.724851058865022 3.178746615476489 9.759014314607285 3.165153146383458 10.04754076048299 4.454239936529601 10.08405818020481 4.449951754892541 10.0654960956589 5.775099455342242 5.440622758956319e-013 5.634106425311964 0.3250438655980105 6.918905033821064 0.3592071213402712 6.905311564728019 0.9715424790589172 8.075797648450021 1.001023401400187 8.053825264355325 1.895438028265248 9.02594394936701 1.918227541067449 8.997090031935732 3.03376855834817 9.704593036355705 3.048313593975341 9.670823932377406 4.308958724862764 10.06549609565841 4.3142680631737 10.0291131137631 5.634106425312435 10.08405818020437 5.629818243675337 10.04754076048254 6.905311564728462 9.724851058864596 6.91890503382148 9.759014314606871 8.053825264321644 9.08303477882373 8.075797648416302 9.112515701164993 8.997090031928156 8.165830639130958 9.025943949359412 8.188620151933177 9.670823932388508 7.035744586191894 9.704593036366761 7.050289621819119 10.02911311376364 5.769790117031251 -6.198376801091153 0.1458151064561521 -7.523654499911142 1.024803309280114e-011 -6.198376801091084 1.119121278352866e-011 -7.523654499911254 0.1458151064552089 -2.815773407411469 0.1458151064524471 -4.141051106231122 3.679789164709054e-012 -2.815773407411073 7.486192916573537e-012 -4.141051106231537 0.1458151064485396 5.63355376781668 2.577166114647377e-012 4.308276068996969 0.1458151064505023 4.308276068996644 5.642500109511764e-012 5.633553767817039 0.145815106447538 4.141051106191942 3.458555821143962e-012 2.815773407411574 0.1458151064522258 2.815773407411126 7.264959573008455e-012 4.14105110619238 0.1458151064483184 2.411500397689344 8.293201078259208e-012 1.086222698833562 0.1458151064565889 1.086222698833062 1.172906995162358e-011 2.411500397689789 0.1458151064532877 0.5627676648053541 0.1458151064581741 -0.7625100340515639 1.873759246955305e-011 0.5627676648049026 1.331430924787004e-011 -0.7625100340510913 0.1458151064637321 -1.279159011969301 0.1458151064644983 -2.604436710750764 2.401754058259585e-011 -1.27915901196981 1.953743705164032e-011 -2.60443671075032 0.1458151064688774 -2.988755373425394 0.1458151064695846 -4.314033072245755 2.853119875526946e-011 -2.988755373425811 2.462374003654126e-011 -4.314033072245286 0.1458151064734921 -4.449515252810129 0.1458151064718775 -5.77479295163051 3.035255012730859e-011 -4.449515252810476 2.68829962649897e-011 -5.77479295163017 0.1458151064753134 -5.561890278360326 0.1458151064705257 -6.887167977180546 2.8562765234555e-011 -5.56189027836058 2.55648012175998e-011 -6.887167977180299 0.1458151064735573 -6.250073930376292 0.14581510646709 -7.575351629196371 2.33417529420701e-011 -6.250073930376423 2.226383329552442e-011 -7.575351629196225 0.1458151064683026 -6.467167630246792 0.1458151064616913 -7.792445329066752 1.713468636688288e-011 -6.467167630246816 1.673046649942818e-011 -7.792445329066744 0.1458151064619608 -1.086222698871778 0.1458151064568141 -2.411500397691237 7.676318933777144e-012 -1.086222698871279 1.198799751995987e-011 -2.411500397691682 0.1458151064526372 0.7625100340535348 1.810208153205446e-011 -0.5627676647670026 0.1458151064584144 -0.562767664766475 1.358829301214438e-011 0.7625100340530143 0.145815106463063 2.604436710789911 2.401084331450029e-011 1.27915901196942 0.1458151064647611 1.279159011969933 1.98002196951812e-011 2.604436710789406 0.1458151064689717 4.314033072245697 2.873019038435949e-011 2.988755373425247 0.1458151064694131 2.988755373425713 2.445219678713126e-011 4.314033072245262 0.145815106473691 5.774792951629679 3.014218361517562e-011 4.449515252809376 0.145815106471903 4.449515252809738 2.694210966449309e-011 5.774792951629315 0.1458151064749683 6.887167977181679 2.827816212553485e-011 5.561890278361386 0.145815106470679 5.56189027836165 2.585284292080707e-011 6.887167977181408 0.145815106473239 7.575351629196394 2.392692963312345e-011 6.250073930376395 0.1458151064670014 6.250073930376556 2.204057025166847e-011 7.575351629196263 0.1458151064688878 7.792445329066176 1.707875966794007e-011 6.467167630246021 0.1458151064619723 6.467167630246032 1.701138969003101e-011 7.792445329066164 0.1458151064620396 7.523654499911086 1.021664388127456e-011 6.198376801091196 0.1458151064561207 6.198376801091076 1.115982357200208e-011 7.523654499911204 0.1458151064551775 6.787296792537894 5.11758999852617e-012 5.462019093718189 0.1458151064518974 5.462019093717949 6.936579402071934e-012 6.787296792538122 0.1458151064499774</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID9626\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9622\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9620\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9621\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9622\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9623\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 2 5 5 6 2 5 4 4 0 7 6 8 7 9 8 10 7 9 6 8 9 11 7 9 9 11 10 12 10 12 9 11 11 13 10 12 11 13 12 14 12 14 11 13 13 15 12 14 13 15 14 16 14 16 13 15 15 17 14 16 15 17 16 18 16 18 15 17 17 19 16 18 17 19 18 20 18 20 17 19 19 21 18 20 19 21 20 22 20 22 19 21 21 23 21 23 19 21 22 24 21 23 22 24 23 25 23 25 22 24 24 26 23 25 24 26 25 27 25 27 24 26 26 28 25 27 26 28 27 29 27 29 26 28 28 30 27 29 28 30 29 31 29 31 28 30 30 32 29 31 30 32 31 33 32 34 8 10 33 35 8 10 32 34 6 8 33 35 8 10 34 36 33 35 34 36 35 37 35 37 34 36 36 38 35 37 36 38 37 39 37 39 36 38 38 40 37 39 38 40 39 41 39 41 38 40 40 42 39 41 40 42 41 43 41 43 40 42 42 44 41 43 42 44 43 45 43 45 42 44 44 46 43 45 44 46 45 47 43 45 45 47 46 48 46 48 45 47 47 49 46 48 47 49 48 50 48 50 47 49 49 51 48 50 49 51 50 52 50 52 49 51 51 53 50 52 51 53 52 54 52 54 51 53 53 55 52 54 53 55 31 33 31 33 53 55 29 31 3 56 54 57 1 58 54 57 3 56 55 59 56 60 5 61 57 62 5 61 56 60 4 63 58 64 59 65 60 66 59 65 58 64 61 67 62 68 61 69 58 70 61 69 62 68 63 71 64 72 63 73 62 74 63 73 64 72 65 75 66 76 64 77 67 78 64 77 66 76 65 79 68 80 67 81 69 82 67 81 68 80 66 83 70 84 69 85 71 86 69 85 70 84 68 87 72 88 71 89 73 90 71 89 72 88 70 91 74 92 73 93 75 94 73 93 74 92 72 95 76 96 75 97 77 98 75 97 76 96 74 99 55 100 77 101 54 102 77 101 55 100 76 103 78 104 57 105 79 106 57 105 78 104 56 107 80 108 78 109 79 110 78 109 80 108 81 111 82 112 81 113 80 114 81 113 82 112 83 115 84 116 83 117 82 118 83 117 84 116 85 119 86 120 85 121 84 122 85 121 86 120 87 123 88 124 87 125 86 126 87 125 88 124 89 127 90 128 89 129 88 130 89 129 90 128 91 131 92 132 91 133 90 134 91 133 92 132 93 135 94 136 93 137 92 138 93 137 94 136 95 139 60 140 95 141 94 142 95 141 60 140 59 143</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9635\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9638\">\r\n\t\t\t\t\t<float_array count=\"210\" id=\"ID9641\">4.547473508864641e-013 69.88188976377933 194.4881889763783 53.93700787401576 82.29154177547684 193.8449495812492 1.13686837721616e-013 82.29154177547639 193.8449495812529 53.93700787401565 69.8818897637791 194.4881889763783 5.684341886080802e-013 10.46399000058591 178.7493432610499 1.023181539494544e-012 26.96040880653186 0 5.684341886080802e-013 -6.821210263296962e-013 172.0472440944905 3.410605131648481e-013 21.56483135807594 184.3336553159716 3.410605131648481e-013 33.18354332913282 188.7403266339279 9.094947017729282e-013 112.9921259842517 0 -1.13686837721616e-013 45.19559454335126 191.9221257473 2.273736754432321e-013 57.47223775208181 193.8449495812529 4.547473508864641e-013 69.88188976377933 194.4881889763783 1.13686837721616e-013 82.29154177547639 193.8449495812529 0 94.56818498420671 191.9221257473037 1.13686837721616e-013 106.5802361984245 188.7403266339279 1.13686837721616e-013 118.1989481694825 184.3336553159716 3.410605131648481e-013 139.763779527558 172.0472440944868 -3.410605131648481e-013 129.2997895269723 178.7493432610499 53.93700787401588 57.47223775208158 193.8449495812529 2.273736754432321e-013 57.47223775208181 193.8449495812529 53.93700787401474 139.7637795275564 172.0472440944905 53.93700787401633 10.46399000058568 178.7493432610572 53.93700787401622 -2.273736754432321e-013 172.0472440944868 53.93700787401622 21.56483135807571 184.3336553159716 53.93700787401622 33.1835433291335 188.7403266339316 53.93700787401599 45.19559454335172 191.9221257473 53.93700787401588 57.47223775208158 193.8449495812529 53.93700787401565 69.8818897637791 194.4881889763783 53.93700787401576 82.29154177547684 193.8449495812492 53.93700787401588 94.56818498420648 191.9221257473037 53.93700787401588 106.5802361984249 188.7403266339243 53.93700787401588 118.1989481694827 184.3336553159716 53.93700787401554 129.2997895269723 178.7493432610609 53.93700787401588 94.56818498420648 191.9221257473037 0 94.56818498420671 191.9221257473037 53.93700787401554 129.2997895269723 178.7493432610609 3.410605131648481e-013 139.763779527558 172.0472440944868 -3.410605131648481e-013 129.2997895269723 178.7493432610499 53.93700787401474 139.7637795275564 172.0472440944905 3.410605131648481e-013 139.763779527558 172.0472440944868 130.1661851929878 112.9921259842513 17.80922437891786 9.094947017729282e-013 112.9921259842517 0 130.1661851929878 112.9921259842513 17.80922437891786 1.023181539494544e-012 26.96040880653186 0 9.094947017729282e-013 112.9921259842517 0 130.1661851929877 26.9604088065314 17.80922437891422 5.684341886080802e-013 -6.821210263296962e-013 172.0472440944905 1.023181539494544e-012 26.96040880653186 0 130.1661851929877 26.9604088065314 17.80922437891422 53.93700787401622 -2.273736754432321e-013 172.0472440944868 5.684341886080802e-013 10.46399000058591 178.7493432610499 5.684341886080802e-013 -6.821210263296962e-013 172.0472440944905 53.93700787401633 10.46399000058568 178.7493432610572 53.93700787401622 21.56483135807571 184.3336553159716 3.410605131648481e-013 21.56483135807594 184.3336553159716 3.410605131648481e-013 33.18354332913282 188.7403266339279 53.93700787401622 33.1835433291335 188.7403266339316 53.93700787401599 45.19559454335172 191.9221257473 -1.13686837721616e-013 45.19559454335126 191.9221257473 1.13686837721616e-013 106.5802361984245 188.7403266339279 53.93700787401588 106.5802361984249 188.7403266339243 1.13686837721616e-013 118.1989481694825 184.3336553159716 53.93700787401588 118.1989481694827 184.3336553159716 130.1661851929877 26.9604088065314 17.80922437891422 53.93700787401474 139.7637795275564 172.0472440944905 53.93700787401622 -2.273736754432321e-013 172.0472440944868 130.1661851929878 112.9921259842513 17.80922437891786 53.93700787401474 139.7637795275564 172.0472440944905 53.93700787401622 -2.273736754432321e-013 172.0472440944868</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"70\" source=\"#ID9641\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9639\">\r\n\t\t\t\t\t<float_array count=\"210\" id=\"ID9642\">2.795427633952947e-015 1.411054179917494e-015 1 2.487901119211777e-015 0.1033898141002355 0.9946409132648418 2.487901119211779e-015 0.1033898141002348 0.9946409132648419 2.795427633952948e-015 8.271696916757774e-016 1 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 -1 -2.243303783742085e-015 -3.910827902563662e-015 3.063204815495668e-015 -0.1033898141002364 0.9946409132648417 3.063204815495668e-015 -0.1033898141002365 0.9946409132648418 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 1 3.705829110580379e-015 -2.38107972555322e-015 2.166235177891503e-015 0.205671478237878 0.9786210926806381 2.166235177891503e-015 0.2056714782378782 0.9786210926806381 1.050997379114104e-015 0.4950344784005341 0.8688733309261547 8.486992415767679e-016 0.539347425246582 0.8420833420035588 1.050997379114074e-015 0.4950344784005409 0.8688733309261509 8.486992415767679e-016 0.539347425246582 0.8420833420035588 0.009289888234908533 0.9865172610401937 -0.1633933647561533 0.01699235057869565 0.9874438453404757 -0.157053851659313 0.02103211806115318 0.9878902670484184 -0.1537220552844206 0.1355562431870277 1.103804273751198e-016 -0.9907696528119034 0.1355562431870277 1.103804273751198e-016 -0.9907696528119034 0.1355562431870277 1.103804273751198e-016 -0.9907696528119034 0.1355562431870277 1.103804273751198e-016 -0.9907696528119034 0.009352453590070782 -0.9863302152317132 -0.1645151607992656 0.02117679972305624 -0.9877220473179331 -0.1547795218869749 0.01710978188998213 -0.9872696179253312 -0.1581327192115788 3.816859771710194e-015 -0.5393474252465853 0.8420833420035568 3.798578523548012e-015 -0.495034478400541 0.8688733309261506 3.816859771710194e-015 -0.5393474252465853 0.8420833420035568 3.798578523548011e-015 -0.4950344784005378 0.8688733309261525 3.665338159452207e-015 -0.4025488935327905 0.9153984860788914 3.665338159452206e-015 -0.4025488935327898 0.9153984860788915 3.509087209684003e-015 -0.305748719793872 0.9521122414633729 3.509087209684003e-015 -0.3057487197938709 0.9521122414633734 3.324640429844546e-015 -0.2056714782378783 0.9786210926806381 3.324640429844546e-015 -0.2056714782378782 0.9786210926806381 1.789231840313692e-015 0.3057487197938714 0.9521122414633731 1.789231840313684e-015 0.3057487197938733 0.9521122414633725 1.411448292629548e-015 0.4025488935327898 0.9153984860788916 1.41144829262955e-015 0.4025488935327889 0.9153984860788919 0.8964864303834143 6.585132965641585e-015 0.4430711908242328 0.8964864303834143 6.585132965641585e-015 0.4430711908242328 0.8964864303834143 6.585132965641585e-015 0.4430711908242328 0.8964864303834143 6.585132965641585e-015 0.4430711908242328 3.214720331986e-014 0.9852681521442998 -0.1710165733785967 1.900344411687067e-015 -0.9850643314582287 -0.1721867093847635</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"70\" source=\"#ID9642\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9640\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9638\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9639\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"56\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9640\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 5 4 7 5 7 8 5 8 9 9 8 10 9 10 11 9 11 12 9 12 13 9 13 14 9 14 15 9 15 16 9 16 17 17 16 18 19 0 20 0 19 3 21 22 23 22 21 24 24 21 25 25 21 26 26 21 27 27 21 28 28 21 29 29 21 30 30 21 31 31 21 32 32 21 33 2 34 35 34 2 1 36 37 38 37 36 39 40 41 42 43 44 45 44 43 46 47 48 49 50 51 52 51 50 53 51 54 55 54 51 53 54 56 55 56 54 57 56 58 59 58 56 57 58 20 59 20 58 19 34 60 35 60 34 61 61 62 60 62 61 63 62 36 38 36 62 63 64 65 66 65 64 67 68 41 40 47 49 69</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9652\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9653\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID9657\">198.2392197011843 5.366011608020472 9.842519685039576 157.4803149606298 -2.273736754432321e-013 2.273736754432321e-013 198.2392197011845 5.366011608020472 2.273736754432321e-013 157.4803149606298 -2.273736754432321e-013 9.842519685039576 5.366011608020926 198.2392197011844 2.273736754432321e-013 5.366011608020926 116.7214102200754 1.70530256582424e-013 0 157.4803149606298 2.273736754432321e-013 21.09836160875011 236.2204724409448 1.70530256582424e-013 21.09836160874966 78.74015748031485 1.70530256582424e-013 46.12491634857497 46.12491634857503 1.70530256582424e-013 46.1249163485752 268.8357135726845 2.273736754432321e-013 78.74015748031479 21.09836160874966 1.70530256582424e-013 78.74015748031502 293.86226831251 2.273736754432321e-013 116.7214102200753 5.366011608020585 1.70530256582424e-013 116.7214102200758 309.5946183132391 1.70530256582424e-013 157.4803149606298 -2.273736754432321e-013 2.273736754432321e-013 157.4803149606303 314.9606299212597 2.273736754432321e-013 198.2392197011845 5.366011608020472 2.273736754432321e-013 198.2392197011845 309.5946183132389 2.273736754432321e-013 236.2204724409451 293.86226831251 2.273736754432321e-013 236.2204724409446 21.09836160874954 1.70530256582424e-013 268.8357135726847 46.1249163485748 1.70530256582424e-013 268.8357135726847 268.8357135726845 2.273736754432321e-013 293.8622683125102 236.2204724409447 2.273736754432321e-013 293.86226831251 78.74015748031451 2.273736754432321e-013 309.5946183132394 116.7214102200751 1.70530256582424e-013 309.5946183132392 198.2392197011841 2.273736754432321e-013 314.9606299212601 157.4803149606296 2.273736754432321e-013 236.2204724409448 21.09836160874943 9.842519685039576 236.2204724409446 21.09836160874954 1.70530256582424e-013 5.366011608020926 116.7214102200754 9.842519685039576 5.366011608020926 198.2392197011842 9.842519685039576 2.273736754432321e-013 157.4803149606298 9.842519685039576 21.09836160874988 78.74015748031479 9.842519685039576 21.09836160875011 236.2204724409447 9.842519685039576 46.1249163485752 46.12491634857508 9.842519685039576 46.12491634857543 268.8357135726846 9.842519685039576 78.74015748031479 21.09836160874954 9.842519685039576 78.74015748031525 293.8622683125099 9.842519685039576 116.7214102200753 5.366011608020585 9.84251968503952 116.7214102200758 309.5946183132389 9.842519685039576 157.4803149606298 -2.273736754432321e-013 9.842519685039576 157.4803149606305 314.9606299212596 9.842519685039576 198.2392197011843 5.366011608020472 9.842519685039576 198.2392197011845 309.5946183132389 9.842519685039576 236.2204724409448 21.09836160874943 9.842519685039576 236.2204724409451 293.8622683125099 9.842519685039576 268.8357135726847 46.1249163485748 9.842519685039576 268.8357135726849 268.8357135726844 9.842519685039576 293.8622683125102 78.74015748031451 9.842519685039576 293.86226831251 236.2204724409447 9.842519685039576 309.5946183132394 198.2392197011841 9.842519685039576 309.5946183132389 116.7214102200751 9.84251968503952 314.9606299212599 157.4803149606296 9.842519685039576 116.7214102200753 5.366011608020585 9.84251968503952 116.7214102200753 5.366011608020585 1.70530256582424e-013 314.9606299212601 157.4803149606296 2.273736754432321e-013 309.5946183132394 198.2392197011841 9.842519685039576 314.9606299212599 157.4803149606296 9.842519685039576 309.5946183132392 198.2392197011841 2.273736754432321e-013 309.5946183132394 116.7214102200751 1.70530256582424e-013 309.5946183132389 116.7214102200751 9.84251968503952 293.8622683125102 78.74015748031451 9.842519685039576 293.86226831251 78.74015748031451 2.273736754432321e-013 268.8357135726847 46.1249163485748 9.842519685039576 268.8357135726847 46.1249163485748 1.70530256582424e-013 78.74015748031479 21.09836160874966 1.70530256582424e-013 78.74015748031479 21.09836160874954 9.842519685039576 46.12491634857497 46.12491634857503 1.70530256582424e-013 46.1249163485752 46.12491634857508 9.842519685039576 21.09836160874966 78.74015748031485 1.70530256582424e-013 21.09836160874988 78.74015748031479 9.842519685039576 5.366011608020926 116.7214102200754 9.842519685039576 5.366011608020926 116.7214102200754 1.70530256582424e-013 2.273736754432321e-013 157.4803149606298 9.842519685039576 0 157.4803149606298 2.273736754432321e-013 5.366011608020926 198.2392197011844 2.273736754432321e-013 5.366011608020926 198.2392197011842 9.842519685039576 21.09836160875011 236.2204724409447 9.842519685039576 21.09836160875011 236.2204724409448 1.70530256582424e-013 46.12491634857543 268.8357135726846 9.842519685039576 46.1249163485752 268.8357135726845 2.273736754432321e-013 78.74015748031502 293.86226831251 2.273736754432321e-013 78.74015748031525 293.8622683125099 9.842519685039576 116.7214102200758 309.5946183132389 9.842519685039576 116.7214102200758 309.5946183132391 1.70530256582424e-013 157.4803149606303 314.9606299212597 2.273736754432321e-013 157.4803149606305 314.9606299212596 9.842519685039576 198.2392197011845 309.5946183132389 2.273736754432321e-013 198.2392197011845 309.5946183132389 9.842519685039576 236.2204724409451 293.86226831251 2.273736754432321e-013 236.2204724409451 293.8622683125099 9.842519685039576 268.8357135726847 268.8357135726845 2.273736754432321e-013 268.8357135726849 268.8357135726844 9.842519685039576 293.86226831251 236.2204724409447 9.842519685039576 293.8622683125102 236.2204724409447 2.273736754432321e-013</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID9657\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9654\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID9658\">0.2588190451025186 -0.965925826289069 -5.04919302831608e-017 -1.924799737459731e-015 -1 -6.156366813614958e-017 0.2588190451025222 -0.9659258262890679 -5.04919302831606e-017 -1.808955308816323e-015 -1 -6.156366813614955e-017 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 3.467265842114435e-017 6.156362515586344e-017 -1 0.4999999999999999 -0.8660254037844388 -3.597933018157472e-017 0.4999999999999978 -0.8660254037844399 -3.597933018157485e-017 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -3.467265842114435e-017 -6.156362515586344e-017 1 -0.2588190451025212 -0.9659258262890681 -6.843983941059609e-017 -0.2588190451025213 -0.9659258262890682 -6.843983941059609e-017 1 -2.13866637495526e-016 3.467277434108877e-017 0.9659258262890687 0.2588190451025191 4.942515085371316e-017 1 -1.042599857790686e-015 3.467277434108872e-017 0.9659258262890682 0.258819045102521 4.942515085371326e-017 0.9659258262890684 -0.2588190451025204 1.75575282475551e-017 0.9659258262890675 -0.2588190451025232 1.75575282475549e-017 0.8660254037844384 -0.5000000000000003 -7.543839517097338e-019 0.8660254037844376 -0.500000000000002 -7.54383951709865e-019 0.7071067811865466 -0.7071067811865486 -1.90148754441869e-017 0.7071067811865466 -0.7071067811865486 -1.90148754441869e-017 -0.5000000000000009 -0.866025403784438 -7.065205112629098e-017 -0.5000000000000001 -0.8660254037844385 -7.065205112629097e-017 -0.707106781186549 -0.7071067811865459 -6.804947021117216e-017 -0.7071067811865478 -0.7071067811865475 -6.804947021117221e-017 -0.8660254037844406 -0.4999999999999968 -6.080932256308253e-017 -0.8660254037844393 -0.4999999999999992 -6.080932256308265e-017 -0.9659258262890687 -0.2588190451025196 -4.942509745734065e-017 -0.9659258262890688 -0.2588190451025188 -4.942509745734059e-017 -1 5.257554838431665e-016 -3.467272094471615e-017 -1 -4.901110442605806e-016 -3.467272094471622e-017 -0.9659258262890673 0.2588190451025246 -1.755758164392747e-017 -0.965925826289068 0.2588190451025217 -1.755758164392766e-017 -0.8660254037844395 0.4999999999999987 7.542237625920494e-019 -0.866025403784439 0.4999999999999992 7.542237625921077e-019 -0.7071067811865472 0.7071067811865479 1.901476865144188e-017 -0.7071067811865496 0.7071067811865455 1.901476865144163e-017 -0.5000000000000006 0.8660254037844383 3.597943697431985e-017 -0.4999999999999987 0.8660254037844394 3.597943697432e-017 -0.2588190451025202 0.9659258262890684 5.049198367953326e-017 -0.2588190451025195 0.9659258262890685 5.049198367953331e-017 5.257554838431675e-016 1 6.156356134340432e-017 4.41991050824086e-015 1 6.156356134340447e-017 0.2588190451025203 0.9659258262890683 6.84397860142235e-017 0.2588190451025206 0.9659258262890684 6.843978601422353e-017 0.4999999999999993 0.8660254037844389 7.06520244281047e-017 0.4999999999999998 0.8660254037844388 7.06520244281047e-017 0.7071067811865472 0.7071067811865479 6.804948689753867e-017 0.7071067811865497 0.7071067811865456 6.80494868975386e-017 0.8660254037844386 0.5000000000000002 6.08093659476353e-017 0.8660254037844395 0.4999999999999986 6.080936594763522e-017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID9658\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9656\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID9659\">3.652660384409195 0.1822688830562885 2.891352759911955 4.232134855535498e-015 3.652660384409199 4.232134855535498e-015 2.891352759911955 0.1822688830562885 -0.09937058533372085 3.671096661133044 -0.09937058533372085 2.161507596668063 -1.459935144926541e-031 2.916302128900551 -0.3907104001620391 4.374453193350829 -0.3907104001620306 1.458151064450275 -0.8541651175662031 0.8541651175662042 -0.8541651175662073 4.978439140234898 -1.458151064450274 0.3907104001620306 -1.458151064450278 5.441893857639073 -2.161507596668061 0.09937058533371454 -2.16150759666807 5.733233672467391 -2.916302128900552 -4.210623619319111e-015 -2.91630212890056 5.832604257801106 -3.671096661133047 0.09937058533371243 -3.671096661133047 5.733233672467387 -4.374453193350834 5.441893857639073 -4.374453193350826 0.3907104001620285 -4.978439140234901 0.8541651175662 -4.978439140234901 4.978439140234897 -5.441893857639077 4.374453193350827 -5.441893857639073 1.458151064450269 -5.733233672467396 2.161507596668058 -5.733233672467391 3.671096661133039 -5.832604257801112 2.916302128900549 4.190986168260213 0.1822688830562885 3.429678543762979 4.267884447710124e-015 4.19098616826021 3.215228542880346e-015 3.429678543762975 0.1822688830562885 0.09937058533372085 2.161507596668062 0.09937058533372085 3.671096661133041 4.216943366042126e-015 2.916302128900552 0.3907104001620348 1.458151064450274 0.3907104001620391 4.374453193350828 0.8541651175662073 0.8541651175662052 0.8541651175662115 4.9784391402349 1.458151064450274 0.3907104001620285 1.458151064450282 5.441893857639071 2.161507596668061 0.09937058533371455 2.16150759666807 5.733233672467387 2.916302128900552 -4.199402486125057e-015 2.916302128900564 5.832604257801104 3.671096661133042 0.09937058533371244 3.671096661133047 5.733233672467386 4.37445319335083 0.3907104001620264 4.374453193350834 5.441893857639072 4.978439140234901 0.8541651175662 4.978439140234905 4.978439140234896 5.441893857639077 1.458151064450269 5.441893857639073 4.374453193350827 5.733233672467396 3.671096661133039 5.733233672467387 2.161507596668057 5.832604257801108 2.916302128900548 2.891352759911955 4.185666935442156e-015 2.130045135414715 0.1822688830562874 2.130045135414715 3.133011030612378e-015 2.891352759911955 0.1822688830562884 2.130045135414719 3.949224537959655e-015 2.891352759911958 0.1822688830562882 2.130045135414719 0.1822688830562882 2.89135275991196 3.949224537959655e-015 2.891352759911955 3.015674965013629e-015 3.652660384409193 0.1822688830562883 2.891352759911952 0.1822688830562873 3.652660384409194 4.068330869843407e-015 4.190986168260221 3.120091319635301e-015 3.429678543762979 0.1822688830562884 3.429678543762977 4.172747224465079e-015 4.190986168260216 0.1822688830562874 4.469644098920986 4.244817518878412e-015 3.708336474423749 0.1822688830562885 3.708336474423749 3.192161614048634e-015 4.469644098920989 0.1822688830562885 4.46964409892099 0.1822688830562885 3.708336474423749 3.223227505364645e-015 4.46964409892099 3.223227505364645e-015 3.70833647442375 0.1822688830562885 1.958945151257652 0.1822688830562873 1.197637526760413 3.093504994958723e-015 1.958945151257652 3.093504994958723e-015 1.197637526760414 0.1822688830562884 0.9189795960996344 0.1822688830562884 0.1576719716023936 3.074193866123322e-015 0.9189795960996331 3.074193866123322e-015 0.1576719716023963 0.1822688830562884 -0.1576719716023965 0.1822688830562884 -0.9189795960996371 3.080138828081228e-015 -0.1576719716023982 3.080138828081228e-015 -0.9189795960996336 0.1822688830562884 -1.958945151257654 0.1822688830562884 -1.197637526760417 3.106879031623592e-015 -1.197637526760415 0.1822688830562884 -1.958945151257655 3.106879031623592e-015 -2.891352759911955 0.1822688830562884 -2.130045135414717 3.141823546500243e-015 -2.130045135414716 0.1822688830562884 -2.891352759911954 4.194479451330021e-015 -2.891352759911955 0.1822688830562884 -3.652660384409196 4.220650231516717e-015 -2.891352759911954 4.220650231516717e-015 -3.652660384409193 0.1822688830562884 -4.190986168260213 0.1822688830562884 -3.429678543762976 4.221750826125915e-015 -3.429678543762974 0.1822688830562884 -4.190986168260213 3.169094921296137e-015 -4.469644098921002 0.1822688830562884 -3.708336474423763 3.134508530738605e-015 -3.708336474423762 0.1822688830562884 -4.469644098920998 4.187164435568383e-015 -3.708336474423747 0.1822688830562884 -4.469644098920982 4.115503543428525e-015 -3.708336474423742 4.115503543428525e-015 -4.469644098920985 0.1822688830562884 -3.429678543762984 4.015707553372415e-015 -4.190986168260226 0.1822688830562882 -4.190986168260227 2.963051648542637e-015 -3.429678543762987 0.1822688830562882 -2.891352759911946 0.1822688830562881 -3.652660384409187 3.905347305579139e-015 -2.891352759911947 2.852691400749361e-015 -3.65266038440919 0.1822688830562881 -2.130045135414719 0.1822688830562881 -2.89135275991195 3.806537919616479e-015 -2.130045135414714 3.806537919616479e-015 -2.89135275991195 0.1822688830562881 -1.197637526760434 0.182268883056288 -1.958945151257672 3.740527384491051e-015 -1.197637526760434 3.740527384491051e-015 -1.958945151257672 0.182268883056288 -0.1576719716023936 0.1822688830562879 -0.918979596099631 3.722354218694556e-015 -0.1576719716023931 3.722354218694556e-015 -0.9189795960996346 0.1822688830562879 0.9189795960996431 3.757003026192854e-015 0.1576719716024042 0.182268883056288 0.1576719716024015 3.757003026192854e-015 0.9189795960996394 0.182268883056288 1.197637526760411 3.838057931237868e-015 1.958945151257651 0.1822688830562881 1.197637526760409 0.1822688830562881 1.958945151257649 3.838057931237868e-015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID9659\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9655\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9653\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9654\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"92\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9655\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9656\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 5 5 7 7 8 8 8 8 7 7 9 9 9 9 7 7 10 10 9 9 10 10 11 11 11 11 10 10 12 12 11 11 12 12 13 13 13 13 12 12 14 14 13 13 14 14 15 15 15 15 14 14 16 16 15 15 16 16 17 17 17 17 16 16 18 18 17 17 18 18 19 19 17 17 19 19 20 20 20 20 19 19 21 21 21 21 19 19 22 22 21 21 22 22 23 23 21 21 23 23 24 24 24 24 23 23 25 25 25 25 23 23 26 26 25 25 26 26 27 27 28 28 2 29 29 30 2 29 28 28 0 31 30 32 31 33 32 34 31 33 30 32 33 35 31 33 33 35 34 36 34 36 33 35 35 37 34 36 35 37 36 38 36 38 35 37 37 39 36 38 37 39 38 40 38 40 37 39 39 41 38 40 39 41 40 42 40 42 39 41 41 43 40 42 41 43 42 44 42 44 41 43 43 45 42 44 43 45 44 46 44 46 43 45 45 47 44 46 45 47 46 48 46 48 45 47 47 49 46 48 47 49 48 50 48 50 47 49 49 51 48 50 49 51 50 52 50 52 49 51 51 53 51 53 49 51 52 54 51 53 52 54 53 55 1 56 54 57 55 58 54 57 1 56 3 59 56 60 57 61 58 62 57 61 56 60 59 63 60 64 58 65 61 66 58 65 60 64 56 67 60 68 62 69 63 70 62 69 60 68 61 71 63 72 64 73 65 74 64 73 63 72 62 75 64 76 29 77 65 78 29 77 64 76 28 79 54 80 66 81 55 82 66 81 54 80 67 83 67 84 68 85 66 86 68 85 67 84 69 87 69 88 70 89 68 90 70 89 69 88 71 91 72 92 70 93 71 94 70 93 72 92 73 95 74 96 73 97 72 98 73 97 74 96 75 99 74 100 76 101 75 102 76 101 74 100 77 103 78 104 76 105 77 106 76 105 78 104 79 107 80 108 79 109 78 110 79 109 80 108 81 111 80 112 82 113 81 114 82 113 80 112 83 115 82 116 84 117 85 118 84 117 82 116 83 119 84 120 86 121 85 122 86 121 84 120 87 123 87 124 88 125 86 126 88 125 87 124 89 127 89 128 90 129 88 130 90 129 89 128 91 131 91 132 92 133 90 134 92 133 91 132 93 135 92 136 94 137 95 138 94 137 92 136 93 139 59 140 94 141 57 142 94 141 59 140 95 143</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9667\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9673\">\r\n\t\t\t\t\t<float_array count=\"204\" id=\"ID9692\">-256.3931047876076 106.0714670133916 -56.17373624407992 -288.9859551778027 132.6118808574381 -83.60619879780734 -293.9649495404055 91.81458618976694 -83.60961772910378 -293.9649495404055 91.81458618976694 -83.60961772910378 -288.9859551778027 132.6118808574381 -83.60619879780734 -256.3931047876076 106.0714670133916 -56.17373624407992 -224.0858343059681 78.92227150992494 -42.53268812808619 -224.0858343059681 78.92227150992494 -42.53268812808619 -219.3556321718061 117.6143883178841 -42.53281422192686 -219.3556321718061 117.6143883178841 -42.53281422192686 -326.8522287018222 117.9585513341797 -97.51421495872455 -326.8522287018222 117.9585513341797 -97.51421495872455 -263.4987544374053 65.85317984329186 -57.46077701406921 -263.4987544374053 65.85317984329186 -57.46077701406921 -358.5921065774464 147.5948183457169 -124.6852029789161 -358.5921065774464 147.5948183457169 -124.6852029789161 -364.3695379637566 100.3832208544957 -124.6878207759401 -364.3695379637566 100.3832208544957 -124.6878207759401 -299.429334451952 46.85272641056804 -83.62286026579022 -299.429334451952 46.85272641056804 -83.62286026579022 -228.7620094341482 40.44593175338264 -42.54402049605869 -228.7620094341482 40.44593175338264 -42.54402049605869 -181.3531046449061 90.16120529343903 -25.34760566349269 -181.3531046449061 90.16120529343903 -25.34760566349269 -364.3695379637566 100.3832208544957 -124.6878207759401 -334.0755017692427 73.34522461433994 -98.56305393763068 -334.0755017692427 73.34522461433994 -98.56305393763068 -364.3695379637566 100.3832208544957 -124.6878207759401 -185.6598218465178 54.7248262568487 -25.35804267727326 -185.6598218465178 54.7248262568487 -25.35804267727326 -146.0425152311655 66.57212698369858 -21.25815934717684 -146.0425152311655 66.57212698369858 -21.25815934717684 -141.9789504500041 99.7033585751235 -21.26373515903106 -141.9789504500041 99.7033585751235 -21.26373515903106 -370.0966594697384 53.25952106775458 -124.701700035509 -370.0966594697384 53.25952106775458 -124.701700035509 -267.6168327384148 23.57293259247194 -56.88650974398024 -267.6168327384148 23.57293259247194 -56.88650974398024 -150.0338803668492 33.73051672688166 -21.2678321283247 -150.0338803668492 33.73051672688166 -21.2678321283247 -304.6309827690448 4.052706638927248 -83.63546607958051 -304.6309827690448 4.052706638927248 -83.63546607958051 -233.4381845623539 1.969591996843064 -42.55535286405666 -233.4381845623539 1.969591996843064 -42.55535286405666 -370.0966594697384 53.25952106775458 -124.701700035509 -338.7283200987586 27.82874503717153 -98.07105980600954 -338.7283200987586 27.82874503717153 -98.07105980600954 -370.0966594697384 53.25952106775458 -124.701700035509 -189.9665390481223 19.28844722025247 -25.36847969103746 -189.9665390481223 19.28844722025247 -25.36847969103746 -103.0761257876138 74.88124601622508 -3.916186154419847 -103.0761257876138 74.88124601622508 -3.916186154419847 -375.8237809757229 6.135821281004837 -124.7155792950671 -375.8237809757229 6.135821281004837 -124.7155792950671 -154.0252455025275 0.8889064700647396 -21.27750490943436 -154.0252455025275 0.8889064700647396 -21.27750490943436 -106.6929559017653 45.1213716533191 -3.924951277328546 -106.6929559017653 45.1213716533191 -3.924951277328546 -67.99919615637737 54.2219824574679 0.0163694336943081 -67.99919615637737 54.2219824574679 0.0163694336943081 -64.60226872819112 81.79232883235977 0.005343903896573465 -64.60226872819112 81.79232883235977 0.005343903896573465 -110.3097860159196 15.36149729041335 -3.933716400254525 -110.3097860159196 15.36149729041335 -3.933716400254525 -71.30575129952922 27.0151017003775 0.008356239462045778 -71.30575129952922 27.0151017003775 0.008356239462045778 -74.61230644271109 -0.1917790567058546 0.0003430451824897318 -74.61230644271109 -0.1917790567058546 0.0003430451824897318</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"68\" source=\"#ID9692\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9674\">\r\n\t\t\t\t\t<float_array count=\"204\" id=\"ID9693\">-0.4876189509719171 0.0735991870598202 0.869948802124114 -0.4728638772592776 0.1430990941918595 0.8694379810111772 -0.4964593466355267 0.05938241801413199 0.8660264693235542 0.4964593466355267 -0.05938241801413199 -0.8660264693235542 0.4728638772592776 -0.1430990941918595 -0.8694379810111772 0.4876189509719171 -0.0735991870598202 -0.869948802124114 -0.3792772625909782 0.04551831104164615 0.9241627786496327 0.3792772625909782 -0.04551831104164615 -0.9241627786496327 -0.3580675096486284 0.1309945397398458 0.9244609721845348 0.3580675096486284 -0.1309945397398458 -0.9244609721845348 -0.4885936377208111 0.05887727676239987 0.8705226725707888 0.4885936377208111 -0.05887727676239987 -0.8705226725707888 -0.4899097775977476 0.07272877711540488 0.8687340990161621 0.4899097775977476 -0.07272877711540488 -0.8687340990161621 -0.5592454233462449 0.1487632884952158 0.8155452412112821 0.5592454233462449 -0.1487632884952158 -0.8155452412112821 -0.5841007892798895 -0.008041433834975787 0.8116413021184222 0.5841007892798895 0.008041433834975787 -0.8116413021184222 -0.4968397048274769 0.06033166937122862 0.8657426854313158 0.4968397048274769 -0.06033166937122862 -0.8657426854313158 -0.3803758763573585 0.04675097038611322 0.9236495761127854 0.3803758763573585 -0.04675097038611322 -0.9236495761127854 -0.2477607631467706 0.02816659291493187 0.9684117137294933 0.2477607631467706 -0.02816659291493187 -0.9684117137294933 -0.5652729747227658 0.1503463459894391 0.8110871964811794 -0.4946857609137972 0.05986789237526129 0.8670074010132104 0.4946857609137972 -0.05986789237526129 -0.8670074010132104 0.5652729747227658 -0.1503463459894391 -0.8110871964811794 -0.2473854740976967 0.02978045391870879 0.9684593702215151 0.2473854740976967 -0.02978045391870879 -0.9684593702215151 -0.2545236440372509 0.03115381171285346 0.9665646148301513 0.2545236440372509 -0.03115381171285346 -0.9665646148301513 -0.2267986157513829 0.1155171908489894 0.9670667849283288 0.2267986157513829 -0.1155171908489894 -0.9670667849283288 -0.5830156603339918 -0.01162788397400571 0.8123777028695498 0.5830156603339918 0.01162788397400571 -0.8123777028695498 -0.4910161897234832 0.05944604566429553 0.86911982435353 0.4910161897234832 -0.05944604566429553 -0.86911982435353 -0.2546524209113778 0.03043669938141968 0.9665535431908258 0.2546524209113778 -0.03043669938141968 -0.9665535431908258 -0.4942671442962122 -0.02487282493799441 0.8689541602690393 0.4942671442962122 0.02487282493799441 -0.8689541602690393 -0.3819146988873688 -0.0390918750310387 0.9233704500796678 0.3819146988873688 0.0390918750310387 -0.9233704500796678 -0.5670902787436973 0.1488259464144681 0.81009842206255 -0.491654831741388 0.05951613119694554 0.8687539102373556 0.491654831741388 -0.05951613119694554 -0.8687539102373556 0.5670902787436973 -0.1488259464144681 -0.81009842206255 -0.2473810057634201 0.02985002020338879 0.9684583699268317 0.2473810057634201 -0.02985002020338879 -0.9684583699268317 -0.2459803145761958 0.02652354696107118 0.9689118568257898 0.2459803145761958 -0.02652354696107118 -0.9689118568257898 -0.5789146002567402 -0.01144983078547419 0.8153077866576296 0.5789146002567402 0.01144983078547419 -0.8153077866576296 -0.2476746160052432 -0.05768201217963739 0.9671246403941755 0.2476746160052432 0.05768201217963739 -0.9671246403941755 -0.245286647620517 0.02952521610441664 0.9690008886028307 0.245286647620517 -0.02952521610441664 -0.9690008886028307 -0.1415154419990065 0.01843322036893353 0.9897644144252996 0.1415154419990065 -0.01843322036893353 -0.9897644144252996 -0.1199862008522441 0.1079754940160933 0.9868863178183318 0.1199862008522441 -0.1079754940160933 -0.9868863178183318 -0.2452794786046953 0.02964265504618338 0.9689991178413022 0.2452794786046953 -0.02964265504618338 -0.9689991178413022 -0.1419968762395635 0.01575979269078786 0.9897416410723302 0.1419968762395635 -0.01575979269078786 -0.9897416410723302 -0.1417831292629367 -0.07576586578559139 0.9869939603858623 0.1417831292629367 0.07576586578559139 -0.9869939603858623</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"68\" source=\"#ID9693\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9676\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID9694\">246.1893629523888 2379.219223879999 246.3387479586216 2379.143619441345 246.338754565259 2379.28236222362 35.95671123403177 77.5648083552389 35.95686095390033 77.96175542135089 36.6529287456459 77.74536795633647 249.0205471849729 2375.341669932616 249.1176890819953 2375.23834399723 249.2623065534408 2375.274009572635 25.79039570896913 75.45596062577499 26.39181546875602 75.73202489407305 27.03235133689482 75.58824927722378 246.3685505158054 2382.005772534077 246.6157126294807 2382.049326390226 246.4678702484113 2382.090698043233 29.31663360597692 76.01949167810535 28.57072754318148 76.14029902982499 29.81782392287442 76.26082563958006 246.3322666560382 2379.143589107885 246.4491117567769 2379.208825904368 246.3322732622374 2379.282331890679 35.98903401261044 77.56480378340902 35.399585441913 77.77703633096819 35.98918372911961 77.96175084952151 249.0813875678892 2375.745296421568 249.3228706840208 2375.677610835544 249.212863960292 2375.774944395203 27.63574741402202 75.25195594985642 26.9311988990959 75.3807835256371 28.17363617257764 75.51082061981059 246.3699277458766 2381.756418368967 246.4690458170443 2381.841528258611 246.3331168813118 2381.875612223489 30.04245084646241 75.89816176391315 29.38682692597988 76.01758055883848 29.8871840769705 76.25956533468285 246.3873638415888 2379.026774083139 246.6422578290531 2379.011491801961 246.5042426600477 2379.091868938858 14.88138975077995 77.79001601152241 14.20069433024989 78.0374146528094 15.46244452268136 77.98537491944227 242.9900356153216 2380.009978761336 243.1273159535119 2379.902595338383 243.3088554094153 2379.972150471438 14.23173571466301 77.5719582560141 14.91320151620677 77.78416046304558 15.49181201729061 77.56103301138629 248.8519795828689 2379.508068841687 248.9809404834867 2379.434216957593 248.9809477691541 2379.58711320204 18.38751934760237 80.37015667726327 18.50846689768594 80.79712796253742 19.0909156651111 80.51833627553279 246.1886925401532 2379.294790963527 246.3115822706103 2379.355332419771 246.1886987734277 2379.425632700887 19.62764096846751 80.23654415887545 19.09091566505992 80.51833627553289 19.75813288378989 80.59972142528277 238.126885656643 2366.855587833007 238.1113838178448 2367.025016394448 238.0233320791752 2366.954965317706 35.01490239650384 77.52152794387925 35.01504438558553 77.89800169411365 35.69790341081325 77.67926011112718 246.4082344811429 2379.334484595514 246.5463244441791 2379.254239923947 246.5459600369092 2379.404207193454 14.22214727667813 77.56548116406195 14.22240417344889 78.02485601402493 14.90348008073541 77.77785247917078 245.701233948119 2380.347843646549 245.9537380457128 2380.358411836672 245.8214832795663 2380.427796691831 14.53050651466392 77.34806196409944 13.88061867575901 77.57200676737934 15.14111513698802 77.58235020570852 248.3588517498457 2378.991197493179 248.4850993394718 2378.92529486738 248.6140675259796 2379.00433922787 18.38751934760176 80.37015667726099 19.09091566511019 80.51833627553046 19.62764096851788 80.23654415887286 243.3340278674869 2380.401900925189 243.4883330699104 2380.508046036504 243.3432751302717 2380.631442152126 35.28327794164953 77.13160924958807 34.66261097000703 77.34528046969376 35.28344295050019 77.56904977383161 242.1551508673509 2369.184797486228 242.2155728940251 2369.329978778617 242.0916209282637 2369.328605347577 51.8232294637521 75.53668708416446 51.60817541817406 75.88227363945961 52.35257637926421 75.86339608441212 237.8401691455767 2361.725746480677 237.7947108164239 2361.847294082954 237.6607260028731 2361.896072773669 35.01918470985014 77.52702063532425 35.70232071788858 77.68452104953639 36.27458143853672 77.48538512949003 238.967276689709 2366.029785758999 238.9937093833568 2366.33639010029 238.9091792588937 2366.170331727503 35.67954525500149 77.68426669878144 34.99822740913827 77.90483685647257 36.2574255672864 77.8344375251521 246.5063634935057 2380.175278029768 246.6582462257662 2380.045960163152 246.6679381143129 2380.286538108825 13.88044572211415 77.11353338482422 13.8806186757598 77.57200676737936 14.53050651466483 77.3480619640994 246.7432872684472 2381.896038827422 246.9859258582694 2381.961236271355 246.8448560277651 2381.99702143062 16.00531587872351 76.94822066477168 15.33690099424429 77.13436507639828 16.59600383638234 77.16731675672477 243.2999305346154 2380.348557477535 243.4645323585086 2380.22736379371 243.6603469132525 2380.318382393449 13.88044572211538 77.11353338482425 14.53050651466576 77.34806196409929 15.14161768426664 77.12378799626842 241.0465949421297 2369.0788667472 241.0734943335871 2369.215227532387 240.9964651339618 2369.352065950996 34.4528664487073 82.44991509970322 35.19728157428198 82.46858703716342 35.62911747678668 82.17330569968449 237.8814672965581 2361.829474482678 237.7020236570338 2361.999795825049 237.7702705688392 2361.855970523288 52.35257637925973 75.86339608442046 51.60817541816882 75.88227363946828 52.78463500982608 76.15855811105126 240.4673271599364 2362.542247097623 240.377998343111 2362.62694328606 240.3919267248883 2362.482260972288 64.39149754867498 77.48776304634697 63.8063094752245 77.67246439774246 64.39161909236428 77.81014495449857 249.3019080823179 2375.527670317243 249.4243195055074 2375.446175720737 249.445972245976 2375.578869499248 15.33674390948369 76.71795741047021 15.33690099424936 77.13436507639912 16.00531587872841 76.94822066477258 246.7092425246401 2382.082528856844 246.8108112842342 2382.183511460316 246.6757795053168 2382.202899610522 36.9167969743784 76.7780745207658 36.31459636268604 76.94541470325588 36.91693818133126 77.15241647006972 0 1 0.9094859920504645 0 1 0.6482812167719665 25.82638391360651 75.20017279583162 25.1148832085257 75.3333210007446 26.34418409559226 75.50197906181249 240.9735081670043 2363.992167711393 240.7317030022247 2363.969919465584 240.8653617959213 2363.925394781753 34.97663794563599 82.1344535825434 34.45286644870596 82.44991509970475 35.62911747678572 82.17330569968617 241.4361104729625 2369.544184116287 241.3563653407983 2369.657271880945 241.329465562902 2369.520907298521 35.62911747678477 82.17330569968418 35.19728157427986 82.46858703716318 35.83831418389131 82.46344097156502 240.5020769336627 2362.209552282558 240.4671824013677 2362.348739085274 240.3917818024019 2362.288751365029 31.47756193166049 83.25990074243103 31.68202075482358 83.5526259395443 32.19480329395442 83.20590295589535 248.3847176842653 2375.68828680022 248.4884302479687 2375.601005174791 248.6324944114788 2375.652204356743 15.33674390948788 76.71795741046866 16.00531587873271 76.94822066477109 16.59876156348335 76.76850094043635 243.0044036796579 2380.403871033746 243.1551138535794 2380.512588505998 243.0132063188335 2380.622375541782 26.48426251533058 75.09707220976024 25.82638391360673 75.20017279583094 26.34418409559231 75.50197906181168 235.8958949133247 2369.79324950406 235.8527625477444 2369.935825196933 235.757080926905 2369.862102280126 35.01890229396463 76.7783367367207 35.01904350191882 77.15267868602449 35.70206061528133 76.99498959780898 246.5059749766501 2380.517804178901 246.6619027479003 2380.396950262566 246.6715946364309 2380.637528208241 17.9430941140477 80.02327987957341 18.0699479109293 80.47088559282069 18.66860458042621 80.19640389131124 236.0117744857757 2369.728617105888 235.8958943054801 2369.793243393007 235.9273079521457 2369.669617555506 64.33544518780266 76.85651802246571 63.75054502636336 76.99111432901712 64.33556569848396 77.17603886253774 242.1543128224189 2368.843273911481 242.2056376953841 2368.990305566974 242.0998380747401 2368.989133270241 36.41300274944215 77.17989671968059 36.41312327790415 77.49941755975017 37.10536230619593 77.33956152905562 240.6139175770903 2362.999342950663 240.5065182727215 2362.958882234061 240.4477913668631 2362.83905253465 31.48410220488933 83.26653878155211 32.20127059275162 83.21216587449354 32.60418527523441 82.90932289418761 238.9820556773227 2365.676216718734 238.9903460087976 2365.983875831111 238.9253347605989 2365.811528549662 55.35214288566001 76.60927228401292 54.59576980318143 76.59968691434401 55.77729099847782 76.87828360518239 0.9999999999999996 1 0 0.6485989790068967 0.1901581960407688 0 17.94309411405187 80.02327987957288 18.66860458042993 80.19640389131065 19.19629957700899 79.93124702337101 235.2572494374518 2368.366692883109 235.1542482741217 2368.415513322311 235.0271488841256 2368.356820083146 35.01890229396605 76.7783367367208 35.70206061528229 76.99498959780881 36.27849755483923 76.84602082041062 236.4371644567486 2369.50971583747 236.3922076204497 2369.650596030498 236.3077410865238 2369.591596479908 64.33544518780585 76.85651802246558 64.33556569848703 77.17603886253929 65.03469778890259 77.04615868981756 234.9363412522625 2368.365932147997 234.8374619783974 2368.419078260127 234.7077304005373 2368.382684451362 49.80512332305584 76.0016382647819 50.3122829829669 76.33649623954877 50.92547578242767 76.35854472165009 240.5711677706298 2363.020199753747 240.4050418474022 2362.859911978213 240.5280297171377 2362.915412846832 37.10536230619586 77.33956152905522 36.41312327790513 77.49941755974949 37.67017741981562 77.48911494243315 238.994679115859 2365.763143243366 238.9367942685475 2365.897951780833 238.8928819870918 2365.751492630313 32.66578789023686 82.87806451713814 32.26211084814075 83.18051296034038 32.85969304398925 83.1163816013258 240.2628070142468 2371.375356903691 240.1478653177133 2371.406723476679 240.0159296590973 2371.335042460163 34.49255501160861 83.18331129561295 35.24724083329458 83.16771634230985 35.67124372138349 82.90002823372534 241.2671770830343 2363.725009005442 241.0269383454063 2363.689330802274 241.1637198774711 2363.660631838175 50.52233265846955 76.05581306740643 49.8051233230547 76.00163826478109 50.92547578242697 76.35854472164924 240.6436852808645 2362.238378023109 240.5565487889476 2362.32229090883 240.58177586368 2362.189124921319 65.84815976348666 77.20324053158323 65.27244852402313 77.33566990017816 65.84825959759415 77.46794026242061 241.1048127366898 2362.480113105975 241.0118668925084 2362.559404262064 241.0429033193055 2362.43086000402 35.67124372140327 82.90002823371866 35.24724083331431 83.16771634230334 35.87517076185708 83.13074451888001</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID9694\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9675\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9673\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9674\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"46\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9675\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9676\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 6 0 7 2 8 8 12 1 13 0 14 1 18 10 19 2 20 6 24 2 25 12 26 8 30 0 31 6 32 1 36 14 37 10 38 2 42 10 43 16 44 12 48 2 49 18 50 6 54 12 55 20 56 22 60 8 61 6 62 10 66 14 67 16 68 2 72 24 73 25 74 20 78 12 79 18 80 2 84 25 85 18 86 28 90 6 91 20 92 30 96 22 97 6 98 32 102 8 103 22 104 25 108 24 109 34 110 20 114 18 115 36 116 18 120 25 121 34 122 38 126 28 127 20 128 30 132 6 133 28 134 32 138 22 139 30 140 36 144 18 145 40 146 20 150 36 151 42 152 38 162 20 163 48 164 30 168 28 169 38 170 50 174 32 175 30 176 42 180 36 181 40 182 18 186 45 187 40 188 48 192 20 193 42 194 45 198 44 199 52 200 38 204 48 205 54 206 56 210 30 211 38 212 58 216 50 217 30 218 60 222 32 223 50 224 54 234 48 235 42 236 62 240 38 241 54 242 64 246 56 247 38 248 58 252 30 253 56 254 60 258 50 259 58 260 66 264 62 265 54 266 64 270 38 271 62 272 58 276 56 277 64 278 64 282 62 283 66 284</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9675\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9676\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 3 9 5 10 7 11 5 15 4 16 9 17 3 21 11 22 4 23 13 27 3 28 7 29 7 33 5 34 9 35 11 39 15 40 4 41 17 45 11 46 3 47 19 51 3 52 13 53 21 57 13 58 7 59 7 63 9 64 23 65 17 69 15 70 11 71 26 75 27 76 3 77 19 81 13 82 21 83 19 87 26 88 3 89 21 93 7 94 29 95 7 99 23 100 31 101 23 105 9 106 33 107 35 111 27 112 26 113 37 117 19 118 21 119 35 123 26 124 19 125 21 129 29 130 39 131 29 135 7 136 31 137 31 141 23 142 33 143 41 147 19 148 37 149 43 153 37 154 21 155 46 159 47 160 19 161 49 165 21 166 39 167 39 171 29 172 31 173 31 177 33 178 51 179 41 183 37 184 43 185 41 189 46 190 19 191 43 195 21 196 49 197 53 201 47 202 46 203 55 207 49 208 39 209 39 213 31 214 57 215 31 219 51 220 59 221 51 225 33 226 61 227 53 231 46 232 41 233 43 237 49 238 55 239 55 243 39 244 63 245 39 249 57 250 65 251 57 255 31 256 59 257 59 261 51 262 61 263 55 267 63 268 67 269 63 273 39 274 65 275 65 279 57 280 59 281 67 285 63 286 65 287</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9675\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9676\" />\r\n\t\t\t\t\t<p>18 156 44 157 45 158</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material5\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9675\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9676\" />\r\n\t\t\t\t\t<p>40 228 45 229 52 230</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9695\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9696\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID9700\">-387.0777276687104 127.9926958042786 -142.2229446197607 -405.6333212433574 109.0005985615185 -166.7145718214733 -365.3234938903179 104.08886204327 -126.0919292203525 -365.3234938903179 104.08886204327 -126.0919292203525 -405.6333212433574 109.0005985615185 -166.7145718214733 -387.0777276687104 127.9926958042786 -142.2229446197607 -360.2297992358817 145.9785494588255 -126.0814632515767 -360.2297992358817 145.9785494588255 -126.0814632515767 -400.5396265889422 150.8902859770792 -166.7041058527057 -400.5396265889422 150.8902859770792 -166.7041058527057</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID9700\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9697\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID9701\">-0.7020843513239692 0.08519529046888372 0.7069790139091288 -0.7262040483192294 0.05992510072218409 0.6848625135807906 -0.6835247120831097 0.0547246404801603 0.727873053283345 0.6835247120831097 -0.0547246404801603 -0.727873053283345 0.7262040483192294 -0.05992510072218409 -0.6848625135807906 0.7020843513239692 -0.08519529046888372 -0.7069790139091288 -0.6767644584259388 0.1103198302889174 0.7278869437326583 0.6767644584259388 -0.1103198302889174 -0.7278869437326583 -0.7194437946755933 0.1155202905253339 0.6848764040173418 0.7194437946755933 -0.1155202905253339 -0.6848764040173418</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID9701\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9699\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9702\">252.5077301903672 2377.892326028805 252.6063224243277 2377.962834598033 252.4151426544872 2377.970774867806 -20.76513853160155 80.96098779733872 -20.66719670962845 81.51236760546179 -20.37867126825436 81.21339544145015 252.3478533300179 2378.117003950212 252.4501924245306 2378.181773554925 252.3576043053415 2378.260216915909 -23.74091482323661 71.80325474948181 -23.4139329164377 72.08643612581572 -23.08693274888789 71.80326293855566 256.3023629015345 2377.082940193755 256.3121144392408 2377.226153115616 256.2097750933664 2377.161383927092 -23.41387631129862 83.30783956607833 -23.7408750566178 83.59101339116532 -23.08689298223111 83.59102030461744 256.0665159253325 2377.699659376591 256.2576956518863 2377.69171832527 256.165108433166 2377.770167538179 -24.44219186373274 78.12119267001843 -24.153682870201 78.42017099833576 -24.05571071464304 77.86879328310951</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9702\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9698\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9696\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9697\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9698\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9699\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 6 0 7 2 8 8 12 1 13 0 14 6 18 8 19 0 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9698\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9699\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 3 9 5 10 7 11 5 15 4 16 9 17 5 21 9 22 7 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9703\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9704\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID9708\">-405.8709367735628 107.0464884388696 -166.7150600479481 -411.4596540442863 61.08581835409882 -166.7265431352507 -392.6565491615011 82.11340693146804 -142.2344073742916 -392.6565491615011 82.11340693146804 -142.2344073742916 -411.4596540442863 61.08581835409882 -166.7265431352507 -405.8709367735628 107.0464884388696 -166.7150600479481 -371.1498266912486 56.17408183585008 -126.1039005341472 -371.1498266912486 56.17408183585008 -126.1039005341472 -365.5611094205215 102.1347519206217 -126.0924174468455 -365.5611094205215 102.1347519206217 -126.0924174468455</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID9708\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9705\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID9709\">-0.7185600954134669 0.1147444348595325 0.6859337460339416 -0.7251602289512623 0.06046604589867079 0.6859201845992962 -0.7020843513240392 0.08519529046880872 0.7069790139090683 0.7020843513240392 -0.08519529046880872 -0.7069790139090683 0.7251602289512623 -0.06046604589867079 -0.6859201845992962 0.7185600954134669 -0.1147444348595325 -0.6859337460339416 -0.6844940487077792 0.05551088791829476 0.7269019456612803 0.6844940487077792 -0.05551088791829476 -0.7269019456612803 -0.6778939151573864 0.1097892768843265 0.7269155071078117 0.6778939151573864 -0.1097892768843265 -0.7269155071078117</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID9709\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9707\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9710\">256.6237694300052 2377.758055471441 256.6344686555641 2377.915186315835 256.5316554642601 2377.84345816615 -24.13014406977523 83.30783199418531 -24.48892091914654 83.59100548333564 -23.77138263665566 83.59101306866057 256.1358216721283 2377.892010810342 256.2386354041224 2377.963743970517 256.0481531038911 2377.982110464798 -21.80999765823285 80.83172344859516 -21.72009177713798 81.38363461968643 -21.39667900633934 81.08437469217112 252.4042255942532 2378.047232768797 252.5947079585249 2378.028867054043 252.5070390368657 2378.11896634594 -25.12684924887191 78.14083643538596 -24.8034530759122 78.44010332888843 -24.71351658460452 77.88819409465916 252.3419740103704 2378.121951838537 252.4447869209621 2378.19368040513 252.3526726186818 2378.279082727936 -24.48896068572059 71.80324538255506 -24.13020067487134 72.08642715681012 -23.7714224032713 71.80325436747111</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9710\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9706\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9704\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9705\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9706\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9707\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 6 1 7 6 8 8 12 0 13 2 14 8 18 2 19 6 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9706\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9707\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 7 9 4 10 3 11 3 15 5 16 9 17 7 21 3 22 9 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9711\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9712\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID9731\">-443.1760366686112 120.5244264394351 -1047.242895159269 -445.8986976590959 97.93670742822292 -1047.271683717766 -459.2468190672826 112.0854936401281 -1040.772967661395 -443.1755751715482 120.5226493513817 -1047.243179206374 -443.1755751715482 120.5226493513817 -1047.243179206374 -443.1760366686112 120.5244264394351 -1047.242895159269 -445.8986976590959 97.93670742822292 -1047.271683717766 -459.2468190672826 112.0854936401281 -1040.772967661395 -465.4782156382371 101.4533630887293 -1027.178653686141 -465.4782156382371 101.4533630887293 -1027.178653686141 -462.4819061739372 126.3226740931239 -1027.145300342102 -462.4819061739372 126.3226740931239 -1027.145300342102 -462.1015846991577 88.37097823387967 -1040.80936219866 -462.1015846991577 88.37097823387967 -1040.80936219866 -448.6324404914158 75.24759125951027 -1047.302219158469 -448.6324404914158 75.24759125951027 -1047.302219158469 -468.4933358334729 76.42891252083905 -1027.212332063939 -468.4933358334729 76.42891252083905 -1027.212332063939 -477.7193710378178 116.6425843312754 -1021.987710099021 -477.7193710378178 116.6425843312754 -1021.987710099021 -480.8534241028856 90.60505137954397 -1022.025895570475 -480.8534241028856 90.60505137954397 -1022.025895570475 -485.1064269390536 104.5693620722811 -1007.085741659253 -485.1064269390536 104.5693620722811 -1007.085741659253 -481.7187007014454 132.3882004388267 -1007.076732211087 -481.7187007014454 132.3882004388267 -1007.076732211087 -464.9613284092429 64.65705056401998 -1040.836797755092 -464.9613284092429 64.65705056401998 -1040.836797755092 -488.3652308851415 77.59972181928811 -1007.081133282388 -488.3652308851415 77.59972181928811 -1007.081133282388 -451.371140648258 52.50790929981463 -1047.334433071529 -451.371140648258 52.50790929981463 -1047.334433071529 -471.4981985504664 51.4914726461077 -1027.2459013831 -471.4981985504664 51.4914726461077 -1027.2459013831 -483.5723131180184 65.75286121960266 -1021.981047335173 -483.5723131180184 65.75286121960266 -1021.981047335173 -491.6346588959859 50.46460469467024 -1007.117652235068 -491.6346588959859 50.46460469467024 -1007.117652235068</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID9731\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9713\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID9732\">-0.462310294987817 0.222288965062806 -0.8584036388317469 -0.5303755397777407 0.06935055857197325 -0.8449214678484771 -0.717532386584306 0.08387354027703532 -0.6914567979592264 -0.3949505962058467 0.04877568981777007 -0.9174066484604562 0.3949505962058467 -0.04877568981777007 0.9174066484604562 0.462310294987817 -0.222288965062806 0.8584036388317469 0.5303755397777407 -0.06935055857197325 0.8449214678484771 0.717532386584306 -0.08387354027703532 0.6914567979592264 -0.7085994130764636 0.08545789884840714 -0.7004168896536596 0.7085994130764636 -0.08545789884840714 0.7004168896536596 -0.6281083215076055 0.3069720014525233 -0.7150161723885206 0.6281083215076055 -0.3069720014525233 0.7150161723885206 -0.7169396993322499 0.08731272120844935 -0.6916458315037828 0.7169396993322499 -0.08731272120844935 0.6916458315037828 -0.5314006378585672 0.06085379144476952 -0.8449320553454608 0.5314006378585672 -0.06085379144476952 0.8449320553454608 -0.7076776284851319 0.08660106945712975 -0.7012079783563084 0.7076776284851319 -0.08660106945712975 0.7012079783563084 -0.693403471284727 0.08502388029114051 -0.7155155943727075 0.693403471284727 -0.08502388029114051 0.7155155943727075 -0.6941162302562881 0.08686325588474367 -0.7146029902483624 0.6941162302562881 -0.08686325588474367 0.7146029902483624 -0.844652839112361 0.09990038117641004 -0.525910158886702 0.844652839112361 -0.09990038117641004 0.525910158886702 -0.7846079574947391 0.3094683162675619 -0.5372333890056109 0.7846079574947391 -0.3094683162675619 0.5372333890056109 -0.7167173749292897 0.09238753554413909 -0.6912168601463281 0.7167173749292897 -0.09238753554413909 0.6912168601463281 -0.8449692362721033 0.1058798721108298 -0.5242293795997446 0.8449692362721033 -0.1058798721108298 0.5242293795997446 -0.5253324734434837 -0.1386465886355373 -0.8395254110540548 0.5253324734434837 0.1386465886355373 0.8395254110540548 -0.6929269801466771 -0.1390163166978101 -0.7074790907698833 0.6929269801466771 0.1390163166978101 0.7074790907698833 -0.6894650026194824 0.1158889202975492 -0.7149879497692151 0.6894650026194824 -0.1158889202975492 0.7149879497692151 -0.828645508371172 -0.09870034490312354 -0.5510035057713211 0.828645508371172 0.09870034490312354 0.5510035057713211</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID9732\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9715\">\r\n\t\t\t\t\t<float_array count=\"292\" id=\"ID9733\">-34.05690265513897 182.3486975509939 -34.30655548901985 182.3526984641762 -34.17269977809285 182.167947984573 -34.0569212860044 182.3487060054338 -23.70871013864631 0.3166669294702253 -23.70868408858252 0.3166592863403561 -24.06103005782053 0.3249206869070453 -23.87758767477318 0.1631693393969106 0 0.3234313613297069 1 3.552713678800501e-015 0.3406885042652661 1.000000000000004 -12.63780405293647 43.12569145471916 -12.96600257005019 43.30663230905191 -12.64822661899931 43.30278642346298 -32.02074203423468 182.9622251034633 -32.13243400754681 182.8226190589523 -31.99610173108771 182.6977546612021 -15.31983400997699 58.81227987312717 -15.31033193350815 59.00507909125007 -15.01175112738856 59.0090470296537 -34.30952448779009 181.6660430720603 -34.4684397714411 181.5353808063989 -34.35232016684932 181.3736308888295 -16.37474397966476 60.44342538561683 -16.36675871138865 60.62871992979861 -16.05849196287669 60.63244807689009 -51.00364967255546 198.3717519805394 -50.83719497032738 198.5175882716908 -50.99118306029018 198.6505015123129 -23.9698525401423 66.71544288981802 -23.79481909793275 66.85510902272509 -23.58164414118006 66.7152592116324 -34.02901785745112 182.0050573661345 -34.27977473710723 182.0099549698048 -34.15785578822203 181.8250133941929 -24.25427735287712 0.2107452557519045 -24.42071162186161 0.372490935610286 -24.06684226009876 0.3633084255174319 0 1 0.4991841668541868 0 1 0.9975292276432413 -24.36050596485504 66.71233988759396 -24.16501861774836 66.85204454786563 -23.96987562607689 66.71215304304509 -35.75308812268913 178.3306779239247 -35.98965175083445 178.2811553059819 -35.83198294113921 178.1652846253774 23.71309001958493 5.87273988830079 23.92735825106576 5.730679085430508 23.53918619173354 5.72736384904472 -36.52864949408077 177.8387750927438 -36.66307476292254 178.0145599442399 -36.68878098722047 177.6987476156297 -12.03973642376825 40.12348140507781 -12.35562538207034 40.31273971775035 -12.04736601035542 40.30878176947066 -36.38773927946155 177.6960468797643 -36.6095921169452 177.6461187504621 -36.50634610150535 177.5302094120647 24.11914466100845 5.889759922458627 24.31762838043061 5.747615403282027 23.92703516898801 5.744253959385934 -35.831982941141 178.1652846253984 -35.98965175083681 178.2811553060033 -35.95415887560704 178.0068974983943 -12.89626537563217 40.89200375540543 -13.21364989043255 41.08010120843166 -12.90124216462557 41.09047598464716 -35.69766704636344 178.2884938965525 -35.83198294113106 178.1652846253811 -35.68394914209662 178.0103487237797 -15.97185158174146 57.3270656662768 -15.96241491983756 57.53995692759705 -15.67202321985062 57.52857203964545 -36.66307476292405 178.0145599442542 -36.8227926592245 177.8523492998627 -36.68878098722189 177.6987476156417 -17.30918389913308 62.42215502788359 -17.29841883124957 62.59924203947625 -16.98063567290251 62.60284923678225 -11.64984837959619 141.3845407118968 -11.73777182181271 141.4878332021899 -11.52313872249626 141.4904344691433 -12.28265649559901 38.9350618789829 -12.5920573148062 39.12893745928401 -12.29018478049311 39.13963904384063 -36.63126820777335 177.663291056639 -36.75868596621516 177.5740402233659 -36.6621843593787 177.437258248128 -17.15686525513781 59.58237422176841 -17.14552144971768 59.78398592261758 -16.84365918638564 59.7731724062639 -35.68394914209918 178.0103487237811 -35.8319829411346 178.1652846253835 -35.95415887559776 178.0068974983832 -23.96194165168283 64.62013585132826 -23.7623983417113 64.77485222772313 -23.52762437103467 64.62009073241826 1.110223024625157e-016 0.004957790257697712 1 0 0.5464331826674673 0.9999999999999999 -24.6283174086484 0.2806723238367593 -24.77888085741596 0.4423206079155607 -24.42426516215542 0.4325339157585534 -36.71054308725842 177.6839090567015 -36.84455358490634 177.8375118091783 -36.9856091092958 177.6656075010172 -24.74981093066183 66.71589330275162 -24.53522710883815 66.85553954087393 -24.36053840618713 66.71570588610081 -36.68744639057423 177.6073354823688 -36.82448764688938 177.5091319524677 -36.73525544073763 177.3603780845395 -17.67536672485241 62.2127631172533 -17.64427816593624 62.40135643081711 -17.34691747575279 62.39406150160458 -36.0426141335176 177.0085014856055 -36.16745860964764 177.1601384357264 -36.294903895558 177.0070365162461 -24.37825755415054 64.56777444320017 -24.16439439604443 64.72305179952545 -23.95724605942868 64.56802794708854 -10.56070536606765 141.9989672330029 -10.34472954552549 142.0043762751583 -10.4643601017706 141.9042196923164 -11.40259840592212 37.56447382465606 -11.39579105395981 37.37117157899701 -11.70244287768107 37.56867069649071 -36.68538078848214 178.006870953927 -36.96046128003427 177.9881624598594 -36.82642678075341 177.8469049895537 24.48754503104421 4.918645176145134 24.68905270450437 4.779411159303865 24.29985261220209 4.774727828720708 -36.72918991046937 177.3353315792617 -36.81816380288132 177.4842464863722 -36.96668402147864 177.349739050401 -24.80296152488063 63.42289324514704 -24.55288868735182 63.57841030866755 -24.37938380542478 63.42268134810088 -36.96046128004811 177.9881624598713 -37.00417424969937 177.7037919891137 -36.82642678076891 177.8469049895671 -12.98801632614703 34.54703022523705 -13.00640471130255 34.32716408151362 -13.28859569236664 34.53879118365956</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"146\" source=\"#ID9733\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9714\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9712\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9713\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9714\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9715\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 0 14 2 15 10 16 1 20 12 21 8 22 10 26 2 27 8 28 1 32 14 33 12 34 10 44 8 45 18 46 12 50 14 51 16 52 8 56 16 57 20 58 18 62 8 63 22 64 10 68 18 69 24 70 14 74 26 75 16 76 20 80 16 81 28 82 8 86 20 87 22 88 24 92 18 93 22 94 16 104 26 105 32 106 16 110 34 111 28 112 22 116 20 117 28 118 30 122 32 123 26 124 16 128 32 129 34 130 28 134 34 135 36 136 32 140 36 141 34 142</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"25\" material=\"Material5\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9714\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9715\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 9 11 6 12 7 13 11 17 7 18 5 19 9 23 13 24 6 25 9 29 7 30 11 31 13 35 15 36 6 37 17 41 13 42 9 43 19 47 9 48 11 49 17 53 15 54 13 55 21 59 17 60 9 61 23 65 9 66 19 67 25 71 19 72 11 73 17 77 27 78 15 79 29 83 17 84 21 85 23 89 21 90 9 91 23 95 19 96 25 97 27 101 31 102 15 103 33 107 27 108 17 109 29 113 35 114 17 115 29 119 21 120 23 121 27 125 33 126 31 127 35 131 33 132 17 133 37 137 35 138 29 139 35 143 37 144 33 145</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9714\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9715\" />\r\n\t\t\t\t\t<p>2 8 1 9 8 10</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9714\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9715\" />\r\n\t\t\t\t\t<p>8 38 12 39 16 40</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material6\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9714\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9715\" />\r\n\t\t\t\t\t<p>14 98 30 99 26 100</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9734\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9740\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID9894\">-604.8350775369381 130.8635838402788 -651.4042583689343 -605.2517776314853 130.0399920711564 -706.0323736290602 -613.6916239391949 107.0023255435037 -677.9554532106122 -613.6916239391949 107.0023255435037 -677.9554532106122 -605.2517776314853 130.0399920711564 -706.0323736290602 -604.8350775369381 130.8635838402788 -651.4042583689343 -607.8794231370466 155.032611787959 -677.9296785355182 -607.8794231370466 155.032611787959 -677.9296785355182 -610.9837745982732 82.67393915722141 -706.0585735141031 -610.9837745982732 82.67393915722141 -706.0585735141031 -598.7970882253703 179.7963713453949 -651.4318239565391 -598.7970882253703 179.7963713453949 -651.4318239565391 -610.7890936973163 81.66288709596847 -651.4314730621672 -610.7890936973163 81.66288709596847 -651.4314730621672 -608.2205337436863 155.018427149588 -624.5259602557562 -608.2205337436863 155.018427149588 -624.5259602557562 -599.4983612176275 177.047524703856 -706.0393840219276 -599.4983612176275 177.047524703856 -706.0393840219276 -619.5041759546311 58.97208344848173 -677.9828131043314 -619.5041759546311 58.97208344848173 -677.9828131043314 -604.4154023750152 131.6930557161288 -596.3861208189255 -604.4154023750152 131.6930557161288 -596.3861208189255 -598.2975711095223 182.2474298930436 -596.3581573575502 -598.2975711095223 182.2474298930436 -596.3581573575502 -616.7038584320762 35.57915815706929 -706.0759483323691 -616.7038584320762 35.57915815706929 -706.0759483323691 -616.6851492745809 32.94114455592626 -651.4584228283829 -616.6851492745809 32.94114455592626 -651.4584228283829 -614.0328198216557 106.988152047591 -624.5525269347691 -614.0328198216557 106.988152047591 -624.5525269347691 -616.7030146037332 35.4601773527977 -703.6125656155809 -616.7030146037332 35.4601773527977 -703.6125656155809 -619.8452865612726 58.95789881011046 -624.5790948245676 -619.8452865612726 58.95789881011046 -624.5790948245676 -610.5930228547541 80.64461653856142 -596.4143575656281 -610.5930228547541 80.64461653856142 -596.4143575656281 -608.5819084719042 155.0033998542235 -567.9497242673706 -608.5819084719042 155.0033998542235 -567.9497242673706 -616.7108541202442 30.09024236163941 -596.4423210270106 -616.7108541202442 30.09024236163941 -596.4423210270106 -614.3941085456863 106.9731136400599 -567.9756129720618 -614.3941085456863 106.9731136400599 -567.9756129720618 -603.9987022804999 132.5166474852547 -541.7580055588705 -603.9987022804999 132.5166474852547 -541.7580055588705 -597.5730546918639 184.9385228025449 -541.7697861764664 -597.5730546918639 184.9385228025449 -541.7697861764664 -610.3983419538045 79.63356447730985 -541.7872571137268 -610.3983419538045 79.63356447730985 -541.7872571137268 -620.2066612895005 58.94287151474737 -568.0028588361674 -620.2066612895005 58.94287151474737 -568.0028588361674 -616.7363767448551 27.25955014630995 -541.8162270841604 -616.7363767448551 27.25955014630995 -541.8162270841604</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID9894\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9741\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID9895\">-0.99278814054997 0.1198816911980614 -0.0002968144628185738 -0.9869687006117616 0.12068774289297 -0.1064295669827312 -0.9927156380129053 0.1201266540106409 0.009233040714637481 0.9927156380129053 -0.1201266540106409 -0.009233040714637481 0.9869687006117616 -0.12068774289297 0.1064295669827312 0.99278814054997 -0.1198816911980614 0.0002968144628185738 -0.9926058714905311 0.1209920357516514 0.009721685409147368 0.9926058714905311 -0.1209920357516514 -0.009721685409147368 -0.987250751412146 0.118718560148206 -0.1060276252327177 0.987250751412146 -0.118718560148206 0.1060276252327177 -0.9717238568027019 0.2360471026994628 -0.00587464276967596 0.9717238568027019 -0.2360471026994628 0.00587464276967596 -0.9926503127948386 0.1210176885557164 -0.0002748907798058019 0.9926503127948386 -0.1210176885557164 0.0002748907798058019 -0.9944061176026514 0.1056242058245787 2.045357291510008e-005 0.9944061176026514 -0.1056242058245787 -2.045357291510008e-005 -0.9676490873397809 0.2265191768195007 -0.1111049337496073 0.9676490873397809 -0.2265191768195007 0.1111049337496073 -0.9926140513854541 0.1209436955947164 0.009485119295380425 0.9926140513854541 -0.1209436955947164 -0.009485119295380425 -0.9930304251452623 0.1178572365249134 -0.000496522436940105 0.9930304251452623 -0.1178572365249134 0.000496522436940105 -0.9712879195355318 0.2378362628000855 -0.005804262367168759 0.9712879195355318 -0.2378362628000855 0.005804262367168759 -0.993806304637655 0.01349936043843165 -0.1103032009064191 0.993806304637655 -0.01349936043843165 0.1103032009064191 -0.999970206485476 0.005097612013074931 -0.005796593237313511 0.999970206485476 -0.005097612013074931 0.005796593237313511 -0.9927570161470483 0.1201383886710227 0.0005238877168071149 0.9927570161470483 -0.1201383886710227 -0.0005238877168071149 -0.9936037188359318 -0.1128076059989908 -0.005108223192397344 0.9936037188359318 0.1128076059989908 0.005108223192397344 -0.990811647334352 0.135246213928685 0.0008608859063966173 0.990811647334352 -0.135246213928685 -0.0008608859063966173 -0.9924787239780784 0.1224162763476371 -0.0004875818128005656 0.9924787239780784 -0.1224162763476371 0.0004875818128005656 -0.9958952858806829 0.08945437176154444 0.01380199019636165 0.9958952858806829 -0.08945437176154444 -0.01380199019636165 -0.9999799167839472 0.00150292525482535 -0.006156885937593465 0.9999799167839472 -0.00150292525482535 0.006156885937593465 -0.9926786793774992 0.1201196171678136 0.01266163815633794 0.9926786793774992 -0.1201196171678136 -0.01266163815633794 -0.9824591205066161 0.114268082593561 0.1473664881638893 0.9824591205066161 -0.114268082593561 -0.1473664881638893 -0.9614883510910824 0.245467390962821 0.1236362029911024 0.9614883510910824 -0.245467390962821 -0.1236362029911024 -0.981357510452375 0.1237861827313849 0.1470184262040263 0.981357510452375 -0.1237861827313849 -0.1470184262040263 -0.9884033937430244 0.1512781903070247 0.0131772673458307 0.9884033937430244 -0.1512781903070247 -0.0131772673458307 -0.9924658813108725 -0.007636720585711446 0.1222830934043166 0.9924658813108725 0.007636720585711446 -0.1222830934043166</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID9895\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9743\">\r\n\t\t\t\t\t<float_array count=\"382\" id=\"ID9896\">4.440892098500626e-016 1.000000000000002 0.03602527242893538 1.776356839400251e-015 1 0.5139646551002652 -28.94514107606065 59.42302436187855 -28.55393286850921 59.68806480953734 -28.56131119972208 59.16040678467073 0 0.5144364757913333 0.9999999999999991 0 0.9693480218854882 1 -28.56131119972269 59.16040678467 -28.5539328685097 59.68806480953689 -28.17452362100628 59.41116954149472 -2.220446049250313e-016 0.0009322767279833499 0.9999999999999999 0 0.5006196151700472 1 -28.94514107606141 59.42302436187921 -29.29247435243931 59.71061853247075 -28.55393286850954 59.6880648095383 -4.440892098500626e-016 0.9989607860145853 0.5210617651719878 -3.552713678800501e-015 0.9999999999999998 0.9999999999999965 -28.5582886311918 59.19522245786523 -28.21314942337576 59.46857327715899 -27.7951002862084 59.21853583953863 -8.881784197001252e-016 0.5144538163473946 0.9597524330788669 0 0.9999999999999991 1 -29.36872887403936 59.1850759827506 -29.29247435243928 59.71061853247192 -28.94514107606171 59.42302436188066 227.9837634815404 214.6740160296669 227.6494173158228 214.6743006175442 227.8089190696828 214.4867057182473 -28.16107019287684 58.80058982574586 -28.5464751596548 59.05592308677642 -27.78328779342351 59.07924890848416 0 1 0.1069354595772964 0 1 0.5147584959436067 -28.19089005499679 59.47667230151971 -27.83634305614733 59.7535223510106 -27.77241499648331 59.22691171873347 0 0 1 0.5139529679865493 0.03493304715687451 1 -29.36872887403919 59.18507598274982 -29.71392482850665 59.45819259645317 -29.29247435243912 59.71061853247126 0 0.4885352232933524 1 0 0.9689449177416059 1 -28.51593756202562 74.48200251071398 -28.56665135549334 75.01250741344261 -28.17001472659783 74.76394387722095 -2.220446049250313e-016 1 0.08527773738874656 0 0.9999999999999998 0.4885431706716421 -28.13432189693101 58.85132102807327 -27.75666730801398 59.13004738492909 -27.65305056679495 58.60152308539985 0 0.0006184720261117604 0.5176268436362441 1 -29.71392482850495 59.45819259645114 -30.0242771285401 59.75481898868402 -29.29247435243756 59.71061853246908 0.4803197087224673 0 1 0.998984994121809 -30.16601133596651 59.23414227255395 -29.71392482850674 59.45819259645072 -29.41349778562551 59.16524569158435 0.03489333193062638 0 1 0.48805235200407 -28.94505433919636 74.74286084968938 -28.56665135549315 75.01250741344185 -28.5159375620255 74.48200251071312 0.5542281281031702 0 0.9999999999999998 0.9990072544359876 -28.43699634776564 58.58243781799413 -28.13346206715391 58.88274168733295 -27.6519929268329 58.63309182810189 8.881784197001252e-016 0.5143611866119304 0.9043276643042129 0.04510242260258224 1 1.000000000000002 0.8998087983879239 1.776356839400251e-015 -30.02427712854067 59.75481898868755 -29.71392482850539 59.4581925964544 -30.03066968466123 59.73133520739734 -30.16601133596529 59.23414227255753 2.775557561562891e-017 0.001002620534720222 0.4814728049742534 1 -29.83771568390626 58.93480035034963 -30.16601133596719 59.23414227255388 -29.41349778562615 59.16524569158425 227.6637223331175 214.7013687388242 227.3276419207359 214.7017045168201 227.4954131846774 214.5143358492283 -29.02852701784745 58.89654367186634 -29.36872887403872 59.18507598275065 -28.60433958882929 59.13828401320083 0.4994187206328007 0 0.9999999999999999 0.9989975026779128 -29.31083091143976 74.44666662464927 -28.94505433919591 74.74286084968854 -28.51593756202535 74.48200251071245 0 0.0009833686671587572 1 -1.776356839400251e-015 0.555408484779979 0.9999999999999982 -28.0410345788354 58.32389954732983 -28.43699634776515 58.5824378179937 -27.65199292683295 58.63309182810142 0 0.4885720202579833 0.9025595483419591 1.776356839400251e-015 1 1.000000000000002 -30.10003122569737 74.44668651016966 -30.07918306371785 74.97859080092664 -29.66194231089343 74.72590031764869 1 0.4880731749611424 0.03546048197837504 1 -29.31083091144092 74.44666662464351 -29.66194231089338 74.72590031764304 -29.26990570817762 74.97750843509702 0 0.4885560772281679 0.961041798166419 0 1 1 -29.31083091144087 74.446666624643 -29.26990570817761 74.97750843509652 -28.88654213207102 74.71082104187772 817.6087100715508 180.2592628176654 817.3883603747962 180.2592628263164 817.4985587135127 180.1862790932041 -28.88133206123998 74.18245762815901 -29.31083091144003 74.44666662464762 -28.51593756202611 74.48200251071081 1.776356839400251e-015 0.5205450785952355 1.000000000000002 0 0.9691492939901956 1 -28.41420913111345 73.95814653477095 -28.51593756202697 74.48200251071187 -28.10398625026097 74.23335599149667 0.0869976771958394 0 0.9999999999999998 0.520411810712238 -28.17582892076512 74.92935845539556 -27.71078954920868 75.19467311399569 -27.69464404326959 74.66686347159077 0.4445979505914181 0 1 0.9990071463786556 -30.10003122569651 74.44668651016303 -29.66194231089249 74.72590031764206 -29.31083091144075 74.44666662464316 -8.881784197001252e-016 0.5205977318639938 0.9627745366788494 0 -29.29302631325753 73.91909663123582 -29.31083091144053 74.44666662464664 -28.88133206124055 74.18245762815803 -4.440892098500626e-016 1 0.03335333267614882 0 0.9999999999999991 0.5200711705248597 -28.88133206124118 74.18245762816075 -28.51593756202708 74.48200251071275 -28.4142091311137 73.95814653477225 0 0.9995502159393119 0.5879588078175546 0 -28.51315097358776 74.66682224094895 -28.17582892076552 74.92935845539579 -27.69464404326967 74.66686347159084 0 0.0009832626649224352 0.4457783072682214 0.9999999999999982 -29.66240132063162 74.16409769610723 -30.10003122569662 74.44668651016383 -29.31083091144027 74.44666662464397 0 1.776356839400251e-015 1 0.5200989709215254 0.03529912782966704 1.000000000000002 -29.29302631325695 73.91909663123296 -29.66240132063141 74.16409769610718 -29.31083091143992 74.446666624644 0.4994717487678038 0 1 0.9988842782487701 -29.29302631325855 73.91909663124 -28.88133206124182 74.182457628162 -28.46747649953776 73.92065546662643 0 0.5206204606281499 0.9118578565503053 0 -27.38210290670611 66.01028316929354 -27.42122176690843 66.5380115498144 -26.93002260610028 66.29197751891032 0.411669540077029 0 1 0.9988949339885735 -27.38210290670485 66.0102831692891 -26.93002260609861 66.29197751890618 -26.56626047166304 66.04373642447222</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"191\" source=\"#ID9896\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9742\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9740\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9741\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"35\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 5 9 4 10 7 11 3 15 9 16 4 17 5 21 7 22 11 23 13 27 9 28 3 29 15 33 5 34 11 35 7 39 17 40 11 41 13 45 19 46 9 47 21 51 5 52 15 53 15 57 11 58 23 59 19 62 25 63 9 64 27 67 19 68 13 69 29 72 5 73 21 74 21 77 15 78 23 79 25 84 19 85 31 86 27 87 31 86 19 85 33 90 27 91 13 92 29 96 13 97 5 98 35 101 29 102 21 103 37 107 21 108 23 109 39 113 27 114 33 115 35 118 33 119 13 120 35 124 13 125 29 126 41 130 35 131 21 132 43 136 21 137 37 138 37 141 23 142 45 143 39 146 33 147 35 148 47 151 35 152 41 153 41 157 21 158 43 159 43 162 37 163 45 164 49 167 39 168 35 169 47 173 49 174 35 175 47 178 41 179 43 180 51 183 39 184 49 185 51 188 49 189 47 190</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material6\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>6 6 1 7 0 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material5\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>1 12 8 13 2 14</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material7\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>10 18 6 19 0 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material8\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>2 24 8 25 12 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"3\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>10 30 0 31 14 32 0 93 12 94 28 95 20 127 34 128 40 129</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material9\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>10 36 16 37 6 38</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material10\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>8 42 18 43 12 44</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material12\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>14 48 0 49 20 50</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material13\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>22 54 10 55 14 56</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material14\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>8 60 24 49 18 61</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material15\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>12 36 18 65 26 66</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material16\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>20 36 0 70 28 71</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material11\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>22 36 14 75 20 76</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material18\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>18 80 30 81 26 82 30 81 18 80 24 83</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material19\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>12 88 26 49 32 89</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material20\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>20 36 28 99 34 100</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material21\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>22 104 20 105 36 106</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material22\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>32 110 26 111 38 112</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material23\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>12 42 32 116 34 117</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material24\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>28 121 12 122 34 123</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material26\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>36 133 20 134 42 135</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material17\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>44 36 22 139 36 140</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material25\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>34 36 32 144 38 145</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material27\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>40 149 34 150 46 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material28\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>42 154 20 155 40 156</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material29\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>44 160 36 161 42 123</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material30\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>34 165 38 105 48 166</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material31\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>34 170 48 171 46 172</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material32\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>42 36 40 176 46 177</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material33\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>48 181 38 182 50 123</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material34\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9742\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9743\" />\r\n\t\t\t\t\t<p>46 36 48 186 50 187</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9897\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9903\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID9907\">-599.4983612176275 177.047524703856 -706.0393840219276 -605.2517776314853 130.0399920711564 -706.0323736290602 -607.8794231370466 155.032611787959 -677.9296785355182 -607.8794231370466 155.032611787959 -677.9296785355182 -605.2517776314853 130.0399920711564 -706.0323736290602 -599.4983612176275 177.047524703856 -706.0393840219276</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID9907\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9904\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID9908\">-0.9676490873397809 0.2265191768195007 -0.1111049337496073 -0.9869687006117616 0.12068774289297 -0.1064295669827312 -0.9926058714905311 0.1209920357516514 0.009721685409147368 0.9926058714905311 -0.1209920357516514 -0.009721685409147368 0.9869687006117616 -0.12068774289297 0.1064295669827312 0.9676490873397809 -0.2265191768195007 0.1111049337496073</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID9908\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9906\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID9909\">0 3.552713678800501e-015 1 0.0002493940348813339 0.4829114219531698 1.000000000000004 -28.16999739658603 59.42219072864117 -28.54949150082956 59.69904083174322 -27.8155394150386 59.69908504238347</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID9909\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9905\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9903\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9904\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9905\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9906\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9905\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9906\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9910\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9911\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID9920\">-605.8535664803703 82.93561528050282 -725.3459145475008 -608.3877730418171 60.89359392704932 -750.8870575113106 -611.5056375026616 36.5756590846222 -725.3925191710496 -611.5056375026616 36.5756590846222 -725.3925191710496 -608.3877730418171 60.89359392704932 -750.8870575113106 -605.8535664803703 82.93561528050282 -725.3459145475008 -593.6776983812397 82.46515874532793 -771.9358719042366 -593.6776983812397 82.46515874532793 -771.9358719042366 -599.0757022511625 38.58467958430606 -771.9478080925928 -599.0757022511625 38.58467958430606 -771.9478080925928 -602.9734679575649 105.6485287844505 -750.761290638673 -602.9734679575649 105.6485287844505 -750.761290638673 -600.2907277336035 128.672476642872 -725.3306663505982 -600.2907277336035 128.672476642872 -725.3306663505982 -588.3676472205571 126.1303484239454 -771.9182054753082 -588.3676472205571 126.1303484239454 -771.9182054753082 -596.0646397699129 61.97719163409192 -797.3174924661444 -596.0646397699129 61.97719163409192 -797.3174924661444 -590.95356743105 104.3970616375016 -797.1192827356363 -590.95356743105 104.3970616375016 -797.1192827356363 -586.5885656669916 41.24824086388367 -818.0853787548449 -586.5885656669916 41.24824086388367 -818.0853787548449 -581.6005708885605 82.24715889833965 -818.0327487225832 -581.6005708885605 82.24715889833965 -818.0327487225832 -597.4839898623268 150.2564466345609 -750.9899705419157 -597.4839898623268 150.2564466345609 -750.9899705419157 -576.5390245449653 123.8622902735369 -818.0189561168618 -576.5390245449653 123.8622902735369 -818.0189561168618 -594.68435762017 174.9173259950542 -725.3575513209862 -594.68435762017 174.9173259950542 -725.3575513209862 -583.2441264111239 169.354090593024 -771.883881742684 -583.2441264111239 169.354090593024 -771.883881742684 -585.7651377985185 146.4762260497457 -797.3736231296416 -585.7651377985185 146.4762260497457 -797.3736231296416 -583.7537752146654 63.08761440977446 -843.6887671481154 -583.7537752146654 63.08761440977446 -843.6887671481154 -571.5908803545844 164.4717270458698 -818.0581489043461 -571.5908803545844 164.4717270458698 -818.0581489043461 -578.921913832809 103.2775478328895 -843.5448100713065 -578.921913832809 103.2775478328895 -843.5448100713065 -569.3905845696772 82.15724874874582 -864.6601838712259 -569.3905845696772 82.15724874874582 -864.6601838712259 -574.074485614814 43.39166782399184 -864.6817961073839 -574.074485614814 43.39166782399184 -864.6817961073839 -574.0352435311379 142.6946549595625 -843.799956053349 -574.0352435311379 142.6946549595625 -843.799956053349 -564.6022151867182 121.7033938702839 -864.6143517740138 -564.6022151867182 121.7033938702839 -864.6143517740138 -560.0667474098855 159.0113633415358 -864.6058107931121 -560.0458382003471 159.0357875509603 -864.6369547310633 -560.0458382003471 159.0357875509603 -864.6369547310633 -560.0667474098855 159.0113633415358 -864.6058107931121 -564.945259496717 118.8702623841198 -864.6176352383727 -564.945259496717 118.8702623841198 -864.6176352383727 -560.0458382003471 159.0357875509603 -864.6369547310633 -564.2768162798348 124.3695297346815 -864.6159659901996 -564.2768162798348 124.3695297346815 -864.6159659901996 -560.0458382003471 159.0357875509603 -864.6369547310633 -564.2768162798348 124.3695297346815 -864.6159659901996 -564.2768162798348 124.3695297346815 -864.6159659901996</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID9920\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9912\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID9921\">-0.9825599137363344 0.1200791914351083 0.1419753630132272 -0.9588322333613695 0.1176113606523794 -0.2584730471688385 -0.9881687528178079 0.05459132064402113 0.1433258653029517 0.9881687528178079 -0.05459132064402113 -0.1433258653029517 0.9588322333613695 -0.1176113606523794 0.2584730471688385 0.9825599137363344 -0.1200791914351083 -0.1419753630132272 -0.9608010144455446 0.117315942920464 -0.2511939095143332 0.9608010144455446 -0.117315942920464 0.2511939095143332 -0.9638580541199763 -0.01598897949967062 -0.2659360901468851 0.9638580541199763 0.01598897949967062 0.2659360901468851 -0.959267406108237 0.115559838952171 -0.2577827907361608 0.959267406108237 -0.115559838952171 0.2577827907361608 -0.9827329451611779 0.1185789673640258 0.1420386813291319 0.9827329451611779 -0.1185789673640258 -0.1420386813291319 -0.9609690696206306 0.1160837757608857 -0.2511234840423256 0.9609690696206306 -0.1160837757608857 0.2511234840423256 -0.95821863638948 0.1183732691403003 -0.2603935752450967 0.95821863638948 -0.1183732691403003 0.2603935752450967 -0.9590543516028249 0.1167249885365657 -0.2580504363933986 0.9590543516028249 -0.1167249885365657 0.2580504363933986 -0.9633078806341954 -0.01965184817007387 -0.2676784114783166 0.9633078806341954 0.01965184817007387 0.2676784114783166 -0.9606394275750715 0.1172865483236735 -0.2518248513760258 0.9606394275750715 -0.1172865483236735 0.2518248513760258 -0.9591185405179402 0.1134155484670026 -0.2592846671144775 0.9591185405179402 -0.1134155484670026 0.2592846671144775 -0.960816671548451 0.1164558861589192 -0.2515339942303961 0.960816671548451 -0.1164558861589192 0.2515339942303961 -0.9726162802692869 0.1830719009234862 0.1431860693202982 0.9726162802692869 -0.1830719009234862 -0.1431860693202982 -0.9321591586685969 0.2456245829302507 -0.2659847122873681 0.9321591586685969 -0.2456245829302507 0.2659847122873681 -0.9584770027572246 0.1135304013201251 -0.261596412746082 0.9584770027572246 -0.1135304013201251 0.261596412746082 -0.95856077346805 0.1174472319842682 -0.2595522900449294 0.95856077346805 -0.1174472319842682 0.2595522900449294 -0.9305854128550117 0.2502986252560509 -0.2671355228650774 0.9305854128550117 -0.2502986252560509 0.2671355228650774 -0.958974005193359 0.1173642095299493 -0.2580591011470387 0.958974005193359 -0.1173642095299493 0.2580591011470387 -0.9142884180382207 0.1093766330548647 -0.3900172313920877 0.9142884180382207 -0.1093766330548647 0.3900172313920877 -0.9173885765846928 -0.02766052245625354 -0.3970303452500308 0.9173885765846928 0.02766052245625354 0.3970303452500308 -0.9586504523691298 0.1135622923242247 -0.2609461935620634 0.9586504523691298 -0.1135622923242247 0.2609461935620634 -0.9135553795117748 0.1110347103143447 -0.3912644395680582 0.9135553795117748 -0.1110347103143447 0.3912644395680582 -0.8837274792396871 0.2624667271828717 -0.3874751083083669 -0.8728337628452929 0.4103005304235742 -0.2642247096156236 0.8728337628452929 -0.4103005304235742 0.2642247096156236 0.8837274792396871 -0.2624667271828717 0.3874751083083669 -0.8627923108121174 0.1050426890561505 -0.494525491637529 0.8627923108121174 -0.1050426890561505 0.494525491637529 -0.8617781998206879 0.104878566605645 -0.4963253172875224 -0.8617781998206879 0.104878566605645 -0.4963253172875224 0.8617781998206879 -0.104878566605645 0.4963253172875224 0.8617781998206879 -0.104878566605645 0.4963253172875224 -0.8617781998287173 0.1048785666066195 -0.4963253172733751 0.8617781998287173 -0.1048785666066195 0.4963253172733751</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID9921\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9914\">\r\n\t\t\t\t\t<float_array count=\"456\" id=\"ID9922\">814.67641543351 205.3308265741848 814.5090428922981 205.1862701263684 814.671028674972 205.0206747170012 -30.78597102976776 61.67614487216441 -30.34629778390522 61.88015693439242 -30.07211355341343 61.6016381482464 814.9930551238997 205.9878344815568 814.6800456425214 205.990301458499 814.8340218547712 205.8336682290967 -30.34223167217467 61.88772792643936 -29.90529254747843 62.06314806462109 -30.06799252199651 61.60923014006804 814.4902771373563 205.4973962277543 814.3410418622078 205.3499473049305 814.6517748241409 205.3312964738162 -30.75783072415051 61.87827779619799 -30.60437740952443 62.33414463026148 -30.31716717829131 62.08145837338392 814.4975031752678 206.1745575713454 814.3463028828187 206.0226379182162 814.6591726346336 206.0197629088243 -30.0679925219951 61.60923014006756 -29.90529254747717 62.06314806462076 -29.63161297594589 61.79682384675934 814.6781257650002 205.9932735154314 814.6730410656164 205.6996705051942 814.8318770532296 205.8364068859541 -29.67916594122592 39.45742394203456 -30.00436414484177 39.69155080751759 -29.31918515694122 39.69106990023686 814.6606556381414 206.3387303089414 814.4939065545542 206.1875483475563 814.6555760139029 206.0327536850499 -30.0679925219952 61.60923014006575 -29.63161297594581 61.79682384675758 -29.37340743925948 61.50604728788521 814.6739298467086 205.9928153646534 814.6690625455733 205.7006990407496 814.8287198787613 205.8434381753418 -28.99710895957642 39.33794635144162 -29.30788415852079 39.58796351854381 -28.62802365686713 39.55675752045442 814.3434223412568 205.6440375075 814.1771901365787 205.5099046024764 814.3384021621001 205.350433352288 -30.0022530925722 39.55372473987666 -29.63648641851973 39.79860690108362 -29.31707394782308 39.55334029566131 814.3179409753597 206.017170107149 814.0074209409289 206.0040254676102 814.1620522577665 205.8544825164346 -29.63161297594597 61.7968238467586 -29.19196969959083 61.95719035245249 -29.37340743925994 61.50604728788667 814.6739298467196 205.9928153646457 814.5088029243154 205.8501934903848 814.6690625455278 205.7006990407772 -29.30788415852103 39.58796351854279 -28.93777866065336 39.81494427909129 -28.62802365686743 39.55675752045341 814.4935512945853 205.5021176234764 814.3470971890184 205.3634850033734 814.6554664582861 205.3433984708785 -25.9773409516045 54.29234477383584 -26.0264970610552 54.75367746399845 -25.66031718389149 54.56233085152576 814.3138810970091 205.669200570352 814.0063592500342 205.6725634151123 814.1572581817745 205.5236242249622 -29.62752740698795 39.83311333376044 -29.26163609909056 40.0472985717741 -29.30788415852152 39.5879635185442 814.5002856661802 206.513831427661 814.3510789530668 206.3557051816919 814.6636522919431 206.366511685239 -29.37340743925768 61.50604728788744 -29.1919696995886 61.95719035245291 -28.9329309885553 61.67998609007529 814.3273099671808 205.9969868203515 814.0199997026484 206.0082224818974 814.1621830448814 205.854364946164 -29.48018856265398 62.07052069268843 -29.07142221945572 62.24538105238089 -29.21451284887791 61.79391431937955 814.1621030247322 205.8321423113069 814.014823988355 205.6844956863227 814.3223626460691 205.6826478616157 -29.30788415852196 39.58796351854458 -29.26163609909086 40.04729857177474 -28.93777866065422 39.81494427909299 814.0043943868659 205.6528567175749 813.9994532978675 205.378582201081 814.1562737683964 205.5049342944029 -25.58797945646108 54.76930704591949 -25.95480895130395 54.96016981507204 -25.32651291128516 55.03636076011318 814.6836453961536 206.6827604674886 814.5154418668775 206.520686087861 814.6788326461066 206.3733946679576 -28.53534255444979 68.81924544267359 -28.22677667907462 69.08121416999535 -27.81520886154842 68.85108152583881 814.6748828730479 206.3214495895792 814.6704390235337 206.0323854788745 814.82815593014 206.1820232043339 -28.16993123349893 69.19916225900988 -28.52530101295789 69.43123177577189 -27.8507365455365 69.43172986552875 814.1664549598108 206.1577831384545 814.021359599321 206.0068079583329 814.3286416416232 206.0188125827943 -29.21451284887791 61.79391431937982 -29.07142221945568 62.24538105238106 -28.80914107528012 61.98330532421266 802.3387587113991 201.983234080272 802.330701383512 201.7049121564645 802.4902335733337 201.8388009386309 -28.93777866065457 39.81494427909142 -29.26163609909093 40.04729857177308 -28.61193861982132 40.04782743632324 813.9922851602631 205.9734976564172 813.8245002766821 205.8482435412487 813.9874755564814 205.6992207278334 -25.95480895130394 54.960169815072 -25.69617329318671 55.24373314414333 -25.32651291128537 55.03636076011312 808.9820928620933 202.3350340948407 808.7021898052514 202.334580140298 808.8260723555535 202.1949508241907 -28.22742783844684 69.14020049246879 -27.90872680457551 69.37303087556792 -27.8146904180693 68.91088279016782 814.6646556038877 206.3230933319961 814.4977262766669 206.1727870749147 814.6600867537505 206.0340312255669 -28.53405557342039 69.1783549410774 -28.21678618246569 69.42451480847016 -27.85949081735148 69.17866615833546 802.6719325676542 202.316895084967 802.6645498652342 202.0452781088437 802.8223704253627 202.182474003957 -28.20857370586588 39.82097311399462 -28.56733600656603 40.03407712937362 -27.93534894182184 40.06564599941361 802.3246335452687 201.9836546733375 802.1558842509388 201.8509393650043 802.3165762210134 201.7053327495089 -29.26163609909038 40.04729857177367 -28.93372934579128 40.29403332631689 -28.61193861982102 40.04782743632384 802.3133004678513 201.7131782210881 802.0022816895868 201.7189790289429 802.1540174753982 201.5769615347959 -29.59036617417254 40.27990298905369 -29.26962608079596 40.51278838830864 -29.26163609908938 40.04729857177425 813.4473976234901 204.492045217019 813.3144625338744 204.3443149737843 813.6256691504636 204.3623022617942 -25.97741520009755 55.01576407839046 -26.09316899296834 55.47659081040579 -25.718359726697 55.29917853935934 814.6648306697774 206.0110011594348 814.3559383588755 206.0036650279987 814.4981819233452 205.8603644534956 -28.18461632105201 69.35011050316011 -27.85514055949749 69.56620843295035 -27.82746313189972 69.10418163588174 802.6693601113487 202.3124305154503 802.4989781897567 202.1718643149132 802.6618144574785 202.0408181466218 -28.55020013638633 40.07266916983173 -28.28873908081086 40.33556829101029 -27.91827221112191 40.10469451433755 802.3307316233271 202.0161975356911 802.0204217793486 202.032766063366 802.1621613713026 201.8853878754773 -28.9337293457913 40.29403332631858 -28.6541405864811 40.54272319210097 -28.55463747719448 40.0818538808661 802.1744653474246 201.8264013972867 802.0241226410801 201.687097362452 802.3351317269293 201.680764147797 -29.26163609909027 40.0472985717753 -29.26962608079689 40.51278838830972 -28.93372934579101 40.29403332631865 813.2803417134744 204.64630352854 813.3254277962664 204.3910218856808 813.4577867416514 204.5392960593341 -29.58650773476687 40.24342004178956 -29.87113173264133 40.4770256094819 -29.26597971516879 40.47641880823882 802.6442075842419 202.3509898933304 802.3308405229709 202.3437987761705 802.4738428733267 202.2104115939202 802.3306264651309 202.3439984412254 -27.99031240647641 40.52444016453747 -27.89709385937662 40.06163331885442 -27.99072684759921 40.52409347365195 -28.26759619575757 40.29248499127838 802.1784258752847 202.1596965480246 802.0204217777069 202.0327660629221 802.3307316220834 202.0161975353179 -28.55463747719383 40.08185388086559 -28.6541405864804 40.54272319210037 -28.29313140338638 40.34473561215636 0.5026084142321424 1.000000000000004 0.07164115433899454 0.00201505468329799 1 3.552713678800501e-015 0 0.002170555807154528 -28.65414058648236 40.54272319209866 -28.93372934579294 40.29403332631621 -28.69823467777411 40.54057862820022 -29.26962608079887 40.51278838830748 822.0098694983936 201.6386863479906 822.0034067489713 201.4068194207895 822.0100960454295 201.6385017993948 -28.01608257998043 40.57626072849974 -28.55690681325342 40.57625949324299 -28.01566787020411 40.5766072945979 822.1614418611717 201.5152132389558 822.003406748162 201.4068194208133 822.002909706684 201.3889868432777 822.0100960446202 201.6385017994186 -28.01608257998063 40.57626072970808 -28.29313140338336 40.34473561211398 -28.55690681325362 40.57625949445133 -28.59853278179397 40.57623274551095</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"228\" source=\"#ID9922\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9913\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9911\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9912\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"38\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9913\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9914\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 0 6 6 7 1 8 1 12 8 13 2 14 10 18 6 19 0 20 6 24 8 25 1 26 12 30 10 31 0 32 14 36 6 37 10 38 6 42 16 43 8 44 12 48 14 49 10 50 14 54 18 55 6 56 16 60 20 61 8 62 6 66 22 67 16 68 24 72 14 73 12 74 14 78 26 79 18 80 18 84 22 85 6 86 22 90 20 91 16 92 28 96 24 97 12 98 30 102 14 103 24 104 32 108 26 109 14 110 26 114 22 115 18 116 22 120 34 121 20 122 28 126 30 127 24 128 30 132 32 133 14 134 36 138 26 139 32 140 26 144 38 145 22 146 22 150 40 151 34 152 34 156 42 157 20 158 30 162 36 163 32 164 36 168 44 169 26 170 26 174 46 175 38 176 38 180 40 181 22 182 40 186 42 187 34 188 36 192 48 193 44 194 48 193 36 192 49 195 44 200 46 201 26 202 54 214 55 215 48 216 44 220 58 221 46 222 58 221 44 220 48 223</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"40\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9913\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9914\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 4 9 7 10 5 11 3 15 9 16 4 17 5 21 7 22 11 23 4 27 9 28 7 29 5 33 11 34 13 35 11 39 7 40 15 41 9 45 17 46 7 47 11 51 15 52 13 53 7 57 19 58 15 59 9 63 21 64 17 65 17 69 23 70 7 71 13 75 15 76 25 77 19 81 27 82 15 83 7 87 23 88 19 89 17 93 21 94 23 95 13 99 25 100 29 101 25 105 15 106 31 107 15 111 27 112 33 113 19 117 23 118 27 119 21 123 35 124 23 125 25 129 31 130 29 131 15 135 33 136 31 137 33 141 27 142 37 143 23 147 39 148 27 149 35 153 41 154 23 155 21 159 43 160 35 161 33 165 37 166 31 167 27 171 45 172 37 173 39 177 47 178 27 179 23 183 41 184 39 185 35 189 43 190 41 191 50 196 37 197 51 198 45 199 51 198 37 197 27 203 47 204 45 205 47 210 39 211 53 212 41 213 53 212 39 211 51 217 56 218 57 219 51 224 45 225 59 226 47 227 59 226 45 225</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9913\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9914\" />\r\n\t\t\t\t\t<p>38 206 52 207 40 208 52 207 38 206 46 209</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9923\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9924\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID9938\">-538.0902731182941 115.1447883213507 -912.1608481084377 -542.2970848019331 80.52535054166651 -912.1721269935106 -561.3265274778842 100.3973283211528 -894.6158301547011 -561.3265274778842 100.3973283211528 -894.6158301547011 -542.2970848019331 80.52535054166651 -912.1721269935106 -538.0902731182941 115.1447883213507 -912.1608481084377 -569.1503276186722 82.08513442033905 -864.910649648421 -569.1503276186722 82.08513442033905 -864.910649648421 -564.3619582357242 121.6312795418842 -864.8648175512344 -564.3619582357242 121.6312795418842 -864.8648175512344 -534.4704911347553 97.14941042737337 -942.2442990832706 -534.4704911347553 97.14941042737337 -942.2442990832706 -565.7623249860008 64.0134251991351 -894.6022100060154 -565.7623249860008 64.0134251991351 -894.6022100060154 -556.9194582884611 136.7847057913261 -894.5785013913983 -556.9194582884611 136.7847057913261 -894.5785013913983 -511.4655065212874 109.9738499069972 -959.7941517771642 -511.4655065212874 109.9738499069972 -959.7941517771642 -515.2050328615351 79.1998792142615 -959.8041778232246 -515.2050328615351 79.1998792142615 -959.8041778232246 -546.4979995622543 45.95444076509534 -912.1833900683223 -546.4979995622543 45.95444076509534 -912.1833900683223 -574.074485614814 43.39166782399184 -864.6817961073839 -574.074485614814 43.39166782399184 -864.6817961073839 -560.0458382003471 159.0357875509603 -864.6369547310633 -560.0458382003471 159.0357875509603 -864.6369547310633 -533.7949271017642 150.3262261925445 -912.1602650579307 -533.7949271017642 150.3262261925445 -912.1602650579307 -530.5289825987675 129.7370542553229 -942.2015097473113 -530.5289825987675 129.7370542553229 -942.2015097473113 -538.4482822727259 64.56615454820803 -942.2227421859907 -538.4482822727259 64.56615454820803 -942.2227421859907 -507.6054609683397 141.4836245016716 -959.798998502446 -507.6054609683397 141.4836245016716 -959.798998502446 -511.4655065212874 109.9738499069972 -959.7941517771642 -507.615084807594 93.90156872652597 -989.8716506952051 -515.2050328615351 79.1998792142615 -959.8041778232246 -515.2050328615351 79.1998792142615 -959.8041778232246 -507.615084807594 93.90156872652597 -989.8716506952051 -511.4655065212874 109.9738499069972 -959.7941517771642 -518.9494544138643 48.38562397773762 -959.8142169938683 -518.9494544138643 48.38562397773762 -959.8142169938683 -507.6054609683397 141.4836245016716 -959.798998502446 -504.1400700501963 122.689820160618 -989.8216973323806 -504.1400700501963 122.689820160618 -989.8216973323806 -507.6054609683397 141.4836245016716 -959.798998502446 -485.0294822717915 104.8395681540958 -1007.089784070501 -485.0294822717915 104.8395681540958 -1007.089784070501 -488.3050358435376 77.88380412208858 -1007.098566158938 -488.3050358435376 77.88380412208858 -1007.098566158938 -511.1358574046408 65.11885115842438 -989.8404537416236 -518.9494544138643 48.38562397773762 -959.8142169938683 -518.9494544138643 48.38562397773762 -959.8142169938683 -511.1358574046408 65.11885115842438 -989.8404537416236 -481.7187007014454 132.3882004388267 -1007.076732211087 -481.7187007014454 132.3882004388267 -1007.076732211087 -491.6346588959859 50.46460469467024 -1007.117652235068 -491.6346588959859 50.46460469467024 -1007.117652235068</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID9938\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9925\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID9939\">-0.8622995413683852 0.1059213097892463 -0.4951971093296113 -0.8625003083396899 0.1047459833333063 -0.4950974622127229 -0.8547688596128941 0.09619090550748574 -0.5100171627834917 0.8547688596128941 -0.09619090550748574 0.5100171627834917 0.8625003083396899 -0.1047459833333063 0.4950974622127229 0.8622995413683852 -0.1059213097892463 0.4951971093296113 -0.9474704482825461 0.1193860404168868 -0.2967266806083478 0.9474704482825461 -0.1193860404168868 0.2967266806083478 -0.949171695509017 0.1066773068952484 -0.2961301143722389 0.949171695509017 -0.1066773068952484 0.2961301143722389 -0.8534174483993843 0.1038701862308037 -0.5107735732982497 0.8534174483993843 -0.1038701862308037 0.5107735732982497 -0.8538453207742827 0.1044727710664182 -0.5099349059414996 0.8538453207742827 -0.1044727710664182 0.5099349059414996 -0.8571277091590682 0.09061583924234827 -0.5070708627698229 0.8571277091590682 -0.09061583924234827 0.5070708627698229 -0.7219388596824048 0.09171957928354685 -0.6858511512394787 0.7219388596824048 -0.09171957928354685 0.6858511512394787 -0.7228953649922763 0.084378735353856 -0.6857860601476002 0.7228953649922763 -0.084378735353856 0.6857860601476002 -0.8503339404083641 -0.09747331997442972 -0.5171374495071375 0.8503339404083641 0.09747331997442972 0.5171374495071375 -0.9471313190963208 -0.07191048114865638 -0.3126837812996259 0.9471313190963208 0.07191048114865638 0.3126837812996259 -0.902376237770769 0.2954163811326192 -0.3137615133587599 0.902376237770769 -0.2954163811326192 0.3137615133587599 -0.803163530801654 0.2978998259452072 -0.5159302632062164 0.803163530801654 -0.2978998259452072 0.5159302632062164 -0.8549635730730378 0.09595092374149127 -0.5097359207975627 0.8549635730730378 -0.09595092374149127 0.5097359207975627 -0.8536189263238014 0.1041781160063462 -0.5103740283039185 0.8536189263238014 -0.1041781160063462 0.5103740283039185 -0.6711661942233396 0.2839146147834728 -0.6847834922397812 0.6711661942233396 -0.2839146147834728 0.6847834922397812 -0.9538939590211696 0.1134011788602705 -0.2778965411372014 -0.8520546162240814 0.1037053309587299 -0.5130771241265524 -0.953197709297795 0.1188439697776894 -0.2780112189047698 0.953197709297795 -0.1188439697776894 0.2780112189047698 0.8520546162240814 -0.1037053309587299 0.5130771241265524 0.9538939590211696 -0.1134011788602705 0.2778965411372014 -0.7165102589198108 -0.1155177331920328 -0.6879452755712767 0.7165102589198108 0.1155177331920328 0.6879452755712767 -0.9045341899805501 0.3066005368432574 -0.296334287526193 -0.8537062932570242 0.09481089298933772 -0.512051227343433 0.8537062932570242 -0.09481089298933772 0.512051227343433 0.9045341899805501 -0.3066005368432574 0.296334287526193 -0.7122163927370001 0.0901528453419379 -0.6961467333784218 0.7122163927370001 -0.0901528453419379 0.6961467333784218 -0.712945358033572 0.08331621659391186 -0.6962523425532287 0.712945358033572 -0.08331621659391186 0.6962523425532287 -0.852481148398884 0.1069363727532618 -0.5117035311651617 -0.9527111588506911 -0.08078748291247895 -0.2929416843094191 0.9527111588506911 0.08078748291247895 0.2929416843094191 0.852481148398884 -0.1069363727532618 0.5117035311651617 -0.659091041607244 0.2868039693734112 -0.6952283668153464 0.659091041607244 -0.2868039693734112 0.6952283668153464 -0.7079337468037773 -0.1218835019275162 -0.695682558423201 0.7079337468037773 0.1218835019275162 0.695682558423201</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID9939\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9927\">\r\n\t\t\t\t\t<float_array count=\"432\" id=\"ID9940\">810.9987799331559 209.6025779171386 811.0173445178981 209.395753771528 811.1673122145318 209.513893298044 98.88952773435672 77.08940383795482 98.46607250546883 76.92107394947402 98.46623986833404 77.25789080894111 818.3842333779569 210.0434500282002 818.3173292500296 209.9159697757965 818.5381700812775 210.0044579847292 18.10113637699082 76.9171826763594 17.26530314567687 76.89150304790158 17.637324259913 77.10179464830327 836.6450547826137 194.0006843263706 836.384628622419 193.9638872760934 836.5167984031132 193.8737987632761 42.01389564637583 82.76651275015924 41.51446974670436 82.80072628675009 42.20486560174894 83.09763646411403 817.6724338924507 205.6661798522749 817.5006391066268 205.5494157718469 817.6859041061193 205.4571390289107 45.05479075589014 83.43951206740005 44.51402086291296 83.44236729615685 44.79395133935971 83.73071704762299 810.5983407925954 207.6643087532687 810.3704646101014 207.938565694282 810.3785416167467 207.7152839006137 17.60180051435316 76.74579804306852 17.2338703928892 76.97266445034602 18.06533286736213 76.9150829775607 810.6551887495048 209.6868900595521 810.5031538853532 209.5088983125256 810.6578646881976 209.3514774207273 18.10113637698932 76.91718267635973 17.63732425991198 77.10179464830341 18.10173537746371 77.30191225848327 853.4566823361256 214.1244464530242 853.3423305365053 213.9923911159124 853.6161801446052 214.048001417293 42.20486560174834 83.09763646411534 41.51446974670488 82.80072628675174 41.68071926449808 83.10836341039291 835.3020411110637 193.320357133446 835.0381787774447 193.3020907487727 835.1658269196444 193.214312902688 40.91277431887081 83.02290681261614 40.42585331721895 83.03412706213995 41.11655709788612 83.33626181465539 835.4953574884742 192.1297636464432 835.337267409917 192.0102100851687 835.6770467199859 192.0047965451656 45.05479075588798 83.43951206739659 44.34452622251417 83.1559104321064 44.51402086290943 83.44236729615336 811.5905970993179 205.3459632854069 811.4079161805253 205.3374310355126 811.4964614104219 205.1942074156123 18.05954693278881 76.74674299141798 17.63147955085854 76.59605992709834 17.63162043773195 76.9324046559892 810.2244032213828 207.2985697811918 810.0046040456338 207.34954492859 810.0539158158629 207.1104515641162 18.20218010992116 76.52248976657472 17.7355434211738 76.73072049820215 18.19980511116972 76.89921185422931 811.1676930853705 210.5130433995608 811.0105484591037 210.3204839731468 811.169738730018 210.1869134754392 42.46458766471031 83.22579903159453 41.94038536522937 83.23540542930829 42.21388555777448 83.55022320730582 810.7371331266495 210.1758357511647 810.7401970717713 210.0157545853529 810.8599922605113 210.1048639025823 41.69706345588828 83.10415441806123 41.53017656234146 82.79665134918886 41.20363064774215 83.07147154275779 848.4880236218205 212.1197931139617 848.3466262238816 212.0031706068544 848.6508778856677 212.0183881588674 41.11655709788506 83.33626181465468 40.42585331721814 83.03412706213959 40.59115160887394 83.33141391479428 835.0193133134978 192.5951387117631 835.0183475381818 192.3972321903258 835.1469614557113 192.5073608656942 44.51402086290825 83.44236729615201 44.34452622251336 83.15591043210554 44.03328801975847 83.38352711292643 811.9841213575319 192.7043673345503 811.7787666566364 192.883825392603 811.8241439642937 192.6939285935748 44.84558011388003 83.13809967876446 44.34452622251389 83.15591043210569 45.05479075588728 83.43951206739571 809.1159131842267 197.1291602946539 808.9879951994004 196.964410868722 809.336918374052 197.0317345500714 18.39399482489894 76.39685980917615 17.54776162960426 76.41149520867113 17.9261014596148 76.60397625140739 804.0021830717402 193.2779104963585 803.8362339936509 193.1621713232271 803.9966975289258 193.0001087160305 17.63147955085915 76.59605992709922 17.16214336909679 76.78385772387543 17.63162043773257 76.93240465599 836.9707077148369 195.3559018490469 836.7087468802656 195.3129698062904 836.8397380758782 195.2264643932643 28.22619167738281 79.25100084790721 28.04638601939035 79.53911733771032 28.79624903723415 79.29564407464942 848.6799271424383 211.6947577637697 848.4970904979112 211.5496436229945 848.697558435165 211.4651073141093 41.10435698017992 83.32997174877569 40.57895017558879 83.32517954176139 40.8526638744817 83.63043410221452 873.3482538697589 230.9189380866442 873.34145387843 230.759379985165 873.4820596720145 230.8402990918052 40.60428172535126 83.32648512867716 40.43836080782335 83.02933300907024 40.13051870983315 83.26807782402798 809.6634611176098 210.3316920267398 809.4849928260603 210.1766134317098 809.6659978688917 210.0296505297016 16.86284442794723 76.95123045473495 16.39304369360678 77.1010050167987 16.86296984382051 77.25063428577154 835.6959826329575 192.6691048379762 835.6989283277876 192.4214232671181 835.8454098649959 192.5346858691894 17.24995194036875 76.78384047821439 16.82171057971871 76.65144039286298 16.82183615572475 76.95123615729257 835.5116846668703 191.8039034369129 835.3617809814648 191.7008265706029 835.6827783030972 191.6752506660651 17.63147955085866 76.59605992709996 16.78400072871374 76.60502901331631 17.16214336909627 76.7838577238764 873.968176174758 231.3288351171732 873.6991973499503 231.2815369455383 873.8341705177531 231.2049826556868 24.73006616578051 79.98348484311569 24.55397830085722 80.26364463153175 25.29035979636691 80.00257397888352 848.3421722090295 211.6308371134772 848.1585432711318 211.4974836150319 848.3579641565725 211.4251436080277 16.77492197351282 77.24469466390904 16.3059098731279 77.37529192950335 16.77501267581755 77.5512936024661 849.3086868558336 210.6620384204516 849.0147880239554 210.6762107128993 849.1446260825214 210.5724798676054 16.39304369360732 77.10100501679941 16.02773438918605 77.2832742880306 16.86296984382196 77.25063428577246 809.8362870697491 210.1248420579399 809.6602171635308 210.0154481247244 810.0269170144063 209.9893235497464 16.86284442795131 76.95123045473378 16.02759157420247 76.9188518639731 16.39304369361038 77.10100501679771 809.6895321891607 209.6709714335843 809.4917901525562 209.5206959128763 809.69234929941 209.3356942893334 16.82171057971998 76.65144039286278 16.35259611116022 76.82095301321903 16.82183615572611 76.95123615729277 848.6455871332045 211.98536742858 848.3750492098443 212.0001615282063 848.4886883677032 211.9035455026526 17.17004877266317 77.64868719164761 16.79750837452538 77.81695830046121 17.6383183343832 77.8254705811185 816.4951794918443 220.8317395699816 816.3617398951152 220.6809551747917 816.6519573561876 220.7041147779213 16.81511106022196 77.2502635957631 15.98592501909658 77.18134891132944 16.34599808318189 77.38071726540805 848.3204253584914 210.6459696554111 848.3228895348809 210.3526751512044 848.4989716438748 210.5033252644622 98.0157034034513 77.08959599869168 97.59767110877013 76.95854585871956 97.59780194341295 77.22080187339617 0.7135501546194085 0.9999999999999982 -1.776356839400251e-015 -1.776356839400251e-015 0.9999999999999982 0.3649082486235624 16.35259611115563 76.82095301321691 15.99270773721355 77.02045489888522 16.8218361557214 76.9512361572905 0 0.3652419407880352 1 0 0.4457947713784929 1 16.67749418334982 76.56212916813695 15.83663346929401 76.56634089942644 16.21012621139005 76.73350513511765 835.0065908903398 192.5658245719386 835.0058939466509 192.3887030525025 835.1328851929947 192.4985996158473 97.92512834605618 77.39558685773643 97.50699124472148 77.24609987169521 97.50657140700248 77.51408120998238 848.3268451098355 210.3213359039054 848.3291577578201 210.0229976167853 848.5057641724652 210.1585569802562 97.89134627707706 76.80773152478449 97.47238143263203 76.69018328199472 97.47297144000214 76.95694531247798</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"216\" source=\"#ID9940\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9926\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9924\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9925\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"34\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9926\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9927\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 6 1 7 6 8 8 12 0 13 2 14 0 18 10 19 1 20 6 24 1 25 12 26 8 30 2 31 6 32 14 36 0 37 8 38 0 42 16 43 10 44 10 48 18 49 1 50 1 54 20 55 12 56 6 60 12 61 22 62 24 66 14 67 8 68 26 72 0 73 14 74 28 78 16 79 0 80 16 84 18 85 10 86 1 90 18 91 30 92 12 96 20 97 22 98 1 102 30 103 20 104 24 108 26 109 14 110 26 114 28 115 0 116 32 120 16 121 28 122 34 126 35 127 36 128 18 132 40 133 30 134 30 138 40 139 20 140 26 144 32 145 28 146 42 150 43 151 34 152 34 156 46 157 35 158 35 162 48 163 36 164 36 168 50 169 51 170 42 174 54 175 43 176 43 180 46 181 34 182 46 186 48 187 35 188 54 204 46 205 43 206 48 210 56 211 50 212</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"36\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9926\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9927\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 7 9 4 10 3 11 3 15 5 16 9 17 4 21 11 22 5 23 13 27 4 28 7 29 7 33 3 34 9 35 9 39 5 40 15 41 11 45 17 46 5 47 4 51 19 52 11 53 13 57 21 58 4 59 23 63 13 64 7 65 9 69 15 70 25 71 15 75 5 76 27 77 5 81 17 82 29 83 11 87 19 88 17 89 31 93 19 94 4 95 23 99 21 100 13 101 21 105 31 106 4 107 15 111 27 112 25 113 5 117 29 118 27 119 29 123 17 124 33 125 37 129 38 130 39 131 31 135 41 136 19 137 21 141 41 142 31 143 29 147 33 148 27 149 39 153 44 154 45 155 38 159 47 160 39 161 37 165 49 166 38 167 52 171 53 172 37 173 44 177 55 178 45 179 39 183 47 184 44 185 38 189 49 190 47 191 53 195 49 196 37 197 52 201 57 202 53 203 44 207 47 208 55 209 53 213 57 214 49 215</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9926\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9927\" />\r\n\t\t\t\t\t<p>36 192 48 193 50 194</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material5\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9926\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9927\" />\r\n\t\t\t\t\t<p>50 198 56 199 51 200</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9941\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9942\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID9946\">-503.5575501444964 172.510113458454 -293.9880428781735 -509.6709075327135 122.2084011672687 -294.0028581521456 -497.0791075777834 144.6617990523946 -265.3253285924484 -497.0791075777834 144.6617990523946 -265.3253285924484 -509.6709075327135 122.2084011672687 -294.0028581521456 -503.5575501444964 172.510113458454 -293.9880428781735 -480.2119351768324 117.592880168738 -242.5845292395352 -480.2119351768324 117.592880168738 -242.5845292395352 -474.0985777886172 167.8945924599234 -242.5697139655667 -474.0985777886172 167.8945924599234 -242.5697139655667</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID9946\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9943\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID9947\">-0.8681142156757377 0.1309935209572108 0.4787675908088721 -0.8756573766792385 0.07950697990925607 0.4763431523733114 -0.8598364762075428 0.09661606065380934 0.5013447626202304 0.8598364762075428 -0.09661606065380934 -0.5013447626202304 0.8756573766792385 -0.07950697990925607 -0.4763431523733114 0.8681142156757377 -0.1309935209572108 -0.4787675908088721 -0.8479777392680804 0.07665113612930218 0.524460062384051 0.8479777392680804 -0.07665113612930218 -0.524460062384051 -0.8415596138871831 0.1282822995058406 0.5247104610235525 0.8415596138871831 -0.1282822995058406 -0.5247104610235525</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID9947\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9945\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9948\">236.6665042513864 2389.724069542878 236.6472304908992 2389.98264999624 236.5039769798999 2389.849414372302 -0.2287816751901124 77.84344298265567 -0.698395343503833 77.61348600860893 -0.6982107202736971 78.10287874064794 236.5141996255684 2389.87011477934 236.6574525322683 2390.003344362151 236.3588178307754 2389.993514681627 0.2135764600930283 77.60357964627626 -0.6983953435032424 77.61348600860787 -0.2420745029528781 77.84789480957993 236.3088187718105 2390.359862513918 236.1454745892193 2390.483709565102 236.0112683257037 2390.331992878465 0.2137610833226011 78.09297237831559 -0.2425577453680923 77.83970161217246 -0.6982107202736279 78.10287874064719 236.0285681753875 2390.031280933432 236.1627750041105 2390.183003281558 235.994684974494 2390.288459742872 0.2135764600940595 77.60357964627663 -0.2558599642954729 77.84345460221302 0.2137610833241253 78.09297237831562</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9948\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9944\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9942\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9943\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9944\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9945\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 6 1 7 6 8 0 12 2 13 8 14 8 18 2 19 6 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9944\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9945\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 7 9 4 10 3 11 9 15 3 16 5 17 7 21 3 22 9 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9949\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9950\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID9954\">-516.3849030341453 66.96453947374198 -294.0191290286221 -522.4982604223451 16.6628271825582 -294.0339443025496 -509.6621123888008 41.12676133596847 -265.3558225831903 -509.6621123888008 41.12676133596847 -265.3558225831903 -522.4982604223451 16.6628271825582 -294.0339443025496 -516.3849030341453 66.96453947374198 -294.0191290286221 -492.7949399878362 14.05784245231121 -242.6150232302489 -492.7949399878362 14.05784245231121 -242.6150232302489 -486.6815825996346 64.35955474349635 -242.6002079562977 -486.6815825996346 64.35955474349635 -242.6002079562977</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID9954\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9951\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID9955\">-0.8689857686232184 0.1319375357822388 0.4769237052003443 -0.8745627165991203 0.08020761769181047 0.4782329900780277 -0.8588909886411201 0.1042365831513623 0.5014389338334311 0.8588909886411201 -0.1042365831513623 -0.5014389338334311 0.8745627165991203 -0.08020761769181047 -0.4782329900780277 0.8689857686232184 -0.1319375357822388 -0.4769237052003443 -0.8475334295120662 0.07638237733278754 0.5252169249867212 0.8475334295120662 -0.07638237733278754 -0.5252169249867212 -0.842049871957511 0.1281236294557217 0.5239621634349488 0.842049871957511 -0.1281236294557217 -0.5239621634349488</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID9955\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9953\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID9956\">236.6741359341069 2390.403327187877 236.6540370891725 2390.662581136133 236.5124704052312 2390.518006181327 -0.229161681598276 76.83613542468434 -0.6987827292171858 76.58661764858175 -0.6985981059877853 77.07601038062073 236.5096643058459 2390.543527657779 236.6512315853377 2390.688108583879 236.3523493302183 2390.664811071643 0.2131964536864182 76.59627208830553 -0.6987827292155062 76.58661764858124 -0.242949838976009 76.84022828999626 234.9573278995603 2390.366294633721 234.8146113702075 2390.476327028744 234.6861804702034 2390.345158333031 0.2133810769172628 77.0856648203425 -0.2424518133230587 76.83205417892749 -0.6985981059848969 77.07601038061823 234.6861139627488 2390.030431057122 234.8276806406489 2390.17500600644 234.6660151180318 2390.289684994882 0.2131964536824862 76.59627208830347 -0.2562399707074743 76.83614704423985 0.2133810769122677 77.08566482034244</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID9956\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9952\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9950\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9951\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9952\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9953\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 6 1 7 6 8 0 12 2 13 8 14 8 18 2 19 6 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9952\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9953\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 7 9 4 10 3 11 9 15 3 16 5 17 7 21 3 22 9 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID9957\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID9958\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID10092\">-575.5613147779504 129.8164119802293 -436.9583268241149 -595.9415918115956 104.674137922427 -461.1596447366464 -582.1659509434567 75.39290378748206 -436.9514958673808 -582.1659509434567 75.39290378748206 -436.9514958673808 -595.9415918115956 104.674137922427 -461.1596447366464 -575.5613147779504 129.8164119802293 -436.9583268241149 -596.3235787361864 78.12155659156133 -489.7512096235414 -596.3235787361864 78.12155659156133 -489.7512096235414 -581.3173242608591 103.4481511827428 -407.3366144666325 -581.3173242608591 103.4481511827428 -407.3366144666325 -589.9790488777344 130.6591802239066 -489.8716558366496 -589.9790488777344 130.6591802239066 -489.8716558366496 -602.1226608729303 51.31180579336319 -460.0786973857694 -602.1226608729303 51.31180579336319 -460.0786973857694 -561.0673369827819 127.4895613664726 -383.1351874979018 -561.0673369827819 127.4895613664726 -383.1351874979018 -567.5438057944857 74.20010842898046 -383.150882745832 -567.5438057944857 74.20010842898046 -383.150882745832 -589.2050210058515 158.1468169429045 -460.2650692335683 -589.2050210058515 158.1468169429045 -460.2650692335683 -610.0074699239158 106.4326646636878 -513.1958561059137 -610.0074699239158 106.4326646636878 -513.1958561059137 -588.4033981529528 21.8884265287943 -436.0131191100027 -588.4033981529528 21.8884265287943 -436.0131191100027 -602.5896096130982 24.55431829208987 -488.8892328694483 -602.5896096130982 24.55431829208987 -488.8892328694483 -574.79474760629 157.3265391885541 -407.388877254024 -574.79474760629 157.3265391885541 -407.388877254024 -587.9938998846501 48.45580522480668 -407.3278443803183 -587.9938998846501 48.45580522480668 -407.3278443803183 -583.2015719252122 184.1143914179904 -488.8406212700902 -583.2015719252122 184.1143914179904 -488.8406212700902 -568.7896497012234 183.2896288654567 -435.9647738033609 -568.7896497012234 183.2896288654567 -435.9647738033609 -610.3646913795528 79.98119395416779 -541.7418997087443 -610.3646913795528 79.98119395416779 -541.7418997087443 -604.0421433957563 132.0802397414229 -541.7484389110077 -604.0421433957563 132.0802397414229 -541.7484389110077 -616.341070836249 53.88256142062005 -513.0300625045074 -616.341070836249 53.88256142062005 -513.0300625045074 -554.3859231966444 182.465335335887 -383.1189955808623 -554.3859231966444 182.465335335887 -383.1189955808623 -574.2252540558629 19.22405079511464 -383.1670747462913 -574.2252540558629 19.22405079511464 -383.1670747462913 -603.6016517813678 158.8578938885717 -513.0432384642945 -603.6016517813678 158.8578938885717 -513.0432384642945 -616.7363767448551 27.25955014630995 -541.8162270841604 -616.7363767448551 27.25955014630995 -541.8162270841604 -597.5670750590234 184.9628249841092 -541.7710330998316 -597.5670750590234 184.9628249841092 -541.7710330998316 -613.4091585582846 54.79016442601073 -541.7774142142607 -613.4091585582846 54.79016442601073 -541.7774142142607</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID10092\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9959\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID10093\">-0.9576371500468723 0.1142823484786823 0.2643305386751617 -0.9593872001284654 0.1160787102826141 0.2571029623493065 -0.9566740699550124 0.1190345937676518 0.2657169346546852 0.9566740699550124 -0.1190345937676518 -0.2657169346546852 0.9593872001284654 -0.1160787102826141 -0.2571029623493065 0.9576371500468723 -0.1142823484786823 -0.2643305386751617 -0.9576081222503673 0.1143361396242438 0.2644124266670369 0.9576081222503673 -0.1143361396242438 -0.2644124266670369 -0.9568749556542638 0.1217071080911932 0.2637758500729914 0.9568749556542638 -0.1217071080911932 -0.2637758500729914 -0.9570116148801955 0.117681776423156 0.2651033166188064 0.9570116148801955 -0.117681776423156 -0.2651033166188064 -0.9572546771302656 0.1177078538446417 0.2642126875369908 0.9572546771302656 -0.1177078538446417 -0.2642126875369908 -0.8766336101644743 0.107600566865149 0.4689729539539557 0.8766336101644743 -0.107600566865149 -0.4689729539539557 -0.8773895999448458 0.1058895034750202 0.4679475429601454 0.8773895999448458 -0.1058895034750202 -0.4679475429601454 -0.9579370352742181 0.1162664446524811 0.2623713976368482 0.9579370352742181 -0.1162664446524811 -0.2623713976368482 -0.9581331054833759 0.1166869621372521 0.2614672160022388 0.9581331054833759 -0.1166869621372521 -0.2614672160022388 -0.9654626262364574 -0.0691299284959139 0.2512030460140811 0.9654626262364574 0.0691299284959139 -0.2512030460140811 -0.9653586347654635 -0.06879140570959985 0.2516951504980934 0.9653586347654635 0.06879140570959985 -0.2516951504980934 -0.9582425486422364 0.1207195805297228 0.2592257719601949 0.9582425486422364 -0.1207195805297228 -0.2592257719601949 -0.9591300908989221 0.1115969391694049 0.260029982694776 0.9591300908989221 -0.1115969391694049 -0.260029982694776 -0.9208717297030006 0.2983947297135551 0.250910029119958 0.9208717297030006 -0.2983947297135551 -0.250910029119958 -0.9208625923689929 0.2981463958349584 0.2512385572042681 0.9208625923689929 -0.2981463958349584 -0.2512385572042681 -0.9899818454570879 0.1191513582059554 0.07575552457117965 0.9899818454570879 -0.1191513582059554 -0.07575552457117965 -0.989717909186363 0.1215489754891074 0.07539434191849083 0.989717909186363 -0.1215489754891074 -0.07539434191849083 -0.9582198484283545 0.1186234656314947 0.2602752302458205 0.9582198484283545 -0.1186234656314947 -0.2602752302458205 -0.8627861146851961 0.196064288271487 0.4660031278554029 0.8627861146851961 -0.196064288271487 -0.4660031278554029 -0.8845784261278558 0.01579036125998248 0.4661240956230913 0.8845784261278558 -0.01579036125998248 -0.4661240956230913 -0.9588630965489268 0.1132481217075516 0.2603006434996181 0.9588630965489268 -0.1132481217075516 -0.2603006434996181 -0.9952665642724597 -0.06415264071216252 0.07299934746934529 0.9952665642724597 0.06415264071216252 -0.07299934746934529 -0.9508658686399987 0.3007413619441292 0.07354408930356961 0.9508658686399987 -0.3007413619441292 -0.07354408930356961 -0.9880783285074763 0.119551163896603 -0.09699863888137486 0.9880783285074763 -0.119551163896603 0.09699863888137486</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID10093\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID9961\">\r\n\t\t\t\t\t<float_array count=\"412\" id=\"ID10094\">244.6598961326322 2395.340915046615 244.4990579620027 2395.515713495041 244.3382198023025 2395.340915036252 -29.23069338753453 62.41648397350459 -28.80751206842411 62.70422125679274 -28.38106315882978 62.41836368440663 0 0.5415098464157637 0.8049998595348882 0 1 1 -29.23069338753585 62.41648397350333 -29.27350729221935 62.9444252704734 -28.80751206842551 62.70422125679141 244.9930195919192 2389.347599215781 244.6713432610247 2389.347599215511 244.8353385145161 2389.185659082999 -24.15338682309433 74.8041707532026 -24.58677828083315 75.09113742545841 -23.73714280861006 75.09140750083843 0.1920791637076267 -1.776356839400251e-015 0.9999999999999991 0.5426234114508528 -8.881784197001252e-016 0.9999999999999982 -28.49309948174805 73.8404084332682 -28.91813060126684 74.12708489236111 -28.45189242542509 74.36952073256106 0 1.776356839400251e-015 1 0.004194976544505735 0.5009860433372088 1.000000000000002 -28.80751206842597 62.70422125679098 -29.27350729221965 62.94442527047282 -28.46124305826751 63.01507686833523 0.1424080126905274 1.776356839400251e-015 0.9999999999999991 0.5619824451095727 -8.881784197001252e-016 1.000000000000002 -29.2306933875342 62.41648397350099 -29.69523146163047 62.6559138280288 -29.27350729221766 62.94442527047078 0.1596262252405021 0 1 0.5503527428593742 0 1 -29.80393734584143 73.8494853946914 -30.22090042418425 74.13104857113602 -29.75570422137738 74.38746164098488 245.4909382072405 2395.187682477461 245.3136158741436 2395.364807918075 245.3064818478417 2395.022183942887 -29.38594010246434 73.23879563693157 -29.45080859318958 73.77585929438868 -28.96219308670088 73.52570820319568 0 0.5595298416410071 0.8556377465427687 0 -28.49309948174901 73.84040843326903 -28.45189242542613 74.36952073256182 -28.02738363092726 74.08262093491722 0 0.9948625280742753 0.5004042011390188 0 -24.58056410802302 86.56298289556993 -24.17079428581011 86.84278782802409 -23.76042926013922 86.56438180140754 2.168404344971009e-019 0.96100751261325 0.490919949563575 0 0.9999999999999999 1 -30.22844154375073 73.69564042866307 -29.80221341173536 73.98161150765419 -29.39364115844302 73.7053800938549 245.321384123835 2389.684699442977 245.0017858426903 2389.679133623245 245.1619059040236 2389.518681514112 -29.69523146163161 62.6559138280323 -30.1093016025935 62.93455934439693 -29.27350729221862 62.94442527047443 -2.220446049250313e-016 1.000000000000004 0.4900249625202094 3.552713678800501e-015 0.9999999999999999 0.9993514742769207 -29.3354144948722 73.16990305919531 -28.91184441872575 73.4569170757829 -28.50346614688647 73.17050909145611 0 0.5493817332147053 0.8211555452385113 0 -29.86954825686697 73.73044955351971 -29.82191991908842 74.26844672567964 -29.38874087319584 73.9867859493024 242.309041083657 2394.31599034595 242.1571465664089 2394.144488443033 242.3381337544981 2394.001757156764 -29.32444895098462 73.12815331844941 -29.8143377631255 73.3774556290183 -29.39002378089835 73.66518366153798 -167.9969924127012 -0.3377386186391438 -168.3346796084794 -0.3291077337017376 -168.1657802162541 -0.5209002421657325 -29.36686288759259 74.47518042449293 -29.79947280983939 74.75734144257244 -28.96424704015731 74.75709374867186 4.440892098500626e-016 1.000000000000004 0.5061577928883017 3.552713678800501e-015 1 0.9591135414952881 -28.4366325352951 73.78705629713899 -28.02571425709868 74.06512623675647 -27.60130560038187 73.7770765941038 0 0.5490606790571242 0.824311505775631 0 1.000000000000001 1 -30.72637641869843 74.76667449282846 -30.68133439096219 75.28634710815898 -30.26580186448824 75.01389560959844 0.1795034008921652 0 1 0.5503923164273079 -29.79124008859552 74.77842333487116 -30.26580186449002 75.01389560959949 -29.86812000196548 75.29550351631019 8.881784197001252e-016 0.5448686265928728 0.8082824193992311 0 -30.22844154375258 73.69564042866823 -30.27089570115944 74.22434735430473 -29.80221341173713 73.98161150765941 244.6861301316911 2389.293069768768 244.3700789712227 2389.287155249848 244.5256645763492 2389.130611395938 -29.81812570902089 73.41774978581826 -30.22844154375104 73.69564042866165 -29.39364115844323 73.70538009385342 3.469446951953614e-018 0.9642938222452884 0.4931524104518131 0 -25.45587235882754 86.59758557556395 -25.03110848068362 86.88422628789796 -24.62005172130344 86.60654353577849 0 0.03360065997843975 1 -1.776356839400251e-015 0.4919533887301213 1 -23.37518018652591 74.54225359384218 -23.7983577233477 74.82975850459368 -22.96306401989419 74.81875144648458 0 0.9999999999999965 0.4950107267682578 -3.552713678800501e-015 1 0.9993328390611289 -29.81524024807263 73.79451446263043 -29.33410784592287 74.05061390925438 -28.96212273124572 73.73596308112879 245.3322020754441 2396.009574415288 245.1678117332436 2396.171228856633 245.007252960152 2396.009714288811 -25.43770490712458 85.71032775707786 -25.01383815895919 85.99679846413322 -24.57942490887873 85.71032778113244 0.1924921083962703 0 0.9999999999999996 0.5404273104937598 -24.22762906661196 86.63119910484151 -24.66085468229869 86.91410526595591 -24.20190004990258 87.16032469755535 4.440892098500626e-016 0.9999999999999965 0.5082587455044954 -3.552713678800501e-015 1 0.9573998729852065 -29.78604383774982 74.78352139889026 -29.38584596801492 75.06524086245918 -28.95081801878799 74.78334998527323 0 0 1 0.000229023143241136 0.498833026417106 1 -30.26580186448826 75.01389560959888 -30.68133439096237 75.28634710815963 -29.86812000196388 75.29550351630948 0.1656180565700547 0 1.000000000000001 0.552249588477908 8.881784197001252e-016 1 -30.7263764186986 74.7666744928283 -31.14431024661805 75.0403415151747 -30.68133439096228 75.28634710815875 0 0.5533342421323351 0.8376690633185699 0 -29.79124008859471 74.77842333487122 -29.86812000196464 75.29550351630991 -29.39108075687268 75.06016405772566 245.1694695459245 2396.174718897023 245.0093806778396 2396.327252270835 245.0043622909892 2396.017239878589 -25.60993708187684 72.35451275566155 -25.63597520480405 72.88333129504967 -25.17783218916287 72.63616302261214 0 0.5438843638630448 0.8060672301649552 0 -31.67103679653803 74.8294263663412 -31.49835705064802 75.34814425517591 -31.14431024661865 75.04034151517325 0.1924701459167317 0 0.9999999999999996 0.5407413328085138 -28.96023537022475 73.73478753011766 -29.33220307373615 74.0494463519388 -28.82675578842815 74.25727480508344 0.1902858881024927 0 1 0.5427464786773992 -28.95812772746564 74.76485321336654 -29.3930600806455 75.04680137318324 -28.9317145726783 75.29436020127922 -166.4997415582782 26.15347514408573 -166.4967697644872 26.32935952377028 -166.6714259497118 26.32959262213873 -166.3369560721893 26.32914623438164 -30.68133439096311 75.28634710815237 -31.14431024661938 75.04034151516801 -31.07171755163109 75.31587452123887 -31.49835705064913 75.34814425517111 1 0.0007864922842699684 0.5001117247698639 1 -29.39648667764607 75.02763766200729 -29.8733571705907 75.26310990530283 -29.05764305227362 75.34284332135097</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"206\" source=\"#ID10094\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID9960\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID9958\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID9959\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"11\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 0 12 2 13 8 14 8 42 2 43 16 44 6 64 24 65 12 66 2 81 28 82 16 83 30 87 10 88 18 89 2 115 22 116 28 117 16 138 28 139 42 140 28 172 22 173 42 174 38 193 50 194 46 195 50 194 38 193 34 196</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"37\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 3 9 7 10 4 11 9 15 3 16 5 17 5 21 4 22 11 23 4 27 7 28 11 29 3 33 13 34 7 35 15 39 9 40 5 41 17 45 3 46 9 47 5 50 11 51 19 52 7 55 21 56 11 57 23 61 13 62 3 63 13 67 25 68 7 69 17 73 9 74 15 75 15 78 5 79 27 80 17 84 29 85 3 86 19 90 11 91 31 92 5 96 19 97 33 98 7 102 35 103 21 104 11 107 21 108 37 109 23 112 25 113 13 114 29 118 23 119 3 120 25 123 39 124 7 125 27 129 5 130 33 131 15 135 27 136 41 137 43 141 29 142 17 143 33 146 19 147 31 148 11 152 45 153 31 154 21 158 35 159 37 160 7 164 39 165 35 166 11 169 37 170 45 171 43 175 23 176 29 177 25 180 47 181 39 182 41 185 27 186 33 187 31 190 45 191 49 192 35 197 39 198 51 199 47 200 51 199 39 198 45 203 37 204 49 205</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material7\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>1 6 6 7 2 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material6\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>10 18 1 19 0 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material8\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>10 24 6 25 1 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material5\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>6 30 12 31 2 32</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material9\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>0 36 8 37 14 38</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material10\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>18 48 10 49 0 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material11\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>10 53 20 54 6 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material12\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>2 58 12 59 22 60</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material15\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>14 70 8 71 16 72</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material16\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>26 76 0 77 14 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material17\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>32 93 18 94 0 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material13\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>20 99 34 100 6 101</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material18\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>36 105 20 106 10 38</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material19\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>12 110 24 111 22 101</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material20\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>6 121 38 122 24 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material14\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>32 126 0 127 26 128</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material21\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>40 132 26 133 14 134</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material22\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>30 144 18 145 32 38</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>30 149 44 150 10 151</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material23\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>36 155 34 156 20 157</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material24\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>34 161 38 162 6 163</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material25\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>44 167 36 168 10 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material26\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>38 178 46 179 24 8</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material27\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>32 183 26 184 40 38</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material28\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>48 188 44 189 30 38</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material29\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID9960\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID9961\" />\r\n\t\t\t\t\t<p>48 155 36 201 44 202</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10095\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10101\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID10110\">-588.5783226540661 174.0720970059324 -710.9690674780459 -611.5056375026616 36.5756590846222 -725.3925191710496 -605.3981176299149 35.78215758196757 -711.0151719370469 -605.8535664803703 82.93561528050282 -725.3459145475008 -600.2907277336035 128.672476642872 -725.3306663505982 -594.68435762017 174.9173259950542 -725.3575513209862 -594.68435762017 174.9173259950542 -725.3575513209862 -588.5783226540661 174.0720970059324 -710.9690674780459 -600.2907277336035 128.672476642872 -725.3306663505982 -605.8535664803703 82.93561528050282 -725.3459145475008 -611.5056375026616 36.5756590846222 -725.3925191710496 -605.3981176299149 35.78215758196757 -711.0151719370469 -599.4079806379523 177.0459654841768 -706.0321018522891 -616.6849108152628 35.57604101191646 -706.0482327059972 -599.4079806379523 177.0459654841768 -706.0321018522891 -616.6849108152628 35.57604101191646 -706.0482327059972</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID10110\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10102\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID10111\">-0.9093842223322149 0.1107393890958393 -0.4009452878834132 -0.9881687528178079 0.05459132064402113 0.1433258653029517 -0.9090893690844972 0.1107037529696714 -0.401623204130415 -0.9825599137363344 0.1200791914351083 0.1419753630132272 -0.9827329451611779 0.1185789673640258 0.1420386813291319 -0.9726162802692869 0.1830719009234862 0.1431860693202982 0.9726162802692869 -0.1830719009234862 -0.1431860693202982 0.9093842223322149 -0.1107393890958393 0.4009452878834132 0.9827329451611779 -0.1185789673640258 -0.1420386813291319 0.9825599137363344 -0.1200791914351083 -0.1419753630132272 0.9881687528178079 -0.05459132064402113 -0.1433258653029517 0.9090893690844972 -0.1107037529696714 0.401623204130415 -0.4030537778185329 0.04932690194903754 -0.9138459984758477 -0.4030537778185329 0.04932690194903754 -0.9138459984758477 0.4030537778185329 -0.04932690194903754 0.9138459984758477 0.4030537778185329 -0.04932690194903754 0.9138459984758477</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID10111\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10104\">\r\n\t\t\t\t\t<float_array count=\"40\" id=\"ID10112\">0.0007366190305595488 1 0.9996329985544237 0 1 0.9968035830800446 0.6646309341254393 0.003231300633622425 0.3341428963671804 0.004288456902592941 0 0.002424458235729787 -28.65142455785603 61.46254597004027 -28.69279040651557 61.3135789523811 -29.36366162862676 61.53607335645292 -30.06799252350318 61.60923014137077 -30.78185748459013 61.68370900955856 -30.82240476747445 61.53477575192322 149.5492460748786 -1328.354566030569 149.2251264733972 -1328.164636142474 149.2213637836429 -1328.343733692987 149.5456185073567 -1328.176318940645 -28.69279040510424 61.31357895095537 -28.69859920819587 61.19515082077312 -30.82240476592014 61.53477575103219 -30.87750862890146 61.42071937172459</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"20\" source=\"#ID10112\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10103\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10101\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10102\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10103\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10104\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10103\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10104\" />\r\n\t\t\t\t\t<p>6 6 7 7 8 8 8 8 7 7 9 9 9 9 7 7 10 10 11 11 10 10 7 7 7 16 14 17 11 18 15 19 11 18 14 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material4\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10103\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10104\" />\r\n\t\t\t\t\t<p>12 12 2 13 13 14 2 13 12 12 0 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10113\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10114\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID10117\">-613.4091585582846 54.79016442601073 -541.7774142142607 -616.7030146037332 35.4601773527977 -703.6125656155809 -616.7535238294677 27.26538834674147 -541.7850264324625 -616.702057899869 35.58187921234571 -706.0170320542784 -599.5206933819027 176.9529785725742 -705.9753942755579 -597.5902017764583 184.9443610029641 -541.7385855247549 -597.5902017764583 184.9443610029641 -541.7385855247549 -613.4091585582846 54.79016442601073 -541.7774142142607 -599.5206933819027 176.9529785725742 -705.9753942755579 -616.702057899869 35.58187921234571 -706.0170320542784 -616.7030146037332 35.4601773527977 -703.6125656155809 -616.7535238294677 27.26538834674147 -541.7850264324625</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID10117\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10115\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID10118\">-0.9926789500139678 0.1206436877902676 0.005796791830916692 -0.9926789500139678 0.1206436877902676 0.005796791830916692 -0.9926789500139678 0.1206436877902676 0.005796791830916692 -0.9926789500139678 0.1206436877902676 0.005796791830916692 -0.9926789500139678 0.1206436877902676 0.005796791830916692 -0.9926789500139678 0.1206436877902676 0.005796791830916692 0.9926789500139678 -0.1206436877902676 -0.005796791830916692 0.9926789500139678 -0.1206436877902676 -0.005796791830916692 0.9926789500139678 -0.1206436877902676 -0.005796791830916692 0.9926789500139678 -0.1206436877902676 -0.005796791830916692 0.9926789500139678 -0.1206436877902676 -0.005796791830916692 0.9926789500139678 -0.1206436877902676 -0.005796791830916692</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID10118\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10116\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10114\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10115\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10116\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10116\" />\r\n\t\t\t\t\t<p>6 7 8 8 7 9 9 7 10 11 10 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10119\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10125\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID10129\">-604.8350775369381 130.8635838402788 -651.4042583689343 -613.6916239391949 107.0023255435037 -677.9554532106122 -610.7890936973163 81.66288709596847 -651.4314730621672 -610.7890936973163 81.66288709596847 -651.4314730621672 -613.6916239391949 107.0023255435037 -677.9554532106122 -604.8350775369381 130.8635838402788 -651.4042583689343</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID10129\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10126\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID10130\">-0.99278814054997 0.1198816911980614 -0.0002968144628185738 -0.9927156380129053 0.1201266540106409 0.009233040714637481 -0.9926503127948386 0.1210176885557164 -0.0002748907798058019 0.9926503127948386 -0.1210176885557164 0.0002748907798058019 0.9927156380129053 -0.1201266540106409 -0.009233040714637481 0.99278814054997 -0.1198816911980614 0.0002968144628185738</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID10130\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10128\">\r\n\t\t\t\t\t<float_array count=\"12\" id=\"ID10131\">0 1 0.4994328987029175 0 1 0.9989750106013275 -29.36872887403824 59.18507598274992 -28.94514107606101 59.42302436187978 -28.60433958882887 59.13828401320006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID10131\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10127\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10125\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10126\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10127\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10128\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10127\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10128\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10132\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10133\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID10137\">-480.4494618665631 115.6384714126996 -242.585104868067 -503.3706099832862 92.89428019418551 -265.3405755877993 -486.4440559099185 66.31396349953752 -242.5996323277959 -486.4440559099185 66.31396349953752 -242.5996323277959 -503.3706099832862 92.89428019418551 -265.3405755877993 -480.4494618665631 115.6384714126996 -242.585104868067 -509.9084342224505 120.2539924112375 -294.0034337807319 -509.9084342224505 120.2539924112375 -294.0034337807319 -516.1473763444064 68.91894822977815 -294.0185534000348 -516.1473763444064 68.91894822977815 -294.0185534000348</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID10137\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10134\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID10138\">-0.8413831979464574 0.1284104445768158 0.5249619718960381 -0.8588930730445544 0.1003784624731384 0.5022219164349664 -0.8473875048979735 0.07621490196578704 0.5254766457808875 0.8473875048979735 -0.07621490196578704 -0.5254766457808875 0.8588930730445544 -0.1003784624731384 -0.5022219164349664 0.8413831979464574 -0.1284104445768158 -0.5249619718960381 -0.8682273334593313 0.1311584266547351 0.4785172562735369 0.8682273334593313 -0.1311584266547351 -0.4785172562735369 -0.8747164507495153 0.08007484616838219 0.4779740053593716 0.8747164507495153 -0.08007484616838219 -0.4779740053593716</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID10138\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10136\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID10139\">236.0326232469975 2390.02696236991 236.1670133589184 2390.176308358691 235.9991648857375 2390.279100457657 0.213388250211489 77.10467954960477 -0.2560499675022676 77.33980082322566 0.2135692867921684 77.58456491701267 236.3089876644069 2390.355439379606 236.1458412389144 2390.476748436849 236.0114516927359 2390.327408117598 0.2135692867939989 77.58456491701473 -0.2427498344659282 77.33588502142096 -0.6984025168030286 77.59447127934641 236.5089049068114 2390.204146773739 236.651716726331 2390.345102838626 236.3535705054657 2390.325001433973 0.2133882502107642 77.10467954960703 -0.6985909326902098 77.09502510988273 -0.2427618507025375 77.34405405765216 236.6697317962219 2390.047784704157 236.6502775569514 2390.311740229949 236.5074651351463 2390.170778141523 -0.228971678394533 77.33978920367053 -0.6985909326886954 77.09502510988341 -0.6984025168041725 77.59447127934726</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID10139\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10135\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10133\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10134\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10135\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10136\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 6 1 7 0 8 1 12 8 13 2 14 6 18 8 19 1 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10135\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10136\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 5 9 4 10 7 11 3 15 9 16 4 17 4 21 9 22 7 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10140\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10146\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID10150\">-443.1755751715482 120.5226493513817 -1047.243179206374 -468.0162203562131 54.56888142006915 -1087.261837705432 -451.371140648258 52.50790929981463 -1047.334433071529 -459.820654879517 122.5836214716485 -1087.170583840306 -459.820654879517 122.5836214716485 -1087.170583840306 -443.1755751715482 120.5226493513817 -1047.243179206374 -468.0162203562131 54.56888142006915 -1087.261837705432 -451.371140648258 52.50790929981463 -1047.334433071529</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID10150\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10147\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID10151\">-0.9154014226357823 0.1097834271546291 0.3872826287849358 -0.9154014226357823 0.1097834271546291 0.3872826287849358 -0.9154014226357823 0.1097834271546291 0.3872826287849358 -0.9154014226357823 0.1097834271546291 0.3872826287849358 0.9154014226357823 -0.1097834271546291 -0.3872826287849358 0.9154014226357823 -0.1097834271546291 -0.3872826287849358 0.9154014226357823 -0.1097834271546291 -0.3872826287849358 0.9154014226357823 -0.1097834271546291 -0.3872826287849358</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID10151\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10149\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID10152\">74.00003191795459 4875.001166373976 73.00003148467117 4876.003664142958 73.00003148371499 4875.001166460497 74.00003191891092 4876.003664056437 -11.25476033773565 94.13906436778484 -11.25670964247632 93.72080278585155 -12.30601400934952 94.14096710152165 -12.30796331409003 93.72270551958866</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID10152\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10148\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10146\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10147\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10148\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10149\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10148\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10149\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10153\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10159\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID10163\">-492.0731888010905 12.04072586394773 -240.8717289549404 -417.2859868452179 13.17103814667826 -166.738514449059 -472.897554897304 169.7036190238935 -240.8281956427309 -375.8237809757229 6.135821281004837 -124.7155792950671 -376.976159492172 8.25930162842792 -126.1158718479328 -371.3874422214467 54.21997171319458 -126.1043887606265 -358.6046968603914 147.6256933848492 -124.6661007288885 -371.1498266912486 56.17408183585008 -126.1039005341472 -365.5611094205215 102.1347519206217 -126.0924174468455 -365.3234938903179 104.08886204327 -126.0919292203525 -360.2297992358817 145.9785494588255 -126.0814632515767 -400.5396265889422 150.8902859770792 -166.7041058527057 -411.6972695745108 59.13170823144742 -166.7270313617692 -405.6333212433574 109.0005985615185 -166.7145718214733 -411.4596540442863 61.08581835409882 -166.7265431352507 -405.8709367735628 107.0464884388696 -166.7150600479481 -371.1498266912486 56.17408183585008 -126.1039005341472 -371.3874422214467 54.21997171319458 -126.1043887606265 -411.4596540442863 61.08581835409882 -166.7265431352507 -411.6972695745108 59.13170823144742 -166.7270313617692 -365.3234938903179 104.08886204327 -126.0919292203525 -365.5611094205215 102.1347519206217 -126.0924174468455 -405.6333212433574 109.0005985615185 -166.7145718214733 -405.8709367735628 107.0464884388696 -166.7150600479481 -360.2297992358817 145.9785494588255 -126.0814632515767 -400.5396265889422 150.8902859770792 -166.7041058527057 -358.6046968603914 147.6256933848492 -124.6661007288885 -417.2859868452179 13.17103814667826 -166.738514449059 -472.897554897304 169.7036190238935 -240.8281956427309 -375.8237809757229 6.135821281004837 -124.7155792950671 -376.976159492172 8.25930162842792 -126.1158718479328 -492.0731888010905 12.04072586394773 -240.8717289549404</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID10163\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10160\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID10164\">-0.7020843541667076 0.08519528369984161 0.7069790119017826 -0.7251602289512817 0.06046604589869337 0.6859201845992736 -0.7020843541667076 0.08519528369984161 0.7069790119017826 -0.7020843541667076 0.08519528369984161 0.7069790119017826 -0.6844940487077793 0.05551088791829149 0.7269019456612804 -0.6778939151573852 0.1097892768843325 0.7269155071078118 -0.7020843541667076 0.08519528369984161 0.7069790119017826 -0.6844940487077792 0.05551088791829476 0.7269019456612803 -0.6778939151573864 0.1097892768843265 0.7269155071078117 -0.6835247120831097 0.0547246404801603 0.727873053283345 -0.6767644584259388 0.1103198302889174 0.7278869437326583 -0.7194437946755933 0.1155202905253339 0.6848764040173418 -0.71856009541348 0.1147444348594999 0.6859337460339333 -0.7262040483192294 0.05992510072218409 0.6848625135807906 -0.7251602289512623 0.06046604589867079 0.6859201845992962 -0.7185600954134669 0.1147444348595325 0.6859337460339416 0.6844940487077792 -0.05551088791829476 -0.7269019456612803 0.6778939151573852 -0.1097892768843325 -0.7269155071078118 0.7251602289512623 -0.06046604589867079 -0.6859201845992962 0.71856009541348 -0.1147444348594999 -0.6859337460339333 0.6835247120831097 -0.0547246404801603 -0.727873053283345 0.6778939151573864 -0.1097892768843265 -0.7269155071078117 0.7262040483192294 -0.05992510072218409 -0.6848625135807906 0.7185600954134669 -0.1147444348595325 -0.6859337460339416 0.6767644584259388 -0.1103198302889174 -0.7278869437326583 0.7194437946755933 -0.1155202905253339 -0.6848764040173418 0.7020843541667076 -0.08519528369984161 -0.7069790119017826 0.7251602289512817 -0.06046604589869337 -0.6859201845992736 0.7020843541667076 -0.08519528369984161 -0.7069790119017826 0.7020843541667076 -0.08519528369984161 -0.7069790119017826 0.6844940487077793 -0.05551088791829149 -0.7269019456612804 0.7020843541667076 -0.08519528369984161 -0.7069790119017826</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID10164\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10162\">\r\n\t\t\t\t\t<float_array count=\"64\" id=\"ID10165\">1 0 0.9362118228761521 0.6379485736726616 0 0.0003746261094881298 0.9487372153794155 0.9995742187641779 0.9363386514190939 0.9875240920308985 0.6448272893944871 0.9876229109837778 0.05130902079239197 1 0.6324330988322073 0.9876271124696894 0.3409217368075678 0.9877259314225539 0.3285275462453294 0.9877301329085517 0.06283690660121044 0.9878201989376616 0.06271007805825846 0.6382446805793487 0.6447004608515434 0.6380473926253911 0.3284007177023942 0.6381546145503663 0.6323062702892692 0.6380515941115856 0.3407949082646382 0.6381504130644395 -24.48893105150366 79.04539216290966 -24.51943863154099 79.04539182038671 -24.48894708906797 79.60013995369405 -24.51945466910529 79.60013961117156 -23.74088518898873 79.0454005615655 -23.77139276902597 79.04540021904268 -23.74090122655305 79.60014835235 -23.7714088065903 79.6001480098271 -23.08690311461413 79.04540790412355 -23.08691915217841 79.60015569490827 -23.05851646137867 79.02608607727595 -25.2369929515829 79.60013155503832 -22.93316085823063 80.61243870053208 -25.2674839410365 79.02625418756587 -25.2369769140186 79.04538376425371 -25.39460279739992 80.61246761901003</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID10165\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10161\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10159\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10160\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"20\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10161\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10162\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 5 5 6 6 7 7 7 7 6 6 8 8 8 8 6 6 9 9 9 9 6 6 10 10 2 2 11 11 6 6 11 11 2 2 12 12 12 12 2 2 1 1 11 11 12 12 13 13 13 13 12 12 14 14 13 13 14 14 15 15 6 6 11 11 10 10 8 8 13 13 15 15 13 13 8 8 9 9 5 5 14 14 12 12 14 14 5 5 7 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"20\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10161\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10162\" />\r\n\t\t\t\t\t<p>16 16 17 17 18 18 19 19 18 18 17 17 20 20 21 21 22 22 23 23 22 22 21 21 24 24 25 25 26 26 23 23 18 18 22 22 18 18 19 19 22 22 22 22 19 19 25 25 27 27 28 28 19 19 19 19 28 28 25 25 26 26 25 25 28 28 24 24 26 26 20 20 20 20 26 26 21 21 21 21 26 26 16 16 16 16 26 26 17 17 26 26 29 29 17 17 17 17 29 29 30 30 30 30 29 29 27 27 29 29 31 31 27 27 28 28 27 27 31 31</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10166\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10167\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID10171\">-371.3874422214467 54.21997171319458 -126.1043887606265 -411.6972695745108 59.13170823144742 -166.7270313617692 -398.4828819624227 34.19862672404338 -142.2463786880699 -398.4828819624227 34.19862672404338 -142.2463786880699 -411.6972695745108 59.13170823144742 -166.7270313617692 -371.3874422214467 54.21997171319458 -126.1043887606265 -417.2859868452179 13.17103814667826 -166.738514449059 -417.2859868452179 13.17103814667826 -166.738514449059 -376.976159492172 8.25930162842792 -126.1158718479328 -376.976159492172 8.25930162842792 -126.1158718479328</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID10171\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10168\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID10172\">-0.6778939151573852 0.1097892768843325 0.7269155071078118 -0.71856009541348 0.1147444348594999 0.6859337460339333 -0.7020843513239988 0.0851952904688246 0.7069790139091062 0.7020843513239988 -0.0851952904688246 -0.7069790139091062 0.71856009541348 -0.1147444348594999 -0.6859337460339333 0.6778939151573852 -0.1097892768843325 -0.7269155071078118 -0.7251602289512817 0.06046604589869337 0.6859201845992736 0.7251602289512817 -0.06046604589869337 -0.6859201845992736 -0.6844940487077793 0.05551088791829149 0.7269019456612804 0.6844940487077793 -0.05551088791829149 -0.7269019456612804</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID10172\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10170\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID10173\">255.4167467595823 2379.044788317653 255.6079843704992 2379.051132002389 255.5097492655106 2379.129191767469 -25.8479729847791 78.09519946560214 -25.52457681181944 78.39446635910507 -25.43464032051177 77.84255712487536 255.6677968681341 2379.025329533273 255.6667151771261 2379.182842416798 255.5695623496331 2379.103394752593 -24.87818993230405 83.3078240863549 -25.23696678167531 83.59099757550553 -24.51942849918449 83.59100516083065 254.3375642004307 2378.106338816981 254.448522509926 2378.164233533613 254.3678445410035 2378.260827750991 -25.2370065482062 71.8032360156266 -24.87824653735699 72.08641778988159 -24.51946826575698 71.80324500054265 254.4956945330346 2378.218584709645 254.6035753870524 2378.282185097888 254.4150158407474 2378.315172182438 -22.53112392484079 80.877344885669 -22.44121804374592 81.42925605676049 -22.11780527294731 81.1299961292449</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID10173\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10169\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10167\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10168\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10169\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10170\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 6 6 7 2 8 0 12 2 13 8 14 2 18 6 19 8 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10169\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10170\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 3 9 7 10 4 11 9 15 3 16 5 17 9 21 7 22 3 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10174\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10180\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID10184\">-480.2119351768324 117.592880168738 -242.5845292395352 -509.9084342224505 120.2539924112375 -294.0034337807319 -480.4494618665631 115.6384714126996 -242.585104868067 -509.6709075327135 122.2084011672687 -294.0028581521456 -472.8852834529407 169.6961216108939 -240.8660123367217 -492.7949399878362 14.05784245231121 -242.6150232302489 -492.0486055059464 12.01714895465625 -240.9124532444394 -486.6815825996346 64.35955474349635 -242.6002079562977 -486.4440559099185 66.31396349953752 -242.5996323277959 -474.0985777886172 167.8945924599234 -242.5697139655667 -503.5575501444964 172.510113458454 -293.9880428781735 -554.3859231966444 182.465335335887 -383.1189955808623 -574.2252540558629 19.22405079511464 -383.1670747462913 -522.4982604223451 16.6628271825582 -294.0339443025496 -516.3849030341453 66.96453947374198 -294.0191290286221 -567.5438057944857 74.20010842898046 -383.150882745832 -516.1473763444064 68.91894822977815 -294.0185534000348 -561.0673369827819 127.4895613664726 -383.1351874979018 -516.1473763444064 68.91894822977815 -294.0185534000348 -486.4440559099185 66.31396349953752 -242.5996323277959 -516.3849030341453 66.96453947374198 -294.0191290286221 -486.6815825996346 64.35955474349635 -242.6002079562977 -554.3859231966444 182.465335335887 -383.1189955808623 -503.5575501444964 172.510113458454 -293.9880428781735 -561.0673369827819 127.4895613664726 -383.1351874979018 -509.6709075327135 122.2084011672687 -294.0028581521456 -509.9084342224505 120.2539924112375 -294.0034337807319 -567.5438057944857 74.20010842898046 -383.150882745832 -574.2252540558629 19.22405079511464 -383.1670747462913 -522.4982604223451 16.6628271825582 -294.0339443025496 -492.7949399878362 14.05784245231121 -242.6150232302489 -492.0486055059464 12.01714895465625 -240.9124532444394 -472.8852834529407 169.6961216108939 -240.8660123367217 -474.0985777886172 167.8945924599234 -242.5697139655667 -480.2119351768324 117.592880168738 -242.5845292395352 -480.4494618665631 115.6384714126996 -242.585104868067</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID10184\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10181\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID10185\">-0.8479777392680804 0.07665113612930218 0.524460062384051 -0.8682273334593313 0.1311584266547351 0.4785172562735369 -0.8413831979464574 0.1284104445768158 0.5249619718960381 -0.8756573766792385 0.07950697990925607 0.4763431523733114 -0.8588909886406114 0.1042365831525804 0.5014389338340498 -0.8475334295120662 0.07638237733278754 0.5252169249867212 -0.8588909886406114 0.1042365831525804 0.5014389338340498 -0.842049871957511 0.1281236294557217 0.5239621634349488 -0.8473875048979735 0.07621490196578704 0.5254766457808875 -0.8415596138871831 0.1282822995058406 0.5247104610235525 -0.8681142156757377 0.1309935209572108 0.4787675908088721 -0.8627861146851961 0.196064288271487 0.4660031278554029 -0.8845784261278558 0.01579036125998248 0.4661240956230913 -0.8745627165991203 0.08020761769181047 0.4782329900780277 -0.8689857686232184 0.1319375357822388 0.4769237052003443 -0.8773895999448458 0.1058895034750202 0.4679475429601454 -0.8747164507495153 0.08007484616838219 0.4779740053593716 -0.8766336101644743 0.107600566865149 0.4689729539539557 0.8747164507495153 -0.08007484616838219 -0.4779740053593716 0.8473875048979735 -0.07621490196578704 -0.5254766457808875 0.8689857686232184 -0.1319375357822388 -0.4769237052003443 0.842049871957511 -0.1281236294557217 -0.5239621634349488 0.8627861146851961 -0.196064288271487 -0.4660031278554029 0.8681142156757377 -0.1309935209572108 -0.4787675908088721 0.8766336101644743 -0.107600566865149 -0.4689729539539557 0.8756573766792385 -0.07950697990925607 -0.4763431523733114 0.8682273334593313 -0.1311584266547351 -0.4785172562735369 0.8773895999448458 -0.1058895034750202 -0.4679475429601454 0.8845784261278558 -0.01579036125998248 -0.4661240956230913 0.8745627165991203 -0.08020761769181047 -0.4782329900780277 0.8475334295120662 -0.07638237733278754 -0.5252169249867212 0.8588909886406114 -0.1042365831525804 -0.5014389338340498 0.8588909886406114 -0.1042365831525804 -0.5014389338340498 0.8415596138871831 -0.1282822995058406 -0.5247104610235525 0.8479777392680804 -0.07665113612930218 -0.524460062384051 0.8413831979464574 -0.1284104445768158 -0.5249619718960381</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID10185\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10183\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID10186\">0.337282788998435 0.9879233726461409 0.3429750004532632 0.6265845065092486 0.3492553041715172 0.9879193275004297 0.3310024852802203 0.6265885516552698 0.01737497033626312 1 0.9715282129281444 0.9877090805661619 0.9833007966354619 0.9996736432825633 0.6633848873430995 0.9878131927468252 0.6514123721700116 0.987817237892334 0.0291394634133787 0.9880274848269361 0.02285915969516272 0.626692663836089 -1.110223024625157e-016 0.0003378693365050367 1 0 0.9775642559842104 0.6263700982593052 0.6694209303991751 0.626474210439838 0.6632220961225744 0.000113786927294246 0.6574484152261005 0.6264782555858672 0.3367761661766766 0.0002240829969446523 -0.6985909326775115 77.09502510987542 0.2133882502233968 77.10467954959982 -0.6985981059779043 77.0760103806133 0.2133810769243185 77.08566482033768 -2.279068626955457 78.13906573577511 -0.6982107202626597 78.10287874064036 -2.279270405473298 77.60419837255087 -0.6983953434926864 77.61348600860136 -0.6984025167930588 77.59447127933929 -2.279465994658748 77.08573747382491 -2.279667774219288 76.55086735078714 -0.6987827292072089 76.58661764857432 0.2131964536946853 76.59627208829869 0.2433967081928898 76.57757714242234 0.2439754400072465 78.1116589797689 0.2137610833335195 78.09297237830887 0.2135764601035524 77.60357964626986 0.2135692868039634 77.58456491700773</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID10186\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10182\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10180\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10181\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10182\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10183\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 5 5 4 4 7 7 7 7 4 4 8 8 8 8 4 4 2 2 2 2 4 4 0 0 0 0 4 4 9 9 9 9 4 4 10 10 10 10 4 4 11 11 5 5 12 12 6 6 12 12 5 5 13 13 12 12 13 13 14 14 12 12 14 14 15 15 15 15 14 14 16 16 15 15 16 16 1 1 15 15 1 1 17 17 17 17 1 1 3 3 17 17 3 3 10 10 17 17 10 10 11 11 8 8 14 14 7 7 14 14 8 8 16 16</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"22\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10182\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10183\" />\r\n\t\t\t\t\t<p>18 18 19 19 20 20 21 21 20 20 19 19 22 22 23 23 24 24 23 23 25 25 24 24 25 25 26 26 24 24 24 24 26 26 27 27 26 26 18 18 27 27 18 18 20 20 27 27 27 27 20 20 28 28 20 20 29 29 28 28 29 29 30 30 28 28 31 31 28 28 30 30 22 22 32 32 23 23 23 23 32 32 33 33 33 33 32 32 34 34 34 34 32 32 35 35 35 35 32 32 19 19 19 19 32 32 21 21 21 21 32 32 30 30 31 31 30 30 32 32 25 25 34 34 26 26 35 35 26 26 34 34</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10187\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10193\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID10197\">5.138750548327153 42.31466564249718 0.009018953252052597 -68.00034963040889 54.22212343735305 0.01334708161994058 -28.38519385728887 35.6040594445692 5.913576091377763 -25.48528261804859 59.46923157030551 5.919279478816861 -71.30632803656044 27.01517219032371 0.006845063405307883 2.556065678757477 21.06014649560188 0.003939469357646885 7.72143541789319 63.56918478939201 0.01409843715009629 -64.68113668440128 81.52409093438428 0.02535726726637222 46.58555600242744 26.49419432622085 5.909886893542534 48.74770795269978 44.28788668376342 5.914139296200119 -31.28510509652733 11.73888731883312 5.907872703941393 76.41845939407176 15.10512080088074 0.001033875303619425 78.27785072706138 30.40720784763835 0.004690824882345623 80.13724206004372 45.70929489440255 0.008347774471985758 -74.61230644271109 -0.1917790567058546 0.0003430451824897318 -0.02661919081037922 -0.1943726512936337 -0.001140014539487311 44.42340405215145 8.700501968681238 5.905634490875855 -44.77803154194771 -0.1928164945416029 -0.0002501787030269043 -14.94375664118525 -0.1938539323739406 -0.000843402595819498 74.55906806109306 -0.1969662458800485 -0.002623074262373848 14.89051825956994 -0.1948913702096888 -0.001436626488612092 44.72479316033241 -0.1959288080454371 -0.002029850372309738</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID10197\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10194\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID10198\">0.01054378913339194 -0.001118497078171387 0.9999437871575565 -0.115094823405215 0.01270360741981429 0.9932732755812196 0.01956067732544006 -0.002570111911337859 0.999805368272912 0.01955128591189964 -0.003620829151351399 0.9998022988648544 -0.1148744953209637 0.01468615995097193 0.99327144680125 0.01044755295006997 -0.001908752597510058 0.9999436010600183 0.04519004286524537 0.0930228754227988 0.9946379264204196 -0.09174264110340201 0.1016764468271822 0.9905782089082981 0.02626539566023642 -0.003358823318310309 0.9996493621749217 0.02614965890634119 -0.0039648968602894 0.9996501762776663 0.01957063548441956 -0.002284940951017613 0.9998058657917478 0.153286049305286 -0.02013761707946447 0.9879766512761008 0.1535919817191742 -0.01762220740668187 0.9879772066994726 0.1802993405135907 0.08857073124692461 0.9796159315654015 -0.1137455417900902 -0.07737108864080208 0.9904926382186876 0.02146520145717806 -0.1016597172145618 0.9945876266183177 0.02628706621729974 -0.002741562082554947 0.9996506759798819 2.388637964867435e-006 -0.4437437174850398 0.8961537330094942 2.388637964867435e-006 -0.4437437174850398 0.8961537330094942 0.1537754069174271 -0.1296325147300939 0.9795654829321681 -2.671806159704193e-006 -0.5531895521208875 0.8330554119727891 -2.671806159704193e-006 -0.5531895521208875 0.8330554119727891</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID10198\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10196\">\r\n\t\t\t\t\t<float_array count=\"152\" id=\"ID10199\">239.276297506701 2365.30841422281 239.1603453829119 2365.509636645509 239.1904075440376 2365.374082209278 240.1003590202635 2365.696375963412 240.1253480508302 2365.759904219073 240.0995664628146 2365.83877701893 239.4560264021505 2365.481135768274 239.4172221420174 2365.614382628497 239.3472536087041 2365.565497195471 239.4753218190193 2365.267039194256 239.390596780339 2365.334248276528 239.4203230050763 2365.229352737021 239.5219944414862 2365.291230293105 239.4488641382549 2365.368133372265 239.4646658568533 2365.257309177888 238.8897155134429 2365.34662512344 238.8597981383335 2365.486050935224 238.7895651078946 2365.437023351633 239.1661877028481 2364.829751877508 239.1364614782038 2364.934647416687 239.022468248956 2365.011580350999 239.6001574380109 2365.203281840432 239.5720023292035 2365.341141889498 239.5121333025614 2365.312092158899 239.1573866275925 2365.162935322715 239.0438934179751 2365.367381170648 239.0738107929285 2365.227955359592 239.2058506620925 2365.002263835121 239.1760197217039 2365.14284895935 239.118691135924 2365.108927843454 239.4812791759688 2365.139273677387 239.3375597221239 2365.321102150818 239.3849580870317 2365.193859796659 239.5037465471804 2365.017890647137 239.4928209663223 2365.119449125618 239.4047968313215 2365.228259443529 240.2520383515982 2364.625274074253 240.1528851013876 2364.835544110934 240.181040210145 2364.697684062114 240.316463669492 2364.700577688486 240.3044699459112 2364.80418371656 240.2173104189587 2364.910847725852 239.8067164922597 2365.0509891762 239.7066109488835 2365.262482989485 239.7364418890855 2365.121897866136 239.348321997955 2365.491676415756 239.3009236332619 2365.618918769339 239.2309550999485 2365.570033336313 239.4203230048594 2365.229352735312 239.3240019166874 2365.28393885415 239.3686258107641 2365.187124630359 239.6554259460074 2365.030138044134 239.5564762292155 2365.240506842511 239.5835290065647 2365.104676955387 239.5486498736647 2365.034446938112 239.4928209650165 2365.119449122006 239.5037465459683 2365.017890642655 239.6642470379786 2365.1096199632 239.608832776473 2365.193001127938 239.6208265002701 2365.089395097996 239.1951069256845 2365.403612805022 239.2535562024423 2365.397590068556 239.1361893036388 2365.475946989645 239.2540245477303 2365.331278620398 239.2834833587532 2365.295111528087 239.3100932931651 2365.121207747316 239.283040515721 2365.257037634897 239.2210319505819 2365.233053813417 239.5037465458684 2365.017890638356 239.4406061267436 2365.100196996931 239.4588432181723 2365.001334342898 239.5093060775801 2365.145030908826 239.5785094222771 2365.075562752581 239.4894480798301 2365.18740881852 239.5490220730802 2365.060275089438 239.5887380685802 2364.97551927005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"76\" source=\"#ID10199\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10195\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10193\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10194\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10195\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10196\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 0 3 3 4 1 5 2 6 1 7 4 8 0 9 2 10 5 11 6 12 3 13 0 14 3 15 7 16 1 17 5 18 2 19 4 20 8 21 0 22 5 23 6 24 7 25 3 26 9 27 6 28 0 29 5 30 4 31 10 32 11 33 8 34 5 35 12 36 0 37 8 38 12 39 9 40 0 41 13 42 6 43 9 44 10 45 4 46 14 47 5 48 10 49 15 50 11 51 5 52 16 53 12 54 8 55 11 56 13 57 9 58 12 59 17 60 10 61 14 62 10 61 17 60 18 63 10 61 18 63 15 64 16 65 5 66 15 67 11 68 16 69 19 70 20 71 16 72 15 73 16 72 20 71 21 74 16 72 21 74 19 75</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10223\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10224\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10228\">103.3035785361624 43.69858784596096 283.6167005793359 126.6218988393114 75.1917442048485 337.3963466662808 102.1242990833543 43.53125935262983 336.7529589244568 127.8011782921296 75.35907269815679 284.2600883211399 127.8011782921296 75.35907269815679 284.2600883211399 103.3035785361624 43.69858784596096 283.6167005793359 126.6218988393114 75.1917442048485 337.3963466662808 102.1242990833543 43.53125935262983 336.7529589244568 70.26863200934099 19.29212715766936 335.9696401059518 71.44791146215357 19.45945565099783 282.8333817608236 70.26863200934099 19.29212715766936 335.9696401059518 71.44791146215357 19.45945565099783 282.8333817608236 -80.78340292227586 285.7376502679614 280.2933585032351 -98.33206297614447 152.9917185399989 279.4858693740953 -112.6390699945755 261.4985180743032 279.5100396847502 -95.04048838167682 177.2262731269985 279.6352366431565 -85.59016072344275 199.782489283841 279.9160030229123 -70.62510421395837 219.1231981553544 280.3090347487832 -43.74057959932748 300.9035730028402 281.1632265153748 -51.16516272341414 233.9303623939744 280.7875473583081 -28.5364991053093 243.1948982268316 281.3189310075995 -4.0350072190231 305.9627537074223 282.0603636538071 -4.281219389587704 246.2854428472899 281.8669727792931 19.94771919485629 242.9913807468218 282.3943245324153 35.62744507746402 300.5704175773977 282.9236315049184 42.49915452373284 233.5371968138977 282.8650481161549 72.54384671145454 285.0940434087478 283.6941997915419 61.83624354736548 218.56717805975 283.2470644965979 76.64119560485256 199.1015065233622 283.5143398883974 104.1984059188153 260.588320525167 284.3195555581187 85.90507767983036 176.4667355513822 283.6486599155633 88.99657151814881 152.2053873798372 283.6408708901217 103.3035785361624 43.69858784596096 283.6167005793359 127.8011782921296 75.35907269815679 284.2600883211399 128.4339168012016 228.7232734435438 284.7570818428067 143.2712397891571 112.2833004822458 284.7196991747187 143.5987693430568 191.6704524630029 284.9769619521394 148.6595039047429 151.954946100697 284.9642114203016 -152.6067312471514 192.9138054375968 278.4070410893837 -152.9342608010447 113.5266534568337 278.1497783119175 -157.9949953627354 153.2421598191326 278.1625288438099 -137.769408259205 76.47383247629638 278.3696584212885 -137.1366697492279 229.838033223805 278.8666519430499 -113.5338973768096 44.60878539466935 278.8071847060546 -81.87933816945179 20.10306251109432 279.4325404726787 -95.24056913781965 128.7303703684503 279.4780803485555 -85.97668706285413 106.0955993964729 279.6124003757141 -71.17173500535887 86.62992786008114 279.8796757675318 -44.96293653546377 4.626688342444851 280.2031087591931 -51.83464598172236 71.65990910594235 280.2616921478912 -29.28321065285491 62.20572517300757 280.732415731758 -5.300484238963918 -0.7656477875829211 281.066376610399 -5.054272068407045 58.91166307255131 281.2597674848039 34.40508814133727 4.293532916996213 281.9635137487821 19.20100764731615 62.00220769300353 281.8078092565138 41.82967126329254 71.26674352498412 282.3391929057416 71.44791146215357 19.45945565099783 282.8333817608236 61.28961275554866 86.07390776490786 282.8177055152737 76.25466926633908 105.4146166381146 283.2107372412193 85.7049969236823 127.9708327928373 283.491503620995 88.99657151814881 152.2053873798372 283.6408708901217 85.7049969236823 127.9708327928373 283.491503620995 103.3035785361624 43.69858784596096 283.6167005793359 76.25466926633908 105.4146166381146 283.2107372412193 71.44791146215357 19.45945565099783 282.8333817608236 61.28961275554866 86.07390776490786 282.8177055152737 41.82967126329254 71.26674352498412 282.3391929057416 34.40508814133727 4.293532916996213 281.9635137487821 19.20100764731615 62.00220769300353 281.8078092565138 -5.054272068407045 58.91166307255131 281.2597674848039 -5.300484238963918 -0.7656477875829211 281.066376610399 -29.28321065285491 62.20572517300757 280.732415731758 -44.96293653546377 4.626688342444851 280.2031087591931 -51.83464598172236 71.65990910594235 280.2616921478912 -71.17173500535887 86.62992786008114 279.8796757675318 -81.87933816945179 20.10306251109432 279.4325404726787 -85.97668706285413 106.0955993964729 279.6124003757141 -95.24056913781965 128.7303703684503 279.4780803485555 -98.33206297614447 152.9917185399989 279.4858693740953 -112.6390699945755 261.4985180743032 279.5100396847502 -113.5338973768096 44.60878539466935 278.8071847060546 -137.1366697492279 229.838033223805 278.8666519430499 -137.769408259205 76.47383247629638 278.3696584212885 -152.6067312471514 192.9138054375968 278.4070410893837 -152.9342608010447 113.5266534568337 278.1497783119175 -157.9949953627354 153.2421598191326 278.1625288438099 148.6595039047429 151.954946100697 284.9642114203016 143.5987693430568 191.6704524630029 284.9769619521394 143.2712397891571 112.2833004822458 284.7196991747187 128.4339168012016 228.7232734435438 284.7570818428067 127.8011782921296 75.35907269815679 284.2600883211399 104.1984059188153 260.588320525167 284.3195555581187 85.90507767983036 176.4667355513822 283.6486599155633 76.64119560485256 199.1015065233622 283.5143398883974 72.54384671145454 285.0940434087478 283.6941997915419 61.83624354736548 218.56717805975 283.2470644965979 42.49915452373284 233.5371968138977 282.8650481161549 35.62744507746402 300.5704175773977 282.9236315049184 19.94771919485629 242.9913807468218 282.3943245324153 -4.0350072190231 305.9627537074223 282.0603636538071 -4.281219389587704 246.2854428472899 281.8669727792931 -28.5364991053093 243.1948982268316 281.3189310075995 -43.74057959932748 300.9035730028402 281.1632265153748 -51.16516272341414 233.9303623939744 280.7875473583081 -70.62510421395837 219.1231981553544 280.3090347487832 -80.78340292227586 285.7376502679614 280.2933585032351 -85.59016072344275 199.782489283841 279.9160030229123 -95.04048838167682 177.2262731269985 279.6352366431565 142.0919603363461 112.1159719889173 337.8559575198506 143.2712397891571 112.2833004822458 284.7196991747187 143.2712397891571 112.2833004822458 284.7196991747187 142.0919603363461 112.1159719889173 337.8559575198506 -154.1135402538623 113.3593249635062 331.2860366570421 -153.7860106999708 192.7464769442713 331.5432994344865 -159.1742748155496 153.0748313258207 331.2987871888854 -153.2702671088605 153.0500486478098 331.4297397315058 -148.4044008169926 114.8638246289792 331.4174801705231 -138.948687712011 76.3065039829709 331.5059167664203 -133.8234849628011 79.23775682601789 331.628893592826 -114.7131768296317 44.44145690134923 331.9434430511847 -110.52118486563 48.59970288483127 332.0495725228029 -83.05861762226505 19.93573401776351 332.5687988177251 -80.0855137682338 25.03759554975117 332.6508483866746 -46.14221598827339 4.459359849112857 333.3393671042741 -44.59061235857712 10.15715349742524 333.3917452277874 -6.479763691783319 -0.9329762809128823 334.2026349554999 -6.455399509625067 4.972454262625945 334.2217721512516 33.2258086885272 4.12620442367124 335.0997720938813 31.7212730443764 9.836826530085446 335.0843641934316 67.33772815667726 24.41877136765488 335.9207371324155 70.26863200934099 19.29212715766936 335.9696401059518 97.96676327618707 47.72455333547291 336.6738935345074 102.1242990833543 43.53125935262983 336.7529589244568 121.5210602722611 78.16592190534081 337.2925070356396 126.6218988393114 75.1917442048485 337.3963466662808 136.3954327282004 113.6683481118415 337.7344201478663 142.0919603363461 112.1159719889173 337.8559575198506 141.5762167452378 151.8124002853885 337.9695172229458 -148.089483091821 191.1941008213437 331.664836806629 -138.3159492020498 229.6707047304832 332.0029102881872 -133.2151106349913 226.6965270299939 332.1067499187448 -113.8183494473924 261.3311895809837 332.6462980298493 -109.6608136402331 257.1378955981482 332.7253634198969 -81.96268237509935 285.5703217746458 333.4296168483706 -79.03177852243607 280.4436775646539 333.4785198220452 -44.91985905214074 300.7362445095247 334.2994848605649 -43.41532340800427 295.0256224031079 334.3148927609655 -5.214286671844093 305.795425214108 335.1966219989317 -5.238650853998479 299.8899946705737 335.1774848032364 32.89656199495153 294.7052954357699 336.0075117265442 34.44816562465712 300.4030890840771 336.059889850003 68.39146340461571 279.8248533834397 336.7484085677461 71.36456725864377 284.926714915433 336.8304581365665 98.82713450201914 256.2627460483495 337.3496844315105 103.0191264660127 260.4209920318408 337.4558139032051 122.129434599183 225.6246921071737 337.770363361602 127.2546373483958 228.555944950223 337.893340187904 136.7103504533807 189.9986243042148 337.9817767837667 142.4194898902454 191.5031239696788 338.1132202972603 147.4802244519356 151.787617607377 338.1004697653898 147.4802244519356 151.787617607377 338.1004697653898 142.0919603363461 112.1159719889173 337.8559575198506 142.4194898902454 191.5031239696788 338.1132202972603 141.5762167452378 151.8124002853885 337.9695172229458 136.7103504533807 189.9986243042148 337.9817767837667 127.2546373483958 228.555944950223 337.893340187904 122.129434599183 225.6246921071737 337.770363361602 103.0191264660127 260.4209920318408 337.4558139032051 98.82713450201914 256.2627460483495 337.3496844315105 71.36456725864377 284.926714915433 336.8304581365665 68.39146340461571 279.8248533834397 336.7484085677461 34.44816562465712 300.4030890840771 336.059889850003 32.89656199495153 294.7052954357699 336.0075117265442 -5.214286671844093 305.795425214108 335.1966219989317 -5.238650853998479 299.8899946705737 335.1774848032364 -43.41532340800427 295.0256224031079 334.3148927609655 -44.91985905214074 300.7362445095247 334.2994848605649 -79.03177852243607 280.4436775646539 333.4785198220452 -81.96268237509935 285.5703217746458 333.4296168483706 -109.6608136402331 257.1378955981482 332.7253634198969 -113.8183494473924 261.3311895809837 332.6462980298493 -133.2151106349913 226.6965270299939 332.1067499187448 -138.3159492020498 229.6707047304832 332.0029102881872 -148.089483091821 191.1941008213437 331.664836806629 -153.2702671088605 153.0500486478098 331.4297397315058 -153.7860106999708 192.7464769442713 331.5432994344865 136.3954327282004 113.6683481118415 337.7344201478663 126.6218988393114 75.1917442048485 337.3963466662808 121.5210602722611 78.16592190534081 337.2925070356396 102.1242990833543 43.53125935262983 336.7529589244568 97.96676327618707 47.72455333547291 336.6738935345074 70.26863200934099 19.29212715766936 335.9696401059518 67.33772815667726 24.41877136765488 335.9207371324155 33.2258086885272 4.12620442367124 335.0997720938813 31.7212730443764 9.836826530085446 335.0843641934316 -6.455399509625067 4.972454262625945 334.2217721512516 -6.479763691783319 -0.9329762809128823 334.2026349554999 -44.59061235857712 10.15715349742524 333.3917452277874 -46.14221598827339 4.459359849112857 333.3393671042741 -80.0855137682338 25.03759554975117 332.6508483866746 -83.05861762226505 19.93573401776351 332.5687988177251 -110.52118486563 48.59970288483127 332.0495725228029 -114.7131768296317 44.44145690134923 331.9434430511847 -133.8234849628011 79.23775682601789 331.628893592826 -138.948687712011 76.3065039829709 331.5059167664203 -148.4044008169926 114.8638246289792 331.4174801705231 -154.1135402538623 113.3593249635062 331.2860366570421 -159.1742748155496 153.0748313258207 331.2987871888854 33.2258086885272 4.12620442367124 335.0997720938813 34.40508814133727 4.293532916996213 281.9635137487821 33.2258086885272 4.12620442367124 335.0997720938813 34.40508814133727 4.293532916996213 281.9635137487821 -153.7860106999708 192.7464769442713 331.5432994344865 -157.9949953627354 153.2421598191326 278.1625288438099 -159.1742748155496 153.0748313258207 331.2987871888854 -152.6067312471514 192.9138054375968 278.4070410893837 -152.6067312471514 192.9138054375968 278.4070410893837 -153.7860106999708 192.7464769442713 331.5432994344865 -157.9949953627354 153.2421598191326 278.1625288438099 -159.1742748155496 153.0748313258207 331.2987871888854 -138.3159492020498 229.6707047304832 332.0029102881872 -137.1366697492279 229.838033223805 278.8666519430499 -137.1366697492279 229.838033223805 278.8666519430499 -138.3159492020498 229.6707047304832 332.0029102881872 -113.8183494473924 261.3311895809837 332.6462980298493 -112.6390699945755 261.4985180743032 279.5100396847502 -112.6390699945755 261.4985180743032 279.5100396847502 -113.8183494473924 261.3311895809837 332.6462980298493 -80.78340292227586 285.7376502679614 280.2933585032351 -81.96268237509935 285.5703217746458 333.4296168483706 -81.96268237509935 285.5703217746458 333.4296168483706 -80.78340292227586 285.7376502679614 280.2933585032351 -43.74057959932748 300.9035730028402 281.1632265153748 -44.91985905214074 300.7362445095247 334.2994848605649 -44.91985905214074 300.7362445095247 334.2994848605649 -43.74057959932748 300.9035730028402 281.1632265153748 -4.0350072190231 305.9627537074223 282.0603636538071 -5.214286671844093 305.795425214108 335.1966219989317 -5.214286671844093 305.795425214108 335.1966219989317 -4.0350072190231 305.9627537074223 282.0603636538071 35.62744507746402 300.5704175773977 282.9236315049184 34.44816562465712 300.4030890840771 336.059889850003 34.44816562465712 300.4030890840771 336.059889850003 35.62744507746402 300.5704175773977 282.9236315049184 72.54384671145454 285.0940434087478 283.6941997915419 71.36456725864377 284.926714915433 336.8304581365665 71.36456725864377 284.926714915433 336.8304581365665 72.54384671145454 285.0940434087478 283.6941997915419 104.1984059188153 260.588320525167 284.3195555581187 103.0191264660127 260.4209920318408 337.4558139032051 103.0191264660127 260.4209920318408 337.4558139032051 104.1984059188153 260.588320525167 284.3195555581187 128.4339168012016 228.7232734435438 284.7570818428067 127.2546373483958 228.555944950223 337.893340187904 128.4339168012016 228.7232734435438 284.7570818428067 127.2546373483958 228.555944950223 337.893340187904 143.5987693430568 191.6704524630029 284.9769619521394 142.4194898902454 191.5031239696788 338.1132202972603 143.5987693430568 191.6704524630029 284.9769619521394 142.4194898902454 191.5031239696788 338.1132202972603 148.6595039047429 151.954946100697 284.9642114203016 147.4802244519356 151.787617607377 338.1004697653898 148.6595039047429 151.954946100697 284.9642114203016 147.4802244519356 151.787617607377 338.1004697653898 -6.479763691783319 -0.9329762809128823 334.2026349554999 -5.300484238963918 -0.7656477875829211 281.066376610399 -6.479763691783319 -0.9329762809128823 334.2026349554999 -5.300484238963918 -0.7656477875829211 281.066376610399 -46.14221598827339 4.459359849112857 333.3393671042741 -44.96293653546377 4.626688342444851 280.2031087591931 -46.14221598827339 4.459359849112857 333.3393671042741 -44.96293653546377 4.626688342444851 280.2031087591931 -83.05861762226505 19.93573401776351 332.5687988177251 -81.87933816945179 20.10306251109432 279.4325404726787 -83.05861762226505 19.93573401776351 332.5687988177251 -81.87933816945179 20.10306251109432 279.4325404726787 -114.7131768296317 44.44145690134923 331.9434430511847 -113.5338973768096 44.60878539466935 278.8071847060546 -114.7131768296317 44.44145690134923 331.9434430511847 -113.5338973768096 44.60878539466935 278.8071847060546 -138.948687712011 76.3065039829709 331.5059167664203 -137.769408259205 76.47383247629638 278.3696584212885 -137.769408259205 76.47383247629638 278.3696584212885 -138.948687712011 76.3065039829709 331.5059167664203 -154.1135402538623 113.3593249635062 331.2860366570421 -152.9342608010447 113.5266534568337 278.1497783119175 -152.9342608010447 113.5266534568337 278.1497783119175 -154.1135402538623 113.3593249635062 331.2860366570421</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10228\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10225\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10229\">0.7040093966786063 -0.7100644477595512 0.01338840603463432 0.8637419973543529 -0.503627423950087 0.01758351079029667 0.7040093966786761 -0.7100644477594822 0.01338840603463609 0.8637419973544201 -0.5036274239499717 0.01758351079029853 -0.8637419973544201 0.5036274239499717 -0.01758351079029853 -0.7040093966786063 0.7100644477595512 -0.01338840603463432 -0.8637419973543529 0.503627423950087 -0.01758351079029667 -0.7040093966786761 0.7100644477594822 -0.01338840603463609 0.4962997190497524 -0.8681117528911889 0.008280903533082038 0.4962997190498057 -0.8681117528911583 0.00828090353308332 -0.4962997190497524 0.8681117528911889 -0.008280903533082038 -0.4962997190498057 0.8681117528911583 -0.00828090353308332 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 0.02218792451960693 0.003148254615075172 -0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 -0.02218792451960693 -0.003148254615075172 0.9997488607137248 0.964612008311532 -0.2628690234821532 0.0205803283436364 0.9646120083115755 -0.2628690234819937 0.02058032834363787 -0.9646120083115755 0.2628690234819937 -0.02058032834363787 -0.964612008311532 0.2628690234821532 -0.0205803283436364 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 -0.02218792451955783 -0.003148254615058077 0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.02218792451955783 0.003148254615058077 -0.999748860713726 0.2547680357417143 -0.9669986766858019 0.002609071140615357 0.2547680357417667 -0.9669986766857879 0.002609071140616565 -0.2547680357417143 0.9669986766858019 -0.002609071140615357 -0.2547680357417667 0.9669986766857879 -0.002609071140616565 -0.9646120083115558 0.2628690234820595 -0.02058032834373094 -0.9997453049990281 0.004196533475224393 -0.0221746305311174 -0.9997453049990277 0.004196533475345383 -0.02217463053111701 -0.9646120083115725 0.2628690234819975 -0.02058032834373151 0.9646120083115725 -0.2628690234819975 0.02058032834373151 0.9646120083115558 -0.2628690234820595 0.02058032834373094 0.9997453049990281 -0.004196533475224393 0.0221746305311174 0.9997453049990277 -0.004196533475345383 0.02217463053111701 -0.8637419973544043 0.503627423949997 -0.01758351079034118 -0.8637419973542992 0.5036274239501777 -0.01758351079033827 0.8637419973542992 -0.5036274239501777 0.01758351079033827 0.8637419973544043 -0.503627423949997 0.01758351079034118 -0.7040093966786504 0.7100644477595061 -0.01338840603470529 -0.7040093966786319 0.7100644477595245 -0.01338840603470482 0.7040093966786319 -0.7100644477595245 0.01338840603470482 0.7040093966786504 -0.7100644477595061 0.01338840603470529 -0.496299719049829 0.868111752891144 -0.008280903533191263 -0.4962997190497135 0.8681117528912101 -0.008280903533188489 0.4962997190497135 -0.8681117528912101 0.008280903533188489 0.496299719049829 -0.868111752891144 0.008280903533191263 -0.2547680357418017 0.9669986766857784 -0.002609071140714316 -0.254768035741692 0.9669986766858073 -0.00260907114071179 0.254768035741692 -0.9669986766858073 0.00260907114071179 0.2547680357418017 -0.9669986766857784 0.002609071140714316 0.004125668177992698 0.9999862387051481 0.003240565138296947 0.004125668177861733 0.9999862387051487 0.003240565138294042 -0.004125668177861733 -0.9999862387051487 -0.003240565138294042 -0.004125668177992698 -0.9999862387051481 -0.003240565138296947 0.2627382146293938 0.9648263911121459 0.008869362258410956 0.2627382146293047 0.9648263911121703 0.008869362258409057 -0.2627382146293047 -0.9648263911121703 -0.008869362258409057 -0.2627382146293938 -0.9648263911121459 -0.008869362258410956 0.5034455859492486 0.8639152194158436 0.01389372699790037 0.5034455859492674 0.8639152194158327 0.01389372699790075 -0.5034455859492674 -0.8639152194158327 -0.01389372699790075 -0.5034455859492486 -0.8639152194158436 -0.01389372699790037 0.7098439725698112 0.704129653203765 0.01797125720295837 0.7098439725698575 0.7041296532037183 0.01797125720295925 -0.7098439725698575 -0.7041296532037183 -0.01797125720295925 -0.7098439725698112 -0.704129653203765 -0.01797125720295837 0.8678676655324058 0.4963588147550654 0.02082407592856865 0.8678676655323621 0.496358814755142 0.02082407592856791 -0.8678676655324058 -0.4963588147550654 -0.02082407592856865 -0.8678676655323621 -0.496358814755142 -0.02082407592856791 0.9667476113080507 0.2547619433525966 0.02225776829303611 0.9667476113080253 0.2547619433526926 0.02225776829303585 -0.9667476113080507 -0.2547619433525966 -0.02225776829303611 -0.9667476113080253 -0.2547619433526926 -0.02225776829303585 0.9997453049990303 -0.00419653347533469 0.02217463053099967 0.9997453049990303 -0.004196533475322767 0.02217463053099971 -0.9997453049990303 0.00419653347533469 -0.02217463053099967 -0.9997453049990303 0.004196533475322767 -0.02217463053099971 -0.004125668177928906 -0.999986238705148 -0.003240565138428907 -0.00412566817802574 -0.9999862387051476 -0.003240565138431054 0.004125668177928906 0.999986238705148 0.003240565138428907 0.00412566817802574 0.9999862387051476 0.003240565138431054 -0.2627382146293418 -0.9648263911121587 -0.00886936225856385 -0.2627382146293802 -0.9648263911121483 -0.008869362258564667 0.2627382146293418 0.9648263911121587 0.00886936225856385 0.2627382146293802 0.9648263911121483 0.008869362258564667 -0.5034455859493346 -0.8639152194157911 -0.01389372699806192 -0.5034455859492126 -0.8639152194158623 -0.01389372699805943 0.5034455859493346 0.8639152194157911 0.01389372699806192 0.5034455859492126 0.8639152194158623 0.01389372699805943 -0.7098439725697786 -0.7041296532037944 -0.0179712572030935 -0.7098439725698548 -0.7041296532037176 -0.01797125720309495 0.7098439725697786 0.7041296532037944 0.0179712572030935 0.7098439725698548 0.7041296532037176 0.01797125720309495 -0.8678676655323397 -0.4963588147551766 -0.02082407592867713 -0.8678676655324084 -0.4963588147550563 -0.02082407592867827 0.8678676655324084 0.4963588147550563 0.02082407592867827 0.8678676655323397 0.4963588147551766 0.02082407592867713 -0.9667476113080558 -0.2547619433525671 -0.02225776829315653 -0.9667476113080405 -0.2547619433526244 -0.02225776829315637 0.9667476113080405 0.2547619433526244 0.02225776829315637 0.9667476113080558 0.2547619433525671 0.02225776829315653</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10229\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10227\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID10230\">-16.0896213642979 195.2687716695469 -16.83104064672491 195.268771680847 -16.08962134929616 196.253023638053 -16.83104063172339 196.2530236493527 -21.69232473063958 196.2530234894269 -21.69232473502294 195.2687715209211 -22.43374401306672 196.2530234927284 -22.43374401745004 195.2687715242225 3.053864536346832 27.04469899665282 3.506513433004875 27.02911497319479 4.989776100140222 26.44463980559308 3.94777213455687 27.13121611764934 5.531767156750951 26.9505530856211 4.347569589821774 27.344044405789 4.678660262839857 27.65309594147427 5.924350323863632 27.57950539631885 4.918480871354109 28.03730937320998 5.050688037289456 28.47050119066307 6.140771707486696 28.2886346772023 5.066272060747634 28.92315008732101 6.166282547957137 29.02961493963457 4.96417091628343 29.3644087889145 4.751342628162383 29.7642062441444 5.999144323655171 29.7519496032586 4.442291092504238 30.09529691713338 4.058077660732371 30.3351175256703 3.624885843279358 30.46732469160574 1.688974279479474 31.0673838826745 5.650747228358386 30.40641275446286 2.343437430683743 31.41578097797145 5.144833948357526 30.94840381104467 3.065772094307766 31.58291920227342 4.515881637623449 31.34098697817982 3.806752356740089 31.55740836180299 2.871998022886221 25.95461532645554 2.162868742002728 26.17103671007867 3.612978285318315 25.92910448598518 1.533916431268628 26.56361987721409 4.335312948900848 26.09624271027738 1.028003151267801 27.1056109337957 2.620672718893877 27.17690616258818 2.236459287122004 27.41672677112533 0.6796060559709121 27.76007408500001 1.927407751463901 27.74781744411414 1.71457946334269 28.14761489934403 0.5124678316689595 28.48240874862414 1.612478318878694 28.5888736009376 0.5379786721394071 29.22338901105612 1.628062342336653 29.04152249759554 1.760269508272103 29.47471431504857 0.7544000557625417 29.93251829193964 2.00009011680901 29.85892774682042 2.33118078979795 30.16797928247852 1.146983222897902 30.56147060267359 2.730978245027859 30.3808075705996 3.172236946621325 30.48290871506377 -9.365173637613395 195.2687716583575 -10.10659291995803 195.2687716768882 -9.365173613016022 196.2530236268635 -10.10659289536036 196.2530236453944 -2.87199802289126 25.95461532646429 -3.612978285323513 25.92910448599396 -2.162868742007851 26.17103671008747 -2.889994813429408 26.06248569307799 -2.208171212060777 26.27057357094881 -1.533916431273679 26.56361987722281 -1.6034372923733 26.64803995975658 -1.028003151272942 27.10561093380435 -1.117004671623712 27.16916114889661 -0.6796060559758788 27.76007408500887 -0.7820229290480141 27.79842359052279 -0.512467831674015 28.48240874863288 -0.6213205168194254 28.49294408914344 -0.5379786721443862 29.22338901106512 -0.6458490387578957 29.20539222052688 -0.8539369166288573 29.88721582189562 -0.7544000557675119 29.93251829194847 -1.231403305436675 30.49194974158299 -1.146983222902912 30.56147060268263 -1.752524494576878 30.97838236233265 -1.688974279484537 31.06738388268342 -2.38178693620283 31.31336410490843 -2.343437430688859 31.41578097798044 -3.076307434823491 31.47406651713688 -3.788755566206849 31.44953799519828 -3.065772094312944 31.58291920228237 -3.602442944812995 26.0379571711393 -4.335312948905695 26.09624271028635 -4.296963443391654 26.19865958335826 -4.989776100145457 26.4446398056018 -4.92622588505299 26.53364132595269 -5.53176715675615 26.95055308562991 -5.447347074222487 27.02007394672949 -5.924350323868763 27.57950539632764 -5.824813463007515 27.62480786638076 -6.032901340878336 28.30663146774941 -6.140771707491947 28.28863467721124 -6.057429862816916 29.01907959913293 -6.166282547962397 29.02961493964333 -5.89672745058837 29.71360009775339 -5.999144323660427 29.75194960326744 -5.561745708012847 30.34286253937945 -5.650747228363464 30.40641275447186 -5.075313087263069 30.8639837285196 -5.144833948362653 30.94840381105336 -4.470579167575548 31.24145011732732 -4.515881637628652 31.34098697818872 -3.806752356745006 31.5574083618119 -25.79146878042907 196.2530232216126 -25.79146877389549 195.2687712531067 -26.53288806277353 196.2530232166917 -26.53288805624001 195.2687712481863 1.977241554740973 195.2687714896366 1.977241522223991 196.253023458142 2.718660837128327 195.2687715141302 2.718660804611086 196.2530234826351 9.365173637614287 195.2687716583614 9.365173613016875 196.2530236268675 10.10659292000155 195.268771676891 10.10659289540419 196.2530236453964 16.08962136434112 195.2687716695455 16.08962134933954 196.2530236380509 16.83104064672834 195.2687716808468 16.83104063172684 196.2530236493529 21.69232473063595 196.2530234894298 22.43374401302318 196.2530234927303 21.69232473501925 195.2687715209237 22.43374401740653 195.2687715242249 25.79146878038627 196.2530232216147 26.5328880627737 196.2530232166923 25.79146877385279 195.2687712531076 26.53288805624003 195.2687712481863 28.10770360574751 196.253022907195 28.84912288813466 196.2530228943852 28.10770358874216 195.2687709386892 28.84912287112948 195.2687709258781 28.48318163113285 196.2530226312057 29.22460091352012 196.2530226113828 28.48318160481492 195.2687706627005 29.22460088720193 195.2687706428769 26.89231464961913 196.2530224682951 27.63373393200635 196.253022442806 26.89231461578179 195.2687704997911 27.63373389816913 195.2687704743009 23.44351761696438 196.253022462686 24.18493689935188 196.2530224332697 23.44351757791396 195.2687704941808 24.18493686030119 195.2687704647657 19.11323959232304 195.2687706164252 18.37182030993579 195.2687706477643 19.11323963392556 196.2530225849303 18.37182035153841 196.2530226162697 12.76426988166947 195.2687708884604 12.02285059928208 195.2687709195839 12.76426992298906 196.2530228569657 12.02285064060165 196.2530228880897 5.570699521955021 195.2687712079886 4.829280239567725 195.2687712367805 5.570699560175658 196.2530231764944 4.829280277788427 196.2530232052856 -1.977241554745201 195.2687714896318 -2.718660837132324 195.2687715141252 -1.977241522228087 196.2530234581369 -2.718660804615371 196.2530234826312 -28.10770360574735 196.2530229071941 -28.10770358874216 195.2687709386887 -28.84912288813476 196.253022894384 -28.8491228711294 195.2687709258786 -28.48318163113329 196.2530226312064 -28.48318160481516 195.2687706627009 -29.22460091352041 196.2530226113806 -29.22460088720245 195.2687706428755 -26.89231464961893 196.2530224682966 -26.89231461578175 195.2687704997915 -27.63373393200627 196.2530224428077 -27.63373389816901 195.2687704743033 -23.44351761696452 196.2530224626887 -23.44351757791399 195.2687704941842 -24.18493689935188 196.2530224332742 -24.18493686030111 195.2687704647682 -19.11323959232426 195.2687706164262 -19.11323963392681 196.2530225849322 -18.37182030993682 195.2687706477668 -18.37182035153964 196.2530226162728 -12.76426988166752 195.2687708884626 -12.76426992298707 196.2530228569685 -12.02285059928029 195.2687709195869 -12.0228506405998 196.2530228880929 -5.570699521952559 195.2687712079938 -5.570699560173425 196.2530231764987 -4.82928023956538 195.2687712367846 -4.829280277785967 196.2530232052905</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10230\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10226\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10224\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10225\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10226\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 0 8 9 8 0 2 12 13 14 13 12 15 15 12 16 16 12 17 17 12 18 17 18 19 19 18 20 20 18 21 20 21 22 22 21 23 23 21 24 23 24 25 25 24 26 25 26 27 27 26 28 28 26 29 28 29 30 30 29 31 31 29 32 32 29 33 33 29 34 33 34 35 35 34 36 35 36 37 38 39 40 39 38 41 41 38 42 41 42 43 43 42 14 43 14 44 44 14 13 44 13 45 44 45 46 44 46 47 44 47 48 48 47 49 48 49 50 48 50 51 51 50 52 51 52 53 53 52 54 53 54 55 53 55 56 56 55 57 56 57 58 56 58 32 32 58 59 32 59 31 3 108 1 108 3 109 112 113 114 113 112 115 115 112 116 116 112 117 116 117 118 118 117 119 118 119 120 120 119 121 120 121 122 122 121 123 122 123 124 124 123 125 124 125 126 126 125 127 126 127 128 128 127 129 129 127 130 129 130 131 131 130 132 131 132 133 133 132 134 133 134 135 135 134 136 135 136 137 113 138 139 138 113 115 139 138 140 139 140 141 141 140 142 141 142 143 143 142 144 143 144 145 145 144 146 145 146 147 147 146 148 147 148 149 147 149 150 150 149 151 150 151 152 152 151 153 152 153 154 154 153 155 154 155 156 156 155 157 156 157 158 158 157 137 158 137 136 158 136 159 9 208 209 208 9 8 212 213 214 213 212 215 220 215 212 215 220 221 224 221 220 221 224 225 224 228 225 228 224 229 229 232 228 232 229 233 233 236 232 236 233 237 237 240 236 240 237 241 241 244 240 244 241 245 245 248 244 248 245 249 252 249 253 249 252 248 256 253 257 253 256 252 260 257 261 257 260 256 109 261 108 261 109 260 209 264 265 264 209 208 265 268 269 268 265 264 269 272 273 272 269 268 273 276 277 276 273 272 280 277 276 277 280 281 284 281 280 281 284 285 214 285 284 285 214 213</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10226\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10227\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 7 4 5 5 10 6 11 7 10 6 5 5 60 8 61 9 62 10 61 9 63 11 62 10 62 10 63 11 64 12 63 11 65 13 64 12 65 13 66 14 64 12 64 12 66 14 67 15 66 14 68 16 67 15 68 16 69 17 67 15 67 15 69 17 70 18 69 17 71 19 70 18 70 18 71 19 72 20 71 19 73 21 72 20 73 21 74 22 72 20 72 20 74 22 75 23 74 22 76 24 75 23 76 24 77 25 75 23 77 25 78 26 75 23 78 26 79 27 75 23 75 23 79 27 80 28 79 27 81 29 80 28 80 28 81 29 82 30 81 29 83 31 82 30 82 30 83 31 84 32 85 33 84 32 83 31 86 34 87 35 88 36 87 35 89 37 88 36 88 36 89 37 90 38 89 37 91 39 90 38 90 38 91 39 62 10 62 10 91 39 60 8 60 8 91 39 92 40 92 40 91 39 93 41 91 39 94 42 93 41 93 41 94 42 95 43 95 43 94 42 96 44 94 42 97 45 96 44 96 44 97 45 98 46 97 45 99 47 98 46 98 46 99 47 100 48 100 48 99 47 101 49 99 47 102 50 101 49 101 49 102 50 103 51 103 51 102 50 104 52 102 50 105 53 104 52 104 52 105 53 106 54 106 54 105 53 107 55 107 55 105 53 78 26 79 27 78 26 105 53 110 56 4 57 111 58 6 59 111 58 4 57 160 60 161 61 162 62 161 61 163 63 162 62 163 63 164 64 162 62 162 62 164 64 165 65 164 64 166 66 165 65 165 65 166 66 167 67 166 66 168 68 167 67 167 67 168 68 169 69 168 68 170 70 169 69 169 69 170 70 171 71 170 70 172 72 171 71 171 71 172 72 173 73 172 72 174 74 173 73 174 74 175 75 173 73 173 73 175 75 176 76 175 75 177 77 176 76 176 76 177 77 178 78 177 77 179 79 178 78 178 78 179 79 180 80 179 79 181 81 180 80 180 80 181 81 182 82 181 81 183 83 182 82 184 84 185 85 183 83 182 82 183 83 185 85 163 63 161 61 186 86 161 61 187 87 186 86 186 86 187 87 188 88 187 87 189 89 188 88 188 88 189 89 190 90 189 89 191 91 190 90 190 90 191 91 192 92 191 91 193 93 192 92 192 92 193 93 194 94 194 94 193 93 195 95 193 93 196 96 195 95 195 95 196 96 197 97 196 96 198 98 197 97 197 97 198 98 199 99 198 98 200 100 199 99 199 99 200 100 201 101 200 100 202 102 201 101 201 101 202 102 203 103 202 102 204 104 203 103 203 103 204 104 205 105 204 104 206 106 205 105 205 105 206 106 184 84 184 84 206 106 185 85 207 107 185 85 206 106 10 108 11 109 210 110 211 111 210 110 11 109 216 112 217 113 218 114 219 115 218 114 217 113 222 116 223 117 216 118 217 119 216 118 223 117 226 120 227 121 222 122 223 123 222 122 227 121 230 124 227 125 231 126 226 127 231 126 227 125 234 128 230 129 235 130 231 131 235 130 230 129 238 132 234 133 239 134 235 135 239 134 234 133 242 136 238 137 243 138 239 139 243 138 238 137 246 140 242 141 247 142 243 143 247 142 242 141 250 144 246 145 251 146 247 147 251 146 246 145 251 148 254 149 250 150 255 151 250 150 254 149 254 152 258 153 255 154 259 155 255 154 258 153 258 156 262 157 259 158 263 159 259 158 262 157 262 160 110 161 263 162 111 163 263 162 110 161 210 164 211 165 266 166 267 167 266 166 211 165 266 168 267 169 270 170 271 171 270 170 267 169 270 172 271 173 274 174 275 175 274 174 271 173 274 176 275 177 278 178 279 179 278 178 275 177 282 180 283 181 279 182 278 183 279 182 283 181 286 184 287 185 282 186 283 187 282 186 287 185 218 188 219 189 286 190 287 191 286 190 219 189</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10231\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10234\">\r\n\t\t\t\t\t<float_array count=\"432\" id=\"ID10238\">49.69147504880743 95.68311766661803 364.433504117178 32.46793439739122 83.96759830053105 369.765280986916 33.1177947049016 83.07212358887233 364.0259635789589 48.82302712592355 96.4122679973483 370.1674465382712 48.82302712592355 96.4122679973483 370.1674465382712 49.69147504880743 95.68311766661803 364.433504117178 32.46793439739122 83.96759830053105 369.765280986916 33.1177947049016 83.07212358887233 364.0259635789589 13.44969161923768 76.18122634901627 369.3186800111635 13.84537101764681 75.1816859187437 363.5733937318673 13.44969161923768 76.18122634901627 369.3186800111635 13.84537101764681 75.1816859187437 363.5733937318673 62.43694311903164 112.1552497445442 364.7682421324626 61.40039725929728 112.6671517637106 370.4977697475133 61.40039725929728 112.6671517637106 370.4977697475133 62.43694311903164 112.1552497445442 364.7682421324626 23.8374935267766 87.17703033711156 652.9495485301977 39.21128069175347 98.87501985224266 653.3275841486011 39.21128069175347 98.87501985224266 653.3275841486011 23.8374935267766 87.17703033711156 652.9495485301977 -6.935639398229569 73.58378052070285 368.8580787292976 -6.81241219376534 72.54952494087912 363.1066364631606 -6.935639398229569 73.58378052070285 368.8580787292976 -6.81241219376534 72.54952494087912 363.1066364631606 5.960345315485029 79.85784070276677 652.5297436130768 5.960345315485029 79.85784070276677 652.5297436130768 70.48561632776523 131.3659712388746 365.0073657821249 69.342917806267 131.6245061292733 370.7337396335097 69.342917806267 131.6245061292733 370.7337396335097 70.48561632776523 131.3659712388746 365.0073657821249 51.03400861725345 114.1546105927828 653.6380879651388 51.03400861725345 114.1546105927828 653.6380879651388 -27.2988320323575 76.35227245718042 368.4148663576852 -27.44776113990656 75.35501807696043 362.6575005093109 -27.2988320323575 76.35227245718042 368.4148663576852 -27.44776113990656 75.35501807696043 362.6575005093109 -13.20186584094904 77.4162416241422 652.0967784082259 -13.20186584094904 77.4162416241422 652.0967784082259 73.28899089994957 152.0061032328443 365.1345791846288 72.10931912027536 151.9924187283904 370.8592752387194 72.10931912027536 151.9924187283904 370.8592752387194 73.28899089994957 152.0061032328443 365.1345791846288 58.49997793133139 131.9745236962393 653.8598996580549 58.49997793133139 131.9745236962393 653.8598996580549 -46.25216835689935 84.29803400813286 368.019247086806 -46.6544108916471 83.40697560605624 362.2565937433228 -46.25216835689935 84.29803400813286 368.019247086806 -46.6544108916471 83.40697560605624 362.2565937433228 -32.34326691704018 80.01862404443889 651.6801587788141 -32.34326691704018 80.01862404443889 651.6801587788141 69.51107552253552 172.3828499748429 370.8658215193191 70.65602149040001 172.6690548383471 365.1412129569071 70.65602149040001 172.6690548383471 365.1412129569071 69.51107552253552 172.3828499748429 370.8658215193191 61.10039516648862 151.1203615394239 653.9779031270919 61.10039516648862 151.1203615394239 653.9779031270919 -62.50400982320866 96.87957465485339 367.6981817163378 -63.12346000886259 96.15666992904822 361.9312372987697 -62.50400982320866 96.87957465485339 367.6981817163378 -63.12346000886259 96.15666992904822 361.9312372987697 -50.1594030621286 87.48763990234041 651.3082766642219 -50.1594030621286 87.48763990234041 651.3082766642219 61.72525302045597 191.4062256759751 370.7529323566832 62.76614061317719 191.9466800506218 365.0268150183001 62.76614061317719 191.9466800506218 365.0268150183001 61.72525302045597 191.4062256759751 370.7529323566832 58.65804618462153 170.2873669111025 653.9840566306884 58.65804618462153 170.2873669111025 653.9840566306884 -75.73257001062189 112.7352304476802 361.703603679789 -74.94682029280398 113.2394831942446 367.4735503207339 -74.94682029280398 113.2394831942446 367.4735503207339 -75.73257001062189 112.7352304476802 361.703603679789 -65.43613404047778 99.31428811025562 651.0064752160179 -65.43613404047778 99.31428811025562 651.0064752160179 49.2824425508602 207.7661342153668 370.5283009610484 50.15703061142699 208.5252405692327 364.7991813993249 50.15703061142699 208.5252405692327 364.7991813993249 49.2824425508602 207.7661342153668 370.5283009610484 51.33937303265839 188.169340070183 653.877940817878 51.33937303265839 188.169340070183 653.877940817878 -83.62245088783925 132.0128556599724 361.5892057412239 -82.73264279488717 132.2628588953744 367.3606611581472 -82.73264279488717 132.2628588953744 367.3606611581472 -83.62245088783925 132.0128556599724 361.5892057412239 -77.13237588189577 114.6926021373032 650.7953217039358 -77.13237588189577 114.6926021373032 650.7953217039358 33.03060108454633 220.3476748620869 370.2072355906039 33.68798149422219 221.2749348921998 364.4738249548336 33.03060108454633 220.3476748620869 370.2072355906039 33.68798149422219 221.2749348921998 364.4738249548336 39.64313119123176 203.5476540972258 653.6667873058996 39.64313119123176 203.5476540972258 653.6667873058996 -86.25542029738358 152.6758072655066 361.595839513473 -85.33088639262837 152.653290141832 367.3672074386286 -85.33088639262837 152.653290141832 367.3672074386286 -86.25542029738358 152.6758072655066 361.595839513473 -84.45104903385891 132.5745752963786 650.6892058911944 -84.45104903385891 132.5745752963786 650.6892058911944 14.07726476000016 228.2934364130356 369.8116163197192 14.48133174251871 229.3268924212904 364.0729181887928 14.07726476000016 228.2934364130356 369.8116163197192 14.48133174251871 229.3268924212904 364.0729181887928 24.36640021288145 215.3743023051492 653.3649858577082 24.36640021288145 215.3743023051492 653.3649858577082 -82.5644850786332 173.0212027409479 367.4927430438911 -83.45204572516946 173.3159392594818 361.7230529160534 -83.45204572516946 173.3159392594818 361.7230529160534 -82.5644850786332 173.0212027409479 367.4927430438911 -86.89339801573487 151.7415806680641 650.6953593948274 -86.89339801573487 151.7415806680641 650.6953593948274 -6.285927874133904 231.0619283495177 369.3684039480522 -6.154017203608873 232.1323855573806 363.6237822350176 -6.285927874133904 231.0619283495177 369.3684039480522 -6.154017203608873 232.1323855573806 363.6237822350176 6.550264067792796 222.843318163047 652.9931037430615 6.550264067792796 222.843318163047 652.9931037430615 -74.62196453075308 191.978557108653 367.7287129299239 -75.40337251551728 192.5266607559576 361.9621765657194 -75.40337251551728 192.5266607559576 361.9621765657194 -74.62196453075308 191.978557108653 367.7287129299239 -84.2929807805815 170.8874185112409 650.8133628638188 -84.2929807805815 170.8874185112409 650.8133628638188 -26.67125889159843 228.4644825212074 368.9078026662919 -26.81180041500102 229.5002245795392 363.1570249662927 -26.67125889159843 228.4644825212074 368.9078026662919 -26.81180041500102 229.5002245795392 363.1570249662927 -12.59113700829835 225.4457005833419 652.576484113697 -12.59113700829835 225.4457005833419 652.576484113697 -62.04459439871675 208.2334408733093 368.0590361391605 -62.65790444658364 208.9987928321427 362.2969145810039 -62.65790444658364 208.9987928321427 362.2969145810039 -62.04459439871675 208.2334408733093 368.0590361391605 -76.82701146557702 188.7073316168946 651.0351745567004 -76.82701146557702 188.7073316168946 651.0351745567004 -45.68950167190178 220.6781105688042 368.4612016903811 -46.08422410440926 221.6097869085617 362.7044551192194 -45.68950167190178 220.6781105688042 368.4612016903811 -46.08422410440926 221.6097869085617 362.7044551192194 -31.75334816472764 223.004101504724 652.1435189087897 -31.75334816472764 223.004101504724 652.1435189087897 -65.00428354144651 203.986922355688 651.3456783733309 -65.00428354144651 203.986922355688 651.3456783733309 -49.63049637822701 215.6849118694661 651.7237139915487 -49.63049637822701 215.6849118694661 651.7237139915487</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID10238\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10235\">\r\n\t\t\t\t\t<float_array count=\"432\" id=\"ID10239\">0.6885096843149426 -0.6990274752316847 0.193170917779449 0.4916384848135363 -0.8641279090191212 0.1075851156270765 0.4841943782328481 -0.8544919865247806 0.1881468815915897 0.6983201112175969 -0.7068628530703944 0.1126673387376548 -0.6983201112175969 0.7068628530703944 -0.1126673387376548 -0.6885096843149426 0.6990274752316847 -0.193170917779449 -0.4916384848135363 0.8641279090191212 -0.1075851156270765 -0.4841943782328481 0.8544919865247806 -0.1881468815915897 0.2513022534729888 -0.9625253957096976 0.1019413557555898 0.2466097824307749 -0.9517629097346371 0.1825677377383606 -0.2513022534729888 0.9625253957096976 -0.1019413557555898 -0.2466097824307749 0.9517629097346371 -0.1825677377383606 0.8456319502149259 -0.4959640253829305 0.1972974665363473 0.8572621214039153 -0.5014475815333181 0.1168416799795565 -0.8572621214039153 0.5014475815333181 -0.1168416799795565 -0.8456319502149259 0.4959640253829305 -0.1972974665363473 0.4958607509086306 -0.8680435573167002 0.02494991601784321 0.70354155135453 -0.7100182249741138 0.03005670844037442 -0.70354155135453 0.7100182249741138 -0.03005670844037442 -0.4958607509086306 0.8680435573167002 -0.02494991601784321 -0.006310065812247663 -0.9953496870334567 0.09612067203180047 -0.008053105513893571 -0.9842113921922501 0.1768136956532922 0.006310065812247663 0.9953496870334567 -0.09612067203180047 0.008053105513893571 0.9842113921922501 -0.1768136956532922 0.2543626469434243 -0.9669167331927423 0.01927887216125387 -0.2543626469434243 0.9669167331927423 -0.01927887216125387 0.9448535531684349 -0.2591400755068589 0.2002453103852445 0.9576328800419032 -0.2618808056984137 0.1198236648972119 -0.9576328800419032 0.2618808056984137 -0.1198236648972119 -0.9448535531684349 0.2591400755068589 -0.2002453103852445 0.863251944940077 -0.503609901414862 0.03425122996459295 -0.863251944940077 0.503609901414862 -0.03425122996459295 -0.2636426192074106 -0.9603638617815912 0.09051973443070376 -0.2624394306385962 -0.9496261234423031 0.1712768837935611 0.2636426192074106 0.9603638617815912 -0.09051973443070376 0.2624394306385962 0.9496261234423031 -0.1712768837935611 -0.004495063849059375 -0.9998997090614404 0.013430049137641 0.004495063849059375 0.9998997090614404 -0.013430049137641 0.9794127049052031 -0.004694786418696133 0.2018135586395435 0.9925922858008826 -0.004488605436467903 0.1214100761461537 -0.9925922858008826 0.004488605436467903 -0.1214100761461537 -0.9794127049052031 0.004694786418696133 -0.2018135586395435 0.9641079322766082 -0.2628849727829968 0.03724763088044993 -0.9641079322766082 0.2628849727829968 -0.03724763088044993 -0.5031586184608268 -0.859952146128061 0.08552023759516961 -0.4992131852798326 -0.8503640323947218 0.1663346267382476 0.5031586184608268 0.859952146128061 -0.08552023759516961 0.4992131852798326 0.8503640323947218 -0.1663346267382476 -0.2630716562616066 -0.9647447496246545 0.007802034570405615 0.2630716562616066 0.9647447496246545 -0.007802034570405615 0.9597579129518258 0.2531881661658896 0.121492802420183 0.9469542563465696 0.2500318159217112 0.201895337771844 -0.9469542563465696 -0.2500318159217112 -0.201895337771844 -0.9597579129518258 -0.2531881661658896 -0.121492802420183 0.9992363444991324 -0.004248445148933655 0.03884171141734195 -0.9992363444991324 0.004248445148933655 -0.03884171141734195 -0.7085354440420982 -0.7009574325566518 0.08146288897193488 -0.7022386293445491 -0.6931896665167487 0.162323731138388 0.7085354440420982 0.7009574325566518 -0.08146288897193488 0.7022386293445491 0.6931896665167487 -0.162323731138388 -0.5037455628395894 -0.8638476072715191 0.002778368351546519 0.5037455628395894 0.8638476072715191 -0.002778368351546519 0.8613673697427277 0.4935892629547269 0.1200662060627572 0.8496901971214085 0.4876805345205048 0.2004850746703525 -0.8496901971214085 -0.4876805345205048 -0.2004850746703525 -0.8613673697427277 -0.4935892629547269 -0.1200662060627572 0.9662432383673258 0.254674029546796 0.03892483762099167 -0.9662432383673258 -0.254674029546796 -0.03892483762099167 -0.8576799143360834 -0.4888141990997431 0.1595175329013247 -0.8657770046893596 -0.4942149480459581 0.07862419016467676 0.8657770046893596 0.4942149480459581 -0.07862419016467676 0.8576799143360834 0.4888141990997431 -0.1595175329013247 -0.7101152545816205 -0.7040842555132086 -0.001298594968118566 0.7101152545816205 0.7040842555132086 0.001298594968118566 0.704125809095472 0.7003317474656078 0.1172275072558276 0.6942489121295928 0.6920560019382372 0.197678876433825 -0.6942489121295928 -0.6920560019382372 -0.197678876433825 -0.704125809095472 -0.7003317474656078 -0.1172275072558276 0.8673770395402858 0.4962373125431663 0.03749134457798947 -0.8673770395402858 -0.4962373125431663 -0.03749134457798947 -0.9549439735615337 -0.251165480500729 0.1581072697991671 -0.9641675478984925 -0.2538138512569138 0.07719759380668388 0.9641675478984925 0.2538138512569138 -0.07719759380668388 0.9549439735615337 0.251165480500729 -0.1581072697991671 -0.8681169780379364 -0.4963423027503471 -0.004151017075842164 0.8681169780379364 0.4963423027503471 0.004151017075842164 0.4987489835139968 0.8593264610373063 0.1131701586322741 0.4912234680640631 0.8492303678172258 0.193667980833523 -0.4987489835139968 -0.8593264610373063 -0.1131701586322741 -0.4912234680640631 -0.8492303678172258 -0.193667980833523 0.7093753160839543 0.7039792653060805 0.03463892247026652 -0.7093753160839543 -0.7039792653060805 -0.03463892247026652 -0.987402422120524 0.003561121840511747 0.158189048931207 -0.9970019207476876 0.003862920345737554 0.07728032008101712 0.9970019207476876 -0.003862920345737554 -0.07728032008101712 0.987402422120524 -0.003561121840511747 -0.158189048931207 -0.9669831768650308 -0.2547790197538749 -0.005584510118830953 0.9669831768650308 0.2547790197538749 0.005584510118830953 0.2592329842606732 0.9597381766907982 0.1081706617966617 0.2544497134233213 0.948492458864703 0.188725723778131 -0.2592329842606732 -0.9597381766907982 -0.1081706617966617 -0.2544497134233213 -0.948492458864703 -0.188725723778131 0.5030056243418597 0.8637426170644426 0.03056195915060958 -0.5030056243418597 -0.8637426170644426 -0.03056195915060958 -0.9620425149885603 0.2612551206077208 0.07886673133033459 -0.9528432703836297 0.2580064109285045 0.1597572971867668 0.9528432703836297 -0.2580064109285045 -0.1597572971867668 0.9620425149885603 -0.2612551206077208 -0.07886673133033459 -0.9999762829968337 0.004143454941762733 -0.005501383915176569 0.9999762829968337 -0.004143454941762733 0.005501383915176569 0.001900430865511442 0.9947240019426816 0.1025697241960881 6.338829850628338e-005 0.983077727614608 0.1831889119188777 -0.001900430865511442 -0.9947240019426816 -0.1025697241960881 -6.338829850628338e-005 -0.983077727614608 -0.1831889119188777 0.2623317177641655 0.9646397594174908 0.02553829293174717 -0.2623317177641655 -0.9646397594174908 -0.02553829293174717 -0.8616717563507336 0.500821896442034 0.08184871624922825 -0.8536216674305845 0.4948303608034394 0.1627051410379109 0.8536216674305845 -0.4948303608034394 -0.1627051410379109 0.8616717563507336 -0.500821896442034 -0.08184871624922825 -0.964847870774299 0.2627799825759401 -0.003907303378299694 0.964847870774299 -0.2627799825759401 0.003907303378299694 -0.2557118884199414 0.9618997106187776 0.09674904047182681 -0.254599499647059 0.9506292451563452 0.1774348698338193 0.2557118884199414 -0.9618997106187776 -0.09674904047182681 0.254599499647059 -0.9506292451563452 -0.1774348698338193 0.003755125351342406 0.9997947188543476 0.01991027836450297 -0.003755125351342406 -0.9997947188543476 -0.01991027836450297 -0.7027297461645484 0.7062371679792627 0.08602305749123379 -0.6964994015307966 0.697893810652648 0.166831689795339 0.6964994015307966 -0.697893810652648 -0.166831689795339 0.7027297461645484 -0.7062371679792627 -0.08602305749123379 -0.8639918834378829 0.5035049112075902 -0.0009109024624260421 0.8639918834378829 -0.5035049112075902 0.0009109024624260421 -0.4960481197603361 0.863502223928098 0.09110528060142326 -0.4921840954488219 0.853358321946034 0.1718557259816315 0.4960481197603361 -0.863502223928098 -0.09110528060142326 0.4921840954488219 -0.853358321946034 -0.1718557259816315 -0.2551025854414722 0.9668117429855577 0.01406145534089367 0.2551025854414722 -0.9668117429855577 -0.01406145534089367 -0.7042814898520611 0.7099132347671919 0.003283619061829626 0.7042814898520611 -0.7099132347671919 -0.003283619061829626 -0.4966006894060978 0.8679385671097417 0.008390411484339498 0.4966006894060978 -0.8679385671097417 -0.008390411484339498</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID10239\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10237\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID10240\">-21.87270744889332 196.814858302898 -21.8701637093233 196.7066475628514 -22.25336126118506 196.8148583046207 -22.25590500173466 196.7066475645976 -25.97185153291412 195.6812145054921 -25.96930779212436 195.5730037654746 -26.3525053451226 195.6812145029238 -26.3550490844524 195.5730037628698 -16.27000401278263 197.7204380454391 -16.26746027439919 197.6122273053643 -16.65065782507433 197.7204380513339 -16.6532015668103 197.6122273113382 -21.88412705258791 202.3964250283175 -21.87270746159088 197.1495128760788 -22.24194163614587 202.3964250299088 -22.25336127388261 197.1495128777741 -28.28808636360101 194.3967626596858 -28.28554262164112 194.2885519196935 -28.66874017585271 194.3967626530007 -28.67128391401239 194.2885519129194 -25.98327117013203 202.2914652484308 -25.97185152092931 197.0445530963211 -26.34108575360446 202.2914652460565 -26.3525053331378 197.0445530937937 -9.545556215058923 198.336239939188 -9.543012477747659 198.2280291990909 -9.926210027267402 198.3362399488577 -9.928753770075607 198.2280292088869 -16.28142360340144 202.4802691634415 -16.27000406901746 197.2333570110826 -16.63923818695939 202.4802691688971 -16.65065788130917 197.2333570168833 -28.66356436483888 193.0490361008768 -28.6610206218383 192.9408253609092 -29.04421817709044 193.0490360905332 -29.04676191420942 192.9408253504259 -28.29950605793346 202.1725427136853 -28.28808635290122 196.9256305616956 -28.65732064145031 202.1725427075035 -28.66874016515292 196.9256305551171 -2.157624071899294 198.6202981042615 -2.155080335473091 198.5120873641456 -2.538277884150996 198.6202981170446 -2.540821627844026 198.5120873770974 -9.556975804705223 202.5372837840714 -9.545556321481449 197.2903716315995 -9.914790388177739 202.5372837930146 -9.926210133689928 197.2903716411151 -27.07269733683981 191.7298802235866 -27.07015359299891 191.6216694836373 -27.45335114909137 191.7298802102856 -27.45589488537036 191.6216694701588 -28.67498413625244 202.0477618619073 -28.66356438156819 196.8008497100236 -29.03279871976916 202.0477618523375 -29.04421819381975 196.8008496998448 5.392860776139028 198.4450437396922 5.007119483768243 198.4450437549151 5.390317040350138 198.5532544798246 5.009663228098576 198.5532544948453 -2.169043662268947 202.5635834395419 -2.157624221269168 197.3166712869754 -2.5268582457858 202.5635834513639 -2.538278033520866 197.3166712995547 -23.62390024839463 190.5291933544505 -23.6213565039714 190.4209826145151 -24.00455406064618 190.5291933391015 -24.00709779634267 190.42098259896 -27.08411719501986 201.925626357779 -27.07269740024592 196.6787142059845 -27.44193177853668 201.925626345476 -27.45335121249747 196.6787141928954 12.58643113842703 198.0314672946886 12.20068984605619 198.0314673111461 12.58388740298439 198.1396780348269 12.2032335907328 198.1396780510695 5.390316867216868 197.3104637322818 5.009663054965309 197.3104637470631 5.378897456626442 202.5573758849112 5.021082873109751 202.5573758988087 -18.93285674548791 189.5288003046255 -18.5522029332363 189.5288003209758 -18.93540048089918 189.4205895644767 -18.54965918852795 189.4205895810461 -23.63532018814864 201.8144595671941 -23.62390036557932 196.5675474154593 -23.99313477166533 201.8144595529966 -24.00455417783087 196.5675474003549 18.93540081934836 197.2995426450324 18.54965952697755 197.2995426616018 18.93285708393735 197.4077533851715 18.55220327168572 197.4077534015223 12.58388723183913 197.2721720579598 12.20323341958754 197.2721720739435 12.57246783777104 202.5190842106265 12.21465325425422 202.51908422565 -12.58388700436696 188.7968762077903 -12.20323319211539 188.7968762240319 -12.58643073980973 188.6886654676442 -12.20068944743862 188.6886654841009 -18.92143751681087 201.721837309603 -18.56362293329403 201.7218373247313 -18.93285690936972 196.4749251569358 -18.5522030971181 196.4749251730255 23.62390048542989 196.4073600567699 24.00455429768148 196.4073600414213 23.62135674100685 196.2991493168426 24.00709803337767 196.2991493012886 18.93285694020935 197.2044058419549 18.55220312795772 197.2044058580451 18.92143754765053 202.4513179946233 18.56362296413369 202.4513180097497 -5.390316638985619 188.3833004111872 -5.009662826733962 188.3833004262101 -5.392860374774722 188.2750896710494 -5.007119082403372 188.275089686273 -12.57246780145289 201.6540716376284 -12.21465321793616 201.6540716526506 -12.583887195521 196.4071594849628 -12.20323338326943 196.4071595009456 27.07269745832232 195.2066732010258 27.45335127057392 195.2066731877247 27.07015371448186 195.0984624610846 27.45589500685266 195.0984624476051 23.6353202097419 202.3586954610697 23.99313479325869 202.3586954468724 23.62390038717254 197.1117833093371 24.00455419942414 197.1117832942331 2.155080681493155 188.2080466170191 2.157624417919442 188.3162573571395 2.540821973864273 188.2080466299696 2.538278230171093 188.3162573699215 -5.378897420054801 201.6157806012812 -5.021082836537963 201.615780615178 -5.390316830645139 196.3688684486519 -5.009663018393482 196.3688684634354 28.66356438762324 193.8875176576709 29.04421819987494 193.8875176473263 28.66102064462295 193.7793069177093 29.0467619369938 193.7793069072273 27.08411720608869 202.247528683738 27.44193178960551 202.2475286714339 27.07269741131456 197.0006165319444 27.45335122356617 197.0006165188553 9.54301272502947 188.4921051219662 9.545556462340777 188.6003158620635 9.928754017400634 188.4921051317627 9.926210274592368 188.600315871733 2.157624252786065 196.362661455235 2.169043693785839 201.609573607799 2.538278065037712 196.3626614678133 2.526858277302533 201.6095736196218 28.2880863309935 192.539791663357 28.66874014324509 192.5397916566739 28.28554258903371 192.4315809233718 28.67128388140456 192.4315809165973 28.67498413832855 202.1253935084001 29.03279872184525 202.1253934988312 28.66356438364408 196.8784813565195 29.04421819589578 196.8784813463398 16.26746040616543 189.1079070348605 16.27000414454887 189.2161177749329 16.65320169853642 189.1079070408337 16.65065795680044 189.2161177808271 9.545556344017493 196.3889614451994 9.556975827241402 201.6358735976718 9.926210156269086 196.3889614547148 9.914790410758066 201.6358736066161 25.97185150300845 191.2553404605413 26.35250531526007 191.255340457971 25.96930776221874 191.1471297205265 26.35504905458963 191.1471297179229 28.29950605496256 202.0006132123014 28.65732063847933 202.0006132061185 28.2880863499303 196.7537010603128 28.6687401621819 196.7537010537363 21.87270747918812 190.1216972114919 22.25336129143967 190.1216972132164 21.87016373961816 190.0134864714495 22.25590503198914 190.0134864731949 16.27000408104964 196.4459760845776 16.28142361543471 201.6928882369375 16.6506578933012 196.4459760903778 16.63923819895159 201.6928882423907 25.98327116736597 201.8816913105621 26.34108575088269 201.8816913081866 25.97185151816439 196.634779158453 26.35250533041601 196.6347791559236 21.88412705535469 201.7767320706383 22.24194163887151 201.7767320722322 21.87270746435781 196.5298199184002 22.25336127660937 196.5298199200973</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10240\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10236\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10234\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10235\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10236\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 2 8 9 8 2 1 12 3 0 3 12 13 3 16 1 16 3 17 9 20 21 20 9 8 1 24 8 24 1 16 26 13 12 13 26 27 13 17 3 17 13 30 21 32 33 32 21 20 8 36 20 36 8 24 38 27 26 27 38 39 27 30 13 30 27 42 33 44 45 44 33 32 20 48 32 48 20 36 38 50 39 50 38 51 39 42 27 42 39 54 45 56 57 56 45 44 32 60 44 60 32 48 51 62 50 62 51 63 39 66 54 66 39 50 56 68 57 68 56 69 44 72 56 72 44 60 63 74 62 74 63 75 50 78 66 78 50 62 69 80 68 80 69 81 72 69 56 69 72 84 86 75 87 75 86 74 62 90 78 90 62 74 81 92 80 92 81 93 84 81 69 81 84 96 98 87 99 87 98 86 102 74 86 74 102 90 104 92 93 92 104 105 96 93 81 93 96 108 110 99 111 99 110 98 114 86 98 86 114 102 116 105 104 105 116 117 120 93 108 93 120 104 122 111 123 111 122 110 126 98 110 98 126 114 128 117 116 117 128 129 132 104 120 104 132 116 134 123 135 123 134 122 138 110 122 110 138 126 128 135 129 135 128 134 140 116 132 116 140 128 142 122 134 122 142 138 140 134 128 134 140 142</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10236\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10237\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 6 4 7 5 10 6 11 7 10 6 7 5 14 8 15 9 4 10 5 11 4 10 15 9 18 12 4 13 19 14 6 15 19 14 4 13 10 16 11 17 22 18 23 19 22 18 11 17 19 20 6 21 25 22 10 23 25 22 6 21 28 24 29 25 14 26 15 27 14 26 29 25 31 28 14 29 18 30 4 31 18 30 14 29 22 32 23 33 34 34 35 35 34 34 23 33 25 36 10 37 37 38 22 39 37 38 10 37 40 40 41 41 28 42 29 43 28 42 41 41 43 44 28 45 31 46 14 47 31 46 28 45 34 48 35 49 46 50 47 51 46 50 35 49 37 52 22 53 49 54 34 55 49 54 22 53 52 56 41 57 53 58 40 59 53 58 41 57 55 60 40 61 43 62 28 63 43 62 40 61 46 64 47 65 58 66 59 67 58 66 47 65 49 68 34 69 61 70 46 71 61 70 34 69 64 72 52 73 65 74 53 75 65 74 52 73 53 76 40 77 67 78 55 79 67 78 40 77 70 80 58 81 71 82 59 83 71 82 58 81 61 84 46 85 73 86 58 87 73 86 46 85 76 88 64 89 77 90 65 91 77 90 64 89 65 92 53 93 79 94 67 95 79 94 53 93 82 96 70 97 83 98 71 99 83 98 70 97 85 100 73 101 70 102 58 103 70 102 73 101 77 104 88 105 76 106 89 107 76 106 88 105 77 108 65 109 91 110 79 111 91 110 65 109 94 112 82 113 95 114 83 115 95 114 82 113 97 116 85 117 82 118 70 119 82 118 85 117 88 120 100 121 89 122 101 123 89 122 100 121 91 124 103 125 77 126 88 127 77 126 103 125 106 128 107 129 95 130 94 131 95 130 107 129 109 132 97 133 94 134 82 135 94 134 97 133 100 136 112 137 101 138 113 139 101 138 112 137 103 140 115 141 88 142 100 143 88 142 115 141 118 144 119 145 106 146 107 147 106 146 119 145 107 148 121 149 94 150 109 151 94 150 121 149 112 152 124 153 113 154 125 155 113 154 124 153 115 156 127 157 100 158 112 159 100 158 127 157 130 160 131 161 118 162 119 163 118 162 131 161 119 164 133 165 107 166 121 167 107 166 133 165 124 168 136 169 125 170 137 171 125 170 136 169 127 172 139 173 112 174 124 175 112 174 139 173 136 176 131 177 137 178 130 179 137 178 131 177 131 180 141 181 119 182 133 183 119 182 141 181 139 184 143 185 124 186 136 187 124 186 143 185 143 188 141 189 136 190 131 191 136 190 141 189</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10241\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10242\">\r\n\t\t\t\t\t<float_array count=\"3174\" id=\"ID10246\">-97.92088450409165 157.6003544626309 4048.774739105904 -95.23266224434997 167.3174105138651 4046.70329124021 -101.8705914525222 164.5997364150764 4046.547414291115 -93.2284757225691 159.5215014659374 4048.884929850907 -93.2284757225691 159.5215014659374 4048.884929850907 -97.92088450409165 157.6003544626309 4048.774739105904 -95.23266224434997 167.3174105138651 4046.70329124021 -101.8705914525222 164.5997364150764 4046.547414291115 -88.11757880882487 168.2239959292248 4046.864054710206 -88.19876254740234 160.1623744296041 4048.998574919197 -88.19876254740234 160.1623744296041 4048.998574919197 -88.11757880882487 168.2239959292248 4046.864054710206 -96.9545768233786 174.0889435716154 4043.986391939103 -105.2817401931841 170.6796700622494 4043.790847096738 -96.9545768233786 174.0889435716154 4043.986391939103 -105.2817401931841 170.6796700622494 4043.790847096738 -101.9562089880842 154.5298564131051 4048.675512001315 -107.5790025274921 160.2561786315312 4046.407046619392 -101.9562089880842 154.5298564131051 4048.675512001315 -107.5790025274921 160.2561786315312 4046.407046619392 -93.41442981632576 149.652524527951 4050.405982512331 -90.93195500970774 150.6688893114978 4050.464277891382 -90.93195500970774 150.6688893114978 4050.464277891382 -93.41442981632576 149.652524527951 4050.405982512331 -83.17451161948998 159.479298920247 4049.107929587133 -81.01022232383275 167.2577103633118 4047.018748936189 -81.01022232383275 167.2577103633118 4047.018748936189 -83.17451161948998 159.479298920247 4049.107929587133 -88.02883201663008 175.2262387469182 4044.188066834498 -88.02883201663008 175.2262387469182 4044.188066834498 -88.27103248074855 151.0079371354622 4050.52440074775 -88.27103248074855 151.0079371354622 4050.52440074775 -98.40428170794644 179.8684277555531 4040.801261827246 -108.172520257627 175.869155081095 4040.57187655143 -98.40428170794644 179.8684277555531 4040.801261827246 -108.172520257627 175.869155081095 4040.57187655143 -112.4428397036738 165.2307545743778 4043.614758365209 -112.4428397036738 165.2307545743778 4043.614758365209 -105.0594484796472 150.5192566852056 4048.594010700466 -111.9688766881043 154.5827434481076 4046.291754049864 -105.0594484796472 150.5192566852056 4048.594010700466 -111.9688766881043 154.5827434481076 4046.291754049864 -95.54928034500199 148.0281063652132 4050.353487344357 -95.54928034500199 148.0281063652132 4050.353487344357 -88.3330378572407 140.727246933347 4051.374305481973 -88.3330378572407 140.727246933347 4051.374305481973 -78.49811733660249 157.5188254049861 4049.205541514955 -74.39494738838312 164.48440458057 4047.156831762426 -74.39494738838312 164.48440458057 4047.156831762426 -78.49811733660249 157.5188254049861 4049.205541514955 -79.11278053100386 174.0140508014015 4044.382127971901 -79.11278053100386 174.0140508014015 4044.382127971901 -85.61299970241771 150.6465624509535 4050.582253807968 -85.61299970241771 150.6465624509535 4050.582253807968 -87.9338729224055 181.2025399952473 4041.037838005743 -87.9338729224055 181.2025399952473 4041.037838005743 -99.59183914637447 184.6881901820049 4037.214930784525 -110.561121177398 180.1971911485584 4036.957341683656 -99.59183914637447 184.6881901820049 4037.214930784525 -110.561121177398 180.1971911485584 4036.957341683656 -116.5728992570371 169.4772657955379 4040.365314405399 -116.5728992570371 169.4772657955379 4040.365314405399 -117.9498582574895 158.1135316937525 4043.470125900576 -117.9498582574895 158.1135316937525 4043.470125900576 -107.019122335789 145.8418710225509 4048.535789382269 -114.7410512649105 147.9660660967463 4046.209393580646 -107.019122335789 145.8418710225509 4048.535789382269 -114.7410512649105 147.9660660967463 4046.209393580646 -97.19102006023331 145.9063362365943 4050.310369846422 -97.19102006023331 145.9063362365943 4050.310369846422 -74.48826824100593 154.4145569140553 4049.284758610933 -68.72257405705227 160.0930747869893 4047.268893072462 -68.72257405705227 160.0930747869893 4047.268893072462 -74.48826824100593 154.4145569140553 4049.284758610933 -70.81403654080486 170.5349883403468 4044.55535040573 -70.81403654080486 170.5349883403468 4044.55535040573 -83.1389972159327 149.6093923455215 4050.633894481924 -83.1389972159327 149.6093923455215 4050.633894481924 -77.47483495654478 179.7805742557918 4041.265482810984 -77.47483495654478 179.7805742557918 4041.265482810984 -87.83405227778007 186.1863367868302 4037.480594937793 -87.83405227778007 186.1863367868302 4037.480594937793 -100.5273113869569 188.5805579673289 4033.294428690551 -112.4657324840464 183.6927779415838 4033.014081522195 -100.5273113869569 188.5805579673289 4033.294428690551 -112.4657324840464 183.6927779415838 4033.014081522195 -119.9943599280109 173.0193938488895 4036.725381906603 -119.9943599280109 173.0193938488895 4036.725381906603 -123.0329467596678 161.1283565906005 4040.195652258246 -123.0329467596678 161.1283565906005 4040.195652258246 -121.4275016409529 149.8130283978985 4043.366806166232 -121.4275016409529 149.8130283978985 4043.366806166232 -107.7016820217068 140.8164555283153 4048.504815733153 -115.7066071417537 140.8570622043845 4046.165577941622 -107.7016820217068 140.8164555283153 4048.504815733153 -115.7066071417537 140.8570622043845 4046.165577941622 -98.22776711351639 143.4318092699457 4050.279568404663 -98.22776711351639 143.4318092699457 4050.279568404663 -71.41822892198093 150.3780442150705 4049.340182360964 -64.37966519833594 154.3829828510012 4047.347296073192 -64.37966519833594 154.3829828510012 4047.347296073192 -71.41822892198093 150.3780442150705 4049.340182360964 -63.69814573461667 165.0261437210323 4044.695929313151 -63.69814573461667 165.0261437210323 4044.695929313151 -81.01762420228306 147.9671082478438 4050.675803542703 -81.01762420228306 147.9671082478438 4050.675803542703 -67.73993396337733 175.699435152396 4041.4686826259 -67.73993396337733 175.699435152396 4041.4686826259 -76.08903431601289 184.5895347477184 4037.736229570328 -76.08903431601289 184.5895347477184 4037.736229570328 -87.73072083433499 190.2110662342298 4033.583564344392 -87.73072083433499 190.2110662342298 4033.583564344392 -101.2207606780207 191.5778582278717 4029.106785425205 -113.9045437091497 186.3849151371453 4028.808935095654 -101.2207606780207 191.5778582278717 4029.106785425205 -113.9045437091497 186.3849151371453 4028.808935095654 -122.7324004570112 175.8808202883308 4032.761628035436 -122.7324004570112 175.8808202883308 4032.761628035436 -127.2486957665371 163.6439533071129 4036.534859128795 -127.2486957665371 163.6439533071129 4036.534859128795 -127.1124212039445 151.3913918313597 4040.074452304956 -127.1124212039445 151.3913918313597 4040.074452304956 -122.6387742045731 140.89491026921 4043.31184023131 -122.6387742045731 140.89491026921 4043.31184023131 -114.7997432812697 133.7401986380963 4046.16329309613 -107.0606122228123 135.7854839635345 4048.503200556421 -107.0606122228123 135.7854839635345 4048.503200556421 -114.7997432812697 133.7401986380963 4046.16329309613 -98.58886890648068 140.7731603887348 4050.263182086472 -98.58886890648068 140.7731603887348 4050.263182086472 -69.49721748563707 145.6843689778121 4049.368035728074 -61.66218287395554 147.7432621016559 4047.386697729733 -61.66218287395554 147.7432621016559 4047.386697729733 -69.49721748563707 145.6843689778121 4049.368035728074 -58.25004431133061 157.8629356004813 4044.794284474127 -58.25004431133061 157.8629356004813 4044.794284474127 -79.3934487266049 145.8316291051779 4050.705124957305 -79.3934487266049 145.8316291051779 4050.705124957305 -59.39258735790372 169.237245570573 4041.633589718806 -59.39258735790372 169.237245570573 4041.633589718806 -65.15718882564374 180.0066034848042 4037.964413604328 -65.15718882564374 180.0066034848042 4037.964413604328 -74.94802732497374 188.4731862984573 4033.861784366556 -74.94802732497374 188.4731862984573 4033.861784366556 -87.62522934371009 193.310165450052 4029.413972939256 -87.62522934371009 193.310165450052 4029.413972939256 -101.6822492678489 193.7124180799859 4024.719030867982 -114.8957443842335 188.3026024121696 4024.408741432688 -101.6822492678489 193.7124180799859 4024.719030867982 -114.8957443842335 188.3026024121696 4024.408741432688 -124.812199584467 178.0852266677556 4028.540719958504 -124.812199584467 178.0852266677556 4028.540719958504 -130.6276588499536 165.6770570117673 4032.554272518195 -130.6276588499536 165.6770570117673 4032.554272518195 -131.8297576939208 152.7097903024965 4036.398757162906 -131.8297576939208 152.7097903024965 4036.398757162906 -128.5333131481366 140.9299295750788 4040.009974121846 -128.5333131481366 140.9299295750788 4040.009974121846 -121.501129724863 131.9669323202896 4043.308973933581 -121.501129724863 131.9669323202896 4043.308973933581 -112.0822609568934 127.1004778887446 4046.202694752601 -105.1396007864719 131.091808726274 4048.531053923503 -105.1396007864719 131.091808726274 4048.531053923503 -112.0822609568934 127.1004778887446 4046.202694752601 -98.24971694868373 138.1115721205593 4050.262327592411 -98.24971694868373 138.1115721205593 4050.262327592411 -68.8561476867435 140.6533974130254 4049.366420551265 -60.75531901347836 140.6263985353614 4047.38441288425 -60.75531901347836 140.6263985353614 4047.38441288425 -68.8561476867435 140.6533974130254 4049.366420551265 -54.84101137952553 149.533524774335 4044.843713146849 -54.84101137952553 149.533524774335 4044.843713146849 -78.37715566349198 143.3484842920407 4050.719860519586 -78.37715566349198 143.3484842920407 4050.719860519586 -53.00165301662901 160.8343930510383 4041.748965943843 -53.00165301662901 160.8343930510383 4041.748965943843 -55.7835030111014 172.7498621900019 4038.149596675237 -55.7835030111014 172.7498621900019 4038.149596675237 -63.05035029713531 183.4853518056465 4034.110128522385 -63.05035029713531 183.4853518056465 4034.110128522385 -74.04446269896675 191.463782929251 4029.709563316601 -74.04446269896675 191.463782929251 4029.709563316601 -87.51892855748406 195.5170715468645 4025.039047436196 -87.51892855748406 195.5170715468645 4025.039047436196 -101.9218394047698 195.0165646400161 4020.198194898716 -115.457524040871 189.4748394436169 4019.880339561747 -101.9218394047698 195.0165646400161 4020.198194898716 -115.457524040871 189.4748394436169 4019.880339561747 -126.2589360507823 179.6562945410325 4024.129324842477 -126.2589360507823 179.6562945410325 4024.129324842477 -133.2003895818259 167.244402873007 4028.320418432095 -133.2003895818259 167.244402873007 4028.320418432095 -135.6134588509378 153.7768577166472 4032.4061459064 -135.6134588509378 153.7768577166472 4032.4061459064 -133.4253539103925 140.9620499742389 4036.326351132801 -133.4253539103925 140.9620499742389 4036.326351132801 -127.1987911543811 130.4569011861301 4040.006611790739 -127.1987911543811 130.4569011861301 4040.006611790739 -118.0920967930529 123.6375214941453 4043.358402606315 -118.0920967930529 123.6375214941453 4043.358402606315 -107.7393520981796 121.3903859527573 4046.281097753343 -102.0695614674423 127.0552960272797 4048.586477673553 -102.0695614674423 127.0552960272797 4048.586477673553 -107.7393520981796 121.3903859527573 4046.281097753343 -97.23342388556966 135.6284273074251 4050.27706315471 -97.23342388556966 135.6284273074251 4050.27706315471 -61.72087489032128 133.5173946429992 4047.340597245187 -69.53870737266425 135.6279819187852 4049.335446902273 -61.72087489032128 133.5173946429992 4047.340597245187 -69.53870737266425 135.6279819187852 4049.335446902273 -53.70336689981673 140.6055468254037 4044.840846849202 -53.70336689981673 140.6055468254037 4044.840846849202 -78.03800370569775 140.6868960238634 4050.719006025534 -78.03800370569775 140.6868960238634 4050.719006025534 -49.0026625534008 151.0635181066328 4041.806948601929 -49.0026625534008 151.0635181066328 4041.806948601929 -48.60677806988952 163.3138457902027 4038.279158862519 -48.60677806988952 163.3138457902027 4038.279158862519 -52.84849677842021 175.5874754336915 4034.311672568165 -52.84849677842021 175.5874754336915 4034.311672568165 -61.40396754736798 186.1645385830017 4029.973412561287 -61.40396754736798 186.1645385830017 4029.973412561287 -73.37098915354932 193.5935786613775 4025.34698253701 -73.37098915354932 193.5935786613775 4025.34698253701 -87.41316922727197 196.865221637273 4020.526014548737 -87.41316922727197 196.865221637273 4020.526014548737 -101.9495933370693 195.5226250243159 4015.611307397323 -115.6080722105985 189.9306259084249 4015.290568511771 -101.9495933370693 195.5226250243159 4015.611307397323 -115.6080722105985 189.9306259084249 4015.290568511771 -127.0977885964103 180.6177054620646 4019.594109854064 -127.0977885964103 180.6177054620646 4019.594109854064 -134.997441533993 168.3627260592953 4023.899822876374 -134.997441533993 168.3627260592953 4023.899822876374 -138.4974724150391 154.6012279792006 4028.163043701339 -138.4974724150391 154.6012279792006 4028.163043701339 -137.3500264293141 140.991201318965 4032.327342783607 -137.3500264293141 140.991201318965 4032.327342783607 -131.9267471706382 129.2013214116487 4036.322575389806 -131.9267471706382 129.2013214116487 4036.322575389806 -123.1998006911572 120.6860262417289 4040.064594448882 -123.1998006911572 120.6860262417289 4040.064594448882 -112.6439953697668 116.4743133735918 4043.456757767181 -112.6439953697668 116.4743133735918 4043.456757767181 -102.0669787668444 116.9990561591808 4046.393159063373 -98.05971237184872 123.9510275363578 4048.66569476949 -98.05971237184872 123.9510275363578 4048.66569476949 -102.0669787668444 116.9990561591808 4046.393159063373 -95.60924840989401 133.4929481647541 4050.306384569265 -95.60924840989401 133.4929481647541 4050.306384569265 -64.49304946592656 126.9007172945172 4047.258236775962 -71.49838122759957 130.9505962590123 4049.277225584001 -64.49304946592656 126.9007172945172 4047.258236775962 -71.49838122759957 130.9505962590123 4049.277225584001 -54.91463946342992 131.6874286967281 4044.785880914184 -54.91463946342992 131.6874286967281 4044.785880914184 -78.39910549865863 138.0282471426462 4050.702619707359 -78.39910549865863 138.0282471426462 4050.702619707359 -47.66814055965278 140.5904897176888 4041.803586270891 -47.66814055965278 140.5904897176888 4041.803586270891 -44.11609594665833 152.3416032093132 4038.344270717262 -44.11609594665833 152.3416032093132 4038.344270717262 -45.03770622679099 165.3177844054831 4034.452681610108 -45.03770622679099 165.3177844054831 4034.452681610108 -50.56517274407565 177.7735671560494 4030.187539783565 -50.56517274407565 177.7735671560494 4030.187539783565 -60.20258974585931 188.0730222849395 4025.621850902266 -60.20258974585931 188.0730222849395 4025.621850902266 -72.92025540428517 194.8948275160901 4020.841458144685 -72.92025540428517 194.8948275160901 4020.841458144685 -87.30930210468841 197.388052833861 4015.942100990986 -87.30930210468841 197.388052833861 4015.942100990986 -101.77557331308 195.2629263492269 4011.025398243162 -115.365578424985 189.6989614835609 4010.706267311194 -101.77557331308 195.2629263492269 4011.025398243162 -115.365578424985 189.6989614835609 4010.706267311194 -127.353935961743 180.9931409847364 4015.001742159575 -127.353935961743 180.9931409847364 4015.001742159575 -136.0493682783701 169.0487617391075 4019.359011856826 -136.0493682783701 169.0487617391075 4019.359011856826 -140.5157461262511 155.1915349954901 4023.73587571403 -140.5157461262511 155.1915349954901 4023.73587571403 -140.3424606428685 141.0173134615272 4028.079320594094 -140.3424606428685 141.0173134615272 4028.079320594094 -135.7190173744364 128.1914091728947 4032.323233452773 -135.7190173744364 128.1914091728947 4032.323233452773 -127.4360650474087 118.2290788307765 4036.387687244598 -127.4360650474087 118.2290788307765 4036.387687244598 -116.8088663498884 112.2831737221984 4040.179970673993 -116.8088663498884 112.2831737221984 4040.179970673993 -105.5281045635845 110.9654687542802 4043.597336674733 -105.5281045635845 110.9654687542802 4043.597336674733 -95.45170383139453 114.225750376438 4046.531241889692 -93.38331808895896 121.9905540210886 4048.763306697283 -93.38331808895896 121.9905540210886 4048.763306697283 -95.45170383139453 114.225750376438 4046.531241889692 -93.48787539624163 131.8506640670793 4050.348293630077 -93.48787539624163 131.8506640670793 4050.348293630077 -68.88292362830862 121.227282108796 4047.142944206389 -74.60162072094386 126.9399965288101 4049.195724283125 -68.88292362830862 121.227282108796 4047.142944206389 -74.60162072094386 126.9399965288101 4049.195724283125 -58.39228284569913 123.386925403755 4044.682561179932 -58.39228284569913 123.386925403755 4044.682561179932 -79.43585255073754 135.553720178888 4050.671818265626 -79.43585255073754 135.553720178888 4050.671818265626 -49.08903250384719 130.1290274614046 4041.739108087842 -49.08903250384719 130.1290274614046 4041.739108087842 -42.61748920691139 140.5808746467375 4038.340494974204 -42.61748920691139 140.5808746467375 4038.340494974204 -40.1502711103667 153.376141193149 4034.52354611505 -40.1502711103667 153.376141193149 4034.52354611505 -42.26672424297567 166.8626994844338 4030.337352566852 -42.26672424297567 166.8626994844338 4030.337352566852 -48.91113499222797 179.3316192114652 4025.844920707064 -48.91113499222797 179.3316192114652 4025.844920707064 -59.43076606215482 189.2396613795606 4021.12302872649 -59.43076606215482 189.2396613795606 4021.12302872649 -72.6849101667076 195.3997835146216 4016.260406256364 -72.6849101667076 195.3997835146216 4016.260406256364 -87.20867794133415 197.1190022492139 4011.354533476464 -87.20867794133415 197.1190022492139 4011.354533476464 -101.4098415810954 194.2697957310979 4006.507497316339 -114.7482322155797 188.8088458459684 4006.194274988588 -101.4098415810954 194.2697957310979 4006.507497316339 -114.7482322155797 188.8088458459684 4006.194274988588 -127.0525568872231 180.8062826629414 4010.41888892603 -127.0525568872231 180.8062826629414 4010.41888892603 -136.386723386827 169.3192450809017 4014.764511379475 -136.386723386827 169.3192450809017 4014.764511379475 -141.7022277246324 155.5564126708961 4019.19106711046 -141.7022277246324 155.5564126708961 4019.19106711046 -142.4377864890014 141.0403162541872 4023.648656083558 -142.4377864890014 141.0403162541872 4023.648656083558 -138.6096213665803 127.4183806458746 4028.074954701722 -138.6096213665803 127.4183806458746 4028.074954701722 -130.8315822580196 116.2497659605486 4032.394097957691 -130.8315822580196 116.2497659605486 4032.394097957691 -120.2593401061965 108.793062430982 4036.517249431809 -120.2593401061965 108.793062430982 4036.517249431809 -108.4615197444018 105.8209841403648 4040.344877766842 -108.4615197444018 105.8209841403648 4040.344877766842 -97.22936057338757 107.4864062932224 4043.770559108534 -97.22936057338757 107.4864062932224 4043.770559108534 -88.34434734640763 113.2594648105234 4046.685936115573 -88.35906716105569 121.3074785117363 4048.872661365364 -88.35906716105569 121.3074785117363 4048.872661365364 -88.34434734640763 113.2594648105234 4046.685936115573 -91.01387290976209 130.8134939616439 4050.399934303903 -91.01387290976209 130.8134939616439 4050.399934303903 -74.59133470559573 116.883724323489 4047.00257653468 -78.63694520724926 123.8694984775268 4049.096497178583 -74.59133470559573 116.883724323489 4047.00257653468 -78.63694520724926 123.8694984775268 4049.096497178583 -63.89930140128968 116.2697025208233 4044.537928715239 -63.89930140128968 116.2697025208233 4044.537928715239 -81.07759226773351 133.4319500479689 4050.628700767502 -81.07759226773351 133.4319500479689 4050.628700767502 -53.1685069469188 120.3920627050502 4041.617908134514 -53.1685069469188 120.3920627050502 4041.617908134514 -44.21308542337806 128.8331343184824 4038.268088944147 -44.21308542337806 128.8331343184824 4038.268088944147 -38.51926205549103 140.5763490470732 4034.519436784167 -38.51926205549103 140.5763490470732 4034.519436784167 -37.0741475955947 154.1754931688902 4030.412641417775 -37.0741475955947 154.1754931688902 4030.412641417775 -40.26611887412082 167.9650816145412 4026.000990112923 -40.26611887412082 167.9650816145412 4026.000990112923 -47.86398760711086 180.2851134543143 4021.351537724535 -47.86398760711086 180.2851134543143 4021.351537724535 -59.07304566576454 189.6933143349313 4016.54453121545 -59.07304566576454 189.6933143349313 4016.54453121545 -72.65760215639966 195.1407006782593 4011.671242988823 -72.65760215639966 195.1407006782593 4011.671242988823 -87.11264748880922 196.0915069959111 4006.830538718999 -87.11264748880922 196.0915069959111 4006.830538718999 -100.8624603894111 192.5755602862736 4002.124634496395 -113.7742231139216 187.2892786725931 4001.821430572751 -100.8624603894111 192.5755602862736 4002.124634496395 -113.7742231139216 187.2892786725931 4001.821430572751 -126.2188301132569 180.0808120505643 4005.912217319787 -126.2188301132569 180.0808120505643 4005.912217319787 -136.040060431237 169.1909112531389 4010.182847449902 -136.040060431237 169.1909112531389 4010.182847449902 -142.090864950211 155.7044949107458 4014.595043056745 -142.090864950211 155.7044949107458 4014.595043056745 -143.6711339056924 141.0601395492358 4019.101720771547 -143.6711339056924 141.0601395492358 4019.101720771547 -140.6325787478609 126.8734520066178 4023.644107858596 -140.6325787478609 126.8734520066178 4023.644107858596 -133.4170447191989 114.7311743303385 4028.150243552545 -133.4170447191989 114.7311743303385 4028.150243552545 -123.0207917063801 105.9800749323445 4032.535106999625 -123.0207917063801 105.9800749323445 4032.535106999625 -110.8856542916531 101.5363211361702 4036.702432502667 -110.8856542916531 101.5363211361702 4036.702432502667 -98.72661875123526 101.7398450369776 4040.548077581654 -98.72661875123526 101.7398450369776 4040.548077581654 -88.31330908776295 106.27421834771 4043.96462024599 -88.31330908776295 106.27421834771 4043.96462024599 -83.32935398588734 121.9483514754001 4048.986306433595 -81.22926391087663 114.16605022588 4046.846699585582 -81.22926391087663 114.16605022588 4046.846699585582 -83.32935398588734 121.9483514754001 4048.986306433595 -88.3558401314283 130.4521192771405 4050.45778736423 -88.3558401314283 130.4521192771405 4050.45778736423 -71.06040091408886 110.8207870311986 4044.361839983678 -71.06040091408886 110.8207870311986 4044.361839983678 -83.21244279873326 131.807531883468 4050.576205599524 -83.21244279873326 131.807531883468 4050.576205599524 -59.62855445131913 112.0431534978003 4041.448245987333 -59.62855445131913 112.0431534978003 4041.448245987333 -48.79414734957163 117.8989713167365 4038.131986978187 -48.79414734957163 117.8989713167365 4038.131986978187 -40.25582963386864 127.7906926493899 4034.440633661445 -40.25582963386864 127.7906926493899 4034.440633661445 -35.34130831929883 140.5765603532352 4030.408275525468 -35.34130831929883 140.5765603532352 4030.408275525468 -34.85668495339564 154.7480202473184 4026.079423247636 -34.85668495339564 154.7480202473184 4026.079423247636 -39.00817687587642 168.6414213833481 4021.511412628226 -39.00817687587642 168.6414213833481 4021.511412628226 -47.40133467291457 180.6575317389915 4016.775113221996 -47.40133467291457 180.6575317389915 4016.775113221996 -59.11397772623104 189.4628396191433 4011.953943550307 -59.11397772623104 189.4628396191433 4011.953943550307 -72.83098008889351 194.149833028252 4007.141384458781 -72.83098008889351 194.149833028252 4007.141384458781 -87.02256149872505 194.3390041865517 4002.437343432252 -87.02256149872505 194.3390041865517 4002.437343432252 -100.1434919863739 190.2125471311226 3997.94383966318 -112.4617406515947 185.1692596404 3997.654573092304 -100.1434919863739 190.2125471311226 3997.94383966318 -112.4617406515947 185.1692596404 3997.654573092304 -124.8779343802755 178.8404107014902 4001.548394507623 -124.8779343802755 178.8404107014902 4001.548394507623 -135.0399329834752 168.6804954242795 4005.680546073942 -135.0399329834752 168.6804954242795 4005.680546073942 -141.7156055430451 155.6444156204218 4010.014228719112 -141.7156055430451 155.6444156204218 4010.014228719112 -144.0776328308966 141.0767131989194 4014.504886177727 -144.0776328308966 141.0767131989194 4014.504886177727 -141.8219091191077 126.5478394311685 4019.097061645673 -141.8219091191077 126.5478394311685 4019.097061645673 -135.2231448271461 113.6563906394023 4023.722540993391 -135.2231448271461 113.6563906394023 4023.722540993391 -125.1185962181064 103.8203066587147 4028.300056335875 -125.1185962181064 103.8203066587147 4028.300056335875 -112.8189381876703 98.08219856039668 4032.736651045338 -112.8189381876703 98.08219856039668 4032.736651045338 -99.95380880128391 96.95338987325633 4036.930616536738 -99.95380880128391 96.95338987325633 4036.930616536738 -88.26758078538796 100.3178792975214 4040.775722387058 -88.26758078538796 100.3178792975214 4040.775722387058 -79.38756428100874 107.4115135230067 4044.166295141333 -79.38756428100874 107.4115135230067 4044.166295141333 -85.69491760246228 130.7911671011063 4050.51791022058 -85.69491760246228 130.7911671011063 4050.51791022058 -68.0289334530471 105.651264210496 4041.241683841274 -68.0289334530471 105.651264210496 4041.241683841274 -56.04848318986501 108.523530772656 4037.941464200399 -56.04848318986501 108.523530772656 4037.941464200399 -45.24162963364734 115.890493357146 4034.292507049591 -45.24162963364734 115.890493357146 4034.292507049591 -37.18629654713436 126.992645835558 4030.324552418095 -37.18629654713436 126.992645835558 4030.324552418095 -33.0514772122483 140.5811559997469 4026.074875022696 -33.0514772122483 140.5811559997469 4026.074875022696 -33.46684273485039 155.1020835392089 4021.591758227003 -33.46684273485039 155.1020835392089 4021.591758227003 -38.46518500392176 168.9082093783867 4016.936438493069 -38.46518500392176 168.9082093783867 4016.936438493069 -47.50078027384029 180.472355919888 4012.183369584918 -47.50078027384029 180.472355919888 4012.183369584918 -59.53811141307256 188.5770957002421 4007.418850912363 -59.53811141307256 188.5770957002421 4007.418850912363 -73.19769267974448 192.4594345858587 4002.73824678307 -73.19769267974448 192.4594345858587 4002.73824678307 -86.93977072270741 191.8949309337239 3998.24217433014 -86.93977072270741 191.8949309337239 3998.24217433014 -99.26299862024598 187.2130833819671 3994.032142696402 -110.8289743601231 182.4777884263122 3993.760541575799 -99.26299862024598 187.2130833819671 3994.032142696402 -110.8289743601231 182.4777884263122 3993.760541575799 -123.0550484287101 177.1087601696195 3997.394087656143 -123.0550484287101 177.1087601696195 3997.394087656143 -133.4168946154155 167.8047327627787 4001.324133257604 -133.4168946154155 167.8047327627787 4001.324133257604 -140.6103972431733 155.3848087052778 4005.515049263602 -140.6103972431733 155.3848087052778 4005.515049263602 -143.692413202574 141.0899670555194 4009.924523821734 -143.692413202574 141.0899670555194 4009.924523821734 -142.2116320810967 126.4327590955368 4014.500184784751 -142.2116320810967 126.4327590955368 4014.500184784751 -136.2805749780782 113.0085015870142 4019.177407244377 -136.2805749780782 113.0085015870142 4019.177407244377 -126.5781287090276 102.2898530424757 4023.878610399206 -126.5781287090276 102.2898530424757 4023.878610399206 -114.2798014148009 95.42933523176279 4028.51418355814 -114.2798014148009 95.42933523176279 4028.51418355814 -100.9212611598291 93.09436406758405 4032.984995201254 -100.9212611598291 93.09436406758405 4032.984995201254 -88.20879083953037 95.35658783414678 4037.186251169216 -88.20879083953037 95.35658783414678 4037.186251169216 -77.7971719998427 101.6519915372176 4041.012298565471 -77.7971719998427 101.6519915372176 4041.012298565471 -65.48172194279141 101.3457334712362 4037.709504423399 -65.48172194279141 101.3457334712362 4037.709504423399 -53.13688802837237 105.6867300782808 4034.085151532398 -53.13688802837237 105.6867300782808 4034.085151532398 -42.48337937915107 114.3494709446263 4030.16717768741 -42.48337937915107 114.3494709446263 4030.16717768741 -34.97351757500928 126.4299372584466 4025.987655392171 -34.97351757500928 126.4299372584466 4025.987655392171 -31.6176179482602 140.5897834211352 4021.587099101062 -31.6176179482602 140.5897834211352 4021.587099101062 -32.873580491025 155.2460441553087 4017.017512978235 -32.873580491025 155.2460441553087 4017.017512978235 -38.60943001391252 168.7819361871685 4012.343886087541 -38.60943001391252 168.7819361871685 4012.343886087541 -48.13992849409965 179.7530678513869 4007.64402919935 -48.13992849409965 179.7530678513869 4007.64402919935 -60.32999589580663 187.0649410463439 4003.006838482852 -60.32999589580663 187.0649410463439 4003.006838482852 -73.75038864452381 190.1017593723393 3998.529246078475 -73.75038864452381 190.1017593723393 3998.529246078475 -86.86562591232269 188.7927243500032 3994.31225812626 -86.86562591232269 188.7927243500032 3994.31225812626 -108.894113771077 179.2438647073015 3990.206175051879 -98.23104253936481 183.6094961551635 3990.456573475754 -98.23104253936481 183.6094961551635 3990.456573475754 -108.894113771077 179.2438647073015 3990.206175051879 -120.7753509989507 174.9095420088206 3993.515963931952 -120.7753509989507 174.9095420088206 3993.515963931952 -131.2014988989638 166.5803584371191 3997.180135006758 -131.2014988989638 166.5803584371191 3997.180135006758 -138.8091877906215 154.9343080706734 4001.163929856375 -138.8091877906215 154.9343080706734 4001.163929856375 -142.5506049586829 141.0998309713002 4005.427005222909 -142.5506049586829 141.0998309713002 4005.427005222909 -141.8357672346367 126.5194271757712 4009.919845998131 -141.8357672346367 126.5194271757712 4009.919845998131 -136.6200275681924 112.7705938724567 4014.581259269859 -136.6200275681924 112.7705938724567 4014.581259269859 -127.4247642468342 101.3648095160575 4019.337282147946 -127.4247642468342 101.3648095160575 4019.337282147946 -115.2866739554029 93.54844996898862 4024.10168020401 -115.2866739554029 93.54844996898862 4024.10168020401 -101.6393062631985 90.1300908854967 4028.778032802906 -101.6393062631985 90.1300908854967 4028.778032802906 -88.1385676504683 91.3564841318083 4033.2632152234 -88.1385676504683 91.3564841318083 4033.2632152234 -76.45100397093347 96.85473443896912 4037.451915322499 -76.45100397093347 96.85473443896912 4037.451915322499 -63.40355600364228 97.87477242327348 4033.832698045553 -63.40355600364228 97.87477242327348 4033.832698045553 -50.87156937827581 103.5086471475886 4029.946876160882 -50.87156937827581 103.5086471475886 4029.946876160882 -40.49182216606164 113.2587461975098 4025.823708229857 -40.49182216606164 113.2587461975098 4025.823708229857 -33.58652412933088 126.0935102994866 4021.49775276222 -33.58652412933088 126.0935102994866 4021.49775276222 -31.00757974122189 140.6020900519301 4017.012811585211 -31.00757974122189 140.6020900519301 4017.012811585211 -33.04585777299258 155.1882632064092 4012.424554123772 -33.04585777299258 155.1882632064092 4012.424554123772 -39.4131986615032 168.2790923972158 4007.801573791643 -39.4131986615032 168.2790923972158 4007.801573791643 -49.29638341786085 178.5231493878894 4003.224814450923 -49.29638341786085 178.5231493878894 4003.224814450923 -61.47418034398538 184.9552341255069 3998.785491443026 -61.47418034398538 184.9552341255069 3998.785491443026 -74.48171669876683 187.1090614089416 3994.581798461701 -74.48171669876683 187.1090614089416 3994.581798461701 -86.80147781920755 185.0658215479871 3990.714821534422 -86.80147781920755 185.0658215479871 3990.714821534422 -106.6753484159949 175.4964881603082 3987.058312549198 -97.05768599202565 179.4341125670692 3987.284161880996 -97.05768599202565 179.4341125670692 3987.284161880996 -106.6753484159949 175.4964881603082 3987.058312549198 -118.0640208314499 172.2664377730133 3989.980690501599 -118.0640208314499 172.2664377730133 3989.980690501599 -128.424299405968 165.024107615738 3993.315077327045 -128.424299405968 165.024107615738 3993.315077327045 -136.3459249254636 154.3015476219637 3997.027295663569 -136.3459249254636 154.3015476219637 3997.027295663569 -140.6873380371869 141.1062347985297 4001.078701900951 -140.6873380371869 141.1062347985297 4001.078701900951 -140.7283341805373 126.7990598478786 4005.422414007606 -140.7283341805373 126.7990598478786 4005.422414007606 -136.2721949937038 112.9257541950119 4010.000514034231 -136.2721949937038 112.9257541950119 4010.000514034231 -127.6838778991985 101.0212715118523 4014.742584541025 -127.6838778991985 101.0212715118523 4014.742584541025 -115.8579857918012 92.41026159080785 4019.565791145998 -115.8579857918012 92.41026159080785 4019.565791145998 -102.1182745477074 88.02789359255398 4024.376548569193 -102.1182745477074 88.02789359255398 4024.376548569193 -88.05853961845673 88.28370836471217 4029.073623180164 -88.05853961845673 88.28370836471217 4029.073623180164 -75.34197709784553 92.98699239871598 4033.552350877224 -75.34197709784553 92.98699239871598 4033.552350877224 -61.77922525589861 95.20895867644356 4029.678661023621 -61.77922525589861 95.20895867644356 4029.678661023621 -49.23032765103721 101.9651777134805 4025.594206263704 -49.23032765103721 101.9651777134805 4025.594206263704 -39.23938357437828 112.6011612341298 4021.329808015784 -39.23938357437828 112.6011612341298 4021.329808015784 -32.99434762190367 125.9743083401079 4016.922654706183 -32.99434762190367 125.9743083401079 4016.922654706183 -31.18921180505618 140.6177233266581 4012.4198763001 -31.18921180505618 140.6177233266581 4012.4198763001 -33.95263413179168 154.9371018032625 4007.880748285579 -33.95263413179168 154.9371018032625 4007.880748285579 -40.84877770237858 167.4161685960547 4003.377319985491 -40.84877770237858 167.4161685960547 4003.377319985491 -50.947749129356 176.8060823837671 3998.993447725692 -50.947749129356 176.8060823837671 3998.993447725692 -62.9552139271043 182.2768334058231 3994.822394974344 -62.9552139271043 182.2768334058231 3994.822394974344 -75.38432555803911 183.5135947169414 3990.963320049486 -75.38432555803911 183.5135947169414 3990.963320049486 -86.74867719496547 180.7476596402618 3987.517091268355 -86.74867719496547 180.7476596402618 3987.517091268355 -104.1908678264454 171.2646584622864 3984.383793096358 -95.75299122653928 174.7192597340331 3984.581937791734 -95.75299122653928 174.7192597340331 3984.581937791734 -104.1908678264454 171.2646584622864 3984.383793096358 -114.9462366666132 169.2031290160457 3986.854934531777 -114.9462366666132 169.2031290160457 3986.854934531777 -125.1158497083218 163.1527154671213 3989.795486224306 -125.1158497083218 163.1527154671213 3989.795486224306 -133.2545563877125 153.4951612644966 3993.171571851313 -133.2545563877125 153.4951612644966 3993.171571851313 -138.1377423760659 141.1091083894971 3996.94598537532 -138.1377423760659 141.1091083894971 3996.94598537532 -138.9233525195996 127.2628732879143 4001.074257535453 -138.9233525195996 127.2628732879143 4001.074257535453 -135.267769650827 113.4570692539392 4005.501588501666 -135.267769650827 113.4570692539392 4005.501588501666 -127.3808447337788 101.2353344622867 4010.161030536809 -127.3808447337788 101.2353344622867 4010.161030536809 -116.0121669063449 91.98548891591548 4014.973166547476 -116.0121669063449 91.98548891591548 4014.973166547476 -102.368496449664 86.7550954542826 4019.847361727861 -102.368496449664 86.7550954542826 4019.847361727861 -87.97033514377836 86.1044007070701 4024.684483670104 -87.97033514377836 86.1044007070701 4024.684483670104 -74.46300828414678 90.01601558689559 4029.380810694194 -74.46300828414678 90.01601558689559 4029.380810694194 -60.59351931990341 93.31886984059142 4025.31478967349 -60.59351931990341 93.31886984059142 4025.31478967349 -48.1909632581137 101.0322175088841 4021.094710018539 -48.1909632581137 101.0322175088841 4021.094710018539 -38.69848918408479 112.3595581728086 4016.753186383659 -38.69848918408479 112.3595581728086 4016.753186383659 -33.16601946457126 126.0632747617513 4012.330171402678 -33.16601946457126 126.0632747617513 4012.330171402678 -32.13036335365973 140.6363306798444 4007.876157070448 -32.13036335365973 140.6363306798444 4007.876157070448 -35.56286911853999 154.5009210566542 4003.453962086438 -35.56286911853999 154.5009210566542 4003.453962086438 -42.88845389219296 166.2096553712174 3999.138943049418 -42.88845389219296 166.2096553712174 3999.138943049418 -53.07162971278217 174.6253486934231 3995.017651409322 -53.07162971278217 174.6253486934231 3995.017651409322 -64.75764581471731 179.0585973553665 3991.185134257778 -64.75764581471731 179.0585973553665 3991.185134257778 -76.45086393789052 179.3476133175729 3987.741226958628 -76.45086393789052 179.3476133175729 3987.741226958628 -86.70857479119877 175.8716757394114 3984.786294041864 -86.70857479119877 175.8716757394114 3984.786294041864 -101.4588615339758 166.5773752901841 3982.249455722089 -94.32702049121008 169.497264772389 3982.416931087975 -94.32702049121008 169.497264772389 3982.416931087975 -101.4588615339758 166.5773752901841 3982.249455722089 -111.4471772448858 165.7432972918401 3984.205363189136 -111.4471772448858 165.7432972918401 3984.205363189136 -121.3067033779078 160.9829171597182 3986.687887704578 -121.3067033779078 160.9829171597182 3986.687887704578 -129.56902991743 152.5237829036538 3989.663183585626 -129.56902991743 152.5237829036538 3989.663183585626 -134.9369479132547 141.108381596444 3993.095227165759 -134.9369479132547 141.108381596444 3993.095227165759 -136.4548418526283 127.9020836718891 3996.941745303722 -136.4548418526283 127.9020836718891 3996.941745303722 -133.637443935756 114.3476257485105 4001.150899636326 -133.637443935756 114.3476257485105 4001.150899636326 -126.5410398182353 101.9830937997527 4005.659133093872 -126.5410398182353 101.9830937997527 4005.659133093872 -115.7676472813889 92.24485076304326 4010.390456571389 -115.7676472813889 92.24485076304326 4010.390456571389 -102.4003024053964 86.27901973622917 4015.257291506568 -102.4003024053964 86.27901973622917 4015.257291506568 -87.87558262668176 84.78470133309023 4020.162805323733 -87.87558262668176 84.78470133309023 4020.162805323733 -73.80701443341127 87.90905417395545 4025.004500238249 -73.80701443341127 87.90905417395545 4025.004500238249 -59.83122781595785 92.17508352558146 4020.80848031069 -59.83122781595785 92.17508352558146 4020.80848031069 -47.7312766109419 100.6856622666885 4016.515955603343 -47.7312766109419 100.6856622666885 4016.515955603343 -38.84156457518407 112.5167791318986 4012.16155267198 -38.84156457518407 112.5167791318986 4012.16155267198 -34.07057106916886 126.351352945872 4007.78811302963 -34.07057106916886 126.351352945872 4007.78811302963 -33.79888360095288 140.6575595460289 4003.449517720977 -33.79888360095288 140.6575595460289 4003.449517720977 -37.84552228426833 153.8880820773324 3999.212062148499 -37.84552228426833 153.8880820773324 3999.212062148499 -45.50451398660971 164.6760433102211 3995.154261363483 -45.50451398660971 164.6760433102211 3995.154261363483 -55.64562925232463 172.0044301712434 3991.365147887595 -55.64562925232463 172.0044301712434 3991.365147887595 -66.86602517632696 175.3293844422139 3987.941294474704 -66.86602517632696 175.3293844422139 3987.941294474704 -77.67398055387548 174.6433712321216 3984.982935305756 -77.67398055387548 174.6433712321216 3984.982935305756 -86.68252135950343 170.4713069580286 3982.589656568709 -86.68252135950343 170.4713069580286 3982.589656568709 -101.4588615339758 166.5773752901841 3982.249455722089 -90.66028579951808 170.0175394111986 3817.200313944122 -97.79212684227741 167.0976499289947 3817.032838578158 -94.32702049121008 169.497264772389 3982.416931087975 -94.32702049121008 169.497264772389 3982.416931087975 -101.4588615339758 166.5773752901841 3982.249455722089 -90.66028579951808 170.0175394111986 3817.200313944122 -97.79212684227741 167.0976499289947 3817.032838578158 -107.5920213066572 161.9106241542766 3982.098643640347 -107.5920213066572 161.9106241542766 3982.098643640347 -117.0274139865853 158.5314478619878 3984.058807773339 -117.0274139865853 158.5314478619878 3984.058807773339 -125.3232932546498 151.3960464447757 3986.568556032731 -125.3232932546498 151.3960464447757 3986.568556032731 -131.1200845867513 141.1039842716594 3989.592798791569 -131.1200845867513 141.1039842716594 3989.592798791569 -133.3568217804289 128.7079071758494 3993.091246034444 -133.3568217804289 128.7079071758494 3993.091246034444 -131.4119102447089 115.5805103780061 3997.014864402696 -131.4119102447089 115.5805103780061 3997.014864402696 -125.1898382202764 103.2406449566826 4001.303405170906 -125.1898382202764 103.2406449566826 4001.303405170906 -115.1428568992635 93.15906595091286 4005.884311380869 -115.1428568992635 93.15906595091286 4005.884311380869 -102.2240228512248 86.56698970392172 4010.673157132904 -102.2240228512248 86.56698970392172 4010.673157132904 -87.77591046742668 84.29075041698691 4015.575596771983 -87.77591046742668 84.29075041698691 4015.575596771983 -73.36691244919257 86.63335833035589 4020.490624973891 -73.36691244919257 86.63335833035589 4020.490624973891 -59.47714036439743 91.74817734124635 4016.227129251261 -59.47714036439743 91.74817734124635 4016.227129251261 -47.82906812096621 100.9014077198119 4011.925511195754 -47.82906812096621 100.9014077198119 4011.925511195754 -39.64103532766899 113.0556662297408 4007.622616219273 -39.64103532766899 113.0556662297408 4007.622616219273 -35.67703384751735 126.8294862738944 4003.364289765565 -35.67703384751735 126.8294862738944 4003.364289765565 -36.16262176083728 140.6810573597251 3999.207822076822 -36.16262176083728 140.6810573597251 3999.207822076822 -40.76955318006412 153.1069459760822 3995.222915093982 -40.76955318006412 153.1069459760822 3995.222915093982 -48.669244741282 162.8318230005972 3991.491093307521 -48.669244741282 162.8318230005972 3991.491093307521 -58.6473518321925 168.966808671609 3988.103659546356 -58.6473518321925 168.966808671609 3988.103659546356 -69.26490118148263 171.1180531344591 3985.15846080659 -69.26490118148263 171.1180531344591 3985.15846080659 -79.04632412154774 169.4331224818282 3982.755861208079 -79.04632412154774 169.4331224818282 3982.755861208079 -83.01578666781597 170.9915815968336 3817.373039424876 -86.68252135950343 170.4713069580286 3982.589656568709 -86.68252135950343 170.4713069580286 3982.589656568709 -83.01578666781597 170.9915815968336 3817.373039424876 -107.5920213066572 161.9106241542766 3982.098643640347 -103.9252866149529 162.430898793088 3816.882026496322 -107.5920213066572 161.9106241542766 3982.098643640347 -103.9252866149529 162.430898793088 3816.882026496322 -112.3085351062628 155.8150427424035 3981.974772436892 -112.3085351062628 155.8150427424035 3981.974772436892 -120.5512941394181 150.1205857932334 3983.954114358632 -120.5512941394181 150.1205857932334 3983.954114358632 -126.7222823344816 141.0958462673968 3986.505071772433 -126.7222823344816 141.0958462673968 3986.505071772433 -129.6633119038061 129.6715599757928 3989.589128449576 -129.6633119038061 129.6715599757928 3989.589128449576 -128.6218609738876 117.1388098416967 3993.159899764989 -128.6218609738876 117.1388098416967 3993.159899764989 -123.3526150075397 104.9840833654554 3997.160359726451 -123.3526150075397 104.9840833654554 3997.160359726451 -114.1562257423345 94.69885329822841 4001.52138113907 -114.1562257423345 94.69885329822841 4001.52138113907 -101.8499882234441 87.58632862290149 4006.161777834406 -101.8499882234441 87.58632862290149 4006.161777834406 -87.67294706628172 84.58868813296238 4010.989866645259 -87.67294706628172 84.58868813296238 4010.989866645259 -73.13561923503812 86.15617822653464 4015.906390365773 -73.13561923503812 86.15617822653464 4015.906390365773 -59.51604658550673 92.00872889743674 4011.638132810511 -59.51604658550673 92.00872889743674 4011.638132810511 -48.46213819964828 101.6553496011595 4007.390944973387 -48.46213819964828 101.6553496011595 4007.390944973387 -41.06932702152562 113.9590615846494 4003.204086364267 -41.06932702152562 113.9590615846494 4003.204086364267 -37.95443921144056 127.488618127265 3999.126511788603 -37.95443921144056 127.488618127265 3999.126511788603 -39.18942704723145 140.7064715554712 3995.218933962704 -39.18942704723145 140.7064715554712 3995.218933962704 -44.30392135698253 152.1658738636609 3991.55438754534 -44.30392135698253 152.1658738636609 3991.55438754534 -52.35493291187709 160.6934850298545 3988.21725726186 -52.35493291187709 160.6934850298545 3988.21725726186 -62.05440153659288 165.5359660489149 3985.300908771415 -62.05440153659288 165.5359660489149 3985.300908771415 -71.93882299969687 166.4534619001586 3982.904218434609 -71.93882299969687 166.4534619001586 3982.904218434609 -75.37958942985665 169.9533971206363 3817.539244064192 -79.04632412154774 169.4331224818282 3982.755861208079 -79.04632412154774 169.4331224818282 3982.755861208079 -75.37958942985665 169.9533971206363 3817.539244064192 -108.6418004145673 156.335317381216 3816.758155292964 -112.3085351062628 155.8150427424035 3981.974772436892 -108.6418004145673 156.335317381216 3816.758155292964 -112.3085351062628 155.8150427424035 3981.974772436892 -115.2869803117794 148.7060348543636 3981.8862837297 -115.2869803117794 148.7060348543636 3981.8862837297 -121.7786710944288 141.0838974359349 3983.898417627903 -121.7786710944288 141.0838974359349 3983.898417627903 -125.4083318235439 130.7842582477767 3986.501761271225 -125.4083318235439 130.7842582477767 3986.501761271225 -125.297988519505 119.0056108388601 3989.652422687408 -125.297988519505 119.0056108388601 3989.652422687408 -121.0547452477135 107.1895044584919 3993.296509719097 -121.0547452477135 107.1895044584919 3993.296509719097 -112.8261837929222 96.83493162371536 3997.368316009157 -112.8261837929222 96.83493162371536 3997.368316009157 -101.288528958393 89.30435975871022 4001.789972838809 -101.288528958393 89.30435975871022 4001.789972838809 -87.56832082352389 85.64465465523708 4006.472623574264 -87.56832082352389 85.64465465523708 4006.472623574264 -73.10605169453288 86.44476403295199 4011.319001878554 -73.10605169453288 86.44476403295199 4011.319001878554 -59.93273609963944 92.92731580400879 4007.108887304577 -59.93273609963944 92.92731580400879 4007.108887304577 -49.60828725843089 102.923383643659 4002.979825114242 -49.60828725843089 102.923383643659 4002.979825114242 -43.09886523674254 115.2098073149744 3998.973672445445 -43.09886523674254 115.2098073149744 3998.973672445445 -40.8718185727796 128.3196918874201 3995.142589277115 -40.8718185727796 128.3196918874201 3995.142589277115 -42.84714867404364 140.7334495677935 3991.550717203361 -42.84714867404364 140.7334495677935 3991.550717203361 -48.41758636608688 151.0732268508466 3988.274346124865 -48.41758636608688 151.0732268508466 3988.274346124865 -56.53386525406791 158.2775199855353 3985.400571606622 -56.53386525406791 158.2775199855353 3985.400571606622 -65.84438244970329 161.7353841575402 3983.024617948551 -65.84438244970329 161.7353841575402 3983.024617948551 -68.27208830800805 166.9737365389692 3817.687601290727 -71.93882299969687 166.4534619001586 3982.904218434609 -71.93882299969687 166.4534619001586 3982.904218434609 -68.27208830800805 166.9737365389692 3817.687601290727 -111.620245620077 149.2263094931789 3816.669666585629 -115.2869803117794 148.7060348543636 3981.8862837297 -111.620245620077 149.2263094931789 3816.669666585629 -115.2869803117794 148.7060348543636 3981.8862837297 -116.3243808045525 141.0680676295458 3981.839207877662 -116.3243808045525 141.0680676295458 3981.839207877662 -120.6259011404686 132.0372181678231 3983.895513221503 -120.6259011404686 132.0372181678231 3983.895513221503 -121.470985277763 121.1640000687651 3986.558850134234 -121.470985277763 121.1640000687651 3986.558850134234 -118.3216040084635 109.8330036682138 3989.778368107349 -118.3216040084635 109.8330036682138 3989.778368107349 -111.171161033388 99.53801974609318 3993.491766154177 -111.171161033388 99.53801974609318 3993.491766154177 -100.5499754923787 91.68840637688128 3997.62456137369 -100.5499754923787 91.68840637688128 3997.62456137369 -87.46366013941088 87.42479015800802 4002.090876189694 -87.46366013941088 87.42479015800802 4002.090876189694 -73.2711267312427 87.46636592006693 4006.795664976966 -73.2711267312427 87.46636592006693 4006.795664976966 -60.7119985270806 94.47451567079729 4002.706789049016 -60.7119985270806 94.47451567079729 4002.706789049016 -51.24531570877844 104.6814055801885 3998.759719796015 -51.24531570877844 104.6814055801885 3998.759719796015 -45.70207555333036 116.790745539038 3994.999083801413 -45.70207555333036 116.790745539038 3994.999083801413 -44.39820334335764 129.3136509357987 3991.480332409237 -44.39820334335764 129.3136509357987 3991.480332409237 -47.10363585515961 140.7616388312225 3988.271035623608 -47.10363585515961 140.7616388312225 3988.271035623608 -53.07950775846939 149.8373660483883 3985.450657454961 -53.07950775846939 149.8373660483883 3985.450657454961 -61.17832852351376 155.6004184551422 3983.108854721937 -61.17832852351376 155.6004184551422 3983.108854721937 -62.17764775801356 162.2556587963508 3817.808000804596 -65.84438244970329 161.7353841575402 3983.024617948551 -65.84438244970329 161.7353841575402 3983.024617948551 -62.17764775801356 162.2556587963508 3817.808000804596 -112.6576461128373 141.5883422683544 3816.622590733619 -116.3243808045525 141.0680676295458 3981.839207877662 -112.6576461128373 141.5883422683544 3816.622590733619 -116.3243808045525 141.0680676295458 3981.839207877662 -115.3500394553803 133.4216559119646 3981.83675302249 -115.3500394553803 133.4216559119646 3981.83675302249 -117.171543644871 123.5970642306911 3983.945599069801 -117.171543644871 123.5970642306911 3983.945599069801 -115.1785663574485 112.8906764270103 3986.672447849802 -115.1785663574485 112.8906764270103 3986.672447849802 -109.2095874460715 102.7788364840846 3989.958381737091 -109.2095874460715 102.7788364840846 3989.958381737091 -99.64465826172932 94.70579174298354 3993.732362666726 -99.64465826172932 94.70579174298354 3993.732362666726 -87.36059341420014 89.8952348154905 3997.911633122096 -87.36059341420014 89.8952348154905 3997.911633122096 -73.62376124872367 89.18823405829674 4002.403585125465 -73.62376124872367 89.18823405829674 4002.403585125465 -61.83862348818639 96.62090610765664 3998.499234359812 -61.83862348818639 96.62090610765664 3998.499234359812 -53.35102396211391 106.9053111436751 3994.798197196486 -53.35102396211391 106.9053111436751 3994.798197196486 -48.85138355126674 118.6847183751993 3991.34802977059 -48.85138355126674 118.6847183751993 3991.34802977059 -48.50262493499395 130.4614386538396 3988.207551363461 -48.50262493499395 130.4614386538396 3988.207551363461 -51.92673780451105 140.7906867802765 3985.447753048515 -51.92673780451105 140.7906867802765 3985.447753048515 -58.25864508517179 148.4666525670704 3983.151188157886 -58.25864508517179 148.4666525670704 3983.151188157886 -57.51159383182721 156.1206930939579 3817.892237578104 -61.17832852351376 155.6004184551422 3983.108854721937 -57.51159383182721 156.1206930939579 3817.892237578104 -61.17832852351376 155.6004184551422 3983.108854721937 -111.6833047636703 133.9419305507875 3816.620135878426 -115.3500394553803 133.4216559119646 3981.83675302249 -111.6833047636703 133.9419305507875 3816.620135878426 -115.3500394553803 133.4216559119646 3981.83675302249 -112.4303560170413 126.2878900238943 3981.879086458499 -112.4303560170413 126.2878900238943 3981.879086458499 -111.6510073623513 116.3386181672954 3984.045261905103 -111.6510073623513 116.3386181672954 3984.045261905103 -106.9598930133125 106.5281006564101 3986.834812921317 -106.9598930133125 106.5281006564101 3986.834812921317 -98.58290770274698 98.32383912251613 3990.18019594549 -98.58290770274698 98.32383912251613 3990.18019594549 -87.26074904817233 93.02212880191492 3994.001903002152 -87.26074904817233 93.02212880191492 3994.001903002152 -74.15687215053617 91.57761861810795 3998.209967788984 -74.15687215053617 91.57761861810795 3998.209967788984 -63.29740060324434 99.33706472443814 3994.553619552546 -63.29740060324434 99.33706472443814 3994.553619552546 -55.90321242989603 109.5709960670168 3991.162825493344 -55.90321242989603 109.5709960670168 3991.162825493344 -52.51921481053842 120.8745679417688 3988.088219691594 -52.51921481053842 120.8745679417688 3988.088219691594 -53.15411475952124 131.7539984229907 3985.392056317813 -53.15411475952124 131.7539984229907 3985.392056317813 -57.28430373600259 140.8202408494987 3983.148733302645 -57.28430373600259 140.8202408494987 3983.148733302645 -54.59191039349093 148.986927205889 3817.934571014033 -58.25864508517179 148.4666525670704 3983.151188157886 -54.59191039349093 148.986927205889 3817.934571014033 -58.25864508517179 148.4666525670704 3983.151188157886 -108.7636213253288 126.8081646627142 3816.662469314424 -112.4303560170413 126.2878900238943 3981.879086458499 -108.7636213253288 126.8081646627142 3816.662469314424 -112.4303560170413 126.2878900238943 3981.879086458499 -107.7643020908458 120.1529243215012 3981.963323231774 -107.7643020908458 120.1529243215012 3981.963323231774 -104.4405077174522 110.7565310817591 3984.187709869717 -104.4405077174522 110.7565310817591 3984.187709869717 -97.37505425174959 102.5098717810389 3987.034880437568 -97.37505425174959 102.5098717810389 3987.034880437568 -87.16575544157558 96.77161229147156 3990.428694460565 -87.16575544157558 96.77161229147156 3990.428694460565 -74.86337634025449 94.60176976995882 3994.282018432008 -74.86337634025449 94.60176976995882 3994.282018432008 -65.07311949257678 102.593569130975 3990.937340942983 -65.07311949257678 102.593569130975 3990.937340942983 -58.87968152359258 112.6543560831424 3987.921172864324 -58.87968152359258 112.6543560831424 3987.921172864324 -56.67799491114897 123.3431363570871 3985.287362903047 -56.67799491114897 123.3431363570871 3985.287362903047 -58.32170422877357 133.1822736246808 3983.101657450656 -58.32170422877357 133.1822736246808 3983.101657450656 -53.61756904431536 141.340515488311 3817.932116158787 -57.28430373600259 140.8202408494987 3983.148733302645 -53.61756904431536 141.340515488311 3817.932116158787 -57.28430373600259 140.8202408494987 3983.148733302645 -104.0975673991397 120.6731989603181 3816.746706087826 -107.7643020908458 120.1529243215012 3981.963323231774 -104.0975673991397 120.6731989603181 3816.746706087826 -107.7643020908458 120.1529243215012 3981.963323231774 -101.669861540857 115.4348465788807 3982.083722745729 -101.669861540857 115.4348465788807 3982.083722745729 -96.0314283450648 107.2312129840899 3984.363235370587 -96.0314283450648 107.2312129840899 3984.363235370587 -87.07724099467532 101.1098254583526 3987.2590161278 -87.07724099467532 101.1098254583526 3987.2590161278 -75.73619072141219 98.22793768429068 3990.686942519122 -75.73619072141219 98.22793768429068 3990.686942519122 -67.1505697765167 106.360996937135 3987.717794846874 -67.1505697765167 106.360996937135 3987.717794846874 -62.25823165463226 116.131286924952 3985.140807487242 -62.25823165463226 116.131286924952 3985.140807487242 -61.30014943308674 126.0732657394946 3983.013168743502 -61.30014943308674 126.0732657394946 3983.013168743502 -54.65496953708043 133.7025482634938 3817.885040306834 -58.32170422877357 133.1822736246808 3983.101657450656 -54.65496953708043 133.7025482634938 3817.885040306834 -58.32170422877357 133.1822736246808 3983.101657450656 -98.00312684915025 115.9551212177034 3816.867105601756 -101.669861540857 115.4348465788807 3982.083722745729 -101.669861540857 115.4348465788807 3982.083722745729 -98.00312684915025 115.9551212177034 3816.867105601756 -94.56236041900479 112.4551859972163 3982.232079972278 -94.56236041900479 112.4551859972163 3982.232079972278 -86.99683410774719 106.0029084768045 3984.559876634567 -86.99683410774719 106.0029084768045 3984.559876634567 -76.76823219762105 102.4233725315452 3987.491945515181 -76.76823219762105 102.4233725315452 3987.491945515181 -69.51454107537165 110.6099257527554 3984.962377580021 -69.51454107537165 110.6099257527554 3984.962377580021 -66.01666323447307 119.9776843253487 3982.889297539939 -66.01666323447307 119.9776843253487 3982.889297539939 -57.63341474141907 126.5935403782877 3817.796551599595 -61.30014943308674 126.0732657394946 3983.013168743502 -57.63341474141907 126.5935403782877 3817.796551599595 -61.30014943308674 126.0732657394946 3983.013168743502 -90.89562572729665 112.9754606360352 3817.015462828273 -94.56236041900479 112.4551859972163 3982.232079972278 -94.56236041900479 112.4551859972163 3982.232079972278 -90.89562572729665 112.9754606360352 3817.015462828273 -86.92616318104797 111.4170015210164 3982.398284611658 -86.92616318104797 111.4170015210164 3982.398284611658 -77.95241767240213 107.1553244821827 3984.764232884647 -77.95241767240213 107.1553244821827 3984.764232884647 -72.14982300945121 115.3109331876837 3982.73848545814 -72.14982300945121 115.3109331876837 3982.73848545814 -62.34992854277402 120.4979589641568 3817.672680396076 -66.01666323447307 119.9776843253487 3982.889297539939 -62.34992854277402 120.4979589641568 3817.672680396076 -66.01666323447307 119.9776843253487 3982.889297539939 -83.25942848934301 111.9372761598391 3817.181667467652 -86.92616318104797 111.4170015210164 3982.398284611658 -86.92616318104797 111.4170015210164 3982.398284611658 -83.25942848934301 111.9372761598391 3817.181667467652 -79.28166404934541 112.3910437066492 3982.571010092384 -79.28166404934541 112.3910437066492 3982.571010092384 -72.14982300945121 115.3109331876837 3982.73848545814 -68.48308831772374 115.8312078265216 3817.52186831423 -72.14982300945121 115.3109331876837 3982.73848545814 -68.48308831772374 115.8312078265216 3817.52186831423 -75.61492935764522 112.9113183454823 3817.354392948413 -79.28166404934541 112.3910437066492 3982.571010092384 -79.28166404934541 112.3910437066492 3982.571010092384 -75.61492935764522 112.9113183454823 3817.354392948413</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1058\" source=\"#ID10246\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10243\">\r\n\t\t\t\t\t<float_array count=\"3174\" id=\"ID10247\">-0.1295239316492728 0.1856034834162052 0.9740507677086883 -0.1010697206116564 0.3006752882632935 0.9483560948310857 -0.1769173382294742 0.269622063771952 0.9465749828519405 -0.07702913712085688 0.2070956896377041 0.9752834907696837 0.07702913712085688 -0.2070956896377041 -0.9752834907696837 0.1295239316492728 -0.1856034834162052 -0.9740507677086883 0.1010697206116564 -0.3006752882632935 -0.9483560948310857 0.1769173382294742 -0.269622063771952 -0.9465749828519405 -0.01976994912430115 0.3110342935728704 0.9501930421410421 -0.02076085957026843 0.2142652471319519 0.9765548579477691 0.02076085957026843 -0.2142652471319519 -0.9765548579477691 0.01976994912430115 -0.3110342935728704 -0.9501930421410421 -0.1270214557919849 0.402818132989273 0.9064232463388839 -0.2283489931657588 0.3613330229204388 0.9040437953259577 0.1270214557919849 -0.402818132989273 -0.9064232463388839 0.2283489931657588 -0.3613330229204388 -0.9040437953259577 -0.1746678096649016 0.1512532868106096 0.9729406968031777 -0.2421439121862569 0.2199908460318716 0.9449710860408987 0.1746678096649016 -0.1512532868106096 -0.9729406968031777 0.2421439121862569 -0.2199908460318716 -0.9449710860408987 -0.08658430031891379 0.1098486412252022 0.9901699020669438 -0.05515301938424787 0.1227171089989172 0.9909079955332627 0.05515301938424787 -0.1227171089989172 -0.9909079955332627 0.08658430031891379 -0.1098486412252022 -0.9901699020669438 0.03544631086141774 0.2066235624076365 0.9777782276693899 0.06144153115183993 0.2999931306116198 0.9519606398562691 -0.06144153115183993 -0.2999931306116198 -0.9519606398562691 -0.03544631086141774 -0.2066235624076365 -0.9777782276693899 -0.01841019162418618 0.4166570976253264 0.9088772897607244 0.01841019162418618 -0.4166570976253264 -0.9088772897607244 -0.02146236384010215 0.1270098846519704 0.9916692271816688 0.02146236384010215 -0.1270098846519704 -0.9916692271816688 -0.1542440725022253 0.5114555655487033 0.845353163220665 -0.2826586737825429 0.4588805794536875 0.8423376329808266 0.1542440725022253 -0.5114555655487033 -0.845353163220665 0.2826586737825429 -0.4588805794536875 -0.8423376329808266 -0.3154874995307204 0.2950289091159839 0.9019010923741507 0.3154874995307204 -0.2950289091159839 -0.9019010923741507 -0.2093842904874353 0.1063860089506861 0.972028927551345 -0.2923043592597703 0.1551639205133383 0.9436537073146406 0.2093842904874353 -0.1063860089506861 -0.972028927551345 0.2923043592597703 -0.1551639205133383 -0.9436537073146406 -0.113614216809864 0.08928144614841596 0.9895052466320371 0.113614216809864 -0.08928144614841596 -0.9895052466320371 -0.02218792452006872 -0.003148254616264007 0.9997488607137111 0.02218792452006872 0.003148254616264007 -0.9997488607137111 0.08776194840021982 0.1846914036482881 0.9788702293110267 0.1370302920444249 0.2683042363868491 0.9535384291149934 -0.1370302920444249 -0.2683042363868491 -0.9535384291149934 -0.08776194840021982 -0.1846914036482881 -0.9788702293110267 0.09008312116900979 0.4019068142580092 0.911238686587344 -0.09008312116900979 -0.4019068142580092 -0.911238686587344 0.01219170377883072 0.1224344226192848 0.992401720331465 -0.01219170377883072 -0.1224344226192848 -0.992401720331465 -0.01659864517133023 0.5289939876956704 0.8484632260506694 0.01659864517133023 -0.5289939876956704 -0.8484632260506694 -0.1815724016073408 0.6225055120411525 0.761261026490208 -0.3376585483702959 0.5586013538415202 0.7575956917768774 0.1815724016073408 -0.6225055120411525 -0.761261026490208 0.3376585483702959 -0.5586013538415202 -0.7575956917768774 -0.3930912061517994 0.3748519278332731 0.8396221387301565 0.3930912061517994 -0.3748519278332731 -0.8396221387301565 -0.3824986296781225 0.2084243073557201 0.9001411591509672 0.3824986296781225 -0.2084243073557201 -0.9001411591509672 -0.2313075033239937 0.0540592806626372 0.9713775955210512 -0.3239803278781337 0.07955913505449927 0.9427126238559432 0.2313075033239937 -0.0540592806626372 -0.9713775955210512 0.3239803278781337 -0.07955913505449927 -0.9427126238559432 -0.1344007247232387 0.06241714411441451 0.9889593243983641 0.1344007247232387 -0.06241714411441451 -0.9889593243983641 0.1326208288141407 0.1499634112286694 0.9797564447643666 0.2018450844223476 0.2181271566714721 0.9548188861857282 -0.2018450844223476 -0.2181271566714721 -0.9548188861857282 -0.1326208288141407 -0.1499634112286694 -0.9797564447643666 0.1910648426132048 0.3595724903215923 0.9133465115284118 -0.1910648426132048 -0.3595724903215923 -0.9133465115284118 0.0435157143837548 0.1093025330718457 0.9930555567871063 -0.0435157143837548 -0.1093025330718457 -0.9930555567871063 0.1208972998077015 0.5103006314123996 0.8514558758264067 -0.1208972998077015 -0.5103006314123996 -0.8514558758264067 -0.01426631524833273 0.6438232181731185 0.7650412642403313 0.01426631524833273 -0.6438232181731185 -0.7650412642403313 -0.2072742831318812 0.7296090258456163 0.6516962796861553 -0.3900262127660321 0.6547874707962146 0.6474047585890007 0.2072742831318812 -0.7296090258456163 -0.6516962796861553 0.3900262127660321 -0.6547874707962146 -0.6474047585890007 -0.4718877425803377 0.4564657063485215 0.7542950466032362 0.4718877425803377 -0.4564657063485215 -0.7542950466032362 -0.4780158750247709 0.2650960244323722 0.8373917369155571 0.4780158750247709 -0.2650960244323722 -0.8373917369155571 -0.4248156858322228 0.1074211781237143 0.8988839321967055 0.4248156858322228 -0.1074211781237143 -0.8988839321967055 -0.2389434174439024 -0.002160917976491327 0.9710310879131151 -0.3350131531225373 -0.001671169151693611 0.9422119689478382 0.2389434174439024 0.002160917976491327 -0.9710310879131151 0.3350131531225373 0.001671169151693611 -0.9422119689478382 -0.1475272578974486 0.03108649290491691 0.9885693390633418 0.1475272578974486 -0.03108649290491691 -0.9885693390633418 0.1669658935238756 0.1048062404426176 0.9803764799117011 0.2514688872890514 0.1528813765291223 0.9557147500358918 -0.2514688872890514 -0.1528813765291223 -0.9557147500358918 -0.1669658935238756 -0.1048062404426176 -0.9803764799117011 0.2776532352769058 0.2925391400340233 0.9150571197954919 -0.2776532352769058 -0.2925391400340233 -0.9150571197954919 0.07037498844311393 0.08850913258519524 0.9935861786733188 -0.07037498844311393 -0.08850913258519524 -0.9935861786733188 0.248873641005275 0.4566494180360644 0.8541271684123515 -0.248873641005275 -0.4566494180360644 -0.8541271684123515 0.1528580774092889 0.6211017057963129 0.768678788069273 -0.1528580774092889 -0.6211017057963129 -0.768678788069273 -0.01138559758261924 0.7545686523856657 0.6561223338711822 0.01138559758261924 -0.7545686523856657 -0.6561223338711822 -0.2292248821527574 0.8246652146784149 0.5170911303643279 -0.4356137578854591 0.7401663168650067 0.5122445483549817 0.2292248821527574 -0.8246652146784149 -0.5170911303643279 0.4356137578854591 -0.7401663168650067 -0.5122445483549817 -0.547187144494842 0.5352029525633082 0.6435402306515874 0.547187144494842 -0.5352029525633082 -0.6435402306515874 -0.5751124864742742 0.32305894515581 0.7515840244817562 0.5751124864742742 -0.32305894515581 -0.7515840244817562 -0.5316452045645465 0.137092552679673 0.8357984257363091 0.5316452045645465 -0.137092552679673 -0.8357984257363091 -0.4395548305482064 -0.001097282229586834 0.8982150894487611 0.4395548305482064 0.001097282229586834 -0.8982150894487611 -0.3246509661853828 -0.08299128111776305 0.9421858613953671 -0.2317716579186105 -0.05844327334224829 0.9710130186494422 0.2317716579186105 0.05844327334224829 -0.9710130186494422 0.3246509661853828 0.08299128111776305 -0.9421858613953671 -0.1520992647839657 -0.002575375352514825 0.9883618674827409 0.1520992647839657 0.002575375352514825 -0.9883618674827409 0.1884565831318435 0.05229727784993096 0.9806880803822171 0.2825199204890505 0.07701328804766462 0.9561649690251929 -0.2825199204890505 -0.07701328804766462 -0.9561649690251929 -0.1884565831318435 -0.05229727784993096 -0.9806880803822171 0.3439474432888007 0.2053749754416787 0.916253936262992 -0.3439474432888007 -0.2053749754416787 -0.916253936262992 0.09093911080212151 0.06147125703187797 0.9939574249863221 -0.09093911080212151 -0.06147125703187797 -0.9939574249863221 0.3586090022614176 0.3716965890946101 0.8562950596333621 -0.3586090022614176 -0.3716965890946101 -0.8562950596333621 0.3084115251890661 0.5558894084301372 0.7719257067398041 -0.3084115251890661 -0.5558894084301372 -0.7719257067398041 0.1842903536821123 0.7279653931153198 0.6603812928650991 -0.1842903536821123 -0.7279653931153198 -0.6603812928650991 -0.008000156043205786 0.8528530935741203 0.5220896458313812 0.008000156043205786 -0.8528530935741203 -0.5220896458313812 -0.2453472782958995 0.8994180557202163 0.3617345353671125 -0.4702854747580267 0.8073247701209128 0.3564523639714465 0.2453472782958995 -0.8994180557202163 -0.3617345353671125 0.4702854747580267 -0.8073247701209128 -0.3564523639714465 -0.6131017224362411 0.6051148603773635 0.5078801863591438 0.6131017224362411 -0.6051148603773635 -0.5078801863591438 -0.6680468205399756 0.3790049584432095 0.640366057065715 0.6680468205399756 -0.3790049584432095 -0.640366057065715 -0.6402981843450056 0.1674725205698557 0.7496473770903679 0.6402981843450056 -0.1674725205698557 -0.7496473770903679 -0.5503244445877681 -0.0004352623542029427 0.8349507867149103 0.5503244445877681 0.0004352623542029427 -0.8349507867149103 -0.4257116154677276 -0.1097357199706761 0.8981802114377576 0.4257116154677276 0.1097357199706761 -0.8981802114377576 -0.2935999329855662 -0.1588593696021604 0.9426360803833445 -0.2102809683106025 -0.1109522359358725 0.9713246191192655 0.2102809683106025 0.1109522359358725 -0.9713246191192655 0.2935999329855662 0.1588593696021604 -0.9426360803833445 -0.1478051706631055 -0.03627445998498699 0.9883510485035405 0.1478051706631055 0.03627445998498699 -0.9883510485035405 0.1956283426568699 -0.003985077518039496 0.9806700111181649 0.292882107424255 -0.004306823920479701 0.9561388614727703 -0.292882107424255 0.004306823920479701 -0.9561388614727703 -0.1956283426568699 0.003985077518039496 -0.9806700111181649 0.3854296259338536 0.1040200903132916 0.9168553998661426 -0.3854296259338536 -0.1040200903132916 -0.9168553998661426 0.103806670507832 0.03003149295949611 0.9941439959023554 -0.103806670507832 -0.03003149295949611 -0.9941439959023554 0.4426251000526756 0.2612315394918711 0.857811811283842 -0.4426251000526756 -0.2612315394918711 -0.857811811283842 0.4417933176916865 0.4526304363694948 0.7745607481114268 -0.4417933176916865 -0.4526304363694948 -0.7745607481114268 0.3664185779530116 0.651612216188725 0.664182915652391 -0.3664185779530116 -0.651612216188725 -0.664182915652391 0.2129843209482151 0.8228089961861649 0.5268994541896426 -0.2129843209482151 -0.8228089961861649 -0.5268994541896426 -0.004239850741707389 0.9301393366916785 0.3671822953308783 0.004239850741707389 -0.9301393366916785 -0.3671822953308783 -0.2541748467615946 0.9476220926832485 0.1934102291305722 -0.491020891501128 0.8506535440589035 0.1878484284987888 0.2541748467615946 -0.9476220926832485 -0.1934102291305722 0.491020891501128 -0.8506535440589035 -0.1878484284987888 -0.6637252737678741 0.6601354851164751 0.3516957523937365 0.6637252737678741 -0.6601354851164751 -0.3516957523937365 -0.74959326433288 0.4287143787919499 0.5042954684347358 0.74959326433288 -0.4287143787919499 -0.5042954684347358 -0.7443688537088222 0.1968381236043894 0.6380985525168639 0.7443688537088222 -0.1968381236043894 -0.6380985525168639 -0.6630025386060025 0.0003093903085491057 0.7486170837481824 0.6630025386060025 -0.0003093903085491057 -0.7486170837481824 -0.5327806357565388 -0.1381151273490725 0.8349065850502128 0.5327806357565388 0.1381151273490725 -0.8349065850502128 -0.3842294328212401 -0.2110906051014833 0.8987816750422528 0.3842294328212401 0.2110906051014833 -0.8987816750422528 -0.2439761301196889 -0.2241051497464852 0.943531944233435 -0.1759359035987225 -0.1561094067224211 0.9719446542667308 0.1759359035987225 0.1561094067224211 -0.9719446542667308 0.2439761301196889 0.2241051497464852 -0.943531944233435 -0.1349376109591542 -0.06771422406439763 0.9885376194197125 0.1349376109591542 0.06771422406439763 -0.9885376194197125 0.2818492821799054 -0.08553712812935223 0.9556382065646261 0.18799242853805 -0.06020527615928895 0.9803235035104229 -0.2818492821799054 0.08553712812935223 -0.9556382065646261 -0.18799242853805 0.06020527615928895 -0.9803235035104229 0.3992728410146087 -0.004618347430476021 0.9168205218553599 -0.3992728410146087 0.004618347430476021 -0.9168205218553599 0.1081007646252604 -0.003667591666287958 0.9941331769228926 -0.1081007646252604 0.003667591666287958 -0.9941331769228926 0.4951963761604459 0.1327822798070241 0.8585740592440535 -0.4951963761604459 -0.1327822798070241 -0.8585740592440535 0.5439137061819115 0.3183617179165879 0.776404338468466 -0.5439137061819115 -0.3183617179165879 -0.776404338468466 0.5225873377292829 0.5307124644334617 0.667268127921589 -0.5225873377292829 -0.5307124644334617 -0.667268127921589 0.4186688219088239 0.7365803781021548 0.5311927749474424 -0.4186688219088239 -0.7365803781021548 -0.5311927749474424 0.2366057351646713 0.8973950085060475 0.3724243880247593 -0.2366057351646713 -0.8973950085060475 -0.3724243880247593 -0.0003035991408263293 0.9799697063912685 0.1991463843080575 0.0003035991408263293 -0.9799697063912685 -0.1991463843080575 -0.2552297845554967 0.9666402627642254 0.02154900180667647 -0.4966909461480169 0.867782211684864 0.01587882545762572 0.2552297845554967 -0.9666402627642254 -0.02154900180667647 0.4966909461480169 -0.867782211684864 -0.01587882545762572 -0.6947010668165022 0.6956723068585162 0.1828400099380984 0.6947010668165022 -0.6956723068585162 -0.1828400099380984 -0.8124840726966053 0.4678809072379609 0.3477888558544102 0.8124840726966053 -0.4678809072379609 -0.3477888558544102 -0.8357867105570291 0.2229862734134032 0.5017346871858313 0.8357867105570291 -0.2229862734134032 -0.5017346871858313 -0.770952023569327 0.001116816796969667 0.636892243691664 0.770952023569327 -0.001116816796969667 -0.636892243691664 -0.6416782850345953 -0.1670385545486582 0.7485633572446329 0.6416782850345953 0.1670385545486582 -0.7485633572446329 -0.4802093596503985 -0.2665643870351636 0.8356688330126483 0.4802093596503985 0.2665643870351636 -0.8356688330126483 -0.317935224807444 -0.2982547696930328 0.899978491510767 0.317935224807444 0.2982547696930328 -0.899978491510767 -0.1791613377473798 -0.2742822294595648 0.9448124013047563 -0.1310770231887814 -0.1908373991395622 0.9728308697207418 0.1310770231887814 0.1908373991395622 -0.9728308697207418 0.1791613377473798 0.2742822294595648 -0.9448124013047563 -0.1143734886022976 -0.09475209961004774 0.9889088657325444 0.1143734886022976 0.09475209961004774 -0.9889088657325444 0.2501733135647323 -0.1611419135842138 0.9546971231057837 0.166069215704375 -0.1125320044408332 0.9796721714797568 -0.2501733135647323 0.1611419135842138 -0.9546971231057837 -0.166069215704375 0.1125320044408332 -0.9796721714797568 0.3845336963005014 -0.1131368077863151 0.9161516791085393 -0.3845336963005014 0.1131368077863151 -0.9161516791085393 0.103528757743035 -0.0373294599350128 0.9939257053427807 -0.103528757743035 0.0373294599350128 -0.9939257053427807 0.512740184991489 -0.00489758518804519 0.8585298575787679 -0.512740184991489 0.00489758518804519 -0.8585298575787679 0.6078133549437862 0.162233444346877 0.7773308401751006 -0.6078133549437862 -0.162233444346877 -0.7773308401751006 0.6421539901104841 0.3735052561350496 0.6694266775567549 -0.6421539901104841 -0.3735052561350496 -0.6694266775567549 0.5950362880086376 0.6000435771433528 0.5346770253918817 -0.5950362880086376 -0.6000435771433528 -0.5346770253918817 0.4607762507601684 0.8034165430170099 0.3771035734940728 -0.4607762507601684 -0.8034165430170099 -0.3771035734940728 0.2532919453771001 0.9454919487654242 0.2046659845378429 -0.2532919453771001 -0.9454919487654242 -0.2046659845378429 0.003588328336391318 0.9996181931714935 0.02739693012564032 -0.003588328336391318 -0.9996181931714935 -0.02739693012564032 -0.248999527986512 0.9575632380166573 -0.1451615660619175 -0.4880623327584399 0.8596871124756812 -0.1507754223526352 0.248999527986512 -0.9575632380166573 0.1451615660619175 0.4880623327584399 -0.8596871124756812 0.1507754223526352 -0.7043399773114532 0.7097810527440676 0.010772814229578 0.7043399773114532 -0.7097810527440676 -0.010772814229578 -0.8513349053579534 0.4932400962793633 0.1787262888930696 0.8513349053579534 -0.4932400962793633 -0.1787262888930696 -0.9064242052333631 0.2436628682519573 0.3449979228956241 0.9064242052333631 -0.2436628682519573 -0.3449979228956241 -0.8658081201903246 0.001950574640400962 0.500372355622359 0.8658081201903246 -0.001950574640400962 -0.500372355622359 -0.7459847310260813 -0.1948208783634307 0.6368293385434176 0.7459847310260813 0.1948208783634307 -0.6368293385434176 -0.5777786362732773 -0.3231668281187489 0.7494898589506459 0.5777786362732773 0.3231668281187489 -0.7494898589506459 -0.3961932618566962 -0.3770294366364962 0.8371855846638292 0.3961932618566962 0.3770294366364962 -0.8371855846638292 -0.2313468321485757 -0.3652881199799074 0.9016890997768374 0.2313468321485757 0.3652881199799074 -0.9016890997768374 -0.1035725768505869 -0.3059711236847407 0.9463901905639273 -0.07876138565052442 -0.2127695578956044 0.9739228713626754 0.07876138565052442 0.2127695578956044 -0.9739228713626754 0.1035725768505869 0.3059711236847407 -0.9463901905639273 -0.08751421454160915 -0.1155455001015759 0.9894394876188447 0.08751421454160915 0.1155455001015759 -0.9894394876188447 0.2000128664936562 -0.2259688391007533 0.9533797443791474 0.1313527348827231 -0.15739928229932 0.9787604022284964 -0.2000128664936562 0.2259688391007533 -0.9533797443791474 -0.1313527348827231 0.15739928229932 -0.9787604022284964 0.3422166401462839 -0.2141399370128124 0.9148944521545299 -0.3422166401462839 0.2141399370128124 -0.9148944521545299 0.09040222456819289 -0.06866011114330728 0.9935357200075449 -0.09040222456819289 0.06866011114330728 -0.9935357200075449 0.4940609449667083 -0.1424254002218338 0.857682218557814 -0.4940609449667083 0.1424254002218338 -0.857682218557814 0.6291376085150298 -0.00511450051000331 0.7772771136708726 -0.6291376085150298 0.00511450051000331 -0.7772771136708726 0.7169702653282174 0.1907040027428963 0.6705114629691449 -0.7169702653282174 -0.1907040027428963 -0.6705114629691449 0.7300675678928392 0.4225033506595342 0.5371147596114828 -0.7300675678928392 -0.4225033506595342 -0.5371147596114828 0.6529948458660764 0.6546084173409399 0.3809009729821241 -0.6529948458660764 -0.6546084173409399 -0.3809009729821241 0.4893296695210512 0.8465384220109853 0.2095928781842786 -0.4893296695210512 -0.8465384220109853 -0.2095928781842786 0.2621253658514209 0.9644686114481309 0.03302408376583647 -0.2621253658514209 -0.9644686114481309 -0.03302408376583647 0.007247827015565069 0.9902136091436581 -0.139371723352491 -0.007247827015565069 -0.9902136091436581 0.139371723352491 -0.2365791851272761 0.9239971643468352 -0.3004322376901683 -0.4671358374696912 0.8296035932912358 -0.3058463459807225 0.2365791851272761 -0.9239971643468352 0.3004322376901683 0.4671358374696912 -0.8296035932912358 0.3058463459807225 -0.6936488522250686 0.7032553287281584 -0.1558307171975238 0.6936488522250686 -0.7032553287281584 0.1558307171975238 -0.864025939728805 0.5034043038141194 0.006578934349682312 0.864025939728805 -0.5034043038141194 -0.006578934349682312 -0.9502480698785997 0.2571523329367422 0.1757876086565454 0.9502480698785997 -0.2571523329367422 -0.1757876086565454 -0.9391438065894939 0.00276145697687463 0.3435131509854609 0.9391438065894939 -0.00276145697687463 -0.3435131509854609 -0.8376115837794815 -0.2193294999328747 0.500301314387264 0.8376115837794815 0.2193294999328747 -0.500301314387264 -0.6711684558061619 -0.3776221317562706 0.6379141239529202 0.6711684558061619 0.3776221317562706 -0.6379141239529202 -0.4756582477852453 -0.457435546572307 0.7513334493059425 0.4756582477852453 0.457435546572307 -0.7513334493059425 -0.2864579005997327 -0.4619822655762704 0.839353475883081 0.2864579005997327 0.4619822655762704 -0.839353475883081 -0.1303651107039493 -0.4076224439159252 0.9037969247165845 0.1303651107039493 0.4076224439159252 -0.9037969247165845 -0.02236109657021874 -0.3170122866490264 0.9481577882787932 -0.02255421521407307 -0.2204112426231699 0.9751462410845807 0.02255421521407307 0.2204112426231699 -0.9751462410845807 0.02236109657021874 0.3170122866490264 -0.9481577882787932 -0.0561902039322506 -0.1286773896463126 0.99009332407398 0.0561902039322506 0.1286773896463126 -0.99009332407398 0.1347862925305222 -0.2756000568437814 0.951775847567893 0.08620885685863614 -0.1917494789097812 0.9776503313235028 -0.1347862925305222 0.2756000568437814 -0.951775847567893 -0.08620885685863614 0.1917494789097812 -0.9776503313235028 0.2752055099996698 -0.3007445387740187 0.9131345189310414 -0.2752055099996698 0.3007445387740187 -0.9131345189310414 0.06961571665574255 -0.09552441317618317 0.992989797773297 -0.06961571665574255 0.09552441317618317 -0.992989797773297 0.4404316154287661 -0.2704288719713634 0.8560889073776762 -0.4404316154287661 0.2704288719713634 -0.8560889073776762 0.6064332542541665 -0.1722776307717437 0.7762468203286738 -0.6064332542541665 0.1722776307717437 -0.7762468203286738 0.7419375578704199 -0.005233692419027731 0.6704485578215083 -0.7419375578704199 0.005233692419027731 -0.6704485578215083 0.8145605029876392 0.216058771685977 0.5383398500483415 -0.8145605029876392 -0.216058771685977 -0.5383398500483415 0.8001621408820232 0.4611116593255776 0.3835577999899233 -0.8001621408820232 -0.4611116593255776 -0.3835577999899233 0.6917239924606646 0.6898526454478616 0.2135913055881845 -0.6917239924606646 -0.6898526454478616 -0.2135913055881845 0.5027624561357125 0.863586903501135 0.03804698150586373 -0.5027624561357125 -0.863586903501135 -0.03804698150586373 0.2632168984728762 0.9554131570215959 -0.1338004624369694 -0.2632168984728762 -0.9554131570215959 0.1338004624369694 0.01055056973849052 0.9554857945916987 -0.2948484047975563 -0.01055056973849052 -0.9554857945916987 0.2948484047975563 -0.2192381936003984 0.8704511606240962 -0.440737327027106 -0.4363099438788403 0.7815785235693487 -0.4458347724971668 0.2192381936003984 -0.8704511606240962 0.440737327027106 0.4363099438788403 -0.7815785235693487 0.4458347724971668 -0.6654073324441707 0.6787378472997362 -0.3107217671365379 0.6654073324441707 -0.6787378472997362 0.3107217671365379 -0.8517487048328777 0.4989284543206482 -0.1599829406053165 0.8517487048328777 -0.4989284543206482 0.1599829406053165 -0.964866498954736 0.262716199280908 0.003582991798019312 0.964866498954736 -0.262716199280908 -0.003582991798019312 -0.9846997916781964 0.003498007748959784 0.1742242354286703 0.9846997916781964 -0.003498007748959784 -0.1742242354286703 -0.9084130900036287 -0.2384062935164732 0.3434357248770092 0.9084130900036287 0.2384062935164732 -0.3434357248770092 -0.7531186486840559 -0.4257740789068851 0.5015264048236098 0.7531186486840559 0.4257740789068851 -0.5015264048236098 -0.5516018034251031 -0.5348293400540553 0.6400726735891151 0.5516018034251031 0.5348293400540553 -0.6400726735891151 -0.3422764552824745 -0.560694518632317 0.7539684906777859 0.3422764552824745 0.560694518632317 -0.7539684906777859 -0.1584815594037507 -0.5156334789517393 0.8420247684676989 0.1584815594037507 0.5156334789517393 -0.8420247684676989 -0.0218717979096254 -0.4223727272818201 0.9061583215447054 0.0218717979096254 0.4223727272818201 -0.9061583215447054 0.0337140623291409 -0.2132416851325052 0.9764176082615043 0.05893867490870594 -0.3066532813380725 0.9499947355878343 -0.05893867490870594 0.3066532813380725 -0.9499947355878343 -0.0337140623291409 0.2132416851325052 -0.9764176082615043 -0.0225361363180421 -0.1332528516789304 0.9908258172248478 0.0225361363180421 0.1332528516789304 -0.9908258172248478 0.1880670036333706 -0.3670486525812369 0.9109918159800691 -0.1880670036333706 0.3670486525812369 -0.9109918159800691 0.04258580015742122 -0.1160916082523131 0.9923251423391145 -0.04258580015742122 0.1160916082523131 -0.9923251423391145 0.3555069465570458 -0.3801847753734519 0.8538585055639627 -0.3555069465570458 0.3801847753734519 -0.8538585055639627 0.5412475563835376 -0.3278640553565649 0.7743101729371742 -0.5412475563835376 0.3278640553565649 -0.7743101729371742 0.7153543880110482 -0.2009549992257389 0.6692422489947282 -0.7153543880110482 0.2009549992257389 -0.6692422489947282 0.8427570393981093 -0.005221302888848728 0.5382688088131027 -0.8427570393981093 0.005221302888848728 -0.5382688088131027 0.8922489278597298 0.2361127532611793 0.3848929961438476 -0.8922489278597298 -0.2361127532611793 -0.3848929961438476 0.8466820755605262 0.4861124958130563 0.2163887805292151 -0.8466820755605262 -0.4861124958130563 -0.2163887805292151 0.7091005791578938 0.7038479910121647 0.04212332116630031 -0.7091005791578938 -0.7038479910121647 -0.04212332116630031 0.5014638171748614 0.8555334749519085 -0.1288274555408495 -0.5014638171748614 -0.8555334749519085 0.1288274555408495 0.2574119427350933 0.9219235859118545 -0.2894753762874701 -0.2574119427350933 -0.9219235859118545 0.2894753762874701 0.01343732406330853 0.900098069579493 -0.4354800838859201 -0.01343732406330853 -0.900098069579493 0.4354800838859201 -0.1981192678170183 0.8011436451714886 -0.5647279128226165 -0.3977820899980429 0.7193985009682611 -0.5694165484787105 0.1981192678170183 -0.8011436451714886 0.5647279128226165 0.3977820899980429 -0.7193985009682611 0.5694165484787105 -0.6229848457177725 0.6395366817627473 -0.4504250378097313 0.6229848457177725 -0.6395366817627473 0.4504250378097313 -0.8178817953279834 0.4816811776436191 -0.3147262492626424 0.8178817953279834 -0.4816811776436191 0.3147262492626424 -0.9515876468984295 0.2606310280781878 -0.1629491254140901 0.9515876468984295 -0.2606310280781878 0.1629491254140901 -0.9999895375248139 0.004119235712595246 0.001989155110391697 0.9999895375248139 -0.004119235712595246 -0.001989155110391697 -0.952342242849887 -0.2504367562055796 0.1741427105131703 0.952342242849887 0.2504367562055796 -0.1741427105131703 -0.8163263030261485 -0.4634051995806454 0.3447709210320427 0.8163263030261485 0.4634051995806454 -0.3447709210320427 -0.6180873687991711 -0.6033143053902074 0.5039641390440882 0.6180873687991711 0.6033143053902074 -0.5039641390440882 -0.3954330436511822 -0.6557290918087354 0.6431578858604264 0.3954330436511822 0.6557290918087354 -0.6431578858604264 -0.1867230075019234 -0.6259068159988029 0.7572154093490684 0.1867230075019234 0.6259068159988029 -0.7572154093490684 -0.02098561442507873 -0.5343268352349858 0.8450174182435333 0.02098561442507873 0.5343268352349858 -0.8450174182435333 0.08673946625505409 -0.4085337626472476 0.9086123649670803 -0.08673946625505409 0.4085337626472476 -0.9086123649670803 0.0111545192131467 -0.1289600760281083 0.9915870488726384 -0.0111545192131467 0.1289600760281083 -0.9915870488726384 0.2450744141882435 -0.464213426994001 0.8511430113140649 -0.2450744141882435 0.464213426994001 -0.8511430113140649 0.4380228124896268 -0.4612708165483115 0.7715991508157143 -0.4380228124896268 0.4612708165483115 -0.7715991508157143 0.639032354842248 -0.3831218340631223 0.6669747444460551 -0.639032354842248 0.3831218340631223 -0.6669747444460551 0.812735629764725 -0.2262570016609009 0.5369064772475325 -0.812735629764725 0.2262570016609009 -0.5369064772475325 0.9229796444462269 -0.005054997232808139 0.3848155700343902 -0.9229796444462269 0.005054997232808139 -0.3848155700343902 0.9436437815375051 0.249202527607781 0.2177946597129743 -0.9436437815375051 -0.249202527607781 -0.2177946597129743 0.8670781328240091 0.4961378168863328 0.04497530693273704 -0.8670781328240091 -0.4961378168863328 -0.04497530693273704 0.7057524493334408 0.6973811982087833 -0.1247916048647925 -0.7057524493334408 -0.6973811982087833 0.1247916048647925 0.4871817392503234 0.8255977473651162 -0.2846793151717833 -0.4871817392503234 -0.8255977473651162 0.2846793151717833 0.2458601570983169 0.8684988625848443 -0.4304213155042659 -0.2458601570983169 -0.8684988625848443 0.4304213155042659 0.01589591587034899 0.8284129029328978 -0.5598922951005236 -0.01589591587034899 -0.8284129029328978 0.5598922951005236 -0.1741206016665618 0.7194770075950454 -0.6723353713864483 -0.3533003613305047 0.6461179559098589 -0.6765430080450172 0.1741206016665618 -0.7194770075950454 0.6723353713864483 0.3533003613305047 -0.6461179559098589 0.6765430080450172 -0.5694858592979235 0.5887482668108799 -0.5736386792981195 0.5694858592979235 -0.5887482668108799 0.5736386792981195 -0.7665413130530689 0.4540055519877216 -0.4541953039686797 0.7665413130530689 -0.4540055519877216 0.4541953039686797 -0.9141683434507485 0.2518626707089011 -0.3175868935203306 0.9141683434507485 -0.2518626707089011 0.3175868935203306 -0.986361819511997 0.004602625794014403 -0.1645271310294535 0.986361819511997 -0.004602625794014403 0.1645271310294535 -0.9670014784040504 -0.2547636311754762 0.001906041622607075 0.9670014784040504 0.2547636311754762 -0.001906041622607075 -0.8553805368730689 -0.487346724411099 0.1755485896967346 0.8553805368730689 0.487346724411099 -0.1755485896967346 -0.6691590080096818 -0.6569019575960401 0.3474277480368966 0.6691590080096818 0.6569019575960401 -0.3474277480368966 -0.4417199026996306 -0.7398511063481403 0.5074483894884894 0.4417199026996306 0.7398511063481403 -0.5074483894884894 -0.2133048193795527 -0.7320822687369326 0.6469595086482939 0.2133048193795527 0.7320822687369326 -0.6469595086482939 -0.01959861484437084 -0.6486283283769657 0.7608529331763695 0.01959861484437084 0.6486283283769657 -0.7608529331763695 0.1166598129071712 -0.5167884130874554 0.848127481072871 -0.1166598129071712 0.5167884130874554 -0.848127481072871 0.3037936182791376 -0.5634064640410594 0.7682985056406266 -0.3037936182791376 0.5634064640410594 -0.7682985056406266 0.5181726787980771 -0.539319828184763 0.6638005708599402 -0.5181726787980771 0.539319828184763 -0.6638005708599402 0.7265421835407212 -0.431985107039032 0.5343456959987207 -0.7265421835407212 0.431985107039032 -0.5343456959987207 0.8902600430900862 -0.2459564085073838 0.3833307981253097 -0.8902600430900862 0.2459564085073838 -0.3833307981253097 0.9760013303658489 -0.004732236347078282 0.2177131347972567 -0.9760013303658489 0.004732236347078282 -0.2177131347972567 0.9659292079218036 0.254611486233003 0.04640858069127309 -0.9659292079218036 -0.254611486233003 -0.04640858069127309 0.8621608622698437 0.4917341430935043 -0.1219679469623756 -0.8621608622698437 -0.4917341430935043 0.1219679469623756 0.6842015273638534 0.6730727256629456 -0.2807870650895857 -0.6842015273638534 -0.6730727256629456 0.2807870650895857 0.4621910735298687 0.7778069733779082 -0.4259057685850304 -0.4621910735298687 -0.7778069733779082 0.4259057685850304 0.2296786799717673 0.7993479194004178 -0.5552392346697499 -0.2296786799717673 -0.7993479194004178 0.5552392346697499 0.01793913563729873 0.7439487595147881 -0.6679958312961198 -0.01793913563729873 -0.7439487595147881 0.6679958312961198 -0.3041739552390679 0.5640454767518601 -0.7676789075583542 -0.1479094699972127 0.628022649569136 -0.7640093849641547 0.1479094699972127 -0.628022649569136 0.7640093849641547 0.3041739552390679 -0.5640454767518601 0.7676789075583542 -0.5073893388402089 0.528870902600421 -0.6803319977877799 0.5073893388402089 -0.528870902600421 0.6803319977877799 -0.7015292475949478 0.4180965402475137 -0.5771065740415071 0.7015292475949478 -0.4180965402475137 0.5771065740415071 -0.8571962098737292 0.2376287741338929 -0.4568886335659235 0.8571962098737292 -0.2376287741338929 0.4568886335659235 -0.9477052076793308 0.004944077950684862 -0.3191087517300243 0.9477052076793308 -0.004944077950684862 0.3191087517300243 -0.9537014202768644 -0.2517088400233064 -0.1646094189772051 0.9537014202768644 0.2517088400233064 0.1646094189772051 -0.8681504033062163 -0.4962899618288069 0.003339315381226939 0.8681504033062163 0.4962899618288069 -0.003339315381226939 -0.7004224537734513 -0.6910868740457199 0.1783460646375267 0.7004224537734513 0.6910868740457199 -0.1783460646375267 -0.4769404129035209 -0.8057100832721632 0.3512251475236117 0.4769404129035209 0.8057100832721632 -0.3512251475236117 -0.2360354017386985 -0.8260797244328593 0.5117417102474475 0.2360354017386985 0.8260797244328593 -0.5117417102474475 -0.01762886811473174 -0.7586855280096995 0.6512184676417253 0.01762886811473174 0.7586855280096995 -0.6512184676417253 0.1477074715155123 -0.6273106222431385 0.7646331709253925 -0.1477074715155123 0.6273106222431385 -0.7646331709253925 0.3610117470703493 -0.6589043464196583 0.659936042921204 -0.3610117470703493 0.6589043464196583 -0.659936042921204 0.5900506416445254 -0.6083855886256407 0.5307609780753635 -0.5900506416445254 0.6083855886256407 -0.5307609780753635 0.7963199105530822 -0.4701744474934593 0.3805398651665179 -0.7963199105530822 0.4701744474934593 -0.3805398651665179 0.9415496085662173 -0.2583865615344875 0.2161497615709716 -0.9415496085662173 0.2583865615344875 -0.2161497615709716 0.9989172670424915 -0.00427138065488106 0.0463254672039128 -0.9989172670424915 0.00427138065488106 -0.0463254672039128 0.9600300811197 0.2526068165640383 -0.1205489094545641 -0.9600300811197 -0.2526068165640383 0.1205489094545641 0.8350447341074704 0.4747428489729666 -0.2780638764536219 -0.8350447341074704 -0.4747428489729666 0.2780638764536219 0.6476874789067011 0.6342029043310999 -0.4222411701924377 -0.6476874789067011 -0.6342029043310999 0.4222411701924377 0.4286600824070452 0.7159294251703146 -0.5510858299086344 -0.4286600824070452 -0.7159294251703146 0.5510858299086344 0.2097902968776799 0.7178655022158494 -0.663820120261778 -0.2097902968776799 -0.7178655022158494 0.663820120261778 0.01958777434490461 0.6493647125559213 -0.7602248280498201 -0.01958777434490461 -0.6493647125559213 0.7602248280498201 -0.2514082877878476 0.4749602483467605 -0.8433306796992308 -0.1199967013743451 0.5287622479582321 -0.8402447719524552 0.1199967013743451 -0.5287622479582321 0.8402447719524552 0.2514082877878476 -0.4749602483467605 0.8433306796992308 -0.4385565149509872 0.4617931327041961 -0.770983323932035 0.4385565149509872 -0.4617931327041961 0.770983323932035 -0.6258866250235643 0.3757260405886738 -0.6834441272263376 0.6258866250235643 -0.3757260405886738 0.6834441272263376 -0.78491371618833 0.2190729544272539 -0.5795839014137125 0.78491371618833 -0.2190729544272539 0.5795839014137125 -0.8887715547751938 0.005152068032678012 -0.4583214806415595 0.8887715547751938 -0.005152068032678012 0.4583214806415595 -0.9162069061388412 -0.2422475065880939 -0.3191881117700717 0.9162069061388412 0.2422475065880939 0.3191881117700717 -0.8558322014270372 -0.4908361665528228 -0.163190381469868 0.8558322014270372 0.4908361665528228 0.163190381469868 -0.7101728496403044 -0.7040001359544196 0.006191301149873631 0.7101728496403044 0.7040001359544196 -0.006191301149873631 -0.4980281308336479 -0.8477726506089782 0.1823444920412191 0.4980281308336479 0.8477726506089782 -0.1823444920412191 -0.2527698973080124 -0.899688548761017 0.3559043329929995 0.2527698973080124 0.899688548761017 -0.3559043329929995 -0.01505092474734093 -0.8561238218209023 0.5165515186068294 0.01505092474734093 0.8561238218209023 -0.5165515186068294 0.1782598174340757 -0.7337259014703491 0.65564452182558 -0.1782598174340757 0.7337259014703491 -0.65564452182558 0.4125626770944206 -0.7434370451133613 0.5263966160812575 -0.4125626770944206 0.7434370451133613 -0.5263966160812575 0.6475611116240472 -0.6624290253721131 0.3766329686269918 -0.6475611116240472 0.6624290253721131 -0.3766329686269918 0.8426364440454921 -0.4944743248771346 0.2132110813341337 -0.8426364440454921 0.4944743248771346 -0.2132110813341337 0.9637942284724247 -0.2628683442230954 0.04473163051635661 -0.9637942284724247 0.2628683442230954 -0.04473163051635661 0.9926904803547283 -0.003704649253320418 -0.1206311974035268 -0.9926904803547283 0.003704649253320418 0.1206311974035268 0.9294316442202218 0.2441239706369719 -0.2766953300699779 -0.9294316442202218 -0.2441239706369719 0.2766953300699779 0.7897080997508703 0.4474730354308625 -0.4196772566510596 -0.7897080997508703 -0.4474730354308625 0.4196772566510596 0.5992798694329306 0.5838422527677309 -0.5477151284888437 -0.5992798694329306 -0.5838422527677309 0.5477151284888437 0.3883585424646914 0.6430047665792074 -0.660092806089507 -0.3883585424646914 -0.6430047665792074 0.660092806089507 0.1869031173878712 0.6266172393888105 -0.7565831481148927 -0.1869031173878712 -0.6266172393888105 0.7565831481148927 0.02086114335677003 0.5467099879712716 -0.8370621253827584 -0.02086114335677003 -0.5467099879712716 0.8370621253827584 -0.1958674892513572 0.3803878408698831 -0.9038478949318397 -0.09082226557307005 0.4233950310102469 -0.9013811423543355 0.09082226557307005 -0.4233950310102469 0.9013811423543355 0.1958674892513572 -0.3803878408698831 0.9038478949318397 -0.3644181334405246 0.3889705064983713 -0.8461095491094072 0.3644181334405246 -0.3889705064983713 0.8461095491094072 -0.5418991997648551 0.3282339456908371 -0.7736974435723789 0.5418991997648551 -0.3282339456908371 0.7736974435723789 -0.700716825653485 0.1971199391358595 -0.6856673098822623 0.700716825653485 -0.1971199391358595 0.6856673098822623 -0.8139567513419922 0.00524063782299337 -0.5809018356486734 0.8139567513419922 -0.00524063782299337 0.5809018356486734 -0.8591155401827866 -0.2275816629819786 -0.4583961990361569 0.8591155401827866 0.2275816629819786 0.4583961990361569 -0.8218199960259932 -0.4728663849233863 -0.3178195653847076 0.8218199960259932 0.4728663849233863 0.3178195653847076 -0.6994237884908636 -0.6964832216680854 -0.1603667235679915 0.6994237884908636 0.6964832216680854 0.1603667235679915 -0.5038347266179474 -0.8637390484434649 0.01026764080965387 0.5038347266179474 0.8637390484434649 -0.01026764080965387 -0.261990406689696 -0.9467261773636294 0.1872713856867012 0.261990406689696 0.9467261773636294 -0.1872713856867012 -0.01192431140109557 -0.9324328769460567 0.3611464256886804 0.01192431140109557 0.9324328769460567 -0.3611464256886804 0.2061738013609241 -0.8279359429266882 0.5215500340738961 -0.2061738013609241 0.8279359429266882 -0.5215500340738961 0.4541213126143565 -0.8096183103762371 0.3718763570502177 -0.4541213126143565 0.8096183103762371 -0.3718763570502177 0.6860026055041231 -0.6969065354565132 0.2090973602883452 -0.6860026055041231 0.6969065354565132 -0.2090973602883452 0.862953669246476 -0.503556448756286 0.0417356879660727 -0.862953669246476 0.503556448756286 -0.0417356879660727 0.9579163077411881 -0.2597330515374232 -0.122209203019036 -0.9579163077411881 0.2597330515374232 0.122209203019036 0.9609299457607411 -0.003067613901109669 -0.2767746901095054 -0.9609299457607411 0.003067613901109669 0.2767746901095054 0.8785744654502364 0.2303426986619668 -0.418388754428168 -0.8785744654502364 -0.2303426986619668 0.418388754428168 0.7299105845272846 0.4120879247073646 -0.5453568381394104 -0.7299105845272846 -0.4120879247073646 0.5453568381394104 0.5414747415604669 0.5244681880247319 -0.6570678990805136 -0.5414747415604669 -0.5244681880247319 0.6570678990805136 0.3426342950041622 0.561330432771408 -0.7533325196297214 -0.3426342950041622 -0.561330432771408 0.7533325196297214 0.1615660170627227 0.5275803595649869 -0.8339996320933045 -0.1615660170627227 -0.5275803595649869 0.8339996320933045 0.02177392332001155 0.4377417443825908 -0.8988370605889261 -0.02177392332001155 -0.4377417443825908 0.8988370605889261 -0.1649699815588333 0.3274762324376687 -0.9303462916424766 -0.07466982824871311 0.3644465555714881 -0.9282257941262923 0.07466982824871311 -0.3644465555714881 0.9282257941262923 0.1649699815588333 -0.3274762324376687 0.9303462916424766 -0.2862030893153825 0.3116510428990273 -0.906069213209609 0.2862030893153825 -0.3116510428990273 0.906069213209609 -0.4513248041085635 0.2766530812142743 -0.8483920048250189 0.4513248041085635 -0.2766530812142743 0.8483920048250189 -0.6071593764953762 0.1724697535918263 -0.7756363037079431 0.6071593764953762 -0.1724697535918263 0.7756363037079431 -0.7267803862194295 0.00522430889848976 -0.6868500395306604 0.7267803862194295 -0.00522430889848976 0.6868500395306604 -0.7866791182070145 -0.2088280905644798 -0.5809705617053479 0.7866791182070145 0.2088280905644798 0.5809705617053479 -0.7702491744827881 -0.4447119997515965 -0.4571076968128181 0.7702491744827881 0.4447119997515965 0.4571076968128181 -0.6709767892826445 -0.671196261612853 -0.3150963767498514 0.6709767892826445 0.671196261612853 0.3150963767498514 -0.4951351563322478 -0.854635498411253 -0.1563308728920477 0.4951351563322478 0.854635498411253 0.1563308728920477 -0.2631976363336578 -0.9646207563904333 0.01529053854918509 0.2631976363336578 0.9646207563904333 -0.01529053854918509 -0.008394862171183985 -0.9812039349894928 0.1927909859154788 0.008394862171183985 0.9812039349894928 -0.1927909859154788 0.2291831161525995 -0.9017115959749626 0.3665941856533866 -0.2291831161525995 0.9017115959749626 -0.3665941856533866 0.4823224301885314 -0.8518877726568286 0.2040889417259467 -0.4823224301885314 0.8518877726568286 -0.2040889417259467 0.703267706829048 -0.7099331976863442 0.03754180808450955 -0.703267706829048 0.7099331976863442 -0.03754180808450955 0.8580773656755565 -0.4980304777799592 -0.1251753878266926 -0.8580773656755565 0.4980304777799592 0.1251753878266926 0.9273930815321995 -0.2499862066592646 -0.2782965483190958 -0.9273930815321995 0.2499862066592646 0.2782965483190958 0.9082304800427239 -0.002391032351280133 -0.4184634728212948 -0.9082304800427239 0.002391032351280133 0.4184634728212948 0.8116499603327825 0.2123712146137018 -0.5441716724484047 -0.8116499603327825 -0.2123712146137018 0.5441716724484047 0.6587042782341973 0.3703338384922697 -0.6549515416452936 -0.6587042782341973 -0.3703338384922697 0.6549515416452936 0.4761684847985939 0.4579534806817466 -0.7506944675539338 -0.4761684847985939 -0.4579534806817466 0.7506944675539338 0.2925291151281806 0.4726770152981094 -0.8312659959430523 -0.2925291151281806 -0.4726770152981094 0.8312659959430523 0.1342478332242945 0.4224502761812289 -0.8963890246031493 -0.1342478332242945 -0.4224502761812289 0.8963890246031493 0.02212137046475532 0.3767794382254955 -0.9260388220259673 -0.02212137046475532 -0.3767794382254955 0.9260388220259673 -0.4962997190497187 0.8681117528912076 -0.008280903533146002 -0.2547680357423238 0.966998676685641 -0.002609071140706141 -0.4962997190501739 0.8681117528909472 -0.008280903533156922 -0.2547680357416776 0.9669986766858113 -0.002609071140691262 0.2547680357416776 -0.9669986766858113 0.002609071140691262 0.4962997190497187 -0.8681117528912076 0.008280903533146002 0.2547680357423238 -0.966998676685641 0.002609071140706141 0.4962997190501739 -0.8681117528909472 0.008280903533156922 -0.242625283239011 0.2683879352538406 -0.9322558061730536 0.242625283239011 -0.2683879352538406 0.9322558061730536 -0.3556728439135952 0.221868936282674 -0.9078937180172633 0.3556728439135952 -0.221868936282674 0.9078937180172633 -0.506205753803764 0.145662219417413 -0.8500225012612056 0.506205753803764 -0.145662219417413 0.8500225012612056 -0.6298896719456469 0.005115628686609009 -0.7766677742248267 0.6298896719456469 -0.005115628686609009 0.7766677742248267 -0.702301118141767 -0.1868834800465053 -0.6869117151006604 0.702301118141767 0.1868834800465053 0.6869117151006604 -0.7049397424030758 -0.4085448006610368 -0.5797853960160766 0.7049397424030758 0.4085448006610368 0.5797853960160766 -0.6282285536389968 -0.6314418686490742 -0.4545437832702365 0.6282285536389968 0.6314418686490742 0.4545437832702365 -0.4739570011689639 -0.8237212833156682 -0.3112041266688334 0.4739570011689639 0.8237212833156682 0.3112041266688334 -0.2568882376303411 -0.9545151804808356 -0.1513578659958421 0.2568882376303411 0.9545151804808356 0.1513578659958421 -0.004660598818729865 -0.9997703381137653 0.02091769218958598 0.004660598818729865 0.9997703381137653 -0.02091769218958598 0.2454763854492809 -0.9488563212813571 0.1985271410945265 -0.2454763854492809 0.9488563212813571 -0.1985271410945265 0.4956186756655215 -0.8679343566271484 0.03243579685737101 -0.4956186756655215 0.8679343566271484 -0.03243579685737101 0.6999775130678275 -0.7023573521875067 -0.1293276112341596 -0.6999775130678275 0.7023573521875067 0.1293276112341596 0.8311065334093482 -0.4798047135937712 -0.2811571925764933 -0.8311065334093482 0.4798047135937712 0.2811571925764933 0.8766551351422396 -0.2348677384533763 -0.4198963198963979 -0.8766551351422396 0.2348677384533763 0.4198963198963979 0.8389275934680109 -0.001697513772703622 -0.5442403985050752 -0.8389275934680109 0.001697513772703622 0.5442403985050752 0.7320581532913923 0.1911057191840917 -0.6538879600472296 -0.7320581532913923 -0.1911057191840917 0.6538879600472296 0.5784055524107102 0.3235313515703076 -0.7488487707752155 -0.5784055524107102 -0.3235313515703076 0.7488487707752155 0.4048255188452025 0.385741527354896 -0.8290475097155918 -0.4048255188452025 -0.385741527354896 0.8290475097155918 0.2389345530606384 0.3785627146927393 -0.8942038640031571 -0.2389345530606384 -0.3785627146927393 0.8942038640031571 0.1188074543404963 0.3636344148281239 -0.9239344138767314 -0.1188074543404963 -0.3636344148281239 0.9239344138767314 0.004125668177852013 0.9999862387051487 0.003240565138309892 0.004125668178126542 0.9999862387051476 0.003240565138315981 -0.004125668178126542 -0.9999862387051476 -0.003240565138315981 -0.004125668177852013 -0.9999862387051487 -0.003240565138309892 -0.7040093966785519 0.7100644477596045 -0.01338840603467705 -0.70400939667882 0.7100644477593383 -0.01338840603468384 0.7040093966785519 -0.7100644477596045 0.01338840603467705 0.70400939667882 -0.7100644477593383 0.01338840603468384 -0.3023436528201365 0.191208433814914 -0.9338242074595327 0.3023436528201365 -0.191208433814914 0.9338242074595327 -0.3995425040674474 0.1171600232209388 -0.9091970723679125 0.3995425040674474 -0.1171600232209388 0.9091970723679125 -0.5253209365012415 0.004924731863187168 -0.8508899227805759 0.5253209365012415 -0.004924731863187168 0.8508899227805759 -0.6085410540412044 -0.1624235219803861 -0.7767215621147049 0.6085410540412044 0.1624235219803861 0.7767215621147049 -0.6289472430853654 -0.3661115993580349 -0.6858481335039265 0.6289472430853654 0.3661115993580349 0.6858481335039265 -0.5743090273091251 -0.5802991287197341 -0.5774271056664763 0.5743090273091251 0.5802991287197341 0.5774271056664763 -0.4427321482617426 -0.7750459376961939 -0.4508791848779116 0.4427321482617426 0.7750459376961939 0.4508791848779116 -0.2441872046536548 -0.9200471218624373 -0.3064080655532411 0.2441872046536548 0.9200471218624373 0.3064080655532411 -0.0009191661727960211 -0.9893156326029051 -0.1457866050810589 0.0009191661727960211 0.9893156326029051 0.1457866050810589 0.2541575140733914 -0.9667924077064298 0.02676562050911938 -0.2541575140733914 0.9667924077064298 -0.02676562050911938 0.4943909936014089 -0.8587891359346767 -0.134382906079543 -0.4943909936014089 0.8587891359346767 0.134382906079543 0.678632070525607 -0.6768613832502095 -0.2851616747018091 -0.678632070525607 0.6768613832502095 0.2851616747018091 0.786000238321788 -0.4512445163072539 -0.4225896494954944 -0.786000238321788 0.4512445163072539 0.4225896494954944 0.8098845583138701 -0.2155298303784586 -0.5455583327397545 -0.8098845583138701 0.2155298303784586 0.5455583327397545 0.7565374213694939 -0.001002069762537574 -0.6539496356171383 -0.7565374213694939 0.001002069762537574 0.6539496356171383 0.6423782106379863 0.1672246913899974 -0.7479212104807959 -0.6423782106379863 -0.1672246913899974 0.7479212104807959 0.4908024138789744 0.2726984055720139 -0.8274953595815828 -0.4908024138789744 -0.2726984055720139 0.8274953595815828 0.328699855866639 0.309069924707604 -0.8924304938730449 -0.328699855866639 -0.309069924707604 0.8924304938730449 0.208799426558167 0.3259072970055406 -0.9220559816125716 -0.208799426558167 -0.3259072970055406 0.9220559816125716 0.262738214629763 0.9648263911120452 0.008869362258440948 0.2627382146290617 0.9648263911122363 0.008869362258425986 -0.2627382146290617 -0.9648263911122363 -0.008869362258425986 -0.262738214629763 -0.9648263911120452 -0.008869362258440948 -0.8637419973544239 0.5036274239499642 -0.01758351079032246 -0.8637419973546251 0.5036274239496189 -0.01758351079032801 0.8637419973544239 -0.5036274239499642 0.01758351079032246 0.8637419973546251 -0.5036274239496189 0.01758351079032801 -0.3400553820974201 0.1011973836096816 -0.9349446115450544 0.3400553820974201 -0.1011973836096816 0.9349446115450544 -0.4148224249368726 0.004660043095187091 -0.9098904548174158 0.4148224249368726 -0.004660043095187091 0.9098904548174158 -0.5073676840884672 -0.1359683542516166 -0.8509351560399958 0.5073676840884672 0.1359683542516166 0.8509351560399958 -0.5445683958127517 -0.3187301821619093 -0.775794001820691 0.5445683958127517 0.3187301821619093 0.775794001820691 -0.5117177064121296 -0.5202459488915865 -0.6837317760688052 0.5117177064121296 0.5202459488915865 0.6837317760688052 -0.4036892402830425 -0.7123863011207912 -0.574056404245382 0.4036892402830425 0.7123863011207912 0.574056404245382 -0.2264012318301354 -0.8657378269043655 -0.4463636379597962 0.2264012318301354 0.8657378269043655 0.4463636379597962 0.002674168342809279 -0.9536093305420663 -0.3010350370418475 -0.002674168342809279 0.9536093305420663 0.3010350370418475 0.2553281888293628 -0.9566652614757971 -0.1399967623717134 -0.2553281888293628 0.9566652614757971 0.1399967623717134 0.4803605755510936 -0.8277271292418628 -0.2900370958571451 -0.4803605755510936 0.8277271292418628 0.2900370958571451 0.6424437709868528 -0.6367756460822553 -0.4263599156542726 -0.6424437709868528 0.6367756460822553 0.4263599156542726 0.7265000897204144 -0.4145534161981872 -0.5480356601122253 -0.7265000897204144 0.4145534161981872 0.5480356601122253 0.730473860802335 -0.1928977000010639 -0.6551323652658525 -0.730473860802335 0.1928977000010639 0.6551323652658525 0.6637268285416016 -0.0003144592789068864 -0.7479749983719171 -0.6637268285416016 0.0003144592789068864 0.7479749983719171 0.5446006169185516 0.1412513518805684 -0.8267153220086374 -0.5446006169185516 -0.1412513518805684 0.8267153220086374 0.3974263846004949 0.2187077250184457 -0.8911897664586569 -0.3974263846004949 -0.2187077250184457 0.8911897664586569 0.2859644829189204 0.2661691254893333 -0.9205315372898194 -0.2859644829189204 -0.2661691254893333 0.9205315372898194 0.5034455859497519 0.8639152194155497 0.01389372699795187 0.503445585949203 0.8639152194158696 0.0138937269979407 -0.503445585949203 -0.8639152194158696 -0.0138937269979407 -0.5034455859497519 -0.8639152194155497 -0.01389372699795187 -0.9646120083116263 0.2628690234818005 -0.02058032834373268 -0.9646120083116045 0.2628690234818798 -0.02058032834373194 0.9646120083116263 -0.2628690234818005 0.02058032834373268 0.9646120083116045 -0.2628690234818798 0.02058032834373194 -0.3531904790474004 0.004488888957719248 -0.9355406647421549 0.3531904790474004 -0.004488888957719248 0.9355406647421549 -0.4004713051692005 -0.1079643163659815 -0.9099266124955922 0.4004713051692005 0.1079643163659815 0.9099266124955922 -0.4535694810488795 -0.2674154079416232 -0.850155118467486 0.4535694810488795 0.2674154079416232 0.850155118467486 -0.4423313282007313 -0.4531523112755949 -0.7739483050422444 0.4423313282007313 0.4531523112755949 0.7739483050422444 -0.3586015073162564 -0.6387825274440927 -0.680706869057927 0.3586015073162564 0.6387825274440927 0.680706869057927 -0.2047078378473075 -0.7958047953509289 -0.5699029994835496 0.2047078378473075 0.7958047953509289 0.5699029994835496 0.006021601204952955 -0.897337033899046 -0.4413048695767937 -0.006021601204952955 0.897337033899046 0.4413048695767937 0.2498039232086931 -0.922120700297329 -0.2954512041483479 -0.2498039232086931 0.922120700297329 0.2954512041483479 0.4557688691471337 -0.7788174878890094 -0.4309501809659626 -0.4557688691471337 0.7788174878890094 0.4309501809659626 0.5944567014228031 -0.5852051427618943 -0.5515035548557701 -0.5944567014228031 0.5852051427618943 0.5515035548557701 0.6556436601717064 -0.3715038014524968 -0.6573555479213603 -0.6556436601717064 0.3715038014524968 0.6573555479213603 0.6409965330925818 -0.1676685841847378 -0.7490064688911414 -0.6409965330925818 0.1676685841847378 0.7490064688911414 0.5625538693295438 0.00035826576537986 -0.8267605552685735 -0.5625538693295438 -0.00035826576537986 0.8267605552685735 0.4404305399112599 0.1136341502007895 -0.8905662352804649 -0.4404305399112599 -0.1136341502007895 0.8905662352804649 0.3450439523491791 0.1884909579382514 -0.9194649692744022 -0.3450439523491791 -0.1884909579382514 0.9194649692744022 0.709843972569652 0.7041296532039244 0.01797125720299684 0.7098439725698409 0.704129653203734 0.01797125720300043 -0.7098439725698409 -0.704129653203734 -0.01797125720300043 -0.709843972569652 -0.7041296532039244 -0.01797125720299684 -0.9997453049990275 0.004196533475167795 -0.02217463053115079 -0.9997453049990259 0.004196533475586073 -0.02217463053114944 0.9997453049990275 -0.004196533475167795 0.02217463053115079 0.9997453049990259 -0.004196533475586073 0.02217463053114944 -0.3408538085212146 -0.09232652605648978 -0.9355717470097756 0.3408538085212146 0.09232652605648978 0.9355717470097756 -0.3574671498591844 -0.2130378911784731 -0.9093030813176543 0.3574671498591844 0.2130378911784731 0.9093030813176543 -0.3675925860151662 -0.3804585297271904 -0.8486029683335471 0.3675925860151662 0.3804585297271904 0.8486029683335471 -0.3087971384061884 -0.5565292633643139 -0.7713102529665501 0.3087971384061884 0.5565292633643139 0.7713102529665501 -0.1800332617285237 -0.7136432630783878 -0.6769795548864233 0.1800332617285237 0.7136432630783878 0.6769795548864233 0.009074926255029914 -0.8248697788837159 -0.5652499390515631 -0.009074926255029914 0.8248697788837159 0.5652499390515631 0.2386971188683149 -0.8676901249433607 -0.4360476264351639 -0.2386971188683149 0.8676901249433607 0.4360476264351639 0.4227529321216487 -0.7158553769189683 -0.5557256856748214 -0.4227529321216487 0.7158553769189683 0.5557256856748214 0.5371463739879135 -0.5246486634642714 -0.6604676773596042 -0.5371463739879135 0.5246486634642714 0.6604676773596042 0.5757363563633686 -0.3234327762839545 -0.7509453290264783 -0.5757363563633686 0.3234327762839545 0.7509453290264783 0.5434386866323778 -0.1403792217880516 -0.8276279767875523 -0.5434386866323778 0.1403792217880516 0.8276279767875523 0.4547816596788558 0.001009790740828793 -0.8906023929579378 -0.4547816596788558 -0.001009790740828793 0.8906023929579378 0.3820116666481284 0.09816643310354276 -0.9189289624102871 -0.3820116666481284 -0.09816643310354276 0.9189289624102871 0.867867665532183 0.4963588147554552 0.02082407592856817 0.8678676655323523 0.4963588147551589 0.02082407592857099 -0.867867665532183 -0.4963588147554552 -0.02082407592856817 -0.8678676655323523 -0.4963588147551589 -0.02082407592857099 -0.9667476113080837 -0.2547619433524597 -0.02225776829316863 -0.9667476113079739 -0.2547619433528759 -0.0222577682931675 0.9667476113080837 0.2547619433524597 0.02225776829316863 0.9667476113079739 0.2547619433528759 0.0222577682931675 -0.3038860942234348 -0.1826510508838609 -0.9350357401450744 0.3038860942234348 0.1826510508838609 0.9350357401450744 -0.2887406211256501 -0.3034000908681764 -0.9080623539015127 0.2887406211256501 0.3034000908681764 0.9080623539015127 -0.2552961822971956 -0.467394017671707 -0.8463844821056075 0.2552961822971956 0.467394017671707 0.8463844821056075 -0.1530659607892866 -0.6218160699806958 -0.7680596244832917 0.1530659607892866 0.6218160699806958 0.7680596244832917 0.01181789951182864 -0.7397265203771768 -0.6728038438518338 -0.01181789951182864 0.7397265203771768 0.6728038438518338 0.2230901099411415 -0.7976005211221654 -0.5604143213302991 -0.2230901099411415 0.7976005211221654 0.5604143213302991 0.3830573964782168 -0.641895716774592 -0.6642566671022302 -0.3830573964782168 0.641895716774592 0.6642566671022302 0.4723936715489331 -0.4569919632973729 -0.7536594486650661 -0.4723936715489331 0.4569919632973729 0.7536594486650661 0.4885577369367373 -0.2713700835855517 -0.8292584732241357 -0.4885577369367373 0.2713700835855517 0.8292584732241357 0.4395017388067411 -0.1114901893857471 -0.8912957754059991 -0.4395017388067411 0.1114901893857471 0.8912957754059991 0.3943483371768444 0.001351018090351226 -0.9189600446787538 -0.3943483371768444 -0.001351018090351226 0.9189600446787538 0.9667476113081887 0.2547619433520741 0.02225776829302697 0.9667476113079512 0.2547619433529749 0.02225776829302454 -0.9667476113081887 -0.2547619433520741 -0.02225776829302697 -0.9667476113079512 -0.2547619433529749 -0.02225776829302454 -0.8678676655324664 -0.4963588147549536 -0.02082407592870581 -0.8678676655325369 -0.4963588147548306 -0.02082407592870699 0.8678676655324664 0.4963588147549536 0.02082407592870581 0.8678676655325369 0.4963588147548306 0.02082407592870699 -0.2448066247955861 -0.2603292184333861 -0.9339691721283179 0.2448066247955861 0.2603292184333861 0.9339691721283179 -0.1989753183204526 -0.3728928808582791 -0.9062889837708986 0.1989753183204526 0.3728928808582791 0.9062889837708986 -0.1243330842327818 -0.5222973619384772 -0.843650845953035 0.1243330842327818 0.5222973619384772 0.843650845953035 0.01424938225140104 -0.6445635431481918 -0.7644179445497747 -0.01424938225140104 0.6445635431481918 0.7644179445497747 0.203877636814658 -0.715254768459507 -0.6684643037610966 -0.203877636814658 0.715254768459507 0.6684643037610966 0.3380111118368912 -0.5592443073460365 -0.7569638650396995 -0.3380111118368912 0.5592443073460365 0.7569638650396995 0.401651066268798 -0.3836875088690929 -0.8315409289403423 -0.401651066268798 0.3836875088690929 0.8315409289403423 0.395632078650547 -0.2161991024476772 -0.8925991297572872 -0.395632078650547 0.2161991024476772 0.8925991297572872 0.381213240224046 -0.09535747656665139 -0.919556097875885 -0.381213240224046 0.09535747656665139 0.919556097875885 0.9997453049990297 -0.00419653347536473 0.02217463053102317 0.9997453049990317 -0.004196533474861222 0.0221746305310248 -0.9997453049990297 0.00419653347536473 -0.02217463053102317 -0.9997453049990317 0.004196533474861222 -0.0221746305310248 -0.7098439725698755 -0.7041296532036959 -0.01797125720312108 -0.7098439725702416 -0.7041296532033269 -0.01797125720312804 0.7098439725698755 0.7041296532036959 0.01797125720312108 0.7098439725702416 0.7041296532033269 0.01797125720312804 -0.1676415684399482 -0.3200673899592206 -0.9324447278073303 0.1676415684399482 0.3200673899592206 0.9324447278073303 -0.09428859848839755 -0.4167804423495221 -0.904103823169679 0.09428859848839755 0.4167804423495221 0.904103823169679 0.01637178947079024 -0.541426990346502 -0.840588352663688 -0.01637178947079024 0.541426990346502 0.840588352663688 0.1817466265932145 -0.6232214801630893 -0.7606333876351438 -0.1817466265932145 0.6232214801630893 0.7606333876351438 0.2886412206170018 -0.4696772507167243 -0.8343197983506722 -0.2886412206170018 0.4696772507167243 0.8343197983506722 0.326162324053013 -0.3059812090624734 -0.8944236345653017 -0.326162324053013 0.3059812090624734 0.8944236345653017 0.3435015109420526 -0.1853685267721385 -0.9206765019608429 -0.3435015109420526 0.1853685267721385 0.9206765019608429 0.964612008311616 -0.2628690234818462 0.02058032834363298 0.964612008311396 -0.2628690234826536 0.02058032834362555 -0.964612008311616 0.2628690234818462 -0.02058032834363298 -0.964612008311396 0.2628690234826536 -0.02058032834362555 -0.5034455859490291 -0.8639152194159694 -0.01389372699803999 -0.5034455859492344 -0.8639152194158499 -0.01389372699804417 0.5034455859492344 0.8639152194158499 0.01389372699804417 0.5034455859490291 0.8639152194159694 0.01389372699803999 -0.07764959622744945 -0.3577945077869944 -0.9305662955443725 0.07764959622744945 0.3577945077869944 0.9305662955443725 0.01818531141714634 -0.4320719105493701 -0.9016557871842662 -0.01818531141714634 0.4320719105493701 0.9016557871842662 0.1572296342021327 -0.5234792503311242 -0.8374057060955744 -0.1572296342021327 0.5234792503311242 0.8374057060955744 0.2358267239889203 -0.3747180070334116 -0.8966449528422952 -0.2358267239889203 0.3747180070334116 0.8966449528422952 0.2837831413617729 -0.2625480282105465 -0.9222449032451187 -0.2837831413617729 0.2625480282105465 0.9222449032451187 0.8637419973541769 -0.5036274239503912 0.01758351079022845 0.8637419973542998 -0.5036274239501805 0.01758351079023184 -0.8637419973541769 0.5036274239503912 -0.01758351079022845 -0.8637419973542998 0.5036274239501805 -0.01758351079023184 -0.2627382146290843 -0.9648263911122293 -0.008869362258521925 -0.2627382146294057 -0.9648263911121416 -0.008869362258528782 0.2627382146294057 0.9648263911121416 0.008869362258528782 0.2627382146290843 0.9648263911122293 0.008869362258521925 0.01903648765293333 -0.370939531179422 -0.9284618873956164 -0.01903648765293333 0.370939531179422 0.9284618873956164 0.1307815003118127 -0.4177251971732899 -0.8991117054197034 -0.1307815003118127 0.4177251971732899 0.8991117054197034 0.2061278396789295 -0.3216363253978902 -0.924154417775428 -0.2061278396789295 0.3216363253978902 0.924154417775428 0.7040093966783472 -0.7100644477598086 0.0133884060346105 0.7040093966791257 -0.7100644477590364 0.0133884060346302 -0.7040093966783472 0.7100644477598086 -0.0133884060346105 -0.7040093966791257 0.7100644477590364 -0.0133884060346302 -0.004125668178327283 -0.9999862387051465 -0.003240565138432951 -0.004125668177669551 -0.9999862387051491 -0.003240565138418362 0.004125668177669551 0.9999862387051491 0.003240565138418362 0.004125668178327283 0.9999862387051465 0.003240565138432951 0.1158276863692945 -0.3586066485245774 -0.9262749152947555 -0.1158276863692945 0.3586066485245774 0.9262749152947555 0.4962997190492763 -0.8681117528914614 0.008280903533050206 0.4962997190497487 -0.8681117528911913 0.008280903533061537 -0.4962997190492763 0.8681117528914614 -0.008280903533050206 -0.4962997190497487 0.8681117528911913 -0.008280903533061537 0.2547680357414244 -0.9669986766858782 0.002609071140556649 0.2547680357413028 -0.9669986766859102 0.002609071140553848 -0.2547680357413028 0.9669986766859102 -0.002609071140553848 -0.2547680357414244 0.9669986766858782 -0.002609071140556649</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1058\" source=\"#ID10247\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10245\">\r\n\t\t\t\t\t<float_array count=\"3984\" id=\"ID10248\">26.115218830263 56.93010332304471 26.20913830073997 56.93010332065787 26.09574884231849 56.77689449231784 26.22860828089729 56.77689448894147 28.43145434552952 63.87390128735891 28.52537381600656 63.87390128114575 28.41198435134318 63.72069245742546 28.54484378992189 63.72069244863603 26.09574893877762 84.11899254653849 26.22860837735642 84.11899254410731 26.07884376181819 83.98119828913769 26.24551354927299 83.98119828608779 22.01607464430488 50.80157960119148 22.1099941147819 50.80157960279153 21.99660466286444 50.64837076963813 22.12946410144313 50.64837077190191 26.13733478419485 32.4095485811368 26.18702199819639 32.40954857918445 26.11521864926026 32.23910696391975 26.20913811973723 32.23910696022945 28.7874635736893 71.00655655571001 28.80693357341891 71.15976538493904 28.92032301226812 71.00655654211415 28.90085304389588 71.15976537532808 28.41198446235475 90.82252685056838 28.54484390093345 90.82252684423848 28.39507928135207 90.68473259366365 28.56174906880679 90.68473258572296 28.45357028613935 39.49958868742695 28.50325750014079 39.49958868234717 28.4314541404772 39.32914707160165 28.52537361095424 39.32914706200021 26.07884382267874 113.6829205197153 26.24551361013354 113.682920517374 26.06442212153353 113.5586356657231 26.25993530778687 113.5586356629776 21.99660456651236 78.20252303697845 22.12946400509105 78.20252303860954 21.97969939376596 78.06472877906072 22.14636918122076 78.06472878110699 16.41337156830675 45.90597868066165 16.50729103878364 45.9059786861429 16.39390159319687 45.75276984830407 16.52676103177557 45.75276985605744 22.0381909492197 26.15195305353207 22.08787816322102 26.15195305483941 22.01607482546645 25.98151143486414 22.10999429594347 25.98151143733514 26.18702151984367 10.36012064406592 26.13733430584212 10.36012064789339 26.16217792743348 10.54953440886715 27.19659810823282 78.13796740067026 27.21606811244918 78.29117622932937 27.32945754681148 78.13796738318317 27.30998758292615 78.29117621696733 28.77055833359501 97.71849708528208 28.78746351818748 97.85629134174621 28.93722812104999 97.71849707299992 28.9203229567663 97.8562913319558 28.80693368699502 46.76845761846204 28.82904984217894 46.9388992330518 28.90085315747199 46.76845760361405 28.87873705618019 46.93889922519676 28.39507935225944 120.0232750393393 28.56174913971416 120.0232750332422 28.38065764831389 119.8989901856724 28.57617083456703 119.8989901785197 28.47841339879416 17.71621833678591 28.50325696785856 17.5268045689227 28.45356975385712 17.52680457887441 26.06442216396257 144.8534025391796 26.25993535021591 144.8534025369708 26.0524026037534 144.7406357105929 26.27195490787556 144.7406357081115 21.97969933299614 108.0869897088545 22.14636912045095 108.0869897104251 21.96527763476801 107.9627048545248 22.1607908210212 107.9627048563667 16.39390117563368 73.47631579179198 16.52676061421238 73.47631579737515 16.3769960069864 73.33852153337143 16.54366579444112 73.33852154037577 9.688924350647401 42.57692755677971 9.782843821124434 42.57692756576662 9.66945438125617 42.42371872369505 9.802313819834986 42.42371873640779 16.43548846884957 21.15324657812581 16.48517568285094 21.15324658260852 16.41337235598885 20.98280495804432 16.50729182646573 20.98280496651772 22.0878786453464 4.034880032004987 22.03819143134508 4.03488002944153 22.06303502857353 4.22429379361079 23.74780260615083 84.62893125726623 23.7672726134712 84.78214008553077 23.88066204472963 84.62893123708737 23.86119208394822 84.78214007126624 27.17969256320358 104.6031524882627 27.19659775070121 104.7409467443701 27.34636235065828 104.603152472466 27.32945718927987 104.7409467317782 27.21606880143096 54.05006220504635 27.23818496434278 54.2205038186334 27.30998827190793 54.05006218593954 27.28787217834431 54.22050380852501 28.75613659494168 126.5516838644307 28.77055830137517 126.6759687178091 28.95164978119499 126.5516838533655 28.93722808883015 126.6759687083763 28.85389383637224 25.23594866862148 28.87873738481158 25.04653489805329 28.82905017081033 25.04653491341517 28.38065769828013 150.6774174708883 28.57617088453328 150.6774174651319 28.36863813602622 150.564650642519 28.58819044014818 150.5646506360555 26.05240263551047 176.2358088944704 26.27195493963263 176.2358088923925 26.04270388148873 176.132499996525 26.28165369169821 176.1324999942635 21.96527759259453 139.7131876660449 22.16079077884773 139.7131876675273 21.9532580345154 139.6004208372302 22.1728103386375 139.6004208388956 16.37699574493225 103.6168359295896 16.54366553238697 103.6168359349683 16.36257404954364 103.49255107493 16.55808723579682 103.4925510812391 9.669453599174512 70.26245394062849 9.802313037753326 70.26245394978145 9.652548434229203 70.12465968175408 9.819218221684073 70.12465969323627 2.300992720842084 41.04129556425744 2.394912191319002 41.04129557613388 2.281522756165614 40.88808673057351 2.41438219474436 40.88808674737467 9.711041928482334 17.75408255455946 9.760729142483985 17.75408256190764 9.688925825450752 17.58364093320267 9.782845295927784 17.5836409470923 16.4851777717308 -1.017863207619359 16.43549055772943 -1.017863216394392 16.46033413127856 -0.8284494491193479 18.67610654704243 90.03709966881519 18.69557655588403 90.19030849688647 18.80896598562109 90.03709964731728 18.78949602636096 90.19030848168937 23.73089670344054 110.8695210095782 23.74780189294764 111.0073152654396 23.89756649089543 110.8695209913517 23.88066133152644 111.0073152509101 23.76727397753689 60.67773172337373 23.78939014577584 60.84817333626948 23.8611934480139 60.67773170133174 23.83907735977723 60.84817332460848 27.1652706347496 133.0633467397718 27.1796923431948 133.1876315929168 27.36078382100288 133.0633467255414 27.3463621306495 133.1876315807856 27.26303051989986 32.59626879906165 27.28787405147759 32.40685502628191 27.23818683747606 32.40685504606719 28.74411700999564 156.6755687501624 28.75613657406716 156.7883355783373 28.963669314118 156.6755687401607 28.95164976032046 156.7883355694314 28.3686381737783 181.3655268813025 28.58819047790025 181.3655268758907 28.35893941818822 181.2622179835045 28.59788922839762 181.2622179776144 26.04270390663226 205.8041587970281 26.28165371684174 205.804158795063 26.0352446241162 205.7082214531538 26.28911299777953 205.7082214510643 21.9532580030221 171.708373269824 22.1728103071442 171.7083732712191 21.94355925063471 171.6050643717252 22.18250906084418 171.6050643732434 16.36257386733108 135.6070699096921 16.55808705358426 135.607069914769 16.35055431132498 135.4943030806572 16.57010661544709 135.4943030863575 9.652547944319135 100.5770927060012 9.819217731774005 100.5770927148199 9.638126251495814 100.4528078510436 9.833639437749145 100.4528078613888 2.28152166386466 68.77995686422918 2.414381102443406 68.77995687632807 2.264616501974715 68.64216260497994 2.431286289429676 68.64216262015731 -5.153028717382026 41.40373362899869 -5.133558710554 41.25052480067176 -5.246948187858944 41.40373361503583 -5.266418149132726 41.25052478091995 2.323110874123012 16.18610840742443 2.372798088124293 16.18610841713052 2.300994779180124 16.01566678501815 2.39491424965704 16.01566680336465 9.760733054636591 -4.453773325369585 9.711045840634942 -4.453773339746745 9.73588939282881 -4.264359569670725 12.32713742973424 93.99391477966545 12.34660743840963 94.14712360775781 12.45999686831299 93.99391475831156 12.44052690888653 94.14712359266258 18.65920033006841 116.0905599925636 18.67610552056161 116.228354248304 18.82587011752317 116.0905599731441 18.80896495914027 116.2283542328239 18.69557851544531 66.19980144844205 18.71769468630487 66.37024306099789 18.78949798592224 66.19980142495599 18.76738190030629 66.37024304857273 23.71647455224439 138.9902198192631 23.73089626208156 139.114504672246 23.91198773849749 138.9902198028428 23.89756604953645 139.1145046582488 23.81423752275033 39.29558551095494 23.83908104274023 39.10617173665556 23.78939382873884 39.10617175948043 27.15325091873757 162.656941159154 27.16527048427692 162.7697079871738 27.3728032228596 162.6569411462954 27.36078367053019 162.7697079757219 28.73441823835035 186.6446366208521 28.74411699533413 186.7479455185198 28.97336804855972 186.6446366117388 28.96366929945649 186.7479455101458 28.3589394483088 210.0525513156186 28.5978892585182 210.0525513105017 28.35148016452791 209.9566139718409 28.6053485381912 209.9566139664064 26.03524464502334 231.1785476775977 26.28911301868667 231.1785476757154 26.02994349936759 231.0879397595404 26.2944141629994 231.0879397575804 21.94355922568482 202.0545718438751 22.18250903589428 202.0545718451943 21.93609994448744 201.9586344998966 22.18996831815075 201.9586345012976 16.35055417525852 168.0917571858692 16.57010647938063 168.0917571906414 16.34085542446086 167.9884482876211 16.57980523467011 167.9884482928158 9.638125910916083 132.8148743591896 9.833639097169412 132.8148743675154 9.626106356783405 132.7021075299542 9.845658660905347 132.7021075393036 2.264615817009879 99.17491351989669 2.431285604464839 99.17491353155106 2.250194126301552 99.05062866469407 2.445707312554775 99.05062867836512 -5.133559978381583 69.12985439082671 -5.116654789192334 68.99206013492643 -5.266419416960309 69.12985437660367 -5.283324576646947 68.99206011708368 -12.3465993213165 43.63954238667682 -12.32712931264531 43.48633355858397 -12.44051879179341 43.63954237158445 -12.45998875122413 43.4863335372342 -5.175142492472066 16.55617919112287 -5.153026325070973 16.38573757811843 -5.224829706473543 16.55617917970583 -5.24694579554789 16.38573755653792 2.372803564204779 -6.038698701072611 2.323116350203501 -6.038698720078606 2.347959884750997 -5.849284947688229 5.133566883556746 96.22972597129197 5.153036890381467 96.38293479961925 5.266426322135573 96.22972595154285 5.246956360858494 96.38293478565865 12.31023102576208 119.9104641744017 12.32713621614698 120.0482584301559 12.47690081321695 119.9104641551135 12.45999565472572 120.0482584147801 12.3466097506298 70.23995127601722 12.36872592119189 70.41039288861153 12.4405292211067 70.23995125269498 12.4184131351934 70.41039287627326 18.64477798280223 143.9283964993014 18.65919969332226 144.0526813522051 18.84029116905552 143.9283964818074 18.82586948077702 144.0526813372919 18.74254366453781 44.87735143204766 18.76738717880098 44.68793765699728 18.71769996479956 44.68793768132444 23.7044546824368 168.1011472796565 23.71647424899397 168.2139141075668 23.92400698655877 168.1011472648142 23.91198743524707 168.2139140943505 27.14355204978811 191.9129530518081 27.15325080789776 192.0162619493695 27.38250185999748 191.9129530400908 27.37280311201979 192.016261938604 28.73441822736034 214.5102285497947 28.97336803756971 214.5102285418776 28.72695894245455 214.4142912061057 28.980827316118 214.4142911976931 28.35148018964348 234.3753724986621 28.60534856330676 234.3753724937669 28.34617904291166 234.2847645806689 28.61064970654346 234.284764575568 26.02994351746331 250.1884867779172 26.29441418109513 250.1884867760879 26.02671917404479 250.1013004526978 26.29763852330778 250.101300450823 21.93609992376989 228.3570634116407 22.1899682974332 228.3570634129025 21.93079877923602 228.2664554935187 22.19526944286782 228.2664554948324 16.33339603700664 198.9633811986274 16.34085531692173 199.0593185427061 16.58726441066999 198.9633812034224 16.57980512713099 199.0593185472188 9.626106102440943 165.6324270083155 9.845658406562889 165.6324270161433 9.616407353079946 165.5291181099334 9.85535716328957 165.5291181184526 2.250193650844361 131.5268845267821 2.445706837097584 131.5268845377853 2.238174098256632 131.414117697382 2.457726402378747 131.4141177097391 -5.116655584014604 99.50585465211105 -5.102233874398067 99.38156979910195 -5.283325371469218 99.50585463840903 -5.297747060651338 99.38156978302908 -12.32713057374665 71.2883017098099 -12.3102253833647 71.15050745405597 -12.45999001232547 71.28830169443722 -12.47689517081957 71.15050743477113 -18.69556966375615 47.59635541699152 -18.67609965491461 47.44314658892029 -18.78948913423328 47.59635540179435 -18.80895909349323 47.44314656742225 -12.36871311507045 18.83907549953149 -12.34659694450924 18.6686338869371 -12.41840032907192 18.8390754871934 -12.44051641498616 18.66863386361541 -5.175136137667694 -5.664628910608436 -5.224823351669167 -5.664628932959074 -5.199979829871189 -5.47521515889648 -2.281515711479254 96.59216614622538 -2.414375150058009 96.59216616302896 -2.300985676152862 96.74537497990929 -2.394905146629858 96.74537499178784 5.116660471274233 122.0689132473253 5.133565660463489 122.2067075032254 5.283330258729043 122.068913229482 5.266425099042317 122.2067074890024 5.153039222219991 72.52285134996704 5.17515538960969 72.69329296297323 5.246958692697016 72.5228513283929 5.224842603611192 72.6932929515594 12.29580856179235 147.5413481367807 12.31023027223685 147.6656329896932 12.49132174804564 147.5413481194059 12.47690005969172 147.6656329748817 12.39357583466055 48.96117810562077 12.41841934963971 48.77176433066444 12.3687321356382 48.77176435480371 18.63275797732967 172.637173464116 18.64477754438468 172.7499402919728 18.85231028145185 172.6371734483054 18.84029073063798 172.7499402778936 23.69475569898898 196.7081402660114 23.70445445787949 196.8114491635002 23.93370550919851 196.7081402524874 23.92400676200146 196.8114491510733 27.14355196319106 218.8734072308371 27.38250177340043 218.8734072206579 27.13609267737706 218.7774698872183 27.38996105104017 218.777469876404 28.72695893373071 237.7296796165437 28.98082730739415 237.7296796089654 28.72165778604198 237.6390716986049 28.98612844967387 237.6390716907116 28.34617906471916 252.2092160009792 28.61064972835095 252.209215996218 28.34295472033401 252.1220296757942 28.61387406959715 252.1220296709183 26.02671919032827 261.47370327158 26.29763853959126 261.4737032697697 26.02549031453644 261.3882527974152 26.29886741424153 261.3882527955878 21.93079876134345 248.405012224723 22.19526942497525 248.405012225949 21.92757441893249 248.3178258994655 22.19849376819551 248.3178259007248 16.32809480451967 226.0125912118556 16.33339594796244 226.1031991300422 16.59256546815156 226.0125912163556 16.58726432162579 226.1031991343617 9.608947873429148 196.926583075327 9.61640715218488 197.0225204194953 9.862816247092534 196.9265830831893 9.855356962394502 197.0225204268964 2.228474994907432 164.394673129195 2.238173743082715 164.4979820276886 2.467424805116702 164.3946731404535 2.457726047204829 164.4979820380347 -5.10223442658282 131.8308748606556 -5.09021486018789 131.7181080327279 -5.297747612836091 131.8308748477209 -5.309767164310171 131.718108018203 -12.31022617382616 101.5473631013246 -12.29580446338234 101.4230782484119 -12.47689596128104 101.5473630865138 -12.49131764963554 101.4230782310375 -18.67610072960586 75.10820439286044 -18.6591955391136 74.97041013711922 -18.80896016818448 75.10820437738113 -18.82586532656838 74.97041011770156 -23.76726778720883 53.00452265893068 -23.74779777988954 52.85131383066621 -23.86118725768569 53.00452264466706 -23.88065721846835 52.85131381048844 -18.71768381112159 22.87922210830717 -18.69556764026572 22.7087804957511 -18.76737102512305 22.87922209588317 -18.78948711074284 22.70878047226697 -12.36870681021958 -3.357055537873413 -12.41839402422105 -3.357055562012673 -12.39355050924181 -3.167641787055894 -9.669449346015353 95.05653542775801 -9.8023087845364 95.05653544046577 -9.6889193154118 95.20974426084169 -9.782838785830998 95.20974426982492 -2.264611605039876 122.4188122844649 -2.431281392494593 122.4188122996407 -2.281516766930392 122.5566065437142 -2.414376205509146 122.5566065558123 -2.300983665409541 72.89292540922855 -2.394903135886535 72.89292542758568 -2.323099760333446 73.06336703163774 -2.372786974334831 73.06336704134944 5.102238001432419 149.5828579333635 5.116659711048889 149.7071427863726 5.297751187685583 149.5828579172899 5.283329498503697 149.7071427726697 5.200005355338512 51.26875884136129 5.224848877133315 51.07934506729897 5.175161663131815 51.07934508965052 12.28378847551601 175.9558969742533 12.2958080425154 176.068663802116 12.50334077963815 175.9558969585517 12.4913212287687 176.0686637881337 18.62305889307329 200.7034141813934 18.63275765234562 200.8067230788462 18.86200870328268 200.7034141669864 18.8523099564678 200.8067230656089 23.6947555228923 222.8447439834877 23.93370533310184 222.8447439717388 23.68729623644873 222.7488066399179 23.94116461011209 222.7488066274354 27.13609260627322 241.0128786070462 27.38996097993633 241.0128785973049 27.1307914578116 240.9222706891538 27.39526212144339 240.9222706790044 28.72165777873707 254.3294906029337 28.98612844236896 254.3294905955659 28.71843343349251 254.2423042777825 28.98935278275544 254.242304270233 28.34295474000606 262.2594968764983 28.6138740892692 262.2594968717907 28.34172586329986 262.1740464023457 28.61510296300476 262.1740463975963 26.02549032980306 264.7643913546346 26.29886742950815 264.7643913528148 26.02617558703671 264.6792727819415 26.29818217114246 264.6792727801335 21.92757440283709 260.780170019464 22.19849375210011 260.7801700206801 21.92634552799894 260.6947195452848 22.19972262770394 260.6947195465084 16.32487038616445 246.8931468028362 16.32809472759539 246.9803331281265 16.59578973542751 246.8931468071366 16.59256539122728 246.980333132327 9.603646564639108 224.479944005686 9.608947707095604 224.5705519239302 9.868117228270993 224.4799440130648 9.862816080758989 224.5705519310126 2.221015436619593 195.987044555992 2.228474714419038 196.0829819002355 2.474883810282842 195.9870445663857 2.467424524628308 196.0829819100161 -5.309767576536917 164.7657328418129 -5.090215272414636 164.7657328539738 -5.319466323858297 164.6624239432373 -5.080516513648832 164.6624239564738 -12.29580501275178 133.7061289949988 -12.28378544575212 133.5933621671356 -12.49131819900497 133.7061289810152 -12.50333774987396 133.5933621514327 -18.65919621325605 105.1603135852111 -18.64477450273586 105.0360287323088 -18.82586600071083 105.1603135702984 -18.84028768898904 105.0360287148137 -23.74779853787928 80.32924253290724 -23.73089334837083 80.19144827704574 -23.8806579764581 80.32924251837648 -23.89756313582564 80.19144825881674 -27.21606563833292 59.49548656699588 -27.19659563411369 59.34227773833785 -27.30998510880998 59.49548655463241 -27.32945507269239 59.34227772084793 -23.78938253132058 28.40129002788499 -23.76726636308692 28.23084841498856 -23.83906974532199 28.40129001622535 -23.86118583356378 28.23084839294947 -18.71767844595206 0.7267648298480989 -18.76736565995352 0.7267648055318308 -18.74252214564908 0.9161785805770322 -16.39389890999609 91.72748436582452 -16.5267583486285 91.72748437357842 -16.41336888510531 91.88069319818233 -16.5072883556361 91.88069320366387 -9.652544933914003 120.9363161240218 -9.819214721311106 120.9363161355035 -9.669450098860052 121.0741103828973 -9.802309537381099 121.0741103920491 -9.688917879986095 71.32495322621422 -9.782837350405291 71.32495324009587 -9.711033983031879 71.49539484756957 -9.76072119697554 71.49539485491356 -2.250190569565832 149.9138002204016 -2.445703755819114 149.9138002340743 -2.264612260273556 150.0380850756049 -2.431282047728275 150.0380850872592 -2.372781573400553 51.45342135126001 -2.347937893951555 51.64283510464406 -2.323094359399171 51.45342133225526 5.090217910914192 177.8311521930812 5.102237477308981 177.9439190210098 5.30977021503619 177.8311521785568 5.297750663562146 177.9439190080743 12.27408933122538 203.6265034379965 12.283788090455 203.7298123354532 12.51303914143464 203.6265034236887 12.50334039457714 203.7298123223071 18.86946772482292 226.0576614161243 18.61559935115969 226.0576614294204 18.86200844812084 226.1535987604514 18.62305863791145 226.1535987729674 23.68729609149735 244.0012249216425 23.94116446516071 244.0012249103978 23.68199494250008 243.9106170037801 23.94646560613185 243.9106169920672 27.13079139675817 256.4048174317825 27.39526206038996 256.4048174223088 27.12756705081958 256.3176311066557 27.39848640008264 256.3176310969523 28.71843342704589 263.0840003627128 28.98935277630883 263.0840003554235 28.71720454952612 262.9985498885708 28.99058164923121 262.9985498812166 28.3417258817431 264.3245001035996 28.61510298144799 264.3245000988699 28.34241113806938 264.2393815309015 28.61441772217514 264.2393815261931 26.02617560193268 260.7053456271449 26.29818218603844 260.7053456252938 26.02869365759405 260.6194528180197 26.29566412920751 260.6194528162013 21.92634551292403 265.1526347770496 22.19972261262902 265.1526347782682 21.92703077110343 265.0675162043669 22.19903735520923 265.0675162055798 16.32364144305779 260.1407097361973 16.3248703169685 260.2261602103934 16.59701854276279 260.1407097403912 16.59578966623156 260.2261602145454 9.600422080420474 245.924352657355 9.603646420965735 246.0115389826806 9.871341429683383 245.9243526644113 9.868117084597623 246.0115389895683 2.215714062751806 223.772961251756 2.221015204394479 223.8635691700472 2.480184726383659 223.7729612615097 2.474883578057728 223.8635691794102 -5.319466649440461 196.3047310241642 -5.080516839230995 196.3047310356637 -5.326925926550885 196.2087936798694 -5.073057552887553 196.2087936920858 -12.28378585617853 166.4174327663798 -12.27408709694846 166.3141238689228 -12.50333816030037 166.4174327532326 -12.51303690715787 166.3141238546147 -18.6447749716776 137.0248515786425 -18.63275540462232 136.912084750784 -18.84028815793078 137.0248515645621 -18.85230770874442 136.9120847349737 -23.7308938252131 110.0984896185992 -23.7164721153757 109.9742047656166 -23.89756361266791 110.0984896046008 -23.9119853016291 109.9742047491969 -27.1965960308285 86.59561109353962 -27.17969084332969 86.45781683743124 -27.3294554694072 86.59561108094593 -27.34636063078436 86.45781682163316 -28.80693310950273 66.62689868036628 -28.78746310977006 66.47368985113681 -28.90085257997957 66.62689867075254 -28.92032254834874 66.47368983753863 -27.23818106090685 35.02895963084686 -27.21606489800943 34.85851801725808 -27.28786827490826 35.02895962074306 -27.30998436848649 34.85851799815951 -23.7893787631984 6.308527221728882 -23.83906597719981 6.308527198906246 -23.81422245720122 6.49794097320452 -21.99660404563318 86.83188228203441 -22.12946348426576 86.83188228430379 -22.01607402706762 86.98509111358867 -22.10999349759841 86.9850911151929 -16.37699414185475 117.7224543191645 -16.54366392936338 117.7224543261676 -16.39389931050323 117.8602485775849 -16.52675874913564 117.8602485831672 -16.41336812192957 67.92578929663392 -16.50728759246037 67.92578930510261 -16.43548423479895 68.09623091671463 -16.48517144885405 68.09623092119448 -9.638123708804072 148.5116217392978 -9.83363689499949 148.5116217496412 -9.652545401628036 148.6359065942542 -9.819215189025139 148.6359066030723 -9.760717335884861 49.86849980911812 -9.735873674131693 50.05791356481554 -9.711030121941199 49.8684997947402 -2.238171468551152 178.1351434540774 -2.457723772673205 178.1351434664362 -2.250191021138148 178.2479102834777 -2.445704207391431 178.2479102944828 5.080518763383497 205.2782042570906 5.090217522149596 205.3815131545895 5.319468573593062 205.2782042438546 5.309769826271594 205.3815131424292 12.52049811576678 228.4785412184141 12.2666297421034 228.478541231622 12.51303883903057 228.5744785627398 12.27408902882131 228.5744785751703 18.87476865529711 246.400459768541 18.61029799166534 246.4004597810205 18.86946751458807 246.4910676868883 18.61559914092484 246.4910676988657 23.68199481778316 258.2937664284809 23.94646548141494 258.2937664175479 23.67877047136328 258.2065801033721 23.94968982062637 258.2065800921724 27.12756699610078 263.8910252362645 27.39848634536384 263.8910252268959 27.12633811792437 263.8055747621326 27.39971521762927 263.8055747526784 28.71720454353143 263.8629389494746 28.99058164323652 263.8629389421507 28.71788979905092 263.77782037677 28.98989638315671 263.7778203694829 28.34241115607039 259.1034874426281 28.61441774017614 259.1034874378074 28.34492921079429 259.0175946334756 28.61189968240779 259.017594628744 26.02869367278991 250.4178120262983 26.29566414440336 250.4178120243896 26.03296319228308 250.3303105247655 26.29139462365914 250.3303105229185 21.92703075638571 262.1191289497037 22.1990373404915 262.1191289509455 21.92954881302432 262.0332361406056 22.19651928463767 262.0332361418249 16.32364137822439 265.4627721687675 16.5970184779294 265.4627721729441 16.32432663732379 265.3776535960927 16.59633322142959 265.3776536002474 9.599193078083454 259.763978192566 9.600421951156086 259.8494286667699 9.872570177788427 259.763978199438 9.871341300418994 259.849428673583 2.212489522276842 245.4774651845481 2.215713862091399 245.5646515099 2.483408871539985 245.4774651938731 2.480184525723252 245.5646515190041 -5.32692619611132 224.0304306118188 -5.073057822447986 224.0304306228235 -5.332227337167792 223.939822693493 -5.067756673536003 223.9398227049559 -12.51303723143283 197.672656026091 -12.27408742122342 197.6726560385208 -12.52049650816902 197.576718681766 -12.26662813450577 197.576718694972 -18.63275575526039 169.3405212484775 -18.6230569959882 169.2372123510252 -18.85230805938249 169.3405212352415 -18.86200680619765 169.237212336619 -23.71647244739958 141.5608772430753 -23.70445288084319 141.4481104151648 -23.91198563365298 141.5608772298608 -23.92400518496526 141.4481104003242 -27.17969109408388 116.0253627296565 -27.16526938563912 115.9010778765115 -27.34636088153856 116.0253627175262 -27.36078257189228 115.9010778622827 -28.78746319570899 93.4802674090069 -28.77055801111607 93.34247315254291 -28.92032263428768 93.4802673992167 -28.93722779857103 93.34247314026015 -28.41198501532837 73.75955608611272 -28.54484445390718 73.75955607732718 -28.43145500951032 73.91276491604711 -28.52537447998736 73.91276490983699 -28.82904911001586 42.31056617516592 -28.80693295480159 42.14012456058051 -28.8787363240172 42.31056616730162 -28.90085242527844 42.14012454571507 -27.23817911621244 13.00784410845956 -27.28786633021385 13.00784408869114 -27.26302279857273 13.19725786146223 -26.09574945082245 80.70335648214659 -26.22860888934344 80.70335647876544 -26.11521943877181 80.85656531287279 -26.20913890919107 80.85656531048275 -21.97969896462351 112.9962462380055 -22.14636875213201 112.9962462400546 -21.99660413736766 113.1340404959232 -22.12946357600023 113.1340404975569 -22.01607385174064 62.92708101679251 -22.10999332227142 62.92708101927229 -22.03818997547845 63.09752263546247 -22.08787718953377 63.09752263677444 -16.36257269483687 145.471878551684 -16.55808588114398 145.4718785579925 -16.3769943902258 145.5961634063434 -16.54366417773442 145.5961634117215 -16.48516940491395 46.43258985959871 -16.46032576456982 46.62200361809679 -16.43548219085885 46.4325898508517 -9.626104477283828 176.847154189771 -9.845656781348247 176.8471541991174 -9.638124031417691 176.9599210190058 -9.833637217613111 176.9599210273291 -2.22847305573345 205.5459558575812 -2.467422865942734 205.545955868841 -2.238171803908663 205.6492647560744 -2.457724108030714 205.6492647664215 5.326927545266478 229.8464670090229 5.073059171603083 229.8464670212405 5.319468268156248 229.9424043533183 5.080518457946686 229.9424043648174 12.52579900709341 248.2221203044317 12.26132834346152 248.2221203168255 12.52049786635537 248.3127282227755 12.26662949269199 248.3127282346734 18.87799281325732 259.7804225048872 18.60707346399424 259.78042251682 18.87476847428157 259.8676088302713 18.61029781064979 259.8676088419199 23.67877035945019 264.6255741189914 23.94968970871329 264.6255741081779 23.67754148081845 264.5401236448676 23.95091858052352 264.5401236339544 27.12633806675058 263.4111625780835 27.39971516645547 263.4111625686682 27.12702332161859 263.3260440053738 27.39902990572424 263.3260439960055 28.71788979317459 257.4227184497941 28.98989637728038 257.4227184423333 28.72040784706494 257.336825640616 28.98737831867829 257.3368256332945 28.3449292291132 247.7516964599989 28.6118997007267 247.7516964550325 28.34919874760411 247.6641949584172 28.60763017898011 247.6641949536096 26.03296320847988 235.0881949181183 26.29139463985594 235.0881949161339 26.03890285720822 234.9984671684811 26.28545498974982 234.9984671665885 21.92954879800752 252.7708978174713 22.19651926962088 252.7708978187511 21.93381831854568 252.6833963159901 22.19224974992176 252.6833963172293 16.32432657402832 263.2484903575491 16.59633315813411 263.2484903618027 16.32684463161732 263.1625975484793 16.59381510323081 263.1625975526533 9.599192957015994 265.6736681485368 9.872570056720965 265.6736681553804 9.599878216946786 265.5885495758676 9.871884801052577 265.5885495826769 2.211260469436545 259.5901985480112 2.212489341817349 259.6756490222279 2.484637569141586 259.5901985570967 2.483408691080492 259.6756490312313 -5.332227570001628 245.6701253867839 -5.067756906369839 245.6701253974833 -5.335451909289668 245.5829390614115 -5.064532560026674 245.5829390723742 -12.52049677664945 225.059764979218 -12.2666284029862 225.0597649911142 -12.52579791738752 224.9691570608722 -12.26132725375581 224.9691570732672 -18.86200708317197 200.0935351540132 -18.62305727296253 200.093535166529 -18.86946635987402 199.9975978096857 -18.61559798621074 199.9975978229826 -23.70445312928788 173.3357947275672 -23.69475437039767 173.2324858300782 -23.92400543340995 173.3357947151413 -23.93370418060703 173.2324858165553 -27.16526956092757 147.0050833871167 -27.15324999538845 146.8923165590985 -27.36078274718074 147.0050833756662 -27.3728022995105 146.8923165462392 -28.77055806709076 122.5370263037009 -28.756136360656 122.4127414503238 -28.93722785454573 122.5370262942659 -28.95164954690912 122.4127414392549 -28.39507974302297 100.3762391781812 -28.56174953047776 100.3762391702431 -28.4119849240237 100.514033435086 -28.5448443626025 100.514033428758 -28.45357133370822 49.74988002561719 -28.43145518805735 49.57943840979054 -28.50325854770977 49.74988002054084 -28.52537465853439 49.57943840019553 -28.82904872319266 20.36816808370569 -28.87873593719399 20.36816806832003 -28.85389238884455 20.55758183889964 -26.07884418476104 107.0797752331534 -26.24551397215815 107.0797752301004 -26.09574936172285 107.2175694905539 -26.22860880024384 107.21756948812 -26.11521960961244 56.66948227477144 -26.2091390800317 56.66948227107824 -26.1373357445523 56.83992389198783 -26.18702295849599 56.83992389003401 -21.96527732333909 141.0017241293738 -22.16079050964603 141.0017241312177 -21.97969902156622 141.1260089837043 -22.14636880907472 141.1260089852764 -22.08787671641858 41.3798430895644 -22.06303309956654 41.56925685115121 -22.03818950236325 41.37984308699475 -16.35055330986553 174.054958668468 -16.5701056140414 174.0549586741696 -16.36257286587135 174.1677254975035 -16.55808605217846 174.1677255025809 -9.616405967013382 204.4115113520097 -9.855355777165267 204.4115113605267 -9.626104716374542 204.5148202503929 -9.845657020438958 204.5148202582186 -2.228473319282147 230.1641541725567 -2.221014041482556 230.0682168283155 -2.46742312949143 230.1641541823379 -2.474882415145903 230.0682168387066 5.332228434395695 249.2514553842363 5.067757770763853 249.2514553956997 5.326927293339185 249.3420633025625 5.073058919675791 249.3420633135684 12.52902313128394 260.9319035438089 12.25810378202104 260.93190355566 12.52579879228215 261.0190898691918 12.26132812865026 261.0190898807602 18.87922152230175 265.1521382342829 18.60584442259687 265.1521382459068 18.87799265071442 265.2375887085081 18.60707330145135 265.2375887200294 23.67754137607983 262.9999588357549 23.9509184757849 262.9999588248867 23.67822663049599 262.9148402630404 23.95023321460203 262.9148402522279 27.12702327160604 255.7775803349398 27.39902985571169 255.7775803253481 27.12954132482323 255.6916875257431 27.39651179643661 255.6916875163279 28.72040784097886 244.9542425565047 28.98737831259221 244.9542425488197 28.72467735857836 244.8667410548802 28.98310878995436 244.8667410474404 28.34919876711729 231.471187192191 28.60763019849328 231.4711871870251 28.35513841474118 231.3814594424813 28.6016905472828 231.3814594375523 26.0389028754189 215.7342909017903 26.28545500796049 215.7342908997079 26.04643131877959 215.6418685526708 26.277926563038 215.6418685507153 21.93381830250419 238.2805282138046 22.19224973388028 238.2805282151361 21.93975795238368 238.1908004642443 22.18631008492547 238.1908004655144 16.32684456705548 254.6505948671016 16.59381503866898 254.6505948714827 16.33111408861012 254.5630933656703 16.5895455199862 254.5630933699106 9.599878098739746 264.0164657059811 9.871884682845536 264.0164657129528 9.602396157187753 263.9305728969355 9.869366628801236 263.9305729037795 2.211945561040544 265.6858319326932 2.211260300423543 265.7709505053567 2.483952145146341 265.6858319416973 2.484637400128587 265.7709505144048 -5.335452118751629 259.7166641056392 -5.064532769488637 259.7166641162239 -5.336680990634356 259.6312136314157 -5.063303890929365 259.631213642096 -12.52579814933722 246.3207728012478 -12.26132748570551 246.3207728128176 -12.52902248833929 246.2335864758671 -12.25810313907611 246.233586487717 -18.86946658933012 226.8814249080509 -18.61559821566684 226.881424920029 -18.87476773003912 226.7908169897053 -18.61029706640719 226.790817002184 -23.69475456700287 203.4023895756444 -23.68729528055902 203.3064522320749 -23.93370437721223 203.4023895638964 -23.94116365422256 203.3064522195926 -27.15325012696925 178.1309819606684 -27.14355136885936 178.0276730631068 -27.3728024310913 178.1309819499018 -27.38250117906882 178.0276730513883 -28.75613640086094 152.9864563585919 -28.74411683678896 152.8736895304153 -28.95164958711407 152.9864563496832 -28.96366914091104 152.8736895204134 -28.38065798361108 129.0654363069769 -28.57617116986427 129.065436299826 -28.395079687556 129.1897211606431 -28.5617494750108 129.1897211545469 -28.50325904243255 27.88790485317323 -28.47841547334484 28.0773186210326 -28.453571828431 27.88790486311874 -26.06442242850567 135.4057921708175 -26.25993561470131 135.4057921680709 -26.0788441296512 135.5300770248096 -26.24551391704832 135.5300770224673 -26.1870234199023 35.05459616328249 -26.16217982745779 35.24400992807825 -26.13733620595861 35.05459616710097 -21.95325780426965 169.9488403952116 -22.17281010844546 169.9488403968792 -21.96527736234824 170.0616072240264 -22.16079054865518 170.0616072255102 -16.34085468596121 201.9521811988053 -16.57980449622436 201.9521812040017 -16.35055343675865 202.0554900970538 -16.57010574093451 202.0554901018272 -9.616406154817163 229.2246160671132 -9.608946876061522 229.1286787229455 -9.855355964969048 229.2246160745129 -9.862815249667234 229.1286787308085 -2.221014258677436 249.5089253697758 -2.215713117034584 249.4183174514818 -2.474882632340784 249.5089253791363 -2.480183780666419 249.4183174612342 5.335452556644807 261.5825516226918 5.064533207381682 261.5825516336533 5.332228217356757 261.6697379480635 5.067757553724915 261.6697379587632 12.53025181000614 265.5999107393269 12.25687471030105 265.5999107508729 12.52902293839392 265.6853612135536 12.25810358913102 265.6853612249961 18.87922137019806 262.6573505678795 18.87853610879389 262.5722319952212 18.60584427049319 262.6573505794555 18.60652952468827 262.572232006741 23.67822652818639 254.2801865757539 23.95023311229242 254.2801865646837 23.68074458093705 254.1942937665434 23.94771505255055 254.1942937556784 27.12954127364972 242.2160922365786 27.3965117452631 242.2160922266959 27.13381079052942 242.1285907349192 27.39224222190543 242.1285907253523 28.72467735190413 227.6759982090496 28.98310878328013 227.6759982010555 28.7306169985458 227.5862704592747 28.97716913108756 227.5862704516483 28.35513843657407 211.2834340647116 28.60169056911569 211.2834340592882 28.36266687868286 211.1910117154896 28.5941621229412 211.191011710398 26.05546724384415 193.0476880091309 26.04643134046368 193.1431929218705 26.26889067951839 193.0476880070936 26.27792658472209 193.1431929196609 21.9397579343223 219.6625707286289 22.18631006686409 219.6625707300265 21.94728637898794 219.5701483796154 22.17878162324633 219.570148380928 16.33111401958311 240.8306347783424 16.58954545095918 240.8306347828986 16.33705367058245 240.740907028856 16.5836058031241 240.7409070332034 9.602396036596847 255.9288048944632 9.869366508210328 255.928804901647 9.606665559070045 255.841303393076 9.865096990445965 255.8413034000304 2.214463455157398 264.2848259365853 2.211945396000471 264.3707187456087 2.481433926770894 264.2848259456332 2.483951980106269 264.3707187548274 -5.335995925718087 265.6628710679025 -5.336681186829237 265.7479896405607 -5.063989341612385 265.6628710784851 -5.063304087124243 265.7479896511969 -12.52902269701322 259.9696788631527 -12.25810334775004 259.9696788745939 -12.53025156862527 259.8842283889248 -12.2568744689201 259.8842284004697 -18.87476792835846 247.4722532736713 -18.61029726472653 247.4722532853191 -18.87799226733417 247.3850669482877 -18.60707291807115 247.3850669602183 -23.68729544354657 229.3712673564661 -23.68199429454941 229.2806594386047 -23.94116381721011 229.3712673452216 -23.94646495818124 229.2806594268917 -27.14355147326532 207.37372634563 -27.13609218745114 207.2777890020109 -27.38250128347478 207.3737263354494 -27.38996056111446 207.2777889911954 -28.74411686761861 183.3992988622478 -28.73441811063473 183.2959899645806 -28.96366917174068 183.3992988538747 -28.97336792084409 183.2959899554676 -28.36863838388193 158.9846085886989 -28.58819068800393 158.984608582236 -28.38065794613556 159.0973754170686 -28.57617113238875 159.0973754113139 -26.0524028306912 164.8086246009572 -26.27195513475573 164.8086245984736 -26.06442239090099 164.9213914295435 -26.25993557709662 164.9213914273331 -21.9435590807816 198.3355646844137 -22.18250889104473 198.3355646859319 -21.95325783316881 198.4388735825117 -22.17281013734461 198.4388735839082 -16.34085478565459 227.1878179649489 -16.3333955057396 227.0918806208726 -16.57980459591773 227.187817969463 -16.58726387945651 227.0918806256664 -9.608947031044279 248.8019429881708 -9.603645888587735 248.7113350699253 -9.862815404649995 248.8019429952539 -9.868116552162002 248.7113350773043 -2.215713304083705 261.7752124089203 -2.212488964269366 261.6880260835689 -2.480183967715544 261.7752124180235 -2.483408313532315 261.6880260928953 5.336681233700023 265.8529261381789 5.063304133995096 265.8529261488583 5.335452361817385 265.9383766124021 5.064533012554263 265.9383766229855 12.53025162948024 262.4066859536034 12.52956636810063 262.3215673809468 12.25687452977515 262.4066859651018 12.2575597839948 262.3215673923886 18.87853596022401 253.0325820724534 18.87601790025385 252.9466892634546 18.60652937611839 253.0325820842478 18.60904742864038 252.9466892750298 23.68074447638829 239.7238459560737 23.94771494800179 239.7238459446695 23.68501399276908 239.6363444543885 23.94344542414519 239.6363444433505 27.13381073556664 223.9612638918682 27.39224216694265 223.9612638815889 27.13975038141529 223.8715361420394 27.3863025139569 223.8715361322339 28.73061699077492 206.6133188364771 28.97716912331668 206.6133188280857 28.7381454317708 206.5208964871649 28.96964067602916 206.5208964792855 28.37170280641743 187.8780360589766 28.36266690449832 187.9735409718547 28.58512624209171 187.8780360536739 28.59416214875667 187.9735409661028 26.06592930014126 167.813139202875 26.05546727137511 167.9120974616336 26.25842867607849 167.8131392007305 26.26889070704934 167.9120974592564 21.9563222623802 197.61036890673 21.94728635747629 197.7058738193256 22.16974569805429 197.6103689080971 22.17878160173468 197.7058738208088 16.34458203884367 222.708145348456 16.33705359290896 222.8005676973658 16.57607728310207 222.7081453529468 16.5836057254506 222.8005677021492 9.606665430168725 242.5647290287791 9.865096861544641 242.5647290362514 9.612605082180021 242.4750012793605 9.859157214721623 242.4750012864881 2.218732810011526 256.4309184987698 2.214463286780425 256.5184200001197 2.477164241387803 256.4309185079634 2.481433758393917 256.5184200096167 -5.33347805760446 264.2012149422106 -5.335996117272002 264.2871077512191 -5.066507585990987 264.2012149528435 -5.063989533166302 264.2871077620538 -12.52956650268348 265.5212317824326 -12.53025176406309 265.606350355089 -12.25755991857757 265.521231793872 -12.25687466435792 265.6063503665864 -18.87799244575 260.4174508209554 -18.60707309648699 260.4174508324744 -18.87922131733729 260.3320003467271 -18.60584421763238 260.3320003583527 -23.6819944354804 249.0460953800228 -23.67877008906062 248.9589090549135 -23.94646509911222 249.0460953690898 -23.94968943832359 248.9589090437137 -27.13609227419049 232.3596136864724 -27.13079112572911 232.2690057685784 -27.38996064785381 232.3596136767297 -27.39526178936095 232.2690057584301 -28.73441813547639 211.736905435537 -28.7269588505706 211.6409680918474 -28.97336794568575 211.7369054276204 -28.98082722423394 211.6409680834364 -28.3589396009789 188.6784093957253 -28.59788941118833 188.6784093898359 -28.3686383565687 188.7817182935236 -28.58819066069069 188.7817182881121 -26.04270404890605 193.8081282876007 -26.28165385905773 193.8081282853377 -26.05240280292804 193.9114371855468 -26.27195510699257 193.9114371834668 -21.94355910348765 224.1925642890263 -21.93609982229004 224.0966269450477 -22.18250891375078 224.1925642903448 -22.18996819600703 224.0966269464476 -16.33339558784739 247.2692958019086 -16.32809444440468 247.1786878837209 -16.5872639615643 247.2692958062269 -16.59256510809015 247.1786878882208 -9.603646022107469 261.3283252835364 -9.600421681562098 261.2411389582132 -9.868116685681738 261.3283252904238 -9.871341030767576 261.2411389652676 -2.21248913231901 265.979392259788 -2.21126025993806 265.8939417855719 -2.483408481581956 265.9793922687928 -2.484637359643014 265.8939417946573 5.335995790216654 262.1799287342485 5.063989206110902 262.1799287448297 5.336681051327746 262.2650473069061 5.063303951622817 262.2650473175415 12.52956619176021 252.1197890017338 12.52704813181522 252.0338961927334 12.25755960765438 252.1197890134483 12.26007766020166 252.0338962042289 18.87601774845408 237.6473461690582 18.87174822435323 237.5598446677496 18.60904727684061 237.647346181208 18.61331679297717 237.5598446795104 23.68501388061513 220.580137282043 23.94344531199125 220.5801372701828 23.69095352591388 220.4904095321793 23.93750565845576 220.4904095208629 27.13975031913189 202.0422059213754 27.38630245167351 202.0422059105865 27.14727875922889 201.9497835719911 27.37877400348729 201.94978356186 28.74718132273231 182.4537163850762 28.73814542211268 182.5492212980771 28.96060475840647 182.4537163768692 28.96964066637104 182.5492212891753 28.38216486601514 162.0364459442189 28.37170283901544 162.1354042031649 28.57466424195239 162.0364459386389 28.58512627468971 162.1354041969778 26.07773615752975 140.4262633656007 26.06592933805402 140.5290829890829 26.24662189172533 140.4262633633096 26.25842871399124 140.5290829864708 21.96678426569103 172.9115884293775 21.95632223508315 173.0105466879418 22.15928364162829 172.9115884308155 22.16974567075724 173.0105466895366 16.35361785271694 201.2551395103497 16.3445819463318 201.3506444228054 16.56704128839127 201.2551395150264 16.57607719059021 201.3506444278788 9.612604937114714 224.9344324614361 9.859157069656318 224.9344324692785 9.620133384196443 224.8420101126192 9.851628628454758 224.8420101199833 2.224672282824382 243.27490755988 2.218732629977809 243.3646353092445 2.471224415366159 243.2749075693033 2.477164061354088 243.3646353191228 -5.329208729218806 256.291757423675 -5.333478252996042 256.3792589249979 -5.070777297842927 256.2917574344783 -5.066507781382569 256.3792589361588 -12.5270486335677 263.685437922187 -12.52956669351275 263.7713307311885 -12.26007816195437 263.6854379336846 -12.25756010940684 263.7713307429007 -18.87853622306205 265.2705666232356 -18.87922148446618 265.3556851958921 -18.60652963895639 265.2705666347546 -18.60584438476128 265.3556852074699 -23.67877021590536 261.0294651256675 -23.67754133727357 260.9440146515423 -23.94968956516834 261.0294651148539 -23.95091843697863 260.9440146406309 -27.13079120082747 250.9350443910593 -27.12756685488872 250.8478580659333 -27.39526186445931 250.935044381587 -27.39848620415189 250.8478580562289 -28.72695887144233 235.6428130442346 -28.72165772375369 235.552205126297 -28.98082724510567 235.6428130366575 -28.98612838738551 235.5522051184019 -28.35893957981991 216.1945833594727 -28.35148029603885 216.098646015694 -28.59788939002934 216.1945833543562 -28.60534866970212 216.0986460102598 -26.04270402712108 220.442976664705 -26.03524474460483 220.3470393208281 -26.28165383727277 220.4429766627394 -26.28911311821048 220.3470393187397 -21.93609984093953 245.0154311819234 -21.93079869640574 244.9248232638007 -22.18996821465653 245.0154311831844 -22.19526936009133 244.9248232651153 -16.32809451508631 260.3595311566723 -16.32487017365529 260.2723448313809 -16.59256517877178 260.3595311608727 -16.59578952297198 260.272344835682 -9.600421801395637 265.8056129509287 -9.599192928323015 265.7201624767214 -9.871341150601111 265.8056129577398 -9.87257002797055 265.7201624835965 -2.211945677842726 262.1569684310878 -2.483952261948573 262.1569684400911 -2.211260417225748 262.2420870037502 -2.484637516930705 262.2420870127982 5.333477552401885 251.5181198265447 5.066507080788506 251.5181198371808 5.335995612069482 251.6040126355554 5.063989027963729 251.6040126463889 12.5270479516497 236.1281028942469 12.52277842757585 236.0406013929367 12.26007748003613 236.1281029063133 12.26434699619991 236.0406014046195 18.87174806158633 217.7630365594538 18.86580840778146 217.6733088101532 18.61331663021027 217.7630365720906 18.6192562752399 217.673308822209 23.69095339909566 197.8816091549248 23.93750553163753 197.8816091424733 23.69848183856989 197.7891868054889 23.92997708282823 197.7891867937988 27.1472786843417 177.2398924028621 27.37877392860009 177.2398923914162 27.15631458391202 177.1443874897611 27.36973801958623 177.1443874792093 28.75764333524663 155.9751808569366 28.7471813098186 156.0741391160487 28.95014271118394 155.9751808482986 28.96060474549276 156.0741391064718 28.39397172792204 134.1518609833039 28.38216491068316 134.254680607042 28.5628574621176 134.1518609773378 28.57466428662042 134.2546806002426 26.09080649133183 111.3475543362132 26.07773621592023 111.4547247829064 26.23355167092913 111.3475543336995 26.24662195011581 111.4547247799322 21.97859104976653 145.9639854682811 21.96678422795982 146.066805091495 22.14747678396227 145.9639854698182 22.15928360389708 146.0668050932468 16.36407976717535 176.9843426410833 16.35361773477573 177.0833008994586 16.55657914311262 176.9843426460074 16.56704117045005 177.0833009049165 9.629169118940995 203.7336146831228 9.620133211216613 203.8291195954524 9.842592554615171 203.7336146907938 9.851628455474927 203.8291196037723 2.224672080155806 225.9187456649025 2.471224212697583 225.918745675271 2.232200528184336 225.8263233161634 2.463695772442687 225.8263233258991 -5.323269284706223 243.0861136167093 -5.329208938154121 243.1758413660351 -5.076717152164501 243.086113627785 -5.07077750677824 243.1758413776432 -12.52277930417641 255.4333038249341 -12.52704882825013 255.5208053262432 -12.26434787280039 255.4333038366157 -12.2600783566368 255.5208053383115 -18.87601832626831 262.7726442932774 -18.87853638623844 262.8585371022759 -18.60904785465469 262.772644304851 -18.60652980213278 262.8585371140695 -23.67754145610233 265.0130766446358 -23.67822671051851 264.9279580719223 -23.95091855580739 265.0130766337693 -23.95023329462439 264.9279580611104 -27.12756692254164 261.7640140222317 -27.12633804436535 261.6785635480997 -27.3984862718048 261.7640140128621 -27.39971514407031 261.6785635386453 -28.72165774198368 253.0103715633678 -28.7184333967391 252.923185238215 -28.9861284056155 253.0103715559982 -28.98935274600195 252.9231852306668 -28.35148027877555 238.9971207831628 -28.34617913204393 238.9065128651695 -28.60534865243882 238.997120778268 -28.61064979567576 238.9065128600699 -26.03524472671988 242.1939463117957 -26.02994358106426 242.1033383937396 -26.28911310032553 242.1939463099145 -26.29441424463848 242.1033383917796 -21.93079871247723 258.9348517452025 -21.92757437006625 258.8476654199456 -22.19526937616282 258.9348517464295 -22.19849371938292 258.847665421203 -16.32487023713576 265.428881425229 -16.32364136322509 265.3434309510361 -16.59578958645246 265.4288814293818 -16.59701846298373 265.3434309552268 -9.599878300423326 262.254251122214 -9.871884884471623 262.2542511290244 -9.599193040492455 262.3393696948812 -9.87257014013999 262.339369701728 -2.214463890639296 251.4345094069938 -2.481434362252705 251.4345094160396 -2.211945831482303 251.5204022160163 -2.483952415588147 251.5204022252343 5.329207846644933 235.1821484806008 5.070776415268874 235.1821484914048 5.33347737042191 235.2696499819231 5.066506898808535 235.2696499930869 12.52277823442532 215.7019424736052 12.51683858065021 215.6122147243025 12.26434680304938 215.7019424861585 12.27028644810853 215.6122147362792 18.86580822388851 194.41506631908 18.85827977477421 194.3226439704293 18.61925609134694 194.4150663323452 18.62678453051589 194.3226439828857 23.69848168657126 172.4073763226766 23.9299769308296 172.4073763094694 23.70751758541435 172.3118714095076 23.92094102108858 172.3118713973307 27.15631448759078 150.1413674942277 27.36973792326499 150.1413674819161 27.16677651175054 150.0424092349805 27.35927588768786 150.042409223877 28.76945013166035 127.5683686079804 28.75764331641058 127.6711882319483 28.938335865856 127.5683685987486 28.95014269234789 127.6711882214242 28.40704206863369 104.68370494899 28.39397179625222 104.7908753960526 28.54978724823101 104.6837049424398 28.56285753044778 104.790875388303 26.09080628030848 263.821739454963 26.23355145990579 263.8217394540161 26.09080625999384 260.7614039003306 26.23355143959106 260.7614038993823 21.99166126989527 117.2289983007105 21.97859099132898 117.3361687470189 22.13440644949256 117.2289983023983 22.14747672552471 117.3361687490157 16.37588642822823 150.3876405750297 16.36407960415312 150.4904601979828 16.54477216242368 150.3876405802915 16.55657898009039 150.4904602039821 9.63963093259837 179.7538503175848 9.629168898579913 179.8528085757876 9.832130308535637 179.7538503256577 9.842592334254086 179.8528085847386 2.241236195445524 204.8768904405673 2.232200286615899 204.9723953527917 2.454659631119722 204.8768904507076 2.463695530874251 204.9723953637908 -5.315741071155164 225.5940056845633 -5.323269519865198 225.6864280332465 -5.084245826896995 225.5940056960053 -5.076717387323478 225.6864280454329 -12.51683985854018 241.9214855104919 -12.52277951231523 242.0112132597948 -12.27028772599859 241.9214855224663 -12.2643480809392 242.0112132723465 -18.87174896859985 253.914059965099 -18.87601849270072 254.0015614664076 -18.61331753722392 253.91405997686 -18.6090480210871 254.0015614785558 -23.67822682653072 261.6109323086436 -23.68074487928127 261.5250394994323 -23.9502334106366 261.6109322975739 -23.94771535089458 261.5250394885671 -27.12633810776117 264.6018729160139 -27.12702336262916 264.5167543433047 -27.39971520746613 264.6018729065985 -27.39902994673479 264.5167543339359 -28.71843341324598 262.5710392271939 -28.71720453572629 262.4855887530533 -28.98935276250883 262.5710392199061 -28.9905816354312 262.4855887456984 -28.34617911730288 255.1306467451638 -28.34295477291786 255.0434604199816 -28.61064978093471 255.1306467404039 -28.61387412218091 255.0434604151033 -26.02994356568806 257.1513766285379 -26.02671922226935 257.0641903033188 -26.29441422926228 257.1513766267084 -26.29763857147493 257.0641903014458 -21.92757438449015 264.8748713120641 -21.92634550965207 264.7894208378848 -22.19849373380682 264.8748713132782 -22.19972260941074 264.7894208391116 -16.32432668175146 262.4651471197989 -16.59633326591077 262.4651471239527 -16.32364142265202 262.5502656924749 -16.59701852241066 262.5502656966484 -9.602396468427338 251.7887627889218 -9.869366939983228 251.7887627957648 -9.599878409979365 251.8746555979667 -9.871884994027662 251.8746556049394 -2.218733570793826 235.0429880094169 -2.477165002169933 235.0429880186109 -2.214464047562704 235.1304895107687 -2.481434519176113 235.1304895202637 5.323267998264118 214.4475873560348 5.076715865722425 214.4475873671089 5.329207651712158 214.5373151053589 5.070776220336102 214.5373151169673 12.51683836267852 191.8788165672046 12.50930991359797 191.7863942185524 12.27028623013684 191.8788165803817 12.27781466933969 191.7863942309224 18.6267843102704 168.3810010442964 18.85827955452872 168.3810010302234 18.63582020875693 168.2854961310928 18.84924364443108 168.2854961181193 23.70751739032657 144.7413979741584 23.9209408260008 144.7413979599485 23.71797941360639 144.6424397148195 23.91047878954356 144.6424397020015 27.1667763768662 121.2272601035783 27.35927575280352 121.2272600900495 27.17858319051048 121.1244404794276 27.34746892470611 121.1244404675569 28.78252037050307 97.69158063231969 28.76945010081194 97.7987510797096 28.92526555010035 97.69158062218639 28.93833583500759 97.7987510677214 28.40704182454705 263.8217391373599 28.54978700414438 263.8217391348928 28.40704177167288 260.7614035827279 28.54978695127013 260.7614035802603 21.99166148112316 263.8217397260981 22.13440666072045 263.8217397267339 21.99166149475247 260.7614041714643 22.13440667434969 260.7614041720983 16.38895645808893 121.9272260130809 16.37588617645407 122.0343964590149 16.53170163768616 121.9272260188555 16.54477191064952 122.0343964658467 9.651437453760257 153.3957638362848 9.639630627635398 153.4985834590041 9.820323187955761 153.3957638449157 9.832130003572672 153.4985834688407 2.251697923169818 181.0313740927411 2.241235887815499 181.1303323508033 2.444197299107085 181.0313741034119 2.454659323489696 181.1303323626347 -5.093282006152668 204.6070544876519 -5.306705441826984 204.607054475734 -5.08424610719395 204.7025594008101 -5.315741351452122 204.7025593878834 -12.50931164365111 224.1608893512636 -12.5168400927314 224.2533116999168 -12.27781639939262 224.160889363634 -12.27028796018981 224.253311713092 -18.86580949271201 239.8603907955424 -18.87174914651681 239.9501185448436 -18.61925736017036 239.8603908075987 -18.61331771514088 239.9501185574807 -23.68074499758012 251.9250613739697 -23.68501451396104 251.8375598722858 -23.94771546919343 251.9250613625651 -23.94344594533712 251.837559861246 -27.12702342450979 260.1135385636251 -27.12954147772692 260.0276457544273 -27.39903000861542 260.113538554033 -27.39651194934027 260.0276457450131 -28.71720455122403 264.1500968746332 -28.71788980674324 264.0649783019284 -28.99058165092894 264.1500968673086 -28.9898963908492 264.0649782946414 -28.342954759747 263.3955432731441 -28.34172588304061 263.3100927989906 -28.61387410901006 263.3955432684339 -28.6151029827457 263.3100927942389 -26.02671920847943 264.1813375157682 -26.02549033268791 264.0958870416043 -26.29763855768501 264.1813375139599 -26.29886743233521 264.0958870397769 -21.9263455231517 262.8604027813379 -21.92703078133102 262.7752842086558 -22.19972262291037 262.8604027825596 -22.19903736549045 262.7752842098682 -16.32684479738156 252.5567381557402 -16.59381526904865 252.5567381599143 -16.32432673979256 252.6426309648109 -16.59633332395187 252.6426309690636 -9.606666102836117 235.6326034742347 -9.865097534154632 235.6326034811871 -9.602396580362973 235.7201049756208 -9.869367051918863 235.7201049828035 -2.224673391848905 214.2587940614277 -2.471225524390562 214.2587940708516 -2.218733739002221 214.3485218107922 -2.477165170378331 214.3485218206709 5.315739329356684 190.3532786969135 5.084244085098197 190.3532787083557 5.323267778066454 190.4457010455984 5.076715645524761 190.4457010577834 12.27781440851021 165.4351573472267 12.50930965276849 165.4351573332523 12.28685030703683 165.3396524340274 12.50027374271103 165.3396524211435 18.63581992671892 140.2422295587256 18.84924336239308 140.2422295435879 18.64628194956826 140.1432712993407 18.83878132550558 140.1432712856876 23.71797914150365 115.362039338885 23.91047851744082 115.3620393232664 23.72978595403287 115.259219714606 23.89867168822838 115.2592197009034 27.17858297907604 90.95485369939377 27.34746871327167 90.95485368397851 27.19165324659331 90.84768325173798 27.33439842619059 90.84768323870942 28.7825204892554 263.8217388585383 28.92526566885269 263.8217388547216 28.78252040742486 260.7614033039053 28.92526558702218 260.7614033000896 16.38895741750506 260.7614043233156 16.38895737086059 263.8217398779512 16.53170259710235 260.7614043254924 16.53170255045782 263.8217398801262 9.664507266135477 125.1220609367237 9.651436981723219 125.2292313823186 9.80725244573282 125.1220609461986 9.820322715918721 125.2292313935287 2.263504325251273 154.7833566245615 2.251697497436303 154.8861762470858 2.432390059446993 154.7833566359675 2.44419687337357 154.8861762600863 -5.103744386821103 180.729852899085 -5.296243762758474 180.7298528865414 -5.093282363400983 180.8288111584095 -5.306705799075298 180.8288111445025 -12.28685257705308 202.9424957568397 -12.50027601272723 202.9424957439551 -12.2778166785267 203.0380006700387 -12.50931192278519 203.0380006560631 -18.62678599950332 221.6246389187288 -18.8582812437617 221.6246389062732 -18.6192575603344 221.7170612681894 -18.86580969287605 221.7170612549239 -23.68501464036282 237.1330174940935 -23.69095428566141 237.0432897442299 -23.94344607173889 237.1330174822314 -23.93750641820313 237.0432897329125 -27.12954154078521 249.4328151078245 -27.13381105766504 249.3453136061652 -27.39651201239855 249.4328150979428 -27.39224248904112 249.3453135965993 -28.71788982185572 258.468400786615 -28.72040787574607 258.3825079774373 -28.98989640596168 258.4684007791542 -28.98737834735954 258.3825079701144 -28.34172587073485 263.6885362779458 -28.34241112706101 263.6034177052475 -28.61510297043994 263.6885362732137 -28.61441771116682 263.6034177005392 -26.02549031977561 263.2486456619233 -26.02617557700901 263.1635270892303 -26.29886741942291 263.2486456601033 -26.29818216105715 263.1635270874214 -21.92703079451288 253.7719920626078 -21.9295488511515 253.6860992535093 -22.19903737867231 253.7719920638492 -22.19651932281853 253.6860992547295 -16.33111437822139 236.910813520394 -16.58954580965084 236.9108135246351 -16.32684485666671 236.9983150218255 -16.59381532833381 236.9983150262068 -9.612605874803119 215.0587007272064 -9.859158007287215 215.0587007343338 -9.606666222791834 215.1484284766269 -9.865097654110343 215.1484284840973 -2.232202029784477 190.1209617780556 -2.463697274042823 190.1209617877909 -2.224673581756081 190.2133841267945 -2.471225714297737 190.2133841371636 5.306703156113656 163.6750946065119 5.093279720439342 163.6750946184302 5.315739065739058 163.7705995186611 5.08424382148057 163.7705995315885 12.28684997278099 136.9504730879969 12.50027340845519 136.950473072963 12.29731199567866 136.8515148286173 12.48981137161577 136.8515148150572 18.6462815568864 110.4752310481137 18.83878093282372 110.4752310314803 18.65808836887259 110.3724114237723 18.82697410306825 110.3724114091794 23.72978552955767 84.7255836414371 23.89867126375318 84.72558362364333 23.74285579556558 84.61841319359665 23.8856009751629 84.61841317855757 27.19165402393901 263.821738693344 27.33439920353629 263.8217386884373 27.1916539187288 260.7614031387111 27.33439909832603 260.7614031338042 9.664509052288633 260.7614043150487 9.664508975807649 263.8217398696825 9.807254231885908 260.7614043186152 9.807254155404994 263.8217398732517 2.276573953108047 126.5957803554009 2.263503666409492 126.702950800717 2.419319132705224 126.5957803679199 2.432389400605211 126.7029508155287 -5.115551693947674 154.4558568664499 -5.284437428143369 154.4558568530404 -5.103744881240511 154.5586764907084 -5.296244257177881 154.5586764754244 -12.29731495557903 178.8698349772249 -12.48981433151614 178.8698349636642 -12.28685293268173 178.9687932366046 -12.50027636835588 178.9687932215699 -18.6358221364335 199.9966512774138 -18.84924557210765 199.9966512644407 -18.62678623794658 200.0921561906166 -18.85828148220496 200.0921561765449 -23.69848286727377 218.1580957069305 -23.92997811153217 218.1580956952383 -23.69095442779985 218.2505180563663 -23.93750656034157 218.2505180439137 -27.13381112495285 233.7518909003046 -27.13975077080133 233.6621631504766 -27.39224255632893 233.7518908900263 -27.38630290334303 233.6621631406715 -28.72040789108508 246.6946651430468 -28.72467740868466 246.607163641423 -28.98737836269856 246.6946651353603 -28.98310884006074 246.6071636339819 -28.34241111502668 256.7876323644007 -28.34492916975065 256.7017395552485 -28.61441769913249 256.7876323595802 -28.61189964136412 256.7017395505162 -26.02617556440715 255.1857748301636 -26.02869362006851 255.0998820210382 -26.29818214845529 255.1857748283115 -26.29566409162421 255.0998820192211 -21.929548864622 238.8780117461452 -21.9338183851601 238.790510244664 -22.19651933628904 238.8780117474258 -22.19224981658977 238.7905102459026 -16.33705409279411 216.7927949980423 -16.58360622538943 216.7927950023898 -16.33111444179484 216.8825227475293 -16.58954587322429 216.8825227520863 -9.620134457338013 191.1052754067031 -9.851629701538943 191.1052754140671 -9.612606010256346 191.1976977555198 -9.859158142740444 191.197697763362 -2.24123816583824 163.4052594470784 -2.454661601512433 163.4052594572174 -2.232202257008679 163.5007643593028 -2.463697501267023 163.5007643703012 5.093279382988144 135.0904562325172 5.306702818662458 135.0904562186099 5.103741406408261 134.9914979731921 5.296240782345679 134.991497960649 12.29731153033084 106.8998630760119 12.48981090626795 106.8998630594893 12.30911834237639 106.7970434516774 12.47800407657201 106.7970434371815 18.65808775653433 79.53545536666593 18.82697349072999 79.5354553477145 18.67115802180703 79.42828491873617 18.81390320140427 79.42828490271785 23.74285734917186 263.8217386861467 23.88560252876917 263.821738680483 23.74285722775186 260.7614031315123 23.88560240734916 260.7614031258501 2.276576442434937 260.7614041487345 2.276576341329605 263.821739703371 2.419321622032201 260.7614041534501 2.419321520926783 263.821739708086 -5.128622725036763 126.2479528317675 -5.271367904634111 126.2479528170489 -5.115552458787944 126.3551232795779 -5.28443819298364 126.3551232621637 -12.30912225958485 152.4355832193883 -12.4780079937802 152.4355832048929 -12.29731544753903 152.5384028437229 -12.48981482347614 152.5384028272006 -18.64628446291955 175.5780775930866 -18.83878383885688 175.5780775794329 -18.63582244007013 175.6770358524714 -18.84924587574428 175.6770358373336 -23.70751893527418 195.9702755606805 -23.92094237094844 195.9702755485039 -23.69848303643127 196.0657804738511 -23.92997828068967 196.0657804606419 -27.13975084632471 214.0899213077501 -27.14727928642221 213.9974989583649 -27.38630297886641 214.0899212969618 -27.37877453068044 213.9974989482356 -28.72467742494521 230.0371569636498 -28.73061707158668 229.9474292138742 -28.98310885632129 230.0371569556546 -28.97716920412839 229.9474292062465 -28.34492915740979 243.8972118390064 -28.34919867590089 243.809710337424 -28.61189962902326 243.8972118340392 -28.60763010727689 243.8097103326178 -26.02869360718757 241.231096955222 -26.03296312668072 241.1435954536887 -26.29566407874328 241.2310969533147 -26.29139455799934 241.1435954518422 -21.93381839958719 219.4326289620152 -21.9397580494668 219.3429012124541 -22.19224983101686 219.432628963346 -22.18631018206202 219.3429012137245 -16.34458261052253 193.2391401927434 -16.57607785483435 193.2391401972346 -16.3370541645876 193.3315625416527 -16.58360629718292 193.3315625464363 -9.620134619503565 164.6440405954625 -9.629170527228066 164.5485356831327 -9.851629863704501 164.6440406037822 -9.842593962844674 164.5485356908036 -2.241238456869278 134.7889359508583 -2.251700492223926 134.689977692795 -2.45466189254347 134.7889359626899 -2.444199868161255 134.6899777034682 5.103740936886831 104.8795907303395 5.296240312824249 104.8795907150568 5.115547749594308 104.7767711060816 5.284433483789996 104.7767710926731 12.3091176177938 75.73816745758977 12.47800335198942 75.73816743876496 12.32218788314716 75.63099700966971 12.46493306274446 75.6309969937588 18.8139053091963 260.7614032782861 18.67116012959914 260.7614032843218 18.81390543855154 263.8217388329204 18.67116025895429 263.8217388389538 -5.271365013778774 260.761403868825 -5.271365132618513 263.8217394234609 -5.1286198341817 260.7614038743679 -5.128619953021164 263.8217394290042 -12.32219328607537 124.1022823541184 -12.46493846567262 124.1022823382066 -12.30912302072241 124.2094528020376 -12.47800875491776 124.2094527832124 -18.65809169475419 148.8602141356753 -18.82697742895005 148.8602141210799 -18.64628488276913 148.9630337600166 -18.83878425870645 148.9630337433808 -23.7179811737254 171.0789086636118 -23.9104805496625 171.0789086507959 -23.7075191504452 171.1778669229506 -23.92094258611946 171.1778669087421 -27.15631527575184 191.1377595002743 -27.36973871142609 191.1377594897215 -27.14727937618149 191.2332644133741 -27.37877462043972 191.2332644019298 -28.73061708966848 209.5188088135915 -28.73814553066452 209.4263864642787 -28.97716922221019 209.5188088051989 -28.96964077492292 209.4263864563993 -28.34919866258864 226.2419686244278 -28.35513831021237 226.1522408747181 -28.60763009396464 226.2419686192636 -28.60169044275396 226.1522408697904 -26.03296311285451 222.6249616319451 -26.03890276158282 222.5352338823086 -26.29139454417313 222.6249616299611 -26.28545489406697 222.5352338804157 -21.93975806580961 196.4695591253638 -21.94728651047511 196.3771367763509 -22.18631019840483 196.4695591267616 -22.17878175478704 196.377136777663 -16.3445826964758 167.122515793259 -16.35361860286117 167.0270108808032 -16.57607794078761 167.122515798333 -16.56704203858894 167.0270108854818 -9.629170734772545 136.0664602844083 -9.639632768790738 135.9675020262054 -9.84259417038915 136.0664602933586 -9.8321321446704 135.9675020342771 -2.25170089715331 104.5520920904871 -2.263507724969659 104.4492724679641 -2.44420027309064 104.5520921034913 -2.432393459165144 104.4492724793722 5.115547018594885 73.59249866948618 5.284432752790575 73.59249865207377 5.128617284844642 73.48532822167499 5.271362464441808 73.48532820695817 12.46493557969431 260.7614035502372 12.3221904000971 260.7614035562292 12.46493570816933 263.8217391048693 12.32219052857203 263.8217391108616 -12.46493557970415 260.7614035502363 -12.46493570817919 263.8217391048726 -12.32219040010682 260.7614035562295 -12.32219052858193 263.8217391108661 -18.67116260887642 120.3049930026366 -18.81390778847364 120.3049929866187 -18.65809234360373 120.4121634505668 -18.8269780777996 120.4121634316142 -23.72978828343099 143.9734052205894 -23.89867401762649 143.9734052068912 -23.71798147090063 144.076224844869 -23.91048084683774 144.0762248292545 -27.16677741383888 165.6789391667787 -27.35927678977633 165.6789391556719 -27.15631538967975 165.7778974260248 -27.36973882535399 165.7778974137105 -28.74718145250217 185.8284310772432 -28.96060488817639 185.8284310690362 -28.73814555188257 185.9239359902436 -28.96964079614097 185.9239359813418 -28.35513829504601 204.8486942938869 -28.36266673715521 204.7562719446652 -28.6016904275876 204.8486942884649 -28.59416198141347 204.7562719395739 -26.03890274591903 200.3978382636097 -26.04643118927972 200.3054159144901 -26.28545487840318 200.3978382615268 -26.27792643348074 200.3054159125344 -21.94728653002305 170.7672859615232 -21.9563224349267 170.6717810489278 -22.17878177433497 170.7672859630055 -22.16974587065448 170.6717810502942 -16.35361871297884 138.8359679913832 -16.36408074537832 138.737009733008 -16.56704214870662 138.8359679968424 -16.55658012136921 138.7370097379317 -9.639633057682493 105.9396855597518 -9.651439883806399 105.8368659370335 -9.832132433562155 105.9396855695864 -9.820325617944601 105.8368659456622 -2.263508355213252 73.24467259929688 -2.276578641913129 73.13750215397974 -2.432394089408736 73.24467261411114 -2.419323821510298 73.13750216650105 5.271365013789906 260.7614038688242 5.128619834192609 260.7614038743661 5.27136513262938 263.8217394234567 5.128619953032212 263.8217394289986 -18.81390530919316 260.7614032782884 -18.81390543854849 263.8217388329249 -18.67116012959594 260.7614032843221 -18.67116025895126 263.8217388389563 -23.74285900817449 115.1148639163224 -23.88560418777176 115.1148639012865 -23.72978874216375 115.2220343641614 -23.89867447635924 115.2220343463732 -27.17858438431494 138.1081844878789 -27.34747011851054 138.108184476006 -27.16677757067187 138.2110041120305 -27.35927694660932 138.2110040984978 -28.75764350445449 159.746168098766 -28.95014288039176 159.7461680901287 -28.74718147902637 159.8451263578781 -28.96060491470058 159.8451263483017 -28.37170262072798 180.4041122046118 -28.58512605640231 180.4041121993109 -28.36266671880892 180.4996171174908 -28.59416196306718 180.4996171117393 -26.04643117047962 175.3299660805179 -26.05546707385996 175.2344611677783 -26.27792641468064 175.3299660783083 -26.26889050947663 175.2344611657401 -21.95632246000488 142.9087216943945 -21.96678449061287 142.8097634358296 -22.16974589573266 142.908721695989 -22.15928386660367 142.809763437268 -16.36408089869478 108.9478088540444 -16.37588772276982 108.8449892310914 -16.55658027468567 108.9478088600435 -16.54477345701892 108.8449892363538 -9.651440333984436 74.71839290208401 -9.664510618395166 74.61122245648772 -9.820326068122636 74.71839291329096 -9.807255797935152 74.61122246596085 -2.276576442437117 260.7614041487303 -2.419321622034255 260.7614041534469 -2.276576341331714 263.8217397033628 -2.419321520928883 263.8217397080787 -23.74285734917259 263.8217386861493 -23.74285722775248 260.7614031315147 -23.88560252876986 263.8217386804854 -23.88560240734969 260.7614031258513 -27.19165489305479 108.8855938945863 -27.33440007265207 108.8855938815564 -27.1785846255383 108.9927643422427 -27.3474703597339 108.9927643268257 -28.76945035556475 131.6642570347491 -28.93833608976032 131.6642570255174 -28.7576435403145 131.7670766587165 -28.95014291625177 131.7670766481936 -28.38216462392652 153.6849039470013 -28.57466399986367 153.6849039414217 -28.3717025969264 153.7838622059465 -28.58512603260073 153.7838621997611 -26.05546704971608 148.007170011042 -26.06592907848236 147.9082117522827 -26.26889048533275 148.007170008664 -26.25842845436224 147.9082117501386 -21.96678452565357 113.3714633390122 -21.97859134746089 113.268643715798 -22.15928390164438 113.3714633407656 -22.14747708171012 113.2686437173367 -16.3758879615156 77.91322787041378 -16.38895824315136 77.80605742447986 -16.5447736957647 77.91322787724717 -16.53170342280209 77.80605743025508 -9.664509052285229 260.7614043150468 -9.807254231825755 260.7614043186144 -9.664508975804262 263.8217398696786 -9.807254155344248 263.8217398732478 -27.19165402393971 263.821738693344 -27.19165391872928 260.7614031387088 -27.33439920353699 263.8217386884369 -27.33439909832659 260.7614031338022 -28.78252067931181 102.0416973914665 -28.92526585890913 102.0416973813331 -28.76945040962074 102.1488678388574 -28.9383361438163 102.1488678268685 -28.39397140751076 125.0807657988867 -28.56285714170638 125.0807657929214 -28.38216459027168 125.1835854226252 -28.57466396620884 125.1835854158263 -26.06592904464876 118.9091843361967 -26.0777358641235 118.8063647127151 -26.25842842052863 118.9091843335828 -26.24662159826158 118.8063647104217 -21.97859140203554 82.61145477884146 -21.99166168060261 82.50428433253289 -22.14747713628477 82.61145478083988 -22.13440686025346 82.50428433422175 -16.38895741746896 260.761404323316 -16.5317025971191 260.7614043254907 -16.38895737082384 263.8217398779494 -16.53170255047457 263.8217398801233 -28.78252048925485 263.8217388585379 -28.78252040742413 260.7614033039026 -28.92526566885217 263.8217388547209 -28.92526558702138 260.7614033000857 -28.40704162659247 95.04957455384522 -28.5497868061897 95.04957454729615 -28.39397135420991 95.15674500090746 -28.56285708840553 95.15674499315948 -26.07773581133735 88.49289730230885 -26.09080608674659 88.38572685561485 -26.24662154547543 88.49289729933055 -26.23355126628643 88.3857268530984 -21.99166148110788 263.8217397260962 -21.99166149473718 260.7614041714636 -22.13440666075873 263.821739726732 -22.1344066743873 260.7614041720984 -28.40704182454649 263.8217391373594 -28.40704177167208 260.7614035827248 -28.54978700414372 263.8217391348924 -28.54978695126926 260.7614035802571 -26.09080628037045 263.8217394549599 -26.09080626005503 260.7614039003265 -26.23355145991029 263.8217394540142 -26.2335514395954 260.7614038993796</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1992\" source=\"#ID10248\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10244\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10242\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10243\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"984\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10244\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 8 1 8 3 9 2 12 13 12 2 1 16 2 17 2 16 0 20 3 0 3 20 21 24 8 9 8 24 25 1 28 12 28 1 8 21 9 3 9 21 30 13 32 33 32 13 12 17 13 36 13 17 2 38 17 39 17 38 16 42 0 16 0 42 20 44 21 20 46 25 24 25 46 47 25 28 8 28 25 50 52 9 30 9 52 24 12 54 32 54 12 28 30 21 44 33 56 57 56 33 32 36 33 60 33 36 13 39 36 62 36 39 17 64 39 65 39 64 38 68 16 38 16 68 42 44 20 42 70 47 46 47 70 71 47 50 25 50 47 74 76 24 52 24 76 46 50 54 28 54 50 78 52 30 44 32 80 56 80 32 54 57 82 83 82 57 56 60 57 86 57 60 33 62 60 88 60 62 36 65 62 90 62 65 39 92 65 93 65 92 64 96 38 64 38 96 68 44 42 68 98 71 70 71 98 99 71 74 47 74 71 102 104 46 76 46 104 70 74 78 50 78 74 106 76 52 44 78 80 54 80 78 108 56 110 82 110 56 80 83 112 113 112 83 82 86 83 116 83 86 57 88 86 118 86 88 60 90 88 120 88 90 62 93 90 122 90 93 65 124 92 93 92 124 125 128 64 92 64 128 96 44 68 96 130 99 98 99 130 131 99 102 71 102 99 134 136 70 104 70 136 98 102 106 74 106 102 138 104 76 44 106 108 78 108 106 140 108 110 80 110 108 142 82 144 112 144 82 110 113 146 147 146 113 112 116 113 150 113 116 83 118 116 152 116 118 86 120 118 154 118 120 88 122 120 156 120 122 90 158 93 122 93 158 124 160 125 124 125 160 161 125 128 92 128 125 164 44 96 128 166 131 130 131 166 167 131 134 99 134 131 170 172 98 136 98 172 130 134 138 102 138 134 174 136 104 44 138 140 106 140 138 176 140 142 108 142 140 178 110 180 144 180 110 142 112 182 146 182 112 144 147 184 185 184 147 146 150 147 188 147 150 113 116 190 152 190 116 150 154 152 192 152 154 118 156 154 194 154 156 120 196 122 156 122 196 158 198 124 158 124 198 160 200 161 160 161 200 201 161 164 125 164 161 204 44 128 164 206 166 207 166 206 167 167 170 131 170 167 210 212 130 172 130 212 166 170 174 134 174 170 214 172 136 44 174 176 138 176 174 216 176 178 140 178 176 218 142 220 180 220 142 178 144 222 182 222 144 180 146 224 184 224 146 182 185 226 227 226 185 184 188 185 230 185 188 147 150 232 190 232 150 188 152 234 192 234 152 190 154 236 194 236 154 192 238 156 194 156 238 196 240 158 196 158 240 198 242 160 198 160 242 200 244 201 200 201 244 245 201 204 161 204 201 248 44 164 204 250 207 251 207 250 206 254 167 206 167 254 210 207 212 256 212 207 166 210 214 170 214 210 258 212 172 44 214 216 174 216 214 260 216 218 176 218 216 262 178 264 220 264 178 218 180 266 222 266 180 220 182 268 224 268 182 222 184 270 226 270 184 224 227 272 273 272 227 226 230 227 276 227 230 185 188 278 232 278 188 230 190 280 234 280 190 232 192 282 236 282 192 234 238 236 284 236 238 194 286 196 238 196 286 240 288 198 240 198 288 242 290 200 242 200 290 244 292 245 244 245 292 293 245 248 201 248 245 296 44 204 248 298 251 299 251 298 250 302 206 250 206 302 254 251 256 304 256 251 207 306 210 254 210 306 258 212 44 256 258 260 214 260 258 308 260 262 216 262 260 310 312 218 262 218 312 264 220 314 266 314 220 264 222 316 268 316 222 266 224 318 270 318 224 268 226 320 272 320 226 270 273 322 323 322 273 272 276 273 326 273 276 227 230 328 278 328 230 276 232 330 280 330 232 278 234 332 282 332 234 280 284 282 334 282 284 236 336 238 284 238 336 286 338 240 286 240 338 288 340 242 288 242 340 290 342 244 290 244 342 292 344 293 292 293 344 345 293 296 245 296 293 348 44 248 296 350 299 351 299 350 298 354 250 298 250 354 302 299 304 356 304 299 251 358 254 302 254 358 306 256 44 304 360 258 306 258 360 308 308 310 260 310 308 362 364 262 310 262 364 312 366 264 312 264 366 314 266 368 316 368 266 314 268 370 318 370 268 316 270 372 320 372 270 318 272 374 322 374 272 320 323 376 377 376 323 322 326 323 380 323 326 273 328 326 382 326 328 276 278 384 330 384 278 328 280 386 332 386 280 330 334 332 388 332 334 282 336 334 390 334 336 284 392 286 336 286 392 338 394 288 338 288 394 340 396 290 340 290 396 342 398 292 342 292 398 344 344 400 345 400 344 401 345 348 293 348 345 404 44 296 348 401 351 400 351 401 350 406 298 350 298 406 354 351 356 408 356 351 299 410 302 354 302 410 358 304 44 356 412 306 358 306 412 360 414 308 360 308 414 362 416 310 362 310 416 364 418 312 364 312 418 366 420 314 366 314 420 368 316 422 370 422 316 368 318 424 372 424 318 370 320 426 374 426 320 372 322 428 376 428 322 374 377 430 431 430 377 376 380 377 434 377 380 323 382 380 436 380 382 326 384 382 438 382 384 328 330 440 386 440 330 384 388 386 442 386 388 332 390 388 444 388 390 334 392 390 446 390 392 336 448 338 392 338 448 394 450 340 394 340 450 396 452 342 396 342 452 398 398 401 344 401 398 454 400 404 345 404 400 456 44 348 404 454 350 401 350 454 406 400 408 456 408 400 351 458 354 406 354 458 410 356 44 408 460 358 410 358 460 412 462 360 412 360 462 414 416 414 464 414 416 362 466 364 416 364 466 418 468 366 418 366 468 420 470 368 420 368 470 422 370 472 424 472 370 422 372 474 426 474 372 424 374 476 428 476 374 426 376 478 430 478 376 428 431 480 481 480 431 430 434 431 484 431 434 377 436 434 486 434 436 380 438 436 488 436 438 382 384 490 440 490 384 438 442 440 492 440 442 386 444 442 494 442 444 388 446 444 496 444 446 390 498 392 446 392 498 448 500 394 448 394 500 450 502 396 450 396 502 452 452 454 398 454 452 504 456 44 404 504 406 454 406 504 458 408 44 456 506 410 458 410 506 460 508 412 460 412 508 462 464 462 510 462 464 414 466 464 512 464 466 416 514 418 466 418 514 468 516 420 468 420 516 470 472 470 518 470 472 422 424 520 474 520 424 472 426 522 476 522 426 474 428 524 478 524 428 476 430 526 480 526 430 478 480 528 481 528 480 529 484 481 532 481 484 431 486 484 534 484 486 434 488 486 536 486 488 436 438 538 490 538 438 488 440 540 492 540 440 490 494 492 542 492 494 442 496 494 544 494 496 444 546 446 496 446 546 498 548 448 498 448 548 500 550 450 500 450 550 502 502 504 452 504 502 552 552 458 504 458 552 506 554 460 506 460 554 508 510 508 556 508 510 462 512 510 558 510 512 464 514 512 560 512 514 466 562 468 514 468 562 516 518 516 564 516 518 470 520 518 566 518 520 472 474 568 522 568 474 520 476 570 524 570 476 522 478 572 526 572 478 524 526 529 480 529 526 574 529 576 528 576 529 577 481 580 532 580 481 528 484 582 534 582 484 532 536 534 584 534 536 486 488 586 538 586 488 536 490 588 540 588 490 538 492 590 542 590 492 540 544 542 592 542 544 494 594 496 544 496 594 546 596 498 546 498 596 548 598 500 548 500 598 550 550 552 502 552 550 600 600 506 552 506 600 554 556 554 602 554 556 508 558 556 604 556 558 510 560 558 606 558 560 512 562 560 608 560 562 514 610 516 562 516 610 564 566 564 612 564 566 518 568 566 614 566 568 520 522 616 570 616 522 568 524 618 572 618 524 570 572 574 526 574 572 620 574 577 529 577 574 622 577 624 576 624 577 625 528 628 580 628 528 576 532 630 582 630 532 580 584 582 632 582 584 534 536 634 586 634 536 584 538 636 588 636 538 586 540 638 590 638 540 588 542 640 592 640 542 590 642 544 592 544 642 594 644 546 594 546 644 596 646 548 596 548 646 598 648 550 598 550 648 600 602 600 648 600 602 554 604 602 650 602 604 556 606 604 652 604 606 558 608 606 654 606 608 560 656 562 608 562 656 610 658 564 610 564 658 612 614 612 660 612 614 566 616 614 662 614 616 568 570 664 618 664 570 616 572 666 620 666 572 618 620 622 574 622 620 668 622 625 577 625 622 670 625 672 624 672 625 673 576 676 628 676 576 624 580 678 630 678 580 628 582 680 632 680 582 630 634 632 682 632 634 584 586 684 636 684 586 634 588 686 638 686 588 636 590 688 640 688 590 638 690 592 640 592 690 642 692 594 642 594 692 644 694 596 644 596 694 646 696 598 646 598 696 648 650 648 696 648 650 602 652 650 698 650 652 604 654 652 700 652 654 606 702 608 654 608 702 656 704 610 656 610 704 658 706 612 658 612 706 660 662 660 708 660 662 614 664 662 710 662 664 616 618 712 666 712 618 664 620 714 668 714 620 666 668 670 622 670 668 716 670 673 625 673 670 718 720 721 722 721 720 723 624 728 676 728 624 672 628 730 678 730 628 676 630 732 680 732 630 678 632 734 682 734 632 680 634 736 684 736 634 682 636 738 686 738 636 684 638 740 688 740 638 686 742 640 688 640 742 690 744 642 690 642 744 692 746 644 692 644 746 694 748 646 694 646 748 696 698 696 748 696 698 650 700 698 750 698 700 652 752 654 700 654 752 702 754 656 702 656 754 704 756 658 704 658 756 706 758 660 706 660 758 708 710 708 760 708 710 662 664 762 712 762 664 710 666 764 714 764 666 712 668 766 716 766 668 714 716 718 670 718 716 768 723 770 721 770 723 771 774 722 775 722 774 720 676 778 730 778 676 728 678 780 732 780 678 730 680 782 734 782 680 732 734 736 682 736 734 784 684 786 738 786 684 736 686 788 740 788 686 738 790 688 740 688 790 742 792 690 742 690 792 744 794 692 744 692 794 746 796 694 746 694 796 748 750 748 796 748 750 698 752 750 798 750 752 700 800 702 752 702 800 754 802 704 754 704 802 756 804 706 756 706 804 758 806 708 758 708 806 760 710 808 762 808 710 760 712 810 764 810 712 762 714 812 766 812 714 764 716 814 768 814 716 766 771 816 770 816 771 817 774 820 821 820 774 775 730 824 780 824 730 778 732 826 782 826 732 780 782 784 734 784 782 828 784 786 736 786 784 830 786 788 738 788 786 832 834 740 788 740 834 790 836 742 790 742 836 792 838 744 792 744 838 794 840 746 794 746 840 796 798 796 840 796 798 750 800 798 842 798 800 752 844 754 800 754 844 802 846 756 802 756 846 804 848 758 804 758 848 806 850 760 806 760 850 808 762 852 810 852 762 808 764 854 812 854 764 810 766 856 814 856 766 812 817 858 816 858 817 859 821 862 863 862 821 820 780 866 826 866 780 824 826 828 782 828 826 868 828 830 784 830 828 870 830 832 786 832 830 872 832 834 788 834 832 874 876 790 834 790 876 836 878 792 836 792 878 838 880 794 838 794 880 840 842 840 880 840 842 798 844 842 882 842 844 800 884 802 844 802 884 846 886 804 846 804 886 848 888 806 848 806 888 850 808 890 852 890 808 850 810 892 854 892 810 852 812 894 856 894 812 854 859 896 858 896 859 897 863 900 901 900 863 862 866 868 826 868 866 904 868 870 828 870 868 906 870 872 830 872 870 908 872 874 832 874 872 910 912 834 874 834 912 876 914 836 876 836 914 878 916 838 878 838 916 880 882 880 916 880 882 842 884 882 918 882 884 844 920 846 884 846 920 886 888 886 922 886 888 848 890 888 924 888 890 850 852 926 892 926 852 890 854 928 894 928 854 892 930 897 931 897 930 896 901 934 935 934 901 900 904 906 868 906 904 938 906 908 870 908 906 940 908 910 872 910 908 942 910 912 874 912 910 944 946 876 912 876 946 914 948 878 914 878 948 916 918 916 948 916 918 882 920 918 950 918 920 884 922 920 952 920 922 886 924 922 954 922 924 888 926 924 956 924 926 890 892 958 928 958 892 926 960 931 961 931 960 930 935 964 965 964 935 934 938 940 906 940 938 968 940 942 908 942 940 970 942 944 910 944 942 972 944 946 912 946 944 974 976 914 946 914 976 948 950 948 976 948 950 918 952 950 978 950 952 920 954 952 980 952 954 922 956 954 982 954 956 924 958 956 984 956 958 926 986 961 987 961 986 960 965 990 991 990 965 964 968 970 940 970 968 994 970 972 942 972 970 996 972 974 944 974 972 998 974 976 946 976 974 1000 978 976 1000 976 978 950 980 978 1002 978 980 952 982 980 1004 980 982 954 984 982 1006 982 984 956 1008 987 1009 987 1008 986 1012 991 990 991 1012 1013 994 996 970 996 994 1016 996 998 972 998 996 1018 998 1000 974 1000 998 1020 1002 1000 1020 1000 1002 978 1004 1002 1022 1002 1004 980 1006 1004 1024 1004 1006 982 1026 1009 1027 1009 1026 1008 1030 1013 1012 1013 1030 1031 1016 1018 996 1018 1016 1034 1018 1020 998 1020 1018 1036 1022 1020 1036 1020 1022 1002 1024 1022 1038 1022 1024 1004 1040 1027 1041 1027 1040 1026 1044 1031 1030 1031 1044 1045 1034 1036 1018 1036 1034 1048 1038 1036 1048 1036 1038 1022 1040 1050 1051 1050 1040 1041 1054 1045 1044 1045 1054 1055 1051 1055 1054 1055 1051 1050</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"984\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10244\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10245\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 4 5 11 6 6 7 11 6 4 5 6 8 7 9 14 10 15 11 14 10 7 9 5 12 18 13 7 14 19 15 7 14 18 13 22 16 23 17 4 18 5 19 4 18 23 17 26 20 27 21 11 22 10 23 11 22 27 21 11 24 6 25 29 26 14 27 29 26 6 25 31 28 22 29 10 30 4 31 10 30 22 29 14 32 15 33 34 34 35 35 34 34 15 33 7 36 19 37 15 38 37 39 15 38 19 37 18 40 40 41 19 42 41 43 19 42 40 41 23 44 43 45 5 46 18 47 5 46 43 45 23 48 22 49 45 50 48 51 49 52 26 53 27 54 26 53 49 52 51 55 26 56 29 57 11 58 29 57 26 56 27 59 53 60 10 61 31 62 10 61 53 60 29 63 14 64 55 65 34 66 55 65 14 64 45 67 22 68 31 69 34 70 35 71 58 72 59 73 58 72 35 71 15 74 37 75 35 76 61 77 35 76 37 75 19 78 41 79 37 80 63 81 37 80 41 79 40 82 66 83 41 84 67 85 41 84 66 83 43 86 69 87 18 88 40 89 18 88 69 87 43 90 23 91 45 92 72 93 73 94 48 95 49 96 48 95 73 94 75 97 48 98 51 99 26 100 51 99 48 98 49 101 77 102 27 103 53 104 27 103 77 102 79 105 51 106 55 107 29 108 55 107 51 106 45 109 31 110 53 111 55 112 34 113 81 114 58 115 81 114 34 113 58 116 59 117 84 118 85 119 84 118 59 117 35 120 61 121 59 122 87 123 59 122 61 121 37 124 63 125 61 126 89 127 61 126 63 125 41 128 67 129 63 130 91 131 63 130 67 129 66 132 94 133 67 134 95 135 67 134 94 133 69 136 97 137 40 138 66 139 40 138 97 137 69 140 43 141 45 142 100 143 101 144 72 145 73 146 72 145 101 144 103 147 72 148 75 149 48 150 75 149 72 148 73 151 105 152 49 153 77 154 49 153 105 152 107 155 75 156 79 157 51 158 79 157 75 156 45 159 53 160 77 161 109 162 79 163 81 164 55 165 81 164 79 163 81 166 58 167 111 168 84 169 111 168 58 167 84 170 85 171 114 172 115 173 114 172 85 171 59 174 87 175 85 176 117 177 85 176 87 175 61 178 89 179 87 180 119 181 87 180 89 179 63 182 91 183 89 184 121 185 89 184 91 183 67 186 95 187 91 188 123 189 91 188 95 187 126 190 127 191 94 192 95 193 94 192 127 191 97 194 129 195 66 196 94 197 66 196 129 195 97 198 69 199 45 200 132 201 133 202 100 203 101 204 100 203 133 202 135 205 100 206 103 207 72 208 103 207 100 206 101 209 137 210 73 211 105 212 73 211 137 210 139 213 103 214 107 215 75 216 107 215 103 214 45 217 77 218 105 219 141 220 107 221 109 222 79 223 109 222 107 221 143 224 109 225 111 226 81 227 111 226 109 225 111 228 84 229 145 230 114 231 145 230 84 229 114 232 115 233 148 234 149 235 148 234 115 233 85 236 117 237 115 238 151 239 115 238 117 237 87 240 119 241 117 242 153 243 117 242 119 241 89 244 121 245 119 246 155 247 119 246 121 245 91 248 123 249 121 250 157 251 121 250 123 249 127 252 159 253 95 254 123 255 95 254 159 253 162 256 163 257 126 258 127 259 126 258 163 257 165 260 126 261 129 262 94 263 129 262 126 261 129 264 97 265 45 266 168 267 169 268 132 269 133 270 132 269 169 268 171 271 132 272 135 273 100 274 135 273 132 272 133 275 173 276 101 277 137 278 101 277 173 276 175 279 135 280 139 281 103 282 139 281 135 280 45 283 105 284 137 285 177 286 139 287 141 288 107 289 141 288 139 287 179 290 141 291 143 292 109 293 143 292 141 291 143 294 111 295 181 296 145 297 181 296 111 295 145 298 114 299 183 300 148 301 183 300 114 299 148 302 149 303 186 304 187 305 186 304 149 303 115 306 151 307 149 308 189 309 149 308 151 307 151 310 117 311 191 312 153 313 191 312 117 311 119 314 155 315 153 316 193 317 153 316 155 315 121 318 157 319 155 320 195 321 155 320 157 319 159 322 197 323 123 324 157 325 123 324 197 323 163 326 199 327 127 328 159 329 127 328 199 327 202 330 203 331 162 332 163 333 162 332 203 331 205 334 162 335 165 336 126 337 165 336 162 335 165 338 129 339 45 340 168 341 208 342 169 343 209 344 169 343 208 342 211 345 168 346 171 347 132 348 171 347 168 346 169 349 213 350 133 351 173 352 133 351 213 350 215 353 171 354 175 355 135 356 175 355 171 354 45 357 137 358 173 359 217 360 175 361 177 362 139 363 177 362 175 361 219 364 177 365 179 366 141 367 179 366 177 365 179 368 143 369 221 370 181 371 221 370 143 369 181 372 145 373 223 374 183 375 223 374 145 373 183 376 148 377 225 378 186 379 225 378 148 377 186 380 187 381 228 382 229 383 228 382 187 381 149 384 189 385 187 386 231 387 187 386 189 385 189 388 151 389 233 390 191 391 233 390 151 389 191 392 153 393 235 394 193 395 235 394 153 393 193 396 155 397 237 398 195 399 237 398 155 397 197 400 239 401 157 402 195 403 157 402 239 401 199 404 241 405 159 406 197 407 159 406 241 405 203 408 243 409 163 410 199 411 163 410 243 409 246 412 247 413 202 414 203 415 202 414 247 413 249 416 202 417 205 418 162 419 205 418 202 417 205 420 165 421 45 422 208 423 252 424 209 425 253 426 209 425 252 424 211 427 255 428 168 429 208 430 168 429 255 428 169 431 209 432 213 433 257 434 213 433 209 432 259 435 211 436 215 437 171 438 215 437 211 436 45 439 173 440 213 441 261 442 215 443 217 444 175 445 217 444 215 443 263 446 217 447 219 448 177 449 219 448 217 447 219 450 179 451 265 452 221 453 265 452 179 451 221 454 181 455 267 456 223 457 267 456 181 455 223 458 183 459 269 460 225 461 269 460 183 459 225 462 186 463 271 464 228 465 271 464 186 463 228 466 229 467 274 468 275 469 274 468 229 467 187 470 231 471 229 472 277 473 229 472 231 471 231 474 189 475 279 476 233 477 279 476 189 475 233 478 191 479 281 480 235 481 281 480 191 479 235 482 193 483 283 484 237 485 283 484 193 483 195 486 239 487 237 488 285 489 237 488 239 487 241 490 287 491 197 492 239 493 197 492 287 491 243 494 289 495 199 496 241 497 199 496 289 495 247 498 291 499 203 500 243 501 203 500 291 499 294 502 295 503 246 504 247 505 246 504 295 503 297 506 246 507 249 508 202 509 249 508 246 507 249 510 205 511 45 512 252 513 300 514 253 515 301 516 253 515 300 514 255 517 303 518 208 519 252 520 208 519 303 518 209 521 253 522 257 523 305 524 257 523 253 522 259 525 307 526 211 527 255 528 211 527 307 526 257 529 45 530 213 531 309 532 259 533 261 534 215 535 261 534 259 533 311 536 261 537 263 538 217 539 263 538 261 537 265 540 313 541 219 542 263 543 219 542 313 541 265 544 221 545 315 546 267 547 315 546 221 545 267 548 223 549 317 550 269 551 317 550 223 549 269 552 225 553 319 554 271 555 319 554 225 553 271 556 228 557 321 558 274 559 321 558 228 557 274 560 275 561 324 562 325 563 324 562 275 561 229 564 277 565 275 566 327 567 275 566 277 565 277 568 231 569 329 570 279 571 329 570 231 569 279 572 233 573 331 574 281 575 331 574 233 573 281 576 235 577 333 578 283 579 333 578 235 577 237 580 285 581 283 582 335 583 283 582 285 581 287 584 337 585 239 586 285 587 239 586 337 585 289 588 339 589 241 590 287 591 241 590 339 589 291 592 341 593 243 594 289 595 243 594 341 593 295 596 343 597 247 598 291 599 247 598 343 597 346 600 347 601 294 602 295 603 294 602 347 601 349 604 294 605 297 606 246 607 297 606 294 605 297 608 249 609 45 610 300 611 352 612 301 613 353 614 301 613 352 612 303 615 355 616 252 617 300 618 252 617 355 616 253 619 301 620 305 621 357 622 305 621 301 620 307 623 359 624 255 625 303 626 255 625 359 624 305 627 45 628 257 629 309 630 361 631 259 632 307 633 259 632 361 631 363 634 309 635 311 636 261 637 311 636 309 635 313 638 365 639 263 640 311 641 263 640 365 639 315 642 367 643 265 644 313 645 265 644 367 643 315 646 267 647 369 648 317 649 369 648 267 647 317 650 269 651 371 652 319 653 371 652 269 651 319 654 271 655 373 656 321 657 373 656 271 655 321 658 274 659 375 660 324 661 375 660 274 659 324 662 325 663 378 664 379 665 378 664 325 663 275 666 327 667 325 668 381 669 325 668 327 667 277 670 329 671 327 672 383 673 327 672 329 671 329 674 279 675 385 676 331 677 385 676 279 675 331 678 281 679 387 680 333 681 387 680 281 679 283 682 335 683 333 684 389 685 333 684 335 683 285 686 337 687 335 688 391 689 335 688 337 687 339 690 393 691 287 692 337 693 287 692 393 691 341 694 395 695 289 696 339 697 289 696 395 695 343 698 397 699 291 700 341 701 291 700 397 699 347 702 399 703 295 704 343 705 295 704 399 703 402 706 347 707 403 708 346 709 403 708 347 707 405 710 346 711 349 712 294 713 349 712 346 711 349 714 297 715 45 716 352 717 402 718 353 719 403 720 353 719 402 718 355 721 407 722 300 723 352 724 300 723 407 722 301 725 353 726 357 727 409 728 357 727 353 726 359 729 411 730 303 731 355 732 303 731 411 730 357 733 45 734 305 735 361 736 413 737 307 738 359 739 307 738 413 737 363 740 415 741 309 742 361 743 309 742 415 741 365 744 417 745 311 746 363 747 311 746 417 745 367 748 419 749 313 750 365 751 313 750 419 749 369 752 421 753 315 754 367 755 315 754 421 753 369 756 317 757 423 758 371 759 423 758 317 757 371 760 319 761 425 762 373 763 425 762 319 761 373 764 321 765 427 766 375 767 427 766 321 765 375 768 324 769 429 770 378 771 429 770 324 769 378 772 379 773 432 774 433 775 432 774 379 773 325 776 381 777 379 778 435 779 379 778 381 777 327 780 383 781 381 782 437 783 381 782 383 781 329 784 385 785 383 786 439 787 383 786 385 785 385 788 331 789 441 790 387 791 441 790 331 789 333 792 389 793 387 794 443 795 387 794 389 793 335 796 391 797 389 798 445 799 389 798 391 797 337 800 393 801 391 802 447 803 391 802 393 801 395 804 449 805 339 806 393 807 339 806 449 805 397 808 451 809 341 810 395 811 341 810 451 809 399 812 453 813 343 814 397 815 343 814 453 813 455 816 399 817 402 818 347 819 402 818 399 817 457 820 403 821 405 822 346 823 405 822 403 821 405 824 349 825 45 826 407 827 455 828 352 829 402 830 352 829 455 828 353 831 403 832 409 833 457 834 409 833 403 832 411 835 459 836 355 837 407 838 355 837 459 836 409 839 45 840 357 841 413 842 461 843 359 844 411 845 359 844 461 843 415 846 463 847 361 848 413 849 361 848 463 847 363 850 417 851 415 852 465 853 415 852 417 851 419 854 467 855 365 856 417 857 365 856 467 855 421 858 469 859 367 860 419 861 367 860 469 859 423 862 471 863 369 864 421 865 369 864 471 863 423 866 371 867 473 868 425 869 473 868 371 867 425 870 373 871 475 872 427 873 475 872 373 871 427 874 375 875 477 876 429 877 477 876 375 875 429 878 378 879 479 880 432 881 479 880 378 879 432 882 433 883 482 884 483 885 482 884 433 883 379 886 435 887 433 888 485 889 433 888 435 887 381 890 437 891 435 892 487 893 435 892 437 891 383 894 439 895 437 896 489 897 437 896 439 895 439 898 385 899 491 900 441 901 491 900 385 899 387 902 443 903 441 904 493 905 441 904 443 903 389 906 445 907 443 908 495 909 443 908 445 907 391 910 447 911 445 912 497 913 445 912 447 911 449 914 499 915 393 916 447 917 393 916 499 915 451 918 501 919 395 920 449 921 395 920 501 919 453 922 503 923 397 924 451 925 397 924 503 923 505 926 453 927 455 928 399 929 455 928 453 927 405 930 45 931 457 932 459 933 505 934 407 935 455 936 407 935 505 934 457 937 45 938 409 939 461 940 507 941 411 942 459 943 411 942 507 941 463 944 509 945 413 946 461 947 413 946 509 945 415 948 465 949 463 950 511 951 463 950 465 949 417 952 467 953 465 954 513 955 465 954 467 953 469 956 515 957 419 958 467 959 419 958 515 957 471 960 517 961 421 962 469 963 421 962 517 961 423 964 473 965 471 966 519 967 471 966 473 965 473 968 425 969 521 970 475 971 521 970 425 969 475 972 427 973 523 974 477 975 523 974 427 973 477 976 429 977 525 978 479 979 525 978 429 977 479 980 432 981 527 982 482 983 527 982 432 981 530 984 482 985 531 986 483 987 531 986 482 985 433 988 485 989 483 990 533 991 483 990 485 989 435 992 487 993 485 994 535 995 485 994 487 993 437 996 489 997 487 998 537 999 487 998 489 997 489 1000 439 1001 539 1002 491 1003 539 1002 439 1001 491 1004 441 1005 541 1006 493 1007 541 1006 441 1005 443 1008 495 1009 493 1010 543 1011 493 1010 495 1009 445 1012 497 1013 495 1014 545 1015 495 1014 497 1013 499 1016 547 1017 447 1018 497 1019 447 1018 547 1017 501 1020 549 1021 449 1022 499 1023 449 1022 549 1021 503 1024 551 1025 451 1026 501 1027 451 1026 551 1025 553 1028 503 1029 505 1030 453 1031 505 1030 503 1029 507 1032 553 1033 459 1034 505 1035 459 1034 553 1033 509 1036 555 1037 461 1038 507 1039 461 1038 555 1037 463 1040 511 1041 509 1042 557 1043 509 1042 511 1041 465 1044 513 1045 511 1046 559 1047 511 1046 513 1045 467 1048 515 1049 513 1050 561 1051 513 1050 515 1049 517 1052 563 1053 469 1054 515 1055 469 1054 563 1053 471 1056 519 1057 517 1058 565 1059 517 1058 519 1057 473 1060 521 1061 519 1062 567 1063 519 1062 521 1061 521 1064 475 1065 569 1066 523 1067 569 1066 475 1065 523 1068 477 1069 571 1070 525 1071 571 1070 477 1069 525 1072 479 1073 573 1074 527 1075 573 1074 479 1073 575 1076 527 1077 530 1078 482 1079 530 1078 527 1077 578 1080 530 1081 579 1082 531 1083 579 1082 530 1081 531 1084 483 1085 581 1086 533 1087 581 1086 483 1085 533 1088 485 1089 583 1090 535 1091 583 1090 485 1089 487 1092 537 1093 535 1094 585 1095 535 1094 537 1093 537 1096 489 1097 587 1098 539 1099 587 1098 489 1097 539 1100 491 1101 589 1102 541 1103 589 1102 491 1101 541 1104 493 1105 591 1106 543 1107 591 1106 493 1105 495 1108 545 1109 543 1110 593 1111 543 1110 545 1109 547 1112 595 1113 497 1114 545 1115 497 1114 595 1113 549 1116 597 1117 499 1118 547 1119 499 1118 597 1117 551 1120 599 1121 501 1122 549 1123 501 1122 599 1121 601 1124 551 1125 553 1126 503 1127 553 1126 551 1125 555 1128 601 1129 507 1130 553 1131 507 1130 601 1129 509 1132 557 1133 555 1134 603 1135 555 1134 557 1133 511 1136 559 1137 557 1138 605 1139 557 1138 559 1137 513 1140 561 1141 559 1142 607 1143 559 1142 561 1141 515 1144 563 1145 561 1146 609 1147 561 1146 563 1145 565 1148 611 1149 517 1150 563 1151 517 1150 611 1149 519 1152 567 1153 565 1154 613 1155 565 1154 567 1153 521 1156 569 1157 567 1158 615 1159 567 1158 569 1157 569 1160 523 1161 617 1162 571 1163 617 1162 523 1161 571 1164 525 1165 619 1166 573 1167 619 1166 525 1165 621 1168 573 1169 575 1170 527 1171 575 1170 573 1169 623 1172 575 1173 578 1174 530 1175 578 1174 575 1173 626 1176 578 1177 627 1178 579 1179 627 1178 578 1177 579 1180 531 1181 629 1182 581 1183 629 1182 531 1181 581 1184 533 1185 631 1186 583 1187 631 1186 533 1185 535 1188 585 1189 583 1190 633 1191 583 1190 585 1189 585 1192 537 1193 635 1194 587 1195 635 1194 537 1193 587 1196 539 1197 637 1198 589 1199 637 1198 539 1197 589 1200 541 1201 639 1202 591 1203 639 1202 541 1201 591 1204 543 1205 641 1206 593 1207 641 1206 543 1205 595 1208 643 1209 545 1210 593 1211 545 1210 643 1209 597 1212 645 1213 547 1214 595 1215 547 1214 645 1213 599 1216 647 1217 549 1218 597 1219 549 1218 647 1217 601 1220 649 1221 551 1222 599 1223 551 1222 649 1221 555 1224 603 1225 601 1226 649 1227 601 1226 603 1225 557 1228 605 1229 603 1230 651 1231 603 1230 605 1229 559 1232 607 1233 605 1234 653 1235 605 1234 607 1233 561 1236 609 1237 607 1238 655 1239 607 1238 609 1237 611 1240 657 1241 563 1242 609 1243 563 1242 657 1241 613 1244 659 1245 565 1246 611 1247 565 1246 659 1245 567 1248 615 1249 613 1250 661 1251 613 1250 615 1249 569 1252 617 1253 615 1254 663 1255 615 1254 617 1253 617 1256 571 1257 665 1258 619 1259 665 1258 571 1257 619 1260 573 1261 667 1262 621 1263 667 1262 573 1261 669 1264 621 1265 623 1266 575 1267 623 1266 621 1265 671 1268 623 1269 626 1270 578 1271 626 1270 623 1269 674 1272 626 1273 675 1274 627 1275 675 1274 626 1273 627 1276 579 1277 677 1278 629 1279 677 1278 579 1277 629 1280 581 1281 679 1282 631 1283 679 1282 581 1281 631 1284 583 1285 681 1286 633 1287 681 1286 583 1285 585 1288 635 1289 633 1290 683 1291 633 1290 635 1289 635 1292 587 1293 685 1294 637 1295 685 1294 587 1293 637 1296 589 1297 687 1298 639 1299 687 1298 589 1297 639 1300 591 1301 689 1302 641 1303 689 1302 591 1301 643 1304 691 1305 593 1306 641 1307 593 1306 691 1305 645 1308 693 1309 595 1310 643 1311 595 1310 693 1309 647 1312 695 1313 597 1314 645 1315 597 1314 695 1313 649 1316 697 1317 599 1318 647 1319 599 1318 697 1317 603 1320 651 1321 649 1322 697 1323 649 1322 651 1321 605 1324 653 1325 651 1326 699 1327 651 1326 653 1325 607 1328 655 1329 653 1330 701 1331 653 1330 655 1329 657 1332 703 1333 609 1334 655 1335 609 1334 703 1333 659 1336 705 1337 611 1338 657 1339 611 1338 705 1337 661 1340 707 1341 613 1342 659 1343 613 1342 707 1341 615 1344 663 1345 661 1346 709 1347 661 1346 663 1345 617 1348 665 1349 663 1350 711 1351 663 1350 665 1349 665 1352 619 1353 713 1354 667 1355 713 1354 619 1353 667 1356 621 1357 715 1358 669 1359 715 1358 621 1357 717 1360 669 1361 671 1362 623 1363 671 1362 669 1361 719 1364 671 1365 674 1366 626 1367 674 1366 671 1365 724 1368 725 1369 726 1370 727 1371 726 1370 725 1369 675 1372 627 1373 729 1374 677 1375 729 1374 627 1373 677 1376 629 1377 731 1378 679 1379 731 1378 629 1377 679 1380 631 1381 733 1382 681 1383 733 1382 631 1381 681 1384 633 1385 735 1386 683 1387 735 1386 633 1385 683 1388 635 1389 737 1390 685 1391 737 1390 635 1389 685 1392 637 1393 739 1394 687 1395 739 1394 637 1393 687 1396 639 1397 741 1398 689 1399 741 1398 639 1397 691 1400 743 1401 641 1402 689 1403 641 1402 743 1401 693 1404 745 1405 643 1406 691 1407 643 1406 745 1405 695 1408 747 1409 645 1410 693 1411 645 1410 747 1409 697 1412 749 1413 647 1414 695 1415 647 1414 749 1413 651 1416 699 1417 697 1418 749 1419 697 1418 699 1417 653 1420 701 1421 699 1422 751 1423 699 1422 701 1421 703 1424 753 1425 655 1426 701 1427 655 1426 753 1425 705 1428 755 1429 657 1430 703 1431 657 1430 755 1429 707 1432 757 1433 659 1434 705 1435 659 1434 757 1433 709 1436 759 1437 661 1438 707 1439 661 1438 759 1437 663 1440 711 1441 709 1442 761 1443 709 1442 711 1441 711 1444 665 1445 763 1446 713 1447 763 1446 665 1445 713 1448 667 1449 765 1450 715 1451 765 1450 667 1449 715 1452 669 1453 767 1454 717 1455 767 1454 669 1453 769 1456 717 1457 719 1458 671 1459 719 1458 717 1457 772 1460 724 1461 773 1462 726 1463 773 1462 724 1461 725 1464 776 1465 727 1466 777 1467 727 1466 776 1465 729 1468 677 1469 779 1470 731 1471 779 1470 677 1469 731 1472 679 1473 781 1474 733 1475 781 1474 679 1473 733 1476 681 1477 783 1478 735 1479 783 1478 681 1477 785 1480 735 1481 737 1482 683 1483 737 1482 735 1481 737 1484 685 1485 787 1486 739 1487 787 1486 685 1485 739 1488 687 1489 789 1490 741 1491 789 1490 687 1489 743 1492 791 1493 689 1494 741 1495 689 1494 791 1493 745 1496 793 1497 691 1498 743 1499 691 1498 793 1497 747 1500 795 1501 693 1502 745 1503 693 1502 795 1501 749 1504 797 1505 695 1506 747 1507 695 1506 797 1505 699 1508 751 1509 749 1510 797 1511 749 1510 751 1509 701 1512 753 1513 751 1514 799 1515 751 1514 753 1513 755 1516 801 1517 703 1518 753 1519 703 1518 801 1517 757 1520 803 1521 705 1522 755 1523 705 1522 803 1521 759 1524 805 1525 707 1526 757 1527 707 1526 805 1525 761 1528 807 1529 709 1530 759 1531 709 1530 807 1529 761 1532 711 1533 809 1534 763 1535 809 1534 711 1533 763 1536 713 1537 811 1538 765 1539 811 1538 713 1537 765 1540 715 1541 813 1542 767 1543 813 1542 715 1541 767 1544 717 1545 815 1546 769 1547 815 1546 717 1545 818 1548 772 1549 819 1550 773 1551 819 1550 772 1549 777 1552 776 1553 822 1554 823 1555 822 1554 776 1553 779 1556 731 1557 825 1558 781 1559 825 1558 731 1557 781 1560 733 1561 827 1562 783 1563 827 1562 733 1561 829 1564 783 1565 785 1566 735 1567 785 1566 783 1565 831 1568 785 1569 787 1570 737 1571 787 1570 785 1569 833 1572 787 1573 789 1574 739 1575 789 1574 787 1573 791 1576 835 1577 741 1578 789 1579 741 1578 835 1577 793 1580 837 1581 743 1582 791 1583 743 1582 837 1581 795 1584 839 1585 745 1586 793 1587 745 1586 839 1585 797 1588 841 1589 747 1590 795 1591 747 1590 841 1589 751 1592 799 1593 797 1594 841 1595 797 1594 799 1593 753 1596 801 1597 799 1598 843 1599 799 1598 801 1597 803 1600 845 1601 755 1602 801 1603 755 1602 845 1601 805 1604 847 1605 757 1606 803 1607 757 1606 847 1605 807 1608 849 1609 759 1610 805 1611 759 1610 849 1609 809 1612 851 1613 761 1614 807 1615 761 1614 851 1613 809 1616 763 1617 853 1618 811 1619 853 1618 763 1617 811 1620 765 1621 855 1622 813 1623 855 1622 765 1621 813 1624 767 1625 857 1626 815 1627 857 1626 767 1625 860 1628 818 1629 861 1630 819 1631 861 1630 818 1629 822 1632 823 1633 864 1634 865 1635 864 1634 823 1633 825 1636 781 1637 867 1638 827 1639 867 1638 781 1637 869 1640 827 1641 829 1642 783 1643 829 1642 827 1641 871 1644 829 1645 831 1646 785 1647 831 1646 829 1645 873 1648 831 1649 833 1650 787 1651 833 1650 831 1649 875 1652 833 1653 835 1654 789 1655 835 1654 833 1653 837 1656 877 1657 791 1658 835 1659 791 1658 877 1657 839 1660 879 1661 793 1662 837 1663 793 1662 879 1661 841 1664 881 1665 795 1666 839 1667 795 1666 881 1665 799 1668 843 1669 841 1670 881 1671 841 1670 843 1669 801 1672 845 1673 843 1674 883 1675 843 1674 845 1673 847 1676 885 1677 803 1678 845 1679 803 1678 885 1677 849 1680 887 1681 805 1682 847 1683 805 1682 887 1681 851 1684 889 1685 807 1686 849 1687 807 1686 889 1685 851 1688 809 1689 891 1690 853 1691 891 1690 809 1689 853 1692 811 1693 893 1694 855 1695 893 1694 811 1693 855 1696 813 1697 895 1698 857 1699 895 1698 813 1697 898 1700 860 1701 899 1702 861 1703 899 1702 860 1701 864 1704 865 1705 902 1706 903 1707 902 1706 865 1705 905 1708 867 1709 869 1710 827 1711 869 1710 867 1709 907 1712 869 1713 871 1714 829 1715 871 1714 869 1713 909 1716 871 1717 873 1718 831 1719 873 1718 871 1717 911 1720 873 1721 875 1722 833 1723 875 1722 873 1721 877 1724 913 1725 835 1726 875 1727 835 1726 913 1725 879 1728 915 1729 837 1730 877 1731 837 1730 915 1729 881 1732 917 1733 839 1734 879 1735 839 1734 917 1733 843 1736 883 1737 881 1738 917 1739 881 1738 883 1737 845 1740 885 1741 883 1742 919 1743 883 1742 885 1741 887 1744 921 1745 847 1746 885 1747 847 1746 921 1745 849 1748 889 1749 887 1750 923 1751 887 1750 889 1749 851 1752 891 1753 889 1754 925 1755 889 1754 891 1753 891 1756 853 1757 927 1758 893 1759 927 1758 853 1757 893 1760 855 1761 929 1762 895 1763 929 1762 855 1761 899 1764 932 1765 898 1766 933 1767 898 1766 932 1765 902 1768 903 1769 936 1770 937 1771 936 1770 903 1769 939 1772 905 1773 907 1774 869 1775 907 1774 905 1773 941 1776 907 1777 909 1778 871 1779 909 1778 907 1777 943 1780 909 1781 911 1782 873 1783 911 1782 909 1781 945 1784 911 1785 913 1786 875 1787 913 1786 911 1785 915 1788 947 1789 877 1790 913 1791 877 1790 947 1789 917 1792 949 1793 879 1794 915 1795 879 1794 949 1793 883 1796 919 1797 917 1798 949 1799 917 1798 919 1797 885 1800 921 1801 919 1802 951 1803 919 1802 921 1801 887 1804 923 1805 921 1806 953 1807 921 1806 923 1805 889 1808 925 1809 923 1810 955 1811 923 1810 925 1809 891 1812 927 1813 925 1814 957 1815 925 1814 927 1813 927 1816 893 1817 959 1818 929 1819 959 1818 893 1817 932 1820 962 1821 933 1822 963 1823 933 1822 962 1821 936 1824 937 1825 966 1826 967 1827 966 1826 937 1825 969 1828 939 1829 941 1830 907 1831 941 1830 939 1829 971 1832 941 1833 943 1834 909 1835 943 1834 941 1833 973 1836 943 1837 945 1838 911 1839 945 1838 943 1837 975 1840 945 1841 947 1842 913 1843 947 1842 945 1841 949 1844 977 1845 915 1846 947 1847 915 1846 977 1845 919 1848 951 1849 949 1850 977 1851 949 1850 951 1849 921 1852 953 1853 951 1854 979 1855 951 1854 953 1853 923 1856 955 1857 953 1858 981 1859 953 1858 955 1857 925 1860 957 1861 955 1862 983 1863 955 1862 957 1861 927 1864 959 1865 957 1866 985 1867 957 1866 959 1865 962 1868 988 1869 963 1870 989 1871 963 1870 988 1869 966 1872 967 1873 992 1874 993 1875 992 1874 967 1873 995 1876 969 1877 971 1878 941 1879 971 1878 969 1877 997 1880 971 1881 973 1882 943 1883 973 1882 971 1881 999 1884 973 1885 975 1886 945 1887 975 1886 973 1885 1001 1888 975 1889 977 1890 947 1891 977 1890 975 1889 951 1892 979 1893 977 1894 1001 1895 977 1894 979 1893 953 1896 981 1897 979 1898 1003 1899 979 1898 981 1897 955 1900 983 1901 981 1902 1005 1903 981 1902 983 1901 957 1904 985 1905 983 1906 1007 1907 983 1906 985 1905 988 1908 1010 1909 989 1910 1011 1911 989 1910 1010 1909 1014 1912 1015 1913 993 1914 992 1915 993 1914 1015 1913 1017 1916 995 1917 997 1918 971 1919 997 1918 995 1917 1019 1920 997 1921 999 1922 973 1923 999 1922 997 1921 1021 1924 999 1925 1001 1926 975 1927 1001 1926 999 1925 979 1928 1003 1929 1001 1930 1021 1931 1001 1930 1003 1929 981 1932 1005 1933 1003 1934 1023 1935 1003 1934 1005 1933 983 1936 1007 1937 1005 1938 1025 1939 1005 1938 1007 1937 1010 1940 1028 1941 1011 1942 1029 1943 1011 1942 1028 1941 1032 1944 1033 1945 1014 1946 1015 1947 1014 1946 1033 1945 1035 1948 1017 1949 1019 1950 997 1951 1019 1950 1017 1949 1037 1952 1019 1953 1021 1954 999 1955 1021 1954 1019 1953 1003 1956 1023 1957 1021 1958 1037 1959 1021 1958 1023 1957 1005 1960 1025 1961 1023 1962 1039 1963 1023 1962 1025 1961 1028 1964 1042 1965 1029 1966 1043 1967 1029 1966 1042 1965 1046 1968 1047 1969 1032 1970 1033 1971 1032 1970 1047 1969 1049 1972 1035 1973 1037 1974 1019 1975 1037 1974 1035 1973 1023 1976 1039 1977 1037 1978 1049 1979 1037 1978 1039 1977 1043 1980 1042 1981 1052 1982 1053 1983 1052 1982 1042 1981 1056 1984 1057 1985 1046 1986 1047 1987 1046 1986 1057 1985 1052 1988 1053 1989 1056 1990 1057 1991 1056 1990 1053 1989</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10249\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10250\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10254\">-4.190402451496993 300.038731109076 287.9452551631039 -43.41532340800427 295.0256224031079 334.3148927609655 -42.36707500549869 295.1743588416131 287.0826631208383 -5.238650853998479 299.8899946705737 335.1774848032364 -5.238650853998479 299.8899946705737 335.1774848032364 -4.190402451496993 300.038731109076 287.9452551631039 -43.41532340800427 295.0256224031079 334.3148927609655 -42.36707500549869 295.1743588416131 287.0826631208383 33.9448103974521 294.8540318742752 288.7752820863552 32.89656199495153 294.7052954357699 336.0075117265442 32.89656199495153 294.7052954357699 336.0075117265442 33.9448103974521 294.8540318742752 288.7752820863552 -79.03177852243607 280.4436775646539 333.4785198220452 -77.98353011994095 280.5924140031664 286.2462901818817 -79.03177852243607 280.4436775646539 333.4785198220452 -77.98353011994095 280.5924140031664 286.2462901818817 69.43971180711992 279.9735898219527 289.5161789276062 68.39146340461571 279.8248533834397 336.7484085677461 68.39146340461571 279.8248533834397 336.7484085677461 69.43971180711992 279.9735898219527 289.5161789276062 -109.6608136402331 257.1378955981482 332.7253634198969 -108.612565237732 257.2866320366605 285.4931337798171 -109.6608136402331 257.1378955981482 332.7253634198969 -108.612565237732 257.2866320366605 285.4931337798171 99.87538290451676 256.4114824868611 290.1174547914052 98.82713450201914 256.2627460483495 337.3496844315105 98.82713450201914 256.2627460483495 337.3496844315105 99.87538290451676 256.4114824868611 290.1174547914052 -132.1668622324849 226.8452634684949 284.8745202786213 -133.2151106349913 226.6965270299939 332.1067499187448 -132.1668622324849 226.8452634684949 284.8745202786213 -133.2151106349913 226.6965270299939 332.1067499187448 123.1776830016875 225.7734285456784 290.5381337214822 122.129434599183 225.6246921071737 337.770363361602 123.1776830016875 225.7734285456784 290.5381337214822 122.129434599183 225.6246921071737 337.770363361602 -147.0412346893213 191.3428372598591 284.4326071664636 -148.089483091821 191.1941008213437 331.664836806629 -147.0412346893213 191.3428372598591 284.4326071664636 -148.089483091821 191.1941008213437 331.664836806629 137.7585988558822 190.1473607427304 290.7495471436032 136.7103504533807 189.9986243042148 337.9817767837667 137.7585988558822 190.1473607427304 290.7495471436032 136.7103504533807 189.9986243042148 337.9817767837667 -152.222018706359 153.1987850863141 284.1975100913787 -153.2702671088605 153.0500486478098 331.4297397315058 -152.222018706359 153.1987850863141 284.1975100913787 -153.2702671088605 153.0500486478098 331.4297397315058 142.6244651477459 151.9611367238889 290.7372875828296 141.5762167452378 151.8124002853885 337.9695172229458 142.6244651477459 151.9611367238889 290.7372875828296 141.5762167452378 151.8124002853885 337.9695172229458 -147.3561524144925 115.0125610674808 284.1852505304614 -148.4044008169926 114.8638246289792 331.4174801705231 -147.3561524144925 115.0125610674808 284.1852505304614 -148.4044008169926 114.8638246289792 331.4174801705231 137.4436811306944 113.8170845503522 290.5021905077392 136.3954327282004 113.6683481118415 337.7344201478663 137.4436811306944 113.8170845503522 290.5021905077392 136.3954327282004 113.6683481118415 337.7344201478663 -132.7752365602996 79.38649326452328 284.3966639526516 -133.8234849628011 79.23775682601789 331.628893592826 -132.7752365602996 79.38649326452328 284.3966639526516 -133.8234849628011 79.23775682601789 331.628893592826 122.5693086747665 78.31465834384071 290.0602773954561 121.5210602722611 78.16592190534081 337.2925070356396 122.5693086747665 78.31465834384071 290.0602773954561 121.5210602722611 78.16592190534081 337.2925070356396 -109.4729364631317 48.74843932334439 284.817342882654 -110.52118486563 48.59970288483127 332.0495725228029 -109.4729364631317 48.74843932334439 284.817342882654 -110.52118486563 48.59970288483127 332.0495725228029 99.01501167870083 47.87328977397068 289.4416638943931 97.96676327618707 47.72455333547291 336.6738935345074 99.01501167870083 47.87328977397068 289.4416638943931 97.96676327618707 47.72455333547291 336.6738935345074 -79.03726536573686 25.18633198825421 285.4186187465839 -80.0855137682338 25.03759554975117 332.6508483866746 -80.0855137682338 25.03759554975117 332.6508483866746 -79.03726536573686 25.18633198825421 285.4186187465839 67.33772815667726 24.41877136765488 335.9207371324155 68.38597655918647 24.56750780617195 288.6885074922739 67.33772815667726 24.41877136765488 335.9207371324155 68.38597655918647 24.56750780617195 288.6885074922739 -43.54236395607109 10.30588993593364 286.1595155876494 -44.59061235857712 10.15715349742524 333.3917452277874 -44.59061235857712 10.15715349742524 333.3917452277874 -43.54236395607109 10.30588993593364 286.1595155876494 31.7212730443764 9.836826530085446 335.0843641934316 32.76952144688789 9.985562968596938 287.8521345533536 31.7212730443764 9.836826530085446 335.0843641934316 32.76952144688789 9.985562968596938 287.8521345533536 -5.407151107125628 5.121190701132662 286.9895425110735 -6.455399509625067 4.972454262625945 334.2217721512516 -6.455399509625067 4.972454262625945 334.2217721512516 -5.407151107125628 5.121190701132662 286.9895425110735</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10254\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10251\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10255\">-0.004125668178050834 -0.9999862387051478 -0.003240565138332882 0.2547680357417778 -0.966998676685785 0.002609071140681349 0.2547680357417856 -0.9669986766857829 0.002609071140681532 -0.004125668178085551 -0.9999862387051477 -0.003240565138333652 0.004125668178085551 0.9999862387051477 0.003240565138333652 0.004125668178050834 0.9999862387051478 0.003240565138332882 -0.2547680357417778 0.966998676685785 -0.002609071140681349 -0.2547680357417856 0.9669986766857829 -0.002609071140681532 -0.2627382146294609 -0.9648263911121268 -0.008869362258508028 -0.262738214629372 -0.9648263911121511 -0.008869362258506135 0.262738214629372 0.9648263911121511 0.008869362258506135 0.2627382146294609 0.9648263911121268 0.008869362258508028 0.4962997190498358 -0.8681117528911412 0.008280903533086165 0.4962997190498065 -0.8681117528911579 0.008280903533085462 -0.4962997190498358 0.8681117528911412 -0.008280903533086165 -0.4962997190498065 0.8681117528911579 -0.008280903533085462 -0.5034455859492821 -0.8639152194158224 -0.01389372699801093 -0.5034455859491308 -0.8639152194159108 -0.01389372699800785 0.5034455859491308 0.8639152194159108 0.01389372699800785 0.5034455859492821 0.8639152194158224 0.01389372699801093 0.7040093966785075 -0.7100644477596492 0.01338840603463608 0.7040093966786782 -0.7100644477594797 0.0133884060346404 -0.7040093966785075 0.7100644477596492 -0.01338840603463608 -0.7040093966786782 0.7100644477594797 -0.0133884060346404 -0.7098439725697572 -0.7041296532038168 -0.01797125720305601 -0.7098439725698382 -0.7041296532037351 -0.01797125720305755 0.7098439725698382 0.7041296532037351 0.01797125720305755 0.7098439725697572 0.7041296532038168 0.01797125720305601 0.8637419973543892 -0.5036274239500225 0.01758351079035712 0.8637419973543907 -0.5036274239500198 0.01758351079035716 -0.8637419973543892 0.5036274239500225 -0.01758351079035712 -0.8637419973543907 0.5036274239500198 -0.01758351079035716 -0.8678676655324119 -0.4963588147550512 -0.02082407592865621 -0.8678676655324181 -0.4963588147550403 -0.02082407592865632 0.8678676655324119 0.4963588147550512 0.02082407592865621 0.8678676655324181 0.4963588147550403 0.02082407592865632 0.9646120083115281 -0.2628690234821609 0.02058032834373475 0.9646120083116115 -0.2628690234818542 0.02058032834373757 -0.9646120083115281 0.2628690234821609 -0.02058032834373475 -0.9646120083116115 0.2628690234818542 -0.02058032834373757 -0.9667476113080517 -0.2547619433525846 -0.02225776829313403 -0.9667476113080357 -0.2547619433526447 -0.02225776829313386 0.9667476113080517 0.2547619433525846 0.02225776829313403 0.9667476113080357 0.2547619433526447 0.02225776829313386 0.9997453049990286 -0.004196533475252178 0.02217463053109316 0.9997453049990278 -0.004196533475431163 0.02217463053109258 -0.9997453049990286 0.004196533475252178 -0.02217463053109316 -0.9997453049990278 0.004196533475431163 -0.02217463053109258 -0.9997453049990277 0.004196533475162382 -0.02217463053114408 -0.999745304999027 0.004196533475344724 -0.02217463053114348 0.9997453049990277 -0.004196533475162382 0.02217463053114408 0.999745304999027 -0.004196533475344724 0.02217463053114348 0.9667476113080034 0.2547619433527709 0.02225776829310112 0.9667476113080584 0.2547619433525618 0.02225776829310169 -0.9667476113080034 -0.2547619433527709 -0.02225776829310112 -0.9667476113080584 -0.2547619433525618 -0.02225776829310169 -0.9646120083115619 0.26286902348204 -0.02058032834368528 -0.9646120083115556 0.2628690234820633 -0.02058032834368506 0.9646120083115619 -0.26286902348204 0.02058032834368528 0.9646120083115556 -0.2628690234820633 0.02058032834368506 0.8678676655323898 0.4963588147550915 0.02082407592861453 0.8678676655323694 0.4963588147551273 0.02082407592861419 -0.8678676655323898 -0.4963588147550915 -0.02082407592861453 -0.8678676655323694 -0.4963588147551273 -0.02082407592861419 -0.8637419973543653 0.5036274239500664 -0.0175835107902746 -0.8637419973544052 0.5036274239499982 -0.0175835107902757 0.8637419973543653 -0.5036274239500664 0.0175835107902746 0.8637419973544052 -0.5036274239499982 0.0175835107902757 0.7098439725699337 0.7041296532036396 0.0179712572030312 0.7098439725698119 0.7041296532037623 0.01797125720302889 -0.7098439725699337 -0.7041296532036396 -0.0179712572030312 -0.7098439725698119 -0.7041296532037623 -0.01797125720302889 -0.7040093966786866 0.7100644477594704 -0.0133884060347078 -0.7040093966786236 0.7100644477595327 -0.01338840603470621 0.7040093966786866 -0.7100644477594704 0.0133884060347078 0.7040093966786236 -0.7100644477595327 0.01338840603470621 0.5034455859491425 0.8639152194159044 0.0138937269979834 0.5034455859493264 0.8639152194157971 0.01389372699798715 -0.5034455859493264 -0.8639152194157971 -0.01389372699798715 -0.5034455859491425 -0.8639152194159044 -0.0138937269979834 -0.4962997190497711 0.8681117528911777 -0.008280903533122302 -0.4962997190498072 0.8681117528911573 -0.008280903533123166 0.4962997190497711 -0.8681117528911777 0.008280903533122302 0.4962997190498072 -0.8681117528911573 0.008280903533123166 0.262738214629301 0.9648263911121706 0.008869362258469593 0.262738214629351 0.9648263911121571 0.00886936225847066 -0.262738214629351 -0.9648263911121571 -0.00886936225847066 -0.262738214629301 -0.9648263911121706 -0.008869362258469593 -0.254768035741753 0.9669986766857917 -0.002609071140608716 -0.2547680357417198 0.9669986766858003 -0.002609071140607952 0.254768035741753 -0.9669986766857917 0.002609071140608716 0.2547680357417198 -0.9669986766858003 0.002609071140607952 0.004125668178178836 0.999986238705147 0.003240565138368094 0.004125668177858358 0.9999862387051484 0.003240565138360986 -0.004125668177858358 -0.9999862387051484 -0.003240565138360986 -0.004125668178178836 -0.999986238705147 -0.003240565138368094</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10255\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10253\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10256\">-28.12197810859162 195.3781322682765 -28.83484837017603 196.2530228946315 -28.8348483550602 195.3781322559593 -28.12197812370737 196.2530229069488 -28.49745612569859 195.3781319921513 -29.21032639556099 196.2530226117631 -29.21032637216717 195.3781319730908 -28.49745614909237 196.2530226308246 -25.80574329253602 195.3781325828466 -26.51861354481217 196.2530232167876 -26.51861353900467 195.3781325781148 -25.80574329834367 196.2530232215188 -26.90658913750064 195.3781318291341 -27.61945941404695 196.2530224432998 -27.61945938396936 195.3781318046264 -26.90658916757825 196.2530224678065 -21.70659925249291 195.3781328508181 -22.41946949506516 196.2530234926648 -22.41946949896144 195.3781328539935 -21.70659924859651 196.253023489491 -23.4577921002121 195.3781318234483 -24.17066238139242 196.2530224338382 -24.17066234668077 195.3781317951657 -23.45779213492368 196.2530224621201 -16.8167661271036 195.378133010462 -16.10389586730023 196.2530236382704 -16.8167661137688 196.2530236491341 -16.10389588063491 195.3781329995991 -19.09896511596589 196.2530225855354 -18.38609483251714 195.3781319769973 -18.38609486949741 196.2530226156694 -19.09896507898579 195.3781319468636 -10.0923183993064 195.3781330063672 -9.379448130973387 196.2530236272222 -10.09231837744208 196.2530236450401 -9.379448152837892 195.3781329885501 -12.7499954050276 196.2530228575675 -12.0371251218306 195.3781322488202 -12.03712515855903 196.253022887493 -12.74999536829896 195.3781322188955 -2.704386315559843 195.3781328434922 -1.991516040187159 196.253023458613 -2.704386286655709 196.2530234821644 -1.991516069091098 195.3781328199401 -5.556425042217353 196.253023177053 -4.843554761774739 195.3781325660639 -4.843554795748841 196.2530232047359 -5.556425008243545 195.3781325383802 4.84355476177629 195.378132566062 5.556425042218967 196.2530231770531 4.84355479575035 196.253023204733 5.55642500824495 195.3781325383809 1.991516040185866 196.2530234586131 2.704386315558681 195.3781328434931 2.704386286654646 196.2530234821653 1.991516069090054 195.3781328199411 12.03712512183045 195.3781322488197 12.74999540502763 196.2530228575647 12.03712515855905 196.2530228874928 12.74999536829896 195.3781322188937 9.379448130975435 196.2530236272206 10.09231839926561 195.3781330063627 10.09231837740106 196.2530236450359 9.379448152839863 195.3781329885485 18.38609483251643 195.3781319769942 19.09896511596519 196.2530225855349 18.3860948694965 196.2530226156667 19.09896507898498 195.3781319468619 16.10389586725539 196.2530236382706 16.81676612709872 195.3781330104634 16.81676611376396 196.2530236491354 16.10389588059023 195.3781329995974 24.17066238139154 196.2530224338378 23.45779210021132 195.3781318234503 24.17066234667998 195.3781317951652 23.45779213492299 196.2530224621218 22.4194694951072 196.2530234926684 21.70659925249489 195.3781328508208 22.41946949900332 195.3781328539959 21.70659924859862 196.2530234894927 27.61945941404801 196.2530224433004 26.90658913750182 195.3781318291332 27.61945938397043 195.3781318046289 26.9065891675795 196.2530224678056 26.5186135448143 196.2530232167864 25.8057432925807 195.3781325828472 26.51861353900649 195.3781325781152 25.80574329838849 196.2530232215197 29.21032639556077 196.2530226117603 28.49745612569831 195.3781319921517 29.21032637216689 195.378131973088 28.49745614909206 196.2530226308248 28.83484837017511 196.2530228946312 28.1219781085906 195.3781322682755 28.83484835505941 195.378132255958 28.12197812370658 196.2530229069468</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10256\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10252\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10250\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10251\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10252\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10253\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 3 5 0 6 3 5 8 4 9 7 10 7 11 4 4 5 5 6 4 5 11 4 2 8 12 9 13 10 12 9 2 8 1 11 6 11 7 8 14 9 15 10 14 9 7 8 16 12 9 13 8 14 9 13 16 12 17 15 18 15 19 12 10 13 11 14 10 13 19 12 13 16 20 17 21 18 20 17 13 16 12 19 14 19 15 16 22 17 23 18 22 17 15 16 24 20 17 21 16 22 17 21 24 20 25 23 26 23 27 20 18 21 19 22 18 21 27 20 28 24 20 25 29 26 20 25 28 24 21 27 23 27 30 24 22 25 31 26 22 25 30 24 25 28 32 29 33 30 32 29 25 28 24 31 27 31 26 28 34 29 35 30 34 29 26 28 36 32 29 33 37 34 29 33 36 32 28 35 30 35 38 32 31 33 39 34 31 33 38 32 33 36 40 37 41 38 40 37 33 36 32 39 34 39 35 36 42 37 43 38 42 37 35 36 44 40 37 41 45 42 37 41 44 40 36 43 38 43 46 40 39 41 47 42 39 41 46 40 41 44 48 45 49 46 48 45 41 44 40 47 42 47 43 44 50 45 51 46 50 45 43 44 52 48 45 49 53 50 45 49 52 48 44 51 46 51 54 48 47 49 55 50 47 49 54 48 49 52 56 53 57 54 56 53 49 52 48 55 50 55 51 52 58 53 59 54 58 53 51 52 60 56 53 57 61 58 53 57 60 56 52 59 54 59 62 56 55 57 63 58 55 57 62 56 57 60 64 61 65 62 64 61 57 60 56 63 58 63 59 60 66 61 67 62 66 61 59 60 68 64 61 65 69 66 61 65 68 64 60 67 62 67 70 64 63 65 71 66 63 65 70 64 65 68 72 69 73 70 72 69 65 68 64 71 66 71 67 68 74 69 75 70 74 69 67 68 69 72 76 73 68 74 76 73 69 72 77 75 78 75 71 72 79 73 70 74 79 73 71 72 80 76 72 77 81 78 72 77 80 76 73 79 75 79 82 76 74 77 83 78 74 77 82 76 77 80 84 81 76 82 84 81 77 80 85 83 86 83 78 80 87 81 79 82 87 81 78 80 88 84 81 85 89 86 81 85 88 84 80 87 82 87 90 84 83 85 91 86 83 85 90 84 85 88 92 89 84 90 92 89 85 88 93 91 94 91 86 88 95 89 87 90 95 89 86 88 93 92 89 93 92 94 89 93 93 92 88 95 90 95 94 92 91 93 95 94 91 93 94 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10257\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10258\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10262\">18.26681922824992 162.8433168405579 1839.082821210483 -8.802124953779412 166.7054941203282 2008.221893473678 -4.909213702697116 157.1938062696603 2008.278338054895 12.38852323915739 177.2059654949668 1838.997589892877 12.38852323915739 177.2059654949668 1838.997589892877 18.26681922824992 162.8433168405579 1839.082821210483 -8.802124953779412 166.7054941203282 2008.221893473678 -4.909213702697116 157.1938062696603 2008.278338054895 20.22849314455175 147.4485412494246 1839.077878768718 -3.610091903812418 146.9985906463234 2008.275064914649 20.22849314455175 147.4485412494246 1839.077878768718 -3.610091903812418 146.9985906463234 2008.275064914649 -15.02353018863596 174.8854483901019 2008.109577775693 2.994201334578747 189.5576964422581 1838.827993189037 2.994201334578747 189.5576964422581 1838.827993189037 -15.02353018863596 174.8854483901019 2008.109577775693 -4.993292560824557 136.8146343466669 2008.212297111999 18.13986015247224 132.0707672370235 1838.983099386784 -4.993292560824557 136.8146343466669 2008.212297111999 18.13986015247224 132.0707672370235 1838.983099386784 -23.14945092187986 181.1762187135309 2007.949045090432 -9.275938972532686 199.0567596305651 1838.585588834274 -23.14945092187986 181.1762187135309 2007.949045090432 -9.275938972532686 199.0567596305651 1838.585588834274 -8.964552833765083 127.3359571651763 2008.094312168943 12.14325713982248 117.7579646917893 1838.804942122775 -8.964552833765083 127.3359571651763 2008.094312168943 12.14325713982248 117.7579646917893 1838.804942122775 -32.62611908425038 185.1490994890457 2007.751235455158 -23.58570789763007 205.0558096015606 1838.286896284853 -32.62611908425038 185.1490994890457 2007.751235455158 -23.58570789763007 205.0558096015606 1838.286896284853 -15.25323790138714 119.2085152807917 2007.929150564385 2.64734268858615 105.4855274474792 1838.555548099894 -15.25323790138714 119.2085152807917 2007.929150564385 2.64734268858615 105.4855274474792 1838.555548099894 -42.80771540141541 186.5333454573015 2007.529629269153 -38.95991833645439 207.1460210136152 1837.952270944274 -42.80771540141541 186.5333454573015 2007.529629269153 -38.95991833645439 207.1460210136152 1837.952270944274 -23.43078426685838 112.9861804314723 2007.728067788632 -9.700752322157541 96.08980182584337 1838.251913108605 -23.43078426685838 112.9861804314723 2007.728067788632 -9.700752322157541 96.08980182584337 1838.251913108605 -53.00038091025408 185.2346225431329 2007.29932862834 -54.35084325470416 205.1849494132243 1837.604516976464 -53.00038091025408 185.2346225431329 2007.29932862834 -54.35084325470416 205.1849494132243 1837.604516976464 -32.93990565463696 109.0929944562386 2007.504767300741 -24.05952561890763 90.21109100276244 1837.914729371934 -32.93990565463696 109.0929944562386 2007.504767300741 -24.05952561890763 90.21109100276244 1837.914729371934 -62.50950230050444 181.3414365668889 2007.076028140386 -68.70961655389715 199.3062385891511 1837.267333239748 -62.50950230050444 181.3414365668889 2007.076028140386 -68.70961655389715 199.3062385891511 1837.267333239748 -43.13257116347745 107.7942715420764 2007.274466659897 -39.45045053715558 88.25001940237154 1837.566975404228 -43.13257116347745 107.7942715420764 2007.274466659897 -39.45045053715558 88.25001940237154 1837.566975404228 -70.68704866399548 175.119101719071 2006.874945364805 -81.0577115626852 189.9105129690083 1836.963698248506 -70.68704866399548 175.119101719071 2006.874945364805 -81.0577115626852 189.9105129690083 1836.963698248506 -53.31416748064453 109.1785175103272 2007.052860474025 -54.82466097598581 90.34023081442534 1837.232350063596 -53.31416748064453 109.1785175103272 2007.052860474025 -54.82466097598581 90.34023081442534 1837.232350063596 -90.55362601241654 177.6380757266363 1836.714304225696 -76.97573373008459 166.9916598366649 2006.709783760183 -90.55362601241654 177.6380757266363 1836.714304225696 -76.97573373008459 166.9916598366649 2006.709783760183 -62.7908356430155 113.1513982858421 2006.855050838687 -69.13442990108183 96.33928078542346 1836.933657514126 -62.7908356430155 113.1513982858421 2006.855050838687 -69.13442990108183 96.33928078542346 1836.933657514126 -96.55022902608698 163.3252731789668 1836.536146961618 -80.94699400406034 157.5129826527112 2006.591798817079 -96.55022902608698 163.3252731789668 1836.536146961618 -80.94699400406034 157.5129826527112 2006.591798817079 -70.91675637625281 119.4421686092701 2006.694518153377 -81.40457020819235 105.8383439737355 1836.691253159397 -70.91675637625281 119.4421686092701 2006.694518153377 -81.40457020819235 105.8383439737355 1836.691253159397 -98.63886201816422 147.9474991665723 1836.44136757965 -82.33019466108249 147.329026353049 2006.529031014539 -98.63886201816422 147.9474991665723 1836.44136757965 -82.33019466108249 147.329026353049 2006.529031014539 -90.79889211276827 118.1900749210255 1836.521656455536 -77.13816161110822 127.6221228790534 2006.582202455513 -77.13816161110822 127.6221228790534 2006.582202455513 -90.79889211276827 118.1900749210255 1836.521656455536 -81.0310728622012 137.1338107297136 2006.525757874299 -96.67718810186034 132.5527235754346 1836.436425137872 -81.0310728622012 137.1338107297136 2006.525757874299 -96.67718810186034 132.5527235754346 1836.436425137872</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10262\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10259\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10263\">0.9574424380422307 0.2526269362769411 0.1395836985578025 0.8592475581615232 0.4925499619304259 0.1381599391856971 0.9574424380420683 0.2526269362775572 0.1395836985578008 0.8592475581614711 0.4925499619305171 0.1381599391856963 -0.8592475581614711 -0.4925499619305171 -0.1381599391856963 -0.9574424380422307 -0.2526269362769411 -0.1395836985578025 -0.8592475581615232 -0.4925499619304259 -0.1381599391856971 -0.9574424380420683 -0.2526269362775572 -0.1395836985578008 0.9902115151579289 -0.004537409098550211 0.1395011367957652 0.9902115151579283 -0.004537409098712781 0.1395011367957646 -0.9902115151579289 0.004537409098550211 -0.1395011367957652 -0.9902115151579283 0.004537409098712781 -0.1395011367957646 0.7023186943049001 0.6988813101544692 0.1353268855277209 0.702318694304267 0.6988813101551075 0.1353268855277089 -0.702318694304267 -0.6988813101551075 -0.1353268855277089 -0.7023186943049001 -0.6988813101544692 -0.1353268855277209 0.9553216310567494 -0.2614177490447214 0.1379178803471936 0.9553216310567422 -0.2614177490447481 0.1379178803471934 -0.9553216310567494 0.2614177490447214 -0.1379178803471936 -0.9553216310567422 0.2614177490447481 -0.1379178803471934 0.4973502892065496 0.8575598405464386 0.1312776055088152 0.4973502892070063 0.8575598405461723 0.1312776055088245 -0.4973502892065496 -0.8575598405464386 -0.1312776055088152 -0.4973502892070063 -0.8575598405461723 -0.1312776055088245 0.8551504736819022 -0.5005081129075125 0.1349418255226249 0.8551504736818931 -0.5005081129075286 0.1349418255226247 -0.8551504736819022 0.5005081129075125 -0.1349418255226249 -0.8551504736818931 0.5005081129075286 -0.1349418255226247 0.2583106009492991 0.9577718734878953 0.1262880508706157 0.2583106009494185 0.9577718734878625 0.1262880508706182 -0.2583106009492991 -0.9577718734878953 -0.1262880508706157 -0.2583106009494185 -0.9577718734878625 -0.1262880508706182 0.6965245418678674 -0.7055148875056484 0.1307757855401753 0.696524541867897 -0.7055148875056189 0.130775785540176 -0.6965245418678674 0.7055148875056484 -0.1307757855401753 -0.696524541867897 0.7055148875056189 -0.130775785540176 0.001489789254231985 0.9926881245431292 0.1206982515160128 0.001489789253917164 0.9926881245431306 0.1206982515160058 -0.001489789254231985 -0.9926881245431292 -0.1206982515160128 -0.001489789253917164 -0.9926881245431306 -0.1206982515160058 0.4902539307259123 -0.862467199940127 0.1257036691398845 0.4902539307255587 -0.8624671999403293 0.1257036691398761 -0.4902539307259123 0.862467199940127 -0.1257036691398845 -0.4902539307255587 0.8624671999403293 -0.1257036691398761 -0.2556102319777012 0.9599291089040656 0.1148891430334145 -0.2556102319776381 0.9599291089040822 0.114889143033416 0.2556102319777012 -0.9599291089040656 -0.1148891430334145 0.2556102319776381 -0.9599291089040822 -0.114889143033416 0.2503956415263873 -0.9606690094946122 0.1200711326723853 0.2503956415265997 -0.9606690094945563 0.1200711326723902 -0.2503956415263873 0.9606690094946122 -0.1200711326723853 -0.2503956415265997 0.9606690094945563 -0.1200711326723902 -0.495468521176602 0.8617272993498372 0.109256606565953 -0.4954685211765468 0.8617272993498688 0.1092566065659544 0.495468521176602 -0.8617272993498372 -0.109256606565953 0.4954685211765468 -0.8617272993498688 -0.1092566065659544 -0.00670437970495117 -0.9934280251335887 0.1142620241897974 -0.006704379704713407 -0.9934280251335897 0.1142620241898027 0.00670437970495117 0.9934280251335887 -0.1142620241897974 0.006704379704713407 0.9934280251335897 -0.1142620241898027 -0.7017391323187838 0.7047749869152596 0.1041844901656473 -0.7017391323186382 0.7047749869154042 0.104184490165651 0.7017391323187838 -0.7047749869152596 -0.1041844901656473 0.7017391323186382 -0.7047749869154042 -0.104184490165651 -0.2635251914 -0.9585117740784253 0.1086722248351583 -0.2635251913998729 -0.9585117740784599 0.1086722248351609 0.2635251914 0.9585117740784253 -0.1086722248351583 0.2635251913998729 0.9585117740784599 -0.1086722248351609 -0.8603650641329254 0.4997682123169805 0.1000184501831383 -0.8603650641326756 0.499768212317409 0.1000184501831452 0.8603650641329254 -0.4997682123169805 -0.1000184501831383 0.8603650641326756 -0.499768212317409 -0.1000184501831452 -0.5025648796579219 -0.8582997411366599 0.1036826701969095 -0.5025648796579009 -0.8582997411366721 0.1036826701969099 0.5025648796579219 0.8582997411366599 -0.1036826701969095 0.5025648796579009 0.8582997411366721 -0.1036826701969099 -0.960536221507674 0.260677848454437 0.09704239535855623 -0.9605362215077135 0.2606778484542922 0.09704239535855488 0.960536221507674 -0.260677848454437 -0.09704239535855623 0.9605362215077135 -0.2606778484542922 -0.09704239535855488 -0.7075332847556328 -0.699621210745168 0.09963339017804197 -0.7075332847560445 -0.6996212107447528 0.09963339017803416 0.7075332847556328 0.699621210745168 -0.09963339017804197 0.7075332847560445 0.6996212107447528 -0.09963339017803416 -0.995426105608897 0.003797508508679782 0.09545913890996352 -0.9954261056088989 0.003797508508185004 0.09545913890996188 0.995426105608897 -0.003797508508679782 -0.09545913890996352 0.9954261056088989 -0.003797508508185004 -0.09545913890996188 -0.8644621486123307 -0.4932898625211804 0.09680033652001349 -0.86446214861241 -0.4932898625210417 0.09680033652001217 0.86446214861241 0.4932898625210417 -0.09680033652001217 0.8644621486123307 0.4932898625211804 -0.09680033652001349 -0.9626570284930645 -0.2533668368679279 0.09537657714787381 -0.962657028492936 -0.2533668368684147 0.09537657714787512 0.9626570284930645 0.2533668368679279 -0.09537657714787381 0.962657028492936 0.2533668368684147 -0.09537657714787512</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10263\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10261\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10264\">12.53725838818362 225.4892446008613 12.2498647599326 225.4892446130067 12.48872516085417 228.6531105829426 12.29839825472634 228.6531105909863 5.343687939030391 225.7591278309076 5.056294310779311 225.7591278421442 5.295154701671386 228.9229938128362 5.104827795543537 228.9229938202776 18.88622808766767 225.0116203320736 18.59883445941654 225.0116203443058 18.83769486125459 228.1754863141679 18.64736795512694 228.1754863222702 -2.25278657771019 228.9667438436894 -2.204253321890915 225.8028778620441 -2.443113483837863 228.9667438500205 -2.491646950142197 225.8028778716052 23.71906510764396 227.5226703734275 23.90939201377182 227.5226703658241 23.67053162019358 224.3588043953374 23.95792524844459 224.3588043838558 -9.640718949022119 228.781379126984 -9.592185667571089 225.617513145733 -9.831045855100431 228.7813791317724 -9.879579295773196 225.6175131529639 27.16786193927637 226.7391511032587 27.35818884540406 226.7391510966733 27.11932846869918 223.5752851249092 27.40672209695042 223.5752851149623 -16.3651670238792 228.3795319284787 -16.31663371137148 225.2156659477043 -16.55549393005325 228.3795319314002 -16.60402733966814 225.2156659521153 28.75872865283827 225.8783240536661 28.94905555896603 225.8783240485388 28.71019520659747 222.7144580749417 28.99758883484849 222.7144580672048 -21.96787077136475 227.7885874691505 -21.91933742449003 224.6247214889032 -22.15819767753861 227.7885874700031 -22.20673105278668 224.6247214901918 28.38325031718755 224.9988531321514 28.5735772233153 224.9988531288423 28.33471690108787 221.8349871529683 28.62211052933907 221.8349871479681 -26.06701518332812 227.0488176680224 -26.01848180111968 223.8849516883178 -26.25734208940646 227.0488176667493 -26.30587542932193 223.8849516863969 26.06701516397359 224.1606727724046 26.25734207010139 224.1606727711315 26.018481781766 220.9968067926991 26.30587541001709 220.9968067907784 -28.38325033826812 226.2106366692144 -28.33471692216835 223.0467706900307 -28.57357724439591 226.2106366659048 -28.62211055041948 223.0467706850324 21.96787079095049 223.4209035167261 22.15819769707827 223.4209035175809 21.91933744407578 220.2570375364797 22.20673107232685 220.2570375377683 -28.75872863810884 225.3311651866917 -28.71019519186801 222.1672992079703 -28.94905554423657 225.3311651815669 -28.99758882011917 222.1672992002325 16.31663379658378 219.6660933819002 16.36516710909249 222.8299593626752 16.60402742483498 219.6660933863119 16.55549401522022 222.8299593655947 -27.16786186074606 224.470337804808 -27.11932839016876 221.3064718264602 -27.35818876687379 224.4703377982214 -27.40672201842002 221.3064718165124 9.592185827429923 219.264246165804 9.640719108881005 222.428112147053 9.879579455680943 219.2642461730342 9.831046015008804 222.428112151841 -23.71906495440804 223.6868185204022 -23.67053146695797 220.5229525423119 -23.90939186053581 223.6868185127979 -23.95792509520901 220.522952530831 2.204253545572414 219.0788811134015 2.252786801391344 222.2427470950439 2.491647173823572 219.0788811229621 2.443113707519133 222.242747101377 -18.83769464242372 223.0340028713022 -18.64736773629596 223.0340028794022 -18.88622786883678 219.8701368892069 -18.59883424058569 219.8701369014396 -5.295154442187396 222.2864965619701 -5.104827536059584 222.2864965694116 -5.343687679546667 219.1226305800431 -5.056294051295501 219.1226305912794 -12.48872490318438 222.5563791501684 -12.29839799705661 222.5563791582121 -12.53725813051391 219.3925131680873 -12.24986450226288 219.3925131802338</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10264\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10260\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10258\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10259\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10260\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 2 9 2 8 0 3 12 1 12 3 13 8 16 17 16 8 9 20 13 21 13 20 12 17 24 25 24 17 16 28 21 29 21 28 20 25 32 33 32 25 24 36 29 37 29 36 28 33 40 41 40 33 32 44 37 45 37 44 36 41 48 49 48 41 40 52 45 53 45 52 44 49 56 57 56 49 48 60 53 61 53 60 52 57 64 65 64 57 56 60 68 69 68 60 61 65 72 73 72 65 64 69 76 77 76 69 68 73 80 81 80 73 72 77 84 85 84 77 76 80 88 81 88 80 89 92 84 93 84 92 85 89 93 88 93 89 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10260\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10261\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 5 4 10 5 7 6 11 7 7 6 10 5 14 8 4 9 15 10 6 11 15 10 4 9 11 12 10 13 18 14 19 15 18 14 10 13 15 16 22 17 14 18 23 19 14 18 22 17 18 20 19 21 26 22 27 23 26 22 19 21 22 24 30 25 23 26 31 27 23 26 30 25 26 28 27 29 34 30 35 31 34 30 27 29 30 32 38 33 31 34 39 35 31 34 38 33 34 36 35 37 42 38 43 39 42 38 35 37 38 40 46 41 39 42 47 43 39 42 46 41 42 44 43 45 50 46 51 47 50 46 43 45 46 48 54 49 47 50 55 51 47 50 54 49 50 52 51 53 58 54 59 55 58 54 51 53 54 56 62 57 55 58 63 59 55 58 62 57 58 60 59 61 66 62 67 63 66 62 59 61 63 64 62 65 70 66 71 67 70 66 62 65 66 68 67 69 74 70 75 71 74 70 67 69 70 72 71 73 78 74 79 75 78 74 71 73 74 76 75 77 82 78 83 79 82 78 75 77 78 80 79 81 86 82 87 83 86 82 79 81 90 84 82 85 91 86 83 87 91 86 82 85 87 88 94 89 86 90 95 91 86 90 94 89 94 92 90 93 95 94 91 95 95 94 90 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10265\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10266\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10270\">-57.14419571912231 188.8272496995066 2654.32531380866 -45.81130085129985 183.2782481026703 2601.852339337464 -55.99289716847466 184.6624940709228 2601.630733151631 -45.84262380707378 187.2907366747507 2654.571296674949 -45.84262380707378 187.2907366747507 2654.571296674949 -57.14419571912231 188.8272496995066 2654.32531380866 -45.81130085129985 183.2782481026703 2601.852339337464 -55.99289716847466 184.6624940709228 2601.630733151631 -36.33463268892069 179.3053673271548 2602.050148972889 -35.32352214685102 182.8808390139334 2654.790865370263 -35.32352214685102 182.8808390139334 2654.790865370263 -36.33463268892069 179.3053673271548 2602.050148972889 -68.45805443391714 187.3856672647814 2654.069680097253 -66.18556267732015 183.3637711567576 2601.400432510645 -68.45805443391714 187.3856672647814 2654.069680097253 -66.18556267732015 183.3637711567576 2601.400432510645 -28.20871195566656 173.0145970037141 2602.210681658062 -26.30375013295816 175.8980839549341 2654.969056650882 -26.30375013295816 175.8980839549341 2654.969056650882 -28.20871195566656 173.0145970037141 2602.210681658062 -79.01317917708161 183.0642308311562 2653.821816555694 -75.69468406758665 179.4705851805122 2601.177132022824 -79.01317917708161 183.0642308311562 2653.821816555694 -75.69468406758665 179.4705851805122 2601.177132022824 -19.39799032227938 166.8183347154908 2655.093727075537 -21.98730672080069 164.8346427339282 2602.322997355923 -19.39799032227938 166.8183347154908 2655.093727075537 -21.98730672080069 164.8346427339282 2602.322997355923 -88.09025564055332 176.1574391500959 2653.598614674824 -83.87223043108179 173.2482503326917 2600.976049247172 -88.09025564055332 176.1574391500959 2653.598614674824 -83.87223043108179 173.2482503326917 2600.976049247172 -15.07685883357681 156.2603612012616 2655.156380560831 -18.09439546972203 155.3229548832569 2602.379441937206 -15.07685883357681 156.2603612012616 2655.156380560831 -18.09439546972203 155.3229548832569 2602.379441937206 -95.07069606389769 167.135978660623 2653.415285293708 -90.16091549717248 165.1208084502711 2600.810887642605 -95.07069606389769 167.135978660623 2653.415285293708 -90.16091549717248 165.1208084502711 2600.810887642605 -16.79527367083483 145.1277392599087 2602.376168797033 -13.63483363681394 144.9436718593632 2655.15274737507 -16.79527367083483 145.1277392599087 2602.376168797033 -13.63483363681394 144.9436718593632 2655.15274737507 -99.47879496801352 156.6146469864499 2653.284322006997 -94.13217577115142 155.6421312663048 2600.692902699553 -99.47879496801352 156.6146469864499 2653.284322006997 -94.13217577115142 155.6421312663048 2600.692902699553 -18.17847432784697 134.9437829602363 2602.313400994381 -15.170186366096 133.6394803667563 2655.083075114153 -18.17847432784697 134.9437829602363 2602.313400994381 -15.170186366096 133.6394803667563 2655.083075114153 -95.51537642816788 145.4581749666373 2600.630134896834 -101.0141476972954 145.3104554938362 2653.214649746004 -95.51537642816788 145.4581749666373 2600.630134896834 -101.0141476972954 145.3104554938362 2653.214649746004 -22.14973460074612 125.4651057788686 2602.195416051291 -19.57828526911385 123.1181486951684 2654.952111827424 -22.14973460074612 125.4651057788686 2602.195416051291 -19.57828526911385 123.1181486951684 2654.952111827424 -94.21625462928796 135.2629593432911 2600.626861756666 -99.57212250053613 133.9937661519427 2653.211016560272 -94.21625462928796 135.2629593432911 2600.626861756666 -99.57212250053613 133.9937661519427 2653.211016560272 -28.43841966844389 117.3376638943853 2602.030254446698 -26.55872569407893 114.0966882036376 2654.768782446332 -28.43841966844389 117.3376638943853 2602.030254446698 -26.55872569407893 114.0966882036376 2654.768782446332 -90.32334337820021 125.7512714926221 2600.683306337958 -95.25099101184105 123.4357926377216 2653.273670045553 -90.32334337820021 125.7512714926221 2600.683306337958 -95.25099101184105 123.4357926377216 2653.273670045553 -35.63580215962543 107.1898965209731 2654.545580565344 -36.61596603401881 111.1153290449779 2601.82917167105 -35.63580215962543 107.1898965209731 2654.545580565344 -36.61596603401881 111.1153290449779 2601.82917167105 -84.10193814333979 117.5713172228352 2600.795622035821 -88.34523120115591 114.3560433982722 2653.398340470174 -84.10193814333979 117.5713172228352 2600.795622035821 -88.34523120115591 114.3560433982722 2653.398340470174 -46.19092690019306 102.868460088421 2654.297717023801 -46.12508742168575 107.2221430697977 2601.605871183218 -46.19092690019306 102.868460088421 2654.297717023801 -46.12508742168575 107.2221430697977 2601.605871183218 -75.97601741008862 111.2805468994042 2600.956154720978 -79.32545918725782 107.3732883392686 2653.576531750794 -79.32545918725782 107.3732883392686 2653.576531750794 -75.97601741008862 111.2805468994042 2600.956154720978 -57.50478561499585 101.4268776536993 2654.042083312435 -56.3177529305317 105.9234201556232 2601.375570542325 -57.50478561499585 101.4268776536993 2654.042083312435 -56.3177529305317 105.9234201556232 2601.375570542325 -66.49934924771083 107.3076661238823 2601.153964356472 -68.80635752703847 102.9633906784516 2653.796100446156 -68.80635752703847 102.9633906784516 2653.796100446156 -66.49934924771083 107.3076661238823 2601.153964356472</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10270\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10267\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10271\">0.005929221332046419 0.996883875650029 -0.07865991865857185 0.2636727563485876 0.9618421751076214 -0.07305003589169806 0.005929221331762755 0.9968838756500302 -0.07865991865857813 0.2636727563486317 0.9618421751076092 -0.07305003589169708 -0.2636727563486317 -0.9618421751076092 0.07305003589169708 -0.005929221332046419 -0.996883875650029 0.07865991865857185 -0.2636727563485876 -0.9618421751076214 0.07305003589169806 -0.005929221331762755 -0.9968838756500302 0.07865991865857813 0.5035712826958502 0.8612700935415953 -0.06804255444137848 0.5035712826956275 0.8612700935417251 -0.06804255444138302 -0.5035712826956275 -0.8612700935417251 0.06804255444138302 -0.5035712826958502 -0.8612700935415953 0.06804255444137848 -0.2520945263841902 0.9640071611861737 -0.0844898985021602 -0.252094526384135 0.9640071611861882 -0.08448989850215896 0.2520945263841902 -0.9640071611861737 0.0844898985021602 0.252094526384135 -0.9640071611861882 0.08448989850215896 0.7092761122537825 0.7020214521075886 -0.0639787258931608 0.7092761122536508 0.7020214521077215 -0.06397872589316331 -0.7092761122536508 -0.7020214521077215 0.06397872589316331 -0.7092761122537825 -0.7020214521075886 0.0639787258931608 -0.4928145947977613 0.8654525254752743 -0.09014267193060208 -0.4928145947971267 0.8654525254756372 -0.09014267193058687 0.4928145947977613 -0.8654525254752743 0.09014267193060208 0.4928145947971267 -0.8654525254756372 0.09014267193058687 0.8667688008314249 0.4949487825485272 -0.0611354934468059 0.8667688008312425 0.4949487825488462 -0.06113549344680894 -0.8667688008314249 -0.4949487825485272 0.0611354934468059 -0.8667688008312425 -0.4949487825488462 0.06113549344680894 -0.6998263090544631 0.7079363040720449 -0.09523301177648474 -0.6998263090543576 0.7079363040721498 -0.09523301177648211 0.6998263090544631 -0.7079363040720449 0.09523301177648474 0.6998263090543576 -0.7079363040721498 0.09523301177648211 0.96531648197099 0.2541637450919541 -0.05970661869494423 0.9653164819709449 0.2541637450921254 -0.0597066186949447 -0.96531648197099 -0.2541637450919541 0.05970661869494423 -0.9653164819709449 -0.2541637450921254 0.0597066186949447 -0.8590221629311183 0.5021929671570907 -0.09941401979147896 -0.8590221629311118 0.5021929671571019 -0.09941401979147876 0.8590221629311183 -0.5021929671570907 0.09941401979147896 0.8590221629311118 -0.5021929671571019 0.09941401979147876 0.9982032940612413 -0.003924557876945321 -0.05978947709051928 0.9982032940612411 -0.003924557876960935 -0.05978947709051933 -0.9982032940612413 0.003924557876945321 0.05978947709051928 -0.9982032940612411 0.003924557876960935 0.05978947709051933 -0.9595532220693945 0.2622435831348246 -0.1024007671887836 -0.9595532220694421 0.2622435831346502 -0.1024007671887852 0.9595532220693945 -0.2622435831348246 0.1024007671887836 0.9595532220694421 -0.2622435831346502 0.1024007671887852 0.963188055205736 -0.2617278350221176 -0.06137842197081167 0.9631880552057628 -0.2617278350220196 -0.06137842197081078 -0.963188055205736 0.2617278350221176 0.06137842197081167 -0.9631880552057628 0.2617278350220196 0.06137842197081078 -0.9945684609248868 0.004440305990349122 -0.1039897120690972 -0.9945684609248852 0.004440305990773379 -0.1039897120690959 0.9945684609248868 -0.004440305990349122 0.1039897120690972 0.9945684609248852 -0.004440305990773379 0.1039897120690959 0.8626569960670807 -0.5016772190450058 -0.06436516936814779 0.8626569960671713 -0.5016772190448501 -0.06436516936814526 -0.8626569960670807 0.5016772190450058 0.06436516936814779 -0.8626569960671713 0.5016772190448501 0.06436516936814526 -0.961681648834762 -0.253647996978755 -0.1040725704646464 -0.9616816488346889 -0.2536479969790333 -0.1040725704646456 0.961681648834762 0.253647996978755 0.1040725704646464 0.9616816488346889 0.2536479969790333 0.1040725704646456 0.7034611421906643 -0.707420555959446 -0.06854617738309358 0.7034611421903698 -0.7074205559597379 -0.06854617738310104 -0.7034611421906643 0.707420555959446 0.06854617738309358 -0.7034611421903698 0.7074205559597379 0.06854617738310104 -0.8631339676948462 -0.4944330344361836 -0.1026436957127899 -0.8631339676947211 -0.4944330344364027 -0.1026436957127879 0.8631339676948462 0.4944330344361836 0.1026436957127899 0.8631339676947211 0.4944330344364027 0.1026436957127879 0.4964494279338276 -0.8649367773626935 -0.07363651722897925 0.4964494279340626 -0.8649367773625593 -0.07363651722897362 -0.4964494279338276 0.8649367773626935 0.07363651722897925 -0.4964494279340626 0.8649367773625593 0.07363651722897362 -0.705641279116963 -0.7015057039953182 -0.09980046326650896 -0.7056412791172113 -0.7015057039950674 -0.09980046326651365 0.705641279116963 0.7015057039953182 0.09980046326650896 0.7056412791172113 0.7015057039950674 0.09980046326651365 0.2557293595202557 -0.9634914130735132 -0.07928929065746743 0.2557293595203442 -0.96349141307349 -0.07928929065746539 -0.2557293595202557 0.9634914130735132 0.07928929065746743 -0.2557293595203442 0.96349141307349 0.07928929065746539 -0.4999364495592251 -0.8607543454290147 -0.09573663471829814 -0.4999364495590796 -0.8607543454290996 -0.09573663471829519 0.4999364495590796 0.8607543454290996 0.09573663471829519 0.4999364495592251 0.8607543454290147 0.09573663471829814 -0.002294388195969955 -0.9963681275372959 -0.08511927050103942 -0.002294388195810121 -0.9963681275372965 -0.08511927050103588 0.002294388195969955 0.9963681275372959 0.08511927050103942 0.002294388195810121 0.9963681275372965 0.08511927050103588 -0.2600379232125861 -0.9613264269947912 -0.09072915326792064 -0.2600379232120319 -0.9613264269949422 -0.09072915326790879 0.2600379232120319 0.9613264269949422 0.09072915326790879 0.2600379232125861 0.9613264269947912 0.09072915326792064</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10271\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10269\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10272\">28.74826098488274 238.3014859125453 28.95952385068437 238.3014859068774 28.75872893845389 237.3224410722437 28.94905584458174 237.3224410671377 27.15739430994008 237.7014819565876 27.36865717574171 237.7014819493006 27.167862256007 236.7224371162058 27.3581891621349 236.7224371096408 28.37278256479581 238.9144849972787 28.58404543059736 238.9144849936166 28.38325052766109 237.9354401570767 28.57357743378903 237.9354401537761 23.70859747925837 237.1553624406739 23.9198603450601 237.1553624322642 23.7190654201223 236.1763176002353 23.90939232625042 236.1763175926602 26.05654728101493 239.4987042801647 26.26781014681649 239.4987042787578 26.06701525433108 238.519659440073 26.25734216045911 238.5196594388068 18.84816316842804 236.7003444998705 18.8376951470713 235.7212996602925 18.63690030262658 236.7003445088305 18.64736824094338 235.721299668364 21.95740274049862 240.0143301187201 22.16866560630021 240.014330119666 21.96787072471004 239.0352852787461 22.15819763083794 239.0352852795967 12.49919343161278 236.3674368416642 12.48872541053846 235.3883920020826 12.28793056581107 236.3674368505639 12.29839850441059 235.3883920100992 16.35469887220255 240.4262234096485 16.56596173800419 240.4262234128781 16.36516686701109 239.447178569786 16.55549377313903 239.4471785726963 5.295154914737767 235.2002816702606 5.104828008609704 235.2002816776771 5.305622932719118 236.1793265098766 5.094360066917306 236.1793265181058 9.630250690433178 240.7063142752637 9.841513556234759 240.7063142805623 9.640718694818423 239.7272694355045 9.83104560094645 239.7272694402767 -2.252786398905763 235.16978800927 -2.443113305033726 235.1697880155787 -2.24231838661669 236.1488328489438 -2.453581252418181 236.148832855947 2.252786243571716 239.8564701477907 2.242318231282551 240.8355149874669 2.443113149699608 239.8564701540983 2.453581097084176 240.8355149944687 -9.6407188058473 235.2989890556668 -9.831045711923228 235.2989890604377 -9.63025080146196 236.2780338954256 -9.841513667211538 236.2780339007232 -5.295155094951428 239.8259759248398 -5.305623112932875 240.8050207644554 -5.10482818882342 239.8259759322564 -5.094360247131162 240.8050207726851 -16.36516692613713 235.5790799384391 -16.55549383231349 235.5790799413497 -16.35469893132839 236.5581247783022 -16.56596179717853 236.5581247815329 -12.48872558952968 239.637864953586 -12.49919361060385 240.616909793166 -12.29839868340178 239.6378649616028 -12.28793074480234 240.6169098020655 -21.95740275409401 236.97001776526 -21.96787073830551 235.9909729252837 -22.16866561994419 236.9700177662047 -22.15819764448185 235.9909729261352 -18.83769529905142 239.304956749664 -18.84816332040817 240.2840015892419 -18.64736839292355 239.3049567577355 -18.63690045460655 240.2840015982011 -26.05654726766326 237.4856430605164 -26.06701524097948 236.5065982204239 -26.26781013341279 237.4856430591086 -26.2573421470555 236.5065982191564 -23.70859758568598 239.8289833595479 -23.71906552655018 238.8499385191079 -23.91986045148783 239.8289833511382 -23.90939243267814 238.8499385115332 -28.37278255015556 238.0698617068175 -28.38325051302114 237.090816866614 -28.58404541595724 238.0698617031561 -28.57357741914908 237.0908168633151 -27.15739436448744 239.2828638577085 -27.16786231055449 238.3038190173247 -27.36865723028902 239.2828638504206 -27.35818921668243 238.3038190107584 -28.74826099511421 238.6828602327085 -28.75872894868543 237.7038153924052 -28.95952386091573 238.6828602270407 -28.94905585481339 237.7038153872988</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10272\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10268\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10266\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10267\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10268\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 8 1 8 3 9 12 2 13 2 12 0 9 16 8 16 9 17 20 13 21 13 20 12 16 24 25 24 16 17 28 21 29 21 28 20 25 32 33 32 25 24 36 29 37 29 36 28 40 32 41 32 40 33 44 37 45 37 44 36 48 41 49 41 48 40 44 52 53 52 44 45 56 49 57 49 56 48 53 60 61 60 53 52 64 57 65 57 64 56 61 68 69 68 61 60 64 72 73 72 64 65 69 76 77 76 69 68 73 80 81 80 73 72 84 77 76 77 84 85 81 88 89 88 81 80 92 85 84 85 92 93 89 93 92 93 89 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10268\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10269\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 4 5 11 6 6 7 11 6 4 5 5 8 14 9 7 10 15 11 7 10 14 9 18 12 10 13 19 14 11 15 19 14 10 13 14 16 22 17 15 18 23 19 15 18 22 17 18 20 19 21 26 22 27 23 26 22 19 21 22 24 30 25 23 26 31 27 23 26 30 25 26 28 27 29 34 30 35 31 34 30 27 29 30 32 38 33 31 34 39 35 31 34 38 33 35 36 42 37 34 38 43 39 34 38 42 37 38 40 46 41 39 42 47 43 39 42 46 41 42 44 50 45 43 46 51 47 43 46 50 45 47 48 46 49 54 50 55 51 54 50 46 49 50 52 58 53 51 54 59 55 51 54 58 53 54 56 55 57 62 58 63 59 62 58 55 57 58 60 66 61 59 62 67 63 59 62 66 61 62 64 63 65 70 66 71 67 70 66 63 65 67 68 66 69 74 70 75 71 74 70 66 69 70 72 71 73 78 74 79 75 78 74 71 73 74 76 75 77 82 78 83 79 82 78 75 77 86 80 87 81 79 82 78 83 79 82 87 81 82 84 83 85 90 86 91 87 90 86 83 85 94 88 95 89 86 90 87 91 86 90 95 89 90 92 91 93 94 94 95 95 94 94 91 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10273\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10274\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10278\">-36.26411809394153 226.6281108096395 2708.070710010083 -14.71000209223075 218.2537456356824 2655.359742381279 -35.08483864114442 226.7954393029675 2654.934451665045 -15.88928154503401 218.0864171423629 2708.496000726176 -15.88928154503401 218.0864171423629 2708.496000726176 -36.26411809394153 226.6281108096395 2708.070710010083 -14.71000209223075 218.2537456356824 2655.359742381279 -35.08483864114442 226.7954393029675 2654.934451665045 2.760727484073186 204.7285894404378 2655.704887654581 1.581448031269247 204.5612609471289 2708.841145999477 1.581448031269247 204.5612609471289 2708.841145999477 2.760727484073186 204.7285894404378 2655.704887654581 -99.33411255550914 218.6089640204081 2653.482755938656 -101.0141476972954 145.3104554938362 2653.214649746004 -116.9158372368402 205.2309440977293 2653.050427971037 -99.47879496801352 156.6146469864499 2653.284322006997 -95.07069606389769 167.135978660623 2653.415285293708 -78.88950156664669 226.9793138692425 2653.96285198767 -88.09025564055332 176.1574391500959 2653.598614674824 -79.01317917708161 183.0642308311562 2653.821816555694 -68.45805443391714 187.3856672647814 2654.069680097253 -56.97527072285629 229.7715681346829 2654.457998365637 -57.14419571912231 188.8272496995066 2654.32531380866 -45.84262380707378 187.2907366747507 2654.571296674949 -35.08483864114442 226.7954393029675 2654.934451665045 -35.32352214685102 182.8808390139334 2654.790865370263 -26.30375013295816 175.8980839549341 2654.969056650882 -14.71000209223075 218.2537456356824 2655.359742381279 -19.39799032227938 166.8183347154908 2655.093727075537 -15.07685883357681 156.2603612012616 2655.156380560831 -13.63483363681394 144.9436718593632 2655.15274737507 2.760727484073186 204.7285894404378 2655.704887654581 2.266855902219277 85.02318325600311 2655.316969150079 15.78752879579292 102.4971833050917 2655.672066599938 16.13674873890091 187.1416877605803 2655.946366404916 24.32573838367352 122.8763392478057 2655.92573422746 24.50650792865508 166.6915588818397 2656.067722254702 27.29961979622271 144.771845291879 2656.060685003093 -138.9747197177771 167.3777881054 2652.441662893587 -139.1554892627687 123.5625684713715 2652.299674866476 -141.9486011303277 145.4822820613287 2652.306712117945 -130.7857300730095 103.1124395926271 2652.42103071617 -130.4365101288076 187.7569440507091 2652.695330521206 -117.4097088181804 85.52553791275264 2652.662509466587 -99.93897924187172 72.00038171752101 2653.007654739795 -99.57212250053613 133.9937661519427 2653.211016560272 -79.56414269296511 63.45868805024082 2653.43294545599 -95.25099101184105 123.4357926377216 2653.273670045553 -88.34523120115591 114.3560433982722 2653.398340470174 -79.32545918725782 107.3732883392686 2653.576531750794 -57.67371061125004 60.48255921852224 2653.909398755481 -68.80635752703847 102.9633906784516 2653.796100446156 -57.50478561499585 101.4268776536993 2654.042083312435 -35.75947976745874 63.27481348395756 2654.404545133497 -46.19092690019306 102.868460088421 2654.297717023801 -35.63580215962543 107.1898965209731 2654.545580565344 -15.31486878121405 71.64516333172541 2654.884641182414 -26.55872569407893 114.0966882036376 2654.768782446332 -19.57828526911385 123.1181486951684 2654.952111827424 -15.170186366096 133.6394803667563 2655.083075114153 -13.63483363681394 144.9436718593632 2655.15274737507 -15.170186366096 133.6394803667563 2655.083075114153 2.266855902219277 85.02318325600311 2655.316969150079 -15.31486878121405 71.64516333172541 2654.884641182414 -19.57828526911385 123.1181486951684 2654.952111827424 -26.55872569407893 114.0966882036376 2654.768782446332 -35.63580215962543 107.1898965209731 2654.545580565344 -35.75947976745874 63.27481348395756 2654.404545133497 -46.19092690019306 102.868460088421 2654.297717023801 -57.50478561499585 101.4268776536993 2654.042083312435 -57.67371061125004 60.48255921852224 2653.909398755481 -68.80635752703847 102.9633906784516 2653.796100446156 -79.32545918725782 107.3732883392686 2653.576531750794 -79.56414269296511 63.45868805024082 2653.43294545599 -88.34523120115591 114.3560433982722 2653.398340470174 -95.25099101184105 123.4357926377216 2653.273670045553 -99.57212250053613 133.9937661519427 2653.211016560272 -99.93897924187172 72.00038171752101 2653.007654739795 -101.0141476972954 145.3104554938362 2653.214649746004 -116.9158372368402 205.2309440977293 2653.050427971037 -117.4097088181804 85.52553791275264 2652.662509466587 -130.4365101288076 187.7569440507091 2652.695330521206 -130.7857300730095 103.1124395926271 2652.42103071617 -138.9747197177771 167.3777881054 2652.441662893587 -139.1554892627687 123.5625684713715 2652.299674866476 -141.9486011303277 145.4822820613287 2652.306712117945 27.29961979622271 144.771845291879 2656.060685003093 24.50650792865508 166.6915588818397 2656.067722254702 24.32573838367352 122.8763392478057 2655.92573422746 16.13674873890091 187.1416877605803 2655.946366404916 15.78752879579292 102.4971833050917 2655.672066599938 2.760727484073186 204.7285894404378 2655.704887654581 -14.71000209223075 218.2537456356824 2655.359742381279 -15.07685883357681 156.2603612012616 2655.156380560831 -19.39799032227938 166.8183347154908 2655.093727075537 -26.30375013295816 175.8980839549341 2654.969056650882 -35.08483864114442 226.7954393029675 2654.934451665045 -35.32352214685102 182.8808390139334 2654.790865370263 -45.84262380707378 187.2907366747507 2654.571296674949 -56.97527072285629 229.7715681346829 2654.457998365637 -57.14419571912231 188.8272496995066 2654.32531380866 -68.45805443391714 187.3856672647814 2654.069680097253 -78.88950156664669 226.9793138692425 2653.96285198767 -79.01317917708161 183.0642308311562 2653.821816555694 -88.09025564055332 176.1574391500959 2653.598614674824 -95.07069606389769 167.135978660623 2653.415285293708 -99.33411255550914 218.6089640204081 2653.482755938656 -99.47879496801352 156.6146469864499 2653.284322006997 -58.15455017565682 229.6042396413592 2707.594256710485 -56.97527072285629 229.7715681346829 2654.457998365637 -58.15455017565682 229.6042396413592 2707.594256710485 -56.97527072285629 229.7715681346829 2654.457998365637 -140.3347687155674 123.3952399780394 2705.435933211396 -140.1539991705863 167.2104596120716 2705.57792123855 -143.1278805831325 145.3149535680019 2705.442970462957 -131.9650095258207 102.9451110992993 2705.557289061082 -137.2238728764494 145.2901708900013 2705.573923005371 -134.625629278707 124.899739643506 2705.567376724956 -126.8398067766179 105.8763639423443 2705.6802658875 -118.5889882709969 85.3582094194385 2705.798767811531 -114.3969963070008 89.51645540292037 2705.904897283153 -101.1182586946836 71.83305322418839 2706.143913084754 -98.14515484066351 76.93491475618012 2706.225962653694 -80.74342214578269 63.2913595569127 2706.569203800957 -79.191818516078 68.98915320521465 2706.621581924452 -58.85299006406922 60.31523072518925 2707.045657100427 -58.82862588191256 66.22066126873352 2707.064794296117 -36.93875922027291 63.10748499064013 2707.540803478494 -38.44329486441484 68.81810709704803 2707.525395578014 -19.42505208668763 76.604479048388 2707.971996553679 -16.49414823403299 71.4778348383982 2708.020899527352 -3.069959357752168 89.04914874550454 2708.374162105114 1.087576449405788 84.85585476267542 2708.453227495 9.507410775929202 105.3040325122687 2708.704485314211 14.60824934298694 102.3298548117814 2708.808324944785 17.4499313227268 124.2613868774068 2708.940455200211 23.14645893086322 122.7090107544817 2709.061992572384 20.21633263672356 144.6292994765607 2709.06599080561 -131.6157895816186 187.5896155573848 2705.831588866158 -134.4574715624506 165.6580834891462 2705.699458610725 -126.5149510145641 184.6154378568943 2705.935428496827 -118.0951166896614 205.0636156044095 2706.186686315901 -113.9375808824989 200.8703216215703 2706.265751705903 -100.5133920083129 218.4416355270903 2706.619014283568 -97.58248815565707 213.3149913171026 2706.667917257186 -80.06878101946245 226.8119853759221 2707.099110332585 -78.56424537532053 221.1013632695122 2707.114518233086 -58.15455017565682 229.6042396413592 2707.594256710485 -58.1789143578103 223.6988090978278 2707.57511951477 -37.81572172364145 220.9303171613429 2708.018331886507 -36.26411809394153 226.6281108096395 2708.070710010083 -18.8623853990639 212.9845556103841 2708.413951157287 -15.88928154503401 218.0864171423629 2708.496000726176 -2.610543932717746 200.4030149636404 2708.735016527806 1.581448031269247 204.5612609471289 2708.841145999477 9.832266536890529 184.0431064242169 2708.95964792349 14.95746928609856 186.9743592672631 2709.082624749875 17.61808903898805 165.0197307230441 2709.072537086093 23.32722847584319 166.524230388517 2709.203980599626 26.12034034341332 144.6045167985487 2709.196943348026 26.12034034341332 144.6045167985487 2709.196943348026 23.14645893086322 122.7090107544817 2709.061992572384 23.32722847584319 166.524230388517 2709.203980599626 20.21633263672356 144.6292994765607 2709.06599080561 17.61808903898805 165.0197307230441 2709.072537086093 14.95746928609856 186.9743592672631 2709.082624749875 9.832266536890529 184.0431064242169 2708.95964792349 1.581448031269247 204.5612609471289 2708.841145999477 -2.610543932717746 200.4030149636404 2708.735016527806 -15.88928154503401 218.0864171423629 2708.496000726176 -18.8623853990639 212.9845556103841 2708.413951157287 -36.26411809394153 226.6281108096395 2708.070710010083 -37.81572172364145 220.9303171613429 2708.018331886507 -58.15455017565682 229.6042396413592 2707.594256710485 -58.1789143578103 223.6988090978278 2707.57511951477 -78.56424537532053 221.1013632695122 2707.114518233086 -80.06878101946245 226.8119853759221 2707.099110332585 -97.58248815565707 213.3149913171026 2706.667917257186 -100.5133920083129 218.4416355270903 2706.619014283568 -113.9375808824989 200.8703216215703 2706.265751705903 -118.0951166896614 205.0636156044095 2706.186686315901 -126.5149510145641 184.6154378568943 2705.935428496827 -131.6157895816186 187.5896155573848 2705.831588866158 -134.4574715624506 165.6580834891462 2705.699458610725 -137.2238728764494 145.2901708900013 2705.573923005371 -140.1539991705863 167.2104596120716 2705.57792123855 17.4499313227268 124.2613868774068 2708.940455200211 14.60824934298694 102.3298548117814 2708.808324944785 9.507410775929202 105.3040325122687 2708.704485314211 1.087576449405788 84.85585476267542 2708.453227495 -3.069959357752168 89.04914874550454 2708.374162105114 -16.49414823403299 71.4778348383982 2708.020899527352 -19.42505208668763 76.604479048388 2707.971996553679 -36.93875922027291 63.10748499064013 2707.540803478494 -38.44329486441484 68.81810709704803 2707.525395578014 -58.82862588191256 66.22066126873352 2707.064794296117 -58.85299006406922 60.31523072518925 2707.045657100427 -79.191818516078 68.98915320521465 2706.621581924452 -80.74342214578269 63.2913595569127 2706.569203800957 -98.14515484066351 76.93491475618012 2706.225962653694 -101.1182586946836 71.83305322418839 2706.143913084754 -114.3969963070008 89.51645540292037 2705.904897283153 -118.5889882709969 85.3582094194385 2705.798767811531 -126.8398067766179 105.8763639423443 2705.6802658875 -131.9650095258207 102.9451110992993 2705.557289061082 -134.625629278707 124.899739643506 2705.567376724956 -140.3347687155674 123.3952399780394 2705.435933211396 -143.1278805831325 145.3149535680019 2705.442970462957 16.13674873890091 187.1416877605803 2655.946366404916 14.95746928609856 186.9743592672631 2709.082624749875 16.13674873890091 187.1416877605803 2655.946366404916 14.95746928609856 186.9743592672631 2709.082624749875 -143.1278805831325 145.3149535680019 2705.442970462957 -139.1554892627687 123.5625684713715 2652.299674866476 -140.3347687155674 123.3952399780394 2705.435933211396 -141.9486011303277 145.4822820613287 2652.306712117945 -141.9486011303277 145.4822820613287 2652.306712117945 -143.1278805831325 145.3149535680019 2705.442970462957 -139.1554892627687 123.5625684713715 2652.299674866476 -140.3347687155674 123.3952399780394 2705.435933211396 -140.1539991705863 167.2104596120716 2705.57792123855 -138.9747197177771 167.3777881054 2652.441662893587 -138.9747197177771 167.3777881054 2652.441662893587 -140.1539991705863 167.2104596120716 2705.57792123855 -131.6157895816186 187.5896155573848 2705.831588866158 -130.4365101288076 187.7569440507091 2652.695330521206 -130.4365101288076 187.7569440507091 2652.695330521206 -131.6157895816186 187.5896155573848 2705.831588866158 -118.0951166896614 205.0636156044095 2706.186686315901 -116.9158372368402 205.2309440977293 2653.050427971037 -116.9158372368402 205.2309440977293 2653.050427971037 -118.0951166896614 205.0636156044095 2706.186686315901 -99.33411255550914 218.6089640204081 2653.482755938656 -100.5133920083129 218.4416355270903 2706.619014283568 -100.5133920083129 218.4416355270903 2706.619014283568 -99.33411255550914 218.6089640204081 2653.482755938656 -78.88950156664669 226.9793138692425 2653.96285198767 -80.06878101946245 226.8119853759221 2707.099110332585 -80.06878101946245 226.8119853759221 2707.099110332585 -78.88950156664669 226.9793138692425 2653.96285198767 24.50650792865508 166.6915588818397 2656.067722254702 23.32722847584319 166.524230388517 2709.203980599626 24.50650792865508 166.6915588818397 2656.067722254702 23.32722847584319 166.524230388517 2709.203980599626 27.29961979622271 144.771845291879 2656.060685003093 26.12034034341332 144.6045167985487 2709.196943348026 27.29961979622271 144.771845291879 2656.060685003093 26.12034034341332 144.6045167985487 2709.196943348026 24.32573838367352 122.8763392478057 2655.92573422746 23.14645893086322 122.7090107544817 2709.061992572384 24.32573838367352 122.8763392478057 2655.92573422746 23.14645893086322 122.7090107544817 2709.061992572384 15.78752879579292 102.4971833050917 2655.672066599938 14.60824934298694 102.3298548117814 2708.808324944785 15.78752879579292 102.4971833050917 2655.672066599938 14.60824934298694 102.3298548117814 2708.808324944785 2.266855902219277 85.02318325600311 2655.316969150079 1.087576449405788 84.85585476267542 2708.453227495 2.266855902219277 85.02318325600311 2655.316969150079 1.087576449405788 84.85585476267542 2708.453227495 -16.49414823403299 71.4778348383982 2708.020899527352 -15.31486878121405 71.64516333172541 2654.884641182414 -16.49414823403299 71.4778348383982 2708.020899527352 -15.31486878121405 71.64516333172541 2654.884641182414 -36.93875922027291 63.10748499064013 2707.540803478494 -35.75947976745874 63.27481348395756 2654.404545133497 -36.93875922027291 63.10748499064013 2707.540803478494 -35.75947976745874 63.27481348395756 2654.404545133497 -58.85299006406922 60.31523072518925 2707.045657100427 -57.67371061125004 60.48255921852224 2653.909398755481 -58.85299006406922 60.31523072518925 2707.045657100427 -57.67371061125004 60.48255921852224 2653.909398755481 -80.74342214578269 63.2913595569127 2706.569203800957 -79.56414269296511 63.45868805024082 2653.43294545599 -80.74342214578269 63.2913595569127 2706.569203800957 -79.56414269296511 63.45868805024082 2653.43294545599 -101.1182586946836 71.83305322418839 2706.143913084754 -99.93897924187172 72.00038171752101 2653.007654739795 -101.1182586946836 71.83305322418839 2706.143913084754 -99.93897924187172 72.00038171752101 2653.007654739795 -118.5889882709969 85.3582094194385 2705.798767811531 -117.4097088181804 85.52553791275264 2652.662509466587 -118.5889882709969 85.3582094194385 2705.798767811531 -117.4097088181804 85.52553791275264 2652.662509466587 -131.9650095258207 102.9451110992993 2705.557289061082 -130.7857300730095 103.1124395926271 2652.42103071617 -130.7857300730095 103.1124395926271 2652.42103071617 -131.9650095258207 102.9451110992993 2705.557289061082</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10278\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10275\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10279\">0.2627382146294506 0.9648263911121302 0.008869362258431308 0.5034455859490673 0.8639152194159491 0.01389372699792152 0.2627382146294719 0.9648263911121245 0.008869362258431763 0.5034455859492558 0.8639152194158394 0.01389372699792536 -0.5034455859492558 -0.8639152194158394 -0.01389372699792536 -0.2627382146294506 -0.9648263911121302 -0.008869362258431308 -0.5034455859490673 -0.8639152194159491 -0.01389372699792152 -0.2627382146294719 -0.9648263911121245 -0.008869362258431763 0.7098439725698315 0.7041296532037431 0.01797125720300343 0.7098439725698326 0.704129653203742 0.01797125720300345 -0.7098439725698326 -0.704129653203742 -0.01797125720300345 -0.7098439725698315 -0.7041296532037431 -0.01797125720300343 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 0.02218792451946904 0.003148254615175093 -0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 -0.02218792451946904 -0.003148254615175093 0.9997488607137277 0.004125668178015847 0.9999862387051478 0.003240565138330322 0.004125668178210506 0.999986238705147 0.003240565138334639 -0.004125668178015847 -0.9999862387051478 -0.003240565138330322 -0.004125668178210506 -0.999986238705147 -0.003240565138334639 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 -0.0221879245193484 -0.003148254614985415 0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.0221879245193484 0.003148254614985415 -0.999748860713731 0.8678676655323752 0.4963588147551175 0.02082407592860665 0.867867665532356 0.496358814755151 0.02082407592860634 -0.8678676655323752 -0.4963588147551175 -0.02082407592860665 -0.867867665532356 -0.496358814755151 -0.02082407592860634 -0.9997453049990284 0.004196533475222235 -0.0221746305311082 -0.9667476113080451 -0.2547619433526092 -0.02225776829313336 -0.9667476113080969 -0.2547619433524128 -0.02225776829313388 -0.9997453049990268 0.004196533475552981 -0.02217463053110712 0.9997453049990268 -0.004196533475552981 0.02217463053110712 0.9997453049990284 -0.004196533475222235 0.0221746305311082 0.9667476113080451 0.2547619433526092 0.02225776829313336 0.9667476113080969 0.2547619433524128 0.02225776829313388 -0.9646120083116053 0.2628690234818782 -0.02058032834371585 -0.96461200831157 0.2628690234820079 -0.02058032834371465 0.96461200831157 -0.2628690234820079 0.02058032834371465 0.9646120083116053 -0.2628690234818782 0.02058032834371585 -0.8637419973543786 0.5036274239500429 -0.01758351079028904 -0.8637419973544736 0.5036274239498799 -0.01758351079029167 0.8637419973544736 -0.5036274239498799 0.01758351079029167 0.8637419973543786 -0.5036274239500429 0.01758351079028904 -0.7040093966787113 0.7100644477594467 -0.01338840603465441 -0.7040093966786487 0.7100644477595089 -0.01338840603465282 0.7040093966786487 -0.7100644477595089 0.01338840603465282 0.7040093966787113 -0.7100644477594467 0.01338840603465441 -0.4962997190498211 0.8681117528911493 -0.008280903533132648 -0.4962997190496971 0.86811175289122 -0.008280903533129677 0.4962997190496971 -0.86811175289122 0.008280903533129677 0.4962997190498211 -0.8681117528911493 0.008280903533132648 -0.2547680357418427 0.9669986766857679 -0.002609071140675902 -0.254768035741774 0.9669986766857858 -0.002609071140674323 0.254768035741774 -0.9669986766857858 0.002609071140674323 0.2547680357418427 -0.9669986766857679 0.002609071140675902 0.9667476113080852 0.2547619433524639 0.02225776829306159 0.9667476113080119 0.2547619433527413 0.02225776829306083 -0.9667476113080852 -0.2547619433524639 -0.02225776829306159 -0.9667476113080119 -0.2547619433527413 -0.02225776829306083 0.9997453049990293 -0.004196533475382379 0.02217463053103609 0.9997453049990297 -0.004196533475307375 0.02217463053103634 -0.9997453049990293 0.004196533475382379 -0.02217463053103609 -0.9997453049990297 0.004196533475307375 -0.02217463053103634 0.9646120083116215 -0.262869023481824 0.02058032834365366 0.9646120083115878 -0.2628690234819476 0.02058032834365252 -0.9646120083116215 0.262869023481824 -0.02058032834365366 -0.9646120083115878 0.2628690234819476 -0.02058032834365252 0.8637419973543553 -0.5036274239500839 0.01758351079026657 0.8637419973544172 -0.5036274239499778 0.01758351079026828 -0.8637419973543553 0.5036274239500839 -0.01758351079026657 -0.8637419973544172 0.5036274239499778 -0.01758351079026828 0.7040093966786309 -0.7100644477595273 0.01338840603461276 0.70400939667845 -0.7100644477597068 0.01338840603460818 -0.7040093966786309 0.7100644477595273 -0.01338840603461276 -0.70400939667845 0.7100644477597068 -0.01338840603460818 0.4962997190496144 -0.8681117528912683 0.00828090353302427 0.4962997190498825 -0.868111752891115 0.008280903533030704 -0.4962997190496144 0.8681117528912683 -0.00828090353302427 -0.4962997190498825 0.868111752891115 -0.008280903533030704 0.2547680357418814 -0.966998676685758 0.0026090711405342 0.2547680357416484 -0.9669986766858193 0.002609071140528837 -0.2547680357418814 0.966998676685758 -0.0026090711405342 -0.2547680357416484 0.9669986766858193 -0.002609071140528837 -0.004125668177941606 -0.9999862387051477 -0.003240565138483486 -0.004125668178019996 -0.9999862387051476 -0.003240565138485225 0.004125668177941606 0.9999862387051477 0.003240565138483486 0.004125668178019996 0.9999862387051476 0.003240565138485225 -0.2627382146294395 -0.9648263911121316 -0.008869362258604022 -0.2627382146294016 -0.9648263911121422 -0.008869362258603212 0.2627382146294395 0.9648263911121316 0.008869362258604022 0.2627382146294016 0.9648263911121422 0.008869362258603212 -0.5034455859492308 -0.8639152194158513 -0.01389372699809003 -0.5034455859492529 -0.8639152194158384 -0.01389372699809048 0.5034455859492308 0.8639152194158513 0.01389372699809003 0.5034455859492529 0.8639152194158384 0.01389372699809048 -0.7098439725697979 -0.7041296532037734 -0.0179712572031592 -0.7098439725697355 -0.7041296532038364 -0.01797125720315802 0.7098439725697979 0.7041296532037734 0.0179712572031592 0.7098439725697355 0.7041296532038364 0.01797125720315802 -0.8678676655323522 -0.4963588147551524 -0.02082407592873589 -0.8678676655323175 -0.4963588147552128 -0.02082407592873531 0.8678676655323175 0.4963588147552128 0.02082407592873531 0.8678676655323522 0.4963588147551524 0.02082407592873589</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10279\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10277\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID10280\">27.05842437761737 240.2014731345323 27.46762722578821 240.2014731204654 27.05842434378015 239.2172211660306 27.4676271919512 239.2172211519612 23.60962757774534 240.2014731280448 24.01883042591617 240.2014731118089 23.60962753869465 239.2172211595432 24.01883038686561 239.2172211433072 3.20619893980999 27.95777113120913 3.417336709574669 27.9505019740739 4.250261606118255 27.48032338580264 4.549396372816916 27.75954616843907 3.623161530553341 27.99812698340535 3.809646781478382 28.09740059356754 3.964083800583144 28.24155747206202 4.76607019548582 28.10667644006416 4.075947960181167 28.42077356576493 4.137615902748932 28.62283559417748 4.885517111269333 28.49805784644537 4.144885059884302 28.83397336394218 4.097260050541032 29.0397981849715 4.899597010224857 28.90701839148196 3.99798644040172 29.22628343585403 3.853829561940223 29.38072045492313 3.674613468193254 29.49258461454874 4.807350370506626 29.3056880898688 3.472551439780709 29.55425255711666 2.428488773464305 30.03170030253414 4.615063648166681 29.66689826049375 2.789698944089241 30.22398702487427 4.335840865563325 29.96603302715683 3.188368642476121 30.31623366459253 3.988710593893853 30.18270684985354 3.597329187512691 30.30215376563701 3.081421192077849 27.20986992268874 2.690039785696631 27.32931683847232 3.490381737114447 27.19579002373319 2.342909514027222 27.54599066116896 3.889051435450546 27.28803666343965 2.063686731424162 27.84512542783194 1.871400009083977 28.20633559845687 3.004136911397362 28.01943907377711 2.824920817650269 28.1313032334029 2.680763939188871 28.28574025247187 1.779153369365683 28.60500529684388 2.581490329049619 28.4722255033543 2.533865319706348 28.67805032438366 1.793233268321246 29.01396584188037 2.541134476841672 28.88918809414848 2.602802419409482 29.09125012256089 1.912680184104843 29.40534724826152 2.714666579035201 29.27046621630785 2.86910359810419 29.41462309476942 3.055588848986611 29.51389670490848 2.1293540068014 29.75247751993109 3.261413670015896 29.56152171425188 28.64929102338327 240.2014732987117 29.05849387155427 240.201473287769 28.64929099706552 239.2172213302075 29.05849384523637 239.2172213192682 -3.081421192127753 27.20986992270993 -3.490381737164242 27.19579002375442 -2.690039785746405 27.32931683849359 -3.099417982665865 27.31774028932348 -2.735342255799468 27.42885369935474 -2.342909514076862 27.54599066119005 -2.412430375176423 27.63041074372378 -2.063686731473663 27.84512542785311 -2.152688251824359 27.90867564294525 -1.871400009133669 28.206335598478 -1.973816882205552 28.24468510399203 -1.779153369415494 28.60500529686481 -1.888006054560706 28.61554063737534 -1.793233268371012 29.01396584190145 -1.901103634984468 28.9959690513632 -2.012217045015778 29.3600447782299 -1.912680184154587 29.40534724828286 -2.213774089384776 29.68295665885275 -2.129354006851058 29.75247751995222 -2.492038988606469 29.94269878220478 -2.428488773514065 30.0317003025556 -2.828048449653032 30.1215701518235 -2.789698944139039 30.22398702489549 -3.198903983036534 30.20738097946845 -3.57933239702421 30.1942833990447 -3.188368642525988 30.3162336646137 -3.479846396653703 27.30464270889967 -3.889051435500089 27.28803666346087 -3.850701929986154 27.39045353653287 -4.250261606168129 27.48032338582391 -4.186711391075878 27.56932490617457 -4.549396372866797 27.75954616846044 -4.464976290333044 27.82906702955992 -4.7660701955355 28.10667644008545 -4.666533334674343 28.1519789101384 -4.777646744705621 28.51605463700496 -4.885517111319318 28.49805784646672 -4.790744325129431 28.89648305099271 -4.899597010274746 28.90701839150328 -4.704933497484485 29.26733858437618 -4.807350370556581 29.30568808989001 -4.526062127865717 29.6033480454228 -4.615063648216314 29.66689826051511 -4.266320004513667 29.88161294464442 -4.335840865613196 29.96603302717807 -3.943408123890793 30.08316998901324 -3.98871059394376 30.18270684987452 -3.597329187562507 30.30215376565809 18.94713323284383 239.2172212953992 18.53793038467301 239.2172213126944 18.94713327444666 240.2014732639008 18.53793042627569 240.2014732811971 -5.404593011457346 239.2172218863933 -5.404593049677919 240.2014738548971 -4.995390163286562 239.2172219022843 -4.995390201507021 240.2014738707863 2.143348319909948 239.2172221670749 2.143348287393006 240.2014741355777 2.552551168080881 239.217222180595 2.552551135563894 240.2014741490988 9.531280756405341 239.2172223344613 9.531280731807932 240.201474302964 9.940483604576265 239.2172223446865 9.940483579978912 240.2014743131894 16.25572891160108 239.2172223440281 16.25572889659962 240.2014743125292 16.66493175977201 239.2172223502644 16.66493174477048 240.201474318767 21.85843275202018 240.2014741621155 22.26763560019123 240.2014741639376 21.85843275640367 239.2172221936136 22.26763560457442 239.2172221954366 25.95757728922723 240.2014738924593 26.36678013739809 240.2014738897422 25.95757728269357 239.2172219239573 26.36678013086465 239.2172219212402 28.27381258216645 240.201473576271 28.68301543033751 240.2014735692021 28.27381256516134 239.2172216077703 28.68301541333215 239.2172216007001 12.59816350954946 239.2172215673858 12.18896066137847 239.2172215845651 12.5981635508691 240.2014735358886 12.18896070269809 240.2014735530673 5.40459301145853 239.217221886393 4.995390163287659 239.2172219022814 5.404593049679194 240.2014738548952 4.995390201508178 240.2014738707837 -2.143348319911078 239.2172221670712 -2.552551168082043 239.2172221805915 -2.143348287394177 240.2014741355735 -2.55255113556503 240.2014741490936 -9.531280756402616 239.2172223344601 -9.940483604521406 239.2172223446866 -9.531280731805206 240.2014743029623 -9.940483579923747 240.2014743131873 -16.25572891155248 239.2172223440279 -16.66493175977191 239.2172223502643 -16.25572889655071 240.2014743125286 -16.66493174477047 240.2014743187664 -21.85843275202329 240.201474162114 -21.85843275640653 239.2172221936119 -22.26763560024304 240.2014741639374 -22.26763560462621 239.217222195435 -25.95757728927861 240.2014738924577 -25.95757728274486 239.2172219239553 -26.36678013739715 240.2014738897424 -26.36678013086357 239.2172219212388 -28.27381258216644 240.2014735762719 -28.27381256516115 239.2172216077684 -28.68301543033742 240.2014735691999 -28.68301541333198 239.2172216006973 -28.64929102338362 240.2014732987126 -28.64929099706544 239.2172213302101 -29.05849387155454 240.2014732877722 -29.05849384523638 239.2172213192693 -27.05842437761671 240.2014731345382 -27.05842434377933 239.2172211660353 -27.46762722578747 240.2014731204693 -27.46762719195021 239.2172211519665 -23.60962757774589 240.2014731280457 -23.60962753869537 239.2172211595429 -24.01883042591703 240.2014731118112 -24.01883038686623 239.2172211433086 -18.94713323284257 239.2172212954015 -18.9471332744452 240.2014732639034 -18.53793038467147 239.2172213126982 -18.53793042627435 240.2014732812007 -12.5981635095518 239.2172215673884 -12.59816355087117 240.2014735358905 -12.18896066138073 239.2172215845661 -12.18896070270025 240.201473553068</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10280\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10276\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10274\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10275\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10276\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 8 1 8 3 9 12 13 14 13 12 15 15 12 16 16 12 17 16 17 18 18 17 19 19 17 20 20 17 21 20 21 22 22 21 23 23 21 24 23 24 25 25 24 26 26 24 27 26 27 28 28 27 29 29 27 30 30 27 31 30 31 32 32 31 33 33 31 34 33 34 35 35 34 36 35 36 37 38 39 40 39 38 41 41 38 42 41 42 43 43 42 14 43 14 44 44 14 13 44 13 45 44 45 46 46 45 47 46 47 48 46 48 49 46 49 50 50 49 51 50 51 52 50 52 53 53 52 54 53 54 55 53 55 56 56 55 57 56 57 58 56 58 59 56 59 32 32 59 30 108 2 109 2 108 0 112 113 114 113 112 115 113 115 116 116 115 117 117 115 118 118 115 119 118 119 120 120 119 121 120 121 122 122 121 123 122 123 124 124 123 125 124 125 126 126 125 127 126 127 128 128 127 129 129 127 130 129 130 131 131 130 132 131 132 133 133 132 134 133 134 135 135 134 136 135 136 137 116 138 113 138 116 139 138 139 140 138 140 141 141 140 142 141 142 143 143 142 144 143 144 145 145 144 146 145 146 147 147 146 148 147 148 149 147 149 150 150 149 151 150 151 152 152 151 153 152 153 154 154 153 155 154 155 156 156 155 157 156 157 158 158 157 137 158 137 136 158 136 159 208 9 209 9 208 8 212 213 214 213 212 215 220 215 212 215 220 221 224 221 220 221 224 225 228 225 224 225 228 229 228 232 229 232 228 233 233 236 232 236 233 237 237 109 236 109 237 108 240 209 241 209 240 208 244 241 245 241 244 240 248 245 249 245 248 244 252 249 253 249 252 248 256 253 257 253 256 252 256 260 261 260 256 257 261 264 265 264 261 260 265 268 269 268 265 264 269 272 273 272 269 268 273 276 277 276 273 272 277 280 281 280 277 276 284 281 280 281 284 285 214 285 284 285 214 213</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10276\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10277\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 4 5 11 6 6 7 11 6 4 5 60 8 61 9 62 10 62 10 61 9 63 11 61 9 64 12 63 11 64 12 65 13 63 11 65 13 66 14 63 11 63 11 66 14 67 15 66 14 68 16 67 15 68 16 69 17 67 15 67 15 69 17 70 18 69 17 71 19 70 18 71 19 72 20 70 18 70 18 72 20 73 21 72 20 74 22 73 21 74 22 75 23 73 21 75 23 76 24 73 21 73 21 76 24 77 25 76 24 78 26 77 25 78 26 79 27 77 25 77 25 79 27 80 28 79 27 81 29 80 28 80 28 81 29 82 30 81 29 83 31 82 30 82 30 83 31 84 32 85 33 84 32 83 31 86 34 87 35 88 36 87 35 89 37 88 36 88 36 89 37 90 38 89 37 91 39 90 38 90 38 91 39 62 10 62 10 91 39 60 8 91 39 92 40 60 8 60 8 92 40 93 41 93 41 92 40 94 42 94 42 92 40 95 43 92 40 96 44 95 43 95 43 96 44 97 45 97 45 96 44 98 46 96 44 99 47 98 46 98 46 99 47 100 48 100 48 99 47 101 49 99 47 102 50 101 49 101 49 102 50 103 51 103 51 102 50 104 52 104 52 102 50 105 53 102 50 106 54 105 53 105 53 106 54 107 55 107 55 106 54 78 26 79 27 78 26 106 54 5 56 110 57 7 58 111 59 7 58 110 57 160 60 161 61 162 62 161 61 163 63 162 62 163 63 164 64 162 62 162 62 164 64 165 65 164 64 166 66 165 65 165 65 166 66 167 67 166 66 168 68 167 67 167 67 168 68 169 69 168 68 170 70 169 69 169 69 170 70 171 71 170 70 172 72 171 71 171 71 172 72 173 73 172 72 174 74 173 73 174 74 175 75 173 73 173 73 175 75 176 76 175 75 177 77 176 76 176 76 177 77 178 78 177 77 179 79 178 78 178 78 179 79 180 80 179 79 181 81 180 80 180 80 181 81 182 82 181 81 183 83 182 82 183 83 184 84 182 82 185 85 182 82 184 84 163 63 161 61 186 86 161 61 187 87 186 86 186 86 187 87 188 88 187 87 189 89 188 88 188 88 189 89 190 90 189 89 191 91 190 90 190 90 191 91 192 92 191 91 193 93 192 92 192 92 193 93 194 94 194 94 193 93 195 95 193 93 196 96 195 95 195 95 196 96 197 97 196 96 198 98 197 97 197 97 198 98 199 99 198 98 200 100 199 99 199 99 200 100 201 101 200 100 202 102 201 101 201 101 202 102 203 103 202 102 204 104 203 103 203 103 204 104 205 105 205 105 204 104 184 84 184 84 204 104 185 85 204 104 206 106 185 85 207 107 185 85 206 106 11 108 210 109 10 110 211 111 10 110 210 109 216 112 217 113 218 114 219 115 218 114 217 113 222 116 223 117 216 118 217 119 216 118 223 117 226 120 227 121 222 122 223 123 222 122 227 121 230 124 231 125 226 126 227 127 226 126 231 125 234 128 231 129 235 130 230 131 235 130 231 129 238 132 234 133 239 134 235 135 239 134 234 133 110 136 238 137 111 138 239 139 111 138 238 137 210 140 242 141 211 142 243 143 211 142 242 141 242 144 246 145 243 146 247 147 243 146 246 145 246 148 250 149 247 150 251 151 247 150 250 149 250 152 254 153 251 154 255 155 251 154 254 153 254 156 258 157 255 158 259 159 255 158 258 157 259 160 258 161 262 162 263 163 262 162 258 161 262 164 263 165 266 166 267 167 266 166 263 165 266 168 267 169 270 170 271 171 270 170 267 169 270 172 271 173 274 174 275 175 274 174 271 173 274 176 275 177 278 178 279 179 278 178 275 177 278 180 279 181 282 182 283 183 282 182 279 181 286 184 287 185 283 186 282 187 283 186 287 185 218 188 219 189 286 190 287 191 286 190 219 189</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10281\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10282\">\r\n\t\t\t\t\t<float_array count=\"432\" id=\"ID10286\">-98.68477424263961 209.0261977043559 179.6293763623999 -114.9172814071942 183.7906085381612 154.3668238376031 -109.9234408178509 182.2015412741053 179.2954789736104 -103.0988266108848 211.999114175827 154.7179465594254 -103.0988266108848 211.999114175827 154.7179465594254 -98.68477424263961 209.0261977043559 179.6293763623999 -114.9172814071942 183.7906085381612 154.3668238376031 -109.9234408178509 182.2015412741053 179.2954789736104 -80.88779550583445 232.0268582312834 180.0967837032458 -84.38372484112574 236.1863489249757 155.2094668385635 -84.38372484112574 236.1863489249757 155.2094668385635 -80.88779550583445 232.0268582312834 180.0967837032458 -119.0336810665826 153.483195054424 154.1800271063294 -113.8378986771531 153.380944946439 179.1178460920946 -119.0336810665826 153.483195054424 154.1800271063294 -113.8378986771531 153.380944946439 179.1178460920946 -85.59016072344275 199.782489283841 279.9160030229123 -95.04048838167682 177.2262731269985 279.6352366431565 -85.59016072344275 199.782489283841 279.9160030229123 -95.04048838167682 177.2262731269985 279.6352366431565 -60.04737935533763 254.7039927087529 155.8078883799753 -57.74533929745917 249.6360658503792 180.6658479584203 -57.74533929745917 249.6360658503792 180.6658479584203 -60.04737935533763 254.7039927087529 155.8078883799753 -70.62510421395837 219.1231981553544 280.3090347487832 -70.62510421395837 219.1231981553544 280.3090347487832 -110.1613839863508 124.5284847327683 179.1085831052169 -115.1674997549524 123.1422738681744 154.1702862538859 -110.1613839863508 124.5284847327683 179.1085831052169 -115.1674997549524 123.1422738681744 154.1702862538859 -98.33206297614447 152.9917185399989 279.4858693740953 -98.33206297614447 152.9917185399989 279.4858693740953 -31.7482718806923 266.2900987051486 156.4724297448192 -30.83452576338573 260.6537821629842 181.2977883391523 -30.83452576338573 260.6537821629842 181.2977883391523 -31.7482718806923 266.2900987051486 156.4724297448192 -51.16516272341414 233.9303623939744 280.7875473583081 -51.16516272341414 233.9303623939744 280.7875473583081 -99.1444451459306 97.61040811573074 179.2683212701959 -103.5822113394988 94.83552861750931 154.3382651033371 -99.1444451459306 97.61040811573074 179.2683212701959 -103.5822113394988 94.83552861750931 154.3382651033371 -95.24056913781965 128.7303703684503 279.4780803485555 -95.24056913781965 128.7303703684503 279.4780803485555 -1.414939825090869 270.1550929374743 157.1578035372222 -1.989282373751621 264.3291680100482 181.9495391529799 -1.989282373751621 264.3291680100482 181.9495391529799 -1.414939825090869 270.1550929374743 157.1578035372222 -28.5364991053093 243.1948982268316 281.3189310075995 -28.5364991053093 243.1948982268316 281.3189310075995 -81.53786833151094 74.46113753255595 179.5861746952305 -85.06733408015361 70.4920172121506 154.6725161740378 -81.53786833151094 74.46113753255595 179.5861746952305 -85.06733408015361 70.4920172121506 154.6725161740378 -85.97668706285413 106.0955993964729 279.6124003757141 -85.97668706285413 106.0955993964729 279.6124003757141 28.88545036009691 266.0355824359924 157.8173026657059 26.82463520347301 260.4117519199384 182.5766846588795 26.82463520347301 260.4117519199384 182.5766846588795 28.88545036009691 266.0355824359924 157.8173026657059 -4.281219389587704 246.2854428472899 281.8669727792931 -4.281219389587704 246.2854428472899 281.8669727792931 -60.8846262648558 51.77070972484177 155.1502608073952 -58.54151265672681 56.65825751748388 180.040482194423 -58.54151265672681 56.65825751748388 180.040482194423 -60.8846262648558 51.77070972484177 155.1502608073952 -71.17173500535887 86.62992786008114 279.8796757675318 -71.17173500535887 86.62992786008114 279.8796757675318 57.08797715750575 254.2123050335547 158.4059833547635 53.64360610264043 249.1684993253671 183.1364859270962 53.64360610264043 249.1684993253671 183.1364859270962 57.08797715750575 254.2123050335547 158.4059833547635 19.94771919485629 242.9913807468218 282.3943245324153 19.94771919485629 242.9913807468218 282.3943245324153 -32.68209946741104 39.94743232240137 155.7389414964509 -31.72254175756507 45.41500492291216 180.6002834626979 -31.72254175756507 45.41500492291216 180.6002834626979 -32.68209946741104 39.94743232240137 155.7389414964509 -51.83464598172236 71.65990910594235 280.2616921478912 -51.83464598172236 71.65990910594235 280.2616921478912 81.27068497276287 235.4909975462769 158.8837279882901 76.63996177742797 231.3656193103041 183.590793426336 76.63996177742797 231.3656193103041 183.590793426336 81.27068497276287 235.4909975462769 158.8837279882901 42.49915452373284 233.5371968138977 282.8650481161549 42.49915452373284 233.5371968138977 282.8650481161549 -2.38170928218301 35.82792182093394 156.3984406249838 -2.908624180340212 41.49758883280474 181.2274289685447 -2.908624180340212 41.49758883280474 181.2274289685447 -2.38170928218301 35.82792182093394 156.3984406249838 -29.28321065285491 62.20572517300757 280.732415731758 -29.28321065285491 62.20572517300757 280.732415731758 99.7855622320933 211.1474861409702 159.2179790587707 94.24653859185628 208.2163487271142 183.9086468511778 99.7855622320933 211.1474861409702 159.2179790587707 94.24653859185628 208.2163487271142 183.9086468511778 61.83624354736548 218.56717805975 283.2470644965979 61.83624354736548 218.56717805975 283.2470644965979 27.95162277346049 39.69291605329705 157.0838144173467 25.93661920930276 45.17297467986094 181.8791797823014 25.93661920930276 45.17297467986094 181.8791797823014 27.95162277346049 39.69291605329705 157.0838144173467 -5.054272068407045 58.91166307255131 281.2597674848039 -5.054272068407045 58.91166307255131 281.2597674848039 111.3708506475523 182.8407408903477 159.3859579083401 105.2634774322726 181.2982721100847 184.0683850161968 111.3708506475523 182.8407408903477 159.3859579083401 105.2634774322726 181.2982721100847 184.0683850161968 76.64119560485256 199.1015065233622 283.5143398883974 76.64119560485256 199.1015065233622 283.5143398883974 56.25073024600806 51.27902204887052 157.7483557821361 52.84743274125481 56.19069099161659 182.5111201629406 52.84743274125481 56.19069099161659 182.5111201629406 56.25073024600806 51.27902204887052 157.7483557821361 19.20100764731615 62.00220769300353 281.8078092565138 19.20100764731615 62.00220769300353 281.8078092565138 115.237031959218 152.4998197041364 159.3762170559166 108.9399921230597 152.4458118964176 184.05912202937 115.237031959218 152.4998197041364 159.3762170559166 108.9399921230597 152.4458118964176 184.05912202937 85.90507767983036 176.4667355513822 283.6486599155633 85.90507767983036 176.4667355513822 283.6486599155633 80.58707573346101 69.79666583399148 158.3467773236353 75.98988895133425 73.79989861199155 183.080184418146 75.98988895133425 73.79989861199155 183.080184418146 80.58707573346101 69.79666583399148 158.3467773236353 41.82967126329254 71.26674352498412 282.3391929057416 41.82967126329254 71.26674352498412 282.3391929057416 105.0255342637652 123.6252155687413 183.8814891478542 111.120632299871 122.1924062204227 159.1894203244483 105.0255342637652 123.6252155687413 183.8814891478542 111.120632299871 122.1924062204227 159.1894203244483 88.99657151814881 152.2053873798372 283.6408708901217 88.99657151814881 152.2053873798372 283.6408708901217 99.3021775044856 93.98390058485293 158.8382976027187 93.78686768943612 96.80055914060617 183.5475917589884 93.78686768943612 96.80055914060617 183.5475917589884 99.3021775044856 93.98390058485293 158.8382976027187 61.28961275554866 86.07390776490786 282.8177055152737 61.28961275554866 86.07390776490786 282.8177055152737 85.7049969236823 127.9708327928373 283.491503620995 85.7049969236823 127.9708327928373 283.491503620995 76.25466926633908 105.4146166381146 283.2107372412193 76.25466926633908 105.4146166381146 283.2107372412193</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID10286\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10283\">\r\n\t\t\t\t\t<float_array count=\"432\" id=\"ID10287\">-0.850635942649795 0.4927588562268357 0.1833226736721768 -0.9447416788609202 0.255379394978375 0.2055347290448231 -0.9494556097773984 0.2568942541845835 0.1803867712144527 -0.8464730522123495 0.4899287634536824 0.208454260256428 0.8464730522123495 -0.4899287634536824 -0.208454260256428 0.850635942649795 -0.4927588562268357 -0.1833226736721768 0.9447416788609202 -0.255379394978375 -0.2055347290448231 0.9494556097773984 -0.2568942541845835 -0.1803867712144527 -0.6941501618076356 0.6949997183231956 0.1874325062338761 -0.6908598709457658 0.6910418854483363 0.2125411754762079 0.6908598709457658 -0.6910418854483363 -0.2125411754762079 0.6941501618076356 -0.6949997183231956 -0.1874325062338761 -0.978968906382349 0.003377931871719491 0.2039815430690179 -0.9838747661828089 0.003479695040820924 0.1788248757615835 0.978968906382349 -0.003377931871719491 -0.2039815430690179 0.9838747661828089 -0.003479695040820924 -0.1788248757615835 -0.8543524989352221 0.4953445981487033 0.1572117573467105 -0.9536736431248966 0.2582830614159665 0.1542609561570375 0.8543524989352221 -0.4953445981487033 -0.1572117573467105 0.9536736431248966 -0.2582830614159665 -0.1542609561570375 -0.4885069162014896 0.8450132340531409 0.2175169581857077 -0.4906625146100449 0.8498344599409403 0.1924361906020735 0.4906625146100449 -0.8498344599409403 -0.1924361906020735 0.4885069162014896 -0.8450132340531409 -0.2175169581857077 -0.6970726046140765 0.6986117655984059 0.16134244594658 0.6970726046140765 -0.6986117655984059 -0.16134244594658 -0.9515478032372843 -0.2502150377860175 0.178743427907268 -0.9468222057838176 -0.2489021426076256 0.2039005493862129 0.9515478032372843 0.2502150377860175 -0.178743427907268 0.9468222057838176 0.2489021426076256 -0.2039005493862129 -0.9882674653426834 0.003582507365304763 0.1526911346022604 0.9882674653426834 -0.003582507365304763 -0.1526911346022604 -0.2532042074419239 0.9413499163099897 0.2230425170161124 -0.2540403479346414 0.9467113493149699 0.1979927339562613 0.2540403479346414 -0.9467113493149699 -0.1979927339562613 0.2532042074419239 -0.9413499163099897 -0.2230425170161124 -0.492552325042061 0.8542322422181239 0.1663715223548087 0.492552325042061 -0.8542322422181239 -0.1663715223548087 -0.8546777500429448 -0.4869010675037406 0.1801479781880648 -0.8504923215867575 -0.4842683582947437 0.2052972675816252 0.8546777500429448 0.4869010675037406 -0.1801479781880648 0.8504923215867575 0.4842683582947437 -0.2052972675816252 -0.9557764537732811 -0.2513996421569972 0.1526092734269611 0.9557764537732811 0.2513996421569972 -0.1526092734269611 -0.0009872354120293581 0.973486746527351 0.228741294264578 -0.000409071403550669 0.9790283865312572 0.2037234670493064 0.000409071403550669 -0.9790283865312572 -0.2037234670493064 0.0009872354120293581 -0.973486746527351 -0.228741294264578 -0.2547293792867836 0.9516007497009513 0.1719562633251766 0.2547293792867836 -0.9516007497009513 -0.1719562633251766 -0.6998661406394434 -0.6904486323298744 0.182942808823569 -0.6965439762060445 -0.6866808965533422 0.2080765136188414 0.6998661406394434 0.6904486323298744 -0.182942808823569 0.6965439762060445 0.6866808965533422 -0.2080765136188414 -0.8584148171614042 -0.4892867750385416 0.1540209513349936 0.8584148171614042 0.4892867750385416 -0.1540209513349936 0.2509558300522917 0.9392336528342039 0.2342249276795354 0.252946762633442 0.9445832189097946 0.2092378498916304 -0.252946762633442 -0.9445832189097946 -0.2092378498916304 -0.2509558300522917 -0.9392336528342039 -0.2342249276795354 0.0001889919202623504 0.9840817851713257 0.1777160779897826 -0.0001889919202623504 -0.9840817851713257 -0.1777160779897826 -0.4954684949674 -0.8423456774034039 0.2120488864732377 -0.497663130369282 -0.8469863020995821 0.1869374567247624 0.497663130369282 0.8469863020995821 -0.1869374567247624 0.4954684949674 0.8423456774034039 -0.2120488864732377 -0.7028175901442213 -0.6938672763011493 0.1568299648099626 0.7028175901442213 0.6938672763011493 -0.1568299648099626 0.4854554853943892 0.8409249269601167 0.239119716706131 0.4887613727762984 0.8457232277007598 0.2141600864055603 -0.4887613727762984 -0.8457232277007598 -0.2141600864055603 -0.4854554853943892 -0.8409249269601167 -0.239119716706131 0.2548305228535369 0.9494618197392003 0.183258444497707 -0.2548305228535369 -0.9494618197392003 -0.183258444497707 -0.2609688396251391 -0.9406544032775476 0.2169436754995853 -0.2618485202263071 -0.9458462933086563 0.1918596932384924 0.2618485202263071 0.9458462933086563 -0.1918596932384924 0.2609688396251391 0.9406544032775476 -0.2169436754995853 -0.4995884666064864 -0.851199322868776 0.1608448842255067 0.4995884666064864 0.851199322868776 -0.1608448842255067 0.6865309666330192 0.6852601461100278 0.2430920895611283 0.6909643830464904 0.6891855579309852 0.2181547343069583 -0.6909643830464904 -0.6891855579309852 -0.2181547343069583 -0.6865309666330192 -0.6852601461100278 -0.2430920895611283 0.4918418139947676 0.8501001468366388 0.1882056597306824 -0.4918418139947676 -0.8501001468366388 -0.1882056597306824 -0.009025774161200532 -0.9749074969706846 0.2224273089149483 -0.008492686189514579 -0.9802914609300885 0.197374076081027 0.008492686189514579 0.9802914609300885 -0.197374076081027 0.009025774161200532 0.9749074969706846 -0.2224273089149483 -0.2625771754650895 -0.9505609957714094 0.1657920994584545 0.2625771754650895 0.9505609957714094 -0.1657920994584545 0.8404793120139206 0.4828476078510565 0.245871335598762 0.8457759924500047 0.4856379931047687 0.2209495649427312 -0.8404793120139206 -0.4828476078510565 -0.245871335598762 -0.8457759924500047 -0.4856379931047687 -0.2209495649427312 0.6950709375326341 0.6927681002689147 0.1922205791462099 -0.6950709375326341 -0.6927681002689147 -0.1922205791462099 0.2431911978684176 -0.9427706667534872 0.2281260861640097 0.245138590341657 -0.9479744237138231 0.2031048091743529 -0.245138590341657 0.9479744237138231 -0.2031048091743529 -0.2431911978684176 0.9427706667534872 -0.2281260861640097 -0.007935644531893379 -0.9851809612035219 0.1713344659663322 0.007935644531893379 0.9851809612035219 -0.1713344659663322 0.9368091962109435 0.2474813921636449 0.2472680537945619 0.9426460456442612 0.2489519633872189 0.2223541152236362 -0.9368091962109435 -0.2474813921636449 -0.2472680537945619 -0.9426460456442612 -0.2489519633872189 -0.2223541152236362 0.8506681645498027 0.4881875990063099 0.1950295926210278 -0.8506681645498027 -0.4881875990063099 -0.1950295926210278 0.4784939066281129 -0.8464339844967452 0.2336516449947028 0.4817607570170544 -0.8510975343397852 0.2086613525286676 -0.4817607570170544 0.8510975343397852 -0.2086613525286676 -0.4784939066281129 0.8464339844967452 -0.2336516449947028 0.2469827266749325 -0.9526999257332071 0.1770942806308481 -0.2469827266749325 0.9526999257332071 -0.1770942806308481 0.9689558968093146 -0.004798682315443423 0.2471870601113502 0.9749730085898115 -0.004742769439619016 0.2222726673690993 -0.9689558968093146 0.004798682315443423 -0.2471870601113502 -0.9749730085898115 0.004742769439619016 -0.2222726673690993 0.94802980116173 0.2503004661246168 0.1964412705290062 -0.94802980116173 -0.2503004661246168 -0.1964412705290062 0.6808468613722671 -0.692462635892285 0.23862742770403 0.685248404214535 -0.6962627927222059 0.2136650368967928 -0.685248404214535 0.6962627927222059 -0.2136650368967928 -0.6808468613722671 0.692462635892285 -0.23862742770403 0.4848056724305679 -0.8553314182502473 0.1826790216011825 -0.4848056724305679 0.8553314182502473 -0.1826790216011825 0.9405538521844155 -0.2581573285834782 0.2207107719158694 0.9347286692878631 -0.2568001454221338 0.2456338741348833 -0.9405538521844155 0.2581573285834782 -0.2207107719158694 -0.9347286692878631 0.2568001454221338 -0.2456338741348833 0.9805208127310869 -0.004681683397286027 0.1963594093537058 -0.9805208127310869 0.004681683397286027 -0.1963594093537058 0.8364600426391111 -0.4913495138976677 0.2427143429233261 0.8417341850568859 -0.4940219306256068 0.2177748694582734 -0.8417341850568859 0.4940219306256068 -0.2177748694582734 -0.8364600426391111 0.4913495138976677 -0.2427143429233261 0.689325952002392 -0.6997109416306582 0.1877080980094725 -0.689325952002392 0.6997109416306582 -0.1877080980094725 0.9459269905133361 -0.259382237447962 0.1947895877989171 -0.9459269905133361 0.259382237447962 -0.1947895877989171 0.8466058463235303 -0.4964437741810135 0.1918387866093034 -0.8466058463235303 0.4964437741810135 -0.1918387866093034</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID10287\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10285\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID10288\">9.452677447171027 181.4795484337942 9.466570921116773 181.951076083491 10.01908956357859 181.4795484483161 10.00519606545161 181.9510760973028 16.17712507343123 182.2514158990774 16.19101855209366 182.7229435486303 16.74353718983858 182.251415907931 16.72964369642836 182.7229435570543 2.064745449323703 181.1234996962648 2.078638919376798 181.5950273460788 2.631157565731407 181.1234997154651 2.617264063711371 181.5950273643365 9.466570881677363 185.4225159965357 9.509424863884595 187.3027583165936 10.00519602601221 185.4225160102036 9.962341948385546 187.3027583280878 21.79372183355351 183.8580282478115 22.33234697788819 183.8580282502712 21.77982834967181 183.3865005984115 22.34624046607917 183.386500600999 16.1910185308699 186.0195739903095 16.23387253168955 187.8998163099428 16.7296436752046 186.0195739986457 16.68678961619052 187.899816316953 -5.469302108827777 181.6790615034144 -4.930676964492911 181.6790615248747 -5.483195576077103 181.2075338535184 -4.916783459669409 181.207533876084 2.078638864383004 185.1471037238734 2.121492831229271 187.0273460442824 2.617264008717576 185.1471037419408 2.57440991573026 187.0273460594732 25.89286580857677 185.2789760658662 26.43149095291146 185.2789760621978 25.8789723193291 184.8074484166265 26.44538443573619 184.8074484127667 21.83657584997699 188.7778315072526 22.289492934478 188.7778315092985 21.79372182856211 186.897589188088 22.33234697289679 186.8975891905221 -12.66287246298819 182.1974518239079 -12.12424731865346 182.1974518471075 -12.67676592871458 181.7259241739652 -12.11035381230679 181.7259241983594 -5.426448216889747 187.0923484178505 -4.973531132388702 187.0923484357079 -5.469302172673353 185.2121060971909 -4.930677028338488 185.2121061184275 28.20910059702509 186.8889518129762 28.74772574135973 186.8889518034269 28.19520710263017 186.4174241638891 28.76161921903719 186.4174241538462 25.93571985633076 189.8769686547592 26.38863694083179 189.8769686517075 25.89286581374147 187.996726336078 26.43149095807616 187.9967263324479 -19.01184221100014 183.1148709291491 -18.47321706666564 183.1148709525103 -19.02573567658732 182.6433432792 -18.45932356017936 182.643343303767 -12.62001857697721 187.4933356896821 -12.16710149247616 187.4933357089885 -12.66287252674986 185.6130933688855 -12.12424738241514 185.6130933918433 28.58457862618054 188.5782383678426 29.12320377051529 188.5782383530655 28.57068512720802 188.1067107188897 29.13709724361513 188.106710703351 28.25195466666669 191.1223234274343 28.70487175116774 191.1223234194895 28.2091006037663 189.2420811092176 28.74772574810094 189.2420810997678 -23.5449144048715 184.3687983008697 -23.53102089964006 183.8972706520887 -24.08353954920637 184.368798278944 -24.09743301604786 183.8972706290326 -18.96898831667251 188.2029813044257 -18.51607123217144 188.2029813238623 -19.01184226589606 186.3227389836147 -18.47321712156157 186.3227390067323 26.99371168185325 190.2317137007053 27.53233682618797 190.2317136817063 26.97981817918453 189.7601860518618 27.54623029559173 189.7601860318821 28.6274327067089 192.4290270201637 29.08034979120979 192.4290270078658 28.58457862574524 190.548784702357 29.12320377008 190.5487846877339 -26.9937115281325 185.8737808469192 -26.97981802546353 185.4022531980621 -27.53233667246715 185.8737808279191 -27.54623014187137 185.4022531780825 -23.58776855007085 189.1729241595951 -23.54491444441094 187.2926818423519 -24.0406856345718 189.1729241413502 -24.0835395887458 187.2926818206547 23.54491470480221 191.7366962341069 24.08353984913704 191.7366962121803 23.53102119957108 191.2651685853403 24.09743331597797 191.265168562281 27.0365657631616 193.7080297992208 27.48948284766261 193.7080297834138 26.99371166761359 191.8277874817487 27.53233681194831 191.8277874629477 -28.58457859734759 187.527256515665 -28.57068509837475 187.0557288667 -29.12320374168232 187.5272565008889 -29.13709721478258 187.0557288511605 -27.03656564549306 190.3370642458064 -26.99371154994483 188.4568219283337 -27.48948272999404 190.3370642299971 -27.53233669427948 188.4568219095316 19.02573610488618 192.5190962237852 18.45932398847919 192.519096248348 19.01184263929939 192.9906238737199 18.47321749496461 192.9906238970774 23.58776877965437 194.8721698724893 24.04068586415539 194.8721698542429 23.54491467399434 192.9919275552467 24.08353981832917 192.9919275335487 -28.20910063828791 189.2165436388108 -28.19520714389264 188.7450159897125 -28.74772578262266 189.2165436292628 -28.7616192603005 188.7450159796704 -28.62743268463952 191.6160673579173 -28.58457860367591 189.7358250401109 -29.08034976914042 191.6160673456209 -29.12320374801064 189.7358250254888 12.67676643311861 193.4365158871646 12.11035431671149 193.436515911561 12.66287296739267 193.908043537095 12.12424782305811 193.9080435602954 19.01184259373756 193.961870679105 18.47321744940278 193.961870702219 18.96898864451377 195.8421129999131 18.51607156001285 195.8421130193494 -25.89286584639798 190.8265200333165 -25.87897235714998 190.3549923840693 -26.43149099069033 190.8265200296489 -26.44538447351534 190.3549923802097 -28.25195469825393 192.922771513854 -28.2091006353534 191.0425291956358 -28.70487178275501 192.9227715059089 -28.74772577968815 191.0425291861873 5.48319608397529 193.9549068627406 4.91678396756822 193.9549068853065 5.469302616726282 194.426434512627 4.930677472391519 194.4264345340882 12.6628729128604 194.6715168461804 12.12424776852583 194.6715168691389 12.62001896308779 196.5517591669765 12.16710187858661 196.551759186283 -21.79372179522597 192.2474684032427 -21.77982831134417 191.7759407538377 -22.33234693960012 192.2474684057027 -22.34624042779116 191.7759407564243 -25.93571988528772 194.1681269281336 -25.89286584269817 192.2878846094528 -26.3886369697461 194.1681269250822 -26.43149098699052 192.2878846058234 -2.078638481576375 194.5104692467485 -2.064745011523626 194.0389415969424 -2.617263625911113 194.5104692650063 -2.631157127930818 194.0389416161391 5.469302561452272 195.0725047660793 4.930677417117508 195.0725047873168 5.426448605668775 196.9527470867396 4.973531521167812 196.9527471045989 -16.1910183853516 193.38255340966 -16.17712490668928 192.9110257601051 -16.7296435297257 193.3825534180846 -16.74353702313604 192.9110257689604 -21.83657582064497 195.2672646227279 -21.79372179923018 193.3870223035642 -22.28949290518583 195.2672646247744 -22.33234694360433 193.3870223059985 -9.466570608206899 194.1544208538955 -9.452677134261233 193.6828932042011 -10.00519575249932 194.1544208677055 -10.01908925062638 193.6828932187241 -2.121492496124124 197.0177500305467 -2.07863852927771 195.1375077101375 -2.574409580625124 197.0177500457363 -2.617263673612448 195.137507728205 -16.23387240404687 196.1452801249979 -16.19101840322766 194.2650378053639 -16.68678948858747 196.1452801320073 -16.72964354760175 194.2650378137007 -9.509424624351242 196.7423380984928 -9.466570642143976 194.8620957784365 -9.962341708809621 196.742338109986 -10.00519578643639 194.8620957921025</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10288\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10284\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10282\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10283\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10284\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 3 0 3 8 9 2 12 13 12 2 1 16 2 17 2 16 0 8 20 9 20 8 21 24 0 16 0 24 8 26 12 27 12 26 13 17 13 30 13 17 2 21 32 20 32 21 33 24 21 8 21 24 36 38 27 39 27 38 26 42 13 26 13 42 30 33 44 32 44 33 45 36 33 21 33 36 48 50 39 51 39 50 38 54 26 38 26 54 42 45 56 44 56 45 57 48 45 33 45 48 60 62 50 51 50 62 63 66 38 50 38 66 54 57 68 56 68 57 69 60 57 45 57 60 72 74 63 62 63 74 75 63 66 50 66 63 78 69 80 68 80 69 81 72 69 57 69 72 84 86 75 74 75 86 87 75 78 63 78 75 90 92 81 93 81 92 80 84 81 69 81 84 96 98 87 86 87 98 99 87 90 75 90 87 102 104 93 105 93 104 92 93 96 108 96 93 81 110 99 98 99 110 111 99 102 87 102 99 114 116 105 117 105 116 104 105 108 120 108 105 93 122 111 110 111 122 123 111 114 99 114 111 126 116 128 129 128 116 117 117 120 132 120 117 105 134 123 122 123 134 135 123 126 111 126 123 138 129 135 134 135 129 128 117 140 128 140 117 132 135 138 123 138 135 142 128 142 135 142 128 140</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10284\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10285\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 11 5 4 6 5 7 4 6 11 5 6 8 7 9 14 10 15 11 14 10 7 9 5 12 18 13 7 14 19 15 7 14 18 13 22 16 11 17 23 18 10 19 23 18 11 17 11 20 25 21 5 22 18 23 5 22 25 21 15 24 28 25 14 26 29 27 14 26 28 25 7 28 19 29 15 30 31 31 15 30 19 29 34 32 22 33 35 34 23 35 35 34 22 33 37 36 25 37 22 38 11 39 22 38 25 37 28 40 40 41 29 42 41 43 29 42 40 41 31 44 43 45 15 46 28 47 15 46 43 45 46 48 34 49 47 50 35 51 47 50 34 49 49 52 37 53 34 54 22 55 34 54 37 53 40 56 52 57 41 58 53 59 41 58 52 57 43 60 55 61 28 62 40 63 28 62 55 61 58 64 46 65 59 66 47 67 59 66 46 65 61 68 49 69 46 70 34 71 46 70 49 69 64 72 65 73 52 74 53 75 52 74 65 73 55 76 67 77 40 78 52 79 40 78 67 77 70 80 58 81 71 82 59 83 71 82 58 81 73 84 61 85 58 86 46 87 58 86 61 85 76 88 77 89 64 90 65 91 64 90 77 89 79 92 64 93 67 94 52 95 67 94 64 93 82 96 70 97 83 98 71 99 83 98 70 97 85 100 73 101 70 102 58 103 70 102 73 101 88 104 89 105 76 106 77 107 76 106 89 105 91 108 76 109 79 110 64 111 79 110 76 109 83 112 94 113 82 114 95 115 82 114 94 113 97 116 85 117 82 118 70 119 82 118 85 117 100 120 101 121 88 122 89 123 88 122 101 121 103 124 88 125 91 126 76 127 91 126 88 125 94 128 106 129 95 130 107 131 95 130 106 129 82 132 95 133 97 134 109 135 97 134 95 133 112 136 113 137 100 138 101 139 100 138 113 137 115 140 100 141 103 142 88 143 103 142 100 141 106 144 118 145 107 146 119 147 107 146 118 145 95 148 107 149 109 150 121 151 109 150 107 149 124 152 125 153 112 154 113 155 112 154 125 153 127 156 112 157 115 158 100 159 115 158 112 157 119 160 118 161 130 162 131 163 130 162 118 161 107 164 119 165 121 166 133 167 121 166 119 165 136 168 137 169 124 170 125 171 124 170 137 169 139 172 124 173 127 174 112 175 127 174 124 173 130 176 131 177 136 178 137 179 136 178 131 177 133 180 119 181 141 182 130 183 141 182 119 181 143 184 136 185 139 186 124 187 139 186 136 185 141 188 130 189 143 190 136 191 143 190 130 189</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10289\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10295\">\r\n\t\t\t\t\t<float_array count=\"720\" id=\"ID10299\">325.6839157451273 154.2195371636558 -639.2276359970001 315.6804023133821 74.19698758902729 -679.4754118843921 314.7981265746203 74.0718010866197 -639.7216186039987 326.5661914839006 154.3447236660679 -678.9814292774427 326.5661914839006 154.3447236660679 -678.9814292774427 325.6839157451273 154.2195371636558 -639.2276359970001 315.6804023133821 74.19698758902729 -679.4754118843921 314.7981265746203 74.0718010866197 -639.7216186039987 284.4265839585055 -0.4002018455240801 -680.4039533861687 283.5443082197419 -0.5253883479300043 -640.6501601057607 284.4265839585055 -0.4002018455240801 -680.4039533861687 283.5443082197419 -0.5253883479300043 -640.6501601057607 -283.61920438741 76.58371922120128 -652.9946824044873 -282.9575037739407 236.9678022525689 -652.4749401838908 -293.8432929444659 156.8200661755369 -652.9689227908111 -252.9819928419095 1.726735837692502 -652.5504635498292 -251.7036854182495 311.5649916890589 -651.5463986821342 -204.019533644376 -62.64950426443473 -651.6665390076159 -202.2117339489369 375.5279593026003 -650.2465768543152 -140.0685374747814 -112.1578667089818 -650.4031467748446 -137.854444069319 424.4977345541137 -648.6640554099049 -65.48715903814059 -143.424438411797 -648.8463849440705 -63.01765872924034 455.137108186599 -646.906680570215 14.64200397667673 -154.3184541817745 -647.1023442615788 17.19861882399755 465.3580575209625 -645.0942145262852 94.8582815299219 -144.097504847411 -645.2898782177144 97.32778183882033 454.4640417509859 -643.3501738437899 169.695066868042 -113.4581312157157 -643.5325033780464 171.9091602754659 423.1974700481744 -641.7934120130813 234.052356749221 -64.48835596302298 -641.9499819335197 235.8601564450355 373.6891076036279 -640.5300197802608 283.5443082197419 -0.5253883479300043 -640.6501601057607 284.8226156425849 309.3128675015007 -639.6460952381185 314.7981265746203 74.0718010866197 -639.7216186039987 315.4598271880959 234.455884117987 -639.2018763834494 325.6839157451273 154.2195371636558 -639.2276359970001 325.6839157451273 154.2195371636558 -639.2276359970001 314.7981265746203 74.0718010866197 -639.7216186039987 315.4598271880959 234.455884117987 -639.2018763834494 284.8226156425849 309.3128675015007 -639.6460952381185 283.5443082197419 -0.5253883479300043 -640.6501601057607 235.8601564450355 373.6891076036279 -640.5300197802608 234.052356749221 -64.48835596302298 -641.9499819335197 171.9091602754659 423.1974700481744 -641.7934120130813 169.695066868042 -113.4581312157157 -643.5325033780464 97.32778183882033 454.4640417509859 -643.3501738437899 94.8582815299219 -144.097504847411 -645.2898782177144 17.19861882399755 465.3580575209625 -645.0942145262852 14.64200397667673 -154.3184541817745 -647.1023442615788 -63.01765872924034 455.137108186599 -646.906680570215 -65.48715903814059 -143.424438411797 -648.8463849440705 -137.854444069319 424.4977345541137 -648.6640554099049 -140.0685374747814 -112.1578667089818 -650.4031467748446 -202.2117339489369 375.5279593026003 -650.2465768543152 -204.019533644376 -62.64950426443473 -651.6665390076159 -251.7036854182495 311.5649916890589 -651.5463986821342 -252.9819928419095 1.726735837692502 -652.5504635498292 -282.9575037739407 236.9678022525689 -652.4749401838908 -283.61920438741 76.58371922120128 -652.9946824044873 -293.8432929444659 156.8200661755369 -652.9689227908111 315.4598271880959 234.455884117987 -639.2018763834494 316.3421029268668 234.5810706203902 -678.9556696639011 316.3421029268668 234.5810706203902 -678.9556696639011 315.4598271880959 234.455884117987 -639.2018763834494 -250.8214096794845 311.690178191479 -691.3001919625112 -233.844627619553 223.9495375808697 -691.1997170470859 -242.9737519556832 156.7354260041732 -691.6139845446051 -201.3294582101723 375.6531458049988 -690.000370134645 -207.6343098117318 286.5088069939469 -690.4210164229226 -166.1289883762047 340.1499234169942 -689.3309498329545 -136.9721683305468 424.6229210565226 -688.4178486903402 -112.1571823780425 381.2173334119275 -688.0038035137313 -62.13538299047013 455.2622946890045 -686.6604738505212 -49.39698120336311 406.9123608546794 -686.5300202935759 18.08089456277457 465.4832440233709 -684.8480078066896 17.87461115386441 415.4839320880751 -685.0100360634424 85.07314684611606 406.3479086977449 -683.5474352371075 98.21005757759986 454.5892282533925 -683.1039671241924 147.6191567167502 380.1268955797585 -682.241891643338 172.7914360142333 423.3226565505854 -681.5472052934492 201.2502335552833 338.607811445819 -681.1823759207455 236.7424321838028 373.8142941060264 -680.2838130606215 242.3115081047035 284.6201132661303 -680.4410923148771 285.7048913813571 309.4380540039066 -679.3998885184683 268.0047223614204 221.8429734527533 -680.0685580785139 276.5789262339076 154.5545503398365 -680.0901608040913 284.4265839585055 -0.4002018455240801 -680.4039533861687 315.6804023133821 74.19698758902729 -679.4754118843921 316.3421029268668 234.5810706203902 -678.9556696639011 326.5661914839006 154.3447236660679 -678.9814292774427 -282.075228035166 237.0929887549772 -692.2287334643916 -282.7369286486476 76.70890572361508 -692.7484756849426 -292.961017205678 156.9452526779406 -692.7227160711645 -252.099717103134 1.851922340104949 -692.3042568301753 -234.3995480832045 89.44700289125451 -691.6355872702861 -203.1372579055806 -62.52431776202748 -691.420332288013 -208.7063338264861 26.66986307787664 -691.2630530337938 -167.6450592770698 -27.31783510180851 -690.5217694279363 -139.1862617360177 -112.0326802065734 -690.1569400551907 -114.013982438541 -68.83691923574573 -689.4622537052965 -64.60488329937516 -143.2992519093825 -688.6001782244402 -51.46797256788523 -95.05793235373155 -688.1567101116252 15.52427971544626 -154.1932676793617 -686.8561375419777 15.73056312435506 -104.1939557440644 -686.6941092851248 95.7405572686921 -143.9723183449975 -685.0436714981206 83.00215548159258 -95.62238451066791 -685.1741250551477 145.7623566543114 -69.92735706871257 -683.7003418351687 170.5773426068365 -113.3329447132972 -683.2862966584544 199.7341626540331 -28.85994707259529 -682.3731955157291 234.9346324879946 -64.36316946060042 -681.703775213964 241.2394840907502 24.78116935199572 -681.2831289256883 267.4498018977731 87.34043876313568 -680.5044283015886 276.5789262339076 154.5545503398365 -680.0901608040913 267.4498018977731 87.34043876313568 -680.5044283015886 284.4265839585055 -0.4002018455240801 -680.4039533861687 241.2394840907502 24.78116935199572 -681.2831289256883 234.9346324879946 -64.36316946060042 -681.703775213964 199.7341626540331 -28.85994707259529 -682.3731955157291 170.5773426068365 -113.3329447132972 -683.2862966584544 145.7623566543114 -69.92735706871257 -683.7003418351687 95.7405572686921 -143.9723183449975 -685.0436714981206 83.00215548159258 -95.62238451066791 -685.1741250551477 15.73056312435506 -104.1939557440644 -686.6941092851248 15.52427971544626 -154.1932676793617 -686.8561375419777 -51.46797256788523 -95.05793235373155 -688.1567101116252 -64.60488329937516 -143.2992519093825 -688.6001782244402 -114.013982438541 -68.83691923574573 -689.4622537052965 -139.1862617360177 -112.0326802065734 -690.1569400551907 -167.6450592770698 -27.31783510180851 -690.5217694279363 -203.1372579055806 -62.52431776202748 -691.420332288013 -208.7063338264861 26.66986307787664 -691.2630530337938 -234.3995480832045 89.44700289125451 -691.6355872702861 -252.099717103134 1.851922340104949 -692.3042568301753 -242.9737519556832 156.7354260041732 -691.6139845446051 -250.8214096794845 311.690178191479 -691.3001919625112 -282.075228035166 237.0929887549772 -692.2287334643916 -282.7369286486476 76.70890572361508 -692.7484756849426 -292.961017205678 156.9452526779406 -692.7227160711645 326.5661914839006 154.3447236660679 -678.9814292774427 316.3421029268668 234.5810706203902 -678.9556696639011 315.6804023133821 74.19698758902729 -679.4754118843921 285.7048913813571 309.4380540039066 -679.3998885184683 268.0047223614204 221.8429734527533 -680.0685580785139 242.3115081047035 284.6201132661303 -680.4410923148771 236.7424321838028 373.8142941060264 -680.2838130606215 201.2502335552833 338.607811445819 -681.1823759207455 172.7914360142333 423.3226565505854 -681.5472052934492 147.6191567167502 380.1268955797585 -682.241891643338 98.21005757759986 454.5892282533925 -683.1039671241924 85.07314684611606 406.3479086977449 -683.5474352371075 18.08089456277457 465.4832440233709 -684.8480078066896 17.87461115386441 415.4839320880751 -685.0100360634424 -49.39698120336311 406.9123608546794 -686.5300202935759 -62.13538299047013 455.2622946890045 -686.6604738505212 -112.1571823780425 381.2173334119275 -688.0038035137313 -136.9721683305468 424.6229210565226 -688.4178486903402 -166.1289883762047 340.1499234169942 -689.3309498329545 -201.3294582101723 375.6531458049988 -690.000370134645 -207.6343098117318 286.5088069939469 -690.4210164229226 -233.844627619553 223.9495375808697 -691.1997170470859 234.9346324879946 -64.36316946060042 -681.703775213964 234.052356749221 -64.48835596302298 -641.9499819335197 234.9346324879946 -64.36316946060042 -681.703775213964 234.052356749221 -64.48835596302298 -641.9499819335197 235.8601564450355 373.6891076036279 -640.5300197802608 285.7048913813571 309.4380540039066 -679.3998885184683 284.8226156425849 309.3128675015007 -639.6460952381185 236.7424321838028 373.8142941060264 -680.2838130606215 236.7424321838028 373.8142941060264 -680.2838130606215 235.8601564450355 373.6891076036279 -640.5300197802608 285.7048913813571 309.4380540039066 -679.3998885184683 284.8226156425849 309.3128675015007 -639.6460952381185 171.9091602754659 423.1974700481744 -641.7934120130813 172.7914360142333 423.3226565505854 -681.5472052934492 171.9091602754659 423.1974700481744 -641.7934120130813 172.7914360142333 423.3226565505854 -681.5472052934492 97.32778183882033 454.4640417509859 -643.3501738437899 98.21005757759986 454.5892282533925 -683.1039671241924 97.32778183882033 454.4640417509859 -643.3501738437899 98.21005757759986 454.5892282533925 -683.1039671241924 17.19861882399755 465.3580575209625 -645.0942145262852 18.08089456277457 465.4832440233709 -684.8480078066896 17.19861882399755 465.3580575209625 -645.0942145262852 18.08089456277457 465.4832440233709 -684.8480078066896 -63.01765872924034 455.137108186599 -646.906680570215 -62.13538299047013 455.2622946890045 -686.6604738505212 -63.01765872924034 455.137108186599 -646.906680570215 -62.13538299047013 455.2622946890045 -686.6604738505212 -137.854444069319 424.4977345541137 -648.6640554099049 -136.9721683305468 424.6229210565226 -688.4178486903402 -137.854444069319 424.4977345541137 -648.6640554099049 -136.9721683305468 424.6229210565226 -688.4178486903402 -202.2117339489369 375.5279593026003 -650.2465768543152 -201.3294582101723 375.6531458049988 -690.000370134645 -202.2117339489369 375.5279593026003 -650.2465768543152 -201.3294582101723 375.6531458049988 -690.000370134645 -250.8214096794845 311.690178191479 -691.3001919625112 -251.7036854182495 311.5649916890589 -651.5463986821342 -250.8214096794845 311.690178191479 -691.3001919625112 -251.7036854182495 311.5649916890589 -651.5463986821342 -282.075228035166 237.0929887549772 -692.2287334643916 -282.9575037739407 236.9678022525689 -652.4749401838908 -282.075228035166 237.0929887549772 -692.2287334643916 -282.9575037739407 236.9678022525689 -652.4749401838908 -292.961017205678 156.9452526779406 -692.7227160711645 -293.8432929444659 156.8200661755369 -652.9689227908111 -292.961017205678 156.9452526779406 -692.7227160711645 -293.8432929444659 156.8200661755369 -652.9689227908111 -282.7369286486476 76.70890572361508 -692.7484756849426 -283.61920438741 76.58371922120128 -652.9946824044873 -282.7369286486476 76.70890572361508 -692.7484756849426 -283.61920438741 76.58371922120128 -652.9946824044873 -252.099717103134 1.851922340104949 -692.3042568301753 -252.9819928419095 1.726735837692502 -652.5504635498292 -252.099717103134 1.851922340104949 -692.3042568301753 -252.9819928419095 1.726735837692502 -652.5504635498292 -203.1372579055806 -62.52431776202748 -691.420332288013 -204.019533644376 -62.64950426443473 -651.6665390076159 -203.1372579055806 -62.52431776202748 -691.420332288013 -204.019533644376 -62.64950426443473 -651.6665390076159 -139.1862617360177 -112.0326802065734 -690.1569400551907 -140.0685374747814 -112.1578667089818 -650.4031467748446 -140.0685374747814 -112.1578667089818 -650.4031467748446 -139.1862617360177 -112.0326802065734 -690.1569400551907 -64.60488329937516 -143.2992519093825 -688.6001782244402 -65.48715903814059 -143.424438411797 -648.8463849440705 -65.48715903814059 -143.424438411797 -648.8463849440705 -64.60488329937516 -143.2992519093825 -688.6001782244402 15.52427971544626 -154.1932676793617 -686.8561375419777 14.64200397667673 -154.3184541817745 -647.1023442615788 14.64200397667673 -154.3184541817745 -647.1023442615788 15.52427971544626 -154.1932676793617 -686.8561375419777 95.7405572686921 -143.9723183449975 -685.0436714981206 94.8582815299219 -144.097504847411 -645.2898782177144 94.8582815299219 -144.097504847411 -645.2898782177144 95.7405572686921 -143.9723183449975 -685.0436714981206 170.5773426068365 -113.3329447132972 -683.2862966584544 169.695066868042 -113.4581312157157 -643.5325033780464 169.695066868042 -113.4581312157157 -643.5325033780464 170.5773426068365 -113.3329447132972 -683.2862966584544</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"240\" source=\"#ID10299\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10296\">\r\n\t\t\t\t\t<float_array count=\"720\" id=\"ID10300\">-0.9997453049990307 0.004196533475347691 -0.02217463053097904 -0.9646120083115525 0.262869023482086 -0.0205803283435408 -0.9646120083115842 0.2628690234819691 -0.02058032834354186 -0.9997453049990308 0.004196533475316793 -0.02217463053097914 0.9997453049990308 -0.004196533475316793 0.02217463053097914 0.9997453049990307 -0.004196533475347691 0.02217463053097904 0.9646120083115525 -0.262869023482086 0.0205803283435408 0.9646120083115842 -0.2628690234819691 0.02058032834354186 -0.8288083512661069 0.5592853136996916 -0.01663294175409864 -0.8288083512661258 0.5592853136996635 -0.01663294175409914 0.8288083512661069 -0.5592853136996916 0.01663294175409864 0.8288083512661258 -0.5592853136996635 0.01663294175409914 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 -0.0221879245195496 -0.003148254615055192 0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 0.0221879245195496 0.003148254615055192 -0.9997488607137264 -0.9667476113080546 -0.2547619433525802 -0.02225776829304952 -0.9667476113080427 -0.2547619433526261 -0.0222577682930494 0.9667476113080427 0.2547619433526261 0.0222577682930494 0.9667476113080546 0.2547619433525802 0.02225776829304952 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 0.02218792451956024 0.003148254615075447 -0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 -0.02218792451956024 -0.003148254615075447 0.9997488607137259 0.7040093966786467 -0.7100644477595113 0.01338840603462446 0.7040093966786236 -0.7100644477595344 0.01338840603462388 -0.7040093966786467 0.7100644477595113 -0.01338840603462446 -0.7040093966786236 0.7100644477595344 -0.01338840603462388 -0.7098439725698021 -0.704129653203775 -0.01797125720292259 -0.8678676655323896 -0.4963588147550938 -0.02082407592857504 -0.8678676655323598 -0.4963588147551455 -0.02082407592857454 -0.7098439725698249 -0.7041296532037521 -0.01797125720292302 0.7098439725698249 0.7041296532037521 0.01797125720292302 0.7098439725698021 0.704129653203775 0.01797125720292259 0.8678676655323896 0.4963588147550938 0.02082407592857504 0.8678676655323598 0.4963588147551455 0.02082407592857454 -0.5034455859492631 -0.8639152194158355 -0.01389372699788536 -0.5034455859492488 -0.863915219415844 -0.01389372699788507 0.5034455859492631 0.8639152194158355 0.01389372699788536 0.5034455859492488 0.863915219415844 0.01389372699788507 -0.2627382146293959 -0.9648263911121453 -0.008869362258403469 -0.262738214629418 -0.9648263911121393 -0.008869362258403939 0.2627382146293959 0.9648263911121453 0.008869362258403469 0.262738214629418 0.9648263911121393 0.008869362258403939 -0.004125668177980437 -0.9999862387051484 -0.003240565138236945 -0.004125668178058537 -0.999986238705148 -0.003240565138238677 0.004125668177980437 0.9999862387051484 0.003240565138236945 0.004125668178058537 0.999986238705148 0.003240565138238677 0.2547680357417813 -0.9669986766857835 0.002609071140798166 0.2547680357417675 -0.9669986766857872 0.002609071140797848 -0.2547680357417813 0.9669986766857835 -0.002609071140798166 -0.2547680357417675 0.9669986766857872 -0.002609071140797848 0.4962997190497669 -0.8681117528911783 0.008280903533299477 0.4962997190497889 -0.8681117528911659 0.008280903533300004 -0.4962997190497669 0.8681117528911783 -0.008280903533299477 -0.4962997190497889 0.8681117528911659 -0.008280903533300004 0.7491145247555819 -0.662280921930079 0.01453991910785996 0.7491145247555802 -0.662280921930081 0.01453991910785991 -0.7491145247555819 0.662280921930079 -0.01453991910785996 -0.7491145247555802 0.662280921930081 -0.01453991910785991 -0.8637419973544216 0.5036274239499672 -0.01758351079035 -0.8637419973544145 0.5036274239499796 -0.01758351079034981 0.8637419973544216 -0.5036274239499672 0.01758351079035 0.8637419973544145 -0.5036274239499796 0.01758351079034981 -0.9646120083115607 0.2628690234820323 -0.02058032834383937 -0.9646120083115604 0.262869023482034 -0.02058032834383936 0.9646120083115607 -0.2628690234820323 0.02058032834383937 0.9646120083115604 -0.262869023482034 0.02058032834383936 -0.9997453049990244 0.004196533475312003 -0.02217463053126952 -0.9997453049990243 0.004196533475370399 -0.02217463053126933 0.9997453049990244 -0.004196533475312003 0.02217463053126952 0.9997453049990243 -0.004196533475370399 0.02217463053126933 -0.9667476113080366 -0.2547619433526369 -0.02225776829318768 -0.9667476113080341 -0.2547619433526462 -0.02225776829318766 0.9667476113080366 0.2547619433526369 0.02225776829318768 0.9667476113080341 0.2547619433526462 0.02225776829318766 -0.867867665532434 -0.4963588147550054 -0.02082407592882868 -0.867867665532386 -0.4963588147550895 -0.02082407592882788 0.867867665532434 0.4963588147550054 0.02082407592882868 0.867867665532386 0.4963588147550895 0.02082407592882788 -0.7098439725697833 -0.7041296532037852 -0.01797125720326427 -0.7098439725698357 -0.7041296532037326 -0.01797125720326527 0.7098439725697833 0.7041296532037852 0.01797125720326427 0.7098439725698357 0.7041296532037326 0.01797125720326527 -0.5034455859492382 -0.8639152194158483 -0.01389372699800241 -0.5034455859492097 -0.8639152194158648 -0.01389372699800183 0.5034455859492097 0.8639152194158648 0.01389372699800183 0.5034455859492382 0.8639152194158483 0.01389372699800241 -0.2627382146294109 -0.9648263911121416 -0.008869362258391385 -0.2627382146293553 -0.9648263911121566 -0.008869362258390197 0.2627382146293553 0.9648263911121566 0.008869362258390197 0.2627382146294109 0.9648263911121416 0.008869362258391385 -0.004125668177930271 -0.9999862387051485 -0.003240565138290787 -0.00412566817801794 -0.9999862387051481 -0.003240565138292731 0.00412566817801794 0.9999862387051481 0.003240565138292731 0.004125668177930271 0.9999862387051485 0.003240565138290787 0.2547680357418073 -0.9669986766857771 0.002609071140635935 0.2547680357417325 -0.966998676685797 0.002609071140634211 -0.2547680357417325 0.966998676685797 -0.002609071140634211 -0.2547680357418073 0.9669986766857771 -0.002609071140635935 0.4962997190497992 -0.8681117528911618 0.008280903533101154 0.4962997190497954 -0.8681117528911641 0.008280903533101063 -0.4962997190497954 0.8681117528911641 -0.008280903533101063 -0.4962997190497992 0.8681117528911618 -0.008280903533101154</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"240\" source=\"#ID10300\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10298\">\r\n\t\t\t\t\t<float_array count=\"672\" id=\"ID10301\">-59.30996853727483 0.464414664577677 -58.09306197970627 0.03704960608924068 -58.05840659873049 0.4204836669917409 -59.34462391825074 0.08098060367470161 -47.94478640455441 81.96635365435648 -47.94146862499286 82.27483252036618 -46.93788470512301 81.96214786114862 -46.93456692556153 82.27062672715795 -58.21883309377527 0.413008139533992 -56.86590080939242 0.196483735875999 -56.99167192346111 0.572442269318671 -58.09306197970664 0.0370496060914558 -46.00785907899984 82.01390852663762 -46.00454127487613 82.32238739254457 -45.00095737992884 82.00970270229389 -44.99763957580514 82.31818156820096 -88.11331622214242 88.0943171178715 -90.38841978793418 88.71822917356965 -89.31677069164458 88.31294349450027 -86.86006981272254 88.07724906995281 -91.25523239608353 89.28255460581681 -85.6424381350989 88.26290251000378 -91.85813666932279 89.96746194562618 -84.54340077586981 88.63862546289218 -92.15604567777686 90.72627588965258 -83.63785531482201 89.17881303028955 -92.12865741483763 91.50728452160999 -82.98751317864122 89.84665232218022 -91.77783834536328 92.25726339390822 -82.63669410916684 90.59663119447851 -91.12749620918248 92.92510268579895 -82.60930584622849 91.37763982641553 -90.2219507481347 93.46529025319637 -82.90721485468966 92.13645377046032 -89.12291338890579 93.84101320608455 -83.51011912794351 92.82136111028635 -87.90528171128204 94.02666664613565 -84.37693173607032 93.38568654251884 -86.65203530186204 94.00959859821704 -85.44858083236008 93.79097222158809 -45.07428334647133 4.568585243965011 -45.76111384678202 3.915086530770287 -44.68226337658499 5.310597499678124 -44.61176945022707 6.090556388915917 -46.69594851393757 3.394636217453978 -44.86760561198211 6.855309002319872 -47.81507991033293 3.04270213274904 -45.43233705021586 7.552738713099969 -49.0422410807086 2.883268002955898 -46.2674782506754 8.13531683902365 -50.29380301922033 2.927199000540059 -47.31611572068557 8.56334164356505 -51.48447384815529 3.171501300614175 -48.50678654962045 8.807643943639141 -52.53311131816538 3.59952610515556 -49.75834848816486 8.851574941224552 -53.36825251862485 4.182104231079257 -50.98550965851078 8.692140811435198 -53.93298395685893 4.879533941859461 -52.10464105487893 8.340206726738771 -54.18882011861378 5.644286555263354 -53.03947572205877 7.819756413408923 -54.11832619225574 6.424245444501059 -53.72630622236967 7.166257700214307 -44.68226337658209 5.31059749967948 -45.65962669909354 4.688686218899481 -45.07428334646716 4.568585243966073 -45.26760672920864 5.430698474612838 -48.95168810398803 81.97055944756349 -48.94837032442659 82.27903831357395 -47.94478640455444 81.96635365435714 -47.9414686249929 82.27483252036753 -86.9822314681479 84.42836824746414 -86.50985079515058 85.23973823975564 -86.4868822391913 85.89471371255254 -86.37932719490985 83.74346090765603 -86.26001604854415 84.60337584705339 -85.75440382448156 84.02899357986976 -85.51251458676194 83.17913547540965 -85.02747076046934 83.5557346405017 -84.44086549047397 82.77384979634107 -84.12875614350573 83.21585084356983 -83.23741102097415 82.55522341971235 -83.11950588954144 83.03250470815056 -82.06849873551848 83.01819097037887 -81.98416461155622 82.53815537179365 -81.04735908211264 83.17388508782926 -80.76653293393467 82.72380881184434 -80.12567590918999 83.4889767636943 -79.66749557470746 83.09953176473188 -79.36626040183195 83.94199302097732 -78.76195011366107 83.63971933212825 -78.82086547187171 84.50206155038927 -78.5266588824779 85.13101460720769 -78.0313096535138 86.59736007227635 -77.73340064506812 85.83854612827092 -78.11160797748123 84.30755862401784 -77.7607889080072 85.05753749631478 -87.28014047660122 85.18718219148937 -86.90193314418809 86.71816969574245 -87.25275221366199 85.96819082344547 -86.25159100800813 87.38600898763195 -86.19267564979764 86.52366676937101 -85.34604554696172 87.92619655502845 -85.64728071983733 87.08373529878294 -84.88786521247936 87.53675155606595 -84.24700818773464 88.30191950791588 -83.96618203955677 87.85184323193096 -83.02937651011294 88.48757294796657 -82.94504238615063 88.00753734938132 -81.77613010069508 88.47050490004789 -81.89403523212779 87.99322361160967 -80.57267563119524 88.25187852341919 -80.88478497816341 87.80987747619038 -79.98607036122792 87.46999367926908 -79.50102653493499 87.84659284436098 -79.25913729719464 86.99673473988736 -78.63421392676641 87.28226741210109 -78.75352507311754 86.42235247268721 -78.50369032651865 85.78599008000464 -59.20043643944484 0.5554510660482248 -58.15084192935643 0.5186093145788444 -56.86590080939132 0.1964837358765235 -57.12171057941568 0.652315192161784 -55.74676941299619 0.548417820581355 -56.18317599031233 0.9474568642155692 -54.81193474579374 1.068868133923639 -55.39919774335329 1.383920913526455 -54.12510424550066 1.722366847101476 -54.82320266051831 1.931963036392048 -54.49444385476846 2.554235067866845 -53.73308427561419 2.464379102814546 -54.43532569543395 3.20833019734213 -53.66259034925615 3.244337992052316 -54.64987698737578 3.849672922687497 -53.91842651101108 4.00909060545627 -55.12347641461116 4.43455679703945 -54.48315794924466 4.70652031623636 -55.82384895883396 4.923122950927304 -56.70326538857577 5.282076408357301 -55.31829914970418 5.289098442160125 -57.70179492745404 5.486955084404267 -60.03633055753951 5.845922414571987 -58.80916938719345 6.005356544361217 -56.3669366197142 5.717123246701649 -57.55760744864908 5.961425546775796 -59.3446239182498 0.08098060367669069 -60.53529474718459 0.3252829037509137 -58.09306197970533 0.03704960609136077 -61.58393221719474 0.7533077082923727 -60.19896597832306 0.7603297420952893 -61.07838240806486 1.119283199525243 -62.41907341765406 1.335885834216119 -61.77875495228771 1.607849353413141 -62.98380485588782 2.033315544996298 -62.25235437952312 2.192733227765131 -63.23964101764275 2.798068158400159 -62.466905671465 2.834075953110314 -63.16914709128469 3.578027047637972 -62.40778751213044 3.488171082585668 -62.07902870638063 4.110443114060404 -62.77712712139819 4.320039303351022 -61.50303362352772 4.658485236943156 -62.0902966210875 4.973538016545771 -60.71905537659131 5.094949286241389 -61.15546195390743 5.493988329875645 -59.78052078751497 5.390090958286713 -58.75138943754239 5.523796835873675 -46.00785907905017 82.01390852663533 -44.99763957580338 82.31818156819895 -46.0045412749268 82.32238739254336 -45.00095737992698 82.00970270229121 -46.41832199839654 3.051774164225519 -47.53745339479137 2.69984007952038 -46.6959485139343 3.394636217454687 -47.81507991032965 3.042702132749785 -44.86760561197948 6.855309002322185 -45.21505174807328 6.012177288846234 -44.61176945022435 6.090556388918196 -45.47088790982856 6.776929902250176 -50.9654915028457 81.97897103397754 -50.96217372328431 82.28744989998529 -49.95858980341866 81.97476524077032 -49.95527202385723 82.283244106778 -62.41907341766002 1.33588583421577 -62.43363086350286 2.206329170620396 -62.98380485589366 2.033315544995981 -61.86889942526936 1.508899459840218 -50.96217372328451 82.2874498999807 -50.96549150284591 81.97897103397233 -51.96907542271363 82.29165569318802 -51.97239320227512 81.98317682717958 -45.89190928876851 7.296881154593652 -46.26747825067159 8.135316839026533 -46.7270504892283 7.879459280517057 -45.43233705021207 7.552738713102817 -51.96907542271583 82.2916556931889 -51.97239320227734 81.98317682717904 -52.97597712214957 82.29586148639615 -52.97929490171093 81.98738262038602 -63.2396410176479 2.798068158400976 -62.55386917960897 3.556430216015973 -63.16914709128994 3.57802704763884 -62.62436310596694 2.776471326778136 -52.97597712214726 82.29586148639729 -52.97929490170862 81.98738262038773 -53.98287882157913 82.30006727960452 -53.98619660114053 81.99158841359495 -63.16914709128602 3.578027047638187 -62.1917837687739 4.199938328418157 -62.77712712139834 4.32003930335099 -62.58380373866011 3.457926072705102 -53.98287882157925 82.30006727960749 -53.98619660114061 81.99158841359831 -54.98978052100979 82.30427307281471 -54.99309830057121 81.9957942068063 -48.54144193059456 8.424209882740531 -49.75834848816279 8.851574941227762 -49.79300386913908 8.468140880324853 -48.50678654961838 8.807643943642191 -54.98978052100932 82.30427307281032 -54.99309830057073 81.99579420680151 -55.99668222044129 82.30847886601767 -56.00000000000271 82.00000000000784 -62.090296621087 4.973538016545676 -60.74489982513629 5.207588239180574 -61.15546195390621 5.493988329874968 -61.67973449231588 4.687137925850586 -55.996682220441 82.30847886601536 -56.00000000000242 82.00000000000628 -57.00358391987057 82.31268465922221 -57.00690169943211 82.00420579321394 -57.00358389932192 82.31268462954969 -55.99999997943468 81.99999996988608 -55.99668219987309 82.30847883578274 -57.0069016788833 82.0042057636534 -51.26313617404533 9.035002864665028 -50.98550965850862 8.692140811436399 -52.38226757041348 8.683068779969069 -52.10464105487667 8.340206726739961 -55.99668222044112 82.30847886601023 -54.99309830056101 81.99579420678987 -54.98978052099949 82.30427307280317 -56.00000000000274 81.9999999999979 -60.03633055754339 5.84592241457193 -60.16210167161265 6.221880948014207 -58.80916938719734 6.005356544360996 -58.93494050126713 6.381315077804429 -54.98978052099322 82.30427307280384 -53.98619660111636 81.99158841358509 -53.98287882155487 82.30006727959625 -54.99309830055475 81.99579420679154 -53.55499433347397 8.030176848688095 -53.03947572205773 7.819756413409644 -54.2418248337831 7.376678135492767 -53.72630622236874 7.166257700215111 -53.98287882155837 82.3000672795974 -52.97929490168193 81.98738262037813 -52.97597712212031 82.29586148638994 -53.98619660111982 81.99158841358637 -54.31164957499048 7.286358675149347 -53.72630622236524 7.166257700216529 -54.70366954487812 6.544346419436518 -54.11832619225146 6.424245444503272 -52.97597712211871 82.29586148638293 -51.97239320224357 81.983176827165 -51.96907542268203 82.2916556931756 -52.97929490168036 81.98738262037148 -56.36693661971573 5.717123246701486 -56.02928522357112 6.038388468308139 -55.31829914970517 5.289098442160526 -54.98064775356157 5.610363663766335 -57.04012373054567 82.3338532723144 -56.03653982460674 82.0211685957526 -56.0332220313139 82.32964746170083 -57.0434415238387 82.02537440636657 -55.31829914970342 5.289098442161238 -54.85872691114687 5.544956000670009 -54.48315794924453 4.706520316237098 -54.02358571068755 4.962377874746311 -55.02963812537002 82.01696278513624 -56.03322203131478 82.32964746170055 -56.03653982460764 82.02116859575052 -55.02632033207685 82.32544165108587 -53.3682525186223 4.182104231082178 -53.91842651101256 4.009090605457558 -53.93298395685626 4.879533941862436 -54.48315794924706 4.706520316237373 -54.02273642613615 82.01275697452286 -55.02632033207763 82.32544165108541 -55.0296381253708 82.01696278513671 -54.01941863284297 82.32123584047174 -53.05930805140587 3.322717092125191 -53.66259034925521 3.244337992053451 -53.31514421316143 4.087469705529114 -53.9184265110104 4.00909060545741 -53.01583472689979 82.00855116391517 -54.01941863284606 82.32123584047992 -54.02273642613923 82.01275697452955 -53.01251693360667 82.31703002986575 -53.11780636393572 2.442782271191939 -53.73308427561653 2.464379102815115 -53.04731243757694 3.222741160429642 -53.66259034925729 3.244337992052836 -52.00893302765609 82.00434535329346 -53.01251693360425 82.3170300298593 -53.01583472689737 82.00855116390818 -52.00561523436299 82.31282421924463 -53.5397608928778 1.602265872169213 -54.12510424550386 1.722366847102132 -53.14774092299132 2.344278127882302 -53.73308427561726 2.464379102815204 -51.00203132840375 82.0001395426147 -52.00561523432395 82.31282421918033 -52.00893302761705 82.00434535322999 -50.99871353511095 82.30861840856505 -54.29641613438242 0.858447698646746 -54.81193474579764 1.068868133924614 -53.60958563408949 1.511946411824409 -54.12510424550448 1.722366847102461 -76.04773534246752 81.86060536318176 -77.02810873888733 82.23792219416971 -77.03875580817015 81.8537146695777 -76.03708827318451 82.24481288777412 -47.81507991033082 3.042702132751658 -47.68930879626235 2.666743599308604 -49.04224108070638 2.883268002958348 -48.91646996663779 2.507309469515664 -44.61176945022365 6.090556388918225 -45.29754128826308 5.332194331303322 -44.68226337658144 5.310597499680442 -45.22704736190371 6.112153220541066 -49.95858980342098 81.97476524077332 -49.95527202385953 82.28324410678285 -48.95168810398785 81.97055944756532 -48.94837032442641 82.27903831357563</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"336\" source=\"#ID10301\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10297\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10295\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10296\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"236\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10297\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10298\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 7 7 6 6 5 5 2 8 8 9 9 10 8 9 2 8 1 11 6 12 7 13 10 14 11 15 10 14 7 13 12 16 13 17 14 18 13 17 12 16 15 19 13 17 15 19 16 20 16 20 15 19 17 21 16 20 17 21 18 22 18 22 17 21 19 23 18 22 19 23 20 24 20 24 19 23 21 25 20 24 21 25 22 26 22 26 21 25 23 27 22 26 23 27 24 28 24 28 23 27 25 29 24 28 25 29 26 30 26 30 25 29 27 31 26 30 27 31 28 32 28 32 27 31 29 33 28 32 29 33 30 34 30 34 29 33 31 35 30 34 31 35 32 36 32 36 31 35 33 37 32 36 33 37 34 38 34 38 33 37 35 39 36 40 37 41 38 42 38 42 37 41 39 43 37 41 40 44 39 43 39 43 40 44 41 45 40 44 42 46 41 45 41 45 42 46 43 47 42 46 44 48 43 47 43 47 44 48 45 49 44 48 46 50 45 49 45 49 46 50 47 51 46 50 48 52 47 51 47 51 48 52 49 53 48 52 50 54 49 53 49 53 50 54 51 55 50 54 52 56 51 55 51 55 52 56 53 57 52 56 54 58 53 57 53 57 54 58 55 59 54 58 56 60 55 59 55 59 56 60 57 61 56 60 58 62 57 61 59 63 57 61 58 62 60 64 3 65 0 66 3 65 60 64 61 67 62 68 63 69 4 70 5 71 4 70 63 69 64 72 65 73 66 74 65 73 64 72 67 75 65 73 67 75 68 76 68 76 67 75 69 77 69 77 67 75 70 78 69 77 70 78 71 79 71 79 70 78 72 80 71 79 72 80 73 81 73 81 72 80 74 82 73 81 74 82 75 83 75 83 74 82 76 84 76 84 74 82 77 85 76 84 77 85 78 86 78 86 77 85 79 87 78 86 79 87 80 88 80 88 79 87 81 89 80 88 81 89 82 90 82 90 81 89 83 91 82 90 83 91 84 92 84 92 83 91 85 93 85 93 83 91 86 94 86 94 83 91 87 95 87 95 83 91 88 96 87 95 88 96 89 97 90 98 91 99 92 100 91 99 90 98 93 101 93 101 90 98 64 72 93 101 64 72 66 74 93 101 66 74 94 102 93 101 94 102 95 103 95 103 94 102 96 104 95 103 96 104 97 105 95 103 97 105 98 106 98 106 97 105 99 107 98 106 99 107 100 108 100 108 99 107 101 109 100 108 101 109 102 110 102 110 101 109 103 111 102 110 103 111 104 112 104 112 103 111 105 113 104 112 105 113 106 114 104 112 106 114 107 115 107 115 106 114 108 116 107 115 108 116 109 117 109 117 108 116 110 118 109 117 110 118 86 94 86 94 110 118 111 119 86 94 111 119 85 93 112 120 113 121 114 122 113 121 115 123 114 122 114 122 115 123 116 124 115 123 117 125 116 124 116 124 117 125 118 126 117 125 119 127 118 126 118 126 119 127 120 128 119 127 121 129 120 128 121 129 122 130 120 128 120 128 122 130 123 131 122 130 124 132 123 131 123 131 124 132 125 133 124 132 126 134 125 133 125 133 126 134 127 135 126 134 128 136 127 135 127 135 128 136 129 137 128 136 130 138 129 137 130 138 131 139 129 137 129 137 131 139 132 140 131 139 133 141 132 140 133 141 134 142 132 140 134 142 135 143 132 140 132 140 135 143 136 144 137 145 136 144 135 143 138 146 139 147 140 148 139 147 141 149 140 148 140 148 141 149 114 122 114 122 141 149 112 120 112 120 141 149 142 150 142 150 141 149 143 151 141 149 144 152 143 151 143 151 144 152 145 153 144 152 146 154 145 153 145 153 146 154 147 155 146 154 148 156 147 155 147 155 148 156 149 157 148 156 150 158 149 157 149 157 150 158 151 159 151 159 150 158 152 160 150 158 153 161 152 160 152 160 153 161 154 162 153 161 155 163 154 162 154 162 155 163 156 164 155 163 157 165 156 164 156 164 157 165 158 166 158 166 157 165 159 167 157 165 134 142 159 167 133 141 159 167 134 142 160 168 11 169 161 170 11 169 160 168 10 171 8 172 162 173 9 174 163 175 9 174 162 173 164 176 165 177 166 178 165 177 164 176 167 179 168 180 169 181 170 182 171 183 170 182 169 181 167 184 172 185 173 186 172 185 167 184 164 187 169 188 168 189 174 190 175 191 174 190 168 189 173 192 176 193 177 194 176 193 173 192 172 195 174 196 175 197 178 198 179 199 178 198 175 197 177 200 180 201 181 202 180 201 177 200 176 203 178 204 179 205 182 206 183 207 182 206 179 205 181 208 184 209 185 210 184 209 181 208 180 211 182 212 183 213 186 214 187 215 186 214 183 213 185 216 188 217 189 218 188 217 185 216 184 219 186 220 187 221 190 222 191 223 190 222 187 221 189 224 192 225 193 226 192 225 189 224 188 227 190 228 191 229 194 230 195 231 194 230 191 229 194 232 196 233 197 234 196 233 194 232 195 235 193 236 192 237 198 238 199 239 198 238 192 237 197 240 200 241 201 242 200 241 197 240 196 243 198 244 199 245 202 246 203 247 202 246 199 245 201 248 204 249 205 250 204 249 201 248 200 251 202 252 203 253 206 254 207 255 206 254 203 253 205 256 208 257 209 258 208 257 205 256 204 259 206 260 207 261 210 262 211 263 210 262 207 261 209 264 212 265 213 266 212 265 209 264 208 267 210 268 211 269 214 270 215 271 214 270 211 269 213 272 216 273 217 274 216 273 213 272 212 275 214 276 215 277 218 278 219 279 218 278 215 277 220 280 217 281 216 282 217 281 220 280 221 283 222 284 223 285 219 286 218 287 219 286 223 285 224 288 221 289 220 290 221 289 224 288 225 291 226 292 227 293 222 294 223 295 222 294 227 293 228 296 225 297 224 298 225 297 228 296 229 299 230 300 231 301 226 302 227 303 226 302 231 301 232 304 229 305 228 306 229 305 232 304 233 307 234 308 235 309 230 310 231 311 230 310 235 309 236 312 233 313 232 314 233 313 236 312 237 315 238 316 239 317 234 318 235 319 234 318 239 317 160 320 237 321 236 322 237 321 160 320 161 323 163 324 162 325 238 326 239 327 238 326 162 325 166 328 61 329 60 330 61 329 166 328 165 331 170 332 171 333 62 334 63 335 62 334 171 333</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10302\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10303\">\r\n\t\t\t\t\t<float_array count=\"432\" id=\"ID10307\">-71.23046201778584 118.9095484780783 739.150714832429 -84.58208008417614 132.5559832415673 656.5932345962356 -77.26340693221164 114.6740100824878 656.6993504089278 -77.65376558201979 134.6038334315472 739.0575812732532 -77.65376558201979 134.6038334315472 739.0575812732532 -71.23046201778584 118.9095484780783 739.150714832429 -84.58208008417614 132.5559832415673 656.5932345962356 -77.26340693221164 114.6740100824878 656.6993504089278 -87.02442906605279 151.7229886132524 656.5993880998431 -79.79731655015803 151.4259392099059 739.0629819547085 -79.79731655015803 151.4259392099059 739.0629819547085 -87.02442906605279 151.7229886132524 656.5993880998431 -60.96514338036195 105.4126239330555 739.3360357338988 -65.56716509079774 99.29569605544728 656.9105039210135 -60.96514338036195 105.4126239330555 739.3360357338988 -65.56716509079774 99.29569605544728 656.9105039210135 -80.19576795808189 134.2431475681695 853.5957381504049 -73.77246439385181 118.5488626146976 853.6888717094389 -80.19576795808189 134.2431475681695 853.5957381504049 -73.77246439385181 118.5488626146976 853.6888717094389 -77.51503546610616 168.2294671042043 739.1665488291455 -84.42401183088714 170.8688264564288 656.7173915688272 -84.42401183088714 170.8688264564288 656.7173915688272 -77.51503546610616 168.2294671042043 739.1665488291455 -82.33931892622081 151.0652533465219 853.6011388318002 -82.33931892622081 151.0652533465219 853.6011388318002 -50.29043411244265 87.46904784752098 657.2123053692667 -47.55737417061027 95.03285289948614 739.6009146644683 -47.55737417061027 95.03285289948614 739.6009146644683 -50.29043411244265 87.46904784752098 657.2123053692667 -63.50714575641473 105.0519380696749 853.8741926109378 -63.50714575641473 105.0519380696749 853.8741926109378 -70.96245601409396 183.8692844576018 739.3612239851718 -76.95804251587879 188.6887395620861 656.9392032616834 -76.95804251587879 188.6887395620861 656.9392032616834 -70.96245601409396 183.8692844576018 739.3612239851718 -80.05703784216962 167.8687812408281 853.7047057063392 -80.05703784216962 167.8687812408281 853.7047057063392 -32.47429796735582 80.0000319896246 657.5841874838425 -31.92087170283048 88.47759961993837 739.9273005628766 -31.92087170283048 88.47759961993837 739.9273005628766 -32.47429796735582 80.0000319896246 657.5841874838425 -50.09937654667988 94.67216703609782 854.1390715415819 -50.09937654667988 94.67216703609782 854.1390715415819 -60.5861256551409 197.2795635634669 739.6337406325765 -65.13531459175465 203.9683303008767 657.2497070783211 -65.13531459175465 203.9683303008767 657.2497070783211 -60.5861256551409 197.2795635634669 739.6337406325765 -73.50445839016493 183.5085985942228 853.8993808624182 -73.50445839016493 183.5085985942228 853.8993808624182 -13.33289689126468 77.39764956933362 658.0008071132143 -15.12123777963757 86.19359377233899 740.2929507695571 -15.12123777963757 86.19359377233899 740.2929507695571 -13.33289689126468 77.39764956933362 658.0008071132143 -34.46287407889804 88.11691375655462 854.465457440012 -34.46287407889804 88.11691375655462 854.465457440012 -49.76152742853765 215.6663198146556 657.6277426965753 -47.09317415549117 207.546416062284 739.9655272123564 -47.09317415549117 207.546416062284 739.9655272123564 -49.76152742853765 215.6663198146556 657.6277426965753 -63.12812803120164 196.9188777000934 854.1718975098956 -63.12812803120164 196.9188777000934 854.1718975098956 5.829314265167341 79.83924864794757 658.4337723181179 1.696660309801473 88.33648658070673 740.6729468270987 1.696660309801473 88.33648658070673 740.6729468270987 5.829314265167341 79.83924864794757 658.4337723181179 -17.66324015569808 85.83290790895671 854.8311076466016 -17.66324015569808 85.83290790895671 854.8311076466016 -31.88437921503646 222.9855094499044 658.0475476137963 -31.40312386170376 213.9701729230139 740.3339730174739 -31.40312386170376 213.9701729230139 740.3339730174739 -31.88437921503646 222.9855094499044 658.0475476137963 -49.63517653155509 207.1857301988997 854.5036840897537 -49.63517653155509 207.1857301988997 854.5036840897537 23.70646247646209 87.15843828229885 658.8535772352479 17.38671060136107 94.7602434405316 741.0413926320434 17.38671060136107 94.7602434405316 741.0413926320434 23.70646247646209 87.15843828229885 658.8535772352479 -0.8453420662635836 87.97580071731835 855.2111037041541 -0.8453420662635836 87.97580071731835 855.2111037041541 -12.72216805860785 225.427108528533 658.4805128186981 -14.58522577226586 216.1130657313889 740.7139690749791 -14.58522577226586 216.1130657313889 740.7139690749791 -12.72216805860785 225.427108528533 658.4805128186981 -33.94512623776677 213.6094870596407 854.8721298948804 -33.94512623776677 213.6094870596407 854.8721298948804 39.08024964143601 98.85642779743174 659.2316128535804 30.87966210279137 105.0270959407025 741.3731792118451 30.87966210279137 105.0270959407025 741.3731792118451 39.08024964143601 98.85642779743174 659.2316128535804 14.84470822528101 94.39955757713642 855.5795495091588 14.84470822528101 94.39955757713642 855.5795495091588 6.419233017486931 222.8247261082336 658.8971324480935 2.214408150927511 213.8290598837849 741.0796192815087 2.214408150927511 213.8290598837849 741.0796192815087 6.419233017486931 222.8247261082336 658.8971324480935 -17.127228148325 215.7523798679979 855.2521259523219 -17.127228148325 215.7523798679979 855.2521259523219 50.9029775669369 114.1360185379684 659.5421166701708 41.25599246312208 118.4373750483402 741.6456958594226 41.25599246312208 118.4373750483402 741.6456958594226 50.9029775669369 114.1360185379684 659.5421166701708 28.33765972672677 104.6664100773185 855.9113360892079 28.33765972672677 104.6664100773185 855.9113360892079 24.23536916257149 215.3557102503344 659.2690145627003 17.85091061870867 207.2738066042223 741.4060051799806 17.85091061870867 207.2738066042223 741.4060051799806 24.23536916257149 215.3557102503344 659.2690145627003 -0.3275942251361812 213.4683740204028 855.617776159077 -0.3275942251361812 213.4683740204028 855.617776159077 58.36894688102211 131.9559316414253 659.7639283630888 47.80857191420341 134.0771923995062 741.8403710154307 47.80857191420341 134.0771923995062 741.8403710154307 58.36894688102211 131.9559316414253 659.7639283630888 38.71399008706476 118.0766891849819 856.1838527367745 38.71399008706476 118.0766891849819 856.1838527367745 39.51210014092158 203.5290620424102 659.5708160109061 31.25867982844534 196.8940355706728 741.6708841106138 31.25867982844534 196.8940355706728 741.6708841106138 39.51210014092158 203.5290620424102 659.5708160109061 15.30890824265384 206.9131207408566 855.944162057478 15.30890824265384 206.9131207408566 855.944162057478 60.96936411617594 151.101769484607 659.881931832133 50.09085299825097 150.8807202938189 741.9439378897769 50.09085299825097 150.8807202938189 741.9439378897769 60.96936411617594 151.101769484607 659.881931832133 45.26656953813586 133.7165065361309 856.3785278928444 45.26656953813586 133.7165065361309 856.3785278928444 51.20834198234752 188.1507480153648 659.7819695229136 41.52399846587969 183.3971110256462 741.8562050120945 51.20834198234752 188.1507480153648 659.7819695229136 41.52399846587969 183.3971110256462 741.8562050120945 28.71667745238779 196.5333497072876 856.2090409881566 28.71667745238779 196.5333497072876 856.2090409881566 47.94730203010909 167.7028260721764 741.9493385713304 58.52701513430452 170.2687748562942 659.8880853356786 58.52701513430452 170.2687748562942 659.8880853356786 47.94730203010909 167.7028260721764 741.9493385713304 47.54885062218796 150.5200344304294 856.4820947672743 47.54885062218796 150.5200344304294 856.4820947672743 38.98199608982509 183.0364251622617 856.3943618895482 38.98199608982509 183.0364251622617 856.3943618895482 45.40529965405085 167.342140208797 856.4874954486877 45.40529965405085 167.342140208797 856.4874954486877</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID10307\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10304\">\r\n\t\t\t\t\t<float_array count=\"432\" id=\"ID10308\">-0.8677736758636303 -0.4957800139689537 0.03422024586509059 -0.9633734194420095 -0.2535775438722758 0.0872357951549369 -0.865086833849618 -0.4937246373367354 0.08866088419789353 -0.9665038075849737 -0.2545491885481068 0.03278872570332908 0.9665038075849737 0.2545491885481068 -0.03278872570332908 0.8677736758636303 0.4957800139689537 -0.03422024586509059 0.9633734194420095 0.2535775438722758 -0.0872357951549369 0.865086833849618 0.4937246373367354 -0.08866088419789353 -0.9961731001040362 0.003826971249908059 0.08731843402264164 -0.9994515061203984 0.004016937546018515 0.03287173750227793 0.9994515061203984 -0.004016937546018515 -0.03287173750227793 0.9961731001040362 -0.003826971249908059 -0.08731843402264164 -0.7099894062738748 -0.7032360566172071 0.03706874225477108 -0.7080114117086912 -0.7002486815864958 0.0914965836883584 0.7099894062738748 0.7032360566172071 -0.03706874225477108 0.7080114117086912 0.7002486815864958 -0.0914965836883584 -0.9667476113080702 -0.2547619433525108 -0.02225776829316944 -0.8678676655324278 -0.4963588147550212 -0.02082407592870745 0.9667476113080702 0.2547619433525108 0.02225776829316944 0.8678676655324278 0.4963588147550212 0.02082407592870745 -0.9643714402632694 0.2622975101203016 0.03446362414543364 -0.9612506318023465 0.26094721570422 0.08890316909877266 0.9612506318023465 -0.26094721570422 -0.08890316909877266 0.9643714402632694 -0.2622975101203016 -0.03446362414543364 -0.9997453049990248 0.004196533475836602 -0.02217463053114829 0.9997453049990248 -0.004196533475836602 0.02217463053114829 -0.5028515834579754 -0.8590754043034987 0.09554964539226284 -0.5039037360371725 -0.8627795300238276 0.04114009455072638 0.5039037360371725 0.8627795300238276 -0.04114009455072638 0.5028515834579754 0.8590754043034987 -0.09554964539226284 -0.7098439725698252 -0.7041296532037469 -0.0179712572031096 0.7098439725698252 0.7041296532037469 0.0179712572031096 -0.8636542585292892 0.5026911349828662 0.03745590118875308 -0.8609859230398503 0.5002608697425152 0.09188200330684598 0.8609859230398503 -0.5002608697425152 -0.09188200330684598 0.8636542585292892 -0.5026911349828662 -0.03745590118875308 -0.964612008311427 0.2628690234825292 -0.02058032834376049 0.964612008311427 -0.2628690234825292 0.02058032834376049 -0.2635886523512184 -0.9593810268071964 0.1005438598524954 -0.2635610630079123 -0.963537810133879 0.04615684682198644 0.2635610630079123 0.963537810133879 -0.04615684682198644 0.2635886523512184 0.9593810268071964 -0.1005438598524954 -0.5034455859492645 -0.8639152194158322 -0.01389372699804716 0.5034455859492645 0.8639152194158322 0.01389372699804716 -0.7041636704104537 0.7088153838687764 0.04164464989692048 -0.7022118480233165 0.7054591033270555 0.09605193401835113 0.7022118480233165 -0.7054591033270555 -0.09605193401835113 0.7041636704104537 -0.7088153838687764 -0.04164464989692048 -0.8637419973544495 0.5036274239499192 -0.01758351079035673 0.8637419973544495 -0.5036274239499192 0.01758351079035673 -0.006527991742385073 -0.9943298866873145 0.1061388796068789 -0.005340343167872254 -0.9986443866689923 0.05177711569179734 0.005340343167872254 0.9986443866689923 -0.05177711569179734 0.006527991742385073 0.9943298866873145 -0.1061388796068789 -0.2627382146295269 -0.9648263911121083 -0.008869362258547843 0.2627382146295269 0.9648263911121083 0.008869362258547843 -0.4957485975781058 0.8625579959453142 0.1011287873463558 -0.4967686959163594 0.8666232298527479 0.04674441396735257 0.4967686959163594 -0.8666232298527479 -0.04674441396735257 0.4957485975781058 -0.8625579959453142 -0.1011287873463558 -0.7040093966786901 0.7100644477594669 -0.01338840603469372 0.7040093966786901 -0.7100644477594669 0.01338840603469372 0.2508121391617105 -0.9615402768986827 0.1119534133054077 0.2531611081561275 -0.965706804454626 0.05761788912478894 -0.2531611081561275 0.965706804454626 -0.05761788912478894 -0.2508121391617105 0.9615402768986827 -0.1119534133054077 -0.004125668177973782 -0.9999862387051477 -0.003240565138428967 0.004125668177973782 0.9999862387051477 0.003240565138428967 -0.2556663010262641 0.9608515176828975 0.1067665841264037 -0.255602959822791 0.9653603290205651 0.05240765290618087 0.255602959822791 -0.9653603290205651 -0.05240765290618087 0.2556663010262641 -0.9608515176828975 -0.1067665841264037 -0.4962997190493823 0.8681117528913998 -0.008280903533150582 0.4962997190493823 -0.8681117528913998 0.008280903533150582 0.4908944357137907 -0.8632467551609185 0.1175912100855496 0.4943268442499351 -0.8669697052866703 0.06328112806393561 -0.4943268442499351 0.8669697052866703 -0.06328112806393561 -0.4908944357137907 0.8632467551609185 -0.1175912100855496 0.2547680357419787 -0.9669986766857321 0.002609071140586218 -0.2547680357419787 0.9669986766857321 -0.002609071140586218 0.00167382987730056 0.9936411274714982 0.1125811178249354 0.002898491500944039 0.9982979112349293 0.05824842633922517 -0.002898491500944039 -0.9982979112349293 -0.05824842633922517 -0.00167382987730056 -0.9936411274714982 -0.1125811178249354 -0.2547680357415579 0.9669986766858427 -0.002609071140678736 0.2547680357415579 -0.9669986766858427 0.002609071140678736 0.6973576861583348 -0.7061478625431513 0.1226680634135547 0.7017218187437317 -0.7091618593028591 0.06838089213443585 -0.7017218187437317 0.7091618593028591 -0.06838089213443585 -0.6973576861583348 0.7061478625431513 -0.1226680634135547 0.4962997190502634 -0.8681117528908966 0.008280903533075491 -0.4962997190502634 0.8681117528908966 -0.008280903533075491 0.2587344904865029 0.9586922675913834 0.1181761375793826 0.2611192113412381 0.9631913346997988 0.06386869520939194 -0.2611192113412381 -0.9631913346997988 -0.06386869520939194 -0.2587344904865029 -0.9586922675913834 -0.1181761375793826 0.004125668178081118 0.9999862387051476 0.00324056513833697 -0.004125668178081118 -0.9999862387051476 -0.00324056513833697 0.8561317611749973 -0.5009496289585947 0.1268379941249607 0.8612124068624675 -0.5030376104171374 0.072569640842242 -0.8612124068624675 0.5030376104171374 -0.072569640842242 -0.8561317611749973 0.5009496289585947 -0.1268379941249607 0.7040093966790397 -0.7100644477591218 0.01338840603461996 -0.7040093966790397 0.7100644477591218 -0.01338840603461996 0.4979974215934802 0.858386645087563 0.1231703520396179 0.5014618843705664 0.8624330545897132 0.06888544748041871 -0.5014618843705664 -0.8624330545897132 -0.06888544748041871 -0.4979974215934802 -0.858386645087563 -0.1231703520396179 0.2627382146296279 0.9648263911120821 0.008869362258427773 -0.2627382146296279 -0.9648263911120821 -0.008869362258427773 0.9563964699376711 -0.261635974919952 0.1298168283330312 0.9619295885965742 -0.2626439855543604 0.07556191788557592 -0.9619295885965742 0.2626439855543604 -0.07556191788557592 -0.9563964699376711 0.261635974919952 -0.1298168283330312 0.8637419973544713 -0.5036274239498855 0.01758351079024716 -0.8637419973544713 0.5036274239498855 -0.01758351079024716 0.7031572498437336 0.6995599223709524 0.1272234137434791 0.7075475546070584 0.7028895811832548 0.0729567997763074 -0.7075475546070584 -0.7028895811832548 -0.0729567997763074 -0.7031572498437336 -0.6995599223709524 -0.1272234137434791 0.5034455859492535 0.8639152194158409 0.01389372699790075 -0.5034455859492535 -0.8639152194158409 -0.01389372699790075 0.9913189382393465 -0.004515730465406312 0.1314015634091868 0.9970096544536871 -0.004363412979959216 0.07715380452904377 -0.9970096544536871 0.004363412979959216 -0.07715380452904377 -0.9913189382393465 0.004515730465406312 -0.1314015634091868 0.9646120083116384 -0.2628690234817638 0.02058032834363091 -0.9646120083116384 0.2628690234817638 -0.02058032834363091 0.86023267198488 0.4930358781210236 0.1300591132338874 0.8653318241968873 0.4954335385349502 0.07580529616606925 -0.86023267198488 -0.4930358781210236 -0.1300591132338874 -0.8653318241968873 -0.4954335385349502 -0.07580529616606925 0.7098439725697178 0.7041296532038589 0.0179712572029752 -0.7098439725697178 -0.7041296532038589 -0.0179712572029752 0.9640619559183451 0.2542027131139009 0.07723681632762071 0.9585192575773746 0.2528887846562985 0.1314842022768474 -0.9585192575773746 -0.2528887846562985 -0.1314842022768474 -0.9640619559183451 -0.2542027131139009 -0.07723681632762071 0.9997453049990305 -0.004196533475135869 0.02217463053102053 -0.9997453049990305 0.004196533475135869 -0.02217463053102053 0.8678676655323241 0.4963588147552073 0.02082407592858751 -0.8678676655323241 -0.4963588147552073 -0.02082407592858751 0.966747611308065 0.2547619433525408 0.02225776829305026 -0.966747611308065 -0.2547619433525408 -0.02225776829305026</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID10308\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10306\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID10309\">-12.55058016962125 199.6006783718197 -12.23654077451296 199.6006783850828 -12.57246769909518 198.0678677216591 -12.21465311557837 198.0678677367675 -5.357009782713195 199.3494538328893 -5.042970387605001 199.3494538451553 -5.378897317041895 197.816643182796 -5.021082733525062 197.816643196774 -18.89954990074761 200.0452820990548 -18.58551050563955 200.0452821124075 -18.92143742977801 198.5124714488845 -18.56362284626133 198.5124714641006 -12.5505802949133 203.7697963905785 -12.55058038398011 205.8914061893556 -12.23654089980501 203.7697964037633 -12.23654098887182 205.8914062025378 2.169043782576579 197.7759183054684 2.190931325840459 199.3087289554352 2.526858366093292 197.7759183173599 2.504970720948601 199.3087289658707 -5.357009908428463 203.7697967094381 -5.357009990815238 205.8914065082141 -5.042970513320269 203.7697967216317 -5.042970595707159 205.8914065204089 -23.65720778242059 200.6529660725017 -23.6353201270406 199.1201554241391 -23.97124717752906 200.6529660599695 -23.99313471055752 199.1201554098584 -18.89955000800381 203.7697961186066 -18.89955009768083 205.8914059173811 -18.58551061289575 203.7697961318806 -18.58551070257262 205.8914059306556 9.556975890721848 197.9484683665827 9.578863446392269 199.4812790163737 9.914790474238597 197.9484683755794 9.892902841500622 199.4812790242685 2.190931217539741 203.7697969898443 2.190931147447278 205.8914067886222 2.504970612647886 203.7697970002182 2.504970542555578 205.8914067989943 -27.1060048106851 201.3823176384154 -27.08411716347215 199.8495069899366 -27.42004420579326 201.3823176275556 -27.4419317469889 199.8495069775625 -23.65720794301007 205.8914057776256 -23.65720785883424 203.7697959788492 -23.9712473381184 205.891405765166 -23.9712472539427 203.769795966391 16.28142364928683 198.3225343313138 16.30331121999011 199.8553449808867 16.6392382328036 198.3225343367985 16.61735061509819 199.8553449857036 9.578863368796924 203.7697971568481 9.578863315775703 205.891406955627 9.892902763905275 203.7697971646963 9.892902710883963 205.8914069634743 -28.69687176543466 202.1836327047102 -28.6749841300013 200.6508220560623 -29.01091116054294 202.1836326962622 -29.032798713518 200.6508220464378 -27.10600492461422 205.8914057843657 -27.10600485167595 203.7697959855889 -27.42004431972239 205.8914057735696 -27.42004424678411 203.7697959747931 21.90601465049012 200.4054348701559 22.22005404559844 200.4054348715636 21.8841270631527 198.8726242208219 22.24194164666952 198.8726242224244 16.30331117840705 203.7697971659483 16.30331114607009 205.8914069647285 16.61735057351513 203.7697971707368 16.61735054117839 205.8914069695157 -28.32139368681203 203.002302940549 -28.29950606596776 201.4694922916919 -28.63543308192022 203.0023029350902 -28.65732064948456 201.4694922854731 -28.69687183249374 205.8914059489048 -28.69687177576375 203.7697961501297 -29.0109112276021 205.8914059405084 -29.01091117087202 203.7697961417316 26.00515876408559 201.0940609979745 26.31919815919379 201.0940609958758 25.98327115964604 199.5612503488827 26.34108574316271 199.5612503464937 21.90601463135194 205.8914068137999 22.22005402646013 205.8914068151979 21.9060146408006 203.7697970150182 22.22005403590892 203.7697970164177 -26.00515878207501 203.7825372661025 -25.9832711776352 202.2497266170106 -26.31919817713861 203.782537264006 -26.34108576110773 202.2497266146224 -28.32139371591202 205.891406226917 -28.32139367925619 203.7697964281417 -28.63543311102012 205.8914062214902 -28.63543307436439 203.7697964227151 28.32139366720383 201.8742946863779 28.63543306231201 201.8742946809198 28.29950604635942 200.3414840375201 28.6573206298762 200.3414840313014 26.00515878800975 205.8914065436172 26.31919818311804 205.8914065415307 26.00515877392647 203.7697967448353 26.31919816903467 203.769796742749 -21.90601463227225 204.4711639374875 -21.88412704493503 202.9383532881539 -22.220054027422 204.4711639388957 -22.24194162849294 202.9383532897557 -26.00515878805052 205.8914065436099 -26.00515877396668 203.7697967448334 -26.31919818311385 205.8914065415247 -26.31919816903029 203.7697967427493 28.6968717791347 202.6929643628914 29.01091117424294 202.6929643544461 28.67498414370112 201.1601537142443 29.03279872721791 201.1601537046193 28.32139371591119 205.8914062269225 28.63543311101937 205.8914062214978 28.32139367925558 203.7697964281418 28.63543307436376 203.7697964227159 -16.30331114075251 205.0212541304138 -16.28142357004979 203.4884434808419 -16.61735053590221 205.0212541352282 -16.63923815360771 203.4884434863282 -21.90601463135242 205.8914068137979 -21.90601464080106 203.7697970150168 -22.22005402650261 205.8914068151931 -22.2200540359508 203.7697970164167 27.10600488372089 203.4942790981561 27.4200442788292 203.4942790872951 27.08411723650786 201.9614684496769 27.4419318200246 201.9614684373023 28.69687183249435 205.8914059489153 29.01091122760257 205.8914059405158 28.69687177576451 203.7697961501305 29.01091117087275 203.7697961417351 -9.57886329772133 205.395320076619 -9.556975742050872 203.8625094268327 -9.892902692784901 205.3953200845137 -9.914790325523446 203.8625094358277 -16.30331117836429 203.7697971659461 -16.61735057351399 203.7697971707321 -16.30331114602706 205.8914069647269 -16.61735054117722 205.8914069695131 23.6572079249257 204.2236306505065 23.97124732003374 204.2236306379731 23.63532026954546 202.6908200021434 23.99313485306227 202.6908199878635 27.10600492461317 205.8914057843734 27.42004431972149 205.8914057735778 27.10600485167511 203.7697959855899 27.42004424678342 203.7697959747929 -2.190931117820194 205.5678698015687 -2.169043574556589 204.0350591516068 -2.504970512928581 205.5678698120059 -2.526858158073381 204.0350591634972 -9.578863368807944 203.7697971568417 -9.892902763871517 203.7697971646898 -9.578863315786599 205.8914069556237 -9.892902710849821 205.8914069634706 18.92143763328938 203.2985042549635 18.56362304977251 203.2985042701781 18.89955010425912 204.8313149051308 18.58551070915089 204.8313149184837 23.65720794301143 205.8914057776312 23.97124733811966 205.891405765171 23.65720785883586 203.7697959788468 23.9712472539439 203.7697959663875 5.378897558360094 203.9943337098713 5.021082974843234 203.9943337238503 5.357010024031466 205.5271443599656 5.042970628923281 205.5271443722298 -2.190931217529421 203.7697969898365 -2.504970612637806 203.7697970002122 -2.19093114743717 205.8914067886201 -2.504970542545318 205.8914067989942 12.57246793875201 203.7431085293696 12.21465335523541 203.7431085444793 12.55058040927835 205.2759191795302 12.23654101417007 205.2759191927943 18.89955000800802 203.7697961186028 18.58551061289978 203.769796131877 18.89955009768477 205.8914059173872 18.58551070257653 205.8914059306597 5.35700990842536 203.7697967094354 5.042970513317175 203.7697967216272 5.357009990812209 205.8914065082163 5.042970595703853 205.8914065204108 12.55058029490839 203.769796390576 12.23654089980011 203.7697964037619 12.55058038397501 205.8914061893587 12.23654098886685 205.8914062025429</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10309\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10305\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10303\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10304\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10305\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 8 1 8 3 9 12 2 13 2 12 0 16 0 17 0 16 3 20 8 9 8 20 21 24 3 16 3 24 9 26 12 13 12 26 27 17 12 30 12 17 0 32 21 20 21 32 33 36 9 24 9 36 20 38 27 26 27 38 39 27 30 12 30 27 42 44 33 32 33 44 45 48 20 36 20 48 32 50 39 38 39 50 51 39 42 27 42 39 54 44 56 45 56 44 57 60 32 48 32 60 44 62 51 50 51 62 63 51 54 39 54 51 66 57 68 56 68 57 69 60 57 44 57 60 72 74 63 62 63 74 75 63 66 51 66 63 78 69 80 68 80 69 81 72 69 57 69 72 84 86 75 74 75 86 87 75 78 63 78 75 90 81 92 80 92 81 93 84 81 69 81 84 96 98 87 86 87 98 99 87 90 75 90 87 102 93 104 92 104 93 105 96 93 81 93 96 108 110 99 98 99 110 111 87 114 102 114 87 99 105 116 104 116 105 117 108 105 93 105 108 120 122 111 110 111 122 123 99 126 114 126 99 111 128 117 129 117 128 116 120 117 105 117 120 132 122 134 123 134 122 135 111 138 126 138 111 123 135 129 134 129 135 128 129 132 140 132 129 117 123 142 138 142 123 134 134 140 142 140 134 129</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10305\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10306\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 4 5 11 6 6 7 11 6 4 5 5 8 14 9 7 10 15 11 7 10 14 9 4 12 18 13 5 14 19 15 5 14 18 13 22 16 23 17 11 18 10 19 11 18 23 17 10 20 25 21 4 22 18 23 4 22 25 21 28 24 29 25 14 26 15 27 14 26 29 25 5 28 19 29 14 30 31 31 14 30 19 29 34 32 35 33 22 34 23 35 22 34 35 33 23 36 37 37 10 38 25 39 10 38 37 37 40 40 41 41 28 42 29 43 28 42 41 41 43 44 28 45 31 46 14 47 31 46 28 45 46 48 47 49 34 50 35 51 34 50 47 49 35 52 49 53 23 54 37 55 23 54 49 53 52 56 53 57 40 58 41 59 40 58 53 57 55 60 40 61 43 62 28 63 43 62 40 61 58 64 47 65 59 66 46 67 59 66 47 65 47 68 61 69 35 70 49 71 35 70 61 69 64 72 65 73 52 74 53 75 52 74 65 73 67 76 52 77 55 78 40 79 55 78 52 77 70 80 58 81 71 82 59 83 71 82 58 81 73 84 61 85 58 86 47 87 58 86 61 85 76 88 77 89 64 90 65 91 64 90 77 89 79 92 64 93 67 94 52 95 67 94 64 93 82 96 70 97 83 98 71 99 83 98 70 97 85 100 73 101 70 102 58 103 70 102 73 101 88 104 89 105 76 106 77 107 76 106 89 105 91 108 76 109 79 110 64 111 79 110 76 109 94 112 82 113 95 114 83 115 95 114 82 113 97 116 85 117 82 118 70 119 82 118 85 117 100 120 101 121 88 122 89 123 88 122 101 121 103 124 88 125 91 126 76 127 91 126 88 125 106 128 94 129 107 130 95 131 107 130 94 129 109 132 97 133 94 134 82 135 94 134 97 133 112 136 113 137 100 138 101 139 100 138 113 137 100 140 88 141 115 142 103 143 115 142 88 141 118 144 106 145 119 146 107 147 119 146 106 145 121 148 109 149 106 150 94 151 106 150 109 149 124 152 125 153 112 154 113 155 112 154 125 153 112 156 100 157 127 158 115 159 127 158 100 157 119 160 130 161 118 162 131 163 118 162 130 161 133 164 121 165 118 166 106 167 118 166 121 165 136 168 125 169 137 170 124 171 137 170 125 169 124 172 112 173 139 174 127 175 139 174 112 173 130 176 136 177 131 178 137 179 131 178 136 177 118 180 131 181 133 182 141 183 133 182 131 181 137 184 124 185 143 186 139 187 143 186 124 185 131 188 137 189 141 190 143 191 141 190 137 189</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10310\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10311\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10315\">-100.8700607635872 131.3096628394991 1785.143015594091 -91.24327110219861 116.0699219728685 1640.892699042995 -94.44675719934594 115.6153778860182 1785.236149153217 -97.66657466642869 131.7642069263418 1640.799565483985 -97.66657466642869 131.7642069263418 1640.799565483985 -100.8700607635872 131.3096628394991 1785.143015594091 -91.24327110219861 116.0699219728685 1640.892699042995 -94.44675719934594 115.6153778860182 1785.236149153217 -103.0136117317318 148.1317686178758 1785.148416275548 -99.81012563457057 148.5863127047272 1640.80496616531 -99.81012563457057 148.5863127047272 1640.80496616531 -103.0136117317318 148.1317686178758 1785.148416275548 -80.97795246474857 102.5729974278233 1641.078019944449 -84.18143856191068 102.1184533409818 1785.421470054673 -80.97795246474857 102.5729974278233 1641.078019944449 -84.18143856191068 102.1184533409818 1785.421470054673 -90.66786106245218 118.2086669758337 1830.61762775054 -100.8700607635872 131.3096628394991 1785.143015594091 -94.44675719934594 115.6153778860182 1785.236149153217 -96.54615705154242 132.5713156302469 1830.532396432907 -96.54615705154242 132.5713156302469 1830.532396432907 -90.66786106245218 118.2086669758337 1830.61762775054 -100.8700607635872 131.3096628394991 1785.143015594091 -94.44675719934594 115.6153778860182 1785.236149153217 -100.731330647676 164.9352965122009 1785.251983149921 -97.52784455051688 165.3898405990344 1640.908533039859 -97.52784455051688 165.3898405990344 1640.908533039859 -100.731330647676 164.9352965122009 1785.251983149921 -103.0136117317318 148.1317686178758 1785.148416275548 -98.50783096784585 147.9660912213806 1830.537338874661 -98.50783096784585 147.9660912213806 1830.537338874661 -103.0136117317318 148.1317686178758 1785.148416275548 -67.57018325500462 92.19322639426086 1641.342898875031 -70.77366935215696 91.73868230740408 1785.686348985249 -70.77366935215696 91.73868230740408 1785.686348985249 -67.57018325500462 92.19322639426086 1641.342898875031 -81.27353915787535 105.8569360285492 1830.787224454409 -84.18143856191068 102.1184533409818 1785.421470054673 -81.27353915787535 105.8569360285492 1830.787224454409 -84.18143856191068 102.1184533409818 1785.421470054673 -94.17875119566565 180.5751138656069 1785.446658305955 -90.97526509850695 181.0296579524452 1641.103208195929 -90.97526509850695 181.0296579524452 1641.103208195929 -94.17875119566565 180.5751138656069 1785.446658305955 -96.41919797577612 163.3438652337759 1830.632118256672 -100.731330647676 164.9352965122009 1785.251983149921 -100.731330647676 164.9352965122009 1785.251983149921 -96.41919797577612 163.3438652337759 1830.632118256672 -51.93368078720459 85.63797311469679 1641.669284773532 -55.13716688436421 85.183429027849 1786.012734883754 -55.13716688436421 85.183429027849 1786.012734883754 -51.93368078720459 85.63797311469679 1641.669284773532 -70.77366935215696 91.73868230740408 1785.686348985249 -69.00339885075937 96.35787284023492 1831.02962880912 -69.00339885075937 96.35787284023492 1831.02962880912 -70.77366935215696 91.73868230740408 1785.686348985249 -83.80242083668736 193.9853929714869 1785.719174953347 -80.59893473955185 194.4399370583254 1641.37572484339 -80.59893473955185 194.4399370583254 1641.37572484339 -83.80242083668736 193.9853929714869 1785.719174953347 -90.42259496210772 177.6566677814499 1830.810275520686 -94.17875119566565 180.5751138656069 1785.446658305955 -94.17875119566565 180.5751138656069 1785.446658305955 -90.42259496210772 177.6566677814499 1830.810275520686 -35.13404686400713 83.35396726710573 1642.034934980187 -38.33753296115197 82.89942318024603 1786.378385090373 -38.33753296115197 82.89942318024603 1786.378385090373 -35.13404686400713 83.35396726710573 1642.034934980187 -55.13716688436421 85.183429027849 1786.012734883754 -54.69362992566744 90.3588228692394 1831.328321358575 -54.69362992566744 90.3588228692394 1831.328321358575 -55.13716688436421 85.183429027849 1786.012734883754 -67.10598323988711 204.7067895571383 1641.707511423338 -70.30946933702808 204.2522454703009 1786.050961533179 -70.30946933702808 204.2522454703009 1786.050961533179 -67.10598323988711 204.7067895571383 1641.707511423338 -80.92668051237229 189.9291050238175 1831.059669543563 -83.80242083668736 193.9853929714869 1785.719174953347 -83.80242083668736 193.9853929714869 1785.719174953347 -80.92668051237229 189.9291050238175 1831.059669543563 -18.31614877455172 85.49686007546674 1642.414931037783 -21.51963487169451 85.04231598861108 1786.758381147882 -21.51963487169451 85.04231598861108 1786.758381147882 -18.31614877455172 85.49686007546674 1642.414931037783 -38.33753296115197 82.89942318024603 1786.378385090373 -39.31941948683902 88.26861145718902 1831.662946699214 -39.31941948683902 88.26861145718902 1831.662946699214 -38.33753296115197 82.89942318024603 1786.378385090373 -51.4159329460806 211.1305464178818 1642.075957228464 -54.61941904323408 210.6760023310498 1786.419407338253 -54.61941904323408 210.6760023310498 1786.419407338253 -51.4159329460806 211.1305464178818 1642.075957228464 -70.30946933702808 204.2522454703009 1786.050961533179 -68.57858550357923 199.3248306439561 1831.363304534756 -68.57858550357923 199.3248306439561 1831.363304534756 -70.30946933702808 204.2522454703009 1786.050961533179 -2.626098483159694 91.92061693522818 1642.783376842794 -5.829584580325445 91.46607284836034 1787.126826952837 -5.829584580325445 91.46607284836034 1787.126826952837 -2.626098483159694 91.92061693522818 1642.783376842794 -21.51963487169451 85.04231598861108 1786.758381147882 -23.92849456859653 90.2296830575763 1832.010700666986 -23.92849456859653 90.2296830575763 1832.010700666986 -21.51963487169451 85.04231598861108 1786.758381147882 -34.59803485662519 213.2734392262464 1642.455953285915 -37.80152095377412 212.8188951394124 1786.799403395753 -37.80152095377412 212.8188951394124 1786.799403395753 -34.59803485662519 213.2734392262464 1642.455953285915 -54.61941904323408 210.6760023310498 1786.419407338253 -54.2198122043983 205.203541468037 1831.700488271516 -54.2198122043983 205.203541468037 1831.700488271516 -54.61941904323408 210.6760023310498 1786.419407338253 10.86685301842408 102.1874694355147 1643.115163422664 7.663366921278566 101.7329253486679 1787.458613532721 7.663366921278566 101.7329253486679 1787.458613532721 10.86685301842408 102.1874694355147 1643.115163422664 -5.829584580325445 91.46607284836034 1787.126826952837 -9.569721271847811 96.10839388066258 1832.347884403638 -9.569721271847811 96.10839388066258 1832.347884403638 -5.829584580325445 91.46607284836034 1787.126826952837 -17.79840093342068 210.9894333786483 1642.821603492535 -21.00188703057006 210.5348892918153 1787.165053602321 -21.00188703057006 210.5348892918153 1787.165053602321 -17.79840093342068 210.9894333786483 1642.821603492535 -37.80152095377412 212.8188951394124 1786.799403395753 -38.82888728615376 207.1646130684266 1832.04824223924 -38.82888728615376 207.1646130684266 1832.04824223924 -37.80152095377412 212.8188951394124 1786.799403395753 18.03969728175184 115.14320445649 1787.731130180269 21.24318337887553 115.5977485433006 1643.387680070266 21.24318337887553 115.5977485433006 1643.387680070266 18.03969728175184 115.14320445649 1787.731130180269 7.663366921278566 101.7329253486679 1787.458613532721 2.778373738899973 105.504119502296 1832.651519394893 2.778373738899973 105.504119502296 1832.651519394893 7.663366921278566 101.7329253486679 1787.458613532721 -2.16189846562429 204.4341800990956 1643.147989391031 -5.365384562765257 203.9796360122623 1787.491439500775 -5.365384562765257 203.9796360122623 1787.491439500775 -2.16189846562429 204.4341800990956 1643.147989391031 -21.00188703057006 210.5348892918153 1787.165053602321 -23.45467684732739 205.0744016563731 1832.382867579898 -23.45467684732739 205.0744016563731 1832.382867579898 -21.00188703057006 210.5348892918153 1787.165053602321 24.59227673275382 130.7830218074644 1787.925805336245 27.79576282988182 131.2375658943161 1643.582355226345 27.79576282988182 131.2375658943161 1643.582355226345 24.59227673275382 130.7830218074644 1787.925805336245 18.03969728175184 115.14320445649 1787.731130180269 12.27428819014403 117.7765567466023 1832.900913417778 12.27428819014403 117.7765567466023 1832.900913417778 18.03969728175184 115.14320445649 1787.731130180269 11.24587074411897 194.0544090655255 1643.412868321677 8.042384646988239 193.5998649786795 1787.75631843147 8.042384646988239 193.5998649786795 1787.75631843147 11.24587074411897 194.0544090655255 1643.412868321677 -5.365384562765257 203.9796360122623 1787.491439500775 -9.144907922223183 199.0753516853754 1832.681560129317 -9.144907922223183 199.0753516853754 1832.681560129317 -5.365384562765257 203.9796360122623 1787.491439500775 26.87455781680387 147.5865497017804 1788.029372210589 30.07804391393461 148.0410937886252 1643.685922100716 30.07804391393461 148.0410937886252 1643.685922100716 26.87455781680387 147.5865497017804 1788.029372210589 24.59227673275382 130.7830218074644 1787.925805336245 18.27089120278129 132.0893592918406 1833.079070681823 18.27089120278129 132.0893592918406 1833.079070681823 24.59227673275382 130.7830218074644 1787.925805336245 21.51118938156378 180.5574845204843 1643.598189223072 18.30770328443236 180.1029404336365 1787.941639332919 21.51118938156378 180.5574845204843 1643.598189223072 18.30770328443236 180.1029404336365 1787.941639332919 8.042384646988239 193.5998649786795 1787.75631843147 3.125232384890978 189.576288497072 1832.923964484078 3.125232384890978 189.576288497072 1832.923964484078 8.042384646988239 193.5998649786795 1787.75631843147 24.73100684866381 164.408655480168 1788.034772892037 27.93449294579045 164.8631995670075 1643.691322782272 27.93449294579045 164.8631995670075 1643.691322782272 24.73100684866381 164.408655480168 1788.034772892037 26.87455781680387 147.5865497017804 1788.029372210589 20.3595241948608 147.4671333042347 1833.173850063769 20.3595241948608 147.4671333042347 1833.173850063769 26.87455781680387 147.5865497017804 1788.029372210589 18.30770328443236 180.1029404336365 1787.941639332919 12.51955428946599 177.2245575497792 1833.093561187916 18.30770328443236 180.1029404336365 1787.941639332919 12.51955428946599 177.2245575497792 1833.093561187916 18.3978502785626 162.8619088953706 1833.178792505529 24.73100684866381 164.408655480168 1788.034772892037 24.73100684866381 164.408655480168 1788.034772892037 18.3978502785626 162.8619088953706 1833.178792505529</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10315\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10312\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10316\">-0.9667476113080569 -0.2547619433525612 -0.02225776829317038 -0.8678676655322334 -0.4963588147553616 -0.02082407592869736 -0.8678676655323626 -0.4963588147551354 -0.02082407592869951 -0.9667476113080035 -0.2547619433527638 -0.02225776829316983 0.9667476113080035 0.2547619433527638 0.02225776829316983 0.9667476113080569 0.2547619433525612 0.02225776829317038 0.8678676655322334 0.4963588147553616 0.02082407592869736 0.8678676655323626 0.4963588147551354 0.02082407592869951 -0.999745304999026 0.004196533475514149 -0.02217463053115461 -0.9997453049990279 0.00419653347511455 -0.02217463053115592 0.9997453049990279 -0.00419653347511455 0.02217463053115592 0.999745304999026 -0.004196533475514149 0.02217463053115461 -0.7098439725696649 -0.7041296532039085 -0.0179712572031119 -0.709843972569954 -0.7041296532036171 -0.0179712572031174 0.7098439725696649 0.7041296532039085 0.0179712572031119 0.709843972569954 0.7041296532036171 0.0179712572031174 -0.8641890845389377 -0.4931019083183953 0.1001385748675783 -0.9623444330149192 -0.2532754711457618 0.09871538867413748 -0.8641890845389472 -0.493101908318379 0.1001385748675782 -0.9623444330150113 -0.2532754711454127 0.09871538867413655 0.9623444330150113 0.2532754711454127 -0.09871538867413655 0.8641890845389377 0.4931019083183953 -0.1001385748675783 0.9623444330149192 0.2532754711457618 -0.09871538867413748 0.8641890845389472 0.493101908318379 -0.1001385748675782 -0.9646120083115682 0.2628690234820119 -0.02058032834375214 -0.9646120083117038 0.2628690234815144 -0.02058032834375671 0.9646120083117038 -0.2628690234815144 0.02058032834375671 0.9646120083115682 -0.2628690234820119 0.02058032834375214 -0.9951003179190623 0.003785344720447586 0.09879791719833318 -0.9951003179190615 0.003785344720582316 0.09879791719833359 0.9951003179190615 -0.003785344720582316 -0.09879791719833359 0.9951003179190623 -0.003785344720447586 -0.09879791719833318 -0.5034455859492482 -0.8639152194158418 -0.01389372699804828 -0.5034455859492497 -0.8639152194158408 -0.01389372699804831 0.5034455859492497 0.8639152194158408 0.01389372699804831 0.5034455859492482 0.8639152194158418 0.01389372699804828 -0.7073233972802001 -0.6993501914368691 0.1029704879915158 -0.7073233972802443 -0.6993501914368244 0.102970487991515 0.7073233972802001 0.6993501914368691 -0.1029704879915158 0.7073233972802443 0.6993501914368244 -0.102970487991515 -0.8637419973545932 0.5036274239496735 -0.01758351079033467 -0.8637419973544209 0.503627423949969 -0.01758351079032992 0.8637419973544209 -0.503627423949969 0.01758351079032992 0.8637419973545932 -0.5036274239496735 0.01758351079033467 -0.9602244798265173 0.2605622694913773 0.1003805362577687 -0.9602244798265178 0.2605622694913746 0.1003805362577687 0.9602244798265178 -0.2605622694913746 -0.1003805362577687 0.9602244798265173 -0.2605622694913773 -0.1003805362577687 -0.2627382146296277 -0.964826391112081 -0.008869362258544551 -0.2627382146292666 -0.9648263911121794 -0.008869362258536849 0.2627382146292666 0.9648263911121794 0.008869362258536849 0.2627382146296277 0.964826391112081 0.008869362258544551 -0.5024375085926164 -0.8579648408478476 0.1070181378466852 -0.5024375085926808 -0.85796484084781 0.1070181378466839 0.5024375085926808 0.85796484084781 -0.1070181378466839 0.5024375085926164 0.8579648408478476 -0.1070181378466852 -0.7040093966787395 0.7100644477594182 -0.01338840603467855 -0.7040093966786547 0.7100644477595024 -0.01338840603467639 0.7040093966786547 -0.7100644477595024 0.01338840603467639 0.7040093966787395 -0.7100644477594182 0.01338840603467855 -0.8600936494683478 0.4995563800877667 0.1033553929789144 -0.8600936494682009 0.4995563800880185 0.1033553929789184 0.8600936494682009 -0.4995563800880185 -0.1033553929789184 0.8600936494683478 -0.4995563800877667 -0.1033553929789144 -0.0041256681783495 -0.9999862387051461 -0.003240565138443491 -0.00412566817802259 -0.9999862387051476 -0.00324056513843624 0.00412566817802259 0.9999862387051476 0.00324056513843624 0.0041256681783495 0.9999862387051461 0.003240565138443491 -0.263494053200428 -0.9581365303170348 0.1120056837845456 -0.2634940532002409 -0.958136530317086 0.1120056837845496 0.2634940532002409 0.958136530317086 -0.1120056837845496 0.263494053200428 0.9581365303170348 -0.1120056837845456 -0.4962997190501186 0.8681117528909788 -0.008280903533177186 -0.4962997190495295 0.8681117528913155 -0.008280903533163051 0.4962997190495295 -0.8681117528913155 0.008280903533163051 0.4962997190501186 -0.8681117528909788 0.008280903533177186 -0.7015315774594624 0.7044806228290429 0.1075197557923302 -0.7015315774591732 0.7044806228293296 0.1075197557923376 0.7015315774591732 -0.7044806228293296 -0.1075197557923376 0.7015315774594624 -0.7044806228290429 -0.1075197557923302 0.2547680357414727 -0.9669986766858656 0.002609071140557 0.2547680357417947 -0.9669986766857808 0.002609071140564416 -0.2547680357417947 0.9669986766857808 -0.002609071140564416 -0.2547680357414727 0.9669986766858656 -0.002609071140557 -0.00677663271538672 -0.9930387247487755 0.1175932327915447 -0.006776632715292216 -0.9930387247487759 0.1175932327915468 0.006776632715292216 0.9930387247487759 -0.1175932327915468 0.00677663271538672 0.9930387247487755 -0.1175932327915447 -0.2547680357418757 0.966998676685759 -0.002609071140706587 -0.2547680357416463 0.9669986766858193 -0.002609071140701308 0.2547680357416463 -0.9669986766858193 0.002609071140701308 0.2547680357418757 -0.966998676685759 0.002609071140706587 -0.4953440069714037 0.861369749225515 0.1125898302542795 -0.4953440069712973 0.8613697492255759 0.112589830254282 0.4953440069712973 -0.8613697492255759 -0.112589830254282 0.4953440069714037 -0.861369749225515 -0.1125898302542795 0.496299719049885 -0.8681117528911135 0.008280903533058163 0.4962997190499236 -0.8681117528910913 0.008280903533059087 -0.4962997190499236 0.8681117528910913 -0.008280903533059087 -0.496299719049885 0.8681117528911135 -0.008280903533058163 0.2502198849016301 -0.9602928972709723 0.1234000026366967 0.2502198849015883 -0.9602928972709832 0.1234000026366957 -0.2502198849015883 0.9602928972709832 -0.1234000026366957 -0.2502198849016301 0.9602928972709723 -0.1234000026366967 0.004125668178080374 0.9999862387051477 0.003240565138319428 0.004125668177800463 0.9999862387051488 0.003240565138313219 -0.004125668177800463 -0.9999862387051488 -0.003240565138313219 -0.004125668178080374 -0.9999862387051477 -0.003240565138319428 -0.2555822801912997 0.9595320245852704 0.1182200991689142 -0.2555822801912153 0.9595320245852927 0.1182200991689161 0.2555822801912153 -0.9595320245852927 -0.1182200991689161 0.2555822801912997 -0.9595320245852704 -0.1182200991689142 0.7040093966785554 -0.7100644477596015 0.01338840603463316 0.7040093966786323 -0.7100644477595255 0.0133884060346351 -0.7040093966786323 0.7100644477595255 -0.0133884060346351 -0.7040093966785554 0.7100644477596015 -0.01338840603463316 0.4899816116820295 -0.8621306219111248 0.1290302715513616 0.4899816116819024 -0.8621306219111975 0.1290302715513586 -0.4899816116819024 0.8621306219111975 -0.1290302715513586 -0.4899816116820295 0.8621306219111248 -0.1290302715513616 0.2627382146292321 0.9648263911121898 0.008869362258427367 0.2627382146292512 0.9648263911121846 0.008869362258427773 -0.2627382146292512 -0.9648263911121846 -0.008869362258427773 -0.2627382146292321 -0.9648263911121898 -0.008869362258427367 0.001414237426158123 0.992277852063153 0.1240268690140881 0.001414237426003789 0.9922778520631538 0.1240268690140846 -0.001414237426003789 -0.9922778520631538 -0.1240268690140846 -0.001414237426158123 -0.992277852063153 -0.1240268690140881 0.8637419973542788 -0.5036274239502145 0.01758351079027624 0.8637419973541426 -0.5036274239504481 0.01758351079027249 -0.8637419973541426 0.5036274239504481 -0.01758351079027249 -0.8637419973542788 0.5036274239502145 -0.01758351079027624 0.6961691821703075 -0.7052414955144227 0.1341003460133713 0.696169182170207 -0.7052414955145224 0.1341003460133687 -0.696169182170207 0.7052414955145224 -0.1341003460133687 -0.6961691821703075 0.7052414955144227 -0.1341003460133713 0.5034455859491006 0.8639152194159295 0.01389372699792932 0.5034455859493563 0.8639152194157804 0.01389372699793452 -0.5034455859493563 -0.8639152194157804 -0.01389372699793452 -0.5034455859491006 -0.8639152194159295 -0.01389372699792932 0.2581316579109134 0.957375657631441 0.1296144180210256 0.2581316579107835 0.9573756576314764 0.1296144180210229 -0.2581316579107835 -0.9573756576314764 -0.1296144180210229 -0.2581316579109134 -0.957375657631441 -0.1296144180210256 0.9646120083115275 -0.2628690234821689 0.02058032834364953 0.9646120083115229 -0.2628690234821859 0.02058032834364938 -0.9646120083115229 0.2628690234821859 -0.02058032834364938 -0.9646120083115275 0.2628690234821689 -0.02058032834364953 0.8547312541789887 -0.5003172527733393 0.1382647088267701 0.8547312541790169 -0.5003172527732909 0.1382647088267709 -0.8547312541790169 0.5003172527732909 -0.1382647088267709 -0.8547312541789887 0.5003172527733393 -0.1382647088267701 0.70984397256995 0.7041296532036239 0.01797125720300122 0.7098439725698823 0.7041296532036921 0.01797125720299993 -0.7098439725698823 -0.7041296532036921 -0.01797125720299993 -0.70984397256995 -0.7041296532036239 -0.01797125720300122 0.4970751133028526 0.8572039681624116 0.1346019639588197 0.4970751133029889 0.8572039681623321 0.1346019639588225 -0.4970751133029889 -0.8572039681623321 -0.1346019639588225 -0.4970751133028526 -0.8572039681624116 -0.1346019639588197 0.9997453049990301 -0.004196533475180272 0.0221746305310387 0.9997453049990283 -0.004196533475622464 0.02217463053103726 -0.9997453049990283 0.004196533475622464 -0.02217463053103726 -0.9997453049990301 0.004196533475180272 -0.0221746305310387 0.9548620845372173 -0.261323142176679 0.1412395655478566 0.9548620845371842 -0.2613231421768005 0.1412395655478555 -0.9548620845371842 0.2613231421768005 -0.1412395655478555 -0.9548620845372173 0.261323142176679 -0.1412395655478566 0.8678676655323995 0.4963588147550758 0.02082407592859176 0.8678676655324145 0.4963588147550491 0.02082407592859201 -0.8678676655323995 -0.4963588147550758 -0.02082407592859176 -0.8678676655324145 -0.4963588147550491 -0.02082407592859201 0.7019610019906818 0.698589318751336 0.1386496138140396 0.7019610019909431 0.6985893187510726 0.1386496138140445 -0.7019610019909431 -0.6985893187510726 -0.1386496138140445 -0.7019610019906818 -0.698589318751336 -0.1386496138140396 0.966747611308014 0.2547619433527347 0.02225776829305441 0.9667476113080922 0.2547619433524376 0.02225776829305522 -0.9667476113080922 -0.2547619433524376 -0.02225776829305522 -0.966747611308014 -0.2547619433527347 -0.02225776829305441 0.9897379226296666 -0.004546217406158453 0.1428221846073211 0.9897379226296663 -0.004546217406235288 0.1428221846073209 -0.9897379226296663 0.004546217406235288 -0.1428221846073209 -0.9897379226296666 0.004546217406158453 -0.1428221846073211 0.8588266892497263 0.4923410356324325 0.1414815269381055 0.8588266892496403 0.4923410356325828 0.141481526938104 -0.8588266892497263 -0.4923410356324325 -0.1414815269381055 -0.8588266892496403 -0.4923410356325828 -0.141481526938104 0.9569820377256045 0.2525145984598143 0.1429047131316121 0.9569820377257123 0.2525145984594049 0.1429047131316132 -0.9569820377257123 -0.2525145984594049 -0.1429047131316132 -0.9569820377256045 -0.2525145984598143 -0.1429047131316121</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10316\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10314\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID10317\">-12.55058099611845 220.4729168338575 -12.55058110836238 223.1466151584373 -12.23654160101014 220.4729168470393 -12.23654171325384 223.1466151716213 -5.357010557050751 220.4729171527152 -5.357010660876275 223.1466154772975 -5.042971161942058 220.4729171649113 -5.042971265767736 223.1466154894911 -18.89955071402056 220.4729165618826 -18.89955082703323 223.1466148864646 -18.58551131891188 220.4729165751563 -18.58551143192485 223.1466148997383 -12.53725812206224 219.1058117634702 -12.24986449381116 219.1058117756209 -12.55058096977819 218.2612442328356 -12.23654157466965 218.2612442461152 2.190930665711986 220.4729174331229 2.190930577379942 223.1466157577019 2.504970060820311 220.4729174434948 2.50496997248858 223.1466157680771 -5.343687671421802 218.8282776083401 -5.056294043170709 218.8282776195813 -5.35701052181615 217.983710077749 -5.042971126707609 217.9837100900311 -23.6572086276183 223.146614746707 -23.65720852153828 220.4729164221251 -23.97124802272689 223.1466147342487 -23.97124791664656 220.4729164096667 -18.88622786091733 219.5969768091802 -18.59883423266631 219.5969768214179 -18.89955070838846 218.7524092785438 -18.58551131328008 218.7524092919139 9.57886295136854 220.472917600127 9.578862884550068 223.1466159247054 9.892902346477108 220.4729176079745 9.89290227965855 223.1466159325535 2.190930697182366 217.9387202432313 2.204253552506406 218.7832877737449 2.504970092291005 217.9387202536818 2.491647180757567 218.7832877833084 -27.10600551782494 223.1466147534506 -27.10600542590654 220.4729164288686 -27.42004491293341 223.146614742653 -27.42004482101519 220.4729164180711 -23.67053146026539 220.2683007255088 -23.65720854308494 219.4237331959687 -23.95792508851654 220.2683007140236 -23.97124793819353 219.4237331834199 16.30331092382608 220.4729176092278 16.30331088307442 223.1466159338049 16.61735031893442 220.4729176140153 16.617350278183 223.1466159385936 9.578862970384064 218.1293406559001 9.592185832553087 218.9739081863058 9.892902365492546 218.1293406638052 9.879579460804155 218.97390819354 -28.69687229388294 223.1466149179891 -28.69687222239072 220.4729165934078 -29.01091168899156 223.1466149095921 -29.01091161749906 220.4729165850101 -27.11932838515486 221.0740339039479 -27.10600547248045 220.2294663743384 -27.40672201340602 221.0740338939964 -27.42004486758891 220.2294663634625 21.90601455451203 223.1466157828765 22.22005394962048 223.146615784275 21.90601456641947 220.4729174583016 22.22005396152802 220.472917459698 16.30331092908124 218.5425808162992 16.31663379954395 219.3871483465763 16.61735032418982 218.5425808211227 16.60402742779516 219.3871483509884 -28.32139401403582 223.1466151959991 -28.32139396784156 220.4729168714194 -28.63543340914434 223.1466151905732 -28.63543336295007 220.4729168659919 -28.71019518863131 221.9592669706488 -28.69687228245575 221.1146994409361 -28.99758881688243 221.9592669629078 -29.01091167756437 221.1146994324782 26.00515890254722 223.1466155126931 26.31919829765565 223.1466155106076 26.00515888479884 220.4729171881191 26.31919827990747 220.4729171860327 21.91933744486731 219.9948466190202 22.20673107311839 219.9948466203102 21.90601456522726 219.1502790888888 22.2200539603357 219.1502790902974 -26.00515890259359 223.1466155126914 -26.00515888484485 220.4729171881127 -26.31919829765342 223.146615510607 -26.31919827990517 220.4729171860273 -28.33471692051766 222.8636727216847 -28.32139402239119 222.0191051918452 -28.6221105487687 222.8636727166832 -28.6354334174997 222.0191051863799 28.32139401403529 223.1466151959994 28.63543340914384 223.1466151905736 28.32139396784086 220.4729168714245 28.63543336294931 220.4729168659997 26.01848178073131 220.7555894013434 26.30587540898227 220.7555893994211 26.00515889165553 219.911021871361 26.31919828676396 219.9110218692603 -21.90601455450404 223.1466157828762 -21.90601456641138 220.4729174582973 -22.22005394965791 223.1466157842746 -22.22005396156471 220.472917459696 -26.01848180064572 223.7256173434649 -26.00515891156986 222.8810498134826 -26.30587542884799 223.7256173415435 -26.31919830662968 222.8810498113832 28.69687229388316 223.1466149179869 29.01091168899159 223.1466149095909 28.69687222239064 220.472916593413 29.0109116174991 220.472916585016 28.3347168988328 221.6175333848596 28.62211052708387 221.6175333798591 28.32139400070628 220.7729658550209 28.63543339581483 220.7729658495557 -16.30331092378524 220.4729176092279 -16.61735031893849 220.4729176140135 -16.30331088303302 223.1466159338058 -16.61735027818703 223.1466159385924 -21.91933742470469 224.4863606703816 -21.90601454506472 223.6417931402512 -22.20673105300136 224.4863606716714 -22.22005394021858 223.6417931416598 27.1060055178251 223.1466147534477 27.42004491293374 223.1466147426511 27.10600542590674 220.4729164288746 27.42004482101525 220.4729164180772 28.71019520378682 222.5219385755826 28.99758883203791 222.5219385678412 28.69687229761122 221.6773710458688 29.01091169271965 221.6773710374118 -9.578862951376904 220.4729176001253 -9.892902346437381 220.4729176079721 -9.578862884558468 223.1466159247013 -9.892902279618193 223.1466159325499 -16.31663371188034 225.0940592471575 -16.30331084141782 224.2494917168828 -16.60402734017704 225.0940592515702 -16.61735023657183 224.2494917217042 23.65720862761859 223.1466147467053 23.97124802272727 223.1466147342447 23.65720852153865 220.4729164221313 23.97124791664702 220.4729164096717 27.11932846594671 223.4071713106132 27.40672209419809 223.4071713006624 27.10600555327232 222.5626037810034 27.42004494838096 222.5626037701285 -2.190930665703844 220.4729174331213 -2.50497006081218 220.4729174434964 -2.190930577371952 223.1466157576968 -2.504969972480406 223.1466157680725 -9.592185668095041 225.5072993893525 -9.578862805926075 224.6627318589452 -9.879579296297138 225.5072993965856 -9.892902200985803 224.6627318668508 18.89955071401865 220.472916561888 18.5855113189101 220.4729165751606 18.89955082703128 223.146614886462 18.58551143192271 223.1466148997355 23.67053161791325 224.2129044753346 23.95792524616425 224.2129044638485 23.65720870073268 223.3683369457959 23.97124809584136 223.368336933245 5.357010557050348 220.4729171527188 5.042971161941706 220.4729171649106 5.357010660876007 223.1466154772924 5.042971265767278 223.1466154894861 -2.204253322394353 225.6979194656994 -2.190930467070554 224.8533519351846 -2.491646950645508 225.6979194752641 -2.50496986217901 224.8533519456355 12.55058099611555 220.4729168338588 12.23654160100718 220.4729168470441 12.55058110835923 223.1466151584338 12.23654171325097 223.1466151716176 18.89955093349781 224.0396611447615 18.58551153838923 224.0396611581314 18.88622808602669 224.8842286753998 18.59883445777558 224.8842286876369 5.357010788750539 224.8083615357829 5.04297139364181 224.8083615480652 5.343687938356174 225.6529290663744 5.056294310105056 225.6529290776155 12.55058123486713 224.5308267383524 12.23654183975887 224.5308267516317 12.53725838715138 225.3753942689885 12.24986475890034 225.3753942811388</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10317\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10313\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10311\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10312\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10313\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 3 0 3 8 9 2 12 13 12 2 1 16 17 18 17 16 19 24 9 8 9 24 25 19 28 17 28 19 29 32 13 12 13 32 33 36 18 37 18 36 16 40 25 24 25 40 41 44 28 29 28 44 45 48 33 32 33 48 49 52 36 37 36 52 53 56 41 40 41 56 57 60 45 44 45 60 61 64 49 48 49 64 65 68 53 52 53 68 69 56 72 57 72 56 73 76 61 60 61 76 77 80 65 64 65 80 81 84 69 68 69 84 85 73 88 72 88 73 89 76 92 77 92 76 93 96 81 80 81 96 97 100 85 84 85 100 101 89 104 88 104 89 105 93 108 92 108 93 109 112 97 96 97 112 113 116 101 100 101 116 117 105 120 104 120 105 121 109 124 108 124 109 125 112 128 113 128 112 129 132 117 116 117 132 133 121 136 120 136 121 137 125 140 124 140 125 141 129 144 128 144 129 145 148 133 132 133 148 149 137 152 136 152 137 153 141 156 140 156 141 157 145 160 144 160 145 161 164 149 148 149 164 165 168 153 169 153 168 152 157 172 156 172 157 173 161 176 160 176 161 177 180 165 164 165 180 181 177 169 176 169 177 168 184 173 185 173 184 172 180 188 181 188 180 189 189 185 188 185 189 184</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10313\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10314\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 11 5 4 6 5 7 4 6 11 5 6 8 7 9 14 10 15 11 14 10 7 9 20 12 21 13 22 14 23 15 22 14 21 13 26 16 27 17 10 18 11 19 10 18 27 17 30 20 20 21 31 22 22 23 31 22 20 21 34 24 35 25 15 26 14 27 15 26 35 25 21 28 38 29 23 30 39 31 23 30 38 29 42 32 43 33 26 34 27 35 26 34 43 33 46 36 47 37 31 38 30 39 31 38 47 37 50 40 51 41 34 42 35 43 34 42 51 41 54 44 55 45 38 46 39 47 38 46 55 45 58 48 59 49 42 50 43 51 42 50 59 49 62 52 63 53 46 54 47 55 46 54 63 53 66 56 67 57 50 58 51 59 50 58 67 57 70 60 71 61 54 62 55 63 54 62 71 61 74 64 59 65 75 66 58 67 75 66 59 65 78 68 79 69 62 70 63 71 62 70 79 69 82 72 83 73 66 74 67 75 66 74 83 73 86 76 87 77 70 78 71 79 70 78 87 77 90 80 74 81 91 82 75 83 91 82 74 81 94 84 79 85 95 86 78 87 95 86 79 85 98 88 99 89 82 90 83 91 82 90 99 89 102 92 103 93 86 94 87 95 86 94 103 93 106 96 90 97 107 98 91 99 107 98 90 97 110 100 94 101 111 102 95 103 111 102 94 101 114 104 115 105 98 106 99 107 98 106 115 105 118 108 119 109 102 110 103 111 102 110 119 109 122 112 106 113 123 114 107 115 123 114 106 113 126 116 110 117 127 118 111 119 127 118 110 117 130 120 115 121 131 122 114 123 131 122 115 121 134 124 135 125 118 126 119 127 118 126 135 125 138 128 122 129 139 130 123 131 139 130 122 129 142 132 126 133 143 134 127 135 143 134 126 133 146 136 130 137 147 138 131 139 147 138 130 137 150 140 151 141 134 142 135 143 134 142 151 141 154 144 138 145 155 146 139 147 155 146 138 145 158 148 142 149 159 150 143 151 159 150 142 149 162 152 146 153 163 154 147 155 163 154 146 153 166 156 167 157 150 158 151 159 150 158 167 157 155 160 170 161 154 162 171 163 154 162 170 161 174 164 158 165 175 166 159 167 175 166 158 165 178 168 162 169 179 170 163 171 179 170 162 169 182 172 183 173 166 174 167 175 166 174 183 173 170 176 178 177 171 178 179 179 171 178 178 177 175 180 186 181 174 182 187 183 174 182 186 181 190 184 183 185 191 186 182 187 191 186 183 185 186 188 190 189 187 190 191 191 187 190 190 189</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10318\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10319\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10323\">-112.072795536609 220.2677513080551 1872.600532472066 -127.48868854937 199.26902573837 1830.055707537942 -128.4233767082567 199.1364024140295 1872.171112300224 -111.1381073777163 220.4003746323963 1830.485127709746 -111.1381073777163 220.4003746323963 1830.485127709746 -112.072795536609 220.2677513080551 1872.600532472066 -127.48868854937 199.26902573837 1830.055707537942 -128.4233767082567 199.1364024140295 1872.171112300224 -89.87648683288444 236.5784452365309 1831.007942926435 -90.81117499177958 236.4458219122 1873.123347688763 -90.81117499177958 236.4458219122 1873.123347688763 -89.87648683288444 236.5784452365309 1831.007942926435 -89.87648683288444 236.5784452365309 1831.007942926435 -98.50783096784585 147.9660912213806 1830.537338874661 -111.1381073777163 220.4003746323963 1830.485127709746 -96.41919797577612 163.3438652337759 1830.632118256672 -90.42259496210772 177.6566677814499 1830.810275520686 -80.92668051237229 189.9291050238175 1831.059669543563 -65.15277121851273 246.7007287746376 1831.588524195007 -68.57858550357923 199.3248306439561 1831.363304534756 -54.2198122043983 205.203541468037 1831.700488271516 -38.65184089583909 250.077408351447 1832.187305861353 -38.82888728615376 207.1646130684266 1832.04824223924 -23.45467684732739 205.0744016563731 1832.382867579898 -12.17969047149222 246.4783688340201 1832.763481944536 -9.144907922223183 199.0753516853754 1832.681560129317 12.45964675039249 236.1488788177984 1833.277786996599 3.125232384890978 189.576288497072 1832.923964484078 12.51955428946599 177.2245575497792 1833.093561187916 33.58704065658594 219.7928759770778 1833.695171978221 18.3978502785626 162.8619088953706 1833.178792505529 20.3595241948608 147.4671333042347 1833.173850063769 32.98980060424447 75.03284989371281 1833.226061228703 49.34038177739399 96.16419878968385 1833.655481400583 49.76269426704471 198.5249948758898 1833.987192792545 59.66565848859614 120.8087594652536 1833.962242252412 59.88426351973385 173.7946064644386 1834.133948703933 63.26198019678418 147.2870458440719 1834.12543853937 -137.8139652615878 174.6244650603731 1829.748946685973 -138.0325702927212 121.6386180611795 1829.577240234441 -141.4102869697811 148.14617868155 1829.585750399114 -127.9110010400252 96.90822964972445 1829.723996145778 -127.48868854937 199.26902573837 1830.055707537942 -111.7353474295717 75.64034854853776 1830.016016960266 -90.60795352338869 59.28434570781992 1830.43340194188 -96.54615705154242 132.5713156302469 1830.532396432907 -90.66786106245218 118.2086669758337 1830.61762775054 -81.27353915787535 105.8569360285492 1830.787224454409 -65.96861630150011 48.95485569158552 1830.947706993969 -69.00339885075937 96.35787284023492 1831.02962880912 -54.69362992566744 90.3588228692394 1831.328321358575 -39.49646587715756 45.35581617417961 1831.523883077074 -39.31941948683902 88.26861145718902 1831.662946699214 -12.9955355544837 48.73249575098289 1832.122664743476 -23.92849456859653 90.2296830575763 1832.010700666986 -9.569721271847811 96.10839388066258 1832.347884403638 11.7281800574483 58.85477928809124 1832.703246011943 2.778373738899973 105.504119502296 1832.651519394893 12.27428819014403 117.7765567466023 1832.900913417778 18.27089120278129 132.0893592918406 1833.079070681823 20.3595241948608 147.4671333042347 1833.173850063769 18.27089120278129 132.0893592918406 1833.079070681823 32.98980060424447 75.03284989371281 1833.226061228703 12.27428819014403 117.7765567466023 1832.900913417778 11.7281800574483 58.85477928809124 1832.703246011943 2.778373738899973 105.504119502296 1832.651519394893 -9.569721271847811 96.10839388066258 1832.347884403638 -12.9955355544837 48.73249575098289 1832.122664743476 -23.92849456859653 90.2296830575763 1832.010700666986 -39.31941948683902 88.26861145718902 1831.662946699214 -39.49646587715756 45.35581617417961 1831.523883077074 -54.69362992566744 90.3588228692394 1831.328321358575 -65.96861630150011 48.95485569158552 1830.947706993969 -69.00339885075937 96.35787284023492 1831.02962880912 -81.27353915787535 105.8569360285492 1830.787224454409 -90.60795352338869 59.28434570781992 1830.43340194188 -90.66786106245218 118.2086669758337 1830.61762775054 -96.54615705154242 132.5713156302469 1830.532396432907 -98.50783096784585 147.9660912213806 1830.537338874661 -111.1381073777163 220.4003746323963 1830.485127709746 -111.7353474295717 75.64034854853776 1830.016016960266 -127.48868854937 199.26902573837 1830.055707537942 -127.9110010400252 96.90822964972445 1829.723996145778 -137.8139652615878 174.6244650603731 1829.748946685973 -138.0325702927212 121.6386180611795 1829.577240234441 -141.4102869697811 148.14617868155 1829.585750399114 63.26198019678418 147.2870458440719 1834.12543853937 59.88426351973385 173.7946064644386 1834.133948703933 59.66565848859614 120.8087594652536 1833.962242252412 49.76269426704471 198.5249948758898 1833.987192792545 49.34038177739399 96.16419878968385 1833.655481400583 33.58704065658594 219.7928759770778 1833.695171978221 18.3978502785626 162.8619088953706 1833.178792505529 12.51955428946599 177.2245575497792 1833.093561187916 12.45964675039249 236.1488788177984 1833.277786996599 3.125232384890978 189.576288497072 1832.923964484078 -9.144907922223183 199.0753516853754 1832.681560129317 -12.17969047149222 246.4783688340201 1832.763481944536 -23.45467684732739 205.0744016563731 1832.382867579898 -38.65184089583909 250.077408351447 1832.187305861353 -38.82888728615376 207.1646130684266 1832.04824223924 -54.2198122043983 205.203541468037 1831.700488271516 -65.15277121851273 246.7007287746376 1831.588524195007 -68.57858550357923 199.3248306439561 1831.363304534756 -80.92668051237229 189.9291050238175 1831.059669543563 -89.87648683288444 236.5784452365309 1831.007942926435 -90.42259496210772 177.6566677814499 1830.810275520686 -96.41919797577612 163.3438652337759 1830.632118256672 -137.8139652615878 174.6244650603731 1829.748946685973 -138.7486534204779 174.4918417360292 1871.86435144829 -137.8139652615878 174.6244650603731 1829.748946685973 -138.7486534204779 174.4918417360292 1871.86435144829 -138.9672584516247 121.5059947368493 1871.692644996723 -138.7486534204779 174.4918417360292 1871.86435144829 -142.3449751286742 148.0135553572065 1871.701155161396 -136.440967421988 147.9887726792054 1871.832107703891 -133.2581190147621 123.0104944023188 1871.824088510321 -128.8456891989217 96.77560632538852 1871.839400908106 -123.7204864497157 99.706859168438 1871.962377734466 -112.6700355884721 75.50772522419376 1872.131421722548 -108.4780436244807 79.66597120769161 1872.237551194208 -91.54264168228451 59.15172238348453 1872.548806704159 -88.56953782824985 64.25358391547864 1872.630856272925 -66.90330446039275 48.82223236724873 1873.063111756184 -65.35170083068738 54.52002601555476 1873.11548987976 -40.43115403604679 45.22319284983463 1873.639287839407 -40.4067898538899 51.12862339336613 1873.65842503513 -13.93022371336815 48.59987242664087 1874.238069505696 -15.4347593575144 54.31049453305411 1874.222661605269 7.862588045901021 63.8488001737288 1874.769747800598 10.79349189855907 58.72215596373898 1874.818650774187 27.89757663820024 79.09352055220387 1875.262400601014 32.05511244535751 74.90022656937519 1875.341465991023 43.3048550514568 99.00575316584715 1875.667046532086 48.40569361850885 96.03157546535944 1875.770886162845 53.03444272157026 122.2285122638325 1875.956109642646 58.73097032971259 120.6761361409088 1876.077647014632 56.42328433120451 147.1792051977357 1876.10989075916 -133.0521258123386 172.939465613108 1871.985888820389 -128.4233767082567 199.1364024140295 1872.171112300224 -123.3225381411985 196.1622247135352 1872.274951930871 -112.072795536609 220.2677513080551 1872.600532472066 -107.9152597294501 216.0744573252309 1872.679597862029 -90.81117499177958 236.4458219122 1873.123347688763 -87.88027113911926 231.3191777022107 1873.172250662312 -66.08745937739627 246.568105450295 1873.703928957293 -64.58292373324957 240.8574833438811 1873.719336857719 -39.58652905472627 249.9447850271053 1874.302710623691 -39.61089323687884 244.0393544835702 1874.283573427932 -14.66598226008614 240.647951861388 1874.826508583228 -13.11437863038623 246.3457455096919 1874.8788867068 8.551854737472468 230.9143939614749 1875.311142190009 11.52495859150554 236.0162554934618 1875.393191758873 28.46036053369608 215.5020066692563 1875.704447268827 32.65235249769398 219.6602526527425 1875.81057674051 43.70280335893699 195.4611187085034 1875.979620728591 48.82800610815093 198.3923715515519 1876.102597554935 53.24043592397879 172.157483474639 1876.117909952718 58.94957536083712 173.6619831400995 1876.249353466264 62.3272920378929 147.1544225197354 1876.240843301639 62.3272920378929 147.1544225197354 1876.240843301639 58.73097032971259 120.6761361409088 1876.077647014632 58.94957536083712 173.6619831400995 1876.249353466264 56.42328433120451 147.1792051977357 1876.10989075916 53.24043592397879 172.157483474639 1876.117909952718 48.82800610815093 198.3923715515519 1876.102597554935 43.70280335893699 195.4611187085034 1875.979620728591 32.65235249769398 219.6602526527425 1875.81057674051 28.46036053369608 215.5020066692563 1875.704447268827 11.52495859150554 236.0162554934618 1875.393191758873 8.551854737472468 230.9143939614749 1875.311142190009 -13.11437863038623 246.3457455096919 1874.8788867068 -14.66598226008614 240.647951861388 1874.826508583228 -39.58652905472627 249.9447850271053 1874.302710623691 -39.61089323687884 244.0393544835702 1874.283573427932 -64.58292373324957 240.8574833438811 1873.719336857719 -66.08745937739627 246.568105450295 1873.703928957293 -87.88027113911926 231.3191777022107 1873.172250662312 -90.81117499177958 236.4458219122 1873.123347688763 -107.9152597294501 216.0744573252309 1872.679597862029 -112.072795536609 220.2677513080551 1872.600532472066 -123.3225381411985 196.1622247135352 1872.274951930871 -128.4233767082567 199.1364024140295 1872.171112300224 -133.0521258123386 172.939465613108 1871.985888820389 -136.440967421988 147.9887726792054 1871.832107703891 -138.7486534204779 174.4918417360292 1871.86435144829 53.03444272157026 122.2285122638325 1875.956109642646 48.40569361850885 96.03157546535944 1875.770886162845 43.3048550514568 99.00575316584715 1875.667046532086 32.05511244535751 74.90022656937519 1875.341465991023 27.89757663820024 79.09352055220387 1875.262400601014 10.79349189855907 58.72215596373898 1874.818650774187 7.862588045901021 63.8488001737288 1874.769747800598 -13.93022371336815 48.59987242664087 1874.238069505696 -15.4347593575144 54.31049453305411 1874.222661605269 -40.4067898538899 51.12862339336613 1873.65842503513 -40.43115403604679 45.22319284983463 1873.639287839407 -65.35170083068738 54.52002601555476 1873.11548987976 -66.90330446039275 48.82223236724873 1873.063111756184 -88.56953782824985 64.25358391547864 1872.630856272925 -91.54264168228451 59.15172238348453 1872.548806704159 -108.4780436244807 79.66597120769161 1872.237551194208 -112.6700355884721 75.50772522419376 1872.131421722548 -123.7204864497157 99.706859168438 1871.962377734466 -128.8456891989217 96.77560632538852 1871.839400908106 -133.2581190147621 123.0104944023188 1871.824088510321 -138.9672584516247 121.5059947368493 1871.692644996723 -142.3449751286742 148.0135553572065 1871.701155161396 -65.15277121851273 246.7007287746376 1831.588524195007 -66.08745937739627 246.568105450295 1873.703928957293 -66.08745937739627 246.568105450295 1873.703928957293 -65.15277121851273 246.7007287746376 1831.588524195007 -38.65184089583909 250.077408351447 1832.187305861353 -39.58652905472627 249.9447850271053 1874.302710623691 -39.58652905472627 249.9447850271053 1874.302710623691 -38.65184089583909 250.077408351447 1832.187305861353 -12.17969047149222 246.4783688340201 1832.763481944536 -13.11437863038623 246.3457455096919 1874.8788867068 -13.11437863038623 246.3457455096919 1874.8788867068 -12.17969047149222 246.4783688340201 1832.763481944536 12.45964675039249 236.1488788177984 1833.277786996599 11.52495859150554 236.0162554934618 1875.393191758873 11.52495859150554 236.0162554934618 1875.393191758873 12.45964675039249 236.1488788177984 1833.277786996599 33.58704065658594 219.7928759770778 1833.695171978221 32.65235249769398 219.6602526527425 1875.81057674051 32.65235249769398 219.6602526527425 1875.81057674051 33.58704065658594 219.7928759770778 1833.695171978221 49.76269426704471 198.5249948758898 1833.987192792545 48.82800610815093 198.3923715515519 1876.102597554935 49.76269426704471 198.5249948758898 1833.987192792545 48.82800610815093 198.3923715515519 1876.102597554935 59.88426351973385 173.7946064644386 1834.133948703933 58.94957536083712 173.6619831400995 1876.249353466264 59.88426351973385 173.7946064644386 1834.133948703933 58.94957536083712 173.6619831400995 1876.249353466264 63.26198019678418 147.2870458440719 1834.12543853937 62.3272920378929 147.1544225197354 1876.240843301639 63.26198019678418 147.2870458440719 1834.12543853937 62.3272920378929 147.1544225197354 1876.240843301639 59.66565848859614 120.8087594652536 1833.962242252412 58.73097032971259 120.6761361409088 1876.077647014632 59.66565848859614 120.8087594652536 1833.962242252412 58.73097032971259 120.6761361409088 1876.077647014632 49.34038177739399 96.16419878968385 1833.655481400583 48.40569361850885 96.03157546535944 1875.770886162845 49.34038177739399 96.16419878968385 1833.655481400583 48.40569361850885 96.03157546535944 1875.770886162845 32.98980060424447 75.03284989371281 1833.226061228703 32.05511244535751 74.90022656937519 1875.341465991023 32.98980060424447 75.03284989371281 1833.226061228703 32.05511244535751 74.90022656937519 1875.341465991023 10.79349189855907 58.72215596373898 1874.818650774187 11.7281800574483 58.85477928809124 1832.703246011943 10.79349189855907 58.72215596373898 1874.818650774187 11.7281800574483 58.85477928809124 1832.703246011943 -13.93022371336815 48.59987242664087 1874.238069505696 -12.9955355544837 48.73249575098289 1832.122664743476 -13.93022371336815 48.59987242664087 1874.238069505696 -12.9955355544837 48.73249575098289 1832.122664743476 -40.43115403604679 45.22319284983463 1873.639287839407 -39.49646587715756 45.35581617417961 1831.523883077074 -40.43115403604679 45.22319284983463 1873.639287839407 -39.49646587715756 45.35581617417961 1831.523883077074 -66.90330446039275 48.82223236724873 1873.063111756184 -65.96861630150011 48.95485569158552 1830.947706993969 -66.90330446039275 48.82223236724873 1873.063111756184 -65.96861630150011 48.95485569158552 1830.947706993969 -91.54264168228451 59.15172238348453 1872.548806704159 -90.60795352338869 59.28434570781992 1830.43340194188 -91.54264168228451 59.15172238348453 1872.548806704159 -90.60795352338869 59.28434570781992 1830.43340194188 -112.6700355884721 75.50772522419376 1872.131421722548 -111.7353474295717 75.64034854853776 1830.016016960266 -112.6700355884721 75.50772522419376 1872.131421722548 -111.7353474295717 75.64034854853776 1830.016016960266 -128.8456891989217 96.77560632538852 1871.839400908106 -127.9110010400252 96.90822964972445 1829.723996145778 -127.9110010400252 96.90822964972445 1829.723996145778 -128.8456891989217 96.77560632538852 1871.839400908106 -138.9672584516247 121.5059947368493 1871.692644996723 -138.0325702927212 121.6386180611795 1829.577240234441 -138.0325702927212 121.6386180611795 1829.577240234441 -138.9672584516247 121.5059947368493 1871.692644996723 -142.3449751286742 148.0135553572065 1871.701155161396 -141.4102869697811 148.14617868155 1829.585750399114 -141.4102869697811 148.14617868155 1829.585750399114 -142.3449751286742 148.0135553572065 1871.701155161396</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10323\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10320\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10324\">-0.7040093966785826 0.7100644477595743 -0.01338840603465417 -0.8637419973543893 0.503627423950025 -0.01758351079028257 -0.8637419973543808 0.5036274239500393 -0.01758351079028233 -0.7040093966785291 0.7100644477596276 -0.01338840603465281 0.7040093966785291 -0.7100644477596276 0.01338840603465281 0.7040093966785826 -0.7100644477595743 0.01338840603465417 0.8637419973543893 -0.503627423950025 0.01758351079028257 0.8637419973543808 -0.5036274239500393 0.01758351079028233 -0.4962997190498391 0.8681117528911388 -0.008280903533145739 -0.4962997190497658 0.8681117528911805 -0.008280903533143981 0.4962997190497658 -0.8681117528911805 0.008280903533143981 0.4962997190498391 -0.8681117528911388 0.008280903533145739 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 0.02218792451953099 0.003148254615044258 -0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.02218792451953099 -0.003148254615044258 0.9997488607137267 -0.9646120083115659 0.262869023482023 -0.02058032834370771 -0.9646120083115717 0.262869023482002 -0.02058032834370791 0.9646120083115659 -0.262869023482023 0.02058032834370771 0.9646120083115717 -0.262869023482002 0.02058032834370791 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 -0.02218792451955769 -0.00314825461510004 0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 0.02218792451955769 0.00314825461510004 -0.999748860713726 -0.2547680357418473 0.9669986766857667 -0.002609071140654065 -0.2547680357416973 0.9669986766858062 -0.002609071140650612 0.2547680357416973 -0.9669986766858062 0.002609071140650612 0.2547680357418473 -0.9669986766857667 0.002609071140654065 0.004125668177937945 0.9999862387051481 0.003240565138324679 0.004125668177944629 0.9999862387051482 0.003240565138324828 -0.004125668177944629 -0.9999862387051482 -0.003240565138324828 -0.004125668177937945 -0.9999862387051481 -0.003240565138324679 0.2627382146293796 0.9648263911121499 0.008869362258404109 0.2627382146292725 0.9648263911121791 0.008869362258401826 -0.2627382146292725 -0.9648263911121791 -0.008869362258401826 -0.2627382146293796 -0.9648263911121499 -0.008869362258404109 0.5034455859492442 0.863915219415846 0.01389372699791758 0.5034455859492467 0.8639152194158446 0.01389372699791763 -0.5034455859492467 -0.8639152194158446 -0.01389372699791763 -0.5034455859492442 -0.863915219415846 -0.01389372699791758 0.7098439725699473 0.7041296532036274 0.01797125720296896 0.709843972569832 0.7041296532037437 0.01797125720296677 -0.709843972569832 -0.7041296532037437 -0.01797125720296677 -0.7098439725699473 -0.7041296532036274 -0.01797125720296896 0.8678676655324273 0.4963588147550284 0.02082407592855837 0.8678676655323957 0.4963588147550835 0.02082407592855784 -0.8678676655324273 -0.4963588147550284 -0.02082407592855837 -0.8678676655323957 -0.4963588147550835 -0.02082407592855784 0.9667476113080087 0.2547619433527562 0.02225776829303842 0.9667476113080555 0.2547619433525778 0.02225776829303889 -0.9667476113080087 -0.2547619433527562 -0.02225776829303842 -0.9667476113080555 -0.2547619433525778 -0.02225776829303889 0.9997453049990304 -0.004196533475342179 0.02217463053099103 0.9997453049990313 -0.004196533475151443 0.02217463053099165 -0.9997453049990304 0.004196533475342179 -0.02217463053099103 -0.9997453049990313 0.004196533475151443 -0.02217463053099165 0.964612008311589 -0.26286902348195 0.0205803283435643 0.9646120083115769 -0.2628690234819943 0.02058032834356389 -0.964612008311589 0.26286902348195 -0.0205803283435643 -0.9646120083115769 0.2628690234819943 -0.02058032834356389 0.8637419973544525 -0.5036274239499201 0.01758351079018824 0.8637419973542925 -0.5036274239501946 0.01758351079018383 -0.8637419973544525 0.5036274239499201 -0.01758351079018824 -0.8637419973542925 0.5036274239501946 -0.01758351079018383 0.7040093966786105 -0.7100644477595484 0.01338840603456079 0.7040093966786775 -0.7100644477594819 0.01338840603456248 -0.7040093966786105 0.7100644477595484 -0.01338840603456079 -0.7040093966786775 0.7100644477594819 -0.01338840603456248 0.4962997190499303 -0.8681117528910881 0.008280903532998599 0.4962997190497677 -0.868111752891181 0.0082809035329947 -0.4962997190499303 0.8681117528910881 -0.008280903532998599 -0.4962997190497677 0.868111752891181 -0.0082809035329947 0.2547680357417496 -0.9669986766857928 0.002609071140507571 0.2547680357417345 -0.9669986766857968 0.002609071140507222 -0.2547680357417496 0.9669986766857928 -0.002609071140507571 -0.2547680357417345 0.9669986766857968 -0.002609071140507222 -0.004125668177983917 -0.9999862387051477 -0.003240565138461749 -0.004125668177956046 -0.9999862387051478 -0.003240565138461131 0.004125668177983917 0.9999862387051477 0.003240565138461749 0.004125668177956046 0.9999862387051478 0.003240565138461131 -0.2627382146294092 -0.9648263911121403 -0.008869362258563503 -0.2627382146293338 -0.964826391112161 -0.008869362258561895 0.2627382146294092 0.9648263911121403 0.008869362258563503 0.2627382146293338 0.964826391112161 0.008869362258561895 -0.503445585949341 -0.8639152194157866 -0.01389372699809809 -0.5034455859492395 -0.8639152194158459 -0.01389372699809603 0.503445585949341 0.8639152194157866 0.01389372699809809 0.5034455859492395 0.8639152194158459 0.01389372699809603 -0.7098439725698111 -0.7041296532037602 -0.0179712572031497 -0.7098439725698595 -0.7041296532037112 -0.01797125720315062 0.7098439725698111 0.7041296532037602 0.0179712572031497 0.7098439725698595 0.7041296532037112 0.01797125720315062 -0.8678676655323063 -0.4963588147552334 -0.02082407592871566 -0.8678676655324107 -0.4963588147550509 -0.02082407592871741 0.8678676655324107 0.4963588147550509 0.02082407592871741 0.8678676655323063 0.4963588147552334 0.02082407592871566 -0.966747611308037 -0.254761943352635 -0.02225776829319302 -0.9667476113080114 -0.2547619433527319 -0.02225776829319275 0.9667476113080114 0.2547619433527319 0.02225776829319275 0.966747611308037 0.254761943352635 0.02225776829319302 -0.9997453049990265 0.004196533475464609 -0.02217463053115019 -0.9997453049990267 0.00419653347538703 -0.02217463053115044 0.9997453049990267 -0.00419653347538703 0.02217463053115044 0.9997453049990265 -0.004196533475464609 0.02217463053115019</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10324\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10322\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID10325\">16.21290558989031 223.9850987348094 16.21290557800021 224.7652095542898 16.70775554581695 223.9850987423524 16.70775553392679 224.7652095618321 21.81560926688812 224.7652094043376 22.31045922281475 224.7652094065414 21.81560927036241 223.9850985848571 22.31045922628896 223.9850985870611 3.158207498402484 27.67011682022094 3.445430950963923 27.66022814700103 4.440912251423032 27.21331882473088 3.72542687862128 27.72501532186196 4.802656620443275 27.55098358511879 3.979114021752297 27.86006320594595 4.189204020698367 28.05616850910821 5.064680778096431 27.9707690298859 4.341379589171489 28.29996697893758 4.425270213745375 28.57484415272235 5.209128211136754 28.44406747481107 4.435158886965329 28.86206760528375 5.226155065687831 28.93862441299375 4.37037171209319 29.14206353298889 4.235323828030648 29.39575067607971 5.114600989749564 29.42073660639091 4.039218524899566 29.60584067499244 3.795420055028664 29.75801624349122 3.520542881243869 29.84190686806519 2.237838128215825 30.29870486356567 4.882068209245793 29.85754890575032 2.674650427575302 30.53123764406961 4.54440344888917 30.21929327473739 3.156762620972371 30.64279172000767 4.124618004080381 30.48131743241634 3.651319559155128 30.62576486545686 3.027430820491134 26.88625882282949 2.554132375565937 27.03070625586986 3.521987758673801 26.86923196827863 2.134346930757203 27.29273041354869 4.004099952023379 26.98078604420569 1.796682170400552 27.6544747825358 2.883330324617633 27.75400744479482 2.639531854746834 27.90618301329369 1.564149389896762 28.09128708189541 2.443426551615588 28.1162730122064 2.308378667553245 28.36996015529718 1.452595313958715 28.57339927529246 2.2435914926811 28.64995608300253 1.46962216850943 29.06795621347531 2.253480165900995 28.93717953556391 2.337370790474923 29.21205670934869 1.614069601549855 29.54125465840044 2.489546358973807 29.45585517921939 2.69963635788648 29.65196048235062 1.876093759228866 29.96104010320899 2.953323500977399 29.78700836641313 3.233319428682431 29.85179554128526 9.488457583187749 223.9850987248264 9.488457563692005 224.7652095443061 9.983307539114319 223.9850987371925 9.983307519618652 224.7652095566727 -3.027430820477681 26.88625882282571 -3.521987758660477 26.86923196827471 -2.554132375552538 27.03070625586615 -3.045427611016007 26.99412918943922 -2.599434845605387 27.13024311672741 -2.134346930743768 27.29273041354491 -2.203867791843385 27.37715049607872 -1.796682170387077 27.65447478253203 -1.885683690737767 27.71802499762438 -1.564149389883301 28.09128708189156 -1.66656626295534 28.12963658740561 -1.452595313945124 28.57339927528876 -1.561447999090469 28.58393461579927 -1.469622168496056 29.06795621347142 -1.577492535109582 29.04995942293316 -1.713606462397752 29.49595218834346 -1.614069601536494 29.5412546583965 -1.960513841749061 29.89151924210575 -1.87609375921532 29.96104010320528 -2.301388343294607 30.2097033432112 -2.237838128202461 30.29870486356189 -2.712999933075959 30.42882077099368 -2.674650427561907 30.53123764406574 -3.167297961469513 30.53393903485857 -3.633322768603499 30.51789449883962 -3.156762620959044 30.64279172000384 -3.511452418149958 26.97808465342 -4.004099952009682 26.98078604420184 -3.965750446495745 27.08320291727381 -4.440912251409572 27.213318824727 -4.377362036317344 27.3023203450777 -4.802656620430099 27.55098358511494 -4.718236537896346 27.62050444621445 -5.064680778083055 27.970769029882 -4.965143917221807 28.01607149993503 -5.101257844509965 28.4620642653454 -5.209128211123432 28.44406747480721 -5.117302380528983 28.92808907247942 -5.226155065674385 28.93862441299002 -5.012184116663935 29.38238710087321 -5.114600989736097 29.42073660638723 -4.793066688881619 29.79399869065451 -4.882068209232497 29.85754890574669 -4.474882587776101 30.13487319220003 -4.544403448875711 30.2192932747337 -4.079315534013814 30.38178057155148 -4.124618004066846 30.48131743241281 -3.651319559141805 30.6257648654531 25.9147536328824 224.7652091351554 26.40960358880905 224.7652091318705 25.91475362770408 223.9850983156757 26.40960358363063 223.98509831239 28.23098876159079 224.7652088194248 28.7258387175173 224.7652088108744 28.23098874811269 223.9850979999441 28.72583870403925 223.9850979913947 28.60646705675368 224.7652085422691 29.10131701268022 224.7652085290383 28.60646703589417 223.9850977227898 29.10131699182089 223.9850977095576 27.01560029306135 224.7652083784197 27.51045024898808 224.7652083614075 27.01560026624227 223.9850975589402 27.51045022216881 223.9850975419282 23.56680341142763 224.7652083721552 24.06165336735424 224.7652083525216 23.5668033804764 223.9850975526754 24.06165333640311 223.9850975330421 18.98995614288301 223.9850976850229 18.49510618695637 223.9850977059374 18.98995617585699 224.7652085045027 18.49510621993032 224.765208525419 12.64098642397026 223.9850979570198 12.14613646804365 223.9850979777951 12.64098645671985 224.7652087765014 12.14613650079325 224.7652087972757 5.447415973841004 223.9850982761629 4.952566017914399 223.98509829538 5.447416004134388 224.7652090956435 4.952566048207816 224.7652091148594 -2.10052526926286 223.9850985570898 -2.595375225189409 223.9850985734373 -2.100525243490079 224.7652093765692 -2.595375199416764 224.7652093929158 -9.488457583191293 223.9850987248229 -9.983307539069108 223.985098737191 -9.488457563695613 224.7652095443015 -9.983307519573083 224.7652095566703 -16.21290558983791 223.9850987348098 -16.70775554581001 223.9850987423522 -16.2129055779475 224.7652095542891 -16.7077555339198 224.7652095618325 -21.81560926689107 224.7652094043365 -21.8156092703654 223.9850985848562 -22.31045922286349 224.7652094065386 -22.31045922633759 223.9850985870597 -25.91475363293065 224.765209135152 -25.91475362775215 223.9850983156731 -26.40960358880821 224.7652091318668 -26.40960358362985 223.9850983123882 -28.230988761591 224.7652088194224 -28.23098874811291 223.9850979999439 -28.72583871751762 224.765208810874 -28.72583870403948 223.9850979913935 -28.60646705675348 224.7652085422692 -28.60646703589412 223.9850977227886 -29.10131701268017 224.7652085290363 -29.10131699182068 223.9850977095579 -27.0156002930609 224.765208378419 -27.0156002662417 223.9850975589407 -27.51045024898765 224.7652083614078 -27.51045022216841 223.9850975419282 -23.56680341142748 224.7652083721595 -23.5668033804762 223.9850975526799 -24.06165336735396 224.7652083525263 -24.06165333640271 223.9850975330467 -18.98995614288351 223.9850976850253 -18.98995617585753 224.7652085045058 -18.49510618695692 223.9850977059429 -18.49510621993088 224.7652085254225 -12.6409864239726 223.9850979570244 -12.6409864567224 224.7652087765041 -12.14613646804589 223.9850979777988 -12.14613650079553 224.7652087972793 -5.447415973842408 223.9850982761689 -5.447416004135704 224.7652090956485 -4.952566017915707 223.985098295384 -4.952566048209272 224.7652091148636 2.100525269268007 223.9850985570936 2.10052524349535 224.7652093765739 2.595375225194645 223.9850985734429 2.595375199421992 224.7652093929225</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10325\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10321\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10319\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10320\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10321\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 0 8 3 8 0 9 12 13 14 13 12 15 15 12 16 16 12 17 17 12 18 17 18 19 19 18 20 20 18 21 20 21 22 22 21 23 23 21 24 23 24 25 25 24 26 25 26 27 27 26 28 28 26 29 28 29 30 30 29 31 31 29 32 32 29 33 33 29 34 33 34 35 35 34 36 35 36 37 38 39 40 39 38 41 41 38 42 41 42 43 43 42 14 43 14 44 44 14 13 44 13 45 44 45 46 44 46 47 44 47 48 48 47 49 48 49 50 48 50 51 51 50 52 51 52 53 53 52 54 53 54 55 53 55 56 56 55 57 56 57 58 56 58 32 32 58 59 32 59 31 2 108 109 108 2 1 112 113 114 113 112 115 115 112 116 116 112 117 116 117 118 118 117 119 118 119 120 120 119 121 120 121 122 122 121 123 122 123 124 124 123 125 124 125 126 126 125 127 126 127 128 128 127 129 129 127 130 129 130 131 131 130 132 131 132 133 133 132 134 133 134 135 135 134 136 135 136 137 113 138 139 138 113 115 139 138 140 139 140 141 141 140 142 141 142 143 143 142 144 143 144 145 145 144 146 145 146 147 147 146 148 147 148 149 147 149 150 150 149 151 150 151 152 152 151 153 152 153 154 154 153 155 154 155 156 156 155 157 156 157 158 158 157 137 158 137 136 158 136 159 9 208 8 208 9 209 209 212 208 212 209 213 213 216 212 216 213 217 217 220 216 220 217 221 221 224 220 224 221 225 228 225 229 225 228 224 232 229 233 229 232 228 236 233 237 233 236 232 240 237 241 237 240 236 244 241 245 241 244 240 248 245 249 245 248 244 248 252 253 252 248 249 253 256 257 256 253 252 257 260 261 260 257 256 261 264 265 264 261 260 265 268 269 268 265 264 269 272 273 272 269 268 276 273 272 273 276 277 280 277 276 277 280 281 284 281 280 281 284 285 109 285 284 285 109 108</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10321\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10322\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 5 5 11 6 4 7 11 6 5 5 60 8 61 9 62 10 61 9 63 11 62 10 62 10 63 11 64 12 63 11 65 13 64 12 65 13 66 14 64 12 64 12 66 14 67 15 66 14 68 16 67 15 68 16 69 17 67 15 67 15 69 17 70 18 69 17 71 19 70 18 70 18 71 19 72 20 71 19 73 21 72 20 73 21 74 22 72 20 72 20 74 22 75 23 74 22 76 24 75 23 76 24 77 25 75 23 77 25 78 26 75 23 78 26 79 27 75 23 75 23 79 27 80 28 79 27 81 29 80 28 80 28 81 29 82 30 81 29 83 31 82 30 82 30 83 31 84 32 85 33 84 32 83 31 86 34 87 35 88 36 87 35 89 37 88 36 88 36 89 37 90 38 89 37 91 39 90 38 90 38 91 39 62 10 62 10 91 39 60 8 60 8 91 39 92 40 92 40 91 39 93 41 91 39 94 42 93 41 93 41 94 42 95 43 95 43 94 42 96 44 94 42 97 45 96 44 96 44 97 45 98 46 97 45 99 47 98 46 98 46 99 47 100 48 100 48 99 47 101 49 99 47 102 50 101 49 101 49 102 50 103 51 103 51 102 50 104 52 102 50 105 53 104 52 104 52 105 53 106 54 106 54 105 53 107 55 107 55 105 53 78 26 79 27 78 26 105 53 6 56 7 57 110 58 111 59 110 58 7 57 160 60 161 61 162 62 161 61 163 63 162 62 163 63 164 64 162 62 162 62 164 64 165 65 164 64 166 66 165 65 165 65 166 66 167 67 166 66 168 68 167 67 167 67 168 68 169 69 168 68 170 70 169 69 169 69 170 70 171 71 170 70 172 72 171 71 171 71 172 72 173 73 172 72 174 74 173 73 174 74 175 75 173 73 173 73 175 75 176 76 175 75 177 77 176 76 176 76 177 77 178 78 177 77 179 79 178 78 178 78 179 79 180 80 179 79 181 81 180 80 180 80 181 81 182 82 181 81 183 83 182 82 184 84 185 85 183 83 182 82 183 83 185 85 163 63 161 61 186 86 161 61 187 87 186 86 186 86 187 87 188 88 187 87 189 89 188 88 188 88 189 89 190 90 189 89 191 91 190 90 190 90 191 91 192 92 191 91 193 93 192 92 192 92 193 93 194 94 194 94 193 93 195 95 193 93 196 96 195 95 195 95 196 96 197 97 196 96 198 98 197 97 197 97 198 98 199 99 198 98 200 100 199 99 199 99 200 100 201 101 200 100 202 102 201 101 201 101 202 102 203 103 202 102 204 104 203 103 203 103 204 104 205 105 204 104 206 106 205 105 205 105 206 106 184 84 184 84 206 106 185 85 207 107 185 85 206 106 210 108 10 109 211 110 11 111 211 110 10 109 214 112 210 113 215 114 211 115 215 114 210 113 218 116 214 117 219 118 215 119 219 118 214 117 222 120 218 121 223 122 219 123 223 122 218 121 226 124 222 125 227 126 223 127 227 126 222 125 227 128 230 129 226 130 231 131 226 130 230 129 230 132 234 133 231 134 235 135 231 134 234 133 234 136 238 137 235 138 239 139 235 138 238 137 238 140 242 141 239 142 243 143 239 142 242 141 242 144 246 145 243 146 247 147 243 146 246 145 246 148 250 149 247 150 251 151 247 150 250 149 251 152 250 153 254 154 255 155 254 154 250 153 254 156 255 157 258 158 259 159 258 158 255 157 258 160 259 161 262 162 263 163 262 162 259 161 262 164 263 165 266 166 267 167 266 166 263 165 266 168 267 169 270 170 271 171 270 170 267 169 270 172 271 173 274 174 275 175 274 174 271 173 278 176 279 177 275 178 274 179 275 178 279 177 282 180 283 181 278 182 279 183 278 182 283 181 286 184 287 185 282 186 283 187 282 186 287 185 110 188 111 189 286 190 287 191 286 190 111 189</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10326\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10327\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10331\">-87.07661403053953 231.4332089717348 1836.960874605118 -107.9152597294501 216.0744573252309 1872.679597862029 -107.1116026208701 216.1884885947499 1836.468221804707 -87.88027113911926 231.3191777022107 1873.172250662312 -87.88027113911926 231.3191777022107 1873.172250662312 -87.07661403053953 231.4332089717348 1836.960874605118 -107.9152597294501 216.0744573252309 1872.679597862029 -107.1116026208701 216.1884885947499 1836.468221804707 -63.77926662467075 240.9715146134093 1837.507960800389 -64.58292373324957 240.8574833438811 1873.719336857719 -64.58292373324957 240.8574833438811 1873.719336857719 -63.77926662467075 240.9715146134093 1837.507960800389 -122.5188810326192 196.2762559830568 1836.063575873544 -123.3225381411985 196.1622247135352 1872.274951930871 -122.5188810326192 196.2762559830568 1836.063575873544 -123.3225381411985 196.1622247135352 1872.274951930871 -132.4544619061828 123.1245256718397 1835.612712453038 -132.2484687037618 173.0534968826307 1835.774512763122 -135.6373103134026 148.1028039487263 1835.620731646579 -122.9168293411353 99.82089043795813 1835.75100167713 -122.5188810326192 196.2762559830568 1836.063575873544 -107.6743865158999 79.7800024772108 1836.026175136918 -107.1116026208701 216.1884885947499 1836.468221804707 -98.63886201816422 147.9474991665723 1836.44136757965 -96.67718810186034 132.5527235754346 1836.436425137872 -87.76588071966376 64.36761518499237 1836.419480215665 -90.79889211276827 118.1900749210255 1836.521656455536 -81.40457020819235 105.8383439737355 1836.691253159397 -64.54804372211811 54.63405728508108 1836.904113822429 -69.13442990108183 96.33928078542346 1836.933657514126 -54.82466097598581 90.34023081442534 1837.232350063596 -39.60313274531018 51.24265466289127 1837.447048977785 -39.45045053715558 88.25001940237154 1837.566975404228 -14.63110224893512 54.42452580257873 1838.011285548017 -24.05952561890763 90.21109100276244 1837.914729371934 -9.700752322157541 96.08980182584337 1838.251913108605 8.666245154489388 63.9628314432543 1838.558371743329 2.64734268858615 105.4855274474792 1838.555548099894 12.14325713982248 117.7579646917893 1838.804942122775 28.7012337467861 79.20755182172796 1839.051024543627 18.13986015247224 132.0707672370235 1838.983099386784 20.22849314455175 147.4485412494246 1839.077878768718 -96.55022902608698 163.3252731789668 1836.536146961618 -87.07661403053953 231.4332089717348 1836.960874605118 -90.55362601241654 177.6380757266363 1836.714304225696 -81.0577115626852 189.9105129690083 1836.963698248506 -63.77926662467075 240.9715146134093 1837.507960800389 -68.70961655389715 199.3062385891511 1837.267333239748 -54.35084325470416 205.1849494132243 1837.604516976464 -38.80723612829706 244.1533857530959 1838.072197370624 -38.95991833645439 207.1460210136152 1837.952270944274 -23.58570789763007 205.0558096015606 1838.286896284853 -13.86232515149527 240.7619831309087 1838.615132525894 -9.275938972532686 199.0567596305651 1838.585588834274 9.355511846051968 231.0284252310035 1839.099766132717 2.994201334578747 189.5576964422581 1838.827993189037 12.38852323915739 177.2059654949668 1838.997589892877 29.26401764228285 215.6160379387744 1839.493071211513 18.26681922824992 162.8433168405579 1839.082821210483 44.10851216003061 99.11978443536489 1839.455670474885 44.50646046751308 195.5751499780324 1839.768244671343 53.83809983014385 122.3425435333559 1839.744733585316 54.04409303256307 172.2715147441565 1839.906533895406 57.22694143978902 147.2932364672645 1839.898514701757 57.22694143978902 147.2932364672645 1839.898514701757 53.83809983014385 122.3425435333559 1839.744733585316 54.04409303256307 172.2715147441565 1839.906533895406 44.50646046751308 195.5751499780324 1839.768244671343 44.10851216003061 99.11978443536489 1839.455670474885 29.26401764228285 215.6160379387744 1839.493071211513 28.7012337467861 79.20755182172796 1839.051024543627 20.22849314455175 147.4485412494246 1839.077878768718 18.26681922824992 162.8433168405579 1839.082821210483 12.38852323915739 177.2059654949668 1838.997589892877 9.355511846051968 231.0284252310035 1839.099766132717 2.994201334578747 189.5576964422581 1838.827993189037 -9.275938972532686 199.0567596305651 1838.585588834274 -13.86232515149527 240.7619831309087 1838.615132525894 -23.58570789763007 205.0558096015606 1838.286896284853 -38.80723612829706 244.1533857530959 1838.072197370624 -38.95991833645439 207.1460210136152 1837.952270944274 -54.35084325470416 205.1849494132243 1837.604516976464 -63.77926662467075 240.9715146134093 1837.507960800389 -68.70961655389715 199.3062385891511 1837.267333239748 -81.0577115626852 189.9105129690083 1836.963698248506 -87.07661403053953 231.4332089717348 1836.960874605118 -90.55362601241654 177.6380757266363 1836.714304225696 -96.55022902608698 163.3252731789668 1836.536146961618 -98.63886201816422 147.9474991665723 1836.44136757965 -107.1116026208701 216.1884885947499 1836.468221804707 18.13986015247224 132.0707672370235 1838.983099386784 12.14325713982248 117.7579646917893 1838.804942122775 8.666245154489388 63.9628314432543 1838.558371743329 2.64734268858615 105.4855274474792 1838.555548099894 -9.700752322157541 96.08980182584337 1838.251913108605 -14.63110224893512 54.42452580257873 1838.011285548017 -24.05952561890763 90.21109100276244 1837.914729371934 -39.45045053715558 88.25001940237154 1837.566975404228 -39.60313274531018 51.24265466289127 1837.447048977785 -54.82466097598581 90.34023081442534 1837.232350063596 -64.54804372211811 54.63405728508108 1836.904113822429 -69.13442990108183 96.33928078542346 1836.933657514126 -81.40457020819235 105.8383439737355 1836.691253159397 -87.76588071966376 64.36761518499237 1836.419480215665 -90.79889211276827 118.1900749210255 1836.521656455536 -96.67718810186034 132.5527235754346 1836.436425137872 -107.6743865158999 79.7800024772108 1836.026175136918 -122.5188810326192 196.2762559830568 1836.063575873544 -122.9168293411353 99.82089043795813 1835.75100167713 -132.2484687037618 173.0534968826307 1835.774512763122 -132.4544619061828 123.1245256718397 1835.612712453038 -135.6373103134026 148.1028039487263 1835.620731646579 -38.80723612829706 244.1533857530959 1838.072197370624 -39.61089323687884 244.0393544835702 1874.283573427932 -39.61089323687884 244.0393544835702 1874.283573427932 -38.80723612829706 244.1533857530959 1838.072197370624 -132.2484687037618 173.0534968826307 1835.774512763122 -133.0521258123386 172.939465613108 1871.985888820389 -132.2484687037618 173.0534968826307 1835.774512763122 -133.0521258123386 172.939465613108 1871.985888820389 -108.4780436244807 79.66597120769161 1872.237551194208 -87.76588071966376 64.36761518499237 1836.419480215665 -107.6743865158999 79.7800024772108 1836.026175136918 -88.56953782824985 64.25358391547864 1872.630856272925 -88.56953782824985 64.25358391547864 1872.630856272925 -108.4780436244807 79.66597120769161 1872.237551194208 -87.76588071966376 64.36761518499237 1836.419480215665 -107.6743865158999 79.7800024772108 1836.026175136918 -64.54804372211811 54.63405728508108 1836.904113822429 -65.35170083068738 54.52002601555476 1873.11548987976 -65.35170083068738 54.52002601555476 1873.11548987976 -64.54804372211811 54.63405728508108 1836.904113822429 -39.60313274531018 51.24265466289127 1837.447048977785 -40.4067898538899 51.12862339336613 1873.65842503513 -40.4067898538899 51.12862339336613 1873.65842503513 -39.60313274531018 51.24265466289127 1837.447048977785 -14.63110224893512 54.42452580257873 1838.011285548017 -15.4347593575144 54.31049453305411 1874.222661605269 -15.4347593575144 54.31049453305411 1874.222661605269 -14.63110224893512 54.42452580257873 1838.011285548017 8.666245154489388 63.9628314432543 1838.558371743329 7.862588045901021 63.8488001737288 1874.769747800598 7.862588045901021 63.8488001737288 1874.769747800598 8.666245154489388 63.9628314432543 1838.558371743329 28.7012337467861 79.20755182172796 1839.051024543627 27.89757663820024 79.09352055220387 1875.262400601014 27.89757663820024 79.09352055220387 1875.262400601014 28.7012337467861 79.20755182172796 1839.051024543627 43.3048550514568 99.00575316584715 1875.667046532086 44.10851216003061 99.11978443536489 1839.455670474885 44.10851216003061 99.11978443536489 1839.455670474885 43.3048550514568 99.00575316584715 1875.667046532086 53.03444272157026 122.2285122638325 1875.956109642646 53.83809983014385 122.3425435333559 1839.744733585316 53.83809983014385 122.3425435333559 1839.744733585316 53.03444272157026 122.2285122638325 1875.956109642646 56.42328433120451 147.1792051977357 1876.10989075916 57.22694143978902 147.2932364672645 1839.898514701757 57.22694143978902 147.2932364672645 1839.898514701757 56.42328433120451 147.1792051977357 1876.10989075916 53.24043592397879 172.157483474639 1876.117909952718 54.04409303256307 172.2715147441565 1839.906533895406 54.04409303256307 172.2715147441565 1839.906533895406 53.24043592397879 172.157483474639 1876.117909952718 43.70280335893699 195.4611187085034 1875.979620728591 44.50646046751308 195.5751499780324 1839.768244671343 44.50646046751308 195.5751499780324 1839.768244671343 43.70280335893699 195.4611187085034 1875.979620728591 28.46036053369608 215.5020066692563 1875.704447268827 29.26401764228285 215.6160379387744 1839.493071211513 29.26401764228285 215.6160379387744 1839.493071211513 28.46036053369608 215.5020066692563 1875.704447268827 8.551854737472468 230.9143939614749 1875.311142190009 9.355511846051968 231.0284252310035 1839.099766132717 8.551854737472468 230.9143939614749 1875.311142190009 9.355511846051968 231.0284252310035 1839.099766132717 -14.66598226008614 240.647951861388 1874.826508583228 -13.86232515149527 240.7619831309087 1838.615132525894 -14.66598226008614 240.647951861388 1874.826508583228 -13.86232515149527 240.7619831309087 1838.615132525894 -135.6373103134026 148.1028039487263 1835.620731646579 -136.440967421988 147.9887726792054 1871.832107703891 -135.6373103134026 148.1028039487263 1835.620731646579 -136.440967421988 147.9887726792054 1871.832107703891 -132.4544619061828 123.1245256718397 1835.612712453038 -133.2581190147621 123.0104944023188 1871.824088510321 -132.4544619061828 123.1245256718397 1835.612712453038 -133.2581190147621 123.0104944023188 1871.824088510321 -122.9168293411353 99.82089043795813 1835.75100167713 -123.7204864497157 99.706859168438 1871.962377734466 -122.9168293411353 99.82089043795813 1835.75100167713 -123.7204864497157 99.706859168438 1871.962377734466</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10331\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10328\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10332\">0.4962997190497336 -0.8681117528912 0.008280903533035722 0.7040093966787498 -0.7100644477594102 0.01338840603456051 0.7040093966787657 -0.7100644477593946 0.01338840603456091 0.4962997190497457 -0.8681117528911931 0.00828090353303601 -0.4962997190497457 0.8681117528911931 -0.00828090353303601 -0.4962997190497336 0.8681117528912 -0.008280903533035722 -0.7040093966787498 0.7100644477594102 -0.01338840603456051 -0.7040093966787657 0.7100644477593946 -0.01338840603456091 0.2547680357416401 -0.9669986766858215 0.002609071140561118 0.254768035741634 -0.966998676685823 0.002609071140560978 -0.254768035741634 0.966998676685823 -0.002609071140560978 -0.2547680357416401 0.9669986766858215 -0.002609071140561118 0.86374199735433 -0.5036274239501297 0.01758351079020301 0.8637419973543514 -0.5036274239500925 0.01758351079020359 -0.86374199735433 0.5036274239501297 -0.01758351079020301 -0.8637419973543514 0.5036274239500925 -0.01758351079020359 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 -0.02218792451941154 -0.003148254615260085 0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 0.02218792451941154 0.003148254615260085 -0.9997488607137288 -0.004125668177975654 -0.999986238705148 -0.003240565138383288 -0.004125668177952003 -0.9999862387051482 -0.003240565138382764 0.004125668177952003 0.9999862387051482 0.003240565138382764 0.004125668177975654 0.999986238705148 0.003240565138383288 0.9646120083115416 -0.2628690234821169 0.02058032834365186 0.9646120083115399 -0.2628690234821231 0.02058032834365179 -0.9646120083115416 0.2628690234821169 -0.02058032834365186 -0.9646120083115399 0.2628690234821231 -0.02058032834365179 0.7098439725699511 0.7041296532036221 0.01797125720302738 0.5034455859490516 0.8639152194159581 0.01389372699793021 0.709843972569721 0.7041296532038543 0.017971257203023 0.5034455859493039 0.8639152194158111 0.01389372699793534 -0.5034455859493039 -0.8639152194158111 -0.01389372699793534 -0.7098439725699511 -0.7041296532036221 -0.01797125720302738 -0.5034455859490516 -0.8639152194159581 -0.01389372699793021 -0.709843972569721 -0.7041296532038543 -0.017971257203023 0.2627382146296381 0.9648263911120789 0.008869362258461562 0.2627382146292458 0.9648263911121859 0.008869362258453192 -0.2627382146292458 -0.9648263911121859 -0.008869362258453192 -0.2627382146296381 -0.9648263911120789 -0.008869362258461562 0.004125668178156149 0.999986238705147 0.003240565138403793 0.004125668178031157 0.9999862387051477 0.003240565138401021 -0.004125668178031157 -0.9999862387051477 -0.003240565138401021 -0.004125668178156149 -0.999986238705147 -0.003240565138403793 -0.2547680357417111 0.9669986766858028 -0.002609071140578441 -0.254768035741712 0.9669986766858024 -0.002609071140578461 0.254768035741712 -0.9669986766858024 0.002609071140578461 0.2547680357417111 -0.9669986766858028 0.002609071140578441 -0.4962997190498501 0.8681117528911332 -0.008280903533079621 -0.4962997190498146 0.8681117528911535 -0.00828090353307877 0.4962997190498146 -0.8681117528911535 0.00828090353307877 0.4962997190498501 -0.8681117528911332 0.008280903533079621 -0.704009396678762 0.7100644477593968 -0.01338840603463401 -0.7040093966785832 0.7100644477595743 -0.01338840603462948 0.7040093966785832 -0.7100644477595743 0.01338840603462948 0.704009396678762 -0.7100644477593968 0.01338840603463401 -0.8637419973543887 0.503627423950027 -0.01758351079024857 -0.8637419973543346 0.5036274239501198 -0.01758351079024707 0.8637419973543346 -0.5036274239501198 0.01758351079024707 0.8637419973543887 -0.503627423950027 0.01758351079024857 -0.9646120083116122 0.262869023481857 -0.02058032834366269 -0.9646120083115822 0.2628690234819674 -0.02058032834366167 0.9646120083115822 -0.2628690234819674 0.02058032834366167 0.9646120083116122 -0.262869023481857 0.02058032834366269 -0.9997453049990284 0.004196533475264662 -0.02217463053109962 -0.9997453049990284 0.004196533475235419 -0.0221746305310997 0.9997453049990284 -0.004196533475235419 0.0221746305310997 0.9997453049990284 -0.004196533475264662 0.02217463053109962 -0.9667476113080379 -0.2547619433526386 -0.0222577682931092 -0.9667476113080956 -0.2547619433524202 -0.02225776829310978 0.9667476113080956 0.2547619433524202 0.02225776829310978 0.9667476113080379 0.2547619433526386 0.0222577682931092 -0.8678676655324147 -0.496358814755047 -0.02082407592864429 -0.8678676655323862 -0.4963588147550967 -0.02082407592864382 0.8678676655323862 0.4963588147550967 0.02082407592864382 0.8678676655324147 0.496358814755047 0.02082407592864429 -0.7098439725697918 -0.7041296532037813 -0.01797125720308547 -0.7098439725697854 -0.704129653203788 -0.01797125720308534 0.7098439725697854 0.704129653203788 0.01797125720308534 0.7098439725697918 0.7041296532037813 0.01797125720308547 -0.5034455859491995 -0.863915219415871 -0.01389372699799951 -0.5034455859491744 -0.8639152194158853 -0.013893726997999 0.5034455859491995 0.863915219415871 0.01389372699799951 0.5034455859491744 0.8639152194158853 0.013893726997999 -0.2627382146293949 -0.9648263911121453 -0.008869362258454269 -0.2627382146293516 -0.9648263911121572 -0.008869362258453346 0.2627382146293949 0.9648263911121453 0.008869362258454269 0.2627382146293516 0.9648263911121572 0.008869362258453346 0.9997453049990289 -0.004196533475347851 0.02217463053106078 0.9997453049990289 -0.004196533475337604 0.02217463053106081 -0.9997453049990289 0.004196533475347851 -0.02217463053106078 -0.9997453049990289 0.004196533475337604 -0.02217463053106081 0.9667476113080432 0.2547619433526203 0.02225776829308785 0.9667476113080354 0.25476194335265 0.02225776829308777 -0.9667476113080432 -0.2547619433526203 -0.02225776829308785 -0.9667476113080354 -0.25476194335265 -0.02225776829308777 0.8678676655323658 0.4963588147551327 0.02082407592863915 0.8678676655323717 0.4963588147551223 0.02082407592863925 -0.8678676655323658 -0.4963588147551327 -0.02082407592863915 -0.8678676655323717 -0.4963588147551223 -0.02082407592863925</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10332\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10330\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10333\">-21.82988378484662 224.7652094043986 -21.82988378783378 224.0944599147543 -22.29618470485451 224.7652094064765 -22.29618470784177 224.0944599168299 -25.92902815084354 224.7652091350589 -25.92902814639106 224.0944596454121 -26.39532907085154 224.7652091319623 -26.39532906639902 224.094459642318 -16.2271801061771 224.0944600648592 -16.69348102618511 224.0944600719663 -16.22718009595372 224.7652095545058 -16.69348101596176 224.765209561613 -3.045427610986168 26.9941291894775 -3.51145241812024 26.97808465345843 -2.599434845575741 27.13024311676562 -2.203867791813546 27.3771504961171 -3.965750446466115 27.08320291731218 -1.885683690708103 27.71802499766255 -4.377362036287583 27.30232034511593 -3.158207498359228 27.67011682025544 -2.883330324574437 27.75400744482938 -2.639531854703618 27.90618301332818 -1.666566262925501 28.12963658744393 -2.443426551572414 28.11627301224095 -2.308378667509998 28.36996015533169 -1.561447999060745 28.58393461583738 -2.243591492637871 28.64995608303691 -1.577492535079791 29.04995942297143 -2.253480165857729 28.93717953559823 -2.337370790431707 29.21205670938313 -1.713606462367928 29.49595218838181 -2.489546358930483 29.45585517925405 -2.699636357843225 29.6519604823852 -1.960513841719291 29.89151924214401 -2.953323500934202 29.78700836644759 -3.233319428639165 29.8517955413198 -3.520542881200606 29.84190686809986 -2.301388343264947 30.20970334324949 -3.445430950920792 27.66022814703551 -3.725426878578109 27.72501532189667 -4.718236537866538 27.62050444625259 -3.97911402170917 27.8600632059805 -4.189204020655275 28.05616850914269 -4.965143917192042 28.01607149997333 -4.341379589128305 28.29996697897211 -4.425270213702266 28.57484415275695 -5.101257844480199 28.46206426538372 -4.435158886922164 28.86206760531839 -5.117302380499227 28.92808907251794 -4.370371712049992 29.14206353302361 -4.235323827987476 29.39575067611433 -5.012184116634347 29.38238710091135 -4.03921852485629 29.60584067502706 -3.795420054985474 29.75801624352587 -4.793066688851951 29.79399869069277 -2.712999933046255 30.42882077103199 -4.474882587746421 30.13487319223832 -3.16729796143979 30.53393903489691 -4.07931553398412 30.38178057158978 -3.633322768573787 30.51789449887782 -28.24526327955003 224.7652088191762 -28.24526326796127 224.0944593295297 -28.71156419955786 224.7652088111199 -28.71156418796916 224.0944593214731 -9.502732098423222 224.0944600550146 -9.969033018431135 224.0944600666688 -9.502732081660462 224.7652095446614 -9.969033001668391 224.7652095563145 23.58107792938822 224.7652083715873 24.04737884939614 224.7652083530889 23.58107790277576 224.0944588819418 24.04737882278383 224.0944588634428 27.02987481102094 224.7652083779283 27.49617573102913 224.7652083618962 27.02987478796169 224.0944588882815 27.49617570796947 224.0944588722507 28.6207415747116 224.7652085418885 29.08704249471966 224.7652085294185 28.6207415567764 224.0944590522414 29.08704247678465 224.0944590397717 28.24526327954997 224.7652088191765 28.71156419955784 224.7652088111217 28.24526326796123 224.0944593295312 28.71156418796914 224.0944593214746 25.92902815089238 224.7652091350595 26.39532907085131 224.7652091319633 25.92902814643973 224.0944596454138 26.39532906639882 224.0944596423179 21.82988378484872 224.765209404401 22.29618470490242 224.7652094064773 21.82988378783585 224.0944599147531 22.29618470788947 224.0944599168316 16.22718010612762 224.0944600648608 16.22718009590419 224.7652095545052 16.69348102618107 224.0944600719668 16.69348101595781 224.7652095616147 9.502732098423767 224.0944600550148 9.502732081660998 224.7652095446616 9.969033018382733 224.0944600666683 9.969033001619897 224.7652095563128 2.114799783608345 224.0944598873966 2.114799761448672 224.7652093770447 2.58110070361646 224.094459902803 2.581100681456671 224.7652093924498 -5.433141460132667 224.0944596065547 -5.433141486179457 224.7652090962012 -4.966840540124741 224.0944596246609 -4.966840566171324 224.7652091143091 -12.62671191060177 224.0944592874565 -12.62671193876018 224.7652087771018 -12.16041099059376 224.0944593070309 -12.16041101875242 224.7652087966773 -18.97568162954545 224.0944590154613 -18.97568165789704 224.7652085051078 -18.50938070953762 224.0944590351725 -18.50938073788895 224.7652085248178 -23.58107792938764 224.7652083715906 -23.58107790277524 224.0944588819441 -24.04737884939554 224.7652083530903 -24.04737882278337 224.0944588634442 -27.02987481102091 224.7652083779298 -27.02987478796149 224.0944588882837 -27.49617573102894 224.7652083618988 -27.49617570796928 224.0944588722519 -28.62074157471298 224.7652085418881 -28.62074155677757 224.0944590522412 -29.08704249472091 224.7652085294195 -29.08704247678567 224.0944590397731 -2.114799783610772 224.0944598873982 -2.581100703618816 224.0944599028028 -2.114799761450984 224.7652093770438 -2.581100681459013 224.7652093924492 5.433141460128553 224.0944596065521 4.966840540120741 224.0944596246603 5.433141486175282 224.7652090961985 4.966840566167457 224.7652091143062 12.62671191060343 224.0944592874564 12.16041099059534 224.0944593070313 12.62671193876201 224.7652087771023 12.16041101875393 224.7652087966782 18.97568162954683 224.0944590154603 18.50938070953887 224.0944590351707 18.97568165789831 224.7652085051072 18.50938073789039 224.7652085248167</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID10333\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10329\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10327\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10328\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10329\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 3 0 3 8 9 12 1 13 1 12 2 16 17 18 17 16 19 17 19 20 20 19 21 20 21 22 22 21 23 23 21 24 24 21 25 24 25 26 26 25 27 27 25 28 27 28 29 29 28 30 30 28 31 30 31 32 32 31 33 32 33 34 34 33 35 35 33 36 35 36 37 37 36 38 38 36 39 38 39 40 40 39 41 22 42 43 42 22 23 43 42 44 43 44 45 43 45 46 46 45 47 46 47 48 46 48 49 49 48 50 49 50 51 49 51 52 52 51 53 52 53 54 54 53 55 54 55 56 54 56 57 57 56 58 57 58 41 57 41 39 57 39 59 57 59 60 60 59 61 60 61 62 62 61 63 112 9 8 9 112 113 116 13 117 13 116 12 120 121 122 121 120 123 123 128 121 128 123 129 129 132 128 132 129 133 133 136 132 136 133 137 137 140 136 140 137 141 141 144 140 144 141 145 148 144 145 144 148 149 152 149 148 149 152 153 156 153 152 153 156 157 160 157 156 157 160 161 164 161 160 161 164 165 168 165 164 165 168 169 169 172 173 172 169 168 173 176 177 176 173 172 177 113 112 113 177 176 180 117 181 117 180 116 184 181 185 181 184 180 188 185 189 185 188 184 122 189 120 189 122 188</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10329\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10330\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 11 5 4 6 5 7 4 6 11 5 7 8 14 9 6 10 15 11 6 10 14 9 64 12 65 13 66 14 66 14 65 13 67 15 65 13 68 16 67 15 67 15 68 16 69 17 68 16 70 18 69 17 70 18 71 19 69 17 71 19 72 20 69 17 72 20 73 21 69 17 69 17 73 21 74 22 73 21 75 23 74 22 75 23 76 24 74 22 74 22 76 24 77 25 76 24 78 26 77 25 77 25 78 26 79 27 78 26 80 28 79 27 80 28 81 29 79 27 79 27 81 29 82 30 81 29 83 31 82 30 83 31 84 32 82 30 82 30 84 32 85 33 84 32 86 34 85 33 86 34 87 35 85 33 88 36 89 37 87 35 85 33 87 35 89 37 71 19 70 18 90 38 90 38 70 18 91 39 70 18 92 40 91 39 91 39 92 40 93 41 93 41 92 40 94 42 92 40 95 43 94 42 94 42 95 43 96 44 96 44 95 43 97 45 95 43 98 46 97 45 97 45 98 46 99 47 98 46 100 48 99 47 99 47 100 48 101 49 101 49 100 48 102 50 100 48 103 51 102 50 102 50 103 51 104 52 104 52 103 51 105 53 103 51 106 54 105 53 105 53 106 54 88 36 88 36 106 54 89 37 89 37 106 54 107 55 106 54 108 56 107 55 107 55 108 56 109 57 108 56 110 58 109 57 111 59 109 57 110 58 114 60 115 61 10 62 11 63 10 62 115 61 14 64 118 65 15 66 119 67 15 66 118 65 124 68 125 69 126 70 127 71 126 70 125 69 130 72 124 73 131 74 126 75 131 74 124 73 134 76 130 77 135 78 131 79 135 78 130 77 138 80 134 81 139 82 135 83 139 82 134 81 142 84 138 85 143 86 139 87 143 86 138 85 146 88 142 89 147 90 143 91 147 90 142 89 150 92 151 93 147 94 146 95 147 94 151 93 154 96 155 97 150 98 151 99 150 98 155 97 158 100 159 101 154 102 155 103 154 102 159 101 162 104 163 105 158 106 159 107 158 106 163 105 166 108 167 109 162 110 163 111 162 110 167 109 170 112 171 113 166 114 167 115 166 114 171 113 171 116 170 117 174 118 175 119 174 118 170 117 174 120 175 121 178 122 179 123 178 122 175 121 178 124 179 125 114 126 115 127 114 126 179 125 118 128 182 129 119 130 183 131 119 130 182 129 182 132 186 133 183 134 187 135 183 134 186 133 186 136 190 137 187 138 191 139 187 138 190 137 190 140 127 141 191 142 125 143 191 142 127 141</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10334\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10335\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10339\">-83.87223043108179 173.2482503326917 2600.976049247172 -85.71113708426765 165.7521895157718 2400.311697427123 -90.16091549717248 165.1208084502711 2600.810887642605 -79.42245201817127 173.879631398188 2400.47685903176 -79.42245201817127 173.879631398188 2400.47685903176 -83.87223043108179 173.2482503326917 2600.976049247172 -85.71113708426765 165.7521895157718 2400.311697427123 -90.16091549717248 165.1208084502711 2600.810887642605 -71.24490565467659 180.1019662460064 2400.677941807438 -75.69468406758665 179.4705851805122 2601.177132022824 -75.69468406758665 179.4705851805122 2601.177132022824 -71.24490565467659 180.1019662460064 2400.677941807438 -89.68239735824068 156.2735123318133 2400.193712484013 -94.13217577115142 155.6421312663048 2600.692902699553 -89.68239735824068 156.2735123318133 2400.193712484013 -94.13217577115142 155.6421312663048 2600.692902699553 -61.73578426441463 183.9951522222447 2400.901242295366 -66.18556267732015 183.3637711567576 2601.400432510645 -66.18556267732015 183.3637711567576 2601.400432510645 -61.73578426441463 183.9951522222447 2400.901242295366 -91.06559801525168 146.0895560321465 2400.130944681388 -95.51537642816788 145.4581749666373 2600.630134896834 -91.06559801525168 146.0895560321465 2400.130944681388 -95.51537642816788 145.4581749666373 2600.630134896834 -51.54311875557301 185.2938751364181 2401.131542936186 -55.99289716847466 184.6624940709228 2601.630733151631 -55.99289716847466 184.6624940709228 2601.630733151631 -51.54311875557301 185.2938751364181 2401.131542936186 -89.76647621636676 135.8943404088073 2400.127671541119 -94.21625462928796 135.2629593432911 2600.626861756666 -89.76647621636676 135.8943404088073 2400.127671541119 -94.21625462928796 135.2629593432911 2600.626861756666 -41.36152243840002 183.9096291681705 2401.353149122138 -45.81130085129985 183.2782481026703 2601.852339337464 -45.81130085129985 183.2782481026703 2601.852339337464 -41.36152243840002 183.9096291681705 2401.353149122138 -85.87356496528787 126.3826525581367 2400.184116122377 -90.32334337820021 125.7512714926221 2600.683306337958 -85.87356496528787 126.3826525581367 2400.184116122377 -90.32334337820021 125.7512714926221 2600.683306337958 -31.88485427602382 179.9367483926468 2401.550958757576 -36.33463268892069 179.3053673271548 2602.050148972889 -36.33463268892069 179.3053673271548 2602.050148972889 -31.88485427602382 179.9367483926468 2401.550958757576 -79.65215973041904 118.2026982883543 2400.296431820105 -84.10193814333979 117.5713172228352 2600.795622035821 -79.65215973041904 118.2026982883543 2400.296431820105 -84.10193814333979 117.5713172228352 2600.795622035821 -23.75893354278082 173.6459780692206 2401.711491442802 -28.20871195566656 173.0145970037141 2602.210681658062 -28.20871195566656 173.0145970037141 2602.210681658062 -23.75893354278082 173.6459780692206 2401.711491442802 -71.52623899717423 111.9119279649215 2400.45696450542 -75.97601741008862 111.2805468994042 2600.956154720978 -75.97601741008862 111.2805468994042 2600.956154720978 -71.52623899717423 111.9119279649215 2400.45696450542 -17.53752830792155 165.4660237994301 2401.823807140665 -21.98730672080069 164.8346427339282 2602.322997355923 -17.53752830792155 165.4660237994301 2401.823807140665 -21.98730672080069 164.8346427339282 2602.322997355923 -62.04957083480213 107.9390471893985 2400.654774140898 -66.49934924771083 107.3076661238823 2601.153964356472 -66.49934924771083 107.3076661238823 2601.153964356472 -62.04957083480213 107.9390471893985 2400.654774140898 -13.64461705683198 155.9543359487658 2401.880251721912 -18.09439546972203 155.3229548832569 2602.379441937206 -13.64461705683198 155.9543359487658 2401.880251721912 -18.09439546972203 155.3229548832569 2602.379441937206 -51.86797451762186 106.5548012211503 2400.876380326694 -56.3177529305317 105.9234201556232 2601.375570542325 -56.3177529305317 105.9234201556232 2601.375570542325 -51.86797451762186 106.5548012211503 2400.876380326694 -12.34549525795114 145.7591203254244 2401.876978581662 -16.79527367083483 145.1277392599087 2602.376168797033 -12.34549525795114 145.7591203254244 2401.876978581662 -16.79527367083483 145.1277392599087 2602.376168797033 -41.67530900878046 107.8535241353217 2401.106680967605 -46.12508742168575 107.2221430697977 2601.605871183218 -46.12508742168575 107.2221430697977 2601.605871183218 -41.67530900878046 107.8535241353217 2401.106680967605 -13.72869591495828 135.5751640257562 2401.814210778961 -18.17847432784697 134.9437829602363 2602.313400994381 -13.72869591495828 135.5751640257562 2401.814210778961 -18.17847432784697 134.9437829602363 2602.313400994381 -32.16618762107555 111.7467101105131 2401.329981455472 -36.61596603401881 111.1153290449779 2601.82917167105 -36.61596603401881 111.1153290449779 2601.82917167105 -32.16618762107555 111.7467101105131 2401.329981455472 -17.69995618786743 126.0964868443366 2401.696225835914 -22.14973460074612 125.4651057788686 2602.195416051291 -17.69995618786743 126.0964868443366 2401.696225835914 -22.14973460074612 125.4651057788686 2602.195416051291 -23.98864125554292 117.9690449598895 2401.531064231274 -28.43841966844389 117.3376638943853 2602.030254446698 -28.43841966844389 117.3376638943853 2602.030254446698 -23.98864125554292 117.9690449598895 2401.531064231274</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10339\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10336\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10340\">-0.7040093966786213 0.7100644477595357 -0.01338840603467866 -0.8637419973548072 0.5036274239493068 -0.01758351079032108 -0.863741997354491 0.5036274239498495 -0.01758351079031236 -0.704009396678948 0.7100644477592113 -0.01338840603468693 0.704009396678948 -0.7100644477592113 0.01338840603468693 0.7040093966786213 -0.7100644477595357 0.01338840603467866 0.8637419973548072 -0.5036274239493068 0.01758351079032108 0.863741997354491 -0.5036274239498495 0.01758351079031236 -0.4962997190498156 0.8681117528911518 -0.008280903533170831 -0.4962997190498974 0.8681117528911051 -0.008280903533172795 0.4962997190498974 -0.8681117528911051 0.008280903533172795 0.4962997190498156 -0.8681117528911518 0.008280903533170831 -0.964612008311624 0.2628690234818082 -0.02058032834373439 -0.9646120083115209 0.2628690234821867 -0.02058032834373091 0.964612008311624 -0.2628690234818082 0.02058032834373439 0.9646120083115209 -0.2628690234821867 0.02058032834373091 -0.2547680357414196 0.9669986766858792 -0.002609071140695049 -0.25476803574165 0.9669986766858184 -0.002609071140700354 0.25476803574165 -0.9669986766858184 0.002609071140700354 0.2547680357414196 -0.9669986766858792 0.002609071140695049 -0.9997453049990266 0.004196533475383525 -0.02217463053115194 -0.9997453049990266 0.004196533475378592 -0.02217463053115196 0.9997453049990266 -0.004196533475383525 0.02217463053115194 0.9997453049990266 -0.004196533475378592 0.02217463053115196 0.004125668177740367 0.9999862387051494 0.003240565138302692 0.004125668178151729 0.9999862387051475 0.003240565138311816 -0.004125668178151729 -0.9999862387051475 -0.003240565138311816 -0.004125668177740367 -0.9999862387051494 -0.003240565138302692 -0.9667476113079793 -0.2547619433528564 -0.02225776829317113 -0.9667476113079488 -0.254761943352971 -0.02225776829317082 0.9667476113079793 0.2547619433528564 0.02225776829317113 0.9667476113079488 0.254761943352971 0.02225776829317082 0.262738214628763 0.9648263911123177 0.008869362258410656 0.2627382146293232 0.9648263911121651 0.00886936225842261 -0.2627382146293232 -0.9648263911121651 -0.00886936225842261 -0.262738214628763 -0.9648263911123177 -0.008869362258410656 -0.8678676655320795 -0.4963588147556303 -0.0208240759286976 -0.8678676655323536 -0.4963588147551509 -0.02082407592870217 0.8678676655320795 0.4963588147556303 0.0208240759286976 0.8678676655323536 0.4963588147551509 0.02082407592870217 0.5034455859493092 0.8639152194158078 0.01389372699793681 0.5034455859491065 0.8639152194159262 0.01389372699793268 -0.5034455859491065 -0.8639152194159262 -0.01389372699793268 -0.5034455859493092 -0.8639152194158078 -0.01389372699793681 -0.7098439725696546 -0.704129653203919 -0.01797125720311188 -0.7098439725700573 -0.7041296532035128 -0.01797125720311954 0.7098439725696546 0.704129653203919 0.01797125720311188 0.7098439725700573 0.7041296532035128 0.01797125720311954 0.7098439725699139 0.7041296532036606 0.01797125720299594 0.7098439725696892 0.704129653203887 0.01797125720299167 -0.7098439725696892 -0.704129653203887 -0.01797125720299167 -0.7098439725699139 -0.7041296532036606 -0.01797125720299594 -0.5034455859497898 -0.8639152194155259 -0.01389372699805915 -0.5034455859493502 -0.8639152194157821 -0.01389372699805019 0.5034455859493502 0.8639152194157821 0.01389372699805019 0.5034455859497898 0.8639152194155259 0.01389372699805915 0.8678676655324498 0.4963588147549886 0.02082407592857698 0.867867665532405 0.4963588147550665 0.02082407592857624 -0.8678676655324498 -0.4963588147549886 -0.02082407592857698 -0.867867665532405 -0.4963588147550665 -0.02082407592857624 -0.2627382146296332 -0.9648263911120796 -0.00886936225854308 -0.26273821462918 -0.9648263911122029 -0.00886936225853341 0.26273821462918 0.9648263911122029 0.00886936225853341 0.2627382146296332 0.9648263911120796 0.00886936225854308 0.9667476113080479 0.2547619433526061 0.02225776829304617 0.9667476113080724 0.2547619433525131 0.02225776829304642 -0.9667476113080479 -0.2547619433526061 -0.02225776829304617 -0.9667476113080724 -0.2547619433525131 -0.02225776829304642 -0.004125668177807289 -0.9999862387051485 -0.003240565138423908 -0.004125668177963649 -0.9999862387051478 -0.003240565138427376 0.004125668177963649 0.9999862387051478 0.003240565138427376 0.004125668177807289 0.9999862387051485 0.003240565138423908 0.9997453049990297 -0.004196533475333403 0.02217463053103321 0.9997453049990295 -0.004196533475365089 0.0221746305310331 -0.9997453049990297 0.004196533475333403 -0.02217463053103321 -0.9997453049990295 0.004196533475365089 -0.0221746305310331 0.2547680357416089 -0.9669986766858297 0.002609071140575243 0.2547680357416534 -0.966998676685818 0.002609071140576269 -0.2547680357416534 0.966998676685818 -0.002609071140576269 -0.2547680357416089 0.9669986766858297 -0.002609071140575243 0.9646120083115066 -0.2628690234822471 0.02058032834363364 0.9646120083116594 -0.2628690234816867 0.02058032834363879 -0.9646120083115066 0.2628690234822471 -0.02058032834363364 -0.9646120083116594 0.2628690234816867 -0.02058032834363879 0.4962997190494702 -0.8681117528913502 0.008280903533064965 0.496299719049677 -0.8681117528912322 0.008280903533069924 -0.496299719049677 0.8681117528912322 -0.008280903533069924 -0.4962997190494702 0.8681117528913502 -0.008280903533064965 0.8637419973540964 -0.5036274239505286 0.01758351079024224 0.8637419973543962 -0.5036274239500146 0.01758351079025051 -0.8637419973540964 0.5036274239505286 -0.01758351079024224 -0.8637419973543962 0.5036274239500146 -0.01758351079025051 0.7040093966782151 -0.7100644477599397 0.01338840603461489 0.7040093966784392 -0.7100644477597172 0.01338840603462056 -0.7040093966784392 0.7100644477597172 -0.01338840603462056 -0.7040093966782151 0.7100644477599397 -0.01338840603461489</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10340\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10338\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10341\">16.36516695409848 234.527530933109 16.36516689749282 238.2414116014015 16.55549386022644 234.5275309360084 16.55549380362076 238.2414116043021 21.96787073177351 238.2414114498067 22.15819763790142 238.2414114506544 21.96787074831342 234.5275307815147 22.15819765444131 234.5275307823619 9.640718844614916 234.5275309246081 9.640718751801083 238.2414115929018 9.831045750742778 234.5275309293634 9.831045657929106 238.2414115976582 26.067015247241 238.2414111789335 26.25734215336903 238.2414111776715 26.06701522258805 234.5275305106436 26.25734212871599 234.5275305093796 2.252786445875512 234.5275307581004 2.252786323178794 238.2414114263952 2.443113352003367 234.5275307643889 2.443113229306686 238.2414114326819 28.38325051932261 238.2414108615836 28.57357742545056 238.2414108582939 28.38325045515687 234.5275301932906 28.5735773612847 234.5275301900039 -5.295154858330323 234.527530478056 -5.29515500254851 238.2414111463491 -5.104827952202431 234.5275304854463 -5.104828096420503 238.2414111537412 28.75872894199486 238.2414105829873 28.94905584812272 238.2414105778982 28.75872884268904 234.5275299146964 28.9490557488169 234.5275299096051 -12.48872534165065 234.5275301593917 -12.48872549756202 238.2414108276867 -12.2983984355228 234.5275301673814 -12.29839859143413 238.241410835677 27.16786228125431 238.2414104179757 27.35818918738221 238.2414104114324 27.16786215357595 234.5275297496851 27.35818905970386 234.5275297431415 -18.83769506359418 234.5275298874365 -18.83769522057366 238.241410555732 -18.64736815746631 234.5275298954788 -18.64736831444579 238.2414105637769 23.71906547099849 238.2414104109039 23.90939237712661 238.2414104033539 23.71906532364895 234.5275297426143 23.90939222977676 234.5275297350633 -23.71906547100122 238.2414104109055 -23.71906532365147 234.5275297426104 -23.90939237712918 238.2414104033558 -23.9093922297794 234.5275297350577 18.83769506359447 234.5275298874378 18.64736815746656 234.5275298954827 18.83769522057384 238.2414105557274 18.64736831444593 238.2414105637722 -27.16786228125254 238.2414104179747 -27.16786215357425 234.5275297496793 -27.35818918738049 238.2414104114301 -27.3581890597021 234.527529743135 12.4887253416506 234.5275301593923 12.29839843552278 234.5275301673818 12.48872549756195 238.2414108276819 12.29839859143409 238.241410835672 -28.75872894199407 238.2414105829882 -28.75872884268825 234.5275299146916 -28.94905584812203 238.2414105778987 -28.94905574881619 234.5275299096032 5.295154858338757 234.5275304780546 5.104827952210835 234.5275304854452 5.295155002556891 238.2414111463449 5.104828096428829 238.2414111537369 -28.38325051932217 238.2414108615824 -28.38325045515636 234.5275301932863 -28.5735774254501 238.2414108582944 -28.57357736128422 234.5275301899979 -2.252786445865825 234.5275307581011 -2.443113351993704 234.5275307643881 -2.252786323169194 238.2414114263927 -2.443113229297156 238.2414114326807 -26.06701524729228 238.2414111789335 -26.06701522263846 234.527530510638 -26.2573421533683 238.2414111776702 -26.25734212871523 234.527530509374 -9.640718844625317 234.5275309246074 -9.831045750702188 234.5275309293633 -9.64071875181171 238.2414115929 -9.831045657887636 238.2414115976551 -21.9678707317639 238.2414114498042 -21.96787074830385 234.5275307815115 -22.15819763794023 238.2414114506529 -22.15819765447927 234.5275307823573 -16.36516695406515 234.527530933108 -16.55549386024075 234.5275309360081 -16.36516689745873 238.2414116013997 -16.55549380363509 238.2414116043007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10341\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10337\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10335\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10336\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10337\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 0 8 3 8 0 9 2 12 13 12 2 1 9 16 8 16 9 17 13 20 21 20 13 12 17 24 16 24 17 25 21 28 29 28 21 20 25 32 24 32 25 33 29 36 37 36 29 28 33 40 32 40 33 41 37 44 45 44 37 36 41 48 40 48 41 49 52 45 44 45 52 53 56 49 57 49 56 48 60 53 52 53 60 61 64 57 65 57 64 56 68 61 60 61 68 69 72 65 73 65 72 64 76 69 68 69 76 77 80 73 81 73 80 72 84 77 76 77 84 85 88 81 89 81 88 80 92 85 84 85 92 93 92 89 93 89 92 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10337\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10338\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 5 5 11 6 4 7 11 6 5 5 6 8 7 9 14 10 15 11 14 10 7 9 18 12 10 13 19 14 11 15 19 14 10 13 14 16 15 17 22 18 23 19 22 18 15 17 26 20 18 21 27 22 19 23 27 22 18 21 22 24 23 25 30 26 31 27 30 26 23 25 34 28 26 29 35 30 27 31 35 30 26 29 30 32 31 33 38 34 39 35 38 34 31 33 42 36 34 37 43 38 35 39 43 38 34 37 38 40 39 41 46 42 47 43 46 42 39 41 50 44 42 45 51 46 43 47 51 46 42 45 54 48 55 49 47 50 46 51 47 50 55 49 51 52 58 53 50 54 59 55 50 54 58 53 62 56 63 57 54 58 55 59 54 58 63 57 58 60 66 61 59 62 67 63 59 62 66 61 70 64 71 65 62 66 63 67 62 66 71 65 66 68 74 69 67 70 75 71 67 70 74 69 78 72 79 73 70 74 71 75 70 74 79 73 74 76 82 77 75 78 83 79 75 78 82 77 86 80 87 81 78 82 79 83 78 82 87 81 82 84 90 85 83 86 91 87 83 86 90 85 94 88 95 89 86 90 87 91 86 90 95 89 90 92 95 93 91 94 94 95 91 94 95 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10342\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10343\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10347\">-131.279201778545 151.7686955784707 698.837135350761 -126.3180715708334 121.5415777496104 649.7252867918232 -127.4078188179328 121.3869530213279 698.8273813927917 -130.1894545314476 151.9233203067541 649.7350407497743 -130.1894545314476 151.9233203067541 649.7350407497743 -131.279201778545 151.7686955784707 698.837135350761 -126.3180715708334 121.5415777496104 649.7252867918232 -127.4078188179328 121.3869530213279 698.8273813927917 -127.1572638207119 182.1168853510792 699.0241834027311 -126.06751657361 182.2715100793635 649.9220888016989 -126.06751657361 182.2715100793635 649.9220888016989 -127.1572638207119 182.1168853510792 699.0241834027311 -95.49287946060781 234.7377448964571 650.7658655136074 -84.2929807805815 170.8874185112409 650.8133628638188 -86.89339801573487 151.7415806680641 650.6953593948274 -71.12379129771443 253.2803027427156 651.3650921849239 -76.82701146557702 188.7073316168946 651.0351745567004 -65.00428354144651 203.986922355688 651.3456783733309 -42.78660955511646 264.8819969517498 652.0305276389845 -49.63049637822701 215.6849118694661 651.7237139915487 -31.75334816472764 223.004101504724 652.1435189087897 -12.41246633917126 268.7521912359394 652.7168235488207 -12.59113700829835 225.4457005833419 652.576484113697 6.550264067792796 222.843318163047 652.9931037430615 17.92869068560867 264.6271382505906 653.3772099826074 24.36640021288145 215.3743023051492 653.3649858577082 46.16916180911085 252.7879535397036 653.9666826961548 39.64313119123176 203.5476540972258 653.6667873058996 51.33937303265839 188.169340070183 653.877940817878 70.3844055938655 234.0414579761331 654.4450700980979 58.65804618462153 170.2873669111025 653.9840566306884 61.10039516648862 151.1203615394239 653.9779031270919 69.69987661091614 68.12419731146974 653.9073970082536 88.44015810897645 92.34397412250223 654.3995785899133 88.92419319351984 209.6651942524946 654.7797708777798 100.2745137243646 120.5904321281187 654.7511737201385 100.5250687215914 181.3203644578765 654.9479757299105 104.3964516822045 150.9386219007286 654.9382217720795 -126.06751657361 182.2715100793635 649.9220888016989 -126.3180715708334 121.5415777496104 649.7252867918232 -130.1894545314476 151.9233203067541 649.7350407497743 -114.7171960427513 93.19674795498679 649.8934916440921 -114.2331609573098 210.5179680871819 650.2736839319787 -96.17740844311061 68.82048423135379 650.2281924236795 -84.45104903385891 132.5745752963786 650.6892058911944 -71.96216465835323 50.07398866778526 650.7065798257281 -77.13237588189577 114.6926021373032 650.7953217039358 -65.43613404047778 99.31428811025562 651.0064752160179 -43.72169353485356 38.23480395689495 651.2960525392555 -50.1594030621286 87.48763990234041 651.3082766642219 -32.34326691704018 80.01862404443889 651.6801587788141 -13.38053651007772 34.10975097155117 651.9564389730385 -13.20186584094904 77.4162416241422 652.0967784082259 16.99360670586566 37.97994525573047 652.6427348829984 5.960345315485029 79.85784070276677 652.5297436130768 23.8374935267766 87.17703033711156 652.9495485301977 45.33078844625607 49.5816394638728 653.3081703368771 39.21128069175347 98.87501985224266 653.3275841486011 51.03400861725345 114.1546105927828 653.6380879651388 58.49997793133139 131.9745236962393 653.8598996580549 61.10039516648862 151.1203615394239 653.9779031270919 58.49997793133139 131.9745236962393 653.8598996580549 69.69987661091614 68.12419731146974 653.9073970082536 51.03400861725345 114.1546105927828 653.6380879651388 45.33078844625607 49.5816394638728 653.3081703368771 39.21128069175347 98.87501985224266 653.3275841486011 23.8374935267766 87.17703033711156 652.9495485301977 16.99360670586566 37.97994525573047 652.6427348829984 5.960345315485029 79.85784070276677 652.5297436130768 -13.20186584094904 77.4162416241422 652.0967784082259 -13.38053651007772 34.10975097155117 651.9564389730385 -32.34326691704018 80.01862404443889 651.6801587788141 -43.72169353485356 38.23480395689495 651.2960525392555 -50.1594030621286 87.48763990234041 651.3082766642219 -65.43613404047778 99.31428811025562 651.0064752160179 -71.96216465835323 50.07398866778526 650.7065798257281 -77.13237588189577 114.6926021373032 650.7953217039358 -84.45104903385891 132.5745752963786 650.6892058911944 -96.17740844311061 68.82048423135379 650.2281924236795 -86.89339801573487 151.7415806680641 650.6953593948274 -95.49287946060781 234.7377448964571 650.7658655136074 -114.2331609573098 210.5179680871819 650.2736839319787 -114.7171960427513 93.19674795498679 649.8934916440921 -126.06751657361 182.2715100793635 649.9220888016989 -126.3180715708334 121.5415777496104 649.7252867918232 -130.1894545314476 151.9233203067541 649.7350407497743 104.3964516822045 150.9386219007286 654.9382217720795 100.5250687215914 181.3203644578765 654.9479757299105 100.2745137243646 120.5904321281187 654.7511737201385 88.92419319351984 209.6651942524946 654.7797708777798 88.44015810897645 92.34397412250223 654.3995785899133 70.3844055938655 234.0414579761331 654.4450700980979 58.65804618462153 170.2873669111025 653.9840566306884 51.33937303265839 188.169340070183 653.877940817878 46.16916180911085 252.7879535397036 653.9666826961548 39.64313119123176 203.5476540972258 653.6667873058996 24.36640021288145 215.3743023051492 653.3649858577082 17.92869068560867 264.6271382505906 653.3772099826074 6.550264067792796 222.843318163047 652.9931037430615 -12.41246633917126 268.7521912359394 652.7168235488207 -12.59113700829835 225.4457005833419 652.576484113697 -31.75334816472764 223.004101504724 652.1435189087897 -42.78660955511646 264.8819969517498 652.0305276389845 -49.63049637822701 215.6849118694661 651.7237139915487 -65.00428354144651 203.986922355688 651.3456783733309 -71.12379129771443 253.2803027427156 651.3650921849239 -76.82701146557702 188.7073316168946 651.0351745567004 -84.2929807805815 170.8874185112409 650.8133628638188 -114.7171960427513 93.19674795498679 649.8934916440921 -115.8069432898549 93.04212322671067 698.995586245077 -114.7171960427513 93.19674795498679 649.8934916440921 -115.8069432898549 93.04212322671067 698.995586245077 -127.4078188179328 121.3869530213279 698.8273813927917 -127.1572638207119 182.1168853510792 699.0241834027311 -131.279201778545 151.7686955784707 698.837135350761 -125.3751940718648 151.7439129004705 698.968087893325 -121.6986793810681 122.8914526867982 698.95882490636 -115.8069432898549 93.04212322671067 698.995586245077 -110.6817405406437 95.97337606974676 699.118563071368 -97.2671556902103 68.6658595030728 699.3302870248044 -93.07516372621922 72.82410548656419 699.4364164964663 -73.05191190545793 49.91936393950994 699.8086744267039 -70.07880805143213 55.02122547148733 699.8907239955424 -44.81144078195757 38.08017922862153 700.3981471402949 -43.25983715224947 43.77797287691813 700.4505252638028 -14.47028375717832 33.95512624327606 701.058533574027 -14.44591957502644 39.86055678680927 701.0776707697314 15.90385945876096 37.82532052745395 701.7448294839833 14.39932381461858 43.53594263387302 701.7294215835427 41.31013734648855 54.55365894557272 702.3613619641146 44.24104119914455 49.427014735592 702.4102649378565 64.45259355664643 72.16286656603103 702.9304262193346 68.61012936380894 67.96957258319777 703.0094916092457 82.24957229482629 95.16352709472841 703.3978335602224 87.35041086187539 92.18934939424022 703.5016731909363 93.48823886911487 121.9881835227754 703.7317309490845 99.18476647725402 120.4358073998435 703.8532683211179 97.402696728406 150.8087798504473 703.9093638305603 -121.4607362125678 180.5645092281603 699.1457207747644 -115.3229082044056 210.3633433588989 699.3757785329017 -110.2220696373522 207.3891656584 699.4796181636193 -96.5826267077025 234.5831201681714 699.8679601146159 -92.42509090054114 230.3898261853377 699.9470255044926 -72.21353854481458 253.1256780144234 700.467186785967 -69.28263469215449 247.9990338044426 700.5160897596161 -43.87635680221638 264.7273722234655 701.1326222399985 -42.37182115807286 259.0167501170569 701.1480301402753 -13.50221358627618 268.5975665076521 701.8189181498074 -13.52657776842671 262.6921359641133 701.7997809541612 15.28733980880065 258.7747198740046 702.4269264600625 16.83894343849943 264.4725135223025 702.4793045835868 42.10631070796694 247.5314672794351 702.9867277283247 45.07941456201024 252.6333288114151 703.0687772971396 65.10266638276494 229.7285872643594 703.441035227519 69.29465834675716 233.8868332478504 703.5471646991227 82.70924319719688 206.5793166811739 703.7588886523445 87.83444594641151 209.5105695242102 703.8818654787519 93.72618203761977 179.6612400641299 703.9186268174217 99.43532147448036 181.1657397295957 704.0500703309608 103.3067044350903 150.7839971724487 704.040316373108 103.3067044350903 150.7839971724487 704.040316373108 99.18476647725402 120.4358073998435 703.8532683211179 99.43532147448036 181.1657397295957 704.0500703309608 97.402696728406 150.8087798504473 703.9093638305603 93.72618203761977 179.6612400641299 703.9186268174217 87.83444594641151 209.5105695242102 703.8818654787519 82.70924319719688 206.5793166811739 703.7588886523445 69.29465834675716 233.8868332478504 703.5471646991227 65.10266638276494 229.7285872643594 703.441035227519 45.07941456201024 252.6333288114151 703.0687772971396 42.10631070796694 247.5314672794351 702.9867277283247 16.83894343849943 264.4725135223025 702.4793045835868 15.28733980880065 258.7747198740046 702.4269264600625 -13.50221358627618 268.5975665076521 701.8189181498074 -13.52657776842671 262.6921359641133 701.7997809541612 -42.37182115807286 259.0167501170569 701.1480301402753 -43.87635680221638 264.7273722234655 701.1326222399985 -69.28263469215449 247.9990338044426 700.5160897596161 -72.21353854481458 253.1256780144234 700.467186785967 -92.42509090054114 230.3898261853377 699.9470255044926 -96.5826267077025 234.5831201681714 699.8679601146159 -110.2220696373522 207.3891656584 699.4796181636193 -115.3229082044056 210.3633433588989 699.3757785329017 -121.4607362125678 180.5645092281603 699.1457207747644 -125.3751940718648 151.7439129004705 698.968087893325 -127.1572638207119 182.1168853510792 699.0241834027311 93.48823886911487 121.9881835227754 703.7317309490845 87.35041086187539 92.18934939424022 703.5016731909363 82.24957229482629 95.16352709472841 703.3978335602224 68.61012936380894 67.96957258319777 703.0094916092457 64.45259355664643 72.16286656603103 702.9304262193346 44.24104119914455 49.427014735592 702.4102649378565 41.31013734648855 54.55365894557272 702.3613619641146 15.90385945876096 37.82532052745395 701.7448294839833 14.39932381461858 43.53594263387302 701.7294215835427 -14.44591957502644 39.86055678680927 701.0776707697314 -14.47028375717832 33.95512624327606 701.058533574027 -43.25983715224947 43.77797287691813 700.4505252638028 -44.81144078195757 38.08017922862153 700.3981471402949 -70.07880805143213 55.02122547148733 699.8907239955424 -73.05191190545793 49.91936393950994 699.8086744267039 -93.07516372621922 72.82410548656419 699.4364164964663 -97.2671556902103 68.6658595030728 699.3302870248044 -110.6817405406437 95.97337606974676 699.118563071368 -115.8069432898549 93.04212322671067 698.995586245077 -121.6986793810681 122.8914526867982 698.95882490636 -127.4078188179328 121.3869530213279 698.8273813927917 -131.279201778545 151.7686955784707 698.837135350761 -115.3229082044056 210.3633433588989 699.3757785329017 -114.2331609573098 210.5179680871819 650.2736839319787 -114.2331609573098 210.5179680871819 650.2736839319787 -115.3229082044056 210.3633433588989 699.3757785329017 -72.21353854481458 253.1256780144234 700.467186785967 -42.78660955511646 264.8819969517498 652.0305276389845 -71.12379129771443 253.2803027427156 651.3650921849239 -43.87635680221638 264.7273722234655 701.1326222399985 -43.87635680221638 264.7273722234655 701.1326222399985 -72.21353854481458 253.1256780144234 700.467186785967 -42.78660955511646 264.8819969517498 652.0305276389845 -71.12379129771443 253.2803027427156 651.3650921849239 -12.41246633917126 268.7521912359394 652.7168235488207 -13.50221358627618 268.5975665076521 701.8189181498074 -13.50221358627618 268.5975665076521 701.8189181498074 -12.41246633917126 268.7521912359394 652.7168235488207 17.92869068560867 264.6271382505906 653.3772099826074 16.83894343849943 264.4725135223025 702.4793045835868 16.83894343849943 264.4725135223025 702.4793045835868 17.92869068560867 264.6271382505906 653.3772099826074 46.16916180911085 252.7879535397036 653.9666826961548 45.07941456201024 252.6333288114151 703.0687772971396 45.07941456201024 252.6333288114151 703.0687772971396 46.16916180911085 252.7879535397036 653.9666826961548 70.3844055938655 234.0414579761331 654.4450700980979 69.29465834675716 233.8868332478504 703.5471646991227 69.29465834675716 233.8868332478504 703.5471646991227 70.3844055938655 234.0414579761331 654.4450700980979 88.92419319351984 209.6651942524946 654.7797708777798 87.83444594641151 209.5105695242102 703.8818654787519 88.92419319351984 209.6651942524946 654.7797708777798 87.83444594641151 209.5105695242102 703.8818654787519 100.5250687215914 181.3203644578765 654.9479757299105 99.43532147448036 181.1657397295957 704.0500703309608 100.5250687215914 181.3203644578765 654.9479757299105 99.43532147448036 181.1657397295957 704.0500703309608 104.3964516822045 150.9386219007286 654.9382217720795 103.3067044350903 150.7839971724487 704.040316373108 104.3964516822045 150.9386219007286 654.9382217720795 103.3067044350903 150.7839971724487 704.040316373108 100.2745137243646 120.5904321281187 654.7511737201385 99.18476647725402 120.4358073998435 703.8532683211179 100.2745137243646 120.5904321281187 654.7511737201385 99.18476647725402 120.4358073998435 703.8532683211179 88.44015810897645 92.34397412250223 654.3995785899133 87.35041086187539 92.18934939424022 703.5016731909363 88.44015810897645 92.34397412250223 654.3995785899133 87.35041086187539 92.18934939424022 703.5016731909363 69.69987661091614 68.12419731146974 653.9073970082536 68.61012936380894 67.96957258319777 703.0094916092457 69.69987661091614 68.12419731146974 653.9073970082536 68.61012936380894 67.96957258319777 703.0094916092457 44.24104119914455 49.427014735592 702.4102649378565 45.33078844625607 49.5816394638728 653.3081703368771 44.24104119914455 49.427014735592 702.4102649378565 45.33078844625607 49.5816394638728 653.3081703368771 15.90385945876096 37.82532052745395 701.7448294839833 16.99360670586566 37.97994525573047 652.6427348829984 15.90385945876096 37.82532052745395 701.7448294839833 16.99360670586566 37.97994525573047 652.6427348829984 -14.47028375717832 33.95512624327606 701.058533574027 -13.38053651007772 34.10975097155117 651.9564389730385 -14.47028375717832 33.95512624327606 701.058533574027 -13.38053651007772 34.10975097155117 651.9564389730385 -44.81144078195757 38.08017922862153 700.3981471402949 -43.72169353485356 38.23480395689495 651.2960525392555 -44.81144078195757 38.08017922862153 700.3981471402949 -43.72169353485356 38.23480395689495 651.2960525392555 -73.05191190545793 49.91936393950994 699.8086744267039 -71.96216465835323 50.07398866778526 650.7065798257281 -73.05191190545793 49.91936393950994 699.8086744267039 -71.96216465835323 50.07398866778526 650.7065798257281 -97.2671556902103 68.6658595030728 699.3302870248044 -96.17740844311061 68.82048423135379 650.2281924236795 -97.2671556902103 68.6658595030728 699.3302870248044 -96.17740844311061 68.82048423135379 650.2281924236795 -96.5826267077025 234.5831201681714 699.8679601146159 -95.49287946060781 234.7377448964571 650.7658655136074 -95.49287946060781 234.7377448964571 650.7658655136074 -96.5826267077025 234.5831201681714 699.8679601146159</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10347\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10344\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10348\">-0.9997453049990294 0.004196533475486112 -0.0221746305310124 -0.9667476113080605 -0.2547619433525609 -0.02225776829301872 -0.96674761130805 -0.2547619433526012 -0.02225776829301862 -0.9997453049990305 0.004196533475234306 -0.02217463053101321 0.9997453049990305 -0.004196533475234306 0.02217463053101321 0.9997453049990294 -0.004196533475486112 0.0221746305310124 0.9667476113080605 0.2547619433525609 0.02225776829301872 0.96674761130805 0.2547619433526012 0.02225776829301862 -0.9646120083116109 0.2628690234818654 -0.02058032834361922 -0.9646120083115949 0.2628690234819244 -0.02058032834361867 0.9646120083115949 -0.2628690234819244 0.02058032834361867 0.9646120083116109 -0.2628690234818654 0.02058032834361922 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 0.02218792451952435 0.003148254615079728 -0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.02218792451952435 -0.003148254615079728 0.9997488607137268 -0.8678676655324042 -0.4963588147550702 -0.02082407592852708 -0.8678676655322664 -0.4963588147553111 -0.02082407592852478 0.8678676655324042 0.4963588147550702 0.02082407592852708 0.8678676655322664 0.4963588147553111 0.02082407592852478 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 -0.02218792451955369 -0.00314825461509438 0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 0.02218792451955369 0.00314825461509438 -0.999748860713726 -0.8637419973543966 0.5036274239500164 -0.01758351079016875 -0.8637419973544561 0.503627423949914 -0.0175835107901704 0.8637419973544561 -0.503627423949914 0.0175835107901704 0.8637419973543966 -0.5036274239500164 0.01758351079016875 -0.4962997190496892 0.8681117528912262 -0.008280903532952093 -0.2547680357418232 0.9669986766857734 -0.002609071140499957 -0.4962997190497236 0.8681117528912065 -0.008280903532952917 -0.2547680357416958 0.9669986766858069 -0.002609071140497024 0.2547680357416958 -0.9669986766858069 0.002609071140497024 0.4962997190496892 -0.8681117528912262 0.008280903532952093 0.2547680357418232 -0.9669986766857734 0.002609071140499957 0.4962997190497236 -0.8681117528912065 0.008280903532952917 0.004125668178056804 0.9999862387051474 0.003240565138499258 0.004125668177842109 0.9999862387051482 0.003240565138494496 -0.004125668177842109 -0.9999862387051482 -0.003240565138494496 -0.004125668178056804 -0.9999862387051474 -0.003240565138499258 0.2627382146293889 0.9648263911121457 0.008869362258593453 0.2627382146294206 0.964826391112137 0.008869362258594129 -0.2627382146294206 -0.964826391112137 -0.008869362258594129 -0.2627382146293889 -0.9648263911121457 -0.008869362258593453 0.5034455859492909 0.8639152194158161 0.01389372699808883 0.5034455859492204 0.863915219415857 0.01389372699808739 -0.5034455859492204 -0.863915219415857 -0.01389372699808739 -0.5034455859492909 -0.8639152194158161 -0.01389372699808883 0.709843972569829 0.704129653203742 0.01797125720315903 0.709843972569798 0.704129653203773 0.01797125720315844 -0.709843972569798 -0.704129653203773 -0.01797125720315844 -0.709843972569829 -0.704129653203742 -0.01797125720315903 0.8678676655323875 0.4963588147550893 0.02082407592876557 0.8678676655323849 0.4963588147550939 0.02082407592876552 -0.8678676655323875 -0.4963588147550893 -0.02082407592876557 -0.8678676655323849 -0.4963588147550939 -0.02082407592876552 0.9667476113080534 0.2547619433525657 0.02225776829327001 0.9667476113080682 0.2547619433525102 0.02225776829327017 -0.9667476113080534 -0.2547619433525657 -0.02225776829327001 -0.9667476113080682 -0.2547619433525102 -0.02225776829327017 0.9997453049990241 -0.004196533475280511 0.0221746305312858 0.999745304999024 -0.004196533475290741 0.02217463053128576 -0.9997453049990241 0.004196533475280511 -0.0221746305312858 -0.999745304999024 0.004196533475290741 -0.02217463053128576 0.9646120083115577 -0.2628690234820428 0.02058032834384917 0.964612008311564 -0.2628690234820191 0.02058032834384938 -0.9646120083115577 0.2628690234820428 -0.02058032834384917 -0.964612008311564 0.2628690234820191 -0.02058032834384938 0.8637419973543362 -0.5036274239501117 0.01758351079040577 0.8637419973543882 -0.5036274239500227 0.01758351079040721 -0.8637419973543362 0.5036274239501117 -0.01758351079040577 -0.8637419973543882 0.5036274239500227 -0.01758351079040721 0.7040093966787026 -0.7100644477594535 0.01338840603475576 0.7040093966786476 -0.7100644477595082 0.01338840603475437 -0.7040093966787026 0.7100644477594535 -0.01338840603475576 -0.7040093966786476 0.7100644477595082 -0.01338840603475437 0.4962997190496915 -0.8681117528912227 0.00828090353319496 0.4962997190499408 -0.86811175289108 0.008280903533200939 -0.4962997190496915 0.8681117528912227 -0.00828090353319496 -0.4962997190499408 0.86811175289108 -0.008280903533200939 0.2547680357419092 -0.9669986766857501 0.002609071140726023 0.2547680357417466 -0.9669986766857929 0.00260907114072228 -0.2547680357419092 0.9669986766857501 -0.002609071140726023 -0.2547680357417466 0.9669986766857929 -0.00260907114072228 -0.004125668177975331 -0.9999862387051484 -0.003240565138264253 -0.004125668178076335 -0.9999862387051479 -0.003240565138266493 0.004125668177975331 0.9999862387051484 0.003240565138264253 0.004125668178076335 0.9999862387051479 0.003240565138266493 -0.2627382146294402 -0.9648263911121338 -0.008869362258363279 -0.2627382146294369 -0.9648263911121348 -0.008869362258363212 0.2627382146294402 0.9648263911121338 0.008869362258363279 0.2627382146294369 0.9648263911121348 0.008869362258363212 -0.5034455859492825 -0.8639152194158246 -0.01389372699786493 -0.5034455859492294 -0.8639152194158557 -0.01389372699786385 0.5034455859492825 0.8639152194158246 0.01389372699786493 0.5034455859492294 0.8639152194158557 0.01389372699786385 -0.7098439725697839 -0.7041296532037934 -0.01797125720292185 -0.7098439725697927 -0.7041296532037845 -0.01797125720292202 0.7098439725697839 0.7041296532037934 0.01797125720292185 0.7098439725697927 0.7041296532037845 0.01797125720292202 -0.7040093966785864 0.710064447759574 -0.01338840603447757 -0.7040093966785818 0.7100644477595786 -0.01338840603447746 0.7040093966785818 -0.7100644477595786 0.01338840603447746 0.7040093966785864 -0.710064447759574 0.01338840603447757</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10348\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10346\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID10349\">-5.483577237580718 202.1366675123339 -5.4835772728996 203.0461939783278 -4.91640305732723 202.1366675343577 -4.916403092646132 203.0461940003513 2.064363878912105 202.1366677934726 2.064363848863802 203.0461942594674 2.631538059165689 202.1366678122102 2.631538029117362 203.0461942782042 3.113815415067028 27.40403658257791 3.471418124215226 27.39172485697959 4.601906129648905 26.98784830651147 3.82002232555215 27.47238703495572 5.016520829517308 27.37486407033246 4.135871218972007 27.64052612241667 4.397440224270161 27.88468371839535 5.316840825602569 27.85600277242122 4.586903845953247 28.18822088614302 4.691350451382752 28.53045206939725 5.482399806548594 28.39847560545005 4.703662176980982 28.88805477854533 5.501915201379902 28.96531394228938 4.622999998994785 29.23665897992541 4.454860911553482 29.55250787330897 5.374057068189412 29.51788868702822 4.210703315602708 29.81407687857692 3.9071661478175 30.00354050028354 5.107538727458533 30.01854278398587 3.564934964563268 30.10798710571299 2.076844249974778 30.52417538178895 2.577498346932252 30.7906937225198 4.720522963665696 30.43315748382414 3.130073091671207 30.91855185571026 4.239384261539485 30.73347747993283 3.696911428510644 30.89903646087883 2.981838951119748 26.61298722741202 2.439366118090841 26.77854620835806 3.548677287959202 26.59347183258064 1.95822741596468 27.07886620446649 4.101252032655109 26.72132996576131 1.571211652171797 27.49348090430507 2.771584231812897 27.50848318800719 2.468047064027606 27.69794680971385 1.304693311440861 27.99413500126263 2.223889468076935 27.9595158149819 2.055750380635484 28.27536470836551 1.17683517825044 28.54670974600151 1.975088202649361 28.6239689097456 1.196350573081671 29.11354808284093 1.987399928247617 28.98157161889365 2.091846533676994 29.32380280214784 1.361909554027873 29.65602091586971 2.281310155383655 29.62733996993299 2.542879160651602 29.87149756588376 1.66222955013633 30.13715961799604 2.858728054035312 30.03963665332521 3.207332255415231 30.12029883131138 -12.67714761892137 202.1366671930763 -12.67714765710392 203.0461936590699 -12.10997343866771 202.1366672168877 -12.10997347685039 203.0461936828817 -2.981838951115773 26.61298722740687 -3.548677287955137 26.59347183257546 -2.439366118086867 26.77854620835284 -2.999835741654127 26.72085759402032 -2.484668588139819 26.87808306921412 -1.958227415960772 27.07886620446123 -2.027748277060178 27.16328628699512 -1.571211652167851 27.4934809042998 -1.660213172518601 27.557031119392 -1.304693311437001 27.99413500125721 -1.407110184508939 28.03248450677145 -1.176835178246601 28.54670974599626 -1.285687863391827 28.55724508650675 -1.196350573077801 29.1135480828356 -1.304220939691374 29.09555129229725 -1.461446414885122 29.61071844581139 -1.361909554023931 29.65602091586429 -1.746649632666103 30.06763875689105 -1.662229550132529 30.13715961799058 -2.140394465063173 30.4351738614327 -2.076844249970848 30.52417538178343 -2.615847852442432 30.68827684944233 -2.577498346928289 30.79069372251434 -3.140608432177694 30.80969917055954 -3.678914637968372 30.79116609425998 -3.130073091667275 30.91855185570486 -3.538141947444464 26.70232451772073 -4.101252032650772 26.72132996575597 -4.062902527136811 26.82374683882787 -4.601906129644773 26.98784830650623 -4.538355914552464 27.07684982685699 -5.016520829513353 27.37486407032727 -4.93210074697978 27.44438493142678 -5.316840825598515 27.85600277241592 -5.21730396473715 27.90130524246889 -5.374529439931019 28.41647239598296 -5.482399806544501 28.39847560544467 -5.393062516230554 28.9547786017734 -5.501915201375784 28.96531394228405 -5.271640195113498 29.47953918150899 -5.374057068185337 29.51788868702292 -5.018537207103766 29.9549925688882 -5.107538727454527 30.0185427839804 -4.651002102562254 30.34873740128504 -4.720522963661629 30.43315748381882 -4.194081791482475 30.63394061906606 -4.239384261535523 30.73347747992742 -3.696911428506687 30.89903646087337 9.452296017041084 202.1366679614952 9.452295994311053 203.046194427488 10.01947019729461 202.1366679756696 10.01947017456463 203.0461944416644 25.87859137654846 203.0461940194848 26.44576555680215 203.0461940157178 25.87859137051103 202.1366675534904 26.44576555076467 202.1366675497229 28.19482627418139 203.0461937041376 28.76200045443477 203.0461936943401 28.1948262584672 202.1366672381436 28.76200043872069 202.1366672283456 28.57030436384309 203.0461934273251 29.13747854409657 203.0461934121594 28.57030433952309 202.1366669613313 29.13747851977664 202.1366669461655 26.97943743422659 203.0461932637539 27.5466116144802 203.0461932442549 26.97943740295837 202.13666679776 27.54661158321182 202.1366667782611 23.5306404375533 203.0461932576816 24.09781461780676 203.0461932351793 23.53064040146742 202.1366667916869 24.09781458172104 202.1366667691854 19.02611733154978 202.1366669210729 18.45894315129611 202.1366669450476 19.02611736999398 203.0461933870675 18.45894318974029 203.0461934110412 12.67714761892207 202.1366671930841 12.10997343866859 202.136667216893 12.67714765710464 203.0461936590778 12.10997347685123 203.0461936828882 5.483577237579813 202.1366675123409 4.916403057326249 202.1366675343669 5.483577272898776 203.046193978336 4.916403092645235 203.0461940003616 -2.064363878911826 202.136667793479 -2.631538059165426 202.1366678122163 -2.064363848863472 203.0461942594737 -2.631538029116981 203.0461942782102 -9.452296017047217 202.1366679615003 -10.01947019725661 202.1366679756751 -9.452295994317144 203.046194427494 -10.01947017452623 203.0461944416697 -16.17674381068427 202.1366679718376 -16.7439179909789 202.1366679804813 -16.17674379682127 203.0461944378322 -16.74391797711613 203.0461944464754 -21.77944725145274 203.0461942882653 -21.77944725550341 202.1366678222713 -22.34662143174756 203.046194290793 -22.34662143579806 202.1366678247992 -25.87859137658993 203.0461940194863 -25.87859137055231 202.1366675534925 -26.44576555679927 203.0461940157213 -26.4457655507618 202.1366675497274 -28.19482627418167 203.0461937041391 -28.19482625846751 202.1366672381452 -28.76200045443508 203.0461936943388 -28.76200043872099 202.1366672283449 -28.57030436384279 203.0461934273251 -28.57030433952291 202.1366669613311 -29.1374785440963 203.0461934121602 -29.13747851977638 202.1366669461653 -26.97943743422634 203.0461932637523 -26.97943740295797 202.1366667977574 -27.54661161447979 203.0461932442526 -27.5466115832114 202.1366667782588 -23.53064043755505 203.0461932576786 -23.53064040146913 202.1366667916849 -24.09781461780854 203.0461932351779 -24.09781458172279 202.1366667691814 -19.02611733154938 202.1366669210684 -19.02611736999362 203.0461933870622 -18.45894315129596 202.1366669450413 -18.45894318974006 203.0461934110378 16.17674381072743 202.1366679718319 16.17674379686472 203.0461944378262 16.74391799098094 202.1366679804755 16.74391797711822 203.0461944464682 21.77944725145189 203.0461942882614 22.34662143170534 203.046194290789 21.77944725550245 202.1366678222664 22.34662143575604 202.1366678247946</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10349\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10345\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10343\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10344\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10345\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 3 0 3 8 9 12 13 14 13 12 15 13 15 16 16 15 17 17 15 18 17 18 19 19 18 20 20 18 21 20 21 22 22 21 23 23 21 24 23 24 25 25 24 26 25 26 27 27 26 28 28 26 29 28 29 30 30 29 31 31 29 32 32 29 33 33 29 34 33 34 35 35 34 36 35 36 37 38 39 40 39 38 41 41 38 42 41 42 43 43 42 12 43 12 14 43 14 44 43 44 45 45 44 46 45 46 47 45 47 48 48 47 49 48 49 50 48 50 51 51 50 52 51 52 53 53 52 54 53 54 55 53 55 56 56 55 57 56 57 58 56 58 32 32 58 59 32 59 31 2 108 109 108 2 1 112 113 114 113 112 115 115 112 116 116 112 117 116 117 118 118 117 119 118 119 120 120 119 121 120 121 122 122 121 123 122 123 124 124 123 125 124 125 126 126 125 127 126 127 128 128 127 129 129 127 130 129 130 131 131 130 132 131 132 133 133 132 134 133 134 135 135 134 136 135 136 137 113 138 139 138 113 115 139 138 140 139 140 141 141 140 142 141 142 143 143 142 144 143 144 145 145 144 146 145 146 147 147 146 148 147 148 149 147 149 150 150 149 151 150 151 152 152 151 153 152 153 154 154 153 155 154 155 156 156 155 157 156 157 158 158 157 137 158 137 136 158 136 159 208 9 8 9 208 209 212 213 214 213 212 215 215 220 213 220 215 221 221 224 220 224 221 225 225 228 224 228 225 229 229 232 228 232 229 233 236 233 237 233 236 232 240 237 241 237 240 236 244 241 245 241 244 240 248 245 249 245 248 244 252 249 253 249 252 248 256 253 257 253 256 252 256 260 261 260 256 257 261 264 265 264 261 260 265 268 269 268 265 264 269 272 273 272 269 268 273 276 277 276 273 272 277 280 281 280 277 276 109 281 280 281 109 108 284 209 208 209 284 285 284 214 285 214 284 212</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10345\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10346\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 11 5 4 6 5 7 4 6 11 5 60 8 61 9 62 10 61 9 63 11 62 10 62 10 63 11 64 12 63 11 65 13 64 12 65 13 66 14 64 12 64 12 66 14 67 15 66 14 68 16 67 15 68 16 69 17 67 15 67 15 69 17 70 18 69 17 71 19 70 18 70 18 71 19 72 20 71 19 73 21 72 20 73 21 74 22 72 20 72 20 74 22 75 23 74 22 76 24 75 23 76 24 77 25 75 23 75 23 77 25 78 26 77 25 79 27 78 26 79 27 80 28 78 26 80 28 81 29 78 26 78 26 81 29 82 30 81 29 83 31 82 30 82 30 83 31 84 32 85 33 84 32 83 31 86 34 87 35 88 36 87 35 89 37 88 36 88 36 89 37 90 38 89 37 91 39 90 38 90 38 91 39 62 10 62 10 91 39 60 8 60 8 91 39 92 40 92 40 91 39 93 41 91 39 94 42 93 41 93 41 94 42 95 43 95 43 94 42 96 44 94 42 97 45 96 44 96 44 97 45 98 46 97 45 99 47 98 46 98 46 99 47 100 48 100 48 99 47 101 49 99 47 102 50 101 49 101 49 102 50 103 51 103 51 102 50 104 52 102 50 105 53 104 52 104 52 105 53 106 54 106 54 105 53 107 55 105 53 80 28 107 55 79 27 107 55 80 28 6 56 7 57 110 58 111 59 110 58 7 57 160 60 161 61 162 62 161 61 163 63 162 62 163 63 164 64 162 62 162 62 164 64 165 65 164 64 166 66 165 65 165 65 166 66 167 67 166 66 168 68 167 67 167 67 168 68 169 69 168 68 170 70 169 69 169 69 170 70 171 71 170 70 172 72 171 71 171 71 172 72 173 73 172 72 174 74 173 73 174 74 175 75 173 73 173 73 175 75 176 76 175 75 177 77 176 76 176 76 177 77 178 78 177 77 179 79 178 78 178 78 179 79 180 80 179 79 181 81 180 80 180 80 181 81 182 82 181 81 183 83 182 82 184 84 185 85 183 83 182 82 183 83 185 85 163 63 161 61 186 86 161 61 187 87 186 86 186 86 187 87 188 88 187 87 189 89 188 88 188 88 189 89 190 90 189 89 191 91 190 90 190 90 191 91 192 92 191 91 193 93 192 92 192 92 193 93 194 94 194 94 193 93 195 95 193 93 196 96 195 95 195 95 196 96 197 97 196 96 198 98 197 97 197 97 198 98 199 99 198 98 200 100 199 99 199 99 200 100 201 101 200 100 202 102 201 101 201 101 202 102 203 103 202 102 204 104 203 103 203 103 204 104 205 105 204 104 206 106 205 105 205 105 206 106 184 84 184 84 206 106 185 85 207 107 185 85 206 106 210 108 211 109 10 110 11 111 10 110 211 109 216 112 217 113 218 114 219 115 218 114 217 113 222 116 216 117 223 118 218 119 223 118 216 117 226 120 222 121 227 122 223 123 227 122 222 121 230 124 226 125 231 126 227 127 231 126 226 125 234 128 230 129 235 130 231 131 235 130 230 129 235 132 238 133 234 134 239 135 234 134 238 133 238 136 242 137 239 138 243 139 239 138 242 137 242 140 246 141 243 142 247 143 243 142 246 141 246 144 250 145 247 146 251 147 247 146 250 145 250 148 254 149 251 150 255 151 251 150 254 149 254 152 258 153 255 154 259 155 255 154 258 153 259 156 258 157 262 158 263 159 262 158 258 157 262 160 263 161 266 162 267 163 266 162 263 161 266 164 267 165 270 166 271 167 270 166 267 165 270 168 271 169 274 170 275 171 274 170 271 169 274 172 275 173 278 174 279 175 278 174 275 173 278 176 279 177 282 178 283 179 282 178 279 177 110 180 111 181 283 182 282 183 283 182 111 181 286 184 287 185 210 186 211 187 210 186 287 185 217 188 287 189 219 190 286 191 219 190 287 189</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10350\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10351\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10355\">-44.86231506581794 127.126439967612 3321.894060775119 -51.62071850683128 122.0203314141937 3334.233343817101 -49.90513789104125 120.6091396091691 3321.76161962076 -46.90420470553522 128.1159128282305 3334.357215020542 -46.90420470553522 128.1159128282305 3334.357215020542 -44.86231506581794 127.126439967612 3321.894060775119 -51.62071850683128 122.0203314141937 3334.233343817101 -49.90513789104125 120.6091396091691 3321.76161962076 -57.75387828170165 117.3535802766234 3334.082531735345 -56.46261644542642 115.6195222460687 3321.600373700419 -57.75387828170165 117.3535802766234 3334.082531735345 -56.46261644542642 115.6195222460687 3321.600373700419 -37.06629038060464 123.3485889531744 3274.309188280708 -49.90513789104125 120.6091396091691 3321.76161962076 -43.35497544838631 115.2211470685656 3274.144026676111 -44.86231506581794 127.126439967612 3321.894060775119 -44.86231506581794 127.126439967612 3321.894060775119 -37.06629038060464 123.3485889531744 3274.309188280708 -49.90513789104125 120.6091396091691 3321.76161962076 -43.35497544838631 115.2211470685656 3274.144026676111 -41.67780801383242 134.7272800670472 3321.988671517527 -43.92575950117771 135.224920713532 3334.445703727855 -43.92575950117771 135.224920713532 3334.445703727855 -41.67780801383242 134.7272800670472 3321.988671517527 -64.88571932171089 114.4336907955361 3333.915056369475 -64.08786939694642 112.4976220580378 3321.42131165725 -64.88571932171089 114.4336907955361 3333.915056369475 -64.08786939694642 112.4976220580378 3321.42131165725 -56.46261644542642 115.6195222460687 3321.600373700419 -51.53252181407493 108.9988122190838 3273.942943900394 -56.46261644542642 115.6195222460687 3321.600373700419 -51.53252181407493 108.9988122190838 3273.942943900394 -33.09503010775734 132.827266134418 3274.42717322373 -41.67780801383242 134.7272800670472 3321.988671517527 -41.67780801383242 134.7272800670472 3321.988671517527 -33.09503010775734 132.827266134418 3274.42717322373 -40.7452245625384 115.591445798559 3156.553241085612 -37.06629038060464 123.3485889531744 3274.309188280708 -43.35497544838631 115.2211470685656 3274.144026676111 -34.45653949476741 123.7188876831326 3156.718402690231 -34.45653949476741 123.7188876831326 3156.718402690231 -40.7452245625384 115.591445798559 3156.553241085612 -37.06629038060464 123.3485889531744 3274.309188280708 -43.35497544838631 115.2211470685656 3274.144026676111 -40.56863562415242 142.8936752231412 3322.039004282626 -42.88835900840491 142.8628879383445 3334.49277957985 -42.88835900840491 142.8628879383445 3334.49277957985 -40.56863562415242 142.8936752231412 3322.039004282626 -72.5302184534105 113.4596486099058 3333.742330888725 -72.26124836576855 111.4561913798909 3321.236636273385 -72.5302184534105 113.4596486099058 3333.742330888725 -72.26124836576855 111.4561913798909 3321.236636273385 -64.08786939694642 112.4976220580378 3321.42131165725 -61.04164320162317 105.105626243948 3273.719643412631 -64.08786939694642 112.4976220580378 3321.42131165725 -61.04164320162317 105.105626243948 3273.719643412631 -51.53252181407493 108.9988122190838 3273.942943900394 -48.92277092820518 109.3691109490805 3156.35215830983 -51.53252181407493 108.9988122190838 3273.942943900394 -48.92277092820518 109.3691109490805 3156.35215830983 -31.71182945074042 143.0112224340995 3274.489941026381 -40.56863562415242 142.8936752231412 3322.039004282626 -40.56863562415242 142.8936752231412 3322.039004282626 -31.71182945074042 143.0112224340995 3274.489941026381 -33.09503010775734 132.827266134418 3274.42717322373 -30.48527922191465 133.1975648644078 3156.836387633275 -30.48527922191465 133.1975648644078 3156.836387633275 -33.09503010775734 132.827266134418 3274.42717322373 -43.86270035757275 150.5092996559145 3334.495234434957 -41.61038616328415 151.0690990988734 3322.041628975463 -41.61038616328415 151.0690990988734 3322.041628975463 -43.86270035757275 150.5092996559145 3334.495234434957 -80.16641569135163 114.4978330861002 3333.576126249411 -80.42575107957214 112.5662019924005 3321.058932871169 -80.16641569135163 114.4978330861002 3333.576126249411 -80.42575107957214 112.5662019924005 3321.058932871169 -72.26124836576855 111.4561913798909 3321.236636273385 -71.23430871047708 103.8069033297761 3273.489342771667 -72.26124836576855 111.4561913798909 3321.236636273385 -71.23430871047708 103.8069033297761 3273.489342771667 -61.04164320162317 105.105626243948 3273.719643412631 -58.43189231577321 105.4759249739464 3156.128857822012 -61.04164320162317 105.105626243948 3273.719643412631 -58.43189231577321 105.4759249739464 3156.128857822012 -41.61038616328415 151.0690990988734 3322.041628975463 -33.01095124961557 153.2064380574538 3274.493214166601 -33.01095124961557 153.2064380574538 3274.493214166601 -41.61038616328415 151.0690990988734 3322.041628975463 -31.71182945074042 143.0112224340995 3274.489941026381 -29.10207856490206 143.3815211640869 3156.899155436 -29.10207856490206 143.3815211640869 3156.899155436 -31.71182945074042 143.0112224340995 3274.489941026381 -46.78238379590675 157.6430655439696 3334.452900999002 -44.73206605354403 158.6964100676412 3321.996366727504 -44.73206605354403 158.6964100676412 3321.996366727504 -46.78238379590675 157.6430655439696 3334.452900999002 -87.27391681319591 117.4774936677689 3333.427769022794 -88.02498017089579 115.7520085067111 3320.90031164368 -87.27391681319591 117.4774936677689 3333.427769022794 -88.02498017089579 115.7520085067111 3320.90031164368 -80.42575107957214 112.5662019924005 3321.058932871169 -81.41590502766871 105.1911492980275 3273.26773658586 -80.42575107957214 112.5662019924005 3321.058932871169 -81.41590502766871 105.1911492980275 3273.26773658586 -71.23430871047708 103.8069033297761 3273.489342771667 -68.62455782462644 104.1772020597689 3155.898557181059 -71.23430871047708 103.8069033297761 3273.489342771667 -68.62455782462644 104.1772020597689 3155.898557181059 -44.73206605354403 158.6964100676412 3321.996366727504 -36.9038625007197 162.7181259081337 3274.43676958534 -36.9038625007197 162.7181259081337 3274.43676958534 -44.73206605354403 158.6964100676412 3321.996366727504 -33.01095124961557 153.2064380574538 3274.493214166601 -30.4012003637863 153.5767367874419 3156.902428576261 -30.4012003637863 153.5767367874419 3156.902428576261 -33.01095124961557 153.2064380574538 3274.493214166601 -51.44843772209106 163.7780312463654 3334.368664225563 -49.7209379692315 165.2558194916551 3321.906302086181 -49.7209379692315 165.2558194916551 3321.906302086181 -51.44843772209106 163.7780312463654 3334.368664225563 -93.3683573631813 122.1955714103758 3333.307369508881 -94.54106073547337 120.7965034736631 3320.771582365542 -93.3683573631813 122.1955714103758 3333.307369508881 -94.54106073547337 120.7965034736631 3320.771582365542 -88.02498017089579 115.7520085067111 3320.90031164368 -90.8925731900631 109.1640300735566 3273.069926950402 -88.02498017089579 115.7520085067111 3320.90031164368 -90.8925731900631 109.1640300735566 3273.069926950402 -81.41590502766871 105.1911492980275 3273.26773658586 -78.80615414181284 105.5614480280222 3155.676950995234 -81.41590502766871 105.1911492980275 3273.26773658586 -78.80615414181284 105.5614480280222 3155.676950995234 -49.7209379692315 165.2558194916551 3321.906302086181 -43.12526773559421 170.8980801779419 3274.324453887535 -43.12526773559421 170.8980801779419 3274.324453887535 -49.7209379692315 165.2558194916551 3321.906302086181 -36.9038625007197 162.7181259081337 3274.43676958534 -34.2941116148736 163.0884246381211 3156.845983995005 -34.2941116148736 163.0884246381211 3156.845983995005 -36.9038625007197 162.7181259081337 3274.43676958534 -57.54287827208327 168.4961089889728 3334.248264711672 -56.2370185338068 170.3003144586024 3321.777572808036 -57.54287827208327 168.4961089889728 3334.248264711672 -56.2370185338068 170.3003144586024 3321.777572808036 -99.52993265117266 127.3559128976901 3320.681517724283 -98.03441128936561 128.330537112762 3333.223132735511 -98.03441128936561 128.330537112762 3333.223132735511 -99.52993265117266 127.3559128976901 3320.681517724283 -94.54106073547337 120.7965034736631 3320.771582365542 -99.01849392330882 115.4548003969946 3272.909394265222 -94.54106073547337 120.7965034736631 3320.771582365542 -99.01849392330882 115.4548003969946 3272.909394265222 -90.8925731900631 109.1640300735566 3273.069926950402 -88.28282230419427 109.5343288035495 3155.479141359756 -90.8925731900631 109.1640300735566 3273.069926950402 -88.28282230419427 109.5343288035495 3155.479141359756 -56.2370185338068 170.3003144586024 3321.777572808036 -51.25118846884789 177.1888505013742 3274.163921202251 -56.2370185338068 170.3003144586024 3321.777572808036 -51.25118846884789 177.1888505013742 3274.163921202251 -43.12526773559421 170.8980801779419 3274.324453887535 -40.5155168497447 171.2683789079174 3156.733668297142 -40.5155168497447 171.2683789079174 3156.733668297142 -43.12526773559421 170.8980801779419 3274.324453887535 -64.65037939391959 171.475769570636 3334.099907485186 -63.83624762512022 173.486120972915 3321.618951580624 -64.65037939391959 171.475769570636 3334.099907485186 -63.83624762512022 173.486120972915 3321.618951580624 -102.6516125414241 134.9832238664649 3320.636255476446 -100.9540947276969 135.4643030008189 3333.180799299513 -100.9540947276969 135.4643030008189 3333.180799299513 -102.6516125414241 134.9832238664649 3320.636255476446 -105.2398991581988 123.6347546667938 3272.797078567292 -99.52993265117266 127.3559128976901 3320.681517724283 -99.52993265117266 127.3559128976901 3320.681517724283 -105.2398991581988 123.6347546667938 3272.797078567292 -99.01849392330882 115.4548003969946 3272.909394265222 -96.40874303745159 115.8250991269802 3155.318608674475 -99.01849392330882 115.4548003969946 3272.909394265222 -96.40874303745159 115.8250991269802 3155.318608674475 -63.83624762512022 173.486120972915 3321.618951580624 -60.72785663123796 181.1617312769014 3273.966111566859 -63.83624762512022 173.486120972915 3321.618951580624 -60.72785663123796 181.1617312769014 3273.966111566859 -51.25118846884789 177.1888505013742 3274.163921202251 -48.64143758299929 177.5591492313483 3156.573135611916 -51.25118846884789 177.1888505013742 3274.163921202251 -48.64143758299929 177.5591492313483 3156.573135611916 -72.28657663186004 172.5139540468341 3333.933702845692 -72.00075033892267 174.5961315854301 3321.441248178378 -72.28657663186004 172.5139540468341 3333.933702845692 -72.00075033892267 174.5961315854301 3321.441248178378 -103.6933630805459 143.1586477422112 3320.638880169165 -101.9284360768722 143.1107147183934 3333.183254154686 -101.9284360768722 143.1107147183934 3333.183254154686 -103.6933630805459 143.1586477422112 3320.638880169165 -109.1328104092809 133.146442517477 3272.740633986048 -102.6516125414241 134.9832238664649 3320.636255476446 -102.6516125414241 134.9832238664649 3320.636255476446 -109.1328104092809 133.146442517477 3272.740633986048 -105.2398991581988 123.6347546667938 3272.797078567292 -102.6301482723263 124.0050533967778 3155.206292976733 -102.6301482723263 124.0050533967778 3155.206292976733 -105.2398991581988 123.6347546667938 3272.797078567292 -72.00075033892267 174.5961315854301 3321.441248178378 -70.90945294843209 182.5459772451549 3273.744505380975 -72.00075033892267 174.5961315854301 3321.441248178378 -70.90945294843209 182.5459772451549 3273.744505380975 -60.72785663123796 181.1617312769014 3273.966111566859 -58.11810574538754 181.5320300068731 3156.375325976491 -60.72785663123796 181.1617312769014 3273.966111566859 -58.11810574538754 181.5320300068731 3156.375325976491 -79.93107576356374 171.5399118612021 3333.760977365118 -80.17412930773548 173.5547009072853 3321.256572794511 -79.93107576356374 171.5399118612021 3333.760977365118 -80.17412930773548 173.5547009072853 3321.256572794511 -100.8910355841024 150.7486819431997 3333.230330006736 -102.5841906908631 151.3250428983017 3320.689212934238 -102.5841906908631 151.3250428983017 3320.689212934238 -100.8910355841024 150.7486819431997 3333.230330006736 -110.4319322081656 143.3416581408297 3272.743907126298 -103.6933630805459 143.1586477422112 3320.638880169165 -103.6933630805459 143.1586477422112 3320.638880169165 -110.4319322081656 143.3416581408297 3272.743907126298 -109.1328104092809 133.146442517477 3272.740633986048 -106.5230595234141 133.516741247463 3155.149848395457 -106.5230595234141 133.516741247463 3155.149848395457 -109.1328104092809 133.146442517477 3272.740633986048 -80.17412930773548 173.5547009072853 3321.256572794511 -81.10211845728122 181.2472543309798 3273.514204740062 -80.17412930773548 173.5547009072853 3321.256572794511 -81.10211845728122 181.2472543309798 3273.514204740062 -70.90945294843209 182.5459772451549 3273.744505380975 -68.29970206257667 182.9162759751343 3156.153719790545 -70.90945294843209 182.5459772451549 3273.744505380975 -68.29970206257667 182.9162759751343 3156.153719790545 -87.06291680631421 168.6200223789959 3333.593501999123 -87.79938226199829 170.4328007181493 3321.077510751353 -87.06291680631421 168.6200223789959 3333.593501999123 -87.79938226199829 170.4328007181493 3321.077510751353 -97.91259037859572 157.8576898312289 3333.318818714024 -99.39968363774278 158.9258830004619 3320.783823676928 -99.39968363774278 158.9258830004619 3320.783823676928 -97.91259037859572 157.8576898312289 3333.318818714024 -102.5841906908631 151.3250428983017 3320.689212934238 -109.0487315511489 153.5256144405104 3272.806674928919 -109.0487315511489 153.5256144405104 3272.806674928919 -102.5841906908631 151.3250428983017 3320.689212934238 -110.4319322081656 143.3416581408297 3272.743907126298 -107.8221813223022 143.7119568708067 3155.153121535737 -107.8221813223022 143.7119568708067 3155.153121535737 -110.4319322081656 143.3416581408297 3272.743907126298 -87.79938226199829 170.4328007181493 3321.077510751353 -90.61123984755818 177.3540683547323 3273.290904252179 -87.79938226199829 170.4328007181493 3321.077510751353 -90.61123984755818 177.3540683547323 3273.290904252179 -81.10211845728122 181.2472543309798 3273.514204740062 -78.49236757143103 181.6175530609642 3155.923419149654 -81.10211845728122 181.2472543309798 3273.514204740062 -78.49236757143103 181.6175530609642 3155.923419149654 -93.19607657898314 163.9532712430934 3333.442689917338 -94.35686081419249 165.4431833567291 3320.916264831163 -93.19607657898314 163.9532712430934 3333.442689917338 -94.35686081419249 165.4431833567291 3320.916264831163 -99.39968363774278 158.9258830004619 3320.783823676928 -105.0774712771636 163.0042916244769 3272.924659871973 -105.0774712771636 163.0042916244769 3272.924659871973 -99.39968363774278 158.9258830004619 3320.783823676928 -109.0487315511489 153.5256144405104 3272.806674928919 -106.4389806652882 153.8959131704968 3155.215889338422 -106.4389806652882 153.8959131704968 3155.215889338422 -109.0487315511489 153.5256144405104 3272.806674928919 -94.35686081419249 165.4431833567291 3320.916264831163 -98.78878621106537 171.1317335069095 3273.089821476549 -94.35686081419249 165.4431833567291 3320.916264831163 -98.78878621106537 171.1317335069095 3273.089821476549 -90.61123984755818 177.3540683547323 3273.290904252179 -88.00148896170435 177.7243670847198 3155.700118661775 -90.61123984755818 177.3540683547323 3273.290904252179 -88.00148896170435 177.7243670847198 3155.700118661775 -105.0774712771636 163.0042916244769 3272.924659871973 -102.4677203913061 163.3745903544653 3155.333874281499 -102.4677203913061 163.3745903544653 3155.333874281499 -105.0774712771636 163.0042916244769 3272.924659871973 -98.78878621106537 171.1317335069095 3273.089821476549 -96.17903532519904 171.5020322368858 3155.499035886092 -98.78878621106537 171.1317335069095 3273.089821476549 -96.17903532519904 171.5020322368858 3155.499035886092</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10355\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10352\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10356\">0.8488592612173864 -0.4975436049539854 0.1785729985604356 0.6912172507109954 -0.7012787682118264 0.1744327995958223 0.6912172507108834 -0.7012787682119375 0.1744327995958195 0.8488592612173347 -0.4975436049540745 0.1785729985604341 -0.8488592612173347 0.4975436049540745 -0.1785729985604341 -0.8488592612173864 0.4975436049539854 -0.1785729985604356 -0.6912172507109954 0.7012787682118264 -0.1744327995958223 -0.6912172507108834 0.7012787682119375 -0.1744327995958195 0.4862260902068271 -0.8572575404256186 0.1693921444034552 0.4862260902065055 -0.8572575404258027 0.1693921444034475 -0.4862260902068271 0.8572575404256186 -0.1693921444034552 -0.4862260902065055 0.8572575404258027 -0.1693921444034475 0.8488592612173305 -0.497543604954211 0.1785729985600733 0.6912172507118619 -0.7012787682110939 0.1744327995953333 0.6912172507114788 -0.7012787682114742 0.1744327995953237 0.8488592612172257 -0.4975436049543909 0.1785729985600704 -0.8488592612172257 0.4975436049543909 -0.1785729985600704 -0.8488592612173305 0.497543604954211 -0.1785729985600733 -0.6912172507118619 0.7012787682110939 -0.1744327995953333 -0.6912172507114788 0.7012787682114742 -0.1744327995953237 0.9484090792240099 -0.2599362653419072 0.1815305935801665 0.948409079224059 -0.2599362653417265 0.1815305935801682 -0.948409079224059 0.2599362653417265 -0.1815305935801682 -0.9484090792240099 0.2599362653419072 -0.1815305935801665 0.2478555885283636 -0.9548502260374725 0.1637945453043122 0.2478555885274855 -0.9548502260377039 0.163794545304292 -0.2478555885283636 0.9548502260374725 -0.1637945453043122 -0.2478555885274855 0.9548502260377039 -0.163794545304292 0.4862260902073119 -0.8572575404254712 0.1693921444028101 0.4862260902070806 -0.8572575404256035 0.1693921444028046 -0.4862260902073119 0.8572575404254712 -0.1693921444028101 -0.4862260902070806 0.8572575404256035 -0.1693921444028046 0.9484090792240136 -0.2599362653422113 0.1815305935797115 0.9484090792239832 -0.259936265342323 0.1815305935797104 -0.9484090792239832 0.259936265342323 -0.1815305935797104 -0.9484090792240136 0.2599362653422113 -0.1815305935797115 0.7040093966784651 -0.7100644477596915 0.01338840603463176 0.8637419973544644 -0.5036274239498964 0.01758351079027387 0.7040093966787415 -0.7100644477594171 0.01338840603463876 0.8637419973543448 -0.5036274239501016 0.01758351079027057 -0.8637419973543448 0.5036274239501016 -0.01758351079027057 -0.7040093966784651 0.7100644477596915 -0.01338840603463176 -0.8637419973544644 0.5036274239498964 -0.01758351079027387 -0.7040093966787415 0.7100644477594171 -0.01338840603463876 0.9830825491485888 -0.004649296904795877 0.1831040294417456 0.9830825491485897 -0.004649296904572588 0.1831040294417462 -0.9830825491485897 0.004649296904572588 -0.1831040294417462 -0.9830825491485888 0.004649296904795877 -0.1831040294417456 -0.007649698561271493 -0.987406044802274 0.158021469426947 -0.007649698561401311 -0.9874060448022733 0.1580214694269441 0.007649698561271493 0.987406044802274 -0.158021469426947 0.007649698561401311 0.9874060448022733 -0.1580214694269441 0.2478555885284793 -0.954850226037501 0.1637945453039694 0.2478555885280373 -0.9548502260376177 0.1637945453039592 -0.2478555885284793 0.954850226037501 -0.1637945453039694 -0.2478555885280373 0.9548502260376177 -0.1637945453039592 0.4962997190494679 -0.8681117528913517 0.008280903533067376 0.4962997190494992 -0.8681117528913338 0.008280903533068125 -0.4962997190494679 0.8681117528913517 -0.008280903533067376 -0.4962997190494992 0.8681117528913338 -0.008280903533068125 0.9830825491486519 -0.004649296904145719 0.1831040294414231 0.9830825491486541 -0.004649296903616906 0.1831040294414248 -0.9830825491486541 0.004649296903616906 -0.1831040294414248 -0.9830825491486519 0.004649296904145719 -0.1831040294414231 0.9646120083115374 -0.2628690234821315 0.02058032834366281 0.9646120083114314 -0.2628690234825212 0.02058032834365923 -0.9646120083114314 0.2628690234825212 -0.02058032834365923 -0.9646120083115374 0.2628690234821315 -0.02058032834366281 0.9505167313163295 0.2509199153413023 0.1831860790912736 0.9505167313163064 0.2509199153413899 0.1831860790912733 -0.9505167313163064 -0.2509199153413899 -0.1831860790912733 -0.9505167313163295 -0.2509199153413023 -0.1831860790912736 -0.2628775079887991 -0.952706371471992 0.152466342352238 -0.262877507988851 -0.9527063714719778 0.1524663423522368 0.2628775079887991 0.952706371471992 -0.152466342352238 0.262877507988851 0.9527063714719778 -0.1524663423522368 -0.007649698560744453 -0.9874060448022793 0.1580214694269395 -0.00764969856106124 -0.9874060448022779 0.1580214694269325 0.007649698560744453 0.9874060448022793 -0.1580214694269395 0.00764969856106124 0.9874060448022779 -0.1580214694269325 0.2547680357416326 -0.9669986766858234 0.00260907114056844 0.2547680357415866 -0.9669986766858356 0.00260907114056738 -0.2547680357416326 0.9669986766858234 -0.00260907114056844 -0.2547680357415866 0.9669986766858356 -0.00260907114056738 0.9505167313161667 0.2509199153419013 0.183186079091298 0.9505167313162386 0.2509199153416285 0.1831860790912988 -0.9505167313162386 -0.2509199153416285 -0.1831860790912988 -0.9505167313161667 -0.2509199153419013 -0.183186079091298 0.9997453049990287 -0.004196533475509373 0.02217463053103545 0.9997453049990275 -0.004196533475806195 0.02217463053103448 -0.9997453049990275 0.004196533475806195 -0.02217463053103448 -0.9997453049990287 0.004196533475509373 -0.02217463053103545 0.8529309323946585 0.4893547519287951 0.1817711509813529 0.8529309323944033 0.4893547519292415 0.1817711509813486 -0.8529309323944033 -0.4893547519292415 -0.1817711509813486 -0.8529309323946585 -0.4893547519287951 -0.1817711509813529 -0.5004344863259774 -0.8531159314401188 0.1475077368096799 -0.5004344863261845 -0.8531159314399981 0.1475077368096757 0.5004344863259774 0.8531159314401188 -0.1475077368096799 0.5004344863261845 0.8531159314399981 -0.1475077368096757 -0.2628775079885173 -0.952706371472077 0.1524663423521917 -0.2628775079887363 -0.9527063714720174 0.152466342352187 0.2628775079885173 0.952706371472077 -0.1524663423521917 0.2628775079887363 0.9527063714720174 -0.152466342352187 -0.004125668177779044 -0.9999862387051486 -0.003240565138433746 -0.00412566817801635 -0.9999862387051476 -0.003240565138439009 0.004125668177779044 0.9999862387051486 0.003240565138433746 0.00412566817801635 0.9999862387051476 0.003240565138439009 0.8529309323946895 0.4893547519287639 0.1817711509812913 0.8529309323947228 0.4893547519287057 0.1817711509812918 -0.8529309323947228 -0.4893547519287057 -0.1817711509812918 -0.8529309323946895 -0.4893547519287639 -0.1817711509812913 0.966747611308047 0.2547619433526102 0.02225776829303791 0.9667476113080948 0.2547619433524288 0.0222577682930384 -0.9667476113080948 -0.2547619433524288 -0.0222577682930384 -0.966747611308047 -0.2547619433526102 -0.02225776829303791 0.6969754633117881 0.694406272776827 0.1789556701239539 0.6969754633116788 0.694406272776937 0.1789556701239517 -0.6969754633116788 -0.694406272776937 -0.1789556701239517 -0.6969754633117881 -0.694406272776827 -0.1789556701239539 -0.7041315180797328 -0.6954216486144614 0.1434835735722919 -0.70413151807935 -0.6954216486148477 0.1434835735722992 0.7041315180797328 0.6954216486144614 -0.1434835735722919 0.70413151807935 0.6954216486148477 -0.1434835735722992 -0.5004344863259412 -0.8531159314401718 0.1475077368094949 -0.5004344863260143 -0.8531159314401294 0.1475077368094935 0.5004344863259412 0.8531159314401718 -0.1475077368094949 0.5004344863260143 0.8531159314401294 -0.1475077368094935 -0.2627382146292993 -0.9648263911121705 -0.008869362258543767 -0.2627382146295403 -0.9648263911121048 -0.008869362258548907 0.2627382146292993 0.9648263911121705 0.008869362258543767 0.2627382146295403 0.9648263911121048 0.008869362258548907 0.6969754633121157 0.6944062727765148 0.1789556701238891 0.696975463311995 0.6944062727766367 0.1789556701238868 -0.696975463311995 -0.6944062727766367 -0.1789556701238868 -0.6969754633121157 -0.6944062727765148 -0.1789556701238891 0.867867665532207 0.4963588147554123 0.02082407592859099 0.867867665532394 0.4963588147550849 0.02082407592859411 -0.867867665532394 -0.4963588147550849 -0.02082407592859411 -0.867867665532207 -0.4963588147554123 -0.02082407592859099 0.4932784315575036 0.8521005556027445 0.1749315068867342 0.4932784315582882 0.8521005556022868 0.1749315068867501 -0.4932784315575036 -0.8521005556027445 -0.1749315068867342 -0.4932784315582882 -0.8521005556022868 -0.1749315068867501 -0.8600869871618618 -0.4903701277676404 0.1406680927146574 -0.8600869871621779 -0.4903701277670874 0.1406680927146521 0.8600869871621779 0.4903701277670874 -0.1406680927146521 0.8600869871618618 0.4903701277676404 -0.1406680927146574 -0.704131518079858 -0.6954216486143423 0.1434835735722555 -0.7041315180797694 -0.6954216486144317 0.1434835735722571 0.704131518079858 0.6954216486143423 -0.1434835735722555 0.7041315180797694 0.6954216486144317 -0.1434835735722571 -0.5034455859494696 -0.8639152194157124 -0.01389372699806339 -0.5034455859497298 -0.8639152194155607 -0.01389372699806869 0.5034455859494696 0.8639152194157124 0.01389372699806339 0.5034455859497298 0.8639152194155607 0.01389372699806869 0.4932784315580477 0.8521005556024255 0.1749315068867522 0.4932784315581254 0.8521005556023803 0.1749315068867539 -0.4932784315580477 -0.8521005556024255 -0.1749315068867522 -0.4932784315581254 -0.8521005556023803 -0.1749315068867539 0.7098439725698068 0.7041296532037681 0.01797125720300819 0.7098439725698903 0.7041296532036837 0.01797125720300977 -0.7098439725698903 -0.7041296532036837 -0.01797125720300977 -0.7098439725698068 -0.7041296532037681 -0.01797125720300819 0.2557214532210712 0.9516909956341135 0.1699729013444583 0.2557214532209368 0.9516909956341503 0.1699729013444555 -0.2557214532210712 -0.9516909956341135 -0.1699729013444583 -0.2557214532209368 -0.9516909956341503 -0.1699729013444555 -0.9576727860839216 -0.2519352911797431 0.1392531646047496 -0.9576727860839327 -0.2519352911797014 0.1392531646047495 0.9576727860839327 0.2519352911797014 -0.1392531646047495 0.9576727860839216 0.2519352911797431 -0.1392531646047496 -0.8600869871622648 -0.4903701277668799 0.1406680927148429 -0.8600869871625132 -0.4903701277664459 0.1406680927148387 0.8600869871625132 0.4903701277664459 -0.1406680927148387 0.8600869871622648 0.4903701277668799 -0.1406680927148429 -0.7098439725697667 -0.7041296532038056 -0.01797125720312807 -0.7098439725695632 -0.7041296532040106 -0.0179712572031242 0.7098439725697667 0.7041296532038056 0.01797125720312807 0.7098439725695632 0.7041296532040106 0.0179712572031242 0.2557214532209233 0.9516909956342226 0.1699729013440716 0.2557214532208815 0.9516909956342338 0.1699729013440706 -0.2557214532209233 -0.9516909956342226 -0.1699729013440716 -0.2557214532208815 -0.9516909956342338 -0.1699729013440706 0.503445585949315 0.8639152194158047 0.01389372699792529 0.503445585949296 0.863915219415816 0.0138937269979249 -0.503445585949315 -0.8639152194158047 -0.01389372699792529 -0.503445585949296 -0.863915219415816 -0.0138937269979249 0.0004936437935313448 0.9863906689643832 0.164417774269699 0.0004936437930279846 0.9863906689643854 0.1644177742696878 -0.0004936437935313448 -0.9863906689643832 -0.164417774269699 -0.0004936437930279846 -0.9863906689643854 -0.1644177742696878 -0.9902386039163978 0.003633921066033117 0.1393352142546503 -0.9902386039163974 0.003633921066179155 0.1393352142546508 0.9902386039163974 -0.003633921066179155 -0.1393352142546508 0.9902386039163978 -0.003633921066033117 -0.1393352142546503 -0.9576727860838743 -0.2519352911798558 0.1392531646048713 -0.9576727860839837 -0.2519352911794404 0.1392531646048702 0.9576727860839837 0.2519352911794404 -0.1392531646048702 0.9576727860838743 0.2519352911798558 -0.1392531646048713 -0.8678676655322721 -0.496358814755293 -0.02082407592871744 -0.8678676655320898 -0.4963588147556118 -0.0208240759287144 0.8678676655320898 0.4963588147556118 0.0208240759287144 0.8678676655322721 0.496358814755293 0.02082407592871744 0.0004936437934863205 0.9863906689644667 0.1644177742691978 0.0004936437929083086 0.9863906689644691 0.1644177742691849 -0.0004936437934863205 -0.9863906689644667 -0.1644177742691978 -0.0004936437929083086 -0.9863906689644691 -0.1644177742691849 0.262738214629585 0.9648263911120939 0.008869362258411529 0.2627382146290454 0.9648263911122409 0.008869362258400015 -0.262738214629585 -0.9648263911120939 -0.008869362258411529 -0.2627382146290454 -0.9648263911122409 -0.008869362258400015 -0.2550116432957635 0.9538348501997734 0.158644698392258 -0.2550116432956957 0.9538348501997909 0.1586446983922595 0.2550116432957635 -0.9538348501997734 -0.158644698392258 0.2550116432956957 -0.9538348501997909 -0.1586446983922595 -0.9555651339918828 0.25892088950392 0.1409086501162152 -0.9555651339922022 0.2589208895027466 0.1409086501162044 0.9555651339922022 -0.2589208895027466 -0.1409086501162044 0.9555651339918828 -0.25892088950392 -0.1409086501162152 -0.9902386039163965 0.003633921066535891 0.1393352142546459 -0.9902386039163973 0.003633921066349754 0.1393352142546453 0.9902386039163973 -0.003633921066349754 -0.1393352142546453 0.9902386039163965 -0.003633921066535891 -0.1393352142546459 -0.966747611308081 -0.2547619433524696 -0.02225776829317193 -0.9667476113079803 -0.2547619433528517 -0.0222577682931709 0.9667476113079803 0.2547619433528517 0.0222577682931709 0.966747611308081 0.2547619433524696 0.02225776829317193 -0.2550116432957048 0.9538348501998232 0.1586446983920518 -0.2550116432958032 0.9538348501997973 0.1586446983920496 0.2550116432957048 -0.9538348501998232 -0.1586446983920518 0.2550116432958032 -0.9538348501997973 -0.1586446983920496 0.004125668178268816 0.9999862387051469 0.003240565138314754 0.004125668177702877 0.9999862387051494 0.003240565138302201 -0.004125668178268816 -0.9999862387051469 -0.003240565138314754 -0.004125668177702877 -0.9999862387051494 -0.003240565138302201 -0.4933821449742256 0.8562421645880497 0.1530470992936593 -0.4933821449744804 0.856242164587904 0.1530470992936532 0.4933821449742256 -0.8562421645880497 -0.1530470992936593 0.4933821449744804 -0.856242164587904 -0.1530470992936532 -0.8560153159848725 0.4965282291166384 0.1438662451362862 -0.8560153159849129 0.496528229116569 0.1438662451362851 0.8560153159849129 -0.496528229116569 -0.1438662451362851 0.8560153159848725 -0.4965282291166384 -0.1438662451362862 -0.9555651339915826 0.2589208895050756 0.1409086501161281 -0.9555651339918059 0.2589208895042551 0.1409086501161205 0.9555651339918059 -0.2589208895042551 -0.1409086501161205 0.9555651339915826 -0.2589208895050756 -0.1409086501161281 -0.9997453049990277 0.004196533475189362 -0.02217463053114176 -0.9997453049990287 0.004196533474957718 -0.02217463053114251 0.9997453049990287 -0.004196533474957718 0.02217463053114251 0.9997453049990277 -0.004196533475189362 0.02217463053114176 -0.4933821449746896 0.8562421645878694 0.1530470992931731 -0.4933821449743129 0.856242164588085 0.1530470992931821 0.4933821449746896 -0.8562421645878694 -0.1530470992931731 0.4933821449743129 -0.856242164588085 -0.1530470992931821 -0.2547680357418055 0.9669986766857776 -0.002609071140676884 -0.2547680357416197 0.9669986766858265 -0.002609071140672604 0.2547680357418055 -0.9669986766857776 0.002609071140676884 0.2547680357416197 -0.9669986766858265 0.002609071140672604 -0.6983733054789106 0.7002633923738386 0.148006444101409 -0.6983733054783917 0.7002633923743534 0.1480064441014221 0.6983733054789106 -0.7002633923738386 -0.148006444101409 0.6983733054783917 -0.7002633923743534 -0.1480064441014221 -0.8560153159846907 0.4965282291171007 0.1438662451357723 -0.8560153159850271 0.4965282291165236 0.143866245135763 0.8560153159850271 -0.4965282291165236 -0.143866245135763 0.8560153159846907 -0.4965282291171007 -0.1438662451357723 -0.9646120083115997 0.2628690234818975 -0.0205803283437401 -0.9646120083116273 0.262869023481796 -0.02058032834374103 0.9646120083116273 -0.262869023481796 0.02058032834374103 0.9646120083115997 -0.2628690234818975 0.0205803283437401 -0.6983733054793205 0.7002633923735956 0.1480064441006262 -0.6983733054790535 0.7002633923738603 0.148006444100633 0.6983733054793205 -0.7002633923735956 -0.1480064441006262 0.6983733054790535 -0.7002633923738603 -0.148006444100633 -0.4962997190500516 0.8681117528910174 -0.008280903533142588 -0.4962997190499466 0.8681117528910773 -0.008280903533140071 0.4962997190500516 -0.8681117528910174 0.008280903533142588 0.4962997190499466 -0.8681117528910773 0.008280903533140071 -0.8637419973542603 0.503627423950245 -0.01758351079031408 -0.8637419973544338 0.5036274239499475 -0.01758351079031886 0.8637419973544338 -0.5036274239499475 0.01758351079031886 0.8637419973542603 -0.503627423950245 0.01758351079031408 -0.7040093966786756 0.7100644477594821 -0.0133884060346673 -0.7040093966788404 0.7100644477593183 -0.01338840603467147 0.7040093966786756 -0.7100644477594821 0.0133884060346673 0.7040093966788404 -0.7100644477593183 0.01338840603467147</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10356\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10354\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10357\">-16.38895749649824 252.2875627493962 -16.38401963263896 252.0530218674262 -16.53170267614631 252.2875627516007 -16.53664054724824 252.053021869782 -21.99166152149472 251.4765172433996 -21.98672365507224 251.2419763614824 -22.1344067011429 251.4765172440444 -22.1393445696816 251.2419763621698 -16.38401963262284 252.0530218674343 -16.36516665066472 251.1575344375674 -16.53664054723212 252.0530218697901 -16.55549355684387 251.1575344405061 -9.664509167870993 252.8390805505256 -9.65957130632823 252.6045396685041 -9.807254347413299 252.8390805541384 -9.81219222083166 252.6045396723696 -26.0908062133454 250.4612154743623 -26.08586834428752 250.2266745924987 -26.23355139288763 250.4612154734022 -26.23848925879105 250.2266745914714 -21.98672365507505 251.2419763614999 -21.96787066333027 250.3464889318398 -22.13934456968442 251.2419763621874 -22.15819756950913 250.3464889326983 -9.659571306342773 252.6045396685088 -9.640718333228808 251.7090522384574 -9.812192220846203 252.6045396723744 -9.831045239302226 251.7090522432758 -16.36516674087976 248.5129353815686 -16.55549364705829 248.5129353844692 -16.3651667076806 250.6910895422143 -16.55549361385976 250.6910895451153 -2.276576586776463 253.0934856215994 -2.271638727145422 252.8589447395387 -2.419321766373539 253.0934856263767 -2.424259641703723 252.8589447446454 -28.40704162999797 249.3108486350109 -28.40210375841224 249.0763077531997 -28.54978680959516 249.3108486325112 -28.55472467297057 249.0763077505275 -26.08586834429168 250.2266745925134 -26.06701534248469 249.3311871630661 -26.23848925879521 250.2266745914861 -26.25734224855835 249.3311871617874 -21.96787067633089 250.6910893906183 -21.96787068603131 248.5129352299722 -22.15819758250976 250.6910893914657 -22.15819759220985 248.5129352308184 -2.271638727138579 252.8589447395467 -2.252785761323873 251.9634573093404 -2.42425964169688 252.8589447446534 -2.443112667452017 251.9634573157103 -9.640718495120424 248.5129353730684 -9.831045401194427 248.5129353778244 -9.640718440686122 250.6910895337138 -9.83104534675954 250.6910895384701 5.27630270006693 252.7988998289222 5.123681785508699 252.798899834925 5.271364841812881 253.0334407110095 5.128619662215748 253.0334407166262 -28.78252015546345 248.1038123888071 -28.77758228162953 247.8692715070436 -28.92526533506044 248.1038123849417 -28.93020319618783 247.8692715029096 -28.40210375841108 249.0763077532028 -28.38325074695286 248.1808203239609 -28.55472467296942 249.0763077505306 -28.57357765308096 248.1808203206287 -26.06701532993479 250.691089119746 -26.06701531547567 248.5129349590987 -26.25734223600844 250.6910891184839 -26.25734222154967 248.5129349578355 5.295155660616665 251.9034123986047 5.104828754488519 251.9034124060922 5.276302700058988 252.7988998289231 5.123681785500756 252.7988998349259 -2.252785983830884 248.5129352065619 -2.443112889958977 248.5129352128485 -2.25278591187047 250.6910893672058 -2.443112817998613 250.6910893734938 12.46987323549975 252.4284969546445 12.31725232094158 252.4284969611353 12.46493537799365 252.6630378367478 12.32219019839669 252.6630378428183 -27.1916535536229 246.9223643177678 -27.18671567797382 246.6878234360414 -27.3343987332201 246.9223643127954 -27.33933659253224 246.6878234307253 -28.77758228163038 247.8692715070454 -28.75872926158893 246.9737840779842 -28.93020319618869 247.8692715029114 -28.94905616771708 246.9737840728292 -28.38325073442017 250.6910888023974 -28.38325069678758 248.5129346417491 -28.57357764054828 250.6910887991081 -28.57357760291569 248.5129346384599 12.48872619320954 251.533009524264 12.29839928708134 251.5330095323578 12.46987323550791 252.428496954642 12.31725232094974 252.4284969611328 5.295155401410251 248.5129349265158 5.104828495282071 248.5129349339061 5.2951554859927 250.6910890871589 5.104828579864558 250.69108909455 18.81884293550581 251.7729785248945 18.66622202094768 251.7729785314304 18.81390507806825 252.0075194069992 18.67115989847108 252.0075194131122 -23.74285676318029 245.847018189066 -23.73791888627266 245.6124773073664 -23.88560194277735 245.8470181833291 -23.89053980083094 245.6124773012323 -27.18671567797156 246.6878234360476 -27.16786265099951 245.7923360071326 -27.33933659252998 246.6878234307315 -27.35818955712778 245.7923360005034 -28.75872927488879 250.691088523803 -28.75872921664696 248.5129343631548 -28.94905618101695 250.6910885187143 -28.94905612277503 248.5129343580658 18.83769589293779 250.8774910945159 18.64736898680947 250.8774911026646 18.81884293549691 251.7729785248976 18.66622202093878 251.7729785314335 12.48872592877044 248.5129346078537 12.29839902264238 248.5129346158434 12.4887260202109 250.6910887684968 12.2983991140827 250.6910887764866 23.74285697477807 251.111557980262 23.88560215437522 251.1115579745255 23.73791909787064 250.8770170985672 23.89054001242883 250.8770170924331 -18.81390477592097 244.951057059731 -18.67115959632396 244.9510570658428 -18.81884263335871 244.7165161776212 -18.66622171880027 244.7165161841559 -23.73791888627713 245.6124773073814 -23.71906585450025 244.7169898785676 -23.8905398008354 245.6124773012473 -23.90939276062822 244.716989870919 -27.16786270925604 250.691088358791 -27.16786263437398 248.5129341981426 -27.35818961538431 250.6910883522471 -27.35818954050203 248.5129341915983 23.73791909786967 250.8770170985664 23.89054001242785 250.8770170924323 23.71906606609291 249.9815296697497 23.90939297222096 249.9815296620992 18.83769565473522 248.512934335899 18.64736874860709 248.5129343439438 18.83769574680232 250.6910884965431 18.647368840674 250.6910885045868 27.19165366207378 250.0362118661415 27.33439884167075 250.0362118611716 27.18671578642476 249.8016709844195 27.33933670098299 249.8016709791048 -12.46493502214621 244.2955391809765 -12.32218984254924 244.2955391870479 -12.46987287965223 244.0609982988709 -12.31725196509401 244.0609983053595 -18.81884263333793 244.7165161776093 -18.66622171877949 244.716516184144 -18.83769559077879 243.8210287472298 -18.6473686846504 243.8210287553808 -23.71906596494427 250.6910883517201 -23.71906587852496 248.5129341910713 -23.90939287107224 250.6910883441699 -23.90939278465304 248.5129341835193 27.18671578642324 249.8016709844219 27.33933670098147 249.8016709791072 27.16786275945139 248.9061835555032 27.35818966557955 248.9061835488752 23.71906596494513 250.6910883517185 23.90939287107318 250.6910883441665 23.71906587852583 248.5129341910744 23.90939278465386 248.5129341835234 28.78252017580349 248.8547641297881 28.92526535540055 248.8547641259194 28.77758230196975 248.6202232480271 28.93020321652806 248.6202232438926 -5.271364483500904 243.9251369521691 -5.128619303903669 243.9251369577846 -5.276302341755072 243.6905960700783 -5.123681427196604 243.6905960760833 -12.46987287967543 244.0609982988541 -12.31725196511721 244.0609983053427 -12.48872583737725 243.1655108684786 -12.29839893124916 243.1655108765721 -18.83769565473979 248.512934335897 -18.83769574680699 250.6910884965442 -18.64736874861163 248.5129343439396 -18.6473688406786 250.6910885045903 28.77758230196979 248.6202232480516 28.9302032165281 248.620223243917 28.75872928192813 247.7247358189868 28.94905618805636 247.7247358138304 27.1678627092589 250.691088358787 27.35818961538706 250.6910883522443 27.16786263437672 248.5129341981439 27.35818954050485 248.5129341916006 28.40704160088776 247.6477284485081 28.54978678048494 247.6477284460117 28.40210372930226 247.4131875667015 28.55472464386042 247.4131875640293 2.271639035968119 243.6305517266515 2.276576895599221 243.8650926087137 2.424259950526357 243.6305517317587 2.419322075196182 243.86509261349 -5.276302341742019 243.6905960700847 -5.123681427183551 243.6905960760897 -5.295155302299826 242.7951086397708 -5.104828396171687 242.7951086472577 -12.48872592876661 248.5129346078536 -12.48872602020721 250.6910887685014 -12.29839902263844 248.5129346158436 -12.29839911407912 250.6910887764908 28.4021037292982 247.4131875667122 28.55472464385635 247.41318756404 28.38325071783992 246.5177001374663 28.57357762396792 246.517700134135 28.75872927488739 250.6910885238015 28.94905618101563 250.6910885187114 28.75872921664542 248.5129343631578 28.94905612277361 248.5129343580666 26.09080618664547 246.4973622526507 26.23355136624257 246.4973622516895 26.08586831758769 246.2628213707879 26.23848923214597 246.262821369762 9.659571527078946 243.8849571347263 9.664509388621683 244.1194980167454 9.812192441637096 243.8849571385873 9.807254568218792 244.1194980203592 2.252786070173204 242.7350642964435 2.271639035987844 243.630551726648 2.443112976301327 242.735064302814 2.424259950546084 243.6305517317553 -5.295155401417553 248.5129349265172 -5.29515548600029 250.6910890871645 -5.104828495289572 248.5129349339072 -5.104828579872152 250.6910890945551 26.08586831758898 246.2628213707931 26.23848923214725 246.2628213697672 26.06701531578228 245.3673339413449 26.25734222191052 245.3673339400652 28.38325073441914 250.6910888023968 28.57357764054714 250.6910887991084 28.38325069678642 248.512934641752 28.5735776029145 248.512934638464 21.99166154852313 245.482061032901 22.13440672812019 245.4820610335442 21.98672368210067 245.2475201509844 22.13934459665886 245.2475201516736 16.38401975033521 244.436474952624 16.38895761419438 244.6710158345931 16.53664066489363 244.4364749549813 16.53170279379152 244.6710158367991 9.640718553973509 242.9894697046887 9.659571527087612 243.8849571347425 9.831045460101583 242.9894697095071 9.812192441645763 243.8849571386034 2.252785983829741 248.5129352065632 2.252785911869351 250.6910893672093 2.443112889958038 248.5129352128506 2.443112817997475 250.6910893734978 21.98672368211406 245.2475201510343 22.13934459667225 245.2475201517235 21.96787069036924 244.352032721374 22.15819759649734 244.3520327222331 26.06701532988113 250.6910891197473 26.25734223600938 250.6910891184842 26.06701531542237 248.5129349591029 26.25734222155053 248.5129349578398 16.36516676833802 243.5409875228017 16.38401975029622 244.4364749526682 16.55549367446622 243.5409875257401 16.53664066485464 244.4364749550255 9.640718495114747 248.5129353730697 9.640718440680523 250.6910895337153 9.831045401242836 248.5129353778256 9.831045346808596 250.6910895384717 21.96787067631831 250.6910893906188 22.15819758244641 250.6910893914669 21.96787068601867 248.5129352299745 22.15819759214673 248.5129352308216 16.36516674095007 248.51293538157 16.36516670775152 250.6910895422153 16.55549364707821 248.5129353844702 16.55549361387972 250.6910895451159</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10357\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10353\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10351\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10352\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10353\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 2 8 9 8 2 1 12 13 14 13 12 15 20 3 0 3 20 21 9 24 25 24 9 8 14 28 29 28 14 13 32 15 12 15 32 33 36 37 38 37 36 39 44 21 20 21 44 45 25 48 49 48 25 24 29 52 53 52 29 28 36 56 57 56 36 38 60 33 32 33 60 61 39 64 37 64 39 65 44 68 45 68 44 69 49 72 73 72 49 48 53 76 77 76 53 52 57 80 81 80 57 56 60 84 61 84 60 85 65 88 64 88 65 89 69 92 68 92 69 93 73 96 97 96 73 72 77 100 101 100 77 76 81 104 105 104 81 80 85 108 84 108 85 109 89 112 88 112 89 113 93 116 92 116 93 117 97 120 121 120 97 96 101 124 125 124 101 100 105 128 129 128 105 104 109 132 108 132 109 133 113 136 112 136 113 137 140 117 141 117 140 116 120 144 121 144 120 145 125 148 149 148 125 124 129 152 153 152 129 128 156 133 157 133 156 132 137 160 136 160 137 161 164 141 165 141 164 140 145 168 144 168 145 169 148 172 149 172 148 173 153 176 177 176 153 152 180 157 181 157 180 156 184 161 185 161 184 160 188 165 189 165 188 164 169 192 168 192 169 193 173 196 172 196 173 197 200 177 176 177 200 201 204 181 205 181 204 180 208 185 209 185 208 184 212 189 213 189 212 188 216 192 193 192 216 217 197 220 196 220 197 221 224 201 200 201 224 225 228 205 229 205 228 204 232 209 233 209 232 208 236 213 237 213 236 212 240 217 216 217 240 241 244 220 221 220 244 245 248 225 224 225 248 249 252 229 253 229 252 228 256 233 257 233 256 232 260 237 261 237 260 236 260 241 240 241 260 261 264 245 244 245 264 265 268 249 248 249 268 269 272 253 273 253 272 252 276 257 277 257 276 256 272 265 264 265 272 273 280 269 268 269 280 281 284 277 285 277 284 276 284 281 280 281 284 285</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10353\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10354\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 6 4 7 5 10 6 11 7 10 6 7 5 16 8 17 9 18 10 19 11 18 10 17 9 22 12 23 13 4 14 5 15 4 14 23 13 10 16 11 17 26 18 27 19 26 18 11 17 18 20 19 21 30 22 31 23 30 22 19 21 34 24 35 25 16 26 17 27 16 26 35 25 40 28 41 29 42 30 43 31 42 30 41 29 46 32 47 33 22 34 23 35 22 34 47 33 26 36 27 37 50 38 51 39 50 38 27 37 30 40 31 41 54 42 55 43 54 42 31 41 43 44 41 45 58 46 59 47 58 46 41 45 62 48 63 49 34 50 35 51 34 50 63 49 66 52 40 53 67 54 42 55 67 54 40 53 70 56 47 57 71 58 46 59 71 58 47 57 50 60 51 61 74 62 75 63 74 62 51 61 54 64 55 65 78 66 79 67 78 66 55 65 58 68 59 69 82 70 83 71 82 70 59 69 86 72 63 73 87 74 62 75 87 74 63 73 90 76 66 77 91 78 67 79 91 78 66 77 94 80 70 81 95 82 71 83 95 82 70 81 74 84 75 85 98 86 99 87 98 86 75 85 78 88 79 89 102 90 103 91 102 90 79 89 82 92 83 93 106 94 107 95 106 94 83 93 110 96 86 97 111 98 87 99 111 98 86 97 114 100 90 101 115 102 91 103 115 102 90 101 118 104 94 105 119 106 95 107 119 106 94 105 98 108 99 109 122 110 123 111 122 110 99 109 102 112 103 113 126 114 127 115 126 114 103 113 106 116 107 117 130 118 131 119 130 118 107 117 134 120 110 121 135 122 111 123 135 122 110 121 138 124 114 125 139 126 115 127 139 126 114 125 119 128 142 129 118 130 143 131 118 130 142 129 146 132 122 133 147 134 123 135 147 134 122 133 126 136 127 137 150 138 151 139 150 138 127 137 130 140 131 141 154 142 155 143 154 142 131 141 135 144 158 145 134 146 159 147 134 146 158 145 162 148 138 149 163 150 139 151 163 150 138 149 142 152 166 153 143 154 167 155 143 154 166 153 170 156 146 157 171 158 147 159 171 158 146 157 174 160 150 161 175 162 151 163 175 162 150 161 154 164 155 165 178 166 179 167 178 166 155 165 158 168 182 169 159 170 183 171 159 170 182 169 163 172 186 173 162 174 187 175 162 174 186 173 166 176 190 177 167 178 191 179 167 178 190 177 194 180 170 181 195 182 171 183 195 182 170 181 198 184 174 185 199 186 175 187 199 186 174 185 202 188 203 189 179 190 178 191 179 190 203 189 182 192 206 193 183 194 207 195 183 194 206 193 186 196 210 197 187 198 211 199 187 198 210 197 190 200 214 201 191 202 215 203 191 202 214 201 218 204 219 205 195 206 194 207 195 206 219 205 222 208 198 209 223 210 199 211 223 210 198 209 226 212 227 213 202 214 203 215 202 214 227 213 206 216 230 217 207 218 231 219 207 218 230 217 210 220 234 221 211 222 235 223 211 222 234 221 214 224 238 225 215 226 239 227 215 226 238 225 242 228 243 229 218 230 219 231 218 230 243 229 246 232 247 233 223 234 222 235 223 234 247 233 250 236 251 237 226 238 227 239 226 238 251 237 230 240 254 241 231 242 255 243 231 242 254 241 234 244 258 245 235 246 259 247 235 246 258 245 238 248 262 249 239 250 263 251 239 250 262 249 263 252 262 253 242 254 243 255 242 254 262 253 266 256 267 257 246 258 247 259 246 258 267 257 270 260 271 261 250 262 251 263 250 262 271 261 254 264 274 265 255 266 275 267 255 266 274 265 258 268 278 269 259 270 279 271 259 270 278 269 275 272 274 273 266 274 267 275 266 274 274 273 282 276 283 277 270 278 271 279 270 278 283 277 278 280 286 281 279 282 287 283 279 282 286 281 287 284 286 285 282 286 283 287 282 286 286 285</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10358\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10359\">\r\n\t\t\t\t\t<float_array count=\"480\" id=\"ID10363\">-78.9843891721473 452.8715816043567 72.52611520774735 2.978969051928516 463.3404250029005 -4.381801481611547 -77.23730850132165 453.1194756685349 -6.194267525657779 1.231888381109002 463.0925309387202 74.33858125158622 1.231888381109002 463.0925309387202 74.33858125158622 -78.9843891721473 452.8715816043567 72.52611520774735 2.978969051928516 463.3404250029005 -4.381801481611547 -77.23730850132165 453.1194756685349 -6.194267525657779 83.10813206676926 452.4464092329197 -2.637760799181706 81.36105139594133 452.1985151687436 76.08262193417613 81.36105139594133 452.1985151687436 76.08262193417613 83.10813206676926 452.4464092329197 -2.637760799181706 -153.8211745122458 422.232207971868 70.76874036803019 -152.0740938414062 422.4801020360475 -7.951642365365842 -153.8211745122458 422.232207971868 70.76874036803019 -152.0740938414062 422.4801020360475 -7.951642365365842 -299.5859348303545 74.31819263892133 66.43811337341504 -305.8740182495874 154.5380178079173 66.55117468216122 -309.8100233873847 154.5545395932489 66.46387298711852 -295.7798418724499 75.32119241589746 66.5257423825442 -268.9487232848462 -0.5387907446151701 66.88233222815507 -265.5319214520223 1.415377817416456 66.96431677894361 -219.9862640872891 -64.91503084674757 67.76625677031188 -217.1916027779478 -62.14286685775083 67.83700975136344 -156.0352679177029 -114.4233932913039 69.02964900308507 -154.0531986816757 -111.0221522699848 69.08434871573081 -81.45388948104505 -145.6899649941182 70.58641083382827 -80.41948706124595 -141.8914358952405 70.62132958288566 -1.324726466208858 -156.5839807641006 72.33045151632359 -1.30848367810745 -152.6470270683977 72.34320964672224 78.89155108703267 -146.3630314297349 74.14291756021521 77.88852732427426 -142.555950025452 74.1326456266379 151.7744005232571 -112.3058949914348 75.86769041752268 153.7283364250329 -115.7236577980952 75.90029239982505 215.3139357682212 -63.95835322341297 77.43010358436186 218.0856263063317 -66.75388254529854 77.48281384443544 264.17701873223 -0.8081297964246801 78.71340925178083 267.5775777769457 -2.790914930086046 78.78263567214708 295.0337110596645 72.84119191960565 79.63015225917843 298.8313961317679 71.80627450432542 79.71117717393099 305.7811801644752 151.970532366706 80.11785808586137 309.7171853022808 151.9540105813718 80.20515978085859 -298.924234216883 234.7022756702988 66.95785559400065 -295.1265491447837 233.6673582550181 67.03888050884234 -267.6704158611808 309.2994651068041 67.8863970958264 -264.2698568164744 307.3166799731375 67.95562351625813 -218.1784643918654 373.2624327203446 69.18621892368174 -215.4067738537469 370.4669033984519 69.23892918359888 -153.8211745122458 422.232207971868 70.76874036803019 -151.8672386104724 418.8144451652066 70.80134235034348 -78.9843891721473 452.8715816043567 72.52611520774735 -77.98136540938754 449.0645002000777 72.53638714138833 1.231888381109002 463.0925309387202 74.33858125158622 1.215645593010777 459.1555772430232 74.32582312121485 80.32664897613586 448.3999860698738 76.04770318508417 81.36105139594133 452.1985151687436 76.08262193417613 153.9603605965679 417.5307024446019 77.5846840522845 155.9424298325921 420.9319434659314 77.63938376488477 217.0987646928427 368.6514170323752 78.83202301650454 219.8934260021783 371.4235810213729 78.90277599765068 265.4390833669145 305.0931723572066 79.70471598897711 268.8558851997279 307.0473409192379 79.78670053986571 295.6870037873312 231.1873577587311 80.14329038545293 299.4930967452399 232.1903575357111 80.23091939448568 309.7171853022808 151.9540105813718 80.20515978085859 305.7811801644752 151.970532366706 80.11785808586137 299.4930967452399 232.1903575357111 80.23091939448568 295.6870037873312 231.1873577587311 80.14329038545293 268.8558851997279 307.0473409192379 79.78670053986571 265.4390833669145 305.0931723572066 79.70471598897711 219.8934260021783 371.4235810213729 78.90277599765068 217.0987646928427 368.6514170323752 78.83202301650454 155.9424298325921 420.9319434659314 77.63938376488477 153.9603605965679 417.5307024446019 77.5846840522845 81.36105139594133 452.1985151687436 76.08262193417613 80.32664897613586 448.3999860698738 76.04770318508417 1.231888381109002 463.0925309387202 74.33858125158622 1.215645593010777 459.1555772430232 74.32582312121485 -77.98136540938754 449.0645002000777 72.53638714138833 -78.9843891721473 452.8715816043567 72.52611520774735 -151.8672386104724 418.8144451652066 70.80134235034348 -153.8211745122458 422.232207971868 70.76874036803019 -215.4067738537469 370.4669033984519 69.23892918359888 -218.1784643918654 373.2624327203446 69.18621892368174 -264.2698568164744 307.3166799731375 67.95562351625813 -267.6704158611808 309.2994651068041 67.8863970958264 -295.1265491447837 233.6673582550181 67.03888050884234 -298.924234216883 234.7022756702988 66.95785559400065 -305.8740182495874 154.5380178079173 66.55117468216122 -309.8100233873847 154.5545395932489 66.46387298711852 298.8313961317679 71.80627450432542 79.71117717393099 295.0337110596645 72.84119191960565 79.63015225917843 267.5775777769457 -2.790914930086046 78.78263567214708 264.17701873223 -0.8081297964246801 78.71340925178083 218.0856263063317 -66.75388254529854 77.48281384443544 215.3139357682212 -63.95835322341297 77.43010358436186 153.7283364250329 -115.7236577980952 75.90029239982505 151.7744005232571 -112.3058949914348 75.86769041752268 78.89155108703267 -146.3630314297349 74.14291756021521 77.88852732427426 -142.555950025452 74.1326456266379 -1.30848367810745 -152.6470270683977 72.34320964672224 -1.324726466208858 -156.5839807641006 72.33045151632359 -80.41948706124595 -141.8914358952405 70.62132958288566 -81.45388948104505 -145.6899649941182 70.58641083382827 -154.0531986816757 -111.0221522699848 69.08434871573081 -156.0352679177029 -114.4233932913039 69.02964900308507 -217.1916027779478 -62.14286685775083 67.83700975136344 -219.9862640872891 -64.91503084674757 67.76625677031188 -265.5319214520223 1.415377817416456 66.96431677894361 -268.9487232848462 -0.5387907446151701 66.88233222815507 -295.7798418724499 75.32119241589746 66.5257423825442 -299.5859348303545 74.31819263892133 66.43811337341504 157.6895105034205 421.1798375301052 -1.080998968520362 155.9424298325921 420.9319434659314 77.63938376488477 155.9424298325921 420.9319434659314 77.63938376488477 157.6895105034205 421.1798375301052 -1.080998968520362 -218.1784643918654 373.2624327203446 69.18621892368174 -216.4313837210279 373.51032678452 -9.534163809701568 -218.1784643918654 373.2624327203446 69.18621892368174 -216.4313837210279 373.51032678452 -9.534163809701568 219.8327069771649 -66.50598848112098 -1.237568889029717 153.7283364250329 -115.7236577980952 75.90029239982505 155.4754170958795 -115.4757637339099 -2.820090333489134 218.0856263063317 -66.75388254529854 77.48281384443544 218.0856263063317 -66.75388254529854 77.48281384443544 219.8327069771649 -66.50598848112098 -1.237568889029717 153.7283364250329 -115.7236577980952 75.90029239982505 155.4754170958795 -115.4757637339099 -2.820090333489134 267.5775777769457 -2.790914930086046 78.78263567214708 269.3246584477604 -2.543020865922642 0.06225293884745042 269.3246584477604 -2.543020865922642 0.06225293884745042 267.5775777769457 -2.790914930086046 78.78263567214708 298.8313961317679 71.80627450432542 79.71117717393099 300.5784768025987 72.05416856850441 0.9907944405731541 300.5784768025987 72.05416856850441 0.9907944405731541 298.8313961317679 71.80627450432542 79.71117717393099 309.7171853022808 151.9540105813718 80.20515978085859 311.4642659730985 152.2019046455503 1.484777047444368 311.4642659730985 152.2019046455503 1.484777047444368 309.7171853022808 151.9540105813718 80.20515978085859 299.4930967452399 232.1903575357111 80.23091939448568 301.2401774160664 232.4382515998948 1.510536661162405 301.2401774160664 232.4382515998948 1.510536661162405 299.4930967452399 232.1903575357111 80.23091939448568 268.8558851997279 307.0473409192379 79.78670053986571 270.6029658705525 307.2952349834112 1.066317806460575 270.6029658705525 307.2952349834112 1.066317806460575 268.8558851997279 307.0473409192379 79.78670053986571 219.8934260021783 371.4235810213729 78.90277599765068 221.6405066730001 371.6714750855467 0.182393264323764 221.6405066730001 371.6714750855467 0.182393264323764 219.8934260021783 371.4235810213729 78.90277599765068 -265.9233351903504 309.5473591709786 -10.83398563757874 -267.6704158611808 309.2994651068041 67.8863970958264 -265.9233351903504 309.5473591709786 -10.83398563757874 -267.6704158611808 309.2994651068041 67.8863970958264 -297.1771535460355 234.9501697344761 -11.76252713937174 -298.924234216883 234.7022756702988 66.95785559400065 -297.1771535460355 234.9501697344761 -11.76252713937174 -298.924234216883 234.7022756702988 66.95785559400065</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"160\" source=\"#ID10363\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10360\">\r\n\t\t\t\t\t<float_array count=\"480\" id=\"ID10364\">-0.2547680357417803 0.9669986766857843 -0.00260907114069861 0.004125668177957811 0.9999862387051484 0.003240565138313469 -0.2547680357417997 0.966998676685779 -0.002609071140699058 0.004125668177999474 0.999986238705148 0.003240565138314393 -0.004125668177999474 -0.999986238705148 -0.003240565138314393 0.2547680357417803 -0.9669986766857843 0.00260907114069861 -0.004125668177957811 -0.9999862387051484 -0.003240565138313469 0.2547680357417997 -0.966998676685779 0.002609071140699058 0.2627382146294586 0.9648263911121282 0.008869362258424982 0.2627382146294509 0.9648263911121302 0.008869362258424817 -0.2627382146294509 -0.9648263911121302 -0.008869362258424817 -0.2627382146294586 -0.9648263911121282 -0.008869362258424982 -0.4962997190498063 0.8681117528911569 -0.008280903533187511 -0.4962997190497624 0.8681117528911819 -0.008280903533186461 0.4962997190498063 -0.8681117528911569 0.008280903533187511 0.4962997190497624 -0.8681117528911819 0.008280903533186461 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 -0.02218792451955565 -0.003148254615070453 0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.02218792451955565 0.003148254615070453 -0.9997488607137262 0.5034455859492509 0.863915219415842 0.0138937269979288 0.5034455859492026 0.8639152194158702 0.01389372699792781 -0.5034455859492026 -0.8639152194158702 -0.01389372699792781 -0.5034455859492509 -0.863915219415842 -0.0138937269979288 -0.7040093966786425 0.7100644477595134 -0.01338840603473689 -0.7040093966786396 0.7100644477595163 -0.01338840603473681 0.7040093966786425 -0.7100644477595134 0.01338840603473689 0.7040093966786396 -0.7100644477595163 0.01338840603473681 0.7040093966786202 -0.7100644477595376 0.01338840603462194 0.4962997190498333 -0.8681117528911423 0.008280903533115367 0.4962997190498112 -0.8681117528911549 0.008280903533114833 0.7040093966786559 -0.7100644477595024 0.01338840603462284 -0.7040093966786559 0.7100644477595024 -0.01338840603462284 -0.7040093966786202 0.7100644477595376 -0.01338840603462194 -0.4962997190498333 0.8681117528911423 -0.008280903533115367 -0.4962997190498112 0.8681117528911549 -0.008280903533114833 0.8637419973543548 -0.5036274239500868 0.01758351079021906 0.8637419973543763 -0.5036274239500496 0.01758351079021965 -0.8637419973543763 0.5036274239500496 -0.01758351079021965 -0.8637419973543548 0.5036274239500868 -0.01758351079021906 0.9646120083115717 -0.2628690234820078 0.02058032834363644 0.9646120083115695 -0.2628690234820162 0.02058032834363637 -0.9646120083115695 0.2628690234820162 -0.02058032834363637 -0.9646120083115717 0.2628690234820078 -0.02058032834363644 0.9997453049990297 -0.0041965334753089 0.02217463053103205 0.9997453049990295 -0.004196533475338803 0.02217463053103195 -0.9997453049990295 0.004196533475338803 -0.02217463053103195 -0.9997453049990297 0.0041965334753089 -0.02217463053103205 0.9667476113080429 0.2547619433526271 0.0222577682930246 0.9667476113080425 0.2547619433526288 0.0222577682930246 -0.9667476113080425 -0.2547619433526288 -0.0222577682930246 -0.9667476113080429 -0.2547619433526271 -0.0222577682930246 0.8678676655323955 0.4963588147550831 0.02082407592857645 0.8678676655323796 0.4963588147551112 0.02082407592857618 -0.8678676655323796 -0.4963588147551112 -0.02082407592857618 -0.8678676655323955 -0.4963588147550831 -0.02082407592857645 0.709843972569821 0.7041296532037538 0.01797125720300175 0.7098439725698148 0.7041296532037602 0.01797125720300163 -0.7098439725698148 -0.7041296532037602 -0.01797125720300163 -0.709843972569821 -0.7041296532037538 -0.01797125720300175 -0.8637419973543827 0.5036274239500319 -0.01758351079040463 -0.8637419973543511 0.5036274239500859 -0.01758351079040376 0.8637419973543827 -0.5036274239500319 0.01758351079040463 0.8637419973543511 -0.5036274239500859 0.01758351079040376 -0.9646120083115553 0.2628690234820563 -0.02058032834378222 -0.964612008311553 0.2628690234820647 -0.02058032834378215 0.9646120083115553 -0.2628690234820563 0.02058032834378222 0.964612008311553 -0.2628690234820647 0.02058032834378215</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"160\" source=\"#ID10364\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10362\">\r\n\t\t\t\t\t<float_array count=\"432\" id=\"ID10365\">-49.06597402017519 87.90234244812918 -50.0794455727205 87.29569899691596 -49.07254387324119 87.29149320847812 -50.07287571965453 87.9065482365654 27.72947678769533 191.4117124020678 29.22734953889676 191.4117123761903 27.72947676250255 189.9535613376206 29.22734951370396 189.9535613117393 -50.07287571965306 87.90654823656388 -51.08634727219846 87.29990478535079 -50.07944557271902 87.2956989969144 -51.07977741913242 87.91075402500151 28.10495476727311 191.4117121296602 29.60282751847451 191.4117120896067 28.10495472828349 189.95356106521 29.60282747948498 189.9535610251595 -48.05907232069486 87.89813665969064 -49.07254387323994 87.29149320847678 -48.06564217376106 87.2872874200399 -49.06597402017391 87.90234244812757 25.41324201384256 191.4117127124661 26.91111476504419 191.4117127025231 25.41324200416336 189.9535616480151 26.91111475536473 189.9535616380722 -75.62496497157483 94.57716319624805 -74.68334228451104 95.08668577846164 -74.71941947413693 95.11735073995379 -75.57738148592065 94.55336211714098 -76.27530715274558 93.90932392137214 -76.21946010697469 93.89400872885804 -76.62612627274316 93.15934505825244 -76.56582155073346 93.15355945739175 -76.65351458829595 92.37833642701173 -76.59286185719422 92.38247469694186 -76.35560563096041 91.61952247519143 -76.29873827415764 91.63330259965562 -75.75270140386112 90.93461511960868 -75.70349483774572 90.95709800589729 -74.88588883372863 90.37028966468364 -74.84769640446368 90.39994314125075 -73.78966422329567 89.99980718901099 -73.81423976477161 89.96500395758865 -72.60150143881839 89.78395875303967 -72.61078530996676 89.74637754946846 -71.36417938131974 89.76710754756375 -71.35753890166419 89.72930946876116 -70.16201950431294 89.95040195437832 -70.13990721156806 89.91496287695053 -69.07694701665422 90.32135076257703 -69.04086982702829 90.29068580108481 -73.62038208959723 95.49307366408819 -73.59826979685236 95.4576345866604 -72.4027503994669 95.67872707228274 -72.39610991981148 95.64092899348017 -71.14950399119709 95.66165899157589 -71.15878786234551 95.62407778800461 -69.94604953642363 95.44303258346147 -69.9706250778996 95.40822935203913 -68.87440046743667 95.03774687635504 -68.91259289670155 95.00809339978794 -68.00758789730409 94.47342142142989 -68.05679446341938 94.45093853514128 -67.46155102700747 93.77473394138309 -67.40468367020473 93.78851406584718 -67.16742744397106 93.02556184409674 -67.10677471286924 93.02970011402695 -67.19446775043174 92.25447708364689 -67.13416302842207 92.24869148278624 -67.54082919419054 91.5140278121806 -67.48498214841973 91.49871261966658 -68.1829078152446 90.85467442389778 -68.13532432959036 90.83087334479072 -2.39514357957295 23.09641327580486 -2.407141439931865 23.16832685354745 -0.9625055943639946 23.53364454427526 -0.9927072410660189 23.60000245151613 0.3081526558777279 24.32677151386108 0.2618054151446581 24.3830515688837 1.330237911260137 25.42174389228954 1.270903564359536 25.46411070235116 2.034096750704785 26.74394112149848 1.965818835323327 26.76950745850788 2.371762357485138 28.203257645351 2.299193900721542 28.21028120569145 2.320223378517933 29.7002434543815 2.248309800775483 29.68824559402252 1.816634202806852 31.10267979288854 1.88299211004776 31.1328814395905 1.033585085439349 32.35719244909942 1.089865140461884 32.40353968983242 -0.04747404802826161 33.36629059831404 -0.00510723796667989 33.42562494521474 -1.352870804184835 34.06120586927791 -1.327304467175402 34.12948378465931 -2.793644551368396 34.39458093467616 -2.786620991028118 34.46714939143983 -4.271608939699706 34.34369683473014 -4.283606800058651 34.41561041247259 -3.892129388603456 23.04487429683785 -3.885105828263189 23.11744275360156 -5.351445912415202 23.38253990360883 -5.325879575405884 23.45081781899037 -6.673643141658478 24.08639874307183 -6.631276331597023 24.14573308997242 -7.768615520115559 25.10848399848091 -7.71233546509305 25.15483123921395 -8.561742489679373 26.37914224868715 -8.495384582438383 26.40934389538907 -8.927060180406977 27.82377809425482 -8.998973758149546 27.8117802338959 -8.977944280352931 29.30174248258615 -9.050512737116646 29.30876604292645 -8.644569214954998 30.74251622976961 -8.712847130336282 30.76808256677912 -7.949653943991085 32.04791298592636 -8.008988290891674 32.09027979598805 -6.940555794776233 33.12897211939385 -6.986903035509331 33.18525217441662 -5.68604313856548 33.9120212367616 -5.716244785267433 33.97837914400245 -51.07977741913331 87.91075402500437 -52.09324897168006 87.30411057378936 -51.08634727219937 87.29990478535281 -52.08667911861398 87.91495981344129 26.51408774877458 191.4117119696406 28.01196049997585 191.4117119181457 26.51408769864526 189.9535609051895 28.01196044984654 189.9535608536955 -47.05217062121771 87.89393087125421 -48.06564217376268 87.28728742004033 -47.05874047428389 87.28308163160367 -48.05907232069646 87.89813665969098 21.31409801779054 191.4117129760865 22.81197076899186 191.4117129827577 21.31409802428433 189.9535619116356 22.81197077548573 189.9535619183071 -58.99528934391417 87.3321365019174 -59.99562119035341 87.94719153000415 -60.00219104341915 87.336342290354 -58.98871949084819 87.94298574156872 -21.31409801779315 191.4117129760859 -21.31409802428709 189.9535619116338 -22.81197076903358 191.4117129827531 -22.81197077552718 189.9535619183037 -58.99528934391372 87.3321365019154 -57.98181779134151 87.93877995312911 -58.98871949084773 87.9429857415673 -57.98838764440774 87.32793071347849 -15.71139471090401 189.9535620561758 -17.20926746214414 189.9535620790057 -15.71139468867902 191.4117131206249 -17.20926743991952 191.4117131434578 -57.98838764440963 87.32793071348007 -56.97491609189147 87.93457416469421 -57.98181779134339 87.93877995313081 -56.98148594495746 87.32372492504302 -8.986947036039318 189.9535620413009 -10.48481978719915 189.953562078735 -8.986946999598604 191.4117131057511 -10.48481975075807 191.4117131431841 -57.00915475066241 87.31886712984323 -55.99568319815594 87.9255105811235 -57.00258489759651 87.92971636949609 -56.00225305122187 87.3146613414702 -1.599014995937745 189.9535618695349 -3.096887747139113 189.9535619190208 -1.599014947764245 191.4117129339861 -3.09688769896566 191.411712983471 -56.00225305108998 87.31466134126438 -54.9887814985439 87.92130479247879 -55.99568319802397 87.92551058091596 -54.99535135160986 87.31045555282793 5.948926049960321 189.9535615856993 4.451053298758801 189.9535616438639 5.948926106583476 191.4117126501488 4.45105335538203 191.4117127083152 -55.00698790225071 87.32079070997514 -53.99351634973341 87.9274341612371 -55.00041804918415 87.93163994962545 -54.00008620280007 87.31658492158616 13.14249639294008 189.9535612649777 11.6446236417388 189.9535613278603 13.14249645415439 191.4117123294288 11.64462370295296 191.4117123923099 -54.00008620275511 87.31658492150731 -52.98661465020867 87.92322837272158 -53.99351634968904 87.92743416115904 -52.99318450327472 87.31237913307047 19.49146610206385 189.9535609928352 17.99359335086252 189.9535610561476 19.49146616369747 191.4117120572848 17.99359341249616 191.4117121205987 -52.0866791186124 87.9149598134358 -53.10015067116001 87.30831636222047 -52.09324897167849 87.30411057378348 -53.09358081809398 87.91916560187219 23.06529069047671 191.4117119660326 24.56316344167828 191.4117119066051 23.065290632624 189.953560901583 24.5631633838255 189.953560842154 -47.05217062121609 87.89393087125738 -46.05183877480474 87.27887584317031 -46.04526892173865 87.88972508282026 -47.05874047428225 87.2830816316076 15.71139471094577 189.9535620561803 15.71139468872119 191.4117131206309 17.20926746214722 189.9535620790096 17.20926743992253 191.4117131434606 -46.04526892173984 87.88972508282146 -45.0449370753287 87.2746700547346 -45.03836722226247 87.88551929438418 -46.05183877480596 87.27887584317163 8.986947036039009 189.9535620413069 8.986946999598207 191.4117131057579 10.48481978724035 189.9535620787402 10.48481975079973 191.4117131431907</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"216\" source=\"#ID10365\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10361\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10359\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10360\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"78\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10361\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10362\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 8 8 9 1 10 8 9 3 8 9 11 12 16 2 17 13 18 2 17 12 16 0 19 16 24 17 25 18 26 17 25 16 24 19 27 19 27 16 24 20 28 19 27 20 28 21 29 21 29 20 28 22 30 21 29 22 30 23 31 23 31 22 30 24 32 23 31 24 32 25 33 25 33 24 32 26 34 25 33 26 34 27 35 27 35 26 34 28 36 27 35 28 36 29 37 29 37 28 36 30 38 29 37 30 38 31 39 31 39 30 38 32 40 32 40 30 38 33 41 32 40 33 41 34 42 34 42 33 41 35 43 34 42 35 43 36 44 36 44 35 43 37 45 36 44 37 45 38 46 38 46 37 45 39 47 38 46 39 47 40 48 40 48 39 47 41 49 17 25 42 50 18 26 42 50 17 25 43 51 42 50 43 51 44 52 44 52 43 51 45 53 44 52 45 53 46 54 46 54 45 53 47 55 46 54 47 55 48 56 48 56 47 55 49 57 48 56 49 57 50 58 50 58 49 57 51 59 50 58 51 59 52 60 52 60 51 59 53 61 52 60 53 61 54 62 52 60 54 62 55 63 55 63 54 62 56 64 55 63 56 64 57 65 57 65 56 64 58 66 57 65 58 66 59 67 59 67 58 66 60 68 59 67 60 68 61 69 61 69 60 68 62 70 61 69 62 70 63 71 63 71 62 70 40 48 63 71 40 48 41 49 9 120 112 121 8 122 112 121 9 120 113 123 116 128 13 129 117 130 13 129 116 128 12 131 120 136 121 137 122 138 121 137 120 136 123 139 120 144 128 145 123 146 128 145 120 144 129 147 129 152 132 153 128 154 132 153 129 152 133 155 133 160 136 161 132 162 136 161 133 160 137 163 137 168 140 169 136 170 140 169 137 168 141 171 141 176 144 177 140 178 144 177 141 176 145 179 145 184 148 185 144 186 148 185 145 184 149 187 113 192 149 193 112 194 149 193 113 192 148 195 116 200 152 201 153 202 152 201 116 200 117 203 153 208 156 209 157 210 156 209 153 208 152 211</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"78\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10361\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10362\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 10 12 4 13 11 14 6 15 11 14 4 13 5 20 14 21 7 22 15 23 7 22 14 21 64 72 65 73 66 74 65 73 67 75 66 74 66 74 67 75 68 76 67 75 69 77 68 76 68 76 69 77 70 78 69 77 71 79 70 78 70 78 71 79 72 80 71 79 73 81 72 80 72 80 73 81 74 82 73 81 75 83 74 82 74 82 75 83 76 84 75 83 77 85 76 84 77 85 78 86 76 84 76 84 78 86 79 87 78 86 80 88 79 87 79 87 80 88 81 89 80 88 82 90 81 89 81 89 82 90 83 91 82 90 84 92 83 91 83 91 84 92 85 93 84 92 86 94 85 93 85 93 86 94 87 95 86 94 88 96 87 95 89 97 87 95 88 96 64 72 90 98 65 73 65 73 90 98 91 99 90 98 92 100 91 99 91 99 92 100 93 101 92 100 94 102 93 101 93 101 94 102 95 103 94 102 96 104 95 103 95 103 96 104 97 105 96 104 98 106 97 105 97 105 98 106 99 107 99 107 98 106 100 108 98 106 101 109 100 108 100 108 101 109 102 110 101 109 103 111 102 110 102 110 103 111 104 112 103 111 105 113 104 112 104 112 105 113 106 114 105 113 107 115 106 114 106 114 107 115 108 116 107 115 109 117 108 116 108 116 109 117 110 118 109 117 111 119 110 118 110 118 111 119 88 96 89 97 88 96 111 119 114 124 10 125 115 126 11 127 115 126 10 125 14 132 118 133 15 134 119 135 15 134 118 133 124 140 125 141 126 142 127 143 126 142 125 141 130 148 125 149 131 150 124 151 131 150 125 149 134 156 130 157 135 158 131 159 135 158 130 157 138 164 134 165 139 166 135 167 139 166 134 165 142 172 138 173 143 174 139 175 143 174 138 173 146 180 142 181 147 182 143 183 147 182 142 181 150 188 146 189 151 190 147 191 151 190 146 189 151 196 114 197 150 198 115 199 150 198 114 197 119 204 118 205 154 206 155 207 154 206 118 205 154 212 155 213 158 214 159 215 158 214 155 213</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10366\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10367\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10371\">81.94269859665337 448.6292880792361 3.231349156769284 1.215645593010777 459.1555772430232 74.32582312121485 2.831695213514877 459.3848792523952 1.509469092983636 80.32664897613586 448.3999860698738 76.04770318508417 80.32664897613586 448.3999860698738 76.04770318508417 81.94269859665337 448.6292880792361 3.231349156769284 1.215645593010777 459.1555772430232 74.32582312121485 2.831695213514877 459.3848792523952 1.509469092983636 155.5764102170833 417.760004453969 4.768330023893213 153.9603605965679 417.5307024446019 77.5846840522845 153.9603605965679 417.5307024446019 77.5846840522845 155.5764102170833 417.760004453969 4.768330023893213 -77.98136540938754 449.0645002000777 72.53638714138833 -76.3653157888657 449.2938022094464 -0.2799668870156893 -77.98136540938754 449.0645002000777 72.53638714138833 -76.3653157888657 449.2938022094464 -0.2799668870156893 218.7148143133575 368.8807190417423 6.015668988316975 217.0987646928427 368.6514170323752 78.83202301650454 217.0987646928427 368.6514170323752 78.83202301650454 218.7148143133575 368.8807190417423 6.015668988316975 -151.8672386104724 418.8144451652066 70.80134235034348 -150.2511889899415 419.0437471745701 -2.015011677855 -151.8672386104724 418.8144451652066 70.80134235034348 -150.2511889899415 419.0437471745701 -2.015011677855 267.0551329874359 305.3224743665703 6.888361960669499 265.4390833669145 305.0931723572066 79.70471598897711 267.0551329874359 305.3224743665703 6.888361960669499 265.4390833669145 305.0931723572066 79.70471598897711 -215.4067738537469 370.4669033984519 69.23892918359888 -213.7907242332419 370.6962054078218 -3.577424844723282 -215.4067738537469 370.4669033984519 69.23892918359888 -213.7907242332419 370.6962054078218 -3.577424844723282 297.3030534078571 231.4166597680987 7.326936357141676 295.6870037873312 231.1873577587311 80.14329038545293 297.3030534078571 231.4166597680987 7.326936357141676 295.6870037873312 231.1873577587311 80.14329038545293 -262.6538071959565 307.5459819825067 -4.860730512142254 -264.2698568164744 307.3166799731375 67.95562351625813 -262.6538071959565 307.5459819825067 -4.860730512142254 -264.2698568164744 307.3166799731375 67.95562351625813 307.3972297849928 152.1998343760787 7.301504057491911 305.7811801644752 151.970532366706 80.11785808586137 307.3972297849928 152.1998343760787 7.301504057491911 305.7811801644752 151.970532366706 80.11785808586137 -293.5104995242671 233.8966602643804 -5.777473519512569 -295.1265491447837 233.6673582550181 67.03888050884234 -293.5104995242671 233.8966602643804 -5.777473519512569 -295.1265491447837 233.6673582550181 67.03888050884234 296.6497606801856 73.07049392897956 6.813798230867178 295.0337110596645 72.84119191960565 79.63015225917843 296.6497606801856 73.07049392897956 6.813798230867178 295.0337110596645 72.84119191960565 79.63015225917843 265.7930683527457 -0.578827787077941 5.897055223425923 264.17701873223 -0.8081297964246801 78.71340925178083 265.7930683527457 -0.578827787077941 5.897055223425923 264.17701873223 -0.8081297964246801 78.71340925178083 216.9299853887487 -63.72905121404561 4.613749556043331 215.3139357682212 -63.95835322341297 77.43010358436186 216.9299853887487 -63.72905121404561 4.613749556043331 215.3139357682212 -63.95835322341297 77.43010358436186 151.7744005232571 -112.3058949914348 75.86769041752268 153.3904501437953 -112.0765929820664 3.051336389185963 151.7744005232571 -112.3058949914348 75.86769041752268 153.3904501437953 -112.0765929820664 3.051336389185963</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID10371\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10368\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10372\">-0.2627382146294826 -0.9648263911121208 -0.008869362258527863 -0.00412566817798087 -0.9999862387051478 -0.003240565138420437 -0.004125668177968732 -0.9999862387051478 -0.003240565138420168 -0.2627382146293874 -0.9648263911121466 -0.008869362258525835 0.2627382146293874 0.9648263911121466 0.008869362258525835 0.2627382146294826 0.9648263911121208 0.008869362258527863 0.00412566817798087 0.9999862387051478 0.003240565138420437 0.004125668177968732 0.9999862387051478 0.003240565138420168 -0.5034455859492089 -0.863915219415865 -0.01389372699802554 -0.5034455859492211 -0.8639152194158578 -0.01389372699802579 0.5034455859492211 0.8639152194158578 0.01389372699802579 0.5034455859492089 0.863915219415865 0.01389372699802554 0.2547680357416924 -0.9669986766858075 0.002609071140618221 0.2547680357417735 -0.9669986766857862 0.002609071140620088 -0.2547680357416924 0.9669986766858075 -0.002609071140618221 -0.2547680357417735 0.9669986766857862 -0.002609071140620088 -0.7098439725697709 -0.7041296532038017 -0.01797125720310754 -0.7098439725698231 -0.704129653203749 -0.01797125720310852 0.7098439725698231 0.704129653203749 0.01797125720310852 0.7098439725697709 0.7041296532038017 0.01797125720310754 0.4962997190497773 -0.8681117528911745 0.008280903533093686 0.4962997190497642 -0.8681117528911821 0.008280903533093371 -0.4962997190497773 0.8681117528911745 -0.008280903533093686 -0.4962997190497642 0.8681117528911821 -0.008280903533093371 -0.8678676655323939 -0.4963588147550806 -0.02082407592870697 -0.8678676655323886 -0.4963588147550899 -0.02082407592870688 0.8678676655323939 0.4963588147550806 0.02082407592870697 0.8678676655323886 0.4963588147550899 0.02082407592870688 0.704009396678676 -0.7100644477594829 0.0133884060345982 0.704009396678684 -0.710064447759475 0.0133884060345984 -0.704009396678676 0.7100644477594829 -0.0133884060345982 -0.704009396678684 0.710064447759475 -0.0133884060345984 -0.9667476113080541 -0.2547619433525736 -0.02225776829315264 -0.9667476113080432 -0.2547619433526146 -0.02225776829315253 0.9667476113080541 0.2547619433525736 0.02225776829315264 0.9667476113080432 0.2547619433526146 0.02225776829315253 0.8637419973543554 -0.5036274239500838 0.0175835107902684 0.8637419973544065 -0.503627423949996 0.01758351079026981 -0.8637419973543554 0.5036274239500838 -0.0175835107902684 -0.8637419973544065 0.503627423949996 -0.01758351079026981 -0.9997453049990276 0.004196533475332873 -0.02217463053111785 -0.9997453049990277 0.004196533475329181 -0.02217463053111786 0.9997453049990276 -0.004196533475332873 0.02217463053111785 0.9997453049990277 -0.004196533475329181 0.02217463053111786 0.9646120083115698 -0.2628690234820119 0.02058032834366752 0.9646120083115676 -0.2628690234820207 0.02058032834366744 -0.9646120083115698 0.2628690234820119 -0.02058032834366752 -0.9646120083115676 0.2628690234820207 -0.02058032834366744 -0.9646120083115741 0.262869023481993 -0.0205803283437195 -0.9646120083115678 0.2628690234820155 -0.02058032834371928 0.9646120083115741 -0.262869023481993 0.0205803283437195 0.9646120083115678 -0.2628690234820155 0.02058032834371928 -0.86374199735438 0.5036274239500391 -0.01758351079034176 -0.8637419973543726 0.5036274239500518 -0.01758351079034156 0.86374199735438 -0.5036274239500391 0.01758351079034176 0.8637419973543726 -0.5036274239500518 0.01758351079034156 -0.7040093966786408 0.7100644477595155 -0.01338840603471467 -0.7040093966786168 0.7100644477595393 -0.01338840603471407 0.7040093966786408 -0.7100644477595155 0.01338840603471467 0.7040093966786168 -0.7100644477595393 0.01338840603471407 -0.4962997190497683 0.8681117528911791 -0.008280903533155021 -0.496299719049786 0.868111752891169 -0.008280903533155448 0.4962997190497683 -0.8681117528911791 0.008280903533155021 0.496299719049786 -0.868111752891169 0.008280903533155448</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID10372\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10370\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID10373\">-57.95090074131327 87.3789030953959 -58.93893115826588 87.94809098423745 -58.94500826424315 87.38305543752516 -57.94482363533615 87.94393864210885 -28.11447111257956 191.4117121294038 -28.11447107651411 190.0629223947882 -29.5933111731683 191.4117120898618 -29.59331113710308 190.0629223552477 -56.95679321838416 87.37475075326761 -57.94482363533644 87.94393864210898 -57.95090074131353 87.37890309539624 -56.950716112407 87.93978629998092 -26.52360409408036 191.4117119693148 -26.5236040477108 190.0629222346977 -28.00244415466925 191.4117119184736 -28.0024441082996 190.062922183858 -58.94500826424472 87.38305543752725 -59.93303868119639 87.95224332636737 -59.9391157871735 87.38720777965432 -58.93893115826747 87.94809098423895 -27.7389931330018 191.411712401905 -27.73899310969854 190.0629226672909 -29.21783319359095 191.4117123763549 -29.21783317028745 190.0629226417376 -55.9626856954578 87.37059841114176 -56.95071611240834 87.93978629998135 -56.95679321838548 87.37475075326913 -55.95660858948072 87.93563395785239 -23.07480703578264 191.4117119656553 -23.07480698226885 190.062922231042 -24.55364709637174 191.4117119069833 -24.553647042858 190.0629221723663 -59.93911578717292 87.38720777965207 -60.92714620412531 87.95639566849282 -60.93322331010228 87.39136012178105 -59.9330386811958 87.95224332636542 -25.42275835914811 191.4117127124019 -25.42275835019468 190.0629229777846 -26.90159841973725 191.4117127025831 -26.90159841078362 190.0629229679696 -55.95660858948012 87.93563395785152 -54.96857817252855 87.36644606901194 -54.96250106655152 87.93148161572414 -55.96268569545721 87.37059841114025 -19.48194976138052 190.0629223230755 -19.48194981839161 191.4117120576888 -18.00310970079162 190.0629223855836 -18.0031097578028 191.4117121201991 -60.93322331010292 87.39136012178197 -61.92125372705577 87.96054801062292 -61.927330833033 87.39551246390984 -60.92714620412593 87.9563956684941 -21.3236143630975 191.4117129761239 -21.32361436910416 190.0629232415105 -22.80245442368623 191.4117129827112 -22.80245442969324 190.0629232480954 -54.96250106655063 87.93148161572661 -53.9744706495981 87.36229372688517 -53.96839354362104 87.92732927359792 -54.96857817252766 87.36644606901389 -13.13298005222499 190.062922595216 -13.13298010884824 191.4117123298315 -11.65413999163602 190.0629226572977 -11.65414004825924 191.4117123919133 -62.92143835596083 87.39966480603589 -61.92125372705419 87.96054801062061 -62.91536124998368 87.96470035274925 -61.92733083303142 87.39551246390786 -15.72091105458399 190.0629233861548 -17.19975111517288 190.0629234086941 -15.72091103402616 191.4117131207706 -17.19975109461516 191.4117131433113 -53.96839354362143 87.92732927360027 -52.98036312666852 87.3581413847589 -52.97428602069138 87.92317693147237 -53.97447064959849 87.36229372688725 -5.939409708899502 190.0629229159059 -5.939409761275991 191.4117126505215 -4.460569648310604 190.0629229733324 -4.460569700686981 191.411712707949 -63.91554587889387 87.40381714816424 -62.91536124998819 87.96470035274787 -63.90946877291666 87.96885269487673 -62.92143835596532 87.39966480603503 -8.996463378612912 190.0629233713752 -10.47530343920195 190.0629234083351 -8.996463344905299 191.4117131059925 -10.47530340549422 191.4117131429515 -52.97428602069118 87.92317693146725 -51.9862556037365 87.35398904262449 -51.98017849775932 87.91902458933851 -52.98036312666834 87.35814138475278 1.608531337630194 190.0629231996839 1.608531293069873 191.4117129343005 3.087371398219146 190.0629232485407 3.087371353658865 191.4117129831563 -51.98017849775967 87.91902458934153 -50.99214808083277 87.3498367004994 -50.98607097485593 87.91487224721385 -51.98625560373686 87.35398904262742 8.996463378611693 190.0629233713751 8.996463344904205 191.4117131059907 10.47530343915918 190.0629234083332 10.47530340545118 191.4117131429495 -50.98607097485474 87.91487224721416 -49.99804055787433 87.345684358372 -49.99196345189718 87.91071990508577 -50.99214808083159 87.34983670050012 15.72091105454431 190.0629233861577 15.72091103398625 191.4117131207741 17.19975111517192 190.0629234086983 17.19975109461431 191.411713143314 -48.99785592894164 87.90656756296076 -49.99804055787515 87.34568435837586 -49.00393303491889 87.34153201624744 -49.99196345189802 87.91071990508902 21.32361436309945 191.4117129761276 22.80245442372732 191.4117129827139 21.32361436910616 190.0629232415119 22.80245442973386 190.0629232480978</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"120\" source=\"#ID10373\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10369\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10367\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10368\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"30\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10369\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10370\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 8 3 9 0 10 3 9 8 8 9 11 2 16 12 17 13 18 12 17 2 16 1 19 16 24 9 25 8 26 9 25 16 24 17 27 13 32 20 33 21 34 20 33 13 32 12 35 17 40 24 41 25 42 24 41 17 40 16 43 21 48 28 49 29 50 28 49 21 48 20 51 25 56 32 57 33 58 32 57 25 56 24 59 36 64 28 65 37 66 28 65 36 64 29 67 33 72 40 73 41 74 40 73 33 72 32 75 44 80 37 81 45 82 37 81 44 80 36 83 41 88 48 89 49 90 48 89 41 88 40 91 49 96 52 97 53 98 52 97 49 96 48 99 53 104 56 105 57 106 56 105 53 104 52 107 60 112 56 113 61 114 56 113 60 112 57 115</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"30\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10369\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10370\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 10 12 11 13 4 14 5 15 4 14 11 13 6 20 7 21 14 22 15 23 14 22 7 21 18 28 19 29 10 30 11 31 10 30 19 29 14 36 15 37 22 38 23 39 22 38 15 37 19 44 18 45 26 46 27 47 26 46 18 45 22 52 23 53 30 54 31 55 30 54 23 53 26 60 27 61 34 62 35 63 34 62 27 61 31 68 38 69 30 70 39 71 30 70 38 69 34 76 35 77 42 78 43 79 42 78 35 77 38 84 46 85 39 86 47 87 39 86 46 85 42 92 43 93 50 94 51 95 50 94 43 93 50 100 51 101 54 102 55 103 54 102 51 101 54 108 55 109 58 110 59 111 58 110 55 109 59 116 62 117 58 118 63 119 58 118 62 117</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10374\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10375\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10379\">16.24605600559426 258.9107525474644 659.2288605640679 -13.52657776842671 262.6921359641133 701.7997809541612 -12.56786157162742 262.8281686375786 658.6017150581774 15.28733980880065 258.7747198740046 702.4269264600625 15.28733980880065 258.7747198740046 702.4269264600625 16.24605600559426 258.9107525474644 659.2288605640679 -13.52657776842671 262.6921359641133 701.7997809541612 -12.56786157162742 262.8281686375786 658.6017150581774 43.06502690476714 247.6674999529016 659.7886618322991 42.10631070796694 247.5314672794351 702.9867277283247 42.10631070796694 247.5314672794351 702.9867277283247 43.06502690476714 247.6674999529016 659.7886618322991 -42.37182115807286 259.0167501170569 701.1480301402753 -41.4131049612829 259.15278279052 657.9499642444025 -42.37182115807286 259.0167501170569 701.1480301402753 -41.4131049612829 259.15278279052 657.9499642444025 66.06138257955399 229.8646199378283 660.2429693315171 65.10266638276494 229.7285872643594 703.441035227519 65.10266638276494 229.7285872643594 703.441035227519 66.06138257955399 229.8646199378283 660.2429693315171 -69.28263469215449 247.9990338044426 700.5160897596161 -68.32391849536566 248.1350664779122 657.3180238636105 -69.28263469215449 247.9990338044426 700.5160897596161 -68.32391849536566 248.1350664779122 657.3180238636105 83.6679593939823 206.7153493546415 660.5608227564462 82.70924319719688 206.5793166811739 703.7588886523445 83.6679593939823 206.7153493546415 660.5608227564462 82.70924319719688 206.5793166811739 703.7588886523445 -92.42509090054114 230.3898261853377 699.9470255044926 -91.46637470374958 230.5258588588049 656.7489596084506 -92.42509090054114 230.3898261853377 699.9470255044926 -91.46637470374958 230.5258588588049 656.7489596084506 94.68489823440791 179.7972727375902 660.7205609214834 93.72618203761977 179.6612400641299 703.9186268174217 94.68489823440791 179.7972727375902 660.7205609214834 93.72618203761977 179.6612400641299 703.9186268174217 -109.2633534405534 207.5251983318714 656.2815522676738 -110.2220696373522 207.3891656584 699.4796181636193 -109.2633534405534 207.5251983318714 656.2815522676738 -110.2220696373522 207.3891656584 699.4796181636193 98.36141292519437 150.9448125239206 660.7112979346075 97.402696728406 150.8087798504473 703.9093638305603 98.36141292519437 150.9448125239206 660.7112979346075 97.402696728406 150.8087798504473 703.9093638305603 -120.5020200157703 180.7005419016263 655.9476548787825 -121.4607362125678 180.5645092281603 699.1457207747644 -120.5020200157703 180.7005419016263 655.9476548787825 -121.4607362125678 180.5645092281603 699.1457207747644 94.44695506589801 122.1242161962407 660.5336650530571 93.48823886911487 121.9881835227754 703.7317309490845 94.44695506589801 122.1242161962407 660.5336650530571 93.48823886911487 121.9881835227754 703.7317309490845 -124.4164778750674 151.8799455739408 655.7700219972885 -125.3751940718648 151.7439129004705 698.968087893325 -124.4164778750674 151.8799455739408 655.7700219972885 -125.3751940718648 151.7439129004705 698.968087893325 83.20828849161694 95.29955976818691 660.1997676641895 82.24957229482629 95.16352709472841 703.3978335602224 83.20828849161694 95.29955976818691 660.1997676641895 82.24957229482629 95.16352709472841 703.3978335602224 -120.7399631842757 123.0274853602622 655.7607590104217 -121.6986793810681 122.8914526867982 698.95882490636 -120.7399631842757 123.0274853602622 655.7607590104217 -121.6986793810681 122.8914526867982 698.95882490636 65.41130975344527 72.29889923949469 659.7323603233908 64.45259355664643 72.16286656603103 702.9304262193346 65.41130975344527 72.29889923949469 659.7323603233908 64.45259355664643 72.16286656603103 702.9304262193346 -109.7230243438598 96.10940874322556 655.9204971754534 -110.6817405406437 95.97337606974676 699.118563071368 -109.7230243438598 96.10940874322556 655.9204971754534 -110.6817405406437 95.97337606974676 699.118563071368 41.31013734648855 54.55365894557272 702.3613619641146 42.26885354328874 54.68969161904704 659.1632960681582 41.31013734648855 54.55365894557272 702.3613619641146 42.26885354328874 54.68969161904704 659.1632960681582 -92.11644752942539 72.96013816003205 656.2383506004462 -93.07516372621922 72.82410548656419 699.4364164964663 -92.11644752942539 72.96013816003205 656.2383506004462 -93.07516372621922 72.82410548656419 699.4364164964663 14.39932381461858 43.53594263387302 701.7294215835427 15.35804001141128 43.67197530733715 658.5313556875117 14.39932381461858 43.53594263387302 701.7294215835427 15.35804001141128 43.67197530733715 658.5313556875117 -69.12009185464626 55.157258144963 656.6926580996424 -70.07880805143213 55.02122547148733 699.8907239955424 -70.07880805143213 55.02122547148733 699.8907239955424 -69.12009185464626 55.157258144963 656.6926580996424 -14.44591957502644 39.86055678680927 701.0776707697314 -13.48720337822761 39.99658946027469 657.8796048737768 -14.44591957502644 39.86055678680927 701.0776707697314 -13.48720337822761 39.99658946027469 657.8796048737768 -42.30112095546656 43.91400555038564 657.252459367839 -43.25983715224947 43.77797287691813 700.4505252638028 -43.25983715224947 43.77797287691813 700.4505252638028 -42.30112095546656 43.91400555038564 657.252459367839</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10379\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10376\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10380\">-0.2627382146294016 -0.9648263911121437 -0.008869362258425747 -0.004125668178214064 -0.9999862387051469 -0.003240565138341199 -0.004125668178088106 -0.9999862387051477 -0.003240565138338407 -0.2627382146294229 -0.9648263911121379 -0.008869362258426203 0.2627382146294229 0.9648263911121379 0.008869362258426203 0.2627382146294016 0.9648263911121437 0.008869362258425747 0.004125668178214064 0.9999862387051469 0.003240565138341199 0.004125668178088106 0.9999862387051477 0.003240565138338407 -0.5034455859492181 -0.8639152194158609 -0.01389372699794463 -0.5034455859491934 -0.8639152194158754 -0.01389372699794412 0.5034455859491934 0.8639152194158754 0.01389372699794412 0.5034455859492181 0.8639152194158609 0.01389372699794463 0.2547680357416322 -0.9669986766858234 0.002609071140604013 0.2547680357417747 -0.966998676685786 0.002609071140607294 -0.2547680357416322 0.9669986766858234 -0.002609071140604013 -0.2547680357417747 0.966998676685786 -0.002609071140607294 -0.7098439725698427 -0.7041296532037316 -0.01797125720301407 -0.7098439725696789 -0.704129653203897 -0.01797125720301095 0.7098439725696789 0.704129653203897 0.01797125720301095 0.7098439725698427 0.7041296532037316 0.01797125720301407 0.4962997190498487 -0.8681117528911344 0.008280903533015754 0.4962997190499423 -0.8681117528910809 0.008280903533018 -0.4962997190498487 0.8681117528911344 -0.008280903533015754 -0.4962997190499423 0.8681117528910809 -0.008280903533018 -0.8678676655323695 -0.4963588147551265 -0.02082407592862606 -0.8678676655323414 -0.4963588147551759 -0.02082407592862558 0.8678676655323695 0.4963588147551265 0.02082407592862606 0.8678676655323414 0.4963588147551759 0.02082407592862558 0.7040093966786755 -0.7100644477594839 0.01338840603457778 0.7040093966786487 -0.7100644477595103 0.01338840603457711 -0.7040093966786755 0.7100644477594839 -0.01338840603457778 -0.7040093966786487 0.7100644477595103 -0.01338840603457711 -0.9667476113080266 -0.2547619433526792 -0.02225776829313945 -0.9667476113080499 -0.2547619433525909 -0.02225776829313969 0.9667476113080266 0.2547619433526792 0.02225776829313945 0.9667476113080499 0.2547619433525909 0.02225776829313969 0.863741997354338 -0.5036274239501131 0.01758351079028347 0.8637419973543767 -0.5036274239500465 0.01758351079028454 -0.863741997354338 0.5036274239501131 -0.01758351079028347 -0.8637419973543767 0.5036274239500465 -0.01758351079028454 -0.9997453049990279 0.004196533475413242 -0.02217463053109614 -0.9997453049990277 0.004196533475427896 -0.0221746305310961 0.9997453049990279 -0.004196533475413242 0.02217463053109614 0.9997453049990277 -0.004196533475427896 0.0221746305310961 0.9646120083115737 -0.2628690234819964 0.02058032834370025 0.9646120083115715 -0.2628690234820041 0.02058032834370018 -0.9646120083115737 0.2628690234819964 -0.02058032834370025 -0.9646120083115715 0.2628690234820041 -0.02058032834370018 -0.9646120083115239 0.2628690234821822 -0.02058032834364656 -0.9646120083115809 0.2628690234819733 -0.02058032834364847 0.9646120083115239 -0.2628690234821822 0.02058032834364656 0.9646120083115809 -0.2628690234819733 0.02058032834364847 0.9997453049990281 -0.004196533475254052 0.02217463053110524 0.9997453049990283 -0.004196533475254255 0.02217463053110524 -0.9997453049990281 0.004196533475254052 -0.02217463053110524 -0.9997453049990283 0.004196533475254255 -0.02217463053110524 -0.863741997354416 0.5036274239499806 -0.01758351079024107 -0.8637419973544116 0.5036274239499884 -0.01758351079024095 0.863741997354416 -0.5036274239499806 0.01758351079024107 0.8637419973544116 -0.5036274239499884 0.01758351079024095 0.9667476113080363 0.2547619433526437 0.02225776829312836 0.9667476113080727 0.2547619433525051 0.02225776829312874 -0.9667476113080363 -0.2547619433526437 -0.02225776829312836 -0.9667476113080727 -0.2547619433525051 -0.02225776829312874 -0.7040093966786747 0.710064447759484 -0.01338840603460975 -0.7040093966786839 0.710064447759475 -0.01338840603460998 0.7040093966786747 -0.710064447759484 0.01338840603460975 0.7040093966786839 -0.710064447759475 0.01338840603460998 0.8678676655324559 0.4963588147549737 0.02082407592867596 0.8678676655322763 0.4963588147552875 0.02082407592867297 -0.8678676655324559 -0.4963588147549737 -0.02082407592867596 -0.8678676655322763 -0.4963588147552875 -0.02082407592867297 -0.496299719049733 0.8681117528912 -0.008280903533066916 -0.4962997190497424 0.8681117528911947 -0.008280903533067142 0.496299719049733 -0.8681117528912 0.008280903533066916 0.4962997190497424 -0.8681117528911947 0.008280903533067142 0.7098439725698571 0.7041296532037152 0.01797125720309097 0.709843972569832 0.7041296532037407 0.01797125720309049 -0.7098439725698571 -0.7041296532037152 -0.01797125720309097 -0.709843972569832 -0.7041296532037407 -0.01797125720309049 -0.2547680357416837 0.9669986766858099 -0.002609071140617685 -0.2547680357418778 0.9669986766857588 -0.002609071140622153 0.2547680357416837 -0.9669986766858099 0.002609071140617685 0.2547680357418778 -0.9669986766857588 0.002609071140622153 0.5034455859492157 0.8639152194158616 0.0138937269979924 0.503445585949411 0.8639152194157477 0.01389372699799637 -0.503445585949411 -0.8639152194157477 -0.01389372699799637 -0.5034455859492157 -0.8639152194158616 -0.0138937269979924 0.004125668177855048 0.9999862387051486 0.00324056513835736 0.004125668177922733 0.9999862387051481 0.003240565138358861 -0.004125668177855048 -0.9999862387051486 -0.00324056513835736 -0.004125668177922733 -0.9999862387051481 -0.003240565138358861 0.2627382146294425 0.9648263911121322 0.00886936225847325 0.2627382146293255 0.9648263911121641 0.008869362258470756 -0.2627382146293255 -0.9648263911121641 -0.008869362258470756 -0.2627382146294425 -0.9648263911121322 -0.00886936225847325</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10380\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10378\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10381\">-28.58457886040673 202.2460282907834 -29.12320402613728 203.0461934125415 -29.12320400474144 202.2460282763813 -28.58457888180248 203.0461934269437 -26.99371192467743 202.2460281271006 -27.53233709652091 203.0461932447436 -27.53233706901219 202.2460281085832 -26.9937119521862 203.0461932632615 -28.20910077831729 202.2460285677325 -28.74772593647698 203.0461936945845 -28.74772592265229 202.2460285584264 -28.20910079214211 203.0461937038927 -23.54491492376661 202.2460281209542 -24.08354009984856 203.0461932357451 -24.08354006810154 202.2460280995842 -23.54491495551345 203.0461932571147 -25.89286588919405 202.2460288832291 -26.43149103884045 203.0461940158132 -26.43149103352895 202.2460288796526 -25.89286589450558 203.0461940193872 -19.01184285203308 203.0461933876689 -18.47321767387672 202.246028274275 -18.47321770769832 203.0461934104336 -19.01184281821147 202.2460282515085 -21.79372177297355 202.2460291521663 -22.33234691374489 203.0461942907251 -22.33234691730849 202.2460291545639 -21.79372176940996 203.0461942883269 -12.66287313914708 203.0461936596732 -12.12424796122058 202.2460285461268 -12.12424799481222 203.0461936822861 -12.66287310555559 202.2460285235146 -16.72964347135189 202.2460293100958 -16.19101831482128 203.0461944380455 -16.7296434591562 203.0461944462553 -16.19101832701713 202.2460293018843 -5.469302754942916 203.0461939788866 -4.930677579535786 202.2460288636432 -4.930677610607871 203.0461939998027 -5.469302723870595 202.2460288427272 -10.00519567660981 202.246029305148 -9.46657051227816 203.0461944278479 -10.00519565661286 203.0461944413082 -9.466570532275004 202.2460292916884 2.078638366827451 203.0461942599386 2.617263537597504 202.246029141573 2.617263511162091 203.046194277734 2.078638393262697 202.246029123779 -2.61726353759317 202.2460291415757 -2.078638366822905 203.0461942599408 -2.617263511157884 203.0461942777368 -2.078638393258264 202.2460291237807 9.46657051227103 203.0461944278477 10.00519567655879 202.2460293051463 10.00519565656165 203.0461944413074 9.466570532268108 202.2460292916868 4.930677579539218 202.2460288636417 5.469302754946362 203.0461939788868 4.930677610611481 203.046193999801 5.469302723874202 202.2460288427256 16.19101831478389 203.046194438045 16.72964347135589 202.2460293100957 16.72964345916009 203.0461944462552 16.19101832697987 202.2460293018839 12.12424796121709 202.2460285461263 12.66287313914337 203.0461936596735 12.12424799480838 203.0461936822852 12.66287310555177 202.2460285235142 22.33234691378654 203.0461942907262 21.79372177297379 202.2460291521695 22.3323469173499 202.2460291545665 21.7937217694103 203.0461942883289 18.47321767387775 202.2460282742776 19.01184285203409 203.0461933876686 18.47321770769941 203.0461934104384 19.01184281821268 202.2460282515098 26.43149103884127 203.0461940158141 25.89286588923899 202.2460288832278 26.43149103352975 202.2460288796531 25.89286589455075 203.0461940193874 24.08354009984651 203.0461932357465 23.54491492376484 202.2460281209552 24.0835400680996 202.2460280995857 23.54491495551158 203.0461932571139 28.74772593647572 203.0461936945861 28.20910077831621 202.2460285677319 28.74772592265089 202.2460285584265 28.20910079214088 203.0461937038929 27.53233709652027 203.046193244744 26.9937119246768 202.2460281271021 27.53233706901177 202.2460281085853 26.99371195218529 203.0461932632618 29.12320402613719 203.0461934125406 28.58457886040661 202.2460282907837 29.12320400474164 202.2460282763808 28.58457888180245 203.0461934269434</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10381\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10377\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10375\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10376\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10377\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10378\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 3 5 0 6 3 5 8 4 9 7 10 7 11 4 4 5 5 6 4 5 11 4 2 8 12 9 13 10 12 9 2 8 1 11 6 11 7 8 14 9 15 10 14 9 7 8 16 12 9 13 8 14 9 13 16 12 17 15 18 15 19 12 10 13 11 14 10 13 19 12 13 16 20 17 21 18 20 17 13 16 12 19 14 19 15 16 22 17 23 18 22 17 15 16 17 20 24 21 25 22 24 21 17 20 16 23 19 23 18 20 26 21 27 22 26 21 18 20 21 24 28 25 29 26 28 25 21 24 20 27 22 27 23 24 30 25 31 26 30 25 23 24 25 28 32 29 33 30 32 29 25 28 24 31 26 31 27 28 34 29 35 30 34 29 27 28 36 32 28 33 37 34 28 33 36 32 29 35 31 35 38 32 30 33 39 34 30 33 38 32 33 36 40 37 41 38 40 37 33 36 32 39 34 39 35 36 42 37 43 38 42 37 35 36 44 40 37 41 45 42 37 41 44 40 36 43 38 43 46 40 39 41 47 42 39 41 46 40 41 44 48 45 49 46 48 45 41 44 40 47 42 47 43 44 50 45 51 46 50 45 43 44 52 48 45 49 53 50 45 49 52 48 44 51 46 51 54 48 47 49 55 50 47 49 54 48 49 52 56 53 57 54 56 53 49 52 48 55 50 55 51 52 58 53 59 54 58 53 51 52 60 56 53 57 61 58 53 57 60 56 52 59 54 59 62 56 55 57 63 58 55 57 62 56 57 60 64 61 65 62 64 61 57 60 56 63 58 63 59 60 66 61 67 62 66 61 59 60 68 64 61 65 69 66 61 65 68 64 60 67 62 67 70 64 63 65 71 66 63 65 70 64 72 68 64 69 73 70 64 69 72 68 65 71 67 71 74 68 66 69 75 70 66 69 74 68 76 72 69 73 77 74 69 73 76 72 68 75 70 75 78 72 71 73 79 74 71 73 78 72 80 76 73 77 81 78 73 77 80 76 72 79 74 79 82 76 75 77 83 78 75 77 82 76 77 80 84 81 76 82 84 81 77 80 85 83 86 83 79 80 87 81 78 82 87 81 79 80 88 84 81 85 89 86 81 85 88 84 80 87 82 87 90 84 83 85 91 86 83 85 90 84 85 88 92 89 84 90 92 89 85 88 93 91 94 91 86 88 95 89 87 90 95 89 86 88 93 92 89 93 92 94 89 93 93 92 88 95 90 95 94 92 91 93 95 94 91 93 94 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10382\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10383\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10387\">-98.14515484066351 76.93491475618012 2706.225962653694 -78.1435701135797 69.13788964372033 2659.389352284568 -97.09690643816134 77.08365119468731 2658.993733013742 -79.191818516078 68.98915320521465 2706.621581924452 -79.191818516078 68.98915320521465 2706.621581924452 -98.14515484066351 76.93491475618012 2706.225962653694 -78.1435701135797 69.13788964372033 2659.389352284568 -97.09690643816134 77.08365119468731 2658.993733013742 -114.3969963070008 89.51645540292037 2705.904897283153 -113.3487479045007 89.66519184143465 2658.67266764323 -114.3969963070008 89.51645540292037 2705.904897283153 -113.3487479045007 89.66519184143465 2658.67266764323 -57.78037747941835 66.36939770724527 2659.832564656183 -58.82862588191256 66.22066126873352 2707.064794296117 -58.82862588191256 66.22066126873352 2707.064794296117 -57.78037747941835 66.36939770724527 2659.832564656183 -97.09690643816134 77.08365119468731 2658.993733013742 -95.51645129715735 135.0784738518065 2659.211437175263 -96.81557309603386 145.2736894751517 2659.214710315437 -78.1435701135797 69.13788964372033 2659.389352284568 -91.62354004606368 125.5667860011343 2659.267881756534 -85.40213481120122 117.3868317313437 2659.380197454442 -77.27621407795209 111.096061407911 2659.540730139581 -57.78037747941835 66.36939770724527 2659.832564656183 -67.7995459155743 107.1231806323922 2659.738539775062 -57.61794959839358 105.7389346641417 2659.960145960871 -37.39504646192449 68.9668435355597 2660.293165938105 -47.42528408954127 107.0376575783027 2660.190446601848 -37.91616270189002 110.9308435534847 2660.413747089651 -29.73861633629917 117.1531784028937 2660.61482986529 -18.37680368418342 76.75321548689986 2660.739766913825 -23.44993126860254 125.280620287384 2660.779991469926 -19.47867099571499 134.7592974687555 2660.897976412931 -18.0954703386933 144.9432537684224 2660.960744215674 -2.02171095525182 89.19788518402237 2661.141932465142 -17.81413699657469 213.1332920488907 2661.181721517429 -1.562295530230131 200.5517514021393 2661.502786887897 10.555659178415 105.4527689507769 2661.472255674329 10.88051493937405 184.1918428627242 2661.727418283623 18.49817972521737 124.4101233159148 2661.708225560325 18.66633744147521 165.1684671615629 2661.840307446135 21.26458103921414 144.7780359150649 2661.833761165673 -133.577380876211 125.0484760820182 2658.335147085079 -133.4092231599539 165.8068199276598 2658.467228970805 -136.1756244739499 145.4389073285053 2658.34169336551 -125.7915583741149 106.0251003808511 2658.44803624759 -125.4667026120585 184.7641742953988 2658.703198856872 -113.3487479045007 89.66519184143465 2658.67266764323 -112.8893324799951 201.0190580600807 2659.033522066024 -96.53423975315695 213.4637277556046 2659.435687617261 -95.43237243901899 155.4576457748234 2659.277478118194 -77.51599697280858 221.2500997080088 2659.882288593111 -91.46111216504892 164.9363229587925 2659.395463061297 -85.17242709894458 173.0637648412021 2659.560624665823 -76.99488073544103 179.2860996890225 2659.761707441385 -57.13066595531677 223.8475455363305 2660.342889874888 -67.48575934518499 183.1792856652672 2659.985007929352 -57.29309383633358 184.4780085794369 2660.215308570256 -47.11149751915582 183.0937626111846 2660.436914755985 -36.76747332115178 221.0790535998564 2660.786102246526 -37.63482935678371 179.1208818356624 2660.634724391479 -29.50890862353322 172.8301115122276 2660.79525707677 -23.28750338866348 164.6501572424438 2660.907572774564 -19.39459213757891 155.1384693917676 2660.964017355796 -18.0954703386933 144.9432537684224 2660.960744215674 -19.39459213757891 155.1384693917676 2660.964017355796 -17.81413699657469 213.1332920488907 2661.181721517429 -23.28750338866348 164.6501572424438 2660.907572774564 -29.50890862353322 172.8301115122276 2660.79525707677 -36.76747332115178 221.0790535998564 2660.786102246526 -37.63482935678371 179.1208818356624 2660.634724391479 -47.11149751915582 183.0937626111846 2660.436914755985 -57.13066595531677 223.8475455363305 2660.342889874888 -57.29309383633358 184.4780085794369 2660.215308570256 -67.48575934518499 183.1792856652672 2659.985007929352 -76.99488073544103 179.2860996890225 2659.761707441385 -77.51599697280858 221.2500997080088 2659.882288593111 -85.17242709894458 173.0637648412021 2659.560624665823 -91.46111216504892 164.9363229587925 2659.395463061297 -95.43237243901899 155.4576457748234 2659.277478118194 -96.53423975315695 213.4637277556046 2659.435687617261 -96.81557309603386 145.2736894751517 2659.214710315437 -112.8893324799951 201.0190580600807 2659.033522066024 -97.09690643816134 77.08365119468731 2658.993733013742 -113.3487479045007 89.66519184143465 2658.67266764323 -125.4667026120585 184.7641742953988 2658.703198856872 -125.7915583741149 106.0251003808511 2658.44803624759 -133.4092231599539 165.8068199276598 2658.467228970805 -133.577380876211 125.0484760820182 2658.335147085079 -136.1756244739499 145.4389073285053 2658.34169336551 21.26458103921414 144.7780359150649 2661.833761165673 18.49817972521737 124.4101233159148 2661.708225560325 18.66633744147521 165.1684671615629 2661.840307446135 10.88051493937405 184.1918428627242 2661.727418283623 10.555659178415 105.4527689507769 2661.472255674329 -1.562295530230131 200.5517514021393 2661.502786887897 -2.02171095525182 89.19788518402237 2661.141932465142 -18.37680368418342 76.75321548689986 2660.739766913825 -19.47867099571499 134.7592974687555 2660.897976412931 -23.44993126860254 125.280620287384 2660.779991469926 -29.73861633629917 117.1531784028937 2660.61482986529 -37.39504646192449 68.9668435355597 2660.293165938105 -37.91616270189002 110.9308435534847 2660.413747089651 -47.42528408954127 107.0376575783027 2660.190446601848 -57.61794959839358 105.7389346641417 2659.960145960871 -57.78037747941835 66.36939770724527 2659.832564656183 -67.7995459155743 107.1231806323922 2659.738539775062 -77.27621407795209 111.096061407911 2659.540730139581 -78.1435701135797 69.13788964372033 2659.389352284568 -85.40213481120122 117.3868317313437 2659.380197454442 -91.62354004606368 125.5667860011343 2659.267881756534 -95.51645129715735 135.0784738518065 2659.211437175263 -126.8398067766179 105.8763639423443 2705.6802658875 -125.7915583741149 106.0251003808511 2658.44803624759 -125.7915583741149 106.0251003808511 2658.44803624759 -126.8398067766179 105.8763639423443 2705.6802658875 -37.39504646192449 68.9668435355597 2660.293165938105 -38.44329486441484 68.81810709704803 2707.525395578014 -38.44329486441484 68.81810709704803 2707.525395578014 -37.39504646192449 68.9668435355597 2660.293165938105 -18.37680368418342 76.75321548689986 2660.739766913825 -19.42505208668763 76.604479048388 2707.971996553679 -19.42505208668763 76.604479048388 2707.971996553679 -18.37680368418342 76.75321548689986 2660.739766913825 -2.02171095525182 89.19788518402237 2661.141932465142 -3.069959357752168 89.04914874550454 2708.374162105114 -3.069959357752168 89.04914874550454 2708.374162105114 -2.02171095525182 89.19788518402237 2661.141932465142 9.507410775929202 105.3040325122687 2708.704485314211 10.555659178415 105.4527689507769 2661.472255674329 10.555659178415 105.4527689507769 2661.472255674329 9.507410775929202 105.3040325122687 2708.704485314211 17.4499313227268 124.2613868774068 2708.940455200211 18.49817972521737 124.4101233159148 2661.708225560325 18.49817972521737 124.4101233159148 2661.708225560325 17.4499313227268 124.2613868774068 2708.940455200211 20.21633263672356 144.6292994765607 2709.06599080561 21.26458103921414 144.7780359150649 2661.833761165673 21.26458103921414 144.7780359150649 2661.833761165673 20.21633263672356 144.6292994765607 2709.06599080561 17.61808903898805 165.0197307230441 2709.072537086093 18.66633744147521 165.1684671615629 2661.840307446135 18.66633744147521 165.1684671615629 2661.840307446135 17.61808903898805 165.0197307230441 2709.072537086093 9.832266536890529 184.0431064242169 2708.95964792349 10.88051493937405 184.1918428627242 2661.727418283623 10.88051493937405 184.1918428627242 2661.727418283623 9.832266536890529 184.0431064242169 2708.95964792349 -2.610543932717746 200.4030149636404 2708.735016527806 -1.562295530230131 200.5517514021393 2661.502786887897 -1.562295530230131 200.5517514021393 2661.502786887897 -2.610543932717746 200.4030149636404 2708.735016527806 -18.8623853990639 212.9845556103841 2708.413951157287 -17.81413699657469 213.1332920488907 2661.181721517429 -18.8623853990639 212.9845556103841 2708.413951157287 -17.81413699657469 213.1332920488907 2661.181721517429 -37.81572172364145 220.9303171613429 2708.018331886507 -36.76747332115178 221.0790535998564 2660.786102246526 -37.81572172364145 220.9303171613429 2708.018331886507 -36.76747332115178 221.0790535998564 2660.786102246526 -58.1789143578103 223.6988090978278 2707.57511951477 -57.13066595531677 223.8475455363305 2660.342889874888 -58.1789143578103 223.6988090978278 2707.57511951477 -57.13066595531677 223.8475455363305 2660.342889874888 -78.56424537532053 221.1013632695122 2707.114518233086 -77.51599697280858 221.2500997080088 2659.882288593111 -78.56424537532053 221.1013632695122 2707.114518233086 -77.51599697280858 221.2500997080088 2659.882288593111 -97.58248815565707 213.3149913171026 2706.667917257186 -96.53423975315695 213.4637277556046 2659.435687617261 -97.58248815565707 213.3149913171026 2706.667917257186 -96.53423975315695 213.4637277556046 2659.435687617261 -113.9375808824989 200.8703216215703 2706.265751705903 -112.8893324799951 201.0190580600807 2659.033522066024 -113.9375808824989 200.8703216215703 2706.265751705903 -112.8893324799951 201.0190580600807 2659.033522066024 -125.4667026120585 184.7641742953988 2658.703198856872 -126.5149510145641 184.6154378568943 2705.935428496827 -125.4667026120585 184.7641742953988 2658.703198856872 -126.5149510145641 184.6154378568943 2705.935428496827 -133.4092231599539 165.8068199276598 2658.467228970805 -134.4574715624506 165.6580834891462 2705.699458610725 -133.4092231599539 165.8068199276598 2658.467228970805 -134.4574715624506 165.6580834891462 2705.699458610725 -136.1756244739499 145.4389073285053 2658.34169336551 -137.2238728764494 145.2901708900013 2705.573923005371 -136.1756244739499 145.4389073285053 2658.34169336551 -137.2238728764494 145.2901708900013 2705.573923005371 -133.577380876211 125.0484760820182 2658.335147085079 -134.625629278707 124.899739643506 2705.567376724956 -133.577380876211 125.0484760820182 2658.335147085079 -134.625629278707 124.899739643506 2705.567376724956</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10387\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10384\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10388\">0.5034455859493398 0.8639152194157885 0.01389372699802764 0.2627382146292257 0.9648263911121908 0.0088693622585071 0.5034455859493462 0.863915219415785 0.01389372699802777 0.2627382146294993 0.9648263911121164 0.008869362258512935 -0.2627382146294993 -0.9648263911121164 -0.008869362258512935 -0.5034455859493398 -0.8639152194157885 -0.01389372699802764 -0.2627382146292257 -0.9648263911121908 -0.0088693622585071 -0.5034455859493462 -0.863915219415785 -0.01389372699802777 0.7098439725698406 0.7041296532037304 0.01797125720314404 0.7098439725697724 0.7041296532037993 0.01797125720314275 -0.7098439725698406 -0.7041296532037304 -0.01797125720314404 -0.7098439725697724 -0.7041296532037993 -0.01797125720314275 0.004125668178042909 0.9999862387051475 0.003240565138449552 0.004125668177763195 0.9999862387051486 0.003240565138443347 -0.004125668177763195 -0.9999862387051486 -0.003240565138443347 -0.004125668178042909 -0.9999862387051475 -0.003240565138449552 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 -0.02218792451944515 -0.003148254615154722 0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.02218792451944515 0.003148254615154722 -0.9997488607137283 0.8678676655324781 0.4963588147549318 0.02082407592874472 0.8678676655322671 0.4963588147553004 0.0208240759287412 -0.8678676655322671 -0.4963588147553004 -0.0208240759287412 -0.8678676655324781 -0.4963588147549318 -0.02082407592874472 -0.2547680357414769 0.9669986766858644 -0.002609071140531963 -0.2547680357417223 0.9669986766858 -0.002609071140537611 0.2547680357417223 -0.9669986766858 0.002609071140537611 0.2547680357414769 -0.9669986766858644 0.002609071140531963 -0.4962997190498412 0.8681117528911384 -0.00828090353305499 -0.4962997190497542 0.8681117528911883 -0.008280903533052905 0.4962997190497542 -0.8681117528911883 0.008280903533052905 0.4962997190498412 -0.8681117528911384 0.00828090353305499 -0.7040093966787329 0.7100644477594262 -0.01338840603461564 -0.7040093966787387 0.7100644477594204 -0.01338840603461579 0.7040093966787387 -0.7100644477594204 0.01338840603461579 0.7040093966787329 -0.7100644477594262 0.01338840603461564 -0.8637419973543002 0.5036274239501807 -0.01758351079020075 -0.8637419973544517 0.5036274239499207 -0.01758351079020493 0.8637419973544517 -0.5036274239499207 0.01758351079020493 0.8637419973543002 -0.5036274239501807 0.01758351079020075 -0.96461200831157 0.2628690234820184 -0.02058032834358087 -0.9646120083115718 0.2628690234820119 -0.02058032834358093 0.9646120083115718 -0.2628690234820119 0.02058032834358093 0.96461200831157 -0.2628690234820184 0.02058032834358087 -0.9997453049990315 0.004196533475115891 -0.02217463053098833 -0.9997453049990303 0.004196533475390127 -0.02217463053098744 0.9997453049990303 -0.004196533475390127 0.02217463053098744 0.9997453049990315 -0.004196533475115891 0.02217463053098833 -0.966747611308057 -0.254761943352577 -0.02225776829298206 -0.9667476113080435 -0.2547619433526284 -0.02225776829298192 0.9667476113080435 0.2547619433526284 0.02225776829298192 0.966747611308057 0.254761943352577 0.02225776829298206 -0.8678676655324166 -0.4963588147550486 -0.02082407592852835 -0.8678676655324316 -0.496358814755022 -0.0208240759285286 0.8678676655324316 0.496358814755022 0.0208240759285286 0.8678676655324166 0.4963588147550486 0.02082407592852835 -0.7098439725698791 -0.7041296532036959 -0.01797125720297767 -0.7098439725698797 -0.7041296532036955 -0.01797125720297768 0.7098439725698797 0.7041296532036955 0.01797125720297768 0.7098439725698791 0.7041296532036959 0.01797125720297767 -0.5034455859492013 -0.8639152194158706 -0.01389372699794995 -0.5034455859491094 -0.8639152194159243 -0.01389372699794808 0.5034455859492013 0.8639152194158706 0.01389372699794995 0.5034455859491094 0.8639152194159243 0.01389372699794808 -0.2627382146293518 -0.964826391112157 -0.008869362258467291 -0.2627382146292002 -0.9648263911121983 -0.008869362258464058 0.2627382146293518 0.964826391112157 0.008869362258467291 0.2627382146292002 0.9648263911121983 0.008869362258464058 -0.004125668177794377 -0.9999862387051488 -0.003240565138333852 -0.004125668178051092 -0.9999862387051478 -0.003240565138339546 0.004125668177794377 0.9999862387051488 0.003240565138333852 0.004125668178051092 0.9999862387051478 0.003240565138339546 0.2547680357417342 -0.9669986766857964 0.002609071140685928 0.2547680357416989 -0.9669986766858058 0.002609071140685116 -0.2547680357417342 0.9669986766857964 -0.002609071140685928 -0.2547680357416989 0.9669986766858058 -0.002609071140685116 0.4962997190495938 -0.8681117528912791 0.008280903533128926 0.4962997190497375 -0.868111752891197 0.008280903533132376 -0.4962997190495938 0.8681117528912791 -0.008280903533128926 -0.4962997190497375 0.868111752891197 -0.008280903533132376 0.704009396678743 -0.7100644477594149 0.01338840603468936 0.7040093966786044 -0.7100644477595522 0.01338840603468585 -0.704009396678743 0.7100644477594149 -0.01338840603468936 -0.7040093966786044 0.7100644477595522 -0.01338840603468585 0.863741997354355 -0.5036274239500803 0.0175835107903785 0.863741997354377 -0.5036274239500428 0.01758351079037911 -0.863741997354355 0.5036274239500803 -0.0175835107903785 -0.863741997354377 0.5036274239500428 -0.01758351079037911 0.9646120083115305 -0.2628690234821501 0.02058032834375166 0.9646120083115333 -0.2628690234821402 0.02058032834375175 -0.9646120083115305 0.2628690234821501 -0.02058032834375166 -0.9646120083115333 0.2628690234821402 -0.02058032834375175 0.9997453049990276 -0.004196533475328055 0.02217463053112453 0.9997453049990279 -0.004196533475201878 0.02217463053112494 -0.9997453049990276 0.004196533475328055 -0.02217463053112453 -0.9997453049990279 0.004196533475201878 -0.02217463053112494 0.9667476113080307 0.254761943352661 0.02225776829317202 0.9667476113080051 0.2547619433527578 0.02225776829317176 -0.9667476113080307 -0.254761943352661 -0.02225776829317202 -0.9667476113080051 -0.2547619433527578 -0.02225776829317176</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10388\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10386\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10389\">27.07269889557622 240.2014731340439 27.45335270782858 240.2014731209589 27.07269886549857 239.3265824953762 27.45335267775089 239.3265824822899 23.62390209570332 240.2014731274807 24.00455590795551 240.201473112377 23.62390206099158 239.3265824888117 24.00455587324388 239.3265824737086 28.66356554134335 240.20147329833 29.04421935359563 240.2014732881517 28.66356551794961 239.3265826596614 29.04421933020178 239.326582649484 -3.219396586210626 28.03687606673043 -3.037358722775609 28.09243277174676 -1.973816882161842 28.24468510397574 -2.875902782462551 28.19321129393218 -2.746031720785402 28.33234374354432 -1.888006054516885 28.61554063735913 -2.656596035975097 28.50034847406933 -2.613690622152165 28.68577624076269 -1.901103634940817 28.99596905134684 -2.62023941236414 28.87599044775829 -2.675796117380321 29.05802831119338 -2.776574639565824 29.21948425150629 -2.012217044972194 29.36004477821322 -2.915707089177908 29.34935531318362 -3.083711819702719 29.43879099799406 -3.269139586396296 29.48169641181675 -2.213774089341124 29.68295665883628 -3.459353793392003 29.47514762160488 -2.492038988562646 29.94269878218825 -4.704933497440736 29.26733858435971 -4.526062127821842 29.60334804540637 -2.828048449609321 30.12157015180695 -4.266320004469918 29.88161294462791 -3.19890398299268 30.20738097945209 -3.943408123846962 30.08316998899687 -3.579332396980516 30.19428339902823 -3.099417982622204 27.31774028930719 -3.479846396609966 27.30464270888338 -2.735342255755554 27.42885369933858 -2.41243037513272 27.63041074370761 -3.850701929942429 27.39045353651667 -2.1526882517808 27.90867564292899 -4.186711391031944 27.56932490615817 -4.464976290289191 27.82906702954338 -3.409610793206266 28.03032727651869 -3.595038559849037 28.0732326903297 -3.763043290416812 28.16266837516274 -4.666533334630543 28.15197891012214 -3.902175740064419 28.29253943687322 -4.002954262222371 28.45399537714186 -4.058510967238407 28.63603324057702 -4.777646744661811 28.51605463698864 -4.065059757450433 28.82624744757271 -4.022154343627581 29.01167521426615 -4.790744325085713 28.89648305097628 -3.932718658817289 29.17967994479107 -3.802847597140006 29.31881239440314 -3.641391656827056 29.41959091658874 18.93285871950586 239.3265826258399 18.55220490725366 239.3265826419281 18.93285875648612 240.2014732645081 18.55220494423377 240.2014732805965 28.28808710012578 240.2014735760252 28.66874091237806 240.2014735694471 28.28808708501013 239.3265829373571 28.66874089726234 239.3265829307784 25.97185180724021 240.201473892362 26.35250561944014 240.2014738898363 25.97185180143243 239.3265832536949 26.35250561363262 239.3265832511682 21.87270726998137 240.2014741621797 22.25336108228242 240.2014741638735 21.87270727387756 239.3265835235104 22.25336108617858 239.3265835252064 16.27000342783941 239.3265836740794 16.27000341450455 240.2014743127471 16.65065724014015 239.3265836798805 16.65065722680558 240.2014743185499 9.545555271631798 239.3265836646478 9.545555249767354 240.2014743033155 9.926209083831827 239.3265836741621 9.926209061967349 240.2014743128297 2.157622834259712 239.3265834973755 2.157622805355569 240.2014741360441 2.538276646512002 239.3265835099505 2.538276617607935 240.2014741486182 -5.390318497749632 239.3265832167799 -5.390318531723348 240.2014738554489 -5.009664685497238 239.3265832315618 -5.00966471947123 240.2014738702304 -12.58388899618254 239.3265828978171 -12.58388903291101 240.2014735364845 -12.20323518393031 239.3265829137964 -12.2032352206586 240.2014735524654 -18.93285871950216 239.326582625835 -18.93285875648237 240.2014732645031 -18.55220490725007 239.3265826419247 -18.55220494423012 240.2014732805921 -23.6239020957046 240.2014731274781 -23.62390206099297 239.32658248881 -24.00455590795696 240.2014731123748 -24.00455587324538 239.3265824737076 -27.07269889557751 240.2014731340428 -27.0726988655 239.3265824953757 -27.45335270782968 240.2014731209574 -27.45335267775226 239.326582482288 -28.66356554134261 240.2014732983324 -28.66356551794897 239.3265826596629 -29.04421935359499 240.2014732881527 -29.04421933020122 239.3265826494851 -28.28808710012538 240.2014735760249 -28.28808708500967 239.3265829373573 -28.6687409123778 240.2014735694507 -28.66874089726181 239.3265829307813 -25.97185180718934 240.2014738923658 -25.97185180138158 239.3265832536965 -26.35250561944157 240.2014738898369 -26.35250561363395 239.3265832511685 -21.87270726997772 240.201474162178 -21.87270727387407 239.3265835235096 -22.25336108223011 240.2014741638737 -22.2533610861263 239.3265835252061 -16.27000342789604 239.3265836740825 -16.65065724014825 239.3265836798835 -16.27000341456142 240.2014743127501 -16.65065722681355 240.2014743185525 -9.545555271632409 239.3265836646543 -9.926209083884697 239.3265836741678 -9.545555249767995 240.2014743033233 -9.92620906202038 240.2014743128361 -2.157622834258351 239.3265834973808 -2.538276646510715 239.3265835099568 -2.157622805354397 240.2014741360491 -2.538276617606599 240.2014741486241 5.390318497754439 239.3265832167844 5.009664685502244 239.3265832315668 5.390318531728455 240.2014738554517 5.009664719476101 240.2014738702344 12.58388899617764 239.3265828978235 12.20323518392535 239.3265829138028 12.58388903290612 240.201473536491 12.20323522065397 240.2014735524709</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID10389\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10385\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10383\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10384\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10385\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 2 9 2 8 0 3 12 1 12 3 13 16 17 18 17 16 19 17 19 20 20 19 21 21 19 22 22 19 23 22 23 24 24 23 25 25 23 26 25 26 27 27 26 28 28 26 29 29 26 30 29 30 31 31 30 32 32 30 33 33 30 34 33 34 35 35 34 36 36 34 37 36 37 38 38 37 39 38 39 40 40 39 41 42 43 44 43 42 45 43 45 46 46 45 47 46 47 48 48 47 16 48 16 18 48 18 49 49 18 50 49 50 51 51 50 52 51 52 53 51 53 54 51 54 55 55 54 56 55 56 57 55 57 58 55 58 59 59 58 60 59 60 61 59 61 35 35 61 62 35 62 63 35 63 33 9 112 8 112 9 113 13 116 12 116 13 117 117 120 116 120 117 121 121 124 120 124 121 125 128 124 125 124 128 129 132 129 128 129 132 133 136 133 132 133 136 137 140 137 136 137 140 141 144 141 140 141 144 145 148 145 144 145 148 149 149 152 153 152 149 148 153 156 157 156 153 152 157 160 161 160 157 156 161 164 165 164 161 160 165 168 169 168 165 164 169 172 173 172 169 168 176 172 177 172 176 173 180 177 181 177 180 176 184 181 185 181 184 180 188 185 189 185 188 184 113 189 112 189 113 188</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10385\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10386\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 5 4 10 5 7 6 11 7 7 6 10 5 14 8 4 9 15 10 6 11 15 10 4 9 64 12 65 13 66 14 65 13 67 15 66 14 67 15 68 16 66 14 66 14 68 16 69 17 68 16 70 18 69 17 70 18 71 19 69 17 69 17 71 19 72 20 71 19 73 21 72 20 73 21 74 22 72 20 74 22 75 23 72 20 72 20 75 23 76 24 75 23 77 25 76 24 77 25 78 26 76 24 78 26 79 27 76 24 76 24 79 27 80 28 79 27 81 29 80 28 80 28 81 29 82 30 81 29 83 31 82 30 83 31 84 32 82 30 82 30 84 32 85 33 84 32 86 34 85 33 85 33 86 34 87 35 86 34 88 36 87 35 89 37 87 35 88 36 90 38 91 39 92 40 92 40 91 39 93 41 91 39 94 42 93 41 93 41 94 42 95 43 94 42 96 44 95 43 95 43 96 44 66 14 66 14 96 44 64 12 96 44 97 45 64 12 64 12 97 45 98 46 98 46 97 45 99 47 99 47 97 45 100 48 97 45 101 49 100 48 100 48 101 49 102 50 102 50 101 49 103 51 103 51 101 49 104 52 101 49 105 53 104 52 104 52 105 53 106 54 106 54 105 53 107 55 105 53 108 56 107 55 107 55 108 56 109 57 109 57 108 56 110 58 110 58 108 56 111 59 108 56 83 31 111 59 81 29 111 59 83 31 114 60 11 61 115 62 10 63 115 62 11 61 118 64 14 65 119 66 15 67 119 66 14 65 122 68 118 69 123 70 119 71 123 70 118 69 126 72 122 73 127 74 123 75 127 74 122 73 130 76 131 77 127 78 126 79 127 78 131 77 134 80 135 81 130 82 131 83 130 82 135 81 138 84 139 85 134 86 135 87 134 86 139 85 142 88 143 89 138 90 139 91 138 90 143 89 146 92 147 93 142 94 143 95 142 94 147 93 150 96 151 97 146 98 147 99 146 98 151 97 151 100 150 101 154 102 155 103 154 102 150 101 154 104 155 105 158 106 159 107 158 106 155 105 158 108 159 109 162 110 163 111 162 110 159 109 162 112 163 113 166 114 167 115 166 114 163 113 166 116 167 117 170 118 171 119 170 118 167 117 170 120 171 121 174 122 175 123 174 122 171 121 175 124 178 125 174 126 179 127 174 126 178 125 178 128 182 129 179 130 183 131 179 130 182 129 182 132 186 133 183 134 187 135 183 134 186 133 186 136 190 137 187 138 191 139 187 138 190 137 190 140 114 141 191 142 115 143 191 142 114 141</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10390\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10396\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10400\">-193.8314834426526 267.5123143373498 -9.366385524306679 -202.4465802455704 215.0275530485569 -650.7572119914439 -216.6662300176797 213.009920530466 -10.04479894687393 -179.6118336705615 269.5299468554365 -650.0787985689258 -179.6118336705615 269.5299468554365 -650.0787985689258 -193.8314834426526 267.5123143373498 -9.366385524306679 -202.4465802455704 215.0275530485569 -650.7572119914439 -216.6662300176797 213.009920530466 -10.04479894687393 -157.6715443132071 314.2451051604898 -8.416706298045028 -143.4518945411242 316.262737678578 -649.1291193426769 -143.4518945411242 316.262737678578 -649.1291193426769 -157.6715443132071 314.2451051604898 -8.416706298045028 -210.3999840232673 156.4698043264112 -651.1181268566306 -224.6196337953745 154.452171808305 -10.40571381214068 -210.3999840232673 156.4698043264112 -651.1181268566306 -224.6196337953745 154.452171808305 -10.40571381214068 -96.43100295178147 352.0411630529547 -647.9728933826773 -110.6506527238614 350.0235305348859 -7.260480338129128 -110.6506527238614 350.0235305348859 -7.260480338129128 -96.43100295178147 352.0411630529547 -647.9728933826773 -202.9300336798124 97.84731449315042 -651.1369474130825 -217.1496834519257 95.8296819750537 -10.42453436848155 -202.9300336798124 97.84731449315042 -651.1369474130825 -217.1496834519257 95.8296819750537 -10.42453436848155 -41.75355495867302 374.4269824159743 -646.688915577377 -55.97320473074842 372.4093498978997 -5.976502532748782 -55.97320473074842 372.4093498978997 -5.976502532748782 -41.75355495867302 374.4269824159743 -646.688915577377 -180.5457939864498 43.15510935268787 -650.8123910706563 -194.765443758542 41.13747683457429 -10.09997802615544 -180.5457939864498 43.15510935268787 -650.8123910706563 -194.765443758542 41.13747683457429 -10.09997802615544 16.85427171623269 381.8946391723427 -645.3646868921696 2.634621944164792 379.8770066542781 -4.65227384755417 2.634621944164792 379.8770066542781 -4.65227384755417 16.85427171623269 381.8946391723427 -645.3646868921696 -144.7727138865596 -3.879627697816602 -650.1665758080289 -158.9923636586598 -5.8972602159524 -9.454162763417116 -144.7727138865596 -3.879627697816602 -650.1665758080289 -158.9923636586598 -5.8972602159524 -9.454162763417116 75.39845053904014 373.9352248550077 -644.090451323571 61.1788007669827 371.917592336939 -3.378038279053726 61.1788007669827 371.917592336939 -3.378038279053726 75.39845053904014 373.9352248550077 -644.090451323571 -98.04866967114776 -40.05155705694695 -649.2435128679226 -112.2683194432423 -42.06918957508937 -8.531099823343538 -112.2683194432423 -42.06918957508937 -8.531099823343538 -98.04866967114776 -40.05155705694695 -649.2435128679226 129.8892924718321 351.0911603961364 -642.9530459199177 115.6696426997778 349.0735278780689 -2.240632875395022 115.6696426997778 349.0735278780689 -2.240632875395022 129.8892924718321 351.0911603961364 -642.9530459199177 -43.55782773835927 -62.89562151582474 -648.1061074642821 -57.7774775104333 -64.91325403395281 -7.393694419704843 -57.7774775104333 -64.91325403395281 -7.393694419704843 -43.55782773835927 -62.89562151582474 -648.1061074642821 176.6133366872437 314.9192310370118 -642.0299829798169 162.3936869151933 312.9015985189387 -1.317569935285064 162.3936869151933 312.9015985189387 -1.317569935285064 176.6133366872437 314.9192310370118 -642.0299829798169 14.98635108445433 -70.85503583315624 -646.8318718957635 0.7667013123934794 -72.8726683512994 -6.119458851182571 0.7667013123934794 -72.8726683512994 -6.119458851182571 14.98635108445433 -70.85503583315624 -646.8318718957635 212.3864167871266 267.884493986497 -641.3841677171313 198.1667670150891 265.8668614684178 -0.6717546726158616 212.3864167871266 267.884493986497 -641.3841677171313 198.1667670150891 265.8668614684178 -0.6717546726158616 73.5941777593564 -63.38737907678187 -645.5076432105343 59.37452798730215 -65.40501159492168 -4.795230165978865 59.37452798730215 -65.40501159492168 -4.795230165978865 73.5941777593564 -63.38737907678187 -645.5076432105343 234.7706564804939 213.1922888460357 -641.0596113748434 220.551006708462 211.1746563279395 -0.3471983302588342 234.7706564804939 213.1922888460357 -641.0596113748434 220.551006708462 211.1746563279395 -0.3471983302588342 128.2716257505153 -41.0015597145712 -644.2236654051994 114.0519759783326 -43.01919223275066 -3.511252360594881 114.0519759783326 -43.01919223275066 -3.511252360594881 128.2716257505153 -41.0015597145712 -644.2236654051994 242.2406068239491 154.5697990127763 -641.0784319311169 228.0209570519162 152.5521664946728 -0.3660188866160752 242.2406068239491 154.5697990127763 -641.0784319311169 228.0209570519162 152.5521664946728 -0.3660188866160752 175.292517341408 -5.223134338996118 -643.0674394451053 161.0728675693458 -7.240766857098052 -2.355026400509814 161.0728675693458 -7.240766857098052 -2.355026400509814 175.292517341408 -5.223134338996118 -643.0674394451053 234.2872030462522 96.01205029063073 -641.4393467964565 220.0675532742193 93.99441777251464 -0.7269337518318935 234.2872030462522 96.01205029063073 -641.4393467964565 220.0675532742193 93.99441777251464 -0.7269337518318935 197.2328067000708 39.4920239677017 -1.405347174384588 211.4524564720541 41.50965648569378 -642.1177602188891 211.4524564720541 41.50965648569378 -642.1177602188891 197.2328067000708 39.4920239677017 -1.405347174384588</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10400\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10397\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10401\">-0.8637419973543506 0.5036274239500898 -0.01758351079032767 -0.9646120083115517 0.2628690234820716 -0.02058032834376129 -0.9646120083115579 0.2628690234820481 -0.02058032834376151 -0.8637419973544124 0.5036274239499836 -0.01758351079032938 0.8637419973544124 -0.5036274239499836 0.01758351079032938 0.8637419973543506 -0.5036274239500898 0.01758351079032767 0.9646120083115517 -0.2628690234820716 0.02058032834376129 0.9646120083115579 -0.2628690234820481 0.02058032834376151 -0.704009396678637 0.7100644477595201 -0.0133884060346735 -0.7040093966786726 0.7100644477594849 -0.0133884060346744 0.7040093966786726 -0.7100644477594849 0.0133884060346744 0.704009396678637 -0.7100644477595201 0.0133884060346735 -0.9997453049990267 0.004196533475306198 -0.02217463053116517 -0.9997453049990268 0.004196533475309909 -0.02217463053116516 0.9997453049990267 -0.004196533475306198 0.02217463053116517 0.9997453049990268 -0.004196533475309909 0.02217463053116516 -0.4962997190497146 0.8681117528912098 -0.00828090353315322 -0.4962997190498128 0.8681117528911536 -0.008280903533155578 0.4962997190498128 -0.8681117528911536 0.008280903533155578 0.4962997190497146 -0.8681117528912098 0.00828090353315322 -0.9667476113080394 -0.2547619433526274 -0.02225776829317008 -0.9667476113080435 -0.2547619433526118 -0.02225776829317013 0.9667476113080394 0.2547619433526274 0.02225776829317008 0.9667476113080435 0.2547619433526118 0.02225776829317013 -0.2547680357417208 0.9669986766858 -0.002609071140692379 -0.2547680357417962 0.96699867668578 -0.002609071140694115 0.2547680357417962 -0.96699867668578 0.002609071140694115 0.2547680357417208 -0.9669986766858 0.002609071140692379 -0.8678676655323934 -0.4963588147550815 -0.02082407592870684 -0.8678676655323755 -0.4963588147551128 -0.02082407592870654 0.8678676655323934 0.4963588147550815 0.02082407592870684 0.8678676655323755 0.4963588147551128 0.02082407592870654 0.004125668177954076 0.9999862387051484 0.003240565138312943 0.004125668177962268 0.9999862387051482 0.003240565138313124 -0.004125668177962268 -0.9999862387051482 -0.003240565138313124 -0.004125668177954076 -0.9999862387051484 -0.003240565138312943 -0.7098439725697955 -0.7041296532037765 -0.01797125720312786 -0.7098439725698321 -0.7041296532037393 -0.01797125720312855 0.7098439725697955 0.7041296532037765 0.01797125720312786 0.7098439725698321 0.7041296532037393 0.01797125720312855 0.26273821462938 0.9648263911121495 0.008869362258430281 0.2627382146294342 0.9648263911121349 0.008869362258431438 -0.2627382146294342 -0.9648263911121349 -0.008869362258431438 -0.26273821462938 -0.9648263911121495 -0.008869362258430281 -0.5034455859492077 -0.8639152194158649 -0.01389372699805632 -0.5034455859492449 -0.8639152194158434 -0.01389372699805708 0.5034455859492449 0.8639152194158434 0.01389372699805708 0.5034455859492077 0.8639152194158649 0.01389372699805632 0.5034455859492367 0.8639152194158501 0.01389372699794295 0.5034455859492378 0.8639152194158494 0.01389372699794298 -0.5034455859492378 -0.8639152194158494 -0.01389372699794298 -0.5034455859492367 -0.8639152194158501 -0.01389372699794295 -0.26273821462937 -0.9648263911121514 -0.008869362258534762 -0.2627382146293782 -0.9648263911121492 -0.008869362258534939 0.2627382146293782 0.9648263911121492 0.008869362258534939 0.26273821462937 0.9648263911121514 0.008869362258534762 0.7098439725698267 0.7041296532037481 0.01797125720300888 0.7098439725697981 0.7041296532037771 0.01797125720300834 -0.7098439725697981 -0.7041296532037771 -0.01797125720300834 -0.7098439725698267 -0.7041296532037481 -0.01797125720300888 -0.004125668178001704 -0.9999862387051477 -0.003240565138420735 -0.004125668178011243 -0.9999862387051477 -0.003240565138420947 0.004125668178011243 0.9999862387051477 0.003240565138420947 0.004125668178001704 0.9999862387051477 0.003240565138420735 0.8678676655324098 0.4963588147550576 0.02082407592859447 0.8678676655323858 0.4963588147550997 0.02082407592859408 -0.8678676655324098 -0.4963588147550576 -0.02082407592859447 -0.8678676655323858 -0.4963588147550997 -0.02082407592859408 0.2547680357417617 -0.9669986766857893 0.002609071140586085 0.2547680357417992 -0.9669986766857794 0.002609071140586948 -0.2547680357417992 0.9669986766857794 -0.002609071140586948 -0.2547680357417617 0.9669986766857893 -0.002609071140586085 0.966747611308035 0.2547619433526546 0.0222577682930561 0.966747611308042 0.2547619433526279 0.02225776829305618 -0.966747611308035 -0.2547619433526546 -0.0222577682930561 -0.966747611308042 -0.2547619433526279 -0.02225776829305618 0.496299719049736 -0.8681117528911981 0.008280903533080034 0.4962997190498009 -0.8681117528911609 0.008280903533081594 -0.4962997190498009 0.8681117528911609 -0.008280903533081594 -0.496299719049736 0.8681117528911981 -0.008280903533080034 0.9997453049990295 -0.004196533475311227 0.02217463053104029 0.9997453049990294 -0.004196533475349216 0.02217463053104017 -0.9997453049990295 0.004196533475311227 -0.02217463053104029 -0.9997453049990294 0.004196533475349216 -0.02217463053104017 0.7040093966786077 -0.7100644477595501 0.0133884060346321 0.7040093966786188 -0.710064447759539 0.01338840603463238 -0.7040093966786188 0.710064447759539 -0.01338840603463238 -0.7040093966786077 0.7100644477595501 -0.0133884060346321 0.9646120083115628 -0.2628690234820406 0.02058032834364066 0.9646120083115658 -0.2628690234820294 0.02058032834364076 -0.9646120083115628 0.2628690234820406 -0.02058032834364066 -0.9646120083115658 0.2628690234820294 -0.02058032834364076 0.8637419973543966 -0.5036274239500135 0.0175835107902538 0.8637419973544187 -0.5036274239499754 0.01758351079025441 -0.8637419973544187 0.5036274239499754 -0.01758351079025441 -0.8637419973543966 0.5036274239500135 -0.0175835107902538</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10401\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10399\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10402\">-0.8731640122066812 4.078622140481843 -0.378586927416986 -0.002221902078644256 -0.3785921589926479 4.078622507537573 -0.8731587806309226 -0.002222269134684041 -1.367735865421763 4.078621773425582 -0.8731587806320283 -0.002222269135351063 -0.8731640122077932 4.078622140481067 -1.367730633845965 -0.002222636190915672 -0.3785921589938515 4.078622507536698 0.1159849257957577 -0.002221535022903787 0.1159796942202089 4.078622874592615 -0.3785869274181744 -0.002221902079329929 -1.36773586542033 4.078621773426204 -1.862302487058446 -0.002223003246272448 -1.367730633844501 -0.002222636190322369 -1.862307718634379 4.07862140636972 0.1159796942216789 4.078622874595904 0.6105567790112132 -0.002221167964396642 0.6105515474355894 4.078623241651997 0.1159849257972172 -0.002221535019783616 -1.862307718635483 4.078621406370592 -2.356874340273519 -0.002223370301979166 -1.86230248705956 -0.002223003245450883 -2.356879571849473 4.078621039314572 0.610551547434619 4.07862324164979 1.105128632224126 -0.002220800910131437 1.105123400648666 4.078623608705599 0.6105567790102713 -0.002221167966580673 -2.356879571849368 4.078621039315657 -2.851446193487371 -0.002223737356880307 -2.356874340273401 -0.002223370300856509 -2.851451425063408 4.07862067225955 1.105123400649617 4.078623608705632 1.599700485438986 -0.00222043385447801 1.599695253863657 4.078623975761936 1.105128632225065 -0.002220800910074594 -2.851451425062708 4.078620672258851 -3.346018046700566 -0.002224104413174111 -2.851446193486682 -0.002223737357592626 -3.346023278276666 4.078620305202642 -9.775452124820607 -0.00222886165061631 -10.27002920874278 4.078615173740881 -10.27002397716572 -0.002229228706558395 -9.77545735639759 4.078615540796613 -3.346023278277091 4.078620305202275 -3.840589899914988 -0.002224471469395084 -3.346018046700999 -0.002224104413517836 -3.840595131491101 4.078619938146432 -9.280879862798811 -0.002228508984139843 -9.775456928590028 4.07861536230281 -9.775451697013253 -0.002228861552634243 -9.280885094375474 4.078615714871289 -3.840595131490879 4.078619938146802 -4.33516175312867 -0.002224838525158646 -3.840589899914764 -0.00222447146898741 -4.33516698470484 4.078619571090687 -8.786308432051673 -0.002228142029649938 -9.280885516842449 4.078615900530592 -9.280880285265573 -0.002228509085616892 -8.786313663628421 4.07861626758658 -4.829733606343388 -0.002225205581509293 -4.335166984705611 4.07861957109033 -4.82973883791967 4.07861920403422 -4.335161753129435 -0.002224838525505035 -8.291736578838092 -0.002227774974647545 -8.7863136636288 4.078616267585428 -8.786308432052042 -0.002228142030808122 -8.291741810414797 4.078616634641426 -5.324305459556421 -0.002225572638183238 -4.829738837918846 4.078619204034009 -5.324310691132856 4.078618836978034 -4.829733606342564 -0.002225205581768641 -7.797164725641561 -0.002227407918423907 -8.291741810414582 4.078616634641676 -8.291736578837877 -0.002227774974444152 -7.797169957219376 4.078617001698028 -5.818877312770672 -0.002225939691926193 -5.324310691133129 4.078618836979822 -5.818882544347172 4.07861846992382 -5.324305459556689 -0.00222557263645573 -7.302592872412049 -0.002227040861296104 -7.797169957220212 4.078617001698684 -7.797164725642404 -0.002227407917732016 -7.302598103988664 4.078617368755045 -6.313449165984387 -0.002226306750532814 -5.818882544346932 4.078618469921693 -6.313454397560975 4.078618102865931 -5.818877312770441 -0.002225939693981438 -7.302592872410337 -0.002227040862579521 -6.808026250755469 4.07861773580917 -7.302598103986954 4.078617368753712 -6.80802101917997 -0.002226673806529078 -6.808021019181119 -0.002226673805965085 -6.313454397561416 4.078618102866107 -6.808026250756607 4.078617735809746 -6.313449165984821 -0.002226306750376494</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10402\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10398\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10396\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10397\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10398\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10399\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 3 5 0 6 3 5 8 4 9 7 2 8 12 9 13 10 12 9 2 8 1 11 8 12 16 13 9 14 16 13 8 12 17 15 13 16 20 17 21 18 20 17 13 16 12 19 17 20 24 21 16 22 24 21 17 20 25 23 21 24 28 25 29 26 28 25 21 24 20 27 25 28 32 29 24 30 32 29 25 28 33 31 29 32 36 33 37 34 36 33 29 32 28 35 33 36 40 37 32 38 40 37 33 36 41 39 44 40 37 41 36 42 37 41 44 40 45 43 41 44 48 45 40 46 48 45 41 44 49 47 52 48 45 49 44 50 45 49 52 48 53 51 49 52 56 53 48 54 56 53 49 52 57 55 60 56 53 57 52 58 53 57 60 56 61 59 64 60 57 61 65 62 57 61 64 60 56 63 68 64 61 65 60 66 61 65 68 64 69 67 72 68 65 69 73 70 65 69 72 68 64 71 76 72 69 73 68 74 69 73 76 72 77 75 80 76 73 77 81 78 73 77 80 76 72 79 84 80 77 81 76 82 77 81 84 80 85 83 88 84 81 85 89 86 81 85 88 84 80 87 84 88 92 89 85 90 92 89 84 88 93 91 93 92 89 93 92 94 89 93 93 92 88 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10398\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 10 11 4 5 4 11 6 7 14 15 14 7 18 11 19 10 19 11 14 15 22 23 22 15 26 18 27 19 27 18 22 23 30 31 30 23 34 26 35 27 35 26 30 31 38 39 38 31 42 34 43 35 43 34 46 47 39 38 39 47 50 42 51 43 51 42 54 55 46 47 46 55 58 50 59 51 59 50 62 63 54 55 54 63 59 66 58 67 58 66 70 71 62 63 62 71 66 74 67 75 67 74 78 79 70 71 70 79 74 82 75 83 75 82 86 87 78 79 78 87 82 90 83 91 83 90 94 87 95 86 95 87 90 94 91 95 91 94</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10403\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10404\">\r\n\t\t\t\t\t<float_array count=\"408\" id=\"ID10408\">-298.924234216883 234.7022756702988 66.95785559400065 -308.0629427165598 154.8024336574379 -12.25650974624114 -309.8100233873847 154.5545395932489 66.46387298711852 -297.1771535460355 234.9501697344761 -11.76252713937174 -297.1771535460355 234.9501697344761 -11.76252713937174 -298.924234216883 234.7022756702988 66.95785559400065 -308.0629427165598 154.8024336574379 -12.25650974624114 -309.8100233873847 154.5545395932489 66.46387298711852 -216.4313837210279 373.51032678452 -9.534163809701568 -224.6196337953745 154.452171808305 -10.40571381214068 -265.9233351903504 309.5473591709786 -10.83398563757874 -216.6662300176797 213.009920530466 -10.04479894687393 -193.8314834426526 267.5123143373498 -9.366385524306679 -152.0740938414062 422.4801020360475 -7.951642365365842 -157.6715443132071 314.2451051604898 -8.416706298045028 -110.6506527238614 350.0235305348859 -7.260480338129128 -77.23730850132165 453.1194756685349 -6.194267525657779 -55.97320473074842 372.4093498978997 -5.976502532748782 2.978969051928516 463.3404250029005 -4.381801481611547 2.634621944164792 379.8770066542781 -4.65227384755417 61.1788007669827 371.917592336939 -3.378038279053726 83.10813206676926 452.4464092329197 -2.637760799181706 115.6696426997778 349.0735278780689 -2.240632875395022 157.6895105034205 421.1798375301052 -1.080998968520362 162.3936869151933 312.9015985189387 -1.317569935285064 221.6405066730001 371.6714750855467 0.182393264323764 198.1667670150891 265.8668614684178 -0.6717546726158616 220.551006708462 211.1746563279395 -0.3471983302588342 228.0209570519162 152.5521664946728 -0.3660188866160752 270.6029658705525 307.2952349834112 1.066317806460575 269.3246584477604 -2.543020865922642 0.06225293884745042 300.5784768025987 72.05416856850441 0.9907944405731541 301.2401774160664 232.4382515998948 1.510536661162405 311.4642659730985 152.2019046455503 1.484777047444368 -297.1771535460355 234.9501697344761 -11.76252713937174 -297.8388541595248 74.56608670309441 -12.28226935992643 -308.0629427165598 154.8024336574379 -12.25650974624114 -267.2016426140094 -0.290896680430123 -11.83805050521187 -218.2391834164566 -64.6671367825732 -10.9541259630023 -217.1496834519257 95.8296819750537 -10.42453436848155 -154.2881872468906 -114.1754992271232 -9.690733730240027 -194.765443758542 41.13747683457429 -10.09997802615544 -158.9923636586598 -5.8972602159524 -9.454162763417116 -112.2683194432423 -42.06918957508937 -8.531099823343538 -79.70680881021031 -145.4420709299367 -8.133971899569588 -57.7774775104333 -64.91325403395281 -7.393694419704843 0.4223542046240709 -156.3360866999209 -6.38993121695421 0.7667013123934794 -72.8726683512994 -6.119458851182571 80.63863175786969 -146.1151373655487 -4.577465173093515 59.37452798730215 -65.40501159492168 -4.795230165978865 114.0519759783326 -43.01919223275066 -3.511252360594881 155.4754170958795 -115.4757637339099 -2.820090333489134 161.0728675693458 -7.240766857098052 -2.355026400509814 219.8327069771649 -66.50598848112098 -1.237568889029717 197.2328067000708 39.4920239677017 -1.405347174384588 220.0675532742193 93.99441777251464 -0.7269337518318935 228.0209570519162 152.5521664946728 -0.3660188866160752 220.0675532742193 93.99441777251464 -0.7269337518318935 269.3246584477604 -2.543020865922642 0.06225293884745042 219.8327069771649 -66.50598848112098 -1.237568889029717 197.2328067000708 39.4920239677017 -1.405347174384588 161.0728675693458 -7.240766857098052 -2.355026400509814 155.4754170958795 -115.4757637339099 -2.820090333489134 114.0519759783326 -43.01919223275066 -3.511252360594881 80.63863175786969 -146.1151373655487 -4.577465173093515 59.37452798730215 -65.40501159492168 -4.795230165978865 0.7667013123934794 -72.8726683512994 -6.119458851182571 0.4223542046240709 -156.3360866999209 -6.38993121695421 -57.7774775104333 -64.91325403395281 -7.393694419704843 -79.70680881021031 -145.4420709299367 -8.133971899569588 -112.2683194432423 -42.06918957508937 -8.531099823343538 -154.2881872468906 -114.1754992271232 -9.690733730240027 -158.9923636586598 -5.8972602159524 -9.454162763417116 -194.765443758542 41.13747683457429 -10.09997802615544 -217.1496834519257 95.8296819750537 -10.42453436848155 -218.2391834164566 -64.6671367825732 -10.9541259630023 -224.6196337953745 154.452171808305 -10.40571381214068 -265.9233351903504 309.5473591709786 -10.83398563757874 -267.2016426140094 -0.290896680430123 -11.83805050521187 -297.1771535460355 234.9501697344761 -11.76252713937174 -297.8388541595248 74.56608670309441 -12.28226935992643 -308.0629427165598 154.8024336574379 -12.25650974624114 311.4642659730985 152.2019046455503 1.484777047444368 301.2401774160664 232.4382515998948 1.510536661162405 300.5784768025987 72.05416856850441 0.9907944405731541 270.6029658705525 307.2952349834112 1.066317806460575 221.6405066730001 371.6714750855467 0.182393264323764 220.551006708462 211.1746563279395 -0.3471983302588342 198.1667670150891 265.8668614684178 -0.6717546726158616 162.3936869151933 312.9015985189387 -1.317569935285064 157.6895105034205 421.1798375301052 -1.080998968520362 115.6696426997778 349.0735278780689 -2.240632875395022 83.10813206676926 452.4464092329197 -2.637760799181706 61.1788007669827 371.917592336939 -3.378038279053726 2.978969051928516 463.3404250029005 -4.381801481611547 2.634621944164792 379.8770066542781 -4.65227384755417 -55.97320473074842 372.4093498978997 -5.976502532748782 -77.23730850132165 453.1194756685349 -6.194267525657779 -110.6506527238614 350.0235305348859 -7.260480338129128 -152.0740938414062 422.4801020360475 -7.951642365365842 -157.6715443132071 314.2451051604898 -8.416706298045028 -193.8314834426526 267.5123143373498 -9.366385524306679 -216.4313837210279 373.51032678452 -9.534163809701568 -216.6662300176797 213.009920530466 -10.04479894687393 -297.8388541595248 74.56608670309441 -12.28226935992643 -299.5859348303545 74.31819263892133 66.43811337341504 -297.8388541595248 74.56608670309441 -12.28226935992643 -299.5859348303545 74.31819263892133 66.43811337341504 155.4754170958795 -115.4757637339099 -2.820090333489134 78.89155108703267 -146.3630314297349 74.14291756021521 80.63863175786969 -146.1151373655487 -4.577465173093515 153.7283364250329 -115.7236577980952 75.90029239982505 153.7283364250329 -115.7236577980952 75.90029239982505 155.4754170958795 -115.4757637339099 -2.820090333489134 78.89155108703267 -146.3630314297349 74.14291756021521 80.63863175786969 -146.1151373655487 -4.577465173093515 -1.324726466208858 -156.5839807641006 72.33045151632359 0.4223542046240709 -156.3360866999209 -6.38993121695421 -1.324726466208858 -156.5839807641006 72.33045151632359 0.4223542046240709 -156.3360866999209 -6.38993121695421 -81.45388948104505 -145.6899649941182 70.58641083382827 -79.70680881021031 -145.4420709299367 -8.133971899569588 -81.45388948104505 -145.6899649941182 70.58641083382827 -79.70680881021031 -145.4420709299367 -8.133971899569588 -156.0352679177029 -114.4233932913039 69.02964900308507 -154.2881872468906 -114.1754992271232 -9.690733730240027 -156.0352679177029 -114.4233932913039 69.02964900308507 -154.2881872468906 -114.1754992271232 -9.690733730240027 -219.9862640872891 -64.91503084674757 67.76625677031188 -218.2391834164566 -64.6671367825732 -10.9541259630023 -219.9862640872891 -64.91503084674757 67.76625677031188 -218.2391834164566 -64.6671367825732 -10.9541259630023 -268.9487232848462 -0.5387907446151701 66.88233222815507 -267.2016426140094 -0.290896680430123 -11.83805050521187 -267.2016426140094 -0.290896680430123 -11.83805050521187 -268.9487232848462 -0.5387907446151701 66.88233222815507</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"136\" source=\"#ID10408\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10405\">\r\n\t\t\t\t\t<float_array count=\"408\" id=\"ID10409\">-0.964612008311553 0.2628690234820647 -0.02058032834378215 -0.999745304999028 0.004196533475339196 -0.02217463053109675 -0.999745304999028 0.00419653347534455 -0.02217463053109673 -0.9646120083115553 0.2628690234820563 -0.02058032834378222 0.9646120083115553 -0.2628690234820563 0.02058032834378222 0.964612008311553 -0.2628690234820647 0.02058032834378215 0.999745304999028 -0.004196533475339196 0.02217463053109675 0.999745304999028 -0.00419653347534455 0.02217463053109673 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 0.02218792451953402 0.003148254615046475 -0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.02218792451953402 -0.003148254615046475 0.9997488607137267 -0.9667476113080481 -0.2547619433526012 -0.02225776829309488 -0.9667476113080419 -0.2547619433526251 -0.02225776829309482 0.9667476113080481 0.2547619433526012 0.02225776829309488 0.9667476113080419 0.2547619433526251 0.02225776829309482 0.4962997190498112 -0.8681117528911549 0.008280903533114833 0.2547680357417165 -0.9669986766858013 0.002609071140618535 0.2547680357418509 -0.9669986766857659 0.00260907114062163 0.4962997190498333 -0.8681117528911423 0.008280903533115367 -0.4962997190498333 0.8681117528911423 -0.008280903533115367 -0.4962997190498112 0.8681117528911549 -0.008280903533114833 -0.2547680357417165 0.9669986766858013 -0.002609071140618535 -0.2547680357418509 0.9669986766857659 -0.00260907114062163 -0.004125668178016921 -0.9999862387051476 -0.003240565138413674 -0.0041256681780126 -0.9999862387051476 -0.003240565138413578 0.004125668178016921 0.9999862387051476 0.003240565138413674 0.0041256681780126 0.9999862387051476 0.003240565138413578 -0.2627382146293676 -0.964826391112152 -0.008869362258527849 -0.2627382146294179 -0.9648263911121382 -0.008869362258528923 0.2627382146293676 0.964826391112152 0.008869362258527849 0.2627382146294179 0.9648263911121382 0.008869362258528923 -0.5034455859492242 -0.8639152194158565 -0.01389372699799186 -0.5034455859491911 -0.8639152194158758 -0.01389372699799118 0.5034455859492242 0.8639152194158565 0.01389372699799186 0.5034455859491911 0.8639152194158758 0.01389372699799118 -0.7098439725698374 -0.7041296532037364 -0.01797125720304042 -0.7098439725698112 -0.7041296532037629 -0.01797125720303992 0.7098439725698374 0.7041296532037364 0.01797125720304042 0.7098439725698112 0.7041296532037629 0.01797125720303992 -0.8678676655323616 -0.4963588147551397 -0.02082407592864366 -0.8678676655324193 -0.4963588147550386 -0.02082407592864463 0.8678676655324193 0.4963588147550386 0.02082407592864463 0.8678676655323616 0.4963588147551397 0.02082407592864366</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"136\" source=\"#ID10409\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10407\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID10410\">-45.03836722226096 87.88551929438202 -44.03803537585019 87.27046426629566 -44.03146552278385 87.881313505945 -45.04493707532719 87.27467005473258 -76.82049137991022 83.53825854928878 -78.15626928191176 85.48491570554606 -77.89214044889819 83.94354425639638 -77.71577381738538 84.98450690063977 -77.08246094848198 84.57219795961947 -75.6170369251352 83.31963214117315 -76.29948990061867 84.2760870554428 -75.42021885678612 84.11635365688299 -74.3637905168634 83.3025640604655 -74.50456868555766 84.10388333108008 -73.14615882673093 83.4882174686596 -73.61493943291885 84.23952591012919 -72.81195786225548 84.51403757642822 -72.04712144218875 83.86394039279384 -72.15034584061813 84.90871081357082 -71.14157594474851 84.4041279364999 -71.67519113391599 85.39664929267403 -70.49123376357576 85.07196721137646 -71.41887475018052 85.9446008127436 -71.3988642273804 86.51522338321931 -71.61652324957557 87.06963001892173 -70.14041464357641 85.82194607449712 -71.88065208256502 88.61100146805569 -71.01383951245593 88.04667601314485 -70.11302632802217 86.6029547057389 -70.41093528535696 87.36176865756063 -78.75895301903108 84.507869711323 -79.65976620346508 85.95159101872879 -79.36185724613037 85.19277706690706 -79.63237788791088 86.73259964997065 -79.28155876791153 87.48257851309138 -78.37392830410691 86.03932234124834 -78.63121658673897 88.15041778796781 -78.35391778130666 86.60994491172409 -78.0976013975714 87.15789643179366 -77.62244669086928 87.64583491089694 -77.72567108929829 88.69060533167396 -76.96083466923169 88.04050814803954 -76.62663370475616 89.06632825580823 -76.15785309856823 88.31501981433866 -75.4090020146238 89.25198166400224 -75.26822384592948 88.45066239338776 -74.35257367473582 88.43819206758523 -74.15575560638675 89.23491358329505 -73.47330263087211 88.27845866901987 -72.95230115158061 89.01628717517382 -72.69033158298113 87.98234776483265 -72.05701871410194 87.570038823828 -44.03146552278447 87.88131350594712 -43.03113367637312 87.26625847786028 -43.02456382330698 87.8771077175098 -44.03803537585081 87.27046426629745 -60.00219104341805 87.33634229035268 -61.00252288980445 87.95139731844077 -61.00909274287029 87.34054807878992 -59.99562119035231 87.94719153000358 -36.98972347949928 87.24102374723685 -37.99005532591313 87.85607877532505 -37.99662517897936 87.24522953567444 -36.98315362643309 87.8518729868877 -37.99662517897973 87.24522953567426 -38.9969570253928 87.8602845637613 -39.00352687845903 87.24943532411035 -37.99005532591353 87.85607877532426 -39.00352687845972 87.2494353241149 -40.00385872487202 87.86449035220218 -40.01042857793846 87.25364111255225 -38.99695702539351 87.8602845637654 -40.01042857793807 87.25364111255179 -41.01076042434955 87.86869614063879 -41.01733027741571 87.25784690098936 -40.00385872487166 87.86449035220129 -42.0176621238285 87.87290192907291 -41.01733027741549 87.25784690098571 -41.01076042434931 87.86869614063599 -42.02423197689475 87.26205268942222 -43.02456382323069 87.87710771735395 -42.02423197681858 87.26205268926491 -42.01766212375234 87.87290192891388 -43.03113367629683 87.26625847770518</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"84\" source=\"#ID10410\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10406\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10404\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10405\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"66\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10406\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10407\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 4 9 5 10 6 9 5 8 4 11 7 11 7 8 4 12 8 12 8 8 4 13 9 12 8 13 9 14 10 14 10 13 9 15 11 15 11 13 9 16 12 15 11 16 12 17 13 17 13 16 12 18 14 17 13 18 14 19 15 19 15 18 14 20 16 20 16 18 14 21 17 20 16 21 17 22 18 22 18 21 17 23 19 22 18 23 19 24 20 24 20 23 19 25 21 24 20 25 21 26 22 26 22 25 21 27 23 27 23 25 21 28 24 28 24 25 21 29 25 28 24 29 25 30 26 30 26 29 25 31 27 31 27 29 25 32 28 31 27 32 28 33 29 34 30 35 31 36 32 35 31 34 30 37 33 37 33 34 30 10 6 37 33 10 6 38 34 38 34 10 6 9 5 38 34 9 5 39 35 38 34 39 35 40 36 40 36 39 35 41 37 40 36 41 37 42 38 40 36 42 38 43 39 40 36 43 39 44 40 44 40 43 39 45 41 44 40 45 41 46 42 46 42 45 41 47 43 46 42 47 43 48 44 48 44 47 43 49 45 48 44 49 45 50 46 48 44 50 46 51 47 51 47 50 46 52 48 51 47 52 48 53 49 53 49 52 48 54 50 53 49 54 50 55 51 53 49 55 51 30 26 30 26 55 51 28 24 2 52 104 53 105 54 104 53 2 52 1 55 108 56 109 57 110 58 109 57 108 56 111 59 110 60 116 61 117 62 116 61 110 60 109 63 117 64 120 65 121 66 120 65 117 64 116 67 121 68 124 69 125 70 124 69 121 68 120 71 125 72 128 73 129 74 128 73 125 72 124 75 132 76 129 77 128 78 129 77 132 76 133 79 105 80 133 81 132 82 133 81 105 80 104 83</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"66\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10406\" />\r\n\t\t\t\t\t<p>4 5 6 7 6 5 56 57 58 58 57 59 57 60 59 60 61 59 59 61 62 61 63 62 62 63 64 63 65 64 65 66 64 64 66 67 66 68 67 67 68 69 68 70 69 69 70 71 70 72 71 72 73 71 73 74 71 71 74 75 74 76 75 76 77 75 75 77 78 77 79 78 78 79 80 81 80 79 82 83 84 83 85 84 84 85 58 58 85 56 85 86 56 56 86 87 87 86 88 88 86 89 86 90 89 89 90 91 90 92 91 91 92 93 92 94 93 93 94 95 95 94 96 94 97 96 96 97 98 97 99 98 98 99 100 100 99 101 99 102 101 101 102 103 103 102 76 77 76 102 6 7 106 107 106 7 112 113 114 115 114 113 114 115 118 119 118 115 118 119 122 123 122 119 122 123 126 127 126 123 126 127 130 131 130 127 134 135 131 130 131 135 106 107 134 135 134 107</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10411\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10412\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10416\">85.57396587337257 127.9522407380251 289.3955323259543 62.43694311903164 112.1552497445442 364.7682421324626 76.12363821602935 105.3960245833098 289.1147659461822 70.48561632776523 131.3659712388746 365.0073657821249 70.48561632776523 131.3659712388746 365.0073657821249 85.57396587337257 127.9522407380251 289.3955323259543 62.43694311903164 112.1552497445442 364.7682421324626 76.12363821602935 105.3960245833098 289.1147659461822 88.86554046783886 152.1867953250188 289.5448995950792 73.28899089994957 152.0061032328443 365.1345791846288 73.28899089994957 152.0061032328443 365.1345791846288 88.86554046783886 152.1867953250188 289.5448995950792 49.69147504880743 95.68311766661803 364.433504117178 61.15858170522711 86.05531571009013 288.7217342202403 49.69147504880743 95.68311766661803 364.433504117178 61.15858170522711 86.05531571009013 288.7217342202403 70.65602149040001 172.6690548383471 365.1412129569071 85.77404662951062 176.4481434965734 289.5526886205589 85.77404662951062 176.4481434965734 289.5526886205589 70.65602149040001 172.6690548383471 365.1412129569071 33.1177947049016 83.07212358887233 364.0259635789589 41.69864021297394 71.24815147017178 288.2432216107427 33.1177947049016 83.07212358887233 364.0259635789589 41.69864021297394 71.24815147017178 288.2432216107427 62.76614061317719 191.9466800506218 365.0268150183001 76.51016455455101 199.0829144685454 289.4183685933931 76.51016455455101 199.0829144685454 289.4183685933931 62.76614061317719 191.9466800506218 365.0268150183001 13.84537101764681 75.1816859187437 363.5733937318673 19.06997659700187 61.98361563818807 287.7118379615095 13.84537101764681 75.1816859187437 363.5733937318673 19.06997659700187 61.98361563818807 287.7118379615095 50.15703061142699 208.5252405692327 364.7991813993249 61.70521249705917 218.5485860049363 289.1510932015553 61.70521249705917 218.5485860049363 289.1510932015553 50.15703061142699 208.5252405692327 364.7991813993249 -6.81241219376534 72.54952494087912 363.1066364631606 -5.185303118719958 58.89307101773827 287.1637961897886 -6.81241219376534 72.54952494087912 363.1066364631606 -5.185303118719958 58.89307101773827 287.1637961897886 33.68798149422219 221.2749348921998 364.4738249548336 42.36812347342993 233.5186047590819 288.7690768211669 33.68798149422219 221.2749348921998 364.4738249548336 42.36812347342993 233.5186047590819 288.7690768211669 -27.44776113990656 75.35501807696043 362.6575005093109 -29.41424170317055 62.18713311819388 286.63644443677 -27.44776113990656 75.35501807696043 362.6575005093109 -29.41424170317055 62.18713311819388 286.63644443677 14.48133174251871 229.3268924212904 364.0729181887928 19.81668814455293 242.972788692008 288.2983532373673 14.48133174251871 229.3268924212904 364.0729181887928 19.81668814455293 242.972788692008 288.2983532373673 -46.6544108916471 83.40697560605624 362.2565937433228 -51.96567703203778 71.64131705112413 286.1657208529068 -46.6544108916471 83.40697560605624 362.2565937433228 -51.96567703203778 71.64131705112413 286.1657208529068 -6.154017203608873 232.1323855573806 363.6237822350176 -4.412250439895388 246.2668507924721 287.7710014842669 -6.154017203608873 232.1323855573806 363.6237822350176 -4.412250439895388 246.2668507924721 287.7710014842669 -63.12346000886259 96.15666992904822 361.9312372987697 -71.30276605567042 86.61133580526639 285.7837044725093 -63.12346000886259 96.15666992904822 361.9312372987697 -71.30276605567042 86.61133580526639 285.7837044725093 -26.81180041500102 229.5002245795392 363.1570249662927 -28.6675301556229 243.1763061720164 287.2229597125679 -26.81180041500102 229.5002245795392 363.1570249662927 -28.6675301556229 243.1763061720164 287.2229597125679 -86.10771811316204 106.0770073416587 285.5164290806679 -75.73257001062189 112.7352304476802 361.703603679789 -75.73257001062189 112.7352304476802 361.703603679789 -86.10771811316204 106.0770073416587 285.5164290806679 -46.08422410440926 221.6097869085617 362.7044551192194 -51.29619377372205 233.9117703391608 286.6915760632674 -46.08422410440926 221.6097869085617 362.7044551192194 -51.29619377372205 233.9117703391608 286.6915760632674 -95.37160018812733 128.7117783136329 285.3821090535148 -83.62245088783925 132.0128556599724 361.5892057412239 -83.62245088783925 132.0128556599724 361.5892057412239 -95.37160018812733 128.7117783136329 285.3821090535148 -62.65790444658364 208.9987928321427 362.2969145810039 -70.75613526427583 219.1046061005404 286.2130634538462 -62.65790444658364 208.9987928321427 362.2969145810039 -70.75613526427583 219.1046061005404 286.2130634538462 -98.46309402645238 152.9731264851856 285.3898980791 -86.25542029738358 152.6758072655066 361.595839513473 -86.25542029738358 152.6758072655066 361.595839513473 -98.46309402645238 152.9731264851856 285.3898980791 -85.72119177375339 199.7638972290272 285.8200317279207 -75.40337251551728 192.5266607559576 361.9621765657194 -85.72119177375339 199.7638972290272 285.8200317279207 -75.40337251551728 192.5266607559576 361.9621765657194 -83.45204572516946 173.3159392594818 361.7230529160534 -95.17151943197723 177.2076810721788 285.5392653481194 -95.17151943197723 177.2076810721788 285.5392653481194 -83.45204572516946 173.3159392594818 361.7230529160534</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10416\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10413\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10417\">0.9448535531679466 -0.2591400755071958 0.200245310387113 0.8456319502150926 -0.4959640253822145 0.197297466537432 0.8456319502149897 -0.4959640253823912 0.1972974665374292 0.9448535531680387 -0.2591400755068574 0.2002453103871161 -0.9448535531680387 0.2591400755068574 -0.2002453103871161 -0.9448535531679466 0.2591400755071958 -0.200245310387113 -0.8456319502150926 0.4959640253822145 -0.197297466537432 -0.8456319502149897 0.4959640253823912 -0.1972974665374292 0.9794127049047268 -0.004694786418808995 0.2018135586418526 0.979412704904728 -0.004694786418523552 0.2018135586418536 -0.979412704904728 0.004694786418523552 -0.2018135586418536 -0.9794127049047268 0.004694786418808995 -0.2018135586418526 0.6885096843152104 -0.6990274752313581 0.193170917779676 0.688509684315084 -0.6990274752314835 0.1931709177796729 -0.6885096843152104 0.6990274752313581 -0.193170917779676 -0.688509684315084 0.6990274752314835 -0.1931709177796729 0.946954256345886 0.2500318159221132 0.2018953377745518 0.9469542563458697 0.2500318159221758 0.2018953377745517 -0.9469542563458697 -0.2500318159221758 -0.2018953377745517 -0.946954256345886 -0.2500318159221132 -0.2018953377745518 0.4841943782333872 -0.8544919865243433 0.1881468815921886 0.4841943782332371 -0.8544919865244293 0.188146881592185 -0.4841943782333872 0.8544919865243433 -0.1881468815921886 -0.4841943782332371 0.8544919865244293 -0.188146881592185 0.8496901971207419 0.4876805345207675 0.2004850746725392 0.8496901971208273 0.4876805345206179 0.2004850746725407 -0.8496901971208273 -0.4876805345206179 -0.2004850746725407 -0.8496901971207419 -0.4876805345207675 -0.2004850746725392 0.246609782431524 -0.9517629097344299 0.1825677377384288 0.2466097824312845 -0.9517629097344931 0.1825677377384233 -0.246609782431524 0.9517629097344299 -0.1825677377384288 -0.2466097824312845 0.9517629097344931 -0.1825677377384233 0.6942489121288348 0.6920560019384586 0.1976788764357124 0.6942489121289936 0.6920560019382983 0.1976788764357154 -0.6942489121289936 -0.6920560019382983 -0.1976788764357154 -0.6942489121288348 -0.6920560019384586 -0.1976788764357124 -0.008053105513590782 -0.9842113921924796 0.1768136956520284 -0.008053105513711778 -0.984211392192479 0.1768136956520257 0.008053105513590782 0.9842113921924796 -0.1768136956520284 0.008053105513711778 0.984211392192479 -0.1768136956520257 0.4912234680640299 0.8492303678165516 0.1936679808365635 0.4912234680640102 0.8492303678165631 0.1936679808365632 -0.4912234680640299 -0.8492303678165516 -0.1936679808365635 -0.4912234680640102 -0.8492303678165631 -0.1936679808365632 -0.2624394306384895 -0.9496261234425505 0.1712768837923534 -0.2624394306385933 -0.9496261234425222 0.1712768837923512 0.2624394306384895 0.9496261234425505 -0.1712768837923534 0.2624394306385933 0.9496261234425222 -0.1712768837923512 0.2544497134233231 0.9484924588639686 0.1887257237818201 0.2544497134232506 0.9484924588639883 0.1887257237818185 -0.2544497134233231 -0.9484924588639686 -0.1887257237818201 -0.2544497134232506 -0.9484924588639883 -0.1887257237818185 -0.4992131852796539 -0.8503640323949762 0.1663346267374835 -0.4992131852797918 -0.8503640323948956 0.1663346267374807 0.4992131852796539 0.8503640323949762 -0.1663346267374835 0.4992131852797918 0.8503640323948956 -0.1663346267374807 6.338829822824731e-005 0.9830777276140152 0.1831889119220584 6.338829813449747e-005 0.9830777276140157 0.1831889119220564 -6.338829822824731e-005 -0.9830777276140152 -0.1831889119220584 -6.338829813449747e-005 -0.9830777276140157 -0.1831889119220564 -0.7022386293446711 -0.6931896665166452 0.1623237311383033 -0.7022386293446021 -0.6931896665167145 0.1623237311383046 0.7022386293446711 0.6931896665166452 -0.1623237311383033 0.7022386293446021 0.6931896665167145 -0.1623237311383046 -0.2545994996464177 0.9506292451561778 0.1774348698356374 -0.2545994996465575 0.950629245156141 0.1774348698356342 0.2545994996464177 -0.9506292451561778 -0.1774348698356374 0.2545994996465575 -0.950629245156141 -0.1774348698356342 -0.8576799143363714 -0.4888141990991762 0.1595175329015147 -0.8576799143365044 -0.4888141990989435 0.1595175329015125 0.8576799143365044 0.4888141990989435 -0.1595175329015125 0.8576799143363714 0.4888141990991762 -0.1595175329015147 -0.4921840954483781 0.8533583219462474 0.1718557259818439 -0.4921840954484935 0.8533583219461813 0.1718557259818411 0.4921840954483781 -0.8533583219462474 -0.1718557259818439 0.4921840954484935 -0.8533583219461813 -0.1718557259818411 -0.9549439735615859 -0.2511654805003221 0.1581072697994984 -0.9549439735616279 -0.251165480500163 0.1581072697994981 0.9549439735616279 0.251165480500163 -0.1581072697994981 0.9549439735615859 0.2511654805003221 -0.1581072697994984 -0.6964994015305011 0.6978938106532038 0.1668316897942467 -0.6964994015307043 0.6978938106530022 0.1668316897942415 0.6964994015305011 -0.6978938106532038 -0.1668316897942467 0.6964994015307043 -0.6978938106530022 -0.1668316897942415 -0.9874024221203445 0.003561121840108207 0.1581890489323354 -0.987402422120343 0.003561121840468527 0.1581890489323366 0.987402422120343 -0.003561121840468527 -0.1581890489323366 0.9874024221203445 -0.003561121840108207 -0.1581890489323354 -0.8536216674304291 0.4948303608041663 0.1627051410365162 -0.8536216674303122 0.4948303608043667 0.1627051410365193 0.8536216674304291 -0.4948303608041663 -0.1627051410365162 0.8536216674303122 -0.4948303608043667 -0.1627051410365193 -0.9528432703834865 0.2580064109288693 0.1597572971870311 -0.9528432703835617 0.2580064109285934 0.1597572971870285 0.9528432703835617 -0.2580064109285934 -0.1597572971870285 0.9528432703834865 -0.2580064109288693 -0.1597572971870311</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10417\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10415\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10418\">-9.543012477749485 198.228029199072 -9.509424617975608 196.7991995992689 -9.928753770077433 198.228029208868 -9.962341702433859 196.7991996107736 -2.155080335493294 198.5120873641281 -2.121492487403987 197.0832577640531 -2.540821627864225 198.5120873770799 -2.574409571904869 197.0832577792577 -16.26746027439385 197.612227305361 -16.2338724004625 196.1833977058931 -16.65320156680496 197.6122273113349 -16.68678948500341 196.1833977129095 5.426448615829829 197.0162141393957 4.973531531328664 197.0162141572719 5.392860776155528 198.4450437396705 5.007119483784742 198.4450437548935 -21.87016370932108 196.7066475628504 -21.83657581972348 195.2778179637527 -22.25590500173245 196.7066475645965 -22.28949290426422 195.2778179658019 12.62001897352369 196.6026376942739 12.16710188902277 196.6026377135995 12.58643113842156 198.0314672946581 12.20068984605071 198.0314673111156 -25.9693077921221 195.5730037654476 -25.93571988641726 194.1441741667276 -26.35504908445014 195.5730037628428 -26.38863697087559 194.1441741636731 18.96898865403946 195.8707130446129 18.51607156953843 195.8707130640691 18.93540081935494 197.2995426450079 18.54965952698412 197.2995426615774 -28.285542621641 194.2885519197239 -28.25195470048653 192.8597223213706 -28.67128391401226 194.2885519129497 -28.70487178498757 192.8597223134175 23.62135674101006 196.299149316795 24.00709803338088 196.299149301241 23.58776878732962 194.8703197191972 24.04068587183055 194.8703197009338 -28.66102062183866 192.9408253609698 -28.62743268694435 191.5119957629402 -29.04676191420978 192.9408253504865 -29.08034977144529 191.5119957506321 27.07015371447906 195.0984624609822 27.45589500684986 195.0984624475027 27.03656576849038 193.6696328632029 27.48948285299143 193.6696328473792 -27.07015359299752 191.621669483679 -27.03656564700914 190.1928398859109 -27.45589488536897 191.6216694702005 -27.48948273151009 190.192839870086 28.6610206446232 193.7793069175868 29.04676193699406 193.7793069071047 28.62743270972844 192.3504773195497 29.08034979422938 192.35047730724 -23.6213565039717 190.4209826145494 -23.58776855029139 188.9921530169629 -24.00709779634297 190.4209825989942 -24.04068563479233 188.9921529986993 28.28554258903242 192.4315809232501 28.67128388140327 192.4315809164757 28.2519546678777 191.002751324888 28.70487175237886 191.0027513169354 -18.93540048089594 189.4205895644476 -18.54965918852471 189.4205895810171 -18.96898831558018 187.9917599640632 -18.51607123107915 187.9917599835194 25.96930776222724 191.1471297204899 26.35504905459812 191.1471297178863 25.93571985652268 189.718300121766 26.38863694102359 189.7183001187111 -12.58643073979817 188.6886654676482 -12.20068944742707 188.6886654841049 -12.62001857490012 187.2598358672712 -12.16710149039913 187.2598358865965 21.87016373961356 190.0134864714709 22.25590503198454 190.0134864732163 21.83657585001579 188.5846568723702 22.28949293451691 188.5846568744201 -5.392860374779396 188.2750896709998 -5.007119082408044 188.2750896862233 -5.426448214453523 186.8462600707307 -4.973531129952402 186.8462600886049 16.23387253224126 187.6790774355011 16.26746040617283 189.1079070349696 16.68678961674216 187.6790774425172 16.65320169854381 189.1079070409429 2.121492833382652 186.779217016848 2.155080681471782 188.2080466169199 2.574409917883538 186.7792170320546 2.540821973842898 188.2080466298703 9.509424865262089 187.0632755222318 9.543012725035892 188.4921051220308 9.962341949763081 187.0632755337364 9.928754017407055 188.4921051318273</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10418\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10414\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10412\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10413\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10414\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 3 0 3 8 9 2 12 13 12 2 1 8 16 9 16 8 17 13 20 21 20 13 12 17 24 16 24 17 25 21 28 29 28 21 20 25 32 24 32 25 33 29 36 37 36 29 28 40 33 41 33 40 32 37 44 45 44 37 36 48 41 49 41 48 40 45 52 53 52 45 44 56 49 57 49 56 48 53 60 61 60 53 52 64 57 65 57 64 56 60 68 61 68 60 69 72 65 73 65 72 64 69 76 68 76 69 77 80 73 81 73 80 72 77 84 76 84 77 85 80 88 89 88 80 81 92 84 85 84 92 93 89 93 92 93 89 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10414\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10415\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 11 5 4 6 5 7 4 6 11 5 6 8 7 9 14 10 15 11 14 10 7 9 18 12 11 13 19 14 10 15 19 14 11 13 14 16 15 17 22 18 23 19 22 18 15 17 26 20 18 21 27 22 19 23 27 22 18 21 22 24 23 25 30 26 31 27 30 26 23 25 34 28 26 29 35 30 27 31 35 30 26 29 30 32 31 33 38 34 39 35 38 34 31 33 35 36 42 37 34 38 43 39 34 38 42 37 38 40 39 41 46 42 47 43 46 42 39 41 42 44 50 45 43 46 51 47 43 46 50 45 46 48 47 49 54 50 55 51 54 50 47 49 50 52 58 53 51 54 59 55 51 54 58 53 54 56 55 57 62 58 63 59 62 58 55 57 58 60 66 61 59 62 67 63 59 62 66 61 70 64 62 65 71 66 63 67 71 66 62 65 66 68 74 69 67 70 75 71 67 70 74 69 78 72 70 73 79 74 71 75 79 74 70 73 74 76 82 77 75 78 83 79 75 78 82 77 86 80 78 81 87 82 79 83 87 82 78 81 83 84 82 85 90 86 91 87 90 86 82 85 94 88 95 89 87 90 86 91 87 90 95 89 90 92 91 93 94 94 95 95 94 94 91 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10419\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10420\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10424\">-120.7399631842757 123.0274853602622 655.7607590104217 -120.5020200157703 180.7005419016263 655.9476548787825 -124.4164778750674 151.8799455739408 655.7700219972885 -109.7230243438598 96.10940874322556 655.9204971754534 -109.2633534405534 207.5251983318714 656.2815522676738 -92.11644752942539 72.96013816003205 656.2383506004462 -91.46637470374958 230.5258588588049 656.7489596084506 -87.02442906605279 151.7229886132524 656.5993880998431 -84.58208008417614 132.5559832415673 656.5932345962356 -69.12009185464626 55.157258144963 656.6926580996424 -77.26340693221164 114.6740100824878 656.6993504089278 -65.56716509079774 99.29569605544728 656.9105039210135 -42.30112095546656 43.91400555038564 657.252459367839 -50.29043411244265 87.46904784752098 657.2123053692667 -32.47429796735582 80.0000319896246 657.5841874838425 -13.48720337822761 39.99658946027469 657.8796048737768 -13.33289689126468 77.39764956933362 658.0008071132143 15.35804001141128 43.67197530733715 658.5313556875117 5.829314265167341 79.83924864794757 658.4337723181179 23.70646247646209 87.15843828229885 658.8535772352479 42.26885354328874 54.68969161904704 659.1632960681582 39.08024964143601 98.85642779743174 659.2316128535804 50.9029775669369 114.1360185379684 659.5421166701708 65.41130975344527 72.29889923949469 659.7323603233908 58.36894688102211 131.9559316414253 659.7639283630888 60.96936411617594 151.101769484607 659.881931832133 -84.42401183088714 170.8688264564288 656.7173915688272 -68.32391849536566 248.1350664779122 657.3180238636105 -76.95804251587879 188.6887395620861 656.9392032616834 -65.13531459175465 203.9683303008767 657.2497070783211 -41.4131049612829 259.15278279052 657.9499642444025 -49.76152742853765 215.6663198146556 657.6277426965753 -31.88437921503646 222.9855094499044 658.0475476137963 -12.56786157162742 262.8281686375786 658.6017150581774 -12.72216805860785 225.427108528533 658.4805128186981 6.419233017486931 222.8247261082336 658.8971324480935 16.24605600559426 258.9107525474644 659.2288605640679 24.23536916257149 215.3557102503344 659.2690145627003 43.06502690476714 247.6674999529016 659.7886618322991 39.51210014092158 203.5290620424102 659.5708160109061 51.20834198234752 188.1507480153648 659.7819695229136 66.06138257955399 229.8646199378283 660.2429693315171 58.52701513430452 170.2687748562942 659.8880853356786 83.20828849161694 95.29955976818691 660.1997676641895 83.6679593939823 206.7153493546415 660.5608227564462 94.44695506589801 122.1242161962407 660.5336650530571 94.68489823440791 179.7972727375902 660.7205609214834 98.36141292519437 150.9448125239206 660.7112979346075 98.36141292519437 150.9448125239206 660.7112979346075 94.44695506589801 122.1242161962407 660.5336650530571 94.68489823440791 179.7972727375902 660.7205609214834 83.6679593939823 206.7153493546415 660.5608227564462 83.20828849161694 95.29955976818691 660.1997676641895 66.06138257955399 229.8646199378283 660.2429693315171 65.41130975344527 72.29889923949469 659.7323603233908 60.96936411617594 151.101769484607 659.881931832133 58.52701513430452 170.2687748562942 659.8880853356786 51.20834198234752 188.1507480153648 659.7819695229136 43.06502690476714 247.6674999529016 659.7886618322991 39.51210014092158 203.5290620424102 659.5708160109061 24.23536916257149 215.3557102503344 659.2690145627003 16.24605600559426 258.9107525474644 659.2288605640679 6.419233017486931 222.8247261082336 658.8971324480935 -12.56786157162742 262.8281686375786 658.6017150581774 -12.72216805860785 225.427108528533 658.4805128186981 -31.88437921503646 222.9855094499044 658.0475476137963 -41.4131049612829 259.15278279052 657.9499642444025 -49.76152742853765 215.6663198146556 657.6277426965753 -65.13531459175465 203.9683303008767 657.2497070783211 -68.32391849536566 248.1350664779122 657.3180238636105 -76.95804251587879 188.6887395620861 656.9392032616834 -84.42401183088714 170.8688264564288 656.7173915688272 -87.02442906605279 151.7229886132524 656.5993880998431 -91.46637470374958 230.5258588588049 656.7489596084506 58.36894688102211 131.9559316414253 659.7639283630888 50.9029775669369 114.1360185379684 659.5421166701708 42.26885354328874 54.68969161904704 659.1632960681582 39.08024964143601 98.85642779743174 659.2316128535804 23.70646247646209 87.15843828229885 658.8535772352479 15.35804001141128 43.67197530733715 658.5313556875117 5.829314265167341 79.83924864794757 658.4337723181179 -13.33289689126468 77.39764956933362 658.0008071132143 -13.48720337822761 39.99658946027469 657.8796048737768 -32.47429796735582 80.0000319896246 657.5841874838425 -42.30112095546656 43.91400555038564 657.252459367839 -50.29043411244265 87.46904784752098 657.2123053692667 -65.56716509079774 99.29569605544728 656.9105039210135 -69.12009185464626 55.157258144963 656.6926580996424 -77.26340693221164 114.6740100824878 656.6993504089278 -84.58208008417614 132.5559832415673 656.5932345962356 -92.11644752942539 72.96013816003205 656.2383506004462 -109.2633534405534 207.5251983318714 656.2815522676738 -109.7230243438598 96.10940874322556 655.9204971754534 -120.5020200157703 180.7005419016263 655.9476548787825 -120.7399631842757 123.0274853602622 655.7607590104217 -124.4164778750674 151.8799455739408 655.7700219972885</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10424\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10421\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10425\">-0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 -0.02218792451960856 -0.003148254615149338 0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246 0.02218792451960856 0.003148254615149338 -0.9997488607137246</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10425\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10423\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID10426\">-2.999835741641122 26.72085759401136 -3.538141947431627 26.70232451771186 -2.484668588127049 26.8780830692051 -2.02774827704728 27.16328628698616 -4.062902527124074 26.82374683881885 -1.660213172505682 27.55703111938302 -4.538355914539595 27.0768498268478 -3.113815415050198 27.40403658256352 -2.77158423179593 27.50848318799294 -2.468047064010794 27.69794680969943 -1.407110184496033 28.03248450676227 -2.223889468060077 27.95951581496749 -2.055750380618612 28.27536470835111 -1.285687863379062 28.55724508649766 -1.975088202632446 28.62396890973111 -1.30422093967849 29.09555129228806 -1.987399928230637 28.98157161887925 -2.091846533660204 29.32380280213339 -1.461446414872292 29.61071844580232 -2.281310155366703 29.6273399699186 -2.542879160634664 29.87149756586933 -1.746649632653173 30.06763875688208 -2.858728054018302 30.03963665331067 -3.207332255398297 30.12029883129689 -3.564934964546362 30.10798710569873 -2.140394465050282 30.43517386142368 -3.471418124198331 27.39172485696515 -3.820022325535288 27.47238703494142 -4.932100746966713 27.4443849314176 -4.13587121895509 27.64052612240242 -4.397440224253259 27.88468371838101 -5.217303964724302 27.90130524245985 -4.586903845936475 28.18822088612872 -4.691350451365786 28.53045206938297 -5.374529439918118 28.41647239597378 -4.703662176964116 28.88805477853101 -5.393062516217665 28.95477860176451 -4.622999998978005 29.23665897991104 -4.454860911536525 29.55250787329477 -5.271640195100444 29.47953918150005 -4.210703315585866 29.81407687856262 -3.907166147800582 30.00354050026925 -5.018537207090846 29.95499256887914 -2.615847852429427 30.68827684943316 -4.651002102549152 30.34873740127616 -3.140608432164797 30.80969917055039 -4.194081791469621 30.63394061905699 -3.678914637955401 30.79116609425087</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID10426\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10422\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10420\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10421\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10422\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 7 5 8 8 5 9 8 9 10 10 9 11 11 9 12 11 12 13 13 12 14 14 12 15 14 15 16 16 15 17 16 17 18 18 17 19 19 17 20 19 20 21 21 20 22 22 20 23 22 23 24 24 23 25 6 26 27 26 6 7 27 26 28 27 28 29 27 29 30 30 29 31 30 31 32 30 32 33 33 32 34 33 34 35 33 35 36 36 35 37 36 37 38 38 37 39 38 39 40 38 40 41 41 40 42 41 42 25 41 25 23 41 23 43 41 43 44 44 43 45 44 45 46 46 45 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10422\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10423\" />\r\n\t\t\t\t\t<p>48 0 49 1 50 2 50 2 49 1 51 3 49 1 52 4 51 3 51 3 52 4 53 5 52 4 54 6 53 5 54 6 55 7 53 5 55 7 56 8 53 5 56 8 57 9 53 5 53 5 57 9 58 10 57 9 59 11 58 10 59 11 60 12 58 10 58 10 60 12 61 13 60 12 62 14 61 13 61 13 62 14 63 15 62 14 64 16 63 15 64 16 65 17 63 15 63 15 65 17 66 18 65 17 67 19 66 18 67 19 68 20 66 18 66 18 68 20 69 21 68 20 70 22 69 21 70 22 71 23 69 21 72 24 73 25 71 23 69 21 71 23 73 25 55 7 54 6 74 26 74 26 54 6 75 27 54 6 76 28 75 27 75 27 76 28 77 29 77 29 76 28 78 30 76 28 79 31 78 30 78 30 79 31 80 32 80 32 79 31 81 33 79 31 82 34 81 33 81 33 82 34 83 35 82 34 84 36 83 35 83 35 84 36 85 37 85 37 84 36 86 38 84 36 87 39 86 38 86 38 87 39 88 40 88 40 87 39 89 41 87 39 90 42 89 41 89 41 90 42 72 24 72 24 90 42 73 25 73 25 90 42 91 43 90 42 92 44 91 43 91 43 92 44 93 45 92 44 94 46 93 45 95 47 93 45 94 46</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10427\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10428\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10432\">154.8968802116867 152.8399702374622 3.919003643861288 111.120632299871 122.1924062204227 159.1894203244483 149.5086160960971 113.1683246190033 3.674491398338432 115.237031959218 152.4998197041364 159.3762170559166 115.237031959218 152.4998197041364 159.3762170559166 154.8968802116867 152.8399702374622 3.919003643861288 111.120632299871 122.1924062204227 159.1894203244483 149.5086160960971 113.1683246190033 3.674491398338432 111.3708506475523 182.8407408903477 159.3859579083401 149.8361456499915 192.5554765997579 3.931754175744572 149.8361456499915 192.5554765997579 3.931754175744572 111.3708506475523 182.8407408903477 159.3859579083401 99.3021775044856 93.98390058485293 158.8382976027187 134.0385545990405 76.24409683487694 3.214880544699554 99.3021775044856 93.98390058485293 158.8382976027187 134.0385545990405 76.24409683487694 3.214880544699554 99.7855622320933 211.1474861409702 159.2179790587707 134.6712931081452 229.6082975802899 3.711874066364544 134.6712931081452 229.6082975802899 3.711874066364544 99.7855622320933 211.1474861409702 159.2179790587707 80.58707573346101 69.79666583399148 158.3467773236353 109.5409548431164 44.583611982718 2.57149280293379 80.58707573346101 69.79666583399148 158.3467773236353 109.5409548431164 44.583611982718 2.57149280293379 81.27068497276287 235.4909975462769 158.8837279882901 110.4357822257623 261.4733446619102 3.274347781780307 110.4357822257623 261.4733446619102 3.274347781780307 81.27068497276287 235.4909975462769 158.8837279882901 56.25073024600806 51.27902204887052 157.7483557821361 77.68528776915628 20.3444797877967 1.788173984421519 56.25073024600806 51.27902204887052 157.7483557821361 77.68528776915628 20.3444797877967 1.788173984421519 57.08797715750575 254.2123050335547 158.4059833547635 78.78122301840676 285.9790675454887 2.648992015077965 57.08797715750575 254.2123050335547 158.4059833547635 78.78122301840676 285.9790675454887 2.648992015077965 27.95162277346049 39.69291605329705 157.0838144173467 40.64246444828768 5.178557053783024 0.9183059723272891 27.95162277346049 39.69291605329705 157.0838144173467 40.64246444828768 5.178557053783024 0.9183059723272891 28.88545036009691 266.0355824359924 157.8173026657059 41.86482138442602 301.455441714127 1.878423728488997 28.88545036009691 266.0355824359924 157.8173026657059 41.86482138442602 301.455441714127 1.878423728488997 -2.38170928218301 35.82792182093394 156.3984406249838 0.9368920679942221 0.1193763491889399 0.02116883402413805 -2.38170928218301 35.82792182093394 156.3984406249838 0.9368920679942221 0.1193763491889399 0.02116883402413805 -1.414939825090869 270.1550929374743 157.1578035372222 2.202369087930038 306.8477778441672 1.015155877403231 -1.414939825090869 270.1550929374743 157.1578035372222 2.202369087930038 306.8477778441672 1.015155877403231 -32.68209946741104 39.94743232240137 155.7389414964509 -38.72556022850085 5.511712479225736 -0.842099017199871 -32.68209946741104 39.94743232240137 155.7389414964509 -38.72556022850085 5.511712479225736 -0.842099017199871 -31.7482718806923 266.2900987051486 156.4724297448192 -37.50320329235933 301.7885971395803 0.1180187389891216 -31.7482718806923 266.2900987051486 156.4724297448192 -37.50320329235933 301.7885971395803 0.1180187389891216 -60.8846262648558 51.77070972484177 155.1502608073952 -75.64196186248137 20.98808664786112 -1.612667303761555 -60.8846262648558 51.77070972484177 155.1502608073952 -75.64196186248137 20.98808664786112 -1.612667303761555 -60.04737935533763 254.7039927087529 155.8078883799753 -74.54602661531703 286.622674404711 -0.751849273165135 -60.04737935533763 254.7039927087529 155.8078883799753 -74.54602661531703 286.622674404711 -0.751849273165135 -85.06733408015361 70.4920172121506 154.6725161740378 -107.296521069846 45.49380953144861 -2.238023070380223 -85.06733408015361 70.4920172121506 154.6725161740378 -107.296521069846 45.49380953144861 -2.238023070380223 -84.38372484112574 236.1863489249757 155.2094668385635 -106.401693687601 262.3835422110435 -1.535168091606465 -84.38372484112574 236.1863489249757 155.2094668385635 -106.401693687601 262.3835422110435 -1.535168091606465 -131.5320319522232 77.35885661306926 -2.675549355049952 -103.5822113394988 94.83552861750931 154.3382651033371 -103.5822113394988 94.83552861750931 154.3382651033371 -131.5320319522232 77.35885661306926 -2.675549355049952 -130.8992934422522 230.7230573605477 -2.178555833354039 -103.0988266108848 211.999114175827 154.7179465594254 -130.8992934422522 230.7230573605477 -2.178555833354039 -103.0988266108848 211.999114175827 154.7179465594254 -146.696884494067 114.4116775936003 -2.895429464495464 -115.1674997549524 123.1422738681744 154.1702862538859 -115.1674997549524 123.1422738681744 154.1702862538859 -146.696884494067 114.4116775936003 -2.895429464495464 -146.3693549401669 193.7988295743493 -2.63816668706022 -114.9172814071942 183.7906085381612 154.3668238376031 -146.3693549401669 193.7988295743493 -2.63816668706022 -114.9172814071942 183.7906085381612 154.3668238376031 -151.7576190557479 154.127183955892 -2.882678932592171 -119.0336810665826 153.483195054424 154.1800271063294 -119.0336810665826 153.483195054424 154.1800271063294 -151.7576190557479 154.127183955892 -2.882678932592171</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10432\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10429\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10433\">0.9689558968093225 -0.004798682315150511 0.2471870601113248 0.9347286692879123 -0.2568001454214869 0.2456338741353719 0.934728669287855 -0.2568001454216973 0.2456338741353699 0.9689558968093239 -0.004798682314827305 0.2471870601113259 -0.9689558968093239 0.004798682314827305 -0.2471870601113259 -0.9689558968093225 0.004798682315150511 -0.2471870601113248 -0.9347286692879123 0.2568001454214869 -0.2456338741353719 -0.934728669287855 0.2568001454216973 -0.2456338741353699 0.9368091962109364 0.247481392163861 0.2472680537943726 0.9368091962109916 0.2474813921636512 0.2472680537943731 -0.9368091962109916 -0.2474813921636512 -0.2472680537943731 -0.9368091962109364 -0.247481392163861 -0.2472680537943726 0.8364600426392455 -0.4913495138971228 0.2427143429239659 0.8364600426391512 -0.4913495138972847 0.2427143429239634 -0.8364600426392455 0.4913495138971228 -0.2427143429239659 -0.8364600426391512 0.4913495138972847 -0.2427143429239634 0.840479312013685 0.4828476078514334 0.2458713355988267 0.8404793120138289 0.4828476078511819 0.2458713355988292 -0.8404793120138289 -0.4828476078511819 -0.2458713355988292 -0.840479312013685 -0.4828476078514334 -0.2458713355988267 0.6808468613726538 -0.6924626358917919 0.2386274277043566 0.6808468613724454 -0.6924626358919985 0.2386274277043513 -0.6808468613726538 0.6924626358917919 -0.2386274277043566 -0.6808468613724454 0.6924626358919985 -0.2386274277043513 0.6865309666328595 0.6852601461100627 0.2430920895614809 0.6865309666328499 0.6852601461100726 0.2430920895614808 -0.6865309666328499 -0.6852601461100726 -0.2430920895614808 -0.6865309666328595 -0.6852601461100627 -0.2430920895614809 0.4784939066284597 -0.8464339844965323 0.233651644994764 0.478493906628269 -0.8464339844966412 0.2336516449947594 -0.4784939066284597 0.8464339844965323 -0.233651644994764 -0.478493906628269 0.8464339844966412 -0.2336516449947594 0.4854554853944599 0.840924926959869 0.2391197167068592 0.4854554853942391 0.8409249269599978 0.2391197167068546 -0.4854554853944599 -0.840924926959869 -0.2391197167068592 -0.4854554853942391 -0.8409249269599978 -0.2391197167068546 0.2431911978687502 -0.9427706667533794 0.2281260861641003 0.2431911978685919 -0.9427706667534211 0.2281260861640967 -0.2431911978687502 0.9427706667533794 -0.2281260861641003 -0.2431911978685919 0.9427706667534211 -0.2281260861640967 0.2509558300520886 0.9392336528340497 0.234224927680371 0.2509558300521928 0.9392336528340212 0.2342249276803732 -0.2509558300520886 -0.9392336528340497 -0.234224927680371 -0.2509558300521928 -0.9392336528340212 -0.2342249276803732 -0.009025774161082254 -0.9749074969706147 0.2224273089152587 -0.009025774161163007 -0.9749074969706143 0.2224273089152569 0.009025774161082254 0.9749074969706147 -0.2224273089152587 0.009025774161163007 0.9749074969706143 -0.2224273089152569 -0.0009872354116637198 0.9734867465272158 0.2287412942651555 -0.0009872354116976585 0.9734867465272159 0.2287412942651548 0.0009872354116637198 -0.9734867465272158 -0.2287412942651555 0.0009872354116976585 -0.9734867465272159 -0.2287412942651548 -0.2609688396250706 -0.9406544032774598 0.2169436755000485 -0.2609688396251361 -0.9406544032774418 0.2169436755000472 0.2609688396250706 0.9406544032774598 -0.2169436755000485 0.2609688396251361 0.9406544032774418 -0.2169436755000472 -0.2532042074412055 0.9413499163101337 0.2230425170163204 -0.2532042074415278 0.9413499163100486 0.223042517016313 0.2532042074412055 -0.9413499163101337 -0.2230425170163204 0.2532042074415278 -0.9413499163100486 -0.223042517016313 -0.4954684949676064 -0.8423456774032077 0.212048886473535 -0.4954684949675298 -0.8423456774032523 0.2120488864735366 0.4954684949676064 0.8423456774032077 -0.212048886473535 0.4954684949675298 0.8423456774032523 -0.2120488864735366 -0.4885069162011726 0.8450132340533301 0.2175169581856844 -0.4885069162013375 0.8450132340532356 0.2175169581856805 0.4885069162011726 -0.8450132340533301 -0.2175169581856844 0.4885069162013375 -0.8450132340532356 -0.2175169581856805 -0.69654397620589 -0.6866808965534844 0.2080765136188885 -0.6965439762059524 -0.6866808965534215 0.2080765136188873 0.69654397620589 0.6866808965534844 -0.2080765136188885 0.6965439762059524 0.6866808965534215 -0.2080765136188873 -0.6908598709452374 0.6910418854488785 0.2125411754761636 -0.690859870945466 0.6910418854486515 0.2125411754761578 0.6908598709452374 -0.6910418854488785 -0.2125411754761636 0.690859870945466 -0.6910418854486515 -0.2125411754761578 -0.850492321586708 -0.4842683582948644 0.2052972675815453 -0.8504923215867116 -0.4842683582948579 0.2052972675815452 0.8504923215867116 0.4842683582948579 -0.2052972675815452 0.850492321586708 0.4842683582948644 -0.2052972675815453 -0.8464730522120953 0.4899287634540669 0.2084542602565567 -0.8464730522118846 0.4899287634544287 0.2084542602565625 0.8464730522120953 -0.4899287634540669 -0.2084542602565567 0.8464730522118846 -0.4899287634544287 -0.2084542602565625 -0.9468222057840056 -0.2489021426071151 0.2039005493859629 -0.9468222057840946 -0.2489021426067777 0.203900549385962 0.9468222057840946 0.2489021426067777 -0.203900549385962 0.9468222057840056 0.2489021426071151 -0.2039005493859629 -0.9447416788608943 0.2553793949782684 0.2055347290450743 -0.9447416788608681 0.2553793949783644 0.2055347290450752 0.9447416788608943 -0.2553793949782684 -0.2055347290450743 0.9447416788608681 -0.2553793949783644 -0.2055347290450752 -0.9789689063823523 0.00337793187175938 0.2039815430690015 -0.9789689063823518 0.00337793187188768 0.2039815430690019 0.9789689063823518 -0.00337793187188768 -0.2039815430690019 0.9789689063823523 -0.00337793187175938 -0.2039815430690015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10433\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10431\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10434\">-2.064745011524098 194.0389415969388 -1.977241529200569 191.0691787361874 -2.631157127931291 194.0389416161355 -2.718660811587841 191.0691787613195 5.570699548637785 190.9851440014738 4.82928026625066 190.9851440310141 5.483196083971667 193.9549068627471 4.916783967564598 193.9549068853131 -9.452677134255922 193.6828932041887 -9.365173627415155 190.7131303441628 -10.01908925062106 193.6828932187117 -10.10659290976066 190.7131303631747 12.76426988818626 190.466753025611 12.02285060579907 190.4667530575455 12.67676643311384 193.436515887167 12.11035431670672 193.4365159115634 -16.17712490669079 192.9110257600927 -16.08962137014378 189.9412629009435 -16.74353702313754 192.911025768948 -16.83104065256975 189.9412629125385 19.11323955909111 189.5493333621972 18.37182027670395 189.5493333943501 19.0257361048948 192.5190962237793 18.45932398848781 192.5190962483421 -21.77982831134117 191.7759407538356 -21.69232474192141 188.8061778956577 -22.34624042778816 191.7759407564222 -22.43374402434733 188.8061778990451 23.5310211995696 191.2651685853242 24.0974333159765 191.2651685622649 23.4435174956861 188.2954057310991 24.18493677807325 188.295405700916 -25.8789723571531 190.3549923840673 -25.79146875393616 187.3852295268864 -26.44538447351847 190.3549923802077 -26.53288803628168 187.385229521837 26.97981817918653 189.7601860518272 27.54623029559374 189.7601860318475 26.89231449144269 186.7904231971269 27.63373377382978 186.7904231709739 -28.19520714389252 188.7450159897058 -28.10770350825796 185.7752531334821 -28.76161926030038 188.7450159796636 -28.84912279064505 185.77525312034 28.57068512720785 188.1067107188563 29.13709724361496 188.1067107033176 28.48318146274221 185.1369478634699 29.2246007451294 185.1369478431307 -28.57068509837381 187.0557288666757 -28.48318143390843 184.085966011304 -29.13709721478164 187.0557288511362 -29.22460071629566 184.0859659909623 28.19520710263195 186.4174241638721 28.76161921903898 186.4174241538292 28.10770346699683 183.447661307637 28.84912274938387 183.447661294493 -26.97981802546661 185.4022531980351 -26.89231433772319 182.4324903433484 -27.54623014187446 185.4022531780555 -27.63373362011024 182.4324903171959 25.87897231932912 184.8074484166251 26.44538443573622 184.8074484127653 25.79146871611233 181.837685559436 26.53288799849967 181.8376855543862 -23.53102089963117 183.8972706520815 -23.44351719574815 180.9275077978705 -24.09743301603896 183.8972706290253 -24.18493647813552 180.927507767689 21.77982834967119 183.3865005984164 22.34624046607855 183.3865006010039 21.69232478025135 180.4167377402334 22.43374406263849 180.4167377436214 -19.02573567660311 182.6433432791997 -18.45932356019514 182.6433433037665 -19.11323913079876 179.6735804176327 -18.37181984841164 179.6735804497872 16.08962153688819 179.2816530399302 16.177125073436 182.2514158990809 16.83104081927537 179.2816530515248 16.74353718984334 182.2514159079346 -12.67676592870691 181.7259241739814 -12.11035381229911 181.7259241983757 -12.76426938377917 178.756161312437 -12.02285010139201 178.7561613443727 9.365173940327047 178.509785573751 9.452677447167668 181.479548433773 10.10659322271409 178.509785592762 10.01908956357524 181.4795484482947 -5.483195576073084 181.2075338535372 -4.916783459665393 181.2075338761027 -5.57069904073872 178.2377709922737 -4.829279758351698 178.2377710218137 1.977241966993421 178.153736835504 2.064745449316523 181.1234996962465 2.718661249380643 178.153736860636 2.631157565724227 181.1234997154469</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10434\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10430\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10428\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10429\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10430\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 0 8 3 8 0 9 2 12 13 12 2 1 9 16 8 16 9 17 13 20 21 20 13 12 17 24 16 24 17 25 21 28 29 28 21 20 32 25 33 25 32 24 29 36 37 36 29 28 40 33 41 33 40 32 37 44 45 44 37 36 48 41 49 41 48 40 45 52 53 52 45 44 56 49 57 49 56 48 53 60 61 60 53 52 64 57 65 57 64 56 61 68 69 68 61 60 72 65 73 65 72 64 68 76 69 76 68 77 72 80 81 80 72 73 77 84 76 84 77 85 81 88 89 88 81 80 85 92 84 92 85 93 89 92 93 92 89 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10430\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10431\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 5 5 11 6 4 7 11 6 5 5 6 8 7 9 14 10 15 11 14 10 7 9 18 12 10 13 19 14 11 15 19 14 10 13 14 16 15 17 22 18 23 19 22 18 15 17 26 20 18 21 27 22 19 23 27 22 18 21 22 24 23 25 30 26 31 27 30 26 23 25 27 28 34 29 26 30 35 31 26 30 34 29 30 32 31 33 38 34 39 35 38 34 31 33 34 36 42 37 35 38 43 39 35 38 42 37 38 40 39 41 46 42 47 43 46 42 39 41 42 44 50 45 43 46 51 47 43 46 50 45 46 48 47 49 54 50 55 51 54 50 47 49 50 52 58 53 51 54 59 55 51 54 58 53 54 56 55 57 62 58 63 59 62 58 55 57 58 60 66 61 59 62 67 63 59 62 66 61 62 64 63 65 70 66 71 67 70 66 63 65 66 68 74 69 67 70 75 71 67 70 74 69 78 72 70 73 79 74 71 75 79 74 70 73 75 76 74 77 82 78 83 79 82 78 74 77 86 80 78 81 87 82 79 83 87 82 78 81 82 84 83 85 90 86 91 87 90 86 83 85 94 88 86 89 95 90 87 91 95 90 86 89 90 92 91 93 95 94 94 95 95 94 91 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10435\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10436\">\r\n\t\t\t\t\t<float_array count=\"408\" id=\"ID10440\">-152.437149061175 -110.7928502606102 -3.732005312593174 -146.696884494067 114.4116775936003 -2.895429464495464 -151.7576190557479 154.127183955892 -2.882678932592171 -78.80343744073912 -141.6621338858826 -2.195024445480158 -131.5320319522232 77.35885661306926 -2.675549355049952 -107.296521069846 45.49380953144861 -2.238023070380223 -75.64196186248137 20.98808664786112 -1.612667303761555 0.3075659423980142 -152.4177250590403 -0.4731443815380771 -38.72556022850085 5.511712479225736 -0.842099017199871 0.9368920679942221 0.1193763491889399 0.02116883402413805 79.50457694479542 -142.3266480160882 1.316291598270254 40.64246444828768 5.178557053783024 0.9183059723272891 77.68528776915628 20.3444797877967 1.788173984421519 109.5409548431164 44.583611982718 2.57149280293379 153.3904501437953 -112.0765929820664 3.051336389185963 134.0385545990405 76.24409683487694 3.214880544699554 149.5086160960971 113.1683246190033 3.674491398338432 154.8968802116867 152.8399702374622 3.919003643861288 216.9299853887487 -63.72905121404561 4.613749556043331 155.5764102170833 417.760004453969 4.768330023893213 218.7148143133575 368.8807190417423 6.015668988316975 265.7930683527457 -0.578827787077941 5.897055223425923 267.0551329874359 305.3224743665703 6.888361960669499 296.6497606801856 73.07049392897956 6.813798230867178 297.3030534078571 231.4166597680987 7.326936357141676 307.3972297849928 152.1998343760787 7.301504057491911 -294.1637922519283 75.55049442526183 -6.290611645790705 -293.5104995242671 233.8966602643804 -5.777473519512569 -304.257968629079 154.7673198172848 -6.265179346250079 -263.9158718315089 1.64467982678346 -5.852037249313071 -262.6538071959565 307.5459819825067 -4.860730512142254 -215.5755531574325 -61.91356484839504 -4.979344276889606 -213.7907242332419 370.6962054078218 -3.577424844723282 -150.2511889899415 419.0437471745701 -2.015011677855 -146.3693549401669 193.7988295743493 -2.63816668706022 -76.3653157888657 449.2938022094464 -0.2799668870156893 -130.8992934422522 230.7230573605477 -2.178555833354039 -106.401693687601 262.3835422110435 -1.535168091606465 -74.54602661531703 286.622674404711 -0.751849273165135 2.831695213514877 459.3848792523952 1.509469092983636 -37.50320329235933 301.7885971395803 0.1180187389891216 2.202369087930038 306.8477778441672 1.015155877403231 41.86482138442602 301.455441714127 1.878423728488997 81.94269859665337 448.6292880792361 3.231349156769284 78.78122301840676 285.9790675454887 2.648992015077965 110.4357822257623 261.4733446619102 3.274347781780307 134.6712931081452 229.6082975802899 3.711874066364544 149.8361456499915 192.5554765997579 3.931754175744572 154.8968802116867 152.8399702374622 3.919003643861288 149.8361456499915 192.5554765997579 3.931754175744572 155.5764102170833 417.760004453969 4.768330023893213 134.6712931081452 229.6082975802899 3.711874066364544 110.4357822257623 261.4733446619102 3.274347781780307 81.94269859665337 448.6292880792361 3.231349156769284 78.78122301840676 285.9790675454887 2.648992015077965 41.86482138442602 301.455441714127 1.878423728488997 2.831695213514877 459.3848792523952 1.509469092983636 2.202369087930038 306.8477778441672 1.015155877403231 -37.50320329235933 301.7885971395803 0.1180187389891216 -74.54602661531703 286.622674404711 -0.751849273165135 -76.3653157888657 449.2938022094464 -0.2799668870156893 -106.401693687601 262.3835422110435 -1.535168091606465 -130.8992934422522 230.7230573605477 -2.178555833354039 -146.3693549401669 193.7988295743493 -2.63816668706022 -150.2511889899415 419.0437471745701 -2.015011677855 -151.7576190557479 154.127183955892 -2.882678932592171 -213.7907242332419 370.6962054078218 -3.577424844723282 -152.437149061175 -110.7928502606102 -3.732005312593174 -215.5755531574325 -61.91356484839504 -4.979344276889606 -262.6538071959565 307.5459819825067 -4.860730512142254 -263.9158718315089 1.64467982678346 -5.852037249313071 -293.5104995242671 233.8966602643804 -5.777473519512569 -294.1637922519283 75.55049442526183 -6.290611645790705 -304.257968629079 154.7673198172848 -6.265179346250079 307.3972297849928 152.1998343760787 7.301504057491911 296.6497606801856 73.07049392897956 6.813798230867178 297.3030534078571 231.4166597680987 7.326936357141676 267.0551329874359 305.3224743665703 6.888361960669499 265.7930683527457 -0.578827787077941 5.897055223425923 218.7148143133575 368.8807190417423 6.015668988316975 216.9299853887487 -63.72905121404561 4.613749556043331 153.3904501437953 -112.0765929820664 3.051336389185963 149.5086160960971 113.1683246190033 3.674491398338432 134.0385545990405 76.24409683487694 3.214880544699554 109.5409548431164 44.583611982718 2.57149280293379 79.50457694479542 -142.3266480160882 1.316291598270254 77.68528776915628 20.3444797877967 1.788173984421519 40.64246444828768 5.178557053783024 0.9183059723272891 0.9368920679942221 0.1193763491889399 0.02116883402413805 0.3075659423980142 -152.4177250590403 -0.4731443815380771 -38.72556022850085 5.511712479225736 -0.842099017199871 -75.64196186248137 20.98808664786112 -1.612667303761555 -78.80343744073912 -141.6621338858826 -2.195024445480158 -107.296521069846 45.49380953144861 -2.238023070380223 -131.5320319522232 77.35885661306926 -2.675549355049952 -146.696884494067 114.4116775936003 -2.895429464495464 -304.257968629079 154.7673198172848 -6.265179346250079 -295.1265491447837 233.6673582550181 67.03888050884234 -305.8740182495874 154.5380178079173 66.55117468216122 -293.5104995242671 233.8966602643804 -5.777473519512569 -293.5104995242671 233.8966602643804 -5.777473519512569 -304.257968629079 154.7673198172848 -6.265179346250079 -295.1265491447837 233.6673582550181 67.03888050884234 -305.8740182495874 154.5380178079173 66.55117468216122 -294.1637922519283 75.55049442526183 -6.290611645790705 -295.7798418724499 75.32119241589746 66.5257423825442 -294.1637922519283 75.55049442526183 -6.290611645790705 -295.7798418724499 75.32119241589746 66.5257423825442 -263.9158718315089 1.64467982678346 -5.852037249313071 -265.5319214520223 1.415377817416456 66.96431677894361 -263.9158718315089 1.64467982678346 -5.852037249313071 -265.5319214520223 1.415377817416456 66.96431677894361 -215.5755531574325 -61.91356484839504 -4.979344276889606 -217.1916027779478 -62.14286685775083 67.83700975136344 -215.5755531574325 -61.91356484839504 -4.979344276889606 -217.1916027779478 -62.14286685775083 67.83700975136344 -152.437149061175 -110.7928502606102 -3.732005312593174 -154.0531986816757 -111.0221522699848 69.08434871573081 -154.0531986816757 -111.0221522699848 69.08434871573081 -152.437149061175 -110.7928502606102 -3.732005312593174 -78.80343744073912 -141.6621338858826 -2.195024445480158 -80.41948706124595 -141.8914358952405 70.62132958288566 -80.41948706124595 -141.8914358952405 70.62132958288566 -78.80343744073912 -141.6621338858826 -2.195024445480158 0.3075659423980142 -152.4177250590403 -0.4731443815380771 -1.30848367810745 -152.6470270683977 72.34320964672224 -1.30848367810745 -152.6470270683977 72.34320964672224 0.3075659423980142 -152.4177250590403 -0.4731443815380771 79.50457694479542 -142.3266480160882 1.316291598270254 77.88852732427426 -142.555950025452 74.1326456266379 77.88852732427426 -142.555950025452 74.1326456266379 79.50457694479542 -142.3266480160882 1.316291598270254 153.3904501437953 -112.0765929820664 3.051336389185963 151.7744005232571 -112.3058949914348 75.86769041752268 151.7744005232571 -112.3058949914348 75.86769041752268 153.3904501437953 -112.0765929820664 3.051336389185963</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"136\" source=\"#ID10440\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10437\">\r\n\t\t\t\t\t<float_array count=\"408\" id=\"ID10441\">-0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 -0.02218792451954285 -0.003148254615077673 0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.02218792451954285 0.003148254615077673 -0.9997488607137263 0.9997453049990299 -0.004196533475318144 0.02217463053101918 0.9646120083115676 -0.2628690234820207 0.02058032834366744 0.9997453049990297 -0.004196533475348349 0.02217463053101909 0.9646120083115698 -0.2628690234820119 0.02058032834366752 -0.9646120083115698 0.2628690234820119 -0.02058032834366752 -0.9997453049990299 0.004196533475318144 -0.02217463053101918 -0.9646120083115676 0.2628690234820207 -0.02058032834366744 -0.9997453049990297 0.004196533475348349 -0.02217463053101909 0.9667476113080448 0.2547619433526184 0.02225776829305009 0.9667476113080549 0.2547619433525792 0.02225776829305019 -0.9667476113080448 -0.2547619433526184 -0.02225776829305009 -0.9667476113080549 -0.2547619433525792 -0.02225776829305019 0.8678676655323788 0.4963588147551118 0.02082407592859114 0.8678676655323908 0.4963588147550908 0.02082407592859134 -0.8678676655323788 -0.4963588147551118 -0.02082407592859114 -0.8678676655323908 -0.4963588147550908 -0.02082407592859134 0.7098439725698561 0.7041296532037191 0.01797125720297429 0.7098439725698018 0.704129653203774 0.01797125720297326 -0.7098439725698561 -0.7041296532037191 -0.01797125720297429 -0.7098439725698018 -0.704129653203774 -0.01797125720297326 0.5034455859492211 0.8639152194158598 0.01389372699790064 0.503445585949195 0.8639152194158749 0.01389372699790011 -0.503445585949195 -0.8639152194158749 -0.01389372699790011 -0.5034455859492211 -0.8639152194158598 -0.01389372699790064 0.2627382146293863 0.9648263911121482 0.008869362258387036 0.2627382146294252 0.9648263911121376 0.008869362258387865 -0.2627382146294252 -0.9648263911121376 -0.008869362258387865 -0.2627382146293863 -0.9648263911121482 -0.008869362258387036 0.004125668178015494 0.9999862387051481 0.003240565138284141 0.004125668177993812 0.9999862387051484 0.00324056513828366 -0.004125668177993812 -0.9999862387051484 -0.00324056513828366 -0.004125668178015494 -0.9999862387051481 -0.003240565138284141 -0.2547680357417579 0.96699867668579 -0.002609071140685213 -0.254768035741797 0.9669986766857798 -0.002609071140686114 0.254768035741797 -0.9669986766857798 0.002609071140686114 0.2547680357417579 -0.96699867668579 0.002609071140685213 -0.496299719049786 0.868111752891169 -0.008280903533155448 -0.4962997190497683 0.8681117528911791 -0.008280903533155021 0.4962997190497683 -0.8681117528911791 0.008280903533155021 0.496299719049786 -0.868111752891169 0.008280903533155448</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"136\" source=\"#ID10441\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10439\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID10442\">-76.27695970370466 93.0578082931729 -73.41785922977209 94.30652392828101 -72.96963097250377 94.57390676216181 -75.98283612066842 92.30863619588533 -73.73976656995437 93.97595585063101 -73.91341553979417 93.60473019741417 -73.92697224896541 93.21814538341766 -75.38759268425619 91.63243160212581 -73.77951283014147 92.84254652485407 -73.48108639902721 92.50353006322773 -74.53179425097315 91.07527673747809 -73.05203022372986 92.22419941014756 -72.52158377357713 92.02359048801618 -71.92589609745379 91.91537446332777 -73.4737620698037 90.6751407852373 -71.30556232612479 91.90692607935111 -70.70285718102157 91.99882107948247 -70.15885402166769 92.18479697133631 -72.28559928532494 90.45929234926534 -66.85152529046701 93.70089544032548 -66.87856559692833 92.92981067987448 -71.04827722782484 90.44244114378897 -67.22492704068827 92.18936140840718 -69.84611735081572 90.62573555060352 -67.86700566174373 91.53000802012359 -68.76104486315514 90.99668435880244 -75.26147933242771 95.22869571337465 -73.28236764335583 96.13296818289479 -74.36744013101644 95.76201937469594 -75.90355795348327 94.56934232509103 -72.08020776631292 96.31626258971447 -76.2499193972433 93.82889305362369 -70.84288570884523 96.29941138423857 -69.65472292439755 96.08356294827212 -72.42562781314997 94.75988265401573 -68.59669074319834 95.68342699602013 -71.82292266801302 94.8517776541523 -71.20258889671646 94.84332927017599 -70.60690122062421 94.73511324549338 -67.74089230991545 95.1262721313725 -70.07645477044156 94.53450432335069 -69.64739859514431 94.25517367027049 -69.34897216403012 93.91615720864415 -67.14564887350326 94.45006753761298 -69.20151274520622 93.54055835008053 -69.2150694543774 93.15397353608415 -69.38871842421716 92.78274788286727 -69.71062576439945 92.45217980521726 -64.9096534018213 87.40796949028953 -63.90946877291474 87.9688526948751 -64.90357629584412 87.97300503700292 -63.91554587889197 87.40381714816213 -54.00599055208298 87.36242533487236 -53.00580591512966 87.92330853388076 -53.99991343799688 87.92746088154988 -53.01188302921571 87.35827298720265 -55.00009807496263 87.36657768256507 -53.99991343803823 87.92746088162079 -54.99402096087604 87.93161322924108 -54.0059905521249 87.36242533494416 -44.03339542030118 87.32077030560593 -43.03321079139374 87.88165351019011 -44.02731831432416 87.88580585231877 -43.03928789737064 87.31661796347724 -44.02731831432298 87.88580585232062 -45.02750294323002 87.32492264773605 -44.03339542029998 87.32077030560798 -45.02142583725331 87.88995819444922 -45.02142583725255 87.88995819444918 -46.02161046615918 87.32907498986387 -45.02750294322927 87.32492264773615 -46.01553336018232 87.89411053657723 -46.0155333601826 87.89411053657565 -47.01571798908809 87.33322733199145 -46.02161046615945 87.32907498986305 -47.00964088311123 87.89826287870325 -47.00964088311066 87.89826287870399 -48.00982551201741 87.3373796741195 -47.01571798908751 87.33322733199154 -48.00374840604037 87.90241522083279 -48.00374840604152 87.9024152208339 -49.00393303492059 87.34153201624889 -48.00982551201855 87.3373796741205 -48.99785592894333 87.90656756296207</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"84\" source=\"#ID10442\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10438\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10436\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10437\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"66\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10438\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10439\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 6 6 3 3 7 7 6 6 7 7 8 8 8 8 7 7 9 9 9 9 7 7 10 10 9 9 10 10 11 11 11 11 10 10 12 12 12 12 10 10 13 13 13 13 10 10 14 14 13 13 14 14 15 15 15 15 14 14 16 16 16 16 14 14 17 17 17 17 14 14 18 18 17 17 18 18 19 19 19 19 18 18 20 20 20 20 18 18 21 21 20 20 21 21 22 22 22 22 21 21 23 23 22 22 23 23 24 24 24 24 23 23 25 25 26 26 27 27 28 28 27 27 26 26 29 29 27 27 29 29 30 30 30 30 29 29 31 31 30 30 31 31 32 32 32 32 31 31 0 0 32 32 0 0 2 2 32 32 2 2 33 33 33 33 2 2 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 35 35 37 37 38 38 35 35 38 38 39 39 39 39 38 38 40 40 39 39 40 40 41 41 39 39 41 41 42 42 39 39 42 42 43 43 43 43 42 42 44 44 43 43 44 44 45 45 43 43 45 45 19 19 19 19 45 45 46 46 19 19 46 46 47 47 19 19 47 47 17 17 96 48 97 49 98 50 97 49 96 48 99 51 104 52 98 53 105 54 98 53 104 52 96 55 108 56 105 57 109 58 105 57 108 56 104 59 112 60 109 61 113 62 109 61 112 60 108 63 113 64 116 65 112 66 116 65 113 64 117 67 117 68 120 69 116 70 120 69 117 68 121 71 121 72 124 73 120 74 124 73 121 72 125 75 125 76 128 77 124 78 128 77 125 76 129 79 129 80 132 81 128 82 132 81 129 80 133 83</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"66\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10438\" />\r\n\t\t\t\t\t<p>48 49 50 49 51 50 51 52 50 50 52 53 52 54 53 54 55 53 53 55 56 55 57 56 57 58 56 58 59 56 56 59 60 59 61 60 61 62 60 62 63 60 60 63 64 63 65 64 64 65 66 65 67 66 67 68 66 66 68 69 68 70 69 69 70 71 70 72 71 73 71 72 74 75 76 76 75 77 75 78 77 77 78 79 78 80 79 79 80 50 50 80 48 80 81 48 48 81 82 82 81 83 83 81 84 81 85 84 84 85 86 86 85 87 87 85 88 85 89 88 88 89 90 90 89 91 89 92 91 91 92 93 93 92 94 94 92 95 92 67 95 65 95 67 100 101 102 103 102 101 101 106 103 107 103 106 106 110 107 111 107 110 110 114 111 115 111 114 118 115 119 114 119 115 122 118 123 119 123 118 126 122 127 123 127 122 130 126 131 127 131 126 134 130 135 131 135 130</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10443\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10444\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10448\">-4.695295902210091 212.8486388599594 1052.418732992528 15.30890824265384 206.9131207408566 855.944162057478 -0.3275942251361812 213.4683740204028 855.617776159077 10.94120656558084 206.2933855804143 1052.745118891004 10.94120656558084 206.2933855804143 1052.745118891004 -4.695295902210091 212.8486388599594 1052.418732992528 15.30890824265384 206.9131207408566 855.944162057478 -0.3275942251361812 213.4683740204028 855.617776159077 -21.49492982540392 215.1326447075608 1052.053082785827 -17.127228148325 215.7523798679979 855.2521259523219 -21.49492982540392 215.1326447075608 1052.053082785827 -17.127228148325 215.7523798679979 855.2521259523219 28.71667745238779 196.5333497072876 856.2090409881566 24.34897577531388 195.9136145468489 1053.00999782167 24.34897577531388 195.9136145468489 1053.00999782167 28.71667745238779 196.5333497072876 856.2090409881566 -38.31282791484318 212.989751899202 1051.673086728328 -33.94512623776677 213.6094870596407 854.8721298948804 -38.31282791484318 212.989751899202 1051.673086728328 -33.94512623776677 213.6094870596407 854.8721298948804 38.98199608982509 183.0364251622617 856.3943618895482 34.6142944127505 182.4166900018187 1053.195318723065 38.98199608982509 183.0364251622617 856.3943618895482 34.6142944127505 182.4166900018187 1053.195318723065 -54.00287820864423 206.565995038462 1051.304640923192 -49.63517653155509 207.1857301988997 854.5036840897537 -54.00287820864423 206.565995038462 1051.304640923192 -49.63517653155509 207.1857301988997 854.5036840897537 45.40529965405085 167.342140208797 856.4874954486877 41.03759797698331 166.7224050483476 1053.288452282139 45.40529965405085 167.342140208797 856.4874954486877 41.03759797698331 166.7224050483476 1053.288452282139 -67.49582970828305 196.2991425396478 1050.972854343299 -63.12812803120164 196.9188777000934 854.1718975098956 -67.49582970828305 196.2991425396478 1050.972854343299 -63.12812803120164 196.9188777000934 854.1718975098956 47.54885062218796 150.5200344304294 856.4820947672743 43.18114894511814 149.9002992699772 1053.283051600711 47.54885062218796 150.5200344304294 856.4820947672743 43.18114894511814 149.9002992699772 1053.283051600711 -73.50445839016493 183.5085985942228 853.8993808624182 -77.87216006724907 182.888863433771 1050.700337695811 -73.50445839016493 183.5085985942228 853.8993808624182 -77.87216006724907 182.888863433771 1050.700337695811 45.26656953813586 133.7165065361309 856.3785278928444 40.8988678610724 133.0967713756731 1053.179484726299 45.26656953813586 133.7165065361309 856.3785278928444 40.8988678610724 133.0967713756731 1053.179484726299 -80.05703784216962 167.8687812408281 853.7047057063392 -84.42473951925672 167.2490460803809 1050.505662539721 -80.05703784216962 167.8687812408281 853.7047057063392 -84.42473951925672 167.2490460803809 1050.505662539721 38.71399008706476 118.0766891849819 856.1838527367745 34.34628841002063 117.4569540245636 1052.984809570235 38.71399008706476 118.0766891849819 856.1838527367745 34.34628841002063 117.4569540245636 1052.984809570235 -82.33931892622081 151.0652533465219 853.6011388318002 -86.70702060330814 150.4455181860793 1050.402095665238 -82.33931892622081 151.0652533465219 853.6011388318002 -86.70702060330814 150.4455181860793 1050.402095665238 28.33765972672677 104.6664100773185 855.9113360892079 23.96995804964558 104.0466749168678 1052.712292922608 28.33765972672677 104.6664100773185 855.9113360892079 23.96995804964558 104.0466749168678 1052.712292922608 -80.19576795808189 134.2431475681695 853.5957381504049 -84.56346963517194 133.6234124077084 1050.396694983854 -80.19576795808189 134.2431475681695 853.5957381504049 -84.56346963517194 133.6234124077084 1050.396694983854 10.47700654816504 93.7798224166668 1052.38050634269 14.84470822528101 94.39955757713642 855.5795495091588 10.47700654816504 93.7798224166668 1052.38050634269 14.84470822528101 94.39955757713642 855.5795495091588 -73.77246439385181 118.5488626146976 853.6888717094389 -78.14016607093913 117.9291274542362 1050.48982854289 -73.77246439385181 118.5488626146976 853.6888717094389 -78.14016607093913 117.9291274542362 1050.48982854289 -5.213043743334538 87.35606555685318 1052.012060537612 -0.8453420662635836 87.97580071731835 855.2111037041541 -5.213043743334538 87.35606555685318 1052.012060537612 -0.8453420662635836 87.97580071731835 855.2111037041541 -63.50714575641473 105.0519380696749 853.8741926109378 -67.87484743350342 104.4322029092135 1050.675149444322 -63.50714575641473 105.0519380696749 853.8741926109378 -67.87484743350342 104.4322029092135 1050.675149444322 -22.03094183278108 85.21317274849521 1051.632064480056 -17.66324015569808 85.83290790895671 854.8311076466016 -22.03094183278108 85.21317274849521 1051.632064480056 -17.66324015569808 85.83290790895671 854.8311076466016 -50.09937654667988 94.67216703609782 854.1390715415819 -54.46707822375879 94.05243187563772 1050.940028374964 -54.46707822375879 94.05243187563772 1050.940028374964 -50.09937654667988 94.67216703609782 854.1390715415819 -38.83057575598059 87.49717859608687 1051.266414273476 -34.46287407889804 88.11691375655462 854.465457440012 -38.83057575598059 87.49717859608687 1051.266414273476 -34.46287407889804 88.11691375655462 854.465457440012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10448\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10445\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10449\">0.2627382146295693 0.964826391112098 0.008869362258430083 0.5034455859492044 0.8639152194158688 0.01389372699793893 0.2627382146290688 0.9648263911122343 0.008869362258419404 0.5034455859493228 0.8639152194157999 0.01389372699794133 -0.5034455859493228 -0.8639152194157999 -0.01389372699794133 -0.2627382146295693 -0.964826391112098 -0.008869362258430083 -0.5034455859492044 -0.8639152194158688 -0.01389372699793893 -0.2627382146290688 -0.9648263911122343 -0.008869362258419404 0.004125668178177351 0.9999862387051474 0.003240565138308636 0.00412566817780628 0.999986238705149 0.003240565138300405 -0.004125668178177351 -0.9999862387051474 -0.003240565138308636 -0.00412566817780628 -0.999986238705149 -0.003240565138300405 0.7098439725699495 0.7041296532036241 0.0179712572030089 0.7098439725697789 0.7041296532037961 0.01797125720300565 -0.7098439725697789 -0.7041296532037961 -0.01797125720300565 -0.7098439725699495 -0.7041296532036241 -0.0179712572030089 -0.254768035741302 0.9669986766859102 -0.002609071140694205 -0.2547680357416751 0.9669986766858119 -0.002609071140702793 0.254768035741302 -0.9669986766859102 0.002609071140694205 0.2547680357416751 -0.9669986766858119 0.002609071140702793 0.867867665532473 0.4963588147549466 0.02082407592859883 0.8678676655322835 0.4963588147552783 0.02082407592859567 -0.867867665532473 -0.4963588147549466 -0.02082407592859883 -0.8678676655322835 -0.4963588147552783 -0.02082407592859567 -0.4962997190493665 0.8681117528914089 -0.008280903533152233 -0.4962997190500226 0.8681117528910337 -0.008280903533167973 0.4962997190493665 -0.8681117528914089 0.008280903533152233 0.4962997190500226 -0.8681117528910337 0.008280903533167973 0.9667476113080383 0.2547619433526412 0.0222577682930602 0.9667476113079975 0.2547619433527972 0.02225776829305979 -0.9667476113080383 -0.2547619433526412 -0.0222577682930602 -0.9667476113079975 -0.2547619433527972 -0.02225776829305979 -0.7040093966785943 0.7100644477595626 -0.01338840603467422 -0.7040093966786502 0.7100644477595072 -0.01338840603467564 0.7040093966785943 -0.7100644477595626 0.01338840603467422 0.7040093966786502 -0.7100644477595072 0.01338840603467564 0.9997453049990289 -0.004196533475445775 0.02217463053104242 0.9997453049990303 -0.004196533475093668 0.02217463053104356 -0.9997453049990289 0.004196533475445775 -0.02217463053104242 -0.9997453049990303 0.004196533475093668 -0.02217463053104356 -0.8637419973544189 0.5036274239499723 -0.01758351079033019 -0.8637419973543701 0.5036274239500563 -0.01758351079032883 0.8637419973544189 -0.5036274239499723 0.01758351079033019 0.8637419973543701 -0.5036274239500563 0.01758351079032883 0.9646120083114905 -0.2628690234823064 0.02058032834363104 0.9646120083116271 -0.2628690234818052 0.02058032834363565 -0.9646120083114905 0.2628690234823064 -0.02058032834363104 -0.9646120083116271 0.2628690234818052 -0.02058032834363565 -0.96461200831171 0.2628690234814907 -0.02058032834376134 -0.9646120083114701 0.262869023482372 -0.02058032834375325 0.96461200831171 -0.2628690234814907 0.02058032834376134 0.9646120083114701 -0.262869023482372 0.02058032834375325 0.8637419973542432 -0.5036274239502775 0.01758351079023581 0.8637419973545319 -0.5036274239497816 0.01758351079024379 -0.8637419973542432 0.5036274239502775 -0.01758351079023581 -0.8637419973545319 0.5036274239497816 -0.01758351079024379 -0.9997453049990281 0.004196533475023413 -0.02217463053115592 -0.9997453049990254 0.004196533475675638 -0.02217463053115381 0.9997453049990281 -0.004196533475023413 0.02217463053115592 0.9997453049990254 -0.004196533475675638 0.02217463053115381 0.7040093966783156 -0.7100644477598398 0.01338840603462376 0.7040093966788625 -0.7100644477592972 0.0133884060346376 -0.7040093966783156 0.7100644477598398 -0.01338840603462376 -0.7040093966788625 0.7100644477592972 -0.0133884060346376 -0.9667476113079905 -0.2547619433528134 -0.02225776829317314 -0.966747611308082 -0.2547619433524661 -0.02225776829317408 0.9667476113079905 0.2547619433528134 0.02225776829317314 0.966747611308082 0.2547619433524661 0.02225776829317408 0.4962997190501283 -0.868111752890974 0.008280903533089435 0.4962997190493848 -0.8681117528913992 0.00828090353307159 -0.4962997190501283 0.868111752890974 -0.008280903533089435 -0.4962997190493848 0.8681117528913992 -0.00828090353307159 -0.8678676655323044 -0.4963588147552365 -0.02082407592871811 -0.8678676655324902 -0.4963588147549113 -0.02082407592872121 0.8678676655323044 0.4963588147552365 0.02082407592871811 0.8678676655324902 0.4963588147549113 0.02082407592872121 0.2547680357421877 -0.9669986766856772 0.002609071140588819 0.2547680357415912 -0.9669986766858343 0.002609071140575086 -0.2547680357421877 0.9669986766856772 -0.002609071140588819 -0.2547680357415912 0.9669986766858343 -0.002609071140575086 -0.7098439725698622 -0.7041296532037089 -0.01797125720313142 -0.709843972569882 -0.7041296532036889 -0.0179712572031318 0.7098439725698622 0.7041296532037089 0.01797125720313142 0.709843972569882 0.7041296532036889 0.0179712572031318 -0.004125668177976436 -0.9999862387051477 -0.003240565138426978 -0.004125668178050153 -0.9999862387051475 -0.003240565138428614 0.004125668177976436 0.9999862387051477 0.003240565138426978 0.004125668178050153 0.9999862387051475 0.003240565138428614 -0.5034455859492367 -0.8639152194158483 -0.01389372699805523 -0.5034455859491013 -0.8639152194159273 -0.01389372699805248 0.5034455859491013 0.8639152194159273 0.01389372699805248 0.5034455859492367 0.8639152194158483 0.01389372699805523 -0.2627382146293699 -0.9648263911121513 -0.008869362258539461 -0.2627382146293447 -0.9648263911121582 -0.008869362258538922 0.2627382146293699 0.9648263911121513 0.008869362258539461 0.2627382146293447 0.9648263911121582 0.008869362258538922</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10449\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10447\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10450\">27.10600504993833 209.5367834455014 27.42004444504668 209.5367834347044 27.10600492461507 205.8914057843736 27.42004431972339 205.8914057735779 28.69687192996838 209.5367836100409 29.01091132507669 209.5367836016424 28.69687183249427 205.8914059489144 29.0109112276025 205.8914059405149 23.65720808764235 209.5367834387598 23.97124748275053 209.5367834262999 23.65720794301041 205.8914057776322 23.97124733811864 205.891405765172 28.32139377889473 209.5367838880492 28.6354331740029 209.5367838826234 28.32139371591247 205.8914062269217 28.63543311102065 205.891406221497 18.89955009768117 205.8914059173869 18.58551070257293 205.8914059306594 18.89955025176533 209.5367835785145 18.58551085665703 209.536783591787 26.00515881220799 209.5367842047433 26.3191982073165 209.5367842026567 26.00515878800979 205.8914065436169 26.31919818311809 205.8914065415304 12.55058038397555 205.8914061893585 12.23654098886739 205.8914062025427 12.55058053701126 209.5367838504862 12.23654114190296 209.5367838636692 21.90601461511351 209.5367844749259 22.22005401022168 209.5367844763232 21.90601463134825 205.8914068137996 22.22005402645643 205.8914068151976 5.357009990815655 205.8914065082161 5.042970595707301 205.8914065204105 5.357010132373729 209.5367841693426 5.042970737265327 209.5367841815367 16.30331114607609 205.8914069647284 16.30331109051461 209.5367846258539 16.61735054118439 205.8914069695155 16.61735048562303 209.5367846306409 -2.190931147437435 205.8914067886198 -2.504970542545583 205.8914067989939 -2.190931027003862 209.5367844497459 -2.504970422112093 209.5367844601204 9.57886331577526 205.8914069556269 9.578863224673604 209.5367846167522 9.892902710883522 205.8914069634741 9.892902619781811 209.5367846245993 -9.578863315785238 205.8914069556244 -9.89290271084846 205.8914069634714 -9.578863224683518 209.536784616751 -9.892902619745927 209.536784624598 2.190931147445418 205.8914067886216 2.190931027011805 209.5367844497468 2.504970542553717 205.8914067989937 2.504970422120015 209.5367844601199 -16.30331114602921 205.8914069647271 -16.61735054117937 205.8914069695133 -16.3033110904669 209.5367846258537 -16.61735048561797 209.5367846306388 -5.357009990813253 205.8914065082145 -5.357010132371496 209.5367841693408 -5.042970595705171 205.8914065204093 -5.042970737263081 209.5367841815358 -21.90601461511841 209.5367844749241 -21.9060146313531 205.8914068137985 -22.22005401026927 209.5367844763218 -22.22005402650329 205.8914068151938 -12.55058038397714 205.8914061893562 -12.55058053701266 209.5367838504826 -12.23654098886884 205.8914062025384 -12.23654114190434 209.5367838636649 -26.00515881224914 209.5367842047376 -26.00515878805008 205.8914065436097 -26.3191982073117 209.5367842026511 -26.31919818311341 205.8914065415245 -18.89955009768454 205.8914059173816 -18.89955025176854 209.536783578508 -18.58551070257634 205.8914059306561 -18.58551085666035 209.5367835917813 -28.32139377889414 209.5367838880427 -28.32139371591193 205.8914062269162 -28.63543317400246 209.5367838826159 -28.63543311102004 205.8914062214894 -23.65720808764218 209.5367834387508 -23.65720794301036 205.8914057776256 -23.97124748275063 209.5367834262912 -23.97124733811869 205.891405765166 -28.69687192996815 209.5367836100328 -28.69687183249392 205.8914059489063 -29.01091132507649 209.5367836016365 -29.01091122760229 205.8914059405098 -27.10600504993682 209.5367834454929 -27.10600492461355 205.8914057843662 -27.420044445045 209.5367834346953 -27.42004431972172 205.8914057735701</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10450\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10446\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10444\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10445\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10446\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 2 9 2 8 0 3 12 1 12 3 13 16 9 17 9 16 8 20 13 21 13 20 12 24 17 25 17 24 16 28 21 29 21 28 20 32 25 33 25 32 24 36 29 37 29 36 28 32 40 41 40 32 33 44 37 45 37 44 36 41 48 49 48 41 40 52 45 53 45 52 44 49 56 57 56 49 48 60 53 61 53 60 52 57 64 65 64 57 56 60 68 69 68 60 61 65 72 73 72 65 64 69 76 77 76 69 68 73 80 81 80 73 72 77 84 85 84 77 76 88 81 80 81 88 89 85 92 93 92 85 84 93 89 88 89 93 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10446\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10447\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 5 4 10 5 7 6 11 7 7 6 10 5 14 8 4 9 15 10 6 11 15 10 4 9 10 12 18 13 11 14 19 15 11 14 18 13 15 16 22 17 14 18 23 19 14 18 22 17 18 20 26 21 19 22 27 23 19 22 26 21 22 24 30 25 23 26 31 27 23 26 30 25 26 28 34 29 27 30 35 31 27 30 34 29 30 32 38 33 31 34 39 35 31 34 38 33 35 36 34 37 42 38 43 39 42 38 34 37 38 40 46 41 39 42 47 43 39 42 46 41 42 44 43 45 50 46 51 47 50 46 43 45 46 48 54 49 47 50 55 51 47 50 54 49 50 52 51 53 58 54 59 55 58 54 51 53 54 56 62 57 55 58 63 59 55 58 62 57 58 60 59 61 66 62 67 63 66 62 59 61 63 64 62 65 70 66 71 67 70 66 62 65 66 68 67 69 74 70 75 71 74 70 67 69 70 72 71 73 78 74 79 75 78 74 71 73 74 76 75 77 82 78 83 79 82 78 75 77 78 80 79 81 86 82 87 83 86 82 79 81 90 84 91 85 83 86 82 87 83 86 91 85 86 88 87 89 94 90 95 91 94 90 87 89 94 92 95 93 90 94 91 95 90 94 95 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10451\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10452\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10456\">-54.46707822375879 94.05243187563772 1050.940028374964 -72.24254911058984 103.8124677487476 1247.476106277629 -67.87484743350342 104.4322029092135 1050.675149444322 -58.83477990083611 93.43269671518289 1247.740985208269 -58.83477990083611 93.43269671518289 1247.740985208269 -54.46707822375879 94.05243187563772 1050.940028374964 -72.24254911058984 103.8124677487476 1247.476106277629 -67.87484743350342 104.4322029092135 1050.675149444322 -38.83057575598059 87.49717859608687 1051.266414273476 -43.19827743305336 86.87744343562142 1248.067371106725 -43.19827743305336 86.87744343562142 1248.067371106725 -38.83057575598059 87.49717859608687 1051.266414273476 -82.50786774802782 117.3093922937756 1247.290785376144 -78.14016607093913 117.9291274542362 1050.48982854289 -78.14016607093913 117.9291274542362 1050.48982854289 -82.50786774802782 117.3093922937756 1247.290785376144 -22.03094183278108 85.21317274849521 1051.632064480056 -26.39864350985727 84.59343758802794 1248.433021313371 -26.39864350985727 84.59343758802794 1248.433021313371 -22.03094183278108 85.21317274849521 1051.632064480056 -88.93117131225858 133.0036772472581 1247.197651817101 -84.56346963517194 133.6234124077084 1050.396694983854 -84.56346963517194 133.6234124077084 1050.396694983854 -88.93117131225858 133.0036772472581 1247.197651817101 -5.213043743334538 87.35606555685318 1052.012060537612 -9.58074542040049 86.73633039639248 1248.813017370858 -9.58074542040049 86.73633039639248 1248.813017370858 -5.213043743334538 87.35606555685318 1052.012060537612 -91.07472228039319 149.8257830256213 1247.203052498488 -86.70702060330814 150.4455181860793 1050.402095665238 -86.70702060330814 150.4455181860793 1050.402095665238 -91.07472228039319 149.8257830256213 1247.203052498488 10.47700654816504 93.7798224166668 1052.38050634269 6.109304871058612 93.16008725618434 1249.181463175928 6.109304871058612 93.16008725618434 1249.181463175928 10.47700654816504 93.7798224166668 1052.38050634269 -88.79244119634291 166.6293109199344 1247.306619372968 -84.42473951925672 167.2490460803809 1050.505662539721 -84.42473951925672 167.2490460803809 1050.505662539721 -88.79244119634291 166.6293109199344 1247.306619372968 23.96995804964558 104.0466749168678 1052.712292922608 19.60225637257759 103.4269397564174 1249.513249755863 19.60225637257759 103.4269397564174 1249.513249755863 23.96995804964558 104.0466749168678 1052.712292922608 -82.23986174433003 182.2691282733317 1247.501294529062 -77.87216006724907 182.888863433771 1050.700337695811 -77.87216006724907 182.888863433771 1050.700337695811 -82.23986174433003 182.2691282733317 1247.501294529062 29.9785867329731 116.8372188641404 1249.785766403422 34.34628841002063 117.4569540245636 1052.984809570235 34.34628841002063 117.4569540245636 1052.984809570235 29.9785867329731 116.8372188641404 1249.785766403422 -71.86353138537061 195.6794073792045 1247.773811176578 -67.49582970828305 196.2991425396478 1050.972854343299 -67.49582970828305 196.2991425396478 1050.972854343299 -71.86353138537061 195.6794073792045 1247.773811176578 36.53116618401691 132.4770362152265 1249.980441559479 40.8988678610724 133.0967713756731 1053.179484726299 40.8988678610724 133.0967713756731 1053.179484726299 36.53116618401691 132.4770362152265 1249.980441559479 -54.00287820864423 206.565995038462 1051.304640923192 -58.37057988571928 205.946259878023 1248.105597756507 -58.37057988571928 205.946259878023 1248.105597756507 -54.00287820864423 206.565995038462 1051.304640923192 38.81344726806196 149.2805641095291 1250.084008433951 43.18114894511814 149.9002992699772 1053.283051600711 43.18114894511814 149.9002992699772 1053.283051600711 38.81344726806196 149.2805641095291 1250.084008433951 -38.31282791484318 212.989751899202 1051.673086728328 -42.68052959192437 212.3700167387611 1248.474043561588 -42.68052959192437 212.3700167387611 1248.474043561588 -38.31282791484318 212.989751899202 1051.673086728328 36.66989629992372 166.1026698878997 1250.08940911539 41.03759797698331 166.7224050483476 1053.288452282139 41.03759797698331 166.7224050483476 1053.288452282139 36.66989629992372 166.1026698878997 1250.08940911539 -21.49492982540392 215.1326447075608 1052.053082785827 -25.86263150246919 214.5129095471191 1248.854039619087 -25.86263150246919 214.5129095471191 1248.854039619087 -21.49492982540392 215.1326447075608 1052.053082785827 30.24659273569409 181.7969548413743 1249.996275556316 34.6142944127505 182.4166900018187 1053.195318723065 34.6142944127505 182.4166900018187 1053.195318723065 30.24659273569409 181.7969548413743 1249.996275556316 -4.695295902210091 212.8486388599594 1052.418732992528 -9.062997579282637 212.2289036995269 1249.219689825775 -9.062997579282637 212.2289036995269 1249.219689825775 -4.695295902210091 212.8486388599594 1052.418732992528 19.98127409825111 195.2938793864082 1249.810954654866 24.34897577531388 195.9136145468489 1053.00999782167 24.34897577531388 195.9136145468489 1053.00999782167 19.98127409825111 195.2938793864082 1249.810954654866 10.94120656558084 206.2933855804143 1052.745118891004 6.573504888509433 205.6736504199747 1249.546075724227 6.573504888509433 205.6736504199747 1249.546075724227 10.94120656558084 206.2933855804143 1052.745118891004</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10456\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10453\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10457\">-0.5034455859493645 -0.8639152194157739 -0.01389372699805806 -0.7098439725697325 -0.7041296532038399 -0.01797125720312507 -0.7098439725696826 -0.7041296532038907 -0.01797125720312412 -0.5034455859491853 -0.8639152194158782 -0.01389372699805441 0.5034455859491853 0.8639152194158782 0.01389372699805441 0.5034455859493645 0.8639152194157739 0.01389372699805806 0.7098439725697325 0.7041296532038399 0.01797125720312507 0.7098439725696826 0.7041296532038907 0.01797125720312412 -0.2627382146295328 -0.9648263911121069 -0.008869362258551502 -0.262738214629359 -0.9648263911121542 -0.008869362258547793 0.262738214629359 0.9648263911121542 0.008869362258547793 0.2627382146295328 0.9648263911121069 0.008869362258551502 -0.8678676655324296 -0.4963588147550178 -0.0208240759287173 -0.8678676655322356 -0.4963588147553568 -0.02082407592871406 0.8678676655322356 0.4963588147553568 0.02082407592871406 0.8678676655324296 0.4963588147550178 0.0208240759287173 -0.004125668178072322 -0.9999862387051474 -0.00324056513844116 -0.004125668178018979 -0.9999862387051478 -0.003240565138439977 0.004125668178018979 0.9999862387051478 0.003240565138439977 0.004125668178072322 0.9999862387051474 0.00324056513844116 -0.9667476113080948 -0.2547619433524162 -0.02225776829317886 -0.9667476113080128 -0.2547619433527279 -0.02225776829317802 0.9667476113080128 0.2547619433527279 0.02225776829317802 0.9667476113080948 0.2547619433524162 0.02225776829317886 0.2547680357414391 -0.9669986766858746 0.002609071140559339 0.25476803574204 -0.9669986766857159 0.002609071140573176 -0.25476803574204 0.9669986766857159 -0.002609071140573176 -0.2547680357414391 0.9669986766858746 -0.002609071140559339 -0.9997453049990253 0.004196533475659786 -0.02217463053116558 -0.9997453049990271 0.00419653347518763 -0.02217463053116711 0.9997453049990271 -0.00419653347518763 0.02217463053116711 0.9997453049990253 -0.004196533475659786 0.02217463053116558 0.496299719049574 -0.8681117528912913 0.008280903533053661 0.4962997190502097 -0.8681117528909276 0.008280903533068915 -0.4962997190502097 0.8681117528909276 -0.008280903533068915 -0.496299719049574 0.8681117528912913 -0.008280903533053661 -0.9646120083114503 0.2628690234824438 -0.02058032834376166 -0.9646120083116618 0.2628690234816672 -0.02058032834376881 0.9646120083116618 -0.2628690234816672 0.02058032834376881 0.9646120083114503 -0.2628690234824438 0.02058032834376166 0.704009396678382 -0.7100644477597743 0.01338840603460625 0.7040093966787137 -0.7100644477594453 0.01338840603461465 -0.7040093966787137 0.7100644477594453 -0.01338840603461465 -0.704009396678382 0.7100644477597743 -0.01338840603460625 -0.863741997354303 0.503627423950171 -0.01758351079034145 -0.8637419973544218 0.503627423949967 -0.01758351079034472 0.8637419973544218 -0.503627423949967 0.01758351079034472 0.863741997354303 -0.503627423950171 0.01758351079034145 0.8637419973543977 -0.503627423950012 0.01758351079024 0.8637419973541386 -0.5036274239504567 0.01758351079023285 -0.8637419973541386 0.5036274239504567 -0.01758351079023285 -0.8637419973543977 0.503627423950012 -0.01758351079024 -0.7040093966785304 0.7100644477596255 -0.01338840603469218 -0.7040093966787745 0.7100644477593834 -0.01338840603469836 0.7040093966787745 -0.7100644477593834 0.01338840603469836 0.7040093966785304 -0.7100644477596255 0.01338840603469218 0.964612008311678 -0.2628690234816177 0.02058032834363316 0.9646120083115197 -0.262869023482199 0.02058032834362781 -0.9646120083115197 0.262869023482199 -0.02058032834362781 -0.964612008311678 0.2628690234816177 -0.02058032834363316 -0.4962997190501633 0.8681117528909531 -0.0082809035331776 -0.4962997190494467 0.868111752891363 -0.008280903533160406 0.4962997190494467 -0.868111752891363 0.008280903533160406 0.4962997190501633 -0.8681117528909531 0.0082809035331776 0.9997453049990317 -0.004196533474839592 0.02217463053102952 0.9997453049990295 -0.004196533475361353 0.02217463053102783 -0.9997453049990295 0.004196533475361353 -0.02217463053102783 -0.9997453049990317 0.004196533474839592 -0.02217463053102952 -0.2547680357418127 0.9669986766857756 -0.002609071140698641 -0.2547680357414179 0.9669986766858797 -0.002609071140689553 0.2547680357414179 -0.9669986766858797 0.002609071140689553 0.2547680357418127 -0.9669986766857756 0.002609071140698641 0.9667476113080022 0.2547619433527807 0.0222577682930387 0.9667476113081005 0.2547619433524074 0.02225776829303971 -0.9667476113081005 -0.2547619433524074 -0.02225776829303971 -0.9667476113080022 -0.2547619433527807 -0.0222577682930387 0.004125668177852917 0.9999862387051487 0.003240565138307248 0.004125668178207829 0.9999862387051471 0.003240565138315119 -0.004125668178207829 -0.9999862387051471 -0.003240565138315119 -0.004125668177852917 -0.9999862387051487 -0.003240565138307248 0.8678676655323644 0.4963588147551376 0.02082407592857179 0.8678676655325599 0.4963588147547959 0.02082407592857505 -0.8678676655325599 -0.4963588147547959 -0.02082407592857505 -0.8678676655323644 -0.4963588147551376 -0.02082407592857179 0.2627382146290617 0.9648263911122363 0.008869362258414363 0.2627382146295186 0.9648263911121119 0.008869362258424111 -0.2627382146295186 -0.9648263911121119 -0.008869362258424111 -0.2627382146290617 -0.9648263911122363 -0.008869362258414363 0.7098439725697702 0.7041296532038053 0.01797125720299697 0.7098439725699067 0.7041296532036677 0.01797125720299957 -0.7098439725699067 -0.7041296532036677 -0.01797125720299957 -0.7098439725697702 -0.7041296532038053 -0.01797125720299697 0.5034455859490676 0.8639152194159486 0.01389372699793394 0.5034455859492051 0.8639152194158687 0.01389372699793674 -0.5034455859492051 -0.8639152194158687 -0.01389372699793674 -0.5034455859490676 -0.8639152194159486 -0.01389372699793394</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10457\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10455\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10458\">-23.65720823227681 213.1821610998744 -23.65720808764493 209.5367834387506 -23.97124762738527 213.1821610874148 -23.97124748275338 209.536783426291 -27.1060051752598 213.1821611066168 -27.10600504993661 209.536783445494 -27.42004457036813 213.1821610958202 -27.4200444450448 209.5367834346964 -18.89955025176909 209.5367835785085 -18.89955040585314 213.1821612396312 -18.5855108566609 209.5367835917817 -18.58551101074484 213.1821612529055 -28.69687202744225 213.1821612711568 -28.6968719299681 209.5367836100329 -29.01091142255055 213.1821612627593 -29.01091132507644 209.5367836016366 -12.55058053701073 209.5367838504821 -12.55058069004644 213.1821615116048 -12.23654114190241 209.5367838636644 -12.23654129493796 213.1821615247872 -28.3213938418768 213.1821615491663 -28.3213937788946 209.5367838880436 -28.63543323698529 213.1821615437407 -28.63543317400292 209.5367838826168 -5.357010132370389 209.5367841693411 -5.357010273928342 213.1821618304639 -5.042970737261975 209.5367841815361 -5.042970878820073 213.1821618426588 -26.00515883644652 213.1821618658602 -26.00515881224742 209.5367842047377 -26.31919823150823 213.1821618637738 -26.31919820730997 209.5367842026511 2.190931027009592 209.5367844497463 2.190930906575977 213.1821621108689 2.5049704221178 209.5367844601194 2.504970301684394 213.1821621212421 -21.90601459888393 213.1821621360468 -21.90601461511877 209.536784474924 -22.22005399403572 213.1821621374442 -22.22005401026963 209.5367844763217 9.57886322467925 209.5367846167526 9.578863133577386 213.1821622778753 9.892902619787455 209.5367846245996 9.892902528685751 213.1821622857223 -16.30331109047029 209.5367846258536 -16.61735048562136 209.5367846306388 -16.30331103490816 213.1821622869752 -16.61735043005984 213.1821622917616 16.30331109051186 209.5367846258545 16.30331103495045 213.1821622869777 16.61735048562028 209.5367846306414 16.61735043005875 213.1821622917642 -9.578863224683374 209.536784616751 -9.892902619745783 209.5367846245981 -9.578863133581466 213.1821622778725 -9.892902528643417 213.1821622857196 21.90601459887817 213.1821621360513 22.22005399398658 213.182162137448 21.90601461511306 209.5367844749273 22.22005401022123 209.5367844763247 -2.190931027000527 209.5367844497463 -2.50497042210876 209.5367844601207 -2.190930906566865 213.1821621108689 -2.504970301675077 213.1821621212422 26.00515883640535 213.1821618658661 26.31919823151372 213.1821618637804 26.00515881220697 209.5367842047431 26.31919820731548 209.5367842026565 5.357010132374422 209.5367841693419 5.042970737266019 209.5367841815361 5.357010273932502 213.1821618304647 5.04297087882409 213.1821618426586 28.32139384187757 213.1821615491733 28.63543323698602 213.1821615437476 28.32139377889543 209.5367838880504 28.6354331740036 209.5367838826246 12.5505805370081 209.5367838504855 12.23654114189979 209.5367838636684 12.5505806900437 213.1821615116083 12.23654129493535 213.1821615247912 28.69687202744257 213.1821612711633 29.01091142255072 213.182161262765 28.69687192996839 209.5367836100406 29.01091132507669 209.5367836016421 18.89955025176677 209.5367835785142 18.58551085665847 209.5367835917868 18.89955040585084 213.1821612396359 18.58551101074241 213.1821612529095 27.10600517526073 213.1821611066223 27.42004457036914 213.1821610958257 27.10600504993737 209.5367834455 27.42004444504572 209.536783434703 23.65720823227544 213.1821610998817 23.97124762738375 213.1821610874222 23.65720808764359 209.53678343876 23.97124748275177 209.5367834263</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10458\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10454\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10452\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10453\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10454\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 3 0 3 8 9 12 2 1 2 12 13 16 9 8 9 16 17 20 13 12 13 20 21 24 17 16 17 24 25 28 21 20 21 28 29 32 25 24 25 32 33 36 29 28 29 36 37 40 33 32 33 40 41 44 37 36 37 44 45 40 48 41 48 40 49 52 45 44 45 52 53 49 56 48 56 49 57 52 60 53 60 52 61 57 64 56 64 57 65 61 68 60 68 61 69 65 72 64 72 65 73 69 76 68 76 69 77 73 80 72 80 73 81 77 84 76 84 77 85 81 88 80 88 81 89 85 92 84 92 85 93 93 89 92 89 93 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10454\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10455\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 11 5 4 6 5 7 4 6 11 5 14 8 15 9 7 10 6 11 7 10 15 9 18 12 19 13 10 14 11 15 10 14 19 13 22 16 23 17 14 18 15 19 14 18 23 17 26 20 27 21 18 22 19 23 18 22 27 21 30 24 31 25 22 26 23 27 22 26 31 25 34 28 35 29 26 30 27 31 26 30 35 29 38 32 39 33 30 34 31 35 30 34 39 33 42 36 43 37 34 38 35 39 34 38 43 37 46 40 47 41 38 42 39 43 38 42 47 41 50 44 43 45 51 46 42 47 51 46 43 45 54 48 55 49 46 50 47 51 46 50 55 49 58 52 50 53 59 54 51 55 59 54 50 53 62 56 55 57 63 58 54 59 63 58 55 57 66 60 58 61 67 62 59 63 67 62 58 61 70 64 62 65 71 66 63 67 71 66 62 65 74 68 66 69 75 70 67 71 75 70 66 69 78 72 70 73 79 74 71 75 79 74 70 73 82 76 74 77 83 78 75 79 83 78 74 77 86 80 78 81 87 82 79 83 87 82 78 81 90 84 82 85 91 86 83 87 91 86 82 85 94 88 86 89 95 90 87 91 95 90 86 89 91 92 94 93 90 94 95 95 90 94 94 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10459\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10460\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10464\">36.66989629992372 166.1026698878997 1250.08940911539 25.87889105862655 181.1772196809266 1446.79723238977 32.30219462285481 165.4829347274533 1446.890365948913 30.24659273569409 181.7969548413743 1249.996275556316 30.24659273569409 181.7969548413743 1249.996275556316 36.66989629992372 166.1026698878997 1250.08940911539 25.87889105862655 181.1772196809266 1446.79723238977 32.30219462285481 165.4829347274533 1446.890365948913 15.61357242118356 194.6741442259679 1446.611911488317 19.98127409825111 195.2938793864082 1249.810954654866 19.98127409825111 195.2938793864082 1249.810954654866 15.61357242118356 194.6741442259679 1446.611911488317 38.81344726806196 149.2805641095291 1250.084008433951 34.44574559100056 148.6608289490794 1446.884965267413 38.81344726806196 149.2805641095291 1250.084008433951 34.44574559100056 148.6608289490794 1446.884965267413 2.205803211440752 205.0539152595293 1446.347032557686 6.573504888509433 205.6736504199747 1249.546075724227 2.205803211440752 205.0539152595293 1446.347032557686 6.573504888509433 205.6736504199747 1249.546075724227 36.53116618401691 132.4770362152265 1249.980441559479 32.16346450694891 131.8573010547675 1446.781398392948 36.53116618401691 132.4770362152265 1249.980441559479 32.16346450694891 131.8573010547675 1446.781398392948 -13.43069925635541 211.6091685390884 1446.020646659243 -9.062997579282637 212.2289036995269 1249.219689825775 -13.43069925635541 211.6091685390884 1446.020646659243 -9.062997579282637 212.2289036995269 1249.219689825775 29.9785867329731 116.8372188641404 1249.785766403422 25.61088505592625 116.2174837037216 1446.586723236935 29.9785867329731 116.8372188641404 1249.785766403422 25.61088505592625 116.2174837037216 1446.586723236935 -30.23033317954764 213.8931743866873 1445.654996452533 -25.86263150246919 214.5129095471191 1248.854039619087 -30.23033317954764 213.8931743866873 1445.654996452533 -25.86263150246919 214.5129095471191 1248.854039619087 19.60225637257759 103.4269397564174 1249.513249755863 15.23455469549549 102.8072045959671 1446.314206589317 19.60225637257759 103.4269397564174 1249.513249755863 15.23455469549549 102.8072045959671 1446.314206589317 -47.04823126900351 211.7502815783188 1445.275000395111 -42.68052959192437 212.3700167387611 1248.474043561588 -47.04823126900351 211.7502815783188 1445.275000395111 -42.68052959192437 212.3700167387611 1248.474043561588 1.74160319395105 92.54035209570226 1445.982420009384 6.109304871058612 93.16008725618434 1249.181463175928 1.74160319395105 92.54035209570226 1445.982420009384 6.109304871058612 93.16008725618434 1249.181463175928 -62.73828156280251 205.3265247175805 1444.906554589959 -58.37057988571928 205.946259878023 1248.105597756507 -62.73828156280251 205.3265247175805 1444.906554589959 -58.37057988571928 205.946259878023 1248.105597756507 -13.94844709748145 86.11659523593461 1445.61397420438 -9.58074542040049 86.73633039639248 1248.813017370858 -13.94844709748145 86.11659523593461 1445.61397420438 -9.58074542040049 86.73633039639248 1248.813017370858 -76.23123306245225 195.0596722187598 1444.574768010096 -71.86353138537061 195.6794073792045 1247.773811176578 -76.23123306245225 195.0596722187598 1444.574768010096 -71.86353138537061 195.6794073792045 1247.773811176578 -30.76634518693004 83.97370242755818 1445.233978146825 -26.39864350985727 84.59343758802794 1248.433021313371 -30.76634518693004 83.97370242755818 1445.233978146825 -26.39864350985727 84.59343758802794 1248.433021313371 -82.23986174433003 182.2691282733317 1247.501294529062 -86.60756342142213 181.6493931128854 1444.3022513625 -82.23986174433003 182.2691282733317 1247.501294529062 -86.60756342142213 181.6493931128854 1444.3022513625 -47.56597911013273 86.25770827516857 1444.868327940103 -43.19827743305336 86.87744343562142 1248.067371106725 -47.56597911013273 86.25770827516857 1444.868327940103 -43.19827743305336 86.87744343562142 1248.067371106725 -88.79244119634291 166.6293109199344 1247.306619372968 -93.16014287343 166.0095757594829 1444.107576206419 -88.79244119634291 166.6293109199344 1247.306619372968 -93.16014287343 166.0095757594829 1444.107576206419 -63.20248157792435 92.81296155471787 1444.541942041669 -58.83477990083611 93.43269671518289 1247.740985208269 -63.20248157792435 92.81296155471787 1444.541942041669 -58.83477990083611 93.43269671518289 1247.740985208269 -91.07472228039319 149.8257830256213 1247.203052498488 -95.4424239574787 149.2060478651703 1444.00400933188 -91.07472228039319 149.8257830256213 1247.203052498488 -95.4424239574787 149.2060478651703 1444.00400933188 -76.61025078766852 103.1927325882927 1444.277063111031 -72.24254911058984 103.8124677487476 1247.476106277629 -76.61025078766852 103.1927325882927 1444.277063111031 -72.24254911058984 103.8124677487476 1247.476106277629 -88.93117131225858 133.0036772472581 1247.197651817101 -93.29887298935182 132.3839420868044 1443.998608650556 -88.93117131225858 133.0036772472581 1247.197651817101 -93.29887298935182 132.3839420868044 1443.998608650556 -86.87556942510901 116.689657133321 1444.09174220955 -82.50786774802782 117.3093922937756 1247.290785376144 -82.50786774802782 117.3093922937756 1247.290785376144 -86.87556942510901 116.689657133321 1444.09174220955</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10464\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10461\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10465\">0.9667476113081048 0.2547619433523904 0.02225776829304213 0.8678676655324432 0.4963588147549992 0.02082407592859026 0.9667476113080035 0.2547619433527753 0.02225776829304109 0.8678676655324829 0.4963588147549299 0.02082407592859093 -0.8678676655324829 -0.4963588147549299 -0.02082407592859093 -0.9667476113081048 -0.2547619433523904 -0.02225776829304213 -0.8678676655324432 -0.4963588147549992 -0.02082407592859026 -0.9667476113080035 -0.2547619433527753 -0.02225776829304109 0.7098439725696915 0.7041296532038847 0.01797125720300135 0.7098439725697875 0.7041296532037878 0.01797125720300318 -0.7098439725697875 -0.7041296532037878 -0.01797125720300318 -0.7098439725696915 -0.7041296532038847 -0.01797125720300135 0.9997453049990287 -0.004196533475576788 0.02217463053102974 0.999745304999032 -0.004196533474745522 0.02217463053103244 -0.9997453049990287 0.004196533475576788 -0.02217463053102974 -0.999745304999032 0.004196533474745522 -0.02217463053103244 0.5034455859492101 0.8639152194158659 0.01389372699793107 0.50344558594921 0.8639152194158657 0.01389372699793106 -0.5034455859492101 -0.8639152194158659 -0.01389372699793107 -0.50344558594921 -0.8639152194158657 -0.01389372699793106 0.9646120083114762 -0.2628690234823578 0.02058032834363753 0.9646120083116334 -0.2628690234817808 0.02058032834364284 -0.9646120083114762 0.2628690234823578 -0.02058032834363753 -0.9646120083116334 0.2628690234817808 -0.02058032834364284 0.2627382146295641 0.9648263911120996 0.008869362258422367 0.2627382146291588 0.9648263911122099 0.008869362258413721 -0.2627382146295641 -0.9648263911120996 -0.008869362258422367 -0.2627382146291588 -0.9648263911122099 -0.008869362258413721 0.8637419973542378 -0.5036274239502863 0.01758351079024205 0.8637419973544251 -0.5036274239499649 0.01758351079024723 -0.8637419973542378 0.5036274239502863 -0.01758351079024205 -0.8637419973544251 0.5036274239499649 -0.01758351079024723 0.004125668178032949 0.999986238705148 0.00324056513830906 0.004125668177857395 0.9999862387051488 0.003240565138305167 -0.004125668178032949 -0.999986238705148 -0.00324056513830906 -0.004125668177857395 -0.9999862387051488 -0.003240565138305167 0.7040093966784706 -0.710064447759686 0.01338840603461614 0.7040093966788027 -0.7100644477593568 0.01338840603462455 -0.7040093966784706 0.710064447759686 -0.01338840603461614 -0.7040093966788027 0.7100644477593568 -0.01338840603462455 -0.2547680357414418 0.9669986766858734 -0.002609071140684272 -0.2547680357416942 0.966998676685807 -0.002609071140690082 0.2547680357414418 -0.9669986766858734 0.002609071140684272 0.2547680357416942 -0.966998676685807 0.002609071140690082 0.4962997190500966 -0.8681117528909922 0.008280903533077333 0.496299719049583 -0.8681117528912858 0.008280903533065008 -0.4962997190500966 0.8681117528909922 -0.008280903533077333 -0.496299719049583 0.8681117528912858 -0.008280903533065008 -0.4962997190493921 0.8681117528913943 -0.008280903533146531 -0.4962997190500767 0.8681117528910027 -0.008280903533162957 0.4962997190493921 -0.8681117528913943 0.008280903533146531 0.4962997190500767 -0.8681117528910027 0.008280903533162957 0.2547680357420442 -0.9669986766857149 0.002609071140582337 0.2547680357416239 -0.9669986766858258 0.002609071140572662 -0.2547680357420442 0.9669986766857149 -0.002609071140582337 -0.2547680357416239 0.9669986766858258 -0.002609071140572662 -0.7040093966784896 0.7100644477596662 -0.01338840603468221 -0.7040093966788749 0.7100644477592838 -0.01338840603469196 0.7040093966784896 -0.7100644477596662 0.01338840603468221 0.7040093966788749 -0.7100644477592838 0.01338840603469196 -0.00412566817765537 -0.9999862387051491 -0.003240565138421866 -0.004125668178059872 -0.9999862387051475 -0.003240565138430839 0.00412566817765537 0.9999862387051491 0.003240565138421866 0.004125668178059872 0.9999862387051475 0.003240565138430839 -0.8637419973544961 0.50362742394984 -0.01758351079034181 -0.8637419973542588 0.5036274239502468 -0.01758351079033527 0.8637419973544961 -0.50362742394984 0.01758351079034181 0.8637419973542588 -0.5036274239502468 0.01758351079033527 -0.2627382146292043 -0.9648263911121964 -0.008869362258541798 -0.2627382146295233 -0.9648263911121094 -0.008869362258548605 0.2627382146292043 0.9648263911121964 0.008869362258541798 0.2627382146295233 0.9648263911121094 0.008869362258548605 -0.9646120083116738 0.2628690234816237 -0.02058032834375289 -0.9646120083114324 0.2628690234825103 -0.02058032834374474 0.9646120083116738 -0.2628690234816237 0.02058032834375289 0.9646120083114324 -0.2628690234825103 0.02058032834374474 -0.5034455859492748 -0.8639152194158258 -0.01389372699806285 -0.5034455859492768 -0.8639152194158248 -0.01389372699806289 0.5034455859492748 0.8639152194158258 0.01389372699806285 0.5034455859492768 0.8639152194158248 0.01389372699806289 -0.9997453049990274 0.004196533475244011 -0.0221746305311469 -0.9997453049990255 0.004196533475713112 -0.02217463053114538 0.9997453049990274 -0.004196533475244011 0.0221746305311469 0.9997453049990255 -0.004196533475713112 0.02217463053114538 -0.7098439725697943 -0.704129653203778 -0.01797125720311793 -0.7098439725698225 -0.7041296532037495 -0.01797125720311846 0.7098439725697943 0.704129653203778 0.01797125720311793 0.7098439725698225 0.7041296532037495 0.01797125720311846 -0.9667476113080218 -0.2547619433526949 -0.02225776829316638 -0.9667476113080922 -0.2547619433524284 -0.0222577682931671 0.9667476113080218 0.2547619433526949 0.02225776829316638 0.9667476113080922 0.2547619433524284 0.0222577682931671 -0.8678676655324553 -0.4963588147549731 -0.02082407592870086 -0.86786766553227 -0.4963588147552973 -0.02082407592869777 0.86786766553227 0.4963588147552973 0.02082407592869777 0.8678676655324553 0.4963588147549731 0.02082407592870086</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10465\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10463\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10466\">12.55058069004035 213.1821615116085 12.236541294932 213.1821615247914 12.55058084307595 216.827539172735 12.23654144796763 216.8275391859192 18.89955040585468 213.1821612396357 18.58551101074625 213.1821612529093 18.89955055993875 216.8275389007621 18.58551116483021 216.8275389140358 5.357010273936723 213.1821618304653 5.042970878828308 213.1821618426592 5.357010415494862 216.827539491593 5.042971020386368 216.8275395037858 23.65720837690785 216.8275387610078 23.97124777201611 216.8275387485484 23.657208232276 213.1821610998813 23.9712476273843 213.1821610874218 -2.190930906573931 213.1821621108701 -2.504970301682143 213.1821621212434 -2.190930786140285 216.8275397719967 -2.504970181248682 216.8275397823702 27.10600530058305 216.8275387677506 27.42004469569158 216.8275387569543 27.10600517525985 213.182161106624 27.42004457036827 213.1821610958275 -9.578863133576819 213.1821622778721 -9.892902528638766 213.1821622857192 -9.578863042475151 216.8275399389989 -9.89290243753625 216.8275399468468 28.69687212491659 216.82753893229 29.01091152002486 216.8275389238913 28.6968720274425 213.1821612711632 29.01091142255064 213.1821612627649 -16.30331103491124 213.1821622869757 -16.61735043006292 213.1821622917621 -16.30331097934894 216.8275399481033 -16.6173503745015 216.8275399528886 28.32139390486003 216.8275392102992 28.63543329996849 216.8275392048748 28.32139384187776 213.1821615491728 28.63543323698622 213.182161543747 -21.90601458264723 216.8275397971731 -21.90601459888193 213.1821621360465 -22.22005397779975 216.8275397985706 -22.22005399403373 213.182162137444 26.00515886060303 216.8275395269941 26.3191982557115 216.8275395249072 26.00515883640478 213.1821618658663 26.31919823151315 213.1821618637807 -26.00515886064616 216.8275395269863 -26.00515883644713 213.1821618658598 -26.31919825570722 216.8275395249011 -26.31919823150884 213.1821618637733 21.90601458264634 216.8275397971765 22.22005397775473 216.8275397985744 21.90601459888111 213.18216213605 22.22005399398953 213.1821621374467 -28.32139390485893 216.8275392102943 -28.32139384187658 213.1821615491665 -28.63543329996733 216.8275392048675 -28.63543323698508 213.1821615437409 16.30331103494786 213.1821622869774 16.30331097938634 216.8275399481051 16.61735043005616 213.1821622917638 16.61735037449481 216.8275399528901 -28.69687212491606 216.8275389322832 -28.69687202744204 213.1821612711566 -29.01091152002456 216.8275389238842 -29.01091142255035 213.1821612627591 9.578863133576405 213.1821622778748 9.578863042474698 216.827539939001 9.892902528684768 213.1821622857218 9.892902437583114 216.8275399468483 -27.10600530058389 216.8275387677421 -27.10600517526054 213.182161106617 -27.42004469569226 216.8275387569459 -27.42004457036886 213.1821610958204 2.190930906574593 213.1821621108689 2.19093078614105 216.8275397719953 2.504970301683013 213.182162121242 2.504970181249461 216.8275397823674 -23.6572083769052 216.8275387610006 -23.65720823227331 213.1821610998751 -23.97124777201364 216.8275387485411 -23.97124762738178 213.1821610874156 -5.35701027392324 213.1821618304632 -5.357010415481327 216.8275394915886 -5.042970878814972 213.1821618426581 -5.042971020373028 216.8275395037847 -18.89955040585417 213.1821612396302 -18.8995505599382 216.8275389007557 -18.58551101074587 213.1821612529044 -18.58551116482987 216.8275389140299 -12.55058069004988 213.1821615116047 -12.55058084308555 216.8275391727313 -12.23654129494139 213.1821615247871 -12.23654144797697 216.8275391859127</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10466\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10462\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10460\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10461\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10462\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 8 1 8 3 9 12 2 13 2 12 0 16 9 17 9 16 8 20 13 21 13 20 12 24 17 25 17 24 16 28 21 29 21 28 20 32 25 33 25 32 24 36 29 37 29 36 28 40 33 41 33 40 32 36 44 45 44 36 37 48 41 49 41 48 40 45 52 53 52 45 44 56 49 57 49 56 48 53 60 61 60 53 52 56 64 65 64 56 57 61 68 69 68 61 60 65 72 73 72 65 64 69 76 77 76 69 68 73 80 81 80 73 72 77 84 85 84 77 76 81 88 89 88 81 80 92 85 84 85 92 93 89 93 92 93 89 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10462\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10463\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 4 5 11 6 6 7 11 6 4 5 5 8 14 9 7 10 15 11 7 10 14 9 11 12 18 13 10 14 19 15 10 14 18 13 14 16 22 17 15 18 23 19 15 18 22 17 18 20 26 21 19 22 27 23 19 22 26 21 22 24 30 25 23 26 31 27 23 26 30 25 26 28 34 29 27 30 35 31 27 30 34 29 30 32 38 33 31 34 39 35 31 34 38 33 34 36 42 37 35 38 43 39 35 38 42 37 39 40 38 41 46 42 47 43 46 42 38 41 42 44 50 45 43 46 51 47 43 46 50 45 46 48 47 49 54 50 55 51 54 50 47 49 50 52 58 53 51 54 59 55 51 54 58 53 54 56 55 57 62 58 63 59 62 58 55 57 59 60 58 61 66 62 67 63 66 62 58 61 62 64 63 65 70 66 71 67 70 66 63 65 66 68 67 69 74 70 75 71 74 70 67 69 70 72 71 73 78 74 79 75 78 74 71 73 74 76 75 77 82 78 83 79 82 78 75 77 78 80 79 81 86 82 87 83 86 82 79 81 82 84 83 85 90 86 91 87 90 86 83 85 94 88 95 89 87 90 86 91 87 90 95 89 90 92 91 93 94 94 95 95 94 94 91 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10467\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10468\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10472\">-81.50586328820009 127.0023877185914 2203.383159289015 -70.91675637625281 119.4421686092701 2006.694518153377 -75.28445805333695 118.8224334488101 2203.495474986823 -77.13816161110822 127.6221228790534 2006.582202455513 -77.13816161110822 127.6221228790534 2006.582202455513 -81.50586328820009 127.0023877185914 2203.383159289015 -70.91675637625281 119.4421686092701 2006.694518153377 -75.28445805333695 118.8224334488101 2203.495474986823 -62.7908356430155 113.1513982858421 2006.855050838687 -67.15853732009305 112.5316631253759 2203.656007672054 -67.15853732009305 112.5316631253759 2203.656007672054 -62.7908356430155 113.1513982858421 2006.855050838687 -85.39877453928898 136.5140755692628 2203.326714707762 -81.0310728622012 137.1338107297136 2006.525757874299 -81.0310728622012 137.1338107297136 2006.525757874299 -85.39877453928898 136.5140755692628 2203.326714707762 -53.31416748064453 109.1785175103272 2007.052860474025 -57.68186915772026 108.5587823498633 2203.853817307589 -57.68186915772026 108.5587823498633 2203.853817307589 -53.31416748064453 109.1785175103272 2007.052860474025 -86.69789633816595 146.7092911925998 2203.329987848021 -82.33019466108249 147.329026353049 2006.529031014539 -82.33019466108249 147.329026353049 2006.529031014539 -86.69789633816595 146.7092911925998 2203.329987848021 -43.13257116347745 107.7942715420764 2007.274466659897 -47.50027284054431 107.174536381606 2204.075423493279 -47.50027284054431 107.174536381606 2204.075423493279 -43.13257116347745 107.7942715420764 2007.274466659897 -85.31469568115585 156.8932474922663 2203.39275565067 -80.94699400406034 157.5129826527112 2006.591798817079 -80.94699400406034 157.5129826527112 2006.591798817079 -85.31469568115585 156.8932474922663 2203.39275565067 -32.93990565463696 109.0929944562386 2007.504767300741 -37.30760733170769 108.4732592957787 2204.305724134289 -37.30760733170769 108.4732592957787 2204.305724134289 -32.93990565463696 109.0929944562386 2007.504767300741 -81.34343540718169 166.3719246762205 2203.510740593767 -76.97573373008459 166.9916598366649 2006.709783760183 -76.97573373008459 166.9916598366649 2006.709783760183 -81.34343540718169 166.3719246762205 2203.510740593767 -23.43078426685838 112.9861804314723 2007.728067788632 -27.79848594396913 112.3664452709921 2204.529024622134 -27.79848594396913 112.3664452709921 2204.529024622134 -23.43078426685838 112.9861804314723 2007.728067788632 -75.05475034109099 174.4993665586358 2203.675902198394 -70.68704866399548 175.119101719071 2006.874945364805 -70.68704866399548 175.119101719071 2006.874945364805 -75.05475034109099 174.4993665586358 2203.675902198394 -15.25323790138714 119.2085152807917 2007.929150564385 -19.6209395784615 118.5887801203397 2204.730107397936 -19.6209395784615 118.5887801203397 2204.730107397936 -15.25323790138714 119.2085152807917 2007.929150564385 -62.50950230050444 181.3414365668889 2007.076028140386 -66.87720397759199 180.721701406449 2203.876984974015 -66.87720397759199 180.721701406449 2203.876984974015 -62.50950230050444 181.3414365668889 2007.076028140386 -13.33225451082058 126.7162220047594 2204.895269002505 -8.964552833765083 127.3359571651763 2008.094312168943 -8.964552833765083 127.3359571651763 2008.094312168943 -13.33225451082058 126.7162220047594 2204.895269002505 -53.00038091025408 185.2346225431329 2007.29932862834 -57.368082587343 184.6148873826929 2204.100285462009 -57.368082587343 184.6148873826929 2204.100285462009 -53.00038091025408 185.2346225431329 2007.29932862834 -9.360994237893692 136.1948991862062 2205.013253945597 -4.993292560824557 136.8146343466669 2008.212297111999 -4.993292560824557 136.8146343466669 2008.212297111999 -9.360994237893692 136.1948991862062 2205.013253945597 -42.80771540141541 186.5333454573015 2007.529629269153 -47.17541707849273 185.9136102968605 2204.330586102822 -47.17541707849273 185.9136102968605 2204.330586102822 -42.80771540141541 186.5333454573015 2007.529629269153 -7.977793580878597 146.378855485867 2205.076021748302 -3.610091903812418 146.9985906463234 2008.275064914649 -3.610091903812418 146.9985906463234 2008.275064914649 -7.977793580878597 146.378855485867 2205.076021748302 -32.62611908425038 185.1490994890457 2007.751235455158 -36.9938207613302 184.5293643286128 2204.552192288786 -36.9938207613302 184.5293643286128 2204.552192288786 -32.62611908425038 185.1490994890457 2007.751235455158 -9.276915379767388 156.5740711092061 2205.079294888563 -4.909213702697116 157.1938062696603 2008.278338054895 -4.909213702697116 157.1938062696603 2008.278338054895 -9.276915379767388 156.5740711092061 2205.079294888563 -23.14945092187986 181.1762187135309 2007.949045090432 -27.51715259895491 180.5564835530871 2204.750001924214 -27.51715259895491 180.5564835530871 2204.750001924214 -23.14945092187986 181.1762187135309 2007.949045090432 -13.16982663084878 166.0857589598745 2205.022850307305 -8.802124953779412 166.7054941203282 2008.221893473678 -8.802124953779412 166.7054941203282 2008.221893473678 -13.16982663084878 166.0857589598745 2205.022850307305 -15.02353018863596 174.8854483901019 2008.109577775693 -19.39123186571101 174.2657132296595 2204.910534609442 -19.39123186571101 174.2657132296595 2204.910534609442 -15.02353018863596 174.8854483901019 2008.109577775693</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10472\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10469\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10473\">-0.8678676655324394 -0.4963588147550012 -0.02082407592870418 -0.7098439725700666 -0.7041296532035033 -0.01797125720312277 -0.7098439725700342 -0.704129653203536 -0.01797125720312215 -0.8678676655321609 -0.4963588147554881 -0.02082407592869953 0.8678676655321609 0.4963588147554881 0.02082407592869953 0.8678676655324394 0.4963588147550012 0.02082407592870418 0.7098439725700666 0.7041296532035033 0.01797125720312277 0.7098439725700342 0.704129653203536 0.01797125720312215 -0.5034455859493255 -0.8639152194157964 -0.01389372699804896 -0.5034455859489884 -0.8639152194159931 -0.0138937269980421 0.5034455859489884 0.8639152194159931 0.0138937269980421 0.5034455859493255 0.8639152194157964 0.01389372699804896 -0.9667476113080392 -0.2547619433526301 -0.02225776829315446 -0.9667476113079165 -0.2547619433530959 -0.0222577682931532 0.9667476113079165 0.2547619433530959 0.0222577682931532 0.9667476113080392 0.2547619433526301 0.02225776829315446 -0.2627382146292214 -0.9648263911121918 -0.008869362258541576 -0.2627382146294915 -0.9648263911121181 -0.00886936225854734 0.2627382146294915 0.9648263911121181 0.00886936225854734 0.2627382146292214 0.9648263911121918 0.008869362258541576 -0.9997453049990263 0.004196533475496591 -0.02217463053114448 -0.9997453049990247 0.004196533475885116 -0.02217463053114322 0.9997453049990247 -0.004196533475885116 0.02217463053114322 0.9997453049990263 -0.004196533475496591 0.02217463053114448 -0.004125668177941879 -0.9999862387051478 -0.003240565138438912 -0.004125668178236249 -0.9999862387051467 -0.003240565138445441 0.004125668178236249 0.9999862387051467 0.003240565138445441 0.004125668177941879 0.9999862387051478 0.003240565138438912 -0.9646120083115016 0.2628690234822544 -0.02058032834376564 -0.964612008311481 0.262869023482331 -0.02058032834376495 0.964612008311481 -0.262869023482331 0.02058032834376495 0.9646120083115016 -0.2628690234822544 0.02058032834376564 0.2547680357418639 -0.9669986766857625 0.002609071140569801 0.2547680357422379 -0.9669986766856639 0.002609071140578413 -0.2547680357422379 0.9669986766856639 -0.002609071140578413 -0.2547680357418639 0.9669986766857625 -0.002609071140569801 -0.8637419973541154 0.5036274239504922 -0.01758351079035547 -0.8637419973546038 0.5036274239496542 -0.01758351079036894 0.8637419973546038 -0.5036274239496542 0.01758351079036894 0.8637419973541154 -0.5036274239504922 0.01758351079035547 0.4962997190495588 -0.8681117528912998 0.0082809035330533 0.4962997190502667 -0.8681117528908949 0.00828090353307029 -0.4962997190502667 0.8681117528908949 -0.00828090353307029 -0.4962997190495588 0.8681117528912998 -0.0082809035330533 -0.7040093966783376 0.7100644477598163 -0.01338840603470094 -0.7040093966784211 0.7100644477597334 -0.01338840603470305 0.7040093966784211 -0.7100644477597334 0.01338840603470305 0.7040093966783376 -0.7100644477598163 0.01338840603470094 0.7040093966784876 -0.7100644477596695 0.01338840603460562 0.704009396678728 -0.7100644477594309 0.01338840603461171 -0.704009396678728 0.7100644477594309 -0.01338840603461171 -0.7040093966784876 0.7100644477596695 -0.01338840603460562 -0.4962997190499507 0.8681117528910747 -0.00828090353317569 -0.4962997190497803 0.8681117528911722 -0.008280903533171602 0.4962997190497803 -0.8681117528911722 0.008280903533171602 0.4962997190499507 -0.8681117528910747 0.00828090353317569 0.8637419973544602 -0.503627423949905 0.01758351079023118 0.8637419973543544 -0.5036274239500868 0.01758351079022827 -0.8637419973543544 0.5036274239500868 -0.01758351079022827 -0.8637419973544602 0.503627423949905 -0.01758351079023118 -0.2547680357416389 0.9669986766858215 -0.002609071140689354 -0.2547680357417922 0.966998676685781 -0.002609071140692884 0.2547680357417922 -0.966998676685781 0.002609071140692884 0.2547680357416389 -0.9669986766858215 0.002609071140689354 0.9646120083116923 -0.2628690234815672 0.0205803283436199 0.9646120083115275 -0.2628690234821715 0.02058032834361434 -0.9646120083115275 0.2628690234821715 -0.02058032834361434 -0.9646120083116923 0.2628690234815672 -0.0205803283436199 0.004125668177934601 0.9999862387051484 0.003240565138317772 0.004125668178363405 0.9999862387051467 0.003240565138327284 -0.004125668178363405 -0.9999862387051467 -0.003240565138327284 -0.004125668177934601 -0.9999862387051484 -0.003240565138317772 0.9997453049990318 -0.004196533474826337 0.02217463053102388 0.9997453049990305 -0.004196533475146043 0.02217463053102284 -0.9997453049990305 0.004196533475146043 -0.02217463053102284 -0.9997453049990318 0.004196533474826337 -0.02217463053102388 0.2627382146291828 0.9648263911122034 0.008869362258421916 0.2627382146298349 0.9648263911120256 0.008869362258435831 -0.2627382146298349 -0.9648263911120256 -0.008869362258435831 -0.2627382146291828 -0.9648263911122034 -0.008869362258421916 0.9667476113079641 0.2547619433529241 0.02225776829304726 0.966747611308083 0.2547619433524728 0.02225776829304849 -0.966747611308083 -0.2547619433524728 -0.02225776829304849 -0.9667476113079641 -0.2547619433529241 -0.02225776829304726 0.5034455859497178 0.8639152194155697 0.01389372699794098 0.5034455859492716 0.8639152194158298 0.0138937269979319 -0.5034455859492716 -0.8639152194158298 -0.0138937269979319 -0.5034455859497178 -0.8639152194155697 -0.01389372699794098 0.8678676655323894 0.4963588147550935 0.02082407592858954 0.8678676655322931 0.4963588147552617 0.02082407592858794 -0.8678676655322931 -0.4963588147552617 -0.02082407592858794 -0.8678676655323894 -0.4963588147550935 -0.02082407592858954 0.709843972569386 0.7041296532041927 0.01797125720299073 0.7098439725697665 0.7041296532038088 0.01797125720299797 -0.7098439725697665 -0.7041296532038088 -0.01797125720299797 -0.709843972569386 -0.7041296532041927 -0.01797125720299073</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10473\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10471\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10474\">-18.83769475542771 227.2367745651837 -18.83769490951173 230.8821522263111 -18.64736784929995 227.2367745732286 -18.64736800338393 230.8821522343549 -23.71906517901649 230.8821520814859 -23.71906503438476 227.236774420361 -23.9093920851444 230.8821520739348 -23.90939194051253 227.2367744128084 -12.48872503558896 227.2367748371403 -12.48872518862465 230.882152498267 -12.29839812946119 227.2367748451292 -12.29839828249671 230.8821525062566 -27.16786202825161 230.8821520885553 -27.16786190292847 227.2367744274268 -27.35818893437942 230.8821520820099 -27.3581888090562 227.236774420885 -5.295154575214607 227.2367751558024 -5.295154716772721 230.8821528169295 -5.104827669086793 227.2367751631932 -5.104827810644889 230.8821528243199 -28.758728745215 230.8821522535667 -28.75872864774107 227.2367745924415 -28.94905565134284 230.8821522484802 -28.9490555538688 227.2367745873516 2.252786686744549 227.2367754358482 2.252786566310891 230.8821530969772 2.443113592872338 227.2367754421382 2.44311347243874 230.8821531032652 -28.38325039217623 230.8821525321628 -28.38325032919408 227.2367748710346 -28.57357729830405 230.8821525288726 -28.57357723532187 227.2367748677474 9.640719026825479 227.2367756023555 9.640718935723742 230.8821532634844 9.831045932953277 227.236775607111 9.831045841851536 230.88215326824 -26.06701519843218 230.8821528495135 -26.06701517423312 227.2367751883861 -26.25734210450967 230.8821528482499 -26.25734208031146 227.2367751871217 16.36516706523053 227.2367756108567 16.36516700966901 230.8821532719857 16.55549397135826 227.2367756137564 16.55549391579689 230.8821532748853 -21.96787076454966 230.8821531203863 -21.96787078078449 227.236775459258 -22.15819767072439 230.8821531212321 -22.15819768695835 227.2367754601047 21.96787076455184 230.882153120388 22.15819767067971 230.8821531212362 21.96787078078664 227.2367754592582 22.15819768691443 227.2367754601072 -16.36516706518143 227.2367756108532 -16.55549397135548 227.2367756137548 -16.36516700961919 230.8821532719817 -16.55549391579397 230.8821532748831 26.06701519837561 230.8821528495181 26.25734210450341 230.8821528482529 26.06701517417728 227.2367751883876 26.25734208030508 227.2367751871232 -9.640719026826758 227.236775602353 -9.83104593290507 227.2367756071088 -9.640718935725099 230.8821532634822 -9.831045841802574 230.8821532682373 28.38325039217914 230.8821525321659 28.5735772983071 230.8821525288794 28.38325032919695 227.2367748710354 28.57357723532471 227.2367748677488 -2.252786686740985 227.2367754358459 -2.443113592868658 227.2367754421339 -2.252786566307458 230.8821530969761 -2.443113472435224 230.882153103263 28.75872874521505 230.8821522535723 28.94905565134272 230.8821522484807 28.75872864774088 227.2367745924425 28.94905555386864 227.2367745873502 5.295154575227927 227.2367751558004 5.104827669100078 227.2367751631911 5.295154716785916 230.8821528169309 5.104827810658019 230.8821528243213 27.16786202825287 230.8821520885599 27.35818893438078 230.8821520820166 27.16786190292968 227.2367744274273 27.35818880905737 227.2367744208868 12.48872503557226 227.2367748371389 12.29839812944443 227.2367748451279 12.48872518860775 230.8821524982687 12.29839828247992 230.8821525062583 23.7190651790183 230.882152081489 23.90939208514614 230.882152073938 23.71906503438644 227.2367744203571 23.90939194051431 227.2367744128054 18.83769475542932 227.2367745651811 18.64736784930167 227.2367745732283 18.83769490951339 230.8821522263131 18.64736800338553 230.8821522343579</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10474\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10470\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10468\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10469\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10470\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 2 1 2 8 9 12 3 0 3 12 13 16 9 8 9 16 17 20 13 12 13 20 21 24 17 16 17 24 25 28 21 20 21 28 29 32 25 24 25 32 33 36 29 28 29 36 37 40 33 32 33 40 41 44 37 36 37 44 45 48 41 40 41 48 49 44 52 45 52 44 53 48 56 49 56 48 57 53 60 52 60 53 61 57 64 56 64 57 65 61 68 60 68 61 69 65 72 64 72 65 73 69 76 68 76 69 77 73 80 72 80 73 81 77 84 76 84 77 85 81 88 80 88 81 89 85 92 84 92 85 93 89 93 88 93 89 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10470\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10471\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 11 5 7 6 6 7 7 6 11 5 14 8 15 9 4 10 5 11 4 10 15 9 18 12 19 13 10 14 11 15 10 14 19 13 22 16 23 17 14 18 15 19 14 18 23 17 26 20 27 21 18 22 19 23 18 22 27 21 30 24 31 25 22 26 23 27 22 26 31 25 34 28 35 29 26 30 27 31 26 30 35 29 38 32 39 33 30 34 31 35 30 34 39 33 42 36 43 37 34 38 35 39 34 38 43 37 46 40 47 41 38 42 39 43 38 42 47 41 50 44 51 45 42 46 43 47 42 46 51 45 54 48 47 49 55 50 46 51 55 50 47 49 58 52 51 53 59 54 50 55 59 54 51 53 62 56 54 57 63 58 55 59 63 58 54 57 66 60 58 61 67 62 59 63 67 62 58 61 70 64 62 65 71 66 63 67 71 66 62 65 74 68 66 69 75 70 67 71 75 70 66 69 78 72 70 73 79 74 71 75 79 74 70 73 82 76 74 77 83 78 75 79 83 78 74 77 86 80 78 81 87 82 79 83 87 82 78 81 90 84 82 85 91 86 83 87 91 86 82 85 94 88 86 89 95 90 87 91 95 90 86 89 95 92 90 93 94 94 91 95 94 94 90 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10475\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10476\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10480\">-90.97526509850695 181.0296579524452 1641.103208195929 -93.16014287343 166.0095757594829 1444.107576206419 -97.52784455051688 165.3898405990344 1640.908533039859 -86.60756342142213 181.6493931128854 1444.3022513625 -86.60756342142213 181.6493931128854 1444.3022513625 -90.97526509850695 181.0296579524452 1641.103208195929 -93.16014287343 166.0095757594829 1444.107576206419 -97.52784455051688 165.3898405990344 1640.908533039859 -95.4424239574787 149.2060478651703 1444.00400933188 -99.81012563457057 148.5863127047272 1640.80496616531 -95.4424239574787 149.2060478651703 1444.00400933188 -99.81012563457057 148.5863127047272 1640.80496616531 -80.59893473955185 194.4399370583254 1641.37572484339 -76.23123306245225 195.0596722187598 1444.574768010096 -76.23123306245225 195.0596722187598 1444.574768010096 -80.59893473955185 194.4399370583254 1641.37572484339 -93.29887298935182 132.3839420868044 1443.998608650556 -97.66657466642869 131.7642069263418 1640.799565483985 -93.29887298935182 132.3839420868044 1443.998608650556 -97.66657466642869 131.7642069263418 1640.799565483985 -62.73828156280251 205.3265247175805 1444.906554589959 -67.10598323988711 204.7067895571383 1641.707511423338 -67.10598323988711 204.7067895571383 1641.707511423338 -62.73828156280251 205.3265247175805 1444.906554589959 -86.87556942510901 116.689657133321 1444.09174220955 -91.24327110219861 116.0699219728685 1640.892699042995 -86.87556942510901 116.689657133321 1444.09174220955 -91.24327110219861 116.0699219728685 1640.892699042995 -47.04823126900351 211.7502815783188 1445.275000395111 -51.4159329460806 211.1305464178818 1642.075957228464 -51.4159329460806 211.1305464178818 1642.075957228464 -47.04823126900351 211.7502815783188 1445.275000395111 -76.61025078766852 103.1927325882927 1444.277063111031 -80.97795246474857 102.5729974278233 1641.078019944449 -76.61025078766852 103.1927325882927 1444.277063111031 -80.97795246474857 102.5729974278233 1641.078019944449 -30.23033317954764 213.8931743866873 1445.654996452533 -34.59803485662519 213.2734392262464 1642.455953285915 -34.59803485662519 213.2734392262464 1642.455953285915 -30.23033317954764 213.8931743866873 1445.654996452533 -63.20248157792435 92.81296155471787 1444.541942041669 -67.57018325500462 92.19322639426086 1641.342898875031 -67.57018325500462 92.19322639426086 1641.342898875031 -63.20248157792435 92.81296155471787 1444.541942041669 -13.43069925635541 211.6091685390884 1446.020646659243 -17.79840093342068 210.9894333786483 1642.821603492535 -17.79840093342068 210.9894333786483 1642.821603492535 -13.43069925635541 211.6091685390884 1446.020646659243 -47.56597911013273 86.25770827516857 1444.868327940103 -51.93368078720459 85.63797311469679 1641.669284773532 -51.93368078720459 85.63797311469679 1641.669284773532 -47.56597911013273 86.25770827516857 1444.868327940103 2.205803211440752 205.0539152595293 1446.347032557686 -2.16189846562429 204.4341800990956 1643.147989391031 -2.16189846562429 204.4341800990956 1643.147989391031 2.205803211440752 205.0539152595293 1446.347032557686 -30.76634518693004 83.97370242755818 1445.233978146825 -35.13404686400713 83.35396726710573 1642.034934980187 -35.13404686400713 83.35396726710573 1642.034934980187 -30.76634518693004 83.97370242755818 1445.233978146825 15.61357242118356 194.6741442259679 1446.611911488317 11.24587074411897 194.0544090655255 1643.412868321677 11.24587074411897 194.0544090655255 1643.412868321677 15.61357242118356 194.6741442259679 1446.611911488317 -13.94844709748145 86.11659523593461 1445.61397420438 -18.31614877455172 85.49686007546674 1642.414931037783 -18.31614877455172 85.49686007546674 1642.414931037783 -13.94844709748145 86.11659523593461 1445.61397420438 25.87889105862655 181.1772196809266 1446.79723238977 21.51118938156378 180.5574845204843 1643.598189223072 25.87889105862655 181.1772196809266 1446.79723238977 21.51118938156378 180.5574845204843 1643.598189223072 1.74160319395105 92.54035209570226 1445.982420009384 -2.626098483159694 91.92061693522818 1642.783376842794 -2.626098483159694 91.92061693522818 1642.783376842794 1.74160319395105 92.54035209570226 1445.982420009384 32.30219462285481 165.4829347274533 1446.890365948913 27.93449294579045 164.8631995670075 1643.691322782272 32.30219462285481 165.4829347274533 1446.890365948913 27.93449294579045 164.8631995670075 1643.691322782272 15.23455469549549 102.8072045959671 1446.314206589317 10.86685301842408 102.1874694355147 1643.115163422664 10.86685301842408 102.1874694355147 1643.115163422664 15.23455469549549 102.8072045959671 1446.314206589317 34.44574559100056 148.6608289490794 1446.884965267413 30.07804391393461 148.0410937886252 1643.685922100716 34.44574559100056 148.6608289490794 1446.884965267413 30.07804391393461 148.0410937886252 1643.685922100716 21.24318337887553 115.5977485433006 1643.387680070266 25.61088505592625 116.2174837037216 1446.586723236935 25.61088505592625 116.2174837037216 1446.586723236935 21.24318337887553 115.5977485433006 1643.387680070266 32.16346450694891 131.8573010547675 1446.781398392948 27.79576282988182 131.2375658943161 1643.582355226345 32.16346450694891 131.8573010547675 1446.781398392948 27.79576282988182 131.2375658943161 1643.582355226345</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10480\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10477\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10481\">-0.8637419973544761 0.5036274239498735 -0.01758351079034917 -0.964612008311712 0.2628690234814824 -0.02058032834377403 -0.9646120083114405 0.2628690234824796 -0.02058032834376486 -0.8637419973546198 0.5036274239496271 -0.01758351079035314 0.8637419973546198 -0.5036274239496271 0.01758351079035314 0.8637419973544761 -0.5036274239498735 0.01758351079034917 0.964612008311712 -0.2628690234814824 0.02058032834377403 0.9646120083114405 -0.2628690234824796 0.02058032834376486 -0.9997453049990273 0.004196533475198203 -0.02217463053116052 -0.9997453049990253 0.004196533475692069 -0.02217463053115892 0.9997453049990273 -0.004196533475198203 0.02217463053116052 0.9997453049990253 -0.004196533475692069 0.02217463053115892 -0.7040093966784757 0.7100644477596798 -0.01338840603468303 -0.7040093966787911 0.710064447759367 -0.01338840603469101 0.7040093966787911 -0.710064447759367 0.01338840603469101 0.7040093966784757 -0.7100644477596798 0.01338840603468303 -0.9667476113080179 -0.2547619433527102 -0.02225776829316022 -0.9667476113080671 -0.2547619433525233 -0.02225776829316072 0.9667476113080179 0.2547619433527102 0.02225776829316022 0.9667476113080671 0.2547619433525233 0.02225776829316072 -0.4962997190499998 0.8681117528910468 -0.008280903533151257 -0.4962997190491818 0.8681117528915147 -0.00828090353313163 0.4962997190491818 -0.8681117528915147 0.00828090353313163 0.4962997190499998 -0.8681117528910468 0.008280903533151257 -0.8678676655322174 -0.4963588147553891 -0.02082407592870458 -0.8678676655324834 -0.4963588147549237 -0.02082407592870902 0.8678676655322174 0.4963588147553891 0.02082407592870458 0.8678676655324834 0.4963588147549237 0.02082407592870902 -0.2547680357418251 0.9669986766857722 -0.002609071140688278 -0.2547680357415825 0.9669986766858363 -0.002609071140682693 0.2547680357415825 -0.9669986766858363 0.002609071140682693 0.2547680357418251 -0.9669986766857722 0.002609071140688278 -0.7098439725698215 -0.7041296532037502 -0.01797125720312744 -0.7098439725699425 -0.7041296532036281 -0.01797125720312975 0.7098439725698215 0.7041296532037502 0.01797125720312744 0.7098439725699425 0.7041296532036281 0.01797125720312975 0.00412566817791458 0.9999862387051486 0.003240565138304438 0.004125668177801222 0.999986238705149 0.003240565138301923 -0.004125668177801222 -0.999986238705149 -0.003240565138301923 -0.00412566817791458 -0.9999862387051486 -0.003240565138304438 -0.5034455859492486 -0.8639152194158413 -0.01389372699805607 -0.5034455859492728 -0.8639152194158272 -0.01389372699805656 0.5034455859492728 0.8639152194158272 0.01389372699805656 0.5034455859492486 0.8639152194158413 0.01389372699805607 0.2627382146291833 0.9648263911122033 0.008869362258412681 0.2627382146295342 0.9648263911121076 0.008869362258420169 -0.2627382146295342 -0.9648263911121076 -0.008869362258420169 -0.2627382146291833 -0.9648263911122033 -0.008869362258412681 -0.2627382146295747 -0.9648263911120955 -0.008869362258549467 -0.2627382146291159 -0.9648263911122205 -0.008869362258539676 0.2627382146291159 0.9648263911122205 0.008869362258539676 0.2627382146295747 0.9648263911120955 0.008869362258549467 0.5034455859492791 0.8639152194158256 0.01389372699793014 0.5034455859493839 0.8639152194157643 0.01389372699793227 -0.5034455859493839 -0.8639152194157643 -0.01389372699793227 -0.5034455859492791 -0.8639152194158256 -0.01389372699793014 -0.004125668178405578 -0.9999862387051459 -0.003240565138441191 -0.004125668177714491 -0.999986238705149 -0.003240565138425863 0.004125668177714491 0.999986238705149 0.003240565138425863 0.004125668178405578 0.9999862387051459 0.003240565138441191 0.709843972569818 0.704129653203757 0.01797125720299957 0.7098439725696412 0.7041296532039354 0.0179712572029962 -0.7098439725696412 -0.7041296532039354 -0.0179712572029962 -0.709843972569818 -0.704129653203757 -0.01797125720299957 0.2547680357415997 -0.9669986766858322 0.002609071140571868 0.2547680357421454 -0.9669986766856882 0.002609071140584432 -0.2547680357421454 0.9669986766856882 -0.002609071140584432 -0.2547680357415997 0.9669986766858322 -0.002609071140571868 0.8678676655323755 0.4963588147551176 0.02082407592858786 0.8678676655324215 0.4963588147550372 0.02082407592858862 -0.8678676655323755 -0.4963588147551176 -0.02082407592858786 -0.8678676655324215 -0.4963588147550372 -0.02082407592858862 0.496299719049756 -0.8681117528911871 0.008280903533068967 0.4962997190500046 -0.8681117528910448 0.008280903533074932 -0.4962997190500046 0.8681117528910448 -0.008280903533074932 -0.496299719049756 0.8681117528911871 -0.008280903533068967 0.9667476113080873 0.254761943352456 0.02225776829305221 0.9667476113079919 0.254761943352819 0.02225776829305124 -0.9667476113080873 -0.254761943352456 -0.02225776829305221 -0.9667476113079919 -0.254761943352819 -0.02225776829305124 0.7040093966783023 -0.710064447759853 0.01338840603461009 0.7040093966785934 -0.7100644477595645 0.01338840603461745 -0.7040093966785934 0.7100644477595645 -0.01338840603461745 -0.7040093966783023 0.710064447759853 -0.01338840603461009 0.9997453049990277 -0.004196533475761274 0.0221746305310374 0.9997453049990311 -0.004196533474894099 0.02217463053104021 -0.9997453049990277 0.004196533475761274 -0.0221746305310374 -0.9997453049990311 0.004196533474894099 -0.02217463053104021 0.8637419973544883 -0.5036274239498567 0.01758351079023962 0.8637419973542247 -0.5036274239503089 0.01758351079023235 -0.8637419973542247 0.5036274239503089 -0.01758351079023235 -0.8637419973544883 0.5036274239498567 -0.01758351079023962 0.9646120083115201 -0.262869023482198 0.02058032834363281 0.9646120083116284 -0.2628690234817998 0.02058032834363646 -0.9646120083115201 0.262869023482198 -0.02058032834363281 -0.9646120083116284 0.2628690234817998 -0.02058032834363646</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10481\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10479\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10482\">9.578863042469756 216.827539939001 9.578862951367903 220.4729176001271 9.89290243757817 216.8275399468483 9.892902346476468 220.4729176079745 2.190930786143793 216.8275397719961 2.190930665710193 220.4729174331224 2.504970181252204 216.8275397823682 2.504970060818517 220.4729174434942 16.3033109793869 216.8275399481059 16.3033109238255 220.4729176092295 16.61735037449537 216.8275399528909 16.61735031893384 220.4729176140169 -5.357010415487569 216.8275394915881 -5.357010557045817 220.4729171527141 -5.042971020379268 216.8275395037841 -5.042971161937124 220.4729171649102 21.90601456641704 220.4729174583021 22.2200539615256 220.4729174596984 21.90601458265177 216.8275397971769 22.22005397776016 216.8275397985748 -12.55058084308294 216.8275391727318 -12.55058099611835 220.4729168338578 -12.23654144797436 216.8275391859132 -12.23654160101003 220.4729168470396 26.00515888480011 220.4729171881181 26.31919827990874 220.4729171860316 26.00515886060187 216.8275395269935 26.31919825571034 216.8275395249065 -18.89955055993935 216.8275389007562 -18.8995507140235 220.4729165618825 -18.58551116483102 216.8275389140303 -18.58551131891482 220.4729165751562 28.32139396784091 220.4729168714249 28.63543336294936 220.4729168660001 28.3213939048586 216.8275392102998 28.63543329996706 216.8275392048754 -23.65720852153624 220.4729164221261 -23.65720837690436 216.8275387610013 -23.97124791664452 220.4729164096677 -23.9712477720128 216.8275387485418 28.69687222239051 220.4729165934139 29.01091161749897 220.4729165850169 28.69687212491649 216.8275389322904 29.01091152002477 216.8275389238917 -27.1060054259072 220.472916428868 -27.10600530058413 216.8275387677419 -27.42004482101585 220.4729164180705 -27.42004469569251 216.8275387569457 27.10600542590577 220.4729164288746 27.42004482101428 220.4729164180772 27.10600530058252 216.82753876775 27.42004469569105 216.8275387569536 -28.69687222239078 220.4729165934078 -28.69687212491661 216.827538932283 -29.01091161749912 220.4729165850101 -29.01091152002511 216.827538923884 23.65720852153926 220.4729164221322 23.97124791664763 220.4729164096725 23.65720837690745 216.8275387610074 23.97124777201571 216.8275387485481 -28.32139396784166 220.4729168714196 -28.32139390485943 216.827539210294 -28.63543336295016 220.472916865992 -28.63543329996783 216.8275392048672 18.89955055993737 216.8275389007627 18.58551116482883 216.8275389140364 18.89955071402141 220.4729165618874 18.58551131891286 220.47291657516 -26.00515888484414 220.472917188113 -26.00515886064508 216.8275395269873 -26.31919827990446 220.4729171860277 -26.31919825570614 216.8275395249021 12.55058084307902 216.8275391727356 12.2365414479707 216.8275391859198 12.55058099611469 220.4729168338592 12.23654160100632 220.4729168470445 -21.9060145664131 220.472917458298 -21.9060145826479 216.8275397971735 -22.22005396156643 220.4729174596967 -22.22005397780043 216.827539798571 5.357010415494147 216.8275394915934 5.042971020385656 216.8275395037862 5.357010557052283 220.4729171527181 5.042971161943639 220.4729171649099 -16.30331097935248 216.8275399481032 -16.61735037450504 216.8275399528885 -16.30331092379031 220.4729176092274 -16.61735031894356 220.472917614013 -2.190930786141979 216.8275397719951 -2.504970181250373 216.8275397823685 -2.190930665708453 220.4729174331187 -2.504970060816787 220.4729174434939 -9.578863042471298 216.8275399389989 -9.892902437532401 216.8275399468469 -9.578862951369507 220.4729176001244 -9.892902346429985 220.4729176079711</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10482\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10478\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10476\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10477\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10478\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 2 8 9 8 2 1 12 3 0 3 12 13 9 16 17 16 9 8 12 20 13 20 12 21 17 24 25 24 17 16 21 28 20 28 21 29 25 32 33 32 25 24 29 36 28 36 29 37 40 33 32 33 40 41 37 44 36 44 37 45 48 41 40 41 48 49 45 52 44 52 45 53 56 49 48 49 56 57 53 60 52 60 53 61 64 57 56 57 64 65 68 61 69 61 68 60 72 65 64 65 72 73 76 69 77 69 76 68 80 73 72 73 80 81 84 77 85 77 84 76 80 88 81 88 80 89 92 85 93 85 92 84 89 93 88 93 89 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10478\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10479\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 6 4 7 5 10 6 11 7 10 6 7 5 14 8 15 9 4 10 5 11 4 10 15 9 10 12 11 13 18 14 19 15 18 14 11 13 22 16 15 17 23 18 14 19 23 18 15 17 18 20 19 21 26 22 27 23 26 22 19 21 30 24 22 25 31 26 23 27 31 26 22 25 26 28 27 29 34 30 35 31 34 30 27 29 38 32 30 33 39 34 31 35 39 34 30 33 42 36 43 37 35 38 34 39 35 38 43 37 46 40 38 41 47 42 39 43 47 42 38 41 50 44 51 45 42 46 43 47 42 46 51 45 54 48 46 49 55 50 47 51 55 50 46 49 58 52 59 53 50 54 51 55 50 54 59 53 62 56 54 57 63 58 55 59 63 58 54 57 66 60 67 61 58 62 59 63 58 62 67 61 63 64 70 65 62 66 71 67 62 66 70 65 74 68 75 69 66 70 67 71 66 70 75 69 70 72 78 73 71 74 79 75 71 74 78 73 82 76 83 77 74 78 75 79 74 78 83 77 78 80 86 81 79 82 87 83 79 82 86 81 90 84 83 85 91 86 82 87 91 86 83 85 86 88 94 89 87 90 95 91 87 90 94 89 94 92 90 93 95 94 91 95 95 94 90 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10483\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10484\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10488\">-51.54311875557301 185.2938751364181 2401.131542936186 -36.9938207613302 184.5293643286128 2204.552192288786 -47.17541707849273 185.9136102968605 2204.330586102822 -41.36152243840002 183.9096291681705 2401.353149122138 -41.36152243840002 183.9096291681705 2401.353149122138 -51.54311875557301 185.2938751364181 2401.131542936186 -36.9938207613302 184.5293643286128 2204.552192288786 -47.17541707849273 185.9136102968605 2204.330586102822 -61.73578426441463 183.9951522222447 2400.901242295366 -57.368082587343 184.6148873826929 2204.100285462009 -61.73578426441463 183.9951522222447 2400.901242295366 -57.368082587343 184.6148873826929 2204.100285462009 -27.51715259895491 180.5564835530871 2204.750001924214 -31.88485427602382 179.9367483926468 2401.550958757576 -31.88485427602382 179.9367483926468 2401.550958757576 -27.51715259895491 180.5564835530871 2204.750001924214 -71.24490565467659 180.1019662460064 2400.677941807438 -66.87720397759199 180.721701406449 2203.876984974015 -71.24490565467659 180.1019662460064 2400.677941807438 -66.87720397759199 180.721701406449 2203.876984974015 -19.39123186571101 174.2657132296595 2204.910534609442 -23.75893354278082 173.6459780692206 2401.711491442802 -23.75893354278082 173.6459780692206 2401.711491442802 -19.39123186571101 174.2657132296595 2204.910534609442 -79.42245201817127 173.879631398188 2400.47685903176 -75.05475034109099 174.4993665586358 2203.675902198394 -79.42245201817127 173.879631398188 2400.47685903176 -75.05475034109099 174.4993665586358 2203.675902198394 -13.16982663084878 166.0857589598745 2205.022850307305 -17.53752830792155 165.4660237994301 2401.823807140665 -13.16982663084878 166.0857589598745 2205.022850307305 -17.53752830792155 165.4660237994301 2401.823807140665 -81.34343540718169 166.3719246762205 2203.510740593767 -85.71113708426765 165.7521895157718 2400.311697427123 -81.34343540718169 166.3719246762205 2203.510740593767 -85.71113708426765 165.7521895157718 2400.311697427123 -9.276915379767388 156.5740711092061 2205.079294888563 -13.64461705683198 155.9543359487658 2401.880251721912 -9.276915379767388 156.5740711092061 2205.079294888563 -13.64461705683198 155.9543359487658 2401.880251721912 -85.31469568115585 156.8932474922663 2203.39275565067 -89.68239735824068 156.2735123318133 2400.193712484013 -85.31469568115585 156.8932474922663 2203.39275565067 -89.68239735824068 156.2735123318133 2400.193712484013 -7.977793580878597 146.378855485867 2205.076021748302 -12.34549525795114 145.7591203254244 2401.876978581662 -7.977793580878597 146.378855485867 2205.076021748302 -12.34549525795114 145.7591203254244 2401.876978581662 -86.69789633816595 146.7092911925998 2203.329987848021 -91.06559801525168 146.0895560321465 2400.130944681388 -86.69789633816595 146.7092911925998 2203.329987848021 -91.06559801525168 146.0895560321465 2400.130944681388 -9.360994237893692 136.1948991862062 2205.013253945597 -13.72869591495828 135.5751640257562 2401.814210778961 -9.360994237893692 136.1948991862062 2205.013253945597 -13.72869591495828 135.5751640257562 2401.814210778961 -85.39877453928898 136.5140755692628 2203.326714707762 -89.76647621636676 135.8943404088073 2400.127671541119 -85.39877453928898 136.5140755692628 2203.326714707762 -89.76647621636676 135.8943404088073 2400.127671541119 -13.33225451082058 126.7162220047594 2204.895269002505 -17.69995618786743 126.0964868443366 2401.696225835914 -13.33225451082058 126.7162220047594 2204.895269002505 -17.69995618786743 126.0964868443366 2401.696225835914 -81.50586328820009 127.0023877185914 2203.383159289015 -85.87356496528787 126.3826525581367 2400.184116122377 -81.50586328820009 127.0023877185914 2203.383159289015 -85.87356496528787 126.3826525581367 2400.184116122377 -19.6209395784615 118.5887801203397 2204.730107397936 -23.98864125554292 117.9690449598895 2401.531064231274 -19.6209395784615 118.5887801203397 2204.730107397936 -23.98864125554292 117.9690449598895 2401.531064231274 -75.28445805333695 118.8224334488101 2203.495474986823 -79.65215973041904 118.2026982883543 2400.296431820105 -75.28445805333695 118.8224334488101 2203.495474986823 -79.65215973041904 118.2026982883543 2400.296431820105 -32.16618762107555 111.7467101105131 2401.329981455472 -27.79848594396913 112.3664452709921 2204.529024622134 -32.16618762107555 111.7467101105131 2401.329981455472 -27.79848594396913 112.3664452709921 2204.529024622134 -67.15853732009305 112.5316631253759 2203.656007672054 -71.52623899717423 111.9119279649215 2400.45696450542 -71.52623899717423 111.9119279649215 2400.45696450542 -67.15853732009305 112.5316631253759 2203.656007672054 -41.67530900878046 107.8535241353217 2401.106680967605 -37.30760733170769 108.4732592957787 2204.305724134289 -41.67530900878046 107.8535241353217 2401.106680967605 -37.30760733170769 108.4732592957787 2204.305724134289 -57.68186915772026 108.5587823498633 2203.853817307589 -62.04957083480213 107.9390471893985 2400.654774140898 -62.04957083480213 107.9390471893985 2400.654774140898 -57.68186915772026 108.5587823498633 2203.853817307589 -51.86797451762186 106.5548012211503 2400.876380326694 -47.50027284054431 107.174536381606 2204.075423493279 -51.86797451762186 106.5548012211503 2400.876380326694 -47.50027284054431 107.174536381606 2204.075423493279</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10488\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10485\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10489\">0.004125668178118618 0.9999862387051476 0.003240565138320281 0.2627382146286898 0.9648263911123377 0.00886936225840834 0.004125668177884502 0.9999862387051485 0.003240565138315088 0.2627382146297823 0.9648263911120398 0.008869362258431648 -0.2627382146297823 -0.9648263911120398 -0.008869362258431648 -0.004125668178118618 -0.9999862387051476 -0.003240565138320281 -0.2627382146286898 -0.9648263911123377 -0.00886936225840834 -0.004125668177884502 -0.9999862387051485 -0.003240565138315088 -0.2547680357419195 0.9669986766857475 -0.002609071140679909 -0.2547680357416922 0.9669986766858074 -0.002609071140674676 0.2547680357419195 -0.9669986766857475 0.002609071140679909 0.2547680357416922 -0.9669986766858074 0.002609071140674676 0.5034455859493247 0.8639152194157987 0.01389372699794267 0.5034455859493302 0.8639152194157956 0.01389372699794278 -0.5034455859493302 -0.8639152194157956 -0.01389372699794278 -0.5034455859493247 -0.8639152194157987 -0.01389372699794267 -0.4962997190495457 0.8681117528913066 -0.008280903533142812 -0.4962997190499637 0.8681117528910675 -0.008280903533152846 0.4962997190495457 -0.8681117528913066 0.008280903533142812 0.4962997190499637 -0.8681117528910675 0.008280903533152846 0.7098439725699313 0.7041296532036423 0.01797125720301943 0.7098439725698605 0.7041296532037136 0.01797125720301808 -0.7098439725698605 -0.7041296532037136 -0.01797125720301808 -0.7098439725699313 -0.7041296532036423 -0.01797125720301943 -0.7040093966781278 0.710064447760025 -0.01338840603466856 -0.7040093966785357 0.7100644477596204 -0.01338840603467889 0.7040093966781278 -0.710064447760025 0.01338840603466856 0.7040093966785357 -0.7100644477596204 0.01338840603467889 0.8678676655324217 0.4963588147550362 0.02082407592860379 0.8678676655323249 0.4963588147552057 0.02082407592860218 -0.8678676655324217 -0.4963588147550362 -0.02082407592860379 -0.8678676655323249 -0.4963588147552057 -0.02082407592860218 -0.8637419973546606 0.503627423949558 -0.01758351079033768 -0.8637419973541319 0.5036274239504648 -0.01758351079032309 0.8637419973546606 -0.503627423949558 0.01758351079033768 0.8637419973541319 -0.5036274239504648 0.01758351079032309 0.9667476113080282 0.2547619433526793 0.02225776829305717 0.966747611307933 0.2547619433530413 0.0222577682930562 -0.9667476113080282 -0.2547619433526793 -0.02225776829305717 -0.966747611307933 -0.2547619433530413 -0.0222577682930562 -0.9646120083116717 0.262869023481632 -0.02058032834374931 -0.9646120083115964 0.2628690234819084 -0.02058032834374676 0.9646120083116717 -0.262869023481632 0.02058032834374931 0.9646120083115964 -0.2628690234819084 0.02058032834374676 0.999745304999029 -0.00419653347537381 0.02217463053104827 0.9997453049990314 -0.00419653347482098 0.02217463053105006 -0.999745304999029 0.00419653347537381 -0.02217463053104827 -0.9997453049990314 0.00419653347482098 -0.02217463053105006 -0.999745304999028 0.004196533475148236 -0.02217463053114011 -0.9997453049990278 0.004196533475224358 -0.02217463053113987 0.999745304999028 -0.004196533475148236 0.02217463053114011 0.9997453049990278 -0.004196533475224358 0.02217463053113987 0.9646120083114492 -0.2628690234824561 0.02058032834364656 0.9646120083116618 -0.2628690234816757 0.02058032834365373 -0.9646120083114492 0.2628690234824561 -0.02058032834364656 -0.9646120083116618 0.2628690234816757 -0.02058032834365373 -0.9667476113079817 -0.2547619433528483 -0.02225776829315676 -0.9667476113080875 -0.2547619433524465 -0.02225776829315784 0.9667476113079817 0.2547619433528483 0.02225776829315676 0.9667476113080875 0.2547619433524465 0.02225776829315784 0.8637419973541796 -0.5036274239503857 0.01758351079024854 0.8637419973544326 -0.5036274239499515 0.01758351079025552 -0.8637419973541796 0.5036274239503857 -0.01758351079024854 -0.8637419973544326 0.5036274239499515 -0.01758351079025552 -0.8678676655322222 -0.496358814755381 -0.0208240759287038 -0.8678676655326904 -0.4963588147545619 -0.02082407592871161 0.8678676655322222 0.496358814755381 0.0208240759287038 0.8678676655326904 0.4963588147545619 0.02082407592871161 0.7040093966783867 -0.7100644477597693 0.01338840603462242 0.7040093966789931 -0.7100644477591678 0.01338840603463778 -0.7040093966783867 0.7100644477597693 -0.01338840603462242 -0.7040093966789931 0.7100644477591678 -0.01338840603463778 -0.7098439725696358 -0.7041296532039377 -0.01797125720312125 -0.7098439725699823 -0.7041296532035879 -0.01797125720312785 0.7098439725696358 0.7041296532039377 0.01797125720312125 0.7098439725699823 0.7041296532035879 0.01797125720312785 0.4962997190503497 -0.8681117528908474 0.008280903533082916 0.4962997190495501 -0.8681117528913047 0.008280903533063728 -0.4962997190503497 0.8681117528908474 -0.008280903533082916 -0.4962997190495501 0.8681117528913047 -0.008280903533063728 -0.5034455859497079 -0.8639152194155735 -0.01389372699806401 -0.5034455859488656 -0.8639152194160646 -0.01389372699804686 0.5034455859488656 0.8639152194160646 0.01389372699804686 0.5034455859497079 0.8639152194155735 0.01389372699806401 0.2547680357418894 -0.9669986766857557 0.002609071140579877 0.2547680357413417 -0.9669986766858999 0.002609071140567267 -0.2547680357418894 0.9669986766857557 -0.002609071140579877 -0.2547680357413417 0.9669986766858999 -0.002609071140567267 -0.2627382146293614 -0.9648263911121535 -0.008869362258539102 -0.2627382146293914 -0.9648263911121455 -0.008869362258539742 0.2627382146293914 0.9648263911121455 0.008869362258539742 0.2627382146293614 0.9648263911121535 0.008869362258539102 -0.004125668178126435 -0.9999862387051471 -0.003240565138428583 -0.004125668177785125 -0.9999862387051486 -0.003240565138421012 0.004125668178126435 0.9999862387051471 0.003240565138428583 0.004125668177785125 0.9999862387051486 0.003240565138421012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10489\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10487\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10490\">28.94905574881702 234.5275299096056 28.75872874521509 230.8821522535723 28.94905565134276 230.8821522484807 28.75872884268916 234.5275299146969 28.57357736128731 234.5275301900034 28.38325039217711 230.8821525321652 28.57357729830508 230.8821525288787 28.38325045515948 234.5275301932901 27.35818905970428 234.5275297431423 27.1678620282531 230.882152088561 27.35818893438101 230.8821520820176 27.16786215357637 234.5275297496858 26.25734212870949 234.5275305093794 26.06701519838332 230.8821528495187 26.25734210451111 230.8821528482535 26.06701522258154 234.5275305106434 23.90939222977682 234.5275297350636 23.71906517901708 230.8821520814899 23.90939208514492 230.8821520739388 23.71906532364901 234.5275297426147 22.15819765444574 234.5275307823612 21.9678707645526 230.882153120388 22.15819767068047 230.8821531212363 21.96787074831786 234.527530781514 18.64736800338109 230.8821522343588 18.8376950635931 234.5275298874387 18.64736815746518 234.5275298954836 18.83769490950895 230.882152226314 16.36516695410773 234.5275309331105 16.55549391579706 230.8821532748852 16.55549386023569 234.5275309360099 16.36516700966918 230.8821532719856 12.29839828248925 230.8821525062583 12.48872534165279 234.5275301593934 12.29839843552497 234.5275301673829 12.48872518861709 230.8821524982686 9.640718844615472 234.5275309246092 9.831045841844956 230.88215326824 9.831045750743334 234.5275309293645 9.640718935717162 230.8821532634844 5.104827810654479 230.8821528243222 5.295154858340607 234.5275304780564 5.104827952212684 234.527530485447 5.295154716782375 230.8821528169319 2.252786445866589 234.5275307581024 2.443113472427946 230.882153103266 2.443113351994444 234.5275307643909 2.252786566300097 230.882153096978 -2.44311347242829 230.8821531032633 -2.252786445866797 234.5275307581011 -2.443113351994676 234.5275307643881 -2.252786566300526 230.8821530969764 -5.29515485833247 234.5275304780548 -5.104827810646595 230.8821528243203 -5.104827952204579 234.5275304854451 -5.295154716774425 230.8821528169299 -9.831045841804988 230.882153268238 -9.64071884462569 234.5275309246077 -9.831045750702561 234.5275309293637 -9.640718935727513 230.8821532634829 -12.48872534164928 234.5275301593921 -12.2983982824858 230.882152506257 -12.29839843552143 234.5275301673818 -12.48872518861374 230.8821524982674 -16.55549391579947 230.8821532748842 -16.36516695406248 234.5275309331084 -16.55549386023808 234.5275309360085 -16.36516700962469 230.8821532719828 -18.83769506359575 234.5275298874358 -18.64736800338383 230.8821522343548 -18.64736815746788 234.5275298954782 -18.83769490951164 230.882152226311 -21.96787076454232 230.8821531203867 -22.15819765448307 234.5275307823569 -22.15819767071705 230.8821531212325 -21.96787074830765 234.5275307815111 -23.71906517901845 230.8821520814852 -23.90939222977831 234.5275297350574 -23.90939208514637 230.8821520739341 -23.71906532365037 234.5275297426101 -26.06701519843703 230.8821528495132 -26.25734212871284 234.5275305093736 -26.25734210451451 230.8821528482497 -26.06701522263607 234.5275305106376 -27.16786202825094 230.8821520885576 -27.35818905970212 234.5275297431371 -27.35818893437875 230.8821520820122 -27.16786215357427 234.5275297496814 -28.38325039217494 230.8821525321634 -28.57357736128508 234.527530189999 -28.57357729830275 230.8821525288732 -28.38325045515722 234.5275301932874 -28.75872874521457 230.8821522535667 -28.94905574881665 234.5275299096041 -28.9490556513424 230.8821522484802 -28.75872884268872 234.5275299146925</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10490\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10486\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10484\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10485\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10486\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10487\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 2 5 9 6 2 5 8 4 0 7 5 7 10 4 7 5 11 6 7 5 10 4 3 8 12 9 1 10 12 9 3 8 13 11 14 11 4 8 15 9 6 10 15 9 4 8 16 12 9 13 17 14 9 13 16 12 8 15 10 15 18 12 11 13 19 14 11 13 18 12 13 16 20 17 12 18 20 17 13 16 21 19 22 19 14 16 23 17 15 18 23 17 14 16 24 20 17 21 25 22 17 21 24 20 16 23 18 23 26 20 19 21 27 22 19 21 26 20 28 24 21 25 29 26 21 25 28 24 20 27 23 27 30 24 22 25 31 26 22 25 30 24 24 28 32 29 33 30 32 29 24 28 25 31 27 31 26 28 34 29 35 30 34 29 26 28 36 32 29 33 37 34 29 33 36 32 28 35 30 35 38 32 31 33 39 34 31 33 38 32 33 36 40 37 41 38 40 37 33 36 32 39 34 39 35 36 42 37 43 38 42 37 35 36 44 40 37 41 45 42 37 41 44 40 36 43 38 43 46 40 39 41 47 42 39 41 46 40 41 44 48 45 49 46 48 45 41 44 40 47 42 47 43 44 50 45 51 46 50 45 43 44 52 48 45 49 53 50 45 49 52 48 44 51 46 51 54 48 47 49 55 50 47 49 54 48 49 52 56 53 57 54 56 53 49 52 48 55 50 55 51 52 58 53 59 54 58 53 51 52 60 56 53 57 61 58 53 57 60 56 52 59 54 59 62 56 55 57 63 58 55 57 62 56 57 60 64 61 65 62 64 61 57 60 56 63 58 63 59 60 66 61 67 62 66 61 59 60 68 64 61 65 69 66 61 65 68 64 60 67 62 67 70 64 63 65 71 66 63 65 70 64 65 68 72 69 73 70 72 69 65 68 64 71 66 71 67 68 74 69 75 70 74 69 67 68 68 72 76 73 77 74 76 73 68 72 69 75 71 75 70 72 78 73 79 74 78 73 70 72 80 76 73 77 72 78 73 77 80 76 81 79 82 79 83 76 75 77 74 78 75 77 83 76 77 80 84 81 85 82 84 81 77 80 76 83 78 83 79 80 86 81 87 82 86 81 79 80 88 84 81 85 80 86 81 85 88 84 89 87 90 87 91 84 82 85 83 86 82 85 91 84 85 88 92 89 93 90 92 89 85 88 84 91 86 91 87 88 94 89 95 90 94 89 87 88 93 92 89 93 88 94 89 93 93 92 92 95 94 95 95 92 90 93 91 94 90 93 95 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10491\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10492\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10496\">-37.91616270189002 110.9308435534847 2660.413747089651 -51.09415349828555 106.5170800435228 2825.503250341824 -47.42528408954127 107.0376575783027 2660.190446601848 -41.58503211066136 110.4102660186797 2825.726550829651 -41.58503211066136 110.4102660186797 2825.726550829651 -37.91616270189002 110.9308435534847 2660.413747089651 -51.09415349828555 106.5170800435228 2825.503250341824 -47.42528408954127 107.0376575783027 2660.190446601848 -29.73861633629917 117.1531784028937 2660.61482986529 -33.40748574504141 116.6326008681171 2825.927633605445 -33.40748574504141 116.6326008681171 2825.927633605445 -29.73861633629917 117.1531784028937 2660.61482986529 -61.28681900713423 105.2183571293484 2825.2729497009 -57.61794959839358 105.7389346641417 2659.960145960871 -61.28681900713423 105.2183571293484 2825.2729497009 -57.61794959839358 105.7389346641417 2659.960145960871 -27.11880067732409 124.7600427526422 2826.092795210061 -23.44993126860254 125.280620287384 2660.779991469926 -23.44993126860254 125.280620287384 2660.779991469926 -27.11880067732409 124.7600427526422 2826.092795210061 -71.468415324322 106.6026030976065 2825.051343515066 -67.7995459155743 107.1231806323922 2659.738539775062 -71.468415324322 106.6026030976065 2825.051343515066 -67.7995459155743 107.1231806323922 2659.738539775062 -23.14754040444564 134.2387199339687 2826.210780153127 -19.47867099571499 134.7592974687555 2660.897976412931 -19.47867099571499 134.7592974687555 2660.897976412931 -23.14754040444564 134.2387199339687 2826.210780153127 -80.94508348670388 110.5754838731245 2824.85353387959 -77.27621407795209 111.096061407911 2659.540730139581 -80.94508348670388 110.5754838731245 2824.85353387959 -77.27621407795209 111.096061407911 2659.540730139581 -21.76433974743372 144.422676233646 2826.27354795576 -18.0954703386933 144.9432537684224 2660.960744215674 -18.0954703386933 144.9432537684224 2660.960744215674 -21.76433974743372 144.422676233646 2826.27354795576 -89.07100421994483 116.866254196558 2824.693001194337 -85.40213481120122 117.3868317313437 2659.380197454442 -89.07100421994483 116.866254196558 2824.693001194337 -85.40213481120122 117.3868317313437 2659.380197454442 -23.06346154631115 154.6178918569913 2826.276821096086 -19.39459213757891 155.1384693917676 2660.964017355796 -19.39459213757891 155.1384693917676 2660.964017355796 -23.06346154631115 154.6178918569913 2826.276821096086 -95.29240945481888 125.0462084663517 2824.580685496476 -91.62354004606368 125.5667860011343 2659.267881756534 -91.62354004606368 125.5667860011343 2659.267881756534 -95.29240945481888 125.0462084663517 2824.580685496476 -26.95637279740186 164.1295797076651 2826.220376514879 -23.28750338866348 164.6501572424438 2660.907572774564 -23.28750338866348 164.6501572424438 2660.907572774564 -26.95637279740186 164.1295797076651 2826.220376514879 -99.18532070590982 134.557896317026 2824.524240915265 -95.51645129715735 135.0784738518065 2659.211437175263 -95.51645129715735 135.0784738518065 2659.211437175263 -99.18532070590982 134.557896317026 2824.524240915265 -33.17777803227205 172.3095339774644 2826.108060816961 -29.50890862353322 172.8301115122276 2660.79525707677 -29.50890862353322 172.8301115122276 2660.79525707677 -33.17777803227205 172.3095339774644 2826.108060816961 -100.4844425047877 144.7531119403662 2824.527514055601 -96.81557309603386 145.2736894751517 2659.214710315437 -96.81557309603386 145.2736894751517 2659.214710315437 -100.4844425047877 144.7531119403662 2824.527514055601 -41.30369876551754 178.6003043008879 2825.947528131654 -37.63482935678371 179.1208818356624 2660.634724391479 -41.30369876551754 178.6003043008879 2825.947528131654 -37.63482935678371 179.1208818356624 2660.634724391479 -99.1012418477826 154.9370682400481 2824.590281858229 -95.43237243901899 155.4576457748234 2659.277478118194 -95.43237243901899 155.4576457748234 2659.277478118194 -99.1012418477826 154.9370682400481 2824.590281858229 -50.78036692790988 182.5731850764132 2825.74971849631 -47.11149751915582 183.0937626111846 2660.436914755985 -50.78036692790988 182.5731850764132 2825.74971849631 -47.11149751915582 183.0937626111846 2660.436914755985 -95.12998157379548 164.4157454240093 2824.708266801305 -91.46111216504892 164.9363229587925 2659.395463061297 -91.46111216504892 164.9363229587925 2659.395463061297 -95.12998157379548 164.4157454240093 2824.708266801305 -60.9619632450956 183.9574310446748 2825.528112310445 -57.29309383633358 184.4780085794369 2660.215308570256 -60.9619632450956 183.9574310446748 2825.528112310445 -57.29309383633358 184.4780085794369 2660.215308570256 -88.84129650769864 172.5431873064328 2824.873428405881 -85.17242709894458 173.0637648412021 2659.560624665823 -85.17242709894458 173.0637648412021 2659.560624665823 -88.84129650769864 172.5431873064328 2824.873428405881 -71.1546287539386 182.6587081304961 2825.297811669569 -67.48575934518499 183.1792856652672 2659.985007929352 -71.1546287539386 182.6587081304961 2825.297811669569 -67.48575934518499 183.1792856652672 2659.985007929352 -76.99488073544103 179.2860996890225 2659.761707441385 -80.66375014420623 178.7655221542571 2825.074511181585 -80.66375014420623 178.7655221542571 2825.074511181585 -76.99488073544103 179.2860996890225 2659.761707441385</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10496\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10493\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10497\">0.4962997190501132 -0.8681117528909825 0.008280903533077252 0.2547680357417911 -0.9669986766857818 0.002609071140589424 0.2547680357416334 -0.9669986766858232 0.002609071140585794 0.4962997190500084 -0.8681117528910427 0.008280903533074738 -0.4962997190500084 0.8681117528910427 -0.008280903533074738 -0.4962997190501132 0.8681117528909825 -0.008280903533077252 -0.2547680357417911 0.9669986766857818 -0.002609071140589424 -0.2547680357416334 0.9669986766858232 -0.002609071140585794 0.7040093966787263 -0.7100644477594323 0.01338840603463324 0.7040093966789451 -0.7100644477592152 0.01338840603463878 -0.7040093966789451 0.7100644477592152 -0.01338840603463878 -0.7040093966787263 0.7100644477594323 -0.01338840603463324 -0.0041256681780931 -0.9999862387051475 -0.003240565138419161 -0.00412566817830841 -0.9999862387051466 -0.003240565138423936 0.0041256681780931 0.9999862387051475 0.003240565138419161 0.00412566817830841 0.9999862387051466 0.003240565138423936 0.8637419973546212 -0.5036274239496275 0.01758351079027483 0.8637419973544119 -0.5036274239499864 0.01758351079026905 -0.8637419973544119 0.5036274239499864 -0.01758351079026905 -0.8637419973546212 0.5036274239496275 -0.01758351079027483 -0.2627382146291861 -0.9648263911122014 -0.00886936225852885 -0.2627382146295547 -0.9648263911121011 -0.008869362258536715 0.2627382146291861 0.9648263911122014 0.00886936225852885 0.2627382146295547 0.9648263911121011 0.008869362258536715 0.9646120083115973 -0.2628690234819128 0.02058032834365554 0.9646120083114895 -0.2628690234823081 0.02058032834365191 -0.9646120083114895 0.2628690234823081 -0.02058032834365191 -0.9646120083115973 0.2628690234819128 -0.02058032834365554 -0.5034455859490596 -0.8639152194159516 -0.01389372699805026 -0.5034455859491633 -0.8639152194158911 -0.01389372699805237 0.5034455859490596 0.8639152194159516 0.01389372699805026 0.5034455859491633 0.8639152194158911 0.01389372699805237 0.99974530499903 -0.004196533475132594 0.02217463053104462 0.9997453049990294 -0.004196533475300864 0.02217463053104408 -0.9997453049990294 0.004196533475300864 -0.02217463053104408 -0.99974530499903 0.004196533475132594 -0.02217463053104462 -0.7098439725697825 -0.7041296532037893 -0.01797125720313699 -0.7098439725696635 -0.7041296532039094 -0.01797125720313473 0.7098439725697825 0.7041296532037893 0.01797125720313699 0.7098439725696635 0.7041296532039094 0.01797125720313473 0.9667476113078959 0.2547619433531841 0.02225776829303991 0.9667476113079929 0.2547619433528157 0.0222577682930409 -0.9667476113079929 -0.2547619433528157 -0.0222577682930409 -0.9667476113078959 -0.2547619433531841 -0.02225776829303991 -0.8678676655323806 -0.4963588147551027 -0.02082407592873497 -0.8678676655323233 -0.4963588147552028 -0.02082407592873401 0.8678676655323233 0.4963588147552028 0.02082407592873401 0.8678676655323806 0.4963588147551027 0.02082407592873497 0.86786766553232 0.4963588147552155 0.0208240759285737 0.8678676655325753 0.4963588147547688 0.02082407592857797 -0.8678676655325753 -0.4963588147547688 -0.02082407592857797 -0.86786766553232 -0.4963588147552155 -0.0208240759285737 -0.966747611308205 -0.2547619433519978 -0.02225776829319237 -0.9667476113080885 -0.25476194335244 -0.02225776829319118 0.9667476113080885 0.25476194335244 0.02225776829319118 0.966747611308205 0.2547619433519978 0.02225776829319237 0.7098439725701385 0.704129653203434 0.01797125720299636 0.7098439725698363 0.7041296532037387 0.01797125720299061 -0.7098439725698363 -0.7041296532037387 -0.01797125720299061 -0.7098439725701385 -0.704129653203434 -0.01797125720299636 -0.9997453049990244 0.004196533475871088 -0.02217463053116351 -0.9997453049990263 0.004196533475422064 -0.02217463053116496 0.9997453049990263 -0.004196533475422064 0.02217463053116496 0.9997453049990244 -0.004196533475871088 0.02217463053116351 0.5034455859492052 0.8639152194158687 0.01389372699793507 0.5034455859487841 0.863915219416114 0.0138937269979265 -0.5034455859492052 -0.8639152194158687 -0.01389372699793507 -0.5034455859487841 -0.863915219416114 -0.0138937269979265 -0.9646120083115786 0.2628690234819741 -0.02058032834375543 -0.9646120083117435 0.2628690234813678 -0.020580328343761 0.9646120083117435 -0.2628690234813678 0.020580328343761 0.9646120083115786 -0.2628690234819741 0.02058032834375543 0.2627382146291857 0.9648263911122024 0.008869362258431225 0.2627382146294854 0.9648263911121208 0.008869362258437619 -0.2627382146291857 -0.9648263911122024 -0.008869362258431225 -0.2627382146294854 -0.9648263911121208 -0.008869362258437619 -0.8637419973542483 0.5036274239502658 -0.01758351079030963 -0.8637419973543823 0.5036274239500359 -0.01758351079031333 0.8637419973543823 -0.5036274239500359 0.01758351079031333 0.8637419973542483 -0.5036274239502658 0.01758351079030963 0.004125668178118584 0.9999862387051476 0.003240565138319726 0.004125668178609779 0.9999862387051456 0.003240565138330622 -0.004125668178118584 -0.9999862387051476 -0.003240565138319726 -0.004125668178609779 -0.9999862387051456 -0.003240565138330622 -0.7040093966782737 0.7100644477598807 -0.01338840603466181 -0.7040093966781176 0.7100644477600354 -0.01338840603465786 0.7040093966781176 -0.7100644477600354 0.01338840603465786 0.7040093966782737 -0.7100644477598807 0.01338840603466181 -0.2547680357415372 0.9669986766858482 -0.002609071140685581 -0.2547680357419968 0.9669986766857271 -0.002609071140696163 0.2547680357415372 -0.9669986766858482 0.002609071140685581 0.2547680357419968 -0.9669986766857271 0.002609071140696163 -0.4962997190498498 0.8681117528911324 -0.008280903533162968 -0.4962997190494515 0.8681117528913601 -0.008280903533153413 0.4962997190494515 -0.8681117528913601 0.008280903533153413 0.4962997190498498 -0.8681117528911324 0.008280903533162968</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10497\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10495\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10498\">-26.067015274818 242.3887004884072 -26.06701525449076 239.3265832530628 -26.25734218089313 242.388700487144 -26.25734216056651 239.3265832518 -21.96787071330834 242.38870075928 -21.96787072694563 239.3265835239327 -22.15819761948573 242.388700760126 -22.15819763312221 239.3265835247816 -28.38325059097777 242.3887001710565 -28.3832505380726 239.3265829357125 -28.57357749710577 242.3887001677679 -28.57357744420066 239.326582932423 -16.36516688089838 239.3265836755294 -16.55549378707485 239.3265836784296 -16.36516683422593 242.3887009108763 -16.55549374040314 242.3887009137769 -28.75872905288899 242.3886998924625 -28.75872897101079 239.3265826571176 -28.9490559590171 242.3886998873734 -28.94905587713874 239.3265826520289 -9.640718724691801 239.3265836670287 -9.83104563076769 239.3265836717854 -9.640718648166356 242.3887009023768 -9.831045554241424 242.3887009071323 -27.16786242383387 242.3886997274499 -27.16786231856227 239.3265824921054 -27.35818932996186 242.3886997209056 -27.35818922469019 239.326582485561 -2.252786287321508 239.3265835005223 -2.443113193449406 239.3265835068085 -2.25278618615725 242.3887007358682 -2.443113092285299 242.3887007421565 -23.71906563554222 242.3886997203795 -23.7190655140514 239.3265824850349 -23.90939254167009 242.388699712828 -23.90939242017935 239.3265824774855 5.295155044682492 239.3265832204737 5.10482813855449 239.3265832278666 5.295155163591287 242.3887004558235 5.1048282574633 242.3887004632126 -18.83769526644778 239.3265826298607 -18.83769539587846 242.3886998652041 -18.64736836031982 239.3265826379064 -18.64736848975033 242.3886998732489 12.48872554311854 239.326582901812 12.29839863699055 239.3265829098012 12.48872567166838 242.3887001371622 12.2983987655404 242.3887001451509 -12.48872554312738 239.326582901817 -12.48872567167733 242.3887001371614 -12.29839863699939 239.3265829098069 -12.29839876554933 242.3887001451502 18.83769526644546 239.3265826298583 18.64736836031755 239.3265826379018 18.83769539587619 242.3886998652062 18.64736848974802 242.3886998732521 -5.295155044679242 239.3265832204781 -5.29515516358792 242.3887004558255 -5.104828138551261 239.3265832278701 -5.104828257460025 242.3887004632146 23.71906563554555 242.3886997203822 23.90939254167338 242.3886997128296 23.71906551405471 239.3265824850342 23.90939242018274 239.326582477482 2.25278628732877 239.3265835005259 2.252786186164558 242.3887007358709 2.44311319345674 239.3265835068119 2.443113092292674 242.3887007421593 27.16786242383346 242.3886997274522 27.35818932996163 242.3886997209104 27.16786231856207 239.3265824921046 27.35818922468992 239.32658248556 9.640718724682845 239.3265836670329 9.640718648157495 242.3887009023774 9.831045630810866 239.3265836717884 9.831045554285495 242.3887009071334 28.75872905288965 242.3886998924658 28.94905595901774 242.388699887376 28.75872897101127 239.3265826571153 28.94905587713914 239.3265826520281 16.36516688096897 239.3265836755315 16.36516683429732 242.388700910877 16.55549378709689 239.326583678433 16.55549374042537 242.3887009137775 28.38325059097879 242.38870017106 28.57357749710667 242.3887001677723 28.38325053807342 239.3265829357121 28.57357744420145 239.3265829324239 21.96787071330003 242.3887007592824 22.15819761942795 242.3887007601291 21.96787072693712 239.3265835239342 22.15819763306511 239.3265835247836 26.06701527476417 242.3887004884129 26.25734218089224 242.3887004871479 26.06701525443755 239.3265832530645 26.25734216056545 239.3265832517998</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10498\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10494\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10492\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10493\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10494\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 3 0 3 8 9 2 12 13 12 2 1 8 16 9 16 8 17 13 20 21 20 13 12 17 24 16 24 17 25 21 28 29 28 21 20 25 32 24 32 25 33 29 36 37 36 29 28 33 40 32 40 33 41 44 37 36 37 44 45 41 48 40 48 41 49 52 45 44 45 52 53 49 56 48 56 49 57 60 53 52 53 60 61 64 57 65 57 64 56 68 61 60 61 68 69 72 65 73 65 72 64 76 69 68 69 76 77 80 73 81 73 80 72 84 77 76 77 84 85 88 81 89 81 88 80 84 92 85 92 84 93 93 89 92 89 93 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10494\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10495\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 11 5 4 6 5 7 4 6 11 5 6 8 7 9 14 10 15 11 14 10 7 9 18 12 11 13 19 14 10 15 19 14 11 13 14 16 15 17 22 18 23 19 22 18 15 17 26 20 18 21 27 22 19 23 27 22 18 21 22 24 23 25 30 26 31 27 30 26 23 25 34 28 26 29 35 30 27 31 35 30 26 29 30 32 31 33 38 34 39 35 38 34 31 33 42 36 34 37 43 38 35 39 43 38 34 37 46 40 47 41 39 42 38 43 39 42 47 41 50 44 42 45 51 46 43 47 51 46 42 45 54 48 55 49 46 50 47 51 46 50 55 49 58 52 50 53 59 54 51 55 59 54 50 53 62 56 63 57 54 58 55 59 54 58 63 57 59 60 66 61 58 62 67 63 58 62 66 61 70 64 71 65 62 66 63 67 62 66 71 65 66 68 74 69 67 70 75 71 67 70 74 69 78 72 79 73 70 74 71 75 70 74 79 73 74 76 82 77 75 78 83 79 75 78 82 77 86 80 87 81 78 82 79 83 78 82 87 81 82 84 90 85 83 86 91 87 83 86 90 85 94 88 87 89 95 90 86 91 95 90 87 89 90 92 94 93 91 94 95 95 91 94 94 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10499\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10500\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10504\">-75.13728473307742 106.0820255628201 2990.364147255275 -88.28282230419427 109.5343288035495 3155.479141359756 -84.61395289545362 110.0549063383353 2990.166337619763 -78.80615414181284 105.5614480280222 3155.676950995234 -78.80615414181284 105.5614480280222 3155.676950995234 -75.13728473307742 106.0820255628201 2990.364147255275 -88.28282230419427 109.5343288035495 3155.479141359756 -84.61395289545362 110.0549063383353 2990.166337619763 -64.95568841588624 104.6977795945581 2990.585753441135 -68.62455782462644 104.1772020597689 3155.898557181059 -68.62455782462644 104.1772020597689 3155.898557181059 -64.95568841588624 104.6977795945581 2990.585753441135 -96.40874303745159 115.8250991269802 3155.318608674475 -92.73987362870957 116.345676661774 2990.005804934513 -96.40874303745159 115.8250991269802 3155.318608674475 -92.73987362870957 116.345676661774 2990.005804934513 -54.76302290703507 105.9965025087253 2990.816054082072 -58.43189231577321 105.4759249739464 3156.128857822012 -58.43189231577321 105.4759249739464 3156.128857822012 -54.76302290703507 105.9965025087253 2990.816054082072 -102.6301482723263 124.0050533967778 3155.206292976733 -98.9612788635784 124.5256309315677 2989.893489236725 -98.9612788635784 124.5256309315677 2989.893489236725 -102.6301482723263 124.0050533967778 3155.206292976733 -45.25390151943952 109.889688483881 2991.039354569819 -48.92277092820518 109.3691109490805 3156.35215830983 -48.92277092820518 109.3691109490805 3156.35215830983 -45.25390151943952 109.889688483881 2991.039354569819 -106.5230595234141 133.516741247463 3155.149848395457 -102.8541901146646 134.0373187822434 2989.837044655506 -102.8541901146646 134.0373187822434 2989.837044655506 -106.5230595234141 133.516741247463 3155.149848395457 -37.07635515379707 116.1120233333375 2991.240437345625 -40.7452245625384 115.591445798559 3156.553241085612 -40.7452245625384 115.591445798559 3156.553241085612 -37.07635515379707 116.1120233333375 2991.240437345625 -107.8221813223022 143.7119568708067 3155.153121535737 -104.1533119135472 144.2325344055892 2989.840317795779 -104.1533119135472 144.2325344055892 2989.840317795779 -107.8221813223022 143.7119568708067 3155.153121535737 -34.45653949476741 123.7188876831326 3156.718402690231 -30.78767008604837 124.2394652178837 2991.405598950258 -30.78767008604837 124.2394652178837 2991.405598950258 -34.45653949476741 123.7188876831326 3156.718402690231 -106.4389806652882 153.8959131704968 3155.215889338422 -102.7701112565333 154.4164907052689 2989.903085598407 -102.7701112565333 154.4164907052689 2989.903085598407 -106.4389806652882 153.8959131704968 3155.215889338422 -30.48527922191465 133.1975648644078 3156.836387633275 -26.81640981318583 133.7181423991879 2991.52358389331 -26.81640981318583 133.7181423991879 2991.52358389331 -30.48527922191465 133.1975648644078 3156.836387633275 -102.4677203913061 163.3745903544653 3155.333874281499 -98.79885098255613 163.8951678892405 2990.021070541545 -98.79885098255613 163.8951678892405 2990.021070541545 -102.4677203913061 163.3745903544653 3155.333874281499 -29.10207856490206 143.3815211640869 3156.899155436 -25.43320915617414 143.9020986988676 2991.586351696004 -25.43320915617414 143.9020986988676 2991.586351696004 -29.10207856490206 143.3815211640869 3156.899155436 -96.17903532519904 171.5020322368858 3155.499035886092 -92.51016591645634 172.0226097716574 2990.18623214615 -92.51016591645634 172.0226097716574 2990.18623214615 -96.17903532519904 171.5020322368858 3155.499035886092 -30.4012003637863 153.5767367874419 3156.902428576261 -26.73233095505293 154.0973143222188 2991.58962483627 -26.73233095505293 154.0973143222188 2991.58962483627 -30.4012003637863 153.5767367874419 3156.902428576261 -84.33261955295461 178.2449446194817 2990.38731492182 -88.00148896170435 177.7243670847198 3155.700118661775 -88.00148896170435 177.7243670847198 3155.700118661775 -84.33261955295461 178.2449446194817 2990.38731492182 -34.2941116148736 163.0884246381211 3156.845983995005 -30.62524220614705 163.6090021728982 2991.533180255039 -30.62524220614705 163.6090021728982 2991.533180255039 -34.2941116148736 163.0884246381211 3156.845983995005 -74.82349816268538 182.1381305957243 2990.610615409714 -78.49236757143103 181.6175530609642 3155.923419149654 -78.49236757143103 181.6175530609642 3155.923419149654 -74.82349816268538 182.1381305957243 2990.610615409714 -40.5155168497447 171.2683789079174 3156.733668297142 -36.84664744100815 171.7889564426836 2991.4208645572 -36.84664744100815 171.7889564426836 2991.4208645572 -40.5155168497447 171.2683789079174 3156.733668297142 -64.63083265383011 183.4368535099025 2990.840916050629 -68.29970206257667 182.9162759751343 3156.153719790545 -68.29970206257667 182.9162759751343 3156.153719790545 -64.63083265383011 183.4368535099025 2990.840916050629 -48.64143758299929 177.5591492313483 3156.573135611916 -44.97256817426865 178.0797267661268 2991.260331871956 -48.64143758299929 177.5591492313483 3156.573135611916 -44.97256817426865 178.0797267661268 2991.260331871956 -54.44923633665235 182.0526075416477 2991.062522236534 -58.11810574538754 181.5320300068731 3156.375325976491 -58.11810574538754 181.5320300068731 3156.375325976491 -54.44923633665235 182.0526075416477 2991.062522236534</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10504\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10501\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10505\">-0.262738214629848 -0.9648263911120211 -0.008869362258549472 -0.5034455859489562 -0.8639152194160119 -0.01389372699804357 -0.5034455859496682 -0.8639152194155967 -0.01389372699805807 -0.262738214629173 -0.964826391112205 -0.008869362258535072 0.262738214629173 0.964826391112205 0.008869362258535072 0.262738214629848 0.9648263911120211 0.008869362258549472 0.5034455859489562 0.8639152194160119 0.01389372699804357 0.5034455859496682 0.8639152194155967 0.01389372699805807 -0.004125668178181116 -0.999986238705147 -0.003240565138421598 -0.004125668177842862 -0.9999862387051482 -0.003240565138414094 0.004125668177842862 0.9999862387051482 0.003240565138414094 0.004125668178181116 0.999986238705147 0.003240565138421598 -0.7098439725700434 -0.7041296532035266 -0.01797125720311873 -0.7098439725696409 -0.7041296532039326 -0.01797125720311108 0.7098439725700434 0.7041296532035266 0.01797125720311873 0.7098439725696409 0.7041296532039326 0.01797125720311108 0.2547680357419335 -0.9669986766857441 0.002609071140599491 0.2547680357418054 -0.9669986766857779 0.002609071140596541 -0.2547680357418054 0.9669986766857779 -0.002609071140596541 -0.2547680357419335 0.9669986766857441 -0.002609071140599491 -0.867867665532612 -0.4963588147546992 -0.02082407592870893 -0.8678676655321076 -0.4963588147555815 -0.02082407592870052 0.8678676655321076 0.4963588147555815 0.02082407592870052 0.867867665532612 0.4963588147546992 0.02082407592870893 0.4962997190497782 -0.8681117528911743 0.008280903533076683 0.4962997190500023 -0.8681117528910463 0.008280903533082057 -0.4962997190500023 0.8681117528910463 -0.008280903533082057 -0.4962997190497782 0.8681117528911743 -0.008280903533076683 -0.9667476113080841 -0.2547619433524571 -0.02225776829318207 -0.9667476113079356 -0.2547619433530209 -0.02225776829318055 0.9667476113079356 0.2547619433530209 0.02225776829318055 0.9667476113080841 0.2547619433524571 0.02225776829318207 0.7040093966782746 -0.7100644477598808 0.01338840603461414 0.7040093966789233 -0.7100644477592371 0.01338840603463057 -0.7040093966789233 0.7100644477592371 -0.01338840603463057 -0.7040093966782746 0.7100644477598808 -0.01338840603461414 -0.9997453049990249 0.004196533475613712 -0.02217463053118422 -0.9997453049990265 0.004196533475273064 -0.02217463053118533 0.9997453049990265 -0.004196533475273064 0.02217463053118533 0.9997453049990249 -0.004196533475613712 0.02217463053118422 0.8637419973544603 -0.5036274239499038 0.01758351079026013 0.8637419973542097 -0.5036274239503341 0.01758351079025321 -0.8637419973542097 0.5036274239503341 -0.01758351079025321 -0.8637419973544603 0.5036274239499038 -0.01758351079026013 -0.964612008311547 0.2628690234820872 -0.02058032834378556 -0.9646120083116743 0.2628690234816201 -0.02058032834378985 0.9646120083116743 -0.2628690234816201 0.02058032834378985 0.964612008311547 -0.2628690234820872 0.02058032834378556 0.9646120083116853 -0.2628690234815906 0.0205803283436521 0.9646120083115004 -0.2628690234822689 0.02058032834364586 -0.9646120083115004 0.2628690234822689 -0.02058032834364586 -0.9646120083116853 0.2628690234815906 -0.0205803283436521 -0.8637419973542582 0.5036274239502476 -0.01758351079034334 -0.8637419973546665 0.5036274239495471 -0.01758351079035461 0.8637419973546665 -0.5036274239495471 0.01758351079035461 0.8637419973542582 -0.5036274239502476 0.01758351079034334 0.9997453049990313 -0.004196533474869977 0.02217463053104018 0.9997453049990286 -0.004196533475530969 0.02217463053103804 -0.9997453049990286 0.004196533475530969 -0.02217463053103804 -0.9997453049990313 0.004196533474869977 -0.02217463053104018 -0.7040093966784158 0.7100644477597393 -0.0133884060346812 -0.7040093966787886 0.7100644477593696 -0.01338840603469064 0.7040093966787886 -0.7100644477593696 0.01338840603469064 0.7040093966784158 -0.7100644477597393 0.0133884060346812 0.9667476113079841 0.2547619433528484 0.02225776829304891 0.9667476113081134 0.2547619433523575 0.02225776829305024 -0.9667476113081134 -0.2547619433523575 -0.02225776829305024 -0.9667476113079841 -0.2547619433528484 -0.02225776829304891 -0.4962997190498543 0.8681117528911296 -0.008280903533179547 -0.4962997190497708 0.8681117528911775 -0.008280903533177545 0.4962997190497708 -0.8681117528911775 0.008280903533177545 0.4962997190498543 -0.8681117528911296 0.008280903533179547 0.8678676655323443 0.4963588147551725 0.02082407592858581 0.8678676655325215 0.4963588147548627 0.02082407592858877 -0.8678676655325215 -0.4963588147548627 -0.02082407592858877 -0.8678676655323443 -0.4963588147551725 -0.02082407592858581 -0.2547680357417052 0.9669986766858039 -0.002609071140719019 -0.2547680357418394 0.9669986766857686 -0.002609071140722108 0.2547680357418394 -0.9669986766857686 0.002609071140722108 0.2547680357417052 -0.9669986766858039 0.002609071140719019 0.7098439725698086 0.7041296532037666 0.01797125720300259 0.7098439725699034 0.7041296532036707 0.01797125720300439 -0.7098439725699034 -0.7041296532036707 -0.01797125720300439 -0.7098439725698086 -0.7041296532037666 -0.01797125720300259 0.00412566817769766 0.9999862387051494 0.00324056513829741 0.004125668178363327 0.9999862387051466 0.003240565138312175 -0.004125668178363327 -0.9999862387051466 -0.003240565138312175 -0.00412566817769766 -0.9999862387051494 -0.00324056513829741 0.5034455859492117 0.8639152194158647 0.01389372699794097 0.5034455859492144 0.863915219415863 0.01389372699794103 -0.5034455859492117 -0.8639152194158647 -0.01389372699794097 -0.5034455859492144 -0.863915219415863 -0.01389372699794103 0.262738214629162 0.964826391112209 0.00886936225842876 0.2627382146299168 0.9648263911120032 0.008869362258444863 -0.2627382146299168 -0.9648263911120032 -0.008869362258444863 -0.262738214629162 -0.964826391112209 -0.00886936225842876</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10505\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10503\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10506\">-27.1678626343756 248.5129341981397 -27.16786252910427 245.4508169627961 -27.35818954050364 248.5129341915954 -27.35818943523215 245.4508169562512 -28.7587292166462 248.5129343631527 -28.75872913476795 245.4508171278097 -28.94905612277426 248.5129343580637 -28.94905604089615 245.4508171227201 -23.71906587852609 248.5129341910704 -23.71906575703543 245.4508169557261 -23.90939278465418 248.5129341835184 -23.90939266316358 245.4508169481747 -28.38325069678749 248.5129346417484 -28.38325064388242 245.4508174064051 -28.5735776029156 248.5129346384593 -28.57357755001046 245.4508174031163 -18.83769552530602 245.4508171005525 -18.83769565473649 248.512934335897 -18.64736861917797 245.450817108596 -18.64736874860833 248.5129343439396 -26.06701531547575 248.5129349590998 -26.06701529514863 245.4508177237552 -26.25734222154975 248.5129349578367 -26.25734220122322 245.4508177224934 -12.48872580021711 245.4508173725092 -12.48872592876705 248.5129346078527 -12.29839889408912 245.4508173804982 -12.29839902263888 248.5129346158427 -21.96787068602638 248.5129352299716 -21.9678706996636 245.4508179946274 -22.15819759220492 248.5129352308179 -22.15819760584154 245.4508179954732 -5.295155282507214 245.4508176911737 -5.295155401415948 248.5129349265173 -5.104828376379209 245.4508176985638 -5.104828495287967 248.5129349339073 -16.36516678756284 245.4508181462245 -16.55549369374071 245.4508181491247 -16.36516674089055 248.5129353815683 -16.55549364706907 248.5129353844689 2.252786084994916 245.4508179712207 2.252785983830616 248.5129352065653 2.443112991123017 245.450817977509 2.443112889958913 248.5129352128527 -9.640718571643015 245.4508181377248 -9.831045477717586 245.4508181424806 -9.640718495117495 248.5129353730686 -9.831045401191499 248.5129353778245 9.640718571630176 245.4508181377278 9.640718495104721 248.5129353730714 9.831045477758295 245.4508181424827 9.83104540123281 248.5129353778274 -2.252786084988915 245.4508179712196 -2.443112991117016 245.4508179775068 -2.252785983824714 248.5129352065639 -2.443112889952809 248.5129352128505 16.36516678762268 245.4508181462271 16.36516674095097 248.5129353815705 16.55549369375068 245.4508181491271 16.5554936470791 248.5129353844707 5.295155282504494 245.4508176911724 5.104828376376394 245.4508176985626 5.295155401413277 248.5129349265166 5.104828495285096 248.512934933907 21.9678706860211 248.5129352299747 22.15819759214916 248.5129352308218 21.96787069965837 245.4508179946312 22.15819760578642 245.4508179954785 12.48872580022058 245.4508173725104 12.29839889409247 245.4508173804995 12.48872592877041 248.5129346078541 12.29839902264235 248.5129346158437 26.06701531542375 248.5129349591032 26.25734222155191 248.5129349578402 26.06701529509723 245.4508177237599 26.25734220122532 245.4508177224966 18.83769552530193 245.4508171005555 18.64736861917408 245.4508171085999 18.83769565473264 248.5129343358988 18.64736874860451 248.5129343439436 28.38325069678655 248.5129346417518 28.57357760291463 248.5129346384638 28.38325064388134 245.4508174064089 28.57357755000946 245.4508174031205 23.71906587852772 248.512934191075 23.90939278465575 248.512934183524 23.71906575703688 245.4508169557317 23.90939266316514 245.4508169481804 28.75872921664552 248.5129343631582 28.94905612277371 248.512934358067 28.75872913476735 245.4508171278146 28.9490560408953 245.4508171227242 27.16786263437595 248.5129341981438 27.35818954050408 248.5129341916005 27.16786252910458 245.4508169628002 27.35818943523259 245.4508169562569</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10506\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10502\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10500\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10501\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10502\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 3 0 3 8 9 2 12 13 12 2 1 16 9 8 9 16 17 20 13 12 13 20 21 24 17 16 17 24 25 28 21 20 21 28 29 32 25 24 25 32 33 36 29 28 29 36 37 32 40 33 40 32 41 44 37 36 37 44 45 41 48 40 48 41 49 52 45 44 45 52 53 49 56 48 56 49 57 60 53 52 53 60 61 57 64 56 64 57 65 60 68 61 68 60 69 65 72 64 72 65 73 69 76 68 76 69 77 73 80 72 80 73 81 77 84 76 84 77 85 88 81 89 81 88 80 85 92 84 92 85 93 93 89 92 89 93 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10502\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10503\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 11 5 4 6 5 7 4 6 11 5 6 8 7 9 14 10 15 11 14 10 7 9 18 12 19 13 10 14 11 15 10 14 19 13 22 16 23 17 15 18 14 19 15 18 23 17 26 20 27 21 18 22 19 23 18 22 27 21 30 24 31 25 22 26 23 27 22 26 31 25 34 28 35 29 26 30 27 31 26 30 35 29 38 32 39 33 30 34 31 35 30 34 39 33 42 36 35 37 43 38 34 39 43 38 35 37 46 40 47 41 38 42 39 43 38 42 47 41 50 44 42 45 51 46 43 47 51 46 42 45 54 48 55 49 46 50 47 51 46 50 55 49 58 52 50 53 59 54 51 55 59 54 50 53 62 56 63 57 54 58 55 59 54 58 63 57 66 60 58 61 67 62 59 63 67 62 58 61 70 64 63 65 71 66 62 67 71 66 63 65 74 68 66 69 75 70 67 71 75 70 66 69 78 72 70 73 79 74 71 75 79 74 70 73 82 76 74 77 83 78 75 79 83 78 74 77 86 80 78 81 87 82 79 83 87 82 78 81 83 84 90 85 82 86 91 87 82 86 90 85 94 88 86 89 95 90 87 91 95 90 86 89 90 92 94 93 91 94 95 95 91 94 94 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10507\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10508\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10512\">-104.2825068025654 150.2674645627334 3486.044059105507 -101.9284360768722 143.1107147183934 3333.183254154686 -105.3199072953305 142.6294973379132 3485.996983253435 -100.8910355841024 150.7486819431997 3333.230330006736 -100.8910355841024 150.7486819431997 3333.230330006736 -104.2825068025654 150.2674645627334 3486.044059105507 -101.9284360768722 143.1107147183934 3333.183254154686 -105.3199072953305 142.6294973379132 3485.996983253435 -100.9540947276969 135.4643030008189 3333.180799299513 -104.3455659461629 134.9830856203459 3485.994528398305 -100.9540947276969 135.4643030008189 3333.180799299513 -104.3455659461629 134.9830856203459 3485.994528398305 -101.3040615970535 157.3764724507587 3486.132547812846 -97.91259037859572 157.8576898312289 3333.318818714024 -97.91259037859572 157.8576898312289 3333.318818714024 -101.3040615970535 157.3764724507587 3486.132547812846 -98.03441128936561 128.330537112762 3333.223132735511 -101.4258825078302 127.8493197322877 3486.036861834255 -98.03441128936561 128.330537112762 3333.223132735511 -101.4258825078302 127.8493197322877 3486.036861834255 -96.58754779744618 163.4720538626216 3486.256419016159 -93.19607657898314 163.9532712430934 3333.442689917338 -93.19607657898314 163.9532712430934 3333.442689917338 -96.58754779744618 163.4720538626216 3486.256419016159 -93.3683573631813 122.1955714103758 3333.307369508881 -96.75982858163638 121.7143540298908 3486.121098607595 -93.3683573631813 122.1955714103758 3333.307369508881 -96.75982858163638 121.7143540298908 3486.121098607595 -87.06291680631421 168.6200223789959 3333.593501999123 -90.45438802477838 168.1388049985282 3486.407231098037 -90.45438802477838 168.1388049985282 3486.407231098037 -87.06291680631421 168.6200223789959 3333.593501999123 -87.27391681319591 117.4774936677689 3333.427769022794 -90.66538803165759 116.9962762872801 3486.241498121563 -90.66538803165759 116.9962762872801 3486.241498121563 -87.27391681319591 117.4774936677689 3333.427769022794 -79.93107576356374 171.5399118612021 3333.760977365118 -83.32254698202519 171.05869448074 3486.574706463907 -83.32254698202519 171.05869448074 3486.574706463907 -79.93107576356374 171.5399118612021 3333.760977365118 -80.16641569135163 114.4978330861002 3333.576126249411 -83.55788690980876 114.0166157056176 3486.389855348125 -83.55788690980876 114.0166157056176 3486.389855348125 -80.16641569135163 114.4978330861002 3333.576126249411 -72.28657663186004 172.5139540468341 3333.933702845692 -75.6780478503249 172.03273666637 3486.74743194471 -75.6780478503249 172.03273666637 3486.74743194471 -72.28657663186004 172.5139540468341 3333.933702845692 -72.5302184534105 113.4596486099058 3333.742330888725 -75.92168967186467 112.9784312294148 3486.556059987546 -75.92168967186467 112.9784312294148 3486.556059987546 -72.5302184534105 113.4596486099058 3333.742330888725 -64.65037939391959 171.475769570636 3334.099907485186 -68.04185061237331 170.994552190178 3486.913636584062 -68.04185061237331 170.994552190178 3486.913636584062 -64.65037939391959 171.475769570636 3334.099907485186 -64.88571932171089 114.4336907955361 3333.915056369475 -68.27719054016984 113.9524734150484 3486.728785468158 -68.27719054016984 113.9524734150484 3486.728785468158 -64.88571932171089 114.4336907955361 3333.915056369475 -57.54287827208327 168.4961089889728 3334.248264711672 -60.93434949053949 168.0148916085079 3487.061993810654 -60.93434949053949 168.0148916085079 3487.061993810654 -57.54287827208327 168.4961089889728 3334.248264711672 -57.75387828170165 117.3535802766234 3334.082531735345 -61.14534950018128 116.8723628961244 3486.896260834092 -61.14534950018128 116.8723628961244 3486.896260834092 -57.75387828170165 117.3535802766234 3334.082531735345 -51.44843772209106 163.7780312463654 3334.368664225563 -54.83990894054455 163.2968138658956 3487.182393324474 -54.83990894054455 163.2968138658956 3487.182393324474 -51.44843772209106 163.7780312463654 3334.368664225563 -51.62071850683128 122.0203314141937 3334.233343817101 -55.01218972528864 121.5391140337152 3487.047072915817 -55.01218972528864 121.5391140337152 3487.047072915817 -51.62071850683128 122.0203314141937 3334.233343817101 -46.78238379590675 157.6430655439696 3334.452900999002 -50.17385501436388 157.1618481635018 3487.266630097924 -46.78238379590675 157.6430655439696 3334.452900999002 -50.17385501436388 157.1618481635018 3487.266630097924 -50.29567592397598 127.6346954477884 3487.170944119462 -46.90420470553522 128.1159128282305 3334.357215020542 -46.90420470553522 128.1159128282305 3334.357215020542 -50.29567592397598 127.6346954477884 3487.170944119462 -43.86270035757275 150.5092996559145 3334.495234434957 -47.25417157602101 150.028082275443 3487.308963533913 -43.86270035757275 150.5092996559145 3334.495234434957 -47.25417157602101 150.028082275443 3487.308963533913 -47.31723071962165 134.743703333055 3487.259432826631 -43.92575950117771 135.224920713532 3334.445703727855 -43.92575950117771 135.224920713532 3334.445703727855 -47.31723071962165 134.743703333055 3487.259432826631 -42.88835900840491 142.8628879383445 3334.49277957985 -46.27983022685635 142.3816705578724 3487.306508678643 -42.88835900840491 142.8628879383445 3334.49277957985 -46.27983022685635 142.3816705578724 3487.306508678643</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10512\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10509\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10513\">-0.9646120083113584 0.2628690234827846 -0.02058032834371202 -0.9997453049990291 0.004196533474930193 -0.02217463053111992 -0.9997453049990274 0.004196533475395215 -0.02217463053111841 -0.964612008311629 0.2628690234817916 -0.02058032834372115 0.964612008311629 -0.2628690234817916 0.02058032834372115 0.9646120083113584 -0.2628690234827846 0.02058032834371202 0.9997453049990291 -0.004196533474930193 0.02217463053111992 0.9997453049990274 -0.004196533475395215 0.02217463053111841 -0.9667476113081147 -0.2547619433523434 -0.02225776829315271 -0.9667476113080047 -0.2547619433527611 -0.02225776829315158 0.9667476113081147 0.2547619433523434 0.02225776829315271 0.9667476113080047 0.2547619433527611 0.02225776829315158 -0.8637419973544882 0.5036274239498545 -0.01758351079031072 -0.8637419973540537 0.5036274239505998 -0.01758351079029874 0.8637419973540537 -0.5036274239505998 0.01758351079029874 0.8637419973544882 -0.5036274239498545 0.01758351079031072 -0.8678676655324784 -0.4963588147549329 -0.0208240759287062 -0.8678676655326229 -0.4963588147546799 -0.0208240759287086 0.8678676655324784 0.4963588147549329 0.0208240759287062 0.8678676655326229 0.4963588147546799 0.0208240759287086 -0.7040093966785345 0.7100644477596219 -0.01338840603466837 -0.7040093966784167 0.7100644477597387 -0.01338840603466539 0.7040093966784167 -0.7100644477597387 0.01338840603466539 0.7040093966785345 -0.7100644477596219 0.01338840603466837 -0.7098439725695742 -0.7041296532039996 -0.01797125720312537 -0.709843972569819 -0.7041296532037527 -0.01797125720313002 0.7098439725695742 0.7041296532039996 0.01797125720312537 0.709843972569819 0.7041296532037527 0.01797125720313002 -0.4962997190506168 0.868111752890694 -0.008280903533179109 -0.4962997190496883 0.8681117528912249 -0.008280903533156832 0.4962997190496883 -0.8681117528912249 0.008280903533156832 0.4962997190506168 -0.868111752890694 0.008280903533179109 -0.5034455859495177 -0.8639152194156839 -0.01389372699807489 -0.5034455859492037 -0.8639152194158672 -0.0138937269980685 0.5034455859492037 0.8639152194158672 0.0138937269980685 0.5034455859495177 0.8639152194156839 0.01389372699807489 -0.2547680357415388 0.9669986766858478 -0.002609071140694159 -0.2547680357414038 0.9669986766858835 -0.00260907114069105 0.2547680357414038 -0.9669986766858835 0.00260907114069105 0.2547680357415388 -0.9669986766858478 0.002609071140694159 -0.262738214629423 -0.9648263911121368 -0.00886936225855125 -0.2627382146292665 -0.9648263911121795 -0.008869362258547913 0.2627382146292665 0.9648263911121795 0.008869362258547913 0.262738214629423 0.9648263911121368 0.00886936225855125 0.004125668178259269 0.999986238705147 0.003240565138304466 0.004125668178791321 0.9999862387051448 0.003240565138316267 -0.004125668178791321 -0.9999862387051448 -0.003240565138316267 -0.004125668178259269 -0.999986238705147 -0.003240565138304466 -0.004125668177950418 -0.999986238705148 -0.003240565138434978 -0.004125668178091276 -0.9999862387051474 -0.003240565138438102 0.004125668178091276 0.9999862387051474 0.003240565138438102 0.004125668177950418 0.999986238705148 0.003240565138434978 0.262738214629221 0.9648263911121932 0.008869362258406052 0.2627382146294273 0.964826391112137 0.008869362258410451 -0.2627382146294273 -0.964826391112137 -0.008869362258410451 -0.262738214629221 -0.9648263911121932 -0.008869362258406052 0.2547680357413424 -0.9669986766858998 0.002609071140552869 0.2547680357417497 -0.9669986766857924 0.002609071140562246 -0.2547680357417497 0.9669986766857924 -0.002609071140562246 -0.2547680357413424 0.9669986766858998 -0.002609071140552869 0.5034455859496874 0.8639152194155874 0.01389372699793886 0.5034455859487257 0.8639152194161481 0.01389372699791929 -0.5034455859487257 -0.8639152194161481 -0.01389372699791929 -0.5034455859496874 -0.8639152194155874 -0.01389372699793886 0.4962997190499024 -0.8681117528911033 0.008280903533052711 0.4962997190497473 -0.868111752891192 0.008280903533048991 -0.4962997190497473 0.868111752891192 -0.008280903533048991 -0.4962997190499024 0.8681117528911033 -0.008280903533052711 0.7098439725697494 0.7041296532038261 0.01797125720300487 0.7098439725695331 0.7041296532040442 0.01797125720300076 -0.7098439725695331 -0.7041296532040442 -0.01797125720300076 -0.7098439725697494 -0.7041296532038261 -0.01797125720300487 0.7040093966788578 -0.710064447759302 0.01338840603462907 0.7040093966790416 -0.7100644477591196 0.01338840603463372 -0.7040093966790416 0.7100644477591196 -0.01338840603463372 -0.7040093966788578 0.710064447759302 -0.01338840603462907 0.8678676655323202 0.496358814755214 0.02082407592859211 0.8678676655326465 0.4963588147546434 0.02082407592859756 -0.8678676655323202 -0.496358814755214 -0.02082407592859211 -0.8678676655326465 -0.4963588147546434 -0.02082407592859756 0.8637419973548131 -0.5036274239492987 0.01758351079026643 0.8637419973544239 -0.5036274239499667 0.01758351079025569 -0.8637419973544239 0.5036274239499667 -0.01758351079025569 -0.8637419973548131 0.5036274239492987 -0.01758351079026643 0.9667476113079719 0.2547619433528945 0.02225776829304721 0.966747611307977 0.2547619433528748 0.02225776829304726 -0.9667476113079719 -0.2547619433528945 -0.02225776829304721 -0.966747611307977 -0.2547619433528748 -0.02225776829304726 0.9646120083115017 -0.2628690234822655 0.02058032834362743 0.964612008311504 -0.2628690234822571 0.0205803283436275 -0.964612008311504 0.2628690234822571 -0.0205803283436275 -0.9646120083115017 0.2628690234822655 -0.02058032834362743 0.9997453049990301 -0.004196533475181162 0.02217463053102749 0.9997453049990314 -0.00419653347493615 0.0221746305310283 -0.9997453049990301 0.004196533475181162 -0.02217463053102749 -0.9997453049990314 0.00419653347493615 -0.0221746305310283</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10513\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10511\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10514\">2.27657673828201 251.8065749322985 2.276576644766575 254.6371696780421 2.419321917878971 251.8065749370133 2.419321824363781 254.6371696827565 -5.271364666053612 251.8065746523888 -5.271364775971748 254.637169398132 -5.128619486456379 251.806574657932 -5.128619596374666 254.637169403676 9.664509276073547 251.8065750986131 9.664509205334021 254.6371698443577 9.807254455670655 251.8065751021804 9.807254384931113 254.6371698479241 -12.464935203763 251.8065743338013 -12.46493532259352 254.6371690795454 -12.32219002416603 251.8065743397946 -12.32219014299652 254.6371690855378 16.38895755400787 251.8065751068788 16.38895751086506 254.6371698526234 16.53170273360501 251.8065751090564 16.53170269046212 254.637169854801 -18.81390493068764 251.8065740618533 -18.81390505033226 254.6371688075964 -18.67115975109063 251.8065740678864 -18.67115987073499 254.637168813629 21.99166152201587 254.6371697007739 22.13440670161299 254.6371697014071 21.99166153462197 251.8065749550276 22.13440671421903 251.8065749556625 -23.74285698477694 254.637168660822 -23.742856872472 251.8065739150784 -23.88560216437396 254.6371686551579 -23.88560205206905 251.8065739094153 26.09080621933196 254.6371694296369 26.23355139892909 254.6371694286904 26.09080620054224 251.806574683893 26.23355138013933 251.8065746829441 -27.19165370818071 254.6371686680158 -27.19165361086859 251.8065739222732 -27.33439888777792 254.6371686631084 -27.33439879046579 251.8065739173648 28.40704166586636 254.637169112036 28.54978684546358 254.6371691095675 28.40704161696127 251.8065743662878 28.54978679655846 251.8065743638235 -28.78252024366854 254.6371688332114 -28.78252016798105 251.8065740874668 -28.92526542326564 254.6371688293937 -28.92526534757803 251.8065740836511 28.78252024366802 254.6371688332133 28.92526542326521 254.6371688293969 28.78252016798048 251.8065740874677 28.92526534757753 251.8065740836487 -28.40704166586353 254.6371691120306 -28.40704161695835 251.8065743662886 -28.54978684546057 254.6371691095657 -28.54978679655553 251.8065743638211 27.19165370818462 254.6371686680184 27.33439888778164 254.6371686631105 27.19165361087249 251.8065739222708 27.33439879046946 251.8065739173649 -26.09080621939423 254.6371694296348 -26.09080620060392 251.8065746838916 -26.23355139893605 254.6371694286859 -26.23355138014615 251.8065746829438 23.74285698478003 254.6371686608214 23.88560216437726 254.63716865516 23.74285687247502 251.8065739150752 23.88560205207218 251.8065739094124 -21.99166152202265 254.6371697007693 -21.99166153462866 251.8065749550266 -22.13440670167138 254.6371697014063 -22.13440671427684 251.8065749556631 18.81390493068258 251.8065740618494 18.67115975108541 251.8065740678838 18.81390505032711 254.6371688075956 18.67115987073001 254.6371688136302 -16.3889575539514 251.8065751068791 -16.53170273359947 251.8065751090551 -16.38895751080788 254.6371698526255 -16.53170269045673 254.6371698547977 12.46493520377159 251.8065743337988 12.32219002417464 251.8065743397913 12.46493532260212 254.6371690795453 12.32219014300503 254.6371690855384 -9.664509276056807 251.8065750986112 -9.807254455599111 251.8065751021775 -9.664509205317303 254.6371698443549 -9.807254384858959 254.6371698479238 5.271364666043166 251.8065746523861 5.128619486446032 251.8065746579305 5.271364775961441 254.6371693981331 5.128619596364305 254.6371694036745 -2.27657673828952 251.8065749322956 -2.419321917886594 251.8065749370114 -2.276576644774154 254.6371696780396 -2.419321824371304 254.6371696827551</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10514\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10510\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10508\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10509\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10510\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 2 8 9 8 2 1 12 3 0 3 12 13 9 16 17 16 9 8 20 13 12 13 20 21 17 24 25 24 17 16 20 28 21 28 20 29 32 25 24 25 32 33 29 36 28 36 29 37 40 33 32 33 40 41 37 44 36 44 37 45 48 41 40 41 48 49 45 52 44 52 45 53 56 49 48 49 56 57 53 60 52 60 53 61 64 57 56 57 64 65 61 68 60 68 61 69 72 65 64 65 72 73 76 69 77 69 76 68 72 80 73 80 72 81 84 77 85 77 84 76 81 88 80 88 81 89 92 85 93 85 92 84 89 93 88 93 89 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10510\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10511\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 6 4 7 5 10 6 11 7 10 6 7 5 14 8 15 9 4 10 5 11 4 10 15 9 10 12 11 13 18 14 19 15 18 14 11 13 22 16 23 17 14 18 15 19 14 18 23 17 18 20 19 21 26 22 27 23 26 22 19 21 30 24 23 25 31 26 22 27 31 26 23 25 34 28 35 29 27 30 26 31 27 30 35 29 38 32 30 33 39 34 31 35 39 34 30 33 42 36 43 37 34 38 35 39 34 38 43 37 46 40 38 41 47 42 39 43 47 42 38 41 50 44 51 45 42 46 43 47 42 46 51 45 54 48 46 49 55 50 47 51 55 50 46 49 58 52 59 53 50 54 51 55 50 54 59 53 62 56 54 57 63 58 55 59 63 58 54 57 66 60 67 61 58 62 59 63 58 62 67 61 70 64 62 65 71 66 63 67 71 66 62 65 74 68 75 69 66 70 67 71 66 70 75 69 71 72 78 73 70 74 79 75 70 74 78 73 82 76 75 77 83 78 74 79 83 78 75 77 78 80 86 81 79 82 87 83 79 82 86 81 90 84 82 85 91 86 83 87 91 86 82 85 86 88 94 89 87 90 95 91 87 90 94 89 94 92 90 93 95 94 91 95 95 94 90 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10515\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10516\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10520\">-21.76433974743372 144.422676233646 2826.27354795576 -26.73233095505293 154.0973143222188 2991.58962483627 -25.43320915617414 143.9020986988676 2991.586351696004 -23.06346154631115 154.6178918569913 2826.276821096086 -23.06346154631115 154.6178918569913 2826.276821096086 -21.76433974743372 144.422676233646 2826.27354795576 -26.73233095505293 154.0973143222188 2991.58962483627 -25.43320915617414 143.9020986988676 2991.586351696004 -30.62524220614705 163.6090021728982 2991.533180255039 -26.95637279740186 164.1295797076651 2826.220376514879 -26.95637279740186 164.1295797076651 2826.220376514879 -30.62524220614705 163.6090021728982 2991.533180255039 -23.14754040444564 134.2387199339687 2826.210780153127 -26.81640981318583 133.7181423991879 2991.52358389331 -23.14754040444564 134.2387199339687 2826.210780153127 -26.81640981318583 133.7181423991879 2991.52358389331 -36.84664744100815 171.7889564426836 2991.4208645572 -33.17777803227205 172.3095339774644 2826.108060816961 -33.17777803227205 172.3095339774644 2826.108060816961 -36.84664744100815 171.7889564426836 2991.4208645572 -27.11880067732409 124.7600427526422 2826.092795210061 -30.78767008604837 124.2394652178837 2991.405598950258 -27.11880067732409 124.7600427526422 2826.092795210061 -30.78767008604837 124.2394652178837 2991.405598950258 -44.97256817426865 178.0797267661268 2991.260331871956 -41.30369876551754 178.6003043008879 2825.947528131654 -44.97256817426865 178.0797267661268 2991.260331871956 -41.30369876551754 178.6003043008879 2825.947528131654 -33.40748574504141 116.6326008681171 2825.927633605445 -37.07635515379707 116.1120233333375 2991.240437345625 -33.40748574504141 116.6326008681171 2825.927633605445 -37.07635515379707 116.1120233333375 2991.240437345625 -54.44923633665235 182.0526075416477 2991.062522236534 -50.78036692790988 182.5731850764132 2825.74971849631 -54.44923633665235 182.0526075416477 2991.062522236534 -50.78036692790988 182.5731850764132 2825.74971849631 -45.25390151943952 109.889688483881 2991.039354569819 -41.58503211066136 110.4102660186797 2825.726550829651 -45.25390151943952 109.889688483881 2991.039354569819 -41.58503211066136 110.4102660186797 2825.726550829651 -64.63083265383011 183.4368535099025 2990.840916050629 -60.9619632450956 183.9574310446748 2825.528112310445 -64.63083265383011 183.4368535099025 2990.840916050629 -60.9619632450956 183.9574310446748 2825.528112310445 -54.76302290703507 105.9965025087253 2990.816054082072 -51.09415349828555 106.5170800435228 2825.503250341824 -54.76302290703507 105.9965025087253 2990.816054082072 -51.09415349828555 106.5170800435228 2825.503250341824 -74.82349816268538 182.1381305957243 2990.610615409714 -71.1546287539386 182.6587081304961 2825.297811669569 -74.82349816268538 182.1381305957243 2990.610615409714 -71.1546287539386 182.6587081304961 2825.297811669569 -64.95568841588624 104.6977795945581 2990.585753441135 -61.28681900713423 105.2183571293484 2825.2729497009 -64.95568841588624 104.6977795945581 2990.585753441135 -61.28681900713423 105.2183571293484 2825.2729497009 -84.33261955295461 178.2449446194817 2990.38731492182 -80.66375014420623 178.7655221542571 2825.074511181585 -84.33261955295461 178.2449446194817 2990.38731492182 -80.66375014420623 178.7655221542571 2825.074511181585 -75.13728473307742 106.0820255628201 2990.364147255275 -71.468415324322 106.6026030976065 2825.051343515066 -75.13728473307742 106.0820255628201 2990.364147255275 -71.468415324322 106.6026030976065 2825.051343515066 -92.51016591645634 172.0226097716574 2990.18623214615 -88.84129650769864 172.5431873064328 2824.873428405881 -92.51016591645634 172.0226097716574 2990.18623214615 -88.84129650769864 172.5431873064328 2824.873428405881 -84.61395289545362 110.0549063383353 2990.166337619763 -80.94508348670388 110.5754838731245 2824.85353387959 -84.61395289545362 110.0549063383353 2990.166337619763 -80.94508348670388 110.5754838731245 2824.85353387959 -95.12998157379548 164.4157454240093 2824.708266801305 -98.79885098255613 163.8951678892405 2990.021070541545 -95.12998157379548 164.4157454240093 2824.708266801305 -98.79885098255613 163.8951678892405 2990.021070541545 -92.73987362870957 116.345676661774 2990.005804934513 -89.07100421994483 116.866254196558 2824.693001194337 -92.73987362870957 116.345676661774 2990.005804934513 -89.07100421994483 116.866254196558 2824.693001194337 -99.1012418477826 154.9370682400481 2824.590281858229 -102.7701112565333 154.4164907052689 2989.903085598407 -99.1012418477826 154.9370682400481 2824.590281858229 -102.7701112565333 154.4164907052689 2989.903085598407 -98.9612788635784 124.5256309315677 2989.893489236725 -95.29240945481888 125.0462084663517 2824.580685496476 -95.29240945481888 125.0462084663517 2824.580685496476 -98.9612788635784 124.5256309315677 2989.893489236725 -100.4844425047877 144.7531119403662 2824.527514055601 -104.1533119135472 144.2325344055892 2989.840317795779 -100.4844425047877 144.7531119403662 2824.527514055601 -104.1533119135472 144.2325344055892 2989.840317795779 -102.8541901146646 134.0373187822434 2989.837044655506 -99.18532070590982 134.557896317026 2824.524240915265 -99.18532070590982 134.557896317026 2824.524240915265 -102.8541901146646 134.0373187822434 2989.837044655506</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10520\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10517\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10521\">0.9997453049990286 -0.004196533475637447 0.02217463053102003 0.9667476113079795 0.2547619433528663 0.02225776829304972 0.9997453049990308 -0.004196533475085012 0.02217463053102181 0.9667476113082293 0.254761943351918 0.02225776829305228 -0.9667476113082293 -0.254761943351918 -0.02225776829305228 -0.9997453049990286 0.004196533475637447 -0.02217463053102003 -0.9667476113079795 -0.2547619433528663 -0.02225776829304972 -0.9997453049990308 0.004196533475085012 -0.02217463053102181 0.867867665532208 0.4963588147554106 0.02082407592859018 0.8678676655323826 0.4963588147551051 0.02082407592859309 -0.8678676655323826 -0.4963588147551051 -0.02082407592859309 -0.867867665532208 -0.4963588147554106 -0.02082407592859018 0.9646120083115537 -0.2628690234820765 0.02058032834360758 0.9646120083116612 -0.2628690234816816 0.02058032834361121 -0.9646120083115537 0.2628690234820765 -0.02058032834360758 -0.9646120083116612 0.2628690234816816 -0.02058032834361121 0.7098439725697692 0.7041296532038062 0.01797125720300431 0.7098439725694615 0.7041296532041164 0.01797125720299846 -0.7098439725694615 -0.7041296532041164 -0.01797125720299846 -0.7098439725697692 -0.7041296532038062 -0.01797125720300431 0.8637419973542321 -0.5036274239502969 0.01758351079021154 0.8637419973545223 -0.5036274239497993 0.01758351079021955 -0.8637419973542321 0.5036274239502969 -0.01758351079021154 -0.8637419973545223 0.5036274239497993 -0.01758351079021955 0.5034455859492181 0.8639152194158613 0.01389372699792922 0.5034455859492383 0.8639152194158496 0.01389372699792963 -0.5034455859492181 -0.8639152194158613 -0.01389372699792922 -0.5034455859492383 -0.8639152194158496 -0.01389372699792963 0.7040093966784182 -0.7100644477597382 0.01338840603460343 0.7040093966790954 -0.7100644477590666 0.01338840603462057 -0.7040093966784182 0.7100644477597382 -0.01338840603460343 -0.7040093966790954 0.7100644477590666 -0.01338840603462057 0.2627382146297167 0.9648263911120579 0.008869362258412721 0.2627382146296023 0.9648263911120891 0.008869362258410278 -0.2627382146297167 -0.9648263911120579 -0.008869362258412721 -0.2627382146296023 -0.9648263911120891 -0.008869362258410278 0.4962997190497847 -0.8681117528911706 0.008280903533054934 0.4962997190494962 -0.8681117528913357 0.008280903533048016 -0.4962997190497847 0.8681117528911706 -0.008280903533054934 -0.4962997190494962 0.8681117528913357 -0.008280903533048016 0.004125668178249471 0.999986238705147 0.003240565138309325 0.004125668177949985 0.9999862387051484 0.003240565138302683 -0.004125668178249471 -0.999986238705147 -0.003240565138309325 -0.004125668177949985 -0.9999862387051484 -0.003240565138302683 0.2547680357414617 -0.9669986766858685 0.002609071140542401 0.2547680357416822 -0.9669986766858105 0.002609071140547477 -0.2547680357414617 0.9669986766858685 -0.002609071140542401 -0.2547680357416822 0.9669986766858105 -0.002609071140547477 -0.2547680357417194 0.9669986766858003 -0.002609071140688605 -0.2547680357419385 0.9669986766857426 -0.002609071140693648 0.2547680357417194 -0.9669986766858003 0.002609071140688605 0.2547680357419385 -0.9669986766857426 0.002609071140693648 -0.004125668177873614 -0.9999862387051482 -0.003240565138454929 -0.004125668178125778 -0.9999862387051473 -0.003240565138460523 0.004125668177873614 0.9999862387051482 0.003240565138454929 0.004125668178125778 0.9999862387051473 0.003240565138460523 -0.4962997190497164 0.8681117528912087 -0.008280903533162506 -0.496299719050245 0.8681117528909064 -0.008280903533175191 0.4962997190497164 -0.8681117528912087 0.008280903533162506 0.496299719050245 -0.8681117528909064 0.008280903533175191 -0.2627382146290139 -0.9648263911122481 -0.008869362258559398 -0.2627382146297007 -0.9648263911120609 -0.008869362258574052 0.2627382146290139 0.9648263911122481 0.008869362258559398 0.2627382146297007 0.9648263911120609 0.008869362258574052 -0.7040093966784563 0.7100644477596985 -0.01338840603470166 -0.7040093966788406 0.7100644477593175 -0.01338840603471139 0.7040093966784563 -0.7100644477596985 0.01338840603470166 0.7040093966788406 -0.7100644477593175 0.01338840603471139 -0.5034455859489087 -0.8639152194160393 -0.01389372699806307 -0.5034455859495166 -0.8639152194156847 -0.01389372699807544 0.5034455859489087 0.8639152194160393 0.01389372699806307 0.5034455859495166 0.8639152194156847 0.01389372699807544 -0.8637419973544616 0.5036274239498984 -0.01758351079035389 -0.8637419973540884 0.5036274239505389 -0.01758351079034359 0.8637419973544616 -0.5036274239498984 0.01758351079035389 0.8637419973540884 -0.5036274239505389 0.01758351079034359 -0.7098439725699957 -0.7041296532035747 -0.0179712572031315 -0.709843972569841 -0.7041296532037306 -0.01797125720312855 0.7098439725699957 0.7041296532035747 0.0179712572031315 0.709843972569841 0.7041296532037306 0.01797125720312855 -0.9646120083115906 0.26286902348193 -0.02058032834374643 -0.9646120083115268 0.2628690234821646 -0.02058032834374427 0.9646120083115906 -0.26286902348193 0.02058032834374643 0.9646120083115268 -0.2628690234821646 0.02058032834374427 -0.8678676655325995 -0.4963588147547212 -0.02082407592870088 -0.8678676655321971 -0.4963588147554249 -0.02082407592869417 0.8678676655321971 0.4963588147554249 0.02082407592869417 0.8678676655325995 0.4963588147547212 0.02082407592870088 -0.9997453049990281 0.004196533475190801 -0.02217463053112654 -0.9997453049990268 0.004196533475530125 -0.02217463053112544 0.9997453049990281 -0.004196533475190801 0.02217463053112654 0.9997453049990268 -0.004196533475530125 0.02217463053112544 -0.9667476113081884 -0.2547619433520652 -0.02225776829314078 -0.9667476113079156 -0.2547619433531001 -0.02225776829313798 0.9667476113079156 0.2547619433531001 0.02225776829313798 0.9667476113081884 0.2547619433520652 0.02225776829314078</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10521\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10519\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10522\">5.295155163586264 242.3887004558243 5.104828257458276 242.3887004632134 5.295155282495147 245.4508176911721 5.104828376367048 245.4508176985624 12.48872567167321 242.3887001371635 12.29839876554522 242.3887001451522 12.48872580022332 245.4508173725108 12.29839889409521 245.4508173805 -2.25278618614958 242.3887007358674 -2.443113092277631 242.3887007421557 -2.252786084985333 245.4508179712163 -2.443112991113434 245.4508179775035 18.83769539587204 242.3886998652062 18.64736848974387 242.3886998732521 18.83769552530247 245.450817100555 18.64736861917462 245.4508171085994 -9.640718648171028 242.3887009023755 -9.831045554246094 242.3887009071311 -9.64071857164555 245.4508181377233 -9.831045477720121 245.4508181424791 23.71906575703806 245.450816955732 23.90939266316632 245.4508169481807 23.71906563554747 242.3886997203832 23.90939254167531 242.3886997128307 -16.36516683423142 242.388700910876 -16.55549374040862 242.3887009137766 -16.36516678755923 245.450818146224 -16.5554936937371 245.4508181491243 27.16786252910492 245.4508169628019 27.35818943523293 245.4508169562587 27.16786242383319 242.3886997274519 27.35818932996135 242.3886997209101 -21.96787069966373 245.450817994628 -21.96787071330079 242.3887007592802 -22.15819760584166 245.4508179954738 -22.15819761947818 242.3887007601262 28.75872913476743 245.4508171278154 28.94905604089538 245.450817122725 28.7587290528892 242.3886998924669 28.9490559590173 242.3886998873772 -26.06701529514992 245.4508177237545 -26.06701527482266 242.388700488407 -26.25734220122451 245.4508177224927 -26.25734218089779 242.3887004871437 28.3832506438808 245.4508174064087 28.57357755000892 245.4508174031203 28.38325059097591 242.3887001710609 28.5735774971038 242.3887001677732 -28.38325064388183 245.450817406405 -28.38325059097664 242.3887001710561 -28.57357755000987 245.4508174031162 -28.57357749710464 242.3887001677675 26.06701529509748 245.4508177237594 26.25734220122557 245.4508177224961 26.06701527477095 242.3887004884123 26.25734218089901 242.3887004871473 -28.75872913476674 245.4508171278105 -28.75872905288841 242.3886998924618 -28.94905604089493 245.4508171227209 -28.94905595901652 242.3886998873726 21.96787069966009 245.4508179946318 22.15819760578814 245.4508179954792 21.96787071329733 242.388700759283 22.15819761942526 242.3887007601297 -27.16786252910552 245.4508169627968 -27.16786242383386 242.3886997274485 -27.35818943523341 245.4508169562519 -27.35818932996185 242.3886997209042 16.36516683428919 242.3887009108781 16.3651667876176 245.4508181462275 16.55549374041725 242.3887009137787 16.55549369374561 245.4508181491275 -23.71906575703475 245.4508169557269 -23.71906563554403 242.3886997203793 -23.90939266316289 245.4508169481754 -23.90939254167191 242.3886997128278 9.640718648163464 242.3887009023778 9.640718571637919 245.4508181377267 9.831045554291466 242.3887009071338 9.83104547776604 245.4508181424815 -18.83769539587701 242.3886998652037 -18.83769552530765 245.4508171005526 -18.64736848974889 242.3886998732485 -18.64736861917961 245.4508171085961 2.252786186154892 242.3887007358696 2.252786084990695 245.4508179712173 2.443113092283007 242.388700742158 2.443112991118795 245.4508179775057 -12.48872567166921 242.38870013716 -12.48872580021911 245.4508173725089 -12.29839876554121 242.3887001451488 -12.29839889409112 245.4508173804978 -5.295155163583873 242.3887004558239 -5.295155282492716 245.4508176911716 -5.10482825745598 242.3887004632128 -5.10482837636471 245.4508176985617</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10522\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10518\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10516\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10517\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10518\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 8 1 8 3 9 12 2 13 2 12 0 9 16 8 16 9 17 20 13 21 13 20 12 24 17 25 17 24 16 28 21 29 21 28 20 32 25 33 25 32 24 28 36 37 36 28 29 40 33 41 33 40 32 37 44 45 44 37 36 48 41 49 41 48 40 45 52 53 52 45 44 56 49 57 49 56 48 53 60 61 60 53 52 64 57 65 57 64 56 61 68 69 68 61 60 64 72 73 72 64 65 69 76 77 76 69 68 73 80 81 80 73 72 84 77 76 77 84 85 81 88 89 88 81 80 92 85 84 85 92 93 89 93 92 93 89 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10518\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10519\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 4 5 11 6 6 7 11 6 4 5 5 8 14 9 7 10 15 11 7 10 14 9 18 12 10 13 19 14 11 15 19 14 10 13 14 16 22 17 15 18 23 19 15 18 22 17 19 20 26 21 18 22 27 23 18 22 26 21 22 24 30 25 23 26 31 27 23 26 30 25 26 28 34 29 27 30 35 31 27 30 34 29 31 32 30 33 38 34 39 35 38 34 30 33 34 36 42 37 35 38 43 39 35 38 42 37 38 40 39 41 46 42 47 43 46 42 39 41 42 44 50 45 43 46 51 47 43 46 50 45 46 48 47 49 54 50 55 51 54 50 47 49 50 52 58 53 51 54 59 55 51 54 58 53 54 56 55 57 62 58 63 59 62 58 55 57 58 60 66 61 59 62 67 63 59 62 66 61 62 64 63 65 70 66 71 67 70 66 63 65 67 68 66 69 74 70 75 71 74 70 66 69 70 72 71 73 78 74 79 75 78 74 71 73 74 76 75 77 82 78 83 79 82 78 75 77 86 80 87 81 79 82 78 83 79 82 87 81 82 84 83 85 90 86 91 87 90 86 83 85 94 88 95 89 86 90 87 91 86 90 95 89 90 92 91 93 94 94 95 95 94 94 91 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10523\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10524\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10528\">-68.27208830800805 166.9737365389692 3817.687601290727 -58.50877834928019 162.7762363311257 3652.495197064534 -64.60321889926877 167.4943140737397 3652.374797550574 -62.17764775801356 162.2556587963508 3817.808000804596 -62.17764775801356 162.2556587963508 3817.808000804596 -68.27208830800805 166.9737365389692 3817.687601290727 -58.50877834928019 162.7762363311257 3652.495197064534 -64.60321889926877 167.4943140737397 3652.374797550574 -75.37958942985665 169.9533971206363 3817.539244064192 -71.71072002111828 170.4739746554045 3652.22644032415 -75.37958942985665 169.9533971206363 3817.539244064192 -71.71072002111828 170.4739746554045 3652.22644032415 -53.84272442308838 156.6412706287267 3652.579433837924 -57.51159383182721 156.1206930939579 3817.892237578104 -53.84272442308838 156.6412706287267 3652.579433837924 -57.51159383182721 156.1206930939579 3817.892237578104 -83.01578666781597 170.9915815968336 3817.373039424876 -79.34691725906259 171.5121591316039 3652.060235684678 -83.01578666781597 170.9915815968336 3817.373039424876 -79.34691725906259 171.5121591316039 3652.060235684678 -50.92304098475256 149.5075047406701 3652.621767273857 -54.59191039349093 148.986927205889 3817.934571014033 -50.92304098475256 149.5075047406701 3652.621767273857 -54.59191039349093 148.986927205889 3817.934571014033 -90.66028579951808 170.0175394111986 3817.200313944122 -86.9914163907597 170.538116945966 3651.887510203942 -90.66028579951808 170.0175394111986 3817.200313944122 -86.9914163907597 170.538116945966 3651.887510203942 -49.94869963558017 141.8610930230918 3652.619312418607 -53.61756904431536 141.340515488311 3817.932116158787 -49.94869963558017 141.8610930230918 3652.619312418607 -53.61756904431536 141.340515488311 3817.932116158787 -97.79212684227741 167.0976499289947 3817.032838578158 -94.1232574335213 167.6182274637569 3651.720034838099 -97.79212684227741 167.0976499289947 3817.032838578158 -94.1232574335213 167.6182274637569 3651.720034838099 -50.98610012835184 134.2231257982718 3652.57223656665 -54.65496953708043 133.7025482634938 3817.885040306834 -50.98610012835184 134.2231257982718 3652.57223656665 -54.65496953708043 133.7025482634938 3817.885040306834 -103.9252866149529 162.430898793088 3816.882026496322 -100.2564172061948 162.9514763278532 3651.569222756234 -103.9252866149529 162.430898793088 3816.882026496322 -100.2564172061948 162.9514763278532 3651.569222756234 -53.96454533269139 127.1141179130351 3652.48374785942 -57.63341474141907 126.5935403782877 3817.796551599595 -53.96454533269139 127.1141179130351 3652.48374785942 -57.63341474141907 126.5935403782877 3817.796551599595 -104.9729310058076 156.8558949159866 3651.445351552784 -108.6418004145673 156.335317381216 3816.758155292964 -104.9729310058076 156.8558949159866 3651.445351552784 -108.6418004145673 156.335317381216 3816.758155292964 -58.68105913402974 121.0185364989416 3652.359876655937 -62.34992854277402 120.4979589641568 3817.672680396076 -58.68105913402974 121.0185364989416 3652.359876655937 -62.34992854277402 120.4979589641568 3817.672680396076 -107.9513762113209 149.746887027956 3651.356862845565 -111.620245620077 149.2263094931789 3816.669666585629 -107.9513762113209 149.746887027956 3651.356862845565 -111.620245620077 149.2263094931789 3816.669666585629 -68.48308831772374 115.8312078265216 3817.52186831423 -64.8142189089524 116.3517853613253 3652.209064574083 -68.48308831772374 115.8312078265216 3817.52186831423 -64.8142189089524 116.3517853613253 3652.209064574083 -108.9887767040889 142.1089198031428 3651.309786993546 -112.6576461128373 141.5883422683544 3816.622590733619 -108.9887767040889 142.1089198031428 3651.309786993546 -112.6576461128373 141.5883422683544 3816.622590733619 -75.61492935764522 112.9113183454823 3817.354392948413 -71.94605994890776 113.4318958802582 3652.041589208226 -75.61492935764522 112.9113183454823 3817.354392948413 -71.94605994890776 113.4318958802582 3652.041589208226 -108.0144353549144 134.4625080855693 3651.307332138225 -111.6833047636703 133.9419305507875 3816.620135878426 -108.0144353549144 134.4625080855693 3651.307332138225 -111.6833047636703 133.9419305507875 3816.620135878426 -83.25942848934301 111.9372761598391 3817.181667467652 -79.59055908060213 112.4578536946314 3651.86886372747 -83.25942848934301 111.9372761598391 3817.181667467652 -79.59055908060213 112.4578536946314 3651.86886372747 -105.094751916577 127.3287421974985 3651.349665574244 -108.7636213253288 126.8081646627142 3816.662469314424 -105.094751916577 127.3287421974985 3651.349665574244 -108.7636213253288 126.8081646627142 3816.662469314424 -90.89562572729665 112.9754606360352 3817.015462828273 -87.22675631855395 113.4960381708284 3651.702659088147 -90.89562572729665 112.9754606360352 3817.015462828273 -87.22675631855395 113.4960381708284 3651.702659088147 -100.4286979903832 121.1937764951046 3651.433902347588 -104.0975673991397 120.6731989603181 3816.746706087826 -100.4286979903832 121.1937764951046 3651.433902347588 -104.0975673991397 120.6731989603181 3816.746706087826 -98.00312684915025 115.9551212177034 3816.867105601756 -94.33425744039982 116.4756987524934 3651.554301861565 -98.00312684915025 115.9551212177034 3816.867105601756 -94.33425744039982 116.4756987524934 3651.554301861565</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10528\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10525\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10529\">0.5034455859488206 0.863915219416093 0.01389372699791465 0.7098439725697023 0.7041296532038733 0.01797125720300347 0.5034455859497818 0.8639152194155324 0.01389372699793422 0.7098439725699762 0.7041296532035973 0.01797125720300867 -0.7098439725699762 -0.7041296532035973 -0.01797125720300867 -0.5034455859488206 -0.863915219416093 -0.01389372699791465 -0.7098439725697023 -0.7041296532038733 -0.01797125720300347 -0.5034455859497818 -0.8639152194155324 -0.01389372699793422 0.262738214628784 0.9648263911123119 0.008869362258393451 0.2627382146295048 0.9648263911121158 0.008869362258408828 -0.262738214628784 -0.9648263911123119 -0.008869362258393451 -0.2627382146295048 -0.9648263911121158 -0.008869362258408828 0.8678676655325325 0.4963588147548426 0.02082407592860412 0.867867665532662 0.4963588147546158 0.02082407592860628 -0.8678676655325325 -0.4963588147548426 -0.02082407592860412 -0.867867665532662 -0.4963588147546158 -0.02082407592860628 0.004125668177881484 0.9999862387051486 0.003240565138299401 0.004125668177055757 0.9999862387051521 0.003240565138281086 -0.004125668177881484 -0.9999862387051486 -0.003240565138299401 -0.004125668177055757 -0.9999862387051521 -0.003240565138281086 0.9667476113081882 0.2547619433520733 0.02225776829305908 0.9667476113079145 0.2547619433531117 0.02225776829305628 -0.9667476113081882 -0.2547619433520733 -0.02225776829305908 -0.9667476113079145 -0.2547619433531117 -0.02225776829305628 -0.2547680357409716 0.9669986766859973 -0.002609071140681249 -0.2547680357413863 0.966998676685888 -0.002609071140690798 0.2547680357409716 -0.9669986766859973 0.002609071140681249 0.2547680357413863 -0.966998676685888 0.002609071140690798 0.9997453049990297 -0.004196533475331535 0.02217463053102987 0.9997453049990311 -0.004196533474960066 0.02217463053103106 -0.9997453049990297 0.004196533475331535 -0.02217463053102987 -0.9997453049990311 0.004196533474960066 -0.02217463053103106 -0.4962997190488595 0.8681117528916988 -0.008280903533145045 -0.49629971904969 0.8681117528912238 -0.008280903533164971 0.4962997190488595 -0.8681117528916988 0.008280903533145045 0.49629971904969 -0.8681117528912238 0.008280903533164971 0.9646120083116311 -0.26286902348179 0.02058032834363582 0.9646120083114737 -0.2628690234823685 0.0205803283436305 -0.9646120083116311 0.26286902348179 -0.02058032834363582 -0.9646120083114737 0.2628690234823685 -0.0205803283436305 -0.7040093966785385 0.7100644477596175 -0.01338840603468119 -0.7040093966792634 0.7100644477588983 -0.01338840603469954 0.7040093966785385 -0.7100644477596175 0.01338840603468119 0.7040093966792634 -0.7100644477588983 0.01338840603469954 0.8637419973543022 -0.5036274239501755 0.01758351079024922 0.863741997354418 -0.5036274239499766 0.01758351079025242 -0.8637419973543022 0.5036274239501755 -0.01758351079024922 -0.863741997354418 0.5036274239499766 -0.01758351079025242 -0.8637419973542762 0.503627423950217 -0.01758351079033454 -0.8637419973544189 0.5036274239499722 -0.01758351079033848 0.8637419973542762 -0.503627423950217 0.01758351079033454 0.8637419973544189 -0.5036274239499722 0.01758351079033848 0.7040093966783636 -0.7100644477597923 0.01338840603460707 0.7040093966790501 -0.7100644477591117 0.01338840603462445 -0.7040093966783636 0.7100644477597923 -0.01338840603460707 -0.7040093966790501 0.7100644477591117 -0.01338840603462445 -0.9646120083115314 0.2628690234821453 -0.02058032834376766 -0.9646120083114994 0.2628690234822632 -0.02058032834376658 0.9646120083115314 -0.2628690234821453 0.02058032834376766 0.9646120083114994 -0.2628690234822632 0.02058032834376658 0.4962997190498212 -0.8681117528911496 0.008280903533058312 0.4962997190495531 -0.8681117528913031 0.00828090353305188 -0.4962997190498212 0.8681117528911496 -0.008280903533058312 -0.4962997190495531 0.8681117528913031 -0.00828090353305188 -0.9997453049990309 0.004196533474313115 -0.02217463053116212 -0.9997453049990265 0.004196533475418527 -0.02217463053115855 0.9997453049990309 -0.004196533474313115 0.02217463053116212 0.9997453049990265 -0.004196533475418527 0.02217463053115855 0.2547680357419608 -0.9669986766857368 0.002609071140580263 0.2547680357413855 -0.9669986766858885 0.002609071140567017 -0.2547680357419608 0.9669986766857368 -0.002609071140580263 -0.2547680357413855 0.9669986766858885 -0.002609071140567017 -0.9667476113079745 -0.2547619433528744 -0.02225776829316687 -0.9667476113080602 -0.2547619433525494 -0.02225776829316775 0.9667476113079745 0.2547619433528744 0.02225776829316687 0.9667476113080602 0.2547619433525494 0.02225776829316775 -0.00412566817743311 -0.99998623870515 -0.0032405651384261 -0.004125668177955442 -0.9999862387051478 -0.003240565138437685 0.00412566817743311 0.99998623870515 0.0032405651384261 0.004125668177955442 0.9999862387051478 0.003240565138437685 -0.8678676655323366 -0.4963588147551807 -0.02082407592870751 -0.8678676655321941 -0.4963588147554297 -0.02082407592870513 0.8678676655323366 0.4963588147551807 0.02082407592870751 0.8678676655321941 0.4963588147554297 0.02082407592870513 -0.2627382146295388 -0.9648263911121051 -0.008869362258561803 -0.2627382146291077 -0.9648263911122226 -0.008869362258552609 0.2627382146295388 0.9648263911121051 0.008869362258561803 0.2627382146291077 0.9648263911122226 0.008869362258552609 -0.7098439725697542 -0.7041296532038182 -0.01797125720312645 -0.7098439725697695 -0.7041296532038026 -0.01797125720312674 0.7098439725697542 0.7041296532038182 0.01797125720312645 0.7098439725697695 0.7041296532038026 0.01797125720312674 -0.5034455859495388 -0.8639152194156718 -0.01389372699807397 -0.5034455859495954 -0.8639152194156388 -0.01389372699807512 0.5034455859495388 0.8639152194156718 0.01389372699807397 0.5034455859495954 0.8639152194156388 0.01389372699807512</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10529\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10527\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10530\">23.74285722775502 260.7614031315127 23.88560240735233 260.7614031258504 23.74285710626436 257.6992858961672 23.88560228586156 257.6992858905032 27.19165391872818 260.7614031387088 27.3343990983254 260.761403133802 27.19165381345666 257.6992859033616 27.33439899305385 257.6992858984568 18.81390517976464 257.6992860429408 18.67116000016735 257.6992860489743 18.81390530919516 260.7614032782863 18.671160129598 260.761403284322 28.78252040742468 260.7614033039064 28.92526558702201 260.7614033000906 28.78252032554647 257.6992860685612 28.92526550514359 257.6992860647425 12.46493545114195 257.6992863148898 12.32219027154495 257.6992863208819 12.46493557969198 260.7614035502376 12.32219040009477 260.7614035562296 28.40704177167283 260.7614035827274 28.54978695127007 260.7614035802599 28.40704171876761 257.6992863473794 28.54978689836476 257.6992863449121 5.271364894884043 257.6992866334769 5.128619715286747 257.6992866390186 5.271365013792759 260.7614038688245 5.128619834195462 260.7614038743664 26.09080625999903 260.7614039003306 26.23355143959625 260.7614038993822 26.09080623967234 257.6992866649828 26.23355141926959 257.6992866640367 -2.27657654360023 257.6992869133817 -2.419321723197434 257.6992869180982 -2.276576442436028 260.7614041487294 -2.419321622033164 260.761404153446 21.99166149474636 260.7614041714651 22.13440667434358 260.7614041720991 21.99166150838357 257.6992869361196 22.13440668798074 257.699286936753 -9.664509128810515 257.6992870796995 -9.807254308351567 257.6992870832673 -9.664509052284906 260.7614043150473 -9.807254231825432 260.761404318615 16.38895746418608 257.6992870879698 16.38895741751441 260.7614043233158 16.5317026437833 257.6992870901449 16.5317025971117 260.7614043254926 -16.38895746414148 257.6992870879694 -16.53170264379088 257.6992870901447 -16.38895741746918 260.761404323317 -16.53170259711932 260.7614043254916 9.664509128812663 257.6992870797037 9.664509052287153 260.7614043150514 9.80725430840983 257.6992870832723 9.807254231884429 260.7614043186179 -21.99166149474141 260.7614041714624 -21.99166150837857 257.6992869361154 -22.13440667439152 260.7614041720973 -22.13440668802808 257.6992869367501 2.276576543586916 257.6992869133891 2.276576442422707 260.7614041487346 2.419321723183996 257.6992869181045 2.419321622019973 260.7614041534502 -26.09080626005129 260.7614039003267 -26.09080623972411 257.6992866649796 -26.23355143959165 260.7614038993799 -26.23355141926527 257.699286664032 -5.271364894865516 257.6992866334798 -5.271365013774124 260.7614038688256 -5.128619715268304 257.6992866390203 -5.128619834177052 260.7614038743684 -28.40704177167218 260.7614035827244 -28.40704171876724 257.6992863473765 -28.54978695126937 260.7614035802567 -28.54978689836431 257.699286344909 -12.46493545114979 257.6992863148893 -12.46493557969971 260.7614035502375 -12.32219027155253 257.699286320883 -12.32219040010238 260.7614035562307 -28.78252040742461 260.7614033039021 -28.78252032554646 257.6992860685543 -28.92526558702185 260.7614033000851 -28.92526550514365 257.6992860647384 -18.81390517976878 257.6992860429407 -18.81390530919935 260.7614032782884 -18.67116000017155 257.6992860489733 -18.67116012960213 260.7614032843221 -27.19165391872913 260.7614031387079 -27.19165381345771 257.6992859033612 -27.33439909832644 260.7614031338014 -27.33439899305489 257.6992858984535 -23.74285722775184 260.7614031315143 -23.74285710626114 257.6992858961663 -23.88560240734905 260.7614031258509 -23.88560228585823 257.699285890502</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10530\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10526\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10524\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10525\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10526\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 8 2 9 2 8 0 12 3 13 3 12 1 16 9 17 9 16 8 20 13 21 13 20 12 24 17 25 17 24 16 28 21 29 21 28 20 32 25 33 25 32 24 36 29 37 29 36 28 40 33 41 33 40 32 44 37 45 37 44 36 40 48 49 48 40 41 52 45 53 45 52 44 49 56 57 56 49 48 52 60 61 60 52 53 57 64 65 64 57 56 61 68 69 68 61 60 65 72 73 72 65 64 69 76 77 76 69 68 73 80 81 80 73 72 77 84 85 84 77 76 81 88 89 88 81 80 85 92 93 92 85 84 93 89 88 89 93 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10526\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10527\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 5 4 10 5 7 6 11 7 7 6 10 5 6 8 14 9 4 10 15 11 4 10 14 9 10 12 18 13 11 14 19 15 11 14 18 13 14 16 22 17 15 18 23 19 15 18 22 17 18 20 26 21 19 22 27 23 19 22 26 21 22 24 30 25 23 26 31 27 23 26 30 25 26 28 34 29 27 30 35 31 27 30 34 29 30 32 38 33 31 34 39 35 31 34 38 33 34 36 42 37 35 38 43 39 35 38 42 37 38 40 46 41 39 42 47 43 39 42 46 41 43 44 42 45 50 46 51 47 50 46 42 45 46 48 54 49 47 50 55 51 47 50 54 49 50 52 51 53 58 54 59 55 58 54 51 53 55 56 54 57 62 58 63 59 62 58 54 57 58 60 59 61 66 62 67 63 66 62 59 61 62 64 63 65 70 66 71 67 70 66 63 65 66 68 67 69 74 70 75 71 74 70 67 69 70 72 71 73 78 74 79 75 78 74 71 73 74 76 75 77 82 78 83 79 82 78 75 77 78 80 79 81 86 82 87 83 86 82 79 81 82 84 83 85 90 86 91 87 90 86 83 85 86 88 87 89 94 90 95 91 94 90 87 89 94 92 95 93 91 94 90 95 91 94 95 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10531\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10532\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10536\">-147.3561524144925 115.0125610674808 284.1852505304614 -147.0412346893213 191.3428372598591 284.4326071664636 -152.222018706359 153.1987850863141 284.1975100913787 -132.7752365602996 79.38649326452328 284.3966639526516 -132.1668622324849 226.8452634684949 284.8745202786213 -109.4729364631317 48.74843932334439 284.817342882654 -108.612565237732 257.2866320366605 285.4931337798171 -98.46309402645238 152.9731264851856 285.3898980791 -95.37160018812733 128.7117783136329 285.3821090535148 -79.03726536573686 25.18633198825421 285.4186187465839 -86.10771811316204 106.0770073416587 285.5164290806679 -71.30276605567042 86.61133580526639 285.7837044725093 -43.54236395607109 10.30588993593364 286.1595155876494 -51.96567703203778 71.64131705112413 286.1657208529068 -29.41424170317055 62.18713311819388 286.63644443677 -5.407151107125628 5.121190701132662 286.9895425110735 -5.185303118719958 58.89307101773827 287.1637961897886 32.76952144688789 9.985562968596938 287.8521345533536 19.06997659700187 61.98361563818807 287.7118379615095 41.69864021297394 71.24815147017178 288.2432216107427 68.38597655918647 24.56750780617195 288.6885074922739 61.15858170522711 86.05531571009013 288.7217342202403 76.12363821602935 105.3960245833098 289.1147659461822 99.01501167870083 47.87328977397068 289.4416638943931 85.57396587337257 127.9522407380251 289.3955323259543 88.86554046783886 152.1867953250188 289.5448995950792 -95.17151943197723 177.2076810721788 285.5392653481194 -77.98353011994095 280.5924140031664 286.2462901818817 -85.72119177375339 199.7638972290272 285.8200317279207 -70.75613526427583 219.1046061005404 286.2130634538462 -42.36707500549869 295.1743588416131 287.0826631208383 -51.29619377372205 233.9117703391608 286.6915760632674 -28.6675301556229 243.1763061720164 287.2229597125679 -4.190402451496993 300.038731109076 287.9452551631039 -4.412250439895388 246.2668507924721 287.7710014842669 19.81668814455293 242.972788692008 288.2983532373673 33.9448103974521 294.8540318742752 288.7752820863552 42.36812347342993 233.5186047590819 288.7690768211669 69.43971180711992 279.9735898219527 289.5161789276062 61.70521249705917 218.5485860049363 289.1510932015553 76.51016455455101 199.0829144685454 289.4183685933931 99.87538290451676 256.4114824868611 290.1174547914052 85.77404662951062 176.4481434965734 289.5526886205589 122.5693086747665 78.31465834384071 290.0602773954561 123.1776830016875 225.7734285456784 290.5381337214822 137.4436811306944 113.8170845503522 290.5021905077392 137.7585988558822 190.1473607427304 290.7495471436032 142.6244651477459 151.9611367238889 290.7372875828296 142.6244651477459 151.9611367238889 290.7372875828296 137.4436811306944 113.8170845503522 290.5021905077392 137.7585988558822 190.1473607427304 290.7495471436032 123.1776830016875 225.7734285456784 290.5381337214822 122.5693086747665 78.31465834384071 290.0602773954561 99.87538290451676 256.4114824868611 290.1174547914052 99.01501167870083 47.87328977397068 289.4416638943931 88.86554046783886 152.1867953250188 289.5448995950792 85.77404662951062 176.4481434965734 289.5526886205589 76.51016455455101 199.0829144685454 289.4183685933931 69.43971180711992 279.9735898219527 289.5161789276062 61.70521249705917 218.5485860049363 289.1510932015553 42.36812347342993 233.5186047590819 288.7690768211669 33.9448103974521 294.8540318742752 288.7752820863552 19.81668814455293 242.972788692008 288.2983532373673 -4.190402451496993 300.038731109076 287.9452551631039 -4.412250439895388 246.2668507924721 287.7710014842669 -28.6675301556229 243.1763061720164 287.2229597125679 -42.36707500549869 295.1743588416131 287.0826631208383 -51.29619377372205 233.9117703391608 286.6915760632674 -70.75613526427583 219.1046061005404 286.2130634538462 -77.98353011994095 280.5924140031664 286.2462901818817 -85.72119177375339 199.7638972290272 285.8200317279207 -95.17151943197723 177.2076810721788 285.5392653481194 -98.46309402645238 152.9731264851856 285.3898980791 -108.612565237732 257.2866320366605 285.4931337798171 85.57396587337257 127.9522407380251 289.3955323259543 76.12363821602935 105.3960245833098 289.1147659461822 68.38597655918647 24.56750780617195 288.6885074922739 61.15858170522711 86.05531571009013 288.7217342202403 41.69864021297394 71.24815147017178 288.2432216107427 32.76952144688789 9.985562968596938 287.8521345533536 19.06997659700187 61.98361563818807 287.7118379615095 -5.185303118719958 58.89307101773827 287.1637961897886 -5.407151107125628 5.121190701132662 286.9895425110735 -29.41424170317055 62.18713311819388 286.63644443677 -43.54236395607109 10.30588993593364 286.1595155876494 -51.96567703203778 71.64131705112413 286.1657208529068 -71.30276605567042 86.61133580526639 285.7837044725093 -79.03726536573686 25.18633198825421 285.4186187465839 -86.10771811316204 106.0770073416587 285.5164290806679 -95.37160018812733 128.7117783136329 285.3821090535148 -109.4729364631317 48.74843932334439 284.817342882654 -132.1668622324849 226.8452634684949 284.8745202786213 -132.7752365602996 79.38649326452328 284.3966639526516 -147.0412346893213 191.3428372598591 284.4326071664636 -147.3561524144925 115.0125610674808 284.1852505304614 -152.222018706359 153.1987850863141 284.1975100913787</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10536\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10533\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10537\">-0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 -0.02218792451956578 -0.003148254615068845 0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258 0.02218792451956578 0.003148254615068845 -0.9997488607137258</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10537\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10535\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID10538\">-2.889994813427137 26.06248569307681 -3.602442944810583 26.03795717113841 -2.208171212058252 26.27057357094781 -1.603437292370957 26.64803995975548 -4.296963443389414 26.19865958335715 -1.117004671621261 27.16916114889565 -4.926225885050754 26.5336413259514 -3.053864536349612 27.0446989966606 -2.620672718896506 27.17690616259615 -2.23645928712472 27.41672677113294 -0.7820229290455174 27.79842359052173 -1.927407751466582 27.74781744412186 -1.714579463345391 28.14761489935166 -0.6213205168170868 28.49294408914243 -1.612478318881369 28.58887360094527 -0.6458490387556024 29.20539222052582 -1.628062342339412 29.04152249760328 -1.760269508274834 29.47471431505642 -0.8539369166264983 29.8872158218945 -2.000090116811695 29.85892774682817 -2.331180789800659 30.1679792824864 -1.231403305434222 30.4919497415821 -2.730978245030551 30.38080757060739 -3.172236946624099 30.48290871507136 -3.624885843282035 30.46732469161347 -1.7525244945744 30.97838236233162 -3.506513433007541 27.02911497320259 -3.947772134559401 27.13121611765715 -5.44734707421992 27.02007394672834 -4.347569589824579 27.34404440579698 -4.67866026284255 27.6530959414822 -5.824813463005034 27.62480786637953 -4.918480871356846 28.03730937321783 -5.050688037292146 28.4705011906709 -6.032901340875994 28.30663146774843 -5.066272060750341 28.92315008732888 -6.057429862814517 29.01907959913182 -4.96417091628622 29.36440878892235 -4.751342628165101 29.76420624415221 -5.896727450586091 29.71360009775241 -4.442291092506938 30.09529691714113 -4.058077660735126 30.33511752567803 -5.561745708010385 30.3428625393785 -2.38178693620055 31.31336410490728 -5.07531308726074 30.86398372851858 -3.076307434820977 31.47406651713591 -4.470579167573275 31.24145011732627 -3.78875556620453 31.44953799519724</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID10538\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10534\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10532\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10533\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10534\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 4 5 6 6 5 7 7 5 8 8 5 9 8 9 10 10 9 11 11 9 12 11 12 13 13 12 14 14 12 15 14 15 16 16 15 17 16 17 18 18 17 19 19 17 20 19 20 21 21 20 22 22 20 23 22 23 24 24 23 25 6 26 27 26 6 7 27 26 28 27 28 29 27 29 30 30 29 31 30 31 32 30 32 33 33 32 34 33 34 35 33 35 36 36 35 37 36 37 38 38 37 39 38 39 40 38 40 41 41 40 42 41 42 25 41 25 23 41 23 43 41 43 44 44 43 45 44 45 46 46 45 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10534\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10535\" />\r\n\t\t\t\t\t<p>48 0 49 1 50 2 50 2 49 1 51 3 49 1 52 4 51 3 51 3 52 4 53 5 52 4 54 6 53 5 54 6 55 7 53 5 55 7 56 8 53 5 56 8 57 9 53 5 53 5 57 9 58 10 57 9 59 11 58 10 59 11 60 12 58 10 58 10 60 12 61 13 60 12 62 14 61 13 61 13 62 14 63 15 62 14 64 16 63 15 64 16 65 17 63 15 63 15 65 17 66 18 65 17 67 19 66 18 67 19 68 20 66 18 66 18 68 20 69 21 68 20 70 22 69 21 70 22 71 23 69 21 72 24 73 25 71 23 69 21 71 23 73 25 55 7 54 6 74 26 74 26 54 6 75 27 54 6 76 28 75 27 75 27 76 28 77 29 77 29 76 28 78 30 76 28 79 31 78 30 78 30 79 31 80 32 80 32 79 31 81 33 79 31 82 34 81 33 81 33 82 34 83 35 82 34 84 36 83 35 83 35 84 36 85 37 85 37 84 36 86 38 84 36 87 39 86 38 86 38 87 39 88 40 88 40 87 39 89 41 87 39 90 42 89 41 89 41 90 42 72 24 72 24 90 42 73 25 73 25 90 42 91 43 90 42 92 44 91 43 91 43 92 44 93 45 92 44 94 46 93 45 95 47 93 45 94 46</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10539\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10540\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10544\">-47.31723071962165 134.743703333055 3487.259432826631 -49.94869963558017 141.8610930230918 3652.619312418607 -50.98610012835184 134.2231257982718 3652.57223656665 -46.27983022685635 142.3816705578724 3487.306508678643 -46.27983022685635 142.3816705578724 3487.306508678643 -47.31723071962165 134.743703333055 3487.259432826631 -49.94869963558017 141.8610930230918 3652.619312418607 -50.98610012835184 134.2231257982718 3652.57223656665 -50.92304098475256 149.5075047406701 3652.621767273857 -47.25417157602101 150.028082275443 3487.308963533913 -47.25417157602101 150.028082275443 3487.308963533913 -50.92304098475256 149.5075047406701 3652.621767273857 -50.29567592397598 127.6346954477884 3487.170944119462 -53.96454533269139 127.1141179130351 3652.48374785942 -50.29567592397598 127.6346954477884 3487.170944119462 -53.96454533269139 127.1141179130351 3652.48374785942 -53.84272442308838 156.6412706287267 3652.579433837924 -50.17385501436388 157.1618481635018 3487.266630097924 -50.17385501436388 157.1618481635018 3487.266630097924 -53.84272442308838 156.6412706287267 3652.579433837924 -55.01218972528864 121.5391140337152 3487.047072915817 -58.68105913402974 121.0185364989416 3652.359876655937 -55.01218972528864 121.5391140337152 3487.047072915817 -58.68105913402974 121.0185364989416 3652.359876655937 -58.50877834928019 162.7762363311257 3652.495197064534 -54.83990894054455 163.2968138658956 3487.182393324474 -54.83990894054455 163.2968138658956 3487.182393324474 -58.50877834928019 162.7762363311257 3652.495197064534 -64.8142189089524 116.3517853613253 3652.209064574083 -61.14534950018128 116.8723628961244 3486.896260834092 -64.8142189089524 116.3517853613253 3652.209064574083 -61.14534950018128 116.8723628961244 3486.896260834092 -64.60321889926877 167.4943140737397 3652.374797550574 -60.93434949053949 168.0148916085079 3487.061993810654 -64.60321889926877 167.4943140737397 3652.374797550574 -60.93434949053949 168.0148916085079 3487.061993810654 -71.94605994890776 113.4318958802582 3652.041589208226 -68.27719054016984 113.9524734150484 3486.728785468158 -71.94605994890776 113.4318958802582 3652.041589208226 -68.27719054016984 113.9524734150484 3486.728785468158 -71.71072002111828 170.4739746554045 3652.22644032415 -68.04185061237331 170.994552190178 3486.913636584062 -71.71072002111828 170.4739746554045 3652.22644032415 -68.04185061237331 170.994552190178 3486.913636584062 -79.59055908060213 112.4578536946314 3651.86886372747 -75.92168967186467 112.9784312294148 3486.556059987546 -79.59055908060213 112.4578536946314 3651.86886372747 -75.92168967186467 112.9784312294148 3486.556059987546 -79.34691725906259 171.5121591316039 3652.060235684678 -75.6780478503249 172.03273666637 3486.74743194471 -79.34691725906259 171.5121591316039 3652.060235684678 -75.6780478503249 172.03273666637 3486.74743194471 -87.22675631855395 113.4960381708284 3651.702659088147 -83.55788690980876 114.0166157056176 3486.389855348125 -87.22675631855395 113.4960381708284 3651.702659088147 -83.55788690980876 114.0166157056176 3486.389855348125 -86.9914163907597 170.538116945966 3651.887510203942 -83.32254698202519 171.05869448074 3486.574706463907 -86.9914163907597 170.538116945966 3651.887510203942 -83.32254698202519 171.05869448074 3486.574706463907 -94.33425744039982 116.4756987524934 3651.554301861565 -90.66538803165759 116.9962762872801 3486.241498121563 -94.33425744039982 116.4756987524934 3651.554301861565 -90.66538803165759 116.9962762872801 3486.241498121563 -94.1232574335213 167.6182274637569 3651.720034838099 -90.45438802477838 168.1388049985282 3486.407231098037 -94.1232574335213 167.6182274637569 3651.720034838099 -90.45438802477838 168.1388049985282 3486.407231098037 -100.4286979903832 121.1937764951046 3651.433902347588 -96.75982858163638 121.7143540298908 3486.121098607595 -100.4286979903832 121.1937764951046 3651.433902347588 -96.75982858163638 121.7143540298908 3486.121098607595 -100.2564172061948 162.9514763278532 3651.569222756234 -96.58754779744618 163.4720538626216 3486.256419016159 -100.2564172061948 162.9514763278532 3651.569222756234 -96.58754779744618 163.4720538626216 3486.256419016159 -105.094751916577 127.3287421974985 3651.349665574244 -101.4258825078302 127.8493197322877 3486.036861834255 -101.4258825078302 127.8493197322877 3486.036861834255 -105.094751916577 127.3287421974985 3651.349665574244 -101.3040615970535 157.3764724507587 3486.132547812846 -104.9729310058076 156.8558949159866 3651.445351552784 -101.3040615970535 157.3764724507587 3486.132547812846 -104.9729310058076 156.8558949159866 3651.445351552784 -108.0144353549144 134.4625080855693 3651.307332138225 -104.3455659461629 134.9830856203459 3485.994528398305 -104.3455659461629 134.9830856203459 3485.994528398305 -108.0144353549144 134.4625080855693 3651.307332138225 -104.2825068025654 150.2674645627334 3486.044059105507 -107.9513762113209 149.746887027956 3651.356862845565 -104.2825068025654 150.2674645627334 3486.044059105507 -107.9513762113209 149.746887027956 3651.356862845565 -108.9887767040889 142.1089198031428 3651.309786993546 -105.3199072953305 142.6294973379132 3485.996983253435 -105.3199072953305 142.6294973379132 3485.996983253435 -108.9887767040889 142.1089198031428 3651.309786993546</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10544\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10541\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10545\">0.9646120083116804 -0.2628690234816099 0.02058032834363313 0.9997453049990303 -0.004196533475161319 0.0221746305310379 0.9646120083115046 -0.2628690234822551 0.0205803283436272 0.9997453049990267 -0.004196533475975925 0.02217463053103526 -0.9997453049990267 0.004196533475975925 -0.02217463053103526 -0.9646120083116804 0.2628690234816099 -0.02058032834363313 -0.9997453049990303 0.004196533475161319 -0.0221746305310379 -0.9646120083115046 0.2628690234822551 -0.0205803283436272 0.9667476113079242 0.2547619433530755 0.0222577682930484 0.9667476113081491 0.2547619433522219 0.02225776829305071 -0.9667476113081491 -0.2547619433522219 -0.02225776829305071 -0.9667476113079242 -0.2547619433530755 -0.0222577682930484 0.8637419973540899 -0.5036274239505404 0.01758351079022828 0.8637419973543608 -0.5036274239500757 0.01758351079023576 -0.8637419973540899 0.5036274239505404 -0.01758351079022828 -0.8637419973543608 0.5036274239500757 -0.01758351079023576 0.8678676655323346 0.4963588147551892 0.0208240759285802 0.8678676655321946 0.4963588147554339 0.02082407592857786 -0.8678676655321946 -0.4963588147554339 -0.02082407592857786 -0.8678676655323346 -0.4963588147551892 -0.0208240759285802 0.7040093966782259 -0.7100644477599287 0.01338840603462151 0.70400939667895 -0.7100644477592105 0.01338840603463984 -0.7040093966782259 0.7100644477599287 -0.01338840603462151 -0.70400939667895 0.7100644477592105 -0.01338840603463984 0.7098439725698292 0.7041296532037457 0.01797125720299751 0.7098439725699696 0.7041296532036042 0.01797125720300019 -0.7098439725699696 -0.7041296532036042 -0.01797125720300019 -0.7098439725698292 -0.7041296532037457 -0.01797125720299751 0.4962997190501727 -0.8681117528909486 0.008280903533096788 0.4962997190499233 -0.8681117528910911 0.008280903533090803 -0.4962997190501727 0.8681117528909486 -0.008280903533096788 -0.4962997190499233 0.8681117528910911 -0.008280903533090803 0.5034455859486869 0.8639152194161706 0.01389372699792422 0.5034455859496096 0.8639152194156329 0.01389372699794301 -0.5034455859486869 -0.8639152194161706 -0.01389372699792422 -0.5034455859496096 -0.8639152194156329 -0.01389372699794301 0.2547680357420256 -0.9669986766857197 0.002609071140589352 0.2547680357416368 -0.9669986766858223 0.002609071140580401 -0.2547680357420256 0.9669986766857197 -0.002609071140589352 -0.2547680357416368 0.9669986766858223 -0.002609071140580401 0.2627382146291464 0.9648263911122132 0.008869362258423628 0.262738214629382 0.964826391112149 0.008869362258428656 -0.2627382146291464 -0.9648263911122132 -0.008869362258423628 -0.262738214629382 -0.964826391112149 -0.008869362258428656 -0.004125668177906662 -0.9999862387051482 -0.003240565138419854 -0.004125668177845258 -0.9999862387051484 -0.003240565138418492 0.004125668177906662 0.9999862387051482 0.003240565138419854 0.004125668177845258 0.9999862387051484 0.003240565138418492 0.004125668178873814 0.9999862387051443 0.003240565138343836 0.004125668177571798 0.9999862387051498 0.003240565138314957 -0.004125668178873814 -0.9999862387051443 -0.003240565138343836 -0.004125668177571798 -0.9999862387051498 -0.003240565138314957 -0.2627382146295679 -0.9648263911120975 -0.008869362258538132 -0.2627382146295909 -0.9648263911120912 -0.00886936225853862 0.2627382146295679 0.9648263911120975 0.008869362258538132 0.2627382146295909 0.9648263911120912 0.00886936225853862 -0.2547680357418187 0.9669986766857741 -0.002609071140679527 -0.254768035742013 0.9669986766857228 -0.002609071140684002 0.2547680357418187 -0.9669986766857741 0.002609071140679527 0.254768035742013 -0.9669986766857228 0.002609071140684002 -0.5034455859489916 -0.8639152194159914 -0.01389372699804113 -0.5034455859494443 -0.8639152194157274 -0.01389372699805034 0.5034455859489916 0.8639152194159914 0.01389372699804113 0.5034455859494443 0.8639152194157274 0.01389372699805034 -0.4962997190496038 0.8681117528912731 -0.008280903533156138 -0.4962997190501929 0.8681117528909361 -0.008280903533170275 0.4962997190496038 -0.8681117528912731 0.008280903533156138 0.4962997190501929 -0.8681117528909361 0.008280903533170275 -0.7098439725697828 -0.7041296532037895 -0.01797125720311594 -0.7098439725696797 -0.7041296532038934 -0.01797125720311397 0.7098439725697828 0.7041296532037895 0.01797125720311594 0.7098439725696797 0.7041296532038934 0.01797125720311397 -0.704009396678056 0.710064447760096 -0.01338840603469319 -0.7040093966787783 0.7100644477593792 -0.01338840603471148 0.704009396678056 -0.710064447760096 0.01338840603469319 0.7040093966787783 -0.7100644477593792 0.01338840603471148 -0.8678676655323784 -0.4963588147551076 -0.02082407592871034 -0.8678676655322242 -0.4963588147553773 -0.02082407592870776 0.8678676655322242 0.4963588147553773 0.02082407592870776 0.8678676655323784 0.4963588147551076 0.02082407592871034 -0.8637419973542843 0.5036274239502023 -0.01758351079036114 -0.8637419973545369 0.5036274239497688 -0.01758351079036811 0.8637419973542843 -0.5036274239502023 0.01758351079036114 0.8637419973545369 -0.5036274239497688 0.01758351079036811 -0.9667476113082115 -0.2547619433519737 -0.02225776829318346 -0.966747611308145 -0.2547619433522261 -0.02225776829318278 0.966747611308145 0.2547619433522261 0.02225776829318278 0.9667476113082115 0.2547619433519737 0.02225776829318346 -0.9646120083117712 0.2628690234812648 -0.02058032834378531 -0.9646120083116455 0.2628690234817252 -0.02058032834378107 0.9646120083117712 -0.2628690234812648 0.02058032834378531 0.9646120083116455 -0.2628690234817252 0.02058032834378107 -0.9997453049990224 0.004196533476277474 -0.02217463053117311 -0.999745304999027 0.004196533475164261 -0.02217463053117672 0.999745304999027 -0.004196533475164261 0.02217463053117672 0.9997453049990224 -0.004196533476277474 0.02217463053117311</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10545\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10543\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID10546\">-2.276576644767097 254.6371696780384 -2.419321824364247 254.6371696827539 -2.276576543602887 257.699286913382 -2.41932172320009 257.6992869180986 5.271364775964431 254.637169398133 5.128619596367296 254.6371694036744 5.271364894873281 257.6992866334763 5.128619715275984 257.6992866390181 -9.66450920532524 254.6371698443543 -9.807254384866896 254.6371698479233 -9.664509128799766 257.6992870796991 -9.80725430834082 257.6992870832669 12.46493532259967 254.637169079545 12.32219014300258 254.637169085538 12.46493545114951 257.6992863148893 12.32219027155252 257.6992863208814 -16.38895751081697 254.6371698526247 -16.53170269046582 254.637169854797 -16.38895746414467 257.6992870879683 -16.53170264379406 257.6992870901436 18.81390505032941 254.6371688075951 18.67115987073231 254.6371688136297 18.81390517976004 257.6992860429406 18.67116000016275 257.6992860489741 -21.99166150837635 257.6992869361172 -21.99166152201368 254.6371697007705 -22.13440668802586 257.6992869367518 -22.13440670166241 254.6371697014076 23.74285710626958 257.6992858961681 23.88560228586677 257.6992858905041 23.74285698477883 254.6371686608226 23.88560216437606 254.6371686551612 -26.09080623972231 257.6992866649798 -26.09080621939511 254.6371694296356 -26.23355141926347 257.6992866640323 -26.23355139893693 254.6371694286867 27.19165381345473 257.6992859033637 27.33439899305191 257.6992858984589 27.19165370818328 254.6371686680208 27.3343988877803 254.6371686631129 -28.40704171876907 257.6992863473755 -28.40704166586404 254.6371691120299 -28.54978689836615 257.6992863449079 -28.54978684546108 254.6371691095649 28.78252032554628 257.6992860685608 28.9252655051434 257.6992860647421 28.78252024366798 254.6371688332147 28.92526542326516 254.6371688293983 -28.78252032554679 257.6992860685566 -28.78252024366858 254.6371688332136 -28.92526550514398 257.6992860647408 -28.92526542326569 254.6371688293959 28.40704171877016 257.6992863473791 28.5497868983673 257.699286344912 28.40704166586514 254.6371691120354 28.54978684546235 254.6371691095669 -27.19165381345496 257.6992859033625 -27.19165370818343 254.6371686680177 -27.33439899305214 257.6992858984548 -27.33439888778064 254.6371686631103 26.09080623966332 257.6992866649835 26.23355141926056 257.6992866640374 26.09080621933693 254.6371694296384 26.23355139893407 254.6371694286918 -23.74285710626615 257.6992858961662 -23.74285698477547 254.6371686608218 -23.88560228586324 257.6992858905019 -23.88560216437249 254.6371686551576 21.99166150838311 257.6992869361195 22.13440668798028 257.699286936753 21.99166152202042 254.637169700774 22.13440670161754 254.6371697014072 -18.81390505033344 254.6371688075968 -18.81390517976391 257.699286042941 -18.67115987073617 254.6371688136294 -18.67116000016668 257.6992860489736 16.38895751085896 254.6371698526251 16.38895746418723 257.6992870879708 16.53170269045602 254.6371698548027 16.53170264378445 257.6992870901459 -12.46493532259675 254.6371690795457 -12.46493545114676 257.6992863148886 -12.32219014299974 254.6371690855381 -12.3221902715495 257.6992863208823 9.664509205330798 254.6371698443596 9.664509128805324 257.6992870797029 9.807254384927889 254.637169847926 9.807254308402492 257.6992870832715 -5.271364775959487 254.6371693981334 -5.27136489486845 257.6992866334798 -5.128619596362404 254.6371694036774 -5.128619715271237 257.6992866390203 2.276576644761268 254.6371696780423 2.27657654359707 257.6992869133878 2.419321824358473 254.6371696827567 2.419321723194149 257.6992869181032</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10546\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10542\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10540\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10541\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10542\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 8 1 8 3 9 12 2 13 2 12 0 9 16 8 16 9 17 20 13 21 13 20 12 17 24 16 24 17 25 20 28 29 28 20 21 32 25 33 25 32 24 29 36 37 36 29 28 40 33 41 33 40 32 37 44 45 44 37 36 48 41 49 41 48 40 45 52 53 52 45 44 56 49 57 49 56 48 53 60 61 60 53 52 64 57 65 57 64 56 61 68 69 68 61 60 72 65 73 65 72 64 76 69 68 69 76 77 72 80 81 80 72 73 84 77 76 77 84 85 81 88 89 88 81 80 92 85 84 85 92 93 89 93 92 93 89 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10542\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10543\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 10 4 4 5 11 6 6 7 11 6 4 5 5 8 14 9 7 10 15 11 7 10 14 9 18 12 10 13 19 14 11 15 19 14 10 13 14 16 22 17 15 18 23 19 15 18 22 17 26 20 18 21 27 22 19 23 27 22 18 21 23 24 22 25 30 26 31 27 30 26 22 25 27 28 34 29 26 30 35 31 26 30 34 29 30 32 31 33 38 34 39 35 38 34 31 33 34 36 42 37 35 38 43 39 35 38 42 37 38 40 39 41 46 42 47 43 46 42 39 41 42 44 50 45 43 46 51 47 43 46 50 45 46 48 47 49 54 50 55 51 54 50 47 49 50 52 58 53 51 54 59 55 51 54 58 53 54 56 55 57 62 58 63 59 62 58 55 57 58 60 66 61 59 62 67 63 59 62 66 61 62 64 63 65 70 66 71 67 70 66 63 65 66 68 74 69 67 70 75 71 67 70 74 69 78 72 79 73 71 74 70 75 71 74 79 73 75 76 74 77 82 78 83 79 82 78 74 77 86 80 87 81 78 82 79 83 78 82 87 81 82 84 83 85 90 86 91 87 90 86 83 85 94 88 95 89 86 90 87 91 86 90 95 89 90 92 91 93 94 94 95 95 94 94 91 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10547\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10548\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID10552\">-280.6494803864096 395.9117139767346 7802.112522660346 -255.4020901984472 360.876030905515 8129.769757378904 -254.6649763222229 355.5635684775285 7802.826719074338 -281.3865942626312 401.2241764047318 8129.055560964977 -281.3865942626312 401.2241764047318 8129.055560964977 -280.6494803864096 395.9117139767346 7802.112522660346 -255.4020901984472 360.876030905515 8129.769757378904 -254.6649763222229 355.5635684775285 7802.826719074338 -316.9301646222341 433.4726956978972 8128.451422987154 -316.1930507460006 428.1602332698941 7801.508384682519 -316.9301646222341 433.4726956978972 8128.451422987154 -316.1930507460006 428.1602332698941 7801.508384682519 -240.7474534402147 315.1779186375628 8130.54534092369 -240.0103395639953 309.8654562095709 7803.602302619024 -240.7474534402147 315.1779186375628 8130.54534092369 -240.0103395639953 309.8654562095709 7803.602302619024 -359.6107453028405 455.4231033288066 8127.976561517168 -358.8734518195328 450.1114430603683 7801.055476145602 -359.6105656957587 455.4239054883782 8127.998514450169 -359.6105656957587 455.4239054883782 8127.998514450169 -359.6107453028405 455.4231033288066 8127.976561517168 -358.8734518195328 450.1114430603683 7801.055476145602 -238.4213732650735 267.2440904322215 8131.329456862174 -237.6842593888584 261.931628004233 7804.386418557541 -238.4213732650735 267.2440904322215 8131.329456862174 -237.6842593888584 261.931628004233 7804.386418557541 -406.51919868275 465.5818671050398 8127.727700322595 -405.7820848065175 460.2694046770317 7800.784662017971 -406.51919868275 465.5818671050398 8127.727700322595 -405.7820848065175 460.2694046770317 7800.784662017971 -248.5823681929478 220.3411574672956 8132.068668989276 -247.8452543167325 215.0286950393096 7805.125630684691 -248.5823681929478 220.3411574672956 8132.068668989276 -247.8452543167325 215.0286950393096 7805.125630684691 -454.4593177653237 463.2543322505354 8127.657436139297 -453.7222038890852 457.9418698225319 7800.714397834699 -454.4593177653237 463.2543322505354 8127.657436139297 -453.7222038890852 457.9418698225319 7800.714397834699 -270.5379832113263 177.6654771135849 8132.712601220085 -269.8008693351053 172.3530146855991 7805.769562915423 -270.5379832113263 177.6654771135849 8132.712601220085 -269.8008693351053 172.3530146855991 7805.769562915423 -499.4267691765406 443.2874561507737 7800.849471984028 -500.163883052782 448.5999185787767 8127.792510288592 -500.163883052782 448.5999185787767 8127.792510288592 -499.4267691765406 443.2874561507737 7800.849471984028 -302.7919794400832 142.1253264622877 8133.217370637039 -302.0548655638517 136.8128640343128 7806.274332332378 -302.7919794400832 142.1253264622877 8133.217370637039 -302.0548655638517 136.8128640343128 7806.274332332378 -539.7810900749297 417.3048377359118 7801.180679385688 -540.5182039511765 422.6173001639151 8128.123717690344 -540.5182039511765 422.6173001639151 8128.123717690344 -539.7810900749297 417.3048377359118 7801.180679385688 -342.409186462238 110.8302456194552 7806.605539734085 -343.1463003384652 116.1427080474297 8133.548578038665 -343.1463003384652 116.1427080474297 8133.548578038665 -342.409186462238 110.8302456194552 7806.605539734085 -572.7722001799309 387.0771495126206 8128.628487107252 -572.0350863036899 381.7646870846191 7801.685448802681 -572.7722001799309 387.0771495126206 8128.628487107252 -572.0350863036899 381.7646870846191 7801.685448802681 -388.1137517497091 96.1758319476877 7806.740613883349 -388.8508656259442 101.4882943756555 8133.683652187862 -388.8508656259442 101.4882943756555 8133.683652187862 -388.1137517497091 96.1758319476877 7806.740613883349 -594.7278151983149 344.4014691589033 8129.27241933799 -593.9907013220637 339.0890067309059 7802.329381033408 -594.7278151983149 344.4014691589033 8129.27241933799 -593.9907013220637 339.0890067309059 7802.329381033408 -436.7909847085128 99.16075952116159 8133.61338800477 -436.0538708322735 93.84829709318785 7806.670349700097 -436.7909847085128 99.16075952116159 8133.61338800477 -436.0538708322735 93.84829709318785 7806.670349700097 -604.8888101257954 297.4985361957769 8130.011631464987 -604.1516962495571 292.1860737677188 7803.068593160429 -604.8888101257954 297.4985361957769 8130.011631464987 -604.1516962495571 292.1860737677188 7803.068593160429 -483.6996176954956 109.3187211378287 8133.342573877018 -482.9625038192518 104.0062587098561 7806.399535572443 -483.6996176954956 109.3187211378287 8133.342573877018 -482.9625038192518 104.0062587098561 7806.399535572443 -602.5627299505775 249.5647079887232 8130.795747403689 -601.8256160743412 244.252245560729 7803.852709099089 -602.5627299505775 249.5647079887232 8130.795747403689 -601.8256160743412 244.252245560729 7803.852709099089 -526.3801983761018 131.2691287687352 8132.867712407096 -525.6429048927755 125.9574685003353 7805.946627035527 -526.3800187690258 131.2699309283067 8132.889665340098 -526.3800187690258 131.2699309283067 8132.889665340098 -526.3801983761018 131.2691287687352 8132.867712407096 -525.6429048927755 125.9574685003353 7805.946627035527 -587.9080931918079 203.8665957191369 8131.571330948319 -587.1709793156019 198.5541332912127 7804.628292643737 -587.9080931918079 203.8665957191369 8131.571330948319 -587.1709793156019 198.5541332912127 7804.628292643737 -561.9235891286239 163.5184502214669 8132.285527362264 -561.1864752523684 158.2059877934947 7805.342489057691 -561.9235891286239 163.5184502214669 8132.285527362264 -561.1864752523684 158.2059877934947 7805.342489057691</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID10552\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10549\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID10553\">0.7629164714624325 0.6464373918562977 -0.008783847752500431 0.9042454471127474 0.4269849736276833 -0.004899354246671341 0.904245447112688 0.4269849736278093 -0.004899354246673523 0.7629164714624641 0.6464373918562605 -0.008783847752499754 -0.7629164714624641 -0.6464373918562605 0.008783847752499754 -0.7629164714624325 -0.6464373918562977 0.008783847752500431 -0.9042454471127474 -0.4269849736276833 0.004899354246671341 -0.904245447112688 -0.4269849736278093 0.004899354246673523 0.569594747850544 0.8218370577862937 -0.0120695347981378 0.5695947478504179 0.8218370577863812 -0.0120695347981395 -0.569594747850544 -0.8218370577862937 0.0120695347981378 -0.5695947478504179 -0.8218370577863812 0.0120695347981395 0.9839516084955902 0.1784342131132697 -0.000680976937259945 0.9839516084956019 0.1784342131132042 -0.0006809769372588543 -0.9839516084955902 -0.1784342131132697 0.000680976937259945 -0.9839516084956019 -0.1784342131132042 0.0006809769372588543 0.3373420685054566 0.9412699417324725 -0.01453360269884386 0.3374584016490055 0.9412282554518764 -0.01453266305657023 0.3376916466752455 0.9411446266369794 -0.01453077830336958 -0.3376916466752455 -0.9411446266369794 0.01453077830336958 -0.3373420685054566 -0.9412699417324725 0.01453360269884386 -0.3374584016490055 -0.9412282554518764 0.01453266305657023 0.9966030938164281 -0.08227654414835706 0.00358380782505531 0.9966030938164217 -0.08227654414843824 0.003583807825056615 -0.9966030938164281 0.08227654414835706 -0.00358380782505531 -0.9966030938164217 0.08227654414843824 -0.003583807825056615 0.08232510588311225 0.9964769894202918 -0.01600582697663722 0.08232510588322294 0.9964769894202825 -0.01600582697663682 -0.08232510588311225 -0.9964769894202918 0.01600582697663722 -0.08232510588322294 -0.9964769894202825 0.01600582697663682 0.9413377252581193 -0.3373802908949212 0.007604362006628157 0.9413377252581673 -0.3373802908947876 0.007604362006626095 -0.9413377252581193 0.3373802908949212 -0.007604362006628157 -0.9413377252581673 0.3373802908947876 -0.007604362006626095 -0.1784213015826358 0.9838176994299471 -0.01638821008909179 -0.1784213015826856 0.983817699429938 -0.01638821008909176 0.1784213015826358 -0.9838176994299471 0.01638821008909179 0.1784213015826856 -0.983817699429938 0.01638821008909176 0.8219217463576867 -0.5694921283640401 0.0111066914842512 0.821921746357686 -0.5694921283640411 0.01110669148425121 -0.8219217463576867 0.5694921283640401 -0.0111066914842512 -0.821921746357686 0.5694921283640411 -0.01110669148425121 -0.4270071307206921 0.9041127566887031 -0.01565354612973502 -0.4270071307208419 0.9041127566886325 -0.01565354612973421 0.4270071307208419 -0.9041127566886325 0.01565354612973421 0.4270071307206921 -0.9041127566887031 0.01565354612973502 0.646493158732923 -0.7627940184154273 0.01385211829188983 0.6464931587328724 -0.7627940184154702 0.01385211829189042 -0.646493158732923 0.7627940184154273 -0.01385211829188983 -0.6464931587328724 0.7627940184154702 -0.01385211829189042 -0.6464931587327986 0.762794018415531 -0.01385211829198684 -0.6464931587327925 0.7627940184155361 -0.01385211829198691 0.6464931587327925 -0.7627940184155361 0.01385211829198691 0.6464931587327986 -0.762794018415531 0.01385211829198684 0.4270071307208647 -0.9041127566886232 0.01565354612963361 0.4270071307209065 -0.9041127566886037 0.01565354612963339 -0.4270071307209065 0.9041127566886037 -0.01565354612963339 -0.4270071307208647 0.9041127566886232 -0.01565354612963361 -0.8219217463576163 0.5694921283641397 -0.01110669148435095 -0.8219217463576592 0.5694921283640775 -0.01110669148435003 0.8219217463576163 -0.5694921283641397 0.01110669148435095 0.8219217463576592 -0.5694921283640775 0.01110669148435003 0.1784212724127754 -0.9838177047104452 0.01638821066734686 0.1784212724127708 -0.9838177047104461 0.01638821066734686 -0.1784212724127708 0.9838177047104461 -0.01638821066734686 -0.1784212724127754 0.9838177047104452 -0.01638821066734686 -0.941337725258116 0.3373802908949277 -0.007604362006737366 -0.9413377252581433 0.337380290894852 -0.007604362006736198 0.941337725258116 -0.3373802908949277 0.007604362006737366 0.9413377252581433 -0.337380290894852 0.007604362006736198 -0.08232370075513289 -0.9964771019918322 0.01600604573087988 -0.08232370075510112 -0.9964771019918349 0.01600604573088 0.08232370075513289 0.9964771019918322 -0.01600604573087988 0.08232370075510112 0.9964771019918349 -0.01600604573088 -0.996603093816419 0.08227654414846472 -0.003583807825143092 -0.9966030938164194 0.08227654414846013 -0.003583807825143019 0.996603093816419 -0.08227654414846472 0.003583807825143092 0.9966030938164194 -0.08227654414846013 0.003583807825143019 -0.3374570790240588 -0.9412287262049212 0.01453288626569202 -0.3374570790241694 -0.9412287262048815 0.01453288626569113 0.3374570790240588 0.9412287262049212 -0.01453288626569202 0.3374570790241694 0.9412287262048815 -0.01453288626569113 -0.9839516084955885 -0.1784342131132791 0.0006809769372170902 -0.9839516084955851 -0.1784342131132979 0.0006809769372174027 0.9839516084955885 0.1784342131132791 -0.0006809769372170902 0.9839516084955851 0.1784342131132979 -0.0006809769372174027 -0.5694941900294444 -0.8219067259741691 0.0120706802264436 -0.5695959629593753 -0.8218362189964162 0.01206930511904559 -0.569798855718192 -0.8216956018403944 0.01206656282423965 0.569798855718192 0.8216956018403944 -0.01206656282423965 0.5694941900294444 0.8219067259741691 -0.0120706802264436 0.5695959629593753 0.8218362189964162 -0.01206930511904559 -0.9042454334106014 -0.4269850026470762 0.004899354095191696 -0.9042454334105947 -0.4269850026470904 0.004899354095191941 0.9042454334106014 0.4269850026470762 -0.004899354095191696 0.9042454334105947 0.4269850026470904 -0.004899354095191941 -0.7629173625958492 -0.6464363433091901 0.008783615362508879 -0.762917362595844 -0.6464363433091963 0.008783615362508988 0.7629173625958492 0.6464363433091901 -0.008783615362508879 0.762917362595844 0.6464363433091963 -0.008783615362508988</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID10553\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10551\">\r\n\t\t\t\t\t<float_array count=\"400\" id=\"ID10554\">-4.537667349621497 67.17148187214552 -5.281512173225709 70.3295490087049 -5.28151209598722 67.17148186508079 -4.537667426859883 70.32954901577026 10.18029779399343 158.5925133501663 10.18029794532201 152.5371980335539 9.291471142390403 158.5925133279536 9.291471293719107 152.5371980113423 -3.793821126945981 70.32954900585679 -4.537665796073566 67.17148185516673 -3.793821049707816 67.17148186223206 -4.537665873311926 70.32954899879142 1.903541242448118 158.5925131260831 2.792367894051286 158.5925131554477 1.903541442499709 152.5371978094707 2.792368094102643 152.5371978388352 -5.281512095986913 67.17148186508044 -6.025356919591207 70.32954900164013 -6.025356842352749 67.17148185801509 -5.281512173225402 70.32954900870452 16.90474511308506 158.5925133534052 16.90474520537799 152.5371980367939 16.01591846148207 158.5925133398598 16.01591855377495 152.5371980232468 -3.050058267693679 70.32932968444747 -3.793902936846324 67.17147465039362 -3.050058190483775 67.1714746574584 -3.793903014084766 70.32954179401811 -3.050058267722263 70.32954180108224 -4.755670807046318 158.5924990504556 -4.755670807002568 158.5920923355098 -5.644497458645361 158.5924990159428 -5.644497223503858 152.5371836993309 -4.755670571904762 152.537183733845 -6.025356842352673 67.17148185801641 -6.769201665957004 70.32954899457515 -6.769201588718482 67.17148185095037 -6.025356919591147 70.32954900164151 22.50744802285787 158.5925131959905 22.50744804982534 152.5371978793774 21.61862137125482 158.5925131920301 21.61862139822235 152.5371978754176 -29.42879815591341 70.32954210108832 -30.17264268953493 67.17147493800215 -29.42879794317217 67.17147495746369 -30.17264089324016 70.3293299649914 -30.17264290227626 70.32954208162623 -12.83788665060674 158.5925000713426 -11.94905999900734 158.5925001086595 -12.83788424999177 158.5920933563966 -12.83788639640023 152.5371847547319 -11.94905974480094 152.5371847920477 -6.769201588719402 67.17148185094972 -7.513046412323816 70.32954898750928 -7.513046335085255 67.17148184388496 -6.769201665957935 70.32954899457448 26.60659157891622 158.5925129191323 26.60659153872053 152.5371976025199 25.71776492731314 158.5925129250327 25.71776488711748 152.5371976084211 -28.68502586689356 70.329548617483 -29.4288704005182 67.17148145439863 -28.68502565415232 67.17148147385832 -29.42887061325954 70.32954859802355 -19.1869429621057 158.5925122565918 -18.29811631050257 158.5925122941592 -19.18694270615758 152.5371969399795 -18.29811605455456 152.5371969775474 -7.513046335084574 67.17148184388546 -8.256891158688962 70.32954898044517 -8.256891081450352 67.17148183682014 -7.513046412323124 70.32954898750975 28.92282592206782 158.5925125960411 28.9228258174482 152.5371972794296 28.03399927046478 158.5925126113991 28.03399916584523 152.5371972947861 -27.94117964557315 67.1714815080055 -28.6850246046801 70.32954863216909 -28.68502439193886 67.17148148854443 -27.94117985831435 70.32954865162984 -23.3698122154104 158.5925121685431 -23.36981197516329 152.5371968519319 -24.25863886701328 158.5925121332779 -24.25863862676611 152.537196816666 -8.256891081450469 67.17148183681994 -9.00073590505502 70.32954897337922 -9.000735827816166 67.17148182975419 -8.25689115868909 70.329548980445 29.29830350958601 158.5925123123407 29.29830334767217 152.5371969957277 28.40947685798286 158.5925123361063 28.40947669606931 152.5371970194934 -27.19733489920807 67.17148152746619 -27.94117985831516 70.32954865163021 -27.94117964557397 67.17148150800585 -27.19733511194918 70.3295486710914 -26.81860951278356 158.5925121737641 -26.81860930460983 152.5371968571511 -27.70743616438671 158.5925121432058 -27.70743595621289 152.5371968265946 -9.000735905054409 70.32954897337989 -9.744580574181342 67.17148182268986 -9.000735827815554 67.17148182975483 -9.744580651420137 70.32954896631414 26.81860951278441 158.5925121737616 27.70743616438731 158.5925121432056 26.81860930461065 152.5371968571501 27.70743595621362 152.5371968265926 -26.45349036558317 70.32954869055075 -27.19733489920797 67.17148152746606 -26.453490152842 67.1714815469264 -27.19733511194908 70.32954867109122 -29.29830350958594 158.5925123123417 -28.40947685798286 158.5925123361064 -29.29830334767218 152.5371969957287 -28.40947669606904 152.5371970194951 -9.744580651420552 70.32954896631364 -10.48842532054771 67.17148181562405 -9.744580574181761 67.17148182268937 -10.48842539778664 70.32954895924767 23.36981221541186 158.59251216854 24.25863886701518 158.5925121332765 23.36981197516483 152.5371968519297 24.25863862676797 152.5371968166651 -25.70964561921846 70.32954871000867 -26.45349015284324 67.17148154692413 -25.70964540647744 67.17148156638449 -26.45349036558439 70.32954869054821 -28.92282592206798 158.5925125960397 -28.0339992704648 158.5925126113964 -28.92282581744832 152.5371972794284 -28.0339991658453 152.5371972947849 -7.941084960558276 67.17148143016034 -8.684929494182695 70.32954859324536 -8.684929706924057 67.17148144962026 -7.941084747816855 70.32954857378391 19.18694145387577 158.5925122847452 19.18694119792772 152.537196968135 18.29811480227274 158.5925123223164 18.29811454632476 152.5371970057033 -24.96580087288172 70.32954872946817 -25.70964540647799 67.17148156638423 -24.96580066013972 67.17148158584421 -25.70964561921902 70.3295487100084 -26.60659157891662 158.5925129191311 -25.71776492734767 158.59251292503 -26.60659153872089 152.5371976025196 -25.71776488715079 152.537197608419 -8.684929706925219 67.17148144962079 -9.428774240549638 70.32954861270569 -9.428774453290929 67.17148146908153 -8.684929494183857 70.32954859324589 12.83797172230076 158.5925125568025 12.83797146809422 152.5371972401892 11.94914507069779 158.592512594115 11.94914481649134 152.5371972775035 -12.4041532260103 70.32954869054908 -13.1479981851428 67.17148156638454 -12.40415343875133 67.17148154692464 -13.14799797240277 70.3295487100086 -22.50744802289127 158.5925131959863 -21.61862137125642 158.5925131920295 -22.50744804985747 152.5371978793752 -21.61862139822382 152.5371978754176 -9.42871329316063 67.17147575626332 -10.17255782681866 70.32933080271228 -10.17255803952332 67.1714757757232 -9.428713080419076 70.3295428998872 -10.17255782678185 70.32954291934705 4.755647896510023 158.5925019572509 5.644474548109398 158.5925019227369 4.755647896467318 158.5920952423051 5.64447431296783 152.5371866061261 4.755647661368553 152.5371866406402 -11.66030847961753 70.32954867108691 -12.40415343875096 67.1714815469237 -11.66030869235972 67.17148152746269 -12.40415322600995 70.32954869054812 -16.90474511308302 158.5925133534047 -16.01591846144822 158.592513339856 -16.90474520537576 152.5371980367929 -16.01591855374236 152.5371980232445 -10.17268060966619 67.17147587187107 -10.9165251432881 70.32954303495575 -10.91652535602887 67.1714758913319 -10.17267838787458 70.32933089885994 -10.17268039692535 70.32954301549491 -1.903612765463199 158.592502389163 -1.903610364827068 158.5920956742167 -2.792439417062551 158.5925024185283 -1.903612965514247 152.5371870725522 -2.792439617113518 152.5371871019175 -10.91646245045001 70.32954863547646 -11.66030740952952 67.17148151131222 -10.91646266319119 67.17148149185233 -11.66030719678729 70.32954865493645 -10.18029626109448 158.5925133191963 -9.291469609525558 158.5925132969843 -10.18029641242436 152.5371980025848 -9.291469760854186 152.537197980373</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"200\" source=\"#ID10554\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10550\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10548\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10549\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"52\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10550\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10551\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 8 0 9 9 10 0 9 8 8 3 11 2 16 12 17 13 18 12 17 2 16 1 19 16 24 9 25 17 26 9 25 16 24 8 27 8 27 16 24 18 28 13 34 22 35 23 36 22 35 13 34 12 37 26 42 17 43 27 44 17 43 26 42 16 45 16 45 26 42 18 46 23 52 30 53 31 54 30 53 23 52 22 55 34 60 27 61 35 62 27 61 34 60 26 63 31 68 38 69 39 70 38 69 31 68 30 71 42 76 34 77 35 78 34 77 42 76 43 79 39 84 46 85 47 86 46 85 39 84 38 87 50 92 43 93 42 94 43 93 50 92 51 95 46 100 54 101 47 102 54 101 46 100 55 103 58 108 50 109 59 110 50 109 58 108 51 111 55 116 62 117 54 118 62 117 55 116 63 119 66 124 59 125 67 126 59 125 66 124 58 127 62 132 70 133 71 134 70 133 62 132 63 135 74 140 67 141 75 142 67 141 74 140 66 143 71 148 78 149 79 150 78 149 71 148 70 151 82 156 75 157 83 158 75 157 82 156 74 159 79 164 86 165 87 166 86 165 79 164 78 167 86 165 78 167 88 168 92 174 83 175 93 176 83 175 92 174 82 177 87 182 96 183 97 184 96 183 87 182 86 185 96 183 86 185 88 186 96 192 93 193 97 194 93 193 96 192 92 195</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"52\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10550\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10551\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 4 12 10 13 5 14 11 15 5 14 10 13 6 20 7 21 14 22 15 23 14 22 7 21 19 29 20 30 10 31 10 31 20 30 11 32 21 33 11 32 20 30 14 38 15 39 24 40 25 41 24 40 15 39 19 47 28 48 20 49 20 49 28 48 21 50 29 51 21 50 28 48 24 56 25 57 32 58 33 59 32 58 25 57 28 64 36 65 29 66 37 67 29 66 36 65 32 72 33 73 40 74 41 75 40 74 33 73 44 80 45 81 36 82 37 83 36 82 45 81 40 88 41 89 48 90 49 91 48 90 41 89 52 96 53 97 44 98 45 99 44 98 53 97 56 104 48 105 57 106 49 107 57 106 48 105 52 112 60 113 53 114 61 115 53 114 60 113 64 120 56 121 65 122 57 123 65 122 56 121 60 128 68 129 61 130 69 131 61 130 68 129 64 136 65 137 72 138 73 139 72 138 65 137 68 144 76 145 69 146 77 147 69 146 76 145 72 152 73 153 80 154 81 155 80 154 73 153 76 160 84 161 77 162 85 163 77 162 84 161 89 169 80 170 90 171 80 170 81 172 90 171 91 173 90 171 81 172 84 178 94 179 85 180 95 181 85 180 94 179 89 187 90 188 98 189 90 188 91 190 98 189 99 191 98 189 91 190 94 196 98 197 95 198 99 199 95 198 98 197</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10555\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10556\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10560\">-668.6064128978211 230.395434413807 7699.054117596337 -648.6694088286487 168.8238674549042 7765.068906737154 -648.5229706590768 167.7684711328767 7700.117015816047 -668.752851067398 231.450830735853 7764.006008517365 -668.752851067398 231.450830735853 7764.006008517365 -668.6064128978211 230.395434413807 7699.054117596337 -648.6694088286487 168.8238674549042 7765.068906737154 -648.5229706590768 167.7684711328767 7700.117015816047 -671.7941887267712 296.0863338830801 7697.979526160068 -671.9406268963496 297.1417302051381 7762.931417081127 -671.9406268963496 297.1417302051381 7762.931417081127 -671.7941887267712 296.0863338830801 7697.979526160068 -613.0589535810573 113.5287644168353 7766.047676983112 -612.9125154114843 112.4733680947862 7701.095786062075 -613.0589535810573 113.5287644168353 7766.047676983112 -612.9125154114843 112.4733680947862 7701.095786062075 -612.9125154114843 112.4733680947862 7701.095786062075 -601.5892364136635 242.5486308187641 7699.007736096252 -603.9153165888849 290.4824590257252 7698.223620157612 -564.2018408287764 68.27839518770441 7701.923726759743 -586.9345996549357 196.8505185492612 7699.783319640972 -560.9500955916974 156.5023730515198 7700.497516054877 -505.7104988865268 38.19536678107454 7702.544415118668 -525.4065252321052 124.2538537583615 7701.101654032704 -482.7261241585702 102.3026439678935 7701.554562569595 -441.424577876567 24.27439154625893 7702.915552252997 -435.8174911715933 92.1446823512216 7701.825376697336 -375.7250570782334 27.46416094000495 7703.011845780298 -387.8773720890337 94.47221720572509 7701.895640880532 -342.1728068015723 109.1266308774838 7701.760566731233 -313.0892502603609 47.54729744946565 7702.826733455803 -301.8184859031834 135.10924929234 7701.429359329584 -257.7856841469688 83.1551685104929 7702.372830378595 -269.5644896744261 170.6493999436353 7700.924589912564 -247.6088746560533 213.3250802973411 7700.280657681876 -213.5832053752602 131.8611565550549 7701.681069293194 -237.4478797281838 260.228013262261 7699.54144555481 -228.4506809059631 438.2371041914922 7696.669279650347 -192.8402256574179 382.9420011519261 7697.648049896431 -183.4941398254771 190.34602898836 7700.798592574404 -172.7567834191711 320.3150378725567 7698.71094811611 -169.5690075902896 254.6241384049048 7699.785539552322 -668.6064128978211 230.395434413807 7699.054117596337 -657.8690564919642 360.3644432979251 7696.966473137966 -671.7941887267712 296.0863338830801 7697.979526160068 -648.5229706590768 167.7684711328767 7700.117015816047 -627.7799909421763 418.8493157312263 7696.083996419226 -583.5775121704712 467.5553037757796 7695.392235333834 -593.7543216613833 337.385391988931 7697.48440803056 -571.7987066430112 380.0610723426424 7696.840475799826 -528.2739460570969 503.1631748368051 7694.938332256609 -539.5447104142528 415.6012229939319 7696.33570638283 -499.1903895158756 441.5838414087863 7696.004498981192 -465.638139239201 523.2463113462746 7694.75321993212 -453.4858242283993 456.238255080557 7695.869424831936 -399.9386184408709 526.4360807400204 7694.849513459422 -405.5457051458456 458.5657899350584 7695.939689015095 -358.6370721588564 448.4078283183891 7696.210503142842 -335.652697430924 512.5151055052012 7695.22065059373 -315.9566710853444 426.4566185279097 7696.663411679729 -277.1613554886737 482.4320770985647 7695.841338952679 -280.4131007257515 394.2080992347547 7697.267549657582 -254.4285966615528 353.85995373555 7697.981746071498 -239.7739599033198 308.1618414675955 7698.757329616204 -237.4478797281838 260.228013262261 7699.54144555481 -239.7739599033198 308.1618414675955 7698.757329616204 -228.4506809059631 438.2371041914922 7696.669279650347 -254.4285966615528 353.85995373555 7697.981746071498 -277.1613554886737 482.4320770985647 7695.841338952679 -280.4131007257515 394.2080992347547 7697.267549657582 -315.9566710853444 426.4566185279097 7696.663411679729 -335.652697430924 512.5151055052012 7695.22065059373 -358.6370721588564 448.4078283183891 7696.210503142842 -399.9386184408709 526.4360807400204 7694.849513459422 -405.5457051458456 458.5657899350584 7695.939689015095 -453.4858242283993 456.238255080557 7695.869424831936 -465.638139239201 523.2463113462746 7694.75321993212 -499.1903895158756 441.5838414087863 7696.004498981192 -528.2739460570969 503.1631748368051 7694.938332256609 -539.5447104142528 415.6012229939319 7696.33570638283 -571.7987066430112 380.0610723426424 7696.840475799826 -583.5775121704712 467.5553037757796 7695.392235333834 -593.7543216613833 337.385391988931 7697.48440803056 -603.9153165888849 290.4824590257252 7698.223620157612 -627.7799909421763 418.8493157312263 7696.083996419226 -612.9125154114843 112.4733680947862 7701.095786062075 -648.5229706590768 167.7684711328767 7700.117015816047 -657.8690564919642 360.3644432979251 7696.966473137966 -668.6064128978211 230.395434413807 7699.054117596337 -671.7941887267712 296.0863338830801 7697.979526160068 -169.5690075902896 254.6241384049048 7699.785539552322 -183.4941398254771 190.34602898836 7700.798592574404 -172.7567834191711 320.3150378725567 7698.71094811611 -192.8402256574179 382.9420011519261 7697.648049896431 -213.5832053752602 131.8611565550549 7701.681069293194 -247.6088746560533 213.3250802973411 7700.280657681876 -257.7856841469688 83.1551685104929 7702.372830378595 -269.5644896744261 170.6493999436353 7700.924589912564 -301.8184859031834 135.10924929234 7701.429359329584 -313.0892502603609 47.54729744946565 7702.826733455803 -342.1728068015723 109.1266308774838 7701.760566731233 -375.7250570782334 27.46416094000495 7703.011845780298 -387.8773720890337 94.47221720572509 7701.895640880532 -435.8174911715933 92.1446823512216 7701.825376697336 -441.424577876567 24.27439154625893 7702.915552252997 -482.7261241585702 102.3026439678935 7701.554562569595 -505.7104988865268 38.19536678107454 7702.544415118668 -525.4065252321052 124.2538537583615 7701.101654032704 -560.9500955916974 156.5023730515198 7700.497516054877 -564.2018408287764 68.27839518770441 7701.923726759743 -586.9345996549357 196.8505185492612 7699.783319640972 -601.5892364136635 242.5486308187641 7699.007736096252 -657.8690564919642 360.3644432979251 7696.966473137966 -658.0154946615388 361.4198396199587 7761.91836405907 -658.0154946615388 361.4198396199587 7761.91836405907 -657.8690564919642 360.3644432979251 7696.966473137966 -564.2018408287764 68.27839518770441 7701.923726759743 -564.3482789983499 69.33379150975031 7766.875617680686 -564.3482789983499 69.33379150975031 7766.875617680686 -564.2018408287764 68.27839518770441 7701.923726759743 -583.5775121704712 467.5553037757796 7695.392235333834 -627.9264291117544 419.9047120532702 7761.035887340286 -627.7799909421763 418.8493157312263 7696.083996419226 -583.7239503400344 468.6107000978276 7760.34412625481 -583.7239503400344 468.6107000978276 7760.34412625481 -583.5775121704712 467.5553037757796 7695.392235333834 -627.9264291117544 419.9047120532702 7761.035887340286 -627.7799909421763 418.8493157312263 7696.083996419226 -505.7104988865268 38.19536678107454 7702.544415118668 -505.8569370560965 39.25076310312613 7767.496306039731 -505.8569370560965 39.25076310312613 7767.496306039731 -505.7104988865268 38.19536678107454 7702.544415118668 -441.424577876567 24.27439154625893 7702.915552252997 -441.5710160461505 25.32978786830324 7767.867443174004 -441.5710160461505 25.32978786830324 7767.867443174004 -441.424577876567 24.27439154625893 7702.915552252997 -375.7250570782334 27.46416094000495 7703.011845780298 -375.8714952478114 28.5195572620554 7767.96373670123 -375.8714952478114 28.5195572620554 7767.96373670123 -375.7250570782334 27.46416094000495 7703.011845780298 -313.2356884299294 48.60269377152065 7767.778624376865 -313.0892502603609 47.54729744946565 7702.826733455803 -313.2356884299294 48.60269377152065 7767.778624376865 -313.0892502603609 47.54729744946565 7702.826733455803 -257.9321223165507 84.21056483253813 7767.324721299651 -257.7856841469688 83.1551685104929 7702.372830378595 -257.9321223165507 84.21056483253813 7767.324721299651 -257.7856841469688 83.1551685104929 7702.372830378595 -213.5832053752602 131.8611565550549 7701.681069293194 -213.7296435448463 132.9165528770978 7766.632960214249 -213.7296435448463 132.9165528770978 7766.632960214249 -213.5832053752602 131.8611565550549 7701.681069293194 -183.4941398254771 190.34602898836 7700.798592574404 -183.640577995051 191.4014253104052 7765.750483495438 -183.640577995051 191.4014253104052 7765.750483495438 -183.4941398254771 190.34602898836 7700.798592574404 -169.5690075902896 254.6241384049048 7699.785539552322 -169.7154457598681 255.6795347269505 7764.737430473349 -169.7154457598681 255.6795347269505 7764.737430473349 -169.5690075902896 254.6241384049048 7699.785539552322 -172.7567834191711 320.3150378725567 7698.71094811611 -172.9032215887519 321.3704341946039 7763.66283903726 -172.9032215887519 321.3704341946039 7763.66283903726 -172.7567834191711 320.3150378725567 7698.71094811611 -192.8402256574179 382.9420011519261 7697.648049896431 -192.9866638270037 383.9973974739725 7762.599940817482 -192.9866638270037 383.9973974739725 7762.599940817482 -192.8402256574179 382.9420011519261 7697.648049896431 -228.4506809059631 438.2371041914922 7696.669279650347 -228.5971190755449 439.2925005135347 7761.621170571403 -228.5971190755449 439.2925005135347 7761.621170571403 -228.4506809059631 438.2371041914922 7696.669279650347 -277.3077936582477 483.4874734206159 7760.793229873793 -277.1613554886737 482.4320770985647 7695.841338952679 -277.3077936582477 483.4874734206159 7760.793229873793 -277.1613554886737 482.4320770985647 7695.841338952679 -335.7991356004964 513.570501827238 7760.172541514795 -335.652697430924 512.5151055052012 7695.22065059373 -335.7991356004964 513.570501827238 7760.172541514795 -335.652697430924 512.5151055052012 7695.22065059373 -400.0850566104539 527.491477062057 7759.801404380391 -399.9386184408709 526.4360807400204 7694.849513459422 -400.0850566104539 527.491477062057 7759.801404380391 -399.9386184408709 526.4360807400204 7694.849513459422 -465.7845774087796 524.3017076683087 7759.705110853241 -465.638139239201 523.2463113462746 7694.75321993212 -465.7845774087796 524.3017076683087 7759.705110853241 -465.638139239201 523.2463113462746 7694.75321993212 -528.2739460570969 503.1631748368051 7694.938332256609 -528.4203842266675 504.2185711588471 7759.890223177642 -528.4203842266675 504.2185711588471 7759.890223177642 -528.2739460570969 503.1631748368051 7694.938332256609</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10560\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10557\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10561\">0.9839516084955983 0.178434213113225 -0.0006809769373043332 0.9042454471127019 0.4269849736277787 -0.004899354246694032 0.9042454471127085 0.4269849736277654 -0.004899354246693804 0.9839516084955826 0.1784342131133117 -0.0006809769373057767 -0.9839516084955826 -0.1784342131133117 0.0006809769373057767 -0.9839516084955983 -0.178434213113225 0.0006809769373043332 -0.9042454471127019 -0.4269849736277787 0.004899354246694032 -0.9042454471127085 -0.4269849736277654 0.004899354246693804 0.9966030938164182 -0.08227654414848014 0.003583807825036614 0.9966030938164181 -0.08227654414848042 0.003583807825036619 -0.9966030938164181 0.08227654414848042 -0.003583807825036619 -0.9966030938164182 0.08227654414848014 -0.003583807825036614 0.762916452845415 0.6464374138155022 -0.008783848660752981 0.7629164528453369 0.6464374138155941 -0.008783848660754648 -0.762916452845415 -0.6464374138155022 0.008783848660752981 -0.7629164528453369 -0.6464374138155941 0.008783848660754648 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 -0.00225426030743825 0.01624670701816797 0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.00225426030743825 -0.01624670701816797 -0.9998654723619234 0.9413377252581474 -0.3373802908948427 0.007604362006629077 0.9413377252581431 -0.337380290894855 0.007604362006629267 -0.9413377252581431 0.337380290894855 -0.007604362006629267 -0.9413377252581474 0.3373802908948427 -0.007604362006629077 0.5695959630956036 0.8218362125402181 -0.01206973830459459 0.569595963095609 0.8218362125402143 -0.01206973830459452 -0.569595963095609 -0.8218362125402143 0.01206973830459452 -0.5695959630956036 -0.8218362125402181 0.01206973830459459 0.6464931587328391 -0.7627940184154982 0.01385211829189755 0.821921746357706 -0.5694921283640121 0.01110669148425203 0.8219217463576781 -0.5694921283640523 0.01110669148425262 0.6464931587328238 -0.7627940184155112 0.01385211829189772 -0.6464931587328238 0.7627940184155112 -0.01385211829189772 -0.6464931587328391 0.7627940184154982 -0.01385211829189755 -0.821921746357706 0.5694921283640121 -0.01110669148425203 -0.8219217463576781 0.5694921283640523 -0.01110669148425262 0.3374584497627668 0.941228231528767 -0.01453309522917211 0.3374584497627218 0.9412282315287831 -0.01453309522917247 -0.3374584497627218 -0.9412282315287831 0.01453309522917247 -0.3374584497627668 -0.941228231528767 0.01453309522917211 0.08232370075502907 0.9964771019918394 -0.01600604573097523 0.08232370075509904 0.9964771019918335 -0.01600604573097497 -0.08232370075509904 -0.9964771019918335 0.01600604573097497 -0.08232370075502907 -0.9964771019918394 0.01600604573097523 -0.178421272412823 0.9838177047104346 -0.01638821066746677 -0.1784212724128246 0.9838177047104343 -0.01638821066746677 0.1784212724128246 -0.9838177047104343 0.01638821066746677 0.178421272412823 -0.9838177047104346 0.01638821066746677 -0.4270071307208655 0.9041127566886209 -0.01565354612974567 -0.4270071307207761 0.9041127566886632 -0.01565354612974615 0.4270071307208655 -0.9041127566886209 0.01565354612974567 0.4270071307207761 -0.9041127566886632 0.01565354612974615 -0.6464931587328306 0.7627940184155039 -0.01385211829198067 -0.6464931587328309 0.7627940184155035 -0.01385211829198066 0.6464931587328306 -0.7627940184155039 0.01385211829198067 0.6464931587328309 -0.7627940184155035 0.01385211829198066 -0.8219217463576867 0.5694921283640381 -0.01110669148435685 -0.8219217463576471 0.5694921283640949 -0.01110669148435769 0.8219217463576471 -0.5694921283640949 0.01110669148435769 0.8219217463576867 -0.5694921283640381 0.01110669148435685 -0.9413377252581363 0.337380290894871 -0.00760436200675312 -0.9413377252581437 0.33738029089485 -0.007604362006752797 0.9413377252581437 -0.33738029089485 0.007604362006752797 0.9413377252581363 -0.337380290894871 0.00760436200675312 -0.9966030938164203 0.08227654414844779 -0.003583807825181151 -0.9966030938164281 0.08227654414835395 -0.003583807825179644 0.9966030938164281 -0.08227654414835395 0.003583807825179644 0.9966030938164203 -0.08227654414844779 0.003583807825181151 -0.9839516084955906 -0.1784342131132677 0.0006809769371635706 -0.9839516084955902 -0.1784342131132701 0.0006809769371636097 0.9839516084955902 0.1784342131132701 -0.0006809769371636097 0.9839516084955906 0.1784342131132677 -0.0006809769371635706 -0.9042454471127087 -0.4269849736277657 0.004899354246608358 -0.9042454471127258 -0.4269849736277293 0.004899354246607726 0.9042454471127258 0.4269849736277293 -0.004899354246607726 0.9042454471127087 0.4269849736277657 -0.004899354246608358 -0.7629164528453402 -0.6464374138155912 0.008783848660684221 -0.7629164528453281 -0.6464374138156055 0.00878384866068448 0.7629164528453281 0.6464374138156055 -0.00878384866068448 0.7629164528453402 0.6464374138155912 -0.008783848660684221 -0.5695959630956184 -0.821836212540209 0.01206973830450655 -0.5695959630956201 -0.821836212540208 0.01206973830450653 0.5695959630956184 0.821836212540209 -0.01206973830450655 0.5695959630956201 0.821836212540208 -0.01206973830450653 -0.3374584497628677 -0.9412282315287321 0.01453309522907572 -0.3374584497627653 -0.9412282315287688 0.01453309522907654 0.3374584497628677 0.9412282315287321 -0.01453309522907572 0.3374584497627653 0.9412282315287688 -0.01453309522907654 -0.0823237007549945 -0.9964771019918439 0.01600604573086692 -0.0823237007550407 -0.9964771019918401 0.01600604573086675 0.0823237007549945 0.9964771019918439 -0.01600604573086692 0.0823237007550407 0.9964771019918401 -0.01600604573086675 0.1784212724128627 -0.9838177047104297 0.01638821066732806 0.1784212724127897 -0.9838177047104429 0.01638821066732811 -0.1784212724128627 0.9838177047104297 -0.01638821066732806 -0.1784212724127897 0.9838177047104429 -0.01638821066732811 0.4270071307207983 -0.904112756688655 0.01565354612962453 0.4270071307207253 -0.9041127566886894 0.01565354612962493 -0.4270071307207253 0.9041127566886894 -0.01565354612962493 -0.4270071307207983 0.904112756688655 -0.01565354612962453</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10561\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10559\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10562\">-48.86321322176393 103.1074430085066 -48.12508352163489 103.5732176752778 -48.86321332879923 103.5732176094025 -48.12508341460047 103.1074430743818 17.06937799043589 151.7983378628971 17.06937800877116 150.5953632347278 15.85128579120724 151.7983378443325 15.85128580954289 150.5953632161618 -48.86321217657351 94.97876546587102 -48.12508243884075 95.44454010949642 -48.86321224600235 95.44454006676573 -48.12508236941157 94.97876550860164 22.67208082694536 151.7983377037035 22.6720808323026 150.5953630755336 21.45398862771699 151.7983376982793 21.45398863307445 150.59536307011 -48.8632133287949 103.5732176094035 -48.12508362866575 104.0389922761512 -48.86321343583013 104.038992210276 -48.12508352162972 103.5732176752788 10.34493073755094 151.7983378612637 10.34493076761487 150.595363233093 9.126838538385698 151.7983378308208 9.126838568449259 150.5953632026513 -22.17036485977425 67.9709937236504 -24.17563774441111 68.14111814994924 -24.91948249080247 68.14111816526422 -21.44953891485608 68.42020406543891 -23.45713888676169 68.26109510674323 -22.81295042767283 68.49287280429574 -20.93983798882179 68.9703721354027 -22.28697274598999 68.82065597556975 -21.91505035152423 69.22210673912193 -20.67599735746004 69.58400488876966 -21.72252914082716 69.66986688884458 -20.67599732378083 70.21928426747374 -21.72252911625191 70.13342231049298 -21.91505027947294 70.58118246814334 -20.93983789007925 70.8329170317049 -22.28697263137312 70.98263324701046 -21.44953875777947 71.38308512265739 -22.81295027830133 71.3104164399433 -23.45713871283827 71.54219416403072 -22.17036465506807 71.83229549412816 -24.17563755774216 71.66217115040708 -26.92475518874423 71.83229559201644 -26.04192732186711 72.14993526319191 -23.05319248826586 72.14993520165672 -25.05726079321691 72.31435764508805 -24.03785899948245 72.3143576240996 -24.03785925530254 67.48893167058321 -26.04192756025272 67.65335411401019 -25.05726104906216 67.48893169157178 -23.05319272662779 67.65335405248342 -26.92475539345045 67.97099382153878 -27.64558129073891 68.42020419300953 -25.6379813356801 68.26109515163623 -26.28216977021713 68.49287287572363 -28.15528215843911 68.97037228396184 -26.80814741714525 68.82065606865649 -27.1800697690454 69.22210684752349 -28.41912272473766 69.58400504819322 -27.3725909322666 69.669867005174 -28.41912269105844 70.21928442689728 -27.37259090769133 70.13342242682234 -27.1800696969943 70.58118257654512 -28.15528205969666 70.8329171802641 -26.80814730252837 70.98263334009707 -27.64558113366225 71.38308525022791 -26.28216962084558 71.31041651137107 -25.63798116173335 71.54219420893217 -24.91948230410827 71.66217116572211 -0.7110969215489713 30.92042789442261 -1.360845461226857 31.52692575244536 -2.889867629321593 33.40039298506091 -2.145427552765541 31.9445904005024 -4.107238554073106 33.35848072770503 -3.011375223209871 32.14495868305183 -3.899675569865106 32.11437583276253 -5.27228088003719 33.00291781560748 -4.74979239209252 31.85492602034115 -6.305598898022671 32.35793527363177 -5.503791633342047 31.38429032174286 -6.110289491364627 30.7345417820651 -7.136773692742777 31.4674875961295 -6.527954139421697 29.94995969052616 -7.709162075518579 30.39225732078813 -6.728322421971265 29.08401202008205 -6.69773957168208 28.19571167342663 -7.983756723980285 29.20551961397029 -6.43828975926049 27.34559485119915 -5.96765406067947 26.59159560997729 -7.941844466624628 27.98814868921875 -3.788883352889831 24.11163051931143 -4.975621059676065 24.38622516776595 -7.586281554526979 26.82310636325477 -6.050851335043982 24.95861355055598 -6.941299012568162 25.78978834529671 0.2625480303398389 31.72223515910328 0.9075305723155354 30.68891714111774 -0.6278996471624949 32.55340995382336 -1.703129922503652 33.12579833659909 1.263093484413312 29.52387481515376 -0.2404612229507079 30.16642865317324 1.305005741769034 28.30650389040206 0.01898858947078752 29.31631183094584 0.04957143976007261 28.42801148429035 1.030411093307113 27.11976618358398 -0.1507968427896258 27.56206381384606 0.4580227105315071 26.04453590824302 -0.5684614908466448 26.77748172230747 -1.174959348869283 26.12773318262961 -0.3731520841886398 25.15408823074071 -1.928958590118681 25.65709748403151 -1.406470102174251 24.50910568876479 -2.779075412346252 25.39764767160969 -3.667375759001517 25.36706482132044 -2.571512428138236 24.15354277666715 -4.533323429414205 25.56743310386284 -5.317905520979446 25.98509775193405 -48.86321210714543 94.5129908649966 -48.12508236941343 94.97876550859783 -48.86321217657502 94.97876546586721 -48.12508229998335 94.5129909077274 26.77122430761355 151.7983374250215 26.77122429962833 150.5953627968508 25.55313210844824 151.7983374331064 25.55313210046258 150.5953628049366 -48.12508362867393 104.038992276152 -48.86321354287051 104.5047668111599 -48.86321343583548 104.0389922102769 -48.12508373571005 104.5047668770351 1.738906836763801 151.7983376601786 2.95699903596189 151.7983377004229 1.738906876506911 150.595363032011 2.95699907570499 150.5953630722534 -48.86321196829339 93.5814416632322 -48.12508223055905 94.04721630684732 -48.86321203772296 94.04721626411659 -48.12508216113044 93.58144170596285 29.46293610171332 151.7983368149177 29.46293606954662 150.5953621867494 28.24484390251505 151.79833684749 28.2448438703486 150.5953622193201 -48.8632120377182 94.04721626411278 -48.12508229998343 94.51299090772812 -48.86321210714812 94.51299086499733 -48.12508223055401 94.04721630684351 29.0874585784804 151.7983371001781 29.08745855769627 150.5953624720083 27.86936637928229 151.7983371212237 27.86936635849831 150.5953624930531 -48.12508373570178 104.504766877033 -48.86321364990498 104.9705414120455 -48.86321354286963 104.5047668111578 -48.12508384273572 104.9705414779207 -5.80903397729522 151.7983373771548 -4.590941778097214 151.7983374244542 -5.809033930580974 150.5953627489849 -4.590941731383003 150.5953627962865 -48.1250838427288 104.970541477918 -48.86321375693238 105.4363160129304 -48.86321364989756 104.9705414120428 -48.12508394976423 105.4363160788055 -13.00260421087535 151.7983370568735 -11.78451201167741 151.7983371080105 -13.0026041603737 150.5953624287046 -11.78451196117553 150.5953624798407 -48.12508394976409 105.4363160788065 -48.86321386396669 105.9020906138186 -48.86321375693169 105.4363160129314 -48.12508405679994 105.9020906796937 -19.35157394049639 151.7983367847693 -18.13348174129814 151.7983368362573 -19.35157388964866 150.5953621566018 -18.13348169045052 150.5953622080885 -48.86321386398831 105.9020906138225 -48.12508416385089 106.3678652805876 -48.8632139710237 106.3678652147124 -48.12508405681699 105.9020906796977 -23.20517917205196 151.7983366820547 -23.20517912432341 150.5953620538872 -24.42327137124984 151.7983366337283 -24.4232713235211 150.5953620055584 -48.86321397102941 106.3678652147073 -48.12508427088936 106.8336398814738 -48.86321407806419 106.8336398155987 -48.12508416385452 106.3678652805825 -26.65397650541189 151.7983366864036 -26.65397646405496 150.5953620582338 -27.87206870460989 151.7983366445275 -27.87206866325326 150.5953620163577 -48.12508427086978 106.8336398814732 -48.86321418507546 107.2994144164867 -48.86321407804032 106.833639815598 -48.12508437790493 107.2994144823618 -29.46293610171306 151.7983368149183 -28.24484390251497 151.7983368474892 -29.46293606954673 150.5953621867485 -28.24484387034855 150.5953622193194 -48.12508437791482 107.2994144823646 -48.86321429212009 107.7651890173778 -48.86321418508484 107.2994144164895 -48.12508448495028 107.765189083253 -29.08745857848058 151.798337100176 -27.86936637928244 151.7983371212221 -29.08745855769639 150.5953624720066 -27.86936635849839 150.5953624930523 -48.12508448494386 107.7651890832475 -48.8632143991514 108.2309636182628 -48.86321429211694 107.7651890173724 -48.12508459197839 108.2309636841379 -26.77122430761329 151.7983374250192 -25.5531321084153 151.7983374331043 -26.77122429962784 150.59536279685 -25.55313210042984 150.5953628049349 -48.12508459197518 108.2309636841383 -48.86321450618523 108.6967382191547 -48.86321439914988 108.2309636182631 -48.12508469900912 108.6967382850298 -22.67208082691384 151.7983377037025 -21.45398862771575 151.798337698276 -22.6720808322713 150.5953630755309 -21.45398863307321 150.5953630701068 -48.12508469899939 108.6967382850277 -48.86321461321012 109.162512820044 -48.86321450617542 108.6967382191526 -48.12508480603522 109.1625128859191 -17.06937799043671 151.7983378628942 -15.85128579123875 151.7983378443299 -17.06937800877194 150.5953632347245 -15.85128580957401 150.5953632161584 -48.12508480603732 109.1625128859249 -48.86321472024771 109.6282874209415 -48.86321461321261 109.1625128200498 -48.12508491307236 109.6282874868166 -10.3449307375838 151.7983378612607 -9.126838538385758 151.7983378308195 -10.34493076764738 150.5953632330909 -9.126838568449237 150.5953632026498 -48.86321472024454 109.6282874209367 -48.12508502010414 110.0940620877031 -48.86321482727952 110.094062021828 -48.12508491306981 109.6282874868118 -1.738906836764341 151.7983376601765 -1.738906876507403 150.5953630320067 -2.956999035962324 151.7983377004201 -2.956999075705402 150.5953630722492 -48.86321482728386 110.0940620218308 -48.1250851271426 110.5598366885979 -48.86321493431878 110.5598366227229 -48.12508502010711 110.0940620877059 5.809033977295143 151.7983373771528 5.809033930580952 150.5953627489819 4.590941778097244 151.7983374244531 4.590941731382914 150.5953627962831 -48.86321493431693 110.5598366227221 -48.12508523417641 111.0256112894895 -48.86321504135182 111.0256112236144 -48.12508512714042 110.5598366885971 13.00260421087476 151.7983370568715 13.00260416037287 150.5953624287015 11.78451201167662 151.7983371080061 11.78451196117493 150.595362479838 -48.863212586545 95.3649355144166 -48.12508283206995 95.83071014772851 -48.86321263923416 95.83071011530076 -48.12508277938252 95.36493554684438 19.35157394049632 151.7983367847669 19.35157388964869 150.5953621565987 18.13348174129833 151.7983368362564 18.13348169045062 150.5953622080854 -48.12508283206574 95.83071014772816 -48.86321269191944 96.29648471618505 -48.86321263923064 95.83071011530039 -48.12508288475554 96.29648474861273 23.20517917205216 151.7983366820541 24.42327137125012 151.798336633727 23.20517912432352 150.5953620538847 24.42327132352168 150.595362005556 -48.12508259230332 94.51195759144987 -48.86321245611516 94.97773215747031 -48.86321239946723 94.5119575565857 -48.12508264895189 94.9777321923344 26.65397650541255 151.7983366864019 27.87206870461038 151.7983366445266 26.6539764640556 150.5953620582336 27.8720686632536 150.5953620163573</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10562\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10558\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10556\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10557\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10558\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10559\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 8 3 9 0 10 3 9 8 8 9 11 2 16 12 17 13 18 12 17 2 16 1 19 16 24 17 25 18 26 17 25 16 24 19 27 17 25 19 27 20 28 20 28 19 27 21 29 21 29 19 27 22 30 21 29 22 30 23 31 23 31 22 30 24 32 24 32 22 30 25 33 24 32 25 33 26 34 26 34 25 33 27 35 26 34 27 35 28 36 28 36 27 35 29 37 29 37 27 35 30 38 29 37 30 38 31 39 31 39 30 38 32 40 31 39 32 40 33 41 33 41 32 40 34 42 34 42 32 40 35 43 34 42 35 43 36 44 36 44 35 43 37 45 37 45 35 43 38 46 38 46 35 43 39 47 38 46 39 47 40 48 40 48 39 47 41 49 42 50 43 51 44 52 43 51 42 50 45 53 43 51 45 53 46 54 46 54 45 53 16 24 46 54 16 24 18 26 46 54 18 26 47 55 47 55 18 26 48 56 47 55 48 56 49 57 47 55 49 57 50 58 50 58 49 57 51 59 50 58 51 59 52 60 50 58 52 60 53 61 53 61 52 60 54 62 53 61 54 62 55 63 55 63 54 62 56 64 55 63 56 64 57 65 55 63 57 65 58 66 58 66 57 65 59 67 58 66 59 67 60 68 60 68 59 67 61 69 60 68 61 69 62 70 60 68 62 70 37 45 37 45 62 70 63 71 37 45 63 71 36 44 112 120 9 121 8 122 9 121 112 120 113 123 12 128 116 129 13 130 116 129 12 128 117 131 120 136 121 137 122 138 121 137 120 136 123 139 122 144 113 145 112 146 113 145 122 144 121 147 117 152 128 153 116 154 128 153 117 152 129 155 129 160 132 161 128 162 132 161 129 160 133 163 133 168 136 169 132 170 136 169 133 168 137 171 136 176 140 177 141 178 140 177 136 176 137 179 141 184 144 185 145 186 144 185 141 184 140 187 144 192 148 193 145 194 148 193 144 192 149 195 149 200 152 201 148 202 152 201 149 200 153 203 153 208 156 209 152 210 156 209 153 208 157 211 157 216 160 217 156 218 160 217 157 216 161 219 161 224 164 225 160 226 164 225 161 224 165 227 165 232 168 233 164 234 168 233 165 232 169 235 168 240 172 241 173 242 172 241 168 240 169 243 173 248 176 249 177 250 176 249 173 248 172 251 177 256 180 257 181 258 180 257 177 256 176 259 181 264 184 265 185 266 184 265 181 264 180 267 184 272 188 273 185 274 188 273 184 272 189 275 189 280 120 281 188 282 120 281 189 280 123 283</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10558\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10559\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 10 12 11 13 4 14 5 15 4 14 11 13 6 20 7 21 14 22 15 23 14 22 7 21 64 72 65 73 66 74 65 73 67 75 66 74 66 74 67 75 68 76 67 75 69 77 68 76 69 77 70 78 68 76 68 76 70 78 71 79 70 78 72 80 71 79 71 79 72 80 73 81 72 80 74 82 73 81 74 82 75 83 73 81 73 81 75 83 76 84 75 83 77 85 76 84 76 84 77 85 78 86 77 85 79 87 78 86 79 87 80 88 78 86 78 86 80 88 81 89 80 88 82 90 81 89 82 90 83 91 81 89 81 89 83 91 84 92 83 91 85 93 84 92 85 93 86 94 84 92 84 92 86 94 87 95 86 94 88 96 87 95 89 97 87 95 88 96 90 98 91 99 92 100 92 100 91 99 93 101 91 99 94 102 93 101 93 101 94 102 66 74 66 74 94 102 64 72 64 72 94 102 95 103 94 102 96 104 95 103 95 103 96 104 97 105 97 105 96 104 98 106 96 104 99 107 98 106 98 106 99 107 100 108 99 107 101 109 100 108 100 108 101 109 102 110 102 110 101 109 103 111 101 109 104 112 103 111 103 111 104 112 105 113 104 112 106 114 105 113 105 113 106 114 107 115 107 115 106 114 108 116 106 114 109 117 108 116 108 116 109 117 110 118 110 118 109 117 111 119 109 117 85 93 111 119 83 91 111 119 85 93 114 124 115 125 10 126 11 127 10 126 115 125 118 132 14 133 119 134 15 135 119 134 14 133 124 140 125 141 126 142 127 143 126 142 125 141 126 148 127 149 114 150 115 151 114 150 127 149 130 156 118 157 131 158 119 159 131 158 118 157 134 164 130 165 135 166 131 167 135 166 130 165 138 172 134 173 139 174 135 175 139 174 134 173 138 180 139 181 142 182 143 183 142 182 139 181 142 188 143 189 146 190 147 191 146 190 143 189 150 196 146 197 151 198 147 199 151 198 146 197 154 204 150 205 155 206 151 207 155 206 150 205 158 212 154 213 159 214 155 215 159 214 154 213 162 220 158 221 163 222 159 223 163 222 158 221 166 228 162 229 167 230 163 231 167 230 162 229 170 236 166 237 171 238 167 239 171 238 166 237 170 244 171 245 174 246 175 247 174 246 171 245 174 252 175 253 178 254 179 255 178 254 175 253 178 260 179 261 182 262 183 263 182 262 179 261 182 268 183 269 186 270 187 271 186 270 183 269 190 276 186 277 191 278 187 279 191 278 186 277 124 284 190 285 125 286 191 287 125 286 190 285</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10563\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10564\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10568\">-655.7894517192615 165.4617810484107 7765.107484329557 -676.3407507974987 228.8944954895898 7693.154762263023 -655.6297009888195 164.3104396061907 7694.25087605205 -676.5005015279547 230.0458369318113 7764.011370540438 -676.5005015279547 230.0458369318113 7764.011370540438 -655.7894517192615 165.4617810484107 7765.107484329557 -676.3407507974987 228.8944954895898 7693.154762263023 -655.6297009888195 164.3104396061907 7694.25087605205 -679.6281446211145 296.6382355672066 7692.046589844354 -679.7878953515655 297.789577009455 7762.903198121879 -679.7878953515655 297.789577009455 7762.903198121879 -679.6281446211145 296.6382355672066 7692.046589844354 -665.2678520039533 362.9250359012984 7691.001878915346 -676.3407507974987 228.8944954895898 7693.154762263023 -679.6281446211145 296.6382355672066 7692.046589844354 -655.6297009888195 164.3104396061907 7694.25087605205 -634.2385031557362 423.2375605981323 7690.09182479911 -618.9064190147118 107.2873645981246 7695.260232868278 -603.902004028018 290.3865139055348 7692.318902801171 -588.6546969224349 473.4656107690734 7689.378446179767 -593.7410091005111 337.2894468687506 7691.579690674091 -571.7853940821339 379.9651272224579 7690.935758443314 -531.622894368017 510.1862278007424 7688.91035863138 -539.5313978533828 415.5052778737512 7690.430989026395 -499.1770769549993 441.4878962886068 7690.099781624739 -467.0297185870851 530.8969623261302 7688.719461546801 -453.4725116675361 456.1423099603682 7689.964707475478 -399.2770877638292 534.1864120134154 7688.818764246792 -405.5323925849771 458.4698448148685 7690.034971658667 -358.62375959798 448.3118831982071 7690.305785786374 -332.9822317223276 519.8304063025229 7689.201499416554 -315.9433585244711 426.3606734077249 7690.758694323225 -272.6630353443852 488.8072832581989 7689.841584286727 -280.3997881648768 394.1121541145686 7691.362832301091 -254.4152841006974 353.7640086153598 7692.077028715034 -222.4301521809935 443.2312174477771 7690.695398131154 -239.7606473424635 308.0658963474051 7692.852612259726 -237.4345671673209 260.1320681420724 7693.636728198288 -601.5759238527992 242.4526856985734 7693.103018739742 -568.6735358513095 61.71129878771365 7696.114046712723 -586.9212870940696 196.7545734290726 7693.878602284535 -560.9367830308162 156.4064279313394 7694.592798698351 -508.354339473363 30.68817574338857 7696.754131582886 -525.3932126712231 124.1579086381813 7695.196936676245 -482.7128115977093 102.206698847701 7695.649845213157 -442.0594834318742 16.33217003247898 7697.136866752644 -435.8041786107262 92.04873723103708 7695.920659340874 -374.3068526086131 19.6216197197781 7697.236169452685 -387.8640595281584 94.37627208553806 7695.990923524019 -342.1594942406927 109.0306857573029 7695.855849374771 -309.7136768276768 40.33235424516363 7697.045272368104 -301.8051733423188 135.0133041721591 7695.524641973127 -252.6818742732723 77.05297127683264 7696.577184819709 -269.5511771135637 170.5534548234456 7695.01987255611 -247.5955620951916 213.2291351771575 7694.375940325409 -207.098068039965 127.2810214477703 7695.863806200387 -185.7068702059407 386.2081424382412 7691.704754947459 -176.0687191917573 187.5935461446021 7694.953752084183 -164.9958203977494 321.6240865563938 7692.800868736555 -161.7084265742153 253.8803464804092 7693.909041155102 -161.7084265742153 253.8803464804092 7693.909041155102 -164.9958203977494 321.6240865563938 7692.800868736555 -176.0687191917573 187.5935461446021 7694.953752084183 -185.7068702059407 386.2081424382412 7691.704754947459 -207.098068039965 127.2810214477703 7695.863806200387 -222.4301521809935 443.2312174477771 7690.695398131154 -237.4345671673209 260.1320681420724 7693.636728198288 -247.5955620951916 213.2291351771575 7694.375940325409 -252.6818742732723 77.05297127683264 7696.577184819709 -269.5511771135637 170.5534548234456 7695.01987255611 -301.8051733423188 135.0133041721591 7695.524641973127 -309.7136768276768 40.33235424516363 7697.045272368104 -342.1594942406927 109.0306857573029 7695.855849374771 -374.3068526086131 19.6216197197781 7697.236169452685 -387.8640595281584 94.37627208553806 7695.990923524019 -435.8041786107262 92.04873723103708 7695.920659340874 -442.0594834318742 16.33217003247898 7697.136866752644 -482.7128115977093 102.206698847701 7695.649845213157 -508.354339473363 30.68817574338857 7696.754131582886 -525.3932126712231 124.1579086381813 7695.196936676245 -560.9367830308162 156.4064279313394 7694.592798698351 -568.6735358513095 61.71129878771365 7696.114046712723 -586.9212870940696 196.7545734290726 7693.878602284535 -601.5759238527992 242.4526856985734 7693.103018739742 -603.902004028018 290.3865139055348 7692.318902801171 -618.9064190147118 107.2873645981246 7695.260232868278 -239.7606473424635 308.0658963474051 7692.852612259726 -254.4152841006974 353.7640086153598 7692.077028715034 -272.6630353443852 488.8072832581989 7689.841584286727 -280.3997881648768 394.1121541145686 7691.362832301091 -315.9433585244711 426.3606734077249 7690.758694323225 -332.9822317223276 519.8304063025229 7689.201499416554 -358.62375959798 448.3118831982071 7690.305785786374 -399.2770877638292 534.1864120134154 7688.818764246792 -405.5323925849771 458.4698448148685 7690.034971658667 -453.4725116675361 456.1423099603682 7689.964707475478 -467.0297185870851 530.8969623261302 7688.719461546801 -499.1770769549993 441.4878962886068 7690.099781624739 -531.622894368017 510.1862278007424 7688.91035863138 -539.5313978533828 415.5052778737512 7690.430989026395 -571.7853940821339 379.9651272224579 7690.935758443314 -588.6546969224349 473.4656107690734 7689.378446179767 -593.7410091005111 337.2894468687506 7691.579690674091 -634.2385031557362 423.2375605981323 7690.09182479911 -655.6297009888195 164.3104396061907 7694.25087605205 -665.2678520039533 362.9250359012984 7691.001878915346 -676.3407507974987 228.8944954895898 7693.154762263023 -679.6281446211145 296.6382355672066 7692.046589844354 -619.0661697451604 108.4387060403564 7766.116841145791 -618.9064190147118 107.2873645981246 7695.260232868278 -619.0661697451604 108.4387060403564 7766.116841145791 -618.9064190147118 107.2873645981246 7695.260232868278 -676.5005015279547 230.0458369318113 7764.011370540438 -668.752851067398 231.450830735853 7764.006008517365 -671.9406268963496 297.1417302051381 7762.931417081127 -655.7894517192615 165.4617810484107 7765.107484329557 -648.6694088286487 168.8238674549042 7765.068906737154 -619.0661697451604 108.4387060403564 7766.116841145791 -613.0589535810573 113.5287644168353 7766.047676983112 -568.8332865817596 62.86264022994067 7766.970654990311 -564.3482789983499 69.33379150975031 7766.875617680686 -508.514090203814 31.83951718561104 7767.610739860423 -505.8569370560965 39.25076310312613 7767.496306039731 -442.2192341623271 17.48351147470692 7767.993475030181 -441.5710160461505 25.32978786830324 7767.867443174004 -374.4666033390556 20.77296116200989 7768.09277773021 -375.8714952478114 28.5195572620554 7767.96373670123 -313.2356884299294 48.60269377152065 7767.778624376865 -309.8734275581272 41.48369568738883 7767.901880645612 -257.9321223165507 84.21056483253813 7767.324721299651 -252.8416250037164 78.20431271905875 7767.433793097159 -213.7296435448463 132.9165528770978 7766.632960214249 -207.2578187704123 128.4323628899994 7766.720414477908 -183.640577995051 191.4014253104052 7765.750483495438 -176.2284699221939 188.7448875868371 7765.810360361676 -169.7154457598681 255.6795347269505 7764.737430473349 -161.8681773046624 255.0316879226356 7764.765649432674 -165.1555711281969 322.775427998631 7763.657477014048 -679.7878953515655 297.789577009455 7762.903198121879 -665.4276027344015 364.0763773435327 7761.858487192875 -658.0154946615388 361.4198396199587 7761.91836405907 -634.3982538861875 424.3889020403645 7760.948433076673 -627.9264291117544 419.9047120532702 7761.035887340286 -588.8144476528752 474.6169522113081 7760.235054457297 -583.7239503400344 468.6107000978276 7760.34412625481 -531.7826450984702 511.3375692429742 7759.766966908906 -528.4203842266675 504.2185711588471 7759.890223177642 -467.1894693175364 532.0483037683576 7759.576069824389 -465.7845774087796 524.3017076683087 7759.705110853241 -399.4368384942796 535.3377534556538 7759.675372524263 -400.0850566104539 527.491477062057 7759.801404380391 -335.7991356004964 513.570501827238 7760.172541514795 -333.1419824527726 520.981747744754 7760.058107694089 -277.3077936582477 483.4874734206159 7760.793229873793 -272.8227860748357 489.9586247004244 7760.698192564212 -228.5971190755449 439.2925005135347 7761.621170571403 -222.5899029114357 444.3825588900085 7761.552006408723 -192.9866638270037 383.9973974739725 7762.599940817482 -185.8666209363787 387.3594838804742 7762.561363224917 -172.9032215887519 321.3704341946039 7763.66283903726 -169.7154457598681 255.6795347269505 7764.737430473349 -172.9032215887519 321.3704341946039 7763.66283903726 -165.1555711281969 322.775427998631 7763.657477014048 -185.8666209363787 387.3594838804742 7762.561363224917 -192.9866638270037 383.9973974739725 7762.599940817482 -222.5899029114357 444.3825588900085 7761.552006408723 -228.5971190755449 439.2925005135347 7761.621170571403 -272.8227860748357 489.9586247004244 7760.698192564212 -277.3077936582477 483.4874734206159 7760.793229873793 -333.1419824527726 520.981747744754 7760.058107694089 -335.7991356004964 513.570501827238 7760.172541514795 -399.4368384942796 535.3377534556538 7759.675372524263 -400.0850566104539 527.491477062057 7759.801404380391 -465.7845774087796 524.3017076683087 7759.705110853241 -467.1894693175364 532.0483037683576 7759.576069824389 -528.4203842266675 504.2185711588471 7759.890223177642 -531.7826450984702 511.3375692429742 7759.766966908906 -583.7239503400344 468.6107000978276 7760.34412625481 -588.8144476528752 474.6169522113081 7760.235054457297 -627.9264291117544 419.9047120532702 7761.035887340286 -634.3982538861875 424.3889020403645 7760.948433076673 -658.0154946615388 361.4198396199587 7761.91836405907 -665.4276027344015 364.0763773435327 7761.858487192875 -671.9406268963496 297.1417302051381 7762.931417081127 -676.5005015279547 230.0458369318113 7764.011370540438 -679.7878953515655 297.789577009455 7762.903198121879 -161.8681773046624 255.0316879226356 7764.765649432674 -176.2284699221939 188.7448875868371 7765.810360361676 -183.640577995051 191.4014253104052 7765.750483495438 -207.2578187704123 128.4323628899994 7766.720414477908 -213.7296435448463 132.9165528770978 7766.632960214249 -252.8416250037164 78.20431271905875 7767.433793097159 -257.9321223165507 84.21056483253813 7767.324721299651 -309.8734275581272 41.48369568738883 7767.901880645612 -313.2356884299294 48.60269377152065 7767.778624376865 -374.4666033390556 20.77296116200989 7768.09277773021 -375.8714952478114 28.5195572620554 7767.96373670123 -441.5710160461505 25.32978786830324 7767.867443174004 -442.2192341623271 17.48351147470692 7767.993475030181 -505.8569370560965 39.25076310312613 7767.496306039731 -508.514090203814 31.83951718561104 7767.610739860423 -564.3482789983499 69.33379150975031 7766.875617680686 -568.8332865817596 62.86264022994067 7766.970654990311 -613.0589535810573 113.5287644168353 7766.047676983112 -619.0661697451604 108.4387060403564 7766.116841145791 -648.6694088286487 168.8238674549042 7765.068906737154 -655.7894517192615 165.4617810484107 7765.107484329557 -668.752851067398 231.450830735853 7764.006008517365 -665.2678520039533 362.9250359012984 7691.001878915346 -665.4276027344015 364.0763773435327 7761.858487192875 -665.4276027344015 364.0763773435327 7761.858487192875 -665.2678520039533 362.9250359012984 7691.001878915346 -185.7068702059407 386.2081424382412 7691.704754947459 -165.1555711281969 322.775427998631 7763.657477014048 -164.9958203977494 321.6240865563938 7692.800868736555 -185.8666209363787 387.3594838804742 7762.561363224917 -185.8666209363787 387.3594838804742 7762.561363224917 -185.7068702059407 386.2081424382412 7691.704754947459 -165.1555711281969 322.775427998631 7763.657477014048 -164.9958203977494 321.6240865563938 7692.800868736555 -161.8681773046624 255.0316879226356 7764.765649432674 -161.7084265742153 253.8803464804092 7693.909041155102 -161.8681773046624 255.0316879226356 7764.765649432674 -161.7084265742153 253.8803464804092 7693.909041155102 -176.2284699221939 188.7448875868371 7765.810360361676 -176.0687191917573 187.5935461446021 7694.953752084183 -176.2284699221939 188.7448875868371 7765.810360361676 -176.0687191917573 187.5935461446021 7694.953752084183 -207.2578187704123 128.4323628899994 7766.720414477908 -207.098068039965 127.2810214477703 7695.863806200387 -207.2578187704123 128.4323628899994 7766.720414477908 -207.098068039965 127.2810214477703 7695.863806200387 -252.8416250037164 78.20431271905875 7767.433793097159 -252.6818742732723 77.05297127683264 7696.577184819709 -252.8416250037164 78.20431271905875 7767.433793097159 -252.6818742732723 77.05297127683264 7696.577184819709 -309.7136768276768 40.33235424516363 7697.045272368104 -309.8734275581272 41.48369568738883 7767.901880645612 -309.8734275581272 41.48369568738883 7767.901880645612 -309.7136768276768 40.33235424516363 7697.045272368104 -374.3068526086131 19.6216197197781 7697.236169452685 -374.4666033390556 20.77296116200989 7768.09277773021 -374.4666033390556 20.77296116200989 7768.09277773021 -374.3068526086131 19.6216197197781 7697.236169452685 -442.2192341623271 17.48351147470692 7767.993475030181 -442.0594834318742 16.33217003247898 7697.136866752644 -442.2192341623271 17.48351147470692 7767.993475030181 -442.0594834318742 16.33217003247898 7697.136866752644 -508.514090203814 31.83951718561104 7767.610739860423 -508.354339473363 30.68817574338857 7696.754131582886 -508.514090203814 31.83951718561104 7767.610739860423 -508.354339473363 30.68817574338857 7696.754131582886 -568.8332865817596 62.86264022994067 7766.970654990311 -568.6735358513095 61.71129878771365 7696.114046712723 -568.8332865817596 62.86264022994067 7766.970654990311 -568.6735358513095 61.71129878771365 7696.114046712723 -634.2385031557362 423.2375605981323 7690.09182479911 -634.3982538861875 424.3889020403645 7760.948433076673 -634.3982538861875 424.3889020403645 7760.948433076673 -634.2385031557362 423.2375605981323 7690.09182479911 -588.6546969224349 473.4656107690734 7689.378446179767 -588.8144476528752 474.6169522113081 7760.235054457297 -588.8144476528752 474.6169522113081 7760.235054457297 -588.6546969224349 473.4656107690734 7689.378446179767 -531.7826450984702 511.3375692429742 7759.766966908906 -531.622894368017 510.1862278007424 7688.91035863138 -531.7826450984702 511.3375692429742 7759.766966908906 -531.622894368017 510.1862278007424 7688.91035863138 -467.1894693175364 532.0483037683576 7759.576069824389 -467.0297185870851 530.8969623261302 7688.719461546801 -467.1894693175364 532.0483037683576 7759.576069824389 -467.0297185870851 530.8969623261302 7688.719461546801 -399.2770877638292 534.1864120134154 7688.818764246792 -399.4368384942796 535.3377534556538 7759.675372524263 -399.4368384942796 535.3377534556538 7759.675372524263 -399.2770877638292 534.1864120134154 7688.818764246792 -332.9822317223276 519.8304063025229 7689.201499416554 -333.1419824527726 520.981747744754 7760.058107694089 -333.1419824527726 520.981747744754 7760.058107694089 -332.9822317223276 519.8304063025229 7689.201499416554 -272.6630353443852 488.8072832581989 7689.841584286727 -272.8227860748357 489.9586247004244 7760.698192564212 -272.8227860748357 489.9586247004244 7760.698192564212 -272.6630353443852 488.8072832581989 7689.841584286727 -222.4301521809935 443.2312174477771 7690.695398131154 -222.5899029114357 444.3825588900085 7761.552006408723 -222.5899029114357 444.3825588900085 7761.552006408723 -222.4301521809935 443.2312174477771 7690.695398131154</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10568\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10565\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10569\">-0.9042454471126894 -0.4269849736278064 0.004899354246615452 -0.9839516084955962 -0.1784342131132367 0.0006809769372291241 -0.9042454471126914 -0.4269849736278025 0.004899354246615382 -0.9839516084955912 -0.1784342131132641 0.0006809769372295816 0.9839516084955912 0.1784342131132641 -0.0006809769372295816 0.9042454471126894 0.4269849736278064 -0.004899354246615452 0.9839516084955962 0.1784342131132367 -0.0006809769372291241 0.9042454471126914 0.4269849736278025 -0.004899354246615382 -0.9966030938164203 0.08227654414845177 -0.003583807825123998 -0.996603093816416 0.08227654414850322 -0.003583807825124824 0.996603093816416 -0.08227654414850322 0.003583807825124824 0.9966030938164203 -0.08227654414845177 0.003583807825123998 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 0.002254260307440998 -0.01624670701817075 -0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.002254260307440998 0.01624670701817075 0.9998654723619234 -0.7629164528453217 -0.6464374138156134 0.00878384866065777 -0.7629164528453317 -0.6464374138156016 0.008783848660657555 0.7629164528453217 0.6464374138156134 -0.00878384866065777 0.7629164528453317 0.6464374138156016 -0.008783848660657555 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 -0.002254260307433244 0.01624670701818476 0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 0.002254260307433244 -0.01624670701818476 -0.9998654723619231 -0.9413377252581526 0.337380290894826 -0.007604362006723441 -0.941337725258129 0.3373802908948921 -0.007604362006724462 0.941337725258129 -0.3373802908948921 0.007604362006724462 0.9413377252581526 -0.337380290894826 0.007604362006723441 0.9042454471126921 0.4269849736278004 -0.004899354246681967 0.983951608495604 0.1784342131131932 -0.0006809769372564923 0.9839516084955901 0.1784342131132707 -0.0006809769372577812 0.9042454471127143 0.4269849736277533 -0.004899354246681154 -0.9042454471127143 -0.4269849736277533 0.004899354246681154 -0.9042454471126921 -0.4269849736278004 0.004899354246681967 -0.983951608495604 -0.1784342131131932 0.0006809769372564923 -0.9839516084955901 -0.1784342131132707 0.0006809769372577812 0.9966030938164214 -0.08227654414844041 0.003583807825066962 0.9966030938164224 -0.08227654414842915 0.003583807825066781 -0.9966030938164214 0.08227654414844041 -0.003583807825066962 -0.9966030938164224 0.08227654414842915 -0.003583807825066781 0.9413377252581598 -0.3373802908948078 0.007604362006642701 0.9413377252581356 -0.3373802908948753 0.007604362006643745 -0.9413377252581598 0.3373802908948078 -0.007604362006642701 -0.9413377252581356 0.3373802908948753 -0.007604362006643745 0.8219217463576843 -0.5694921283640431 0.01110669148426309 0.8219217463576601 -0.5694921283640779 0.0111066914842636 -0.8219217463576843 0.5694921283640431 -0.01110669148426309 -0.8219217463576601 0.5694921283640779 -0.0111066914842636 0.6464931587328237 -0.7627940184155113 0.01385211829189321 0.6464931587328316 -0.7627940184155047 0.01385211829189312 -0.6464931587328237 0.7627940184155113 -0.01385211829189321 -0.6464931587328316 0.7627940184155047 -0.01385211829189312 0.4270071307207964 -0.9041127566886552 0.01565354612964803 0.4270071307207684 -0.9041127566886686 0.01565354612964819 -0.4270071307207684 0.9041127566886686 -0.01565354612964819 -0.4270071307207964 0.9041127566886552 -0.01565354612964803 0.1784212724127652 -0.9838177047104466 0.01638821066737493 0.1784212724128066 -0.9838177047104391 0.0163882106673749 -0.1784212724128066 0.9838177047104391 -0.0163882106673749 -0.1784212724127652 0.9838177047104466 -0.01638821066737493 -0.08232370075505006 -0.9964771019918387 0.01600604573090282 -0.08232370075505258 -0.9964771019918384 0.01600604573090281 0.08232370075505006 0.9964771019918387 -0.01600604573090282 0.08232370075505258 0.9964771019918384 -0.01600604573090281 -0.3374584497627924 -0.9412282315287587 0.01453309522910821 -0.3374584497627607 -0.94122823152877 0.01453309522910846 0.3374584497627924 0.9412282315287587 -0.01453309522910821 0.3374584497627607 0.94122823152877 -0.01453309522910846 -0.5695959630956183 -0.8218362125402089 0.01206973830451674 -0.5695959630956078 -0.8218362125402163 0.01206973830451689 0.5695959630956183 0.8218362125402089 -0.01206973830451674 0.5695959630956078 0.8218362125402163 -0.01206973830451689 -0.8219217463576529 0.5694921283640869 -0.01110669148433883 -0.8219217463576815 0.5694921283640458 -0.01110669148433823 0.8219217463576815 -0.5694921283640458 0.01110669148433823 0.8219217463576529 -0.5694921283640869 0.01110669148433883 -0.6464931587328081 0.7627940184155232 -0.01385211829196955 -0.6464931587328383 0.7627940184154974 -0.0138521182919692 0.6464931587328383 -0.7627940184154974 0.0138521182919692 0.6464931587328081 -0.7627940184155232 0.01385211829196955 -0.4270071307207497 0.9041127566886763 -0.01565354612970982 -0.4270071307208075 0.904112756688649 -0.01565354612970952 0.4270071307207497 -0.9041127566886763 0.01565354612970982 0.4270071307208075 -0.904112756688649 0.01565354612970952 -0.1784212724128489 0.9838177047104305 -0.0163882106674383 -0.1784212724127944 0.9838177047104404 -0.01638821066743834 0.1784212724128489 -0.9838177047104305 0.0163882106674383 0.1784212724127944 -0.9838177047104404 0.01638821066743834 0.08232370075506096 0.9964771019918361 -0.01600604573100539 0.08232370075498421 0.9964771019918426 -0.01600604573100566 -0.08232370075498421 -0.9964771019918426 0.01600604573100566 -0.08232370075506096 -0.9964771019918361 0.01600604573100539 0.3374584497627465 0.9412282315287737 -0.01453309522920989 0.3374584497627757 0.9412282315287631 -0.01453309522920966 -0.3374584497627757 -0.9412282315287631 0.01453309522920966 -0.3374584497627465 -0.9412282315287737 0.01453309522920989 0.5695959630956267 0.8218362125402021 -0.0120697383046012 0.5695959630956128 0.8218362125402118 -0.01206973830460139 -0.5695959630956128 -0.8218362125402118 0.01206973830460139 -0.5695959630956267 -0.8218362125402021 0.0120697383046012 0.7629164528453452 0.6464374138155843 -0.008783848660755073 0.7629164528453467 0.6464374138155827 -0.008783848660755045 -0.7629164528453467 -0.6464374138155827 0.008783848660755045 -0.7629164528453452 -0.6464374138155843 0.008783848660755073</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10569\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10567\">\r\n\t\t\t\t\t<float_array count=\"768\" id=\"ID10570\">-48.12508300034953 97.86699026343769 -48.93031557567484 98.34732028257874 -48.9303155172574 97.8669902254041 -48.12508305876803 98.34732032061237 -17.08841068104812 151.798337863185 -15.83225310059505 151.7983378440396 -17.08841070105034 150.4860019051835 -15.83225312059741 150.4860018860364 -48.12508305877046 98.34732032061305 -48.93031563409691 98.82765033975426 -48.93031557567775 98.3473202825794 -48.12508311718837 98.82765037778808 -22.69111351755763 151.7983377037872 -21.43495593710443 151.7983376981924 -22.69111352340183 150.4860017457836 -21.43495594294909 150.4860017401908 -25.94778477120734 65.60458195568249 -24.02193117581921 66.10170844790804 -25.037368533514 65.93214786657367 -22.97067307600547 66.10170842626373 -26.69113652690405 65.14133379071312 -21.95523573633961 65.93214780312391 -24.58672339533023 65.25414773089696 -27.21676560687692 64.57397296856304 -25.23091185441913 65.0223700333443 -25.75688953610199 64.69458686207024 -27.48885125796867 63.94116419165345 -26.12881193056799 64.29313609851815 -26.32133314126492 63.84537594879541 -27.48885129270047 63.28603233236501 -26.32133316584023 63.38182052714693 -27.21676570870504 62.65322354425162 -26.1288120026192 62.93406036949656 -25.75688965071894 62.53260959062931 -26.69113668888952 62.08586270045702 -25.23091200379081 62.20482639769663 -25.94778498231089 61.62261450487785 -24.58672356925381 61.97304867360915 -23.86822472434989 61.85307168723288 -25.03736877932579 61.29504855648915 -23.12437997798368 61.85307167191782 -22.4058811203586 61.9730486287077 -23.86822453768075 65.37412468769094 -21.04481953335462 65.60458185473509 -23.12437979128936 65.37412467237589 -22.40588094641164 65.25414768600378 -20.30146782677597 65.14133365915586 -21.7616925118746 65.02236996191631 -21.23571486494646 64.69458676898358 -19.77583880696025 64.57397281536144 -20.86379251304623 64.29313599011647 -19.50375322296499 63.94116402724796 -20.67127134982518 63.84537583246602 -20.67127137440052 63.3818204108175 -19.50375325769674 63.28603216795949 -20.8637925850975 62.93406026109485 -19.77583890878854 62.65322339105003 -21.2357149795634 62.53260949754274 -21.76169266124634 62.20482632626872 -20.30146798876133 62.08586256889991 -24.02193143963376 61.12548793334497 -21.04481974445805 61.62261440393063 -22.9706733398452 61.12548791170057 -21.95523598217492 61.29504849303088 -0.3751081403847385 31.81492964056861 0.5431660270391263 32.67207864762327 -1.040246386797064 30.74932043452101 1.651997248484669 33.26235416736071 -1.406920639897784 29.54787053587093 2.875820508640337 33.54552989858688 0.7110969215483975 30.92042789442229 0.2404612229502008 30.16642865317296 -1.450142655295883 28.29245676972118 -0.01898858947138571 29.31631183094548 -0.0495714397605842 28.42801148429014 -1.166966924069747 27.06863350956563 0.150796842788917 27.56206381384604 -0.5766914043323728 25.95980228812016 0.5684614908459271 26.77748172230732 1.174959348868697 26.12773318262938 0.2804576027225303 25.04152812069619 1.928958590118068 25.6570974840311 1.346066808769837 24.37638987428402 2.779075412345521 25.39764767160972 3.667375759000811 25.36706482132046 2.547516707420069 24.00971562118314 4.533323429413573 25.56743310386254 5.317905520978828 25.98509775193371 5.967654060678804 26.59159560997698 3.802930473569723 23.96649360578502 1.360845461226338 31.52692575244492 2.145427552765034 31.94459040050194 4.131234274789989 33.50230788318903 3.011375223209166 32.14495868305168 3.899675569864444 32.11437583276238 5.332684173440152 33.1356336300882 4.749792392091839 31.85492602034108 6.398293379487411 32.47049538367564 5.503791633341363 31.38429032174257 6.110289491364032 30.73454178206476 7.255442386542411 31.55222121625191 6.52795413942105 29.94995969052612 7.845717906279699 30.44338999480646 6.728322421970686 29.0840120200819 6.697739571681369 28.19571167342655 8.128893637506016 29.21956673465074 6.43828975925989 27.34559485119905 8.085671622107787 27.96415296850102 5.026753733693855 24.24966933700385 7.718997369007157 26.76270306985079 6.135584955165886 24.83994485675559 7.053859122611934 25.69709386383089 -48.12508294193196 97.38666020628796 -48.93031551725731 97.86699022540459 -48.9303154588392 97.38666016825428 -48.12508300035015 97.86699026343817 -10.36396342816301 151.7983378617356 -9.107805847772893 151.7983378303429 -10.36396346095987 150.4860019037324 -9.10780588056951 150.4860018723396 -44.06794261744795 96.44476102036458 -44.10218140489641 96.39324841460073 -43.45490900587118 96.16036114472469 -44.81244173276187 96.56907955193185 -44.82411994095921 96.5137997179389 -45.58320391749121 96.56907951552678 -45.5715256958477 96.51379968263696 -46.32770300254803 96.44476091363335 -46.29346420256967 96.39324831110389 -46.99520260560871 96.20459585352428 -46.94073654493161 96.16036098008904 -47.54021373181972 95.86495118715467 -47.46923218246974 95.8310085763366 -47.92559477360346 95.448973137248 -47.84293501086614 95.42763592188153 -48.03637779993872 94.97773219652042 -48.12508264983454 94.98500992046945 -48.0363777432916 94.51195759563535 -48.12508259141715 94.50467986330681 -47.84293484478502 94.06205388854775 -47.92559460233228 94.04071666537286 -47.46923191827286 93.65868126939459 -47.54021345936666 93.62473865187126 -46.94073620062355 93.32932891556649 -46.99520225054094 93.2850940369861 -46.3277025890629 93.04492903993253 -43.40044295595371 96.20459602330516 -42.85543174714216 95.86495140842878 -42.92641328823606 95.83100879090543 -42.47005060417659 95.44897339492722 -42.55271036172379 95.42763617175233 -42.27056261509171 94.98501019699322 -42.35926746321732 94.97773246466463 -42.27056255667434 94.50468013983061 -42.35926740657011 94.51195786377963 -42.47005043290542 94.04071692305202 -42.55271019564277 94.06205413841849 -42.85543147468911 93.62473887314545 -42.9264130240391 93.65868148396352 -43.45490866157729 93.329329080211 -43.40044260090021 93.28509420677571 -44.10218100393917 93.09644174919616 -44.06794220396084 93.0449291466667 -44.82411951066108 92.97589037766311 -44.81244128901766 92.92061054477327 -45.5715252655697 92.97589034236125 -45.58320347376701 92.92061050836817 -46.29346380161434 93.0964416456963 0.2625480303410761 31.72223515910069 -0.6278996471612777 32.55340995382074 -0.5431660270385947 32.67207864762096 -1.651997248483965 33.2623541673585 -1.703129922502514 33.1257983365964 -2.875820508639642 33.54552989858455 -2.889867629320353 33.40039298505823 -4.131234274789346 33.50230788318654 -4.107238554071859 33.35848072770255 -5.332684173439498 33.13563363008585 -5.27228088003575 33.00291781560483 -6.398293379486937 32.47049538367332 -6.305598898021392 32.35793527362901 -7.136773692741366 31.46748759612674 -7.255442386541779 31.55222121624941 -7.70916207551719 30.39225732078559 -7.845717906279161 30.44338999480401 -7.983756723978887 29.20551961396794 -8.128893637505341 29.2195667346485 -7.941844466623355 27.98814868921614 -8.085671622107221 27.9641529684986 -7.586281554525515 26.82310636325206 -7.718997369006585 26.76270306984844 -6.941299012567077 25.78978834529428 -6.13558495516528 24.83994485675299 -7.053859122611579 25.69709386382869 0.3751081403854344 31.81492964056616 1.04024638679777 30.74932043451882 0.9075305723168414 30.6889171411152 1.40692063989843 29.54787053586852 1.26309348441449 29.52387481515103 1.450142655296593 28.29245676971879 1.30500574177024 28.30650389039942 1.166966924070401 27.06863350956314 1.030411093308372 27.11976618358163 0.57669140433305 25.95980228811785 0.4580227105326666 26.04453590824052 -0.3731520841874545 25.15408823073804 -0.2804576027219365 25.04152812069368 -1.406470102172966 24.50910568876239 -1.346066808769146 24.37638987428147 -2.571512428136955 24.15354277666464 -2.547516707419411 24.00971562118066 -3.788883352888563 24.11163051930895 -3.802930473569127 23.96649360578263 -4.975621059674484 24.38622516776319 -5.026753733693019 24.2496693370014 -6.050851335042728 24.95861355055341 -48.12508311719071 98.82765037778539 -48.9303156925162 99.30798039690207 -48.93031563409841 98.82765033975157 -48.12508317560845 99.3079804349358 -26.79025699822596 151.7983374248944 -25.53409941783587 151.7983374332321 -26.79025698951451 150.4860014668908 -25.53409940912419 150.4860014752286 -48.93031481623495 92.1030295394721 -48.12508235774848 92.58335963466679 -48.93031487465272 92.58335959663319 -48.12508229933108 92.10302957750577 17.08841068104928 151.7983378631853 17.08841070105142 150.486001905183 15.83225310062657 151.7983378440407 15.8322531206286 150.4860018860377 -48.93031487465444 92.5833595966316 -48.12508241616635 93.06368969182691 -48.93031493307271 93.06368965379322 -48.12508235774897 92.5833596346652 22.69111351752548 151.7983377037882 22.69111352336988 150.4860017457851 21.43495593710281 151.798337698195 21.43495594294744 150.4860017401906 -48.93031493306899 93.06368965378816 -48.12508247458244 93.54401974898306 -48.930314991487 93.54401971094946 -48.12508241616354 93.06368969182184 26.7902569982259 151.7983374248962 26.79025698951461 150.4860014668918 25.53409941780323 151.7983374332334 25.53409940909172 150.4860014752305 -48.93031499149208 93.54401971095346 -48.12508253300496 94.02434980614876 -48.93031504991056 94.02434976811509 -48.12508247458679 93.54401974898705 29.10649126909278 151.7983370998491 29.10649124641899 150.4860011418462 27.85033368866995 151.7983371215521 27.85033366599635 150.4860011635486 -48.93031504990762 94.02434976811597 -48.1250825914203 94.50467986331154 -48.93031510832559 94.5046798252779 -48.12508253300153 94.02434980614962 29.48196879232544 151.7983368144098 29.48196875723476 150.4860008564064 28.22581121190277 151.7983368479973 28.22581117681208 150.4860008899951 -48.12508259141961 94.50467986330943 -48.93031516674333 94.98500988243789 -48.93031510832523 94.50467982527577 -48.12508264983705 94.98500992047158 26.63494381479971 151.7983366870562 27.89110139522244 151.79833664387 26.6349437696834 150.4860007290529 27.89110135010602 150.4860006858679 -48.12508264983939 94.98500992047225 -48.93031522516459 95.46533993960102 -48.9303151667462 94.98500988243856 -48.12508270825764 95.46533997763466 23.18614648144018 151.7983366828103 24.44230406186274 151.7983366329719 23.18614642937259 150.4860007248068 24.44230400979533 150.4860006749686 -48.93031522516689 95.46533993960094 -48.12508276667799 95.94567003479712 -48.9303152835852 95.94566999676344 -48.12508270825983 95.46533997763454 19.37060663110788 151.7983367839653 19.37060657563751 150.4860008259618 18.11444905068498 151.798336837061 18.11444899521481 150.4860008790572 -48.93031528358431 95.94566999676445 -48.12508282509455 96.42600009196097 -48.93031534200247 96.42600005392733 -48.12508276667637 95.94567003479813 13.02163690148757 151.7983370560735 13.02163684639481 150.4860010980696 11.76547932106507 151.7983371088079 11.76547926597226 150.486001150804 -48.93031534200367 96.42600005392829 -48.12508288351384 96.90633014912459 -48.93031540042179 96.90633011109094 -48.12508282509633 96.42600009196194 5.828066667907882 151.7983373764145 5.828066616946938 150.4860014184107 4.571909087485036 151.7983374251949 4.571909036524108 150.4860014671901 -48.93031540041859 96.90633011108834 -48.12508294192959 97.38666020628443 -48.9303154588365 97.38666016825079 -48.12508288351081 96.90633014912197 -1.719874146152006 151.7983376595498 -1.719874189508147 150.4860017015451 -2.976031726574656 151.798337701049 -2.976031769930738 150.4860017430456 -48.12508317561563 99.30798043493854 -48.93031575094122 99.78831045406744 -48.93031569252291 99.30798039690481 -48.12508323403357 99.78831049210116 -29.10649126909274 151.7983370998502 -27.85033368867006 151.7983371215527 -29.10649124641913 150.486001141846 -27.85033366599638 150.4860011635491 -48.12508323403033 99.7883104921015 -48.93031580935529 100.2686405112296 -48.93031575093666 99.7883104540678 -48.12508329244932 100.2686405492634 -29.48196879232582 151.7983368144098 -28.22581121190299 151.7983368479995 -29.48196875723497 150.4860008564061 -28.22581117681233 150.4860008899953 -48.93031580935494 100.2686405112296 -48.12508335086827 100.7489706064245 -48.93031586777313 100.7489705683908 -48.12508329245 100.2686405492634 -26.63494381479943 151.7983366870583 -26.63494376968288 150.4860007290546 -27.89110139522202 151.7983366438733 -27.8911013501057 150.4860006858697 -48.93031586777443 100.7489705683918 -48.12508340928692 101.2293006635867 -48.93031592619245 101.229300625553 -48.12508335086963 100.7489706064256 -23.18614648143995 151.7983366828112 -23.18614642937255 150.4860007248076 -24.44230406186262 151.7983366329742 -24.44230400979522 150.4860006749695 -48.1250834092892 101.2293006635832 -48.93031598461299 101.7096306827103 -48.9303159261943 101.2293006255495 -48.12508346770925 101.7096307207441 -19.37060663110773 151.798336783966 -18.11444905068511 151.7983368370645 -19.37060657563751 150.4860008259635 -18.11444899521491 150.4860008790598 -48.12508147794009 84.6799928641464 -48.9303140460201 85.16032288798056 -48.93031399483748 84.67999283082348 -48.12508152912197 85.16032292130353 -13.02163690148781 151.798337056077 -11.76547932106496 151.7983371088102 -13.02163684639492 150.4860010980733 -11.76547926597221 150.4860011508076 -48.12508152912407 85.16032292130292 -48.93031409720614 85.64065294513782 -48.9303140460235 85.16032288797993 -48.12508158030728 85.64065297846079 -5.828066667908018 151.7983373764155 -4.571909087485315 151.7983374251956 -5.828066616947099 150.4860014184126 -4.571909036524344 150.4860014671919 -48.12508158030659 85.6406529784593 -48.93031414839012 86.12098300229512 -48.93031409720703 85.64065294513635 -48.12508163148873 86.12098303561808 1.719874146151589 151.7983376595507 2.97603172657422 151.79833770105 1.719874189507776 150.4860017015463 2.976031769930351 150.4860017430472 -48.9303141480267 86.12098300165124 -48.12508168230292 86.60131309210945 -48.93031419919701 86.60131305878602 -48.12508163113135 86.12098303497466 10.36396342819687 151.7983378617385 10.36396346099357 150.4860019037341 9.107805847774138 151.7983378303446 9.107805880570828 150.4860018723423</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"384\" source=\"#ID10570\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10566\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10564\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10565\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10566\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10567\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 8 8 9 1 10 8 9 3 8 9 11 12 16 13 17 14 18 13 17 12 16 15 19 15 19 12 16 16 20 15 19 16 20 17 21 17 21 16 20 18 22 18 22 16 20 19 23 18 22 19 23 20 24 20 24 19 23 21 25 21 25 19 23 22 26 21 25 22 26 23 27 23 27 22 26 24 28 24 28 22 26 25 29 24 28 25 29 26 30 26 30 25 29 27 31 26 30 27 31 28 32 28 32 27 31 29 33 29 33 27 31 30 34 29 33 30 34 31 35 31 35 30 34 32 36 31 35 32 36 33 37 33 37 32 36 34 38 34 38 32 36 35 39 34 38 35 39 36 40 36 40 35 39 37 41 17 21 38 42 39 43 38 42 17 21 18 22 39 43 38 42 40 44 39 43 40 44 41 45 39 43 41 45 42 46 42 46 41 45 43 47 42 46 43 47 44 48 42 46 44 48 45 49 45 49 44 48 46 50 45 49 46 50 47 51 47 51 46 50 48 52 47 51 48 52 49 53 47 51 49 53 50 54 50 54 49 53 51 55 50 54 51 55 52 56 52 56 51 55 53 57 52 56 53 57 54 58 52 56 54 58 55 59 55 59 54 58 37 41 55 59 37 41 35 39 55 59 35 39 56 60 55 59 56 60 57 61 57 61 56 60 58 62 57 61 58 62 59 63 108 112 2 113 109 114 2 113 108 112 0 115 112 120 113 121 114 122 113 121 112 120 115 123 113 121 115 123 116 124 116 124 115 123 117 125 116 124 117 125 118 126 118 126 117 125 119 127 118 126 119 127 120 128 120 128 119 127 121 129 120 128 121 129 122 130 122 130 121 129 123 131 122 130 123 131 124 132 124 132 123 131 125 133 124 132 125 133 126 134 126 134 125 133 127 135 127 135 125 133 128 136 127 135 128 136 129 137 129 137 128 136 130 138 129 137 130 138 131 139 131 139 130 138 132 140 131 139 132 140 133 141 133 141 132 140 134 142 133 141 134 142 135 143 135 143 134 142 136 144 135 143 136 144 137 145 138 146 114 122 139 147 114 122 138 146 112 120 139 147 114 122 140 148 139 147 140 148 141 149 141 149 140 148 142 150 141 149 142 150 143 151 143 151 142 150 144 152 143 151 144 152 145 153 145 153 144 152 146 154 145 153 146 154 147 155 147 155 146 154 148 156 147 155 148 156 149 157 149 157 148 156 150 158 149 157 150 158 151 159 149 157 151 159 152 160 152 160 151 159 153 161 152 160 153 161 154 162 154 162 153 161 155 163 154 162 155 163 156 164 156 164 155 163 157 165 156 164 157 165 158 166 158 166 157 165 159 167 158 166 159 167 137 145 137 145 159 167 135 143 9 216 208 217 8 218 208 217 9 216 209 219 212 224 213 225 214 226 213 225 212 224 215 227 214 232 220 233 221 234 220 233 214 232 213 235 221 240 224 241 225 242 224 241 221 240 220 243 225 248 228 249 229 250 228 249 225 248 224 251 229 256 232 257 233 258 232 257 229 256 228 259 232 264 236 265 233 266 236 265 232 264 237 267 237 272 240 273 236 274 240 273 237 272 241 275 240 280 244 281 245 282 244 281 240 280 241 283 245 288 248 289 249 290 248 289 245 288 244 291 249 296 252 297 253 298 252 297 249 296 248 299 253 304 108 305 109 306 108 305 253 304 252 307 209 312 256 313 208 314 256 313 209 312 257 315 257 320 260 321 256 322 260 321 257 320 261 323 260 328 264 329 265 330 264 329 260 328 261 331 265 336 268 337 269 338 268 337 265 336 264 339 268 344 272 345 269 346 272 345 268 344 273 347 273 352 276 353 272 354 276 353 273 352 277 355 277 360 280 361 276 362 280 361 277 360 281 363 281 368 284 369 280 370 284 369 281 368 285 371 284 376 215 377 212 378 215 377 284 376 285 379</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10566\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10567\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 10 12 4 13 11 14 6 15 11 14 4 13 60 64 61 65 62 66 61 65 63 67 62 66 62 66 63 67 64 68 63 67 65 69 64 68 65 69 66 70 64 68 66 70 67 71 64 68 64 68 67 71 68 72 67 71 69 73 68 72 69 73 70 74 68 72 68 72 70 74 71 75 70 74 72 76 71 75 71 75 72 76 73 77 72 76 74 78 73 77 74 78 75 79 73 77 73 77 75 79 76 80 75 79 77 81 76 80 76 80 77 81 78 82 77 81 79 83 78 82 79 83 80 84 78 82 78 82 80 84 81 85 80 84 82 86 81 85 82 86 83 87 81 85 84 88 85 89 83 87 81 85 83 87 85 89 66 70 65 69 86 90 86 90 65 69 87 91 65 69 88 92 87 91 87 91 88 92 89 93 89 93 88 92 90 94 88 92 91 95 90 94 90 94 91 95 92 96 91 95 93 97 92 96 92 96 93 97 94 98 94 98 93 97 95 99 93 97 96 100 95 99 95 99 96 100 97 101 96 100 98 102 97 101 97 101 98 102 99 103 99 103 98 102 100 104 98 102 101 105 100 104 100 104 101 105 102 106 102 106 101 105 84 88 101 105 103 107 84 88 84 88 103 107 85 89 85 89 103 107 104 108 103 107 105 109 104 108 104 108 105 109 106 110 107 111 106 110 105 109 5 116 110 117 7 118 111 119 7 118 110 117 160 168 161 169 162 170 162 170 161 169 163 171 161 169 164 172 163 171 163 171 164 172 165 173 164 172 166 174 165 173 165 173 166 174 167 175 166 174 168 176 167 175 167 175 168 176 169 177 168 176 170 178 169 177 169 177 170 178 171 179 170 178 172 180 171 179 172 180 173 181 171 179 171 179 173 181 174 182 173 181 175 183 174 182 174 182 175 183 176 184 175 183 177 185 176 184 176 184 177 185 178 186 177 185 179 187 178 186 178 186 179 187 180 188 179 187 181 189 180 188 180 188 181 189 182 190 181 189 183 191 182 190 184 192 185 193 183 191 182 190 183 191 185 193 162 170 186 194 160 168 186 194 187 195 160 168 160 168 187 195 188 196 187 195 189 197 188 196 188 196 189 197 190 198 189 197 191 199 190 198 190 198 191 199 192 200 191 199 193 201 192 200 192 200 193 201 194 202 193 201 195 203 194 202 194 202 195 203 196 204 196 204 195 203 197 205 195 203 198 206 197 205 197 205 198 206 199 207 198 206 200 208 199 207 199 207 200 208 201 209 200 208 202 210 201 209 201 209 202 210 203 211 202 210 204 212 203 211 203 211 204 212 205 213 204 212 206 214 205 213 205 213 206 214 207 215 206 214 184 192 207 215 183 191 207 215 184 192 210 220 10 221 211 222 11 223 211 222 10 221 216 228 217 229 218 230 219 231 218 230 217 229 218 236 219 237 222 238 223 239 222 238 219 237 222 244 223 245 226 246 227 247 226 246 223 245 226 252 227 253 230 254 231 255 230 254 227 253 230 260 231 261 234 262 235 263 234 262 231 261 238 268 234 269 239 270 235 271 239 270 234 269 242 276 238 277 243 278 239 279 243 278 238 277 242 284 243 285 246 286 247 287 246 286 243 285 246 292 247 293 250 294 251 295 250 294 247 293 250 300 251 301 254 302 255 303 254 302 251 301 254 308 255 309 110 310 111 311 110 310 255 309 258 316 210 317 259 318 211 319 259 318 210 317 262 324 258 325 263 326 259 327 263 326 258 325 262 332 263 333 266 334 267 335 266 334 263 333 266 340 267 341 270 342 271 343 270 342 267 341 274 348 270 349 275 350 271 351 275 350 270 349 278 356 274 357 279 358 275 359 279 358 274 357 282 364 278 365 283 366 279 367 283 366 278 365 286 372 282 373 287 374 283 375 287 374 282 373 286 380 287 381 216 382 217 383 216 382 287 381</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10571\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10572\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10576\">-587.1576667547324 198.4581881710211 7798.72357528725 -601.5892364136635 242.5486308187641 7699.007736096252 -586.9345996549357 196.8505185492612 7699.783319640972 -601.8123035134643 244.156300440552 7797.94799174251 -601.8123035134643 244.156300440552 7797.94799174251 -587.1576667547324 198.4581881710211 7798.72357528725 -601.5892364136635 242.5486308187641 7699.007736096252 -586.9345996549357 196.8505185492612 7699.783319640972 -603.9153165888849 290.4824590257252 7698.223620157612 -604.138383688684 292.0901286475295 7797.163875803924 -604.138383688684 292.0901286475295 7797.163875803924 -603.9153165888849 290.4824590257252 7698.223620157612 -561.1731626915055 158.1100426733043 7799.437771701133 -560.9500955916974 156.5023730515198 7700.497516054877 -561.1731626915055 158.1100426733043 7799.437771701133 -560.9500955916974 156.5023730515198 7700.497516054877 -593.7543216613833 337.385391988931 7697.48440803056 -593.9773887611917 338.9930616107291 7796.424663676901 -593.9773887611917 338.9930616107291 7796.424663676901 -593.7543216613833 337.385391988931 7697.48440803056 -525.4065252321052 124.2538537583615 7701.101654032704 -525.6295923319116 125.8615233801467 7800.041909678962 -525.6295923319116 125.8615233801467 7800.041909678962 -525.4065252321052 124.2538537583615 7701.101654032704 -571.7987066430112 380.0610723426424 7696.840475799826 -572.0217737428111 381.6687419644314 7795.780731446042 -572.0217737428111 381.6687419644314 7795.780731446042 -571.7987066430112 380.0610723426424 7696.840475799826 -482.7261241585702 102.3026439678935 7701.554562569595 -482.949191258391 103.9103135896629 7800.494818215911 -482.949191258391 103.9103135896629 7800.494818215911 -482.7261241585702 102.3026439678935 7701.554562569595 -539.5447104142528 415.6012229939319 7696.33570638283 -539.767777514061 417.2088926157181 7795.275962029054 -539.767777514061 417.2088926157181 7795.275962029054 -539.5447104142528 415.6012229939319 7696.33570638283 -435.8174911715933 92.1446823512216 7701.825376697336 -436.0405582713964 93.75235197300196 7800.765632343589 -436.0405582713964 93.75235197300196 7800.765632343589 -435.8174911715933 92.1446823512216 7701.825376697336 -499.4134566156764 443.1915110305787 7794.944754627512 -499.1903895158756 441.5838414087863 7696.004498981192 -499.4134566156764 443.1915110305787 7794.944754627512 -499.1903895158756 441.5838414087863 7696.004498981192 -387.8773720890337 94.47221720572509 7701.895640880532 -388.1004391888342 96.07988682750136 7800.835896526824 -388.1004391888342 96.07988682750136 7800.835896526824 -387.8773720890337 94.47221720572509 7701.895640880532 -453.7088913282174 457.845924702341 7794.809680478194 -453.4858242283993 456.238255080557 7695.869424831936 -453.7088913282174 457.845924702341 7794.809680478194 -453.4858242283993 456.238255080557 7695.869424831936 -342.3958739013749 110.7343004992628 7800.700822377577 -342.1728068015723 109.1266308774838 7701.760566731233 -342.3958739013749 110.7343004992628 7800.700822377577 -342.1728068015723 109.1266308774838 7701.760566731233 -405.5457051458456 458.5657899350584 7695.939689015095 -405.7687722456392 460.173459556852 7794.879944661413 -405.7687722456392 460.173459556852 7794.879944661413 -405.5457051458456 458.5657899350584 7695.939689015095 -302.0415530029829 136.7169189141238 7800.369614975872 -301.8184859031834 135.10924929234 7701.429359329584 -302.0415530029829 136.7169189141238 7800.369614975872 -301.8184859031834 135.10924929234 7701.429359329584 -358.6370721588564 448.4078283183891 7696.210503142842 -358.8601392586567 450.0154979401881 7795.150758789106 -358.8601392586567 450.0154979401881 7795.150758789106 -358.6370721588564 448.4078283183891 7696.210503142842 -269.5644896744261 170.6493999436353 7700.924589912564 -269.7875567742406 172.2570695654105 7799.864845558866 -269.7875567742406 172.2570695654105 7799.864845558866 -269.5644896744261 170.6493999436353 7700.924589912564 -315.9566710853444 426.4566185279097 7696.663411679729 -316.1797381851369 428.0642881497084 7795.603667325965 -316.1797381851369 428.0642881497084 7795.603667325965 -315.9566710853444 426.4566185279097 7696.663411679729 -247.6088746560533 213.3250802973411 7700.280657681876 -247.8319417558641 214.9327499191201 7799.220913328193 -247.8319417558641 214.9327499191201 7799.220913328193 -247.6088746560533 213.3250802973411 7700.280657681876 -280.4131007257515 394.2080992347547 7697.267549657582 -280.6361678255464 395.8157688565399 7796.207805303801 -280.6361678255464 395.8157688565399 7796.207805303801 -280.4131007257515 394.2080992347547 7697.267549657582 -237.4478797281838 260.228013262261 7699.54144555481 -237.6709468279896 261.8356828840448 7798.481701201042 -237.6709468279896 261.8356828840448 7798.481701201042 -237.4478797281838 260.228013262261 7699.54144555481 -254.6516637613529 355.4676233573358 7796.922001717813 -254.4285966615528 353.85995373555 7697.981746071498 -254.6516637613529 355.4676233573358 7796.922001717813 -254.4285966615528 353.85995373555 7697.981746071498 -239.7739599033198 308.1618414675955 7698.757329616204 -239.9970270031286 309.7695110893852 7797.697585262499 -239.9970270031286 309.7695110893852 7797.697585262499 -239.7739599033198 308.1618414675955 7698.757329616204</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10576\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10573\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID10577\">-0.9042454471127027 -0.4269849736277784 0.004899354246612466 -0.9839516084955965 -0.1784342131132352 0.0006809769372063262 -0.9042454471127256 -0.42698497362773 0.004899354246611629 -0.9839516084955926 -0.1784342131132572 0.0006809769372066906 0.9839516084955926 0.1784342131132572 -0.0006809769372066906 0.9042454471127027 0.4269849736277784 -0.004899354246612466 0.9839516084955965 0.1784342131132352 -0.0006809769372063262 0.9042454471127256 0.42698497362773 -0.004899354246611629 -0.9966030938164221 0.08227654414842749 -0.003583807825154501 -0.9966030938164162 0.0822765441484976 -0.003583807825155628 0.9966030938164162 -0.0822765441484976 0.003583807825155628 0.9966030938164221 -0.08227654414842749 0.003583807825154501 -0.7629164528453482 -0.6464374138155821 0.00878384866067366 -0.7629164528453338 -0.6464374138155988 0.008783848660673966 0.7629164528453482 0.6464374138155821 -0.00878384866067366 0.7629164528453338 0.6464374138155988 -0.008783848660673966 -0.9413377252581443 0.3373802908948486 -0.007604362006749204 -0.9413377252581668 0.3373802908947858 -0.007604362006748234 0.9413377252581668 -0.3373802908947858 0.007604362006748234 0.9413377252581443 -0.3373802908948486 0.007604362006749204 -0.5695959630955841 -0.8218362125402328 0.01206973830451638 -0.5695959630955915 -0.8218362125402275 0.01206973830451628 0.5695959630955915 0.8218362125402275 -0.01206973830451628 0.5695959630955841 0.8218362125402328 -0.01206973830451638 -0.8219217463576651 0.569492128364069 -0.01110669148436275 -0.8219217463577249 0.569492128363983 -0.01110669148436149 0.8219217463577249 -0.569492128363983 0.01110669148436149 0.8219217463576651 -0.569492128364069 0.01110669148436275 -0.3374584497627904 -0.9412282315287598 0.0145330952290776 -0.3374584497627841 -0.9412282315287622 0.01453309522907765 0.3374584497627841 0.9412282315287622 -0.01453309522907765 0.3374584497627904 0.9412282315287598 -0.0145330952290776 -0.6464931587328439 0.7627940184154922 -0.01385211829200239 -0.6464931587327422 0.7627940184155784 -0.01385211829200355 0.6464931587327422 -0.7627940184155784 0.01385211829200355 0.6464931587328439 -0.7627940184154922 0.01385211829200239 -0.08232370075508798 -0.9964771019918363 0.01600604573085545 -0.08232370075503311 -0.9964771019918408 0.01600604573085564 0.08232370075503311 0.9964771019918408 -0.01600604573085564 0.08232370075508798 0.9964771019918363 -0.01600604573085545 -0.4270071307207485 0.9041127566886763 -0.01565354612974449 -0.427007130720828 0.9041127566886387 -0.01565354612974406 0.4270071307207485 -0.9041127566886763 0.01565354612974449 0.427007130720828 -0.9041127566886387 0.01565354612974406 0.1784212724128466 -0.9838177047104328 0.01638821066731975 0.1784212724128452 -0.9838177047104331 0.01638821066731975 -0.1784212724128452 0.9838177047104331 -0.01638821066731975 -0.1784212724128466 0.9838177047104328 -0.01638821066731975 -0.1784212724128714 0.983817704710426 -0.0163882106674548 -0.1784212724127738 0.9838177047104436 -0.01638821066745488 0.1784212724128714 -0.983817704710426 0.0163882106674548 0.1784212724127738 -0.9838177047104436 0.01638821066745488 0.427007130720768 -0.9041127566886695 0.01565354612961309 0.4270071307208154 -0.904112756688647 0.01565354612961283 -0.427007130720768 0.9041127566886695 -0.01565354612961309 -0.4270071307208154 0.904112756688647 -0.01565354612961283 0.08232370075501065 0.9964771019918405 -0.0160060457309884 0.08232370075505169 0.9964771019918371 -0.01600604573098826 -0.08232370075505169 -0.9964771019918371 0.01600604573098826 -0.08232370075501065 -0.9964771019918405 0.0160060457309884 0.6464931587327932 -0.7627940184155374 0.01385211829187245 0.6464931587328306 -0.7627940184155057 0.01385211829187202 -0.6464931587327932 0.7627940184155374 -0.01385211829187245 -0.6464931587328306 0.7627940184155057 -0.01385211829187202 0.3374584497627599 0.9412282315287687 -0.01453309522920345 0.3374584497627207 0.9412282315287829 -0.01453309522920377 -0.3374584497627207 -0.9412282315287829 0.01453309522920377 -0.3374584497627599 -0.9412282315287687 0.01453309522920345 0.8219217463576743 -0.5694921283640583 0.01110669148423358 0.8219217463576898 -0.569492128364036 0.01110669148423325 -0.8219217463576898 0.569492128364036 -0.01110669148423325 -0.8219217463576743 0.5694921283640583 -0.01110669148423358 0.5695959630956307 0.8218362125401988 -0.0120697383046385 0.5695959630955848 0.8218362125402304 -0.01206973830463911 -0.5695959630955848 -0.8218362125402304 0.01206973830463911 -0.5695959630956307 -0.8218362125401988 0.0120697383046385 0.9413377252581298 -0.3373802908948926 0.007604362006617685 0.9413377252581392 -0.3373802908948659 0.007604362006617272 -0.9413377252581392 0.3373802908948659 -0.007604362006617272 -0.9413377252581298 0.3373802908948926 -0.007604362006617685 0.7629164528453275 0.6464374138156046 -0.00878384866079937 0.7629164528453898 0.6464374138155312 -0.008783848660798038 -0.7629164528453898 -0.6464374138155312 0.008783848660798038 -0.7629164528453275 -0.6464374138156046 0.00878384866079937 0.9966030938164217 -0.08227654414843824 0.00358380782505104 0.9966030938164201 -0.08227654414845732 0.003583807825051345 -0.9966030938164201 0.08227654414845732 -0.003583807825051345 -0.9966030938164217 0.08227654414843824 -0.00358380782505104 0.9042454471127364 0.4269849736277058 -0.004899354246713369 0.9042454471127038 0.4269849736277747 -0.004899354246714561 -0.9042454471127364 -0.4269849736277058 0.004899354246713369 -0.9042454471127038 -0.4269849736277747 0.004899354246714561 0.9839516084955897 0.1784342131132718 -0.000680976937279768 0.9839516084955867 0.1784342131132885 -0.0006809769372800464 -0.9839516084955867 -0.1784342131132885 0.0006809769372800464 -0.9839516084955897 -0.1784342131132718 0.000680976937279768</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID10577\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10575\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID10578\">-16.93664732044788 67.11444575987834 -17.68049212639082 66.15874422155143 -16.93664738000003 66.15874420355063 -17.68049206683911 67.11444577787894 -16.90474520704435 152.4278367069569 -16.01591855541071 152.4278366934103 -16.90474523497418 150.5953632322163 -16.01591858334106 150.5953632186693 -17.68049206683959 67.11444577788009 -18.42433687278207 66.15874423955319 -17.68049212639128 66.15874422155258 -18.42433681323062 67.11444579588124 -22.50744805034378 152.4278365495405 -21.61862139871038 152.4278365455816 -22.50744805850441 150.5953630747989 -21.61862140687129 150.595363070841 -16.19280257411027 67.11444574187844 -16.93664738000028 66.15874420355199 -16.19280263366198 66.15874418555114 -16.93664732044815 67.11444575987952 -10.18029794802164 152.4278367037175 -9.29147129645157 152.4278366815043 -10.18029799381749 150.5953632289765 -9.291471342246915 150.5953632067638 -18.42433681323038 67.11444579588024 -19.16818161912025 66.15874425755307 -18.42433687278183 66.15874423955214 -19.16818155956866 67.11444581388146 -26.60659153799461 152.4278362726851 -25.71776488642429 152.4278362785845 -26.60659152583033 150.5953627979429 -25.71776487425985 150.5953628038429 -15.44895788729605 66.15874416754886 -16.19280257410987 67.11444574187729 -16.1928026336616 66.15874418554975 -15.4489578277443 67.11444572387643 -1.903539589763899 152.4278365121885 -1.903539650303887 150.5953630374479 -2.792366241366846 152.427836541553 -2.79236630190682 150.5953630668124 -19.16818155956886 67.1144458138826 -19.912026365486 66.15874427555511 -19.16818161912046 66.1587442575543 -19.91202630593436 67.11444583188218 -28.92282581555886 152.427835949592 -28.03399916395593 152.4278359649509 -28.92282578389856 150.5953624748522 -28.03399913229559 150.5953624902088 -14.70511314092873 66.15874414954836 -15.44895782774243 67.11444572387676 -15.4489578872942 66.15874416754953 -14.70511308137704 67.11444570587611 5.644401227942148 152.4278362301176 5.644401156783319 150.5953627553759 4.755574576339113 152.4278362646322 4.75557450518019 150.5953627898916 -26.45349014900001 67.11444563640481 -27.19733483098575 66.1587440606168 -26.45349008461971 66.15874408007718 -27.19733489536593 67.11444561694449 -29.29830334474775 152.4278356658914 -28.40947669314482 152.4278356896577 -29.2983032957491 150.5953621911515 -28.40947664414603 150.5953622149179 -13.96126839456349 66.15874413154891 -14.70511308137711 67.11444570587712 -14.70511314092875 66.15874414954932 -13.96126833501162 67.1144456878761 12.83797146350405 152.4278359103545 12.83797138657548 150.595362435614 11.9491448119009 152.4278359476684 11.9491447349726 150.5953624729267 -27.19733483098655 66.15874406061766 -27.94117964173274 67.11444559748624 -27.9411795773524 66.15874404115753 -27.19733489536675 67.11444561694543 -26.81860930085097 152.4278355273147 -26.81860923785302 150.5953620525747 -27.70743595245394 152.4278354967603 -27.70743588945582 150.5953620220185 -13.21742364819755 66.1587441135438 -13.96126833501132 67.11444568787243 -13.96126839456318 66.15874413154475 -13.21742358864564 67.11444566987184 19.18694119330605 152.4278356382997 19.18694111585044 150.5953621635584 18.29811454170314 152.4278356758682 18.29811446424757 150.5953622011278 -27.94117957735165 66.15874404115736 -28.68502438809778 67.11444557802489 -28.68502432371774 66.15874402169698 -27.94117964173197 67.11444559748584 -23.3698119708254 152.4278355220972 -23.36981189812119 150.5953620473555 -24.25863862242831 152.4278354868316 -24.25863854972445 150.595362012091 -12.47357884227972 67.11444565187429 -13.21742364819735 66.15874411354697 -12.47357890183161 66.15874409554567 -13.21742358864544 67.11444566987512 23.36981197082525 152.4278355220946 24.25863862242815 152.4278354868302 23.36981189812112 150.5953620473533 24.25863854972405 150.595362012088 -28.68502438809683 67.11444557802693 -29.42886907008221 66.15874400223861 -28.6850243237168 66.15874402169941 -29.42886913446263 67.1144455585667 -19.18694119330719 152.4278356383021 -18.29811454170396 152.427835675871 -19.18694111585143 150.5953621635604 -18.29811446424866 150.5953622011304 -11.72973409591325 67.11444563387137 -12.47357890183105 66.15874409554402 -11.72973415546522 66.15874407754328 -12.47357884227916 67.11444565187267 26.81860930085055 152.427835527315 27.70743595245365 152.4278354967576 26.8186092378526 150.5953620525728 27.7074358894556 150.5953620220164 -29.42886913446185 67.11444555856848 -30.17271381644712 66.15874398278045 -29.42886907008142 66.15874400224033 -30.17271388082742 67.11444553910808 -12.83797146350394 152.4278359103576 -11.949144811901 152.4278359476712 -12.83797138657539 150.5953624356169 -11.9491447349723 150.5953624729295 5.090457576249666 66.15874385528356 4.346612870889878 67.11444542400707 4.346612829883646 66.15874386767885 5.090457617255641 67.11444541161191 29.29830334474772 152.4278356658926 29.29830329574931 150.5953621911512 28.40947669314489 152.4278356896593 28.40947664414618 150.5953622149181 -30.172713880827 67.11444553910927 -30.91655856281214 66.15874396332099 -30.17271381644671 66.15874398278174 -30.91655862719252 67.11444551964824 -5.644401227942636 152.42783623012 -4.755574576339663 152.4278362646363 -5.644401156783603 150.5953627553798 -4.755574505180757 150.5953627898956 5.834302322615679 66.15874384288884 5.090457617255892 67.11444541161188 5.090457576249889 66.15874385528352 5.834302363621757 67.11444539921737 28.92282581555872 152.4278359495957 28.92282578389871 150.595362474854 28.03399916395576 152.4278359649512 28.03399913229584 150.5953624902098 -30.91655862719298 67.11444551964674 -31.66040330917808 66.15874394385926 -30.9165585628126 66.15874396331945 -31.66040337355858 67.11444550018639 1.903539589765058 152.4278365121907 2.792366241368096 152.427836541555 1.903539650305196 150.5953630374508 2.792366301908097 150.5953630668148 6.578147068981681 66.15874383049319 5.834302363621933 67.11444539921658 5.834302322615815 66.15874384288807 6.578147109987908 67.1144453868209 26.6065915379945 152.4278362726856 26.60659152583043 150.5953627979455 25.71776488639141 152.4278362785869 25.71776487422748 150.5953628038452 -4.537667324851395 66.15874440530406 -5.28151209459123 67.11444595456698 -5.281512071217193 66.1587443982386 -4.537667348225463 67.11444596163152 10.18029794805313 152.4278367037202 10.18029799384858 150.5953632289803 9.291471296450176 152.427836681509 9.2914713422456 150.5953632067674 -6.025356817583073 66.15874439117368 -6.769201587322942 67.11444594043608 -6.769201563948852 66.15874438410852 -6.025356840957086 67.11444594750186 22.50744805031255 152.4278365495425 22.50744805847343 150.5953630748012 21.6186213987095 152.4278365455832 21.61862140687048 150.5953630708431 -5.281512071217153 66.1587443982384 -6.025356840956944 67.11444594750141 -6.025356817582971 66.15874439117324 -5.281512094591229 67.11444595456676 16.90474520704572 152.4278367069602 16.9047452349756 150.5953632322186 16.01591855544282 152.427836693413 16.01591858337259 150.5953632186717</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10578\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10574\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10572\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10573\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10574\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10575\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 8 8 9 1 10 8 9 3 8 9 11 12 16 2 17 13 18 2 17 12 16 0 19 9 24 16 25 8 26 16 25 9 24 17 27 20 32 12 33 13 34 12 33 20 32 21 35 17 40 24 41 16 42 24 41 17 40 25 43 28 48 21 49 20 50 21 49 28 48 29 51 25 56 32 57 24 58 32 57 25 56 33 59 36 64 29 65 28 66 29 65 36 64 37 67 32 72 40 73 41 74 40 73 32 72 33 75 44 80 37 81 36 82 37 81 44 80 45 83 41 88 48 89 49 90 48 89 41 88 40 91 52 96 44 97 53 98 44 97 52 96 45 99 48 104 56 105 49 106 56 105 48 104 57 107 60 112 53 113 61 114 53 113 60 112 52 115 57 120 64 121 56 122 64 121 57 120 65 123 68 128 60 129 61 130 60 129 68 128 69 131 65 136 72 137 64 138 72 137 65 136 73 139 76 144 69 145 68 146 69 145 76 144 77 147 73 152 80 153 72 154 80 153 73 152 81 155 84 160 77 161 76 162 77 161 84 160 85 163 80 168 88 169 89 170 88 169 80 168 81 171 92 176 85 177 84 178 85 177 92 176 93 179 89 184 93 185 92 186 93 185 89 184 88 187</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10574\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10575\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 10 12 4 13 11 14 6 15 11 14 4 13 5 20 14 21 7 22 15 23 7 22 14 21 18 28 10 29 19 30 11 31 19 30 10 29 22 36 23 37 14 38 15 39 14 38 23 37 26 44 18 45 27 46 19 47 27 46 18 45 30 52 31 53 22 54 23 55 22 54 31 53 34 60 26 61 35 62 27 63 35 62 26 61 38 68 39 69 30 70 31 71 30 70 39 69 34 76 35 77 42 78 43 79 42 78 35 77 46 84 47 85 38 86 39 87 38 86 47 85 42 92 43 93 50 94 51 95 50 94 43 93 46 100 54 101 47 102 55 103 47 102 54 101 58 108 50 109 59 110 51 111 59 110 50 109 54 116 62 117 55 118 63 119 55 118 62 117 66 124 58 125 67 126 59 127 67 126 58 125 70 132 71 133 62 134 63 135 62 134 71 133 74 140 66 141 75 142 67 143 75 142 66 141 78 148 79 149 70 150 71 151 70 150 79 149 82 156 74 157 83 158 75 159 83 158 74 157 86 164 87 165 78 166 79 167 78 166 87 165 82 172 83 173 90 174 91 175 90 174 83 173 94 180 95 181 86 182 87 183 86 182 95 181 90 188 91 189 94 190 95 191 94 190 91 189</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10579\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10580\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10584\">-253.0546259776534 79.73943464203524 7861.90927080092 -309.9500564883502 42.03596898712146 7801.890245370895 -252.9182539339404 78.75658601879093 7801.422157822407 -310.0864285320612 43.01881761036964 7862.37735834927 -310.0864285320612 43.01881761036964 7862.37735834927 -253.0546259776534 79.73943464203524 7861.90927080092 -309.9500564883502 42.03596898712146 7801.890245370895 -252.9182539339404 78.75658601879093 7801.422157822407 -374.5432322692878 21.3252344617357 7802.081142455448 -374.6796043129971 22.30808308497979 7862.56825543391 -374.6796043129971 22.30808308497979 7862.56825543391 -374.5432322692878 21.3252344617357 7802.081142455448 -665.5042316646343 364.6286506432692 7795.846851918025 -676.5771304581898 230.5981102315508 7797.999735265686 -679.8645242817967 298.341850309202 7796.89156284713 -655.8660806494852 166.0140543481433 7799.095849054837 -634.4748828164171 424.9411753401188 7794.936797801879 -619.1427986753964 108.9909793400901 7800.105205871033 -604.138383688684 292.0901286475295 7797.163875803924 -588.8910765831046 475.1692255110551 7794.223419182524 -593.9773887611917 338.9930616107291 7796.424663676901 -572.0217737428111 381.6687419644314 7795.780731446042 -531.8592740286971 511.8898425427259 7793.75533163419 -539.767777514061 417.2088926157181 7795.275962029054 -499.4134566156764 443.1915110305787 7794.944754627512 -467.2660982477605 532.6005770681057 7793.564434549541 -453.7088913282174 457.845924702341 7794.809680478194 -399.5134674244919 535.8900267554108 7793.663737249498 -405.7687722456392 460.173459556852 7794.879944661413 -358.8601392586567 450.0154979401881 7795.150758789106 -333.2186113829957 521.5340210445046 7794.046472419322 -316.1797381851369 428.0642881497084 7795.603667325965 -272.8994150050601 490.5108980001706 7794.686557289538 -280.6361678255464 395.8157688565399 7796.207805303801 -254.6516637613529 355.4676233573358 7796.922001717813 -222.6665318416551 444.9348321897568 7795.540371133969 -239.9970270031286 309.7695110893852 7797.697585262499 -237.6709468279896 261.8356828840448 7798.481701201042 -601.8123035134643 244.156300440552 7797.94799174251 -568.9099155119958 63.41491352966921 7800.959019715548 -587.1576667547324 198.4581881710211 7798.72357528725 -561.1731626915055 158.1100426733043 7799.437771701133 -508.5907191340519 32.39179048534322 7801.599104585671 -525.6295923319116 125.8615233801467 7800.041909678962 -482.949191258391 103.9103135896629 7800.494818215911 -442.295863092543 18.03578477444592 7801.981839755429 -436.0405582713964 93.75235197300196 7800.765632343589 -374.5432322692878 21.3252344617357 7802.081142455448 -388.1004391888342 96.07988682750136 7800.835896526824 -342.3958739013749 110.7343004992628 7800.700822377577 -309.9500564883502 42.03596898712146 7801.890245370895 -302.0415530029829 136.7169189141238 7800.369614975872 -252.9182539339404 78.75658601879093 7801.422157822407 -269.7875567742406 172.2570695654105 7799.864845558866 -247.8319417558641 214.9327499191201 7799.220913328193 -207.3344477006142 128.984636189739 7800.708779203155 -185.9432498665988 387.9117571802177 7796.54972795017 -176.3050988524044 189.2971608865715 7799.798725086916 -165.2322000584043 323.3277012983807 7797.64584173928 -161.944806234877 255.5839612223732 7798.754014157831 -161.944806234877 255.5839612223732 7798.754014157831 -165.2322000584043 323.3277012983807 7797.64584173928 -176.3050988524044 189.2971608865715 7799.798725086916 -185.9432498665988 387.9117571802177 7796.54972795017 -207.3344477006142 128.984636189739 7800.708779203155 -222.6665318416551 444.9348321897568 7795.540371133969 -237.6709468279896 261.8356828840448 7798.481701201042 -247.8319417558641 214.9327499191201 7799.220913328193 -252.9182539339404 78.75658601879093 7801.422157822407 -269.7875567742406 172.2570695654105 7799.864845558866 -302.0415530029829 136.7169189141238 7800.369614975872 -309.9500564883502 42.03596898712146 7801.890245370895 -342.3958739013749 110.7343004992628 7800.700822377577 -374.5432322692878 21.3252344617357 7802.081142455448 -388.1004391888342 96.07988682750136 7800.835896526824 -436.0405582713964 93.75235197300196 7800.765632343589 -442.295863092543 18.03578477444592 7801.981839755429 -482.949191258391 103.9103135896629 7800.494818215911 -508.5907191340519 32.39179048534322 7801.599104585671 -525.6295923319116 125.8615233801467 7800.041909678962 -561.1731626915055 158.1100426733043 7799.437771701133 -568.9099155119958 63.41491352966921 7800.959019715548 -587.1576667547324 198.4581881710211 7798.72357528725 -601.8123035134643 244.156300440552 7797.94799174251 -604.138383688684 292.0901286475295 7797.163875803924 -619.1427986753964 108.9909793400901 7800.105205871033 -239.9970270031286 309.7695110893852 7797.697585262499 -254.6516637613529 355.4676233573358 7796.922001717813 -272.8994150050601 490.5108980001706 7794.686557289538 -280.6361678255464 395.8157688565399 7796.207805303801 -316.1797381851369 428.0642881497084 7795.603667325965 -333.2186113829957 521.5340210445046 7794.046472419322 -358.8601392586567 450.0154979401881 7795.150758789106 -399.5134674244919 535.8900267554108 7793.663737249498 -405.7687722456392 460.173459556852 7794.879944661413 -453.7088913282174 457.845924702341 7794.809680478194 -467.2660982477605 532.6005770681057 7793.564434549541 -499.4134566156764 443.1915110305787 7794.944754627512 -531.8592740286971 511.8898425427259 7793.75533163419 -539.767777514061 417.2088926157181 7795.275962029054 -572.0217737428111 381.6687419644314 7795.780731446042 -588.8910765831046 475.1692255110551 7794.223419182524 -593.9773887611917 338.9930616107291 7796.424663676901 -634.4748828164171 424.9411753401188 7794.936797801879 -655.8660806494852 166.0140543481433 7799.095849054837 -665.5042316646343 364.6286506432692 7795.846851918025 -676.5771304581898 230.5981102315508 7797.999735265686 -679.8645242817967 298.341850309202 7796.89156284713 -207.3344477006142 128.984636189739 7800.708779203155 -207.4708197443299 129.9674848129799 7861.195892181572 -207.4708197443299 129.9674848129799 7861.195892181572 -207.3344477006142 128.984636189739 7800.708779203155 -676.7135025018903 231.5809588547917 7858.48684824417 -668.9658520413201 232.9859526588363 7858.481486221034 -672.1536278702931 298.6768521281389 7857.406894784847 -656.0024526931761 166.9969029713749 7859.582962033214 -648.8824098025674 170.3589893778827 7859.544384440734 -619.279170719098 109.9738279633326 7860.592318849452 -613.2719545549901 115.0638863398073 7860.523154686784 -569.0462875556983 64.39776215291442 7861.446132694003 -564.5612799722891 70.86891343273271 7861.351095384446 -508.7270911777566 33.37463910858708 7862.086217564091 -506.0699380300398 40.78588502609875 7861.971783743426 -442.4322351362565 19.01863339768477 7862.468952733886 -441.7840170200777 26.864909791282 7862.342920877699 -374.6796043129971 22.30808308497979 7862.56825543391 -376.0844962217503 30.05467918502893 7862.439214404999 -313.448689403864 50.1378156944885 7862.254102080532 -310.0864285320612 43.01881761036964 7862.37735834927 -258.1451232904808 85.74568675550938 7861.800199003314 -253.0546259776534 79.73943464203524 7861.90927080092 -213.9426445187719 134.4516748000766 7861.10843791792 -207.4708197443299 129.9674848129799 7861.195892181572 -183.8535789689831 192.9365472333815 7860.22596119914 -176.4414708961244 190.2800095098172 7860.285838065373 -169.9284467337993 257.2146566499322 7859.212908177015 -162.0811782785822 256.5668098456198 7859.241127136255 -165.3685721021184 324.3105499216171 7858.132954717748 -680.0008963254901 299.3246989324547 7857.378675825597 -665.640603708341 365.6114992665124 7856.333964896511 -658.2284956354673 362.9549615429468 7856.393841762788 -634.6112548601237 425.9240239633483 7855.42391078026 -628.1394300856899 421.4398339762601 7855.511365043953 -589.0274486268146 476.152074134293 7854.710532160948 -583.9369513139839 470.1458220208118 7854.819603958537 -531.9956460723981 512.8726911659577 7854.242444612565 -528.6333852006114 505.7536930818338 7854.365700881303 -467.4024702914693 533.5834256913412 7854.051547528047 -465.9975783827218 525.8368295913014 7854.180588556837 -399.6498394682019 536.8728753786421 7854.150850227937 -400.2980575843793 529.0265989850458 7854.276882084095 -336.012136574432 515.1056237502274 7854.648019218462 -333.3549834267066 522.5168696677382 7854.533585397782 -277.5207946321739 485.0225953436017 7855.268707577406 -273.035787048766 491.4937466234095 7855.17367026792 -228.8101200494734 440.8276224365167 7856.096648275073 -222.8029038853583 445.9176808129986 7856.027484112427 -193.199664800924 385.5325193969585 7857.07541852114 -186.0796219103122 388.8946058034557 7857.036840928636 -173.1162225626745 322.90555611758 7858.138316740829 -169.9284467337993 257.2146566499322 7859.212908177015 -173.1162225626745 322.90555611758 7858.138316740829 -165.3685721021184 324.3105499216171 7858.132954717748 -186.0796219103122 388.8946058034557 7857.036840928636 -193.199664800924 385.5325193969585 7857.07541852114 -222.8029038853583 445.9176808129986 7856.027484112427 -228.8101200494734 440.8276224365167 7856.096648275073 -273.035787048766 491.4937466234095 7855.17367026792 -277.5207946321739 485.0225953436017 7855.268707577406 -333.3549834267066 522.5168696677382 7854.533585397782 -336.012136574432 515.1056237502274 7854.648019218462 -399.6498394682019 536.8728753786421 7854.150850227937 -400.2980575843793 529.0265989850458 7854.276882084095 -465.9975783827218 525.8368295913014 7854.180588556837 -467.4024702914693 533.5834256913412 7854.051547528047 -528.6333852006114 505.7536930818338 7854.365700881303 -531.9956460723981 512.8726911659577 7854.242444612565 -583.9369513139839 470.1458220208118 7854.819603958537 -589.0274486268146 476.152074134293 7854.710532160948 -628.1394300856899 421.4398339762601 7855.511365043953 -634.6112548601237 425.9240239633483 7855.42391078026 -658.2284956354673 362.9549615429468 7856.393841762788 -665.640603708341 365.6114992665124 7856.333964896511 -672.1536278702931 298.6768521281389 7857.406894784847 -676.7135025018903 231.5809588547917 7858.48684824417 -680.0008963254901 299.3246989324547 7857.378675825597 -162.0811782785822 256.5668098456198 7859.241127136255 -176.4414708961244 190.2800095098172 7860.285838065373 -183.8535789689831 192.9365472333815 7860.22596119914 -207.4708197443299 129.9674848129799 7861.195892181572 -213.9426445187719 134.4516748000766 7861.10843791792 -253.0546259776534 79.73943464203524 7861.90927080092 -258.1451232904808 85.74568675550938 7861.800199003314 -310.0864285320612 43.01881761036964 7862.37735834927 -313.448689403864 50.1378156944885 7862.254102080532 -374.6796043129971 22.30808308497979 7862.56825543391 -376.0844962217503 30.05467918502893 7862.439214404999 -441.7840170200777 26.864909791282 7862.342920877699 -442.4322351362565 19.01863339768477 7862.468952733886 -506.0699380300398 40.78588502609875 7861.971783743426 -508.7270911777566 33.37463910858708 7862.086217564091 -564.5612799722891 70.86891343273271 7861.351095384446 -569.0462875556983 64.39776215291442 7861.446132694003 -613.2719545549901 115.0638863398073 7860.523154686784 -619.279170719098 109.9738279633326 7860.592318849452 -648.8824098025674 170.3589893778827 7859.544384440734 -656.0024526931761 166.9969029713749 7859.582962033214 -668.9658520413201 232.9859526588363 7858.481486221034 -442.4322351362565 19.01863339768477 7862.468952733886 -442.295863092543 18.03578477444592 7801.981839755429 -442.4322351362565 19.01863339768477 7862.468952733886 -442.295863092543 18.03578477444592 7801.981839755429 -185.9432498665988 387.9117571802177 7796.54972795017 -165.3685721021184 324.3105499216171 7858.132954717748 -165.2322000584043 323.3277012983807 7797.64584173928 -186.0796219103122 388.8946058034557 7857.036840928636 -186.0796219103122 388.8946058034557 7857.036840928636 -185.9432498665988 387.9117571802177 7796.54972795017 -165.3685721021184 324.3105499216171 7858.132954717748 -165.2322000584043 323.3277012983807 7797.64584173928 -162.0811782785822 256.5668098456198 7859.241127136255 -161.944806234877 255.5839612223732 7798.754014157831 -162.0811782785822 256.5668098456198 7859.241127136255 -161.944806234877 255.5839612223732 7798.754014157831 -176.4414708961244 190.2800095098172 7860.285838065373 -176.3050988524044 189.2971608865715 7799.798725086916 -176.4414708961244 190.2800095098172 7860.285838065373 -176.3050988524044 189.2971608865715 7799.798725086916 -508.7270911777566 33.37463910858708 7862.086217564091 -508.5907191340519 32.39179048534322 7801.599104585671 -508.7270911777566 33.37463910858708 7862.086217564091 -508.5907191340519 32.39179048534322 7801.599104585671 -569.0462875556983 64.39776215291442 7861.446132694003 -568.9099155119958 63.41491352966921 7800.959019715548 -569.0462875556983 64.39776215291442 7861.446132694003 -568.9099155119958 63.41491352966921 7800.959019715548 -619.279170719098 109.9738279633326 7860.592318849452 -619.1427986753964 108.9909793400901 7800.105205871033 -619.279170719098 109.9738279633326 7860.592318849452 -619.1427986753964 108.9909793400901 7800.105205871033 -655.8660806494852 166.0140543481433 7799.095849054837 -656.0024526931761 166.9969029713749 7859.582962033214 -656.0024526931761 166.9969029713749 7859.582962033214 -655.8660806494852 166.0140543481433 7799.095849054837 -676.5771304581898 230.5981102315508 7797.999735265686 -676.7135025018903 231.5809588547917 7858.48684824417 -676.7135025018903 231.5809588547917 7858.48684824417 -676.5771304581898 230.5981102315508 7797.999735265686 -679.8645242817967 298.341850309202 7796.89156284713 -680.0008963254901 299.3246989324547 7857.378675825597 -680.0008963254901 299.3246989324547 7857.378675825597 -679.8645242817967 298.341850309202 7796.89156284713 -665.5042316646343 364.6286506432692 7795.846851918025 -665.640603708341 365.6114992665124 7856.333964896511 -665.640603708341 365.6114992665124 7856.333964896511 -665.5042316646343 364.6286506432692 7795.846851918025 -634.4748828164171 424.9411753401188 7794.936797801879 -634.6112548601237 425.9240239633483 7855.42391078026 -634.6112548601237 425.9240239633483 7855.42391078026 -634.4748828164171 424.9411753401188 7794.936797801879 -588.8910765831046 475.1692255110551 7794.223419182524 -589.0274486268146 476.152074134293 7854.710532160948 -589.0274486268146 476.152074134293 7854.710532160948 -588.8910765831046 475.1692255110551 7794.223419182524 -531.9956460723981 512.8726911659577 7854.242444612565 -531.8592740286971 511.8898425427259 7793.75533163419 -531.9956460723981 512.8726911659577 7854.242444612565 -531.8592740286971 511.8898425427259 7793.75533163419 -467.4024702914693 533.5834256913412 7854.051547528047 -467.2660982477605 532.6005770681057 7793.564434549541 -467.4024702914693 533.5834256913412 7854.051547528047 -467.2660982477605 532.6005770681057 7793.564434549541 -399.5134674244919 535.8900267554108 7793.663737249498 -399.6498394682019 536.8728753786421 7854.150850227937 -399.6498394682019 536.8728753786421 7854.150850227937 -399.5134674244919 535.8900267554108 7793.663737249498 -333.2186113829957 521.5340210445046 7794.046472419322 -333.3549834267066 522.5168696677382 7854.533585397782 -333.3549834267066 522.5168696677382 7854.533585397782 -333.2186113829957 521.5340210445046 7794.046472419322 -272.8994150050601 490.5108980001706 7794.686557289538 -273.035787048766 491.4937466234095 7855.17367026792 -273.035787048766 491.4937466234095 7855.17367026792 -272.8994150050601 490.5108980001706 7794.686557289538 -222.6665318416551 444.9348321897568 7795.540371133969 -222.8029038853583 445.9176808129986 7856.027484112427 -222.8029038853583 445.9176808129986 7856.027484112427 -222.6665318416551 444.9348321897568 7795.540371133969</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10584\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10581\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID10585\">0.6464931587328212 -0.7627940184155104 0.01385211829205381 0.4270071307208236 -0.9041127566886399 0.01565354612980892 0.646493158732842 -0.762794018415493 0.01385211829205358 0.4270071307208059 -0.9041127566886481 0.01565354612980902 -0.4270071307208059 0.9041127566886481 -0.01565354612980902 -0.6464931587328212 0.7627940184155104 -0.01385211829205381 -0.4270071307208236 0.9041127566886399 -0.01565354612980892 -0.646493158732842 0.762794018415493 -0.01385211829205358 0.1784212724127715 -0.9838177047104432 0.01638821066750788 0.1784212724127736 -0.9838177047104428 0.01638821066750787 -0.1784212724127736 0.9838177047104428 -0.01638821066750787 -0.1784212724127715 0.9838177047104432 -0.01638821066750788 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 0.002254260307435461 -0.01624670701818792 -0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 -0.002254260307435461 0.01624670701818792 0.999865472361923 0.8219217463576514 -0.5694921283640877 0.01110669148440868 0.8219217463576619 -0.5694921283640726 0.01110669148440846 -0.8219217463576619 0.5694921283640726 -0.01110669148440846 -0.8219217463576514 0.5694921283640877 -0.01110669148440868 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 -0.002254260307434795 0.01624670701817989 0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 0.002254260307434795 -0.01624670701817989 -0.9998654723619233 -0.08232370075504165 -0.9964771019918376 0.01600604573101252 -0.08232370075504451 -0.9964771019918373 0.01600604573101251 0.08232370075504165 0.9964771019918376 -0.01600604573101252 0.08232370075504451 0.9964771019918373 -0.01600604573101251 0.9042454471127063 0.4269849736277714 -0.004899354246549549 0.9839516084955917 0.1784342131132612 -0.0006809769371412185 0.9839516084955869 0.1784342131132883 -0.0006809769371416704 0.9042454471127015 0.4269849736277815 -0.004899354246549723 -0.9042454471127015 -0.4269849736277815 0.004899354246549723 -0.9042454471127063 -0.4269849736277714 0.004899354246549549 -0.9839516084955917 -0.1784342131132612 0.0006809769371412185 -0.9839516084955869 -0.1784342131132883 0.0006809769371416704 0.9966030938164218 -0.08227654414842971 0.003583807825182543 0.9966030938164202 -0.08227654414844826 0.003583807825182841 -0.9966030938164218 0.08227654414842971 -0.003583807825182543 -0.9966030938164202 0.08227654414844826 -0.003583807825182841 0.9413377252581419 -0.3373802908948549 0.007604362006780764 0.941337725258148 -0.3373802908948378 0.007604362006780501 -0.9413377252581419 0.3373802908948549 -0.007604362006780764 -0.941337725258148 0.3373802908948378 -0.007604362006780501 -0.3374584497627897 -0.941228231528758 0.01453309522921292 -0.3374584497627456 -0.9412282315287739 0.01453309522921328 0.3374584497627897 0.941228231528758 -0.01453309522921292 0.3374584497627456 0.9412282315287739 -0.01453309522921328 -0.5695959630956037 -0.8218362125402169 0.01206973830465998 -0.5695959630956125 -0.8218362125402109 0.01206973830465986 0.5695959630956037 0.8218362125402169 -0.01206973830465998 0.5695959630956125 0.8218362125402109 -0.01206973830465986 -0.7629164528453077 -0.6464374138156275 0.008783848660833265 -0.762916452845351 -0.6464374138155766 0.008783848660832341 0.7629164528453077 0.6464374138156275 -0.008783848660833265 0.762916452845351 0.6464374138155766 -0.008783848660832341 -0.9042454471127225 -0.426984973627735 0.004899354246769167 -0.9042454471127113 -0.4269849736277582 0.004899354246769569 0.9042454471127113 0.4269849736277582 -0.004899354246769569 0.9042454471127225 0.426984973627735 -0.004899354246769167 -0.9839516084955964 -0.1784342131132355 0.0006809769373690633 -0.9839516084955993 -0.1784342131132189 0.000680976937368788 0.9839516084955993 0.1784342131132189 -0.000680976937368788 0.9839516084955964 0.1784342131132355 -0.0006809769373690633 -0.9966030938164218 0.0822765441484382 -0.0035838078249761 -0.9966030938164217 0.08227654414843917 -0.003583807824976115 0.9966030938164217 -0.08227654414843917 0.003583807824976115 0.9966030938164218 -0.0822765441484382 0.0035838078249761 -0.9413377252581526 0.3373802908948292 -0.007604362006574565 -0.9413377252581576 0.3373802908948154 -0.007604362006574352 0.9413377252581576 -0.3373802908948154 0.007604362006574352 0.9413377252581526 -0.3373802908948292 0.007604362006574565 -0.8219217463576785 0.5694921283640528 -0.01110669148419943 -0.8219217463576835 0.5694921283640458 -0.01110669148419933 0.8219217463576835 -0.5694921283640458 0.01110669148419933 0.8219217463576785 -0.5694921283640528 0.01110669148419943 -0.6464931587328288 0.762794018415508 -0.01385211829184207 -0.6464931587328261 0.7627940184155103 -0.01385211829184211 0.6464931587328261 -0.7627940184155103 0.01385211829184211 0.6464931587328288 -0.762794018415508 0.01385211829184207 -0.4270071307207214 0.9041127566886914 -0.01565354612960408 -0.4270071307207907 0.9041127566886589 -0.01565354612960371 0.4270071307207214 -0.9041127566886914 0.01565354612960408 0.4270071307207907 -0.9041127566886589 0.01565354612960371 -0.1784212724128443 0.9838177047104332 -0.01638821066731792 -0.1784212724127395 0.9838177047104523 -0.01638821066731799 0.1784212724128443 -0.9838177047104332 0.01638821066731792 0.1784212724127395 -0.9838177047104523 0.01638821066731799 0.0823237007550317 0.9964771019918414 -0.01600604573082661 0.08232370075499652 0.9964771019918444 -0.01600604573082674 -0.08232370075499652 -0.9964771019918444 0.01600604573082674 -0.0823237007550317 -0.9964771019918414 0.01600604573082661 0.3374584497627136 0.941228231528788 -0.0145330952290362 0.3374584497628144 0.9412282315287519 -0.01453309522903539 -0.3374584497628144 -0.9412282315287519 0.01453309522903539 -0.3374584497627136 -0.941228231528788 0.0145330952290362 0.5695959630956041 0.8218362125402196 -0.01206973830447085 0.5695959630956203 0.8218362125402081 -0.01206973830447062 -0.5695959630956203 -0.8218362125402081 0.01206973830447062 -0.5695959630956041 -0.8218362125402196 0.01206973830447085 0.7629164528453734 0.6464374138155531 -0.008783848660628849 0.7629164528453354 0.6464374138155978 -0.008783848660629664 -0.7629164528453354 -0.6464374138155978 0.008783848660629664 -0.7629164528453734 -0.6464374138155531 0.008783848660628849</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10585\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10583\">\r\n\t\t\t\t\t<float_array count=\"768\" id=\"ID10586\">-47.02803727612393 74.1014034270942 -47.96558367401451 74.75653527076116 -47.96558364590807 74.10140341147238 -47.0280373042325 74.75653528638294 26.63494387495477 153.5481179644004 27.8911014553774 153.5481179212162 26.63494383644088 152.4278355336292 27.8911014168636 152.4278354904424 -47.0280373042277 74.75653528638158 -47.96558370211835 75.4116671300486 -47.96558367400972 74.7565352707598 -47.02803733233498 75.41166714567038 23.18614655086318 153.5481179601563 24.44230413128594 153.548117910317 23.1861465064155 152.4278355293835 24.44230408683826 152.4278354795459 -40.89274925608731 67.73414540594483 -40.09503464014232 68.93431503471194 -40.62066366570353 68.36695419297023 -39.35168292886637 69.39756322738137 -40.89274922797842 67.07901354665971 -38.44126672259848 69.72512917218565 -39.5327099624622 68.08611736345537 -40.62066358328517 66.44620476868533 -39.7252311302017 67.63835720657964 -39.72523111031244 67.17480178493364 -40.09503450905074 65.8788439444746 -39.53270990414297 66.72704163445744 -39.16078751373734 66.32559086944733 -39.35168275804098 65.41559577658933 -38.63480983537093 65.99780769611002 -38.44126652364038 65.08802986211703 -37.99062137860498 65.76602999602098 -37.2721225221966 65.64605303641082 -37.42582916768944 64.91846927680095 -36.52827777583439 65.64605304880553 -36.37457106790657 64.91846929431813 -35.80977892972137 65.7660300323605 -35.16559049284466 65.99780775391757 -35.35913372650587 65.08802991347473 -34.63961284260585 66.32559094478366 -34.26769048664919 66.72704172218849 -39.16078760649282 68.4875681408739 -37.42582938119779 69.89468979134233 -38.63480995623581 68.81535133175133 -37.99062151938298 69.04712905329988 -36.37457128141487 69.8946898088594 -37.27212267326999 69.16710603685475 -36.52827792690773 69.1671060492495 -35.35913392546382 69.72512922354318 -35.8097790704992 69.04712908963927 -34.44871769106329 69.39756330907106 -35.16559061373339 68.8153513895504 -34.63961293536696 68.48756821621311 -33.70536594005355 68.93431514118576 -34.26769054496126 68.08611745120294 -33.1797368658191 68.366954316975 -34.0751693387919 67.63835730072675 -34.07516931890272 67.17480187908075 -32.90765122112573 67.73414553900048 -34.44871752021412 65.41559585828749 -32.90765119301683 67.07901367971553 -33.70536580895633 65.87884405094567 -33.17973678340788 66.44620489267363 -0.3751081403860237 31.81492964056581 0.5431660270380467 32.67207864762086 -1.040246386798474 30.74932043451847 1.651997248483502 33.26235416735813 -1.406920639899184 29.54787053586835 2.875820508639233 33.54552989858428 0.7110969215473073 30.9204278944195 0.2404612229490279 30.16642865316999 -1.450142655297152 28.29245676971823 -0.01898858947246485 29.31631183094249 -0.04957143976183387 28.42801148428731 -1.166966924070974 27.06863350956258 0.1507968427878303 27.5620638138429 -0.5766914043335798 25.9598022881171 0.5684614908447987 26.77748172230432 1.174959348867533 26.12773318262648 0.2804576027213575 25.04152812069332 1.928958590117011 25.657097484028 1.346066808768774 24.37638987428073 2.779075412344605 25.39764767160659 3.667375758999885 25.3670648213173 2.54751670741897 24.0097156211799 4.533323429412098 25.56743310385952 5.31790552097776 25.98509775193105 5.967654060677962 26.59159560997453 3.802930473568749 23.96649360578194 1.360845461225294 31.52692575244228 2.145427552763808 31.94459040049937 4.131234274788959 33.50230788318615 3.011375223208084 32.14495868304888 3.89967556986346 32.11437583275978 5.332684173439171 33.13563363008555 4.749792392090971 31.85492602033831 6.398293379486548 32.47049538367325 5.503791633340329 31.38429032174003 6.110289491363123 30.73454178206183 7.255442386541454 31.55222121624909 6.527954139420059 29.94995969052322 7.845717906278885 30.44338999480367 6.728322421969669 29.08401202007894 6.697739571680408 28.19571167342368 8.128893637505051 29.21956673464807 6.438289759259018 27.34559485119618 8.085671622107029 27.96415296849827 5.026753733692454 24.24966933700084 7.718997369006221 26.76270306984785 6.13558495516496 24.83994485675239 7.053859122611305 25.69709386382824 -47.96558361779971 73.44627155218396 -47.02803727612451 74.10140342709462 -47.96558364590852 74.10140341147279 -47.02803724801721 73.44627156780582 29.48196883911341 153.5481180917531 29.48196880915813 152.4278356609812 28.22581125869043 153.5481181253423 28.22581122873509 152.4278356945686 -51.68737466913839 98.1259158605493 -51.63290860846111 98.081680987114 -50.98563626608316 98.3145683181352 -52.23238579536227 97.78627119417087 -52.1614042460122 97.75232858335286 -52.61776683713543 97.37029314427494 -52.5351070743981 97.34895592890851 -52.81725471336595 96.90632992749616 -52.72854986347007 96.89905220354719 -52.81725465494782 96.42599987033341 -52.72854980682233 96.43327760266205 -52.61776666586228 95.96203667239945 -52.53510690831503 95.98337389557442 -52.23238552289603 95.54605865889805 -52.16140398180217 95.58000127642147 -51.63290826415236 95.25064892259358 -51.68737431406962 95.20641404401314 -50.98563586514275 95.01776165272364 -51.01987465259118 94.96624904695983 -50.26369732909763 94.89721034938891 -50.27537553729481 94.84193051539586 -49.51629157418888 94.89721038469118 -49.50461335254532 94.84193055180137 -48.79435306746694 95.01776175622467 -48.76011426748843 94.96624915369519 -48.09261466442808 95.20641421380466 -51.01987506606153 98.36608092066457 -50.27537598102432 98.49039952255521 -50.2636977593807 98.43511968966531 -49.50461379627478 98.49039955896066 -49.51629200447191 98.43511972496768 -48.76011468097848 98.36608102739676 -48.79435346842696 98.31456842163291 -48.09261501950001 98.1259160303434 -48.1470810694174 98.08168115176304 -47.54760381067371 97.78627141545852 -47.61858535176749 97.75232879793516 -47.16222266770734 97.37029340195709 -47.24488242525457 97.3489561787821 -47.05143952674738 96.89905247169457 -46.96273467862185 96.90633020402315 -47.0514394700995 96.43327787080939 -46.96273462020375 96.4260001468604 -47.24488225917158 95.98337414544805 -47.16222249643414 95.9620369300816 -47.61858508756741 95.58000149099276 -47.54760353821743 95.54605888017471 -48.14708072510521 95.25064908723991 0.2625480303406915 31.72223515910142 -0.6278996471614988 32.55340995382153 -0.5431660270388976 32.67207864762187 -1.651997248484364 33.26235416735918 -1.703129922502813 33.12579833659734 -2.875820508640012 33.54552989858551 -2.889867629320705 33.400392985059 -4.131234274789754 33.50230788318732 -4.107238554072244 33.35848072770342 -5.332684173439945 33.13563363008657 -5.27228088003629 33.00291781560561 -6.398293379487286 32.47049538367426 -6.30559889802178 32.3579352736299 -7.136773692742055 31.46748759612748 -7.255442386542211 31.55222121625015 -7.709162075517809 30.39225732078622 -7.845717906279526 30.44338999480481 -7.983756723979529 29.20551961396846 -8.128893637505879 29.21956673464917 -7.941844466623903 27.98814868921692 -8.085671622107714 27.96415296849931 -7.586281554525933 26.8231063632529 -7.718997369007059 26.76270306984904 -6.941299012567858 25.78978834529509 -6.135584955165688 24.83994485675364 -7.053859122612095 25.69709386382974 0.3751081403851488 31.81492964056708 1.040246386797422 30.74932043451953 0.9075305723165235 30.68891714111584 1.406920639898241 29.54787053586941 1.263093484414219 29.52387481515179 1.450142655296224 28.29245676971936 1.305005741770005 28.30650389040002 1.16696692406999 27.06863350956382 1.030411093308122 27.11976618358213 0.5766914043326921 25.95980228811828 0.45802271053231 26.04453590824102 -0.3731520841877414 25.15408823073877 -0.2804576027222359 25.04152812069438 -1.406470102173384 24.50910568876283 -1.346066808769608 24.37638987428197 -2.571512428137429 24.15354277666526 -2.547516707419786 24.00971562118118 -3.78888335288884 24.11163051930953 -3.802930473569525 23.96649360578321 -4.975621059674682 24.38622516776405 -5.026753733692957 24.24966933700211 -6.050851335043011 24.95861355055428 -47.96558370212159 75.41166713004942 -47.02803736044551 76.06679900496029 -47.96558373022928 76.06679898933848 -47.02803733233773 75.41166714567119 19.37060670506797 153.5481180613116 19.37060665771551 152.4278356305388 18.1144491246453 153.5481181144074 18.11444907729293 152.4278356836347 -47.96558350536644 70.82574411502642 -47.02803716369348 71.48087598993543 -47.96558353347422 71.48087597431329 -47.02803713558571 70.82574413064855 17.08841065437946 153.548119140526 17.08841067145439 152.4278367097531 15.83225307395676 153.5481191213809 15.83225309103172 152.4278366906081 -47.96558353347201 71.48087597431693 -47.02803719179779 72.13600784922785 -47.96558356158059 72.1360078336058 -47.02803716368855 71.48087598993907 22.69111350973363 153.54811898113 22.69111351472289 152.4278365503571 21.43495592931096 153.5481189755348 21.43495593430004 152.4278365447626 -47.96558356549649 72.13600783949283 -47.02803722374958 72.79113971446034 -47.96558359359243 72.7911396988124 -47.02803719565414 72.13600785514072 26.79025700984081 153.548118702236 26.79025700240415 152.4278362714639 25.534099429418 153.5481187105753 25.53409942198142 152.4278362798027 -47.96558358969071 72.79113969289406 -47.02803724801626 73.44627156780446 -47.96558361779862 73.44627155218258 -47.02803721990777 72.79113970851591 29.1064912993243 153.5481183771921 29.10649127996885 152.4278359464194 27.85033371890159 153.5481183988945 27.85033369954617 152.4278359681226 -47.96558373022826 76.06679898933827 -47.02803738855307 76.7219308642491 -47.96558375833608 76.72193084862737 -47.02803736044466 76.06679900496009 13.02163697494441 153.5481183334199 13.02163692791423 152.4278359026472 11.76547939452168 153.5481183861536 11.76547934749136 152.4278359553816 -47.96558375833038 76.72193084862869 -47.02803741665437 77.37706272353913 -47.96558378643749 77.3770627079174 -47.02803738854779 76.72193086425043 5.828066735855552 153.5481186537607 5.828066692352488 152.4278362229887 4.571909155432792 153.5481187025416 4.571909111929699 152.4278362717689 -47.96558378644248 77.37706270791941 -47.02803744476796 78.03219458283014 -47.965583814551 78.03219456720845 -47.02803741665885 77.37706272354113 -1.71987408834322 153.5481189368985 -1.719874125354384 152.4278365061258 -2.976031668765881 153.548118978397 -2.976031705777084 152.427836547625 -47.02803744476772 78.03219458282676 -47.96558384265735 78.68732642647663 -47.96558381455019 78.03219456720505 -47.02803747287553 78.6873264420982 -10.36396338443456 153.548119139083 -9.107805804044853 153.5481191076904 -10.36396341243186 152.4278367083118 -9.107805832041883 152.4278366769184 -47.02803747287635 78.68732644209773 -47.96558387076692 79.34245828578081 -47.96558384265825 78.68732642647616 -47.02803750098335 79.34245830140247 -17.08841065437844 153.5481191405323 -15.83225307392499 153.5481191213856 -17.0884106714534 152.4278367097591 -15.83225309100014 152.4278366906144 -47.02803750098477 79.34245830140505 -47.96558389887619 79.99759014508848 -47.96558387076897 79.34245828578337 -47.02803752909225 79.99759016071027 -22.69111350976541 153.5481189811338 -21.43495592931186 153.5481189755392 -22.69111351475439 152.427836550361 -21.43495593430107 152.427836544766 -47.02803752909433 79.9975901607091 -47.96558392698644 80.65272200435904 -47.96558389887784 79.9975901450873 -47.02803755720261 80.65272201998072 -26.79025700984086 153.5481187022387 -25.53409942945117 153.5481187105779 -26.79025700240428 152.4278362714655 -25.53409942201436 152.4278362798051 -47.02803755719548 80.65272201997975 -47.96558395508566 81.30785386364717 -47.96558392697942 80.65272200435808 -47.02803758530337 81.30785387926873 -29.10649129932422 153.5481183771924 -27.85033371890142 153.5481183988958 -29.1064912799689 152.4278359464211 -27.8503336995459 152.4278359681225 -47.02803758530627 81.30785387927114 -47.96558398319714 81.96298572293863 -47.96558395508882 81.30785386364957 -47.02803761341394 81.96298573856024 -29.48196883911363 153.5481180917529 -28.22581125869085 153.5481181253416 -29.48196880915832 152.4278356609809 -28.2258112287356 152.4278356945703 -47.96558398319735 81.96298572293823 -47.02803764152223 82.61811759784845 -47.96558401130402 82.61811758222682 -47.02803761341482 81.96298573855982 -26.63494387495467 153.5481179644 -26.63494383644087 152.4278355336278 -27.89110145537742 153.5481179212151 -27.89110141686354 152.4278354904439 -47.96558401130629 82.61811758222564 -47.02803766963022 83.27324945713613 -47.9655840394145 83.27324944151457 -47.02803764152405 82.61811759784727 -23.18614655086274 153.5481179601527 -23.18614650641498 152.4278355293816 -24.44230413128533 153.5481179103158 -24.44230408683769 152.4278354795422 -47.02803766963135 83.27324945713569 -47.9655840675251 83.92838130080374 -47.96558403941651 83.2732494415141 -47.02803769774098 83.92838131642533 -19.37060670506978 153.5481180613058 -18.11444912464696 153.548118114404 -19.37060665771735 152.4278356305335 -18.1144490772945 152.4278356836305 -47.02803769773591 83.9283813164258 -47.96558409562684 84.58351316009406 -47.96558406752043 83.92838130080423 -47.02803772584198 84.58351317571561 -13.02163697494382 153.5481183334146 -11.76547939452116 153.5481183861474 -13.02163692791356 152.4278359026419 -11.76547934749088 152.427835955375 -47.02803772583737 84.58351317571672 -47.96558412372934 85.23864501938532 -47.96558409562269 84.58351316009517 -47.02803775394523 85.23864503500688 -5.828066735855273 153.5481186537555 -4.571909155432511 153.5481187025355 -5.828066692352195 152.4278362229842 -4.571909111929454 152.4278362717627 -47.02803775394708 85.23864503500631 -47.96558415183966 85.89377687867523 -47.96558412373166 85.23864501938476 -47.02803778205389 85.89377689429679 1.719874088343149 153.5481189368923 2.976031668765832 153.5481189783916 1.719874125354347 152.4278365061195 2.976031705777015 152.4278365476203 -47.96558347725922 70.17061225574021 -47.02803713558635 70.82574413065034 -47.9655835053686 70.82574411502822 -47.02803710747708 70.17061227136234 10.36396338446719 153.5481191390786 10.36396341246422 152.4278367083059 9.107805804044421 153.548119107685 9.107805832041416 152.4278366769121</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"384\" source=\"#ID10586\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10582\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10580\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10581\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10582\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10583\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 8 8 9 1 10 8 9 3 8 9 11 12 16 13 17 14 18 13 17 12 16 15 19 15 19 12 16 16 20 15 19 16 20 17 21 17 21 16 20 18 22 18 22 16 20 19 23 18 22 19 23 20 24 20 24 19 23 21 25 21 25 19 23 22 26 21 25 22 26 23 27 23 27 22 26 24 28 24 28 22 26 25 29 24 28 25 29 26 30 26 30 25 29 27 31 26 30 27 31 28 32 28 32 27 31 29 33 29 33 27 31 30 34 29 33 30 34 31 35 31 35 30 34 32 36 31 35 32 36 33 37 33 37 32 36 34 38 34 38 32 36 35 39 34 38 35 39 36 40 36 40 35 39 37 41 17 21 38 42 39 43 38 42 17 21 18 22 39 43 38 42 40 44 39 43 40 44 41 45 39 43 41 45 42 46 42 46 41 45 43 47 42 46 43 47 44 48 42 46 44 48 45 49 45 49 44 48 46 50 45 49 46 50 47 51 47 51 46 50 48 52 47 51 48 52 49 53 47 51 49 53 50 54 50 54 49 53 51 55 50 54 51 55 52 56 52 56 51 55 53 57 52 56 53 57 54 58 52 56 54 58 55 59 55 59 54 58 37 41 55 59 37 41 35 39 55 59 35 39 56 60 55 59 56 60 57 61 57 61 56 60 58 62 57 61 58 62 59 63 108 112 0 113 2 114 0 113 108 112 109 115 112 120 113 121 114 122 113 121 112 120 115 123 113 121 115 123 116 124 116 124 115 123 117 125 116 124 117 125 118 126 118 126 117 125 119 127 118 126 119 127 120 128 120 128 119 127 121 129 120 128 121 129 122 130 122 130 121 129 123 131 122 130 123 131 124 132 124 132 123 131 125 133 124 132 125 133 126 134 126 134 125 133 127 135 127 135 125 133 128 136 127 135 128 136 129 137 129 137 128 136 130 138 129 137 130 138 131 139 131 139 130 138 132 140 131 139 132 140 133 141 133 141 132 140 134 142 133 141 134 142 135 143 135 143 134 142 136 144 135 143 136 144 137 145 138 146 114 122 139 147 114 122 138 146 112 120 139 147 114 122 140 148 139 147 140 148 141 149 141 149 140 148 142 150 141 149 142 150 143 151 143 151 142 150 144 152 143 151 144 152 145 153 145 153 144 152 146 154 145 153 146 154 147 155 147 155 146 154 148 156 147 155 148 156 149 157 149 157 148 156 150 158 149 157 150 158 151 159 149 157 151 159 152 160 152 160 151 159 153 161 152 160 153 161 154 162 154 162 153 161 155 163 154 162 155 163 156 164 156 164 155 163 157 165 156 164 157 165 158 166 158 166 157 165 159 167 158 166 159 167 137 145 137 145 159 167 135 143 8 216 208 217 209 218 208 217 8 216 9 219 212 224 213 225 214 226 213 225 212 224 215 227 214 232 220 233 221 234 220 233 214 232 213 235 221 240 224 241 225 242 224 241 221 240 220 243 225 248 109 249 108 250 109 249 225 248 224 251 209 256 228 257 229 258 228 257 209 256 208 259 229 264 232 265 233 266 232 265 229 264 228 267 233 272 236 273 237 274 236 273 233 272 232 275 236 280 240 281 237 282 240 281 236 280 241 283 241 288 244 289 240 290 244 289 241 288 245 291 245 296 248 297 244 298 248 297 245 296 249 299 249 304 252 305 248 306 252 305 249 304 253 307 253 312 256 313 252 314 256 313 253 312 257 315 257 320 260 321 256 322 260 321 257 320 261 323 260 328 264 329 265 330 264 329 260 328 261 331 265 336 268 337 269 338 268 337 265 336 264 339 268 344 272 345 269 346 272 345 268 344 273 347 273 352 276 353 272 354 276 353 273 352 277 355 277 360 280 361 276 362 280 361 277 360 281 363 281 368 284 369 280 370 284 369 281 368 285 371 284 376 215 377 212 378 215 377 284 376 285 379</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10582\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10583\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 10 12 4 13 11 14 6 15 11 14 4 13 60 64 61 65 62 66 61 65 63 67 62 66 62 66 63 67 64 68 63 67 65 69 64 68 65 69 66 70 64 68 66 70 67 71 64 68 64 68 67 71 68 72 67 71 69 73 68 72 69 73 70 74 68 72 68 72 70 74 71 75 70 74 72 76 71 75 71 75 72 76 73 77 72 76 74 78 73 77 74 78 75 79 73 77 73 77 75 79 76 80 75 79 77 81 76 80 76 80 77 81 78 82 77 81 79 83 78 82 79 83 80 84 78 82 78 82 80 84 81 85 80 84 82 86 81 85 82 86 83 87 81 85 84 88 85 89 83 87 81 85 83 87 85 89 66 70 65 69 86 90 86 90 65 69 87 91 65 69 88 92 87 91 87 91 88 92 89 93 89 93 88 92 90 94 88 92 91 95 90 94 90 94 91 95 92 96 91 95 93 97 92 96 92 96 93 97 94 98 94 98 93 97 95 99 93 97 96 100 95 99 95 99 96 100 97 101 96 100 98 102 97 101 97 101 98 102 99 103 99 103 98 102 100 104 98 102 101 105 100 104 100 104 101 105 102 106 102 106 101 105 84 88 101 105 103 107 84 88 84 88 103 107 85 89 85 89 103 107 104 108 103 107 105 109 104 108 104 108 105 109 106 110 107 111 106 110 105 109 110 116 111 117 5 118 7 119 5 118 111 117 160 168 161 169 162 170 162 170 161 169 163 171 161 169 164 172 163 171 163 171 164 172 165 173 164 172 166 174 165 173 165 173 166 174 167 175 166 174 168 176 167 175 167 175 168 176 169 177 168 176 170 178 169 177 169 177 170 178 171 179 170 178 172 180 171 179 172 180 173 181 171 179 171 179 173 181 174 182 173 181 175 183 174 182 174 182 175 183 176 184 175 183 177 185 176 184 176 184 177 185 178 186 177 185 179 187 178 186 178 186 179 187 180 188 179 187 181 189 180 188 180 188 181 189 182 190 181 189 183 191 182 190 184 192 185 193 183 191 182 190 183 191 185 193 162 170 186 194 160 168 186 194 187 195 160 168 160 168 187 195 188 196 187 195 189 197 188 196 188 196 189 197 190 198 189 197 191 199 190 198 190 198 191 199 192 200 191 199 193 201 192 200 192 200 193 201 194 202 193 201 195 203 194 202 194 202 195 203 196 204 196 204 195 203 197 205 195 203 198 206 197 205 197 205 198 206 199 207 198 206 200 208 199 207 199 207 200 208 201 209 200 208 202 210 201 209 201 209 202 210 203 211 202 210 204 212 203 211 203 211 204 212 205 213 204 212 206 214 205 213 205 213 206 214 207 215 206 214 184 192 207 215 183 191 207 215 184 192 10 220 11 221 210 222 211 223 210 222 11 221 216 228 217 229 218 230 219 231 218 230 217 229 218 236 219 237 222 238 223 239 222 238 219 237 222 244 223 245 226 246 227 247 226 246 223 245 226 252 227 253 110 254 111 255 110 254 227 253 210 260 211 261 230 262 231 263 230 262 211 261 230 268 231 269 234 270 235 271 234 270 231 269 234 276 235 277 238 278 239 279 238 278 235 277 242 284 238 285 243 286 239 287 243 286 238 285 246 292 242 293 247 294 243 295 247 294 242 293 250 300 246 301 251 302 247 303 251 302 246 301 254 308 250 309 255 310 251 311 255 310 250 309 258 316 254 317 259 318 255 319 259 318 254 317 262 324 258 325 263 326 259 327 263 326 258 325 262 332 263 333 266 334 267 335 266 334 263 333 266 340 267 341 270 342 271 343 270 342 267 341 274 348 270 349 275 350 271 351 275 350 270 349 278 356 274 357 279 358 275 359 279 358 274 357 282 364 278 365 283 366 279 367 283 366 278 365 286 372 282 373 287 374 283 375 287 374 282 373 286 380 287 381 216 382 217 383 216 382 287 381</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10587\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10588\">\r\n\t\t\t\t\t<float_array count=\"2910\" id=\"ID10592\">-307.7624772503676 425.2506173681437 371.0776432809791 -227.3575743614158 410.1204890085329 302.4883246545462 -299.353652427256 447.1492182135816 301.7243290603244 -241.4438162139963 391.1418741319925 371.7813922379835 -241.4438162139963 391.1418741319925 371.7813922379835 -307.7624772503676 425.2506173681437 371.0776432809791 -227.3575743614158 410.1204890085329 302.4883246545462 -299.353652427256 447.1492182135816 301.7243290603244 -167.4003667911466 355.7215880108962 303.5074239113728 -186.2146727333814 341.0327241208785 372.7201280690346 -186.2146727333814 341.0327241208785 372.7201280690346 -167.4003667911466 355.7215880108962 303.5074239113728 -212.8274156140603 429.745096163729 233.4673964655277 -290.6820867186628 469.7869930437893 232.6412316616639 -212.8274156140603 429.745096163729 233.4673964655277 -290.6820867186628 469.7869930437893 232.6412316616639 -380.6511486896092 441.0344993451605 370.6568405264597 -378.4821872475958 464.2843289236033 301.2675021658692 -380.6511486896092 441.0344993451605 370.6568405264597 -378.4821872475958 464.2843289236033 301.2675021658692 -311.3961496574013 416.1286941285044 416.1775216896764 -247.5073801408585 383.2696827875126 416.8554855419056 -247.5073801408585 383.2696827875126 416.8554855419056 -311.3961496574013 416.1286941285044 416.1775216896764 -123.5680143283723 287.6597104252434 304.7121769005882 -145.8388216662208 278.3380230987713 373.8298774786027 -123.5680143283723 287.6597104252434 304.7121769005882 -145.8388216662208 278.3380230987713 373.8298774786027 -147.9912634077627 370.9195509479304 234.5694236813703 -147.9912634077627 370.9195509479304 234.5694236813703 -194.3018123068848 334.9965137322143 417.7598264349545 -194.3018123068848 334.9965137322143 417.7598264349545 -197.8552061490113 450.0131751164057 164.7274723560176 -281.748893854819 493.16103438217 163.8372237548032 -197.8552061490113 450.0131751164057 164.7274723560176 -281.748893854819 493.16103438217 163.8372237548032 -376.2496095466757 488.3164524880964 232.1472310358767 -376.2496095466757 488.3164524880964 232.1472310358767 -455.1425880273757 437.4178745903902 370.5476609867225 -459.3506999405209 460.3580916608217 301.1489759691193 -455.1425880273757 437.4178745903902 370.5476609867225 -459.3506999405209 460.3580916608217 301.1489759691193 -381.6142067951129 431.3342604343746 415.7721369943944 -381.6142067951129 431.3342604343746 415.7721369943944 -314.2763614829956 409.0944115283313 460.6288166188277 -252.3001339610248 377.2190509848907 461.2864852869787 -252.3001339610248 377.2190509848907 461.2864852869787 -314.2763614829956 409.0944115283313 460.6288166188277 -98.84761935705092 210.5731607314591 306.0204816969131 -123.0678105385061 207.3303113324374 375.0350128783487 -98.84761935705092 210.5731607314591 306.0204816969131 -123.0678105385061 207.3303113324374 375.0350128783487 -100.5921067257905 297.3192210890369 235.8722119756479 -100.5921067257905 297.3192210890369 235.8722119756479 -155.4053176769787 274.5989236585409 418.8289150314445 -155.4053176769787 274.5989236585409 418.8289150314445 -127.9898553862495 386.624660985652 165.9149814133241 -127.9898553862495 386.624660985652 165.9149814133241 -200.6873011819989 330.3909631813907 462.1637542869749 -200.6873011819989 330.3909631813907 462.1637542869749 -182.4428689180213 470.9221227411957 96.27738092002915 -272.5552211680108 517.2683401899291 95.32114216433138 -182.4428689180213 470.9221227411957 96.27738092002915 -272.5552211680108 517.2683401899291 95.32114216433138 -373.9537023273907 513.1277834792123 163.3049045806575 -373.9537023273907 513.1277834792123 163.3049045806575 -463.698698824415 484.0707224568977 232.0190599144355 -463.698698824415 484.0707224568977 232.0190599144355 -536.4481350075654 435.6380730062693 301.3768278344999 -526.1603267757157 414.6472101041276 370.7575450669755 -526.1603267757157 414.6472101041276 370.7575450669755 -536.4481350075654 435.6380730062693 301.3768278344999 -453.3763070008912 427.8501474897815 415.6669577531168 -453.3763070008912 427.8501474897815 415.6669577531168 -382.3924062628394 423.8447916671938 460.2355673154073 -382.3924062628394 423.8447916671938 460.2355673154073 -316.5020164630118 403.8933740480662 505.3880558255769 -255.9875402159878 372.7698154580149 506.0302129330435 -255.9875402159878 372.7698154580149 506.0302129330435 -316.5020164630118 403.8933740480662 505.3880558255769 -119.4534461277224 132.8486470329627 376.2534062823706 -94.92383594208081 129.7152598996357 307.3431794905807 -119.4534461277224 132.8486470329627 376.2534062823706 -94.92383594208081 129.7152598996357 307.3431794905807 -73.8601197652049 213.959847436637 237.286978479031 -73.8601197652049 213.959847436637 237.286978479031 -133.4686280806809 206.1929085182775 419.9898947102893 -133.4686280806809 206.1929085182775 419.9898947102893 -76.9140497630392 307.3153144734682 167.3188241469127 -76.9140497630392 307.3153144734682 167.3188241469127 -162.9551924055795 271.8014049145708 463.2008391862285 -162.9551924055795 271.8014049145708 463.2008391862285 -107.3987116021544 402.8349010424169 97.55291472236274 -107.3987116021544 402.8349010424169 97.55291472236274 -205.5920310324207 327.0461998011391 506.8867909498987 -205.5920310324207 327.0461998011391 506.8867909498987 -166.5923834006615 492.4692536028025 28.12591352734034 -263.1022494452036 542.1058142514534 27.10178673545914 -166.5923834006615 492.4692536028025 28.12591352734034 -263.1022494452036 542.1058142514534 27.10178673545914 -371.5947604639522 538.7151352602463 94.74936454621837 -371.5947604639522 538.7151352602463 94.74936454621837 -468.1860262449525 508.5527214531718 163.166791505582 -468.1860262449525 508.5527214531718 163.166791505582 -547.069843634048 457.3391424354064 232.2654529474528 -547.069843634048 457.3391424354064 232.2654529474528 -604.5204296584225 391.8089013794987 301.9355300339367 -588.8646234012828 374.2742890408102 371.2721895140028 -588.8646234012828 374.2742890408102 371.2721895140028 -604.5204296584225 391.8089013794987 301.9355300339367 -521.7919817382124 405.9137918341133 415.8691517573296 -521.7919817382124 405.9137918341133 415.8691517573296 -452.006272415902 420.4649773711877 460.1335366668649 -452.006272415902 420.4649773711877 460.1335366668649 -383.0114982220985 418.2958564875108 505.0040815731506 -383.0114982220985 418.2958564875108 505.0040815731506 -318.1720183333384 400.2711861680319 551.411767066822 -258.7350614473596 369.7018129406514 552.0424899397137 -258.7350614473596 369.7018129406514 552.0424899397137 -318.1720183333384 400.2711861680319 551.411767066822 -135.2420413954326 59.96883253558929 377.4020261936863 -112.0640634388394 50.59634024745799 308.5901306127886 -135.2420413954326 59.96883253558929 377.4020261936863 -112.0640634388394 50.59634024745799 308.5901306127886 -69.61704326068866 126.5222335472621 238.7173091923556 -69.61704326068866 126.5222335472621 238.7173091923556 -129.9866926618918 134.4402251969424 421.1636466249586 -129.9866926618918 134.4402251969424 421.1636466249586 -48.1085210258691 217.4899364797565 168.8433309944514 -48.1085210258691 217.4899364797565 168.8433309944514 -141.6751884896019 205.4431577564905 464.3270643627042 -141.6751884896019 205.4431577564905 464.3270643627042 -52.53688452514143 317.6467067329287 99.06081805063946 -52.53688452514143 317.6467067329287 99.06081805063946 -168.7498595806062 269.8385159226192 507.899415499838 -168.7498595806062 269.8385159226192 507.899415499838 -86.22047667373386 419.5481891602186 29.49200367287187 -86.22047667373386 419.5481891602186 29.49200367287187 -209.236893531915 324.7923509240728 552.8838157482512 -209.236893531915 324.7923509240728 552.8838157482512 -150.3057853498387 514.6518003011646 -39.71817680628436 -253.3911927763231 567.670266572315 -40.8120807968719 -150.3057853498387 514.6518003011646 -39.71817680628436 -253.3911927763231 567.670266572315 -40.8120807968719 -369.173086926504 565.0752215262463 26.48941584564653 -369.173086926504 565.0752215262463 26.48941584564653 -472.8121058734656 533.8009443106008 94.60101376546783 -472.8121058734656 533.8009443106008 94.60101376546783 -558.0240884588371 479.7476312204686 163.4322967074049 -558.0240884588371 479.7476312204686 163.4322967074049 -620.6814382341267 409.9434254260917 232.8696188569103 -620.6814382341267 409.9434254260917 232.8696188569103 -658.9285695074485 331.8574623957489 302.7870079358269 -638.9822837128284 319.0504592514907 372.0565221592281 -658.9285695074485 331.8574623957489 302.7870079358269 -638.9822837128284 319.0504592514907 372.0565221592281 -582.1988158359415 367.0201198537806 416.3649398197645 -582.1988158359415 367.0201198537806 416.3649398197645 -518.3738900062132 399.1852973991544 460.3296778933092 -518.3738900062132 399.1852973991544 460.3296778933092 -450.9834742235248 414.9957573993123 504.904457386521 -450.9834742235248 414.9957573993123 504.904457386521 -383.4972338022317 414.4172183390759 551.0346298510303 -383.4972338022317 414.4172183390759 551.0346298510303 -319.3852708298699 397.9734523685178 599.6564780995457 -260.7081601967477 367.794880166539 600.2791377667081 -260.7081601967477 367.794880166539 600.2791377667081 -319.3852708298699 397.9734523685178 599.6564780995457 -169.3576296660463 -6.342493241290526 378.4025960635076 -149.100223669004 -21.39177460098006 309.6763574052492 -169.3576296660463 -6.342493241290526 378.4025960635076 -149.100223669004 -21.39177460098006 309.6763574052492 -88.152035864033 40.96510830997761 240.0657294412213 -88.152035864033 40.96510830997761 240.0657294412213 -145.196799565224 64.23070048598413 422.2701815222135 -145.196799565224 64.23070048598413 422.2701815222135 -43.53631835477609 123.2699780713305 170.3846093336526 -43.53631835477609 123.2699780713305 170.3846093336526 -138.2974865340843 135.8384265887718 465.4656794318202 -138.2974865340843 135.8384265887718 465.4656794318202 -21.59613053881412 221.1629744747612 100.6983297849491 -21.59613053881412 221.1629744747612 100.6983297849491 -147.9717589604497 205.0453729385885 508.9990778932439 -147.9717589604497 205.0453729385885 508.9990778932439 -27.46374188699792 328.3120709577175 31.1069603861979 -27.46374188699792 328.3120709577175 31.1069603861979 -173.0507329308002 268.6033057383503 553.8784095289386 -173.0507329308002 268.6033057383503 553.8784095289386 -64.4578706219877 436.7623787723122 -38.25901034999362 -64.4578706219877 436.7623787723122 -38.25901034999362 -211.842780354295 323.4595438828043 601.109708006738 -211.842780354295 323.4595438828043 601.109708006738 -140.8582940655847 527.5428056228615 -77.8728764527786 -247.7591287794314 582.5236068936505 -79.00726833820636 -140.8582940655847 527.5428056228615 -77.8728764527786 -247.7591287794314 582.5236068936505 -79.00726833820636 -366.6889927419927 592.2046567265255 -41.46617457256753 -366.6889927419927 592.2046567265255 -41.46617457256753 -477.5763435605543 559.8121482801822 26.33053292204187 -477.5763435605543 559.8121482801822 26.33053292204187 -569.3094625764018 502.8606613331286 94.88619968261935 -569.3094625764018 502.8606613331286 94.88619968261935 -637.3455734935544 428.6755320778156 164.0833264453945 -637.3455734935544 428.6755320778156 164.0833264453945 -679.5169741015699 345.1135112179944 233.7903847345145 -679.5169741015699 345.1135112179944 233.7903847345145 -695.9647297375963 259.8693475473129 303.8732347282922 -673.09787198344 252.7391334746122 373.0570920290475 -695.9647297375963 259.8693475473129 303.8732347282922 -673.09787198344 252.7391334746122 373.0570920290475 -630.4801833773627 313.8196710193973 417.1205348033274 -630.4801833773627 313.8196710193973 417.1205348033274 -576.9724155726577 361.4559267748779 460.8106242942664 -576.9724155726577 361.4559267748779 460.8106242942664 -515.7857666317881 394.2179730826614 505.0959724893708 -515.7857666317881 394.2179730826614 505.0959724893708 -450.2589023748775 411.1758807387329 550.9367795703511 -450.2589023748775 411.1758807387329 550.9367795703511 -383.8753641325324 411.9386406656266 599.2841622325541 -383.8753641325324 411.9386406656266 599.2841622325541 -319.8129742592092 397.3596147491556 625.3675973901802 -261.3902296012361 367.3118670179846 625.9875578202589 -320.2406776885438 396.7457771297978 651.0787166807843 -262.0722990057395 366.8288538694388 651.6959778737808 -262.0722990057395 366.8288538694388 651.6959778737808 -320.2406776885438 396.7457771297978 651.0787166807843 -261.3902296012361 367.3118670179846 625.9875578202589 -319.8129742592092 397.3596147491556 625.3675973901802 -219.4752899775679 -61.56632303060337 379.1869287087338 -203.5083635180095 -81.34321358473619 310.5278353071428 -219.4752899775679 -61.56632303060337 379.1869287087338 -203.5083635180095 -81.34321358473619 310.5278353071428 -128.2019684597954 -36.88095158011799 241.2403466140478 -128.2019684597954 -36.88095158011799 241.2403466140478 -178.0624051411 0.3489974677146392 423.2340908774258 -178.0624051411 0.3489974677146392 423.2340908774258 -63.50902980588739 31.07637370788132 171.8376235927807 -63.50902980588739 31.07637370788132 171.8376235927807 -153.0522713453638 67.73065881325135 466.5390896582417 -153.0522713453638 67.73065881325135 466.5390896582417 -16.68501089535016 119.958911174397 102.3538562067292 -16.68501089535016 119.958911174397 102.3538562067292 -144.673722391756 137.0823164677046 510.1108379552689 -144.673722391756 137.0823164677046 510.1108379552689 5.673646583926484 224.9784896759662 32.86072703615514 5.673646583926484 224.9784896759662 32.86072703615514 -152.6426066885429 204.9638679561 554.9584913592605 -152.6426066885429 204.9638679561 554.9584913592605 -1.697842111053433 339.3100373446017 -36.53402121061731 -1.697842111053433 339.3100373446017 -36.53402121061731 -176.1192261849139 267.9888234174476 602.0915868303073 -176.1192261849139 267.9888234174476 602.0915868303073 -51.83295117797866 446.7705180151226 -76.3597029003061 -51.83295117797866 446.7705180151226 -76.3597029003061 -212.7366817638258 323.1687249463884 626.8145275283634 -213.6305831733657 322.8779060099568 652.5193470499796 -213.6305831733657 322.8779060099568 652.5193470499796 -212.7366817638258 323.1687249463884 626.8145275283634 -43.54885907018866 660.925602842506 -439.8427464556337 -189.7772139255285 736.133173858936 -441.3944673529662 -43.54885907018866 660.925602842506 -439.8427464556337 -189.7772139255285 736.133173858936 -441.3944673529662 -365.2503400957568 607.9660710809545 -79.68557162427794 -365.2503400957568 607.9660710809545 -79.68557162427794 -482.4781274126563 586.5829926198093 -41.63588272349614 -482.4781274126563 586.5829926198093 -41.63588272349614 -580.9245165526239 526.6752642573111 26.63596557333131 -580.9245165526239 526.6752642573111 26.63596557333131 -654.5106951829156 448.0028154815005 95.58548734870203 -654.5106951829156 448.0028154815005 95.58548734870203 -700.7448532289543 358.8169031811375 165.075514118784 -700.7448532289543 358.8169031811375 165.075514118784 -719.5669066973405 267.2674513279004 234.9650019073384 -719.5669066973405 267.2674513279004 234.9650019073384 -713.1049572343602 180.7504278951304 305.1201858504979 -688.8864672511571 179.8593189772304 374.2057119403656 -713.1049572343602 180.7504278951304 305.1201858504979 -688.8864672511571 179.8593189772304 374.2057119403656 -663.3457889532465 249.9379680011219 418.0844441585327 -663.3457889532465 249.9379680011219 418.0844441585327 -623.8084564365229 309.8480597556635 461.5436001673206 -623.8084564365229 309.8480597556635 461.5436001673206 -573.0022063100977 357.3784752018288 505.5655754439329 -573.0022063100977 357.3784752018288 505.5655754439329 -513.9073266669276 390.7680651679026 551.1248845597247 -513.9073266669276 390.7680651679026 551.1248845597247 -449.783546821037 408.7387405539913 599.1875628767727 -449.783546821037 408.7387405539913 599.1875628767727 -384.0235022374129 411.2642637882669 624.9968955168984 -384.1716403422963 410.5898869109 650.7096288012374 -384.1716403422963 410.5898869109 650.7096288012374 -384.0235022374129 411.2642637882669 624.9968955168984 -320.8371426452171 396.3337649321812 706.6350105674376 -262.9929404159327 366.5835707830967 707.2488317205052 -262.9929404159327 366.5835707830967 707.2488317205052 -320.8371426452171 396.3337649321812 706.6350105674376 -271.5806581688714 -125.1723852115027 311.0865375065678 -282.1795866031523 -101.9392440939296 379.7015731557592 -282.1795866031523 -101.9392440939296 379.7015731557592 -271.5806581688714 -125.1723852115027 311.0865375065678 -187.03750432724 -101.7108657882186 242.1611124916498 -187.03750432724 -101.7108657882186 242.1611124916498 -226.3437726825141 -52.85145136666722 423.9896858609858 -226.3437726825141 -52.85145136666722 423.9896858609858 -106.6655481002617 -52.80803483035334 173.1033532512969 -106.6655481002617 -52.80803483035334 173.1033532512969 -184.9340287219982 5.761286250419175 467.4741439089607 -184.9340287219982 5.761286250419175 467.4741439089607 -38.1382102824175 20.93140649815484 103.9145759262109 -38.1382102824175 20.93140649815484 103.9145759262109 -159.080505616434 70.58091649417645 511.1589310749753 -159.080505616434 70.58091649417645 511.1589310749753 10.93343047687631 116.5894581125143 34.63378732378425 10.93343047687631 116.5894581125143 34.63378732378425 -149.4032948825295 138.2109600930336 556.0504554474051 -149.4032948825295 138.2109600930336 556.0504554474051 33.69730795575697 228.9359920387041 -34.66076454732115 33.69730795575697 228.9359920387041 -34.66076454732115 -155.9719988692598 205.1629567005015 603.1578608182772 -155.9719988692598 205.1629567005015 603.1578608182772 13.24996988695261 345.7112419883675 -74.57086795775354 13.24996988695261 345.7112419883675 -74.57086795775354 -177.167989628281 267.9384707165356 627.7921498955 -178.2167530716445 267.8881180156196 653.4927129607131 -177.167989628281 267.9384707165356 627.7921498955 -178.2167530716445 267.8881180156196 653.4927129607131 78.22782738634442 550.4381705750317 -437.7728947114351 78.22782738634442 550.4381705750317 -437.7728947114351 -214.8211936629152 322.8775646381438 708.06761220255 -214.8211936629152 322.8775646381438 708.06761220255 -350.492016450077 770.935611945907 -442.3223101886189 -350.492016450077 770.935611945907 -442.3223101886189 -485.3250961267432 602.13633629605 -79.86156106298461 -485.3250961267432 602.13633629605 -79.86156106298461 -592.8677586111116 551.1883813707831 -41.30963991962523 -592.8677586111116 551.1883813707831 -41.30963991962523 -672.1745987042039 467.9227933425105 27.38489906907586 -672.1745987042039 467.9227933425105 27.38489906907586 -722.6094804925377 372.9658782936496 96.65122146491331 -722.6094804925377 372.9658782936496 96.65122146491331 -743.9013715233173 274.9324946429045 166.3412437772986 -743.9013715233173 274.9324946429045 166.3412437772986 -738.1018993006677 181.7103260906193 236.3134221562057 -738.1018993006677 181.7103260906193 236.3134221562057 -685.2721028403703 105.3776546777502 375.4241053443838 -709.1811738193923 99.89252706330615 306.4428836441512 -685.2721028403703 105.3776546777502 375.4241053443838 -709.1811738193923 99.89252706330615 306.4428836441512 -678.5558958565729 179.7284432901682 419.1909790557949 -678.5558958565729 179.7284432901682 419.1909790557949 -655.6902138131607 247.8786871928356 462.4786544180418 -655.6902138131607 247.8786871928356 462.4786544180418 -618.7335874490345 306.9878146572504 506.281263584911 -618.7335874490345 306.9878146572504 506.281263584911 -570.1049717468704 354.5845305322295 551.5861257749593 -570.1049717468704 354.5845305322295 551.5861257749593 -512.6182851636172 388.5918199381268 599.3732631186886 -512.6182851636172 388.5918199381268 599.3732631186886 -449.645972167067 408.078235281815 624.9007149204931 -449.5083975130985 407.4177300096425 650.6138669642032 -449.5083975130985 407.4177300096425 650.6138669642032 -449.645972167067 408.078235281815 624.9007149204931 -384.4118135609127 410.1007205186323 706.2679796405259 -384.4118135609127 410.1007205186323 706.2679796405259 -320.9456578453796 397.1002000247732 754.0721980487103 -263.1025323134363 367.3505596382696 754.6860077762735 -263.1025323134363 367.3505596382696 754.6860077762735 -320.9456578453796 397.1002000247732 754.0721980487103 -348.6780932359213 -149.8924038660631 311.314389371945 -353.1973253514998 -124.7099085801918 379.9114572360102 -353.1973253514998 -124.7099085801918 379.9114572360102 -348.6780932359213 -149.8924038660631 311.314389371945 -260.6490989273095 -149.106582797534 242.7652784011155 -260.6490989273095 -149.106582797534 242.7652784011155 -286.7506067802519 -91.74512334700592 424.4854739234204 -286.7506067802519 -91.74512334700592 424.4854739234204 -170.0648278356639 -122.6666637270356 174.0955409246819 -170.0648278356639 -122.6666637270356 174.0955409246819 -231.7700695858632 -45.8465807687968 468.2071197820215 -231.7700695858632 -45.8465807687968 468.2071197820215 -84.49372861489178 -69.17097876098171 105.2741284737402 -84.49372861489178 -69.17097876098171 105.2741284737402 -190.2103101660478 10.07313352745712 512.0719314382859 -190.2103101660478 10.07313352745712 512.0719314382859 -12.04283578824789 10.53150964706413 36.30531012059953 -12.04283578824789 10.53150964706413 36.30531012059953 -163.5535512591262 72.89368250562177 557.0798862453103 -163.5535512591262 72.89368250562177 557.0798862453103 39.31545859467155 113.1620516404888 -32.76689970600523 39.31545859467155 113.1620516404888 -32.76689970600523 -152.7740986540507 139.2634227240457 604.2358651603993 -152.7740986540507 139.2634227240457 604.2358651603993 49.95517561322549 231.2520001954891 -72.62827777026683 49.95517561322549 231.2520001954891 -72.62827777026683 -157.1081007835903 205.3849548819004 628.8538015729916 -158.2442026979284 205.6069530632939 654.5497423277245 -158.2442026979284 205.6069530632939 654.5497423277245 -157.1081007835903 205.3849548819004 628.8538015729916 167.2539655075193 412.2004129764144 -435.3259690961456 167.2539655075193 412.2004129764144 -435.3259690961456 -179.604727319791 268.1942385884985 709.0355534767982 -179.604727319791 268.1942385884985 709.0355534767982 -214.9316822170949 323.6453670258558 755.5047730177269 -214.9316822170949 323.6453670258558 755.5047730177269 -514.7408184455676 762.9611884615625 -442.5630440066753 -514.7408184455676 762.9611884615625 -442.5630440066753 -599.8005006818048 565.4316893304703 -79.5232432649164 -599.8005006818048 565.4316893304703 -79.5232432649164 -690.3350153986647 488.432907243713 -40.50967906890401 -690.3350153986647 488.432907243713 -40.50967906890401 -745.1080477145699 387.5586193355592 28.52629482921782 -745.1080477145699 387.5586193355592 28.52629482921782 -768.9649988250037 282.8634930345119 98.01077401242469 -768.9649988250037 282.8634930345119 98.01077401242469 -763.8740829744395 182.7388902794465 167.7942580364251 -763.8740829744395 182.7388902794465 167.7942580364251 -733.8588227961533 94.27271220125238 237.7437528695207 -733.8588227961533 94.27271220125238 237.7437528695207 -662.501091712663 34.36994291141798 376.6292407441345 -684.4607788480741 22.80597736952166 307.7511884404831 -662.501091712663 34.36994291141798 376.6292407441345 -684.4607788480741 22.80597736952166 307.7511884404831 -675.0739604377834 107.9757599688315 420.3647309704676 -675.0739604377834 107.9757599688315 420.3647309704676 -670.4449986244522 179.7709194173134 463.5520646444673 -670.4449986244522 179.7709194173134 463.5520646444673 -649.8633919986538 246.4800316905258 507.1942639482301 -649.8633919986538 246.4800316905258 507.1942639482301 -615.0220609735135 305.0911249210102 552.2890703894964 -615.0220609735135 305.0911249210102 552.2890703894964 -568.0974955815368 352.8708581636423 599.8286077936657 -568.0974955815368 352.8708581636423 599.8286077936657 -512.2083211687318 388.0186518073602 625.0856101496256 -511.7983571738504 387.4454836766018 650.7979571805736 -511.7983571738504 387.4454836766018 650.7979571805736 -512.2083211687318 388.0186518073602 625.0856101496256 -449.3844444021827 406.9462422702394 706.1727514909105 -449.3844444021827 406.9462422702394 706.1727514909105 -384.5191453982319 410.8668993566008 753.7051739536219 -384.5191453982319 410.8668993566008 753.7051739536219 -321.64886179628 396.9391475813924 833.975875285895 -264.1655812063755 367.3745811777216 834.5858664727973 -264.1655812063755 367.3745811777216 834.5858664727973 -321.64886179628 396.9391475813924 833.975875285895 -427.6887646892612 -128.3265333349618 379.802277696282 -429.5466059288439 -153.8186411288433 311.1958631751964 -427.6887646892612 -128.3265333349618 379.802277696282 -429.5466059288439 -153.8186411288433 311.1958631751964 -344.0202437369549 -175.8381628190185 243.0116714341295 -344.0202437369549 -175.8381628190185 243.0116714341295 -355.1662815175722 -113.6814790026701 424.6876679276309 -355.1662815175722 -113.6814790026701 424.6876679276309 -249.3863128703799 -173.7387628696904 174.7465706626792 -249.3863128703799 -173.7387628696904 174.7465706626792 -290.3685951523094 -83.57595139307546 468.6880661829815 -290.3685951523094 -83.57595139307546 468.6880661829815 -152.5925139245203 -144.2079159488353 106.3398625899519 -152.5925139245203 -144.2079159488353 106.3398625899519 -235.9416913049809 -40.31752701712367 512.7876195792728 -235.9416913049809 -40.31752701712367 512.7876195792728 -61.68935763555874 -85.96768180151275 37.76138391032464 -61.68935763555874 -85.96768180151275 37.76138391032464 -194.12905923067 13.46329971955208 557.9766297453248 -194.12905923067 13.46329971955208 557.9766297453248 14.77374212408199 -0.1219811373770199 -30.9814904458471 14.77374212408199 -0.1219811373770199 -30.9814904458471 -166.743457154186 74.78116582444534 605.2521356423422 -166.743457154186 74.78116582444534 605.2521356423422 55.78126688881275 111.1930008118167 -70.66431664884294 55.78126688881275 111.1930008118167 -70.66431664884294 -153.9240635040046 139.7710961720244 629.9271327534623 -155.0740283539524 140.2787696200097 655.6184003464825 -155.0740283539524 140.2787696200097 655.6184003464825 -153.9240635040046 139.7710961720244 629.9271327534623 217.4625711030328 255.6330047782909 -432.6687235467114 217.4625711030328 255.6330047782909 -432.6687235467114 -159.7434853698976 206.2601709359902 710.0866919450286 -159.7434853698976 206.2601709359902 710.0866919450286 -179.7158713843678 268.9630588377962 756.4726962749792 -179.7158713843678 268.9630588377962 756.4726962749792 -216.2944043486918 323.9412807280779 835.3995381352431 -216.2944043486918 323.9412807280779 835.3995381352431 -671.3303354899857 712.753347188 -442.1002631952661 -671.3303354899857 712.753347188 -442.1002631952661 -700.8752441200669 500.3534912175877 -78.69367402892948 -700.8752441200669 500.3534912175877 -78.69367402892948 -768.237665297517 402.5932520920363 -39.29051618129853 -768.237665297517 402.5932520920363 -39.29051618129853 -794.7545695618828 291.0594278869845 29.98236861894361 -794.7545695618828 291.0594278869845 29.98236861894361 -790.4181982120783 183.8359883582635 99.57149373190691 -790.4181982120783 183.8359883582635 99.57149373190691 -759.3018803033523 88.51893187102144 169.3355363756299 -759.3018803033523 88.51893187102144 169.3355363756299 -707.1268358355817 10.91333854884726 239.1585193729215 -707.1268358355817 10.91333854884726 239.1585193729215 -622.1252406454964 -28.32475811067718 377.7389901537026 -640.6284263852979 -45.25590021612914 308.9559414297029 -622.1252406454964 -28.32475811067718 377.7389901537026 -640.6284263852979 -45.25590021612914 308.9559414297029 -653.1372708414895 39.56974482856651 421.5257106493089 -653.1372708414895 39.56974482856651 421.5257106493089 -667.0672966689267 110.1661882496004 464.6906797135804 -667.0672966689267 110.1661882496004 464.6906797135804 -664.2701752233282 179.9786317170043 508.2423570679214 -664.2701752233282 179.9786317170043 508.2423570679214 -645.5975689450554 245.6607421349382 553.1858138895034 -645.5975689450554 245.6607421349382 553.1858138895034 -612.4403615685449 304.0101797437923 600.5225659146217 -612.4403615685449 304.0101797437923 600.5225659146217 -567.447028547096 352.4525408286564 625.5389809000096 -566.7965615126645 352.0342234936753 651.2493540063533 -566.7965615126645 352.0342234936753 651.2493540063533 -567.447028547096 352.4525408286564 625.5389809000096 -511.3272577495893 387.0853026665881 706.3558157595974 -511.3272577495893 387.0853026665881 706.3558157595974 -449.4905668554111 407.7124798248664 753.6099475765616 -449.4905668554111 407.7124798248664 753.6099475765616 -384.8268555418075 410.6202035964647 833.6111344658275 -384.8268555418075 410.6202035964647 833.6111344658275 -358.62375959798 448.3118831982071 7690.305785786374 -315.9433585244711 426.3606734077249 7690.758694323225 -315.9433585244711 426.3606734077249 7690.758694323225 -358.62375959798 448.3118831982071 7690.305785786374 -500.5774361285064 -112.5426513579519 379.3814749417542 -508.6751407491905 -136.6835304188178 310.7390362807558 -500.5774361285064 -112.5426513579519 379.3814749417542 -508.6751407491905 -136.6835304188178 310.7390362807558 -431.4693330146901 -180.0838928502107 242.8835003126887 -431.4693330146901 -180.0838928502107 242.8835003126887 -426.928381723353 -117.1655919472718 424.5824886863554 -426.928381723353 -117.1655919472718 424.5824886863554 -339.2243750842613 -202.5438531023954 175.0120758645024 -339.2243750842613 -202.5438531023954 175.0120758645024 -356.7362127426209 -104.8556313650996 468.8842074094086 -356.7362127426209 -104.8556313650996 468.8842074094086 -237.7937465310258 -199.0657618004507 107.0391502560345 -237.7937465310258 -199.0657618004507 107.0391502560345 -293.158130983288 -77.15702489794762 513.2572225338297 -293.158130983288 -77.15702489794762 513.2572225338297 -134.6228066459307 -166.3318558084495 38.90277967046603 -134.6228066459307 -166.3318558084495 38.90277967046603 -239.0461484573143 -36.0301058916599 558.6795743598593 -239.0461484573143 -36.0301058916599 558.6795743598593 -38.25536403566298 -103.1959866718173 -29.42620945740299 -38.25536403566298 -103.1959866718173 -29.42620945740299 -196.9280856733078 16.11054524745202 606.1374151101279 -196.9280856733078 16.11054524745202 606.1374151101279 30.3312052213721 -6.283933761517346 -68.81282529830651 30.3312052213721 -6.283933761517346 -68.81282529830651 -167.8328646682423 75.56837062596958 630.9389976906925 -168.9222721823139 76.35557542749655 656.6258597390495 -168.9222721823139 76.35557542749655 656.6258597390495 -167.8328646682423 75.56837062596958 630.9389976906925 225.4320106752143 91.40575610950612 -429.9822449560206 225.4320106752143 91.40575610950612 -429.9822449560206 -156.59097862985 141.2960660402342 711.1493942577129 -156.59097862985 141.2960660402342 711.1493942577129 -159.8549991266052 207.0301440103395 757.5238151775825 -159.8549991266052 207.0301440103395 757.5238151775825 -181.2976728152112 269.5991538811933 836.3614398940629 -181.2976728152112 269.5991538811933 836.3614398940629 -280.3997881648768 394.1121541145686 7691.362832301091 -280.3997881648768 394.1121541145686 7691.362832301091 -809.5892507731468 623.7336695356181 -440.9655055019074 -809.5892507731468 623.7336695356181 -440.9655055019074 -781.6612497101052 411.3367136120047 -77.42938712750782 -781.6612497101052 411.3367136120047 -77.42938712750782 -821.2667714572613 299.5192465576016 -37.73523519285101 -821.2667714572613 299.5192465576016 -37.73523519285101 -817.730835827015 185.0014794215452 31.65389141575986 -817.730835827015 185.0014794215452 31.65389141575986 -785.5070785686044 82.63192505791051 101.2270201536919 -785.5070785686044 82.63192505791051 101.2270201536919 -730.4963515661749 -1.306446122685543 170.8600432231727 -730.4963515661749 -1.306446122685543 170.8600432231727 -659.7276791536086 -62.6869913100503 240.4613076671886 -659.7276791536086 -62.6869913100503 240.4613076671886 -580.6712188150199 -99.65480121376152 309.9750406865289 -566.8960971648795 -78.43390812179507 378.6777259847491 -566.8960971648795 -78.43390812179507 378.6777259847491 -580.6712188150199 -99.65480121376152 309.9750406865289 -614.2407762115863 -20.82784524510612 422.5947992457934 -614.2407762115863 -20.82784524510612 422.5947992457934 -645.7872927529476 43.80794109151441 465.8169048900587 -645.7872927529476 43.80794109151441 465.8169048900587 -660.9721386546363 112.0155752461227 509.3541171299581 -660.9721386546363 112.0155752461227 509.3541171299581 -659.7478253216492 180.3434645475389 554.2152446874156 -659.7478253216492 180.3434645475389 554.2152446874156 -642.624990087668 245.3395591668067 601.4078453824118 -642.624990087668 245.3395591668067 601.4078453824118 -611.5976676806256 303.8036740331264 626.2299307042174 -610.7549737927052 303.5971683224626 651.9372954938306 -611.5976676806256 303.8036740331264 626.2299307042174 -610.7549737927052 303.5971683224626 651.9372954938306 -566.0189532388213 351.8713919199123 706.8046969192108 -566.0189532388213 351.8713919199123 706.8046969192108 -511.4322272149815 387.8519099077111 753.7930084377315 -511.4322272149815 387.8519099077111 753.7930084377315 -449.3940865757611 407.4854078644943 833.5165004967635 -449.3940865757611 407.4854078644943 833.5165004967635 -405.5323925849771 458.4698448148685 7690.034971658667 -405.5323925849771 458.4698448148685 7690.034971658667 -517.036855842701 -161.5544334059041 242.3894996869008 -517.036855842701 -161.5544334059041 242.3894996869008 -497.1464388610731 -101.9600256413954 424.1771039910699 -497.1464388610731 -101.9600256413954 424.1771039910699 -433.4566990018319 -207.118915128438 174.8739627894256 -433.4566990018319 -207.118915128438 174.8739627894256 -426.3500788956807 -108.2354456611091 468.78217676088 -426.3500788956807 -108.2354456611091 468.78217676088 -334.2911032339647 -230.006044777927 107.3243361731786 -334.2911032339647 -230.006044777927 107.3243361731786 -357.9604233915559 -97.93480921460161 513.4487376366722 -357.9604233915559 -97.93480921460161 513.4487376366722 -225.8728887975167 -225.0843267232519 39.65171316621081 -225.8728887975167 -225.0843267232519 39.65171316621081 -295.243793537256 -72.2136405273294 559.1408155750969 -295.243793537256 -72.2136405273294 559.1408155750969 -116.1580139345024 -189.0356418234893 -28.20704656979552 -116.1580139345024 -189.0356418234893 -28.20704656979552 -241.2709516603122 -32.75013317239132 606.8313732310828 -241.2709516603122 -32.75013317239132 606.8313732310828 -24.660629744679 -113.172944573155 -67.19997979446322 -24.660629744679 -113.172944573155 -67.19997979446322 -198.8451992513988 18.19363053189102 657.5034638127393 -198.8451992513988 18.19363053189102 657.5034638127393 175.2934010233723 -13.17979335535608 -371.5140585854091 190.619180087326 -69.28951743153289 -427.4496124004128 176.2912893730666 -8.573562301770153 -371.5866549379205 187.6310854027183 43.77069107010368 -372.411624815798 188.6289737524101 48.37692212368563 -372.4842211683095 152.6583492304751 57.40317328527829 -294.2112630952921 139.322776501436 -4.153542193762064 -293.2411005123914 152.6583492304751 57.40317328527829 -294.2112630952921 139.322776501436 -4.153542193762064 -293.2411005123914 175.2934010233723 -13.17979335535608 -371.5140585854091 190.619180087326 -69.28951743153289 -427.4496124004128 188.6289737524101 48.37692212368563 -372.4842211683095 187.6310854027183 43.77069107010368 -372.411624815798 176.2912893730666 -8.573562301770153 -371.5866549379205 -170.3620452242326 77.72912029162319 712.151239008434 -170.3620452242326 77.72912029162319 712.151239008434 -156.7025510665233 142.0672483399818 758.5864977093881 -156.7025510665233 142.0672483399818 758.5864977093881 -161.5603560251075 208.0515267770753 837.4060197340352 -161.5603560251075 208.0515267770753 837.4060197340352 -254.4152841006974 353.7640086153598 7692.077028715034 -254.4152841006974 353.7640086153598 7692.077028715034 -920.0954477021754 501.9686994244838 -439.2361027881261 -920.0954477021754 501.9686994244838 -439.2361027881261 -836.6530846761614 304.4477028003613 -75.81654162366033 -836.6530846761614 304.4477028003613 -75.81654162366033 -845.8084879278603 186.2352137797251 -35.94982593269378 -845.8084879278603 186.2352137797251 -35.94982593269378 -812.4710519340715 76.61244785809424 33.42695170338908 -812.4710519340715 76.61244785809424 33.42695170338908 -754.5663245822973 -13.8518072002596 102.864531888008 -754.5663245822973 -13.8518072002596 102.864531888008 -679.4205459429744 -80.61579263487738 172.2638859567645 -679.4205459429744 -80.61579263487738 172.2638859567645 -594.8915269473016 -121.5125365258575 241.5633348830313 -594.8915269473016 -121.5125365258575 241.5633348830313 -561.0352083776071 -69.10101430040561 423.4991401388446 -561.0352083776071 -69.10101430040561 423.4991401388446 -608.055183976521 -14.78161717531293 466.8539897893052 -608.055183976521 -14.78161717531293 466.8539897893052 -640.1940380344769 47.22243226209491 510.4537795233646 -640.1940380344769 47.22243226209491 510.4537795233646 -656.5085135156334 113.5905566844737 555.3072087755577 -656.5085135156334 113.5905566844737 555.3072087755577 -656.5943485877932 180.8573022672121 602.424115864337 -656.5943485877932 180.8573022672121 602.424115864337 -641.651445474731 245.3873912968332 627.11137247495 -640.6779008617918 245.4352234268569 652.8148995674817 -640.6779008617918 245.4352234268569 652.8148995674817 -641.651445474731 245.3873912968332 627.11137247495 -609.7323822046177 303.7042798538554 707.4888044605339 -609.7323822046177 303.7042798538554 707.4888044605339 -566.1229046868439 352.6386546238524 754.2418812419844 -566.1229046868439 352.6386546238524 754.2418812419844 -510.950404805612 387.7483915341323 833.6984225272686 -510.950404805612 387.7483915341323 833.6984225272686 -453.4725116675361 456.1423099603682 7689.964707475478 -453.4725116675361 456.1423099603682 7689.964707475478 -525.6615074743955 -187.1521660313961 174.3416436152757 -525.6615074743955 -187.1521660313961 174.3416436152757 -494.4661236755285 -93.48506552223887 468.3889274574655 -494.4661236755285 -93.48506552223887 468.3889274574655 -435.5084486434556 -234.9202357275724 107.1759853924241 -435.5084486434556 -234.9202357275724 107.1759853924241 -425.9323993929772 -101.2349083028 513.3491134500423 -425.9323993929772 -101.2349083028 513.3491134500423 -329.2210617895788 -258.2212107461247 39.9571458174982 -329.2210617895788 -258.2212107461247 39.9571458174982 -358.8922178293145 -92.62145609816412 559.3289205644651 -358.8922178293145 -92.62145609816412 559.3289205644651 -213.625270722072 -251.7911159505695 -27.40708571907265 -213.625270722072 -251.7911159505695 -27.40708571907265 -296.7501620782367 -68.47109494687652 607.2867179060854 -296.7501620782367 -68.47109494687652 607.2867179060854 -105.4466353347477 -202.1897221787466 -65.93569289304196 -105.4466353347477 -202.1897221787466 -65.93569289304196 -242.0372815958763 -31.4967789058602 632.5113892656602 -242.8036115314549 -30.24342463933022 658.191405300199 -242.8036115314549 -30.24342463933022 658.191405300199 -242.0372815958763 -31.4967789058602 632.5113892656602 115.3965162130012 -215.5016985145016 -425.2434206031796 115.3965162130012 -215.5016985145016 -425.2434206031796 -200.1182097223914 19.89131599358564 713.0239521330695 -200.1182097223914 19.89131599358564 713.0239521330695 -170.4733613297551 78.50148581040673 759.5883238120352 -170.4733613297551 78.50148581040673 759.5883238120352 -158.4275195001815 143.4927684905978 838.4620912653138 -158.4275195001815 143.4927684905978 838.4620912653138 -239.7606473424635 308.0658963474051 7692.852612259726 -239.7606473424635 308.0658963474051 7692.852612259726 -995.3181115765037 355.7565183415101 -437.0299109908928 -995.3181115765037 355.7565183415101 -437.0299109908928 -862.1031463436018 186.970768227022 -73.96505027312509 -862.1031463436018 186.970768227022 -73.96505027312509 -840.1903372889371 70.46127338151416 -34.05596109137935 -840.1903372889371 70.46127338151416 -34.05596109137935 -779.3336634631447 -26.72113342365867 35.18071835334371 -779.3336634631447 -26.72113342365867 35.18071835334371 -699.7044975052791 -99.04000150975446 104.3724352162802 -699.7044975052791 -99.04000150975446 104.3724352162802 -609.555195180208 -144.004306765628 173.4513950140701 -609.555195180208 -144.004306765628 173.4513950140701 -556.4423511975009 -61.60970497881181 467.731258789305 -556.4423511975009 -61.60970497881181 467.731258789305 -603.3518665826684 -9.985251616428513 511.4664040733042 -603.3518665826684 -9.985251616428513 511.4664040733042 -636.1003872733893 49.95111890220994 556.3872906058784 -636.1003872733893 49.95111890220994 556.3872906058784 -653.3964483725923 114.9577682907483 603.5021202064881 -653.3964483725923 114.9577682907483 603.5021202064881 -655.5602466389752 181.1846657507759 628.1232374122046 -654.5261446901643 181.5120292343319 653.8223589600668 -654.5261446901643 181.5120292343319 653.8223589600668 -655.5602466389752 181.1846657507759 628.1232374122046 -639.4885467027671 245.8664755558228 708.3615175851678 -639.4885467027671 245.8664755558228 708.3615175851678 -609.8355199819235 304.4724391282351 754.9259760494965 -609.8355199819235 304.4724391282351 754.9259760494965 -565.300848870566 352.7541996513388 834.144502871623 -565.300848870566 352.7541996513388 834.144502871623 -499.1770769549993 441.4878962886068 7690.099781624739 -499.1770769549993 441.4878962886068 7690.099781624739 -534.5479879394245 -213.4734406572641 106.6042077743238 -534.5479879394245 -213.4734406572641 106.6042077743238 -492.4418811520823 -86.83242586336212 512.9651391976197 -492.4418811520823 -86.83242586336212 512.9651391976197 -437.6243184236428 -263.4842839922014 39.79826289389666 -437.6243184236428 -263.4842839922014 39.79826289389666 -425.6538864019516 -95.86279369850786 559.2310702837929 -425.6538864019516 -95.86279369850786 559.2310702837929 -324.0149019205128 -287.1857271995825 -27.08084291520339 -324.0149019205128 -287.1857271995825 -27.08084291520339 -359.5849004208086 -88.61801556273622 607.4724181479885 -359.5849004208086 -88.61801556273622 607.4724181479885 -206.5213787729881 -267.2679202916194 -65.10612365704884 -206.5213787729881 -267.2679202916194 -65.10612365704884 -297.2759889742432 -67.06288988456333 632.9647600160395 -297.8018158702733 -65.65468482225788 658.6428021259681 -297.8018158702733 -65.65468482225788 658.6428021259681 -297.2759889742432 -67.06288988456333 632.9647600160395 4.890319283962754 -337.2666686256454 -423.5140178893982 4.890319283962754 -337.2666686256454 -423.5140178893982 -243.8316386881734 -28.27579607246287 713.7080596743881 -243.8316386881734 -28.27579607246287 713.7080596743881 -200.2289719542023 20.66475809061956 760.4610206921946 -200.2289719542023 20.66475809061956 760.4610206921946 -172.1126608723278 80.32245171059788 839.4576849582641 -172.1126608723278 80.32245171059788 839.4576849582641 -237.4345671673209 260.1320681420724 7693.636728198288 -237.4345671673209 260.1320681420724 7693.636728198288 -1030.130942164393 195.0612448004778 -434.4972784352852 -1030.130942164393 195.0612448004778 -434.4972784352852 -856.2770550680059 66.91176884335971 -72.00108915170017 -856.2770550680059 66.91176884335971 -72.00108915170017 -804.7951872221179 -39.91277192438133 -32.18270442808137 -804.7951872221179 -39.91277192438133 -32.18270442808137 -720.5769286764015 -117.9572516261687 36.79567506667127 -720.5769286764015 -117.9572516261687 36.79567506667127 -624.6603401893987 -167.1272232085232 105.6479690186248 -624.6603401893987 -167.1272232085232 105.6479690186248 -552.9563573990819 -55.70886727330037 512.3229820901536 -552.9563573990819 -55.70886727330037 512.3229820901536 -599.9142266722791 -6.237926283510319 557.3818843865697 -599.9142266722791 -6.237926283510319 557.3818843865697 -633.2492210569491 52.13190157378801 604.5683941944326 -633.2492210569491 52.13190157378801 604.5683941944326 -652.3762093593836 115.5708070409072 629.1965685926721 -651.3559703461781 116.183845791055 654.8910169788387 -651.3559703461781 116.183845791055 654.8910169788387 -652.3762093593836 115.5708070409072 629.1965685926721 -653.2596132971552 182.2995298072079 709.3633623358958 -653.2596132971552 182.2995298072079 709.3633623358958 -639.5911306063628 246.63571140844 755.798672929669 -639.5911306063628 246.63571140844 755.798672929669 -608.7415258259948 304.8876285622745 834.8243418915417 -608.7415258259948 304.8876285622745 834.8243418915417 -539.5313978533828 415.5052778737512 7690.430989026395 -539.5313978533828 415.5052778737512 7690.430989026395 -543.69515590494 -240.5148767173939 39.18589200408025 -543.69515590494 -240.5148767173939 39.18589200408025 -490.979101870858 -81.7167615274642 558.853933068003 -490.979101870858 -81.7167615274642 558.853933068003 -439.8040365911859 -292.8073913063071 -27.25055106613161 -439.8040365911859 -292.8073913063071 -27.25055106613161 -425.4930831093312 -91.81791567437904 607.3758187922072 -425.4930831093312 -91.81791567437904 607.3758187922072 -320.996783328055 -303.9725672572156 -64.76780585898467 -320.996783328055 -303.9725672572156 -64.76780585898467 -359.8383379759106 -87.12247335902123 633.1496552451645 -360.0917755310047 -85.62693115529567 658.8268923423671 -360.0917755310047 -85.62693115529567 658.8268923423671 -359.8383379759106 -87.12247335902123 633.1496552451645 -133.3685959991883 -426.28634627801 -422.3792601960396 -133.3685959991883 -426.28634627801 -422.3792601960396 -298.5233341774094 -63.48970681914011 714.156940834001 -298.5233341774094 -63.48970681914011 714.156940834001 -243.9415872492787 -27.50145740500216 761.1451154997144 -243.9415872492787 -27.50145740500216 761.1451154997144 -201.6831603728258 22.845529131744 840.3249527480216 -201.6831603728258 22.845529131744 840.3249527480216 -247.5955620951916 213.2291351771575 7694.375940325409 -247.5955620951916 213.2291351771575 7694.375940325409 -1022.161502592217 30.8339961316866 -431.8107998445942 -1022.161502592217 30.8339961316866 -431.8107998445942 -819.5718493417419 -47.54747294952233 -70.0584989642141 -819.5718493417419 -47.54747294952233 -70.0584989642141 -742.0351587111874 -137.3651133520932 -30.45771528870364 -742.0351587111874 -137.3651133520932 -30.45771528870364 -640.2050219494726 -190.8783160687495 38.16176521220052 -640.2050219494726 -190.8783160687495 38.16176521220052 -550.4160587568132 -51.14738830008093 558.2232101951056 -550.4160587568132 -51.14738830008093 558.2232101951056 -597.5256668875489 -3.338818891552137 605.5502730180231 -597.5256668875489 -3.338818891552137 605.5502730180231 -632.3163205147018 53.01729120625907 630.2582202701526 -631.383419972454 53.90268083873582 655.9480463458574 -631.383419972454 53.90268083873582 655.9480463458574 -632.3163205147018 53.01729120625907 630.2582202701526 -650.1071065571165 117.335424911451 710.4260646485761 -650.1071065571165 117.335424911451 710.4260646485761 -653.3619408696034 183.0699488788679 756.8004990323195 -653.3619408696034 183.0699488788679 756.8004990323195 -638.3120253264918 247.4107059834158 835.6916096813004 -638.3120253264918 247.4107059834158 835.6916096813004 -571.7853940821339 379.9651272224579 7690.935758443314 -571.7853940821339 379.9651272224579 7690.935758443314 -553.1018365568503 -268.273001152082 -27.90464484182741 -553.1018365568503 -268.273001152082 -27.90464484182741 -489.9831764119755 -77.85272737726473 607.0035029252003 -489.9831764119755 -77.85272737726473 607.0035029252003 -441.0715393590317 -309.802302042108 -64.94379529769338 -441.0715393590317 -309.802302042108 -64.94379529769338 -425.4608079055639 -90.30850186546888 633.0534746487629 -425.4285327018032 -88.79908805655111 658.7311305052999 -425.4285327018032 -88.79908805655111 658.7311305052999 -425.4608079055639 -90.30850186546888 633.0534746487629 -289.9581130436102 -476.4941875515802 -421.9164793846304 -289.9581130436102 -476.4941875515802 -421.9164793846304 -360.4661475248165 -83.35064642279372 714.3400051026931 -360.4661475248165 -83.35064642279372 714.3400051026931 -298.6322647211563 -62.71471268886239 761.5939883039619 -298.6322647211563 -62.71471268886239 761.5939883039619 -245.1238373282486 -25.02104195731727 841.0047917679508 -245.1238373282486 -25.02104195731727 841.0047917679508 -269.5511771135637 170.5534548234456 7695.01987255611 -269.5511771135637 170.5534548234456 7695.01987255611 -971.9528969966927 -125.7334120664351 -429.1535542951599 -971.9528969966927 -125.7334120664351 -429.1535542951599 -754.4889282768176 -148.6067489762758 -68.26966402166204 -754.4889282768176 -148.6067489762758 -68.26966402166204 -656.1872439833364 -215.2545348809471 -28.99854883241636 -656.1872439833364 -215.2545348809471 -28.99854883241636 -548.6602870450944 -47.67415517528491 606.3808432580311 -548.6602870450944 -47.67415517528491 606.3808432580311 -596.7476283791544 -2.212963023587122 631.2358426372957 -595.9695898707496 -1.087107155611079 656.9214122565898 -595.9695898707496 -1.087107155611079 656.9214122565898 -596.7476283791544 -2.212963023587122 631.2358426372957 -630.2458646072179 55.40135725893254 711.4772031168202 -630.2458646072179 55.40135725893254 711.4772031168202 -650.2094928095218 118.107053208509 757.8631815641231 -650.2094928095218 118.107053208509 757.8631815641231 -651.9971666986465 184.2403892034182 836.6872033742607 -651.9971666986465 184.2403892034182 836.6872033742607 -593.7410091005111 337.2894468687506 7691.579690674091 -593.7410091005111 337.2894468687506 7691.579690674091 -558.5627506753516 -284.3598378548095 -65.62209858375991 -558.5627506753516 -284.3598378548095 -65.62209858375991 -489.6713358837736 -76.40385282635612 632.6827727754771 -489.3594953555806 -74.95497827545773 658.3620426257578 -489.3594953555806 -74.95497827545773 658.3620426257578 -489.6713358837736 -76.40385282635612 632.6827727754771 -454.2069150391034 -484.4686110359271 -422.1572132026868 -454.2069150391034 -484.4686110359271 -422.1572132026868 -425.4387783661027 -86.50512467119688 714.244776953072 -425.4387783661027 -86.50512467119688 714.244776953072 -360.5739250807137 -82.57528260601475 761.7770491651434 -360.5739250807137 -82.57528260601475 761.7770491651434 -299.4742813932127 -60.01523384011352 841.4508721123048 -299.4742813932127 -60.01523384011352 841.4508721123048 -301.8051733423188 135.0133041721591 7695.524641973127 -301.8051733423188 135.0133041721591 7695.524641973127 -882.9267588755231 -263.9711696650555 -426.7066286798705 -882.9267588755231 -263.9711696650555 -426.7066286798705 -665.4635853891981 -229.3790365840177 -66.7564904691925 -665.4635853891981 -229.3790365840177 -66.7564904691925 -548.0940805417405 -46.35610509519097 632.0628123454048 -547.5278740383677 -45.0380550150885 657.7447814327709 -547.5278740383677 -45.0380550150885 657.7447814327709 -548.0940805417405 -46.35610509519097 632.0628123454048 -595.0293982640901 0.7180312092958729 712.4451443910598 -595.0293982640901 0.7180312092958729 712.4451443910598 -630.3486205517562 56.17413838105233 758.914300466728 -630.3486205517562 56.17413838105233 758.914300466728 -648.8643301737084 119.6816309169391 837.7432749055301 -648.8643301737084 119.6816309169391 837.7432749055301 -603.902004028018 290.3865139055348 7692.318902801171 -603.902004028018 290.3865139055348 7692.318902801171 -614.9217175636545 -449.6661729489485 -423.0850560383395 -614.9217175636545 -449.6661729489485 -423.0850560383395 -489.0134492817807 -72.73816908472986 713.8777460261613 -489.0134492817807 -72.73816908472986 713.8777460261613 -425.5453465378959 -85.72970213775841 761.6818227880731 -425.5453465378959 -85.72970213775841 761.6818227880731 -361.0305996230472 -79.75225017046967 841.6327941428131 -361.0305996230472 -79.75225017046967 841.6327941428131 -342.1594942406927 109.0306857573029 7695.855849374771 -342.1594942406927 109.0306857573029 7695.855849374771 -761.150072419004 -374.4586019325406 -424.6367769356717 -761.150072419004 -374.4586019325406 -424.6367769356717 -546.85765151106 -42.9879749356445 713.2639248730943 -546.85765151106 -42.9879749356445 713.2639248730943 -595.1328097190269 1.491830192992666 759.8822237239615 -595.1328097190269 1.491830192992666 759.8822237239615 -629.1270133836002 58.13400381282793 838.7878547455014 -629.1270133836002 58.13400381282793 838.7878547455014 -601.5759238527992 242.4526856985734 7693.103018739742 -601.5759238527992 242.4526856985734 7693.103018739742 -489.1188340907503 -71.96300280592004 761.3147986929896 -489.1188340907503 -71.96300280592004 761.3147986929896 -425.5978306570189 -82.88704590244879 841.5381601737458 -425.5978306570189 -82.88704590244879 841.5381601737458 -387.8640595281584 94.37627208553806 7695.990923524019 -387.8640595281584 94.37627208553806 7695.990923524019 -546.9619596227035 -42.21336241942845 760.7009889654273 -546.9619596227035 -42.21336241942845 760.7009889654273 -594.1302818501252 3.79187696594181 839.7497565043425 -594.1302818501252 3.79187696594181 839.7497565043425 -586.9212870940696 196.7545734290726 7693.878602284535 -586.9212870940696 196.7545734290726 7693.878602284535 -488.7758244025414 -69.20598988737856 841.1734193537018 -488.7758244025414 -69.20598988737856 841.1734193537018 -435.8041786107262 92.04873723103708 7695.920659340874 -435.8041786107262 92.04873723103708 7695.920659340874 -546.2591049924442 -39.64142348370831 840.5634281667778 -546.2591049924442 -39.64142348370831 840.5634281667778 -560.9367830308162 156.4064279313394 7694.592798698351 -560.9367830308162 156.4064279313394 7694.592798698351 -482.7128115977093 102.206698847701 7695.649845213157 -482.7128115977093 102.206698847701 7695.649845213157 -525.3932126712231 124.1579086381813 7695.196936676245 -525.3932126712231 124.1579086381813 7695.196936676245</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"970\" source=\"#ID10592\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10589\">\r\n\t\t\t\t\t<float_array count=\"2910\" id=\"ID10593\">0.3231148675131086 0.9075788727048409 0.2681368535128967 0.5349916478723462 0.7785284855033301 0.3281422465436636 0.3166451006636462 0.8908275910470694 0.3258252342207165 0.5458229181881635 0.7930365764884794 0.2705001484879254 -0.5458229181881635 -0.7930365764884794 -0.2705001484879254 -0.3231148675131086 -0.9075788727048409 -0.2681368535128967 -0.5349916478723462 -0.7785284855033301 -0.3281422465436636 -0.3166451006636462 -0.8908275910470694 -0.3258252342207165 0.7168272367675571 0.6135498849478825 0.3312329260635613 0.7312906989426473 0.6247625048234846 0.2736525647726688 -0.7312906989426473 -0.6247625048234846 -0.2736525647726688 -0.7168272367675571 -0.6135498849478825 -0.3312329260635613 0.5327404920283584 0.7754879442586246 0.3388303653200447 0.3153016208305983 0.88732021757875 0.336522984917223 -0.5327404920283584 -0.7754879442586246 -0.3388303653200447 -0.3153016208305983 -0.88732021757875 -0.336522984917223 0.07834373252852117 0.9605835252755256 0.2667237344945949 0.076667551498982 0.9427942031193528 0.3244397896554853 -0.07834373252852117 -0.9605835252755256 -0.2667237344945949 -0.076667551498982 -0.9427942031193528 -0.3244397896554853 0.3298172541846069 0.9245389129431252 0.1909145811510234 0.5570165446202613 0.8076867006124701 0.1933255354914257 -0.5570165446202613 -0.8076867006124701 -0.1933255354914257 -0.3298172541846069 -0.9245389129431252 -0.1909145811510234 0.8497600724635713 0.4071348083685658 0.3348866480787155 0.8668788870181433 0.4142242576077684 0.2773792704069251 -0.8497600724635713 -0.4071348083685658 -0.3348866480787155 -0.8668788870181433 -0.4142242576077684 -0.2773792704069251 0.7138201825405163 0.611195166858895 0.3419081967519229 -0.7138201825405163 -0.611195166858895 -0.3419081967519229 0.7462245595903781 0.6360191315007228 0.1965415249488328 -0.7462245595903781 -0.6360191315007228 -0.1965415249488328 0.5304208575498103 0.7723477211074041 0.3494749083644253 0.3139176120461595 0.8836987872368718 0.3471774564733697 -0.5304208575498103 -0.7723477211074041 -0.3494749083644253 -0.3139176120461595 -0.8836987872368718 -0.3471774564733697 0.07632166868466875 0.9390708022040598 0.335143299704785 -0.07632166868466875 -0.9390708022040598 -0.335143299704785 -0.1718097384198376 0.9484383547221628 0.2663570931588342 -0.168586926227706 0.9308868829863396 0.324080328605534 0.1718097384198376 -0.9484383547221628 -0.2663570931588342 0.168586926227706 -0.9308868829863396 -0.324080328605534 0.08010994446204064 0.9786124833297534 0.1894729644816431 -0.08010994446204064 -0.9786124833297534 -0.1894729644816431 0.3326666809149802 0.9315015944892392 0.147097446860969 0.5617583178595037 0.8136761182208612 0.1495284820784715 -0.5617583178595037 -0.8136761182208612 -0.1495284820784715 -0.3326666809149802 -0.9315015944892392 -0.147097446860969 0.9247310018896102 0.1733501021172138 0.3388544174718538 0.9433473714673679 0.1757696684581867 0.281426296560408 -0.9247310018896102 -0.1733501021172138 -0.3388544174718538 -0.9433473714673679 -0.1757696684581867 -0.281426296560408 0.8462004107070259 0.4056381666526902 0.3455467300871257 -0.8462004107070259 -0.4056381666526902 -0.3455467300871257 0.8845470855557905 0.421235066748758 0.2003433851564016 -0.8845470855557905 -0.421235066748758 -0.2003433851564016 0.7107213736200401 0.608761885125464 0.3525394960825449 -0.7107213736200401 -0.608761885125464 -0.3525394960825449 0.7525422494000477 0.6405787271916271 0.1527712575632967 -0.7525422494000477 -0.6405787271916271 -0.1527712575632967 0.5280330431358516 0.7691082204551323 0.3600745069913056 0.3124932525271259 0.8799637663928897 0.3577872789251426 -0.5280330431358516 -0.7691082204551323 -0.3600745069913056 -0.3124932525271259 -0.8799637663928897 -0.3577872789251426 0.07596597550158707 0.9352266923734982 0.3458037079590364 -0.07596597550158707 -0.9352266923734982 -0.3458037079590364 -0.1679132756037639 0.9272129813142321 0.3347853329499184 0.1679132756037639 -0.9272129813142321 -0.3347853329499184 -0.4024046451615596 0.8559170948373149 0.3247713477473807 -0.4102979996849536 0.8719710343471266 0.2670619155067381 0.4102979996849536 -0.8719710343471266 -0.2670619155067381 0.4024046451615596 -0.8559170948373149 -0.3247713477473807 -0.1750882440506878 0.9662223873113125 0.1890989292769123 0.1750882440506878 -0.9662223873113125 -0.1890989292769123 0.08087955503237032 0.9860255445049089 0.1456438229433834 -0.08087955503237032 -0.9860255445049089 -0.1456438229433834 0.3347388748227306 0.9363525057512731 0.1058010900497941 0.5651920581415787 0.81782676450528 0.1082465734908565 -0.5651920581415787 -0.81782676450528 -0.1082465734908565 -0.3347388748227306 -0.9363525057512731 -0.1058010900497941 0.9554849514452584 -0.07435097643955578 0.2855178450887735 0.936630880100607 -0.07187219242264271 0.3428658373158882 -0.9554849514452584 0.07435097643955578 -0.2855178450887735 -0.936630880100607 0.07187219242264271 -0.3428658373158882 0.9208596827470041 0.1728253135050581 0.349498005291826 -0.9208596827470041 -0.1728253135050581 -0.349498005291826 0.9625576709607252 0.1779716854219868 0.2044720256238538 -0.9625576709607252 -0.1779716854219868 -0.2044720256238538 0.8425319780473379 0.4040893836748496 0.3561623730392084 -0.8425319780473379 -0.4040893836748496 -0.3561623730392084 0.8920168658874288 0.4240057225432585 0.1566047835250832 -0.8920168658874288 -0.4240057225432585 -0.1566047835250832 0.7075312090410072 0.6062503531188982 0.3631254570753502 -0.7075312090410072 -0.6062503531188982 -0.3631254570753502 0.7571098642037937 0.6437006142934958 0.1115086215657301 -0.7571098642037937 -0.6437006142934958 -0.1115086215657301 0.5255773562616304 0.765769859486563 0.3706277983192369 0.3110287256842553 0.8761156360398528 0.3683510880745603 -0.5255773562616304 -0.765769859486563 -0.3706277983192369 -0.3110287256842553 -0.8761156360398528 -0.3683510880745603 0.07560051774849305 0.9312623686739604 0.3564196436897445 -0.07560051774849305 -0.9312623686739604 -0.3564196436897445 -0.1672180412869979 0.9234198949361 0.3454472815124496 0.1672180412869979 -0.9234198949361 -0.3454472815124496 -0.4007590041987398 0.852554845806934 0.3354734794953989 0.4007590041987398 -0.852554845806934 -0.3354734794953989 -0.6088513141592703 0.7229939058412018 0.3264657552684707 -0.6208684703821248 0.7363926856657539 0.2687901690600664 0.6208684703821248 -0.7363926856657539 -0.2687901690600664 0.6088513141592703 -0.7229939058412018 -0.3264657552684707 -0.4183859765414082 0.8882129894558505 0.1898179654179059 0.4183859765414082 -0.8882129894558505 -0.1898179654179059 -0.1764441832573076 0.973532251179379 0.1452666723934703 0.1764441832573076 -0.973532251179379 -0.1452666723934703 0.08145531784857314 0.9912005046385916 0.1043388268977045 -0.08145531784857314 -0.9912005046385916 -0.1043388268977045 0.3360690636367124 0.9392512750306755 0.06974687677303791 0.567381449699615 0.8202836321339762 0.07220147775395604 -0.567381449699615 -0.8202836321339762 -0.07220147775395604 -0.3360690636367124 -0.9392512750306755 -0.06974687677303791 0.9024644709346237 -0.3190923684795923 0.2893750837214114 0.8846487500619621 -0.3118205811271032 0.3466475359776324 -0.9024644709346237 0.3190923684795923 -0.2893750837214114 -0.8846487500619621 0.3118205811271032 -0.3466475359776324 0.9327100926512039 -0.07137758138341675 0.3534927494906176 -0.9327100926512039 0.07137758138341675 -0.3534927494906176 0.9749400233284241 -0.07719301505392417 0.2086460863262392 -0.9749400233284241 0.07719301505392417 -0.2086460863262392 0.9168699959673019 0.1722783094921347 0.3600966461569062 -0.9168699959673019 -0.1722783094921347 -0.3600966461569062 0.9706772027007565 0.1787161966387166 0.1607678115047463 -0.9706772027007565 -0.1787161966387166 -0.1607678115047463 0.838755246870903 0.4024886589078028 0.3667322119709819 -0.838755246870903 -0.4024886589078028 -0.3667322119709819 0.8974134116854314 0.4258404644957605 0.1153649310889116 -0.8974134116854314 -0.4258404644957605 -0.1153649310889116 0.7042500995975128 0.6036608942831453 0.3736647186050168 -0.7042500995975128 -0.6036608942831453 -0.3736647186050168 0.7600147863664734 0.6455082842677279 0.07547568778128476 -0.7600147863664734 -0.6455082842677279 -0.07547568778128476 0.5230541131386968 0.7623330681118096 0.3811334254456393 0.309524220098468 0.8721548917303371 0.3788675256646831 -0.5230541131386968 -0.7623330681118096 -0.3811334254456393 -0.309524220098468 -0.8721548917303371 -0.3788675256646831 0.07522534248084895 0.9271783416259288 0.3669897419117209 -0.07522534248084895 -0.9271783416259288 -0.3669897419117209 -0.1665013128087047 0.9195081123278407 0.3560648033662819 0.1665013128087047 -0.9195081123278407 -0.3560648033662819 -0.3990618494561162 0.8490830086583812 0.3461324670069184 0.3990618494561162 -0.8490830086583812 -0.3461324670069184 -0.6063474654922916 0.7201842242385812 0.3371608432913698 0.6063474654922916 -0.7201842242385812 -0.3371608432913698 -0.7738579338978926 0.5411758116621337 0.3290480800963829 -0.789171120917498 0.5509427490868539 0.2714240761952401 0.7738579338978926 -0.5411758116621337 -0.3290480800963829 0.789171120917498 -0.5509427490868539 -0.2714240761952401 -0.6332029146093442 0.7499005013106072 0.1915810717798911 0.6332029146093442 -0.7499005013106072 -0.1915810717798911 -0.4217683464371928 0.8948731118066439 0.1459916973979338 0.4217683464371928 -0.8948731118066439 -0.1459916973979338 -0.1773977569440255 0.9786329606836789 0.1039594348518948 0.1773977569440255 -0.9786329606836789 -0.1039594348518948 0.08184118502618486 0.9943037646977296 0.06827916183896396 -0.08184118502618486 -0.9943037646977296 -0.06827916183896396 0.3368187342963209 0.9406886689568369 0.04071815716899369 0.5686018431418236 0.8214789258386274 0.0431777532849493 -0.5686018431418236 -0.8214789258386274 -0.0431777532849493 -0.3368187342963209 -0.9406886689568369 -0.04071815716899369 0.7878991880617655 -0.5417757862486746 0.2927351480199145 0.7723271080312758 -0.5301429778394303 0.349941796942845 -0.7878991880617655 0.5417757862486746 -0.2927351480199145 -0.7723271080312758 0.5301429778394303 -0.349941796942845 0.8809440545683809 -0.3103284942904624 0.3572587274679742 -0.8809440545683809 0.3103284942904624 -0.3572587274679742 0.9208503058078364 -0.3268699820211356 0.2125811119246404 -0.9208503058078364 0.3268699820211356 -0.2125811119246404 0.9286694143080768 -0.07087379580305592 0.3640742012243663 -0.9286694143080768 0.07087379580305592 -0.3640742012243663 0.98316268787856 -0.07857377469173954 0.1649766380251975 -0.98316268787856 0.07857377469173954 -0.1649766380251975 0.9127624553054113 0.1717091605502062 0.3706489772925058 -0.9127624553054113 -0.1717091605502062 -0.3706489772925058 0.9765412456881825 0.1790931242898637 0.1195527009392448 -0.9765412456881825 -0.1790931242898637 -0.1195527009392448 0.8348707035042283 0.4008361985104848 0.3772548878331709 -0.8348707035042283 -0.4008361985104848 -0.3772548878331709 0.9008414300850994 0.4268358825590825 0.07934637485255462 -0.9008414300850994 -0.4268358825590825 -0.07934637485255462 0.7008784677898639 0.6009938420930123 0.3841559255755563 -0.7008784677898639 -0.6009938420930123 -0.3841559255755563 0.7616271903785202 0.6463479085701047 0.04645862635908139 -0.7616271903785202 -0.6463479085701047 -0.04645862635908139 0.518047829919937 0.7554964147781829 0.4010631037287723 0.3065400203659096 0.8642782486659918 0.398818661545462 -0.518047829919937 -0.7554964147781829 -0.4010631037287723 -0.3065400203659096 -0.8642782486659918 -0.398818661545462 0.07484049800506362 0.9229751371581273 0.3775126435581863 -0.07484049800506362 -0.9229751371581273 -0.3775126435581863 -0.1657631824667581 0.9154781372442089 0.3666365333219885 0.1657631824667581 -0.9154781372442089 -0.3666365333219885 -0.3973133994840943 0.8455020304996974 0.3567469397363921 0.3973133994840943 -0.8455020304996974 -0.3567469397363921 -0.6037656766190021 0.7172819694926628 0.3478125701833179 0.6037656766190021 -0.7172819694926628 -0.3478125701833179 -0.770668145598254 0.539121955716266 0.3397324332836312 0.770668145598254 -0.539121955716266 -0.3397324332836312 -0.8861795759285744 0.3228534149498121 0.3323423410615873 -0.9037364037903575 0.3282593313177702 0.2747841404937381 0.8861795759285744 -0.3228534149498121 -0.3323423410615873 0.9037364037903575 -0.3282593313177702 -0.2747841404937381 -0.8048996389269791 0.5607106903704733 0.1942680955779556 0.8048996389269791 -0.5607106903704733 -0.1942680955779556 -0.6383744982039407 0.7554086167445689 0.1477694887008956 0.6383744982039407 -0.7554086167445689 -0.1477694887008956 -0.4241799402828584 0.899506331238201 0.1046887688533146 0.4241799402828584 -0.899506331238201 -0.1046887688533146 -0.1779769763361134 0.9816893649428768 0.0678983552989739 0.1779769763361134 -0.9816893649428768 -0.0678983552989739 0.08207349967001101 0.9958531909347016 0.03924745542184505 -0.08207349967001101 -0.9958531909347016 -0.03924745542184505 0.3370560769862958 0.9410659034349498 0.02807430068176721 0.5689828589369372 0.8217822669513351 0.03053542140325614 0.3371881653553252 0.9412381149078265 0.01936368221881316 0.5691923081802677 0.8219146904948941 0.02182562386511673 -0.5691923081802677 -0.8219146904948941 -0.02182562386511673 -0.3371881653553252 -0.9412381149078265 -0.01936368221881316 -0.5689828589369372 -0.8217822669513351 -0.03053542140325614 -0.3370560769862958 -0.9410659034349498 -0.02807430068176721 0.6195965375264065 -0.7272257228275654 0.2953690551550946 0.6073204882926482 -0.7119610720184991 0.3525241217707647 -0.6195965375264065 0.7272257228275654 -0.2953690551550946 -0.6073204882926482 0.7119610720184991 -0.3525241217707647 0.769089338446464 -0.5277433153864923 0.3605392940483099 -0.769089338446464 0.5277433153864923 -0.3605392940483099 0.8039746432605111 -0.5540441427915247 0.2160089369274762 -0.8039746432605111 0.5540441427915247 -0.2160089369274762 0.8771261222091992 -0.3087965180627104 0.367823974436957 -0.8771261222091992 0.3087965180627104 -0.367823974436957 0.9286224562392031 -0.3303303050936942 0.1689444385144899 -0.9286224562392031 0.3303303050936942 -0.1689444385144899 0.9245093653924119 -0.07036090052198238 0.3746088319560226 -0.9245093653924119 0.07036090052198238 -0.3746088319560226 0.989100935089678 -0.07972598285837784 0.1237865415220497 -0.989100935089678 0.07972598285837784 -0.1237865415220497 0.9085375896862916 0.1711179400018214 0.3811536419038346 -0.9085375896862916 -0.1711179400018214 -0.3811536419038346 0.9802642778130906 0.1791685898112712 0.08354975804046541 -0.9802642778130906 -0.1791685898112712 -0.08354975804046541 0.8308788481511353 0.3991322153014548 0.3877290476655007 -0.8308788481511353 -0.3991322153014548 -0.3877290476655007 0.9027404175816215 0.427230506560478 0.05033719031329986 -0.9027404175816215 -0.427230506560478 -0.05033719031329986 0.6941882250754823 0.5956850375301812 0.4040569814137828 -0.6941882250754823 -0.5956850375301812 -0.4040569814137828 0.7621278541735992 0.646542693543114 0.03381832814850713 0.7624017290573582 0.6466166640518992 0.02510962565918035 -0.7624017290573582 -0.6466166640518992 -0.02510962565918035 -0.7621278541735992 -0.646542693543114 -0.03381832814850713 0.5144126234154888 0.7505187878056844 0.4148508189957939 0.3043737352812543 0.8585451320204657 0.4126219644600832 -0.5144126234154888 -0.7505187878056844 -0.4148508189957939 -0.3043737352812543 -0.8585451320204657 -0.4126219644600832 0.0740787041012857 0.914617236984636 0.3974766098895181 -0.0740787041012857 -0.914617236984636 -0.3974766098895181 -0.1650037453140636 0.9113304886537131 0.3771611121026612 0.1650037453140636 -0.9113304886537131 -0.3771611121026612 -0.395513879435808 0.8418123724878031 0.3673155328870443 0.395513879435808 -0.8418123724878031 -0.3673155328870443 -0.6011062800058307 0.714287515365267 0.358419566333739 0.6011062800058307 -0.714287515365267 -0.358419566333739 -0.7673792952436001 0.5369988004465574 0.3503730947866779 0.7673792952436001 -0.5369988004465574 -0.3503730947866779 -0.8825228617201746 0.3217071346202256 0.343012999863967 0.8825228617201746 -0.3217071346202256 -0.343012999863967 -0.9381617059672208 0.08290502624534626 0.3361240397233323 -0.9567568843009989 0.08351793927771851 0.2786413791263744 0.9381617059672208 -0.08290502624534626 -0.3361240397233323 0.9567568843009989 -0.08351793927771851 -0.2786413791263744 -0.9217753014743128 0.3335365296000625 0.1976959205807919 0.9217753014743128 -0.3335365296000625 -0.1976959205807919 -0.8115012872732057 0.5646430408556867 0.1504788927629832 0.8115012872732057 -0.5646430408556867 -0.1504788927629832 -0.642073434200204 0.7592129653359391 0.1064771259950537 0.642073434200204 -0.7592129653359391 -0.1064771259950537 -0.4256792421231433 0.9022677262631295 0.06863040848944975 0.4256792421231433 -0.9022677262631295 -0.06863040848944975 -0.1782733939836036 0.9832131207630775 0.0388658739371271 0.1782733939836036 -0.9832131207630775 -0.0388658739371271 0.08215293715798185 0.9962646194380705 0.02660268731224529 0.08219999951108416 0.996455243108262 0.01789157797491105 -0.08219999951108416 -0.996455243108262 -0.01789157797491105 -0.08215293715798185 -0.9962646194380705 -0.02660268731224529 0.3374030613159591 0.9413583541432892 -0.001903496587016132 0.5695220585759268 0.8219758582658079 0.0005596638518240622 -0.5695220585759268 -0.8219758582658079 -0.0005596638518240622 -0.3374030613159591 -0.9413583541432892 0.001903496587016132 0.4008738192949406 -0.844884261014609 0.3542185292918556 0.4090260668292208 -0.8628040715089552 0.2970973087084219 -0.4090260668292208 0.8628040715089552 -0.2970973087084219 -0.4008738192949406 0.844884261014609 -0.3542185292918556 0.6047686583404968 -0.7088055839088095 0.3631108840405737 -0.6047686583404968 0.7088055839088095 -0.3631108840405737 0.6322779189428713 -0.7432339537316657 0.2186959607255426 -0.6322779189428713 0.7432339537316657 -0.2186959607255426 0.7657527098478896 -0.5252758169507231 0.3710904249470255 -0.7657527098478896 0.5252758169507231 -0.3710904249470255 0.8107733344369125 -0.5593966030676026 0.172400813926377 -0.8107733344369125 0.5593966030676026 -0.172400813926377 0.8731954446221621 -0.3072248496863609 0.3783419184101829 -0.8731954446221621 0.3072248496863609 -0.3783419184101829 0.9342365578130835 -0.3329787625156523 0.1277779235983515 -0.9342365578130835 0.3329787625156523 -0.1277779235983515 0.9202304815906751 -0.0698389615528342 0.3850952871700926 -0.9202304815906751 0.0698389615528342 -0.3850952871700926 0.9928707937302526 -0.08061547726451487 0.08779938372717999 -0.9928707937302526 0.08061547726451487 -0.08779938372717999 0.9041959431366837 0.1705047240108643 0.3916092893499105 -0.9041959431366837 -0.1705047240108643 -0.3916092893499105 0.9823248915178899 0.1790592086480753 0.05454912742373484 -0.9823248915178899 -0.1790592086480753 -0.05454912742373484 0.822957528988495 0.3957349981806026 0.4075962667838713 -0.822957528988495 -0.3957349981806026 -0.4075962667838713 0.9033285515034428 0.4272894699148878 0.03769929626062406 0.9036495252474411 0.427290306387283 0.02899188830580298 -0.9033285515034428 -0.4272894699148878 -0.03769929626062406 -0.9036495252474411 -0.427290306387283 -0.02899188830580298 0.6893297237911232 0.5918173003327348 0.4178239042047826 -0.6893297237911232 -0.5918173003327348 -0.4178239042047826 0.7628271284297916 0.6465910499423814 0.003845291402072049 -0.7628271284297916 -0.6465910499423814 -0.003845291402072049 0.07352686250907745 0.9085345161408098 0.411289233350881 -0.07352686250907745 -0.9085345161408098 -0.411289233350881 -0.1634942643309146 0.9030828608692919 0.3971284073634472 0.1634942643309146 -0.9030828608692919 -0.3971284073634472 -0.3936635210380666 0.8380145097689741 0.3778368875858706 0.3936635210380666 -0.8380145097689741 -0.3778368875858706 -0.5983696181087903 0.7112012474864419 0.3689804679086271 0.5983696181087903 -0.7112012474864419 -0.3689804679086271 -0.7639918063499631 0.534806619288753 0.360968696419863 0.7639918063499631 -0.534806619288753 -0.360968696419863 -0.8787527076049134 0.3205195015585504 0.3536395452967497 0.8787527076049134 -0.3205195015585504 -0.3536395452967497 -0.9342888998029918 0.08275622171319692 0.3467789778413212 0.9342888998029918 -0.08275622171319692 -0.3467789778413212 -0.944619304323104 -0.1666027056200292 0.2827329276547409 -0.9262618277562237 -0.1623172682945136 0.340135459567371 0.944619304323104 0.1666027056200292 -0.2827329276547409 0.9262618277562237 0.1623172682945136 -0.340135459567371 -0.9758650189948954 0.08385956263286984 0.2016309461791917 0.9758650189948954 -0.08385956263286984 -0.2016309461791917 -0.9293504090754885 0.3355767428817958 0.1539352681748634 0.9293504090754885 -0.3355767428817958 -0.1539352681748634 -0.8162291571716335 0.5673136240173831 0.1092026326933025 0.8162291571716335 -0.5673136240173831 -0.1092026326933025 -0.6443851122688745 0.7614513020840475 0.07042543319524829 0.6443851122688745 -0.7614513020840475 -0.07042543319524829 -0.4264797361056731 0.9036298583354756 0.03959941686242335 0.4264797361056731 -0.9036298583354756 -0.03959941686242335 -0.1783553344107603 0.9836167143254454 0.02622086929987186 -0.1783951672381337 0.9838031190599678 0.0175096326048599 0.1783951672381337 -0.9838031190599678 -0.0175096326048599 0.1783553344107603 -0.9836167143254454 -0.02622086929987186 0.08228866271834558 0.9966028177696725 -0.00337632960110061 -0.08228866271834558 -0.9966028177696725 0.00337632960110061 0.337420479488155 0.9413418356197046 -0.004792549854552385 0.5695469787581697 0.8219554813390217 -0.002329309807174664 -0.5695469787581697 -0.8219554813390217 0.002329309807174664 -0.337420479488155 -0.9413418356197046 0.004792549854552385 0.1670561003610904 -0.9198540491636331 0.3549095484337013 0.1705378055641006 -0.9392713918839935 0.2978021310563216 -0.1705378055641006 0.9392713918839935 -0.2978021310563216 -0.1670561003610904 0.9198540491636331 -0.3549095484337013 0.3991801970469519 -0.8411762054771547 0.3647982478365435 -0.3991801970469519 0.8411762054771547 -0.3647982478365435 0.4174609808749312 -0.8815464418769096 0.2204590670875227 -0.4174609808749312 0.8815464418769096 -0.2204590670875227 0.6021390912232978 -0.705558985996832 0.3736509495503838 -0.6021390912232978 0.705558985996832 -0.3736509495503838 0.6376465453676379 -0.7501621789564893 0.1751102179884692 -0.6376465453676379 0.7501621789564893 -0.1751102179884692 0.7623176518948936 -0.5227408002435823 0.3815938329823416 -0.7623176518948936 0.5227408002435823 -0.3815938329823416 0.8156870305021308 -0.5634064562682947 0.131254841075741 -0.8156870305021308 0.5634064562682947 -0.131254841075741 0.8691525279575151 -0.3056136915126562 0.3888112070209241 -0.8691525279575151 0.3056136915126562 -0.3888112070209241 0.9378018646100806 -0.3348124638105137 0.09180564694499724 -0.9378018646100806 0.3348124638105137 -0.09180564694499724 0.9158333138854731 -0.06930804607210586 0.3955322185703959 -0.9158333138854731 0.06930804607210586 -0.3955322185703959 0.994957061808141 -0.081253521336841 0.05880740113688549 -0.994957061808141 0.081253521336841 -0.05880740113688549 0.8955803263985924 0.1692725614781084 0.4114397633900138 -0.8955803263985924 -0.1692725614781084 -0.4114397633900138 0.9829623564922309 0.1789643411014882 0.04191384417290492 0.9833098928632063 0.1788823463219167 0.03320784202136243 -0.9833098928632063 -0.1788823463219167 -0.03320784202136243 -0.9829623564922309 -0.1789643411014882 -0.04191384417290492 0.8172047250817832 0.3932559137062462 0.4213386092432931 -0.8172047250817832 -0.3932559137062462 -0.4213386092432931 0.9041448498187682 0.4271561140231223 0.007729475975937756 -0.9041448498187682 -0.4271561140231223 -0.007729475975937756 0.762858296168671 0.6465650046359542 0.0009564239334786574 -0.762858296168671 -0.6465650046359542 -0.0009564239334786574 -0.1623961620140251 0.8970802462502688 0.4109434490908351 0.1623961620140251 -0.8970802462502688 -0.4109434490908351 -0.3899886797399766 0.8304611689907661 0.3977977833939754 0.3899886797399766 -0.8304611689907661 -0.3977977833939754 -0.5955560433294909 0.7080235633045252 0.3794939170254046 0.5955560433294909 -0.7080235633045252 -0.3794939170254046 -0.7605061151301357 0.5325456945638525 0.3715178758164575 0.7605061151301357 -0.5325456945638525 -0.3715178758164575 -0.8748695990772345 0.3192906687315348 0.364220610992031 0.8748695990772345 -0.3192906687315348 -0.364220610992031 -0.9302959997037953 0.08259677929887845 0.3573893185093374 0.9302959997037953 -0.08259677929887845 -0.3573893185093374 -0.9224384898987935 -0.1614466731752723 0.3507737220401074 0.9224384898987935 0.1614466731752723 -0.3507737220401074 -0.8681508198738777 -0.405057294769605 0.2867799538082178 -0.8512908983301843 -0.3961019745458666 0.3441032289605159 0.8681508198738777 0.405057294769605 -0.2867799538082178 0.8512908983301843 0.3961019745458666 -0.3441032289605159 -0.9634826666271945 -0.1713051378430477 0.2058050068815736 0.9634826666271945 0.1713051378430477 -0.2058050068815736 -0.9838906407148503 0.08382021247982524 0.1579030686641592 0.9838906407148503 -0.08382021247982524 -0.1579030686641592 -0.9347786844825899 0.3368859302647286 0.1126795501706807 0.9347786844825899 -0.3368859302647286 -0.1126795501706807 -0.8191901431514194 0.5688364990032845 0.0731611014490848 0.8191901431514194 -0.5688364990032845 -0.0731611014490848 -0.645630674660971 0.7625268714687582 0.04139809445961855 0.645630674660971 -0.7625268714687582 -0.04139809445961855 -0.426715529872399 0.9039841213843761 0.02695486691926663 -0.4268382049321804 0.90414396410819 0.01824387505444098 0.4268382049321804 -0.90414396410819 -0.01824387505444098 0.426715529872399 -0.9039841213843761 -0.02695486691926663 -0.1784355125488734 0.9839444302446007 -0.003758464054496021 0.1784355125488734 -0.9839444302446007 0.003758464054496021 0.08229783567669728 0.9965880847290697 -0.006265430470119988 -0.08229783567669728 -0.9965880847290697 0.006265430470119988 0.3373913120989424 0.9413644729747083 -0.0001775984333259706 0.5695049032713337 0.8219847575341394 0.002285504638151559 -0.5695049032713337 -0.8219847575341394 -0.002285504638151559 -0.3373913120989424 -0.9413644729747083 0.0001775984333259706 -0.07961566538424778 -0.9514165624373582 0.2974354897205512 -0.07819837736559708 -0.9317613692966479 0.3545500873837479 0.07961566538424778 0.9514165624373582 -0.2974354897205512 0.07819837736559708 0.9317613692966479 -0.3545500873837479 0.1663344684519667 -0.9158343409844552 0.3654863943820212 -0.1663344684519667 0.9158343409844552 -0.3654863943820212 0.1741632483842188 -0.9595558397323695 0.2211781032285167 -0.1741632483842188 0.9595558397323695 -0.2211781032285167 0.3974352640604045 -0.8373600251625591 0.3753310527267826 -0.3974352640604045 0.8373600251625591 -0.3753310527267826 0.4210403936008873 -0.8896266740185612 0.1768880092914233 -0.4210403936008873 0.8896266740185612 -0.1768880092914233 0.5994321255507553 -0.7022216963201058 0.3841429630684607 -0.5994321255507553 0.7022216963201058 -0.3841429630684607 0.6415313075306982 -0.7553057975868536 0.1339803477739925 -0.6415313075306982 0.7553057975868536 -0.1339803477739925 0.7587846069166098 -0.5201385916670313 0.3920481676593365 -0.7587846069166098 0.5201385916670313 -0.3920481676593365 0.8188103469664031 -0.5660992652740142 0.09529552747626727 -0.8188103469664031 0.5660992652740142 -0.09529552747626727 0.8649978928126393 -0.3039632509756307 0.3992304941835229 -0.8649978928126393 0.3039632509756307 -0.3992304941835229 0.9397760669227322 -0.3359678010329743 0.06282181713631267 -0.9397760669227322 0.3359678010329743 -0.06282181713631267 0.9071074936771363 -0.06826923176290312 0.4153255432901845 -0.9071074936771363 0.06826923176290312 -0.4153255432901845 0.9956023568690674 -0.08150974649557423 0.04617475742205068 0.9959541094966131 -0.08167862417927216 0.03747017652733391 -0.9959541094966131 0.08167862417927216 -0.03747017652733391 -0.9956023568690674 0.08150974649557423 -0.04617475742205068 0.8893231572729016 0.1683662582866469 0.4251554127712737 -0.8893231572729016 -0.1683662582866469 -0.4251554127712737 0.9838446535687471 0.1786251787575877 0.0119475168136286 -0.9838446535687471 -0.1786251787575877 -0.0119475168136286 0.90418058490016 0.427122976651374 0.004840734042918657 -0.90418058490016 -0.427122976651374 -0.004840734042918657 0.7628054710200591 0.6466040339501726 0.005571055665659113 -0.7628054710200591 -0.6466040339501726 -0.005571055665659113 -0.3873175740481269 0.824962911912807 0.4116081763058356 0.3873175740481269 -0.824962911912807 -0.4116081763058356 -0.5899694087612329 0.7017011532854737 0.3994390919824417 0.5899694087612329 -0.7017011532854737 -0.3994390919824417 -0.7569226704373564 0.5302163174417134 0.3820192766033276 0.7569226704373564 -0.5302163174417134 -0.3820192766033276 -0.8708740361710441 0.3180207944094713 0.3747548364548802 0.8708740361710441 -0.3180207944094713 -0.3747548364548802 -0.9261835198474852 0.08242671956714633 0.3679536974461896 0.9261835198474852 -0.08242671956714633 -0.3679536974461896 -0.9184965813630182 -0.1605553259963201 0.3613668735767904 0.9184965813630182 0.1605553259963201 -0.3613668735767904 -0.8477792178588167 -0.3942595263229077 0.354724997244809 0.8477792178588167 0.3942595263229077 -0.354724997244809 -0.7325626317983905 -0.6155955419853133 0.2905066594424715 -0.7183580626341719 -0.6025170511251801 0.3477569509756723 0.7325626317983905 0.6155955419853133 -0.2905066594424715 0.7183580626341719 0.6025170511251801 -0.3477569509756723 -0.8854720812222591 -0.4145685191698195 0.2099336473490237 0.8854720812222591 0.4145685191698195 -0.2099336473490237 -0.9714051555370505 -0.1734697588506184 0.1621118951846129 0.9714051555370505 0.1734697588506184 -0.1621118951846129 -0.9896430617591832 0.08363315060745857 0.1166709322469817 0.9896430617591832 -0.08363315060745857 -0.1166709322469817 -0.938181660795097 0.3375496975397835 0.07665098198036635 0.938181660795097 -0.3375496975397835 -0.07665098198036635 -0.8207914353509688 0.5695200955341974 0.04413932982290621 0.8207914353509688 -0.5695200955341974 -0.04413932982290621 -0.6460023102155379 0.7627936711568524 0.02875465943529416 -0.6461981311237175 0.7629064180199315 0.02004426791410284 0.6461981311237175 -0.7629064180199315 -0.02004426791410284 0.6460023102155379 -0.7627936711568524 -0.02875465943529416 -0.4270015428083701 0.9042458397589496 -0.003023858115707267 0.4270015428083701 -0.9042458397589496 0.003023858115707267 -0.1784347661105983 0.9839292880890591 -0.006647577273977437 0.1784347661105983 -0.9839292880890591 0.006647577273977437 0.08228285515540103 0.9966076499489351 -0.001650397144923163 -0.08228285515540103 -0.9966076499489351 0.001650397144923163 0.3374228905446312 0.9413386228470476 -0.005233552610794211 0.5695503645168754 0.8219517672615 -0.002770302220177253 -0.5695503645168754 -0.8219517672615 0.002770302220177253 -0.3374228905446312 -0.9413386228470476 0.005233552610794211 -0.3243868003688331 -0.8984119098666765 0.2960223707022522 -0.3181759265302664 -0.8797947572243636 0.3531646428185156 0.3243868003688331 0.8984119098666765 -0.2960223707022522 0.3181759265302664 0.8797947572243636 -0.3531646428185156 -0.07790047583646111 -0.9276921618742813 0.3651284276271503 0.07790047583646111 0.9276921618742813 -0.3651284276271503 -0.08103494012851378 -0.9719459357508093 0.2208040680237836 0.08103494012851378 0.9719459357508093 -0.2208040680237836 0.1655914558912953 -0.9116969114402781 0.3760162382212487 -0.1655914558912953 0.9116969114402781 -0.3760162382212487 0.1757162304210068 -0.9682858133912923 0.177613034295896 -0.1757162304210068 0.9682858133912923 -0.177613034295896 0.3956392450290306 -0.833436211454529 0.3858155896658146 -0.3956392450290306 0.833436211454529 -0.3858155896658146 0.4236378136133669 -0.8955991634891086 0.1357687049157321 -0.4236378136133669 0.8955991634891086 -0.1357687049157321 0.5966481098952681 -0.698794144589619 0.3945855755671601 -0.5966481098952681 0.698794144589619 -0.3945855755671601 0.6440053160838571 -0.7587140683547785 0.09803119573009198 -0.6440053160838571 0.7587140683547785 -0.09803119573009198 0.7551540298547785 -0.5174695262716281 0.4024520848179383 -0.7551540298547785 0.5174695262716281 -0.4024520848179383 0.8205424004722007 -0.5677252732142232 0.06631879960579858 -0.8205424004722007 0.5677252732142232 -0.06631879960579858 0.8567534734236422 -0.3007023008894619 0.4189887970057289 -0.8567534734236422 0.3007023008894619 -0.4189887970057289 0.9403871576786267 -0.3363819120601605 0.05019166177627706 0.9407204926796599 -0.3366358055740189 0.04148842077097439 -0.9407204926796599 0.3366358055740189 -0.04148842077097439 -0.9403871576786267 0.3363819120601605 -0.05019166177627706 0.9007702683919997 -0.06752580755692923 0.4290142059358746 -0.9007702683919997 0.06752580755692923 -0.4290142059358746 0.9964951297643336 -0.0820647833326898 0.01621196140269977 -0.9964951297643336 0.0820647833326898 -0.01621196140269977 0.9838829645217266 0.1785840089473156 0.00905891120630717 -0.9838829645217266 -0.1785840089473156 -0.00905891120630717 0.904119901097305 0.4271742087047243 0.009455149776301942 -0.904119901097305 -0.4271742087047243 -0.009455149776301942 0.762862493644213 0.6465605540914617 0.0005154453173910953 -0.762862493644213 -0.6465605540914617 -0.0005154453173910953 -0.5859095192517487 0.6970970818890043 0.4132380593217661 0.5859095192517487 -0.6970970818890043 -0.4132380593217661 -0.7498079114540307 0.5255776902019514 0.4019405272959244 0.7498079114540307 -0.5255776902019514 -0.4019405272959244 -0.8667665333952114 0.3167100421457318 0.3852408672377539 0.8667665333952114 -0.3167100421457318 -0.3852408672377539 -0.9219519898042002 0.08224606444966781 0.378470756305711 0.9219519898042002 -0.08224606444966781 -0.378470756305711 -0.9144366097604839 -0.1596433415050351 0.3719135521097065 0.9144366097604839 0.1596433415050351 -0.3719135521097065 -0.8441585634430536 -0.3923664001790333 0.3653011466944863 0.8441585634430536 0.3923664001790333 -0.3653011466944863 -0.7153989896923085 -0.5998165265291136 0.3583635305800154 0.7153989896923085 0.5998165265291136 -0.3583635305800154 -0.5365224737389644 -0.7674956516806248 0.350847630495569 -0.547094851043907 -0.7838696136503045 0.2936590757272243 0.547094851043907 0.7838696136503045 -0.2936590757272243 0.5365224737389644 0.7674956516806248 -0.350847630495569 -0.747149555256852 -0.6293525839217741 0.2137355075565934 0.747149555256852 0.6293525839217741 -0.2137355075565934 -0.8927448187237213 -0.4187592847551715 0.16627492316428 0.8927448187237213 0.4187592847551715 -0.16627492316428 -0.9770833723576863 -0.1751859565407872 0.1209047728297783 0.9770833723576863 0.1751859565407872 -0.1209047728297783 -0.9932505899152673 0.08335271099379171 0.08065724519817691 0.9932505899152673 -0.08335271099379171 -0.08065724519817691 -0.9400251018014949 0.3377626233529551 0.04763631229239976 0.9400251018014949 -0.3377626233529551 -0.04763631229239976 -0.8212716459961553 0.5696672581923032 0.03149759397842403 -0.8215259293522224 0.5697155861550398 0.0227881173857499 0.8212716459961553 -0.5696672581923032 -0.03149759397842403 0.8215259293522224 -0.5697155861550398 -0.0227881173857499 -0.6464700638727531 0.7629383735461583 -0.001222573965467754 0.6464700638727531 -0.7629383735461583 0.001222573965467754 -0.4270088299428954 0.9042281217710285 -0.00591294759297025 0.4270088299428954 -0.9042281217710285 0.00591294759297025 -0.1784352478052288 0.9839495572396826 -0.002032522698366752 0.1784352478052288 -0.9839495572396826 0.002032522698366752 0.08229917546985846 0.9965851039361402 -0.006706439411054142 -0.08229917546985846 -0.9965851039361402 0.006706439411054142 -0.316880427982389 -0.8759415772489704 0.3637487424147113 0.316880427982389 0.8759415772489704 -0.3637487424147113 -0.3307422498510879 -0.9178723653641767 0.2193624513544009 0.3307422498510879 0.9178723653641767 -0.2193624513544009 -0.07759256089731141 -0.9235037088776765 0.3756598117746593 0.07759256089731141 0.9235037088776765 -0.3756598117746593 -0.08160750786866651 -0.9807791067168212 0.1772358837459833 0.08160750786866651 0.9807791067168212 -0.1772358837459833 0.1648271583536277 -0.9074422932826771 0.3864977260359286 -0.1648271583536277 0.9074422932826771 -0.3864977260359286 0.1768556302745361 -0.9747257929345913 0.1364980389171548 -0.1768556302745361 0.9747257929345913 -0.1364980389171548 0.3937923712222795 -0.8294052695909844 0.3962505105887449 -0.3937923712222795 0.8294052695909844 -0.3962505105887449 0.4252994459381281 -0.8995304925338585 0.09982622043589141 -0.4252994459381281 0.8995304925338585 -0.09982622043589141 0.5937874027469412 -0.6952767721344138 0.4049774443958482 -0.5937874027469412 0.6952767721344138 -0.4049774443958482 0.6453816397822083 -0.7607320491487774 0.06906003496907683 -0.6453816397822083 0.7607320491487774 -0.06906003496907683 0.7479498089044404 -0.5121867163543697 0.4221798798497381 -0.7479498089044404 0.5121867163543697 -0.4221798798497381 0.8213731221205537 -0.5686142872869306 0.0449887380475392 -0.8213731221205537 0.5686142872869306 -0.0449887380475392 0.88470921682144 -0.1849185031652915 0.4278957219443806 0.8507659567335683 -0.2983446293673663 0.4326520183598649 0.88470921682144 -0.1849185031652915 0.4278957219443806 0.88470921682144 -0.1849185031652915 0.4278957219443806 0.88470921682144 -0.1849185031652915 0.4278957219443806 0.88470921682144 -0.1849185031652915 0.4278957219443806 0.88470921682144 -0.1849185031652915 0.4278957219443806 -0.88470921682144 0.1849185031652915 -0.4278957219443806 -0.88470921682144 0.1849185031652915 -0.4278957219443806 -0.88470921682144 0.1849185031652915 -0.4278957219443806 -0.8507659567335683 0.2983446293673663 -0.4326520183598649 -0.88470921682144 0.1849185031652915 -0.4278957219443806 -0.88470921682144 0.1849185031652915 -0.4278957219443806 -0.88470921682144 0.1849185031652915 -0.4278957219443806 0.9412341693586935 -0.3371481821417893 0.0202321948917362 -0.9412341693586935 0.3371481821417893 -0.0202321948917362 0.996533849576567 -0.08211437855725387 0.01332349362082876 -0.996533849576567 0.08211437855725387 -0.01332349362082876 0.9838178486264499 0.1786490617633429 0.01367309237520345 -0.9838178486264499 -0.1786490617633429 -0.01367309237520345 0.9041853757898541 0.427117604666936 0.004399771737176744 -0.9041853757898541 -0.427117604666936 -0.004399771737176744 -0.7446379291915606 0.5221967823548518 0.415722112603532 0.7446379291915606 -0.5221967823548518 -0.415722112603532 -0.8586115053891787 0.3140933457887981 0.4051316489050528 0.8586115053891787 -0.3140933457887981 -0.4051316489050528 -0.9176019544680479 0.08205483724219209 0.388939142850878 0.9176019544680479 -0.08205483724219209 -0.388939142850878 -0.9102590978998191 -0.1587108371049929 0.3824124015719677 0.9102590978998191 0.1587108371049929 -0.3824124015719677 -0.8404294013259769 -0.3904228398626291 0.3758303174312311 0.8404294013259769 0.3904228398626291 -0.3758303174312311 -0.7123479590157552 -0.5970389016296452 0.3689240236511507 0.7123479590157552 0.5970389016296452 -0.3689240236511507 -0.5343192991801434 -0.7641093039288484 0.3614413620118914 0.5343192991801434 0.7641093039288484 -0.3614413620118914 -0.5579415402867314 -0.8010201530335267 0.2169514970139992 0.5579415402867314 0.8010201530335267 -0.2169514970139992 -0.7532702022363291 -0.6353322894035548 0.1701084491260727 0.7532702022363291 0.6353322894035548 -0.1701084491260727 -0.8979555383549386 -0.4219332967466735 0.125092542680113 0.8979555383549386 0.4219332967466735 -0.125092542680113 -0.9806440739981072 -0.1764313560819914 0.0849068708848956 0.9806440739981072 0.1764313560819914 -0.0849068708848956 -0.9952060966869014 0.08304834365684094 0.05165072829183494 0.9952060966869014 -0.08304834365684094 -0.05165072829183494 -0.9405792203582475 0.3377661293470677 0.0349967440795765 -0.9408732999113458 0.3377371044421078 0.02628843466231836 0.9408732999113458 -0.3377371044421078 -0.02628843466231836 0.9405792203582475 -0.3377661293470677 -0.0349967440795765 -0.82188465872037 0.5696519019069759 0.001522633858144788 0.82188465872037 -0.5696519019069759 -0.001522633858144788 -0.6464844441580854 0.762916088547147 -0.004111605225823226 0.6464844441580854 -0.762916088547147 0.004111605225823226 -0.4269954889232197 0.9042528229465988 -0.001297933868676697 0.4269954889232197 -0.9042528229465988 0.001297933868676697 -0.1784345211370863 0.9839262541416926 -0.00708858781958102 0.1784345211370863 -0.9839262541416926 0.00708858781958102 -0.3155441974418617 -0.8719758037410542 0.3742860632603274 0.3155441974418617 0.8719758037410542 -0.3742860632603274 -0.3333946337512657 -0.9262551567011552 0.1757822598283957 0.3333946337512657 0.9262551567011552 -0.1757822598283957 -0.07727467220354022 -0.919196549628797 0.3861428857124654 0.07727467220354022 0.919196549628797 -0.3861428857124654 -0.08199744451806203 -0.9872933368895087 0.1361186468713467 0.08199744451806203 0.9872933368895087 -0.1361186468713467 0.1640416742532294 -0.9030710343473893 0.3969295101537975 -0.1640416742532294 0.9030710343473893 -0.3969295101537975 0.1775971801510808 -0.9789521312136094 0.1005582736263735 -0.1775971801510808 0.9789521312136094 -0.1005582736263735 0.3918948804554804 -0.8252677185988847 0.4066344738353809 -0.3918948804554804 0.8252677185988847 -0.4066344738353809 0.4262307012268971 -0.9018350360155009 0.0708587125662607 -0.4262307012268971 0.9018350360155009 -0.0708587125662607 0.5881112900499277 -0.6883101647382438 0.4246813247999273 -0.5881112900499277 0.6883101647382438 -0.4246813247999273 0.6458102478724868 -0.761409453584769 0.05643374641667084 0.646045323892012 -0.7618051191518661 0.04773258751918239 -0.646045323892012 0.7618051191518661 -0.04773258751918239 -0.6458102478724868 0.761409453584769 -0.05643374641667084 0.742717933501083 -0.5083602858844017 0.4358209391383233 -0.742717933501083 0.5083602858844017 -0.4358209391383233 0.8218277154804226 -0.5692415055861 0.02373424501220628 -0.8218277154804226 0.5692415055861 -0.02373424501220628 0.9412711031547691 -0.3372060215783424 0.01734385704249366 -0.9412711031547691 0.3372060215783424 -0.01734385704249366 0.9964680301904736 -0.08203482881714956 0.01793743764472992 -0.9964680301904736 0.08203482881714956 -0.01793743764472992 0.9838880900827796 0.178577593344519 0.008617966612825915 -0.9838880900827796 -0.178577593344519 -0.008617966612825915 -0.8526858148767587 0.3121812624677253 0.4188911081319528 0.8526858148767587 -0.3121812624677253 -0.4188911081319528 -0.9089655256426731 0.08166027666223938 0.4087949026205996 0.9089655256426731 -0.08166027666223938 -0.4087949026205996 -0.9059645837192544 -0.157757932840777 0.3928620720713612 0.9059645837192544 0.157757932840777 -0.3928620720713612 -0.8365922117177573 -0.3884290956136593 0.3863111556426319 0.8365922117177573 0.3884290956136593 -0.3863111556426319 -0.7092053634960822 -0.5941845340737255 0.3794370723268609 0.7092053634960822 0.5941845340737255 -0.3794370723268609 -0.532047442945529 -0.7606247376115797 0.3719886113692726 0.532047442945529 0.7606247376115797 -0.3719886113692726 -0.5624862706958043 -0.808429680432769 0.1733512246108958 0.5624862706958043 0.808429680432769 -0.1733512246108958 -0.7576519908733036 -0.6397934465444071 0.1289488522032997 0.7576519908733036 0.6397934465444071 -0.1289488522032997 -0.9012212262701124 -0.4240986488298146 0.08911025407281031 0.9012212262701124 0.4240986488298146 -0.08911025407281031 -0.9825739263966483 -0.177264386328107 0.05590900200498566 0.9825739263966483 0.177264386328107 -0.05590900200498566 -0.9957944196106878 0.08289396303203742 0.03901364844585548 -0.996106916728304 0.08277992304733636 0.03030667890595116 0.996106916728304 -0.08277992304733636 -0.03030667890595116 0.9957944196106878 -0.08289396303203742 -0.03901364844585548 -0.9412911125986355 0.3375585784626689 0.0050246839786129 0.9412911125986355 -0.3375585784626689 -0.0050246839786129 -0.8219047083479805 0.5696233699524779 -0.001366308678004692 0.8219047083479805 -0.5696233699524779 0.001366308678004692 -0.6464588985315934 0.762948647806682 0.0005033083293662718 0.6464588985315934 -0.762948647806682 -0.0005033083293662718 -0.4270096287351349 0.9042247531574524 -0.006353955053863445 0.4270096287351349 -0.9042247531574524 0.006353955053863445 -0.3141674069822049 -0.8678979473477215 0.3847752504770665 0.3141674069822049 0.8678979473477215 -0.3847752504770665 -0.3352810014922323 -0.9324453380021907 0.1346563837192516 0.3352810014922323 0.9324453380021907 -0.1346563837192516 -0.07694685069439676 -0.9147712387291063 0.3965763015640634 0.07694685069439676 0.9147712387291063 -0.3965763015640634 -0.08222098121119131 -0.9915665309684593 0.1001774670863883 0.08222098121119131 0.9915665309684593 -0.1001774670863883 0.1632351047315098 -0.8985836974836139 0.4073102493185881 -0.1632351047315098 0.8985836974836139 -0.4073102493185881 0.1780243591048564 -0.9814182984430933 0.07159225549156043 -0.1780243591048564 0.9814182984430933 -0.07159225549156043 0.3881306477744611 -0.817070124091427 0.4263226625167811 -0.3881306477744611 0.817070124091427 -0.4263226625167811 0.426523467192782 -0.9025999040974752 0.05823353893656513 0.4266853977004577 -0.9030426652401268 0.04953298037884038 -0.4266853977004577 0.9030426652401268 -0.04953298037884038 -0.426523467192782 0.9025999040974752 -0.05823353893656513 0.583989492920066 -0.6832605571836377 0.4383050115570997 -0.583989492920066 0.6832605571836377 -0.4383050115570997 0.6464131206328336 -0.7625279772252542 0.02647945283581012 -0.6464131206328336 0.7625279772252542 -0.02647945283581012 0.8218607900989852 -0.5693068462029237 0.02084602034807089 -0.8218607900989852 0.5693068462029237 -0.02084602034807089 0.9412083568212006 -0.337112286694185 0.02195757750192812 -0.9412083568212006 0.337112286694185 -0.02195757750192812 0.9965390282588923 -0.08212188883605806 0.01288256693446114 -0.9965390282588923 0.08212188883605806 -0.01288256693446114 -0.9026901265351862 0.08136244065728768 0.4225289205559527 0.9026901265351862 -0.08136244065728768 -0.4225289205559527 -0.8974383583641262 -0.1558815165787749 0.4126806825207636 0.8974383583641262 0.1558815165787749 -0.4126806825207636 -0.832647488733704 -0.3863854241313647 0.3967423137557698 0.832647488733704 0.3863854241313647 -0.3967423137557698 -0.7059716078110385 -0.5912537913863274 0.3899013248707815 0.7059716078110385 0.5912537913863274 -0.3899013248707815 -0.5297071975909231 -0.7570424014099648 0.3824880224109041 0.5297071975909231 0.7570424014099648 -0.3824880224109041 -0.5657341848110743 -0.8139195967562041 0.1322109002781817 0.5657341848110743 0.8139195967562041 -0.1322109002781817 -0.7603945825514902 -0.6427710505384536 0.09298094114407404 0.7603945825514902 0.6427710505384536 -0.09298094114407404 -0.9029894524603785 -0.425435684240503 0.06012093911542758 0.9029894524603785 0.425435684240503 -0.06012093911542758 -0.9831544191718536 -0.1775801238145878 0.04327456168294259 -0.9834627000948933 -0.1777810474538511 0.03456901341191756 0.9834627000948933 0.1777810474538511 -0.03456901341191756 0.9831544191718536 0.1775801238145878 -0.04327456168294259 -0.9965520730042738 0.08247517965356518 0.009044917467642799 0.9965520730042738 -0.08247517965356518 -0.009044917467642799 -0.9413150214037807 0.3375225453278786 0.002135854627575405 0.9413150214037807 -0.3375225453278786 -0.002135854627575405 -0.821869407945988 0.569666677839513 0.003248452216661419 0.821869407945988 -0.569666677839513 -0.003248452216661419 -0.6464861645312968 0.7629121265625606 -0.004552605122847166 0.6464861645312968 -0.7629121265625606 0.004552605122847166 -0.3127502338977883 -0.8637085331430301 0.3952149554012271 0.3127502338977883 0.8637085331430301 -0.3952149554012271 -0.336448859821742 -0.9365140413013986 0.09870975215231757 0.336448859821742 0.9365140413013986 -0.09870975215231757 -0.07660913858763518 -0.9102283459880322 0.4069587178630675 0.07660913858763518 0.9102283459880322 -0.4069587178630675 -0.08232253454881548 -0.9940583686147154 0.07121067400684884 0.08232253454881548 0.9940583686147154 -0.07121067400684884 0.1616362323653784 -0.8896918159699646 0.4269920385473153 -0.1616362323653784 0.8896918159699646 -0.4269920385473153 0.1781632718582766 -0.9822324970154908 0.05896753655586982 0.1782423600064549 -0.982701820191887 0.05026722282841573 -0.1782423600064549 0.982701820191887 -0.05026722282841573 -0.1781632718582766 0.9822324970154908 -0.05896753655586982 0.3853977159049487 -0.8111262788124402 0.4399349501859699 -0.3853977159049487 0.8111262788124402 -0.4399349501859699 0.4269445995684547 -0.9038354434380509 0.02828073698604475 -0.4269445995684547 0.9038354434380509 -0.02828073698604475 0.6464405259090802 -0.7625995647976134 0.02359131689589282 -0.6464405259090802 0.7625995647976134 -0.02359131689589282 0.8218046839378169 -0.569200204648881 0.02545954605912498 -0.8218046839378169 0.569200204648881 -0.02545954605912498 0.9412760497881253 -0.337214602990352 0.01690294723774681 -0.9412760497881253 0.337214602990352 -0.01690294723774681 -0.8912430154160829 -0.1545296251862995 0.4263877137205406 0.8912430154160829 0.1545296251862995 -0.4263877137205406 -0.8248155609540325 -0.3823439532812634 0.416524179126902 0.8248155609540325 0.3823439532812634 -0.416524179126902 -0.7026471083724327 -0.5882470509229217 0.4003154358457146 0.7026471083724327 0.5882470509229217 -0.4003154358457146 -0.527298864475158 -0.7533627565897429 0.3929382451565546 0.527298864475158 0.7533627565897429 -0.3929382451565546 -0.5677612458846298 -0.8175463984047044 0.09625515117140067 0.5677612458846298 0.8175463984047044 -0.09625515117140067 -0.7618762252572753 -0.6445530862501285 0.06399950306963187 0.7618762252572753 0.6445530862501285 -0.06399950306963187 -0.9035206141830645 -0.4259052526279892 0.04748910959521758 -0.9038023324791361 -0.4261890075191919 0.03878496712747204 0.9038023324791361 0.4261890075191919 -0.03878496712747204 0.9035206141830645 0.4259052526279892 -0.04748910959521758 -0.9839015968086845 -0.1782147824367115 0.01330936205671073 0.9839015968086845 0.1782147824367115 -0.01330936205671073 -0.9965777678255815 0.08243090230679005 0.006156218049241978 0.9965777678255815 -0.08243090230679005 -0.006156218049241978 -0.9412730808293679 0.3375787598848097 0.006750420773858444 0.9412730808293679 -0.3375787598848097 -0.006750420773858444 -0.8219071653133153 0.569618596329169 -0.001807297047457571 0.8219071653133153 -0.569618596329169 0.001807297047457571 -0.3112928606810469 -0.8594081005602402 0.4056038357565797 0.3112928606810469 0.8594081005602402 -0.4056038357565797 -0.337067769175064 -0.9388938466368603 0.06973997225971294 0.337067769175064 0.9388938466368603 -0.06973997225971294 -0.07593673606682004 -0.9012261920853106 0.4266438360212518 0.07593673606682004 0.9012261920853106 -0.4266438360212518 -0.08234499952672277 -0.9948804021768367 0.05858571854470802 -0.08235280674274595 -0.9953539442401852 0.04988527745836607 0.08235280674274595 0.9953539442401852 -0.04988527745836607 0.08234499952672277 0.9948804021768367 -0.05858571854470802 0.1604763038708545 -0.8832436131499087 0.4405996774009752 -0.1604763038708545 0.8832436131499087 -0.4405996774009752 0.1783785693089322 -0.9835340339237138 0.0290153429248309 -0.1783785693089322 0.9835340339237138 -0.0290153429248309 0.4269649116938725 -0.903911598021507 0.02539265926304112 -0.4269649116938725 0.903911598021507 -0.02539265926304112 0.6463941745234322 -0.7624821746160341 0.02820468994642695 -0.6463941745234322 0.7624821746160341 -0.02820468994642695 0.8218652353268751 -0.5693164022094152 0.02040512524900683 -0.8218652353268751 0.5693164022094152 -0.02040512524900683 -0.819124583224974 -0.3794192806058811 0.4302045172485154 0.819124583224974 0.3794192806058811 -0.4302045172485154 -0.6960462570410306 -0.5822939926308328 0.4200634644969915 0.6960462570410306 0.5822939926308328 -0.4200634644969915 -0.524822753721273 -0.7495862769417129 0.4033379359756308 0.524822753721273 0.7495862769417129 -0.4033379359756308 -0.5688508780205943 -0.8196841035186376 0.06728037614376389 0.5688508780205943 0.8196841035186376 -0.06728037614376389 -0.7623199168532217 -0.6451584762562145 0.05137007770732892 -0.7625545362890489 -0.6455153651838186 0.04266722977408895 0.7625545362890489 0.6455153651838186 -0.04266722977408895 0.7623199168532217 0.6451584762562145 -0.05137007770732892 -0.9042017930586981 -0.4267457177022551 0.017527402894396 0.9042017930586981 0.4267457177022551 -0.017527402894396 -0.9839268827707439 -0.1782674851977806 0.01042080046376339 0.9839268827707439 0.1782674851977806 -0.01042080046376339 -0.9965327541986352 0.08250130200775506 0.01077056063107589 0.9965327541986352 -0.08250130200775506 -0.01077056063107589 -0.9413179797746787 0.3375167971100644 0.001694880963803156 0.9413179797746787 -0.3375167971100644 -0.001694880963803156 -0.3083980523314172 -0.8508872037666739 0.425301784365313 0.3083980523314172 0.8508872037666739 -0.425301784365313 -0.3372481399595618 -0.9396816860428067 0.05711410517170217 -0.3373409725870349 -0.9401368160397403 0.04841317321445669 0.3373409725870349 0.9401368160397403 -0.04841317321445669 0.3372481399595618 0.9396816860428067 -0.05711410517170217 -0.07544672065228177 -0.8946978830404533 0.4402538931409327 0.07544672065228177 0.8946978830404533 -0.4402538931409327 -0.08234560595831267 -0.9961924214487832 0.02863320847143165 0.08234560595831267 0.9961924214487832 -0.02863320847143165 0.1783908478615862 -0.9836127643395334 0.02612728894405047 -0.1783908478615862 0.9836127643395334 -0.02612728894405047 0.4269307649150566 -0.9037863497559507 0.03000593214447707 -0.4269307649150566 0.9037863497559507 -0.03000593214447707 0.6464442345449567 -0.762609932442843 0.02315043332439714 -0.6464442345449567 0.762609932442843 -0.02315043332439714 -0.6912495819343242 -0.5779806672323556 0.4337192222870261 0.6912495819343242 0.5779806672323556 -0.4337192222870261 -0.5199058618854546 -0.7421053698788617 0.4230573421820033 0.5199058618854546 0.7421053698788617 -0.4230573421820033 -0.569174921360168 -0.8203980498420836 0.05465298445604658 -0.569345115411966 -0.820813391626809 0.04595123156814928 0.569345115411966 0.820813391626809 -0.04595123156814928 0.569174921360168 0.8203980498420836 -0.05465298445604658 -0.7628840716697282 -0.6461806536214978 0.02141158746826295 0.7628840716697282 0.6461806536214978 -0.02141158746826295 -0.9042245031491815 -0.4268064529018364 0.01463897762715274 0.9042245031491815 0.4268064529018364 -0.01463897762715274 -0.9838825726346004 -0.1781825885727323 0.01503490590062196 0.9838825726346004 0.1781825885727323 -0.01503490590062196 -0.9965809582455077 0.08242408295585653 0.005715261267120855 0.9965809582455077 -0.08242408295585653 -0.005715261267120855 -0.3062935934244159 -0.8447084989201156 0.4389211620317297 0.3062935934244159 0.8447084989201156 -0.4389211620317297 -0.3374600045558837 -0.9409479578224074 0.02716037545734518 0.3374600045558837 0.9409479578224074 -0.02716037545734518 -0.08234175392569446 -0.9962715609795462 0.02574514214019207 0.08234175392569446 0.9962715609795462 -0.02574514214019207 0.1783705237970796 -0.9834830840490305 0.03074052097416858 -0.1783705237970796 0.9834830840490305 -0.03074052097416858 0.4269676987487609 -0.9039225590378647 0.02495178325541546 -0.4269676987487609 0.9039225590378647 -0.02495178325541546 -0.5163324815586526 -0.7366821547053317 0.4366923074960142 0.5163324815586526 0.7366821547053317 -0.4366923074960142 -0.5695790018158556 -0.821565461944928 0.02469721501850845 0.5695790018158556 0.821565461944928 -0.02469721501850845 -0.7629022144176884 -0.6462484808864272 0.01852328773659337 0.7629022144176884 0.6462484808864272 -0.01852328773659337 -0.9041846251054547 -0.4267077355140907 0.01925284849950859 0.9041846251054547 0.4267077355140907 -0.01925284849950859 -0.9839300200694664 -0.178275399224818 0.00997986158879065 0.9839300200694664 0.178275399224818 -0.00997986158879065 -0.3374643977371805 -0.941025311870176 0.02427226152462724 0.3374643977371805 0.941025311870176 -0.02427226152462724 -0.08234757916353859 -0.9961411767582865 0.03035839542072558 0.08234757916353859 0.9961411767582865 -0.03035839542072558 0.1783925911505941 -0.9836240600222049 0.02568641602113445 -0.1783925911505941 0.9836240600222049 -0.02568641602113445 -0.5695908970071996 -0.8216389575894867 0.02180902147725084 0.5695908970071996 0.8216389575894867 -0.02180902147725084 -0.7628701950281984 -0.6461375607595443 0.02313694261013304 0.7628701950281984 0.6461375607595443 -0.02313694261013304 -0.904227305776574 -0.4268154105473134 0.01419805646440753 0.904227305776574 0.4268154105473134 -0.01419805646440753 -0.3374560361070706 -0.9408979997840687 0.02888559670912224 0.3374560361070706 0.9408979997840687 -0.02888559670912224 -0.08234110545637209 -0.9962829098166905 0.02530426761260829 0.08234110545637209 0.9962829098166905 -0.02530426761260829 -0.569569627279472 -0.8215182843435025 0.02642249363764201 0.569569627279472 0.8215182843435025 -0.02642249363764201 -0.7629044236309205 -0.646258359971926 0.01808238288416166 0.7629044236309205 0.646258359971926 -0.01808238288416166 -0.3374648205312402 -0.9410364287275995 0.02383138081234819 0.3374648205312402 0.9410364287275995 -0.02383138081234819 -0.5695922945035431 -0.8216495731420231 0.02136813042173088 0.5695922945035431 0.8216495731420231 -0.02136813042173088</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"970\" source=\"#ID10593\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10591\">\r\n\t\t\t\t\t<float_array count=\"7120\" id=\"ID10594\">-23.20269402068895 -12.74015431705147 -24.40798597310613 -13.44657866071084 -23.15322024735857 -13.44657862720258 -24.35851229692634 -12.74015434791724 -68.01036237944244 -9.670446359230404 -66.85944818096142 -9.736728519341515 -68.16393812511952 -10.37103620239874 -66.91449630608948 -10.44299265476298 -24.23776536741961 -12.74434324561805 -25.56142658196396 -13.36303422554087 -24.31441364241395 -13.4498248295575 -25.38644222132201 -12.66439671514658 -55.2638846019038 -10.45239335170687 -54.10815472702162 -10.46130176378281 -55.32737420809506 -11.15838231689361 -54.07270445157791 -11.16805336153237 -23.15322024735828 -13.44657862720256 -24.45903843977918 -14.15295934603496 -23.10216768354054 -14.15295930980013 -24.40798597310589 -13.44657866071082 -61.27353161024554 -11.25092290094779 -60.01881700081355 -11.25798105340907 -61.33481329045862 -11.95698763428449 -59.97799781006344 -11.96462013529358 -22.17476410671154 -12.66439662937968 -23.24679257760417 -13.44982480104696 -21.99977964999001 -13.36303413042819 -23.32344094961945 -12.74434322120138 -66.85944818096138 -9.736728519341492 -65.70364388317948 -9.740270999456957 -66.91449630608943 -10.44299265476299 -65.65974575546694 -10.44683840000213 -23.22386843108821 -12.294567542349 -24.35851229692628 -12.74015434791723 -23.20269402068895 -12.74015431705146 -24.33733794780594 -12.29456757208396 -67.92348166465685 -9.22796446290106 -66.81473654207757 -9.291818068872818 -68.01036237944246 -9.670446359230343 -66.85944818096155 -9.736728519341448 0.7237855390754779 -11.22571427227154 1.649303145105414 -10.37098810848139 0.5219623322968126 -10.52989330626431 1.947635898799328 -11.05320549652327 -41.63065382310174 -10.22989242975427 -42.88225587533601 -10.28538535176177 -41.7604483266305 -9.527437255572121 -42.91335240813687 -9.578554155039415 -24.31441364241422 -13.44982482955754 -25.73797220807496 -14.06151917498484 -24.38948511155484 -14.15537225854445 -25.56142658196423 -13.36303422554091 -55.32737420809506 -11.15838231689364 -54.07270445157788 -11.16805336153239 -55.39244161819504 -11.86431548945628 -54.03567464056611 -11.87477350355661 -24.17944855810579 -12.30004499916403 -25.38644222132226 -12.66439671514676 -24.23776536741981 -12.74434324561823 -25.28603831159477 -12.22302768037133 -55.19226464048282 -7.756312377556633 -54.07887413724392 -7.764578777533242 -55.22195540020447 -8.201710334675198 -54.06621914257785 -8.210291131929296 -23.10216768354079 -14.1529593098001 -24.51166314002998 -14.85929522043595 -23.04954288615218 -14.85929518139046 -24.45903843977953 -14.15295934603493 -61.33481329045861 -11.95698763428445 -59.97799781006357 -11.96462013529354 -61.3976664911528 -12.66299871454823 -59.93560580074502 -12.67122325197142 -21.9997796499903 -13.36303413042817 -23.17172101143402 -14.15537222602444 -21.82323392782093 -14.06151907044284 -23.2467925776045 -13.44982480104695 -66.91449630608958 -10.442992654763 -65.65974575546723 -10.44683840000213 -66.97112285831219 -11.14920832434833 -65.61426851205627 -11.15336701241556 -21.16667811937924 -12.51800634717157 -22.0921956733743 -13.37273253284391 -20.86834532415271 -13.20022372816002 -22.29401892251385 -12.67691157160842 -76.94427366914724 -8.153589156087845 -75.79300680364547 -8.217448461537448 -77.09405152877704 -8.854498253770114 -75.8442268515598 -8.923824435398837 -22.27516807713796 -12.22302759996694 -23.3234409496195 -12.74434322120154 -22.17476410671156 -12.66439662937983 -23.38175782003523 -12.30004497786194 -66.8347575507653 -9.291212030584697 -65.72130150033772 -9.29462471552252 -66.85944818096131 -9.736728519341458 -65.70364388317951 -9.740270999456921 -23.24053459207589 -11.85914574636074 -24.33733794780603 -12.29456757208428 -23.22386843108831 -12.29456754234932 -24.32067184669949 -11.85914577520551 -67.84259105010679 -8.795345883529787 -66.76703676254044 -8.857288000145182 -67.92348166465688 -9.227964462901056 -66.81473654207751 -9.291818068872818 -0.4308113698476608 -11.30280651317637 0.6412171488610423 -10.51737836685503 -0.5074596989139875 -10.59732493151845 0.8162015630502508 -11.21601587204074 -42.88225587533603 -10.28538535176176 -44.13685681528383 -10.2727128803812 -42.91335240813689 -9.578554155039392 -44.06901889313942 -9.56688100065989 0.9240534097956052 -11.92170974230348 1.947635898799341 -11.05320549652353 0.7237855390755117 -11.22571427227179 2.247493099807757 -11.73516327533826 -48.19308341515764 -12.29147345709179 -49.54958566275324 -12.27176748090213 -48.21770652134966 -11.58454317600881 -49.47213146886717 -11.56632008187738 0.5219623322967286 -10.52989330626436 1.470910368344091 -9.939290973506287 0.3848749111955971 -10.092373942877 1.649303145105315 -10.37098810848144 -41.76044832663052 -9.527437255572142 -42.91335240813704 -9.578554155039443 -41.83231142732423 -9.083910402112927 -42.94297352434166 -9.133154397052454 -24.38948511155457 -14.15537225854424 -25.9160723724746 -14.75985084087033 -24.46298608046774 -14.86098390290344 -25.73797220807476 -14.06151917498464 -55.39244161819497 -11.86431548945626 -54.03567464056599 -11.8747735035566 -55.45908025230244 -12.5701917365685 -53.99707182691388 -12.58146095595533 -24.11846176870797 -11.86616075549711 -25.2860383115947 -12.22302768037138 -24.17944855810569 -12.30004499916409 -25.19192520922667 -11.79144898833134 -55.16727612434046 -7.321045208702421 -54.08721551788773 -7.329064149896811 -55.1922646404827 -7.75631237755671 -54.07887413724374 -7.764578777533321 -23.04954288615208 -14.85929518139047 -24.56585331501188 -15.56558512326083 -22.9953526140379 -15.56558508132106 -24.5116631400297 -14.85929522043597 -61.40379140602256 -13.07509282856015 -59.94173183094097 -13.08339400951281 -61.46830464203311 -13.78104575377527 -59.8978691177034 -13.78996226421311 -21.82323392782072 -14.06151907044285 -23.098219945482 -14.86098386645794 -21.64513366738339 -14.75985072681632 -23.17172101143376 -14.15537222602444 -66.97112285831193 -11.1492083243484 -65.61426851205593 -11.15336701241563 -67.02932127145266 -11.85537436475451 -65.56721870044365 -11.85985563316169 -20.86834532415291 -13.20022372816012 -21.89192776028317 -14.06872799814079 -20.56848808162772 -13.88218149988523 -22.09219567337448 -13.37273253284402 -77.0940515287772 -8.854498253770169 -75.84422685155987 -8.923824435398894 -77.24539575525907 -9.555276667091619 -75.89386811934817 -9.630244182192996 -42.77861380450993 -9.316608899972184 -43.85064237722608 -8.531180782279208 -44.0256267433756 -9.229818292137713 -42.701965523954 -8.61112731626751 -74.64664555684226 -8.214303793873778 -74.59261618794278 -8.920598481152684 -75.80245449742999 -8.217198806990178 -75.84737177883316 -8.923741330949 -21.34507092242205 -12.08630921641442 -22.29401892251409 -12.67691157160852 -21.16667811937966 -12.5180063471717 -22.43110637025075 -12.23939221146232 -76.85979158376657 -7.710926914621584 -75.75070671575763 -7.772446438441883 -76.94427366914721 -8.153589156087822 -75.79300680364554 -8.217448461537421 -22.36928123885877 -11.79144891295327 -23.38175782003529 -12.30004497786171 -22.27516807713809 -12.22302759996672 -23.44274466910256 -11.8661607374521 -66.79586713022789 -6.217175614043904 -65.71574178310139 -6.220336311154958 -66.81581384440841 -6.652543841937321 -65.70235660264468 -6.655802075897555 -23.25327250615564 -11.4234904682071 -24.32067184669996 -11.85914577520553 -23.24053459207633 -11.85914574636076 -24.30793399253393 -11.42349049637156 -61.08307534734175 -4.555212197957705 -60.02845168697034 -4.560778698568332 -61.1017334796404 -4.990784620918764 -60.02163496472592 -4.996485582568641 -0.3372390394043321 -11.2995603415446 -1.542531045965625 -10.59313603376236 -1.592004765151762 -11.29956034538613 -0.3867127697283053 -10.59313603022366 -33.97581368140031 -7.880918304511805 -33.84218723966139 -8.583094388098466 -35.12843219774655 -7.934477871072726 -35.09347928003415 -8.641239089379004 -0.3557398466299806 -12.00835393992884 0.8162015630503028 -11.21601587204083 -0.4308113698476097 -11.30280651317646 0.99274724269684 -11.91450081622956 -49.5495856627536 -12.27176748090219 -50.89732193405001 -12.17381544140946 -49.46899135923232 -11.56645670409708 -50.71530997343664 -11.47587559211016 -0.5074596989139595 -10.59732493151848 0.5408132053046146 -10.07600933506838 -0.5657765422814398 -10.15302668680006 0.6412171488610809 -10.51737836685505 -42.91335240813704 -9.5785541550394 -44.06901889313963 -9.566881000659897 -42.92293644073403 -9.132812047708827 -44.03625972779232 -9.121566593442465 1.122771920872384 -12.61787766060067 2.247493099807617 -11.73516327533808 0.9240534097954662 -11.9217097423033 2.548867933816728 -12.41686119209374 -48.16688682665637 -12.99838177309243 -49.62860998748157 -12.9771472474188 -48.19308341515787 -12.29147345709182 -49.54958566275339 -12.27176748090216 0.3848749111955696 -10.09237394287687 1.300513221266257 -9.516888562077673 0.2469887740355965 -9.665388916854386 1.470910368344057 -9.939290973506157 -41.83231142732401 -9.083910402112977 -42.94297352434157 -9.133154397052508 -41.89852008824499 -8.650323517701088 -42.97593396466917 -8.698093369234529 -24.46298608046792 -14.86098390290368 -26.0957201513628 -15.45802853721802 -24.53492305952307 -15.56665814165258 -25.91607237247465 -14.75985084087057 -48.1852971527811 -12.99069034828634 -46.72857900069051 -12.91243648768777 -48.14195262723068 -13.69727102209536 -46.57725446173276 -13.61321655215818 -24.05352941987184 -11.4323161843937 -25.19192520922685 -11.7914489883312 -24.1184617687082 -11.86616075549696 -25.10167449856767 -11.35936654482543 -55.1462111131009 -6.885515411042886 -54.09162446709478 -6.893345220081631 -55.16727612434045 -7.321045208702413 -54.08721551788764 -7.329064149896801 -22.9953526140381 -15.56558508132108 -24.62160200481859 -16.27182791724534 -22.93960382710607 -16.27182787232806 -24.56585331501217 -15.56558512326084 -61.46830464203307 -13.7810457537752 -59.89786911770332 -13.78996226421304 -61.53437563950002 -14.48694272360273 -59.85244726563853 -14.49649226044705 -21.64513366738319 -14.75985072681628 -23.02628286937936 -15.56665810136472 -21.46548579247898 -15.45802841356894 -23.09821994548185 -14.86098386645789 -67.03874583110466 -13.01635433178297 -65.5766443435686 -13.02097084758052 -67.09867752190121 -13.72246406706286 -65.52819697833435 -13.72742278456717 -20.56848808162788 -13.88218149988511 -21.69320920682445 -14.76489591173961 -20.26711320611789 -14.56387940951541 -21.89192776028332 -14.06872799814066 -77.2453957552591 -9.555276667091547 -75.8938681193482 -9.630244182192927 -77.39829964913329 -10.2559235795303 -75.94193696974389 -10.33670616085476 -42.85368527921257 -10.02215632872906 -44.0256267433758 -9.229818292137614 -44.20217237499292 -9.928303241040901 -42.77861380450999 -9.316608899972088 -74.59261618794292 -8.920598481152663 -74.53700832267826 -9.626845586827713 -75.84737177883318 -8.923741330948978 -75.89386811934779 -9.630244182192921 -41.61742040942941 -9.313362701172141 -42.82271245342795 -8.60693841819668 -42.87218613517673 -9.313362730838771 -41.66689417719088 -8.606938390869528 -77.32803153178021 -8.129323580443719 -77.26879045730097 -8.835455948790845 -78.48380688483343 -8.135531142551681 -78.52350958529064 -8.842194928727153 -42.70196552395414 -8.611127316267398 -43.75023846401927 -8.089811747811226 -43.85064237722618 -8.531180782279096 -42.64364871113745 -8.166829069991771 -74.67069355234662 -7.768773653762517 -74.64664555684229 -8.21430379387378 -75.78415407546957 -7.771562594655707 -75.80245449742998 -8.217198806990179 -21.51546809521489 -11.66390680901472 -22.43110637025063 -12.23939221146229 -21.34507092242191 -12.08630921641439 -22.56899253340494 -11.81240718869999 -76.78124610790835 -7.27814054198644 -75.70536224536001 -7.33781844835694 -76.85979158376675 -7.710926914621577 -75.75070671575763 -7.772446438441886 -22.45953200893957 -11.35936647426778 -23.44274466910248 -11.86616073745206 -22.36928123885864 -11.79144891295324 -23.50767707760302 -11.43231616981679 -66.77984686045217 -5.781562411830057 -65.72519700072496 -5.784648561760426 -66.79586713022788 -6.217175614043928 -65.71574178310146 -6.220336311154982 -23.262662175819 -10.97736197168022 -24.30793399253332 -11.42349049637114 -23.25327250615501 -11.42349046820668 -24.29854438422281 -10.97736199934326 -61.06762300545437 -4.109149260311815 -60.03177794952848 -4.114616643941551 -61.0830753473418 -4.555212197957744 -60.02845168697042 -4.560778698568371 -1.498432434657459 -11.30280651644519 -2.570460965749548 -10.51737837668823 -2.745445368923688 -11.21601588294535 -1.421784116714155 -10.59732493431806 -35.12527288228914 -7.934419936228466 -35.09347928003416 -8.641239089378958 -36.28095066107239 -7.923189408350661 -36.34809248060225 -8.629047136930412 -0.2861865185899353 -12.0059410253491 -1.592004765151574 -11.29956034538607 -1.643057274828319 -12.00594102950328 -0.3372390394041536 -11.29956034154454 -33.84218723966146 -8.583094388098484 -33.70699158372641 -9.285153805237853 -35.09347928003422 -8.641239089379024 -35.06010598767963 -9.348029960665869 -0.3867127697285313 -10.59313603022338 -1.521356669718794 -10.14754925842934 -1.542531045965831 -10.59313603376208 -0.4078871530010928 -10.14754925502026 -38.40497674206656 -6.835126400122238 -38.39517646633359 -7.280866681377951 -39.51830543376964 -6.824090704871319 -39.55084856153656 -7.269411263811031 -0.282238823634839 -12.71396558210009 0.9927472426967889 -11.91450081622957 -0.3557398466300383 -12.00835393992886 1.170847460620517 -12.61283247681398 -49.62860998748156 -12.9771472474188 -51.08088721439366 -12.87159728240365 -49.54958566275339 -12.27176748090216 -50.89732193404987 -12.17381544140942 -0.5657765422814558 -10.1530266868001 0.4467000698579025 -9.644430645829758 -0.6267633649342486 -9.719142444948622 0.5408132053045969 -10.07600933506841 -42.84829875479373 -5.960722606957657 -43.96163613286232 -5.950032659400382 -42.85419903221474 -5.525192478847939 -43.93420810382518 -5.514822540171505 1.319947253747995 -13.3142159658822 2.548867933816675 -12.41686119209377 1.122771920872324 -12.6178776606007 2.851753397630644 -13.09829904396005 -48.13884801484011 -13.69720237487673 -49.70917071956506 -13.68246749670355 -48.17596920304444 -12.99048409458211 -49.63792374421636 -12.97676607216929 0.246988774035616 -9.665388916854582 1.133864881665839 -9.093718354596767 0.1051885216052622 -9.238716227993146 1.300513221266284 -9.516888562077863 -41.77430066336371 -5.511036335093922 -42.85419903221479 -5.525192478847897 -41.80173752218948 -5.075644348293055 -42.8561657570778 -5.08946660981507 -24.53492305952278 -15.56665814165234 -26.27690842528424 -16.15605161519758 -24.60530276307395 -16.27239336314545 -26.09572015136255 -15.45802853721779 -48.14195262723069 -13.69727102209534 -46.57725446173283 -13.61321655215816 -48.10016735037322 -14.40388817405147 -46.42438365832823 -14.31386626882397 -23.98340420158806 -10.98829469959363 -25.1016744985674 -11.35936654482516 -24.05352941987161 -11.43231618439342 -25.01288603331349 -10.91664399961629 -48.17720443897262 -3.612364685457878 -47.14132939055047 -3.609964500304592 -48.18393233449902 -4.058511854821652 -47.1292781379041 -4.056068157246076 -22.93960382710619 -16.27182787232792 -24.67890204937519 -16.97802248910421 -22.88230368543093 -16.97802244112654 -24.62160200481874 -16.2718279172452 -61.54992553115715 -15.46213441903697 -59.86800068549296 -15.47192231394142 -61.61780467932498 -16.16796475949208 -59.82128464378788 -16.1784195365571 -21.46548579247941 -15.45802841356912 -22.95590306877289 -16.2723933190991 -21.28429742256236 -16.15605148187168 -23.02628286937985 -15.56665810136491 -67.09867752190124 -13.7224640670628 -65.52819697833436 -13.72742278456711 -67.1601673245184 -14.42852177319218 -65.47819073528515 -14.43383253414925 -20.26711320611797 -14.56387940951544 -21.49603383155692 -15.46123421235944 -19.9642277008186 -15.24531725422051 -21.69320920682453 -14.76489591173964 -77.39829964913312 -10.25592357953034 -75.94193696974384 -10.3367061608548 -77.55275631305013 -10.95643820843258 -75.98843996985742 -11.04320884187403 -42.9271862536878 -10.7277679728632 -44.20217237499235 -9.92830324104092 -44.38027254489745 -10.62663490638134 -42.85368527921197 -10.02215632872909 -74.53700832267852 -9.626845586827711 -74.47982852554459 -10.33304394387847 -75.89386811934809 -9.63024418219292 -75.94193696974375 -10.33670616085474 -41.56636785117926 -10.01974338392591 -42.87218613517578 -9.313362730838765 -42.92323860741762 -10.01974341600654 -41.61742040942838 -9.313362701172139 -77.26879045730094 -8.835455948790836 -77.20797125428999 -9.541536212024298 -78.52350958529053 -8.842194928727146 -78.56479162093481 -9.548823568233283 -43.93745277706164 -3.504669511986301 -43.01193515424414 -4.359395668716886 -42.81011196113204 -3.663574701170226 -44.23578551735618 -4.186886902303823 -80.59511809743935 -5.142573168632182 -80.53232917201075 -4.436559867229365 -79.34043898273471 -5.151760615183586 -79.37659067690237 -4.44502281646219 -41.66689417719062 -8.606938390869644 -42.80153810079449 -8.161351642428265 -42.82271245342768 -8.606938418196796 -41.68806858407712 -8.161351616102461 -77.381930557424 -5.312408709074715 -77.3550064809201 -5.757874949872613 -78.495364064166 -5.317989315944391 -78.51078737760878 -5.763667804832473 -42.64364871113649 -8.166829069991282 -43.65612535824824 -7.65823305605888 -43.75023846401865 -8.089811747810721 -42.58266191831844 -7.732944826511057 -69.64193993250655 -4.673613350954923 -69.60725368149804 -5.108622268388622 -70.7217176677309 -4.690979313455628 -70.72035258430532 -5.12652413205471 -21.68211646057749 -11.24073660547352 -22.56899253340493 -11.81240718869977 -21.51546809521481 -11.66390680901449 -22.71079281181075 -11.38573450319094 -71.78168074555376 -4.254982162653621 -70.72701935631069 -4.255264247102609 -71.7947186623902 -4.690633994092175 -70.71458150724808 -4.690922892403449 -22.54832053507852 -10.91664393380076 -23.50767707760312 -11.43231616981664 -22.45953200893971 -11.35936647426764 -23.57780235695034 -10.98829468876212 -66.7539724392972 -3.467219018831677 -65.71810131114809 -3.47020483631404 -66.76667309172927 -3.91331567901081 -65.7120228864773 -3.916355625713671 -23.26928360354464 -10.51075359107557 -24.29854438422281 -10.97736199934341 -23.26266217581891 -10.97736197168037 -24.29192302066705 -10.51075361838491 -61.05466047896363 -3.642592562402333 -60.03205773935937 -3.647990050613819 -61.06762300545437 -4.109149260311836 -60.03177794952852 -4.114616643941568 -2.653029344795692 -11.22571428261005 -3.578546964301727 -10.37098812448698 -3.876879707239461 -11.05320551435564 -2.451206148987678 -10.52989331536705 -31.70488932892985 -5.308244512580425 -31.56857013504799 -6.010219549179832 -32.85729912988103 -5.363520791462511 -32.81963559228947 -6.070227927325488 -1.573503946750444 -12.00835394365685 -2.7454453689234 -11.21601588294488 -2.921991037557184 -11.91450082821468 -1.498432434657141 -11.30280651644473 -35.09347928003412 -8.641239089378971 -35.06010598767953 -9.348029960665878 -36.34809248060225 -8.629047136930424 -36.4168118071884 -9.334845902957326 -1.421784116713939 -10.59732493431791 -2.470057029151949 -10.07600934428656 -2.570460965749329 -10.51737837668809 -1.363467280351697 -10.15302668924246 -35.13529650293391 -7.488681583797956 -35.1252728822891 -7.934419936228398 -36.24863066997289 -7.477862538360053 -36.28095066107233 -7.923189408350593 -0.2335617642018675 -12.71227689818358 -1.643057274828243 -12.00594102950332 -1.695682018079526 -12.71227690266004 -0.2861865185898611 -12.00594102534914 -38.38015419426611 -10.70092293397716 -38.34643893710712 -11.40770750223035 -39.73683624769846 -10.68682103227771 -39.80835585091469 -11.39251174685123 -0.4078871530006256 -10.14754925502013 -1.504690542103765 -9.712127461944453 -1.521356669718329 -10.14754925842921 -0.4245532874801361 -9.712127458637562 -38.41052875069806 -6.399594493747983 -38.4049767420665 -6.83512640012223 -39.49052939597377 -6.388889157506285 -39.51830543376964 -6.824090704871311 -0.2103017904929105 -13.41963981870769 1.170847460620619 -12.6128324768139 -0.2822388236347386 -12.71396558210001 1.350495293020889 -13.31101016781385 -49.70607083101742 -13.68259436288913 -51.26599888537908 -13.56922045017269 -49.62860998748147 -12.97714724741885 -51.08088721439366 -12.87159728240369 -0.6267633649341158 -9.719142444948618 0.3564493260819286 -9.212348205010535 -0.6916957470228775 -9.285297875778131 0.4467000698580237 -9.644430645829758 -42.8541990322148 -5.525192478847958 -43.93420810382528 -5.514822540171526 -42.85616575707781 -5.089466609815192 -43.91070208372614 -5.079341253161291 1.515585794251454 -14.01072259203603 2.851753397630843 -13.09829904396006 1.319947253748171 -13.31421596588221 3.156142300225306 -13.77947667856068 -48.10016735037338 -14.40388817405147 -49.78197489501782 -14.38810719527148 -48.13884801484026 -13.69720237487667 -49.70917071956496 -13.68246749670349 0.1051885216053639 -9.238716227992953 0.9667747167175858 -8.659872645420107 -0.04358505592530948 -8.802288690044449 1.13386488166594 -9.093718354596575 -41.80173752218946 -5.075644348293036 -42.8561657570778 -5.089466609815051 -41.82618030966845 -4.629737577809395 -42.86183341985296 -4.643313720463143 -24.60530276307415 -16.27239336314547 -26.45962988012567 -16.8539194636572 -24.67413210867681 -16.97818796572288 -26.27690842528445 -16.15605161519759 -48.10016735037318 -14.40388817405142 -46.42438365832827 -14.31386626882393 -48.05993434201153 -15.11054031177025 -46.26997387752005 -15.01438491172647 -23.90688031441425 -10.52411134527305 -25.0128860333136 -10.91664399961655 -23.98340420158814 -10.98829469959389 -24.92320117772578 -10.45337663290224 -48.1733669541333 -3.145744187788464 -47.15073460545863 -3.143374686771837 -48.17720443897262 -3.612364685457838 -47.14132939055047 -3.60996450030455 -22.88230368543074 -16.97802244112665 -24.71215013432239 -17.3770089901874 -22.84905554561315 -17.37700894043397 -24.67890204937497 -16.97802248910432 -61.61780467932479 -16.16796475949202 -59.82128464378778 -16.17841953655704 -61.65702971846165 -16.56674038696938 -59.79401635727359 -16.57758211930472 -21.28429742256231 -16.15605148187152 -22.88707362610634 -16.97818791800022 -21.10157587174733 -16.85391932057213 -22.95590306877278 -16.27239331909895 -67.16016732451844 -14.42852177319218 -65.47819073528524 -14.43383253414924 -67.22320806992261 -15.13452635950767 -65.42663276535336 -15.14019896044939 -19.96422770081849 -15.24531725422047 -21.30039524865079 -16.15774083388755 -19.65983875675499 -15.92649488162441 -21.49603383155678 -15.4612342123594 -72.04559346633721 -12.77107864763069 -70.47509298241786 -12.77159321013678 -72.10193801731018 -13.4773030768718 -70.41994007206267 -13.47785417067084 -42.99912323830648 -11.4334422113918 -44.38027254489786 -10.6266349063813 -44.55992032928969 -11.32481260217873 -42.92718625368827 -10.72776797286315 -74.47622653856035 -10.90526447956648 -74.41742419529858 -11.61141108950657 -75.93833468329848 -10.9089728375867 -75.98791188953624 -11.61539433155173 -41.5137430593591 -10.72607925567734 -42.92323860741799 -10.01974341600653 -42.9758633132368 -10.72607929024639 -41.56636785117959 -10.0197433839259 -77.20797125428996 -9.541536212024315 -77.14558049578606 -10.24756322194979 -78.56479162093481 -9.548823568233305 -78.60764645145963 -10.25541584244543 -44.235785517356 -4.186886902303906 -43.21220301129411 -5.055391140276189 -43.01193515424398 -4.359395668716963 -44.5356427049701 -4.868844683405805 -77.23897800615734 -9.54270673891674 -77.31537002284401 -8.83721436045346 -75.89066749521585 -9.447873484331351 -76.068520380742 -8.749517343646437 -42.92936677794182 -3.651059762670506 -41.85733824380674 -4.436487900814563 -41.7806899285965 -3.7310063185721 -43.10435117840921 -4.34969726919093 -79.45308820856934 -5.621738530211283 -79.42096740962089 -4.914925122322479 -78.19846941635565 -5.609772132478772 -78.26528448013396 -4.903902362522724 -43.75906000877917 -3.072972375650393 -42.81011196113196 -3.663574701170128 -42.67302454862401 -3.226055336736996 -43.93745277706158 -3.504669511986205 -80.53232917201093 -4.436559867229407 -80.5027553552541 -3.991158888571071 -79.37659067690245 -4.445022816462235 -79.38936269651398 -3.999311758434704 -41.68806858407685 -8.16135161610228 -42.78487199625524 -7.725929845600382 -42.80153810079427 -8.161351642428086 -41.70473474163168 -7.725929820062593 -77.40421535004053 -4.87708452344401 -77.38193055742379 -5.312408709074806 -78.48431767266526 -4.882498072079972 -78.4953640641659 -5.317989315944479 -42.58266191831874 -7.732944826511141 -43.56587464418337 -7.226150612829411 -43.65612535824864 -7.65823305605895 -42.51772956606219 -7.299100255606634 -69.67270890982285 -4.238307872581764 -69.64193993250635 -4.673613350954852 -70.72701935631014 -4.255264247102568 -70.7217176677307 -4.690979313455559 -21.84920665193804 -10.80689090024758 -22.71079281181117 -11.38573450319107 -21.6821164605778 -11.24073660547364 -22.85956641591078 -10.9493069687599 -71.77198386068439 -3.808856218359829 -70.73610174768642 -3.809133280019727 -71.78168074555373 -4.254982162653661 -70.72701935631076 -4.255264247102648 -22.63800545437689 -10.45337657187671 -23.57780235695064 -10.98829468876225 -22.54832053507869 -10.91664393380087 -23.65432630796103 -10.52411133852853 -66.74388800128146 -3.000634714550583 -65.72125952276268 -3.00358236113137 -66.75397243929726 -3.467219018831709 -65.71810131114816 -3.470204836314069 -23.27150019766798 -10.26233225763578 -24.29192302066694 -10.51075361838518 -23.26928360354463 -10.51075359107583 -24.28970646070758 -10.26233228482667 -23.27371679179136 -10.01391092419603 -24.28748990074795 -10.01391095126844 -61.03064843196411 -2.16626585432527 -60.01691141664682 -2.171596946822158 -61.03622869479638 -2.414666686977462 -60.01805868323087 -2.420021091943551 -61.04180895762838 -2.663067519629933 -60.01920594981496 -2.668445237065239 3.413174177006394 -3.290055475791503 1.987500651396156 -2.766743242267566 2.189323803802697 -3.462564214399505 3.114841476621411 -2.60783807869608 -32.85729912988121 -5.363520791462531 -32.81963559228965 -6.07022792732553 -34.01305470216248 -5.356018037216771 -34.07433324611233 -6.062082876265272 -2.853297204542018 -11.92170975386798 -3.876879707239193 -11.05320551435557 -4.1767368974954 -11.73516329500636 -2.653029344795408 -11.22571428260998 -31.56857013504812 -6.010219549179831 -31.43068217891657 -6.712075582266179 -32.81963559228959 -6.070227927325486 -32.78355156181247 -6.776967068991015 -2.451206148987458 -10.52989331536707 -3.400154194346771 -9.93929098841954 -3.578546964301521 -10.370988124487 -2.314118734784703 -10.0923739511402 -31.78087225718354 -4.864984411399195 -31.7048893289299 -5.308244512580435 -32.89105818390446 -4.918235387610762 -32.85729912988102 -5.363520791462519 -1.647004958620118 -12.71396558627843 -2.921991037556909 -11.91450082821492 -3.100091244470128 -12.61283248988989 -1.573503946750186 -12.00835394365708 -35.06010598767965 -9.348029960665844 -35.02515953173594 -10.05479130306868 -36.41681180718848 -9.334845902957291 -36.48710205510248 -10.04058458683185 -1.363467280351429 -10.15302668924229 -2.375943900509533 -9.64443065447157 -2.470057029151699 -10.07600934428639 -1.302480464539334 -9.719142447017241 -35.14106674161277 -7.053150779055499 -35.13529650293398 -7.488681583797956 -36.22107269831741 -7.042655607107502 -36.2486306699729 -7.477862538360055 -0.179371535086077 -13.41856679939518 -1.695682018079729 -12.71227690265976 -1.749872236060113 -13.41856680420339 -0.2335617642020753 -12.71227689818329 -38.34643893710712 -11.40770750223037 -38.31115719269238 -12.11446237517334 -39.80835585091468 -11.39251174685125 -39.8814394809047 -12.0981402262861 -0.4245532874801108 -9.712127458638079 -1.491952661415445 -9.276472183412219 -1.504690542103754 -9.71212746194497 -0.4372911750373714 -9.27647218018322 -38.41214705073783 -5.963868068047017 -38.41052875069818 -6.399594493748024 -39.46667514979187 -5.953415224406631 -39.49052939597386 -6.388889157506325 -0.1399220328504458 -14.12537503810578 1.350495293020841 -13.31101016781392 -0.2103017904929638 -13.41963981870776 1.531683620442857 -14.00903324040043 -49.7819748950178 -14.38810719527152 -51.45264982255631 -14.26668431754145 -49.70607083101723 -13.68259436288913 -51.26599888537891 -13.56922045017269 -0.6916957470229477 -9.285297875778099 0.2676608268952072 -8.769625662444462 -0.7618209993386316 -8.841276393065709 0.35644932608187 -9.2123482050105 -42.85616575707775 -5.089466609815179 -43.91070208372607 -5.079341253161276 -42.85452573020621 -4.643300910464591 -43.89028500747114 -4.633355845676551 1.709694131935471 -14.7073954688194 3.156142300225176 -13.77947667856071 1.515585794251347 -14.01072259203604 3.462027263829304 -14.46039399442799 -48.05993434201174 -15.11054031177028 -49.85632908441665 -15.09368412189255 -48.10016735037338 -14.4038881740515 -49.78197489501785 -14.38810719527151 -0.04358505592539297 -8.802288690044492 0.7951346017989223 -8.20567105693253 -0.202308660183157 -8.346266444788498 0.9667747167175107 -8.659872645420149 -48.17720443897259 -3.612364685457886 -49.21298559373273 -3.603347833359965 -48.17336695413327 -3.145744187788499 -49.19590660948899 -3.136842607764453 -24.67413210867681 -16.97818796572305 -26.56373327215612 -17.24814102593224 -24.71215013432236 -17.37700899018732 -26.45962988012563 -16.85391946365736 -48.05993434201174 -15.11054031177031 -46.26997387752028 -15.01438491172654 -48.03807487559772 -15.50983214079509 -46.18186387021957 -15.41011780892654 -23.86483860110957 -10.27707160786773 -24.92320117772567 -10.45337663290253 -23.90688031441414 -10.52411134527334 -24.87675370134427 -10.20664353131977 -23.82279688780478 -10.03003187046241 -24.83030622496294 -9.959910429737079 -48.17189807862519 -2.648894683134111 -47.15813197683275 -2.646545725747716 -48.17263251637922 -2.897319435461246 -47.15443329114584 -2.89496020625964 -48.17336695413331 -3.145744187788466 -47.15073460545866 -3.143374686771838 -22.84905554561137 -17.37700894043403 -25.05485481832476 -21.2135081854422 -22.50635033399492 -21.21350811738513 -24.71215013432056 -17.37700899018748 -61.65702971846162 -16.56674038696939 -59.79401635727351 -16.57758211930473 -62.05720546906908 -20.4010780378196 -59.50881209487986 -20.41590831194637 -21.10157587174746 -16.85391932057206 -22.84905554561348 -17.37700894043393 -20.99747242550181 -17.24814087728687 -22.88707362610645 -16.97818791800016 -67.22320806992244 -15.13452635950769 -65.42663276535316 -15.14019896044941 -67.25969953043298 -15.5334027607198 -65.39662885457868 -15.53928531762884 -19.65983875675489 -15.92649488162433 -21.10628686855395 -16.85441370608152 -19.35395375169727 -16.60741219025956 -21.30039524865075 -16.15774083388748 -72.10193801730999 -13.47730307687182 -70.41994007206237 -13.47785417067085 -72.15983388213293 -14.18347877566342 -70.36323576649217 -14.18406741733426 -43.06950294742059 -12.13917743266934 -44.55992032928907 -11.32481260217871 -44.7411086087137 -12.02283567960371 -42.99912323830584 -11.43344221139178 -74.41742419529845 -11.61141108950661 -74.3570636577771 -12.3175066381124 -75.98791188953608 -11.61539433155177 -76.03904790534195 -12.32177266986717 -41.45955279281279 -11.43236915577388 -42.97586331323686 -10.72607929024638 -43.03005349378697 -11.43236919290539 -41.51374305935914 -10.72607925567733 -77.14558049578606 -10.2475632219498 -77.0816249564344 -10.95353585425744 -78.60764645145962 -10.25541584244544 -78.65206733432093 -10.96197055445409 -44.53564270497007 -4.868844683405836 -43.41092150869775 -5.751559060089358 -43.21220301129407 -5.055391140276219 -44.8370175255902 -5.550542602460415 -77.16415636843517 -10.24826447432802 -77.2389780061571 -9.542706738916701 -75.7112603593642 -10.14607521154604 -75.89066749521555 -9.447873484331309 -43.1043511784094 -4.349697269190906 -41.93240975316689 -5.142035328139579 -41.85733824380692 -4.436487900814541 -43.28089684433711 -5.048182214726287 -79.48678868445956 -6.328523372240988 -79.45308820856944 -5.621738530211313 -78.1300768182919 -6.315583223488535 -78.19846941635575 -5.609772132478804 -41.90143685786386 -3.726817418198213 -40.69614484856579 -4.433241724166984 -40.74561858162647 -3.726817412920507 -41.95091057431326 -4.433241729896414 -77.61507419370783 -4.40444826584441 -77.58519448104208 -3.697596685853421 -76.36049579125857 -4.390937020668837 -76.42954875629157 -3.685150901123802 -42.82896284305413 -3.209690730117804 -41.78068992859646 -3.731006318572047 -41.72237309395531 -3.286708073408869 -42.92936677794181 -3.65105976267045 -79.37659067690224 -4.445022816462125 -79.38936269651376 -3.999311758434572 -78.22207393437699 -4.410849702400616 -78.27714702578832 -3.966390734791816 -43.58866286999773 -2.65056996292244 -42.67302454862419 -3.226055336737268 -42.53513841985053 -2.799070309663224 -43.75906000877927 -3.072972375650676 -80.50275535525427 -3.991158888570972 -80.47788112209949 -3.555889177518714 -79.38936269651411 -3.999311758434605 -79.39781842467181 -3.56379798718054 -41.70473474163128 -7.725929820062547 -42.77213413865431 -7.290274566805387 -42.78487199625482 -7.725929845600335 -41.71747265227629 -7.290274541869896 -77.42257503590422 -4.44150717529152 -77.40421535004059 -4.877084523444021 -78.47720241417822 -4.446793041718749 -78.48431767266528 -4.882498072079983 -42.51772956606223 -7.299100255606396 -43.47708617543891 -6.783428067892149 -43.56587464418308 -7.2261506128292 -42.44760434427838 -6.855078771021306 -69.70056432856489 -3.792478830310412 -69.67270890982273 -4.238307872581794 -70.73610174768561 -3.809133280019672 -70.72701935630994 -4.255264247102601 -22.0208467945075 -10.35268931581836 -22.85956641591052 -10.94930696876002 -21.84920665193782 -10.80689090024771 -23.01829004793019 -10.49328472725682 -71.76504111450024 -3.342249651541093 -70.74240179156396 -3.342523171225153 -71.77198386068449 -3.808856218359868 -70.73610174768649 -3.809133280019767 -22.68445296469024 -10.20664347277473 -23.65432630796106 -10.5241113385285 -22.63800545437696 -10.45337657187669 -23.69636805523956 -10.27707160336837 -22.73090047500349 -9.959910373672825 -23.73840980251807 -10.03003186820855 -66.73576738605662 -2.503810140084516 -65.72200512086617 -2.506732230499186 -66.7398276936691 -2.75222242731739 -65.72163232181451 -2.75515729581524 -66.74388800128163 -3.000634714550558 -65.72125952276284 -3.003582361131346 -23.27654174300411 -9.477300956631638 -24.28748990074815 -10.01391095126842 -23.27371679179151 -10.01391092419601 -24.28466502333268 -9.47730098355331 -61.02055761717203 -1.629689847032189 -60.01247022933042 -1.634991228976606 -61.03064843196415 -2.166265854325276 -60.01691141664686 -2.171596946822161 2.106755468938884 -2.754228306477331 1.034726888856135 -3.539656420265721 2.281739828535904 -3.452865816973255 0.9580786149166718 -2.834174836281792 -35.22331656709307 -4.102845956161366 -34.06752359749548 -4.107612394797819 -35.28029041917775 -4.809050777507987 -34.02555216652446 -4.814225262076917 3.713031324726105 -3.972013263706177 2.189323803802787 -3.46256421439968 2.389591620137041 -4.158559690509017 3.413174177006511 -3.290055475791677 -32.82071238026315 -6.218344333624239 -32.78163742800861 -6.925021708573112 -34.07540808374316 -6.210083427025863 -34.13843246400307 -6.916088580776203 3.114841476621939 -2.607838078696128 1.850413264483504 -2.329223874719983 1.98750065139667 -2.766743242267615 2.936448733593929 -2.176140938307317 -32.87102461714483 -4.917820740503463 -32.85729912988111 -5.363520791462547 -33.98443372735661 -4.910592884433095 -34.01305470216239 -5.356018037216787 -3.05201570464274 -12.61787767338234 -4.176736897495558 -11.73516329500655 -4.478111720756467 -12.41686121360771 -2.853297204542201 -11.92170975386817 -33.1551900489427 -8.401057250439312 -33.11811841129214 -9.10777654085175 -34.51193313099603 -8.389457599115717 -34.58010108757743 -9.095277129938664 -2.314118734784529 -10.09237395114027 -3.229757053928688 -9.516888575947718 -3.400154194346592 -9.939290988419604 -2.176232604356639 -9.665388924273596 -31.85110848317751 -4.43164370867156 -31.78087225718356 -4.864984411399213 -32.92806044369912 -4.4833005905058 -32.89105818390451 -4.918235387610781 -1.718941980636446 -13.41963982332644 -3.100091244470491 -12.6128324898898 -3.279739065862909 -13.31101018198979 -1.647004958620489 -12.71396558627835 -35.03703168652461 -10.55970692178394 -35.0008557821929 -11.26644423938717 -36.49896737127474 -10.54522948314644 -36.57115823275369 -11.25089365285496 -1.302480464539795 -9.719142447017315 -2.28569316354637 -9.212348213099649 -2.375943900509985 -9.644430654471645 -1.237548089291432 -9.285297877449334 -32.16126888998248 -3.628669189123856 -32.13193318494994 -4.064013094139496 -33.21563294468235 -3.644277427719056 -33.21176582331452 -4.079998355954459 -0.12362279114932 -14.12480959172027 -1.749872236060019 -13.41856680420358 -1.805620968861692 -14.12480959686986 -0.1793715350859721 -13.41856679939538 -38.31115719269232 -12.11446237517334 -38.27431588952703 -12.82118634336574 -39.88143948090462 -12.0981402262861 -39.9560801482943 -12.80370540581021 -0.43729117503747 -9.276472180182688 -1.48256302594523 -8.830343686605771 -1.491952661415535 -9.276472183411691 -0.4466808175416013 -8.830343683434343 -31.15306777737053 -3.150553780250681 -31.10792444600082 -3.595832817909909 -32.18765639460412 -3.18280546779994 -32.16126888998247 -3.62866918912378 -0.07109263315177339 -14.83116963863445 1.531683620442903 -14.00903324040046 -0.1399220328503907 -14.1253750381058 1.714405128772499 -14.70690108342116 -49.85632908441681 -15.09368412189259 -51.64083270711395 -14.96398829560346 -49.78197489501802 -14.38810719527158 -51.45264982255647 -14.26668431754151 0.2676608268952587 -8.769625662444458 -0.8383449220899508 -8.377093041022445 -0.7618209993385743 -8.841276393065703 0.1779759357999979 -8.306358298399868 -42.81577232069132 -2.724253745620192 -42.82058327387968 -3.190870739757652 -43.83829254123219 -2.714523700119231 -43.85634474215161 -3.181014693870421 1.818508551018446 -15.10112264259718 3.462027263829372 -14.46039399442789 1.709694131935525 -14.7073954688193 3.635699549946312 -14.84497907730328 -40.87156435035587 -15.71819937463865 -42.72637835166975 -15.82754446589145 -40.96496004567658 -15.32293751650348 -42.75357336696231 -15.42837994183211 -0.2880891751740125 -8.103661063472192 0.6149257149180754 -7.721679259669724 -0.3738696901649616 -7.86105568215565 -0.2023086601832174 -8.346266444788554 0.7951346017988517 -8.205671056932587 0.7050301583585092 -7.963675158301105 -48.17001537257617 -2.897327794362242 -48.17336695413327 -3.145744187788576 -48.16666379101921 -2.648911400935993 -49.19590660948899 -3.136842607764531 -49.18812230631748 -2.888464802793975 -49.18033800314606 -2.640086997823222 -24.71215013432284 -17.37700899018716 -27.58761292866496 -21.03723126059825 -25.05485481832726 -21.21350818544191 -26.56373327215666 -17.24814102593207 -40.87156435035595 -15.71819937463865 -39.04768534640159 -15.4812346359671 -39.9506058535046 -19.51753374312346 -37.45574389178664 -19.19339255201463 -23.73003248105296 -9.496542044097271 -24.83030622496304 -9.959910429737002 -23.8227968878048 -10.03003187046234 -24.73192689802258 -9.42681139507839 -48.17227469025549 -2.112281879071543 -47.16415837803973 -2.109946012589428 -48.17189807862519 -2.648894683134143 -47.15813197683276 -2.646545725747749 -20.99747242550187 -17.24814087728706 -22.50635033399725 -21.21350811738527 -19.97359224790218 -21.03723105726843 -22.84905554561353 -17.37700894043411 -59.79401635727356 -16.57758211930475 -57.94058300770804 -16.45949446878655 -59.5088120948799 -20.41590831194639 -56.97352310236237 -20.25437764747369 -19.35395375169735 -16.60741219025961 -20.99747242550154 -17.24814087728681 -19.18028144216747 -16.99199726902883 -21.10628686855403 -16.85441370608156 -72.16049752992507 -14.82819744310343 -70.36389943932009 -14.82881504781594 -72.19409880340098 -15.22717245311263 -70.33100449814761 -15.22781291679156 -43.13833229858774 -12.84497203503615 -44.74110860871425 -12.02283567960388 -44.92383006905695 -12.72070352750404 -43.06950294742109 -12.13917743266952 -74.35706365777718 -12.31750663811238 -74.295152093282 -13.0235500302682 -76.03904790534203 -12.32177266986714 -76.09173557797065 -13.02810672109745 -41.40380401144893 -12.13861194695152 -43.03005349378699 -11.43236919290551 -43.08580218916099 -12.13861198671919 -41.4595527928131 -11.43236915577399 -77.0816249564343 -10.95353585425747 -77.01611161161166 -11.65945300910507 -78.65206733432099 -10.96197055445412 -78.69804732559713 -11.6684865296578 -44.83701752559004 -5.550542602460367 -43.60809682789652 -6.447897366874727 -43.41092150869757 -5.751559060089313 -45.13990297601988 -6.23198045663689 -77.0908986023471 -10.95388594097344 -77.16415636843523 -10.248264474328 -75.53030589826797 -10.84412184434355 -75.71126035936429 -10.14607521154603 -43.28089684433719 -5.048182214726337 -42.00591076230346 -5.847646970871561 -41.93240975316697 -5.142035328139631 -43.45899704854519 -5.746513876669308 -79.52206231020426 -7.035278402564875 -79.48678868445984 -6.328523372240971 -78.06011327115274 -7.02133451476844 -78.13007681829214 -6.315583223488522 -41.95091057431358 -4.43324172989634 -40.64509232501527 -5.139622407894673 -40.69614484856609 -4.433241724166907 -42.00196308125373 -5.13962241409034 -78.13007681829222 -6.315583223488506 -78.20161117989242 -5.609893089856478 -76.78112583838494 -6.224355799093693 -76.95416926435327 -5.525530563173279 -39.71768866333086 -3.651059748005634 -40.78971717899691 -4.436487895939804 -39.54270424643519 -4.349697252928056 -40.8663655107963 -3.731006314397202 -74.31079206469445 -3.321763514421009 -73.15515195789035 -3.309116762386453 -74.34035526342275 -4.028620262998957 -73.08578295986192 -4.014890846081715 -41.88026248334325 -3.281230642834011 -40.74561858162679 -3.726817412920862 -40.76679296662574 -3.281230637749646 -41.90143685786419 -3.726817418198571 -77.58519448104227 -3.69759668585343 -77.57637779416464 -3.251848427491278 -76.42954875629172 -3.68515090112381 -76.46307450671056 -3.239858651768742 -42.73484971608403 -2.778112040161864 -41.72237309395559 -3.286708073409244 -41.66138627982458 -2.852823831092483 -42.82896284305424 -3.209690730118184 -79.38936269651384 -3.999311758434575 -79.40586402760759 -3.563887524377166 -78.27714702578835 -3.966390734791816 -78.32694308447483 -3.531952007900814 -43.42201453870896 -2.22739975417059 -42.5351384198508 -2.799070309663501 -42.39333817580061 -2.372397619720381 -43.58866286999797 -2.650569962922726 -80.47788112209953 -3.555889177518677 -80.45693046275061 -3.120357237736075 -79.39781842467187 -3.563797987180503 -79.4023417750864 -3.128079512768852 -41.71747265227671 -7.290274541870042 -42.76274452682732 -6.844146069806369 -42.77213413865476 -7.290274566805532 -41.72686231842377 -6.844146045314941 -79.72234522616124 -2.623841096908365 -79.71265011888353 -3.069967056206146 -80.75822734026022 -2.624116555605003 -80.76731150924738 -3.070247508632243 -42.44760434427846 -6.855078771021525 -43.38740131619907 -6.320160701452886 -43.47708617543898 -6.783428067892371 -42.37108045344532 -6.390895416934932 -69.7265002551575 -3.326132214107186 -69.70056432856521 -3.792478830310389 -70.7487992908074 -3.342573752155682 -70.73610174768588 -3.809133280019649 -22.11095125268078 -10.11069341931728 -23.01829004793042 -10.49328472725688 -22.02084679450785 -10.35268931581843 -23.10407057769096 -10.25067934796869 -22.20105571085365 -9.868697522816236 -23.18985110745143 -10.00807396868054 -65.71439629041662 -1.466284887771337 -64.70062509483354 -1.465057436046833 -65.71583837684531 -1.714708436182647 -64.69763403554644 -1.713475616903534 -65.71728046327394 -1.963131984594007 -64.69464297625932 -1.961893797760338 -22.82927987525749 -9.426811344268931 -23.73840980251775 -10.03003186820892 -22.73090047500329 -9.959910373673207 -23.83117428263762 -9.496542046798293 -66.72135686259176 -0.9267709508878834 -65.71324433412217 -0.9296725125803098 -66.72815858725718 -1.463367064847099 -65.71439629041672 -1.466284887771298 -23.27655115698729 -9.019087771317974 -24.28466502333241 -9.477300983553224 -23.27654174300389 -9.477300956631556 -24.28465567236423 -9.019087798239074 -61.01434377054307 -1.171493024945979 -60.00627514698498 -1.176794308211883 -61.020557617172 -1.629689847032096 -60.01247022933043 -1.634991228976514 1.078825544429551 -2.829985938651078 -0.1264665061946353 -3.536410217236604 1.128299219553036 -3.53641025147338 -0.07699273180788868 -2.829985907114085 -37.93026699458727 -3.402037596643581 -36.77445126712431 -3.403550268085923 -37.98212118573449 -4.108395601838955 -36.72735822695712 -4.110037770265551 2.281739828536272 -3.452865816973347 1.109798356942012 -4.245203849296338 2.458285453602436 -4.151350766519828 1.034726888856509 -3.539656420265812 -35.2802904191778 -4.809050777508015 -34.02555216652448 -4.814225262076946 -35.33884256392383 -5.515205461579338 -33.98200151636924 -5.520801013518824 2.006351559870673 -2.312859271643671 0.9580786149161336 -2.834174836281846 2.106755468938338 -2.754228306477384 0.8997618062664863 -2.38987658979379 -35.19741116001612 -3.657356257300899 -34.08396602271228 -3.66194805536642 -35.22331656709311 -4.10284595616138 -34.06752359749549 -4.107612394797834 4.014406105467254 -4.653711189607563 2.389591620137186 -4.158559690508848 2.588310076815222 -4.854727614836696 3.713031324726252 -3.972013263706006 -32.78163742800854 -6.925021708573135 -32.74098957027322 -7.631664626053212 -34.13843246400303 -6.916088580776226 -34.20302823045331 -7.622038575066221 2.936448733593941 -2.176140938307058 1.712527160688542 -1.902238844512911 1.850413264483511 -2.329223874719725 2.76605161952315 -1.753738521707486 -34.65486816268125 -2.429104227168473 -34.57318446720551 -2.86166493006868 -35.73030818777105 -2.491812097980261 -35.68181180125004 -2.926307920862894 -3.249191026539737 -13.31421597987111 -4.478111720756626 -12.41686121360763 -4.780997173826691 -13.0982990673284 -3.052015704642901 -12.61787767338225 -33.11811841129206 -9.107776540851733 -33.0794804342697 -9.814463246942303 -34.58010108757732 -9.095277129938646 -34.64983335963839 -9.80103731049911 -2.176232604356918 -9.665388924273696 -3.063108721000445 -9.093718367446369 -3.229757053928987 -9.516888575947817 -2.034432358653735 -9.238716234543837 -33.21563294468209 -3.644277427719024 -33.21176582331424 -4.07999835595446 -34.27020953747643 -3.635938319686161 -34.29181613371577 -4.071457813445736 -1.789321727151721 -14.12537504315543 -3.279739065862694 -13.31101018198981 -3.460927382279232 -14.00903325568569 -1.718941980636222 -13.41963982332645 -35.00085578219299 -11.26644423938721 -34.9631203586952 -11.97314988596132 -36.57115823275382 -11.250893652855 -36.64490621123425 -11.95649528772184 -1.237548089291194 -9.28529787744921 -2.196904671339784 -8.769625669989875 -2.285693163546131 -9.212348213099521 -1.167422843976124 -8.841276394307357 -32.1876563946041 -3.182805467800001 -32.16126888998245 -3.628669189123819 -33.22324646739105 -3.198135786460751 -33.21563294468233 -3.644277427719016 -0.0663226924662732 -14.83100416187365 -1.805620968861731 -14.12480959686987 -1.862921056410319 -14.83100416737411 -0.1236227911493693 -14.12480959172027 -38.27431588952697 -12.82118634336577 -38.2359221568971 -13.52787821926354 -39.95608014829429 -12.80370540581023 -40.03227066421258 -13.50920624670814 -0.4466808175415422 -8.830343683434617 -1.475941633982873 -8.363735305804173 -1.482563025945173 -8.830343686606042 -0.4533022168606307 -8.363735302672986 -31.19708816232836 -2.684734245592358 -31.15306777737061 -3.150553780250666 -32.21845052564137 -2.716573625291448 -32.18765639460419 -3.182805467799923 -0.03307457693841931 -15.22999066196701 1.714405128772454 -14.70690108342106 -0.07109263315181513 -14.83116963863435 1.818508551018387 -15.10112264259711 -42.72637835166972 -15.82754446589146 -44.58920675701978 -15.80791869371852 -42.74879961937981 -15.42826473511355 -44.54514130038862 -15.4093394318086 0.1779759357998287 -8.306358298399758 -0.8803866543292007 -8.130053304868513 -0.8383449220901085 -8.37709304102232 -0.9224283865683733 -7.88301356871453 0.08508094521532206 -7.812892097999353 0.1315284405076311 -8.059625198199649 -42.81190249147564 -2.475840277628843 -42.81577232069125 -2.724253745620193 -42.80803266226009 -2.227426809637297 -43.82168760807255 -2.217781123863365 -43.82999007465232 -2.466152411991389 -43.83829254123212 -2.714523700119229 2.842388497942398 -18.89021284678656 3.635699549945734 -14.84497907730358 1.818508551017897 -15.10112264259747 5.328102018724692 -18.53983717142385 -39.95060585350453 -19.51753374312347 -42.48778342279818 -19.66710556684403 -40.8715643503559 -15.71819937463861 -42.7263783516697 -15.8275444658914 0.6149257149179319 -7.721679259669745 -0.5610771724084938 -7.337278525232163 -0.3738696901651104 -7.861055682155677 0.4222076065418348 -7.198678857322582 -48.15746122850735 -2.112329191817097 -48.16666379101923 -2.648911400936012 -49.16548616316518 -2.103553967721753 -49.18033800314606 -2.640086997823241 -30.99761934804165 -1.01101992622974 -32.01312856115008 -1.462846586128888 -31.00505698954319 -1.469209668065076 -32.00567215565972 -1.004656962734529 -48.17499908571367 -1.654071839171608 -47.16690153831954 -1.651736016168537 -48.17227469025544 -2.112281879071523 -47.16415837803969 -2.109946012589408 -19.18028144216821 -16.99199726902892 -19.97359224790256 -21.03723105726824 -17.48787874845064 -20.68685532313552 -20.99747242550221 -17.24814087728688 -72.19409880340095 -15.22717245311264 -70.33100449814752 -15.22781291679157 -72.54019960758669 -19.06355324611251 -69.99169551099269 -19.0644293286087 -43.17635032737751 -13.24379305938411 -44.92383006905721 -12.72070352750407 -45.02793346419559 -13.11492508946019 -43.1383322985879 -12.84497203503619 -74.295152093282 -13.02355003026817 -74.25929859452542 -13.42244889930774 -76.0917355779706 -13.02810672109742 -76.12237775326382 -13.42717424371233 -41.34650387534085 -12.84480651592554 -43.08580218916109 -12.13861198671926 -43.14310223928465 -12.8448065584027 -41.40380401144898 -12.1386119469516 -77.01611161161138 -11.65945300910509 -76.94904763652134 -12.3653136117037 -78.69804732559688 -11.66848652965781 -78.74557928087499 -12.37496261635824 -45.13990297602015 -6.231980456636868 -43.8037353547201 -7.144403994520802 -43.60809682789679 -6.44789736687471 -45.44429186523598 -6.913158093559294 -77.01919799656031 -11.65956952232775 -77.09089860234715 -10.95388594097342 -75.34781123259067 -11.5420127390705 -75.53030589826797 -10.84412184434352 -43.45899704854511 -5.746513876669183 -42.07784778158532 -6.553321208027846 -42.0059107623034 -5.847646970871436 -43.63864486723261 -6.444691569039391 -79.55890235624992 -7.742002396208617 -79.52206231020406 -7.035278402564911 -77.98858556149283 -7.727024910259438 -78.06011327115252 -7.021334514768475 -42.00196308125359 -5.13962241409058 -40.59246756789071 -5.845958280650228 -40.64509232501517 -5.139622407894914 -42.05458782176859 -5.845958287326429 -78.06011327115304 -7.0213345147684 -78.13007681829244 -6.315583223488451 -76.60652711333897 -6.923030778540436 -76.78112583838512 -6.22435579909364 -39.54270424643507 -4.34969725292806 -40.71464565304567 -5.142035322579216 -39.36615856408261 -5.048182196851196 -40.7897171789967 -4.436487895939798 -76.95727952656826 -5.525832420423306 -75.72774798819634 -5.369799654476422 -76.78112583838529 -6.224355799093673 -75.45154267074202 -6.055626057131502 -38.70960266765387 -3.50466948811533 -39.63512027037247 -4.359395653297954 -38.41126991131701 -4.186886875708355 -39.83694347984669 -3.66357468759445 -69.9016240144454 -1.782070540725948 -68.74599424554253 -1.769062090513232 -69.93061754605579 -2.488936453038041 -68.67605646540447 -2.474814373635477 -39.81809260859718 -3.209690716370153 -40.8663655107961 -3.731006314397413 -39.71768866333072 -3.651059748005854 -40.92468235588495 -3.286708069766791 -74.30217497454214 -2.876013740184414 -73.18887709919474 -2.863830360525614 -74.31079206469453 -3.321763514421045 -73.15515195789044 -3.309116762386492 -40.78345910279189 -2.845808841392171 -41.88026248334306 -3.281230642834032 -40.76679296662554 -3.281230637749664 -41.86359635741555 -2.84580884632418 -77.5717868443638 -2.816312175001931 -76.49181084284815 -2.804681319160903 -77.5763777941648 -3.251848427491261 -76.46307450671071 -3.239858651768725 -42.64459898079371 -2.346029598653481 -41.66138627982377 -2.852823831091905 -41.5964539062561 -2.418979261426087 -42.73484971608345 -2.778112040161272 -79.4049551527884 -3.563804061897484 -79.40234177508644 -3.128079512768898 -78.32493115322589 -3.554056606422592 -78.34779087257202 -3.11856195762902 -43.25492438228096 -1.793554043719254 -42.39333817579985 -2.372397619720048 -42.24456460684097 -1.935970080636765 -43.42201453870818 -2.227399754170252 -80.45693046275058 -3.120357237736085 -80.43913035993602 -2.674328286601702 -79.40234177508637 -3.128079512768863 -79.403319653994 -2.68191305898424 -41.72686231842391 -6.844146045314272 -42.75612315959347 -6.377537688867332 -42.7627445268276 -6.844146069805695 -41.733483742471 -6.377537664689008 -79.72928611314895 -2.157234519347393 -79.72234522616154 -2.623841096908365 -80.7519254371723 -2.157506456560604 -80.75822734026052 -2.624116555605 -42.37108045344537 -6.390895416934944 -43.34095383787277 -6.0734276000123 -43.38740131619912 -6.3201607014529 -42.32903873819321 -6.143855679658376 -43.29450635954643 -5.8266944985718 -42.28699702294101 -5.896815942381707 -69.75150031277599 -2.829526193483187 -69.73900028396683 -3.077829203795278 -70.76493599137578 -2.845825183004066 -70.75686764109165 -3.094199467579863 -69.72650025515767 -3.326132214107267 -70.74879929080751 -3.342573752155761 -22.39377385106873 -9.345697125025254 -23.18985110745107 -10.00807396868028 -22.20105571085308 -9.868697522815946 -23.37705862158105 -9.484296816182702 -65.71324433412211 -0.9296725125802565 -64.705122956504 -0.9284519015304262 -65.71439629041664 -1.466284887771244 -64.70062509483363 -1.465057436046735 -22.91089842392969 -8.971429961391504 -23.83117428263757 -9.496542046798467 -22.82927987525739 -9.426811344269105 -23.91277418230081 -9.041159365971232 -66.71795164179757 -0.4685626795243039 -65.70985787807956 -0.4714641872077712 -66.72135686259169 -0.9267709508881081 -65.7132443341221 -0.9296725125805363 -29.98639207757771 -0.2424562826758141 -30.99761934804155 -1.011019926229646 -29.98952775958003 -1.01420143558487 -30.98821227845614 -0.2392945656476524 -67.71088258759127 0.3092103470655543 -66.70909650338184 0.3031652172576242 -67.72600890002011 -0.4624797072450733 -66.7179516417977 -0.4685626795242799 -0.0328941759536745 -3.539656391135336 -1.10492264567181 -2.754228218845296 -1.279907103437926 -3.45286571979229 0.04375419711655582 -2.834174811334121 -40.78128458714233 -1.961935220483994 -40.72916817471142 -2.668285730799593 -41.93709972212255 -1.963614529368262 -41.98393049028447 -2.670108802189198 1.128299219553282 -3.536410251473423 -0.1775190710683843 -4.242790899804435 1.17935168517024 -4.242790936827233 -0.1264665061943848 -3.536410217236649 -40.73350430273622 -2.453662420040963 -39.48441434757537 -2.379371381779693 -40.67663626323732 -3.15987055358754 -39.32590313649426 -3.079534172700825 1.057651195975606 -2.384399162805654 -0.07699273180777322 -2.829985907114259 1.078825544429664 -2.829985938651251 -0.05581832074215587 -2.384399132424101 -37.90759108104177 -2.956479515834355 -36.79412401971234 -2.957936763547563 -37.93026699458731 -3.402037596643575 -36.77445126712436 -3.403550268085914 2.458285453602223 -4.151350766519793 1.183299324799906 -4.95081549369812 2.636385616957931 -4.849682432508988 1.109798356941793 -4.245203849296301 -35.33884256392385 -5.515205461579349 -33.98200151636925 -5.520801013518836 -35.39896643199193 -6.221308851987439 -33.93687819123556 -6.227338438655687 1.912238458148476 -1.881280579548998 0.8997618062670512 -2.389876589793726 2.006351559871216 -2.312859271643605 0.8387750175181621 -1.955992346091364 -36.80932278843648 -2.52249411557605 -35.73030818777087 -2.491812097980248 -36.79412401971232 -2.957936763547616 -35.68181180124985 -2.926307920862873 4.317291516032856 -5.335149050665386 2.588310076815045 -4.854727614836658 2.785485355278229 -5.551065926101754 4.014406105467092 -4.653711189607523 -32.74098957027327 -7.631664626053256 -32.69877554585067 -8.338271880979015 -34.20302823045341 -7.622038575066267 -34.26918860495032 -8.327932293805745 2.766051619523173 -1.753738521707604 1.570726941598609 -1.475566151348245 1.712527160688575 -1.902238844513027 2.59940331298947 -1.330568309169304 -34.73267559674283 -1.996083001356813 -34.65486816268123 -2.429104227168478 -35.78275064092512 -2.057311864591345 -35.73030818777103 -2.491812097980268 -3.444829556061181 -14.01072260722271 -4.780997173826446 -13.09829906732836 -5.085386065680981 -13.77947670379287 -3.249191026539497 -13.31421597987106 -33.07948043426981 -9.814463246942292 -33.03928305209368 -10.5211161720546 -34.64983335963846 -9.801037310499101 -34.72112296289237 -10.50673706313899 -2.034432358653563 -9.238716234543727 -2.896018562892249 -8.659872657246593 -3.063108721000252 -9.09371836744627 -1.885658788003921 -8.802288695684309 -33.21593886060778 -3.198110598484079 -33.2156329446822 -3.644277427719041 -34.25173768704092 -3.189919976415452 -34.27020953747654 -3.635938319686177 -1.858151115722148 -14.83116964410559 -3.460927382279202 -14.00903325568576 -3.64364887960561 -14.70690109982526 -1.789321727151711 -14.1253750431555 -34.96312035869504 -11.97314988596127 -34.92383254681778 -12.6798226774654 -36.64490621123412 -11.95649528772179 -36.7202041191611 -12.66203334549958 -1.16742284397621 -8.841276394307556 -2.107219787548804 -8.30635830539617 -2.196904671339858 -8.769625669990081 -1.090898928543423 -8.377093041796037 -35.07782176171923 -2.784414505735258 -35.08213705442126 -3.251033382323967 -36.1003520938676 -2.775106288476301 -36.11790876524201 -3.241604627194111 -0.03307457693821503 -15.22999066196684 -1.862921056410251 -14.83100416737387 -1.896169165647506 -15.22999066767088 -0.06632269246618927 -14.83100416187341 -44.54037652957584 -15.40955513129846 -44.58920675701965 -15.80791869371853 -46.32224854014982 -15.26649596603361 -46.43702993625544 -15.6595645807352 -0.4533022168608394 -8.363735302673122 -1.473725058900135 -8.115313972298154 -1.475941633983074 -8.363735305804303 -1.471508483817087 -7.86689263879242 -0.4577353748606088 -7.866892635688616 -0.4555187958606819 -8.11531396918096 -43.82999007465247 -2.466152411991368 -43.83829254123232 -2.714523700119218 -43.8216876080727 -2.21778112386334 -44.83510774839135 -2.20111114688695 -44.8478418255486 -2.449409538450623 -44.86057590270575 -2.697707930014711 0.3096304011168898 -19.06648984702068 1.818508551019035 -15.10112264259704 -0.03307457693777183 -15.22999066196695 2.842388497943664 -18.89021284678614 -42.48778342279817 -19.66710556684403 -45.03592379814038 -19.64025971119379 -42.72637835166968 -15.82754446589141 -44.5892067570197 -15.80791869371847 0.08508094521554899 -7.812892097999712 -1.015192834209553 -7.349523745111105 -0.9224283865681437 -7.883013568714892 -0.01329842258458802 -7.279793066269629 -42.79771068062509 -1.69085251002321 -42.80803266226012 -2.227426809637333 -43.80571645634086 -1.681260580332451 -43.82168760807257 -2.217781123863404 0.4222076065420377 -7.198678857322694 -0.7232779366435809 -6.890353670074972 -0.5610771724082975 -7.337278525232275 0.2599885396928285 -6.751756582024696 -48.13016366703528 -0.8735001737753505 -48.14040536543017 -1.331668905603554 -49.13817020195148 -0.8647413391078143 -49.14843066347413 -1.322909907898426 -30.9882122784346 -0.23929456564756 -32.00567215563823 -1.004656962733839 -30.99761934802005 -1.011019926229016 -31.98999393972713 -0.2329711864625299 -48.11603372389546 -0.1018027844186182 -47.11424015883253 -0.1073455823806757 -48.13016366703526 -0.8735001737753931 -47.12209888112917 -0.8790776696145022 -43.51905504162492 -17.08029225358976 -45.02793346419419 -13.11492508946036 -46.05181315057288 -16.9040153209918 -43.17635032737616 -13.24379305938425 -78.77330854869099 -12.77411286543641 -79.06294557683683 -16.61231014502765 -80.62660504013356 -12.65519394921283 -81.59804736278879 -16.44964240228173 -41.31325573866818 -13.24379301533464 -43.14310223928457 -12.84480655840267 -43.17635032737737 -13.24379305938393 -41.34650387534074 -12.84480651592551 -76.94904763652143 -12.36531361170372 -76.91028314901688 -12.76410672899608 -78.74557928087512 -12.37496261635825 -78.77330854869092 -12.77411286543647 -45.4442918652361 -6.913158093559282 -43.9978436787212 -7.841076872784717 -43.80373535472023 -7.144403994520786 -45.75017681546639 -7.59407541175977 -76.94904763652143 -12.36531361170364 -77.01919799656039 -11.6595695223277 -75.16378367758581 -12.23974728989128 -75.34781123259087 -11.54201273907045 -43.63864486723229 -6.44469156903938 -42.14822752536637 -7.259056427962751 -42.07784778158496 -6.553321208027835 -43.81983318094459 -7.142714643007994 -79.59600489683034 -8.54622406529108 -79.55781937533432 -7.839527808201229 -77.91420856944565 -8.529985456372863 -77.98750714429174 -7.824365635598011 -42.05458782176868 -5.845958287326228 -40.53827733603871 -6.552248181780355 -40.59246756789077 -5.845958280650025 -42.10877803701268 -6.552248188951461 -77.99171402001109 -7.727145355396146 -78.06011327115292 -7.021334514768378 -76.43038000954346 -7.621554802057631 -76.6065271133388 -6.923030778540413 -39.36615856408298 -5.048182196851226 -40.64114462731717 -5.847646964639957 -39.1880583434536 -5.746513857167618 -40.71464565304606 -5.142035322579249 -76.78112583838542 -6.224355799093654 -75.45154267074217 -6.055626057131489 -76.60652711333927 -6.923030778540437 -75.17381108663716 -6.741213039437244 -38.41126991131703 -4.186886875708443 -39.43485239695619 -5.055391123028452 -38.11141270766674 -4.868844654071874 -39.63512027037253 -4.359395653298051 -69.9306175460557 -2.488936453038099 -68.67605646540439 -2.474814373635536 -69.96119087498676 -3.195776513852458 -68.60454141658957 -3.180505267463135 -26.99872075778494 -0.4477109672958275 -28.20401279003755 -1.15413525805467 -26.94924706429007 -1.154135279618507 -28.15453903402222 -0.4477109474325209 -64.57332069376969 -1.001036730502772 -63.41766594843776 -0.9889206067685579 -64.6037195984641 -1.707879712949179 -63.34913140319814 -1.694726350432694 -38.88799544608732 -3.072972353408204 -39.8369434798466 -3.663574687594172 -38.70960266765366 -3.504669488115042 -39.97403090264281 -3.226055324412955 -69.89336615987492 -1.33631812567405 -68.7800782436518 -1.32378630032621 -69.90162401444539 -1.782070540725977 -68.74599424554251 -1.769062090513261 -39.91220574571592 -2.778112027273185 -40.92468235588498 -3.286708069766816 -39.81809260859721 -3.20969071637018 -40.98566918021869 -2.85282382800711 -74.2977790485874 -2.440476706282476 -73.21780829716462 -2.428658042134771 -74.30217497454233 -2.876013740184396 -73.18887709919488 -2.863830360525595 -40.79619699203681 -2.410153562956101 -41.86359635741553 -2.845808846323822 -40.78345910279187 -2.84580884139181 -41.85085847841493 -2.410153567771779 -78.34779087257216 -3.118561957628845 -77.29400330867341 -3.091811120596955 -78.33206517056769 -3.554179328339655 -77.25282294836894 -3.526782314185143 -42.55581049030278 -1.903307055410551 -41.59645390625645 -2.418979261426508 -41.52632866266157 -1.974957778179238 -42.64459898079401 -2.346029598653904 -79.40234177508651 -3.128079512768869 -79.40331965399416 -2.681913058984246 -78.34779087257209 -3.118561957628989 -78.3675460604005 -2.672564973210626 -43.08328427628357 -1.339352453922658 -42.24456460684127 -1.935970080636844 -42.0858410115401 -1.479947834170261 -43.25492438228128 -1.793554043719333 -80.43913035993619 -2.67432828660166 -80.42371219059417 -2.207800595907997 -79.40331965399412 -2.681913058984197 -79.40114336184089 -2.215288404024981 -41.73348374247092 -6.377537664688897 -42.7539065976755 -6.129116355315732 -42.75612315959342 -6.377537688867219 -41.73570033463601 -6.129116331242134 -42.75169003575758 -5.880695021764144 -41.73791692680101 -5.880694997795374 -79.73405946052959 -1.660393076431734 -79.73167278683906 -1.90881379788955 -80.74783247719419 -1.660662655942891 -80.74987895718299 -1.909084556251787 -79.72928611314845 -2.157234519347369 -80.75192543717181 -2.157506456560583 -42.28699702294108 -5.896815942381505 -43.19612702840344 -5.293595464214354 -43.29450635954651 -5.826694498571595 -42.19423261198366 -5.363326116300549 -69.77653895954637 -2.293140252047817 -69.75150031277588 -2.829526193483114 -70.78432669004101 -2.309348406157131 -70.76493599137569 -2.845825183003997 -22.55599294512678 -8.898774853562729 -23.37705862158164 -9.484296816182948 -22.39377385106941 -9.345697125025508 -23.53925941302538 -9.037371964860654 -65.71466349199402 -0.4714601807280578 -64.70656087929187 -0.4702395923983476 -65.71324433412217 -0.9296725125802912 -64.70512295650408 -0.9284519015304582 -28.98455903020312 -0.2424562564607324 -29.9895277595804 -1.014201435584832 -28.98142324420346 -1.014201409205584 -29.98639207757805 -0.2424562826757803 -66.70909650338179 0.3031652172575781 -65.70727414077918 0.3002817599966852 -66.71795164179764 -0.4685626795243252 -65.70985787807962 -0.4714641872077925 -29.88567145130155 66.201721910185 -31.01649123482647 -0.01852380092209138 -30.01466113993174 -0.02003954268265495 -30.62951400549869 66.20284732379351 -66.83315757176183 66.52711546324734 -66.08933129152172 66.52384912836047 -67.71090468000924 0.3075644178297265 -66.70909650338179 0.3031652172573773 -1.187491080067955 -3.46256412226169 -2.113008632785026 -2.607837936051825 -2.411341429031764 -3.290055316866971 -0.9856678298880537 -2.766743161143307 -45.82240461078889 -1.183426658504284 -45.76519509864513 -1.889624080917108 -46.97819596482864 -1.188342884806785 -47.0199315974359 -1.894961176195079 -0.1079657431793972 -4.245203816069029 -1.279907103438157 -3.452865719792212 -1.456452826652147 -4.151350659704272 -0.03289417595392497 -3.539656391135254 -40.72916817471147 -2.668285730799608 -40.67547313929691 -3.374590319869384 -41.98393049028453 -2.670108802189213 -42.03234020786226 -3.376561741469689 0.04375419711652562 -2.834174811334018 -1.004518674585391 -2.312859189490692 -1.10492264567184 -2.75422821884519 0.1020710681966852 -2.389876568028295 -40.80412590548384 -1.516380420853993 -40.78128458714241 -1.96193522048402 -41.91759239603884 -1.517998200474142 -41.93709972212263 -1.96361452936829 1.179351685169839 -4.242790936827265 -0.2301438695136904 -4.949126771364207 1.231976384364121 -4.949126811258767 -0.1775190710687786 -4.242790899804465 -40.67663626323724 -3.159870553587526 -39.3259031364942 -3.07953417270081 -40.62134017706858 -3.866127166254061 -39.16583363518582 -3.779559267964803 1.04098509552023 -1.948977365917169 -0.05581832074210436 -2.384399132424068 1.057651195975657 -2.384399162805623 -0.03915215910342162 -1.948977336445197 -37.88945766117506 -2.521080491295763 -36.80932278843646 -2.522494115576008 -37.90759108104174 -2.956479515834356 -36.7941240197123 -2.957936763547565 2.636385616957753 -4.849682432509094 1.255236302799672 -5.656489732488935 2.816033394801831 -5.547860128960735 1.183299324799729 -4.950815493698228 -35.39896643199189 -6.221308851987475 -33.93687819123551 -6.227338438655724 -35.46065525235987 -6.927359815977679 -33.89018893749703 -6.933836348987767 1.821987748135289 -1.449198135990882 0.8387750175179543 -1.955992346091456 1.912238458148282 -1.881280579549091 0.7738426693304135 -1.522147774950433 -36.82846279853462 -2.086929812685082 -35.7748974875612 -2.05697145124147 -36.80932278843661 -2.522494115576062 -35.73030818777099 -2.491812097980259 4.621680365399653 -6.016326694503376 2.785485355278278 -5.551065926101764 2.981123841355978 -6.247572558192642 4.317291516032879 -5.3351490506654 -32.32914064650183 -6.889268756108904 -32.16694449610689 -7.589103715544399 -33.89266556686274 -6.981412752244337 -33.84147164864123 -7.68778946174675 2.599403312989449 -1.330568309169531 1.421953398170678 -1.039138608885206 1.570726941598585 -1.47556615134847 2.432313181942065 -0.8967225949223172 -34.80871495971523 -1.552439718572633 -34.73267559674277 -1.996083001356813 -35.84009239200645 -1.61257834208804 -35.78275064092505 -2.05731186459134 -3.638937882760934 -14.7073954851947 -5.085386065680934 -13.77947670379298 -5.391271018549245 -14.46039402153326 -3.44482955606111 -14.01072260722283 -33.03928305209366 -10.52111617205459 -32.99753339965839 -11.22773414179851 -34.72112296289235 -10.50673706313899 -34.79396271343237 -11.21237533588836 -1.885658788003785 -8.80228869568432 -2.724378455134858 -8.205671067708121 -2.896018562892111 -8.659872657246607 -1.726935190935932 -8.346266449456277 -33.21305979516611 -2.731487421982284 -33.21593886060782 -3.198110598484098 -34.23561689627894 -2.723401509404588 -34.25173768704095 -3.189919976415469 -1.896169165647466 -15.22999066767109 -3.643648879605646 -14.7069010998253 -3.747752295636097 -15.10112265963883 -1.858151115722159 -14.83116964410564 -34.92383254681769 -12.67982267746535 -34.90076114114613 -13.0790880240246 -36.72020411916098 -12.66203334549952 -36.76362054417758 -13.06064026809459 -1.09089892854342 -8.377093041796039 -2.060772296146661 -8.059625204911736 -2.107219787548798 -8.306358305396174 -2.014324804744522 -7.812892104427231 -1.048857200199411 -8.130053305384385 -1.006815471855348 -7.88301356897315 -35.07060985463798 -2.287584485724588 -35.07421580817871 -2.535999495729701 -36.08427482438968 -2.278356970931829 -35.07782176171931 -2.784414505735229 -36.09231345912868 -2.526731629704084 -36.1003520938677 -2.775106288476271 0.3096304011163125 -19.06648984702105 -1.896169165647581 -15.22999066767136 -2.238874083213402 -19.06648985482359 -0.03307457693829985 -15.22999066196732 -44.58920675701975 -15.80791869371847 -45.03592379814042 -19.64025971119377 -46.43702993625536 -15.65956458073516 -47.56353870672798 -19.43732791991604 -0.457735374860389 -7.866892635688333 -1.468683573733137 -7.330282671143731 -1.471508483816877 -7.866892638792138 -0.4605602934046278 -7.330282668057278 -43.80179122955464 -1.681311537963442 -43.82168760807277 -2.217781123863366 -44.80956350836424 -1.664734463937688 -44.83510774839138 -2.201111146886977 -0.01329842258467995 -7.279793066269627 -1.096792706149778 -6.894141062354569 -1.015192834209656 -7.349523745111114 -0.09491694353368407 -6.824411681462262 -49.13817020195148 -0.8647413391077761 -49.15213498270507 -1.322871873372796 -50.14609263413104 -0.8528013902448288 -50.16007617644679 -1.310931702258509 -32.32098355957851 -1.189742892089187 -33.30702277327272 -0.4085722366477054 -33.32897173341937 -1.180198637640784 -32.30530534366748 -0.4180571158173709 -48.11603372389544 -0.1018027844185756 -48.13016366703524 -0.8735001737753558 -49.11776940035087 -0.0930984388945113 -49.13817020195145 -0.8647413391078178 -30.62951400549857 66.2028473237926 -32.01831247209362 -0.01549230012007286 -31.01649123482633 -0.01852380092229389 -31.37334998305149 66.20509816384174 -47.04364504396369 66.11663518041529 -46.29982961257252 66.11251974306245 -48.11603372389547 -0.1018027844186396 -47.11424015883254 -0.107345582380697 -40.97055055729744 -17.08029219333441 -43.17635032737814 -13.24379305938351 -43.51905504162714 -17.08029225358899 -41.31325573866885 -13.24379301533425 -76.91028314901693 -12.76410672899604 -76.51453573534899 -16.59862287238786 -78.77330854869099 -12.77411286543644 -79.06294557683683 -16.61231014502767 -45.75017681546582 -7.594075411759767 -44.10665809007053 -8.234804047392611 -43.9978436787207 -7.841076872784703 -45.92384909402896 -7.978660495959941 -76.91028314901685 -12.76410672899588 -76.94904763652141 -12.36531361170359 -75.05894247763361 -12.63389290970953 -75.16378367758588 -12.23974728989124 -43.81983318094478 -7.142714643007971 -42.2170569112027 -7.964851029016463 -42.14822752536654 -7.259056427962729 -44.00255467556778 -7.840582487422439 -79.63574278565825 -9.252887083331693 -79.59600489683049 -8.546224065291032 -77.83936002478282 -9.2355420834371 -77.91420856944588 -8.529985456372817 -42.10877803701303 -6.552248188951531 -40.48252858936644 -7.258490974021458 -40.53827733603904 -6.552248181780428 -42.16452676707863 -7.258490981701705 -77.75654915703132 -7.198096782890376 -77.72114097524811 -6.491344365639092 -76.07482168887229 -7.179291432100158 -76.15089303884227 -6.473785597152065 -39.18805834345341 -5.74651385716763 -40.56920759144142 -6.55332120113937 -39.00841050834855 -6.444691547897245 -40.64114462731696 -5.847646964639966 -76.60652711333921 -6.923030778540389 -75.17381108663717 -6.741213039437207 -76.43347710014453 -7.621855380975746 -74.8945602304379 -7.426560304559292 -38.111412707667 -4.86884465407192 -39.23613388318223 -5.751559041026789 -37.81003787101679 -5.550542570374253 -39.43485239695643 -5.05539112302849 -65.99185555909405 -2.186907017584769 -64.63917298686873 -2.253293719537974 -66.13330253370802 -2.888487943879105 -64.6756953321196 -2.960024117142253 -26.94924706429006 -1.154135279618421 -28.25506533654123 -1.860515941137943 -26.89819458030281 -1.860515964456608 -28.20401279003751 -1.154135258054585 -64.60371959846405 -1.707879712949141 -63.34913140319811 -1.694726350432654 -64.63569824786842 -2.414695624081143 -63.2790194684379 -2.400471922733173 -25.79580645747982 -1.070590833468697 -27.1194676871889 -0.4518998661459146 -27.04281939490259 -1.15738144935577 -25.97079083524598 -0.3719533247401314 -57.55089958457076 -0.5765695183495656 -57.48509955263062 -1.282476317595888 -58.70659790021043 -0.5869468855071467 -58.73973504817728 -1.293742071824446 -27.01989511782699 -0.002124191664051978 -28.15453903402221 -0.4477109474324328 -26.99872075778498 -0.4477109672957464 -28.13336463454458 -0.002124172528361612 -64.51198795209797 -2.016797560077902 -63.39866148510807 -2.005675042588819 -64.52169872195783 -2.46253860211271 -63.36602893608087 -2.450993060183791 -39.05839259480138 -2.650569942236146 -39.97403090264272 -3.226055324412981 -38.88799544608721 -3.072972353408222 -40.11191704145691 -2.799070298597994 -69.88932123841336 -0.9007797708362184 -68.80936014798347 -0.8886230918941087 -69.89336615987484 -1.336318125674016 -68.78007824365176 -1.323786300326173 -40.00245649116634 -2.346029586589831 -40.98566918021894 -2.852823828007304 -39.91220574571615 -2.778112027273378 -41.05060156398834 -2.418979258934508 -74.29731734217442 -2.004749208470402 -73.24281843190647 -1.993209295516089 -74.29777904858743 -2.440476706282449 -73.21780829716464 -2.428658042134747 -40.80558663626954 -1.964025066221906 -41.85085847841502 -2.41015356777185 -40.79619699203696 -2.410153562956178 -41.84146884467304 -1.964025070951929 -78.36754606040054 -2.672564973210498 -77.33252221343297 -2.646290460962492 -78.34779087257215 -3.118561957628868 -77.29400330867341 -3.091811120596978 -42.46612560830638 -1.440039690682036 -41.52632866266151 -1.974957778179387 -41.44980474902709 -1.510774425552651 -42.55581049030271 -1.903307055410703 -79.40331965399419 -2.681913058984273 -79.40754136996284 -2.215293849950405 -78.36754606040054 -2.672564973210654 -78.38500917911122 -2.206065270765315 -42.90307539890949 -0.8553606552851134 -42.00006050131501 -1.237342452199525 -41.91427999108915 -0.9947370702287008 -42.08584101154083 -1.479947834170179 -42.99317983759693 -1.097356554603839 -43.08328427628433 -1.339352453922576 -79.72928611314946 -2.157234519347361 -79.73167278684007 -1.908813797889579 -78.70671487796462 -2.149875447258591 -79.73405946053063 -1.660393076431803 -78.71353441016863 -1.901486627466261 -78.7203539423727 -1.653097807673761 -41.73791692680021 -5.88069499779534 -42.74886515411107 -5.34408505405756 -42.75169003575678 -5.880695021764109 -41.74074187378255 -5.344085030222385 -79.7372517974014 -1.123783908836878 -79.73405946052941 -1.660393076431876 -80.74537498595225 -1.124051985962499 -80.74783247719395 -1.660662655943031 -42.19423261198359 -5.363326116300573 -43.11450853876723 -4.83821407722753 -43.19612702840328 -5.293595464214383 -42.1126327713564 -4.907943431365076 -74.76646396664414 -0.6372931587564352 -74.76361664660735 -1.095502908406685 -75.77456097294632 -0.6397179790296388 -75.7717324177211 -1.097927773815768 -27.9827388297508 -0.2392944870029101 -28.98142324420328 -1.014201409205758 -27.97333165617057 -1.011019847092645 -28.98455903020297 -0.2424562564609047 -65.70727414077904 0.3002817599965786 -64.70544119292855 0.3005600492334084 -65.70985787807949 -0.471464187207876 -64.70175346284984 -0.4711841558823275 -29.14182670493604 66.20172192964785 -30.01466113993222 -0.02003954268295694 -29.01282809255724 -0.02003951646791791 -29.88567145130205 66.20172191018401 -66.08933129152172 66.52384912836043 -65.34549447842544 66.52170820823316 -66.70909650338177 0.3031652172573711 -65.70727414077916 0.30028175999648 -24.66437211324287 -0.9077804808595813 -26.0900456524628 -0.3844682617348403 -25.88822248196034 -1.080289231828335 -24.96270483136973 -0.2255630867772738 -46.97503758578466 -1.188418077864641 -47.01993159743597 -1.894961176195059 -48.12685835354171 -1.128563413352844 -48.27035759544879 -1.829982465354736 -1.387758994200278 -4.158559587442129 -2.411341429031837 -3.290055316867039 -2.711198672576636 -3.972013088418015 -1.187491080068031 -3.462564122261759 -45.76519509864513 -1.88962408091712 -45.70640731060522 -2.595771161512934 -47.01993159743592 -1.894961176195092 -47.06324646157879 -2.601542556409509 -0.9856678298881985 -2.766743161143373 -1.93461582909736 -2.176140805398166 -2.113008632785167 -2.607837936051887 -0.8485803814971877 -2.329223801076809 -45.84845867768638 -0.7379403265503739 -45.8224046107889 -1.183426658504299 -46.96190225862601 -0.7426764241166337 -46.97819596482864 -1.188342884806802 -0.18146681018621 -4.950815456459948 -1.456452826651979 -4.151350659704363 -1.634553088133513 -4.849682315974552 -0.1079657431792302 -4.245203816069123 -40.67663626323728 -3.159870553587597 -40.62134017706861 -3.866127166254131 -42.03350325043954 -3.161863604758481 -42.08345636955428 -3.868274814046413 0.1020710681965893 -2.389876568028362 -0.9104055122194001 -1.881280502531922 -1.00451867458547 -2.31285918949076 0.1630579179126555 -1.955992327654197 -40.81577678765073 -2.537718093669864 -40.79753711726982 -2.973115394620751 -41.89591130293106 -2.539234085213726 -41.91100381011005 -2.974678168577996 1.231976384364233 -4.949126811258736 -0.2843341426836625 -5.65541667126331 1.286166558290246 -5.655416714115089 -0.2301438695135758 -4.949126771364174 -40.62445673122517 -3.86622729767478 -39.16973809966679 -3.774660285011748 -40.56447879439245 -4.572335507969647 -39.00192836495755 -4.473981041439303 1.028247242005473 -1.513322087075824 -0.03915215910363745 -1.94897733644529 1.040985095520015 -1.948977365917257 -0.02641424437285611 -1.513322058298982 -37.87525169276022 -2.085442844138056 -36.82059253208857 -2.086823127132829 -37.88945766117498 -2.521080491295729 -36.80932278843639 -2.522494115575977 2.816033394801514 -5.54786012896068 1.32561600529518 -6.362224954022833 2.997221667679467 -6.245883207045751 1.255236302799344 -5.656489732488878 -35.46002682756132 -6.974715190238403 -33.88956197556863 -6.981328050727356 -35.52343143227887 -7.680707122155924 -33.84147164864107 -7.687789461746734 1.733199283543426 -1.006475590730486 0.7738426693305751 -1.52214777495047 1.821987748135434 -1.449198135990916 0.7037174517108369 -1.078126290110019 -36.8284787443469 -1.640683325500815 -35.792898116863 -1.625107184551777 -36.82059253208838 -2.086823127132724 -35.76623809392341 -2.070964609791563 4.927565275796411 -6.697244019653352 2.981123841356037 -6.247572558192617 3.17523212460179 -6.944245440866508 4.621680365399699 -6.01632669450335 -32.16694449610684 -7.589103715544385 -32.00321116682753 -8.288799646334205 -33.84147164864115 -7.687789461746733 -33.79182947955035 -8.394209183943111 2.432313181941759 -0.8967225949222826 1.26322982954667 -0.5831163588124264 1.421953398170379 -1.039138608885168 2.260673102514971 -0.442521001226015 -32.88217751344779 -2.249375930135908 -32.88286562274972 -2.716002359000334 -33.90476820297521 -2.24315467601707 -33.91869847255468 -2.70970054200816 -3.747752295636134 -15.10112265963885 -5.39127101854924 -14.46039402153322 -5.564943298602236 -14.84497910547207 -3.638937882760925 -14.70739548519465 -30.83080740018045 -9.935959612243144 -30.73360462184549 -10.3308648291347 -32.61837242204371 -10.04809365827194 -32.5873315237713 -10.44714921331261 -1.726935190936292 -8.346266449456309 -2.544169575885225 -7.721679269341752 -2.72437845513523 -8.205671067708156 -1.641154679770511 -8.103661067614778 -1.555374168604774 -7.861055685773168 -33.20737710839896 -2.234649695151111 -33.21021845178257 -2.483068558566727 -34.22106861502765 -2.226633887628265 -33.21305979516627 -2.731487421982273 -34.23561689627908 -2.723401509404574 -2.238874083213899 -19.06648985482376 -3.882401380323074 -18.34218439129202 -4.771632182819888 -18.89021287009781 -3.809801429169887 -18.34723726250089 -2.984790657079047 -18.40465704186839 -2.912190705925927 -18.40970991307726 -2.763202708731173 -17.57835185331305 -3.747752295636637 -15.10112265963928 -3.733413383128302 -17.5108263315278 -1.896169165648019 -15.22999066767155 -47.56353870672795 -19.43732791991602 -47.77845056652311 -17.91963675189649 -46.43702993625534 -15.65956458073514 -48.72686358898984 -17.77540898407938 -48.24701368411721 -15.38431539124136 -49.04508706507465 -18.58808898340322 -50.03939351621767 -19.0608178930048 -48.09667404260792 -18.73231675122032 -48.16764289599314 -18.7215243231686 -48.97411821168937 -18.59888141145496 -1.006815471855335 -7.883013568973059 -1.915945445349794 -7.279793072094533 -2.014324804744534 -7.812892104427143 -0.9140510326252276 -7.349523744801185 -35.06085784617435 -1.751006045490913 -35.07060985463783 -2.287584485724548 -36.06887358996554 -1.741829956285199 -36.08427482438956 -2.278356970931785 -0.4605602934046518 -7.330282668057515 -1.468674194869607 -6.872069485830131 -1.468683573733144 -7.33028267114397 -0.4605696794925804 -6.872069482743667 -43.78239965479156 -1.223257735924626 -43.80179122955465 -1.681311537963488 -44.79015317518314 -1.2066809704604 -44.80956350836424 -1.664734463937736 -33.328971733419 -1.180198637640749 -34.30865028073654 -0.3959261007462054 -34.3368694222068 -1.167473337015319 -33.30702277327235 -0.408572236647661 -49.11776940035087 -0.09309843889452729 -49.13817020195145 -0.8647413391078276 -50.11942149727695 -0.08123276904343335 -50.146092634131 -0.8528013902448786 -32.01831247209376 -0.01549230012020253 -32.11717499952311 66.20847441706187 -33.0201189466386 -0.01094505814536007 -31.37334998305163 66.20509816384065 -47.04364504396364 66.11663518041526 -48.1160337238954 -0.101802784418636 -47.78744225020245 66.12187599435865 -49.1178027427611 -0.09474429455309874 -45.92384934177552 -7.978659866221625 -45.13053835136327 -12.02389364039525 -44.10665834674785 -8.234803442260448 -47.6162518668107 -11.67351795033456 -76.51453573534897 -16.59862287238787 -76.91028314901692 -12.76410672899603 -73.98430944101712 -16.40874972283647 -75.06055090559129 -12.62529918926216 -44.0025546755678 -7.840582487422427 -42.25507495958306 -8.363672052639064 -42.21705691120273 -7.964851029016454 -44.106658090071 -8.234804047392613 -79.65906848169354 -9.652146691753 -79.63574278565849 -9.252887083331741 -77.79619747601669 -9.634159713642907 -77.83936002478292 -9.235542083437146 -42.16452676707841 -7.258490981701739 -40.42522848794707 -7.964685544088724 -40.48252858936619 -7.258490974021493 -42.2218268518912 -7.964685552292258 -77.79350983211597 -7.904818330445746 -77.75654915703133 -7.198096782890336 -75.99720062207631 -7.884731707932834 -76.07482168887232 -7.179291432100117 -39.00841050834858 -6.444691547897278 -40.49882783106498 -7.259056420431501 -38.82722217822253 -7.142714620211116 -40.56920759144144 -6.553321201139401 -74.47664726367052 -5.252369413363844 -72.90642179307854 -5.234047003747525 -74.51117041547079 -5.959138835198692 -72.82946700808265 -5.939515628684527 -37.81003787101678 -5.550542570374278 -39.03895854760901 -6.447897346011578 -37.50715240456287 -6.231980421784765 -39.23613388318218 -5.751559041026814 -66.13330253370812 -2.888487943879101 -64.67569533211967 -2.960024117142253 -66.27630435944477 -3.589946447525746 -64.71065124317867 -3.666785277955017 -26.89819458030298 -1.860515964456646 -28.30769011661726 -2.56685181322925 -26.84556986273955 -2.566851838356643 -28.2550653365414 -1.860515941137984 -64.63569824786842 -2.414695624081111 -63.27901946843789 -2.40047192273314 -64.66925011793802 -3.121483211878418 -63.20733673208941 -3.106156209118262 -25.61926081424835 -1.769075781232108 -27.04281939490237 -1.157381449355768 -26.96774790846823 -1.862928877628091 -25.79580645747963 -1.070590833468699 -57.48509955263062 -1.282476317595897 -57.41772190266125 -1.988325318889545 -58.7397350481773 -1.293742071824456 -58.77445183137512 -2.00050781012747 -25.97079083524601 -0.3719533247401317 -27.17778450739306 -0.007601620246878937 -27.11946768718895 -0.4518998661459039 -26.07119475579179 0.06941570907957395 -57.54306162676866 -1.381620147131886 -57.51202604929044 -1.826982498643485 -58.65642519862037 -1.391192157395182 -58.6677343512442 -1.836918562663535 -27.03656122960573 0.4332976050560671 -28.13336463454432 -0.002124172528285229 -27.01989511782671 -0.002124191663976927 -28.11669848422937 0.4332976236189015 -64.50652339943827 -1.581265224143488 -63.42652491227783 -1.570475664730493 -64.51198795209801 -2.016797560077957 -63.39866148510814 -2.005675042588875 -39.22504093604172 -2.227399735006371 -40.11191704145714 -2.799070298598553 -39.0583925948018 -2.650569942236726 -40.25371729554057 -2.3723976099504 -69.83572253942232 -1.843365805188459 -68.78121774869608 -1.832036500751429 -69.8364083266969 -2.279093188409989 -68.75643155277115 -2.267490220112181 -40.09124499206786 -1.903307044156326 -41.05060156398829 -2.4189792589335 -40.00245649116616 -2.346029586588816 -41.12072681802426 -1.974957776326504 -74.27849127440689 -2.20607496992734 -73.24276448582687 -2.194892790284881 -74.2754790580146 -2.652237890905782 -73.22097580903154 -2.640852992017623 -40.81220803739568 -1.497416685470606 -41.84146884467244 -1.964025070952084 -40.80558663626899 -1.964025066222057 -41.83484745451793 -1.497416690140231 -78.39140475704956 -2.206175289783694 -77.36961272800996 -2.180236672755069 -78.36754606040056 -2.672564973210531 -77.33252221343297 -2.646290460962522 -41.40776302164015 -1.263734689078028 -42.46612560830645 -1.44003969068207 -41.44980474902715 -1.510774425552684 -41.36572129425313 -1.016694952603436 -42.41967811786023 -1.193306590127657 -42.373230627414 -0.9465734895730744 -79.41465364168423 -1.718463272132851 -78.40098682934402 -1.709314704949793 -79.41109750582341 -1.966878561041694 -79.40754136996263 -2.215293849950368 -78.39299800422749 -1.957689987857503 -78.38500917911095 -2.206065270765276 -41.7270725191332 -0.4709599118773351 -42.90307539890958 -0.8553606552851658 -41.91427999108925 -0.9947370702287497 -42.7103573008058 -0.3323602514680761 -79.74117780542665 -1.123798557403775 -78.7331217392082 -1.11654394569013 -79.7340594605305 -1.660393076431775 -78.72035394237257 -1.653097807673734 -41.74074187378265 -5.34408503022236 -42.74885579953077 -4.885871868743409 -42.74886515411116 -5.344085054057534 -41.7407512841537 -4.885871844908681 -73.75839959217805 -0.6316868575413599 -73.75182876164023 -1.089881745451438 -74.76646396664472 -0.6372931587564068 -74.75991190031115 -1.0954881510227 -110.3296117475909 63.29947770964102 -109.0912300060449 63.92576261414807 -110.3296117629575 63.92771675545733 -109.0912299907739 63.30143187447795 -74.7743794712375 0.1344387031036307 -74.7664639666441 -0.6372931587565001 -75.776205056252 0.1320289677571802 -75.77456097294626 -0.6397179790297063 -28.39798415089037 66.20284738218393 -29.01282809255711 -0.02003951646803692 -28.01099799786683 -0.01852372227713062 -29.14182670493589 66.20172192964675 -65.34549447842547 66.52170820823321 -64.6016515169156 66.52069271548602 -65.70727414077921 0.3002817599964844 -64.70544349730338 0.2989140630435996 -24.36451494778813 -1.589738265745538 -25.88822248196041 -1.080289231828389 -25.68795464752582 -1.77628470591505 -24.66437211324292 -0.9077804808596357 -47.01993159743593 -1.894961176195085 -47.0632464615788 -2.601542556409531 -48.27035759544875 -1.82998246535476 -48.41542435003142 -2.531276282229458 -24.96270483136967 -0.2255630867772611 -26.22713305075396 0.05305110442828198 -26.09004565246274 -0.3844682617348394 -25.14109758562453 0.2061340518097499 -56.43255809615057 -1.331006377934662 -56.35928656496375 -1.774443728080634 -57.54306162676874 -1.381620147131865 -57.51202604929051 -1.826982498643475 -1.586477548700091 -4.854727500925794 -2.711198672576618 -3.972013088417993 -3.012573549106164 -4.653710997873343 -1.387758994200266 -4.158559587442108 -45.70885933075427 -2.445089862437848 -45.64843999170188 -3.151183457922922 -47.06569799068232 -2.450905918582012 -47.11052565962869 -3.15745065282483 -0.8485803814970971 -2.329223801076868 -1.764218655672442 -1.753738398097304 -1.934615829097258 -2.176140805398219 -0.7106942177042752 -1.902238778394565 -41.89591130293111 -2.539234085213823 -41.9110038101101 -2.974678168578083 -42.97493337847308 -2.508654329081526 -43.02332373411841 -2.943154743072551 -0.2534038873437785 -5.656489691324955 -1.63455308813356 -4.849682315974526 -1.814200964081887 -5.547860002622674 -0.1814668101862651 -4.950815456459923 -40.62134017706863 -3.866127166254151 -40.56447879439245 -4.572335507969601 -42.08345636955431 -3.868274814046437 -42.13497513292155 -4.574642351304999 0.1630579179125844 -1.955992327654353 -0.8201547414925399 -1.449198063899049 -0.9104055122194721 -1.881280502532071 0.2279903270619288 -1.522147760056765 -40.83008906485641 -2.102081797887562 -40.81577678765073 -2.537718093669897 -41.88474787650058 -2.103562033744825 -41.89591130293108 -2.539234085213761 1.28616655829011 -5.655416714115175 -0.3400829306719224 -6.361659462237943 1.341915247040466 -6.361659508132007 -0.2843341426838135 -5.655416671263394 -40.56447879439247 -4.572335507969663 -39.00192836495755 -4.473981041439318 -40.50605907939843 -5.278494451696168 -38.83257560163659 -5.173157323625305 1.018857634361592 -1.067193590042514 -0.02641424437314566 -1.513322058298941 1.028247242005183 -1.513322087075784 -0.01702457404213664 -1.067193561778005 -37.86435866845557 -1.639327619793052 -36.82847874434705 -1.640683325500887 -37.8752516927602 -2.085442844138009 -36.82059253208855 -2.086823127132782 2.997221667679685 -6.245883207045691 1.394445349842469 -7.068019556640184 3.179943121477482 -6.943751055611386 1.325616005295399 -6.362224954022774 -35.52343143227886 -7.680707122155927 -33.84147164864105 -7.687789461746737 -35.58838683350269 -8.386644300764109 -33.79182947955026 -8.394209183943122 1.643514428648286 -0.5432082239643705 0.7037174517106983 -1.078126290110131 1.7331992835433 -1.006475590730596 0.627193565230824 -0.61394293574459 -36.83992533024342 -1.174111227215551 -35.81758363860885 -1.158734212752233 -36.82847874434701 -1.640683325500766 -35.79289811686312 -1.625107184551732 5.101237531861699 -7.081829107799228 3.175232124601879 -6.944245440866576 3.284046512918341 -7.337972617946707 4.927565275796534 -6.697244019653414 -32.61359987067407 -10.04796058885035 -32.5873315237714 -10.44714921331259 -34.41009152781417 -10.03575807049371 -34.45031545621373 -10.43449505177312 2.260673102515023 -0.4425210012259306 1.177449333513197 -0.3405109748925872 1.263229829546722 -0.5831163588123367 1.091668837479649 -0.09790559097321783 2.080464253453784 0.04147080150585225 -32.87882766171926 -1.752529967909766 -32.88217751344764 -2.249375930135936 -33.89255246555052 -1.746362652212844 -33.89866033426271 -1.994758664114787 -33.90476820297507 -2.243154676017098 -4.771632182819186 -18.89021287009745 -5.56494329860214 -14.84497910547216 -7.2573457091259 -18.53983720995522 -3.747752295636031 -15.10112265963894 -30.73360462184563 -10.33086482913468 -29.77605211635827 -14.12668419308045 -32.58733152377138 -10.44714921331259 -32.31174265558855 -14.28574819140386 -1.555374168604615 -7.861055685773257 -2.351451475755047 -7.198678865814667 -2.544169575885049 -7.721679269341838 -1.368166694619593 -7.337278527703331 -33.19927666769945 -1.698060584893403 -33.20737710839886 -2.234649695151075 -34.2073188004756 -1.690089450028077 -34.22106861502755 -2.226633887628227 -0.9140510326251219 -7.349523744801417 -1.834326931580392 -6.824411686787615 -1.915945445349695 -7.279793072094762 -0.8324511678648117 -6.89414106154528 -35.05012800527214 -1.292841652389125 -35.06085784617435 -1.751006045490883 -36.05812498611346 -1.283665733984712 -36.06887358996555 -1.74182995628517 47.99165803159203 7.594111350513283 46.49927122202932 7.944614381741117 47.12117774208518 7.277240556588558 47.3643362106435 8.259513906799667 -34.02187617344467 -0.003236211349964435 -34.03050838632647 -0.7749650890392417 -35.02366398765009 0.002696533176203886 -35.03856738537468 -0.7689952055731713 -33.02011894663856 -0.01094505814511315 -32.86098467054086 66.212976063556 -34.02190475345282 -0.004882101800474104 -32.11717499952306 66.20847441706336 -47.22717027612925 66.11822987956678 -49.1177694003509 -0.09309843889452019 -47.97088066972941 66.12703994647711 -50.11942149727697 -0.0812327690434298 -44.10665809007105 -8.234804047392785 -42.59777986228599 -12.20017124030709 -42.25507495958316 -8.363672052639226 -45.13053796257515 -12.02389425939175 -80.58489481529797 -11.99589416170761 -79.67026144595789 -8.195966440805112 -78.047469623772 -12.14382562742019 -77.81526641940241 -8.304112341651432 -42.22182685189107 -7.964685552292191 -40.39198037087336 -8.363672044132002 -40.42522848794693 -7.964685544088657 -42.25507495958268 -8.363672052639181 -77.81526641940233 -8.304112341651438 -77.79350983211589 -7.904818330445773 -75.95247168684642 -8.283282267183864 -75.99720062207618 -7.884731707932859 -38.82722217822219 -7.142714620211081 -40.42999842863166 -7.964851020856619 -38.64450066718875 -7.840582462956883 -40.49882783106474 -7.259056420431474 -74.51117041547086 -5.959138835198678 -72.82946700808276 -5.939515628684514 -74.54724609875548 -6.665878142359085 -72.75096258882816 -6.644917940864296 -37.5071524045631 -6.231980421784829 -38.84332000440786 -7.144403971871029 -37.20276349932976 -6.913158055927405 -39.03895854760928 -6.447897346011644 -70.04101783915652 -4.290855589456212 -68.47078409981052 -4.272810485253352 -70.07586238093217 -4.997618886060475 -68.39415011775087 -4.978292672218581 -26.84556986273935 -2.566851838356517 -28.36188037141949 -3.273141713675642 -26.79137967044554 -3.273141740665656 -28.30769011661707 -2.566851813229126 -64.67569533211972 -2.960024117142211 -63.21378548427691 -2.944566612680106 -64.71065124317872 -3.666785277954937 -63.14037654469973 -3.650181977693826 -25.44116063273197 -2.467407445422399 -26.96774790846833 -1.86292887762809 -26.8942469222599 -2.568540521287563 -25.61926081424844 -1.769075781232104 -57.41772190266124 -1.988325318889576 -57.34877321825792 -2.694115397769786 -58.77445183137512 -2.000507810127503 -58.81074172092784 -2.707242858215041 -26.07119475579173 0.06941570907955352 -27.23877130742544 0.4262826228394219 -27.177784507393 -0.007601620246900254 -26.16530786873813 0.5009944002236089 -57.56936437927773 -0.946383051831345 -57.54306162676873 -1.381620147131952 -58.64939886054748 -0.9556685192211218 -58.65642519862042 -1.391192157395246 -27.04929909445052 0.8689528837688809 -28.11669848422969 0.4332976236188837 -27.03656122960604 0.4332976050560493 -28.10396058082862 0.8689529018939219 -64.50499259439974 -1.14553867565176 -63.4504666025603 -1.135003595300502 -64.50652339943827 -1.581265224143449 -63.42652491227783 -1.570475664730454 -39.39213110267045 -1.793554026081353 -40.25371729554027 -2.372397609950407 -39.22504093604145 -2.227399735006379 -40.40249087476158 -1.93597007222581 -69.83867418854035 -1.397202726999672 -68.80294588566943 -1.386075151894831 -69.83572253942229 -1.843365805188387 -68.78121774869604 -1.832036500751361 -40.18092988495743 -1.440039680247208 -41.12072681802393 -1.974957776327018 -40.09124499206764 -1.903307044156848 -41.19725074257351 -1.510774424399067 -74.28484057118725 -1.739465120404033 -73.26235458699047 -1.728425894535539 -74.27849127440676 -2.206074969927376 -73.24276448582674 -2.194892790284916 -40.81442461735897 -1.248995351981343 -41.83484745451901 -1.497416690139978 -40.81220803739669 -1.497416685470343 -40.81664119732111 -1.000574018492397 -41.83041430627775 -1.000574023121592 -41.8326308803984 -1.248995356630753 -78.4054146335061 -1.95790358315399 -78.4194245099628 -1.709631876524352 -78.39140475704936 -2.206175289783692 -77.40649144221396 -1.683918147924695 -77.38805208511194 -1.932077410339854 -77.36961272800977 -2.180236672755066 -41.27295685709018 -0.483205128291849 -42.37323062741439 -0.9465734895731144 -41.36572129425351 -1.016694952603474 -42.2748512700847 -0.4134744570925761 -79.42429804353867 -1.181884076571419 -78.41628046742818 -1.172786494994552 -79.41465364168428 -1.718463272132801 -78.40098682934411 -1.709314704949743 -41.56487176367416 -0.0240350554824591 -42.71035730080408 -0.3323602514676312 -41.72707251913135 -0.4709599118768955 -42.5481382427326 0.1145620250678343 -79.74965884762359 -0.6656158547957434 -78.74162154510587 -0.6583613781176698 -79.74117780542667 -1.123798557403797 -78.73312173920824 -1.116543945690155 -110.324506477211 62.67124671991105 -109.0912299907749 63.30143187447862 -110.3296117475927 63.2994777096417 -109.0861564805326 62.67710914077701 -73.77258631505487 0.140010127241827 -73.7583995921778 -0.6316868575413874 -74.77437947123786 0.1344387031036929 -74.76646396664448 -0.6372931587564326 -27.0091767610082 -0.0154921690453449 -28.39798415089074 66.20284738218514 -28.01099799786721 -0.01852372227712884 -27.65414817364111 66.20509826116152 -75.31351631200867 66.35539661308843 -74.77437947123764 0.1344387031037408 -76.05735551769305 66.35360742378022 -75.77620505625214 0.1320289677572886 -24.06314014931902 -2.27143618860346 -25.68795464752589 -1.776284705915187 -25.48923617274335 -2.472452628235878 -24.36451494778819 -1.589738265745675 -51.42397953356021 -1.942403116978563 -51.35884660226484 -2.648333942936201 -52.78076761960465 -1.951737195869584 -52.82087777340238 -2.658392045916804 -25.14109758562488 0.2061340518096939 -26.36501916565351 0.4800361332423901 -26.22713305075433 0.05305110442822825 -25.3114947106808 0.6285364666883777 -56.50014363086692 -0.8975020032837646 -56.43255809615051 -1.331006377934715 -57.57740368765556 -0.9466006242035294 -57.54306162676867 -1.381620147131918 -1.783652925009087 -5.5510658014308 -3.012573549106152 -4.653710997873239 -3.315459055424349 -5.335148842402309 -1.586477548700079 -4.854727500925691 -45.64843999170184 -3.151183457922939 -45.58645572234088 -3.85722437266662 -47.11052565962864 -3.157450652824847 -47.15691927366201 -3.863956126748061 -0.7106942177043267 -1.902238778394521 -1.597570289677166 -1.330568194653161 -1.764218655672507 -1.75373839809727 -0.5688939386605902 -1.475566092968018 -41.87687758411128 -2.103667973409582 -41.89591130293116 -2.539234085213818 -42.93045019366129 -2.07380946152371 -42.97493337847314 -2.508654329081517 -0.3237836890062331 -6.362224909018186 -1.814200964082077 -5.54786000262266 -1.995389335042813 -6.245883070820091 -0.2534038873439544 -5.656489691324942 -40.56447879439239 -4.572335507969608 -40.50605907939835 -5.278494451696122 -42.13497513292151 -4.574642351305006 -42.18805258495483 -5.280965069050196 0.2279903270619501 -1.5221477600566 -0.7313662146914677 -1.006475523483625 -0.8201547414925221 -1.449198063898892 0.2981156070730515 -1.078126279042857 -40.84109095484079 -1.655967611062513 -40.83008906485635 -2.102081797887585 -41.87697053613658 -1.657421489874417 -41.88474787650053 -2.103562033744849 1.341915247040076 -6.361659508131942 -0.3973830734034038 -7.067854031003189 1.399215290540344 -7.067854080024203 -0.3400829306722875 -6.361659462237879 -37.19207972353142 -7.565202402949534 -35.52034470464385 -7.680820054750056 -37.37402277513347 -8.26314922994877 -35.58838683350258 -8.386644300764127 1.01223627150362 -0.6005852090799388 -0.01702457404206648 -1.067193561778017 1.018857634361668 -1.067193590042529 -0.01040314561851741 -0.6005851811767746 -37.85862553690657 -1.66376178093721 -36.83598827146118 -1.665069106976413 -37.86678286193175 -2.130360715267938 -36.83090283306816 -2.131684970681853 3.179943121477158 -6.943751055611465 1.43246337489156 -7.466840581126625 3.284046512918008 -7.337972617946806 1.394445349842155 -7.068019556640259 -35.58838683350277 -8.386644300764107 -33.79182947955032 -8.394209183943122 -35.62596002939462 -8.785481696671679 -33.7629079685513 -8.793326573522244 1.597066952636329 -0.2964751223544271 0.6271935652312362 -0.6139429357445065 1.643514428648709 -0.5432082239642861 0.5851518522961889 -0.3669031983147386 1.550619476623821 -0.04974202074494816 0.5431101393608158 -0.1198634608852398 -36.8547301259217 -0.6773465486558505 -35.84125216116599 -0.6621028532748392 -36.84732772808233 -0.9257288879355645 -35.82941789988729 -0.9104185330133365 -36.83992533024332 -1.174111227215528 -35.81758363860877 -1.158734212752208 6.793639711921902 -10.7766872532786 3.284046512918631 -7.337972617946453 4.307926163760875 -11.12706285320727 5.101237531861965 -7.081829107798968 -32.58733152377138 -10.44714921331259 -32.31174265558856 -14.28574819140386 -34.45031545621376 -10.43449505177312 -34.86009577455297 -14.26843871735779 2.080464253453501 0.04147080150581761 0.9044613961644954 0.4258715716315917 1.091668837479362 -0.09790559097324803 1.88774618594501 0.5644712097013356 -32.87245056196667 -1.135421507783613 -32.87800873664607 -1.672023183821536 -33.88052606632883 -1.129305179617594 -33.89173380188549 -1.66587257789749 -1.368166694619475 -7.337278527703179 -2.189232415952058 -6.751756589523178 -2.351451475754936 -7.198678865814509 -1.205965937430574 -6.890353671552683 -33.18000018922849 -0.6784053861755375 -33.18926078504232 -1.136582227232953 -34.1880245822417 -0.6704848352674775 -34.19730394151568 -1.128661528890875 47.12117774208561 7.277240556588905 45.63165836028634 7.632449003667184 46.24813362978104 6.963121025390001 46.49927122202978 7.944614381741474 -35.02366398765007 0.002696533176306915 -35.03856738537467 -0.7689952055730762 -36.02539074450137 0.01179080211465333 -36.04656494485013 -0.7598440065734735 -34.02190475345305 -0.004882101800859573 -33.60477461182307 66.21860307678425 -35.02366398765066 0.002696533176324678 -32.86098467054113 66.21297606355466 -32.8609846705406 66.21297606355492 -34.0219047534525 -0.004882101800818717 -33.60477461182256 66.21860307678449 -35.02366398765013 0.002696533176365534 -42.25507495958274 -8.363672052639217 -40.04927537795597 -12.2001712286701 -40.39198037087351 -8.363672044132038 -42.59777986228556 -12.20017124030697 -78.04746962377203 -12.1438256274202 -77.81526641940243 -8.30411234165144 -75.49937530903668 -12.11533242127209 -75.95247168684657 -8.283282267183868 -38.64450066718882 -7.840582462956855 -40.39198037087324 -8.36367204413197 -38.54039724341575 -8.234804021976251 -40.42999842863166 -7.964851020856583 -74.54724609875541 -6.665878142359146 -72.75096258882809 -6.644917940864355 -74.56850266999599 -7.065182612693945 -72.70573458877261 -7.043446626083411 -37.20276349932929 -6.913158055927269 -38.64921166402406 -7.841076848362198 -36.89687853308717 -7.594075371334347 -38.84332000440742 -7.144403971870897 -70.07586238093214 -4.997618886060474 -68.39415011775087 -4.978292672218579 -70.11225944043575 -5.704351793811577 -68.31596647134043 -5.68370882009749 -26.79137967044566 -3.273141740665702 -28.41762914104098 -3.979384505213234 -26.73563096332851 -3.979384534119381 -28.36188037141963 -3.273141713675687 -64.71065124317866 -3.666785277954941 -63.14037654469967 -3.650181977693833 -64.7471667271717 -4.373515813250483 -63.06541059696961 -4.355733764018726 -25.26151283673112 -3.165585140059851 -26.89424692226005 -2.568540521287682 -26.82230992590835 -3.274214759351944 -25.44116063273208 -2.467407445422514 -57.34877321825788 -2.694115397769811 -57.27826028439731 -3.399845454388226 -58.81074172092782 -2.707242858215068 -58.84859798552399 -3.413945994871606 -26.16530786873831 0.5009944002235018 -27.303703666896 0.8601271933245629 -27.23877130742562 0.4262826228393108 -26.25555858998804 0.9330768428701801 -57.59174442683248 -0.5108787272656912 -57.56936437927767 -0.9463830518312753 -58.64630556383595 -0.5199451906221633 -58.64939886054744 -0.9556685192210486 -27.05868871369592 1.315081380707264 -28.10396058082855 0.8689529018937638 -27.04929909445043 0.868952883768729 -28.09457092209951 1.315081398509461 -64.48371224418716 -1.486234165411435 -63.447960068322 -1.476005901139891 -64.48175809967684 -1.932399373397324 -63.4272290031681 -1.92198568319966 -39.56377121934879 -1.339352437852329 -40.40249087476184 -1.935970072225891 -39.39213110267074 -1.793554026081435 -40.56121448078613 -1.479947827208803 -69.81554830544363 -1.900601720316955 -68.79305806126615 -1.889716810873774 -69.80938033859476 -2.367212514408425 -68.77364923486876 -2.35618664953019 -40.22737738120615 -1.193306580116937 -41.19725074257389 -1.510774424399179 -40.18092988495782 -1.44003968024732 -40.27382487745428 -0.9465734799867134 -41.28133420896615 -1.016694952217796 -41.23929247577009 -1.263734688308463 -74.28952936752725 -1.491057131508215 -74.29421816386713 -1.242649142612477 -74.28484057118726 -1.739465120404007 -73.28059715756923 -1.231705627095781 -73.27147587227995 -1.480065760815564 -73.2623545869905 -1.728425894535516 -40.81946611794426 -0.4639640508656013 -41.83041430627768 -1.000574023121693 -40.81664119732102 -1.000574018492495 -41.82758939827287 -0.4639640554688747 -77.56806411046877 -1.078707757875632 -76.56007618045673 -1.068413234477641 -77.55677911357194 -1.615274527244725 -76.54314211347608 -1.604922310215142 -41.19135699409377 -0.02782244491244335 -42.27485127008439 -0.4134744570920717 -41.27295685708985 -0.4832051282913437 -42.1932327580795 0.04190692833778265 -79.43443136616432 -0.7015542747727217 -78.42643174481289 -0.6924917079574637 -79.42383418861992 -1.159719867009097 -78.41581580426963 -1.150657131502372 -109.0760096054391 62.05281042468141 -110.3245064772133 62.67124671991282 -110.3142960827486 62.04303989813664 -109.0861564805354 62.67710914077879 -80.45094919360187 0.06429410834462512 -79.4491600461441 0.07013876673438535 -80.44249170681093 -0.7074355206838101 -79.4344313661644 -0.7015542747726986 -26.00737028707579 -0.01094487464139071 -27.65414817364052 66.20509826116201 -27.0091767610076 -0.01549216904517081 -26.91032315762398 66.2084745533101 -74.56968626890802 66.35831122181361 -73.77256622667386 0.1383641880335356 -75.31351631200866 66.35539661308842 -74.77437947123761 0.1344387031037444 -23.76025472103171 -2.952874046602011 -25.4892361727434 -2.472452628235692 -25.29206087617112 -3.16879093750944 -24.06314014931906 -2.271436188603272 -51.35884660226479 -2.648333942936154 -51.29214910592017 -3.354208030985811 -52.82087777340234 -2.658392045916755 -52.862554120848 -3.365011696238164 -25.31149471068055 0.6285364666882933 -26.50681939583924 0.9067088249749173 -26.36501916565325 0.4800361332423018 -25.47814302821929 1.051706677543416 -51.57380067062131 -1.369278792276353 -51.55381933297831 -1.804828421364168 -52.62840553034777 -1.376089551349421 -52.63389859311099 -1.811803697035308 -1.979291508956398 -6.247572422845591 -3.315459055424272 -5.335148842402429 -3.61984800050653 -6.016326469629637 -1.783652925009009 -5.551065801430923 -45.58645572234086 -3.857224372666651 -45.52291349496625 -4.563211499264548 -47.15691927366201 -3.863956126748092 -47.20487188559126 -4.570421173281763 -0.5688939386605147 -1.475566092967904 -1.430480097668056 -0.8967224895240662 -1.597570289677097 -1.330568194653043 -0.420120333908069 -1.039138558623242 -41.85373559907651 -1.657734248450609 -41.87687758411131 -2.103667973409602 -42.88854831916768 -1.628407396535144 -42.93045019366132 -2.073809461523728 -0.3926131327277771 -7.068019507879461 -1.995389335042625 -6.24588307082007 -2.178110886901029 -6.943750909414518 -0.3237836890060439 -6.362224909018165 -40.50605907939835 -5.278494451696115 -40.44608819635128 -5.984602894668991 -42.1880525849548 -5.280965069050189 -42.24268156980972 -5.987241843483036 0.2981156070733597 -1.078126279042968 -0.6416812947002466 -0.5432081616115276 -0.7313662146911666 -1.006475523483736 0.3746395587779423 -0.6139429288534073 -40.84939862125831 -1.189369706893776 -40.84109095484077 -1.655967611062446 -41.87203544485826 -1.190804999216358 -41.87697053613658 -1.657421489874345 1.399215290540901 -7.067854080024168 -0.4306312138174464 -7.466840530291189 1.432463374891915 -7.466840581126552 -0.3973830734028505 -7.067854031003154 -37.37402277513365 -8.263149229948789 -35.58838683350274 -8.386644300764145 -37.47768645140623 -8.6574157901309 -35.62596002939461 -8.785481696671777 1.010019711915996 -0.3521638755203425 -0.01040314561832822 -0.6005851811767213 1.012236271503807 -0.6005852090798856 -0.008186551123549712 -0.3521638477382592 1.0078031523278 -0.1037425419610445 -0.005969956628606887 -0.1037425142995359 -37.85255692608406 -1.166925826591119 -36.83878595014932 -1.16822181808261 -37.85559123149547 -1.415343803764293 -36.83738711080513 -1.416645462529387 -37.85862553690669 -1.663761780937207 -36.83598827146131 -1.665069106976409 3.284046512918875 -7.337972617946936 1.775168053160115 -11.30333977658058 4.307926163761009 -11.12706285320778 1.432463374892431 -7.466840581126746 -36.29953486711747 -10.29305871647089 -34.45031545621379 -10.43449505177313 -37.38962057150005 -14.07496967024158 -34.86009577455302 -14.2684387173578 1.452240150480146 0.4833570139708794 0.5431101393603051 -0.1198634608851812 1.550619476623307 -0.04974202074489043 0.4503457334062802 0.4136263655339088 -36.8726823958762 -0.1408503295320154 -35.86485261488922 -0.1256915883344263 -36.8547301259216 -0.6773465486558079 -35.84125216116589 -0.6621028532747983 1.887746185945463 0.5644712097013995 0.7422606668528564 0.8727964317112127 0.904461396164959 0.4258715716316575 1.725527154019213 1.011393489922324 -32.86530170841027 -0.6772299807252074 -32.87245056196677 -1.135421507783659 -33.87335844871019 -0.6711137664069193 -33.88052606632894 -1.129305179617641 46.24813362978088 6.963121025389849 44.76151987656669 7.323025778497676 45.37254808512436 6.651760812954179 45.63165836028622 7.632449003666997 -32.10466355926625 0.2119347561485245 -32.09657162932246 -0.5597963951114684 -33.10648858322465 0.2094360749940627 -33.10466807105618 -0.5623107179929185 -35.02366398765015 0.002696533176370863 -34.34854043920298 66.22535542358435 -36.02539074450144 0.01179080211471906 -33.60477461182256 66.21860307678453 -33.60477461182255 66.21860307678453 -35.02366398765013 0.002696533176370863 -34.34854043920296 66.22535542358435 -36.02539074450143 0.01179080211471906 -38.5403972434155 -8.234804021976188 -40.04927537795545 -12.20017122866998 -37.51651728181164 -12.02389422462475 -40.39198037087297 -8.363672044131906 -68.50088540222849 -4.765537097479577 -66.67683667146844 -5.001993925459009 -70.09016499968317 -8.478137943405168 -67.59507087072703 -8.801584369640318 -36.89687853308747 -7.594075371334434 -38.5403972434162 -8.234804021976405 -36.72320624548086 -7.9786604539485 -38.64921166402434 -7.841076848362284 -66.58372439684933 -4.606706099322609 -64.79503564960615 -4.711650447358624 -66.67683667146831 -5.001993925458969 -64.82194445250948 -5.110822504436605 -26.73563096332851 -3.979384534119342 -28.47492926540674 -4.685579074557266 -26.67833090146277 -4.685579105432844 -28.41762914104093 -3.979384505213192 -64.74716672717166 -4.373515813250422 -63.0654105969696 -4.355733764018665 -64.78523465536034 -5.080214534208167 -62.98889483043674 -5.061220934226465 -25.08032454570017 -3.863608216314771 -26.82230992590827 -3.274214759351801 -26.7519302050588 -3.979949980174816 -25.26151283673109 -3.16558514005971 -57.27826028439726 -3.399845454388241 -57.20619008655613 -4.105514414087132 -58.84859798552396 -3.413945994871623 -58.88801369226995 -4.120616020462069 -26.255558589988 0.9330768428701846 -27.37382889606283 1.304148677456862 -27.30370366689595 0.860127193324566 -26.34434706609342 1.375799387233939 -57.61100837602458 -0.06487339752865218 -57.59174442683245 -0.5108787272657427 -58.64679202187217 -0.07377842364875509 -58.64630556383591 -0.519945190622213 -27.06531008868843 1.781689761602968 -28.09457092209937 1.31508139850964 -27.05868871369578 1.315081380707438 -28.08794950581071 1.78168977917752 -64.48895497586095 -1.019618977762898 -63.46644392893196 -1.009521472343807 -64.4837122441872 -1.486234165411392 -63.44796006832205 -1.476005901139845 -39.65387566372625 -1.097356539355908 -40.56121448078572 -1.479947827208404 -39.56377121934828 -1.339352437851927 -39.74398010810425 -0.8553606408600425 -40.73277551264727 -0.9947370648336555 -40.6469949967166 -1.237342446020956 -69.82014056755588 -1.652193031060942 -69.82473282966794 -1.403784341805109 -69.81554830544367 -1.900601720316945 -68.81110760032331 -1.392993804786613 -68.80208283079472 -1.641355307830114 -68.79305806126621 -1.889716810873764 -40.37220424731894 -0.4134744484040542 -41.28133420896572 -1.01669495221734 -40.2738248774537 -0.9465734799862471 -41.37409865867407 -0.4832051287529557 -74.30630911433285 -0.706089191399994 -73.29833708898404 -0.6952066648628188 -74.29421816386719 -1.242649142612452 -73.28059715756929 -1.231705627095756 -40.81947550580752 -0.005750865551738649 -41.82758939827281 -0.4639640554687823 -40.81946611794425 -0.4639640508655152 -41.82758002118446 -0.005750870154989762 -77.58010290942588 -0.620555996311051 -76.57213374184609 -0.6102616645326409 -77.56806411046864 -1.078707757875584 -76.56007618045659 -1.068413234477592 -31.08286573647169 0.1273314162534991 -32.11271246697781 -0.6315696411246963 -31.10481477955775 -0.6442949838234835 -32.08449324257683 0.1399775939665942 -79.44916004614402 0.07013876673421127 -78.44743124024352 0.07914495487350948 -79.43443136616433 -0.7015542747728638 -78.42643174481289 -0.6924917079576041 -26.16651348721308 66.21297623872839 -26.00737028707607 -0.01094487464129657 -25.00558448107874 -0.004881865868908264 -26.91032315762427 66.20847455331013 -81.59684876929015 66.2806078000222 -80.85305756140789 66.28616941258106 -80.45092098623773 0.06264821539672028 -79.44916004614385 0.0701387667342015 -23.45586585395007 -3.634051687365766 -25.29206087617106 -3.168790937509516 -25.09642237197983 -3.865297567624437 -23.76025472103165 -2.952874046602088 -51.29214910592015 -3.354208030985822 -51.22389402415377 -4.060024291810767 -52.862554120848 -3.365011696238176 -52.90578972260264 -4.071594961760653 -25.47814302821942 1.051706677543386 -26.65559295061712 1.343136365935621 -26.50681939583941 0.9067088249748831 -25.64523317054952 1.485552390103007 -51.59060809305348 -0.9232348850409959 -51.5738006706213 -1.369278792276307 -52.62643468309824 -0.9299243718959147 -52.62840553034776 -1.376089551349375 -2.173399890094959 -6.944245294926823 -3.619848000506619 -6.016326469629616 -3.925733006582267 -6.697243778087182 -1.979291508956492 -6.24757242284557 -49.56034405659782 -3.770888343142516 -49.37349603930409 -4.468331716565585 -51.23125021518992 -3.891069187483345 -51.15824664760343 -4.59670088555826 -0.4201203339081854 -1.039138558623455 -1.258839954419161 -0.4425209051945185 -1.430480097668171 -0.8967224895242678 -0.2613967012065475 -0.5831163172122427 -50.56065907124768 -1.65999928659988 -50.53803158290148 -2.126412798935217 -51.58306475075628 -1.673624242727545 -51.57367702687844 -2.140214193059614 -0.4306312138175708 -7.466840530291153 -2.178110886901107 -6.94375090941449 -2.282214333736243 -7.337972466068795 -0.3926131327278624 -7.068019507879431 -37.36931122798956 -8.263641574485003 -37.47768645140605 -8.657415790130843 -39.12191944579853 -8.01739924765708 -39.29516271780911 -8.402059470192352 0.374639558777659 -0.6139429288535228 -0.5952337840183759 -0.2964750625365893 -0.6416812947005317 -0.5432081616116333 0.4166813064255255 -0.3669031937181311 -0.5487862733363507 -0.04974196346171578 0.4587230540735678 -0.1198634585824863 -40.85341855031105 -1.266256822428675 -40.85030735717797 -1.514674430250119 -41.86718910626587 -1.267674671566898 -41.86851105605157 -1.516098479536464 -40.84719616404476 -1.763092038071298 -41.86983300583737 -1.764522287506209 1.432463374891592 -7.466840581126677 -0.7733364311706863 -11.30333970704339 1.775168053159263 -11.30333977658049 -0.4306312138177644 -7.466840530291303 -37.47768645140606 -8.657415790130866 -35.62596002939444 -8.785481696671745 -38.49733974116415 -12.44694861036535 -35.96438563413839 -12.62212841019254 1.004978275714719 0.4328674257558465 -0.005969956628675277 -0.1037425142995803 1.007803152327727 -0.1037425419610827 -0.00314500461379108 0.4328674532629826 -37.84796564889769 -0.6303205993274208 -36.83984448970337 -0.631609368167239 -37.85255692608406 -1.16692582659117 -36.83878595014932 -1.168221818082659 1.3706216651151 0.9387384012551649 0.4503457334063148 0.4136263655339967 1.452240150480181 0.4833570139709726 0.3687458970500561 0.8690090507667598 -35.12085761557885 -0.557794753380243 -34.11277201788995 -0.5616434983784453 -35.12537145471732 -1.015999304227233 -34.11726709242926 -1.019848120866383 45.3725480851241 6.651760812953958 43.88887808679733 7.016352641827518 44.49444356373918 6.343167904552718 44.76151987656638 7.323025778497497 -33.10648858322476 0.2094360749941204 -33.1046680710563 -0.5623107179928546 -34.1083210655934 0.2100991438023891 -34.11277201789005 -0.5616434983784862 -36.02539074450149 0.01179080211504235 -35.09227776865853 66.23323306415358 -37.02707911946852 0.02240065140981074 -34.34854043920303 66.22535542358541 -34.34854043920299 66.2253554235843 -36.02539074450145 0.0117908021147155 -35.09227776865849 66.23323306415247 -37.0270791194685 0.02240065140948211 -36.72320624548037 -7.978660453948339 -37.51651728181185 -12.02389422462481 -35.03080376238685 -11.67351854552216 -38.54039724341573 -8.234804021976251 -66.67683667146845 -5.001993925459011 -64.82194445250964 -5.110822504436647 -67.59507087072703 -8.801584369640315 -65.0577863084654 -8.950449662486134 -26.67833090146277 -4.685579105432893 -28.50817739544503 -5.084565574181102 -26.64508280673579 -5.084565606199503 -28.47492926540672 -4.685579074557319 -64.79980947931792 -4.711536569974646 -63.00348154749854 -4.692111049713033 -64.82194445250964 -5.110822504436596 -62.95913030523797 -5.090678001130508 -24.89760307375363 -4.561476063035062 -26.7519302050588 -3.979949980174817 -26.68310084215663 -4.685744582097032 -25.08032454570011 -3.863608216314769 -61.42860015938906 -3.852985594080717 -61.22647690703325 -4.548772735477164 -63.09671513827294 -3.987383924845189 -63.00824616317434 -4.692328076004692 -26.34434706609329 1.375799387233981 -27.45035279461398 1.768332031049396 -27.37382889606271 1.304148677456909 -26.43403193303617 1.839066753094441 -57.58623886499372 -1.231176269692736 -57.5695318689674 -1.697686726658906 -58.60878549212153 -1.239761191613832 -58.60532008578143 -1.706382820051832 -27.06752665473682 2.030111095140087 -28.08794950581062 1.781689779177514 -27.06531008868836 1.78168976160296 -27.06974322078533 2.278532428677424 -28.0857329177762 2.030111112638692 -28.08351632974184 2.278532446099727 -64.4971543667526 -0.522794905775986 -63.48350851501673 -0.5127849459701181 -64.49305467130678 -0.771206941769309 -64.48895497586103 -1.019618977762776 -63.47497622197436 -0.7611532091570084 -63.46644392893205 -1.009521472343688 -39.93669821850726 -0.332360238802468 -40.73277551264812 -0.9947370648333278 -39.74398010810516 -0.8553606408597263 -40.91998299692051 -0.4709599081914906 -69.83661526665078 -0.8672225815314478 -68.82863904179065 -0.8564921809323289 -69.82473282966794 -1.403784341805159 -68.81110760032333 -1.392993804786663 -40.45382277003304 0.04190693627944153 -41.37409865867473 -0.4832051287539185 -40.37220424731971 -0.4134744484050206 -41.4556985323792 -0.02782244612018126 -76.57213374184586 -0.6102616645326133 -75.56416499617227 -0.5999513015647358 -76.56007618045636 -1.068413234477585 -75.55208867235855 -1.058102679591601 -30.08114830788595 0.1178464952685143 -31.1048147795577 -0.6442949838233609 -30.0968266067427 -0.653839280348711 -31.08286573647168 0.1273314162536208 -78.44743124024355 0.07914495487355922 -77.44578846664616 0.09131244178604003 -78.4264317448129 -0.6924917079575703 -77.41851869432595 -0.6802480526604704 -25.42272354668923 66.21860329088335 -25.00558448107858 -0.004881865869130309 -24.00382524790209 0.002696821534275529 -26.16651348721291 66.21297623872756 -80.85305756140787 66.28616941258103 -80.10929021264182 66.29285636081991 -79.44916004614382 0.07013876673420061 -78.44743124024333 0.07914495487349793 -23.1499809258453 -4.314969009426337 -25.09642237197991 -3.865297567624449 -24.90231407061655 -4.561970448337932 -23.45586585395013 -3.634051687365774 -51.22816431111892 -3.890947828347072 -51.15824664760362 -4.596700885558308 -52.91005816222627 -3.902622318574921 -52.9547335768207 -4.60917079802387 -25.6452331705495 1.485552390102707 -26.81431653110024 1.799158614404995 -26.65559295061706 1.343136365935326 -25.8168732617883 1.939753982065484 -51.60498796317169 -0.4566943167293909 -51.59060809305354 -0.9232348850409347 -52.62757247296426 -0.4632982847121534 -52.62643468309831 -0.9299243718958552 -2.282214333736102 -7.337972466068752 -3.925733006582141 -6.697243778087106 -4.099405316687117 -7.081828856755511 -2.173399890094836 -6.944245294926748 -49.37349603930407 -4.468331716565579 -49.26706158172256 -4.86231146216417 -51.15824664760341 -4.596700885558253 -51.11786990218573 -4.995431868431473 -0.2613967012065328 -0.5831163172121689 -1.168735495884444 -0.2005250087457497 -1.258839954419138 -0.4425209051944554 -0.1756161710832749 -0.3405109379736828 -1.078631037349836 0.04147088770300034 -0.08983564096020125 -0.09790555873535123 -50.58213604461669 -1.163329243838868 -50.57139755793207 -1.411664265219254 -51.5956774424703 -1.176836071271499 -51.58937109661319 -1.425230156999503 -50.56065907124756 -1.659999286599815 -51.58306475075618 -1.673624242727479 -0.7733364311704447 -11.30333970704332 -2.282214333736212 -7.337972466068853 -3.306094517002089 -11.12706264545562 -0.4306312138175503 -7.466840530291215 -37.47768645140604 -8.657415790130862 -38.49733974116414 -12.44694861036535 -39.29516271780912 -8.40205947019237 -40.98344347586536 -12.09764979837314 0.4587230540733955 -0.1198634585825058 -0.4504068722848995 0.4833570658853432 -0.5487862733364999 -0.04974196346174686 0.5514875349908195 0.4136263627741066 -40.85817591194487 -0.7296521570291921 -40.85341855031109 -1.266256822428694 -41.86629665349976 -0.7310621043946233 -41.86718910626589 -1.26767467156692 1.004968732231873 -0.7717451776805104 -0.003145194799554218 -1.229958338062812 1.00497808552896 -1.229958362994524 -0.003135783145070015 -0.7717451527492507 -36.12889901034797 -0.5507645817044899 -35.12085761557887 -0.5577947533801897 -36.13713629637042 -1.008949011413336 -35.12907613782468 -1.015979313949297 2.003653248241889 0.0031616936913057 1.004968732231979 -0.7717451776805637 2.013060320681904 -0.7685636668773155 1.001833047375219 -2.47760212346293e-008 -35.11013531296779 0.2139239455677648 -34.10832106559332 0.2100991438023607 -35.12085761557889 -0.5577947533803167 -34.11277201788998 -0.5616434983785172 -37.02707911946914 0.02240065140967928 -35.83598221633405 66.24223595205712 -38.02872320823973 0.03452601852268167 -35.09227776865914 66.23323306415314 -35.09227776865848 66.2332330641525 -37.02707911946849 0.02240065140948566 -35.83598221633341 66.24223595205648 -38.02872320823909 0.03452601852248627 -26.64508280673583 -5.084565606199694 -28.85088251302524 -8.921064754394703 -26.30237802869556 -8.921064798192271 -28.5081773954451 -5.084565574181303 -64.82194445250964 -5.110822504436629 -62.95913030523794 -5.090678001130541 -65.05778630846538 -8.950449662486125 -62.50966543657575 -8.922894240812269 -24.79349967206026 -4.955697624318947 -26.68310084215666 -4.685744582097049 -26.64508280673561 -5.084565606199477 -24.89760307375368 -4.561476063035079 -61.22647690703316 -4.548772735477193 -61.11141368361216 -4.941809348300327 -63.00824616317426 -4.692328076004722 -62.95913030523794 -5.090678001130486 -26.4340319330361 1.839066753094428 -27.49239451397367 2.015371768054502 -27.45035279461389 1.768332031049387 -26.48047941546511 2.085799854235023 -27.53443623333347 2.262411505059829 -26.52692689789398 2.332532955375559 -57.60141136198364 -0.734415899845084 -57.59382511348872 -0.9827960847688821 -58.61509248543716 -0.7429263902880052 -58.61193898877933 -0.9913437909510323 -57.58623886499368 -1.231176269692748 -58.6087854921215 -1.239761191613845 -27.07256811135355 2.815142396365624 -28.08351632974179 2.278532446099712 -27.06974322078528 2.278532428677412 -28.08069139168202 2.81514241369096 -68.82863904179081 -0.856492180932201 -67.8207974907353 -0.8416404583658217 -68.81110760032348 -1.392993804786531 -67.79761779953624 -1.37805884866221 -40.09891728708801 0.1145620362513995 -40.91998299692058 -0.4709599081914373 -39.93669821850731 -0.3323602388024121 -41.08218376288729 -0.02403505327832267 -69.84916419395212 -0.4090761361474042 -68.84120673130632 -0.3983459352813794 -69.83661526665092 -0.8672225815314896 -68.82863904179077 -0.856492180932368 -29.07936664727346 0.1115230742657341 -30.09682660674297 -0.6538392803484419 -29.0887737998088 -0.6602022859236776 -30.08114830788629 0.1178464952688314 -76.58932216758288 0.1614116216835528 -75.5876240452814 0.1716578433740041 -76.57213374184588 -0.6102616645324943 -75.56416499617231 -0.5999513015646176 -24.65944684489199 66.21056800531532 -23.98431437254842 -0.01209084975702446 -22.98258761692262 -0.002996528394046294 -25.40321267133556 66.20381561959152 -80.10929021264181 66.29285636081994 -79.36555110705137 66.30066860532189 -78.4474312402433 0.07914495487350148 -77.44574047308669 0.08966672672896525 -22.97630865977861 -4.699554095818106 -24.90231407061642 -4.561970448337898 -24.79349967206023 -4.955697624318958 -23.14998092584519 -4.314969009426308 -51.1582466476036 -4.596700885558324 -51.11786990218594 -4.995431868431504 -52.95473357682072 -4.609170798023886 -52.98084893171342 -5.008363320948913 -25.8168732617883 1.939753982065518 -26.90009703344305 2.04176399745824 -26.81431653110023 1.799158614405032 -25.90697769261231 2.18174988252126 -26.98587753578565 2.284369380511409 -25.99708212343639 2.423745782977027 -51.59567744247046 -1.176836071271515 -51.58937109661336 -1.425230156999501 -52.60939719270128 -1.183317962753449 -52.6075237675935 -1.431740393308681 -51.5830647507563 -1.673624242727454 -52.60565034248552 -1.680162823863978 -3.306094517002177 -11.1270626454556 -4.099405316687327 -7.081828856755571 -5.791808015930106 -10.77668690987931 -2.282214333736305 -7.337972466068809 -39.29516271780915 -8.402059470192372 -40.98344347586539 -12.09764979837315 -41.0559296308914 -8.022568265312192 -43.39197517417184 -11.57854838330711 -0.08983564096013508 -0.09790555873548712 -0.8859128963518987 0.56447128538165 -1.07863103734977 0.04147088770286178 0.09737187395334557 0.4258715936532536 -50.60336941466355 -0.6268795626737154 -50.58213604461666 -1.163329243838918 -51.61126227523125 -0.6403111156099151 -51.59567744247026 -1.176836071271549 0.5514875349909785 0.4136263627741537 -0.3687883229316427 0.9387384487155153 -0.4504068722847441 0.483357065885393 0.6330874353351943 0.869009043553949 -40.85983542420259 -0.2714401387634737 -40.85817591194483 -0.7296521570291743 -41.86793740085319 -0.2728500598845161 -41.86629665349972 -0.7310621043946046 1.001833047375058 -2.477592353500313e-008 -0.003135783145138404 -0.7717451527492028 1.004968732231802 -0.7717451776804651 1.767475055203249e-013 1.4210854715202e-013 -36.11190563241122 0.2209103821981273 -35.11013531296774 0.2139239455678865 -36.12889901034795 -0.5507645817044926 -35.12085761557883 -0.5577947533801986 -35.83598221633396 66.24223595205649 -39.03031710676303 0.04816683198225036 -38.02872320823963 0.03452601852253956 -36.57964939856635 66.25236403422922 -34.33015169592595 66.43395022949925 -33.58632090825488 66.43111037638646 -35.11013531296787 0.2139239455677986 -34.1083210655934 0.2100991438023909 -23.76961992267861 -8.744787849238739 -26.64508280673578 -5.084565606199449 -26.30237802869555 -8.921064798192026 -24.79349967206044 -4.955697624318916 -61.11141368361218 -4.941809348300373 -59.98219628684977 -8.719258616720513 -62.95913030523792 -5.09067800113053 -62.50966543657573 -8.922894240812262 -26.52692689789398 2.332532955375325 -27.62720065316157 2.795901330541565 -27.53443623333347 2.262411505059587 -26.62530623790117 2.865631989097472 -57.61583537462519 -0.1978783367143215 -57.60141136198368 -0.7344158998452146 -58.62386718209226 -0.2063413975973214 -58.61509248543721 -0.7429263902881385 -27.07257747355299 3.273355581679336 -28.08069139168215 2.815142413690777 -27.07256811135369 2.815142396365442 -28.08068198892999 3.273355599004276 -68.84601135339076 -0.3984069092616478 -67.8381885620427 -0.3835554631413993 -68.82863904179081 -0.8564921809320358 -67.82079749073532 -0.8416404583656565 -28.0775464467349 0.1083613154178416 -29.08877379980876 -0.6602022859235914 -28.08068221168919 -0.6633838373602394 -29.07936664727344 0.1115230742658238 -75.58762404528149 0.1716578433738922 -74.5860220317665 0.1850652511001165 -75.56416499617239 -0.5999513015647358 -74.55629296092566 -0.5864599635581174 -12.60084050682096 78.23315758810689 -13.98961730152718 12.01481778768265 -12.98779606326776 12.01178641421499 -13.34467648513572 78.23540833361312 -79.36555110705135 66.30066860532183 -78.62184462842332 66.30960610003923 -77.44574047308666 0.08966672672895992 -76.44409364899966 0.1017040202813631 -21.28390638362922 -8.3944122242047 -24.79349967206002 -4.955697624318961 -23.7696199226783 -8.744787849238744 -22.97630865977838 -4.699554095818118 -59.30162747612151 -4.666056168597028 -57.50661169043715 -8.342059187716146 -61.11141368361218 -4.941809348300366 -59.98219628684976 -8.719258616720509 -25.99708212343646 2.423745782977378 -27.17308499072224 2.808146541225812 -26.98587753578575 2.284369380511751 -26.18980020454612 2.94674618922655 -51.60733668815495 -0.6402724094685528 -51.59567744247045 -1.176836071271554 -52.61540690712972 -0.6467181769146562 -52.60939719270127 -1.183317962753488 0.09737187395335445 0.4258715936532891 -0.7236938016263181 1.01139355675023 -0.8859128963518934 0.5644712853816829 0.2595726660652047 0.8727964448813363 -45.89919353931958 -0.2577629122027032 -45.89444922400065 -0.715966558775297 -46.90727715156692 -0.2618085830789116 -46.90255160081032 -0.7200123049580656 -0.003135783144876392 -0.771745152749296 -1.001820200463706 0.003161768018959066 -1.011227371189416 -0.7685635920843401 4.511946372076636e-013 4.973799150320701e-014 -44.90853725903249 0.521135782952161 -44.8911557302438 -0.2505358234402717 -45.91030401508937 0.5139536542660768 -45.89919353931945 -0.2577629122027041 -36.57964939856575 66.25236403422981 -40.03185491128369 0.06332301138513863 -39.03031710676244 0.04816683198244043 -37.3232749319139 66.26361725097333 -35.07396922784358 66.43791548619669 -34.33015169592596 66.43395022949926 -36.11193170708445 0.2192644755923716 -35.11013531296788 0.2139239455678048 -26.62530623790126 2.865631989097683 -27.70880050136066 3.251284014950348 -27.62720065316167 2.795901330541785 -26.70692473510921 3.321013375557459 -57.62574948698793 0.2602931934999067 -57.61583537462514 -0.1978783367142807 -58.63376253120619 0.2518302901461427 -58.62386718209221 -0.2063413975972823 -27.0757133993598 0.1083612998129988 -28.08068221168906 -0.663383837360092 -27.072577696312 -0.6633838530629435 -28.07754644673475 0.1083613154179934 -59.63672168182466 0.4753835338728329 -58.63492376500435 0.4806119570997423 -59.62948654638054 -0.2963509216719205 -58.62141738147516 -0.2910897685516574 -11.90165120674738 78.24481790014997 -13.03244931778502 12.02457204532158 -12.03061922239437 12.02305643089658 -12.64549376133818 78.24594321921414 -71.54854957197424 66.43148276257101 -70.80481326603695 66.43939784326599 -69.8631165263439 0.2180027707127472 -68.86142952991689 0.2286630455229091 -26.18980020454612 2.946746189226552 -27.33528573165739 3.25507139966707 -27.17308499072223 2.808146541225812 -26.35201924809531 3.393668467809125 -51.6148898644967 -0.1820834016434301 -51.60733668815497 -0.6402724094686247 -52.62294131950768 -0.188529049109718 -52.61540690712974 -0.646718176914729 -1.011227371189787 -0.7685635920842593 -2.003601860927674 0.009485198192784594 -2.019280177973867 -0.7622005772811091 -1.001820200464035 0.003161768019044331 -45.91030401508942 0.513953654266075 -45.8991935393195 -0.2577629122027121 -46.91211628937401 0.5099331517083776 -46.90727715156682 -0.2618085830789179 -40.03185491128394 0.06332301138496632 -38.06685443318122 66.27599553595697 -41.03333071837874 0.07999446739476213 -37.32327493191416 66.26361725097266 -35.07396922784356 66.43791548619664 -36.11193170708445 0.2192644755923663 -35.81776911967913 66.44300612310663 -37.1137043429946 0.2261207023971732 -26.06448610793711 -0.6602023330318474 -27.07571339935964 0.1083612998125574 -27.07257769631188 -0.6633838530633511 -26.07389319856736 0.1115230274506729 -57.63318118214588 0.4890019456539472 -57.61340389692194 -0.2826472587266062 -58.63492376500435 0.4806119570998142 -58.62141738147516 -0.2910897685515863 -40.29727291675498 66.31988003757434 -45.03849591752533 0.1618309581912332 -44.03732712655012 0.1390994677361093 -41.04062446351865 66.33675779958972 -70.80481326603696 66.43939784326605 -70.06110998778942 66.4484381696354 -68.86142952991689 0.2286630455229135 -67.85978701613061 0.2408388359169491 -25.05643330049236 -0.6538393588602682 -26.07389319856711 0.1115230274509944 -26.06448610793687 -0.6602023330315303 -25.07211153744714 0.1178464172455929 -46.91211628937396 0.5099331517084256 -46.90727715156677 -0.2618085830788646 -47.91394838900014 0.5090743783903093 -47.9153807132622 -0.2626727323119997 -41.03333071837906 0.07999446739501792 -38.81038351944217 66.28949881622064 -42.03473862498821 0.09818110174431105 -38.06685443318147 66.27599553595893 -46.72359619668079 66.73382431770808 -45.91030401508953 0.5139536542660554 -47.46742551936483 66.73083915993774 -46.91211628937411 0.5099331517083598 -43.0360727284532 0.1178828072341176 -40.29727291675518 66.31988003757407 -44.03732712655027 0.1390994677361412 -39.55385780806849 66.30412701216665 -48.21126427948087 66.72897942070316 -47.91394127428328 0.5074283975458531 -48.95510809257557 66.7282451109653 -48.91577306469993 0.5064394065428211 -42.03473862498784 0.09818110174416894 -39.55385780806801 66.30412701216619 -43.03607272845277 0.117882807234114 -38.81038351944184 66.28949881621918 -47.46742551936485 66.73083915993773 -46.91211628937413 0.5099331517083572 -48.21126427948088 66.72897942070318 -47.91394127428328 0.5074283975458505</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"3560\" source=\"#ID10594\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10590\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10588\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10589\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1836\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10590\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10591\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 4 5 5 6 6 7 7 6 6 5 5 3 8 8 9 1 10 8 9 3 8 9 11 10 12 4 13 11 14 6 15 11 14 4 13 2 16 12 17 13 18 12 17 2 16 1 19 6 20 7 21 14 22 15 23 14 22 7 21 16 24 2 25 17 26 2 25 16 24 0 27 5 28 18 29 7 30 19 31 7 30 18 29 20 32 3 33 0 34 3 33 20 32 21 35 22 36 23 37 4 38 5 39 4 38 23 37 24 40 9 41 25 42 9 41 24 40 8 43 11 44 26 45 10 46 27 47 10 46 26 45 1 48 28 49 12 50 28 49 1 48 8 51 11 52 6 53 29 54 14 55 29 54 6 53 21 56 9 57 3 58 9 57 21 56 30 59 31 60 22 61 10 62 4 63 10 62 22 61 13 64 32 65 33 66 32 65 13 64 12 67 14 68 15 69 34 70 35 71 34 70 15 69 17 72 13 73 36 74 13 73 17 72 2 75 7 76 19 77 15 78 37 79 15 78 19 77 38 80 17 81 39 82 17 81 38 80 16 83 18 84 40 85 19 86 41 87 19 86 40 85 42 88 0 89 16 90 0 89 42 88 20 91 23 92 43 93 5 94 18 95 5 94 43 93 44 96 21 97 20 98 21 97 44 96 45 99 46 100 47 101 22 102 23 103 22 102 47 101 48 104 25 105 49 106 25 105 48 104 24 107 26 108 50 109 27 110 51 111 27 110 50 109 52 112 8 113 24 114 8 113 52 112 28 115 29 116 53 117 11 118 26 119 11 118 53 117 25 120 30 121 54 122 30 121 25 120 9 123 10 124 27 125 31 126 55 127 31 126 27 125 12 128 56 129 32 130 56 129 12 128 28 131 29 132 14 133 57 134 34 135 57 134 14 133 45 136 30 137 21 138 30 137 45 136 58 139 59 140 46 141 31 142 22 143 31 142 46 141 33 144 60 145 61 146 60 145 33 144 32 147 34 148 35 149 62 150 63 151 62 150 35 149 36 152 33 153 64 154 33 153 36 152 13 155 15 156 37 157 35 158 65 159 35 158 37 157 39 160 36 161 66 162 36 161 39 160 17 163 19 164 41 165 37 166 67 167 37 166 41 165 68 168 38 169 39 170 38 169 68 168 69 171 70 172 71 173 40 174 41 175 40 174 71 173 72 176 16 177 38 178 16 177 72 176 42 179 43 180 73 181 18 182 40 183 18 182 73 181 74 184 20 185 42 186 20 185 74 184 44 187 47 188 75 189 23 190 43 191 23 190 75 189 76 192 45 193 44 194 45 193 76 192 77 195 78 196 79 197 46 198 47 199 46 198 79 197 48 200 80 201 81 202 80 201 48 200 49 203 51 204 50 205 82 206 83 207 82 206 50 205 84 208 24 209 48 210 24 209 84 208 52 211 53 212 85 213 26 214 50 215 26 214 85 213 49 216 54 217 86 218 54 217 49 216 25 219 27 220 51 221 55 222 87 223 55 222 51 221 88 224 28 225 52 226 28 225 88 224 56 227 57 228 89 229 29 230 53 231 29 230 89 229 54 232 58 233 90 234 58 233 54 232 30 235 31 236 55 237 59 238 91 239 59 238 55 237 32 240 92 241 60 242 92 241 32 240 56 243 57 244 34 245 93 246 62 247 93 246 34 245 77 248 58 249 45 250 58 249 77 248 94 251 95 252 78 253 59 254 46 255 59 254 78 253 61 256 96 257 97 258 96 257 61 256 60 259 62 260 63 261 98 262 99 263 98 262 63 261 64 264 61 265 100 266 61 265 64 264 33 267 35 268 65 269 63 270 101 271 63 270 65 269 66 272 64 273 102 274 64 273 66 272 36 275 37 276 67 277 65 278 103 279 65 278 67 277 104 280 39 281 66 282 39 281 104 280 68 283 71 284 105 285 41 286 67 287 41 286 105 285 106 288 69 289 68 290 69 289 106 288 107 291 108 292 109 293 70 294 71 295 70 294 109 293 69 296 72 297 38 298 72 297 69 296 110 299 111 300 70 301 73 302 40 303 73 302 70 301 112 304 42 305 72 306 42 305 112 304 74 307 75 308 113 309 43 310 73 311 43 310 113 309 114 312 44 313 74 314 44 313 114 312 76 315 79 316 115 317 47 318 75 319 47 318 115 317 116 320 77 321 76 322 77 321 116 320 117 323 118 324 119 325 78 326 79 327 78 326 119 325 81 328 120 329 121 330 120 329 81 328 80 331 82 332 83 333 122 334 123 335 122 334 83 333 84 336 81 337 124 338 81 337 84 336 48 339 50 340 85 341 83 342 125 343 83 342 85 341 49 344 126 345 80 346 126 345 49 344 86 347 87 348 51 349 127 350 82 351 127 350 51 349 128 352 52 353 84 354 52 353 128 352 88 355 89 356 129 357 53 358 85 359 53 358 129 357 86 360 90 361 130 362 90 361 86 360 54 363 55 364 87 365 91 366 131 367 91 366 87 365 132 368 56 369 88 370 56 369 132 368 92 371 93 372 133 373 57 374 89 375 57 374 133 373 90 376 94 377 134 378 94 377 90 376 58 379 59 380 91 381 95 382 135 383 95 382 91 381 60 384 136 385 96 386 136 385 60 384 92 387 93 388 62 389 137 390 98 391 137 390 62 389 117 392 94 393 77 394 94 393 117 392 138 395 139 396 118 397 95 398 78 399 95 398 118 397 97 400 140 401 141 402 140 401 97 400 96 403 98 404 99 405 142 406 143 407 142 406 99 405 100 408 97 409 144 410 97 409 100 408 61 411 63 412 101 413 99 414 145 415 99 414 101 413 102 416 100 417 146 418 100 417 102 416 64 419 65 420 103 421 101 422 147 423 101 422 103 421 148 424 66 425 102 426 66 425 148 424 104 427 105 428 149 429 67 430 103 431 67 430 149 429 150 432 68 433 104 434 68 433 150 432 106 435 109 436 151 437 71 438 105 439 71 438 151 437 107 440 152 441 153 442 152 441 107 440 106 443 109 444 108 445 154 446 155 447 154 446 108 445 107 448 110 449 69 450 110 449 107 448 156 451 157 452 108 453 111 454 70 455 111 454 108 453 110 456 112 457 72 458 112 457 110 456 158 459 159 460 111 461 113 462 73 463 113 462 111 461 160 464 74 465 112 466 74 465 160 464 114 467 115 468 161 469 75 470 113 471 75 470 161 469 162 472 76 473 114 474 76 473 162 472 116 475 119 476 163 477 79 478 115 479 79 478 163 477 164 480 117 481 116 482 117 481 164 480 165 483 166 484 167 485 118 486 119 487 118 486 167 485 121 488 168 489 169 490 168 489 121 488 120 491 122 492 123 493 170 494 171 495 170 494 123 493 124 496 121 497 172 498 121 497 124 496 81 499 83 500 125 501 123 502 173 503 123 502 125 501 80 504 174 505 120 506 174 505 80 504 126 507 127 508 82 509 175 510 122 511 175 510 82 509 128 512 124 513 176 514 124 513 128 512 84 515 85 516 129 517 125 518 177 519 125 518 129 517 86 520 178 521 126 522 178 521 86 520 130 523 131 524 87 525 179 526 127 527 179 526 87 525 180 528 88 529 128 530 88 529 180 528 132 531 133 532 181 533 89 534 129 535 89 534 181 533 130 536 134 537 182 538 134 537 130 536 90 539 91 540 131 541 135 542 183 543 135 542 131 541 184 544 92 545 132 546 92 545 184 544 136 547 137 548 185 549 93 550 133 551 93 550 185 549 134 552 138 553 186 554 138 553 134 552 94 555 95 556 135 557 139 558 187 559 139 558 135 557 96 560 188 561 140 562 188 561 96 560 136 563 137 564 98 565 189 566 142 567 189 566 98 565 165 568 138 569 117 570 138 569 165 568 190 571 191 572 166 573 139 574 118 575 139 574 166 573 141 576 192 577 193 578 192 577 141 576 140 579 142 580 143 581 194 582 195 583 194 582 143 581 144 584 141 585 196 586 141 585 144 584 97 587 99 588 145 589 143 590 197 591 143 590 145 589 146 592 144 593 198 594 144 593 146 592 100 595 101 596 147 597 145 598 199 599 145 598 147 597 200 600 102 601 146 602 102 601 200 600 148 603 149 604 201 605 103 606 147 607 103 606 201 605 202 608 104 609 148 610 104 609 202 608 150 611 151 612 203 613 105 614 149 615 105 614 203 613 106 616 204 617 152 618 204 617 106 616 150 619 151 620 109 621 205 622 154 623 205 622 109 621 153 624 206 625 207 626 206 625 153 624 152 627 154 628 155 629 208 630 209 631 208 630 155 629 156 632 153 633 210 634 153 633 156 632 107 635 108 636 157 637 155 638 211 639 155 638 157 637 156 640 158 641 110 642 158 641 156 640 212 643 213 644 157 645 159 646 111 647 159 646 157 645 158 648 160 649 112 650 160 649 158 648 214 651 215 652 159 653 161 654 113 655 161 654 159 653 216 656 114 657 160 658 114 657 216 656 162 659 163 660 217 661 115 662 161 663 115 662 217 661 218 664 116 665 162 666 116 665 218 664 164 667 167 668 219 669 119 670 163 671 119 670 219 669 220 672 165 673 164 674 165 673 220 672 221 675 221 675 220 672 222 676 221 675 222 676 223 677 224 678 225 679 226 680 225 679 227 681 226 680 226 680 227 681 166 682 167 683 166 682 227 681 169 684 228 685 229 686 228 685 169 684 168 687 170 688 171 689 230 690 231 691 230 690 171 689 172 692 169 693 232 694 169 693 172 692 121 695 123 696 173 697 171 698 233 699 171 698 173 697 120 700 234 701 168 702 234 701 120 700 174 703 175 704 122 705 235 706 170 707 235 706 122 705 176 708 172 709 236 710 172 709 176 708 124 711 125 712 177 713 173 714 237 715 173 714 177 713 126 716 238 717 174 718 238 717 126 716 178 719 179 720 127 721 239 722 175 723 239 722 127 721 180 724 176 725 240 726 176 725 180 724 128 727 129 728 181 729 177 730 241 731 177 730 181 729 130 732 242 733 178 734 242 733 130 732 182 735 183 736 131 737 243 738 179 739 243 738 131 737 244 740 132 741 180 742 132 741 244 740 184 743 185 744 245 745 133 746 181 747 133 746 245 745 182 748 186 749 246 750 186 749 182 748 134 751 135 752 183 753 187 754 247 755 187 754 183 753 248 756 136 757 184 758 136 757 248 756 188 759 189 760 249 761 137 762 185 763 137 762 249 761 186 764 190 765 250 766 190 765 186 764 138 767 139 768 187 769 191 770 251 771 191 770 187 769 140 772 252 773 192 774 252 773 140 772 188 775 189 776 142 777 253 778 194 779 253 778 142 777 221 780 190 781 165 782 190 781 221 780 254 783 254 783 221 780 223 784 254 783 223 784 255 785 256 786 224 787 257 788 224 787 226 789 257 788 257 788 226 789 191 790 166 791 191 790 226 789 193 792 258 793 259 794 258 793 193 792 192 795 194 796 195 797 260 798 261 799 260 798 195 797 196 800 193 801 262 802 193 801 196 800 141 803 143 804 197 805 195 806 263 807 195 806 197 805 198 808 196 809 264 810 196 809 198 808 144 811 145 812 199 813 197 814 265 815 197 814 199 813 266 816 146 817 198 818 146 817 266 816 200 819 201 820 267 821 147 822 199 823 147 822 267 821 268 824 148 825 200 826 148 825 268 824 202 827 203 828 269 829 149 830 201 831 149 830 269 829 150 832 270 833 204 834 270 833 150 832 202 835 203 836 151 837 271 838 205 839 271 838 151 837 152 840 272 841 206 842 272 841 152 840 204 843 205 844 154 845 273 846 208 847 273 846 154 845 207 848 274 849 275 850 274 849 207 848 206 851 208 852 209 853 276 854 277 855 276 854 209 853 210 856 207 857 278 858 207 857 210 856 153 859 155 860 211 861 209 862 279 863 209 862 211 861 212 864 210 865 280 866 210 865 212 864 156 867 157 868 213 869 211 870 281 871 211 870 213 869 212 872 214 873 158 874 214 873 212 872 282 875 283 876 213 877 215 878 159 879 215 878 213 877 214 880 216 881 160 882 216 881 214 880 284 883 285 884 215 885 217 886 161 887 217 886 215 885 286 888 162 889 216 890 162 889 286 888 218 891 219 892 287 893 163 894 217 895 163 894 287 893 288 896 164 897 218 898 164 897 288 896 220 899 220 899 288 896 289 900 220 899 289 900 222 901 225 902 290 903 227 904 290 903 291 905 227 904 227 904 291 905 167 906 219 907 167 906 291 905 292 908 223 909 222 910 223 909 292 908 293 911 294 912 295 913 224 914 225 915 224 914 295 913 228 916 296 917 229 918 296 917 228 916 297 919 298 920 230 921 299 922 231 923 299 922 230 921 232 924 229 925 300 926 229 925 232 924 169 927 171 928 233 929 231 930 301 931 231 930 233 929 168 932 302 933 228 934 302 933 168 932 234 935 235 936 170 937 303 938 230 939 303 938 170 937 236 940 232 941 304 942 232 941 236 940 172 943 173 944 237 945 233 946 305 947 233 946 237 945 174 948 306 949 234 950 306 949 174 948 238 951 239 952 175 953 307 954 235 955 307 954 175 953 240 956 236 957 308 958 236 957 240 956 176 959 177 960 241 961 237 962 309 963 237 962 241 961 178 964 310 965 238 966 310 965 178 964 242 967 243 968 179 969 311 970 239 971 311 970 179 969 244 972 240 973 312 974 240 973 244 972 180 975 181 976 245 977 241 978 313 979 241 978 245 977 182 980 314 981 242 982 314 981 182 980 246 983 247 984 183 985 315 986 243 987 315 986 183 985 316 988 184 989 244 990 184 989 316 988 248 991 249 992 317 993 185 994 245 995 185 994 317 993 186 996 318 997 246 998 318 997 186 996 250 999 251 1000 187 1001 319 1002 247 1003 319 1002 187 1001 320 1004 188 1005 248 1006 188 1005 320 1004 252 1007 253 1008 321 1009 189 1010 249 1011 189 1010 321 1009 322 1012 255 1013 323 1014 255 1013 322 1012 250 1015 255 1013 250 1015 190 1016 255 1013 190 1016 254 1017 257 1018 191 1019 256 1020 191 1019 251 1021 256 1020 251 1021 324 1022 256 1020 325 1023 256 1020 324 1022 192 1024 326 1025 258 1026 326 1025 192 1024 252 1027 253 1028 194 1029 327 1030 260 1031 327 1030 194 1029 293 1032 255 1033 223 1034 255 1033 293 1032 328 1035 329 1036 294 1037 256 1038 224 1039 256 1038 294 1037 262 1040 259 1041 330 1042 259 1041 262 1040 193 1043 195 1044 263 1045 261 1046 331 1047 261 1046 263 1045 264 1048 262 1049 332 1050 262 1049 264 1048 196 1051 197 1052 265 1053 263 1054 333 1055 263 1054 265 1053 334 1056 198 1057 264 1058 198 1057 334 1056 266 1059 267 1060 335 1061 199 1062 265 1063 199 1062 335 1061 336 1064 200 1065 266 1066 200 1065 336 1064 268 1067 269 1068 337 1069 201 1070 267 1071 201 1070 337 1069 202 1072 338 1073 270 1074 338 1073 202 1072 268 1075 269 1076 203 1077 339 1078 271 1079 339 1078 203 1077 204 1080 340 1081 272 1082 340 1081 204 1080 270 1083 271 1084 205 1085 341 1086 273 1087 341 1086 205 1085 206 1088 342 1089 274 1090 342 1089 206 1088 272 1091 273 1092 208 1093 343 1094 276 1095 343 1094 208 1093 344 1096 274 1097 345 1098 274 1097 344 1096 275 1099 277 1100 346 1101 276 1102 347 1103 276 1102 346 1101 278 1104 275 1105 348 1106 275 1105 278 1104 207 1107 209 1108 279 1109 277 1110 349 1111 277 1110 279 1109 280 1112 278 1113 350 1114 278 1113 280 1112 210 1115 211 1116 281 1117 279 1118 351 1119 279 1118 281 1117 282 1120 280 1121 352 1122 280 1121 282 1120 212 1123 213 1124 283 1125 281 1126 353 1127 281 1126 283 1125 282 1128 284 1129 214 1130 284 1129 282 1128 354 1131 355 1132 283 1133 285 1134 215 1135 285 1134 283 1133 284 1136 286 1137 216 1138 286 1137 284 1136 356 1139 357 1140 285 1141 287 1142 217 1143 287 1142 285 1141 358 1144 218 1145 286 1146 218 1145 358 1144 288 1147 288 1147 358 1144 359 1148 288 1147 359 1148 289 1149 290 1150 360 1151 291 1152 360 1151 361 1153 291 1152 291 1152 361 1153 219 1154 287 1155 219 1154 361 1153 362 1156 222 1157 289 1158 222 1157 362 1156 292 1159 295 1160 363 1161 225 1162 290 1163 225 1162 363 1161 364 1164 293 1165 292 1166 293 1165 364 1164 365 1167 366 1168 367 1169 294 1170 295 1171 294 1170 367 1169 297 1172 368 1173 296 1174 368 1173 297 1172 369 1175 370 1176 298 1177 371 1178 299 1179 371 1178 298 1177 229 1180 372 1181 300 1182 372 1181 229 1180 296 1183 299 1184 231 1185 373 1186 301 1187 373 1186 231 1185 302 1188 297 1189 228 1190 297 1189 302 1188 374 1191 375 1192 303 1193 298 1194 230 1195 298 1194 303 1193 304 1196 300 1197 376 1198 300 1197 304 1196 232 1199 233 1200 305 1201 301 1202 377 1203 301 1202 305 1201 234 1204 378 1205 302 1206 378 1205 234 1204 306 1207 307 1208 235 1209 379 1210 303 1211 379 1210 235 1209 308 1212 304 1213 380 1214 304 1213 308 1212 236 1215 237 1216 309 1217 305 1218 381 1219 305 1218 309 1217 238 1220 382 1221 306 1222 382 1221 238 1220 310 1223 311 1224 239 1225 383 1226 307 1227 383 1226 239 1225 312 1228 308 1229 384 1230 308 1229 312 1228 240 1231 241 1232 313 1233 309 1234 385 1235 309 1234 313 1233 242 1236 386 1237 310 1238 386 1237 242 1236 314 1239 315 1240 243 1241 387 1242 311 1243 387 1242 243 1241 316 1244 312 1245 388 1246 312 1245 316 1244 244 1247 245 1248 317 1249 313 1250 389 1251 313 1250 317 1249 246 1252 390 1253 314 1254 390 1253 246 1252 318 1255 319 1256 247 1257 391 1258 315 1259 391 1258 247 1257 392 1260 248 1261 316 1262 248 1261 392 1260 320 1263 321 1264 393 1265 249 1266 317 1267 249 1266 393 1265 250 1268 394 1269 318 1270 394 1269 250 1268 395 1271 395 1271 250 1268 323 1272 323 1272 250 1268 322 1273 324 1274 251 1275 325 1276 325 1276 251 1275 396 1277 396 1277 251 1275 397 1278 319 1279 397 1278 251 1275 398 1280 252 1281 320 1282 252 1281 398 1280 326 1283 327 1284 399 1285 253 1286 321 1287 253 1286 399 1285 255 1288 400 1289 323 1290 400 1289 255 1288 328 1291 329 1292 256 1293 401 1294 325 1295 401 1294 256 1293 365 1296 328 1297 293 1298 328 1297 365 1296 402 1299 403 1300 366 1301 329 1302 294 1303 329 1302 366 1301 332 1304 330 1305 404 1306 330 1305 332 1304 262 1307 263 1308 333 1309 331 1310 405 1311 331 1310 333 1309 406 1312 264 1313 332 1314 264 1313 406 1312 334 1315 335 1316 407 1317 265 1318 333 1319 265 1318 407 1317 408 1320 266 1321 334 1322 266 1321 408 1320 336 1323 337 1324 409 1325 267 1326 335 1327 267 1326 409 1325 268 1328 410 1329 338 1330 410 1329 268 1328 336 1331 337 1332 269 1333 411 1334 339 1335 411 1334 269 1333 270 1336 412 1337 340 1338 412 1337 270 1336 338 1339 339 1340 271 1341 413 1342 341 1343 413 1342 271 1341 272 1344 414 1345 342 1346 414 1345 272 1344 340 1347 341 1348 273 1349 415 1350 343 1351 415 1350 273 1349 345 1352 342 1353 416 1354 342 1353 345 1352 274 1355 276 1356 347 1357 343 1358 417 1359 343 1358 347 1357 418 1360 345 1361 419 1362 345 1361 418 1360 344 1363 346 1364 420 1365 347 1366 421 1367 347 1366 420 1365 422 1368 275 1369 344 1370 275 1369 422 1368 348 1371 349 1372 423 1373 277 1374 346 1375 277 1374 423 1373 424 1376 278 1377 348 1378 278 1377 424 1376 350 1379 351 1380 425 1381 279 1382 349 1383 279 1382 425 1381 352 1384 350 1385 426 1386 350 1385 352 1384 280 1387 281 1388 353 1389 351 1390 427 1391 351 1390 353 1389 354 1392 352 1393 428 1394 352 1393 354 1392 282 1395 283 1396 355 1397 353 1398 429 1399 353 1398 355 1397 354 1400 356 1401 284 1402 356 1401 354 1400 430 1403 431 1404 355 1405 357 1406 285 1407 357 1406 355 1405 356 1408 358 1409 286 1410 358 1409 356 1408 432 1411 358 1409 432 1411 359 1412 359 1412 432 1411 433 1413 434 1414 435 1415 360 1416 360 1416 435 1415 361 1417 435 1415 357 1418 361 1417 287 1419 361 1417 357 1418 436 1420 289 1421 359 1422 289 1421 436 1420 362 1423 363 1424 437 1425 290 1426 360 1427 290 1426 437 1425 438 1428 292 1429 362 1430 292 1429 438 1428 364 1431 367 1432 439 1433 295 1434 363 1435 295 1434 439 1433 440 1436 365 1437 364 1438 365 1437 440 1436 441 1439 442 1440 443 1441 366 1442 367 1443 366 1442 443 1441 368 1444 444 1445 445 1446 444 1445 368 1444 369 1447 370 1448 371 1449 446 1450 447 1451 446 1450 371 1449 296 1452 448 1453 372 1454 448 1453 296 1452 368 1455 371 1456 299 1457 449 1458 373 1459 449 1458 299 1457 374 1460 369 1461 297 1462 369 1461 374 1460 450 1463 451 1464 375 1465 370 1466 298 1467 370 1466 375 1465 300 1468 452 1469 376 1470 452 1469 300 1468 372 1471 373 1472 301 1473 453 1474 377 1475 453 1474 301 1473 378 1476 374 1477 302 1478 374 1477 378 1476 454 1479 455 1480 379 1481 375 1482 303 1483 375 1482 379 1481 380 1484 376 1485 456 1486 376 1485 380 1484 304 1487 305 1488 381 1489 377 1490 457 1491 377 1490 381 1489 306 1492 458 1493 378 1494 458 1493 306 1492 382 1495 383 1496 307 1497 459 1498 379 1499 459 1498 307 1497 384 1500 380 1501 460 1502 380 1501 384 1500 308 1503 309 1504 385 1505 381 1506 461 1507 381 1506 385 1505 310 1508 462 1509 382 1510 462 1509 310 1508 386 1511 387 1512 311 1513 463 1514 383 1515 463 1514 311 1513 388 1516 384 1517 464 1518 384 1517 388 1516 312 1519 313 1520 389 1521 385 1522 465 1523 385 1522 389 1521 314 1524 466 1525 386 1526 466 1525 314 1524 390 1527 391 1528 315 1529 467 1530 387 1531 467 1530 315 1529 392 1532 388 1533 468 1534 388 1533 392 1532 316 1535 317 1536 393 1537 389 1538 469 1539 389 1538 393 1537 318 1540 470 1541 390 1542 470 1541 318 1540 471 1543 471 1543 318 1540 395 1544 395 1544 318 1540 394 1545 397 1546 319 1547 396 1548 396 1548 319 1547 472 1549 472 1549 319 1547 473 1550 391 1551 473 1550 319 1547 474 1552 320 1553 392 1554 320 1553 474 1552 398 1555 399 1556 475 1557 321 1558 393 1559 321 1558 475 1557 323 1560 476 1561 395 1562 476 1561 323 1560 400 1563 401 1564 325 1565 477 1566 396 1567 477 1566 325 1565 328 1568 478 1569 400 1570 478 1569 328 1568 402 1571 403 1572 329 1573 479 1574 401 1575 479 1574 329 1573 441 1576 402 1577 365 1578 402 1577 441 1576 480 1579 481 1580 442 1581 403 1582 366 1583 403 1582 442 1581 482 1584 332 1585 404 1586 332 1585 482 1584 406 1587 407 1588 483 1589 333 1590 405 1591 333 1590 483 1589 484 1592 334 1593 406 1594 334 1593 484 1592 408 1595 409 1596 485 1597 335 1598 407 1599 335 1598 485 1597 336 1600 486 1601 410 1602 486 1601 336 1600 408 1603 409 1604 337 1605 487 1606 411 1607 487 1606 337 1605 338 1608 488 1609 412 1610 488 1609 338 1608 410 1611 411 1612 339 1613 489 1614 413 1615 489 1614 339 1613 340 1616 490 1617 414 1618 490 1617 340 1616 412 1619 413 1620 341 1621 491 1622 415 1623 491 1622 341 1621 416 1624 414 1625 492 1626 414 1625 416 1624 342 1627 343 1628 417 1629 415 1630 493 1631 415 1630 417 1629 419 1632 416 1633 494 1634 416 1633 419 1632 345 1635 347 1636 421 1637 417 1638 495 1639 417 1638 421 1637 496 1640 419 1641 497 1642 419 1641 496 1640 418 1643 420 1644 498 1645 421 1646 499 1647 421 1646 498 1645 500 1648 344 1649 418 1650 344 1649 500 1648 422 1651 423 1652 501 1653 346 1654 420 1655 346 1654 501 1653 502 1656 348 1657 422 1658 348 1657 502 1656 424 1659 425 1660 503 1661 349 1662 423 1663 349 1662 503 1661 504 1664 350 1665 424 1666 350 1665 504 1664 426 1667 427 1668 505 1669 351 1670 425 1671 351 1670 505 1669 428 1672 426 1673 506 1674 426 1673 428 1672 352 1675 353 1676 429 1677 427 1678 507 1679 427 1678 429 1677 430 1680 428 1681 508 1682 428 1681 430 1680 354 1683 355 1684 431 1685 429 1686 509 1687 429 1686 431 1685 430 1688 432 1689 356 1690 432 1689 430 1688 510 1691 432 1689 510 1691 433 1692 433 1692 510 1691 511 1693 512 1694 513 1695 434 1696 434 1696 513 1695 435 1697 513 1695 431 1698 435 1697 357 1699 435 1697 431 1698 433 1700 436 1701 359 1702 436 1701 433 1700 514 1703 515 1704 434 1705 437 1706 360 1707 437 1706 434 1705 516 1708 362 1709 436 1710 362 1709 516 1708 438 1711 439 1712 517 1713 363 1714 437 1715 363 1714 517 1713 518 1716 364 1717 438 1718 364 1717 518 1716 440 1719 443 1720 519 1721 367 1722 439 1723 367 1722 519 1721 520 1724 441 1725 440 1726 441 1725 520 1724 521 1727 522 1728 523 1729 442 1730 443 1731 442 1730 523 1729 445 1732 524 1733 525 1734 524 1733 445 1732 444 1735 446 1736 447 1737 526 1738 527 1739 526 1738 447 1737 448 1740 445 1741 528 1742 445 1741 448 1740 368 1743 371 1744 449 1745 447 1746 529 1747 447 1746 449 1745 369 1748 530 1749 444 1750 530 1749 369 1748 450 1751 451 1752 370 1753 531 1754 446 1755 531 1754 370 1753 372 1756 532 1757 452 1758 532 1757 372 1756 448 1759 449 1760 373 1761 533 1762 453 1763 533 1762 373 1761 454 1764 450 1765 374 1766 450 1765 454 1764 534 1767 535 1768 455 1769 451 1770 375 1771 451 1770 455 1769 376 1772 536 1773 456 1774 536 1773 376 1772 452 1775 453 1776 377 1777 537 1778 457 1779 537 1778 377 1777 458 1780 454 1781 378 1782 454 1781 458 1780 538 1783 539 1784 459 1785 455 1786 379 1787 455 1786 459 1785 460 1788 456 1789 540 1790 456 1789 460 1788 380 1791 381 1792 461 1793 457 1794 541 1795 457 1794 461 1793 382 1796 542 1797 458 1798 542 1797 382 1796 462 1799 463 1800 383 1801 543 1802 459 1803 543 1802 383 1801 464 1804 460 1805 544 1806 460 1805 464 1804 384 1807 385 1808 465 1809 461 1810 545 1811 461 1810 465 1809 386 1812 546 1813 462 1814 546 1813 386 1812 466 1815 467 1816 387 1817 547 1818 463 1819 547 1818 387 1817 468 1820 464 1821 548 1822 464 1821 468 1820 388 1823 389 1824 469 1825 465 1826 549 1827 465 1826 469 1825 390 1828 550 1829 466 1830 550 1829 390 1828 551 1831 551 1831 390 1828 470 1832 551 1831 470 1832 471 1833 472 1834 473 1835 552 1836 473 1835 391 1837 552 1836 552 1836 391 1837 553 1838 467 1839 553 1838 391 1837 474 1840 468 1841 554 1842 468 1841 474 1840 392 1843 393 1844 475 1845 469 1846 555 1847 469 1846 475 1845 395 1848 556 1849 471 1850 556 1849 395 1848 476 1851 477 1852 396 1853 557 1854 472 1855 557 1854 396 1853 400 1856 558 1857 476 1858 558 1857 400 1856 478 1859 479 1860 401 1861 559 1862 477 1863 559 1862 401 1861 402 1864 560 1865 478 1866 560 1865 402 1864 480 1867 481 1868 403 1869 561 1870 479 1871 561 1870 403 1869 521 1872 480 1873 441 1874 480 1873 521 1872 562 1875 563 1876 522 1877 481 1878 442 1879 481 1878 522 1877 564 1880 406 1881 482 1882 406 1881 564 1880 484 1883 485 1884 565 1885 407 1886 483 1887 407 1886 565 1885 408 1888 566 1889 486 1890 566 1889 408 1888 484 1891 485 1892 409 1893 567 1894 487 1895 567 1894 409 1893 410 1896 568 1897 488 1898 568 1897 410 1896 486 1899 487 1900 411 1901 569 1902 489 1903 569 1902 411 1901 412 1904 570 1905 490 1906 570 1905 412 1904 488 1907 489 1908 413 1909 571 1910 491 1911 571 1910 413 1909 492 1912 490 1913 572 1914 490 1913 492 1912 414 1915 415 1916 493 1917 491 1918 573 1919 491 1918 493 1917 494 1920 492 1921 574 1922 492 1921 494 1920 416 1923 417 1924 495 1925 493 1926 575 1927 493 1926 495 1925 497 1928 494 1929 576 1930 494 1929 497 1928 419 1931 421 1932 499 1933 495 1934 577 1935 495 1934 499 1933 578 1936 496 1937 497 1938 496 1937 578 1936 579 1939 580 1940 581 1941 498 1942 499 1943 498 1942 581 1941 582 1944 418 1945 496 1946 418 1945 582 1944 500 1947 501 1948 583 1949 420 1950 498 1951 420 1950 583 1949 584 1952 422 1953 500 1954 422 1953 584 1952 502 1955 503 1956 585 1957 423 1958 501 1959 423 1958 585 1957 586 1960 424 1961 502 1962 424 1961 586 1960 504 1963 505 1964 587 1965 425 1966 503 1967 425 1966 587 1965 588 1968 426 1969 504 1970 426 1969 588 1968 506 1971 507 1972 589 1973 427 1974 505 1975 427 1974 589 1973 508 1976 506 1977 590 1978 506 1977 508 1976 428 1979 429 1980 509 1981 507 1982 591 1983 507 1982 509 1981 511 1984 592 1985 593 1986 592 1985 511 1984 508 1987 508 1987 511 1984 510 1988 508 1987 510 1988 430 1989 431 1990 513 1991 509 1992 513 1991 512 1993 509 1992 509 1992 512 1993 594 1994 595 1995 594 1994 512 1993 511 1996 514 1997 433 1998 514 1997 511 1996 596 1999 597 2000 512 2001 515 2002 434 2003 515 2002 512 2001 514 2004 516 2005 436 2006 516 2005 514 2004 598 2007 599 2008 515 2009 517 2010 437 2011 517 2010 515 2009 600 2012 438 2013 516 2014 438 2013 600 2012 518 2015 519 2016 601 2017 439 2018 517 2019 439 2018 601 2017 602 2020 440 2021 518 2022 440 2021 602 2020 520 2023 523 2024 603 2025 443 2026 519 2027 443 2026 603 2025 525 2028 579 2029 578 2030 579 2029 525 2028 524 2031 526 2032 527 2033 580 2034 581 2035 580 2034 527 2033 528 2036 525 2037 604 2038 525 2037 528 2036 445 2039 447 2040 529 2041 527 2042 605 2043 527 2042 529 2041 444 2044 606 2045 524 2046 606 2045 444 2044 530 2047 531 2048 446 2049 607 2050 526 2051 607 2050 446 2049 532 2052 528 2053 608 2054 528 2053 532 2052 448 2055 449 2056 533 2057 529 2058 609 2059 529 2058 533 2057 450 2060 610 2061 530 2062 610 2061 450 2060 534 2063 535 2064 451 2065 611 2066 531 2067 611 2066 451 2065 452 2068 612 2069 536 2070 612 2069 452 2068 532 2071 533 2072 453 2073 613 2074 537 2075 613 2074 453 2073 538 2076 534 2077 454 2078 534 2077 538 2076 614 2079 615 2080 539 2081 535 2082 455 2083 535 2082 539 2081 456 2084 616 2085 540 2086 616 2085 456 2084 536 2087 537 2088 457 2089 617 2090 541 2091 617 2090 457 2089 542 2092 538 2093 458 2094 538 2093 542 2092 618 2095 619 2096 543 2097 539 2098 459 2099 539 2098 543 2097 544 2100 540 2101 620 2102 540 2101 544 2100 460 2103 461 2104 545 2105 541 2106 621 2107 541 2106 545 2105 462 2108 622 2109 542 2110 622 2109 462 2108 546 2111 547 2112 463 2113 623 2114 543 2115 623 2114 463 2113 548 2116 544 2117 624 2118 544 2117 548 2116 464 2119 465 2120 549 2121 545 2122 625 2123 545 2122 549 2121 466 2124 626 2125 546 2126 626 2125 466 2124 550 2127 626 2125 550 2127 551 2128 552 2129 553 2130 627 2131 553 2130 467 2132 627 2131 547 2133 627 2131 467 2132 554 2134 628 2135 629 2136 628 2135 554 2134 630 2137 630 2137 554 2134 631 2138 631 2138 554 2134 632 2139 632 2139 554 2134 633 2140 628 2135 548 2141 629 2136 548 2141 628 2135 634 2142 548 2141 634 2142 468 2143 468 2143 634 2142 633 2140 468 2143 633 2140 554 2134 555 2144 635 2145 469 2146 635 2145 636 2147 469 2146 469 2146 636 2147 549 2148 636 2147 637 2149 549 2148 638 2150 549 2148 637 2149 635 2145 555 2144 639 2151 639 2151 555 2144 640 2152 640 2152 555 2144 641 2153 641 2153 555 2144 637 2149 638 2150 637 2149 555 2144 471 2154 642 2155 551 2156 642 2155 471 2154 556 2157 557 2158 472 2159 643 2160 552 2161 643 2160 472 2159 476 2162 644 2163 556 2164 644 2163 476 2162 558 2165 559 2166 477 2167 645 2168 557 2169 645 2168 477 2167 478 2170 646 2171 558 2172 646 2171 478 2170 560 2173 561 2174 479 2175 647 2176 559 2177 647 2176 479 2175 480 2178 648 2179 560 2180 648 2179 480 2178 562 2181 563 2182 481 2183 649 2184 561 2185 649 2184 481 2183 484 2186 650 2187 566 2188 650 2187 484 2186 564 2189 565 2190 485 2191 651 2192 567 2193 651 2192 485 2191 486 2194 652 2195 568 2196 652 2195 486 2194 566 2197 567 2198 487 2199 653 2200 569 2201 653 2200 487 2199 488 2202 654 2203 570 2204 654 2203 488 2202 568 2205 569 2206 489 2207 655 2208 571 2209 655 2208 489 2207 572 2210 570 2211 656 2212 570 2211 572 2210 490 2213 491 2214 573 2215 571 2216 657 2217 571 2216 573 2215 574 2218 572 2219 658 2220 572 2219 574 2218 492 2221 493 2222 575 2223 573 2224 659 2225 573 2224 575 2223 576 2226 574 2227 660 2228 574 2227 576 2226 494 2229 495 2230 577 2231 575 2232 661 2233 575 2232 577 2231 662 2234 497 2235 576 2236 497 2235 662 2234 578 2237 581 2238 663 2239 499 2240 577 2241 499 2240 663 2239 579 2242 582 2243 496 2244 582 2243 579 2242 664 2245 665 2246 580 2247 583 2248 498 2249 583 2248 580 2247 666 2250 500 2251 582 2252 500 2251 666 2250 584 2253 585 2254 667 2255 501 2256 583 2257 501 2256 667 2255 668 2258 502 2259 584 2260 502 2259 668 2258 586 2261 587 2262 669 2263 503 2264 585 2265 503 2264 669 2263 670 2266 504 2267 586 2268 504 2267 670 2266 588 2269 589 2270 671 2271 505 2272 587 2273 505 2272 671 2271 672 2274 506 2275 588 2276 506 2275 672 2274 590 2277 591 2278 673 2279 507 2280 589 2281 507 2280 673 2279 674 2282 508 2283 590 2284 508 2283 674 2282 675 2285 508 2283 675 2285 592 2286 592 2286 675 2285 593 2287 595 2288 676 2289 594 2290 594 2290 676 2289 509 2291 676 2289 677 2292 509 2291 591 2293 509 2291 677 2292 678 2294 511 2295 593 2296 511 2295 678 2294 596 2297 597 2298 679 2299 512 2300 595 2301 512 2300 679 2299 596 2302 598 2303 514 2304 598 2303 596 2302 680 2305 681 2306 597 2307 599 2308 515 2309 599 2308 597 2307 598 2310 600 2311 516 2312 600 2311 598 2310 682 2313 683 2314 599 2315 601 2316 517 2317 601 2316 599 2315 684 2318 518 2319 600 2320 518 2319 684 2318 602 2321 603 2322 685 2323 519 2324 601 2325 519 2324 685 2323 604 2326 578 2327 662 2328 578 2327 604 2326 525 2329 527 2330 605 2331 581 2332 663 2333 581 2332 605 2331 524 2334 664 2335 579 2336 664 2335 524 2334 606 2337 607 2338 526 2339 665 2340 580 2341 665 2340 526 2339 608 2342 604 2343 686 2344 604 2343 608 2342 528 2345 529 2346 609 2347 605 2348 687 2349 605 2348 609 2347 530 2350 688 2351 606 2352 688 2351 530 2350 610 2353 611 2354 531 2355 689 2356 607 2357 689 2356 531 2355 612 2358 608 2359 690 2360 608 2359 612 2358 532 2361 533 2362 613 2363 609 2364 691 2365 609 2364 613 2363 534 2366 692 2367 610 2368 692 2367 534 2366 614 2369 615 2370 535 2371 693 2372 611 2373 693 2372 535 2371 536 2374 694 2375 616 2376 694 2375 536 2374 612 2377 613 2378 537 2379 695 2380 617 2381 695 2380 537 2379 618 2382 614 2383 538 2384 614 2383 618 2382 696 2385 697 2386 619 2387 615 2388 539 2389 615 2388 619 2387 540 2390 698 2391 620 2392 698 2391 540 2390 616 2393 617 2394 541 2395 699 2396 621 2397 699 2396 541 2395 622 2398 618 2399 542 2400 618 2399 622 2398 700 2401 701 2402 623 2403 619 2404 543 2405 619 2404 623 2403 624 2406 620 2407 702 2408 620 2407 624 2406 544 2409 545 2410 625 2411 621 2412 703 2413 621 2412 625 2411 546 2414 704 2415 622 2416 704 2415 546 2414 705 2417 705 2417 546 2414 626 2418 627 2419 547 2420 706 2421 706 2421 547 2420 707 2422 623 2423 707 2422 547 2420 629 2424 624 2425 708 2426 624 2425 629 2424 548 2427 549 2428 638 2429 625 2430 709 2431 625 2430 638 2429 551 2432 710 2433 626 2434 710 2433 551 2432 642 2435 643 2436 552 2437 711 2438 627 2439 711 2438 552 2437 556 2440 712 2441 642 2442 712 2441 556 2440 644 2443 645 2444 557 2445 713 2446 643 2447 713 2446 557 2445 558 2448 714 2449 644 2450 714 2449 558 2448 646 2451 647 2452 559 2453 715 2454 645 2455 715 2454 559 2453 560 2456 716 2457 646 2458 716 2457 560 2456 648 2459 649 2460 561 2461 717 2462 647 2463 717 2462 561 2461 566 2464 718 2465 652 2466 718 2465 566 2464 650 2467 651 2468 567 2469 719 2470 653 2471 719 2470 567 2469 568 2472 720 2473 654 2474 720 2473 568 2472 652 2475 653 2476 569 2477 721 2478 655 2479 721 2478 569 2477 656 2480 654 2481 722 2482 654 2481 656 2480 570 2483 571 2484 657 2485 655 2486 723 2487 655 2486 657 2485 658 2488 656 2489 724 2490 656 2489 658 2488 572 2491 573 2492 659 2493 657 2494 725 2495 657 2494 659 2493 660 2496 658 2497 726 2498 658 2497 660 2496 574 2499 575 2500 661 2501 659 2502 727 2503 659 2502 661 2501 728 2504 576 2505 660 2506 576 2505 728 2504 662 2507 663 2508 729 2509 577 2510 661 2511 577 2510 729 2509 664 2512 666 2513 582 2514 666 2513 664 2512 730 2515 731 2516 665 2517 667 2518 583 2519 667 2518 665 2517 732 2520 584 2521 666 2522 584 2521 732 2520 668 2523 669 2524 733 2525 585 2526 667 2527 585 2526 733 2525 734 2528 586 2529 668 2530 586 2529 734 2528 670 2531 671 2532 735 2533 587 2534 669 2535 587 2534 735 2533 736 2536 588 2537 670 2538 588 2537 736 2536 672 2539 673 2540 737 2541 589 2542 671 2543 589 2542 737 2541 738 2544 590 2545 672 2546 590 2545 738 2544 739 2547 590 2545 739 2547 675 2548 590 2545 675 2548 674 2549 677 2550 676 2551 591 2552 676 2551 740 2553 591 2552 740 2553 741 2554 591 2552 673 2555 591 2552 741 2554 742 2556 593 2557 675 2558 593 2557 742 2556 678 2559 679 2560 743 2561 595 2562 676 2563 595 2562 743 2561 744 2564 596 2565 678 2566 596 2565 744 2564 680 2567 681 2568 745 2569 597 2570 679 2571 597 2570 745 2569 680 2572 682 2573 598 2574 682 2573 680 2572 746 2575 747 2576 681 2577 683 2578 599 2579 683 2578 681 2577 682 2580 684 2581 600 2582 684 2581 682 2580 748 2583 749 2584 683 2585 685 2586 601 2587 685 2586 683 2585 686 2588 662 2589 728 2590 662 2589 686 2588 604 2591 605 2592 687 2593 663 2594 729 2595 663 2594 687 2593 606 2596 730 2597 664 2598 730 2597 606 2596 688 2599 689 2600 607 2601 731 2602 665 2603 731 2602 607 2601 690 2604 686 2605 750 2606 686 2605 690 2604 608 2607 609 2608 691 2609 687 2610 751 2611 687 2610 691 2609 610 2612 752 2613 688 2614 752 2613 610 2612 692 2615 693 2616 611 2617 753 2618 689 2619 753 2618 611 2617 694 2620 690 2621 754 2622 690 2621 694 2620 612 2623 613 2624 695 2625 691 2626 755 2627 691 2626 695 2625 614 2628 756 2629 692 2630 756 2629 614 2628 696 2631 697 2632 615 2633 757 2634 693 2635 757 2634 615 2633 616 2636 758 2637 698 2638 758 2637 616 2636 694 2639 695 2640 617 2641 759 2642 699 2643 759 2642 617 2641 700 2644 696 2645 618 2646 696 2645 700 2644 760 2647 761 2648 701 2649 697 2650 619 2651 697 2650 701 2649 620 2652 762 2653 702 2654 762 2653 620 2652 698 2655 699 2656 621 2657 763 2658 703 2659 763 2658 621 2657 704 2660 700 2661 622 2662 700 2661 704 2660 764 2663 764 2663 704 2660 705 2664 764 2663 705 2664 765 2665 766 2666 706 2667 767 2668 706 2667 707 2669 767 2668 767 2668 707 2669 701 2670 623 2671 701 2670 707 2669 708 2672 702 2673 768 2674 702 2673 708 2672 624 2675 625 2676 709 2677 703 2678 769 2679 703 2678 709 2677 626 2680 770 2681 705 2682 770 2681 626 2680 710 2683 711 2684 627 2685 771 2686 706 2687 771 2686 627 2685 642 2688 772 2689 710 2690 772 2689 642 2688 712 2691 713 2692 643 2693 773 2694 711 2695 773 2694 643 2693 644 2696 774 2697 712 2698 774 2697 644 2696 714 2699 715 2700 645 2701 775 2702 713 2703 775 2702 645 2701 646 2704 776 2705 714 2706 776 2705 646 2704 716 2707 717 2708 647 2709 777 2710 715 2711 777 2710 647 2709 652 2712 778 2713 720 2714 778 2713 652 2712 718 2715 719 2716 653 2717 779 2718 721 2719 779 2718 653 2717 722 2720 720 2721 780 2722 720 2721 722 2720 654 2723 655 2724 723 2725 721 2726 781 2727 721 2726 723 2725 724 2728 722 2729 782 2730 722 2729 724 2728 656 2731 657 2732 725 2733 723 2734 783 2735 723 2734 725 2733 726 2736 724 2737 784 2738 724 2737 726 2736 658 2739 659 2740 727 2741 725 2742 785 2743 725 2742 727 2741 786 2744 660 2745 726 2746 660 2745 786 2744 728 2747 729 2748 787 2749 661 2750 727 2751 661 2750 787 2749 730 2752 732 2753 666 2754 732 2753 730 2752 788 2755 789 2756 731 2757 733 2758 667 2759 733 2758 731 2757 790 2760 668 2761 732 2762 668 2761 790 2760 734 2763 735 2764 791 2765 669 2766 733 2767 669 2766 791 2765 792 2768 670 2769 734 2770 670 2769 792 2768 736 2771 737 2772 793 2773 671 2774 735 2775 671 2774 793 2773 794 2776 672 2777 736 2778 672 2777 794 2776 795 2779 672 2777 795 2779 739 2780 672 2777 739 2780 738 2781 741 2782 740 2783 673 2784 740 2783 796 2785 673 2784 796 2785 797 2786 673 2784 737 2787 673 2784 797 2786 798 2788 675 2789 739 2790 675 2789 798 2788 742 2791 743 2792 799 2793 676 2794 740 2795 676 2794 799 2793 800 2796 678 2797 742 2798 678 2797 800 2796 744 2799 745 2800 801 2801 679 2802 743 2803 679 2802 801 2801 802 2804 680 2805 744 2806 680 2805 802 2804 746 2807 747 2808 803 2809 681 2810 745 2811 681 2810 803 2809 746 2812 748 2813 682 2814 748 2813 746 2812 804 2815 805 2816 747 2817 749 2818 683 2819 749 2818 747 2817 750 2820 728 2821 786 2822 728 2821 750 2820 686 2823 687 2824 751 2825 729 2826 787 2827 729 2826 751 2825 688 2828 788 2829 730 2830 788 2829 688 2828 752 2831 753 2832 689 2833 789 2834 731 2835 789 2834 689 2833 754 2836 750 2837 806 2838 750 2837 754 2836 690 2839 691 2840 755 2841 751 2842 807 2843 751 2842 755 2841 692 2844 808 2845 752 2846 808 2845 692 2844 756 2847 757 2848 693 2849 809 2850 753 2851 809 2850 693 2849 758 2852 754 2853 810 2854 754 2853 758 2852 694 2855 695 2856 759 2857 755 2858 811 2859 755 2858 759 2857 696 2860 812 2861 756 2862 812 2861 696 2860 760 2863 761 2864 697 2865 813 2866 757 2867 813 2866 697 2865 698 2868 814 2869 762 2870 814 2869 698 2868 758 2871 759 2872 699 2873 815 2874 763 2875 815 2874 699 2873 764 2876 760 2877 700 2878 760 2877 764 2876 816 2879 816 2879 764 2876 765 2880 816 2879 765 2880 817 2881 818 2882 766 2883 819 2884 766 2883 767 2885 819 2884 819 2884 767 2885 761 2886 701 2887 761 2886 767 2885 702 2888 820 2889 768 2890 820 2889 702 2888 762 2891 763 2892 703 2893 821 2894 769 2895 821 2894 703 2893 770 2896 765 2897 705 2898 765 2897 770 2896 822 2899 823 2900 771 2901 766 2902 706 2903 766 2902 771 2901 710 2904 824 2905 770 2906 824 2905 710 2904 772 2907 773 2908 711 2909 825 2910 771 2911 825 2910 711 2909 712 2912 826 2913 772 2914 826 2913 712 2912 774 2915 775 2916 713 2917 827 2918 773 2919 827 2918 713 2917 714 2920 828 2921 774 2922 828 2921 714 2920 776 2923 777 2924 715 2925 829 2926 775 2927 829 2926 715 2925 780 2928 778 2929 830 2930 778 2929 780 2928 720 2931 721 2932 781 2933 779 2934 831 2935 779 2934 781 2933 782 2936 780 2937 832 2938 780 2937 782 2936 722 2939 723 2940 783 2941 781 2942 833 2943 781 2942 783 2941 784 2944 782 2945 834 2946 782 2945 784 2944 724 2947 725 2948 785 2949 783 2950 835 2951 783 2950 785 2949 836 2952 726 2953 784 2954 726 2953 836 2952 786 2955 787 2956 837 2957 727 2958 785 2959 727 2958 837 2957 788 2960 790 2961 732 2962 790 2961 788 2960 838 2963 839 2964 789 2965 791 2966 733 2967 791 2966 789 2965 840 2968 734 2969 790 2970 734 2969 840 2968 792 2971 793 2972 841 2973 735 2974 791 2975 735 2974 841 2973 842 2976 736 2977 792 2978 736 2977 842 2976 843 2979 736 2977 843 2979 795 2980 736 2977 795 2980 794 2981 797 2982 796 2983 737 2984 796 2983 844 2985 737 2984 844 2985 845 2986 737 2984 793 2987 737 2984 845 2986 846 2988 739 2989 795 2990 739 2989 846 2988 798 2991 799 2992 847 2993 740 2994 796 2995 740 2994 847 2993 848 2996 742 2997 798 2998 742 2997 848 2996 800 2999 801 3000 849 3001 743 3002 799 3003 743 3002 849 3001 850 3004 744 3005 800 3006 744 3005 850 3004 802 3007 803 3008 851 3009 745 3010 801 3011 745 3010 851 3009 852 3012 746 3013 802 3014 746 3013 852 3012 804 3015 805 3016 853 3017 747 3018 803 3019 747 3018 853 3017 806 3020 786 3021 836 3022 786 3021 806 3020 750 3023 751 3024 807 3025 787 3026 837 3027 787 3026 807 3025 752 3028 838 3029 788 3030 838 3029 752 3028 808 3031 809 3032 753 3033 839 3034 789 3035 839 3034 753 3033 810 3036 806 3037 854 3038 806 3037 810 3036 754 3039 755 3040 811 3041 807 3042 855 3043 807 3042 811 3041 756 3044 856 3045 808 3046 856 3045 756 3044 812 3047 813 3048 757 3049 857 3050 809 3051 857 3050 757 3049 814 3052 810 3053 858 3054 810 3053 814 3052 758 3055 759 3056 815 3057 811 3058 859 3059 811 3058 815 3057 760 3060 860 3061 812 3062 860 3061 760 3060 816 3063 860 3061 816 3063 861 3064 861 3064 816 3063 817 3065 818 3066 819 3067 862 3068 862 3068 819 3067 863 3069 819 3067 761 3070 863 3069 813 3071 863 3069 761 3070 762 3072 864 3073 820 3074 864 3073 762 3072 814 3075 815 3076 763 3077 865 3078 821 3079 865 3078 763 3077 822 3080 817 3081 765 3082 817 3081 822 3080 866 3083 867 3084 823 3085 818 3086 766 3087 818 3086 823 3085 824 3088 822 3089 770 3090 822 3089 824 3088 868 3091 869 3092 825 3093 823 3094 771 3095 823 3094 825 3093 772 3096 870 3097 824 3098 870 3097 772 3096 826 3099 827 3100 773 3101 871 3102 825 3103 871 3102 773 3101 774 3104 872 3105 826 3106 872 3105 774 3104 828 3107 829 3108 775 3109 873 3110 827 3111 873 3110 775 3109 832 3112 830 3113 874 3114 830 3113 832 3112 780 3115 781 3116 833 3117 831 3118 875 3119 831 3118 833 3117 834 3120 832 3121 876 3122 832 3121 834 3120 782 3123 783 3124 835 3125 833 3126 877 3127 833 3126 835 3125 878 3128 784 3129 834 3130 784 3129 878 3128 836 3131 837 3132 879 3133 785 3134 835 3135 785 3134 879 3133 838 3136 840 3137 790 3138 840 3137 838 3136 880 3139 881 3140 839 3141 841 3142 791 3143 841 3142 839 3141 882 3144 792 3145 840 3146 792 3145 882 3144 883 3147 792 3145 883 3147 842 3148 842 3148 883 3147 843 3149 844 3150 884 3151 845 3152 845 3152 884 3151 793 3153 884 3151 885 3154 793 3153 841 3155 793 3153 885 3154 886 3156 795 3157 843 3158 795 3157 886 3156 846 3159 847 3160 887 3161 796 3162 844 3163 796 3162 887 3161 888 3164 798 3165 846 3166 798 3165 888 3164 848 3167 849 3168 889 3169 799 3170 847 3171 799 3170 889 3169 890 3172 800 3173 848 3174 800 3173 890 3172 850 3175 851 3176 891 3177 801 3178 849 3179 801 3178 891 3177 892 3180 802 3181 850 3182 802 3181 892 3180 852 3183 853 3184 893 3185 803 3186 851 3187 803 3186 893 3185 854 3188 836 3189 878 3190 836 3189 854 3188 806 3191 807 3192 855 3193 837 3194 879 3195 837 3194 855 3193 808 3196 880 3197 838 3198 880 3197 808 3196 856 3199 857 3200 809 3201 881 3202 839 3203 881 3202 809 3201 858 3204 854 3205 894 3206 854 3205 858 3204 810 3207 811 3208 859 3209 855 3210 895 3211 855 3210 859 3209 812 3212 896 3213 856 3214 896 3213 812 3212 860 3215 896 3213 860 3215 897 3216 897 3216 860 3215 861 3217 862 3218 863 3219 898 3220 898 3220 863 3219 899 3221 863 3219 813 3222 899 3221 857 3223 899 3221 813 3222 864 3224 858 3225 900 3226 858 3225 864 3224 814 3227 815 3228 865 3229 859 3230 901 3231 859 3230 865 3229 817 3232 902 3233 861 3234 902 3233 817 3232 866 3235 867 3236 818 3237 903 3238 862 3239 903 3238 818 3237 868 3240 866 3241 822 3242 866 3241 868 3240 904 3243 905 3244 869 3245 867 3246 823 3247 867 3246 869 3245 870 3248 868 3249 824 3250 868 3249 870 3248 906 3251 907 3252 871 3253 869 3254 825 3255 869 3254 871 3253 826 3256 908 3257 870 3258 908 3257 826 3256 872 3259 873 3260 827 3261 909 3262 871 3263 909 3262 827 3261 876 3264 874 3265 910 3266 874 3265 876 3264 832 3267 833 3268 877 3269 875 3270 911 3271 875 3270 877 3269 912 3272 834 3273 876 3274 834 3273 912 3272 878 3275 879 3276 913 3277 835 3278 877 3279 835 3278 913 3277 880 3280 882 3281 840 3282 882 3281 880 3280 914 3283 882 3281 914 3283 883 3284 883 3284 914 3283 915 3285 916 3286 917 3287 884 3288 884 3288 917 3287 885 3289 917 3287 881 3290 885 3289 841 3291 885 3289 881 3290 918 3292 843 3293 883 3294 843 3293 918 3292 886 3295 887 3296 919 3297 844 3298 884 3299 844 3298 919 3297 920 3300 846 3301 886 3302 846 3301 920 3300 888 3303 889 3304 921 3305 847 3306 887 3307 847 3306 921 3305 922 3308 848 3309 888 3310 848 3309 922 3308 890 3311 891 3312 923 3313 849 3314 889 3315 849 3314 923 3313 924 3316 850 3317 890 3318 850 3317 924 3316 892 3319 893 3320 925 3321 851 3322 891 3323 851 3322 925 3321 894 3324 878 3325 912 3326 878 3325 894 3324 854 3327 855 3328 895 3329 879 3330 913 3331 879 3330 895 3329 856 3332 914 3333 880 3334 914 3333 856 3332 896 3335 914 3333 896 3335 915 3336 915 3336 896 3335 897 3337 898 3338 899 3339 916 3340 916 3340 899 3339 917 3341 899 3339 857 3342 917 3341 881 3343 917 3341 857 3342 900 3344 894 3345 926 3346 894 3345 900 3344 858 3347 859 3348 901 3349 895 3350 927 3351 895 3350 901 3349 861 3352 928 3353 897 3354 928 3353 861 3352 902 3355 903 3356 862 3357 929 3358 898 3359 929 3358 862 3357 866 3360 930 3361 902 3362 930 3361 866 3360 904 3363 905 3364 867 3365 931 3366 903 3367 931 3366 867 3365 906 3368 904 3369 868 3370 904 3369 906 3368 932 3371 933 3372 907 3373 905 3374 869 3375 905 3374 907 3373 908 3376 906 3377 870 3378 906 3377 908 3376 934 3379 935 3380 909 3381 907 3382 871 3383 907 3382 909 3381 936 3384 876 3385 910 3386 876 3385 936 3384 912 3387 913 3388 937 3389 877 3390 911 3391 877 3390 937 3389 915 3392 918 3393 883 3394 918 3393 915 3392 938 3395 939 3396 916 3397 919 3398 884 3399 919 3398 916 3397 940 3400 886 3401 918 3402 886 3401 940 3400 920 3403 921 3404 941 3405 887 3406 919 3407 887 3406 941 3405 942 3408 888 3409 920 3410 888 3409 942 3408 922 3411 923 3412 943 3413 889 3414 921 3415 889 3414 943 3413 944 3416 890 3417 922 3418 890 3417 944 3416 924 3419 925 3420 945 3421 891 3422 923 3423 891 3422 945 3421 926 3424 912 3425 936 3426 912 3425 926 3424 894 3427 895 3428 927 3429 913 3430 937 3431 913 3430 927 3429 897 3432 938 3433 915 3434 938 3433 897 3432 928 3435 929 3436 898 3437 939 3438 916 3439 939 3438 898 3437 902 3440 946 3441 928 3442 946 3441 902 3440 930 3443 931 3444 903 3445 947 3446 929 3447 947 3446 903 3445 904 3448 948 3449 930 3450 948 3449 904 3448 932 3451 933 3452 905 3453 949 3454 931 3455 949 3454 905 3453 934 3456 932 3457 906 3458 932 3457 934 3456 950 3459 951 3460 935 3461 933 3462 907 3463 933 3462 935 3461 938 3464 940 3465 918 3466 940 3465 938 3464 952 3467 953 3468 939 3469 941 3470 919 3471 941 3470 939 3469 954 3472 920 3473 940 3474 920 3473 954 3472 942 3475 943 3476 955 3477 921 3478 941 3479 921 3478 955 3477 956 3480 922 3481 942 3482 922 3481 956 3480 944 3483 945 3484 957 3485 923 3486 943 3487 923 3486 957 3485 928 3488 952 3489 938 3490 952 3489 928 3488 946 3491 947 3492 929 3493 953 3494 939 3495 953 3494 929 3493 930 3496 958 3497 946 3498 958 3497 930 3496 948 3499 949 3500 931 3501 959 3502 947 3503 959 3502 931 3501 932 3504 960 3505 948 3506 960 3505 932 3504 950 3507 951 3508 933 3509 961 3510 949 3511 961 3510 933 3509 952 3512 954 3513 940 3514 954 3513 952 3512 962 3515 963 3516 953 3517 955 3518 941 3519 955 3518 953 3517 964 3520 942 3521 954 3522 942 3521 964 3520 956 3523 957 3524 965 3525 943 3526 955 3527 943 3526 965 3525 946 3528 962 3529 952 3530 962 3529 946 3528 958 3531 959 3532 947 3533 963 3534 953 3535 963 3534 947 3533 948 3536 966 3537 958 3538 966 3537 948 3536 960 3539 961 3540 949 3541 967 3542 959 3543 967 3542 949 3541 962 3544 964 3545 954 3546 964 3545 962 3544 968 3547 969 3548 963 3549 965 3550 955 3551 965 3550 963 3549 958 3552 968 3553 962 3554 968 3553 958 3552 966 3555 967 3556 959 3557 969 3558 963 3559 969 3558 959 3557</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10595\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10596\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10600\">-313.325629921014 49.25091219144827 7807.671706458655 -258.1451232904808 85.74568675550938 7861.800199003314 -258.0220638076451 84.85878325246915 7807.217803381437 -313.448689403864 50.1378156944885 7862.254102080532 -313.448689403864 50.1378156944885 7862.254102080532 -313.325629921014 49.25091219144827 7807.671706458655 -258.1451232904808 85.74568675550938 7861.800199003314 -258.0220638076451 84.85878325246915 7807.217803381437 -375.9614367389091 29.16777568198052 7807.856818783107 -376.0844962217503 30.05467918502893 7862.439214404999 -376.0844962217503 30.05467918502893 7862.439214404999 -375.9614367389091 29.16777568198052 7807.856818783107 -213.8195850359484 133.5647712970223 7806.526042296036 -213.9426445187719 134.4516748000766 7861.10843791792 -213.9426445187719 134.4516748000766 7861.10843791792 -213.8195850359484 133.5647712970223 7806.526042296036 -613.1488950721548 114.1769828367588 7805.940759064893 -601.8256160743412 244.252245560729 7803.852709099089 -604.1516962495571 292.1860737677188 7803.068593160429 -564.438220489445 69.98200992968111 7806.768699762498 -587.1709793156019 198.5541332912127 7804.628292643737 -561.1864752523684 158.2059877934947 7805.342489057691 -505.9468785471913 39.89898152305284 7807.389388121518 -525.6429048927755 125.9574685003353 7805.946627035527 -482.9625038192518 104.0062587098561 7806.399535572443 -441.6609575372344 25.97800628824064 7807.760525255823 -436.0538708322735 93.84829709318785 7806.670349700097 -375.9614367389091 29.16777568198052 7807.856818783107 -388.1137517497091 96.1758319476877 7806.740613883349 -342.409186462238 110.8302456194552 7806.605539734085 -313.325629921014 49.25091219144827 7807.671706458655 -302.0548655638517 136.8128640343128 7806.274332332378 -258.0220638076451 84.85878325246915 7807.217803381437 -269.8008693351053 172.3530146855991 7805.769562915423 -247.8452543167325 215.0286950393096 7805.125630684691 -213.8195850359484 133.5647712970223 7806.526042296036 -237.6842593888584 261.931628004233 7804.386418557541 -228.6870605666359 439.9407189334658 7801.514252653194 -193.0766053180964 384.645615893901 7802.493022899268 -183.7305194861615 192.0496437303294 7805.643565577268 -172.9931630798433 322.0186526145275 7803.555921118964 -169.8053872509731 256.3277531468765 7804.630512555131 -668.8427925584894 232.0990491557787 7803.899090599146 -658.1054361526298 362.0680580398897 7801.811446140812 -672.0305683874384 297.7899486250718 7802.82449916293 -648.7593503197353 169.4720858748286 7804.961988818855 -628.0163706028453 420.5529304732007 7800.928969422003 -583.8138918311488 469.2589185177516 7800.237208336624 -593.9907013220637 339.0890067309059 7802.329381033408 -572.0350863036899 381.7646870846191 7801.685448802681 -528.510325717758 504.8667895787777 7799.783305259437 -539.7810900749297 417.3048377359118 7801.180679385688 -499.4267691765406 443.2874561507737 7800.849471984028 -465.8745188998711 524.9499260882457 7799.598192934974 -453.7222038890852 457.9418698225319 7800.714397834699 -400.1749981015439 528.1396954819862 7799.694486462208 -405.7820848065175 460.2694046770317 7800.784662017971 -358.8734518195328 450.1114430603683 7801.055476145602 -335.8890770916036 514.2187202471652 7800.065623596575 -316.1930507460006 428.1602332698941 7801.508384682519 -277.3977351493379 484.1356918405467 7800.686311955523 -280.6494803864096 395.9117139767346 7802.112522660346 -254.6649763222229 355.5635684775285 7802.826719074338 -240.0103395639953 309.8654562095709 7803.602302619024 -237.6842593888584 261.931628004233 7804.386418557541 -240.0103395639953 309.8654562095709 7803.602302619024 -228.6870605666359 439.9407189334658 7801.514252653194 -254.6649763222229 355.5635684775285 7802.826719074338 -277.3977351493379 484.1356918405467 7800.686311955523 -280.6494803864096 395.9117139767346 7802.112522660346 -316.1930507460006 428.1602332698941 7801.508384682519 -335.8890770916036 514.2187202471652 7800.065623596575 -358.8734518195328 450.1114430603683 7801.055476145602 -400.1749981015439 528.1396954819862 7799.694486462208 -405.7820848065175 460.2694046770317 7800.784662017971 -453.7222038890852 457.9418698225319 7800.714397834699 -465.8745188998711 524.9499260882457 7799.598192934974 -499.4267691765406 443.2874561507737 7800.849471984028 -528.510325717758 504.8667895787777 7799.783305259437 -539.7810900749297 417.3048377359118 7801.180679385688 -572.0350863036899 381.7646870846191 7801.685448802681 -583.8138918311488 469.2589185177516 7800.237208336624 -593.9907013220637 339.0890067309059 7802.329381033408 -604.1516962495571 292.1860737677188 7803.068593160429 -628.0163706028453 420.5529304732007 7800.928969422003 -613.1488950721548 114.1769828367588 7805.940759064893 -648.7593503197353 169.4720858748286 7804.961988818855 -658.1054361526298 362.0680580398897 7801.811446140812 -668.8427925584894 232.0990491557787 7803.899090599146 -672.0305683874384 297.7899486250718 7802.82449916293 -169.8053872509731 256.3277531468765 7804.630512555131 -183.7305194861615 192.0496437303294 7805.643565577268 -172.9931630798433 322.0186526145275 7803.555921118964 -193.0766053180964 384.645615893901 7802.493022899268 -213.8195850359484 133.5647712970223 7806.526042296036 -247.8452543167325 215.0286950393096 7805.125630684691 -258.0220638076451 84.85878325246915 7807.217803381437 -269.8008693351053 172.3530146855991 7805.769562915423 -302.0548655638517 136.8128640343128 7806.274332332378 -313.325629921014 49.25091219144827 7807.671706458655 -342.409186462238 110.8302456194552 7806.605539734085 -375.9614367389091 29.16777568198052 7807.856818783107 -388.1137517497091 96.1758319476877 7806.740613883349 -436.0538708322735 93.84829709318785 7806.670349700097 -441.6609575372344 25.97800628824064 7807.760525255823 -482.9625038192518 104.0062587098561 7806.399535572443 -505.9468785471913 39.89898152305284 7807.389388121518 -525.6429048927755 125.9574685003353 7805.946627035527 -561.1864752523684 158.2059877934947 7805.342489057691 -564.438220489445 69.98200992968111 7806.768699762498 -587.1709793156019 198.5541332912127 7804.628292643737 -601.8256160743412 244.252245560729 7803.852709099089 -441.7840170200777 26.864909791282 7862.342920877699 -441.6609575372344 25.97800628824064 7807.760525255823 -441.7840170200777 26.864909791282 7862.342920877699 -441.6609575372344 25.97800628824064 7807.760525255823 -183.7305194861615 192.0496437303294 7805.643565577268 -183.8535789689831 192.9365472333815 7860.22596119914 -183.8535789689831 192.9365472333815 7860.22596119914 -183.7305194861615 192.0496437303294 7805.643565577268 -506.0699380300398 40.78588502609875 7861.971783743426 -505.9468785471913 39.89898152305284 7807.389388121518 -506.0699380300398 40.78588502609875 7861.971783743426 -505.9468785471913 39.89898152305284 7807.389388121518 -169.8053872509731 256.3277531468765 7804.630512555131 -169.9284467337993 257.2146566499322 7859.212908177015 -169.9284467337993 257.2146566499322 7859.212908177015 -169.8053872509731 256.3277531468765 7804.630512555131 -172.9931630798433 322.0186526145275 7803.555921118964 -173.1162225626745 322.90555611758 7858.138316740829 -173.1162225626745 322.90555611758 7858.138316740829 -172.9931630798433 322.0186526145275 7803.555921118964 -193.0766053180964 384.645615893901 7802.493022899268 -193.199664800924 385.5325193969585 7857.07541852114 -193.199664800924 385.5325193969585 7857.07541852114 -193.0766053180964 384.645615893901 7802.493022899268 -228.6870605666359 439.9407189334658 7801.514252653194 -228.8101200494734 440.8276224365167 7856.096648275073 -228.8101200494734 440.8276224365167 7856.096648275073 -228.6870605666359 439.9407189334658 7801.514252653194 -277.5207946321739 485.0225953436017 7855.268707577406 -277.3977351493379 484.1356918405467 7800.686311955523 -277.5207946321739 485.0225953436017 7855.268707577406 -277.3977351493379 484.1356918405467 7800.686311955523 -336.012136574432 515.1056237502274 7854.648019218462 -335.8890770916036 514.2187202471652 7800.065623596575 -336.012136574432 515.1056237502274 7854.648019218462 -335.8890770916036 514.2187202471652 7800.065623596575 -400.2980575843793 529.0265989850458 7854.276882084095 -400.1749981015439 528.1396954819862 7799.694486462208 -400.2980575843793 529.0265989850458 7854.276882084095 -400.1749981015439 528.1396954819862 7799.694486462208 -465.9975783827218 525.8368295913014 7854.180588556837 -465.8745188998711 524.9499260882457 7799.598192934974 -465.9975783827218 525.8368295913014 7854.180588556837 -465.8745188998711 524.9499260882457 7799.598192934974 -528.510325717758 504.8667895787777 7799.783305259437 -528.6333852006114 505.7536930818338 7854.365700881303 -528.6333852006114 505.7536930818338 7854.365700881303 -528.510325717758 504.8667895787777 7799.783305259437 -583.8138918311488 469.2589185177516 7800.237208336624 -583.9369513139839 470.1458220208118 7854.819603958537 -583.9369513139839 470.1458220208118 7854.819603958537 -583.8138918311488 469.2589185177516 7800.237208336624 -628.1394300856899 421.4398339762601 7855.511365043953 -628.0163706028453 420.5529304732007 7800.928969422003 -628.1394300856899 421.4398339762601 7855.511365043953 -628.0163706028453 420.5529304732007 7800.928969422003 -658.2284956354673 362.9549615429468 7856.393841762788 -658.1054361526298 362.0680580398897 7801.811446140812 -658.2284956354673 362.9549615429468 7856.393841762788 -658.1054361526298 362.0680580398897 7801.811446140812 -672.1536278702931 298.6768521281389 7857.406894784847 -672.0305683874384 297.7899486250718 7802.82449916293 -672.1536278702931 298.6768521281389 7857.406894784847 -672.0305683874384 297.7899486250718 7802.82449916293 -668.9658520413201 232.9859526588363 7858.481486221034 -668.8427925584894 232.0990491557787 7803.899090599146 -668.9658520413201 232.9859526588363 7858.481486221034 -668.8427925584894 232.0990491557787 7803.899090599146 -648.8824098025674 170.3589893778827 7859.544384440734 -648.7593503197353 169.4720858748286 7804.961988818855 -648.8824098025674 170.3589893778827 7859.544384440734 -648.7593503197353 169.4720858748286 7804.961988818855 -613.2719545549901 115.0638863398073 7860.523154686784 -613.1488950721548 114.1769828367588 7805.940759064893 -613.2719545549901 115.0638863398073 7860.523154686784 -613.1488950721548 114.1769828367588 7805.940759064893 -564.438220489445 69.98200992968111 7806.768699762498 -564.5612799722891 70.86891343273271 7861.351095384446 -564.5612799722891 70.86891343273271 7861.351095384446 -564.438220489445 69.98200992968111 7806.768699762498</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10600\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10597\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10601\">-0.4270071307208042 0.9041127566886529 -0.01565354612957276 -0.6464931587328174 0.762794018415518 -0.01385211829181346 -0.64649315873283 0.7627940184155075 -0.01385211829181332 -0.4270071307207768 0.9041127566886658 -0.01565354612957291 0.4270071307207768 -0.9041127566886658 0.01565354612957291 0.4270071307208042 -0.9041127566886529 0.01565354612957276 0.6464931587328174 -0.762794018415518 0.01385211829181346 0.64649315873283 -0.7627940184155075 0.01385211829181332 -0.1784212724128223 0.9838177047104375 -0.01638821066729788 -0.1784212724128061 0.9838177047104405 -0.01638821066729789 0.1784212724128061 -0.9838177047104405 0.01638821066729789 0.1784212724128223 -0.9838177047104375 0.01638821066729788 -0.8219217463576578 0.5694921283640829 -0.01110669148419466 -0.8219217463576666 0.5694921283640703 -0.01110669148419448 0.8219217463576666 -0.5694921283640703 0.01110669148419448 0.8219217463576578 -0.5694921283640829 0.01110669148419466 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 -0.002254260307441729 0.01624670701816616 0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.002254260307441729 -0.01624670701816616 -0.9998654723619234 0.08232370075505775 0.9964771019918397 -0.01600604573079834 0.08232370075500646 0.9964771019918439 -0.01600604573079852 -0.08232370075505775 -0.9964771019918397 0.01600604573079834 -0.08232370075500646 -0.9964771019918439 0.01600604573079852 -0.9413377252581401 0.3373802908948645 -0.00760436200657885 -0.9413377252581435 0.3373802908948549 -0.007604362006578704 0.9413377252581435 -0.3373802908948549 0.007604362006578704 0.9413377252581401 -0.3373802908948645 0.00760436200657885 0.3374584497627973 0.9412282315287583 -0.01453309522901856 0.3374584497628082 0.9412282315287543 -0.01453309522901847 -0.3374584497627973 -0.9412282315287583 0.01453309522901856 -0.3374584497628082 -0.9412282315287543 0.01453309522901847 -0.9966030938164199 0.08227654414846047 -0.003583807824992347 -0.996603093816421 0.08227654414844707 -0.003583807824992132 0.996603093816421 -0.08227654414844707 0.003583807824992132 0.9966030938164199 -0.08227654414846047 0.003583807824992347 -0.9839516084955945 -0.178434213113245 0.0006809769373412192 -0.9839516084955927 -0.1784342131132553 0.0006809769373413912 0.9839516084955927 0.1784342131132553 -0.0006809769373413912 0.9839516084955945 0.178434213113245 -0.0006809769373412192 -0.9042454471127006 -0.4269849736277816 0.00489935424675202 -0.9042454471126958 -0.426984973627791 0.00489935424675218 0.9042454471126958 0.426984973627791 -0.00489935424675218 0.9042454471127006 0.4269849736277816 -0.00489935424675202 -0.7629164528453349 -0.6464374138155953 0.008783848660837977 -0.7629164528453409 -0.6464374138155885 0.008783848660837855 0.7629164528453409 0.6464374138155885 -0.008783848660837855 0.7629164528453349 0.6464374138155953 -0.008783848660837977 -0.5695959630956182 -0.8218362125402065 0.01206973830469832 -0.5695959630956199 -0.8218362125402053 0.0120697383046983 0.5695959630956182 0.8218362125402065 -0.01206973830469832 0.5695959630956199 0.8218362125402053 -0.0120697383046983 -0.3374584497627993 -0.9412282315287539 0.01453309522926923 -0.3374584497627221 -0.9412282315287814 0.01453309522926985 0.3374584497627993 0.9412282315287539 -0.01453309522926923 0.3374584497627221 0.9412282315287814 -0.01453309522926985 -0.08232370075505036 -0.996477101991836 0.01600604573106691 -0.08232370075504056 -0.9964771019918368 0.01600604573106695 0.08232370075505036 0.996477101991836 -0.01600604573106691 0.08232370075504056 0.9964771019918368 -0.01600604573106695 0.1784212724128488 -0.9838177047104286 0.01638821066755305 0.1784212724127446 -0.9838177047104474 0.01638821066755312 -0.1784212724128488 0.9838177047104286 -0.01638821066755305 -0.1784212724127446 0.9838177047104474 -0.01638821066755312 0.427007130720807 -0.9041127566886472 0.01565354612983158 0.4270071307208217 -0.9041127566886401 0.01565354612983149 -0.4270071307208217 0.9041127566886401 -0.01565354612983149 -0.427007130720807 0.9041127566886472 -0.01565354612983158 0.6464931587328457 -0.7627940184154896 0.01385211829206953 0.6464931587328204 -0.7627940184155109 0.01385211829206982 -0.6464931587328204 0.7627940184155109 -0.01385211829206982 -0.6464931587328457 0.7627940184154896 -0.01385211829206953 0.8219217463576974 -0.5694921283640211 0.01110669148442359 0.821921746357656 -0.5694921283640809 0.01110669148442446 -0.8219217463576974 0.5694921283640211 -0.01110669148442359 -0.821921746357656 0.5694921283640809 -0.01110669148442446 0.9413377252581506 -0.3373802908948295 0.007604362006812806 0.9413377252581378 -0.3373802908948654 0.00760436200681336 -0.9413377252581506 0.3373802908948295 -0.007604362006812806 -0.9413377252581378 0.3373802908948654 -0.00760436200681336 0.9966030938164161 -0.08227654414849828 0.003583807825228362 0.9966030938164211 -0.08227654414843662 0.003583807825227371 -0.9966030938164161 0.08227654414849828 -0.003583807825228362 -0.9966030938164211 0.08227654414843662 -0.003583807825227371 0.9839516084955979 0.1784342131132274 -0.0006809769371280171 0.9839516084955897 0.1784342131132728 -0.0006809769371287733 -0.9839516084955979 -0.1784342131132274 0.0006809769371280171 -0.9839516084955897 -0.1784342131132728 0.0006809769371287733 0.9042454471127079 0.4269849736277682 -0.004899354246539127 0.9042454471126971 0.4269849736277914 -0.004899354246539527 -0.9042454471127079 -0.4269849736277682 0.004899354246539127 -0.9042454471126971 -0.4269849736277914 0.004899354246539527 0.7629164528453336 0.6464374138156002 -0.008783848660600576 0.7629164528453173 0.6464374138156194 -0.008783848660600925 -0.7629164528453336 -0.6464374138156002 0.008783848660600576 -0.7629164528453173 -0.6464374138156194 0.008783848660600925 0.5695959630956249 0.8218362125402053 -0.01206973830445635 0.5695959630956166 0.8218362125402109 -0.01206973830445646 -0.5695959630956166 -0.8218362125402109 0.01206973830445646 -0.5695959630956249 -0.8218362125402053 0.01206973830445635</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID10601\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10599\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID10602\">-47.67172724229775 92.70708103445037 -47.05143907356076 93.17285566463144 -47.67172729894546 93.17285563533338 -47.05143901691307 92.70708106374836 -26.65397656556697 153.5481179637464 -26.65397653081315 152.5371968628096 -27.87206876476507 153.5481179218702 -27.87206873001103 152.5371968209334 -47.67172718564693 92.24130643356526 -47.0514390169083 92.70708106374751 -47.67172724229455 92.7070810344495 -47.05143896026053 92.24130646286334 -23.20517924147538 153.548117959398 -23.20517920136675 152.537196858461 -24.42327144067331 153.5481179110697 -24.42327140056489 152.5371968101329 -47.05143907356249 93.1728556646312 -47.67172735559225 93.63863023621396 -47.67172729894429 93.17285563533311 -47.05143913021038 93.63863026551218 -29.46293614850089 153.5481180922628 -28.24484394930265 153.5481181248336 -29.46293612146956 152.5371969913258 -28.24484392227167 152.5371970238967 -41.48855236406832 70.76807948527731 -42.72760529616174 69.770901910774 -43.09952765213106 69.36945113335491 -41.75239298922623 71.38171223967716 -42.53508412840895 70.21866206768191 -42.53508414829861 70.68221748931116 -42.26209390969693 71.93188031163945 -42.72760535446858 71.12997763978763 -43.09952774487486 71.53142840479792 -42.98291985007119 72.38109065625561 -43.6255054232419 71.8592115781353 -43.86574771373336 72.69873033089533 -44.2696938800084 72.09098927822413 -44.98819273641757 72.21096623783413 -44.85041424071721 72.86315271665626 -45.73203748278032 72.21096622543918 -45.86981603444686 72.86315269966956 -46.45053632889364 72.09098924188398 -47.09472476577054 71.85921152032643 -46.85448254732093 72.69873028109294 -47.62070241600965 71.53142832945996 -49.231677704053 70.13279997754962 -49.23167773131063 70.76807935625081 -47.7373103837255 72.38109057703147 -48.96783715881065 71.38171211944362 -48.45813628555151 71.93188020839254 -41.75239290931732 69.51916734338505 -42.98291968439576 68.51978888579551 -42.26209378258921 68.96899925442239 -41.48855233681064 70.13280010659328 -43.86574752080034 68.20214918173399 -44.85041403367438 68.03772676315739 -43.62550530235063 69.04166794250057 -44.26969373922756 68.809890220943 -45.86981582740435 68.03772674617076 -44.98819258534112 68.6899132373878 -45.73203733170394 68.68991322499284 -46.85448235438811 68.20214913193165 -46.45053618811283 68.80989018460282 -47.73731021805031 68.51978880657137 -47.09472464487937 69.04166788469168 -47.62070232324653 69.36945105802904 -48.45813615842427 68.96899915118753 -47.99262471365297 69.77090182303934 -48.96783707889522 69.51916722314979 -48.18514591982292 70.21866197351581 -48.1851459397125 70.68221739516213 -47.99262477196612 71.12997755205471 -0.7110969215488199 30.92042789442325 -1.360845461226742 31.52692575244602 -2.889867629321415 33.40039298506158 -2.145427552765391 31.94459040050316 -4.107238554072923 33.35848072770592 -3.011375223209598 32.14495868305279 -3.899675569864862 32.11437583276356 -5.272280880036981 33.00291781560793 -4.749792392092481 31.85492602034186 -6.305598898022412 32.35793527363234 -5.503791633341848 31.38429032174354 -6.110289491364659 30.73454178206563 -7.13677369274253 31.46748759613017 -6.527954139421599 29.94995969052712 -7.709162075518242 30.39225732078894 -6.728322421971221 29.08401202008275 -6.697739571682018 28.19571167342727 -7.983756723980164 29.20551961397089 -6.438289759260428 27.34559485119974 -5.967654060679546 26.59159560997824 -7.941844466624429 27.9881486892195 -3.788883352889613 24.11163051931212 -4.975621059675422 24.38622516776652 -7.586281554526586 26.82310636325542 -6.050851335043728 24.95861355055668 -6.941299012568141 25.78978834529769 0.2625480303398935 31.72223515910379 0.907530572315622 30.6889171411182 -0.627899647162268 32.553409953824 -1.703129922503568 33.1257983365997 1.263093484413369 29.52387481515415 -0.2404612229505521 30.16642865317376 1.305005741769137 28.30650389040272 0.01898858947101578 29.31631183094628 0.04957143976031331 28.42801148429107 1.030411093307445 27.11976618358501 -0.1507968427893198 27.56206381384678 0.4580227105316177 26.04453590824368 -0.568461490846361 26.77748172230796 -1.174959348869122 26.1277331826301 -0.3731520841884919 25.15408823074155 -1.928958590118472 25.65709748403192 -1.406470102174017 24.50910568876562 -2.779075412346043 25.39764767161039 -3.667375759001335 25.36706482132115 -2.571512428138059 24.15354277666793 -4.53332342941367 25.56743310386331 -5.31790552097922 25.98509775193453 -47.05143890361462 91.77553186197534 -47.67172718564832 92.24130643356124 -47.67172712900043 91.77553183267732 -47.05143896026233 92.24130646285927 -19.35157401445635 153.5481180621119 -18.13348181525833 153.5481181135986 -19.35157397172648 152.5371969611748 -18.1334817725285 152.5371970126618 -47.05143913021099 93.6386302655104 -47.67172741224361 94.10440483709529 -47.67172735559576 93.63863023621221 -47.05143918685897 94.10440486639347 -29.08745860871209 153.5481183775218 -27.86936640951405 153.5481183985673 -29.08745859124598 152.537197276585 -27.86936639204792 152.5371972976303 -47.05143884696146 91.30975726109396 -47.67172712899762 91.77553183268164 -47.67172707234991 91.30975723179601 -47.05143890360955 91.77553186197964 -13.00260428433253 153.5481183342135 -11.78451208513432 153.5481183853506 -13.00260424189339 152.5371972332767 -11.78451204269529 152.5371972844131 -47.05143918685691 94.10440486639243 -47.67172746888971 94.57017943797746 -47.67172741224174 94.10440483709425 -47.05143924350476 94.57017946727565 -26.77122431922863 153.5481187023659 -25.55313212003053 153.5481187104516 -26.77122431251795 152.5371976014289 -25.55313211331989 152.5371976095149 -47.05143924351036 94.57017946727585 -47.67172752554278 95.03595403886065 -47.67172746889499 94.57017943797769 -47.05143930015838 95.0359540681588 -22.67208081912146 153.5481189810488 -21.45398861992345 153.5481189756241 -22.67208082362361 152.5371978801122 -21.45398862442556 152.5371978746871 -47.05143930015275 95.03595406815778 -47.6717275821857 95.50172863974314 -47.67172752553788 95.03595403885964 -47.0514393568005 95.5017286690413 -17.069377963767 153.5481191402421 -15.8512857645689 153.5481191216762 -17.06937797917504 152.5371980393054 -15.851285779977 152.5371980207396 -47.05143935679909 95.5017286690467 -47.67172763883418 95.96750324063355 -47.67172758218628 95.50172863974856 -47.05143941344693 95.96750326993168 -10.34493069385432 153.5481191386084 -9.126838494656267 153.548119108167 -10.3449307191183 152.5371980376715 -9.126838519920241 152.5371980072302 -47.67172763883876 95.96750324062944 -47.05143947009881 96.43327787081297 -47.6717276954867 96.43327784151481 -47.05143941345092 95.96750326992759 -1.738906778956046 153.5481189375279 -1.738906812354204 152.537197836591 -2.95699897815406 153.5481189777703 -2.956999011552187 152.5371978768334 -47.67172769548566 96.43327784151367 -47.05143952674612 96.89905247169689 -47.67172775213355 96.89905244239876 -47.05143947009827 96.43327787081184 5.809034045242892 153.5481186545023 5.809034005986593 152.5371975535653 4.590941846044814 153.5481187018036 4.590941806788454 152.5371976008665 -47.67172673042811 88.38400881611298 -47.05143856105671 88.84978344597175 -47.67172678644636 88.8497834169996 -47.05143850503849 88.38400884508508 13.00260428433265 153.5481183342206 13.00260424189332 152.5371972332835 11.78451208513469 153.5481183853559 11.78451204269548 152.5371972844189 -47.6717267864513 88.84978341699943 -47.0514386170801 89.31555804685748 -47.6717268424682 89.3155580178852 -47.0514385610629 88.8497834459716 19.35157401445584 153.548118062117 19.35157397172585 152.53719696118 18.13348181525754 153.5481181136044 18.13348177252784 152.5371970126679 -47.0514382804875 86.6520112522564 -47.67172656251726 87.11778582383977 -47.67172650586979 86.65201122295839 -47.05143833713494 87.11778585313779 23.20517924147556 153.5481179594024 24.4232714406736 153.5481179110741 23.20517920136711 152.5371968584658 24.42327140056509 152.5371968101375 -47.05143833713476 87.11778585313826 -47.67172661916547 87.58356042472201 -47.67172656251749 87.11778582384022 -47.05143839378222 87.5835604540199 26.65397656556704 153.5481179637476 27.87206876476498 153.5481179218711 26.65397653081278 152.5371968628101 27.87206873001106 152.5371968209344 -47.67172661915994 87.58356042472359 -47.05143845042335 88.04933505490354 -47.67172667580753 88.04933502560559 -47.05143839377614 87.58356045402148 29.46293614850087 153.5481180922636 29.46293612146962 152.5371969913261 28.24484394930287 153.5481181248348 28.24484392227175 152.5371970238967 -47.67172667581086 88.04933502560736 -47.05143850707289 88.51510965578785 -47.671726732458 88.5151096264899 -47.05143845042608 88.04933505490531 29.08745860871204 153.5481183775214 29.08745859124602 152.5371972765832 27.86936640951395 153.5481183985679 27.86936639204791 152.5371972976293 -47.67172673245365 88.51510962648526 -47.05143856371677 88.98088425665308 -47.67172678910107 88.98088422735518 -47.0514385070687 88.51510965578322 26.77122431922864 153.5481187023645 26.77122431251801 152.5371976014258 25.5531321200635 153.5481187104495 25.55313211335274 152.5371976095119 -47.67172678910208 88.98088422735596 -47.05143862036577 89.44665885754789 -47.67172684574958 89.44665882824991 -47.05143856371795 88.98088425665387 22.67208081915311 153.5481189810456 22.67208082365499 152.5371978801079 21.45398861992441 153.5481189756204 21.45398862442648 152.5371978746833 -47.67172684575267 89.4466588282544 -47.05143867701477 89.91243345844791 -47.67172690240045 89.91243342914991 -47.05143862036688 89.44665885755239 17.06937796376598 153.5481191402377 17.06937797917401 152.5371980393007 15.85128576453726 153.5481191216715 15.85128577994533 152.5371980207346 -47.67172690240162 89.91243342914737 -47.05143873366107 90.37820805931847 -47.6717269590493 90.37820803002042 -47.05143867701352 89.91243345844541 10.34493069382198 153.5481191386023 10.34493071908596 152.5371980376654 9.126838494656756 153.548119108161 9.126838519920797 152.5371980072239 -47.05143873366293 90.37820805932023 -47.67172701570107 90.843982630909 -47.67172695905278 90.37820803002221 -47.0514387903106 90.84398266020698 1.738906778955681 153.54811893752 2.956998978153576 153.5481189777626 1.738906812353758 152.5371978365818 2.956999011551801 152.5371978768255 -47.05143879030941 90.84398266020504 -47.67172707234681 91.30975723179392 -47.67172701569997 90.84398263090705 -47.0514388469567 91.30975726109189 -5.80903404524217 153.548118654496 -4.590941846044165 153.5481187017967 -5.809034005985994 152.5371975535586 -4.590941806787956 152.5371976008585</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID10602\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10598\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10596\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10597\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10598\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10599\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 8 3 9 0 10 3 9 8 8 9 11 1 16 12 17 2 18 12 17 1 16 13 19 16 24 17 25 18 26 17 25 16 24 19 27 17 25 19 27 20 28 20 28 19 27 21 29 21 29 19 27 22 30 21 29 22 30 23 31 23 31 22 30 24 32 24 32 22 30 25 33 24 32 25 33 26 34 26 34 25 33 27 35 26 34 27 35 28 36 28 36 27 35 29 37 29 37 27 35 30 38 29 37 30 38 31 39 31 39 30 38 32 40 31 39 32 40 33 41 33 41 32 40 34 42 34 42 32 40 35 43 34 42 35 43 36 44 36 44 35 43 37 45 37 45 35 43 38 46 38 46 35 43 39 47 38 46 39 47 40 48 40 48 39 47 41 49 42 50 43 51 44 52 43 51 42 50 45 53 43 51 45 53 46 54 46 54 45 53 16 24 46 54 16 24 18 26 46 54 18 26 47 55 47 55 18 26 48 56 47 55 48 56 49 57 47 55 49 57 50 58 50 58 49 57 51 59 50 58 51 59 52 60 50 58 52 60 53 61 53 61 52 60 54 62 53 61 54 62 55 63 55 63 54 62 56 64 55 63 56 64 57 65 55 63 57 65 58 66 58 66 57 65 59 67 58 66 59 67 60 68 60 68 59 67 61 69 60 68 61 69 62 70 60 68 62 70 37 45 37 45 62 70 63 71 37 45 63 71 36 44 112 120 8 121 113 122 8 121 112 120 9 123 13 128 116 129 12 130 116 129 13 128 117 131 120 136 113 137 121 138 113 137 120 136 112 139 117 144 124 145 116 146 124 145 117 144 125 147 125 152 128 153 124 154 128 153 125 152 129 155 129 160 132 161 128 162 132 161 129 160 133 163 133 168 136 169 132 170 136 169 133 168 137 171 136 176 140 177 141 178 140 177 136 176 137 179 141 184 144 185 145 186 144 185 141 184 140 187 145 192 148 193 149 194 148 193 145 192 144 195 149 200 152 201 153 202 152 201 149 200 148 203 152 208 156 209 153 210 156 209 152 208 157 211 157 216 160 217 156 218 160 217 157 216 161 219 160 224 164 225 165 226 164 225 160 224 161 227 165 232 168 233 169 234 168 233 165 232 164 235 169 240 172 241 173 242 172 241 169 240 168 243 173 248 176 249 177 250 176 249 173 248 172 251 177 256 180 257 181 258 180 257 177 256 176 259 181 264 184 265 185 266 184 265 181 264 180 267 184 272 188 273 185 274 188 273 184 272 189 275 189 280 121 281 188 282 121 281 189 280 120 283</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10598\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10599\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 10 12 11 13 4 14 5 15 4 14 11 13 14 20 6 21 15 22 7 23 15 22 6 21 64 72 65 73 66 74 65 73 67 75 66 74 66 74 67 75 68 76 67 75 69 77 68 76 69 77 70 78 68 76 68 76 70 78 71 79 70 78 72 80 71 79 71 79 72 80 73 81 72 80 74 82 73 81 74 82 75 83 73 81 73 81 75 83 76 84 75 83 77 85 76 84 76 84 77 85 78 86 77 85 79 87 78 86 79 87 80 88 78 86 78 86 80 88 81 89 80 88 82 90 81 89 82 90 83 91 81 89 81 89 83 91 84 92 83 91 85 93 84 92 85 93 86 94 84 92 84 92 86 94 87 95 86 94 88 96 87 95 89 97 87 95 88 96 90 98 91 99 92 100 92 100 91 99 93 101 91 99 94 102 93 101 93 101 94 102 66 74 66 74 94 102 64 72 64 72 94 102 95 103 94 102 96 104 95 103 95 103 96 104 97 105 97 105 96 104 98 106 96 104 99 107 98 106 98 106 99 107 100 108 99 107 101 109 100 108 100 108 101 109 102 110 102 110 101 109 103 111 101 109 104 112 103 111 103 111 104 112 105 113 104 112 106 114 105 113 105 113 106 114 107 115 107 115 106 114 108 116 106 114 109 117 108 116 108 116 109 117 110 118 110 118 109 117 111 119 109 117 85 93 111 119 83 91 111 119 85 93 10 124 114 125 11 126 115 127 11 126 114 125 118 132 14 133 119 134 15 135 119 134 14 133 114 140 122 141 115 142 123 143 115 142 122 141 126 148 118 149 127 150 119 151 127 150 118 149 130 156 126 157 131 158 127 159 131 158 126 157 134 164 130 165 135 166 131 167 135 166 130 165 138 172 134 173 139 174 135 175 139 174 134 173 138 180 139 181 142 182 143 183 142 182 139 181 142 188 143 189 146 190 147 191 146 190 143 189 146 196 147 197 150 198 151 199 150 198 147 197 150 204 151 205 154 206 155 207 154 206 151 205 158 212 154 213 159 214 155 215 159 214 154 213 162 220 158 221 163 222 159 223 163 222 158 221 162 228 163 229 166 230 167 231 166 230 163 229 166 236 167 237 170 238 171 239 170 238 167 237 170 244 171 245 174 246 175 247 174 246 171 245 174 252 175 253 178 254 179 255 178 254 175 253 178 260 179 261 182 262 183 263 182 262 179 261 182 268 183 269 186 270 187 271 186 270 183 269 190 276 186 277 191 278 187 279 191 278 186 277 122 284 190 285 123 286 191 287 123 286 190 285</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10603\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10604\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID10608\">171.6346684935456 7.298318616900247 -364.4729037519513 175.8982548904075 31.95621457148616 -365.3914147171619 170.6030095688689 7.513410772333145 -365.0062123097409 176.929913815077 31.74112241605405 -364.8581061593716 176.929913815077 31.74112241605405 -364.8581061593716 171.6346684935456 7.298318616900247 -364.4729037519513 175.8982548904075 31.95621457148616 -365.3914147171619 170.6030095688689 7.513410772333145 -365.0062123097409 176.929913815077 31.74112241605405 -364.8581061593716 164.931633502734 34.68366415593744 -343.0770046739332 175.8982548904075 31.95621457148616 -365.3914147171619 165.963292427417 34.46857200050897 -342.5436961161439 165.963292427417 34.46857200050897 -342.5436961161439 176.929913815077 31.74112241605405 -364.8581061593716 164.931633502734 34.68366415593744 -343.0770046739332 175.8982548904075 31.95621457148616 -365.3914147171619 170.6030095688689 7.513410772333145 -365.0062123097409 170.3459815681986 8.744772583593772 -364.0123758352483 170.2087938697839 8.434029101504052 -363.8723210265127 175.8982548904075 31.95621457148616 -365.3914147171619 175.1612635431802 30.97206998069294 -364.362663328376 165.1886615034246 33.45230234468897 -344.0708411484258 164.931633502734 34.68366415593744 -343.0770046739332 159.6363881812006 10.24086035678511 -342.6918022665125 160.2361918300055 10.91426146548508 -343.5804988465609 165.0514738049883 33.14155886258652 -343.9307863396888 165.1886615034246 33.45230234468897 -344.0708411484258 165.0514738049883 33.14155886258652 -343.9307863396888 164.931633502734 34.68366415593744 -343.0770046739332 160.2361918300055 10.91426146548508 -343.5804988465609 159.6363881812006 10.24086035678511 -342.6918022665125 170.2087938697839 8.434029101504052 -363.8723210265127 170.6030095688689 7.513410772333145 -365.0062123097409 175.8982548904075 31.95621457148616 -365.3914147171619 175.1612635431802 30.97206998069294 -364.362663328376 170.3459815681986 8.744772583593772 -364.0123758352483 159.6363881812006 10.24086035678511 -342.6918022665125 171.6346684935456 7.298318616900247 -364.4729037519513 170.6030095688689 7.513410772333145 -365.0062123097409 160.668047105886 10.02576820136392 -342.1584937087234 160.668047105886 10.02576820136392 -342.1584937087234 159.6363881812006 10.24086035678511 -342.6918022665125 171.6346684935456 7.298318616900247 -364.4729037519513 170.6030095688689 7.513410772333145 -365.0062123097409 164.931633502734 34.68366415593744 -343.0770046739332 160.668047105886 10.02576820136392 -342.1584937087234 159.6363881812006 10.24086035678511 -342.6918022665125 165.963292427417 34.46857200050897 -342.5436961161439 165.963292427417 34.46857200050897 -342.5436961161439 164.931633502734 34.68366415593744 -343.0770046739332 160.668047105886 10.02576820136392 -342.1584937087234 159.6363881812006 10.24086035678511 -342.6918022665125</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID10608\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10605\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID10609\">-0.4384409004554542 0.109042284718546 0.8921207076125798 -0.4384409004554542 0.109042284718546 0.8921207076125798 -0.4384409004554542 0.109042284718546 0.8921207076125798 -0.4384409004554542 0.109042284718546 0.8921207076125798 0.4384409004554542 -0.109042284718546 -0.8921207076125798 0.4384409004554542 -0.109042284718546 -0.8921207076125798 0.4384409004554542 -0.109042284718546 -0.8921207076125798 0.4384409004554542 -0.109042284718546 -0.8921207076125798 -0.2117016759158851 -0.9772129928189026 0.01540022987909488 -0.2117016759158851 -0.9772129928189026 0.01540022987909488 -0.2117016759158851 -0.9772129928189026 0.01540022987909488 -0.2117016759158851 -0.9772129928189026 0.01540022987909488 0.2117016759158851 0.9772129928189026 -0.01540022987909488 0.2117016759158851 0.9772129928189026 -0.01540022987909488 0.2117016759158851 0.9772129928189026 -0.01540022987909488 0.2117016759158851 0.9772129928189026 -0.01540022987909488 0.8734712228929917 -0.1821113582655117 0.4515345789289144 0.8734712228929917 -0.1821113582655117 0.4515345789289144 0.8734712228929917 -0.1821113582655117 0.4515345789289144 0.8734712228929917 -0.1821113582655117 0.4515345789289144 0.8734712228929917 -0.1821113582655117 0.4515345789289144 0.8734712228929917 -0.1821113582655117 0.4515345789289144 0.8734712228929917 -0.1821113582655117 0.4515345789289144 0.8734712228929917 -0.1821113582655117 0.4515345789289144 0.8734712228929917 -0.1821113582655117 0.4515345789289144 0.8734712228929917 -0.1821113582655117 0.4515345789289144 -0.8734712228929917 0.1821113582655117 -0.4515345789289144 -0.8734712228929917 0.1821113582655117 -0.4515345789289144 -0.8734712228929917 0.1821113582655117 -0.4515345789289144 -0.8734712228929917 0.1821113582655117 -0.4515345789289144 -0.8734712228929917 0.1821113582655117 -0.4515345789289144 -0.8734712228929917 0.1821113582655117 -0.4515345789289144 -0.8734712228929917 0.1821113582655117 -0.4515345789289144 -0.8734712228929917 0.1821113582655117 -0.4515345789289144 -0.8734712228929917 0.1821113582655117 -0.4515345789289144 -0.8734712228929917 0.1821113582655117 -0.4515345789289144 0.2117016759158848 0.9772129928189028 -0.01540022987909421 0.2117016759158848 0.9772129928189028 -0.01540022987909421 0.2117016759158848 0.9772129928189028 -0.01540022987909421 0.2117016759158848 0.9772129928189028 -0.01540022987909421 -0.2117016759158848 -0.9772129928189028 0.01540022987909421 -0.2117016759158848 -0.9772129928189028 0.01540022987909421 -0.2117016759158848 -0.9772129928189028 0.01540022987909421 -0.2117016759158848 -0.9772129928189028 0.01540022987909421 0.4384409004554539 -0.1090422847185469 -0.8921207076125798 0.4384409004554539 -0.1090422847185469 -0.8921207076125798 0.4384409004554539 -0.1090422847185469 -0.8921207076125798 0.4384409004554539 -0.1090422847185469 -0.8921207076125798 -0.4384409004554539 0.1090422847185469 0.8921207076125798 -0.4384409004554539 0.1090422847185469 0.8921207076125798 -0.4384409004554539 0.1090422847185469 0.8921207076125798 -0.4384409004554539 0.1090422847185469 0.8921207076125798</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID10609\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10607\">\r\n\t\t\t\t\t<float_array count=\"52\" id=\"ID10610\">-25.93308354428012 21.39827515301088 -26.39628304189979 21.37640402572635 -25.93308359804868 21.3764028870442 -26.39628298813121 21.39827629169292 23.32179562401466 1.188648731374633 23.09538529627536 1.593334392470561 23.30222518111367 1.178881757269286 23.11495573917658 1.603101366575888 25.93314761947825 -9.350667929896504 25.95413989357844 -9.329675604287408 25.94793873625317 -9.326875420898123 26.3963470633304 -9.350667361617237 26.37535473772116 -9.329675087517094 26.37535422095112 -8.908460243374387 26.39634649505101 -8.887467917765152 25.93314705119889 -8.887468486044465 25.94793821948277 -8.905660576755235 26.36915306362554 -8.90566005998493 -23.09538529627517 1.593334392470542 -23.32179562401452 1.188648731374605 -23.30222518111339 1.178881757269275 -23.11495573917641 1.603101366575868 26.39628304189981 21.3764040257263 25.93308354428043 21.39827515301101 25.93308359804874 21.37640288704423 26.39628298813135 21.39827629169307</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID10610\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10606\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10604\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10605\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"36\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10606\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10607\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 9 5 10 6 9 5 8 4 11 7 12 7 13 4 14 5 15 6 14 5 13 4 16 8 17 9 18 10 17 9 16 8 19 11 17 9 19 11 20 12 20 12 19 11 21 13 21 13 19 11 22 14 18 10 23 15 16 8 23 15 18 10 24 16 23 15 24 16 22 14 22 14 24 16 25 17 22 14 25 17 21 13 26 13 27 17 28 14 27 17 29 16 28 14 28 14 29 16 30 15 29 16 31 10 30 15 32 8 30 15 31 10 28 14 33 11 26 13 26 13 33 11 34 12 34 12 33 11 35 9 33 11 32 8 35 9 31 10 35 9 32 8 36 18 37 19 38 20 37 19 36 18 39 21 40 21 41 18 42 19 43 20 42 19 41 18 44 22 45 23 46 24 45 23 44 22 47 25 48 25 49 22 50 23 51 24 50 23 49 22</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10611\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10612\">\r\n\t\t\t\t\t<float_array count=\"480\" id=\"ID10616\">170.2796847820248 8.761260901694982 -363.8774779830654 160.2361918300055 10.91426146548508 -343.5804988465609 170.2087938697839 8.434029101504052 -363.8723210265127 160.3733795284206 11.22500494757776 -343.7205536552979 160.3733795284206 11.22500494757776 -343.7205536552979 170.2796847820248 8.761260901694982 -363.8774779830654 160.2361918300055 10.91426146548508 -343.5804988465609 170.2087938697839 8.434029101504052 -363.8723210265127 170.2796847820248 8.761260901694982 -363.8774779830654 170.2087938697839 8.434029101504052 -363.8723210265127 170.3459815681986 8.744772583593772 -364.0123758352483 170.3459815681986 8.744772583593772 -364.0123758352483 170.2087938697839 8.434029101504052 -363.8723210265127 170.2796847820248 8.761260901694982 -363.8774779830654 166.0173791357404 23.45147934229738 -349.7074514619011 165.3944284575546 23.48726764636297 -348.4879502918037 165.2449593375898 22.82268794089066 -348.4668456796568 165.8396349309198 23.50303471525729 -349.3428209892242 165.2166842527322 23.53882301931719 -348.123319819128 165.9293173151814 23.90178659481046 -349.3554838853252 175.0240758447669 30.66132649860276 -364.2226085196405 160.3733795284206 11.22500494757776 -343.7205536552979 170.2796847820248 8.761260901694982 -363.8774779830654 165.0008723472511 18.931818142216 -349.5639236113249 165.0905547315183 19.33057002177122 -349.576586507425 165.1801185184568 19.72879458588511 -349.5892326579233 164.5585968199068 19.48486640830367 -348.4853100579467 164.5387679667254 19.5005153685039 -348.4406406417559 164.5266714240706 19.53371659706215 -348.4038498764135 164.5224449232021 19.57665795276182 -348.3783549618878 164.5262261953926 19.62152729439129 -348.3675730981537 164.5277155041031 19.62814915944443 -348.3677833842818 164.5280250758392 19.63513481603638 -348.3655648046851 165.2697963412875 20.12752618407637 -349.6018949099614 165.3595973228696 20.52680537906588 -349.6145745516645 164.6774120899672 20.29934945697676 -348.3866578237222 165.4492797071355 20.92555725861951 -349.6272374477647 165.4790567583807 21.05795399681972 -349.631441882216 165.5687391426409 21.45670587637403 -349.6441047783163 165.390994937824 21.50826124933531 -349.2794743056406 165.7487912603685 22.25178501153857 -349.6717381043252 165.0064053814235 21.76201321443421 -348.4331625434861 165.8384736446371 22.65053689109402 -349.6844010004255 166.1070615200056 23.850231221851 -349.720114358001 164.3232418081857 19.47878578575626 -348.0324798894197 165.1177705911803 33.12507054448668 -344.0656841918729 164.3246867242206 19.38261992361356 -348.074060289293 164.3365148685148 19.29158453469324 -348.1336573240375 164.3574789465411 19.21241200614088 -348.2061428813236 164.3863316637835 19.15183472510341 -348.2863888488174 164.4230730202391 19.10985269158812 -348.3743952265197 164.4677030159041 19.08646590558544 -348.4701620144305 164.3321801204149 19.58008212112225 -348.0089161244188 164.3515016609078 19.68650892971516 -348.0033689942893 164.5595777795998 20.61728025264949 -348.0304864567574 164.5883243417786 20.72212305883534 -348.0438104174538 164.6237558726145 20.81635403861094 -348.0743460430665 164.6658723721137 20.89997319198631 -348.122093333594 164.7146738402803 20.97298051895848 -348.1870522890366 164.7664456067596 21.03043664132849 -348.2640291969402 164.8286611765955 21.81356858738798 -348.0685320708107 164.8174730012406 21.06740218092784 -348.3478303448441 164.8677560237184 21.08387713775176 -348.4384557327506 165.3013125535583 21.10950936978304 -349.2668114095404 164.9172946741865 21.07986151180069 -348.5359053606582 165.1552769533266 22.42393606133703 -348.4541827835566 164.7372809315041 20.56554234742623 -348.3951111328782 164.8253792998123 20.68175731940107 -348.5186616331276 164.7531827739301 20.61586460896285 -348.4055766577266 164.775745668509 20.65504052029098 -348.433423164459 164.8011007866526 20.67852108817567 -348.4730012804621 164.587734267137 19.90061785878231 -348.3739955716833 165.1801185184568 19.72879458588511 -349.5892326579233 164.5280250758392 19.63513481603638 -348.3655648046851 164.587734267137 19.90061785878231 -348.3739955716833 164.8011007866526 20.67852108817567 -348.4730012804621 164.8253792998123 20.68175731940107 -348.5186616331276 164.775745668509 20.65504052029098 -348.433423164459 164.7531827739301 20.61586460896285 -348.4055766577266 164.7372809315041 20.56554234742623 -348.3951111328782 165.3595973228696 20.52680537906588 -349.6145745516645 164.6774120899672 20.29934945697676 -348.3866578237222 165.7487912603685 22.25178501153857 -349.6717381043252 165.0064053814235 21.76201321443421 -348.4331625434861 165.1552769533266 22.42393606133703 -348.4541827835566 164.8677560237184 21.08387713775176 -348.4384557327506 165.3013125535583 21.10950936978304 -349.2668114095404 164.9172946741865 21.07986151180069 -348.5359053606582 165.4790567583807 21.05795399681972 -349.631441882216 165.4492797071355 20.92555725861951 -349.6272374477647 175.0240758447669 30.66132649860276 -364.2226085196405 165.9293173151814 23.90178659481046 -349.3554838853252 165.1177705911803 33.12507054448668 -344.0656841918729 165.2166842527322 23.53882301931719 -348.123319819128 164.8286611765955 21.81356858738798 -348.0685320708107 165.390994937824 21.50826124933531 -349.2794743056406 164.8174730012406 21.06740218092784 -348.3478303448441 164.7664456067596 21.03043664132849 -348.2640291969402 164.7146738402803 20.97298051895848 -348.1870522890366 164.6658723721137 20.89997319198631 -348.122093333594 164.6237558726145 20.81635403861094 -348.0743460430665 164.5883243417786 20.72212305883534 -348.0438104174538 164.5595777795998 20.61728025264949 -348.0304864567574 164.3515016609078 19.68650892971516 -348.0033689942893 164.3321801204149 19.58008212112225 -348.0089161244188 164.3232418081857 19.47878578575626 -348.0324798894197 165.0008723472511 18.931818142216 -349.5639236113249 160.3733795284206 11.22500494757776 -343.7205536552979 164.4677030159041 19.08646590558544 -348.4701620144305 164.4230730202391 19.10985269158812 -348.3743952265197 164.3863316637835 19.15183472510341 -348.2863888488174 164.3574789465411 19.21241200614088 -348.2061428813236 164.3365148685148 19.29158453469324 -348.1336573240375 164.3246867242206 19.38261992361356 -348.074060289293 166.1070615200056 23.850231221851 -349.720114358001 166.0173791357404 23.45147934229738 -349.7074514619011 165.2449593375898 22.82268794089066 -348.4668456796568 165.8384736446371 22.65053689109402 -349.6844010004255 165.5687391426409 21.45670587637403 -349.6441047783163 165.2697963412875 20.12752618407637 -349.6018949099614 164.5277155041031 19.62814915944443 -348.3677833842818 164.5262261953926 19.62152729439129 -348.3675730981537 164.5224449232021 19.57665795276182 -348.3783549618878 164.5266714240706 19.53371659706215 -348.4038498764135 164.5387679667254 19.5005153685039 -348.4406406417559 164.5585968199068 19.48486640830367 -348.4853100579467 165.0905547315183 19.33057002177122 -349.576586507425 170.2796847820248 8.761260901694982 -363.8774779830654 165.8396349309198 23.50303471525729 -349.3428209892242 165.3944284575546 23.48726764636297 -348.4879502918037 160.3733795284206 11.22500494757776 -343.7205536552979 165.0514738049883 33.14155886258652 -343.9307863396888 160.2361918300055 10.91426146548508 -343.5804988465609 165.1177705911803 33.12507054448668 -344.0656841918729 165.1177705911803 33.12507054448668 -344.0656841918729 160.3733795284206 11.22500494757776 -343.7205536552979 165.0514738049883 33.14155886258652 -343.9307863396888 160.2361918300055 10.91426146548508 -343.5804988465609 175.1612635431802 30.97206998069294 -364.362663328376 170.2796847820248 8.761260901694982 -363.8774779830654 170.3459815681986 8.744772583593772 -364.0123758352483 175.0240758447669 30.66132649860276 -364.2226085196405 175.0240758447669 30.66132649860276 -364.2226085196405 175.1612635431802 30.97206998069294 -364.362663328376 170.2796847820248 8.761260901694982 -363.8774779830654 170.3459815681986 8.744772583593772 -364.0123758352483 175.1612635431802 30.97206998069294 -364.362663328376 165.1177705911803 33.12507054448668 -344.0656841918729 175.0240758447669 30.66132649860276 -364.2226085196405 165.1886615034246 33.45230234468897 -344.0708411484258 165.1886615034246 33.45230234468897 -344.0708411484258 175.1612635431802 30.97206998069294 -364.362663328376 165.1177705911803 33.12507054448668 -344.0656841918729 175.0240758447669 30.66132649860276 -364.2226085196405 165.1886615034246 33.45230234468897 -344.0708411484258 165.0514738049883 33.14155886258652 -343.9307863396888 165.1177705911803 33.12507054448668 -344.0656841918729 165.1177705911803 33.12507054448668 -344.0656841918729 165.0514738049883 33.14155886258652 -343.9307863396888 165.1886615034246 33.45230234468897 -344.0708411484258</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"160\" source=\"#ID10616\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10613\">\r\n\t\t\t\t\t<float_array count=\"480\" id=\"ID10617\">0.8734712228878017 -0.1821113582901796 0.4515345789290054 0.8734712228878017 -0.1821113582901796 0.4515345789290054 0.8734712228878017 -0.1821113582901796 0.4515345789290054 0.8734712228878017 -0.1821113582901796 0.4515345789290054 -0.8734712228878017 0.1821113582901796 -0.4515345789290054 -0.8734712228878017 0.1821113582901796 -0.4515345789290054 -0.8734712228878017 0.1821113582901796 -0.4515345789290054 -0.8734712228878017 0.1821113582901796 -0.4515345789290054 0.8734712228435173 -0.1821113582528821 0.4515345790297142 0.8734712228435173 -0.1821113582528821 0.4515345790297142 0.8734712228435173 -0.1821113582528821 0.4515345790297142 -0.8734712228435173 0.1821113582528821 -0.4515345790297142 -0.8734712228435173 0.1821113582528821 -0.4515345790297142 -0.8734712228435173 0.1821113582528821 -0.4515345790297142 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 0.8734712228933994 -0.1821113582655466 0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 -0.8734712228933994 0.1821113582655466 -0.4515345789281117 0.8734712228313837 -0.1821113582501212 0.4515345790542996 0.8734712228313837 -0.1821113582501212 0.4515345790542996 0.8734712228313837 -0.1821113582501212 0.4515345790542996 0.8734712228313837 -0.1821113582501212 0.4515345790542996 -0.8734712228313837 0.1821113582501212 -0.4515345790542996 -0.8734712228313837 0.1821113582501212 -0.4515345790542996 -0.8734712228313837 0.1821113582501212 -0.4515345790542996 -0.8734712228313837 0.1821113582501212 -0.4515345790542996 0.873471222843428 -0.1821113582529269 0.4515345790298683 0.873471222843428 -0.1821113582529269 0.4515345790298683 0.873471222843428 -0.1821113582529269 0.4515345790298683 0.873471222843428 -0.1821113582529269 0.4515345790298683 -0.873471222843428 0.1821113582529269 -0.4515345790298683 -0.873471222843428 0.1821113582529269 -0.4515345790298683 -0.873471222843428 0.1821113582529269 -0.4515345790298683 -0.873471222843428 0.1821113582529269 -0.4515345790298683 0.8734712228878721 -0.1821113582906429 0.4515345789286823 0.8734712228878721 -0.1821113582906429 0.4515345789286823 0.8734712228878721 -0.1821113582906429 0.4515345789286823 0.8734712228878721 -0.1821113582906429 0.4515345789286823 -0.8734712228878721 0.1821113582906429 -0.4515345789286823 -0.8734712228878721 0.1821113582906429 -0.4515345789286823 -0.8734712228878721 0.1821113582906429 -0.4515345789286823 -0.8734712228878721 0.1821113582906429 -0.4515345789286823 0.8734712228189103 -0.1821113582472106 0.4515345790796023 0.8734712228189103 -0.1821113582472106 0.4515345790796023 0.8734712228189103 -0.1821113582472106 0.4515345790796023 -0.8734712228189103 0.1821113582472106 -0.4515345790796023 -0.8734712228189103 0.1821113582472106 -0.4515345790796023 -0.8734712228189103 0.1821113582472106 -0.4515345790796023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"160\" source=\"#ID10617\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10615\">\r\n\t\t\t\t\t<float_array count=\"160\" id=\"ID10618\">25.95413989079925 -9.32687541295652 25.94793822013366 -8.905660576421628 25.94793873690935 -9.326875420564514 25.95413937745902 -8.908460759810856 25.95413989013492 -9.326875415709694 25.94793873624501 -9.32687542331761 25.95413989357029 -9.329675606706896 26.19923051321511 -9.028504775649013 26.19708812099579 -9.003227523804693 26.18446953179921 -9.003007280996862 26.19936266024409 -9.020933545113346 26.19722026802467 -8.995656293269043 26.20693389077973 -9.02106569214228 26.36915358039423 -9.326874904109436 25.95413937680646 -8.908460760126141 25.95413989014142 -9.326875413271806 26.11341424840604 -9.027006952491195 26.12098547894174 -9.027139099520158 26.12854669716908 -9.027271071795896 26.12138097232851 -9.004479705431367 26.12157368686283 -9.003549136865333 26.12211659753157 -9.002776066560699 26.12286984623407 -9.002233842755679 26.12369357486981 -9.001995813688696 26.12381930635716 -9.001998008185682 26.12394630342028 -9.001949762773503 26.13611754261598 -9.027403212103568 26.14369878545986 -9.02753553388567 26.13655796101887 -9.002169884598365 26.15127001599552 -9.027667680914625 26.15378387556205 -9.027711557411518 26.16135510609771 -9.027843704440427 26.16148725312673 -9.020272473904806 26.17645704270104 -9.028156597570808 26.16433015869748 -9.002655771647429 26.18402827323675 -9.028288744599781 26.20680174375077 -9.028636922677958 26.1202190941086 -8.995099977437091 26.36915306705936 -8.908460250963911 26.11849634907273 -8.995992838650007 26.11691229286748 -8.997257292405291 26.11558240587351 -8.998784896431411 26.11462216847157 -9.000467208456861 26.11403158066178 -9.00230422848162 26.11381064244396 -9.004295956505668 26.1220805279751 -8.994578708766595 26.12408065067232 -8.994429032638497 26.14174786410569 -8.994686931316043 26.14376165402933 -8.994928742747794 26.14561452343208 -8.995530609639166 26.14730647231417 -8.996492531990167 26.14883750067554 -8.997814509800845 26.15010217855547 -8.999390552816081 26.16446230572633 -8.995084541111739 26.15099507599394 -9.001114670780941 26.15151619299085 -9.002986863695439 26.15391602259109 -9.020140326875849 26.15166552954618 -9.005007131559491 26.17689830126355 -9.002875133967928 26.14161225127777 -9.002258101360219 26.14409595916598 -9.004779867601503 26.14258823644921 -9.002458494147552 26.14339358259977 -9.003022624830425 26.14392919006125 -9.003834935338427 26.12898711557191 -9.002037744290691 25.95413937680646 -8.908460763149858 26.3691530636239 -8.905660062990258 25.94793821948113 -8.90566057976055 26.36915306705936 -8.908460253987627 26.3753547377147 -9.329675089939572 25.95413989013661 -9.32687541571263 25.95413989357198 -9.329675606709833 26.36915358038943 -9.3268749065503 26.37535473838866 -9.329675087164489 26.36915306772312 -8.908460250629771 26.36915358106336 -9.326874903775295 26.37535422161324 -8.90846024302178 26.37535422095438 -8.908460246983461 26.36915306362879 -8.905660063594002 26.36915306706425 -8.908460254591372</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID10618\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10614\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10612\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10613\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"148\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10614\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10615\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 9 5 10 6 11 6 12 5 13 4 14 7 15 8 16 9 15 8 14 7 17 10 15 8 17 10 18 11 18 11 17 10 19 12 20 13 21 14 22 15 21 14 20 13 23 16 23 16 20 13 24 17 24 17 20 13 25 18 24 17 25 18 26 19 26 19 25 18 27 20 27 20 25 18 28 21 28 21 25 18 29 22 29 22 25 18 30 23 30 23 25 18 31 24 31 24 25 18 32 25 25 18 20 13 33 26 33 26 20 13 34 27 33 26 34 27 35 28 34 27 20 13 36 29 36 29 20 13 37 30 37 30 20 13 38 31 38 31 20 13 39 32 39 32 20 13 40 33 39 32 40 33 41 34 40 33 20 13 42 35 42 35 20 13 16 9 16 9 20 13 14 7 14 7 20 13 43 36 43 36 20 13 19 12 21 14 44 37 45 38 44 37 21 14 46 39 46 39 21 14 47 40 47 40 21 14 48 41 48 41 21 14 49 42 49 42 21 14 50 43 50 43 21 14 51 44 51 44 21 14 23 16 45 38 44 37 52 45 45 38 52 45 53 46 45 38 53 46 54 47 45 38 54 47 55 48 45 38 55 48 56 49 45 38 56 49 57 50 45 38 57 50 58 51 45 38 58 51 59 52 45 38 59 52 60 53 60 53 59 52 61 54 60 53 61 54 62 55 60 53 62 55 63 56 60 53 63 56 39 32 60 53 39 32 41 34 45 38 60 53 18 11 45 38 18 11 19 12 45 38 19 12 20 13 37 30 64 57 36 29 64 57 37 30 63 56 64 57 63 56 62 55 65 58 41 34 40 33 34 27 66 59 35 28 66 59 34 27 67 60 66 59 67 60 68 61 68 61 67 60 69 62 69 62 67 60 70 63 71 64 32 25 25 18 72 18 73 25 74 64 75 63 76 60 77 62 77 62 76 60 78 61 78 61 76 60 79 59 76 60 80 27 79 59 81 28 79 59 80 27 82 33 83 34 84 58 85 55 86 56 87 57 86 56 88 30 87 57 89 29 87 57 88 30 90 13 91 12 92 38 91 12 93 11 92 38 93 11 94 53 92 38 83 34 95 32 94 53 95 32 86 56 94 53 86 56 85 55 94 53 85 55 96 54 94 53 96 54 97 52 94 53 94 53 97 52 92 38 97 52 98 51 92 38 98 51 99 50 92 38 99 50 100 49 92 38 100 49 101 48 92 38 101 48 102 47 92 38 102 47 103 46 92 38 103 46 104 45 92 38 104 45 105 37 92 38 106 16 107 14 108 44 108 44 107 14 109 43 109 43 107 14 110 42 110 42 107 14 111 41 111 41 107 14 112 40 112 40 107 14 113 39 113 39 107 14 105 37 92 38 105 37 107 14 91 12 90 13 114 36 114 36 90 13 115 7 115 7 90 13 116 9 116 9 90 13 117 35 117 35 90 13 82 33 83 34 82 33 95 32 82 33 90 13 95 32 95 32 90 13 118 31 118 31 90 13 88 30 88 30 90 13 89 29 89 29 90 13 80 27 81 28 80 27 119 26 80 27 90 13 119 26 119 26 90 13 72 18 73 25 72 18 120 24 120 24 72 18 121 23 121 23 72 18 122 22 122 22 72 18 123 21 123 21 72 18 124 20 124 20 72 18 125 19 125 19 72 18 126 17 72 18 90 13 126 17 126 17 90 13 106 16 106 16 90 13 107 14 127 15 107 14 90 13 91 12 128 10 93 11 93 11 128 10 129 8 128 10 115 7 129 8 116 9 129 8 115 7 130 65 131 66 132 67 131 66 130 65 133 68 134 68 135 65 136 66 137 67 136 66 135 65 138 69 139 70 140 71 139 70 138 69 141 72 142 72 143 69 144 70 145 71 144 70 143 69 146 73 147 74 148 75 147 74 146 73 149 76 150 76 151 73 152 74 153 75 152 74 151 73 154 77 155 78 156 79 157 79 158 78 159 77</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10619\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10620\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID10624\">177.3736955425507 32.33372826987431 -365.4775721411224 171.6346684935456 7.298318616900247 -364.4729037519513 171.7894387368913 6.556850112839811 -365.0713456049423 176.929913815077 31.74112241605405 -364.8581061593716 165.963292427417 34.46857200050897 -342.5436961161439 165.8085221840779 35.2100405045768 -341.9452542631536 160.224265378426 9.433162347547182 -341.5390277269729 160.668047105886 10.02576820136392 -342.1584937087234 165.963292427417 34.46857200050897 -342.5436961161439 160.668047105886 10.02576820136392 -342.1584937087234 165.8085221840779 35.2100405045768 -341.9452542631536 160.224265378426 9.433162347547182 -341.5390277269729 171.6346684935456 7.298318616900247 -364.4729037519513 171.7894387368913 6.556850112839811 -365.0713456049423 177.3736955425507 32.33372826987431 -365.4775721411224 176.929913815077 31.74112241605405 -364.8581061593716</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID10624\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10621\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID10625\">0.8734712228930153 -0.1821113582654518 0.4515345789288932 0.8734712228930153 -0.1821113582654518 0.4515345789288932 0.8734712228930153 -0.1821113582654518 0.4515345789288932 0.8734712228930153 -0.1821113582654518 0.4515345789288932 0.8734712228930153 -0.1821113582654518 0.4515345789288932 0.8734712228930153 -0.1821113582654518 0.4515345789288932 0.8734712228930153 -0.1821113582654518 0.4515345789288932 0.8734712228930153 -0.1821113582654518 0.4515345789288932 -0.8734712228930153 0.1821113582654518 -0.4515345789288932 -0.8734712228930153 0.1821113582654518 -0.4515345789288932 -0.8734712228930153 0.1821113582654518 -0.4515345789288932 -0.8734712228930153 0.1821113582654518 -0.4515345789288932 -0.8734712228930153 0.1821113582654518 -0.4515345789288932 -0.8734712228930153 0.1821113582654518 -0.4515345789288932 -0.8734712228930153 0.1821113582654518 -0.4515345789288932 -0.8734712228930153 0.1821113582654518 -0.4515345789288932</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID10625\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10623\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID10626\">26.40898766020638 -9.363307927478537 25.93314761947677 -9.350667929896746 25.92050705361589 -9.363308526774198 26.39634706332891 -9.35066736161742 26.39634649504965 -8.887467917765454 26.4089870609107 -8.874827320888052 25.92050645432033 -8.874827920183757 25.93314705119768 -8.887468486044762</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID10626\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10622\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10620\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10621\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10622\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10623\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 1 1 6 6 2 2 6 6 1 1 7 7 6 6 7 7 5 5 5 5 7 7 4 4 8 4 9 7 10 5 10 5 9 7 11 6 9 7 12 1 11 6 13 2 11 6 12 1 10 5 14 0 8 4 8 4 14 0 15 3 15 3 14 0 12 1 13 2 12 1 14 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10627\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10628\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID10632\">148.3314206059747 53.41323427043392 -300.7950201579606 142.278227004397 -0.03852995817180727 -297.5733999527647 136.9916245763202 1.068980898555196 -299.970050280083 153.6180230340681 52.30572341371715 -298.3983698306428 153.6180230340681 52.30572341371715 -298.3983698306428 148.3314206059747 53.41323427043392 -300.7950201579606 142.278227004397 -0.03852995817180727 -297.5733999527647 136.9916245763202 1.068980898555196 -299.970050280083 188.6289737524101 48.37692212368563 -372.4842211683095 153.6180230340681 52.30572341371715 -298.3983698306428 187.6310854027183 43.77069107010368 -372.411624815798 152.6583492304751 57.40317328527829 -294.2112630952921 176.2912893730666 -8.573562301770153 -371.5866549379205 139.322776501436 -4.153542193762064 -293.2411005123914 175.2934010233723 -13.17979335535608 -371.5140585854091 142.278227004397 -0.03852995817180727 -297.5733999527647 153.6180230340681 52.30572341371715 -298.3983698306428 142.278227004397 -0.03852995817180727 -297.5733999527647 152.6583492304751 57.40317328527829 -294.2112630952921 139.322776501436 -4.153542193762064 -293.2411005123914 176.2912893730666 -8.573562301770153 -371.5866549379205 175.2934010233723 -13.17979335535608 -371.5140585854091 188.6289737524101 48.37692212368563 -372.4842211683095 187.6310854027183 43.77069107010368 -372.411624815798 170.9938364310222 -7.387526836624033 -369.1562901329352 142.278227004397 -0.03852995817180727 -297.5733999527647 176.2912893730666 -8.573562301770153 -371.5866549379205 136.9916245763202 1.068980898555196 -299.970050280083 136.9916245763202 1.068980898555196 -299.970050280083 170.9938364310222 -7.387526836624033 -369.1562901329352 142.278227004397 -0.03852995817180727 -297.5733999527647 176.2912893730666 -8.573562301770153 -371.5866549379205 153.6180230340681 52.30572341371715 -298.3983698306428 182.3336324606755 44.95672653525332 -369.981260010812 187.6310854027183 43.77069107010368 -372.411624815798 148.3314206059747 53.41323427043392 -300.7950201579606 148.3314206059747 53.41323427043392 -300.7950201579606 153.6180230340681 52.30572341371715 -298.3983698306428 182.3336324606755 44.95672653525332 -369.981260010812 187.6310854027183 43.77069107010368 -372.411624815798 176.2912893730666 -8.573562301770153 -371.5866549379205 182.3336324606755 44.95672653525332 -369.981260010812 170.9938364310222 -7.387526836624033 -369.1562901329352 187.6310854027183 43.77069107010368 -372.411624815798 187.6310854027183 43.77069107010368 -372.411624815798 176.2912893730666 -8.573562301770153 -371.5866549379205 182.3336324606755 44.95672653525332 -369.981260010812 170.9938364310222 -7.387526836624033 -369.1562901329352</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID10632\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10629\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID10633\">0.3934507638815287 -0.09964066502263812 -0.9139301036046947 0.3934507638815287 -0.09964066502263812 -0.9139301036046947 0.3934507638815287 -0.09964066502263812 -0.9139301036046947 0.3934507638815287 -0.09964066502263812 -0.9139301036046947 -0.3934507638815287 0.09964066502263812 0.9139301036046947 -0.3934507638815287 0.09964066502263812 0.9139301036046947 -0.3934507638815287 0.09964066502263812 0.9139301036046947 -0.3934507638815287 0.09964066502263812 0.9139301036046947 0.8847092168214444 -0.1849185031653188 0.4278957219443594 0.8847092168214444 -0.1849185031653188 0.4278957219443594 0.8847092168214444 -0.1849185031653188 0.4278957219443594 0.8847092168214444 -0.1849185031653188 0.4278957219443594 0.8847092168214444 -0.1849185031653188 0.4278957219443594 0.8847092168214444 -0.1849185031653188 0.4278957219443594 0.8847092168214444 -0.1849185031653188 0.4278957219443594 0.8847092168214444 -0.1849185031653188 0.4278957219443594 -0.8847092168214444 0.1849185031653188 -0.4278957219443594 -0.8847092168214444 0.1849185031653188 -0.4278957219443594 -0.8847092168214444 0.1849185031653188 -0.4278957219443594 -0.8847092168214444 0.1849185031653188 -0.4278957219443594 -0.8847092168214444 0.1849185031653188 -0.4278957219443594 -0.8847092168214444 0.1849185031653188 -0.4278957219443594 -0.8847092168214444 0.1849185031653188 -0.4278957219443594 -0.8847092168214444 0.1849185031653188 -0.4278957219443594 0.2117086552704657 0.9772115242368599 -0.01539747324219428 0.2117086552704657 0.9772115242368599 -0.01539747324219428 0.2117086552704657 0.9772115242368599 -0.01539747324219428 0.2117086552704657 0.9772115242368599 -0.01539747324219428 -0.2117086552704657 -0.9772115242368599 0.01539747324219428 -0.2117086552704657 -0.9772115242368599 0.01539747324219428 -0.2117086552704657 -0.9772115242368599 0.01539747324219428 -0.2117086552704657 -0.9772115242368599 0.01539747324219428 -0.2117086552700253 -0.9772115242369514 0.01539747324245208 -0.2117086552700253 -0.9772115242369514 0.01539747324245208 -0.2117086552700253 -0.9772115242369514 0.01539747324245208 -0.2117086552700253 -0.9772115242369514 0.01539747324245208 0.2117086552700253 0.9772115242369514 -0.01539747324245208 0.2117086552700253 0.9772115242369514 -0.01539747324245208 0.2117086552700253 0.9772115242369514 -0.01539747324245208 0.2117086552700253 0.9772115242369514 -0.01539747324245208 0.4023755075047932 -0.0727875131629879 0.9125765331673877 0.4023755075047932 -0.0727875131629879 0.9125765331673877 0.4023755075047932 -0.0727875131629879 0.9125765331673877 0.4023755075047932 -0.0727875131629879 0.9125765331673877 -0.4023755075047932 0.0727875131629879 -0.9125765331673877 -0.4023755075047932 0.0727875131629879 -0.9125765331673877 -0.4023755075047932 0.0727875131629879 -0.9125765331673877 -0.4023755075047932 0.0727875131629879 -0.9125765331673877</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID10633\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10631\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID10634\">-2.85407537716266 -17.67526136209117 -3.668921527635512 -17.56112265055616 -3.679086149253556 -17.61784158272363 -2.843910755544387 -17.6185424299236 26.65814833190454 21.88763989113434 26.65814833008998 21.77821020872779 25.66620679404819 21.8876399075809 25.66620679223388 21.77821022517459 -2.912190705925647 -18.40970991307693 -2.843910755544632 -17.61854242992396 -2.984790657078765 -18.40465704186807 -2.763202708730905 -17.57835185331274 -3.809801429169591 -18.34723726250058 -3.733413383128017 -17.51082633152749 -3.882401380322777 -18.3421843912917 -3.668921527635737 -17.56112265055639 26.65814791438991 -7.453000265786018 25.66620637653357 -7.453000258517857 26.74543757188143 -7.365710609573454 25.57891672032117 -7.365710601026234 25.66620636542094 -8.969676772561209 25.57891670856876 -8.96967677192162 26.74543756012904 -8.969676780468822 26.65814790327694 -8.969676779829241 -3.742480773417061 -18.30799745313061 -3.668921527635487 -17.56112265055644 -3.809801429169561 -18.34723726250061 -3.577685302307158 -17.56606266004101 -22.72577090782259 2.382487921485027 -23.36708178519908 1.097469882853646 -22.8260427423426 2.426310456702087 -23.46735338789198 1.051891196012426 -2.843910755544683 -17.61854242992385 -3.036561541448689 -18.3571286013798 -2.984790657078861 -18.40465704186796 -2.934647860104963 -17.61081730968346 22.72576436464543 2.382484131227916 22.8260361991657 2.426306666444969 23.36707524202191 1.097466092596553 23.46734684471479 1.051887405755322 -3.809801429169221 -18.34723726250056 -2.974558163664256 -18.34756771209215 -3.799568935755169 -18.29014793272467 -2.984790657078365 -18.40465704186804 26.65814763318392 -20.92866968080545 25.66620609532792 -20.92866966488909 26.65814940756917 -20.81852518026514 25.6662078697131 -20.81852516434878</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID10634\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10630\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10628\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10629\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10630\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10631\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 8 8 9 9 10 10 9 9 8 8 11 11 12 12 13 13 14 14 13 13 12 12 15 15 13 13 15 15 11 11 11 11 15 15 9 9 24 24 25 25 26 26 25 25 24 24 27 27 32 32 33 33 34 34 33 33 32 32 35 35 40 40 41 41 42 42 41 41 40 40 43 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10630\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10631\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 16 16 17 17 18 18 18 18 17 17 19 19 17 17 20 20 19 19 21 21 19 19 20 20 18 18 22 22 16 16 23 23 16 16 22 22 28 28 29 29 30 30 31 31 30 30 29 29 36 36 37 37 38 38 39 39 38 38 37 37 44 44 45 45 46 46 47 47 46 46 45 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10635\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10636\">\r\n\t\t\t\t\t<float_array count=\"750\" id=\"ID10640\">165.8085221840779 35.2100405045768 -341.9452542631536 147.7217682176672 14.36384501495252 -315.3649419460422 160.224265378426 9.433162347547182 -341.5390277269729 147.8079085251568 14.76146788363064 -315.3712082192368 147.9976334360372 15.63723633081065 -315.3850097502301 148.1666455846025 16.41739485722007 -315.3973045321638 148.2669617215975 16.88045322477763 -315.4046020255044 148.2984064889179 17.08464412922683 -315.3830768000933 148.3022383698115 17.27945849769515 -315.3119175288884 148.278457364283 17.46489633018462 -315.1911242118873 148.2270634723307 17.64095762669797 -315.0206968490904 148.1530011474372 17.79513999780068 -314.8152426605311 148.061214843068 17.91494105405161 -314.5893688662396 147.9517045592243 18.00036079544532 -314.3430754662176 147.8244702959148 18.05139922199453 -314.0763624604627 147.7010124532606 18.06287597479548 -313.8329106298114 147.185240334833 18.09634708901751 -312.8216756228004 147.0896770749462 18.16188220446782 -312.6103818463756 146.9825766839442 18.20244126481236 -312.3868433184795 146.8459170704068 18.21703446894856 -312.1165964012369 149.0149281620395 21.77387575074965 -314.8779077866698 148.8831059437148 21.70889064895471 -314.6491138162614 148.7495741115006 21.68343869553144 -314.4010683105685 149.1450407664813 21.87839400091355 -315.0874502217946 149.26372808817 22.01293160377634 -315.2627837136632 149.3612744582515 22.16797476367754 -315.3889508543055 149.437679876723 22.34352348062032 -315.465951643722 149.492944343591 22.53957775460128 -315.4937860819122 149.8744816591807 24.30075050125208 -315.5215409985526 149.9059134197867 24.50488521747286 -315.5000132739335 149.9097312306465 24.69964619079644 -315.428848320102 149.8859350917885 24.88503342124466 -315.3080461370557 149.8345250031857 25.0610469088 -315.1376067247957 149.7604480410332 25.21518866904228 -314.9321406002101 149.6686512814733 25.33496071753473 -314.7062582801856 149.5591347245209 25.42036305427394 -314.4599597647233 149.4318983701808 25.47139567927923 -314.1932450538216 149.3007667301206 25.50400872613125 -313.9264240264191 149.0136043960943 25.57542732999752 -313.342118446421 148.7480482604367 25.64147237215536 -312.8017762306053 148.6019721220905 25.6778021850181 -312.5045467801461 148.4653130164929 25.6924015844362 -312.2342983468191 150.4905593476317 29.12888080663299 -314.7660479493192 150.3570275154177 29.10342885320699 -314.518002443627 150.622381565956 29.19386590842612 -314.9948419197287 150.7524941703962 29.29838415858683 -315.2043843548527 150.8711814920848 29.43292176144962 -315.379717846722 150.9687278621664 29.58796492135173 -315.5058849873647 151.0451332806401 29.76351363829497 -315.5828857767808 151.1003977475095 29.95956791227843 -315.6107202149712 151.481935063104 31.72074065893332 -315.6384751316111 151.5133668237029 31.92487537514842 -315.6169474069919 151.5171846345691 32.11963634847518 -315.5457824531605 151.4933884957059 32.30502357892249 -315.4249802701143 151.4419784071054 32.48103706647555 -315.2545408578544 151.3679014449492 32.63517882671647 -315.0490747332688 151.2761046853932 32.7549508752121 -314.8231924132442 151.1665881284425 32.84035321195177 -314.5768938977822 151.0393517740981 32.8913858369541 -314.3101791868801 150.9082201340439 32.92399888380953 -314.043358159478 150.6210578000089 32.99541748767172 -313.4590525794799 150.3555016643541 33.06146252983092 -312.918710363664 150.2094255260074 33.09779234269456 -312.6214809132046 150.0727664204053 33.11239174210948 -312.3512324798776 170.9938364310222 -7.387526836624033 -369.1562901329352 171.7894387368913 6.556850112839811 -365.0713456049423 136.9916245763202 1.068980898555196 -299.970050280083 182.3336324606755 44.95672653525332 -369.981260010812 177.3736955425507 32.33372826987431 -365.4775721411224 145.564086620939 14.90047043187326 -310.9745841329891 148.3314206059747 53.41323427043392 -300.7950201579606 145.6519108804316 15.28972444703038 -310.9874832246679 145.8378225805118 16.14789114811117 -311.0010073637945 146.0019278711025 16.90539966317044 -311.0129451965418 146.1006056165406 17.36089523033377 -311.0201235051555 146.1563241118438 17.55904914608357 -311.0479894185933 146.2329771767102 17.7357525484714 -311.1250035639341 146.3305648111386 17.89100543749839 -311.2511659411774 146.449087015123 18.02480781315865 -311.4264765503257 146.5791722359918 18.12821774311794 -311.6364130171598 146.7114489210878 18.19229329504776 -311.8664529674637 147.3075157873316 22.87330516588906 -311.1315852723611 147.303936302136 22.67964430168865 -311.2027675631846 147.3277664875254 22.49441422969255 -311.3235722229445 147.3790063434974 22.3176149499003 -311.4939992516383 147.4530523665567 22.16232150252461 -311.699870020527 147.5453010532151 22.04160892778702 -311.92700590087 147.6557524034672 21.9554772256821 -312.1754068926645 147.7844064173189 21.90392639621916 -312.4450729959148 147.9304825556571 21.86759658334938 -312.742302446374 148.6143326654026 21.69751989047165 -314.1337712695899 148.4832010253501 21.73013293732868 -313.8669502421878 148.1960386913218 21.8015515411945 -313.2826446621903 147.3385049430992 23.07539682228651 -311.1100253504718 147.7167240734816 24.83739481698888 -311.1310285663981 147.7738828512058 25.03513110476331 -311.1618490709216 147.8515635282297 25.21152204082102 -311.2409771038028 147.9497661045659 25.36656762516202 -311.3684126650419 148.0684905802114 25.50026785779016 -311.544155754639 148.1985722455447 25.60363442081246 -311.7541028340654 148.33084639097 25.66767899636091 -311.9841503647922 148.9113897060511 30.09963445936262 -311.3197016962446 148.9352198914453 29.91440438737084 -311.4405063560047 148.9864597474127 29.73760510757381 -311.6109333846972 149.0605057704752 29.58231166020062 -311.8168041535856 149.1527544571316 29.46159908546122 -312.0439400339287 149.2632058073839 29.37546738335766 -312.2923410257237 149.3918598212404 29.32391655389768 -312.5620071289734 149.5379359595786 29.28758674102744 -312.859236579433 150.2217860693204 29.11751004814721 -314.2507054026489 149.80349209524 29.22154169887119 -313.3995787952489 150.0906544292716 29.15012309500742 -313.9838843752465 148.9149691912458 30.29329532356258 -311.24851940542 148.9459583470155 30.49538697996161 -311.2269594835301 149.3241774773983 32.25738497466398 -311.2479626994567 149.3813362551221 32.4551212624375 -311.27878320398 149.4590169321523 32.63151219849999 -311.3579112368618 149.5572195084822 32.78655778283803 -311.4853467981001 149.6759439841267 32.92025801546686 -311.6610898876979 149.8060256494618 33.0236245784871 -311.8710369671246 149.9382997948869 33.08766915403623 -312.1010844978512 147.4544199896843 17.97833243012667 -313.389987561913 147.2687135427518 18.00728832570042 -313.0190692699549 147.3395437778261 17.89615832172819 -313.2009074100411 147.5762859496756 18.03621267933011 -313.6023871493991 147.7010124532606 18.06287597479548 -313.8329106298114 147.5762859496756 18.03621267933011 -313.6023871493991 147.185240334833 18.09634708901751 -312.8216756228004 147.2687135427518 18.00728832570042 -313.0190692699549 147.4544199896843 17.97833243012667 -313.389987561913 147.3395437778261 17.89615832172819 -313.2009074100411 182.3336324606755 44.95672653525332 -369.981260010812 165.8085221840779 35.2100405045768 -341.9452542631536 148.3314206059747 53.41323427043392 -300.7950201579606 150.0727664204053 33.11239174210948 -312.3512324798776 149.9382997948869 33.08766915403623 -312.1010844978512 149.8060256494618 33.0236245784871 -311.8710369671246 149.6759439841267 32.92025801546686 -311.6610898876979 149.5572195084822 32.78655778283803 -311.4853467981001 149.4590169321523 32.63151219849999 -311.3579112368618 149.3813362551221 32.4551212624375 -311.27878320398 149.3241774773983 32.25738497466398 -311.2479626994567 148.9459583470155 30.49538697996161 -311.2269594835301 148.9149691912458 30.29329532356258 -311.24851940542 148.9113897060511 30.09963445936262 -311.3197016962446 150.0906544292716 29.15012309500742 -313.9838843752465 150.2217860693204 29.11751004814721 -314.2507054026489 149.80349209524 29.22154169887119 -313.3995787952489 149.5379359595786 29.28758674102744 -312.859236579433 150.3570275154177 29.10342885320699 -314.518002443627 148.4653130164929 25.6924015844362 -312.2342983468191 149.3918598212404 29.32391655389768 -312.5620071289734 149.2632058073839 29.37546738335766 -312.2923410257237 149.1527544571316 29.46159908546122 -312.0439400339287 149.0605057704752 29.58231166020062 -311.8168041535856 148.9864597474127 29.73760510757381 -311.6109333846972 148.9352198914453 29.91440438737084 -311.4405063560047 148.33084639097 25.66767899636091 -311.9841503647922 148.1985722455447 25.60363442081246 -311.7541028340654 148.0684905802114 25.50026785779016 -311.544155754639 147.9497661045659 25.36656762516202 -311.3684126650419 147.8515635282297 25.21152204082102 -311.2409771038028 147.7738828512058 25.03513110476331 -311.1618490709216 147.7167240734816 24.83739481698888 -311.1310285663981 147.3385049430992 23.07539682228651 -311.1100253504718 147.3075157873316 22.87330516588906 -311.1315852723611 148.1960386913218 21.8015515411945 -313.2826446621903 148.4832010253501 21.73013293732868 -313.8669502421878 147.9304825556571 21.86759658334938 -312.742302446374 148.6143326654026 21.69751989047165 -314.1337712695899 148.7495741115006 21.68343869553144 -314.4010683105685 146.8459170704068 18.21703446894856 -312.1165964012369 147.7844064173189 21.90392639621916 -312.4450729959148 147.6557524034672 21.9554772256821 -312.1754068926645 147.5453010532151 22.04160892778702 -311.92700590087 147.4530523665567 22.16232150252461 -311.699870020527 147.3790063434974 22.3176149499003 -311.4939992516383 147.3277664875254 22.49441422969255 -311.3235722229445 147.303936302136 22.67964430168865 -311.2027675631846 146.7114489210878 18.19229329504776 -311.8664529674637 146.5791722359918 18.12821774311794 -311.6364130171598 146.449087015123 18.02480781315865 -311.4264765503257 146.3305648111386 17.89100543749839 -311.2511659411774 146.2329771767102 17.7357525484714 -311.1250035639341 146.1563241118438 17.55904914608357 -311.0479894185933 146.1006056165406 17.36089523033377 -311.0201235051555 146.0019278711025 16.90539966317044 -311.0129451965418 145.8378225805118 16.14789114811117 -311.0010073637945 145.6519108804316 15.28972444703038 -310.9874832246679 145.564086620939 14.90047043187326 -310.9745841329891 147.7217682176672 14.36384501495252 -315.3649419460422 160.224265378426 9.433162347547182 -341.5390277269729 171.7894387368913 6.556850112839811 -365.0713456049423 136.9916245763202 1.068980898555196 -299.970050280083 177.3736955425507 32.33372826987431 -365.4775721411224 170.9938364310222 -7.387526836624033 -369.1562901329352 150.2094255260074 33.09779234269456 -312.6214809132046 150.3555016643541 33.06146252983092 -312.918710363664 150.6210578000089 32.99541748767172 -313.4590525794799 150.9082201340439 32.92399888380953 -314.043358159478 151.0393517740981 32.8913858369541 -314.3101791868801 151.1665881284425 32.84035321195177 -314.5768938977822 151.2761046853932 32.7549508752121 -314.8231924132442 151.3679014449492 32.63517882671647 -315.0490747332688 151.4419784071054 32.48103706647555 -315.2545408578544 151.4933884957059 32.30502357892249 -315.4249802701143 151.5171846345691 32.11963634847518 -315.5457824531605 151.5133668237029 31.92487537514842 -315.6169474069919 151.481935063104 31.72074065893332 -315.6384751316111 151.1003977475095 29.95956791227843 -315.6107202149712 151.0451332806401 29.76351363829497 -315.5828857767808 150.9687278621664 29.58796492135173 -315.5058849873647 150.8711814920848 29.43292176144962 -315.379717846722 150.7524941703962 29.29838415858683 -315.2043843548527 150.622381565956 29.19386590842612 -314.9948419197287 150.4905593476317 29.12888080663299 -314.7660479493192 148.6019721220905 25.6778021850181 -312.5045467801461 148.7480482604367 25.64147237215536 -312.8017762306053 149.0136043960943 25.57542732999752 -313.342118446421 149.3007667301206 25.50400872613125 -313.9264240264191 149.4318983701808 25.47139567927923 -314.1932450538216 149.5591347245209 25.42036305427394 -314.4599597647233 149.6686512814733 25.33496071753473 -314.7062582801856 149.7604480410332 25.21518866904228 -314.9321406002101 149.8345250031857 25.0610469088 -315.1376067247957 149.8859350917885 24.88503342124466 -315.3080461370557 149.9097312306465 24.69964619079644 -315.428848320102 149.9059134197867 24.50488521747286 -315.5000132739335 149.8744816591807 24.30075050125208 -315.5215409985526 149.492944343591 22.53957775460128 -315.4937860819122 149.437679876723 22.34352348062032 -315.465951643722 149.3612744582515 22.16797476367754 -315.3889508543055 149.26372808817 22.01293160377634 -315.2627837136632 149.1450407664813 21.87839400091355 -315.0874502217946 149.0149281620395 21.77387575074965 -314.8779077866698 148.8831059437148 21.70889064895471 -314.6491138162614 146.9825766839442 18.20244126481236 -312.3868433184795 147.0896770749462 18.16188220446782 -312.6103818463756 147.8244702959148 18.05139922199453 -314.0763624604627 147.9517045592243 18.00036079544532 -314.3430754662176 148.061214843068 17.91494105405161 -314.5893688662396 148.1530011474372 17.79513999780068 -314.8152426605311 148.2270634723307 17.64095762669797 -315.0206968490904 148.278457364283 17.46489633018462 -315.1911242118873 148.3022383698115 17.27945849769515 -315.3119175288884 148.2984064889179 17.08464412922683 -315.3830768000933 148.2669617215975 16.88045322477763 -315.4046020255044 148.1666455846025 16.41739485722007 -315.3973045321638 147.9976334360372 15.63723633081065 -315.3850097502301 147.8079085251568 14.76146788363064 -315.3712082192368</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"250\" source=\"#ID10640\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10637\">\r\n\t\t\t\t\t<float_array count=\"750\" id=\"ID10641\">0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 0.8734712228930204 -0.1821113582654248 0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939 -0.8734712228930204 0.1821113582654248 -0.4515345789288939</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"250\" source=\"#ID10641\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10639\">\r\n\t\t\t\t\t<float_array count=\"250\" id=\"ID10642\">26.40898706090987 -8.874827320888446 25.95325468753563 -8.330944492147504 25.9205064543195 -8.874827920184142 25.9607897761101 -8.330944482903044 25.97738588599215 -8.330944462541925 25.99217015536316 -8.33094444440377 26.00094526889295 -8.330944433637972 26.00475755384485 -8.330431801739241 26.00827774600489 -8.328893915755568 26.01150584537314 -8.326330775686937 26.01444185194963 -8.322742381533342 26.01688306622619 -8.318435447306765 26.01862678869444 -8.313716687019003 26.01967301935431 -8.308586100670105 26.02002175820605 -8.303043688260082 26.01967600730231 -8.297996117601331 26.01797126555334 -8.277034470640615 26.01872231369904 -8.272635497612304 26.01897265918169 -8.267990993709583 26.0186239066553 -8.262387266148998 26.09228137592206 -8.318434585846248 26.09052331920493 -8.313715662690015 26.08946848235376 -8.308584978620022 26.09474265250514 -8.322741748088799 26.0976926268066 -8.326330369051666 26.10091677667915 -8.328893668368991 26.10441510212282 -8.330431646040761 26.10818760313757 -8.330944302067024 26.14156242557934 -8.330944261120877 26.14537364201456 -8.330431595790532 26.14889281112647 -8.328893609509246 26.15211993291557 -8.326330302277169 26.15505500738145 -8.322741674094136 26.15749542595383 -8.31843450583801 26.15923858006192 -8.313715578386244 26.16028446970572 -8.308584891738981 26.16063309488559 -8.303042445896196 26.16063308809037 -8.297503811835853 26.16063307320995 -8.285374877251893 26.16063305944914 -8.274158528113812 26.16063305187949 -8.267988680204624 26.16028441302517 -8.262384919211005 26.2311346558857 -8.313715490180039 26.23007981903448 -8.308584806110069 26.23289271260279 -8.318434413336291 26.2353539891858 -8.322741575578824 26.23830396348727 -8.326330196541699 26.24152811335983 -8.328893495859031 26.24502643880352 -8.330431473530812 26.24879893981833 -8.330944129557084 26.28217376226019 -8.330944088610957 26.28598497869528 -8.330431423280565 26.28950414780726 -8.328893436999326 26.29273126959633 -8.326330129767211 26.29566634406218 -8.322741501584201 26.29810676263452 -8.31843433332805 26.29984991674268 -8.313715405876307 26.30089580638649 -8.308584719229062 26.3012444315663 -8.303042273386243 26.30124442477117 -8.297503639325946 26.30124440989063 -8.285374704741926 26.30124439612986 -8.274158355603861 26.30124438856023 -8.26798850769466 26.30089574970582 -8.262384746701011 25.66620813361485 -9.452493389374599 25.92050705361505 -9.363308526774588 25.66620637165434 -8.016334971564241 26.65814967147092 -9.452493396735589 26.40898766020555 -9.363307927478932 25.95325457572672 -8.239810050619459 26.65814790951045 -8.016334978925251 25.96064671058415 -8.239950192421876 25.97690926139213 -8.239950172470067 25.99126430534582 -8.239950154858452 25.99989610123639 -8.239950144268516 26.00370838744599 -8.24046276681301 26.00722858337954 -8.242000644159173 26.01045668903708 -8.24456377630697 26.01339270441847 -8.24815216325641 26.0158339292736 -8.252467850922383 26.01757766335255 -8.257212885219925 26.1044149917399 -8.240459467131476 26.10091667006994 -8.241997453387114 26.09769252648696 -8.244560760615585 26.09474256099096 -8.248149388816836 26.09228129498723 -8.252465316528065 26.09052324988128 -8.257210522286488 26.08946842567298 -8.262385006092028 26.08911682236252 -8.267988767944789 26.08911682993201 -8.274158615853928 26.08911686536843 -8.303042533636319 26.08911685857334 -8.297503899576036 26.0891168436929 -8.285374964992069 26.10818749149668 -8.23994680184855 26.14156231376661 -8.239806610030886 26.14537353153482 -8.240380582015959 26.14889270447431 -8.241962356809495 26.15211983258514 -8.244551934411597 26.15505491586738 -8.248149314822232 26.15749534501889 -8.252465236519758 26.15923851073815 -8.257210437982668 26.24152800675062 -8.241997280877168 26.23830386316774 -8.244560588105674 26.23535389767164 -8.248149216306874 26.23289263166797 -8.252465144018119 26.23113458656198 -8.257210349776532 26.2300797623537 -8.262384833582079 26.22972815904331 -8.267988595434861 26.22972816661279 -8.274158443344009 26.22972820204916 -8.303042361126376 26.22972818037365 -8.285374792482124 26.22972819525413 -8.297503727066109 26.24502632842058 -8.240459294621505 26.24879882817739 -8.239946629338583 26.28217365044732 -8.239806437520928 26.28598486821551 -8.240380409505995 26.28950404115511 -8.241962184299585 26.29273116926587 -8.244551761901626 26.29566625254811 -8.248149142312265 26.2981066816996 -8.252465064009812 26.29984984741886 -8.257210265472716 26.01705299227833 -8.288847264499786 26.01674315847517 -8.281153142511178 26.01506163619451 -8.284956742940539 26.01863876732039 -8.293228849533993</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"125\" source=\"#ID10642\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10638\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10636\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10637\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"262\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10638\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10639\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 5 5 0 0 6 6 6 6 0 0 7 7 7 7 0 0 8 8 8 8 0 0 9 9 9 9 0 0 10 10 10 10 0 0 11 11 11 11 0 0 12 12 12 12 0 0 13 13 13 13 0 0 14 14 14 14 0 0 15 15 15 15 0 0 16 16 16 16 0 0 17 17 17 17 0 0 18 18 18 18 0 0 19 19 19 19 0 0 20 20 19 19 20 20 21 21 19 19 21 21 22 22 20 20 0 0 23 23 23 23 0 0 24 24 24 24 0 0 25 25 25 25 0 0 26 26 26 26 0 0 27 27 27 27 0 0 28 28 28 28 0 0 29 29 29 29 0 0 30 30 30 30 0 0 31 31 31 31 0 0 32 32 32 32 0 0 33 33 33 33 0 0 34 34 34 34 0 0 35 35 35 35 0 0 36 36 36 36 0 0 37 37 37 37 0 0 38 38 38 38 0 0 39 39 39 39 0 0 40 40 40 40 0 0 41 41 41 41 0 0 42 42 41 41 42 42 43 43 42 42 0 0 44 44 44 44 0 0 45 45 45 45 0 0 46 46 46 46 0 0 47 47 47 47 0 0 48 48 48 48 0 0 49 49 49 49 0 0 50 50 50 50 0 0 51 51 51 51 0 0 52 52 52 52 0 0 53 53 53 53 0 0 54 54 54 54 0 0 55 55 55 55 0 0 56 56 56 56 0 0 57 57 57 57 0 0 58 58 58 58 0 0 59 59 59 59 0 0 60 60 60 60 0 0 61 61 61 61 0 0 62 62 62 62 0 0 63 63 64 64 65 65 66 66 65 65 64 64 67 67 65 65 67 67 68 68 68 68 67 67 0 0 66 66 69 69 70 70 69 69 66 66 2 2 2 2 66 66 65 65 69 69 2 2 1 1 70 70 69 69 71 71 70 70 71 71 72 72 70 70 72 72 73 73 70 70 73 73 74 74 70 70 74 74 75 75 70 70 75 75 76 76 70 70 76 76 77 77 70 70 77 77 78 78 70 70 78 78 79 79 70 70 79 79 80 80 70 70 80 80 19 19 70 70 19 19 81 81 81 81 19 19 82 82 82 82 19 19 83 83 83 83 19 19 84 84 84 84 19 19 85 85 85 85 19 19 86 86 86 86 19 19 87 87 87 87 19 19 88 88 88 88 19 19 89 89 89 89 19 19 90 90 90 90 19 19 22 22 89 89 90 90 91 91 89 89 91 91 92 92 70 70 81 81 93 93 70 70 93 93 94 94 70 70 94 94 95 95 70 70 95 95 96 96 70 70 96 96 97 97 70 70 97 97 98 98 70 70 98 98 99 99 70 70 99 99 100 100 70 70 100 100 41 41 70 70 41 41 101 101 101 101 41 41 102 102 102 102 41 41 103 103 103 103 41 41 104 104 104 104 41 41 105 105 105 105 41 41 106 106 106 106 41 41 107 107 107 107 41 41 108 108 108 108 41 41 109 109 109 109 41 41 43 43 108 108 109 109 110 110 110 110 109 109 111 111 70 70 101 101 112 112 70 70 112 112 113 113 70 70 113 113 114 114 70 70 114 114 115 115 70 70 115 115 116 116 70 70 116 116 117 117 70 70 117 117 118 118 70 70 118 118 119 119 70 70 119 119 120 120 70 70 120 120 63 63 70 70 63 63 0 0 70 70 0 0 67 67 121 121 122 122 123 123 122 122 121 121 124 124 122 122 124 124 16 16 16 16 124 124 15 15 125 15 126 124 127 16 127 16 126 124 128 122 126 124 129 121 128 122 130 123 128 122 129 121 131 67 132 0 133 70 132 0 134 63 133 70 134 63 135 120 133 70 135 120 136 119 133 70 136 119 137 118 133 70 137 118 138 117 133 70 138 117 139 116 133 70 139 116 140 115 133 70 140 115 141 114 133 70 141 114 142 113 133 70 142 113 143 112 133 70 143 112 144 101 133 70 145 111 146 109 147 110 147 110 146 109 148 108 149 43 150 41 146 109 146 109 150 41 148 108 148 108 150 41 151 107 151 107 150 41 152 106 152 106 150 41 153 105 153 105 150 41 154 104 154 104 150 41 155 103 155 103 150 41 156 102 156 102 150 41 144 101 144 101 150 41 133 70 150 41 157 100 133 70 157 100 158 99 133 70 158 99 159 98 133 70 159 98 160 97 133 70 160 97 161 96 133 70 161 96 162 95 133 70 162 95 163 94 133 70 163 94 164 93 133 70 164 93 165 81 133 70 166 92 167 91 168 89 167 91 169 90 168 89 170 22 171 19 169 90 169 90 171 19 168 89 168 89 171 19 172 88 172 88 171 19 173 87 173 87 171 19 174 86 174 86 171 19 175 85 175 85 171 19 176 84 176 84 171 19 177 83 177 83 171 19 178 82 178 82 171 19 165 81 165 81 171 19 133 70 171 19 179 80 133 70 179 80 180 79 133 70 180 79 181 78 133 70 181 78 182 77 133 70 182 77 183 76 133 70 183 76 184 75 133 70 184 75 185 74 133 70 185 74 186 73 133 70 186 73 187 72 133 70 187 72 188 71 133 70 188 71 189 69 133 70 190 1 191 2 189 69 192 65 193 66 191 2 191 2 193 66 189 69 133 70 189 69 193 66 132 0 131 67 194 68 194 68 131 67 192 65 131 67 195 64 192 65 193 66 192 65 195 64 134 63 132 0 196 62 196 62 132 0 197 61 197 61 132 0 198 60 198 60 132 0 199 59 199 59 132 0 200 58 200 58 132 0 201 57 201 57 132 0 202 56 202 56 132 0 203 55 203 55 132 0 204 54 204 54 132 0 205 53 205 53 132 0 206 52 206 52 132 0 207 51 207 51 132 0 208 50 208 50 132 0 209 49 209 49 132 0 210 48 210 48 132 0 211 47 211 47 132 0 212 46 212 46 132 0 213 45 213 45 132 0 214 44 214 44 132 0 215 42 149 43 215 42 150 41 215 42 132 0 150 41 150 41 132 0 216 40 216 40 132 0 217 39 217 39 132 0 218 38 218 38 132 0 219 37 219 37 132 0 220 36 220 36 132 0 221 35 221 35 132 0 222 34 222 34 132 0 223 33 223 33 132 0 224 32 224 32 132 0 225 31 225 31 132 0 226 30 226 30 132 0 227 29 227 29 132 0 228 28 228 28 132 0 229 27 229 27 132 0 230 26 230 26 132 0 231 25 231 25 132 0 232 24 232 24 132 0 233 23 233 23 132 0 234 20 170 22 235 21 171 19 235 21 234 20 171 19 234 20 132 0 171 19 171 19 132 0 236 18 236 18 132 0 237 17 237 17 132 0 127 16 127 16 132 0 125 15 125 15 132 0 238 14 238 14 132 0 239 13 239 13 132 0 240 12 240 12 132 0 241 11 241 11 132 0 242 10 242 10 132 0 243 9 243 9 132 0 244 8 244 8 132 0 245 7 245 7 132 0 246 6 246 6 132 0 247 5 247 5 132 0 248 4 248 4 132 0 249 3 249 3 132 0 190 1 191 2 190 1 132 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10643\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10644\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID10648\">147.8079085251568 14.76146788363064 -315.3712082192368 145.564086620939 14.90047043187326 -310.9745841329891 147.7217682176672 14.36384501495252 -315.3649419460422 147.9976334360372 15.63723633081065 -315.3850097502301 145.6519108804316 15.28972444703038 -310.9874832246679 145.8378225805118 16.14789114811117 -311.0010073637945 148.1666455846025 16.41739485722007 -315.3973045321638 146.0019278711025 16.90539966317044 -311.0129451965418 148.2669617215975 16.88045322477763 -315.4046020255044 148.2984064889179 17.08464412922683 -315.3830768000933 146.1006056165406 17.36089523033377 -311.0201235051555 148.3022383698115 17.27945849769515 -315.3119175288884 148.278457364283 17.46489633018462 -315.1911242118873 146.1563241118438 17.55904914608357 -311.0479894185933 148.2270634723307 17.64095762669797 -315.0206968490904 146.2329771767102 17.7357525484714 -311.1250035639341 148.1530011474372 17.79513999780068 -314.8152426605311 146.3305648111386 17.89100543749839 -311.2511659411774 147.3395437778261 17.89615832172819 -313.2009074100411 148.061214843068 17.91494105405161 -314.5893688662396 147.4544199896843 17.97833243012667 -313.389987561913 147.9517045592243 18.00036079544532 -314.3430754662176 147.5762859496756 18.03621267933011 -313.6023871493991 147.8244702959148 18.05139922199453 -314.0763624604627 147.7010124532606 18.06287597479548 -313.8329106298114 146.449087015123 18.02480781315865 -311.4264765503257 147.2687135427518 18.00728832570042 -313.0190692699549 147.185240334833 18.09634708901751 -312.8216756228004 146.5791722359918 18.12821774311794 -311.6364130171598 147.0896770749462 18.16188220446782 -312.6103818463756 146.7114489210878 18.19229329504776 -311.8664529674637 146.9825766839442 18.20244126481236 -312.3868433184795 146.8459170704068 18.21703446894856 -312.1165964012369 146.8459170704068 18.21703446894856 -312.1165964012369 146.9825766839442 18.20244126481236 -312.3868433184795 146.7114489210878 18.19229329504776 -311.8664529674637 147.0896770749462 18.16188220446782 -312.6103818463756 146.5791722359918 18.12821774311794 -311.6364130171598 147.185240334833 18.09634708901751 -312.8216756228004 146.449087015123 18.02480781315865 -311.4264765503257 147.2687135427518 18.00728832570042 -313.0190692699549 147.3395437778261 17.89615832172819 -313.2009074100411 146.3305648111386 17.89100543749839 -311.2511659411774 147.7010124532606 18.06287597479548 -313.8329106298114 147.8244702959148 18.05139922199453 -314.0763624604627 147.5762859496756 18.03621267933011 -313.6023871493991 147.9517045592243 18.00036079544532 -314.3430754662176 147.4544199896843 17.97833243012667 -313.389987561913 148.061214843068 17.91494105405161 -314.5893688662396 148.1530011474372 17.79513999780068 -314.8152426605311 146.2329771767102 17.7357525484714 -311.1250035639341 148.2270634723307 17.64095762669797 -315.0206968490904 146.1563241118438 17.55904914608357 -311.0479894185933 148.278457364283 17.46489633018462 -315.1911242118873 146.1006056165406 17.36089523033377 -311.0201235051555 148.3022383698115 17.27945849769515 -315.3119175288884 148.2984064889179 17.08464412922683 -315.3830768000933 146.0019278711025 16.90539966317044 -311.0129451965418 148.2669617215975 16.88045322477763 -315.4046020255044 148.1666455846025 16.41739485722007 -315.3973045321638 145.8378225805118 16.14789114811117 -311.0010073637945 147.9976334360372 15.63723633081065 -315.3850097502301 145.6519108804316 15.28972444703038 -310.9874832246679 145.564086620939 14.90047043187326 -310.9745841329891 147.8079085251568 14.76146788363064 -315.3712082192368 147.7217682176672 14.36384501495252 -315.3649419460422</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID10648\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10645\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID10649\">0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 0.8734712228930246 -0.1821113582654362 0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814 -0.8734712228930246 0.1821113582654362 -0.4515345789288814</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID10649\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10647\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID10650\">25.96078977611036 -8.330944482902613 25.95325457572699 -8.239810050619028 25.9532546875359 -8.330944492147072 25.97738588599242 -8.330944462541496 25.96064671058441 -8.239950192421443 25.97690926139239 -8.239950172469637 25.99217015536343 -8.33094444440334 25.99126430534609 -8.23995015485802 26.00094526889322 -8.330944433637541 26.00475755384511 -8.330431801738811 25.99989610123665 -8.239950144268082 26.00827774600516 -8.328893915755135 26.0115058453734 -8.326330775686504 26.00370838744625 -8.240462766812581 26.01444185194989 -8.32274238153291 26.00722858337981 -8.24200064415874 26.01688306622645 -8.318435447306332 26.01045668903734 -8.244563776306539 26.01506163619478 -8.284956742940109 26.01862678869471 -8.31371668701857 26.01705299227859 -8.288847264499355 26.01967301935458 -8.308586100669675 26.01863876732065 -8.293228849533561 26.02002175820631 -8.303043688259649 26.01967600730258 -8.297996117600899 26.01339270441873 -8.24815216325598 26.01674315847543 -8.281153142510748 26.01797126555361 -8.277034470640185 26.01583392927386 -8.252467850921953 26.01872231369931 -8.272635497611873 26.01757766335281 -8.257212885219495 26.01897265918196 -8.267990993709152 26.01862390665556 -8.262387266148568</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"33\" source=\"#ID10650\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10646\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10644\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10645\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"62\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10646\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10647\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 5 5 6 6 7 7 7 7 6 6 8 8 7 7 8 8 9 9 7 7 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 10 10 12 12 13 13 13 13 12 12 14 14 13 13 14 14 15 15 15 15 14 14 16 16 15 15 16 16 17 17 17 17 16 16 18 18 18 18 16 16 19 19 18 18 19 19 20 20 20 20 19 19 21 21 20 20 21 21 22 22 22 22 21 21 23 23 22 22 23 23 24 24 18 18 25 25 17 17 25 25 18 18 26 26 25 25 26 26 27 27 25 25 27 27 28 28 28 28 27 27 29 29 28 28 29 29 30 30 30 30 29 29 31 31 30 30 31 31 32 32 33 32 34 31 35 30 34 31 36 29 35 30 35 30 36 29 37 28 36 29 38 27 37 28 37 28 38 27 39 25 38 27 40 26 39 25 40 26 41 18 39 25 42 17 39 25 41 18 43 24 44 23 45 22 44 23 46 21 45 22 45 22 46 21 47 20 46 21 48 19 47 20 47 20 48 19 41 18 48 19 49 16 41 18 41 18 49 16 42 17 42 17 49 16 50 15 49 16 51 14 50 15 50 15 51 14 52 13 51 14 53 12 52 13 52 13 53 12 54 10 53 12 55 11 54 10 55 11 56 9 54 10 54 10 56 9 57 7 56 9 58 8 57 7 58 8 59 6 57 7 57 7 59 6 60 5 59 6 61 3 60 5 60 5 61 3 62 4 62 4 61 3 63 1 61 3 64 0 63 1 65 2 63 1 64 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10651\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10652\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID10656\">165.5687391426409 21.45670587637403 -349.6441047783163 165.3013125535583 21.10950936978304 -349.2668114095404 165.4790567583807 21.05795399681972 -349.631441882216 165.390994937824 21.50826124933531 -349.2794743056406 165.390994937824 21.50826124933531 -349.2794743056406 165.5687391426409 21.45670587637403 -349.6441047783163 165.3013125535583 21.10950936978304 -349.2668114095404 165.4790567583807 21.05795399681972 -349.631441882216</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID10656\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10653\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID10657\">0.8734712228933104 -0.1821113582654582 0.4515345789283196 0.8734712228933104 -0.1821113582654582 0.4515345789283196 0.8734712228933104 -0.1821113582654582 0.4515345789283196 0.8734712228933104 -0.1821113582654582 0.4515345789283196 -0.8734712228933104 0.1821113582654582 -0.4515345789283196 -0.8734712228933104 0.1821113582654582 -0.4515345789283196 -0.8734712228933104 0.1821113582654582 -0.4515345789283196 -0.8734712228933104 0.1821113582654582 -0.4515345789283196</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID10657\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10655\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID10658\">26.16135510609605 -9.027843704446269 26.15391602258944 -9.020140326881691 26.1537838755604 -9.02771155741736 26.16148725312507 -9.020272473910648</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID10658\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10654\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10652\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10653\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10654\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10655\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10659\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10660\">\r\n\t\t\t\t\t<float_array count=\"228\" id=\"ID10664\">165.2697963412875 20.12752618407637 -349.6018949099614 164.587734267137 19.90061785878231 -348.3739955716833 165.1801185184568 19.72879458588511 -349.5892326579233 165.4492797071355 20.92555725861951 -349.6272374477647 164.8253792998123 20.68175731940107 -348.5186616331276 165.3595973228696 20.52680537906588 -349.6145745516645 164.5883243417786 20.72212305883534 -348.0438104174538 164.6237558726145 20.81635403861094 -348.0743460430665 164.6658723721137 20.89997319198631 -348.122093333594 164.7146738402803 20.97298051895848 -348.1870522890366 164.9172946741865 21.07986151180069 -348.5359053606582 164.7664456067596 21.03043664132849 -348.2640291969402 164.8174730012406 21.06740218092784 -348.3478303448441 164.8677560237184 21.08387713775176 -348.4384557327506 165.0905547315183 19.33057002177122 -349.576586507425 164.4677030159041 19.08646590558544 -348.4701620144305 165.0008723472511 18.931818142216 -349.5639236113249 164.4230730202391 19.10985269158812 -348.3743952265197 164.3863316637835 19.15183472510341 -348.2863888488174 164.3574789465411 19.21241200614088 -348.2061428813236 164.3365148685148 19.29158453469324 -348.1336573240375 164.3246867242206 19.38261992361356 -348.074060289293 164.5585968199068 19.48486640830367 -348.4853100579467 164.3232418081857 19.47878578575626 -348.0324798894197 164.3321801204149 19.58008212112225 -348.0089161244188 164.5387679667254 19.5005153685039 -348.4406406417559 164.5266714240706 19.53371659706215 -348.4038498764135 164.5224449232021 19.57665795276182 -348.3783549618878 164.5262261953926 19.62152729439129 -348.3675730981537 164.3515016609078 19.68650892971516 -348.0033689942893 164.5277155041031 19.62814915944443 -348.3677833842818 164.5280250758392 19.63513481603638 -348.3655648046851 164.5595777795998 20.61728025264949 -348.0304864567574 164.6774120899672 20.29934945697676 -348.3866578237222 164.7372809315041 20.56554234742623 -348.3951111328782 164.7531827739301 20.61586460896285 -348.4055766577266 164.775745668509 20.65504052029098 -348.433423164459 164.8011007866526 20.67852108817567 -348.4730012804621 164.8253792998123 20.68175731940107 -348.5186616331276 164.8011007866526 20.67852108817567 -348.4730012804621 164.5883243417786 20.72212305883534 -348.0438104174538 164.775745668509 20.65504052029098 -348.433423164459 164.5595777795998 20.61728025264949 -348.0304864567574 164.7531827739301 20.61586460896285 -348.4055766577266 164.7372809315041 20.56554234742623 -348.3951111328782 164.6774120899672 20.29934945697676 -348.3866578237222 165.2697963412875 20.12752618407637 -349.6018949099614 164.587734267137 19.90061785878231 -348.3739955716833 164.3515016609078 19.68650892971516 -348.0033689942893 164.5280250758392 19.63513481603638 -348.3655648046851 164.5277155041031 19.62814915944443 -348.3677833842818 164.5262261953926 19.62152729439129 -348.3675730981537 164.3321801204149 19.58008212112225 -348.0089161244188 164.5224449232021 19.57665795276182 -348.3783549618878 164.5266714240706 19.53371659706215 -348.4038498764135 164.5387679667254 19.5005153685039 -348.4406406417559 164.5585968199068 19.48486640830367 -348.4853100579467 164.3232418081857 19.47878578575626 -348.0324798894197 164.3246867242206 19.38261992361356 -348.074060289293 165.0905547315183 19.33057002177122 -349.576586507425 164.3365148685148 19.29158453469324 -348.1336573240375 164.3574789465411 19.21241200614088 -348.2061428813236 164.3863316637835 19.15183472510341 -348.2863888488174 164.4230730202391 19.10985269158812 -348.3743952265197 164.4677030159041 19.08646590558544 -348.4701620144305 165.0008723472511 18.931818142216 -349.5639236113249 164.8677560237184 21.08387713775176 -348.4384557327506 164.9172946741865 21.07986151180069 -348.5359053606582 164.8174730012406 21.06740218092784 -348.3478303448441 164.7664456067596 21.03043664132849 -348.2640291969402 164.7146738402803 20.97298051895848 -348.1870522890366 165.4492797071355 20.92555725861951 -349.6272374477647 164.6658723721137 20.89997319198631 -348.122093333594 164.6237558726145 20.81635403861094 -348.0743460430665 165.3595973228696 20.52680537906588 -349.6145745516645 165.1801185184568 19.72879458588511 -349.5892326579233</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"76\" source=\"#ID10664\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10661\">\r\n\t\t\t\t\t<float_array count=\"228\" id=\"ID10665\">0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 0.8734712228933825 -0.1821113582655352 0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487 -0.8734712228933825 0.1821113582655352 -0.4515345789281487</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"76\" source=\"#ID10665\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10663\">\r\n\t\t\t\t\t<float_array count=\"76\" id=\"ID10666\">26.13611754261601 -9.027403212104552 26.12898711557194 -9.002037744291679 26.12854669716911 -9.027271071796882 26.15127001599555 -9.027667680915611 26.14409595916601 -9.004779867602489 26.14369878545989 -9.027535533886658 26.14376165402936 -8.99492874274878 26.14561452343211 -8.995530609640152 26.1473064723142 -8.996492531991155 26.14883750067557 -8.997814509801833 26.1516655295462 -9.005007131560479 26.1501021785555 -8.999390552817069 26.15099507599397 -9.001114670781929 26.15151619299088 -9.002986863696425 26.12098547894177 -9.027139099521143 26.11381064244399 -9.004295956506656 26.11341424840607 -9.027006952492183 26.11403158066181 -9.002304228482608 26.1146221684716 -9.000467208457849 26.11558240587354 -8.998784896432397 26.11691229286751 -8.997257292406276 26.11849634907276 -8.995992838650995 26.12138097232854 -9.004479705432352 26.12021909410862 -8.995099977438079 26.12208052797513 -8.994578708767582 26.12157368686286 -9.003549136866321 26.1221165975316 -9.002776066561687 26.1228698462341 -9.002233842756667 26.12369357486984 -9.001995813689682 26.12408065067235 -8.994429032639484 26.12381930635719 -9.001998008186668 26.1239463034203 -9.00194976277449 26.14174786410572 -8.99468693131703 26.1365579610189 -9.002169884599351 26.1416122512778 -9.002258101361205 26.14258823644924 -9.00245849414854 26.1433935825998 -9.003022624831411 26.14392919006128 -9.003834935339413</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID10666\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10662\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10660\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10661\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"72\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10662\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10663\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 4 4 5 5 4 4 3 3 6 6 6 6 3 3 7 7 7 7 3 3 8 8 8 8 3 3 9 9 9 9 3 3 10 10 9 9 10 10 11 11 11 11 10 10 12 12 12 12 10 10 13 13 14 14 15 15 16 16 15 15 14 14 17 17 17 17 14 14 18 18 18 18 14 14 19 19 19 19 14 14 20 20 20 20 14 14 21 21 21 21 14 14 22 22 21 21 22 22 23 23 23 23 22 22 24 24 24 24 22 22 25 25 24 24 25 25 26 26 24 24 26 26 27 27 24 24 27 27 28 28 24 24 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 29 29 31 31 1 1 29 29 1 1 32 32 32 32 1 1 33 33 33 33 1 1 0 0 32 32 33 33 34 34 32 32 34 34 35 35 32 32 35 35 36 36 32 32 36 36 6 6 6 6 36 36 37 37 6 6 37 37 4 4 38 4 39 37 40 6 39 37 41 36 40 6 40 6 41 36 42 32 41 36 43 35 42 32 43 35 44 34 42 32 44 34 45 33 42 32 46 0 47 1 45 33 45 33 47 1 42 32 42 32 47 1 48 29 47 1 49 31 48 29 49 31 50 30 48 29 50 30 51 28 48 29 48 29 51 28 52 24 51 28 53 27 52 24 53 27 54 26 52 24 54 26 55 25 52 24 55 25 56 22 52 24 52 24 56 22 57 23 57 23 56 22 58 21 56 22 59 14 58 21 58 21 59 14 60 20 60 20 59 14 61 19 61 19 59 14 62 18 62 18 59 14 63 17 63 17 59 14 64 15 65 16 64 15 59 14 66 13 67 10 68 12 68 12 67 10 69 11 69 11 67 10 70 9 67 10 71 3 70 9 70 9 71 3 72 8 72 8 71 3 73 7 73 7 71 3 40 6 40 6 71 3 38 4 74 5 38 4 71 3 75 2 47 1 46 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10667\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10668\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID10672\">165.8384736446371 22.65053689109402 -349.6844010004255 165.1552769533266 22.42393606133703 -348.4541827835566 165.7487912603685 22.25178501153857 -349.6717381043252 164.8286611765955 21.81356858738798 -348.0685320708107 165.0064053814235 21.76201321443421 -348.4331625434861 165.2166842527322 23.53882301931719 -348.123319819128 165.2449593375898 22.82268794089066 -348.4668456796568 165.3944284575546 23.48726764636297 -348.4879502918037 165.3944284575546 23.48726764636297 -348.4879502918037 165.2449593375898 22.82268794089066 -348.4668456796568 165.2166842527322 23.53882301931719 -348.123319819128 165.8384736446371 22.65053689109402 -349.6844010004255 165.1552769533266 22.42393606133703 -348.4541827835566 164.8286611765955 21.81356858738798 -348.0685320708107 165.0064053814235 21.76201321443421 -348.4331625434861 165.7487912603685 22.25178501153857 -349.6717381043252</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID10672\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10669\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID10673\">0.8734712228934217 -0.1821113582655106 0.4515345789280834 0.8734712228934217 -0.1821113582655106 0.4515345789280834 0.8734712228934217 -0.1821113582655106 0.4515345789280834 0.8734712228934217 -0.1821113582655106 0.4515345789280834 0.8734712228934217 -0.1821113582655106 0.4515345789280834 0.8734712228934217 -0.1821113582655106 0.4515345789280834 0.8734712228934217 -0.1821113582655106 0.4515345789280834 0.8734712228934217 -0.1821113582655106 0.4515345789280834 -0.8734712228934217 0.1821113582655106 -0.4515345789280834 -0.8734712228934217 0.1821113582655106 -0.4515345789280834 -0.8734712228934217 0.1821113582655106 -0.4515345789280834 -0.8734712228934217 0.1821113582655106 -0.4515345789280834 -0.8734712228934217 0.1821113582655106 -0.4515345789280834 -0.8734712228934217 0.1821113582655106 -0.4515345789280834 -0.8734712228934217 0.1821113582655106 -0.4515345789280834 -0.8734712228934217 0.1821113582655106 -0.4515345789280834</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID10673\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10671\">\r\n\t\t\t\t\t<float_array count=\"16\" id=\"ID10674\">26.1840282732358 -9.028288744599646 26.17689830126261 -9.002875133967791 26.17645704270009 -9.028156597570671 26.16446230572538 -8.995084541111602 26.16433015869654 -9.002655771647293 26.19722026802372 -8.995656293268906 26.18446953179826 -9.003007280996727 26.19708812099485 -9.003227523804558</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID10674\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10670\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10668\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10669\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10670\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10671\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 4 4 3 3 1 1 5 5 5 5 1 1 6 6 6 6 1 1 0 0 5 5 6 6 7 7 8 7 9 6 10 5 11 0 12 1 9 6 9 6 12 1 10 5 10 5 12 1 13 3 14 4 13 3 12 1 15 2 12 1 11 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10675\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10676\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID10680\">166.1070615200056 23.850231221851 -349.720114358001 165.8396349309198 23.50303471525729 -349.3428209892242 166.0173791357404 23.45147934229738 -349.7074514619011 165.9293173151814 23.90178659481046 -349.3554838853252 165.9293173151814 23.90178659481046 -349.3554838853252 166.1070615200056 23.850231221851 -349.720114358001 165.8396349309198 23.50303471525729 -349.3428209892242 166.0173791357404 23.45147934229738 -349.7074514619011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID10680\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10677\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID10681\">0.8734712228933436 -0.1821113582653156 0.4515345789283131 0.8734712228933436 -0.1821113582653156 0.4515345789283131 0.8734712228933436 -0.1821113582653156 0.4515345789283131 0.8734712228933436 -0.1821113582653156 0.4515345789283131 -0.8734712228933436 0.1821113582653156 -0.4515345789283131 -0.8734712228933436 0.1821113582653156 -0.4515345789283131 -0.8734712228933436 0.1821113582653156 -0.4515345789283131 -0.8734712228933436 0.1821113582653156 -0.4515345789283131</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID10681\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10679\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID10682\">26.20680174374544 -9.028636922685621 26.19936266023877 -9.020933545121007 26.19923051320978 -9.028504775656675 26.20693389077441 -9.021065692149941</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID10682\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10678\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10676\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10677\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10678\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10679\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10683\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10684\">\r\n\t\t\t\t\t<float_array count=\"252\" id=\"ID10688\">148.8831059437148 21.70889064895471 -314.6491138162614 148.6143326654026 21.69751989047165 -314.1337712695899 148.7495741115006 21.68343869553144 -314.4010683105685 148.4832010253501 21.73013293732868 -313.8669502421878 149.0149281620395 21.77387575074965 -314.8779077866698 148.1960386913218 21.8015515411945 -313.2826446621903 149.1450407664813 21.87839400091355 -315.0874502217946 147.9304825556571 21.86759658334938 -312.742302446374 147.7844064173189 21.90392639621916 -312.4450729959148 149.26372808817 22.01293160377634 -315.2627837136632 147.6557524034672 21.9554772256821 -312.1754068926645 147.5453010532151 22.04160892778702 -311.92700590087 149.3612744582515 22.16797476367754 -315.3889508543055 147.4530523665567 22.16232150252461 -311.699870020527 147.3790063434974 22.3176149499003 -311.4939992516383 149.437679876723 22.34352348062032 -315.465951643722 147.3277664875254 22.49441422969255 -311.3235722229445 149.492944343591 22.53957775460128 -315.4937860819122 147.303936302136 22.67964430168865 -311.2027675631846 149.8744816591807 24.30075050125208 -315.5215409985526 147.3075157873316 22.87330516588906 -311.1315852723611 147.3385049430992 23.07539682228651 -311.1100253504718 147.7167240734816 24.83739481698888 -311.1310285663981 149.9059134197867 24.50488521747286 -315.5000132739335 149.9097312306465 24.69964619079644 -315.428848320102 149.8859350917885 24.88503342124466 -315.3080461370557 147.7738828512058 25.03513110476331 -311.1618490709216 149.8345250031857 25.0610469088 -315.1376067247957 147.8515635282297 25.21152204082102 -311.2409771038028 149.7604480410332 25.21518866904228 -314.9321406002101 147.9497661045659 25.36656762516202 -311.3684126650419 149.6686512814733 25.33496071753473 -314.7062582801856 149.5591347245209 25.42036305427394 -314.4599597647233 148.0684905802114 25.50026785779016 -311.544155754639 149.4318983701808 25.47139567927923 -314.1932450538216 149.3007667301206 25.50400872613125 -313.9264240264191 148.1985722455447 25.60363442081246 -311.7541028340654 149.0136043960943 25.57542732999752 -313.342118446421 148.7480482604367 25.64147237215536 -312.8017762306053 148.33084639097 25.66767899636091 -311.9841503647922 148.6019721220905 25.6778021850181 -312.5045467801461 148.4653130164929 25.6924015844362 -312.2342983468191 148.4653130164929 25.6924015844362 -312.2342983468191 148.6019721220905 25.6778021850181 -312.5045467801461 148.33084639097 25.66767899636091 -311.9841503647922 148.7480482604367 25.64147237215536 -312.8017762306053 148.1985722455447 25.60363442081246 -311.7541028340654 149.0136043960943 25.57542732999752 -313.342118446421 149.3007667301206 25.50400872613125 -313.9264240264191 148.0684905802114 25.50026785779016 -311.544155754639 149.4318983701808 25.47139567927923 -314.1932450538216 149.5591347245209 25.42036305427394 -314.4599597647233 147.9497661045659 25.36656762516202 -311.3684126650419 149.6686512814733 25.33496071753473 -314.7062582801856 149.7604480410332 25.21518866904228 -314.9321406002101 147.8515635282297 25.21152204082102 -311.2409771038028 149.8345250031857 25.0610469088 -315.1376067247957 147.7738828512058 25.03513110476331 -311.1618490709216 149.8859350917885 24.88503342124466 -315.3080461370557 147.7167240734816 24.83739481698888 -311.1310285663981 149.9097312306465 24.69964619079644 -315.428848320102 149.9059134197867 24.50488521747286 -315.5000132739335 149.8744816591807 24.30075050125208 -315.5215409985526 147.3385049430992 23.07539682228651 -311.1100253504718 147.3075157873316 22.87330516588906 -311.1315852723611 147.303936302136 22.67964430168865 -311.2027675631846 149.492944343591 22.53957775460128 -315.4937860819122 147.3277664875254 22.49441422969255 -311.3235722229445 149.437679876723 22.34352348062032 -315.465951643722 147.3790063434974 22.3176149499003 -311.4939992516383 149.3612744582515 22.16797476367754 -315.3889508543055 147.4530523665567 22.16232150252461 -311.699870020527 147.5453010532151 22.04160892778702 -311.92700590087 149.26372808817 22.01293160377634 -315.2627837136632 147.6557524034672 21.9554772256821 -312.1754068926645 147.7844064173189 21.90392639621916 -312.4450729959148 149.1450407664813 21.87839400091355 -315.0874502217946 147.9304825556571 21.86759658334938 -312.742302446374 148.1960386913218 21.8015515411945 -313.2826446621903 149.0149281620395 21.77387575074965 -314.8779077866698 148.4832010253501 21.73013293732868 -313.8669502421878 148.8831059437148 21.70889064895471 -314.6491138162614 148.6143326654026 21.69751989047165 -314.1337712695899 148.7495741115006 21.68343869553144 -314.4010683105685</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"84\" source=\"#ID10688\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10685\">\r\n\t\t\t\t\t<float_array count=\"252\" id=\"ID10689\">0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 0.8734712228930208 -0.182111358265426 0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927 -0.8734712228930208 0.182111358265426 -0.4515345789288927</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"84\" source=\"#ID10689\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10687\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID10690\">26.09052331920504 -8.313715662689981 26.08911686536855 -8.303042533636285 26.08946848235388 -8.30858497861999 26.08911685857345 -8.297503899576002 26.09228137592218 -8.318434585846216 26.08911684369301 -8.285374964992036 26.09474265250525 -8.322741748088768 26.08911682993213 -8.274158615853896 26.08911682236264 -8.267988767944756 26.09769262680672 -8.326330369051632 26.0894684256731 -8.262385006091998 26.0905232498814 -8.257210522286457 26.10091677667926 -8.328893668368959 26.09228129498735 -8.252465316528033 26.09474256099108 -8.248149388816803 26.10441510212293 -8.330431646040729 26.09769252648708 -8.244560760615553 26.10818760313768 -8.330944302066992 26.10091667007005 -8.24199745338708 26.14156242557946 -8.330944261120845 26.10441499174002 -8.240459467131444 26.10818749149679 -8.239946801848516 26.14156231376673 -8.239806610030854 26.14537364201467 -8.330431595790497 26.14889281112658 -8.328893609509214 26.15211993291569 -8.326330302277137 26.14537353153493 -8.240380582015929 26.15505500738157 -8.3227416740941 26.14889270447442 -8.241962356809461 26.15749542595394 -8.318434505837978 26.15211983258526 -8.244551934411565 26.15923858006203 -8.31371557838621 26.16028446970583 -8.308584891738947 26.15505491586749 -8.248149314822202 26.1606330948857 -8.303042445896162 26.16063308809049 -8.297503811835819 26.15749534501901 -8.252465236519726 26.16063307321006 -8.285374877251861 26.16063305944926 -8.274158528113778 26.15923851073826 -8.257210437982636 26.16063305187961 -8.26798868020459 26.16028441302528 -8.262384919210971</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID10690\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10686\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10684\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10685\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"80\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10686\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10687\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 7 7 6 6 8 8 8 8 6 6 9 9 8 8 9 9 10 10 10 10 9 9 11 11 11 11 9 9 12 12 11 11 12 12 13 13 13 13 12 12 14 14 14 14 12 12 15 15 14 14 15 15 16 16 16 16 15 15 17 17 16 16 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 20 20 19 19 21 21 21 21 19 19 22 22 22 22 19 19 23 23 22 22 23 23 24 24 22 22 24 24 25 25 22 22 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29 28 28 29 29 30 30 30 30 29 29 31 31 30 30 31 31 32 32 30 30 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 33 33 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 36 36 38 38 39 39 39 39 38 38 40 40 39 39 40 40 41 41 42 41 43 40 44 39 43 40 45 38 44 39 44 39 45 38 46 36 45 38 47 37 46 36 47 37 48 35 46 36 46 36 48 35 49 33 48 35 50 34 49 33 50 34 51 32 49 33 49 33 51 32 52 30 51 32 53 31 52 30 53 31 54 29 52 30 52 30 54 29 55 28 54 29 56 27 55 28 55 28 56 27 57 26 56 27 58 25 57 26 57 26 58 25 59 22 58 25 60 24 59 22 60 24 61 23 59 22 61 23 62 19 59 22 59 22 62 19 63 21 63 21 62 19 64 20 64 20 62 19 65 18 62 19 66 17 65 18 65 18 66 17 67 16 66 17 68 15 67 16 67 16 68 15 69 14 68 15 70 12 69 14 69 14 70 12 71 13 71 13 70 12 72 11 70 12 73 9 72 11 72 11 73 9 74 10 74 10 73 9 75 8 73 9 76 6 75 8 75 8 76 6 77 7 77 7 76 6 78 5 76 6 79 4 78 5 78 5 79 4 80 3 79 4 81 0 80 3 80 3 81 0 82 1 83 2 82 1 81 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID10691\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID10692\">\r\n\t\t\t\t\t<float_array count=\"252\" id=\"ID10696\">150.4905593476317 29.12888080663299 -314.7660479493192 150.2217860693204 29.11751004814721 -314.2507054026489 150.3570275154177 29.10342885320699 -314.518002443627 150.0906544292716 29.15012309500742 -313.9838843752465 150.622381565956 29.19386590842612 -314.9948419197287 149.80349209524 29.22154169887119 -313.3995787952489 150.7524941703962 29.29838415858683 -315.2043843548527 149.5379359595786 29.28758674102744 -312.859236579433 149.3918598212404 29.32391655389768 -312.5620071289734 150.8711814920848 29.43292176144962 -315.379717846722 149.2632058073839 29.37546738335766 -312.2923410257237 149.1527544571316 29.46159908546122 -312.0439400339287 150.9687278621664 29.58796492135173 -315.5058849873647 149.0605057704752 29.58231166020062 -311.8168041535856 148.9864597474127 29.73760510757381 -311.6109333846972 151.0451332806401 29.76351363829497 -315.5828857767808 148.9352198914453 29.91440438737084 -311.4405063560047 151.1003977475095 29.95956791227843 -315.6107202149712 148.9113897060511 30.09963445936262 -311.3197016962446 151.481935063104 31.72074065893332 -315.6384751316111 148.9149691912458 30.29329532356258 -311.24851940542 148.9459583470155 30.49538697996161 -311.2269594835301 149.3241774773983 32.25738497466398 -311.2479626994567 151.5133668237029 31.92487537514842 -315.6169474069919 151.5171846345691 32.11963634847518 -315.5457824531605 151.4933884957059 32.30502357892249 -315.4249802701143 149.3813362551221 32.4551212624375 -311.27878320398 151.4419784071054 32.48103706647555 -315.2545408578544 149.4590169321523 32.63151219849999 -311.3579112368618 151.3679014449492 32.63517882671647 -315.0490747332688 149.5572195084822 32.78655778283803 -311.4853467981001 151.2761046853932 32.7549508752121 -314.8231924132442 151.1665881284425 32.84035321195177 -314.5768938977822 149.6759439841267 32.92025801546686 -311.6610898876979 151.0393517740981 32.8913858369541 -314.3101791868801 150.9082201340439 32.92399888380953 -314.043358159478 149.8060256494618 33.0236245784871 -311.8710369671246 150.6210578000089 32.99541748767172 -313.4590525794799 150.3555016643541 33.06146252983092 -312.918710363664 149.9382997948869 33.08766915403623 -312.1010844978512 150.2094255260074 33.09779234269456 -312.6214809132046 150.0727664204053 33.11239174210948 -312.3512324798776 150.0727664204053 33.11239174210948 -312.3512324798776 150.2094255260074 33.09779234269456 -312.6214809132046 149.9382997948869 33.08766915403623 -312.1010844978512 150.3555016643541 33.06146252983092 -312.918710363664 149.8060256494618 33.0236245784871 -311.8710369671246 150.6210578000089 32.99541748767172 -313.4590525794799 150.9082201340439 32.92399888380953 -314.043358159478 149.6759439841267 32.92025801546686 -311.6610898876979 151.0393517740981 32.8913858369541 -314.3101791868801 151.1665881284425 32.84035321195177 -314.5768938977822 149.5572195084822 32.78655778283803 -311.4853467981001 151.2761046853932 32.7549508752121 -314.8231924132442 151.3679014449492 32.63517882671647 -315.0490747332688 149.4590169321523 32.63151219849999 -311.3579112368618 151.4419784071054 32.48103706647555 -315.2545408578544 149.3813362551221 32.4551212624375 -311.27878320398 151.4933884957059 32.30502357892249 -315.4249802701143 149.3241774773983 32.25738497466398 -311.2479626994567 151.5171846345691 32.11963634847518 -315.5457824531605 151.5133668237029 31.92487537514842 -315.6169474069919 151.481935063104 31.72074065893332 -315.6384751316111 148.9459583470155 30.49538697996161 -311.2269594835301 148.9149691912458 30.29329532356258 -311.24851940542 148.9113897060511 30.09963445936262 -311.3197016962446 151.1003977475095 29.95956791227843 -315.6107202149712 148.9352198914453 29.91440438737084 -311.4405063560047 151.0451332806401 29.76351363829497 -315.5828857767808 148.9864597474127 29.73760510757381 -311.6109333846972 150.9687278621664 29.58796492135173 -315.5058849873647 149.0605057704752 29.58231166020062 -311.8168041535856 149.1527544571316 29.46159908546122 -312.0439400339287 150.8711814920848 29.43292176144962 -315.379717846722 149.2632058073839 29.37546738335766 -312.2923410257237 149.3918598212404 29.32391655389768 -312.5620071289734 150.7524941703962 29.29838415858683 -315.2043843548527 149.5379359595786 29.28758674102744 -312.859236579433 149.80349209524 29.22154169887119 -313.3995787952489 150.622381565956 29.19386590842612 -314.9948419197287 150.0906544292716 29.15012309500742 -313.9838843752465 150.4905593476317 29.12888080663299 -314.7660479493192 150.2217860693204 29.11751004814721 -314.2507054026489 150.3570275154177 29.10342885320699 -314.518002443627</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"84\" source=\"#ID10696\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10693\">\r\n\t\t\t\t\t<float_array count=\"252\" id=\"ID10697\">0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 0.8734712228930152 -0.1821113582654275 0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028 -0.8734712228930152 0.1821113582654275 -0.4515345789289028</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"84\" source=\"#ID10697\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID10695\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID10698\">26.23113465588584 -8.313715490180215 26.2297282020493 -8.303042361126552 26.23007981903463 -8.308584806110243 26.22972819525428 -8.297503727066285 26.23289271260294 -8.318434413336467 26.22972818037379 -8.285374792482298 26.23535398918595 -8.322741575579 26.22972816661294 -8.274158443344184 26.22972815904346 -8.267988595435039 26.23830396348742 -8.326330196541875 26.23007976235385 -8.262384833582257 26.23113458656212 -8.25721034977671 26.24152811335998 -8.328893495859209 26.23289263166812 -8.252465144018297 26.23535389767178 -8.248149216307052 26.24502643880366 -8.33043147353099 26.23830386316789 -8.24456058810585 26.24879893981847 -8.330944129557262 26.24152800675077 -8.241997280877344 26.28217376226034 -8.330944088611133 26.24502632842072 -8.240459294621683 26.24879882817753 -8.23994662933876 26.28217365044747 -8.239806437521105 26.28598497869542 -8.330431423280743 26.28950414780741 -8.328893436999502 26.29273126959648 -8.326330129767387 26.28598486821565 -8.240380409506171 26.29566634406233 -8.322741501584378 26.28950404115526 -8.24196218429976 26.29810676263467 -8.318434333328225 26.29273116926602 -8.244551761901803 26.29984991674283 -8.313715405876485 26.30089580638664 -8.308584719229238 26.29566625254826 -8.248149142312443 26.30124443156644 -8.303042273386419 26.30124442477131 -8.297503639326123 26.29810668169974 -8.252465064009989 26.30124440989078 -8.285374704742102 26.30124439613001 -8.274158355604035 26.29984984741901 -8.257210265472892 26.30124438856038 -8.267988507694838 26.30089574970597 -8.262384746701189</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID10698\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID10694\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID10692\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID10693\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"80\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID10694\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID10695\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 7 7 6 6 8 8 8 8 6 6 9 9 8 8 9 9 10 10 10 10 9 9 11 11 11 11 9 9 12 12 11 11 12 12 13 13 13 13 12 12 14 14 14 14 12 12 15 15 14 14 15 15 16 16 16 16 15 15 17 17 16 16 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 20 20 19 19 21 21 21 21 19 19 22 22 22 22 19 19 23 23 22 22 23 23 24 24 22 22 24 24 25 25 22 22 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29 28 28 29 29 30 30 30 30 29 29 31 31 30 30 31 31 32 32 30 30 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 33 33 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 36 36 38 38 39 39 39 39 38 38 40 40 39 39 40 40 41 41 42 41 43 40 44 39 43 40 45 38 44 39 44 39 45 38 46 36 45 38 47 37 46 36 47 37 48 35 46 36 46 36 48 35 49 33 48 35 50 34 49 33 50 34 51 32 49 33 49 33 51 32 52 30 51 32 53 31 52 30 53 31 54 29 52 30 52 30 54 29 55 28 54 29 56 27 55 28 55 28 56 27 57 26 56 27 58 25 57 26 57 26 58 25 59 22 58 25 60 24 59 22 60 24 61 23 59 22 61 23 62 19 59 22 59 22 62 19 63 21 63 21 62 19 64 20 64 20 62 19 65 18 62 19 66 17 65 18 65 18 66 17 67 16 66 17 68 15 67 16 67 16 68 15 69 14 68 15 70 12 69 14 69 14 70 12 71 13 71 13 70 12 72 11 70 12 73 9 72 11 72 11 73 9 74 10 74 10 73 9 75 8 73 9 76 6 75 8 75 8 76 6 77 7 77 7 76 6 78 5 76 6 79 4 78 5 78 5 79 4 80 3 79 4 81 0 80 3 80 3 81 0 82 1 83 2 82 1 81 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<library_materials>\r\n\t\t<material id=\"ID5\" name=\"material_0\">\r\n\t\t\t<instance_effect url=\"#ID6\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID14\" name=\"material_1\">\r\n\t\t\t<instance_effect url=\"#ID15\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID26\" name=\"material_2\">\r\n\t\t\t<instance_effect url=\"#ID27\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID41\" name=\"material_3\">\r\n\t\t\t<instance_effect url=\"#ID42\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID51\" name=\"material_4\">\r\n\t\t\t<instance_effect url=\"#ID52\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID60\" name=\"material_5\">\r\n\t\t\t<instance_effect url=\"#ID61\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID66\" name=\"material_6\">\r\n\t\t\t<instance_effect url=\"#ID67\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID263\" name=\"material_7\">\r\n\t\t\t<instance_effect url=\"#ID264\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID271\" name=\"edge_color97106106255\">\r\n\t\t\t<instance_effect url=\"#ID272\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID285\" name=\"edge_color18017689255\">\r\n\t\t\t<instance_effect url=\"#ID286\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID558\" name=\"material_8\">\r\n\t\t\t<instance_effect url=\"#ID559\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID567\" name=\"material_9\">\r\n\t\t\t<instance_effect url=\"#ID568\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID585\" name=\"material_10\">\r\n\t\t\t<instance_effect url=\"#ID586\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID594\" name=\"material_11\">\r\n\t\t\t<instance_effect url=\"#ID595\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID670\" name=\"material_12\">\r\n\t\t\t<instance_effect url=\"#ID671\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID686\" name=\"edge_color435155255\">\r\n\t\t\t<instance_effect url=\"#ID687\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID696\" name=\"edge_color166163188255\">\r\n\t\t\t<instance_effect url=\"#ID697\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID708\" name=\"material_13\">\r\n\t\t\t<instance_effect url=\"#ID709\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID734\" name=\"edge_color232232226255\">\r\n\t\t\t<instance_effect url=\"#ID735\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID759\" name=\"material_14\">\r\n\t\t\t<instance_effect url=\"#ID760\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID768\" name=\"material_15\">\r\n\t\t\t<instance_effect url=\"#ID769\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID789\" name=\"material_16\">\r\n\t\t\t<instance_effect url=\"#ID790\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID802\" name=\"material_17\">\r\n\t\t\t<instance_effect url=\"#ID803\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID866\" name=\"material_18\">\r\n\t\t\t<instance_effect url=\"#ID867\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID885\" name=\"material_19\">\r\n\t\t\t<instance_effect url=\"#ID886\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID894\" name=\"material_20\">\r\n\t\t\t<instance_effect url=\"#ID895\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID903\" name=\"material_21\">\r\n\t\t\t<instance_effect url=\"#ID904\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID912\" name=\"material_22\">\r\n\t\t\t<instance_effect url=\"#ID913\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID937\" name=\"material_23\">\r\n\t\t\t<instance_effect url=\"#ID938\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID956\" name=\"material_24\">\r\n\t\t\t<instance_effect url=\"#ID957\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID965\" name=\"material_25\">\r\n\t\t\t<instance_effect url=\"#ID966\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID1292\" name=\"material_26\">\r\n\t\t\t<instance_effect url=\"#ID1293\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID1703\" name=\"material_27\">\r\n\t\t\t<instance_effect url=\"#ID1704\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID1832\" name=\"edge_color898993255\">\r\n\t\t\t<instance_effect url=\"#ID1833\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID1959\" name=\"material_28\">\r\n\t\t\t<instance_effect url=\"#ID1960\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID1982\" name=\"material_29\">\r\n\t\t\t<instance_effect url=\"#ID1983\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID1996\" name=\"material_30\">\r\n\t\t\t<instance_effect url=\"#ID1997\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2021\" name=\"material_31\">\r\n\t\t\t<instance_effect url=\"#ID2022\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2076\" name=\"material_32\">\r\n\t\t\t<instance_effect url=\"#ID2077\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2135\" name=\"material_33\">\r\n\t\t\t<instance_effect url=\"#ID2136\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2173\" name=\"material_34\">\r\n\t\t\t<instance_effect url=\"#ID2174\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2182\" name=\"material_35\">\r\n\t\t\t<instance_effect url=\"#ID2183\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2257\" name=\"material_36\">\r\n\t\t\t<instance_effect url=\"#ID2258\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2338\" name=\"material_37\">\r\n\t\t\t<instance_effect url=\"#ID2339\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2373\" name=\"material_38\">\r\n\t\t\t<instance_effect url=\"#ID2374\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2406\" name=\"material_39\">\r\n\t\t\t<instance_effect url=\"#ID2407\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2415\" name=\"material_40\">\r\n\t\t\t<instance_effect url=\"#ID2416\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2562\" name=\"material_41\">\r\n\t\t\t<instance_effect url=\"#ID2563\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2578\" name=\"material_42\">\r\n\t\t\t<instance_effect url=\"#ID2579\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2588\" name=\"material_43\">\r\n\t\t\t<instance_effect url=\"#ID2589\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2607\" name=\"material_44\">\r\n\t\t\t<instance_effect url=\"#ID2608\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2616\" name=\"material_45\">\r\n\t\t\t<instance_effect url=\"#ID2617\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2627\" name=\"edge_color201219251255\">\r\n\t\t\t<instance_effect url=\"#ID2628\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2633\" name=\"edge_color656673255\">\r\n\t\t\t<instance_effect url=\"#ID2634\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2665\" name=\"edge_color535667255\">\r\n\t\t\t<instance_effect url=\"#ID2666\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2956\" name=\"material_46\">\r\n\t\t\t<instance_effect url=\"#ID2957\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2970\" name=\"material_47\">\r\n\t\t\t<instance_effect url=\"#ID2971\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID2991\" name=\"material_48\">\r\n\t\t\t<instance_effect url=\"#ID2992\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID3011\" name=\"material_49\">\r\n\t\t\t<instance_effect url=\"#ID3012\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID3047\" name=\"edge_color383838140\">\r\n\t\t\t<instance_effect url=\"#ID3048\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID3101\" name=\"material_50\">\r\n\t\t\t<instance_effect url=\"#ID3102\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID3306\" name=\"material_51\">\r\n\t\t\t<instance_effect url=\"#ID3307\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID3417\" name=\"material_52\">\r\n\t\t\t<instance_effect url=\"#ID3418\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID3524\" name=\"material_53\">\r\n\t\t\t<instance_effect url=\"#ID3525\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID3561\" name=\"material_54\">\r\n\t\t\t<instance_effect url=\"#ID3562\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID3578\" name=\"material_55\">\r\n\t\t\t<instance_effect url=\"#ID3579\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID3739\" name=\"edge_color222222220255\">\r\n\t\t\t<instance_effect url=\"#ID3740\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID3789\" name=\"edge_color222225230255\">\r\n\t\t\t<instance_effect url=\"#ID3790\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID4105\" name=\"material_56\">\r\n\t\t\t<instance_effect url=\"#ID4106\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID4150\" name=\"material_57\">\r\n\t\t\t<instance_effect url=\"#ID4151\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID4802\" name=\"material_58\">\r\n\t\t\t<instance_effect url=\"#ID4803\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID4926\" name=\"material_59\">\r\n\t\t\t<instance_effect url=\"#ID4927\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID5399\" name=\"material_60\">\r\n\t\t\t<instance_effect url=\"#ID5400\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID5432\" name=\"material_61\">\r\n\t\t\t<instance_effect url=\"#ID5433\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID5787\" name=\"material_62\">\r\n\t\t\t<instance_effect url=\"#ID5788\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID5806\" name=\"material_63\">\r\n\t\t\t<instance_effect url=\"#ID5807\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID5825\" name=\"material_64\">\r\n\t\t\t<instance_effect url=\"#ID5826\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID5850\" name=\"material_65\">\r\n\t\t\t<instance_effect url=\"#ID5851\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7659\" name=\"material_66\">\r\n\t\t\t<instance_effect url=\"#ID7660\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7667\" name=\"material_67\">\r\n\t\t\t<instance_effect url=\"#ID7668\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7675\" name=\"material_68\">\r\n\t\t\t<instance_effect url=\"#ID7676\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7683\" name=\"material_69\">\r\n\t\t\t<instance_effect url=\"#ID7684\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7697\" name=\"material_70\">\r\n\t\t\t<instance_effect url=\"#ID7698\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7711\" name=\"material_71\">\r\n\t\t\t<instance_effect url=\"#ID7712\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7743\" name=\"material_72\">\r\n\t\t\t<instance_effect url=\"#ID7744\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7757\" name=\"material_73\">\r\n\t\t\t<instance_effect url=\"#ID7758\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7765\" name=\"edge_color000255\">\r\n\t\t\t<instance_effect url=\"#ID7766\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7801\" name=\"material_74\">\r\n\t\t\t<instance_effect url=\"#ID7802\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7809\" name=\"material_75\">\r\n\t\t\t<instance_effect url=\"#ID7810\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7823\" name=\"material_76\">\r\n\t\t\t<instance_effect url=\"#ID7824\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7837\" name=\"material_77\">\r\n\t\t\t<instance_effect url=\"#ID7838\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7845\" name=\"material_78\">\r\n\t\t\t<instance_effect url=\"#ID7846\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7859\" name=\"material_79\">\r\n\t\t\t<instance_effect url=\"#ID7860\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7873\" name=\"material_80\">\r\n\t\t\t<instance_effect url=\"#ID7874\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7913\" name=\"material_81\">\r\n\t\t\t<instance_effect url=\"#ID7914\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7921\" name=\"material_82\">\r\n\t\t\t<instance_effect url=\"#ID7922\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7929\" name=\"material_83\">\r\n\t\t\t<instance_effect url=\"#ID7930\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7943\" name=\"material_84\">\r\n\t\t\t<instance_effect url=\"#ID7944\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7975\" name=\"material_85\">\r\n\t\t\t<instance_effect url=\"#ID7976\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7983\" name=\"material_86\">\r\n\t\t\t<instance_effect url=\"#ID7984\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID7997\" name=\"material_87\">\r\n\t\t\t<instance_effect url=\"#ID7998\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8100\" name=\"material_88\">\r\n\t\t\t<instance_effect url=\"#ID8101\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8142\" name=\"material_89\">\r\n\t\t\t<instance_effect url=\"#ID8143\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8168\" name=\"material_90\">\r\n\t\t\t<instance_effect url=\"#ID8169\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8264\" name=\"material_91\">\r\n\t\t\t<instance_effect url=\"#ID8265\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8332\" name=\"material_92\">\r\n\t\t\t<instance_effect url=\"#ID8333\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8386\" name=\"material_93\">\r\n\t\t\t<instance_effect url=\"#ID8387\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8480\" name=\"material_94\">\r\n\t\t\t<instance_effect url=\"#ID8481\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8491\" name=\"material_95\">\r\n\t\t\t<instance_effect url=\"#ID8492\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8508\" name=\"material_96\">\r\n\t\t\t<instance_effect url=\"#ID8509\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8513\" name=\"material_97\">\r\n\t\t\t<instance_effect url=\"#ID8514\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8518\" name=\"material_98\">\r\n\t\t\t<instance_effect url=\"#ID8519\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8527\" name=\"material_99\">\r\n\t\t\t<instance_effect url=\"#ID8526\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8532\" name=\"material_100\">\r\n\t\t\t<instance_effect url=\"#ID8531\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8542\" name=\"material_101\">\r\n\t\t\t<instance_effect url=\"#ID8543\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8571\" name=\"material_102\">\r\n\t\t\t<instance_effect url=\"#ID8572\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8654\" name=\"material_103\">\r\n\t\t\t<instance_effect url=\"#ID8655\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8674\" name=\"material_104\">\r\n\t\t\t<instance_effect url=\"#ID8675\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8700\" name=\"material_105\">\r\n\t\t\t<instance_effect url=\"#ID8701\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8720\" name=\"material_106\">\r\n\t\t\t<instance_effect url=\"#ID8721\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8740\" name=\"material_107\">\r\n\t\t\t<instance_effect url=\"#ID8741\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8766\" name=\"material_108\">\r\n\t\t\t<instance_effect url=\"#ID8767\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8786\" name=\"edge_color25500255\">\r\n\t\t\t<instance_effect url=\"#ID8787\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID8946\" name=\"material_109\">\r\n\t\t\t<instance_effect url=\"#ID8947\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9112\" name=\"material_110\">\r\n\t\t\t<instance_effect url=\"#ID9113\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9156\" name=\"material_111\">\r\n\t\t\t<instance_effect url=\"#ID9157\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9250\" name=\"material_112\">\r\n\t\t\t<instance_effect url=\"#ID9251\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9276\" name=\"material_113\">\r\n\t\t\t<instance_effect url=\"#ID9277\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9394\" name=\"material_114\">\r\n\t\t\t<instance_effect url=\"#ID9395\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9403\" name=\"material_115\">\r\n\t\t\t<instance_effect url=\"#ID9404\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9498\" name=\"material_116\">\r\n\t\t\t<instance_effect url=\"#ID9499\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9636\" name=\"material_117\">\r\n\t\t\t<instance_effect url=\"#ID9637\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9668\" name=\"material_118\">\r\n\t\t\t<instance_effect url=\"#ID9669\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9677\" name=\"material_119\">\r\n\t\t\t<instance_effect url=\"#ID9678\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9682\" name=\"material_120\">\r\n\t\t\t<instance_effect url=\"#ID9683\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9687\" name=\"material_121\">\r\n\t\t\t<instance_effect url=\"#ID9688\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9716\" name=\"material_122\">\r\n\t\t\t<instance_effect url=\"#ID9717\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9721\" name=\"material_123\">\r\n\t\t\t<instance_effect url=\"#ID9722\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9726\" name=\"material_124\">\r\n\t\t\t<instance_effect url=\"#ID9727\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9735\" name=\"material_125\">\r\n\t\t\t<instance_effect url=\"#ID9736\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9744\" name=\"material_126\">\r\n\t\t\t<instance_effect url=\"#ID9745\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9749\" name=\"material_127\">\r\n\t\t\t<instance_effect url=\"#ID9750\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9754\" name=\"material_128\">\r\n\t\t\t<instance_effect url=\"#ID9755\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9759\" name=\"material_129\">\r\n\t\t\t<instance_effect url=\"#ID9760\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9764\" name=\"material_130\">\r\n\t\t\t<instance_effect url=\"#ID9765\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9769\" name=\"material_131\">\r\n\t\t\t<instance_effect url=\"#ID9770\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9774\" name=\"material_132\">\r\n\t\t\t<instance_effect url=\"#ID9775\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9779\" name=\"material_133\">\r\n\t\t\t<instance_effect url=\"#ID9780\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9784\" name=\"material_134\">\r\n\t\t\t<instance_effect url=\"#ID9785\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9789\" name=\"material_135\">\r\n\t\t\t<instance_effect url=\"#ID9790\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9794\" name=\"material_136\">\r\n\t\t\t<instance_effect url=\"#ID9795\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9799\" name=\"material_137\">\r\n\t\t\t<instance_effect url=\"#ID9800\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9804\" name=\"material_138\">\r\n\t\t\t<instance_effect url=\"#ID9805\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9809\" name=\"material_139\">\r\n\t\t\t<instance_effect url=\"#ID9810\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9814\" name=\"material_140\">\r\n\t\t\t<instance_effect url=\"#ID9815\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9819\" name=\"material_141\">\r\n\t\t\t<instance_effect url=\"#ID9820\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9824\" name=\"material_142\">\r\n\t\t\t<instance_effect url=\"#ID9825\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9829\" name=\"material_143\">\r\n\t\t\t<instance_effect url=\"#ID9830\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9834\" name=\"material_144\">\r\n\t\t\t<instance_effect url=\"#ID9835\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9839\" name=\"material_145\">\r\n\t\t\t<instance_effect url=\"#ID9840\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9844\" name=\"material_146\">\r\n\t\t\t<instance_effect url=\"#ID9845\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9849\" name=\"material_147\">\r\n\t\t\t<instance_effect url=\"#ID9850\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9854\" name=\"material_148\">\r\n\t\t\t<instance_effect url=\"#ID9855\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9859\" name=\"material_149\">\r\n\t\t\t<instance_effect url=\"#ID9860\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9864\" name=\"material_150\">\r\n\t\t\t<instance_effect url=\"#ID9865\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9869\" name=\"material_151\">\r\n\t\t\t<instance_effect url=\"#ID9870\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9874\" name=\"material_152\">\r\n\t\t\t<instance_effect url=\"#ID9875\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9879\" name=\"material_153\">\r\n\t\t\t<instance_effect url=\"#ID9880\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9884\" name=\"material_154\">\r\n\t\t\t<instance_effect url=\"#ID9885\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9889\" name=\"material_155\">\r\n\t\t\t<instance_effect url=\"#ID9890\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9898\" name=\"material_156\">\r\n\t\t\t<instance_effect url=\"#ID9899\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9915\" name=\"material_157\">\r\n\t\t\t<instance_effect url=\"#ID9916\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9928\" name=\"material_158\">\r\n\t\t\t<instance_effect url=\"#ID9929\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9933\" name=\"material_159\">\r\n\t\t\t<instance_effect url=\"#ID9934\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9962\" name=\"material_160\">\r\n\t\t\t<instance_effect url=\"#ID9963\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9967\" name=\"material_161\">\r\n\t\t\t<instance_effect url=\"#ID9968\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9972\" name=\"material_162\">\r\n\t\t\t<instance_effect url=\"#ID9973\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9977\" name=\"material_163\">\r\n\t\t\t<instance_effect url=\"#ID9978\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9982\" name=\"material_164\">\r\n\t\t\t<instance_effect url=\"#ID9983\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9987\" name=\"material_165\">\r\n\t\t\t<instance_effect url=\"#ID9988\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9992\" name=\"material_166\">\r\n\t\t\t<instance_effect url=\"#ID9993\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID9997\" name=\"material_167\">\r\n\t\t\t<instance_effect url=\"#ID9998\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10002\" name=\"material_168\">\r\n\t\t\t<instance_effect url=\"#ID10003\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10007\" name=\"material_169\">\r\n\t\t\t<instance_effect url=\"#ID10008\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10012\" name=\"material_170\">\r\n\t\t\t<instance_effect url=\"#ID10013\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10017\" name=\"material_171\">\r\n\t\t\t<instance_effect url=\"#ID10018\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10022\" name=\"material_172\">\r\n\t\t\t<instance_effect url=\"#ID10023\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10027\" name=\"material_173\">\r\n\t\t\t<instance_effect url=\"#ID10028\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10032\" name=\"material_174\">\r\n\t\t\t<instance_effect url=\"#ID10033\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10037\" name=\"material_175\">\r\n\t\t\t<instance_effect url=\"#ID10038\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10042\" name=\"material_176\">\r\n\t\t\t<instance_effect url=\"#ID10043\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10047\" name=\"material_177\">\r\n\t\t\t<instance_effect url=\"#ID10048\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10052\" name=\"material_178\">\r\n\t\t\t<instance_effect url=\"#ID10053\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10057\" name=\"material_179\">\r\n\t\t\t<instance_effect url=\"#ID10058\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10062\" name=\"material_180\">\r\n\t\t\t<instance_effect url=\"#ID10063\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10067\" name=\"material_181\">\r\n\t\t\t<instance_effect url=\"#ID10068\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10072\" name=\"material_182\">\r\n\t\t\t<instance_effect url=\"#ID10073\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10077\" name=\"material_183\">\r\n\t\t\t<instance_effect url=\"#ID10078\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10082\" name=\"material_184\">\r\n\t\t\t<instance_effect url=\"#ID10083\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10087\" name=\"material_185\">\r\n\t\t\t<instance_effect url=\"#ID10088\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10096\" name=\"material_186\">\r\n\t\t\t<instance_effect url=\"#ID10097\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10105\" name=\"material_187\">\r\n\t\t\t<instance_effect url=\"#ID10106\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10120\" name=\"material_188\">\r\n\t\t\t<instance_effect url=\"#ID10121\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10141\" name=\"material_189\">\r\n\t\t\t<instance_effect url=\"#ID10142\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10154\" name=\"material_190\">\r\n\t\t\t<instance_effect url=\"#ID10155\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10175\" name=\"material_191\">\r\n\t\t\t<instance_effect url=\"#ID10176\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10188\" name=\"material_192\">\r\n\t\t\t<instance_effect url=\"#ID10189\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10232\" name=\"material_193\">\r\n\t\t\t<instance_effect url=\"#ID10233\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10290\" name=\"material_194\">\r\n\t\t\t<instance_effect url=\"#ID10291\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID10391\" name=\"material_195\">\r\n\t\t\t<instance_effect url=\"#ID10392\" />\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<library_effects>\r\n\t\t<effect id=\"ID6\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID7\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID15\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.1490196078431373 0.1490196078431373 0.1490196078431373 0.5490196078431373</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"RGB_ZERO\">\r\n\t\t\t\t\t\t\t<color>0.4509803921568627 0.4509803921568627 0.4509803921568627 0.4509803921568627</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID27\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.3803921568627451 0.4156862745098039 0.4156862745098039 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID42\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.9098039215686274 0.9098039215686274 0.8862745098039215 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID52\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID55\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID53\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID55\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID61\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.7058823529411765 0.6901960784313725 0.3490196078431372 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID67\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID70\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID68\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID70\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID264\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.7058823529411765 0.6901960784313725 0.3490196078431372 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID272\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.3803921568627451 0.4156862745098039 0.4156862745098039 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID286\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.7058823529411765 0.6901960784313725 0.3490196078431372 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID559\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID562\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID560\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID562\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID568\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.09019607843137255 0.2313725490196079 0.3450980392156863 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID586\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID589\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID587\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID589\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID595\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.6509803921568628 0.6392156862745098 0.7372549019607844 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID671\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.8705882352941177 0.8705882352941177 0.8627450980392157 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID687\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.1686274509803922 0.2 0.2156862745098039 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID697\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.6509803921568628 0.6392156862745098 0.7372549019607844 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID709\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.9098039215686274 0.9098039215686274 0.8862745098039215 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID735\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.9098039215686274 0.9098039215686274 0.8862745098039215 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID760\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID763\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID761\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID763\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID769\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID772\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID770\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID772\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID790\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID793\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID791\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID793\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID803\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.5843137254901961 0.7803921568627451 0.9490196078431372 0.4</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"RGB_ZERO\">\r\n\t\t\t\t\t\t\t<color>0.6 0.6 0.6 0.6</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID867\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID870\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID868\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID870\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID886\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID889\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID887\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID889\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID895\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID898\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID896\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID898\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID904\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID907\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID905\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID907\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID913\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID916\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID914\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID916\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID938\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID941\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID939\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID941\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID957\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID960\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID958\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID960\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID966\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID969\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID967\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID969\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID1293\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID1296\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID1294\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID1296\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID1704\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID1707\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID1705\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID1707\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID1833\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.3490196078431372 0.3490196078431372 0.3647058823529412 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID1960\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.8705882352941177 0.8705882352941177 0.8627450980392157 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID1983\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID1986\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID1984\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID1986\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID1997\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2000\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID1998\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2000\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2022\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2025\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2023\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2025\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2077\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.1490196078431373 0.1490196078431373 0.1490196078431373 0.5490196078431373</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"RGB_ZERO\">\r\n\t\t\t\t\t\t\t<color>0.4509803921568627 0.4509803921568627 0.4509803921568627 0.4509803921568627</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2136\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.788235294117647 0.8588235294117647 0.984313725490196 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2174\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2177\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2175\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2177\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2183\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2186\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2184\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2186\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2258\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2261\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2259\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2261\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2339\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2342\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2340\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2342\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2374\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2377\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2375\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2377\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2407\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2410\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2408\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2410\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2416\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2419\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2417\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2419\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2563\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2566\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2564\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2566\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2579\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2582\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2580\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2582\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2589\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2592\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2590\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2592\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2608\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2611\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2609\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2611\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2617\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2620\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2618\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2620\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2628\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.788235294117647 0.8588235294117647 0.984313725490196 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2634\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.2549019607843137 0.2588235294117647 0.2862745098039216 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2666\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.207843137254902 0.2196078431372549 0.2627450980392157 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2957\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.7137254901960785 0.4627450980392157 0.4627450980392157 0.9803921568627451</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"RGB_ZERO\">\r\n\t\t\t\t\t\t\t<color>0.01960784313725494 0.01960784313725494 0.01960784313725494 0.01960784313725494</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2971\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2974\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2972\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2974\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID2992\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID2995\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID2993\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID2995\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID3012\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID3015\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID3013\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID3015\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID3048\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.1490196078431373 0.1490196078431373 0.1490196078431373 0.5490196078431373</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID3102\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID3105\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID3103\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID3105\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID3307\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID3310\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID3308\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID3310\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID3418\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID3421\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID3419\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID3421\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID3525\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID3528\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID3526\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID3528\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID3562\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID3565\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID3563\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID3565\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID3579\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID3582\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID3580\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID3582\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID3740\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.8705882352941177 0.8705882352941177 0.8627450980392157 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID3790\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.8705882352941177 0.8823529411764706 0.9019607843137255 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID4106\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID4109\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID4107\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID4109\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID4151\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID4154\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID4152\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID4154\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID4803\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID4806\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID4804\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID4806\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID4927\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.5529411764705883 0.5529411764705883 0.5372549019607843 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID5400\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID5403\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID5401\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID5403\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID5433\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID5436\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID5434\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID5436\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID5788\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID5791\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID5789\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID5791\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID5807\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID5810\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID5808\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID5810\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID5826\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID5829\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID5827\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID5829\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID5851\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID5854\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID5852\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID5854\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7660\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.7215686274509804 0.5254901960784314 0.04313725490196078 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7668\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.3764705882352941 0.3764705882352941 0.3764705882352941 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7676\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.5529411764705883 0.5529411764705883 0.5372549019607843 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7684\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.3764705882352941 0.3372549019607843 0.2980392156862745 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7698\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.1372549019607843 0.1372549019607843 0.1372549019607843 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7712\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7744\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.09019607843137255 0.2313725490196079 0.3450980392156863 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7758\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.05490196078431373 0.1058823529411765 0.2 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7766\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7802\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.1372549019607843 0.1372549019607843 0.1372549019607843 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7810\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.05490196078431373 0.1058823529411765 0.2 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7824\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.615686274509804 0.4549019607843137 0.2823529411764706 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7838\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.9098039215686274 0.3333333333333333 0.3254901960784314 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7846\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.9607843137254902 0.9607843137254902 0.9607843137254902 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7860\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.3333333333333333 0.4196078431372549 0.1843137254901961 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7874\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.08627450980392157 0.03529411764705882 0.03137254901960784 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7914\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.7490196078431373 0.6666666666666666 0.5098039215686274 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7922\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.5019607843137255 0.5019607843137255 0.5019607843137255 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7930\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.2549019607843137 0.2392156862745098 0.2156862745098039 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7944\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.6078431372549019 0.5764705882352941 0.5725490196078431 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7976\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.207843137254902 0.2627450980392157 0.1137254901960784 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7984\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.7294117647058823 0.6274509803921569 0.4117647058823529 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID7998\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.403921568627451 0.4 0.3568627450980392 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8101\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.6627450980392157 0.6627450980392157 0.6627450980392157 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8143\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8169\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.9607843137254902 0.9607843137254902 0.9607843137254902 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8265\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.7098039215686275 0.6352941176470588 0.4823529411764706 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8333\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.5019607843137255 0 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8387\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.3176470588235294 0.3176470588235294 0.3176470588235294 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8481\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.7568627450980392 0.7137254901960785 0.6823529411764706 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8492\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.4470588235294118 0.5019607843137255 0.1921568627450981 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8509\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.4470588235294118 0.403921568627451 0.2980392156862745 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8514\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.3058823529411765 0.1215686274509804 0.1176470588235294 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8519\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.6 0.5803921568627452 0.3372549019607843 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8526\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8531\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8543\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.3843137254901961 0.392156862745098 0.2666666666666667 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8572\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.2549019607843137 0.4 0.2235294117647059 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8655\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.4666666666666667 0.5333333333333333 0.6 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8675\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.7215686274509804 0.5254901960784314 0.04313725490196078 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8701\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.1843137254901961 0.3098039215686275 0.3098039215686275 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8721\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.6627450980392157 0.6 0.4431372549019608 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8741\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>1 0.8941176470588236 0.7098039215686275 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8767\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.2745098039215687 0.5098039215686274 0.7058823529411765 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8787\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>1 0 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>1 1 1 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID8947\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.9725490196078431 0.9725490196078431 1 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9113\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.8235294117647058 0.3607843137254902 0.596078431372549 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9157\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>1 0.8431372549019608 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9251\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.3058823529411765 0.2470588235294118 0.1686274509803922 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9277\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.392156862745098 0.5843137254901961 0.9294117647058824 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9395\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9398\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9396\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9398\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9404\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9407\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9405\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9407\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9499\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9502\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9500\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9502\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9637\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.796078431372549 0.788235294117647 0.9294117647058824 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9669\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9672\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9670\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9672\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9678\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9681\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9679\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9681\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9683\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9686\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9684\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9686\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9688\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9691\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9689\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9691\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9717\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9720\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9718\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9720\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9722\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9725\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9723\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9725\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9727\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9730\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9728\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9730\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9736\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9739\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9737\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9739\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9745\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9748\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9746\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9748\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9750\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9753\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9751\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9753\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9755\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9758\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9756\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9758\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9760\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9763\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9761\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9763\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9765\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9768\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9766\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9768\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9770\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9773\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9771\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9773\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9775\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9778\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9776\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9778\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9780\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9783\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9781\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9783\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9785\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9788\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9786\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9788\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9790\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9793\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9791\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9793\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9795\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9798\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9796\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9798\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9800\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9803\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9801\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9803\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9805\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9808\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9806\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9808\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9810\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9813\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9811\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9813\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9815\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9818\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9816\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9818\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9820\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9823\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9821\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9823\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9825\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9828\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9826\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9828\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9830\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9833\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9831\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9833\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9835\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9838\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9836\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9838\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9840\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9843\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9841\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9843\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9845\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9848\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9846\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9848\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9850\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9853\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9851\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9853\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9855\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9858\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9856\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9858\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9860\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9863\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9861\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9863\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9865\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9868\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9866\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9868\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9870\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9873\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9871\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9873\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9875\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9878\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9876\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9878\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9880\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9883\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9881\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9883\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9885\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9888\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9886\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9888\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9890\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9893\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9891\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9893\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9899\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9902\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9900\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9902\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9916\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9919\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9917\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9919\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9929\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9932\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9930\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9932\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9934\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9937\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9935\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9937\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9963\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9966\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9964\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9966\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9968\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9971\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9969\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9971\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9973\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9976\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9974\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9976\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9978\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9981\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9979\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9981\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9983\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9986\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9984\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9986\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9988\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9991\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9989\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9991\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9993\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID9996\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9994\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID9996\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID9998\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10001\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9999\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10001\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10003\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10006\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10004\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10006\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10008\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10011\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10009\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10011\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10013\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10016\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10014\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10016\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10018\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10021\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10019\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10021\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10023\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10026\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10024\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10026\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10028\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10031\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10029\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10031\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10033\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10036\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10034\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10036\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10038\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10041\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10039\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10041\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10043\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10046\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10044\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10046\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10048\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10051\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10049\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10051\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10053\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10056\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10054\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10056\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10058\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10061\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10059\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10061\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10063\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10066\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10064\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10066\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10068\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10071\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10069\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10071\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10073\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10076\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10074\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10076\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10078\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10081\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10079\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10081\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10083\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10086\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10084\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10086\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10088\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10091\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10089\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10091\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10097\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10100\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10098\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10100\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10106\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10109\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10107\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10109\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10121\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10124\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10122\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10124\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10142\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10145\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10143\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10145\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10155\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10158\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10156\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10158\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10176\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10179\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10177\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10179\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10189\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10192\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10190\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10192\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<extra>\r\n\t\t\t\t\t<technique profile=\"GOOGLEEARTH\">\r\n\t\t\t\t\t\t<double_sided>1</double_sided>\r\n\t\t\t\t\t</technique>\r\n\t\t\t\t</extra>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10233\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.9294117647058824 0.1882352941176471 0.2784313725490196 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10291\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10294\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10292\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10294\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID10392\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID10395\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID10393\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID10395\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_images>\r\n\t\t<image id=\"ID7\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture0.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID53\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture1.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID68\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture2.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID560\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture3.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID587\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture4.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID761\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture5.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID770\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture6.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID791\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture7.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID868\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture8.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID887\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture9.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID896\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture10.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID905\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture11.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID914\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture12.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID939\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture13.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID958\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture14.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID967\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture15.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID1294\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture16.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID1705\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture6.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID1984\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture17.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID1998\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture18.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2023\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture19.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2175\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture20.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2184\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture21.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2259\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture22_fix.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2340\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture23.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2375\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture24.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2408\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture25.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2417\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture26.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2564\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture27.png</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2580\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture28.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2590\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture22_fix.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2609\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture29.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2618\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture30.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2972\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture31.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID2993\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture32.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID3013\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture33.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID3103\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture34.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID3308\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture35.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID3419\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture36.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID3526\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture37.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID3563\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture38.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID3580\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture39.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID4107\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture40.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID4152\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture41.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID4804\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture42.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID5401\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture43.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID5434\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture44.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID5789\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture45.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID5808\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture46.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID5827\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture47.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID5852\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture48.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9396\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture49.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9405\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture50.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9500\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture50.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9670\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture51.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9679\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture52.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9684\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture53.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9689\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture54.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9718\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture55.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9723\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture56.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9728\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture57.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9737\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture58.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9746\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture59.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9751\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture60.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9756\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture61.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9761\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture62.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9766\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture63.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9771\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture64.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9776\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture65.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9781\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture66.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9786\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture67.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9791\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture68.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9796\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture69.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9801\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture70.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9806\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture71.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9811\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture72.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9816\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture73.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9821\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture74.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9826\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture75.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9831\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture76.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9836\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture77.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9841\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture78.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9846\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture79.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9851\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture80.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9856\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture81.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9861\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture82.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9866\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture83.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9871\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture84.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9876\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture85.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9881\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture86.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9886\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture87.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9891\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture88.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9900\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture89.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9917\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture90.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9930\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture91.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9935\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture92.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9964\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture93.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9969\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture94.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9974\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture95.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9979\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture96.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9984\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture97.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9989\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture98.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9994\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture99.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID9999\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture100.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10004\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture101.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10009\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture102.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10014\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture103.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10019\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture104.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10024\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture105.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10029\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture106.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10034\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture107.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10039\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture108.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10044\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture109.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10049\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture110.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10054\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture111.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10059\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture112.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10064\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture113.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10069\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture114.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10074\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture115.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10079\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture116.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10084\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture117.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10089\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture118.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10098\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture119.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10107\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture120.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10122\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture121.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10143\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture122.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10156\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture123.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10177\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture124.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10190\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture51.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10292\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture125.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID10393\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>untitled/texture126.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t</library_images>\r\n\t<library_nodes>\r\n\t\t<node id=\"ID3039\" name=\"säule\">\r\n\t\t\t<instance_geometry url=\"#ID3040\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID3046\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3047\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID3052\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3047\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID3983\" name=\"stairsinfront\">\r\n\t\t\t<instance_geometry url=\"#ID3984\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID3990\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID3994\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID3998\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4002\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4006\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4010\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4014\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3047\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4018\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4022\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4026\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4030\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4034\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4038\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4042\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4046\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4050\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4055\" name=\"wingsdownback\">\r\n\t\t\t<instance_geometry url=\"#ID4056\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4062\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4066\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4071\" name=\"wingssssUPPP\">\r\n\t\t\t<instance_geometry url=\"#ID4072\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4078\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4084\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4088\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4092\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4097\" name=\"roof_main\">\r\n\t\t\t<instance_geometry url=\"#ID4098\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4104\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID585\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4105\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4118\" name=\"säule\">\r\n\t\t\t<instance_geometry url=\"#ID4119\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4125\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4129\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4134\" name=\"triangel_shape\">\r\n\t\t\t<instance_geometry url=\"#ID4135\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4141\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4149\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4162\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4170\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4178\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4186\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4192\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4200\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4206\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4212\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4220\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4228\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4235\" name=\"triangel_shape\">\r\n\t\t\t<instance_geometry url=\"#ID4236\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4242\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4250\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4258\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4266\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4274\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4282\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4288\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4296\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4302\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4308\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID51\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4316\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID66\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4324\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4332\" name=\"downwing_minimal\">\r\n\t\t\t<instance_geometry url=\"#ID4333\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4339\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4345\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4351\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4357\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1959\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4363\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4367\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4371\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4375\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4379\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4383\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4389\" name=\"_2_PFOSTEN-SCHRAEG\">\r\n\t\t\t<instance_geometry url=\"#ID4390\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4396\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4408\" name=\"Gelaenderpfeiler\">\r\n\t\t\t<instance_geometry url=\"#ID4409\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4417\" name=\"Gelaenderpfeiler\">\r\n\t\t\t<instance_geometry url=\"#ID4418\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4435\" name=\"_2_Posten_gerade\">\r\n\t\t\t<instance_geometry url=\"#ID4436\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4442\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4448\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4454\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID14\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4605\" name=\"downwing_minimal\">\r\n\t\t\t<instance_geometry url=\"#ID4606\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4612\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4618\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4624\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4630\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1959\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4636\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4640\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4644\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4648\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4652\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4656\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4668\" name=\"Gelaender\">\r\n\t\t\t<instance_geometry url=\"#ID4669\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1959\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4675\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1959\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4681\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4687\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4693\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4699\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4722\" name=\"wingssssUPPP\">\r\n\t\t\t<instance_geometry url=\"#ID4723\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4729\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID26\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4735\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4739\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4743\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4752\" name=\"_2_Posten_gerade\">\r\n\t\t\t<instance_geometry url=\"#ID4753\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4759\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4765\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4771\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4797\" name=\"Gelaenderpfeiler\">\r\n\t\t\t<instance_geometry url=\"#ID4798\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4802\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4814\" name=\"_2_Posten_gerade\">\r\n\t\t\t<instance_geometry url=\"#ID4815\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4821\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4802\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4829\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID670\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4835\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4802\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID4921\" name=\"Group_35\">\r\n\t\t\t<instance_geometry url=\"#ID4922\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4930\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4936\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4942\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4948\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4954\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4960\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4966\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4972\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4978\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4984\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4990\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID4996\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5002\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5008\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5014\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5020\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5026\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5032\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5038\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5044\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5050\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5056\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5062\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5068\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5074\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5080\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5086\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5092\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5098\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5104\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5110\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5116\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5122\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5128\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5134\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5140\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5146\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5152\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5158\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5164\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5170\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5176\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5182\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5188\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5194\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5200\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5206\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5212\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5218\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5224\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5230\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5236\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5242\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5248\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5254\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5260\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5266\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5272\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5278\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5284\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5290\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5296\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5302\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5308\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5314\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID5319\" name=\"stairsinfront\">\r\n\t\t\t<instance_geometry url=\"#ID5320\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5326\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5330\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5334\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5338\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5342\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5346\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5350\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3047\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5354\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5358\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5362\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5366\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5370\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5374\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5378\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5382\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5386\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID734\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID5393\" name=\"Group_36\">\r\n\t\t\t<instance_geometry url=\"#ID5394\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2991\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID5399\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5407\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2956\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5413\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2991\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5421\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2956\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5427\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID2991\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID5432\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID5441\" name=\"säule_1\">\r\n\t\t\t<instance_geometry url=\"#ID5442\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5448\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID5453\" name=\"säule_2\">\r\n\t\t\t<instance_geometry url=\"#ID5454\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5460\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID5465\" name=\"säule_1\">\r\n\t\t\t<instance_geometry url=\"#ID5466\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5472\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID5477\" name=\"säule_2\">\r\n\t\t\t<instance_geometry url=\"#ID5478\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID5484\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID3739\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID7657\" name=\"Bryce\">\r\n\t\t\t<instance_geometry url=\"#ID7658\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7659\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7666\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7667\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7674\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7675\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7682\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7683\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7690\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7659\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7696\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7697\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7704\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7667\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7710\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7711\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7718\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7675\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7724\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7675\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7730\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7697\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7736\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7659\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7742\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7743\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7750\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7667\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7756\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7757\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7764\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7770\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7774\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7778\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7782\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7786\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7790\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7794\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID7799\" name=\"_2D_Woman_CoffeeCup\">\r\n\t\t\t<instance_geometry url=\"#ID7800\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7808\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7809\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7816\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7822\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7823\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7830\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7836\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7837\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7844\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7852\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7823\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7858\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7859\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7866\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7859\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7872\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7873\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7880\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7823\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7886\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7890\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7894\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID7899\" name=\"_2D_Man_Walking_Shades\">\r\n\t\t\t<instance_geometry url=\"#ID7900\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7906\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7912\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7913\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7920\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7921\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7928\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7929\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7936\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7942\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7943\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7950\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7943\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7956\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7913\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7962\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7913\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7968\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7921\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7974\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7975\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7982\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7983\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7990\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7975\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID7996\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7997\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8004\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8010\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7975\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8016\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7921\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8022\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7913\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8028\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8034\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8040\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8046\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7921\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8052\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8056\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8060\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID8066\" name=\"_2d_group__family\">\r\n\t\t\t<node id=\"ID8067\" name=\"instance_329\">\r\n\t\t\t\t<matrix>1 0 0 16.31735949181547 0 1 0 -0.9999999999998306 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID8068\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID8139\" name=\"instance_330\">\r\n\t\t\t\t<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID8140\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID8249\" name=\"instance_331\">\r\n\t\t\t\t<matrix>1 0 0 -18.95033998163543 0 1 0 -1.000000000002267 0 0 1 1.4210854715202e-014 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID8250\" />\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node id=\"ID8068\" name=\"Girl\">\r\n\t\t\t<instance_geometry url=\"#ID8069\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8075\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8081\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8087\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8093\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8099\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8100\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8107\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8113\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8119\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7873\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8125\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8131\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8135\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID8140\" name=\"Man\">\r\n\t\t\t<instance_geometry url=\"#ID8141\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8149\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8155\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8161\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8167\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8168\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8175\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8181\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8187\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8193\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8199\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8205\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8211\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8217\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8223\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8229\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8233\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8237\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8241\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8245\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID8250\" name=\"_2D_Boy_Coat\">\r\n\t\t\t<instance_geometry url=\"#ID8251\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8257\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8263\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8264\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8271\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8277\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8283\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8289\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8295\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8301\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8307\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8313\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8319\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8325\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7809\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8331\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8332\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8339\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8343\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID8348\" name=\"sketchup-download2007012019012414\">\r\n\t\t\t<instance_geometry url=\"#ID8349\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8355\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8361\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8367\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8264\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8373\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8379\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8385\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8386\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8393\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8399\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8405\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8411\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8417\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8332\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8423\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8332\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8429\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8435\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8441\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8264\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8447\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8453\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8459\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8463\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8467\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID8472\" name=\"sketchup-download2007012019010610\">\r\n\t\t\t<instance_geometry url=\"#ID8473\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8479\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8480\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8487\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID8491\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8495\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8480\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8501\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8507\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8508\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID8513\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8517\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8518\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8525\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8527\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID8532\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8535\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8541\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8542\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8549\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID8491\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8555\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8561\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8508\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8567\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID8571\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8575\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8508\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8581\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7929\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID8513\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8587\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8518\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8593\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7823\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8599\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8518\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8605\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7929\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID8513\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8611\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8615\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8619\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8623\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID8628\" name=\"sketchup-download200701201901064\">\r\n\t\t\t<instance_geometry url=\"#ID8629\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8635\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8641\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7859\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8647\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8653\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8654\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8661\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8667\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8673\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8674\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8681\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8654\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8687\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8654\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8693\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8654\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8699\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8700\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8707\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8654\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8713\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8654\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8719\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8720\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8727\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8733\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8739\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8740\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8747\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8753\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8759\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8765\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8766\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8773\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8766\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8779\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8785\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8786\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8791\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID8786\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8795\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID8786\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8799\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8786\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8803\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8786\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8807\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8811\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8815\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8786\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8819\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8786\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID8824\" name=\"sketchup-download2007012019014027\">\r\n\t\t\t<instance_geometry url=\"#ID8825\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8831\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8264\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8837\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8843\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8849\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8264\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8855\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8861\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8386\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8867\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8873\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8386\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8879\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID8264\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8885\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8891\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8264\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8897\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8142\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8903\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8264\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8909\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8913\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8917\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8921\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8925\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8929\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8933\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID8938\" name=\"_2D_Woman_Walking_Sweater\">\r\n\t\t\t<instance_geometry url=\"#ID8939\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8945\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8946\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8953\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7823\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8959\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7921\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8965\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8946\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8971\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7921\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8977\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8983\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7823\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8989\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7823\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID8995\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9001\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7823\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9007\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7823\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9013\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7823\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9019\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9025\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9031\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7921\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9037\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8946\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9043\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7823\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9049\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9053\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9057\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9061\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9065\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9069\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9073\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9077\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9081\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9085\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID9090\" name=\"_2D_Group_Women_Talking\">\r\n\t\t\t<node id=\"ID9091\" name=\"instance_338\">\r\n\t\t\t\t<matrix>1 0 0 -7.307630171024958 0 1 0 8.881784197001252e-016 0 0 1 -1.413188712513361e-030 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9092\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9247\" name=\"instance_339\">\r\n\t\t\t\t<matrix>1 0 0 7.704849419443688 0 1 0 0 0 0 1 -1.251681431083262e-030 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9248\" />\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node id=\"ID9092\" name=\"Woman_1\">\r\n\t\t\t<instance_geometry url=\"#ID9093\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8264\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9099\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7809\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9105\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7873\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9111\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9112\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9119\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9112\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9125\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8264\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9131\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9112\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9137\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8264\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9143\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9149\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9155\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9156\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9163\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8100\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9169\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9175\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9181\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9187\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9191\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9195\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9199\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9203\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9207\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9211\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9215\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9219\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9223\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9227\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9231\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9235\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9239\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9243\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID9248\" name=\"Woman_2\">\r\n\t\t\t<instance_geometry url=\"#ID9249\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9250\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9257\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9263\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9250\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9269\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9275\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9276\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9283\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9276\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9289\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9295\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9156\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9301\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9307\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9313\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7809\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9319\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9325\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7801\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9331\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9337\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7845\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9343\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID4926\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9349\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9353\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9357\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9361\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9365\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9369\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9373\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9377\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9381\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9385\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7765\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID9390\" name=\"turm\">\r\n\t\t\t<instance_geometry url=\"#ID10547\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10555\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10563\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10571\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10579\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10587\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10595\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10603\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10611\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10619\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10627\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10635\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10643\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10651\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10659\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10667\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10675\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10683\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10691\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<node id=\"ID9391\" name=\"instance_341\">\r\n\t\t\t\t<matrix>0.03947783067336876 -0.07824229561640568 0.1572248201207441 165.0020295242994 0.1755289994895206 0.02269447116784129 -0.03278004448777785 18.93148249867534 -0.005574156755375881 0.1605088912025952 0.08127622420720261 -349.5662974834905 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9392\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9435\" name=\"instance_342\">\r\n\t\t\t\t<matrix>0.07197856981140589 -0.2192204502277248 0.873471222893027 147.1454841973941 0.3322524175584315 0.05452114235928701 -0.1821113582654362 14.48399535640181 -0.005236078158899821 0.4460603538062918 0.4515345789289073 -315.6628477677997 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9436\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9493\" name=\"instance_343\">\r\n\t\t\t\t<matrix>-0.5660098960999468 0.8243078611621285 -0.01222078325005347 -551.5253179186833 -0.8243369112258765 -0.5660865770081622 -0.003826763876136277 401.1628162942503 -0.01007245290429184 0.007908056493179079 0.9999180008055618 10012.81393657777 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9494\" />\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node id=\"ID9392\" name=\"m.t._1\">\r\n\t\t\t<instance_geometry url=\"#ID9393\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9411\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9419\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9427\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID9436\" name=\"b_o_o_1\">\r\n\t\t\t<instance_geometry url=\"#ID9437\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9445\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9453\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9461\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9469\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9477\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9485\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID9494\" name=\"Group_28\">\r\n\t\t\t<instance_geometry url=\"#ID10223\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10231\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10232\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10241\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10232\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10249\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10257\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10265\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10273\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10281\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10289\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10302\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10310\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10232\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10318\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10326\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10334\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10232\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10342\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10350\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10232\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10358\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10366\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10374\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10382\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10390\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10391\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10403\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10411\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10419\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10427\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10232\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10435\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10290\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10443\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10232\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10451\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10459\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10232\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10467\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10232\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10475\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10483\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10491\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10499\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10507\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10515\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10232\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10523\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10531\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10539\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9394\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10232\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<node id=\"ID9495\" name=\"group_29\">\r\n\t\t\t\t<matrix>-0.8637419973543599 -0.5034455859491978 -0.02218792452146295 390.0129771343518 0.5036274239500681 -0.8639152194158171 -0.003148254617941658 254.102485895212 -0.01758351079049434 -0.01389372700142395 0.9997488607136748 -637.4854231183072 0 0 0 1</matrix>\r\n\t\t\t\t<node id=\"ID9496\" name=\"group_30\">\r\n\t\t\t\t\t<matrix>-1 -4.55580246728038e-011 9.136932328636264e-013 11.02362204760402 4.555802467279861e-011 -1 -5.682975935127311e-012 277.5590551218 9.136932331225315e-013 -5.682975935085685e-012 1 9.973275155061856e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9497\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9510\" name=\"group_31\">\r\n\t\t\t\t\t<matrix>9.054184886610261e-014 -1 -3.640510046628788e-012 277.5590551215519 1 9.054184887783118e-014 -3.221684119432193e-012 536.220472444282 3.221684119432523e-012 -3.640510046628496e-012 1 9.974241038435139e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9511\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9519\" name=\"group_32\">\r\n\t\t\t\t\t<matrix>-0.5000000000002279 -0.866025403784307 -3.28553668198612e-012 145.7323834823471 0.866025403784307 -0.5000000000002279 -4.965288678050963e-012 503.0074583997211 2.657297791320925e-012 -5.328002570691795e-012 1 9.974004569812678e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9520\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9528\" name=\"group_33\">\r\n\t\t\t\t\t<matrix>1.312498750675714e-014 1 2.042465888022068e-012 269.6850393698874 -1 1.312498751147113e-014 -2.307990886674446e-012 11.0236220487235 -2.307990886674473e-012 -2.042465888022037e-012 1 9.972154657589272e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9529\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9537\" name=\"group_34\">\r\n\t\t\t\t\t<matrix>-0.8660254037844847 0.4999999999999202 1.889164959583731e-012 44.23663609217829 -0.4999999999999202 -0.8660254037844847 -4.819728276397787e-012 145.732383482864 -7.73799291259509e-013 -5.118589606490607e-012 1 9.972709449357353e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9538\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9546\" name=\"group_35\">\r\n\t\t\t\t\t<matrix>0.5000000000000114 -0.8660254037844322 -3.076123718837809e-012 408.3308086797067 0.8660254037844321 0.5000000000000116 -1.534191595099882e-012 499.0704505235191 2.866710755047996e-012 -1.896905488147424e-012 1 9.974060958484188e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9547\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9555\" name=\"group_36\">\r\n\t\t\t\t\t<matrix>1 0 0 536.2204724426865 0 1 0 269.6850393707201 0 0 1 9.97325150819961e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9556\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9564\" name=\"group_37\">\r\n\t\t\t\t\t<matrix>-0.5000000000001157 0.866025403784372 2.302324426522091e-012 138.9132858111968 -0.8660254037843719 -0.5000000000001158 -3.584398011759995e-012 48.17364396921826 -1.953017522197037e-012 -3.786070447001829e-012 1 9.972382031264715e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9565\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9573\" name=\"group_38\">\r\n\t\t\t\t\t<matrix>0.8660254037843277 -0.5000000000001923 -1.743604559042285e-012 503.0074583981298 0.5000000000001922 0.8660254037843278 -3.549733647485469e-013 401.5117110099163 1.687492524659132e-012 -5.643863279824362e-013 1 9.973713531508111e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9574\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID41\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9403\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9582\" name=\"group_39\">\r\n\t\t\t\t\t<matrix>0.8660254037844249 0.500000000000024 1.687505383827698e-012 499.0704505219278 -0.500000000000024 0.8660254037844249 -5.644157679563079e-013 138.9132858125566 -1.743630415395941e-012 -3.549542985672318e-013 1 9.972804036806338e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9583\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9591\" name=\"group_40\">\r\n\t\t\t\t\t<matrix>0.5000000000001905 0.866025403784327 5.415944655168188e-008 401.5117110093963 -0.8660254037838562 0.4999999999999821 -1.013321409860372e-006 44.23663609376919 -9.046418064134717e-007 4.597572483617483e-007 0.9999999999994852 9.9724256870104e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9592\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t\t<node id=\"ID9600\" name=\"group_41\">\r\n\t\t\t\t\t<matrix>-0.8660254038062026 -0.4999999999623038 -3.627138923807411e-013 48.17364396805738 0.4999999999623038 -0.8660254038062026 -5.942834473733213e-012 408.3308086815667 2.657297791527434e-012 -5.328002571044925e-012 1 9.973697160603479e-006 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_geometry url=\"#ID9601\">\r\n\t\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t\t</bind_material>\r\n\t\t\t\t\t</instance_geometry>\r\n\t\t\t\t</node>\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9609\" name=\"instance_344\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -300.4824148638138 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 409.4231356633164 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -244.2913605346839 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9627\" name=\"instance_345\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -296.8566661291909 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 408.403005132942 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -380.9060507171871 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9628\" name=\"instance_346\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -297.948591548653 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 408.2480713428546 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -331.7058115088821 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9629\" name=\"instance_347\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -288.4038089338922 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 395.5032138721174 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -506.8322107282074 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9630\" name=\"instance_348\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -302.3867327951632 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 409.1529311332405 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -158.4861433552851 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9631\" name=\"instance_349\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -298.822131884225 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 408.1241243107805 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -292.3456201421377 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9632\" name=\"instance_350\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -289.3297616894881 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 395.3718300181014 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -465.1104078795743 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9633\" name=\"instance_351\">\r\n\t\t\t\t<matrix>0.05764490294639697 0.5090202048047513 -0.01136909252479757 -107.6334615838568 -0.5091470516441393 0.05762323748819194 -0.001613165666233318 482.14852957557 -0.0003239851663311447 0.01147839718410707 0.5122713162296914 -642.0583737864581 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9634\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9643\" name=\"instance_352\">\r\n\t\t\t\t<matrix>0.05764490294639697 0.5090202048047504 -0.01136909252479755 183.7790995097023 -0.5091470516441393 0.05762323748819216 -0.001613165666233153 362.5490871093497 -0.0003239851663311447 0.01147839718410707 0.5122713162296919 -146.1331194893282 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9634\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9644\" name=\"instance_353\">\r\n\t\t\t\t<matrix>-0.2542844052381408 -0.4447065830273734 -0.01136909252350361 208.0222864652376 0.4448316547224928 -0.2543146803733462 -0.001613165663035656 -80.21777413007617 -0.004242665381311987 -0.01067044323009113 0.5122713162297294 -526.9603323664051 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9634\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9645\" name=\"instance_354\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -303.2690085339768 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 409.0277446308256 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -118.7323500749753 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9646\" name=\"instance_355\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -301.3559551992692 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 409.2991886312134 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -204.9311691678904 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9647\" name=\"instance_356\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -290.3692379228899 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 395.2243612068408 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -418.2717792486419 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9648\" name=\"instance_357\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -286.4312808710827 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 395.7830967687725 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -595.710856482785 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9649\" name=\"instance_358\">\r\n\t\t\t\t<matrix>0.1124998105901598 0.9934039906415758 -0.02218792452146272 -285.1888890581702 -0.9936515449729353 0.1124575282751658 -0.00314825461794166 395.9593803027198 -0.0006322895517793756 0.02240124352870233 0.9997488607136748 -651.6908467672438 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9610\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9650\" name=\"instance_359\">\r\n\t\t\t\t<matrix>0.05301116120020451 0.1078035070402542 0.1484757169278735 30.41463848713761 -0.05989510963041762 0.1127732738066533 -0.1346569425945746 -121.4435488076326 -0.1421095729724297 -0.007316737969328204 0.1121399647486819 -82.35955358078718 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9651\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9660\" name=\"instance_360\">\r\n\t\t\t\t<matrix>0.08835193533367401 0.1796725117337575 0.2474595282131243 164.4895619372478 -0.0998251827173622 0.1879554563444224 -0.2244282376576258 -21.73142810410356 -0.2368492882873846 -0.01219456328221367 0.1868999412478012 -108.5747012333468 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9651\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9661\" name=\"instance_361\">\r\n\t\t\t\t<matrix>0.0782855001120924 -0.06081208395123149 0.1805483687577649 267.5024103854632 0.02239172951407297 0.1434386962980948 0.08522269715835108 210.1647784326065 -0.141289521980254 -0.01096234097132154 0.1135441800708737 -335.424291670035 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9651\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9662\" name=\"instance_362\">\r\n\t\t\t\t<matrix>0.130475833520154 -0.1013534732520531 0.3009139479296075 225.8271168843421 0.03731954919012111 0.2390644938301602 0.1420378285972517 294.9636420262012 -0.2354825366337563 -0.01827056828553608 0.18924030011812 -334.3274097274207 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9651\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9663\" name=\"instance_363\">\r\n\t\t\t\t<matrix>-0.07501222171196498 0.01234200597342244 -0.203128880995652 -249.1079128173042 0.003618795348557205 -0.1553542550224081 -0.02306457822657114 217.1375909947807 -0.1447508515135602 -0.01027970839786773 0.1046880381738333 -551.9276624016147 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9651\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9664\" name=\"instance_364\">\r\n\t\t\t\t<matrix>-0.1250203695199423 0.02057000995570426 -0.3385481349927539 -236.7268985221238 0.0060313255809288 -0.2589237583706778 -0.03844096371095194 123.4755274006544 -0.241251419189267 -0.01713284732977944 0.1744800636230535 -550.1930634637629 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9651\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID9665\" name=\"instance_365\">\r\n\t\t\t\t<matrix>0.7441773018640174 0.6182116269400872 -0.2530109240852687 -148.1120672745744 0.5599504369507227 -0.7838673350928003 -0.2683421493787484 13.14452574030075 -0.3642192355561224 0.05802055920621577 -0.9295041490818166 -1859.30963929606 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10200\" name=\"instance_366\">\r\n\t\t\t\t<matrix>-0.8431521414240323 0.3679256039246513 0.392078074353501 275.0943079844924 0.3592083522906341 0.9280535254278771 -0.09841754714245095 67.02231610066744 -0.4000797746159091 0.05785675343094765 -0.9146522672719475 -1849.747545766153 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10201\" name=\"instance_367\">\r\n\t\t\t\t<matrix>-0.3493507366994574 -0.929050065688024 0.1217375792950761 143.1578804408221 -0.8506231579658471 0.3689445057396764 0.3745933726278611 389.5065601072256 -0.3929304084691793 0.02731166654718233 -0.9191625356652976 -1851.660159084719 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10202\" name=\"instance_368\">\r\n\t\t\t\t<matrix>-0.557583448748607 -0.8019379634960034 0.2144672478153538 198.7086526651406 -0.7289429098253268 0.5966102591058837 0.3357058726698057 357.1074109249992 -0.3971686441513167 0.03084965856363755 -0.917226998441232 -1850.529319516349 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10203\" name=\"instance_369\">\r\n\t\t\t\t<matrix>-0.7272382241745815 -0.6202439370741444 0.2939762300291743 243.983882002419 -0.5575026519335008 0.7836065789779667 0.2741377800843247 311.43154988372 -0.4003940039342686 0.03547094452100871 -0.9156562967119664 -1849.668339159498 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10204\" name=\"instance_370\">\r\n\t\t\t\t<matrix>0.9249458130081411 0.1434951292361426 -0.3519721450402176 -196.4107230407249 0.1171297238179432 -0.9885419181222441 -0.09521293984289578 131.1797183945737 -0.3616018124913669 0.04684040991171273 -0.9311552530068555 -1860.009857236772 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10205\" name=\"instance_371\">\r\n\t\t\t\t<matrix>0.9237307380479554 -0.1171852431723418 -0.3646767642282943 -196.1400818326727 -0.1240814134166364 -0.992261592204967 0.004553622667035416 195.4973304667367 -0.3623883640928742 0.0410432871186397 -0.9311230435085298 -1859.801311677091 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10206\" name=\"instance_372\">\r\n\t\t\t\t<matrix>0.8601410140372938 -0.3699500625232291 -0.3511330050137055 -179.2357693470806 -0.356754269943738 -0.9283679849306274 0.1042078472705246 257.5520693635214 -0.3645323399203513 0.03563475543490299 -0.9305086444291038 -1859.230732654693 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10207\" name=\"instance_373\">\r\n\t\t\t\t<matrix>0.3576735279054577 -0.9181145346059509 -0.1706907987589317 -45.36621213040803 -0.8542550584272035 -0.3955165327018672 0.3373647395787358 390.3185290682444 -0.3772505037600337 0.02514704167076479 -0.9257697789990823 -1855.841611262649 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10208\" name=\"instance_374\">\r\n\t\t\t\t<matrix>0.1244217115302206 -0.9891875570436273 -0.07763513824262362 16.81528028032153 -0.9154895779444977 -0.144618735075339 0.3754520663682842 406.6979207332867 -0.3826200078078721 0.02435977124830233 -0.9235846096432284 -1854.410006975066 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10209\" name=\"instance_375\">\r\n\t\t\t\t<matrix>-0.116731291277976 -0.9929174660294498 0.02210681547018344 81.11738885173713 -0.9142508033422636 0.1161248973275269 0.3881500699583824 406.4209730202585 -0.3879681355789443 0.02509808507292429 -0.9213310001845538 -1852.983790366521 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10210\" name=\"instance_376\">\r\n\t\t\t\t<matrix>0.1336509937070899 0.9908488964761612 0.018864682162208 14.75958482147598 0.9166654105830819 -0.1163653985814729 -0.3823396645046453 -81.83604647569807 -0.3766456383945752 0.06839267771442094 -0.9238292616676496 -1855.994045721956 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10211\" name=\"instance_377\">\r\n\t\t\t\t<matrix>0.8637034307194909 0.3943255071475172 -0.3138849760282185 -180.0292485858483 0.3504404360389929 -0.917462461042133 -0.1882926800683271 68.98252286430521 -0.3622262891511086 0.05263104588896389 -0.9306030778245102 -1859.842156809771 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10212\" name=\"instance_378\">\r\n\t\t\t\t<matrix>0.7385103246189461 -0.5975732316736847 -0.3122638839479964 -146.8498261636346 -0.5650320297739785 -0.8012154897964698 0.1969582296825926 313.1148617385876 -0.3678876265392966 0.03098341003297802 -0.9293539274904968 -1858.337005524321 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10213\" name=\"instance_379\">\r\n\t\t\t\t<matrix>0.5671278853445482 -0.7845420743192575 -0.250718358497055 -101.1893766945575 -0.7347204196190912 -0.6194696372301813 0.2764837672353554 358.3990648881079 -0.3722255588475457 0.0274062433168846 -0.9277375874501841 -1857.181038407687 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10214\" name=\"instance_380\">\r\n\t\t\t\t<matrix>0.3662738941414709 0.9269952295755624 -0.08076681753414074 -47.28182522762359 0.8530504069932704 -0.3691884785173753 -0.3687883816752385 -64.92500517540385 -0.3716832490159577 0.06617939010127069 -0.9259977595689773 -1857.31770800503 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10215\" name=\"instance_381\">\r\n\t\t\t\t<matrix>-0.8467529727713945 -0.3963505599050006 0.3548459338442513 275.8980302803489 -0.3479861563604791 0.91718953690994 0.1940850029352864 255.5918184832799 -0.4023866773195485 0.04086058058719272 -0.9145574748859753 -1849.135894420726 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10216\" name=\"instance_382\">\r\n\t\t\t\t<matrix>-0.9079826818168844 -0.1455163203915648 0.3929280468741297 292.2761262355925 -0.1146721170915753 0.9882553619898929 0.1010031933156661 193.3937330134707 -0.4030108622386683 0.0466512593391135 -0.9140054184301755 -1848.968271776903 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10217\" name=\"instance_383\">\r\n\t\t\t\t<matrix>-0.9067545043193172 0.1151642546736227 0.4056272467945152 292.0019913087292 0.1265389528368134 0.99196086911989 0.001235940886616633 129.0761359886765 -0.4022240200579675 0.05244834201746967 -0.9140377503735971 -1849.176894827033 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10218\" name=\"instance_384\">\r\n\t\t\t\t<matrix>-0.7215101381225387 0.5955418667083996 0.3532039150177556 242.7053465675658 0.5674795008824461 0.8008886605574545 -0.1911658166846166 11.46128406471691 -0.3967242577214115 0.06250790660357618 -0.9158070893738669 -1850.641334338265 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10219\" name=\"instance_385\">\r\n\t\t\t\t<matrix>-0.5501184810154323 0.7825008373940742 0.2916540696147515 197.0424371648521 0.7371585758844457 0.6191326479423877 -0.2706880090655358 -33.82043738367963 -0.392386150170071 0.06608482223188913 -0.9174235147549306 -1851.797348234495 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10220\" name=\"instance_386\">\r\n\t\t\t\t<matrix>-0.340657629995746 0.9160611329085672 0.2116232026502625 141.2175386130882 0.8566818310577531 0.3951722854671357 -0.3315646319109083 -65.73686763034958 -0.3873610969898976 0.06834373104355088 -0.9193913829081879 -1853.136804308711 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10221\" name=\"instance_387\">\r\n\t\t\t\t<matrix>-0.1074024868340157 0.9871205267993831 0.1185654730230415 79.03515633321581 0.9179036739511395 0.1442706266295934 -0.3696469012975825 -82.11287989421452 -0.3819915590282975 0.06913068684175618 -0.9215765822588582 -1854.568417703766 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID10222\" name=\"instance_388\">\r\n\t\t\t\t<matrix>0.5745132147363843 0.7998954948060819 -0.173498597925744 -102.8343570735324 0.7313814751834691 -0.5968611404449586 -0.3299059211126655 -32.52887487974142 -0.3674448310314327 0.06264165080581124 -0.9279333595321405 -1858.44859613219 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID9666\" />\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node id=\"ID9610\" name=\"rings_1\">\r\n\t\t\t<instance_geometry url=\"#ID9611\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9619\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID9634\" name=\"mw_1\">\r\n\t\t\t<instance_geometry url=\"#ID9635\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9636\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID9651\" name=\"scheibe\">\r\n\t\t\t<instance_geometry url=\"#ID9652\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9498\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID9666\" name=\"Group_8\">\r\n\t\t\t<instance_geometry url=\"#ID9667\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID9682\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material5\" target=\"#ID9687\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9695\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9703\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9711\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9716\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID9721\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material5\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material6\" target=\"#ID9726\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9734\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID9735\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material5\" target=\"#ID9749\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material6\" target=\"#ID9744\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material7\" target=\"#ID9754\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material8\" target=\"#ID9759\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material9\" target=\"#ID9764\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material10\" target=\"#ID9769\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material11\" target=\"#ID9799\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material12\" target=\"#ID9774\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material13\" target=\"#ID9779\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material14\" target=\"#ID9784\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material15\" target=\"#ID9789\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material16\" target=\"#ID9794\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material17\" target=\"#ID9844\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material18\" target=\"#ID9804\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material19\" target=\"#ID9809\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material20\" target=\"#ID9814\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material21\" target=\"#ID9819\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material22\" target=\"#ID9824\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material23\" target=\"#ID9829\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material24\" target=\"#ID9834\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material25\" target=\"#ID9849\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material26\" target=\"#ID9839\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material27\" target=\"#ID9854\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material28\" target=\"#ID9859\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material29\" target=\"#ID9864\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material30\" target=\"#ID9869\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material31\" target=\"#ID9874\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material32\" target=\"#ID9879\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material33\" target=\"#ID9884\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material34\" target=\"#ID9889\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9897\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9898\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9910\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID9915\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9923\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID9928\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material5\" target=\"#ID9933\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9941\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9949\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID9957\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10052\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material5\" target=\"#ID9977\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material6\" target=\"#ID9967\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material7\" target=\"#ID9962\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material8\" target=\"#ID9972\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material9\" target=\"#ID9982\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material10\" target=\"#ID9987\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material11\" target=\"#ID9992\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material12\" target=\"#ID9997\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material13\" target=\"#ID10017\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material14\" target=\"#ID10037\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material15\" target=\"#ID10002\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material16\" target=\"#ID10007\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material17\" target=\"#ID10012\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material18\" target=\"#ID10022\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material19\" target=\"#ID10027\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material20\" target=\"#ID10032\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material21\" target=\"#ID10042\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material22\" target=\"#ID10047\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material23\" target=\"#ID10057\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material24\" target=\"#ID10062\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material25\" target=\"#ID10067\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material26\" target=\"#ID10072\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material27\" target=\"#ID10077\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material28\" target=\"#ID10082\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material29\" target=\"#ID10087\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10095\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10096\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material4\" target=\"#ID10105\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10113\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID8527\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID8532\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10119\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10120\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10132\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10140\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10141\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10153\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID10154\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10166\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID9668\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10174\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID10175\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID9677\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID10187\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID10188\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t</library_nodes>\r\n\t<scene>\r\n\t\t<instance_visual_scene url=\"#ID1\" />\r\n\t</scene>\r\n</COLLADA>\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.5/infiles/cube.dae",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>\r\n<COLLADA version=\"1.5\" xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t<asset>\r\n\t\t<contributor>\r\n\t\t\t<author>alorino</author>\r\n\t\t\t<authoring_tool>Maya 7.0 | ColladaMaya v2.01 Jun  9 2006 at 16:08:19 | FCollada v1.11</authoring_tool>\r\n\t\t\t<comments>Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=0;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<copyright>Copyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n\"License\"); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an \"AS IS\" BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.</copyright>\r\n\t\t</contributor>\r\n\t\t<created>2006-06-21T21:25:37Z</created>\r\n\t\t<modified>2006-06-21T21:25:37Z</modified>\r\n\t\t<unit meter=\"0.01\" name=\"centimeter\" />\r\n\t\t<up_axis>Y_UP</up_axis>\r\n\t</asset>\r\n\t<library_cameras>\r\n\t\t<camera id=\"cl_unnamed_1\" name=\"cl_unnamed_1\">\r\n\t\t\t<optics>\r\n\t\t\t\t<technique_common>\r\n\t\t\t\t\t<perspective>\r\n\t\t\t\t\t\t<yfov>37.8493</yfov>\r\n\t\t\t\t\t\t<aspect_ratio>1</aspect_ratio>\r\n\t\t\t\t\t\t<znear>10</znear>\r\n\t\t\t\t\t\t<zfar>1000</zfar>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t\t<camera id=\"testCameraShape\" name=\"testCameraShape\">\r\n\t\t\t<optics>\r\n\t\t\t\t<technique_common>\r\n\t\t\t\t\t<perspective>\r\n\t\t\t\t\t\t<yfov>37.8501</yfov>\r\n\t\t\t\t\t\t<aspect_ratio>1</aspect_ratio>\r\n\t\t\t\t\t\t<znear>0.01</znear>\r\n\t\t\t\t\t\t<zfar>1000</zfar>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n\t<library_lights>\r\n\t\t<light id=\"Lt_Light-lib\" name=\"Lt_Light\">\r\n\t\t\t<technique_common>\r\n\t\t\t\t<point>\r\n\t\t\t\t\t<color>1 1 1</color>\r\n\t\t\t\t\t<constant_attenuation>1</constant_attenuation>\r\n\t\t\t\t\t<linear_attenuation>0</linear_attenuation>\r\n\t\t\t\t\t<quadratic_attenuation>0</quadratic_attenuation>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t\t<light id=\"pointLightShape1-lib\" name=\"pointLightShape1\">\r\n\t\t\t<technique_common>\r\n\t\t\t\t<point>\r\n\t\t\t\t\t<color>1 1 1</color>\r\n\t\t\t\t\t<constant_attenuation>1</constant_attenuation>\r\n\t\t\t\t\t<linear_attenuation>0</linear_attenuation>\r\n\t\t\t\t\t<quadratic_attenuation>0</quadratic_attenuation>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_materials>\r\n\t\t<material id=\"Blue\" name=\"Blue\">\r\n\t\t\t<instance_effect url=\"#Blue-fx\" />\r\n\t\t</material>\r\n\t\t<material id=\"Red\" name=\"Red\">\r\n\t\t\t<instance_effect url=\"#Red-fx\" />\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<library_effects>\r\n\t\t<effect id=\"Blue-fx\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"common\">\r\n\t\t\t\t\t<phong>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.137255 0.403922 0.870588 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<specular>\r\n\t\t\t\t\t\t\t<color>0.5 0.5 0.5 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<shininess>\r\n\t\t\t\t\t\t\t<float>10</float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<reflective>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<reflectivity>\r\n\t\t\t\t\t\t\t<float>0.5</float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<index_of_refraction>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"Red-fx\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"common\">\r\n\t\t\t\t\t<phong>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.658824 0.101961 0.109804 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<specular>\r\n\t\t\t\t\t\t\t<color>0.368627 0.368627 0.368627 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<shininess>\r\n\t\t\t\t\t\t\t<float>10</float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<reflective>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<reflectivity>\r\n\t\t\t\t\t\t\t<float>0.5</float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<index_of_refraction>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_geometries>\r\n\t\t<geometry id=\"box-lib\" name=\"box\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"box-lib-positions\" name=\"position\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"box-lib-positions-array\">-50 50 50 50 50 50 -50 -50 50 50 -50 50 -50 50 -50 50 50 -50 -50 -50 -50 50 -50 -50</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" offset=\"0\" source=\"#box-lib-positions-array\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"box-lib-normals\" name=\"normal\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"box-lib-normals-array\">0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" offset=\"0\" source=\"#box-lib-normals-array\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"box-lib-vertices\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#box-lib-positions\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<polylist count=\"5\" material=\"BlueSG\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#box-lib-vertices\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"NORMAL\" source=\"#box-lib-normals\" />\r\n\t\t\t\t\t<vcount>4 4 4 4 4</vcount>\r\n\t\t\t\t\t<p>0 0 1 1 5 2 4 3 6 4 7 5 3 6 2 7 0 8 4 9 6 10 2 11 3 12 7 13 5 14 1 15 5 16 7 17 6 18 4 19</p>\r\n\t\t\t\t</polylist>\r\n\t\t\t\t<polylist count=\"1\" material=\"RedSG\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#box-lib-vertices\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"NORMAL\" source=\"#box-lib-normals\" />\r\n\t\t\t\t\t<vcount>4</vcount>\r\n\t\t\t\t\t<p>0 20 2 21 3 22 1 23</p>\r\n\t\t\t\t</polylist>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<library_visual_scenes>\r\n\t\t<visual_scene id=\"VisualSceneNode\" name=\"untitled\">\r\n\t\t\t<node id=\"Camera\" name=\"Camera\">\r\n\t\t\t\t<translate sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 -26</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<instance_camera url=\"#cl_unnamed_1\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"Light\" name=\"Light\">\r\n\t\t\t\t<translate sid=\"translate\">-325 225 400</translate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_light url=\"#Lt_Light-lib\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"Box\" name=\"Box\">\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_geometry url=\"#box-lib\">\r\n\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t<instance_material symbol=\"BlueSG\" target=\"#Blue\" />\r\n\t\t\t\t\t\t\t<instance_material symbol=\"RedSG\" target=\"#Red\" />\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t</node>\r\n\t\t\t<node id=\"testCamera\" name=\"testCamera\">\r\n\t\t\t\t<translate sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 -26</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<instance_camera url=\"#testCameraShape\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"pointLight1\" name=\"pointLight1\">\r\n\t\t\t\t<translate sid=\"translate\">3 4 10</translate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_light url=\"#pointLightShape1-lib\" />\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<scene>\r\n\t\t<instance_visual_scene url=\"#VisualSceneNode\" />\r\n\t</scene>\r\n</COLLADA>\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.5/infiles/cube_triangulate.dae",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>\r\n<COLLADA version=\"1.5\" xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t<asset>\r\n\t\t<contributor>\r\n\t\t\t<author>alorino</author>\r\n\t\t\t<authoring_tool>Maya 7.0 | ColladaMaya v2.01 Jun  9 2006 at 16:08:19 | FCollada v1.11</authoring_tool>\r\n\t\t\t<comments>Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=0;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<copyright>Copyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n\"License\"); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an \"AS IS\" BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.</copyright>\r\n\t\t</contributor>\r\n\t\t<created>2006-06-21T21:25:37Z</created>\r\n\t\t<modified>2006-06-21T21:25:37Z</modified>\r\n\t\t<unit meter=\"0.01\" name=\"centimeter\" />\r\n\t\t<up_axis>Y_UP</up_axis>\r\n\t</asset>\r\n\t<library_cameras>\r\n\t\t<camera id=\"cl_unnamed_1\" name=\"cl_unnamed_1\">\r\n\t\t\t<optics>\r\n\t\t\t\t<technique_common>\r\n\t\t\t\t\t<perspective>\r\n\t\t\t\t\t\t<yfov>37.8493</yfov>\r\n\t\t\t\t\t\t<aspect_ratio>1</aspect_ratio>\r\n\t\t\t\t\t\t<znear>10</znear>\r\n\t\t\t\t\t\t<zfar>1000</zfar>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t\t<camera id=\"testCameraShape\" name=\"testCameraShape\">\r\n\t\t\t<optics>\r\n\t\t\t\t<technique_common>\r\n\t\t\t\t\t<perspective>\r\n\t\t\t\t\t\t<yfov>37.8501</yfov>\r\n\t\t\t\t\t\t<aspect_ratio>1</aspect_ratio>\r\n\t\t\t\t\t\t<znear>0.01</znear>\r\n\t\t\t\t\t\t<zfar>1000</zfar>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n\t<library_lights>\r\n\t\t<light id=\"Lt_Light-lib\" name=\"Lt_Light\">\r\n\t\t\t<technique_common>\r\n\t\t\t\t<point>\r\n\t\t\t\t\t<color>1 1 1</color>\r\n\t\t\t\t\t<constant_attenuation>1</constant_attenuation>\r\n\t\t\t\t\t<linear_attenuation>0</linear_attenuation>\r\n\t\t\t\t\t<quadratic_attenuation>0</quadratic_attenuation>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t\t<light id=\"pointLightShape1-lib\" name=\"pointLightShape1\">\r\n\t\t\t<technique_common>\r\n\t\t\t\t<point>\r\n\t\t\t\t\t<color>1 1 1</color>\r\n\t\t\t\t\t<constant_attenuation>1</constant_attenuation>\r\n\t\t\t\t\t<linear_attenuation>0</linear_attenuation>\r\n\t\t\t\t\t<quadratic_attenuation>0</quadratic_attenuation>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_materials>\r\n\t\t<material id=\"Blue\" name=\"Blue\">\r\n\t\t\t<instance_effect url=\"#Blue-fx\" />\r\n\t\t</material>\r\n\t\t<material id=\"Red\" name=\"Red\">\r\n\t\t\t<instance_effect url=\"#Red-fx\" />\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<library_effects>\r\n\t\t<effect id=\"Blue-fx\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"common\">\r\n\t\t\t\t\t<phong>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.137255 0.403922 0.870588 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<specular>\r\n\t\t\t\t\t\t\t<color>0.5 0.5 0.5 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<shininess>\r\n\t\t\t\t\t\t\t<float>10</float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<reflective>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<reflectivity>\r\n\t\t\t\t\t\t\t<float>0.5</float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<index_of_refraction>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"Red-fx\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"common\">\r\n\t\t\t\t\t<phong>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.658824 0.101961 0.109804 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<specular>\r\n\t\t\t\t\t\t\t<color>0.368627 0.368627 0.368627 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<shininess>\r\n\t\t\t\t\t\t\t<float>10</float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<reflective>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<reflectivity>\r\n\t\t\t\t\t\t\t<float>0.5</float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<index_of_refraction>\r\n\t\t\t\t\t\t\t<float>0</float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_geometries>\r\n\t\t<geometry id=\"box-lib\" name=\"box\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"box-lib-positions\" name=\"position\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"box-lib-positions-array\">-50 50 50 50 50 50 -50 -50 50 50 -50 50 -50 50 -50 50 50 -50 -50 -50 -50 50 -50 -50</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" offset=\"0\" source=\"#box-lib-positions-array\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"box-lib-normals\" name=\"normal\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"box-lib-normals-array\">0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" offset=\"0\" source=\"#box-lib-normals-array\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"box-lib-vertices\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#box-lib-positions\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"BlueSG\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#box-lib-vertices\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"NORMAL\" source=\"#box-lib-normals\" />\r\n\t\t\t\t\t<p>0 0 1 1 5 2 0 0 5 2 4 3 6 4 7 5 3 6 6 4 3 6 2 7 0 8 4 9 6 10 0 8 6 10 2 11 3 12 7 13 5 14 3 12 5 14 1 15 5 16 7 17 6 18 5 16 6 18 4 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"RedSG\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#box-lib-vertices\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"NORMAL\" source=\"#box-lib-normals\" />\r\n\t\t\t\t\t<p>0 20 2 21 3 22 0 20 3 22 1 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<library_visual_scenes>\r\n\t\t<visual_scene id=\"VisualSceneNode\" name=\"untitled\">\r\n\t\t\t<node id=\"Camera\" name=\"Camera\">\r\n\t\t\t\t<translate sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 -26</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<instance_camera url=\"#cl_unnamed_1\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"Light\" name=\"Light\">\r\n\t\t\t\t<translate sid=\"translate\">-325 225 400</translate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_light url=\"#Lt_Light-lib\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"Box\" name=\"Box\">\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_geometry url=\"#box-lib\">\r\n\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t<instance_material symbol=\"BlueSG\" target=\"#Blue\" />\r\n\t\t\t\t\t\t\t<instance_material symbol=\"RedSG\" target=\"#Red\" />\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t</node>\r\n\t\t\t<node id=\"testCamera\" name=\"testCamera\">\r\n\t\t\t\t<translate sid=\"translate\">-141.666 92.4958 296.3</translate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 -26</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 -15.1954</rotate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<instance_camera url=\"#testCameraShape\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"pointLight1\" name=\"pointLight1\">\r\n\t\t\t\t<translate sid=\"translate\">3 4 10</translate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_light url=\"#pointLightShape1-lib\" />\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<scene>\r\n\t\t<instance_visual_scene url=\"#VisualSceneNode\" />\r\n\t</scene>\r\n</COLLADA>\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.5/infiles/duck.dae",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>\r\n<COLLADA version=\"1.5\" xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t<asset>\r\n\t\t<contributor>\r\n\t\t\t<author>gcorson</author>\r\n\t\t\t<authoring_tool>Maya 8.0 | ColladaMaya v3.02 | FCollada v3.2</authoring_tool>\r\n\t\t\t<comments>Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=1;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<copyright>Copyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n\"License\"); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an \"AS IS\" BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.</copyright>\r\n\t\t\t<source_data>file:///C:/vs2005/sample_data/Complete_Packages/SCEA_Private/Maya_MoonLander/Moonlander/untitled</source_data>\r\n\t\t</contributor>\r\n\t\t<created>2006-08-23T22:29:59Z</created>\r\n\t\t<modified>2007-02-21T22:47:42Z</modified>\r\n\t\t<unit meter=\"0.01\" name=\"centimeter\" />\r\n\t\t<up_axis>Y_UP</up_axis>\r\n\t</asset>\r\n\t<library_cameras>\r\n\t\t<camera id=\"cameraShape1\" name=\"cameraShape1\">\r\n\t\t\t<optics>\r\n\t\t\t\t<technique_common>\r\n\t\t\t\t\t<perspective>\r\n\t\t\t\t\t\t<yfov>37.8492</yfov>\r\n\t\t\t\t\t\t<aspect_ratio>1.5</aspect_ratio>\r\n\t\t\t\t\t\t<znear>1</znear>\r\n\t\t\t\t\t\t<zfar>10000</zfar>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n\t<library_lights>\r\n\t\t<light id=\"directionalLightShape1-lib\" name=\"directionalLightShape1\">\r\n\t\t\t<technique_common>\r\n\t\t\t\t<directional>\r\n\t\t\t\t\t<color>1 1 1</color>\r\n\t\t\t\t</directional>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_images>\r\n\t\t<image id=\"file2\" name=\"file2\">\r\n\t\t\t<create_2d>\r\n\t\t\t\t<init_from>\r\n\t\t\t\t\t<ref>./duckCM_fix.jpg</ref>\r\n\t\t\t\t</init_from>\r\n\t\t\t\t<format>\r\n\t\t\t\t\t<exact>A8R8G8B8</exact>\r\n\t\t\t\t</format>\r\n\t\t\t</create_2d>\r\n\t\t</image>\r\n\t</library_images>\r\n\t<library_materials>\r\n\t\t<material id=\"blinn3\" name=\"blinn3\">\r\n\t\t\t<instance_effect url=\"#blinn3-fx\" />\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<library_effects>\r\n\t\t<effect id=\"blinn3-fx\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"file2-sampler\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#file2\" />\r\n\t\t\t\t\t\t<minfilter>LINEAR</minfilter>\r\n\t\t\t\t\t\t<magfilter>LINEAR</magfilter>\r\n\t\t\t\t\t\t<mipfilter>LINEAR</mipfilter>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"common\">\r\n\t\t\t\t\t<blinn>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"TEX0\" texture=\"file2-sampler\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<specular>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<shininess>\r\n\t\t\t\t\t\t\t<float>0.3</float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<reflective>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<reflectivity>\r\n\t\t\t\t\t\t\t<float>0.5</float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<index_of_refraction>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t</blinn>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_geometries>\r\n\t\t<geometry id=\"LOD3spShape-lib\" name=\"LOD3spShape\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"LOD3spShape-lib-positions\" name=\"position\">\r\n\t\t\t\t\t<float_array count=\"6324\" id=\"LOD3spShape-lib-positions-array\">35.0226 89.3874 23.3732 19.5676 89.7173 22.4879 9.22909 91.5427 17.1037 4.33048 88.7008 4.57726 45.0571 89.4178 19.824 -30.5196 11.6272 25.1326 -15.6992 11.4278 34.2321 51.8411 17.7055 36.5602 65.7206 18.372 27.0862 56.0117 11.4345 22.6963 -23.2343 18.1488 41.0429 -40.9218 18.6322 29.6382 62.4487 11.3989 12.9806 60.2326 28.1944 39.5949 71.2984 29.0359 29.3335 -32.9737 29.6914 43.477 -48.95 28.9358 31.4102 73.8118 41.7425 29.8584 65.2513 41.3955 39.884 72.6597 55.003 29.2468 64.6263 55.4849 38.2648 66.5829 66.4165 27.9218 55.5179 67.734 35.7358 43.4971 75.6992 31.8699 56.934 75.0037 25.7495 14.7601 73.8701 35.1574 -12.1248 73.9991 28.9191 14.7016 78.8465 28.8886 -3.37962 78.0576 23.1953 -24.7824 78.2304 7.65121 4.94216 81.4267 15.8195 -54.7257 89.9761 8.84491 -53.6566 74.7375 26.9735 -44.1714 77.8938 26.1268 -64.7587 73.8997 7.15297 -61.5691 65.6958 25.2253 -42.9296 61.2502 39.4496 -64.9663 57.2673 21.7398 -48.9596 49.2561 39.8218 -58.3698 43.9468 28.036 -31.7993 70.8398 33.4366 -33.1153 82.3349 8.62471 48.2452 81.0789 22.327 34.1225 80.5718 26.6473 15.5527 81.3807 24.423 0.65596 81.0723 3.99376 15.1798 11.41 36.4164 17.2973 17.3674 43.2976 43.8649 67.7941 39.8677 55.9835 56.1625 42.7808 56.4187 41.7648 44.4371 46.9566 29.0085 44.2399 18.041 21.337 45.4158 -24.2634 29.7596 46.4694 -37.1346 44.6474 44.4312 -35.8668 57.8953 42.7333 -24.1626 66.8013 39.6298 -14.2645 43.4767 51.8892 10.1522 43.8267 53.9252 -10.3735 36.316 51.8336 -14.5047 52.2745 51.0455 9.35439 52.1796 53.5056 24.5685 36.9247 52.4691 11.2191 35.6243 52.5988 27.0248 44.5585 52.8835 25.4374 55.0852 52.0724 9.23132 59.258 51.2115 21.2751 61.6417 50.3945 -11.0645 57.3325 50.3033 -22.8339 53.8174 48.6047 -22.3883 43.3299 49.8488 -13.3437 34.4469 50.7719 -15.0193 59.7488 48.0109 12.3031 31.6369 51.4681 28.2 34.9703 51.4911 34.9314 44.1559 51.2583 33.7281 55.8993 50.0475 24.8495 63.37 48.6114 9.96162 62.8873 48.4038 6.73344 84.5266 2.83788 10.2211 84.9641 13.1445 19.05 85.0093 20.4734 35.2584 84.9759 22.0089 44.8651 85.199 18.7578 54.1484 90.1992 13.1393 25.84 89.3162 23.5593 14.5318 90.4728 20.5795 5.99276 89.5698 10.1098 59.1034 90.0324 3.37689 -23.9364 11.5353 30.6125 -11.459 10.0413 29.8243 -24.5326 10.1147 22.2069 -35.1528 11.6836 17.7191 61.5472 14.2726 25.2082 43.6854 11.43 30.0164 47.7677 14.1162 33.6212 -19.459 14.309 37.9267 -36.067 14.5054 27.6816 -32.9292 18.5574 36.7248 -46.1733 18.6604 20.5246 73.3418 18.3468 14.9194 68.8732 23.4107 28.4208 55.7803 22.4988 38.5465 -27.0171 23.4671 43.0366 -45.2302 23.6628 30.9246 -41.0731 29.3325 39.4763 79.4615 29.1894 16.0672 76.9844 23.4678 15.5749 72.8865 35.1223 29.8369 63.2406 34.5574 39.8307 81.8608 42.114 16.7292 80.9318 35.3877 16.409 66.0817 48.5555 39.2449 73.9987 48.5347 29.6857 80.1688 55.1853 16.948 81.5894 48.8387 16.9628 61.1927 62.0057 37.295 70.17 61.0152 28.6395 74.8647 66.3268 16.601 77.7874 61.0196 16.7611 61.7637 71.037 26.8557 67.1835 75.4493 16.6366 71.6321 71.1772 16.667 -7.40039 76.1581 26.3759 14.8335 76.3145 32.0471 -20.947 75.0059 21.3995 -9.30957 78.0917 17.6635 2.33308 81.2658 10.7014 -55.3055 81.4823 20.1865 -44.1025 82.8784 21.08 -48.3998 77.2606 26.9595 -63.8341 69.8359 17.705 -58.2579 70.6396 26.4175 -58.1459 60.4109 31.5845 -50.1918 68.7831 33.097 -53.5557 46.1592 34.9928 -63.069 52.729 24.0553 -63.6495 60.7883 23.3658 -54.4261 28.5392 21.6382 -12.4228 39.2454 51.9419 -52.1766 34.1006 30.9987 -39.3582 37.1753 42.8245 -63.2047 33.3562 7.77354 -14.9689 48.0973 51.5712 -13.2184 68.1588 38.5488 -20.841 71.9312 31.5875 -34.0814 73.6573 23.1685 39.0864 77.6536 29.4959 52.286 78.2905 24.2985 28.6752 75.0467 34.74 24.5284 79.4248 29.0977 58.2456 81.6454 14.9372 62.5867 78.8584 16.1198 -40.058 73.3058 29.0169 -62.4832 42.7738 19.6053 -66.2542 57.7677 16.0138 -46.3972 55.562 40.3341 46.1403 83.2928 20.059 52.8472 87.516 12.3304 24.3957 81.2413 26.4145 17.5457 83.2299 21.6568 35.0308 86.9496 21.9178 5.66061 83.0193 2.97282 39.2717 10.0042 25.9897 49.7414 9.99683 19.7068 14.6156 10.0124 31.7958 28.2119 11.4278 34.5791 55.179 10.0309 11.4214 16.1259 13.9798 40.2177 33.0793 17.7336 41.3765 18.9195 36.2041 52.5892 10.6044 39.6524 53.4314 18.2523 44.3116 53.7955 25.9535 39.9994 52.7745 9.73549 48.0914 53.8815 16.9236 53.6009 53.2898 26.8721 49.8693 52.6952 9.12603 55.8675 52.7181 15.9783 60.8706 50.8542 23.2428 59.2083 51.1997 15.2006 70.9348 38.4909 -38.0814 66.6122 37.6368 -31.4745 63.2943 41.295 -12.9337 55.4359 50.6592 -29.8093 42.9681 46.5354 -18.6612 31.1764 47.8255 -30.266 55.8423 44.7033 36.2897 31.2217 48.0605 46.511 42.7776 47.7899 45.6636 56.4673 46.2574 32.8524 66.1703 44.2955 12.3579 67.2602 43.2175 -19.149 38.1518 50.4005 -23.6628 48.8825 49.2194 21.1045 32.7401 51.4785 32.4268 38.9651 51.46 35.2465 50.0413 50.7771 17.9201 63.7837 48.4371 30.018 60.597 49.2453 -20.4236 57.6424 48.1257 -7.11345 60.5511 48.2081 -5.54756 57.4675 50.6459 -6.2067 51.4293 52.475 -5.95461 43.3855 53.166 -4.66971 35.7333 52.2177 -5.70251 32.445 51.1085 -8.3205 17.8723 43.3717 -2.69678 11.3425 36.4653 -27.2981 42.8866 48.0687 -27.8897 55.043 46.5161 -16.4436 32.2248 49.3054 -18.5848 62.3861 45.599 13.6265 28.0639 49.9986 41.3922 43.4352 49.4685 32.3868 32.7171 49.8711 40.4699 56.3449 48.0345 28.9733 65.0389 46.3945 11.0523 65.6624 45.6909 -37.9272 11.78 6.99728 -50.2675 18.389 7.36354 75.8256 18.3928 2.93945 64.2756 11.6576 2.65993 82.8128 29.1368 2.93945 85.8726 42.1384 2.93945 84.9147 55.2091 3.25752 79.936 66.2007 3.25752 72.9207 75.6569 3.11665 -13.2799 78.2816 6.78078 -42.4217 91.5301 9.02211 -66.2519 42.375 7.59116 -67.9758 58.5114 6.99802 8.76422 81.5601 20.2429 8.65004 83.1534 13.7124 6.16626 86.3527 3.3376 10.3479 87.4003 13.9949 7.91973 84.7475 8.18356 19.5238 87.0994 20.6484 13.8638 85.0248 17.2846 35.1961 83.043 23.5111 26.055 84.941 22.3278 44.4291 87.1742 18.6599 55.1672 83.7325 13.2216 53.3737 85.5572 12.3674 -18.7264 10.108 26.6814 -28.5504 10.1785 15.7995 -28.6467 14.412 33.9793 -40.9463 14.6426 19.2219 68.6182 14.2022 14.0757 -36.9819 23.7436 38.5844 48.5084 72.1529 33.9029 -14.7042 76.6096 19.7209 -49.515 83.8778 20.7678 -60.3339 76.3635 19.0618 -54.5522 64.8765 32.9243 -60.8158 55.9957 28.5728 -50.6442 23.4975 21.2438 -45.1383 35.1824 39.0803 -57.747 33.5446 21.51 -27.5531 73.6877 22.8942 26.6207 76.9559 31.9144 -39.393 77.9086 22.2647 -65.5928 51.6658 17.2594 -44.8336 71.3336 32.1213 -65.569 63.5509 16.5565 25.3055 83.1594 23.781 12.1192 83.2358 18.075 25.9631 10.0257 30.0393 30.5288 14.0969 38.2233 18.4628 39.992 53.2994 17.691 48.9863 53.8221 16.1429 57.6002 52.3171 32.2615 71.41 37.9727 51.4408 62.676 41.4618 57.6406 48.9151 43.8433 52.9177 35.0586 44.5773 36.217 23.1483 43.9056 -31.7681 36.6178 45.7769 -37.83 51.5724 43.6927 -25.9576 36.5644 47.2776 -31.2662 49.6491 45.6583 26.7542 27.5116 48.1161 23.2102 67.8126 43.5534 -9.81152 64.5785 42.5347 -5.73514 54.6841 51.8166 -6.34459 47.5345 53.0926 -5.18279 39.3551 52.8687 -13.0679 23.5531 45.6457 -5.21985 14.0791 40.2548 -0.679352 10.0168 31.8299 -28.752 49.271 47.2864 -23.8534 36.6519 48.7626 -24.6964 59.5316 45.8889 -7.15942 29.3978 49.7079 38.1551 37.5127 49.7814 23.9612 29.5453 49.9126 42.2701 49.9123 48.8776 35.8278 61.6884 47.1419 20.5055 66.243 45.9037 -8.95663 63.2617 45.5834 -31.1142 10.1703 6.38486 -44.1714 14.6552 7.27827 70.6407 14.3913 2.92833 79.9353 23.413 2.93945 84.5803 35.3544 2.93945 85.9631 48.8595 3.25752 82.8254 61.0226 3.25826 76.7546 71.3433 3.2553 -19.2017 77.8115 7.33611 -48.5489 92.2656 9.06511 -60.1596 84.4057 8.28143 -55.757 23.043 7.73055 -29.2013 79.6561 8.08569 -37.1064 88.1752 8.91461 -68.0046 51.5783 7.15372 -66.9147 65.618 7.07735 57.0756 10.1525 2.28551 6.64003 83.0734 8.64102 7.67061 86.759 8.63805 14.3983 87.2706 17.8748 26.21 86.9437 22.1654 62.3057 92.5874 2.9313 1.3848 69.2606 38.5873 1.56273 65.4519 43.0262 1.32251 64.1537 45.6605 4.95551 9.99831 32.3904 4.63076 11.3477 37.0599 4.48174 13.922 40.9628 4.08211 17.3859 43.9419 3.02928 21.4474 45.8963 3.07525 28.2293 49.9356 3.11009 31.6361 51.3265 3.03002 35.4574 52.4675 2.61333 39.4033 53.3009 2.11362 43.4389 53.8266 1.75772 47.519 53.7873 1.63762 51.3863 53.3032 1.70287 54.8295 52.4802 1.76736 58.0161 51.0099 1.52196 61.5001 48.3586 1.93642 72.8387 33.8763 3.64763 75.9142 30.548 5.31806 78.4269 26.9639 58.5778 87.5953 2.23361 59.1501 85.8263 2.11721 61.5583 84.2063 2.51758 64.9644 82.1214 2.892 69.0133 79.1475 3.00989 32.7991 89.7151 -30.4233 18.3501 89.4171 -27.9721 8.67525 89.5668 -20.9938 2.39314 90.3705 -9.85685 41.3633 90.1718 -28.7054 -31.106 11.4775 -32.9686 -16.1893 11.413 -41.8242 -37.8441 11.7199 -17.9362 51.1145 17.827 -43.7764 65.4167 18.372 -34.6672 55.5386 11.4663 -30.2365 -22.7101 18.3816 -48.1723 -41.2258 18.6322 -37.22 -49.9064 18.1281 -19.4546 62.0944 11.4196 -20.5393 59.314 28.4606 -46.5397 70.9277 29.0352 -36.8544 -33.1991 29.873 -50.7109 -49.3615 28.878 -39.0246 73.4812 41.7559 -37.3453 64.6226 41.5905 -46.5931 72.9066 55.0971 -37.0309 63.9264 55.2231 -45.5736 67.308 66.4328 -36.116 55.8026 66.7664 -44.1694 43.9561 74.6649 -39.815 57.8297 75.238 -34.1393 15.5401 73.1894 -42.5115 -12.2174 73.8819 -36.4385 15.3978 78.7998 -35.5147 -2.0421 78.412 -29.475 -24.7876 76.5792 -19.7267 -12.534 78.2897 -17.6678 4.34457 81.1227 -24.1642 -55.8163 87.2424 -22.0756 -43.7036 88.3494 -22.3158 -54.1303 74.7924 -34.6324 -44.4888 77.8752 -33.6648 -65.5053 72.5896 -18.5049 -61.9613 65.7536 -32.9553 -43.4634 60.448 -47.4894 -65.1954 57.0723 -29.5143 -59.2654 27.9119 -20.2361 -49.2087 49.1998 -47.3723 -58.9689 43.7199 -35.5858 -66.3446 42.1948 -19.4391 15.5861 70.0443 -46.0785 -33.1287 69.3852 -41.4713 -34.4892 80.0254 -21.5618 48.699 81.1865 -30.8689 34.2382 80.5703 -34.2498 16.5759 81.1153 -31.895 0.727875 81.1872 -12.4148 -68.018 58.2133 -17.8183 14.7802 11.3848 -44.0174 16.9221 17.4452 -50.8066 -13.0864 43.3447 -58.8481 10.4495 43.9097 -61.0858 -9.32663 36.6667 -59.0505 -14.22 51.903 -58.0496 9.45597 51.998 -60.0277 24.246 37.0634 -60.5519 11.3896 35.7436 -60.2776 26.5918 44.6467 -61.0071 25.4626 54.4929 -59.5273 9.00666 58.9948 -57.2808 21.3366 60.5555 -57.2059 -11.1972 57.2725 -56.9708 -22.2438 53.1256 -56.0203 -20.3457 43.0689 -57.3067 -12.1122 35.0371 -58.1689 -14.9222 59.3774 -55.2218 12.2904 31.7184 -59.1973 27.7581 35.2002 -59.4961 33.8971 44.4969 -59.5273 32.7486 55.5991 -57.9969 24.5692 62.5262 -55.8246 9.69026 62.3164 -55.2589 6.31009 84.6215 -9.59067 9.94086 84.9232 -20.0693 19.0219 85.0345 -27.4843 34.7653 85.0426 -29.4209 44.1941 85.119 -26.7866 50.8728 90.6708 -23.6459 25.0482 89.5646 -29.954 12.9607 89.423 -24.9078 5.25504 89.8204 -16.202 3.24726 88.5844 -2.72431 56.928 89.7848 -10.5352 -24.3405 11.4359 -38.3603 -12.0514 9.99387 -37.4698 -25.119 9.92937 -30.186 -35.4745 11.6324 -25.6774 -30.9667 10.1577 -16.9998 61 14.303 -32.6913 42.9826 11.5093 -37.4209 46.9722 14.2133 -40.7944 -19.5197 14.3549 -45.3897 -36.488 14.4595 -35.3605 -33.1887 18.5722 -44.2309 -44.1233 14.4447 -18.6976 -46.6619 18.3928 -28.2843 73.0378 18.3468 -22.5011 68.5692 23.4107 -36.0025 54.8395 22.7093 -45.7182 -26.8814 23.6917 -50.1401 -45.535 23.6628 -38.5063 -41.3718 29.3444 -46.7703 79.1575 29.1894 -23.6481 76.6804 23.4678 -23.1566 72.5633 35.1268 -37.3883 62.517 34.8109 -46.6606 81.5568 42.114 -24.311 80.6278 35.3877 -23.9899 65.2083 48.5511 -46.1149 73.84 48.5629 -37.3 80.6871 55.3477 -24.807 81.674 48.8988 -24.6283 60.7961 61.4452 -45.0316 70.7794 61.119 -36.7907 75.5475 66.5218 -24.6246 78.6126 61.265 -24.804 62.9885 71.049 -35.1951 66.8647 75.4648 -24.4251 71.4756 71.2009 -24.4489 -6.85692 76.1307 -33.2993 15.3904 76.124 -38.9186 -20.6749 74.9933 -28.8188 -18.659 77.1776 -18.9697 -8.319 78.3549 -24.2702 1.96458 81.2562 -18.3514 -55.843 81.314 -28.5504 -49.6254 89.3466 -22.4648 -44.4451 82.6048 -28.9686 -48.6808 77.2324 -34.5316 -64.3131 69.6573 -25.8984 -61.7107 81.899 -20.9783 -58.7835 70.7123 -34.1097 -58.4469 60.3879 -39.1736 -50.5077 68.7809 -40.6817 -54.183 45.9931 -42.2824 -63.8549 52.5711 -32.0063 -63.9335 60.729 -31.1655 -54.957 22.8131 -19.9766 -55.152 28.2115 -29.5499 -11.2032 39.4137 -59.029 -53.076 34.2815 -38.5249 -39.7533 37.3377 -50.1979 -63.1283 33.463 -20.1464 -14.2141 47.7244 -58.4915 -30.0695 77.3155 -20.5683 -21.5757 71.2928 -39.3886 -34.2579 73.9026 -30.84 39.2161 77.6454 -37.0836 52.7939 78.4766 -32.8685 29.7051 73.7336 -42.0511 25.218 79.3136 -35.8083 57.9394 81.7173 -23.2211 62.3879 78.9177 -24.2442 -40.3947 73.317 -36.5831 -38.6256 84.6334 -22.1512 -63.1328 42.5522 -27.8513 -68.0395 51.255 -18.387 -66.6864 57.5891 -24.6884 -46.719 55.3544 -48.0974 -67.0838 65.1042 -17.911 46.0958 83.2499 -28.6417 50.9529 87.3143 -20.6038 25.2513 81.0708 -33.3601 17.9216 83.2039 -29.0153 34.0372 87.1164 -29.0287 5.17719 83.0067 -10.4967 38.7965 10.0502 -33.6129 49.3922 10.0272 -27.3241 14.187 9.93604 -39.5629 27.7425 11.4278 -42.1534 55.0359 10.0176 -19.0023 15.6372 13.9546 -47.8631 32.7953 17.7996 -48.8099 18.8513 36.2745 -60.5645 10.861 39.7903 -60.8997 18.3879 44.3219 -61.3282 25.5709 40.1514 -60.9249 9.98461 48.0417 -60.7803 17.172 53.0256 -60.1664 26.7053 49.7018 -60.6231 9.02446 55.628 -58.8755 15.9709 59.969 -57.3289 23.2776 58.2326 -58.209 44.1377 66.4765 -47.442 32.9162 70.0487 -45.5996 -39.1943 64.8054 -45.7138 55.5401 55.5242 -49.7715 51.248 61.6595 -48.7462 56.0065 41.9561 -51.2803 57.0734 48.8091 -50.5693 46.5132 29.225 -51.505 52.5663 35.3329 -51.6029 17.5056 21.4015 -53.1414 35.7529 23.258 -51.4249 -24.8654 30.3579 -52.8774 -37.595 44.6801 -51.7631 -32.3879 37.056 -52.6379 -36.3175 56.5451 -50.6094 -38.0947 50.8613 -51.419 -25.0582 65.9138 -47.2878 -13.0315 55.2283 -57.5699 -29.5994 42.7331 -54.0504 -17.7196 32.1054 -55.3997 -31.0452 54.9518 -52.1567 14.4814 25.6447 -55.9766 35.6595 31.6265 -55.6473 45.0786 43.2372 -55.4835 44.2682 56.1306 -54.0718 32.613 65.3459 -51.8098 12.2638 66.6664 -50.3239 -16.8788 38.5536 -57.7812 -22.2779 48.1633 -56.692 20.9614 32.7638 -59.3975 31.7892 39.2914 -59.6303 34.2463 50.1711 -58.9927 17.7651 63.1379 -55.4049 29.3959 59.9275 -56.7944 -19.9928 57.0804 -55.4805 -7.23875 60.3598 -55.204 -5.65804 57.5512 -57.0761 -6.0065 51.3551 -59.049 -5.22208 43.4715 -59.8809 -3.96387 36.0409 -59.508 -5.15608 32.8988 -58.5686 -13.5854 23.9342 -52.6112 -9.06415 18.1577 -50.5723 -3.25877 11.387 -43.9714 -26.2193 42.6871 -55.6006 -28.5919 54.4558 -53.8865 -15.0875 33.3422 -56.7928 -18.825 61.9909 -52.8915 13.3618 27.7844 -57.7174 39.8055 43.952 -57.5439 31.8122 33.1212 -57.6826 38.9151 56.1492 -56.0878 28.5307 64.3375 -53.8731 10.8825 65.2576 -52.8604 -38.7872 11.7814 -10.3899 -51.3804 18.2081 -11.1306 75.9308 18.2734 -10.619 64.3713 11.5264 -10.1319 82.6956 29.1294 -10.748 85.6139 42.137 -11.5317 84.7924 55.3455 -12.4133 79.6343 66.3979 -12.9219 71.6684 75.6332 -12.7061 -25.2621 79.1542 -11.2952 -14.3624 78.3676 -10.5812 -55.4174 91.1379 -15.1558 -43.1913 92.0224 -14.9719 -65.5402 74.7902 -11.1558 -61.0434 28.0454 -11.3123 -32.6111 84.6875 -12.5304 -67.2833 42.4839 -10.9141 -68.8802 58.6841 -10.4374 0.543259 81.1205 -6.22162 9.52418 81.0708 -28.7966 8.37571 83.1824 -21.1125 5.53085 86.6678 -9.24443 6.35532 84.3783 -3.72153 9.91936 86.9399 -19.9543 7.46301 84.8157 -15.1358 19.1716 86.9829 -27.1848 13.7244 84.9789 -24.2465 35.0315 83.0667 -31.2656 26.1633 85.0641 -29.3275 42.8321 87.2394 -26.5835 54.4673 83.6613 -21.5529 52.1903 85.3592 -20.4029 -19.1772 9.97014 -34.5627 -29.0093 10.0524 -23.9684 -28.9966 14.3787 -41.6404 -41.4341 14.4313 -27.1351 68.2653 14.2141 -21.6559 -37.1724 23.751 -45.8917 49.1935 70.9503 -42.3484 -14.5648 76.6133 -27.0075 -49.8916 83.6109 -28.9872 -61.1227 76.1114 -27.2671 -55.0601 65.0337 -40.5186 -61.3029 55.8348 -36.2984 -51.2017 23.1727 -29.0783 -45.8464 35.4359 -46.3143 -58.6945 33.6906 -29.4149 -27.3062 73.8878 -30.3291 27.1279 76.7275 -38.8845 -39.6428 78.0687 -29.8339 -66.1326 51.3373 -25.8257 -45.1368 71.2869 -39.6934 -65.8464 63.4174 -25.0094 25.8474 83.1357 -30.877 12.1451 83.2039 -25.5855 25.4849 9.93826 -37.9992 30.078 14.1043 -45.7664 18.448 40.0625 -61.2347 17.9876 48.7616 -61.0605 16.2348 56.7727 -58.8674 -32.2767 62.0154 -49.2051 -13.9368 67.8282 -45.9206 -24.8684 37.0434 -54.8511 -31.525 48.8313 -53.174 26.4258 27.5071 -55.6637 23.2554 67.017 -50.8845 -10.1563 64.4547 -50.0444 -5.75739 54.7064 -58.2557 -5.8419 47.5145 -59.5984 -4.37907 39.5768 -59.8409 -5.9761 14.2111 -47.5917 -0.926239 9.96272 -39.5747 -28.5177 48.5533 -54.7769 -21.6936 37.4949 -56.2842 -25.4638 59.1765 -53.191 -6.8028 30.1029 -57.2111 37.0326 38.1125 -57.7227 23.7499 29.4563 -57.6722 40.6137 50.1599 -57.0286 34.858 61.1842 -54.92 20.4387 65.7863 -53.1414 -9.18353 63.1068 -52.8225 -31.7926 10.1666 -9.9777 -45.2866 14.5017 -10.8326 70.7816 14.2259 -10.5137 79.9368 23.3648 -10.642 84.3683 35.367 -11.0661 85.8037 48.9262 -12.0255 82.7112 61.2146 -12.6921 76.0168 71.4278 -13.3949 -20.2604 77.9924 -11.2248 -49.3845 92.9811 -15.3182 -60.8729 85.6046 -14.2238 -56.4851 22.8762 -11.2211 -64.3531 34.2467 -11.1677 -29.1309 81.0871 -11.445 -37.3177 89.3021 -14.5323 -69.0093 51.6317 -10.622 -67.6547 66.1837 -10.4878 5.71547 83.0356 -4.42811 57.0919 10.0917 -9.5929 6.03725 83.0742 -16.133 5.45968 86.1214 -3.26036 7.12048 86.8962 -15.0149 13.8867 86.9385 -24.0596 25.9809 87.0964 -28.959 -11.6043 122.781 8.68477 -11.2981 122.692 9.69681 -10.977 122.366 10.6888 -10.6656 121.82 11.586 -10.3765 121.078 12.3445 -10.1237 120.175 12.9302 -9.91827 119.156 13.3142 -9.77222 118.067 13.4803 -9.68768 116.96 13.4188 -9.67062 115.887 13.1341 -9.72327 114.899 12.6358 -9.85822 114.021 11.8907 -10.7227 112.914 8.71887 -11.1023 127.944 8.41562 -10.4921 127.767 10.4464 -9.85971 127.122 12.423 -9.24655 126.037 14.2114 -8.68082 124.561 15.7276 -8.18628 122.764 16.8946 -7.78964 120.733 17.6635 -7.49306 118.563 17.9719 -7.3344 116.363 17.8451 -7.30846 114.233 17.2735 -7.41818 112.273 16.2733 -7.69992 110.534 14.786 -8.2775 109.033 12.4727 -9.35776 108.08 8.5424 -9.95609 132.998 7.96262 -9.04932 132.737 10.981 -8.11142 131.781 13.9103 -7.20317 130.173 16.5602 -6.3661 127.988 18.8075 -5.64024 125.328 20.5468 -5.05821 122.318 21.6961 -4.64821 119.099 22.2025 -4.42282 115.824 22.0238 -4.39761 112.65 21.1845 -4.56294 109.746 19.6875 -4.97073 107.211 17.3891 -7.42485 103.383 8.21767 -8.20483 137.879 7.33685 -7.0141 137.537 11.2983 -5.78555 136.284 15.1374 -4.59557 134.176 18.611 -3.49826 131.313 21.5559 -2.54626 127.827 23.8351 -1.78407 123.883 25.3417 -1.24654 119.664 26.006 -0.958862 115.367 25.7954 -0.932175 111.202 24.7018 -1.15683 107.411 22.6977 -1.71957 104.094 19.6809 -4.90993 99.0215 7.7476 -5.87453 142.516 6.54797 -4.41762 142.098 11.3954 -2.91623 140.566 16.0879 -1.46082 137.989 20.3341 -0.119568 134.489 23.9337 1.04373 130.229 26.72 1.97571 125.407 28.5617 2.63261 120.249 29.3728 2.98405 114.998 29.1163 3.01297 109.897 27.8025 2.72233 105.248 25.381 2.00388 101.315 21.4907 -1.90344 95.1527 7.08847 -2.99854 146.84 5.6071 -1.29695 146.353 11.2694 0.45578 144.564 16.7478 2.15439 141.556 21.7035 3.72029 137.47 25.9059 5.07858 132.497 29.1585 6.16626 126.869 31.3079 6.93364 120.848 32.2555 7.3429 114.718 31.9552 7.37701 108.764 30.4219 7.02557 103.335 27.5927 6.15958 98.8146 22.9217 1.31064 91.5316 5.92221 0.38089 150.789 4.52833 2.30194 150.239 10.9231 4.28081 148.22 17.1066 6.19814 144.825 22.7007 7.96496 140.213 27.4444 9.49823 134.6 31.1152 10.7268 128.246 33.5419 11.592 121.45 34.611 12.0547 114.531 34.2722 12.0932 107.81 32.5417 11.6995 101.628 29.4492 10.7461 96.4739 24.1724 4.21408 154.305 3.32648 6.32714 153.7 10.3604 8.50323 151.481 17.1593 10.6111 147.749 23.3102 12.5537 142.677 28.5254 14.2397 136.505 32.5617 15.5905 129.519 35.2301 16.5418 122.048 36.4053 17.0504 114.439 36.0331 17.0919 107.05 34.1306 16.6589 100.258 30.74 15.7233 94.7279 25.791 8.4454 157.338 2.02082 10.7201 156.687 9.59079 13.0608 154.299 16.9057 15.3288 150.283 23.5229 17.4189 144.827 29.1348 19.2332 138.186 33.4774 20.6856 130.67 36.3481 21.7103 122.631 37.6123 22.2575 114.445 37.2119 22.3019 106.495 35.1648 21.8259 99.2209 31.4888 20.825 93.3985 26.5962 13.0133 159.842 0.628418 15.4163 159.154 8.62471 17.8875 156.633 16.3489 20.283 152.392 23.3369 22.4903 146.631 29.2623 24.4054 139.618 33.8481 25.9394 131.682 36.879 27.0211 123.193 38.2151 27.5987 114.549 37.7917 27.6461 106.153 35.6297 27.1561 98.4202 31.8069 26.2026 92.3353 26.7949 17.8512 161.781 -0.829224 20.3468 161.067 7.47549 22.9136 158.449 15.497 25.4011 154.045 22.7534 27.6929 148.063 28.9072 29.6814 140.78 33.6686 31.2747 132.539 36.8168 32.3972 123.724 38.2032 33.0378 114.732 37.7776 33.1394 106.004 35.5511 32.5863 97.9694 31.5919 31.965 91.3737 26.2299 28.0317 162.761 5.43213 30.6652 160.074 13.6627 33.218 155.556 21.1096 35.5698 149.416 27.4236 37.6109 141.943 32.3103 39.2458 133.487 35.5408 40.3779 124.44 36.8931 41.0778 115.182 36.3645 41.3685 106.251 34.3441 40.5714 98.0124 30.0964 39.483 90.8428 24.5869 25.47 163.494 -3.09354 33.2647 163.97 -5.38011 35.8181 163.241 3.11665 38.442 160.564 11.3176 40.9852 156.062 18.737 45.5605 150.164 24.1539 46.9596 143.512 28.5313 48.7731 136.143 30.9839 48.1273 125.112 34.1698 49.5294 116.289 34.2469 49.9179 107.113 32.426 48.6893 98.8206 27.8254 47.2243 91.628 22.178 38.4532 163.455 -6.88224 40.9503 162.742 1.42916 43.5171 160.123 9.45065 47.7967 155.173 17.3906 53.1913 129.392 30.4605 57.4434 120.187 30.353 57.7555 108.881 29.1971 56.501 100.349 24.8901 54.4406 93.4897 18.651 43.5401 162.322 -8.34137 45.9453 161.636 -0.335434 50.4154 158.124 9.95186 48.4521 160.589 -9.73451 50.7305 159.939 -2.15119 54.3182 157.614 6.23138 63.8033 119.565 25.3861 63.9101 110.06 24.7226 62.901 102.219 20.9027 60.7679 96.0876 14.7059 53.1171 158.28 -11.0416 55.2347 157.675 -3.99215 58.19 155.872 2.80748 67.2969 119.573 21.0355 67.7537 111.25 20.0049 67.3733 103.92 17.1459 65.043 98.1407 11.5222 57.4671 155.429 -12.245 59.394 154.879 -5.83163 62.1915 152.982 0.103493 69.6977 119.848 16.5973 70.8076 112.269 15.649 70.4413 106.039 12.8968 68.5447 100.725 8.19913 61.4382 152.077 -13.326 63.1457 151.59 -7.6422 65.78 149.427 -2.04368 72.9933 113.56 10.1899 72.6093 109.123 7.23009 71.4208 102.692 -5.93692 66.1158 146.314 -14.556 67.6306 145.656 -8.87371 68.937 144.641 -4.73136 71.1249 140.238 -3.87204 72.9303 135.432 -3.25369 73.955 129.872 0.956131 73.8222 124.051 6.88754 69.9913 140.169 -15.5436 71.876 138.749 -9.69077 -11.3759 117.634 8.77818 63.3644 132.244 19.7795 58.7861 144.777 19.4836 67.0122 129.764 16.8798 70.6155 138.855 5.83472 63.4756 148.383 9.49515 62.8195 133.184 17.464 65.3848 131.323 15.0306 58.8061 141.77 16.8434 60.1659 137.06 18.4575 67.3103 131.311 12.1873 59.8997 144.627 13.2097 68.6945 133.697 9.63008 62.6779 144.573 10.0134 68.5944 137.783 7.94185 66.1373 141.972 8.0323 63.5846 133.449 17.7798 66.1373 131.523 15.497 59.6002 142.393 17.3936 68.0977 131.472 12.4801 69.5345 133.885 9.64862 63.3399 145.241 10.1906 69.4233 138.273 7.76169 66.8358 142.631 7.99524 70.3049 128.194 12.73 72.5233 132.983 6.70811 70.8876 139.701 3.88477 57.3232 138.168 24.4749 62.3546 131.157 22.7541 67.3926 146.279 4.41341 62.6852 151.575 8.16354 58.5355 152.152 14.7897 56.0087 147.327 21.699 67.4163 128.203 18.5732 61.7689 138.738 16.9517 60.1192 142.066 15.9826 64.1066 135.62 16.4201 65.946 133.39 14.7222 67.2903 132.939 12.8657 68.2793 135.009 11.4955 67.7633 138.355 10.7993 65.6517 141.685 10.9157 62.861 143.967 11.7343 60.6115 144.197 13.6175 60.9733 137.35 18.8824 60.8999 145.33 13.6701 65.4233 132.097 14.9091 64.194 132.052 16.3667 63.0381 133.984 17.1452 60.5626 137.576 18.0038 59.2072 139.485 18.0623 59.179 141.815 16.5439 61.4122 134.887 18.1943 67.2154 132.019 12.4453 66.4087 131.047 13.613 59.0411 143.572 15.1678 60.1096 144.464 13.3409 68.5151 134.306 10.3248 68.0821 132.189 10.829 61.149 144.974 11.4258 62.7831 144.363 10.5976 68.2882 138.059 8.96576 68.9548 135.624 8.61655 64.3898 143.534 8.86493 66.015 141.892 9.0614 67.5801 139.948 7.72906 62.5229 143.343 13.2497 61.0674 143.946 13.8533 64.8184 141.126 13.1519 66.8854 138.187 12.9695 67.3889 133.651 13.1986 66.7994 134.635 14.1328 65.5909 137.242 14.9847 63.4504 140.109 15.2998 61.4471 142.587 14.915 69.5049 129.705 12.5735 72.1177 136.32 4.77299 71.5801 133.393 8.20432 59.2932 134.201 23.8217 59.9546 137.579 21.2023 65.0801 149.359 5.97188 67.3192 144.395 6.27661 56.9459 150.409 18.5398 60.5959 148.729 14.5628 56.1303 142.947 23.7928 65.2135 129.283 20.9902 68.9562 127.783 15.7988 69.2988 142.988 3.69571 60.547 152.61 11.1863 71.7477 130.025 9.56706 72.9533 131.626 4.33482 71.3592 125.34 12.6099 70.8958 140.288 0.80043 60.4142 128.485 25.3476 53.3566 137.368 28.099 60.1785 154.454 5.65604 66.8521 148.152 1.54631 50.4599 149.321 23.457 54.4777 155.19 14.0957 66.8083 125.61 19.6379 60.7657 140.445 16.6648 62.9418 137.1 16.8738 65.1157 134.361 15.6497 66.6044 132.832 13.8036 67.9094 133.728 12.0538 68.246 136.622 11.0736 66.8721 140.078 10.7355 64.2593 143.015 11.2634 61.6205 144.401 12.4393 60.0361 143.345 14.9402 62.2167 135.13 18.5205 60.0235 144.253 15.7061 59.9835 139.927 18.519 64.9258 132.28 16.7923 67.1776 131.236 14.0179 68.9044 132.335 10.9928 69.7696 135.952 8.50682 68.3794 140.573 7.55853 64.9874 144.212 8.9287 61.9957 145.611 11.7513 64.3364 132.866 16.125 59.6128 139.75 17.5893 61.7458 135.583 17.8214 66.3694 131.791 13.6738 59.3318 143.457 15.0788 67.9657 132.894 11.3154 61.3218 144.772 11.7684 68.6738 136.094 9.51442 64.4194 143.374 9.69681 67.3615 140.039 8.78485 61.7844 144.005 13.1407 63.6091 142.365 13.2305 65.9438 139.693 13.0347 67.4912 136.673 12.9257 66.9492 133.714 13.8169 66.3464 135.861 14.5969 64.5685 138.672 15.2167 62.3546 141.447 15.1878 60.8028 143.341 14.6881 70.7571 131.099 10.3129 71.4393 136.084 6.66586 61.5272 134.531 20.6551 65.2209 146.715 7.63861 59.5052 147.331 17.3142 58.8328 141.204 20.8056 65.3699 130.706 18.6303 68.3045 129.387 14.7556 69.1838 141.704 5.63008 61.9527 149.098 11.8158 72.6026 127.566 8.47568 72.3965 136.097 1.70497 56.5247 132.614 27.6949 63.6929 151.685 3.08774 52.022 153.009 18.9305 51.1249 144.226 26.8356 63.9865 126.508 22.5154 69.2202 125.238 16.535 69.0541 144.317 0.692924 57.2187 155.661 9.56113 67.741 135.282 12.8723 67.7907 134.283 12.7419 71.6609 136.111 -15.9358 72.3201 105.969 -15.2641 74.0417 117.157 -16.1597 75.2065 106.525 -16.2769 79.8634 107.308 -17.6552 91.3867 109.457 -21.1013 88.3001 106.164 -20.0804 79.2991 114.295 -17.6596 83.595 107.064 -18.7273 84.1132 113.461 -18.9875 85.3967 106.488 -19.2404 74.3568 135.883 -16.7173 78.9611 134.305 -18.0244 82.9529 133.126 -19.1618 84.9244 134.248 -19.7638 86.99 136.683 -20.4237 90.4947 139.433 -21.5114 93.7133 139.447 -22.4507 94.9967 133.968 -22.6969 95.4994 138.023 -22.9393 92.0955 130.536 -21.7701 88.3638 126.832 -20.5942 85.6599 124.96 -19.7608 81.4537 123.062 -18.4885 74.8654 115.813 -16.3999 75.0456 119.162 -16.437 77.3477 106.901 -16.9108 90.4702 107.067 -20.7351 76.8324 114.944 -16.9597 81.866 106.977 -18.232 81.8267 113.709 -18.3173 87.5994 113.172 -20.0641 72.8517 136.463 -16.4526 76.6211 135.168 -17.3616 81.0749 133.56 -18.6235 84.1259 133.478 -19.5125 85.7941 135.222 -20.0404 95.5972 136.005 -22.9201 93.7963 132.209 -22.3054 90.1255 128.604 -21.1495 87.0197 125.694 -20.1745 83.7714 124.169 -19.1907 77.8207 121.529 -17.3927 90.9181 111.196 -21.0087 72.5032 108.223 -2.09484 75.2258 128.38 -2.75545 73.0089 134.723 -11.6266 74.987 120.808 6.20024 75.9205 117.527 -9.42607 74.9633 116.553 -9.73895 78.1707 127.11 -4.45851 76.4373 109.876 3.38505 75.8359 108.157 -4.45555 81.7666 127.621 -5.91393 76.6804 114.045 7.19746 76.6345 120.205 6.07716 82.3917 119.936 3.28125 80.7256 108.785 -7.12913 83.5075 117.685 2.46864 82.9974 115.277 1.76725 92.4261 111.042 -14.8022 90.3783 110.634 -9.15768 95.4037 129.402 -7.5814 96.0984 136.789 -17.4832 82.3405 119.579 -9.26593 80.8413 115.369 -9.65369 85.2625 124.587 -1.81087 84.8272 129.21 -7.48057 85.7451 117.806 -3.52579 86.8232 121.414 -9.52765 85.9097 118.886 0.325172 87.199 131.776 -9.16064 88.7516 134.416 -11.1099 90.1003 121.341 -5.78863 94.2515 126.991 -9.62626 89.9564 123.624 -10.2795 92.7753 126.838 -11.8772 90.8128 122.536 -2.9371 84.8317 108.856 -9.63812 86.0135 114.746 -2.76731 86.5792 108.162 -11.0609 90.7371 125.097 -2.53673 73.043 106.875 -10.3143 75.0849 116.366 -9.04127 75.9716 116.037 -9.92357 74.6763 117.226 -13.3023 76.6107 127.495 -3.81347 75.8715 107.338 -10.9986 74.2945 131.787 -6.83849 77.6673 130.92 -7.97213 79.9509 127.383 -5.12654 76.4239 117.364 7.49699 79.6098 120.36 4.88643 79.5468 114.305 5.90663 78.3479 108.471 -5.80049 80.1169 108.117 -13.6233 81.3351 130.611 -9.06203 83.483 116.149 2.62879 83.0011 114.026 3.50368 91.761 108.672 -14.126 92.1266 109.889 -18.0081 93.8845 131.645 -7.45462 96.1799 134.037 -11.4887 81.9698 117.706 -6.57603 78.9833 118.659 -9.33636 78.2737 115.773 -9.7916 81.6235 116.026 -5.37269 79.8693 114.493 -14.8934 83.5372 128.01 -6.78511 83.5372 116.896 -3.09725 86.2686 119.313 -6.65833 84.7701 120.477 -9.37344 85.7155 117.814 -1.09836 82.8336 116.065 -0.2435 84.0376 118.31 1.24899 82.4806 122.05 -11.5955 87.1182 124.405 -12.0018 88.0999 133.229 -10.2009 92.2897 123.818 -7.20253 93.4241 126.82 -10.8934 91.5661 125.3 -11.0513 89.9394 122.25 -7.90022 90.4806 121.459 -4.05592 93.4426 125.358 -4.55564 95.0537 127.861 -8.4207 86.6067 133.598 -11.5288 88.5707 135.852 -12.9256 89.8207 126.465 -12.6372 92.9117 128.817 -13.9117 95.0404 130.344 -13.2941 82.9299 109.011 -8.36213 85.6702 113.376 -2.09262 83.9642 114.927 -0.734322 83.2265 115.122 -10.3417 85.751 115.129 -7.31301 84.1511 107.994 -14.6242 84.6693 113.83 -16.0203 88.6597 113.95 -5.64331 88.16 112.314 -5.20661 87.6284 114.616 -8.44739 91.1709 112.257 -10.1186 89.261 107.896 -12.7825 84.4929 131.425 -10.2884 88.4714 122.412 -9.79086 88.4424 120.148 -1.065 85.9995 121.323 0.560211 86.1099 130.434 -8.26055 87.8345 118.872 -4.42515 91.1968 133.419 -9.01013 88.8191 128.275 -4.56676 81.5976 122.873 0.828606 76.9644 122.205 2.94316 81.4612 110.902 -0.296883 85.7392 110.723 -3.63627 75.9894 134.176 -12.4407 80.1251 132.842 -13.5803 83.9442 132.485 -14.6398 85.946 134.022 -15.3694 88.0213 136.327 -16.4059 91.3103 138.582 -16.933 94.3976 138.399 -17.1755 95.3962 132.764 -17.8798 92.8436 130.018 -17.5358 89.2928 126.974 -16.3569 86.4413 124.91 -15.6051 82.4754 123.01 -14.5108 91.896 112.486 -14.9156 82.8751 115.658 -0.544518 86.2805 115.188 -4.50003 76.1644 116.572 -8.83145 75.4185 115.882 -13.8516 76.0488 119.438 -12.6624 75.6543 131.457 -7.41829 79.4986 117.656 6.72963 79.0322 110.008 1.65974 78.0128 107.635 -12.0211 79.5268 130.758 -8.47779 82.1877 117.111 4.66623 91.3177 107.267 -17.6789 94.3523 135.804 -11.3701 79.199 116.397 -7.74822 77.416 115.064 -14.3959 84.1318 118.571 -6.36101 83.3881 117.034 -0.32283 85.0712 123.225 -11.8706 91.807 124.332 -9.03386 92.9703 124.047 -5.59067 87.5542 134.782 -12.3095 91.394 127.808 -13.2948 94.0891 129.464 -13.8324 83.6906 111.07 -2.07482 83.6929 113.909 0.096817 83.6402 115.586 -6.22978 82.2292 108.145 -14.0185 82.2626 114.108 -15.3812 85.9475 107.439 -15.3597 88.2578 113.456 -17.1125 88.2163 114.084 -11.2463 88.9763 106.666 -16.7455 83.1168 130.614 -9.81607 88.5233 125.332 -12.2287 88.5596 122.718 -0.990116 88.1236 120.568 -7.14322 91.5424 136.545 -12.2591 90.1959 130.708 -6.46555 83.1835 123.375 -0.566017 79.5957 122.783 1.99635 74.3672 117.295 7.88031 87.5631 110.072 -6.37584 74.1744 134.769 -11.9588 77.8467 133.564 -12.9456 82.0565 132.388 -14.1586 85.1416 133.114 -14.9897 86.8728 135.108 -15.8513 96.088 134.721 -17.6366 94.3716 131.254 -17.9443 90.9752 128.478 -16.8885 87.8886 125.817 -15.9581 84.6456 124.017 -15.1551 78.798 121.528 -13.6567 91.6357 111.58 -17.9377 84.2971 115.519 -2.50114 83.7426 120.625 1.77541 88.5833 114.451 -6.97195 88.0828 118.976 -2.26166 92.4098 128.085 -4.46593 90.9233 113.198 -10.8133 95.8359 131.912 -12.44 88.8584 109.104 -9.27186 75.6269 121.857 3.65715 78.5266 120.452 -11.3783 85.7325 132.479 -10.7807 87.2109 126.227 -3.03349 82.3865 115.792 -3.39975 85.5323 114.683 -10.7629 88.5351 113.906 -14.361 85.1809 114.135 -13.5766 82.7372 114.618 -13.0324 80.3171 114.815 -12.4815 77.8096 115.265 -12.0804 75.7054 115.895 -11.7089 74.7512 116.96 -11.2522 75.744 118.732 -10.8711 69.843 141.836 -9.30819 67.9679 143.189 -15.0231 72.8213 119.941 10.9157 71.6506 104.986 0.684029 69.456 100.727 -14.47 73.995 114.29 6.9995 73.1142 110.85 3.56299 72.9748 136.288 -10.6843 71.3295 137.732 -15.8765 71.3963 104.177 -15.1099 74.1581 133.103 -5.27631 75.2109 128.825 -1.40012 75.073 122.123 6.21136 74.2901 118.616 8.83824 74.0083 114.133 7.99301 73.4597 110.347 4.91832 72.8198 106.93 -0.967873 82.4554 113.29 2.18171 79.572 111.521 3.2642 80.1607 112.304 4.14649 -10.1429 113.254 10.7089 72.7842 105.382 -7.25814 -5.83078 104.99 14.0223 -2.85619 101.143 15.3198 0.690811 97.9167 16.3207 4.67302 94.8688 16.9057 66.3361 95.2358 0.153168 -11.892 122.645 7.67271 -12.1529 122.274 6.67995 -12.3643 121.685 5.78059 -12.534 120.909 5.0184 -12.626 119.978 4.42898 -12.646 118.938 4.04047 -12.5956 117.84 3.87142 -12.4777 116.734 3.92851 -12.2953 115.674 4.20803 -12.0595 114.707 4.70033 -11.7659 113.862 5.43361 -11.6777 127.672 6.3856 -12.1989 126.934 4.40896 -12.6304 125.765 2.6199 -12.9514 124.219 1.10294 -13.1465 122.369 -0.071487 -13.2072 120.301 -0.848503 -13.1242 118.113 -1.18808 -12.8996 115.91 -1.07389 -12.5437 113.798 -0.511894 -12.0803 111.876 0.468269 -11.5131 110.201 1.90664 -10.7279 108.684 4.35558 -10.8109 132.596 4.94501 -11.5843 131.502 2.01563 -12.2226 129.769 -0.634972 -12.6979 127.479 -2.88298 -12.987 124.738 -4.62311 -13.0768 121.674 -5.77454 -12.9633 118.431 -6.28242 -12.6504 115.16 -6.12376 -12.1492 112.018 -5.30077 -11.4627 109.168 -3.83942 -10.636 106.694 -1.7434 -9.32736 137.352 3.37615 -10.3401 135.919 -0.462959 -11.1772 133.648 -3.93729 -11.8 130.646 -6.88298 -12.1796 127.054 -9.1636 -12.2968 123.039 -10.6717 -12.1477 118.789 -11.3375 -11.7385 114.502 -11.1299 -11.0883 110.379 -10.0578 -10.1881 106.649 -8.12857 -9.11383 103.415 -5.39493 -7.24765 141.871 1.70126 -8.48584 140.119 -2.99197 -9.509 137.344 -7.23812 -10.2704 133.674 -10.8392 -10.7339 129.283 -13.627 -10.8777 124.375 -15.4702 -10.6953 119.179 -16.2843 -10.1948 113.94 -16.03 -9.38 108.916 -14.6924 -8.24042 104.41 -12.2576 -6.81169 100.55 -8.6587 -4.60298 146.087 -0.054435 -6.04802 144.042 -5.53284 -7.24321 140.802 -10.4893 -8.13144 136.519 -14.6932 -8.67267 131.393 -17.9473 -8.84024 125.664 -20.0997 -8.62744 119.599 -21.0494 -8.04318 113.482 -20.7529 -7.08603 107.625 -19.1759 -5.77963 102.353 -16.3577 -4.12698 97.8226 -12.2769 -1.43115 149.939 -1.86574 -3.0623 147.631 -8.04924 -4.41095 143.974 -13.6441 -5.41411 139.139 -18.3892 -6.02504 133.353 -22.0622 -6.21411 126.886 -24.4919 -5.97388 120.04 -25.564 -5.31401 113.136 -25.2289 -4.25377 106.509 -23.4776 -2.81467 100.514 -20.3577 -0.857285 95.3878 -15.9247 2.22112 153.371 -3.70596 0.427597 150.832 -10.5049 -1.05525 146.812 -16.6565 -2.15849 141.496 -21.8739 -2.82948 135.134 -25.9124 -3.03783 128.024 -28.5838 -2.77313 120.497 -29.7627 -2.04877 112.906 -29.3942 -0.897324 105.606 -27.4954 0.658188 98.9955 -24.1115 2.66969 93.7269 -19.7623 6.30045 156.332 -5.54841 4.37052 153.602 -12.8633 2.77497 149.275 -19.4821 1.58868 143.556 -25.0954 0.866531 136.711 -29.4409 0.642624 129.061 -32.3147 0.926575 120.963 -33.5833 1.70657 112.796 -33.1866 2.9455 104.941 -31.144 4.64336 97.9398 -27.491 6.69341 92.8958 -23.465 10.7483 158.78 -7.36639 8.71009 155.896 -15.0906 7.02557 151.328 -22.08 5.77182 145.289 -28.0077 5.00963 138.061 -32.5957 4.77312 129.983 -35.6311 5.07339 121.431 -36.9701 5.89712 112.807 -36.5512 7.20499 104.513 -34.3944 9.05486 97.2925 -30.556 11.2406 92.5807 -26.9734 15.4979 160.678 -9.13321 13.3818 157.684 -17.1547 11.6321 152.94 -24.4125 10.3309 146.669 -30.5671 9.53901 139.163 -35.3323 9.29359 130.775 -38.4834 9.60574 121.895 -39.8743 10.4606 112.939 -39.4398 11.8189 104.326 -37.2 14.0588 96.9514 -33.3467 16.6434 92.4725 -29.9718 23.0545 162.362 -11.6177 20.8829 159.289 -19.8483 19.0871 154.421 -27.2967 17.7525 147.986 -33.6129 16.9392 140.284 -38.5019 16.6871 131.675 -41.736 17.0074 122.563 -43.1632 17.8853 113.373 -42.7169 19.2791 104.535 -40.4185 21.2106 97.0107 -36.2628 23.42 92.7149 -32.4103 30.8573 162.843 -13.8754 28.6938 159.781 -22.0763 26.9055 154.931 -29.4973 27.9242 148.749 -36.2635 26.8335 141.896 -40.4148 27.1308 134.403 -43.1558 24.8332 123.19 -45.306 25.7073 114.033 -44.8611 27.096 105.227 -42.5709 28.977 97.7766 -38.3173 31.01 93.1798 -33.7501 36.0984 162.352 -15.1936 33.9816 159.358 -23.2144 33.3826 154.015 -31.9877 31.2043 127.797 -45.1888 41.2721 161.261 -16.3458 39.5527 157.252 -27.2589 34.1114 118.081 -46.7154 35.274 106.958 -44.7195 36.8836 99.3018 -39.4702 38.9366 94.263 -33.7738 46.3034 159.583 -17.3163 44.8502 156.854 -26.2038 42.5748 117.521 -46.6924 42.9789 108.591 -45.2964 44.501 100.951 -40.6187 47.291 94.8665 -33.4268 51.1197 157.345 -18.0904 49.9772 155.213 -25.3275 48.2059 117.708 -45.7612 48.7168 109.961 -44.0908 50.3568 102.509 -40.027 53.4827 96.7468 -32.9174 55.6498 154.578 -18.6568 54.8409 152.392 -25.0769 52.7864 118.209 -43.2581 53.6228 111.351 -41.2941 55.2413 104.656 -38.0407 58.7364 99.47 -31.8202 59.8286 151.323 -19.0083 59.0656 148.888 -25.0487 58.6371 112.647 -37.2162 60.0213 108.358 -34.3455 66.7364 101.215 -23.2055 64.3461 145.393 -20.1264 63.2939 144.171 -24.2324 64.6093 139.563 -25.8976 66.0209 134.24 -27.224 64.8265 128.137 -31.0498 61.4092 121.344 -36.0211 68.4454 138.292 -21.5291 45.453 130.809 -41.5454 41.6524 143.401 -39.21 50.101 128.433 -40.9145 59.0129 137.957 -33.7931 50.9314 147.376 -33.4765 46.2433 131.854 -39.2708 49.7303 130.061 -38.4737 43.1271 140.511 -36.8678 43.4601 135.718 -38.774 52.9147 130.138 -37.0872 45.9668 143.509 -34.5197 55.443 132.636 -35.7653 50.0284 143.557 -33.3201 56.2208 136.784 -34.4582 54.0432 141.001 -33.4001 46.726 132.091 -39.9847 50.1181 130.245 -39.3182 43.4927 141.099 -37.7857 53.4219 130.291 -37.7879 56.1362 132.807 -36.2509 50.4828 144.208 -33.8546 57.0422 137.29 -34.817 54.643 141.653 -33.7723 55.0842 126.961 -39.0439 60.0643 131.807 -35.2485 60.3282 138.873 -32.42 37.8104 136.599 -42.3736 42.95 129.62 -43.6504 57.0126 145.449 -31.2322 50.941 150.632 -32.0693 43.8723 150.975 -35.442 38.0876 145.889 -39.6926 49.5108 126.802 -42.685 45.605 137.439 -38.4211 44.6923 140.828 -36.8618 47.893 134.316 -39.1277 50.3776 132.134 -38.6198 52.5225 131.75 -37.7278 54.0743 133.869 -37.1666 53.9713 137.248 -36.4482 52.0865 140.596 -35.554 49.2647 142.875 -34.8407 46.3531 143.052 -35.2278 43.9086 135.978 -39.5785 46.5533 144.179 -35.4761 49.8356 130.846 -38.4441 47.9983 130.76 -39.0142 46.6052 132.656 -39.1566 44.0339 136.249 -38.6168 42.8387 138.17 -38.0111 43.6017 140.564 -36.8188 44.6634 133.535 -39.1929 52.6931 130.851 -37.3023 51.3763 129.845 -37.8198 44.2029 142.382 -35.6615 46.0758 143.337 -34.7362 54.9106 133.214 -36.2776 54.299 131.078 -36.3859 47.9753 143.917 -33.7041 49.8059 143.321 -33.8591 55.4037 137.025 -35.1736 56.1837 134.599 -35.1328 52.1021 142.547 -33.2281 53.387 140.878 -34.1972 55.4482 138.973 -33.8331 48.1733 142.19 -35.9091 46.6141 142.785 -35.6607 50.1892 139.952 -36.9649 52.0658 136.997 -37.7961 52.4194 132.447 -38.0845 51.4089 133.398 -38.5931 49.903 135.983 -38.7555 47.893 138.861 -37.994 46.3798 141.377 -36.6995 54.5637 128.486 -38.5583 60.8235 135.305 -33.5811 58.5718 132.382 -36.0552 39.8159 132.627 -42.8845 41.7955 136.119 -41.0087 54.1663 148.483 -31.4153 55.9539 143.477 -32.6654 40.5373 149.092 -37.6693 45.7748 147.539 -36.2109 37.1201 141.421 -41.3319 46.3145 127.804 -43.6823 52.3171 126.477 -40.9857 59.1168 142.133 -31.5495 47.4993 151.562 -33.5084 58.2159 128.907 -37.3334 61.9319 130.28 -33.5996 55.9843 124.214 -39.8068 61.9357 139.512 -29.8517 40.0547 127.159 -44.8752 32.5262 135.693 -43.2641 50.1396 153.648 -28.7343 58.0699 147.457 -28.6001 32.4395 147.874 -38.275 40.7865 154.09 -32.8062 48.5485 123.891 -44.2502 44.8917 139.171 -37.7145 46.6541 135.791 -38.9245 49.1683 133.076 -38.9875 51.4356 131.609 -38.169 53.4767 132.569 -37.389 54.253 135.498 -36.8633 53.2321 138.983 -35.9892 50.709 141.926 -35.1558 47.8345 143.294 -34.7866 45.1675 142.152 -35.9951 45.1713 133.754 -39.9113 44.7331 143.025 -36.6728 43.2421 138.583 -38.8326 48.3979 130.967 -39.812 51.8085 130.009 -38.6079 54.898 131.214 -36.9842 56.9414 134.926 -35.5317 56.2052 139.595 -34.146 52.5633 143.214 -33.6329 48.5055 144.528 -34.4611 48.2504 131.567 -38.9341 43.4311 138.451 -37.8428 45.1446 134.246 -39.058 51.3088 130.573 -37.8872 44.498 142.267 -35.7379 53.9312 131.767 -36.7632 47.939 143.698 -34.0771 55.4586 135.033 -35.7586 51.6817 142.351 -33.9384 54.6942 139.021 -34.6087 47.6009 142.867 -35.4487 49.1112 141.201 -36.4341 51.2183 138.511 -37.4098 52.6196 135.479 -38.0192 51.7129 132.488 -38.381 50.7646 134.609 -38.7822 48.8984 137.414 -38.4633 47.013 140.215 -37.3683 45.949 142.148 -36.1946 56.8747 130.003 -37.3653 59.271 135.122 -34.8148 43.4222 133.063 -41.3875 53.4219 145.768 -32.7803 43.3933 146.037 -37.8806 41.0259 139.775 -40.1938 47.7811 129.312 -41.5937 52.3542 128.12 -39.7631 57.9468 140.752 -33.0391 48.3905 148.009 -34.6435 59.466 126.101 -36.8574 62.769 134.918 -31.1499 35.337 130.917 -44.7544 54.5184 150.949 -28.3414 36.1436 151.734 -35.4628 31.2473 142.63 -41.2578 44.4825 124.75 -45.068 52.223 123.767 -42.08 60.3461 143.735 -29.0309 45.5294 154.723 -30.4826 52.8762 134.088 -38.0496 52.9993 133.095 -37.9288 65.4323 107.528 -26.9171 67.9487 126.833 -28.5074 70.5081 134.319 -20.2732 62.6749 119.616 -35.7438 72.6589 117.278 -23.098 72.2444 116.442 -22.3254 71.3889 125.795 -28.3703 65.5901 109.029 -33.5959 69.3603 107.637 -26.6398 75.0515 126.757 -29.2103 63.5342 113.12 -36.9642 64.2148 119.206 -36.4696 70.5985 118.958 -37.1681 74.9121 108.319 -27.0453 71.9998 116.742 -36.9872 71.9612 114.391 -36.0381 88.8094 110.578 -26.9527 84.1169 110.131 -30.6072 87.2695 128.749 -35.4465 93.0867 136.547 -27.8016 77.576 118.913 -26.6205 76.2215 114.981 -25.3972 75.678 123.817 -34.645 78.3012 128.686 -29.8368 77.0845 117.097 -33.174 81.2906 120.822 -28.8656 75.1464 118.021 -36.546 81.172 131.293 -29.8079 83.4949 133.994 -29.1154 81.9364 120.685 -33.7567 87.4282 126.444 -33.002 84.2007 123.162 -29.9962 87.3956 126.405 -30.3062 80.9881 121.747 -36.5927 79.7217 108.446 -27.144 76.8458 113.737 -33.7746 81.9683 107.792 -26.8548 80.6767 124.289 -36.9998 70.1714 106.645 -20.1493 72.022 116.241 -22.9037 72.8888 115.884 -22.6383 73.3892 117.141 -19.0068 69.7533 125.895 -28.1175 72.9185 107.101 -21.1147 69.1965 130.484 -24.8144 72.6997 129.897 -25.4795 73.1742 126.294 -28.81 63.1531 116.358 -37.3542 67.3688 119.359 -37.0517 66.7935 113.286 -37.5877 72.197 107.977 -26.8719 77.8994 107.939 -21.2215 76.3201 129.88 -26.4826 71.9026 115.225 -37.0598 71.0463 113.066 -37.4483 87.9791 108.369 -27.0824 90.3568 109.787 -24.1197 85.8919 131.003 -34.834 89.9668 133.538 -32.7744 75.3807 117.261 -28.6335 74.2589 118.273 -24.8974 74.5081 115.555 -23.9173 74.7186 115.201 -29.2771 78.273 114.414 -20.2702 76.9377 127.337 -29.5447 74.9877 116.19 -32.3036 79.228 118.61 -30.8741 79.7455 119.59 -27.752 75.7618 117.015 -35.1966 72.8947 115.268 -34.2906 73.0867 117.445 -36.2917 78.8617 122.15 -25.111 82.7305 124.079 -27.0743 82.4725 132.777 -29.4795 84.5114 123.193 -33.8509 87.4141 126.338 -31.4821 85.952 124.849 -30.2847 82.9247 121.687 -31.9314 81.3232 120.724 -35.4257 84.0399 124.603 -36.7655 87.4445 127.25 -34.4856 81.9223 133.222 -27.574 84.3016 135.509 -27.551 85.3181 126.104 -28.0604 88.5803 128.469 -28.7521 90.0231 129.941 -30.4819 77.43 108.57 -27.2025 76.3149 112.625 -34.143 74.121 114.113 -34.4307 78.5236 114.752 -26.0741 79.2235 114.861 -29.7308 81.84 107.809 -22.5419 82.8432 113.477 -21.7471 80.6945 113.198 -32.7484 80.1006 111.667 -32.8137 81.4167 114.445 -29.7768 85.2891 111.653 -30.1957 85.1586 107.567 -26.8363 79.5016 131.024 -27.3879 82.7149 121.901 -29.5647 78.0128 119.311 -36.7914 75.0649 120.445 -36.8974 79.7863 129.926 -29.9221 79.3229 118.187 -33.5803 84.4402 132.877 -32.1553 80.111 127.576 -34.3959 71.2569 121.989 -34.7844 66.2834 120.958 -33.9154 71.8315 110.129 -33.2852 77.2358 110.04 -32.7655 73.4782 133.884 -21.131 77.6228 132.464 -22.2276 81.3655 132.277 -23.4746 83.426 133.82 -24.0033 85.7036 136.141 -24.3458 88.7308 138.375 -25.7679 91.4667 138.163 -27.2159 92.7583 132.552 -26.9171 90.4562 129.827 -25.7152 86.8669 126.78 -24.6669 84.0844 124.721 -23.6771 80.1888 122.834 -22.3988 88.4224 111.98 -26.642 73.0971 114.872 -34.0422 78.0365 114.257 -32.4652 72.6559 116.366 -23.6348 74.0565 115.738 -18.8756 74.3546 119.371 -20.3332 70.6786 130.252 -24.9797 66.3234 116.559 -38.424 68.7427 109.182 -33.5877 75.2695 107.415 -21.4172 74.5162 129.923 -26.0103 69.7229 116.044 -38.0771 89.5331 107.124 -23.792 88.3401 135.32 -31.9677 74.1388 115.95 -26.0645 75.9612 114.948 -19.4391 77.1416 118.114 -30.0044 73.3922 116.231 -34.5642 80.9955 123.121 -26.1556 85.0815 123.793 -32.0715 84.2148 123.344 -35.5836 83.1264 134.427 -27.4776 86.9811 127.454 -28.4118 89.522 129.098 -29.4795 74.6652 110.346 -32.9938 73.4634 113.087 -34.946 76.8228 114.888 -29.5521 79.8915 107.956 -22.0252 80.6122 114.073 -21.0487 83.7573 107.262 -22.8645 86.4999 113.195 -22.8837 83.3651 113.698 -27.6845 87.0649 106.513 -23.293 78.1729 130.027 -26.8719 84.0191 124.97 -27.6585 78.0395 121.874 -37.0279 80.9955 119.953 -31.531 86.4391 136.135 -29.7404 82.2626 130.071 -33.6418 73.3188 122.63 -34.5204 68.9993 121.598 -34.5597 61.1201 116.288 -36.4563 80.2549 109.485 -31.4116 71.6743 134.356 -20.764 75.3384 133.298 -21.6337 79.5527 132.054 -22.774 82.5547 132.906 -23.8513 84.4528 134.914 -24.1434 93.1861 134.488 -27.5777 91.9487 131.059 -26.2461 88.5515 128.283 -25.1888 85.4827 125.624 -24.1983 82.3397 123.833 -23.052 76.6708 121.456 -21.1288 89.869 111.457 -23.9848 75.2791 114.471 -33.131 72.5418 119.712 -36.6595 81.3907 113.876 -31.5584 78.3679 118.196 -35.5399 83.0864 127.336 -36.4037 85.4308 112.541 -29.518 90.2145 131.46 -31.6971 82.9166 108.627 -29.6277 64.7835 120.521 -33.7531 75.2428 120.861 -23.2937 80.7976 132.083 -27.6852 77.9572 125.484 -34.7339 74.1796 115.013 -31.4161 80.9021 114.638 -26.7177 85.1483 113.312 -25.263 82.0676 114.019 -24.0982 79.6802 114.358 -23.3746 77.3173 114.669 -22.6413 75.2124 115.161 -21.7041 73.588 115.837 -21.0027 72.7523 116.861 -20.956 73.4137 118.581 -21.8902 66.4762 141.604 -20.8641 58.3546 118.743 -38.2809 63.6573 103.164 -29.6181 61.2017 113.464 -35.2759 62.603 110.079 -31.8602 69.9438 135.891 -21.1621 68.2393 131.67 -26.2038 67.4378 127.136 -29.5202 62.8091 120.687 -35.9907 60.5767 117.653 -37.3935 60.7761 113.247 -36.1998 62.0921 109.556 -33.1525 65.2417 105.935 -28.1842 71.3073 112.394 -36.0092 68.3164 110.617 -35.2945 68.3445 111.331 -36.3747 -11.3552 113.133 6.63324 68.4684 104.805 -22.5375 -9.45044 104.401 1.95409 -7.56053 100.492 -0.627556 -5.0686 97.2087 -3.46945 -1.8849 93.9531 -6.38548 56.808 93.3547 -23.3279 61.9223 96.6682 -23.3508 59.4081 140.566 19.6623 60.4639 137.464 20.042 61.8763 134.831 19.5882 63.4845 132.857 18.7674 59.1931 143.585 18.4382 65.1653 131.503 17.6961 59.7648 145.792 16.5098 66.574 130.654 16.1776 60.7479 147.03 14.1165 67.7426 130.322 14.3856 61.9742 147.354 11.7839 68.7983 130.581 12.5261 63.4081 146.812 9.84286 69.823 131.736 10.6896 65.1046 145.464 8.28365 70.6207 133.636 8.99838 67.079 143.51 7.13741 70.6489 135.976 7.7083 68.7916 141.109 6.6273 70.0306 138.529 6.87865 46.0899 131.451 -40.7647 44.2964 133.408 -40.6498 42.8521 136.048 -40.2939 42.1344 139.179 -39.5132 48.0895 130.139 -40.7032 42.5725 142.25 -38.4974 50.1107 129.339 -40.116 44.0636 144.531 -37.2763 52.0814 129.065 -39.1855 46.164 145.859 -35.8431 53.992 129.384 -38.172 48.4484 146.268 -34.5523 55.8478 130.62 -37.1918 50.7075 145.792 -33.6656 57.2832 132.639 -36.2405 52.9926 144.492 -33.2066 58.0113 135.002 -35.2811 55.2984 142.565 -33.2185 57.9772 137.569 -34.3714 57.0771 140.172 -33.5929 1.38182 68.9774 -45.9569 1.47894 65.0285 -50.2728 1.09637 63.909 -52.87 4.59888 9.97681 -40.0908 4.56625 11.4122 -44.5415 4.27933 14.0176 -48.351 3.6239 17.5846 -51.2515 2.5518 21.6054 -53.3934 2.81797 25.9316 -56.0077 3.01964 28.3271 -57.5284 3.3214 31.8267 -58.9081 3.45486 35.6754 -59.9047 3.14198 39.6169 -60.4303 2.63558 43.6332 -60.5215 2.15143 47.625 -60.2798 1.8074 51.4352 -59.6459 1.64281 54.9177 -58.6553 1.54494 58.1214 -57.1999 1.24614 61.2169 -55.2299 2.20258 72.8765 -41.2252 4.0999 75.8378 -37.4454 6.18702 78.5203 -33.435 56.4936 87.4619 -10.08 57.7629 85.6098 -10.3506 59.9983 84.0135 -10.7406 63.4852 82.0057 -11.5406 67.5801 79.1089 -12.265 -10.1652 108.262 6.21582 -11.0734 112.965 7.57632 -0.481384 91.8178 -0.502998 -8.62003 103.705 4.73889 -6.45135 99.499 2.95057 -3.73181 95.6969 0.985786 -60.1092 28.2359 7.92776 -8.84988 108.395 10.4182 -10.438 113.006 9.67531 2.73864 92.5778 10.975 -6.7205 103.892 10.9765 -4.01207 99.6658 11.3213 -0.806137 95.8341 11.3643 64.3527 94.8043 -12.5052 60.0369 91.4033 -11.0824 -11.539 10.151 19.9241 -5.49863 10.1436 21.8177 -15.9268 10.1577 16.38 -19.33 10.1651 11.6357 -22.5381 10.1681 4.40154 32.719 10.1303 18.5309 40.266 10.1244 13.6679 14.2263 10.1377 23.0462 22.7994 10.1333 21.7028 2.70157 10.137 23.1159 44.4157 10.1281 7.56966 6.82094 10.137 23.6438 46.5807 10.1555 0.804138 -22.7316 10.1651 -8.79883 46.5392 10.1481 -8.35619 -6.5737 10.1422 -30.0845 -12.5993 10.151 -28.2717 -18.4966 10.1644 -25.6115 -21.6988 10.1659 -20.5282 -21.6462 10.1607 -14.2928 40.6619 10.1362 -21.951 32.9614 10.1496 -27.1618 22.9625 10.1599 -31.832 13.8408 10.1637 -33.647 2.11658 10.1488 -32.443 44.7679 10.1347 -15.5147 6.04318 10.1488 -32.526 12.5907 10.1733 -3.80531 59.1887 91.8044 8.95242 -37.1383 88.9529 -2.97714 -31.8022 10.0858 -1.97102 -25.1531 10.1622 -2.2068 -48.967 94.3801 -3.43312 -42.7435 92.7505 -3.24479 -45.2458 14.541 -1.9814 -38.8006 11.688 -1.94433 -51.5643 18.2037 -2.1067 -56.8395 22.9229 -2.04294 -61.3273 28.167 -2.00068 -64.683 34.1592 -1.92802 -67.7244 42.676 -1.88947 -69.2985 52.0358 -1.98363 -69.0782 59.0674 -1.98585 -68.0128 66.587 -1.96361 -66.3149 75.4782 -2.11857 -61.6254 86.6775 -2.9586 -55.4464 92.4777 -3.38715 -32.8632 83.5116 -1.95249 -29.1664 80.3716 -1.67964 -25.0219 78.6923 -1.82199 -19.731 77.9019 -1.94433 -13.8211 78.3245 -1.89985 0.599609 81.0967 -1.11393 5.68803 83.0274 -0.72765 6.50954 84.4391 -0.967133 5.72511 86.2104 -0.331726 3.73808 88.5303 1.10886 0.442429 91.5093 2.82008 -2.82133 95.1602 4.04714 -5.66766 99.1208 5.2742 -8.03503 103.465 6.34038 -9.79816 108.128 7.22415 -10.9333 112.931 8.02786 -26.7479 60.7542 43.6698 -20.1774 63.8423 42.5992 -8.42801 27.4619 48.2347 14.9477 25.7121 48.3904 3.09452 25.896 48.4757 42.6645 36.5214 48.0598 47.7344 49.638 47.1827 40.5551 62.2549 45.2372 -20.4769 63.1994 -50.3046 -27.628 60.1306 -51.1217 -8.33606 28.1588 -55.7549 41.6947 37.0493 -55.6696 46.1069 49.7648 -54.9594 39.661 61.5616 -52.9449 -28.2701 61.5994 42.6785 -21.096 64.5792 41.7131 -10.6093 65.5757 41.2676 1.58052 66.8139 41.2357 -20.6037 30.6107 47.064 -27.9498 36.4747 46.6355 -32.0076 43.3195 45.7562 -33.3289 50.1288 44.8568 -9.84192 26.1273 47.153 -32.1367 56.4888 43.8329 40.1118 30.266 46.5139 29.9349 25.9004 46.5236 16.4046 23.9305 47.0581 3.12344 24.0639 47.2805 46.8217 35.817 46.5762 50.7757 42.2756 46.3478 52.0569 49.3051 45.7651 50.1277 56.399 44.7582 45.0638 62.5551 43.5645 13.7088 68.7742 41.1082 26.4851 69.2584 41.2994 37.1171 66.9377 42.3456 1.53827 66.2289 -48.7276 -11.1349 65.489 -48.6957 -21.7418 64.0098 -49.2903 -29.2399 60.7943 -50.2557 -33.7448 49.2984 -52.3954 -32.2894 43.1438 -53.1362 -27.8334 36.8602 -53.862 -20.3917 31.2343 -54.2831 -10.0503 26.5855 -54.5085 -32.8298 55.3737 -51.4331 2.729 24.1781 -54.8289 15.8893 23.9164 -54.731 29.5034 26.0458 -54.0829 39.6795 30.5618 -53.8806 46.253 36.21 -53.7901 50.0128 42.5536 -53.5439 51.139 49.2547 -52.9597 49.321 55.8341 -52.0848 44.6241 61.6202 -51.0127 37.1431 65.7944 -49.8316 26.732 68.0261 -48.7847 13.6339 67.8667 -48.6371</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2108\" offset=\"0\" source=\"#LOD3spShape-lib-positions-array\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"LOD3spShape-lib-normals\" name=\"normal\">\r\n\t\t\t\t\t<float_array count=\"6870\" id=\"LOD3spShape-lib-normals-array\">-0.192109 -0.934569 0.299458 -0.06315 -0.993623 0.093407 -0.038767 -0.993005 0.111528 -0.11695 -0.921313 0.370816 -0.085264 -0.993927 0.06957 -0.25821 -0.942076 0.214058 -0.305238 -0.944237 0.123473 -0.103012 -0.993873 0.04007 -0.109849 -0.993698 0.02232 -0.319871 -0.945464 0.061492 0.322015 -0.653105 0.68539 0.238016 -0.809438 0.536805 0.39559 -0.829362 0.394547 0.547107 -0.665777 0.50736 0.149283 -0.925897 0.34703 0.227375 -0.943129 0.242504 -0.182106 -0.7902 0.585167 -0.310544 -0.820667 0.479654 -0.418246 -0.841388 0.342252 -0.407245 -0.671943 0.618582 -0.544891 -0.711903 0.443045 -0.234371 -0.618101 0.750347 -0.474249 -0.857348 0.200104 -0.472515 -0.875412 0.101901 -0.601129 -0.750567 0.274396 -0.593419 -0.791427 0.146617 0.282256 -0.953514 0.105559 0.497204 -0.845385 0.195227 0.680184 -0.678639 0.277127 0.475425 -0.378716 0.794069 0.394699 -0.508097 0.765539 0.651796 -0.507567 0.563506 0.728714 -0.35445 0.585953 -0.280085 -0.456993 0.844222 -0.472084 -0.52749 0.706322 -0.629949 -0.5896 0.505505 -0.525528 -0.402813 0.749375 -0.688269 -0.483465 0.540877 -0.345696 -0.333643 0.877027 0.797494 -0.502759 0.333521 0.868857 -0.332163 0.36709 0.779236 -0.208323 0.591094 0.556733 -0.232343 0.797537 0.611419 -0.086952 0.786515 0.805975 -0.07802 0.586786 0.901017 -0.198547 0.385677 0.912954 -0.073233 0.401437 0.587309 0.31693 0.74473 0.626298 0.112282 0.771455 0.807598 0.10215 0.580819 0.767563 0.296279 0.568389 0.905959 0.097128 0.412074 0.868972 0.273148 0.412646 0.369046 0.664292 0.650016 0.498279 0.502362 0.706648 0.692864 0.459155 0.555982 0.584348 0.597963 0.548615 0.813067 0.415121 0.408163 0.751114 0.515121 0.41289 0.19627 0.766932 0.610977 0.270011 0.7156 0.644213 0.477417 0.672112 0.565984 0.38089 0.730939 0.56626 0.665617 0.613839 0.424448 0.5601 0.712938 0.42191 -0.142237 0.892596 0.427833 -0.115435 0.801937 0.586149 -0.145778 0.823148 0.548795 -0.183731 0.901347 0.392196 -0.170598 0.892172 0.418242 -0.198923 0.94046 0.275618 -0.083913 0.784617 0.614276 -0.104776 0.836925 0.537195 -0.07128 0.762805 0.642687 -0.083732 0.95816 0.273711 -0.152017 0.963903 0.218593 -0.043758 0.995476 0.084341 0.11433 0.983142 0.142691 -0.188565 0.971095 0.146345 -0.153667 0.986837 0.050398 -0.277878 0.955105 0.102752 -0.278528 0.959779 0.035299 -0.266228 0.943946 0.195163 -0.494465 0.642119 0.585822 -0.123678 0.744163 0.656449 -0.094312 0.919596 0.381378 -0.521981 0.776809 0.352284 0.287464 0.72515 0.625717 0.35104 0.866307 0.355363 -0.085399 0.659129 0.747166 0.224013 0.689809 0.688464 -0.41145 0.564912 0.715251 -0.896437 0.304297 0.322186 -0.755967 0.475931 0.449448 -0.804069 0.52634 0.276477 -0.929837 0.307416 0.202235 -0.651421 0.428251 0.626301 -0.812838 0.261118 0.520685 -0.700828 0.14352 0.698743 -0.528973 0.340042 0.777534 -0.323564 0.505566 0.799819 -0.384671 0.217738 0.897005 -0.26768 0.410295 0.871783 -0.51729 -0.021456 0.855541 -0.703157 -0.1848 0.686599 -0.802326 -0.033833 0.595927 -0.877917 -0.14451 0.456484 -0.806047 -0.267053 0.528176 -0.89323 0.116397 0.434273 -0.92976 -0.00252 0.368157 -0.693473 -0.636086 0.338364 -0.705373 -0.68381 0.186692 -0.75587 -0.532488 0.380943 -0.796546 -0.566484 0.211211 -0.077417 -0.240522 0.967551 -0.089798 -0.134723 0.986806 -0.168487 -0.121841 0.978145 -0.138523 -0.221426 0.965289 -0.113525 -0.038943 0.992772 -0.195995 -0.017488 0.980449 -0.602195 -0.290799 0.743503 -0.742439 -0.374894 0.555193 -0.432918 -0.200289 0.878901 -0.818103 -0.413906 0.399236 -0.879805 -0.419705 0.22314 -0.8832 -0.285146 0.372357 -0.940384 -0.263381 0.215195 -0.205308 0.092751 0.974293 -0.12459 0.080228 0.988959 -0.122228 0.178941 0.976238 -0.196017 0.189929 0.962031 -0.04789 0.778827 0.625407 -0.065661 0.712179 0.698921 -0.086279 0.666075 0.740878 -0.054107 0.736647 0.674109 0.32735 0.918436 0.222077 0.038245 0.947019 0.318892 -0.067436 0.912058 0.404479 0.299059 0.868082 0.396229 0.020777 0.864061 0.502958 0.601008 0.74983 0.276665 0.10013 0.787789 0.607752 0.137884 0.80072 0.582954 0.293157 0.782715 0.549014 0.251535 0.793724 0.553834 0.033793 0.760625 0.648311 0.012829 0.792843 0.609291 -0.001462 0.805911 0.592035 0.470195 0.782277 0.408607 0.406592 0.824118 0.394351 -0.228092 0.919665 0.319673 -0.149194 0.877198 0.45636 0.221981 0.775644 0.590848 0.477153 0.718896 0.505483 0.642223 0.702693 0.306223 -0.941954 -0.151996 0.299365 -0.977272 -0.097629 0.18817 -0.969667 0.027366 0.242894 -0.984274 0.065087 0.16422 -0.081923 0.660823 0.746057 -0.143863 0.635643 0.75846 -0.950758 0.179022 0.253002 -0.969441 0.180582 0.166057 0.433741 0.791171 0.431182 0.286611 0.730746 0.619568 0.635928 0.49935 0.588427 0.410194 0.41588 0.811655 -0.030936 0.832088 0.553781 -0.063268 0.738092 0.671727 -0.236437 0.785277 0.572222 -0.098454 0.365739 0.925495 -0.356861 0.365039 0.859882 0.116456 0.704283 0.700303 0.160354 0.369389 0.915335 -0.380395 0.81813 0.431235 -0.491132 0.823545 0.283836 -0.59916 0.341103 0.724332 -0.798743 0.301719 0.520552 0.047573 -0.992573 0.111966 0.069354 -0.994739 0.075398 0.015592 -0.990695 0.135202 0.028503 -0.991144 0.129693 0.0864 -0.911356 0.402449 0.046371 -0.905885 0.420977 -0.018844 -0.991895 0.125654 -0.057065 -0.909815 0.411073 0.087743 -0.99576 0.027619 0.126144 -0.779499 0.613571 0.067151 -0.760559 0.645787 0.153713 -0.607983 0.778928 0.075394 -0.57677 0.81342 -0.085238 -0.760064 0.644234 -0.102578 -0.566247 0.817827 0.045094 -0.227711 0.972684 0.047131 -0.133922 0.98987 0.005657 -0.158915 0.987276 0.006376 -0.238835 0.971039 0.058631 -0.040878 0.997442 0.002975 -0.056704 0.998387 0.127635 -0.116289 0.98498 0.152279 -0.014755 0.988227 0.100619 -0.20516 0.973543 0.059288 0.068169 0.995911 -0.006745 0.055506 0.998436 0.05032 0.180626 0.982264 -0.021925 0.163036 0.986376 0.163736 0.099069 0.981517 0.156175 0.220652 0.962768 0.020684 0.317842 0.947918 -0.050294 0.316731 0.947181 -0.025411 0.533931 0.845146 -0.086911 0.5228 0.848014 0.127716 0.356862 0.925385 0.071441 0.516034 0.853584 -0.061054 0.766638 0.63917 0.078289 0.741306 0.666586 0.208508 0.671416 0.711144 0.313289 0.499706 0.807554 0.378689 0.310587 0.871855 0.400342 0.118619 0.908656 0.381543 -0.070384 0.921668 0.331083 -0.22771 0.915714 0.260306 -0.364971 0.893889 0.178111 -0.473128 0.862802 0.071351 -0.485088 0.87155 -0.127917 -0.411323 0.902469 -0.217134 -0.272275 0.9374 -0.28612 -0.114565 0.95132 -0.297833 0.014133 0.954513 -0.259212 0.153056 0.953616 -0.214461 0.319798 0.922895 -0.151901 0.528641 0.835144 -0.103669 0.295387 0.949736 -0.165776 0.313209 0.935104 -0.083675 0.492895 0.866056 -0.119834 0.470121 0.874429 -0.087588 0.774585 0.626376 -0.256922 -0.123444 0.958516 -0.282852 0.013185 0.959073 -0.378724 -0.276752 0.883163 -0.438423 -0.070607 0.895991 -0.437651 -0.063548 0.896897 -0.390678 -0.27619 0.878117 -0.251518 -0.431278 0.866451 -0.276371 -0.456203 0.845871 -0.19905 -0.303218 0.9319 -0.274611 0.135247 0.951996 -0.249887 0.293965 0.922573 -0.442099 0.099565 0.891423 -0.416837 0.295755 0.859521 -0.412837 0.32408 0.851198 -0.438351 0.113033 0.891668 0.156401 -0.497394 0.85331 0.061408 -0.535686 0.842181 0.119454 -0.452018 0.883974 0.032667 -0.468626 0.882793 0.050048 -0.559259 0.827481 0.150699 -0.524664 0.837865 0.208739 -0.361482 0.908713 0.238743 -0.413555 0.878621 0.232419 -0.391651 0.890276 -0.125806 -0.451337 0.883441 -0.128663 -0.465603 0.875591 -0.150994 -0.530967 0.833832 0.284031 -0.235212 0.929517 0.269401 -0.199777 0.942079 0.293517 -0.238502 0.925724 0.286186 -0.032306 0.957629 0.310905 -0.056264 0.948774 0.312743 -0.062252 0.947795 0.322676 0.120164 0.938851 0.286685 0.125421 0.94978 0.312932 0.123775 0.941676 0.279716 0.294166 0.913907 0.303905 0.313656 0.89959 0.309104 0.311381 0.898608 0.037576 0.808415 0.587412 0.169817 0.698638 0.69503 -0.000992 0.780213 0.625514 0.138259 0.681294 0.718834 0.161529 0.715447 0.679738 0.018778 0.826522 0.562592 -0.09996 0.801388 0.589733 -0.098648 0.85295 0.512587 -0.076807 0.814801 0.574631 0.262922 0.511395 0.818137 0.242579 0.49202 0.836105 0.262895 0.521513 0.811733 -0.185749 0.495789 0.848346 -0.322481 0.52883 0.785076 -0.160242 0.722224 0.672841 -0.146317 0.772841 0.617501 -0.312096 0.577251 0.754571 -0.076559 0.797941 0.597853 -0.071594 0.840171 0.537576 -0.107376 0.806238 0.581766 -0.112987 0.848782 0.51653 -0.287568 -0.01818 0.957588 -0.246849 -0.15606 0.956405 -0.173556 -0.290795 0.940913 -0.283237 0.22681 0.931844 -0.297529 0.100463 0.949412 0.014537 -0.330354 0.943745 0.072188 -0.329168 0.941508 0.150177 -0.268878 0.951394 -0.091484 -0.341365 0.935468 0.211928 -0.141481 0.96699 0.233591 -0.009434 0.972289 0.24083 0.120366 0.963075 0.233787 0.260424 0.936762 0.102888 0.613185 0.78321 -0.030399 0.694019 0.719314 -0.098708 0.675427 0.730791 0.204918 0.428836 0.879834 -0.132475 0.557408 0.819602 -0.232943 0.388015 0.89173 -0.075386 0.634728 0.769049 -0.09685 0.652599 0.751489 -0.092397 0.509504 0.855493 -0.081276 0.316551 0.945087 -0.068265 0.172012 0.982727 -0.054553 0.065325 0.996372 -0.043341 -0.055449 0.99752 -0.033383 -0.160096 0.986537 -0.028874 -0.24536 0.969002 -0.033304 -0.336054 0.941254 -0.042357 -0.467717 0.882863 -0.046567 -0.556118 0.829798 -0.037674 -0.519487 0.853647 -0.022566 -0.457423 0.888963 -0.012961 -0.556886 0.830488 -0.007732 -0.753873 0.656974 -0.003792 -0.90729 0.420489 -0.001149 -0.991208 0.132304 0.512335 -0.857386 0.049017 0.70555 -0.704425 0.077354 0.297092 -0.954566 0.023258 0.84286 -0.528889 0.09931 0.930258 -0.348816 0.113782 0.968103 -0.21837 0.122848 0.986591 -0.093131 0.134031 0.985676 0.081564 0.147617 0.95281 0.259757 0.157095 0.894834 0.417704 0.157465 0.844113 0.514896 0.149516 0.774064 0.618654 0.134508 0.673761 0.729252 0.119321 0.59429 0.795832 0.116061 0.5205 0.84585 0.116695 0.525074 0.841884 0.124616 0.765546 0.621669 0.16573 0.097097 -0.995263 0.004896 -0.565407 0.809464 0.158374 -0.611313 0.789337 0.056957 -0.920895 0.236324 0.310006 -0.979363 0.144989 0.140806 -0.738247 -0.362498 0.568846 -0.830423 -0.418752 0.367485 -0.844491 -0.498578 0.195588 -0.637358 -0.672695 0.37584 -0.668066 -0.709833 0.223216 -0.553902 -0.635855 0.537476 -0.346188 -0.291036 0.891881 -0.564224 -0.330618 0.756534 -0.436173 -0.617389 0.654663 -0.266348 -0.628612 0.730688 -0.097978 -0.251576 0.962865 -0.086895 -0.643915 0.760146 0.176816 -0.222898 0.958672 0.120695 -0.699248 0.704617 0.465192 -0.190422 0.864486 0.373032 -0.681742 0.629345 0.749171 -0.141411 0.647105 0.57208 -0.682024 0.455597 0.984143 0.023025 0.175875 0.738366 -0.656556 0.154109 -0.095635 0.76965 0.631263 -0.315057 -0.948903 0.017974 -0.110306 -0.993886 0.004918 -0.457702 -0.888528 0.032039 -0.589111 -0.807168 0.037792 0.510058 -0.858624 -0.051043 0.70623 -0.703125 -0.082786 0.294439 -0.955391 -0.023102 0.843862 -0.525198 -0.109834 0.928966 -0.346434 -0.130403 0.964683 -0.219414 -0.145751 0.981881 -0.104853 -0.157847 0.98501 0.058597 -0.162241 0.95819 0.238399 -0.158234 0.897823 0.414043 -0.149942 0.829346 0.538002 -0.150797 0.747675 0.644543 -0.159833 0.659153 0.734437 -0.161615 0.265044 0.963485 0.038059 0.039034 0.999086 0.017437 0.018622 0.997848 -0.062875 0.244836 0.962544 -0.116463 -0.130658 0.991351 0.012349 -0.138096 0.990164 -0.022449 -0.273293 0.96189 0.008822 -0.274255 0.961657 0.000421 -0.053579 0.998129 0.029453 -0.515915 0.855204 0.049583 0.344116 0.89883 -0.271457 -0.055876 0.956544 -0.286182 0.365283 0.930753 0.01632 -0.828131 0.557888 0.054409 -0.952772 0.299578 0.049783 -0.711727 -0.701459 0.037422 -0.905755 -0.418034 -0.069676 -0.8121 -0.578723 -0.074656 -0.818385 -0.573492 0.036778 -0.910268 -0.412077 0.040054 0.709552 0.701423 0.067393 0.515618 0.854187 0.067105 0.52626 0.835416 -0.158524 0.711562 0.67733 -0.186822 0.587221 0.793907 -0.157743 0.504751 0.849895 -0.151344 0.655685 0.754174 0.036026 0.627882 0.742251 -0.234154 -0.995755 -0.076042 0.051857 -0.966252 -0.253074 0.048064 -0.995208 0.084624 0.048994 -0.98245 0.180559 0.046801 0.500696 0.849415 -0.166726 0.699452 0.674292 -0.236847 -0.644888 0.764208 0.010314 -0.658085 0.75262 0.022063 -0.996997 0.052783 0.056672 -0.999004 0.031144 0.031952 0.095211 -0.995451 -0.003478 -0.828476 -0.551185 0.099113 -0.83354 -0.552229 0.015914 -0.680841 -0.722996 0.117184 -0.70438 -0.709823 0.000289 0.942473 0.130036 -0.307954 0.760792 -0.603232 -0.239387 -0.191598 -0.926128 -0.324926 -0.11404 -0.910397 -0.397707 -0.034523 -0.992382 -0.118262 -0.056307 -0.993628 -0.097639 -0.08229 -0.99447 -0.065257 -0.263919 -0.93806 -0.224478 -0.301453 -0.945273 -0.124839 -0.10268 -0.994176 -0.032728 -0.109842 -0.993816 -0.016268 -0.306215 -0.95011 -0.059356 0.319117 -0.647606 -0.691933 0.534285 -0.666968 -0.519319 0.385251 -0.83007 -0.403195 0.239592 -0.805165 -0.542499 0.228594 -0.939199 -0.256224 0.158278 -0.918607 -0.362089 -0.178484 -0.75672 -0.628902 -0.309497 -0.797477 -0.51792 -0.420841 -0.831771 -0.362009 -0.538657 -0.700909 -0.467519 -0.394197 -0.64598 -0.653696 -0.222745 -0.580396 -0.783278 -0.463953 -0.858375 -0.218951 -0.461429 -0.880375 -0.109649 -0.599801 -0.782405 -0.167575 -0.59309 -0.744341 -0.306921 0.280118 -0.952342 -0.120743 0.489162 -0.845976 -0.212238 0.674722 -0.67782 -0.292079 0.467443 -0.364911 -0.805194 0.712309 -0.345361 -0.611018 0.641575 -0.494023 -0.586791 0.39121 -0.489528 -0.779305 -0.257887 -0.431057 -0.864687 -0.450347 -0.520374 -0.725533 -0.610796 -0.588414 -0.529809 -0.665056 -0.488467 -0.56489 -0.505193 -0.408993 -0.759938 -0.312897 -0.314982 -0.896037 0.796286 -0.495922 -0.346396 0.865739 -0.328626 -0.377493 0.760432 -0.204661 -0.616326 0.545204 -0.224716 -0.807623 0.593644 -0.079984 -0.800743 0.783915 -0.086134 -0.614865 0.896384 -0.199742 -0.395726 0.906271 -0.095045 -0.411874 0.551478 0.253954 -0.794594 0.749758 0.226635 -0.62169 0.783116 0.056593 -0.619295 0.5969 0.085909 -0.797703 0.90526 0.04554 -0.42241 0.880719 0.218398 -0.420282 0.336343 0.599609 -0.726183 0.572035 0.582293 -0.577677 0.679985 0.408785 -0.6087 0.461982 0.425407 -0.778204 0.822759 0.398489 -0.405308 0.73865 0.550111 -0.389581 0.158279 0.713924 -0.6821 0.37644 0.723509 -0.578643 0.467127 0.676077 -0.569835 0.228363 0.685665 -0.691168 0.648361 0.657528 -0.383777 0.564637 0.73282 -0.379684 -0.132948 0.895471 -0.424801 -0.16783 0.911023 -0.376656 -0.12755 0.841928 -0.524298 -0.095044 0.810733 -0.577649 -0.191234 0.937857 -0.289574 -0.161097 0.88789 -0.430929 -0.099619 0.831047 -0.547207 -0.068866 0.782563 -0.618751 -0.042804 0.75673 -0.652324 -0.106611 0.95728 -0.268792 0.061832 0.967519 -0.24512 -0.090989 0.984179 -0.152028 -0.171442 0.958937 -0.225938 -0.170146 0.982001 -0.081999 -0.195635 0.967138 -0.16239 -0.282706 0.95847 -0.037576 -0.282545 0.952356 -0.114834 -0.262642 0.936921 -0.230646 -0.457702 0.605028 -0.651498 -0.494691 0.715297 -0.493589 -0.076223 0.822259 -0.563986 -0.087936 0.702019 -0.706709 0.319664 0.765998 -0.557729 0.294833 0.694844 -0.655946 0.224172 0.682804 -0.695361 -0.063717 0.649517 -0.757673 -0.387084 0.558006 -0.734027 -0.896043 0.261582 -0.358722 -0.944002 0.274393 -0.183216 -0.810194 0.488173 -0.324457 -0.742944 0.435424 -0.508371 -0.645648 0.412332 -0.642745 -0.811086 0.243382 -0.531887 -0.699157 0.136155 -0.701885 -0.530892 0.331786 -0.77979 -0.30426 0.511436 -0.803654 -0.248492 0.408629 -0.878222 -0.387347 0.198969 -0.900208 -0.511763 -0.033699 -0.858465 -0.688173 -0.178311 -0.703294 -0.790784 -0.260454 -0.553917 -0.872048 -0.112083 -0.476413 -0.794394 -0.013341 -0.607256 -0.920109 0.042291 -0.389372 -0.884532 0.127633 -0.44868 -0.676964 -0.636735 -0.369174 -0.702442 -0.678564 -0.214769 -0.78028 -0.57775 -0.239514 -0.733839 -0.540713 -0.41123 -0.092147 -0.181509 -0.979062 -0.144369 -0.166467 -0.975421 -0.159435 -0.079334 -0.984015 -0.094565 -0.065989 -0.993329 -0.168501 -0.000101 -0.985701 -0.104493 0.01153 -0.994459 -0.726284 -0.369697 -0.579514 -0.588438 -0.292192 -0.753899 -0.407291 -0.20071 -0.890971 -0.869486 -0.42871 -0.245363 -0.799739 -0.41079 -0.4378 -0.938755 -0.260153 -0.225963 -0.869609 -0.274794 -0.410206 -0.170534 0.079532 -0.982137 -0.161151 0.169743 -0.972223 -0.090409 0.181448 -0.979236 -0.10396 0.092065 -0.990311 -0.061474 0.779505 -0.623373 -0.054952 0.743789 -0.666152 -0.103099 0.66864 -0.736404 -0.089248 0.714186 -0.694242 0.313646 0.879357 -0.358269 0.027421 0.941997 -0.334499 -0.080622 0.891857 -0.445073 0.022338 0.831019 -0.555795 0.289168 0.850636 -0.43909 0.556005 0.699289 -0.449281 0.050624 0.773712 -0.631511 0.231632 0.808083 -0.541616 0.288863 0.771715 -0.566581 0.103245 0.744807 -0.659244 0.031939 0.724546 -0.688486 0.003268 0.749951 -0.661485 -0.026171 0.792703 -0.609046 0.482137 0.794981 -0.36817 0.398207 0.851469 -0.34122 -0.221077 0.901734 -0.371484 -0.143622 0.850839 -0.505417 0.234374 0.743588 -0.626216 0.46128 0.703836 -0.540218 0.562017 0.649813 -0.511741 -0.977474 -0.09123 -0.19032 -0.936551 -0.12725 -0.326619 -0.984003 0.070682 -0.163533 -0.961337 0.050417 -0.270718 -0.12138 0.620783 -0.774529 -0.05521 0.647511 -0.760053 -0.944461 0.162933 -0.285388 -0.972855 0.171501 -0.15537 0.237565 0.800499 -0.55024 0.395586 0.847721 -0.353385 0.35269 0.570432 -0.741766 0.568049 0.652016 -0.502191 -0.054488 0.806873 -0.588206 -0.221404 0.774347 -0.592762 -0.082141 0.728443 -0.680164 -0.34248 0.449493 -0.825023 -0.1184 0.432945 -0.893611 0.102358 0.477975 -0.872389 0.062161 0.735187 -0.675008 -0.351621 0.822971 -0.446186 -0.453177 0.839825 -0.298872 -0.753559 0.408132 -0.515341 -0.56556 0.457673 -0.686059 0.070662 -0.994095 -0.082354 0.053046 -0.991548 -0.1184 0.013209 -0.990078 -0.139895 0.042006 -0.899343 -0.435221 0.096965 -0.90473 -0.414802 0.032991 -0.99044 -0.133938 -0.056118 -0.897897 -0.436614 -0.016738 -0.990736 -0.134764 0.086464 -0.995644 -0.034877 0.061043 -0.750045 -0.658564 0.137198 -0.774505 -0.61751 0.069229 -0.578014 -0.813085 0.165722 -0.607498 -0.776841 -0.08926 -0.735213 -0.671934 -0.114239 -0.544747 -0.830783 0.019911 -0.230638 -0.972836 -0.030593 -0.214954 -0.976145 -0.045955 -0.097756 -0.994149 0.002659 -0.095509 -0.995425 -0.052141 0.011297 -0.998576 0.002127 0.01818 -0.999832 0.120697 0.01473 -0.99258 0.113372 -0.110702 -0.987366 0.096736 -0.223211 -0.969958 -0.055442 0.119889 -0.991238 -0.003618 0.136061 -0.990694 -0.057352 0.236947 -0.969828 -0.01353 0.263616 -0.964533 0.087309 0.294367 -0.951696 0.113304 0.153076 -0.981697 -0.061332 0.359879 -0.930981 -0.028754 0.371752 -0.927887 -0.069217 0.479884 -0.874597 -0.04309 0.485197 -0.873342 0.017067 0.479437 -0.87741 0.052641 0.398131 -0.915817 -0.034654 0.760876 -0.647972 0.07156 0.732098 -0.67743 0.191934 0.634425 -0.748777 0.303753 0.458556 -0.835141 0.384402 0.282027 -0.879031 0.419845 0.110042 -0.9009 0.406427 -0.062856 -0.911518 0.353955 -0.220425 -0.908916 0.281504 -0.354287 -0.89176 0.067511 -0.500136 -0.863311 0.193668 -0.469971 -0.861174 -0.14958 -0.414815 -0.897527 -0.228363 -0.298833 -0.926579 -0.288297 -0.161724 -0.943785 -0.298702 -0.022525 -0.954081 -0.190826 0.301532 -0.934165 -0.246409 0.126265 -0.960906 -0.15017 0.520238 -0.840715 -0.129702 0.309072 -0.942153 -0.066417 0.305119 -0.949995 -0.055085 0.462192 -0.885067 -0.090042 0.449004 -0.888981 -0.071733 0.766958 -0.637675 -0.283007 -0.028509 -0.958694 -0.281863 -0.191917 -0.940065 -0.351312 -0.084797 -0.932411 -0.309888 -0.241843 -0.919501 -0.329877 -0.256795 -0.908426 -0.371873 -0.083592 -0.924512 -0.244245 -0.370528 -0.896133 -0.261882 -0.399787 -0.878401 -0.239012 -0.350966 -0.905371 -0.228514 0.26963 -0.935457 -0.253264 0.114721 -0.960571 -0.387754 0.261515 -0.883887 -0.38213 0.068912 -0.921536 -0.395833 0.087229 -0.914171 -0.400411 0.295266 -0.867461 0.059717 -0.537384 -0.841221 0.170799 -0.490618 -0.854471 0.023673 -0.491984 -0.870282 0.138029 -0.482666 -0.864859 0.172547 -0.546798 -0.819292 0.048051 -0.585369 -0.809342 0.24535 -0.391127 -0.88703 0.271557 -0.425603 -0.863203 0.253362 -0.383231 -0.888224 -0.16392 -0.464478 -0.870282 -0.156074 -0.43633 -0.886147 -0.174103 -0.495914 -0.85074 0.311338 -0.234144 -0.921002 0.314452 -0.22765 -0.921573 0.331844 -0.253055 -0.908759 0.334948 -0.047443 -0.941041 0.358791 -0.06942 -0.930833 0.352034 -0.064094 -0.93379 0.370008 0.120956 -0.921121 0.325861 0.13785 -0.935314 0.365501 0.126808 -0.922133 0.293842 0.331419 -0.896559 0.345775 0.339247 -0.874843 0.349666 0.318511 -0.88107 0.181191 0.722006 -0.667741 0.050427 0.826013 -0.561391 0.124911 0.682336 -0.720288 -8.3e-005 0.771418 -0.636329 0.029371 0.862647 -0.504953 0.172441 0.753171 -0.634821 -0.088449 0.796983 -0.597491 -0.084759 0.878493 -0.470177 -0.056365 0.816918 -0.573992 0.28721 0.527283 -0.799677 0.229314 0.522426 -0.821271 0.28443 0.557632 -0.779838 -0.184783 0.47937 -0.857939 -0.159072 0.705689 -0.690434 -0.306838 0.513915 -0.801088 -0.313651 0.56677 -0.761837 -0.157757 0.765176 -0.624195 -0.073978 0.778021 -0.623867 -0.070331 0.835642 -0.544753 -0.087799 0.795672 -0.599331 -0.090591 0.859197 -0.503561 -0.232887 -0.144487 -0.961711 -0.244705 -0.029472 -0.96915 -0.189644 -0.261806 -0.946305 -0.251478 0.075314 -0.964928 -0.245154 0.195506 -0.949567 0.069738 -0.345456 -0.93584 -0.006898 -0.32309 -0.946343 0.169707 -0.300933 -0.938424 -0.116208 -0.315517 -0.941778 0.239122 -0.166926 -0.956533 0.255866 -0.011563 -0.966643 0.242809 0.152646 -0.957989 0.202267 0.315072 -0.927264 -0.032641 0.607102 -0.793953 0.060458 0.564272 -0.823372 -0.076278 0.598808 -0.797252 0.144831 0.45396 -0.879173 -0.202967 0.364176 -0.908945 -0.116061 0.523868 -0.843856 -0.061288 0.585836 -0.808109 -0.069247 0.590821 -0.803825 -0.06147 0.471147 -0.87991 -0.062087 0.339494 -0.938557 -0.069753 0.213116 -0.974534 -0.075711 0.106988 -0.991373 -0.074759 0.010224 -0.997149 -0.065915 -0.084862 -0.99421 -0.056359 -0.195476 -0.979088 -0.058264 -0.312594 -0.948098 -0.069962 -0.465689 -0.882179 -0.071195 -0.557949 -0.826815 -0.045754 -0.47841 -0.876944 -0.060646 -0.52652 -0.847997 -0.029989 -0.553187 -0.832517 -0.018388 -0.737572 -0.675018 -0.009087 -0.897441 -0.441041 -0.00158 -0.989993 -0.141109 -0.308322 -0.951065 -0.020322 -0.110713 -0.99381 -0.009215 -0.455221 -0.889796 -0.032191 -0.596471 -0.800898 -0.052761 -0.511407 0.823202 -0.246578 -0.952243 0.291325 -0.09145 -0.828387 0.538442 -0.154449 -0.712918 -0.697663 -0.070811 -0.964192 -0.256036 -0.069136 -0.99426 -0.077609 -0.073642 -0.993521 0.085088 -0.075342 -0.980403 0.180699 -0.07847 -0.618484 0.785248 -0.029371 -0.985065 0.143698 -0.094851 -0.540296 0.826158 -0.159823 -0.899944 0.302263 -0.314224 -0.858864 -0.489238 -0.15165 -0.711588 -0.680949 -0.173063 -0.767866 -0.270651 -0.580629 -0.848883 -0.383401 -0.36387 -0.671939 -0.656576 -0.342645 -0.602072 -0.614193 -0.510173 -0.382168 -0.137855 -0.913752 -0.607476 -0.181274 -0.773377 -0.492091 -0.563373 -0.66367 -0.327921 -0.53701 -0.777231 -0.13782 -0.132667 -0.981532 -0.138241 -0.548212 -0.824835 0.069946 -0.573914 -0.815923 0.11889 -0.117351 -0.985948 0.269629 -0.627654 -0.730309 0.418909 -0.085153 -0.904027 0.751138 0.018205 -0.659894 0.495888 -0.698066 -0.516526 -0.95931 0.034968 0.280182 -0.952229 0.032635 0.303636 -0.93144 0.167086 0.323268 -0.946666 0.171861 0.272557 -0.944846 0.025037 0.326557 -0.91551 0.150958 0.372899 -0.937578 0.012119 0.347564 -0.899986 0.12397 0.417919 -0.930687 -0.005661 0.365772 -0.885622 0.08696 0.456193 -0.924746 -0.02703 0.379623 -0.873384 0.042333 0.485189 -0.919713 -0.051956 0.389139 -0.863691 -0.010116 0.503919 -0.915891 -0.078133 0.39375 -0.857075 -0.064545 0.511132 -0.913924 -0.104134 0.392301 -0.854193 -0.116994 0.506623 -0.913686 -0.130204 0.385001 -0.854276 -0.170718 0.490986 -0.915221 -0.154787 0.372036 -0.856986 -0.224754 0.463745 -0.918574 -0.175545 0.354127 -0.862661 -0.271395 0.426803 -0.924357 -0.190998 0.330279 -0.874699 -0.302741 0.378484 -0.93489 -0.202027 0.291831 -0.900162 -0.32556 0.289342 -0.890596 -0.319641 0.323525 -0.930807 -0.199874 0.306022 -0.896 0.289458 0.336747 -0.918721 0.296141 0.261252 -0.872107 0.26593 0.410745 -0.848724 0.226438 0.477905 -0.827137 0.172709 0.534805 -0.80861 0.10747 0.578446 -0.794368 0.032855 0.606547 -0.785336 -0.046853 0.617294 -0.781515 -0.12666 0.610894 -0.781913 -0.208771 0.58739 -0.785856 -0.293485 0.544332 -0.793937 -0.361184 0.489091 -0.811021 -0.403504 0.423592 -0.835242 -0.430573 0.342022 -0.847345 0.403795 0.3449 -0.876998 0.412515 0.246384 -0.816114 0.373023 0.441375 -0.785473 0.321444 0.528872 -0.757102 0.251755 0.60284 -0.732492 0.167285 0.659903 -0.71285 0.071993 0.697612 -0.699448 -0.030237 0.714044 -0.693366 -0.135002 0.707826 -0.694705 -0.244186 0.676579 -0.700161 -0.36004 0.616559 -0.706167 -0.453566 0.543697 -0.723583 -0.510419 0.464651 -0.757493 -0.546167 0.357639 -0.786239 0.510828 0.347683 -0.822283 0.521471 0.227858 -0.748188 0.473296 0.464978 -0.710816 0.41044 0.571208 -0.676265 0.32557 0.66081 -0.646313 0.222825 0.729815 -0.622397 0.107069 0.775344 -0.605751 -0.016281 0.795488 -0.597541 -0.142104 0.789146 -0.599072 -0.273389 0.752576 -0.605625 -0.422009 0.67463 -0.607323 -0.542234 0.580639 -0.62045 -0.60942 0.493609 -0.663091 -0.648882 0.373178 -0.713977 0.609147 0.34522 -0.755821 0.6215 0.206088 -0.669772 0.565403 0.481378 -0.626414 0.492206 0.604433 -0.58635 0.393512 0.708055 -0.551603 0.274208 0.787746 -0.523909 0.140003 0.84019 -0.504656 -0.002861 0.863316 -0.494725 -0.148092 0.856339 -0.496885 -0.296649 0.81554 -0.511217 -0.470298 0.719359 -0.523448 -0.603062 0.601929 -0.54514 -0.6692 0.504969 -0.589688 -0.712391 0.380483 -0.632092 0.697412 0.337752 -0.679083 0.71125 0.181575 -0.582478 0.648166 0.490511 -0.533908 0.565768 0.62837 -0.489063 0.454778 0.744308 -0.450216 0.320826 0.833293 -0.419311 0.170384 0.891711 -0.397828 0.010371 0.917402 -0.386738 -0.152189 0.909545 -0.388906 -0.314579 0.865905 -0.416834 -0.497637 0.760662 -0.460989 -0.625959 0.629018 -0.542107 0.774681 0.32556 -0.593506 0.78981 0.15476 -0.487909 0.720672 0.492521 -0.434921 0.630341 0.64305 -0.3861 0.508756 0.769476 -0.343913 0.362223 0.866325 -0.310381 0.197869 0.929791 -0.287052 0.023243 0.957633 -0.274984 -0.154056 0.949026 -0.274153 -0.330443 0.903132 -0.301736 -0.514601 0.802584 -0.360883 -0.638403 0.679857 -0.445437 0.840329 0.308923 -0.50045 0.856542 0.126038 -0.387543 0.782319 0.487634 -0.331043 0.685354 0.648614 -0.279115 0.554987 0.783636 -0.234323 0.398047 0.886934 -0.198766 0.222238 0.954517 -0.174032 0.035606 0.984096 -0.161146 -0.153806 0.974872 -0.161623 -0.341915 0.925728 -0.183322 -0.527132 0.829774 -0.220903 -0.657095 0.720714 -0.343523 0.893833 0.288192 -0.401399 0.910874 0.095845 -0.282773 0.832684 0.476106 -0.223681 0.730476 0.645269 -0.169508 0.593188 0.787016 -0.122852 0.428085 0.895349 -0.085869 0.24334 0.966133 -0.060478 0.047525 0.997037 -0.048298 -0.151042 0.987347 -0.051169 -0.346801 0.936542 -0.071334 -0.536879 0.840638 -0.087789 -0.68823 0.720162 -0.21986 0.940431 0.259327 -0.28005 0.958152 0.059303 -0.156918 0.876718 0.454689 -0.095926 0.770248 0.630489 -0.040164 0.627316 0.777728 0.007734 0.455603 0.890149 0.046891 0.262808 0.963708 0.076503 0.059129 0.995315 0.087975 -0.141662 0.985998 0.082632 -0.346525 0.934394 0.066735 -0.543112 0.837004 0.044893 -0.70688 0.705907 -0.074449 0.972485 0.220751 -0.13589 0.990587 0.016451 -0.0105 0.907325 0.420298 0.052421 0.798072 0.600278 0.112271 0.651463 0.750327 0.17284 0.475296 0.862682 0.224622 0.286559 0.931359 0.237263 0.088989 0.967361 0.218281 -0.113 0.969322 0.208533 -0.342413 0.916116 0.208343 -0.548433 0.809824 0.177566 -0.726111 0.664254 0.072457 0.981536 0.17702 0.011184 0.999581 -0.026697 0.13045 0.91774 0.375149 0.17379 0.810665 0.559124 0.202259 0.677497 0.70717 0.281823 0.466274 0.838549 0.389486 0.279956 0.877454 0.38011 0.146887 0.913204 0.357385 -0.040932 0.93306 0.345941 -0.321259 0.881543 0.34413 -0.559385 0.754098 0.331752 -0.740685 0.584232 0.196145 0.971318 0.134422 0.140044 0.988072 -0.064045 0.22226 0.915547 0.335221 0.215212 0.826522 0.520139 0.485045 0.203691 0.850436 0.549186 0.085396 0.831326 0.51886 -0.274121 0.809717 0.494351 -0.559544 0.665228 0.486216 -0.716967 0.499552 0.288962 0.953069 0.090338 0.249176 0.963756 -0.09532 0.279421 0.910567 0.304618 0.388152 0.921065 0.031265 0.355698 0.926134 -0.125519 0.404067 0.903782 0.141097 0.68549 -0.217008 0.69499 0.702569 0.095581 0.705167 0.629523 -0.529053 0.569037 0.593718 -0.693079 0.408828 0.496683 0.867503 -0.027267 0.458279 0.875316 -0.154276 0.528047 0.848543 0.03378 0.806768 -0.152023 0.570977 0.808457 0.086821 0.582116 0.751952 -0.463847 0.468417 0.679141 -0.659907 0.321388 0.597185 0.799146 -0.068811 0.555473 0.811556 -0.181181 0.641605 0.76683 -0.017718 0.890943 -0.106367 0.441483 0.8665 0.068021 0.494522 0.874776 -0.373384 0.30879 0.812876 -0.546789 0.200637 0.713003 0.692155 -0.112017 0.675208 0.706006 -0.213658 0.760001 0.64795 -0.050575 0.881663 0.086627 0.463859 0.915057 -0.143088 0.377089 0.91943 -0.337729 0.201463 0.893271 -0.433495 0.118948 0.740476 -0.66906 0.063675 0.859379 -0.511092 0.015908 0.647012 -0.745143 -0.161672 0.622061 -0.770384 0.139818 0.519697 -0.840964 -0.150645 0.82048 0.555122 -0.136569 0.782459 0.574043 -0.241314 0.857424 0.511442 -0.057009 0.806681 0.536729 -0.247364 0.862468 0.496193 -0.099707 0.878972 0.473396 -0.057475 0.818208 0.516312 -0.252897 -0.95504 -0.087036 0.283414 0.458007 0.336509 0.822795 0.548647 0.436829 0.712858 0.498793 0.508214 0.702085 0.40895 0.438856 0.800103 0.458788 0.419381 0.783347 0.488579 0.295919 0.820806 0.338496 0.547557 0.765246 0.40128 0.540787 0.739273 0.447903 0.573978 0.685516 0.572577 0.090453 0.814846 0.659971 0.242585 0.711049 0.600793 0.356629 0.715446 0.507798 0.222804 0.832165 0.525407 0.175386 0.832579 0.592642 0.076696 0.801806 0.696495 -0.160757 0.699323 0.747071 -0.060562 0.66198 0.716368 0.089686 0.691935 0.643654 -0.044528 0.76402 0.679875 -0.004061 0.733317 0.751902 -0.071444 0.655392 0.836517 -0.293072 0.462977 0.828132 -0.230473 0.510959 0.762807 -0.199352 0.61513 0.753672 -0.259258 0.603957 0.803598 -0.130297 0.580735 0.857252 -0.175255 0.484153 0.916775 -0.199713 0.345889 0.913851 -0.163134 0.371839 0.958882 -0.051876 0.279022 0.954667 -0.015331 0.297282 0.878559 0.023718 0.477045 0.887732 -0.142315 0.437811 0.881622 0.374121 0.287709 0.786275 0.361357 0.501191 0.845764 0.203036 0.493417 0.938392 0.191581 0.287606 0.964699 0.141352 0.222208 0.919874 0.344658 0.187198 0.735833 0.601185 0.31165 0.66518 0.53777 0.518014 0.724119 0.464664 0.509645 0.811286 0.503396 0.297333 0.847399 0.503007 0.169996 0.757311 0.630422 0.170435 0.55095 0.766953 0.328993 0.550236 0.662384 0.508417 0.604139 0.603421 0.520479 0.650213 0.6874 0.32358 0.647232 0.739853 0.183595 0.52066 0.823219 0.226328 0.232539 0.84106 0.48841 0.333081 0.772484 0.540672 0.4542 0.75815 0.467879 0.390892 0.846896 0.360515 0.372475 0.869089 0.325495 0.285053 0.827495 0.483733 0.339781 0.673393 0.656575 0.238562 0.704887 0.668 0.320797 0.691569 0.647164 0.829927 0.324203 0.453996 0.78816 0.413058 0.456275 0.818961 0.437724 0.37108 0.868606 0.367447 0.332424 0.594766 0.761672 -0.257117 0.732865 0.586033 -0.345649 0.753901 0.533838 0.38295 0.862991 0.204761 0.461865 0.867214 0.193679 0.458725 0.940858 -0.000486 0.3388 0.908483 -0.022324 0.417326 0.966409 -0.169051 -0.193584 0.923393 -0.383468 0.01723 0.951149 0.102662 0.291162 0.867316 0.198019 0.456675 0.856872 0.261318 0.444391 0.920131 0.262219 0.290862 0.845974 0.375555 -0.378531 0.934245 0.115443 -0.337429 0.724297 0.540152 0.42852 0.705159 0.593618 0.387773 0.719293 0.595991 0.356949 0.405662 0.913937 -0.012545 0.486535 0.862055 -0.141935 0.71787 0.605721 0.343167 0.730039 0.584407 0.354276 0.725686 0.562032 0.396862 0.693853 0.591752 0.410363 0.217331 0.868422 0.445659 0.312452 0.932842 0.179389 0.629841 0.545507 0.552922 0.214362 0.527633 0.821981 0.173015 0.7023 0.690536 0.57713 0.459556 0.675077 0.602476 0.389152 0.696838 0.688167 0.493994 0.531411 0.689409 0.382203 0.615335 0.751692 0.33439 0.568456 0.797599 0.361585 0.482797 0.671211 0.364963 0.645196 0.411128 0.319273 0.853838 0.313319 0.402291 0.860228 0.718031 0.380064 0.58308 0.802641 0.402836 0.439876 0.786668 0.41629 0.455912 0.7261 0.396288 0.561903 0.493842 0.121551 0.861014 0.469657 0.240907 0.849345 0.710366 0.36318 0.602894 0.767343 0.380847 0.515888 0.773688 0.31236 0.551215 0.718919 0.257235 0.645744 0.615801 -0.251493 0.746687 0.530844 -0.044491 0.846301 0.775459 0.113009 0.621203 0.81328 0.246247 0.527199 0.846491 0.212923 0.487972 0.849483 0.012404 0.52747 0.842402 -0.47405 0.256193 0.735809 -0.426295 0.526173 0.762121 0.060604 0.644592 0.762121 0.060604 0.644592 0.670388 0.105094 0.734531 0.670388 0.105094 0.734531 0.53593 0.35712 0.765013 0.53593 0.35712 0.765013 0.519593 0.470857 0.712963 0.519593 0.470857 0.712963 0.592721 0.147272 0.791829 0.592721 0.147272 0.791829 0.539402 0.227876 0.810628 0.539402 0.227876 0.810628 0.838046 -0.041961 0.543984 0.838046 -0.041961 0.543984 0.805134 0.024108 0.592603 0.805134 0.024108 0.592603 0.458987 0.56981 0.681651 0.458987 0.56981 0.681651 0.36131 0.737053 0.571146 0.36131 0.737053 0.571146 0.930114 -0.106536 0.351481 0.930114 -0.106536 0.351481 0.880661 -0.11099 0.460561 0.880661 -0.11099 0.460561 0.320732 0.857422 0.402441 0.320732 0.857422 0.402441 0.44726 0.859353 0.247932 0.44726 0.859353 0.247932 0.95182 0.231775 0.200795 0.95182 0.231775 0.200795 0.964167 0.021103 0.264456 0.964167 0.021103 0.264456 0.579093 0.8006 0.153919 0.579093 0.8006 0.153919 0.697437 0.705567 0.12553 0.697437 0.705567 0.12553 0.814036 0.566095 0.129927 0.814036 0.566095 0.129927 0.890074 0.43096 0.148464 0.890074 0.43096 0.148464 0.029208 0.881474 -0.471328 0.029208 0.881474 -0.471328 0.096449 0.728365 -0.678368 0.096449 0.728365 -0.678368 0.4685 0.04873 -0.882118 0.4685 0.04873 -0.882118 0.638087 -0.253445 -0.727056 0.638087 -0.253445 -0.727056 0.178322 0.511529 -0.840559 0.178322 0.511529 -0.840559 0.316697 0.307225 -0.897394 0.316697 0.307225 -0.897394 -0.229597 0.97301 0.023188 -0.229597 0.97301 0.023188 -0.099111 0.961282 -0.257125 -0.099111 0.961282 -0.257125 0.690989 -0.552351 -0.466307 0.690989 -0.552351 -0.466307 0.614728 -0.774975 -0.146708 0.614728 -0.774975 -0.146708 -0.213285 0.674612 0.706689 -0.213285 0.674612 0.706689 -0.277125 0.880387 0.384865 -0.277125 0.880387 0.384865 0.522099 -0.831492 0.189823 0.522099 -0.831492 0.189823 0.41303 -0.701304 0.581016 0.41303 -0.701304 0.581016 0.016451 0.304495 0.952372 0.016451 0.304495 0.952372 -0.102423 0.482133 0.87009 -0.102423 0.482133 0.87009 0.321342 -0.449506 0.833477 0.321342 -0.449506 0.833477 0.240502 -0.251619 0.937468 0.240502 -0.251619 0.937468 0.177609 -0.048219 0.982919 0.177609 -0.048219 0.982919 0.113264 0.143803 0.983103 0.113264 0.143803 0.983103 0.856752 0.237426 0.457827 0.923385 0.210649 0.320917 0.807841 0.342573 0.479622 0.926355 0.306361 0.219111 0.893024 0.401372 0.203491 0.707489 0.350542 0.613661 0.690028 0.404138 0.600445 0.701459 0.296818 0.647962 0.79174 0.518629 0.322757 0.756722 0.567339 0.324806 0.829456 0.472735 0.297531 0.598529 0.538416 0.593188 0.611969 0.432342 0.662249 0.636119 0.597396 0.488334 0.661695 0.3349 0.670821 0.723255 0.374582 0.580165 0.790325 0.34767 0.504491 0.811959 0.371822 0.449969 0.863778 0.442517 0.24097 0.701135 0.600411 0.384599 0.932766 0.160597 0.322732 0.970845 0.170441 0.168552 0.883636 0.175716 0.433947 0.958137 0.275993 0.076165 0.918477 0.391142 0.058382 0.596042 0.268924 0.756581 0.631692 0.23949 0.737299 0.526233 0.296752 0.79688 0.713347 0.696389 0.078601 0.607873 0.785114 0.118686 0.815341 0.574919 0.068466 0.317442 0.747572 0.583409 0.328784 0.607429 0.72314 0.382484 0.824581 0.416859 0.421264 0.422347 0.802596 0.694449 0.183029 0.695875 0.790988 0.142639 0.594973 0.851498 0.154648 0.501034 0.88206 0.467139 0.061249 0.494106 0.834447 0.244044 0.898388 0.239427 0.368203 0.928433 0.290662 0.231361 0.927907 0.362185 0.088373 0.90613 0.422899 -0.009252 0.502343 -0.531378 -0.68212 0.481433 0.034979 -0.875785 0.821621 0.007587 -0.569984 0.601173 0.059321 -0.796914 0.288385 0.93379 -0.211824 0.988457 0.045901 -0.144378 0.606647 0.786641 -0.114787 0.631147 0.75431 -0.180748 0.972584 0.01879 -0.231792 0.50542 0.85821 -0.089584 0.979429 0.125423 -0.158074 0.681238 -0.704485 -0.199036 0.649817 -0.670326 -0.358331 0.486326 -0.865845 -0.117473 0.446328 -0.866561 -0.223303 0.749936 -0.639396 -0.169616 0.164446 0.814374 0.556554 0.230868 0.7458 0.624886 0.513037 0.656869 0.552553 0.434017 0.729299 0.528916 0.753221 0.48407 0.445347 0.753221 0.48407 0.445347 0.124146 -0.973254 0.193296 0.136691 -0.979344 0.149 0.136691 -0.979344 0.149 0.184839 -0.973906 0.131688 0.16227 -0.986484 -0.022769 0.212195 -0.968006 0.133929 0.212195 -0.968006 0.133929 0.404326 0.749489 0.524201 0.579587 0.654669 0.485269 0.579587 0.654669 0.485269 0.267339 0.835446 0.480167 0.245983 0.889628 0.38478 0.267339 0.835446 0.480167 0.316456 0.757992 0.570354 0.349573 0.870764 0.345787 0.299173 0.736411 0.60679 0.210334 0.763548 0.610536 0.173912 0.765408 0.619601 0.197207 0.7873 0.584182 0.208134 0.150701 0.966421 0.45413 0.145812 0.878922 0.34138 0.606573 0.718004 0.193961 0.656473 0.728987 0.702212 0.014831 0.711813 0.629702 0.408791 0.660579 0.464374 -0.299888 0.833321 0.195845 -0.470873 0.860188 0.247334 -0.957018 0.151467 0.40013 -0.846054 0.352263 0.156142 -0.842984 0.51478 0.487382 -0.796965 0.356799 0.24234 -0.955279 0.169453 0.220077 -0.968074 0.119991 0.144759 -0.978459 0.147185 0.183204 -0.982603 -0.03045 0.067622 -0.997704 0.003667 0.333609 0.885237 0.324131 0.26257 0.786829 0.558531 0.249027 0.818022 0.518484 0.310909 0.905688 0.288211 0.981618 -0.064667 0.179569 0.953472 -0.110057 0.280676 0.829047 -0.397145 0.393645 0.92859 0.156172 0.336647 0.777747 -0.421784 0.466056 0.769156 -0.579058 0.270354 0.995933 0.044395 0.078399 0.452986 -0.772336 0.445309 0.25562 -0.911562 0.322045 0.985612 -0.013881 -0.168452 0.7241 -0.689125 0.028032 0.669094 -0.721471 -0.178308 0.959852 -0.03757 -0.277979 0.142983 -0.970854 0.192352 0.080246 -0.996775 0.00032 0.399717 0.880195 0.255896 0.376418 0.74386 0.552252 0.932941 0.251988 0.257146 0.923519 0.376658 0.072404 0.341071 0.563945 0.752088 0.901143 0.06264 0.428972 0.473307 -0.704975 -0.528197 0.53861 0.034196 -0.841861 0.284747 -0.650038 -0.704536 0.28859 -0.717857 -0.633559 0.66476 -0.69131 -0.283167 0.687122 0.601648 -0.407288 0.19454 0.943367 -0.268726 0.142669 0.967481 -0.20887 0.158097 0.977372 -0.140534 0.267227 0.956959 -0.113221 0.206618 0.964826 -0.16254 0.111176 0.975912 -0.187714 0.29006 0.951394 -0.103509 0.197728 0.977642 -0.071559 0.133329 0.730763 0.669484 -0.021072 0.776457 0.629818 -0.048861 0.692427 0.719831 -0.267381 0.736738 0.621067 0.502201 -0.841758 -0.198082 0.347489 -0.823244 -0.44891 0.323269 -0.832159 -0.450565 0.365532 -0.909977 -0.195774 0.278989 -0.744812 -0.606152 0.310543 -0.724294 -0.615598 0.470573 -0.845704 0.251686 0.639991 -0.751749 0.159014 0.847528 -0.526779 -0.064814 0.931762 0.360605 -0.042234 0.731131 -0.37377 0.57074 0.545828 -0.440059 0.713036 0.28654 -0.807827 -0.515083 0.336227 -0.798398 -0.499512 0.390344 -0.778946 -0.490791 0.394888 -0.900382 -0.182694 0.453746 -0.877199 -0.156959 0.356802 -0.910855 -0.207449 -0.344161 0.695104 0.631176 -0.149439 0.640429 0.753338 -0.149043 0.665502 0.731364 -0.349826 0.693839 0.629452 -0.136209 0.702366 0.698663 -0.323407 0.705435 0.63069 0.682989 -0.682468 -0.260315 0.59895 -0.703991 -0.381648 0.629914 -0.656157 -0.415531 0.77097 -0.571238 -0.281588 0.426971 -0.693708 -0.580055 0.470882 -0.685627 -0.555145 0.547183 -0.735019 -0.400422 0.403878 -0.692278 -0.598025 0.639219 -0.729933 -0.242067 0.756317 -0.646196 0.102054 0.818345 -0.573567 0.036491 0.814869 -0.159464 0.557279 0.753505 -0.300809 0.584589 0.916322 -0.395282 -0.064085 -0.552229 0.717565 0.424433 -0.549898 0.723485 0.417351 -0.689114 0.695621 0.20306 -0.692124 0.693865 0.198787 -0.449937 0.772191 0.44864 -0.582332 0.776773 0.23982 0.4591 -0.736156 -0.497294 0.428557 -0.75507 -0.496193 0.470093 -0.756298 -0.455001 0.604445 -0.773438 -0.190894 0.573109 -0.784752 -0.236031 0.620477 -0.767507 -0.161065 -0.154659 0.830449 0.535196 -0.208047 0.933434 0.292262 0.839948 -0.488026 -0.237313 0.649751 -0.668884 -0.361136 0.686328 -0.685198 -0.243841 0.870409 -0.456272 -0.184943 0.113928 -0.971144 0.209524 0.420169 -0.778433 0.466369 0.36716 -0.763202 0.531711 -0.02591 -0.968892 0.246125 0.735247 0.502746 0.454597 0.760736 -0.231899 0.60622 0.709739 -0.164748 0.68493 0.677088 0.518341 0.522374 0.150157 0.985896 -0.073902 0.110758 0.979195 -0.170028 0.14924 0.977328 -0.150193 0.102024 0.980668 -0.166976 0.092901 0.976521 -0.194362 0.035026 -0.981694 0.187218 -0.094184 -0.972517 0.212932 -0.040179 -0.998571 0.035247 -0.134425 -0.988935 0.062742 0.104938 0.981244 -0.161707 0.151335 0.986059 -0.069173 0.069929 0.986197 -0.150086 0.095076 0.992657 -0.074781 -0.031932 -0.959846 0.278703 0.3959 -0.771292 0.498369 0.753955 -0.269659 0.599029 0.811465 0.345679 0.471202 0.245701 0.963498 -0.106314 0.226774 0.963215 -0.144187 -0.201856 -0.975954 0.082263 -0.144695 -0.963786 0.22401 0.238399 0.953876 -0.182445 0.263237 0.957272 -0.119739 0.137189 0.954008 0.266548 0.004047 0.860303 0.509766 -0.324412 0.82325 0.46585 -0.221133 0.946632 0.234497 0.552688 -0.819889 -0.14939 0.435697 -0.752668 -0.493618 0.365249 -0.701895 -0.611504 0.358271 0.298744 0.88453 0.369064 0.261778 0.891776 0.680582 -0.368671 0.633159 0.35026 0.27383 0.895732 -0.101362 0.652868 0.750659 -0.31403 0.712829 0.627104 0.528306 -0.819128 -0.223433 0.448996 -0.780542 -0.434921 0.341896 0.423686 0.838807 0.504935 0.340193 0.79329 0.181522 0.411952 0.892942 0.181522 0.411952 0.892942 0.465736 -0.606641 0.644264 -0.0363 0.939717 0.340021 0.06455 0.996125 -0.059741 -0.0363 0.939717 0.340021 0.286421 0.951044 -0.116095 0.288616 0.950349 -0.116354 0.275757 0.953921 -0.118292 0.150003 0.985457 -0.079833 -0.160278 0.98687 0.019962 -0.557805 0.804225 0.205125 -0.528811 0.837981 0.134713 -0.689987 0.699784 0.184985 -0.704052 0.684413 0.189445 -0.639015 0.750411 0.168948 -0.301208 0.951297 0.065638 0.321965 0.939617 -0.116016 0.978366 -0.179418 -0.103002 0.950511 -0.146462 -0.274005 0.864752 0.428163 -0.262451 0.86448 -0.440579 -0.242001 0.720676 -0.665351 -0.194768 0.631835 -0.756962 -0.166709 0.640249 -0.749264 -0.169365 0.627443 -0.760901 -0.165364 0.541996 -0.828837 -0.138816 0.434754 -0.894291 -0.105989 0.396475 -0.913174 -0.094449 0.3782 -0.921198 -0.091428 0.733887 0.635327 -0.240355 0.720343 0.687761 -0.089944 0.744559 0.62451 -0.235838 0.345736 0.9286 0.13479 0.993133 0.093733 0.070012 0.356159 0.925036 0.132136 0.187307 0.978163 -0.09007 0.502357 0.858922 0.099456 0.251333 0.962401 -0.103033 0.65335 -0.735934 0.17758 0.65112 0.755621 0.071276 0.96166 -0.25776 -0.093651 0.209729 0.846026 0.490157 0.369985 -0.806261 -0.461579 -0.486759 0.759504 0.431532 0.951681 0.185976 -0.24437 0.902737 0.332183 -0.273352 0.941165 0.315326 -0.121568 0.951681 0.185976 -0.24437 0.956675 0.290442 0.020395 0.999368 -0.03479 -0.007251 0.964422 0.229761 0.130768 0.952504 0.13236 0.274258 0.999368 -0.03479 -0.007251 0.940577 -0.003262 0.339566 0.985356 -0.047323 -0.163812 0.973149 -0.138935 0.183517 0.98634 -0.163979 0.015638 0.985356 -0.047323 -0.163812 0.800077 -0.569905 -0.187309 0.874318 -0.431977 -0.221278 0.945305 -0.32607 -0.008707 0.031586 -0.183913 0.982435 0.031586 -0.183913 0.982435 -0.030751 -0.950601 0.30889 -0.030751 -0.950601 0.30889 0.985137 -0.170059 0.024169 -0.138803 -0.672288 0.727161 -0.138803 -0.672288 0.727161 0.909257 -0.407951 -0.082632 0.909257 -0.407951 -0.082632 0.975975 0.172973 -0.132486 0.975975 0.172973 -0.132486 0.980139 0.18814 -0.062699 0.980139 0.18814 -0.062699 0.977763 -0.075286 0.195733 0.977763 -0.075286 0.195733 0.989301 -0.108793 0.097195 0.989301 -0.108793 0.097195 0.977445 0.124096 -0.170885 0.977445 0.124096 -0.170885 0.998153 0.056019 0.023506 0.998153 0.056019 0.023506 0.796335 -0.523715 0.302611 0.474101 -0.734714 0.485204 -0.961031 0.165053 0.221757 -0.966015 0.031778 0.256527 -0.974186 0.146597 0.171671 -0.972365 0.022683 0.232362 -0.984794 0.118521 0.127015 -0.97678 0.011602 0.213931 -0.992779 0.080892 0.088578 -0.980405 -0.006081 0.1969 -0.997692 0.034776 0.058321 -0.983084 -0.030932 0.180525 -0.999084 -0.01652 0.039467 -0.983546 -0.055798 0.171824 -0.996955 -0.071034 0.03217 -0.982323 -0.081459 0.168542 -0.991355 -0.12588 0.037019 -0.979425 -0.107879 0.170556 -0.982538 -0.178319 0.053122 -0.975168 -0.132497 0.177459 -0.97118 -0.224992 0.078667 -0.9699 -0.153567 0.188972 -0.957807 -0.263848 0.113978 -0.963903 -0.170188 0.204763 -0.939615 -0.29636 0.171153 -0.955655 -0.183417 0.230396 -0.916192 -0.318352 0.243403 -0.943673 -0.194814 0.26745 -0.940074 0.285894 0.18581 -0.959445 0.258862 0.111609 -0.975323 0.216319 0.04416 -0.986978 0.160325 -0.013014 -0.993968 0.093475 -0.057363 -0.996059 0.018754 -0.086686 -0.993227 -0.06055 -0.099163 -0.985628 -0.140582 -0.09367 -0.972899 -0.220345 -0.070116 -0.955697 -0.29262 -0.031897 -0.933885 -0.356815 0.023271 -0.904554 -0.412768 0.106793 -0.874187 -0.443341 0.198105 -0.904883 0.399162 0.14784 -0.930066 0.363832 0.051015 -0.950616 0.308169 -0.036885 -0.965592 0.235032 -0.111317 -0.974471 0.147814 -0.168987 -0.976979 0.05078 -0.207202 -0.973161 -0.05162 -0.224262 -0.963025 -0.155851 -0.219756 -0.94516 -0.263631 -0.192798 -0.918341 -0.367435 -0.147108 -0.884469 -0.46033 -0.076225 -0.846414 -0.531736 0.028979 -0.81683 -0.561478 0.132408 -0.856198 0.505244 0.107954 -0.886734 0.462178 -0.009715 -0.911564 0.394322 -0.116455 -0.92955 0.305236 -0.206801 -0.940103 0.199203 -0.276631 -0.942966 0.081326 -0.322801 -0.938215 -0.042948 -0.343377 -0.925514 -0.170798 -0.338011 -0.90304 -0.303133 -0.304351 -0.869126 -0.43109 -0.242446 -0.825613 -0.542663 -0.154533 -0.78679 -0.615366 -0.04782 -0.763783 -0.641746 0.069265 -0.795208 0.602633 0.06691 -0.830597 0.552504 -0.069627 -0.85928 0.473551 -0.193358 -0.879991 0.369951 -0.297914 -0.892055 0.246859 -0.378547 -0.895219 0.110198 -0.431786 -0.889617 -0.03377 -0.455457 -0.87547 -0.181874 -0.447743 -0.852671 -0.3311 -0.404135 -0.819795 -0.473097 -0.322669 -0.773161 -0.597383 -0.21297 -0.732323 -0.672114 -0.109388 -0.703802 -0.710148 0.018793 -0.723285 0.690084 0.025367 -0.762965 0.633675 -0.127835 -0.79508 0.544841 -0.266451 -0.818228 0.428382 -0.383395 -0.831653 0.290204 -0.47343 -0.835118 0.137002 -0.532737 -0.828804 -0.024239 -0.559013 -0.813771 -0.188224 -0.549862 -0.79107 -0.350428 -0.501406 -0.757687 -0.507139 -0.410755 -0.712161 -0.640658 -0.287028 -0.672656 -0.725938 0.143347 -0.641851 0.766661 -0.016075 -0.68527 0.704796 -0.183489 -0.720395 0.607414 -0.334782 -0.745674 0.479891 -0.46225 -0.760327 0.328783 -0.560182 -0.764125 0.161453 -0.624537 -0.757252 -0.014499 -0.652962 -0.740618 -0.191819 -0.643964 -0.713493 -0.368156 -0.596145 -0.67319 -0.539525 -0.505696 -0.633594 -0.66652 -0.392824 -0.552217 0.831757 -0.056883 -0.598779 0.765354 -0.236001 -0.636491 0.660838 -0.397708 -0.663675 0.524103 -0.533716 -0.679467 0.362301 -0.638015 -0.683616 0.18334 -0.706439 -0.676308 -0.004709 -0.736604 -0.658096 -0.193709 -0.72759 -0.624976 -0.385418 -0.678866 -0.57331 -0.567527 -0.590956 -0.539712 -0.669892 -0.509859 -0.455829 0.884817 -0.096532 -0.504906 0.814845 -0.284776 -0.544771 0.704701 -0.454557 -0.573584 0.560728 -0.597148 -0.59041 0.390539 -0.706325 -0.594941 0.202476 -0.777849 -0.58738 0.005005 -0.809296 -0.568315 -0.193377 -0.799765 -0.531724 -0.399254 -0.746904 -0.472063 -0.588647 -0.65624 -0.438252 -0.663694 -0.606173 -0.336649 0.931055 -0.140727 -0.387856 0.858178 -0.336301 -0.429627 0.743452 -0.512543 -0.459974 0.593597 -0.660353 -0.477869 0.416607 -0.773356 -0.482921 0.221168 -0.847273 -0.475295 0.016124 -0.879678 -0.455543 -0.189817 -0.869741 -0.417917 -0.406061 -0.812687 -0.353552 -0.60422 -0.714086 -0.307968 -0.666598 -0.678825 -0.193714 0.962913 -0.187815 -0.246267 0.8884 -0.387424 -0.288613 0.77069 -0.568101 -0.317008 0.616998 -0.720292 -0.324374 0.435579 -0.839674 -0.320365 0.248902 -0.91401 -0.326185 0.041175 -0.944409 -0.317893 -0.181748 -0.930544 -0.279515 -0.404386 -0.870829 -0.213288 -0.614544 -0.759503 -0.156721 -0.682515 -0.713871 -0.046463 0.971992 -0.230375 -0.103325 0.898972 -0.425645 -0.164362 0.783516 -0.59924 -0.218293 0.643744 -0.733446 -0.220032 0.426957 -0.877094 -0.163378 0.257767 -0.952294 -0.189104 0.091231 -0.97771 -0.196106 -0.137994 -0.970824 -0.15848 -0.395997 -0.904473 -0.068774 -0.626707 -0.776214 0.011498 -0.702817 -0.711278 0.080842 0.962059 -0.260588 -0.004368 0.897342 -0.441313 -0.108637 0.80053 -0.589364 -0.077282 0.160772 -0.983961 -0.047366 -0.005136 -0.998864 -0.055321 -0.376835 -0.924627 0.024205 -0.64051 -0.767568 0.122657 -0.746286 -0.654227 0.182989 0.944565 -0.272601 0.060296 0.892968 -0.446064 0.298773 0.913904 -0.274797 0.253313 0.891687 -0.375137 0.114854 -0.338324 -0.933994 0.102232 0.013353 -0.994671 0.151765 -0.614693 -0.774028 0.247572 -0.789545 -0.561539 0.422501 0.861523 -0.281553 0.416333 0.839555 -0.34902 0.37199 -0.274879 -0.886603 0.353485 0.017625 -0.935274 0.378321 -0.507369 -0.774242 0.386435 -0.730111 -0.563565 0.530382 0.793788 -0.297652 0.540498 0.759214 -0.362568 0.588887 -0.200332 -0.782994 0.56861 0.014756 -0.822475 0.582449 -0.344028 -0.736476 0.575726 -0.569224 -0.586961 0.65241 0.687716 -0.318445 0.658927 0.642592 -0.391012 0.527988 0.032741 -0.848621 0.572271 -0.222348 -0.789346 0.647447 -0.270239 -0.712589 0.71954 -0.352064 -0.598592 0.761452 -0.51329 -0.395884 0.588683 -0.724004 -0.359542 0.425419 -0.825843 -0.370137 0.75829 0.548346 -0.35258 0.752446 0.495489 -0.433954 0.762878 0.455469 -0.458873 0.774527 0.480972 -0.410821 -0.059483 0.299655 -0.952191 -0.090596 0.399221 -0.912368 0.036545 0.471124 -0.881309 0.07364 0.399264 -0.913874 -0.030114 0.266255 -0.963432 -0.038844 0.381241 -0.923659 -0.13284 0.509742 -0.85001 -0.066453 0.503298 -0.861554 0.001768 0.538105 -0.842876 0.050754 0.065758 -0.996544 -0.019181 0.193572 -0.980899 0.117727 0.320417 -0.939933 0.173089 0.209675 -0.962329 0.073986 0.047418 -0.996131 -0.002861 0.154045 -0.98806 0.22268 -0.189591 -0.956279 0.142047 -0.070696 -0.987332 0.235945 0.061061 -0.969846 0.284019 -0.085242 -0.955022 0.284187 -0.119522 -0.95129 0.18495 -0.046926 -0.981627 0.469944 -0.314762 -0.824668 0.324898 -0.286474 -0.901318 0.327435 -0.220891 -0.918691 0.436096 -0.251459 -0.864054 0.473624 -0.209127 -0.855538 0.371679 -0.174482 -0.911817 0.593781 -0.220328 -0.773873 0.64569 -0.038921 -0.762607 0.659388 -0.074842 -0.748068 0.577338 -0.188497 -0.794449 0.520053 -0.164818 -0.838081 0.486574 -0.003404 -0.873633 0.583694 0.350278 -0.732535 0.633952 0.167061 -0.755112 0.445809 0.172583 -0.878333 0.388775 0.329865 -0.860258 0.670839 0.324639 -0.666772 0.692093 0.11947 -0.711852 0.445222 0.577844 -0.684013 0.517686 0.479897 -0.708308 0.330597 0.433029 -0.838565 0.275479 0.50654 -0.817024 0.53871 0.612813 -0.578145 0.616696 0.484403 -0.620516 0.278003 0.744964 -0.606418 0.365453 0.664551 -0.651779 0.221829 0.57283 -0.789087 0.182217 0.632878 -0.752504 0.306851 0.80584 -0.506422 0.437533 0.722967 -0.534681 -0.077112 0.816166 -0.572649 0.125172 0.825515 -0.550324 0.121846 0.731498 -0.670868 -0.019603 0.743964 -0.667932 -0.030227 0.802231 -0.596248 0.128031 0.849287 -0.512171 -0.166759 0.672289 -0.721262 -0.074919 0.639876 -0.764817 -0.086363 0.65898 -0.747185 0.419268 0.406688 -0.811677 0.45283 0.31045 -0.835802 0.550354 0.354523 -0.755926 0.488995 0.426269 -0.761038 0.798505 0.589542 -0.121777 0.629664 0.764854 -0.136094 0.428097 0.516657 -0.741484 0.481992 0.162651 -0.860946 0.476625 0.173666 -0.861782 0.541781 -0.051837 -0.83892 0.610962 -0.026965 -0.7912 0.77405 -0.395398 -0.494477 0.920958 -0.172543 -0.349378 0.643893 0.078074 -0.761122 0.480736 0.233816 -0.845117 0.483133 0.167149 -0.859444 0.616661 0.240115 -0.749715 0.967736 0.117908 -0.222674 0.913198 0.379905 -0.147451 0.390578 0.591083 -0.705741 0.382839 0.535126 -0.753044 0.414139 0.577573 -0.70349 0.47634 0.860797 -0.179246 0.340392 0.907818 -0.24495 0.421549 0.584377 -0.693397 0.405414 0.540989 -0.736865 0.431518 0.576007 -0.694268 0.364935 0.56563 -0.739517 0.160295 0.921034 -0.354968 -0.063838 0.850342 -0.522343 0.231853 0.516573 -0.824255 -0.234963 0.674542 -0.699847 -0.263787 0.488611 -0.831671 0.143761 0.349005 -0.926028 0.121957 0.430188 -0.894463 0.244238 0.368175 -0.897104 0.286839 0.465666 -0.837185 0.431825 0.308888 -0.847417 0.349106 0.306214 -0.88564 0.242828 0.317447 -0.916658 -0.193183 0.358321 -0.913393 -0.108882 0.280328 -0.953709 0.308743 0.342271 -0.887428 0.400235 0.380025 -0.833902 0.437071 0.358464 -0.824907 0.306876 0.362809 -0.879885 -0.062544 0.201463 -0.977497 -0.04802 0.0781 -0.995788 0.266858 0.326827 -0.906626 0.350138 0.278047 -0.894479 0.354862 0.347322 -0.868009 0.255429 0.219947 -0.941477 -0.006971 -0.087812 -0.996113 0.120653 -0.291438 -0.94895 0.318338 0.07641 -0.944893 0.448609 0.180967 -0.875215 0.399034 0.212972 -0.89186 0.432397 -0.02109 -0.901437 0.342686 -0.457883 -0.820311 0.578434 -0.49519 -0.648229 0.296419 -0.000702 -0.955058 0.296419 -0.000702 -0.955058 0.172523 0.052896 -0.983584 0.172523 0.052896 -0.983584 0.039158 0.322577 -0.945733 0.039158 0.322577 -0.945733 0.047516 0.433082 -0.900101 0.047516 0.433082 -0.900101 0.073663 0.121903 -0.989805 0.073663 0.121903 -0.989805 0.020637 0.212144 -0.977021 0.020637 0.212144 -0.977021 0.424054 -0.091556 -0.900997 0.424054 -0.091556 -0.900997 0.357272 -0.03225 -0.933444 0.357272 -0.03225 -0.933444 0.012525 0.534209 -0.84526 0.012525 0.534209 -0.84526 -0.011494 0.7071 -0.707021 -0.011494 0.7071 -0.707021 0.597526 -0.131026 -0.791072 0.597526 -0.131026 -0.791072 0.505826 -0.146625 -0.850083 0.505826 -0.146625 -0.850083 0.043082 0.835064 -0.548463 0.043082 0.835064 -0.548463 0.232892 0.841802 -0.486962 0.232892 0.841802 -0.486962 0.692441 0.211038 -0.689919 0.692441 0.211038 -0.689919 0.670034 -0.002279 -0.742327 0.670034 -0.002279 -0.742327 0.395537 0.785831 -0.475416 0.395537 0.785831 -0.475416 0.511415 0.69064 -0.511342 0.511415 0.69064 -0.511342 0.608864 0.549501 -0.572131 0.608864 0.549501 -0.572131 0.665886 0.412472 -0.621662 0.665886 0.412472 -0.621662 0.267718 0.900516 0.342634 0.267718 0.900516 0.342634 0.434491 0.763425 0.477912 0.434491 0.763425 0.477912 0.869912 0.076138 0.487294 0.869912 0.076138 0.487294 0.932155 -0.229683 0.279881 0.932155 -0.229683 0.279881 0.602872 0.538559 0.588642 0.602872 0.538559 0.588642 0.752279 0.323048 0.574209 0.752279 0.323048 0.574209 -0.213672 0.974192 0.072768 -0.213672 0.974192 0.072768 0.039021 0.973056 0.227243 0.039021 0.973056 0.227243 0.840289 -0.540248 0.045233 0.840289 -0.540248 0.045233 0.606818 -0.775669 -0.17352 0.606818 -0.775669 -0.17352 -0.573632 0.648601 -0.500262 -0.573632 0.648601 -0.500262 -0.459052 0.865899 -0.198721 -0.459052 0.865899 -0.198721 0.348772 -0.845309 -0.404736 0.348772 -0.845309 -0.404736 0.044107 -0.731158 -0.680781 0.044107 -0.731158 -0.680781 -0.526631 0.262875 -0.808429 -0.526631 0.262875 -0.808429 -0.572583 0.444835 -0.688673 -0.572583 0.444835 -0.688673 -0.171813 -0.489749 -0.854767 -0.171813 -0.489749 -0.854767 -0.298216 -0.294897 -0.907801 -0.298216 -0.294897 -0.907801 -0.378075 -0.092709 -0.921121 -0.378075 -0.092709 -0.921121 -0.44719 0.096281 -0.889242 -0.44719 0.096281 -0.889242 0.612429 0.206829 -0.762989 0.464886 0.248405 -0.849809 0.407407 0.351958 -0.842701 0.648197 0.357749 -0.672202 0.671753 0.259933 -0.693674 0.260779 0.444292 -0.857088 0.266283 0.359019 -0.894538 0.239549 0.282383 -0.928911 0.456076 0.54318 -0.704947 0.484975 0.494828 -0.721072 0.523431 0.452679 -0.721874 0.154432 0.395601 -0.905345 0.17883 0.504716 -0.84456 0.266157 0.567731 -0.779001 0.193307 0.300033 -0.934138 0.427534 0.439385 -0.790035 0.307666 0.464115 -0.830626 0.465664 0.419078 -0.779442 0.586011 0.418412 -0.693919 0.376686 0.574397 -0.726757 0.72401 0.167928 -0.669036 0.615211 0.144276 -0.775048 0.538442 0.194451 -0.81992 0.755996 0.352652 -0.551458 0.765047 0.251817 -0.592698 0.104303 0.251884 -0.96212 0.084593 0.265317 -0.960443 0.005837 0.281933 -0.959416 0.438714 0.77153 -0.460728 0.549094 0.684577 -0.479427 0.639111 0.567102 -0.51955 -0.119349 0.571474 -0.811895 -0.055497 0.717664 -0.694175 0.087893 0.80095 -0.592244 -0.082255 0.383999 -0.919662 0.371981 0.25099 -0.893663 0.168173 0.254214 -0.952414 0.515832 0.244885 -0.820943 0.711746 0.448691 -0.540457 0.274747 0.816832 -0.507247 0.645705 0.281916 -0.70964 0.539281 0.220414 -0.812769 0.769022 0.394085 -0.503292 0.726749 0.338639 -0.597628 0.910687 0.132665 0.391214 0.999599 0.019627 0.020427 0.95412 0.024299 0.298438 0.445708 0.894704 -0.029136 0.965917 0.00636 -0.258774 0.63813 0.749781 -0.174984 0.564478 0.808758 -0.165152 0.955888 0.074409 -0.28415 0.833027 -0.550995 -0.049699 0.747769 -0.638876 -0.180774 0.496269 -0.862279 -0.100952 -0.207933 0.848115 -0.487303 0.067624 0.763984 -0.641681 0.12728 0.626188 -0.769213 -0.218784 0.728379 -0.649305 0.477035 0.407812 -0.778542 0.477035 0.407812 -0.778542 0.017333 -0.981177 -0.192329 0.100697 -0.980826 -0.166857 0.066985 -0.985016 -0.158922 0.066985 -0.985016 -0.158922 0.113176 -0.977596 -0.177477 0.113176 -0.977596 -0.177477 0.260639 0.584649 -0.768279 0.260639 0.584649 -0.768279 0.016554 0.67435 -0.738226 -0.106362 0.750404 -0.652366 -0.106362 0.750404 -0.652366 -0.052394 0.836039 -0.546163 0.073173 0.824552 -0.561034 -0.11046 0.686583 -0.718611 -0.155032 0.743111 -0.650962 -0.209657 0.806439 -0.552901 -0.277141 0.74834 -0.602644 -0.254322 0.755762 -0.603444 -0.358109 0.092557 -0.929081 -0.250923 0.673348 -0.695442 -0.112663 0.603179 -0.789609 -0.09202 0.089713 -0.991708 0.154625 0.382352 -0.910988 0.205405 -0.026468 -0.978319 -0.072607 -0.353019 -0.932795 -0.315135 -0.516218 -0.796372 0.137801 -0.96591 -0.219155 -0.147037 -0.862058 -0.485012 0.15353 -0.866566 -0.474859 0.229098 -0.817711 -0.528075 0.125194 -0.964684 -0.231758 0.055128 -0.985656 -0.159509 0.133227 -0.975043 -0.1776 0.08158 0.845691 -0.5274 0.078804 0.875247 -0.477213 -0.135909 0.78308 -0.606889 -0.14307 0.731129 -0.667069 0.652262 -0.134271 -0.746006 0.728452 -0.084587 -0.679855 0.489926 -0.423017 -0.762253 0.604152 0.140091 -0.784458 0.789901 0.036981 -0.612119 0.511155 -0.597093 -0.618224 0.41548 -0.442463 -0.794735 0.053874 -0.927755 -0.369281 0.152238 -0.796477 -0.58519 0.917433 -0.01634 -0.397554 0.60325 -0.699086 -0.383887 0.029478 -0.980033 -0.196639 0.188278 0.863211 -0.468421 0.734878 0.361526 -0.573806 0.645074 0.228829 -0.729052 0.011092 0.714503 -0.699544 0.528285 0.032629 -0.84844 -0.123905 0.526586 -0.841044 0.709036 -0.679127 0.189881 0.54884 -0.680148 0.485977 0.696633 -0.536154 0.476698 0.937025 0.142119 0.319041 0.883729 -0.390989 0.257199 0.771856 0.621298 -0.135006 0.80244 -0.582305 -0.130427 0.360455 0.931906 0.040288 0.246781 0.968966 0.014261 0.199409 0.979909 0.003657 0.20259 0.97835 0.042279 0.297397 0.954751 0.002279 0.296878 0.953346 -0.054732 -0.448272 0.750301 -0.485901 -0.299256 0.711329 -0.635969 -0.449932 0.662013 -0.599417 -0.604373 0.702658 -0.375506 0.543677 -0.837776 -0.05046 0.41825 -0.908309 0.006481 0.525642 -0.828016 0.195167 0.513327 -0.837473 0.187441 0.632445 -0.690176 0.351668 0.562937 -0.723503 0.399556 0.270888 -0.860723 -0.431018 0.466072 -0.760826 -0.451575 0.785817 -0.470274 -0.401664 0.806986 0.379916 -0.452147 0.311722 -0.406116 -0.859011 0.08011 -0.476468 -0.875534 0.492226 -0.783275 0.379728 0.564196 -0.75938 0.324076 0.615425 -0.747397 0.250297 0.467281 -0.880804 -0.076373 0.423525 -0.905139 -0.036738 0.388235 -0.921287 -0.022439 -0.638353 0.671458 -0.376365 -0.642083 0.670375 -0.371923 -0.527289 0.635121 -0.564436 -0.53912 0.609156 -0.581618 -0.499354 0.673213 -0.545371 -0.620665 0.681581 -0.387585 0.724403 -0.679107 -0.118553 0.808578 -0.568186 -0.152862 0.76273 -0.645516 0.039393 0.719046 -0.694329 0.029644 0.704086 -0.666952 0.243799 0.68063 -0.673335 0.288725 0.675478 -0.668555 0.311069 0.688796 -0.721756 0.068031 0.678689 -0.726051 -0.110594 0.590821 -0.659388 -0.464906 0.324614 -0.335183 -0.884465 0.389368 -0.193616 -0.900503 0.677507 -0.584788 -0.446103 0.811911 -0.403641 -0.421752 -0.702864 0.705439 -0.091315 -0.699069 0.693346 0.174852 -0.698884 0.694843 0.169571 -0.697074 0.711711 -0.08692 -0.629707 0.772938 0.077689 -0.630257 0.757744 -0.169115 0.665495 -0.718329 0.202779 0.637554 -0.7383 0.220087 0.650398 -0.741869 0.163133 0.619906 -0.781037 -0.075482 0.62189 -0.772088 -0.130895 0.619404 -0.767547 -0.164959 -0.428525 0.808484 -0.403384 -0.344282 0.922494 -0.174568 0.841854 -0.487833 -0.230867 0.838993 -0.458769 -0.292613 0.718357 -0.682624 -0.134116 0.750372 -0.66081 -0.016469 -0.004385 -0.980634 -0.195802 0.11327 -0.803082 -0.585003 0.033162 -0.790045 -0.612151 -0.142029 -0.978203 -0.151482 0.398848 0.500353 -0.768484 0.284867 0.522124 -0.803889 0.240759 -0.182234 -0.953324 0.326055 -0.256882 -0.90978 0.106126 0.992625 0.058596 0.101925 0.991712 -0.078227 0.185058 0.981762 0.043548 0.161241 0.98316 0.086007 0.203627 0.976108 0.075821 -0.181266 -0.979622 -0.086502 -0.058418 -0.989239 -0.134139 0.18691 0.981774 0.034418 0.16088 0.98655 0.028917 -0.164751 -0.970502 -0.176023 0.075477 -0.797038 -0.599194 0.41959 0.332341 -0.844685 0.322606 -0.288805 -0.901397 0.338129 0.937695 -0.079978 0.299596 0.953203 -0.040569 -0.230271 -0.970692 -0.068787 0.273756 0.960659 -0.046809 -0.093554 0.935084 -0.341855 -0.357811 0.927392 -0.109158 -0.580229 0.784645 -0.218327 -0.370232 0.823908 -0.429073 0.555442 -0.82035 -0.136052 0.648256 -0.730721 0.214037 0.665073 -0.670138 0.329534 -0.177345 0.255741 -0.950339 0.237945 -0.404121 -0.883215 -0.171659 0.218398 -0.960643 -0.191232 0.22974 -0.95428 -0.611039 0.688951 -0.389844 -0.497376 0.621066 -0.605717 0.578572 -0.812132 -0.075471 0.636769 -0.760919 0.124606 -0.168096 0.382717 -0.908445 -0.01579 0.29859 -0.954251 -0.354497 0.372019 -0.857866 -0.354497 0.372019 -0.857866 0.030753 -0.642052 -0.766044 -0.28865 0.899627 -0.327645 -0.28865 0.899627 -0.327645 -0.590748 0.801531 0.092551 0.882451 -0.187177 -0.431561 0.631213 0.690214 -0.3538 0.716773 0.651128 -0.249539 0.810085 0.079366 -0.580916 0.218435 0.918014 -0.330963 0.140919 0.983259 -0.115515 0.178425 0.905077 -0.386006 0.364259 0.817074 -0.446884 0.299785 0.939825 -0.163886 0.464631 -0.750462 -0.470027 0.536199 0.720631 -0.439525 0.864301 -0.265631 -0.427112 -0.127859 0.902899 -0.410396 0.648779 -0.746777 0.14632 -0.65206 0.746179 -0.134292 0.932257 0.179954 -0.313868 0.932257 0.179954 -0.313868 0.85443 0.301563 -0.423095 0.797829 0.26596 -0.541049 0.873116 -0.177098 -0.454207 0.873116 -0.177098 -0.454207 0.649289 0.072699 -0.757059 0.753442 0.191783 -0.628923 0.6043 -0.0704 -0.793641 0.921298 -0.001363 -0.388856 0.921298 -0.001363 -0.388856 0.805464 -0.09727 -0.584608 0.710857 -0.181827 -0.679427 0.859553 -0.250977 -0.445172 -0.504833 -0.252405 -0.825491 -0.504833 -0.252405 -0.825491 -0.176988 -0.95937 -0.219738 -0.176988 -0.95937 -0.219738 0.838581 -0.043777 -0.543014 -0.50884 -0.695521 -0.507279 -0.50884 -0.695521 -0.507279 0.843621 -0.371969 -0.387224 0.843621 -0.371969 -0.387224 0.897769 0.154532 -0.41247 0.897769 0.154532 -0.41247 0.883068 0.157461 -0.442037 0.883068 0.157461 -0.442037 0.71598 -0.20424 -0.667576 0.71598 -0.20424 -0.667576 0.84052 -0.139279 -0.523572 0.84052 -0.139279 -0.523572 0.889164 0.201883 -0.410647 0.889164 0.201883 -0.410647 0.844759 0.094819 -0.526679 0.844759 0.094819 -0.526679 0.516769 -0.546521 -0.658988 0.137687 -0.761356 -0.633545 -0.073521 0.769689 -0.634171 -0.902895 -0.325759 0.280467 -0.936415 -0.200727 0.287811 -0.858832 -0.448083 0.248252 -0.80054 -0.564124 0.202238 -0.740856 -0.649577 0.170825 -0.640499 -0.727822 0.245023 -0.852262 -0.443442 0.277505 -0.785146 -0.561254 0.261802 -0.709343 -0.657204 0.254784 0.578683 -0.759785 0.2964 -0.000115 -0.99999 -0.004589 -0.00051 -0.999977 -0.006811 -3.4e-005 -0.999995 -0.003095 -0.0006 -0.999998 -0.001658 0.001309 -0.999998 0.001288 -0.003465 -0.999976 -0.006061 -0.004195 -0.999979 -0.004981 -0.000633 -0.99997 -0.007748 -0.001948 -0.999974 -0.00693 -6e-006 -0.999971 -0.007673 -0.00264 -0.99998 -0.005704 -6.6e-005 -0.999967 -0.008151 -0.00142 -0.999996 -0.002481 0.003645 -0.999993 4.6e-005 -0.002686 -0.999991 0.003221 0.002724 -0.999944 0.010221 0.004946 -0.999932 0.010546 0.006765 -0.99992 0.010688 0.004595 -0.999966 0.006817 0.001146 -0.999997 0.002298 -0.004822 -0.999982 0.003527 -0.003588 -0.999964 0.00771 -0.00298 -0.999888 0.014663 -0.001243 -0.999863 0.016531 0.001848 -0.999933 0.011451 -0.004415 -0.999984 0.003674 0.001118 -0.999907 0.013595 0.001334 -0.999999 -0.000699 -0.00033 -1 -0.000292</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2290\" offset=\"0\" source=\"#LOD3spShape-lib-normals-array\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"LOD3spShape-lib-map1\" name=\"map1\">\r\n\t\t\t\t\t<float_array count=\"4554\" id=\"LOD3spShape-lib-map1-array\">0.245158 0.423975 0.25011 0.468112 0.150442 0.543685 0.148569 0.498875 0.302841 0.416173 0.345064 0.636086 0.339502 0.673242 0.260986 0.672117 0.283208 0.642063 0.331126 0.714598 0.241009 0.71553 0.233372 0.762934 0.302959 0.373132 0.224027 0.289653 0.23558 0.359702 0.143764 0.429085 0.134156 0.320572 0.298228 0.319321 0.288073 0.263566 0.326898 0.757163 0.328393 0.797118 0.23841 0.805793 0.60087 0.640918 0.866606 0.398924 0.510699 0.676291 0.517366 0.634965 0.871384 0.397619 0.505796 0.719121 0.878048 0.397558 0.87416 0.398826 0.86606 0.397625 0.86057 0.399008 0.501279 0.762876 0.856321 0.39906 0.497144 0.804816 0.862375 0.397683 0.860024 0.397676 0.853776 0.399148 0.494669 0.842655 0.936097 0.40457 0.495808 0.877438 0.932361 0.401286 0.944998 0.401429 0.333511 0.830512 0.255441 0.838224 0.335539 0.859065 0.275714 0.857682 0.13703 0.645509 0.099669 0.709478 0.072436 0.710311 0.114209 0.64461 0.217381 0.600094 0.193334 0.589335 0.083907 0.774978 0.093256 0.834193 0.067488 0.842396 0.056643 0.778851 0.948825 0.405179 0.543475 0.557405 0.5578 0.533271 0.685834 0.551732 0.928618 0.398828 0.939922 0.398832 0.318062 0.571086 0.304302 0.551225 0.870712 0.401462 0.862287 0.401557 0.855482 0.401642 0.85836 0.405349 0.85103 0.405417 0.86725 0.404976 0.851008 0.401767 0.84805 0.401779 0.618068 0.949096 0.595914 0.442419 0.701364 0.36472 0.704143 0.312403 0.595493 0.387203 0.757075 0.288915 0.749567 0.262372 0.79867 0.019963 0.720188 0.090411 0.342229 0.232442 0.353643 0.285267 0.846214 0.405443 0.84246 0.405195 0.945825 0.3988 0.51556 0.94314 0.529717 0.959537 0.951482 0.401365 0.955814 0.405156 0.355112 0.336459 0.416748 0.23909 0.409212 0.301844 0.412385 0.174765 0.722678 0.141004 0.371257 0.129527 0.316583 0.183819 0.278107 0.146712 0.815355 0.094326 0.586596 0.164171 0.31201 0.090946 0.272238 0.213152 0.591566 0.221736 0.775513 0.183818 0.258385 0.177707 0.714664 0.225413 0.594393 0.311859 0.803506 0.201004 0.853165 0.100422 0.240207 0.064107 0.220228 0.127313 0.134162 0.116701 0.137886 0.045291 0.20962 0.176711 0.132836 0.176022 0.393776 0.367451 0.346805 0.380154 0.21424 0.228892 0.133514 0.241035 0.127886 0.880246 0.194162 0.909528 0.176891 0.924466 0.105635 0.892789 0.298575 0.918513 0.289302 0.932026 0.41004 0.927663 0.412647 0.940987 0.152917 0.714025 0.188039 0.660899 0.251002 0.622891 0.148083 0.821618 0.139091 0.770988 0.529124 0.59406 0.624566 0.605374 0.943792 0.414167 0.33386 0.602351 0.939709 0.408955 0.951716 0.40979 0.95394 0.414936 0.863781 0.409841 0.854643 0.410095 0.847079 0.410021 0.50373 0.914675 0.043999 0.560029 0.039161 0.51728 0.035514 0.442488 0.02836 0.327681 0.57657 0.399149 0.579657 0.45714 0.483058 0.467543 0.484696 0.402538 0.027211 0.11532 0.026409 0.041836 0.027231 0.176259 0.027041 0.244825 0.496033 0.232082 0.498386 0.171519 0.545104 0.178866 0.55478 0.242428 0.486973 0.320445 0.572701 0.32584 0.253473 0.42034 0.198325 0.471074 0.201641 0.514357 0.257191 0.464291 0.304409 0.414784 0.305266 0.371658 0.230885 0.286168 0.167912 0.306331 0.188981 0.401339 0.242536 0.354324 0.300813 0.31779 0.290984 0.262458 0.644363 0.422582 0.643061 0.366324 0.70337 0.314326 0.703499 0.366966 0.745969 0.26707 0.75382 0.293297 0.343946 0.231017 0.355397 0.284532 0.356783 0.335152 0.414764 0.29281 0.419941 0.236001 0.413771 0.173263 0.370421 0.125545 0.313385 0.086563 0.282902 0.142155 0.319456 0.18046 0.261679 0.175104 0.275739 0.211488 0.247515 0.05956 0.175872 0.043369 0.166908 0.113803 0.230266 0.122298 0.162066 0.173298 0.220575 0.173418 0.399643 0.347472 0.348371 0.378515 0.850892 0.415208 0.23283 0.882474 0.174218 0.860862 0.318561 0.890705 0.412205 0.900441 0.414872 0.864697 0.414169 0.832004 0.413463 0.796679 0.414763 0.757 0.418623 0.715141 0.424042 0.67374 0.797949 0.022112 0.816816 0.093012 0.720595 0.147032 0.715991 0.092651 0.636546 0.210325 0.627672 0.148444 0.772502 0.189202 0.711355 0.231084 0.641706 0.289174 0.223314 0.226619 0.162858 0.235961 0.139391 0.505963 0.140772 0.546375 0.105327 0.324975 0.131454 0.436403 0.855305 0.0942 0.800674 0.205793 0.103269 0.042003 0.100779 0.11305 0.099208 0.173793 0.099637 0.242841 0.428561 0.633258 0.429426 0.594048 0.429051 0.559095 0.429259 0.535162 0.35272 0.639241 0.294558 0.645659 0.274212 0.673847 0.348213 0.675519 0.253789 0.714174 0.339072 0.715472 0.241562 0.759109 0.241492 0.801977 0.330569 0.796358 0.332348 0.756954 0.843668 0.414845 0.519216 0.636196 0.513483 0.677706 0.858319 0.415536 0.509018 0.719971 0.595108 0.724198 0.959154 0.409842 0.961426 0.415077 0.955396 0.420505 0.503982 0.762367 0.946551 0.419988 0.498249 0.80295 0.581926 0.813498 0.948394 0.426244 0.956245 0.426562 0.493564 0.840197 0.962774 0.420748 0.49337 0.874734 0.5689 0.884732 0.963626 0.426902 0.947821 0.439136 0.254385 0.836095 0.333265 0.830744 0.334347 0.859927 0.274272 0.857068 0.111374 0.707428 0.160452 0.654158 0.126019 0.649524 0.074711 0.707898 0.232092 0.611555 0.203545 0.598866 0.085639 0.828171 0.086444 0.767612 0.053832 0.770468 0.05904 0.833261 0.5406 0.554531 0.653253 0.57169 0.949156 0.432796 0.552741 0.532581 0.956416 0.432776 0.955188 0.438695 0.321928 0.578317 0.3053 0.558373 0.963377 0.433055 0.962074 0.438861 0.939469 0.450342 0.944673 0.445101 0.952905 0.444195 0.949616 0.449137 0.959891 0.444199 0.95721 0.449055 0.928445 0.45763 0.933041 0.454385 0.647892 0.957038 0.945196 0.453364 0.513713 0.938992 0.528694 0.953445 0.940767 0.456994 0.954246 0.453493 0.191556 0.905473 0.119561 0.876603 0.09609 0.886393 0.173642 0.917872 0.296111 0.916924 0.285563 0.930752 0.407594 0.925155 0.699705 0.808301 0.767751 0.813767 0.770203 0.857847 0.710393 0.859091 0.67046 0.86001 0.652167 0.800156 0.732575 0.902022 0.706983 0.910753 0.776574 0.894725 0.709069 0.706824 0.772884 0.721001 0.769128 0.766819 0.69961 0.756109 0.650715 0.739559 0.665169 0.685443 0.747389 0.629544 0.781976 0.645207 0.777571 0.679447 0.726035 0.663915 0.69251 0.641696 0.7256 0.608173 0.800842 0.598447 0.800844 0.613722 0.782354 0.62203 0.77064 0.606739 0.761516 0.586356 0.801211 0.57812 0.833474 0.606525 0.843418 0.585771 0.884582 0.608278 0.861681 0.62927 0.826927 0.645008 0.821482 0.621769 0.901508 0.709495 0.841154 0.721344 0.835351 0.679466 0.88519 0.664947 0.920582 0.64464 0.946246 0.692573 0.905321 0.811872 0.840491 0.814502 0.842749 0.767471 0.908491 0.759591 0.957769 0.748636 0.953229 0.808266 0.87648 0.901039 0.832824 0.894364 0.83647 0.858222 0.893987 0.860506 0.934495 0.863509 0.904941 0.908789 0.811165 0.93926 0.808557 0.928096 0.833115 0.918674 0.850764 0.928355 0.866017 0.939324 0.815782 0.955298 0.781351 0.919619 0.767445 0.930389 0.756778 0.947206 0.874321 0.260529 0.87457 0.258357 0.870642 0.262514 0.870232 0.260129 0.875205 0.262091 0.87418 0.274349 0.878088 0.275377 0.879128 0.284194 0.875282 0.284248 0.876451 0.268146 0.87176 0.26763 0.879196 0.270887 0.875496 0.265391 0.893101 0.28442 0.892287 0.271326 0.879947 0.284131 0.862255 0.219399 0.877309 0.242158 0.869772 0.241647 0.855575 0.218438 0.862432 0.239621 0.84944 0.210845 0.867315 0.244511 0.849901 0.240235 0.863194 0.266321 0.876212 0.265675 0.880423 0.283451 0.866718 0.283089 0.870498 0.254293 0.863904 0.253791 0.870234 0.270504 0.864805 0.270607 0.879852 0.25405 0.878645 0.27023 0.884908 0.221559 0.894641 0.243235 0.885819 0.242521 0.87478 0.219802 0.853855 0.205189 0.868038 0.204565 0.870975 0.210424 0.856654 0.209577 0.882303 0.208527 0.885027 0.21281 0.869343 0.207181 0.855354 0.205901 0.879862 0.246326 0.872817 0.221463 0.859409 0.2185 0.885826 0.225344 0.891813 0.248223 0.886742 0.266822 0.897889 0.269881 0.890434 0.283337 0.902191 0.283202 0.887267 0.269985 0.888486 0.253806 0.897003 0.253871 0.897865 0.269734 0.890567 0.21382 0.890889 0.214313 0.887336 0.211472 0.940502 0.247339 0.935827 0.245027 0.948386 0.259727 0.952135 0.261243 0.929477 0.246937 0.935892 0.257903 0.955141 0.271935 0.951237 0.271687 0.951697 0.282445 0.956107 0.282705 0.939971 0.271031 0.941535 0.28252 0.963745 0.266939 0.955791 0.248173 0.96377 0.246708 0.971434 0.266214 0.948554 0.235961 0.955224 0.234835 0.896396 0.245174 0.886107 0.251776 0.887306 0.25714 0.901578 0.253513 0.893935 0.234459 0.893306 0.241625 0.88488 0.259333 0.895682 0.256287 0.898524 0.274248 0.887363 0.275119 0.885952 0.26722 0.897217 0.265981 0.888292 0.284017 0.899782 0.283788 0.893557 0.224473 0.903384 0.244263 0.904117 0.226402 0.909834 0.245212 0.898452 0.232315 0.90536 0.242289 0.914901 0.24109 0.908475 0.23147 0.912117 0.251402 0.92111 0.249824 0.905103 0.223634 0.894105 0.223477 0.891627 0.223783 0.892209 0.224715 0.894785 0.217728 0.904032 0.218825 0.905292 0.26092 0.916745 0.259188 0.925679 0.257542 0.919312 0.270264 0.927598 0.269904 0.909165 0.270372 0.922229 0.248254 0.923018 0.231732 0.931448 0.236491 0.927474 0.250713 0.939132 0.243721 0.931475 0.252998 0.941395 0.236759 0.941774 0.24318 0.951181 0.24757 0.953028 0.242625 0.943442 0.249961 0.949719 0.251412 0.932269 0.241398 0.935522 0.24909 0.930136 0.234395 0.929446 0.228394 0.942151 0.230847 0.942787 0.227016 0.929372 0.224433 0.954848 0.237908 0.922857 0.256527 0.927955 0.258098 0.929776 0.270263 0.925166 0.269641 0.93313 0.259066 0.935431 0.270899 0.938091 0.256867 0.945703 0.257403 0.953024 0.257866 0.948714 0.269472 0.957575 0.269677 0.940805 0.269454 0.944953 0.253898 0.950208 0.269278 0.961307 0.253711 0.957956 0.256418 0.964661 0.269455 0.96896 0.268209 0.902892 0.249987 0.897745 0.228849 0.908596 0.231834 0.912735 0.252197 0.897122 0.224227 0.89485 0.22181 0.90624 0.226903 0.908607 0.228742 0.903082 0.242361 0.906809 0.256103 0.917237 0.255133 0.919494 0.264606 0.908311 0.265315 0.907454 0.269025 0.916487 0.269043 0.911531 0.283044 0.919593 0.2829 0.909419 0.273405 0.911476 0.28336 0.920571 0.273041 0.922157 0.283218 0.922114 0.255039 0.920062 0.238863 0.921052 0.234472 0.923775 0.23538 0.929369 0.253983 0.934895 0.263753 0.927988 0.282737 0.92516 0.269608 0.937386 0.272947 0.938515 0.283177 0.906903 0.269654 0.905634 0.25451 0.912156 0.254648 0.915624 0.269303 0.934262 0.269581 0.931993 0.256855 0.928513 0.24901 0.928512 0.223212 0.917128 0.220406 0.916725 0.220767 0.9041 0.217973 0.914088 0.228391 0.916363 0.246441 0.918617 0.23227 0.923487 0.240784 0.938248 0.22777 0.892821 0.216321 0.844542 0.206031 0.874322 0.212263 0.870581 0.286403 0.864795 0.285932 0.877377 0.285736 0.887924 0.285532 0.898823 0.285311 0.908672 0.285115 0.917425 0.284957 0.921216 0.269224 0.922914 0.284906 0.926665 0.284912 0.930758 0.284928 0.936388 0.28496 0.952837 0.284936 0.967867 0.284724 0.971593 0.266723 0.976556 0.284338 0.976161 0.284497 0.973686 0.284223 0.968029 0.284169 0.960033 0.284154 0.950775 0.284138 0.942494 0.284121 0.936182 0.284123 0.929809 0.284158 0.920968 0.284223 0.910111 0.284292 0.952943 0.272204 0.950019 0.262148 0.953976 0.282879 0.900909 0.229617 0.889642 0.217102 0.912068 0.234085 0.913562 0.243735 0.925227 0.239763 0.92311 0.245509 0.916786 0.225007 0.940372 0.24984 0.963568 0.250138 0.888081 0.264217 0.918118 0.254988 0.844126 0.209259 0.844951 0.221286 0.886769 0.216308 0.872985 0.215718 0.879346 0.309871 0.875833 0.306046 0.875654 0.308144 0.879007 0.306407 0.876295 0.294136 0.878977 0.293033 0.879812 0.300399 0.876175 0.301094 0.880254 0.30345 0.882198 0.297454 0.893175 0.297687 0.865817 0.349629 0.859181 0.350621 0.872916 0.327332 0.880252 0.326495 0.865713 0.330422 0.852822 0.359205 0.869257 0.322943 0.877097 0.301439 0.864055 0.301093 0.852819 0.327816 0.866118 0.317194 0.872679 0.31623 0.865658 0.301152 0.871305 0.301562 0.879516 0.300927 0.881998 0.315802 0.888262 0.347411 0.878301 0.348969 0.888479 0.326114 0.897047 0.325511 0.857019 0.363938 0.860381 0.359999 0.874655 0.358691 0.872015 0.364197 0.888629 0.3558 0.886097 0.359632 0.872907 0.361011 0.858128 0.36229 0.881706 0.320824 0.862423 0.349295 0.875903 0.346079 0.888714 0.341972 0.893556 0.318638 0.898554 0.296744 0.887564 0.300041 0.888147 0.300674 0.898715 0.300283 0.89883 0.31539 0.89048 0.315686 0.894383 0.353795 0.894065 0.354129 0.890921 0.356254 0.942171 0.318343 0.9529 0.304272 0.949521 0.305533 0.937705 0.320863 0.937122 0.30759 0.931259 0.318903 0.955735 0.293528 0.951772 0.293299 0.940544 0.294181 0.964624 0.302435 0.972337 0.302695 0.965634 0.321964 0.957594 0.320997 0.957663 0.333351 0.950951 0.332759 0.897685 0.323309 0.904388 0.314564 0.887892 0.312338 0.888936 0.316243 0.699423 0.809253 0.710111 0.860044 0.769921 0.8588 0.767468 0.81472 0.651885 0.801109 0.669688 0.860514 0.732293 0.902975 0.706453 0.911484 0.776292 0.895678 0.708787 0.707777 0.699329 0.757062 0.768846 0.767772 0.772602 0.721954 0.664887 0.686395 0.650433 0.740512 0.747107 0.630497 0.725753 0.664868 0.777288 0.6804 0.781693 0.64616 0.725318 0.609127 0.692228 0.642648 0.80056 0.5994 0.770358 0.607692 0.782072 0.622983 0.800562 0.614675 0.800928 0.579073 0.761234 0.587309 0.833192 0.607478 0.861399 0.630223 0.8843 0.609231 0.843136 0.586725 0.8212 0.622722 0.826645 0.645961 0.901226 0.710448 0.884907 0.6659 0.835069 0.680418 0.840872 0.722297 0.945964 0.693526 0.920299 0.645594 0.905039 0.812825 0.908209 0.760544 0.842467 0.768423 0.840209 0.815454 0.952947 0.809219 0.957487 0.749588 0.876198 0.901993 0.893705 0.861459 0.836187 0.859175 0.832541 0.895317 0.904659 0.909742 0.934213 0.864462 0.810883 0.940213 0.850482 0.929308 0.832833 0.919627 0.808275 0.929049 0.815494 0.955807 0.865735 0.940277 0.767163 0.931342 0.781069 0.920572 0.878641 0.308129 0.757688 0.947696 0.89571 0.326063 0.896265 0.333541 0.887647 0.308911 0.896958 0.311973 0.898883 0.293285 0.897963 0.301935 0.887703 0.301029 0.887878 0.29293 0.905567 0.324686 0.896731 0.344468 0.906991 0.342485 0.911791 0.324251 0.900908 0.335596 0.911043 0.336295 0.917143 0.326675 0.907054 0.325968 0.923285 0.31808 0.915184 0.316034 0.908088 0.344187 0.897103 0.344536 0.894607 0.344154 0.895142 0.343144 0.898106 0.350443 0.90726 0.349181 0.907871 0.308374 0.918398 0.309598 0.927049 0.310818 0.928305 0.298442 0.920004 0.298182 0.909927 0.298243 0.924036 0.321254 0.929162 0.318872 0.933826 0.332572 0.925629 0.337191 0.941158 0.32555 0.933051 0.316658 0.943727 0.330971 0.955075 0.325269 0.952983 0.320359 0.943791 0.324629 0.951332 0.316568 0.945126 0.31796 0.937248 0.318798 0.934373 0.326359 0.932584 0.333273 0.932192 0.3393 0.932318 0.343421 0.945607 0.340893 0.944776 0.336887 0.957129 0.33006 0.924262 0.313255 0.925922 0.300164 0.930502 0.299579 0.929283 0.311724 0.936126 0.298969 0.93441 0.310774 0.939442 0.311396 0.947027 0.310849 0.954323 0.310334 0.958291 0.298597 0.94944 0.298819 0.941532 0.298832 0.946483 0.315703 0.950981 0.300512 0.962811 0.314479 0.969751 0.300159 0.965388 0.298807 0.959326 0.311738 0.904541 0.316598 0.900452 0.33816 0.911146 0.334819 0.914268 0.314088 0.900043 0.343367 0.910827 0.338483 0.909045 0.340214 0.897918 0.345703 0.907714 0.311836 0.905082 0.324826 0.918749 0.311513 0.909052 0.30192 0.920236 0.301846 0.91718 0.297035 0.908155 0.297332 0.909931 0.29344 0.92041 0.293444 0.923496 0.310879 0.922253 0.327378 0.925923 0.331262 0.923469 0.332076 0.930583 0.312153 0.934974 0.302503 0.925817 0.29614 0.93758 0.293425 0.907706 0.300101 0.916398 0.300537 0.913653 0.315103 0.907277 0.314776 0.934984 0.298714 0.933344 0.311407 0.930312 0.318902 0.931529 0.345055 0.919853 0.347075 0.920283 0.347817 0.907379 0.350402 0.918259 0.323025 0.916863 0.340467 0.921166 0.335346 0.925584 0.327014 0.941044 0.340685 0.896265 0.352186 0.847118 0.363087 0.877923 0.355511 0.921992 0.300554 0.972463 0.301867 0.950828 0.303658 0.953466 0.293583 0.892951 0.350759 0.90326 0.337983 0.915596 0.322974 0.91417 0.333036 0.927312 0.326701 0.92504 0.320904 0.919699 0.342662 0.941871 0.316003 0.965254 0.318221 0.889956 0.306147 0.919598 0.314755 0.845891 0.359181 0.847322 0.346695 0.890112 0.35133 0.87636 0.352039 0.950166 0.457401 0.877438 0.456074 0.890333 0.455013 0.891902 0.457826 0.881771 0.45805 0.893433 0.460126 0.885457 0.459788 0.90216 0.458193 0.902038 0.46051 0.902093 0.455956 0.869348 0.456995 0.875073 0.458463 0.870949 0.459563 0.865831 0.459946 0.88002 0.459819 0.876379 0.459992 0.890696 0.462723 0.889158 0.462546 0.893089 0.46287 0.842115 0.409869 0.837426 0.409453 0.838646 0.414482 0.833434 0.414204 0.847163 0.42056 0.840709 0.41957 0.839445 0.430603 0.83503 0.428579 0.852464 0.422383 0.843659 0.433436 0.835601 0.419062 0.830596 0.418889 0.831257 0.427506 0.827802 0.427141 0.876435 0.450731 0.866399 0.449489 0.869211 0.447456 0.878828 0.448367 0.861778 0.461251 0.86329 0.45579 0.869445 0.454182 0.919848 0.462088 0.9244 0.459418 0.936505 0.460001 0.932799 0.462552 0.914853 0.457033 0.912969 0.45878 0.983064 0.742705 0.970242 0.681277 0.978343 0.807461 0.961861 0.871181 0.925 0.920764 0.93957 0.629718 0.896636 0.591965 0.87816 0.953598 0.820182 0.969676 0.849136 0.56846 0.801508 0.561342 0.753635 0.961316 0.693916 0.922274 0.756457 0.570463 0.715065 0.59271 0.62759 0.729278 0.628526 0.797321 0.647916 0.672373 0.648988 0.865355 0.678001 0.627321 0.970524 0.680324 0.983346 0.741752 0.978626 0.806509 0.962143 0.870229 0.925282 0.919811 0.896919 0.591012 0.939853 0.628765 0.878442 0.952645 0.819304 0.969461 0.80179 0.560389 0.849419 0.567507 0.753465 0.960832 0.694447 0.921544 0.715348 0.591757 0.756739 0.569509 0.628808 0.796368 0.627873 0.728326 0.648199 0.671421 0.648584 0.866073 0.678283 0.626368 0.411737 0.936637 0.212659 0.665019 0.175067 0.711347 0.264355 0.628942 0.154113 0.763611 0.154483 0.81452 0.911051 0.461039 0.528987 0.594894 0.945951 0.460521 0.339791 0.607004 0.94197 0.46307 0.896594 0.462992 0.902819 0.462828 0.939147 0.46498 0.588358 0.917245 0.930869 0.464578 0.500784 0.908814 0.937502 0.466649 0.178893 0.855096 0.23388 0.878659 0.317203 0.888741 0.409219 0.897533 0.412456 0.865776 0.413517 0.832907 0.415303 0.797177 0.41903 0.758087 0.424284 0.717135 0.429773 0.675932 0.433166 0.635493 0.431719 0.596003 0.42845 0.560105 0.426262 0.535529 0.166927 0.932027 0.089131 0.90146 0.412839 0.954955 0.280654 0.94225 0.092604 0.643694 0.172265 0.583534 0.034269 0.783775 0.048602 0.713913 0.288973 0.53753 0.047197 0.849027 0.9297 0.466322 0.910929 0.462701 0.429574 0.516361 0.573602 0.514995 0.911763 0.464455 0.904647 0.46452 0.91245 0.466086 0.906026 0.466148 0.920833 0.464349 0.682918 0.980037 0.544365 0.975068 0.92089 0.466118 0.274953 0.94136 0.412382 0.948959 0.078614 0.893197 0.159929 0.926191 0.045546 0.712112 0.029763 0.775258 0.174568 0.589926 0.093871 0.647648 0.286715 0.542233 0.039682 0.837587 0.568016 0.514851 0.425296 0.517534 0.89967 0.464526 0.715649 0.536695 0.89649 0.46445 0.90127 0.466162 0.89793 0.466107 0.92457 0.397524 0.934172 0.397517 0.90196 0.397532 0.543555 0.96576 0.912366 0.397543 0.914428 0.398827 0.902477 0.39881 0.887934 0.397535 0.886084 0.398748 0.939158 0.397548 0.916553 0.401268 0.903345 0.401161 0.918892 0.404595 0.904419 0.40426 0.88377 0.401252 0.880927 0.404722 0.905294 0.428912 0.905488 0.424961 0.912357 0.424967 0.91334 0.429138 0.905906 0.421495 0.911087 0.422154 0.904076 0.437412 0.90478 0.43319 0.913199 0.433998 0.911884 0.43877 0.90321 0.444063 0.903361 0.441071 0.909872 0.442542 0.908067 0.444769 0.902496 0.453271 0.918142 0.453706 0.928783 0.450398 0.93573 0.445715 0.939896 0.439756 0.941415 0.433124 0.940295 0.426582 0.937084 0.420446 0.931618 0.414911 0.921769 0.409549 0.905101 0.407893 0.876573 0.40992 0.866307 0.415598 0.859425 0.421874 0.854503 0.429219 0.846009 0.439206 0.853866 0.435555 0.855666 0.44134 0.849189 0.44441 0.859693 0.44628 0.853635 0.449316 0.859396 0.453185 0.889827 0.45174 0.862926 0.421743 0.859205 0.428005 0.869662 0.416377 0.857993 0.434235 0.859086 0.440054 0.916008 0.412068 0.903601 0.410265 0.918257 0.418305 0.91053 0.415402 0.913091 0.413541 0.921836 0.416936 0.92534 0.416062 0.879532 0.412275 0.931494 0.42114 0.923547 0.422692 0.927682 0.421785 0.926515 0.428111 0.931209 0.427509 0.93512 0.42705 0.936295 0.433481 0.92732 0.434037 0.932331 0.433786 0.925669 0.439922 0.930432 0.440034 0.934525 0.439972 0.912845 0.451737 0.922595 0.449614 0.907361 0.448978 0.915126 0.447877 0.918684 0.448912 0.909842 0.450414 0.901128 0.451294 0.929882 0.445604 0.921412 0.444811 0.925747 0.445329 0.862632 0.44473 0.90791 0.418325 0.914417 0.420366 0.918293 0.424021 0.92059 0.42877 0.920879 0.434155 0.919487 0.439514 0.911345 0.446349 0.90499 0.446728 0.916084 0.443813 0.891421 0.410387 0.891335 0.407994 0.8923 0.404278 0.892667 0.401108 0.892803 0.398753 0.893101 0.397518 0.953337 0.401538 0.958091 0.405199 0.9475 0.399036 0.96186 0.409791 0.964499 0.415028 0.96612 0.420717 0.967305 0.426924 0.967388 0.433074 0.966427 0.438883 0.96451 0.444202 0.961861 0.44894 0.958944 0.453645 0.955428 0.457592 0.951844 0.460785 0.948132 0.463506 0.945008 0.465414 0.9428 0.466896 0.940897 0.39766 0.894646 0.464377 0.893748 0.464327 0.895819 0.465909 0.894732 0.465707 0.898046 0.468336 0.895591 0.467749 0.894211 0.467377 0.894053 0.470321 0.892528 0.469525 0.89702 0.472125 0.906461 0.46806 0.901761 0.468217 0.901883 0.471147 0.906501 0.470456 0.912592 0.467918 0.912253 0.470089 0.920682 0.467923 0.920674 0.470154 0.9293 0.468129 0.929876 0.470181 0.93702 0.468441 0.938213 0.470896 0.942275 0.468514 0.942757 0.470744 0.890006 0.4495 0.852976 0.399065 0.859393 0.397599 0.847065 0.401675 0.84127 0.405026 0.953466 0.401386 0.958188 0.405089 0.947588 0.398916 0.961862 0.409747 0.964391 0.415022 0.965926 0.420729 0.967068 0.426923 0.967242 0.433135 0.966314 0.439008 0.964406 0.444378 0.961584 0.44912 0.958267 0.453722 0.954279 0.457569 0.865611 0.460368 0.870463 0.459645 0.869977 0.459728 0.865391 0.460791 0.875883 0.460032 0.875386 0.460071 0.889107 0.462568 0.889055 0.46259 0.836433 0.409343 0.829542 0.419704 0.832578 0.41403 0.832317 0.414141 0.82924 0.419624 0.86181 0.461905 0.861843 0.46256 0.95053 0.46075 0.946775 0.4634 0.943577 0.465237 0.941527 0.466697 0.893773 0.464335 0.893798 0.464342 0.894526 0.465626 0.894385 0.465571 0.940912 0.397604 0.893807 0.467247 0.893563 0.467166 0.891985 0.469369 0.891535 0.469419 0.940364 0.468392 0.940762 0.470517 0.866236 0.398834 0.873711 0.398813 0.877506 0.397514 0.870971 0.397493 0.865522 0.397455 0.860032 0.398872 0.856026 0.399014 0.861954 0.397568 0.860159 0.397664 0.853853 0.399094 0.935431 0.404681 0.948546 0.405179 0.944496 0.401457 0.931632 0.401375 0.939488 0.398861 0.927974 0.398901 0.870657 0.401504 0.861966 0.401526 0.855096 0.4016 0.850751 0.405417 0.858121 0.405363 0.867731 0.405188 0.850561 0.401575 0.848094 0.401586 0.842791 0.404957 0.845766 0.405198 0.9455 0.398818 0.951158 0.401375 0.955535 0.405156 0.94295 0.41441 0.9536 0.414936 0.951437 0.40979 0.938847 0.409148 0.863906 0.410047 0.854469 0.410101 0.8468 0.410021 0.843291 0.414792 0.850618 0.415218 0.858112 0.415702 0.958875 0.409842 0.961147 0.415077 0.9551 0.420509 0.945887 0.42022 0.947818 0.426423 0.955942 0.426574 0.962495 0.420748 0.963347 0.426902 0.947179 0.438896 0.955415 0.438781 0.95627 0.432802 0.948355 0.432791 0.963455 0.433109 0.96255 0.43901 0.93973 0.449457 0.950281 0.449152 0.953464 0.44429 0.944309 0.444589 0.960647 0.444424 0.957836 0.449233 0.928866 0.456683 0.941589 0.457208 0.946319 0.453375 0.933669 0.453285 0.954103 0.453514 0.949874 0.457416 0.877353 0.455968 0.882269 0.458025 0.892317 0.457757 0.890577 0.455047 0.886684 0.460112 0.89423 0.460211 0.902677 0.460467 0.90267 0.458019 0.902808 0.455334 0.869597 0.456984 0.865825 0.458435 0.871446 0.458982 0.8752 0.458466 0.877063 0.46 0.880928 0.46006 0.889224 0.462652 0.890358 0.462714 0.892541 0.462593 0.841603 0.409572 0.838159 0.409243 0.834209 0.413908 0.837981 0.414182 0.839885 0.419736 0.846514 0.420792 0.834481 0.428371 0.838869 0.430451 0.84343 0.433385 0.852102 0.422532 0.830666 0.418987 0.834732 0.419195 0.827717 0.426976 0.830662 0.427303 0.875777 0.450429 0.878346 0.448288 0.868619 0.446935 0.865577 0.448677 0.860982 0.459109 0.863516 0.455972 0.868771 0.453598 0.919955 0.462087 0.933215 0.46265 0.936971 0.460171 0.92452 0.45941 0.915797 0.455832 0.913434 0.458571 0.911682 0.460937 0.945768 0.460575 0.941689 0.463136 0.897291 0.462545 0.903757 0.462585 0.930828 0.464538 0.938505 0.464915 0.929084 0.466249 0.936418 0.466469 0.911714 0.462545 0.904992 0.464496 0.91226 0.464434 0.906001 0.466171 0.912549 0.466198 0.920438 0.466178 0.920682 0.464371 0.899694 0.464496 0.896238 0.464476 0.897673 0.46607 0.901142 0.46612 0.933851 0.397545 0.924135 0.397565 0.901567 0.397461 0.902111 0.398787 0.913998 0.398826 0.911927 0.397463 0.885568 0.398789 0.887707 0.397486 0.939027 0.397536 0.902897 0.401138 0.916139 0.401275 0.904075 0.404332 0.918631 0.404656 0.883077 0.401373 0.880245 0.404983 0.905419 0.428922 0.912942 0.429219 0.912006 0.425106 0.905474 0.425025 0.910791 0.422281 0.905844 0.421559 0.904305 0.436885 0.911907 0.438227 0.913047 0.433844 0.905052 0.432984 0.903203 0.443238 0.908124 0.443775 0.909903 0.441649 0.903445 0.440313 0.90285 0.452456 0.918742 0.45246 0.929033 0.449192 0.935553 0.444785 0.939489 0.439171 0.940895 0.433027 0.939916 0.426757 0.936762 0.420698 0.931211 0.415109 0.90461 0.407951 0.921344 0.40965 0.876099 0.410269 0.865754 0.416146 0.858856 0.422274 0.85408 0.42925 0.845714 0.439016 0.8487 0.443676 0.855252 0.440105 0.853622 0.434905 0.852614 0.447663 0.858958 0.44511 0.858176 0.451853 0.889824 0.45148 0.858947 0.427844 0.863033 0.422095 0.869857 0.416948 0.858451 0.439034 0.857612 0.433475 0.903128 0.410252 0.915613 0.4122 0.910336 0.415321 0.91773 0.418674 0.921258 0.417307 0.91279 0.413538 0.924944 0.416332 0.879341 0.412694 0.930972 0.4215 0.922517 0.423241 0.926792 0.422268 0.92506 0.428584 0.929895 0.42793 0.93442 0.427304 0.935453 0.433435 0.925801 0.434263 0.930838 0.433902 0.924243 0.439743 0.929152 0.439726 0.933786 0.439455 0.922618 0.448568 0.913071 0.450609 0.91472 0.447235 0.9073 0.44856 0.909883 0.449686 0.918464 0.448158 0.90106 0.450464 0.929479 0.444749 0.920523 0.44435 0.924927 0.444695 0.861743 0.443993 0.907779 0.418347 0.914012 0.420577 0.917709 0.42432 0.919641 0.429082 0.919962 0.434273 0.918588 0.43924 0.904848 0.446138 0.911088 0.445577 0.915514 0.4432 0.890897 0.408138 0.891059 0.410492 0.89188 0.404459 0.892481 0.401195 0.892744 0.398811 0.892774 0.397499 0.852987 0.39915 0.859402 0.397672 0.847027 0.401638 0.84144 0.40503 0.836758 0.409301 0.826856 0.427241 0.893304 0.464316 0.894343 0.465793 0.894093 0.464377 0.895401 0.465971 0.893628 0.467665 0.890751 0.471053 0.897653 0.467915 0.895086 0.467874 0.893376 0.47055 0.896513 0.470318 0.906138 0.467954 0.901291 0.467913 0.900442 0.470186 0.905385 0.470181 0.912382 0.468058 0.911527 0.470316 0.918635 0.470453 0.91977 0.468076 0.926488 0.470872 0.927835 0.468189 0.935282 0.468257 0.935209 0.471328 0.877915 0.500707 0.878197 0.500625 0.878935 0.505269 0.878376 0.50543 0.87849 0.500327 0.879515 0.504678 0.878776 0.499827 0.880077 0.503685 0.879041 0.499148 0.880596 0.502336 0.879273 0.498323 0.88105 0.500691 0.879461 0.49739 0.881414 0.498833 0.879595 0.496393 0.881685 0.496848 0.879673 0.495381 0.881831 0.494834 0.879688 0.4944 0.881855 0.492886 0.879641 0.493495 0.881754 0.491093 0.879517 0.492692 0.881496 0.489502 0.879256 0.49199 0.880966 0.488128 0.878724 0.491679 0.879976 0.487255 0.880441 0.487544 0.878985 0.491764 0.880259 0.509816 0.879427 0.510054 0.881118 0.508941 0.881951 0.507469 0.882719 0.50547 0.883385 0.503037 0.883918 0.500283 0.884295 0.497337 0.884501 0.494341 0.884524 0.491438 0.884373 0.488781 0.883999 0.486461 0.88321 0.484429 0.882394 0.483424 0.882124 0.514208 0.881033 0.51452 0.883251 0.513061 0.884343 0.511133 0.885349 0.508513 0.886222 0.505324 0.886921 0.501715 0.887414 0.497854 0.887677 0.493924 0.887702 0.490113 0.887496 0.486645 0.88698 0.48361 0.885938 0.48091 0.884878 0.479558 0.884506 0.51838 0.88317 0.518762 0.885883 0.516979 0.887217 0.514621 0.888447 0.511419 0.889514 0.507521 0.890369 0.503109 0.890971 0.49839 0.891293 0.493586 0.89132 0.488919 0.891054 0.484665 0.890395 0.481066 0.88919 0.477958 0.887817 0.476052 0.887367 0.522273 0.885807 0.522719 0.888975 0.520637 0.890533 0.517885 0.891968 0.514147 0.893214 0.509596 0.894212 0.504446 0.894915 0.498938 0.895291 0.493329 0.895322 0.487882 0.895 0.482915 0.894205 0.478779 0.892842 0.475169 0.891068 0.473073 0.890668 0.525829 0.888906 0.526332 0.892483 0.523982 0.894241 0.520876 0.895861 0.516656 0.897267 0.51152 0.898394 0.505707 0.899187 0.499489 0.899612 0.493158 0.899646 0.487009 0.899286 0.481354 0.898411 0.476638 0.894359 0.528996 0.892421 0.529549 0.896354 0.526965 0.898288 0.52355 0.900069 0.518911 0.901615 0.513263 0.902854 0.506872 0.903726 0.500036 0.904193 0.493075 0.904231 0.486314 0.903834 0.4801 0.902975 0.47504 0.898388 0.531728 0.896302 0.532323 0.900534 0.529543 0.902614 0.525869 0.904531 0.520877 0.906194 0.514801 0.907527 0.507925 0.908466 0.50057 0.908967 0.493081 0.909009 0.485806 0.908572 0.479151 0.907654 0.473824 0.902694 0.533986 0.900491 0.534614 0.90496 0.531679 0.907157 0.527799 0.909181 0.522528 0.910937 0.516111 0.912345 0.50885 0.913336 0.501084 0.913866 0.493175 0.913909 0.485494 0.91346 0.478418 0.912585 0.472851 0.907215 0.535736 0.904927 0.536388 0.909569 0.53334 0.91185 0.529311 0.913952 0.523838 0.915776 0.517175 0.917237 0.509635 0.918266 0.50157 0.918854 0.493342 0.918947 0.485357 0.91844 0.478006 0.91787 0.471971 0.914263 0.537286 0.911914 0.537955 0.916678 0.534827 0.919019 0.530693 0.921175 0.525076 0.923047 0.518239 0.924546 0.510502 0.925585 0.502224 0.926227 0.493754 0.926493 0.485583 0.925762 0.478045 0.924764 0.471485 0.921403 0.537724 0.919062 0.538392 0.92381 0.535275 0.926142 0.531156 0.930338 0.525761 0.93162 0.519674 0.933283 0.512932 0.932692 0.502839 0.933977 0.494768 0.934333 0.486371 0.933206 0.478784 0.931863 0.472204 0.92611 0.537268 0.92382 0.53792 0.928464 0.534872 0.932388 0.530343 0.937335 0.506755 0.941235 0.498334 0.941521 0.487989 0.940371 0.480184 0.938481 0.473907 0.930691 0.536256 0.928485 0.536884 0.934789 0.533043 0.935078 0.534703 0.932989 0.535298 0.938368 0.532576 0.947164 0.489068 0.947066 0.497764 0.946239 0.481893 0.944283 0.476284 0.939209 0.532632 0.937267 0.533185 0.941919 0.530982 0.950689 0.490156 0.950271 0.497772 0.95034 0.48345 0.948203 0.478162 0.943023 0.530074 0.941256 0.530577 0.945589 0.528338 0.95349 0.491089 0.952472 0.498024 0.953154 0.485389 0.951415 0.480527 0.946464 0.527065 0.944898 0.52751 0.948879 0.525086 0.955336 0.498108 0.955494 0.49227 0.955142 0.488211 0.954263 0.484425 0.949389 0.475505 0.954052 0.482326 0.94757 0.475109 0.945693 0.473082 0.943613 0.471998 0.950577 0.521636 0.949187 0.522238 0.951775 0.520708 0.950886 0.519379 0.952605 0.518141 0.95447 0.515316 0.952742 0.516616 0.878125 0.495997 0.943537 0.514246 0.944979 0.511457 0.945299 0.511731 0.944004 0.514141 0.946866 0.510467 0.945612 0.512005 0.946775 0.509925 0.944125 0.524447 0.943125 0.523168 0.943363 0.52176 0.944265 0.522893 0.943213 0.51865 0.9436 0.520352 0.942839 0.519741 0.942465 0.520831 0.942508 0.517563 0.943036 0.516979 0.944472 0.514036 0.943564 0.516394 0.946664 0.509365 0.948503 0.507957 0.948316 0.508687 0.949207 0.508705 0.948096 0.509397 0.949608 0.50791 0.950009 0.507096 0.951195 0.506751 0.950679 0.507606 0.951005 0.508659 0.950161 0.508443 0.951647 0.507843 0.952323 0.510866 0.951744 0.509448 0.952587 0.5089 0.953318 0.510638 0.952296 0.507042 0.953444 0.508317 0.954198 0.510416 0.954069 0.512878 0.953344 0.512779 0.95222 0.51488 0.952538 0.512757 0.952777 0.515115 0.953314 0.515413 0.952001 0.51802 0.951641 0.517475 0.949848 0.518868 0.951263 0.516984 0.950071 0.519673 0.950291 0.520481 0.948367 0.522605 0.94826 0.52146 0.946642 0.521256 0.948152 0.520315 0.946704 0.522693 0.946766 0.524131 0.94537 0.524785 0.945389 0.52319 0.944404 0.521338 0.945409 0.521595 0.948517 0.508521 0.947425 0.509189 0.946164 0.510225 0.943731 0.513771 0.942852 0.515989 0.942484 0.51808 0.944874 0.511783 0.950283 0.508511 0.949456 0.508269 0.942699 0.51973 0.943487 0.520694 0.951552 0.510694 0.95099 0.509314 0.944633 0.521012 0.946034 0.520645 0.951461 0.514432 0.951791 0.512457 0.947604 0.519694 0.949207 0.518265 0.95053 0.516413 0.954352 0.507334 0.955064 0.51004 0.953029 0.50566 0.954691 0.513093 0.953563 0.516187 0.942931 0.511155 0.945738 0.50837 0.941124 0.514785 0.948237 0.525023 0.946042 0.527051 0.950358 0.522206 0.940778 0.525984 0.939919 0.523165 0.942236 0.527579 0.940031 0.519157 0.94836 0.506655 0.95038 0.505668 0.951792 0.505283 0.952106 0.519194 0.94408 0.527997 0.955136 0.505085 0.955458 0.508799 0.953996 0.503048 0.954947 0.51289 0.953571 0.516724 0.940392 0.509704 0.943959 0.505926 0.937487 0.514053 0.946965 0.527152 0.943743 0.529685 0.949863 0.52392 0.936263 0.528363 0.934831 0.524989 0.938515 0.530358 0.93544 0.520327 0.947235 0.504116 0.949823 0.503295 0.952034 0.502955 0.951882 0.52041 0.941028 0.53079 0.956255 0.501869 0.956376 0.507194 0.955436 0.512282 0.95378 0.516679 0.954272 0.512902 0.953969 0.514386 0.955477 0.513065 0.955509 0.511632 0.956562 0.510151 0.957541 0.50583 0.957528 0.506237 0.957401 0.500104 0.957323 0.498901 0.956684 0.496896 0.956413 0.492938 0.956425 0.492794 0.955922 0.48933 0.955605 0.489791 0.952251 0.480529 0.95403 0.483685 0.955302 0.484788 0.955335 0.486204 0.955539 0.486154 0.954877 0.485325 0.956687 0.508947 0.956754 0.495687 0.955045 0.487387 0.877848 0.505182 0.877652 0.500582 0.87737 0.504506 0.877412 0.500243 0.876974 0.503437 0.877218 0.499703 0.87668 0.502023 0.877063 0.498994 0.876501 0.50033 0.876979 0.498142 0.876446 0.498438 0.87696 0.497191 0.876522 0.496436 0.877006 0.496186 0.876728 0.49442 0.877115 0.495174 0.877054 0.492488 0.877281 0.494204 0.877479 0.49073 0.877498 0.49332 0.877999 0.489197 0.877767 0.492546 0.878719 0.487808 0.878144 0.491879 0.879235 0.487423 0.878402 0.491725 0.878643 0.509686 0.877934 0.508686 0.877348 0.507101 0.876912 0.505005 0.876647 0.502497 0.876565 0.499694 0.876669 0.496727 0.876956 0.493734 0.877416 0.490859 0.878045 0.488251 0.878803 0.485988 0.879891 0.48389 0.880652 0.483253 0.880004 0.514038 0.879075 0.512727 0.878307 0.510649 0.877736 0.507903 0.877388 0.504616 0.87728 0.500942 0.877417 0.497054 0.877793 0.493132 0.878389 0.48936 0.879214 0.485947 0.880199 0.482989 0.881623 0.480314 0.882641 0.479405 0.881911 0.518172 0.880775 0.516569 0.879836 0.51403 0.879138 0.510673 0.878713 0.506655 0.878582 0.502165 0.878749 0.497412 0.879208 0.492618 0.879955 0.488021 0.881001 0.483899 0.88231 0.480367 0.883909 0.47731 0.885135 0.475926 0.884336 0.52203 0.883011 0.520159 0.881915 0.517195 0.8811 0.513276 0.880604 0.508586 0.88045 0.503344 0.880646 0.497795 0.881181 0.492199 0.882059 0.48684 0.883257 0.482017 0.884772 0.477872 0.886828 0.474331 0.888116 0.472377 0.887245 0.525554 0.885749 0.523442 0.884512 0.520096 0.883592 0.515673 0.883032 0.510379 0.882858 0.504462 0.883079 0.498199 0.883683 0.491882 0.884656 0.485819 0.885976 0.480334 0.887771 0.475644 0.888962 0.472096 0.890594 0.528694 0.888949 0.526372 0.887589 0.522693 0.886578 0.51783 0.885962 0.512009 0.885771 0.505504 0.886014 0.498617 0.886678 0.491672 0.887734 0.484992 0.889161 0.478945 0.891005 0.474124 0.894335 0.531403 0.892565 0.528905 0.891102 0.524947 0.890014 0.519714 0.889351 0.513452 0.889146 0.506453 0.889407 0.499043 0.890122 0.491571 0.891258 0.484384 0.892815 0.477978 0.894695 0.473363 0.898413 0.533643 0.896544 0.531004 0.894999 0.526825 0.89385 0.5213 0.893151 0.514687 0.892934 0.507295 0.893209 0.499472 0.893965 0.491581 0.895164 0.483992 0.89686 0.477387 0.898865 0.473076 0.902769 0.53538 0.900829 0.53264 0.899224 0.5283 0.898031 0.522562 0.897305 0.515695 0.897079 0.50802 0.897366 0.499895 0.89815 0.491701 0.899396 0.483821 0.901449 0.477074 0.903819 0.472976 0.909699 0.53692 0.907707 0.534109 0.906061 0.529655 0.904836 0.523767 0.904091 0.516721 0.90386 0.508844 0.904153 0.500507 0.904958 0.492099 0.906237 0.484012 0.908008 0.477129 0.910034 0.473198 0.916854 0.53736 0.91487 0.534559 0.91323 0.530122 0.914164 0.524465 0.913164 0.518196 0.913437 0.51134 0.91133 0.50108 0.912131 0.492703 0.913405 0.484646 0.91513 0.47783 0.916994 0.473623 0.92166 0.536911 0.919719 0.534172 0.91917 0.529284 0.917172 0.505296 0.919838 0.496406 0.920904 0.486229 0.92238 0.479225 0.924263 0.474614 0.926405 0.535913 0.924828 0.532245 0.931019 0.534378 0.929686 0.53188 0.92797 0.487724 0.927599 0.495894 0.929366 0.480734 0.931925 0.475167 0.935435 0.53233 0.934387 0.530379 0.933232 0.488977 0.932764 0.496065 0.934736 0.482159 0.937602 0.476887 0.93959 0.529799 0.938848 0.527798 0.937731 0.490249 0.936964 0.496523 0.939215 0.484123 0.942421 0.479379 0.943421 0.526821 0.942722 0.524593 0.94207 0.497013 0.942329 0.491435 0.943599 0.487511 0.946933 0.482758 0.949756 0.480976 0.945342 0.476815 0.940652 0.473783 0.947564 0.521395 0.9466 0.520277 0.951324 0.514898 0.949518 0.517928 0.928377 0.510114 0.926885 0.51291 0.927854 0.512845 0.929178 0.51043 0.92998 0.510746 0.931406 0.509225 0.930823 0.508639 0.92835 0.521984 0.930534 0.523359 0.930891 0.521821 0.928964 0.520607 0.929579 0.519229 0.928441 0.517467 0.927597 0.51852 0.926179 0.516255 0.926753 0.519573 0.927195 0.51571 0.928211 0.515165 0.928823 0.512781 0.932374 0.506682 0.930239 0.508053 0.932657 0.507439 0.93294 0.508196 0.934517 0.507536 0.93451 0.506707 0.936567 0.505592 0.934502 0.505878 0.936317 0.506456 0.936067 0.50732 0.937546 0.507578 0.93807 0.506748 0.938901 0.508422 0.940036 0.50988 0.941088 0.509726 0.939772 0.507879 0.940713 0.507314 0.938594 0.505926 0.942911 0.511998 0.942269 0.509491 0.941755 0.511888 0.940774 0.511818 0.940867 0.513981 0.941724 0.514237 0.941696 0.517149 0.942674 0.514592 0.940898 0.516619 0.940099 0.51609 0.938667 0.517973 0.939267 0.518807 0.937547 0.521739 0.939868 0.519641 0.937153 0.52057 0.936759 0.519402 0.934851 0.520311 0.935057 0.52176 0.932933 0.523788 0.935263 0.523209 0.932985 0.522196 0.933038 0.520604 0.931248 0.520284 0.932573 0.508007 0.934161 0.507367 0.930964 0.509008 0.927841 0.514787 0.928411 0.512543 0.928106 0.516928 0.929515 0.510546 0.935671 0.507169 0.937081 0.507438 0.929093 0.51864 0.93071 0.519671 0.938351 0.508298 0.9394 0.509723 0.932552 0.520045 0.934434 0.519715 0.940079 0.511519 0.940113 0.513519 0.936336 0.518792 0.938116 0.517377 0.939405 0.515521 0.943638 0.508965 0.941943 0.506311 0.939071 0.504531 0.94388 0.51543 0.944335 0.512165 0.927944 0.506963 0.925069 0.509715 0.923231 0.513349 0.935271 0.526189 0.938229 0.524222 0.940839 0.521447 0.923484 0.521848 0.925731 0.524779 0.928789 0.526502 0.922597 0.517761 0.93396 0.504385 0.931029 0.505302 0.936534 0.504088 0.942769 0.518413 0.932116 0.527039 0.945351 0.507568 0.943089 0.503744 0.939896 0.502018 0.945354 0.516015 0.946118 0.511811 0.925289 0.504712 0.920962 0.50815 0.918385 0.51252 0.934537 0.528948 0.938552 0.526478 0.941809 0.523283 0.918305 0.523665 0.921702 0.527196 0.925959 0.529352 0.917212 0.518867 0.933078 0.501722 0.929349 0.502508 0.936447 0.501609 0.943896 0.519878 0.930309 0.529931 0.948005 0.505607 0.944871 0.499392 0.947806 0.516062 0.9491 0.511191 0.953215 0.511264 0.952698 0.512701 0.951135 0.50884 0.950868 0.504414 0.946032 0.497811 0.946155 0.49879 0.9504 0.504692 0.944108 0.496015 0.944681 0.492183 0.945966 0.489086 0.945497 0.488606 0.944291 0.491984 0.951345 0.48426 0.948386 0.485293 0.952907 0.485943 0.952013 0.507755 0.944606 0.494766 0.94856 0.486751 0.889967 0.448966 0.879572 0.4873 0.878531 0.491695 0.881189 0.483034 0.883359 0.479059 0.88597 0.475436 0.826451 0.427416 0.889758 0.472115 0.881748 0.482959 0.884054 0.478968 0.886811 0.475429 0.942835 0.472365 0.877975 0.397658 0.883515 0.397651 0.873951 0.397664 0.870831 0.397671 0.867889 0.397674 0.918562 0.397639 0.925482 0.397634 0.901603 0.397646 0.909465 0.397642 0.891034 0.397645 0.929288 0.397637 0.894812 0.397645 0.931273 0.397662 0.86549 0.397668 0.931235 0.397655 0.882529 0.39765 0.877003 0.397658 0.871595 0.397671 0.868659 0.397671 0.868707 0.397667 0.925845 0.397644 0.918784 0.397657 0.909614 0.397666 0.901249 0.39767 0.890498 0.397656 0.92961 0.397643 0.894099 0.397656 0.867711 0.397671 0.900103 0.397679 0.595916 0.679782 0.593633 0.724091 0.587548 0.772055 0.579229 0.819401 0.570764 0.860428 0.56898 0.893979 0.055194 0.327681 0.056512 0.244825 0.056323 0.176259 0.056343 0.11532 0.057144 0.041836 0.468306 0.320445 0.459246 0.232082 0.470583 0.402538 0.456894 0.171519 0.044392 0.51728 0.04804 0.442488 0.039555 0.560029 0.472222 0.467543 0.655545 0.572596 0.685594 0.967391 0.590033 0.92387 0.595756 0.680499 0.590769 0.76975 0.682275 0.551691 0.647404 0.965201 0.571758 0.851938 0.600135 0.64164 0.623018 0.605621 0.617347 0.944413 0.720327 0.535205</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2277\" offset=\"0\" source=\"#LOD3spShape-lib-map1-array\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"LOD3spShape-lib-vertices\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#LOD3spShape-lib-positions\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<polylist count=\"2144\" material=\"blinn3SG\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#LOD3spShape-lib-vertices\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"NORMAL\" source=\"#LOD3spShape-lib-normals\" />\r\n\t\t\t\t\t<input offset=\"2\" semantic=\"TEXCOORD\" set=\"0\" source=\"#LOD3spShape-lib-map1\" />\r\n\t\t\t\t\t<vcount>4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3</vcount>\r\n\t\t\t\t\t<p>89 0 23 243 1 26 90 2 28 6 3 29 91 4 30 243 1 26 89 0 23 5 5 31 92 6 33 244 7 35 91 4 30 5 5 31 299 8 36 244 7 35 92 6 33 218 9 37 7 10 39 95 11 41 93 12 42 8 13 57 93 12 42 95 11 41 94 14 61 9 15 62 96 16 65 245 17 66 89 0 23 6 3 29 89 0 23 245 17 66 97 18 67 5 5 31 97 18 67 245 17 66 98 19 68 11 20 69 98 19 68 245 17 66 96 16 65 10 21 70 97 18 67 246 22 71 92 6 33 5 5 31 92 6 33 246 22 71 300 23 72 218 9 37 300 23 72 246 22 71 99 24 84 219 25 85 99 24 84 246 22 71 97 18 67 11 20 69 12 26 86 247 27 89 93 12 42 9 15 62 93 12 42 247 27 89 100 28 90 8 13 57 13 29 135 102 30 137 101 31 138 14 32 139 101 31 138 102 30 137 7 10 39 8 13 57 103 33 140 248 34 141 98 19 68 10 21 70 98 19 68 248 34 141 104 35 142 11 20 69 104 35 142 248 34 141 105 36 200 16 37 246 105 36 200 248 34 141 103 33 140 15 38 249 100 28 90 107 39 252 101 31 138 8 13 57 101 31 138 107 39 252 106 40 253 14 32 139 108 41 254 109 42 256 13 29 135 14 32 139 18 43 259 109 42 256 108 41 254 17 44 260 106 40 253 111 45 262 108 41 254 14 32 139 108 41 254 111 45 262 110 46 265 17 44 260 20 47 266 112 48 283 113 49 285 19 50 286 113 49 285 112 48 283 18 43 259 17 44 260 110 46 265 115 51 289 113 49 285 17 44 260 113 49 285 115 51 289 114 52 290 19 50 286 22 53 291 116 54 292 117 55 293 21 56 294 117 55 293 116 54 292 20 47 266 19 50 286 114 52 290 119 57 295 117 55 293 19 50 286 117 55 293 119 57 295 118 58 296 21 56 294 23 59 297 249 60 298 120 61 300 24 62 303 120 61 300 249 60 298 22 53 291 21 56 294 118 58 296 122 63 304 120 61 300 21 56 294 120 61 300 122 63 304 121 64 884 24 62 303 26 65 885 339 66 886 340 67 887 123 68 888 123 68 888 340 67 887 341 69 889 28 70 890 341 69 889 340 67 887 124 71 891 27 72 892 124 71 891 340 67 887 339 66 886 25 73 893 125 74 894 250 75 895 307 76 896 29 77 897 307 76 896 250 75 895 126 78 898 227 79 899 126 78 898 250 75 895 123 68 888 28 70 890 123 68 888 250 75 895 125 74 894 26 65 885 126 78 898 127 80 900 45 81 901 227 79 899 126 78 898 28 70 890 30 82 902 127 80 900 128 83 0 251 84 1 308 85 2 31 86 3 308 85 74 251 84 75 129 87 76 228 88 77 129 87 76 251 84 75 130 89 78 33 90 79 130 89 4 251 84 1 128 83 0 32 91 12 131 92 13 252 93 14 309 94 15 34 95 16 309 94 15 252 93 14 128 83 0 31 86 3 128 83 0 252 93 14 132 96 17 32 91 12 132 96 17 252 93 14 131 92 13 35 97 18 133 98 82 253 99 83 132 96 17 35 97 18 132 96 17 253 99 83 134 100 91 32 91 12 134 100 91 253 99 83 156 101 92 36 102 93 156 101 92 253 99 83 133 98 82 38 103 94 135 104 96 254 105 97 136 106 98 39 107 101 136 106 98 254 105 97 137 108 102 37 109 105 137 108 102 254 105 97 133 98 82 35 97 18 133 98 82 254 105 97 135 104 96 38 103 94 104 35 142 255 110 903 99 24 84 11 20 69 99 24 84 255 110 903 310 111 904 219 25 85 310 111 904 255 110 903 138 112 905 1978 113 906 138 112 905 255 110 903 104 35 142 16 37 246 204 114 5 285 115 6 139 116 7 59 117 8 139 116 7 285 115 6 203 118 9 57 119 10 105 36 200 256 120 907 140 121 908 16 37 246 140 121 908 256 120 907 135 104 909 39 107 910 135 104 909 256 120 907 141 122 911 38 103 912 141 122 911 256 120 907 105 36 200 15 38 249 138 112 905 257 123 913 142 124 914 1978 113 906 142 124 914 257 123 913 154 125 915 229 126 916 154 125 915 257 123 913 140 121 908 39 107 910 140 121 908 257 123 913 138 112 905 16 37 246 143 127 11 284 128 19 202 129 20 60 130 21 203 118 9 284 128 19 143 127 11 57 119 10 144 131 917 56 132 918 2065 133 919 2066 134 920 311 135 921 258 136 922 125 74 894 29 77 897 125 74 894 258 136 922 145 137 923 26 65 885 145 137 80 258 136 81 146 138 95 40 139 99 146 138 95 258 136 81 311 135 100 41 140 103 43 141 924 147 142 925 148 143 926 42 144 927 148 143 926 147 142 925 23 59 297 24 62 303 149 145 928 259 146 929 124 71 891 25 73 893 124 71 891 259 146 929 150 147 976 27 72 892 150 147 976 259 146 929 147 142 925 43 141 924 147 142 925 259 146 929 149 145 928 23 59 297 121 64 884 152 148 978 148 143 926 24 62 303 148 143 926 152 148 978 151 149 980 42 144 927 231 150 981 30 82 902 28 70 890 341 69 889 231 150 981 341 69 889 27 72 892 44 151 982 153 152 104 260 153 106 129 87 76 33 90 79 129 87 76 260 153 106 312 154 107 228 88 77 312 154 107 260 153 106 146 138 95 41 140 103 146 138 95 260 153 106 153 152 104 40 139 99 154 125 110 261 155 111 313 156 112 229 126 113 313 156 112 261 155 111 155 157 114 230 158 115 155 157 114 261 155 111 136 106 98 37 109 105 136 106 98 261 155 111 154 125 110 39 107 101 153 152 104 262 159 108 181 160 109 40 139 99 181 160 116 262 159 117 134 100 91 36 102 93 134 100 91 262 159 117 130 89 4 32 91 12 130 89 78 262 159 108 153 152 104 33 90 79 137 108 102 263 161 118 155 157 114 37 109 105 155 157 114 263 161 118 314 162 119 230 158 115 314 162 119 263 161 118 131 92 13 34 95 16 131 92 13 263 161 118 137 108 102 35 97 18 151 149 980 241 163 983 157 164 985 42 144 927 157 164 985 241 163 983 242 165 987 83 166 1012 159 167 1013 264 168 1016 160 169 1017 44 151 982 160 169 1017 264 168 1016 239 170 1018 81 171 1019 239 170 1018 264 168 1016 238 172 1020 82 173 1023 238 172 1020 264 168 1016 159 167 1013 43 141 924 82 173 1023 238 172 1020 157 164 985 83 166 1012 157 164 985 238 172 1020 43 141 924 42 144 927 160 169 1017 265 174 1036 231 150 981 44 151 982 231 150 981 265 174 1036 232 175 1038 30 82 902 232 175 1038 265 174 1036 237 176 1039 80 177 1040 237 176 1039 265 174 1036 160 169 1017 81 171 1019 94 14 61 163 178 1041 164 179 1042 9 15 62 165 180 1043 266 181 1045 166 182 1046 46 183 1047 166 182 1046 266 181 1045 163 178 1041 94 14 61 90 2 28 288 184 1048 207 185 1049 6 3 29 164 179 1042 167 186 1050 12 26 86 9 15 62 166 182 1046 267 187 1051 168 188 1052 46 183 1047 168 188 1052 267 187 1051 169 189 1053 47 190 1054 169 189 1053 267 187 1051 95 11 41 7 10 39 95 11 41 267 187 1051 166 182 1046 94 14 61 207 185 1049 287 191 1055 96 16 65 6 3 29 96 16 65 287 191 1055 206 192 1056 10 21 70 170 193 22 268 194 2246 171 195 24 63 196 25 171 195 24 268 194 2246 172 197 2247 58 198 27 172 197 1057 268 194 1058 173 199 1059 64 200 1060 173 199 1059 268 194 1058 170 193 1061 62 201 1062 172 197 2247 269 202 2248 174 203 32 58 198 27 174 203 32 269 202 2248 175 204 2249 61 205 34 175 204 1063 269 202 1064 176 206 1065 65 207 1066 176 206 1065 269 202 1064 172 197 1057 64 200 1060 175 204 2249 270 208 2250 177 209 38 61 205 34 177 209 38 270 208 2250 178 210 2251 66 211 40 178 210 1067 270 208 1068 179 212 1069 67 213 1070 179 212 1069 270 208 1068 175 204 1063 65 207 1066 180 214 1071 271 215 1072 149 145 928 25 73 893 149 145 928 271 215 1072 249 60 298 23 59 297 249 60 298 271 215 1072 48 216 1073 22 53 291 150 147 976 159 167 1013 44 151 982 27 72 892 159 167 1013 150 147 976 43 141 924 48 216 1073 272 217 1074 116 54 292 22 53 291 116 54 292 272 217 1074 49 218 1075 20 47 266 49 218 1075 273 219 1076 112 48 283 20 47 266 112 48 283 273 219 1076 50 220 1077 18 43 259 50 220 1077 274 221 1078 109 42 256 18 43 259 109 42 256 274 221 1078 51 222 1079 13 29 135 169 189 1053 275 223 1080 52 224 1081 47 190 1054 51 222 1079 275 223 1080 102 30 137 13 29 135 102 30 137 275 223 1080 169 189 1053 7 10 39 206 192 1056 286 225 1082 103 33 140 10 21 70 103 33 140 286 225 1082 53 226 1083 15 38 249 53 226 1083 276 227 1084 141 122 911 15 38 249 141 122 911 276 227 1084 54 228 1085 38 103 912 156 101 1086 277 229 1087 55 230 1088 36 102 1089 54 228 1085 277 229 1087 156 101 1086 38 103 912 55 230 1088 182 231 1090 181 160 1091 36 102 1089 181 160 1091 182 231 1090 56 132 918 40 139 1092 202 129 20 283 232 43 183 233 44 60 130 21 201 234 45 68 235 46 183 233 44 283 232 43 56 132 918 144 131 917 145 137 923 40 139 1092 144 131 917 321 236 1093 339 66 886 26 65 885 145 137 923 276 227 1084 2069 237 1094 2070 238 1095 54 228 1085 290 239 47 208 240 48 184 241 49 278 242 50 210 243 51 290 239 47 278 242 50 185 244 52 2068 245 1096 2069 237 1094 276 227 1084 53 226 1083 277 229 1087 2071 246 1097 2073 247 1098 55 230 1088 289 248 53 209 249 54 186 250 55 279 251 56 208 240 48 289 248 53 279 251 56 184 241 49 2070 238 1095 2071 246 1097 277 229 1087 54 228 1085 275 223 1080 2075 252 1099 2076 253 1100 52 224 1081 294 254 2265 212 255 58 2053 256 59 280 257 60 214 258 1101 294 254 1102 280 257 1103 187 259 1104 2074 260 1105 2075 252 1099 275 223 1080 51 222 1079 286 225 1082 2072 261 1106 2068 245 1096 53 226 1083 292 262 63 210 243 51 185 244 52 2052 263 64 274 221 1078 2078 264 1107 2074 260 1105 51 222 1079 293 265 1108 214 258 1101 187 259 1104 2055 266 1109 213 267 1110 293 265 1108 2055 266 1109 188 268 1111 2079 269 1112 2078 264 1107 274 221 1078 50 220 1077 273 219 1076 2080 270 1113 2079 269 1112 50 220 1077 295 271 1114 213 267 1110 188 268 1111 2056 272 1115 215 273 1116 295 271 1114 2056 272 1115 189 274 1117 2081 275 1118 2080 270 1113 273 219 1076 49 218 1075 271 215 1072 2084 276 1119 2085 277 1120 48 216 1073 297 278 1121 216 279 1122 190 280 1123 281 281 1124 217 282 87 297 278 73 281 281 2271 191 283 88 2083 284 1125 2084 276 1119 271 215 1072 180 214 1071 272 217 1074 2082 285 1126 2081 275 1118 49 218 1075 296 286 1127 215 273 1116 189 274 1117 2057 287 1128 216 279 1122 296 286 1127 2057 287 1128 190 280 1123 2085 277 1120 2082 285 1126 272 217 1074 48 216 1073 182 231 1090 2064 288 1129 2065 133 919 56 132 918 291 289 120 211 290 121 2051 291 122 2050 292 123 209 249 54 291 289 120 2050 292 123 186 250 55 2073 247 1098 2064 288 1129 182 231 1090 55 230 1088 211 290 121 298 293 124 282 294 125 2051 291 122 298 293 124 323 295 126 322 296 127 282 294 125 70 297 128 192 298 129 139 116 7 57 119 10 59 117 8 139 116 7 192 298 129 71 299 130 69 300 131 193 301 132 143 127 11 60 130 21 70 297 128 57 119 10 143 127 11 193 301 132 73 302 133 194 303 134 170 193 22 63 196 25 62 201 1062 170 193 1061 194 303 1130 74 304 1131 59 117 8 71 299 130 205 305 136 204 114 5 62 201 1062 74 304 1131 195 306 1132 173 199 1059 64 200 1060 173 199 1059 195 306 1132 75 307 1133 64 200 1060 75 307 1133 196 308 1134 176 206 1065 65 207 1066 176 206 1065 196 308 1134 76 309 1135 77 310 1136 197 311 1137 178 210 1067 67 213 1070 66 211 40 178 210 2251 197 311 2267 78 312 143 65 207 1066 76 309 1135 198 313 1138 179 212 1069 77 310 1136 67 213 1070 179 212 1069 198 313 1138 72 314 201 199 315 202 183 233 44 68 235 46 69 300 131 60 130 21 183 233 44 199 315 202 200 316 203 72 314 201 68 235 46 201 234 45 338 317 204 200 316 203 201 234 45 337 318 205 338 317 204 337 318 205 66 211 40 78 312 143 283 232 43 336 319 206 337 318 205 201 234 45 177 209 38 336 319 206 335 320 207 61 205 34 284 128 19 334 321 208 335 320 207 202 129 20 174 203 32 334 321 208 333 322 209 58 198 27 285 115 6 332 323 210 333 322 209 203 118 9 171 195 24 332 323 210 331 324 232 63 196 25 331 324 232 204 114 5 205 305 136 330 325 233 331 324 232 330 325 233 73 302 133 63 196 25 329 326 234 292 262 63 2052 263 64 2054 327 235 2076 253 1100 2077 328 1139 328 329 1140 52 224 1081 52 224 1081 328 329 1140 327 330 1141 47 190 1054 287 191 1055 326 331 1142 327 330 1141 206 192 1056 168 188 1052 326 331 1142 325 332 1143 46 183 1047 288 184 1048 324 333 1144 325 332 1143 207 185 1049 193 301 132 289 248 53 208 240 48 70 297 128 209 249 54 289 248 53 193 301 132 69 300 131 210 243 51 292 262 63 205 305 136 71 299 130 208 240 48 290 239 47 192 298 129 70 297 128 192 298 129 290 239 47 210 243 51 71 299 130 199 315 202 291 289 120 209 249 54 69 300 131 211 290 121 291 289 120 199 315 202 72 314 201 292 262 63 329 326 234 330 325 233 205 305 136 2053 256 59 212 255 58 329 326 234 2054 327 235 195 306 1132 293 265 1108 213 267 1110 75 307 1133 214 258 1101 293 265 1108 195 306 1132 74 304 1131 212 255 58 294 254 2265 194 303 134 73 302 133 194 303 1130 294 254 1102 214 258 1101 74 304 1131 213 267 1110 295 271 1114 196 308 1134 75 307 1133 196 308 1134 295 271 1114 215 273 1116 76 309 1135 215 273 1116 296 286 1127 198 313 1138 76 309 1135 198 313 1138 296 286 1127 216 279 1122 77 310 1136 323 295 126 217 282 87 191 283 88 322 296 127 217 282 87 323 295 126 338 317 204 78 312 143 216 279 1122 297 278 1121 197 311 1137 77 310 1136 197 311 2267 297 278 73 217 282 87 78 312 143 200 316 203 298 293 124 211 290 121 72 314 201 247 27 89 301 334 1145 220 335 1146 100 28 90 221 336 1147 301 334 1145 247 27 89 12 26 86 107 39 252 302 337 1148 222 338 1149 106 40 253 220 335 1146 302 337 1148 107 39 252 100 28 90 111 45 262 303 339 1150 223 340 1151 110 46 265 222 338 1149 303 339 1150 111 45 262 106 40 253 115 51 289 304 341 1152 224 342 1153 114 52 290 223 340 1151 304 341 1152 115 51 289 110 46 265 119 57 295 305 343 1154 225 344 1155 118 58 296 224 342 1153 305 343 1154 119 57 295 114 52 290 122 63 304 306 345 1156 226 346 1157 121 64 884 225 344 1155 306 345 1156 122 63 304 118 58 296 152 148 978 346 347 1158 345 348 1159 151 149 980 152 148 978 121 64 884 226 346 1157 346 347 1158 241 163 983 344 349 1160 343 350 1161 242 165 987 241 163 983 151 149 980 345 348 1159 344 349 1160 167 186 1050 315 351 1162 221 336 1147 12 26 86 232 175 1038 316 352 1163 127 80 900 30 82 902 127 80 900 316 352 1163 162 353 1164 45 81 901 162 353 1164 316 352 1163 235 354 1165 79 355 1166 235 354 1165 316 352 1163 232 175 1038 80 177 1040 234 356 1167 317 357 1168 235 354 1165 80 177 1040 235 354 1165 317 357 1168 233 358 1169 79 355 1166 233 358 1169 317 357 1168 87 359 1170 3 360 1171 87 359 1170 317 357 1168 234 356 1167 2 361 1172 236 362 1173 318 363 1174 237 176 1039 81 171 1019 237 176 1039 318 363 1174 234 356 1167 80 177 1040 234 356 1167 318 363 1174 86 364 1175 2 361 1172 86 364 1175 318 363 1174 236 362 1173 1 365 1176 239 170 1018 319 366 1177 236 362 1173 81 171 1019 236 362 1173 319 366 1177 85 367 1178 1 365 1176 85 367 1178 319 366 1177 161 368 1179 0 369 1180 161 368 1179 319 366 1177 239 170 1018 82 173 1023 0 369 1180 161 368 1179 240 370 1181 4 371 1182 240 370 1181 161 368 1179 82 173 1023 83 166 1012 242 165 987 158 372 1183 240 370 1181 83 166 1012 240 370 1181 158 372 1183 84 373 1184 4 371 1182 343 350 1161 342 374 1185 158 372 1183 242 165 987 158 372 1183 342 374 1185 88 375 1186 84 373 1184 144 131 917 2066 134 920 2067 376 1187 321 236 1093 339 66 886 321 236 1093 180 214 1071 25 73 893 2067 376 1187 2083 284 1125 180 214 1071 321 236 1093 46 183 1047 325 332 1143 324 333 1144 165 180 1043 207 185 1049 325 332 1143 326 331 1142 287 191 1055 47 190 1054 327 330 1141 326 331 1142 168 188 1052 206 192 1056 327 330 1141 328 329 1140 286 225 1082 286 225 1082 328 329 1140 2077 328 1139 2072 261 1106 73 302 133 330 325 233 329 326 234 212 255 58 204 114 5 331 324 232 332 323 210 285 115 6 58 198 27 333 322 209 332 323 210 171 195 24 203 118 9 333 322 209 334 321 208 284 128 19 61 205 34 335 320 207 334 321 208 174 203 32 202 129 20 335 320 207 336 319 206 283 232 43 66 211 40 337 318 205 336 319 206 177 209 38 200 316 203 338 317 204 323 295 126 298 293 124 299 8 36 218 9 37 2022 377 1188 2017 378 1189 218 9 37 300 23 72 2021 379 1190 2022 377 1188 300 23 72 219 25 85 2023 380 1191 2021 379 1190 220 335 1146 301 334 1145 674 381 1192 592 382 1193 301 334 1145 221 336 1147 593 383 1194 674 381 1192 222 338 1149 302 337 1148 675 384 1195 594 385 1196 302 337 1148 220 335 1146 592 382 1193 675 384 1195 223 340 1151 303 339 1150 676 386 1197 595 387 1198 303 339 1150 222 338 1149 594 385 1196 676 386 1197 224 342 1153 304 341 1152 677 388 1199 596 389 1200 304 341 1152 223 340 1151 595 387 1198 677 388 1199 225 344 1155 305 343 1154 678 390 1201 597 391 1202 305 343 1154 224 342 1153 596 389 1200 678 390 1201 226 346 1157 306 345 1156 679 392 1203 598 393 1204 306 345 1156 225 344 1155 597 391 1202 679 392 1203 2036 394 1205 2037 395 1206 680 396 1207 599 397 1208 2037 395 1206 2038 398 1209 600 399 1210 680 396 1207 2038 398 1209 2039 400 1211 608 401 1212 600 399 1210 31 86 3 308 85 2 2019 402 144 2033 403 2261 602 404 148 681 405 149 2019 402 2264 2020 406 2259 34 95 16 309 94 15 2032 407 2262 2031 408 2252 309 94 15 31 86 3 2033 403 2261 2032 407 2262 219 25 85 310 111 904 2024 409 1213 2023 380 1191 684 410 1214 604 411 1215 2025 412 1216 2026 413 1217 2034 414 2258 2035 415 2260 685 416 158 605 417 159 2035 415 1218 2036 394 1205 599 397 1208 685 416 1219 345 348 1159 346 347 1158 1971 418 1220 1970 419 1221 346 347 1158 226 346 1157 598 393 1204 1971 418 1220 2020 406 2259 2016 420 2257 686 421 161 602 404 148 2016 420 2257 2034 414 2258 605 417 159 686 421 161 229 126 113 313 156 112 2028 422 2255 2027 423 2256 313 156 112 230 158 115 2029 424 2254 2028 422 2255 230 158 115 314 162 119 2030 425 2253 2029 424 2254 314 162 119 34 95 16 2031 408 2252 2030 425 2253 343 350 1161 344 349 1160 1969 426 1222 1968 427 1223 344 349 1160 345 348 1159 1970 419 1221 1969 426 1222 2039 400 1211 2040 428 1224 689 429 1225 608 401 1212 2040 428 1224 2041 430 1226 612 431 1227 689 429 1225 221 336 1147 315 351 1162 690 432 1228 593 383 1194 2041 430 1226 2042 433 1229 692 434 1230 612 431 1227 2042 433 1229 2043 435 1231 434 436 1232 692 434 1230 88 375 1186 342 374 1185 1967 437 1233 435 438 1234 342 374 1185 343 350 1161 1968 427 1223 1967 437 1233 436 439 1235 353 440 1236 437 441 1237 622 442 1238 438 443 1239 352 444 1240 436 439 1235 622 442 1238 439 445 1241 352 444 1240 438 443 1239 623 446 1242 440 447 1243 354 448 1244 439 445 1241 623 446 1242 355 449 1245 356 450 1246 441 451 1247 443 452 1248 441 451 1247 357 453 1249 442 454 1250 443 452 1248 444 455 1251 353 440 1236 436 439 1235 624 456 1252 436 439 1235 352 444 1240 445 457 1253 624 456 1252 445 457 1253 359 458 1254 446 459 1255 624 456 1252 446 459 1255 358 460 1256 444 455 1251 624 456 1252 445 457 1253 352 444 1240 439 445 1241 625 461 1257 439 445 1241 354 448 1244 447 462 1258 625 461 1257 447 462 1258 360 463 1259 448 464 1260 625 461 1257 448 464 1260 359 458 1254 445 457 1253 625 461 1257 361 465 1261 357 453 1249 441 451 1247 626 466 1262 441 451 1247 356 450 1246 449 467 1263 626 466 1262 362 468 1264 363 469 1265 450 470 1266 451 471 1267 450 470 1266 356 450 1246 355 449 1245 451 471 1267 452 472 1268 358 460 1256 446 459 1255 627 473 1269 446 459 1255 359 458 1254 453 474 1270 627 473 1269 453 474 1270 365 475 1271 454 476 1272 627 473 1269 454 476 1272 364 477 1273 452 472 1268 627 473 1269 449 467 1263 356 450 1246 450 470 1266 456 478 1274 450 470 1266 363 469 1265 455 479 1275 456 478 1274 457 480 1276 363 469 1265 362 468 1264 458 481 1277 367 482 1278 366 483 1279 457 480 1276 458 481 1277 455 479 1275 363 469 1265 457 480 1276 460 484 1280 457 480 1276 366 483 1279 459 485 1281 460 484 1280 369 486 1282 368 487 1283 462 488 1284 461 489 1285 462 488 1284 366 483 1279 367 482 1278 461 489 1285 459 485 1281 366 483 1279 462 488 1284 464 490 1286 462 488 1284 368 487 1283 463 491 1287 464 490 1286 371 492 1288 370 493 1289 466 494 1290 465 495 1291 466 494 1290 368 487 1283 369 486 1282 465 495 1291 463 491 1287 368 487 1283 466 494 1290 468 496 1292 466 494 1290 370 493 1289 467 497 1293 468 496 1292 372 498 1294 373 499 1295 469 500 1296 628 501 1297 469 500 1296 370 493 1289 371 492 1288 628 501 1297 467 497 1293 370 493 1289 469 500 1296 471 502 1298 469 500 1296 373 499 1295 470 503 1299 471 502 1298 375 504 1300 472 505 1301 1965 506 1302 1964 507 1303 472 505 1301 377 508 1304 1966 509 1305 1965 506 1302 1966 509 1305 376 510 1306 473 511 1307 1965 506 1302 473 511 1307 374 512 1308 1964 507 1303 1965 506 1302 474 513 1309 378 514 1310 475 515 1311 629 516 1312 475 515 1311 379 517 1313 476 518 1314 629 516 1312 476 518 1314 377 508 1304 472 505 1301 629 516 1312 472 505 1301 375 504 1300 474 513 1309 629 516 1312 476 518 1314 379 517 1313 399 519 1315 477 520 1316 476 518 1314 477 520 1316 380 521 1317 377 508 1304 478 522 162 381 523 163 479 524 164 630 525 165 479 524 174 382 526 175 480 527 176 630 525 177 480 527 176 384 528 178 481 529 179 630 525 177 481 529 166 383 530 167 478 522 162 630 525 165 482 531 168 385 532 169 483 533 170 631 534 171 483 533 170 381 523 163 478 522 162 631 534 171 478 522 162 383 530 167 484 535 172 631 534 171 484 535 172 386 536 173 482 531 168 631 534 171 485 537 180 386 536 173 484 535 172 632 538 181 484 535 172 383 530 167 486 539 182 632 538 181 486 539 182 387 540 183 511 541 184 632 538 181 511 541 184 390 542 185 485 537 180 632 538 181 487 543 186 391 544 187 488 545 188 633 546 189 488 545 188 388 547 190 489 548 191 633 546 189 489 548 191 386 536 173 485 537 180 633 546 189 485 537 180 390 542 185 487 543 186 633 546 189 453 474 1270 359 458 1254 448 464 1260 634 549 1318 448 464 1260 360 463 1259 490 550 1319 634 549 1318 490 550 1319 389 551 1320 491 552 1321 634 549 1318 491 552 1321 365 475 1271 453 474 1270 634 549 1318 575 553 236 405 554 237 492 555 238 659 556 239 492 555 238 403 557 240 574 558 241 659 556 239 454 476 1272 365 475 1271 493 559 1322 635 560 1323 493 559 1322 391 544 1324 487 543 1325 635 560 1323 487 543 1325 390 542 1326 494 561 1327 635 560 1323 494 561 1327 364 477 1273 454 476 1272 635 560 1323 491 552 1321 389 551 1320 495 562 1328 636 563 1329 495 562 1328 392 564 1330 508 565 1331 636 563 1329 508 565 1331 391 544 1324 493 559 1322 636 563 1329 493 559 1322 365 475 1271 491 552 1321 636 563 1329 496 566 242 406 567 243 573 568 244 658 569 245 574 558 241 403 557 240 496 566 242 658 569 245 651 570 1332 2087 571 1333 2088 572 1334 552 573 1335 497 574 1336 378 514 1310 474 513 1309 637 575 1337 474 513 1309 375 504 1300 498 576 1338 637 575 1337 498 576 211 394 577 212 499 578 213 637 575 214 499 578 213 395 579 215 497 574 216 637 575 214 397 580 1339 396 581 1340 501 582 1341 500 583 1342 501 582 1341 373 499 1295 372 498 1294 500 583 1342 502 584 1343 374 512 1308 473 511 1307 638 585 1344 473 511 1307 376 510 1306 503 586 1345 638 585 1344 503 586 1345 397 580 1339 500 583 1342 638 585 1344 500 583 1342 372 498 1294 502 584 1343 638 585 1344 470 503 1299 373 499 1295 501 582 1341 505 587 1346 501 582 1341 396 581 1340 504 588 1347 505 587 1346 609 589 1348 1966 509 1305 377 508 1304 380 521 1317 609 589 1348 398 590 1349 376 510 1306 1966 509 1305 506 591 217 384 528 178 480 527 176 639 592 218 480 527 176 382 526 175 507 593 219 639 592 218 507 593 219 395 579 215 499 578 213 639 592 218 499 578 213 394 577 212 506 591 217 639 592 218 508 565 192 392 564 193 509 594 194 640 595 195 509 594 194 400 596 196 510 597 197 640 595 195 510 597 197 388 547 190 488 545 188 640 595 195 488 545 188 391 544 187 508 565 192 640 595 195 506 591 217 394 577 212 538 598 226 641 599 227 538 598 198 387 540 183 486 539 182 641 599 199 486 539 182 383 530 167 481 529 166 641 599 199 481 529 179 384 528 178 506 591 217 641 599 227 489 548 191 388 547 190 510 597 197 642 600 220 510 597 197 400 596 196 512 601 221 642 600 220 512 601 221 385 532 169 482 531 168 642 600 220 482 531 168 386 536 173 489 548 191 642 600 220 504 588 1347 396 581 1340 513 602 1350 620 603 1351 513 602 1350 429 604 1352 621 605 1353 620 603 1351 515 606 1354 398 590 1349 516 607 1355 643 608 1356 516 607 1355 427 609 1357 618 610 1358 643 608 1356 618 610 1358 428 611 1359 617 612 1360 643 608 1356 617 612 1360 397 580 1339 515 606 1354 643 608 1356 428 611 1359 429 604 1352 513 602 1350 617 612 1360 513 602 1350 396 581 1340 397 580 1339 617 612 1360 516 607 1355 398 590 1349 609 589 1348 644 613 1361 609 589 1348 380 521 1317 610 614 1362 644 613 1361 610 614 1362 426 615 1363 616 616 1364 644 613 1361 616 616 1364 427 609 1357 516 607 1355 644 613 1361 442 454 1250 357 453 1249 520 617 1365 519 618 1366 521 619 1367 401 620 1368 522 621 1369 645 622 1370 522 621 1369 442 454 1250 519 618 1366 645 622 1370 437 441 1237 353 440 1236 579 623 1371 661 624 1372 520 617 1365 357 453 1249 361 465 1261 523 625 1373 522 621 1369 401 620 1368 524 626 1374 646 627 1375 524 626 1374 402 628 1376 525 629 1377 646 627 1375 525 629 1377 355 449 1245 443 452 1248 646 627 1375 443 452 1248 442 454 1250 522 621 1369 646 627 1375 579 623 1371 353 440 1236 444 455 1251 660 630 1378 444 455 1251 358 460 1256 578 631 1379 660 630 1378 526 632 2273 409 633 247 527 634 248 647 635 2268 527 634 248 404 636 250 528 637 251 647 635 2268 528 637 1380 410 638 1381 529 639 1382 647 635 1383 529 639 1382 408 640 1384 526 632 1385 647 635 1383 528 637 251 404 636 250 530 641 255 648 642 2269 530 641 255 407 643 257 531 644 258 648 642 2269 531 644 1386 411 645 1387 532 646 1388 648 642 1389 532 646 1388 410 638 1381 528 637 1380 648 642 1389 531 644 258 407 643 257 533 647 261 649 648 2272 533 647 261 412 649 263 534 650 264 649 648 2272 534 650 1390 413 651 1391 535 652 1392 649 648 1393 535 652 1392 411 645 1387 531 644 1386 649 648 1393 393 653 1394 374 512 1308 502 584 1343 537 654 1395 502 584 1343 372 498 1294 628 501 1297 537 654 1395 628 501 1297 371 492 1288 536 655 1396 537 654 1395 503 586 1345 376 510 1306 398 590 1349 515 606 1354 515 606 1354 397 580 1339 503 586 1345 536 655 1396 371 492 1288 465 495 1291 540 656 1397 465 495 1291 369 486 1282 539 657 1398 540 656 1397 539 657 1398 369 486 1282 461 489 1285 542 658 1399 461 489 1285 367 482 1278 541 659 1400 542 658 1399 541 659 1400 367 482 1278 458 481 1277 544 660 1401 458 481 1277 362 468 1264 543 661 1402 544 660 1401 525 629 1377 402 628 1376 545 662 1403 546 663 1404 543 661 1402 362 468 1264 451 471 1267 546 663 1404 451 471 1267 355 449 1245 525 629 1377 546 663 1404 578 631 1379 358 460 1256 452 472 1268 577 664 1405 452 472 1268 364 477 1273 547 665 1406 577 664 1405 547 665 1406 364 477 1273 494 561 1327 549 666 1407 494 561 1327 390 542 1326 548 667 1408 549 666 1407 511 541 1409 387 540 1410 550 668 1411 551 669 1412 548 667 1408 390 542 1326 511 541 1409 551 669 1412 550 668 1411 387 540 1410 538 598 1413 650 670 1414 538 598 1413 394 577 1415 552 573 1335 650 670 1414 573 568 244 406 567 243 553 671 267 657 672 268 572 673 269 657 672 268 553 671 267 414 674 270 552 573 1335 394 577 1415 498 576 1338 651 570 1332 651 570 1332 498 576 1338 375 504 1300 1964 507 1303 1945 675 1416 549 666 1407 548 667 1408 2091 676 1417 2092 677 1418 580 678 271 663 679 272 652 680 273 554 681 274 663 679 272 582 682 275 555 683 276 652 680 273 2093 684 1419 547 665 1406 549 666 1407 2092 677 1418 551 669 1412 550 668 1411 2095 685 1420 2090 686 1421 581 687 277 662 688 278 653 689 279 556 690 280 662 688 278 580 678 271 554 681 274 653 689 279 2091 676 1417 548 667 1408 551 669 1412 2090 686 1421 546 663 1404 545 662 1403 2097 691 1422 2098 692 1423 584 693 281 667 694 282 654 695 2270 557 696 284 667 694 1424 586 697 1425 558 698 1426 654 695 1427 2099 699 1428 543 661 1402 546 663 1404 2098 692 1423 577 664 1405 547 665 1406 2093 684 1419 2094 700 1429 582 682 275 665 701 287 2060 702 288 555 683 276 544 660 1401 543 661 1402 2099 699 1428 2100 703 1430 586 697 1425 666 704 1431 2061 705 1432 558 698 1426 666 704 1431 585 706 1433 559 707 1434 2061 705 1432 2101 708 1435 541 659 1400 544 660 1401 2100 703 1430 542 658 1399 541 659 1400 2101 708 1435 2102 709 1436 585 706 1433 668 710 1437 2062 711 1438 559 707 1434 668 710 1437 587 712 1439 560 713 1440 2062 711 1438 2103 714 1441 539 657 1398 542 658 1399 2102 709 1436 537 654 1395 536 655 1396 2105 715 1442 2106 716 1443 588 717 1444 670 718 1445 655 719 1446 561 720 1447 670 718 2275 589 721 301 562 722 302 655 719 299 2107 723 1448 393 653 1394 537 654 1395 2106 716 1443 540 656 1397 539 657 1398 2103 714 1441 2104 724 1449 587 712 1439 669 725 1450 2063 726 1451 560 713 1440 669 725 1450 588 717 1444 561 720 1447 2063 726 1451 2105 715 1442 536 655 1396 540 656 1397 2104 724 1449 650 670 1414 552 573 1335 2088 572 1334 2089 727 1452 583 728 305 664 729 306 2059 730 307 2058 731 308 664 729 306 581 687 277 556 690 280 2059 730 307 2095 685 1420 550 668 1411 650 670 1414 2089 727 1452 671 732 309 583 728 305 2058 731 308 656 733 310 1947 734 311 671 732 309 656 733 310 1946 735 970 563 736 971 416 737 972 403 557 240 492 555 238 563 736 971 492 555 238 405 554 237 417 738 973 564 739 974 415 740 975 406 567 243 496 566 242 564 739 974 496 566 242 403 557 240 416 737 972 565 741 2274 419 742 977 409 633 247 526 632 2273 565 741 1453 526 632 1385 408 640 1384 420 743 1454 576 744 979 417 738 973 405 554 237 575 553 236 566 745 1455 420 743 1454 408 640 1384 529 639 1382 566 745 1455 529 639 1382 410 638 1381 421 746 1456 567 747 1457 421 746 1456 410 638 1381 532 646 1388 567 747 1457 532 646 1388 411 645 1387 422 748 1458 568 749 1459 423 750 1460 413 651 1391 534 650 1390 568 749 984 534 650 264 412 649 263 424 751 986 569 752 1461 422 748 1458 411 645 1387 535 652 1392 569 752 1461 535 652 1392 413 651 1391 423 750 1460 570 753 988 418 754 989 414 674 270 553 671 267 570 753 988 553 671 267 406 567 243 415 740 975 414 674 270 418 754 989 571 755 990 572 673 269 572 673 269 571 755 990 1963 756 991 1962 757 992 424 751 986 412 649 263 1962 757 992 1963 756 991 657 672 268 572 673 269 1962 757 992 1961 758 993 533 647 261 407 643 257 1960 759 994 1961 758 993 658 569 245 573 568 244 1960 759 994 1959 760 995 530 641 255 404 636 250 1958 761 996 1959 760 995 659 556 239 574 558 241 1958 761 996 1957 762 997 527 634 248 409 633 247 1956 763 998 1957 762 997 576 744 979 575 553 236 1956 763 998 1955 764 999 409 633 247 419 742 977 1955 764 999 1956 763 998 2060 702 288 665 701 287 1954 765 1000 1953 766 1001 2097 691 1422 545 662 1403 1952 767 1462 2096 768 1463 545 662 1403 402 628 1376 1951 769 1464 1952 767 1462 660 630 1378 578 631 1379 1951 769 1464 1950 770 1465 524 626 1374 401 620 1368 1949 771 1466 1950 770 1465 661 624 1372 579 623 1371 1949 771 1466 1948 772 1467 564 739 974 416 737 972 580 678 271 662 688 278 581 687 277 415 740 975 564 739 974 662 688 278 582 682 275 417 738 973 576 744 979 665 701 287 580 678 271 416 737 972 563 736 971 663 679 272 563 736 971 417 738 973 582 682 275 663 679 272 570 753 988 415 740 975 581 687 277 664 729 306 583 728 305 418 754 989 570 753 988 664 729 306 665 701 287 576 744 979 1955 764 999 1954 765 1000 1954 765 1000 584 693 281 557 696 284 1953 766 1001 566 745 1455 421 746 1456 585 706 1433 666 704 1431 586 697 1425 420 743 1454 566 745 1455 666 704 1431 584 693 281 419 742 977 565 741 2274 667 694 282 565 741 1453 420 743 1454 586 697 1425 667 694 1424 585 706 1433 421 746 1456 567 747 1457 668 710 1437 567 747 1457 422 748 1458 587 712 1439 668 710 1437 587 712 1439 422 748 1458 569 752 1461 669 725 1450 569 752 1461 423 750 1460 588 717 1444 669 725 1450 589 721 301 1947 734 311 1946 735 970 562 722 302 589 721 301 424 751 986 1963 756 991 1947 734 311 588 717 1444 423 750 1460 568 749 1459 670 718 1445 568 749 984 424 751 986 589 721 301 670 718 2275 571 755 990 418 754 989 583 728 305 671 732 309 590 773 1468 354 448 1244 440 447 1243 672 774 1469 447 462 1258 354 448 1244 590 773 1468 673 775 1470 591 776 1471 360 463 1259 447 462 1258 673 775 1470 626 466 1262 449 467 1263 592 382 1193 674 381 1192 593 383 1194 361 465 1261 626 466 1262 674 381 1192 456 478 1274 455 479 1275 594 385 1196 675 384 1195 592 382 1193 449 467 1263 456 478 1274 675 384 1195 460 484 1280 459 485 1281 595 387 1198 676 386 1197 594 385 1196 455 479 1275 460 484 1280 676 386 1197 464 490 1286 463 491 1287 596 389 1200 677 388 1199 595 387 1198 459 485 1281 464 490 1286 677 388 1199 468 496 1292 467 497 1293 597 391 1202 678 390 1201 596 389 1200 463 491 1287 468 496 1292 678 390 1201 471 502 1298 470 503 1299 598 393 1204 679 392 1203 597 391 1202 467 497 1293 471 502 1298 679 392 1203 475 515 1311 378 514 1310 599 397 1208 680 396 1207 600 399 1210 379 517 1313 475 515 1311 680 396 1207 399 519 1315 379 517 1313 600 399 1210 608 401 1212 479 524 164 381 523 163 601 777 222 681 405 223 602 404 148 382 526 175 479 524 174 681 405 149 483 533 170 385 532 169 603 778 224 682 779 225 601 777 222 381 523 163 483 533 170 682 779 225 490 550 1319 360 463 1259 591 776 1471 683 780 1472 604 411 1215 389 551 1320 490 550 1319 683 780 1472 495 562 1328 389 551 1320 604 411 1215 684 410 1214 606 781 1473 392 564 1330 495 562 1328 684 410 1214 497 574 216 395 579 215 605 417 159 685 416 158 599 397 1208 378 514 1310 497 574 1336 685 416 1219 505 587 1346 504 588 1347 1970 419 1221 1971 418 1220 505 587 1346 1971 418 1220 598 393 1204 470 503 1299 507 593 219 382 526 175 602 404 148 686 421 161 605 417 159 395 579 215 507 593 219 686 421 161 509 594 194 392 564 193 606 781 228 687 782 229 607 783 230 400 596 196 509 594 194 687 782 229 512 601 221 400 596 196 607 783 230 688 784 231 603 778 224 385 532 169 512 601 221 688 784 231 620 603 1351 621 605 1353 1968 427 1223 1969 426 1222 620 603 1351 1969 426 1222 1970 419 1221 504 588 1347 518 785 1474 399 519 1315 608 401 1212 689 429 1225 612 431 1227 425 786 1475 518 785 1474 689 429 1225 523 625 1373 361 465 1261 593 383 1194 690 432 1228 610 614 1362 380 521 1317 477 520 1316 691 787 1476 477 520 1316 399 519 1315 518 785 1474 691 787 1476 518 785 1474 425 786 1475 614 788 1477 691 787 1476 614 788 1477 426 615 1363 610 614 1362 691 787 1476 611 789 1478 425 786 1475 612 431 1227 692 434 1230 434 436 1232 350 790 1479 611 789 1478 692 434 1230 613 791 1480 426 615 1363 614 788 1477 693 792 1481 614 788 1477 425 786 1475 611 789 1478 693 792 1481 611 789 1478 350 790 1479 433 793 1482 693 792 1481 433 793 1482 349 794 1483 613 791 1480 693 792 1481 615 795 1484 427 609 1357 616 616 1364 694 796 1485 616 616 1364 426 615 1363 613 791 1480 694 796 1485 613 791 1480 349 794 1483 432 797 1486 694 796 1485 432 797 1486 348 798 1487 615 795 1484 694 796 1485 618 610 1358 427 609 1357 615 795 1484 695 799 1488 615 795 1484 348 798 1487 431 800 1489 695 799 1488 431 800 1489 347 801 1490 517 802 1491 695 799 1488 517 802 1491 428 611 1359 618 610 1358 695 799 1488 347 801 1490 351 803 1492 619 804 1493 517 802 1491 619 804 1493 429 604 1352 428 611 1359 517 802 1491 621 605 1353 429 604 1352 619 804 1493 514 805 1494 619 804 1493 351 803 1492 430 806 1495 514 805 1494 1968 427 1223 621 605 1353 514 805 1494 1967 437 1233 514 805 1494 430 806 1495 435 438 1234 1967 437 1233 696 807 1496 697 808 1497 710 809 1498 709 810 1499 697 808 1497 698 811 1500 711 812 1501 710 809 1498 698 811 1500 699 813 1502 712 814 1503 711 812 1501 699 813 1502 700 815 1504 713 816 1505 712 814 1503 700 815 1504 701 817 1506 714 818 1507 713 816 1505 701 817 1506 702 819 1508 715 820 1509 714 818 1507 702 819 1508 703 821 1510 716 822 1511 715 820 1509 703 821 1510 704 823 1512 717 824 1513 716 822 1511 704 823 1512 705 825 1514 718 826 1515 717 824 1513 705 825 1514 706 827 1516 719 828 1517 718 826 1515 706 827 1516 707 829 1518 720 830 1519 719 828 1517 707 829 1518 1331 831 1520 721 832 1521 720 830 1519 708 833 1522 722 834 1523 1979 835 1524 1980 836 1525 709 810 1499 710 809 1498 724 837 1526 723 838 1527 710 809 1498 711 812 1501 725 839 1528 724 837 1526 711 812 1501 712 814 1503 726 840 1529 725 839 1528 712 814 1503 713 816 1505 727 841 1530 726 840 1529 713 816 1505 714 818 1507 728 842 1531 727 841 1530 714 818 1507 715 820 1509 729 843 1532 728 842 1531 715 820 1509 716 822 1511 730 844 1533 729 843 1532 716 822 1511 717 824 1513 731 845 1534 730 844 1533 717 824 1513 718 826 1515 732 846 1535 731 845 1534 718 826 1515 719 828 1517 733 847 1536 732 846 1535 719 828 1517 720 830 1519 734 848 1537 733 847 1536 1333 849 1538 721 832 1521 1979 835 1524 1982 850 1539 723 838 1527 724 837 1526 737 851 1540 736 852 1541 724 837 1526 725 839 1528 738 853 1542 737 851 1540 725 839 1528 726 840 1529 739 854 1543 738 853 1542 726 840 1529 727 841 1530 740 855 1544 739 854 1543 727 841 1530 728 842 1531 741 856 1545 740 855 1544 728 842 1531 729 843 1532 742 857 1546 741 856 1545 729 843 1532 730 844 1533 743 858 1547 742 857 1546 730 844 1533 731 845 1534 744 859 1548 743 858 1547 731 845 1534 732 846 1535 745 860 1549 744 859 1548 732 846 1535 733 847 1536 746 861 1550 745 860 1549 733 847 1536 734 848 1537 747 862 1551 746 861 1550 1334 863 1552 1333 849 1538 1982 850 1539 1983 864 1553 736 852 1541 737 851 1540 750 865 1554 749 866 1555 737 851 1540 738 853 1542 751 867 1556 750 865 1554 738 853 1542 739 854 1543 752 868 1557 751 867 1556 739 854 1543 740 855 1544 753 869 1558 752 868 1557 740 855 1544 741 856 1545 754 870 1559 753 869 1558 741 856 1545 742 857 1546 755 871 1560 754 870 1559 742 857 1546 743 858 1547 756 872 1561 755 871 1560 743 858 1547 744 859 1548 757 873 1562 756 872 1561 744 859 1548 745 860 1549 758 874 1563 757 873 1562 745 860 1549 746 861 1550 759 875 1564 758 874 1563 746 861 1550 747 862 1551 760 876 1565 759 875 1564 1335 877 1566 1334 863 1552 1983 864 1553 1984 878 1567 749 866 1555 750 865 1554 763 879 1568 762 880 1569 750 865 1554 751 867 1556 764 881 1570 763 879 1568 751 867 1556 752 868 1557 765 882 1571 764 881 1570 752 868 1557 753 869 1558 766 883 1572 765 882 1571 753 869 1558 754 870 1559 767 884 1573 766 883 1572 754 870 1559 755 871 1560 768 885 1574 767 884 1573 755 871 1560 756 872 1561 769 886 1575 768 885 1574 756 872 1561 757 873 1562 770 887 1576 769 886 1575 757 873 1562 758 874 1563 771 888 1577 770 887 1576 758 874 1563 759 875 1564 772 889 1578 771 888 1577 759 875 1564 760 876 1565 773 890 1579 772 889 1578 1336 891 1580 1335 877 1566 1984 878 1567 1981 892 1581 762 880 1569 763 879 1568 776 893 1582 775 894 1583 763 879 1568 764 881 1570 777 895 1584 776 893 1582 764 881 1570 765 882 1571 778 896 1585 777 895 1584 765 882 1571 766 883 1572 779 897 1586 778 896 1585 766 883 1572 767 884 1573 780 898 1587 779 897 1586 767 884 1573 768 885 1574 781 899 1588 780 898 1587 768 885 1574 769 886 1575 782 900 1589 781 899 1588 769 886 1575 770 887 1576 783 901 1590 782 900 1589 770 887 1576 771 888 1577 784 902 1591 783 901 1590 771 888 1577 772 889 1578 785 903 1592 784 902 1591 772 889 1578 773 890 1579 786 904 1593 785 903 1592 2 361 1172 1336 891 1580 1981 892 1581 87 359 1170 775 894 1583 776 893 1582 788 905 1594 787 906 1595 776 893 1582 777 895 1584 789 907 1596 788 905 1594 777 895 1584 778 896 1585 790 908 1597 789 907 1596 778 896 1585 779 897 1586 791 909 1598 790 908 1597 779 897 1586 780 898 1587 792 910 1599 791 909 1598 780 898 1587 781 899 1588 793 911 1600 792 910 1599 781 899 1588 782 900 1589 794 912 1601 793 911 1600 782 900 1589 783 901 1590 795 913 1602 794 912 1601 783 901 1590 784 902 1591 796 914 1603 795 913 1602 784 902 1591 785 903 1592 797 915 1604 796 914 1603 785 903 1592 786 904 1593 798 916 1605 797 915 1604 787 906 1595 788 905 1594 800 917 1606 799 918 1607 788 905 1594 789 907 1596 801 919 1608 800 917 1606 789 907 1596 790 908 1597 802 920 1609 801 919 1608 790 908 1597 791 909 1598 803 921 1610 802 920 1609 791 909 1598 792 910 1599 804 922 1611 803 921 1610 792 910 1599 793 911 1600 805 923 1612 804 922 1611 793 911 1600 794 912 1601 806 924 1613 805 923 1612 794 912 1601 795 913 1602 807 925 1614 806 924 1613 795 913 1602 796 914 1603 808 926 1615 807 925 1614 796 914 1603 797 915 1604 809 927 1616 808 926 1615 797 915 1604 798 916 1605 810 928 1617 809 927 1616 799 918 1607 800 917 1606 812 929 1618 811 930 1619 800 917 1606 801 919 1608 813 931 1620 812 929 1618 801 919 1608 802 920 1609 814 932 1621 813 931 1620 802 920 1609 803 921 1610 815 933 1622 814 932 1621 803 921 1610 804 922 1611 816 934 1623 815 933 1622 804 922 1611 805 923 1612 817 935 1624 816 934 1623 805 923 1612 806 924 1613 818 936 1625 817 935 1624 806 924 1613 807 925 1614 819 937 1626 818 936 1625 807 925 1614 808 926 1615 820 938 1627 819 937 1626 808 926 1615 809 927 1616 821 939 1628 820 938 1627 809 927 1616 810 928 1617 822 940 1629 821 939 1628 811 930 1619 812 929 1618 824 941 1630 823 942 1631 812 929 1618 813 931 1620 825 943 1632 824 941 1630 813 931 1620 814 932 1621 826 944 1633 825 943 1632 814 932 1621 815 933 1622 827 945 1634 826 944 1633 815 933 1622 816 934 1623 828 946 1635 827 945 1634 816 934 1623 817 935 1624 829 947 1636 828 946 1635 817 935 1624 818 936 1625 830 948 1637 829 947 1636 818 936 1625 819 937 1626 831 949 1638 830 948 1637 819 937 1626 820 938 1627 832 950 1639 831 949 1638 820 938 1627 821 939 1628 833 951 1640 832 950 1639 821 939 1628 822 940 1629 834 952 1641 833 951 1640 823 942 1631 824 941 1630 835 953 1642 846 954 1643 824 941 1630 825 943 1632 836 955 1644 835 953 1642 825 943 1632 826 944 1633 837 956 1645 836 955 1644 826 944 1633 827 945 1634 838 957 1646 837 956 1645 827 945 1634 828 946 1635 839 958 1647 838 957 1646 828 946 1635 829 947 1636 840 959 1648 839 958 1647 829 947 1636 830 948 1637 841 960 1649 840 959 1648 830 948 1637 831 949 1638 842 961 1650 841 960 1649 831 949 1638 832 950 1639 843 962 1651 842 961 1650 832 950 1639 833 951 1640 844 963 1652 843 962 1651 833 951 1640 834 952 1641 845 964 1653 844 963 1652 846 954 1643 835 953 1642 848 965 1654 847 966 1655 835 953 1642 836 955 1644 849 967 1656 848 965 1654 836 955 1644 837 956 1645 850 968 1657 849 967 1656 837 956 1645 838 957 1646 851 969 1658 850 968 1657 838 957 1646 839 958 1647 852 970 1659 851 969 1658 839 958 1647 840 959 1648 853 971 1660 852 970 1659 840 959 1648 841 960 1649 854 972 1661 853 971 1660 841 960 1649 842 961 1650 855 973 1662 854 972 1661 842 961 1650 843 962 1651 856 974 1663 855 973 1662 843 962 1651 844 963 1652 857 975 1664 856 974 1663 844 963 1652 845 964 1653 858 976 1665 857 975 1664 847 966 1655 848 965 1654 860 977 1666 859 978 1667 848 965 1654 849 967 1656 861 979 1668 860 977 1666 849 967 1656 850 968 1657 862 980 1669 861 979 1668 853 971 1660 854 972 1661 863 981 1670 854 972 1661 855 973 1662 864 982 1671 863 981 1670 855 973 1662 856 974 1663 865 983 1672 864 982 1671 856 974 1663 857 975 1664 866 984 1673 865 983 1672 857 975 1664 858 976 1665 867 985 1674 866 984 1673 859 978 1667 860 977 1666 869 986 1675 868 987 1676 860 977 1666 861 979 1668 870 988 1677 869 986 1675 868 987 1676 869 986 1675 872 989 1678 871 990 1679 869 986 1675 870 988 1677 873 991 1680 872 989 1678 875 992 1681 874 993 1682 864 982 1671 865 983 1672 865 983 1672 866 984 1673 876 994 1683 875 992 1681 866 984 1673 867 985 1674 877 995 1684 876 994 1683 871 990 1679 872 989 1678 879 996 1685 878 997 1686 872 989 1678 873 991 1680 880 998 1687 879 996 1685 882 999 1688 881 1000 1689 874 993 1682 875 992 1681 875 992 1681 876 994 1683 883 1001 1690 882 999 1688 876 994 1683 877 995 1684 884 1002 1691 883 1001 1690 878 997 1686 879 996 1685 886 1003 1692 885 1004 1693 879 996 1685 880 998 1687 887 1005 1694 886 1003 1692 889 1006 1695 888 1007 1696 881 1000 1689 882 999 1688 882 999 1688 883 1001 1690 890 1008 1697 889 1006 1695 883 1001 1690 884 1002 1691 891 1009 1698 890 1008 1697 885 1004 1693 886 1003 1692 893 1010 1699 892 1011 1700 886 1003 1692 887 1005 1694 894 1012 1701 893 1010 1699 1313 1013 1702 888 1007 1696 889 1006 1695 895 1014 1703 889 1006 1695 890 1008 1697 896 1015 1704 895 1014 1703 890 1008 1697 891 1009 1698 1314 1016 1705 896 1015 1704 891 1009 1698 1337 1017 1706 897 1018 1707 1314 1016 1705 1985 1019 1708 1337 1017 1706 320 1020 1709 1986 1021 1710 892 1011 1700 893 1010 1699 899 1022 1711 898 1023 1712 893 1010 1699 894 1012 1701 900 1024 1713 899 1022 1711 1312 1025 1714 1311 1026 1715 906 1027 1716 905 1028 1717 697 808 1497 696 807 1496 907 1029 1718 698 811 1500 697 808 1497 907 1029 1718 699 813 1502 698 811 1500 907 1029 1718 700 815 1504 699 813 1502 907 1029 1718 701 817 1506 700 815 1504 907 1029 1718 702 819 1508 701 817 1506 907 1029 1718 703 821 1510 702 819 1508 907 1029 1718 704 823 1512 703 821 1510 907 1029 1718 705 825 1514 704 823 1512 907 1029 1718 706 827 1516 705 825 1514 907 1029 1718 707 829 1518 706 827 1516 907 1029 1718 707 829 1518 907 1029 1718 1331 831 1520 708 833 1522 1980 836 1525 907 1029 1718 941 1030 312 980 1031 313 1044 1032 314 1007 1033 315 1007 1033 315 1028 1034 316 956 1035 317 941 1030 312 942 1036 318 958 1037 319 1028 1034 316 1007 1033 315 1007 1033 315 1044 1032 314 981 1038 320 942 1036 318 943 1039 321 979 1040 322 1043 1041 323 1008 1042 324 1008 1042 324 1029 1043 325 955 1044 326 943 1039 321 941 1030 312 956 1035 317 1029 1043 325 1008 1042 324 1008 1042 324 1043 1041 323 980 1031 313 941 1030 312 944 1045 327 978 1046 328 1042 1047 329 1009 1048 330 1009 1048 330 1027 1049 331 953 1050 332 944 1045 327 943 1039 321 955 1044 326 1027 1049 331 1009 1048 330 1009 1048 330 1042 1047 329 979 1040 322 943 1039 321 945 1051 333 977 1052 334 1041 1053 335 1010 1054 336 1010 1054 336 1030 1055 337 960 1056 338 945 1051 333 944 1045 327 953 1050 332 1030 1055 337 1010 1054 336 1010 1054 336 1041 1053 335 978 1046 328 944 1045 327 1011 1057 339 1032 1058 340 964 1059 341 946 1060 342 945 1051 333 960 1056 338 1032 1058 340 1011 1057 339 1011 1057 339 946 1060 342 1066 1061 343 1067 1062 344 947 1063 345 976 1064 346 1040 1065 347 1012 1066 348 1012 1066 348 1034 1067 349 968 1068 350 947 1063 345 946 1060 342 964 1059 341 1034 1067 349 1012 1066 348 1012 1066 348 1040 1065 347 1066 1061 343 946 1060 342 948 1069 351 975 1070 352 1039 1071 353 1013 1072 354 1013 1072 354 1036 1073 355 971 1074 356 948 1069 351 947 1063 345 968 1068 350 1036 1073 355 1013 1072 354 1013 1072 354 1039 1071 353 976 1064 346 947 1063 345 949 1075 357 973 1076 358 1038 1077 359 1014 1078 360 1014 1078 360 1035 1079 361 967 1080 362 949 1075 357 948 1069 351 971 1074 356 1035 1079 361 1014 1078 360 1014 1078 360 1038 1077 359 975 1070 352 948 1069 351 950 1081 363 974 1082 364 1037 1083 365 1015 1084 366 1015 1084 366 1033 1085 367 963 1086 368 950 1081 363 949 1075 357 967 1080 362 1033 1085 367 1015 1084 366 1015 1084 366 1037 1083 365 973 1076 358 949 1075 357 942 1036 318 981 1038 320 1045 1087 369 1016 1088 370 1016 1088 370 1031 1089 371 958 1037 319 942 1036 318 950 1081 363 963 1086 368 1031 1089 371 1016 1088 370 1016 1088 370 1045 1087 369 974 1082 364 950 1081 363 1044 1032 314 1038 1077 359 973 1076 358 981 1038 320 986 1090 1719 1048 1091 1720 1907 1092 1721 1906 1093 1722 923 1094 1723 1017 1095 1724 1907 1092 1721 1908 1096 1725 990 1097 1726 1050 1098 1727 1911 1099 1728 1913 1100 1729 925 1101 1730 1018 1102 1731 1911 1099 1728 1909 1103 1732 909 1104 1733 1051 1105 1734 1905 1106 1735 1909 1103 1732 951 1107 1736 1019 1108 1737 1905 1106 1735 1906 1093 1722 908 1109 1738 1052 1110 1739 1910 1111 1740 1908 1096 1725 924 1112 1741 1020 1113 1742 1910 1111 1740 1912 1114 1743 910 1115 1744 1053 1116 1745 1914 1117 1746 1912 1114 1743 926 1118 1747 1021 1119 1748 1914 1117 1746 1916 1120 1749 927 1121 1750 1022 1122 1751 1918 1123 1752 1920 1124 1753 982 1125 1754 1046 1126 1755 1918 1123 1752 1916 1120 1749 984 1127 1756 1047 1128 1757 1922 1129 1758 1920 1124 1753 929 1130 1759 1023 1131 1760 1922 1129 1758 1924 1132 1761 911 1133 1762 1054 1134 1763 1923 1135 1764 1924 1132 1761 930 1136 1765 1024 1137 1766 1923 1135 1764 1921 1138 1767 988 1139 1768 1049 1140 1769 1919 1141 1770 1921 1138 1767 928 1142 1771 1025 1143 1772 1919 1141 1770 1917 1144 1773 912 1145 1774 1055 1146 1775 1915 1147 1776 1917 1144 1773 952 1148 1777 1026 1149 1778 1915 1147 1776 1913 1100 1729 953 1050 332 1027 1049 331 954 1150 969 914 1151 963 954 1152 969 1027 1049 331 955 1044 326 913 1153 967 956 1035 317 1028 1034 316 957 1154 968 916 1155 965 957 1156 968 1028 1034 316 958 1037 319 915 1157 962 955 1044 326 1029 1043 325 959 1158 966 913 1159 967 959 1160 966 1029 1043 325 956 1035 317 916 1161 965 960 1056 338 1030 1055 337 961 1162 964 917 1163 959 961 1164 964 1030 1055 337 953 1050 332 914 1165 963 958 1037 319 1031 1089 371 962 1166 961 915 1167 962 962 1168 961 1031 1089 371 963 1086 368 918 1169 958 964 1059 341 1032 1058 340 965 1170 960 919 1171 955 965 1172 960 1032 1058 340 960 1056 338 917 1173 959 963 1086 368 1033 1085 367 966 1174 957 918 1175 958 966 1176 957 1033 1085 367 967 1080 362 920 1177 954 968 1068 350 1034 1067 349 969 1178 956 921 1179 950 969 1180 956 1034 1067 349 964 1059 341 919 1181 955 967 1080 362 1035 1079 361 970 1182 953 920 1183 954 970 1184 953 1035 1079 361 971 1074 356 922 1185 952 971 1074 356 1036 1073 355 972 1186 951 922 1187 952 972 1188 951 1036 1073 355 968 1068 350 921 1189 950 914 1190 1779 954 1191 1780 1020 1113 1742 924 1112 1741 923 1094 1723 1020 1113 1742 954 1192 1780 913 1193 1781 916 1194 1782 957 1195 1783 1019 1108 1737 951 1107 1736 925 1101 1730 1019 1108 1737 957 1196 1783 915 1197 1784 923 1094 1723 913 1198 1781 959 1199 1785 1017 1095 1724 916 1200 1782 951 1107 1736 1017 1095 1724 959 1201 1785 917 1202 1786 961 1203 1787 1021 1119 1748 926 1118 1747 914 1204 1779 924 1112 1741 1021 1119 1748 961 1205 1787 925 1101 1730 915 1206 1784 962 1207 1788 1018 1102 1731 952 1148 1777 1018 1102 1731 962 1208 1788 918 1209 1789 919 1210 1790 965 1211 1791 1022 1122 1751 927 1121 1750 917 1212 1786 926 1118 1747 1022 1122 1751 965 1213 1791 952 1148 1777 918 1214 1789 966 1215 1792 1026 1149 1778 928 1142 1771 1026 1149 1778 966 1216 1792 920 1217 1793 921 1218 1794 969 1219 1795 1023 1131 1760 929 1130 1759 919 1220 1790 927 1121 1750 1023 1131 1760 969 1221 1795 928 1142 1771 920 1222 1793 970 1223 1796 1025 1143 1772 930 1136 1765 1025 1143 1772 970 1224 1796 922 1225 1797 930 1136 1765 922 1226 1797 972 1227 1798 1024 1137 1766 921 1228 1794 929 1130 1759 1024 1137 1766 972 1229 1798 984 1127 1756 1046 1126 1755 996 1230 1799 932 1231 1800 996 1230 1799 1046 1126 1755 982 1125 1754 931 1232 1801 911 1133 1762 1047 1128 1757 983 1233 1802 933 1234 1803 983 1233 1802 1047 1128 1757 984 1127 1756 932 1231 1800 908 1109 1738 1048 1091 1720 985 1235 1804 935 1236 1805 985 1235 1804 1048 1091 1720 986 1090 1719 934 1237 1806 912 1145 1774 1049 1140 1769 987 1238 1807 937 1239 1808 987 1238 1807 1049 1140 1769 988 1139 1768 936 1240 1809 909 1104 1733 1050 1098 1727 989 1241 1810 939 1242 1811 989 1241 1810 1050 1098 1727 990 1097 1726 938 1243 1812 986 1090 1719 1051 1105 1734 991 1244 1813 934 1237 1806 991 1244 1813 1051 1105 1734 909 1104 1733 939 1242 1811 910 1115 1744 1052 1110 1739 992 1245 1814 940 1246 1815 992 1245 1814 1052 1110 1739 908 1109 1738 935 1236 1805 982 1125 1754 1053 1116 1745 993 1247 1816 931 1232 1801 993 1247 1816 1053 1116 1745 910 1115 1744 940 1246 1815 988 1139 1768 1054 1134 1763 994 1248 1817 936 1240 1809 994 1248 1817 1054 1134 1763 911 1133 1762 933 1234 1803 990 1097 1726 1055 1146 1775 995 1249 1818 938 1243 1812 995 1249 1818 1055 1146 1775 912 1145 1774 937 1239 1808 996 1230 1799 1056 1250 1819 997 1251 1820 932 1231 1800 998 1252 1821 1056 1250 1819 996 1230 1799 931 1232 1801 983 1233 1802 1057 1253 1822 999 1254 1823 933 1234 1803 997 1251 1820 1057 1253 1822 983 1233 1802 932 1231 1800 985 1235 1804 1058 1255 1824 1000 1256 1825 935 1236 1805 1001 1257 1826 1058 1255 1824 985 1235 1804 934 1237 1806 987 1238 1807 1059 1258 1827 1002 1259 1828 937 1239 1808 1003 1260 1829 1059 1258 1827 987 1238 1807 936 1240 1809 989 1241 1810 1060 1261 1830 1004 1262 1831 939 1242 1811 1005 1263 1832 1060 1261 1830 989 1241 1810 938 1243 1812 991 1244 1813 1061 1264 1833 1001 1257 1826 934 1237 1806 1004 1262 1831 1061 1264 1833 991 1244 1813 939 1242 1811 992 1245 1814 1062 1265 1834 1006 1266 1835 940 1246 1815 1000 1256 1825 1062 1265 1834 992 1245 1814 935 1236 1805 993 1247 1816 1063 1267 1836 998 1252 1821 931 1232 1801 1006 1266 1835 1063 1267 1836 993 1247 1816 940 1246 1815 994 1248 1817 1064 1268 1837 1003 1260 1829 936 1240 1809 999 1254 1823 1064 1268 1837 994 1248 1817 933 1234 1803 995 1249 1818 1065 1269 1838 1005 1263 1832 938 1243 1812 1002 1259 1828 1065 1269 1838 995 1249 1818 937 1239 1808 973 1076 358 1037 1083 365 974 1082 364 1045 1087 369 981 1038 320 980 1031 313 1043 1041 323 1039 1071 353 975 1070 352 1044 1032 314 980 1031 313 975 1070 352 1038 1077 359 1043 1041 323 979 1040 322 976 1064 346 1039 1071 353 978 1046 328 1041 1053 335 977 1052 334 1067 1062 344 1066 1061 343 979 1040 322 1042 1047 329 1040 1065 347 976 1064 346 1011 1057 339 1067 1062 344 977 1052 334 945 1051 333 978 1046 328 1066 1061 343 1040 1065 347 1042 1047 329 997 1251 1820 1056 1250 1819 904 1270 1839 903 1271 1840 1056 1250 1819 998 1252 1821 1313 1013 1702 904 1270 1839 999 1254 1823 1057 1253 1822 902 1272 1841 901 1273 1842 1000 1256 1825 1058 1255 1824 863 981 1670 864 982 1671 1058 1255 1824 1001 1257 1826 853 971 1660 863 981 1670 1002 1259 1828 1059 1258 1827 887 1005 1694 880 998 1687 1059 1258 1827 1003 1260 1829 894 1012 1701 887 1005 1694 1004 1262 1831 1060 1261 1830 862 980 1669 851 969 1658 1060 1261 1830 1005 1263 1832 870 988 1677 862 980 1669 1001 1257 1826 1061 1264 1833 852 970 1659 853 971 1660 1061 1264 1833 1004 1262 1831 851 969 1658 852 970 1659 1006 1266 1835 1062 1265 1834 874 993 1682 881 1000 1689 1062 1265 1834 1000 1256 1825 864 982 1671 874 993 1682 1063 1267 1836 1006 1266 1835 881 1000 1689 888 1007 1696 1003 1260 1829 1064 1268 1837 900 1024 1713 894 1012 1701 1064 1268 1837 999 1254 1823 901 1273 1842 900 1024 1713 1005 1263 1832 1065 1269 1838 873 991 1680 870 988 1677 1065 1269 1838 1002 1259 1828 880 998 1687 873 991 1680 1057 1253 1822 997 1251 1820 903 1271 1840 902 1272 1841 870 988 1677 861 979 1668 862 980 1669 862 980 1669 850 968 1657 851 969 1658 1063 1267 1836 888 1007 1696 1313 1013 1702 998 1252 1821 1116 1274 372 1237 1275 373 1117 1276 374 1151 1277 375 1237 1275 373 1152 1278 376 1117 1276 374 1153 1279 377 1238 1280 378 1092 1281 379 1070 1282 380 1308 1283 381 1238 1280 378 1153 1279 377 1309 1284 382 1153 1279 377 1239 1285 383 1310 1286 384 1309 1284 382 1110 1287 385 1287 1288 386 1239 1285 383 1093 1289 387 1093 1289 387 1239 1285 383 1153 1279 377 1070 1282 380 1219 1290 388 1118 1291 389 1154 1292 390 1297 1293 391 1113 1294 392 1115 1295 393 1297 1293 391 1154 1292 390 1120 1296 394 1112 1297 395 1150 1298 396 1155 1299 397 1071 1300 398 1155 1299 397 1150 1301 396 1069 1302 399 1154 1292 390 1240 1303 400 1156 1304 401 1113 1305 392 1156 1306 401 1240 1303 400 1277 1307 402 1114 1308 403 1277 1307 402 1240 1303 400 1157 1309 404 1222 1310 405 1157 1309 404 1240 1303 400 1154 1292 390 1118 1291 389 1218 1311 406 1121 1312 407 1158 1313 408 1274 1314 409 1219 1290 388 1274 1314 409 1158 1313 408 1118 1291 389 1159 1315 410 1241 1316 411 1160 1317 412 1123 1318 413 1160 1317 412 1241 1316 411 1245 1319 414 1124 1320 415 1245 1319 414 1241 1316 411 1161 1321 416 1161 1321 416 1241 1316 411 1159 1315 410 1122 1322 417 1162 1323 418 1242 1324 419 1119 1325 420 1120 1296 394 1220 1326 421 1242 1324 419 1162 1323 418 1125 1327 422 1162 1323 418 1243 1328 423 1163 1329 424 1125 1327 422 1163 1329 424 1243 1328 423 1094 1330 425 1072 1331 426 1094 1330 425 1243 1328 423 1155 1299 397 1071 1300 398 1155 1299 397 1243 1328 423 1162 1323 418 1120 1296 394 1278 1332 427 1244 1333 428 1164 1334 429 1223 1335 430 1164 1334 429 1244 1333 428 1158 1313 408 1121 1312 407 1158 1313 408 1244 1333 428 1157 1309 404 1118 1291 389 1157 1309 404 1244 1333 428 1278 1332 427 1222 1310 405 1124 1320 415 1245 1319 414 1165 1336 431 1126 1337 432 1165 1336 431 1245 1319 414 1166 1338 433 1208 1339 434 1129 1340 435 1167 1341 436 1128 1342 437 1167 1341 436 1129 1340 435 1296 1343 438 1209 1344 439 1168 1345 440 1246 1346 441 1095 1347 442 1073 1348 443 1095 1347 442 1246 1346 441 1266 1349 444 1074 1350 445 1266 1349 444 1246 1346 441 1167 1341 436 1209 1344 439 1167 1341 436 1246 1346 441 1168 1345 440 1128 1342 437 1228 1351 446 1247 1352 447 1170 1353 448 1131 1354 449 1170 1353 448 1247 1352 447 1169 1355 450 1130 1356 451 1171 1357 452 1248 1358 453 1172 1359 454 1132 1360 455 1172 1359 454 1248 1358 453 1237 1275 373 1116 1274 372 1171 1357 452 1301 1361 456 1174 1362 457 1248 1358 453 1237 1275 373 1248 1358 453 1173 1363 458 1152 1278 376 1173 1363 458 1248 1358 453 1174 1362 457 1133 1364 459 1175 1365 460 1249 1366 461 1307 1367 462 1306 1368 463 1307 1367 462 1249 1366 461 1238 1280 378 1308 1283 381 1238 1280 378 1249 1366 461 1096 1369 464 1092 1281 379 1096 1369 464 1249 1366 461 1175 1365 460 1075 1370 465 1218 1311 406 1273 1371 466 1176 1372 467 1121 1312 407 1134 1373 468 1135 1374 469 1176 1372 467 1273 1371 466 1177 1375 470 1250 1376 471 1178 1377 472 1136 1378 473 1178 1377 472 1250 1376 471 1179 1379 474 1137 1380 475 1179 1379 474 1250 1376 471 1171 1357 452 1132 1360 455 1180 1381 476 1251 1382 477 1177 1375 470 1136 1378 473 1181 1383 478 1235 1384 479 1174 1362 457 1301 1361 456 1181 1383 478 1251 1382 477 1182 1385 480 1126 1337 432 1182 1385 480 1251 1382 477 1180 1381 476 1138 1386 481 1183 1387 482 1252 1388 483 1179 1379 474 1132 1360 455 1179 1379 474 1252 1388 483 1184 1389 484 1137 1380 475 1184 1389 484 1252 1388 483 1286 1390 485 1232 1391 486 1286 1390 485 1252 1388 483 1183 1387 482 1233 1392 487 1139 1393 488 1217 1394 489 1272 1395 490 1185 1396 491 1216 1397 492 1140 1398 493 1185 1396 491 1272 1395 490 1186 1399 494 1253 1400 495 1187 1401 496 1142 1402 497 1187 1401 496 1253 1400 495 1188 1403 498 1144 1404 499 1188 1403 498 1253 1400 495 1189 1405 500 1143 1406 501 1189 1405 500 1253 1400 495 1186 1399 494 1141 1407 502 1190 1408 503 1254 1409 504 1191 1410 505 1145 1411 506 1191 1410 505 1254 1409 504 1192 1412 507 1130 1356 451 1192 1412 507 1254 1409 504 1186 1399 494 1142 1402 497 1186 1399 494 1254 1409 504 1190 1408 503 1141 1407 502 1193 1413 508 1255 1414 509 1281 1415 510 1225 1416 511 1281 1415 510 1255 1414 509 1194 1417 512 1226 1418 513 1194 1417 512 1255 1414 509 1185 1396 491 1140 1398 493 1185 1396 491 1255 1414 509 1193 1413 508 1139 1393 488 1195 1419 514 1256 1420 515 1188 1403 498 1143 1406 501 1188 1403 498 1256 1420 515 1196 1421 516 1144 1404 499 1196 1421 516 1256 1420 515 1284 1422 517 1230 1423 518 1284 1422 517 1256 1420 515 1195 1419 514 1231 1424 519 1216 1397 492 1271 1425 520 1194 1417 512 1140 1398 493 1227 1426 521 1226 1418 513 1194 1417 512 1271 1425 520 1197 1427 522 1257 1428 523 1283 1429 524 1229 1430 525 1283 1429 524 1257 1428 523 1196 1421 516 1230 1423 518 1196 1421 516 1257 1428 523 1187 1401 496 1144 1404 499 1187 1401 496 1257 1428 523 1197 1427 522 1142 1402 497 1198 1431 526 1258 1432 527 1220 1326 421 1125 1327 422 1221 1433 528 1258 1432 527 1198 1431 526 1146 1434 529 1200 1435 530 1259 1436 531 1199 1437 532 1147 1438 533 1174 1362 457 1260 1439 534 1201 1440 535 1133 1364 459 1302 1441 536 1304 1442 537 1305 1443 538 1201 1440 535 1198 1431 526 1261 1444 539 1203 1445 540 1146 1434 529 1203 1445 540 1261 1444 539 1097 1446 541 1076 1447 542 1097 1446 541 1261 1444 539 1163 1329 424 1072 1331 426 1163 1329 424 1261 1444 539 1198 1431 526 1125 1327 422 1305 1443 538 1262 1448 543 1175 1365 460 1306 1368 463 1175 1365 460 1262 1448 543 1098 1449 544 1075 1370 465 1098 1449 544 1262 1448 543 1204 1450 545 1077 1451 546 1204 1450 545 1262 1448 543 1305 1443 538 1304 1442 537 1148 1452 547 1276 1453 548 1221 1433 528 1146 1434 529 1199 1437 532 1206 1454 549 1205 1455 550 1147 1438 533 1265 1456 551 1303 1457 552 1304 1442 537 1302 1441 536 1078 1458 553 1263 1459 554 1203 1445 540 1076 1447 542 1203 1445 540 1263 1459 554 1148 1452 547 1146 1434 529 1204 1450 545 1264 1460 555 1099 1461 556 1077 1451 546 1303 1457 552 1264 1460 555 1204 1450 545 1304 1442 537 1206 1454 549 1129 1340 435 1208 1339 434 1205 1455 550 1074 1350 445 1266 1349 444 1263 1459 554 1078 1458 553 1263 1459 554 1266 1349 444 1209 1344 439 1148 1452 547 1279 1462 557 1267 1463 558 1210 1464 559 1224 1465 560 1210 1464 559 1267 1463 558 1176 1372 467 1135 1374 469 1176 1372 467 1267 1463 558 1164 1334 429 1121 1312 407 1164 1334 429 1267 1463 558 1279 1462 557 1223 1335 430 1285 1466 561 1268 1467 562 1184 1389 484 1232 1391 486 1184 1389 484 1268 1467 562 1211 1468 563 1137 1380 475 1211 1468 563 1268 1467 562 1195 1419 514 1143 1406 501 1195 1419 514 1268 1467 562 1285 1466 561 1231 1424 519 1149 1469 564 1269 1470 565 1212 1471 566 1145 1411 506 1212 1471 566 1269 1470 565 1213 1472 567 1138 1386 481 1134 1373 468 1300 1473 568 1214 1474 569 1135 1374 469 1139 1393 488 1214 1474 569 1300 1473 568 1217 1394 489 1215 1475 570 1270 1476 571 1189 1405 500 1141 1407 502 1189 1405 500 1270 1476 571 1211 1468 563 1143 1406 501 1211 1468 563 1270 1476 571 1178 1377 472 1137 1380 475 1178 1377 472 1270 1476 571 1215 1475 570 1136 1378 473 1227 1426 521 1271 1425 520 1247 1352 447 1228 1351 446 1247 1352 447 1271 1425 520 1216 1397 492 1169 1355 450 1216 1397 492 1272 1395 490 1293 1477 572 1169 1355 450 1293 1477 572 1272 1395 490 1217 1394 489 1149 1469 564 1134 1373 468 1273 1371 466 1290 1478 573 1213 1472 567 1290 1478 573 1273 1371 466 1218 1311 406 1124 1320 415 1218 1311 406 1274 1314 409 1160 1317 412 1124 1320 415 1160 1317 412 1274 1314 409 1219 1290 388 1123 1318 413 1115 1479 393 1275 1480 574 1159 1315 410 1123 1318 413 1330 1481 575 1161 1321 416 1122 1322 417 1259 1436 531 1258 1432 527 1221 1433 528 1199 1437 532 1221 1433 528 1276 1453 548 1206 1454 549 1199 1437 532 1276 1453 548 1296 1343 438 1129 1340 435 1206 1454 549 1114 1482 403 1277 1307 402 1100 1483 576 1068 1484 577 1100 1483 576 1277 1307 402 1222 1310 405 1079 1485 578 1222 1310 405 1278 1332 427 1101 1486 579 1079 1485 578 1101 1486 579 1278 1332 427 1223 1335 430 1080 1487 580 1223 1335 430 1279 1462 557 1102 1488 581 1080 1487 580 1102 1488 581 1279 1462 557 1224 1465 560 1081 1489 582 1224 1465 560 1280 1490 583 1103 1491 584 1081 1489 582 1103 1491 584 1280 1490 583 1225 1416 511 1082 1492 585 1225 1416 511 1281 1415 510 1104 1493 586 1082 1492 585 1104 1493 586 1281 1415 510 1226 1418 513 1083 1494 587 1083 1494 587 1226 1418 513 1227 1426 521 1084 1495 588 1084 1495 588 1227 1426 521 1228 1351 446 1085 1496 589 1131 1354 449 1282 1497 590 1105 1498 591 1087 1499 592 1105 1498 591 1282 1497 590 1229 1430 525 1086 1500 593 1106 1501 594 1283 1429 524 1230 1423 518 1088 1502 595 1229 1430 525 1283 1429 524 1106 1501 594 1086 1500 593 1230 1423 518 1284 1422 517 1107 1503 596 1088 1502 595 1107 1503 596 1284 1422 517 1231 1424 519 1089 1504 597 1108 1505 598 1285 1466 561 1232 1391 486 1090 1506 599 1231 1424 519 1285 1466 561 1108 1505 598 1089 1504 597 1232 1391 486 1286 1390 485 1109 1507 600 1090 1506 599 1109 1507 600 1286 1390 485 1233 1392 487 1091 1508 601 1233 1392 487 1287 1288 386 1110 1287 385 1091 1508 601 1168 1345 440 1288 1509 602 1234 1510 603 1128 1342 437 1234 1510 603 1288 1509 602 1264 1460 555 1303 1457 552 1264 1460 555 1288 1509 602 1111 1511 604 1099 1461 556 1111 1511 604 1288 1509 602 1168 1345 440 1073 1348 443 1085 1496 589 1228 1351 446 1131 1354 449 1087 1499 592 1200 1435 530 1289 1512 605 1235 1384 479 1127 1513 606 1235 1384 479 1289 1512 605 1260 1439 534 1174 1362 457 1260 1439 534 1289 1512 605 1236 1514 607 1202 1515 608 1236 1514 607 1289 1512 605 1200 1435 530 1147 1438 533 1213 1472 567 1290 1478 573 1182 1385 480 1138 1386 481 1126 1337 432 1182 1385 480 1290 1478 573 1124 1320 415 1205 1455 550 1291 1516 609 1236 1514 607 1147 1438 533 1236 1514 607 1291 1516 609 1207 1517 610 1202 1515 608 1215 1475 570 1292 1518 611 1180 1381 476 1136 1378 473 1180 1381 476 1292 1518 611 1212 1471 566 1138 1386 481 1212 1471 566 1292 1518 611 1190 1408 503 1145 1411 506 1190 1408 503 1292 1518 611 1215 1475 570 1141 1407 502 1208 1339 434 1294 1519 612 1291 1516 609 1205 1455 550 1291 1516 609 1294 1519 612 1265 1456 551 1207 1517 610 1169 1355 450 1293 1477 572 1191 1410 505 1130 1356 451 1191 1410 505 1293 1477 572 1149 1469 564 1145 1411 506 1234 1510 603 1294 1519 612 1208 1339 434 1128 1342 437 1282 1497 590 1295 1520 613 1197 1427 522 1229 1430 525 1197 1427 522 1295 1520 613 1192 1412 507 1142 1402 497 1192 1412 507 1295 1520 613 1170 1353 448 1130 1356 451 1170 1353 448 1295 1520 613 1282 1497 590 1131 1354 449 1209 1344 439 1296 1343 438 1276 1453 548 1148 1452 547 1219 1290 388 1297 1293 391 1115 1521 393 1123 1318 413 1235 1384 479 1181 1383 478 1126 1337 432 1165 1336 431 1127 1513 606 1183 1387 482 1298 1522 614 1287 1288 386 1233 1392 487 1287 1288 386 1298 1522 614 1239 1285 383 1239 1285 383 1298 1522 614 1310 1286 384 1172 1359 454 1298 1522 614 1183 1387 482 1132 1360 455 1210 1464 559 1299 1523 615 1280 1490 583 1224 1465 560 1280 1490 583 1299 1523 615 1193 1413 508 1225 1416 511 1193 1413 508 1299 1523 615 1214 1474 569 1139 1393 488 1214 1474 569 1299 1523 615 1210 1464 559 1135 1374 469 1217 1394 489 1300 1473 568 1269 1470 565 1149 1469 564 1269 1470 565 1300 1473 568 1134 1373 468 1213 1472 567 1301 1361 456 1177 1375 470 1251 1382 477 1181 1383 478 1171 1357 452 1250 1376 471 1177 1375 470 1301 1361 456 1202 1515 608 1207 1517 610 1265 1456 551 1302 1441 536 1201 1440 535 1260 1439 534 1202 1515 608 1302 1441 536 1265 1456 551 1294 1519 612 1234 1510 603 1303 1457 552 1201 1440 535 1305 1443 538 1306 1368 463 1133 1364 459 1307 1367 462 1173 1363 458 1133 1364 459 1306 1368 463 1173 1363 458 1307 1367 462 1308 1283 381 1152 1278 376 1152 1278 376 1308 1283 381 1309 1284 382 1117 1276 374 1310 1286 384 1116 1274 372 1117 1276 374 1309 1284 382 1298 1522 614 1172 1359 454 1116 1274 372 1310 1286 384 1068 1524 1843 1319 1525 1844 1318 1526 1845 1114 1527 1846 902 1272 1841 1321 1528 1847 1318 1526 1845 906 1027 1716 902 1272 1841 906 1027 1716 1311 1026 1715 901 1273 1842 1311 1026 1715 899 1022 1711 900 1024 1713 901 1273 1842 898 1023 1712 899 1022 1711 1311 1026 1715 1312 1025 1714 1113 1529 1848 1322 1530 1849 1323 1531 1850 1115 1532 1851 1313 1013 1702 1324 1533 1852 1323 1531 1850 904 1270 1839 1316 1534 1853 1325 1535 1854 1326 1536 1855 1317 1537 1856 1315 1538 1857 1320 1539 1858 1332 1540 1859 897 1018 1707 903 1271 1840 1322 1530 1849 1321 1528 1847 902 1272 1841 895 1014 1703 1325 1535 1854 1324 1533 1852 1313 1013 1702 1159 1315 410 1275 1541 574 1316 1542 616 1122 1322 417 1120 1296 394 1119 1325 420 1317 1543 617 1112 1544 395 1314 1016 1705 1327 1545 1860 1326 1536 1855 896 1015 1704 1317 1546 617 1119 1325 420 1122 1322 417 1316 1547 616 906 1027 1716 1318 1526 1845 1319 1525 1844 905 1028 1717 1150 1548 1861 1332 1540 1859 1320 1539 1858 1069 1549 1862 1114 1550 1846 1318 1526 1845 1321 1528 1847 1156 1551 1863 1156 1552 1863 1321 1528 1847 1322 1530 1849 1113 1553 1848 904 1270 1839 1323 1531 1850 1322 1530 1849 903 1271 1840 1115 1554 1851 1323 1531 1850 1324 1533 1852 1275 1555 1864 1275 1556 1864 1324 1533 1852 1325 1535 1854 1316 1557 1853 896 1015 1704 1326 1536 1855 1325 1535 1854 895 1014 1703 1317 1558 1856 1326 1536 1855 1327 1545 1860 1112 1559 1865 1112 1560 1865 1327 1545 1860 1332 1540 1859 1150 1561 1861 1328 1562 618 1259 1436 531 1200 1435 530 1127 1513 606 1220 1326 421 1258 1432 527 1259 1436 531 1328 1562 618 1329 1563 619 1242 1324 419 1220 1326 421 1328 1562 618 1166 1338 433 1328 1562 618 1127 1513 606 1165 1336 431 1330 1481 575 1329 1563 619 1328 1562 618 1166 1338 433 1119 1325 420 1329 1563 619 1330 1481 575 1122 1322 417 1119 1325 420 1242 1324 419 1329 1563 619 1161 1321 416 1330 1481 575 1166 1338 433 1245 1319 414 1314 1016 1705 897 1018 1707 1332 1540 1859 1327 1545 1860 720 830 1519 721 832 1521 1333 849 1538 734 848 1537 734 848 1537 1333 849 1538 1334 863 1552 747 862 1551 747 862 1551 1334 863 1552 1335 877 1566 760 876 1565 760 876 1565 1335 877 1566 1336 891 1580 773 890 1579 773 890 1579 1336 891 1580 2 361 1172 786 904 1593 786 904 1593 2 361 1172 86 364 1175 798 916 1605 884 1002 1691 320 1020 1709 1337 1017 1706 891 1009 1698 696 807 1496 709 810 1499 1349 1564 1866 1338 1565 1867 1338 1565 1867 1349 1564 1866 1350 1566 1868 1339 1567 1869 1339 1567 1869 1350 1566 1868 1351 1568 1870 1340 1569 1871 1340 1569 1871 1351 1568 1870 1352 1570 1872 1341 1571 1873 1341 1571 1873 1352 1570 1872 1353 1572 1874 1342 1573 1875 1342 1573 1875 1353 1572 1874 1354 1574 1876 1343 1575 1877 1343 1575 1877 1354 1574 1876 1355 1576 1878 1344 1577 1879 1344 1577 1879 1355 1576 1878 1356 1578 1880 1345 1579 1881 1345 1579 1881 1356 1578 1880 1357 1580 1882 1346 1581 1883 1346 1581 1883 1357 1580 1882 1358 1582 1884 1347 1583 1885 1347 1583 1885 1358 1582 1884 1359 1584 1886 1348 1585 1887 1348 1585 1887 1359 1584 1886 1360 1586 1888 1897 1587 1889 1897 1587 1889 1360 1586 1888 1972 1588 1890 1973 1589 1891 709 810 1499 723 838 1527 1361 1590 1892 1349 1564 1866 1349 1564 1866 1361 1590 1892 1362 1591 1893 1350 1566 1868 1350 1566 1868 1362 1591 1893 1363 1592 1894 1351 1568 1870 1351 1568 1870 1363 1592 1894 1364 1593 1895 1352 1570 1872 1352 1570 1872 1364 1593 1895 1365 1594 1896 1353 1572 1874 1353 1572 1874 1365 1594 1896 1366 1595 1897 1354 1574 1876 1354 1574 1876 1366 1595 1897 1367 1596 1898 1355 1576 1878 1355 1576 1878 1367 1596 1898 1368 1597 1899 1356 1578 1880 1356 1578 1880 1368 1597 1899 1369 1598 1900 1357 1580 1882 1357 1580 1882 1369 1598 1900 1370 1599 1901 1358 1582 1884 1358 1582 1884 1370 1599 1901 1371 1600 1902 1359 1584 1886 1360 1586 1888 1899 1601 1903 1975 1602 1904 1972 1588 1890 723 838 1527 736 852 1541 1372 1603 1905 1361 1590 1892 1361 1590 1892 1372 1603 1905 1373 1604 1906 1362 1591 1893 1362 1591 1893 1373 1604 1906 1374 1605 1907 1363 1592 1894 1363 1592 1894 1374 1605 1907 1375 1606 1908 1364 1593 1895 1364 1593 1895 1375 1606 1908 1376 1607 1909 1365 1594 1896 1365 1594 1896 1376 1607 1909 1377 1608 1910 1366 1595 1897 1366 1595 1897 1377 1608 1910 1378 1609 1911 1367 1596 1898 1367 1596 1898 1378 1609 1911 1379 1610 1912 1368 1597 1899 1368 1597 1899 1379 1610 1912 1380 1611 1913 1369 1598 1900 1369 1598 1900 1380 1611 1913 1381 1612 1914 1370 1599 1901 1370 1599 1901 1381 1612 1914 1382 1613 1915 1371 1600 1902 1899 1601 1903 1900 1614 1916 1976 1615 1917 1975 1602 1904 736 852 1541 749 866 1555 1383 1616 1918 1372 1603 1905 1372 1603 1905 1383 1616 1918 1384 1617 1919 1373 1604 1906 1373 1604 1906 1384 1617 1919 1385 1618 1920 1374 1605 1907 1374 1605 1907 1385 1618 1920 1386 1619 1921 1375 1606 1908 1375 1606 1908 1386 1619 1921 1387 1620 1922 1376 1607 1909 1376 1607 1909 1387 1620 1922 1388 1621 1923 1377 1608 1910 1377 1608 1910 1388 1621 1923 1389 1622 1924 1378 1609 1911 1378 1609 1911 1389 1622 1924 1390 1623 1925 1379 1610 1912 1379 1610 1912 1390 1623 1925 1391 1624 1926 1380 1611 1913 1380 1611 1913 1391 1624 1926 1392 1625 1927 1381 1612 1914 1381 1612 1914 1392 1625 1927 1393 1626 1928 1382 1613 1915 1900 1614 1916 1901 1627 1929 1977 1628 1930 1976 1615 1917 749 866 1555 762 880 1569 1394 1629 1931 1383 1616 1918 1383 1616 1918 1394 1629 1931 1395 1630 1932 1384 1617 1919 1384 1617 1919 1395 1630 1932 1396 1631 1933 1385 1618 1920 1385 1618 1920 1396 1631 1933 1397 1632 1934 1386 1619 1921 1386 1619 1921 1397 1632 1934 1398 1633 1935 1387 1620 1922 1387 1620 1922 1398 1633 1935 1399 1634 1936 1388 1621 1923 1388 1621 1923 1399 1634 1936 1400 1635 1937 1389 1622 1924 1389 1622 1924 1400 1635 1937 1401 1636 1938 1390 1623 1925 1390 1623 1925 1401 1636 1938 1402 1637 1939 1391 1624 1926 1391 1624 1926 1402 1637 1939 1403 1638 1940 1392 1625 1927 1392 1625 1927 1403 1638 1940 1404 1639 1941 1393 1626 1928 1901 1627 1929 1902 1640 1942 1974 1641 1943 1977 1628 1930 762 880 1569 775 894 1583 1405 1642 1944 1394 1629 1931 1394 1629 1931 1405 1642 1944 1406 1643 1945 1395 1630 1932 1395 1630 1932 1406 1643 1945 1407 1644 1946 1396 1631 1933 1396 1631 1933 1407 1644 1946 1408 1645 1947 1397 1632 1934 1397 1632 1934 1408 1645 1947 1409 1646 1948 1398 1633 1935 1398 1633 1935 1409 1646 1948 1410 1647 1949 1399 1634 1936 1399 1634 1936 1410 1647 1949 1411 1648 1950 1400 1635 1937 1400 1635 1937 1411 1648 1950 1412 1649 1951 1401 1636 1938 1401 1636 1938 1412 1649 1951 1413 1650 1952 1402 1637 1939 1402 1637 1939 1413 1650 1952 1414 1651 1953 1403 1638 1940 1403 1638 1940 1414 1651 1953 1415 1652 1954 1404 1639 1941 2043 435 1231 2044 1653 1955 1974 1641 1943 434 436 1232 775 894 1583 787 906 1595 1416 1654 1956 1405 1642 1944 1405 1642 1944 1416 1654 1956 1417 1655 1957 1406 1643 1945 1406 1643 1945 1417 1655 1957 1418 1656 1958 1407 1644 1946 1407 1644 1946 1418 1656 1958 1419 1657 1959 1408 1645 1947 1408 1645 1947 1419 1657 1959 1420 1658 1960 1409 1646 1948 1409 1646 1948 1420 1658 1960 1421 1659 1961 1410 1647 1949 1410 1647 1949 1421 1659 1961 1422 1660 1962 1411 1648 1950 1411 1648 1950 1422 1660 1962 1423 1661 1963 1412 1649 1951 1412 1649 1951 1423 1661 1963 1424 1662 1964 1413 1650 1952 1413 1650 1952 1424 1662 1964 1425 1663 1965 1414 1651 1953 1414 1651 1953 1425 1663 1965 1426 1664 1966 1415 1652 1954 787 906 1595 799 918 1607 1427 1665 1967 1416 1654 1956 1416 1654 1956 1427 1665 1967 1428 1666 1968 1417 1655 1957 1417 1655 1957 1428 1666 1968 1429 1667 1969 1418 1656 1958 1418 1656 1958 1429 1667 1969 1430 1668 1970 1419 1657 1959 1419 1657 1959 1430 1668 1970 1431 1669 1971 1420 1658 1960 1420 1658 1960 1431 1669 1971 1432 1670 1972 1421 1659 1961 1421 1659 1961 1432 1670 1972 1433 1671 1973 1422 1660 1962 1422 1660 1962 1433 1671 1973 1434 1672 1974 1423 1661 1963 1423 1661 1963 1434 1672 1974 1435 1673 1975 1424 1662 1964 1424 1662 1964 1435 1673 1975 1436 1674 1976 1425 1663 1965 1425 1663 1965 1436 1674 1976 1437 1675 1977 1426 1664 1966 799 918 1607 811 930 1619 1438 1676 1978 1427 1665 1967 1427 1665 1967 1438 1676 1978 1439 1677 1979 1428 1666 1968 1428 1666 1968 1439 1677 1979 1440 1678 1980 1429 1667 1969 1429 1667 1969 1440 1678 1980 1441 1679 1981 1430 1668 1970 1430 1668 1970 1441 1679 1981 1442 1680 1982 1431 1669 1971 1431 1669 1971 1442 1680 1982 1443 1681 1983 1432 1670 1972 1432 1670 1972 1443 1681 1983 1444 1682 1984 1433 1671 1973 1433 1671 1973 1444 1682 1984 1445 1683 1985 1434 1672 1974 1434 1672 1974 1445 1683 1985 1446 1684 1986 1435 1673 1975 1435 1673 1975 1446 1684 1986 1447 1685 1987 1436 1674 1976 1436 1674 1976 1447 1685 1987 1448 1686 1988 1437 1675 1977 811 930 1619 823 942 1631 1449 1687 1989 1438 1676 1978 1438 1676 1978 1449 1687 1989 1450 1688 1990 1439 1677 1979 1439 1677 1979 1450 1688 1990 1451 1689 1991 1440 1678 1980 1440 1678 1980 1451 1689 1991 1452 1690 1992 1441 1679 1981 1441 1679 1981 1452 1690 1992 1453 1691 1993 1442 1680 1982 1442 1680 1982 1453 1691 1993 1454 1692 1994 1443 1681 1983 1443 1681 1983 1454 1692 1994 1455 1693 1995 1444 1682 1984 1444 1682 1984 1455 1693 1995 1456 1694 1996 1445 1683 1985 1445 1683 1985 1456 1694 1996 1457 1695 1997 1446 1684 1986 1446 1684 1986 1457 1695 1997 1458 1696 1998 1447 1685 1987 1447 1685 1987 1458 1696 1998 1459 1697 1999 1448 1686 1988 823 942 1631 846 954 1643 1460 1698 2000 1449 1687 1989 1449 1687 1989 1460 1698 2000 1461 1699 2001 1450 1688 1990 1450 1688 1990 1461 1699 2001 1462 1700 2002 1451 1689 1991 1451 1689 1991 1462 1700 2002 1463 1701 2003 1452 1690 1992 1452 1690 1992 1463 1701 2003 1464 1702 2004 1453 1691 1993 1453 1691 1993 1464 1702 2004 1465 1703 2005 1454 1692 1994 1454 1692 1994 1465 1703 2005 1466 1704 2006 1455 1693 1995 1455 1693 1995 1466 1704 2006 1467 1705 2007 1456 1694 1996 1456 1694 1996 1467 1705 2007 1468 1706 2008 1457 1695 1997 1457 1695 1997 1468 1706 2008 1469 1707 2009 1458 1696 1998 1458 1696 1998 1469 1707 2009 1470 1708 2010 1459 1697 1999 846 954 1643 847 966 1655 1471 1709 2011 1460 1698 2000 1460 1698 2000 1471 1709 2011 1472 1710 2012 1461 1699 2001 1461 1699 2001 1472 1710 2012 1473 1711 2013 1462 1700 2002 1462 1700 2002 1473 1711 2013 1474 1712 2014 1463 1701 2003 1463 1701 2003 1474 1712 2014 1475 1713 2015 1464 1702 2004 1464 1702 2004 1475 1713 2015 1476 1714 2016 1465 1703 2005 1465 1703 2005 1476 1714 2016 1477 1715 2017 1466 1704 2006 1466 1704 2006 1477 1715 2017 1478 1716 2018 1467 1705 2007 1467 1705 2007 1478 1716 2018 1479 1717 2019 1468 1706 2008 1468 1706 2008 1479 1717 2019 1480 1718 2020 1469 1707 2009 1469 1707 2009 1480 1718 2020 1481 1719 2021 1470 1708 2010 847 966 1655 859 978 1667 1482 1720 2022 1471 1709 2011 1471 1709 2011 1482 1720 2022 1483 1721 2023 1472 1710 2012 1472 1710 2012 1483 1721 2023 1484 1722 2024 1473 1711 2013 1476 1714 2016 1485 1723 2025 1477 1715 2017 1477 1715 2017 1485 1723 2025 1488 1724 2026 1478 1716 2018 1478 1716 2018 1488 1724 2026 1489 1725 2027 1479 1717 2019 1479 1717 2019 1489 1725 2027 1490 1726 2028 1480 1718 2020 1480 1718 2020 1490 1726 2028 1491 1727 2029 1481 1719 2021 859 978 1667 868 987 1676 1486 1728 2030 1482 1720 2022 1482 1720 2022 1486 1728 2030 1487 1729 2031 1483 1721 2023 868 987 1676 871 990 1679 1492 1730 2032 1486 1728 2030 1486 1728 2030 1492 1730 2032 1493 1731 2033 1487 1729 2031 1495 1732 2034 1489 1725 2027 1488 1724 2026 1494 1733 2035 1489 1725 2027 1495 1732 2034 1496 1734 2036 1490 1726 2028 1490 1726 2028 1496 1734 2036 1497 1735 2037 1491 1727 2029 871 990 1679 878 997 1686 1498 1736 2038 1492 1730 2032 1492 1730 2032 1498 1736 2038 1499 1737 2039 1493 1731 2033 1501 1738 2040 1495 1732 2034 1494 1733 2035 1500 1739 2041 1495 1732 2034 1501 1738 2040 1502 1740 2042 1496 1734 2036 1496 1734 2036 1502 1740 2042 1503 1741 2043 1497 1735 2037 878 997 1686 885 1004 1693 1504 1742 2044 1498 1736 2038 1498 1736 2038 1504 1742 2044 1505 1743 2045 1499 1737 2039 1507 1744 2046 1501 1738 2040 1500 1739 2041 1506 1745 2047 1501 1738 2040 1507 1744 2046 1508 1746 2048 1502 1740 2042 1502 1740 2042 1508 1746 2048 1509 1747 2049 1503 1741 2043 885 1004 1693 892 1011 1700 1510 1748 2050 1504 1742 2044 1504 1742 2044 1510 1748 2050 1511 1749 2051 1505 1743 2045 1882 1750 2052 1512 1751 2053 1507 1744 2046 1506 1745 2047 1507 1744 2046 1512 1751 2053 1513 1752 2054 1508 1746 2048 1508 1746 2048 1513 1752 2054 1883 1753 2055 1509 1747 2049 1509 1747 2049 1883 1753 2055 1514 1754 2056 1904 1755 2057 1904 1755 2057 1985 1019 1708 1986 1021 1710 1903 1756 2058 892 1011 1700 898 1023 1712 1515 1757 2059 1510 1748 2050 1510 1748 2050 1515 1757 2059 1516 1758 2060 1511 1749 2051 1312 1025 1714 905 1028 1717 1521 1759 2061 1881 1760 2062 1338 1565 1867 907 1029 1718 696 807 1496 1339 1567 1869 907 1029 1718 1338 1565 1867 1340 1569 1871 907 1029 1718 1339 1567 1869 1341 1571 1873 907 1029 1718 1340 1569 1871 1342 1573 1875 907 1029 1718 1341 1571 1873 1343 1575 1877 907 1029 1718 1342 1573 1875 1344 1577 1879 907 1029 1718 1343 1575 1877 1345 1579 1881 907 1029 1718 1344 1577 1879 1346 1581 1883 907 1029 1718 1345 1579 1881 1347 1583 1885 907 1029 1718 1346 1581 1883 1348 1585 1887 907 1029 1718 1347 1583 1885 1348 1585 1887 1897 1587 1889 907 1029 1718 1973 1589 1891 907 1029 1718 1897 1587 1889 1555 1761 692 1621 1762 693 1658 1763 694 1594 1764 695 1621 1762 693 1555 1761 692 1570 1765 696 1642 1766 697 1556 1767 698 1621 1762 693 1642 1766 697 1572 1768 699 1621 1762 693 1556 1767 698 1595 1769 700 1658 1763 694 1557 1770 701 1622 1771 702 1657 1772 703 1593 1773 704 1622 1771 702 1557 1770 701 1569 1774 705 1643 1775 706 1555 1761 692 1622 1771 702 1643 1775 706 1570 1765 696 1622 1771 702 1555 1761 692 1594 1764 695 1657 1772 703 1558 1776 707 1623 1777 708 1656 1778 709 1592 1779 710 1623 1777 708 1558 1776 707 1567 1780 711 1641 1781 712 1557 1770 701 1623 1777 708 1641 1781 712 1569 1774 705 1623 1777 708 1557 1770 701 1593 1773 704 1656 1778 709 1559 1782 713 1624 1783 714 1655 1784 715 1591 1785 716 1624 1783 714 1559 1782 713 1574 1786 717 1644 1787 718 1558 1776 707 1624 1783 714 1644 1787 718 1567 1780 711 1624 1783 714 1558 1776 707 1592 1779 710 1655 1784 715 1625 1788 719 1560 1789 720 1578 1790 721 1646 1791 722 1559 1782 713 1625 1788 719 1646 1791 722 1574 1786 717 1625 1788 719 1681 1792 723 1680 1793 724 1560 1789 720 1561 1794 725 1626 1795 726 1654 1796 727 1590 1797 728 1626 1795 726 1561 1794 725 1582 1798 729 1648 1799 730 1560 1789 720 1626 1795 726 1648 1799 730 1578 1790 721 1626 1795 726 1560 1789 720 1680 1793 724 1654 1796 727 1562 1800 731 1627 1801 732 1653 1802 733 1589 1803 734 1627 1801 732 1562 1800 731 1585 1804 735 1650 1805 736 1561 1794 725 1627 1801 732 1650 1805 736 1582 1798 729 1627 1801 732 1561 1794 725 1590 1797 728 1653 1802 733 1563 1806 737 1628 1807 738 1652 1808 739 1587 1809 740 1628 1807 738 1563 1806 737 1581 1810 741 1649 1811 742 1562 1800 731 1628 1807 738 1649 1811 742 1585 1804 735 1628 1807 738 1562 1800 731 1589 1803 734 1652 1808 739 1564 1812 743 1629 1813 744 1651 1814 745 1588 1815 746 1629 1813 744 1564 1812 743 1577 1816 747 1647 1817 748 1563 1806 737 1629 1813 744 1647 1817 748 1581 1810 741 1629 1813 744 1563 1806 737 1587 1809 740 1651 1814 745 1556 1767 698 1630 1818 749 1659 1819 750 1595 1769 700 1630 1818 749 1556 1767 698 1572 1768 699 1645 1820 752 1564 1812 743 1630 1818 749 1645 1820 752 1577 1816 747 1630 1818 749 1564 1812 743 1588 1815 746 1659 1819 750 1658 1763 694 1595 1769 700 1587 1809 740 1652 1808 739 1662 1821 2063 1600 1822 2064 1927 1823 2065 1926 1824 2066 1631 1825 2067 1537 1826 2068 1925 1827 2069 1926 1824 2066 1664 1828 2070 1604 1829 2071 1934 1830 2072 1932 1831 2073 1632 1832 2074 1539 1833 2075 1930 1834 2076 1932 1831 2073 1665 1835 2077 1523 1836 2078 1930 1834 2076 1928 1837 2079 1633 1838 2080 1565 1839 2081 1927 1823 2065 1928 1837 2079 1666 1840 2082 1522 1841 2083 1925 1827 2069 1929 1842 2084 1634 1843 2085 1538 1844 2086 1931 1845 2087 1929 1842 2084 1667 1846 2088 1524 1847 2089 1931 1845 2087 1933 1848 2090 1635 1849 2091 1540 1850 2092 1935 1851 2093 1933 1848 2090 1636 1852 2094 1541 1853 2095 1939 1854 2096 1937 1855 2097 1660 1856 2098 1596 1857 2099 1935 1851 2093 1937 1855 2097 1661 1858 2100 1598 1859 2101 1939 1854 2096 1941 1860 2102 1637 1861 2103 1543 1862 2104 1943 1863 2105 1941 1860 2102 1668 1864 2106 1525 1865 2107 1943 1863 2105 1944 1866 2108 1638 1867 2109 1544 1868 2110 1942 1869 2111 1944 1866 2108 1663 1870 2112 1602 1871 2113 1942 1869 2111 1940 1872 2114 1639 1873 2115 1542 1874 2116 1938 1875 2117 1940 1872 2114 1669 1876 2118 1526 1877 2119 1938 1875 2117 1936 1878 2120 1640 1879 2121 1566 1880 2122 1934 1830 2072 1936 1878 2120 1567 1780 711 1528 1881 944 1568 1882 949 1641 1781 712 1568 1883 949 1527 1884 947 1569 1774 705 1641 1781 712 1570 1765 696 1530 1885 946 1571 1886 948 1642 1766 697 1571 1887 948 1529 1888 942 1572 1768 699 1642 1766 697 1569 1774 705 1527 1889 947 1573 1890 945 1643 1775 706 1573 1891 945 1530 1892 946 1570 1765 696 1643 1775 706 1574 1786 717 1531 1893 940 1575 1894 943 1644 1787 718 1575 1895 943 1528 1896 944 1567 1780 711 1644 1787 718 1572 1768 699 1529 1897 942 1576 1898 941 1645 1820 752 1576 1899 941 1532 1900 938 1577 1816 747 1645 1820 752 1578 1790 721 1533 1901 936 1579 1902 939 1646 1791 722 1579 1903 939 1531 1904 940 1574 1786 717 1646 1791 722 1577 1816 747 1532 1905 938 1580 1906 937 1647 1817 748 1580 1907 937 1534 1908 934 1581 1810 741 1647 1817 748 1582 1798 729 1535 1909 931 1583 1910 935 1648 1799 730 1583 1911 935 1533 1912 936 1578 1790 721 1648 1799 730 1581 1810 741 1534 1913 934 1584 1914 933 1649 1811 742 1584 1915 933 1536 1916 932 1585 1804 735 1649 1811 742 1585 1804 735 1536 1917 932 1586 1918 930 1650 1805 736 1586 1919 930 1535 1920 931 1582 1798 729 1650 1805 736 1568 1921 2123 1528 1922 2124 1538 1844 2086 1634 1843 2085 1568 1923 2123 1634 1843 2085 1537 1826 2068 1527 1924 2125 1571 1925 2126 1530 1926 2127 1565 1839 2081 1633 1838 2080 1571 1927 2126 1633 1838 2080 1539 1833 2075 1529 1928 2128 1573 1929 2129 1527 1930 2125 1537 1826 2068 1631 1825 2067 1573 1931 2129 1631 1825 2067 1565 1839 2081 1530 1932 2127 1575 1933 2130 1531 1934 2131 1540 1850 2092 1635 1849 2091 1575 1935 2130 1635 1849 2091 1538 1844 2086 1528 1936 2124 1576 1937 2132 1529 1938 2128 1539 1833 2075 1632 1832 2074 1576 1939 2132 1632 1832 2074 1566 1880 2122 1532 1940 2133 1579 1941 2134 1533 1942 2135 1541 1853 2095 1636 1852 2094 1579 1943 2134 1636 1852 2094 1540 1850 2092 1531 1944 2131 1580 1945 2136 1532 1946 2133 1566 1880 2122 1640 1879 2121 1580 1947 2136 1640 1879 2121 1542 1874 2116 1534 1948 2137 1583 1949 2138 1535 1950 2139 1543 1862 2104 1637 1861 2103 1583 1951 2138 1637 1861 2103 1541 1853 2095 1533 1952 2135 1584 1953 2140 1534 1954 2137 1542 1874 2116 1639 1873 2115 1584 1955 2140 1639 1873 2115 1544 1868 2110 1536 1956 2141 1586 1957 2142 1536 1958 2141 1544 1868 2110 1638 1867 2109 1586 1959 2142 1638 1867 2109 1543 1862 2104 1535 1960 2139 1598 1859 2101 1546 1961 2143 1610 1962 2144 1660 1856 2098 1610 1962 2144 1545 1963 2145 1596 1857 2099 1660 1856 2098 1525 1865 2107 1547 1964 2146 1597 1965 2147 1661 1858 2100 1597 1965 2147 1546 1961 2143 1598 1859 2101 1661 1858 2100 1522 1841 2083 1549 1966 2148 1599 1967 2149 1662 1821 2063 1599 1967 2149 1548 1968 2150 1600 1822 2064 1662 1821 2063 1526 1877 2119 1551 1969 2151 1601 1970 2152 1663 1870 2112 1601 1970 2152 1550 1971 2153 1602 1871 2113 1663 1870 2112 1523 1836 2078 1553 1972 2154 1603 1973 2155 1664 1828 2070 1603 1973 2155 1552 1974 2156 1604 1829 2071 1664 1828 2070 1600 1822 2064 1548 1968 2150 1605 1975 2157 1665 1835 2077 1605 1975 2157 1553 1972 2154 1523 1836 2078 1665 1835 2077 1524 1847 2089 1554 1976 2158 1606 1977 2159 1666 1840 2082 1606 1977 2159 1549 1966 2148 1522 1841 2083 1666 1840 2082 1596 1857 2099 1545 1963 2145 1607 1978 2160 1667 1846 2088 1607 1978 2160 1554 1976 2158 1524 1847 2089 1667 1846 2088 1602 1871 2113 1550 1971 2153 1608 1979 2161 1668 1864 2106 1608 1979 2161 1547 1964 2146 1525 1865 2107 1668 1864 2106 1604 1829 2071 1552 1974 2156 1609 1980 2162 1669 1876 2118 1609 1980 2162 1551 1969 2151 1526 1877 2119 1669 1876 2118 1610 1962 2144 1546 1961 2143 1611 1981 2163 1670 1982 2164 1612 1983 2165 1545 1963 2145 1610 1962 2144 1670 1982 2164 1597 1965 2147 1547 1964 2146 1613 1984 2166 1671 1985 2167 1611 1981 2163 1546 1961 2143 1597 1965 2147 1671 1985 2167 1599 1967 2149 1549 1966 2148 1614 1986 2168 1672 1987 2169 1615 1988 2170 1548 1968 2150 1599 1967 2149 1672 1987 2169 1601 1970 2152 1551 1969 2151 1616 1989 2171 1673 1990 2172 1617 1991 2173 1550 1971 2153 1601 1970 2152 1673 1990 2172 1603 1973 2155 1553 1972 2154 1618 1992 2174 1674 1993 2175 1619 1994 2176 1552 1974 2156 1603 1973 2155 1674 1993 2175 1605 1975 2157 1548 1968 2150 1615 1988 2170 1675 1995 2177 1618 1992 2174 1553 1972 2154 1605 1975 2157 1675 1995 2177 1606 1977 2159 1554 1976 2158 1620 1996 2178 1676 1997 2179 1614 1986 2168 1549 1966 2148 1606 1977 2159 1676 1997 2179 1607 1978 2160 1545 1963 2145 1612 1983 2165 1677 1998 2180 1620 1996 2178 1554 1976 2158 1607 1978 2160 1677 1998 2180 1608 1979 2161 1550 1971 2153 1617 1991 2173 1678 1999 2181 1613 1984 2166 1547 1964 2146 1608 1979 2161 1678 1999 2181 1609 1980 2162 1552 1974 2156 1619 1994 2176 1679 2000 2182 1616 1989 2171 1551 1969 2151 1609 1980 2162 1679 2000 2182 1587 1809 740 1595 1769 700 1659 1819 750 1588 1815 746 1651 1814 745 1594 1764 695 1589 1803 734 1653 1802 733 1657 1772 703 1658 1763 694 1652 1808 739 1589 1803 734 1594 1764 695 1657 1772 703 1653 1802 733 1590 1797 728 1593 1773 704 1592 1779 710 1680 1793 724 1681 1792 723 1591 1785 716 1655 1784 715 1593 1773 704 1590 1797 728 1654 1796 727 1656 1778 709 1625 1788 719 1559 1782 713 1591 1785 716 1681 1792 723 1592 1779 710 1656 1778 709 1654 1796 727 1680 1793 724 1611 1981 2163 1519 2001 2183 1520 2002 2184 1670 1982 2164 1670 1982 2164 1520 2002 2184 1882 1750 2052 1612 1983 2165 1613 1984 2166 1517 2003 2185 1518 2004 2186 1671 1985 2167 1614 1986 2168 1488 1724 2026 1485 1723 2025 1672 1987 2169 1672 1987 2169 1485 1723 2025 1476 1714 2016 1615 1988 2170 1616 1989 2171 1499 1737 2039 1505 1743 2045 1673 1990 2172 1673 1990 2172 1505 1743 2045 1511 1749 2051 1617 1991 2173 1618 1992 2174 1474 1712 2014 1484 1722 2024 1674 1993 2175 1674 1993 2175 1484 1722 2024 1487 1729 2031 1619 1994 2176 1615 1988 2170 1476 1714 2016 1475 1713 2015 1675 1995 2177 1675 1995 2177 1475 1713 2015 1474 1712 2014 1618 1992 2174 1620 1996 2178 1500 1739 2041 1494 1733 2035 1676 1997 2179 1676 1997 2179 1494 1733 2035 1488 1724 2026 1614 1986 2168 1677 1998 2180 1506 1745 2047 1500 1739 2041 1620 1996 2178 1617 1991 2173 1511 1749 2051 1516 1758 2060 1678 1999 2181 1678 1999 2181 1516 1758 2060 1517 2003 2185 1613 1984 2166 1619 1994 2176 1487 1729 2031 1493 1731 2033 1679 2000 2182 1679 2000 2182 1493 1731 2033 1499 1737 2039 1616 1989 2171 1671 1985 2167 1518 2004 2186 1519 2001 2183 1611 1981 2163 1487 1729 2031 1484 1722 2024 1483 1721 2023 1484 1722 2024 1474 1712 2014 1473 1711 2013 1677 1998 2180 1612 1983 2165 1882 1750 2052 1506 1745 2047 1807 2005 620 1687 2006 621 1721 2007 622 1721 2007 622 1687 2006 621 1722 2008 623 1807 2005 620 1723 2009 624 1070 1282 380 1092 1281 379 1808 2010 625 1878 2011 626 1879 2012 627 1723 2009 624 1808 2010 625 1723 2009 624 1879 2012 627 1880 2013 628 1809 2014 629 1110 1287 385 1093 1289 387 1809 2014 629 1857 2015 630 1093 1289 387 1070 1282 380 1723 2009 624 1809 2014 629 1789 2016 631 1867 2017 632 1724 2018 633 1688 2019 634 1683 2020 635 1724 2018 633 1867 2017 632 1685 2021 636 1690 2022 637 1725 2023 638 1720 2024 639 1682 2025 640 1071 1300 398 1069 2026 399 1720 2027 639 1725 2023 638 1724 2018 633 1683 2028 635 1726 2029 641 1810 2030 642 1726 2031 641 1684 2032 643 1847 2033 644 1810 2030 642 1847 2033 644 1792 2034 645 1727 2035 646 1810 2030 642 1727 2035 646 1688 2019 634 1724 2018 633 1810 2030 642 1788 2036 647 1844 2037 648 1728 2038 649 1691 2039 650 1789 2016 631 1688 2019 634 1728 2038 649 1844 2037 648 1729 2040 651 1693 2041 652 1730 2042 653 1811 2043 654 1730 2042 653 1694 2044 655 1815 2045 656 1811 2043 654 1815 2045 656 1731 2046 657 1811 2043 654 1731 2046 657 1692 2047 658 1729 2040 651 1811 2043 654 1732 2048 659 1690 2022 637 1689 2049 660 1812 2050 661 1790 2051 662 1695 2052 663 1732 2048 659 1812 2050 661 1732 2048 659 1695 2052 663 1733 2053 664 1813 2054 665 1733 2053 664 1072 1331 426 1094 1330 425 1813 2054 665 1094 1330 425 1071 1300 398 1725 2023 638 1813 2054 665 1725 2023 638 1690 2022 637 1732 2048 659 1813 2054 665 1848 2055 666 1793 2056 667 1734 2057 668 1814 2058 669 1734 2057 668 1691 2039 650 1728 2038 649 1814 2058 669 1728 2038 649 1688 2019 634 1727 2035 646 1814 2058 669 1727 2035 646 1792 2034 645 1848 2055 666 1814 2058 669 1694 2044 655 1696 2059 670 1735 2060 671 1815 2045 656 1735 2060 671 1736 2061 672 1815 2045 656 1778 2062 673 1698 2063 674 1737 2064 675 1699 2065 676 1737 2064 675 1779 2066 677 1866 2067 678 1699 2065 676 1738 2068 679 1073 1348 443 1095 1347 442 1816 2069 680 1095 1347 442 1074 1350 445 1836 2070 681 1816 2069 680 1836 2070 681 1779 2066 677 1737 2064 675 1816 2069 680 1737 2064 675 1698 2063 674 1738 2068 679 1816 2069 680 1798 2071 682 1701 2072 683 1740 2073 684 1817 2074 685 1740 2073 684 1700 2075 686 1739 2076 687 1817 2074 685 1741 2077 688 1702 2078 689 1742 2079 690 1818 2080 691 1742 2079 690 1686 2081 751 1807 2005 620 1818 2080 691 1741 2077 688 1818 2080 691 1744 2082 753 1871 2083 754 1807 2005 620 1722 2008 623 1743 2084 755 1818 2080 691 1743 2084 755 1703 2085 756 1744 2082 753 1818 2080 691 1745 2086 757 1876 2087 758 1877 2088 759 1819 2089 760 1877 2088 759 1878 2011 626 1808 2010 625 1819 2089 760 1808 2010 625 1092 1281 379 1096 1369 464 1819 2089 760 1096 1369 464 1075 1370 465 1745 2086 757 1819 2089 760 1788 2036 647 1691 2039 650 1746 2090 761 1843 2091 762 1704 2092 763 1843 2091 762 1746 2090 761 1705 2093 764 1747 2094 765 1706 2095 766 1748 2096 767 1820 2097 768 1748 2096 767 1707 2098 769 1749 2099 770 1820 2097 768 1749 2099 770 1702 2078 689 1741 2077 688 1820 2097 768 1750 2100 771 1706 2095 766 1747 2094 765 1821 2101 772 1751 2102 773 1871 2083 754 1744 2082 753 1805 2103 774 1751 2102 773 1696 2059 670 1752 2104 775 1821 2101 772 1752 2104 775 1708 2105 776 1750 2100 771 1821 2101 772 1753 2106 777 1702 2078 689 1749 2099 770 1822 2107 778 1749 2099 770 1707 2098 769 1754 2108 779 1822 2107 778 1754 2108 779 1802 2109 780 1856 2110 781 1822 2107 778 1856 2110 781 1803 2111 782 1753 2106 777 1822 2107 778 1709 2112 783 1755 2113 784 1842 2114 785 1787 2115 786 1786 2116 787 1842 2114 785 1755 2113 784 1710 2117 788 1756 2118 789 1712 2119 790 1757 2120 791 1823 2121 792 1757 2120 791 1714 2122 793 1758 2123 794 1823 2121 792 1758 2123 794 1713 2124 795 1759 2125 796 1823 2121 792 1759 2125 796 1711 2126 797 1756 2118 789 1823 2121 792 1760 2127 798 1715 2128 799 1761 2129 800 1824 2130 801 1761 2129 800 1700 2075 686 1762 2131 802 1824 2130 801 1762 2131 802 1712 2119 790 1756 2118 789 1824 2130 801 1756 2118 789 1711 2126 797 1760 2127 798 1824 2130 801 1763 2132 803 1795 2133 804 1851 2134 805 1825 2135 806 1851 2134 805 1796 2136 807 1764 2137 808 1825 2135 806 1764 2137 808 1710 2117 788 1755 2113 784 1825 2135 806 1755 2113 784 1709 2112 783 1763 2132 803 1825 2135 806 1765 2138 809 1713 2124 795 1758 2123 794 1826 2139 810 1758 2123 794 1714 2122 793 1766 2140 811 1826 2139 810 1766 2140 811 1800 2141 812 1854 2142 813 1826 2139 810 1854 2142 813 1801 2143 814 1765 2138 809 1826 2139 810 1786 2116 787 1710 2117 788 1764 2137 808 1841 2144 815 1797 2145 816 1841 2144 815 1764 2137 808 1796 2136 807 1767 2146 817 1799 2147 818 1853 2148 819 1827 2149 820 1853 2148 819 1800 2141 812 1766 2140 811 1827 2149 820 1766 2140 811 1714 2122 793 1757 2120 791 1827 2149 820 1757 2120 791 1712 2119 790 1767 2146 817 1827 2149 820 1768 2150 821 1695 2052 663 1790 2051 662 1828 2151 822 1791 2152 823 1716 2153 824 1768 2150 821 1828 2151 822 1770 2154 825 1717 2155 826 1769 2156 827 1829 2157 828 1744 2082 753 1703 2085 756 1771 2158 829 1830 2159 830 1872 2160 831 1771 2158 829 1875 2161 832 1874 2162 833 1768 2150 821 1716 2153 824 1773 2163 834 1831 2164 835 1773 2163 834 1076 1447 542 1097 1446 541 1831 2164 835 1097 1446 541 1072 1331 426 1733 2053 664 1831 2164 835 1733 2053 664 1695 2052 663 1768 2150 821 1831 2164 835 1875 2161 832 1876 2087 758 1745 2086 757 1832 2165 836 1745 2086 757 1075 1370 465 1098 1449 544 1832 2165 836 1098 1449 544 1077 1451 546 1774 2166 837 1832 2165 836 1774 2166 837 1874 2162 833 1875 2161 832 1832 2165 836 1718 2167 838 1716 2153 824 1791 2152 823 1846 2168 839 1769 2156 827 1717 2155 826 1775 2169 840 1776 2170 841 1835 2171 842 1872 2160 831 1874 2162 833 1873 2172 843 1078 1458 553 1076 1447 542 1773 2163 834 1833 2173 844 1773 2163 834 1716 2153 824 1718 2167 838 1833 2173 844 1774 2166 837 1077 1451 546 1099 1461 556 1834 2174 845 1873 2172 843 1874 2162 833 1774 2166 837 1834 2174 845 1776 2170 841 1775 2169 840 1778 2062 673 1699 2065 676 1074 1350 445 1078 1458 553 1833 2173 844 1836 2070 681 1833 2173 844 1718 2167 838 1779 2066 677 1836 2070 681 1849 2175 846 1794 2176 847 1780 2177 848 1837 2178 849 1780 2177 848 1705 2093 764 1746 2090 761 1837 2178 849 1746 2090 761 1691 2039 650 1734 2057 668 1837 2178 849 1734 2057 668 1793 2056 667 1849 2175 846 1837 2178 849 1855 2179 850 1802 2109 780 1754 2108 779 1838 2180 851 1754 2108 779 1707 2098 769 1781 2181 852 1838 2180 851 1781 2181 852 1713 2124 795 1765 2138 809 1838 2180 851 1765 2138 809 1801 2143 814 1855 2179 850 1838 2180 851 1719 2182 853 1715 2128 799 1782 2183 854 1839 2184 855 1782 2183 854 1708 2105 776 1783 2185 856 1839 2184 855 1704 2092 763 1705 2093 764 1784 2186 857 1870 2187 858 1709 2112 783 1787 2115 786 1870 2187 858 1784 2186 857 1785 2188 859 1711 2126 797 1759 2125 796 1840 2189 860 1759 2125 796 1713 2124 795 1781 2181 852 1840 2189 860 1781 2181 852 1707 2098 769 1748 2096 767 1840 2189 860 1748 2096 767 1706 2095 766 1785 2188 859 1840 2189 860 1797 2145 816 1798 2071 682 1817 2074 685 1841 2144 815 1817 2074 685 1739 2076 687 1786 2116 787 1841 2144 815 1786 2116 787 1739 2076 687 1863 2190 861 1842 2114 785 1863 2190 861 1719 2182 853 1787 2115 786 1842 2114 785 1704 2092 763 1783 2185 856 1860 2191 862 1843 2091 762 1860 2191 862 1694 2044 655 1788 2036 647 1843 2091 762 1788 2036 647 1694 2044 655 1730 2042 653 1844 2037 648 1730 2042 653 1693 2041 652 1789 2016 631 1844 2037 648 1685 2192 636 1693 2041 652 1729 2040 651 1845 2193 863 1896 2194 864 1692 2047 658 1731 2046 657 1829 2157 828 1769 2156 827 1791 2152 823 1828 2151 822 1791 2152 823 1769 2156 827 1776 2170 841 1846 2168 839 1846 2168 839 1776 2170 841 1699 2065 676 1866 2067 678 1684 2195 643 1068 2196 577 1100 1483 576 1847 2033 644 1100 1483 576 1079 1485 578 1792 2034 645 1847 2033 644 1792 2034 645 1079 1485 578 1101 1486 579 1848 2055 666 1101 1486 579 1080 1487 580 1793 2056 667 1848 2055 666 1793 2056 667 1080 1487 580 1102 1488 581 1849 2175 846 1102 1488 581 1081 1489 582 1794 2176 847 1849 2175 846 1794 2176 847 1081 1489 582 1103 1491 584 1850 2197 865 1103 1491 584 1082 1492 585 1795 2133 804 1850 2197 865 1795 2133 804 1082 1492 585 1104 1493 586 1851 2134 805 1104 1493 586 1083 1494 587 1796 2136 807 1851 2134 805 1083 1494 587 1084 1495 588 1797 2145 816 1796 2136 807 1084 1495 588 1085 1496 589 1798 2071 682 1797 2145 816 1701 2072 683 1087 1499 592 1105 1498 591 1852 2198 866 1105 1498 591 1086 1500 593 1799 2147 818 1852 2198 866 1106 1501 594 1088 1502 595 1800 2141 812 1853 2148 819 1799 2147 818 1086 1500 593 1106 1501 594 1853 2148 819 1800 2141 812 1088 1502 595 1107 1503 596 1854 2142 813 1107 1503 596 1089 1504 597 1801 2143 814 1854 2142 813 1108 1505 598 1090 1506 599 1802 2109 780 1855 2179 850 1801 2143 814 1089 1504 597 1108 1505 598 1855 2179 850 1802 2109 780 1090 1506 599 1109 1507 600 1856 2110 781 1109 1507 600 1091 1508 601 1803 2111 782 1856 2110 781 1803 2111 782 1091 1508 601 1110 1287 385 1857 2015 630 1738 2068 679 1698 2063 674 1804 2199 867 1858 2200 868 1804 2199 867 1873 2172 843 1834 2174 845 1858 2200 868 1834 2174 845 1099 1461 556 1111 1511 604 1858 2200 868 1111 1511 604 1073 1348 443 1738 2068 679 1858 2200 868 1085 1496 589 1087 1499 592 1701 2072 683 1798 2071 682 1770 2154 825 1697 2201 869 1805 2103 774 1859 2202 870 1805 2103 774 1744 2082 753 1830 2159 830 1859 2202 870 1830 2159 830 1772 2203 871 1806 2204 872 1859 2202 870 1806 2204 872 1717 2155 826 1770 2154 825 1859 2202 870 1783 2185 856 1708 2105 776 1752 2104 775 1860 2191 862 1696 2059 670 1694 2044 655 1860 2191 862 1752 2104 775 1775 2169 840 1717 2155 826 1806 2204 872 1861 2205 873 1806 2204 872 1772 2203 871 1777 2206 874 1861 2205 873 1785 2188 859 1706 2095 766 1750 2100 771 1862 2207 875 1750 2100 771 1708 2105 776 1782 2183 854 1862 2207 875 1782 2183 854 1715 2128 799 1760 2127 798 1862 2207 875 1760 2127 798 1711 2126 797 1785 2188 859 1862 2207 875 1778 2062 673 1775 2169 840 1861 2205 873 1864 2208 876 1861 2205 873 1777 2206 874 1835 2171 842 1864 2208 876 1739 2076 687 1700 2075 686 1761 2129 800 1863 2190 861 1761 2129 800 1715 2128 799 1719 2182 853 1863 2190 861 1804 2199 867 1698 2063 674 1778 2062 673 1864 2208 876 1852 2198 866 1799 2147 818 1767 2146 817 1865 2209 877 1767 2146 817 1712 2119 790 1762 2131 802 1865 2209 877 1762 2131 802 1700 2075 686 1740 2073 684 1865 2209 877 1740 2073 684 1701 2072 683 1852 2198 866 1865 2209 877 1779 2066 677 1718 2167 838 1846 2168 839 1866 2067 678 1789 2016 631 1693 2041 652 1685 2210 636 1867 2017 632 1805 2103 774 1697 2201 869 1735 2060 671 1696 2059 670 1751 2102 773 1753 2106 777 1803 2111 782 1857 2015 630 1868 2211 878 1857 2015 630 1809 2014 629 1868 2211 878 1809 2014 629 1880 2013 628 1868 2211 878 1742 2079 690 1702 2078 689 1753 2106 777 1868 2211 878 1780 2177 848 1794 2176 847 1850 2197 865 1869 2212 879 1850 2197 865 1795 2133 804 1763 2132 803 1869 2212 879 1763 2132 803 1709 2112 783 1784 2186 857 1869 2212 879 1784 2186 857 1705 2093 764 1780 2177 848 1869 2212 879 1787 2115 786 1719 2182 853 1839 2184 855 1870 2187 858 1839 2184 855 1783 2185 856 1704 2092 763 1870 2187 858 1871 2083 754 1751 2102 773 1821 2101 772 1747 2094 765 1741 2077 688 1871 2083 754 1747 2094 765 1820 2097 768 1772 2203 871 1872 2160 831 1835 2171 842 1777 2206 874 1771 2158 829 1872 2160 831 1772 2203 871 1830 2159 830 1835 2171 842 1873 2172 843 1804 2199 867 1864 2208 876 1771 2158 829 1703 2085 756 1876 2087 758 1875 2161 832 1877 2088 759 1876 2087 758 1703 2085 756 1743 2084 755 1743 2084 755 1722 2008 623 1878 2011 626 1877 2088 759 1722 2008 623 1687 2006 621 1879 2012 627 1878 2011 626 1880 2013 628 1879 2012 627 1687 2006 621 1686 2081 751 1868 2211 878 1880 2013 628 1686 2081 751 1742 2079 690 1068 2213 1843 1684 2214 2187 1886 2215 2188 1319 1525 1844 1518 2004 2186 1521 1759 2061 1886 2215 2188 1887 2216 2189 1518 2004 2186 1517 2003 2185 1881 1760 2062 1521 1759 2061 1881 1760 2062 1517 2003 2185 1516 1758 2060 1515 1757 2059 898 1023 1712 1312 1025 1714 1881 1760 2062 1515 1757 2059 1683 2217 2190 1685 2218 2191 1889 2219 2192 1888 2220 2193 1882 1750 2052 1520 2002 2184 1889 2219 2192 1890 2221 2194 1884 2222 2195 1885 2223 2196 1892 2224 2197 1891 2225 2198 1315 1538 1857 1514 1754 2056 1898 2226 2199 1320 1539 1858 1519 2001 2183 1518 2004 2186 1887 2216 2189 1888 2220 2193 1512 1751 2053 1882 1750 2052 1890 2221 2194 1891 2225 2198 1729 2040 651 1692 2047 658 1884 2227 880 1845 2228 863 1690 2022 637 1682 2229 640 1885 2230 881 1689 2049 660 1883 1753 2055 1513 1752 2054 1892 2224 2197 1893 2231 2200 1885 2232 881 1884 2233 880 1692 2047 658 1689 2049 660 1521 1759 2061 905 1028 1717 1319 1525 1844 1886 2215 2188 1720 2234 2201 1069 2235 1862 1320 1539 1858 1898 2226 2199 1684 2236 2187 1726 2237 2202 1887 2216 2189 1886 2215 2188 1726 2238 2202 1683 2239 2190 1888 2220 2193 1887 2216 2189 1520 2002 2184 1519 2001 2183 1888 2220 2193 1889 2219 2192 1685 2240 2191 1845 2241 2203 1890 2221 2194 1889 2219 2192 1845 2242 2203 1884 2243 2195 1891 2225 2198 1890 2221 2194 1513 1752 2054 1512 1751 2053 1891 2225 2198 1892 2224 2197 1885 2244 2196 1682 2245 2204 1893 2231 2200 1892 2224 2197 1682 2246 2204 1720 2247 2201 1898 2226 2199 1893 2231 2200 1894 2248 882 1697 2201 869 1770 2154 825 1829 2157 828 1790 2051 662 1894 2248 882 1829 2157 828 1828 2151 822 1895 2249 883 1894 2248 882 1790 2051 662 1812 2050 661 1736 2061 672 1735 2060 671 1697 2201 869 1894 2248 882 1896 2194 864 1736 2061 672 1894 2248 882 1895 2249 883 1689 2049 660 1692 2047 658 1896 2194 864 1895 2249 883 1689 2049 660 1895 2249 883 1812 2050 661 1731 2046 657 1815 2045 656 1736 2061 672 1896 2194 864 1883 1753 2055 1893 2231 2200 1898 2226 2199 1514 1754 2056 1359 1584 1886 1371 1600 1902 1899 1601 1903 1360 1586 1888 1371 1600 1902 1382 1613 1915 1900 1614 1916 1899 1601 1903 1382 1613 1915 1393 1626 1928 1901 1627 1929 1900 1614 1916 1393 1626 1928 1404 1639 1941 1902 1640 1942 1901 1627 1929 1404 1639 1941 1415 1652 1954 350 790 1479 1902 1640 1942 1415 1652 1954 1426 1664 1966 433 793 1482 350 790 1479 1497 1735 2037 1903 1756 2058 430 806 1495 1503 1741 2043 1509 1747 2049 1904 1755 2057 1903 1756 2058 1051 1105 1734 986 1090 1719 1906 1093 1722 1905 1106 1735 1048 1091 1720 908 1109 1738 1908 1096 1725 1907 1092 1721 1017 1095 1724 951 1107 1736 1906 1093 1722 1907 1092 1721 1019 1108 1737 925 1101 1730 1909 1103 1732 1905 1106 1735 1020 1113 1742 923 1094 1723 1908 1096 1725 1910 1111 1740 1050 1098 1727 909 1104 1733 1909 1103 1732 1911 1099 1728 1052 1110 1739 910 1115 1744 1912 1114 1743 1910 1111 1740 1018 1102 1731 952 1148 1777 1913 1100 1729 1911 1099 1728 1021 1119 1748 924 1112 1741 1912 1114 1743 1914 1117 1746 1055 1146 1775 990 1097 1726 1913 1100 1729 1915 1147 1776 1053 1116 1745 982 1125 1754 1916 1120 1749 1914 1117 1746 1026 1149 1778 928 1142 1771 1917 1144 1773 1915 1147 1776 1022 1122 1751 926 1118 1747 1916 1120 1749 1918 1123 1752 1049 1140 1769 912 1145 1774 1917 1144 1773 1919 1141 1770 1046 1126 1755 984 1127 1756 1920 1124 1753 1918 1123 1752 1025 1143 1772 930 1136 1765 1921 1138 1767 1919 1141 1770 1023 1131 1760 927 1121 1750 1920 1124 1753 1922 1129 1758 1054 1134 1763 988 1139 1768 1921 1138 1767 1923 1135 1764 1047 1128 1757 911 1133 1762 1924 1132 1761 1922 1129 1758 1024 1137 1766 929 1130 1759 1924 1132 1761 1923 1135 1764 1522 1841 2083 1662 1821 2063 1926 1824 2066 1925 1827 2069 1600 1822 2064 1665 1835 2077 1928 1837 2079 1927 1823 2065 1565 1839 2081 1631 1825 2067 1926 1824 2066 1927 1823 2065 1537 1826 2068 1634 1843 2085 1929 1842 2084 1925 1827 2069 1539 1833 2075 1633 1838 2080 1928 1837 2079 1930 1834 2076 1524 1847 2089 1666 1840 2082 1929 1842 2084 1931 1845 2087 1523 1836 2078 1664 1828 2070 1932 1831 2073 1930 1834 2076 1538 1844 2086 1635 1849 2091 1933 1848 2090 1931 1845 2087 1566 1880 2122 1632 1832 2074 1932 1831 2073 1934 1830 2072 1596 1857 2099 1667 1846 2088 1933 1848 2090 1935 1851 2093 1604 1829 2071 1669 1876 2118 1936 1878 2120 1934 1830 2072 1540 1850 2092 1636 1852 2094 1937 1855 2097 1935 1851 2093 1542 1874 2116 1640 1879 2121 1936 1878 2120 1938 1875 2117 1598 1859 2101 1660 1856 2098 1937 1855 2097 1939 1854 2096 1526 1877 2119 1663 1870 2112 1940 1872 2114 1938 1875 2117 1541 1853 2095 1637 1861 2103 1941 1860 2102 1939 1854 2096 1544 1868 2110 1639 1873 2115 1940 1872 2114 1942 1869 2111 1525 1865 2107 1661 1858 2100 1941 1860 2102 1943 1863 2105 1602 1871 2113 1668 1864 2106 1944 1866 2108 1942 1869 2111 1543 1862 2104 1638 1867 2109 1944 1866 2108 1943 1863 2105 651 570 1332 1945 675 1416 2086 2250 2205 2087 571 1333 1964 507 1303 374 512 1308 393 653 1394 1945 675 1416 2086 2250 2205 1945 675 1416 393 653 1394 2107 723 1448 401 620 1368 521 619 1367 1948 772 1467 1949 771 1466 579 623 1371 660 630 1378 1950 770 1465 1949 771 1466 402 628 1376 524 626 1374 1950 770 1465 1951 769 1464 578 631 1379 577 664 1405 1952 767 1462 1951 769 1464 577 664 1405 2094 700 1429 2096 768 1463 1952 767 1462 419 742 977 584 693 281 1954 765 1000 1955 764 999 575 553 236 659 556 239 1957 762 997 1956 763 998 404 636 250 527 634 248 1957 762 997 1958 761 996 574 558 241 658 569 245 1959 760 995 1958 761 996 407 643 257 530 641 255 1959 760 995 1960 759 994 573 568 244 657 672 268 1961 758 993 1960 759 994 412 649 263 533 647 261 1961 758 993 1962 757 992 571 755 990 671 732 309 1947 734 311 1963 756 991 1470 1708 2010 1481 1719 2021 347 801 1490 431 800 1489 1459 1697 1999 1470 1708 2010 431 800 1489 348 798 1487 1448 1686 1988 1459 1697 1999 348 798 1487 432 797 1486 1437 1675 1977 1448 1686 1988 432 797 1486 349 794 1483 1491 1727 2029 351 803 1492 347 801 1490 1481 1719 2021 1497 1735 2037 430 806 1495 351 803 1492 1491 1727 2029 435 438 1234 430 806 1495 1903 1756 2058 1986 1021 1710 435 438 1234 1986 1021 1710 320 1020 1709 88 375 1186 433 793 1482 1426 1664 1966 1437 1675 1977 349 794 1483 2048 2251 2206 2049 2252 2207 1973 1589 1891 1972 1588 1890 1902 1640 1942 350 790 1479 434 436 1232 1974 1641 1943 2047 2253 2208 2048 2251 2206 1972 1588 1890 1975 1602 1904 2046 2254 2209 2047 2253 2208 1975 1602 1904 1976 1615 1917 2045 2255 2210 2046 2254 2209 1976 1615 1917 1977 1628 1930 2044 1653 1955 2045 2255 2210 1977 1628 1930 1974 1641 1943 606 781 1473 684 410 1214 2026 413 1217 2027 423 2211 310 111 904 1978 113 906 2025 412 1216 2024 409 1213 867 985 1674 858 976 1665 4 371 1182 84 373 1184 858 976 1665 845 964 1653 0 369 1180 4 371 1182 721 832 1521 1331 831 1520 1980 836 1525 1979 835 1524 774 2256 2212 3 360 1171 87 359 1170 1981 892 1581 722 834 1523 735 2257 2213 1982 850 1539 1979 835 1524 735 2257 2213 748 2258 2214 1983 864 1553 1982 850 1539 748 2258 2214 761 2259 2215 1984 878 1567 1983 864 1553 761 2259 2215 774 2256 2212 1981 892 1581 1984 878 1567 810 928 1617 798 916 1605 86 364 1175 1 365 1176 1 365 1176 85 367 1178 822 940 1629 810 928 1617 834 952 1641 822 940 1629 85 367 1178 0 369 1180 845 964 1653 834 952 1641 0 369 1180 88 375 1186 320 1020 1709 2015 2260 2216 2015 2260 2216 84 373 1184 88 375 1186 1904 1755 2057 1514 1754 2056 1315 1538 1857 1985 1019 1708 1337 1017 1706 1985 1019 1708 1315 1538 1857 897 1018 1707 90 2 28 243 1 26 1987 2261 2217 1988 2262 2218 243 1 26 91 4 30 1989 2263 2219 1987 2261 2217 91 4 30 244 7 35 1990 2264 2220 1989 2263 2219 244 7 35 299 8 36 1991 2265 2221 1990 2264 2220 164 179 1042 163 178 1041 1992 2266 2222 1993 2267 2223 266 181 1045 165 180 1043 1994 2268 2224 1995 2269 2225 163 178 1041 266 181 1045 1995 2269 2225 1992 2266 2222 288 184 1048 90 2 28 1988 2262 2218 1996 2270 2226 167 186 1050 164 179 1042 1993 2267 2223 1997 2271 2227 324 333 1144 288 184 1048 1996 2270 2226 1998 2272 2228 315 351 1162 167 186 1050 1997 2271 2227 1999 2273 2229 165 180 1043 324 333 1144 1998 2272 2228 1994 2268 2224 1991 2265 2221 299 8 36 2017 378 1189 2018 2274 2230 690 432 1228 315 351 1162 1999 2273 2229 2001 2275 2231 622 442 1238 437 441 1237 2002 2276 2232 2003 2277 2233 438 443 1239 622 442 1238 2003 2277 2233 2004 2278 2234 623 446 1242 438 443 1239 2004 2278 2234 2005 2279 2235 440 447 1243 623 446 1242 2005 2279 2235 2006 2280 2236 519 618 1366 520 617 1365 2007 2281 2237 2008 2282 2238 521 619 1367 645 622 1370 2009 2283 2239 2010 2284 2240 645 622 1370 519 618 1366 2008 2282 2238 2009 2283 2239 437 441 1237 661 624 1372 2011 2285 2241 2002 2276 2232 520 617 1365 523 625 1373 2012 2286 2242 2007 2281 2237 661 624 1372 1948 772 1467 2013 2287 2243 2011 2285 2241 672 774 1469 440 447 1243 2006 2280 2236 2000 2288 2244 523 625 1373 690 432 1228 2001 2275 2231 2012 2286 2242 1948 772 1467 521 619 1367 2010 2284 2240 2013 2287 2243 1988 2262 2218 1987 2261 2217 2014 2289 2245 1987 2261 2217 1989 2263 2219 2014 2289 2245 1989 2263 2219 1990 2264 2220 2014 2289 2245 1990 2264 2220 1991 2265 2221 2014 2289 2245 1993 2267 2223 1992 2266 2222 2014 2289 2245 1995 2269 2225 1994 2268 2224 2014 2289 2245 1992 2266 2222 1995 2269 2225 2014 2289 2245 1996 2270 2226 1988 2262 2218 2014 2289 2245 1997 2271 2227 1993 2267 2223 2014 2289 2245 1998 2272 2228 1996 2270 2226 2014 2289 2245 1999 2273 2229 1997 2271 2227 2014 2289 2245 1994 2268 2224 1998 2272 2228 2014 2289 2245 1991 2265 2221 2018 2274 2230 2000 2288 2244 2014 2289 2245 2001 2275 2231 1999 2273 2229 2014 2289 2245 2003 2277 2233 2002 2276 2232 2014 2289 2245 2004 2278 2234 2003 2277 2233 2014 2289 2245 2005 2279 2235 2004 2278 2234 2014 2289 2245 2006 2280 2236 2005 2279 2235 2014 2289 2245 2008 2282 2238 2007 2281 2237 2014 2289 2245 2010 2284 2240 2009 2283 2239 2014 2289 2245 2009 2283 2239 2008 2282 2238 2014 2289 2245 2002 2276 2232 2011 2285 2241 2014 2289 2245 2007 2281 2237 2012 2286 2242 2014 2289 2245 2011 2285 2241 2013 2287 2243 2014 2289 2245 2000 2288 2244 2006 2280 2236 2014 2289 2245 2012 2286 2242 2001 2275 2231 2014 2289 2245 2013 2287 2243 2010 2284 2240 2014 2289 2245 2015 2260 2216 320 1020 1709 884 1002 1691 877 995 1684 877 995 1684 867 985 1674 84 373 1184 2015 2260 2216 1497 1735 2037 1503 1741 2043 1903 1756 2058 672 774 1469 2000 2288 2244 2018 2274 2230 2017 378 1189 308 85 74 228 88 77 2020 406 151 2019 402 150 673 775 1470 590 773 1468 2022 377 1188 2021 379 1190 590 773 1468 672 774 1469 2017 378 1189 2022 377 1188 591 776 1471 673 775 1470 2021 379 1190 2023 380 1191 683 780 1472 591 776 1471 2023 380 1191 2024 409 1213 604 411 1215 683 780 1472 2024 409 1213 2025 412 1216 1978 113 906 142 124 914 2026 413 1217 2025 412 1216 142 124 914 229 126 916 2027 423 2211 2026 413 1217 687 782 229 606 781 228 2027 423 153 2028 422 152 607 783 230 687 782 229 2028 422 152 2029 424 154 688 784 231 607 783 230 2029 424 154 2030 425 155 603 778 224 688 784 231 2030 425 155 2031 408 147 682 779 225 603 778 224 2031 408 147 2032 407 146 601 777 222 682 779 225 2032 407 146 2033 403 145 681 405 223 601 777 222 2033 403 145 2019 402 2263 2020 406 151 228 88 77 312 154 107 2016 420 160 312 154 107 41 140 103 2034 414 156 2016 420 160 41 140 103 311 135 100 2035 415 157 2034 414 156 311 135 921 29 77 897 2036 394 1205 2035 415 1218 29 77 897 307 76 896 2037 395 1206 2036 394 1205 307 76 896 227 79 899 2038 398 1209 2037 395 1206 227 79 899 45 81 901 2039 400 1211 2038 398 1209 45 81 901 162 353 1164 2040 428 1224 2039 400 1211 162 353 1164 79 355 1166 2041 430 1226 2040 428 1224 79 355 1166 233 358 1169 2042 433 1229 2041 430 1226 233 358 1169 3 360 1171 2043 435 1231 2042 433 1229 3 360 1171 774 2256 2212 2044 1653 1955 2043 435 1231 774 2256 2212 761 2259 2215 2045 2255 2210 2044 1653 1955 761 2259 2215 748 2258 2214 2046 2254 2209 2045 2255 2210 748 2258 2214 735 2257 2213 2047 2253 2208 2046 2254 2209 735 2257 2213 722 834 1523 2048 2251 2206 2047 2253 2208 722 834 1523 708 833 1522 2049 2252 2207 2048 2251 2206 907 1029 1718 2049 2252 2207 708 833 1522 1973 1589 1891 2049 2252 2207 907 1029 1718 907 1029 1718 1980 836 1525 1331 831 1520 2050 292 123 2051 291 122 2065 133 1002 2064 288 1003 282 294 125 322 296 127 2067 376 1004 2066 134 1005 2051 291 122 282 294 125 2066 134 1005 2065 133 1002 185 244 52 278 242 50 2069 237 1006 2068 245 1007 184 241 49 279 251 56 2071 246 1008 2070 238 1009 278 242 50 184 241 49 2070 238 1009 2069 237 1006 2052 263 64 185 244 52 2068 245 1007 2072 261 1010 186 250 55 2050 292 123 2064 288 1003 2073 247 1011 279 251 56 186 250 55 2073 247 1011 2071 246 1008 187 259 1104 280 257 1103 2075 252 1099 2074 260 1105 2053 256 59 2054 327 235 2077 328 1014 2076 253 1015 280 257 60 2053 256 59 2076 253 1015 2075 252 2276 2055 266 1109 187 259 1104 2074 260 1105 2078 264 1107 2054 327 235 2052 263 64 2072 261 1010 2077 328 1014 188 268 1111 2055 266 1109 2078 264 1107 2079 269 1112 2056 272 1115 188 268 1111 2079 269 1112 2080 270 1113 189 274 1117 2056 272 1115 2080 270 1113 2081 275 1118 2057 287 1128 189 274 1117 2081 275 1118 2082 285 1126 191 283 88 281 281 2271 2084 276 1021 2083 284 1022 190 280 1123 2057 287 1128 2082 285 1126 2085 277 1120 281 281 1124 190 280 1123 2085 277 1120 2084 276 1119 322 296 127 191 283 88 2083 284 1022 2067 376 1004 1946 735 970 656 733 310 2087 571 1024 2086 2250 1025 2058 731 308 2059 730 307 2089 727 1026 2088 572 1027 656 733 310 2058 731 308 2088 572 1027 2087 571 1024 653 689 279 554 681 274 2091 676 1028 2090 686 1029 652 680 273 555 683 276 2093 684 1030 2092 677 1031 554 681 274 652 680 273 2092 677 1031 2091 676 1028 555 683 276 2060 702 288 2094 700 1032 2093 684 1030 2059 730 307 556 690 280 2095 685 1033 2089 727 1026 556 690 280 653 689 279 2090 686 1029 2095 685 1033 1953 766 1001 557 696 284 2097 691 1034 2096 768 1035 654 695 1427 558 698 1426 2099 699 1428 2098 692 1423 557 696 284 654 695 2270 2098 692 1037 2097 691 1034 558 698 1426 2061 705 1432 2100 703 1430 2099 699 1428 2060 702 288 1953 766 1001 2096 768 1035 2094 700 1032 2061 705 1432 559 707 1434 2101 708 1435 2100 703 1430 559 707 1434 2062 711 1438 2102 709 1436 2101 708 1435 2062 711 1438 560 713 1440 2103 714 1441 2102 709 1436 560 713 1440 2063 726 1451 2104 724 1449 2103 714 1441 2063 726 1451 561 720 1447 2105 715 1442 2104 724 1449 655 719 299 562 722 302 2107 723 1044 2106 716 2266 561 720 1447 655 719 1446 2106 716 1443 2105 715 1442 562 722 302 1946 735 970 2086 2250 1025 2107 723 1044 1686 2081 751 1687 2006 621 1807 2005 620 1117 1276 374 1237 1275 373 1151 1277 375</p>\r\n\t\t\t\t</polylist>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<library_visual_scenes>\r\n\t\t<visual_scene id=\"VisualSceneNode\" name=\"untitled\">\r\n\t\t\t<node id=\"LOD3sp\" name=\"LOD3sp\">\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_geometry url=\"#LOD3spShape-lib\">\r\n\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t<instance_material symbol=\"blinn3SG\" target=\"#blinn3\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"TEX0\" />\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t</node>\r\n\t\t\t<node id=\"camera1\" name=\"camera1\">\r\n\t\t\t\t<translate sid=\"translate\">400.113 463.264 -431.078</translate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 -223.2</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 -38.4</rotate>\r\n\t\t\t\t<instance_camera url=\"#cameraShape1\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"directionalLight1\" name=\"directionalLight1\">\r\n\t\t\t\t<translate sid=\"translate\">148.654 183.672 -292.179</translate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 -12.8709</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 -191.679</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 -45.6358</rotate>\r\n\t\t\t\t<instance_light url=\"#directionalLightShape1-lib\" />\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<scene>\r\n\t\t<instance_visual_scene url=\"#VisualSceneNode\" />\r\n\t</scene>\r\n</COLLADA>\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.5/infiles/duck_triangulate.dae",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>\r\n<COLLADA version=\"1.5\" xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t<asset>\r\n\t\t<contributor>\r\n\t\t\t<author>gcorson</author>\r\n\t\t\t<authoring_tool>Maya 8.0 | ColladaMaya v3.02 | FCollada v3.2</authoring_tool>\r\n\t\t\t<comments>Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=1;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=1;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<copyright>Copyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n\"License\"); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an \"AS IS\" BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.</copyright>\r\n\t\t\t<source_data>file:///C:/vs2005/sample_data/Complete_Packages/SCEA_Private/Maya_MoonLander/Moonlander/untitled</source_data>\r\n\t\t</contributor>\r\n\t\t<created>2006-08-23T22:29:59Z</created>\r\n\t\t<modified>2007-02-21T22:52:44Z</modified>\r\n\t\t<unit meter=\"0.01\" name=\"centimeter\" />\r\n\t\t<up_axis>Y_UP</up_axis>\r\n\t</asset>\r\n\t<library_cameras>\r\n\t\t<camera id=\"cameraShape1\" name=\"cameraShape1\">\r\n\t\t\t<optics>\r\n\t\t\t\t<technique_common>\r\n\t\t\t\t\t<perspective>\r\n\t\t\t\t\t\t<yfov>37.8492</yfov>\r\n\t\t\t\t\t\t<aspect_ratio>1.5</aspect_ratio>\r\n\t\t\t\t\t\t<znear>1</znear>\r\n\t\t\t\t\t\t<zfar>10000</zfar>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n\t<library_lights>\r\n\t\t<light id=\"directionalLightShape1-lib\" name=\"directionalLightShape1\">\r\n\t\t\t<technique_common>\r\n\t\t\t\t<directional>\r\n\t\t\t\t\t<color>1 1 1</color>\r\n\t\t\t\t</directional>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_images>\r\n\t\t<image id=\"file2\" name=\"file2\">\r\n\t\t\t<create_2d>\r\n\t\t\t\t<init_from>\r\n\t\t\t\t\t<ref>./duckCM_fix.jpg</ref>\r\n\t\t\t\t</init_from>\r\n\t\t\t\t<format>\r\n\t\t\t\t\t<exact>A8R8G8B8</exact>\r\n\t\t\t\t</format>\r\n\t\t\t</create_2d>\r\n\t\t</image>\r\n\t</library_images>\r\n\t<library_materials>\r\n\t\t<material id=\"blinn3\" name=\"blinn3\">\r\n\t\t\t<instance_effect url=\"#blinn3-fx\" />\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<library_effects>\r\n\t\t<effect id=\"blinn3-fx\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"file2-sampler\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#file2\" />\r\n\t\t\t\t\t\t<minfilter>LINEAR</minfilter>\r\n\t\t\t\t\t\t<magfilter>LINEAR</magfilter>\r\n\t\t\t\t\t\t<mipfilter>LINEAR</mipfilter>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"common\">\r\n\t\t\t\t\t<blinn>\r\n\t\t\t\t\t\t<emission>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<ambient>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"TEX0\" texture=\"file2-sampler\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<specular>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<shininess>\r\n\t\t\t\t\t\t\t<float>0.3</float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<reflective>\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<reflectivity>\r\n\t\t\t\t\t\t\t<float>0.5</float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<index_of_refraction>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t</blinn>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_geometries>\r\n\t\t<geometry id=\"LOD3spShape-lib\" name=\"LOD3spShape\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"LOD3spShape-lib-positions\" name=\"position\">\r\n\t\t\t\t\t<float_array count=\"6324\" id=\"LOD3spShape-lib-positions-array\">35.0226 89.3874 23.3732 19.5676 89.7173 22.4879 9.22909 91.5427 17.1037 4.33048 88.7008 4.57726 45.0571 89.4178 19.824 -30.5196 11.6272 25.1326 -15.6992 11.4278 34.2321 51.8411 17.7055 36.5602 65.7206 18.372 27.0862 56.0117 11.4345 22.6963 -23.2343 18.1488 41.0429 -40.9218 18.6322 29.6382 62.4487 11.3989 12.9806 60.2326 28.1944 39.5949 71.2984 29.0359 29.3335 -32.9737 29.6914 43.477 -48.95 28.9358 31.4102 73.8118 41.7425 29.8584 65.2513 41.3955 39.884 72.6597 55.003 29.2468 64.6263 55.4849 38.2648 66.5829 66.4165 27.9218 55.5179 67.734 35.7358 43.4971 75.6992 31.8699 56.934 75.0037 25.7495 14.7601 73.8701 35.1574 -12.1248 73.9991 28.9191 14.7016 78.8465 28.8886 -3.37962 78.0576 23.1953 -24.7824 78.2304 7.65121 4.94216 81.4267 15.8195 -54.7257 89.9761 8.84491 -53.6566 74.7375 26.9735 -44.1714 77.8938 26.1268 -64.7587 73.8997 7.15297 -61.5691 65.6958 25.2253 -42.9296 61.2502 39.4496 -64.9663 57.2673 21.7398 -48.9596 49.2561 39.8218 -58.3698 43.9468 28.036 -31.7993 70.8398 33.4366 -33.1153 82.3349 8.62471 48.2452 81.0789 22.327 34.1225 80.5718 26.6473 15.5527 81.3807 24.423 0.65596 81.0723 3.99376 15.1798 11.41 36.4164 17.2973 17.3674 43.2976 43.8649 67.7941 39.8677 55.9835 56.1625 42.7808 56.4187 41.7648 44.4371 46.9566 29.0085 44.2399 18.041 21.337 45.4158 -24.2634 29.7596 46.4694 -37.1346 44.6474 44.4312 -35.8668 57.8953 42.7333 -24.1626 66.8013 39.6298 -14.2645 43.4767 51.8892 10.1522 43.8267 53.9252 -10.3735 36.316 51.8336 -14.5047 52.2745 51.0455 9.35439 52.1796 53.5056 24.5685 36.9247 52.4691 11.2191 35.6243 52.5988 27.0248 44.5585 52.8835 25.4374 55.0852 52.0724 9.23132 59.258 51.2115 21.2751 61.6417 50.3945 -11.0645 57.3325 50.3033 -22.8339 53.8174 48.6047 -22.3883 43.3299 49.8488 -13.3437 34.4469 50.7719 -15.0193 59.7488 48.0109 12.3031 31.6369 51.4681 28.2 34.9703 51.4911 34.9314 44.1559 51.2583 33.7281 55.8993 50.0475 24.8495 63.37 48.6114 9.96162 62.8873 48.4038 6.73344 84.5266 2.83788 10.2211 84.9641 13.1445 19.05 85.0093 20.4734 35.2584 84.9759 22.0089 44.8651 85.199 18.7578 54.1484 90.1992 13.1393 25.84 89.3162 23.5593 14.5318 90.4728 20.5795 5.99276 89.5698 10.1098 59.1034 90.0324 3.37689 -23.9364 11.5353 30.6125 -11.459 10.0413 29.8243 -24.5326 10.1147 22.2069 -35.1528 11.6836 17.7191 61.5472 14.2726 25.2082 43.6854 11.43 30.0164 47.7677 14.1162 33.6212 -19.459 14.309 37.9267 -36.067 14.5054 27.6816 -32.9292 18.5574 36.7248 -46.1733 18.6604 20.5246 73.3418 18.3468 14.9194 68.8732 23.4107 28.4208 55.7803 22.4988 38.5465 -27.0171 23.4671 43.0366 -45.2302 23.6628 30.9246 -41.0731 29.3325 39.4763 79.4615 29.1894 16.0672 76.9844 23.4678 15.5749 72.8865 35.1223 29.8369 63.2406 34.5574 39.8307 81.8608 42.114 16.7292 80.9318 35.3877 16.409 66.0817 48.5555 39.2449 73.9987 48.5347 29.6857 80.1688 55.1853 16.948 81.5894 48.8387 16.9628 61.1927 62.0057 37.295 70.17 61.0152 28.6395 74.8647 66.3268 16.601 77.7874 61.0196 16.7611 61.7637 71.037 26.8557 67.1835 75.4493 16.6366 71.6321 71.1772 16.667 -7.40039 76.1581 26.3759 14.8335 76.3145 32.0471 -20.947 75.0059 21.3995 -9.30957 78.0917 17.6635 2.33308 81.2658 10.7014 -55.3055 81.4823 20.1865 -44.1025 82.8784 21.08 -48.3998 77.2606 26.9595 -63.8341 69.8359 17.705 -58.2579 70.6396 26.4175 -58.1459 60.4109 31.5845 -50.1918 68.7831 33.097 -53.5557 46.1592 34.9928 -63.069 52.729 24.0553 -63.6495 60.7883 23.3658 -54.4261 28.5392 21.6382 -12.4228 39.2454 51.9419 -52.1766 34.1006 30.9987 -39.3582 37.1753 42.8245 -63.2047 33.3562 7.77354 -14.9689 48.0973 51.5712 -13.2184 68.1588 38.5488 -20.841 71.9312 31.5875 -34.0814 73.6573 23.1685 39.0864 77.6536 29.4959 52.286 78.2905 24.2985 28.6752 75.0467 34.74 24.5284 79.4248 29.0977 58.2456 81.6454 14.9372 62.5867 78.8584 16.1198 -40.058 73.3058 29.0169 -62.4832 42.7738 19.6053 -66.2542 57.7677 16.0138 -46.3972 55.562 40.3341 46.1403 83.2928 20.059 52.8472 87.516 12.3304 24.3957 81.2413 26.4145 17.5457 83.2299 21.6568 35.0308 86.9496 21.9178 5.66061 83.0193 2.97282 39.2717 10.0042 25.9897 49.7414 9.99683 19.7068 14.6156 10.0124 31.7958 28.2119 11.4278 34.5791 55.179 10.0309 11.4214 16.1259 13.9798 40.2177 33.0793 17.7336 41.3765 18.9195 36.2041 52.5892 10.6044 39.6524 53.4314 18.2523 44.3116 53.7955 25.9535 39.9994 52.7745 9.73549 48.0914 53.8815 16.9236 53.6009 53.2898 26.8721 49.8693 52.6952 9.12603 55.8675 52.7181 15.9783 60.8706 50.8542 23.2428 59.2083 51.1997 15.2006 70.9348 38.4909 -38.0814 66.6122 37.6368 -31.4745 63.2943 41.295 -12.9337 55.4359 50.6592 -29.8093 42.9681 46.5354 -18.6612 31.1764 47.8255 -30.266 55.8423 44.7033 36.2897 31.2217 48.0605 46.511 42.7776 47.7899 45.6636 56.4673 46.2574 32.8524 66.1703 44.2955 12.3579 67.2602 43.2175 -19.149 38.1518 50.4005 -23.6628 48.8825 49.2194 21.1045 32.7401 51.4785 32.4268 38.9651 51.46 35.2465 50.0413 50.7771 17.9201 63.7837 48.4371 30.018 60.597 49.2453 -20.4236 57.6424 48.1257 -7.11345 60.5511 48.2081 -5.54756 57.4675 50.6459 -6.2067 51.4293 52.475 -5.95461 43.3855 53.166 -4.66971 35.7333 52.2177 -5.70251 32.445 51.1085 -8.3205 17.8723 43.3717 -2.69678 11.3425 36.4653 -27.2981 42.8866 48.0687 -27.8897 55.043 46.5161 -16.4436 32.2248 49.3054 -18.5848 62.3861 45.599 13.6265 28.0639 49.9986 41.3922 43.4352 49.4685 32.3868 32.7171 49.8711 40.4699 56.3449 48.0345 28.9733 65.0389 46.3945 11.0523 65.6624 45.6909 -37.9272 11.78 6.99728 -50.2675 18.389 7.36354 75.8256 18.3928 2.93945 64.2756 11.6576 2.65993 82.8128 29.1368 2.93945 85.8726 42.1384 2.93945 84.9147 55.2091 3.25752 79.936 66.2007 3.25752 72.9207 75.6569 3.11665 -13.2799 78.2816 6.78078 -42.4217 91.5301 9.02211 -66.2519 42.375 7.59116 -67.9758 58.5114 6.99802 8.76422 81.5601 20.2429 8.65004 83.1534 13.7124 6.16626 86.3527 3.3376 10.3479 87.4003 13.9949 7.91973 84.7475 8.18356 19.5238 87.0994 20.6484 13.8638 85.0248 17.2846 35.1961 83.043 23.5111 26.055 84.941 22.3278 44.4291 87.1742 18.6599 55.1672 83.7325 13.2216 53.3737 85.5572 12.3674 -18.7264 10.108 26.6814 -28.5504 10.1785 15.7995 -28.6467 14.412 33.9793 -40.9463 14.6426 19.2219 68.6182 14.2022 14.0757 -36.9819 23.7436 38.5844 48.5084 72.1529 33.9029 -14.7042 76.6096 19.7209 -49.515 83.8778 20.7678 -60.3339 76.3635 19.0618 -54.5522 64.8765 32.9243 -60.8158 55.9957 28.5728 -50.6442 23.4975 21.2438 -45.1383 35.1824 39.0803 -57.747 33.5446 21.51 -27.5531 73.6877 22.8942 26.6207 76.9559 31.9144 -39.393 77.9086 22.2647 -65.5928 51.6658 17.2594 -44.8336 71.3336 32.1213 -65.569 63.5509 16.5565 25.3055 83.1594 23.781 12.1192 83.2358 18.075 25.9631 10.0257 30.0393 30.5288 14.0969 38.2233 18.4628 39.992 53.2994 17.691 48.9863 53.8221 16.1429 57.6002 52.3171 32.2615 71.41 37.9727 51.4408 62.676 41.4618 57.6406 48.9151 43.8433 52.9177 35.0586 44.5773 36.217 23.1483 43.9056 -31.7681 36.6178 45.7769 -37.83 51.5724 43.6927 -25.9576 36.5644 47.2776 -31.2662 49.6491 45.6583 26.7542 27.5116 48.1161 23.2102 67.8126 43.5534 -9.81152 64.5785 42.5347 -5.73514 54.6841 51.8166 -6.34459 47.5345 53.0926 -5.18279 39.3551 52.8687 -13.0679 23.5531 45.6457 -5.21985 14.0791 40.2548 -0.679352 10.0168 31.8299 -28.752 49.271 47.2864 -23.8534 36.6519 48.7626 -24.6964 59.5316 45.8889 -7.15942 29.3978 49.7079 38.1551 37.5127 49.7814 23.9612 29.5453 49.9126 42.2701 49.9123 48.8776 35.8278 61.6884 47.1419 20.5055 66.243 45.9037 -8.95663 63.2617 45.5834 -31.1142 10.1703 6.38486 -44.1714 14.6552 7.27827 70.6407 14.3913 2.92833 79.9353 23.413 2.93945 84.5803 35.3544 2.93945 85.9631 48.8595 3.25752 82.8254 61.0226 3.25826 76.7546 71.3433 3.2553 -19.2017 77.8115 7.33611 -48.5489 92.2656 9.06511 -60.1596 84.4057 8.28143 -55.757 23.043 7.73055 -29.2013 79.6561 8.08569 -37.1064 88.1752 8.91461 -68.0046 51.5783 7.15372 -66.9147 65.618 7.07735 57.0756 10.1525 2.28551 6.64003 83.0734 8.64102 7.67061 86.759 8.63805 14.3983 87.2706 17.8748 26.21 86.9437 22.1654 62.3057 92.5874 2.9313 1.3848 69.2606 38.5873 1.56273 65.4519 43.0262 1.32251 64.1537 45.6605 4.95551 9.99831 32.3904 4.63076 11.3477 37.0599 4.48174 13.922 40.9628 4.08211 17.3859 43.9419 3.02928 21.4474 45.8963 3.07525 28.2293 49.9356 3.11009 31.6361 51.3265 3.03002 35.4574 52.4675 2.61333 39.4033 53.3009 2.11362 43.4389 53.8266 1.75772 47.519 53.7873 1.63762 51.3863 53.3032 1.70287 54.8295 52.4802 1.76736 58.0161 51.0099 1.52196 61.5001 48.3586 1.93642 72.8387 33.8763 3.64763 75.9142 30.548 5.31806 78.4269 26.9639 58.5778 87.5953 2.23361 59.1501 85.8263 2.11721 61.5583 84.2063 2.51758 64.9644 82.1214 2.892 69.0133 79.1475 3.00989 32.7991 89.7151 -30.4233 18.3501 89.4171 -27.9721 8.67525 89.5668 -20.9938 2.39314 90.3705 -9.85685 41.3633 90.1718 -28.7054 -31.106 11.4775 -32.9686 -16.1893 11.413 -41.8242 -37.8441 11.7199 -17.9362 51.1145 17.827 -43.7764 65.4167 18.372 -34.6672 55.5386 11.4663 -30.2365 -22.7101 18.3816 -48.1723 -41.2258 18.6322 -37.22 -49.9064 18.1281 -19.4546 62.0944 11.4196 -20.5393 59.314 28.4606 -46.5397 70.9277 29.0352 -36.8544 -33.1991 29.873 -50.7109 -49.3615 28.878 -39.0246 73.4812 41.7559 -37.3453 64.6226 41.5905 -46.5931 72.9066 55.0971 -37.0309 63.9264 55.2231 -45.5736 67.308 66.4328 -36.116 55.8026 66.7664 -44.1694 43.9561 74.6649 -39.815 57.8297 75.238 -34.1393 15.5401 73.1894 -42.5115 -12.2174 73.8819 -36.4385 15.3978 78.7998 -35.5147 -2.0421 78.412 -29.475 -24.7876 76.5792 -19.7267 -12.534 78.2897 -17.6678 4.34457 81.1227 -24.1642 -55.8163 87.2424 -22.0756 -43.7036 88.3494 -22.3158 -54.1303 74.7924 -34.6324 -44.4888 77.8752 -33.6648 -65.5053 72.5896 -18.5049 -61.9613 65.7536 -32.9553 -43.4634 60.448 -47.4894 -65.1954 57.0723 -29.5143 -59.2654 27.9119 -20.2361 -49.2087 49.1998 -47.3723 -58.9689 43.7199 -35.5858 -66.3446 42.1948 -19.4391 15.5861 70.0443 -46.0785 -33.1287 69.3852 -41.4713 -34.4892 80.0254 -21.5618 48.699 81.1865 -30.8689 34.2382 80.5703 -34.2498 16.5759 81.1153 -31.895 0.727875 81.1872 -12.4148 -68.018 58.2133 -17.8183 14.7802 11.3848 -44.0174 16.9221 17.4452 -50.8066 -13.0864 43.3447 -58.8481 10.4495 43.9097 -61.0858 -9.32663 36.6667 -59.0505 -14.22 51.903 -58.0496 9.45597 51.998 -60.0277 24.246 37.0634 -60.5519 11.3896 35.7436 -60.2776 26.5918 44.6467 -61.0071 25.4626 54.4929 -59.5273 9.00666 58.9948 -57.2808 21.3366 60.5555 -57.2059 -11.1972 57.2725 -56.9708 -22.2438 53.1256 -56.0203 -20.3457 43.0689 -57.3067 -12.1122 35.0371 -58.1689 -14.9222 59.3774 -55.2218 12.2904 31.7184 -59.1973 27.7581 35.2002 -59.4961 33.8971 44.4969 -59.5273 32.7486 55.5991 -57.9969 24.5692 62.5262 -55.8246 9.69026 62.3164 -55.2589 6.31009 84.6215 -9.59067 9.94086 84.9232 -20.0693 19.0219 85.0345 -27.4843 34.7653 85.0426 -29.4209 44.1941 85.119 -26.7866 50.8728 90.6708 -23.6459 25.0482 89.5646 -29.954 12.9607 89.423 -24.9078 5.25504 89.8204 -16.202 3.24726 88.5844 -2.72431 56.928 89.7848 -10.5352 -24.3405 11.4359 -38.3603 -12.0514 9.99387 -37.4698 -25.119 9.92937 -30.186 -35.4745 11.6324 -25.6774 -30.9667 10.1577 -16.9998 61 14.303 -32.6913 42.9826 11.5093 -37.4209 46.9722 14.2133 -40.7944 -19.5197 14.3549 -45.3897 -36.488 14.4595 -35.3605 -33.1887 18.5722 -44.2309 -44.1233 14.4447 -18.6976 -46.6619 18.3928 -28.2843 73.0378 18.3468 -22.5011 68.5692 23.4107 -36.0025 54.8395 22.7093 -45.7182 -26.8814 23.6917 -50.1401 -45.535 23.6628 -38.5063 -41.3718 29.3444 -46.7703 79.1575 29.1894 -23.6481 76.6804 23.4678 -23.1566 72.5633 35.1268 -37.3883 62.517 34.8109 -46.6606 81.5568 42.114 -24.311 80.6278 35.3877 -23.9899 65.2083 48.5511 -46.1149 73.84 48.5629 -37.3 80.6871 55.3477 -24.807 81.674 48.8988 -24.6283 60.7961 61.4452 -45.0316 70.7794 61.119 -36.7907 75.5475 66.5218 -24.6246 78.6126 61.265 -24.804 62.9885 71.049 -35.1951 66.8647 75.4648 -24.4251 71.4756 71.2009 -24.4489 -6.85692 76.1307 -33.2993 15.3904 76.124 -38.9186 -20.6749 74.9933 -28.8188 -18.659 77.1776 -18.9697 -8.319 78.3549 -24.2702 1.96458 81.2562 -18.3514 -55.843 81.314 -28.5504 -49.6254 89.3466 -22.4648 -44.4451 82.6048 -28.9686 -48.6808 77.2324 -34.5316 -64.3131 69.6573 -25.8984 -61.7107 81.899 -20.9783 -58.7835 70.7123 -34.1097 -58.4469 60.3879 -39.1736 -50.5077 68.7809 -40.6817 -54.183 45.9931 -42.2824 -63.8549 52.5711 -32.0063 -63.9335 60.729 -31.1655 -54.957 22.8131 -19.9766 -55.152 28.2115 -29.5499 -11.2032 39.4137 -59.029 -53.076 34.2815 -38.5249 -39.7533 37.3377 -50.1979 -63.1283 33.463 -20.1464 -14.2141 47.7244 -58.4915 -30.0695 77.3155 -20.5683 -21.5757 71.2928 -39.3886 -34.2579 73.9026 -30.84 39.2161 77.6454 -37.0836 52.7939 78.4766 -32.8685 29.7051 73.7336 -42.0511 25.218 79.3136 -35.8083 57.9394 81.7173 -23.2211 62.3879 78.9177 -24.2442 -40.3947 73.317 -36.5831 -38.6256 84.6334 -22.1512 -63.1328 42.5522 -27.8513 -68.0395 51.255 -18.387 -66.6864 57.5891 -24.6884 -46.719 55.3544 -48.0974 -67.0838 65.1042 -17.911 46.0958 83.2499 -28.6417 50.9529 87.3143 -20.6038 25.2513 81.0708 -33.3601 17.9216 83.2039 -29.0153 34.0372 87.1164 -29.0287 5.17719 83.0067 -10.4967 38.7965 10.0502 -33.6129 49.3922 10.0272 -27.3241 14.187 9.93604 -39.5629 27.7425 11.4278 -42.1534 55.0359 10.0176 -19.0023 15.6372 13.9546 -47.8631 32.7953 17.7996 -48.8099 18.8513 36.2745 -60.5645 10.861 39.7903 -60.8997 18.3879 44.3219 -61.3282 25.5709 40.1514 -60.9249 9.98461 48.0417 -60.7803 17.172 53.0256 -60.1664 26.7053 49.7018 -60.6231 9.02446 55.628 -58.8755 15.9709 59.969 -57.3289 23.2776 58.2326 -58.209 44.1377 66.4765 -47.442 32.9162 70.0487 -45.5996 -39.1943 64.8054 -45.7138 55.5401 55.5242 -49.7715 51.248 61.6595 -48.7462 56.0065 41.9561 -51.2803 57.0734 48.8091 -50.5693 46.5132 29.225 -51.505 52.5663 35.3329 -51.6029 17.5056 21.4015 -53.1414 35.7529 23.258 -51.4249 -24.8654 30.3579 -52.8774 -37.595 44.6801 -51.7631 -32.3879 37.056 -52.6379 -36.3175 56.5451 -50.6094 -38.0947 50.8613 -51.419 -25.0582 65.9138 -47.2878 -13.0315 55.2283 -57.5699 -29.5994 42.7331 -54.0504 -17.7196 32.1054 -55.3997 -31.0452 54.9518 -52.1567 14.4814 25.6447 -55.9766 35.6595 31.6265 -55.6473 45.0786 43.2372 -55.4835 44.2682 56.1306 -54.0718 32.613 65.3459 -51.8098 12.2638 66.6664 -50.3239 -16.8788 38.5536 -57.7812 -22.2779 48.1633 -56.692 20.9614 32.7638 -59.3975 31.7892 39.2914 -59.6303 34.2463 50.1711 -58.9927 17.7651 63.1379 -55.4049 29.3959 59.9275 -56.7944 -19.9928 57.0804 -55.4805 -7.23875 60.3598 -55.204 -5.65804 57.5512 -57.0761 -6.0065 51.3551 -59.049 -5.22208 43.4715 -59.8809 -3.96387 36.0409 -59.508 -5.15608 32.8988 -58.5686 -13.5854 23.9342 -52.6112 -9.06415 18.1577 -50.5723 -3.25877 11.387 -43.9714 -26.2193 42.6871 -55.6006 -28.5919 54.4558 -53.8865 -15.0875 33.3422 -56.7928 -18.825 61.9909 -52.8915 13.3618 27.7844 -57.7174 39.8055 43.952 -57.5439 31.8122 33.1212 -57.6826 38.9151 56.1492 -56.0878 28.5307 64.3375 -53.8731 10.8825 65.2576 -52.8604 -38.7872 11.7814 -10.3899 -51.3804 18.2081 -11.1306 75.9308 18.2734 -10.619 64.3713 11.5264 -10.1319 82.6956 29.1294 -10.748 85.6139 42.137 -11.5317 84.7924 55.3455 -12.4133 79.6343 66.3979 -12.9219 71.6684 75.6332 -12.7061 -25.2621 79.1542 -11.2952 -14.3624 78.3676 -10.5812 -55.4174 91.1379 -15.1558 -43.1913 92.0224 -14.9719 -65.5402 74.7902 -11.1558 -61.0434 28.0454 -11.3123 -32.6111 84.6875 -12.5304 -67.2833 42.4839 -10.9141 -68.8802 58.6841 -10.4374 0.543259 81.1205 -6.22162 9.52418 81.0708 -28.7966 8.37571 83.1824 -21.1125 5.53085 86.6678 -9.24443 6.35532 84.3783 -3.72153 9.91936 86.9399 -19.9543 7.46301 84.8157 -15.1358 19.1716 86.9829 -27.1848 13.7244 84.9789 -24.2465 35.0315 83.0667 -31.2656 26.1633 85.0641 -29.3275 42.8321 87.2394 -26.5835 54.4673 83.6613 -21.5529 52.1903 85.3592 -20.4029 -19.1772 9.97014 -34.5627 -29.0093 10.0524 -23.9684 -28.9966 14.3787 -41.6404 -41.4341 14.4313 -27.1351 68.2653 14.2141 -21.6559 -37.1724 23.751 -45.8917 49.1935 70.9503 -42.3484 -14.5648 76.6133 -27.0075 -49.8916 83.6109 -28.9872 -61.1227 76.1114 -27.2671 -55.0601 65.0337 -40.5186 -61.3029 55.8348 -36.2984 -51.2017 23.1727 -29.0783 -45.8464 35.4359 -46.3143 -58.6945 33.6906 -29.4149 -27.3062 73.8878 -30.3291 27.1279 76.7275 -38.8845 -39.6428 78.0687 -29.8339 -66.1326 51.3373 -25.8257 -45.1368 71.2869 -39.6934 -65.8464 63.4174 -25.0094 25.8474 83.1357 -30.877 12.1451 83.2039 -25.5855 25.4849 9.93826 -37.9992 30.078 14.1043 -45.7664 18.448 40.0625 -61.2347 17.9876 48.7616 -61.0605 16.2348 56.7727 -58.8674 -32.2767 62.0154 -49.2051 -13.9368 67.8282 -45.9206 -24.8684 37.0434 -54.8511 -31.525 48.8313 -53.174 26.4258 27.5071 -55.6637 23.2554 67.017 -50.8845 -10.1563 64.4547 -50.0444 -5.75739 54.7064 -58.2557 -5.8419 47.5145 -59.5984 -4.37907 39.5768 -59.8409 -5.9761 14.2111 -47.5917 -0.926239 9.96272 -39.5747 -28.5177 48.5533 -54.7769 -21.6936 37.4949 -56.2842 -25.4638 59.1765 -53.191 -6.8028 30.1029 -57.2111 37.0326 38.1125 -57.7227 23.7499 29.4563 -57.6722 40.6137 50.1599 -57.0286 34.858 61.1842 -54.92 20.4387 65.7863 -53.1414 -9.18353 63.1068 -52.8225 -31.7926 10.1666 -9.9777 -45.2866 14.5017 -10.8326 70.7816 14.2259 -10.5137 79.9368 23.3648 -10.642 84.3683 35.367 -11.0661 85.8037 48.9262 -12.0255 82.7112 61.2146 -12.6921 76.0168 71.4278 -13.3949 -20.2604 77.9924 -11.2248 -49.3845 92.9811 -15.3182 -60.8729 85.6046 -14.2238 -56.4851 22.8762 -11.2211 -64.3531 34.2467 -11.1677 -29.1309 81.0871 -11.445 -37.3177 89.3021 -14.5323 -69.0093 51.6317 -10.622 -67.6547 66.1837 -10.4878 5.71547 83.0356 -4.42811 57.0919 10.0917 -9.5929 6.03725 83.0742 -16.133 5.45968 86.1214 -3.26036 7.12048 86.8962 -15.0149 13.8867 86.9385 -24.0596 25.9809 87.0964 -28.959 -11.6043 122.781 8.68477 -11.2981 122.692 9.69681 -10.977 122.366 10.6888 -10.6656 121.82 11.586 -10.3765 121.078 12.3445 -10.1237 120.175 12.9302 -9.91827 119.156 13.3142 -9.77222 118.067 13.4803 -9.68768 116.96 13.4188 -9.67062 115.887 13.1341 -9.72327 114.899 12.6358 -9.85822 114.021 11.8907 -10.7227 112.914 8.71887 -11.1023 127.944 8.41562 -10.4921 127.767 10.4464 -9.85971 127.122 12.423 -9.24655 126.037 14.2114 -8.68082 124.561 15.7276 -8.18628 122.764 16.8946 -7.78964 120.733 17.6635 -7.49306 118.563 17.9719 -7.3344 116.363 17.8451 -7.30846 114.233 17.2735 -7.41818 112.273 16.2733 -7.69992 110.534 14.786 -8.2775 109.033 12.4727 -9.35776 108.08 8.5424 -9.95609 132.998 7.96262 -9.04932 132.737 10.981 -8.11142 131.781 13.9103 -7.20317 130.173 16.5602 -6.3661 127.988 18.8075 -5.64024 125.328 20.5468 -5.05821 122.318 21.6961 -4.64821 119.099 22.2025 -4.42282 115.824 22.0238 -4.39761 112.65 21.1845 -4.56294 109.746 19.6875 -4.97073 107.211 17.3891 -7.42485 103.383 8.21767 -8.20483 137.879 7.33685 -7.0141 137.537 11.2983 -5.78555 136.284 15.1374 -4.59557 134.176 18.611 -3.49826 131.313 21.5559 -2.54626 127.827 23.8351 -1.78407 123.883 25.3417 -1.24654 119.664 26.006 -0.958862 115.367 25.7954 -0.932175 111.202 24.7018 -1.15683 107.411 22.6977 -1.71957 104.094 19.6809 -4.90993 99.0215 7.7476 -5.87453 142.516 6.54797 -4.41762 142.098 11.3954 -2.91623 140.566 16.0879 -1.46082 137.989 20.3341 -0.119568 134.489 23.9337 1.04373 130.229 26.72 1.97571 125.407 28.5617 2.63261 120.249 29.3728 2.98405 114.998 29.1163 3.01297 109.897 27.8025 2.72233 105.248 25.381 2.00388 101.315 21.4907 -1.90344 95.1527 7.08847 -2.99854 146.84 5.6071 -1.29695 146.353 11.2694 0.45578 144.564 16.7478 2.15439 141.556 21.7035 3.72029 137.47 25.9059 5.07858 132.497 29.1585 6.16626 126.869 31.3079 6.93364 120.848 32.2555 7.3429 114.718 31.9552 7.37701 108.764 30.4219 7.02557 103.335 27.5927 6.15958 98.8146 22.9217 1.31064 91.5316 5.92221 0.38089 150.789 4.52833 2.30194 150.239 10.9231 4.28081 148.22 17.1066 6.19814 144.825 22.7007 7.96496 140.213 27.4444 9.49823 134.6 31.1152 10.7268 128.246 33.5419 11.592 121.45 34.611 12.0547 114.531 34.2722 12.0932 107.81 32.5417 11.6995 101.628 29.4492 10.7461 96.4739 24.1724 4.21408 154.305 3.32648 6.32714 153.7 10.3604 8.50323 151.481 17.1593 10.6111 147.749 23.3102 12.5537 142.677 28.5254 14.2397 136.505 32.5617 15.5905 129.519 35.2301 16.5418 122.048 36.4053 17.0504 114.439 36.0331 17.0919 107.05 34.1306 16.6589 100.258 30.74 15.7233 94.7279 25.791 8.4454 157.338 2.02082 10.7201 156.687 9.59079 13.0608 154.299 16.9057 15.3288 150.283 23.5229 17.4189 144.827 29.1348 19.2332 138.186 33.4774 20.6856 130.67 36.3481 21.7103 122.631 37.6123 22.2575 114.445 37.2119 22.3019 106.495 35.1648 21.8259 99.2209 31.4888 20.825 93.3985 26.5962 13.0133 159.842 0.628418 15.4163 159.154 8.62471 17.8875 156.633 16.3489 20.283 152.392 23.3369 22.4903 146.631 29.2623 24.4054 139.618 33.8481 25.9394 131.682 36.879 27.0211 123.193 38.2151 27.5987 114.549 37.7917 27.6461 106.153 35.6297 27.1561 98.4202 31.8069 26.2026 92.3353 26.7949 17.8512 161.781 -0.829224 20.3468 161.067 7.47549 22.9136 158.449 15.497 25.4011 154.045 22.7534 27.6929 148.063 28.9072 29.6814 140.78 33.6686 31.2747 132.539 36.8168 32.3972 123.724 38.2032 33.0378 114.732 37.7776 33.1394 106.004 35.5511 32.5863 97.9694 31.5919 31.965 91.3737 26.2299 28.0317 162.761 5.43213 30.6652 160.074 13.6627 33.218 155.556 21.1096 35.5698 149.416 27.4236 37.6109 141.943 32.3103 39.2458 133.487 35.5408 40.3779 124.44 36.8931 41.0778 115.182 36.3645 41.3685 106.251 34.3441 40.5714 98.0124 30.0964 39.483 90.8428 24.5869 25.47 163.494 -3.09354 33.2647 163.97 -5.38011 35.8181 163.241 3.11665 38.442 160.564 11.3176 40.9852 156.062 18.737 45.5605 150.164 24.1539 46.9596 143.512 28.5313 48.7731 136.143 30.9839 48.1273 125.112 34.1698 49.5294 116.289 34.2469 49.9179 107.113 32.426 48.6893 98.8206 27.8254 47.2243 91.628 22.178 38.4532 163.455 -6.88224 40.9503 162.742 1.42916 43.5171 160.123 9.45065 47.7967 155.173 17.3906 53.1913 129.392 30.4605 57.4434 120.187 30.353 57.7555 108.881 29.1971 56.501 100.349 24.8901 54.4406 93.4897 18.651 43.5401 162.322 -8.34137 45.9453 161.636 -0.335434 50.4154 158.124 9.95186 48.4521 160.589 -9.73451 50.7305 159.939 -2.15119 54.3182 157.614 6.23138 63.8033 119.565 25.3861 63.9101 110.06 24.7226 62.901 102.219 20.9027 60.7679 96.0876 14.7059 53.1171 158.28 -11.0416 55.2347 157.675 -3.99215 58.19 155.872 2.80748 67.2969 119.573 21.0355 67.7537 111.25 20.0049 67.3733 103.92 17.1459 65.043 98.1407 11.5222 57.4671 155.429 -12.245 59.394 154.879 -5.83163 62.1915 152.982 0.103493 69.6977 119.848 16.5973 70.8076 112.269 15.649 70.4413 106.039 12.8968 68.5447 100.725 8.19913 61.4382 152.077 -13.326 63.1457 151.59 -7.6422 65.78 149.427 -2.04368 72.9933 113.56 10.1899 72.6093 109.123 7.23009 71.4208 102.692 -5.93692 66.1158 146.314 -14.556 67.6306 145.656 -8.87371 68.937 144.641 -4.73136 71.1249 140.238 -3.87204 72.9303 135.432 -3.25369 73.955 129.872 0.956131 73.8222 124.051 6.88754 69.9913 140.169 -15.5436 71.876 138.749 -9.69077 -11.3759 117.634 8.77818 63.3644 132.244 19.7795 58.7861 144.777 19.4836 67.0122 129.764 16.8798 70.6155 138.855 5.83472 63.4756 148.383 9.49515 62.8195 133.184 17.464 65.3848 131.323 15.0306 58.8061 141.77 16.8434 60.1659 137.06 18.4575 67.3103 131.311 12.1873 59.8997 144.627 13.2097 68.6945 133.697 9.63008 62.6779 144.573 10.0134 68.5944 137.783 7.94185 66.1373 141.972 8.0323 63.5846 133.449 17.7798 66.1373 131.523 15.497 59.6002 142.393 17.3936 68.0977 131.472 12.4801 69.5345 133.885 9.64862 63.3399 145.241 10.1906 69.4233 138.273 7.76169 66.8358 142.631 7.99524 70.3049 128.194 12.73 72.5233 132.983 6.70811 70.8876 139.701 3.88477 57.3232 138.168 24.4749 62.3546 131.157 22.7541 67.3926 146.279 4.41341 62.6852 151.575 8.16354 58.5355 152.152 14.7897 56.0087 147.327 21.699 67.4163 128.203 18.5732 61.7689 138.738 16.9517 60.1192 142.066 15.9826 64.1066 135.62 16.4201 65.946 133.39 14.7222 67.2903 132.939 12.8657 68.2793 135.009 11.4955 67.7633 138.355 10.7993 65.6517 141.685 10.9157 62.861 143.967 11.7343 60.6115 144.197 13.6175 60.9733 137.35 18.8824 60.8999 145.33 13.6701 65.4233 132.097 14.9091 64.194 132.052 16.3667 63.0381 133.984 17.1452 60.5626 137.576 18.0038 59.2072 139.485 18.0623 59.179 141.815 16.5439 61.4122 134.887 18.1943 67.2154 132.019 12.4453 66.4087 131.047 13.613 59.0411 143.572 15.1678 60.1096 144.464 13.3409 68.5151 134.306 10.3248 68.0821 132.189 10.829 61.149 144.974 11.4258 62.7831 144.363 10.5976 68.2882 138.059 8.96576 68.9548 135.624 8.61655 64.3898 143.534 8.86493 66.015 141.892 9.0614 67.5801 139.948 7.72906 62.5229 143.343 13.2497 61.0674 143.946 13.8533 64.8184 141.126 13.1519 66.8854 138.187 12.9695 67.3889 133.651 13.1986 66.7994 134.635 14.1328 65.5909 137.242 14.9847 63.4504 140.109 15.2998 61.4471 142.587 14.915 69.5049 129.705 12.5735 72.1177 136.32 4.77299 71.5801 133.393 8.20432 59.2932 134.201 23.8217 59.9546 137.579 21.2023 65.0801 149.359 5.97188 67.3192 144.395 6.27661 56.9459 150.409 18.5398 60.5959 148.729 14.5628 56.1303 142.947 23.7928 65.2135 129.283 20.9902 68.9562 127.783 15.7988 69.2988 142.988 3.69571 60.547 152.61 11.1863 71.7477 130.025 9.56706 72.9533 131.626 4.33482 71.3592 125.34 12.6099 70.8958 140.288 0.80043 60.4142 128.485 25.3476 53.3566 137.368 28.099 60.1785 154.454 5.65604 66.8521 148.152 1.54631 50.4599 149.321 23.457 54.4777 155.19 14.0957 66.8083 125.61 19.6379 60.7657 140.445 16.6648 62.9418 137.1 16.8738 65.1157 134.361 15.6497 66.6044 132.832 13.8036 67.9094 133.728 12.0538 68.246 136.622 11.0736 66.8721 140.078 10.7355 64.2593 143.015 11.2634 61.6205 144.401 12.4393 60.0361 143.345 14.9402 62.2167 135.13 18.5205 60.0235 144.253 15.7061 59.9835 139.927 18.519 64.9258 132.28 16.7923 67.1776 131.236 14.0179 68.9044 132.335 10.9928 69.7696 135.952 8.50682 68.3794 140.573 7.55853 64.9874 144.212 8.9287 61.9957 145.611 11.7513 64.3364 132.866 16.125 59.6128 139.75 17.5893 61.7458 135.583 17.8214 66.3694 131.791 13.6738 59.3318 143.457 15.0788 67.9657 132.894 11.3154 61.3218 144.772 11.7684 68.6738 136.094 9.51442 64.4194 143.374 9.69681 67.3615 140.039 8.78485 61.7844 144.005 13.1407 63.6091 142.365 13.2305 65.9438 139.693 13.0347 67.4912 136.673 12.9257 66.9492 133.714 13.8169 66.3464 135.861 14.5969 64.5685 138.672 15.2167 62.3546 141.447 15.1878 60.8028 143.341 14.6881 70.7571 131.099 10.3129 71.4393 136.084 6.66586 61.5272 134.531 20.6551 65.2209 146.715 7.63861 59.5052 147.331 17.3142 58.8328 141.204 20.8056 65.3699 130.706 18.6303 68.3045 129.387 14.7556 69.1838 141.704 5.63008 61.9527 149.098 11.8158 72.6026 127.566 8.47568 72.3965 136.097 1.70497 56.5247 132.614 27.6949 63.6929 151.685 3.08774 52.022 153.009 18.9305 51.1249 144.226 26.8356 63.9865 126.508 22.5154 69.2202 125.238 16.535 69.0541 144.317 0.692924 57.2187 155.661 9.56113 67.741 135.282 12.8723 67.7907 134.283 12.7419 71.6609 136.111 -15.9358 72.3201 105.969 -15.2641 74.0417 117.157 -16.1597 75.2065 106.525 -16.2769 79.8634 107.308 -17.6552 91.3867 109.457 -21.1013 88.3001 106.164 -20.0804 79.2991 114.295 -17.6596 83.595 107.064 -18.7273 84.1132 113.461 -18.9875 85.3967 106.488 -19.2404 74.3568 135.883 -16.7173 78.9611 134.305 -18.0244 82.9529 133.126 -19.1618 84.9244 134.248 -19.7638 86.99 136.683 -20.4237 90.4947 139.433 -21.5114 93.7133 139.447 -22.4507 94.9967 133.968 -22.6969 95.4994 138.023 -22.9393 92.0955 130.536 -21.7701 88.3638 126.832 -20.5942 85.6599 124.96 -19.7608 81.4537 123.062 -18.4885 74.8654 115.813 -16.3999 75.0456 119.162 -16.437 77.3477 106.901 -16.9108 90.4702 107.067 -20.7351 76.8324 114.944 -16.9597 81.866 106.977 -18.232 81.8267 113.709 -18.3173 87.5994 113.172 -20.0641 72.8517 136.463 -16.4526 76.6211 135.168 -17.3616 81.0749 133.56 -18.6235 84.1259 133.478 -19.5125 85.7941 135.222 -20.0404 95.5972 136.005 -22.9201 93.7963 132.209 -22.3054 90.1255 128.604 -21.1495 87.0197 125.694 -20.1745 83.7714 124.169 -19.1907 77.8207 121.529 -17.3927 90.9181 111.196 -21.0087 72.5032 108.223 -2.09484 75.2258 128.38 -2.75545 73.0089 134.723 -11.6266 74.987 120.808 6.20024 75.9205 117.527 -9.42607 74.9633 116.553 -9.73895 78.1707 127.11 -4.45851 76.4373 109.876 3.38505 75.8359 108.157 -4.45555 81.7666 127.621 -5.91393 76.6804 114.045 7.19746 76.6345 120.205 6.07716 82.3917 119.936 3.28125 80.7256 108.785 -7.12913 83.5075 117.685 2.46864 82.9974 115.277 1.76725 92.4261 111.042 -14.8022 90.3783 110.634 -9.15768 95.4037 129.402 -7.5814 96.0984 136.789 -17.4832 82.3405 119.579 -9.26593 80.8413 115.369 -9.65369 85.2625 124.587 -1.81087 84.8272 129.21 -7.48057 85.7451 117.806 -3.52579 86.8232 121.414 -9.52765 85.9097 118.886 0.325172 87.199 131.776 -9.16064 88.7516 134.416 -11.1099 90.1003 121.341 -5.78863 94.2515 126.991 -9.62626 89.9564 123.624 -10.2795 92.7753 126.838 -11.8772 90.8128 122.536 -2.9371 84.8317 108.856 -9.63812 86.0135 114.746 -2.76731 86.5792 108.162 -11.0609 90.7371 125.097 -2.53673 73.043 106.875 -10.3143 75.0849 116.366 -9.04127 75.9716 116.037 -9.92357 74.6763 117.226 -13.3023 76.6107 127.495 -3.81347 75.8715 107.338 -10.9986 74.2945 131.787 -6.83849 77.6673 130.92 -7.97213 79.9509 127.383 -5.12654 76.4239 117.364 7.49699 79.6098 120.36 4.88643 79.5468 114.305 5.90663 78.3479 108.471 -5.80049 80.1169 108.117 -13.6233 81.3351 130.611 -9.06203 83.483 116.149 2.62879 83.0011 114.026 3.50368 91.761 108.672 -14.126 92.1266 109.889 -18.0081 93.8845 131.645 -7.45462 96.1799 134.037 -11.4887 81.9698 117.706 -6.57603 78.9833 118.659 -9.33636 78.2737 115.773 -9.7916 81.6235 116.026 -5.37269 79.8693 114.493 -14.8934 83.5372 128.01 -6.78511 83.5372 116.896 -3.09725 86.2686 119.313 -6.65833 84.7701 120.477 -9.37344 85.7155 117.814 -1.09836 82.8336 116.065 -0.2435 84.0376 118.31 1.24899 82.4806 122.05 -11.5955 87.1182 124.405 -12.0018 88.0999 133.229 -10.2009 92.2897 123.818 -7.20253 93.4241 126.82 -10.8934 91.5661 125.3 -11.0513 89.9394 122.25 -7.90022 90.4806 121.459 -4.05592 93.4426 125.358 -4.55564 95.0537 127.861 -8.4207 86.6067 133.598 -11.5288 88.5707 135.852 -12.9256 89.8207 126.465 -12.6372 92.9117 128.817 -13.9117 95.0404 130.344 -13.2941 82.9299 109.011 -8.36213 85.6702 113.376 -2.09262 83.9642 114.927 -0.734322 83.2265 115.122 -10.3417 85.751 115.129 -7.31301 84.1511 107.994 -14.6242 84.6693 113.83 -16.0203 88.6597 113.95 -5.64331 88.16 112.314 -5.20661 87.6284 114.616 -8.44739 91.1709 112.257 -10.1186 89.261 107.896 -12.7825 84.4929 131.425 -10.2884 88.4714 122.412 -9.79086 88.4424 120.148 -1.065 85.9995 121.323 0.560211 86.1099 130.434 -8.26055 87.8345 118.872 -4.42515 91.1968 133.419 -9.01013 88.8191 128.275 -4.56676 81.5976 122.873 0.828606 76.9644 122.205 2.94316 81.4612 110.902 -0.296883 85.7392 110.723 -3.63627 75.9894 134.176 -12.4407 80.1251 132.842 -13.5803 83.9442 132.485 -14.6398 85.946 134.022 -15.3694 88.0213 136.327 -16.4059 91.3103 138.582 -16.933 94.3976 138.399 -17.1755 95.3962 132.764 -17.8798 92.8436 130.018 -17.5358 89.2928 126.974 -16.3569 86.4413 124.91 -15.6051 82.4754 123.01 -14.5108 91.896 112.486 -14.9156 82.8751 115.658 -0.544518 86.2805 115.188 -4.50003 76.1644 116.572 -8.83145 75.4185 115.882 -13.8516 76.0488 119.438 -12.6624 75.6543 131.457 -7.41829 79.4986 117.656 6.72963 79.0322 110.008 1.65974 78.0128 107.635 -12.0211 79.5268 130.758 -8.47779 82.1877 117.111 4.66623 91.3177 107.267 -17.6789 94.3523 135.804 -11.3701 79.199 116.397 -7.74822 77.416 115.064 -14.3959 84.1318 118.571 -6.36101 83.3881 117.034 -0.32283 85.0712 123.225 -11.8706 91.807 124.332 -9.03386 92.9703 124.047 -5.59067 87.5542 134.782 -12.3095 91.394 127.808 -13.2948 94.0891 129.464 -13.8324 83.6906 111.07 -2.07482 83.6929 113.909 0.096817 83.6402 115.586 -6.22978 82.2292 108.145 -14.0185 82.2626 114.108 -15.3812 85.9475 107.439 -15.3597 88.2578 113.456 -17.1125 88.2163 114.084 -11.2463 88.9763 106.666 -16.7455 83.1168 130.614 -9.81607 88.5233 125.332 -12.2287 88.5596 122.718 -0.990116 88.1236 120.568 -7.14322 91.5424 136.545 -12.2591 90.1959 130.708 -6.46555 83.1835 123.375 -0.566017 79.5957 122.783 1.99635 74.3672 117.295 7.88031 87.5631 110.072 -6.37584 74.1744 134.769 -11.9588 77.8467 133.564 -12.9456 82.0565 132.388 -14.1586 85.1416 133.114 -14.9897 86.8728 135.108 -15.8513 96.088 134.721 -17.6366 94.3716 131.254 -17.9443 90.9752 128.478 -16.8885 87.8886 125.817 -15.9581 84.6456 124.017 -15.1551 78.798 121.528 -13.6567 91.6357 111.58 -17.9377 84.2971 115.519 -2.50114 83.7426 120.625 1.77541 88.5833 114.451 -6.97195 88.0828 118.976 -2.26166 92.4098 128.085 -4.46593 90.9233 113.198 -10.8133 95.8359 131.912 -12.44 88.8584 109.104 -9.27186 75.6269 121.857 3.65715 78.5266 120.452 -11.3783 85.7325 132.479 -10.7807 87.2109 126.227 -3.03349 82.3865 115.792 -3.39975 85.5323 114.683 -10.7629 88.5351 113.906 -14.361 85.1809 114.135 -13.5766 82.7372 114.618 -13.0324 80.3171 114.815 -12.4815 77.8096 115.265 -12.0804 75.7054 115.895 -11.7089 74.7512 116.96 -11.2522 75.744 118.732 -10.8711 69.843 141.836 -9.30819 67.9679 143.189 -15.0231 72.8213 119.941 10.9157 71.6506 104.986 0.684029 69.456 100.727 -14.47 73.995 114.29 6.9995 73.1142 110.85 3.56299 72.9748 136.288 -10.6843 71.3295 137.732 -15.8765 71.3963 104.177 -15.1099 74.1581 133.103 -5.27631 75.2109 128.825 -1.40012 75.073 122.123 6.21136 74.2901 118.616 8.83824 74.0083 114.133 7.99301 73.4597 110.347 4.91832 72.8198 106.93 -0.967873 82.4554 113.29 2.18171 79.572 111.521 3.2642 80.1607 112.304 4.14649 -10.1429 113.254 10.7089 72.7842 105.382 -7.25814 -5.83078 104.99 14.0223 -2.85619 101.143 15.3198 0.690811 97.9167 16.3207 4.67302 94.8688 16.9057 66.3361 95.2358 0.153168 -11.892 122.645 7.67271 -12.1529 122.274 6.67995 -12.3643 121.685 5.78059 -12.534 120.909 5.0184 -12.626 119.978 4.42898 -12.646 118.938 4.04047 -12.5956 117.84 3.87142 -12.4777 116.734 3.92851 -12.2953 115.674 4.20803 -12.0595 114.707 4.70033 -11.7659 113.862 5.43361 -11.6777 127.672 6.3856 -12.1989 126.934 4.40896 -12.6304 125.765 2.6199 -12.9514 124.219 1.10294 -13.1465 122.369 -0.071487 -13.2072 120.301 -0.848503 -13.1242 118.113 -1.18808 -12.8996 115.91 -1.07389 -12.5437 113.798 -0.511894 -12.0803 111.876 0.468269 -11.5131 110.201 1.90664 -10.7279 108.684 4.35558 -10.8109 132.596 4.94501 -11.5843 131.502 2.01563 -12.2226 129.769 -0.634972 -12.6979 127.479 -2.88298 -12.987 124.738 -4.62311 -13.0768 121.674 -5.77454 -12.9633 118.431 -6.28242 -12.6504 115.16 -6.12376 -12.1492 112.018 -5.30077 -11.4627 109.168 -3.83942 -10.636 106.694 -1.7434 -9.32736 137.352 3.37615 -10.3401 135.919 -0.462959 -11.1772 133.648 -3.93729 -11.8 130.646 -6.88298 -12.1796 127.054 -9.1636 -12.2968 123.039 -10.6717 -12.1477 118.789 -11.3375 -11.7385 114.502 -11.1299 -11.0883 110.379 -10.0578 -10.1881 106.649 -8.12857 -9.11383 103.415 -5.39493 -7.24765 141.871 1.70126 -8.48584 140.119 -2.99197 -9.509 137.344 -7.23812 -10.2704 133.674 -10.8392 -10.7339 129.283 -13.627 -10.8777 124.375 -15.4702 -10.6953 119.179 -16.2843 -10.1948 113.94 -16.03 -9.38 108.916 -14.6924 -8.24042 104.41 -12.2576 -6.81169 100.55 -8.6587 -4.60298 146.087 -0.054435 -6.04802 144.042 -5.53284 -7.24321 140.802 -10.4893 -8.13144 136.519 -14.6932 -8.67267 131.393 -17.9473 -8.84024 125.664 -20.0997 -8.62744 119.599 -21.0494 -8.04318 113.482 -20.7529 -7.08603 107.625 -19.1759 -5.77963 102.353 -16.3577 -4.12698 97.8226 -12.2769 -1.43115 149.939 -1.86574 -3.0623 147.631 -8.04924 -4.41095 143.974 -13.6441 -5.41411 139.139 -18.3892 -6.02504 133.353 -22.0622 -6.21411 126.886 -24.4919 -5.97388 120.04 -25.564 -5.31401 113.136 -25.2289 -4.25377 106.509 -23.4776 -2.81467 100.514 -20.3577 -0.857285 95.3878 -15.9247 2.22112 153.371 -3.70596 0.427597 150.832 -10.5049 -1.05525 146.812 -16.6565 -2.15849 141.496 -21.8739 -2.82948 135.134 -25.9124 -3.03783 128.024 -28.5838 -2.77313 120.497 -29.7627 -2.04877 112.906 -29.3942 -0.897324 105.606 -27.4954 0.658188 98.9955 -24.1115 2.66969 93.7269 -19.7623 6.30045 156.332 -5.54841 4.37052 153.602 -12.8633 2.77497 149.275 -19.4821 1.58868 143.556 -25.0954 0.866531 136.711 -29.4409 0.642624 129.061 -32.3147 0.926575 120.963 -33.5833 1.70657 112.796 -33.1866 2.9455 104.941 -31.144 4.64336 97.9398 -27.491 6.69341 92.8958 -23.465 10.7483 158.78 -7.36639 8.71009 155.896 -15.0906 7.02557 151.328 -22.08 5.77182 145.289 -28.0077 5.00963 138.061 -32.5957 4.77312 129.983 -35.6311 5.07339 121.431 -36.9701 5.89712 112.807 -36.5512 7.20499 104.513 -34.3944 9.05486 97.2925 -30.556 11.2406 92.5807 -26.9734 15.4979 160.678 -9.13321 13.3818 157.684 -17.1547 11.6321 152.94 -24.4125 10.3309 146.669 -30.5671 9.53901 139.163 -35.3323 9.29359 130.775 -38.4834 9.60574 121.895 -39.8743 10.4606 112.939 -39.4398 11.8189 104.326 -37.2 14.0588 96.9514 -33.3467 16.6434 92.4725 -29.9718 23.0545 162.362 -11.6177 20.8829 159.289 -19.8483 19.0871 154.421 -27.2967 17.7525 147.986 -33.6129 16.9392 140.284 -38.5019 16.6871 131.675 -41.736 17.0074 122.563 -43.1632 17.8853 113.373 -42.7169 19.2791 104.535 -40.4185 21.2106 97.0107 -36.2628 23.42 92.7149 -32.4103 30.8573 162.843 -13.8754 28.6938 159.781 -22.0763 26.9055 154.931 -29.4973 27.9242 148.749 -36.2635 26.8335 141.896 -40.4148 27.1308 134.403 -43.1558 24.8332 123.19 -45.306 25.7073 114.033 -44.8611 27.096 105.227 -42.5709 28.977 97.7766 -38.3173 31.01 93.1798 -33.7501 36.0984 162.352 -15.1936 33.9816 159.358 -23.2144 33.3826 154.015 -31.9877 31.2043 127.797 -45.1888 41.2721 161.261 -16.3458 39.5527 157.252 -27.2589 34.1114 118.081 -46.7154 35.274 106.958 -44.7195 36.8836 99.3018 -39.4702 38.9366 94.263 -33.7738 46.3034 159.583 -17.3163 44.8502 156.854 -26.2038 42.5748 117.521 -46.6924 42.9789 108.591 -45.2964 44.501 100.951 -40.6187 47.291 94.8665 -33.4268 51.1197 157.345 -18.0904 49.9772 155.213 -25.3275 48.2059 117.708 -45.7612 48.7168 109.961 -44.0908 50.3568 102.509 -40.027 53.4827 96.7468 -32.9174 55.6498 154.578 -18.6568 54.8409 152.392 -25.0769 52.7864 118.209 -43.2581 53.6228 111.351 -41.2941 55.2413 104.656 -38.0407 58.7364 99.47 -31.8202 59.8286 151.323 -19.0083 59.0656 148.888 -25.0487 58.6371 112.647 -37.2162 60.0213 108.358 -34.3455 66.7364 101.215 -23.2055 64.3461 145.393 -20.1264 63.2939 144.171 -24.2324 64.6093 139.563 -25.8976 66.0209 134.24 -27.224 64.8265 128.137 -31.0498 61.4092 121.344 -36.0211 68.4454 138.292 -21.5291 45.453 130.809 -41.5454 41.6524 143.401 -39.21 50.101 128.433 -40.9145 59.0129 137.957 -33.7931 50.9314 147.376 -33.4765 46.2433 131.854 -39.2708 49.7303 130.061 -38.4737 43.1271 140.511 -36.8678 43.4601 135.718 -38.774 52.9147 130.138 -37.0872 45.9668 143.509 -34.5197 55.443 132.636 -35.7653 50.0284 143.557 -33.3201 56.2208 136.784 -34.4582 54.0432 141.001 -33.4001 46.726 132.091 -39.9847 50.1181 130.245 -39.3182 43.4927 141.099 -37.7857 53.4219 130.291 -37.7879 56.1362 132.807 -36.2509 50.4828 144.208 -33.8546 57.0422 137.29 -34.817 54.643 141.653 -33.7723 55.0842 126.961 -39.0439 60.0643 131.807 -35.2485 60.3282 138.873 -32.42 37.8104 136.599 -42.3736 42.95 129.62 -43.6504 57.0126 145.449 -31.2322 50.941 150.632 -32.0693 43.8723 150.975 -35.442 38.0876 145.889 -39.6926 49.5108 126.802 -42.685 45.605 137.439 -38.4211 44.6923 140.828 -36.8618 47.893 134.316 -39.1277 50.3776 132.134 -38.6198 52.5225 131.75 -37.7278 54.0743 133.869 -37.1666 53.9713 137.248 -36.4482 52.0865 140.596 -35.554 49.2647 142.875 -34.8407 46.3531 143.052 -35.2278 43.9086 135.978 -39.5785 46.5533 144.179 -35.4761 49.8356 130.846 -38.4441 47.9983 130.76 -39.0142 46.6052 132.656 -39.1566 44.0339 136.249 -38.6168 42.8387 138.17 -38.0111 43.6017 140.564 -36.8188 44.6634 133.535 -39.1929 52.6931 130.851 -37.3023 51.3763 129.845 -37.8198 44.2029 142.382 -35.6615 46.0758 143.337 -34.7362 54.9106 133.214 -36.2776 54.299 131.078 -36.3859 47.9753 143.917 -33.7041 49.8059 143.321 -33.8591 55.4037 137.025 -35.1736 56.1837 134.599 -35.1328 52.1021 142.547 -33.2281 53.387 140.878 -34.1972 55.4482 138.973 -33.8331 48.1733 142.19 -35.9091 46.6141 142.785 -35.6607 50.1892 139.952 -36.9649 52.0658 136.997 -37.7961 52.4194 132.447 -38.0845 51.4089 133.398 -38.5931 49.903 135.983 -38.7555 47.893 138.861 -37.994 46.3798 141.377 -36.6995 54.5637 128.486 -38.5583 60.8235 135.305 -33.5811 58.5718 132.382 -36.0552 39.8159 132.627 -42.8845 41.7955 136.119 -41.0087 54.1663 148.483 -31.4153 55.9539 143.477 -32.6654 40.5373 149.092 -37.6693 45.7748 147.539 -36.2109 37.1201 141.421 -41.3319 46.3145 127.804 -43.6823 52.3171 126.477 -40.9857 59.1168 142.133 -31.5495 47.4993 151.562 -33.5084 58.2159 128.907 -37.3334 61.9319 130.28 -33.5996 55.9843 124.214 -39.8068 61.9357 139.512 -29.8517 40.0547 127.159 -44.8752 32.5262 135.693 -43.2641 50.1396 153.648 -28.7343 58.0699 147.457 -28.6001 32.4395 147.874 -38.275 40.7865 154.09 -32.8062 48.5485 123.891 -44.2502 44.8917 139.171 -37.7145 46.6541 135.791 -38.9245 49.1683 133.076 -38.9875 51.4356 131.609 -38.169 53.4767 132.569 -37.389 54.253 135.498 -36.8633 53.2321 138.983 -35.9892 50.709 141.926 -35.1558 47.8345 143.294 -34.7866 45.1675 142.152 -35.9951 45.1713 133.754 -39.9113 44.7331 143.025 -36.6728 43.2421 138.583 -38.8326 48.3979 130.967 -39.812 51.8085 130.009 -38.6079 54.898 131.214 -36.9842 56.9414 134.926 -35.5317 56.2052 139.595 -34.146 52.5633 143.214 -33.6329 48.5055 144.528 -34.4611 48.2504 131.567 -38.9341 43.4311 138.451 -37.8428 45.1446 134.246 -39.058 51.3088 130.573 -37.8872 44.498 142.267 -35.7379 53.9312 131.767 -36.7632 47.939 143.698 -34.0771 55.4586 135.033 -35.7586 51.6817 142.351 -33.9384 54.6942 139.021 -34.6087 47.6009 142.867 -35.4487 49.1112 141.201 -36.4341 51.2183 138.511 -37.4098 52.6196 135.479 -38.0192 51.7129 132.488 -38.381 50.7646 134.609 -38.7822 48.8984 137.414 -38.4633 47.013 140.215 -37.3683 45.949 142.148 -36.1946 56.8747 130.003 -37.3653 59.271 135.122 -34.8148 43.4222 133.063 -41.3875 53.4219 145.768 -32.7803 43.3933 146.037 -37.8806 41.0259 139.775 -40.1938 47.7811 129.312 -41.5937 52.3542 128.12 -39.7631 57.9468 140.752 -33.0391 48.3905 148.009 -34.6435 59.466 126.101 -36.8574 62.769 134.918 -31.1499 35.337 130.917 -44.7544 54.5184 150.949 -28.3414 36.1436 151.734 -35.4628 31.2473 142.63 -41.2578 44.4825 124.75 -45.068 52.223 123.767 -42.08 60.3461 143.735 -29.0309 45.5294 154.723 -30.4826 52.8762 134.088 -38.0496 52.9993 133.095 -37.9288 65.4323 107.528 -26.9171 67.9487 126.833 -28.5074 70.5081 134.319 -20.2732 62.6749 119.616 -35.7438 72.6589 117.278 -23.098 72.2444 116.442 -22.3254 71.3889 125.795 -28.3703 65.5901 109.029 -33.5959 69.3603 107.637 -26.6398 75.0515 126.757 -29.2103 63.5342 113.12 -36.9642 64.2148 119.206 -36.4696 70.5985 118.958 -37.1681 74.9121 108.319 -27.0453 71.9998 116.742 -36.9872 71.9612 114.391 -36.0381 88.8094 110.578 -26.9527 84.1169 110.131 -30.6072 87.2695 128.749 -35.4465 93.0867 136.547 -27.8016 77.576 118.913 -26.6205 76.2215 114.981 -25.3972 75.678 123.817 -34.645 78.3012 128.686 -29.8368 77.0845 117.097 -33.174 81.2906 120.822 -28.8656 75.1464 118.021 -36.546 81.172 131.293 -29.8079 83.4949 133.994 -29.1154 81.9364 120.685 -33.7567 87.4282 126.444 -33.002 84.2007 123.162 -29.9962 87.3956 126.405 -30.3062 80.9881 121.747 -36.5927 79.7217 108.446 -27.144 76.8458 113.737 -33.7746 81.9683 107.792 -26.8548 80.6767 124.289 -36.9998 70.1714 106.645 -20.1493 72.022 116.241 -22.9037 72.8888 115.884 -22.6383 73.3892 117.141 -19.0068 69.7533 125.895 -28.1175 72.9185 107.101 -21.1147 69.1965 130.484 -24.8144 72.6997 129.897 -25.4795 73.1742 126.294 -28.81 63.1531 116.358 -37.3542 67.3688 119.359 -37.0517 66.7935 113.286 -37.5877 72.197 107.977 -26.8719 77.8994 107.939 -21.2215 76.3201 129.88 -26.4826 71.9026 115.225 -37.0598 71.0463 113.066 -37.4483 87.9791 108.369 -27.0824 90.3568 109.787 -24.1197 85.8919 131.003 -34.834 89.9668 133.538 -32.7744 75.3807 117.261 -28.6335 74.2589 118.273 -24.8974 74.5081 115.555 -23.9173 74.7186 115.201 -29.2771 78.273 114.414 -20.2702 76.9377 127.337 -29.5447 74.9877 116.19 -32.3036 79.228 118.61 -30.8741 79.7455 119.59 -27.752 75.7618 117.015 -35.1966 72.8947 115.268 -34.2906 73.0867 117.445 -36.2917 78.8617 122.15 -25.111 82.7305 124.079 -27.0743 82.4725 132.777 -29.4795 84.5114 123.193 -33.8509 87.4141 126.338 -31.4821 85.952 124.849 -30.2847 82.9247 121.687 -31.9314 81.3232 120.724 -35.4257 84.0399 124.603 -36.7655 87.4445 127.25 -34.4856 81.9223 133.222 -27.574 84.3016 135.509 -27.551 85.3181 126.104 -28.0604 88.5803 128.469 -28.7521 90.0231 129.941 -30.4819 77.43 108.57 -27.2025 76.3149 112.625 -34.143 74.121 114.113 -34.4307 78.5236 114.752 -26.0741 79.2235 114.861 -29.7308 81.84 107.809 -22.5419 82.8432 113.477 -21.7471 80.6945 113.198 -32.7484 80.1006 111.667 -32.8137 81.4167 114.445 -29.7768 85.2891 111.653 -30.1957 85.1586 107.567 -26.8363 79.5016 131.024 -27.3879 82.7149 121.901 -29.5647 78.0128 119.311 -36.7914 75.0649 120.445 -36.8974 79.7863 129.926 -29.9221 79.3229 118.187 -33.5803 84.4402 132.877 -32.1553 80.111 127.576 -34.3959 71.2569 121.989 -34.7844 66.2834 120.958 -33.9154 71.8315 110.129 -33.2852 77.2358 110.04 -32.7655 73.4782 133.884 -21.131 77.6228 132.464 -22.2276 81.3655 132.277 -23.4746 83.426 133.82 -24.0033 85.7036 136.141 -24.3458 88.7308 138.375 -25.7679 91.4667 138.163 -27.2159 92.7583 132.552 -26.9171 90.4562 129.827 -25.7152 86.8669 126.78 -24.6669 84.0844 124.721 -23.6771 80.1888 122.834 -22.3988 88.4224 111.98 -26.642 73.0971 114.872 -34.0422 78.0365 114.257 -32.4652 72.6559 116.366 -23.6348 74.0565 115.738 -18.8756 74.3546 119.371 -20.3332 70.6786 130.252 -24.9797 66.3234 116.559 -38.424 68.7427 109.182 -33.5877 75.2695 107.415 -21.4172 74.5162 129.923 -26.0103 69.7229 116.044 -38.0771 89.5331 107.124 -23.792 88.3401 135.32 -31.9677 74.1388 115.95 -26.0645 75.9612 114.948 -19.4391 77.1416 118.114 -30.0044 73.3922 116.231 -34.5642 80.9955 123.121 -26.1556 85.0815 123.793 -32.0715 84.2148 123.344 -35.5836 83.1264 134.427 -27.4776 86.9811 127.454 -28.4118 89.522 129.098 -29.4795 74.6652 110.346 -32.9938 73.4634 113.087 -34.946 76.8228 114.888 -29.5521 79.8915 107.956 -22.0252 80.6122 114.073 -21.0487 83.7573 107.262 -22.8645 86.4999 113.195 -22.8837 83.3651 113.698 -27.6845 87.0649 106.513 -23.293 78.1729 130.027 -26.8719 84.0191 124.97 -27.6585 78.0395 121.874 -37.0279 80.9955 119.953 -31.531 86.4391 136.135 -29.7404 82.2626 130.071 -33.6418 73.3188 122.63 -34.5204 68.9993 121.598 -34.5597 61.1201 116.288 -36.4563 80.2549 109.485 -31.4116 71.6743 134.356 -20.764 75.3384 133.298 -21.6337 79.5527 132.054 -22.774 82.5547 132.906 -23.8513 84.4528 134.914 -24.1434 93.1861 134.488 -27.5777 91.9487 131.059 -26.2461 88.5515 128.283 -25.1888 85.4827 125.624 -24.1983 82.3397 123.833 -23.052 76.6708 121.456 -21.1288 89.869 111.457 -23.9848 75.2791 114.471 -33.131 72.5418 119.712 -36.6595 81.3907 113.876 -31.5584 78.3679 118.196 -35.5399 83.0864 127.336 -36.4037 85.4308 112.541 -29.518 90.2145 131.46 -31.6971 82.9166 108.627 -29.6277 64.7835 120.521 -33.7531 75.2428 120.861 -23.2937 80.7976 132.083 -27.6852 77.9572 125.484 -34.7339 74.1796 115.013 -31.4161 80.9021 114.638 -26.7177 85.1483 113.312 -25.263 82.0676 114.019 -24.0982 79.6802 114.358 -23.3746 77.3173 114.669 -22.6413 75.2124 115.161 -21.7041 73.588 115.837 -21.0027 72.7523 116.861 -20.956 73.4137 118.581 -21.8902 66.4762 141.604 -20.8641 58.3546 118.743 -38.2809 63.6573 103.164 -29.6181 61.2017 113.464 -35.2759 62.603 110.079 -31.8602 69.9438 135.891 -21.1621 68.2393 131.67 -26.2038 67.4378 127.136 -29.5202 62.8091 120.687 -35.9907 60.5767 117.653 -37.3935 60.7761 113.247 -36.1998 62.0921 109.556 -33.1525 65.2417 105.935 -28.1842 71.3073 112.394 -36.0092 68.3164 110.617 -35.2945 68.3445 111.331 -36.3747 -11.3552 113.133 6.63324 68.4684 104.805 -22.5375 -9.45044 104.401 1.95409 -7.56053 100.492 -0.627556 -5.0686 97.2087 -3.46945 -1.8849 93.9531 -6.38548 56.808 93.3547 -23.3279 61.9223 96.6682 -23.3508 59.4081 140.566 19.6623 60.4639 137.464 20.042 61.8763 134.831 19.5882 63.4845 132.857 18.7674 59.1931 143.585 18.4382 65.1653 131.503 17.6961 59.7648 145.792 16.5098 66.574 130.654 16.1776 60.7479 147.03 14.1165 67.7426 130.322 14.3856 61.9742 147.354 11.7839 68.7983 130.581 12.5261 63.4081 146.812 9.84286 69.823 131.736 10.6896 65.1046 145.464 8.28365 70.6207 133.636 8.99838 67.079 143.51 7.13741 70.6489 135.976 7.7083 68.7916 141.109 6.6273 70.0306 138.529 6.87865 46.0899 131.451 -40.7647 44.2964 133.408 -40.6498 42.8521 136.048 -40.2939 42.1344 139.179 -39.5132 48.0895 130.139 -40.7032 42.5725 142.25 -38.4974 50.1107 129.339 -40.116 44.0636 144.531 -37.2763 52.0814 129.065 -39.1855 46.164 145.859 -35.8431 53.992 129.384 -38.172 48.4484 146.268 -34.5523 55.8478 130.62 -37.1918 50.7075 145.792 -33.6656 57.2832 132.639 -36.2405 52.9926 144.492 -33.2066 58.0113 135.002 -35.2811 55.2984 142.565 -33.2185 57.9772 137.569 -34.3714 57.0771 140.172 -33.5929 1.38182 68.9774 -45.9569 1.47894 65.0285 -50.2728 1.09637 63.909 -52.87 4.59888 9.97681 -40.0908 4.56625 11.4122 -44.5415 4.27933 14.0176 -48.351 3.6239 17.5846 -51.2515 2.5518 21.6054 -53.3934 2.81797 25.9316 -56.0077 3.01964 28.3271 -57.5284 3.3214 31.8267 -58.9081 3.45486 35.6754 -59.9047 3.14198 39.6169 -60.4303 2.63558 43.6332 -60.5215 2.15143 47.625 -60.2798 1.8074 51.4352 -59.6459 1.64281 54.9177 -58.6553 1.54494 58.1214 -57.1999 1.24614 61.2169 -55.2299 2.20258 72.8765 -41.2252 4.0999 75.8378 -37.4454 6.18702 78.5203 -33.435 56.4936 87.4619 -10.08 57.7629 85.6098 -10.3506 59.9983 84.0135 -10.7406 63.4852 82.0057 -11.5406 67.5801 79.1089 -12.265 -10.1652 108.262 6.21582 -11.0734 112.965 7.57632 -0.481384 91.8178 -0.502998 -8.62003 103.705 4.73889 -6.45135 99.499 2.95057 -3.73181 95.6969 0.985786 -60.1092 28.2359 7.92776 -8.84988 108.395 10.4182 -10.438 113.006 9.67531 2.73864 92.5778 10.975 -6.7205 103.892 10.9765 -4.01207 99.6658 11.3213 -0.806137 95.8341 11.3643 64.3527 94.8043 -12.5052 60.0369 91.4033 -11.0824 -11.539 10.151 19.9241 -5.49863 10.1436 21.8177 -15.9268 10.1577 16.38 -19.33 10.1651 11.6357 -22.5381 10.1681 4.40154 32.719 10.1303 18.5309 40.266 10.1244 13.6679 14.2263 10.1377 23.0462 22.7994 10.1333 21.7028 2.70157 10.137 23.1159 44.4157 10.1281 7.56966 6.82094 10.137 23.6438 46.5807 10.1555 0.804138 -22.7316 10.1651 -8.79883 46.5392 10.1481 -8.35619 -6.5737 10.1422 -30.0845 -12.5993 10.151 -28.2717 -18.4966 10.1644 -25.6115 -21.6988 10.1659 -20.5282 -21.6462 10.1607 -14.2928 40.6619 10.1362 -21.951 32.9614 10.1496 -27.1618 22.9625 10.1599 -31.832 13.8408 10.1637 -33.647 2.11658 10.1488 -32.443 44.7679 10.1347 -15.5147 6.04318 10.1488 -32.526 12.5907 10.1733 -3.80531 59.1887 91.8044 8.95242 -37.1383 88.9529 -2.97714 -31.8022 10.0858 -1.97102 -25.1531 10.1622 -2.2068 -48.967 94.3801 -3.43312 -42.7435 92.7505 -3.24479 -45.2458 14.541 -1.9814 -38.8006 11.688 -1.94433 -51.5643 18.2037 -2.1067 -56.8395 22.9229 -2.04294 -61.3273 28.167 -2.00068 -64.683 34.1592 -1.92802 -67.7244 42.676 -1.88947 -69.2985 52.0358 -1.98363 -69.0782 59.0674 -1.98585 -68.0128 66.587 -1.96361 -66.3149 75.4782 -2.11857 -61.6254 86.6775 -2.9586 -55.4464 92.4777 -3.38715 -32.8632 83.5116 -1.95249 -29.1664 80.3716 -1.67964 -25.0219 78.6923 -1.82199 -19.731 77.9019 -1.94433 -13.8211 78.3245 -1.89985 0.599609 81.0967 -1.11393 5.68803 83.0274 -0.72765 6.50954 84.4391 -0.967133 5.72511 86.2104 -0.331726 3.73808 88.5303 1.10886 0.442429 91.5093 2.82008 -2.82133 95.1602 4.04714 -5.66766 99.1208 5.2742 -8.03503 103.465 6.34038 -9.79816 108.128 7.22415 -10.9333 112.931 8.02786 -26.7479 60.7542 43.6698 -20.1774 63.8423 42.5992 -8.42801 27.4619 48.2347 14.9477 25.7121 48.3904 3.09452 25.896 48.4757 42.6645 36.5214 48.0598 47.7344 49.638 47.1827 40.5551 62.2549 45.2372 -20.4769 63.1994 -50.3046 -27.628 60.1306 -51.1217 -8.33606 28.1588 -55.7549 41.6947 37.0493 -55.6696 46.1069 49.7648 -54.9594 39.661 61.5616 -52.9449 -28.2701 61.5994 42.6785 -21.096 64.5792 41.7131 -10.6093 65.5757 41.2676 1.58052 66.8139 41.2357 -20.6037 30.6107 47.064 -27.9498 36.4747 46.6355 -32.0076 43.3195 45.7562 -33.3289 50.1288 44.8568 -9.84192 26.1273 47.153 -32.1367 56.4888 43.8329 40.1118 30.266 46.5139 29.9349 25.9004 46.5236 16.4046 23.9305 47.0581 3.12344 24.0639 47.2805 46.8217 35.817 46.5762 50.7757 42.2756 46.3478 52.0569 49.3051 45.7651 50.1277 56.399 44.7582 45.0638 62.5551 43.5645 13.7088 68.7742 41.1082 26.4851 69.2584 41.2994 37.1171 66.9377 42.3456 1.53827 66.2289 -48.7276 -11.1349 65.489 -48.6957 -21.7418 64.0098 -49.2903 -29.2399 60.7943 -50.2557 -33.7448 49.2984 -52.3954 -32.2894 43.1438 -53.1362 -27.8334 36.8602 -53.862 -20.3917 31.2343 -54.2831 -10.0503 26.5855 -54.5085 -32.8298 55.3737 -51.4331 2.729 24.1781 -54.8289 15.8893 23.9164 -54.731 29.5034 26.0458 -54.0829 39.6795 30.5618 -53.8806 46.253 36.21 -53.7901 50.0128 42.5536 -53.5439 51.139 49.2547 -52.9597 49.321 55.8341 -52.0848 44.6241 61.6202 -51.0127 37.1431 65.7944 -49.8316 26.732 68.0261 -48.7847 13.6339 67.8667 -48.6371</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2108\" offset=\"0\" source=\"#LOD3spShape-lib-positions-array\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"LOD3spShape-lib-normals\" name=\"normal\">\r\n\t\t\t\t\t<float_array count=\"6870\" id=\"LOD3spShape-lib-normals-array\">-0.192109 -0.934569 0.299458 -0.06315 -0.993623 0.093407 -0.038767 -0.993005 0.111528 -0.11695 -0.921313 0.370816 -0.085264 -0.993927 0.06957 -0.25821 -0.942076 0.214058 -0.305238 -0.944237 0.123473 -0.103012 -0.993873 0.04007 -0.109849 -0.993698 0.02232 -0.319871 -0.945464 0.061492 0.322015 -0.653105 0.68539 0.238016 -0.809438 0.536805 0.39559 -0.829362 0.394547 0.547107 -0.665777 0.50736 0.149283 -0.925897 0.34703 0.227375 -0.943129 0.242504 -0.182106 -0.7902 0.585167 -0.310544 -0.820667 0.479654 -0.418246 -0.841388 0.342252 -0.407245 -0.671943 0.618582 -0.544891 -0.711903 0.443045 -0.234371 -0.618101 0.750347 -0.474249 -0.857348 0.200104 -0.472515 -0.875412 0.101901 -0.601129 -0.750567 0.274396 -0.593419 -0.791427 0.146617 0.282256 -0.953514 0.105559 0.497204 -0.845385 0.195227 0.680184 -0.678639 0.277127 0.475425 -0.378716 0.794069 0.394699 -0.508097 0.765539 0.651796 -0.507567 0.563506 0.728714 -0.35445 0.585953 -0.280085 -0.456993 0.844222 -0.472084 -0.52749 0.706322 -0.629949 -0.5896 0.505505 -0.525528 -0.402813 0.749375 -0.688269 -0.483465 0.540877 -0.345696 -0.333643 0.877027 0.797494 -0.502759 0.333521 0.868857 -0.332163 0.36709 0.779236 -0.208323 0.591094 0.556733 -0.232343 0.797537 0.611419 -0.086952 0.786515 0.805975 -0.07802 0.586786 0.901017 -0.198547 0.385677 0.912954 -0.073233 0.401437 0.587309 0.31693 0.74473 0.626298 0.112282 0.771455 0.807598 0.10215 0.580819 0.767563 0.296279 0.568389 0.905959 0.097128 0.412074 0.868972 0.273148 0.412646 0.369046 0.664292 0.650016 0.498279 0.502362 0.706648 0.692864 0.459155 0.555982 0.584348 0.597963 0.548615 0.813067 0.415121 0.408163 0.751114 0.515121 0.41289 0.19627 0.766932 0.610977 0.270011 0.7156 0.644213 0.477417 0.672112 0.565984 0.38089 0.730939 0.56626 0.665617 0.613839 0.424448 0.5601 0.712938 0.42191 -0.142237 0.892596 0.427833 -0.115435 0.801937 0.586149 -0.145778 0.823148 0.548795 -0.183731 0.901347 0.392196 -0.170598 0.892172 0.418242 -0.198923 0.94046 0.275618 -0.083913 0.784617 0.614276 -0.104776 0.836925 0.537195 -0.07128 0.762805 0.642687 -0.083732 0.95816 0.273711 -0.152017 0.963903 0.218593 -0.043758 0.995476 0.084341 0.11433 0.983142 0.142691 -0.188565 0.971095 0.146345 -0.153667 0.986837 0.050398 -0.277878 0.955105 0.102752 -0.278528 0.959779 0.035299 -0.266228 0.943946 0.195163 -0.494465 0.642119 0.585822 -0.123678 0.744163 0.656449 -0.094312 0.919596 0.381378 -0.521981 0.776809 0.352284 0.287464 0.72515 0.625717 0.35104 0.866307 0.355363 -0.085399 0.659129 0.747166 0.224013 0.689809 0.688464 -0.41145 0.564912 0.715251 -0.896437 0.304297 0.322186 -0.755967 0.475931 0.449448 -0.804069 0.52634 0.276477 -0.929837 0.307416 0.202235 -0.651421 0.428251 0.626301 -0.812838 0.261118 0.520685 -0.700828 0.14352 0.698743 -0.528973 0.340042 0.777534 -0.323564 0.505566 0.799819 -0.384671 0.217738 0.897005 -0.26768 0.410295 0.871783 -0.51729 -0.021456 0.855541 -0.703157 -0.1848 0.686599 -0.802326 -0.033833 0.595927 -0.877917 -0.14451 0.456484 -0.806047 -0.267053 0.528176 -0.89323 0.116397 0.434273 -0.92976 -0.00252 0.368157 -0.693473 -0.636086 0.338364 -0.705373 -0.68381 0.186692 -0.75587 -0.532488 0.380943 -0.796546 -0.566484 0.211211 -0.077417 -0.240522 0.967551 -0.089798 -0.134723 0.986806 -0.168487 -0.121841 0.978145 -0.138523 -0.221426 0.965289 -0.113525 -0.038943 0.992772 -0.195995 -0.017488 0.980449 -0.602195 -0.290799 0.743503 -0.742439 -0.374894 0.555193 -0.432918 -0.200289 0.878901 -0.818103 -0.413906 0.399236 -0.879805 -0.419705 0.22314 -0.8832 -0.285146 0.372357 -0.940384 -0.263381 0.215195 -0.205308 0.092751 0.974293 -0.12459 0.080228 0.988959 -0.122228 0.178941 0.976238 -0.196017 0.189929 0.962031 -0.04789 0.778827 0.625407 -0.065661 0.712179 0.698921 -0.086279 0.666075 0.740878 -0.054107 0.736647 0.674109 0.32735 0.918436 0.222077 0.038245 0.947019 0.318892 -0.067436 0.912058 0.404479 0.299059 0.868082 0.396229 0.020777 0.864061 0.502958 0.601008 0.74983 0.276665 0.10013 0.787789 0.607752 0.137884 0.80072 0.582954 0.293157 0.782715 0.549014 0.251535 0.793724 0.553834 0.033793 0.760625 0.648311 0.012829 0.792843 0.609291 -0.001462 0.805911 0.592035 0.470195 0.782277 0.408607 0.406592 0.824118 0.394351 -0.228092 0.919665 0.319673 -0.149194 0.877198 0.45636 0.221981 0.775644 0.590848 0.477153 0.718896 0.505483 0.642223 0.702693 0.306223 -0.941954 -0.151996 0.299365 -0.977272 -0.097629 0.18817 -0.969667 0.027366 0.242894 -0.984274 0.065087 0.16422 -0.081923 0.660823 0.746057 -0.143863 0.635643 0.75846 -0.950758 0.179022 0.253002 -0.969441 0.180582 0.166057 0.433741 0.791171 0.431182 0.286611 0.730746 0.619568 0.635928 0.49935 0.588427 0.410194 0.41588 0.811655 -0.030936 0.832088 0.553781 -0.063268 0.738092 0.671727 -0.236437 0.785277 0.572222 -0.098454 0.365739 0.925495 -0.356861 0.365039 0.859882 0.116456 0.704283 0.700303 0.160354 0.369389 0.915335 -0.380395 0.81813 0.431235 -0.491132 0.823545 0.283836 -0.59916 0.341103 0.724332 -0.798743 0.301719 0.520552 0.047573 -0.992573 0.111966 0.069354 -0.994739 0.075398 0.015592 -0.990695 0.135202 0.028503 -0.991144 0.129693 0.0864 -0.911356 0.402449 0.046371 -0.905885 0.420977 -0.018844 -0.991895 0.125654 -0.057065 -0.909815 0.411073 0.087743 -0.99576 0.027619 0.126144 -0.779499 0.613571 0.067151 -0.760559 0.645787 0.153713 -0.607983 0.778928 0.075394 -0.57677 0.81342 -0.085238 -0.760064 0.644234 -0.102578 -0.566247 0.817827 0.045094 -0.227711 0.972684 0.047131 -0.133922 0.98987 0.005657 -0.158915 0.987276 0.006376 -0.238835 0.971039 0.058631 -0.040878 0.997442 0.002975 -0.056704 0.998387 0.127635 -0.116289 0.98498 0.152279 -0.014755 0.988227 0.100619 -0.20516 0.973543 0.059288 0.068169 0.995911 -0.006745 0.055506 0.998436 0.05032 0.180626 0.982264 -0.021925 0.163036 0.986376 0.163736 0.099069 0.981517 0.156175 0.220652 0.962768 0.020684 0.317842 0.947918 -0.050294 0.316731 0.947181 -0.025411 0.533931 0.845146 -0.086911 0.5228 0.848014 0.127716 0.356862 0.925385 0.071441 0.516034 0.853584 -0.061054 0.766638 0.63917 0.078289 0.741306 0.666586 0.208508 0.671416 0.711144 0.313289 0.499706 0.807554 0.378689 0.310587 0.871855 0.400342 0.118619 0.908656 0.381543 -0.070384 0.921668 0.331083 -0.22771 0.915714 0.260306 -0.364971 0.893889 0.178111 -0.473128 0.862802 0.071351 -0.485088 0.87155 -0.127917 -0.411323 0.902469 -0.217134 -0.272275 0.9374 -0.28612 -0.114565 0.95132 -0.297833 0.014133 0.954513 -0.259212 0.153056 0.953616 -0.214461 0.319798 0.922895 -0.151901 0.528641 0.835144 -0.103669 0.295387 0.949736 -0.165776 0.313209 0.935104 -0.083675 0.492895 0.866056 -0.119834 0.470121 0.874429 -0.087588 0.774585 0.626376 -0.256922 -0.123444 0.958516 -0.282852 0.013185 0.959073 -0.378724 -0.276752 0.883163 -0.438423 -0.070607 0.895991 -0.437651 -0.063548 0.896897 -0.390678 -0.27619 0.878117 -0.251518 -0.431278 0.866451 -0.276371 -0.456203 0.845871 -0.19905 -0.303218 0.9319 -0.274611 0.135247 0.951996 -0.249887 0.293965 0.922573 -0.442099 0.099565 0.891423 -0.416837 0.295755 0.859521 -0.412837 0.32408 0.851198 -0.438351 0.113033 0.891668 0.156401 -0.497394 0.85331 0.061408 -0.535686 0.842181 0.119454 -0.452018 0.883974 0.032667 -0.468626 0.882793 0.050048 -0.559259 0.827481 0.150699 -0.524664 0.837865 0.208739 -0.361482 0.908713 0.238743 -0.413555 0.878621 0.232419 -0.391651 0.890276 -0.125806 -0.451337 0.883441 -0.128663 -0.465603 0.875591 -0.150994 -0.530967 0.833832 0.284031 -0.235212 0.929517 0.269401 -0.199777 0.942079 0.293517 -0.238502 0.925724 0.286186 -0.032306 0.957629 0.310905 -0.056264 0.948774 0.312743 -0.062252 0.947795 0.322676 0.120164 0.938851 0.286685 0.125421 0.94978 0.312932 0.123775 0.941676 0.279716 0.294166 0.913907 0.303905 0.313656 0.89959 0.309104 0.311381 0.898608 0.037576 0.808415 0.587412 0.169817 0.698638 0.69503 -0.000992 0.780213 0.625514 0.138259 0.681294 0.718834 0.161529 0.715447 0.679738 0.018778 0.826522 0.562592 -0.09996 0.801388 0.589733 -0.098648 0.85295 0.512587 -0.076807 0.814801 0.574631 0.262922 0.511395 0.818137 0.242579 0.49202 0.836105 0.262895 0.521513 0.811733 -0.185749 0.495789 0.848346 -0.322481 0.52883 0.785076 -0.160242 0.722224 0.672841 -0.146317 0.772841 0.617501 -0.312096 0.577251 0.754571 -0.076559 0.797941 0.597853 -0.071594 0.840171 0.537576 -0.107376 0.806238 0.581766 -0.112987 0.848782 0.51653 -0.287568 -0.01818 0.957588 -0.246849 -0.15606 0.956405 -0.173556 -0.290795 0.940913 -0.283237 0.22681 0.931844 -0.297529 0.100463 0.949412 0.014537 -0.330354 0.943745 0.072188 -0.329168 0.941508 0.150177 -0.268878 0.951394 -0.091484 -0.341365 0.935468 0.211928 -0.141481 0.96699 0.233591 -0.009434 0.972289 0.24083 0.120366 0.963075 0.233787 0.260424 0.936762 0.102888 0.613185 0.78321 -0.030399 0.694019 0.719314 -0.098708 0.675427 0.730791 0.204918 0.428836 0.879834 -0.132475 0.557408 0.819602 -0.232943 0.388015 0.89173 -0.075386 0.634728 0.769049 -0.09685 0.652599 0.751489 -0.092397 0.509504 0.855493 -0.081276 0.316551 0.945087 -0.068265 0.172012 0.982727 -0.054553 0.065325 0.996372 -0.043341 -0.055449 0.99752 -0.033383 -0.160096 0.986537 -0.028874 -0.24536 0.969002 -0.033304 -0.336054 0.941254 -0.042357 -0.467717 0.882863 -0.046567 -0.556118 0.829798 -0.037674 -0.519487 0.853647 -0.022566 -0.457423 0.888963 -0.012961 -0.556886 0.830488 -0.007732 -0.753873 0.656974 -0.003792 -0.90729 0.420489 -0.001149 -0.991208 0.132304 0.512335 -0.857386 0.049017 0.70555 -0.704425 0.077354 0.297092 -0.954566 0.023258 0.84286 -0.528889 0.09931 0.930258 -0.348816 0.113782 0.968103 -0.21837 0.122848 0.986591 -0.093131 0.134031 0.985676 0.081564 0.147617 0.95281 0.259757 0.157095 0.894834 0.417704 0.157465 0.844113 0.514896 0.149516 0.774064 0.618654 0.134508 0.673761 0.729252 0.119321 0.59429 0.795832 0.116061 0.5205 0.84585 0.116695 0.525074 0.841884 0.124616 0.765546 0.621669 0.16573 0.097097 -0.995263 0.004896 -0.565407 0.809464 0.158374 -0.611313 0.789337 0.056957 -0.920895 0.236324 0.310006 -0.979363 0.144989 0.140806 -0.738247 -0.362498 0.568846 -0.830423 -0.418752 0.367485 -0.844491 -0.498578 0.195588 -0.637358 -0.672695 0.37584 -0.668066 -0.709833 0.223216 -0.553902 -0.635855 0.537476 -0.346188 -0.291036 0.891881 -0.564224 -0.330618 0.756534 -0.436173 -0.617389 0.654663 -0.266348 -0.628612 0.730688 -0.097978 -0.251576 0.962865 -0.086895 -0.643915 0.760146 0.176816 -0.222898 0.958672 0.120695 -0.699248 0.704617 0.465192 -0.190422 0.864486 0.373032 -0.681742 0.629345 0.749171 -0.141411 0.647105 0.57208 -0.682024 0.455597 0.984143 0.023025 0.175875 0.738366 -0.656556 0.154109 -0.095635 0.76965 0.631263 -0.315057 -0.948903 0.017974 -0.110306 -0.993886 0.004918 -0.457702 -0.888528 0.032039 -0.589111 -0.807168 0.037792 0.510058 -0.858624 -0.051043 0.70623 -0.703125 -0.082786 0.294439 -0.955391 -0.023102 0.843862 -0.525198 -0.109834 0.928966 -0.346434 -0.130403 0.964683 -0.219414 -0.145751 0.981881 -0.104853 -0.157847 0.98501 0.058597 -0.162241 0.95819 0.238399 -0.158234 0.897823 0.414043 -0.149942 0.829346 0.538002 -0.150797 0.747675 0.644543 -0.159833 0.659153 0.734437 -0.161615 0.265044 0.963485 0.038059 0.039034 0.999086 0.017437 0.018622 0.997848 -0.062875 0.244836 0.962544 -0.116463 -0.130658 0.991351 0.012349 -0.138096 0.990164 -0.022449 -0.273293 0.96189 0.008822 -0.274255 0.961657 0.000421 -0.053579 0.998129 0.029453 -0.515915 0.855204 0.049583 0.344116 0.89883 -0.271457 -0.055876 0.956544 -0.286182 0.365283 0.930753 0.01632 -0.828131 0.557888 0.054409 -0.952772 0.299578 0.049783 -0.711727 -0.701459 0.037422 -0.905755 -0.418034 -0.069676 -0.8121 -0.578723 -0.074656 -0.818385 -0.573492 0.036778 -0.910268 -0.412077 0.040054 0.709552 0.701423 0.067393 0.515618 0.854187 0.067105 0.52626 0.835416 -0.158524 0.711562 0.67733 -0.186822 0.587221 0.793907 -0.157743 0.504751 0.849895 -0.151344 0.655685 0.754174 0.036026 0.627882 0.742251 -0.234154 -0.995755 -0.076042 0.051857 -0.966252 -0.253074 0.048064 -0.995208 0.084624 0.048994 -0.98245 0.180559 0.046801 0.500696 0.849415 -0.166726 0.699452 0.674292 -0.236847 -0.644888 0.764208 0.010314 -0.658085 0.75262 0.022063 -0.996997 0.052783 0.056672 -0.999004 0.031144 0.031952 0.095211 -0.995451 -0.003478 -0.828476 -0.551185 0.099113 -0.83354 -0.552229 0.015914 -0.680841 -0.722996 0.117184 -0.70438 -0.709823 0.000289 0.942473 0.130036 -0.307954 0.760792 -0.603232 -0.239387 -0.191598 -0.926128 -0.324926 -0.11404 -0.910397 -0.397707 -0.034523 -0.992382 -0.118262 -0.056307 -0.993628 -0.097639 -0.08229 -0.99447 -0.065257 -0.263919 -0.93806 -0.224478 -0.301453 -0.945273 -0.124839 -0.10268 -0.994176 -0.032728 -0.109842 -0.993816 -0.016268 -0.306215 -0.95011 -0.059356 0.319117 -0.647606 -0.691933 0.534285 -0.666968 -0.519319 0.385251 -0.83007 -0.403195 0.239592 -0.805165 -0.542499 0.228594 -0.939199 -0.256224 0.158278 -0.918607 -0.362089 -0.178484 -0.75672 -0.628902 -0.309497 -0.797477 -0.51792 -0.420841 -0.831771 -0.362009 -0.538657 -0.700909 -0.467519 -0.394197 -0.64598 -0.653696 -0.222745 -0.580396 -0.783278 -0.463953 -0.858375 -0.218951 -0.461429 -0.880375 -0.109649 -0.599801 -0.782405 -0.167575 -0.59309 -0.744341 -0.306921 0.280118 -0.952342 -0.120743 0.489162 -0.845976 -0.212238 0.674722 -0.67782 -0.292079 0.467443 -0.364911 -0.805194 0.712309 -0.345361 -0.611018 0.641575 -0.494023 -0.586791 0.39121 -0.489528 -0.779305 -0.257887 -0.431057 -0.864687 -0.450347 -0.520374 -0.725533 -0.610796 -0.588414 -0.529809 -0.665056 -0.488467 -0.56489 -0.505193 -0.408993 -0.759938 -0.312897 -0.314982 -0.896037 0.796286 -0.495922 -0.346396 0.865739 -0.328626 -0.377493 0.760432 -0.204661 -0.616326 0.545204 -0.224716 -0.807623 0.593644 -0.079984 -0.800743 0.783915 -0.086134 -0.614865 0.896384 -0.199742 -0.395726 0.906271 -0.095045 -0.411874 0.551478 0.253954 -0.794594 0.749758 0.226635 -0.62169 0.783116 0.056593 -0.619295 0.5969 0.085909 -0.797703 0.90526 0.04554 -0.42241 0.880719 0.218398 -0.420282 0.336343 0.599609 -0.726183 0.572035 0.582293 -0.577677 0.679985 0.408785 -0.6087 0.461982 0.425407 -0.778204 0.822759 0.398489 -0.405308 0.73865 0.550111 -0.389581 0.158279 0.713924 -0.6821 0.37644 0.723509 -0.578643 0.467127 0.676077 -0.569835 0.228363 0.685665 -0.691168 0.648361 0.657528 -0.383777 0.564637 0.73282 -0.379684 -0.132948 0.895471 -0.424801 -0.16783 0.911023 -0.376656 -0.12755 0.841928 -0.524298 -0.095044 0.810733 -0.577649 -0.191234 0.937857 -0.289574 -0.161097 0.88789 -0.430929 -0.099619 0.831047 -0.547207 -0.068866 0.782563 -0.618751 -0.042804 0.75673 -0.652324 -0.106611 0.95728 -0.268792 0.061832 0.967519 -0.24512 -0.090989 0.984179 -0.152028 -0.171442 0.958937 -0.225938 -0.170146 0.982001 -0.081999 -0.195635 0.967138 -0.16239 -0.282706 0.95847 -0.037576 -0.282545 0.952356 -0.114834 -0.262642 0.936921 -0.230646 -0.457702 0.605028 -0.651498 -0.494691 0.715297 -0.493589 -0.076223 0.822259 -0.563986 -0.087936 0.702019 -0.706709 0.319664 0.765998 -0.557729 0.294833 0.694844 -0.655946 0.224172 0.682804 -0.695361 -0.063717 0.649517 -0.757673 -0.387084 0.558006 -0.734027 -0.896043 0.261582 -0.358722 -0.944002 0.274393 -0.183216 -0.810194 0.488173 -0.324457 -0.742944 0.435424 -0.508371 -0.645648 0.412332 -0.642745 -0.811086 0.243382 -0.531887 -0.699157 0.136155 -0.701885 -0.530892 0.331786 -0.77979 -0.30426 0.511436 -0.803654 -0.248492 0.408629 -0.878222 -0.387347 0.198969 -0.900208 -0.511763 -0.033699 -0.858465 -0.688173 -0.178311 -0.703294 -0.790784 -0.260454 -0.553917 -0.872048 -0.112083 -0.476413 -0.794394 -0.013341 -0.607256 -0.920109 0.042291 -0.389372 -0.884532 0.127633 -0.44868 -0.676964 -0.636735 -0.369174 -0.702442 -0.678564 -0.214769 -0.78028 -0.57775 -0.239514 -0.733839 -0.540713 -0.41123 -0.092147 -0.181509 -0.979062 -0.144369 -0.166467 -0.975421 -0.159435 -0.079334 -0.984015 -0.094565 -0.065989 -0.993329 -0.168501 -0.000101 -0.985701 -0.104493 0.01153 -0.994459 -0.726284 -0.369697 -0.579514 -0.588438 -0.292192 -0.753899 -0.407291 -0.20071 -0.890971 -0.869486 -0.42871 -0.245363 -0.799739 -0.41079 -0.4378 -0.938755 -0.260153 -0.225963 -0.869609 -0.274794 -0.410206 -0.170534 0.079532 -0.982137 -0.161151 0.169743 -0.972223 -0.090409 0.181448 -0.979236 -0.10396 0.092065 -0.990311 -0.061474 0.779505 -0.623373 -0.054952 0.743789 -0.666152 -0.103099 0.66864 -0.736404 -0.089248 0.714186 -0.694242 0.313646 0.879357 -0.358269 0.027421 0.941997 -0.334499 -0.080622 0.891857 -0.445073 0.022338 0.831019 -0.555795 0.289168 0.850636 -0.43909 0.556005 0.699289 -0.449281 0.050624 0.773712 -0.631511 0.231632 0.808083 -0.541616 0.288863 0.771715 -0.566581 0.103245 0.744807 -0.659244 0.031939 0.724546 -0.688486 0.003268 0.749951 -0.661485 -0.026171 0.792703 -0.609046 0.482137 0.794981 -0.36817 0.398207 0.851469 -0.34122 -0.221077 0.901734 -0.371484 -0.143622 0.850839 -0.505417 0.234374 0.743588 -0.626216 0.46128 0.703836 -0.540218 0.562017 0.649813 -0.511741 -0.977474 -0.09123 -0.19032 -0.936551 -0.12725 -0.326619 -0.984003 0.070682 -0.163533 -0.961337 0.050417 -0.270718 -0.12138 0.620783 -0.774529 -0.05521 0.647511 -0.760053 -0.944461 0.162933 -0.285388 -0.972855 0.171501 -0.15537 0.237565 0.800499 -0.55024 0.395586 0.847721 -0.353385 0.35269 0.570432 -0.741766 0.568049 0.652016 -0.502191 -0.054488 0.806873 -0.588206 -0.221404 0.774347 -0.592762 -0.082141 0.728443 -0.680164 -0.34248 0.449493 -0.825023 -0.1184 0.432945 -0.893611 0.102358 0.477975 -0.872389 0.062161 0.735187 -0.675008 -0.351621 0.822971 -0.446186 -0.453177 0.839825 -0.298872 -0.753559 0.408132 -0.515341 -0.56556 0.457673 -0.686059 0.070662 -0.994095 -0.082354 0.053046 -0.991548 -0.1184 0.013209 -0.990078 -0.139895 0.042006 -0.899343 -0.435221 0.096965 -0.90473 -0.414802 0.032991 -0.99044 -0.133938 -0.056118 -0.897897 -0.436614 -0.016738 -0.990736 -0.134764 0.086464 -0.995644 -0.034877 0.061043 -0.750045 -0.658564 0.137198 -0.774505 -0.61751 0.069229 -0.578014 -0.813085 0.165722 -0.607498 -0.776841 -0.08926 -0.735213 -0.671934 -0.114239 -0.544747 -0.830783 0.019911 -0.230638 -0.972836 -0.030593 -0.214954 -0.976145 -0.045955 -0.097756 -0.994149 0.002659 -0.095509 -0.995425 -0.052141 0.011297 -0.998576 0.002127 0.01818 -0.999832 0.120697 0.01473 -0.99258 0.113372 -0.110702 -0.987366 0.096736 -0.223211 -0.969958 -0.055442 0.119889 -0.991238 -0.003618 0.136061 -0.990694 -0.057352 0.236947 -0.969828 -0.01353 0.263616 -0.964533 0.087309 0.294367 -0.951696 0.113304 0.153076 -0.981697 -0.061332 0.359879 -0.930981 -0.028754 0.371752 -0.927887 -0.069217 0.479884 -0.874597 -0.04309 0.485197 -0.873342 0.017067 0.479437 -0.87741 0.052641 0.398131 -0.915817 -0.034654 0.760876 -0.647972 0.07156 0.732098 -0.67743 0.191934 0.634425 -0.748777 0.303753 0.458556 -0.835141 0.384402 0.282027 -0.879031 0.419845 0.110042 -0.9009 0.406427 -0.062856 -0.911518 0.353955 -0.220425 -0.908916 0.281504 -0.354287 -0.89176 0.067511 -0.500136 -0.863311 0.193668 -0.469971 -0.861174 -0.14958 -0.414815 -0.897527 -0.228363 -0.298833 -0.926579 -0.288297 -0.161724 -0.943785 -0.298702 -0.022525 -0.954081 -0.190826 0.301532 -0.934165 -0.246409 0.126265 -0.960906 -0.15017 0.520238 -0.840715 -0.129702 0.309072 -0.942153 -0.066417 0.305119 -0.949995 -0.055085 0.462192 -0.885067 -0.090042 0.449004 -0.888981 -0.071733 0.766958 -0.637675 -0.283007 -0.028509 -0.958694 -0.281863 -0.191917 -0.940065 -0.351312 -0.084797 -0.932411 -0.309888 -0.241843 -0.919501 -0.329877 -0.256795 -0.908426 -0.371873 -0.083592 -0.924512 -0.244245 -0.370528 -0.896133 -0.261882 -0.399787 -0.878401 -0.239012 -0.350966 -0.905371 -0.228514 0.26963 -0.935457 -0.253264 0.114721 -0.960571 -0.387754 0.261515 -0.883887 -0.38213 0.068912 -0.921536 -0.395833 0.087229 -0.914171 -0.400411 0.295266 -0.867461 0.059717 -0.537384 -0.841221 0.170799 -0.490618 -0.854471 0.023673 -0.491984 -0.870282 0.138029 -0.482666 -0.864859 0.172547 -0.546798 -0.819292 0.048051 -0.585369 -0.809342 0.24535 -0.391127 -0.88703 0.271557 -0.425603 -0.863203 0.253362 -0.383231 -0.888224 -0.16392 -0.464478 -0.870282 -0.156074 -0.43633 -0.886147 -0.174103 -0.495914 -0.85074 0.311338 -0.234144 -0.921002 0.314452 -0.22765 -0.921573 0.331844 -0.253055 -0.908759 0.334948 -0.047443 -0.941041 0.358791 -0.06942 -0.930833 0.352034 -0.064094 -0.93379 0.370008 0.120956 -0.921121 0.325861 0.13785 -0.935314 0.365501 0.126808 -0.922133 0.293842 0.331419 -0.896559 0.345775 0.339247 -0.874843 0.349666 0.318511 -0.88107 0.181191 0.722006 -0.667741 0.050427 0.826013 -0.561391 0.124911 0.682336 -0.720288 -8.3e-005 0.771418 -0.636329 0.029371 0.862647 -0.504953 0.172441 0.753171 -0.634821 -0.088449 0.796983 -0.597491 -0.084759 0.878493 -0.470177 -0.056365 0.816918 -0.573992 0.28721 0.527283 -0.799677 0.229314 0.522426 -0.821271 0.28443 0.557632 -0.779838 -0.184783 0.47937 -0.857939 -0.159072 0.705689 -0.690434 -0.306838 0.513915 -0.801088 -0.313651 0.56677 -0.761837 -0.157757 0.765176 -0.624195 -0.073978 0.778021 -0.623867 -0.070331 0.835642 -0.544753 -0.087799 0.795672 -0.599331 -0.090591 0.859197 -0.503561 -0.232887 -0.144487 -0.961711 -0.244705 -0.029472 -0.96915 -0.189644 -0.261806 -0.946305 -0.251478 0.075314 -0.964928 -0.245154 0.195506 -0.949567 0.069738 -0.345456 -0.93584 -0.006898 -0.32309 -0.946343 0.169707 -0.300933 -0.938424 -0.116208 -0.315517 -0.941778 0.239122 -0.166926 -0.956533 0.255866 -0.011563 -0.966643 0.242809 0.152646 -0.957989 0.202267 0.315072 -0.927264 -0.032641 0.607102 -0.793953 0.060458 0.564272 -0.823372 -0.076278 0.598808 -0.797252 0.144831 0.45396 -0.879173 -0.202967 0.364176 -0.908945 -0.116061 0.523868 -0.843856 -0.061288 0.585836 -0.808109 -0.069247 0.590821 -0.803825 -0.06147 0.471147 -0.87991 -0.062087 0.339494 -0.938557 -0.069753 0.213116 -0.974534 -0.075711 0.106988 -0.991373 -0.074759 0.010224 -0.997149 -0.065915 -0.084862 -0.99421 -0.056359 -0.195476 -0.979088 -0.058264 -0.312594 -0.948098 -0.069962 -0.465689 -0.882179 -0.071195 -0.557949 -0.826815 -0.045754 -0.47841 -0.876944 -0.060646 -0.52652 -0.847997 -0.029989 -0.553187 -0.832517 -0.018388 -0.737572 -0.675018 -0.009087 -0.897441 -0.441041 -0.00158 -0.989993 -0.141109 -0.308322 -0.951065 -0.020322 -0.110713 -0.99381 -0.009215 -0.455221 -0.889796 -0.032191 -0.596471 -0.800898 -0.052761 -0.511407 0.823202 -0.246578 -0.952243 0.291325 -0.09145 -0.828387 0.538442 -0.154449 -0.712918 -0.697663 -0.070811 -0.964192 -0.256036 -0.069136 -0.99426 -0.077609 -0.073642 -0.993521 0.085088 -0.075342 -0.980403 0.180699 -0.07847 -0.618484 0.785248 -0.029371 -0.985065 0.143698 -0.094851 -0.540296 0.826158 -0.159823 -0.899944 0.302263 -0.314224 -0.858864 -0.489238 -0.15165 -0.711588 -0.680949 -0.173063 -0.767866 -0.270651 -0.580629 -0.848883 -0.383401 -0.36387 -0.671939 -0.656576 -0.342645 -0.602072 -0.614193 -0.510173 -0.382168 -0.137855 -0.913752 -0.607476 -0.181274 -0.773377 -0.492091 -0.563373 -0.66367 -0.327921 -0.53701 -0.777231 -0.13782 -0.132667 -0.981532 -0.138241 -0.548212 -0.824835 0.069946 -0.573914 -0.815923 0.11889 -0.117351 -0.985948 0.269629 -0.627654 -0.730309 0.418909 -0.085153 -0.904027 0.751138 0.018205 -0.659894 0.495888 -0.698066 -0.516526 -0.95931 0.034968 0.280182 -0.952229 0.032635 0.303636 -0.93144 0.167086 0.323268 -0.946666 0.171861 0.272557 -0.944846 0.025037 0.326557 -0.91551 0.150958 0.372899 -0.937578 0.012119 0.347564 -0.899986 0.12397 0.417919 -0.930687 -0.005661 0.365772 -0.885622 0.08696 0.456193 -0.924746 -0.02703 0.379623 -0.873384 0.042333 0.485189 -0.919713 -0.051956 0.389139 -0.863691 -0.010116 0.503919 -0.915891 -0.078133 0.39375 -0.857075 -0.064545 0.511132 -0.913924 -0.104134 0.392301 -0.854193 -0.116994 0.506623 -0.913686 -0.130204 0.385001 -0.854276 -0.170718 0.490986 -0.915221 -0.154787 0.372036 -0.856986 -0.224754 0.463745 -0.918574 -0.175545 0.354127 -0.862661 -0.271395 0.426803 -0.924357 -0.190998 0.330279 -0.874699 -0.302741 0.378484 -0.93489 -0.202027 0.291831 -0.900162 -0.32556 0.289342 -0.890596 -0.319641 0.323525 -0.930807 -0.199874 0.306022 -0.896 0.289458 0.336747 -0.918721 0.296141 0.261252 -0.872107 0.26593 0.410745 -0.848724 0.226438 0.477905 -0.827137 0.172709 0.534805 -0.80861 0.10747 0.578446 -0.794368 0.032855 0.606547 -0.785336 -0.046853 0.617294 -0.781515 -0.12666 0.610894 -0.781913 -0.208771 0.58739 -0.785856 -0.293485 0.544332 -0.793937 -0.361184 0.489091 -0.811021 -0.403504 0.423592 -0.835242 -0.430573 0.342022 -0.847345 0.403795 0.3449 -0.876998 0.412515 0.246384 -0.816114 0.373023 0.441375 -0.785473 0.321444 0.528872 -0.757102 0.251755 0.60284 -0.732492 0.167285 0.659903 -0.71285 0.071993 0.697612 -0.699448 -0.030237 0.714044 -0.693366 -0.135002 0.707826 -0.694705 -0.244186 0.676579 -0.700161 -0.36004 0.616559 -0.706167 -0.453566 0.543697 -0.723583 -0.510419 0.464651 -0.757493 -0.546167 0.357639 -0.786239 0.510828 0.347683 -0.822283 0.521471 0.227858 -0.748188 0.473296 0.464978 -0.710816 0.41044 0.571208 -0.676265 0.32557 0.66081 -0.646313 0.222825 0.729815 -0.622397 0.107069 0.775344 -0.605751 -0.016281 0.795488 -0.597541 -0.142104 0.789146 -0.599072 -0.273389 0.752576 -0.605625 -0.422009 0.67463 -0.607323 -0.542234 0.580639 -0.62045 -0.60942 0.493609 -0.663091 -0.648882 0.373178 -0.713977 0.609147 0.34522 -0.755821 0.6215 0.206088 -0.669772 0.565403 0.481378 -0.626414 0.492206 0.604433 -0.58635 0.393512 0.708055 -0.551603 0.274208 0.787746 -0.523909 0.140003 0.84019 -0.504656 -0.002861 0.863316 -0.494725 -0.148092 0.856339 -0.496885 -0.296649 0.81554 -0.511217 -0.470298 0.719359 -0.523448 -0.603062 0.601929 -0.54514 -0.6692 0.504969 -0.589688 -0.712391 0.380483 -0.632092 0.697412 0.337752 -0.679083 0.71125 0.181575 -0.582478 0.648166 0.490511 -0.533908 0.565768 0.62837 -0.489063 0.454778 0.744308 -0.450216 0.320826 0.833293 -0.419311 0.170384 0.891711 -0.397828 0.010371 0.917402 -0.386738 -0.152189 0.909545 -0.388906 -0.314579 0.865905 -0.416834 -0.497637 0.760662 -0.460989 -0.625959 0.629018 -0.542107 0.774681 0.32556 -0.593506 0.78981 0.15476 -0.487909 0.720672 0.492521 -0.434921 0.630341 0.64305 -0.3861 0.508756 0.769476 -0.343913 0.362223 0.866325 -0.310381 0.197869 0.929791 -0.287052 0.023243 0.957633 -0.274984 -0.154056 0.949026 -0.274153 -0.330443 0.903132 -0.301736 -0.514601 0.802584 -0.360883 -0.638403 0.679857 -0.445437 0.840329 0.308923 -0.50045 0.856542 0.126038 -0.387543 0.782319 0.487634 -0.331043 0.685354 0.648614 -0.279115 0.554987 0.783636 -0.234323 0.398047 0.886934 -0.198766 0.222238 0.954517 -0.174032 0.035606 0.984096 -0.161146 -0.153806 0.974872 -0.161623 -0.341915 0.925728 -0.183322 -0.527132 0.829774 -0.220903 -0.657095 0.720714 -0.343523 0.893833 0.288192 -0.401399 0.910874 0.095845 -0.282773 0.832684 0.476106 -0.223681 0.730476 0.645269 -0.169508 0.593188 0.787016 -0.122852 0.428085 0.895349 -0.085869 0.24334 0.966133 -0.060478 0.047525 0.997037 -0.048298 -0.151042 0.987347 -0.051169 -0.346801 0.936542 -0.071334 -0.536879 0.840638 -0.087789 -0.68823 0.720162 -0.21986 0.940431 0.259327 -0.28005 0.958152 0.059303 -0.156918 0.876718 0.454689 -0.095926 0.770248 0.630489 -0.040164 0.627316 0.777728 0.007734 0.455603 0.890149 0.046891 0.262808 0.963708 0.076503 0.059129 0.995315 0.087975 -0.141662 0.985998 0.082632 -0.346525 0.934394 0.066735 -0.543112 0.837004 0.044893 -0.70688 0.705907 -0.074449 0.972485 0.220751 -0.13589 0.990587 0.016451 -0.0105 0.907325 0.420298 0.052421 0.798072 0.600278 0.112271 0.651463 0.750327 0.17284 0.475296 0.862682 0.224622 0.286559 0.931359 0.237263 0.088989 0.967361 0.218281 -0.113 0.969322 0.208533 -0.342413 0.916116 0.208343 -0.548433 0.809824 0.177566 -0.726111 0.664254 0.072457 0.981536 0.17702 0.011184 0.999581 -0.026697 0.13045 0.91774 0.375149 0.17379 0.810665 0.559124 0.202259 0.677497 0.70717 0.281823 0.466274 0.838549 0.389486 0.279956 0.877454 0.38011 0.146887 0.913204 0.357385 -0.040932 0.93306 0.345941 -0.321259 0.881543 0.34413 -0.559385 0.754098 0.331752 -0.740685 0.584232 0.196145 0.971318 0.134422 0.140044 0.988072 -0.064045 0.22226 0.915547 0.335221 0.215212 0.826522 0.520139 0.485045 0.203691 0.850436 0.549186 0.085396 0.831326 0.51886 -0.274121 0.809717 0.494351 -0.559544 0.665228 0.486216 -0.716967 0.499552 0.288962 0.953069 0.090338 0.249176 0.963756 -0.09532 0.279421 0.910567 0.304618 0.388152 0.921065 0.031265 0.355698 0.926134 -0.125519 0.404067 0.903782 0.141097 0.68549 -0.217008 0.69499 0.702569 0.095581 0.705167 0.629523 -0.529053 0.569037 0.593718 -0.693079 0.408828 0.496683 0.867503 -0.027267 0.458279 0.875316 -0.154276 0.528047 0.848543 0.03378 0.806768 -0.152023 0.570977 0.808457 0.086821 0.582116 0.751952 -0.463847 0.468417 0.679141 -0.659907 0.321388 0.597185 0.799146 -0.068811 0.555473 0.811556 -0.181181 0.641605 0.76683 -0.017718 0.890943 -0.106367 0.441483 0.8665 0.068021 0.494522 0.874776 -0.373384 0.30879 0.812876 -0.546789 0.200637 0.713003 0.692155 -0.112017 0.675208 0.706006 -0.213658 0.760001 0.64795 -0.050575 0.881663 0.086627 0.463859 0.915057 -0.143088 0.377089 0.91943 -0.337729 0.201463 0.893271 -0.433495 0.118948 0.740476 -0.66906 0.063675 0.859379 -0.511092 0.015908 0.647012 -0.745143 -0.161672 0.622061 -0.770384 0.139818 0.519697 -0.840964 -0.150645 0.82048 0.555122 -0.136569 0.782459 0.574043 -0.241314 0.857424 0.511442 -0.057009 0.806681 0.536729 -0.247364 0.862468 0.496193 -0.099707 0.878972 0.473396 -0.057475 0.818208 0.516312 -0.252897 -0.95504 -0.087036 0.283414 0.458007 0.336509 0.822795 0.548647 0.436829 0.712858 0.498793 0.508214 0.702085 0.40895 0.438856 0.800103 0.458788 0.419381 0.783347 0.488579 0.295919 0.820806 0.338496 0.547557 0.765246 0.40128 0.540787 0.739273 0.447903 0.573978 0.685516 0.572577 0.090453 0.814846 0.659971 0.242585 0.711049 0.600793 0.356629 0.715446 0.507798 0.222804 0.832165 0.525407 0.175386 0.832579 0.592642 0.076696 0.801806 0.696495 -0.160757 0.699323 0.747071 -0.060562 0.66198 0.716368 0.089686 0.691935 0.643654 -0.044528 0.76402 0.679875 -0.004061 0.733317 0.751902 -0.071444 0.655392 0.836517 -0.293072 0.462977 0.828132 -0.230473 0.510959 0.762807 -0.199352 0.61513 0.753672 -0.259258 0.603957 0.803598 -0.130297 0.580735 0.857252 -0.175255 0.484153 0.916775 -0.199713 0.345889 0.913851 -0.163134 0.371839 0.958882 -0.051876 0.279022 0.954667 -0.015331 0.297282 0.878559 0.023718 0.477045 0.887732 -0.142315 0.437811 0.881622 0.374121 0.287709 0.786275 0.361357 0.501191 0.845764 0.203036 0.493417 0.938392 0.191581 0.287606 0.964699 0.141352 0.222208 0.919874 0.344658 0.187198 0.735833 0.601185 0.31165 0.66518 0.53777 0.518014 0.724119 0.464664 0.509645 0.811286 0.503396 0.297333 0.847399 0.503007 0.169996 0.757311 0.630422 0.170435 0.55095 0.766953 0.328993 0.550236 0.662384 0.508417 0.604139 0.603421 0.520479 0.650213 0.6874 0.32358 0.647232 0.739853 0.183595 0.52066 0.823219 0.226328 0.232539 0.84106 0.48841 0.333081 0.772484 0.540672 0.4542 0.75815 0.467879 0.390892 0.846896 0.360515 0.372475 0.869089 0.325495 0.285053 0.827495 0.483733 0.339781 0.673393 0.656575 0.238562 0.704887 0.668 0.320797 0.691569 0.647164 0.829927 0.324203 0.453996 0.78816 0.413058 0.456275 0.818961 0.437724 0.37108 0.868606 0.367447 0.332424 0.594766 0.761672 -0.257117 0.732865 0.586033 -0.345649 0.753901 0.533838 0.38295 0.862991 0.204761 0.461865 0.867214 0.193679 0.458725 0.940858 -0.000486 0.3388 0.908483 -0.022324 0.417326 0.966409 -0.169051 -0.193584 0.923393 -0.383468 0.01723 0.951149 0.102662 0.291162 0.867316 0.198019 0.456675 0.856872 0.261318 0.444391 0.920131 0.262219 0.290862 0.845974 0.375555 -0.378531 0.934245 0.115443 -0.337429 0.724297 0.540152 0.42852 0.705159 0.593618 0.387773 0.719293 0.595991 0.356949 0.405662 0.913937 -0.012545 0.486535 0.862055 -0.141935 0.71787 0.605721 0.343167 0.730039 0.584407 0.354276 0.725686 0.562032 0.396862 0.693853 0.591752 0.410363 0.217331 0.868422 0.445659 0.312452 0.932842 0.179389 0.629841 0.545507 0.552922 0.214362 0.527633 0.821981 0.173015 0.7023 0.690536 0.57713 0.459556 0.675077 0.602476 0.389152 0.696838 0.688167 0.493994 0.531411 0.689409 0.382203 0.615335 0.751692 0.33439 0.568456 0.797599 0.361585 0.482797 0.671211 0.364963 0.645196 0.411128 0.319273 0.853838 0.313319 0.402291 0.860228 0.718031 0.380064 0.58308 0.802641 0.402836 0.439876 0.786668 0.41629 0.455912 0.7261 0.396288 0.561903 0.493842 0.121551 0.861014 0.469657 0.240907 0.849345 0.710366 0.36318 0.602894 0.767343 0.380847 0.515888 0.773688 0.31236 0.551215 0.718919 0.257235 0.645744 0.615801 -0.251493 0.746687 0.530844 -0.044491 0.846301 0.775459 0.113009 0.621203 0.81328 0.246247 0.527199 0.846491 0.212923 0.487972 0.849483 0.012404 0.52747 0.842402 -0.47405 0.256193 0.735809 -0.426295 0.526173 0.762121 0.060604 0.644592 0.762121 0.060604 0.644592 0.670388 0.105094 0.734531 0.670388 0.105094 0.734531 0.53593 0.35712 0.765013 0.53593 0.35712 0.765013 0.519593 0.470857 0.712963 0.519593 0.470857 0.712963 0.592721 0.147272 0.791829 0.592721 0.147272 0.791829 0.539402 0.227876 0.810628 0.539402 0.227876 0.810628 0.838046 -0.041961 0.543984 0.838046 -0.041961 0.543984 0.805134 0.024108 0.592603 0.805134 0.024108 0.592603 0.458987 0.56981 0.681651 0.458987 0.56981 0.681651 0.36131 0.737053 0.571146 0.36131 0.737053 0.571146 0.930114 -0.106536 0.351481 0.930114 -0.106536 0.351481 0.880661 -0.11099 0.460561 0.880661 -0.11099 0.460561 0.320732 0.857422 0.402441 0.320732 0.857422 0.402441 0.44726 0.859353 0.247932 0.44726 0.859353 0.247932 0.95182 0.231775 0.200795 0.95182 0.231775 0.200795 0.964167 0.021103 0.264456 0.964167 0.021103 0.264456 0.579093 0.8006 0.153919 0.579093 0.8006 0.153919 0.697437 0.705567 0.12553 0.697437 0.705567 0.12553 0.814036 0.566095 0.129927 0.814036 0.566095 0.129927 0.890074 0.43096 0.148464 0.890074 0.43096 0.148464 0.029208 0.881474 -0.471328 0.029208 0.881474 -0.471328 0.096449 0.728365 -0.678368 0.096449 0.728365 -0.678368 0.4685 0.04873 -0.882118 0.4685 0.04873 -0.882118 0.638087 -0.253445 -0.727056 0.638087 -0.253445 -0.727056 0.178322 0.511529 -0.840559 0.178322 0.511529 -0.840559 0.316697 0.307225 -0.897394 0.316697 0.307225 -0.897394 -0.229597 0.97301 0.023188 -0.229597 0.97301 0.023188 -0.099111 0.961282 -0.257125 -0.099111 0.961282 -0.257125 0.690989 -0.552351 -0.466307 0.690989 -0.552351 -0.466307 0.614728 -0.774975 -0.146708 0.614728 -0.774975 -0.146708 -0.213285 0.674612 0.706689 -0.213285 0.674612 0.706689 -0.277125 0.880387 0.384865 -0.277125 0.880387 0.384865 0.522099 -0.831492 0.189823 0.522099 -0.831492 0.189823 0.41303 -0.701304 0.581016 0.41303 -0.701304 0.581016 0.016451 0.304495 0.952372 0.016451 0.304495 0.952372 -0.102423 0.482133 0.87009 -0.102423 0.482133 0.87009 0.321342 -0.449506 0.833477 0.321342 -0.449506 0.833477 0.240502 -0.251619 0.937468 0.240502 -0.251619 0.937468 0.177609 -0.048219 0.982919 0.177609 -0.048219 0.982919 0.113264 0.143803 0.983103 0.113264 0.143803 0.983103 0.856752 0.237426 0.457827 0.923385 0.210649 0.320917 0.807841 0.342573 0.479622 0.926355 0.306361 0.219111 0.893024 0.401372 0.203491 0.707489 0.350542 0.613661 0.690028 0.404138 0.600445 0.701459 0.296818 0.647962 0.79174 0.518629 0.322757 0.756722 0.567339 0.324806 0.829456 0.472735 0.297531 0.598529 0.538416 0.593188 0.611969 0.432342 0.662249 0.636119 0.597396 0.488334 0.661695 0.3349 0.670821 0.723255 0.374582 0.580165 0.790325 0.34767 0.504491 0.811959 0.371822 0.449969 0.863778 0.442517 0.24097 0.701135 0.600411 0.384599 0.932766 0.160597 0.322732 0.970845 0.170441 0.168552 0.883636 0.175716 0.433947 0.958137 0.275993 0.076165 0.918477 0.391142 0.058382 0.596042 0.268924 0.756581 0.631692 0.23949 0.737299 0.526233 0.296752 0.79688 0.713347 0.696389 0.078601 0.607873 0.785114 0.118686 0.815341 0.574919 0.068466 0.317442 0.747572 0.583409 0.328784 0.607429 0.72314 0.382484 0.824581 0.416859 0.421264 0.422347 0.802596 0.694449 0.183029 0.695875 0.790988 0.142639 0.594973 0.851498 0.154648 0.501034 0.88206 0.467139 0.061249 0.494106 0.834447 0.244044 0.898388 0.239427 0.368203 0.928433 0.290662 0.231361 0.927907 0.362185 0.088373 0.90613 0.422899 -0.009252 0.502343 -0.531378 -0.68212 0.481433 0.034979 -0.875785 0.821621 0.007587 -0.569984 0.601173 0.059321 -0.796914 0.288385 0.93379 -0.211824 0.988457 0.045901 -0.144378 0.606647 0.786641 -0.114787 0.631147 0.75431 -0.180748 0.972584 0.01879 -0.231792 0.50542 0.85821 -0.089584 0.979429 0.125423 -0.158074 0.681238 -0.704485 -0.199036 0.649817 -0.670326 -0.358331 0.486326 -0.865845 -0.117473 0.446328 -0.866561 -0.223303 0.749936 -0.639396 -0.169616 0.164446 0.814374 0.556554 0.230868 0.7458 0.624886 0.513037 0.656869 0.552553 0.434017 0.729299 0.528916 0.753221 0.48407 0.445347 0.753221 0.48407 0.445347 0.124146 -0.973254 0.193296 0.136691 -0.979344 0.149 0.136691 -0.979344 0.149 0.184839 -0.973906 0.131688 0.16227 -0.986484 -0.022769 0.212195 -0.968006 0.133929 0.212195 -0.968006 0.133929 0.404326 0.749489 0.524201 0.579587 0.654669 0.485269 0.579587 0.654669 0.485269 0.267339 0.835446 0.480167 0.245983 0.889628 0.38478 0.267339 0.835446 0.480167 0.316456 0.757992 0.570354 0.349573 0.870764 0.345787 0.299173 0.736411 0.60679 0.210334 0.763548 0.610536 0.173912 0.765408 0.619601 0.197207 0.7873 0.584182 0.208134 0.150701 0.966421 0.45413 0.145812 0.878922 0.34138 0.606573 0.718004 0.193961 0.656473 0.728987 0.702212 0.014831 0.711813 0.629702 0.408791 0.660579 0.464374 -0.299888 0.833321 0.195845 -0.470873 0.860188 0.247334 -0.957018 0.151467 0.40013 -0.846054 0.352263 0.156142 -0.842984 0.51478 0.487382 -0.796965 0.356799 0.24234 -0.955279 0.169453 0.220077 -0.968074 0.119991 0.144759 -0.978459 0.147185 0.183204 -0.982603 -0.03045 0.067622 -0.997704 0.003667 0.333609 0.885237 0.324131 0.26257 0.786829 0.558531 0.249027 0.818022 0.518484 0.310909 0.905688 0.288211 0.981618 -0.064667 0.179569 0.953472 -0.110057 0.280676 0.829047 -0.397145 0.393645 0.92859 0.156172 0.336647 0.777747 -0.421784 0.466056 0.769156 -0.579058 0.270354 0.995933 0.044395 0.078399 0.452986 -0.772336 0.445309 0.25562 -0.911562 0.322045 0.985612 -0.013881 -0.168452 0.7241 -0.689125 0.028032 0.669094 -0.721471 -0.178308 0.959852 -0.03757 -0.277979 0.142983 -0.970854 0.192352 0.080246 -0.996775 0.00032 0.399717 0.880195 0.255896 0.376418 0.74386 0.552252 0.932941 0.251988 0.257146 0.923519 0.376658 0.072404 0.341071 0.563945 0.752088 0.901143 0.06264 0.428972 0.473307 -0.704975 -0.528197 0.53861 0.034196 -0.841861 0.284747 -0.650038 -0.704536 0.28859 -0.717857 -0.633559 0.66476 -0.69131 -0.283167 0.687122 0.601648 -0.407288 0.19454 0.943367 -0.268726 0.142669 0.967481 -0.20887 0.158097 0.977372 -0.140534 0.267227 0.956959 -0.113221 0.206618 0.964826 -0.16254 0.111176 0.975912 -0.187714 0.29006 0.951394 -0.103509 0.197728 0.977642 -0.071559 0.133329 0.730763 0.669484 -0.021072 0.776457 0.629818 -0.048861 0.692427 0.719831 -0.267381 0.736738 0.621067 0.502201 -0.841758 -0.198082 0.347489 -0.823244 -0.44891 0.323269 -0.832159 -0.450565 0.365532 -0.909977 -0.195774 0.278989 -0.744812 -0.606152 0.310543 -0.724294 -0.615598 0.470573 -0.845704 0.251686 0.639991 -0.751749 0.159014 0.847528 -0.526779 -0.064814 0.931762 0.360605 -0.042234 0.731131 -0.37377 0.57074 0.545828 -0.440059 0.713036 0.28654 -0.807827 -0.515083 0.336227 -0.798398 -0.499512 0.390344 -0.778946 -0.490791 0.394888 -0.900382 -0.182694 0.453746 -0.877199 -0.156959 0.356802 -0.910855 -0.207449 -0.344161 0.695104 0.631176 -0.149439 0.640429 0.753338 -0.149043 0.665502 0.731364 -0.349826 0.693839 0.629452 -0.136209 0.702366 0.698663 -0.323407 0.705435 0.63069 0.682989 -0.682468 -0.260315 0.59895 -0.703991 -0.381648 0.629914 -0.656157 -0.415531 0.77097 -0.571238 -0.281588 0.426971 -0.693708 -0.580055 0.470882 -0.685627 -0.555145 0.547183 -0.735019 -0.400422 0.403878 -0.692278 -0.598025 0.639219 -0.729933 -0.242067 0.756317 -0.646196 0.102054 0.818345 -0.573567 0.036491 0.814869 -0.159464 0.557279 0.753505 -0.300809 0.584589 0.916322 -0.395282 -0.064085 -0.552229 0.717565 0.424433 -0.549898 0.723485 0.417351 -0.689114 0.695621 0.20306 -0.692124 0.693865 0.198787 -0.449937 0.772191 0.44864 -0.582332 0.776773 0.23982 0.4591 -0.736156 -0.497294 0.428557 -0.75507 -0.496193 0.470093 -0.756298 -0.455001 0.604445 -0.773438 -0.190894 0.573109 -0.784752 -0.236031 0.620477 -0.767507 -0.161065 -0.154659 0.830449 0.535196 -0.208047 0.933434 0.292262 0.839948 -0.488026 -0.237313 0.649751 -0.668884 -0.361136 0.686328 -0.685198 -0.243841 0.870409 -0.456272 -0.184943 0.113928 -0.971144 0.209524 0.420169 -0.778433 0.466369 0.36716 -0.763202 0.531711 -0.02591 -0.968892 0.246125 0.735247 0.502746 0.454597 0.760736 -0.231899 0.60622 0.709739 -0.164748 0.68493 0.677088 0.518341 0.522374 0.150157 0.985896 -0.073902 0.110758 0.979195 -0.170028 0.14924 0.977328 -0.150193 0.102024 0.980668 -0.166976 0.092901 0.976521 -0.194362 0.035026 -0.981694 0.187218 -0.094184 -0.972517 0.212932 -0.040179 -0.998571 0.035247 -0.134425 -0.988935 0.062742 0.104938 0.981244 -0.161707 0.151335 0.986059 -0.069173 0.069929 0.986197 -0.150086 0.095076 0.992657 -0.074781 -0.031932 -0.959846 0.278703 0.3959 -0.771292 0.498369 0.753955 -0.269659 0.599029 0.811465 0.345679 0.471202 0.245701 0.963498 -0.106314 0.226774 0.963215 -0.144187 -0.201856 -0.975954 0.082263 -0.144695 -0.963786 0.22401 0.238399 0.953876 -0.182445 0.263237 0.957272 -0.119739 0.137189 0.954008 0.266548 0.004047 0.860303 0.509766 -0.324412 0.82325 0.46585 -0.221133 0.946632 0.234497 0.552688 -0.819889 -0.14939 0.435697 -0.752668 -0.493618 0.365249 -0.701895 -0.611504 0.358271 0.298744 0.88453 0.369064 0.261778 0.891776 0.680582 -0.368671 0.633159 0.35026 0.27383 0.895732 -0.101362 0.652868 0.750659 -0.31403 0.712829 0.627104 0.528306 -0.819128 -0.223433 0.448996 -0.780542 -0.434921 0.341896 0.423686 0.838807 0.504935 0.340193 0.79329 0.181522 0.411952 0.892942 0.181522 0.411952 0.892942 0.465736 -0.606641 0.644264 -0.0363 0.939717 0.340021 0.06455 0.996125 -0.059741 -0.0363 0.939717 0.340021 0.286421 0.951044 -0.116095 0.288616 0.950349 -0.116354 0.275757 0.953921 -0.118292 0.150003 0.985457 -0.079833 -0.160278 0.98687 0.019962 -0.557805 0.804225 0.205125 -0.528811 0.837981 0.134713 -0.689987 0.699784 0.184985 -0.704052 0.684413 0.189445 -0.639015 0.750411 0.168948 -0.301208 0.951297 0.065638 0.321965 0.939617 -0.116016 0.978366 -0.179418 -0.103002 0.950511 -0.146462 -0.274005 0.864752 0.428163 -0.262451 0.86448 -0.440579 -0.242001 0.720676 -0.665351 -0.194768 0.631835 -0.756962 -0.166709 0.640249 -0.749264 -0.169365 0.627443 -0.760901 -0.165364 0.541996 -0.828837 -0.138816 0.434754 -0.894291 -0.105989 0.396475 -0.913174 -0.094449 0.3782 -0.921198 -0.091428 0.733887 0.635327 -0.240355 0.720343 0.687761 -0.089944 0.744559 0.62451 -0.235838 0.345736 0.9286 0.13479 0.993133 0.093733 0.070012 0.356159 0.925036 0.132136 0.187307 0.978163 -0.09007 0.502357 0.858922 0.099456 0.251333 0.962401 -0.103033 0.65335 -0.735934 0.17758 0.65112 0.755621 0.071276 0.96166 -0.25776 -0.093651 0.209729 0.846026 0.490157 0.369985 -0.806261 -0.461579 -0.486759 0.759504 0.431532 0.951681 0.185976 -0.24437 0.902737 0.332183 -0.273352 0.941165 0.315326 -0.121568 0.951681 0.185976 -0.24437 0.956675 0.290442 0.020395 0.999368 -0.03479 -0.007251 0.964422 0.229761 0.130768 0.952504 0.13236 0.274258 0.999368 -0.03479 -0.007251 0.940577 -0.003262 0.339566 0.985356 -0.047323 -0.163812 0.973149 -0.138935 0.183517 0.98634 -0.163979 0.015638 0.985356 -0.047323 -0.163812 0.800077 -0.569905 -0.187309 0.874318 -0.431977 -0.221278 0.945305 -0.32607 -0.008707 0.031586 -0.183913 0.982435 0.031586 -0.183913 0.982435 -0.030751 -0.950601 0.30889 -0.030751 -0.950601 0.30889 0.985137 -0.170059 0.024169 -0.138803 -0.672288 0.727161 -0.138803 -0.672288 0.727161 0.909257 -0.407951 -0.082632 0.909257 -0.407951 -0.082632 0.975975 0.172973 -0.132486 0.975975 0.172973 -0.132486 0.980139 0.18814 -0.062699 0.980139 0.18814 -0.062699 0.977763 -0.075286 0.195733 0.977763 -0.075286 0.195733 0.989301 -0.108793 0.097195 0.989301 -0.108793 0.097195 0.977445 0.124096 -0.170885 0.977445 0.124096 -0.170885 0.998153 0.056019 0.023506 0.998153 0.056019 0.023506 0.796335 -0.523715 0.302611 0.474101 -0.734714 0.485204 -0.961031 0.165053 0.221757 -0.966015 0.031778 0.256527 -0.974186 0.146597 0.171671 -0.972365 0.022683 0.232362 -0.984794 0.118521 0.127015 -0.97678 0.011602 0.213931 -0.992779 0.080892 0.088578 -0.980405 -0.006081 0.1969 -0.997692 0.034776 0.058321 -0.983084 -0.030932 0.180525 -0.999084 -0.01652 0.039467 -0.983546 -0.055798 0.171824 -0.996955 -0.071034 0.03217 -0.982323 -0.081459 0.168542 -0.991355 -0.12588 0.037019 -0.979425 -0.107879 0.170556 -0.982538 -0.178319 0.053122 -0.975168 -0.132497 0.177459 -0.97118 -0.224992 0.078667 -0.9699 -0.153567 0.188972 -0.957807 -0.263848 0.113978 -0.963903 -0.170188 0.204763 -0.939615 -0.29636 0.171153 -0.955655 -0.183417 0.230396 -0.916192 -0.318352 0.243403 -0.943673 -0.194814 0.26745 -0.940074 0.285894 0.18581 -0.959445 0.258862 0.111609 -0.975323 0.216319 0.04416 -0.986978 0.160325 -0.013014 -0.993968 0.093475 -0.057363 -0.996059 0.018754 -0.086686 -0.993227 -0.06055 -0.099163 -0.985628 -0.140582 -0.09367 -0.972899 -0.220345 -0.070116 -0.955697 -0.29262 -0.031897 -0.933885 -0.356815 0.023271 -0.904554 -0.412768 0.106793 -0.874187 -0.443341 0.198105 -0.904883 0.399162 0.14784 -0.930066 0.363832 0.051015 -0.950616 0.308169 -0.036885 -0.965592 0.235032 -0.111317 -0.974471 0.147814 -0.168987 -0.976979 0.05078 -0.207202 -0.973161 -0.05162 -0.224262 -0.963025 -0.155851 -0.219756 -0.94516 -0.263631 -0.192798 -0.918341 -0.367435 -0.147108 -0.884469 -0.46033 -0.076225 -0.846414 -0.531736 0.028979 -0.81683 -0.561478 0.132408 -0.856198 0.505244 0.107954 -0.886734 0.462178 -0.009715 -0.911564 0.394322 -0.116455 -0.92955 0.305236 -0.206801 -0.940103 0.199203 -0.276631 -0.942966 0.081326 -0.322801 -0.938215 -0.042948 -0.343377 -0.925514 -0.170798 -0.338011 -0.90304 -0.303133 -0.304351 -0.869126 -0.43109 -0.242446 -0.825613 -0.542663 -0.154533 -0.78679 -0.615366 -0.04782 -0.763783 -0.641746 0.069265 -0.795208 0.602633 0.06691 -0.830597 0.552504 -0.069627 -0.85928 0.473551 -0.193358 -0.879991 0.369951 -0.297914 -0.892055 0.246859 -0.378547 -0.895219 0.110198 -0.431786 -0.889617 -0.03377 -0.455457 -0.87547 -0.181874 -0.447743 -0.852671 -0.3311 -0.404135 -0.819795 -0.473097 -0.322669 -0.773161 -0.597383 -0.21297 -0.732323 -0.672114 -0.109388 -0.703802 -0.710148 0.018793 -0.723285 0.690084 0.025367 -0.762965 0.633675 -0.127835 -0.79508 0.544841 -0.266451 -0.818228 0.428382 -0.383395 -0.831653 0.290204 -0.47343 -0.835118 0.137002 -0.532737 -0.828804 -0.024239 -0.559013 -0.813771 -0.188224 -0.549862 -0.79107 -0.350428 -0.501406 -0.757687 -0.507139 -0.410755 -0.712161 -0.640658 -0.287028 -0.672656 -0.725938 0.143347 -0.641851 0.766661 -0.016075 -0.68527 0.704796 -0.183489 -0.720395 0.607414 -0.334782 -0.745674 0.479891 -0.46225 -0.760327 0.328783 -0.560182 -0.764125 0.161453 -0.624537 -0.757252 -0.014499 -0.652962 -0.740618 -0.191819 -0.643964 -0.713493 -0.368156 -0.596145 -0.67319 -0.539525 -0.505696 -0.633594 -0.66652 -0.392824 -0.552217 0.831757 -0.056883 -0.598779 0.765354 -0.236001 -0.636491 0.660838 -0.397708 -0.663675 0.524103 -0.533716 -0.679467 0.362301 -0.638015 -0.683616 0.18334 -0.706439 -0.676308 -0.004709 -0.736604 -0.658096 -0.193709 -0.72759 -0.624976 -0.385418 -0.678866 -0.57331 -0.567527 -0.590956 -0.539712 -0.669892 -0.509859 -0.455829 0.884817 -0.096532 -0.504906 0.814845 -0.284776 -0.544771 0.704701 -0.454557 -0.573584 0.560728 -0.597148 -0.59041 0.390539 -0.706325 -0.594941 0.202476 -0.777849 -0.58738 0.005005 -0.809296 -0.568315 -0.193377 -0.799765 -0.531724 -0.399254 -0.746904 -0.472063 -0.588647 -0.65624 -0.438252 -0.663694 -0.606173 -0.336649 0.931055 -0.140727 -0.387856 0.858178 -0.336301 -0.429627 0.743452 -0.512543 -0.459974 0.593597 -0.660353 -0.477869 0.416607 -0.773356 -0.482921 0.221168 -0.847273 -0.475295 0.016124 -0.879678 -0.455543 -0.189817 -0.869741 -0.417917 -0.406061 -0.812687 -0.353552 -0.60422 -0.714086 -0.307968 -0.666598 -0.678825 -0.193714 0.962913 -0.187815 -0.246267 0.8884 -0.387424 -0.288613 0.77069 -0.568101 -0.317008 0.616998 -0.720292 -0.324374 0.435579 -0.839674 -0.320365 0.248902 -0.91401 -0.326185 0.041175 -0.944409 -0.317893 -0.181748 -0.930544 -0.279515 -0.404386 -0.870829 -0.213288 -0.614544 -0.759503 -0.156721 -0.682515 -0.713871 -0.046463 0.971992 -0.230375 -0.103325 0.898972 -0.425645 -0.164362 0.783516 -0.59924 -0.218293 0.643744 -0.733446 -0.220032 0.426957 -0.877094 -0.163378 0.257767 -0.952294 -0.189104 0.091231 -0.97771 -0.196106 -0.137994 -0.970824 -0.15848 -0.395997 -0.904473 -0.068774 -0.626707 -0.776214 0.011498 -0.702817 -0.711278 0.080842 0.962059 -0.260588 -0.004368 0.897342 -0.441313 -0.108637 0.80053 -0.589364 -0.077282 0.160772 -0.983961 -0.047366 -0.005136 -0.998864 -0.055321 -0.376835 -0.924627 0.024205 -0.64051 -0.767568 0.122657 -0.746286 -0.654227 0.182989 0.944565 -0.272601 0.060296 0.892968 -0.446064 0.298773 0.913904 -0.274797 0.253313 0.891687 -0.375137 0.114854 -0.338324 -0.933994 0.102232 0.013353 -0.994671 0.151765 -0.614693 -0.774028 0.247572 -0.789545 -0.561539 0.422501 0.861523 -0.281553 0.416333 0.839555 -0.34902 0.37199 -0.274879 -0.886603 0.353485 0.017625 -0.935274 0.378321 -0.507369 -0.774242 0.386435 -0.730111 -0.563565 0.530382 0.793788 -0.297652 0.540498 0.759214 -0.362568 0.588887 -0.200332 -0.782994 0.56861 0.014756 -0.822475 0.582449 -0.344028 -0.736476 0.575726 -0.569224 -0.586961 0.65241 0.687716 -0.318445 0.658927 0.642592 -0.391012 0.527988 0.032741 -0.848621 0.572271 -0.222348 -0.789346 0.647447 -0.270239 -0.712589 0.71954 -0.352064 -0.598592 0.761452 -0.51329 -0.395884 0.588683 -0.724004 -0.359542 0.425419 -0.825843 -0.370137 0.75829 0.548346 -0.35258 0.752446 0.495489 -0.433954 0.762878 0.455469 -0.458873 0.774527 0.480972 -0.410821 -0.059483 0.299655 -0.952191 -0.090596 0.399221 -0.912368 0.036545 0.471124 -0.881309 0.07364 0.399264 -0.913874 -0.030114 0.266255 -0.963432 -0.038844 0.381241 -0.923659 -0.13284 0.509742 -0.85001 -0.066453 0.503298 -0.861554 0.001768 0.538105 -0.842876 0.050754 0.065758 -0.996544 -0.019181 0.193572 -0.980899 0.117727 0.320417 -0.939933 0.173089 0.209675 -0.962329 0.073986 0.047418 -0.996131 -0.002861 0.154045 -0.98806 0.22268 -0.189591 -0.956279 0.142047 -0.070696 -0.987332 0.235945 0.061061 -0.969846 0.284019 -0.085242 -0.955022 0.284187 -0.119522 -0.95129 0.18495 -0.046926 -0.981627 0.469944 -0.314762 -0.824668 0.324898 -0.286474 -0.901318 0.327435 -0.220891 -0.918691 0.436096 -0.251459 -0.864054 0.473624 -0.209127 -0.855538 0.371679 -0.174482 -0.911817 0.593781 -0.220328 -0.773873 0.64569 -0.038921 -0.762607 0.659388 -0.074842 -0.748068 0.577338 -0.188497 -0.794449 0.520053 -0.164818 -0.838081 0.486574 -0.003404 -0.873633 0.583694 0.350278 -0.732535 0.633952 0.167061 -0.755112 0.445809 0.172583 -0.878333 0.388775 0.329865 -0.860258 0.670839 0.324639 -0.666772 0.692093 0.11947 -0.711852 0.445222 0.577844 -0.684013 0.517686 0.479897 -0.708308 0.330597 0.433029 -0.838565 0.275479 0.50654 -0.817024 0.53871 0.612813 -0.578145 0.616696 0.484403 -0.620516 0.278003 0.744964 -0.606418 0.365453 0.664551 -0.651779 0.221829 0.57283 -0.789087 0.182217 0.632878 -0.752504 0.306851 0.80584 -0.506422 0.437533 0.722967 -0.534681 -0.077112 0.816166 -0.572649 0.125172 0.825515 -0.550324 0.121846 0.731498 -0.670868 -0.019603 0.743964 -0.667932 -0.030227 0.802231 -0.596248 0.128031 0.849287 -0.512171 -0.166759 0.672289 -0.721262 -0.074919 0.639876 -0.764817 -0.086363 0.65898 -0.747185 0.419268 0.406688 -0.811677 0.45283 0.31045 -0.835802 0.550354 0.354523 -0.755926 0.488995 0.426269 -0.761038 0.798505 0.589542 -0.121777 0.629664 0.764854 -0.136094 0.428097 0.516657 -0.741484 0.481992 0.162651 -0.860946 0.476625 0.173666 -0.861782 0.541781 -0.051837 -0.83892 0.610962 -0.026965 -0.7912 0.77405 -0.395398 -0.494477 0.920958 -0.172543 -0.349378 0.643893 0.078074 -0.761122 0.480736 0.233816 -0.845117 0.483133 0.167149 -0.859444 0.616661 0.240115 -0.749715 0.967736 0.117908 -0.222674 0.913198 0.379905 -0.147451 0.390578 0.591083 -0.705741 0.382839 0.535126 -0.753044 0.414139 0.577573 -0.70349 0.47634 0.860797 -0.179246 0.340392 0.907818 -0.24495 0.421549 0.584377 -0.693397 0.405414 0.540989 -0.736865 0.431518 0.576007 -0.694268 0.364935 0.56563 -0.739517 0.160295 0.921034 -0.354968 -0.063838 0.850342 -0.522343 0.231853 0.516573 -0.824255 -0.234963 0.674542 -0.699847 -0.263787 0.488611 -0.831671 0.143761 0.349005 -0.926028 0.121957 0.430188 -0.894463 0.244238 0.368175 -0.897104 0.286839 0.465666 -0.837185 0.431825 0.308888 -0.847417 0.349106 0.306214 -0.88564 0.242828 0.317447 -0.916658 -0.193183 0.358321 -0.913393 -0.108882 0.280328 -0.953709 0.308743 0.342271 -0.887428 0.400235 0.380025 -0.833902 0.437071 0.358464 -0.824907 0.306876 0.362809 -0.879885 -0.062544 0.201463 -0.977497 -0.04802 0.0781 -0.995788 0.266858 0.326827 -0.906626 0.350138 0.278047 -0.894479 0.354862 0.347322 -0.868009 0.255429 0.219947 -0.941477 -0.006971 -0.087812 -0.996113 0.120653 -0.291438 -0.94895 0.318338 0.07641 -0.944893 0.448609 0.180967 -0.875215 0.399034 0.212972 -0.89186 0.432397 -0.02109 -0.901437 0.342686 -0.457883 -0.820311 0.578434 -0.49519 -0.648229 0.296419 -0.000702 -0.955058 0.296419 -0.000702 -0.955058 0.172523 0.052896 -0.983584 0.172523 0.052896 -0.983584 0.039158 0.322577 -0.945733 0.039158 0.322577 -0.945733 0.047516 0.433082 -0.900101 0.047516 0.433082 -0.900101 0.073663 0.121903 -0.989805 0.073663 0.121903 -0.989805 0.020637 0.212144 -0.977021 0.020637 0.212144 -0.977021 0.424054 -0.091556 -0.900997 0.424054 -0.091556 -0.900997 0.357272 -0.03225 -0.933444 0.357272 -0.03225 -0.933444 0.012525 0.534209 -0.84526 0.012525 0.534209 -0.84526 -0.011494 0.7071 -0.707021 -0.011494 0.7071 -0.707021 0.597526 -0.131026 -0.791072 0.597526 -0.131026 -0.791072 0.505826 -0.146625 -0.850083 0.505826 -0.146625 -0.850083 0.043082 0.835064 -0.548463 0.043082 0.835064 -0.548463 0.232892 0.841802 -0.486962 0.232892 0.841802 -0.486962 0.692441 0.211038 -0.689919 0.692441 0.211038 -0.689919 0.670034 -0.002279 -0.742327 0.670034 -0.002279 -0.742327 0.395537 0.785831 -0.475416 0.395537 0.785831 -0.475416 0.511415 0.69064 -0.511342 0.511415 0.69064 -0.511342 0.608864 0.549501 -0.572131 0.608864 0.549501 -0.572131 0.665886 0.412472 -0.621662 0.665886 0.412472 -0.621662 0.267718 0.900516 0.342634 0.267718 0.900516 0.342634 0.434491 0.763425 0.477912 0.434491 0.763425 0.477912 0.869912 0.076138 0.487294 0.869912 0.076138 0.487294 0.932155 -0.229683 0.279881 0.932155 -0.229683 0.279881 0.602872 0.538559 0.588642 0.602872 0.538559 0.588642 0.752279 0.323048 0.574209 0.752279 0.323048 0.574209 -0.213672 0.974192 0.072768 -0.213672 0.974192 0.072768 0.039021 0.973056 0.227243 0.039021 0.973056 0.227243 0.840289 -0.540248 0.045233 0.840289 -0.540248 0.045233 0.606818 -0.775669 -0.17352 0.606818 -0.775669 -0.17352 -0.573632 0.648601 -0.500262 -0.573632 0.648601 -0.500262 -0.459052 0.865899 -0.198721 -0.459052 0.865899 -0.198721 0.348772 -0.845309 -0.404736 0.348772 -0.845309 -0.404736 0.044107 -0.731158 -0.680781 0.044107 -0.731158 -0.680781 -0.526631 0.262875 -0.808429 -0.526631 0.262875 -0.808429 -0.572583 0.444835 -0.688673 -0.572583 0.444835 -0.688673 -0.171813 -0.489749 -0.854767 -0.171813 -0.489749 -0.854767 -0.298216 -0.294897 -0.907801 -0.298216 -0.294897 -0.907801 -0.378075 -0.092709 -0.921121 -0.378075 -0.092709 -0.921121 -0.44719 0.096281 -0.889242 -0.44719 0.096281 -0.889242 0.612429 0.206829 -0.762989 0.464886 0.248405 -0.849809 0.407407 0.351958 -0.842701 0.648197 0.357749 -0.672202 0.671753 0.259933 -0.693674 0.260779 0.444292 -0.857088 0.266283 0.359019 -0.894538 0.239549 0.282383 -0.928911 0.456076 0.54318 -0.704947 0.484975 0.494828 -0.721072 0.523431 0.452679 -0.721874 0.154432 0.395601 -0.905345 0.17883 0.504716 -0.84456 0.266157 0.567731 -0.779001 0.193307 0.300033 -0.934138 0.427534 0.439385 -0.790035 0.307666 0.464115 -0.830626 0.465664 0.419078 -0.779442 0.586011 0.418412 -0.693919 0.376686 0.574397 -0.726757 0.72401 0.167928 -0.669036 0.615211 0.144276 -0.775048 0.538442 0.194451 -0.81992 0.755996 0.352652 -0.551458 0.765047 0.251817 -0.592698 0.104303 0.251884 -0.96212 0.084593 0.265317 -0.960443 0.005837 0.281933 -0.959416 0.438714 0.77153 -0.460728 0.549094 0.684577 -0.479427 0.639111 0.567102 -0.51955 -0.119349 0.571474 -0.811895 -0.055497 0.717664 -0.694175 0.087893 0.80095 -0.592244 -0.082255 0.383999 -0.919662 0.371981 0.25099 -0.893663 0.168173 0.254214 -0.952414 0.515832 0.244885 -0.820943 0.711746 0.448691 -0.540457 0.274747 0.816832 -0.507247 0.645705 0.281916 -0.70964 0.539281 0.220414 -0.812769 0.769022 0.394085 -0.503292 0.726749 0.338639 -0.597628 0.910687 0.132665 0.391214 0.999599 0.019627 0.020427 0.95412 0.024299 0.298438 0.445708 0.894704 -0.029136 0.965917 0.00636 -0.258774 0.63813 0.749781 -0.174984 0.564478 0.808758 -0.165152 0.955888 0.074409 -0.28415 0.833027 -0.550995 -0.049699 0.747769 -0.638876 -0.180774 0.496269 -0.862279 -0.100952 -0.207933 0.848115 -0.487303 0.067624 0.763984 -0.641681 0.12728 0.626188 -0.769213 -0.218784 0.728379 -0.649305 0.477035 0.407812 -0.778542 0.477035 0.407812 -0.778542 0.017333 -0.981177 -0.192329 0.100697 -0.980826 -0.166857 0.066985 -0.985016 -0.158922 0.066985 -0.985016 -0.158922 0.113176 -0.977596 -0.177477 0.113176 -0.977596 -0.177477 0.260639 0.584649 -0.768279 0.260639 0.584649 -0.768279 0.016554 0.67435 -0.738226 -0.106362 0.750404 -0.652366 -0.106362 0.750404 -0.652366 -0.052394 0.836039 -0.546163 0.073173 0.824552 -0.561034 -0.11046 0.686583 -0.718611 -0.155032 0.743111 -0.650962 -0.209657 0.806439 -0.552901 -0.277141 0.74834 -0.602644 -0.254322 0.755762 -0.603444 -0.358109 0.092557 -0.929081 -0.250923 0.673348 -0.695442 -0.112663 0.603179 -0.789609 -0.09202 0.089713 -0.991708 0.154625 0.382352 -0.910988 0.205405 -0.026468 -0.978319 -0.072607 -0.353019 -0.932795 -0.315135 -0.516218 -0.796372 0.137801 -0.96591 -0.219155 -0.147037 -0.862058 -0.485012 0.15353 -0.866566 -0.474859 0.229098 -0.817711 -0.528075 0.125194 -0.964684 -0.231758 0.055128 -0.985656 -0.159509 0.133227 -0.975043 -0.1776 0.08158 0.845691 -0.5274 0.078804 0.875247 -0.477213 -0.135909 0.78308 -0.606889 -0.14307 0.731129 -0.667069 0.652262 -0.134271 -0.746006 0.728452 -0.084587 -0.679855 0.489926 -0.423017 -0.762253 0.604152 0.140091 -0.784458 0.789901 0.036981 -0.612119 0.511155 -0.597093 -0.618224 0.41548 -0.442463 -0.794735 0.053874 -0.927755 -0.369281 0.152238 -0.796477 -0.58519 0.917433 -0.01634 -0.397554 0.60325 -0.699086 -0.383887 0.029478 -0.980033 -0.196639 0.188278 0.863211 -0.468421 0.734878 0.361526 -0.573806 0.645074 0.228829 -0.729052 0.011092 0.714503 -0.699544 0.528285 0.032629 -0.84844 -0.123905 0.526586 -0.841044 0.709036 -0.679127 0.189881 0.54884 -0.680148 0.485977 0.696633 -0.536154 0.476698 0.937025 0.142119 0.319041 0.883729 -0.390989 0.257199 0.771856 0.621298 -0.135006 0.80244 -0.582305 -0.130427 0.360455 0.931906 0.040288 0.246781 0.968966 0.014261 0.199409 0.979909 0.003657 0.20259 0.97835 0.042279 0.297397 0.954751 0.002279 0.296878 0.953346 -0.054732 -0.448272 0.750301 -0.485901 -0.299256 0.711329 -0.635969 -0.449932 0.662013 -0.599417 -0.604373 0.702658 -0.375506 0.543677 -0.837776 -0.05046 0.41825 -0.908309 0.006481 0.525642 -0.828016 0.195167 0.513327 -0.837473 0.187441 0.632445 -0.690176 0.351668 0.562937 -0.723503 0.399556 0.270888 -0.860723 -0.431018 0.466072 -0.760826 -0.451575 0.785817 -0.470274 -0.401664 0.806986 0.379916 -0.452147 0.311722 -0.406116 -0.859011 0.08011 -0.476468 -0.875534 0.492226 -0.783275 0.379728 0.564196 -0.75938 0.324076 0.615425 -0.747397 0.250297 0.467281 -0.880804 -0.076373 0.423525 -0.905139 -0.036738 0.388235 -0.921287 -0.022439 -0.638353 0.671458 -0.376365 -0.642083 0.670375 -0.371923 -0.527289 0.635121 -0.564436 -0.53912 0.609156 -0.581618 -0.499354 0.673213 -0.545371 -0.620665 0.681581 -0.387585 0.724403 -0.679107 -0.118553 0.808578 -0.568186 -0.152862 0.76273 -0.645516 0.039393 0.719046 -0.694329 0.029644 0.704086 -0.666952 0.243799 0.68063 -0.673335 0.288725 0.675478 -0.668555 0.311069 0.688796 -0.721756 0.068031 0.678689 -0.726051 -0.110594 0.590821 -0.659388 -0.464906 0.324614 -0.335183 -0.884465 0.389368 -0.193616 -0.900503 0.677507 -0.584788 -0.446103 0.811911 -0.403641 -0.421752 -0.702864 0.705439 -0.091315 -0.699069 0.693346 0.174852 -0.698884 0.694843 0.169571 -0.697074 0.711711 -0.08692 -0.629707 0.772938 0.077689 -0.630257 0.757744 -0.169115 0.665495 -0.718329 0.202779 0.637554 -0.7383 0.220087 0.650398 -0.741869 0.163133 0.619906 -0.781037 -0.075482 0.62189 -0.772088 -0.130895 0.619404 -0.767547 -0.164959 -0.428525 0.808484 -0.403384 -0.344282 0.922494 -0.174568 0.841854 -0.487833 -0.230867 0.838993 -0.458769 -0.292613 0.718357 -0.682624 -0.134116 0.750372 -0.66081 -0.016469 -0.004385 -0.980634 -0.195802 0.11327 -0.803082 -0.585003 0.033162 -0.790045 -0.612151 -0.142029 -0.978203 -0.151482 0.398848 0.500353 -0.768484 0.284867 0.522124 -0.803889 0.240759 -0.182234 -0.953324 0.326055 -0.256882 -0.90978 0.106126 0.992625 0.058596 0.101925 0.991712 -0.078227 0.185058 0.981762 0.043548 0.161241 0.98316 0.086007 0.203627 0.976108 0.075821 -0.181266 -0.979622 -0.086502 -0.058418 -0.989239 -0.134139 0.18691 0.981774 0.034418 0.16088 0.98655 0.028917 -0.164751 -0.970502 -0.176023 0.075477 -0.797038 -0.599194 0.41959 0.332341 -0.844685 0.322606 -0.288805 -0.901397 0.338129 0.937695 -0.079978 0.299596 0.953203 -0.040569 -0.230271 -0.970692 -0.068787 0.273756 0.960659 -0.046809 -0.093554 0.935084 -0.341855 -0.357811 0.927392 -0.109158 -0.580229 0.784645 -0.218327 -0.370232 0.823908 -0.429073 0.555442 -0.82035 -0.136052 0.648256 -0.730721 0.214037 0.665073 -0.670138 0.329534 -0.177345 0.255741 -0.950339 0.237945 -0.404121 -0.883215 -0.171659 0.218398 -0.960643 -0.191232 0.22974 -0.95428 -0.611039 0.688951 -0.389844 -0.497376 0.621066 -0.605717 0.578572 -0.812132 -0.075471 0.636769 -0.760919 0.124606 -0.168096 0.382717 -0.908445 -0.01579 0.29859 -0.954251 -0.354497 0.372019 -0.857866 -0.354497 0.372019 -0.857866 0.030753 -0.642052 -0.766044 -0.28865 0.899627 -0.327645 -0.28865 0.899627 -0.327645 -0.590748 0.801531 0.092551 0.882451 -0.187177 -0.431561 0.631213 0.690214 -0.3538 0.716773 0.651128 -0.249539 0.810085 0.079366 -0.580916 0.218435 0.918014 -0.330963 0.140919 0.983259 -0.115515 0.178425 0.905077 -0.386006 0.364259 0.817074 -0.446884 0.299785 0.939825 -0.163886 0.464631 -0.750462 -0.470027 0.536199 0.720631 -0.439525 0.864301 -0.265631 -0.427112 -0.127859 0.902899 -0.410396 0.648779 -0.746777 0.14632 -0.65206 0.746179 -0.134292 0.932257 0.179954 -0.313868 0.932257 0.179954 -0.313868 0.85443 0.301563 -0.423095 0.797829 0.26596 -0.541049 0.873116 -0.177098 -0.454207 0.873116 -0.177098 -0.454207 0.649289 0.072699 -0.757059 0.753442 0.191783 -0.628923 0.6043 -0.0704 -0.793641 0.921298 -0.001363 -0.388856 0.921298 -0.001363 -0.388856 0.805464 -0.09727 -0.584608 0.710857 -0.181827 -0.679427 0.859553 -0.250977 -0.445172 -0.504833 -0.252405 -0.825491 -0.504833 -0.252405 -0.825491 -0.176988 -0.95937 -0.219738 -0.176988 -0.95937 -0.219738 0.838581 -0.043777 -0.543014 -0.50884 -0.695521 -0.507279 -0.50884 -0.695521 -0.507279 0.843621 -0.371969 -0.387224 0.843621 -0.371969 -0.387224 0.897769 0.154532 -0.41247 0.897769 0.154532 -0.41247 0.883068 0.157461 -0.442037 0.883068 0.157461 -0.442037 0.71598 -0.20424 -0.667576 0.71598 -0.20424 -0.667576 0.84052 -0.139279 -0.523572 0.84052 -0.139279 -0.523572 0.889164 0.201883 -0.410647 0.889164 0.201883 -0.410647 0.844759 0.094819 -0.526679 0.844759 0.094819 -0.526679 0.516769 -0.546521 -0.658988 0.137687 -0.761356 -0.633545 -0.073521 0.769689 -0.634171 -0.902895 -0.325759 0.280467 -0.936415 -0.200727 0.287811 -0.858832 -0.448083 0.248252 -0.80054 -0.564124 0.202238 -0.740856 -0.649577 0.170825 -0.640499 -0.727822 0.245023 -0.852262 -0.443442 0.277505 -0.785146 -0.561254 0.261802 -0.709343 -0.657204 0.254784 0.578683 -0.759785 0.2964 -0.000115 -0.99999 -0.004589 -0.00051 -0.999977 -0.006811 -3.4e-005 -0.999995 -0.003095 -0.0006 -0.999998 -0.001658 0.001309 -0.999998 0.001288 -0.003465 -0.999976 -0.006061 -0.004195 -0.999979 -0.004981 -0.000633 -0.99997 -0.007748 -0.001948 -0.999974 -0.00693 -6e-006 -0.999971 -0.007673 -0.00264 -0.99998 -0.005704 -6.6e-005 -0.999967 -0.008151 -0.00142 -0.999996 -0.002481 0.003645 -0.999993 4.6e-005 -0.002686 -0.999991 0.003221 0.002724 -0.999944 0.010221 0.004946 -0.999932 0.010546 0.006765 -0.99992 0.010688 0.004595 -0.999966 0.006817 0.001146 -0.999997 0.002298 -0.004822 -0.999982 0.003527 -0.003588 -0.999964 0.00771 -0.00298 -0.999888 0.014663 -0.001243 -0.999863 0.016531 0.001848 -0.999933 0.011451 -0.004415 -0.999984 0.003674 0.001118 -0.999907 0.013595 0.001334 -0.999999 -0.000699 -0.00033 -1 -0.000292</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2290\" offset=\"0\" source=\"#LOD3spShape-lib-normals-array\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"LOD3spShape-lib-map1\" name=\"map1\">\r\n\t\t\t\t\t<float_array count=\"4554\" id=\"LOD3spShape-lib-map1-array\">0.245158 0.423975 0.25011 0.468112 0.150442 0.543685 0.148569 0.498875 0.302841 0.416173 0.345064 0.636086 0.339502 0.673242 0.260986 0.672117 0.283208 0.642063 0.331126 0.714598 0.241009 0.71553 0.233372 0.762934 0.302959 0.373132 0.224027 0.289653 0.23558 0.359702 0.143764 0.429085 0.134156 0.320572 0.298228 0.319321 0.288073 0.263566 0.326898 0.757163 0.328393 0.797118 0.23841 0.805793 0.60087 0.640918 0.866606 0.398924 0.510699 0.676291 0.517366 0.634965 0.871384 0.397619 0.505796 0.719121 0.878048 0.397558 0.87416 0.398826 0.86606 0.397625 0.86057 0.399008 0.501279 0.762876 0.856321 0.39906 0.497144 0.804816 0.862375 0.397683 0.860024 0.397676 0.853776 0.399148 0.494669 0.842655 0.936097 0.40457 0.495808 0.877438 0.932361 0.401286 0.944998 0.401429 0.333511 0.830512 0.255441 0.838224 0.335539 0.859065 0.275714 0.857682 0.13703 0.645509 0.099669 0.709478 0.072436 0.710311 0.114209 0.64461 0.217381 0.600094 0.193334 0.589335 0.083907 0.774978 0.093256 0.834193 0.067488 0.842396 0.056643 0.778851 0.948825 0.405179 0.543475 0.557405 0.5578 0.533271 0.685834 0.551732 0.928618 0.398828 0.939922 0.398832 0.318062 0.571086 0.304302 0.551225 0.870712 0.401462 0.862287 0.401557 0.855482 0.401642 0.85836 0.405349 0.85103 0.405417 0.86725 0.404976 0.851008 0.401767 0.84805 0.401779 0.618068 0.949096 0.595914 0.442419 0.701364 0.36472 0.704143 0.312403 0.595493 0.387203 0.757075 0.288915 0.749567 0.262372 0.79867 0.019963 0.720188 0.090411 0.342229 0.232442 0.353643 0.285267 0.846214 0.405443 0.84246 0.405195 0.945825 0.3988 0.51556 0.94314 0.529717 0.959537 0.951482 0.401365 0.955814 0.405156 0.355112 0.336459 0.416748 0.23909 0.409212 0.301844 0.412385 0.174765 0.722678 0.141004 0.371257 0.129527 0.316583 0.183819 0.278107 0.146712 0.815355 0.094326 0.586596 0.164171 0.31201 0.090946 0.272238 0.213152 0.591566 0.221736 0.775513 0.183818 0.258385 0.177707 0.714664 0.225413 0.594393 0.311859 0.803506 0.201004 0.853165 0.100422 0.240207 0.064107 0.220228 0.127313 0.134162 0.116701 0.137886 0.045291 0.20962 0.176711 0.132836 0.176022 0.393776 0.367451 0.346805 0.380154 0.21424 0.228892 0.133514 0.241035 0.127886 0.880246 0.194162 0.909528 0.176891 0.924466 0.105635 0.892789 0.298575 0.918513 0.289302 0.932026 0.41004 0.927663 0.412647 0.940987 0.152917 0.714025 0.188039 0.660899 0.251002 0.622891 0.148083 0.821618 0.139091 0.770988 0.529124 0.59406 0.624566 0.605374 0.943792 0.414167 0.33386 0.602351 0.939709 0.408955 0.951716 0.40979 0.95394 0.414936 0.863781 0.409841 0.854643 0.410095 0.847079 0.410021 0.50373 0.914675 0.043999 0.560029 0.039161 0.51728 0.035514 0.442488 0.02836 0.327681 0.57657 0.399149 0.579657 0.45714 0.483058 0.467543 0.484696 0.402538 0.027211 0.11532 0.026409 0.041836 0.027231 0.176259 0.027041 0.244825 0.496033 0.232082 0.498386 0.171519 0.545104 0.178866 0.55478 0.242428 0.486973 0.320445 0.572701 0.32584 0.253473 0.42034 0.198325 0.471074 0.201641 0.514357 0.257191 0.464291 0.304409 0.414784 0.305266 0.371658 0.230885 0.286168 0.167912 0.306331 0.188981 0.401339 0.242536 0.354324 0.300813 0.31779 0.290984 0.262458 0.644363 0.422582 0.643061 0.366324 0.70337 0.314326 0.703499 0.366966 0.745969 0.26707 0.75382 0.293297 0.343946 0.231017 0.355397 0.284532 0.356783 0.335152 0.414764 0.29281 0.419941 0.236001 0.413771 0.173263 0.370421 0.125545 0.313385 0.086563 0.282902 0.142155 0.319456 0.18046 0.261679 0.175104 0.275739 0.211488 0.247515 0.05956 0.175872 0.043369 0.166908 0.113803 0.230266 0.122298 0.162066 0.173298 0.220575 0.173418 0.399643 0.347472 0.348371 0.378515 0.850892 0.415208 0.23283 0.882474 0.174218 0.860862 0.318561 0.890705 0.412205 0.900441 0.414872 0.864697 0.414169 0.832004 0.413463 0.796679 0.414763 0.757 0.418623 0.715141 0.424042 0.67374 0.797949 0.022112 0.816816 0.093012 0.720595 0.147032 0.715991 0.092651 0.636546 0.210325 0.627672 0.148444 0.772502 0.189202 0.711355 0.231084 0.641706 0.289174 0.223314 0.226619 0.162858 0.235961 0.139391 0.505963 0.140772 0.546375 0.105327 0.324975 0.131454 0.436403 0.855305 0.0942 0.800674 0.205793 0.103269 0.042003 0.100779 0.11305 0.099208 0.173793 0.099637 0.242841 0.428561 0.633258 0.429426 0.594048 0.429051 0.559095 0.429259 0.535162 0.35272 0.639241 0.294558 0.645659 0.274212 0.673847 0.348213 0.675519 0.253789 0.714174 0.339072 0.715472 0.241562 0.759109 0.241492 0.801977 0.330569 0.796358 0.332348 0.756954 0.843668 0.414845 0.519216 0.636196 0.513483 0.677706 0.858319 0.415536 0.509018 0.719971 0.595108 0.724198 0.959154 0.409842 0.961426 0.415077 0.955396 0.420505 0.503982 0.762367 0.946551 0.419988 0.498249 0.80295 0.581926 0.813498 0.948394 0.426244 0.956245 0.426562 0.493564 0.840197 0.962774 0.420748 0.49337 0.874734 0.5689 0.884732 0.963626 0.426902 0.947821 0.439136 0.254385 0.836095 0.333265 0.830744 0.334347 0.859927 0.274272 0.857068 0.111374 0.707428 0.160452 0.654158 0.126019 0.649524 0.074711 0.707898 0.232092 0.611555 0.203545 0.598866 0.085639 0.828171 0.086444 0.767612 0.053832 0.770468 0.05904 0.833261 0.5406 0.554531 0.653253 0.57169 0.949156 0.432796 0.552741 0.532581 0.956416 0.432776 0.955188 0.438695 0.321928 0.578317 0.3053 0.558373 0.963377 0.433055 0.962074 0.438861 0.939469 0.450342 0.944673 0.445101 0.952905 0.444195 0.949616 0.449137 0.959891 0.444199 0.95721 0.449055 0.928445 0.45763 0.933041 0.454385 0.647892 0.957038 0.945196 0.453364 0.513713 0.938992 0.528694 0.953445 0.940767 0.456994 0.954246 0.453493 0.191556 0.905473 0.119561 0.876603 0.09609 0.886393 0.173642 0.917872 0.296111 0.916924 0.285563 0.930752 0.407594 0.925155 0.699705 0.808301 0.767751 0.813767 0.770203 0.857847 0.710393 0.859091 0.67046 0.86001 0.652167 0.800156 0.732575 0.902022 0.706983 0.910753 0.776574 0.894725 0.709069 0.706824 0.772884 0.721001 0.769128 0.766819 0.69961 0.756109 0.650715 0.739559 0.665169 0.685443 0.747389 0.629544 0.781976 0.645207 0.777571 0.679447 0.726035 0.663915 0.69251 0.641696 0.7256 0.608173 0.800842 0.598447 0.800844 0.613722 0.782354 0.62203 0.77064 0.606739 0.761516 0.586356 0.801211 0.57812 0.833474 0.606525 0.843418 0.585771 0.884582 0.608278 0.861681 0.62927 0.826927 0.645008 0.821482 0.621769 0.901508 0.709495 0.841154 0.721344 0.835351 0.679466 0.88519 0.664947 0.920582 0.64464 0.946246 0.692573 0.905321 0.811872 0.840491 0.814502 0.842749 0.767471 0.908491 0.759591 0.957769 0.748636 0.953229 0.808266 0.87648 0.901039 0.832824 0.894364 0.83647 0.858222 0.893987 0.860506 0.934495 0.863509 0.904941 0.908789 0.811165 0.93926 0.808557 0.928096 0.833115 0.918674 0.850764 0.928355 0.866017 0.939324 0.815782 0.955298 0.781351 0.919619 0.767445 0.930389 0.756778 0.947206 0.874321 0.260529 0.87457 0.258357 0.870642 0.262514 0.870232 0.260129 0.875205 0.262091 0.87418 0.274349 0.878088 0.275377 0.879128 0.284194 0.875282 0.284248 0.876451 0.268146 0.87176 0.26763 0.879196 0.270887 0.875496 0.265391 0.893101 0.28442 0.892287 0.271326 0.879947 0.284131 0.862255 0.219399 0.877309 0.242158 0.869772 0.241647 0.855575 0.218438 0.862432 0.239621 0.84944 0.210845 0.867315 0.244511 0.849901 0.240235 0.863194 0.266321 0.876212 0.265675 0.880423 0.283451 0.866718 0.283089 0.870498 0.254293 0.863904 0.253791 0.870234 0.270504 0.864805 0.270607 0.879852 0.25405 0.878645 0.27023 0.884908 0.221559 0.894641 0.243235 0.885819 0.242521 0.87478 0.219802 0.853855 0.205189 0.868038 0.204565 0.870975 0.210424 0.856654 0.209577 0.882303 0.208527 0.885027 0.21281 0.869343 0.207181 0.855354 0.205901 0.879862 0.246326 0.872817 0.221463 0.859409 0.2185 0.885826 0.225344 0.891813 0.248223 0.886742 0.266822 0.897889 0.269881 0.890434 0.283337 0.902191 0.283202 0.887267 0.269985 0.888486 0.253806 0.897003 0.253871 0.897865 0.269734 0.890567 0.21382 0.890889 0.214313 0.887336 0.211472 0.940502 0.247339 0.935827 0.245027 0.948386 0.259727 0.952135 0.261243 0.929477 0.246937 0.935892 0.257903 0.955141 0.271935 0.951237 0.271687 0.951697 0.282445 0.956107 0.282705 0.939971 0.271031 0.941535 0.28252 0.963745 0.266939 0.955791 0.248173 0.96377 0.246708 0.971434 0.266214 0.948554 0.235961 0.955224 0.234835 0.896396 0.245174 0.886107 0.251776 0.887306 0.25714 0.901578 0.253513 0.893935 0.234459 0.893306 0.241625 0.88488 0.259333 0.895682 0.256287 0.898524 0.274248 0.887363 0.275119 0.885952 0.26722 0.897217 0.265981 0.888292 0.284017 0.899782 0.283788 0.893557 0.224473 0.903384 0.244263 0.904117 0.226402 0.909834 0.245212 0.898452 0.232315 0.90536 0.242289 0.914901 0.24109 0.908475 0.23147 0.912117 0.251402 0.92111 0.249824 0.905103 0.223634 0.894105 0.223477 0.891627 0.223783 0.892209 0.224715 0.894785 0.217728 0.904032 0.218825 0.905292 0.26092 0.916745 0.259188 0.925679 0.257542 0.919312 0.270264 0.927598 0.269904 0.909165 0.270372 0.922229 0.248254 0.923018 0.231732 0.931448 0.236491 0.927474 0.250713 0.939132 0.243721 0.931475 0.252998 0.941395 0.236759 0.941774 0.24318 0.951181 0.24757 0.953028 0.242625 0.943442 0.249961 0.949719 0.251412 0.932269 0.241398 0.935522 0.24909 0.930136 0.234395 0.929446 0.228394 0.942151 0.230847 0.942787 0.227016 0.929372 0.224433 0.954848 0.237908 0.922857 0.256527 0.927955 0.258098 0.929776 0.270263 0.925166 0.269641 0.93313 0.259066 0.935431 0.270899 0.938091 0.256867 0.945703 0.257403 0.953024 0.257866 0.948714 0.269472 0.957575 0.269677 0.940805 0.269454 0.944953 0.253898 0.950208 0.269278 0.961307 0.253711 0.957956 0.256418 0.964661 0.269455 0.96896 0.268209 0.902892 0.249987 0.897745 0.228849 0.908596 0.231834 0.912735 0.252197 0.897122 0.224227 0.89485 0.22181 0.90624 0.226903 0.908607 0.228742 0.903082 0.242361 0.906809 0.256103 0.917237 0.255133 0.919494 0.264606 0.908311 0.265315 0.907454 0.269025 0.916487 0.269043 0.911531 0.283044 0.919593 0.2829 0.909419 0.273405 0.911476 0.28336 0.920571 0.273041 0.922157 0.283218 0.922114 0.255039 0.920062 0.238863 0.921052 0.234472 0.923775 0.23538 0.929369 0.253983 0.934895 0.263753 0.927988 0.282737 0.92516 0.269608 0.937386 0.272947 0.938515 0.283177 0.906903 0.269654 0.905634 0.25451 0.912156 0.254648 0.915624 0.269303 0.934262 0.269581 0.931993 0.256855 0.928513 0.24901 0.928512 0.223212 0.917128 0.220406 0.916725 0.220767 0.9041 0.217973 0.914088 0.228391 0.916363 0.246441 0.918617 0.23227 0.923487 0.240784 0.938248 0.22777 0.892821 0.216321 0.844542 0.206031 0.874322 0.212263 0.870581 0.286403 0.864795 0.285932 0.877377 0.285736 0.887924 0.285532 0.898823 0.285311 0.908672 0.285115 0.917425 0.284957 0.921216 0.269224 0.922914 0.284906 0.926665 0.284912 0.930758 0.284928 0.936388 0.28496 0.952837 0.284936 0.967867 0.284724 0.971593 0.266723 0.976556 0.284338 0.976161 0.284497 0.973686 0.284223 0.968029 0.284169 0.960033 0.284154 0.950775 0.284138 0.942494 0.284121 0.936182 0.284123 0.929809 0.284158 0.920968 0.284223 0.910111 0.284292 0.952943 0.272204 0.950019 0.262148 0.953976 0.282879 0.900909 0.229617 0.889642 0.217102 0.912068 0.234085 0.913562 0.243735 0.925227 0.239763 0.92311 0.245509 0.916786 0.225007 0.940372 0.24984 0.963568 0.250138 0.888081 0.264217 0.918118 0.254988 0.844126 0.209259 0.844951 0.221286 0.886769 0.216308 0.872985 0.215718 0.879346 0.309871 0.875833 0.306046 0.875654 0.308144 0.879007 0.306407 0.876295 0.294136 0.878977 0.293033 0.879812 0.300399 0.876175 0.301094 0.880254 0.30345 0.882198 0.297454 0.893175 0.297687 0.865817 0.349629 0.859181 0.350621 0.872916 0.327332 0.880252 0.326495 0.865713 0.330422 0.852822 0.359205 0.869257 0.322943 0.877097 0.301439 0.864055 0.301093 0.852819 0.327816 0.866118 0.317194 0.872679 0.31623 0.865658 0.301152 0.871305 0.301562 0.879516 0.300927 0.881998 0.315802 0.888262 0.347411 0.878301 0.348969 0.888479 0.326114 0.897047 0.325511 0.857019 0.363938 0.860381 0.359999 0.874655 0.358691 0.872015 0.364197 0.888629 0.3558 0.886097 0.359632 0.872907 0.361011 0.858128 0.36229 0.881706 0.320824 0.862423 0.349295 0.875903 0.346079 0.888714 0.341972 0.893556 0.318638 0.898554 0.296744 0.887564 0.300041 0.888147 0.300674 0.898715 0.300283 0.89883 0.31539 0.89048 0.315686 0.894383 0.353795 0.894065 0.354129 0.890921 0.356254 0.942171 0.318343 0.9529 0.304272 0.949521 0.305533 0.937705 0.320863 0.937122 0.30759 0.931259 0.318903 0.955735 0.293528 0.951772 0.293299 0.940544 0.294181 0.964624 0.302435 0.972337 0.302695 0.965634 0.321964 0.957594 0.320997 0.957663 0.333351 0.950951 0.332759 0.897685 0.323309 0.904388 0.314564 0.887892 0.312338 0.888936 0.316243 0.699423 0.809253 0.710111 0.860044 0.769921 0.8588 0.767468 0.81472 0.651885 0.801109 0.669688 0.860514 0.732293 0.902975 0.706453 0.911484 0.776292 0.895678 0.708787 0.707777 0.699329 0.757062 0.768846 0.767772 0.772602 0.721954 0.664887 0.686395 0.650433 0.740512 0.747107 0.630497 0.725753 0.664868 0.777288 0.6804 0.781693 0.64616 0.725318 0.609127 0.692228 0.642648 0.80056 0.5994 0.770358 0.607692 0.782072 0.622983 0.800562 0.614675 0.800928 0.579073 0.761234 0.587309 0.833192 0.607478 0.861399 0.630223 0.8843 0.609231 0.843136 0.586725 0.8212 0.622722 0.826645 0.645961 0.901226 0.710448 0.884907 0.6659 0.835069 0.680418 0.840872 0.722297 0.945964 0.693526 0.920299 0.645594 0.905039 0.812825 0.908209 0.760544 0.842467 0.768423 0.840209 0.815454 0.952947 0.809219 0.957487 0.749588 0.876198 0.901993 0.893705 0.861459 0.836187 0.859175 0.832541 0.895317 0.904659 0.909742 0.934213 0.864462 0.810883 0.940213 0.850482 0.929308 0.832833 0.919627 0.808275 0.929049 0.815494 0.955807 0.865735 0.940277 0.767163 0.931342 0.781069 0.920572 0.878641 0.308129 0.757688 0.947696 0.89571 0.326063 0.896265 0.333541 0.887647 0.308911 0.896958 0.311973 0.898883 0.293285 0.897963 0.301935 0.887703 0.301029 0.887878 0.29293 0.905567 0.324686 0.896731 0.344468 0.906991 0.342485 0.911791 0.324251 0.900908 0.335596 0.911043 0.336295 0.917143 0.326675 0.907054 0.325968 0.923285 0.31808 0.915184 0.316034 0.908088 0.344187 0.897103 0.344536 0.894607 0.344154 0.895142 0.343144 0.898106 0.350443 0.90726 0.349181 0.907871 0.308374 0.918398 0.309598 0.927049 0.310818 0.928305 0.298442 0.920004 0.298182 0.909927 0.298243 0.924036 0.321254 0.929162 0.318872 0.933826 0.332572 0.925629 0.337191 0.941158 0.32555 0.933051 0.316658 0.943727 0.330971 0.955075 0.325269 0.952983 0.320359 0.943791 0.324629 0.951332 0.316568 0.945126 0.31796 0.937248 0.318798 0.934373 0.326359 0.932584 0.333273 0.932192 0.3393 0.932318 0.343421 0.945607 0.340893 0.944776 0.336887 0.957129 0.33006 0.924262 0.313255 0.925922 0.300164 0.930502 0.299579 0.929283 0.311724 0.936126 0.298969 0.93441 0.310774 0.939442 0.311396 0.947027 0.310849 0.954323 0.310334 0.958291 0.298597 0.94944 0.298819 0.941532 0.298832 0.946483 0.315703 0.950981 0.300512 0.962811 0.314479 0.969751 0.300159 0.965388 0.298807 0.959326 0.311738 0.904541 0.316598 0.900452 0.33816 0.911146 0.334819 0.914268 0.314088 0.900043 0.343367 0.910827 0.338483 0.909045 0.340214 0.897918 0.345703 0.907714 0.311836 0.905082 0.324826 0.918749 0.311513 0.909052 0.30192 0.920236 0.301846 0.91718 0.297035 0.908155 0.297332 0.909931 0.29344 0.92041 0.293444 0.923496 0.310879 0.922253 0.327378 0.925923 0.331262 0.923469 0.332076 0.930583 0.312153 0.934974 0.302503 0.925817 0.29614 0.93758 0.293425 0.907706 0.300101 0.916398 0.300537 0.913653 0.315103 0.907277 0.314776 0.934984 0.298714 0.933344 0.311407 0.930312 0.318902 0.931529 0.345055 0.919853 0.347075 0.920283 0.347817 0.907379 0.350402 0.918259 0.323025 0.916863 0.340467 0.921166 0.335346 0.925584 0.327014 0.941044 0.340685 0.896265 0.352186 0.847118 0.363087 0.877923 0.355511 0.921992 0.300554 0.972463 0.301867 0.950828 0.303658 0.953466 0.293583 0.892951 0.350759 0.90326 0.337983 0.915596 0.322974 0.91417 0.333036 0.927312 0.326701 0.92504 0.320904 0.919699 0.342662 0.941871 0.316003 0.965254 0.318221 0.889956 0.306147 0.919598 0.314755 0.845891 0.359181 0.847322 0.346695 0.890112 0.35133 0.87636 0.352039 0.950166 0.457401 0.877438 0.456074 0.890333 0.455013 0.891902 0.457826 0.881771 0.45805 0.893433 0.460126 0.885457 0.459788 0.90216 0.458193 0.902038 0.46051 0.902093 0.455956 0.869348 0.456995 0.875073 0.458463 0.870949 0.459563 0.865831 0.459946 0.88002 0.459819 0.876379 0.459992 0.890696 0.462723 0.889158 0.462546 0.893089 0.46287 0.842115 0.409869 0.837426 0.409453 0.838646 0.414482 0.833434 0.414204 0.847163 0.42056 0.840709 0.41957 0.839445 0.430603 0.83503 0.428579 0.852464 0.422383 0.843659 0.433436 0.835601 0.419062 0.830596 0.418889 0.831257 0.427506 0.827802 0.427141 0.876435 0.450731 0.866399 0.449489 0.869211 0.447456 0.878828 0.448367 0.861778 0.461251 0.86329 0.45579 0.869445 0.454182 0.919848 0.462088 0.9244 0.459418 0.936505 0.460001 0.932799 0.462552 0.914853 0.457033 0.912969 0.45878 0.983064 0.742705 0.970242 0.681277 0.978343 0.807461 0.961861 0.871181 0.925 0.920764 0.93957 0.629718 0.896636 0.591965 0.87816 0.953598 0.820182 0.969676 0.849136 0.56846 0.801508 0.561342 0.753635 0.961316 0.693916 0.922274 0.756457 0.570463 0.715065 0.59271 0.62759 0.729278 0.628526 0.797321 0.647916 0.672373 0.648988 0.865355 0.678001 0.627321 0.970524 0.680324 0.983346 0.741752 0.978626 0.806509 0.962143 0.870229 0.925282 0.919811 0.896919 0.591012 0.939853 0.628765 0.878442 0.952645 0.819304 0.969461 0.80179 0.560389 0.849419 0.567507 0.753465 0.960832 0.694447 0.921544 0.715348 0.591757 0.756739 0.569509 0.628808 0.796368 0.627873 0.728326 0.648199 0.671421 0.648584 0.866073 0.678283 0.626368 0.411737 0.936637 0.212659 0.665019 0.175067 0.711347 0.264355 0.628942 0.154113 0.763611 0.154483 0.81452 0.911051 0.461039 0.528987 0.594894 0.945951 0.460521 0.339791 0.607004 0.94197 0.46307 0.896594 0.462992 0.902819 0.462828 0.939147 0.46498 0.588358 0.917245 0.930869 0.464578 0.500784 0.908814 0.937502 0.466649 0.178893 0.855096 0.23388 0.878659 0.317203 0.888741 0.409219 0.897533 0.412456 0.865776 0.413517 0.832907 0.415303 0.797177 0.41903 0.758087 0.424284 0.717135 0.429773 0.675932 0.433166 0.635493 0.431719 0.596003 0.42845 0.560105 0.426262 0.535529 0.166927 0.932027 0.089131 0.90146 0.412839 0.954955 0.280654 0.94225 0.092604 0.643694 0.172265 0.583534 0.034269 0.783775 0.048602 0.713913 0.288973 0.53753 0.047197 0.849027 0.9297 0.466322 0.910929 0.462701 0.429574 0.516361 0.573602 0.514995 0.911763 0.464455 0.904647 0.46452 0.91245 0.466086 0.906026 0.466148 0.920833 0.464349 0.682918 0.980037 0.544365 0.975068 0.92089 0.466118 0.274953 0.94136 0.412382 0.948959 0.078614 0.893197 0.159929 0.926191 0.045546 0.712112 0.029763 0.775258 0.174568 0.589926 0.093871 0.647648 0.286715 0.542233 0.039682 0.837587 0.568016 0.514851 0.425296 0.517534 0.89967 0.464526 0.715649 0.536695 0.89649 0.46445 0.90127 0.466162 0.89793 0.466107 0.92457 0.397524 0.934172 0.397517 0.90196 0.397532 0.543555 0.96576 0.912366 0.397543 0.914428 0.398827 0.902477 0.39881 0.887934 0.397535 0.886084 0.398748 0.939158 0.397548 0.916553 0.401268 0.903345 0.401161 0.918892 0.404595 0.904419 0.40426 0.88377 0.401252 0.880927 0.404722 0.905294 0.428912 0.905488 0.424961 0.912357 0.424967 0.91334 0.429138 0.905906 0.421495 0.911087 0.422154 0.904076 0.437412 0.90478 0.43319 0.913199 0.433998 0.911884 0.43877 0.90321 0.444063 0.903361 0.441071 0.909872 0.442542 0.908067 0.444769 0.902496 0.453271 0.918142 0.453706 0.928783 0.450398 0.93573 0.445715 0.939896 0.439756 0.941415 0.433124 0.940295 0.426582 0.937084 0.420446 0.931618 0.414911 0.921769 0.409549 0.905101 0.407893 0.876573 0.40992 0.866307 0.415598 0.859425 0.421874 0.854503 0.429219 0.846009 0.439206 0.853866 0.435555 0.855666 0.44134 0.849189 0.44441 0.859693 0.44628 0.853635 0.449316 0.859396 0.453185 0.889827 0.45174 0.862926 0.421743 0.859205 0.428005 0.869662 0.416377 0.857993 0.434235 0.859086 0.440054 0.916008 0.412068 0.903601 0.410265 0.918257 0.418305 0.91053 0.415402 0.913091 0.413541 0.921836 0.416936 0.92534 0.416062 0.879532 0.412275 0.931494 0.42114 0.923547 0.422692 0.927682 0.421785 0.926515 0.428111 0.931209 0.427509 0.93512 0.42705 0.936295 0.433481 0.92732 0.434037 0.932331 0.433786 0.925669 0.439922 0.930432 0.440034 0.934525 0.439972 0.912845 0.451737 0.922595 0.449614 0.907361 0.448978 0.915126 0.447877 0.918684 0.448912 0.909842 0.450414 0.901128 0.451294 0.929882 0.445604 0.921412 0.444811 0.925747 0.445329 0.862632 0.44473 0.90791 0.418325 0.914417 0.420366 0.918293 0.424021 0.92059 0.42877 0.920879 0.434155 0.919487 0.439514 0.911345 0.446349 0.90499 0.446728 0.916084 0.443813 0.891421 0.410387 0.891335 0.407994 0.8923 0.404278 0.892667 0.401108 0.892803 0.398753 0.893101 0.397518 0.953337 0.401538 0.958091 0.405199 0.9475 0.399036 0.96186 0.409791 0.964499 0.415028 0.96612 0.420717 0.967305 0.426924 0.967388 0.433074 0.966427 0.438883 0.96451 0.444202 0.961861 0.44894 0.958944 0.453645 0.955428 0.457592 0.951844 0.460785 0.948132 0.463506 0.945008 0.465414 0.9428 0.466896 0.940897 0.39766 0.894646 0.464377 0.893748 0.464327 0.895819 0.465909 0.894732 0.465707 0.898046 0.468336 0.895591 0.467749 0.894211 0.467377 0.894053 0.470321 0.892528 0.469525 0.89702 0.472125 0.906461 0.46806 0.901761 0.468217 0.901883 0.471147 0.906501 0.470456 0.912592 0.467918 0.912253 0.470089 0.920682 0.467923 0.920674 0.470154 0.9293 0.468129 0.929876 0.470181 0.93702 0.468441 0.938213 0.470896 0.942275 0.468514 0.942757 0.470744 0.890006 0.4495 0.852976 0.399065 0.859393 0.397599 0.847065 0.401675 0.84127 0.405026 0.953466 0.401386 0.958188 0.405089 0.947588 0.398916 0.961862 0.409747 0.964391 0.415022 0.965926 0.420729 0.967068 0.426923 0.967242 0.433135 0.966314 0.439008 0.964406 0.444378 0.961584 0.44912 0.958267 0.453722 0.954279 0.457569 0.865611 0.460368 0.870463 0.459645 0.869977 0.459728 0.865391 0.460791 0.875883 0.460032 0.875386 0.460071 0.889107 0.462568 0.889055 0.46259 0.836433 0.409343 0.829542 0.419704 0.832578 0.41403 0.832317 0.414141 0.82924 0.419624 0.86181 0.461905 0.861843 0.46256 0.95053 0.46075 0.946775 0.4634 0.943577 0.465237 0.941527 0.466697 0.893773 0.464335 0.893798 0.464342 0.894526 0.465626 0.894385 0.465571 0.940912 0.397604 0.893807 0.467247 0.893563 0.467166 0.891985 0.469369 0.891535 0.469419 0.940364 0.468392 0.940762 0.470517 0.866236 0.398834 0.873711 0.398813 0.877506 0.397514 0.870971 0.397493 0.865522 0.397455 0.860032 0.398872 0.856026 0.399014 0.861954 0.397568 0.860159 0.397664 0.853853 0.399094 0.935431 0.404681 0.948546 0.405179 0.944496 0.401457 0.931632 0.401375 0.939488 0.398861 0.927974 0.398901 0.870657 0.401504 0.861966 0.401526 0.855096 0.4016 0.850751 0.405417 0.858121 0.405363 0.867731 0.405188 0.850561 0.401575 0.848094 0.401586 0.842791 0.404957 0.845766 0.405198 0.9455 0.398818 0.951158 0.401375 0.955535 0.405156 0.94295 0.41441 0.9536 0.414936 0.951437 0.40979 0.938847 0.409148 0.863906 0.410047 0.854469 0.410101 0.8468 0.410021 0.843291 0.414792 0.850618 0.415218 0.858112 0.415702 0.958875 0.409842 0.961147 0.415077 0.9551 0.420509 0.945887 0.42022 0.947818 0.426423 0.955942 0.426574 0.962495 0.420748 0.963347 0.426902 0.947179 0.438896 0.955415 0.438781 0.95627 0.432802 0.948355 0.432791 0.963455 0.433109 0.96255 0.43901 0.93973 0.449457 0.950281 0.449152 0.953464 0.44429 0.944309 0.444589 0.960647 0.444424 0.957836 0.449233 0.928866 0.456683 0.941589 0.457208 0.946319 0.453375 0.933669 0.453285 0.954103 0.453514 0.949874 0.457416 0.877353 0.455968 0.882269 0.458025 0.892317 0.457757 0.890577 0.455047 0.886684 0.460112 0.89423 0.460211 0.902677 0.460467 0.90267 0.458019 0.902808 0.455334 0.869597 0.456984 0.865825 0.458435 0.871446 0.458982 0.8752 0.458466 0.877063 0.46 0.880928 0.46006 0.889224 0.462652 0.890358 0.462714 0.892541 0.462593 0.841603 0.409572 0.838159 0.409243 0.834209 0.413908 0.837981 0.414182 0.839885 0.419736 0.846514 0.420792 0.834481 0.428371 0.838869 0.430451 0.84343 0.433385 0.852102 0.422532 0.830666 0.418987 0.834732 0.419195 0.827717 0.426976 0.830662 0.427303 0.875777 0.450429 0.878346 0.448288 0.868619 0.446935 0.865577 0.448677 0.860982 0.459109 0.863516 0.455972 0.868771 0.453598 0.919955 0.462087 0.933215 0.46265 0.936971 0.460171 0.92452 0.45941 0.915797 0.455832 0.913434 0.458571 0.911682 0.460937 0.945768 0.460575 0.941689 0.463136 0.897291 0.462545 0.903757 0.462585 0.930828 0.464538 0.938505 0.464915 0.929084 0.466249 0.936418 0.466469 0.911714 0.462545 0.904992 0.464496 0.91226 0.464434 0.906001 0.466171 0.912549 0.466198 0.920438 0.466178 0.920682 0.464371 0.899694 0.464496 0.896238 0.464476 0.897673 0.46607 0.901142 0.46612 0.933851 0.397545 0.924135 0.397565 0.901567 0.397461 0.902111 0.398787 0.913998 0.398826 0.911927 0.397463 0.885568 0.398789 0.887707 0.397486 0.939027 0.397536 0.902897 0.401138 0.916139 0.401275 0.904075 0.404332 0.918631 0.404656 0.883077 0.401373 0.880245 0.404983 0.905419 0.428922 0.912942 0.429219 0.912006 0.425106 0.905474 0.425025 0.910791 0.422281 0.905844 0.421559 0.904305 0.436885 0.911907 0.438227 0.913047 0.433844 0.905052 0.432984 0.903203 0.443238 0.908124 0.443775 0.909903 0.441649 0.903445 0.440313 0.90285 0.452456 0.918742 0.45246 0.929033 0.449192 0.935553 0.444785 0.939489 0.439171 0.940895 0.433027 0.939916 0.426757 0.936762 0.420698 0.931211 0.415109 0.90461 0.407951 0.921344 0.40965 0.876099 0.410269 0.865754 0.416146 0.858856 0.422274 0.85408 0.42925 0.845714 0.439016 0.8487 0.443676 0.855252 0.440105 0.853622 0.434905 0.852614 0.447663 0.858958 0.44511 0.858176 0.451853 0.889824 0.45148 0.858947 0.427844 0.863033 0.422095 0.869857 0.416948 0.858451 0.439034 0.857612 0.433475 0.903128 0.410252 0.915613 0.4122 0.910336 0.415321 0.91773 0.418674 0.921258 0.417307 0.91279 0.413538 0.924944 0.416332 0.879341 0.412694 0.930972 0.4215 0.922517 0.423241 0.926792 0.422268 0.92506 0.428584 0.929895 0.42793 0.93442 0.427304 0.935453 0.433435 0.925801 0.434263 0.930838 0.433902 0.924243 0.439743 0.929152 0.439726 0.933786 0.439455 0.922618 0.448568 0.913071 0.450609 0.91472 0.447235 0.9073 0.44856 0.909883 0.449686 0.918464 0.448158 0.90106 0.450464 0.929479 0.444749 0.920523 0.44435 0.924927 0.444695 0.861743 0.443993 0.907779 0.418347 0.914012 0.420577 0.917709 0.42432 0.919641 0.429082 0.919962 0.434273 0.918588 0.43924 0.904848 0.446138 0.911088 0.445577 0.915514 0.4432 0.890897 0.408138 0.891059 0.410492 0.89188 0.404459 0.892481 0.401195 0.892744 0.398811 0.892774 0.397499 0.852987 0.39915 0.859402 0.397672 0.847027 0.401638 0.84144 0.40503 0.836758 0.409301 0.826856 0.427241 0.893304 0.464316 0.894343 0.465793 0.894093 0.464377 0.895401 0.465971 0.893628 0.467665 0.890751 0.471053 0.897653 0.467915 0.895086 0.467874 0.893376 0.47055 0.896513 0.470318 0.906138 0.467954 0.901291 0.467913 0.900442 0.470186 0.905385 0.470181 0.912382 0.468058 0.911527 0.470316 0.918635 0.470453 0.91977 0.468076 0.926488 0.470872 0.927835 0.468189 0.935282 0.468257 0.935209 0.471328 0.877915 0.500707 0.878197 0.500625 0.878935 0.505269 0.878376 0.50543 0.87849 0.500327 0.879515 0.504678 0.878776 0.499827 0.880077 0.503685 0.879041 0.499148 0.880596 0.502336 0.879273 0.498323 0.88105 0.500691 0.879461 0.49739 0.881414 0.498833 0.879595 0.496393 0.881685 0.496848 0.879673 0.495381 0.881831 0.494834 0.879688 0.4944 0.881855 0.492886 0.879641 0.493495 0.881754 0.491093 0.879517 0.492692 0.881496 0.489502 0.879256 0.49199 0.880966 0.488128 0.878724 0.491679 0.879976 0.487255 0.880441 0.487544 0.878985 0.491764 0.880259 0.509816 0.879427 0.510054 0.881118 0.508941 0.881951 0.507469 0.882719 0.50547 0.883385 0.503037 0.883918 0.500283 0.884295 0.497337 0.884501 0.494341 0.884524 0.491438 0.884373 0.488781 0.883999 0.486461 0.88321 0.484429 0.882394 0.483424 0.882124 0.514208 0.881033 0.51452 0.883251 0.513061 0.884343 0.511133 0.885349 0.508513 0.886222 0.505324 0.886921 0.501715 0.887414 0.497854 0.887677 0.493924 0.887702 0.490113 0.887496 0.486645 0.88698 0.48361 0.885938 0.48091 0.884878 0.479558 0.884506 0.51838 0.88317 0.518762 0.885883 0.516979 0.887217 0.514621 0.888447 0.511419 0.889514 0.507521 0.890369 0.503109 0.890971 0.49839 0.891293 0.493586 0.89132 0.488919 0.891054 0.484665 0.890395 0.481066 0.88919 0.477958 0.887817 0.476052 0.887367 0.522273 0.885807 0.522719 0.888975 0.520637 0.890533 0.517885 0.891968 0.514147 0.893214 0.509596 0.894212 0.504446 0.894915 0.498938 0.895291 0.493329 0.895322 0.487882 0.895 0.482915 0.894205 0.478779 0.892842 0.475169 0.891068 0.473073 0.890668 0.525829 0.888906 0.526332 0.892483 0.523982 0.894241 0.520876 0.895861 0.516656 0.897267 0.51152 0.898394 0.505707 0.899187 0.499489 0.899612 0.493158 0.899646 0.487009 0.899286 0.481354 0.898411 0.476638 0.894359 0.528996 0.892421 0.529549 0.896354 0.526965 0.898288 0.52355 0.900069 0.518911 0.901615 0.513263 0.902854 0.506872 0.903726 0.500036 0.904193 0.493075 0.904231 0.486314 0.903834 0.4801 0.902975 0.47504 0.898388 0.531728 0.896302 0.532323 0.900534 0.529543 0.902614 0.525869 0.904531 0.520877 0.906194 0.514801 0.907527 0.507925 0.908466 0.50057 0.908967 0.493081 0.909009 0.485806 0.908572 0.479151 0.907654 0.473824 0.902694 0.533986 0.900491 0.534614 0.90496 0.531679 0.907157 0.527799 0.909181 0.522528 0.910937 0.516111 0.912345 0.50885 0.913336 0.501084 0.913866 0.493175 0.913909 0.485494 0.91346 0.478418 0.912585 0.472851 0.907215 0.535736 0.904927 0.536388 0.909569 0.53334 0.91185 0.529311 0.913952 0.523838 0.915776 0.517175 0.917237 0.509635 0.918266 0.50157 0.918854 0.493342 0.918947 0.485357 0.91844 0.478006 0.91787 0.471971 0.914263 0.537286 0.911914 0.537955 0.916678 0.534827 0.919019 0.530693 0.921175 0.525076 0.923047 0.518239 0.924546 0.510502 0.925585 0.502224 0.926227 0.493754 0.926493 0.485583 0.925762 0.478045 0.924764 0.471485 0.921403 0.537724 0.919062 0.538392 0.92381 0.535275 0.926142 0.531156 0.930338 0.525761 0.93162 0.519674 0.933283 0.512932 0.932692 0.502839 0.933977 0.494768 0.934333 0.486371 0.933206 0.478784 0.931863 0.472204 0.92611 0.537268 0.92382 0.53792 0.928464 0.534872 0.932388 0.530343 0.937335 0.506755 0.941235 0.498334 0.941521 0.487989 0.940371 0.480184 0.938481 0.473907 0.930691 0.536256 0.928485 0.536884 0.934789 0.533043 0.935078 0.534703 0.932989 0.535298 0.938368 0.532576 0.947164 0.489068 0.947066 0.497764 0.946239 0.481893 0.944283 0.476284 0.939209 0.532632 0.937267 0.533185 0.941919 0.530982 0.950689 0.490156 0.950271 0.497772 0.95034 0.48345 0.948203 0.478162 0.943023 0.530074 0.941256 0.530577 0.945589 0.528338 0.95349 0.491089 0.952472 0.498024 0.953154 0.485389 0.951415 0.480527 0.946464 0.527065 0.944898 0.52751 0.948879 0.525086 0.955336 0.498108 0.955494 0.49227 0.955142 0.488211 0.954263 0.484425 0.949389 0.475505 0.954052 0.482326 0.94757 0.475109 0.945693 0.473082 0.943613 0.471998 0.950577 0.521636 0.949187 0.522238 0.951775 0.520708 0.950886 0.519379 0.952605 0.518141 0.95447 0.515316 0.952742 0.516616 0.878125 0.495997 0.943537 0.514246 0.944979 0.511457 0.945299 0.511731 0.944004 0.514141 0.946866 0.510467 0.945612 0.512005 0.946775 0.509925 0.944125 0.524447 0.943125 0.523168 0.943363 0.52176 0.944265 0.522893 0.943213 0.51865 0.9436 0.520352 0.942839 0.519741 0.942465 0.520831 0.942508 0.517563 0.943036 0.516979 0.944472 0.514036 0.943564 0.516394 0.946664 0.509365 0.948503 0.507957 0.948316 0.508687 0.949207 0.508705 0.948096 0.509397 0.949608 0.50791 0.950009 0.507096 0.951195 0.506751 0.950679 0.507606 0.951005 0.508659 0.950161 0.508443 0.951647 0.507843 0.952323 0.510866 0.951744 0.509448 0.952587 0.5089 0.953318 0.510638 0.952296 0.507042 0.953444 0.508317 0.954198 0.510416 0.954069 0.512878 0.953344 0.512779 0.95222 0.51488 0.952538 0.512757 0.952777 0.515115 0.953314 0.515413 0.952001 0.51802 0.951641 0.517475 0.949848 0.518868 0.951263 0.516984 0.950071 0.519673 0.950291 0.520481 0.948367 0.522605 0.94826 0.52146 0.946642 0.521256 0.948152 0.520315 0.946704 0.522693 0.946766 0.524131 0.94537 0.524785 0.945389 0.52319 0.944404 0.521338 0.945409 0.521595 0.948517 0.508521 0.947425 0.509189 0.946164 0.510225 0.943731 0.513771 0.942852 0.515989 0.942484 0.51808 0.944874 0.511783 0.950283 0.508511 0.949456 0.508269 0.942699 0.51973 0.943487 0.520694 0.951552 0.510694 0.95099 0.509314 0.944633 0.521012 0.946034 0.520645 0.951461 0.514432 0.951791 0.512457 0.947604 0.519694 0.949207 0.518265 0.95053 0.516413 0.954352 0.507334 0.955064 0.51004 0.953029 0.50566 0.954691 0.513093 0.953563 0.516187 0.942931 0.511155 0.945738 0.50837 0.941124 0.514785 0.948237 0.525023 0.946042 0.527051 0.950358 0.522206 0.940778 0.525984 0.939919 0.523165 0.942236 0.527579 0.940031 0.519157 0.94836 0.506655 0.95038 0.505668 0.951792 0.505283 0.952106 0.519194 0.94408 0.527997 0.955136 0.505085 0.955458 0.508799 0.953996 0.503048 0.954947 0.51289 0.953571 0.516724 0.940392 0.509704 0.943959 0.505926 0.937487 0.514053 0.946965 0.527152 0.943743 0.529685 0.949863 0.52392 0.936263 0.528363 0.934831 0.524989 0.938515 0.530358 0.93544 0.520327 0.947235 0.504116 0.949823 0.503295 0.952034 0.502955 0.951882 0.52041 0.941028 0.53079 0.956255 0.501869 0.956376 0.507194 0.955436 0.512282 0.95378 0.516679 0.954272 0.512902 0.953969 0.514386 0.955477 0.513065 0.955509 0.511632 0.956562 0.510151 0.957541 0.50583 0.957528 0.506237 0.957401 0.500104 0.957323 0.498901 0.956684 0.496896 0.956413 0.492938 0.956425 0.492794 0.955922 0.48933 0.955605 0.489791 0.952251 0.480529 0.95403 0.483685 0.955302 0.484788 0.955335 0.486204 0.955539 0.486154 0.954877 0.485325 0.956687 0.508947 0.956754 0.495687 0.955045 0.487387 0.877848 0.505182 0.877652 0.500582 0.87737 0.504506 0.877412 0.500243 0.876974 0.503437 0.877218 0.499703 0.87668 0.502023 0.877063 0.498994 0.876501 0.50033 0.876979 0.498142 0.876446 0.498438 0.87696 0.497191 0.876522 0.496436 0.877006 0.496186 0.876728 0.49442 0.877115 0.495174 0.877054 0.492488 0.877281 0.494204 0.877479 0.49073 0.877498 0.49332 0.877999 0.489197 0.877767 0.492546 0.878719 0.487808 0.878144 0.491879 0.879235 0.487423 0.878402 0.491725 0.878643 0.509686 0.877934 0.508686 0.877348 0.507101 0.876912 0.505005 0.876647 0.502497 0.876565 0.499694 0.876669 0.496727 0.876956 0.493734 0.877416 0.490859 0.878045 0.488251 0.878803 0.485988 0.879891 0.48389 0.880652 0.483253 0.880004 0.514038 0.879075 0.512727 0.878307 0.510649 0.877736 0.507903 0.877388 0.504616 0.87728 0.500942 0.877417 0.497054 0.877793 0.493132 0.878389 0.48936 0.879214 0.485947 0.880199 0.482989 0.881623 0.480314 0.882641 0.479405 0.881911 0.518172 0.880775 0.516569 0.879836 0.51403 0.879138 0.510673 0.878713 0.506655 0.878582 0.502165 0.878749 0.497412 0.879208 0.492618 0.879955 0.488021 0.881001 0.483899 0.88231 0.480367 0.883909 0.47731 0.885135 0.475926 0.884336 0.52203 0.883011 0.520159 0.881915 0.517195 0.8811 0.513276 0.880604 0.508586 0.88045 0.503344 0.880646 0.497795 0.881181 0.492199 0.882059 0.48684 0.883257 0.482017 0.884772 0.477872 0.886828 0.474331 0.888116 0.472377 0.887245 0.525554 0.885749 0.523442 0.884512 0.520096 0.883592 0.515673 0.883032 0.510379 0.882858 0.504462 0.883079 0.498199 0.883683 0.491882 0.884656 0.485819 0.885976 0.480334 0.887771 0.475644 0.888962 0.472096 0.890594 0.528694 0.888949 0.526372 0.887589 0.522693 0.886578 0.51783 0.885962 0.512009 0.885771 0.505504 0.886014 0.498617 0.886678 0.491672 0.887734 0.484992 0.889161 0.478945 0.891005 0.474124 0.894335 0.531403 0.892565 0.528905 0.891102 0.524947 0.890014 0.519714 0.889351 0.513452 0.889146 0.506453 0.889407 0.499043 0.890122 0.491571 0.891258 0.484384 0.892815 0.477978 0.894695 0.473363 0.898413 0.533643 0.896544 0.531004 0.894999 0.526825 0.89385 0.5213 0.893151 0.514687 0.892934 0.507295 0.893209 0.499472 0.893965 0.491581 0.895164 0.483992 0.89686 0.477387 0.898865 0.473076 0.902769 0.53538 0.900829 0.53264 0.899224 0.5283 0.898031 0.522562 0.897305 0.515695 0.897079 0.50802 0.897366 0.499895 0.89815 0.491701 0.899396 0.483821 0.901449 0.477074 0.903819 0.472976 0.909699 0.53692 0.907707 0.534109 0.906061 0.529655 0.904836 0.523767 0.904091 0.516721 0.90386 0.508844 0.904153 0.500507 0.904958 0.492099 0.906237 0.484012 0.908008 0.477129 0.910034 0.473198 0.916854 0.53736 0.91487 0.534559 0.91323 0.530122 0.914164 0.524465 0.913164 0.518196 0.913437 0.51134 0.91133 0.50108 0.912131 0.492703 0.913405 0.484646 0.91513 0.47783 0.916994 0.473623 0.92166 0.536911 0.919719 0.534172 0.91917 0.529284 0.917172 0.505296 0.919838 0.496406 0.920904 0.486229 0.92238 0.479225 0.924263 0.474614 0.926405 0.535913 0.924828 0.532245 0.931019 0.534378 0.929686 0.53188 0.92797 0.487724 0.927599 0.495894 0.929366 0.480734 0.931925 0.475167 0.935435 0.53233 0.934387 0.530379 0.933232 0.488977 0.932764 0.496065 0.934736 0.482159 0.937602 0.476887 0.93959 0.529799 0.938848 0.527798 0.937731 0.490249 0.936964 0.496523 0.939215 0.484123 0.942421 0.479379 0.943421 0.526821 0.942722 0.524593 0.94207 0.497013 0.942329 0.491435 0.943599 0.487511 0.946933 0.482758 0.949756 0.480976 0.945342 0.476815 0.940652 0.473783 0.947564 0.521395 0.9466 0.520277 0.951324 0.514898 0.949518 0.517928 0.928377 0.510114 0.926885 0.51291 0.927854 0.512845 0.929178 0.51043 0.92998 0.510746 0.931406 0.509225 0.930823 0.508639 0.92835 0.521984 0.930534 0.523359 0.930891 0.521821 0.928964 0.520607 0.929579 0.519229 0.928441 0.517467 0.927597 0.51852 0.926179 0.516255 0.926753 0.519573 0.927195 0.51571 0.928211 0.515165 0.928823 0.512781 0.932374 0.506682 0.930239 0.508053 0.932657 0.507439 0.93294 0.508196 0.934517 0.507536 0.93451 0.506707 0.936567 0.505592 0.934502 0.505878 0.936317 0.506456 0.936067 0.50732 0.937546 0.507578 0.93807 0.506748 0.938901 0.508422 0.940036 0.50988 0.941088 0.509726 0.939772 0.507879 0.940713 0.507314 0.938594 0.505926 0.942911 0.511998 0.942269 0.509491 0.941755 0.511888 0.940774 0.511818 0.940867 0.513981 0.941724 0.514237 0.941696 0.517149 0.942674 0.514592 0.940898 0.516619 0.940099 0.51609 0.938667 0.517973 0.939267 0.518807 0.937547 0.521739 0.939868 0.519641 0.937153 0.52057 0.936759 0.519402 0.934851 0.520311 0.935057 0.52176 0.932933 0.523788 0.935263 0.523209 0.932985 0.522196 0.933038 0.520604 0.931248 0.520284 0.932573 0.508007 0.934161 0.507367 0.930964 0.509008 0.927841 0.514787 0.928411 0.512543 0.928106 0.516928 0.929515 0.510546 0.935671 0.507169 0.937081 0.507438 0.929093 0.51864 0.93071 0.519671 0.938351 0.508298 0.9394 0.509723 0.932552 0.520045 0.934434 0.519715 0.940079 0.511519 0.940113 0.513519 0.936336 0.518792 0.938116 0.517377 0.939405 0.515521 0.943638 0.508965 0.941943 0.506311 0.939071 0.504531 0.94388 0.51543 0.944335 0.512165 0.927944 0.506963 0.925069 0.509715 0.923231 0.513349 0.935271 0.526189 0.938229 0.524222 0.940839 0.521447 0.923484 0.521848 0.925731 0.524779 0.928789 0.526502 0.922597 0.517761 0.93396 0.504385 0.931029 0.505302 0.936534 0.504088 0.942769 0.518413 0.932116 0.527039 0.945351 0.507568 0.943089 0.503744 0.939896 0.502018 0.945354 0.516015 0.946118 0.511811 0.925289 0.504712 0.920962 0.50815 0.918385 0.51252 0.934537 0.528948 0.938552 0.526478 0.941809 0.523283 0.918305 0.523665 0.921702 0.527196 0.925959 0.529352 0.917212 0.518867 0.933078 0.501722 0.929349 0.502508 0.936447 0.501609 0.943896 0.519878 0.930309 0.529931 0.948005 0.505607 0.944871 0.499392 0.947806 0.516062 0.9491 0.511191 0.953215 0.511264 0.952698 0.512701 0.951135 0.50884 0.950868 0.504414 0.946032 0.497811 0.946155 0.49879 0.9504 0.504692 0.944108 0.496015 0.944681 0.492183 0.945966 0.489086 0.945497 0.488606 0.944291 0.491984 0.951345 0.48426 0.948386 0.485293 0.952907 0.485943 0.952013 0.507755 0.944606 0.494766 0.94856 0.486751 0.889967 0.448966 0.879572 0.4873 0.878531 0.491695 0.881189 0.483034 0.883359 0.479059 0.88597 0.475436 0.826451 0.427416 0.889758 0.472115 0.881748 0.482959 0.884054 0.478968 0.886811 0.475429 0.942835 0.472365 0.877975 0.397658 0.883515 0.397651 0.873951 0.397664 0.870831 0.397671 0.867889 0.397674 0.918562 0.397639 0.925482 0.397634 0.901603 0.397646 0.909465 0.397642 0.891034 0.397645 0.929288 0.397637 0.894812 0.397645 0.931273 0.397662 0.86549 0.397668 0.931235 0.397655 0.882529 0.39765 0.877003 0.397658 0.871595 0.397671 0.868659 0.397671 0.868707 0.397667 0.925845 0.397644 0.918784 0.397657 0.909614 0.397666 0.901249 0.39767 0.890498 0.397656 0.92961 0.397643 0.894099 0.397656 0.867711 0.397671 0.900103 0.397679 0.595916 0.679782 0.593633 0.724091 0.587548 0.772055 0.579229 0.819401 0.570764 0.860428 0.56898 0.893979 0.055194 0.327681 0.056512 0.244825 0.056323 0.176259 0.056343 0.11532 0.057144 0.041836 0.468306 0.320445 0.459246 0.232082 0.470583 0.402538 0.456894 0.171519 0.044392 0.51728 0.04804 0.442488 0.039555 0.560029 0.472222 0.467543 0.655545 0.572596 0.685594 0.967391 0.590033 0.92387 0.595756 0.680499 0.590769 0.76975 0.682275 0.551691 0.647404 0.965201 0.571758 0.851938 0.600135 0.64164 0.623018 0.605621 0.617347 0.944413 0.720327 0.535205</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2277\" offset=\"0\" source=\"#LOD3spShape-lib-map1-array\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"LOD3spShape-lib-vertices\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#LOD3spShape-lib-positions\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4212\" material=\"blinn3SG\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#LOD3spShape-lib-vertices\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"NORMAL\" source=\"#LOD3spShape-lib-normals\" />\r\n\t\t\t\t\t<input offset=\"2\" semantic=\"TEXCOORD\" set=\"0\" source=\"#LOD3spShape-lib-map1\" />\r\n\t\t\t\t\t<p>89 0 23 243 1 26 6 3 29 6 3 29 243 1 26 90 2 28 243 1 26 89 0 23 91 4 30 91 4 30 89 0 23 5 5 31 92 6 33 244 7 35 5 5 31 5 5 31 244 7 35 91 4 30 244 7 35 92 6 33 299 8 36 299 8 36 92 6 33 218 9 37 95 11 41 93 12 42 7 10 39 7 10 39 93 12 42 8 13 57 93 12 42 95 11 41 9 15 62 9 15 62 95 11 41 94 14 61 245 17 66 89 0 23 96 16 65 96 16 65 89 0 23 6 3 29 89 0 23 245 17 66 5 5 31 5 5 31 245 17 66 97 18 67 245 17 66 98 19 68 97 18 67 97 18 67 98 19 68 11 20 69 98 19 68 245 17 66 10 21 70 10 21 70 245 17 66 96 16 65 246 22 71 92 6 33 97 18 67 97 18 67 92 6 33 5 5 31 92 6 33 246 22 71 218 9 37 218 9 37 246 22 71 300 23 72 246 22 71 99 24 84 300 23 72 300 23 72 99 24 84 219 25 85 99 24 84 246 22 71 11 20 69 11 20 69 246 22 71 97 18 67 247 27 89 93 12 42 12 26 86 12 26 86 93 12 42 9 15 62 93 12 42 247 27 89 8 13 57 8 13 57 247 27 89 100 28 90 102 30 137 101 31 138 13 29 135 13 29 135 101 31 138 14 32 139 101 31 138 102 30 137 8 13 57 8 13 57 102 30 137 7 10 39 248 34 141 98 19 68 103 33 140 103 33 140 98 19 68 10 21 70 98 19 68 248 34 141 11 20 69 11 20 69 248 34 141 104 35 142 248 34 141 105 36 200 104 35 142 104 35 142 105 36 200 16 37 246 105 36 200 248 34 141 15 38 249 15 38 249 248 34 141 103 33 140 107 39 252 101 31 138 100 28 90 100 28 90 101 31 138 8 13 57 101 31 138 107 39 252 14 32 139 14 32 139 107 39 252 106 40 253 108 41 254 109 42 256 14 32 139 14 32 139 109 42 256 13 29 135 109 42 256 108 41 254 18 43 259 18 43 259 108 41 254 17 44 260 111 45 262 108 41 254 106 40 253 106 40 253 108 41 254 14 32 139 108 41 254 111 45 262 17 44 260 17 44 260 111 45 262 110 46 265 20 47 266 112 48 283 19 50 286 19 50 286 112 48 283 113 49 285 113 49 285 112 48 283 17 44 260 17 44 260 112 48 283 18 43 259 115 51 289 113 49 285 110 46 265 110 46 265 113 49 285 17 44 260 115 51 289 114 52 290 113 49 285 113 49 285 114 52 290 19 50 286 22 53 291 116 54 292 21 56 294 21 56 294 116 54 292 117 55 293 116 54 292 20 47 266 117 55 293 117 55 293 20 47 266 19 50 286 114 52 290 119 57 295 19 50 286 19 50 286 119 57 295 117 55 293 119 57 295 118 58 296 117 55 293 117 55 293 118 58 296 21 56 294 23 59 297 249 60 298 24 62 303 24 62 303 249 60 298 120 61 300 249 60 298 22 53 291 120 61 300 120 61 300 22 53 291 21 56 294 118 58 296 122 63 304 21 56 294 21 56 294 122 63 304 120 61 300 122 63 304 121 64 884 120 61 300 120 61 300 121 64 884 24 62 303 26 65 885 339 66 886 123 68 888 123 68 888 339 66 886 340 67 887 123 68 888 340 67 887 28 70 890 28 70 890 340 67 887 341 69 889 340 67 887 124 71 891 341 69 889 341 69 889 124 71 891 27 72 892 124 71 891 340 67 887 25 73 893 25 73 893 340 67 887 339 66 886 250 75 895 307 76 896 125 74 894 125 74 894 307 76 896 29 77 897 307 76 896 250 75 895 227 79 899 227 79 899 250 75 895 126 78 898 250 75 895 123 68 888 126 78 898 126 78 898 123 68 888 28 70 890 123 68 888 250 75 895 26 65 885 26 65 885 250 75 895 125 74 894 126 78 898 127 80 900 227 79 899 227 79 899 127 80 900 45 81 901 126 78 898 28 70 890 127 80 900 127 80 900 28 70 890 30 82 902 128 83 0 251 84 1 31 86 3 31 86 3 251 84 1 308 85 2 308 85 74 251 84 75 228 88 77 228 88 77 251 84 75 129 87 76 251 84 75 130 89 78 129 87 76 129 87 76 130 89 78 33 90 79 251 84 1 128 83 0 130 89 4 130 89 4 128 83 0 32 91 12 131 92 13 252 93 14 34 95 16 34 95 16 252 93 14 309 94 15 252 93 14 128 83 0 309 94 15 309 94 15 128 83 0 31 86 3 128 83 0 252 93 14 32 91 12 32 91 12 252 93 14 132 96 17 252 93 14 131 92 13 132 96 17 132 96 17 131 92 13 35 97 18 133 98 82 253 99 83 35 97 18 35 97 18 253 99 83 132 96 17 253 99 83 134 100 91 132 96 17 132 96 17 134 100 91 32 91 12 134 100 91 253 99 83 36 102 93 36 102 93 253 99 83 156 101 92 253 99 83 133 98 82 156 101 92 156 101 92 133 98 82 38 103 94 135 104 96 254 105 97 39 107 101 39 107 101 254 105 97 136 106 98 136 106 98 254 105 97 37 109 105 37 109 105 254 105 97 137 108 102 254 105 97 133 98 82 137 108 102 137 108 102 133 98 82 35 97 18 254 105 97 135 104 96 133 98 82 133 98 82 135 104 96 38 103 94 255 110 903 99 24 84 104 35 142 104 35 142 99 24 84 11 20 69 99 24 84 255 110 903 219 25 85 219 25 85 255 110 903 310 111 904 255 110 903 138 112 905 310 111 904 310 111 904 138 112 905 1978 113 906 138 112 905 255 110 903 16 37 246 16 37 246 255 110 903 104 35 142 204 114 5 285 115 6 59 117 8 59 117 8 285 115 6 139 116 7 285 115 6 203 118 9 139 116 7 139 116 7 203 118 9 57 119 10 105 36 200 256 120 907 16 37 246 16 37 246 256 120 907 140 121 908 256 120 907 135 104 909 140 121 908 140 121 908 135 104 909 39 107 910 135 104 909 256 120 907 38 103 912 38 103 912 256 120 907 141 122 911 256 120 907 105 36 200 141 122 911 141 122 911 105 36 200 15 38 249 138 112 905 257 123 913 1978 113 906 1978 113 906 257 123 913 142 124 914 257 123 913 154 125 915 142 124 914 142 124 914 154 125 915 229 126 916 154 125 915 257 123 913 39 107 910 39 107 910 257 123 913 140 121 908 257 123 913 138 112 905 140 121 908 140 121 908 138 112 905 16 37 246 284 128 19 202 129 20 143 127 11 143 127 11 202 129 20 60 130 21 203 118 9 284 128 19 57 119 10 57 119 10 284 128 19 143 127 11 56 132 918 2065 133 919 144 131 917 144 131 917 2065 133 919 2066 134 920 311 135 921 258 136 922 29 77 897 29 77 897 258 136 922 125 74 894 258 136 922 145 137 923 125 74 894 125 74 894 145 137 923 26 65 885 145 137 80 258 136 81 40 139 99 40 139 99 258 136 81 146 138 95 258 136 81 311 135 100 146 138 95 146 138 95 311 135 100 41 140 103 43 141 924 147 142 925 42 144 927 42 144 927 147 142 925 148 143 926 147 142 925 23 59 297 148 143 926 148 143 926 23 59 297 24 62 303 149 145 928 259 146 929 25 73 893 25 73 893 259 146 929 124 71 891 259 146 929 150 147 976 124 71 891 124 71 891 150 147 976 27 72 892 150 147 976 259 146 929 43 141 924 43 141 924 259 146 929 147 142 925 259 146 929 149 145 928 147 142 925 147 142 925 149 145 928 23 59 297 121 64 884 152 148 978 24 62 303 24 62 303 152 148 978 148 143 926 152 148 978 151 149 980 148 143 926 148 143 926 151 149 980 42 144 927 231 150 981 30 82 902 341 69 889 341 69 889 30 82 902 28 70 890 341 69 889 27 72 892 231 150 981 231 150 981 27 72 892 44 151 982 153 152 104 260 153 106 33 90 79 33 90 79 260 153 106 129 87 76 260 153 106 312 154 107 129 87 76 129 87 76 312 154 107 228 88 77 312 154 107 260 153 106 41 140 103 41 140 103 260 153 106 146 138 95 260 153 106 153 152 104 146 138 95 146 138 95 153 152 104 40 139 99 154 125 110 261 155 111 229 126 113 229 126 113 261 155 111 313 156 112 261 155 111 155 157 114 313 156 112 313 156 112 155 157 114 230 158 115 155 157 114 261 155 111 37 109 105 37 109 105 261 155 111 136 106 98 261 155 111 154 125 110 136 106 98 136 106 98 154 125 110 39 107 101 262 159 108 181 160 109 153 152 104 153 152 104 181 160 109 40 139 99 181 160 116 262 159 117 36 102 93 36 102 93 262 159 117 134 100 91 262 159 117 130 89 4 134 100 91 134 100 91 130 89 4 32 91 12 130 89 78 262 159 108 33 90 79 33 90 79 262 159 108 153 152 104 137 108 102 263 161 118 37 109 105 37 109 105 263 161 118 155 157 114 155 157 114 263 161 118 230 158 115 230 158 115 263 161 118 314 162 119 263 161 118 131 92 13 314 162 119 314 162 119 131 92 13 34 95 16 131 92 13 263 161 118 35 97 18 35 97 18 263 161 118 137 108 102 151 149 980 241 163 983 42 144 927 42 144 927 241 163 983 157 164 985 241 163 983 242 165 987 157 164 985 157 164 985 242 165 987 83 166 1012 264 168 1016 160 169 1017 159 167 1013 159 167 1013 160 169 1017 44 151 982 160 169 1017 264 168 1016 81 171 1019 81 171 1019 264 168 1016 239 170 1018 264 168 1016 238 172 1020 239 170 1018 239 170 1018 238 172 1020 82 173 1023 238 172 1020 264 168 1016 43 141 924 43 141 924 264 168 1016 159 167 1013 82 173 1023 238 172 1020 83 166 1012 83 166 1012 238 172 1020 157 164 985 157 164 985 238 172 1020 42 144 927 42 144 927 238 172 1020 43 141 924 160 169 1017 265 174 1036 44 151 982 44 151 982 265 174 1036 231 150 981 265 174 1036 232 175 1038 231 150 981 231 150 981 232 175 1038 30 82 902 232 175 1038 265 174 1036 80 177 1040 80 177 1040 265 174 1036 237 176 1039 265 174 1036 160 169 1017 237 176 1039 237 176 1039 160 169 1017 81 171 1019 163 178 1041 164 179 1042 94 14 61 94 14 61 164 179 1042 9 15 62 165 180 1043 266 181 1045 46 183 1047 46 183 1047 266 181 1045 166 182 1046 266 181 1045 163 178 1041 166 182 1046 166 182 1046 163 178 1041 94 14 61 288 184 1048 207 185 1049 90 2 28 90 2 28 207 185 1049 6 3 29 164 179 1042 167 186 1050 9 15 62 9 15 62 167 186 1050 12 26 86 267 187 1051 168 188 1052 166 182 1046 166 182 1046 168 188 1052 46 183 1047 168 188 1052 267 187 1051 47 190 1054 47 190 1054 267 187 1051 169 189 1053 267 187 1051 95 11 41 169 189 1053 169 189 1053 95 11 41 7 10 39 95 11 41 267 187 1051 94 14 61 94 14 61 267 187 1051 166 182 1046 207 185 1049 287 191 1055 6 3 29 6 3 29 287 191 1055 96 16 65 287 191 1055 206 192 1056 96 16 65 96 16 65 206 192 1056 10 21 70 170 193 22 268 194 2246 63 196 25 63 196 25 268 194 2246 171 195 24 268 194 2246 172 197 2247 171 195 24 171 195 24 172 197 2247 58 198 27 268 194 1058 173 199 1059 172 197 1057 172 197 1057 173 199 1059 64 200 1060 173 199 1059 268 194 1058 62 201 1062 62 201 1062 268 194 1058 170 193 1061 172 197 2247 269 202 2248 58 198 27 58 198 27 269 202 2248 174 203 32 174 203 32 269 202 2248 61 205 34 61 205 34 269 202 2248 175 204 2249 175 204 1063 269 202 1064 65 207 1066 65 207 1066 269 202 1064 176 206 1065 269 202 1064 172 197 1057 176 206 1065 176 206 1065 172 197 1057 64 200 1060 270 208 2250 177 209 38 175 204 2249 175 204 2249 177 209 38 61 205 34 177 209 38 270 208 2250 66 211 40 66 211 40 270 208 2250 178 210 2251 178 210 1067 270 208 1068 67 213 1070 67 213 1070 270 208 1068 179 212 1069 270 208 1068 175 204 1063 179 212 1069 179 212 1069 175 204 1063 65 207 1066 271 215 1072 149 145 928 180 214 1071 180 214 1071 149 145 928 25 73 893 149 145 928 271 215 1072 23 59 297 23 59 297 271 215 1072 249 60 298 271 215 1072 48 216 1073 249 60 298 249 60 298 48 216 1073 22 53 291 150 147 976 159 167 1013 27 72 892 27 72 892 159 167 1013 44 151 982 159 167 1013 150 147 976 43 141 924 48 216 1073 272 217 1074 22 53 291 22 53 291 272 217 1074 116 54 292 272 217 1074 49 218 1075 116 54 292 116 54 292 49 218 1075 20 47 266 49 218 1075 273 219 1076 20 47 266 20 47 266 273 219 1076 112 48 283 112 48 283 273 219 1076 18 43 259 18 43 259 273 219 1076 50 220 1077 274 221 1078 109 42 256 50 220 1077 50 220 1077 109 42 256 18 43 259 109 42 256 274 221 1078 13 29 135 13 29 135 274 221 1078 51 222 1079 275 223 1080 52 224 1081 169 189 1053 169 189 1053 52 224 1081 47 190 1054 275 223 1080 102 30 137 51 222 1079 51 222 1079 102 30 137 13 29 135 102 30 137 275 223 1080 7 10 39 7 10 39 275 223 1080 169 189 1053 206 192 1056 286 225 1082 10 21 70 10 21 70 286 225 1082 103 33 140 286 225 1082 53 226 1083 103 33 140 103 33 140 53 226 1083 15 38 249 53 226 1083 276 227 1084 15 38 249 15 38 249 276 227 1084 141 122 911 276 227 1084 54 228 1085 141 122 911 141 122 911 54 228 1085 38 103 912 277 229 1087 55 230 1088 156 101 1086 156 101 1086 55 230 1088 36 102 1089 54 228 1085 277 229 1087 38 103 912 38 103 912 277 229 1087 156 101 1086 182 231 1090 181 160 1091 55 230 1088 55 230 1088 181 160 1091 36 102 1089 181 160 1091 182 231 1090 40 139 1092 40 139 1092 182 231 1090 56 132 918 283 232 43 183 233 44 202 129 20 202 129 20 183 233 44 60 130 21 201 234 45 68 235 46 283 232 43 283 232 43 68 235 46 183 233 44 144 131 917 145 137 923 56 132 918 56 132 918 145 137 923 40 139 1092 321 236 1093 339 66 886 144 131 917 339 66 886 26 65 885 144 131 917 144 131 917 26 65 885 145 137 923 2069 237 1094 2070 238 1095 276 227 1084 276 227 1084 2070 238 1095 54 228 1085 290 239 47 208 240 48 278 242 50 278 242 50 208 240 48 184 241 49 210 243 51 290 239 47 185 244 52 185 244 52 290 239 47 278 242 50 2068 245 1096 2069 237 1094 53 226 1083 53 226 1083 2069 237 1094 276 227 1084 2071 246 1097 2073 247 1098 277 229 1087 277 229 1087 2073 247 1098 55 230 1088 289 248 53 209 249 54 279 251 56 279 251 56 209 249 54 186 250 55 208 240 48 289 248 53 184 241 49 184 241 49 289 248 53 279 251 56 2070 238 1095 2071 246 1097 54 228 1085 54 228 1085 2071 246 1097 277 229 1087 275 223 1080 2075 252 1099 52 224 1081 52 224 1081 2075 252 1099 2076 253 1100 212 255 58 2053 256 59 294 254 2265 294 254 2265 2053 256 59 280 257 60 294 254 1102 280 257 1103 214 258 1101 214 258 1101 280 257 1103 187 259 1104 2075 252 1099 275 223 1080 2074 260 1105 2074 260 1105 275 223 1080 51 222 1079 2072 261 1106 2068 245 1096 286 225 1082 286 225 1082 2068 245 1096 53 226 1083 292 262 63 210 243 51 2052 263 64 2052 263 64 210 243 51 185 244 52 274 221 1078 2078 264 1107 51 222 1079 51 222 1079 2078 264 1107 2074 260 1105 214 258 1101 187 259 1104 293 265 1108 293 265 1108 187 259 1104 2055 266 1109 293 265 1108 2055 266 1109 213 267 1110 213 267 1110 2055 266 1109 188 268 1111 2078 264 1107 274 221 1078 2079 269 1112 2079 269 1112 274 221 1078 50 220 1077 273 219 1076 2080 270 1113 50 220 1077 50 220 1077 2080 270 1113 2079 269 1112 213 267 1110 188 268 1111 295 271 1114 295 271 1114 188 268 1111 2056 272 1115 215 273 1116 295 271 1114 189 274 1117 189 274 1117 295 271 1114 2056 272 1115 2081 275 1118 2080 270 1113 49 218 1075 49 218 1075 2080 270 1113 273 219 1076 2084 276 1119 2085 277 1120 271 215 1072 271 215 1072 2085 277 1120 48 216 1073 297 278 1121 216 279 1122 281 281 1124 281 281 1124 216 279 1122 190 280 1123 217 282 87 297 278 73 191 283 88 191 283 88 297 278 73 281 281 2271 2083 284 1125 2084 276 1119 180 214 1071 180 214 1071 2084 276 1119 271 215 1072 2082 285 1126 2081 275 1118 272 217 1074 272 217 1074 2081 275 1118 49 218 1075 296 286 1127 215 273 1116 2057 287 1128 2057 287 1128 215 273 1116 189 274 1117 216 279 1122 296 286 1127 190 280 1123 190 280 1123 296 286 1127 2057 287 1128 2085 277 1120 2082 285 1126 48 216 1073 48 216 1073 2082 285 1126 272 217 1074 182 231 1090 2064 288 1129 56 132 918 56 132 918 2064 288 1129 2065 133 919 211 290 121 2051 291 122 291 289 120 291 289 120 2051 291 122 2050 292 123 291 289 120 2050 292 123 209 249 54 209 249 54 2050 292 123 186 250 55 2064 288 1129 182 231 1090 2073 247 1098 2073 247 1098 182 231 1090 55 230 1088 298 293 124 282 294 125 211 290 121 211 290 121 282 294 125 2051 291 122 323 295 126 322 296 127 298 293 124 298 293 124 322 296 127 282 294 125 70 297 128 192 298 129 57 119 10 57 119 10 192 298 129 139 116 7 59 117 8 139 116 7 71 299 130 71 299 130 139 116 7 192 298 129 69 300 131 193 301 132 60 130 21 60 130 21 193 301 132 143 127 11 57 119 10 143 127 11 70 297 128 70 297 128 143 127 11 193 301 132 194 303 134 170 193 22 73 302 133 73 302 133 170 193 22 63 196 25 170 193 1061 194 303 1130 62 201 1062 62 201 1062 194 303 1130 74 304 1131 71 299 130 205 305 136 59 117 8 59 117 8 205 305 136 204 114 5 62 201 1062 74 304 1131 173 199 1059 173 199 1059 74 304 1131 195 306 1132 173 199 1059 195 306 1132 64 200 1060 64 200 1060 195 306 1132 75 307 1133 64 200 1060 75 307 1133 176 206 1065 176 206 1065 75 307 1133 196 308 1134 65 207 1066 176 206 1065 76 309 1135 76 309 1135 176 206 1065 196 308 1134 77 310 1136 197 311 1137 67 213 1070 67 213 1070 197 311 1137 178 210 1067 66 211 40 178 210 2251 78 312 143 78 312 143 178 210 2251 197 311 2267 76 309 1135 198 313 1138 65 207 1066 65 207 1066 198 313 1138 179 212 1069 67 213 1070 179 212 1069 77 310 1136 77 310 1136 179 212 1069 198 313 1138 199 315 202 183 233 44 72 314 201 72 314 201 183 233 44 68 235 46 69 300 131 60 130 21 199 315 202 199 315 202 60 130 21 183 233 44 72 314 201 68 235 46 200 316 203 200 316 203 68 235 46 201 234 45 200 316 203 201 234 45 338 317 204 338 317 204 201 234 45 337 318 205 337 318 205 66 211 40 338 317 204 338 317 204 66 211 40 78 312 143 283 232 43 336 319 206 201 234 45 201 234 45 336 319 206 337 318 205 177 209 38 336 319 206 61 205 34 61 205 34 336 319 206 335 320 207 334 321 208 335 320 207 284 128 19 284 128 19 335 320 207 202 129 20 334 321 208 333 322 209 174 203 32 174 203 32 333 322 209 58 198 27 332 323 210 333 322 209 285 115 6 285 115 6 333 322 209 203 118 9 332 323 210 331 324 232 171 195 24 171 195 24 331 324 232 63 196 25 331 324 232 204 114 5 330 325 233 330 325 233 204 114 5 205 305 136 331 324 232 330 325 233 63 196 25 63 196 25 330 325 233 73 302 133 329 326 234 292 262 63 2054 327 235 2054 327 235 292 262 63 2052 263 64 2077 328 1139 328 329 1140 2076 253 1100 2076 253 1100 328 329 1140 52 224 1081 328 329 1140 327 330 1141 52 224 1081 52 224 1081 327 330 1141 47 190 1054 326 331 1142 327 330 1141 287 191 1055 287 191 1055 327 330 1141 206 192 1056 168 188 1052 326 331 1142 46 183 1047 46 183 1047 326 331 1142 325 332 1143 324 333 1144 325 332 1143 288 184 1048 288 184 1048 325 332 1143 207 185 1049 289 248 53 208 240 48 193 301 132 193 301 132 208 240 48 70 297 128 209 249 54 289 248 53 69 300 131 69 300 131 289 248 53 193 301 132 210 243 51 292 262 63 71 299 130 71 299 130 292 262 63 205 305 136 208 240 48 290 239 47 70 297 128 70 297 128 290 239 47 192 298 129 290 239 47 210 243 51 192 298 129 192 298 129 210 243 51 71 299 130 199 315 202 291 289 120 69 300 131 69 300 131 291 289 120 209 249 54 291 289 120 199 315 202 211 290 121 211 290 121 199 315 202 72 314 201 292 262 63 329 326 234 205 305 136 205 305 136 329 326 234 330 325 233 2053 256 59 212 255 58 2054 327 235 2054 327 235 212 255 58 329 326 234 195 306 1132 293 265 1108 75 307 1133 75 307 1133 293 265 1108 213 267 1110 293 265 1108 195 306 1132 214 258 1101 214 258 1101 195 306 1132 74 304 1131 294 254 2265 194 303 134 212 255 58 212 255 58 194 303 134 73 302 133 194 303 1130 294 254 1102 74 304 1131 74 304 1131 294 254 1102 214 258 1101 295 271 1114 196 308 1134 213 267 1110 213 267 1110 196 308 1134 75 307 1133 295 271 1114 215 273 1116 196 308 1134 196 308 1134 215 273 1116 76 309 1135 215 273 1116 296 286 1127 76 309 1135 76 309 1135 296 286 1127 198 313 1138 296 286 1127 216 279 1122 198 313 1138 198 313 1138 216 279 1122 77 310 1136 323 295 126 217 282 87 322 296 127 322 296 127 217 282 87 191 283 88 217 282 87 323 295 126 78 312 143 78 312 143 323 295 126 338 317 204 216 279 1122 297 278 1121 77 310 1136 77 310 1136 297 278 1121 197 311 1137 297 278 73 217 282 87 197 311 2267 197 311 2267 217 282 87 78 312 143 200 316 203 298 293 124 72 314 201 72 314 201 298 293 124 211 290 121 247 27 89 301 334 1145 100 28 90 100 28 90 301 334 1145 220 335 1146 301 334 1145 247 27 89 221 336 1147 221 336 1147 247 27 89 12 26 86 107 39 252 302 337 1148 106 40 253 106 40 253 302 337 1148 222 338 1149 302 337 1148 107 39 252 220 335 1146 220 335 1146 107 39 252 100 28 90 111 45 262 303 339 1150 110 46 265 110 46 265 303 339 1150 223 340 1151 303 339 1150 111 45 262 222 338 1149 222 338 1149 111 45 262 106 40 253 304 341 1152 224 342 1153 115 51 289 115 51 289 224 342 1153 114 52 290 223 340 1151 304 341 1152 110 46 265 110 46 265 304 341 1152 115 51 289 305 343 1154 225 344 1155 119 57 295 119 57 295 225 344 1155 118 58 296 224 342 1153 305 343 1154 114 52 290 114 52 290 305 343 1154 119 57 295 306 345 1156 226 346 1157 122 63 304 122 63 304 226 346 1157 121 64 884 225 344 1155 306 345 1156 118 58 296 118 58 296 306 345 1156 122 63 304 346 347 1158 345 348 1159 152 148 978 152 148 978 345 348 1159 151 149 980 152 148 978 121 64 884 346 347 1158 346 347 1158 121 64 884 226 346 1157 344 349 1160 343 350 1161 241 163 983 241 163 983 343 350 1161 242 165 987 241 163 983 151 149 980 344 349 1160 344 349 1160 151 149 980 345 348 1159 167 186 1050 315 351 1162 12 26 86 12 26 86 315 351 1162 221 336 1147 316 352 1163 127 80 900 232 175 1038 232 175 1038 127 80 900 30 82 902 127 80 900 316 352 1163 45 81 901 45 81 901 316 352 1163 162 353 1164 316 352 1163 235 354 1165 162 353 1164 162 353 1164 235 354 1165 79 355 1166 316 352 1163 232 175 1038 235 354 1165 235 354 1165 232 175 1038 80 177 1040 234 356 1167 317 357 1168 80 177 1040 80 177 1040 317 357 1168 235 354 1165 317 357 1168 233 358 1169 235 354 1165 235 354 1165 233 358 1169 79 355 1166 233 358 1169 317 357 1168 3 360 1171 3 360 1171 317 357 1168 87 359 1170 317 357 1168 234 356 1167 87 359 1170 87 359 1170 234 356 1167 2 361 1172 236 362 1173 318 363 1174 81 171 1019 81 171 1019 318 363 1174 237 176 1039 318 363 1174 234 356 1167 237 176 1039 237 176 1039 234 356 1167 80 177 1040 234 356 1167 318 363 1174 2 361 1172 2 361 1172 318 363 1174 86 364 1175 318 363 1174 236 362 1173 86 364 1175 86 364 1175 236 362 1173 1 365 1176 319 366 1177 236 362 1173 239 170 1018 239 170 1018 236 362 1173 81 171 1019 236 362 1173 319 366 1177 1 365 1176 1 365 1176 319 366 1177 85 367 1178 85 367 1178 319 366 1177 0 369 1180 0 369 1180 319 366 1177 161 368 1179 319 366 1177 239 170 1018 161 368 1179 161 368 1179 239 170 1018 82 173 1023 0 369 1180 161 368 1179 4 371 1182 4 371 1182 161 368 1179 240 370 1181 161 368 1179 82 173 1023 240 370 1181 240 370 1181 82 173 1023 83 166 1012 242 165 987 158 372 1183 83 166 1012 83 166 1012 158 372 1183 240 370 1181 240 370 1181 158 372 1183 4 371 1182 4 371 1182 158 372 1183 84 373 1184 343 350 1161 342 374 1185 242 165 987 242 165 987 342 374 1185 158 372 1183 342 374 1185 88 375 1186 158 372 1183 158 372 1183 88 375 1186 84 373 1184 144 131 917 2066 134 920 321 236 1093 321 236 1093 2066 134 920 2067 376 1187 321 236 1093 180 214 1071 339 66 886 339 66 886 180 214 1071 25 73 893 2067 376 1187 2083 284 1125 321 236 1093 321 236 1093 2083 284 1125 180 214 1071 325 332 1143 324 333 1144 46 183 1047 46 183 1047 324 333 1144 165 180 1043 325 332 1143 326 331 1142 207 185 1049 207 185 1049 326 331 1142 287 191 1055 47 190 1054 327 330 1141 168 188 1052 168 188 1052 327 330 1141 326 331 1142 327 330 1141 328 329 1140 206 192 1056 206 192 1056 328 329 1140 286 225 1082 286 225 1082 328 329 1140 2072 261 1106 2072 261 1106 328 329 1140 2077 328 1139 330 325 233 329 326 234 73 302 133 73 302 133 329 326 234 212 255 58 331 324 232 332 323 210 204 114 5 204 114 5 332 323 210 285 115 6 333 322 209 332 323 210 58 198 27 58 198 27 332 323 210 171 195 24 333 322 209 334 321 208 203 118 9 203 118 9 334 321 208 284 128 19 61 205 34 335 320 207 174 203 32 174 203 32 335 320 207 334 321 208 202 129 20 335 320 207 283 232 43 283 232 43 335 320 207 336 319 206 66 211 40 337 318 205 177 209 38 177 209 38 337 318 205 336 319 206 338 317 204 323 295 126 200 316 203 200 316 203 323 295 126 298 293 124 299 8 36 218 9 37 2017 378 1189 2017 378 1189 218 9 37 2022 377 1188 218 9 37 300 23 72 2022 377 1188 2022 377 1188 300 23 72 2021 379 1190 300 23 72 219 25 85 2021 379 1190 2021 379 1190 219 25 85 2023 380 1191 301 334 1145 674 381 1192 220 335 1146 220 335 1146 674 381 1192 592 382 1193 221 336 1147 593 383 1194 301 334 1145 301 334 1145 593 383 1194 674 381 1192 302 337 1148 675 384 1195 222 338 1149 222 338 1149 675 384 1195 594 385 1196 302 337 1148 220 335 1146 675 384 1195 675 384 1195 220 335 1146 592 382 1193 303 339 1150 676 386 1197 223 340 1151 223 340 1151 676 386 1197 595 387 1198 222 338 1149 594 385 1196 303 339 1150 303 339 1150 594 385 1196 676 386 1197 304 341 1152 677 388 1199 224 342 1153 224 342 1153 677 388 1199 596 389 1200 223 340 1151 595 387 1198 304 341 1152 304 341 1152 595 387 1198 677 388 1199 305 343 1154 678 390 1201 225 344 1155 225 344 1155 678 390 1201 597 391 1202 224 342 1153 596 389 1200 305 343 1154 305 343 1154 596 389 1200 678 390 1201 226 346 1157 306 345 1156 598 393 1204 598 393 1204 306 345 1156 679 392 1203 225 344 1155 597 391 1202 306 345 1156 306 345 1156 597 391 1202 679 392 1203 2037 395 1206 680 396 1207 2036 394 1205 2036 394 1205 680 396 1207 599 397 1208 2038 398 1209 600 399 1210 2037 395 1206 2037 395 1206 600 399 1210 680 396 1207 2039 400 1211 608 401 1212 2038 398 1209 2038 398 1209 608 401 1212 600 399 1210 31 86 3 308 85 2 2033 403 2261 2033 403 2261 308 85 2 2019 402 144 681 405 149 2019 402 2264 602 404 148 602 404 148 2019 402 2264 2020 406 2259 34 95 16 309 94 15 2031 408 2252 2031 408 2252 309 94 15 2032 407 2262 309 94 15 31 86 3 2032 407 2262 2032 407 2262 31 86 3 2033 403 2261 219 25 85 310 111 904 2023 380 1191 2023 380 1191 310 111 904 2024 409 1213 604 411 1215 2025 412 1216 684 410 1214 684 410 1214 2025 412 1216 2026 413 1217 2035 415 2260 685 416 158 2034 414 2258 2034 414 2258 685 416 158 605 417 159 2036 394 1205 599 397 1208 2035 415 1218 2035 415 1218 599 397 1208 685 416 1219 346 347 1158 1971 418 1220 345 348 1159 345 348 1159 1971 418 1220 1970 419 1221 226 346 1157 598 393 1204 346 347 1158 346 347 1158 598 393 1204 1971 418 1220 2016 420 2257 686 421 161 2020 406 2259 2020 406 2259 686 421 161 602 404 148 2034 414 2258 605 417 159 2016 420 2257 2016 420 2257 605 417 159 686 421 161 229 126 113 313 156 112 2027 423 2256 2027 423 2256 313 156 112 2028 422 2255 313 156 112 230 158 115 2028 422 2255 2028 422 2255 230 158 115 2029 424 2254 230 158 115 314 162 119 2029 424 2254 2029 424 2254 314 162 119 2030 425 2253 314 162 119 34 95 16 2030 425 2253 2030 425 2253 34 95 16 2031 408 2252 344 349 1160 1969 426 1222 343 350 1161 343 350 1161 1969 426 1222 1968 427 1223 345 348 1159 1970 419 1221 344 349 1160 344 349 1160 1970 419 1221 1969 426 1222 2040 428 1224 689 429 1225 2039 400 1211 2039 400 1211 689 429 1225 608 401 1212 2041 430 1226 612 431 1227 2040 428 1224 2040 428 1224 612 431 1227 689 429 1225 315 351 1162 690 432 1228 221 336 1147 221 336 1147 690 432 1228 593 383 1194 2042 433 1229 692 434 1230 2041 430 1226 2041 430 1226 692 434 1230 612 431 1227 2043 435 1231 434 436 1232 2042 433 1229 2042 433 1229 434 436 1232 692 434 1230 88 375 1186 342 374 1185 435 438 1234 435 438 1234 342 374 1185 1967 437 1233 342 374 1185 343 350 1161 1967 437 1233 1967 437 1233 343 350 1161 1968 427 1223 436 439 1235 353 440 1236 622 442 1238 622 442 1238 353 440 1236 437 441 1237 352 444 1240 436 439 1235 438 443 1239 438 443 1239 436 439 1235 622 442 1238 439 445 1241 352 444 1240 623 446 1242 623 446 1242 352 444 1240 438 443 1239 354 448 1244 439 445 1241 440 447 1243 440 447 1243 439 445 1241 623 446 1242 356 450 1246 441 451 1247 355 449 1245 355 449 1245 441 451 1247 443 452 1248 441 451 1247 357 453 1249 443 452 1248 443 452 1248 357 453 1249 442 454 1250 353 440 1236 436 439 1235 444 455 1251 444 455 1251 436 439 1235 624 456 1252 436 439 1235 352 444 1240 624 456 1252 624 456 1252 352 444 1240 445 457 1253 359 458 1254 446 459 1255 445 457 1253 445 457 1253 446 459 1255 624 456 1252 446 459 1255 358 460 1256 624 456 1252 624 456 1252 358 460 1256 444 455 1251 352 444 1240 439 445 1241 445 457 1253 445 457 1253 439 445 1241 625 461 1257 439 445 1241 354 448 1244 625 461 1257 625 461 1257 354 448 1244 447 462 1258 360 463 1259 448 464 1260 447 462 1258 447 462 1258 448 464 1260 625 461 1257 448 464 1260 359 458 1254 625 461 1257 625 461 1257 359 458 1254 445 457 1253 357 453 1249 441 451 1247 361 465 1261 361 465 1261 441 451 1247 626 466 1262 441 451 1247 356 450 1246 626 466 1262 626 466 1262 356 450 1246 449 467 1263 363 469 1265 450 470 1266 362 468 1264 362 468 1264 450 470 1266 451 471 1267 450 470 1266 356 450 1246 451 471 1267 451 471 1267 356 450 1246 355 449 1245 358 460 1256 446 459 1255 452 472 1268 452 472 1268 446 459 1255 627 473 1269 446 459 1255 359 458 1254 627 473 1269 627 473 1269 359 458 1254 453 474 1270 365 475 1271 454 476 1272 453 474 1270 453 474 1270 454 476 1272 627 473 1269 454 476 1272 364 477 1273 627 473 1269 627 473 1269 364 477 1273 452 472 1268 356 450 1246 450 470 1266 449 467 1263 449 467 1263 450 470 1266 456 478 1274 450 470 1266 363 469 1265 456 478 1274 456 478 1274 363 469 1265 455 479 1275 457 480 1276 363 469 1265 458 481 1277 458 481 1277 363 469 1265 362 468 1264 366 483 1279 457 480 1276 367 482 1278 367 482 1278 457 480 1276 458 481 1277 363 469 1265 457 480 1276 455 479 1275 455 479 1275 457 480 1276 460 484 1280 457 480 1276 366 483 1279 460 484 1280 460 484 1280 366 483 1279 459 485 1281 369 486 1282 368 487 1283 461 489 1285 461 489 1285 368 487 1283 462 488 1284 462 488 1284 366 483 1279 461 489 1285 461 489 1285 366 483 1279 367 482 1278 366 483 1279 462 488 1284 459 485 1281 459 485 1281 462 488 1284 464 490 1286 368 487 1283 463 491 1287 462 488 1284 462 488 1284 463 491 1287 464 490 1286 371 492 1288 370 493 1289 465 495 1291 465 495 1291 370 493 1289 466 494 1290 368 487 1283 369 486 1282 466 494 1290 466 494 1290 369 486 1282 465 495 1291 463 491 1287 368 487 1283 468 496 1292 468 496 1292 368 487 1283 466 494 1290 370 493 1289 467 497 1293 466 494 1290 466 494 1290 467 497 1293 468 496 1292 372 498 1294 373 499 1295 628 501 1297 628 501 1297 373 499 1295 469 500 1296 370 493 1289 371 492 1288 469 500 1296 469 500 1296 371 492 1288 628 501 1297 467 497 1293 370 493 1289 471 502 1298 471 502 1298 370 493 1289 469 500 1296 373 499 1295 470 503 1299 469 500 1296 469 500 1296 470 503 1299 471 502 1298 375 504 1300 472 505 1301 1964 507 1303 1964 507 1303 472 505 1301 1965 506 1302 472 505 1301 377 508 1304 1965 506 1302 1965 506 1302 377 508 1304 1966 509 1305 376 510 1306 473 511 1307 1966 509 1305 1966 509 1305 473 511 1307 1965 506 1302 473 511 1307 374 512 1308 1965 506 1302 1965 506 1302 374 512 1308 1964 507 1303 378 514 1310 475 515 1311 474 513 1309 474 513 1309 475 515 1311 629 516 1312 475 515 1311 379 517 1313 629 516 1312 629 516 1312 379 517 1313 476 518 1314 377 508 1304 472 505 1301 476 518 1314 476 518 1314 472 505 1301 629 516 1312 472 505 1301 375 504 1300 629 516 1312 629 516 1312 375 504 1300 474 513 1309 476 518 1314 379 517 1313 477 520 1316 477 520 1316 379 517 1313 399 519 1315 476 518 1314 477 520 1316 377 508 1304 377 508 1304 477 520 1316 380 521 1317 478 522 162 381 523 163 630 525 165 630 525 165 381 523 163 479 524 164 479 524 174 382 526 175 630 525 177 630 525 177 382 526 175 480 527 176 384 528 178 481 529 179 480 527 176 480 527 176 481 529 179 630 525 177 383 530 167 478 522 162 481 529 166 481 529 166 478 522 162 630 525 165 482 531 168 385 532 169 631 534 171 631 534 171 385 532 169 483 533 170 381 523 163 478 522 162 483 533 170 483 533 170 478 522 162 631 534 171 478 522 162 383 530 167 631 534 171 631 534 171 383 530 167 484 535 172 386 536 173 482 531 168 484 535 172 484 535 172 482 531 168 631 534 171 485 537 180 386 536 173 632 538 181 632 538 181 386 536 173 484 535 172 383 530 167 486 539 182 484 535 172 484 535 172 486 539 182 632 538 181 486 539 182 387 540 183 632 538 181 632 538 181 387 540 183 511 541 184 390 542 185 485 537 180 511 541 184 511 541 184 485 537 180 632 538 181 487 543 186 391 544 187 633 546 189 633 546 189 391 544 187 488 545 188 488 545 188 388 547 190 633 546 189 633 546 189 388 547 190 489 548 191 386 536 173 485 537 180 489 548 191 489 548 191 485 537 180 633 546 189 390 542 185 487 543 186 485 537 180 485 537 180 487 543 186 633 546 189 359 458 1254 448 464 1260 453 474 1270 453 474 1270 448 464 1260 634 549 1318 448 464 1260 360 463 1259 634 549 1318 634 549 1318 360 463 1259 490 550 1319 389 551 1320 491 552 1321 490 550 1319 490 550 1319 491 552 1321 634 549 1318 491 552 1321 365 475 1271 634 549 1318 634 549 1318 365 475 1271 453 474 1270 575 553 236 405 554 237 659 556 239 659 556 239 405 554 237 492 555 238 403 557 240 574 558 241 492 555 238 492 555 238 574 558 241 659 556 239 454 476 1272 365 475 1271 635 560 1323 635 560 1323 365 475 1271 493 559 1322 391 544 1324 487 543 1325 493 559 1322 493 559 1322 487 543 1325 635 560 1323 487 543 1325 390 542 1326 635 560 1323 635 560 1323 390 542 1326 494 561 1327 364 477 1273 454 476 1272 494 561 1327 494 561 1327 454 476 1272 635 560 1323 491 552 1321 389 551 1320 636 563 1329 636 563 1329 389 551 1320 495 562 1328 392 564 1330 508 565 1331 495 562 1328 495 562 1328 508 565 1331 636 563 1329 508 565 1331 391 544 1324 636 563 1329 636 563 1329 391 544 1324 493 559 1322 365 475 1271 491 552 1321 493 559 1322 493 559 1322 491 552 1321 636 563 1329 406 567 243 573 568 244 496 566 242 496 566 242 573 568 244 658 569 245 574 558 241 403 557 240 658 569 245 658 569 245 403 557 240 496 566 242 2087 571 1333 2088 572 1334 651 570 1332 651 570 1332 2088 572 1334 552 573 1335 497 574 1336 378 514 1310 637 575 1337 637 575 1337 378 514 1310 474 513 1309 375 504 1300 498 576 1338 474 513 1309 474 513 1309 498 576 1338 637 575 1337 498 576 211 394 577 212 637 575 214 637 575 214 394 577 212 499 578 213 395 579 215 497 574 216 499 578 213 499 578 213 497 574 216 637 575 214 397 580 1339 396 581 1340 500 583 1342 500 583 1342 396 581 1340 501 582 1341 373 499 1295 372 498 1294 501 582 1341 501 582 1341 372 498 1294 500 583 1342 502 584 1343 374 512 1308 638 585 1344 638 585 1344 374 512 1308 473 511 1307 376 510 1306 503 586 1345 473 511 1307 473 511 1307 503 586 1345 638 585 1344 503 586 1345 397 580 1339 638 585 1344 638 585 1344 397 580 1339 500 583 1342 372 498 1294 502 584 1343 500 583 1342 500 583 1342 502 584 1343 638 585 1344 470 503 1299 373 499 1295 505 587 1346 505 587 1346 373 499 1295 501 582 1341 396 581 1340 504 588 1347 501 582 1341 501 582 1341 504 588 1347 505 587 1346 609 589 1348 1966 509 1305 380 521 1317 380 521 1317 1966 509 1305 377 508 1304 398 590 1349 376 510 1306 609 589 1348 609 589 1348 376 510 1306 1966 509 1305 506 591 217 384 528 178 639 592 218 639 592 218 384 528 178 480 527 176 382 526 175 507 593 219 480 527 176 480 527 176 507 593 219 639 592 218 507 593 219 395 579 215 639 592 218 639 592 218 395 579 215 499 578 213 394 577 212 506 591 217 499 578 213 499 578 213 506 591 217 639 592 218 508 565 192 392 564 193 640 595 195 640 595 195 392 564 193 509 594 194 400 596 196 510 597 197 509 594 194 509 594 194 510 597 197 640 595 195 510 597 197 388 547 190 640 595 195 640 595 195 388 547 190 488 545 188 391 544 187 508 565 192 488 545 188 488 545 188 508 565 192 640 595 195 506 591 217 394 577 212 641 599 227 641 599 227 394 577 212 538 598 226 387 540 183 486 539 182 538 598 198 538 598 198 486 539 182 641 599 199 383 530 167 481 529 166 486 539 182 486 539 182 481 529 166 641 599 199 481 529 179 384 528 178 641 599 227 641 599 227 384 528 178 506 591 217 388 547 190 510 597 197 489 548 191 489 548 191 510 597 197 642 600 220 510 597 197 400 596 196 642 600 220 642 600 220 400 596 196 512 601 221 385 532 169 482 531 168 512 601 221 512 601 221 482 531 168 642 600 220 482 531 168 386 536 173 642 600 220 642 600 220 386 536 173 489 548 191 504 588 1347 396 581 1340 620 603 1351 620 603 1351 396 581 1340 513 602 1350 429 604 1352 621 605 1353 513 602 1350 513 602 1350 621 605 1353 620 603 1351 398 590 1349 516 607 1355 515 606 1354 515 606 1354 516 607 1355 643 608 1356 516 607 1355 427 609 1357 643 608 1356 643 608 1356 427 609 1357 618 610 1358 618 610 1358 428 611 1359 643 608 1356 643 608 1356 428 611 1359 617 612 1360 617 612 1360 397 580 1339 643 608 1356 643 608 1356 397 580 1339 515 606 1354 428 611 1359 429 604 1352 617 612 1360 617 612 1360 429 604 1352 513 602 1350 396 581 1340 397 580 1339 513 602 1350 513 602 1350 397 580 1339 617 612 1360 516 607 1355 398 590 1349 644 613 1361 644 613 1361 398 590 1349 609 589 1348 380 521 1317 610 614 1362 609 589 1348 609 589 1348 610 614 1362 644 613 1361 610 614 1362 426 615 1363 644 613 1361 644 613 1361 426 615 1363 616 616 1364 427 609 1357 516 607 1355 616 616 1364 616 616 1364 516 607 1355 644 613 1361 357 453 1249 520 617 1365 442 454 1250 442 454 1250 520 617 1365 519 618 1366 521 619 1367 401 620 1368 645 622 1370 645 622 1370 401 620 1368 522 621 1369 442 454 1250 519 618 1366 522 621 1369 522 621 1369 519 618 1366 645 622 1370 353 440 1236 579 623 1371 437 441 1237 437 441 1237 579 623 1371 661 624 1372 520 617 1365 357 453 1249 523 625 1373 523 625 1373 357 453 1249 361 465 1261 401 620 1368 524 626 1374 522 621 1369 522 621 1369 524 626 1374 646 627 1375 524 626 1374 402 628 1376 646 627 1375 646 627 1375 402 628 1376 525 629 1377 355 449 1245 443 452 1248 525 629 1377 525 629 1377 443 452 1248 646 627 1375 443 452 1248 442 454 1250 646 627 1375 646 627 1375 442 454 1250 522 621 1369 579 623 1371 353 440 1236 660 630 1378 660 630 1378 353 440 1236 444 455 1251 358 460 1256 578 631 1379 444 455 1251 444 455 1251 578 631 1379 660 630 1378 526 632 2273 409 633 247 647 635 2268 647 635 2268 409 633 247 527 634 248 404 636 250 528 637 251 527 634 248 527 634 248 528 637 251 647 635 2268 410 638 1381 529 639 1382 528 637 1380 528 637 1380 529 639 1382 647 635 1383 529 639 1382 408 640 1384 647 635 1383 647 635 1383 408 640 1384 526 632 1385 528 637 251 404 636 250 648 642 2269 648 642 2269 404 636 250 530 641 255 407 643 257 531 644 258 530 641 255 530 641 255 531 644 258 648 642 2269 531 644 1386 411 645 1387 648 642 1389 648 642 1389 411 645 1387 532 646 1388 532 646 1388 410 638 1381 648 642 1389 648 642 1389 410 638 1381 528 637 1380 531 644 258 407 643 257 649 648 2272 649 648 2272 407 643 257 533 647 261 533 647 261 412 649 263 649 648 2272 649 648 2272 412 649 263 534 650 264 534 650 1390 413 651 1391 649 648 1393 649 648 1393 413 651 1391 535 652 1392 411 645 1387 531 644 1386 535 652 1392 535 652 1392 531 644 1386 649 648 1393 374 512 1308 502 584 1343 393 653 1394 393 653 1394 502 584 1343 537 654 1395 502 584 1343 372 498 1294 537 654 1395 537 654 1395 372 498 1294 628 501 1297 371 492 1288 536 655 1396 628 501 1297 628 501 1297 536 655 1396 537 654 1395 376 510 1306 398 590 1349 503 586 1345 503 586 1345 398 590 1349 515 606 1354 515 606 1354 397 580 1339 503 586 1345 536 655 1396 371 492 1288 540 656 1397 540 656 1397 371 492 1288 465 495 1291 369 486 1282 539 657 1398 465 495 1291 465 495 1291 539 657 1398 540 656 1397 539 657 1398 369 486 1282 542 658 1399 542 658 1399 369 486 1282 461 489 1285 461 489 1285 367 482 1278 542 658 1399 542 658 1399 367 482 1278 541 659 1400 367 482 1278 458 481 1277 541 659 1400 541 659 1400 458 481 1277 544 660 1401 458 481 1277 362 468 1264 544 660 1401 544 660 1401 362 468 1264 543 661 1402 402 628 1376 545 662 1403 525 629 1377 525 629 1377 545 662 1403 546 663 1404 362 468 1264 451 471 1267 543 661 1402 543 661 1402 451 471 1267 546 663 1404 451 471 1267 355 449 1245 546 663 1404 546 663 1404 355 449 1245 525 629 1377 578 631 1379 358 460 1256 577 664 1405 577 664 1405 358 460 1256 452 472 1268 364 477 1273 547 665 1406 452 472 1268 452 472 1268 547 665 1406 577 664 1405 547 665 1406 364 477 1273 549 666 1407 549 666 1407 364 477 1273 494 561 1327 390 542 1326 548 667 1408 494 561 1327 494 561 1327 548 667 1408 549 666 1407 387 540 1410 550 668 1411 511 541 1409 511 541 1409 550 668 1411 551 669 1412 548 667 1408 390 542 1326 551 669 1412 551 669 1412 390 542 1326 511 541 1409 387 540 1410 538 598 1413 550 668 1411 550 668 1411 538 598 1413 650 670 1414 538 598 1413 394 577 1415 650 670 1414 650 670 1414 394 577 1415 552 573 1335 406 567 243 553 671 267 573 568 244 573 568 244 553 671 267 657 672 268 572 673 269 657 672 268 414 674 270 414 674 270 657 672 268 553 671 267 394 577 1415 498 576 1338 552 573 1335 552 573 1335 498 576 1338 651 570 1332 1945 675 1416 651 570 1332 1964 507 1303 651 570 1332 498 576 1338 1964 507 1303 498 576 1338 375 504 1300 1964 507 1303 548 667 1408 2091 676 1417 549 666 1407 549 666 1407 2091 676 1417 2092 677 1418 663 679 272 652 680 273 580 678 271 580 678 271 652 680 273 554 681 274 582 682 275 555 683 276 663 679 272 663 679 272 555 683 276 652 680 273 2093 684 1419 547 665 1406 2092 677 1418 2092 677 1418 547 665 1406 549 666 1407 550 668 1411 2095 685 1420 551 669 1412 551 669 1412 2095 685 1420 2090 686 1421 662 688 278 653 689 279 581 687 277 581 687 277 653 689 279 556 690 280 580 678 271 554 681 274 662 688 278 662 688 278 554 681 274 653 689 279 2091 676 1417 548 667 1408 2090 686 1421 2090 686 1421 548 667 1408 551 669 1412 546 663 1404 545 662 1403 2098 692 1423 2098 692 1423 545 662 1403 2097 691 1422 584 693 281 667 694 282 557 696 284 557 696 284 667 694 282 654 695 2270 667 694 1424 586 697 1425 654 695 1427 654 695 1427 586 697 1425 558 698 1426 543 661 1402 546 663 1404 2099 699 1428 2099 699 1428 546 663 1404 2098 692 1423 547 665 1406 2093 684 1419 577 664 1405 577 664 1405 2093 684 1419 2094 700 1429 665 701 287 2060 702 288 582 682 275 582 682 275 2060 702 288 555 683 276 544 660 1401 543 661 1402 2100 703 1430 2100 703 1430 543 661 1402 2099 699 1428 586 697 1425 666 704 1431 558 698 1426 558 698 1426 666 704 1431 2061 705 1432 666 704 1431 585 706 1433 2061 705 1432 2061 705 1432 585 706 1433 559 707 1434 541 659 1400 544 660 1401 2101 708 1435 2101 708 1435 544 660 1401 2100 703 1430 542 658 1399 541 659 1400 2102 709 1436 2102 709 1436 541 659 1400 2101 708 1435 585 706 1433 668 710 1437 559 707 1434 559 707 1434 668 710 1437 2062 711 1438 587 712 1439 560 713 1440 668 710 1437 668 710 1437 560 713 1440 2062 711 1438 2103 714 1441 539 657 1398 2102 709 1436 2102 709 1436 539 657 1398 542 658 1399 536 655 1396 2105 715 1442 537 654 1395 537 654 1395 2105 715 1442 2106 716 1443 670 718 1445 655 719 1446 588 717 1444 588 717 1444 655 719 1446 561 720 1447 589 721 301 562 722 302 670 718 2275 670 718 2275 562 722 302 655 719 299 2107 723 1448 393 653 1394 2106 716 1443 2106 716 1443 393 653 1394 537 654 1395 539 657 1398 2103 714 1441 540 656 1397 540 656 1397 2103 714 1441 2104 724 1449 669 725 1450 2063 726 1451 587 712 1439 587 712 1439 2063 726 1451 560 713 1440 588 717 1444 561 720 1447 669 725 1450 669 725 1450 561 720 1447 2063 726 1451 2105 715 1442 536 655 1396 2104 724 1449 2104 724 1449 536 655 1396 540 656 1397 650 670 1414 552 573 1335 2089 727 1452 2089 727 1452 552 573 1335 2088 572 1334 583 728 305 664 729 306 2058 731 308 2058 731 308 664 729 306 2059 730 307 664 729 306 581 687 277 2059 730 307 2059 730 307 581 687 277 556 690 280 550 668 1411 650 670 1414 2095 685 1420 2095 685 1420 650 670 1414 2089 727 1452 671 732 309 583 728 305 656 733 310 656 733 310 583 728 305 2058 731 308 1947 734 311 671 732 309 1946 735 970 1946 735 970 671 732 309 656 733 310 416 737 972 403 557 240 563 736 971 563 736 971 403 557 240 492 555 238 563 736 971 492 555 238 417 738 973 417 738 973 492 555 238 405 554 237 415 740 975 406 567 243 564 739 974 564 739 974 406 567 243 496 566 242 564 739 974 496 566 242 416 737 972 416 737 972 496 566 242 403 557 240 565 741 2274 419 742 977 526 632 2273 526 632 2273 419 742 977 409 633 247 526 632 1385 408 640 1384 565 741 1453 565 741 1453 408 640 1384 420 743 1454 417 738 973 405 554 237 576 744 979 576 744 979 405 554 237 575 553 236 566 745 1455 420 743 1454 529 639 1382 529 639 1382 420 743 1454 408 640 1384 529 639 1382 410 638 1381 566 745 1455 566 745 1455 410 638 1381 421 746 1456 567 747 1457 421 746 1456 532 646 1388 532 646 1388 421 746 1456 410 638 1381 567 747 1457 532 646 1388 422 748 1458 422 748 1458 532 646 1388 411 645 1387 423 750 1460 413 651 1391 568 749 1459 568 749 1459 413 651 1391 534 650 1390 568 749 984 534 650 264 424 751 986 424 751 986 534 650 264 412 649 263 422 748 1458 411 645 1387 569 752 1461 569 752 1461 411 645 1387 535 652 1392 569 752 1461 535 652 1392 423 750 1460 423 750 1460 535 652 1392 413 651 1391 570 753 988 418 754 989 553 671 267 553 671 267 418 754 989 414 674 270 553 671 267 406 567 243 570 753 988 570 753 988 406 567 243 415 740 975 418 754 989 571 755 990 414 674 270 414 674 270 571 755 990 572 673 269 571 755 990 1963 756 991 572 673 269 572 673 269 1963 756 991 1962 757 992 424 751 986 412 649 263 1963 756 991 1963 756 991 412 649 263 1962 757 992 657 672 268 572 673 269 1961 758 993 1961 758 993 572 673 269 1962 757 992 407 643 257 1960 759 994 533 647 261 533 647 261 1960 759 994 1961 758 993 573 568 244 1960 759 994 658 569 245 658 569 245 1960 759 994 1959 760 995 404 636 250 1958 761 996 530 641 255 530 641 255 1958 761 996 1959 760 995 574 558 241 1958 761 996 659 556 239 659 556 239 1958 761 996 1957 762 997 409 633 247 1956 763 998 527 634 248 527 634 248 1956 763 998 1957 762 997 576 744 979 575 553 236 1955 764 999 1955 764 999 575 553 236 1956 763 998 419 742 977 1955 764 999 409 633 247 409 633 247 1955 764 999 1956 763 998 2060 702 288 665 701 287 1953 766 1001 1953 766 1001 665 701 287 1954 765 1000 545 662 1403 1952 767 1462 2097 691 1422 2097 691 1422 1952 767 1462 2096 768 1463 402 628 1376 1951 769 1464 545 662 1403 545 662 1403 1951 769 1464 1952 767 1462 578 631 1379 1951 769 1464 660 630 1378 660 630 1378 1951 769 1464 1950 770 1465 524 626 1374 401 620 1368 1950 770 1465 1950 770 1465 401 620 1368 1949 771 1466 579 623 1371 1949 771 1466 661 624 1372 661 624 1372 1949 771 1466 1948 772 1467 416 737 972 580 678 271 564 739 974 564 739 974 580 678 271 662 688 278 581 687 277 415 740 975 662 688 278 662 688 278 415 740 975 564 739 974 582 682 275 417 738 973 665 701 287 665 701 287 417 738 973 576 744 979 580 678 271 416 737 972 663 679 272 663 679 272 416 737 972 563 736 971 417 738 973 582 682 275 563 736 971 563 736 971 582 682 275 663 679 272 570 753 988 415 740 975 664 729 306 664 729 306 415 740 975 581 687 277 418 754 989 570 753 988 583 728 305 583 728 305 570 753 988 664 729 306 665 701 287 576 744 979 1954 765 1000 1954 765 1000 576 744 979 1955 764 999 1954 765 1000 584 693 281 1953 766 1001 1953 766 1001 584 693 281 557 696 284 566 745 1455 421 746 1456 666 704 1431 666 704 1431 421 746 1456 585 706 1433 420 743 1454 566 745 1455 586 697 1425 586 697 1425 566 745 1455 666 704 1431 419 742 977 565 741 2274 584 693 281 584 693 281 565 741 2274 667 694 282 565 741 1453 420 743 1454 667 694 1424 667 694 1424 420 743 1454 586 697 1425 421 746 1456 567 747 1457 585 706 1433 585 706 1433 567 747 1457 668 710 1437 422 748 1458 587 712 1439 567 747 1457 567 747 1457 587 712 1439 668 710 1437 587 712 1439 422 748 1458 669 725 1450 669 725 1450 422 748 1458 569 752 1461 423 750 1460 588 717 1444 569 752 1461 569 752 1461 588 717 1444 669 725 1450 1947 734 311 1946 735 970 589 721 301 589 721 301 1946 735 970 562 722 302 589 721 301 424 751 986 1947 734 311 1947 734 311 424 751 986 1963 756 991 588 717 1444 423 750 1460 670 718 1445 670 718 1445 423 750 1460 568 749 1459 424 751 986 589 721 301 568 749 984 568 749 984 589 721 301 670 718 2275 571 755 990 418 754 989 671 732 309 671 732 309 418 754 989 583 728 305 590 773 1468 354 448 1244 672 774 1469 672 774 1469 354 448 1244 440 447 1243 354 448 1244 590 773 1468 447 462 1258 447 462 1258 590 773 1468 673 775 1470 591 776 1471 360 463 1259 673 775 1470 673 775 1470 360 463 1259 447 462 1258 626 466 1262 449 467 1263 674 381 1192 674 381 1192 449 467 1263 592 382 1193 361 465 1261 626 466 1262 593 383 1194 593 383 1194 626 466 1262 674 381 1192 456 478 1274 455 479 1275 675 384 1195 675 384 1195 455 479 1275 594 385 1196 449 467 1263 456 478 1274 592 382 1193 592 382 1193 456 478 1274 675 384 1195 459 485 1281 595 387 1198 460 484 1280 460 484 1280 595 387 1198 676 386 1197 455 479 1275 460 484 1280 594 385 1196 594 385 1196 460 484 1280 676 386 1197 463 491 1287 596 389 1200 464 490 1286 464 490 1286 596 389 1200 677 388 1199 595 387 1198 459 485 1281 677 388 1199 677 388 1199 459 485 1281 464 490 1286 467 497 1293 597 391 1202 468 496 1292 468 496 1292 597 391 1202 678 390 1201 596 389 1200 463 491 1287 678 390 1201 678 390 1201 463 491 1287 468 496 1292 470 503 1299 598 393 1204 471 502 1298 471 502 1298 598 393 1204 679 392 1203 597 391 1202 467 497 1293 679 392 1203 679 392 1203 467 497 1293 471 502 1298 475 515 1311 378 514 1310 680 396 1207 680 396 1207 378 514 1310 599 397 1208 379 517 1313 475 515 1311 600 399 1210 600 399 1210 475 515 1311 680 396 1207 379 517 1313 600 399 1210 399 519 1315 399 519 1315 600 399 1210 608 401 1212 381 523 163 601 777 222 479 524 164 479 524 164 601 777 222 681 405 223 602 404 148 382 526 175 681 405 149 681 405 149 382 526 175 479 524 174 385 532 169 603 778 224 483 533 170 483 533 170 603 778 224 682 779 225 601 777 222 381 523 163 682 779 225 682 779 225 381 523 163 483 533 170 360 463 1259 591 776 1471 490 550 1319 490 550 1319 591 776 1471 683 780 1472 604 411 1215 389 551 1320 683 780 1472 683 780 1472 389 551 1320 490 550 1319 389 551 1320 604 411 1215 495 562 1328 495 562 1328 604 411 1215 684 410 1214 606 781 1473 392 564 1330 684 410 1214 684 410 1214 392 564 1330 495 562 1328 395 579 215 605 417 159 497 574 216 497 574 216 605 417 159 685 416 158 599 397 1208 378 514 1310 685 416 1219 685 416 1219 378 514 1310 497 574 1336 504 588 1347 1970 419 1221 505 587 1346 505 587 1346 1970 419 1221 1971 418 1220 505 587 1346 1971 418 1220 470 503 1299 470 503 1299 1971 418 1220 598 393 1204 507 593 219 382 526 175 686 421 161 686 421 161 382 526 175 602 404 148 395 579 215 507 593 219 605 417 159 605 417 159 507 593 219 686 421 161 392 564 193 606 781 228 509 594 194 509 594 194 606 781 228 687 782 229 607 783 230 400 596 196 687 782 229 687 782 229 400 596 196 509 594 194 400 596 196 607 783 230 512 601 221 512 601 221 607 783 230 688 784 231 603 778 224 385 532 169 688 784 231 688 784 231 385 532 169 512 601 221 621 605 1353 1968 427 1223 620 603 1351 620 603 1351 1968 427 1223 1969 426 1222 620 603 1351 1969 426 1222 504 588 1347 504 588 1347 1969 426 1222 1970 419 1221 399 519 1315 608 401 1212 518 785 1474 518 785 1474 608 401 1212 689 429 1225 612 431 1227 425 786 1475 689 429 1225 689 429 1225 425 786 1475 518 785 1474 523 625 1373 361 465 1261 690 432 1228 690 432 1228 361 465 1261 593 383 1194 380 521 1317 477 520 1316 610 614 1362 610 614 1362 477 520 1316 691 787 1476 477 520 1316 399 519 1315 691 787 1476 691 787 1476 399 519 1315 518 785 1474 425 786 1475 614 788 1477 518 785 1474 518 785 1474 614 788 1477 691 787 1476 614 788 1477 426 615 1363 691 787 1476 691 787 1476 426 615 1363 610 614 1362 425 786 1475 612 431 1227 611 789 1478 611 789 1478 612 431 1227 692 434 1230 350 790 1479 611 789 1478 434 436 1232 434 436 1232 611 789 1478 692 434 1230 426 615 1363 614 788 1477 613 791 1480 613 791 1480 614 788 1477 693 792 1481 614 788 1477 425 786 1475 693 792 1481 693 792 1481 425 786 1475 611 789 1478 350 790 1479 433 793 1482 611 789 1478 611 789 1478 433 793 1482 693 792 1481 349 794 1483 613 791 1480 433 793 1482 433 793 1482 613 791 1480 693 792 1481 615 795 1484 427 609 1357 694 796 1485 694 796 1485 427 609 1357 616 616 1364 616 616 1364 426 615 1363 694 796 1485 694 796 1485 426 615 1363 613 791 1480 349 794 1483 432 797 1486 613 791 1480 613 791 1480 432 797 1486 694 796 1485 432 797 1486 348 798 1487 694 796 1485 694 796 1485 348 798 1487 615 795 1484 618 610 1358 427 609 1357 695 799 1488 695 799 1488 427 609 1357 615 795 1484 348 798 1487 431 800 1489 615 795 1484 615 795 1484 431 800 1489 695 799 1488 431 800 1489 347 801 1490 695 799 1488 695 799 1488 347 801 1490 517 802 1491 428 611 1359 618 610 1358 517 802 1491 517 802 1491 618 610 1358 695 799 1488 347 801 1490 351 803 1492 517 802 1491 517 802 1491 351 803 1492 619 804 1493 429 604 1352 428 611 1359 619 804 1493 619 804 1493 428 611 1359 517 802 1491 621 605 1353 429 604 1352 514 805 1494 514 805 1494 429 604 1352 619 804 1493 351 803 1492 430 806 1495 619 804 1493 619 804 1493 430 806 1495 514 805 1494 1968 427 1223 621 605 1353 1967 437 1233 1967 437 1233 621 605 1353 514 805 1494 430 806 1495 435 438 1234 514 805 1494 514 805 1494 435 438 1234 1967 437 1233 697 808 1497 710 809 1498 696 807 1496 696 807 1496 710 809 1498 709 810 1499 698 811 1500 711 812 1501 697 808 1497 697 808 1497 711 812 1501 710 809 1498 699 813 1502 712 814 1503 698 811 1500 698 811 1500 712 814 1503 711 812 1501 700 815 1504 713 816 1505 699 813 1502 699 813 1502 713 816 1505 712 814 1503 701 817 1506 714 818 1507 700 815 1504 700 815 1504 714 818 1507 713 816 1505 702 819 1508 715 820 1509 701 817 1506 701 817 1506 715 820 1509 714 818 1507 703 821 1510 716 822 1511 702 819 1508 702 819 1508 716 822 1511 715 820 1509 704 823 1512 717 824 1513 703 821 1510 703 821 1510 717 824 1513 716 822 1511 704 823 1512 705 825 1514 717 824 1513 717 824 1513 705 825 1514 718 826 1515 705 825 1514 706 827 1516 718 826 1515 718 826 1515 706 827 1516 719 828 1517 707 829 1518 720 830 1519 706 827 1516 706 827 1516 720 830 1519 719 828 1517 1331 831 1520 721 832 1521 707 829 1518 707 829 1518 721 832 1521 720 830 1519 708 833 1522 722 834 1523 1980 836 1525 1980 836 1525 722 834 1523 1979 835 1524 710 809 1498 724 837 1526 709 810 1499 709 810 1499 724 837 1526 723 838 1527 711 812 1501 725 839 1528 710 809 1498 710 809 1498 725 839 1528 724 837 1526 712 814 1503 726 840 1529 711 812 1501 711 812 1501 726 840 1529 725 839 1528 713 816 1505 727 841 1530 712 814 1503 712 814 1503 727 841 1530 726 840 1529 714 818 1507 728 842 1531 713 816 1505 713 816 1505 728 842 1531 727 841 1530 715 820 1509 729 843 1532 714 818 1507 714 818 1507 729 843 1532 728 842 1531 716 822 1511 730 844 1533 715 820 1509 715 820 1509 730 844 1533 729 843 1532 717 824 1513 731 845 1534 716 822 1511 716 822 1511 731 845 1534 730 844 1533 717 824 1513 718 826 1515 731 845 1534 731 845 1534 718 826 1515 732 846 1535 718 826 1515 719 828 1517 732 846 1535 732 846 1535 719 828 1517 733 847 1536 720 830 1519 734 848 1537 719 828 1517 719 828 1517 734 848 1537 733 847 1536 1333 849 1538 721 832 1521 1982 850 1539 1982 850 1539 721 832 1521 1979 835 1524 724 837 1526 737 851 1540 723 838 1527 723 838 1527 737 851 1540 736 852 1541 725 839 1528 738 853 1542 724 837 1526 724 837 1526 738 853 1542 737 851 1540 726 840 1529 739 854 1543 725 839 1528 725 839 1528 739 854 1543 738 853 1542 727 841 1530 740 855 1544 726 840 1529 726 840 1529 740 855 1544 739 854 1543 728 842 1531 741 856 1545 727 841 1530 727 841 1530 741 856 1545 740 855 1544 729 843 1532 742 857 1546 728 842 1531 728 842 1531 742 857 1546 741 856 1545 730 844 1533 743 858 1547 729 843 1532 729 843 1532 743 858 1547 742 857 1546 731 845 1534 744 859 1548 730 844 1533 730 844 1533 744 859 1548 743 858 1547 731 845 1534 732 846 1535 744 859 1548 744 859 1548 732 846 1535 745 860 1549 733 847 1536 746 861 1550 732 846 1535 732 846 1535 746 861 1550 745 860 1549 734 848 1537 747 862 1551 733 847 1536 733 847 1536 747 862 1551 746 861 1550 1334 863 1552 1333 849 1538 1983 864 1553 1983 864 1553 1333 849 1538 1982 850 1539 736 852 1541 737 851 1540 749 866 1555 749 866 1555 737 851 1540 750 865 1554 738 853 1542 751 867 1556 737 851 1540 737 851 1540 751 867 1556 750 865 1554 739 854 1543 752 868 1557 738 853 1542 738 853 1542 752 868 1557 751 867 1556 740 855 1544 753 869 1558 739 854 1543 739 854 1543 753 869 1558 752 868 1557 741 856 1545 754 870 1559 740 855 1544 740 855 1544 754 870 1559 753 869 1558 742 857 1546 755 871 1560 741 856 1545 741 856 1545 755 871 1560 754 870 1559 743 858 1547 756 872 1561 742 857 1546 742 857 1546 756 872 1561 755 871 1560 744 859 1548 757 873 1562 743 858 1547 743 858 1547 757 873 1562 756 872 1561 744 859 1548 745 860 1549 757 873 1562 757 873 1562 745 860 1549 758 874 1563 746 861 1550 759 875 1564 745 860 1549 745 860 1549 759 875 1564 758 874 1563 747 862 1551 760 876 1565 746 861 1550 746 861 1550 760 876 1565 759 875 1564 1335 877 1566 1334 863 1552 1984 878 1567 1984 878 1567 1334 863 1552 1983 864 1553 749 866 1555 750 865 1554 762 880 1569 762 880 1569 750 865 1554 763 879 1568 751 867 1556 764 881 1570 750 865 1554 750 865 1554 764 881 1570 763 879 1568 752 868 1557 765 882 1571 751 867 1556 751 867 1556 765 882 1571 764 881 1570 753 869 1558 766 883 1572 752 868 1557 752 868 1557 766 883 1572 765 882 1571 754 870 1559 767 884 1573 753 869 1558 753 869 1558 767 884 1573 766 883 1572 755 871 1560 768 885 1574 754 870 1559 754 870 1559 768 885 1574 767 884 1573 756 872 1561 769 886 1575 755 871 1560 755 871 1560 769 886 1575 768 885 1574 757 873 1562 770 887 1576 756 872 1561 756 872 1561 770 887 1576 769 886 1575 757 873 1562 758 874 1563 770 887 1576 770 887 1576 758 874 1563 771 888 1577 759 875 1564 772 889 1578 758 874 1563 758 874 1563 772 889 1578 771 888 1577 760 876 1565 773 890 1579 759 875 1564 759 875 1564 773 890 1579 772 889 1578 1336 891 1580 1335 877 1566 1981 892 1581 1981 892 1581 1335 877 1566 1984 878 1567 762 880 1569 763 879 1568 775 894 1583 775 894 1583 763 879 1568 776 893 1582 764 881 1570 777 895 1584 763 879 1568 763 879 1568 777 895 1584 776 893 1582 765 882 1571 778 896 1585 764 881 1570 764 881 1570 778 896 1585 777 895 1584 766 883 1572 779 897 1586 765 882 1571 765 882 1571 779 897 1586 778 896 1585 767 884 1573 780 898 1587 766 883 1572 766 883 1572 780 898 1587 779 897 1586 768 885 1574 781 899 1588 767 884 1573 767 884 1573 781 899 1588 780 898 1587 769 886 1575 782 900 1589 768 885 1574 768 885 1574 782 900 1589 781 899 1588 770 887 1576 783 901 1590 769 886 1575 769 886 1575 783 901 1590 782 900 1589 770 887 1576 771 888 1577 783 901 1590 783 901 1590 771 888 1577 784 902 1591 771 888 1577 772 889 1578 784 902 1591 784 902 1591 772 889 1578 785 903 1592 773 890 1579 786 904 1593 772 889 1578 772 889 1578 786 904 1593 785 903 1592 2 361 1172 1336 891 1580 87 359 1170 87 359 1170 1336 891 1580 1981 892 1581 775 894 1583 776 893 1582 787 906 1595 787 906 1595 776 893 1582 788 905 1594 777 895 1584 789 907 1596 776 893 1582 776 893 1582 789 907 1596 788 905 1594 778 896 1585 790 908 1597 777 895 1584 777 895 1584 790 908 1597 789 907 1596 779 897 1586 791 909 1598 778 896 1585 778 896 1585 791 909 1598 790 908 1597 780 898 1587 792 910 1599 779 897 1586 779 897 1586 792 910 1599 791 909 1598 781 899 1588 793 911 1600 780 898 1587 780 898 1587 793 911 1600 792 910 1599 782 900 1589 794 912 1601 781 899 1588 781 899 1588 794 912 1601 793 911 1600 783 901 1590 795 913 1602 782 900 1589 782 900 1589 795 913 1602 794 912 1601 783 901 1590 784 902 1591 795 913 1602 795 913 1602 784 902 1591 796 914 1603 784 902 1591 785 903 1592 796 914 1603 796 914 1603 785 903 1592 797 915 1604 786 904 1593 798 916 1605 785 903 1592 785 903 1592 798 916 1605 797 915 1604 787 906 1595 788 905 1594 799 918 1607 799 918 1607 788 905 1594 800 917 1606 789 907 1596 801 919 1608 788 905 1594 788 905 1594 801 919 1608 800 917 1606 790 908 1597 802 920 1609 789 907 1596 789 907 1596 802 920 1609 801 919 1608 791 909 1598 803 921 1610 790 908 1597 790 908 1597 803 921 1610 802 920 1609 792 910 1599 804 922 1611 791 909 1598 791 909 1598 804 922 1611 803 921 1610 793 911 1600 805 923 1612 792 910 1599 792 910 1599 805 923 1612 804 922 1611 794 912 1601 806 924 1613 793 911 1600 793 911 1600 806 924 1613 805 923 1612 795 913 1602 807 925 1614 794 912 1601 794 912 1601 807 925 1614 806 924 1613 795 913 1602 796 914 1603 807 925 1614 807 925 1614 796 914 1603 808 926 1615 796 914 1603 797 915 1604 808 926 1615 808 926 1615 797 915 1604 809 927 1616 798 916 1605 810 928 1617 797 915 1604 797 915 1604 810 928 1617 809 927 1616 799 918 1607 800 917 1606 811 930 1619 811 930 1619 800 917 1606 812 929 1618 801 919 1608 813 931 1620 800 917 1606 800 917 1606 813 931 1620 812 929 1618 802 920 1609 814 932 1621 801 919 1608 801 919 1608 814 932 1621 813 931 1620 803 921 1610 815 933 1622 802 920 1609 802 920 1609 815 933 1622 814 932 1621 804 922 1611 816 934 1623 803 921 1610 803 921 1610 816 934 1623 815 933 1622 805 923 1612 817 935 1624 804 922 1611 804 922 1611 817 935 1624 816 934 1623 806 924 1613 818 936 1625 805 923 1612 805 923 1612 818 936 1625 817 935 1624 807 925 1614 819 937 1626 806 924 1613 806 924 1613 819 937 1626 818 936 1625 807 925 1614 808 926 1615 819 937 1626 819 937 1626 808 926 1615 820 938 1627 808 926 1615 809 927 1616 820 938 1627 820 938 1627 809 927 1616 821 939 1628 810 928 1617 822 940 1629 809 927 1616 809 927 1616 822 940 1629 821 939 1628 811 930 1619 812 929 1618 823 942 1631 823 942 1631 812 929 1618 824 941 1630 813 931 1620 825 943 1632 812 929 1618 812 929 1618 825 943 1632 824 941 1630 814 932 1621 826 944 1633 813 931 1620 813 931 1620 826 944 1633 825 943 1632 815 933 1622 827 945 1634 814 932 1621 814 932 1621 827 945 1634 826 944 1633 816 934 1623 828 946 1635 815 933 1622 815 933 1622 828 946 1635 827 945 1634 817 935 1624 829 947 1636 816 934 1623 816 934 1623 829 947 1636 828 946 1635 818 936 1625 830 948 1637 817 935 1624 817 935 1624 830 948 1637 829 947 1636 818 936 1625 819 937 1626 830 948 1637 830 948 1637 819 937 1626 831 949 1638 819 937 1626 820 938 1627 831 949 1638 831 949 1638 820 938 1627 832 950 1639 820 938 1627 821 939 1628 832 950 1639 832 950 1639 821 939 1628 833 951 1640 821 939 1628 822 940 1629 833 951 1640 833 951 1640 822 940 1629 834 952 1641 823 942 1631 824 941 1630 846 954 1643 846 954 1643 824 941 1630 835 953 1642 825 943 1632 836 955 1644 824 941 1630 824 941 1630 836 955 1644 835 953 1642 826 944 1633 837 956 1645 825 943 1632 825 943 1632 837 956 1645 836 955 1644 827 945 1634 838 957 1646 826 944 1633 826 944 1633 838 957 1646 837 956 1645 828 946 1635 839 958 1647 827 945 1634 827 945 1634 839 958 1647 838 957 1646 829 947 1636 840 959 1648 828 946 1635 828 946 1635 840 959 1648 839 958 1647 830 948 1637 841 960 1649 829 947 1636 829 947 1636 841 960 1649 840 959 1648 830 948 1637 831 949 1638 841 960 1649 841 960 1649 831 949 1638 842 961 1650 831 949 1638 832 950 1639 842 961 1650 842 961 1650 832 950 1639 843 962 1651 833 951 1640 844 963 1652 832 950 1639 832 950 1639 844 963 1652 843 962 1651 833 951 1640 834 952 1641 844 963 1652 844 963 1652 834 952 1641 845 964 1653 846 954 1643 835 953 1642 847 966 1655 847 966 1655 835 953 1642 848 965 1654 835 953 1642 836 955 1644 848 965 1654 848 965 1654 836 955 1644 849 967 1656 836 955 1644 837 956 1645 849 967 1656 849 967 1656 837 956 1645 850 968 1657 837 956 1645 838 957 1646 850 968 1657 850 968 1657 838 957 1646 851 969 1658 839 958 1647 852 970 1659 838 957 1646 838 957 1646 852 970 1659 851 969 1658 840 959 1648 853 971 1660 839 958 1647 839 958 1647 853 971 1660 852 970 1659 841 960 1649 854 972 1661 840 959 1648 840 959 1648 854 972 1661 853 971 1660 841 960 1649 842 961 1650 854 972 1661 854 972 1661 842 961 1650 855 973 1662 843 962 1651 856 974 1663 842 961 1650 842 961 1650 856 974 1663 855 973 1662 844 963 1652 857 975 1664 843 962 1651 843 962 1651 857 975 1664 856 974 1663 845 964 1653 858 976 1665 844 963 1652 844 963 1652 858 976 1665 857 975 1664 847 966 1655 848 965 1654 859 978 1667 859 978 1667 848 965 1654 860 977 1666 848 965 1654 849 967 1656 860 977 1666 860 977 1666 849 967 1656 861 979 1668 849 967 1656 850 968 1657 861 979 1668 861 979 1668 850 968 1657 862 980 1669 853 971 1660 854 972 1661 863 981 1670 855 973 1662 864 982 1671 854 972 1661 854 972 1661 864 982 1671 863 981 1670 856 974 1663 865 983 1672 855 973 1662 855 973 1662 865 983 1672 864 982 1671 857 975 1664 866 984 1673 856 974 1663 856 974 1663 866 984 1673 865 983 1672 858 976 1665 867 985 1674 857 975 1664 857 975 1664 867 985 1674 866 984 1673 859 978 1667 860 977 1666 868 987 1676 868 987 1676 860 977 1666 869 986 1675 860 977 1666 861 979 1668 869 986 1675 869 986 1675 861 979 1668 870 988 1677 868 987 1676 869 986 1675 871 990 1679 871 990 1679 869 986 1675 872 989 1678 870 988 1677 873 991 1680 869 986 1675 869 986 1675 873 991 1680 872 989 1678 875 992 1681 874 993 1682 865 983 1672 865 983 1672 874 993 1682 864 982 1671 866 984 1673 876 994 1683 865 983 1672 865 983 1672 876 994 1683 875 992 1681 867 985 1674 877 995 1684 866 984 1673 866 984 1673 877 995 1684 876 994 1683 871 990 1679 872 989 1678 878 997 1686 878 997 1686 872 989 1678 879 996 1685 873 991 1680 880 998 1687 872 989 1678 872 989 1678 880 998 1687 879 996 1685 881 1000 1689 874 993 1682 882 999 1688 882 999 1688 874 993 1682 875 992 1681 875 992 1681 876 994 1683 882 999 1688 882 999 1688 876 994 1683 883 1001 1690 877 995 1684 884 1002 1691 876 994 1683 876 994 1683 884 1002 1691 883 1001 1690 878 997 1686 879 996 1685 885 1004 1693 885 1004 1693 879 996 1685 886 1003 1692 879 996 1685 880 998 1687 886 1003 1692 886 1003 1692 880 998 1687 887 1005 1694 889 1006 1695 888 1007 1696 882 999 1688 882 999 1688 888 1007 1696 881 1000 1689 882 999 1688 883 1001 1690 889 1006 1695 889 1006 1695 883 1001 1690 890 1008 1697 884 1002 1691 891 1009 1698 883 1001 1690 883 1001 1690 891 1009 1698 890 1008 1697 885 1004 1693 886 1003 1692 892 1011 1700 892 1011 1700 886 1003 1692 893 1010 1699 886 1003 1692 887 1005 1694 893 1010 1699 893 1010 1699 887 1005 1694 894 1012 1701 888 1007 1696 889 1006 1695 1313 1013 1702 1313 1013 1702 889 1006 1695 895 1014 1703 889 1006 1695 890 1008 1697 895 1014 1703 895 1014 1703 890 1008 1697 896 1015 1704 890 1008 1697 891 1009 1698 896 1015 1704 896 1015 1704 891 1009 1698 1314 1016 1705 891 1009 1698 1337 1017 1706 1314 1016 1705 1314 1016 1705 1337 1017 1706 897 1018 1707 1985 1019 1708 1337 1017 1706 1986 1021 1710 1986 1021 1710 1337 1017 1706 320 1020 1709 892 1011 1700 893 1010 1699 898 1023 1712 898 1023 1712 893 1010 1699 899 1022 1711 893 1010 1699 894 1012 1701 899 1022 1711 899 1022 1711 894 1012 1701 900 1024 1713 1312 1025 1714 1311 1026 1715 905 1028 1717 905 1028 1717 1311 1026 1715 906 1027 1716 697 808 1497 696 807 1496 907 1029 1718 698 811 1500 697 808 1497 907 1029 1718 699 813 1502 698 811 1500 907 1029 1718 700 815 1504 699 813 1502 907 1029 1718 701 817 1506 700 815 1504 907 1029 1718 702 819 1508 701 817 1506 907 1029 1718 703 821 1510 702 819 1508 907 1029 1718 704 823 1512 703 821 1510 907 1029 1718 705 825 1514 704 823 1512 907 1029 1718 706 827 1516 705 825 1514 907 1029 1718 707 829 1518 706 827 1516 907 1029 1718 707 829 1518 907 1029 1718 1331 831 1520 708 833 1522 1980 836 1525 907 1029 1718 941 1030 312 980 1031 313 1007 1033 315 1007 1033 315 980 1031 313 1044 1032 314 1007 1033 315 1028 1034 316 941 1030 312 941 1030 312 1028 1034 316 956 1035 317 942 1036 318 958 1037 319 1007 1033 315 1007 1033 315 958 1037 319 1028 1034 316 1007 1033 315 1044 1032 314 942 1036 318 942 1036 318 1044 1032 314 981 1038 320 943 1039 321 979 1040 322 1008 1042 324 1008 1042 324 979 1040 322 1043 1041 323 1008 1042 324 1029 1043 325 943 1039 321 943 1039 321 1029 1043 325 955 1044 326 941 1030 312 956 1035 317 1008 1042 324 1008 1042 324 956 1035 317 1029 1043 325 1008 1042 324 1043 1041 323 941 1030 312 941 1030 312 1043 1041 323 980 1031 313 944 1045 327 978 1046 328 1009 1048 330 1009 1048 330 978 1046 328 1042 1047 329 1009 1048 330 1027 1049 331 944 1045 327 944 1045 327 1027 1049 331 953 1050 332 943 1039 321 955 1044 326 1009 1048 330 1009 1048 330 955 1044 326 1027 1049 331 1009 1048 330 1042 1047 329 943 1039 321 943 1039 321 1042 1047 329 979 1040 322 977 1052 334 1041 1053 335 945 1051 333 945 1051 333 1041 1053 335 1010 1054 336 1010 1054 336 1030 1055 337 945 1051 333 945 1051 333 1030 1055 337 960 1056 338 944 1045 327 953 1050 332 1010 1054 336 1010 1054 336 953 1050 332 1030 1055 337 1010 1054 336 1041 1053 335 944 1045 327 944 1045 327 1041 1053 335 978 1046 328 1032 1058 340 964 1059 341 1011 1057 339 1011 1057 339 964 1059 341 946 1060 342 960 1056 338 1032 1058 340 945 1051 333 945 1051 333 1032 1058 340 1011 1057 339 1011 1057 339 946 1060 342 1067 1062 344 1067 1062 344 946 1060 342 1066 1061 343 976 1064 346 1040 1065 347 947 1063 345 947 1063 345 1040 1065 347 1012 1066 348 1034 1067 349 968 1068 350 1012 1066 348 1012 1066 348 968 1068 350 947 1063 345 964 1059 341 1034 1067 349 946 1060 342 946 1060 342 1034 1067 349 1012 1066 348 1040 1065 347 1066 1061 343 1012 1066 348 1012 1066 348 1066 1061 343 946 1060 342 975 1070 352 1039 1071 353 948 1069 351 948 1069 351 1039 1071 353 1013 1072 354 1036 1073 355 971 1074 356 1013 1072 354 1013 1072 354 971 1074 356 948 1069 351 968 1068 350 1036 1073 355 947 1063 345 947 1063 345 1036 1073 355 1013 1072 354 1039 1071 353 976 1064 346 1013 1072 354 1013 1072 354 976 1064 346 947 1063 345 973 1076 358 1038 1077 359 949 1075 357 949 1075 357 1038 1077 359 1014 1078 360 1035 1079 361 967 1080 362 1014 1078 360 1014 1078 360 967 1080 362 949 1075 357 971 1074 356 1035 1079 361 948 1069 351 948 1069 351 1035 1079 361 1014 1078 360 1038 1077 359 975 1070 352 1014 1078 360 1014 1078 360 975 1070 352 948 1069 351 974 1082 364 1037 1083 365 950 1081 363 950 1081 363 1037 1083 365 1015 1084 366 1033 1085 367 963 1086 368 1015 1084 366 1015 1084 366 963 1086 368 950 1081 363 967 1080 362 1033 1085 367 949 1075 357 949 1075 357 1033 1085 367 1015 1084 366 1037 1083 365 973 1076 358 1015 1084 366 1015 1084 366 973 1076 358 949 1075 357 942 1036 318 981 1038 320 1016 1088 370 1016 1088 370 981 1038 320 1045 1087 369 1016 1088 370 1031 1089 371 942 1036 318 942 1036 318 1031 1089 371 958 1037 319 950 1081 363 963 1086 368 1016 1088 370 1016 1088 370 963 1086 368 1031 1089 371 1016 1088 370 1045 1087 369 950 1081 363 950 1081 363 1045 1087 369 974 1082 364 1038 1077 359 973 1076 358 1044 1032 314 1044 1032 314 973 1076 358 981 1038 320 986 1090 1719 1048 1091 1720 1906 1093 1722 1906 1093 1722 1048 1091 1720 1907 1092 1721 923 1094 1723 1017 1095 1724 1908 1096 1725 1908 1096 1725 1017 1095 1724 1907 1092 1721 990 1097 1726 1050 1098 1727 1913 1100 1729 1913 1100 1729 1050 1098 1727 1911 1099 1728 925 1101 1730 1018 1102 1731 1909 1103 1732 1909 1103 1732 1018 1102 1731 1911 1099 1728 909 1104 1733 1051 1105 1734 1909 1103 1732 1909 1103 1732 1051 1105 1734 1905 1106 1735 951 1107 1736 1019 1108 1737 1906 1093 1722 1906 1093 1722 1019 1108 1737 1905 1106 1735 1052 1110 1739 1910 1111 1740 908 1109 1738 908 1109 1738 1910 1111 1740 1908 1096 1725 924 1112 1741 1020 1113 1742 1912 1114 1743 1912 1114 1743 1020 1113 1742 1910 1111 1740 910 1115 1744 1053 1116 1745 1912 1114 1743 1912 1114 1743 1053 1116 1745 1914 1117 1746 1021 1119 1748 1914 1117 1746 926 1118 1747 926 1118 1747 1914 1117 1746 1916 1120 1749 1022 1122 1751 1918 1123 1752 927 1121 1750 927 1121 1750 1918 1123 1752 1920 1124 1753 1046 1126 1755 1918 1123 1752 982 1125 1754 982 1125 1754 1918 1123 1752 1916 1120 1749 1047 1128 1757 1922 1129 1758 984 1127 1756 984 1127 1756 1922 1129 1758 1920 1124 1753 1023 1131 1760 1922 1129 1758 929 1130 1759 929 1130 1759 1922 1129 1758 1924 1132 1761 1054 1134 1763 1923 1135 1764 911 1133 1762 911 1133 1762 1923 1135 1764 1924 1132 1761 1024 1137 1766 1923 1135 1764 930 1136 1765 930 1136 1765 1923 1135 1764 1921 1138 1767 1049 1140 1769 1919 1141 1770 988 1139 1768 988 1139 1768 1919 1141 1770 1921 1138 1767 1025 1143 1772 1919 1141 1770 928 1142 1771 928 1142 1771 1919 1141 1770 1917 1144 1773 1055 1146 1775 1915 1147 1776 912 1145 1774 912 1145 1774 1915 1147 1776 1917 1144 1773 1026 1149 1778 1915 1147 1776 952 1148 1777 952 1148 1777 1915 1147 1776 1913 1100 1729 1027 1049 331 954 1150 969 953 1050 332 953 1050 332 954 1150 969 914 1151 963 954 1152 969 1027 1049 331 913 1153 967 913 1153 967 1027 1049 331 955 1044 326 1028 1034 316 957 1154 968 956 1035 317 956 1035 317 957 1154 968 916 1155 965 957 1156 968 1028 1034 316 915 1157 962 915 1157 962 1028 1034 316 958 1037 319 1029 1043 325 959 1158 966 955 1044 326 955 1044 326 959 1158 966 913 1159 967 959 1160 966 1029 1043 325 916 1161 965 916 1161 965 1029 1043 325 956 1035 317 1030 1055 337 961 1162 964 960 1056 338 960 1056 338 961 1162 964 917 1163 959 961 1164 964 1030 1055 337 914 1165 963 914 1165 963 1030 1055 337 953 1050 332 1031 1089 371 962 1166 961 958 1037 319 958 1037 319 962 1166 961 915 1167 962 962 1168 961 1031 1089 371 918 1169 958 918 1169 958 1031 1089 371 963 1086 368 964 1059 341 1032 1058 340 919 1171 955 919 1171 955 1032 1058 340 965 1170 960 1032 1058 340 960 1056 338 965 1172 960 965 1172 960 960 1056 338 917 1173 959 963 1086 368 1033 1085 367 918 1175 958 918 1175 958 1033 1085 367 966 1174 957 1033 1085 367 967 1080 362 966 1176 957 966 1176 957 967 1080 362 920 1177 954 968 1068 350 1034 1067 349 921 1179 950 921 1179 950 1034 1067 349 969 1178 956 1034 1067 349 964 1059 341 969 1180 956 969 1180 956 964 1059 341 919 1181 955 967 1080 362 1035 1079 361 920 1183 954 920 1183 954 1035 1079 361 970 1182 953 1035 1079 361 971 1074 356 970 1184 953 970 1184 953 971 1074 356 922 1185 952 971 1074 356 1036 1073 355 922 1187 952 922 1187 952 1036 1073 355 972 1186 951 1036 1073 355 968 1068 350 972 1188 951 972 1188 951 968 1068 350 921 1189 950 954 1191 1780 1020 1113 1742 914 1190 1779 914 1190 1779 1020 1113 1742 924 1112 1741 1020 1113 1742 954 1192 1780 923 1094 1723 923 1094 1723 954 1192 1780 913 1193 1781 957 1195 1783 1019 1108 1737 916 1194 1782 916 1194 1782 1019 1108 1737 951 1107 1736 925 1101 1730 1019 1108 1737 915 1197 1784 915 1197 1784 1019 1108 1737 957 1196 1783 923 1094 1723 913 1198 1781 1017 1095 1724 1017 1095 1724 913 1198 1781 959 1199 1785 916 1200 1782 951 1107 1736 959 1201 1785 959 1201 1785 951 1107 1736 1017 1095 1724 961 1203 1787 1021 1119 1748 917 1202 1786 917 1202 1786 1021 1119 1748 926 1118 1747 914 1204 1779 924 1112 1741 961 1205 1787 961 1205 1787 924 1112 1741 1021 1119 1748 915 1206 1784 962 1207 1788 925 1101 1730 925 1101 1730 962 1207 1788 1018 1102 1731 952 1148 1777 1018 1102 1731 918 1209 1789 918 1209 1789 1018 1102 1731 962 1208 1788 965 1211 1791 1022 1122 1751 919 1210 1790 919 1210 1790 1022 1122 1751 927 1121 1750 917 1212 1786 926 1118 1747 965 1213 1791 965 1213 1791 926 1118 1747 1022 1122 1751 918 1214 1789 966 1215 1792 952 1148 1777 952 1148 1777 966 1215 1792 1026 1149 1778 928 1142 1771 1026 1149 1778 920 1217 1793 920 1217 1793 1026 1149 1778 966 1216 1792 969 1219 1795 1023 1131 1760 921 1218 1794 921 1218 1794 1023 1131 1760 929 1130 1759 919 1220 1790 927 1121 1750 969 1221 1795 969 1221 1795 927 1121 1750 1023 1131 1760 920 1222 1793 970 1223 1796 928 1142 1771 928 1142 1771 970 1223 1796 1025 1143 1772 930 1136 1765 1025 1143 1772 922 1225 1797 922 1225 1797 1025 1143 1772 970 1224 1796 930 1136 1765 922 1226 1797 1024 1137 1766 1024 1137 1766 922 1226 1797 972 1227 1798 921 1228 1794 929 1130 1759 972 1229 1798 972 1229 1798 929 1130 1759 1024 1137 1766 1046 1126 1755 996 1230 1799 984 1127 1756 984 1127 1756 996 1230 1799 932 1231 1800 1046 1126 1755 982 1125 1754 996 1230 1799 996 1230 1799 982 1125 1754 931 1232 1801 1047 1128 1757 983 1233 1802 911 1133 1762 911 1133 1762 983 1233 1802 933 1234 1803 983 1233 1802 1047 1128 1757 932 1231 1800 932 1231 1800 1047 1128 1757 984 1127 1756 908 1109 1738 1048 1091 1720 935 1236 1805 935 1236 1805 1048 1091 1720 985 1235 1804 1048 1091 1720 986 1090 1719 985 1235 1804 985 1235 1804 986 1090 1719 934 1237 1806 1049 1140 1769 987 1238 1807 912 1145 1774 912 1145 1774 987 1238 1807 937 1239 1808 987 1238 1807 1049 1140 1769 936 1240 1809 936 1240 1809 1049 1140 1769 988 1139 1768 909 1104 1733 1050 1098 1727 939 1242 1811 939 1242 1811 1050 1098 1727 989 1241 1810 989 1241 1810 1050 1098 1727 938 1243 1812 938 1243 1812 1050 1098 1727 990 1097 1726 986 1090 1719 1051 1105 1734 934 1237 1806 934 1237 1806 1051 1105 1734 991 1244 1813 1051 1105 1734 909 1104 1733 991 1244 1813 991 1244 1813 909 1104 1733 939 1242 1811 910 1115 1744 1052 1110 1739 940 1246 1815 940 1246 1815 1052 1110 1739 992 1245 1814 1052 1110 1739 908 1109 1738 992 1245 1814 992 1245 1814 908 1109 1738 935 1236 1805 982 1125 1754 1053 1116 1745 931 1232 1801 931 1232 1801 1053 1116 1745 993 1247 1816 1053 1116 1745 910 1115 1744 993 1247 1816 993 1247 1816 910 1115 1744 940 1246 1815 1054 1134 1763 994 1248 1817 988 1139 1768 988 1139 1768 994 1248 1817 936 1240 1809 994 1248 1817 1054 1134 1763 933 1234 1803 933 1234 1803 1054 1134 1763 911 1133 1762 1055 1146 1775 995 1249 1818 990 1097 1726 990 1097 1726 995 1249 1818 938 1243 1812 995 1249 1818 1055 1146 1775 937 1239 1808 937 1239 1808 1055 1146 1775 912 1145 1774 1056 1250 1819 997 1251 1820 996 1230 1799 996 1230 1799 997 1251 1820 932 1231 1800 998 1252 1821 1056 1250 1819 931 1232 1801 931 1232 1801 1056 1250 1819 996 1230 1799 983 1233 1802 1057 1253 1822 933 1234 1803 933 1234 1803 1057 1253 1822 999 1254 1823 1057 1253 1822 983 1233 1802 997 1251 1820 997 1251 1820 983 1233 1802 932 1231 1800 1058 1255 1824 1000 1256 1825 985 1235 1804 985 1235 1804 1000 1256 1825 935 1236 1805 1001 1257 1826 1058 1255 1824 934 1237 1806 934 1237 1806 1058 1255 1824 985 1235 1804 987 1238 1807 1059 1258 1827 937 1239 1808 937 1239 1808 1059 1258 1827 1002 1259 1828 1059 1258 1827 987 1238 1807 1003 1260 1829 1003 1260 1829 987 1238 1807 936 1240 1809 989 1241 1810 1060 1261 1830 939 1242 1811 939 1242 1811 1060 1261 1830 1004 1262 1831 1060 1261 1830 989 1241 1810 1005 1263 1832 1005 1263 1832 989 1241 1810 938 1243 1812 1061 1264 1833 1001 1257 1826 991 1244 1813 991 1244 1813 1001 1257 1826 934 1237 1806 1004 1262 1831 1061 1264 1833 939 1242 1811 939 1242 1811 1061 1264 1833 991 1244 1813 1062 1265 1834 1006 1266 1835 992 1245 1814 992 1245 1814 1006 1266 1835 940 1246 1815 1000 1256 1825 1062 1265 1834 935 1236 1805 935 1236 1805 1062 1265 1834 992 1245 1814 1063 1267 1836 998 1252 1821 993 1247 1816 993 1247 1816 998 1252 1821 931 1232 1801 1006 1266 1835 1063 1267 1836 940 1246 1815 940 1246 1815 1063 1267 1836 993 1247 1816 994 1248 1817 1064 1268 1837 936 1240 1809 936 1240 1809 1064 1268 1837 1003 1260 1829 1064 1268 1837 994 1248 1817 999 1254 1823 999 1254 1823 994 1248 1817 933 1234 1803 995 1249 1818 1065 1269 1838 938 1243 1812 938 1243 1812 1065 1269 1838 1005 1263 1832 1065 1269 1838 995 1249 1818 1002 1259 1828 1002 1259 1828 995 1249 1818 937 1239 1808 1037 1083 365 974 1082 364 973 1076 358 973 1076 358 974 1082 364 981 1038 320 974 1082 364 1045 1087 369 981 1038 320 980 1031 313 1043 1041 323 975 1070 352 975 1070 352 1043 1041 323 1039 1071 353 1044 1032 314 980 1031 313 1038 1077 359 1038 1077 359 980 1031 313 975 1070 352 1043 1041 323 979 1040 322 1039 1071 353 1039 1071 353 979 1040 322 976 1064 346 1041 1053 335 977 1052 334 978 1046 328 1066 1061 343 978 1046 328 1067 1062 344 978 1046 328 977 1052 334 1067 1062 344 1042 1047 329 1040 1065 347 979 1040 322 979 1040 322 1040 1065 347 976 1064 346 1067 1062 344 977 1052 334 1011 1057 339 1011 1057 339 977 1052 334 945 1051 333 978 1046 328 1066 1061 343 1042 1047 329 1042 1047 329 1066 1061 343 1040 1065 347 997 1251 1820 1056 1250 1819 903 1271 1840 903 1271 1840 1056 1250 1819 904 1270 1839 1056 1250 1819 998 1252 1821 904 1270 1839 904 1270 1839 998 1252 1821 1313 1013 1702 1057 1253 1822 902 1272 1841 999 1254 1823 999 1254 1823 902 1272 1841 901 1273 1842 1058 1255 1824 863 981 1670 1000 1256 1825 1000 1256 1825 863 981 1670 864 982 1671 1058 1255 1824 1001 1257 1826 863 981 1670 863 981 1670 1001 1257 1826 853 971 1660 1059 1258 1827 887 1005 1694 1002 1259 1828 1002 1259 1828 887 1005 1694 880 998 1687 1003 1260 1829 894 1012 1701 1059 1258 1827 1059 1258 1827 894 1012 1701 887 1005 1694 1004 1262 1831 1060 1261 1830 851 969 1658 851 969 1658 1060 1261 1830 862 980 1669 1060 1261 1830 1005 1263 1832 862 980 1669 862 980 1669 1005 1263 1832 870 988 1677 1061 1264 1833 852 970 1659 1001 1257 1826 1001 1257 1826 852 970 1659 853 971 1660 1061 1264 1833 1004 1262 1831 852 970 1659 852 970 1659 1004 1262 1831 851 969 1658 1006 1266 1835 1062 1265 1834 881 1000 1689 881 1000 1689 1062 1265 1834 874 993 1682 1062 1265 1834 1000 1256 1825 874 993 1682 874 993 1682 1000 1256 1825 864 982 1671 1063 1267 1836 1006 1266 1835 888 1007 1696 888 1007 1696 1006 1266 1835 881 1000 1689 1003 1260 1829 1064 1268 1837 894 1012 1701 894 1012 1701 1064 1268 1837 900 1024 1713 999 1254 1823 901 1273 1842 1064 1268 1837 1064 1268 1837 901 1273 1842 900 1024 1713 1005 1263 1832 1065 1269 1838 870 988 1677 870 988 1677 1065 1269 1838 873 991 1680 1065 1269 1838 1002 1259 1828 873 991 1680 873 991 1680 1002 1259 1828 880 998 1687 997 1251 1820 903 1271 1840 1057 1253 1822 1057 1253 1822 903 1271 1840 902 1272 1841 870 988 1677 861 979 1668 862 980 1669 862 980 1669 850 968 1657 851 969 1658 1063 1267 1836 888 1007 1696 998 1252 1821 998 1252 1821 888 1007 1696 1313 1013 1702 1116 1274 372 1237 1275 373 1117 1276 374 1237 1275 373 1152 1278 376 1151 1277 375 1151 1277 375 1152 1278 376 1117 1276 374 1153 1279 377 1238 1280 378 1070 1282 380 1070 1282 380 1238 1280 378 1092 1281 379 1238 1280 378 1153 1279 377 1308 1283 381 1308 1283 381 1153 1279 377 1309 1284 382 1239 1285 383 1310 1286 384 1153 1279 377 1153 1279 377 1310 1286 384 1309 1284 382 1110 1287 385 1287 1288 386 1093 1289 387 1093 1289 387 1287 1288 386 1239 1285 383 1239 1285 383 1153 1279 377 1093 1289 387 1093 1289 387 1153 1279 377 1070 1282 380 1118 1291 389 1154 1292 390 1219 1290 388 1219 1290 388 1154 1292 390 1297 1293 391 1115 1295 393 1297 1293 391 1113 1294 392 1113 1294 392 1297 1293 391 1154 1292 390 1112 1297 395 1150 1298 396 1120 1296 394 1120 1296 394 1150 1298 396 1155 1299 397 1071 1300 398 1155 1299 397 1069 1302 399 1069 1302 399 1155 1299 397 1150 1301 396 1154 1292 390 1240 1303 400 1113 1305 392 1113 1305 392 1240 1303 400 1156 1304 401 1240 1303 400 1277 1307 402 1156 1306 401 1156 1306 401 1277 1307 402 1114 1308 403 1277 1307 402 1240 1303 400 1222 1310 405 1222 1310 405 1240 1303 400 1157 1309 404 1240 1303 400 1154 1292 390 1157 1309 404 1157 1309 404 1154 1292 390 1118 1291 389 1121 1312 407 1158 1313 408 1218 1311 406 1218 1311 406 1158 1313 408 1274 1314 409 1219 1290 388 1274 1314 409 1118 1291 389 1118 1291 389 1274 1314 409 1158 1313 408 1159 1315 410 1241 1316 411 1123 1318 413 1123 1318 413 1241 1316 411 1160 1317 412 1241 1316 411 1245 1319 414 1160 1317 412 1160 1317 412 1245 1319 414 1124 1320 415 1245 1319 414 1241 1316 411 1161 1321 416 1161 1321 416 1241 1316 411 1122 1322 417 1122 1322 417 1241 1316 411 1159 1315 410 1162 1323 418 1242 1324 419 1120 1296 394 1120 1296 394 1242 1324 419 1119 1325 420 1242 1324 419 1162 1323 418 1220 1326 421 1220 1326 421 1162 1323 418 1125 1327 422 1162 1323 418 1243 1328 423 1125 1327 422 1125 1327 422 1243 1328 423 1163 1329 424 1243 1328 423 1094 1330 425 1163 1329 424 1163 1329 424 1094 1330 425 1072 1331 426 1094 1330 425 1243 1328 423 1071 1300 398 1071 1300 398 1243 1328 423 1155 1299 397 1243 1328 423 1162 1323 418 1155 1299 397 1155 1299 397 1162 1323 418 1120 1296 394 1278 1332 427 1244 1333 428 1223 1335 430 1223 1335 430 1244 1333 428 1164 1334 429 1164 1334 429 1244 1333 428 1121 1312 407 1121 1312 407 1244 1333 428 1158 1313 408 1244 1333 428 1157 1309 404 1158 1313 408 1158 1313 408 1157 1309 404 1118 1291 389 1244 1333 428 1278 1332 427 1157 1309 404 1157 1309 404 1278 1332 427 1222 1310 405 1124 1320 415 1245 1319 414 1126 1337 432 1126 1337 432 1245 1319 414 1165 1336 431 1165 1336 431 1245 1319 414 1166 1338 433 1129 1340 435 1167 1341 436 1208 1339 434 1208 1339 434 1167 1341 436 1128 1342 437 1167 1341 436 1129 1340 435 1209 1344 439 1209 1344 439 1129 1340 435 1296 1343 438 1168 1345 440 1246 1346 441 1073 1348 443 1073 1348 443 1246 1346 441 1095 1347 442 1095 1347 442 1246 1346 441 1074 1350 445 1074 1350 445 1246 1346 441 1266 1349 444 1246 1346 441 1167 1341 436 1266 1349 444 1266 1349 444 1167 1341 436 1209 1344 439 1246 1346 441 1168 1345 440 1167 1341 436 1167 1341 436 1168 1345 440 1128 1342 437 1228 1351 446 1247 1352 447 1131 1354 449 1131 1354 449 1247 1352 447 1170 1353 448 1247 1352 447 1169 1355 450 1170 1353 448 1170 1353 448 1169 1355 450 1130 1356 451 1248 1358 453 1172 1359 454 1171 1357 452 1171 1357 452 1172 1359 454 1132 1360 455 1248 1358 453 1237 1275 373 1172 1359 454 1172 1359 454 1237 1275 373 1116 1274 372 1301 1361 456 1174 1362 457 1171 1357 452 1171 1357 452 1174 1362 457 1248 1358 453 1248 1358 453 1173 1363 458 1237 1275 373 1237 1275 373 1173 1363 458 1152 1278 376 1173 1363 458 1248 1358 453 1133 1364 459 1133 1364 459 1248 1358 453 1174 1362 457 1175 1365 460 1249 1366 461 1306 1368 463 1306 1368 463 1249 1366 461 1307 1367 462 1249 1366 461 1238 1280 378 1307 1367 462 1307 1367 462 1238 1280 378 1308 1283 381 1238 1280 378 1249 1366 461 1092 1281 379 1092 1281 379 1249 1366 461 1096 1369 464 1249 1366 461 1175 1365 460 1096 1369 464 1096 1369 464 1175 1365 460 1075 1370 465 1218 1311 406 1273 1371 466 1121 1312 407 1121 1312 407 1273 1371 466 1176 1372 467 1135 1374 469 1176 1372 467 1134 1373 468 1134 1373 468 1176 1372 467 1273 1371 466 1177 1375 470 1250 1376 471 1136 1378 473 1136 1378 473 1250 1376 471 1178 1377 472 1250 1376 471 1179 1379 474 1178 1377 472 1178 1377 472 1179 1379 474 1137 1380 475 1179 1379 474 1250 1376 471 1132 1360 455 1132 1360 455 1250 1376 471 1171 1357 452 1251 1382 477 1177 1375 470 1180 1381 476 1180 1381 476 1177 1375 470 1136 1378 473 1174 1362 457 1301 1361 456 1235 1384 479 1181 1383 478 1235 1384 479 1301 1361 456 1181 1383 478 1251 1382 477 1126 1337 432 1126 1337 432 1251 1382 477 1182 1385 480 1251 1382 477 1180 1381 476 1182 1385 480 1182 1385 480 1180 1381 476 1138 1386 481 1252 1388 483 1179 1379 474 1183 1387 482 1183 1387 482 1179 1379 474 1132 1360 455 1179 1379 474 1252 1388 483 1137 1380 475 1137 1380 475 1252 1388 483 1184 1389 484 1252 1388 483 1286 1390 485 1184 1389 484 1184 1389 484 1286 1390 485 1232 1391 486 1286 1390 485 1252 1388 483 1233 1392 487 1233 1392 487 1252 1388 483 1183 1387 482 1217 1394 489 1272 1395 490 1139 1393 488 1139 1393 488 1272 1395 490 1185 1396 491 1140 1398 493 1185 1396 491 1216 1397 492 1216 1397 492 1185 1396 491 1272 1395 490 1186 1399 494 1253 1400 495 1142 1402 497 1142 1402 497 1253 1400 495 1187 1401 496 1253 1400 495 1188 1403 498 1187 1401 496 1187 1401 496 1188 1403 498 1144 1404 499 1188 1403 498 1253 1400 495 1143 1406 501 1143 1406 501 1253 1400 495 1189 1405 500 1253 1400 495 1186 1399 494 1189 1405 500 1189 1405 500 1186 1399 494 1141 1407 502 1190 1408 503 1254 1409 504 1145 1411 506 1145 1411 506 1254 1409 504 1191 1410 505 1254 1409 504 1192 1412 507 1191 1410 505 1191 1410 505 1192 1412 507 1130 1356 451 1254 1409 504 1186 1399 494 1192 1412 507 1192 1412 507 1186 1399 494 1142 1402 497 1186 1399 494 1254 1409 504 1141 1407 502 1141 1407 502 1254 1409 504 1190 1408 503 1193 1413 508 1255 1414 509 1225 1416 511 1225 1416 511 1255 1414 509 1281 1415 510 1255 1414 509 1194 1417 512 1281 1415 510 1281 1415 510 1194 1417 512 1226 1418 513 1194 1417 512 1255 1414 509 1140 1398 493 1140 1398 493 1255 1414 509 1185 1396 491 1255 1414 509 1193 1413 508 1185 1396 491 1185 1396 491 1193 1413 508 1139 1393 488 1256 1420 515 1188 1403 498 1195 1419 514 1195 1419 514 1188 1403 498 1143 1406 501 1188 1403 498 1256 1420 515 1144 1404 499 1144 1404 499 1256 1420 515 1196 1421 516 1256 1420 515 1284 1422 517 1196 1421 516 1196 1421 516 1284 1422 517 1230 1423 518 1284 1422 517 1256 1420 515 1231 1424 519 1231 1424 519 1256 1420 515 1195 1419 514 1216 1397 492 1271 1425 520 1140 1398 493 1140 1398 493 1271 1425 520 1194 1417 512 1227 1426 521 1226 1418 513 1271 1425 520 1271 1425 520 1226 1418 513 1194 1417 512 1257 1428 523 1283 1429 524 1197 1427 522 1197 1427 522 1283 1429 524 1229 1430 525 1283 1429 524 1257 1428 523 1230 1423 518 1230 1423 518 1257 1428 523 1196 1421 516 1196 1421 516 1257 1428 523 1144 1404 499 1144 1404 499 1257 1428 523 1187 1401 496 1257 1428 523 1197 1427 522 1187 1401 496 1187 1401 496 1197 1427 522 1142 1402 497 1198 1431 526 1258 1432 527 1125 1327 422 1125 1327 422 1258 1432 527 1220 1326 421 1258 1432 527 1198 1431 526 1221 1433 528 1221 1433 528 1198 1431 526 1146 1434 529 1259 1436 531 1199 1437 532 1200 1435 530 1200 1435 530 1199 1437 532 1147 1438 533 1174 1362 457 1260 1439 534 1133 1364 459 1133 1364 459 1260 1439 534 1201 1440 535 1304 1442 537 1305 1443 538 1302 1441 536 1302 1441 536 1305 1443 538 1201 1440 535 1198 1431 526 1261 1444 539 1146 1434 529 1146 1434 529 1261 1444 539 1203 1445 540 1261 1444 539 1097 1446 541 1203 1445 540 1203 1445 540 1097 1446 541 1076 1447 542 1097 1446 541 1261 1444 539 1072 1331 426 1072 1331 426 1261 1444 539 1163 1329 424 1261 1444 539 1198 1431 526 1163 1329 424 1163 1329 424 1198 1431 526 1125 1327 422 1262 1448 543 1175 1365 460 1305 1443 538 1305 1443 538 1175 1365 460 1306 1368 463 1175 1365 460 1262 1448 543 1075 1370 465 1075 1370 465 1262 1448 543 1098 1449 544 1262 1448 543 1204 1450 545 1098 1449 544 1098 1449 544 1204 1450 545 1077 1451 546 1204 1450 545 1262 1448 543 1304 1442 537 1304 1442 537 1262 1448 543 1305 1443 538 1148 1452 547 1276 1453 548 1146 1434 529 1146 1434 529 1276 1453 548 1221 1433 528 1199 1437 532 1206 1454 549 1147 1438 533 1147 1438 533 1206 1454 549 1205 1455 550 1303 1457 552 1304 1442 537 1265 1456 551 1265 1456 551 1304 1442 537 1302 1441 536 1078 1458 553 1263 1459 554 1076 1447 542 1076 1447 542 1263 1459 554 1203 1445 540 1263 1459 554 1148 1452 547 1203 1445 540 1203 1445 540 1148 1452 547 1146 1434 529 1204 1450 545 1264 1460 555 1077 1451 546 1077 1451 546 1264 1460 555 1099 1461 556 1264 1460 555 1204 1450 545 1303 1457 552 1303 1457 552 1204 1450 545 1304 1442 537 1206 1454 549 1129 1340 435 1205 1455 550 1205 1455 550 1129 1340 435 1208 1339 434 1074 1350 445 1266 1349 444 1078 1458 553 1078 1458 553 1266 1349 444 1263 1459 554 1266 1349 444 1209 1344 439 1263 1459 554 1263 1459 554 1209 1344 439 1148 1452 547 1267 1463 558 1210 1464 559 1279 1462 557 1279 1462 557 1210 1464 559 1224 1465 560 1210 1464 559 1267 1463 558 1135 1374 469 1135 1374 469 1267 1463 558 1176 1372 467 1267 1463 558 1164 1334 429 1176 1372 467 1176 1372 467 1164 1334 429 1121 1312 407 1164 1334 429 1267 1463 558 1223 1335 430 1223 1335 430 1267 1463 558 1279 1462 557 1285 1466 561 1268 1467 562 1232 1391 486 1232 1391 486 1268 1467 562 1184 1389 484 1268 1467 562 1211 1468 563 1184 1389 484 1184 1389 484 1211 1468 563 1137 1380 475 1211 1468 563 1268 1467 562 1143 1406 501 1143 1406 501 1268 1467 562 1195 1419 514 1268 1467 562 1285 1466 561 1195 1419 514 1195 1419 514 1285 1466 561 1231 1424 519 1149 1469 564 1269 1470 565 1145 1411 506 1145 1411 506 1269 1470 565 1212 1471 566 1269 1470 565 1213 1472 567 1212 1471 566 1212 1471 566 1213 1472 567 1138 1386 481 1134 1373 468 1300 1473 568 1135 1374 469 1135 1374 469 1300 1473 568 1214 1474 569 1139 1393 488 1214 1474 569 1217 1394 489 1217 1394 489 1214 1474 569 1300 1473 568 1215 1475 570 1270 1476 571 1141 1407 502 1141 1407 502 1270 1476 571 1189 1405 500 1270 1476 571 1211 1468 563 1189 1405 500 1189 1405 500 1211 1468 563 1143 1406 501 1211 1468 563 1270 1476 571 1137 1380 475 1137 1380 475 1270 1476 571 1178 1377 472 1270 1476 571 1215 1475 570 1178 1377 472 1178 1377 472 1215 1475 570 1136 1378 473 1227 1426 521 1271 1425 520 1228 1351 446 1228 1351 446 1271 1425 520 1247 1352 447 1271 1425 520 1216 1397 492 1247 1352 447 1247 1352 447 1216 1397 492 1169 1355 450 1216 1397 492 1272 1395 490 1169 1355 450 1169 1355 450 1272 1395 490 1293 1477 572 1272 1395 490 1217 1394 489 1293 1477 572 1293 1477 572 1217 1394 489 1149 1469 564 1134 1373 468 1273 1371 466 1213 1472 567 1213 1472 567 1273 1371 466 1290 1478 573 1273 1371 466 1218 1311 406 1290 1478 573 1290 1478 573 1218 1311 406 1124 1320 415 1218 1311 406 1274 1314 409 1124 1320 415 1124 1320 415 1274 1314 409 1160 1317 412 1274 1314 409 1219 1290 388 1160 1317 412 1160 1317 412 1219 1290 388 1123 1318 413 1275 1480 574 1159 1315 410 1115 1479 393 1115 1479 393 1159 1315 410 1123 1318 413 1330 1481 575 1161 1321 416 1122 1322 417 1259 1436 531 1258 1432 527 1199 1437 532 1199 1437 532 1258 1432 527 1221 1433 528 1276 1453 548 1206 1454 549 1221 1433 528 1221 1433 528 1206 1454 549 1199 1437 532 1296 1343 438 1129 1340 435 1276 1453 548 1276 1453 548 1129 1340 435 1206 1454 549 1114 1482 403 1277 1307 402 1068 1484 577 1068 1484 577 1277 1307 402 1100 1483 576 1100 1483 576 1277 1307 402 1079 1485 578 1079 1485 578 1277 1307 402 1222 1310 405 1278 1332 427 1101 1486 579 1222 1310 405 1222 1310 405 1101 1486 579 1079 1485 578 1101 1486 579 1278 1332 427 1080 1487 580 1080 1487 580 1278 1332 427 1223 1335 430 1279 1462 557 1102 1488 581 1223 1335 430 1223 1335 430 1102 1488 581 1080 1487 580 1279 1462 557 1224 1465 560 1102 1488 581 1102 1488 581 1224 1465 560 1081 1489 582 1224 1465 560 1280 1490 583 1081 1489 582 1081 1489 582 1280 1490 583 1103 1491 584 1280 1490 583 1225 1416 511 1103 1491 584 1103 1491 584 1225 1416 511 1082 1492 585 1225 1416 511 1281 1415 510 1082 1492 585 1082 1492 585 1281 1415 510 1104 1493 586 1281 1415 510 1226 1418 513 1104 1493 586 1104 1493 586 1226 1418 513 1083 1494 587 1226 1418 513 1227 1426 521 1083 1494 587 1083 1494 587 1227 1426 521 1084 1495 588 1227 1426 521 1228 1351 446 1084 1495 588 1084 1495 588 1228 1351 446 1085 1496 589 1282 1497 590 1105 1498 591 1131 1354 449 1131 1354 449 1105 1498 591 1087 1499 592 1105 1498 591 1282 1497 590 1086 1500 593 1086 1500 593 1282 1497 590 1229 1430 525 1106 1501 594 1283 1429 524 1088 1502 595 1088 1502 595 1283 1429 524 1230 1423 518 1283 1429 524 1106 1501 594 1229 1430 525 1229 1430 525 1106 1501 594 1086 1500 593 1284 1422 517 1107 1503 596 1230 1423 518 1230 1423 518 1107 1503 596 1088 1502 595 1107 1503 596 1284 1422 517 1089 1504 597 1089 1504 597 1284 1422 517 1231 1424 519 1108 1505 598 1285 1466 561 1090 1506 599 1090 1506 599 1285 1466 561 1232 1391 486 1285 1466 561 1108 1505 598 1231 1424 519 1231 1424 519 1108 1505 598 1089 1504 597 1286 1390 485 1109 1507 600 1232 1391 486 1232 1391 486 1109 1507 600 1090 1506 599 1109 1507 600 1286 1390 485 1091 1508 601 1091 1508 601 1286 1390 485 1233 1392 487 1287 1288 386 1110 1287 385 1233 1392 487 1233 1392 487 1110 1287 385 1091 1508 601 1168 1345 440 1288 1509 602 1128 1342 437 1128 1342 437 1288 1509 602 1234 1510 603 1288 1509 602 1264 1460 555 1234 1510 603 1234 1510 603 1264 1460 555 1303 1457 552 1264 1460 555 1288 1509 602 1099 1461 556 1099 1461 556 1288 1509 602 1111 1511 604 1288 1509 602 1168 1345 440 1111 1511 604 1111 1511 604 1168 1345 440 1073 1348 443 1085 1496 589 1228 1351 446 1087 1499 592 1087 1499 592 1228 1351 446 1131 1354 449 1289 1512 605 1235 1384 479 1200 1435 530 1200 1435 530 1235 1384 479 1127 1513 606 1235 1384 479 1289 1512 605 1174 1362 457 1174 1362 457 1289 1512 605 1260 1439 534 1289 1512 605 1236 1514 607 1260 1439 534 1260 1439 534 1236 1514 607 1202 1515 608 1236 1514 607 1289 1512 605 1147 1438 533 1147 1438 533 1289 1512 605 1200 1435 530 1213 1472 567 1290 1478 573 1138 1386 481 1138 1386 481 1290 1478 573 1182 1385 480 1182 1385 480 1290 1478 573 1126 1337 432 1126 1337 432 1290 1478 573 1124 1320 415 1291 1516 609 1236 1514 607 1205 1455 550 1205 1455 550 1236 1514 607 1147 1438 533 1236 1514 607 1291 1516 609 1202 1515 608 1202 1515 608 1291 1516 609 1207 1517 610 1215 1475 570 1292 1518 611 1136 1378 473 1136 1378 473 1292 1518 611 1180 1381 476 1180 1381 476 1292 1518 611 1138 1386 481 1138 1386 481 1292 1518 611 1212 1471 566 1292 1518 611 1190 1408 503 1212 1471 566 1212 1471 566 1190 1408 503 1145 1411 506 1292 1518 611 1215 1475 570 1190 1408 503 1190 1408 503 1215 1475 570 1141 1407 502 1294 1519 612 1291 1516 609 1208 1339 434 1208 1339 434 1291 1516 609 1205 1455 550 1291 1516 609 1294 1519 612 1207 1517 610 1207 1517 610 1294 1519 612 1265 1456 551 1169 1355 450 1293 1477 572 1130 1356 451 1130 1356 451 1293 1477 572 1191 1410 505 1293 1477 572 1149 1469 564 1191 1410 505 1191 1410 505 1149 1469 564 1145 1411 506 1234 1510 603 1294 1519 612 1128 1342 437 1128 1342 437 1294 1519 612 1208 1339 434 1282 1497 590 1295 1520 613 1229 1430 525 1229 1430 525 1295 1520 613 1197 1427 522 1295 1520 613 1192 1412 507 1197 1427 522 1197 1427 522 1192 1412 507 1142 1402 497 1192 1412 507 1295 1520 613 1130 1356 451 1130 1356 451 1295 1520 613 1170 1353 448 1295 1520 613 1282 1497 590 1170 1353 448 1170 1353 448 1282 1497 590 1131 1354 449 1209 1344 439 1296 1343 438 1148 1452 547 1148 1452 547 1296 1343 438 1276 1453 548 1219 1290 388 1297 1293 391 1123 1318 413 1123 1318 413 1297 1293 391 1115 1521 393 1126 1337 432 1165 1336 431 1181 1383 478 1165 1336 431 1127 1513 606 1181 1383 478 1235 1384 479 1181 1383 478 1127 1513 606 1298 1522 614 1287 1288 386 1183 1387 482 1183 1387 482 1287 1288 386 1233 1392 487 1287 1288 386 1298 1522 614 1239 1285 383 1239 1285 383 1298 1522 614 1310 1286 384 1172 1359 454 1298 1522 614 1132 1360 455 1132 1360 455 1298 1522 614 1183 1387 482 1210 1464 559 1299 1523 615 1224 1465 560 1224 1465 560 1299 1523 615 1280 1490 583 1299 1523 615 1193 1413 508 1280 1490 583 1280 1490 583 1193 1413 508 1225 1416 511 1193 1413 508 1299 1523 615 1139 1393 488 1139 1393 488 1299 1523 615 1214 1474 569 1299 1523 615 1210 1464 559 1214 1474 569 1214 1474 569 1210 1464 559 1135 1374 469 1217 1394 489 1300 1473 568 1149 1469 564 1149 1469 564 1300 1473 568 1269 1470 565 1300 1473 568 1134 1373 468 1269 1470 565 1269 1470 565 1134 1373 468 1213 1472 567 1301 1361 456 1177 1375 470 1181 1383 478 1181 1383 478 1177 1375 470 1251 1382 477 1250 1376 471 1177 1375 470 1171 1357 452 1171 1357 452 1177 1375 470 1301 1361 456 1202 1515 608 1207 1517 610 1302 1441 536 1302 1441 536 1207 1517 610 1265 1456 551 1260 1439 534 1202 1515 608 1201 1440 535 1201 1440 535 1202 1515 608 1302 1441 536 1265 1456 551 1294 1519 612 1303 1457 552 1303 1457 552 1294 1519 612 1234 1510 603 1305 1443 538 1306 1368 463 1201 1440 535 1201 1440 535 1306 1368 463 1133 1364 459 1307 1367 462 1173 1363 458 1306 1368 463 1306 1368 463 1173 1363 458 1133 1364 459 1173 1363 458 1307 1367 462 1152 1278 376 1152 1278 376 1307 1367 462 1308 1283 381 1308 1283 381 1309 1284 382 1152 1278 376 1152 1278 376 1309 1284 382 1117 1276 374 1310 1286 384 1116 1274 372 1309 1284 382 1309 1284 382 1116 1274 372 1117 1276 374 1298 1522 614 1172 1359 454 1310 1286 384 1310 1286 384 1172 1359 454 1116 1274 372 1319 1525 1844 1318 1526 1845 1068 1524 1843 1068 1524 1843 1318 1526 1845 1114 1527 1846 1321 1528 1847 1318 1526 1845 902 1272 1841 902 1272 1841 1318 1526 1845 906 1027 1716 902 1272 1841 906 1027 1716 901 1273 1842 901 1273 1842 906 1027 1716 1311 1026 1715 899 1022 1711 900 1024 1713 1311 1026 1715 1311 1026 1715 900 1024 1713 901 1273 1842 898 1023 1712 899 1022 1711 1312 1025 1714 1312 1025 1714 899 1022 1711 1311 1026 1715 1322 1530 1849 1323 1531 1850 1113 1529 1848 1113 1529 1848 1323 1531 1850 1115 1532 1851 1324 1533 1852 1323 1531 1850 1313 1013 1702 1313 1013 1702 1323 1531 1850 904 1270 1839 1325 1535 1854 1326 1536 1855 1316 1534 1853 1316 1534 1853 1326 1536 1855 1317 1537 1856 1320 1539 1858 1332 1540 1859 1315 1538 1857 1315 1538 1857 1332 1540 1859 897 1018 1707 1322 1530 1849 1321 1528 1847 903 1271 1840 903 1271 1840 1321 1528 1847 902 1272 1841 1325 1535 1854 1324 1533 1852 895 1014 1703 895 1014 1703 1324 1533 1852 1313 1013 1702 1275 1541 574 1316 1542 616 1159 1315 410 1159 1315 410 1316 1542 616 1122 1322 417 1120 1296 394 1119 1325 420 1112 1544 395 1112 1544 395 1119 1325 420 1317 1543 617 1327 1545 1860 1326 1536 1855 1314 1016 1705 1314 1016 1705 1326 1536 1855 896 1015 1704 1119 1325 420 1122 1322 417 1317 1546 617 1317 1546 617 1122 1322 417 1316 1547 616 1318 1526 1845 1319 1525 1844 906 1027 1716 906 1027 1716 1319 1525 1844 905 1028 1717 1332 1540 1859 1320 1539 1858 1150 1548 1861 1150 1548 1861 1320 1539 1858 1069 1549 1862 1114 1550 1846 1318 1526 1845 1156 1551 1863 1156 1551 1863 1318 1526 1845 1321 1528 1847 1156 1552 1863 1321 1528 1847 1113 1553 1848 1113 1553 1848 1321 1528 1847 1322 1530 1849 904 1270 1839 1323 1531 1850 903 1271 1840 903 1271 1840 1323 1531 1850 1322 1530 1849 1323 1531 1850 1324 1533 1852 1115 1554 1851 1115 1554 1851 1324 1533 1852 1275 1555 1864 1324 1533 1852 1325 1535 1854 1275 1556 1864 1275 1556 1864 1325 1535 1854 1316 1557 1853 1326 1536 1855 1325 1535 1854 896 1015 1704 896 1015 1704 1325 1535 1854 895 1014 1703 1326 1536 1855 1327 1545 1860 1317 1558 1856 1317 1558 1856 1327 1545 1860 1112 1559 1865 1327 1545 1860 1332 1540 1859 1112 1560 1865 1112 1560 1865 1332 1540 1859 1150 1561 1861 1328 1562 618 1259 1436 531 1127 1513 606 1127 1513 606 1259 1436 531 1200 1435 530 1258 1432 527 1259 1436 531 1220 1326 421 1220 1326 421 1259 1436 531 1328 1562 618 1242 1324 419 1220 1326 421 1329 1563 619 1329 1563 619 1220 1326 421 1328 1562 618 1328 1562 618 1127 1513 606 1166 1338 433 1166 1338 433 1127 1513 606 1165 1336 431 1329 1563 619 1328 1562 618 1330 1481 575 1330 1481 575 1328 1562 618 1166 1338 433 1329 1563 619 1330 1481 575 1119 1325 420 1119 1325 420 1330 1481 575 1122 1322 417 1119 1325 420 1242 1324 419 1329 1563 619 1330 1481 575 1166 1338 433 1161 1321 416 1161 1321 416 1166 1338 433 1245 1319 414 1314 1016 1705 897 1018 1707 1327 1545 1860 1327 1545 1860 897 1018 1707 1332 1540 1859 721 832 1521 1333 849 1538 720 830 1519 720 830 1519 1333 849 1538 734 848 1537 1333 849 1538 1334 863 1552 734 848 1537 734 848 1537 1334 863 1552 747 862 1551 1334 863 1552 1335 877 1566 747 862 1551 747 862 1551 1335 877 1566 760 876 1565 1335 877 1566 1336 891 1580 760 876 1565 760 876 1565 1336 891 1580 773 890 1579 773 890 1579 1336 891 1580 786 904 1593 786 904 1593 1336 891 1580 2 361 1172 2 361 1172 86 364 1175 786 904 1593 786 904 1593 86 364 1175 798 916 1605 884 1002 1691 320 1020 1709 891 1009 1698 891 1009 1698 320 1020 1709 1337 1017 1706 709 810 1499 1349 1564 1866 696 807 1496 696 807 1496 1349 1564 1866 1338 1565 1867 1349 1564 1866 1350 1566 1868 1338 1565 1867 1338 1565 1867 1350 1566 1868 1339 1567 1869 1350 1566 1868 1351 1568 1870 1339 1567 1869 1339 1567 1869 1351 1568 1870 1340 1569 1871 1351 1568 1870 1352 1570 1872 1340 1569 1871 1340 1569 1871 1352 1570 1872 1341 1571 1873 1352 1570 1872 1353 1572 1874 1341 1571 1873 1341 1571 1873 1353 1572 1874 1342 1573 1875 1353 1572 1874 1354 1574 1876 1342 1573 1875 1342 1573 1875 1354 1574 1876 1343 1575 1877 1354 1574 1876 1355 1576 1878 1343 1575 1877 1343 1575 1877 1355 1576 1878 1344 1577 1879 1355 1576 1878 1356 1578 1880 1344 1577 1879 1344 1577 1879 1356 1578 1880 1345 1579 1881 1345 1579 1881 1356 1578 1880 1346 1581 1883 1346 1581 1883 1356 1578 1880 1357 1580 1882 1346 1581 1883 1357 1580 1882 1347 1583 1885 1347 1583 1885 1357 1580 1882 1358 1582 1884 1358 1582 1884 1359 1584 1886 1347 1583 1885 1347 1583 1885 1359 1584 1886 1348 1585 1887 1359 1584 1886 1360 1586 1888 1348 1585 1887 1348 1585 1887 1360 1586 1888 1897 1587 1889 1360 1586 1888 1972 1588 1890 1897 1587 1889 1897 1587 1889 1972 1588 1890 1973 1589 1891 723 838 1527 1361 1590 1892 709 810 1499 709 810 1499 1361 1590 1892 1349 1564 1866 1361 1590 1892 1362 1591 1893 1349 1564 1866 1349 1564 1866 1362 1591 1893 1350 1566 1868 1362 1591 1893 1363 1592 1894 1350 1566 1868 1350 1566 1868 1363 1592 1894 1351 1568 1870 1363 1592 1894 1364 1593 1895 1351 1568 1870 1351 1568 1870 1364 1593 1895 1352 1570 1872 1364 1593 1895 1365 1594 1896 1352 1570 1872 1352 1570 1872 1365 1594 1896 1353 1572 1874 1365 1594 1896 1366 1595 1897 1353 1572 1874 1353 1572 1874 1366 1595 1897 1354 1574 1876 1366 1595 1897 1367 1596 1898 1354 1574 1876 1354 1574 1876 1367 1596 1898 1355 1576 1878 1367 1596 1898 1368 1597 1899 1355 1576 1878 1355 1576 1878 1368 1597 1899 1356 1578 1880 1356 1578 1880 1368 1597 1899 1357 1580 1882 1357 1580 1882 1368 1597 1899 1369 1598 1900 1357 1580 1882 1369 1598 1900 1358 1582 1884 1358 1582 1884 1369 1598 1900 1370 1599 1901 1370 1599 1901 1371 1600 1902 1358 1582 1884 1358 1582 1884 1371 1600 1902 1359 1584 1886 1899 1601 1903 1975 1602 1904 1360 1586 1888 1360 1586 1888 1975 1602 1904 1972 1588 1890 736 852 1541 1372 1603 1905 723 838 1527 723 838 1527 1372 1603 1905 1361 1590 1892 1372 1603 1905 1373 1604 1906 1361 1590 1892 1361 1590 1892 1373 1604 1906 1362 1591 1893 1373 1604 1906 1374 1605 1907 1362 1591 1893 1362 1591 1893 1374 1605 1907 1363 1592 1894 1374 1605 1907 1375 1606 1908 1363 1592 1894 1363 1592 1894 1375 1606 1908 1364 1593 1895 1375 1606 1908 1376 1607 1909 1364 1593 1895 1364 1593 1895 1376 1607 1909 1365 1594 1896 1376 1607 1909 1377 1608 1910 1365 1594 1896 1365 1594 1896 1377 1608 1910 1366 1595 1897 1377 1608 1910 1378 1609 1911 1366 1595 1897 1366 1595 1897 1378 1609 1911 1367 1596 1898 1378 1609 1911 1379 1610 1912 1367 1596 1898 1367 1596 1898 1379 1610 1912 1368 1597 1899 1368 1597 1899 1379 1610 1912 1369 1598 1900 1369 1598 1900 1379 1610 1912 1380 1611 1913 1369 1598 1900 1380 1611 1913 1370 1599 1901 1370 1599 1901 1380 1611 1913 1381 1612 1914 1370 1599 1901 1381 1612 1914 1371 1600 1902 1371 1600 1902 1381 1612 1914 1382 1613 1915 1900 1614 1916 1976 1615 1917 1899 1601 1903 1899 1601 1903 1976 1615 1917 1975 1602 1904 736 852 1541 749 866 1555 1372 1603 1905 1372 1603 1905 749 866 1555 1383 1616 1918 1383 1616 1918 1384 1617 1919 1372 1603 1905 1372 1603 1905 1384 1617 1919 1373 1604 1906 1384 1617 1919 1385 1618 1920 1373 1604 1906 1373 1604 1906 1385 1618 1920 1374 1605 1907 1385 1618 1920 1386 1619 1921 1374 1605 1907 1374 1605 1907 1386 1619 1921 1375 1606 1908 1386 1619 1921 1387 1620 1922 1375 1606 1908 1375 1606 1908 1387 1620 1922 1376 1607 1909 1387 1620 1922 1388 1621 1923 1376 1607 1909 1376 1607 1909 1388 1621 1923 1377 1608 1910 1388 1621 1923 1389 1622 1924 1377 1608 1910 1377 1608 1910 1389 1622 1924 1378 1609 1911 1389 1622 1924 1390 1623 1925 1378 1609 1911 1378 1609 1911 1390 1623 1925 1379 1610 1912 1379 1610 1912 1390 1623 1925 1380 1611 1913 1380 1611 1913 1390 1623 1925 1391 1624 1926 1391 1624 1926 1392 1625 1927 1380 1611 1913 1380 1611 1913 1392 1625 1927 1381 1612 1914 1381 1612 1914 1392 1625 1927 1382 1613 1915 1382 1613 1915 1392 1625 1927 1393 1626 1928 1901 1627 1929 1977 1628 1930 1900 1614 1916 1900 1614 1916 1977 1628 1930 1976 1615 1917 749 866 1555 762 880 1569 1383 1616 1918 1383 1616 1918 762 880 1569 1394 1629 1931 1394 1629 1931 1395 1630 1932 1383 1616 1918 1383 1616 1918 1395 1630 1932 1384 1617 1919 1395 1630 1932 1396 1631 1933 1384 1617 1919 1384 1617 1919 1396 1631 1933 1385 1618 1920 1396 1631 1933 1397 1632 1934 1385 1618 1920 1385 1618 1920 1397 1632 1934 1386 1619 1921 1397 1632 1934 1398 1633 1935 1386 1619 1921 1386 1619 1921 1398 1633 1935 1387 1620 1922 1398 1633 1935 1399 1634 1936 1387 1620 1922 1387 1620 1922 1399 1634 1936 1388 1621 1923 1399 1634 1936 1400 1635 1937 1388 1621 1923 1388 1621 1923 1400 1635 1937 1389 1622 1924 1400 1635 1937 1401 1636 1938 1389 1622 1924 1389 1622 1924 1401 1636 1938 1390 1623 1925 1390 1623 1925 1401 1636 1938 1391 1624 1926 1391 1624 1926 1401 1636 1938 1402 1637 1939 1402 1637 1939 1403 1638 1940 1391 1624 1926 1391 1624 1926 1403 1638 1940 1392 1625 1927 1403 1638 1940 1404 1639 1941 1392 1625 1927 1392 1625 1927 1404 1639 1941 1393 1626 1928 1902 1640 1942 1974 1641 1943 1901 1627 1929 1901 1627 1929 1974 1641 1943 1977 1628 1930 762 880 1569 775 894 1583 1394 1629 1931 1394 1629 1931 775 894 1583 1405 1642 1944 1405 1642 1944 1406 1643 1945 1394 1629 1931 1394 1629 1931 1406 1643 1945 1395 1630 1932 1406 1643 1945 1407 1644 1946 1395 1630 1932 1395 1630 1932 1407 1644 1946 1396 1631 1933 1407 1644 1946 1408 1645 1947 1396 1631 1933 1396 1631 1933 1408 1645 1947 1397 1632 1934 1408 1645 1947 1409 1646 1948 1397 1632 1934 1397 1632 1934 1409 1646 1948 1398 1633 1935 1409 1646 1948 1410 1647 1949 1398 1633 1935 1398 1633 1935 1410 1647 1949 1399 1634 1936 1410 1647 1949 1411 1648 1950 1399 1634 1936 1399 1634 1936 1411 1648 1950 1400 1635 1937 1411 1648 1950 1412 1649 1951 1400 1635 1937 1400 1635 1937 1412 1649 1951 1401 1636 1938 1401 1636 1938 1412 1649 1951 1402 1637 1939 1402 1637 1939 1412 1649 1951 1413 1650 1952 1413 1650 1952 1414 1651 1953 1402 1637 1939 1402 1637 1939 1414 1651 1953 1403 1638 1940 1414 1651 1953 1415 1652 1954 1403 1638 1940 1403 1638 1940 1415 1652 1954 1404 1639 1941 2044 1653 1955 1974 1641 1943 2043 435 1231 2043 435 1231 1974 1641 1943 434 436 1232 775 894 1583 787 906 1595 1405 1642 1944 1405 1642 1944 787 906 1595 1416 1654 1956 1416 1654 1956 1417 1655 1957 1405 1642 1944 1405 1642 1944 1417 1655 1957 1406 1643 1945 1417 1655 1957 1418 1656 1958 1406 1643 1945 1406 1643 1945 1418 1656 1958 1407 1644 1946 1418 1656 1958 1419 1657 1959 1407 1644 1946 1407 1644 1946 1419 1657 1959 1408 1645 1947 1419 1657 1959 1420 1658 1960 1408 1645 1947 1408 1645 1947 1420 1658 1960 1409 1646 1948 1420 1658 1960 1421 1659 1961 1409 1646 1948 1409 1646 1948 1421 1659 1961 1410 1647 1949 1421 1659 1961 1422 1660 1962 1410 1647 1949 1410 1647 1949 1422 1660 1962 1411 1648 1950 1422 1660 1962 1423 1661 1963 1411 1648 1950 1411 1648 1950 1423 1661 1963 1412 1649 1951 1412 1649 1951 1423 1661 1963 1413 1650 1952 1413 1650 1952 1423 1661 1963 1424 1662 1964 1413 1650 1952 1424 1662 1964 1414 1651 1953 1414 1651 1953 1424 1662 1964 1425 1663 1965 1425 1663 1965 1426 1664 1966 1414 1651 1953 1414 1651 1953 1426 1664 1966 1415 1652 1954 787 906 1595 799 918 1607 1416 1654 1956 1416 1654 1956 799 918 1607 1427 1665 1967 1427 1665 1967 1428 1666 1968 1416 1654 1956 1416 1654 1956 1428 1666 1968 1417 1655 1957 1428 1666 1968 1429 1667 1969 1417 1655 1957 1417 1655 1957 1429 1667 1969 1418 1656 1958 1429 1667 1969 1430 1668 1970 1418 1656 1958 1418 1656 1958 1430 1668 1970 1419 1657 1959 1430 1668 1970 1431 1669 1971 1419 1657 1959 1419 1657 1959 1431 1669 1971 1420 1658 1960 1431 1669 1971 1432 1670 1972 1420 1658 1960 1420 1658 1960 1432 1670 1972 1421 1659 1961 1432 1670 1972 1433 1671 1973 1421 1659 1961 1421 1659 1961 1433 1671 1973 1422 1660 1962 1433 1671 1973 1434 1672 1974 1422 1660 1962 1422 1660 1962 1434 1672 1974 1423 1661 1963 1423 1661 1963 1434 1672 1974 1424 1662 1964 1424 1662 1964 1434 1672 1974 1435 1673 1975 1435 1673 1975 1436 1674 1976 1424 1662 1964 1424 1662 1964 1436 1674 1976 1425 1663 1965 1436 1674 1976 1437 1675 1977 1425 1663 1965 1425 1663 1965 1437 1675 1977 1426 1664 1966 799 918 1607 811 930 1619 1427 1665 1967 1427 1665 1967 811 930 1619 1438 1676 1978 1438 1676 1978 1439 1677 1979 1427 1665 1967 1427 1665 1967 1439 1677 1979 1428 1666 1968 1439 1677 1979 1440 1678 1980 1428 1666 1968 1428 1666 1968 1440 1678 1980 1429 1667 1969 1440 1678 1980 1441 1679 1981 1429 1667 1969 1429 1667 1969 1441 1679 1981 1430 1668 1970 1441 1679 1981 1442 1680 1982 1430 1668 1970 1430 1668 1970 1442 1680 1982 1431 1669 1971 1442 1680 1982 1443 1681 1983 1431 1669 1971 1431 1669 1971 1443 1681 1983 1432 1670 1972 1443 1681 1983 1444 1682 1984 1432 1670 1972 1432 1670 1972 1444 1682 1984 1433 1671 1973 1444 1682 1984 1445 1683 1985 1433 1671 1973 1433 1671 1973 1445 1683 1985 1434 1672 1974 1434 1672 1974 1445 1683 1985 1435 1673 1975 1435 1673 1975 1445 1683 1985 1446 1684 1986 1446 1684 1986 1447 1685 1987 1435 1673 1975 1435 1673 1975 1447 1685 1987 1436 1674 1976 1447 1685 1987 1448 1686 1988 1436 1674 1976 1436 1674 1976 1448 1686 1988 1437 1675 1977 811 930 1619 823 942 1631 1438 1676 1978 1438 1676 1978 823 942 1631 1449 1687 1989 1449 1687 1989 1450 1688 1990 1438 1676 1978 1438 1676 1978 1450 1688 1990 1439 1677 1979 1450 1688 1990 1451 1689 1991 1439 1677 1979 1439 1677 1979 1451 1689 1991 1440 1678 1980 1451 1689 1991 1452 1690 1992 1440 1678 1980 1440 1678 1980 1452 1690 1992 1441 1679 1981 1452 1690 1992 1453 1691 1993 1441 1679 1981 1441 1679 1981 1453 1691 1993 1442 1680 1982 1453 1691 1993 1454 1692 1994 1442 1680 1982 1442 1680 1982 1454 1692 1994 1443 1681 1983 1454 1692 1994 1455 1693 1995 1443 1681 1983 1443 1681 1983 1455 1693 1995 1444 1682 1984 1455 1693 1995 1456 1694 1996 1444 1682 1984 1444 1682 1984 1456 1694 1996 1445 1683 1985 1445 1683 1985 1456 1694 1996 1446 1684 1986 1446 1684 1986 1456 1694 1996 1457 1695 1997 1446 1684 1986 1457 1695 1997 1447 1685 1987 1447 1685 1987 1457 1695 1997 1458 1696 1998 1447 1685 1987 1458 1696 1998 1448 1686 1988 1448 1686 1988 1458 1696 1998 1459 1697 1999 823 942 1631 846 954 1643 1449 1687 1989 1449 1687 1989 846 954 1643 1460 1698 2000 1460 1698 2000 1461 1699 2001 1449 1687 1989 1449 1687 1989 1461 1699 2001 1450 1688 1990 1461 1699 2001 1462 1700 2002 1450 1688 1990 1450 1688 1990 1462 1700 2002 1451 1689 1991 1462 1700 2002 1463 1701 2003 1451 1689 1991 1451 1689 1991 1463 1701 2003 1452 1690 1992 1463 1701 2003 1464 1702 2004 1452 1690 1992 1452 1690 1992 1464 1702 2004 1453 1691 1993 1464 1702 2004 1465 1703 2005 1453 1691 1993 1453 1691 1993 1465 1703 2005 1454 1692 1994 1465 1703 2005 1466 1704 2006 1454 1692 1994 1454 1692 1994 1466 1704 2006 1455 1693 1995 1455 1693 1995 1466 1704 2006 1456 1694 1996 1456 1694 1996 1466 1704 2006 1467 1705 2007 1456 1694 1996 1467 1705 2007 1457 1695 1997 1457 1695 1997 1467 1705 2007 1468 1706 2008 1457 1695 1997 1468 1706 2008 1458 1696 1998 1458 1696 1998 1468 1706 2008 1469 1707 2009 1458 1696 1998 1469 1707 2009 1459 1697 1999 1459 1697 1999 1469 1707 2009 1470 1708 2010 846 954 1643 847 966 1655 1460 1698 2000 1460 1698 2000 847 966 1655 1471 1709 2011 1460 1698 2000 1471 1709 2011 1461 1699 2001 1461 1699 2001 1471 1709 2011 1472 1710 2012 1461 1699 2001 1472 1710 2012 1462 1700 2002 1462 1700 2002 1472 1710 2012 1473 1711 2013 1462 1700 2002 1473 1711 2013 1463 1701 2003 1463 1701 2003 1473 1711 2013 1474 1712 2014 1474 1712 2014 1475 1713 2015 1463 1701 2003 1463 1701 2003 1475 1713 2015 1464 1702 2004 1475 1713 2015 1476 1714 2016 1464 1702 2004 1464 1702 2004 1476 1714 2016 1465 1703 2005 1476 1714 2016 1477 1715 2017 1465 1703 2005 1465 1703 2005 1477 1715 2017 1466 1704 2006 1466 1704 2006 1477 1715 2017 1467 1705 2007 1467 1705 2007 1477 1715 2017 1478 1716 2018 1467 1705 2007 1478 1716 2018 1468 1706 2008 1468 1706 2008 1478 1716 2018 1479 1717 2019 1468 1706 2008 1479 1717 2019 1469 1707 2009 1469 1707 2009 1479 1717 2019 1480 1718 2020 1469 1707 2009 1480 1718 2020 1470 1708 2010 1470 1708 2010 1480 1718 2020 1481 1719 2021 847 966 1655 859 978 1667 1471 1709 2011 1471 1709 2011 859 978 1667 1482 1720 2022 1471 1709 2011 1482 1720 2022 1472 1710 2012 1472 1710 2012 1482 1720 2022 1483 1721 2023 1472 1710 2012 1483 1721 2023 1473 1711 2013 1473 1711 2013 1483 1721 2023 1484 1722 2024 1476 1714 2016 1485 1723 2025 1477 1715 2017 1485 1723 2025 1488 1724 2026 1477 1715 2017 1477 1715 2017 1488 1724 2026 1478 1716 2018 1488 1724 2026 1489 1725 2027 1478 1716 2018 1478 1716 2018 1489 1725 2027 1479 1717 2019 1489 1725 2027 1490 1726 2028 1479 1717 2019 1479 1717 2019 1490 1726 2028 1480 1718 2020 1480 1718 2020 1490 1726 2028 1481 1719 2021 1481 1719 2021 1490 1726 2028 1491 1727 2029 859 978 1667 868 987 1676 1482 1720 2022 1482 1720 2022 868 987 1676 1486 1728 2030 1482 1720 2022 1486 1728 2030 1483 1721 2023 1483 1721 2023 1486 1728 2030 1487 1729 2031 868 987 1676 871 990 1679 1486 1728 2030 1486 1728 2030 871 990 1679 1492 1730 2032 1492 1730 2032 1493 1731 2033 1486 1728 2030 1486 1728 2030 1493 1731 2033 1487 1729 2031 1495 1732 2034 1489 1725 2027 1494 1733 2035 1494 1733 2035 1489 1725 2027 1488 1724 2026 1495 1732 2034 1496 1734 2036 1489 1725 2027 1489 1725 2027 1496 1734 2036 1490 1726 2028 1490 1726 2028 1496 1734 2036 1491 1727 2029 1491 1727 2029 1496 1734 2036 1497 1735 2037 871 990 1679 878 997 1686 1492 1730 2032 1492 1730 2032 878 997 1686 1498 1736 2038 1498 1736 2038 1499 1737 2039 1492 1730 2032 1492 1730 2032 1499 1737 2039 1493 1731 2033 1495 1732 2034 1494 1733 2035 1501 1738 2040 1501 1738 2040 1494 1733 2035 1500 1739 2041 1495 1732 2034 1501 1738 2040 1496 1734 2036 1496 1734 2036 1501 1738 2040 1502 1740 2042 1496 1734 2036 1502 1740 2042 1497 1735 2037 1497 1735 2037 1502 1740 2042 1503 1741 2043 878 997 1686 885 1004 1693 1498 1736 2038 1498 1736 2038 885 1004 1693 1504 1742 2044 1498 1736 2038 1504 1742 2044 1499 1737 2039 1499 1737 2039 1504 1742 2044 1505 1743 2045 1507 1744 2046 1501 1738 2040 1506 1745 2047 1506 1745 2047 1501 1738 2040 1500 1739 2041 1501 1738 2040 1507 1744 2046 1502 1740 2042 1502 1740 2042 1507 1744 2046 1508 1746 2048 1502 1740 2042 1508 1746 2048 1503 1741 2043 1503 1741 2043 1508 1746 2048 1509 1747 2049 885 1004 1693 892 1011 1700 1504 1742 2044 1504 1742 2044 892 1011 1700 1510 1748 2050 1504 1742 2044 1510 1748 2050 1505 1743 2045 1505 1743 2045 1510 1748 2050 1511 1749 2051 1512 1751 2053 1507 1744 2046 1882 1750 2052 1882 1750 2052 1507 1744 2046 1506 1745 2047 1507 1744 2046 1512 1751 2053 1508 1746 2048 1508 1746 2048 1512 1751 2053 1513 1752 2054 1508 1746 2048 1513 1752 2054 1509 1747 2049 1509 1747 2049 1513 1752 2054 1883 1753 2055 1509 1747 2049 1883 1753 2055 1904 1755 2057 1904 1755 2057 1883 1753 2055 1514 1754 2056 1904 1755 2057 1985 1019 1708 1903 1756 2058 1903 1756 2058 1985 1019 1708 1986 1021 1710 892 1011 1700 898 1023 1712 1510 1748 2050 1510 1748 2050 898 1023 1712 1515 1757 2059 1510 1748 2050 1515 1757 2059 1511 1749 2051 1511 1749 2051 1515 1757 2059 1516 1758 2060 1312 1025 1714 905 1028 1717 1881 1760 2062 1881 1760 2062 905 1028 1717 1521 1759 2061 1338 1565 1867 907 1029 1718 696 807 1496 1339 1567 1869 907 1029 1718 1338 1565 1867 1340 1569 1871 907 1029 1718 1339 1567 1869 1341 1571 1873 907 1029 1718 1340 1569 1871 1342 1573 1875 907 1029 1718 1341 1571 1873 1343 1575 1877 907 1029 1718 1342 1573 1875 1344 1577 1879 907 1029 1718 1343 1575 1877 1345 1579 1881 907 1029 1718 1344 1577 1879 1346 1581 1883 907 1029 1718 1345 1579 1881 1347 1583 1885 907 1029 1718 1346 1581 1883 1348 1585 1887 907 1029 1718 1347 1583 1885 1348 1585 1887 1897 1587 1889 907 1029 1718 1973 1589 1891 907 1029 1718 1897 1587 1889 1555 1761 692 1621 1762 693 1594 1764 695 1594 1764 695 1621 1762 693 1658 1763 694 1621 1762 693 1555 1761 692 1642 1766 697 1642 1766 697 1555 1761 692 1570 1765 696 1556 1767 698 1621 1762 693 1572 1768 699 1572 1768 699 1621 1762 693 1642 1766 697 1621 1762 693 1556 1767 698 1658 1763 694 1658 1763 694 1556 1767 698 1595 1769 700 1557 1770 701 1622 1771 702 1593 1773 704 1593 1773 704 1622 1771 702 1657 1772 703 1622 1771 702 1557 1770 701 1643 1775 706 1643 1775 706 1557 1770 701 1569 1774 705 1555 1761 692 1622 1771 702 1570 1765 696 1570 1765 696 1622 1771 702 1643 1775 706 1622 1771 702 1555 1761 692 1657 1772 703 1657 1772 703 1555 1761 692 1594 1764 695 1558 1776 707 1623 1777 708 1592 1779 710 1592 1779 710 1623 1777 708 1656 1778 709 1623 1777 708 1558 1776 707 1641 1781 712 1641 1781 712 1558 1776 707 1567 1780 711 1557 1770 701 1623 1777 708 1569 1774 705 1569 1774 705 1623 1777 708 1641 1781 712 1623 1777 708 1557 1770 701 1656 1778 709 1656 1778 709 1557 1770 701 1593 1773 704 1624 1783 714 1655 1784 715 1559 1782 713 1559 1782 713 1655 1784 715 1591 1785 716 1624 1783 714 1559 1782 713 1644 1787 718 1644 1787 718 1559 1782 713 1574 1786 717 1558 1776 707 1624 1783 714 1567 1780 711 1567 1780 711 1624 1783 714 1644 1787 718 1624 1783 714 1558 1776 707 1655 1784 715 1655 1784 715 1558 1776 707 1592 1779 710 1560 1789 720 1578 1790 721 1625 1788 719 1625 1788 719 1578 1790 721 1646 1791 722 1625 1788 719 1646 1791 722 1559 1782 713 1559 1782 713 1646 1791 722 1574 1786 717 1625 1788 719 1681 1792 723 1560 1789 720 1560 1789 720 1681 1792 723 1680 1793 724 1626 1795 726 1654 1796 727 1561 1794 725 1561 1794 725 1654 1796 727 1590 1797 728 1561 1794 725 1582 1798 729 1626 1795 726 1626 1795 726 1582 1798 729 1648 1799 730 1626 1795 726 1648 1799 730 1560 1789 720 1560 1789 720 1648 1799 730 1578 1790 721 1560 1789 720 1680 1793 724 1626 1795 726 1626 1795 726 1680 1793 724 1654 1796 727 1627 1801 732 1653 1802 733 1562 1800 731 1562 1800 731 1653 1802 733 1589 1803 734 1562 1800 731 1585 1804 735 1627 1801 732 1627 1801 732 1585 1804 735 1650 1805 736 1627 1801 732 1650 1805 736 1561 1794 725 1561 1794 725 1650 1805 736 1582 1798 729 1561 1794 725 1590 1797 728 1627 1801 732 1627 1801 732 1590 1797 728 1653 1802 733 1628 1807 738 1652 1808 739 1563 1806 737 1563 1806 737 1652 1808 739 1587 1809 740 1563 1806 737 1581 1810 741 1628 1807 738 1628 1807 738 1581 1810 741 1649 1811 742 1628 1807 738 1649 1811 742 1562 1800 731 1562 1800 731 1649 1811 742 1585 1804 735 1562 1800 731 1589 1803 734 1628 1807 738 1628 1807 738 1589 1803 734 1652 1808 739 1629 1813 744 1651 1814 745 1564 1812 743 1564 1812 743 1651 1814 745 1588 1815 746 1564 1812 743 1577 1816 747 1629 1813 744 1629 1813 744 1577 1816 747 1647 1817 748 1629 1813 744 1647 1817 748 1563 1806 737 1563 1806 737 1647 1817 748 1581 1810 741 1563 1806 737 1587 1809 740 1629 1813 744 1629 1813 744 1587 1809 740 1651 1814 745 1556 1767 698 1630 1818 749 1595 1769 700 1595 1769 700 1630 1818 749 1659 1819 750 1630 1818 749 1556 1767 698 1645 1820 752 1645 1820 752 1556 1767 698 1572 1768 699 1564 1812 743 1630 1818 749 1577 1816 747 1577 1816 747 1630 1818 749 1645 1820 752 1630 1818 749 1564 1812 743 1659 1819 750 1659 1819 750 1564 1812 743 1588 1815 746 1595 1769 700 1587 1809 740 1658 1763 694 1658 1763 694 1587 1809 740 1652 1808 739 1600 1822 2064 1927 1823 2065 1662 1821 2063 1662 1821 2063 1927 1823 2065 1926 1824 2066 1537 1826 2068 1925 1827 2069 1631 1825 2067 1631 1825 2067 1925 1827 2069 1926 1824 2066 1604 1829 2071 1934 1830 2072 1664 1828 2070 1664 1828 2070 1934 1830 2072 1932 1831 2073 1539 1833 2075 1930 1834 2076 1632 1832 2074 1632 1832 2074 1930 1834 2076 1932 1831 2073 1523 1836 2078 1930 1834 2076 1665 1835 2077 1665 1835 2077 1930 1834 2076 1928 1837 2079 1565 1839 2081 1927 1823 2065 1633 1838 2080 1633 1838 2080 1927 1823 2065 1928 1837 2079 1666 1840 2082 1522 1841 2083 1929 1842 2084 1929 1842 2084 1522 1841 2083 1925 1827 2069 1538 1844 2086 1931 1845 2087 1634 1843 2085 1634 1843 2085 1931 1845 2087 1929 1842 2084 1524 1847 2089 1931 1845 2087 1667 1846 2088 1667 1846 2088 1931 1845 2087 1933 1848 2090 1635 1849 2091 1540 1850 2092 1933 1848 2090 1933 1848 2090 1540 1850 2092 1935 1851 2093 1636 1852 2094 1541 1853 2095 1937 1855 2097 1937 1855 2097 1541 1853 2095 1939 1854 2096 1660 1856 2098 1596 1857 2099 1937 1855 2097 1937 1855 2097 1596 1857 2099 1935 1851 2093 1661 1858 2100 1598 1859 2101 1941 1860 2102 1941 1860 2102 1598 1859 2101 1939 1854 2096 1637 1861 2103 1543 1862 2104 1941 1860 2102 1941 1860 2102 1543 1862 2104 1943 1863 2105 1668 1864 2106 1525 1865 2107 1944 1866 2108 1944 1866 2108 1525 1865 2107 1943 1863 2105 1638 1867 2109 1544 1868 2110 1944 1866 2108 1944 1866 2108 1544 1868 2110 1942 1869 2111 1663 1870 2112 1602 1871 2113 1940 1872 2114 1940 1872 2114 1602 1871 2113 1942 1869 2111 1639 1873 2115 1542 1874 2116 1940 1872 2114 1940 1872 2114 1542 1874 2116 1938 1875 2117 1669 1876 2118 1526 1877 2119 1936 1878 2120 1936 1878 2120 1526 1877 2119 1938 1875 2117 1640 1879 2121 1566 1880 2122 1936 1878 2120 1936 1878 2120 1566 1880 2122 1934 1830 2072 1528 1881 944 1568 1882 949 1567 1780 711 1567 1780 711 1568 1882 949 1641 1781 712 1568 1883 949 1527 1884 947 1641 1781 712 1641 1781 712 1527 1884 947 1569 1774 705 1530 1885 946 1571 1886 948 1570 1765 696 1570 1765 696 1571 1886 948 1642 1766 697 1571 1887 948 1529 1888 942 1642 1766 697 1642 1766 697 1529 1888 942 1572 1768 699 1527 1889 947 1573 1890 945 1569 1774 705 1569 1774 705 1573 1890 945 1643 1775 706 1573 1891 945 1530 1892 946 1643 1775 706 1643 1775 706 1530 1892 946 1570 1765 696 1531 1893 940 1575 1894 943 1574 1786 717 1574 1786 717 1575 1894 943 1644 1787 718 1575 1895 943 1528 1896 944 1644 1787 718 1644 1787 718 1528 1896 944 1567 1780 711 1529 1897 942 1576 1898 941 1572 1768 699 1572 1768 699 1576 1898 941 1645 1820 752 1576 1899 941 1532 1900 938 1645 1820 752 1645 1820 752 1532 1900 938 1577 1816 747 1578 1790 721 1533 1901 936 1646 1791 722 1646 1791 722 1533 1901 936 1579 1902 939 1531 1904 940 1574 1786 717 1579 1903 939 1579 1903 939 1574 1786 717 1646 1791 722 1577 1816 747 1532 1905 938 1647 1817 748 1647 1817 748 1532 1905 938 1580 1906 937 1534 1908 934 1581 1810 741 1580 1907 937 1580 1907 937 1581 1810 741 1647 1817 748 1582 1798 729 1535 1909 931 1648 1799 730 1648 1799 730 1535 1909 931 1583 1910 935 1533 1912 936 1578 1790 721 1583 1911 935 1583 1911 935 1578 1790 721 1648 1799 730 1581 1810 741 1534 1913 934 1649 1811 742 1649 1811 742 1534 1913 934 1584 1914 933 1536 1916 932 1585 1804 735 1584 1915 933 1584 1915 933 1585 1804 735 1649 1811 742 1585 1804 735 1536 1917 932 1650 1805 736 1650 1805 736 1536 1917 932 1586 1918 930 1535 1920 931 1582 1798 729 1586 1919 930 1586 1919 930 1582 1798 729 1650 1805 736 1568 1921 2123 1528 1922 2124 1634 1843 2085 1634 1843 2085 1528 1922 2124 1538 1844 2086 1634 1843 2085 1537 1826 2068 1568 1923 2123 1568 1923 2123 1537 1826 2068 1527 1924 2125 1571 1925 2126 1530 1926 2127 1633 1838 2080 1633 1838 2080 1530 1926 2127 1565 1839 2081 1571 1927 2126 1633 1838 2080 1529 1928 2128 1529 1928 2128 1633 1838 2080 1539 1833 2075 1573 1929 2129 1527 1930 2125 1631 1825 2067 1631 1825 2067 1527 1930 2125 1537 1826 2068 1631 1825 2067 1565 1839 2081 1573 1931 2129 1573 1931 2129 1565 1839 2081 1530 1932 2127 1575 1933 2130 1531 1934 2131 1635 1849 2091 1635 1849 2091 1531 1934 2131 1540 1850 2092 1635 1849 2091 1538 1844 2086 1575 1935 2130 1575 1935 2130 1538 1844 2086 1528 1936 2124 1529 1938 2128 1539 1833 2075 1576 1937 2132 1576 1937 2132 1539 1833 2075 1632 1832 2074 1576 1939 2132 1632 1832 2074 1532 1940 2133 1532 1940 2133 1632 1832 2074 1566 1880 2122 1579 1941 2134 1533 1942 2135 1636 1852 2094 1636 1852 2094 1533 1942 2135 1541 1853 2095 1636 1852 2094 1540 1850 2092 1579 1943 2134 1579 1943 2134 1540 1850 2092 1531 1944 2131 1532 1946 2133 1566 1880 2122 1580 1945 2136 1580 1945 2136 1566 1880 2122 1640 1879 2121 1580 1947 2136 1640 1879 2121 1534 1948 2137 1534 1948 2137 1640 1879 2121 1542 1874 2116 1583 1949 2138 1535 1950 2139 1637 1861 2103 1637 1861 2103 1535 1950 2139 1543 1862 2104 1637 1861 2103 1541 1853 2095 1583 1951 2138 1583 1951 2138 1541 1853 2095 1533 1952 2135 1534 1954 2137 1542 1874 2116 1584 1953 2140 1584 1953 2140 1542 1874 2116 1639 1873 2115 1584 1955 2140 1639 1873 2115 1536 1956 2141 1536 1956 2141 1639 1873 2115 1544 1868 2110 1586 1957 2142 1536 1958 2141 1638 1867 2109 1638 1867 2109 1536 1958 2141 1544 1868 2110 1638 1867 2109 1543 1862 2104 1586 1959 2142 1586 1959 2142 1543 1862 2104 1535 1960 2139 1546 1961 2143 1610 1962 2144 1598 1859 2101 1598 1859 2101 1610 1962 2144 1660 1856 2098 1545 1963 2145 1596 1857 2099 1610 1962 2144 1610 1962 2144 1596 1857 2099 1660 1856 2098 1547 1964 2146 1597 1965 2147 1525 1865 2107 1525 1865 2107 1597 1965 2147 1661 1858 2100 1597 1965 2147 1546 1961 2143 1661 1858 2100 1661 1858 2100 1546 1961 2143 1598 1859 2101 1522 1841 2083 1549 1966 2148 1662 1821 2063 1662 1821 2063 1549 1966 2148 1599 1967 2149 1548 1968 2150 1600 1822 2064 1599 1967 2149 1599 1967 2149 1600 1822 2064 1662 1821 2063 1551 1969 2151 1601 1970 2152 1526 1877 2119 1526 1877 2119 1601 1970 2152 1663 1870 2112 1601 1970 2152 1550 1971 2153 1663 1870 2112 1663 1870 2112 1550 1971 2153 1602 1871 2113 1523 1836 2078 1553 1972 2154 1664 1828 2070 1664 1828 2070 1553 1972 2154 1603 1973 2155 1603 1973 2155 1552 1974 2156 1664 1828 2070 1664 1828 2070 1552 1974 2156 1604 1829 2071 1600 1822 2064 1548 1968 2150 1665 1835 2077 1665 1835 2077 1548 1968 2150 1605 1975 2157 1553 1972 2154 1523 1836 2078 1605 1975 2157 1605 1975 2157 1523 1836 2078 1665 1835 2077 1524 1847 2089 1554 1976 2158 1666 1840 2082 1666 1840 2082 1554 1976 2158 1606 1977 2159 1549 1966 2148 1522 1841 2083 1606 1977 2159 1606 1977 2159 1522 1841 2083 1666 1840 2082 1596 1857 2099 1545 1963 2145 1667 1846 2088 1667 1846 2088 1545 1963 2145 1607 1978 2160 1554 1976 2158 1524 1847 2089 1607 1978 2160 1607 1978 2160 1524 1847 2089 1667 1846 2088 1550 1971 2153 1608 1979 2161 1602 1871 2113 1602 1871 2113 1608 1979 2161 1668 1864 2106 1608 1979 2161 1547 1964 2146 1668 1864 2106 1668 1864 2106 1547 1964 2146 1525 1865 2107 1552 1974 2156 1609 1980 2162 1604 1829 2071 1604 1829 2071 1609 1980 2162 1669 1876 2118 1609 1980 2162 1551 1969 2151 1669 1876 2118 1669 1876 2118 1551 1969 2151 1526 1877 2119 1546 1961 2143 1611 1981 2163 1610 1962 2144 1610 1962 2144 1611 1981 2163 1670 1982 2164 1612 1983 2165 1545 1963 2145 1670 1982 2164 1670 1982 2164 1545 1963 2145 1610 1962 2144 1597 1965 2147 1547 1964 2146 1671 1985 2167 1671 1985 2167 1547 1964 2146 1613 1984 2166 1546 1961 2143 1597 1965 2147 1611 1981 2163 1611 1981 2163 1597 1965 2147 1671 1985 2167 1549 1966 2148 1614 1986 2168 1599 1967 2149 1599 1967 2149 1614 1986 2168 1672 1987 2169 1615 1988 2170 1548 1968 2150 1672 1987 2169 1672 1987 2169 1548 1968 2150 1599 1967 2149 1601 1970 2152 1551 1969 2151 1673 1990 2172 1673 1990 2172 1551 1969 2151 1616 1989 2171 1550 1971 2153 1601 1970 2152 1617 1991 2173 1617 1991 2173 1601 1970 2152 1673 1990 2172 1603 1973 2155 1553 1972 2154 1674 1993 2175 1674 1993 2175 1553 1972 2154 1618 1992 2174 1552 1974 2156 1603 1973 2155 1619 1994 2176 1619 1994 2176 1603 1973 2155 1674 1993 2175 1548 1968 2150 1615 1988 2170 1605 1975 2157 1605 1975 2157 1615 1988 2170 1675 1995 2177 1618 1992 2174 1553 1972 2154 1675 1995 2177 1675 1995 2177 1553 1972 2154 1605 1975 2157 1554 1976 2158 1620 1996 2178 1606 1977 2159 1606 1977 2159 1620 1996 2178 1676 1997 2179 1614 1986 2168 1549 1966 2148 1676 1997 2179 1676 1997 2179 1549 1966 2148 1606 1977 2159 1545 1963 2145 1612 1983 2165 1607 1978 2160 1607 1978 2160 1612 1983 2165 1677 1998 2180 1620 1996 2178 1554 1976 2158 1677 1998 2180 1677 1998 2180 1554 1976 2158 1607 1978 2160 1608 1979 2161 1550 1971 2153 1678 1999 2181 1678 1999 2181 1550 1971 2153 1617 1991 2173 1547 1964 2146 1608 1979 2161 1613 1984 2166 1613 1984 2166 1608 1979 2161 1678 1999 2181 1609 1980 2162 1552 1974 2156 1679 2000 2182 1679 2000 2182 1552 1974 2156 1619 1994 2176 1551 1969 2151 1609 1980 2162 1616 1989 2171 1616 1989 2171 1609 1980 2162 1679 2000 2182 1651 1814 745 1587 1809 740 1588 1815 746 1587 1809 740 1595 1769 700 1588 1815 746 1595 1769 700 1659 1819 750 1588 1815 746 1594 1764 695 1589 1803 734 1657 1772 703 1657 1772 703 1589 1803 734 1653 1802 733 1658 1763 694 1652 1808 739 1594 1764 695 1594 1764 695 1652 1808 739 1589 1803 734 1657 1772 703 1653 1802 733 1593 1773 704 1593 1773 704 1653 1802 733 1590 1797 728 1655 1784 715 1592 1779 710 1591 1785 716 1680 1793 724 1681 1792 723 1592 1779 710 1592 1779 710 1681 1792 723 1591 1785 716 1590 1797 728 1654 1796 727 1593 1773 704 1593 1773 704 1654 1796 727 1656 1778 709 1559 1782 713 1591 1785 716 1625 1788 719 1625 1788 719 1591 1785 716 1681 1792 723 1592 1779 710 1656 1778 709 1680 1793 724 1680 1793 724 1656 1778 709 1654 1796 727 1611 1981 2163 1519 2001 2183 1670 1982 2164 1670 1982 2164 1519 2001 2183 1520 2002 2184 1670 1982 2164 1520 2002 2184 1612 1983 2165 1612 1983 2165 1520 2002 2184 1882 1750 2052 1517 2003 2185 1518 2004 2186 1613 1984 2166 1613 1984 2166 1518 2004 2186 1671 1985 2167 1488 1724 2026 1485 1723 2025 1614 1986 2168 1614 1986 2168 1485 1723 2025 1672 1987 2169 1672 1987 2169 1485 1723 2025 1615 1988 2170 1615 1988 2170 1485 1723 2025 1476 1714 2016 1499 1737 2039 1505 1743 2045 1616 1989 2171 1616 1989 2171 1505 1743 2045 1673 1990 2172 1505 1743 2045 1511 1749 2051 1673 1990 2172 1673 1990 2172 1511 1749 2051 1617 1991 2173 1618 1992 2174 1474 1712 2014 1674 1993 2175 1674 1993 2175 1474 1712 2014 1484 1722 2024 1674 1993 2175 1484 1722 2024 1619 1994 2176 1619 1994 2176 1484 1722 2024 1487 1729 2031 1476 1714 2016 1475 1713 2015 1615 1988 2170 1615 1988 2170 1475 1713 2015 1675 1995 2177 1675 1995 2177 1475 1713 2015 1618 1992 2174 1618 1992 2174 1475 1713 2015 1474 1712 2014 1620 1996 2178 1500 1739 2041 1676 1997 2179 1676 1997 2179 1500 1739 2041 1494 1733 2035 1676 1997 2179 1494 1733 2035 1614 1986 2168 1614 1986 2168 1494 1733 2035 1488 1724 2026 1677 1998 2180 1506 1745 2047 1620 1996 2178 1620 1996 2178 1506 1745 2047 1500 1739 2041 1617 1991 2173 1511 1749 2051 1678 1999 2181 1678 1999 2181 1511 1749 2051 1516 1758 2060 1516 1758 2060 1517 2003 2185 1678 1999 2181 1678 1999 2181 1517 2003 2185 1613 1984 2166 1619 1994 2176 1487 1729 2031 1679 2000 2182 1679 2000 2182 1487 1729 2031 1493 1731 2033 1679 2000 2182 1493 1731 2033 1616 1989 2171 1616 1989 2171 1493 1731 2033 1499 1737 2039 1518 2004 2186 1519 2001 2183 1671 1985 2167 1671 1985 2167 1519 2001 2183 1611 1981 2163 1487 1729 2031 1484 1722 2024 1483 1721 2023 1484 1722 2024 1474 1712 2014 1473 1711 2013 1677 1998 2180 1612 1983 2165 1506 1745 2047 1506 1745 2047 1612 1983 2165 1882 1750 2052 1807 2005 620 1687 2006 621 1721 2007 622 1687 2006 621 1722 2008 623 1721 2007 622 1721 2007 622 1722 2008 623 1807 2005 620 1723 2009 624 1070 1282 380 1808 2010 625 1808 2010 625 1070 1282 380 1092 1281 379 1879 2012 627 1723 2009 624 1878 2011 626 1878 2011 626 1723 2009 624 1808 2010 625 1723 2009 624 1879 2012 627 1809 2014 629 1809 2014 629 1879 2012 627 1880 2013 628 1093 1289 387 1809 2014 629 1110 1287 385 1110 1287 385 1809 2014 629 1857 2015 630 1070 1282 380 1723 2009 624 1093 1289 387 1093 1289 387 1723 2009 624 1809 2014 629 1867 2017 632 1724 2018 633 1789 2016 631 1789 2016 631 1724 2018 633 1688 2019 634 1724 2018 633 1867 2017 632 1683 2020 635 1683 2020 635 1867 2017 632 1685 2021 636 1725 2023 638 1720 2024 639 1690 2022 637 1690 2022 637 1720 2024 639 1682 2025 640 1071 1300 398 1069 2026 399 1725 2023 638 1725 2023 638 1069 2026 399 1720 2027 639 1724 2018 633 1683 2028 635 1810 2030 642 1810 2030 642 1683 2028 635 1726 2029 641 1684 2032 643 1847 2033 644 1726 2031 641 1726 2031 641 1847 2033 644 1810 2030 642 1847 2033 644 1792 2034 645 1810 2030 642 1810 2030 642 1792 2034 645 1727 2035 646 1688 2019 634 1724 2018 633 1727 2035 646 1727 2035 646 1724 2018 633 1810 2030 642 1844 2037 648 1728 2038 649 1788 2036 647 1788 2036 647 1728 2038 649 1691 2039 650 1789 2016 631 1688 2019 634 1844 2037 648 1844 2037 648 1688 2019 634 1728 2038 649 1729 2040 651 1693 2041 652 1811 2043 654 1811 2043 654 1693 2041 652 1730 2042 653 1694 2044 655 1815 2045 656 1730 2042 653 1730 2042 653 1815 2045 656 1811 2043 654 1815 2045 656 1731 2046 657 1811 2043 654 1731 2046 657 1692 2047 658 1811 2043 654 1811 2043 654 1692 2047 658 1729 2040 651 1732 2048 659 1690 2022 637 1812 2050 661 1812 2050 661 1690 2022 637 1689 2049 660 1695 2052 663 1732 2048 659 1790 2051 662 1790 2051 662 1732 2048 659 1812 2050 661 1732 2048 659 1695 2052 663 1813 2054 665 1813 2054 665 1695 2052 663 1733 2053 664 1072 1331 426 1094 1330 425 1733 2053 664 1733 2053 664 1094 1330 425 1813 2054 665 1094 1330 425 1071 1300 398 1813 2054 665 1813 2054 665 1071 1300 398 1725 2023 638 1690 2022 637 1732 2048 659 1725 2023 638 1725 2023 638 1732 2048 659 1813 2054 665 1848 2055 666 1793 2056 667 1814 2058 669 1814 2058 669 1793 2056 667 1734 2057 668 1734 2057 668 1691 2039 650 1814 2058 669 1814 2058 669 1691 2039 650 1728 2038 649 1688 2019 634 1727 2035 646 1728 2038 649 1728 2038 649 1727 2035 646 1814 2058 669 1792 2034 645 1848 2055 666 1727 2035 646 1727 2035 646 1848 2055 666 1814 2058 669 1694 2044 655 1696 2059 670 1815 2045 656 1815 2045 656 1696 2059 670 1735 2060 671 1735 2060 671 1736 2061 672 1815 2045 656 1698 2063 674 1737 2064 675 1778 2062 673 1778 2062 673 1737 2064 675 1699 2065 676 1737 2064 675 1779 2066 677 1699 2065 676 1699 2065 676 1779 2066 677 1866 2067 678 1738 2068 679 1073 1348 443 1816 2069 680 1816 2069 680 1073 1348 443 1095 1347 442 1095 1347 442 1074 1350 445 1816 2069 680 1816 2069 680 1074 1350 445 1836 2070 681 1779 2066 677 1737 2064 675 1836 2070 681 1836 2070 681 1737 2064 675 1816 2069 680 1698 2063 674 1738 2068 679 1737 2064 675 1737 2064 675 1738 2068 679 1816 2069 680 1798 2071 682 1701 2072 683 1817 2074 685 1817 2074 685 1701 2072 683 1740 2073 684 1700 2075 686 1739 2076 687 1740 2073 684 1740 2073 684 1739 2076 687 1817 2074 685 1702 2078 689 1742 2079 690 1741 2077 688 1741 2077 688 1742 2079 690 1818 2080 691 1686 2081 751 1807 2005 620 1742 2079 690 1742 2079 690 1807 2005 620 1818 2080 691 1818 2080 691 1744 2082 753 1741 2077 688 1741 2077 688 1744 2082 753 1871 2083 754 1722 2008 623 1743 2084 755 1807 2005 620 1807 2005 620 1743 2084 755 1818 2080 691 1743 2084 755 1703 2085 756 1818 2080 691 1818 2080 691 1703 2085 756 1744 2082 753 1876 2087 758 1877 2088 759 1745 2086 757 1745 2086 757 1877 2088 759 1819 2089 760 1877 2088 759 1878 2011 626 1819 2089 760 1819 2089 760 1878 2011 626 1808 2010 625 1808 2010 625 1092 1281 379 1819 2089 760 1819 2089 760 1092 1281 379 1096 1369 464 1075 1370 465 1745 2086 757 1096 1369 464 1096 1369 464 1745 2086 757 1819 2089 760 1788 2036 647 1691 2039 650 1843 2091 762 1843 2091 762 1691 2039 650 1746 2090 761 1843 2091 762 1746 2090 761 1704 2092 763 1704 2092 763 1746 2090 761 1705 2093 764 1747 2094 765 1706 2095 766 1820 2097 768 1820 2097 768 1706 2095 766 1748 2096 767 1707 2098 769 1749 2099 770 1748 2096 767 1748 2096 767 1749 2099 770 1820 2097 768 1749 2099 770 1702 2078 689 1820 2097 768 1820 2097 768 1702 2078 689 1741 2077 688 1706 2095 766 1747 2094 765 1750 2100 771 1750 2100 771 1747 2094 765 1821 2101 772 1744 2082 753 1805 2103 774 1871 2083 754 1751 2102 773 1871 2083 754 1805 2103 774 1751 2102 773 1696 2059 670 1821 2101 772 1821 2101 772 1696 2059 670 1752 2104 775 1708 2105 776 1750 2100 771 1752 2104 775 1752 2104 775 1750 2100 771 1821 2101 772 1702 2078 689 1749 2099 770 1753 2106 777 1753 2106 777 1749 2099 770 1822 2107 778 1749 2099 770 1707 2098 769 1822 2107 778 1822 2107 778 1707 2098 769 1754 2108 779 1802 2109 780 1856 2110 781 1754 2108 779 1754 2108 779 1856 2110 781 1822 2107 778 1856 2110 781 1803 2111 782 1822 2107 778 1822 2107 778 1803 2111 782 1753 2106 777 1755 2113 784 1842 2114 785 1709 2112 783 1709 2112 783 1842 2114 785 1787 2115 786 1842 2114 785 1755 2113 784 1786 2116 787 1786 2116 787 1755 2113 784 1710 2117 788 1756 2118 789 1712 2119 790 1823 2121 792 1823 2121 792 1712 2119 790 1757 2120 791 1714 2122 793 1758 2123 794 1757 2120 791 1757 2120 791 1758 2123 794 1823 2121 792 1758 2123 794 1713 2124 795 1823 2121 792 1823 2121 792 1713 2124 795 1759 2125 796 1711 2126 797 1756 2118 789 1759 2125 796 1759 2125 796 1756 2118 789 1823 2121 792 1760 2127 798 1715 2128 799 1824 2130 801 1824 2130 801 1715 2128 799 1761 2129 800 1700 2075 686 1762 2131 802 1761 2129 800 1761 2129 800 1762 2131 802 1824 2130 801 1712 2119 790 1756 2118 789 1762 2131 802 1762 2131 802 1756 2118 789 1824 2130 801 1756 2118 789 1711 2126 797 1824 2130 801 1824 2130 801 1711 2126 797 1760 2127 798 1763 2132 803 1795 2133 804 1825 2135 806 1825 2135 806 1795 2133 804 1851 2134 805 1796 2136 807 1764 2137 808 1851 2134 805 1851 2134 805 1764 2137 808 1825 2135 806 1764 2137 808 1710 2117 788 1825 2135 806 1825 2135 806 1710 2117 788 1755 2113 784 1709 2112 783 1763 2132 803 1755 2113 784 1755 2113 784 1763 2132 803 1825 2135 806 1713 2124 795 1758 2123 794 1765 2138 809 1765 2138 809 1758 2123 794 1826 2139 810 1758 2123 794 1714 2122 793 1826 2139 810 1826 2139 810 1714 2122 793 1766 2140 811 1800 2141 812 1854 2142 813 1766 2140 811 1766 2140 811 1854 2142 813 1826 2139 810 1854 2142 813 1801 2143 814 1826 2139 810 1826 2139 810 1801 2143 814 1765 2138 809 1786 2116 787 1710 2117 788 1841 2144 815 1841 2144 815 1710 2117 788 1764 2137 808 1797 2145 816 1841 2144 815 1796 2136 807 1796 2136 807 1841 2144 815 1764 2137 808 1799 2147 818 1853 2148 819 1767 2146 817 1767 2146 817 1853 2148 819 1827 2149 820 1853 2148 819 1800 2141 812 1827 2149 820 1827 2149 820 1800 2141 812 1766 2140 811 1766 2140 811 1714 2122 793 1827 2149 820 1827 2149 820 1714 2122 793 1757 2120 791 1712 2119 790 1767 2146 817 1757 2120 791 1757 2120 791 1767 2146 817 1827 2149 820 1768 2150 821 1695 2052 663 1828 2151 822 1828 2151 822 1695 2052 663 1790 2051 662 1716 2153 824 1768 2150 821 1791 2152 823 1791 2152 823 1768 2150 821 1828 2151 822 1717 2155 826 1769 2156 827 1770 2154 825 1770 2154 825 1769 2156 827 1829 2157 828 1744 2082 753 1703 2085 756 1830 2159 830 1830 2159 830 1703 2085 756 1771 2158 829 1771 2158 829 1875 2161 832 1872 2160 831 1872 2160 831 1875 2161 832 1874 2162 833 1768 2150 821 1716 2153 824 1831 2164 835 1831 2164 835 1716 2153 824 1773 2163 834 1076 1447 542 1097 1446 541 1773 2163 834 1773 2163 834 1097 1446 541 1831 2164 835 1097 1446 541 1072 1331 426 1831 2164 835 1831 2164 835 1072 1331 426 1733 2053 664 1695 2052 663 1768 2150 821 1733 2053 664 1733 2053 664 1768 2150 821 1831 2164 835 1876 2087 758 1745 2086 757 1875 2161 832 1875 2161 832 1745 2086 757 1832 2165 836 1745 2086 757 1075 1370 465 1832 2165 836 1832 2165 836 1075 1370 465 1098 1449 544 1077 1451 546 1774 2166 837 1098 1449 544 1098 1449 544 1774 2166 837 1832 2165 836 1774 2166 837 1874 2162 833 1832 2165 836 1832 2165 836 1874 2162 833 1875 2161 832 1718 2167 838 1716 2153 824 1846 2168 839 1846 2168 839 1716 2153 824 1791 2152 823 1769 2156 827 1717 2155 826 1776 2170 841 1776 2170 841 1717 2155 826 1775 2169 840 1872 2160 831 1874 2162 833 1835 2171 842 1835 2171 842 1874 2162 833 1873 2172 843 1078 1458 553 1076 1447 542 1833 2173 844 1833 2173 844 1076 1447 542 1773 2163 834 1716 2153 824 1718 2167 838 1773 2163 834 1773 2163 834 1718 2167 838 1833 2173 844 1774 2166 837 1077 1451 546 1834 2174 845 1834 2174 845 1077 1451 546 1099 1461 556 1874 2162 833 1774 2166 837 1873 2172 843 1873 2172 843 1774 2166 837 1834 2174 845 1776 2170 841 1775 2169 840 1699 2065 676 1699 2065 676 1775 2169 840 1778 2062 673 1074 1350 445 1078 1458 553 1836 2070 681 1836 2070 681 1078 1458 553 1833 2173 844 1718 2167 838 1779 2066 677 1833 2173 844 1833 2173 844 1779 2066 677 1836 2070 681 1794 2176 847 1780 2177 848 1849 2175 846 1849 2175 846 1780 2177 848 1837 2178 849 1780 2177 848 1705 2093 764 1837 2178 849 1837 2178 849 1705 2093 764 1746 2090 761 1691 2039 650 1734 2057 668 1746 2090 761 1746 2090 761 1734 2057 668 1837 2178 849 1734 2057 668 1793 2056 667 1837 2178 849 1837 2178 849 1793 2056 667 1849 2175 846 1855 2179 850 1802 2109 780 1838 2180 851 1838 2180 851 1802 2109 780 1754 2108 779 1707 2098 769 1781 2181 852 1754 2108 779 1754 2108 779 1781 2181 852 1838 2180 851 1781 2181 852 1713 2124 795 1838 2180 851 1838 2180 851 1713 2124 795 1765 2138 809 1801 2143 814 1855 2179 850 1765 2138 809 1765 2138 809 1855 2179 850 1838 2180 851 1719 2182 853 1715 2128 799 1839 2184 855 1839 2184 855 1715 2128 799 1782 2183 854 1708 2105 776 1783 2185 856 1782 2183 854 1782 2183 854 1783 2185 856 1839 2184 855 1704 2092 763 1705 2093 764 1870 2187 858 1870 2187 858 1705 2093 764 1784 2186 857 1709 2112 783 1787 2115 786 1784 2186 857 1784 2186 857 1787 2115 786 1870 2187 858 1785 2188 859 1711 2126 797 1840 2189 860 1840 2189 860 1711 2126 797 1759 2125 796 1713 2124 795 1781 2181 852 1759 2125 796 1759 2125 796 1781 2181 852 1840 2189 860 1781 2181 852 1707 2098 769 1840 2189 860 1840 2189 860 1707 2098 769 1748 2096 767 1706 2095 766 1785 2188 859 1748 2096 767 1748 2096 767 1785 2188 859 1840 2189 860 1797 2145 816 1798 2071 682 1841 2144 815 1841 2144 815 1798 2071 682 1817 2074 685 1739 2076 687 1786 2116 787 1817 2074 685 1817 2074 685 1786 2116 787 1841 2144 815 1786 2116 787 1739 2076 687 1842 2114 785 1842 2114 785 1739 2076 687 1863 2190 861 1719 2182 853 1787 2115 786 1863 2190 861 1863 2190 861 1787 2115 786 1842 2114 785 1704 2092 763 1783 2185 856 1843 2091 762 1843 2091 762 1783 2185 856 1860 2191 862 1694 2044 655 1788 2036 647 1860 2191 862 1860 2191 862 1788 2036 647 1843 2091 762 1788 2036 647 1694 2044 655 1844 2037 648 1844 2037 648 1694 2044 655 1730 2042 653 1693 2041 652 1789 2016 631 1730 2042 653 1730 2042 653 1789 2016 631 1844 2037 648 1693 2041 652 1729 2040 651 1685 2192 636 1685 2192 636 1729 2040 651 1845 2193 863 1896 2194 864 1692 2047 658 1731 2046 657 1829 2157 828 1769 2156 827 1828 2151 822 1828 2151 822 1769 2156 827 1791 2152 823 1769 2156 827 1776 2170 841 1791 2152 823 1791 2152 823 1776 2170 841 1846 2168 839 1776 2170 841 1699 2065 676 1846 2168 839 1846 2168 839 1699 2065 676 1866 2067 678 1068 2196 577 1100 1483 576 1684 2195 643 1684 2195 643 1100 1483 576 1847 2033 644 1100 1483 576 1079 1485 578 1847 2033 644 1847 2033 644 1079 1485 578 1792 2034 645 1079 1485 578 1101 1486 579 1792 2034 645 1792 2034 645 1101 1486 579 1848 2055 666 1101 1486 579 1080 1487 580 1848 2055 666 1848 2055 666 1080 1487 580 1793 2056 667 1080 1487 580 1102 1488 581 1793 2056 667 1793 2056 667 1102 1488 581 1849 2175 846 1081 1489 582 1794 2176 847 1102 1488 581 1102 1488 581 1794 2176 847 1849 2175 846 1794 2176 847 1081 1489 582 1850 2197 865 1850 2197 865 1081 1489 582 1103 1491 584 1082 1492 585 1795 2133 804 1103 1491 584 1103 1491 584 1795 2133 804 1850 2197 865 1795 2133 804 1082 1492 585 1851 2134 805 1851 2134 805 1082 1492 585 1104 1493 586 1083 1494 587 1796 2136 807 1104 1493 586 1104 1493 586 1796 2136 807 1851 2134 805 1084 1495 588 1797 2145 816 1083 1494 587 1083 1494 587 1797 2145 816 1796 2136 807 1085 1496 589 1798 2071 682 1084 1495 588 1084 1495 588 1798 2071 682 1797 2145 816 1087 1499 592 1105 1498 591 1701 2072 683 1701 2072 683 1105 1498 591 1852 2198 866 1105 1498 591 1086 1500 593 1852 2198 866 1852 2198 866 1086 1500 593 1799 2147 818 1106 1501 594 1088 1502 595 1853 2148 819 1853 2148 819 1088 1502 595 1800 2141 812 1086 1500 593 1106 1501 594 1799 2147 818 1799 2147 818 1106 1501 594 1853 2148 819 1088 1502 595 1107 1503 596 1800 2141 812 1800 2141 812 1107 1503 596 1854 2142 813 1107 1503 596 1089 1504 597 1854 2142 813 1854 2142 813 1089 1504 597 1801 2143 814 1108 1505 598 1090 1506 599 1855 2179 850 1855 2179 850 1090 1506 599 1802 2109 780 1089 1504 597 1108 1505 598 1801 2143 814 1801 2143 814 1108 1505 598 1855 2179 850 1090 1506 599 1109 1507 600 1802 2109 780 1802 2109 780 1109 1507 600 1856 2110 781 1109 1507 600 1091 1508 601 1856 2110 781 1856 2110 781 1091 1508 601 1803 2111 782 1091 1508 601 1110 1287 385 1803 2111 782 1803 2111 782 1110 1287 385 1857 2015 630 1738 2068 679 1698 2063 674 1858 2200 868 1858 2200 868 1698 2063 674 1804 2199 867 1873 2172 843 1834 2174 845 1804 2199 867 1804 2199 867 1834 2174 845 1858 2200 868 1834 2174 845 1099 1461 556 1858 2200 868 1858 2200 868 1099 1461 556 1111 1511 604 1073 1348 443 1738 2068 679 1111 1511 604 1111 1511 604 1738 2068 679 1858 2200 868 1085 1496 589 1087 1499 592 1798 2071 682 1798 2071 682 1087 1499 592 1701 2072 683 1697 2201 869 1805 2103 774 1770 2154 825 1770 2154 825 1805 2103 774 1859 2202 870 1805 2103 774 1744 2082 753 1859 2202 870 1859 2202 870 1744 2082 753 1830 2159 830 1772 2203 871 1806 2204 872 1830 2159 830 1830 2159 830 1806 2204 872 1859 2202 870 1806 2204 872 1717 2155 826 1859 2202 870 1859 2202 870 1717 2155 826 1770 2154 825 1783 2185 856 1708 2105 776 1860 2191 862 1860 2191 862 1708 2105 776 1752 2104 775 1694 2044 655 1860 2191 862 1696 2059 670 1696 2059 670 1860 2191 862 1752 2104 775 1717 2155 826 1806 2204 872 1775 2169 840 1775 2169 840 1806 2204 872 1861 2205 873 1806 2204 872 1772 2203 871 1861 2205 873 1861 2205 873 1772 2203 871 1777 2206 874 1785 2188 859 1706 2095 766 1862 2207 875 1862 2207 875 1706 2095 766 1750 2100 771 1750 2100 771 1708 2105 776 1862 2207 875 1862 2207 875 1708 2105 776 1782 2183 854 1715 2128 799 1760 2127 798 1782 2183 854 1782 2183 854 1760 2127 798 1862 2207 875 1711 2126 797 1785 2188 859 1760 2127 798 1760 2127 798 1785 2188 859 1862 2207 875 1775 2169 840 1861 2205 873 1778 2062 673 1778 2062 673 1861 2205 873 1864 2208 876 1777 2206 874 1835 2171 842 1861 2205 873 1861 2205 873 1835 2171 842 1864 2208 876 1739 2076 687 1700 2075 686 1863 2190 861 1863 2190 861 1700 2075 686 1761 2129 800 1715 2128 799 1719 2182 853 1761 2129 800 1761 2129 800 1719 2182 853 1863 2190 861 1804 2199 867 1698 2063 674 1864 2208 876 1864 2208 876 1698 2063 674 1778 2062 673 1852 2198 866 1799 2147 818 1865 2209 877 1865 2209 877 1799 2147 818 1767 2146 817 1712 2119 790 1762 2131 802 1767 2146 817 1767 2146 817 1762 2131 802 1865 2209 877 1762 2131 802 1700 2075 686 1865 2209 877 1865 2209 877 1700 2075 686 1740 2073 684 1701 2072 683 1852 2198 866 1740 2073 684 1740 2073 684 1852 2198 866 1865 2209 877 1779 2066 677 1718 2167 838 1866 2067 678 1866 2067 678 1718 2167 838 1846 2168 839 1789 2016 631 1693 2041 652 1867 2017 632 1867 2017 632 1693 2041 652 1685 2210 636 1696 2059 670 1751 2102 773 1735 2060 671 1735 2060 671 1751 2102 773 1697 2201 869 1805 2103 774 1697 2201 869 1751 2102 773 1803 2111 782 1857 2015 630 1753 2106 777 1753 2106 777 1857 2015 630 1868 2211 878 1857 2015 630 1809 2014 629 1868 2211 878 1809 2014 629 1880 2013 628 1868 2211 878 1742 2079 690 1702 2078 689 1868 2211 878 1868 2211 878 1702 2078 689 1753 2106 777 1780 2177 848 1794 2176 847 1869 2212 879 1869 2212 879 1794 2176 847 1850 2197 865 1795 2133 804 1763 2132 803 1850 2197 865 1850 2197 865 1763 2132 803 1869 2212 879 1763 2132 803 1709 2112 783 1869 2212 879 1869 2212 879 1709 2112 783 1784 2186 857 1705 2093 764 1780 2177 848 1784 2186 857 1784 2186 857 1780 2177 848 1869 2212 879 1787 2115 786 1719 2182 853 1870 2187 858 1870 2187 858 1719 2182 853 1839 2184 855 1783 2185 856 1704 2092 763 1839 2184 855 1839 2184 855 1704 2092 763 1870 2187 858 1871 2083 754 1751 2102 773 1747 2094 765 1747 2094 765 1751 2102 773 1821 2101 772 1871 2083 754 1747 2094 765 1741 2077 688 1741 2077 688 1747 2094 765 1820 2097 768 1772 2203 871 1872 2160 831 1777 2206 874 1777 2206 874 1872 2160 831 1835 2171 842 1872 2160 831 1772 2203 871 1771 2158 829 1771 2158 829 1772 2203 871 1830 2159 830 1835 2171 842 1873 2172 843 1864 2208 876 1864 2208 876 1873 2172 843 1804 2199 867 1703 2085 756 1876 2087 758 1771 2158 829 1771 2158 829 1876 2087 758 1875 2161 832 1877 2088 759 1876 2087 758 1743 2084 755 1743 2084 755 1876 2087 758 1703 2085 756 1743 2084 755 1722 2008 623 1877 2088 759 1877 2088 759 1722 2008 623 1878 2011 626 1687 2006 621 1879 2012 627 1722 2008 623 1722 2008 623 1879 2012 627 1878 2011 626 1880 2013 628 1879 2012 627 1686 2081 751 1686 2081 751 1879 2012 627 1687 2006 621 1868 2211 878 1880 2013 628 1742 2079 690 1742 2079 690 1880 2013 628 1686 2081 751 1684 2214 2187 1886 2215 2188 1068 2213 1843 1068 2213 1843 1886 2215 2188 1319 1525 1844 1521 1759 2061 1886 2215 2188 1518 2004 2186 1518 2004 2186 1886 2215 2188 1887 2216 2189 1518 2004 2186 1517 2003 2185 1521 1759 2061 1521 1759 2061 1517 2003 2185 1881 1760 2062 1517 2003 2185 1516 1758 2060 1881 1760 2062 1881 1760 2062 1516 1758 2060 1515 1757 2059 898 1023 1712 1312 1025 1714 1515 1757 2059 1515 1757 2059 1312 1025 1714 1881 1760 2062 1683 2217 2190 1685 2218 2191 1888 2220 2193 1888 2220 2193 1685 2218 2191 1889 2219 2192 1882 1750 2052 1520 2002 2184 1890 2221 2194 1890 2221 2194 1520 2002 2184 1889 2219 2192 1885 2223 2196 1892 2224 2197 1884 2222 2195 1884 2222 2195 1892 2224 2197 1891 2225 2198 1514 1754 2056 1898 2226 2199 1315 1538 1857 1315 1538 1857 1898 2226 2199 1320 1539 1858 1518 2004 2186 1887 2216 2189 1519 2001 2183 1519 2001 2183 1887 2216 2189 1888 2220 2193 1882 1750 2052 1890 2221 2194 1512 1751 2053 1512 1751 2053 1890 2221 2194 1891 2225 2198 1729 2040 651 1692 2047 658 1845 2228 863 1845 2228 863 1692 2047 658 1884 2227 880 1690 2022 637 1682 2229 640 1689 2049 660 1689 2049 660 1682 2229 640 1885 2230 881 1513 1752 2054 1892 2224 2197 1883 1753 2055 1883 1753 2055 1892 2224 2197 1893 2231 2200 1884 2233 880 1692 2047 658 1885 2232 881 1885 2232 881 1692 2047 658 1689 2049 660 905 1028 1717 1319 1525 1844 1521 1759 2061 1521 1759 2061 1319 1525 1844 1886 2215 2188 1069 2235 1862 1320 1539 1858 1720 2234 2201 1720 2234 2201 1320 1539 1858 1898 2226 2199 1684 2236 2187 1726 2237 2202 1886 2215 2188 1886 2215 2188 1726 2237 2202 1887 2216 2189 1726 2238 2202 1683 2239 2190 1887 2216 2189 1887 2216 2189 1683 2239 2190 1888 2220 2193 1520 2002 2184 1519 2001 2183 1889 2219 2192 1889 2219 2192 1519 2001 2183 1888 2220 2193 1845 2241 2203 1890 2221 2194 1685 2240 2191 1685 2240 2191 1890 2221 2194 1889 2219 2192 1884 2243 2195 1891 2225 2198 1845 2242 2203 1845 2242 2203 1891 2225 2198 1890 2221 2194 1512 1751 2053 1891 2225 2198 1513 1752 2054 1513 1752 2054 1891 2225 2198 1892 2224 2197 1682 2245 2204 1893 2231 2200 1885 2244 2196 1885 2244 2196 1893 2231 2200 1892 2224 2197 1720 2247 2201 1898 2226 2199 1682 2246 2204 1682 2246 2204 1898 2226 2199 1893 2231 2200 1894 2248 882 1697 2201 869 1829 2157 828 1829 2157 828 1697 2201 869 1770 2154 825 1894 2248 882 1829 2157 828 1790 2051 662 1790 2051 662 1829 2157 828 1828 2151 822 1894 2248 882 1790 2051 662 1895 2249 883 1895 2249 883 1790 2051 662 1812 2050 661 1735 2060 671 1697 2201 869 1736 2061 672 1736 2061 672 1697 2201 869 1894 2248 882 1736 2061 672 1894 2248 882 1896 2194 864 1896 2194 864 1894 2248 882 1895 2249 883 1692 2047 658 1896 2194 864 1689 2049 660 1689 2049 660 1896 2194 864 1895 2249 883 1689 2049 660 1895 2249 883 1812 2050 661 1815 2045 656 1736 2061 672 1731 2046 657 1731 2046 657 1736 2061 672 1896 2194 864 1883 1753 2055 1893 2231 2200 1514 1754 2056 1514 1754 2056 1893 2231 2200 1898 2226 2199 1371 1600 1902 1899 1601 1903 1359 1584 1886 1359 1584 1886 1899 1601 1903 1360 1586 1888 1382 1613 1915 1900 1614 1916 1371 1600 1902 1371 1600 1902 1900 1614 1916 1899 1601 1903 1393 1626 1928 1901 1627 1929 1382 1613 1915 1382 1613 1915 1901 1627 1929 1900 1614 1916 1404 1639 1941 1902 1640 1942 1393 1626 1928 1393 1626 1928 1902 1640 1942 1901 1627 1929 1404 1639 1941 1415 1652 1954 1902 1640 1942 1902 1640 1942 1415 1652 1954 350 790 1479 1426 1664 1966 433 793 1482 1415 1652 1954 1415 1652 1954 433 793 1482 350 790 1479 1497 1735 2037 1903 1756 2058 430 806 1495 1503 1741 2043 1509 1747 2049 1903 1756 2058 1903 1756 2058 1509 1747 2049 1904 1755 2057 1051 1105 1734 986 1090 1719 1905 1106 1735 1905 1106 1735 986 1090 1719 1906 1093 1722 1048 1091 1720 908 1109 1738 1907 1092 1721 1907 1092 1721 908 1109 1738 1908 1096 1725 1017 1095 1724 951 1107 1736 1907 1092 1721 1907 1092 1721 951 1107 1736 1906 1093 1722 1019 1108 1737 925 1101 1730 1905 1106 1735 1905 1106 1735 925 1101 1730 1909 1103 1732 1020 1113 1742 923 1094 1723 1910 1111 1740 1910 1111 1740 923 1094 1723 1908 1096 1725 1050 1098 1727 909 1104 1733 1911 1099 1728 1911 1099 1728 909 1104 1733 1909 1103 1732 1052 1110 1739 910 1115 1744 1910 1111 1740 1910 1111 1740 910 1115 1744 1912 1114 1743 1018 1102 1731 952 1148 1777 1911 1099 1728 1911 1099 1728 952 1148 1777 1913 1100 1729 1021 1119 1748 924 1112 1741 1914 1117 1746 1914 1117 1746 924 1112 1741 1912 1114 1743 990 1097 1726 1913 1100 1729 1055 1146 1775 1055 1146 1775 1913 1100 1729 1915 1147 1776 982 1125 1754 1916 1120 1749 1053 1116 1745 1053 1116 1745 1916 1120 1749 1914 1117 1746 928 1142 1771 1917 1144 1773 1026 1149 1778 1026 1149 1778 1917 1144 1773 1915 1147 1776 926 1118 1747 1916 1120 1749 1022 1122 1751 1022 1122 1751 1916 1120 1749 1918 1123 1752 912 1145 1774 1917 1144 1773 1049 1140 1769 1049 1140 1769 1917 1144 1773 1919 1141 1770 984 1127 1756 1920 1124 1753 1046 1126 1755 1046 1126 1755 1920 1124 1753 1918 1123 1752 930 1136 1765 1921 1138 1767 1025 1143 1772 1025 1143 1772 1921 1138 1767 1919 1141 1770 927 1121 1750 1920 1124 1753 1023 1131 1760 1023 1131 1760 1920 1124 1753 1922 1129 1758 988 1139 1768 1921 1138 1767 1054 1134 1763 1054 1134 1763 1921 1138 1767 1923 1135 1764 911 1133 1762 1924 1132 1761 1047 1128 1757 1047 1128 1757 1924 1132 1761 1922 1129 1758 929 1130 1759 1924 1132 1761 1024 1137 1766 1024 1137 1766 1924 1132 1761 1923 1135 1764 1662 1821 2063 1926 1824 2066 1522 1841 2083 1522 1841 2083 1926 1824 2066 1925 1827 2069 1665 1835 2077 1928 1837 2079 1600 1822 2064 1600 1822 2064 1928 1837 2079 1927 1823 2065 1631 1825 2067 1926 1824 2066 1565 1839 2081 1565 1839 2081 1926 1824 2066 1927 1823 2065 1634 1843 2085 1929 1842 2084 1537 1826 2068 1537 1826 2068 1929 1842 2084 1925 1827 2069 1633 1838 2080 1928 1837 2079 1539 1833 2075 1539 1833 2075 1928 1837 2079 1930 1834 2076 1666 1840 2082 1929 1842 2084 1524 1847 2089 1524 1847 2089 1929 1842 2084 1931 1845 2087 1664 1828 2070 1932 1831 2073 1523 1836 2078 1523 1836 2078 1932 1831 2073 1930 1834 2076 1635 1849 2091 1933 1848 2090 1538 1844 2086 1538 1844 2086 1933 1848 2090 1931 1845 2087 1632 1832 2074 1932 1831 2073 1566 1880 2122 1566 1880 2122 1932 1831 2073 1934 1830 2072 1596 1857 2099 1667 1846 2088 1935 1851 2093 1935 1851 2093 1667 1846 2088 1933 1848 2090 1604 1829 2071 1669 1876 2118 1934 1830 2072 1934 1830 2072 1669 1876 2118 1936 1878 2120 1540 1850 2092 1636 1852 2094 1935 1851 2093 1935 1851 2093 1636 1852 2094 1937 1855 2097 1542 1874 2116 1640 1879 2121 1938 1875 2117 1938 1875 2117 1640 1879 2121 1936 1878 2120 1598 1859 2101 1660 1856 2098 1939 1854 2096 1939 1854 2096 1660 1856 2098 1937 1855 2097 1526 1877 2119 1663 1870 2112 1938 1875 2117 1938 1875 2117 1663 1870 2112 1940 1872 2114 1541 1853 2095 1637 1861 2103 1939 1854 2096 1939 1854 2096 1637 1861 2103 1941 1860 2102 1544 1868 2110 1639 1873 2115 1942 1869 2111 1942 1869 2111 1639 1873 2115 1940 1872 2114 1525 1865 2107 1661 1858 2100 1943 1863 2105 1943 1863 2105 1661 1858 2100 1941 1860 2102 1602 1871 2113 1668 1864 2106 1942 1869 2111 1942 1869 2111 1668 1864 2106 1944 1866 2108 1543 1862 2104 1638 1867 2109 1943 1863 2105 1943 1863 2105 1638 1867 2109 1944 1866 2108 651 570 1332 1945 675 1416 2087 571 1333 2087 571 1333 1945 675 1416 2086 2250 2205 374 512 1308 393 653 1394 1964 507 1303 1964 507 1303 393 653 1394 1945 675 1416 2086 2250 2205 1945 675 1416 2107 723 1448 2107 723 1448 1945 675 1416 393 653 1394 401 620 1368 521 619 1367 1949 771 1466 1949 771 1466 521 619 1367 1948 772 1467 660 630 1378 1950 770 1465 579 623 1371 579 623 1371 1950 770 1465 1949 771 1466 402 628 1376 524 626 1374 1951 769 1464 1951 769 1464 524 626 1374 1950 770 1465 577 664 1405 1952 767 1462 578 631 1379 578 631 1379 1952 767 1462 1951 769 1464 577 664 1405 2094 700 1429 1952 767 1462 1952 767 1462 2094 700 1429 2096 768 1463 584 693 281 1954 765 1000 419 742 977 419 742 977 1954 765 1000 1955 764 999 659 556 239 1957 762 997 575 553 236 575 553 236 1957 762 997 1956 763 998 527 634 248 1957 762 997 404 636 250 404 636 250 1957 762 997 1958 761 996 658 569 245 1959 760 995 574 558 241 574 558 241 1959 760 995 1958 761 996 530 641 255 1959 760 995 407 643 257 407 643 257 1959 760 995 1960 759 994 573 568 244 657 672 268 1960 759 994 1960 759 994 657 672 268 1961 758 993 412 649 263 533 647 261 1962 757 992 1962 757 992 533 647 261 1961 758 993 671 732 309 1947 734 311 571 755 990 571 755 990 1947 734 311 1963 756 991 1470 1708 2010 1481 1719 2021 431 800 1489 431 800 1489 1481 1719 2021 347 801 1490 1459 1697 1999 1470 1708 2010 348 798 1487 348 798 1487 1470 1708 2010 431 800 1489 1448 1686 1988 1459 1697 1999 432 797 1486 432 797 1486 1459 1697 1999 348 798 1487 1437 1675 1977 1448 1686 1988 349 794 1483 349 794 1483 1448 1686 1988 432 797 1486 351 803 1492 347 801 1490 1491 1727 2029 1491 1727 2029 347 801 1490 1481 1719 2021 430 806 1495 351 803 1492 1497 1735 2037 1497 1735 2037 351 803 1492 1491 1727 2029 430 806 1495 1903 1756 2058 435 438 1234 435 438 1234 1903 1756 2058 1986 1021 1710 435 438 1234 1986 1021 1710 88 375 1186 88 375 1186 1986 1021 1710 320 1020 1709 433 793 1482 1426 1664 1966 349 794 1483 349 794 1483 1426 1664 1966 1437 1675 1977 2049 2252 2207 1973 1589 1891 2048 2251 2206 2048 2251 2206 1973 1589 1891 1972 1588 1890 350 790 1479 434 436 1232 1902 1640 1942 1902 1640 1942 434 436 1232 1974 1641 1943 2047 2253 2208 2048 2251 2206 1975 1602 1904 1975 1602 1904 2048 2251 2206 1972 1588 1890 2046 2254 2209 2047 2253 2208 1976 1615 1917 1976 1615 1917 2047 2253 2208 1975 1602 1904 2046 2254 2209 1976 1615 1917 2045 2255 2210 2045 2255 2210 1976 1615 1917 1977 1628 1930 2044 1653 1955 2045 2255 2210 1974 1641 1943 1974 1641 1943 2045 2255 2210 1977 1628 1930 684 410 1214 2026 413 1217 606 781 1473 606 781 1473 2026 413 1217 2027 423 2211 310 111 904 1978 113 906 2024 409 1213 2024 409 1213 1978 113 906 2025 412 1216 858 976 1665 4 371 1182 867 985 1674 867 985 1674 4 371 1182 84 373 1184 858 976 1665 845 964 1653 4 371 1182 4 371 1182 845 964 1653 0 369 1180 721 832 1521 1331 831 1520 1979 835 1524 1979 835 1524 1331 831 1520 1980 836 1525 3 360 1171 87 359 1170 774 2256 2212 774 2256 2212 87 359 1170 1981 892 1581 735 2257 2213 1982 850 1539 722 834 1523 722 834 1523 1982 850 1539 1979 835 1524 748 2258 2214 1983 864 1553 735 2257 2213 735 2257 2213 1983 864 1553 1982 850 1539 761 2259 2215 1984 878 1567 748 2258 2214 748 2258 2214 1984 878 1567 1983 864 1553 774 2256 2212 1981 892 1581 761 2259 2215 761 2259 2215 1981 892 1581 1984 878 1567 810 928 1617 798 916 1605 1 365 1176 1 365 1176 798 916 1605 86 364 1175 1 365 1176 85 367 1178 810 928 1617 810 928 1617 85 367 1178 822 940 1629 822 940 1629 85 367 1178 834 952 1641 834 952 1641 85 367 1178 0 369 1180 845 964 1653 834 952 1641 0 369 1180 88 375 1186 320 1020 1709 2015 2260 2216 2015 2260 2216 84 373 1184 88 375 1186 1514 1754 2056 1315 1538 1857 1904 1755 2057 1904 1755 2057 1315 1538 1857 1985 1019 1708 1337 1017 1706 1985 1019 1708 897 1018 1707 897 1018 1707 1985 1019 1708 1315 1538 1857 243 1 26 1987 2261 2217 90 2 28 90 2 28 1987 2261 2217 1988 2262 2218 91 4 30 1989 2263 2219 243 1 26 243 1 26 1989 2263 2219 1987 2261 2217 244 7 35 1990 2264 2220 91 4 30 91 4 30 1990 2264 2220 1989 2263 2219 299 8 36 1991 2265 2221 244 7 35 244 7 35 1991 2265 2221 1990 2264 2220 164 179 1042 163 178 1041 1993 2267 2223 1993 2267 2223 163 178 1041 1992 2266 2222 266 181 1045 165 180 1043 1995 2269 2225 1995 2269 2225 165 180 1043 1994 2268 2224 163 178 1041 266 181 1045 1992 2266 2222 1992 2266 2222 266 181 1045 1995 2269 2225 90 2 28 1988 2262 2218 288 184 1048 288 184 1048 1988 2262 2218 1996 2270 2226 167 186 1050 164 179 1042 1997 2271 2227 1997 2271 2227 164 179 1042 1993 2267 2223 288 184 1048 1996 2270 2226 324 333 1144 324 333 1144 1996 2270 2226 1998 2272 2228 315 351 1162 167 186 1050 1999 2273 2229 1999 2273 2229 167 186 1050 1997 2271 2227 324 333 1144 1998 2272 2228 165 180 1043 165 180 1043 1998 2272 2228 1994 2268 2224 1991 2265 2221 299 8 36 2018 2274 2230 2018 2274 2230 299 8 36 2017 378 1189 315 351 1162 1999 2273 2229 690 432 1228 690 432 1228 1999 2273 2229 2001 2275 2231 622 442 1238 437 441 1237 2003 2277 2233 2003 2277 2233 437 441 1237 2002 2276 2232 438 443 1239 622 442 1238 2004 2278 2234 2004 2278 2234 622 442 1238 2003 2277 2233 623 446 1242 438 443 1239 2005 2279 2235 2005 2279 2235 438 443 1239 2004 2278 2234 623 446 1242 2005 2279 2235 440 447 1243 440 447 1243 2005 2279 2235 2006 2280 2236 520 617 1365 2007 2281 2237 519 618 1366 519 618 1366 2007 2281 2237 2008 2282 2238 645 622 1370 2009 2283 2239 521 619 1367 521 619 1367 2009 2283 2239 2010 2284 2240 519 618 1366 2008 2282 2238 645 622 1370 645 622 1370 2008 2282 2238 2009 2283 2239 437 441 1237 661 624 1372 2002 2276 2232 2002 2276 2232 661 624 1372 2011 2285 2241 523 625 1373 2012 2286 2242 520 617 1365 520 617 1365 2012 2286 2242 2007 2281 2237 661 624 1372 1948 772 1467 2011 2285 2241 2011 2285 2241 1948 772 1467 2013 2287 2243 440 447 1243 2006 2280 2236 672 774 1469 672 774 1469 2006 2280 2236 2000 2288 2244 690 432 1228 2001 2275 2231 523 625 1373 523 625 1373 2001 2275 2231 2012 2286 2242 1948 772 1467 521 619 1367 2013 2287 2243 2013 2287 2243 521 619 1367 2010 2284 2240 1988 2262 2218 1987 2261 2217 2014 2289 2245 1987 2261 2217 1989 2263 2219 2014 2289 2245 1989 2263 2219 1990 2264 2220 2014 2289 2245 1990 2264 2220 1991 2265 2221 2014 2289 2245 1993 2267 2223 1992 2266 2222 2014 2289 2245 1995 2269 2225 1994 2268 2224 2014 2289 2245 1992 2266 2222 1995 2269 2225 2014 2289 2245 1996 2270 2226 1988 2262 2218 2014 2289 2245 1997 2271 2227 1993 2267 2223 2014 2289 2245 1998 2272 2228 1996 2270 2226 2014 2289 2245 1999 2273 2229 1997 2271 2227 2014 2289 2245 1994 2268 2224 1998 2272 2228 2014 2289 2245 1991 2265 2221 2018 2274 2230 2014 2289 2245 2018 2274 2230 2000 2288 2244 2014 2289 2245 2001 2275 2231 1999 2273 2229 2014 2289 2245 2003 2277 2233 2002 2276 2232 2014 2289 2245 2004 2278 2234 2003 2277 2233 2014 2289 2245 2005 2279 2235 2004 2278 2234 2014 2289 2245 2006 2280 2236 2005 2279 2235 2014 2289 2245 2008 2282 2238 2007 2281 2237 2014 2289 2245 2010 2284 2240 2009 2283 2239 2014 2289 2245 2009 2283 2239 2008 2282 2238 2014 2289 2245 2002 2276 2232 2011 2285 2241 2014 2289 2245 2007 2281 2237 2012 2286 2242 2014 2289 2245 2011 2285 2241 2013 2287 2243 2014 2289 2245 2000 2288 2244 2006 2280 2236 2014 2289 2245 2012 2286 2242 2001 2275 2231 2014 2289 2245 2013 2287 2243 2010 2284 2240 2014 2289 2245 320 1020 1709 884 1002 1691 2015 2260 2216 2015 2260 2216 884 1002 1691 877 995 1684 867 985 1674 84 373 1184 877 995 1684 877 995 1684 84 373 1184 2015 2260 2216 1497 1735 2037 1503 1741 2043 1903 1756 2058 2000 2288 2244 2018 2274 2230 672 774 1469 672 774 1469 2018 2274 2230 2017 378 1189 228 88 77 2020 406 151 308 85 74 308 85 74 2020 406 151 2019 402 150 673 775 1470 590 773 1468 2021 379 1190 2021 379 1190 590 773 1468 2022 377 1188 590 773 1468 672 774 1469 2022 377 1188 2022 377 1188 672 774 1469 2017 378 1189 591 776 1471 673 775 1470 2023 380 1191 2023 380 1191 673 775 1470 2021 379 1190 591 776 1471 2023 380 1191 683 780 1472 683 780 1472 2023 380 1191 2024 409 1213 683 780 1472 2024 409 1213 604 411 1215 604 411 1215 2024 409 1213 2025 412 1216 1978 113 906 142 124 914 2025 412 1216 2025 412 1216 142 124 914 2026 413 1217 142 124 914 229 126 916 2026 413 1217 2026 413 1217 229 126 916 2027 423 2211 606 781 228 2027 423 153 687 782 229 687 782 229 2027 423 153 2028 422 152 687 782 229 2028 422 152 607 783 230 607 783 230 2028 422 152 2029 424 154 607 783 230 2029 424 154 688 784 231 688 784 231 2029 424 154 2030 425 155 688 784 231 2030 425 155 603 778 224 603 778 224 2030 425 155 2031 408 147 682 779 225 603 778 224 2032 407 146 2032 407 146 603 778 224 2031 408 147 601 777 222 682 779 225 2033 403 145 2033 403 145 682 779 225 2032 407 146 601 777 222 2033 403 145 681 405 223 681 405 223 2033 403 145 2019 402 2263 2020 406 151 228 88 77 2016 420 160 2016 420 160 228 88 77 312 154 107 41 140 103 2034 414 156 312 154 107 312 154 107 2034 414 156 2016 420 160 311 135 100 2035 415 157 41 140 103 41 140 103 2035 415 157 2034 414 156 311 135 921 29 77 897 2035 415 1218 2035 415 1218 29 77 897 2036 394 1205 307 76 896 2037 395 1206 29 77 897 29 77 897 2037 395 1206 2036 394 1205 227 79 899 2038 398 1209 307 76 896 307 76 896 2038 398 1209 2037 395 1206 227 79 899 45 81 901 2038 398 1209 2038 398 1209 45 81 901 2039 400 1211 45 81 901 162 353 1164 2039 400 1211 2039 400 1211 162 353 1164 2040 428 1224 162 353 1164 79 355 1166 2040 428 1224 2040 428 1224 79 355 1166 2041 430 1226 233 358 1169 2042 433 1229 79 355 1166 79 355 1166 2042 433 1229 2041 430 1226 3 360 1171 2043 435 1231 233 358 1169 233 358 1169 2043 435 1231 2042 433 1229 774 2256 2212 2044 1653 1955 3 360 1171 3 360 1171 2044 1653 1955 2043 435 1231 761 2259 2215 2045 2255 2210 774 2256 2212 774 2256 2212 2045 2255 2210 2044 1653 1955 761 2259 2215 748 2258 2214 2045 2255 2210 2045 2255 2210 748 2258 2214 2046 2254 2209 748 2258 2214 735 2257 2213 2046 2254 2209 2046 2254 2209 735 2257 2213 2047 2253 2208 735 2257 2213 722 834 1523 2047 2253 2208 2047 2253 2208 722 834 1523 2048 2251 2206 722 834 1523 708 833 1522 2048 2251 2206 2048 2251 2206 708 833 1522 2049 2252 2207 907 1029 1718 2049 2252 2207 708 833 1522 1973 1589 1891 2049 2252 2207 907 1029 1718 907 1029 1718 1980 836 1525 1331 831 1520 2051 291 122 2065 133 1002 2050 292 123 2050 292 123 2065 133 1002 2064 288 1003 322 296 127 2067 376 1004 282 294 125 282 294 125 2067 376 1004 2066 134 1005 282 294 125 2066 134 1005 2051 291 122 2051 291 122 2066 134 1005 2065 133 1002 185 244 52 278 242 50 2068 245 1007 2068 245 1007 278 242 50 2069 237 1006 184 241 49 279 251 56 2070 238 1009 2070 238 1009 279 251 56 2071 246 1008 278 242 50 184 241 49 2069 237 1006 2069 237 1006 184 241 49 2070 238 1009 2052 263 64 185 244 52 2072 261 1010 2072 261 1010 185 244 52 2068 245 1007 2050 292 123 2064 288 1003 186 250 55 186 250 55 2064 288 1003 2073 247 1011 279 251 56 186 250 55 2071 246 1008 2071 246 1008 186 250 55 2073 247 1011 280 257 1103 2075 252 1099 187 259 1104 187 259 1104 2075 252 1099 2074 260 1105 2054 327 235 2077 328 1014 2053 256 59 2053 256 59 2077 328 1014 2076 253 1015 2053 256 59 2076 253 1015 280 257 60 280 257 60 2076 253 1015 2075 252 2276 187 259 1104 2074 260 1105 2055 266 1109 2055 266 1109 2074 260 1105 2078 264 1107 2054 327 235 2052 263 64 2077 328 1014 2077 328 1014 2052 263 64 2072 261 1010 2055 266 1109 2078 264 1107 188 268 1111 188 268 1111 2078 264 1107 2079 269 1112 188 268 1111 2079 269 1112 2056 272 1115 2056 272 1115 2079 269 1112 2080 270 1113 189 274 1117 2056 272 1115 2081 275 1118 2081 275 1118 2056 272 1115 2080 270 1113 2057 287 1128 189 274 1117 2082 285 1126 2082 285 1126 189 274 1117 2081 275 1118 191 283 88 281 281 2271 2083 284 1022 2083 284 1022 281 281 2271 2084 276 1021 190 280 1123 2057 287 1128 2085 277 1120 2085 277 1120 2057 287 1128 2082 285 1126 281 281 1124 190 280 1123 2084 276 1119 2084 276 1119 190 280 1123 2085 277 1120 322 296 127 191 283 88 2067 376 1004 2067 376 1004 191 283 88 2083 284 1022 1946 735 970 656 733 310 2086 2250 1025 2086 2250 1025 656 733 310 2087 571 1024 2058 731 308 2059 730 307 2088 572 1027 2088 572 1027 2059 730 307 2089 727 1026 656 733 310 2058 731 308 2087 571 1024 2087 571 1024 2058 731 308 2088 572 1027 554 681 274 2091 676 1028 653 689 279 653 689 279 2091 676 1028 2090 686 1029 555 683 276 2093 684 1030 652 680 273 652 680 273 2093 684 1030 2092 677 1031 652 680 273 2092 677 1031 554 681 274 554 681 274 2092 677 1031 2091 676 1028 2060 702 288 2094 700 1032 555 683 276 555 683 276 2094 700 1032 2093 684 1030 2059 730 307 556 690 280 2089 727 1026 2089 727 1026 556 690 280 2095 685 1033 653 689 279 2090 686 1029 556 690 280 556 690 280 2090 686 1029 2095 685 1033 1953 766 1001 557 696 284 2096 768 1035 2096 768 1035 557 696 284 2097 691 1034 654 695 1427 558 698 1426 2098 692 1423 2098 692 1423 558 698 1426 2099 699 1428 557 696 284 654 695 2270 2097 691 1034 2097 691 1034 654 695 2270 2098 692 1037 558 698 1426 2061 705 1432 2099 699 1428 2099 699 1428 2061 705 1432 2100 703 1430 1953 766 1001 2096 768 1035 2060 702 288 2060 702 288 2096 768 1035 2094 700 1032 2061 705 1432 559 707 1434 2100 703 1430 2100 703 1430 559 707 1434 2101 708 1435 559 707 1434 2062 711 1438 2101 708 1435 2101 708 1435 2062 711 1438 2102 709 1436 560 713 1440 2103 714 1441 2062 711 1438 2062 711 1438 2103 714 1441 2102 709 1436 2063 726 1451 2104 724 1449 560 713 1440 560 713 1440 2104 724 1449 2103 714 1441 561 720 1447 2105 715 1442 2063 726 1451 2063 726 1451 2105 715 1442 2104 724 1449 562 722 302 2107 723 1044 655 719 299 655 719 299 2107 723 1044 2106 716 2266 655 719 1446 2106 716 1443 561 720 1447 561 720 1447 2106 716 1443 2105 715 1442 1946 735 970 2086 2250 1025 562 722 302 562 722 302 2086 2250 1025 2107 723 1044 1686 2081 751 1687 2006 621 1807 2005 620 1117 1276 374 1237 1275 373 1151 1277 375</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<library_visual_scenes>\r\n\t\t<visual_scene id=\"VisualSceneNode\" name=\"untitled\">\r\n\t\t\t<node id=\"LOD3sp\" name=\"LOD3sp\">\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 0</rotate>\r\n\t\t\t\t<instance_geometry url=\"#LOD3spShape-lib\">\r\n\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t<instance_material symbol=\"blinn3SG\" target=\"#blinn3\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"TEX0\" />\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t</node>\r\n\t\t\t<node id=\"camera1\" name=\"camera1\">\r\n\t\t\t\t<translate sid=\"translate\">400.113 463.264 -431.078</translate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 0</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 -223.2</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 -38.4</rotate>\r\n\t\t\t\t<instance_camera url=\"#cameraShape1\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"directionalLight1\" name=\"directionalLight1\">\r\n\t\t\t\t<translate sid=\"translate\">148.654 183.672 -292.179</translate>\r\n\t\t\t\t<rotate sid=\"rotateZ\">0 0 1 -12.8709</rotate>\r\n\t\t\t\t<rotate sid=\"rotateY\">0 1 0 -191.679</rotate>\r\n\t\t\t\t<rotate sid=\"rotateX\">1 0 0 -45.6358</rotate>\r\n\t\t\t\t<instance_light url=\"#directionalLightShape1-lib\" />\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<scene>\r\n\t\t<instance_visual_scene url=\"#VisualSceneNode\" />\r\n\t</scene>\r\n</COLLADA>\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.5/infiles/mgmidget.dae",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>\r\n<COLLADA version=\"1.5\" xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t<asset>\r\n\t\t<contributor>\r\n\t\t\t<authoring_tool>Google SketchUp 8.0.4811</authoring_tool>\r\n\t\t</contributor>\r\n\t\t<created>2011-10-20T03:44:52Z</created>\r\n\t\t<modified>2011-10-20T03:44:52Z</modified>\r\n\t\t<unit meter=\"0.02539999969303608\" name=\"inch\" />\r\n\t\t<up_axis>Z_UP</up_axis>\r\n\t</asset>\r\n\t<library_visual_scenes>\r\n\t\t<visual_scene id=\"ID1\">\r\n\t\t\t<node name=\"SketchUp\">\r\n\t\t\t\t<node id=\"ID2\" name=\"instance_0\">\r\n\t\t\t\t\t<matrix>-1 0 0 -0.1047857155373135 0 1 0 -1.159676022821707 0 -0 1 -1.110223024625157e-016 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID3\" />\r\n\t\t\t\t</node>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<library_nodes>\r\n\t\t<node id=\"ID3\" name=\"skp7C95\">\r\n\t\t\t<node id=\"ID4\" name=\"instance_1\">\r\n\t\t\t\t<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID5\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID35\" name=\"instance_2\">\r\n\t\t\t\t<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID36\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID89\" name=\"instance_3\">\r\n\t\t\t\t<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID90\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID139\" name=\"instance_4\">\r\n\t\t\t\t<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID140\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID209\" name=\"instance_5\">\r\n\t\t\t\t<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID210\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID225\" name=\"instance_6\">\r\n\t\t\t\t<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID226\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID243\" name=\"instance_7\">\r\n\t\t\t\t<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID244\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID251\" name=\"instance_8\">\r\n\t\t\t\t<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID252\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID267\" name=\"instance_9\">\r\n\t\t\t\t<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID268\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID323\" name=\"instance_10\">\r\n\t\t\t\t<matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID324\" />\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node id=\"ID5\" name=\"_3D_Object1_1\">\r\n\t\t\t<instance_geometry url=\"#ID6\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID19\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID20\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID27\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID36\" name=\"_3D_Object1_3\">\r\n\t\t\t<instance_geometry url=\"#ID37\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID38\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID47\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID48\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID57\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID65\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID73\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID81\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID90\" name=\"_3D_Object1_5\">\r\n\t\t\t<instance_geometry url=\"#ID91\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID38\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID99\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID48\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID107\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID115\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID123\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID131\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID140\" name=\"_3D_Object1_7\">\r\n\t\t\t<instance_geometry url=\"#ID141\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID38\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID149\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID162\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID20\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID168\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID174\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID180\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID188\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID189\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID196\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID200\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID210\" name=\"_3D_Object1_9\">\r\n\t\t\t<instance_geometry url=\"#ID211\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID38\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID217\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID226\" name=\"_3D_Object1_10\">\r\n\t\t\t<instance_geometry url=\"#ID227\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID235\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID244\" name=\"_3D_Object2_2\">\r\n\t\t\t<instance_geometry url=\"#ID245\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID38\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID252\" name=\"_3D_Object2_4\">\r\n\t\t\t<instance_geometry url=\"#ID253\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID261\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID268\" name=\"_3D_Object8\">\r\n\t\t\t<instance_geometry url=\"#ID269\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID38\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID275\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID283\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID20\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID289\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID295\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID301\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID309\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID189\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID315\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID200\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID324\" name=\"_3D_Object2\">\r\n\t\t\t<instance_geometry url=\"#ID1222\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID1223\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1235\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1243\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1249\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1255\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1261\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1267\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1273\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1279\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1287\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1295\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1303\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID1304\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1311\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID1304\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1317\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1323\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1329\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1335\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1341\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1347\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1353\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1359\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1365\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1371\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1377\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1383\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1389\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1395\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1401\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1407\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1413\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1419\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1425\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1431\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1437\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1443\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1449\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1455\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID1223\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1463\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1469\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1475\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID48\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1481\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID38\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1487\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1493\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1499\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID48\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1505\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1511\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1517\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1523\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID38\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1529\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1537\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID1538\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1550\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID1551\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1558\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID189\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1564\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1572\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1578\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1584\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1590\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1596\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID48\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1602\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1608\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1614\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1620\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID38\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1626\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID1551\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1632\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID189\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1638\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1646\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1654\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1662\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1668\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1674\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1682\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1688\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1694\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1702\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1708\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1714\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1722\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1728\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1734\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1742\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1748\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1754\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1760\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1766\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1772\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1778\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1784\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1790\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1796\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1802\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1808\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1814\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID48\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1820\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1826\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID48\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1832\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1838\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1844\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1850\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1856\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1862\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1870\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1878\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1886\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1894\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID150\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1902\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1908\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1916\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1922\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<node id=\"ID325\" name=\"instance_11\">\r\n\t\t\t\t<matrix>0.2391837984 0 0 2.38950825377015 0 0.2391837984 0 0.9452262937899669 0 0 0.2391837984 0.2410314998464498 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID326\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID779\" name=\"instance_13\">\r\n\t\t\t\t<matrix>-0.2391837984 0 0 -2.366056800203434 0 0.2391837984 0 3.471970791224086 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID780\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID1220\" name=\"instance_14\">\r\n\t\t\t\t<matrix>0.2391837984 0 0 2.38950825377015 0 0.2391837984 0 3.471970791224085 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID326\" />\r\n\t\t\t</node>\r\n\t\t\t<node id=\"ID1221\" name=\"instance_15\">\r\n\t\t\t\t<matrix>-0.2391837984 0 0 -2.366056800203434 0 0.2391837984 0 0.942551212767317 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n\t\t\t\t<instance_node url=\"#ID780\" />\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node id=\"ID326\" name=\"wheel3\">\r\n\t\t\t<node id=\"ID327\" name=\"group_0\">\r\n\t\t\t\t<matrix>-0.9999576712051372 -0.009200858546759075 3.597306985714045e-008 -6.593666714136403 -0.00920085854675907 0.9999576712051379 3.309891276924002e-010 -10.27499661274406 3.597459254459032e-008 8.009926719458926e-015 0.9999999999999993 -3.583475360434295 0 0 0 1</matrix>\r\n\t\t\t\t<instance_geometry url=\"#ID775\">\r\n\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t\t<node id=\"ID328\" name=\"instance_12\">\r\n\t\t\t\t\t<matrix>0.7999999999999998 1.040834085586084e-017 1.929980390148138e-023 0.6785531540121249 -7.806255641895632e-018 0.8000000000000003 4.135903062765138e-025 1.538230777312308 1.172997038562746e-023 0 0.8000000000000006 1.538231618346253 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID329\" />\r\n\t\t\t\t</node>\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node id=\"ID329\" name=\"wheel_rb\">\r\n\t\t\t<instance_geometry url=\"#ID330\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID338\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID346\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID359\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID367\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID375\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID383\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID384\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID393\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID384\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID401\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID409\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID417\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID425\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID433\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID441\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID449\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID457\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID465\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID473\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID481\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID489\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID497\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID505\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID513\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID521\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID529\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID537\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID545\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID553\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID561\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID569\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID577\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID585\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID593\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID601\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID609\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID617\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID625\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID626\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID635\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID643\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID651\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID659\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID667\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID675\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID683\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID691\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID697\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID701\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID705\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID709\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID713\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID717\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID721\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID725\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID729\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID733\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID737\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID741\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID745\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID749\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID753\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID754\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID759\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID763\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID767\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID771\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node id=\"ID780\" name=\"wheel3\">\r\n\t\t\t<node id=\"ID781\" name=\"group_0\">\r\n\t\t\t\t<matrix>-0.9999576712051372 -0.009200858546759075 3.597306985714045e-008 -6.593666714136403 -0.00920085854675907 0.9999576712051379 3.309891276924002e-010 -10.27499661274406 3.597459254459032e-008 8.009926719458926e-015 0.9999999999999993 -3.583475360434295 0 0 0 1</matrix>\r\n\t\t\t\t<instance_geometry url=\"#ID1216\">\r\n\t\t\t\t\t<bind_material>\r\n\t\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t\t<node id=\"ID782\" name=\"instance_12\">\r\n\t\t\t\t\t<matrix>0.7999999999999998 1.040834085586084e-017 1.929980390148138e-023 0.6785531540121249 -7.806255641895632e-018 0.8000000000000003 4.135903062765138e-025 1.538230777312308 1.172997038562746e-023 0 0.8000000000000006 1.538231618346253 0 0 0 1</matrix>\r\n\t\t\t\t\t<instance_node url=\"#ID783\" />\r\n\t\t\t\t</node>\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node id=\"ID783\" name=\"wheel_rb\">\r\n\t\t\t<instance_geometry url=\"#ID784\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID792\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID800\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID808\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID816\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID824\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID832\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID384\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID840\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID384\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID848\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID145\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID856\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID864\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID872\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID880\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID888\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID896\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID904\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID912\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID920\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID928\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID936\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID944\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID952\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID960\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID968\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID976\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID984\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID992\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1000\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1008\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1016\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1024\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1032\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1040\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1048\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1056\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1064\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1072\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID626\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1080\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1088\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1096\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1104\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1112\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1120\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material3\" target=\"#ID347\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1128\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID7\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1136\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1140\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1144\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1148\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1152\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1156\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1160\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1164\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1168\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1172\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1176\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1180\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1184\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1188\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1192\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1196\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID754\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1200\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1204\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1208\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry url=\"#ID1212\">\r\n\t\t\t\t<bind_material>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<instance_material symbol=\"Material2\" target=\"#ID692\">\r\n\t\t\t\t\t\t\t<bind_vertex_input input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\" />\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t</library_nodes>\r\n\t<library_geometries>\r\n\t\t<geometry id=\"ID6\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID12\">\r\n\t\t\t\t\t<float_array count=\"1098\" id=\"ID16\">-0.3512492775917053 0.3640900552272797 0.4558710157871246 0.0003733329358510673 0.3764632046222687 0.4582751095294952 0.0003733329358510673 0.3664841055870056 0.4716075956821442 0.0003733329358510673 0.3664841055870056 0.4716075956821442 0.0003733329358510673 0.3764632046222687 0.4582751095294952 -0.3512492775917053 0.3640900552272797 0.4558710157871246 -0.3512492775917053 0.3444961309432983 0.4558710157871246 -0.3512492775917053 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3640900552272797 0.4558710157871246 0.3519960343837738 0.3640900552272797 0.4558710157871246 -0.3512492775917053 0.3748391568660736 0.4410378038883209 -0.3512492775917053 0.3748391568660736 0.4410378038883209 0.0003733329358510673 0.3465428054332733 0.4716075956821442 0.0003733329358510673 0.3465428054332733 0.4716075956821442 -0.5576297044754028 0.3417671024799347 0.4339523613452911 -0.5576297044754028 0.3417671024799347 0.4339523613452911 0.3519960343837738 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3748391568660736 0.4410378038883209 0.3519960343837738 0.3748391568660736 0.4410378038883209 -0.5576297044754028 0.3615391850471497 0.4339523613452911 -0.5576297044754028 0.3615391850471497 0.4339523613452911 0.0003733329358510673 0.3311522305011749 0.4595692157745361 0.0003733329358510673 0.3311522305011749 0.4595692157745361 -0.3512492775917053 0.3287160694599152 0.4410378038883209 -0.3512492775917053 0.3287160694599152 0.4410378038883209 0.5583760738372803 0.3417671024799347 0.4339523613452911 0.5583760738372803 0.3417671024799347 0.4339523613452911 0.5583760738372803 0.3615391850471497 0.4339523613452911 0.5583760738372803 0.3615391850471497 0.4339523613452911 -0.5604491829872131 0.3724029362201691 0.4215744733810425 -0.5604491829872131 0.3724029362201691 0.4215744733810425 -0.6428633332252502 0.3404026031494141 0.4038339257240295 -0.6428633332252502 0.3404026031494141 0.4038339257240295 -0.5604491829872131 0.3270919919013977 0.4215744733810425 -0.5604491829872131 0.3270919919013977 0.4215744733810425 0.3519960343837738 0.3287160694599152 0.4410378038883209 0.3519960343837738 0.3287160694599152 0.4410378038883209 0.5611954927444458 0.3724029362201691 0.4215744733810425 0.5611954927444458 0.3724029362201691 0.4215744733810425 -0.6428633332252502 0.3609992563724518 0.4038339257240295 -0.6428633332252502 0.3609992563724518 0.4038339257240295 0.5611954927444458 0.3270919919013977 0.4215744733810425 0.5611954927444458 0.3270919919013977 0.4215744733810425 0.6436101794242859 0.3404026031494141 0.4038339257240295 0.6436101794242859 0.3404026031494141 0.4038339257240295 0.6436101794242859 0.3609992563724518 0.4038339257240295 0.6436101794242859 0.3609992563724518 0.4038339257240295 -0.6441342830657959 0.3715909421443939 0.392346978187561 -0.6441342830657959 0.3715909421443939 0.392346978187561 -0.6848444938659668 0.3385834991931915 0.3807705938816071 -0.6848444938659668 0.3385834991931915 0.3807705938816071 -0.6441342830657959 0.3246558606624603 0.392346978187561 -0.6441342830657959 0.3246558606624603 0.392346978187561 0.6448808908462524 0.3715909421443939 0.392346978187561 0.6448808908462524 0.3715909421443939 0.392346978187561 -0.6848444938659668 0.3617342412471771 0.3807705938816071 -0.6848444938659668 0.3617342412471771 0.3807705938816071 0.6448808908462524 0.3246558606624603 0.392346978187561 0.6448808908462524 0.3246558606624603 0.392346978187561 0.685590922832489 0.3385834991931915 0.3807705938816071 0.685590922832489 0.3385834991931915 0.3807705938816071 0.685590922832489 0.3617342412471771 0.3807705938816071 0.685590922832489 0.3617342412471771 0.3807705938816071 -0.6924977898597717 0.3738462924957275 0.3587177395820618 -0.6924977898597717 0.3738462924957275 0.3587177395820618 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.6924977898597717 0.3230318427085877 0.3587177395820618 -0.6924977898597717 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3738462924957275 0.3587177395820618 0.693244218826294 0.3738462924957275 0.3587177395820618 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 0.693244218826294 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3230318427085877 0.3587177395820618 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.381706178188324 0.3493618071079254 -0.7020096182823181 0.381706178188324 0.3493618071079254 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7255671620368958 0.3380583226680756 0.3681576550006867 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.381706178188324 0.3493618071079254 0.7027556896209717 0.381706178188324 0.3493618071079254 -0.7146109938621521 0.3731479644775391 0.3700889348983765 -0.7146109938621521 0.3731479644775391 0.3700889348983765 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7255671620368958 0.3380583226680756 0.3681576550006867 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7153576016426086 0.3731479644775391 0.3700889348983765 0.7153576016426086 0.3731479644775391 0.3700889348983765 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7264339923858643 0.3679208159446716 0.3674047589302063 -0.7264339923858643 0.3679208159446716 0.3674047589302063 -0.7177720069885254 0.3258920609951019 0.4299785196781158 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.6979426145553589 0.3512220680713654 0.42958864569664 0.6979426145553589 0.3512220680713654 0.42958864569664 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.6979426145553589 0.3512220680713654 0.42958864569664 0.6979426145553589 0.3512220680713654 0.42958864569664 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7159313559532166 0.3825618922710419 0.3357574045658112 -0.7172813415527344 0.3512220680713654 0.42958864569664 -0.7172813415527344 0.3512220680713654 0.42958864569664 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.693244218826294 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3230318427085877 0.3587177395820618 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7271807193756104 0.3679208159446716 0.3674047589302063 0.7271807193756104 0.3679208159446716 0.3674047589302063 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.7180280089378357 0.3512220680713654 0.42958864569664 0.7180280089378357 0.3512220680713654 0.42958864569664 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6917747259140015 0.2917623221874237 0.5514896512031555 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6788990497589111 0.277787446975708 0.5516139268875122 0.679326593875885 0.2916669249534607 0.551818311214447 0.679326593875885 0.2916669249534607 0.551818311214447 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.679326593875885 0.2916669249534607 0.551818311214447 0.679326593875885 0.2916669249534607 0.551818311214447 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6692409515380859 0.2158858478069305 0.6860935091972351 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6695502996444702 0.2332195788621903 0.6872068643569946 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6723158359527588 0.2332195788621903 0.692791759967804 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.6218504309654236 0.2261438220739365 0.7275896668434143 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.4369176328182221 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.623400092124939 0.2261438220739365 0.7318599224090576 0.623400092124939 0.2261438220739365 0.7318599224090576 0.4386698305606842 0.2250510305166245 0.728861391544342 0.4386698305606842 0.2250510305166245 0.728861391544342 0.623400092124939 0.2261438220739365 0.7318599224090576 0.623400092124939 0.2261438220739365 0.7318599224090576 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.4379231929779053 0.2172611206769943 0.749642550945282 0.437664121389389 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4386698305606842 0.2250510305166245 0.728861391544342 0.4386698305606842 0.2250510305166245 0.728861391544342 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.1970987468957901 0.1926998645067215 0.7719690799713135 0.4386698305606842 0.2172611206769943 0.749642550945282 0.4386698305606842 0.2172611206769943 0.749642550945282 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.4386698305606842 0.2172611206769943 0.749642550945282 0.4386698305606842 0.2172611206769943 0.749642550945282 -0.1976823061704636 0.2099207788705826 0.7732192873954773 -0.1976823061704636 0.2099207788705826 0.7732192873954773 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.0003733063931576908 0.1899106204509735 0.7792853713035584 -0.1976823061704636 0.2099207788705826 0.7732192873954773 -0.1976823061704636 0.2099207788705826 0.7732192873954773 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"366\" source=\"#ID16\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID13\">\r\n\t\t\t\t\t<float_array count=\"1098\" id=\"ID17\">-0.071125187092009 0.4507200585843386 0.8898273071505825 -4.263967884275383e-009 0.8008832375061619 0.5988205406310382 -5.504344485312176e-009 0.444157913898005 0.8959485183434214 5.504344485312176e-009 -0.444157913898005 -0.8959485183434214 4.263967884275383e-009 -0.8008832375061619 -0.5988205406310382 0.071125187092009 -0.4507200585843386 -0.8898273071505825 -0.06762980948302125 -0.3639052502035215 0.9289774904396784 0.06762980948302125 0.3639052502035215 -0.9289774904396784 0.07112527238031438 0.4507200476058207 0.8898273058942577 -0.07112527238031438 -0.4507200476058207 -0.8898273058942577 -0.05295591724079173 0.8070734904910732 0.588071468255128 0.05295591724079173 -0.8070734904910732 -0.588071468255128 -5.194259043014777e-009 -0.3219438234562064 0.9467587731510065 5.194259043014777e-009 0.3219438234562064 -0.9467587731510065 -0.1952435862872257 -0.3225981683293698 0.9261805244142408 0.1952435862872257 0.3225981683293698 -0.9261805244142408 0.0676298903270364 -0.3639052384125159 0.92897748917306 -0.0676298903270364 0.3639052384125159 -0.92897748917306 0.05295598363639042 0.8070734879396393 0.5880714657777973 -0.05295598363639042 -0.8070734879396393 -0.5880714657777973 -0.1964190692480931 0.3872593094726631 0.9008050712903812 0.1964190692480931 -0.3872593094726631 -0.9008050712903812 -4.206846264984871e-009 -0.6188292458269113 0.7855255339639164 4.206846264984871e-009 0.6188292458269113 -0.7855255339639164 -0.05146910879328837 -0.682661196124296 0.728920175428126 0.05146910879328837 0.682661196124296 -0.728920175428126 0.1952430020004395 -0.3225984771781914 0.926180540009435 -0.1952430020004395 0.3225984771781914 -0.926180540009435 0.1964185076893298 0.3872596420709859 0.9008050507519085 -0.1964185076893298 -0.3872596420709859 -0.9008050507519085 -0.1731628035249205 0.720259607377219 0.6717445507454481 0.1731628035249205 -0.720259607377219 -0.6717445507454481 -0.3781976423062447 -0.2788958561989671 0.8827137954903859 0.3781976423062447 0.2788958561989671 -0.8827137954903859 -0.1812838656160409 -0.611012699337296 0.7705839612370974 0.1812838656160409 0.611012699337296 -0.7705839612370974 0.05146917124753067 -0.6826611952120336 0.7289201718725927 -0.05146917124753067 0.6826611952120336 -0.7289201718725927 0.1731617213854804 0.7202604007202256 0.6717439790583591 -0.1731617213854804 -0.7202604007202256 -0.6717439790583591 -0.3735418711200219 0.3628600994103804 0.8536972641258971 0.3735418711200219 -0.3628600994103804 -0.8536972641258971 0.181282778263941 -0.6110135191637968 0.7705835669828285 -0.181282778263941 0.6110135191637968 -0.7705835669828285 0.3781986476610136 -0.2788973044064862 0.8827129071800052 -0.3781986476610136 0.2788973044064862 -0.8827129071800052 0.3735427701649122 0.3628616634215295 0.8536962059635056 -0.3735427701649122 -0.3628616634215295 -0.8536962059635056 -0.3084756592757642 0.6952683570081935 0.6491877073524343 0.3084756592757642 -0.6952683570081935 -0.6491877073524343 -0.4842349374434831 -0.3512828890327633 0.8013219435607023 0.4842349374434831 0.3512828890327633 -0.8013219435607023 -0.3447848531328449 -0.5593445309787422 0.7538282965731213 0.3447848531328449 0.5593445309787422 -0.7538282965731213 0.3084753303407854 0.6952712068050755 0.6491848115590485 -0.3084753303407854 -0.6952712068050755 -0.6491848115590485 -0.4498228601286283 0.3998238053715448 0.7986240161452179 0.4498228601286283 -0.3998238053715448 -0.7986240161452179 0.3447848974915967 -0.55934731735585 0.7538262087699811 -0.3447848974915967 0.55934731735585 -0.7538262087699811 0.4842345611858018 -0.3512835657741214 0.8013218742616555 -0.4842345611858018 0.3512835657741214 -0.8013218742616555 0.4498247367326896 0.3998245059083885 0.7986226084318424 -0.4498247367326896 -0.3998245059083885 -0.7986226084318424 0.1390934429420212 0.8757229171530553 0.4623444457365932 -0.1390934429420212 -0.8757229171530553 -0.4623444457365932 -0.2805014547971665 -0.4481261184840369 0.8488238426134741 0.2805014547971665 0.4481261184840369 -0.8488238426134741 -0.3373790400527729 -0.7856801756880902 0.5185383735692095 0.3373790400527729 0.7856801756880902 -0.5185383735692095 -0.1391012332027621 0.8757221718317327 0.4623435137252217 0.1391012332027621 -0.8757221718317327 -0.4623435137252217 0.1832509294236752 0.8986260316191347 0.3986105269079149 -0.1832509294236752 -0.8986260316191347 -0.3986105269079149 -0.5800566743481957 0.05070925503692379 0.8129962029417551 0.5800566743481957 -0.05070925503692379 -0.8129962029417551 0.3525503091742624 -0.7876181241922912 0.505337481238972 -0.3525503091742624 0.7876181241922912 -0.505337481238972 0.2804983942557796 -0.44812624773872 0.8488247857523628 -0.2804983942557796 0.44812624773872 -0.8488247857523628 -0.1832512338339642 0.898626112386407 0.3986102048814386 0.1832512338339642 -0.898626112386407 -0.3986102048814386 -0.05990506789815193 0.9413055895298192 0.3321974863842852 0.05990506789815193 -0.9413055895298192 -0.3321974863842852 0.9918683419023885 -0.08671032838144153 -0.09315852770299216 0.9759562146826556 -0.1138931241787893 -0.1858435451854526 0.9904882410233603 -0.09514272493502067 -0.09940274788147702 -0.9904882410233603 0.09514272493502067 0.09940274788147702 -0.9759562146826556 0.1138931241787893 0.1858435451854526 -0.9918683419023885 0.08671032838144153 0.09315852770299216 -0.3004923551871483 -0.8848925945410495 0.3559065054203003 0.3004923551871483 0.8848925945410495 -0.3559065054203003 0.5800601094850288 0.05071953851926407 0.8129931105468295 -0.5800601094850288 -0.05071953851926407 -0.8129931105468295 0.03941810041296814 0.9385169908126403 0.3429753217300331 -0.03941810041296814 -0.9385169908126403 -0.3429753217300331 -0.1948504716201211 0.9292746675562946 0.31381823711753 0.1948504716201211 -0.9292746675562946 -0.31381823711753 0.980004878619731 -0.1148416960155928 -0.1624863770837066 -0.980004878619731 0.1148416960155928 0.1624863770837066 0.01808784460961578 -0.9585720035182385 -0.284275471942988 -0.01450490163885446 -0.9818714578108111 -0.1889921907511515 0.01390591190561859 -0.9622823983029412 -0.2716969111536106 -0.01390591190561859 0.9622823983029412 0.2716969111536106 0.01450490163885446 0.9818714578108111 0.1889921907511515 -0.01808784460961578 0.9585720035182385 0.284275471942988 -0.3340438595180452 -0.93522254807589 0.1173604937307616 0.3340438595180452 0.93522254807589 -0.1173604937307616 -0.02177368027010158 -0.981464076286009 -0.1904052882867142 0.02177368027010158 0.981464076286009 0.1904052882867142 0.3098855746507412 -0.8907823498961794 0.3323819124694065 -0.3098855746507412 0.8907823498961794 -0.3323819124694065 -0.9779787607639027 -0.1141885828737194 -0.1746954808688327 -0.9918664072211452 -0.08672722985843478 -0.09316339317188697 -0.9904870505903934 -0.09515421425005848 -0.09940361222409007 0.9904870505903934 0.09515421425005848 0.09940361222409007 0.9918664072211452 0.08672722985843478 0.09316339317188697 0.9779787607639027 0.1141885828737194 0.1746954808688327 0.1912503182808568 0.9273764772990287 0.321552771889646 -0.1912503182808568 -0.9273764772990287 -0.321552771889646 -0.3811288433792529 0.8957550736264501 0.2288310573695485 0.3811288433792529 -0.8957550736264501 -0.2288310573695485 0.007248706169782307 0.9191592767960465 0.3938193496244603 -0.007248706169782307 -0.9191592767960465 -0.3938193496244603 0.9853759184996108 0.02508948516799318 -0.1685372866016697 -0.9853759184996108 -0.02508948516799318 0.1685372866016697 0.01723171841286865 -0.919196357530028 -0.3934223229356319 -0.01723171841286865 0.919196357530028 0.3934223229356319 0.1845544456475155 -0.9017691296340797 -0.3908351230771521 -0.1845544456475155 0.9017691296340797 0.3908351230771521 -0.9908221950411159 -0.0198614659408184 0.1337045249218829 -0.9872800348044978 0.000627502331247067 0.158989745321055 -0.9882708773498506 -0.008080873138596571 0.1524971228301519 0.9882708773498506 0.008080873138596571 -0.1524971228301519 0.9872800348044978 -0.000627502331247067 -0.158989745321055 0.9908221950411159 0.0198614659408184 -0.1337045249218829 -0.9826945450324243 0.01630357907460154 0.1845145643922866 -0.8325865012073505 0.5049181106934321 0.2277222419990581 0.8325865012073505 -0.5049181106934321 -0.2277222419990581 0.9826945450324243 -0.01630357907460154 -0.1845145643922866 0.3862723911918118 -0.9163355120307432 0.1054650140772564 -0.3862723911918118 0.9163355120307432 -0.1054650140772564 0.02177412265120054 -0.9814640654872793 -0.1904052933611679 0.01450529868995076 -0.9818714473737441 -0.1889922145012973 -0.013916141499668 -0.9621402750830043 -0.2721992506767098 0.013916141499668 0.9621402750830043 0.2721992506767098 -0.01450529868995076 0.9818714473737441 0.1889922145012973 -0.02177412265120054 0.9814640654872793 0.1904052933611679 -0.9812022224608331 -0.1149914710388205 -0.1549811608752812 0.9812022224608331 0.1149914710388205 0.1549811608752812 -0.01811265111712815 -0.9587713810518664 -0.2836007241623442 0.01811265111712815 0.9587713810518664 0.2836007241623442 -0.007290548039703533 0.9192696015801237 0.3935609832287768 0.007290548039703533 -0.9192696015801237 -0.3935609832287768 0.5044979341430722 0.8431073902036704 0.1861498402613552 -0.5044979341430722 -0.8431073902036704 -0.1861498402613552 -0.6634249520533542 0.6453035303078039 0.3787488439128096 0.6634249520533542 -0.6453035303078039 -0.3787488439128096 0.9866206869680558 0.03480237759473551 -0.1592746513430026 -0.9866206869680558 -0.03480237759473551 0.1592746513430026 0.016290647704942 -0.9171381502189657 -0.3982363973951743 -0.016290647704942 0.9171381502189657 0.3982363973951743 -0.9798578929557653 0.033049689096777 0.1969421937089524 0.9798578929557653 -0.033049689096777 -0.1969421937089524 0.6687046635203147 -0.003313254786347099 -0.7435207430387558 0.6691533453686369 -0.003650025003637705 -0.7431153865312135 0.6695577595913523 -0.003953773836092823 -0.7427494693659914 -0.6695577595913523 0.003953773836092823 0.7427494693659914 -0.6691533453686369 0.003650025003637705 0.7431153865312135 -0.6687046635203147 0.003313254786347099 0.7435207430387558 0.6682020981908339 -0.002936324147361365 -0.7439740143135841 -0.6682020981908339 0.002936324147361365 0.7439740143135841 -0.109182585023408 0.9846313083799815 0.1363097563842444 -0.109182585023408 0.9846313083799815 0.1363097563842444 -0.109182585023408 0.9846313083799815 0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.9998363974575332 7.141383765963521e-005 0.01808793020788936 0.9976328688181551 -0.02100972016673701 0.06547710067018192 0.9597396774909109 0.2745786746262134 0.0592140430147635 -0.9597396774909109 -0.2745786746262134 -0.0592140430147635 -0.9976328688181551 0.02100972016673701 -0.06547710067018192 -0.9998363974575332 -7.141383765963521e-005 -0.01808793020788936 0.9848361978242306 0.01615844898842442 0.1727326488577111 0.856672094315397 0.4840166217746973 0.178439997385904 -0.856672094315397 -0.4840166217746973 -0.178439997385904 -0.9848361978242306 -0.01615844898842442 -0.1727326488577111 -0.98696211613235 0.02493391055134607 -0.1590096897178627 0.98696211613235 -0.02493391055134607 0.1590096897178627 -0.01729793627663625 -0.9218896674301311 -0.3870661732651561 0.01729793627663625 0.9218896674301311 0.3870661732651561 0.6630244607310728 0.6479169333248619 0.3749696147465508 -0.6630244607310728 -0.6479169333248619 -0.3749696147465508 -0.4291444056645902 0.8755119012486158 0.2220675344547685 0.4291444056645902 -0.8755119012486158 -0.2220675344547685 -0.002972792712082139 0.9099971813227669 0.4146037777060294 0.002972792712082139 -0.9099971813227669 -0.4146037777060294 0.8775711867427927 0.09931257888195555 -0.4690477842125063 -0.8775711867427927 -0.09931257888195555 0.4690477842125063 0.07264632224497998 -0.9370277162915097 -0.3416161160803113 -0.07264632224497998 0.9370277162915097 0.3416161160803113 -0.9780693798260903 0.03167860608980022 0.2058561491984491 0.9780693798260903 -0.03167860608980022 -0.2058561491984491 -0.8588543264598119 -0.002726306327623486 -0.5122126640127819 -0.8586600694715521 -0.002560320177594947 -0.5125391008066581 -0.8582920509860762 -0.00224620446095228 -0.513156613305952 0.8582920509860762 0.00224620446095228 0.513156613305952 0.8586600694715521 0.002560320177594947 0.5125391008066581 0.8588543264598119 0.002726306327623486 0.5122126640127819 -0.8580357563130109 -0.002027713692026421 -0.513585951195652 0.8580357563130109 0.002027713692026421 0.513585951195652 -0.01688581023481479 -0.9205500229754365 -0.3902595605653204 0.01688581023481479 0.9205500229754365 0.3902595605653204 -0.988737448764744 0.03460807652772169 -0.1456040468161406 0.988737448764744 -0.03460807652772169 0.1456040468161406 0.9817236992713015 0.03298316703888651 0.1874318248888274 -0.9817236992713015 -0.03298316703888651 -0.1874318248888274 0.002785596797246988 0.9135642906878028 0.4066848008354569 -0.002785596797246988 -0.9135642906878028 -0.4066848008354569 -0.003715581427239436 0.9075670778700513 0.4198906924677824 0.003715581427239436 -0.9075670778700513 -0.4198906924677824 0.9185793612217119 0.09230724313175556 -0.3843062971158896 -0.9185793612217119 -0.09230724313175556 0.3843062971158896 0.04949783681109286 -0.9339419638453096 -0.3539807513407877 -0.04949783681109286 0.9339419638453096 0.3539807513407877 -0.8448040745229659 -0.04735681112537662 0.5329759920572695 0.8448040745229659 0.04735681112537662 -0.5329759920572695 -0.07206498059894695 -0.9376465112780928 -0.3400377309348109 0.07206498059894695 0.9376465112780928 0.3400377309348109 -0.8675974172743418 0.0996611272755185 -0.4871779769746009 0.8675974172743418 -0.0996611272755185 0.4871779769746009 0.980870754914267 0.03167188993408591 0.1920662738273411 -0.980870754914267 -0.03167188993408591 -0.1920662738273411 0.003995682630986656 0.9105358541074029 0.4134108040499359 -0.003995682630986656 -0.9105358541074029 -0.4134108040499359 -0.06377025308336654 0.9361062702478691 0.3458878512239293 0.06377025308336654 -0.9361062702478691 -0.3458878512239293 0.4323102883021924 0.0530645150617952 -0.9001621919794964 -0.4323102883021924 -0.0530645150617952 0.9001621919794964 0.09068971629220776 -0.9398373191312726 -0.3293648264872576 -0.09068971629220776 0.9398373191312726 0.3293648264872576 -0.89587439590845 -0.04364692810303722 0.4421583567262277 0.89587439590845 0.04364692810303722 -0.4421583567262277 -0.05394774551138133 -0.9356041443768313 -0.3489047517290886 0.05394774551138133 0.9356041443768313 0.3489047517290886 0.8373436273772882 -0.04802482564338885 0.5445633717140435 -0.8373436273772882 0.04802482564338885 -0.5445633717140435 -0.9121098089249937 0.09277933971432061 -0.3993090164083277 0.9121098089249937 -0.09277933971432061 0.3993090164083277 0.06730152409430609 0.9373980523815594 0.341694887649556 -0.06730152409430609 -0.9373980523815594 -0.341694887649556 -0.08738201937403496 0.9375900260780157 0.3365847971747116 0.08738201937403496 -0.9375900260780157 -0.3365847971747116 0.4568272935323279 0.04401882866045551 -0.8884656248878117 -0.4568272935323279 -0.04401882866045551 0.8884656248878117 0.05151497838900335 -0.9395351067219221 -0.3385557417008417 -0.05151497838900335 0.9395351067219221 0.3385557417008417 -0.394969106281068 -0.06359206783930438 0.9164908368289645 0.394969106281068 0.06359206783930438 -0.9164908368289645 -0.07952270090936106 -0.9403691550093645 -0.330729485149199 0.07952270090936106 0.9403691550093645 0.330729485149199 0.8903356679666751 -0.0442926671645055 0.4531451842200123 -0.8903356679666751 0.0442926671645055 -0.4531451842200123 -0.4042455124259617 0.0532011627306395 -0.9131019669059858 0.4042455124259617 -0.0532011627306395 0.9131019669059858 0.08651024889737816 0.9378939396687426 0.3359626984776119 -0.08651024889737816 -0.9378939396687426 -0.3359626984776119 -0.0970566982023139 0.931924377921838 0.3494237415646799 0.0970566982023139 -0.931924377921838 -0.3494237415646799 0.1071191013945236 0.07343949725049899 -0.9915302004276136 -0.1071191013945236 -0.07343949725049899 0.9915302004276136 -0.002326866966603946 -0.9452538076808833 -0.3263277872859 0.002326866966603946 0.9452538076808833 0.3263277872859 -0.4120552709137233 -0.06211659127437492 0.9090390436063076 0.4120552709137233 0.06211659127437492 -0.9090390436063076 -0.04353053250813483 -0.9398686495221501 -0.3387506669882254 0.04353053250813483 0.9398686495221501 0.3387506669882254 0.370955215819271 -0.0642954861431061 0.9264223217939536 -0.370955215819271 0.0642954861431061 -0.9264223217939536 -0.4290446271268197 0.04442644661450344 -0.9021901123237922 0.4290446271268197 -0.04442644661450344 0.9021901123237922 0.08511499803969619 0.9325962146665485 0.3507416962642554 -0.08511499803969619 -0.9325962146665485 -0.3507416962642554 -0.05399603319120466 0.9317823507949836 0.35897921826561 0.05399603319120466 -0.9317823507949836 -0.35897921826561 0.001546450211013052 0.9362515579885762 0.3513269540694375 -0.001546450211013052 -0.9362515579885762 -0.3513269540694375 0.1062957171113633 0.07402617534980542 -0.9915751841826522 -0.1062957171113633 -0.07402617534980542 0.9915751841826522 -0.002747462488095163 -0.9454117597753844 -0.3258666229123312 0.002747462488095163 0.9454117597753844 0.3258666229123312 -0.1095480449216852 -0.06437227185794837 0.9918948716823186 0.1095480449216852 0.06437227185794837 -0.9918948716823186 0.005833135918347435 -0.9452465444315101 -0.3263049873441214 -0.005833135918347435 0.9452465444315101 0.3263049873441214 0.3885602999908704 -0.06284595774554791 0.9192775853168886 -0.3885602999908704 0.06284595774554791 -0.9192775853168886 -0.09492198545918304 0.07293069024446487 -0.9928096147282984 0.09492198545918304 -0.07293069024446487 0.9928096147282984 0.04552759092394652 0.9321757341004116 0.3591317853087088 -0.04552759092394652 -0.9321757341004116 -0.3591317853087088 0.001320964449476984 0.9369949929397182 0.3493402900594502 -0.001320964449476984 -0.9369949929397182 -0.3493402900594502 0.06781079953703786 0.06339096066314931 -0.9956823196041751 -0.06781079953703786 -0.06339096066314931 0.9956823196041751 -0.0009121108150353565 -0.9452731957874374 -0.3262786437688901 0.0009121108150353565 0.9452731957874374 0.3262786437688901 -0.1109486858899821 -0.0646082375357192 0.9917238349166637 0.1109486858899821 0.0646082375357192 -0.9917238349166637 0.09862599401148636 -0.06381484593375146 0.9930763207043544 -0.09862599401148636 0.06381484593375146 -0.9930763207043544 0.006731919778519307 -0.9454016983288083 -0.3258378585325845 -0.006731919778519307 0.9454016983288083 0.3258378585325845 -0.09533962166136091 0.07354105201997502 -0.9927245691576611 0.09533962166136091 -0.07354105201997502 0.9927245691576611 -0.00585674817653786 0.9362360349332584 0.3513229075839591 0.00585674817653786 -0.9362360349332584 -0.3513229075839591 0.001063618126260402 0.9555103601597252 0.2949556243639264 -0.001063618126260402 -0.9555103601597252 -0.2949556243639264 0.06676637174755735 0.06297665332872211 -0.9957791887457687 -0.06676637174755735 -0.06297665332872211 0.9957791887457687 -0.0007808558058856688 -0.945066558494442 -0.3268770262341513 0.0007808558058856688 0.945066558494442 0.3268770262341513 -0.06778356439968603 -0.07427319914588644 0.9949315957822976 0.06778356439968603 0.07427319914588644 -0.9949315957822976 0.09863785519546375 -0.06393136056138422 0.9930676485815096 -0.09863785519546375 0.06393136056138422 -0.9930676485815096 0.0009121098624746426 -0.945273195049111 -0.3262786459105843 -0.0009121098624746426 0.945273195049111 0.3262786459105843 -0.06781082967194811 0.06339112364419754 -0.9956823071755007 0.06781082967194811 -0.06339112364419754 0.9956823071755007 -0.005113872727019609 0.936979243186678 0.3493476007403689 0.005113872727019609 -0.936979243186678 -0.3493476007403689 0.0011066045999455 0.9561138177226354 0.2929934179910984 -0.0011066045999455 -0.9561138177226354 -0.2929934179910984 -6.527460857175112e-010 0.06909947499341243 -0.9976097746892993 6.527460857175112e-010 -0.06909947499341243 0.9976097746892993 -1.347770541733307e-010 -0.9398412832334818 -0.341611420081417 1.347770541733307e-010 0.9398412832334818 0.341611420081417 -0.06984418121300744 -0.07471473347307646 0.9947559997068285 0.06984418121300744 0.07471473347307646 -0.9947559997068285 0.06778358821749267 -0.07427310619908654 0.9949316010982366 -0.06778358821749267 0.07427310619908654 -0.9949316010982366 0.0007808560536009646 -0.9450665577020792 -0.326877028524438 -0.0007808560536009646 0.9450665577020792 0.326877028524438 -0.06676629092695928 0.06297683347455915 -0.9957791827716497 0.06676629092695928 -0.06297683347455915 0.9957791827716497 -0.001063617863931956 0.9555103604376601 0.2949556234645008 0.001063617863931956 -0.9555103604376601 -0.2949556234645008 -5.947595930751025e-011 0.9582811076798368 0.2858274281168708 5.947595930751025e-011 -0.9582811076798368 -0.2858274281168708 -1.765349996060053e-010 -0.9394117153834616 -0.3427909406625296 1.765349996060053e-010 0.9394117153834616 0.3427909406625296 -4.496929153027535e-010 0.069446775553659 -0.9975856581593381 4.496929153027535e-010 -0.069446775553659 0.9975856581593381 1.754160081432712e-009 -0.07807047071678244 0.9969478429697614 -1.754160081432712e-009 0.07807047071678244 -0.9969478429697614 0.0698441349091514 -0.07471461379667607 0.9947560119466511 -0.0698441349091514 0.07471461379667607 -0.9947560119466511 -0.001106604917078725 0.9561138179412515 0.2929934172764991 0.001106604917078725 -0.9561138179412515 -0.2929934172764991 -5.696815383325837e-011 0.9584455434264317 0.2852755515041763 5.696815383325837e-011 -0.9584455434264317 -0.2852755515041763 1.940881415368471e-009 -0.07832859275901773 0.9969275959448569 -1.940881415368471e-009 0.07832859275901773 -0.9969275959448569</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"366\" source=\"#ID17\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID15\">\r\n\t\t\t\t\t<float_array count=\"1150\" id=\"ID18\">3.363011324314395 1.091241105173762 -0.1553451444614712 1.114857243519861 -0.1513262137275674 1.245826278515947 -3.444961309432992 -2.600061641399552 -3.640900552272805 -2.600061641399551 -3.664841055870056 0.1688050011259317 0.1478845043465195 1.114715565585078 -3.370472873082449 1.091099427235427 0.1438655746501197 1.245684600600866 3.363625686805526 1.161250500904157 3.35931410957973 1.017184906139791 -0.1547336583624773 1.184599941148575 -3.465428054332733 0.1688050011259248 -3.444961309432983 -2.600061641399559 -3.664841055870056 0.1688050011259248 -3.444961309432983 -2.368966857590021 -3.417671024799347 -4.001623507588316 -3.640900552272796 -2.368966857590021 3.444961309432983 -2.605930296681317 3.664841055870056 0.1629370603691651 3.640900552272797 -2.605930296681317 -3.366775708089421 1.017046728066655 -3.37108728420215 1.161112322851636 0.1472729696182163 1.184461763099396 5.232526333403246 0.8816716290727438 3.165073438187141 0.9504132468772458 3.17463679401719 1.09432225142684 3.465428054332733 0.1629370603691713 3.664841055870056 0.1629370603691717 3.444961309432992 -2.605930296681311 -0.1662453203201013 4.277515370301163 -3.68468566869181 4.230333896089076 -0.174144990518452 4.431100496335322 -3.615391850471496 -4.001623507588316 -3.821454854119473 4.053629022659217 -5.888020909411589 3.972460822033052 -3.8371194779215 4.223552794113253 3.444961309432983 -2.374807730589978 3.640900552272797 -2.374807730589978 3.417671024799347 -4.007461349848854 -3.172510719572426 0.9501071519867526 -5.239959747342773 0.881365534532131 -3.18207409321333 1.094016155803878 5.208064585780865 0.3770924323198692 5.225823365227359 0.2463947041263298 3.140952443675589 0.4519073964150835 0.1737020930346429 4.277278018298897 0.1816017611957285 4.430863144397903 3.6921433500374 4.230096544066889 -3.669590958958236 4.159879707953389 -3.67733568214817 4.33014074777308 -0.1587979356318518 4.372590041939007 -3.417671024799347 -2.998679591619311 -3.404026031494141 -3.709814581504416 -3.615391850471497 -2.998679591619311 -5.914787297700372 3.734759990333489 -5.90203603357741 3.887075903499135 -3.83586637216516 3.974265709566328 3.828886079136073 4.053204712999882 3.844550732054981 4.223128482792832 5.895448265354315 3.972036513167178 3.615391850471497 -4.007461349848854 -5.233252095411015 0.2460237755530919 -5.21549392738442 0.3767214755863982 -3.148385652438477 0.4515364235619232 4.903843566619047 -0.5478823292112369 4.087453864717281 -0.3597486232310047 4.09614884437698 -0.2284844717547298 3.677049488222819 4.159669778718533 0.1662555542926239 4.372380112774407 3.684794209414996 4.32993081859446 -3.404026031494141 -3.709814581504415 -3.609992563724518 -3.709814581504415 -3.615391850471497 -2.99867959161931 -6.446086437282949 2.59450650613355 -7.254357430308779 2.378929468700127 -6.479162616098119 2.74491834620776 3.843293815772286 3.973794870688992 5.909459608730573 3.886605085336919 5.922210253430289 3.734289208359481 3.417671024799347 -3.004223796660122 3.615391850471497 -3.004223796660122 3.404026031494141 -3.71536232334646 -4.094523750266317 -0.3610205477337822 -4.910918916159961 -0.5491541230999865 -4.10321902030303 -0.2297564873891819 4.899423414798795 -0.5607994889403913 4.876887840851143 -0.6828394993164713 4.083162689502553 -0.3723197720037885 -3.404026031494141 -2.90273125672229 -3.385834991931915 -3.279538441558008 -3.609992563724518 -2.90273125672229 -7.210147450728702 2.023822809671743 -7.265351044455665 2.1712154290896 -6.46243976460627 2.39884994911966 6.452919864954517 2.592722858712204 6.485996164623874 2.743134613197453 7.261196380597501 2.377145943948744 3.609992563724518 -3.71536232334646 -4.883965008323234 -0.6841003794997391 -4.906502474509111 -0.5620607390081219 -4.090236119856233 -0.3735815933244923 4.403677843243818 -1.026441190329094 3.997071167592487 -0.9057965266926231 4.03471507245138 -0.7860839389691612 -3.385834991931914 -3.279538441558009 -3.61734241247177 -3.279538441558009 -3.609992563724517 -2.90273125672229 -7.096346584687105 1.244142846791853 -7.505107656952137 1.104643774466029 -7.18114537945805 1.382564177912367 6.469197397685358 2.396908097022826 7.272114523214139 2.169274317877348 7.21690940863351 2.021882178179872 3.40402603149414 -2.907858650929879 3.609992563724517 -2.907858650929879 3.385834991931914 -3.284662959066703 -4.003697306288606 -0.9075436612659009 -4.410302460156304 -1.028187764826076 -4.04134326209841 -0.7878316292916993 4.80194303154706 -0.06451616791528596 4.82298860351823 -0.2707329905389797 4.389737888171332 0.04373490727972126 -3.385834991931916 -2.926414100524648 -3.37659627199173 -3.11493511735112 -3.617342412471772 -2.926414100524648 -7.598894664383375 1.83150963898636 -7.613542486464217 2.051861945039554 -7.192935074670702 2.167533274606519 7.102304068018194 1.241478919057735 7.187104664978349 1.379899431477534 7.51106381440397 1.101980671806985 3.609992563724517 -2.907858650929878 3.61734241247177 -3.284662959066703 -4.829804761306388 -0.2720205152737582 -4.808759444673219 -0.06580367652390529 -4.396556070892201 0.04244740713633755 7.753569650717056 2.101478480347231 7.665921350776067 2.022913398972865 7.560145750653939 2.212321811953085 -2.749756741017578 -2.995041979031922 -3.097402950109877 -2.995041979031922 -3.007173842046506 -2.820683849110998 -7.634176840463143 2.057940251353917 -7.812935549860432 2.149456661263454 -7.638073995685398 2.27857233954607 7.619935867675237 2.049986764597122 7.605287673675827 1.82963447384389 7.199330183036197 2.165658086132554 3.385834991931914 -2.931390908339032 3.61734241247177 -2.931390908339032 3.376596271991729 -3.119913505532187 -7.673133942537746 2.023559513672274 -7.760778505345099 2.102124495667099 -7.567357649153838 2.2129676870636 7.857324712467795 1.975956969339328 7.742533688840616 2.05771596092277 7.828155208389795 2.137652171269155 2.749756741017579 2.345015600238243 2.641411517930605 2.831962270825535 3.097402950109877 2.345015600238243 -7.24401352842452 3.805631189619558 -7.038729180681206 3.801281165128669 -6.913838049817935 3.665275214523943 7.819560736063652 2.147804905442341 7.640800358253213 2.056288490652131 7.644696436889007 2.276920590610841 3.006401748700101 -2.825442076668657 3.096628090548786 -2.999798913666478 2.748981362314569 -2.999798913666477 -7.749646201003721 2.058540805548088 -7.864434325683387 1.976781869931928 -7.835263830146105 2.138476961174959 7.529002737015872 1.51002548539833 7.514338012453531 1.672932830928272 7.640146586551808 1.692512138772697 2.392642648721047 2.673959912250578 2.643074891691783 2.674694627417805 2.846405821837372 2.185726809895583 -6.929479702051268 2.833735851230139 -6.975013846286685 2.340685757225951 -7.104899002091787 2.837596829670674 -7.631157006578849 2.835462057561212 -8.04951721951365 2.504886153103752 -7.994073785055845 2.910671915849256 -7.12352902858604 2.358711998373981 -7.328866212847088 2.361056434433184 -7.248235429212962 2.856443391906117 6.921302059429526 3.665292614646768 7.046195563824993 3.801298576766062 7.251475738927507 3.805648601625234 -2.640637228004281 2.831384584102829 -2.748981362314569 2.34443769086393 -3.096628090548786 2.34443769086393 -7.521690731583161 1.673324681034132 -7.53635484704045 1.510417301573095 -7.647504677822431 1.692903992956625 5.998012096748293 1.506793739965519 5.893806799275831 1.617504467530705 6.036726345161062 1.785746620089322 7.55767871259555 2.076052129409543 7.431586630695063 2.057635994534083 7.357404331345999 2.568780976099774 2.396168678405192 1.886606019114077 1.94364443756023 2.876446011354756 2.646600839669345 1.887357771677554 -6.949694831687917 2.14685190845241 -7.12510570764405 2.150942886529585 -6.877438122051456 3.182308673505118 -6.325785041756646 1.003471480149776 -6.521915314652772 0.8429392495671604 -6.136667914984765 1.197548469803839 -3.375970934403905 1.951585475714651 -3.32101188788706 1.545758936930594 -3.766293661159237 1.544358603225574 -3.444215953129659 2.68830891261291 -3.567861822787906 2.198441108781526 -3.866611150578393 2.192475169183561 7.993135689125607 2.500216041865653 7.64284985184452 2.829723084090582 8.005942721469616 2.904400225420917 7.336328329478214 2.361081705673661 7.130995316771696 2.358737269612108 7.255699279495952 2.856468663643245 -2.642206135259483 2.674075866950639 -2.39177403700181 2.673341152740492 -2.845538129572966 2.185108686384703 6.982478224044516 2.340662135674304 6.936942904734958 2.833712234356156 7.11236101309747 2.837573212833319 -7.438974329536338 2.057851876040162 -7.565071770183033 2.076268020829575 -7.364798961763082 2.56899713277036 -6.033216610603887 1.57111708506123 -6.159986794465825 1.460226825256347 -6.174789043226012 1.740065083959159 4.85798692031304 1.698477941097572 4.672048310971199 1.443086095910852 4.728856764969501 1.720115144933764 7.172813415527344 2.215624450361127 7.146109938621521 1.716790903165772 6.971959471702576 2.215624450361127 2.999888949933708 3.473632195112481 3.138749138258804 3.475259739310611 3.740984071097564 2.501925893528688 -6.702044348579214 3.175256915664935 -6.93932991602912 2.140044201120406 -6.868574775876112 3.175565134916088 -2.616479399103249 3.064540991371932 -3.094892377718396 2.084727567279685 -3.348238529858119 2.08158794193209 3.783452369573576 -2.410573954978049 3.282289435742107 -2.627889051920066 3.24470700120309 -2.40720453052603 -3.862978237507477 2.074314600976639 -3.564229409625427 2.080296012234676 -3.956567065386774 1.674269159886016 3.738677437160806 -2.637534584050092 3.293399873181828 -2.635465586596091 3.79425227612451 -2.417707902547568 -3.355590941516178 2.478382701804081 -3.102244054118723 2.481485393674201 -3.520550970233599 1.98351141238814 -7.594606175405855 2.202466850080047 -7.47794979832137 2.35317745592341 -7.246228508829629 2.533223430132042 3.325156879871405 2.390352099686712 3.38006444490519 2.792347920228598 3.770438741948165 2.388968882714275 3.568171165915268 2.197777784379399 3.444524138274316 2.687645231246857 3.866920632239829 2.191811849128781 -1.939136937806618 2.996857556485883 -2.394736093995948 2.011654222883672 -2.645168127583657 2.012402454049706 7.132537761470795 2.151957450803447 6.95712805949004 2.147866943964651 6.910562859290539 3.183204435103502 -6.979426145553589 2.215624450361126 -7.153576016426086 1.716790903165771 -7.180280089378357 2.215624450361126 -4.659333070171257 1.282465330407035 -4.825829750865863 1.539219265082906 -4.696736382727083 1.560995895547962 4.9290532598241 1.276143286731304 4.718100678503693 1.426794932530108 4.903539531627329 1.682411541928784 4.745156419409949 1.239670733106283 4.616148262563794 1.261753702561913 4.741063915256745 1.751263448479428 7.172813415527344 1.827794836268678 6.971959471702576 1.827794836268678 6.760110855102539 2.897398463765879 3.001333178159676 3.389455477460454 2.431488071920004 4.362362003789879 3.140193293588899 3.391086865953328 -6.702422187397375 2.983882575984508 -6.86895259429575 2.984197541863131 -6.650642565982718 4.148839642526224 -2.676590297209839 3.015327403606043 -2.53347023241928 3.016622927711519 -3.262009120200233 2.032190694220815 -3.264121531577342 -0.6185343306447173 -3.302574581835824 -0.7923742430616737 -3.802873578432089 -0.6211608736339703 3.59076536853066 2.919562560720977 3.889516220689897 2.913639727148494 3.981244018816276 2.516246032851238 -3.308480961832819 -0.8012053494908562 -3.753761581660225 -0.8028171550667607 -3.808689367685841 -0.629828256812915 3.102150346193101 2.480610382783226 3.355497187440614 2.477507691629174 3.520458100523353 1.982636516424233 6.946792029182502 2.141282976391568 6.735189966000142 3.176353257888278 6.90172277714292 3.1766614347321 -3.13787716514938 3.590355447087952 -2.999016829737287 3.588732769932899 -3.739213164752058 2.619932279714279 3.097163209888682 2.211457492722142 2.618085232636954 3.187125497516952 3.350509581303376 2.208331150580494 -6.979426145553592 1.827794836268678 -7.180280089378361 1.827794836268678 -6.793265938758852 2.897398463765879 -4.622798642746512 1.260962125007225 -4.751807891381726 1.238879152986148 -4.747714062753222 1.750471927792585 -3.255359593263395 1.784445893554394 -3.377998912594182 1.634497298505222 -3.434335941777626 2.035950374748347 6.905620994244752 2.880413598497575 7.158225753153406 1.813100505230981 6.747989884040035 2.883291205058956 2.797228129713849 4.570021020669109 2.971894593907851 4.578549266746009 3.51675404507292 3.60368179874324 -6.546684035612724 4.104305580285383 -6.77991456089315 3.048920602753996 -6.711066182568706 4.213330661426279 -1.929066760568944 4.330132436477025 -2.536573929178348 3.254264834924483 -2.679694140598081 3.252979374275868 6.90198706610201 3.042738196867563 6.735454268915141 3.042425387819891 6.678202909160588 4.247452502940356 -2.432187037378961 4.420404853308839 -3.002207798147593 3.403459163418558 -3.141067985031883 3.405089687260619 2.534057263812353 3.139163502602719 2.677177372647691 3.137873614003794 3.263546273745768 2.159013531616769 -7.165698991808533 1.813376139786578 -6.938783096555175 2.880652392949351 -6.781150195221142 2.88352990018531 6.90921543989634 3.072505921917002 6.751582485250123 3.075320308184777 6.534872179003074 4.126520120381919 3.087366207216764 0.7150470426967408 2.991422126483569 1.069046709694413 3.261774413532147 0.7263837354393467 -6.191689921848177 4.467119016759341 -6.362427615455451 4.56992179024694 -5.890724466119536 4.740902389830819 -2.516033550490085 4.562246692240131 -2.342676875381855 4.553387972531977 -3.107369740252683 3.482374972634118 6.775677381336893 3.074666827339538 6.544554124886941 4.171114881393614 6.709702635397148 4.279417889599178 2.535780028834959 3.270835456004771 1.928448359359963 4.390686350372738 2.678900213827625 3.269550807327317 -2.973697806718678 4.62850459838636 -2.799031287025279 4.619977831494026 -3.519035698294822 3.609518095869491 -6.785886084602273 3.136879251431091 -6.943521368422148 3.134083679893112 -6.56347069178487 4.228557034944899 6.871315886065541 3.032678645942017 6.503730840512504 4.08816378816996 6.658245864851171 4.196476182069274 2.479245290902088 0.6799391594704114 2.655386600500139 0.6887119106616295 2.723775693035722 0.325473928040234 -5.786815964834077 4.41743193651017 -6.256253125735997 4.242634564742138 -5.799836684864317 4.57912805001892 -2.764790416968209 -0.3099461404066007 -2.93767842662447 -0.2965708418704494 -2.654121206895844 0.1743715649900948 6.410496587940926 4.588502606663502 6.240007306484755 4.485448140664476 5.926333253693103 4.749144969994971 2.342550010904686 4.605539762404322 2.51590689397195 4.614397225654048 3.107366593594489 3.490427715015902 -3.019751154199075 0.813696567399304 -3.118750605215249 0.4610497625235205 -3.293114010547314 0.4728046342728451 -6.499981634076516 4.153969748633226 -6.866414130243568 3.0566261660537 -6.655163170917687 4.261689361615773 6.320661604646921 4.506123984109544 6.160719536389932 4.402801809377919 5.847271939966228 4.674895757954358 4.475126514475689 -3.139489052202338 4.310861229382351 -3.190270440552815 3.712788380835582 -1.81061645316503 -6.219749017878388 4.656698261009725 -6.221426397937465 4.818713106940197 -4.371602260915684 5.005078906591893 -2.573507219184859 0.123166923536211 -2.850978286353149 -0.3500135887976733 -2.742966987028473 0.1374310117205718 6.326034469667299 4.30186700299907 5.843622117431883 4.465736879078405 5.855722307044476 4.627476358188781 2.796081378531468 -0.5021796092870459 2.682180257178022 -0.01753821345826981 2.968910683649469 -0.4883419603594429 -2.677514768040854 0.4272692987426954 -2.501401708623118 0.4181522080289449 -2.747693030851121 0.06472171681886078 -6.211937926494723 4.420431923506698 -6.371608914610234 4.524011695051512 -5.885738513333545 4.682423819668592 6.182316541170235 4.084370033139755 5.711766468973696 4.257986463479243 5.725137688084235 4.424187225022235 6.225875089733087 4.705598514825299 6.226124551745001 4.539065342408841 4.386576789189246 4.716321352820723 4.280851344301558 -1.114383093943481 5.212464066453744 -2.374424283921286 4.134375191175259 -1.182206610588335 -4.380574847206741 4.884036770681126 -6.227571691308472 4.712204003581481 -4.37888839880877 5.058818498672211 -4.863920587890178 -2.628537670686931 -5.012055977869064 -2.562245890919636 -3.887823801815627 -1.378453122986953 6.253968750578897 4.863936472538404 6.252869723395892 4.701919438002648 4.395507797000101 5.01459432400774 2.603744200918126 -0.0675143808171938 2.773135743585333 -0.05275609087205359 2.88441538098767 -0.5405722752387457 -3.970997117430519 -1.694725850269888 -4.714607482699267 -3.03282589780904 -4.873007805014202 -2.971589748269491 -5.775253029903046 4.308120282781093 -6.258880676701894 4.145516521376522 -5.787544273760879 4.474373072257086 6.226044261950792 4.740855154327086 4.386745596272524 4.751539162644003 4.386484668088556 4.926125753368285 4.420595087537521 -0.9824866923526269 4.279573029886118 -1.057121830978527 2.913500309799356 0.5062628034162329 -4.371847724656409 4.879211601165759 -4.37046663728801 5.053994987432245 -1.972225710654404 5.247679973906447 -4.919860463928752 -2.657000446341697 -3.976616174530816 -1.400859471856824 -3.827291160728394 -1.455001196462917 4.143155088372027 -1.20519707237488 5.408309180123485 -2.301275976026724 5.268764062628875 -2.378243230022588 6.259748007929074 4.756894376780651 4.404214438903148 4.893193152894964 4.401952434286432 5.067970868929011 -4.509290824377787 -0.8869529922811061 -4.372188638714785 -0.9659787194513991 -5.601427948645435 -2.067872402622526 -4.413776507097539 4.727517860431248 -6.262003003190792 4.586268298636127 -6.261075233875922 4.752800424840699 4.378575836076083 4.921700353745099 4.378552318954246 4.747113643335689 1.972273653746801 4.943986761700014 2.882609416811939 0.2974335323744031 4.093205774324514 -1.343324673699387 2.742661400572453 0.2283284366643733 -1.97306245640906 5.073745614681402 -4.371654801356737 4.877573717286324 -1.972046964483193 5.246099221765742 -4.058011030152646 -1.324667796130753 -4.201092367989796 -1.260940684376005 -2.688106748254699 0.2359371195845208 4.061017289485063 -1.330326344986218 4.204131887652479 -1.266645323033161 5.280453381301022 -2.458015933965689 4.377931523600408 5.053996240945879 4.37931499523145 4.879212855072634 1.979691937985324 5.247681226984314 -2.917958641228029 0.5015790382689307 -4.28402565300467 -1.061809814189349 -4.425047483154843 -0.9871744741953735 -4.413387164833381 4.762143724781832 -6.260687912101217 4.787334763896554 -4.412452425655175 4.93672888762891 4.380206407626598 5.137082954250202 1.973897438993191 5.158911206979114 1.977764843012009 5.331083965876196 2.772666770969397 1.163276922930621 2.692141335111127 1.049773363124517 0.9519103176151644 1.787726003152057 -1.974631578162743 5.074155862236125 -1.973559904608792 5.246509258805685 0.001196126629127586 5.307396446881216 -4.3747741012958 -0.9656669121644274 -2.866779137099168 0.5182987753131525 -2.725923580872883 0.4396082863386507 4.062077012743613 -1.329543916370038 2.692161523327219 0.2310536357480181 4.205158671723249 -1.265817105306885 4.379122069019729 4.877574765997092 1.980528084987827 5.073746663488098 1.979513189146325 5.24610027065672 -2.886596839790157 0.2925076435209275 -2.746648776952617 0.2234026023531332 -4.097198394391896 -1.348249267559785 -4.386018694525992 4.747113020988515 -4.386042211644917 4.921699731397924 -1.979739731292052 4.94398613935284 1.976958240847883 5.159477248897645 0.0002558056373687623 5.215676113176325 1.980734731456215 5.33165125669606 0.006621650679452279 5.068569953189448 -1.969041235255684 5.012140162207792 0.006508141286023687 5.246835204736376 0.9665412120711872 1.961348275235311 2.739451801271774 1.271389977423975 0.8930927937344544 1.847441088196134 -2.634893744918189 1.13779737732554 -2.718992970340795 1.25651282003048 -0.8669201300834908 1.832527505845364 2.730427803217191 0.434958167162637 2.871283277958421 0.5136487327236128 4.379276657673796 -0.9703183990415918 1.98102612436018 5.246511807061357 1.982097201853244 5.074158410287361 0.006269994174613433 5.307398995209108 -0.958446106655611 1.784896237836819 -2.698677170116475 1.046944488479108 -2.779202923349742 1.160447911292415 -1.981363515933531 5.158911980882619 -4.387672782589707 5.137083728155668 -1.985230770944093 5.331084739764228 1.979370095927085 5.359339000532783 -0.001136560109975048 5.243657279146571 -0.001214392540318872 5.420447844660266 1.976506857319015 5.012137220215808 0.0008444684858135076 5.068567011197461 0.0009579779078014775 5.246832262744378 -0.9731955653287988 1.958692946536143 -0.8997471455144981 1.844785760086569 -2.746106100963762 1.268734652296151 -0.8334575878217123 1.871810990948354 -2.699549169916647 1.324511915116575 -0.9108048461715025 1.996245543828041 2.641530225683527 1.135114165178643 0.8735568164435165 1.82984479154096 2.725629236375278 1.253829692954878 -0.007721920714548686 5.21567933006274 -1.984424305868512 5.159480465804964 -1.988200647459517 5.331654473539335 -0.006329562512153622 5.243659313274075 -1.986836019474041 5.359341034660285 -0.006251730073986694 5.420449878787768 0.8401599042857876 1.869232838044573 0.9175071689004798 1.993667388514356 2.70625128012307 1.321933772812247</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"575\" source=\"#ID18\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID14\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID12\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID13\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"388\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID14\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID15\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 1 6 8 7 2 8 3 8 9 7 4 6 0 9 10 10 1 11 4 11 11 10 5 9 12 12 6 13 2 14 3 14 7 13 13 12 6 15 14 16 0 17 5 17 15 16 7 15 16 18 2 19 8 20 9 20 3 19 17 18 18 21 8 22 1 23 4 23 9 22 19 21 20 24 10 25 0 26 5 26 11 25 21 24 12 27 2 28 16 29 17 29 3 28 13 27 22 30 6 31 12 32 13 32 7 31 23 30 14 16 20 33 0 17 5 17 21 33 15 16 24 34 14 35 6 36 7 36 15 35 25 34 16 37 8 38 26 39 27 39 9 38 17 37 18 40 28 41 8 42 9 42 29 41 19 40 20 43 30 44 10 45 11 45 31 44 21 43 22 46 12 47 16 48 17 48 13 47 23 46 24 49 6 50 22 51 23 51 7 50 25 49 14 52 32 53 20 54 21 54 33 53 15 52 34 55 14 56 24 57 25 57 15 56 35 55 36 58 16 59 26 60 27 60 17 59 37 58 26 39 8 38 28 61 29 61 9 38 27 39 38 62 28 63 18 64 19 64 29 63 39 62 40 65 30 66 20 67 21 67 31 66 41 65 36 68 22 69 16 70 17 70 23 69 37 68 32 71 40 72 20 73 21 73 41 72 33 71 34 74 32 75 14 76 15 76 33 75 35 74 36 77 26 78 42 79 43 79 27 78 37 77 26 80 28 81 44 82 45 82 29 81 27 80 38 83 46 84 28 85 29 85 47 84 39 83 40 86 48 87 30 88 31 88 49 87 41 86 32 89 50 90 40 91 41 91 51 90 33 89 52 92 32 93 34 94 35 94 33 93 53 92 42 95 26 96 44 97 45 97 27 96 43 95 44 82 28 81 46 98 47 98 29 81 45 82 54 99 46 100 38 101 39 101 47 100 55 99 56 102 48 103 40 104 41 104 49 103 57 102 50 105 56 106 40 107 41 107 57 106 51 105 52 108 50 109 32 110 33 110 51 109 53 108 42 111 44 112 58 113 59 113 45 112 43 111 44 114 46 115 60 116 61 116 47 115 45 114 54 117 62 118 46 119 47 119 63 118 55 117 56 120 64 121 48 122 49 122 65 121 57 120 50 123 66 124 56 125 57 125 67 124 51 123 68 126 50 127 52 128 53 128 51 127 69 126 58 129 44 130 60 131 61 131 45 130 59 129 60 116 46 132 62 133 63 133 47 132 61 116 70 134 62 135 54 136 55 136 63 135 71 134 72 137 64 138 56 139 57 139 65 138 73 137 66 140 74 141 56 142 57 142 75 141 67 140 68 143 66 144 50 145 51 145 67 144 69 143 60 146 76 147 58 148 59 148 77 147 61 146 60 149 62 150 78 151 79 151 63 150 61 149 70 152 80 153 62 154 63 154 81 153 71 152 82 155 64 156 72 157 73 157 65 156 83 155 84 158 85 159 86 160 87 160 88 159 89 158 90 161 66 162 68 163 69 163 67 162 91 161 78 164 76 165 60 166 61 166 77 165 79 164 62 167 92 168 78 169 79 169 93 168 63 167 70 170 94 171 80 172 81 172 95 171 71 170 82 173 72 174 96 175 97 175 73 174 83 173 85 176 98 177 86 178 87 178 99 177 88 176 100 179 101 180 102 181 103 181 104 180 105 179 68 182 106 183 90 184 91 184 107 183 69 182 101 185 108 186 102 187 103 187 109 186 104 185 76 188 78 189 110 190 111 190 79 189 77 188 112 191 113 192 114 193 115 193 116 192 117 191 80 194 94 195 118 196 119 196 95 195 81 194 120 197 82 198 96 199 97 199 83 198 121 197 96 200 72 201 122 202 123 202 73 201 97 200 85 203 124 204 98 205 99 205 125 204 88 203 100 206 102 207 126 208 127 208 103 207 105 206 128 209 106 210 68 211 69 211 107 210 129 209 130 212 131 213 132 214 133 214 134 213 135 212 136 215 130 216 137 217 138 217 135 216 139 215 140 218 76 219 110 220 111 220 77 219 141 218 142 221 143 222 144 223 145 223 146 222 147 221 148 224 112 225 114 226 115 226 117 225 149 224 143 227 150 228 144 229 145 229 151 228 146 227 80 230 118 231 152 232 153 232 119 231 81 230 94 233 154 234 118 235 119 235 155 234 95 233 137 236 120 237 96 238 97 238 121 237 138 236 156 239 96 240 122 241 123 241 97 240 157 239 124 242 158 243 98 244 99 244 159 243 125 242 160 245 100 246 126 247 127 247 105 246 161 245 162 248 136 249 156 250 157 250 139 249 163 248 164 251 165 252 166 253 167 253 168 252 169 251 137 254 130 255 132 256 133 256 135 255 138 254 170 257 165 258 164 259 169 259 168 258 171 257 156 260 136 261 137 262 138 262 139 261 157 260 172 263 173 264 174 265 175 265 176 264 177 263 178 266 179 267 180 268 181 268 182 267 183 266 179 269 184 270 185 271 186 271 187 270 182 269 188 272 112 273 148 274 149 274 117 273 189 272 144 275 150 276 190 277 191 277 151 276 145 275 152 278 118 279 192 280 193 280 119 279 153 278 154 281 185 282 118 283 119 283 186 282 155 281 194 284 120 285 137 286 138 286 121 285 195 284 137 287 96 288 156 289 157 289 97 288 138 287 156 290 122 291 196 292 197 292 123 291 157 290 124 293 198 294 158 295 159 295 199 294 125 293 160 296 126 297 200 298 201 298 127 297 161 296 202 299 162 300 156 301 157 301 163 300 203 299 204 302 205 303 206 304 207 304 208 303 209 302 179 305 185 306 180 307 181 307 186 306 182 305 205 308 210 309 206 310 207 310 211 309 208 308 184 311 192 312 185 313 186 313 193 312 187 311 150 314 212 315 190 316 191 316 213 315 151 314 214 317 188 318 148 319 149 319 189 318 215 317 184 320 216 321 192 322 193 322 217 321 187 320 152 323 192 324 218 325 219 325 193 324 153 323 118 326 185 327 192 328 193 328 186 327 119 326 154 329 180 330 185 331 186 331 181 330 155 329 220 332 156 333 196 334 197 334 157 333 221 332 198 335 222 336 158 337 159 337 223 336 199 335 224 338 160 339 200 340 201 340 161 339 225 338 226 341 162 342 202 343 203 343 163 342 227 341 190 344 212 345 228 346 229 346 213 345 191 344 230 347 188 348 214 349 215 349 189 348 231 347 216 350 232 351 192 352 193 352 233 351 217 350 192 353 234 354 218 355 219 355 235 354 193 353 220 356 196 357 236 358 237 358 197 357 221 356 198 359 238 360 222 361 223 361 239 360 199 359 224 362 200 363 240 364 241 364 201 363 225 362 242 365 226 366 202 367 203 367 227 366 243 365 212 368 244 369 228 370 229 370 245 369 213 368 216 371 246 372 232 373 233 373 247 372 217 371 248 374 230 375 214 376 215 376 231 375 249 374 218 377 234 378 250 379 251 379 235 378 219 377 220 380 236 381 252 382 253 382 237 381 221 380 238 383 254 384 222 385 223 385 255 384 239 383 240 386 200 387 256 388 257 388 201 387 241 386 226 389 242 390 258 391 259 391 243 390 227 389 228 392 244 393 260 394 261 394 245 393 229 392 246 395 262 396 232 397 233 397 263 396 247 395 264 398 230 399 248 400 249 400 231 399 265 398 250 401 234 402 266 403 267 403 235 402 251 401 252 404 236 405 268 406 269 406 237 405 253 404 254 407 238 408 270 409 271 409 239 408 255 407 240 410 256 411 272 412 273 412 257 411 241 410 258 413 242 414 274 415 275 415 243 414 259 413 228 416 260 417 276 418 277 418 261 417 229 416 246 419 278 420 262 421 263 421 279 420 247 419 280 422 264 423 248 424 249 424 265 423 281 422 250 425 266 426 282 427 283 427 267 426 251 425 252 428 268 429 284 430 285 430 269 429 253 428 284 431 268 432 286 433 287 433 269 432 285 431 270 434 238 435 288 436 289 436 239 435 271 434 290 437 240 438 272 439 273 439 241 438 291 437 258 440 274 441 292 442 293 442 275 441 259 440 276 443 260 444 294 445 295 445 261 444 277 443 278 446 296 447 262 448 263 448 297 447 279 446 298 449 264 450 280 451 281 451 265 450 299 449 282 452 266 453 300 454 301 454 267 453 283 452 284 455 286 456 302 457 303 457 287 456 285 455 270 458 288 459 304 460 305 460 289 459 271 458 290 461 272 462 306 463 307 463 273 462 291 461 274 464 308 465 292 466 293 466 309 465 275 464 310 467 296 468 278 469 279 469 297 468 311 467 260 470 312 471 294 472 295 472 313 471 261 470 298 473 314 474 264 475 265 475 315 474 299 473 316 476 282 477 300 478 301 478 283 477 317 476 302 479 286 480 318 481 319 481 287 480 303 479 304 482 288 483 320 484 321 484 289 483 305 482 322 485 290 486 306 487 307 487 291 486 323 485 292 488 308 489 324 490 325 490 309 489 293 488 310 491 326 492 296 493 297 493 327 492 311 491 294 494 312 495 328 496 329 496 313 495 295 494 330 497 314 498 298 499 299 499 315 498 331 497 316 500 300 501 332 502 333 502 301 501 317 500 302 503 318 504 334 505 335 505 319 504 303 503 304 506 320 507 336 508 337 508 321 507 305 506 322 509 306 510 338 511 339 511 307 510 323 509 308 512 340 513 324 514 325 514 341 513 309 512 310 515 342 516 326 517 327 517 343 516 311 515 312 518 344 519 328 520 329 520 345 519 313 518 330 521 346 522 314 523 315 523 347 522 331 521 316 524 332 525 348 526 349 526 333 525 317 524 318 527 350 528 334 529 335 529 351 528 319 527 352 530 322 531 338 532 339 532 323 531 353 530 354 533 304 534 336 535 337 535 305 534 355 533 324 536 340 537 356 538 357 538 341 537 325 536 342 539 358 540 326 541 327 541 359 540 343 539 328 542 344 543 338 544 339 544 345 543 329 542 336 545 346 546 330 547 331 547 347 546 337 545 348 548 332 549 360 550 361 550 333 549 349 548 334 551 350 552 362 553 363 553 351 552 335 551 344 554 352 555 338 556 339 556 353 555 345 554 354 557 336 558 330 559 331 559 337 558 355 557 356 560 340 561 364 562 365 562 341 561 357 560 342 563 356 564 358 565 359 565 357 564 343 563 350 566 348 567 360 568 361 568 349 567 351 566 350 569 360 570 362 571 363 571 361 570 351 569 356 572 364 573 358 574 359 574 365 573 357 572</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID19\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID22\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID25\">0.1924440562725067 0.2711399495601654 0.6115583777427673 0.1957686692476273 0.2042710781097412 0.7609833478927612 0.002700587967410684 0.2004776000976563 0.7722446918487549 0.002700587967410684 0.2004776000976563 0.7722446918487549 0.1957686692476273 0.2042710781097412 0.7609833478927612 0.1924440562725067 0.2711399495601654 0.6115583777427673 0.4444983303546906 0.2680619955062866 0.586967945098877 0.4444983303546906 0.2680619955062866 0.586967945098877 0.002700587967410684 0.2720804810523987 0.6240522265434265 0.002700587967410684 0.2720804810523987 0.6240522265434265 0.4397116601467133 0.2113500535488129 0.7385702729225159 0.4397116601467133 0.2113500535488129 0.7385702729225159 0.352396547794342 0.3509823083877564 0.4470842778682709 0.352396547794342 0.3509823083877564 0.4470842778682709 0.002700587967410684 0.3516040444374085 0.4641821682453156 0.002700587967410684 0.3516040444374085 0.4641821682453156 -0.1870429217815399 0.2711399495601654 0.6115583777427673 -0.1870429217815399 0.2711399495601654 0.6115583777427673 0.6850299835205078 0.2828713655471802 0.5538220405578613 0.6850299835205078 0.2828713655471802 0.5538220405578613 0.5602087378501892 0.3492371141910553 0.4287796020507813 0.5602087378501892 0.3492371141910553 0.4287796020507813 -0.1903675049543381 0.2042710781097412 0.7609833478927612 -0.1903675049543381 0.2042710781097412 0.7609833478927612 0.6636645793914795 0.2286375910043716 0.6840465664863586 0.6636645793914795 0.2286375910043716 0.6840465664863586 0.709339439868927 0.3376691043376923 0.4316198825836182 0.709339439868927 0.3376691043376923 0.4316198825836182 -0.3469953238964081 0.3509823083877564 0.4470842778682709 -0.3469953238964081 0.3509823083877564 0.4470842778682709 -0.4390972852706909 0.2680619955062866 0.586967945098877 -0.4390972852706909 0.2680619955062866 0.586967945098877 0.6231700778007507 0.2220461815595627 0.7204016447067261 0.6231700778007507 0.2220461815595627 0.7204016447067261 0.643763542175293 0.3510677814483643 0.3979833722114563 0.643763542175293 0.3510677814483643 0.3979833722114563 -0.4343104958534241 0.2113500535488129 0.7385702729225159 -0.4343104958534241 0.2113500535488129 0.7385702729225159 0.7126624584197998 0.357633650302887 0.3590758442878723 0.7126624584197998 0.357633650302887 0.3590758442878723 -0.5548076629638672 0.3492371141910553 0.4287796020507813 -0.5548076629638672 0.3492371141910553 0.4287796020507813 -0.6796286106109619 0.2828713655471802 0.5538220405578613 -0.6796286106109619 0.2828713655471802 0.5538220405578613 -0.7039383053779602 0.3376691043376923 0.4316198825836182 -0.7039383053779602 0.3376691043376923 0.4316198825836182 -0.6572906970977783 0.2286375910043716 0.6784615516662598 -0.6572906970977783 0.2286375910043716 0.6784615516662598 -0.6383625268936157 0.3510677814483643 0.3979833722114563 -0.6383625268936157 0.3510677814483643 0.3979833722114563 -0.616965651512146 0.2220461815595627 0.7161311507225037 -0.616965651512146 0.2220461815595627 0.7161311507225037 -0.7072612643241882 0.357633650302887 0.3590758442878723 -0.7072612643241882 0.357633650302887 0.3590758442878723</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID25\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID23\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID26\">0.03485320284872272 0.899138437978854 0.4362743673425384 0.01951910867172393 0.9171748765335216 0.3980065957397955 1.051160530737447e-009 0.9061375626667 0.4229831173042872 -1.051160530737447e-009 -0.9061375626667 -0.4229831173042872 -0.01951910867172393 -0.9171748765335216 -0.3980065957397955 -0.03485320284872272 -0.899138437978854 -0.4362743673425384 0.0257166868780685 0.908666212219352 0.4167305685775294 -0.0257166868780685 -0.908666212219352 -0.4167305685775294 3.645488823785591e-009 0.8979822765258833 0.4400316250514187 -3.645488823785591e-009 -0.8979822765258833 -0.4400316250514187 0.001300593575580135 0.938226845998182 0.3460183433066159 -0.001300593575580135 -0.938226845998182 -0.3460183433066159 0.04630452055562252 0.8783656303933205 0.4757412224307018 -0.04630452055562252 -0.8783656303933205 -0.4757412224307018 8.738997922719271e-010 0.8929615435048699 0.4501329601588852 -8.738997922719271e-010 -0.8929615435048699 -0.4501329601588852 -0.03485319651907277 0.89913844009921 0.4362743634782617 0.03485319651907277 -0.89913844009921 -0.4362743634782617 0.003983352877028968 0.9189265915012781 0.3944084841020794 -0.003983352877028968 -0.9189265915012781 -0.3944084841020794 0.05753510116414596 0.8849008725822695 0.4622122432791778 -0.05753510116414596 -0.8849008725822695 -0.4622122432791778 -0.01951910407534057 0.9171748731339707 0.3980066037992096 0.01951910407534057 -0.9171748731339707 -0.3980066037992096 0.009659538208278065 0.9410757749378406 0.3380578044458462 -0.009659538208278065 -0.9410757749378406 -0.3380578044458462 0.04496678695988145 0.935419526232216 0.3506683590146127 -0.04496678695988145 -0.935419526232216 -0.3506683590146127 -0.0463044972456431 0.8783656491122684 0.475741190138516 0.0463044972456431 -0.8783656491122684 -0.475741190138516 -0.02571666601298755 0.908666221566183 0.4167305494846911 0.02571666601298755 -0.908666221566183 -0.4167305494846911 -0.04492138787749118 0.9905538335691692 0.1295575999800209 0.04492138787749118 -0.9905538335691692 -0.1295575999800209 0.06688683703105594 0.9649000494973166 0.2539567788267463 -0.06688683703105594 -0.9649000494973166 -0.2539567788267463 -0.003213236844278409 0.9375383555841581 0.3478670822563341 0.003213236844278409 -0.9375383555841581 -0.3478670822563341 0.05934913700066501 0.9617562798550992 0.2673995850717735 -0.05934913700066501 -0.9617562798550992 -0.2673995850717735 -0.05753510569380399 0.8849008584507783 0.4622122697699384 0.05753510569380399 -0.8849008584507783 -0.4622122697699384 -0.007363809001137122 0.9171999091885652 0.3983592610966668 0.007363809001137122 -0.9171999091885652 -0.3983592610966668 -0.04496687070698219 0.9354195212454681 0.3506683615778889 0.04496687070698219 -0.9354195212454681 -0.3506683615778889 -0.02259546634892213 0.9354078084312736 0.3528479514270653 0.02259546634892213 -0.9354078084312736 -0.3528479514270653 -0.06688688639620655 0.964900012856177 0.2539569050417224 0.06688688639620655 -0.964900012856177 -0.2539569050417224 0.04228500258832065 0.990857597467327 0.1281140121039941 -0.04228500258832065 -0.990857597467327 -0.1281140121039941 -0.05934926707443611 0.9617562834541745 0.2673995432571656 0.05934926707443611 -0.9617562834541745 -0.2673995432571656</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID26\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID24\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID22\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID23\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"60\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID24\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 6 10 1 4 11 7 12 6 0 5 7 13 14 0 8 9 5 15 16 8 2 3 9 17 6 18 10 11 19 7 12 20 6 7 21 13 14 12 0 5 13 15 16 14 8 9 15 17 22 16 2 3 17 23 18 24 10 11 25 19 26 18 6 7 19 27 20 26 6 7 27 21 28 14 16 17 15 29 30 16 22 23 17 31 24 32 10 11 33 25 20 34 26 27 35 21 30 28 16 17 29 31 36 30 22 23 31 37 34 38 26 27 39 35 40 28 30 31 29 41 42 30 36 37 31 43 44 40 30 31 41 45 42 44 30 31 45 43 46 42 36 37 43 47 48 40 44 45 41 49 50 46 36 37 47 51 52 48 44 45 49 53</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID27\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID28\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID32\">-0.07851788401603699 0.1782157123088837 0.750410795211792 -0.07483669370412827 0.1782276183366776 0.7286940813064575 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.07483669370412827 0.1782276183366776 0.7286940813064575 -0.07851788401603699 0.1782157123088837 0.750410795211792 0.000409614498494193 0.1782157123088837 0.750410795211792 0.000409614498494193 0.1782157123088837 0.750410795211792 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.07149340957403183 0.1782367527484894 0.7254133224487305 -0.07149340957403183 0.1782367527484894 0.7254133224487305 -0.07443798333406448 0.1782035082578659 0.7693319320678711 -0.07443798333406448 0.1782035082578659 0.7693319320678711 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.07443798333406448 0.1968002468347549 0.7693800926208496 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.07443798333406448 0.1968002468347549 0.7693800926208496 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.07851788401603699 0.1968121081590653 0.7504593729972839 -0.07851788401603699 0.1968121081590653 0.7504593729972839 -0.09266245365142822 0.1896431148052216 0.724322497844696 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.000409614498494193 0.1782397478818893 0.7226461172103882 -0.07120383530855179 0.1781944781541824 0.7728844285011292 -0.07120383530855179 0.1781944781541824 0.7728844285011292 -0.07120383530855179 0.1967910826206207 0.772932767868042 -0.07120383530855179 0.1967910826206207 0.772932767868042 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.07483669370412827 0.1968243420124054 0.7287421822547913 -0.07483669370412827 0.1968243420124054 0.7287421822547913 -0.08871600776910782 0.1896520107984543 0.7204501032829285 -0.08871600776910782 0.1896520107984543 0.7204501032829285 0.07204876095056534 0.1782367527484894 0.7255136966705322 0.07204876095056534 0.1782367527484894 0.7255136966705322 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.000409614498494193 0.1968121081590653 0.7504593729972839 0.000409614498494193 0.1968121081590653 0.7504593729972839 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08871600776910782 0.1896520107984543 0.7204501032829285 -0.08871600776910782 0.1896520107984543 0.7204501032829285 0.07520543038845062 0.1782276183366776 0.7287005186080933 0.07520543038845062 0.1782276183366776 0.7287005186080933 -0.003841559402644634 0.1896552294492722 0.7171844244003296 -0.003841559402644634 0.1896552294492722 0.7171844244003296 0.07189667224884033 0.1781944781541824 0.7727674245834351 0.07189667224884033 0.1781944781541824 0.7727674245834351 -0.003841564524918795 0.1896068900823593 0.7814804315567017 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.0004096109187230468 0.1781909167766571 0.7759701609611511 -0.003841564524918795 0.1896068900823593 0.7814804315567017 0.0004096109187230468 0.1967881321907044 0.7760187983512878 0.0004096109187230468 0.1967881321907044 0.7760187983512878 -0.07149340957403183 0.1968333870172501 0.7254616618156433 -0.07149340957403183 0.1968333870172501 0.7254616618156433 0.07795095443725586 0.1782157123088837 0.750410795211792 0.07795095443725586 0.1782157123088837 0.750410795211792 0.08072145283222199 0.1896520107984543 0.7205688953399658 0.08072145283222199 0.1896520107984543 0.7205688953399658 0.07507967203855515 0.1782035082578659 0.7693222761154175 0.07507967203855515 0.1782035082578659 0.7693222761154175 0.08054187148809433 0.189610093832016 0.7777007222175598 0.08054187148809433 0.189610093832016 0.7777007222175598 0.07189667224884033 0.1967910826206207 0.7728157639503479 0.07189667224884033 0.1967910826206207 0.7728157639503479 0.000409614498494193 0.1968369483947754 0.7226946949958801 0.000409614498494193 0.1968369483947754 0.7226946949958801 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.07507967203855515 0.1968002468347549 0.7693703770637512 0.07507967203855515 0.1968002468347549 0.7693703770637512 0.07204876095056534 0.1968333870172501 0.7255620956420898 0.07204876095056534 0.1968333870172501 0.7255620956420898 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.07795095443725586 0.1968121081590653 0.7504593729972839 0.07795095443725586 0.1968121081590653 0.7504593729972839 0.07520543038845062 0.1968243420124054 0.7287487387657166 0.07520543038845062 0.1968243420124054 0.7287487387657166 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.0876883789896965 0.1896311044692993 0.7504352331161499</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID32\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID29\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID33\">-0.3024878347369789 -0.9531330521014052 0.006204420036904032 -0.2878136372143352 -0.9422455791864398 -0.1712792419911581 -0.5249396037438788 -0.8510941690515425 0.008782245025272984 0.5249396037438788 0.8510941690515425 -0.008782245025272984 0.2878136372143352 0.9422455791864398 0.1712792419911581 0.3024878347369789 0.9531330521014052 -0.006204420036904032 -1.030157873869469e-007 -0.9999995857409991 -0.0009102295422166482 1.030157873869469e-007 0.9999995857409991 0.0009102295422166482 -0.4867280914656857 -0.8423232723404854 0.2314892434904643 0.4867280914656857 0.8423232723404854 -0.2314892434904643 -0.4832427607286494 -0.8438939856208405 -0.2330651737954984 0.4832427607286494 0.8438939856208405 0.2330651737954984 -0.1065158443663067 -0.8465930701179467 -0.5214734399058137 0.1065158443663067 0.8465930701179467 0.5214734399058137 -0.2843076200453105 -0.9452226107733496 0.1603851404182587 0.2843076200453105 0.9452226107733496 -0.1603851404182587 -0.3613522282898117 0.9323990584512384 0.007520831684874476 -0.1943492098146326 0.9744131186208097 0.1129046451838712 -0.3367738535342633 0.9278463575668894 0.1602638709302215 0.3367738535342633 -0.9278463575668894 -0.1602638709302215 0.1943492098146326 -0.9744131186208097 -0.1129046451838712 0.3613522282898117 -0.9323990584512384 -0.007520831684874476 -0.3350021281728092 0.9286763000072572 -0.1591662775983643 -0.2053667260317607 0.9786667518408502 0.005991383836474488 0.2053667260317607 -0.9786667518408502 -0.005991383836474488 0.3350021281728092 -0.9286763000072572 0.1591662775983643 5.950004055100147e-007 -0.9999996252914151 -0.0008656885557298904 -5.950004055100147e-007 0.9999996252914151 0.0008656885557298904 -0.1163281839727694 -0.8491927267221577 0.5151111205320502 0.1163281839727694 0.8491927267221577 -0.5151111205320502 -0.07782172999912324 0.8997020137288794 0.4295114257294478 0.07782172999912324 -0.8997020137288794 -0.4295114257294478 -0.3506576699523518 -0.7630938270209297 0.5428876584212787 0.3506576699523518 0.7630938270209297 -0.5428876584212787 -0.1969912460712346 0.9734167353974789 -0.116851650477932 0.1969912460712346 -0.9734167353974789 0.116851650477932 -0.3367741236817105 -0.753563594148795 -0.5645574365748503 0.3367741236817105 0.753563594148795 0.5645574365748503 0.1647585956680902 -0.8280508909958978 -0.5358976834008324 -0.1647585956680902 0.8280508909958978 0.5358976834008324 0.0081277610919186 -0.4291142777136779 -0.903213638162036 -0.0081277610919186 0.4291142777136779 0.903213638162036 -7.908903987158142e-007 -0.9999995294381545 -0.0009701148614059022 7.908903987158142e-007 0.9999995294381545 0.0009701148614059022 9.367606006905798e-008 0.9999995870292008 0.0009088131925657172 -9.367606006905798e-008 -0.9999995870292008 -0.0009088131925657172 -0.2576590149372369 0.8834340835300767 0.3913515709422234 0.2576590149372369 -0.8834340835300767 -0.3913515709422234 -0.2494900682113803 0.8802092095288722 -0.4037158076226872 0.2494900682113803 -0.8802092095288722 0.4037158076226872 0.4250998540304424 -0.8806347916119481 -0.2092187322059793 -0.4250998540304424 0.8806347916119481 0.2092187322059793 -0.00845229221265386 0.1033426982612746 -0.9946098961263311 0.00845229221265386 -0.1033426982612746 0.9946098961263311 0.1749601512800255 -0.8291922921760373 0.5308757746026089 -0.1749601512800255 0.8291922921760373 -0.5308757746026089 -0.009459542753938796 0.09949545053255485 0.994993051420064 0.009079193768697695 -0.4319341657279547 0.9018594373389937 -0.009079193768697695 0.4319341657279547 -0.9018594373389937 0.009459542753938796 -0.09949545053255485 -0.994993051420064 0.006149349385183222 0.8895686355997782 0.4567601428094272 -0.006149349385183222 -0.8895686355997782 -0.4567601428094272 -0.07191839607807007 0.9008443571287098 -0.4281438876533442 0.07191839607807007 -0.9008443571287098 0.4281438876533442 0.448138374237927 -0.8939458912537754 0.005721979192628416 -0.448138374237927 0.8939458912537754 -0.005721979192628416 0.4770528154286843 0.1031595313166823 -0.8727993597557735 -0.4770528154286843 -0.1031595313166823 0.8727993597557735 0.4238771647515925 -0.8828044000927632 0.202446388900883 -0.4238771647515925 0.8828044000927632 -0.202446388900883 0.4945456462922296 0.09947495807119577 0.8634404070056803 -0.4945456462922296 -0.09947495807119577 -0.8634404070056803 0.1258013806332151 0.8860187556699122 0.4462564030150351 -0.1258013806332151 -0.8860187556699122 -0.4462564030150351 0.005435422936699622 0.891631961359924 -0.4527282867890564 -0.005435422936699622 -0.891631961359924 0.4527282867890564 0.6702508690679085 -0.6667194785354795 -0.3259584474363129 -0.6702508690679085 0.6667194785354795 0.3259584474363129 0.6742346164452745 -0.6654584480574296 0.3202697861114761 -0.6742346164452745 0.6654584480574296 -0.3202697861114761 0.3173293102426028 0.9355575519583267 0.1550295966410821 -0.3173293102426028 -0.9355575519583267 -0.1550295966410821 0.1190699982263196 0.8884420729247442 -0.4432753304432444 -0.1190699982263196 -0.8884420729247442 0.4432753304432444 0.760030288705589 -0.6498302846838061 0.008634891884813508 -0.760030288705589 0.6498302846838061 -0.008634891884813508 0.5170322868802112 0.8188151053051141 -0.2494382441559307 -0.5170322868802112 -0.8188151053051141 0.2494382441559307 0.521322000416191 0.8159351570852588 0.2499463768777512 -0.521322000416191 -0.8159351570852588 -0.2499463768777512 0.3362759406245169 0.9417533539071984 0.004371745834244416 -0.3362759406245169 -0.9417533539071984 -0.004371745834244416 0.3202772260176232 0.9345677672437676 -0.1549373645169405 -0.3202772260176232 -0.9345677672437676 0.1549373645169405 0.5932164723436803 0.8050212461442146 0.005916941484898163 -0.5932164723436803 -0.8050212461442146 -0.005916941484898163</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID33\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID31\">\r\n\t\t\t\t\t<float_array count=\"432\" id=\"ID34\">-1.604442099772253 5.802283499279104 -1.573183456353962 5.630762032501461 -1.821740661015552 5.802476513066489 0.00409614498494193 5.902462085770645 -0.7483669370412827 5.731623910707608 -0.7851788401603699 5.902462085770645 -1.604196182515231 5.962490747251832 -1.82149474324102 5.962684121255307 -1.780449779026585 6.146339901946291 -1.571268598756017 5.633255221851461 -1.78291091091704 5.598733785620715 -1.819858586623598 5.804940331456764 -0.7140452025127804 5.703378050300267 -0.7474780852070422 5.729186753498295 0.004984843891686928 5.900025345398822 0.00409614498494193 5.902326100828895 -0.7851788401603699 5.902326100828895 -0.7443798333406448 6.051172408391516 0.2236734658732968 5.762133091532981 -0.01270952242478987 5.911585246007205 0.1787754005984815 5.945230107319095 -1.564428723748529 6.113601345021629 -1.599305025680767 5.963826210519477 -1.775445545748399 6.147742417172025 0.2179063692350927 5.992400588104799 0.1773562749568012 5.786613389957505 0.01955257277450474 5.992590827788637 -1.448469807025108 4.751486045042294 -1.688880764353528 4.742016143994216 -1.478189593478927 4.779967674105643 0.004111008280331676 5.683600164398651 -0.7149192326696907 5.705368853763854 0.004111006276021026 5.902015713185169 0.003401430125809488 5.900151354700049 -0.7450744437582559 6.04899798727062 -0.7127329307595376 6.076944359379837 0.0875151803162183 5.355915491467289 0.05684437206541895 5.38500547820929 0.2786303277646169 5.390837238688121 0.21754929076373 5.754514713295354 0.01919549468686374 5.754705200410626 -0.01879160302071026 5.90400806068337 -1.489320372067448 5.95132655585069 -1.699604226711574 5.988160124114627 -1.665788431435642 6.023972587944718 0.180187554914348 5.787662053882029 -0.01197278655136753 5.822494054807282 0.02240503837869619 5.993649535119075 -1.653813246305865 4.709468520215458 -1.688903054480486 4.743081386304116 -1.448492007543037 4.752549879443639 0.7204748535710164 5.70615846456132 0.004083388854297861 5.683600164355402 0.004083390574457986 5.902015713141923 -1.032044798157092 1.226779649424081 -0.8514584171371413 1.314888120954353 -0.1346106482705932 1.265763910272534 0.004082013310828176 5.901868745412714 -0.7120524830533479 6.07866141048066 0.004081979479286662 6.102935850588785 -1.46081457044848 5.981914842209305 -1.489466745456678 5.951579120552236 -1.665939082746371 6.024218721431586 0.7451694618322063 6.049014422414442 -0.003306408641074359 5.900171063165603 0.7128279474080883 6.076962202870619 0.2786041034267978 5.392014972887837 0.05681812193419247 5.386183819490798 0.2423942948771818 5.426348456631136 0.7851788401603699 5.902641979286039 -0.00409614498494193 5.902641979286039 0.7443798333406448 6.051485002905634 0.7851788401603699 5.902740625578002 0.7483669370412827 5.731898697963258 -0.00409614498494193 5.902740625578002 0.3006698490501311 5.929101459942056 0.2630781014933425 5.897206458866669 0.1089805479442876 5.965504217141602 0.7511228658279991 5.72913454369326 0.7195561280267626 5.704064808637644 0.003164871263548281 5.899922524039425 0.1248118584738087 1.029936007830623 0.157349922380298 1.131786871995296 0.8710852770113151 1.185262132547967 -0.185866128285687 1.168551250859002 -1.03203501974185 1.22652955858015 -0.1346011083247205 1.265517216529196 0.7189780480699066 6.077740979275789 0.004107471930473988 5.901868745460156 0.004107434556820421 6.102935850636226 -0.862861704234138 3.927370724705898 -0.2015707945288319 4.078433926945395 -0.1493850533623736 3.981598326028479 -0.8628045199244163 3.927639570001535 -1.043698269554101 4.014691222259664 -0.2015078816790155 4.078687252534298 0.7120398805439631 6.078949583813254 -0.004094617363084419 5.902158799714556 -0.004094581751470315 6.103226367629099 0.7787125549174547 2.585036605096612 0.6033385655026737 2.522650066138377 -0.1117223255655186 2.561895583422623 0.7474038480014797 5.729259531857909 0.7139709664477956 5.703452705248894 -0.005059084104673388 5.900101868103782 0.2627588158035044 5.897246571368882 0.07680789880434155 5.938520967984054 0.1086573100596666 5.96553881100149 0.7795095443725586 5.902461857342622 0.7520543038845062 5.731674322378174 0.00409614498494193 5.902461857342622 1.837982949551064 4.380493162626602 1.698151380191647 4.426663247286263 1.722261911843289 4.456418909610435 0.1247907685741417 1.030037050628625 0.8710661817052536 1.185357244751118 0.9672866956702858 1.093149008827759 0.6182835712551754 4.775255339961362 0.793800767381204 4.711713847427201 -0.05393935509880506 4.670308342735786 0.7515192965588562 6.048837954527257 0.004818832041163543 5.90006726269816 0.7196892646605601 6.075939857527496 0.8862475378018822 3.792571274053156 0.1746565630062018 3.851984305430153 0.9832304820207426 3.884087444153092 0.1746380817817648 3.851553385651503 0.1432486616462902 3.953791929426786 0.9832116155855102 3.883662527970578 -0.06534121213406159 2.63105822182879 0.7787179296387801 2.584739777075194 -0.1117168868593094 2.561597231824915 -0.004094653617984109 5.902158799714615 -0.7189652312805638 6.07802915258916 -0.004094618001953375 6.103226367629159 0.7149043705724325 5.705577453965008 -0.004125870608663351 5.683810639604747 -0.004125866857378252 5.902226193962813 0.7795095443725586 5.902325637871498 0.00409614498494193 5.902325637871498 0.7507967203855515 6.051095985290626 1.8422754717584 5.661531884254806 1.860065481229638 5.833109873402369 1.989092693654606 5.626995170813783 1.866608484664902 4.416370659075843 1.838140690497932 4.381252172648102 1.722410861650169 4.457169627042735 0.1017818923490949 4.635730454846145 0.1403692834330186 4.563151008605013 -0.7040384761248265 4.607730130874681 0.6182300880543712 4.774973129686113 -0.0539900413699956 4.670015046265992 -0.09994876018071668 4.739887083494891 1.733899547804191 5.531120571691932 1.709772779716068 5.562763359799611 1.878316678975313 5.570720590338454 1.878304677869654 5.570236401650518 1.709760849657511 5.562278239889182 1.849835545272472 5.607594591763997 0.1537407156268212 2.444674604463092 -0.5978653068071427 2.329634598343816 -0.6885274476433928 2.39449174630185 0.1537883138861346 2.444229771370457 0.1157277970935313 2.371708602168431 -0.5978147418473687 2.329177771002359 -0.00491720082529457 5.900077058146425 -0.7516176617662564 6.048844008260367 -0.7197876284078544 6.075947788539828 -0.004068778744300874 5.683810639521082 -0.7204602436909137 5.706367533632258 -0.004068782197838758 5.902226193879148 1.861658167768242 5.915239599347373 1.842927300380627 6.064991691688345 2.01170103070488 5.915433112871178 1.861850771719819 5.83510277999676 2.011893635504649 5.835295886105167 1.990956558256295 5.629018528131723 0.1719779002507082 5.824603213096284 0.1389888997947077 5.857181682759085 0.2822048289751989 5.867848448492063 -0.613562480917102 4.673788626475852 0.1017936545345657 4.636024285106233 -0.7040268847461585 4.608027003318812 1.839764149855081 6.066881609824319 1.986422966154651 6.101004404133319 2.008651870081057 5.917402684293361 0.2825884533466772 4.865079334453994 0.1672701472499133 4.901776309015174 0.2002177616702845 4.936782292242141 0.3100472870646619 4.89401534558154 0.2821395270143702 4.864357040165081 0.1997767932944579 4.936065654880399 -0.00409614498494193 5.90264147944936 -0.7795095443725586 5.90264147944936 -0.7507967203855515 6.051408074034807 -0.7194780291125233 5.70413058581879 -0.7510447657283905 5.729198913126174 -0.003086767938886549 5.899989699497139 0.557955278772954 5.834059593021777 0.4409585274078356 5.799210002360261 0.4147576104431627 6.005114826228685 0.2822718771330113 5.868125037355849 0.1390557649232501 5.857459792492024 0.2543176606559016 5.895720061609569 0.5411198927479399 5.741546306500214 0.4201305351659356 5.74135568632237 0.4473328967749751 5.924542618564806 0.5506819982486841 5.885009179554949 0.5275336326060752 5.735643569586635 0.4338826583204476 5.918682986264019 -0.00409614498494193 5.902740361620345 -0.7520543038845062 5.731950011883361 -0.7795095443725586 5.902740361620345 0.5626309017891711 5.835755551708061 0.4194700893104356 6.00682987497948 0.5404594473816824 6.00702030289107</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"216\" source=\"#ID34\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID30\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID28\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID29\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID30\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID31\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 0 6 2 7 8 8 9 8 3 7 5 6 1 9 10 10 2 11 3 11 11 10 4 9 12 12 1 13 6 14 7 14 4 13 13 12 6 15 0 16 14 17 15 17 5 16 7 15 16 18 17 19 18 20 19 20 20 19 21 18 14 21 0 22 8 23 9 23 5 22 15 21 16 24 22 25 23 26 24 26 25 25 21 24 12 27 10 28 1 29 4 29 11 28 13 27 26 30 12 31 6 32 7 32 13 31 27 30 6 33 14 34 28 35 29 35 15 34 7 33 17 36 30 37 18 38 19 38 31 37 20 36 16 39 23 40 17 41 20 41 24 40 21 39 14 42 8 43 32 44 33 44 9 43 15 42 22 45 34 46 23 47 24 47 35 46 25 45 36 48 10 49 12 50 13 50 11 49 37 48 38 51 26 52 6 53 7 53 27 52 39 51 36 54 12 55 40 56 41 56 13 55 37 54 6 57 28 58 42 59 43 59 29 58 7 57 28 60 14 61 32 62 33 62 15 61 29 60 17 63 44 64 30 65 31 65 45 64 20 63 18 66 30 67 46 68 47 68 31 67 19 66 23 69 44 70 17 71 20 71 45 70 24 69 23 72 34 73 44 74 45 74 35 73 24 72 22 75 48 76 34 77 35 77 49 76 25 75 50 78 38 79 6 80 7 80 39 79 51 78 52 81 40 82 38 83 39 83 41 82 53 81 52 84 36 85 40 86 41 86 37 85 53 84 54 87 6 88 42 89 43 89 7 88 55 87 28 90 56 91 57 92 58 92 59 91 29 90 28 93 32 94 56 95 59 95 33 94 29 93 30 96 44 97 60 98 61 98 45 97 31 96 46 99 30 100 60 101 61 101 31 100 47 99 34 102 62 103 44 104 45 104 63 103 35 102 48 105 62 106 34 107 35 107 63 106 49 105 64 108 50 109 6 110 7 110 51 109 65 108 66 111 38 112 50 113 51 113 39 112 67 111 52 114 38 115 66 116 67 116 39 115 53 114 62 117 48 118 52 119 53 119 49 118 63 117 68 120 6 121 54 122 55 122 7 121 69 120 54 123 57 124 70 125 71 125 58 124 55 123 57 126 56 127 70 128 71 128 59 127 58 126 56 129 46 130 60 131 61 131 47 130 59 129 44 132 72 133 60 134 61 134 73 133 45 132 62 135 74 136 44 137 45 137 75 136 63 135 64 138 6 139 68 140 69 140 7 139 65 138 50 141 64 142 76 143 77 143 65 142 51 141 76 144 66 145 50 146 51 146 67 145 77 144 74 147 52 148 66 149 67 149 53 148 75 147 62 150 52 151 74 152 75 152 53 151 63 150 68 153 54 154 78 155 79 155 55 154 69 153 78 156 54 157 70 158 71 158 55 157 79 156 56 159 72 160 70 161 71 161 73 160 59 159 56 162 60 163 72 164 73 164 61 163 59 162 44 165 80 166 72 167 73 167 81 166 45 165 74 168 82 169 44 170 45 170 83 169 75 168 64 171 68 172 84 173 85 173 69 172 65 171 64 174 84 175 76 176 77 176 85 175 65 174 66 177 86 178 82 179 83 179 87 178 67 177 82 180 74 181 66 182 67 182 75 181 83 180 68 183 78 184 84 185 85 185 79 184 69 183 80 186 88 187 70 188 71 188 89 187 81 186 72 189 80 190 70 191 71 191 81 190 73 189 44 192 90 193 80 194 81 194 91 193 45 192 82 195 92 196 44 197 45 197 93 196 83 195 92 198 86 199 94 200 95 200 87 199 93 198 82 201 86 202 92 203 93 203 87 202 83 201 90 204 94 205 88 206 89 206 95 205 91 204 80 207 90 208 88 209 89 209 91 208 81 207 44 210 92 211 90 212 91 212 93 211 45 210 92 213 94 214 90 215 91 215 95 214 93 213</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID37\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID40\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID44\">0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6998841166496277 0.270549088716507 0.3540823757648468 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6998841166496277 0.270549088716507 0.3540823757648468 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID44\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID41\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID45\">0.9884127945771787 0 -0.1517898136112303 0.9969899233375046 0 -0.07753123734003652 0.9884127945771787 0 -0.1517898136112303 -0.9884127945771787 -0 0.1517898136112303 -0.9969899233375046 -0 0.07753123734003652 -0.9884127945771787 -0 0.1517898136112303 0.9884127945771787 0 -0.1517898136112303 0.9983209373992593 0 -0.05792500280762848 -0.9983209373992593 -0 0.05792500280762848 -0.9884127945771787 -0 0.1517898136112303 0.9993509731965242 7.18492665555945e-019 0.03602266468710872 -0.9993509731965242 -7.18492665555945e-019 -0.03602266468710872 0.9990304983920447 0.0002615411009320761 0.04402266324060325 -0.9990304983920447 -0.0002615411009320761 -0.04402266324060325 0.9888373930540065 0.000243802279811211 0.1489984921353378 -0.9888373930540065 -0.000243802279811211 -0.1489984921353378 0.9861057339238535 0.0001949415399641176 0.1661187632999196 -0.9861057339238535 -0.0001949415399641176 -0.1661187632999196 0.9624191563697438 0.0002416039797533959 0.2715682401903204 -0.9624191563697438 -0.0002416039797533959 -0.2715682401903204 0.9573306222604454 0 0.2889949475032887 -0.9573306222604454 -0 -0.2889949475032887 0.8839944246690079 -2.34346267069095e-018 0.4674974407995293 -0.8839944246690079 2.34346267069095e-018 -0.4674974407995293 0.9134632872758963 0.008433748235240745 0.4068337433028604 -0.9134632872758963 -0.008433748235240745 -0.4068337433028604 0.7766929828863236 0.0006653471482944537 0.6298790103252504 -0.7766929828863236 -0.0006653471482944537 -0.6298790103252504 0.8876641481112757 0.01683615633685049 0.4601835546797433 -0.8876641481112757 -0.01683615633685049 -0.4601835546797433 4.474170745649866e-005 -0.002559499189329098 0.9999967234756721 0.0001348128492229062 -0.002562698209801924 0.9999967071962693 4.239615786161625e-005 -0.002559415883111041 0.9999967237910848 -4.239615786161625e-005 0.002559415883111041 -0.9999967237910848 -0.0001348128492229062 0.002562698209801924 -0.9999967071962693 -4.474170745649866e-005 0.002559499189329098 -0.9999967234756721 0.0001382935307154935 -0.002562821831347933 0.9999967064041562 -0.0001382935307154935 0.002562821831347933 -0.9999967064041562</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID45\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID43\">\r\n\t\t\t\t\t<float_array count=\"76\" id=\"ID46\">3.217366635799408 -1.014987970353258 3.174309134483337 0.02936904625421927 -4.606521725654602 -1.014987970353258 3.174309134483337 0.02936904625421971 -5.109987258911133 0.02936904625421971 -4.606521725654602 -1.014987970353258 3.174309134483337 -0.9347596834103267 3.138594627380371 0.1405233934521675 -5.109987258911133 -0.9347596834103267 -5.681315660476685 0.1405233934521675 3.138594627380371 -0.3197488620574284 3.102889358997345 0.73392555109761 -5.681315660476685 -0.3197488620574284 3.099300357882584 0.7525232592401354 -6.220526077713789 0.7525232592401354 -5.684948389092591 -0.3009255327867159 3.119290230740525 0.4236586082511997 -6.220526077713787 -0.2306158695550169 3.099300357882584 -0.2306158695550167 3.122794330120087 0.3925020501514792 -6.405144929885864 0.3925020501514792 -6.216936111450195 -0.2625305373007132 3.122794330120087 -0.3032706499672477 2.803181707859039 0.2349233739714925 -6.405144929885864 -0.3032706499672477 -6.521115899085999 0.2349233739714925 2.803181707859039 -1.936911851088256 2.70549088716507 -1.354481735846471 -6.521115899085999 -1.936911851088256 2.572282569008688 -0.07878836915218171 -6.647628083256216 -0.09970009621027236 -6.661598736798799 -0.5848708598991235 7.077063234366902 -5.209014241747745 7.042690862107612 2.043961881576643 6.562209069469692 -5.209197418525998 7.134453694649073 1.835703753249987 6.782620276737968 1.835703753249987 6.310054666937787 -5.398285491289607</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID46\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID42\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID40\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID41\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID42\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 1 7 10 1 7 12 10 12 14 10 12 16 14 14 16 18 16 20 18 20 22 18 20 24 22 24 26 22 24 28 26 30 31 32 30 36 31</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID42\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID43\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2 4 3 8 4 9 5 4 6 11 7 8 8 11 7 13 9 8 8 11 10 15 11 13 12 15 13 17 14 13 15 19 16 17 17 15 18 19 19 21 20 17 21 19 22 23 23 21 24 23 23 25 25 21 24 23 26 27 27 25 28 27 29 29 30 25 31 33 32 34 33 35 34 34 35 37 36 35 37</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID47\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID50\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID54\">0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6671133041381836 -0.6521289944648743 0.3517222404479981</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID54\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID51\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID55\">-0.9969900277453814 9.626555252388103e-019 0.0775298947262491 -0.9884131832184093 1.906393035707814e-018 0.1517872828666863 -0.9884131832184093 1.906393035707814e-018 0.1517872828666863 0.9884131832184093 -1.906393035707814e-018 -0.1517872828666863 0.9884131832184093 -1.906393035707814e-018 -0.1517872828666863 0.9969900277453814 -9.626555252388103e-019 -0.0775298947262491 -0.9983209916237562 6.4888899971745e-019 0.05792406825629513 -0.9884131832184093 1.700382951580574e-018 0.1517872828666863 0.9884131832184093 -1.700382951580574e-018 -0.1517872828666863 0.9983209916237562 -6.4888899971745e-019 -0.05792406825629513 -0.9993510188497022 0 -0.03602139814140998 0.9993510188497022 -0 0.03602139814140998 -0.9990305921481414 -0.0002616147124452107 -0.04402053509302527 0.9990305921481414 0.0002616147124452107 0.04402053509302527 -0.9943779220620549 -0.0002469081820434832 -0.1058890322549958 0.9943779220620549 0.0002469081820434832 0.1058890322549958 -0.9934290682451136 -0.0001942857728718545 -0.1144493277336469 0.9934290682451136 0.0001942857728718545 0.1144493277336469 -0.9959830180574033 -0.0002479755067153577 -0.0895419803746499 0.9959830180574033 0.0002479755067153577 0.0895419803746499 -0.9972497351322402 -9.175001186096695e-020 -0.07411454498731458 0.9972497351322402 9.175001186096695e-020 0.07411454498731458 -0.9997397171438488 2.749353240624562e-019 0.02281442449717623 0.9997397171438488 -2.749353240624562e-019 -0.02281442449717623 -0.9982766421434597 -0.001456496946020338 0.05866535917749741 0.9982766421434597 0.001456496946020338 -0.05866535917749741 -0.9962136581104646 -9.87810436129017e-005 0.08693870045308721 0.9962136581104646 9.87810436129017e-005 -0.08693870045308721 -0.9913228737516919 -0.002879171972723066 0.1314179224666044 0.9913228737516919 0.002879171972723066 -0.1314179224666044</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID55\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID53\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID56\">-3.201837241649628 -1.153543505140703 4.622048735618591 -1.153543505140703 -3.158780634403229 -0.1091876107511638 5.125510692596436 -0.1091876107511638 -3.158780634403229 -0.9347603867451351 5.125510692596436 -0.9347603867451351 -3.123067617416382 0.1405233934521675 5.696841478347778 0.1405233934521675 -3.123067617416382 -0.2528983824522879 5.696841478347778 -0.2528983824522879 -3.087365627288818 0.8007758246933258 -3.084303793502754 0.8166679514527762 5.699947050034061 -0.2367805808048564 6.235524132752182 0.8166679514527762 -3.104264639119321 1.089387370119314 -3.084303793502755 0.4455548184328019 6.235524132752184 0.4455548184328018 -3.107274770736694 1.061742395136762 6.232461333274841 0.417437203216338 6.420673131942749 1.061742395136762 -3.107274770736694 1.723373104067945 6.420673131942749 1.723373104067945 -2.787659466266632 2.230640169182266 6.53664231300354 2.230640169182266 -2.787659466266632 2.770680346987941 6.53664231300354 2.770680346987941 -2.686533033847809 3.221638161564211 -2.667214906130042 3.449328196154371 6.555779429903087 2.996085165249665 6.540637820919023 3.430599364195978</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID56\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID52\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID50\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID51\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID52\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 0 10 6 0 12 6 10 14 12 10 16 12 14 16 14 18 20 16 18 22 20 18 24 20 22 26 24 22 28 24 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID52\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID53\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2 5 2 8 1 9 3 5 4 9 5 11 6 11 6 9 5 13 7 11 8 13 9 15 10 15 11 13 12 17 13 19 14 15 15 17 16 19 17 17 18 21 19 19 20 21 21 23 22 23 22 21 21 25 23 23 24 25 25 27 26 27 27 25 28 29 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID57\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID58\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID62\">0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7885450124740601 0.3102889358997345 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID62\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID59\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID63\">0.01757355631798894 -0.996658244590752 -0.07977163410397985 0.01700902801069171 -0.9995231595339412 0.02577104036353611 0.01751695589509933 -0.9995282799576263 0.02522645082286458 -0.01751695589509933 0.9995282799576263 -0.02522645082286458 -0.01700902801069171 0.9995231595339412 -0.02577104036353611 -0.01757355631798894 0.996658244590752 0.07977163410397985 0.01625839579783936 -0.9946609971594649 -0.1019076311952124 -0.01625839579783936 0.9946609971594649 0.1019076311952124 0.01508160133426316 -0.9800364416240054 -0.1982450967619426 -0.01508160133426316 0.9800364416240054 0.1982450967619426 0.01366831664102421 -0.9791246266498208 -0.2028007460737008 -0.01366831664102421 0.9791246266498208 0.2028007460737008 0.01306527961609271 -0.9558446256026917 -0.2935819309409272 -0.01306527961609271 0.9558446256026917 0.2935819309409272 0.01273971076296427 -0.9520607276259343 -0.3056436989078172 -0.01273971076296427 0.9520607276259343 0.3056436989078172 0.01238562344223381 -0.9255817632390216 -0.3783450751513635 -0.01238562344223381 0.9255817632390216 0.3783450751513635 0.01238350552953238 -0.9254423735519356 -0.3786859675580281 -0.01238350552953238 0.9254423735519356 0.3786859675580281 0.01241741070313897 -0.9280470570654398 -0.3722559170565407 -0.01241741070313897 0.9280470570654398 0.3722559170565407 0.01241179030027248 -0.92760980977564 -0.3733443293657248 -0.01241179030027248 0.92760980977564 0.3733443293657248 0.01248377637649902 -0.932921716390152 -0.359862788316651 -0.01248377637649902 0.932921716390152 0.359862788316651 0.0124849284269848 -0.9329212995850048 -0.3598638288892045 -0.0124849284269848 0.9329212995850048 0.3598638288892045 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0 0 -1 -0 -0 1 -0.01337534588875929 0.999303232382507 0.03484465342387041 -0.01337534588875929 0.999303232382507 0.03484465342387041 -0.0133767273996353 0.9994525532114903 0.03025982556309336 0.0133767273996353 -0.9994525532114903 -0.03025982556309336 0.01337534588875929 -0.999303232382507 -0.03484465342387041 0.01337534588875929 -0.999303232382507 -0.03484465342387041 -0.01337610627739966 0.9994397139226007 0.03068123229542974 -0.01337456197828937 0.9993032712123542 0.03484384072081131 0.01337456197828937 -0.9993032712123542 -0.03484384072081131 0.01337610627739966 -0.9994397139226007 -0.03068123229542974 -0.01337717699255372 0.9995742348990625 0.02593067800238563 0.01337717699255372 -0.9995742348990625 -0.02593067800238563 -0.01337623645414197 0.9995744997605131 0.02592095150342658 0.01337623645414197 -0.9995744997605131 -0.02592095150342658 -0.01337926781303881 0.9999090010156541 0.001727680718123866 0.01337926781303881 -0.9999090010156541 -0.001727680718123866 -0.01366164874581822 0.9999038562712569 -0.002374356210722729 0.01366164874581822 -0.9999038562712569 0.002374356210722729 -0.01373271164826091 0.985340622057855 0.1700449092252551 0.01373271164826091 -0.985340622057855 -0.1700449092252551 -0.01486615069782372 0.9737391817984691 0.2271805524112425 0.01486615069782372 -0.9737391817984691 -0.2271805524112425 -0.0152885886490525 0.9353144770558194 0.353487040875503 0.0152885886490525 -0.9353144770558194 -0.353487040875503 -0.02312573667733494 0.9506753367844222 0.3093244321629897 0.02312573667733494 -0.9506753367844222 -0.3093244321629897 -0.03283908092088732 0.9857753155064591 0.1648290693488631 0.03283908092088732 -0.9857753155064591 -0.1648290693488631 -0.05301767165236267 0.9825105025154766 0.1784999690177787 0.05301767165236267 -0.9825105025154766 -0.1784999690177787</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID63\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID61\">\r\n\t\t\t\t\t<float_array count=\"152\" id=\"ID64\">6.486414740553204 2.200584320257102 6.559209671773116 2.63147311179554 7.074063889325645 2.631473580841196 7.352576081397806 2.205026862540071 6.48108520835931 2.205026862540071 7.068745480385288 2.635906735090988 7.352576081397806 3.224042151981169 6.496194904353771 2.708773932450279 6.48108520835931 3.224042151981169 7.606635830927045 2.684044270212909 6.519269471646906 2.684044270212909 7.376054453682446 3.198896900317751 7.606635830927044 2.931616529341707 6.639766324665787 2.27734928889875 6.519269471646906 2.931616529341706 7.805803415294651 2.271617827094184 6.645463546737465 2.271617827094184 7.612500660756662 2.925731755297332 7.805803415294649 2.953149377663582 6.746457275010557 1.821357505336036 6.645463546737464 2.953149377663581 7.906799264988455 1.821359718478698 6.746454620511368 1.821359718478698 7.8058005157308 2.953151732755598 7.906799264988455 1.885349226639128 6.754099226591073 0.7199301840054732 6.746454620511367 1.885349226639128 7.914452876516921 0.7199222391663144 6.754108263938685 0.7199214768751236 7.906809292079772 1.885339913695565 6.559353637864163 -0.5018143597871121 6.754108393519553 0.6045616013489867 7.914453006097798 0.6045623551865789 7.719681411874956 -0.5017985319122876 6.559340327405119 -0.5017985319122876 7.914438265428908 0.6045792671104565 -6.621782779693604 2.518778630097707 -6.621782779693604 -3.636011672019959 -7.782019972801209 -3.623797090848287 -7.782019972801209 2.530995086828868 -6.664041417716023 -2.051149898773439 -7.824382534092096 -2.051149898773439 -8.025300206329026 -1.018266833586361 -6.864953118724609 -1.018265775553878 -6.664038974574384 -2.051148107694036 -8.025297799093693 -1.018265071791724 -6.864953098071562 -0.997458293041149 -8.025297778440647 -0.9974575894663439 -8.024819822562574 0.07819240295993857 -6.864471208429597 0.07819482848281474 -6.864949097792568 -0.9974558364394162 -8.024815868857917 0.07819482848281474 -6.864471208429595 0.07910333492510922 -8.024815868857916 0.07910333492510922 -7.926265037739377 1.130297099530577 -6.765915653925095 1.130301932393614 -6.864462769493923 0.07910822762635848 -7.926256694531853 1.130301932393614 -6.765915653925095 1.256046983758888 -7.926256694531853 1.256046983758888 -7.73997953774591 1.893894132554812 -6.655309974446317 1.891253165835361 -6.768592688689693 1.253424576120478 -7.742676210338567 1.891253165835361 -6.655309974446317 0.5981015604815404 -7.742676210338567 0.5981015604815404 -7.509189229834411 1.163019357512824 -6.647193467686876 1.16124259311054 -6.665929778665064 0.5952743692480706 -7.518684266401535 1.16124259311054 -6.647193467686875 1.98374502410431 -7.518684266401534 1.98374502410431 -7.045918801752059 2.438513755918931 -6.782620276737963 2.414315454238441 -6.739210310102997 1.957669605233432 -7.134453694649066 2.414315454238441</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"76\" source=\"#ID64\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID60\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID58\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID59\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"52\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID60\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID61\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 6 6 8 7 0 8 5 8 9 7 7 6 10 9 8 10 6 11 7 11 9 10 11 9 10 12 12 13 8 14 9 14 13 13 11 12 14 15 12 16 10 17 11 17 13 16 15 15 14 18 16 19 12 20 13 20 17 19 15 18 18 21 16 22 14 23 15 23 17 22 19 21 18 24 20 25 16 26 17 26 21 25 19 24 22 27 20 28 18 29 19 29 21 28 23 27 24 30 20 31 22 32 23 32 21 31 25 30 26 33 24 34 22 35 23 35 25 34 27 33 28 36 29 37 30 38 31 38 32 37 33 36 34 39 28 36 30 38 31 38 33 36 35 39 36 40 37 41 38 42 39 42 40 41 41 40 42 43 43 44 38 45 39 45 44 44 45 43 42 46 38 47 46 48 47 48 39 47 45 46 48 49 42 50 46 51 47 51 45 50 49 49 48 52 46 53 50 54 51 54 47 53 49 52 52 55 48 56 50 57 51 57 49 56 53 55 52 58 50 59 54 60 55 60 51 59 53 58 56 61 52 62 54 63 55 63 53 62 57 61 56 64 54 65 58 66 59 66 55 65 57 64 60 67 56 68 58 69 59 69 57 68 61 67 60 70 58 71 62 72 63 72 59 71 61 70 64 73 60 74 62 75 63 75 61 74 65 73</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID65\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID66\">\r\n\t\t\t\t\t<float_array count=\"792\" id=\"ID70\">0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.645243763923645 -0.5195940136909485 0.2845224440097809 0.645243763923645 -0.5195940136909485 0.2845224440097809 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607192754745483 -0.5262042284011841 0.2845224440097809 0.6607192754745483 -0.5262042284011841 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6454480886459351 -0.5189134478569031 0.2888893783092499 0.6454480886459351 -0.5189134478569031 0.2888893783092499 0.6454480886459351 -0.5189134478569031 0.2801555991172791 0.6454480886459351 -0.5189134478569031 0.2801555991172791 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6320086717605591 -0.4944190382957459 0.2845224440097809 0.6320086717605591 -0.4944190382957459 0.2845224440097809 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6325429677963257 -0.4940980672836304 0.2801555991172791 0.6325429677963257 -0.4940980672836304 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6325429677963257 -0.4940980672836304 0.2888893783092499 0.6325429677963257 -0.4940980672836304 0.2888893783092499 0.6460316181182861 -0.516976535320282 0.2925914824008942 0.6460316181182861 -0.516976535320282 0.2925914824008942 0.6340638399124146 -0.4931805729866028 0.2764533758163452 0.6340638399124146 -0.4931805729866028 0.2764533758163452 0.6460316181182861 -0.516976535320282 0.2764533758163452 0.6460316181182861 -0.516976535320282 0.2764533758163452 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6284593343734741 -0.4669303297996521 0.2845224440097809 0.6284593343734741 -0.4669303297996521 0.2845224440097809 0.6290544867515564 -0.4669303297996521 0.2801555991172791 0.6290544867515564 -0.4669303297996521 0.2801555991172791 0.6307517290115356 -0.4669303297996521 0.2764533758163452 0.6307517290115356 -0.4669303297996521 0.2764533758163452 0.6607219576835632 -0.5225614309310913 0.2950650453567505 0.6607219576835632 -0.5225614309310913 0.2950650453567505 0.6469043493270874 -0.5140765309333801 0.2950650453567505 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6469043493270874 -0.5140765309333801 0.2950650453567505 0.6469043493270874 -0.5140765309333801 0.2739797532558441 0.6469043493270874 -0.5140765309333801 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6290544867515564 -0.4669303297996521 0.2888893783092499 0.6290544867515564 -0.4669303297996521 0.2888893783092499 0.6340638399124146 -0.4931805729866028 0.2925914824008942 0.6340638399124146 -0.4931805729866028 0.2925914824008942 0.6332915425300598 -0.4669303297996521 0.2739797532558441 0.6332915425300598 -0.4669303297996521 0.2739797532558441 0.6363397836685181 -0.4918103218078613 0.2739797532558441 0.6363397836685181 -0.4918103218078613 0.2739797532558441 0.6607241034507752 -0.5194733142852783 0.2925914824008942 0.6607241034507752 -0.5194733142852783 0.2925914824008942 0.6479336619377136 -0.5106549263000488 0.2959337532520294 0.6479336619377136 -0.5106549263000488 0.2959337532520294 0.6479336619377136 -0.5106549263000488 0.2731113433837891 0.6479336619377136 -0.5106549263000488 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607219576835632 -0.5225614309310913 0.2739797532558441 0.6607219576835632 -0.5225614309310913 0.2739797532558441 0.630005955696106 -0.438325822353363 0.2845224440097809 0.630005955696106 -0.438325822353363 0.2845224440097809 0.6305613517761231 -0.4385876655578613 0.2801555991172791 0.6305613517761231 -0.4385876655578613 0.2801555991172791 0.6321433782577515 -0.439333975315094 0.2764533758163452 0.6321433782577515 -0.439333975315094 0.2764533758163452 0.6345111727714539 -0.44045090675354 0.2739797532558441 0.6345111727714539 -0.44045090675354 0.2739797532558441 0.6607251763343811 -0.5174095630645752 0.2888893783092499 0.6607251763343811 -0.5174095630645752 0.2888893783092499 0.6489629149436951 -0.5072347521781921 0.2950650453567505 0.6489629149436951 -0.5072347521781921 0.2950650453567505 0.6363397836685181 -0.4918103218078613 0.2950650453567505 0.6363397836685181 -0.4918103218078613 0.2950650453567505 0.6390239000320435 -0.4901936650276184 0.2731113433837891 0.6390239000320435 -0.4901936650276184 0.2731113433837891 0.6489629149436951 -0.5072347521781921 0.2739797532558441 0.6489629149436951 -0.5072347521781921 0.2739797532558441 0.6607241034507752 -0.5194733142852783 0.2764533758163452 0.6607241034507752 -0.5194733142852783 0.2764533758163452 0.6305613517761231 -0.4385876655578613 0.2888893783092499 0.6305613517761231 -0.4385876655578613 0.2888893783092499 0.6307517290115356 -0.4669303297996521 0.2925914824008942 0.6307517290115356 -0.4669303297996521 0.2925914824008942 0.637304425239563 -0.4417674541473389 0.2731113433837891 0.637304425239563 -0.4417674541473389 0.2731113433837891 0.6362877488136292 -0.4669303297996521 0.2731113433837891 0.6362877488136292 -0.4669303297996521 0.2731113433837891 0.6607257723808289 -0.5166845917701721 0.2845224440097809 0.6607257723808289 -0.5166845917701721 0.2845224440097809 0.6498355865478516 -0.5043348670005798 0.2925914824008942 0.6498355865478516 -0.5043348670005798 0.2925914824008942 0.6390239000320435 -0.4901936650276184 0.2959337532520294 0.6390239000320435 -0.4901936650276184 0.2959337532520294 0.6417081952095032 -0.4885762333869934 0.2739797532558441 0.6417081952095032 -0.4885762333869934 0.2739797532558441 0.6498355865478516 -0.5043348670005798 0.2764533758163452 0.6498355865478516 -0.5043348670005798 0.2764533758163452 0.6607251763343811 -0.5174095630645752 0.2801555991172791 0.6607251763343811 -0.5174095630645752 0.2801555991172791 0.6454863548278809 -0.4090263247489929 0.2845224440097809 0.6454863548278809 -0.4090263247489929 0.2845224440097809 0.645751953125 -0.4096751809120178 0.2801555991172791 0.645751953125 -0.4096751809120178 0.2801555991172791 0.646506130695343 -0.4115235209465027 0.2764533758163452 0.646506130695343 -0.4115235209465027 0.2764533758163452 0.6476355791091919 -0.4142892956733704 0.2739797532558441 0.6476355791091919 -0.4142892956733704 0.2739797532558441 0.6489681005477905 -0.4175517559051514 0.2731113433837891 0.6489681005477905 -0.4175517559051514 0.2731113433837891 0.6504192352294922 -0.5023968815803528 0.2888893783092499 0.6504192352294922 -0.5023968815803528 0.2888893783092499 0.6417081952095032 -0.4885762333869934 0.2950650453567505 0.6417081952095032 -0.4885762333869934 0.2950650453567505 0.6332915425300598 -0.4669303297996521 0.2950650453567505 0.6332915425300598 -0.4669303297996521 0.2950650453567505 0.6392834782600403 -0.4669303297996521 0.2739797532558441 0.6392834782600403 -0.4669303297996521 0.2739797532558441 0.6439837217330933 -0.4872047901153565 0.2764533758163452 0.6439837217330933 -0.4872047901153565 0.2764533758163452 0.6504192352294922 -0.5023968815803528 0.2801555991172791 0.6504192352294922 -0.5023968815803528 0.2801555991172791 0.645751953125 -0.4096751809120178 0.2888893783092499 0.645751953125 -0.4096751809120178 0.2888893783092499 0.6321433782577515 -0.439333975315094 0.2925914824008942 0.6321433782577515 -0.439333975315094 0.2925914824008942 0.6502998471260071 -0.4208146929740906 0.2739797532558441 0.6502998471260071 -0.4208146929740906 0.2739797532558441 0.6400973200798035 -0.4430851340293884 0.2739797532558441 0.6400973200798035 -0.4430851340293884 0.2739797532558441 0.6506238579750061 -0.5017167925834656 0.2845224440097809 0.6506238579750061 -0.5017167925834656 0.2845224440097809 0.6439837217330933 -0.4872047901153565 0.2925914824008942 0.6439837217330933 -0.4872047901153565 0.2925914824008942 0.6362877488136292 -0.4669303297996521 0.2959337532520294 0.6362877488136292 -0.4669303297996521 0.2959337532520294 0.6418229341506958 -0.4669303297996521 0.2764533758163452 0.6418229341506958 -0.4669303297996521 0.2764533758163452 0.6455046534538269 -0.4862898588180542 0.2801555991172791 0.6455046534538269 -0.4862898588180542 0.2801555991172791 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602405309677124 -0.4085699319839478 0.2739797532558441 0.6602405309677124 -0.4085699319839478 0.2739797532558441 0.6455046534538269 -0.4862898588180542 0.2888893783092499 0.6455046534538269 -0.4862898588180542 0.2888893783092499 0.6392834782600403 -0.4669303297996521 0.2950650453567505 0.6392834782600403 -0.4669303297996521 0.2950650453567505 0.6345111727714539 -0.44045090675354 0.2950650453567505 0.6345111727714539 -0.44045090675354 0.2950650453567505 0.6424651741981506 -0.444201648235321 0.2764533758163452 0.6424651741981506 -0.444201648235321 0.2764533758163452 0.6435200572013855 -0.4669303297996521 0.2801555991172791 0.6435200572013855 -0.4669303297996521 0.2801555991172791 0.6460384726524353 -0.4859673380851746 0.2845224440097809 0.6460384726524353 -0.4859673380851746 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.646506130695343 -0.4115235209465027 0.2925914824008942 0.646506130695343 -0.4115235209465027 0.2925914824008942 0.66024249792099 -0.4116581082344055 0.2764533758163452 0.66024249792099 -0.4116581082344055 0.2764533758163452 0.6514291167259216 -0.4235804677009583 0.2764533758163452 0.6514291167259216 -0.4235804677009583 0.2764533758163452 0.6418229341506958 -0.4669303297996521 0.2925914824008942 0.6418229341506958 -0.4669303297996521 0.2925914824008942 0.637304425239563 -0.4417674541473389 0.2959337532520294 0.637304425239563 -0.4417674541473389 0.2959337532520294 0.644047737121582 -0.4449477791786194 0.2801555991172791 0.644047737121582 -0.4449477791786194 0.2801555991172791 0.6441159844398499 -0.4669303297996521 0.2845224440097809 0.6441159844398499 -0.4669303297996521 0.2845224440097809 0.6602380871772766 -0.404927670955658 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602380871772766 -0.404927670955658 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6435200572013855 -0.4669303297996521 0.2888893783092499 0.6435200572013855 -0.4669303297996521 0.2888893783092499 0.6400973200798035 -0.4430851340293884 0.2950650453567505 0.6400973200798035 -0.4430851340293884 0.2950650453567505 0.6476355791091919 -0.4142892956733704 0.2950650453567505 0.6476355791091919 -0.4142892956733704 0.2950650453567505 0.6521837711334229 -0.4254279732704163 0.2801555991172791 0.6521837711334229 -0.4254279732704163 0.2801555991172791 0.6446030139923096 -0.4452097415924072 0.2845224440097809 0.6446030139923096 -0.4452097415924072 0.2845224440097809 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602438688278198 -0.4137213826179504 0.2801555991172791 0.6602438688278198 -0.4137213826179504 0.2801555991172791 0.6424651741981506 -0.444201648235321 0.2925914824008942 0.6424651741981506 -0.444201648235321 0.2925914824008942 0.6489681005477905 -0.4175517559051514 0.2959337532520294 0.6489681005477905 -0.4175517559051514 0.2959337532520294 0.6524484753608704 -0.4260773062705994 0.2845224440097809 0.6524484753608704 -0.4260773062705994 0.2845224440097809 0.644047737121582 -0.4449477791786194 0.2888893783092499 0.644047737121582 -0.4449477791786194 0.2888893783092499 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602442264556885 -0.4144457578659058 0.2845224440097809 0.6602442264556885 -0.4144457578659058 0.2845224440097809 0.6502998471260071 -0.4208146929740906 0.2950650453567505 0.6502998471260071 -0.4208146929740906 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6521837711334229 -0.4254279732704163 0.2888893783092499 0.6521837711334229 -0.4254279732704163 0.2888893783092499 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602438688278198 -0.4137213826179504 0.2888893783092499 0.6602438688278198 -0.4137213826179504 0.2888893783092499 0.6514291167259216 -0.4235804677009583 0.2925914824008942 0.6514291167259216 -0.4235804677009583 0.2925914824008942 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602405309677124 -0.4085699319839478 0.2950650453567505 0.6602405309677124 -0.4085699319839478 0.2950650453567505 0.66024249792099 -0.4116581082344055 0.2925914824008942 0.66024249792099 -0.4116581082344055 0.2925914824008942</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"264\" source=\"#ID70\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID67\">\r\n\t\t\t\t\t<float_array count=\"792\" id=\"ID71\">-0.705751612624297 -0.6736031467969834 0.2194845368207189 -0.723249639387585 -0.6905851167376961 -0.001468218686374701 -0.8075908669576146 -0.5897411418470161 -0.001541823474401379 0.8075908669576146 0.5897411418470161 0.001541823474401379 0.723249639387585 0.6905851167376961 0.001468218686374701 0.705751612624297 0.6736031467969834 -0.2194845368207189 0.9999998549764383 -0.0005385602124681323 1.798811497296893e-010 0.9999998619819208 -0.0005253479946148091 6.754579145190894e-006 0.999999813854024 -0.0006101572892038408 -2.340183956586328e-011 -0.999999813854024 0.0006101572892038408 2.340183956586328e-011 -0.9999998619819208 0.0005253479946148091 -6.754579145190894e-006 -0.9999998549764383 0.0005385602124681323 -1.798811497296893e-010 -0.7832090569802331 -0.563885812854759 0.2619472525629185 0.7832090569802331 0.563885812854759 -0.2619472525629185 -0.7817598749353603 -0.5645085171358366 -0.26491816098967 0.7817598749353603 0.5645085171358366 0.26491816098967 0.9999998411775229 -0.0005634720393395381 -1.200790474749005e-005 -0.9999998411775229 0.0005634720393395381 1.200790474749005e-005 0.9999998619817377 -0.0005253483505001034 -6.754000790909341e-006 -0.9999998619817377 0.0005253483505001034 6.754000790909341e-006 -0.9527376244220858 -0.303793227155968 -0.0008331534811120218 0.9527376244220858 0.303793227155968 0.0008331534811120218 -0.6459756364898233 -0.6063525859232831 0.4637370144874305 0.6459756364898233 0.6063525859232831 -0.4637370144874305 -0.9154121483802826 -0.2904213362317121 -0.2787042268412563 0.9154121483802826 0.2904213362317121 0.2787042268412563 -0.7111187578705497 -0.6677746268057927 -0.2199708162439523 0.7111187578705497 0.6677746268057927 0.2199708162439523 0.9999998580605745 -0.0005324296017061601 -1.993866258511989e-005 -0.9999998580605745 0.0005324296017061601 1.993866258511989e-005 0.9999998411772466 -0.0005634725222285433 1.200826317338047e-005 -0.9999998411772466 0.0005634725222285433 -1.200826317338047e-005 -0.9168306842379277 -0.2874967770350575 0.277068763367991 0.9168306842379277 0.2874967770350575 -0.277068763367991 -0.6899817838723537 -0.4765390401152086 0.544826285315237 0.6899817838723537 0.4765390401152086 -0.544826285315237 -0.7842961867475975 -0.2413048357223482 -0.5715343101776026 0.7842961867475975 0.2413048357223482 0.5715343101776026 -0.6884771646026739 -0.4767686045504761 -0.5465262038874754 0.6884771646026739 0.4767686045504761 0.5465262038874754 0.9999998166802554 -0.0006055076015476713 5.482529811520003e-021 -0.9999998166802554 0.0006055076015476713 -5.482529811520003e-021 -0.4938391524225622 -0.4499982720094807 0.7440594376278327 0.4938391524225622 0.4499982720094807 -0.7440594376278327 -0.6578123227561983 -0.5980467967039984 -0.4578460188558833 0.6578123227561983 0.5980467967039984 0.4578460188558833 0.9999998580600193 -0.0005324306374811512 1.993885123911218e-005 -0.9999998580600193 0.0005324306374811512 -1.993885123911218e-005 -0.9993172590390673 -0.03694610674034449 3.135883035788179e-005 0.9993172590390673 0.03694610674034449 -3.135883035788179e-005 -0.960465965536488 -0.03630975369366535 -0.2760194392298613 0.960465965536488 0.03630975369366535 0.2760194392298613 -0.8205875269300812 -0.03194355955907711 -0.5706274788769542 0.8205875269300812 0.03194355955907711 0.5706274788769542 0.7939095379223065 0.1969112463909028 0.5752682910093089 -0.7939095379223065 -0.1969112463909028 -0.5752682910093089 -0.4651506096546429 -0.2948383542682578 0.8346887175410359 -0.1387519338525277 -0.1243833632592113 0.9824849514351408 0.1387519338525277 0.1243833632592113 -0.9824849514351408 0.4651506096546429 0.2948383542682578 -0.8346887175410359 -0.4688103618416526 -0.2943564121356371 -0.8328091901897661 0.4688103618416526 0.2943564121356371 0.8328091901897661 -0.5129314289867056 -0.4461939983816099 -0.7333568469482561 0.5129314289867056 0.4461939983816099 0.7333568469482561 0.9999998166802563 -0.0006055075999022886 -1.096546068823298e-020 -0.9999998166802563 0.0006055075999022886 1.096546068823298e-020 -0.9604972668016695 -0.03495668559621632 0.276085187213385 0.9604972668016695 0.03495668559621632 -0.276085187213385 -0.7866645316355505 -0.2363439708880585 0.570351156824885 0.7866645316355505 0.2363439708880585 -0.570351156824885 -0.5130348197170416 -0.02081339521567967 -0.8581154213376535 0.5130348197170416 0.02081339521567967 0.8581154213376535 -0.4995435721539706 -0.1430177528752383 -0.8544016279725641 0.4995435721539706 0.1430177528752383 0.8544016279725641 0.9000285742012102 0.3063376208368318 0.3100093993435784 -0.9000285742012102 -0.3063376208368318 -0.3100093993435784 -0.03636807467283153 -0.006606222029889989 0.999316626988205 0.03636807467283153 0.006606222029889989 -0.999316626988205 -0.04812466771604267 -0.007954144418886417 -0.9988096655238093 0.04812466771604267 0.007954144418886417 0.9988096655238093 -0.1526086015993849 -0.1285731755270082 -0.9798875207148938 0.1526086015993849 0.1285731755270082 0.9798875207148938 0.7996254711754621 0.1929644709936232 -0.5686508760052793 -0.7996254711754621 -0.1929644709936232 0.5686508760052793 -0.9631114801070717 0.2691022468341752 0.0005075773480541925 0.9631114801070717 -0.2691022468341752 -0.0005075773480541925 -0.9262260303536134 0.2559807553453563 -0.2767294591983437 0.9262260303536134 -0.2559807553453563 0.2767294591983437 -0.7941112433644082 0.2126601577859673 -0.5693531333475573 0.7941112433644082 -0.2126601577859673 0.5693531333475573 -0.5072819859800244 0.1267210860462836 -0.8524123139956467 0.5072819859800244 -0.1267210860462836 0.8524123139956467 0.937110602165385 0.3235995292060994 0.1307939754224954 -0.937110602165385 -0.3235995292060994 -0.1307939754224954 0.4683145507705584 0.2666103025462021 0.8423778416558645 -0.4683145507705584 -0.2666103025462021 -0.8423778416558645 -0.5006817121148732 -0.1383947502935547 0.854496761986202 0.5006817121148732 0.1383947502935547 -0.854496761986202 -0.02916676532904535 -0.002607048449104029 -0.9995711595972666 0.02916676532904535 0.002607048449104029 0.9995711595972666 0.4686365287356026 0.2634175385470021 -0.8432028251378688 -0.4686365287356026 -0.2634175385470021 0.8432028251378688 0.9063167055109044 0.2979834863464362 -0.2996595921653166 -0.9063167055109044 -0.2979834863464362 0.2996595921653166 -0.9256385792573044 0.2571014635508372 0.2776545660178067 0.9256385792573044 -0.2571014635508372 -0.2776545660178067 -0.8206331206288936 -0.02964916322471281 0.5706857352755176 0.8206331206288936 0.02964916322471281 -0.5706857352755176 -0.03606796853137018 0.003069262570959986 -0.9993446258790261 0.03606796853137018 -0.003069262570959986 0.9993446258790261 -0.01386625369199847 -0.001056049480266805 -0.9999033012086941 0.01386625369199847 0.001056049480266805 0.9999033012086941 0.9469315112745416 0.3214314072292765 0.001601062746909136 -0.9469315112745416 -0.3214314072292765 -0.001601062746909136 0.7641065348004036 0.3901442817233559 0.5137398591835036 -0.7641065348004036 -0.3901442817233559 -0.5137398591835036 -0.0253409147764243 -0.002224590617548376 0.9996763922564534 0.0253409147764243 0.002224590617548376 -0.9996763922564534 0.4738172194062332 0.1197701700090635 -0.8724404558307378 -0.4738172194062332 -0.1197701700090635 0.8724404558307378 0.7711373476771701 0.3842751232355434 -0.5076217299128626 -0.7711373476771701 -0.3842751232355434 0.5076217299128626 0.940058892599263 0.3172032298953741 -0.1251854200336039 -0.940058892599263 -0.3172032298953741 0.1251854200336039 -0.7886999360348029 0.6147767214633088 0.001411965128137241 0.7886999360348029 -0.6147767214633088 -0.001411965128137241 -0.7623290759492826 0.5848091274625029 -0.2772231310674836 0.7623290759492826 -0.5848091274625029 0.2772231310674836 -0.6631486409280196 0.4874613557369795 -0.5679923473942115 0.6631486409280196 -0.4874613557369795 0.5679923473942115 -0.4363268446364034 0.2955463160935649 -0.8498654362269137 0.4363268446364034 -0.2955463160935649 0.8498654362269137 -0.0295904739926534 0.007287631111918657 -0.9995355392789527 0.0295904739926534 -0.007287631111918657 0.9995355392789527 0.8781779081951024 0.4175185727202028 0.2334133736351856 -0.8781779081951024 -0.4175185727202028 -0.2334133736351856 0.4800981526433935 0.1133023647646291 0.8698668507117304 -0.4800981526433935 -0.1133023647646291 -0.8698668507117304 -0.5131310993602707 -0.0187526802328627 0.8581053617437688 0.5131310993602707 0.0187526802328627 -0.8581053617437688 0.4952743046220077 0.02034728321867889 -0.8684983311709963 -0.4952743046220077 -0.02034728321867889 0.8684983311709963 0.7972622849144865 0.1792769318503911 -0.5763962445742011 -0.7972622849144865 -0.1792769318503911 0.5763962445742011 0.8823867396385429 0.41265543867549 -0.2260732859972651 -0.8823867396385429 -0.41265543867549 0.2260732859972651 -0.7595042982554835 0.5870603968540626 0.280202268686383 0.7595042982554835 -0.5870603968540626 -0.280202268686383 -0.7932577613415092 0.2145816981708134 0.5698217430754876 0.7932577613415092 -0.2145816981708134 -0.5698217430754876 0.4353447705095689 -0.2671658094731063 -0.8597077183779092 -0.4353447705095689 0.2671658094731063 0.8597077183779092 0.4665169607832366 -0.1084626786762199 -0.8778369852290067 -0.4665169607832366 0.1084626786762199 0.8778369852290067 0.9085269655623637 0.4178115441467183 0.003502345468202378 -0.9085269655623637 -0.4178115441467183 -0.003502345468202378 0.8008465080303187 0.1689211539185453 0.5745524469832773 -0.8008465080303187 -0.1689211539185453 -0.5745524469832773 -0.01394041370417603 -0.0009874344792977709 0.9999023401507297 0.01394041370417603 0.0009874344792977709 -0.9999023401507297 0.81484435028947 0.03368710526116375 -0.5787001501126944 -0.81484435028947 -0.03368710526116375 0.5787001501126944 0.9422159256443544 0.1931516140816549 -0.2737181094480306 -0.9422159256443544 -0.1931516140816549 0.2737181094480306 -0.6804146158758695 0.7328252533849206 0.00176025674830374 0.6804146158758695 -0.7328252533849206 -0.00176025674830374 -0.6618880202834722 0.7123564045500399 -0.2333508120872217 0.6618880202834722 -0.7123564045500399 0.2333508120872217 -0.6005935287410511 0.633267848924303 -0.4881180643585715 0.6005935287410511 -0.633267848924303 0.4881180643585715 -0.4501576861779418 0.4575811199314518 -0.7667969589514554 0.4501576861779418 -0.4575811199314518 0.7667969589514554 -0.1180449525871773 0.1181456463689562 -0.9859548647949118 0.1180449525871773 -0.1181456463689562 0.9859548647949118 0.7873239455630373 -0.2010483539872131 -0.5828383687628018 -0.7873239455630373 0.2010483539872131 0.5828383687628018 0.9431346571913443 0.1855647482284393 0.2757947472659363 -0.9431346571913443 -0.1855647482284393 -0.2757947472659363 0.4953154525289081 0.01781029697467817 0.8685305957810332 -0.4953154525289081 -0.01781029697467817 -0.8685305957810332 -0.5073106571574744 0.1285893059795506 0.8521154191317917 0.5073106571574744 -0.1285893059795506 -0.8521154191317917 0.7913989160805892 -0.1706694853308344 -0.5869920633223047 -0.7913989160805892 0.1706694853308344 0.5869920633223047 0.9593414664545559 0.03890179671757865 -0.2795542898132069 -0.9593414664545559 -0.03890179671757865 0.2795542898132069 0.9816075400361064 0.1908982818473136 0.00211738801526375 -0.9816075400361064 -0.1908982818473136 -0.00211738801526375 -0.668592732933499 0.7058284386373456 0.2340725799389628 0.668592732933499 -0.7058284386373456 -0.2340725799389628 -0.658648055556712 0.4905608607123966 0.5705548009161566 0.658648055556712 -0.4905608607123966 -0.5705548009161566 0.8945237521063432 -0.3128950493248178 -0.319255297568591 -0.8945237521063432 0.3128950493248178 0.319255297568591 0.7273308374623275 -0.4107140561815599 -0.5498216228298409 -0.7273308374623275 0.4107140561815599 0.5498216228298409 0.8149356869034029 0.03016825800147217 0.5787656714253494 -0.8149356869034029 -0.03016825800147217 -0.5787656714253494 -0.03815079619648202 0.003415148224166548 0.9992661574936786 0.03815079619648202 -0.003415148224166548 -0.9992661574936786 0.9388012737182524 -0.1951675219529285 -0.2838341185265438 -0.9388012737182524 0.1951675219529285 0.2838341185265438 0.9992277367336863 0.03929287538264983 -9.286468785953477e-006 -0.9992277367336863 -0.03929287538264983 9.286468785953477e-006 0.9999997700670603 0.0006781340773516428 1.091712874520978e-011 0.999999741515791 0.0007190041331446171 -1.186517879136609e-006 0.9999997627535195 0.0006888344536469859 -5.398966828881975e-010 -0.9999997627535195 -0.0006888344536469859 5.398966828881975e-010 -0.999999741515791 -0.0007190041331446171 1.186517879136609e-006 -0.9999997700670603 -0.0006781340773516428 -1.091712874520978e-011 0.9999997415162626 0.0007190034793928838 1.185225566045566e-006 -0.9999997415162626 -0.0007190034793928838 -1.185225566045566e-006 0.9999997591493971 0.0006939736981349089 1.008237387055068e-005 -0.9999997591493971 -0.0006939736981349089 -1.008237387055068e-005 0.9999997616215287 0.0006904002692460185 -1.021538954553776e-005 -0.9999997616215287 -0.0006904002692460185 1.021538954553776e-005 0.9999997581675503 0.0006954601648648084 -1.095769135979897e-020 -0.9999997581675503 -0.0006954601648648084 1.095769135979897e-020 0.9594300725529456 0.03651680147267897 0.279571921142404 -0.9594300725529456 -0.03651680147267897 -0.279571921142404 0.4640834765258798 -0.1107483895265082 0.8788408963133987 -0.4640834765258798 0.1107483895265082 -0.8788408963133987 -0.4349383883559403 0.298045747182913 0.8497042608581626 0.4349383883559403 -0.298045747182913 -0.8497042608581626 0.8509522788102882 -0.4576708245757746 -0.2577161918073987 -0.8509522788102882 0.4576708245757746 0.2577161918073987 0.9793566160984792 -0.2021367815241144 -0.001157609264210023 -0.9793566160984792 0.2021367815241144 0.001157609264210023 0.9999997591488229 0.0006939745151300152 -1.008309259434636e-005 -0.9999997591488229 -0.0006939745151300152 1.008309259434636e-005 -0.6150886461380279 0.6241615889410819 0.481755402961536 0.6150886461380279 -0.6241615889410819 -0.481755402961536 0.9355903546303108 -0.3265017138224018 -0.134414728336458 -0.9355903546303108 0.3265017138224018 0.134414728336458 0.7902373545678373 -0.1746497282835001 0.5873860705329383 -0.7902373545678373 0.1746497282835001 -0.5873860705329383 -0.03727582289811701 0.00904632410419585 0.9992640677255787 0.03727582289811701 -0.00904632410419585 -0.9992640677255787 0.8837575014651523 -0.467937238920978 -0.002723790572529869 -0.8837575014651523 0.467937238920978 0.002723790572529869 0.9385893356447606 -0.1982001301868833 0.2824301106607252 -0.9385893356447606 0.1982001301868833 -0.2824301106607252 0.9999997616211637 0.0006904007994159351 1.021529299323952e-005 -0.9999997616211637 -0.0006904007994159351 -1.021529299323952e-005 0.9471939711829661 -0.3206513593284936 -0.002507332333696746 -0.9471939711829661 0.3206513593284936 0.002507332333696746 0.4270453468344068 -0.2684592106674866 0.8634592775312981 -0.4270453468344068 0.2684592106674866 -0.8634592775312981 -0.4729763080059392 0.4540909037883582 0.7550462655769797 0.4729763080059392 -0.4540909037883582 -0.7550462655769797 0.8504098207762262 -0.4605667194708368 0.2543254482807772 -0.8504098207762262 0.4605667194708368 -0.2543254482807772 0.9999997581675503 0.0006954601649510948 2.191458151038304e-020 -0.9999997581675503 -0.0006954601649510948 -2.191458151038304e-020 0.9399882881102288 -0.3171041366911378 0.1259642199553888 -0.9399882881102288 0.3171041366911378 -0.1259642199553888 0.7241574605236903 -0.4145294511506577 0.5511454494927945 -0.7241574605236903 0.4145294511506577 -0.5511454494927945 -0.1340835029535357 0.124013334904789 0.983179692122199 0.1340835029535357 -0.124013334904789 -0.983179692122199 0.7948251512710979 -0.1957764209566542 0.5743906091713888 -0.7948251512710979 0.1957764209566542 -0.5743906091713888 0.9035807440994651 -0.3012260155692836 0.3046386817804174 -0.9035807440994651 0.3012260155692836 -0.3046386817804174</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"264\" source=\"#ID71\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID69\">\r\n\t\t\t\t\t<float_array count=\"1336\" id=\"ID72\">8.434630368164704 2.353360081779203 8.439855099803374 2.318780785786409 8.216371074199902 2.318780785786409 -5.353662840570794 2.238346445495049 -5.34641849052734 2.272699661990973 -5.258483149757913 2.238346445495049 8.428908305771554 2.372275948504826 8.210678454353849 2.337581846710967 8.207148906956121 2.372275948504826 8.216371074199902 2.099201542017305 8.439855099803374 2.099201542017305 8.212874042292729 2.064506099013996 -5.346578877313325 2.272445596198183 -5.325947323394589 2.301568815064706 -5.258643536548753 2.238092379694571 -5.34641849052734 2.203787490769093 -5.353662840570794 2.238140003930209 -5.258483149757913 2.238140003930209 7.596583364577615 2.55171847021232 7.601656486858115 2.517142999896679 7.317236541932582 2.517142999896679 8.413950709713538 2.465525301638435 8.428908305771554 2.434330334682621 8.207148906956121 2.434330334682621 7.586893672412469 1.929008386505678 7.581798412101595 1.894435629635499 7.302094057981144 1.894435629635499 8.43415938311553 2.12514351646369 8.428908305771554 2.090567388980215 8.207148906956121 2.090567388980215 -5.325369974300813 2.30194764879499 -5.294479264856308 2.321406344066429 -5.258066187507247 2.238471213390559 -5.325947319466017 2.174917397892478 -5.346578873384753 2.204041554538746 -5.258643532620178 2.238394067707548 7.581798412101595 2.619588947825986 7.302476555747747 2.584888879834124 7.302094057981145 2.619588947825986 7.317236541932579 1.850354270639173 7.601656486858113 1.850354270639173 7.316881791826323 1.815654716533251 8.3955569580953 2.50250886325613 8.18899985985553 2.470326219360448 8.178697842914264 2.50250886325613 7.302094057981146 0.855743874384147 7.581798412101595 0.855743874384147 7.300971110964643 0.8234534403100693 8.207148906956121 1.617093440555834 8.428908305771554 1.617093440555834 8.197117569523337 1.584857075977602 -5.258905246021844 2.238243226210277 -5.29531832366427 2.321178356806438 -5.258905246021844 2.328012192249299 8.395556958095302 2.393997464238216 8.178697842914264 2.393997464238216 8.372838650853405 2.41948796271577 8.410732696733057 1.717467499264168 8.3955569580953 1.686336924306703 8.178697842914264 1.686336924306703 -5.294479267695164 2.155079403421889 -5.325369977139668 2.1745385675832 -5.258066190346099 2.238015237432566 5.710314858466266 2.828716964504237 5.712813940303199 2.794071325224616 5.43564487805588 2.794071325224616 7.567306430558848 3.088475496532702 7.581798412101595 3.057307671632219 7.302094057981145 3.057307671632219 5.708851787152099 1.644395658947628 5.706348692416967 1.609750896345491 5.432440777234132 1.609750896345491 5.693943675180602 0.2308084042307124 5.686744761844247 0.1990061827887031 5.422161061289249 0.1990061827887031 7.535905530802523 1.112286182196852 7.521223456598177 1.081172584512499 7.254863636322893 1.081172584512499 -5.257175951646648 2.238243226210277 -5.257175951646648 2.328012192249299 -5.220747967071105 2.321178356806438 8.33916397760588 1.883711615823397 8.129529547857697 1.883711615823397 8.311784926989073 1.903794973188536 8.145593213807361 2.42019245782121 8.129529547857695 2.448237742633388 8.339163977605878 2.448237742633388 8.163266938210644 0.7538489312785419 8.178697842914264 0.7821135543431498 8.3955569580953 0.7821135543431498 8.129529547857697 0.9243288884928269 8.362387450447192 0.949536456620966 8.33916397760588 0.9243288884928271 -5.258905246021844 2.148475901285807 -5.29531832366427 2.155307392279307 5.432440777234132 2.846946774123885 5.706348692416967 2.846946774123885 5.431682793373643 2.812281116825409 5.435644878055882 1.624304963908791 5.712813940303199 1.624304963908791 5.436407010946693 1.589640059902782 7.521223456598179 3.247101335524373 7.256226904838707 3.214817473372052 7.254863636322895 3.247101335524373 5.432440777234131 0.1682208939942272 5.706348692416967 0.168220893994227 5.434602378679044 0.1362272820838394 5.425340449899831 -1.689216044294241 5.422161061289249 -1.661438381831966 5.686744761844248 -1.661438381831966 7.252848146393001 -0.5270631398770428 7.254863636322892 -0.4985518232093718 7.521223456598176 -0.4985518232093723 -5.257390617861971 2.23830157544322 -5.220962633305634 2.321236706044601 -5.190081459393857 2.30177801079064 -8.260842066902697 -0.4796763149142531 -8.059533172577172 -0.4796763149142531 -8.232721767073175 -0.4991327960577887 8.079424579263606 1.959442771916687 8.05953317257717 1.983772065631482 8.260842066902697 1.983772065631481 7.499236753965093 3.533515822434401 7.521223456598177 3.508078316264925 7.254863636322893 3.508078316264925 7.439999196691409 -0.1271001322564012 7.417539771395165 -0.1522811294232672 7.171086101027779 -0.1522811294232672 8.110574073075688 -0.5489996162952336 8.129529547857697 -0.5242128766259669 8.339163977605882 -0.5242128766259669 8.05953317257717 -0.5424206148045283 8.288956913940631 -0.5229773532910994 8.260842066902697 -0.5424206148045279 -5.257175951646648 2.148475901285807 -5.220747967071105 2.155307392279307 4.322864625052438 2.944894745205068 4.32318594951872 2.910224881472888 4.036723057722867 2.910224881472888 5.699185441715321 3.897729522860127 5.706348692416967 3.865923177062649 5.432440777234131 3.865923177062649 4.329062854421077 1.525740662158354 4.32874688218239 1.491071464894376 4.044919952782598 1.491071464894376 4.346555817097767 -0.1306287692369947 4.345701005524085 -0.1626604812616511 4.069386787927182 -0.1626604812616511 4.374144530264028 -2.151847645849272 4.372975942564231 -2.179722527662006 4.107900982830067 -2.179722527662006 5.666277883087392 -1.583331166730941 5.655444809482778 -1.61058523539394 5.404784526157568 -1.61058523539394 -5.257824474759958 2.238586261658011 -5.190515316496215 2.302062697139542 -5.169877801644873 2.27293947822191 -8.143361574613978 0.8413655801904392 -8.167849371996281 0.8658136570680978 -7.974670137151378 0.865813657068098 -7.995540330570239 -0.8630370076530344 -7.974670137151378 -0.8868406056614312 -8.167849371996281 -0.8868406056614312 7.417539771395168 3.483727300830921 7.171086101027782 3.483727300830921 7.39103908120253 3.503781361879716 7.173709694356354 3.648842704203838 7.171086101027782 3.677323068379556 7.417539771395168 3.677323068379556 7.167986007454825 -2.20633963742961 7.171086101027779 -2.180877764144669 7.417539771395165 -2.180877764144669 7.045549963493105 -2.116993011529345 7.295981151505877 -2.097581142588419 7.26871964559047 -2.116993011529345 -8.039652436742212 1.957654011907818 -8.059533172577169 1.933332583847781 -8.260842066902695 1.933332583847781 -7.974670137151378 2.295338343142578 -8.196734695214555 2.276589091912657 -8.167849371996281 2.295338343142578 -5.220962632578972 2.155249043451731 -5.257390617135311 2.23818487738792 -5.190081458667196 2.174708207595564 4.044919952782597 2.916697151235225 4.328746882182389 2.916697151235225 4.042600078796272 2.882054041348514 4.323185949518719 1.556336739814635 4.039037810754717 1.521694115390833 4.036723057722867 1.556336739814635 5.422161061289248 3.943015595733636 5.686744761844247 3.943015595733636 5.420036419983333 3.911021305348012 4.32874688218239 -0.03934716925420752 4.051532611608242 -0.07113567801260858 4.044919952782598 -0.03934716925420708 4.345701005524084 -2.041487688672124 4.079349393796518 -2.068716198387755 4.069386787927182 -2.041487688672124 4.107900982830065 -4.294279042810013 4.372975942564231 -4.294279042810013 4.119767316885249 -4.317723284416905 5.408428166518827 -3.738151290697665 5.404784526157568 -3.713779059006903 5.655444809482778 -3.713779059006903 -5.257531821098262 2.23812262282773 -5.169585147941832 2.272475839326124 -5.162335432618291 2.23812262282773 -8.058467359513546 1.590060425611151 -8.07521500203085 1.620689764464635 -7.888739162701234 1.620689764464635 -7.907185337553728 0.4013047780946442 -7.88873916270123 0.3741826951527294 -8.075215002030847 0.3741826951527294 -7.268719645590471 -2.053150487784164 -7.045549963493105 -2.053150487784164 -7.241471017322947 -2.072558574438991 7.049656255600592 3.557643136187863 7.045549963493103 3.583017370243692 7.268719645590469 3.583017370243692 5.675999108017063 4.796796616406089 5.686744761844247 4.769521473815643 5.422161061289248 4.769521473815644 5.380593695362149 -3.720189074757867 5.627751146083146 -3.696716872328327 5.614830603089938 -3.720189074757867 -7.041437280987505 3.559881852951684 -7.045549963493105 3.534504664393194 -7.268719645590471 3.534504664393194 -6.879131975953596 3.872325978238262 -7.107471800469083 3.853729175174603 -7.07932470356956 3.872325978238261 -7.956974743609803 2.699247075170101 -7.974670137151378 2.671816843440934 -8.167849371996281 2.671816843440934 -8.100272364420025 2.813405133895433 -8.075215002030847 2.837493791448359 -7.88873916270123 2.837493791448359 -5.190515307563639 2.174423518224927 -5.257824465827388 2.237900188151389 -5.169877792712301 2.203547674922303 0.9321896995554874 3.084759604088484 0.9324691034587712 3.050069154998214 0.6010926834848163 3.050069154998214 4.32784579960887 4.236534059576869 4.32874688218239 4.204503985072105 4.044919952782598 4.204503985072104 0.950062449921591 1.383032588066094 0.949797214608149 1.34834276664203 0.6231956013640261 1.34834276664203 1.003416473405784 -0.564888771331991 1.002788032144056 -0.5970963054434877 0.689784832516474 -0.5970963054434877 1.092339209865707 -2.862877208302275 1.091705377008492 -2.891206797268985 0.799014424632421 -2.891206797268985 1.21477090199698 -5.192994789713625 1.214511035774509 -5.218228300925035 0.9457283423114732 -5.218228300925036 4.409831302193775 -4.322735542825156 4.408621707159075 -4.347257289987124 4.156787646307723 -4.347257289987124 -5.169585147941832 2.204011317694693 -5.257531821098262 2.238363830858279 -5.162335432618291 2.238363830858279 -7.999157219777652 2.042518948965083 -8.005130751859149 2.077023827768453 -7.823033792135997 2.077023827768453 -8.00513075185915 1.31362032127005 -7.835707978970907 1.345278800213265 -7.823033792135998 1.31362032127005 -7.05545941398606 -0.164176067462128 -7.079324703569558 -0.1398098589040872 -6.879131975953596 -0.1398098589040872 -6.884479357744759 -2.534560429404811 -6.879131975953596 -2.559795433399359 -7.07932470356956 -2.559795433399359 5.655444809482778 4.978600663649545 5.404784526157568 4.978600663649546 5.642662340147106 5.002120284121173 5.401695898015736 4.808656846371256 5.404784526157568 4.836440516700103 5.655444809482777 4.836440516700103 -5.380593695362148 4.962171502045569 -5.614830603089938 4.962171502045569 -5.384093045167586 4.986553189531894 -5.351938677244748 5.017996387150544 -5.582837128882106 4.994576258487117 -5.56975153141031 5.017996387150543 -6.874595950601089 3.916023019294676 -6.879131975953595 3.887689986660023 -7.079324703569558 3.887689986660023 -6.897904037561943 3.810508318163908 -6.873283332082826 3.834405261392366 -6.692262931049166 3.834405261392366 -7.888739162701233 2.724661003134386 -8.075215002030848 2.724661003134386 -7.876414230061255 2.756405562862807 -8.022138934044577 2.667683772496266 -8.00513075185915 2.698225030675403 -7.823033792135997 2.698225030675403 0.6231956013640233 2.987301201786206 0.9497972146081468 2.987301201786206 0.6186869138979473 2.952689308328709 0.9324691034587718 1.488731301058679 0.6055889575248274 1.454119106364988 0.6010926834848163 1.488731301058679 4.069386787927182 4.167419738683337 4.345701005524084 4.167419738683337 4.062729945287959 4.135637796654536 0.949797214608149 -0.2493085088309403 0.6360503119188737 -0.2808136654129828 0.6231956013640255 -0.2493085088309403 0.689784832516474 -2.4607913856797 1.002788032144056 -2.4607913856797 0.7091761562947707 -2.487216522236849 0.7990144246324216 -5.04666531159668 1.091705377008492 -5.04666531159668 0.8222001987001021 -5.068632328092367 -0.9457283423114715 6.394951207259644 -1.214511035774507 6.394951207259644 -0.9693463955966802 6.41663285742608 -4.156787646307723 5.552627698955143 -4.408621707159075 5.552627698955144 -4.168826186517451 5.576018849749032 -7.984960319107533 2.382495153753913 -7.978954487231514 2.416995862268491 -7.798376612851471 2.416995862268491 -7.978954487231514 1.966439049599448 -7.802869053634529 2.001063721989028 -7.798376612851471 1.966439049599448 -6.856830818500603 1.084050530930478 -6.873283332082827 1.114614485837111 -6.692262931049166 1.114614485837111 -6.697884869256301 -0.9582713887241099 -6.692262931049166 -0.9864833759891449 -6.873283332082827 -0.9864833759891449 -5.614830603089938 -3.667689435313882 -5.380593695362148 -3.667689435313881 -5.601902573413683 -3.691164337909785 5.377093788557139 4.98813735430019 5.380593695362149 5.012523274922119 5.614830603089938 5.01252327492212 4.345701005524084 5.287360168805004 4.069386787927182 5.287360168805004 4.344421835165308 5.315231718444743 -4.449546056620505 5.523364437354302 -4.448524202508265 5.547887865422255 -4.209933402218356 5.547887865422255 -5.351938677244748 4.785846990777218 -5.56975153141031 4.785846990777218 -5.354765627823066 4.813646201701512 -5.538309584632483 4.761696983986634 -5.527083909871697 4.788854112455638 -5.323191108608555 4.788854112455638 -6.692262931049166 3.477831458554068 -6.873283332082827 3.477831458554069 -6.688521608741516 3.509995270680501 -6.720266959877879 3.164917477131315 -6.703434061204358 3.195353879732647 -6.535032963733198 3.195353879732646 -7.823033792135997 2.435604219488475 -8.005130751859149 2.435604219488475 -7.818584992145309 2.470231680986677 -1.96709306637855 3.077400285787161 -2.167801986871375 3.077400285787161 -1.964642189484361 3.112139973866311 0.9490457595910196 4.646912491789276 0.9497972146081496 4.614707436536613 0.6231956013640266 4.614707436536613 -1.918008717777247 1.315220598284153 -2.116263790567739 1.315220598284153 -1.920500958376179 1.349957769617933 -1.772230843885125 -0.6784430312662949 -1.963551749588468 -0.6784430312662946 -1.779694261781554 -0.6458798048266266 -1.543216962057551 -2.921635989955523 -1.531212837937363 -2.950650003716382 -1.712284373429763 -2.950650003716381 -1.222507394185468 -5.188411095530244 -1.207044158877362 -5.214242382180978 -1.376271851481387 -5.214242382180978 0.8485782902677852 6.390061095284668 0.8316396263229159 6.415314516155797 0.9893581626293579 6.415314516155797 -1.361941693243071 6.362733172750426 -1.362288982534341 6.387967241494827 -1.117326923650519 6.387967241494827 -6.697526395585393 1.892624381144682 -6.703434061204357 1.927117271470286 -6.535032963733198 1.927117271470286 -6.703434061204357 0.4832986325845745 -6.539345332253292 0.5154173203434307 -6.535032963733198 0.4832986325845745 -5.558655482375348 -1.571083272452359 -5.56975153141031 -1.543893531995541 -5.351938677244748 -1.543893531995541 -5.348603797862836 -3.730569693276149 -5.351938677244746 -3.754966297982173 -5.56975153141031 -3.754966297982173 4.372975942564231 5.588690154963504 4.107900982830067 5.588690154963505 4.371597365049192 5.613207036215486 4.107900982830066 5.25623854649248 4.372975942564231 5.25623854649248 4.097832937811947 5.229034383492466 -4.448524202508266 5.136112743423935 -4.220284363397968 5.163250715910081 -4.209933402218357 5.136112743423935 -4.486871269309131 5.178815212013592 -4.48615398637004 5.206697524035649 -4.258776450555414 5.206697524035649 -5.323191108608555 3.899793911100535 -5.527083909871697 3.899793911100535 -5.324989662746323 3.931801033582214 -5.503371109474338 3.845397623584101 -5.495820513932753 3.877144935837415 -5.301210651361618 3.877144935837415 -6.535032963733196 2.696133322235575 -6.703434061204355 2.696133322235575 -6.533506043351181 2.730813638015173 -6.641860146900234 2.531084909783068 -6.635902379084699 2.565571766215482 -6.471868518083324 2.565571766215482 -1.918008717777247 2.956182252046366 -2.121205890158615 2.921578102403865 -2.11626379056774 2.956182252046366 -1.967093066378549 1.51948075221779 -2.162893322330048 1.484874355808419 -2.167801986871373 1.519480752217791 0.6897848325164744 4.407826049212817 1.002788032144057 4.407826049212817 0.6768229489005453 4.376348946068332 -1.918008717777245 -0.1565365247956884 -2.102179364039371 -0.1879855502119529 -2.116263790567738 -0.1565365247956884 -1.963551749588464 -2.295202401859097 -1.772230843885123 -2.295202401859097 -1.942056306671609 -2.321333474487419 -1.712284373429763 -4.909224007543397 -1.531212837937362 -4.909224007543397 -1.686141419975853 -4.930315929223952 1.376271851481388 6.369227335455214 1.207044158877364 6.369227335455214 1.349117506683136 6.389508423958248 0.9893581626293585 5.441362297022207 0.8316396263229164 5.441362297022207 0.9653949506273185 5.466130793660186 -1.362288982534343 5.602639499088345 -1.137768301233448 5.628569766402831 -1.11732692365052 5.602639499088347 -6.635902379084699 1.696209365236964 -6.473472917853572 1.730888213057201 -6.471868518083324 1.696209365236964 -5.519597952639094 0.2327923851607379 -5.527083909871697 0.2645483088620941 -5.323191108608554 0.2645483088620941 -5.320499878353941 -1.669964106105268 -5.323191108608555 -1.697771323703456 -5.527083909871697 -1.697771323703455 -4.408621707159075 -4.296747015947841 -4.156787646307723 -4.296747015947841 -4.407412304627763 -4.32126581679264 4.408621707159075 5.605109209534284 4.144760566125584 5.581715029474692 4.156787646307723 5.605109209534284 1.001846931342163 5.972661113159814 1.002788032144055 5.944337132374494 0.6897848325164729 5.944337132374495 -1.511722885307478 5.846256149112257 -1.512522758452065 5.874582428309672 -1.287670506457124 5.874582428309672 -4.486153986370041 4.042309874632021 -4.265787779652355 4.074046865503883 -4.258776450555414 4.042309874632021 -4.513936661932269 4.116634488435327 -4.513529393516768 4.148671265418692 -4.293640562989966 4.148671265418692 -5.30121065136162 2.810912441373487 -5.495820513932754 2.810912441373487 -5.301818367203231 2.845580057199926 -5.486866123566071 2.783186271251781 -5.484193596745347 2.817823636846223 -5.292855245808954 2.817823636846223 -4.053823696300509 2.237933945389781 -3.965878808417176 2.272287161939893 -3.958641016476932 2.237933945389781 -1.918008717777246 4.649794177545886 -2.116263790567739 4.649794177545886 -1.910891693420302 4.682404522695187 -3.965878808417176 2.204199992204413 -4.053823696300509 2.238552505419718 -3.958641016476932 2.238552505419718 -3.98688258012103 2.174496531652604 -4.054189352611236 2.237973201526826 -3.966244464718757 2.203620688326012 -4.017173339631032 2.155424003666398 -4.053600131603027 2.238359837618288 -3.986293359006373 2.174883167813916 -4.054029148368965 2.148475901285807 -4.054029148368965 2.238243226210277 -4.017602356320005 2.155307392279307 -4.053705692468588 2.148475901285807 -4.090128310949842 2.155307392279307 -4.053705692468588 2.238243226210277 -4.089952433315315 2.155259592545581 -4.120834202083113 2.174718756689015 -4.053529814846994 2.238195426480065 0.4817370153810024 5.867033550067902 0.4662092569933485 5.894993387095167 0.6144719776412866 5.894993387095167 -5.493156499972884 1.622250154706118 -5.495820513932754 1.656888623668823 -5.30121065136162 1.656888623668823 -5.30121065136162 0.1336222520571034 -5.495820513932754 0.1336222520571034 -5.299479955906707 0.16563083642983 -4.448524202508266 -2.069012009645138 -4.209933402218357 -2.069012009645138 -4.447657984950528 -2.096891377077753 -4.448524202508265 -4.245748750520807 -4.197716937838588 -4.222414069935461 -4.209933402218356 -4.245748750520807 1.090947998110311 6.444314700437957 1.091705377008491 6.419086760900848 0.7990144246324199 6.419086760900847 1.091705377008496 5.764461288009136 0.7793575878386156 5.738158179036597 0.7990144246324239 5.764461288009136 -1.512522758452064 4.199124051242464 -1.301605464577787 4.230341346563795 -1.287670506457123 4.199124051242464 -1.628375530324133 4.532137312614295 -1.629173990339626 4.564343890560317 -1.417698726505826 4.564343890560318 -4.513529393516767 2.842460905715748 -4.296126179723646 2.877096140892943 -4.293640562989966 2.842460905715748 -4.523873026935287 2.878948457209516 -4.52373943882028 2.913619209927827 -4.306478961546185 2.913619209927827 -5.292855245808954 1.589284403419701 -5.484193596745347 1.589284403419701 -5.292256482891902 1.623952812594009 -4.054189359642654 2.238513250449592 -3.986882587152454 2.301989685878881 -3.966244471750178 2.272866466985217 -1.772230843885124 4.316668158091233 -1.97791489492716 4.285298111276199 -1.963551749588466 4.316668158091233 -4.120931077310953 2.174782322711644 -4.141563825700471 2.203906479345791 -4.053626690071178 2.238258992500297 0.4662092569933474 3.984640728124225 0.5978885664865269 4.015324222717966 0.6144719776412849 3.984640728124225 -4.485674624860247 -0.08526153762548347 -4.48615398637004 -0.05322623054405954 -4.258776450555414 -0.0532262305440591 -4.258776450555414 -1.933085990116117 -4.48615398637004 -1.933085990116117 -4.248284576315554 -1.905981862401339 -1.214262924493798 -5.194566694637977 -1.214511035774507 -5.169331267036565 -0.9457283423114715 -5.169331267036566 1.214511035774506 6.451534252752131 0.9221179475047064 6.429848196719905 0.9457283423114704 6.451534252752131 -1.761069588366373 5.937702646020404 -1.772230843885125 5.908481456554886 -1.963551749588467 5.908481456554886 0.2053747464016292 4.494206613498784 0.1944372944454104 4.526154345813759 0.3365673192634006 4.526154345813759 -1.629173990339625 2.867167703373754 -1.422673876480833 2.901739456795183 -1.417698726505825 2.867167703373754 -1.673273684142616 3.018941404769386 -1.673590716300032 3.053630894775492 -1.466805478570464 3.053630894775492 -4.306478961546185 1.564023796208383 -4.52373943882028 1.564023796208383 -4.303984471274499 1.598659334192533 -4.513386385417228 1.521059658472058 -4.513529393516768 1.55573108481662 -4.293640562989966 1.55573108481662 -4.053600130150717 2.238126612289381 -4.017173338178724 2.321061742906462 -3.986293357554064 2.301603047648817 -4.141471615561583 2.203760403806036 -4.148715368841032 2.238112916971204 -4.05353447993902 2.238112916971204 -4.293640562989966 0.04335369123050295 -4.513529393516768 0.04335369123050295 -4.28656117905012 0.0750804706277098 -1.362577667292276 -2.816696003244873 -1.362288982534341 -2.788363968266435 -1.117326923650519 -2.788363968266436 -1.362288982534339 -4.96872170244727 -1.093208957200034 -4.947382584107978 -1.117326923650517 -4.96872170244727 -1.517054674570912 6.352714651674939 -1.531212837937361 6.326423764830597 -1.712284373429761 6.326423764830597 -1.531212837937358 5.640120267067013 -1.734448249583062 5.614337428574716 -1.712284373429759 5.640120267067013 0.1944372944454098 2.768116755041422 0.3306030045439118 2.802621145461516 0.3365673192634 2.768116755041422 0.09703799021453519 2.992970025448294 0.09311781389960916 3.02762566825247 0.2331416166700978 3.02762566825247 -1.466805478570464 1.551162662776399 -1.673590716300032 1.551162662776399 -1.461801932402765 1.585732578944526 -1.629455680006471 1.378103798768278 -1.629173990339626 1.41279417401793 -1.417698726505825 1.41279417401793 -4.054029148368965 2.328012192249299 -4.017602356320005 2.321178356806438 -4.148715368841032 2.238373531371506 -4.141471615561583 2.272726747871482 -4.05353447993902 2.238373531371506 -1.5130564857246 -0.5257943792033832 -1.512522758452064 -0.4935852610863161 -1.287670506457123 -0.4935852610863157 -1.287670506457123 -2.200920589208218 -1.512522758452064 -2.200920589208219 -1.266807547891256 -2.175199304236262 1.191572206143222 -5.192175383810728 1.207044158877364 -5.1663454530928 1.376271851481389 -5.1663454530928 -1.207044158877361 6.429711904418062 -1.403428117920235 6.409426980035437 -1.376271851481385 6.429711904418062 0.2331416166700967 1.664649718651807 0.09311781389960805 1.664649718651807 0.2391568923698373 1.699149334331037 0.1905901596095888 1.402942822274038 0.1944372944454098 1.437604227236455 0.3365673192634 1.437604227236455 -1.417698726505827 -0.01600042466492939 -1.629173990339627 -0.01600042466492939 -1.40354905450114 0.01515616649882865 -4.090128310949842 2.321178356806438 -4.053705692468588 2.328012192249299 -4.141563826111081 2.272580676061272 -4.120931077721562 2.301703894915674 -4.053626690481788 2.238227459571957 0.817284599356215 -2.839893539460173 0.8316396263229142 -2.811548851757165 0.9893581626293563 -2.811548851757165 0.8316396263229164 -4.845690357464556 1.017620105613927 -4.826367558809764 0.9893581626293585 -4.845690357464556 0.3365673192634 0.3196989763957595 0.1944372944454098 0.3196989763957595 0.3535537786690163 0.3502448284896839 0.4558387683873832 -0.4939535826444508 0.466209256993349 -0.4618899096476089 0.6144719776412871 -0.4618899096476089 -4.120834201487819 2.301767461664036 -4.08995243272002 2.321226156917597 -4.053529814251699 2.238291026317921 0.6144719776412871 -1.790580230231597 0.4662092569933496 -1.790580230231597 0.6392934645829623 -1.766340825597774</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"668\" source=\"#ID72\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID68\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID66\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID67\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"448\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID68\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID69\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 7 12 16 13 8 14 9 14 17 13 10 12 18 15 6 16 8 17 9 17 11 16 19 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 16 30 28 31 8 32 9 32 29 31 17 30 30 33 18 34 8 35 9 35 19 34 31 33 12 36 20 37 32 38 33 38 21 37 13 36 20 39 2 40 24 41 25 41 3 40 21 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 8 51 28 52 40 53 41 53 29 52 9 51 22 54 34 55 42 56 43 56 35 55 23 54 26 57 44 58 38 59 39 59 45 58 27 57 46 60 30 61 8 62 9 62 31 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 8 78 40 79 54 80 55 80 41 79 9 78 42 81 56 82 57 83 58 83 59 82 43 81 34 84 56 85 42 86 43 86 59 85 35 84 60 87 38 88 44 89 45 89 39 88 61 87 60 90 44 91 62 92 63 92 45 91 61 90 64 93 46 94 8 51 9 51 47 94 65 93 66 95 32 96 48 97 49 97 33 96 67 95 48 98 20 99 50 100 51 100 21 99 49 98 34 101 32 102 68 103 69 103 33 102 35 101 50 104 24 105 52 106 53 106 25 105 51 104 70 107 52 108 36 109 37 109 53 108 71 107 72 110 36 111 38 112 39 112 37 111 73 110 8 113 54 114 74 115 75 115 55 114 9 113 57 116 76 117 54 118 55 118 77 117 58 116 56 119 76 120 57 121 58 121 77 120 59 119 56 122 34 123 68 124 69 124 35 123 59 122 38 125 60 126 72 127 73 127 61 126 39 125 78 128 60 129 62 130 63 130 61 129 79 128 78 131 62 132 80 133 81 133 63 132 79 131 64 134 8 78 82 135 83 135 9 78 65 134 66 136 48 137 84 138 85 138 49 137 67 136 68 139 32 140 66 141 67 141 33 140 69 139 48 142 50 143 86 144 87 144 51 143 49 142 50 145 52 146 88 147 89 147 53 146 51 145 52 148 70 149 90 150 91 150 71 149 53 148 36 151 72 152 70 153 71 153 73 152 37 151 8 154 74 155 92 156 93 156 75 155 9 154 74 157 54 158 94 159 95 159 55 158 75 157 76 160 94 161 54 162 55 162 95 161 77 160 56 163 96 164 76 165 77 165 97 164 59 163 68 166 96 167 56 168 59 168 97 167 69 166 98 169 72 170 60 171 61 171 73 170 99 169 98 172 60 173 78 174 79 174 61 173 99 172 100 175 78 176 80 177 81 177 79 176 101 175 100 178 80 179 82 180 83 180 81 179 101 178 82 181 8 182 102 183 103 183 9 182 83 181 104 184 66 185 84 186 85 186 67 185 105 184 48 187 86 188 84 189 85 189 87 188 49 187 106 190 68 191 66 192 67 192 69 191 107 190 50 193 88 194 86 195 87 195 89 194 51 193 52 196 90 197 88 198 89 198 91 197 53 196 90 199 70 200 108 201 109 201 71 200 91 199 110 202 70 203 72 204 73 204 71 203 111 202 8 205 92 206 112 207 113 207 93 206 9 205 92 208 74 209 114 210 115 210 75 209 93 208 94 211 114 212 74 213 75 213 115 212 95 211 76 214 116 215 94 216 95 216 117 215 77 214 96 217 116 218 76 219 77 219 117 218 97 217 96 220 68 221 106 222 107 222 69 221 97 220 110 223 72 224 98 225 99 225 73 224 111 223 118 226 98 227 78 228 79 228 99 227 119 226 118 229 78 230 100 231 101 231 79 230 119 229 120 232 100 233 82 234 83 234 101 233 121 232 82 235 102 236 120 237 121 237 103 236 83 235 102 238 8 239 122 240 123 240 9 239 103 238 104 241 84 242 124 243 125 243 85 242 105 241 106 244 66 245 104 246 105 246 67 245 107 244 84 247 86 248 126 249 127 249 87 248 85 247 86 250 88 251 128 252 129 252 89 251 87 250 88 253 90 254 130 255 131 255 91 254 89 253 90 256 108 257 132 258 133 258 109 257 91 256 70 259 110 260 108 261 109 261 111 260 71 259 122 262 8 263 112 264 113 264 9 263 123 262 112 265 92 266 134 267 135 267 93 266 113 265 92 268 114 269 134 270 135 270 115 269 93 268 114 271 94 272 136 273 137 273 95 272 115 271 116 274 136 275 94 276 95 276 137 275 117 274 96 277 138 278 116 279 117 279 139 278 97 277 106 280 138 281 96 282 97 282 139 281 107 280 110 283 98 284 140 285 141 285 99 284 111 283 140 286 98 287 118 288 119 288 99 287 141 286 142 289 118 290 100 291 101 291 119 290 143 289 100 292 120 293 142 294 143 294 121 293 101 292 120 295 102 296 144 297 145 297 103 296 121 295 102 298 122 299 144 300 145 300 123 299 103 298 146 301 104 302 124 303 125 303 105 302 147 301 84 304 126 305 124 306 125 306 127 305 85 304 148 307 106 308 104 309 105 309 107 308 149 307 86 310 128 311 126 312 127 312 129 311 87 310 128 313 88 314 130 315 131 315 89 314 129 313 130 316 90 317 132 318 133 318 91 317 131 316 132 319 108 320 150 321 151 321 109 320 133 319 108 322 110 323 152 324 153 324 111 323 109 322 122 325 112 326 154 327 155 327 113 326 123 325 112 328 134 329 154 330 155 330 135 329 113 328 134 331 114 332 156 333 157 333 115 332 135 331 136 334 156 335 114 336 115 336 157 335 137 334 116 337 158 338 136 339 137 339 159 338 117 337 138 340 158 341 116 342 117 342 159 341 139 340 106 343 148 344 138 345 139 345 149 344 107 343 110 346 140 347 152 348 153 348 141 347 111 346 140 349 118 350 160 351 161 351 119 350 141 349 118 352 142 353 160 354 161 354 143 353 119 352 142 355 120 356 162 357 163 357 121 356 143 355 120 358 144 359 162 360 163 360 145 359 121 358 144 361 122 362 154 363 155 363 123 362 145 361 124 364 164 365 146 366 147 366 165 365 125 364 148 367 104 368 146 369 147 369 105 368 149 367 126 370 166 371 124 372 125 372 167 371 127 370 128 373 168 374 126 375 127 375 169 374 129 373 128 376 130 377 170 378 171 378 131 377 129 376 130 379 132 380 172 381 173 381 133 380 131 379 132 382 150 383 174 384 175 384 151 383 133 382 108 385 152 386 150 387 151 387 153 386 109 385 154 388 134 389 176 390 177 390 135 389 155 388 134 391 156 392 176 393 177 393 157 392 135 391 156 394 136 395 178 396 179 396 137 395 157 394 158 397 178 398 136 399 137 399 179 398 159 397 138 400 180 401 158 402 159 402 181 401 139 400 180 403 138 404 148 405 149 405 139 404 181 403 140 406 182 407 152 408 153 408 183 407 141 406 140 409 160 410 182 411 183 411 161 410 141 409 160 412 142 413 184 414 185 414 143 413 161 412 142 415 162 416 184 417 185 417 163 416 143 415 162 418 144 419 186 420 187 420 145 419 163 418 144 421 154 422 186 423 187 423 155 422 145 421 146 424 164 425 188 426 189 426 165 425 147 424 124 427 166 428 164 429 165 429 167 428 125 427 190 430 148 431 146 432 147 432 149 431 191 430 126 433 168 434 166 435 167 435 169 434 127 433 168 436 128 437 170 438 171 438 129 437 169 436 170 439 130 440 172 441 173 441 131 440 171 439 172 442 132 443 174 444 175 444 133 443 173 442 174 445 150 446 192 447 193 447 151 446 175 445 152 448 194 449 150 450 151 450 195 449 153 448 154 451 176 452 186 453 187 453 177 452 155 451 176 454 156 455 196 456 197 456 157 455 177 454 178 457 196 458 156 459 157 459 197 458 179 457 158 460 198 461 178 462 179 462 199 461 159 460 158 463 180 464 198 465 199 465 181 464 159 463 180 466 148 467 190 468 191 468 149 467 181 466 152 469 182 470 194 471 195 471 183 470 153 469 160 472 200 473 182 474 183 474 201 473 161 472 160 475 184 476 200 477 201 477 185 476 161 475 184 478 162 479 202 480 203 480 163 479 185 478 162 481 186 482 202 483 203 483 187 482 163 481 204 484 205 485 206 486 207 486 208 485 209 484 146 487 188 488 190 489 191 489 189 488 147 487 210 490 204 491 206 492 207 492 209 491 211 490 212 493 204 494 210 495 211 495 209 494 213 493 214 496 204 497 212 498 213 498 209 497 215 496 216 499 204 500 214 501 215 501 209 500 217 499 216 502 174 503 204 504 209 504 175 503 217 502 174 505 192 506 204 507 209 507 193 506 175 505 150 508 194 509 192 510 193 510 195 509 151 508 186 511 176 512 218 513 219 513 177 512 187 511 218 514 176 515 196 516 197 516 177 515 219 514 178 517 220 518 196 519 197 519 221 518 179 517 178 520 198 521 220 522 221 522 199 521 179 520 198 523 180 524 222 525 223 525 181 524 199 523 180 526 190 527 222 528 223 528 191 527 181 526 182 529 224 530 194 531 195 531 225 530 183 529 182 532 200 533 224 534 225 534 201 533 183 532 184 535 226 536 200 537 201 537 227 536 185 535 184 538 202 539 226 540 227 540 203 539 185 538 202 541 186 542 218 543 219 543 187 542 203 541 204 544 228 545 205 546 208 546 229 545 209 544 190 547 188 548 230 549 231 549 189 548 191 547 192 550 232 551 204 552 209 552 233 551 193 550 194 553 232 554 192 555 193 555 233 554 195 553 218 556 196 557 234 558 235 558 197 557 219 556 234 559 196 560 220 561 221 561 197 560 235 559 220 562 198 563 236 564 237 564 199 563 221 562 198 565 222 566 236 567 237 567 223 566 199 565 222 568 190 569 230 570 231 570 191 569 223 568 194 571 224 572 232 573 233 573 225 572 195 571 200 574 238 575 224 576 225 576 239 575 201 574 200 577 226 578 238 579 239 579 227 578 201 577 226 580 202 581 240 582 241 582 203 581 227 580 202 583 218 584 240 585 241 585 219 584 203 583 204 586 242 587 228 588 229 588 243 587 209 586 232 589 244 590 204 591 209 591 245 590 233 589 240 592 218 593 234 594 235 594 219 593 241 592 234 595 220 596 246 597 247 597 221 596 235 595 220 598 236 599 246 600 247 600 237 599 221 598 236 601 222 602 248 603 249 603 223 602 237 601 222 604 230 605 248 606 249 606 231 605 223 604 224 607 244 608 232 609 233 609 245 608 225 607 224 610 238 611 244 612 245 612 239 611 225 610 238 613 226 614 250 615 251 615 227 614 239 613 226 616 240 617 250 618 251 618 241 617 227 616 204 500 252 619 242 620 243 620 253 619 209 500 244 621 254 622 204 623 209 623 255 622 245 621 240 624 234 625 256 626 257 626 235 625 241 624 256 627 234 628 246 629 247 629 235 628 257 627 246 630 236 631 258 632 259 632 237 631 247 630 236 633 248 634 258 635 259 635 249 634 237 633 244 636 238 637 254 638 255 638 239 637 245 636 238 639 250 640 254 641 255 641 251 640 239 639 250 642 240 643 256 644 257 644 241 643 251 642 204 504 260 645 252 646 253 646 261 645 209 504 254 647 262 648 204 649 209 649 263 648 255 647 256 650 246 651 260 652 261 652 247 651 257 650 246 653 258 654 260 655 261 655 259 654 247 653 254 656 250 657 262 658 263 658 251 657 255 656 250 659 256 660 262 661 263 661 257 660 251 659 262 662 260 663 204 664 209 664 261 663 263 662 262 665 256 666 260 667 261 667 257 666 263 665</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID73\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID74\">\r\n\t\t\t\t\t<float_array count=\"798\" id=\"ID78\">0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7675102353096008 -0.5612731575965881 0.2852768898010254 0.7675102353096008 -0.5612731575965881 0.2852768898010254 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7529726028442383 -0.5678825974464417 0.2799702882766724 0.7529726028442383 -0.5678825974464417 0.2799702882766724 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7688149809837341 -0.5605922937393189 0.281104177236557 0.7688149809837341 -0.5605922937393189 0.281104177236557 0.7658206224441528 -0.5605922937393189 0.2893087267875671 0.7658206224441528 -0.5605922937393189 0.2893087267875671 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.7809376120567322 -0.5357759594917297 0.2855293154716492 0.7809376120567322 -0.5357759594917297 0.2855293154716492 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.7799424529075623 -0.5360983014106751 0.2898147404193878 0.7799424529075623 -0.5360983014106751 0.2898147404193878 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7807786464691162 -0.5348604321479797 0.2815302610397339 0.7807786464691162 -0.5348604321479797 0.2815302610397339 0.7695367932319641 -0.5586550235748291 0.2774266302585602 0.7695367932319641 -0.5586550235748291 0.2774266302585602 0.7779433131217957 -0.5357759594917297 0.2937338352203369 0.7779433131217957 -0.5357759594917297 0.2937338352203369 0.7640029788017273 -0.5586550235748291 0.2925863564014435 0.7640029788017273 -0.5586550235748291 0.2925863564014435 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.783890426158905 -0.5086091160774231 0.2826657593250275 0.783890426158905 -0.5086091160774231 0.2826657593250275 0.7842149138450623 -0.5086091160774231 0.2867254912853241 0.7842149138450623 -0.5086091160774231 0.2867254912853241 0.7832766175270081 -0.5086091160774231 0.2910321354866028 0.7832766175270081 -0.5086091160774231 0.2910321354866028 0.7493549585342407 -0.5642405152320862 0.2898727059364319 0.7493549585342407 -0.5642405152320862 0.2898727059364319 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7623351216316223 -0.5557551980018616 0.2946110367774963 0.7623351216316223 -0.5557551980018616 0.2946110367774963 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7695651054382324 -0.5557551980018616 0.2748038470745087 0.7695651054382324 -0.5557551980018616 0.2748038470745087 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7823523879051209 -0.5086091160774231 0.27947136759758 0.7823523879051209 -0.5086091160774231 0.27947136759758 0.7794895172119141 -0.5334889888763428 0.2784262001514435 0.7794895172119141 -0.5334889888763428 0.2784262001514435 0.7812198996543884 -0.5086091160774231 0.2949300408363342 0.7812198996543884 -0.5086091160774231 0.2949300408363342 0.7752450704574585 -0.5348604321479797 0.296690046787262 0.7752450704574585 -0.5348604321479797 0.296690046787262 0.7502013444900513 -0.561151921749115 0.2875483632087708 0.7502013444900513 -0.561151921749115 0.2875483632087708 0.7610700726509094 -0.5523343682289124 0.2950736284255981 0.7610700726509094 -0.5523343682289124 0.2950736284255981 0.7565851211547852 -0.5642405152320862 0.2700657248497009 0.7565851211547852 -0.5642405152320862 0.2700657248497009 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7688960433006287 -0.5523343682289124 0.2736347615718842 0.7688960433006287 -0.5523343682289124 0.2736347615718842 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7812067866325378 -0.4821297526359558 0.2790530025959015 0.7812067866325378 -0.4821297526359558 0.2790530025959015 0.7825827598571777 -0.4810132384300232 0.2821890711784363 0.7825827598571777 -0.4810132384300232 0.2821890711784363 0.7827998399734497 -0.4802669882774353 0.286208987236023 0.7827998399734497 -0.4802669882774353 0.286208987236023 0.7818241715431213 -0.4800053238868713 0.290501743555069 0.7818241715431213 -0.4800053238868713 0.290501743555069 0.7514697909355164 -0.5590887665748596 0.2840702533721924 0.7514697909355164 -0.5590887665748596 0.2840702533721924 0.7604013085365295 -0.548913836479187 0.2939048111438751 0.7604013085365295 -0.548913836479187 0.2939048111438751 0.7722594738006592 -0.5334889888763428 0.2982333302497864 0.7722594738006592 -0.5334889888763428 0.2982333302497864 0.755734920501709 -0.561151921749115 0.2723884582519531 0.755734920501709 -0.561151921749115 0.2723884582519531 0.7676315307617188 -0.548913836479187 0.2740978002548218 0.7676315307617188 -0.548913836479187 0.2740978002548218 0.7772659063339233 -0.5318727493286133 0.2766901254653931 0.7772659063339233 -0.5318727493286133 0.2766901254653931 0.7788809537887573 -0.4834471940994263 0.2772795259952545 0.7788809537887573 -0.4834471940994263 0.2772795259952545 0.7798362970352173 -0.5086091160774231 0.2776279151439667 0.7798362970352173 -0.5086091160774231 0.2776279151439667 0.7798051834106445 -0.4802669882774353 0.2944135665893555 0.7798051834106445 -0.4802669882774353 0.2944135665893555 0.7783564925193787 -0.5086091160774231 0.297825813293457 0.7783564925193787 -0.5086091160774231 0.297825813293457 0.7529666423797607 -0.5583648681640625 0.2799681127071381 0.7529666423797607 -0.5583648681640625 0.2799681127071381 0.7604292035102844 -0.546014130115509 0.2912820279598236 0.7604292035102844 -0.546014130115509 0.2912820279598236 0.7694398760795593 -0.5318727493286133 0.2981289625167847 0.7694398760795593 -0.5318727493286133 0.2981289625167847 0.7544642090797424 -0.5590887665748596 0.2758658826351166 0.7544642090797424 -0.5590887665748596 0.2758658826351166 0.7659631371498108 -0.546014130115509 0.2761222422122955 0.7659631371498108 -0.546014130115509 0.2761222422122955 0.774446427822113 -0.530255138874054 0.2765855491161346 0.774446427822113 -0.530255138874054 0.2765855491161346 0.7679250836372376 -0.4592308402061462 0.2732801735401154 0.7679250836372376 -0.4592308402061462 0.2732801735401154 0.7688785791397095 -0.4559683799743652 0.2745532691478729 0.7688785791397095 -0.4559683799743652 0.2745532691478729 0.7690914273262024 -0.4532025456428528 0.2772639095783234 0.7690914273262024 -0.4532025456428528 0.2772639095783234 0.7685301899909973 -0.4513538479804993 0.2810003161430359 0.7685301899909973 -0.4513538479804993 0.2810003161430359 0.7672816514968872 -0.4507051110267639 0.2851933538913727 0.7672816514968872 -0.4507051110267639 0.2851933538913727 0.7611505389213562 -0.5440757274627686 0.2876043915748596 0.7611505389213562 -0.5440757274627686 0.2876043915748596 0.7672161459922791 -0.530255138874054 0.2963924407958984 0.7672161459922791 -0.530255138874054 0.2963924407958984 0.775122344493866 -0.5086091160774231 0.2992783784866333 0.775122344493866 -0.5086091160774231 0.2992783784866333 0.7641456723213196 -0.5440757274627686 0.2793997526168823 0.7641456723213196 -0.5440757274627686 0.2793997526168823 0.7714604139328003 -0.5288839936256409 0.2781288921833038 0.7714604139328003 -0.5288839936256409 0.2781288921833038 0.776724100112915 -0.5086091160774231 0.2774169743061066 0.776724100112915 -0.5086091160774231 0.2774169743061066 0.766375720500946 -0.4624937176704407 0.2736393809318543 0.766375720500946 -0.4624937176704407 0.2736393809318543 0.7759590744972229 -0.4847645163536072 0.2771378755569458 0.7759590744972229 -0.4847645163536072 0.2771378755569458 0.7655348181724548 -0.4513538479804993 0.2892045080661774 0.7655348181724548 -0.4513538479804993 0.2892045080661774 0.7770491242408752 -0.4810132384300232 0.2973486185073853 0.7770491242408752 -0.4810132384300232 0.2973486185073853 0.7624562382698059 -0.5433959364891052 0.2834318280220032 0.7624562382698059 -0.5433959364891052 0.2834318280220032 0.7659268379211426 -0.5288839936256409 0.2932883203029633 0.7659268379211426 -0.5288839936256409 0.2932883203029633 0.7720103859901428 -0.5086091160774231 0.299067348241806 0.7720103859901428 -0.5086091160774231 0.299067348241806 0.7687625288963318 -0.5279688835144043 0.2810851335525513 0.7687625288963318 -0.5279688835144043 0.2810851335525513 0.7734904885292053 -0.5086091160774231 0.2788696885108948 0.7734904885292053 -0.5086091160774231 0.2788696885108948 0.7570374608039856 -0.4502493739128113 0.270230770111084 0.7570374608039856 -0.4502493739128113 0.270230770111084 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7657673954963684 -0.5279688835144043 0.2892895638942719 0.7657673954963684 -0.5279688835144043 0.2892895638942719 0.7694941163063049 -0.5086091160774231 0.2972239553928375 0.7694941163063049 -0.5086091160774231 0.2972239553928375 0.7739768028259277 -0.4821297526359558 0.298860102891922 0.7739768028259277 -0.4821297526359558 0.298860102891922 0.7667633295059204 -0.5276470184326172 0.2850039303302765 0.7667633295059204 -0.5276470184326172 0.2850039303302765 0.7706266045570374 -0.5086091160774231 0.2817656397819519 0.7706266045570374 -0.5086091160774231 0.2817656397819519 0.7728867530822754 -0.4858811497688294 0.2786497473716736 0.7728867530822754 -0.4858811497688294 0.2786497473716736 0.7561874985694885 -0.4533376097679138 0.272553950548172 0.7561874985694885 -0.4533376097679138 0.272553950548172 0.7644664645195007 -0.4652591943740845 0.2755759060382843 0.7644664645195007 -0.4652591943740845 0.2755759060382843 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7635570168495178 -0.4532025456428528 0.2924236953258514 0.7635570168495178 -0.4532025456428528 0.2924236953258514 0.7679563164710999 -0.5086091160774231 0.2940293550491333 0.7679563164710999 -0.5086091160774231 0.2940293550491333 0.7710549831390381 -0.4834471940994263 0.2987184822559357 0.7710549831390381 -0.4834471940994263 0.2987184822559357 0.7685694098472595 -0.5086091160774231 0.285663366317749 0.7685694098472595 -0.5086091160774231 0.285663366317749 0.7701312303543091 -0.4866270422935486 0.2815848290920258 0.7701312303543091 -0.4866270422935486 0.2815848290920258 0.7534245252609253 -0.4466072916984558 0.2801350057125092 0.7534245252609253 -0.4466072916984558 0.2801350057125092 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.767632007598877 -0.5086091160774231 0.2899697721004486 0.767632007598877 -0.5086091160774231 0.2899697721004486 0.768729567527771 -0.4847645163536072 0.2969449162483215 0.768729567527771 -0.4847645163536072 0.2969449162483215 0.7616479992866516 -0.4559683799743652 0.2943599820137024 0.7616479992866516 -0.4559683799743652 0.2943599820137024 0.7681118845939636 -0.4868890047073364 0.285496324300766 0.7681118845939636 -0.4868890047073364 0.285496324300766 0.7624879479408264 -0.4671074748039246 0.2787948548793793 0.7624879479408264 -0.4671074748039246 0.2787948548793793 0.7549169063568115 -0.455400288105011 0.2760307788848877 0.7549169063568115 -0.455400288105011 0.2760307788848877 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7673535346984863 -0.4858811497688294 0.2938092648983002 0.7673535346984863 -0.4858811497688294 0.2938092648983002 0.760098934173584 -0.4592308402061462 0.2947191298007965 0.760098934173584 -0.4592308402061462 0.2947191298007965 0.7671361565589905 -0.4866270422935486 0.2897888720035553 0.7671361565589905 -0.4866270422935486 0.2897888720035553 0.7607418298721314 -0.4677572846412659 0.2828062176704407 0.7607418298721314 -0.4677572846412659 0.2828062176704407 0.7534193992614746 -0.4561249613761902 0.2801329493522644 0.7534193992614746 -0.4561249613761902 0.2801329493522644 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.759145975112915 -0.4624937176704407 0.29344642162323 0.759145975112915 -0.4624937176704407 0.29344642162323 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.759493887424469 -0.4671074748039246 0.2869994938373566 0.759493887424469 -0.4671074748039246 0.2869994938373566 0.7519221901893616 -0.455400288105011 0.2842352688312531 0.7519221901893616 -0.455400288105011 0.2842352688312531 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7589325904846191 -0.4652591943740845 0.2907354831695557 0.7589325904846191 -0.4652591943740845 0.2907354831695557 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7506538033485413 -0.4533376097679138 0.2877134084701538 0.7506538033485413 -0.4533376097679138 0.2877134084701538 0.7498074173927307 -0.4502493739128113 0.2900377213954926 0.7498074173927307 -0.4502493739128113 0.2900377213954926</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"266\" source=\"#ID78\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID75\">\r\n\t\t\t\t\t<float_array count=\"798\" id=\"ID79\">0.6799178236397709 -0.69057367228955 0.2466166179264536 0.5877019751617741 -0.6735925825448549 0.4481957397516203 0.7591808928247313 -0.5897284098617264 0.2754356087578434 -0.7591808928247313 0.5897284098617264 -0.2754356087578434 -0.5877019751617741 0.6735925825448549 -0.4481957397516203 -0.6799178236397709 0.69057367228955 -0.2466166179264536 -0.9393751266512928 -0.0005868521936232807 -0.3428906925440976 -0.9393751425070286 -0.0005617318017703885 -0.3428906911791024 -0.939376177593132 -0.0006342400068577415 -0.3428877290165553 0.939376177593132 0.0006342400068577415 0.3428877290165553 0.9393751425070286 0.0005617318017703885 0.3428906911791024 0.9393751266512928 0.0005868521936232807 0.3428906925440976 0.8252148226182395 -0.5644944296083407 0.01914511614750935 -0.8252148226182395 0.5644944296083407 -0.01914511614750935 0.6458766624700151 -0.5638591779577424 0.5146903577000577 -0.6458766624700151 0.5638591779577424 -0.5146903577000577 -0.9393782460668849 -0.0005463059712546547 -0.3428822135458314 0.9393782460668849 0.0005463059712546547 0.3428822135458314 -0.9393725144611836 -0.0005830620076450874 -0.3428978552186772 0.9393725144611836 0.0005830620076450874 0.3428978552186772 0.9554902810441462 -0.2903868445625364 0.05209417755557585 -0.9554902810441462 0.2903868445625364 -0.05209417755557585 0.7434540010848137 -0.6677509343219258 0.03721341133485457 -0.7434540010848137 0.6677509343219258 -0.03721341133485457 0.8952730943270777 -0.3038198768900282 0.325852066098326 -0.8952730943270777 0.3038198768900282 -0.325852066098326 0.4478529470750022 -0.6063564480372432 0.6570841618239579 -0.4478529470750022 0.6063564480372432 -0.6570841618239579 -0.9393820145822192 -0.000581914026689231 -0.342871830361605 0.9393820145822192 0.000581914026689231 0.342871830361605 -0.9393664157576216 -0.0005364266369218085 -0.3429146383477124 0.9393664157576216 0.0005364266369218085 0.3429146383477124 0.9327407545336943 -0.2413581365757324 -0.2678449826683425 -0.9327407545336943 0.2413581365757324 0.2678449826683425 0.8341508868389282 -0.476763425058057 -0.2772885401756445 -0.8341508868389282 0.476763425058057 0.2772885401756445 0.7662683213594329 -0.287461068881913 0.5746294402119204 -0.7662683213594329 0.287461068881913 -0.5746294402119204 0.4613755936650907 -0.476538718404578 0.7483604822754253 -0.4613755936650907 0.476538718404578 -0.7483604822754253 -0.9393736916148986 -0.0007151470546898659 -0.3428943803366973 0.9393736916148986 0.0007151470546898659 0.3428943803366973 0.2088634488026968 -0.4500435417004254 0.8682377959568338 -0.2088634488026968 0.4500435417004254 -0.8682377959568338 -0.9393729573431053 -0.0006630127486160339 -0.3428964966670899 0.9393729573431053 0.0006630127486160339 0.3428964966670899 0.7749461224564865 -0.5980366748323877 -0.2044765092744824 -0.7749461224564865 0.5980366748323877 0.2044765092744824 0.9665019143844036 -0.03194751190439447 -0.2546633188631643 -0.9665019143844036 0.03194751190439447 0.2546633188631643 0.9968801234772516 -0.03631507232101158 0.07008020361199754 -0.9968801234772516 0.03631507232101158 -0.07008020361199754 0.9387135282855428 -0.03695080590496688 0.3427120507899905 -0.9387135282855428 0.03695080590496688 -0.3427120507899905 -0.943038533385406 0.196902834547097 0.2681559216158034 0.943038533385406 -0.196902834547097 -0.2681559216158034 -0.2067253711329811 -0.1242152919064481 0.9704819329521427 0.1507433781956068 -0.2948336904584761 0.9435833449679005 -0.1507433781956068 0.2948336904584761 -0.9435833449679005 0.2067253711329811 0.1242152919064481 -0.9704819329521427 -0.9393903858135525 -0.0007073923093318052 -0.3428486585028234 0.9393903858135525 0.0007073923093318052 0.3428486585028234 0.7333521400211251 -0.4462197364600544 -0.51291576844542 0.7259902234974308 -0.2943867505606677 -0.621509964908433 -0.7259902234974308 0.2943867505606677 0.621509964908433 -0.7333521400211251 0.4462197364600544 0.51291576844542 0.7761996123257705 -0.02081418239622952 -0.6301435801755819 -0.7761996123257705 0.02081418239622952 0.6301435801755819 0.762265959676282 -0.1430140804791905 -0.6312666469119754 -0.762265959676282 0.1430140804791905 0.6312666469119754 0.8075999694332556 -0.03496358636113148 0.5886933301814896 -0.8075999694332556 0.03496358636113148 -0.5886933301814896 0.5434396503299688 -0.2363915090035321 0.8054765055048313 -0.5434396503299688 0.2363915090035321 -0.8054765055048313 -0.9517535263931729 0.3063699007265154 -0.01739853232272874 0.9517535263931729 -0.3063699007265154 0.01739853232272874 -0.3085419422614615 -0.006578297159407321 0.9511879918670166 0.3085419422614615 0.006578297159407321 -0.9511879918670166 -0.5562186803025871 0.1930351131557664 -0.8083057743028863 0.5562186803025871 -0.1930351131557664 0.8083057743028863 0.4791735318885444 -0.1284248272304346 -0.8682740293756868 0.3877633052703881 -0.007981794208910882 -0.9217244219651503 -0.3877633052703881 0.007981794208910882 0.9217244219651503 -0.4791735318885444 0.1284248272304346 0.8682740293756868 0.7688467764772459 0.1267459813893369 -0.6267456346096091 -0.7688467764772459 -0.1267459813893369 0.6267456346096091 0.9411963276024344 0.212650316218457 -0.2625439314093566 -0.9411963276024344 -0.212650316218457 0.2625439314093566 0.9649683650122823 0.2559650058373194 0.05760182559800928 -0.9649683650122823 -0.2559650058373194 -0.05760182559800928 0.9045559699959583 0.2690886836502407 0.3307110180747711 -0.9045559699959583 -0.2690886836502407 -0.3307110180747711 -0.9251274501786493 0.3236103327476385 -0.1985335071591531 0.9251274501786493 -0.3236103327476385 0.1985335071591531 -0.7287461481921549 0.2665806127222086 0.6307644793548138 0.7287461481921549 -0.2665806127222086 -0.6307644793548138 0.1773436221600157 -0.1383801625069031 0.9743716797525103 -0.1773436221600157 0.1383801625069031 -0.9743716797525103 -0.7485752064243595 0.2979840073279869 -0.5923180663321707 0.7485752064243595 -0.2979840073279869 0.5923180663321707 -0.1511142449962449 0.2634252964934358 -0.9527704855454751 0.1511142449962449 -0.2634252964934358 0.9527704855454751 0.3701288015582322 -0.002611640970967592 -0.9289767755915674 -0.3701288015582322 0.002611640970967592 0.9289767755915674 0.3765260039300674 0.003050065597743506 -0.9264010284236004 -0.3765260039300674 -0.003050065597743506 0.9264010284236004 0.355911543415152 -0.001054782258333201 -0.9345190531488546 -0.355911543415152 0.001054782258333201 0.9345190531488546 0.7743024048645378 0.2570963877903078 0.5782363125973403 -0.7743024048645378 -0.2570963877903078 -0.5782363125973403 0.5752066770048471 -0.02965150030983746 0.8174705299020983 -0.5752066770048471 0.02965150030983746 -0.8174705299020983 -0.8901001040455957 0.3213871804143389 -0.3231595349720336 0.8901001040455957 -0.3213871804143389 0.3231595349720336 -0.8939305696985269 0.3901322278047513 0.2206467343664276 0.8939305696985269 -0.3901322278047513 -0.2206467343664276 -0.3189771771136281 -0.002228556801782159 0.9477597765336964 0.3189771771136281 0.002228556801782159 -0.9477597765336964 -0.8401802938848788 0.3172011463304369 -0.4398641910114704 0.8401802938848788 -0.3172011463304369 0.4398641910114704 -0.5502837979551655 0.3842861951266458 -0.7412906730447405 0.5502837979551655 -0.3842861951266458 0.7412906730447405 -0.1459412265344615 0.1197706494857031 -0.9820163694762882 0.1459412265344615 -0.1197706494857031 0.9820163694762882 0.37059784119191 0.007332092256201738 -0.9287644914223642 -0.37059784119191 -0.007332092256201738 0.9287644914223642 0.701316740430611 0.2955786602452652 -0.6486818058180739 -0.701316740430611 -0.2955786602452652 0.6486818058180739 0.8176991911943827 0.4874539738108439 -0.3061970870796612 -0.8176991911943827 -0.4874539738108439 0.3061970870796612 0.8111534106397504 0.5848325082018011 0.001040075906144079 -0.8111534106397504 -0.5848325082018011 -0.001040075906144079 0.7403772452589184 0.6147858898666835 0.2718084699262435 -0.7403772452589184 -0.6147858898666835 -0.2718084699262435 -0.9049687909099836 0.4175173690044793 -0.08191907017599744 0.9049687909099836 -0.4175173690044793 0.08191907017599744 -0.7492797496892516 0.1133132693665334 0.6524875168852504 0.7492797496892516 -0.1133132693665334 -0.6524875168852504 0.1877929087199124 -0.0187485058154597 0.9820296925063937 -0.1877929087199124 0.0187485058154597 -0.9820296925063937 -0.7513841927851167 0.4126586489627937 -0.5149122588061585 0.7513841927851167 -0.4126586489627937 0.5149122588061585 -0.5512846542936887 0.1792841408636472 -0.8148266237519931 0.5512846542936887 -0.1792841408636472 0.8148266237519931 -0.1675135795287171 0.02034497022041111 -0.9856598210641473 0.1675135795287171 -0.02034497022041111 0.9856598210641473 -0.1141953612150234 -0.2671837295399576 -0.956855409216089 0.1141953612150234 0.2671837295399576 0.956855409216089 -0.1373079995524726 -0.1084823874345631 -0.9845699999875051 0.1373079995524726 0.1084823874345631 0.9845699999875051 0.6173715680651242 0.5870686058801959 0.5236437710263469 -0.6173715680651242 -0.5870686058801959 -0.5236437710263469 0.5497245629401343 0.2145754652830064 0.8073167126963617 -0.5497245629401343 -0.2145754652830064 -0.8073167126963617 -0.854643214054378 0.4178076248024445 -0.3082560061503141 0.854643214054378 -0.4178076248024445 0.3082560061503141 -0.9493035167847738 0.1689353223568427 0.265110712496214 0.9493035167847738 -0.1689353223568427 -0.265110712496214 -0.3297320128049064 -0.0009892053169032501 0.9440740549366167 0.3297320128049064 0.0009892053169032501 -0.9440740549366167 -0.7912297299100904 0.1931499717911882 -0.5802142732676165 0.7912297299100904 -0.1931499717911882 0.5802142732676165 -0.5669909487172499 0.0336906701803891 -0.8230347518881016 0.5669909487172499 -0.0336906701803891 0.8230347518881016 -0.5397868028907887 -0.2010953174264371 -0.817429434712319 0.5397868028907887 0.2010953174264371 0.817429434712319 0.4490318189794837 0.1182232051121184 -0.885660035971475 -0.4490318189794837 -0.1182232051121184 0.885660035971475 0.6857865836606216 0.4576104799293926 -0.565941172145908 -0.6857865836606216 -0.4576104799293926 0.565941172145908 0.7315345787125549 0.633264681644932 -0.2526519406792432 -0.7315345787125549 -0.633264681644932 0.2526519406792432 0.7017768175496579 0.7123551285934313 0.007711622171104857 -0.7017768175496579 -0.7123551285934313 -0.007711622171104857 0.6385570036227747 0.7328260708349735 0.2349700045301061 -0.6385570036227747 -0.7328260708349735 -0.2349700045301061 -0.9805264826708569 0.1855593302681447 -0.06430825554744492 0.9805264826708569 -0.1855593302681447 0.06430825554744492 -0.7630835367065815 0.01780607266966092 0.6460545331343619 0.7630835367065815 -0.01780607266966092 -0.6460545331343619 0.184362495251173 0.12859871721751 0.9744089697220424 -0.184362495251173 -0.12859871721751 -0.9744089697220424 -0.9228079037311781 0.1909135490947522 -0.3346305269746243 0.9228079037311781 -0.1909135490947522 0.3346305269746243 -0.8053162660872498 0.03890319056273035 -0.5915676236402138 0.8053162660872498 -0.03890319056273035 0.5915676236402138 -0.5421984100238716 -0.1706823745167251 -0.8227322840371089 0.5421984100238716 0.1706823745167251 0.8227322840371089 -0.7308172781272795 -0.3129338373834094 -0.60661233041468 0.7308172781272795 0.3129338373834094 0.60661233041468 -0.4946782400134846 -0.4107007204322739 -0.7659101494911609 0.4946782400134846 0.4107007204322739 0.7659101494911609 0.5477687006081097 0.705830777747373 0.4491685249643411 -0.5477687006081097 -0.705830777747373 -0.4491685249643411 0.4230660660035778 0.4905603113941648 0.7618173565108086 -0.4230660660035778 -0.4905603113941648 -0.7618173565108086 -0.9639875372890381 0.03017184867160515 0.2642303682379318 0.9639875372890381 -0.03017184867160515 -0.2642303682379318 -0.3068048893822191 0.003413062047218768 0.951766311054676 0.3068048893822191 -0.003413062047218768 -0.951766311054676 -0.9386491960233321 0.03928995933307447 -0.3426280576665571 0.9386491960233321 -0.03928995933307447 0.3426280576665571 -0.7845604671848272 -0.1951769569427006 -0.5885327763254251 0.7845604671848272 0.1951769569427006 0.5885327763254251 -0.9393739826382334 0.0006643069749497271 -0.3428936853291808 0.9393739826382334 -0.0006643069749497271 0.3428936853291808 -0.9393627354388413 0.0006410171626454632 -0.3429245403377464 0.9393627354388413 -0.0006410171626454632 0.3429245403377464 -0.9393707871345157 0.0006503156483142318 -0.3429024662609445 0.9393707871345157 -0.0006503156483142318 0.3429024662609445 -0.9393858151819967 0.0007508352660037245 -0.3428610891910293 0.9393858151819967 -0.0007508352660037245 0.3428610891910293 -0.9393749440430065 0.0007494343761093713 -0.3428908760120547 0.9393749440430065 -0.0007494343761093713 0.3428908760120547 -0.9393706349601151 0.0007184916840570121 -0.3429027470644266 0.9393706349601151 -0.0007184916840570121 0.3429027470644266 -0.9393774967244869 0.0007332103915556257 -0.3428839177479142 0.9393774967244869 -0.0007332103915556257 0.3428839177479142 -0.9971242869243636 0.03652602847978859 -0.0664003438927319 0.9971242869243636 -0.03652602847978859 0.0664003438927319 -0.7373166601176144 -0.1107468138559625 0.6664077475043031 0.7373166601176144 0.1107468138559625 -0.6664077475043031 0.117200890801949 0.2980435715410924 0.9473299217581271 -0.117200890801949 -0.2980435715410924 -0.9473299217581271 -0.9195739989367627 -0.2021364701998765 -0.3369339815076314 0.9195739989367627 0.2021364701998765 0.3369339815076314 -0.710960969287894 -0.4576456895764533 -0.5339428086989381 0.710960969287894 0.4576456895764533 0.5339428086989381 -0.8327848895967537 -0.3265070939497657 -0.4470597781726753 0.8327848895967537 0.3265070939497657 0.4470597781726753 -0.9393686625186729 0.0007466450868659529 -0.3429080903084584 0.9393686625186729 -0.0007466450868659529 0.3429080903084584 0.4125985842833128 0.6241671444098168 0.663458954334555 -0.4125985842833128 -0.6241671444098168 -0.663458954334555 -0.9437441686078724 -0.1746371064618844 0.2808003298880828 0.9437441686078724 0.1746371064618844 -0.2808003298880828 -0.3076367097576911 0.009034419447857814 0.9514609997654672 0.3076367097576911 -0.009034419447857814 -0.9514609997654672 -0.9785309184006823 -0.1982016884260379 -0.05650957829417122 0.9785309184006823 0.1982016884260379 0.05650957829417122 -0.8292727824263236 -0.4679301182566809 -0.3055291422355518 0.8292727824263236 0.4679301182566809 0.3055291422355518 -0.8889076873737911 -0.3206636371950923 -0.3271359887089659 0.8889076873737911 0.3206636371950923 0.3271359887089659 -0.9393765001578003 0.0006796477173609782 -0.3428867583186357 -0.9393684132680966 0.0007475143312173088 -0.3429087712154695 0.9393684132680966 -0.0007475143312173088 0.3429087712154695 0.9393765001578003 -0.0006796477173609782 0.3428867583186357 -0.6972138643777165 -0.2684413314761774 0.664704504930415 0.6972138643777165 0.2684413314761774 -0.664704504930415 0.1853846871193252 0.454094635493599 0.8714531426287965 -0.1853846871193252 -0.454094635493599 -0.8714531426287965 -0.8860715267852453 -0.4605499260129334 -0.05264043189360979 0.8860715267852453 0.4605499260129334 0.05264043189360979 -0.9261804971935849 -0.3171068437321693 -0.2040415062590594 0.9261804971935849 0.3171068437321693 0.2040415062590594 -0.9393832217065231 0.0006577869272402029 -0.3428683859626487 0.9393832217065231 -0.0006577869272402029 0.3428683859626487 -0.8692191199475498 -0.4145367328698739 0.2694761930471368 0.8692191199475498 0.4145367328698739 -0.2694761930471368 -0.2112153012424403 0.1239840947019398 0.9695442438496582 0.2112153012424403 -0.1239840947019398 -0.9695442438496582 -0.9532471886245345 -0.3012622693908256 -0.02368211183384631 0.9532471886245345 0.3012622693908256 0.02368211183384631 -0.9435863980596823 -0.1957734034073722 0.2670533353378111 0.9435863980596823 0.1957734034073722 -0.2670533353378111</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"266\" source=\"#ID79\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID77\">\r\n\t\t\t\t\t<float_array count=\"1344\" id=\"ID80\">1.619940663751411 -0.5362174691976966 1.613846557947723 -0.5017271521305829 1.836114619655016 -0.4916143526109842 5.771260477422451 0.0734402400975003 5.778516163528459 0.03908932103959196 5.683327532901288 0.0390735980818707 1.013713383320064 1.348938574794434 1.230728295956212 1.3909385420679 1.244657916080953 1.357901235720828 1.851542131741161 -0.6933212301949294 1.629281880835274 -0.7035397143174436 1.843711701956062 -0.6590665075198411 5.750992150815773 0.1020487929024041 5.771629536923543 0.07292988606899389 5.683697328424739 0.03856207864578082 5.778516333721045 0.0384503001934367 5.771278556264129 0.004093121027264076 5.683327703094029 0.03843457665509981 -1.36129387662527 0.7146292361098703 -1.373412434552412 0.7481054592727344 -1.085245988633699 0.7501305827269096 1.042264173133666 1.105680513481854 1.026680915775881 1.138277373706746 1.25762345915204 1.147271701316672 -0.9533113756527406 -0.9874977370150897 -0.9559962434775798 -0.9527577037205379 -0.6732718861217429 -0.9483976736708046 2.273858580643569 -2.276982527023954 2.2768013411733 -2.243724166483653 2.486285836560912 -2.226913973983119 5.719229934352534 0.1219010763660958 5.750119181521162 0.1024442784082792 5.68282113769674 0.03895967738315521 5.771592897026315 0.004656349823180232 5.750971845768776 -0.02447029179827442 5.683641419902921 0.03899681652744076 -1.860588190318298 3.154229687137683 -1.584460234643399 3.189343581926385 -1.576818068449811 3.157610702835063 -1.375882141952869 0.970829533683324 -1.095215580807107 1.007040408900814 -1.087715573356463 0.9728438253005183 0.299672488534154 3.464290623319485 0.5149517431601536 3.506137428848698 0.5345265100463381 3.476738120539312 -0.6674394257889194 -1.16710067635655 -0.9501623321362684 -1.17151854966625 -0.6747949134391407 -1.132884079746303 2.365664167113472 -2.760604537145424 2.57264895253524 -2.709699814011214 2.575020887356716 -2.742836544082699 5.684019527455241 0.1286430516699855 5.720449573903224 0.1218186530629061 5.684046663755639 0.03887565512981509 3.524288174154021 -4.153586329718942 3.532725286339523 -4.123172807589194 3.724314143050513 -4.087676906240269 5.750051068639311 -0.02526298293343521 5.719170715305216 -0.04472634600013511 5.682724014993886 0.03820633920893721 0.3769189552788338 2.847514955246447 0.3529358568563651 2.875002380782882 0.5878019828602177 2.887307729561664 -4.416007428413155 2.642239149393477 -4.424919397124604 2.673766394861575 -4.151657435624867 2.651191048843345 -1.827583867839416 2.501154979313117 -1.848194911464509 2.530112679597738 -1.564424291873586 2.533467744031272 -4.302746967210638 0.7640969585229374 -4.307230387189139 0.798619081474214 -4.029121585587762 0.7737329990590853 -4.191219685300024 -1.038349402467703 -4.190886611113217 -1.00364798615899 -3.914384642568414 -1.027570042644774 -0.4828936110712395 -2.827271504267202 -0.4766757241225178 -2.794444705642271 -0.2089133383215913 -2.782952236830445 5.685034350648311 0.1288511212866728 5.685066791064555 0.03908372583573953 5.648615988162037 0.1220102507647917 9.003925651227013 -1.582225864756775 8.988558356441066 -1.555360862926255 9.071398748130621 -1.42608384892452 3.928184648118962 -4.583338050699777 4.116833436486531 -4.511407321671815 4.117925898085868 -4.542155959012292 5.685319396431342 0.03944268274648118 5.721778563210672 -0.04348661136288807 5.685353146744804 -0.05032711075721768 -0.5611049140248847 4.911213825145168 -0.591503150633188 4.93114132602554 -0.3579215445064632 4.951825716237154 -0.7436788908035641 5.625439958852236 -0.5348362375169496 5.671412143014889 -0.5102955062754649 5.647465530726081 -4.301157819088672 4.797794894030605 -4.563957141887809 4.815755131679201 -4.299662100001466 4.825660364575621 -4.13972959611697 2.738187058951259 -4.412988596937202 2.760784571725561 -4.139352146361913 2.77022409267287 -2.54932334401649 5.358571036064803 -2.287104079908336 5.395311154017087 -2.278751543403887 5.367520261208195 -4.024892946958188 0.8033939850798529 -4.30300512909942 0.8282566773702877 -4.026111142228624 0.8380544365145123 -3.919065677488451 -1.057819433587963 -4.195559897560815 -1.033842018004807 -3.921993983162364 -1.023225768234507 -0.4185409081226615 -3.385515222052097 -0.1581648865923863 -3.341398190278865 -0.1508391842109891 -3.373179164807823 5.647657503310684 0.1215527002061922 5.684103679856141 0.03862491692143853 5.616777510095222 0.1020874951803267 2.589733919600477 7.003077785279044 2.554705917251536 6.992672442845839 2.401366746613284 7.058921181604996 9.393827081815365 0.2391323439353595 9.40266179659629 0.3973351886024577 9.432684295061447 0.3806420697550928 0.5025310397084046 -4.988877140356379 0.5144515645830259 -4.959580721650704 0.7579586323948353 -4.929498172098796 5.683669481526682 0.03910621148369183 5.683694654134307 -0.05066358376212161 5.647271910136958 -0.04383681065607089 -2.561959380242889 6.944335344099695 -2.596993967154515 6.954742003856614 -2.373592417839188 7.000190505670715 -2.702137029903522 7.132034911443729 -2.923756901269518 7.081475652123408 -2.732270563775011 7.148603879586429 -2.467435100021785 4.592509301004865 -2.494649281086138 4.614595820596708 -2.224049902225317 4.623013222445562 -5.36164484362815 4.586123819740367 -5.362192908928294 4.614010788500421 -5.096611154048744 4.582471502577178 -4.56688003112652 4.689727902756597 -4.57930200711115 4.716561020899873 -4.316484865191646 4.698762874224935 -5.440969886436216 2.692233501350221 -5.441119011272154 2.724271696265192 -5.164701718585753 2.688471620540477 -5.500788962026832 0.9402364799944278 -5.500283964943947 0.9749079010736622 -5.21701686762737 0.9360782703663532 -5.550290642101149 -0.7277531729571569 -5.549047328610682 -0.693096692605817 -5.26389781890407 -0.7324689153635181 -4.036256128223102 -2.954209003928445 -4.031561564195668 -2.922121583880448 -3.762855291998268 -2.941225105044576 5.616582470712541 0.1019192748789323 5.683907920827861 0.03845622416289126 5.595959486822548 0.07279163191781758 0.9485481630149456 4.719783956197679 0.9177410871016201 4.700247380171296 0.7602327978503798 4.75367462515718 3.072706013482189 7.028682182293315 2.892949862118324 7.084343539764074 2.923456550359094 7.100478524638944 8.667863687869488 -2.549622785560057 8.647926724476196 -2.525323072178259 8.715137888319841 -2.359345478300862 0.9112050698282426 -5.608788139435831 1.143556302597768 -5.544144004815419 1.153142210698788 -5.571685733466637 5.684599104662434 0.03904258699742706 5.64820599884873 -0.04390164775393446 5.617313552627433 -0.0244502760703929 -8.580844810615245 -2.52905113808391 -8.591414311221001 -2.557307821283608 -8.656712686176773 -2.389292430150153 -9.43662006136109 0.4074293301469209 -9.457663243961537 0.2325184534252773 -9.466623837960949 0.3907209150934053 -3.699148926196413 6.645872898822612 -3.731051530223564 6.660247001561825 -3.481143517260459 6.683439111398497 -3.64004296827223 6.855839769674712 -3.88949658934957 6.829795703199483 -3.65138347528706 6.87980995602046 -4.994125480006238 6.160863198340516 -5.006778514780404 6.137674035888735 -5.259108604376683 6.166333546234884 -5.126363043889109 4.469682957820198 -5.392010603201445 4.500877403808089 -5.11575059352798 4.496761427074305 -4.628176790071787 6.415622447031654 -4.876761810265183 6.426236510537431 -4.626726637297842 6.440133143373526 -5.185703839608864 2.590417465035719 -5.462130097249499 2.626174678216572 -5.178355964517593 2.622103462375783 -5.224788700592726 0.9007578834621121 -5.50804485453766 0.9396368862139409 -5.22164086321596 0.9353614403237647 -5.540320307336977 -0.6583556220892282 -5.256558835524158 -0.6629335021782893 -5.255143829357484 -0.6976067833444801 -3.777112743499354 -3.023051129941048 -4.04579065902626 -3.003702364183223 -3.781672648037275 -2.99121622453559 5.596219326529494 0.0732574920260865 5.684168278331471 0.03892290506316366 5.588990967175316 0.03890468605894603 0.4998097920681904 2.453886604604937 0.4756079876757702 2.426516097881019 0.3171209089754962 2.483268165560494 1.267798329451585 5.383283569880579 1.423771492851449 5.327138408258841 1.242077378110208 5.360117080156955 3.716323320198441 6.707602605352751 3.684422999876136 6.693231963591493 3.498317961081459 6.745168025005574 9.344200343447417 1.16030958054039 9.26796239366251 1.325311722897352 9.299679747214773 1.330948062172947 -3.638589467194065 -5.144094677951412 -3.631313215788357 -5.116118827494002 -3.375292523768128 -5.123506085704157 5.684333159636095 0.03916320953088037 5.617046629634652 -0.02432901216832 5.596405786960629 0.004791846405160305 -1.979998524869254 -4.292231232359522 -1.966019939634636 -4.321352069247738 -2.156718727576579 -4.245419612231467 -3.356419095637832 -4.784552375798672 -3.177423250337188 -4.876439142279571 -3.354261724503482 -4.815266301684429 -7.561216541310131 -4.115292821471752 -7.573151951854512 -4.142644503106019 -7.633207647570638 -3.96834156804957 -9.293052612876728 1.341556749601224 -9.401161974604914 1.182243650014989 -9.32477316452411 1.347202829535455 -4.869964308023862 6.377934111765112 -4.8848413574723 6.400675942944742 -4.636245593820659 6.390218752929163 -6.07286041884511 5.470690714683427 -6.332373990554641 5.525748821587173 -6.324262199234997 5.550163840109545 -4.982097524888515 6.172184478721647 -5.233853154708968 6.176821155594962 -5.234332882127718 6.201355482769962 -7.247121350747163 4.027842168054396 -7.241468022229128 4.055827198921337 -6.958920755375172 3.987688333365518 -7.64215543430428 2.706222353546021 -7.636284749546447 2.738098460390365 -7.333114764115316 2.667168061082732 -7.904473707186456 1.593705962947574 -7.897600379347402 1.627974058318311 -7.582171699315598 1.552126328674518 -8.129314786199577 0.6211338347343134 -8.121211181959145 0.6552342303022353 -7.803191481485429 0.574859198644154 -5.603895166475303 -2.464050242442858 -5.601954388676592 -2.432050278125148 -5.320166773080404 -2.469757582269813 5.684168133723978 0.03939144153358901 5.596240432571903 0.005020598424682573 5.58899082256767 0.0393732230226368 0.2609407075899523 0.7662683350253778 0.2464178553673385 0.7333756776812409 0.08244092777695111 0.7946065141369463 0.6692709134033237 3.073392454663266 0.8275744370277732 3.016324231663723 0.6489799187466167 3.044290578172518 2.914087841273369 4.373778203064759 2.886381843409347 4.352074408209947 2.715611208776685 4.394363588837614 4.112391869781885 6.752711646038292 3.916918130189838 6.78670937210445 3.929066245460942 6.81044191996446 8.597573059976908 3.1134257125061 8.569003321645953 3.101210943013873 8.400959997930153 3.23573385271581 -3.645573854009589 -5.205905116017523 -3.396171407572772 -5.186190643465025 -3.389567453954982 -5.21359278206677 -0.6237742695409254 -2.262293632617847 -0.6162776662729164 -2.29510980438105 -0.8008728259144898 -2.228944788320345 -1.324403197915005 -2.887697376925141 -1.142707894193754 -2.958656093541742 -1.322884421832762 -2.920867847297965 1.44619367991595 -4.643821647288538 1.46463209016117 -4.670947905366278 1.268428130761601 -4.616933790719322 -0.1346704162189716 -5.69497690456166 0.05098800274990267 -5.768526732673512 -0.1407112346029149 -5.723136177364614 -8.30779216894544 3.394367136317387 -8.48326313202746 3.292850927761829 -8.511445552161902 3.305619598484514 -7.962904352894063 3.90877979757036 -8.174643574304826 3.83263813770047 -7.976468699194655 3.930877081942786 5.244229109527849 5.959529036035123 5.217118252744867 5.978516796625582 5.249348931055446 6.170935451051902 -6.213938937078119 5.334279439823904 -6.243474750498419 5.317684818608774 -6.496968739352367 5.392932828999133 -3.053093782863408 6.909506753450412 -3.07222231678322 6.889245278357064 -3.296820632536994 6.95933983652242 -7.08483066240791 3.732139032860339 -7.368235455741166 3.798037197539121 -7.059931435450571 3.755532283334331 -7.405682702620627 2.478921781926116 -7.708984472013555 2.549502668052206 -7.386582836601299 2.508403793861222 -7.606157635594927 1.49141616921262 -7.921497907093262 1.567491054517074 -7.594546020387012 1.524988479135021 -8.096383167409147 0.7057872019862346 -7.774834056208714 0.6607276196604602 -7.778112136670967 0.6260301919090223 -5.572052791773422 -2.344558996903286 -5.295821959913587 -2.34974542234395 -5.290132020227484 -2.381645242672343 -0.04493796829425523 -0.6804333687833346 -0.04812183143536819 -0.7151659775523823 -0.2216357719088419 -0.6511069129760208 0.2146031608462551 1.019503007775851 0.378776636687172 0.9585989727452969 0.2016363736440807 0.9862242392562028 2.851193736355579 2.121199178873979 2.830530186218446 2.092259984246353 2.671287314240473 2.136986624537561 3.210433857256208 5.217882736047205 3.380004084656394 5.172703069927436 3.200391430161433 5.190440114097691 4.874548435766551 6.429839837451818 4.8596573276466 6.407094835190613 4.640829891298521 6.442130835704692 8.140814775315286 3.78974305685948 7.942648003681906 3.887992661778128 7.956213016474014 3.910087667730711 -5.73064914030279 -4.258906631492967 -5.457350933574708 -4.295846322779151 -5.733416338800293 -4.286711804356949 -0.1979483730046061 -0.9529180326137299 -0.3759270801434889 -0.9226072555480928 -0.3709597723457686 -0.8880232614150131 2.471740617996483 -2.39641028024239 2.483667763629212 -2.428248508037898 2.304631391555998 -2.380038236975361 1.706465342929101 -3.398810757327853 1.882755430859778 -3.45292282266539 1.703883154092827 -3.43104364641585 3.663826807537205 -5.058099271887226 3.867017257693361 -5.071442611882878 3.875328351798353 -5.099241550009557 3.546949641461736 -5.204786830846116 3.757786403330053 -5.247989096006686 3.540891660310312 -5.232263500799691 -3.719983169175907 6.709259388348319 -3.955041191334191 6.741412177170066 -3.950707790311418 6.76571302493091 3.207237620922375 6.760309367766829 3.205697714796032 6.884373949705359 3.237968071284741 6.87129973348397 2.71836963588698 6.955938591004199 2.643738667999106 7.139481731582862 2.67439868026482 7.146913204001043 -6.673875480347463 4.929980155275759 -6.827551760709345 4.985726092375737 -6.799759036566416 5.004089692531792 -8.041638509701523 3.462054168216795 -8.019730434175074 3.487231284284867 -7.867897563958934 3.421921478705819 -8.465434558910218 2.594488712837228 -8.447798478652601 2.62452979293724 -8.280260285826683 2.556644135527951 -8.489853494364654 2.015456063645019 -8.681731702440303 2.054683786781513 -8.668209328905455 2.087810513189702 -8.615883842455308 1.675419869276102 -8.809070055157438 1.71822637717244 -8.799456048663686 1.752187564289123 -8.383413956562865 -0.208860780062662 -8.074128844644719 -0.2957553748595546 -8.393006850053908 -0.2401766799348658 2.910415331761248 0.5002001580095155 2.90001779392691 0.4663678523011883 2.742913490552973 0.5138640038345921 3.061575968768659 2.979150420011122 3.220724728902601 2.934216961777545 3.053178380804451 2.947538842408506 4.611258982889346 4.752849140734649 4.598727642118561 4.72604749443345 4.393635926502052 4.760028617231185 4.890639490138161 6.416107688973201 4.67327925239847 6.427166271375205 4.671952480520878 6.451682150945595 3.558310174515268 6.858448376779172 3.294490571738939 6.834771662509112 3.552510865243352 6.88255749581085 -5.660762004745068 -4.187828860526787 -5.395863931408391 -4.195431560943416 -5.387067279186301 -4.222904746339228 2.845925978076525 -0.8490627157231938 2.847239824624465 -0.8838514188327487 2.682807024405622 -0.8354986339624942 2.667455759507103 -1.251624583802213 2.500120987715268 -1.236746312810481 2.503562196626869 -1.202151807089803 4.246404101003895 -2.878698216903488 4.252006989534803 -2.910692879271482 4.052017385987604 -2.871333267858569 3.999075742993286 -2.998898309632048 4.198842363777092 -3.038952548225522 3.995209126676578 -3.030793600690773 5.224559176740601 -4.471932540129242 5.451866419099465 -4.467714518620189 5.45342011706218 -4.495574607842248 5.276578896826958 -4.346573707344106 5.285998818079652 -4.319227069055942 5.515077591108759 -4.341525387462998 8.76992928250457 0.7931378170681543 8.781246852195157 0.822964758607844 8.91750916719236 0.8369004254560353 5.454819931525203 5.774979439755891 5.438892046984051 5.801636547383986 5.508081672766806 5.901339801016119 8.307666585764583 -1.123804771503647 8.318244655158576 -1.094450092419963 8.543170996483735 -1.070773087765305 -6.99445915595618 4.617630292792419 -7.029238702488101 4.606699740324029 -7.159954343912172 4.675437740008153 -8.077557467285487 3.107186595085773 -8.231674759177464 3.169096597927384 -8.047749834980579 3.127652876541906 -8.377298220836005 2.39661395425165 -8.545373207110847 2.463673439697669 -8.353563822226445 2.424237975417156 -8.49958007699728 2.012770143201586 -8.515489481780616 1.980273254157807 -8.693719349471335 2.052819540140382 -8.589192053205473 1.720319789859238 -8.596166837426104 1.685934658432313 -8.780249100694144 1.761942752364017 -8.298043634641619 -0.1220147028500511 -7.991646190182824 -0.1723444802677662 -7.987133271535171 -0.2052426539596612 2.901507908494777 0.8562299904322406 3.058848826558489 0.8092210452807116 2.895607012733823 0.8218373312986727 4.518024461486122 2.698701214804513 4.509072063129959 2.667183999331559 4.314262999384527 2.704541868593081 4.43615323997166 4.859893217004145 4.641148657717239 4.825554387755506 4.437417693647018 4.83201999369583 5.231687984906028 6.202493182026287 4.980411586168624 6.222385037355247 5.23216710628925 6.227028374247662 3.31070475680292 6.909450371292843 3.066999198626133 6.859552613209947 3.047861030092218 6.879808391990907 -8.852141192071063 -0.4721833525155892 -8.572104589030143 -0.584149427709649 -8.865553288376802 -0.4984767425031667 4.383277596557019 -0.9703164350082597 4.384233889511629 -1.00500854075006 4.192074091795119 -0.9644786168449441 4.176033042626822 -1.01111114523631 4.368146312940617 -1.05177733749157 4.173686020948338 -1.045732735005197 5.319938273639886 -2.597084929179837 5.320816204336861 -2.629117487317422 5.10006898952085 -2.599084903763264 5.13820867252681 -2.461632476964901 5.359088894745606 -2.491053648364738 5.131738605725835 -2.493436923101918 8.407159244259502 -1.21726296456864 8.620821399399713 -1.162140338743266 8.63127955419581 -1.189252455245153 4.528587017767162 -0.02641170334488021 4.497699283455415 -0.04586685038860851 4.46130134568214 0.03707477433640671 8.803758288345591 0.7456149804471391 8.939097696542799 0.7932262656363351 8.939436819185779 0.7627160713532108 4.460459536095858 0.03671129283708071 4.49685343594146 -0.04623142840983539 4.460430386658008 -0.05305915144846824 4.461401517562886 0.03686151698430007 4.461377258793934 -0.05290892820156359 4.424948741815012 -0.04606697911144887 4.460201965536864 0.03699704956974839 4.423743437030018 -0.04592988149532395 4.392871851205832 -0.02646411253551594 4.459853063353561 0.03717094384205769 4.392521668794053 -0.02628937768656717 4.371892838109163 0.002837012659116112 4.46030882180899 0.03651959677391967 4.372349501451534 0.002184231002592093 4.365120183165604 0.03654031200201141 4.372372628472493 0.07151854504854761 4.460309042390368 0.03714823679994782 4.365120403746716 0.03716895127662532 -8.692847217974084 1.545343360804858 -8.88046059017552 1.595736369065635 -8.873804038316852 1.628408569577701 4.457594078254536 0.8211222757485189 4.453360548884101 0.7865779258220966 4.263106471524915 0.8266050940870721 4.349027318188401 2.812213945169185 4.543822040409512 2.774809825120358 4.349329252298876 2.780177696524552 5.287626271073044 4.684981160200084 5.287219963686873 4.657092025211705 5.049061512377468 4.682545124536409 5.212927123046342 6.185565883910937 4.974387162667712 6.181924996350574 4.961601159714077 6.205066389024376 -2.769837363284249 7.106560558728847 -2.875320188287005 6.890935407414553 -2.800658644767653 7.113566861210577 -8.40635272720972 -0.7404675769389774 -8.397635060647142 -0.7701983909791447 -8.685551039872424 -0.6713702382917143 4.277606690294204 0.8717851468593341 4.467880180442919 0.8318151239353879 4.276651714627878 0.8371229192208669 5.277518695450643 -0.7861156721666167 5.2780353752537 -0.8207840754168208 5.060271186983167 -0.7876014305827878 5.072896601442999 -0.7361859931783535 5.290693392453745 -0.7692359557974751 5.070818838281209 -0.7708377493860409 7.752320879486677 -0.815634093393138 7.960279861130616 -0.7854237819541431 7.966929169676278 -0.8172053419659937 7.756268297219876 -0.5106367060453658 7.970877719783358 -0.5121091333148329 7.749542183438701 -0.5432998544074876 4.54896506610784 0.002494817847126293 4.52832980994388 -0.02662167391076578 4.461045078771744 0.03686542088697709 8.471142945786282 0.7317644909466251 8.608364977868966 0.727454718084664 8.464646331275617 0.6988226688018977 4.392805397245467 0.1002596017002513 4.460091999127723 0.03676921779013002 4.372156016577284 0.07114020902000419 -8.661765550226443 1.490152638466672 -8.660010180941812 1.456837393641249 -8.844288917909376 1.535252928071866 5.282073843692743 2.77826056913915 5.281990368352663 2.74622350729675 5.054714328947004 2.77652368092618 5.25524872040469 4.538789907910283 5.027891262692011 4.536893693824378 5.017033020420198 4.563909288279159 6.324735945896386 5.547955898162823 6.057108866597945 5.517318246759454 6.316625784021564 5.572368795969156 -5.171992694385841 5.96078681863121 -5.199100239339689 5.941802143399436 -5.177102212115647 6.172193961391411 -8.734637861296427 2.253355305893985 -8.57512569154439 2.150988707709166 -8.742758106069079 2.223519983419607 5.271435059783841 0.9659776987075038 5.271663234763903 0.9313077956459605 5.051558756737666 0.9645213127699988 5.259973374209189 0.8804458520093909 5.042724405532344 0.8790986888390493 5.039883034129148 0.9137172972381544 7.642158445271394 0.2861765293495928 7.648252285721511 0.2518190687301 7.437572311646674 0.2625473983699317 7.447216269288958 0.3897562336038156 7.657907695074914 0.379167991525558 7.448679477244231 0.3549816491299752 8.457255599261766 0.4005989649232058 8.594723473570284 0.429011511997523 8.594458268094895 0.3959232265597514 4.55659693984642 0.03750324897989772 4.549340962523218 0.003151046568942362 4.461420229561208 0.03752046925485183 4.423674434264032 0.1197001367480126 4.460076033603965 0.03675617630689763 4.392789490340109 0.1002465986616575 5.254291552091464 2.622599776821264 5.034414921811282 2.621174292000391 5.027005795765879 2.652854811490564 7.075637084872096 4.166225394866737 7.08174621608214 4.138302128714233 6.833895663818552 4.135070975690361 6.165886087263003 5.39481491611344 6.136112467866505 5.411145787013433 6.404110533357063 5.439706168541727 -2.762575856170686 7.000904422486411 -2.790781249043742 6.846675808502423 -2.795603585611011 6.989067957824188 -8.702669161745337 1.568940343562624 -8.695452768587304 1.538337791588719 -8.868656310130136 1.625858514697937 7.458692868491122 1.49558732789169 7.464888725195936 1.46124074692423 7.24913406967041 1.473268274111121 7.454405578342742 1.335080218524416 7.249464990515346 1.313435234817762 7.238656992412899 1.347174936169087 8.322582891898371 0.9974536615701256 8.327949185315202 0.9629170762017794 8.185646700759257 0.9744376532228073 8.200077318221679 1.114587443871882 8.342404957382749 1.103260797492331 8.203418269607138 1.079863562102585 4.549359237757692 0.07112002494902815 4.556596724507694 0.03676511143898095 4.461420014222696 0.03678233244741672 4.461100903142934 0.1269562658758845 4.461074953590937 0.03718753011993907 4.424668563021831 0.120130189205036 7.312622210591013 2.790872194196395 7.318783500968848 2.759026713980688 7.089901216091215 2.766524808805758 7.092058531659565 3.821989058166489 6.869658853247844 3.795887237322841 6.844204893344118 3.818907879671726 6.829884711987325 5.010664637021248 6.648412208270865 4.973277014582632 6.802085706819893 5.029023555430791 -5.377629787839329 5.7964764533189 -5.393577288687887 5.769819168261567 -5.430793614409249 5.922860502356951 7.300968871997586 2.438955546683173 7.09134858737015 2.416996713956953 7.072084155091899 2.446407557494349 8.162200133225813 1.793737807869269 8.174643604179328 1.760348669530641 8.022843958062268 1.771727549671615 8.159494923662852 1.617996035113387 8.022148715622286 1.596545134562194 8.007705996141191 1.629463060000011 4.528643064032052 0.1003865767564764 4.549261847374723 0.07125912380428487 4.461322430038266 0.03692173845406211 4.460546063433141 0.1268673404645122 4.496964697452659 0.1200267885895665 4.460517218740209 0.03709860525537007 7.799694177759466 3.677299978200762 7.822581943645002 3.652668286093621 7.646968487033075 3.646328395507186 6.896875631760279 4.734159474761321 6.861827229868409 4.744522600559201 7.044703940237076 4.777404512500175 8.039431588244 2.692269467299187 8.057984007583832 2.662576694149323 7.894354637798699 2.668250721389529 8.036198704186658 2.299836424912813 7.896775844967872 2.278089078509356 7.872566136927246 2.305453098225462 4.497544049806503 0.1199618105192656 4.528420815506976 0.1004971687639112 4.461099362781186 0.03703286791730859 7.859066668103008 3.266107975803739 7.714332995525491 3.240840086120174 7.683424882464392 3.260273915005729</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"672\" source=\"#ID80\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID76\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID74\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID75\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"448\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID76\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID77\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 16 12 6 13 8 14 9 14 11 13 17 12 7 15 18 16 8 17 9 17 19 16 10 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 28 30 16 31 8 32 9 32 17 31 29 30 18 33 30 34 8 35 9 35 31 34 19 33 12 36 20 37 32 38 33 38 21 37 13 36 2 39 24 40 20 41 21 41 25 40 3 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 26 48 38 49 14 50 15 50 39 49 27 48 40 51 28 52 8 53 9 53 29 52 41 51 26 54 42 55 38 56 39 56 43 55 27 54 30 57 44 58 8 59 9 59 45 58 31 57 46 60 22 61 34 62 35 62 23 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 40 78 8 79 54 80 55 80 9 79 41 78 42 81 56 82 57 83 58 83 59 82 43 81 42 84 57 85 38 86 39 86 58 85 43 84 8 87 44 88 60 89 61 89 45 88 9 87 62 90 46 91 63 92 64 92 47 91 65 90 46 93 34 94 63 95 64 95 35 94 47 93 66 96 32 97 48 98 49 98 33 97 67 96 48 99 20 100 50 101 51 101 21 100 49 99 34 102 32 103 68 104 69 104 33 103 35 102 50 105 24 106 52 107 53 107 25 106 51 105 52 108 36 109 70 110 71 110 37 109 53 108 38 111 72 112 36 113 37 113 73 112 39 111 54 114 8 115 74 116 75 116 9 115 55 114 56 117 54 118 76 119 77 119 55 118 59 117 56 120 76 121 57 122 58 122 77 121 59 120 38 123 57 124 72 125 73 125 58 124 39 123 8 126 60 127 78 128 79 128 61 127 9 126 80 129 62 130 81 131 82 131 65 130 83 129 81 132 62 133 63 134 64 134 65 133 82 132 63 135 34 136 68 137 69 137 35 136 64 135 66 138 48 139 84 140 85 140 49 139 67 138 68 141 32 142 66 143 67 143 33 142 69 141 48 144 50 145 86 146 87 146 51 145 49 144 50 147 52 148 88 149 89 149 53 148 51 147 52 150 70 151 90 152 91 152 71 151 53 150 36 153 72 154 70 155 71 155 73 154 37 153 74 156 8 157 92 158 93 158 9 157 75 156 54 159 74 160 94 161 95 161 75 160 55 159 54 162 94 163 76 164 77 164 95 163 55 162 57 165 76 166 96 167 97 167 77 166 58 165 57 168 96 169 72 170 73 170 97 169 58 168 8 171 78 172 98 173 99 173 79 172 9 171 78 174 80 175 100 176 101 176 83 175 79 174 100 177 80 178 81 179 82 179 83 178 101 177 81 180 63 181 102 182 103 182 64 181 82 180 102 183 63 184 68 185 69 185 64 184 103 183 84 186 104 187 66 188 67 188 105 187 85 186 84 189 48 190 86 191 87 191 49 190 85 189 106 192 68 193 66 194 67 194 69 193 107 192 86 195 50 196 88 197 89 197 51 196 87 195 88 198 52 199 90 200 91 200 53 199 89 198 70 201 108 202 90 203 91 203 109 202 71 201 70 204 72 205 110 206 111 206 73 205 71 204 92 207 8 208 112 209 113 209 9 208 93 207 74 210 92 211 114 212 115 212 93 211 75 210 94 213 74 214 114 215 115 215 75 214 95 213 76 216 94 217 116 218 117 218 95 217 77 216 76 219 116 220 96 221 97 221 117 220 77 219 72 222 96 223 110 224 111 224 97 223 73 222 8 225 98 226 118 227 119 227 99 226 9 225 98 228 78 229 120 230 121 230 79 229 99 228 120 231 78 232 100 233 101 233 79 232 121 231 100 234 81 235 122 236 123 236 82 235 101 234 122 237 81 238 102 239 103 239 82 238 123 237 102 240 68 241 106 242 107 242 69 241 103 240 124 243 104 244 84 245 85 245 105 244 125 243 104 246 106 247 66 248 67 248 107 247 105 246 84 249 86 250 126 251 127 251 87 250 85 249 86 252 88 253 128 254 129 254 89 253 87 252 88 255 90 256 130 257 131 257 91 256 89 255 90 258 108 259 132 260 133 260 109 259 91 258 70 261 110 262 108 263 109 263 111 262 71 261 8 264 118 265 112 266 113 266 119 265 9 264 92 267 112 268 134 269 135 269 113 268 93 267 114 270 92 271 134 272 135 272 93 271 115 270 94 273 114 274 136 275 137 275 115 274 95 273 94 276 136 277 116 278 117 278 137 277 95 276 96 279 116 280 138 281 139 281 117 280 97 279 96 282 138 283 110 284 111 284 139 283 97 282 118 285 98 286 140 287 141 287 99 286 119 285 140 288 98 289 120 290 121 290 99 289 141 288 120 291 100 292 142 293 143 293 101 292 121 291 142 294 100 295 122 296 123 296 101 295 143 294 144 297 122 298 102 299 103 299 123 298 145 297 144 300 102 301 106 302 107 302 103 301 145 300 124 303 146 304 104 305 105 305 147 304 125 303 126 306 124 307 84 308 85 308 125 307 127 306 104 309 148 310 106 311 107 311 149 310 105 309 126 312 86 313 128 314 129 314 87 313 127 312 128 315 88 316 130 317 131 317 89 316 129 315 130 318 90 319 132 320 133 320 91 319 131 318 108 321 150 322 132 323 133 323 151 322 109 321 110 324 152 325 108 326 109 326 153 325 111 324 112 327 118 328 154 329 155 329 119 328 113 327 134 330 112 331 154 332 155 332 113 331 135 330 114 333 134 334 156 335 157 335 135 334 115 333 136 336 114 337 156 338 157 338 115 337 137 336 116 339 136 340 158 341 159 341 137 340 117 339 116 342 158 343 138 344 139 344 159 343 117 342 138 345 152 346 110 347 111 347 153 346 139 345 118 348 140 349 154 350 155 350 141 349 119 348 140 351 120 352 160 353 161 353 121 352 141 351 160 354 120 355 142 356 143 356 121 355 161 354 162 357 142 358 122 359 123 359 143 358 163 357 162 360 122 361 144 362 145 362 123 361 163 360 148 363 144 364 106 365 107 365 145 364 149 363 164 366 146 367 124 368 125 368 147 367 165 366 146 369 148 370 104 371 105 371 149 370 147 369 166 372 124 373 126 374 127 374 125 373 167 372 126 375 128 376 168 377 169 377 129 376 127 375 128 378 130 379 170 380 171 380 131 379 129 378 172 381 130 382 132 383 133 383 131 382 173 381 174 384 132 385 150 386 151 386 133 385 175 384 152 387 150 388 108 389 109 389 151 388 153 387 134 390 154 391 176 392 177 392 155 391 135 390 156 393 134 394 176 395 177 395 135 394 157 393 136 396 156 397 178 398 179 398 157 397 137 396 136 399 178 400 158 401 159 401 179 400 137 399 158 402 180 403 138 404 139 404 181 403 159 402 138 405 180 406 152 407 153 407 181 406 139 405 154 408 140 409 182 410 183 410 141 409 155 408 140 411 160 412 182 413 183 413 161 412 141 411 160 414 142 415 184 416 185 416 143 415 161 414 184 417 142 418 162 419 163 419 143 418 185 417 186 420 162 421 144 422 145 422 163 421 187 420 148 423 186 424 144 425 145 425 187 424 149 423 164 426 188 427 146 428 147 428 189 427 165 426 166 429 164 430 124 431 125 431 165 430 167 429 146 432 190 433 148 434 149 434 191 433 147 432 168 435 166 436 126 437 127 437 167 436 169 435 168 438 128 439 170 440 171 440 129 439 169 438 170 441 130 442 172 443 173 443 131 442 171 441 174 444 172 445 132 446 133 446 173 445 175 444 192 447 174 448 150 449 151 449 175 448 193 447 152 450 194 451 150 452 151 452 195 451 153 450 176 453 154 454 182 455 183 455 155 454 177 453 156 456 176 457 196 458 197 458 177 457 157 456 178 459 156 460 196 461 197 461 157 460 179 459 178 462 198 463 158 464 159 464 199 463 179 462 158 465 198 466 180 467 181 467 199 466 159 465 180 468 194 469 152 470 153 470 195 469 181 468 182 471 160 472 200 473 201 473 161 472 183 471 200 474 160 475 184 476 185 476 161 475 201 474 184 477 162 478 202 479 203 479 163 478 185 477 202 480 162 481 186 482 187 482 163 481 203 480 190 483 186 484 148 485 149 485 187 484 191 483 188 486 164 487 204 488 205 488 165 487 189 486 188 489 190 490 146 491 147 491 191 490 189 489 204 492 164 493 206 494 207 494 165 493 205 492 204 495 206 496 208 497 209 497 207 496 205 495 204 498 208 499 210 500 211 500 209 499 205 498 204 501 210 502 212 503 213 503 211 502 205 501 204 504 212 505 214 506 215 506 213 505 205 504 216 507 204 508 214 509 215 509 205 508 217 507 192 510 150 511 194 512 195 512 151 511 193 510 176 513 182 514 218 515 219 515 183 514 177 513 196 516 176 517 218 518 219 518 177 517 197 516 178 519 196 520 220 521 221 521 197 520 179 519 178 522 220 523 198 524 199 524 221 523 179 522 198 525 222 526 180 527 181 527 223 526 199 525 222 528 194 529 180 530 181 530 195 529 223 528 218 531 182 532 200 533 201 533 183 532 219 531 200 534 184 535 224 536 225 536 185 535 201 534 224 537 184 538 202 539 203 539 185 538 225 537 226 540 202 541 186 542 187 542 203 541 227 540 226 543 186 544 190 545 191 545 187 544 227 543 228 546 188 547 204 548 205 548 189 547 229 546 228 549 190 550 188 551 189 551 191 550 229 549 230 552 204 553 216 554 217 554 205 553 231 552 232 555 192 556 194 557 195 557 193 556 233 555 196 558 218 559 234 560 235 560 219 559 197 558 196 561 234 562 220 563 221 563 235 562 197 561 220 564 236 565 198 566 199 566 237 565 221 564 236 567 222 568 198 569 199 569 223 568 237 567 222 570 232 571 194 572 195 572 233 571 223 570 218 573 200 574 238 575 239 575 201 574 219 573 200 576 224 577 238 578 239 578 225 577 201 576 224 579 202 580 240 581 241 581 203 580 225 579 240 582 202 583 226 584 227 584 203 583 241 582 228 585 226 586 190 587 191 587 227 586 229 585 242 588 228 589 204 590 205 590 229 589 243 588 244 591 204 592 245 593 246 593 205 592 247 591 218 594 238 595 234 596 235 596 239 595 219 594 220 597 234 598 248 599 249 599 235 598 221 597 248 600 236 601 220 602 221 602 237 601 249 600 236 603 250 604 222 605 223 605 251 604 237 603 250 606 232 607 222 608 223 608 233 607 251 606 238 609 224 610 252 611 253 611 225 610 239 609 224 612 240 613 252 614 253 614 241 613 225 612 240 615 226 616 242 617 243 617 227 616 241 615 242 618 226 619 228 620 229 620 227 619 243 618 254 621 242 622 204 623 205 623 243 622 255 621 256 624 204 625 244 626 247 626 205 625 257 624 234 627 238 628 258 629 259 629 239 628 235 627 234 630 258 631 248 632 249 632 259 631 235 630 248 633 260 634 236 635 237 635 261 634 249 633 260 636 250 637 236 638 237 638 251 637 261 636 238 639 252 640 258 641 259 641 253 640 239 639 252 642 240 643 254 644 255 644 241 643 253 642 240 645 242 646 254 647 255 647 243 646 241 645 262 648 254 649 204 650 205 650 255 649 263 648 256 651 264 652 204 653 205 653 265 652 257 651 248 654 258 655 264 656 265 656 259 655 249 654 264 657 260 658 248 659 249 659 261 658 265 657 258 660 252 661 262 662 263 662 253 661 259 660 252 663 254 664 262 665 263 665 255 664 253 663 264 666 262 667 204 668 205 668 263 667 265 666 258 669 262 670 264 671 265 671 263 670 259 669</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID81\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID82\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID86\">0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7651680707931519 -0.5068138837814331 0.2471411228179932 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7651680707931519 -0.5068138837814331 0.2471411228179932 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.766562283039093 -0.4993950724601746 0.243329256772995 0.766562283039093 -0.4993950724601746 0.243329256772995 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7745932340621948 -0.5068138837814331 0.251851499080658 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7745932340621948 -0.5068138837814331 0.251851499080658 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.766562283039093 -0.4993950724601746 0.243329256772995 0.766562283039093 -0.4993950724601746 0.243329256772995 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.766562283039093 -0.5142327547073364 0.243329256772995 0.766562283039093 -0.5142327547073364 0.243329256772995 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.766562283039093 -0.5142327547073364 0.243329256772995 0.766562283039093 -0.5142327547073364 0.243329256772995 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID86\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID83\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID87\">0.375978209953221 0.5217944735711745 -0.7657485964668513 0.4407333323315916 2.066001226809362e-006 -0.897638083955679 0.4407333331654882 2.066979567289028e-006 -0.8976380835462399 -0.4407333331654882 -2.066979567289028e-006 0.8976380835462399 -0.4407333323315916 -2.066001226809362e-006 0.897638083955679 -0.375978209953221 -0.5217944735711745 0.7657485964668513 -0.9443384505283671 4.81767848970578e-008 -0.3289755171037514 -0.9421829832111356 -5.11061567637383e-007 -0.335098830417392 -0.9466350234875653 -0.006131783125161065 -0.3222491792734352 0.9466350234875653 0.006131783125161065 0.3222491792734352 0.9421829832111356 5.11061567637383e-007 0.335098830417392 0.9443384505283671 -4.81767848970578e-008 0.3289755171037514 0.3699653038975272 0.5173306518499654 -0.771683011714331 -0.3699653038975272 -0.5173306518499654 0.771683011714331 0.378595662181366 -0.5119595283111984 -0.7710789622009072 -0.378595662181366 0.5119595283111984 0.7710789622009072 -0.9453780427562016 0.01025717885261708 -0.3258145892320336 0.9453780427562016 -0.01025717885261708 0.3258145892320336 -0.9466351612062506 0.006130792814932401 -0.3222487935547259 0.9466351612062506 -0.006130792814932401 0.3222487935547259 0.8995898946121159 9.144688632883362e-010 0.4367356425937349 0.8995954425367289 -2.754916782337308e-011 0.4367242147707715 0.8996049235230686 -7.124082212569685e-006 0.4367046845664716 -0.8996049235230686 7.124082212569685e-006 -0.4367046845664716 -0.8995954425367289 2.754916782337308e-011 -0.4367242147707715 -0.8995898946121159 -9.144688632883362e-010 -0.4367356425937349 0.2115276328007368 0.8697883303021156 -0.4457850614724262 -0.2115276328007368 -0.8697883303021156 0.4457850614724262 0.8996049241110151 7.126201571800092e-006 0.4367046833552761 -0.8996049241110151 -7.126201571800092e-006 -0.4367046833552761 0.3705540966906015 -0.5174542913667095 -0.7713175207215178 -0.3705540966906015 0.5174542913667095 0.7713175207215178 -0.9439623282584713 0 -0.3300532121171466 0.9439623282584713 -0 0.3300532121171466 -0.9453780682239803 -0.0102571385473218 -0.3258145166040277 0.9453780682239803 0.0102571385473218 0.3258145166040277 0.8995950455855233 -3.663571547317351e-005 0.4367250309013729 -0.8995950455855233 3.663571547317351e-005 -0.4367250309013729 0.2075772187704324 0.8694421042859699 -0.4483103005088291 -0.2075772187704324 -0.8694421042859699 0.4483103005088291 0.8995950457664682 3.663566904712296e-005 0.4367250305286541 -0.8995950457664682 -3.663566904712296e-005 -0.4367250305286541 0.208460698835653 -0.8739288926851656 -0.4390813450501301 -0.208460698835653 0.8739288926851656 0.4390813450501301 -0.9460346356416761 0.004563946282964946 -0.3240333911198774 0.9460346356416761 -0.004563946282964946 0.3240333911198774 0.008590673261842052 0.9996059528861063 -0.02672338465777645 -0.008590673261842052 -0.9996059528861063 0.02672338465777645 0.2038573469755026 -0.8745269342451815 -0.4400509326928348 -0.2038573469755026 0.8745269342451815 0.4400509326928348 -0.9439623343035419 0 -0.3300531948280579 0.9439623343035419 -0 0.3300531948280579 0.8995774230538666 4.826647817647466e-022 0.436761330627798 -0.8995774230538666 -4.826647817647466e-022 -0.436761330627798 0.8995774230538701 0 0.4367613306277909 -0.8995774230538701 -0 -0.4367613306277909 -0.9415278151062586 0.01889825686992318 -0.3364048591630528 0.9415278151062586 -0.01889825686992318 0.3364048591630528 -0.2190448495887265 0.8751592745761597 0.431411170453411 -0.001785345109949788 0.9999967123999728 0.001840579279618263 0.001785345109949788 -0.9999967123999728 -0.001840579279618263 0.2190448495887265 -0.8751592745761597 -0.431411170453411 -0.002843379399834357 -0.9999928917927541 -0.002476198205651264 0.002843379399834357 0.9999928917927541 0.002476198205651264 0.01363581427139172 -0.9994901796294989 -0.0288694543306301 -0.01363581427139172 0.9994901796294989 0.0288694543306301 -0.9460346179128348 -0.004563942108385799 -0.3240334429390699 0.9460346179128348 0.004563942108385799 0.3240334429390699 0.8995952008205769 1.186622883298446e-005 0.4367247125132474 -0.8995952008205769 -1.186622883298446e-005 -0.4367247125132474 0.8995952008791872 -1.186621380169817e-005 0.4367247123925184 -0.8995952008791872 1.186621380169817e-005 -0.4367247123925184 -0.9398068381235053 4.800570693624863e-007 -0.3417061705852986 0.9398068381235053 -4.800570693624863e-007 0.3417061705852986 -0.3993398374938099 0.5109025352181355 0.7612531075129344 -0.2284849364604937 0.8694177509828229 0.4380723776804629 0.2284849364604937 -0.8694177509828229 -0.4380723776804629 0.3993398374938099 -0.5109025352181355 -0.7612531075129344 -0.222572432077619 -0.8709186855360013 0.438134860132468 0.222572432077619 0.8709186855360013 -0.438134860132468 -0.2226310751864621 -0.8762556962653183 0.4273305033857309 0.2226310751864621 0.8762556962653183 -0.4273305033857309 -0.9415278025606702 -0.0188975949309247 -0.3364049314607355 0.9415278025606702 0.0188975949309247 0.3364049314607355 0.8996042616570016 2.640372423429032e-005 0.4367060472576542 -0.8996042616570016 -2.640372423429032e-005 -0.4367060472576542 0.8996042617889712 -2.640316438136232e-005 0.4367060469858336 -0.8996042617889712 2.640316438136232e-005 -0.4367060469858336 -0.469474849302696 9.118013130299431e-006 0.8829458453320185 -0.4041982700684288 0.5086681365402612 0.7601845074337856 0.4041982700684288 -0.5086681365402612 -0.7601845074337856 0.469474849302696 -9.118013130299431e-006 -0.8829458453320185 -0.4010681788190585 -0.5057171122936732 0.7638026697204665 0.4010681788190585 0.5057171122936732 -0.7638026697204665 -0.40456666931246 -0.5073368437200908 0.76087787264814 0.40456666931246 0.5073368437200908 -0.76087787264814 0.8996050028853476 4.9278183417775e-010 0.43670452113947 -0.8996050028853476 -4.9278183417775e-010 -0.43670452113947 -0.4694748563753538 8.980243316135359e-006 0.8829458415727979 0.4694748563753538 -8.980243316135359e-006 -0.8829458415727979</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID87\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID85\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID88\">-8.343844565602536 3.543118263434617 -8.382851173200937 3.526346557651889 -8.437936047592569 3.605860239956482 5.313198148759145 -0.1399620452823762 5.314159574535079 -0.2096745960193521 5.271181998423044 -0.2007403241355626 -8.399079464883094 3.622409275093206 -8.343993404509398 3.542899692012902 -8.438087577498109 3.605639171055174 -0.1926900638404377 7.20294571541573 -0.1766122939953679 7.299228780151535 -0.1376025136248288 7.282458250509552 4.902738990445891 -0.03114646266338814 4.859391015364293 -0.0913431629190689 4.828268720275609 -0.06266687231914832 4.817776875026402 -0.2264247686498599 4.859794847519937 -0.2872030478013722 4.816815489344182 -0.2961373197290152 -5.068611761747508 -0.9486757717377763 -5.068609406092489 -0.8788322353679069 -5.025779548333094 -0.9393184573896304 -8.950026130758724 0.6605307602452011 -8.971175442494232 0.6266938625873333 -9.067562318135598 0.6761944720988358 -5.067665914919799 -0.9488873331219097 -5.110499916460379 -0.9395300187737632 -5.067668270476479 -0.8790437967520385 -0.1932408678788178 7.202945780829676 -0.2322495278464481 7.219717358683649 -0.1771694353701919 7.29922950031786 5.068138837814331 -0.2417616733835548 4.993950724601746 -0.2736911840805733 4.982473850250244 -0.2417616733835548 5.305675535343083 -0.009926139123586465 5.274554433657209 -0.03860242458546571 5.231204667521974 0.02159426488454008 -5.024686968751198 -0.9391142004259667 -5.06752154218299 -0.8786300449575993 -4.993331884049916 -0.9135494472973115 -8.970827455956204 0.5896146450140907 -9.08822349081407 0.6059158153191752 -9.0634209709409 0.635602120563353 -5.111592468299554 -0.9388367054217398 -5.142946360897971 -0.9132719523181463 -5.068756106704823 -0.878352550012667 5.158889385222121 5.305634292436024 5.063804966929708 5.254598621125737 5.133562050212204 5.335044313432179 4.993950724601746 -0.02792316078328727 5.068138837814331 -0.06254924404119872 4.982473850250244 -0.06254924404119872 -8.179974031342647 1.090452894609735 -8.19515812353618 1.05949601654638 -8.294178322284875 1.096276142224795 5.485995607753845 5.00183953062288 5.465419112284291 5.035893612869341 5.559200633392363 5.080366375996972 5.153806209564209 -0.2417616733835557 5.142327547073364 -0.2736911840805741 5.068138837814331 -0.2417616733835557 -4.993950724601746 -0.9141731902504215 -5.068138837814331 -0.8792517567371023 -4.982473850250244 -0.8792517567371023 -5.142327547073364 -0.9141731902504207 -5.153806209564209 -0.8792517567371014 -5.068138837814331 -0.8792517567371014 4.952025870323596 -0.1121746920996578 4.994621123114127 -0.1713549770475362 4.920569945696441 -0.1365479701492706 -7.001419027427395 2.973917863672661 -7.016607472064904 2.94018778095906 -7.110212585110727 2.978243406263085 -8.173166530997587 1.177725768140519 -8.287373741612189 1.183513471797853 -8.266794802308175 1.21574612199988 7.174263755035262 2.9637055771487 7.075130506956731 2.927114391874874 7.153763361781501 2.995969580567783 6.955257057845609 3.024932840630291 6.9399776139736 3.055861081990014 7.03347546040006 3.0940795430343 5.142327547073364 -0.02792316078328618 5.153806209564209 -0.06254924404119762 5.068138837814331 -0.06254924404119762 -5.068138837814331 -0.8789867754968088 -4.993950724601746 -0.8440644861611898 -4.982473850250244 -0.8789867754968088 -5.153806209564209 -0.8789867754968075 -5.142327547073364 -0.8440644861611885 -5.068138837814331 -0.8789867754968075 4.833383986635733 -0.2009420908461514 4.832478441355254 -0.269311086124223 4.79041356430487 -0.209896498007136 -4.817001152561604 5.422121169557888 -4.839736998741243 5.392347092862829 -4.92035794411898 5.438471476782302 -7.002911586619617 2.953729967921219 -7.111705460258842 2.958050589909358 -7.091110626255508 2.990277884449331 8.286530932096811 1.18568334353603 8.192902823453633 1.147662741779765 8.265952833762935 1.217917647225526 8.210438277911528 1.141555618151195 8.195229667675156 1.175280453895014 8.283404632472832 1.211864301761794 5.183789348550204 -0.08688609419973015 5.215244082052956 -0.1112593744938168 5.14119230992116 -0.1460663845973721 -5.068338773715833 -0.8786955365358936 -5.025506009258447 -0.8182099678317926 -4.994150160080813 -0.8437739050935431 -5.142128106458063 -0.8438637850184855 -5.110773449376557 -0.8182998477648531 -5.067938896772182 -0.8787854164497464 5.298171380705109 -0.1178998379364343 5.341143585397443 -0.1268542451379624 5.299076888217746 -0.186268833524066 0.4846525411324921 7.173005203558017 0.4451360141056099 7.156989867586018 0.4017957098467573 7.224787245778542 -4.871987383799793 5.307274327778187 -4.975435306639563 5.323263998490778 -4.949564627279097 5.352380461933763 9.141146669114521 0.7992565543632813 9.059815007171272 0.7539109006504693 9.115559867904937 0.8285270522387842 9.109081201946891 0.8693466249542297 9.086023387126863 0.89896629850475 9.162859674176625 0.944850583614073 -5.068392404893438 -0.8786614576419535 -5.068391135651106 -0.8088183124045556 -5.025559407947352 -0.8181759908226125 -5.067885275889797 -0.8787754489378705 -5.110720060929337 -0.8182899821185287 -5.067886545079142 -0.808932303700472 8.280710457527816 3.705126732858316 8.241191888595893 3.721141910399398 8.284531581773541 3.788943079334775 0.4409911514236909 7.240768284153922 0.484335515399475 7.172968962999835 0.4014767417204491 7.224749081770063 8.280933073751957 3.704815650635557 8.28475928709571 3.788631853439325 8.324275367051978 3.772612241933037</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID88\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID84\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID82\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID83\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID84\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID85\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 12 6 0 7 2 8 3 8 5 7 13 6 1 9 14 10 2 11 3 11 15 10 4 9 6 12 8 13 16 14 17 14 9 13 11 12 6 15 18 16 7 17 10 17 19 16 11 15 20 18 21 19 22 20 23 20 24 19 25 18 26 21 0 22 12 23 13 23 5 22 27 21 20 24 28 25 21 26 24 26 29 25 25 24 1 27 30 28 14 29 15 29 31 28 4 27 6 30 16 31 32 32 33 32 17 31 11 30 34 33 18 34 6 35 11 35 19 34 35 33 22 36 21 37 36 38 37 38 24 37 23 36 26 39 12 40 38 41 39 41 13 40 27 39 28 42 40 43 21 44 24 44 41 43 29 42 14 45 30 46 42 47 43 47 31 46 15 45 44 48 6 49 32 50 33 50 11 49 45 48 46 51 26 52 38 53 39 53 27 52 47 51 30 54 48 55 42 56 43 56 49 55 31 54 50 57 34 58 6 59 11 59 35 58 51 57 36 60 21 61 52 62 53 62 24 61 37 60 40 63 54 64 21 65 24 65 55 64 41 63 56 66 6 67 44 68 45 68 11 67 57 66 58 69 46 70 59 71 60 71 47 70 61 69 46 72 38 73 59 74 60 74 39 73 47 72 42 75 48 76 62 77 63 77 49 76 43 75 48 78 64 79 62 80 63 80 65 79 49 78 66 81 50 82 6 83 11 83 51 82 67 81 21 84 68 85 52 86 53 86 69 85 24 84 54 87 70 88 21 89 24 89 71 88 55 87 72 90 6 91 56 92 57 92 11 91 73 90 74 93 58 94 75 95 76 95 61 94 77 93 58 96 59 97 75 98 76 98 60 97 61 96 62 99 64 100 78 101 79 101 65 100 63 99 64 102 80 103 78 104 79 104 81 103 65 102 82 105 66 106 6 107 11 107 67 106 83 105 21 108 84 109 68 110 69 110 85 109 24 108 70 111 86 112 21 113 24 113 87 112 71 111 72 114 82 115 6 116 11 116 83 115 73 114 88 117 74 118 89 119 90 119 77 118 91 117 74 120 75 121 89 122 90 122 76 121 77 120 78 123 80 124 92 125 93 125 81 124 79 123 80 126 94 127 92 128 93 128 95 127 81 126 21 129 96 130 84 131 85 131 97 130 24 129 21 132 86 133 96 134 97 134 87 133 24 132 94 135 88 136 98 137 99 137 91 136 95 135 98 138 88 139 89 140 90 140 91 139 99 138 94 141 98 142 92 143 93 143 99 142 95 141</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID91\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID92\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID96\">-0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID96\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID93\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID97\">-0.9969899583790898 0 -0.07753078673185826 -0.9884129292970471 0 -0.1517889363505488 -0.9884129292970471 0 -0.1517889363505488 0.9884129292970471 -0 0.1517889363505488 0.9884129292970471 -0 0.1517889363505488 0.9969899583790898 -0 0.07753078673185826 -0.998320957347389 0 -0.0579246590062718 0.998320957347389 -0 0.0579246590062718 -0.9993510989424169 7.184929433669925e-019 0.03601917603976783 0.9993510989424169 -7.184929433669925e-019 -0.03601917603976783 -0.9990306614844523 0.0002614309546962441 0.04401896259333652 0.9990306614844523 -0.0002614309546962441 -0.04401896259333652 -0.9888379135974273 0.0002436995254544094 0.1489950376449768 0.9888379135974273 -0.0002436995254544094 -0.1489950376449768 -0.9861063237501272 0.0001948595204020617 0.1661152620615472 0.9861063237501272 -0.0001948595204020617 -0.1661152620615472 -0.9624184146477172 0.0002415020656172742 0.2715708688790593 0.9624184146477172 -0.0002415020656172742 -0.2715708688790593 -0.9573298297691951 2.022174489453926e-020 0.2889975727131348 0.9573298297691951 -2.022174489453926e-020 -0.2889975727131348 -0.8839922438205549 -5.787082397949427e-020 0.4675015645589871 0.8839922438205549 5.787082397949427e-020 -0.4675015645589871 -0.9134613059251451 0.008433697485858586 0.4068381930500694 0.9134613059251451 -0.008433697485858586 -0.4068381930500694 -0.7766917816344079 0.0006653446873563806 0.6298804915680564 0.7766917816344079 -0.0006653446873563806 -0.6298804915680564 -0.887662577311735 0.0168360614725487 0.4601865881078896 0.887662577311735 -0.0168360614725487 -0.4601865881078896 -4.240544352349684e-005 -0.002559416028395586 0.9999967237903193 -0.0001348136590898401 -0.002562698012055371 0.9999967071966669 -4.475077414611043e-005 -0.002559499325770485 0.9999967234749172 4.475077414611043e-005 0.002559499325770485 -0.9999967234749172 0.0001348136590898401 0.002562698012055371 -0.9999967071966669 4.240544352349684e-005 0.002559416028395586 -0.9999967237903193 -0.0001382939885384298 -0.002562821619516241 0.9999967064046358 0.0001382939885384298 0.002562821619516241 -0.9999967064046358</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID97\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID95\">\r\n\t\t\t\t\t<float_array count=\"76\" id=\"ID98\">-3.217366635799408 -1.011662528891078 4.606521427631378 -1.011662528891078 -3.174309134483337 0.03269434537139772 5.109987258911133 0.03269434537139772 -3.174309134483337 -0.9347596834103267 5.109987258911133 -0.9347596834103267 -3.138594627380371 0.1405233934521675 5.681315660476685 0.1405233934521675 -3.138594627380371 -0.3213110935675059 5.681315660476685 -0.3213110935675059 -3.102889358997345 0.7323627702456695 -3.09928917724737 0.7510178070110662 5.684959547332459 -0.3024305511224223 6.220538449628159 0.7510178070110662 -3.119279014302022 0.4187348569376954 -3.09928917724737 -0.2355396215454666 6.220538449628159 -0.2355396215454666 -3.122794330120087 0.3874851047394469 6.216937303543091 -0.2675471603832269 6.405143737792969 0.3874851047394469 -3.122794330120087 -0.3106585169242548 6.405143737792969 -0.3106585169242548 -2.803181707859039 0.2275367623352473 -2.803181707859039 0.2275367623352468 6.405143737792969 -0.3106585169242556 6.521115303039551 0.2275367623352468 -2.803181707859039 -1.950888725490773 6.521115303039551 -1.950888725490773 -2.70549088716507 -1.368457715187601 -2.57175403627721 -0.08890733546632032 6.662126685805698 -0.5949907224755842 6.648155411909684 -0.1098190995586758 -6.590083908601013 -5.20958023311017 -7.070594972351801 2.04357821955581 -7.104933336244505 -5.209397056353318 -6.810479911718501 1.83452016452179 -7.162312139268526 1.834520164521791 -6.33791556685284 -5.399469606680877</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID98\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID94\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID92\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID93\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID94\" />\r\n\t\t\t\t\t<p>0 1 2 6 1 0 8 6 0 10 6 8 12 10 8 14 10 12 14 12 16 18 14 16 20 18 16 22 18 20 24 22 20 26 22 24 28 29 30 30 29 34</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"14\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID94\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID95\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2 5 2 4 1 7 3 5 4 7 5 9 6 9 6 7 5 11 7 9 8 11 9 13 10 13 11 11 12 15 13 17 14 13 15 15 16 17 17 15 18 19 19 17 20 19 21 21 22 21 23 19 24 23 25 21 26 23 27 25 28 25 29 23 30 27 31 31 32 32 33 33 34 35 35 32 36 31 37</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID99\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID100\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID104\">-0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID104\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID101\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID105\">0.988412913780544 0 0.1517890373902383 0.9969899576627774 0 0.07753079594311511 0.988412913780544 0 0.1517890373902383 -0.988412913780544 -0 -0.1517890373902383 -0.9969899576627774 -0 -0.07753079594311511 -0.988412913780544 -0 -0.1517890373902383 0.988412913780544 0 0.1517890373902383 0.9983209527432319 0 0.05792473835802717 -0.9983209527432319 -0 -0.05792473835802717 -0.988412913780544 -0 -0.1517890373902383 0.9993509166757276 0 -0.03602423266889734 -0.9993509166757276 -0 0.03602423266889734 0.9990305393801646 -0.0002619822270462396 -0.04402173044179333 -0.9990305393801646 0.0002619822270462396 0.04402173044179333 0.994377943186845 -0.0002472551933162214 -0.105888833067369 -0.994377943186845 0.0002472551933162214 0.105888833067369 0.9934289228239549 -0.0001945588048795497 -0.1144505895297539 -0.9934289228239549 0.0001945588048795497 0.1144505895297539 0.995983160148023 -0.000248323998790207 -0.08954039890881241 -0.995983160148023 0.000248323998790207 0.08954039890881241 0.9972495302272323 -7.346303986892779e-019 -0.07411730203916211 -0.9972495302272323 7.346303986892779e-019 0.07411730203916211 0.9997397286185086 0 0.02281392166618968 -0.9997397286185086 -0 -0.02281392166618968 0.9982764498562651 -0.001456672185643534 0.05866862678225434 -0.9982764498562651 0.001456672185643534 -0.05866862678225434 0.9962132812992509 -9.879291414691034e-005 0.08694301813797259 -0.9962132812992509 9.879291414691034e-005 -0.08694301813797259 0.9913216074311079 -0.002879513856937434 0.1314274668406588 -0.9913216074311079 0.002879513856937434 -0.1314274668406588</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID105\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID103\">\r\n\t\t\t\t\t<float_array count=\"64\" id=\"ID106\">3.201837241649628 -1.150202329427836 3.158780634403229 -0.1058461503505726 -4.622048437595367 -1.150202329427836 3.158780634403229 -0.1058461503505723 -5.125510692596436 -0.1058461503505723 -4.622048437595367 -1.150202329427836 3.158780634403229 -0.9347603867451351 3.123067617416382 0.1405233934521675 -5.125510692596436 -0.9347603867451351 -5.696841478347778 0.1405233934521675 3.123067617416382 -0.2545367445365298 3.087365627288818 0.7991379089722803 -5.696841478347778 -0.2545367445365298 3.084286775264742 0.8151176357230101 -6.235541749751866 0.8151176357230101 -5.699964131968046 -0.2383310143047544 3.104247691337136 1.086372973785097 -6.235541749751866 0.44254094400415 3.084286775264742 0.44254094400415 3.107274770736694 1.058577291180575 -6.420671939849854 1.058577291180575 -6.232461929321289 0.4142719643560417 3.107274770736694 1.722909634361432 2.787659466266632 2.23017673742393 -6.420671939849854 1.722909634361432 -6.536641120910645 2.23017673742393 2.787659466266632 2.772574243860051 2.686533033847809 3.223532218529132 -6.536641120910645 2.772574243860051 2.667131545541148 3.452259268550261 -6.540721785117357 3.4335304126865 -6.55586156508433 2.999015659128898</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID106\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID102\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID100\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID101\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID102\" />\r\n\t\t\t\t\t<p>0 1 2 6 7 1 7 10 1 7 12 10 12 14 10 12 16 14 14 16 18 16 20 18 20 22 18 20 24 22 24 26 22 24 28 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID102\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID103\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2 4 3 8 4 9 5 4 6 11 7 8 8 11 7 13 9 8 8 11 10 15 11 13 12 15 13 17 14 13 15 19 16 17 17 15 18 19 19 21 20 17 21 19 22 23 23 21 24 23 23 25 25 21 24 23 26 27 27 25 28 27 29 29 30 25 31</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID107\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID108\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID112\">-0.669903576374054 -0.652129054069519 0.3517222404479981 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID112\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID109\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID113\">-0.01701265821172461 -0.9995231985732976 0.02576712972714528 -0.01757382759865987 -0.9966581675845644 -0.07977253644275587 -0.01751781381950524 -0.9995282886182213 0.02522551190591106 0.01751781381950524 0.9995282886182213 -0.02522551190591106 0.01757382759865987 0.9966581675845644 0.07977253644275587 0.01701265821172461 0.9995231985732976 -0.02576712972714528 -0.01625792747926485 -0.9946609696459937 -0.1019079744522989 0.01625792747926485 0.9946609696459937 0.1019079744522989 -0.0150813316095251 -0.9800366184397777 -0.1982442431799954 0.0150813316095251 0.9800366184397777 0.1982442431799954 -0.01366808468970709 -0.9791248445876004 -0.2027997094973813 0.01366808468970709 0.9791248445876004 0.2027997094973813 -0.01306491161032782 -0.9558449561319398 -0.293580871178189 0.01306491161032782 0.9558449561319398 0.293580871178189 -0.01273933707335443 -0.9520610552478258 -0.3056426939603298 0.01273933707335443 0.9520610552478258 0.3056426939603298 -0.01238557086853103 -0.9255816397548481 -0.3783453789634373 0.01238557086853103 0.9255816397548481 0.3783453789634373 -0.01238357987591431 -0.9254422243120635 -0.3786863298427829 0.01238357987591431 0.9254422243120635 0.3786863298427829 -0.01241748667662049 -0.9280470140680498 -0.3722560217162554 0.01241748667662049 0.9280470140680498 0.3722560217162554 -0.01241185824118758 -0.9276097725235235 -0.373344419663476 0.01241185824118758 0.9276097725235235 0.373344419663476 -0.0124838307381665 -0.9329216405473417 -0.3598629830484896 0.0124838307381665 0.9329216405473417 0.3598629830484896 -0.01248496597669147 -0.9329212298258305 -0.3598640084321035 0.01248496597669147 0.9329212298258305 0.3598640084321035 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0 0 -1 -0 -0 1 0.0133753871119692 0.9993032320341038 0.03484464759183624 0.0133753871119692 0.9993032320341038 0.03484464759183624 0.01337680086005785 0.999452551939183 0.03025983511199893 -0.01337680086005785 -0.999452551939183 -0.03025983511199893 -0.0133753871119692 -0.9993032320341038 -0.03484464759183624 -0.0133753871119692 -0.9993032320341038 -0.03484464759183624 0.01337464439725718 0.9993032688233439 0.03484387760033019 0.01337618871559839 0.9994397121588509 0.03068125380876897 -0.01337618871559839 -0.9994397121588509 -0.03068125380876897 -0.01337464439725718 -0.9993032688233439 -0.03484387760033019 0.01337725942786449 0.9995742326768236 0.02593072113804774 -0.01337725942786449 -0.9995742326768236 -0.02593072113804774 0.01337627272410458 0.9995744990501909 0.02592096017840197 -0.01337627272410458 -0.9995744990501909 -0.02592096017840197 0.01337920066408224 0.9999090019891376 0.001727637310686036 -0.01337920066408224 -0.9999090019891376 -0.001727637310686036 0.01366154746104537 0.9999038576502615 -0.002374358249118602 -0.01366154746104537 -0.9999038576502615 0.002374358249118602 0.01373262422128222 0.9853407192912542 0.1700443528571015 -0.01373262422128222 -0.9853407192912542 -0.1700443528571015 0.01486608652804611 0.9737392342553481 0.227180331770048 -0.01486608652804611 -0.9737392342553481 -0.227180331770048 0.01528852077539887 0.9353143715544456 0.3534873229639399 -0.01528852077539887 -0.9353143715544456 -0.3534873229639399 0.02312570321348094 0.9506753226411848 0.3093244781325283 -0.02312570321348094 -0.9506753226411848 -0.3093244781325283 0.03283908891765636 0.9857753031401179 0.1648291417136772 -0.03283908891765636 -0.9857753031401179 -0.1648291417136772 0.05301784880448666 0.9825104516283633 0.1785001964961789 -0.05301784880448666 -0.9825104516283633 -0.1785001964961789</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID113\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID111\">\r\n\t\t\t\t\t<float_array count=\"152\" id=\"ID114\">-6.587084260695764 2.631483678724743 -6.514283945022775 2.200594930637337 -7.101933740995046 2.631484147770351 -6.508983115107352 2.205013116963651 -7.3804769572862 2.205013116963651 -7.096643972922929 2.635892997883588 -6.508983115107352 3.224110165411892 -6.52409510872766 2.708841950220179 -7.3804769572862 3.224110165411892 -6.547166844772381 2.684101889976966 -7.63453856792353 2.684101889976966 -7.403952422220897 3.198954593785766 -6.547166844772382 2.931676874432807 -6.66766485108719 2.277409950911386 -7.63453856792353 2.931676874432807 -6.673365396615662 2.271670746973251 -7.833707641170352 2.271670746973251 -7.640406806964966 2.925784279055681 -6.673365396615662 2.953259250368061 -6.774360631709381 1.821467194941181 -7.833707641170353 2.953259250368061 -6.774354367603451 1.821472426221418 -7.934691860163473 1.821472426221418 -7.833700798795213 2.953264816600614 -6.774354367603451 1.885462650761757 -6.781999020801852 0.7200436083193725 -7.934691860163473 1.885462650761757 -6.782008058852917 0.7200348861669447 -7.94234551951389 0.7200356484581351 -7.934701887964341 1.885453322796166 -6.782008188442811 0.6046683932719337 -6.587251094540574 -0.5017076658009313 -7.942345649103793 0.6046691471095926 -6.58723797722436 -0.501692046192276 -7.747575485735714 -0.501692046192276 -7.942331122441789 0.6046858349492025 6.649683117866516 2.518778630097707 7.809916734695435 -3.623796856403351 6.649683117866516 -3.636011437575023 7.809916734695435 2.530995086828868 7.852276925867837 -2.051139641918057 6.691939385450148 -2.051139641918057 8.053193404231466 -1.018256576941133 6.691937070977494 -2.051137945764325 6.892853595325956 -1.018255612295274 8.053191123778195 -1.018254908533119 8.053191103127452 -0.9974499057607017 6.892853574675213 -0.9974506093355069 8.052713144303427 0.07820008666477071 8.052709191062137 0.07820251111365614 6.892849574859298 -0.9974481538077652 6.892371682550782 0.07820251111365616 8.052709191062137 0.0791106921925258 6.892371682550782 0.0791106921925258 7.954167892996237 1.130304459217047 7.954158953536085 1.130309635740629 6.892362640508396 0.0791159328388503 6.793807781046568 1.130309635740629 7.954158953536085 1.256038828458484 6.793807781046567 1.256038828458484 7.767881794133284 1.893885976781469 7.77057826240271 1.891244640745734 6.796484610512178 1.253416052618986 6.683206662638841 1.891244640745734 7.77057826240271 0.5982395666867535 6.683206662638841 0.5982395666867535 7.537086536284932 1.163157345832559 7.546580016143097 1.161416096352253 6.693824913004702 0.5954478869186282 6.675086237668953 1.161416096352253 7.546580016143097 1.983805357481187 6.675086237668955 1.983805357481187 7.073812769076112 2.438574088924843 7.162312139268527 2.414526194755044 6.76706758327844 1.957880326597733 6.810479911718502 2.414526194755044</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"76\" source=\"#ID114\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID110\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID108\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID109\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"52\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID110\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID111\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 1 6 8 7 6 8 7 8 9 7 4 6 8 9 10 10 6 11 7 11 11 10 9 9 8 12 12 13 10 14 11 14 13 13 9 12 12 15 14 16 10 17 11 17 15 16 13 15 12 18 16 19 14 20 15 20 17 19 13 18 16 21 18 22 14 23 15 23 19 22 17 21 16 24 20 25 18 26 19 26 21 25 17 24 20 27 22 28 18 29 19 29 23 28 21 27 20 30 24 31 22 32 23 32 25 31 21 30 24 33 26 34 22 35 23 35 27 34 25 33 28 36 29 37 30 38 31 38 32 37 33 36 34 39 29 37 28 36 33 36 32 37 35 39 36 40 37 41 38 42 39 42 40 41 41 40 42 43 43 44 38 45 39 45 44 44 45 43 38 46 43 47 46 48 47 48 44 47 39 46 46 49 43 50 48 51 49 51 44 50 47 49 46 52 48 53 50 54 51 54 49 53 47 52 50 55 48 56 52 57 53 57 49 56 51 55 50 58 52 59 54 60 55 60 53 59 51 58 54 61 52 62 56 63 57 63 53 62 55 61 54 64 56 65 58 66 59 66 57 65 55 64 58 67 56 68 60 69 61 69 57 68 59 67 58 70 60 71 62 72 63 72 61 71 59 70 62 73 60 74 64 75 65 75 61 74 63 73</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID115\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID116\">\r\n\t\t\t\t\t<float_array count=\"792\" id=\"ID120\">-0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6480334997177124 -0.5195937156677246 0.2845224440097809 -0.6480334997177124 -0.5195937156677246 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635096669197083 -0.526203989982605 0.2845224440097809 -0.6635096669197083 -0.526203989982605 0.2845224440097809 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6482381224632263 -0.5189133882522583 0.2801555991172791 -0.6482381224632263 -0.5189133882522583 0.2801555991172791 -0.6482381224632263 -0.5189133882522583 0.2888893783092499 -0.6482381224632263 -0.5189133882522583 0.2888893783092499 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6353332996368408 -0.4940980970859528 0.2801555991172791 -0.6353332996368408 -0.4940980970859528 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6347987651824951 -0.4944190084934235 0.2845224440097809 -0.6347987651824951 -0.4944190084934235 0.2845224440097809 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6368538737297058 -0.4931806027889252 0.2764533758163452 -0.6368538737297058 -0.4931806027889252 0.2764533758163452 -0.6488213539123535 -0.5169762372970581 0.2764533758163452 -0.6488213539123535 -0.5169762372970581 0.2764533758163452 -0.6353332996368408 -0.4940980970859528 0.2888893783092499 -0.6353332996368408 -0.4940980970859528 0.2888893783092499 -0.6488213539123535 -0.5169762372970581 0.2925914824008942 -0.6488213539123535 -0.5169762372970581 0.2925914824008942 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6335422992706299 -0.4669302999973297 0.2764533758163452 -0.6335422992706299 -0.4669302999973297 0.2764533758163452 -0.6318445205688477 -0.4669302999973297 0.2801555991172791 -0.6318445205688477 -0.4669302999973297 0.2801555991172791 -0.6312496066093445 -0.4669302999973297 0.2845224440097809 -0.6312496066093445 -0.4669302999973297 0.2845224440097809 -0.6635122895240784 -0.5225611925125122 0.2950650453567505 -0.6635122895240784 -0.5225611925125122 0.2950650453567505 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.64969402551651 -0.5140764713287354 0.2950650453567505 -0.64969402551651 -0.5140764713287354 0.2950650453567505 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.64969402551651 -0.5140764713287354 0.2739797532558441 -0.64969402551651 -0.5140764713287354 0.2739797532558441 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6360813975334168 -0.4669302999973297 0.2739797532558441 -0.6360813975334168 -0.4669302999973297 0.2739797532558441 -0.6391298174858093 -0.4918101131916046 0.2739797532558441 -0.6391298174858093 -0.4918101131916046 0.2739797532558441 -0.6318445205688477 -0.4669302999973297 0.2888893783092499 -0.6318445205688477 -0.4669302999973297 0.2888893783092499 -0.6368538737297058 -0.4931806027889252 0.2925914824008942 -0.6368538737297058 -0.4931806027889252 0.2925914824008942 -0.6635141968727112 -0.5194733142852783 0.2925914824008942 -0.6635141968727112 -0.5194733142852783 0.2925914824008942 -0.650723934173584 -0.5106549263000488 0.2959337532520294 -0.650723934173584 -0.5106549263000488 0.2959337532520294 -0.6635122895240784 -0.5225611925125122 0.2739797532558441 -0.6635122895240784 -0.5225611925125122 0.2739797532558441 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.650723934173584 -0.5106549263000488 0.2731113433837891 -0.650723934173584 -0.5106549263000488 0.2731113433837891 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.637301504611969 -0.4404509365558624 0.2739797532558441 -0.637301504611969 -0.4404509365558624 0.2739797532558441 -0.6349334716796875 -0.4393340051174164 0.2764533758163452 -0.6349334716796875 -0.4393340051174164 0.2764533758163452 -0.6333513855934143 -0.4385876953601837 0.2801555991172791 -0.6333513855934143 -0.4385876953601837 0.2801555991172791 -0.6327959895133972 -0.4383257925510407 0.2845224440097809 -0.6327959895133972 -0.4383257925510407 0.2845224440097809 -0.6635154485702515 -0.5174095630645752 0.2888893783092499 -0.6635154485702515 -0.5174095630645752 0.2888893783092499 -0.6517528891563416 -0.5072346925735474 0.2950650453567505 -0.6517528891563416 -0.5072346925735474 0.2950650453567505 -0.6391298174858093 -0.4918101131916046 0.2950650453567505 -0.6391298174858093 -0.4918101131916046 0.2950650453567505 -0.6635141968727112 -0.5194733142852783 0.2764533758163452 -0.6635141968727112 -0.5194733142852783 0.2764533758163452 -0.6517528891563416 -0.5072346925735474 0.2739797532558441 -0.6517528891563416 -0.5072346925735474 0.2739797532558441 -0.6418135762214661 -0.4901936948299408 0.2731113433837891 -0.6418135762214661 -0.4901936948299408 0.2731113433837891 -0.6400948166847229 -0.4417674839496613 0.2731113433837891 -0.6400948166847229 -0.4417674839496613 0.2731113433837891 -0.6390777230262756 -0.4669302999973297 0.2731113433837891 -0.6390777230262756 -0.4669302999973297 0.2731113433837891 -0.6333513855934143 -0.4385876953601837 0.2888893783092499 -0.6333513855934143 -0.4385876953601837 0.2888893783092499 -0.6335422992706299 -0.4669302999973297 0.2925914824008942 -0.6335422992706299 -0.4669302999973297 0.2925914824008942 -0.6635158658027649 -0.5166845321655273 0.2845224440097809 -0.6635158658027649 -0.5166845321655273 0.2845224440097809 -0.6526256799697876 -0.5043348073959351 0.2925914824008942 -0.6526256799697876 -0.5043348073959351 0.2925914824008942 -0.6418135762214661 -0.4901936948299408 0.2959337532520294 -0.6418135762214661 -0.4901936948299408 0.2959337532520294 -0.6635154485702515 -0.5174095630645752 0.2801555991172791 -0.6635154485702515 -0.5174095630645752 0.2801555991172791 -0.6526256799697876 -0.5043348073959351 0.2764533758163452 -0.6526256799697876 -0.5043348073959351 0.2764533758163452 -0.6444981694221497 -0.4885759055614471 0.2739797532558441 -0.6444981694221497 -0.4885759055614471 0.2739797532558441 -0.6517580151557922 -0.4175517857074738 0.2731113433837891 -0.6517580151557922 -0.4175517857074738 0.2731113433837891 -0.6504251956939697 -0.4142893254756928 0.2739797532558441 -0.6504251956939697 -0.4142893254756928 0.2739797532558441 -0.6492962241172791 -0.4115234911441803 0.2764533758163452 -0.6492962241172791 -0.4115234911441803 0.2764533758163452 -0.6485416889190674 -0.4096752107143402 0.2801555991172791 -0.6485416889190674 -0.4096752107143402 0.2801555991172791 -0.6482764482498169 -0.4090263545513153 0.2845224440097809 -0.6482764482498169 -0.4090263545513153 0.2845224440097809 -0.6532091498374939 -0.502396821975708 0.2888893783092499 -0.6532091498374939 -0.502396821975708 0.2888893783092499 -0.6444981694221497 -0.4885759055614471 0.2950650453567505 -0.6444981694221497 -0.4885759055614471 0.2950650453567505 -0.6360813975334168 -0.4669302999973297 0.2950650453567505 -0.6360813975334168 -0.4669302999973297 0.2950650453567505 -0.6532091498374939 -0.502396821975708 0.2801555991172791 -0.6532091498374939 -0.502396821975708 0.2801555991172791 -0.6467736959457398 -0.4872048199176788 0.2764533758163452 -0.6467736959457398 -0.4872048199176788 0.2764533758163452 -0.6420736312866211 -0.4669302999973297 0.2739797532558441 -0.6420736312866211 -0.4669302999973297 0.2739797532558441 -0.6530901193618774 -0.4208144843578339 0.2739797532558441 -0.6530901193618774 -0.4208144843578339 0.2739797532558441 -0.6428875923156738 -0.4430851638317108 0.2739797532558441 -0.6428875923156738 -0.4430851638317108 0.2739797532558441 -0.6485416889190674 -0.4096752107143402 0.2888893783092499 -0.6485416889190674 -0.4096752107143402 0.2888893783092499 -0.6349334716796875 -0.4393340051174164 0.2925914824008942 -0.6349334716796875 -0.4393340051174164 0.2925914824008942 -0.6534140110015869 -0.5017167329788208 0.2845224440097809 -0.6534140110015869 -0.5017167329788208 0.2845224440097809 -0.6467736959457398 -0.4872048199176788 0.2925914824008942 -0.6467736959457398 -0.4872048199176788 0.2925914824008942 -0.6390777230262756 -0.4669302999973297 0.2959337532520294 -0.6390777230262756 -0.4669302999973297 0.2959337532520294 -0.6482942700386047 -0.4862898886203766 0.2801555991172791 -0.6482942700386047 -0.4862898886203766 0.2801555991172791 -0.6446129679679871 -0.4669302999973297 0.2764533758163452 -0.6446129679679871 -0.4669302999973297 0.2764533758163452 -0.6630308032035828 -0.4085699617862701 0.2739797532558441 -0.6630308032035828 -0.4085699617862701 0.2739797532558441 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6482942700386047 -0.4862898886203766 0.2888893783092499 -0.6482942700386047 -0.4862898886203766 0.2888893783092499 -0.6420736312866211 -0.4669302999973297 0.2950650453567505 -0.6420736312866211 -0.4669302999973297 0.2950650453567505 -0.637301504611969 -0.4404509365558624 0.2950650453567505 -0.637301504611969 -0.4404509365558624 0.2950650453567505 -0.6488281488418579 -0.4859673082828522 0.2845224440097809 -0.6488281488418579 -0.4859673082828522 0.2845224440097809 -0.6463103890419006 -0.4669302999973297 0.2801555991172791 -0.6463103890419006 -0.4669302999973297 0.2801555991172791 -0.6452553868293762 -0.4442016780376434 0.2764533758163452 -0.6452553868293762 -0.4442016780376434 0.2764533758163452 -0.6630327105522156 -0.4116580784320831 0.2764533758163452 -0.6630327105522156 -0.4116580784320831 0.2764533758163452 -0.6542187929153442 -0.4235804378986359 0.2764533758163452 -0.6542187929153442 -0.4235804378986359 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6492962241172791 -0.4115234911441803 0.2925914824008942 -0.6492962241172791 -0.4115234911441803 0.2925914824008942 -0.6446129679679871 -0.4669302999973297 0.2925914824008942 -0.6446129679679871 -0.4669302999973297 0.2925914824008942 -0.6400948166847229 -0.4417674839496613 0.2959337532520294 -0.6400948166847229 -0.4417674839496613 0.2959337532520294 -0.646905779838562 -0.4669302999973297 0.2845224440097809 -0.646905779838562 -0.4669302999973297 0.2845224440097809 -0.6468372344970703 -0.444947749376297 0.2801555991172791 -0.6468372344970703 -0.444947749376297 0.2801555991172791 -0.6630285978317261 -0.4049277007579804 0.2845224440097809 -0.6630285978317261 -0.4049277007579804 0.2845224440097809 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6463103890419006 -0.4669302999973297 0.2888893783092499 -0.6463103890419006 -0.4669302999973297 0.2888893783092499 -0.6428875923156738 -0.4430851638317108 0.2950650453567505 -0.6428875923156738 -0.4430851638317108 0.2950650453567505 -0.6504251956939697 -0.4142893254756928 0.2950650453567505 -0.6504251956939697 -0.4142893254756928 0.2950650453567505 -0.6473929882049561 -0.4452097713947296 0.2845224440097809 -0.6473929882049561 -0.4452097713947296 0.2845224440097809 -0.6549736261367798 -0.4254280030727387 0.2801555991172791 -0.6549736261367798 -0.4254280030727387 0.2801555991172791 -0.6630337834358215 -0.4137214124202728 0.2801555991172791 -0.6630337834358215 -0.4137214124202728 0.2801555991172791 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6452553868293762 -0.4442016780376434 0.2925914824008942 -0.6452553868293762 -0.4442016780376434 0.2925914824008942 -0.6517580151557922 -0.4175517857074738 0.2959337532520294 -0.6517580151557922 -0.4175517857074738 0.2959337532520294 -0.6468372344970703 -0.444947749376297 0.2888893783092499 -0.6468372344970703 -0.444947749376297 0.2888893783092499 -0.6552384495735169 -0.426077276468277 0.2845224440097809 -0.6552384495735169 -0.426077276468277 0.2845224440097809 -0.663034200668335 -0.4144457876682282 0.2845224440097809 -0.663034200668335 -0.4144457876682282 0.2845224440097809 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6530901193618774 -0.4208144843578339 0.2950650453567505 -0.6530901193618774 -0.4208144843578339 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6549736261367798 -0.4254280030727387 0.2888893783092499 -0.6549736261367798 -0.4254280030727387 0.2888893783092499 -0.6630337834358215 -0.4137214124202728 0.2888893783092499 -0.6630337834358215 -0.4137214124202728 0.2888893783092499 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6542187929153442 -0.4235804378986359 0.2925914824008942 -0.6542187929153442 -0.4235804378986359 0.2925914824008942 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630327105522156 -0.4116580784320831 0.2925914824008942 -0.6630327105522156 -0.4116580784320831 0.2925914824008942 -0.6630308032035828 -0.4085699617862701 0.2950650453567505 -0.6630308032035828 -0.4085699617862701 0.2950650453567505</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"264\" source=\"#ID120\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID117\">\r\n\t\t\t\t\t<float_array count=\"792\" id=\"ID121\">0.7232596242239593 -0.6905746602767982 -0.001467838888265382 0.7057607724956698 -0.6735924503473242 0.2194879104675313 0.8076016226056172 -0.5897264131612695 -0.00154168243093702 -0.8076016226056172 0.5897264131612695 0.00154168243093702 -0.7057607724956698 0.6735924503473242 -0.2194879104675313 -0.7232596242239593 0.6905746602767982 0.001467838888265382 -0.9999998181937388 -0.0006022943216548701 2.922395420187849e-005 -0.9999997999824708 -0.0006324832160101544 2.860604413076798e-010 -0.9999997897974863 -0.0006483864460522037 -2.491010877726737e-011 0.9999997897974863 0.0006483864460522037 2.491010877726737e-011 0.9999997999824708 0.0006324832160101544 -2.860604413076798e-010 0.9999998181937388 0.0006022943216548701 -2.922395420187849e-005 0.7817612866731201 -0.5645061459265469 -0.2649190477680753 -0.7817612866731201 0.5645061459265469 0.2649190477680753 0.7832106863400417 -0.5638831090884926 0.2619482011533125 -0.7832106863400417 0.5638831090884926 -0.2619482011533125 -0.9999997958179734 -0.0006383792109791188 2.891357388609432e-005 0.9999997958179734 0.0006383792109791188 -2.891357388609432e-005 -0.9999998181931959 -0.0006022952886622905 -2.922260522741146e-005 0.9999998181931959 0.0006022952886622905 2.922260522741146e-005 0.9154130318517745 -0.2904204377266433 -0.2787022613230957 -0.9154130318517745 0.2904204377266433 0.2787022613230957 0.711127203597459 -0.6677643370207396 -0.2199747497030292 -0.711127203597459 0.6677643370207396 0.2199747497030292 0.952739552757128 -0.3037871859535902 -0.0008308204056597102 -0.952739552757128 0.3037871859535902 0.0008308204056597102 0.645984127761978 -0.6063440422865414 0.463736357279881 -0.645984127761978 0.6063440422865414 -0.463736357279881 -0.999999776244766 -0.0006689441745444033 -4.910144988000729e-006 0.999999776244766 0.0006689441745444033 4.910144988000729e-006 -0.9999997958172164 -0.0006383804483021269 -2.891243502256493e-005 0.9999997958172164 0.0006383804483021269 2.891243502256493e-005 0.7843147677524072 -0.2413030462060462 -0.5715095668290867 -0.7843147677524072 0.2413030462060462 0.5715095668290867 0.6885006209850318 -0.4767691864279585 -0.5464961461676083 -0.6885006209850318 0.4767691864279585 0.5464961461676083 0.9168326109734188 -0.2874979990120987 0.2770611196463751 -0.9168326109734188 0.2874979990120987 -0.2770611196463751 0.6900022504499387 -0.4765417725743317 0.5447979748179445 -0.6900022504499387 0.4765417725743317 -0.5447979748179445 -0.9999997637842953 -0.000687336419680339 0 0.9999997637842953 0.000687336419680339 -0 0.4938122844858366 -0.4499642787109471 0.744097826616243 -0.4938122844858366 0.4499642787109471 -0.744097826616243 -0.9999997762445951 -0.000668944429587437 4.910191440555164e-006 0.9999997762445951 0.000668944429587437 -4.910191440555164e-006 0.6578188065603675 -0.5980410579776557 -0.4578441991643669 -0.6578188065603675 0.5980410579776557 0.4578441991643669 0.8205908215871317 -0.03194403562537936 -0.5706227143348928 -0.8205908215871317 0.03194403562537936 0.5706227143348928 0.960457130199687 -0.0363137738537825 -0.2760496529196837 -0.960457130199687 0.0363137738537825 0.2760496529196837 0.9993171501328293 -0.03694905120123387 3.264550519562491e-005 -0.9993171501328293 0.03694905120123387 -3.264550519562491e-005 -0.793910982057031 0.1969421269369894 0.5752557267918115 0.793910982057031 -0.1969421269369894 -0.5752557267918115 0.1386984645759476 -0.1243363006127545 0.982498458153604 0.4651519897602477 -0.2948357761580864 0.8346888591081955 -0.4651519897602477 0.2948357761580864 -0.8346888591081955 -0.1386984645759476 0.1243363006127545 -0.982498458153604 -0.9999997637842955 -0.0006873364193195035 -1.096442815385977e-020 0.9999997637842955 0.0006873364193195035 1.096442815385977e-020 0.5128913528758033 -0.4461619504614353 -0.7334043728433013 0.4688183208013235 -0.2943521348334288 -0.8328062216386418 -0.4688183208013235 0.2943521348334288 0.8328062216386418 -0.5128913528758033 0.4461619504614353 0.7334043728433013 0.5130920796549894 -0.02080795852300087 -0.8580813170425183 -0.5130920796549894 0.02080795852300087 0.8580813170425183 0.499551869261499 -0.1430168053203858 -0.8543969354540623 -0.499551869261499 0.1430168053203858 0.8543969354540623 0.9604894321225267 -0.03495709229521331 0.2761123910280198 -0.9604894321225267 0.03495709229521331 -0.2761123910280198 0.786679117859316 -0.2363443375900022 0.5703308860768734 -0.786679117859316 0.2363443375900022 -0.5703308860768734 -0.9000246676130381 0.3063624940737907 0.3099961611261122 0.9000246676130381 -0.3063624940737907 -0.3099961611261122 0.03633634782028813 -0.006584840887365813 0.9993179222337458 -0.03633634782028813 0.006584840887365813 -0.9993179222337458 -0.799626186182979 0.1929925127090643 -0.568640354185935 0.799626186182979 -0.1929925127090643 0.568640354185935 0.1525444722947879 -0.1285229675501668 -0.9799040926460118 0.04807963178047214 -0.007935340825018506 -0.9988119839959095 -0.04807963178047214 0.007935340825018506 0.9988119839959095 -0.1525444722947879 0.1285229675501668 0.9799040926460118 0.5072631551753162 0.1267094788403512 -0.8524252456219195 -0.5072631551753162 -0.1267094788403512 0.8524252456219195 0.7940988277295695 0.212649686279568 -0.5693743607888617 -0.7940988277295695 -0.212649686279568 0.5693743607888617 0.9262255379225123 0.2559747769389783 -0.2767366373850652 -0.9262255379225123 -0.2559747769389783 0.2767366373850652 0.9631119231717006 0.2691006602835732 0.0005080152095792424 -0.9631119231717006 -0.2691006602835732 -0.0005080152095792424 -0.9371087965896104 0.3236025621236881 0.1307994080313711 0.9371087965896104 -0.3236025621236881 -0.1307994080313711 -0.4683157211142002 0.2666126435683628 0.8423764500784526 0.4683157211142002 -0.2666126435683628 -0.8423764500784526 0.500693008818584 -0.1383898050868787 0.8544909436431782 -0.500693008818584 0.1383898050868787 -0.8544909436431782 -0.9063167357382785 0.2980070758240811 -0.2996360413559952 0.9063167357382785 -0.2980070758240811 0.2996360413559952 -0.4686403143303254 0.2634205410351238 -0.8431997831742701 0.4686403143303254 -0.2634205410351238 0.8431997831742701 0.02920398259114767 -0.0026130516583192 -0.9995700572555417 -0.02920398259114767 0.0026130516583192 0.9995700572555417 0.03605850256194776 0.003067083053787333 -0.9993449741678452 -0.03605850256194776 -0.003067083053787333 0.9993449741678452 0.01386902869683676 -0.001056629619223589 -0.9999032621093174 -0.01386902869683676 0.001056629619223589 0.9999032621093174 0.9256378545608276 0.2570954480242819 0.277662552046944 -0.9256378545608276 -0.2570954480242819 -0.277662552046944 0.8206358178234287 -0.02964836110656165 0.5706818984241283 -0.8206358178234287 0.02964836110656165 -0.5706818984241283 -0.9469246469125361 0.3214516112137361 0.001604592677941127 0.9469246469125361 -0.3214516112137361 -0.001604592677941127 -0.7641051893798622 0.3901493579511544 0.5137380052644216 0.7641051893798622 -0.3901493579511544 -0.5137380052644216 0.02537449276774779 -0.002236188127699197 0.9996755146443453 -0.02537449276774779 0.002236188127699197 -0.9996755146443453 -0.9400560163134932 0.3172067396078798 -0.1251981251462831 0.9400560163134932 -0.3172067396078798 0.1251981251462831 -0.7711342244953958 0.3842843387634247 -0.5076194980426203 0.7711342244953958 -0.3842843387634247 0.5076194980426203 -0.4738115753659977 0.1197652890400627 -0.872444191103558 0.4738115753659977 -0.1197652890400627 0.872444191103558 0.02958654968916754 0.007286484206468705 -0.9995356638086503 -0.02958654968916754 -0.007286484206468705 0.9995356638086503 0.4363488436236744 0.2955605560399648 -0.8498491891986655 -0.4363488436236744 -0.2955605560399648 0.8498491891986655 0.6631409982889462 0.4874660914062892 -0.5679972060824027 -0.6631409982889462 -0.4874660914062892 0.5679972060824027 0.7623336718204757 0.5848074391059263 -0.2772140544328147 -0.7623336718204757 -0.5848074391059263 0.2772140544328147 0.7886950662680942 0.6147829703463104 0.001411317304633245 -0.7886950662680942 -0.6147829703463104 -0.001411317304633245 -0.8781743790133187 0.4175251680829177 0.23341485398728 0.8781743790133187 -0.4175251680829177 -0.23341485398728 -0.4800902307928689 0.113296584546636 0.8698719757684558 0.4800902307928689 -0.113296584546636 -0.8698719757684558 0.5131883005520358 -0.01875718759237305 0.8580710553853554 -0.5131883005520358 0.01875718759237305 -0.8580710553853554 -0.8823796484183437 0.4126666692035347 -0.2260804639626802 0.8823796484183437 -0.4126666692035347 0.2260804639626802 -0.7972849488781376 0.1792800600182346 -0.5763639218169749 0.7972849488781376 -0.1792800600182346 0.5763639218169749 -0.4952765194930661 0.02034356393238864 -0.8684971552315893 0.4952765194930661 -0.02034356393238864 0.8684971552315893 -0.435356577143355 -0.2671834708247518 -0.8596962508095875 0.435356577143355 0.2671834708247518 0.8596962508095875 -0.4665287049009216 -0.1084638747966296 -0.8778305960534585 0.4665287049009216 0.1084638747966296 0.8778305960534585 0.75950835167557 0.5870581609984589 0.280195965959837 -0.75950835167557 -0.5870581609984589 -0.280195965959837 0.7932463932521849 0.2145728539145977 0.5698408988089085 -0.7932463932521849 -0.2145728539145977 -0.5698408988089085 -0.9085196475422841 0.41782745437537 0.003502627562550796 0.9085196475422841 -0.41782745437537 -0.003502627562550796 -0.800869417060235 0.1689324330988504 0.5745171971881278 0.800869417060235 -0.1689324330988504 -0.5745171971881278 0.0139431092792251 -0.0009866306018833713 0.9999023033595247 -0.0139431092792251 0.0009866306018833713 -0.9999023033595247 -0.9422268574159193 0.1931477037499293 -0.273683236059958 0.9422268574159193 -0.1931477037499293 0.273683236059958 -0.814835838977536 0.03369062831624135 -0.5787119292717505 0.814835838977536 -0.03369062831624135 0.5787119292717505 -0.7873146849475823 -0.2010835114851383 -0.5828387498053776 0.7873146849475823 0.2010835114851383 0.5828387498053776 0.1180304988758481 0.1181393092581005 -0.9859573545256091 -0.1180304988758481 -0.1181393092581005 0.9859573545256091 0.4501212254398852 0.4575449027803883 -0.7668399731027207 -0.4501212254398852 -0.4575449027803883 0.7668399731027207 0.6005852136669773 0.6332674469621952 -0.4881288167508398 -0.6005852136669773 -0.6332674469621952 0.4881288167508398 0.6618861883828568 0.7123657780164507 -0.2333273921746658 -0.6618861883828568 -0.7123657780164507 0.2333273921746658 0.6804093504380189 0.7328301506810396 0.001756726876281748 -0.6804093504380189 -0.7328301506810396 -0.001756726876281748 -0.9431414902949492 0.1855658782828246 0.2757706186332155 0.9431414902949492 -0.1855658782828246 -0.2757706186332155 -0.4953182918781093 0.01780718095942004 0.8685290404109873 0.4953182918781093 -0.01780718095942004 -0.8685290404109873 0.5072865408438301 0.1285882324951642 0.8521299384146005 -0.5072865408438301 -0.1285882324951642 -0.8521299384146005 -0.9816073418028719 0.1908993751890319 0.002110703943471509 0.9816073418028719 -0.1908993751890319 -0.002110703943471509 -0.9593484895959843 0.0388996844240557 -0.279530481453477 0.9593484895959843 -0.0388996844240557 0.279530481453477 -0.7914424681559653 -0.1706815775771435 -0.5869298243188631 0.7914424681559653 0.1706815775771435 0.5869298243188631 -0.894520193110629 -0.312927838115438 -0.3192331315037981 0.894520193110629 0.312927838115438 0.3192331315037981 -0.7273473914158 -0.4107184345321895 -0.5497964530042537 0.7273473914158 0.4107184345321895 0.5497964530042537 0.6685900741135386 0.7058359896190666 0.2340574044018388 -0.6685900741135386 -0.7058359896190666 -0.2340574044018388 0.658643651050992 0.4905658629674176 0.5705555845149989 -0.658643651050992 -0.4905658629674176 -0.5705555845149989 -0.814926590417651 0.03015739503281149 0.5787790457118306 0.814926590417651 -0.03015739503281149 -0.5787790457118306 0.03814091694684892 0.003413426189993021 0.9992665405066354 -0.03814091694684892 -0.003413426189993021 -0.9992665405066354 -0.9992278934255273 0.03928889095366263 -6.929232985555457e-006 0.9992278934255273 -0.03928889095366263 6.929232985555457e-006 -0.938809669902001 -0.1951630115952412 -0.2838094476996348 0.938809669902001 0.1951630115952412 0.2838094476996348 -0.9999997743790419 0.0006717453873031948 -2.186125590766863e-011 0.9999997743790419 -0.0006717453873031948 2.186125590766863e-011 -0.9999997749421429 0.0006709065984553252 -1.09573478369303e-020 0.9999997749421429 -0.0006709065984553252 1.09573478369303e-020 -0.9999997090200168 0.0007628080343569275 9.153401029092946e-006 0.9999997090200168 -0.0007628080343569275 -9.153401029092946e-006 -0.9999996992523692 0.000775549469651193 4.265134099829579e-006 0.9999996992523692 -0.000775549469651193 -4.265134099829579e-006 -0.9999997274454909 0.0007369711162139045 -4.452547571276294e-005 0.9999997274454909 -0.0007369711162139045 4.452547571276294e-005 -0.9999997406987353 0.0007201405851322528 -7.10704149141186e-010 0.9999997406987353 -0.0007201405851322528 7.10704149141186e-010 -0.9999997274456218 0.0007369709769112005 4.452484465423866e-005 0.9999997274456218 -0.0007369709769112005 -4.452484465423866e-005 -0.9594382249524349 0.03651452657942052 0.2795442395199753 0.9594382249524349 -0.03651452657942052 -0.2795442395199753 -0.4640933731506169 -0.1107502342990451 0.8788354377244861 0.4640933731506169 0.1107502342990451 -0.8788354377244861 0.4349693534041575 0.2980530013238956 0.8496858654826425 -0.4349693534041575 -0.2980530013238956 -0.8496858654826425 -0.979356998294315 -0.2021349591101914 -0.001152474498922521 0.979356998294315 0.2021349591101914 0.001152474498922521 -0.8509474623195337 -0.4576673394521972 -0.2577382834789834 0.8509474623195337 0.4576673394521972 0.2577382834789834 -0.9355765566034081 -0.3265447567807907 -0.1344062072714054 0.9355765566034081 0.3265447567807907 0.1344062072714054 -0.9999996992525759 0.0007755492042714741 -4.264928487867499e-006 0.9999996992525759 -0.0007755492042714741 4.264928487867499e-006 0.6150877754416196 0.6241638324603201 0.481753607927045 -0.6150877754416196 -0.6241638324603201 -0.481753607927045 -0.7902842389987238 -0.1746512333911817 0.5873225419351337 0.7902842389987238 0.1746512333911817 -0.5873225419351337 0.03727133908825687 0.009044912639848819 0.9992642477532686 -0.03727133908825687 -0.009044912639848819 -0.9992642477532686 -0.9386010172620667 -0.1981899545211005 0.2823984283269608 0.9386010172620667 0.1981899545211005 -0.2823984283269608 -0.8837544363354132 -0.467943007525534 -0.002727263359898528 0.8837544363354132 0.467943007525534 0.002727263359898528 -0.9471856471481824 -0.3206759458915923 -0.002507501348223877 0.9471856471481824 0.3206759458915923 0.002507501348223877 -0.9999997090203798 0.000762807559321599 -9.153314517965673e-006 0.9999997090203798 -0.000762807559321599 9.153314517965673e-006 -0.4270570059187908 -0.2684750778700419 0.8634485776572645 0.4270570059187908 0.2684750778700419 -0.8634485776572645 0.472911004094651 0.4540552020476878 0.7551086383426046 -0.472911004094651 -0.4540552020476878 -0.7551086383426046 -0.8503974480748343 -0.4605720304353962 0.2543571997967144 0.8503974480748343 0.4605720304353962 -0.2543571997967144 -0.9399779765243473 -0.3171413384034758 0.1259475094031056 0.9399779765243473 0.3171413384034758 -0.1259475094031056 -0.9999997749421428 0.0006709065987186352 3.287346944984957e-020 0.9999997749421428 -0.0006709065987186352 -3.287346944984957e-020 -0.7241743640535807 -0.4145373799428673 0.5511172752488299 0.7241743640535807 0.4145373799428673 -0.5511172752488299 0.1340688008837682 0.1240082058184067 0.9831823439826858 -0.1340688008837682 -0.1240082058184067 -0.9831823439826858 -0.9035746812554419 -0.301257729151216 0.3046253043014963 0.9035746812554419 0.301257729151216 -0.3046253043014963 -0.7948187846833775 -0.1958141005338769 0.5743865750054989 0.7948187846833775 0.1958141005338769 -0.5743865750054989</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"264\" source=\"#ID121\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID119\">\r\n\t\t\t\t\t<float_array count=\"1336\" id=\"ID122\">-8.459148306365966 2.320610608435393 -8.453924324230584 2.355189974618953 -8.235664210561588 2.320610608435393 5.345779393385952 2.272761294528312 5.35302374423285 2.23840807802204 5.257842260045958 2.23840807802204 -8.459148306365965 2.096954745877603 -8.235664210561586 2.096954745877603 -8.232170868965739 2.06225925348499 -8.229866286368056 2.339826235524017 -8.448096962230043 2.374520389255541 -8.226340435739356 2.374520389255541 5.325515883125656 2.301301490633831 5.34614743659245 2.272178271686187 5.258210303311181 2.237825055086888 5.35302374423285 2.238078368792828 5.345779393385952 2.203725855621364 5.257842260045958 2.238078368792828 -7.594643879022609 1.892138130946195 -7.599735688577622 1.926711021119759 -7.314941693144679 1.892138130946195 -8.448096962230043 2.088729449784985 -8.453347287020552 2.123305648105701 -8.226340435739356 2.088729449784985 -7.614613133164902 2.519425711850718 -7.609543474466718 2.55400131525583 -7.33019722651946 2.519425711850718 -8.448096962230043 2.440066517344678 -8.433138761923601 2.471261304889587 -8.226340435739356 2.440066517344678 5.293901944627884 2.321234741744345 5.324792655280616 2.301776046490474 5.257487075161621 2.23829961114335 5.346147425702103 2.204308861027132 5.325515872235314 2.175184704299745 5.25821029242083 2.238661374291615 -7.59464387902261 0.847508270273163 -7.31494169314468 0.847508270273163 -7.313817229690283 0.8152187374453735 -7.614613133164902 1.847488849611038 -7.330197226519459 1.847488849611038 -7.329844071479497 1.812789092317539 -8.448096962230043 1.610256536976383 -8.226340435739356 1.610256536976383 -8.216305077654839 1.578020394015013 -7.315322611721951 2.58773636338952 -7.594643879022609 2.622436635247417 -7.314941693144679 2.622436635247417 -8.207874315730333 2.477237724286042 -8.414427950004418 2.509420127842605 -8.197568291130997 2.509420127842605 5.257694584180658 2.328012192249299 5.294109453664709 2.321178356806438 5.257694584180658 2.238243226210277 -8.414427950004418 2.404469505689812 -8.391710570707931 2.429960516845966 -8.197568291130997 2.404469505689812 5.324792655982698 2.174710171893183 5.293901945329966 2.15525100774944 5.257487075863704 2.238186841685243 -8.414427950004418 1.680627594748813 -8.429604281088645 1.711757990864516 -8.197568291130997 1.680627594748813 -5.690121388297848 0.1905733787220271 -5.697321005850073 0.2223746195841103 -5.425537767858401 0.1905733787220271 -7.533739806625457 1.074394969231607 -7.548425411989435 1.105508108359522 -7.267384254108391 1.074394969231607 -5.70996238626119 1.606689537717041 -5.71246452611048 1.641334536429509 -5.436053500309336 1.606689537717041 -5.716350316942823 2.797108435003465 -5.713852095007093 2.831754306080557 -5.439181483673173 2.797108435003465 -7.594643879022609 3.064196424748586 -7.580148294606151 3.095363784577919 -7.314941693144679 3.064196424748586 5.257261649911184 2.328012192249299 5.257261649911184 2.238243226210277 5.220833665769637 2.321178356806438 -8.357548818346192 1.899075206820555 -8.33017279422689 1.919163127378879 -8.147913995851576 1.899075206820555 -8.357548818346194 2.460148851109297 -8.147913995851576 2.460148851109297 -8.163976206223536 2.432104690786913 5.294109453664709 2.155307392279307 5.257694584180658 2.148475901285807 -8.357548818346192 0.9137672563702848 -8.38077106938216 0.9389755219671715 -8.147913995851576 0.9137672563702848 -8.182138385212012 0.742171433417169 -8.414427950004418 0.7704347662281051 -8.197568291130997 0.7704347662281051 -5.428715747259455 -1.704161865476215 -5.690121388297847 -1.676388150076523 -5.4255377678584 -1.676388150076524 -5.438215962025859 0.1266433971109121 -5.709962386261191 0.1586387343795093 -5.436053500309336 0.1586387343795093 -7.265366515898596 -0.5414825644176899 -7.533739806625457 -0.5129706370093234 -7.267384254108391 -0.5129706370093239 -5.439943273501687 1.586970821745632 -5.716350316942821 1.621635477153723 -5.439181483673172 1.621635477153723 -5.435295758054295 2.814971835455708 -5.709962386261191 2.849637242763926 -5.436053500309336 2.849637242763926 -7.268748940745635 3.223204487094314 -7.533739806625457 3.255487443403001 -7.267384254108392 3.255487443403001 5.221365332197959 2.321322867834767 5.257793316222684 2.238387737206852 5.190486544042464 2.30186417257458 8.278584240919347 -0.4954740699094379 8.250463842632156 -0.5149304624881447 8.077276431021296 -0.4954740699094379 -8.278584240919347 1.99989558902176 -8.077276431021296 1.99989558902176 -8.097163232592376 1.975562923541217 -7.533739806625457 3.520699317831119 -7.51175487315617 3.546135961707067 -7.267384254108391 3.520699317831119 5.257261649911184 2.148475901285807 5.220833665769637 2.155307392279307 -8.278584240919347 -0.5584549503005105 -8.306696024953093 -0.5390068718870841 -8.077276431021296 -0.5584549503005101 -8.128962961671316 -0.5649448027075027 -8.357548818346194 -0.5401549389140391 -8.147913995851578 -0.5401549389140395 -7.42943998662339 -0.1647572133505751 -7.451897832370662 -0.1395771713629692 -7.182986502978527 -0.1647572133505749 -4.106498705344571 -2.194737263876049 -4.371573289103265 -2.194737263876049 -4.372742006118543 -2.166866418174485 -5.658881325239604 -1.625850436882716 -5.669716572530494 -1.598596161089331 -5.408222599321642 -1.625850436882716 -4.344407637896152 -0.1724349091188175 -4.345262429244977 -0.1404014375225808 -4.068094255706499 -0.1724349091188171 -4.327264597134145 1.488405310062259 -4.327580443456421 1.523074254803126 -4.043438262940182 1.488405310062259 -4.321733655741939 2.912919540576105 -4.321412509367989 2.947589152101175 -4.035270892659064 2.912919540576105 -5.709962386261191 3.874449404872737 -5.70279892686596 3.906254839774855 -5.436053500309336 3.874449404872737 5.19044319722537 2.301835729927616 5.257749969418736 2.238359294568514 5.169805681238873 2.272712511066155 8.184874888882753 0.8555462819586317 8.160387914107073 0.8310995600623022 7.991694895770678 0.8555462819586317 8.184874888882753 -0.9033583255625841 7.991694895770677 -0.9033583255625837 8.012566787185671 -0.8795559162780426 -7.429439986623393 3.502378420519628 -7.402942013570105 3.522435967625112 -7.18298650297853 3.502378420519628 -7.42943998662339 3.691872979870877 -7.182986502978527 3.691872979870877 -7.185612665447719 3.663392052305356 5.257793314422883 2.238098715214484 5.221365330398156 2.155162881251762 5.190486542242661 2.17462204540182 8.184874888882753 2.311433348499024 8.213760123864551 2.292684013666642 7.991694895770677 2.311433348499024 8.057393700875089 1.973876432916301 8.278584240919347 1.949556275431979 8.077276431021295 1.949556275431979 -7.279957710792657 -2.13595743916171 -7.30721571253933 -2.116541219188251 -7.056785922228732 -2.13595743916171 -7.179886540892554 -2.225423302269734 -7.429439986623391 -2.199964688915634 -7.182986502978528 -2.199964688915634 -4.106498705344571 -4.315338944522543 -4.118364496719114 -4.338783795582042 -4.371573289103265 -4.315338944522543 -4.078057156177957 -2.084249906790512 -4.344407637896152 -2.057020180700147 -4.068094255706499 -2.057020180700147 -5.411866621041948 -3.759065283276399 -5.658881325239604 -3.734692179949262 -5.408222599321642 -3.734692179949263 -4.050050888315531 -0.07999528710715549 -4.327264597134145 -0.04820659046825556 -4.043438262940183 -0.04820659046825556 -4.037586288133102 1.518865553538542 -4.32173365574194 1.553508179276814 -4.035270892659065 1.553508179276813 -4.327264597134145 2.919530116198718 -4.043438262940183 2.919530116198718 -4.041117794381885 2.884887003072012 -5.423412798604202 3.92044888372028 -5.690121388297848 3.95244492192354 -5.425537767858401 3.95244492192354 5.169773852910238 2.272662087988296 5.257718141093744 2.238308871496426 5.162523542740018 2.238308871496426 8.091502253624396 1.615081577113413 8.074755632710328 1.584451892168086 7.905025930413123 1.615081577113413 8.091502253624396 0.3617049907004171 7.905025930413125 0.3617049907004173 7.923471454017586 0.3888275851167384 7.279957710792657 -2.071767945251741 7.252707923918537 -2.091174697282529 7.056785922228733 -2.071767945251742 -7.279957710792657 3.60230930383809 -7.056785922228732 3.60230930383809 -7.060890679069933 3.576938197173214 -5.690121388297848 4.784846942203251 -5.679372873464557 4.81212212846314 -5.425537767858401 4.784846942203251 5.257749966396306 2.238127159158331 5.19044319420294 2.174650489354293 5.169805678216441 2.203774645995499 8.091502253624395 2.847984580969486 8.116559106319665 2.823897488017409 7.905025930413123 2.847984580969486 7.974000727324746 2.711421312809561 8.184874888882751 2.683990357308276 7.991694895770676 2.683990357308276 7.089414076980404 3.891409795122575 7.117562916148956 3.87281496631796 6.889218849468708 3.891409795122575 7.052671928082037 3.579085085218491 7.279957710792657 3.553704666771124 7.056785922228732 3.553704666771123 -5.618014521290714 -3.740963454464607 -5.630933483310515 -3.717494260488303 -5.383777369702075 -3.740963454464607 -0.9337447459037462 -5.237268806807606 -1.202525370192819 -5.237268806807607 -1.202785001514176 -5.212034885784941 -4.155551980529968 -4.368411102527899 -4.407385614296162 -4.368411102527899 -4.408595755932867 -4.343888470665049 -0.7866734789045558 -2.905686300756087 -1.079361224108526 -2.905686300756086 -1.079995554315324 -2.877355485465953 -0.9899921090106084 -0.6054973022645677 -0.9906208085041063 -0.5732895900857723 -0.6769883797933513 -0.6054973022645677 -0.9368824927316599 1.345601344553227 -0.9371471508370505 1.380291196550636 -0.6102822656157736 1.345601344553227 -0.9194164943493827 3.052803907308949 -0.9191376025459386 3.087494386794017 -0.5880403229384407 3.052803907308949 -4.327264597134145 4.214075276869146 -4.326363227868169 4.246107105709727 -4.043438262940183 4.214075276869145 5.257718141093744 2.238177579226426 5.169773852910238 2.203825066069364 5.162523542740018 2.238177579226426 8.020958995273697 2.075390039611 8.014984018665016 2.040885238245398 7.838859520104162 2.075390039611 7.851534492708137 1.338298761784583 8.020958995273695 1.306640681498651 7.83885952010416 1.306640681498651 7.089414076980401 -0.1522422350910452 7.065549128877333 -0.1766089148531753 6.889218849468707 -0.1522422350910452 7.089414076980402 -2.579620428781995 6.889218849468708 -2.579620428781995 6.894568634402707 -2.554382359578488 -5.658881325239604 4.999445459736856 -5.646101014844469 5.022962266460473 -5.408222599321642 4.999445459736856 -5.658881325239605 4.851752253498015 -5.408222599321643 4.851752253498015 -5.405134640673079 4.823972583106356 8.020958995273697 2.703698637209602 8.037965997820322 2.6731569720878 7.838859520104162 2.703698637209602 8.091502253624396 2.731726712195991 7.905025930413123 2.731726712195991 7.892699923699313 2.763470810421477 6.882337915206716 3.846495242284363 6.906958097270341 3.822597695924058 6.701317974862309 3.846495242284363 6.884686030210803 3.930892229955167 7.089414076980401 3.902559950926199 6.889218849468707 3.902559950926199 5.355005519845296 5.038864350061447 5.57281521324942 5.038864350061446 5.585904221985749 5.015441758617409 5.387276543565392 5.00751871024453 5.618014521290716 4.983135647496873 5.383777369702076 4.983135647496874 0.9337447459037446 6.413703438449323 0.9573595173927529 6.435386439937327 1.202525370192817 6.413703438449323 -0.7866734789045521 -5.06538932238841 -0.809858496376345 -5.087357951888587 -1.079361224108522 -5.06538932238841 4.155551980529967 5.573661995742216 4.167590095393595 5.597052401176532 4.407385614296162 5.573661995742215 -0.6769883797933518 -2.47346946447306 -0.6963824410752739 -2.499892482786617 -0.989992109010609 -2.47346946447306 -0.6231349085514287 -0.2886335442522294 -0.9368824927316583 -0.2571275521303555 -0.6102822656157725 -0.2571275521303555 -0.5925382545852054 1.452190109230196 -0.9194164943493816 1.486802000928491 -0.588040322938439 1.486802000928491 -0.9368824927316583 2.989260231790058 -0.6102822656157725 2.989260231790058 -0.6057718714373334 2.95464864565857 -4.344407637896152 4.176216277967253 -4.068094255706499 4.176216277967253 -4.061437166037296 4.144434184346377 7.994555236402969 2.418633329209624 8.000562573761977 2.384132705547334 7.813977695463445 2.418633329209624 7.818468817536674 1.998685546094638 7.994555236402969 1.964060680592401 7.813977695463445 1.964060680592401 6.882337915206716 1.108482911829678 6.865884915840715 1.077919330033254 6.701317974862309 1.108482911829678 6.882337915206716 -1.001403397725176 6.701317974862309 -1.001403397725177 6.706936325541064 -0.97319204391688 5.618014521290714 -3.688706682456192 5.60508291867447 -3.71218400114565 5.383777369702075 -3.688706682456193 -5.618014521290715 5.033489398688582 -5.383777369702075 5.033489398688582 -5.380277708517728 5.009102549842747 -4.34312926208276 5.330608004661404 -4.068094255706499 5.302740465696545 -4.344407637896151 5.302740465696545 8.020958995273697 2.437946820433476 7.838859520104161 2.437946820433476 7.834412148872458 2.472574482747183 6.711663862443613 3.201320591517932 6.728497075353185 3.170884508632846 6.543262750347934 3.201320591517932 6.882337915206716 3.486455530030453 6.701317974862309 3.486455530030453 6.697575632248265 3.51861822226603 5.530021900809667 4.804071587326873 5.54124409688892 4.776914686637295 5.326128570022592 4.804071587326872 5.357832170269662 4.829204193083857 5.572815213249419 4.801405637170106 5.355005519845295 4.801405637170106 4.208948529117996 5.568963007813125 4.44753877437411 5.568963007813125 4.448560841545348 5.544438233461815 -1.007018039784137 6.431708172088143 -0.8493013544758682 6.431708172088143 -0.8662356188876785 6.406453664322858 1.10573487894831 6.407177696861663 1.350699105388963 6.407177696861663 1.350351194428278 6.381944449917796 1.395056283149452 -5.230085027013481 1.225824621021148 -5.230085027013481 1.241285039505927 -5.204251745528667 1.731934685679073 -2.962044495702981 1.55085691539324 -2.962044495702981 1.562863942988197 -2.933032022317872 1.983521061971769 -0.6855567854979721 1.792201439262944 -0.6855567854979721 1.799661996535315 -0.6529928500682611 2.136748522003975 1.313328052295595 1.938490401881309 1.313328052295595 1.940985160294814 1.348064942679381 2.188314297829721 3.079320608771617 1.987604097177415 3.079320608771617 1.985150605086615 3.114060013520255 -0.936882492731661 4.623051910599274 -0.9361309016619213 4.655257145087229 -0.6102822656157747 4.623051910599274 6.711663862443615 1.925024402047909 6.70575696549514 1.890531342677316 6.543262750347935 1.925024402047909 6.547575844512357 0.5069292619910031 6.711663862443615 0.4748116824340639 6.543262750347935 0.4748116824340637 5.572815213249419 -1.559100047478916 5.561722558084639 -1.586289528753696 5.355005519845295 -1.559100047478916 5.572815213249418 -3.775989891247839 5.355005519845295 -3.775989891247839 5.351670638961791 -3.751591927864505 -4.370194115780932 5.634314081380831 -4.106498705344571 5.609796319296637 -4.371573289103265 5.609796319296637 -4.371573289103265 5.271712918633719 -4.106498705344571 5.271712918633719 -4.096431206840382 5.244507346248376 6.643839798432421 2.567619195287584 6.649796789849342 2.533132168263443 6.47980489056156 2.567619195287584 6.711663862443613 2.699058771651552 6.543262750347934 2.699058771651552 6.541735545556305 2.733739170767791 5.498446087312136 3.885599378014982 5.505997639730058 3.853853266771846 5.303836361074548 3.885599378014983 5.327927385702473 3.941081011540729 5.530021900809665 3.909072920174765 5.326128570022592 3.909072920174765 4.257936460904844 5.222382075887188 4.48531345142495 5.222382075887188 4.486030902111493 5.194500438426589 4.219299388511197 5.178528147736031 4.44753877437411 5.151390473061319 4.208948529117997 5.151390473061319 -1.00701803978414 5.45184854982558 -0.9830551004479032 5.476616749527783 -0.8493013544758715 5.45184854982558 -1.395056283149454 6.384619143505996 -1.367900988315397 6.404899443116974 -1.22582462102115 6.384619143505996 1.126180452989459 5.641416503633121 1.350699105388962 5.615488709512939 1.105734878948308 5.615488709512939 1.731934685679073 -4.924178516475186 1.705792500385768 -4.945271664832444 1.550856915393241 -4.924178516475187 1.983521061971769 -2.3058824449882 1.962029323693447 -2.332015406115985 1.792201439262944 -2.3058824449882 2.136748522003976 -0.1619157663335245 2.122662978108879 -0.1933642392432385 1.93849040188131 -0.1619157663335245 2.188314297829719 1.517674831104229 2.183404800846037 1.483068430645079 1.987604097177413 1.517674831104229 2.136748522003975 2.95799400297503 2.141691388046876 2.923389843946922 1.93849040188131 2.95799400297503 -0.9899921090106101 4.415539712514128 -0.6769883797933529 4.415539712514128 -0.6640286535419743 4.384061745863043 6.481409524701137 1.72795506612671 6.643839798432421 1.693276133926626 6.47980489056156 1.693276133926626 5.530021900809665 0.2562638933463456 5.522535512819788 0.2245090923624617 5.326128570022592 0.2562638933463454 5.530021900809667 -1.71325762960622 5.326128570022592 -1.71325762960622 5.323437547324017 -1.685451073282144 4.406175641169333 -4.342441555283165 4.155551980529967 -4.317921419826119 4.407385614296161 -4.31792141982612 -4.407385614296161 5.62613219503817 -4.155551980529967 5.62613219503817 -4.14352539796433 5.602737416250526 -0.989049937042964 5.986932463028932 -0.6769883797933529 5.958607270824244 -0.9899921090106101 5.958607270824243 5.486959261738098 2.820684156459011 5.489632356636179 2.786046726792639 5.295621030574568 2.820684156459011 5.304443311461843 2.848018489033896 5.498446087312138 2.813351435311252 5.30383636107455 2.813351435311252 4.513108861298631 4.158010227951072 4.513515557441372 4.125972469394512 4.293220230864972 4.158010227951072 4.26494726907729 4.08214504933332 4.48531345142495 4.050410280721512 4.257936460904844 4.050410280721513 1.276725279204792 5.889163354326482 1.501575939317806 5.889163354326482 1.500775228390917 5.860837398112774 4.120657713958259 2.174783692688514 4.089776541609949 2.1553245285458 4.053353924651989 2.238260362477218 -0.631284774629305 5.907484127101301 -0.4830188650751356 5.907484127101301 -0.4985508620873287 5.879526141804989 4.053290871418724 2.238243226210277 4.089713488378332 2.155307392279307 4.053290871418724 2.148475901285807 4.054157899394946 2.238243226210277 4.054157899394946 2.148475901285807 4.01773051086569 2.155307392279307 4.054543914286919 2.238138304462622 4.018116525819456 2.155202470514856 3.987236541310906 2.174661634661405 4.054255546355624 2.23832752867375 3.986948173372667 2.174850858877091 3.966310655794683 2.203975015514911 4.054050695621173 2.238652068903375 3.966105805124072 2.204299555643396 3.95886741765176 2.238652068903375 3.966105805124072 2.272187594718053 4.054050695621173 2.237834378123268 3.95886741765176 2.237834378123268 2.136748522003975 4.656719431448113 1.93849040188131 4.656719431448113 1.931376664778171 4.68933052335335 5.498446087312137 1.654010558828326 5.495781333232114 1.61937203389967 5.303836361074549 1.654010558828326 5.302105984347215 0.1561552233427898 5.498446087312137 0.1241456503715618 5.303836361074548 0.1241456503715618 4.446672468588617 -2.112488711766805 4.208948529117997 -2.084610017992233 4.44753877437411 -2.084610017992233 4.44753877437411 -4.266698714593822 4.208948529117997 -4.266698714593822 4.196732168112794 -4.243364883480098 -1.078604252253852 6.463181153954725 -0.7866734789045543 6.437952798452399 -1.079361224108524 6.437952798452399 -0.7866734789045549 5.77736591715584 -0.767013479870341 5.751065149833229 -1.079361224108526 5.77736591715584 5.295022843372047 1.621605019435101 5.486959261738098 1.586937174499785 5.295621030574568 1.586937174499785 4.523059274737537 2.916007856548877 4.523192791943769 2.881337674012432 4.305799353268193 2.916007856548877 4.295706542211787 2.88038939282568 4.513108861298631 2.845753687310846 4.293220230864972 2.845753687310846 1.618313505717711 4.572318658344436 1.617513135747064 4.540114369776875 1.406837416130729 4.572318658344435 1.290660398817509 4.237757019502931 1.501575939317806 4.20653928295437 1.276725279204791 4.20653928295437 4.141023112258878 2.203732033367162 4.120389769618377 2.174607876719661 4.053085980356384 2.238084546537417 -0.6146994697045521 4.020679997856751 -0.4830188650751344 3.989996889396601 -0.6312847746293043 3.989996889396601 3.986948171177394 2.301635356761356 4.05425554416035 2.238158921409632 3.96631065359941 2.272512137903279 1.98352106197177 4.322119444130752 1.997885599264552 4.29075003516839 1.792201439262946 4.322119444130752 4.48531345142495 -0.06275353672841606 4.484833871098414 -0.09478981890238702 4.257936460904843 -0.06275353672841606 4.48531345142495 -1.948321272137886 4.257936460904844 -1.948321272137886 4.247444760144271 -1.921217425104833 1.202278269767634 -5.213554036127535 0.9337447459037468 -5.18831941884492 1.20252537019282 -5.18831941884492 -0.9337447459037468 6.470280942389443 -0.9101352261482021 6.44859316348806 -1.20252537019282 6.470280942389442 1.7810361668454 5.948996361269827 1.983521061971767 5.91977691270677 1.792201439262943 5.91977691270677 4.513108861298631 1.553437099301205 4.512966207749581 1.51876624239257 4.293220230864972 1.553437099301205 4.523059274737538 1.560638837012923 4.305799353268195 1.560638837012923 4.303304420538273 1.595274856461392 1.663014187917965 3.057044881378341 1.662698406695706 3.022354883904754 1.456228398706928 3.057044881378341 1.411811474799222 2.904143609495244 1.618313505717711 2.869571771675831 1.406837416130728 2.869571771675831 -0.2102850955705954 4.533779046459811 -0.2212219667555027 4.501830716375358 -0.3524154584033468 4.533779046459811 4.148360119053441 2.238232274855406 4.141116365372862 2.203879761700982 4.053179233460373 2.238232274855406 4.018116527126163 2.321283278909248 4.054543915593625 2.238348148296289 3.987236542617612 2.30182458365257 4.51310886129863 0.03565696069686471 4.293220230864971 0.03565696069686471 4.286140664411874 0.06738142067043182 1.350988144508157 -2.831136704223236 1.105734878948305 -2.80280497975379 1.350699105388959 -2.802804979753791 1.105734878948308 -4.987727928423084 1.081620465374786 -4.966387199934666 1.350699105388962 -4.987727928423085 1.536701820058918 6.367885355987457 1.73193468567907 6.341592512008873 1.550856915393238 6.341592512008873 1.731934685679077 5.650744780346956 1.754094166479398 5.624959601068585 1.550856915393245 5.650744780346956 1.618313505717711 1.409318260218672 1.618593808566288 1.374627377623547 1.406837416130728 1.409318260218672 1.663014187917964 1.548769447821672 1.456228398706927 1.548769447821672 1.451225850928825 1.583339440626227 -0.1086696165038081 3.030118861325131 -0.1125886202209725 2.995463149197006 -0.2486929241486502 3.030118861325131 -0.3464514958988113 2.804383934901902 -0.2102850955705932 2.769879506764597 -0.3524154584033451 2.769879506764597 4.141116365372862 2.272607393820292 4.148360119053441 2.23825417733106 4.053179233460373 2.23825417733106 4.054157899394946 2.328012192249299 4.01773051086569 2.321178356806438 1.501575939317805 -0.5012014929778504 1.502112372354255 -0.5334083234158705 1.276725279204791 -0.5012014929778509 1.501575939317806 -2.213331115450854 1.276725279204791 -2.213331115450854 1.255857814214288 -2.187612521976157 -1.210357660518652 -5.207987081071356 -1.395056283149451 -5.182156022682914 -1.225824621021147 -5.182156022682913 1.395056283149452 6.445100058395354 1.42221195935433 6.424813982187559 1.225824621021148 6.445100058395354 1.618313505717711 -0.02352780711635812 1.406837416130728 -0.02352780711635768 1.39268811687711 0.007629375589039378 -0.2102850955705948 1.435104646698213 -0.2064391479506883 1.400443172948768 -0.3524154584033462 1.435104646698212 -0.1086696165038081 1.662898754661748 -0.2486929241486496 1.662898754661748 -0.2547078584367069 1.69739840721977 4.120389765485858 2.301878342480607 4.141023108126361 2.272755123612851 4.053085976223867 2.238401907107786 4.053290871418724 2.328012192249299 4.089713488378332 2.321178356806438 -0.8349414320856191 -2.851902013096587 -1.007018039784136 -2.823559249374875 -0.8493013544758671 -2.823559249374875 -1.007018039784137 -4.861525074475524 -1.03528126658282 -4.842203439682592 -0.8493013544758686 -4.861525074475524 -0.4830188650751377 -0.4695719101567735 -0.472649456256577 -0.5016362722773671 -0.6312847746293077 -0.4695719101567735 -0.2102850955705954 0.3145772758262392 -0.3524154584033462 0.3145772758262392 -0.3694040583669178 0.3451226396423521 4.089776541823367 2.321161220312439 4.120657714171677 2.301702525059598 4.053353924865407 2.23822608971583 -0.4830188650751338 -1.801078081036106 -0.6312847746293038 -1.801078081036107 -0.6561056020352341 -1.776838728686103</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"668\" source=\"#ID122\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID118\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID116\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID117\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"448\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID118\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID119\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 16 12 6 13 8 14 9 14 11 13 17 12 7 15 18 16 8 17 9 17 19 16 10 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 28 30 16 31 8 32 9 32 17 31 29 30 18 33 30 34 8 35 9 35 31 34 19 33 12 36 20 37 32 38 33 38 21 37 13 36 2 39 24 40 20 41 21 41 25 40 3 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 40 51 28 52 8 53 9 53 29 52 41 51 26 54 42 55 38 56 39 56 43 55 27 54 30 57 44 58 8 59 9 59 45 58 31 57 46 60 22 61 34 62 35 62 23 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 40 78 8 79 54 80 55 80 9 79 41 78 42 81 56 82 57 83 58 83 59 82 43 81 42 84 57 85 38 86 39 86 58 85 43 84 8 53 44 87 60 88 61 88 45 87 9 53 62 89 46 90 63 91 64 91 47 90 65 89 63 92 46 93 34 94 35 94 47 93 64 92 66 95 32 96 48 97 49 97 33 96 67 95 48 98 20 99 50 100 51 100 21 99 49 98 68 101 34 102 32 103 33 103 35 102 69 101 50 104 24 105 52 106 53 106 25 105 51 104 52 107 36 108 70 109 71 109 37 108 53 107 36 110 38 111 72 112 73 112 39 111 37 110 54 113 8 114 74 115 75 115 9 114 55 113 56 116 54 117 76 118 77 118 55 117 59 116 56 119 76 120 57 121 58 121 77 120 59 119 38 122 57 123 72 124 73 124 58 123 39 122 8 79 60 125 78 126 79 126 61 125 9 79 80 127 62 128 81 129 82 129 65 128 83 127 81 130 62 131 63 132 64 132 65 131 82 130 63 133 34 134 68 135 69 135 35 134 64 133 84 136 66 137 48 138 49 138 67 137 85 136 68 139 32 140 66 141 67 141 33 140 69 139 48 142 50 143 86 144 87 144 51 143 49 142 50 145 52 146 88 147 89 147 53 146 51 145 52 148 70 149 90 150 91 150 71 149 53 148 36 151 72 152 70 153 71 153 73 152 37 151 74 154 8 155 92 156 93 156 9 155 75 154 54 157 74 158 94 159 95 159 75 158 55 157 54 160 94 161 76 162 77 162 95 161 55 160 57 163 76 164 96 165 97 165 77 164 58 163 57 166 96 167 72 168 73 168 97 167 58 166 8 169 78 170 98 171 99 171 79 170 9 169 78 172 80 173 100 174 101 174 83 173 79 172 100 175 80 176 81 177 82 177 83 176 101 175 81 178 63 179 102 180 103 180 64 179 82 178 102 181 63 182 68 183 69 183 64 182 103 181 84 184 104 185 66 186 67 186 105 185 85 184 84 187 48 188 86 189 87 189 49 188 85 187 106 190 68 191 66 192 67 192 69 191 107 190 86 193 50 194 88 195 89 195 51 194 87 193 88 196 52 197 90 198 91 198 53 197 89 196 70 199 108 200 90 201 91 201 109 200 71 199 70 202 72 203 110 204 111 204 73 203 71 202 92 205 8 206 112 207 113 207 9 206 93 205 74 208 92 209 114 210 115 210 93 209 75 208 74 211 114 212 94 213 95 213 115 212 75 211 76 214 94 215 116 216 117 216 95 215 77 214 76 217 116 218 96 219 97 219 117 218 77 217 72 220 96 221 110 222 111 222 97 221 73 220 8 223 98 224 118 225 119 225 99 224 9 223 98 226 78 227 120 228 121 228 79 227 99 226 120 229 78 230 100 231 101 231 79 230 121 229 100 232 81 233 122 234 123 234 82 233 101 232 122 235 81 236 102 237 103 237 82 236 123 235 102 238 68 239 106 240 107 240 69 239 103 238 124 241 104 242 84 243 85 243 105 242 125 241 104 244 106 245 66 246 67 246 107 245 105 244 126 247 84 248 86 249 87 249 85 248 127 247 86 250 88 251 128 252 129 252 89 251 87 250 88 253 90 254 130 255 131 255 91 254 89 253 90 256 108 257 132 258 133 258 109 257 91 256 70 259 110 260 108 261 109 261 111 260 71 259 8 262 118 263 112 264 113 264 119 263 9 262 92 265 112 266 134 267 135 267 113 266 93 265 114 268 92 269 134 270 135 270 93 269 115 268 94 271 114 272 136 273 137 273 115 272 95 271 94 274 136 275 116 276 117 276 137 275 95 274 96 277 116 278 138 279 139 279 117 278 97 277 96 280 138 281 110 282 111 282 139 281 97 280 118 283 98 284 140 285 141 285 99 284 119 283 98 286 120 287 140 288 141 288 121 287 99 286 120 289 100 290 142 291 143 291 101 290 121 289 142 292 100 293 122 294 123 294 101 293 143 292 144 295 122 296 102 297 103 297 123 296 145 295 144 298 102 299 106 300 107 300 103 299 145 298 124 301 146 302 104 303 105 303 147 302 125 301 126 304 124 305 84 306 85 306 125 305 127 304 104 307 148 308 106 309 107 309 149 308 105 307 128 310 126 311 86 312 87 312 127 311 129 310 128 313 88 314 130 315 131 315 89 314 129 313 130 316 90 317 132 318 133 318 91 317 131 316 108 319 150 320 132 321 133 321 151 320 109 319 110 322 152 323 108 324 109 324 153 323 111 322 112 325 118 326 154 327 155 327 119 326 113 325 134 328 112 329 154 330 155 330 113 329 135 328 114 331 134 332 156 333 157 333 135 332 115 331 114 334 156 335 136 336 137 336 157 335 115 334 116 337 136 338 158 339 159 339 137 338 117 337 116 340 158 341 138 342 139 342 159 341 117 340 138 343 152 344 110 345 111 345 153 344 139 343 118 346 140 347 154 348 155 348 141 347 119 346 140 349 120 350 160 351 161 351 121 350 141 349 120 352 142 353 160 354 161 354 143 353 121 352 142 355 122 356 162 357 163 357 123 356 143 355 162 358 122 359 144 360 145 360 123 359 163 358 148 361 144 362 106 363 107 363 145 362 149 361 164 364 146 365 124 366 125 366 147 365 165 364 146 367 148 368 104 369 105 369 149 368 147 367 166 370 124 371 126 372 127 372 125 371 167 370 168 373 126 374 128 375 129 375 127 374 169 373 170 376 128 377 130 378 131 378 129 377 171 376 172 379 130 380 132 381 133 381 131 380 173 379 174 382 132 383 150 384 151 384 133 383 175 382 108 385 152 386 150 387 151 387 153 386 109 385 134 388 154 389 176 390 177 390 155 389 135 388 156 391 134 392 176 393 177 393 135 392 157 391 136 394 156 395 178 396 179 396 157 395 137 394 136 397 178 398 158 399 159 399 179 398 137 397 158 400 180 401 138 402 139 402 181 401 159 400 138 403 180 404 152 405 153 405 181 404 139 403 154 406 140 407 182 408 183 408 141 407 155 406 140 409 160 410 182 411 183 411 161 410 141 409 160 412 142 413 184 414 185 414 143 413 161 412 184 415 142 416 162 417 163 417 143 416 185 415 186 418 162 419 144 420 145 420 163 419 187 418 186 421 144 422 148 423 149 423 145 422 187 421 164 424 188 425 146 426 147 426 189 425 165 424 166 427 164 428 124 429 125 429 165 428 167 427 190 430 148 431 146 432 147 432 149 431 191 430 168 433 166 434 126 435 127 435 167 434 169 433 170 436 168 437 128 438 129 438 169 437 171 436 172 439 170 440 130 441 131 441 171 440 173 439 174 442 172 443 132 444 133 444 173 443 175 442 192 445 174 446 150 447 151 447 175 446 193 445 152 448 194 449 150 450 151 450 195 449 153 448 176 451 154 452 182 453 183 453 155 452 177 451 156 454 176 455 196 456 197 456 177 455 157 454 156 457 196 458 178 459 179 459 197 458 157 457 178 460 198 461 158 462 159 462 199 461 179 460 158 463 198 464 180 465 181 465 199 464 159 463 180 466 194 467 152 468 153 468 195 467 181 466 182 469 160 470 200 471 201 471 161 470 183 469 200 472 160 473 184 474 185 474 161 473 201 472 184 475 162 476 202 477 203 477 163 476 185 475 202 478 162 479 186 480 187 480 163 479 203 478 190 481 186 482 148 483 149 483 187 482 191 481 188 484 164 485 204 486 205 486 165 485 189 484 188 487 190 488 146 489 147 489 191 488 189 487 204 490 164 491 206 492 207 492 165 491 205 490 204 493 206 494 208 495 209 495 207 494 205 493 204 496 208 497 210 498 211 498 209 497 205 496 204 499 210 500 212 501 213 501 211 500 205 499 204 502 212 503 214 504 215 504 213 503 205 502 216 505 204 506 214 507 215 507 205 506 217 505 192 508 150 509 194 510 195 510 151 509 193 508 176 511 182 512 218 513 219 513 183 512 177 511 196 514 176 515 218 516 219 516 177 515 197 514 196 517 220 518 178 519 179 519 221 518 197 517 178 520 220 521 198 522 199 522 221 521 179 520 198 523 222 524 180 525 181 525 223 524 199 523 222 526 194 527 180 528 181 528 195 527 223 526 218 529 182 530 200 531 201 531 183 530 219 529 200 532 184 533 224 534 225 534 185 533 201 532 224 535 184 536 202 537 203 537 185 536 225 535 202 538 186 539 226 540 227 540 187 539 203 538 226 541 186 542 190 543 191 543 187 542 227 541 228 544 188 545 204 546 205 546 189 545 229 544 228 547 190 548 188 549 189 549 191 548 229 547 230 550 204 551 216 552 217 552 205 551 231 550 232 553 192 554 194 555 195 555 193 554 233 553 196 556 218 557 234 558 235 558 219 557 197 556 196 559 234 560 220 561 221 561 235 560 197 559 220 562 236 563 198 564 199 564 237 563 221 562 236 565 222 566 198 567 199 567 223 566 237 565 222 568 232 569 194 570 195 570 233 569 223 568 218 571 200 572 238 573 239 573 201 572 219 571 200 574 224 575 238 576 239 576 225 575 201 574 224 577 202 578 240 579 241 579 203 578 225 577 240 580 202 581 226 582 227 582 203 581 241 580 226 583 190 584 228 585 229 585 191 584 227 583 242 586 228 587 204 588 205 588 229 587 243 586 244 589 204 590 230 591 231 591 205 590 245 589 218 592 238 593 234 594 235 594 239 593 219 592 234 595 246 596 220 597 221 597 247 596 235 595 246 598 236 599 220 600 221 600 237 599 247 598 236 601 248 602 222 603 223 603 249 602 237 601 248 604 232 605 222 606 223 606 233 605 249 604 238 607 224 608 250 609 251 609 225 608 239 607 224 610 240 611 250 612 251 612 241 611 225 610 240 613 226 614 242 615 243 615 227 614 241 613 242 616 226 617 228 618 229 618 227 617 243 616 252 619 242 620 204 621 205 621 243 620 253 619 254 622 204 493 244 623 245 623 205 493 255 622 234 624 238 625 256 626 257 626 239 625 235 624 234 627 256 628 246 629 247 629 257 628 235 627 246 630 258 631 236 632 237 632 259 631 247 630 258 633 248 634 236 635 237 635 249 634 259 633 238 636 250 637 256 638 257 638 251 637 239 636 250 639 240 640 252 641 253 641 241 640 251 639 240 642 242 643 252 644 253 644 243 643 241 642 260 645 252 646 204 647 205 647 253 646 261 645 254 648 262 649 204 490 205 490 263 649 255 648 256 650 262 651 246 652 247 652 263 651 257 650 262 653 258 654 246 655 247 655 259 654 263 653 256 656 250 657 260 658 261 658 251 657 257 656 250 659 252 660 260 661 261 661 253 660 251 659 262 662 260 663 204 664 205 664 261 663 263 662 256 665 260 666 262 667 263 667 261 666 257 665</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID123\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID124\">\r\n\t\t\t\t\t<float_array count=\"804\" id=\"ID128\">-0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7703003287315369 -0.5612730979919434 0.2852768898010254 -0.7703003287315369 -0.5612730979919434 0.2852768898010254 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557626962661743 -0.5678825378417969 0.2799702882766724 -0.7557626962661743 -0.5678825378417969 0.2799702882766724 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7686104774475098 -0.5605920553207398 0.2893087267875671 -0.7686104774475098 -0.5605920553207398 0.2893087267875671 -0.7716054916381836 -0.5605920553207398 0.281104177236557 -0.7716054916381836 -0.5605920553207398 0.281104177236557 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7827324271202087 -0.5360980033874512 0.2898147404193878 -0.7827324271202087 -0.5360980033874512 0.2898147404193878 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7837280631065369 -0.535775899887085 0.2855293154716492 -0.7837280631065369 -0.535775899887085 0.2855293154716492 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7807338237762451 -0.535775899887085 0.2937338352203369 -0.7807338237762451 -0.535775899887085 0.2937338352203369 -0.7667932510375977 -0.5586550235748291 0.2925863564014435 -0.7667932510375977 -0.5586550235748291 0.2925863564014435 -0.7835687398910523 -0.534860372543335 0.2815302610397339 -0.7835687398910523 -0.534860372543335 0.2815302610397339 -0.772327184677124 -0.5586550235748291 0.2774266302585602 -0.772327184677124 -0.5586550235748291 0.2774266302585602 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7860668897628784 -0.5086090564727783 0.2910321354866028 -0.7860668897628784 -0.5086090564727783 0.2910321354866028 -0.7870047688484192 -0.5086090564727783 0.2867254912853241 -0.7870047688484192 -0.5086090564727783 0.2867254912853241 -0.7866801619529724 -0.5086090564727783 0.2826657593250275 -0.7866801619529724 -0.5086090564727783 0.2826657593250275 -0.7521452307701111 -0.5642404556274414 0.2898727059364319 -0.7521452307701111 -0.5642404556274414 0.2898727059364319 -0.7651250958442688 -0.5557551383972168 0.2946110367774963 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7651250958442688 -0.5557551383972168 0.2946110367774963 -0.7723551988601685 -0.5557551383972168 0.2748038470745087 -0.7723551988601685 -0.5557551383972168 0.2748038470745087 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7840102910995483 -0.5086090564727783 0.2949300408363342 -0.7840102910995483 -0.5086090564727783 0.2949300408363342 -0.7780358195304871 -0.534860372543335 0.296690046787262 -0.7780358195304871 -0.534860372543335 0.296690046787262 -0.7851429581642151 -0.5086090564727783 0.27947136759758 -0.7851429581642151 -0.5086090564727783 0.27947136759758 -0.782279908657074 -0.5334889888763428 0.2784262001514435 -0.782279908657074 -0.5334889888763428 0.2784262001514435 -0.7529913187026978 -0.5611518621444702 0.2875483632087708 -0.7529913187026978 -0.5611518621444702 0.2875483632087708 -0.7638605833053589 -0.5523343086242676 0.2950736284255981 -0.7638605833053589 -0.5523343086242676 0.2950736284255981 -0.7716865539550781 -0.5523343086242676 0.2736347615718842 -0.7716865539550781 -0.5523343086242676 0.2736347615718842 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7593755125999451 -0.5642404556274414 0.2700657248497009 -0.7593755125999451 -0.5642404556274414 0.2700657248497009 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7846143841743469 -0.4800049960613251 0.290501743555069 -0.7846143841743469 -0.4800049960613251 0.290501743555069 -0.7855896949768066 -0.4802669584751129 0.286208987236023 -0.7855896949768066 -0.4802669584751129 0.286208987236023 -0.7853732705116272 -0.4810132682323456 0.2821890711784363 -0.7853732705116272 -0.4810132682323456 0.2821890711784363 -0.7839964628219605 -0.4821297228336334 0.2790530025959015 -0.7839964628219605 -0.4821297228336334 0.2790530025959015 -0.7542600035667419 -0.5590887069702148 0.2840702533721924 -0.7542600035667419 -0.5590887069702148 0.2840702533721924 -0.763191282749176 -0.548913836479187 0.2939048111438751 -0.763191282749176 -0.548913836479187 0.2939048111438751 -0.7750492691993713 -0.5334889888763428 0.2982333302497864 -0.7750492691993713 -0.5334889888763428 0.2982333302497864 -0.7800555229187012 -0.5318727493286133 0.2766901254653931 -0.7800555229187012 -0.5318727493286133 0.2766901254653931 -0.7704221606254578 -0.548913836479187 0.2740978002548218 -0.7704221606254578 -0.548913836479187 0.2740978002548218 -0.7585252523422241 -0.5611518621444702 0.2723884582519531 -0.7585252523422241 -0.5611518621444702 0.2723884582519531 -0.7825949788093567 -0.4802669584751129 0.2944135665893555 -0.7825949788093567 -0.4802669584751129 0.2944135665893555 -0.7811463475227356 -0.5086090564727783 0.297825813293457 -0.7811463475227356 -0.5086090564727783 0.297825813293457 -0.7816710472106934 -0.4834472239017487 0.2772795259952545 -0.7816710472106934 -0.4834472239017487 0.2772795259952545 -0.7826264500617981 -0.5086090564727783 0.2776279151439667 -0.7826264500617981 -0.5086090564727783 0.2776279151439667 -0.7557573914527893 -0.5583648681640625 0.2799681127071381 -0.7557573914527893 -0.5583648681640625 0.2799681127071381 -0.7632195949554443 -0.5460140705108643 0.2912820279598236 -0.7632195949554443 -0.5460140705108643 0.2912820279598236 -0.7722298502922058 -0.5318727493286133 0.2981289625167847 -0.7722298502922058 -0.5318727493286133 0.2981289625167847 -0.7772368788719177 -0.5302550792694092 0.2765855491161346 -0.7772368788719177 -0.5302550792694092 0.2765855491161346 -0.7687534689903259 -0.5460140705108643 0.2761222422122955 -0.7687534689903259 -0.5460140705108643 0.2761222422122955 -0.7572545409202576 -0.5590887069702148 0.2758658826351166 -0.7572545409202576 -0.5590887069702148 0.2758658826351166 -0.7700717449188232 -0.4507050812244415 0.2851933538913727 -0.7700717449188232 -0.4507050812244415 0.2851933538913727 -0.7713201642036438 -0.4513538777828217 0.2810003161430359 -0.7713201642036438 -0.4513538777828217 0.2810003161430359 -0.7718814015388489 -0.4532025158405304 0.2772639095783234 -0.7718814015388489 -0.4532025158405304 0.2772639095783234 -0.7716686725616455 -0.4559684097766876 0.2745532691478729 -0.7716686725616455 -0.4559684097766876 0.2745532691478729 -0.7707153558731079 -0.4592308700084686 0.2732801735401154 -0.7707153558731079 -0.4592308700084686 0.2732801735401154 -0.7639413475990295 -0.5440757274627686 0.2876043915748596 -0.7639413475990295 -0.5440757274627686 0.2876043915748596 -0.7700060606002808 -0.5302550792694092 0.2963924407958984 -0.7700060606002808 -0.5302550792694092 0.2963924407958984 -0.7779124975204468 -0.5086090564727783 0.2992783784866333 -0.7779124975204468 -0.5086090564727783 0.2992783784866333 -0.7795143723487854 -0.5086090564727783 0.2774169743061066 -0.7795143723487854 -0.5086090564727783 0.2774169743061066 -0.774250328540802 -0.5288839340209961 0.2781288921833038 -0.774250328540802 -0.5288839340209961 0.2781288921833038 -0.7669360041618347 -0.5440757274627686 0.2793997526168823 -0.7669360041618347 -0.5440757274627686 0.2793997526168823 -0.7683249115943909 -0.4513538777828217 0.2892045080661774 -0.7683249115943909 -0.4513538777828217 0.2892045080661774 -0.7798391580581665 -0.4810132682323456 0.2973486185073853 -0.7798391580581665 -0.4810132682323456 0.2973486185073853 -0.7691658139228821 -0.462493509054184 0.2736393809318543 -0.7691658139228821 -0.462493509054184 0.2736393809318543 -0.7787491083145142 -0.4847645461559296 0.2771378755569458 -0.7787491083145142 -0.4847645461559296 0.2771378755569458 -0.7652463316917419 -0.5433958768844605 0.2834318280220032 -0.7652463316917419 -0.5433958768844605 0.2834318280220032 -0.7687168121337891 -0.5288839340209961 0.2932883203029633 -0.7687168121337891 -0.5288839340209961 0.2932883203029633 -0.7748002409934998 -0.5086090564727783 0.299067348241806 -0.7748002409934998 -0.5086090564727783 0.299067348241806 -0.7762805819511414 -0.5086090564727783 0.2788696885108948 -0.7762805819511414 -0.5086090564727783 0.2788696885108948 -0.771552324295044 -0.5279688835144043 0.2810851335525513 -0.771552324295044 -0.5279688835144043 0.2810851335525513 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.7598279118537903 -0.4502493441104889 0.270230770111084 -0.7598279118537903 -0.4502493441104889 0.270230770111084 -0.7685574293136597 -0.5279688835144043 0.2892895638942719 -0.7685574293136597 -0.5279688835144043 0.2892895638942719 -0.7722839117050171 -0.5086090564727783 0.2972239553928375 -0.7722839117050171 -0.5086090564727783 0.2972239553928375 -0.7767665386199951 -0.4821297228336334 0.298860102891922 -0.7767665386199951 -0.4821297228336334 0.298860102891922 -0.7756767272949219 -0.4858811795711517 0.2786497473716736 -0.7756767272949219 -0.4858811795711517 0.2786497473716736 -0.7734167575836182 -0.5086090564727783 0.2817656397819519 -0.7734167575836182 -0.5086090564727783 0.2817656397819519 -0.7695537805557251 -0.5276470184326172 0.2850039303302765 -0.7695537805557251 -0.5276470184326172 0.2850039303302765 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.766347348690033 -0.4532025158405304 0.2924236953258514 -0.766347348690033 -0.4532025158405304 0.2924236953258514 -0.7589777112007141 -0.4533375799655914 0.272553950548172 -0.7589777112007141 -0.4533375799655914 0.272553950548172 -0.7672565579414368 -0.4652592241764069 0.2755759060382843 -0.7672565579414368 -0.4652592241764069 0.2755759060382843 -0.7707462310791016 -0.5086090564727783 0.2940293550491333 -0.7707462310791016 -0.5086090564727783 0.2940293550491333 -0.7738451957702637 -0.4834472239017487 0.2987184822559357 -0.7738451957702637 -0.4834472239017487 0.2987184822559357 -0.7729213237762451 -0.4866270124912262 0.2815848290920258 -0.7729213237762451 -0.4866270124912262 0.2815848290920258 -0.7713596820831299 -0.5086090564727783 0.285663366317749 -0.7713596820831299 -0.5086090564727783 0.285663366317749 -0.7562143206596375 -0.4466072618961334 0.2801350057125092 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7562143206596375 -0.4466072618961334 0.2801350057125092 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.7704225182533264 -0.5086090564727783 0.2899697721004486 -0.7704225182533264 -0.5086090564727783 0.2899697721004486 -0.7715195417404175 -0.4847645461559296 0.2969449162483215 -0.7715195417404175 -0.4847645461559296 0.2969449162483215 -0.7644380927085877 -0.4559684097766876 0.2943599820137024 -0.7644380927085877 -0.4559684097766876 0.2943599820137024 -0.7652781009674072 -0.4671074450016022 0.2787948548793793 -0.7652781009674072 -0.4671074450016022 0.2787948548793793 -0.7709025144577026 -0.4868890345096588 0.285496324300766 -0.7709025144577026 -0.4868890345096588 0.285496324300766 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7577064633369446 -0.4554002583026886 0.2760307788848877 -0.7577064633369446 -0.4554002583026886 0.2760307788848877 -0.770143449306488 -0.4858811795711517 0.2938092648983002 -0.770143449306488 -0.4858811795711517 0.2938092648983002 -0.7628887891769409 -0.4592308700084686 0.2947191298007965 -0.7628887891769409 -0.4592308700084686 0.2947191298007965 -0.7635319828987122 -0.4677572548389435 0.2828062176704407 -0.7635319828987122 -0.4677572548389435 0.2828062176704407 -0.7699267864227295 -0.4866270124912262 0.2897888720035553 -0.7699267864227295 -0.4866270124912262 0.2897888720035553 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7562091946601868 -0.4561249315738678 0.2801329493522644 -0.7562091946601868 -0.4561249315738678 0.2801329493522644 -0.7619361281394959 -0.462493509054184 0.29344642162323 -0.7619361281394959 -0.462493509054184 0.29344642162323 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7622835040092468 -0.4671074450016022 0.2869994938373566 -0.7622835040092468 -0.4671074450016022 0.2869994938373566 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7547121644020081 -0.4554002583026886 0.2842352688312531 -0.7547121644020081 -0.4554002583026886 0.2842352688312531 -0.7617230415344238 -0.4652592241764069 0.2907354831695557 -0.7617230415344238 -0.4652592241764069 0.2907354831695557 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7525970935821533 -0.4502493441104889 0.2900377213954926 -0.7525970935821533 -0.4502493441104889 0.2900377213954926 -0.7534435987472534 -0.4533375799655914 0.2877134084701538 -0.7534435987472534 -0.4533375799655914 0.2877134084701538</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"268\" source=\"#ID128\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID125\">\r\n\t\t\t\t\t<float_array count=\"804\" id=\"ID129\">-0.5876968925040732 -0.6735887911657533 0.4482081022883399 -0.6799127012575088 -0.6905785237255421 0.2466171551976235 -0.759162307953137 -0.5897294263540077 0.2754846527039925 0.759162307953137 0.5897294263540077 -0.2754846527039925 0.6799127012575088 0.6905785237255421 -0.2466171551976235 0.5876968925040732 0.6735887911657533 -0.4482081022883399 0.9393751607873966 -0.0005323211920775615 -0.3428906880185009 0.9393628637960561 -0.0006173183939990839 -0.3429242322129957 0.9393707373678011 -0.000612502356919651 -0.3429026722233822 -0.9393707373678011 0.000612502356919651 0.3429026722233822 -0.9393628637960561 0.0006173183939990839 0.3429242322129957 -0.9393751607873966 0.0005323211920775615 0.3428906880185009 -0.6458786781853358 -0.5638637250233121 0.5146828466817196 0.6458786781853358 0.5638637250233121 -0.5146828466817196 -0.8252130452855564 -0.5644959910024429 0.01917566251028928 0.8252130452855564 0.5644959910024429 -0.01917566251028928 0.9393567538817786 -0.0005382712193212191 -0.342941101649805 -0.9393567538817786 0.0005382712193212191 0.342941101649805 0.939356016129181 -0.0005718943339125305 -0.3429430680138977 -0.939356016129181 0.0005718943339125305 0.3429430680138977 -0.8952735511995463 -0.3038189711323704 0.325851655362714 0.8952735511995463 0.3038189711323704 -0.325851655362714 -0.4478259900236246 -0.6063394693870341 0.6571182013327666 0.4478259900236246 0.6063394693870341 -0.6571182013327666 -0.9554916368303205 -0.2903786264833388 0.05211511516790984 0.9554916368303205 0.2903786264833388 -0.05211511516790984 -0.7434422345913258 -0.6677615857521629 0.03725732705942159 0.7434422345913258 0.6677615857521629 -0.03725732705942159 0.9393876703993481 -0.0004425158333556151 -0.3428565427134553 -0.9393876703993481 0.0004425158333556151 0.3428565427134553 0.9393666363447232 -0.0005621982148279082 -0.3429139927963977 -0.9393666363447232 0.0005621982148279082 0.3429139927963977 -0.7663098117138697 -0.287478801867799 0.5745652364594542 0.7663098117138697 0.287478801867799 -0.5745652364594542 -0.4613914722004991 -0.4765550593873655 0.7483402867365623 0.4613914722004991 0.4765550593873655 -0.7483402867365623 -0.932740769324679 -0.2413542623399678 -0.267848422227826 0.932740769324679 0.2413542623399678 0.267848422227826 -0.8341463287975626 -0.4767548134915079 -0.2773170567531434 0.8341463287975626 0.4767548134915079 0.2773170567531434 0.9393855128217374 -0.0006459763529616571 -0.3428621312061057 -0.9393855128217374 0.0006459763529616571 0.3428621312061057 -0.2088796630572912 -0.4500651899447348 0.8682226737197561 0.2088796630572912 0.4500651899447348 -0.8682226737197561 -0.7749432179757205 -0.5980364207514185 -0.204488259732111 0.7749432179757205 0.5980364207514185 0.204488259732111 0.939366114960446 -0.0006049700991971296 -0.3429153482644036 -0.939366114960446 0.0006049700991971296 0.3429153482644036 -0.9387340067703677 -0.03695263064359954 0.3426557567316931 0.9387340067703677 0.03695263064359954 -0.3426557567316931 -0.9968836200001532 -0.03631772943364059 0.07002907042203974 0.9968836200001532 0.03631772943364059 -0.07002907042203974 -0.9665215557356135 -0.03194205032447853 -0.2545894493483146 0.9665215557356135 0.03194205032447853 0.2545894493483146 0.9430367189335424 0.1968518836966687 0.268199706614553 -0.9430367189335424 -0.1968518836966687 -0.268199706614553 -0.1507118301187419 -0.2948238051524016 0.943591473137458 0.2067286901584398 -0.1242111749235226 0.9704817528884784 -0.2067286901584398 0.1242111749235226 -0.9704817528884784 0.1507118301187419 0.2948238051524016 -0.943591473137458 -0.7259792496024214 -0.2943875774327934 -0.6215223917124435 0.7259792496024214 0.2943875774327934 0.6215223917124435 -0.7333575458056554 -0.4462259760542575 -0.5129026109353815 0.7333575458056554 0.4462259760542575 0.5129026109353815 0.9393735877531112 -0.0006683619107217434 -0.3428947592545039 -0.9393735877531112 0.0006683619107217434 0.3428947592545039 -0.8075809994209117 -0.03495251137658172 0.5887200109753288 0.8075809994209117 0.03495251137658172 -0.5887200109753288 -0.5434233473847485 -0.236380861998622 0.8054906291186406 0.5434233473847485 0.236380861998622 -0.8054906291186406 -0.77624666820467 -0.0208055834280788 -0.6300858971595587 0.77624666820467 0.0208055834280788 0.6300858971595587 -0.7622511894948567 -0.1430085582808667 -0.6312857327487325 0.7622511894948567 0.1430085582808667 0.6312857327487325 0.9517583666008596 0.3063554853541103 -0.01738758748968628 -0.9517583666008596 -0.3063554853541103 0.01738758748968628 0.3085135604110648 -0.006603051996354107 0.9511970262499887 -0.3085135604110648 0.006603051996354107 -0.9511970262499887 -0.3878239877414278 -0.008000950448255184 -0.9216987248142754 0.3878239877414278 0.008000950448255184 0.9216987248142754 -0.4792453524202446 -0.1284890568692437 -0.8682248870243514 0.4792453524202446 0.1284890568692437 0.8682248870243514 0.9393735869902281 -0.0006695758963013816 -0.3428947589760324 0.5562171680627579 0.1930149375026731 -0.8083116328824455 -0.5562171680627579 -0.1930149375026731 0.8083116328824455 -0.9393735869902281 0.0006695758963013816 0.3428947589760324 -0.9045527953872581 0.2690997388246127 0.3307107057862241 0.9045527953872581 -0.2690997388246127 -0.3307107057862241 -0.9649660436318769 0.2559692579079254 0.05762181569083463 0.9649660436318769 -0.2559692579079254 -0.05762181569083463 -0.9411968749283585 0.212637547222373 -0.2625523112378656 0.9411968749283585 -0.212637547222373 0.2625523112378656 -0.7688041742506049 0.1267303267397051 -0.6268010577043508 0.7688041742506049 -0.1267303267397051 0.6268010577043508 0.9251000585648488 0.3236474129631007 -0.1986006891367833 -0.9251000585648488 -0.3236474129631007 0.1986006891367833 0.7287341594235066 0.266575449730096 0.6307805121359665 -0.7287341594235066 -0.266575449730096 -0.6307805121359665 -0.1772913704638064 -0.1383692191083977 0.9743827426439765 0.1772913704638064 0.1383692191083977 -0.9743827426439765 -0.3700636271278899 -0.0026001605183503 -0.9290027723544364 0.3700636271278899 0.0026001605183503 0.9290027723544364 0.1511001016898652 0.2634154647907756 -0.9527754468805187 -0.1511001016898652 -0.2634154647907756 0.9527754468805187 0.7485679692683575 0.2979864513267261 -0.5923259830626647 -0.7485679692683575 -0.2979864513267261 0.5923259830626647 -0.7742812385345269 0.2570974118672391 0.5782641995356501 0.7742812385345269 -0.2570974118672391 -0.5782641995356501 -0.5751797832589399 -0.02964236575501923 0.8174897840845747 0.5751797832589399 0.02964236575501923 -0.8174897840845747 -0.3765588901945572 0.00306265901278567 -0.9263876199168547 0.3765588901945572 -0.00306265901278567 0.9263876199168547 -0.3558744091625368 -0.00105431210854561 -0.9345331954131929 0.3558744091625368 0.00105431210854561 0.9345331954131929 0.8900901419288182 0.3214159272263259 -0.3231583837166805 -0.8900901419288182 -0.3214159272263259 0.3231583837166805 0.8939422885008184 0.3901586756435967 0.2205524714210979 -0.8939422885008184 -0.3901586756435967 -0.2205524714210979 0.3189739854704907 -0.002230760464651021 0.9477608455200186 -0.3189739854704907 0.002230760464651021 -0.9477608455200186 0.1459070766059959 0.1197596578183602 -0.9820227845399114 -0.1459070766059959 -0.1197596578183602 0.9820227845399114 0.5502710975079951 0.3842764948060142 -0.7413051293407796 -0.5502710975079951 -0.3842764948060142 0.7413051293407796 0.8401899553323845 0.3172136215311651 -0.4398367393404606 -0.8401899553323845 -0.3172136215311651 0.4398367393404606 -0.7403767789009327 0.6147888203117427 0.2718031119836112 0.7403767789009327 -0.6147888203117427 -0.2718031119836112 -0.8111574230182659 0.5848269571315641 0.001032131097179552 0.8111574230182659 -0.5848269571315641 -0.001032131097179552 -0.8177054620361993 0.4874545794882314 -0.3061793760071327 0.8177054620361993 -0.4874545794882314 0.3061793760071327 -0.7013225750134465 0.2955872987883978 -0.6486715614018295 0.7013225750134465 -0.2955872987883978 0.6486715614018295 -0.3706111819145363 0.007338079827218162 -0.9287591207758661 0.3706111819145363 -0.007338079827218162 0.9287591207758661 0.9049787698564504 0.4174971728340059 -0.08191176218784334 -0.9049787698564504 -0.4174971728340059 0.08191176218784334 0.7492842702768336 0.1133073061078705 0.6524833612424842 -0.7492842702768336 -0.1133073061078705 -0.6524833612424842 -0.1878140547977587 -0.01875155572929557 0.9820255902868089 0.1878140547977587 0.01875155572929557 -0.9820255902868089 0.167502222222814 0.02034291975031596 -0.9856617935004132 -0.167502222222814 -0.02034291975031596 0.9856617935004132 0.5512543512531241 0.1792794820842699 -0.8148481499813896 -0.5512543512531241 -0.1792794820842699 0.8148481499813896 0.7513795791219324 0.4126530258060037 -0.5149234975913383 -0.7513795791219324 -0.4126530258060037 0.5149234975913383 -0.6173781056117399 0.5870733562910818 0.5236307372990856 0.6173781056117399 -0.5870733562910818 -0.5236307372990856 -0.5497328960254407 0.2145702959604168 0.8073124123404403 0.5497328960254407 -0.2145702959604168 -0.8073124123404403 0.1141922235456532 -0.2671827699782004 -0.9568560516130291 -0.1141922235456532 0.2671827699782004 0.9568560516130291 0.1373067547012777 -0.1084821594943567 -0.984570198708474 -0.1373067547012777 0.1084821594943567 0.984570198708474 0.8546613199521403 0.4177995435425294 -0.3082167574829752 -0.8546613199521403 -0.4177995435425294 0.3082167574829752 0.949312841698599 0.1689206995761342 0.2650866383672328 -0.949312841698599 -0.1689206995761342 -0.2650866383672328 0.3297255915197676 -0.0009885026706106888 0.9440762983781605 -0.3297255915197676 0.0009885026706106888 -0.9440762983781605 0.5669851340101569 0.03369013539364726 -0.8230387795168842 -0.5669851340101569 -0.03369013539364726 0.8230387795168842 0.7912620993234708 0.1931464842356832 -0.5801712900528676 -0.7912620993234708 -0.1931464842356832 0.5801712900528676 -0.638537056043159 0.7328347537142009 0.2349971314896894 0.638537056043159 -0.7328347537142009 -0.2349971314896894 -0.7017607547321368 0.712370248672392 0.007776369603867601 0.7017607547321368 -0.712370248672392 -0.007776369603867601 -0.7315432666606591 0.6332764970439743 -0.2525971640679395 0.7315432666606591 -0.6332764970439743 0.2525971640679395 -0.6857894462902499 0.4575811258932667 -0.5659614373640338 0.6857894462902499 -0.4575811258932667 0.5659614373640338 -0.448989411502799 0.118161168088927 -0.8856898140513023 0.448989411502799 -0.118161168088927 0.8856898140513023 0.5397359834793658 -0.2011374880223855 -0.8174526157824724 -0.5397359834793658 0.2011374880223855 0.8174526157824724 0.9805230520615818 0.1855606155572991 -0.06435683592157802 -0.9805230520615818 -0.1855606155572991 0.06435683592157802 0.7630889204272282 0.01780855155038437 0.64604810580396 -0.7630889204272282 -0.01780855155038437 -0.64604810580396 -0.1843376772474672 0.1285988927317919 0.9744136419073606 0.1843376772474672 -0.1285988927317919 -0.9744136419073606 0.5422038749671823 -0.1706845476378058 -0.822728231658699 -0.5422038749671823 0.1706845476378058 0.822728231658699 0.805326769638433 0.03891174302325975 -0.591552762108857 -0.805326769638433 -0.03891174302325975 0.591552762108857 0.9228136040141001 0.1909154029804643 -0.334613749196465 -0.9228136040141001 -0.1909154029804643 0.334613749196465 -0.5477717468215713 0.7058405800431359 0.4491494060425926 0.5477717468215713 -0.7058405800431359 -0.4491494060425926 -0.4230759410465558 0.4905613902451703 0.7618111777260144 0.4230759410465558 -0.4905613902451703 -0.7618111777260144 0.7307814415269979 -0.3129023787814385 -0.6066717284270301 -0.7307814415269979 0.3129023787814385 0.6066717284270301 0.4946705607433165 -0.4106995055208651 -0.765915760706626 -0.4946705607433165 0.4106995055208651 0.765915760706626 0.9640089799779689 0.03017944270324709 0.2641512592435581 -0.9640089799779689 -0.03017944270324709 -0.2641512592435581 0.3067914316709257 0.003415327227728099 0.9517706409599064 -0.3067914316709257 -0.003415327227728099 -0.9517706409599064 0.7845936255858756 -0.1951876263780493 -0.5884850322641299 -0.7845936255858756 0.1951876263780493 0.5884850322641299 0.9386630805879255 0.0392960783194796 -0.3425893159015547 -0.9386630805879255 -0.0392960783194796 0.3425893159015547 0.9393670562484972 0.0006709258275012985 -0.3429126470306497 0.939387535505722 0.000712326964459923 -0.342856457904444 0.9393574540791952 0.0007067326414839689 -0.3429388779284527 -0.9393574540791952 -0.0007067326414839689 0.3429388779284527 -0.939387535505722 -0.000712326964459923 0.342856457904444 -0.9393670562484972 -0.0006709258275012985 0.3429126470306497 0.9393431617020412 0.0007352327346118228 -0.342977964301555 -0.9393431617020412 -0.0007352327346118228 0.342977964301555 0.9393599141774945 0.0007601345231298448 -0.3429320250894583 -0.9393599141774945 -0.0007601345231298448 0.3429320250894583 0.9393615077663579 0.0007724940961668289 -0.3429276322779873 0.9393601490072554 0.0007609575084204824 -0.3429313800175442 -0.9393601490072554 -0.0007609575084204824 0.3429313800175442 -0.9393615077663579 -0.0007724940961668289 0.3429276322779873 0.9393627260853724 0.0006563668888109732 -0.3429245369231614 -0.9393627260853724 -0.0006563668888109732 0.3429245369231614 0.9971204370427232 0.03653306278942292 -0.06645426513740364 -0.9971204370427232 -0.03653306278942292 0.06645426513740364 0.7372987661546131 -0.1107401548197216 0.6664286514979597 -0.7372987661546131 0.1107401548197216 -0.6664286514979597 -0.1171929909311837 0.2980396873264142 0.9473321210932186 0.1171929909311837 -0.2980396873264142 -0.9473321210932186 0.7109610084331069 -0.4576545015958977 -0.533935203612564 -0.7109610084331069 0.4576545015958977 0.533935203612564 0.9195885397944029 -0.2021437811372046 -0.3368899066851834 -0.9195885397944029 0.2021437811372046 0.3368899066851834 0.9393777598906878 0.0007398185943266229 -0.342883182572725 -0.9393777598906878 -0.0007398185943266229 0.342883182572725 -0.4126002273746283 0.6241763898905763 0.6634492344358925 0.4126002273746283 -0.6241763898905763 -0.6634492344358925 0.8327769633305351 -0.326481564813242 -0.4470931862409326 -0.8327769633305351 0.326481564813242 0.4470931862409326 0.9437654754795771 -0.1746400651050991 0.2807268689543169 -0.9437654754795771 0.1746400651050991 -0.2807268689543169 0.3076547733687897 0.009019681811754757 0.9514552988782045 -0.3076547733687897 -0.009019681811754757 -0.9514552988782045 0.8292553411957173 -0.4679345914479724 -0.305569627457955 -0.8292553411957173 0.4679345914479724 0.305569627457955 0.978525240877293 -0.198207437447245 -0.05658767274444375 -0.978525240877293 0.198207437447245 0.05658767274444375 0.9393775037110876 0.0007170786854222044 -0.3428839327231367 -0.9393775037110876 -0.0007170786854222044 0.3428839327231367 0.8889169327109634 -0.3206772464545694 -0.327097524212654 -0.8889169327109634 0.3206772464545694 0.327097524212654 0.6972377163543299 -0.2684672569085393 0.6646690145185071 -0.6972377163543299 0.2684672569085393 -0.6646690145185071 -0.1853855410059012 0.4540945488152194 0.8714530061467753 0.1853855410059012 -0.4540945488152194 -0.8714530061467753 0.8860657673843491 -0.460566397903878 -0.05259324092914863 -0.8860657673843491 0.460566397903878 0.05259324092914863 0.9393815149114341 0.0006962135971441197 -0.3428729862927766 -0.9393815149114341 -0.0006962135971441197 0.3428729862927766 0.9261755368606386 -0.3171137330902705 -0.2040533146176769 -0.9261755368606386 0.3171137330902705 0.2040533146176769 0.8692075955050879 -0.4145285925430947 0.2695258835075111 -0.8692075955050879 0.4145285925430947 -0.2695258835075111 0.2112090076613408 0.1239828002257577 0.9695457804203428 -0.2112090076613408 -0.1239828002257577 -0.9695457804203428 0.9435827415100812 -0.1957791465876297 0.2670620446370821 -0.9435827415100812 0.1957791465876297 -0.2670620446370821 0.9532398032915065 -0.3012849232039792 -0.02369118972829772 -0.9532398032915065 0.3012849232039792 0.02369118972829772</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"268\" source=\"#ID129\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID127\">\r\n\t\t\t\t\t<float_array count=\"1344\" id=\"ID130\">-1.634288126785523 -0.5065289085493202 -1.640379052581864 -0.5410184523209991 -1.856555345418121 -0.4964163357652918 -5.778295590805511 0.03205422185374644 -5.771040376065449 0.06640407704827979 -5.683106961699117 0.03203849938297348 -1.649825872907014 -0.7096271427484812 -1.872085244757289 -0.6994083991017083 -1.864254265075438 -0.6651528064412706 -1.250153234433578 1.388867994416182 -1.033136379969898 1.346867854706073 -1.2640871169191 1.355830552429904 -5.772293785269364 0.06467080810115421 -5.751655304927285 0.09379116709534083 -5.684362861601302 0.03030128675433246 -5.771057804517495 -0.004020829118176509 -5.77829604825178 0.03033741467521566 -5.683107419145802 0.03032169064965274 0.941829984151723 -0.9609511652732851 0.9391453810392414 -0.9956921457641622 0.6591045179291777 -0.9565910163461631 -2.298736174314402 -2.252131831131854 -2.295799360350946 -2.285392208547589 -2.508224399502738 -2.235320619216542 1.360259115359714 0.7438133206830114 1.348136929739905 0.7103366787325215 1.072091003311855 0.7458384694714858 -1.046144858699138 1.135555738755742 -1.061731116339241 1.102958580026134 -1.277093603441204 1.144550148730938 -5.749518098518074 0.09476023152207522 -5.718629545671879 0.1142170674418765 -5.682217795954116 0.0312755066327144 -5.751022146412669 -0.03209973361856562 -5.771643141950839 -0.002972906983269175 -5.683691598819914 0.03136777785330124 0.9360188500432026 -1.178793874431138 0.653294825374241 -1.174376258026063 0.6606496470022805 -1.140161651151889 1.082062536854703 1.002869853268189 1.362730555809482 0.9666582456482398 1.074562321257126 0.9686725780065689 -2.59692189371452 -2.750766795198185 -2.594551974413581 -2.71763225463656 -2.387561148125512 -2.768533614240544 1.572856767537705 3.192495854687331 1.848982780508274 3.157381599884053 1.565216039789851 3.160762650246198 -0.5326693457661397 3.509086516653532 -0.3173867435926214 3.467239795083357 -0.5522414566524753 3.479687267329237 -5.682524326379558 0.03125426468534857 -5.718934609416646 0.1141962239470702 -5.682505174354105 0.1210205370941643 -3.548374177992213 -4.162400898866058 -3.748405835024245 -4.096493015933778 -3.556813030258006 -4.131988087612529 -0.3707686409634659 2.876568066983024 -0.3947520919379999 2.849080661628393 -0.6056354571054812 2.88887340672698 -5.719528767814164 -0.05209044814793297 -5.750408737360305 -0.03262718972382478 -5.683080428078381 0.0308417911828481 4.186850590640463 -1.012832654639289 4.187181959525086 -1.047532031750883 3.910348885434423 -1.036753305367215 0.461361770471615 -2.805143628904236 0.4675799557079119 -2.837968092285334 0.1935975774084048 -2.79365197764752 4.303757616769216 0.7931495987261827 4.299276099205702 0.7586266097905626 4.025651445178969 0.768262892045919 4.421855965558771 2.675739898522337 4.412944362757875 2.644212477329875 4.148594793655522 2.653164426675216 1.836544132993338 2.530954269068594 1.815935736747094 2.501996573645861 1.552776893868374 2.534309332938826 -5.685517809967489 0.03186237080762425 -5.685483153435268 0.1216286403407125 -5.649064958060038 0.1147878556212348 -9.030374649917681 -1.574259264673119 -9.097831914049516 -1.418111789352376 -9.01501151996856 -1.547393323510752 -4.142805915330388 -4.551035293948126 -4.141710119170721 -4.520285381727755 -3.953061528514277 -4.592219093100567 0.5198919438131561 5.681147397240062 0.7287342649248896 5.635173346240597 0.4953520758126662 5.657199812528079 0.5761398701293136 4.938653610753637 0.5457425097262514 4.918725752989903 0.3425593751247935 4.959338371403813 -5.684229012748609 -0.05839674360224198 -5.720654875189503 -0.05155612160551183 -5.684201171964915 0.03137465884716622 3.918068169370771 -1.033112221647365 4.191633949144947 -1.043728341387933 3.915140147795424 -1.067705463291403 4.022424033973914 0.834096151218422 4.299316023905623 0.8242985867211519 4.021206310122105 0.7994363883648149 0.1353488577012257 -3.385379955262383 0.1426733292801519 -3.353600057806711 0.4030523637027622 -3.397715594431443 4.136299052245296 2.77213048139999 4.409934787789173 2.762690938571992 4.136676566775521 2.740093373416944 4.296967691609879 4.834050616884352 4.561262373190898 4.824146386953786 4.298462563975828 4.806187967889898 2.277332738046936 5.404742304676548 2.539551599375477 5.368003662027922 2.268979779556783 5.376952527814152 -5.684613092909862 0.03143214119235111 -5.648164570525363 0.1143588037099876 -5.61728512605813 0.09489386175592705 -2.391575643019016 7.075109157083599 -2.54491357482462 7.008856034877449 -2.579941045850445 7.019262065795718 -9.455522670358189 0.3936826177966736 -9.425502495920142 0.4103758079060491 -9.416687345118106 0.2521722878796683 -0.5205322597230766 -5.003410972697667 -0.7759609292150033 -4.944027806037942 -0.5324501778737423 -4.974112482582693 2.484791692757342 4.622491555313475 2.457577970450815 4.600404225150341 2.214192329424671 4.630909266079464 2.692538484590985 7.149239896415337 2.722672491989346 7.165807289230103 2.914162444762996 7.098685444118171 2.551196454191369 6.960176066700288 2.362825959432703 7.016021475754335 2.586232415527616 6.970580909416076 -5.684238825075605 -0.05839476020257792 -5.68421093372304 0.03137664223711616 -5.647815872610838 -0.05156786487336856 5.550740669980429 -0.7031542345021993 5.551983930813544 -0.7378102782263556 5.265588396921515 -0.7425259612204131 4.027137664664973 -2.936758650661695 4.03183283263711 -2.968844775350604 3.75843209905359 -2.955861400622662 5.501772203953999 0.9708295837415617 5.502276960522053 0.9361588591065313 5.218505161799626 0.9320007330043373 5.442184087406976 2.726196003257531 5.442034999802737 2.694157733504288 5.165768091873196 2.690395843907137 5.363477376190491 4.622498711143918 5.36292902625928 4.594614593321119 5.097895239508742 4.59096264954118 4.57655003485986 4.72524694323863 4.564128520102458 4.698414767445477 4.313732538969919 4.707449421615377 -5.683656828523747 0.03060907923229341 -5.616332364152895 0.09407309923417973 -5.595708929043085 0.06494501139983984 -0.9035559238162105 4.707243960448621 -0.9343616981914327 4.726781007681586 -0.7460488040164265 4.760672494056906 -2.915516686883468 7.11768381176926 -2.8850110492991 7.101547003124586 -3.064761712741705 7.045879354138607 -8.695254082798334 -2.544458748004903 -8.742514541794581 -2.354180337085872 -8.675320800472102 -2.520158893678196 -1.172230252181666 -5.586780348943091 -1.162635729891915 -5.559234261855116 -0.9302904315922256 -5.623888626311721 3.634837123849704 6.87366660110001 3.646177290930252 6.897641335596261 3.884287868500393 6.847617592972168 3.474955179495547 6.699536004914985 3.724861717189847 6.676347654042879 3.692958291840227 6.661975881050432 9.459460031363795 0.4198141392265857 9.489462694564887 0.4031058003115101 9.480505502558653 0.2449040595548825 8.68391044850973 -2.384958581035534 8.618607649062048 -2.552972255618855 8.608036055581655 -2.524715861107074 -5.64820700494384 -0.05159523905633234 -5.684600202790996 0.03134977399356694 -5.617314580384186 -0.03214368485288174 5.258386200642894 -0.6735411257000341 5.542147666558238 -0.6689630362439691 5.256968935414906 -0.7082159926309967 5.509574308368847 0.9353771847827545 5.226318222653589 0.8964989021024413 5.223167606128538 0.9311018180773975 3.777445589727428 -3.006914210559496 4.041562458501941 -3.019401516651943 3.772885548595255 -3.038752089955421 5.463511540082831 2.626612245948628 5.187086486360211 2.590855394880787 5.179737704047764 2.62254107133701 5.392865583126181 4.510938742625006 5.127218825968604 4.479741317634885 5.11660684268122 4.506822372824333 4.995032972003899 6.178128541047359 5.260016203490196 6.183598342080376 5.007685823580591 6.154941696776611 4.626587954251779 6.433440369273826 4.625137622580454 6.457953709657695 4.87517345875307 6.444055577750325 -5.683667357941976 0.03062793658874029 -5.595719437593925 0.06496383567925987 -5.588490646712567 0.03060971688826645 -0.4598590419423732 2.426713798117077 -0.4840621461310818 2.45408427740843 -0.3013709194714104 2.483465808915808 -1.410286566773439 5.335568849888774 -1.254312662185517 5.391711933229681 -1.228589745297435 5.368546301041597 -3.710722171227237 6.724208019360445 -3.492720817658558 6.761778418468669 -3.678822751719198 6.709835472709786 -9.320234484257593 1.345829623827133 -9.288518671217004 1.34019345550243 -9.364766633716425 1.175196317681586 3.632911908128812 -5.163997491092875 3.369616624503415 -5.143404123956382 3.625637957812055 -5.13601515249943 4.634626410958905 6.408092318440026 4.883222584391303 6.418551766529748 4.868346083145752 6.395805024591026 9.313410450463893 1.357480959732312 9.345124038670903 1.363126520220501 9.421554401144784 1.198182517139952 7.66094701079778 -3.968962028724445 7.600885510735214 -4.143263608647695 7.58895228403194 -4.115912139661436 3.379968156452582 -4.795022626127295 3.377814115820344 -4.825738046801772 3.200976333159742 -4.886913864563443 2.177731559297771 -4.256733539454348 1.987033527300132 -4.332666715782128 2.001011546405866 -4.303545603030939 -5.616905480062753 -0.03195764700595825 -5.684192595908041 0.03153483241750948 -5.596264906875802 -0.002836670226629316 8.135632481055744 0.6467846298274449 8.143736191055005 0.6126825793533866 7.817615547244568 0.5664056975362209 5.604026208031266 -2.447892704043489 5.605968045621975 -2.479895599273528 5.322239669658892 -2.485603461842086 7.910548891879452 1.62505911682075 7.917423041942325 1.590791612619515 7.595121947029427 1.549212695649579 7.648140393909088 2.740076383101864 7.654014175277737 2.708200818831211 7.344970491059966 2.669147191123872 7.250938896262698 4.066194749260766 7.25658957949578 4.038206995229646 6.968392189669932 3.99804925325602 6.330169403804309 5.567600197966375 6.33828197781904 5.543187600931597 6.078767289008784 5.488134954704552 5.234858943685333 6.219206489446688 5.234379154250187 6.194669514983062 4.982624410286215 6.190032337805749 -5.595738121885606 -0.002107843882471494 -5.683666853373951 0.03226200839890913 -5.588490142144011 0.03224379041315121 -0.2299324533387503 0.729168882831263 -0.2444582929433015 0.7620621536471894 -0.06595591735775286 0.790400861286243 -0.8125319772006873 3.017794677503951 -0.6542271561514512 3.074862410578888 -0.6339346682586394 3.045760783924645 -2.877774435399899 4.357863286120309 -2.9054821625964 4.379566241016444 -2.707005040896449 4.400150830114178 -3.924376744820628 6.828128521863997 -3.912227949632494 6.804395592346775 -4.107701896713467 6.770397319542972 -8.612090387140565 3.132318144885416 -8.415472723842832 3.25462297604561 -8.583522185231189 3.120103705864056 3.383826387321667 -5.232956294477321 3.390429891860372 -5.205556265624473 3.639833537315615 -5.225269220317825 7.988444796116241 3.950818076507967 8.186622618935166 3.852581069993151 7.974882037621727 3.928721227996451 8.321249129370793 3.414263150884053 8.524916106107225 3.325534200360769 8.496739733872749 3.312768203912115 0.1510206007186302 -5.711405996685896 0.1570653586876661 -5.739568266727456 -0.03463197449445815 -5.784963653351625 -1.255966484601831 -4.6331030134885 -1.452168057014411 -4.687120724204308 -1.433730305993322 -4.659992660156179 1.343610033826532 -2.897651272480716 1.34209162004531 -2.930821537567856 1.161915013148988 -2.968609549947419 0.6343652317238041 -2.304351929952293 0.6418617825255241 -2.271535750771943 0.8189598313239338 -2.2381868989369 7.788972773850396 0.6528216140289085 8.110519995554304 0.6978813329106642 7.792250235363141 0.6181240811246688 7.934673018451014 1.564016031454092 7.619334815426091 1.487941597001828 7.607723219364737 1.521513707960413 5.297544050171814 -2.364631221469998 5.573773910602987 -2.359445006498093 5.291853149384379 -2.396529747281462 7.721009017518952 2.551012032566287 7.417707771404205 2.480431187695184 7.398608439320649 2.509913182397862 7.378678430317099 3.806337644516013 7.095271469613857 3.740439878517878 7.07037146757814 3.763832987463858 6.220427645271243 5.351223384974789 6.503456244691065 5.409873293788387 6.249963775453848 5.334629748447567 -5.270613878297841 5.967673255825852 -5.275759361667078 6.179078711813066 -5.243504771459213 5.986660930279739 3.047084099028744 6.93091981268171 3.290809721156963 6.980753888153003 3.066212852775847 6.910657934091883 0.0643922459230406 -0.7210905818866035 0.06121120103332323 -0.6863590033394218 0.2379062217880146 -0.6570334173992765 -0.3636197155227572 0.9565918268743122 -0.199445161929524 1.017494559671196 -0.1864823122444165 0.9842165027092117 -2.822010068346362 2.090920108388004 -2.842674329173911 2.119859385685524 -2.662769188401859 2.135646876448718 -3.373182456892068 5.182275375164926 -3.203613940797268 5.22745458337398 -3.193571050743304 5.20001223956443 -4.873020602859887 6.447361349656247 -4.639301611593265 6.459652528907108 -4.858128783869598 6.424616012450758 -7.968610523694299 3.929467018207868 -7.955042831342867 3.907370432748207 -8.153204520808952 3.809113804253872 5.735731686947555 -4.306531837517649 5.459667223056172 -4.315665662678008 5.732965055269636 -4.278728774919856 3.946955635540269 6.787352992197897 3.95128838443904 6.763053017269658 3.716230936367765 6.730901383304845 -3.535693014794845 -5.251964487442733 -3.752587484793535 -5.267690810281319 -3.541751222657247 -5.224486546129128 -3.658791357557014 -5.077930099078674 -3.870291265138999 -5.119078097898604 -3.861981789478717 -5.091275294421588 -1.695311036086562 -3.412789638260236 -1.692728327425731 -3.44502301433671 -1.871599256619585 -3.466902521146339 -2.474335010279066 -2.440217038035144 -2.462407665813163 -2.408379080905731 -2.295299899327754 -2.392007176822233 0.3931295553270386 -0.9298718341588198 0.215151516310107 -0.9601832120140615 0.3881610346771586 -0.8952871545367428 8.83090808195661 1.713201502329808 8.637719336656275 1.670394886309324 8.82129416290114 1.74716277522841 8.399275799018552 -0.2210039491789647 8.40886644422185 -0.2523190646442885 8.089989920867051 -0.3078963674227854 8.701943789392425 2.053326377471591 8.510065975193324 2.014098746774247 8.688421921503766 2.086453025817476 8.466054264147338 2.627943768646528 8.483690014899814 2.597902795826956 8.298519861909124 2.560058353665381 8.035041820668011 3.496982364922802 8.056951315095304 3.471805670084362 7.883212921189479 3.431673652019552 6.809007439602639 5.021311928093619 6.836799964349999 5.002948715705256 6.683119219274349 4.947203955742285 -3.260660911194111 6.884266610850335 -3.228391922141995 6.897340545099304 -3.229921085116142 6.77327863886917 -2.695475850007717 7.161187854283521 -2.664815296173824 7.153756314305748 -2.739445982257249 6.970211505134532 -2.89218958151452 0.4623860832525094 -2.902584925186209 0.4962171725199305 -2.735085154802271 0.5098805270612874 -3.213671931998484 2.936118438852268 -3.054525052387994 2.981051777272747 -3.046127714352541 2.949440283961018 -4.596324846387193 4.734967347678038 -4.608856304640121 4.761768782547184 -4.391233370012669 4.768948202406476 -4.670534738712671 6.469354259775886 -4.671861372891332 6.444837997000658 -4.889221471490005 6.433779241743252 -3.547254578740973 6.90407687877277 -3.28923575130753 6.856286549768203 -3.553054643055344 6.879965491549306 5.663023208727047 -4.20765976635011 5.389330048648437 -4.242738453200204 5.398125280990574 -4.215263073891824 -5.278229585263992 -4.366305533453391 -5.516727459048768 -4.361257122533217 -5.287649137072221 -4.338958402008602 -5.454810054422477 -4.51563512383377 -5.453256057030798 -4.487773760575872 -5.225949682751572 -4.491991974974134 -3.991375186117491 -3.045963509967441 -4.19500860715473 -3.054122370011437 -3.995241946709423 -3.014068560931149 -4.2482546304477 -2.925821019825826 -4.242653025179007 -2.893825701827686 -4.048265382796182 -2.886460601861261 -2.491483608156819 -1.245228830975674 -2.658817033256372 -1.26010617416459 -2.494921775182919 -1.210636482554042 -2.838468018587474 -0.8928382005394318 -2.837154840158582 -0.8580486931832319 -2.674035559756206 -0.8444842978475415 8.617727186099021 1.681164327663043 8.610752423905051 1.715549223531451 8.8018125402254 1.757171900894283 8.536043491754262 1.97843696443914 8.520131262130361 2.010934105155868 8.714272989901735 2.050983812258195 8.006952711457062 -0.183947639801174 8.313349876694996 -0.1336197163075516 8.002438408217408 -0.2168446016713619 8.564453439037457 2.465756910542675 8.396381986438255 2.398698050210063 8.37264435659068 2.426321813870671 8.248327187524744 3.176968576735512 8.094213786232071 3.115059759357864 8.064406167390686 3.135525648921928 7.170002022230695 4.692479944407302 7.039293280764523 4.623730227025391 7.004515339233874 4.634662642814085 -5.480364303745048 5.782939931988822 -5.533619467239355 5.909304849834479 -5.464440254357934 5.809598000878715 -8.79249040936396 0.7829281715672438 -8.94006588098264 0.8266921709825369 -8.803805732043497 0.8127560611786968 -8.324479147978348 -1.138831000213761 -8.559984921300103 -1.085797531574062 -8.335059020080189 -1.109475333131905 -3.050694840966592 0.8044191868086035 -2.893355025099158 0.8514289446161969 -2.887452685790644 0.8170356909276371 -4.506374521597316 2.668429524590553 -4.515326390466558 2.699946707382018 -4.31156498745022 2.705787355114174 -4.435135774640633 4.841335461204134 -4.638866684136944 4.834869948878139 -4.433871442972754 4.869208280941132 -5.23258612624856 6.244795780432598 -4.980831637565121 6.240152371133828 -5.232107360543298 6.220260205619157 -3.304957886754006 6.930798896815192 -3.042113658866823 6.901161805012654 -3.061250670041988 6.880909366093234 8.871608282726093 -0.4862232848804858 8.885023154138871 -0.5125177972378905 8.59157698546651 -0.5981941395017913 -8.648698606186477 -1.204677381859101 -8.638240077235158 -1.177564936682886 -8.424578670472791 -1.232688230747936 -5.360122562265048 -2.506000423400825 -5.139242509498001 -2.476579842706702 -5.132773134567029 -2.508383650287633 -5.321690545371856 -2.64447189277278 -5.320812559055614 -2.612439665357678 -5.100943559160501 -2.614439619292221 -4.170363168307121 -1.055717432248732 -4.364824400472052 -1.061761956683289 -4.172710397766799 -1.0210962895362 -4.381232302345145 -1.014093437284773 -4.380274962914606 -0.9794036872903147 -4.189071014015481 -0.9735662655406596 -4.460382141882528 0.02970777035881239 -4.372445540844122 0.0640779423795097 -4.365194100076415 0.02972848475338779 8.903937635865709 1.58826874419468 8.716320660161918 1.537877073571023 8.897282944693579 1.620940077452542 -4.372422565099564 -0.005885461720779861 -4.460381700691149 0.02845100466999386 -4.365193658885561 0.0284717205621112 -4.39263004781457 -0.03440953332577173 -4.459960374557958 0.0290530312392545 -4.372000405281639 -0.005282113493438264 -4.423485553331526 -0.05386812311555181 -4.459945209472826 0.02906059301675808 -4.39261482727612 -0.03440193513979781 -4.459742214446557 -0.06069050670352177 -4.459774796619139 0.02907993685161893 -4.42331432621714 -0.05384855773769362 -4.4617782224255 -0.06036869844406919 -4.498200731610488 -0.05354097531077903 -4.461800327138134 0.02940174708602667 -4.497518157848608 -0.05383473939555101 -4.528406075737823 -0.0343791280378902 -4.461121000383781 0.02910886480316722 -8.962561667557381 0.7521034163714 -8.962223404290473 0.7826149539410692 -8.82688539192873 0.735001572547627 -4.450244072811719 0.7811894457271972 -4.454478296616852 0.8157344875429972 -4.25998964435588 0.8212174156970132 -4.346492488049074 2.781015738243396 -4.540986329433369 2.775647928898338 -4.346191014603219 2.813051616509951 -5.287903821982955 4.666486086019012 -5.28830999091003 4.694374815491331 -5.04974618255413 4.691938815248318 -5.213320699298114 6.203183542332868 -4.961995522428713 6.222685247830399 -4.974781695470389 6.199542430651975 2.790248284699574 7.12077861696805 2.821065395156717 7.127784662287296 2.895758311766352 6.905161380056465 8.703643680961973 -0.6857681323355882 8.415732719445984 -0.7846014422278069 8.424448948040244 -0.7548690767279352 -7.984223954740257 -0.5242400425061006 -7.769614876977303 -0.5227676346305572 -7.762888778350972 -0.5554303527733849 -7.980254135178361 -0.8303874715674979 -7.973605106139527 -0.7986066015443341 -7.765646189602546 -0.828816257106993 -5.29145251916307 -0.778641511633843 -5.073656718285485 -0.7455933924010927 -5.071578248459449 -0.7802432158811737 -5.278609421455686 -0.8309054962920214 -5.278093112686092 -0.796237527368122 -5.060846573179293 -0.7977232671706889 -4.273902826376768 0.8328644975095786 -4.465131719415578 0.827556762403614 -4.274857451847524 0.8675263321494672 -4.460299321942095 0.02956324701069983 -4.393012474292192 0.09305259727493652 -4.372362884887002 0.06393367866869167 8.682649388063927 1.449574090444589 8.684406860003334 1.482888932367785 8.866932536835083 1.527988676546785 -4.527626259026713 -0.03501501430149527 -4.548262664483186 -0.005897255585183629 -4.460344026620005 0.02847484303748904 -8.627378400833218 0.7182839025649992 -8.49015222166312 0.7225939591655773 -8.483660553379961 0.689649968259905 -5.282719558101339 2.74713054383379 -5.282802884947855 2.779167232862019 -5.055444263708266 2.777430364861157 -5.028509912437525 4.545913170466169 -5.255866476205934 4.547809397946735 -5.017651682042155 4.572928955756335 -6.33043148512515 5.565650525958854 -6.32232165199879 5.590064896786578 -6.062804363370425 5.535011025945936 5.203030191317635 6.180601572742147 5.225015908561341 5.950208726369962 5.19790709698616 5.969193486342004 8.760705685204632 2.246849101893711 8.768828859097201 2.217012986800187 8.601195514666992 2.144479784189916 -8.613371641486925 0.3856663313216517 -8.613636085671026 0.418754193932143 -8.476164807288635 0.3903420099349643 -7.669649440992814 0.370797313781492 -7.458958280863248 0.3813855562383646 -7.460421441063718 0.3466109705210539 -7.659978798590958 0.2433949552906475 -7.65388766586991 0.2777507902337484 -7.44929904838637 0.2541227773029685 -5.04323660385484 0.8742446272987433 -5.260484603369598 0.8755917906909654 -5.040394795149055 0.9088632413996086 -5.272297497100485 0.9269699262082453 -5.272069434888858 0.9616394308490045 -5.052193456491585 0.9601830616480456 -4.459972957087579 0.02929694111498971 -4.423571741378723 0.1122405237850691 -4.392687303188897 0.0927870743005024 -4.549323536238968 -0.004046641435744432 -4.55657951190216 0.03030491805240184 -4.461402801616853 0.03032213800506731 -5.035000859264302 2.621410000960689 -5.254877164871539 2.622835471023548 -5.027592162108842 2.653090192463134 -7.09070919251049 4.148100935280669 -7.084600047297619 4.176024381311477 -6.842857180446632 4.1448697614421 -6.410326072650934 5.45643678272326 -6.142327106375758 5.427879402861199 -6.172098680432305 5.411550248318663 2.784134457998289 7.014706338812497 2.817163269323979 7.002869811273473 2.812331700326085 6.860476905546576 8.893197122900897 1.617459917330398 8.719991987867189 1.529940219776617 8.727208287935637 1.560542413154153 -8.359434015351081 1.097015203865124 -8.217104073433312 1.1083416630811 -8.220443975466068 1.073618355095572 -8.34486625889067 0.955869012209253 -8.339499603550593 0.9904055627753068 -8.202561493724595 0.9673895776210707 -7.260406241916179 1.308754244623648 -7.465349018230898 1.330399713359927 -7.24959586265464 1.342494702027965 -7.475927176314872 1.457638003769571 -7.469730426762375 1.491984513193227 -7.260167924464421 1.469665505903167 -4.460570457190625 0.02955451479688858 -4.460598919078507 0.1193234108502796 -4.424166386291351 0.1124973219903019 -4.556579272021503 0.0294829913682542 -4.549341784026376 0.06383742248671029 -4.461402561736435 0.029500212134882 -7.328918198328824 2.760749862715633 -7.322754872744688 2.792594711171613 -7.10003582112016 2.768247808791357 -6.878680160919599 3.803484329922073 -7.101077956048729 3.829585371192688 -6.853222855664148 3.826504284722295 -6.839182910418581 5.027825199280951 -6.811386171103502 5.046182661432376 -6.657708769743121 4.990440542487015 5.457087838578618 5.930387946640559 5.419865410911841 5.777347634718608 5.403916980590292 5.804004741730131 -8.037972299862767 1.593119991335581 -8.175320457195674 1.614570723034023 -8.023530479656374 1.6260376576569 -8.190515196564247 1.757231245667825 -8.178068675362454 1.790620921476749 -8.038714533708697 1.768610308976451 -7.101479624950173 2.418650985727016 -7.311103574176353 2.440609994461795 -7.082218775957254 2.448062065003728 -4.460363105683712 0.02952158193390643 -4.496811221884622 0.1124499136576728 -4.460392639932004 0.119290477772927 -4.549506022156817 0.06360286560401821 -4.528886799177706 0.09273060786823638 -4.461567125481633 0.02926513919347144 -7.836686215026396 3.662041520968044 -7.813795479195937 3.686673002089047 -7.661068219381618 3.655701684686811 -6.906954385481576 4.750220969010126 -7.054783145916974 4.793468289904231 -6.871906295255305 4.760584641937258 -7.911818009785852 2.278192344210657 -8.051238930753467 2.299939675135196 -7.887607329289605 2.305556344450116 -8.073196141579601 2.66566353395958 -8.054648766368899 2.695357052149128 -7.909567745808319 2.671337703570303 -4.528576493109429 0.09288510001082233 -4.497699531881085 0.1123498706279721 -4.461255680420941 0.02942037901142184 -7.728634309529307 3.247181413039645 -7.873372214707917 3.272449333841338 -7.697725894321536 3.266615265858516</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"672\" source=\"#ID130\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID126\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID124\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID125\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"448\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID126\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID127\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 7 12 16 13 8 14 9 14 17 13 10 12 18 15 6 16 8 17 9 17 11 16 19 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 16 30 28 31 8 32 9 32 29 31 17 30 30 33 18 34 8 35 9 35 19 34 31 33 12 36 20 37 32 38 33 38 21 37 13 36 20 39 2 40 24 41 25 41 3 40 21 39 12 42 34 43 22 44 23 44 35 43 13 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 8 51 28 52 40 53 41 53 29 52 9 51 22 54 34 55 42 56 43 56 35 55 23 54 26 57 44 58 38 59 39 59 45 58 27 57 46 60 30 61 8 62 9 62 31 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 8 78 40 79 54 80 55 80 41 79 9 78 42 81 56 82 57 83 58 83 59 82 43 81 34 84 56 85 42 86 43 86 59 85 35 84 38 87 44 88 60 89 61 89 45 88 39 87 44 90 62 91 60 92 61 92 63 91 45 90 64 93 46 94 8 95 9 95 47 94 65 93 66 96 32 97 48 98 49 98 33 97 67 96 48 99 20 100 50 101 51 101 21 100 49 99 32 102 68 103 34 104 35 104 69 103 33 102 50 105 24 106 52 107 53 107 25 106 51 105 52 108 36 109 70 110 71 110 37 109 53 108 36 111 38 112 72 113 73 113 39 112 37 111 8 114 54 115 74 116 75 116 55 115 9 114 76 117 54 118 57 119 58 119 55 118 77 117 56 120 76 121 57 122 58 122 77 121 59 120 34 123 68 124 56 125 59 125 69 124 35 123 38 126 60 127 72 128 73 128 61 127 39 126 78 129 60 130 62 131 63 131 61 130 79 129 80 132 78 133 62 134 63 134 79 133 81 132 82 135 8 136 83 137 84 137 9 136 85 135 66 138 48 139 86 140 87 140 49 139 67 138 68 141 32 142 66 143 67 143 33 142 69 141 48 144 50 145 88 146 89 146 51 145 49 144 50 147 52 148 90 149 91 149 53 148 51 147 52 150 70 151 92 152 93 152 71 151 53 150 36 153 72 154 70 155 71 155 73 154 37 153 8 156 74 157 94 158 95 158 75 157 9 156 74 159 54 160 96 161 97 161 55 160 75 159 76 162 96 163 54 164 55 164 97 163 77 162 56 165 98 166 76 167 77 167 99 166 59 165 68 168 98 169 56 170 59 170 99 169 69 168 100 171 72 172 60 173 61 173 73 172 101 171 100 174 60 175 78 176 79 176 61 175 101 174 102 177 78 178 80 179 81 179 79 178 103 177 102 180 80 181 83 182 84 182 81 181 103 180 83 183 8 184 104 185 105 185 9 184 84 183 106 186 66 187 86 188 87 188 67 187 107 186 48 189 88 190 86 191 87 191 89 190 49 189 108 192 68 193 66 194 67 194 69 193 109 192 50 195 90 196 88 197 89 197 91 196 51 195 52 198 92 199 90 200 91 200 93 199 53 198 92 201 70 202 110 203 111 203 71 202 93 201 112 204 70 205 72 206 73 206 71 205 113 204 8 207 94 208 114 209 115 209 95 208 9 207 94 210 74 211 116 212 117 212 75 211 95 210 74 213 96 214 116 215 117 215 97 214 75 213 76 216 118 217 96 218 97 218 119 217 77 216 98 219 118 220 76 221 77 221 119 220 99 219 68 222 108 223 98 224 99 224 109 223 69 222 112 225 72 226 100 227 101 227 73 226 113 225 120 228 100 229 78 230 79 230 101 229 121 228 120 231 78 232 102 233 103 233 79 232 121 231 122 234 102 235 83 236 84 236 103 235 123 234 122 237 83 238 104 239 105 239 84 238 123 237 104 240 8 241 124 242 125 242 9 241 105 240 106 243 86 244 126 245 127 245 87 244 107 243 108 246 66 247 106 248 107 248 67 247 109 246 86 249 88 250 128 251 129 251 89 250 87 249 88 252 90 253 130 254 131 254 91 253 89 252 90 255 92 256 132 257 133 257 93 256 91 255 92 258 110 259 134 260 135 260 111 259 93 258 70 261 112 262 110 263 111 263 113 262 71 261 124 264 8 265 114 266 115 266 9 265 125 264 114 267 94 268 136 269 137 269 95 268 115 267 94 270 116 271 136 272 137 272 117 271 95 270 116 273 96 274 138 275 139 275 97 274 117 273 118 276 138 277 96 278 97 278 139 277 119 276 98 279 140 280 118 281 119 281 141 280 99 279 108 282 140 283 98 284 99 284 141 283 109 282 112 285 100 286 142 287 143 287 101 286 113 285 142 288 100 289 120 290 121 290 101 289 143 288 144 291 120 292 102 293 103 293 121 292 145 291 144 294 102 295 122 296 123 296 103 295 145 294 146 297 122 298 104 299 105 299 123 298 147 297 104 300 124 301 146 302 147 302 125 301 105 300 148 303 106 304 126 305 127 305 107 304 149 303 86 306 128 307 126 308 127 308 129 307 87 306 150 309 108 310 106 311 107 311 109 310 151 309 88 312 130 313 128 314 129 314 131 313 89 312 90 315 132 316 130 317 131 317 133 316 91 315 132 318 92 319 134 320 135 320 93 319 133 318 134 321 110 322 152 323 153 323 111 322 135 321 110 324 112 325 154 326 155 326 113 325 111 324 124 327 114 328 156 329 157 329 115 328 125 327 114 330 136 331 156 332 157 332 137 331 115 330 136 333 116 334 158 335 159 335 117 334 137 333 116 336 138 337 158 338 159 338 139 337 117 336 118 339 160 340 138 341 139 341 161 340 119 339 140 342 160 343 118 344 119 344 161 343 141 342 108 345 150 346 140 347 141 347 151 346 109 345 112 348 142 349 154 350 155 350 143 349 113 348 142 351 120 352 162 353 163 353 121 352 143 351 162 354 120 355 144 356 145 356 121 355 163 354 164 357 144 358 122 359 123 359 145 358 165 357 122 360 146 361 164 362 165 362 147 361 123 360 146 363 124 364 156 365 157 365 125 364 147 363 126 366 166 367 148 368 149 368 167 367 127 366 150 369 106 370 148 371 149 371 107 370 151 369 128 372 168 373 126 374 127 374 169 373 129 372 128 375 130 376 170 377 171 377 131 376 129 375 130 378 132 379 172 380 173 380 133 379 131 378 132 381 134 382 174 383 175 383 135 382 133 381 134 384 152 385 176 386 177 386 153 385 135 384 110 387 154 388 152 389 153 389 155 388 111 387 156 390 136 391 178 392 179 392 137 391 157 390 136 393 158 394 178 395 179 395 159 394 137 393 158 396 138 397 180 398 181 398 139 397 159 396 160 399 180 400 138 401 139 401 181 400 161 399 140 402 182 403 160 404 161 404 183 403 141 402 140 405 150 406 182 407 183 407 151 406 141 405 154 408 142 409 184 410 185 410 143 409 155 408 142 411 162 412 184 413 185 413 163 412 143 411 162 414 144 415 186 416 187 416 145 415 163 414 144 417 164 418 186 419 187 419 165 418 145 417 164 420 146 421 188 422 189 422 147 421 165 420 146 423 156 424 188 425 189 425 157 424 147 423 166 426 190 427 148 428 149 428 191 427 167 426 168 429 166 430 126 431 127 431 167 430 169 429 192 432 150 433 148 434 149 434 151 433 193 432 128 435 170 436 168 437 169 437 171 436 129 435 130 438 172 439 170 440 171 440 173 439 131 438 132 441 174 442 172 443 173 443 175 442 133 441 174 444 134 445 176 446 177 446 135 445 175 444 176 447 152 448 194 449 195 449 153 448 177 447 152 450 154 451 196 452 197 452 155 451 153 450 156 453 178 454 188 455 189 455 179 454 157 453 178 456 158 457 198 458 199 458 159 457 179 456 198 459 158 460 180 461 181 461 159 460 199 459 160 462 200 463 180 464 181 464 201 463 161 462 160 465 182 466 200 467 201 467 183 466 161 465 182 468 150 469 192 470 193 470 151 469 183 468 154 471 184 472 196 473 197 473 185 472 155 471 162 474 202 475 184 476 185 476 203 475 163 474 162 477 186 478 202 479 203 479 187 478 163 477 186 480 164 481 204 482 205 482 165 481 187 480 164 483 188 484 204 485 205 485 189 484 165 483 206 486 207 487 208 488 209 488 210 487 211 486 148 489 190 490 192 491 193 491 191 490 149 489 212 492 206 493 208 494 209 494 211 493 213 492 214 495 206 496 212 497 213 497 211 496 215 495 216 498 206 499 217 500 218 500 211 499 219 498 220 501 206 502 216 503 219 503 211 502 221 501 220 504 176 505 206 506 211 506 177 505 221 504 176 507 194 508 206 509 211 509 195 508 177 507 152 510 196 511 194 512 195 512 197 511 153 510 188 513 178 514 222 515 223 515 179 514 189 513 222 516 178 517 198 518 199 518 179 517 223 516 198 519 180 520 224 521 225 521 181 520 199 519 180 522 200 523 224 524 225 524 201 523 181 522 200 525 182 526 226 527 227 527 183 526 201 525 182 528 192 529 226 530 227 530 193 529 183 528 184 531 228 532 196 533 197 533 229 532 185 531 184 534 202 535 228 536 229 536 203 535 185 534 186 537 230 538 202 539 203 539 231 538 187 537 186 540 204 541 230 542 231 542 205 541 187 540 204 543 188 544 222 545 223 545 189 544 205 543 206 546 232 547 207 548 210 548 233 547 211 546 190 549 234 550 192 551 193 551 235 550 191 549 194 552 236 553 206 554 211 554 237 553 195 552 196 555 236 556 194 557 195 557 237 556 197 555 222 558 198 559 238 560 239 560 199 559 223 558 238 561 198 562 224 563 225 563 199 562 239 561 224 564 200 565 240 566 241 566 201 565 225 564 200 567 226 568 240 569 241 569 227 568 201 567 226 570 192 571 234 572 235 572 193 571 227 570 196 573 228 574 236 575 237 575 229 574 197 573 202 576 242 577 228 578 229 578 243 577 203 576 202 579 230 580 242 581 243 581 231 580 203 579 230 582 204 583 244 584 245 584 205 583 231 582 204 585 222 586 244 587 245 587 223 586 205 585 206 588 246 589 232 590 233 590 247 589 211 588 236 591 248 592 206 593 211 593 249 592 237 591 244 594 222 595 238 596 239 596 223 595 245 594 238 597 224 598 250 599 251 599 225 598 239 597 224 600 240 601 250 602 251 602 241 601 225 600 240 603 226 604 252 605 253 605 227 604 241 603 226 606 234 607 252 608 253 608 235 607 227 606 228 609 248 610 236 611 237 611 249 610 229 609 228 612 242 613 248 614 249 614 243 613 229 612 242 615 230 616 254 617 255 617 231 616 243 615 230 618 244 619 254 620 255 620 245 619 231 618 206 621 256 622 246 623 247 623 257 622 211 621 248 624 258 625 206 626 211 626 259 625 249 624 244 627 238 628 260 629 261 629 239 628 245 627 260 630 238 631 250 632 251 632 239 631 261 630 250 633 240 634 262 635 263 635 241 634 251 633 240 636 252 637 262 638 263 638 253 637 241 636 248 639 242 640 258 641 259 641 243 640 249 639 242 642 254 643 258 644 259 644 255 643 243 642 254 645 244 646 260 647 261 647 245 646 255 645 206 648 264 649 256 650 257 650 265 649 211 648 258 651 266 652 206 653 211 653 267 652 259 651 260 654 250 655 264 656 265 656 251 655 261 654 264 657 250 658 262 659 263 659 251 658 265 657 258 660 254 661 266 662 267 662 255 661 259 660 254 663 260 664 266 665 267 665 261 664 255 663 266 666 264 667 206 668 211 668 265 667 267 666 266 669 260 670 264 671 265 671 261 670 267 669</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID131\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID132\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID136\">-0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7668684720993042 -0.5068138837814331 0.2471411228179932 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7668684720993042 -0.5068138837814331 0.2471411228179932 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7764356732368469 -0.5068138837814331 0.2506216466426849 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7764356732368469 -0.5068138837814331 0.2506216466426849 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID136\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID133\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID137\">-0.3444744669286572 4.079759914057629e-006 -0.9387956868337078 -0.3444744635857354 4.23225667410034e-006 -0.9387956880596586 -0.2915421061266723 0.5326437071235343 -0.7945400440612941 0.2915421061266723 -0.5326437071235343 0.7945400440612941 0.3444744635857354 -4.23225667410034e-006 0.9387956880596586 0.3444744669286572 -4.079759914057629e-006 0.9387956868337078 0.942176612727427 -3.407978116043969e-007 -0.3351167414937004 0.9443365522823279 4.38158657145187e-008 -0.3289809660505061 0.9466284736151717 -0.006141568091176871 -0.322268233126369 -0.9466284736151717 0.006141568091176871 0.322268233126369 -0.9443365522823279 -4.38158657145187e-008 0.3289809660505061 -0.942176612727427 3.407978116043969e-007 0.3351167414937004 -0.2978240011526128 -0.502502490113407 -0.8116600962023906 0.2978240011526128 0.502502490113407 0.8116600962023906 -0.2879580904145521 0.5083478614726341 -0.8115803040371324 0.2879580904145521 -0.5083478614726341 0.8115803040371324 0.9453746644987464 0.01025145618060543 -0.3258245714645534 -0.9453746644987464 -0.01025145618060543 0.3258245714645534 0.946628563072084 0.00614092036701929 -0.3222679826993792 -0.946628563072084 -0.00614092036701929 0.3222679826993792 -0.8995939852382286 1.012405620589444e-011 0.4367272166046006 -0.8996043510403685 1.73211945004724e-006 0.4367058639247215 -0.8995978073140609 2.80740707445072e-010 0.4367193436015103 0.8995978073140609 -2.80740707445072e-010 -0.4367193436015103 0.8996043510403685 -1.73211945004724e-006 -0.4367058639247215 0.8995939852382286 -1.012405620589444e-011 -0.4367272166046006 -0.2841901110213427 -0.5268225958571753 -0.8010580086934929 0.2841901110213427 0.5268225958571753 0.8010580086934929 -0.8996043508901038 -1.73154997735763e-006 0.4367058642342657 0.8996043508901038 1.73154997735763e-006 -0.4367058642342657 -0.1575289664995284 0.8773623204698655 -0.4532328136105368 0.1575289664995284 -0.8773623204698655 0.4532328136105368 0.9439623282584713 0 -0.3300532121171466 -0.9439623282584713 -0 0.3300532121171466 0.9453746045541199 -0.0102512283230372 -0.32582475256188 -0.9453746045541199 0.0102512283230372 0.32582475256188 -0.8996005388610735 1.525096691196571e-005 0.436713716579036 0.8996005388610735 -1.525096691196571e-005 -0.436713716579036 -0.1652276555493636 -0.8656258515265084 -0.4726433190162198 0.1652276555493636 0.8656258515265084 0.4726433190162198 -0.8996005389579996 -1.525128351529844e-005 0.4367137163793637 0.8996005389579996 1.525128351529844e-005 -0.4367137163793637 -0.1610828583957122 0.8600686632090739 -0.4840807859198952 0.1610828583957122 -0.8600686632090739 0.4840807859198952 0.9460346225478317 0.004563988258263347 -0.3240334287569112 -0.9460346225478317 -0.004563988258263347 0.3240334287569112 5.715509850104025e-005 0.9999481864272838 -0.01017944959614463 -5.715509850104025e-005 -0.9999481864272838 0.01017944959614463 0.9439623343035419 0 -0.3300531948280579 -0.9439623343035419 -0 0.3300531948280579 -0.1493475103630262 -0.8821789182458041 -0.4466046096392519 0.1493475103630262 0.8821789182458041 0.4466046096392519 -0.8995833389788723 7.450330753906704e-018 0.436749145656432 0.8995833389788723 -7.450330753906704e-018 -0.436749145656432 -0.8995833389788784 7.451586262374615e-018 0.4367491456564195 0.8995833389788784 -7.451586262374615e-018 -0.4367491456564195 0.9415289990586808 0.01889261324753735 -0.3364018625041152 -0.9415289990586808 -0.01889261324753735 0.3364018625041152 -0.005477675187488539 0.9998653062196856 -0.01547140888073127 0.1704063428817634 0.8679535442270318 0.466495791373724 -0.1704063428817634 -0.8679535442270318 -0.466495791373724 0.005477675187488539 -0.9998653062196856 0.01547140888073127 0.946034644772299 -0.004563893317774229 -0.3240333652084827 -0.946034644772299 0.004563893317774229 0.3240333652084827 -0.004107270407317365 -0.9999227077040288 -0.01173494557484708 -0.003331995468411167 -0.9998028471998554 -0.01957458907005007 0.003331995468411167 0.9998028471998554 0.01957458907005007 0.004107270407317365 0.9999227077040288 0.01173494557484708 -0.8995854663270582 -1.122920923692321e-005 0.4367447637316722 0.8995854663270582 1.122920923692321e-005 -0.4367447637316722 -0.8995854663984171 1.122944233857225e-005 0.4367447635846849 0.8995854663984171 -1.122944233857225e-005 -0.4367447635846849 0.9398090404245463 3.199174541821317e-007 -0.341700113456509 -0.9398090404245463 -3.199174541821317e-007 0.341700113456509 0.3043241533703555 0.5032296839336767 0.8087933573437832 0.1678101137099761 0.8774056885098098 0.4494430147496695 -0.1678101137099761 -0.8774056885098098 -0.4494430147496695 -0.3043241533703555 -0.5032296839336767 -0.8087933573437832 0.9415290064490484 -0.01889209698707879 -0.3364018708130184 -0.9415290064490484 0.01889209698707879 0.3364018708130184 0.1730385331033649 -0.869260509229306 0.4630808062917779 0.1639094801891984 -0.8784978536901976 0.4487484856418159 -0.1639094801891984 0.8784978536901976 -0.4487484856418159 -0.1730385331033649 0.869260509229306 -0.4630808062917779 -0.8995945474336173 -2.706734065570341e-005 0.4367260577239058 0.8995945474336173 2.706734065570341e-005 -0.4367260577239058 -0.8995945473837314 2.70678889917239e-005 0.43672605782663 0.8995945473837314 -2.70678889917239e-005 -0.43672605782663 0.3048050421784275 0.5167260829904283 0.8000550239952098 0.3560251099978775 1.252025733392218e-005 0.9344763886231917 -0.3560251099978775 -1.252025733392218e-005 -0.9344763886231917 -0.3048050421784275 -0.5167260829904283 -0.8000550239952098 0.3081635667612611 -0.5007642538332132 0.8088698153620538 0.3019606338086662 -0.5141080316243367 0.8028154877985467 -0.3019606338086662 0.5141080316243367 -0.8028154877985467 -0.3081635667612611 0.5007642538332132 -0.8088698153620538 -0.8995957333211336 3.563160380080513e-010 0.4367236157919696 0.8995957333211336 -3.563160380080513e-010 -0.4367236157919696 0.3560250660667217 1.305518283296992e-005 0.934476405353152 -0.3560250660667217 -1.305518283296992e-005 -0.934476405353152</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID137\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID135\">\r\n\t\t\t\t\t<float_array count=\"284\" id=\"ID138\">8.835954899761456 2.887915538562082 8.770413372543002 2.816882901193681 8.733752412056139 2.836659965768741 -5.314774554701073 -0.2142585737425105 -5.313812817044318 -0.1445455542540637 -5.271796926739802 -0.2053242417841283 -0.9289416574248566 7.402765972782708 -0.8922781296017029 7.422541681094712 -0.863401992858196 7.3317322718534 8.799273287538805 2.907729616097122 8.835935518109764 2.887954017289928 8.73373342233003 2.836697960878422 -4.859119072430346 -0.09558662079202554 -4.902466791769723 -0.0353895062623624 -4.827996966860698 -0.06691013284173455 -4.816194187557621 -0.3007492821543235 -4.859173003559876 -0.2918149501666864 -4.817155898476206 -0.2310362624376061 5.067921635991438 -0.8939049498631768 5.110753786502324 -0.9543909004864848 5.067920551345233 -0.963747871921122 -0.8635100636443788 7.331723311569516 -0.8923874305780094 7.422532478723641 -0.826847922579062 7.351500619539451 5.068356041716164 -0.8938075335386285 5.068357126392557 -0.963650455596574 5.025525083324317 -0.9542934841619367 8.808957078028893 0.2235436860803819 8.789868649741981 0.2581306419745067 8.909327708334688 0.2618754518582341 -4.99395102262497 -0.2782860152253181 -5.068138837814331 -0.2463565045282997 -4.982474148273468 -0.2463565045282997 -5.274826460679561 -0.0428739002739665 -5.305948269550634 -0.01419741471706724 -5.231477552158321 0.01732320923153562 5.142585770829897 -0.9285234784541353 5.111230622193833 -0.9540887604745603 5.06839641844553 -0.8936037096588904 -5.677523129966245 5.173624890263669 -5.77687127388714 5.213571083110868 -5.753477191572667 5.243957175029614 5.067881250533171 -0.8937192322685431 5.025048238873127 -0.9542042830957674 4.993692792215798 -0.9286390010704587 8.917975008069023 0.1012065005595706 8.798526468680523 0.09725949789170468 8.89532322039822 0.1319388614386109 -5.068138837814331 -0.06678624390902521 -4.99395102262497 -0.03216016065111377 -4.982474148273468 -0.06678624390902521 8.190529426662092 0.9996672152945153 8.08979968190903 0.9727990861225769 8.074907594095551 1.00384362226358 -5.142327547073364 -0.2782860152253181 -5.153806209564209 -0.2463565045282997 -6.087457908013803 4.90321883025728 -6.105786276791672 4.868378548045608 -6.185120077832808 4.936362668216338 5.153806209564209 -0.8939784871425019 5.142327547073364 -0.9288991014895013 5.068138837814331 -0.8939784871425019 4.99395102262497 -0.9288991014895013 4.982474148273468 -0.8939784871425019 -4.994457814787069 -0.1757846438723037 -4.951862563447768 -0.1166043582780247 -4.920406936232481 -0.1409776365938563 7.291121875868974 2.969945835853808 7.19582799620366 2.941761479730215 7.18092159339962 2.975569337325649 8.195220010186123 1.088186045874139 8.079596744289182 1.092337823660826 8.174893249620968 1.120516685308637 -5.153806209564209 -0.06678624390902369 -5.142327547073364 -0.03216016065111223 -5.068138837814331 -0.06678624390902369 -7.137106535112019 3.060024521581374 -7.152088610920599 3.029006382100205 -7.232334484981479 3.088346443754763 -7.242612385084303 2.943389676118223 -7.343399522378902 2.970124280639696 -7.323149468945029 3.002485087503869 5.142327547073364 -0.859232200450826 5.153806209564209 -0.8941551102661389 5.068138837814331 -0.8941551102661389 4.99395102262497 -0.859232200450826 5.068138837814331 -0.8941551102661394 4.982474148273468 -0.8941551102661394 -4.832054457100766 -0.2738214624777934 -4.832959625552252 -0.2054526243414892 -4.78998926836575 -0.2144070109213413 5.598317121471339 5.263711799162454 5.578074224668392 5.294579086722642 5.683571160579093 5.298544798118836 7.290745375798657 2.966191282101151 7.180544980643493 2.971813416852751 7.270412587505954 2.99852205537594 -5.215406421209959 -0.1156881818831501 -5.183951092391164 -0.09131490251471087 -5.141354648074129 -0.1504951906648063 -8.083079912414807 1.092796300949026 -8.097990711575598 1.058989267437694 -8.172944713511527 1.119510781048612 -8.094798269883858 1.060530406342207 -8.190094705824908 1.088709413212966 -8.169765332536054 1.1210419082654 5.110783088494092 -0.8334782524305988 5.142138361268883 -0.8590419577254941 5.067949178412453 -0.8939642449202555 5.025495776989243 -0.8333931899840764 5.0683284949814 -0.8938791824822415 4.994140206192672 -0.8589568952825682 -5.299507771761791 -0.1908129161324697 -5.341574173907995 -0.131398464396818 -5.298602628478756 -0.1224440777899588 0.7746483127185083 7.390196991462098 0.7215207055259842 7.330470823398197 0.6845096625040692 7.349839445500478 5.693758894249335 5.227986497685446 5.588257337641396 5.224097600900424 5.670120622312615 5.258254352524729 -8.921870194509085 0.3337149091498159 -8.942408415393054 0.3029687755400236 -9.003367095494639 0.3684096216131407 -8.887500700048713 0.2305031088110326 -8.973102047573454 0.2648049438611277 -8.949729391207098 0.2951999908073414 5.067864535606823 -0.8241038597953553 5.110697440995674 -0.8334624164704209 5.06786315890317 -0.893948245928211 5.068413141266897 -0.8239802152392052 5.068414518008867 -0.89382460137206 5.025581427976076 -0.8333387719142708 -8.7257462002488 2.924610743178769 -8.741858115725387 3.003708982049239 -8.688733039413137 2.943978492221996 0.7383976461187897 7.40944198674381 0.7754057636934864 7.390068878114348 0.6852633045720957 7.349716597241113 -8.779349897822261 2.983342955922296 -8.742341417663866 3.002717266921394 -8.726214869462636 2.923620873445715</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"142\" source=\"#ID138\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID134\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID132\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID133\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID134\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID135\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 12 7 1 8 4 8 13 7 5 6 14 9 0 10 2 11 3 11 5 10 15 9 8 12 7 13 16 14 17 14 10 13 9 12 6 15 18 16 7 17 10 17 19 16 11 15 20 18 21 19 22 20 23 20 24 19 25 18 1 21 12 22 26 23 27 23 13 22 4 21 20 24 22 25 28 26 29 26 23 25 25 24 2 27 30 28 14 29 15 29 31 28 3 27 16 30 7 31 32 32 33 32 10 31 17 30 18 33 34 34 7 35 10 35 35 34 19 33 36 36 21 37 20 38 25 38 24 37 37 36 26 39 12 40 38 41 39 41 13 40 27 39 20 42 28 43 40 44 41 44 29 43 25 42 14 45 30 46 42 47 43 47 31 46 15 45 7 48 44 49 32 50 33 50 45 49 10 48 42 51 30 52 46 53 47 53 31 52 43 51 34 54 48 55 7 31 10 31 49 55 35 54 50 56 26 57 38 58 39 58 27 57 51 56 52 59 36 60 20 61 25 61 37 60 53 59 20 61 40 62 54 63 55 63 41 62 25 61 7 64 56 65 44 66 45 66 57 65 10 64 58 67 46 68 59 69 60 69 47 68 61 67 42 70 46 71 58 72 61 72 47 71 43 70 48 73 62 74 7 75 10 75 63 74 49 73 64 76 50 77 65 78 66 78 51 77 67 76 50 79 38 80 65 81 66 81 39 80 51 79 68 82 52 83 20 84 25 84 53 83 69 82 70 85 20 86 54 87 55 87 25 86 71 85 7 88 72 89 56 90 57 90 73 89 10 88 59 91 74 92 75 93 76 93 77 92 60 91 58 94 59 95 75 96 76 96 60 95 61 94 62 97 78 98 7 99 10 99 79 98 63 97 80 100 64 101 81 102 82 102 67 101 83 100 64 103 65 104 81 105 82 105 66 104 67 103 84 106 68 107 20 108 25 108 69 107 85 106 86 109 20 110 70 111 71 111 25 110 87 109 7 112 78 113 72 114 73 114 79 113 10 112 88 115 74 116 89 117 90 117 77 116 91 115 75 118 74 119 88 120 91 120 77 119 76 118 92 121 80 122 93 123 94 123 83 122 95 121 80 124 81 125 93 126 94 126 82 125 83 124 96 127 84 128 20 129 25 129 85 128 97 127 96 130 20 131 86 132 87 132 25 131 97 130 92 133 98 134 89 135 90 135 99 134 95 133 98 136 88 137 89 138 90 138 91 137 99 136 93 139 98 140 92 141 95 141 99 140 94 139</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID141\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID142\">\r\n\t\t\t\t\t<float_array count=\"1134\" id=\"ID147\">0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7976231575012207 0.6196871995925903 -0.1194272115826607 0.7976231575012207 0.6196871995925903 -0.1194272115826607 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7976231575012207 0.6200764179229736 0.01818196848034859 0.7976231575012207 0.6200764179229736 0.01818196848034859 0.7976231575012207 0.7611286044120789 -0.118915356695652 0.7976231575012207 0.7611286044120789 -0.118915356695652 0.7976231575012207 0.7639247179031372 0.02084463648498058 0.7976231575012207 0.7639247179031372 0.02084463648498058 0.798487663269043 0.4255831241607666 0.01916016265749931 0.798487663269043 0.4255831241607666 0.01916016265749931 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7976231575012207 0.7669853568077087 0.1513165235519409 0.7976231575012207 0.7669853568077087 0.1513165235519409 0.7976231575012207 0.6231358647346497 0.1513165235519409 0.7976231575012207 0.6231358647346497 0.1513165235519409 0.7976231575012207 0.872636616230011 -0.118915356695652 0.7976231575012207 0.872636616230011 -0.118915356695652 0.7976231575012207 0.8771676421165466 0.02084463648498058 0.7976231575012207 0.8771676421165466 0.02084463648498058 0.7976231575012207 0.8771676421165466 0.1513165235519409 0.7976231575012207 0.8771676421165466 0.1513165235519409 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7687971591949463 0.7642374038696289 0.234848827123642 0.7687971591949463 0.7642374038696289 0.234848827123642 0.7687971591949463 0.8763352632522583 0.234848827123642 0.7687971591949463 0.8763352632522583 0.234848827123642 0.7698178291320801 0.6222134828567505 0.2340750992298126 0.7698178291320801 0.6222134828567505 0.2340750992298126 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7687971591949463 1.068503022193909 0.234848827123642 0.7687971591949463 1.068503022193909 0.234848827123642 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 1.067611813545227 0.1501588523387909 0.7976231575012207 1.067611813545227 0.1501588523387909 0.7461556792259216 0.7716558575630188 0.29511559009552 0.7461556792259216 0.7716558575630188 0.29511559009552 0.7460806965827942 0.8783665895462036 0.29511559009552 0.7460806965827942 0.8783665895462036 0.29511559009552 0.7444993853569031 1.070043087005615 0.292364776134491 0.7444993853569031 1.070043087005615 0.292364776134491 0.7471287846565247 0.6197603940963745 0.2984656691551209 0.7471287846565247 0.6197603940963745 0.2984656691551209 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7687971591949463 1.22945249080658 0.2351814955472946 0.7687971591949463 1.22945249080658 0.2351814955472946 0.7424870729446411 1.229051828384399 0.2896876931190491 0.7424870729446411 1.229051828384399 0.2896876931190491 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7976231575012207 1.226557493209839 0.1501588523387909 0.7976231575012207 1.226557493209839 0.1501588523387909 0.6736209392547607 0.8758261203765869 0.358364999294281 0.6736209392547607 0.8758261203765869 0.358364999294281 0.6739693880081177 0.7716558575630188 0.3602698147296906 0.6739693880081177 0.7716558575630188 0.3602698147296906 0.6727290749549866 1.070043087005615 0.342584639787674 0.6727290749549866 1.070043087005615 0.342584639787674 0.6714252829551697 1.229051828384399 0.3374882340431213 0.6714252829551697 1.229051828384399 0.3374882340431213 0.674491286277771 0.6242926120758057 0.356035441160202 0.674491286277771 0.6242926120758057 0.356035441160202 0.7687971591949463 1.336279630661011 0.2374546378850937 0.7687971591949463 1.336279630661011 0.2374546378850937 0.7405544519424439 1.33383572101593 0.2877088189125061 0.7405544519424439 1.33383572101593 0.2877088189125061 0.6702165007591248 1.338770151138306 0.3299798667430878 0.6702165007591248 1.338770151138306 0.3299798667430878 0.688839852809906 0.4193950891494751 0.3588072657585144 0.688839852809906 0.4193950891494751 0.3588072657585144 0.6524490714073181 0.770412027835846 0.3768142461776733 0.6524490714073181 0.770412027835846 0.3768142461776733 0.6521070003509522 0.8788958787918091 0.36956787109375 0.6521070003509522 0.8788958787918091 0.36956787109375 0.6511565446853638 0.6258586049079895 0.3818635642528534 0.6511565446853638 0.6258586049079895 0.3818635642528534 0.6503376960754395 1.071277260780335 0.3560464382171631 0.6503376960754395 1.071277260780335 0.3560464382171631 0.7946488857269287 1.336279630661011 0.1839811652898789 0.7946488857269287 1.336279630661011 0.1839811652898789 0.6476884484291077 1.231573462486267 0.3451077938079834 0.6476884484291077 1.231573462486267 0.3451077938079834 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.7687971591949463 1.430078029632568 0.2376271635293961 0.7687971591949463 1.430078029632568 0.2376271635293961 0.7387611269950867 1.431114196777344 0.2848821878433228 0.7387611269950867 1.431114196777344 0.2848821878433228 0.668738603591919 1.432783603668213 0.3242798447608948 0.668738603591919 1.432783603668213 0.3242798447608948 0.6441174149513245 1.337924003601074 0.3337158262729645 0.6441174149513245 1.337924003601074 0.3337158262729645 0.6322492361068726 0.7708060741424561 0.3701403439044952 0.6322492361068726 0.7708060741424561 0.3701403439044952 0.6230122447013855 0.8783389925956726 0.3555973768234253 0.6230122447013855 0.8783389925956726 0.3555973768234253 0.6149778366088867 1.073966383934021 0.34251469373703 0.6149778366088867 1.073966383934021 0.34251469373703 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6076487898826599 1.231997966766357 0.325863778591156 0.6076487898826599 1.231997966766357 0.325863778591156 0.7952814698219299 1.430078029632568 0.1879792362451553 0.7952814698219299 1.430078029632568 0.1879792362451553 0.6022510528564453 1.338981509208679 0.3172231614589691 0.6022510528564453 1.338981509208679 0.3172231614589691 0.7687971591949463 1.527541875839233 0.2388848811388016 0.7687971591949463 1.527541875839233 0.2388848811388016 0.7354865670204163 1.524521231651306 0.2817167937755585 0.7354865670204163 1.524521231651306 0.2817167937755585 0.6677529215812683 1.524521231651306 0.3170008361339569 0.6677529215812683 1.524521231651306 0.3170008361339569 0.6405463814735413 1.43192446231842 0.3254314661026001 0.6405463814735413 1.43192446231842 0.3254314661026001 0.5962012410163879 1.422707080841065 0.303942084312439 0.5962012410163879 1.422707080841065 0.303942084312439 0.6069484949111939 0.8772760033607483 0.3508152365684509 0.6069484949111939 0.8772760033607483 0.3508152365684509 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.5943053960800171 1.076266169548035 0.3287610411643982 0.5943053960800171 1.076266169548035 0.3287610411643982 0.5860564708709717 1.234852313995361 0.3147788345813751 0.5860564708709717 1.234852313995361 0.3147788345813751 0.7969198822975159 1.529133081436157 0.1681521981954575 0.7969198822975159 1.529133081436157 0.1681521981954575 0.5783446431159973 1.340795755386353 0.2962920665740967 0.5783446431159973 1.340795755386353 0.2962920665740967 0.7629945874214172 1.629548072814941 0.2351733148097992 0.7629945874214172 1.629548072814941 0.2351733148097992 0.7300229668617249 1.627527952194214 0.2751796841621399 0.7300229668617249 1.627527952194214 0.2751796841621399 0.6662258505821228 1.630582451820374 0.3066250681877136 0.6662258505821228 1.630582451820374 0.3066250681877136 0.6369754076004028 1.523992538452148 0.3161111772060394 0.6369754076004028 1.523992538452148 0.3161111772060394 0.5925832986831665 1.534539937973023 0.2910608053207398 0.5925832986831665 1.534539937973023 0.2910608053207398 0.5729466080665588 1.432812809944153 0.2799475789070129 0.5729466080665588 1.432812809944153 0.2799475789070129 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5641165971755981 1.231308460235596 0.2951163649559021 0.5641165971755981 1.231308460235596 0.2951163649559021 0.7976231575012207 1.629548072814941 0.1532912850379944 0.7976231575012207 1.629548072814941 0.1532912850379944 0.5558203458786011 1.338033199310303 0.2760796546936035 0.5558203458786011 1.338033199310303 0.2760796546936035 0.7910681962966919 1.631798982620239 0.123851403594017 0.7910681962966919 1.631798982620239 0.123851403594017 0.7581207752227783 1.731385946273804 0.2290779650211334 0.7581207752227783 1.731385946273804 0.2290779650211334 0.7230180501937866 1.735270857810974 0.2675617933273315 0.7230180501937866 1.735270857810974 0.2675617933273315 0.6637653708457947 1.735270857810974 0.2955930531024933 0.6637653708457947 1.735270857810974 0.2955930531024933 0.6328089237213135 1.630808830261231 0.3067907989025116 0.6328089237213135 1.630808830261231 0.3067907989025116 0.5831363201141357 1.635170221328735 0.2697256505489349 0.5831363201141357 1.635170221328735 0.2697256505489349 0.5668072104454041 1.539629101753235 0.2627097368240356 0.5668072104454041 1.539629101753235 0.2627097368240356 0.5483854413032532 1.437644124031067 0.2575764954090118 0.5483854413032532 1.437644124031067 0.2575764954090118 0.7976231575012207 1.731245756149292 0.1508422940969467 0.7976231575012207 1.731245756149292 0.1508422940969467 0.7774713039398193 1.770382642745972 0.08878238499164581 0.7774713039398193 1.770382642745972 0.08878238499164581 0.7529417276382446 1.832421541213989 0.2219224870204926 0.7529417276382446 1.832421541213989 0.2219224870204926 0.7168887853622437 1.830480456352234 0.2584208846092224 0.7168887853622437 1.830480456352234 0.2584208846092224 0.6609818935394287 1.828536510467529 0.2839697897434235 0.6609818935394287 1.828536510467529 0.2839697897434235 0.6256666779518127 1.734643340110779 0.2933281362056732 0.6256666779518127 1.734643340110779 0.2933281362056732 0.5772106051445007 1.733703374862671 0.2523872554302216 0.5772106051445007 1.733703374862671 0.2523872554302216 0.5580869913101196 1.635875701904297 0.243652269244194 0.5580869913101196 1.635875701904297 0.243652269244194 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5391620993614197 1.536199450492859 0.2382145375013351 0.7868422269821167 1.832582235336304 0.1508422940969467 0.7868422269821167 1.832582235336304 0.1508422940969467 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7774713039398193 1.831223368644714 0.08806630969047546 0.7774713039398193 1.831223368644714 0.08806630969047546 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7089943289756775 1.906256556510925 0.2465686351060867 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6161291599273682 1.828536510467529 0.2750792801380158 0.6161291599273682 1.828536510467529 0.2750792801380158 0.569970428943634 1.82999062538147 0.2332505583763123 0.569970428943634 1.82999062538147 0.2332505583763123 0.5455059409141541 1.737459182739258 0.2144985496997833 0.5455059409141541 1.737459182739258 0.2144985496997833 0.5255792737007141 1.631603479385376 0.2142343670129776 0.5255792737007141 1.631603479385376 0.2142343670129776 0.7709382176399231 1.897327780723572 0.1462340503931046 0.7709382176399231 1.897327780723572 0.1462340503931046 0.758520245552063 1.848836660385132 0.05843546241521835 0.758520245552063 1.848836660385132 0.05843546241521835 0.7762541174888611 1.794281721115112 0.06106704473495483 0.7762541174888611 1.794281721115112 0.06106704473495483 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7930033206939697 1.725906729698181 0.03279396891593933 0.7930033206939697 1.725906729698181 0.03279396891593933 0.6045059561729431 1.912085294723511 0.2496029883623123 0.6045059561729431 1.912085294723511 0.2496029883623123 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5392844080924988 1.786986827850342 0.1989490985870361 0.5392844080924988 1.786986827850342 0.1989490985870361 0.5107629299163818 1.737711548805237 0.1886539459228516 0.5107629299163818 1.737711548805237 0.1886539459228516 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7667569518089294 1.816561579704285 0.03192228823900223 0.7667569518089294 1.816561579704285 0.03192228823900223 0.5368551015853882 1.831621766090393 0.1790818572044373 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5368551015853882 1.831621766090393 0.1790818572044373 0.7158539295196533 1.866551876068115 0.03108330257236958 0.7158539295196533 1.866551876068115 0.03108330257236958 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6598671674728394 1.913674473762512 0.02759447880089283 0.7762541174888611 1.840326070785523 -0.01964796893298626 0.7762541174888611 1.840326070785523 -0.01964796893298626 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4955552816390991 1.831614017486572 0.16129469871521 0.4955552816390991 1.831614017486572 0.16129469871521 0.7189935445785523 1.884884715080261 -0.0176821406930685 0.7189935445785523 1.884884715080261 -0.0176821406930685 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.6611202955245972 1.907618165016174 -0.01770789735019207 0.6611202955245972 1.907618165016174 -0.01770789735019207 0.7738800644874573 1.862605094909668 -0.08081070333719254 0.7738800644874573 1.862605094909668 -0.08081070333719254 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5996825695037842 1.907618165016174 0.02810462191700935 0.5996825695037842 1.907618165016174 0.02810462191700935 0.725027859210968 1.896474838256836 -0.07735307514667511 0.725027859210968 1.896474838256836 -0.07735307514667511 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.4961572587490082 1.913546085357666 0.03562422469258308 0.4961572587490082 1.913546085357666 0.03562422469258308 0.5986562371253967 1.918723344802856 -0.0167639497667551 0.5986562371253967 1.918723344802856 -0.0167639497667551 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6611202955245972 1.918723344802856 -0.0708390548825264 0.6611202955245972 1.918723344802856 -0.0708390548825264 0.7738800644874573 1.868109583854675 -0.1344994306564331 0.7738800644874573 1.868109583854675 -0.1344994306564331 0.518811047077179 1.913546085357666 0.007866731844842434 0.518811047077179 1.913546085357666 0.007866731844842434 0.7228279709815979 1.896474838256836 -0.1368977874517441 0.7228279709815979 1.896474838256836 -0.1368977874517441 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5986562371253967 1.918723344802856 -0.06880220025777817 0.5986562371253967 1.918723344802856 -0.06880220025777817 0.6611202955245972 1.923628926277161 -0.1305911093950272 0.6611202955245972 1.923628926277161 -0.1305911093950272 0.7654834985733032 1.864772439002991 -0.1993826925754547 0.7654834985733032 1.864772439002991 -0.1993826925754547 0.7074308395385742 1.889798879623413 -0.1963488012552261 0.7074308395385742 1.889798879623413 -0.1963488012552261 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5967269539833069 1.918723344802856 -0.1292334944009781 0.5967269539833069 1.918723344802856 -0.1292334944009781 0.6610304117202759 1.908910393714905 -0.1960339546203613 0.6610304117202759 1.908910393714905 -0.1960339546203613 0.7544460296630859 1.854760766029358 -0.2666657269001007 0.7544460296630859 1.854760766029358 -0.2666657269001007 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.6866759657859802 1.878122568130493 -0.2706334590911865 0.6866759657859802 1.878122568130493 -0.2706334590911865 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.5986562371253967 1.913129925727844 -0.1947008222341538 0.5986562371253967 1.913129925727844 -0.1947008222341538 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.6520506143569946 1.899369478225708 -0.2707102298736572 0.6520506143569946 1.899369478225708 -0.2707102298736572 0.7397289276123047 1.849756956100464 -0.2961414754390717 0.7397289276123047 1.849756956100464 -0.2961414754390717 0.674824595451355 1.873115420341492 -0.2989807724952698 0.674824595451355 1.873115420341492 -0.2989807724952698 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.5926526784896851 1.902366518974304 -0.2694905698299408 0.5926526784896851 1.902366518974304 -0.2694905698299408 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.642670750617981 1.887944936752319 -0.2983261346817017 0.642670750617981 1.887944936752319 -0.2983261346817017 0.7001771926879883 1.811398148536682 -0.3453316688537598 0.7001771926879883 1.811398148536682 -0.3453316688537598 0.5936500430107117 1.890616059303284 -0.2966291010379791 0.5936500430107117 1.890616059303284 -0.2966291010379791 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.6569415926933289 1.831865787506104 -0.3451592326164246 0.6569415926933289 1.831865787506104 -0.3451592326164246 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.6276070475578308 1.831865787506104 -0.3451592326164246 0.6276070475578308 1.831865787506104 -0.3451592326164246 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.424839973449707 1.892464518547058 -0.2987582087516785 0.424839973449707 1.892464518547058 -0.2987582087516785 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.5814452171325684 1.831865787506104 -0.3430174887180328 0.5814452171325684 1.831865787506104 -0.3430174887180328 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"378\" source=\"#ID147\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID143\">\r\n\t\t\t\t\t<float_array count=\"1134\" id=\"ID148\">0.9900552956686062 -0.002352708047164541 -0.1406590782118 0.997169978879332 0.0005626500067133648 -0.07517789998904474 0.9976197425330905 -0.001196871580965296 -0.0689450274249644 -0.9976197425330905 0.001196871580965296 0.0689450274249644 -0.997169978879332 -0.0005626500067133648 0.07517789998904474 -0.9900552956686062 0.002352708047164541 0.1406590782118 0.9907502151915427 -0.003272368041776708 -0.1356587730495558 -0.9907502151915427 0.003272368041776708 0.1356587730495558 0.9999987715484215 0.001298132680655167 -0.0008784948441743609 -0.9999987715484215 -0.001298132680655167 0.0008784948441743609 0.9977882280381223 -0.0004295143788617648 -0.06647155411107901 -0.9977882280381223 0.0004295143788617648 0.06647155411107901 1 0 0 -1 -0 -0 0.9996866781643978 -0.01287970789148096 0.02146295937799879 -0.9996866781643978 0.01287970789148096 -0.02146295937799879 0.9916288815365839 -0.004292839331706357 -0.1290493426289959 -0.9916288815365839 0.004292839331706357 0.1290493426289959 0.9862294564733497 -1.023521613759804e-018 0.1653827656809535 -0.9862294564733497 1.023521613759804e-018 -0.1653827656809535 0.9855234036645701 -0.0150094328749683 0.1688737331682242 -0.9855234036645701 0.0150094328749683 -0.1688737331682242 0.9984170139917291 -0.005688295605190683 -0.05595631747128758 -0.9984170139917291 0.005688295605190683 0.05595631747128758 1 0 0 -1 -0 -0 0.9862261923033275 0.0001385673981601088 0.1654021717328899 -0.9862261923033275 -0.0001385673981601088 -0.1654021717328899 0.9857490260995654 -0.03215838325426263 0.1651202468815681 -0.9857490260995654 0.03215838325426263 -0.1651202468815681 0.993558929430381 -0.01612267807413861 -0.1121637775793633 -0.993558929430381 0.01612267807413861 0.1121637775793633 0.9410463363002816 0.001842553401757326 0.3382726680250405 -0.9410463363002816 -0.001842553401757326 -0.3382726680250405 0.9399697361499318 0.002496753562366073 0.341248679622173 -0.9399697361499318 -0.002496753562366073 -0.341248679622173 0.9472756568605438 -0.00553628734223512 0.320371939223599 -0.9472756568605438 0.00553628734223512 -0.320371939223599 1 0 0 -1 -0 -0 0.9986371166879656 -0.003641535286201516 -0.05206388761805772 -0.9986371166879656 0.003641535286201516 0.05206388761805772 1 0 0 -1 -0 -0 0.9334242866530585 0.003566205222945827 0.358756718775463 -0.9334242866530585 -0.003566205222945827 -0.358756718775463 0.9613972024972641 -0.002189232112902448 0.2751556401260756 -0.9613972024972641 0.002189232112902448 -0.2751556401260756 0.9999088897289408 2.49493391549871e-019 -0.01349860144745444 -0.9999088897289408 -2.49493391549871e-019 0.01349860144745444 0.9866434192671509 0.0003843271064437876 0.1628944919556831 -0.9866434192671509 -0.0003843271064437876 -0.1628944919556831 0.8268208571787928 0.009421202414397688 0.5623864428301889 -0.8268208571787928 -0.009421202414397688 -0.5623864428301889 0.8167992916288501 0.01709412357318276 0.5766686293998258 -0.8167992916288501 -0.01709412357318276 -0.5766686293998258 0.7779744640104565 0.01700624928527182 0.6280656978635992 -0.7779744640104565 -0.01700624928527182 -0.6280656978635992 0.8163231400853481 -8.704477407084645e-005 0.5775954669008445 -0.8163231400853481 8.704477407084645e-005 -0.5775954669008445 1 0 0 -1 -0 -0 0.9237450876980882 0.001311220861844423 0.383005605250763 -0.9237450876980882 -0.001311220861844423 -0.383005605250763 0.7541917009803472 0.02513245543842398 0.6561731767270028 -0.7541917009803472 -0.02513245543842398 -0.6561731767270028 0.8419595543963964 0.02106488778245558 0.5391292788036411 -0.8419595543963964 -0.02106488778245558 -0.5391292788036411 0.9579580307156499 -0.0150347799141805 0.2865141650605185 -0.9579580307156499 0.0150347799141805 -0.2865141650605185 0.5722866440581146 0.04950480248095534 0.8185580441019579 -0.5722866440581146 -0.04950480248095534 -0.8185580441019579 0.6404287661317567 0.01381415417394053 0.7678933289561866 -0.6404287661317567 -0.01381415417394053 -0.7678933289561866 0.5511062456143986 0.03972205931053413 0.8334890905398419 -0.5511062456143986 -0.03972205931053413 -0.8334890905398419 0.4447699353356177 0.05578200889076308 0.8939060756621251 -0.4447699353356177 -0.05578200889076308 -0.8939060756621251 0.6923543389926927 0.01264347006466835 0.7214468878183032 -0.6923543389926927 -0.01264347006466835 -0.7214468878183032 0.890213441644624 -0.01369295778836025 0.4553378209881536 -0.890213441644624 0.01369295778836025 -0.4553378209881536 0.7186762426794346 0.02684668868725016 0.6948263909169687 -0.7186762426794346 -0.02684668868725016 -0.6948263909169687 0.3458403087416392 0.06829456209539139 0.9358046450182251 -0.3458403087416392 -0.06829456209539139 -0.9358046450182251 0.75368530727801 0.06163089589583062 0.6543394304673444 -0.75368530727801 -0.06163089589583062 -0.6543394304673444 0.157066604294048 0.04904476334098479 0.9863694505632075 -0.157066604294048 -0.04904476334098479 -0.9863694505632075 0.02443806644282753 0.06659572866917021 0.9974807215337839 -0.02443806644282753 -0.06659572866917021 -0.9974807215337839 0.2630441307697239 0.04030051035594109 0.9639417275606712 -0.2630441307697239 -0.04030051035594109 -0.9639417275606712 0.08335440127704034 0.06610197704781352 0.9943251844432567 -0.08335440127704034 -0.06610197704781352 -0.9943251844432567 0.8957315970327513 -0.06402836860577338 0.4399605369698968 -0.8957315970327513 0.06402836860577338 -0.4399605369698968 -0.06492613846004917 0.06947997884781025 0.9954682963731061 0.06492613846004917 -0.06947997884781025 -0.9954682963731061 0.7783133842626236 0.06431532705604588 0.6245733060124612 -0.7783133842626236 -0.06431532705604588 -0.6245733060124612 0.8617517623012343 0.001114692778924215 0.5073289442075288 -0.8617517623012343 -0.001114692778924215 -0.5073289442075288 0.6891552101990586 0.03963287346438789 0.7235290813757573 -0.6891552101990586 -0.03963287346438789 -0.7235290813757573 0.278777090103203 0.07301736481532682 0.9575760014061632 -0.278777090103203 -0.07301736481532682 -0.9575760014061632 -0.1276463389581969 0.09421586330362655 0.9873346865437888 0.1276463389581969 -0.09421586330362655 -0.9873346865437888 -0.2920792382219204 0.0721269134737136 0.9536705022975484 0.2920792382219204 -0.0721269134737136 -0.9536705022975484 -0.3571230440059741 0.06599960238081828 0.9317226969036875 0.3571230440059741 -0.06599960238081828 -0.9317226969036875 -0.4506036016147756 0.06628064034319742 0.8902602265222728 0.4506036016147756 -0.06628064034319742 -0.8902602265222728 -0.2698068405574629 0.03894401619505566 0.9621266197289207 -0.2693199515713319 0.03468941093848316 0.9624257937391103 0.2693199515713319 -0.03468941093848316 -0.9624257937391103 0.2698068405574629 -0.03894401619505566 -0.9621266197289207 -0.4411119244105691 0.05372970429490571 0.8958422790978254 0.4411119244105691 -0.05372970429490571 -0.8958422790978254 0.8931455316935644 -0.001744440434512021 0.4497644007070713 -0.8931455316935644 0.001744440434512021 -0.4497644007070713 -0.5089425449950996 0.08994888652575087 0.8560880116592503 0.5089425449950996 -0.08994888652575087 -0.8560880116592503 0.8603328292912356 0.04401005563554806 0.5078292408346468 -0.8603328292912356 -0.04401005563554806 -0.5078292408346468 0.6433431650210305 0.05695677214154844 0.7634562843594509 -0.6433431650210305 -0.05695677214154844 -0.7634562843594509 0.2291499131194153 0.08885161135973935 0.9693274516261995 -0.2291499131194153 -0.08885161135973935 -0.9693274516261995 -0.2166937839321052 0.08239336651058744 0.9727564634379143 0.2166937839321052 -0.08239336651058744 -0.9727564634379143 -0.5746463005236908 0.07940848382555334 0.8145403133000618 0.5746463005236908 -0.07940848382555334 -0.8145403133000618 -0.2550544664270329 0.09062866748743163 0.962670070057792 0.2550544664270329 -0.09062866748743163 -0.962670070057792 -0.268208641338077 0.08039316393004066 0.9600005541169757 0.268208641338077 -0.08039316393004066 -0.9600005541169757 -0.5040571034588977 0.06903428738336181 0.8609069076375783 0.5040571034588977 -0.06903428738336181 -0.8609069076375783 -0.5691109628437332 0.06388130761124124 0.8197755122647643 0.5691109628437332 -0.06388130761124124 -0.8197755122647643 0.9418618395814504 0.05197652566664391 0.3319558945400289 -0.9418618395814504 -0.05197652566664391 -0.3319558945400289 -0.6651250306610507 0.08194918217676402 0.7422216819311438 0.6651250306610507 -0.08194918217676402 -0.7422216819311438 0.8512879043211205 0.07117862593348728 0.5198485425263549 -0.8512879043211205 -0.07117862593348728 -0.5198485425263549 0.619245477230669 0.08797079891542996 0.7802539185851883 -0.619245477230669 -0.08797079891542996 -0.7802539185851883 0.2313078287806651 0.09844277603067 0.9678872393993784 -0.2313078287806651 -0.09844277603067 -0.9678872393993784 -0.2676693105422716 0.09407514478910847 0.9589071943242126 0.2676693105422716 -0.09407514478910847 -0.9589071943242126 -0.6004211577830194 0.09502269862054737 0.7940183373407487 0.6004211577830194 -0.09502269862054737 -0.7940183373407487 -0.6841191930593298 0.07792027847086325 0.7251960837531285 0.6841191930593298 -0.07792027847086325 -0.7251960837531285 -0.2193006907917859 0.09994973342337506 0.9705242180424153 0.2193006907917859 -0.09994973342337506 -0.9705242180424153 -0.895673926454469 0.000862505034626854 0.4447105503073879 0.895673926454469 -0.000862505034626854 -0.4447105503073879 -0.9606480777099047 0.006747156029087368 0.277686417884966 0.9606480777099047 -0.006747156029087368 -0.277686417884966 0.9963145726077562 0.01035982162450304 0.08514661769754983 -0.9963145726077562 -0.01035982162450304 -0.08514661769754983 -0.6701351984268618 0.08537696750274057 0.7373124095316902 0.6701351984268618 -0.08537696750274057 -0.7373124095316902 0.983777930475698 0.007551106240307528 -0.1792315940438523 -0.983777930475698 -0.007551106240307528 0.1792315940438523 0.8252223957521297 0.07354185068204758 0.5599996372743245 -0.8252223957521297 -0.07354185068204758 -0.5599996372743245 0.5945268041904479 0.1033653995277004 0.7974042094694331 -0.5945268041904479 -0.1033653995277004 -0.7974042094694331 0.1932005350996065 0.1192242477747035 0.9738886650843524 -0.1932005350996065 -0.1192242477747035 -0.9738886650843524 -0.3142248385532922 0.08615462943965131 0.9454311876928294 0.3142248385532922 -0.08615462943965131 -0.9454311876928294 -0.6518420645040525 0.08411285033915791 0.7536756274093763 0.6518420645040525 -0.08411285033915791 -0.7536756274093763 -0.699313003458432 0.07803047773575904 0.7105438534941222 0.699313003458432 -0.07803047773575904 -0.7105438534941222 -0.6622814848387056 0.08497993225021311 0.7444203422493159 0.6622814848387056 -0.08497993225021311 -0.7444203422493159 0.9949544543089252 0.04854030718942921 0.08780360145680287 -0.9949544543089252 -0.04854030718942921 -0.08780360145680287 0.9901379325004186 0.1122611193768768 -0.08381119078051108 -0.9901379325004186 -0.1122611193768768 0.08381119078051108 0.8032877158295905 0.1034007057999469 0.5865467923681383 -0.8032877158295905 -0.1034007057999469 -0.5865467923681383 0.5551052080391238 0.1581470010154239 0.8166074540914189 -0.5551052080391238 -0.1581470010154239 -0.8166074540914189 0.1213402806397459 0.2048808402222884 0.971236519908553 -0.1213402806397459 -0.2048808402222884 -0.971236519908553 -0.3781550379003967 0.1064664390502687 0.9195997306798786 0.3781550379003967 -0.1064664390502687 -0.9195997306798786 -0.6975916079972683 0.08525585232582549 0.711405220739898 0.6975916079972683 -0.08525585232582549 -0.711405220739898 -0.7002539934369103 0.09092200289402992 0.7080801748851593 0.7002539934369103 -0.09092200289402992 -0.7080801748851593 -0.6677750823147534 0.08506158820664575 0.7394869611097193 0.6677750823147534 -0.08506158820664575 -0.7394869611097193 0.9833538533676359 0.1393665663939898 0.1165854160629505 -0.9833538533676359 -0.1393665663939898 -0.1165854160629505 0.9757539082018429 0.141577994889696 0.1669130971249493 -0.9757539082018429 -0.141577994889696 -0.1669130971249493 0.935136779511798 0.1146530242704431 -0.3352221466877514 -0.935136779511798 -0.1146530242704431 0.3352221466877514 0.9788947884377451 0.1472326476577278 0.1417305211770475 -0.9788947884377451 -0.1472326476577278 -0.1417305211770475 0.7476957669442501 0.4263151891498764 0.509123167410161 -0.7476957669442501 -0.4263151891498764 -0.509123167410161 0.4351652976529689 0.4515882744243441 0.7789089767880753 -0.4351652976529689 -0.4515882744243441 -0.7789089767880753 0.05563331340804202 0.5289120472471837 0.8468512152179009 -0.05563331340804202 -0.5289120472471837 -0.8468512152179009 -0.4461974740070724 0.1722475743624215 0.8782019057801969 0.4461974740070724 -0.1722475743624215 -0.8782019057801969 -0.7419998352307358 0.139150102798354 0.655799888234794 0.7419998352307358 -0.139150102798354 -0.655799888234794 -0.6897695245368228 0.1108441646533761 0.7154939372087931 0.6897695245368228 -0.1108441646533761 -0.7154939372087931 -0.6647898545472454 0.1067289742039228 0.7393668746680708 0.6647898545472454 -0.1067289742039228 -0.7393668746680708 0.8950740664183305 0.4457805184040029 0.01105192457504562 -0.8950740664183305 -0.4457805184040029 -0.01105192457504562 0.8045230737725263 0.3681127863915901 -0.466085400181797 -0.8045230737725263 -0.3681127863915901 0.466085400181797 0.9598099745488073 0.2719552409484544 0.06931925906474978 -0.9598099745488073 -0.2719552409484544 -0.06931925906474978 0.7666598717558816 0.5088704772459741 -0.3915143400013715 -0.7666598717558816 -0.5088704772459741 0.3915143400013715 0.9651938739578729 0.2074084999712526 0.1593188620781253 -0.9651938739578729 -0.2074084999712526 -0.1593188620781253 -0.4503169078687535 0.4919917453143936 0.7450897966218713 0.4503169078687535 -0.4919917453143936 -0.7450897966218713 -0.6459866396208748 0.5996255363186426 0.4723880583015519 0.6459866396208748 -0.5996255363186426 -0.4723880583015519 -0.7457846745836115 0.1824622396899441 0.6407126893105413 0.7457846745836115 -0.1824622396899441 -0.6407126893105413 -0.576804386229287 0.1625954175684261 0.8005369636765092 0.576804386229287 -0.1625954175684261 -0.8005369636765092 0.5180576795043453 0.5370752177731986 -0.665707481676783 -0.5180576795043453 -0.5370752177731986 0.665707481676783 0.9061217896403585 0.4189367839184288 0.05861120557570541 -0.9061217896403585 -0.4189367839184288 -0.05861120557570541 -0.672019975146843 0.2478991248329869 0.697807406746787 -0.9156362960112678 0.1723120788930026 0.3632061685796893 0.9156362960112678 -0.1723120788930026 -0.3632061685796893 0.672019975146843 -0.2478991248329869 -0.697807406746787 0.6923885252186227 0.6725875489072316 -0.2611974716580217 -0.6923885252186227 -0.6725875489072316 0.2611974716580217 0.9606405710798401 0.2313040970548623 0.1538444275267501 -0.9606405710798401 -0.2313040970548623 -0.1538444275267501 -0.6184247596515268 0.7458918534232262 0.2473785755614576 0.6184247596515268 -0.7458918534232262 -0.2473785755614576 0.1488281615604248 0.9155662927981008 -0.3736154999708747 -0.1488281615604248 -0.9155662927981008 0.3736154999708747 0.8374542785258724 0.4900457070242865 0.2419205167111248 -0.8374542785258724 -0.4900457070242865 -0.2419205167111248 -0.3069818865505185 0.7901164331145026 0.530545137997042 0.3069818865505185 -0.7901164331145026 -0.530545137997042 -0.3746978090516431 0.3208310715897286 0.8698672171052803 0.3746978090516431 -0.3208310715897286 -0.8698672171052803 0.5180267390122302 0.8233124476276885 0.2319588568036569 -0.5180267390122302 -0.8233124476276885 -0.2319588568036569 0.9752261389276453 0.2198272850358889 0.02469701816064608 -0.9752261389276453 -0.2198272850358889 -0.02469701816064608 -0.02013490161526211 0.9948608097377648 0.0992298089530694 0.02013490161526211 -0.9948608097377648 -0.0992298089530694 0.2346198895705985 0.9689521708126289 0.07800767972048685 -0.2346198895705985 -0.9689521708126289 -0.07800767972048685 0.8194747684724745 0.5635680518478359 0.1041736760099196 -0.8194747684724745 -0.5635680518478359 -0.1041736760099196 -0.2427140865183295 0.9516308537911111 -0.1883841562296938 0.2427140865183295 -0.9516308537911111 0.1883841562296938 0.02236502878686735 0.9851014286376449 0.1705138727008254 -0.02236502878686735 -0.9851014286376449 -0.1705138727008254 0.4496571382552055 0.8867051493015056 0.1075287692588997 -0.4496571382552055 -0.8867051493015056 -0.1075287692588997 0.9776491467217603 0.2082435558818598 -0.02892693118691978 -0.9776491467217603 -0.2082435558818598 0.02892693118691978 0.05451745702686445 0.9941628502168685 0.09310249259819294 -0.05451745702686445 -0.9941628502168685 -0.09310249259819294 0.0438127723127856 0.9905954583831333 0.129618975512762 -0.0438127723127856 -0.9905954583831333 -0.129618975512762 -0.1956981726428444 0.9610455400549627 -0.1951760619664117 0.1956981726428444 -0.9610455400549627 0.1951760619664117 0.2045468584743975 0.9728343517018995 0.1084154363409551 -0.2045468584743975 -0.9728343517018995 -0.1084154363409551 0.8061690114442743 0.5903126513353483 -0.04028025149366901 -0.8061690114442743 -0.5903126513353483 0.04028025149366901 0.01476157945201542 0.9980629163706004 0.06043600531052539 -0.01476157945201542 -0.9980629163706004 -0.06043600531052539 0.4193902735346606 0.9034891719639234 -0.0884257576075347 -0.4193902735346606 -0.9034891719639234 0.0884257576075347 0.9604116108431715 0.2414805364948089 -0.1389125201405691 -0.9604116108431715 -0.2414805364948089 0.1389125201405691 -0.06838177615090631 0.9976586436301028 -0.001078647574916805 0.06838177615090631 -0.9976586436301028 0.001078647574916805 -0.04222907014205805 0.9990297916010928 0.01249724483293236 0.04222907014205805 -0.9990297916010928 -0.01249724483293236 0.170351442830629 0.9826231251431248 -0.0737033232594172 -0.170351442830629 -0.9826231251431248 0.0737033232594172 0.74333074519562 0.6421569410365217 -0.1873335696706328 -0.74333074519562 -0.6421569410365217 0.1873335696706328 0.3686962453234184 0.9044387136279826 -0.2146012394544205 -0.3686962453234184 -0.9044387136279826 0.2146012394544205 0.8917877003818316 0.2447790213962437 -0.3805232294249349 -0.8917877003818316 -0.2447790213962437 0.3805232294249349 -0.06630977119137992 0.9976983596115199 0.01417735775908853 0.06630977119137992 -0.9976983596115199 -0.01417735775908853 -0.04403949477506977 0.9976014876445216 -0.05340219798279838 0.04403949477506977 -0.9976014876445216 0.05340219798279838 0.2225619983841981 0.9576447485763068 -0.1827093112007543 -0.2225619983841981 -0.9576447485763068 0.1827093112007543 0.7124873634880191 0.619288682816256 -0.3299140557866522 -0.7124873634880191 -0.619288682816256 0.3299140557866522 -0.05913011988548577 0.9980266575742054 0.02112864627910984 0.05913011988548577 -0.9980266575742054 -0.02112864627910984 0.4033109953577375 0.8742862054507831 -0.2701182555511977 -0.4033109953577375 -0.8742862054507831 0.2701182555511977 0.813417733126717 0.2117233690580949 -0.5417792967894609 -0.813417733126717 -0.2117233690580949 0.5417792967894609 0.02580062929879584 0.9936985544649175 -0.1090757094046117 -0.02580062929879584 -0.9936985544649175 0.1090757094046117 -0.0165775742272396 0.9998193966169232 -0.009292910271388092 0.0165775742272396 -0.9998193966169232 0.009292910271388092 0.273496974185514 0.9192953144788657 -0.2830115366704539 -0.273496974185514 -0.9192953144788657 0.2830115366704539 0.5880277526648068 0.59155477570931 -0.5516215273459555 -0.5880277526648068 -0.59155477570931 0.5516215273459555 0.3472037532448569 0.7613954729584919 -0.5474728189517716 -0.3472037532448569 -0.7613954729584919 0.5474728189517716 0.6116929260147036 0.2894547948434446 -0.7362388783579076 -0.6116929260147036 -0.2894547948434446 0.7362388783579076 0.01557971421225727 0.9619313535424179 -0.272846740088857 -0.01557971421225727 -0.9619313535424179 0.272846740088857 -0.002326710954896456 0.991508710784031 -0.1300194710630725 0.002326710954896456 -0.991508710784031 0.1300194710630725 0.153468283798909 0.7918642236388596 -0.5910994308816781 -0.153468283798909 -0.7918642236388596 0.5910994308816781 0.3471621632704636 0.4496794813653836 -0.8229622083864676 -0.3471621632704636 -0.4496794813653836 0.8229622083864676 0.009566350025912693 0.8013399447302031 -0.5981327427310573 -0.009566350025912693 -0.8013399447302031 0.5981327427310573 -0.009548376057996846 0.9875451697264027 -0.1570457457707962 0.009548376057996846 -0.9875451697264027 0.1570457457707962 0.1286514942738617 0.5174470521760602 -0.845988972277658 -0.1286514942738617 -0.5174470521760602 0.845988972277658 0.2579558093757095 0.3380193053285395 -0.905097646463924 -0.2579558093757095 -0.3380193053285395 0.905097646463924 -0.001015192158410591 0.9767277832484703 -0.2144803180140568 0.001015192158410591 -0.9767277832484703 0.2144803180140568 -0.01572330387130821 0.4801689581634223 -0.8770350901370048 0.01572330387130821 -0.4801689581634223 0.8770350901370048 0.08149151905122982 0.3325274144394839 -0.9395662036114937 -0.08149151905122982 -0.3325274144394839 0.9395662036114937 0.03162526171808766 0.8553544880402206 -0.5170769213673285 -0.03162526171808766 -0.8553544880402206 0.5170769213673285 0 0.3078858683395855 -0.9514232980523336 -0 -0.3078858683395855 0.9514232980523336 -0.006817813475423355 0.4762750478533392 -0.8792699222717185 0.006817813475423355 -0.4762750478533392 0.8792699222717185 0 0.3078858683395854 -0.9514232980523336 -0 -0.3078858683395854 0.9514232980523336 -0.02307224561617772 0.3132163572532846 -0.9494014877970277 -2.964317095709304e-017 0.3078858683395854 -0.9514232980523336 2.964317095709304e-017 -0.3078858683395854 0.9514232980523336 0.02307224561617772 -0.3132163572532846 0.9494014877970277 0.0292968079231985 0.4931382590738291 -0.8694575058524391 -0.0292968079231985 -0.4931382590738291 0.8694575058524391 -0.010011755192711 0.3023485122323238 -0.9531448693188572 0.010011755192711 -0.3023485122323238 0.9531448693188572 -0.01611343067033426 0.2259029615688404 -0.9740165344112284 0.01611343067033426 -0.2259029615688404 0.9740165344112284</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"378\" source=\"#ID148\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID144\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID142\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID143\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"297\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID144\" />\r\n\t\t\t\t\t<p>0 1 2 6 0 2 2 1 8 6 2 10 2 8 12 1 14 8 16 6 10 10 2 12 12 8 18 8 14 20 16 10 22 10 12 24 8 20 18 12 18 26 14 28 20 22 10 24 30 16 22 24 12 26 20 32 18 18 34 26 28 36 20 22 24 38 30 22 40 24 26 42 20 36 32 18 32 34 26 34 44 28 46 36 48 22 38 38 24 42 40 22 48 42 26 50 32 36 52 34 32 54 50 26 44 44 34 56 46 58 36 42 50 60 32 52 54 36 58 52 34 54 56 50 44 62 44 56 64 46 66 58 60 50 68 70 54 52 72 52 58 74 56 54 68 50 62 44 64 62 76 64 56 66 78 58 72 70 52 70 74 54 78 72 58 74 76 56 68 62 80 62 64 82 76 84 64 66 86 78 88 70 72 90 74 70 78 92 72 94 76 74 96 68 80 62 82 80 84 82 64 98 84 76 86 100 78 92 88 72 88 90 70 90 94 74 78 100 92 94 98 76 96 80 102 80 82 104 84 106 82 98 108 84 92 110 88 112 90 88 114 94 90 116 92 117 120 98 94 122 96 102 102 80 104 106 104 82 108 106 84 124 108 98 110 112 88 116 110 92 112 114 90 114 120 94 120 124 98 122 102 126 102 104 128 106 130 104 108 132 106 124 134 108 136 112 110 116 138 110 136 114 112 140 120 114 142 124 120 122 126 144 102 128 126 130 128 104 132 130 106 134 132 108 146 134 124 138 136 110 136 140 114 140 142 120 142 146 124 144 126 148 126 128 150 130 152 128 132 154 130 134 156 132 146 158 134 138 160 136 160 140 136 162 142 140 164 146 142 166 144 148 126 150 148 152 150 128 154 152 130 156 154 132 158 156 134 168 158 146 160 162 140 162 164 142 164 168 146 144 166 170 166 148 172 148 150 174 152 176 150 154 178 152 156 180 154 156 158 182 168 184 158 170 166 186 186 166 172 172 148 174 176 174 150 178 176 152 180 178 154 156 182 180 184 182 158 170 186 188 186 172 190 172 174 192 176 194 174 178 196 176 180 198 178 180 182 200 184 202 182 188 186 204 206 170 188 186 190 204 172 192 190 194 192 174 196 194 176 198 196 178 180 200 198 202 200 182 208 188 204 210 206 188 204 190 212 192 214 190 194 216 192 196 218 194 198 220 196 198 200 222 202 224 200 208 204 226 188 208 228 210 188 230 226 204 212 214 212 190 216 214 192 218 216 194 220 218 196 198 222 220 224 222 200 208 226 232 228 208 232 230 188 228 234 210 230 218 236 216 220 238 218 222 240 220 224 242 222 228 232 244 246 230 228 234 230 246 236 218 238 220 248 249 220 240 248 242 240 222 244 252 228 252 246 228 254 234 246 249 248 256 240 242 248 258 252 244 252 260 246 254 246 260 248 262 256 242 264 248 258 266 252 266 260 252 268 254 260 262 270 256 264 262 248 272 266 258 274 260 266 268 260 274 270 276 256 272 258 278 272 280 266 280 274 266 282 268 274 270 284 276 286 272 278 278 258 288 290 280 272 292 274 280 282 274 292 284 288 276 294 286 278 290 272 286 284 278 288 296 280 290 296 292 280 298 282 292 294 278 284 300 286 294 302 290 286 304 296 290 296 306 292 306 298 292 300 302 286 304 290 302 308 296 304 308 306 296 310 298 306 312 302 300 314 304 302 316 308 304 318 306 308 318 310 306 312 320 302 316 304 314 320 314 302 322 308 316 322 318 308 324 310 318 326 316 314 328 314 320 330 322 316 322 332 318 332 324 318 330 316 326 328 326 314 330 334 322 334 332 322 336 324 332 338 330 326 340 326 328 342 334 330 334 344 332 344 336 332 346 330 338 348 338 326 348 326 340 342 350 334 346 342 330 334 350 344 344 352 336 346 338 354 354 338 348 342 356 350 346 356 342 350 358 344 358 352 344 360 346 354 356 362 350 346 364 356 350 366 358 360 364 346 356 368 369 364 368 356 360 372 364 364 374 368 372 374 364 372 376 374</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"297\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID144\" />\r\n\t\t\t\t\t<p>3 4 5 3 5 7 9 4 3 11 3 7 13 9 3 9 15 4 11 7 17 13 3 11 19 9 13 21 15 9 23 11 17 25 13 11 19 21 9 27 19 13 21 29 15 25 11 23 23 17 31 27 13 25 19 33 21 27 35 19 21 37 29 39 25 23 41 23 31 43 27 25 33 37 21 35 33 19 45 35 27 37 47 29 39 23 49 43 25 39 49 23 41 51 27 43 53 37 33 55 33 35 45 27 51 57 35 45 37 59 47 61 51 43 55 53 33 53 59 37 57 55 35 63 45 51 65 57 45 59 67 47 69 51 61 53 55 71 59 53 73 55 57 75 63 51 69 63 65 45 57 65 77 59 79 67 53 71 73 55 75 71 59 73 79 57 77 75 81 63 69 83 65 63 65 85 77 79 87 67 73 71 89 71 75 91 73 93 79 75 77 95 81 69 97 81 83 63 65 83 85 77 85 99 79 101 87 73 89 93 71 91 89 75 95 91 93 101 79 77 99 95 103 81 97 105 83 81 83 107 85 85 109 99 89 111 93 89 91 113 91 95 115 118 93 119 95 99 121 103 97 123 105 81 103 83 105 107 85 107 109 99 109 125 89 113 111 93 111 119 91 115 113 95 121 115 99 125 121 127 103 123 129 105 103 105 131 107 107 133 109 109 135 125 111 113 137 111 139 119 113 115 137 115 121 141 121 125 143 145 127 123 127 129 103 105 129 131 107 131 133 109 133 135 125 135 147 111 137 139 115 141 137 121 143 141 125 147 143 149 127 145 151 129 127 129 153 131 131 155 133 133 157 135 135 159 147 137 161 139 137 141 161 141 143 163 143 147 165 149 145 167 149 151 127 129 151 153 131 153 155 133 155 157 135 157 159 147 159 169 141 163 161 143 165 163 147 169 165 171 167 145 173 149 167 175 151 149 151 177 153 153 179 155 155 181 157 183 159 157 159 185 169 187 167 171 173 167 187 175 149 173 151 175 177 153 177 179 155 179 181 181 183 157 159 183 185 189 187 171 191 173 187 193 175 173 175 195 177 177 197 179 179 199 181 201 183 181 183 203 185 205 187 189 189 171 207 205 191 187 191 193 173 175 193 195 177 195 197 179 197 199 199 201 181 183 201 203 205 189 209 189 207 211 213 191 205 191 215 193 193 217 195 195 219 197 197 221 199 223 201 199 201 225 203 227 205 209 229 209 189 231 189 211 213 205 227 191 213 215 193 215 217 195 217 219 197 219 221 221 223 199 201 223 225 233 227 209 233 209 229 229 189 231 231 211 235 217 237 219 219 239 221 221 241 223 223 243 225 245 233 229 229 231 247 247 231 235 239 219 237 250 251 221 251 241 221 223 241 243 229 253 245 229 247 253 247 235 255 257 251 250 251 243 241 245 253 259 247 261 253 261 247 255 257 263 251 251 265 243 253 267 259 253 261 267 261 255 269 257 271 263 251 263 265 259 267 273 267 261 275 275 261 269 257 277 271 279 259 273 267 281 273 267 275 281 275 269 283 277 285 271 279 273 287 289 259 279 273 281 291 281 275 293 293 275 283 277 289 285 279 287 295 287 273 291 289 279 285 291 281 297 281 293 297 293 283 299 285 279 295 295 287 301 287 291 303 291 297 305 293 307 297 293 299 307 287 303 301 303 291 305 305 297 309 297 307 309 307 299 311 301 303 313 303 305 315 305 309 317 309 307 319 307 311 319 303 321 313 315 305 317 303 315 321 317 309 323 309 319 323 319 311 325 315 317 327 321 315 329 317 323 331 319 333 323 319 325 333 327 317 331 315 327 329 323 335 331 323 333 335 333 325 337 327 331 339 329 327 341 331 335 343 333 345 335 333 337 345 339 331 347 327 339 349 341 327 349 335 351 343 331 343 347 345 351 335 337 353 345 355 339 347 349 339 355 351 357 343 343 357 347 345 359 351 345 353 359 355 347 361 351 363 357 357 365 347 359 367 351 347 365 361 370 371 357 357 371 365 365 373 361 371 375 365 365 375 373 375 377 373</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID149\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID155\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID159\">0.6581289172172546 1.925639629364014 0.2436227351427078 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6566852927207947 1.912085294723511 0.2607377767562866 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6581289172172546 1.925639629364014 0.2436227351427078 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.6045059561729431 1.912085294723511 0.2496029883623123 0.6045059561729431 1.912085294723511 0.2496029883623123 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7500623464584351 1.90237021446228 0.2152038067579269 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6072992086410523 1.926056265830994 0.2301047742366791 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.7709382176399231 1.897327780723572 0.1462340503931046 0.7709382176399231 1.897327780723572 0.1462340503931046 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7521055936813355 1.90048885345459 0.08241678774356842 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5564971566200256 1.905122637748718 0.08657681941986084 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7218274474143982 1.905122637748718 0.05090289935469627 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7044316530227661 1.922605037689209 0.06054756790399551 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6581888198852539 1.925890922546387 0.04520654678344727</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID159\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID156\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID160\">0.06368183923200262 0.7816359070732991 0.620475569322218 0.4351652976529689 0.4515882744243441 0.7789089767880753 0.05563331340804202 0.5289120472471837 0.8468512152179009 -0.05563331340804202 -0.5289120472471837 -0.8468512152179009 -0.4351652976529689 -0.4515882744243441 -0.7789089767880753 -0.06368183923200262 -0.7816359070732991 -0.620475569322218 0.35795738869433 0.7264570419027571 0.5866231108207655 -0.35795738869433 -0.7264570419027571 -0.5866231108207655 -0.4503169078687535 0.4919917453143936 0.7450897966218713 0.4503169078687535 -0.4919917453143936 -0.7450897966218713 0.7476957669442501 0.4263151891498764 0.509123167410161 -0.7476957669442501 -0.4263151891498764 -0.509123167410161 -0.3587997901179157 0.7857770301638292 0.5038027088834004 0.3587997901179157 -0.7857770301638292 -0.5038027088834004 0.6026311348964107 0.7116602076906679 0.3610754270829568 -0.6026311348964107 -0.7116602076906679 -0.3610754270829568 -0.6459866396208748 0.5996255363186426 0.4723880583015519 0.6459866396208748 -0.5996255363186426 -0.4723880583015519 0.8950740664183305 0.4457805184040029 0.01105192457504562 -0.8950740664183305 -0.4457805184040029 -0.01105192457504562 -0.5614119746978663 0.7664293163683451 0.3120940526139411 0.5614119746978663 -0.7664293163683451 -0.3120940526139411 0.7799010414554628 0.6257727049031696 -0.01276273226448814 -0.7799010414554628 -0.6257727049031696 0.01276273226448814 -0.7167971047649803 0.6972385239267886 0.007768613321232372 0.7167971047649803 -0.6972385239267886 -0.007768613321232372 0.6469230332364384 0.6898812497274981 -0.3248914439356497 -0.6469230332364384 -0.6898812497274981 0.3248914439356497 -0.6184247596515268 0.7458918534232262 0.2473785755614576 0.6184247596515268 -0.7458918534232262 -0.2473785755614576 0.7666598717558816 0.5088704772459741 -0.3915143400013715 -0.7666598717558816 -0.5088704772459741 0.3915143400013715 -0.2427140865183295 0.9516308537911111 -0.1883841562296938 0.2427140865183295 -0.9516308537911111 0.1883841562296938 0.5180576795043453 0.5370752177731986 -0.665707481676783 -0.5180576795043453 -0.5370752177731986 0.665707481676783 -0.693515309669331 0.6221333811688795 -0.3632995613672408 0.693515309669331 -0.6221333811688795 0.3632995613672408 0.3920329437243987 0.7299265527327969 -0.5599262439378937 -0.3920329437243987 -0.7299265527327969 0.5599262439378937 -0.1956981726428444 0.9610455400549627 -0.1951760619664117 0.1956981726428444 -0.9610455400549627 0.1951760619664117 0.1488281615604248 0.9155662927981008 -0.3736154999708747 -0.1488281615604248 -0.9155662927981008 0.3736154999708747 -0.4360106190602546 0.6523043197237375 -0.619995011702873 0.4360106190602546 -0.6523043197237375 0.619995011702873 0.03258612750319111 0.8226944407409194 -0.5675491181107868 -0.03258612750319111 -0.8226944407409194 0.5675491181107868</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID160\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID158\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID161\">-0.14982045556514 -8.316798414086907 -0.6936716701330531 -8.287437175619747 -0.1790159423250831 -8.146215969184315 -0.2073074579882039 -8.749814709742097 -0.6387413596695191 -8.882757905347074 -0.7510917595116751 -8.719696277367525 -9.094852670127247 -7.002258959439575 -9.646040306013674 -7.061560931524517 -9.609601124940296 -6.891843081338203 4.721085827244991 -6.687977590734072 4.213867949560833 -6.83050779919227 4.578082471218702 -6.540515107334523 -9.313835603103531 -6.437850264840334 -9.813745990075313 -6.309196186018193 -9.262151981743834 -6.252280503657532 4.406837534938787 -6.898071876106249 4.199902154201657 -6.807940392341079 4.707186346096488 -6.665556309650214 -15.37345076151881 -3.135519892390655 -15.83382916344027 -2.888472771458424 -15.73231838591345 -2.716100072539287 8.062583101023312 -1.257353546819625 8.245269708836297 -0.7075691333339041 8.460145540014123 -0.7853569518880319 -14.92308371222783 -2.85581785835925 -15.1091631203076 -2.94715270933599 -15.38816787693552 -2.614286891640673 10.13229269872748 -2.030806223790802 9.867238671037802 -2.025538394937177 10.25339902581849 -1.547719574735519 -16.57918381797935 -0.8764531836845783 -16.66529393175382 -0.4999924201245851 -16.47462369575802 -0.414718120843968 10.0743158013063 4.409280263795306 10.33936934927102 4.403997518620375 10.47576653108455 3.978464122402 -17.77818355776621 0.1483719851793338 -17.66289384405605 -0.3364642109844385 -17.89867654398276 -0.310953882398821 8.827508930937732 3.245245550925936 8.676315342582571 3.755592063598506 9.086442611058098 3.329863466668702 -17.0822909434011 2.974866944420178 -17.12311202182214 2.528078589498817 -17.31803530042676 3.000595632608795 6.61052696030081 7.141648360596713 6.347926612480678 7.418860344056025 6.602126373538136 7.511937981641268 -18.55725727894121 1.672754872058794 -18.83697110777229 1.769865113222594 -18.77313520414998 2.139600909810604 4.897367782508628 7.375062005046844 4.655422672765788 7.290374409774107 4.626054596276275 7.660001697508108 -16.62922440995447 5.315904305007655 -16.98813222125273 4.881244282551317 -16.897735133379 5.430931382444905 2.470188841201698 10.31134153396707 1.875921553309959 10.55046187739263 2.108960131118924 10.64940622458298 -17.51227183145602 4.518021817074613 -17.68407501047069 4.693145375765543 -17.44223810768192 5.069544815263329 -0.9209516549029151 8.913201958803468 -0.9712984538805081 8.748772552573735 -1.374058429762926 9.056428466690454 -12.77253371674224 8.934130110648971 -12.65971399906374 8.731503734435394 -13.21232760142227 8.587336096869878 -10.11081142365707 8.082359692722404 -10.11751936113235 8.251409480792749 -9.621150051683159 8.384986354872035</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"72\" source=\"#ID161\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID157\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID155\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID156\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID157\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID158\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 6 9 10 10 1 11 12 12 0 13 8 14 14 15 10 16 6 17 16 18 12 19 8 20 18 21 10 22 14 23 16 24 20 25 12 26 22 27 18 28 14 29 24 30 20 31 16 32 18 33 22 34 26 35 16 36 28 37 24 38 30 39 18 40 26 41 28 42 32 43 24 44 34 45 30 46 26 47 32 48 36 49 24 50 38 51 34 52 26 53 32 54 40 55 36 56 42 57 34 58 38 59 40 60 44 61 36 62 46 63 42 64 38 65 44 66 40 67 42 68 42 69 46 70 44 71</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID157\" />\r\n\t\t\t\t\t<p>3 4 5 4 7 5 3 5 9 4 11 7 9 5 13 7 11 15 9 13 17 15 11 19 13 21 17 15 19 23 17 21 25 27 23 19 25 29 17 27 19 31 25 33 29 27 31 35 25 37 33 27 35 39 37 41 33 39 35 43 37 45 41 39 43 47 43 41 45 45 47 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID162\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID163\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID166\">0.6581888198852539 1.925890922546387 0.04520654678344727 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6591432690620422 1.944134831428528 0.1425205767154694 0.6591432690620422 1.944134831428528 0.1425205767154694 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6581289172172546 1.925639629364014 0.2436227351427078</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID166\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID164\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID167\">0.03936908541704142 0.982044718226688 -0.1844945704255019 0.1654102896355377 0.972487807810053 -0.1640332275591905 0.05154924676621023 0.9986704535612888 -1.848042230411276e-005 -0.05154924676621023 -0.9986704535612888 1.848042230411276e-005 -0.1654102896355377 -0.972487807810053 0.1640332275591905 -0.03936908541704142 -0.982044718226688 0.1844945704255019 -0.07133888125878626 0.9829625270788537 -0.169397267922179 0.07133888125878626 -0.9829625270788537 0.169397267922179 0.2344210378311746 0.9677133534895852 -0.09261556294757618 -0.2344210378311746 -0.9677133534895852 0.09261556294757618 -0.1253412291305374 0.9875267950369973 -0.09529116099619422 0.1253412291305374 -0.9875267950369973 0.09529116099619422 0.2642768599222439 0.9643251834938845 0.01531932730653969 -0.2642768599222439 -0.9643251834938845 -0.01531932730653969 -0.1531152101238801 0.9876602560594644 0.03290822130218187 0.1531152101238801 -0.9876602560594644 -0.03290822130218187 0.2333223649560231 0.9667716409934942 0.1044665888314273 -0.2333223649560231 -0.9667716409934942 -0.1044665888314273 -0.1453187436904175 0.983128098322856 0.1110927766343233 0.1453187436904175 -0.983128098322856 -0.1110927766343233 0.1663135392735206 0.9732003198707487 0.1588110325443019 -0.1663135392735206 -0.9732003198707487 -0.1588110325443019 -0.08898286512452604 0.9845880526293398 0.1505603411718863 0.08898286512452604 -0.9845880526293398 -0.1505603411718863 0.04190944451044767 0.9827370906126011 0.1801982497004504 -0.04190944451044767 -0.9827370906126011 -0.1801982497004504</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID167\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID165\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID163\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID164\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID165\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 6 2 3 7 11 2 8 12 13 9 3 10 2 14 15 3 11 2 12 16 17 13 3 14 2 18 19 3 15 2 16 20 21 17 3 18 2 22 23 3 19 2 20 24 25 21 3 22 2 24 25 3 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID168\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID169\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID172\">0.5611516833305359 1.912085294723511 0.2021596431732178 0.569970428943634 1.82999062538147 0.2332505583763123 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.569970428943634 1.82999062538147 0.2332505583763123 0.5611516833305359 1.912085294723511 0.2021596431732178</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID172\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID170\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID173\">-0.9632636129987122 -0.001769357604049535 0.2685518222733488 -0.9632636129987122 -0.001769357604049535 0.2685518222733488 -0.9632636129987122 -0.001769357604049535 0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID173\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID171\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID169\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID170\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID171\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID174\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID175\">\r\n\t\t\t\t\t<float_array count=\"612\" id=\"ID178\">0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6078575253486633 1.062604069709778 0.02048102393746376 0.6078575253486633 1.062604069709778 0.02048102393746376 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6078575253486633 1.062604069709778 0.02048102393746376 0.6078575253486633 1.062604069709778 0.02048102393746376 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5737410187721252 1.083053588867188 0.3171393871307373 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7976231575012207 1.134773850440979 0.09562528133392334 0.6100444793701172 1.132825136184692 0.09579920023679733 0.6100444793701172 1.132825136184692 0.09579920023679733 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6100444793701172 1.132825136184692 0.09579920023679733 0.6100444793701172 1.132825136184692 0.09579920023679733 0.5641165971755981 1.231308460235596 0.2951163649559021 0.5641165971755981 1.231308460235596 0.2951163649559021 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7976231575012207 1.226557493209839 0.1501588523387909 0.7976231575012207 1.226557493209839 0.1501588523387909 0.6150623559951782 1.227490305900574 0.1535092145204544 0.6150623559951782 1.227490305900574 0.1535092145204544 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6150623559951782 1.227490305900574 0.1535092145204544 0.6150623559951782 1.227490305900574 0.1535092145204544 0.5558203458786011 1.338033199310303 0.2760796546936035 0.5558203458786011 1.338033199310303 0.2760796546936035 0.798487663269043 0.4255831241607666 0.01916016265749931 0.798487663269043 0.4255831241607666 0.01916016265749931 0.688839852809906 0.4193950891494751 0.3588072657585144 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.688839852809906 0.4193950891494751 0.3588072657585144 0.7946488857269287 1.336279630661011 0.1839811652898789 0.7946488857269287 1.336279630661011 0.1839811652898789 0.6001907587051392 1.335630416870117 0.1818975508213043 0.6001907587051392 1.335630416870117 0.1818975508213043 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.5483854413032532 1.437644124031067 0.2575764954090118 0.5483854413032532 1.437644124031067 0.2575764954090118 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7952814698219299 1.430078029632568 0.1879792362451553 0.7952814698219299 1.430078029632568 0.1879792362451553 0.6001907587051392 1.430773377418518 0.1891794055700302 0.6001907587051392 1.430773377418518 0.1891794055700302 0.6024033427238464 1.530340790748596 0.1673334091901779 0.6024033427238464 1.530340790748596 0.1673334091901779 0.7969198822975159 1.529133081436157 0.1681521981954575 0.7969198822975159 1.529133081436157 0.1681521981954575 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5255792737007141 1.631603479385376 0.2142343670129776 0.5255792737007141 1.631603479385376 0.2142343670129776 0.7910681962966919 1.631798982620239 0.123851403594017 0.7910681962966919 1.631798982620239 0.123851403594017 0.5982099771499634 1.63359522819519 0.123851403594017 0.5982099771499634 1.63359522819519 0.123851403594017 0.5107629299163818 1.737711548805237 0.1886539459228516 0.5107629299163818 1.737711548805237 0.1886539459228516 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7916035652160645 1.673280954360962 0.08852987736463547 0.600138247013092 1.674088478088379 0.08723254501819611 0.600138247013092 1.674088478088379 0.08723254501819611 0.600138247013092 1.703011274337769 0.06053215265274048 0.600138247013092 1.703011274337769 0.06053215265274048 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7907845973968506 1.703024983406067 0.0606619194149971 0.6017862558364868 1.727086067199707 0.03279396891593933 0.6017862558364868 1.727086067199707 0.03279396891593933 0.4955552816390991 1.831614017486572 0.16129469871521 0.4955552816390991 1.831614017486572 0.16129469871521 0.7930033206939697 1.725906729698181 0.03279396891593933 0.7930033206939697 1.725906729698181 0.03279396891593933 0.6035350561141968 1.760315418243408 -0.0219960268586874 0.6035350561141968 1.760315418243408 -0.0219960268586874 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4784936010837555 1.90060830116272 0.1212251707911491 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.601814329624176 1.775644421577454 -0.07519237697124481 0.601814329624176 1.775644421577454 -0.07519237697124481 0.4961572587490082 1.913546085357666 0.03562422469258308 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4961572587490082 1.913546085357666 0.03562422469258308 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.518811047077179 1.913546085357666 0.007866731844842434 0.518811047077179 1.913546085357666 0.007866731844842434 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.601814329624176 1.788490056991577 -0.1259496361017227 0.601814329624176 1.788490056991577 -0.1259496361017227 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.601814329624176 1.792240262031555 -0.1946214735507965 0.601814329624176 1.792240262031555 -0.1946214735507965 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.6047999858856201 1.788490056991577 -0.264063835144043 0.6047999858856201 1.788490056991577 -0.264063835144043 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.424839973449707 1.892464518547058 -0.2987582087516785 0.424839973449707 1.892464518547058 -0.2987582087516785 0.602636456489563 1.761277794837952 -0.2947392761707306 0.602636456489563 1.761277794837952 -0.2947392761707306 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.5888708233833313 1.761277794837952 -0.3425095975399017 0.5888708233833313 1.761277794837952 -0.3425095975399017 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.5730990171432495 1.778753638267517 -0.3605347573757172</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"204\" source=\"#ID178\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID176\">\r\n\t\t\t\t\t<float_array count=\"612\" id=\"ID179\">-0.002031866627481819 0.7041738060751083 -0.7100247336225014 -0.003154768045807751 0.7279228439330888 -0.6856517926170259 0.005578171167189729 0.952967993764047 -0.3030196146584522 -0.005578171167189729 -0.952967993764047 0.3030196146584522 0.003154768045807751 -0.7279228439330888 0.6856517926170259 0.002031866627481819 -0.7041738060751083 0.7100247336225014 -0.009873866414612846 0.2940160093358328 -0.9557494928150671 0.009873866414612846 -0.2940160093358328 0.9557494928150671 0.003893238134685696 0.9526977033105609 -0.3038946014716437 -0.003893238134685696 -0.9526977033105609 0.3038946014716437 -0.008412856373111871 0.2958381366472996 -0.9552010368255988 0.008412856373111871 -0.2958381366472996 0.9552010368255988 -0.9948075727464791 -0.08790104295397494 -0.05129619726512105 -0.9967250369421153 0.07969187169170205 -0.01372611813341505 -0.9641576495820019 0.2638333602880564 0.02814222364388343 0.9641576495820019 -0.2638333602880564 -0.02814222364388343 0.9967250369421153 -0.07969187169170205 0.01372611813341505 0.9948075727464791 0.08790104295397494 0.05129619726512105 0.002151779979543105 0.9027479757737718 -0.4301644593400033 -0.002151779979543105 -0.9027479757737718 0.4301644593400033 -0.008621931941022816 0.2207983455641449 -0.9752813711364228 0.008621931941022816 -0.2207983455641449 0.9752813711364228 -0.9998659129083529 -0.004779808995791442 -0.01566236348415073 0.9998659129083529 0.004779808995791442 0.01566236348415073 -0.9960924026966632 0.08616161503151285 -0.0193933335233983 0.9960924026966632 -0.08616161503151285 0.0193933335233983 -0.003991031751673676 0.9093357713540832 -0.4160438998488402 0.003991031751673676 -0.9093357713540832 0.4160438998488402 -0.005673303817165464 0.2264395815461192 -0.9740086906865957 0.005673303817165464 -0.2264395815461192 0.9740086906865957 -0.9905917461751002 -0.136308881204913 -0.01216064613541545 0.9905917461751002 0.136308881204913 0.01216064613541545 -0.9968271004583693 0.04460997381382314 -0.06592178720340064 0.9968271004583693 -0.04460997381382314 0.06592178720340064 -0.004720641850529348 0.794362249212256 -0.6074259893739855 0.004720641850529348 -0.794362249212256 0.6074259893739855 -0.004096609442663096 0.1253146842323055 -0.9921085866510944 0.004096609442663096 -0.1253146842323055 0.9921085866510944 -0.9980320214358647 -0.06250647920590244 0.005002424004814591 0.9980320214358647 0.06250647920590244 -0.005002424004814591 -0.008661296070234087 0.8008066651523571 -0.598860306747696 0.008661296070234087 -0.8008066651523571 0.598860306747696 -0.895673926454469 0.000862505034626854 0.4447105503073879 0.895673926454469 -0.000862505034626854 -0.4447105503073879 -0.005601653918102343 0.1304529245089368 -0.9914386798791176 0.005601653918102343 -0.1304529245089368 0.9914386798791176 -0.9852520874831436 -0.1710602304784259 -0.004089212488466666 0.9852520874831436 0.1710602304784259 0.004089212488466666 -0.006660261559601748 0.6261558675591958 -0.7796694622961377 0.006660261559601748 -0.6261558675591958 0.7796694622961377 -0.9759873012105041 0.1309215835370071 -0.1740928684352089 0.9759873012105041 -0.1309215835370071 0.1740928684352089 -0.01726204262242443 0.07004637810473909 -0.9973943687423293 0.01726204262242443 -0.07004637810473909 0.9973943687423293 -0.9827040135866452 -0.1847034824060137 0.01332085837286729 0.9827040135866452 0.1847034824060137 -0.01332085837286729 -0.009504067604324451 0.6333563698512222 -0.773801900661826 0.009504067604324451 -0.6333563698512222 0.773801900661826 -0.9606480777099047 0.006747156029087368 0.277686417884966 0.9606480777099047 -0.006747156029087368 -0.277686417884966 -0.02864687218974323 0.06098751536159313 -0.9977273573896649 0.02864687218974323 -0.06098751536159313 0.9977273573896649 -0.9710427981079228 -0.2387850133832192 0.007589573526315395 0.9710427981079228 0.2387850133832192 -0.007589573526315395 -0.01226787875901361 0.4089424243897999 -0.9124777217471924 0.01226787875901361 -0.4089424243897999 0.9124777217471924 -0.9258013446998226 0.1301689880839249 -0.3548913984491697 0.9258013446998226 -0.1301689880839249 0.3548913984491697 -0.009719797712985413 -0.9998397877975792 0.01503077740206486 0.0003328631328224821 -0.9999540640432325 0.009579092105094415 -0.01129806292066895 -0.9997986181160402 0.01658544504970744 0.01129806292066895 0.9997986181160402 -0.01658544504970744 -0.0003328631328224821 0.9999540640432325 -0.009579092105094415 0.009719797712985413 0.9998397877975792 -0.01503077740206486 -0.9844962349256925 -0.1748435336383345 -0.01403218308020972 0.9844962349256925 0.1748435336383345 0.01403218308020972 -0.005829761127499755 0.3941442088955652 -0.9190301172863082 0.005829761127499755 -0.3941442088955652 0.9190301172863082 -0.9125354682186676 -0.113071856984082 -0.3930569607590082 0.9125354682186676 0.113071856984082 0.3930569607590082 0.008795837783968767 -0.9999350760969271 0.007244089225746932 -0.008795837783968767 0.9999350760969271 -0.007244089225746932 -0.05844106786614663 -0.9982849747213407 -0.00342794869806715 -0.07339287618189742 -0.9972986376699625 -0.002985469374419037 0.07339287618189742 0.9972986376699625 0.002985469374419037 0.05844106786614663 0.9982849747213407 0.00342794869806715 0.001709746850782575 0.1630913484666589 -0.9866094915522722 -0.001709746850782575 -0.1630913484666589 0.9866094915522722 -0.5477059616495917 0.06663800159267526 -0.8340129233514493 0.5477059616495917 -0.06663800159267526 0.8340129233514493 0.07999201948807029 -0.9966969330856842 -0.01401785988699024 -0.07999201948807029 0.9966969330856842 0.01401785988699024 0.01146984438351619 -0.999901694502409 -0.008064986114630322 -0.01146984438351619 0.999901694502409 0.008064986114630322 -0.8175794994995225 -0.1036249520646039 -0.5664147167118089 0.8175794994995225 0.1036249520646039 0.5664147167118089 0.1171617741696312 -0.9928591628594425 -0.02244552069949391 -0.1171617741696312 0.9928591628594425 0.02244552069949391 -0.0005074472560596779 -0.07314127026300465 -0.9973214612558964 0.0005074472560596779 0.07314127026300465 0.9973214612558964 -0.4671844489454682 -0.05409992846637629 -0.8825031945570806 0.4671844489454682 0.05409992846637629 0.8825031945570806 -0.4157906930759787 -0.2893035753226083 -0.8622189634060209 0.4157906930759787 0.2893035753226083 0.8622189634060209 -0.001251635271873887 -0.2989057631075787 -0.9542818127734711 0.001251635271873887 0.2989057631075787 0.9542818127734711 -0.7357190838004971 -0.2286602149856994 -0.6375201454185199 0.7357190838004971 0.2286602149856994 0.6375201454185199 -0.7444348412862022 -0.2640622869040579 -0.6132600392282103 0.7444348412862022 0.2640622869040579 0.6132600392282103 -0.003126673932310979 -0.5245017008971007 -0.851403658475913 0.003126673932310979 0.5245017008971007 0.851403658475913 -0.4536446921904907 -0.4631745362896014 -0.7613644608072456 0.4536446921904907 0.4631745362896014 0.7613644608072456 -0.8074366296485683 -0.3017917233898638 -0.5069199589630861 0.8074366296485683 0.3017917233898638 0.5069199589630861 -0.001292295406336159 -0.6679956481798597 -0.7441640571710996 0.001292295406336159 0.6679956481798597 0.7441640571710996 -0.4413671517616215 -0.6003898332880783 -0.6668786137147805 0.4413671517616215 0.6003898332880783 0.6668786137147805 -0.4526042059574229 -0.6352574959571411 -0.6257773937910457 0.4526042059574229 0.6352574959571411 0.6257773937910457 0.001171496973536925 -0.7300813933283943 -0.683359193038706 -0.001171496973536925 0.7300813933283943 0.683359193038706 -0.4748306978382566 -0.694060433707126 -0.5411246831855952 0.4748306978382566 0.694060433707126 0.5411246831855952 -0.8464327417927822 -0.3623231382338141 -0.3902224456916258 0.8464327417927822 0.3623231382338141 0.3902224456916258 -0.002717372553585746 -0.8075922943265442 -0.5897349421823276 0.002717372553585746 0.8075922943265442 0.5897349421823276 -0.5001653078149472 -0.78536585523471 -0.3647398227364699 0.5001653078149472 0.78536585523471 0.3647398227364699 0.0003509594575061786 -0.9195500935760502 -0.3929726481979843 -0.0003509594575061786 0.9195500935760502 0.3929726481979843 -0.795359980458199 -0.595955913272563 -0.110630244151401 0.795359980458199 0.595955913272563 0.110630244151401 -0.00256579025065002 -0.970557316593617 -0.2408566210985008 0.00256579025065002 0.970557316593617 0.2408566210985008 -0.6770060329921882 -0.7260985289165722 0.120182185024945 0.6770060329921882 0.7260985289165722 -0.120182185024945 -0.5130701491301604 -0.8343894420681041 -0.2013784522654617 0.5130701491301604 0.8343894420681041 0.2013784522654617 -0.5045067427627233 -0.02904912283269602 -0.8629189388173135 -0.3740113601256721 0.08517896410713484 -0.9235042211980302 0.3740113601256721 -0.08517896410713484 0.9235042211980302 0.5045067427627233 0.02904912283269602 0.8629189388173135 -0.8761959573560605 -0.4814021187707525 -0.02307908914855814 0.8761959573560605 0.4814021187707525 0.02307908914855814 -0.004738763320069978 -0.9886901052970992 -0.1498980313740208 0.004738763320069978 0.9886901052970992 0.1498980313740208 -0.8175577526278948 -0.3652868797157938 -0.4451570696119803 0.8175577526278948 0.3652868797157938 0.4451570696119803 -0.8246365967014818 -0.5481839684026157 0.1395307140630971 0.8246365967014818 0.5481839684026157 -0.1395307140630971 -0.4805225420358854 -0.8689360124465977 -0.1185254945941055 0.4805225420358854 0.8689360124465977 0.1185254945941055 -0.0001018243583388035 -0.9999807029784149 0.00621154591027403 0.0001018243583388035 0.9999807029784149 -0.00621154591027403 -0.7326244611747069 -0.6427575554192596 0.223884175054709 0.7326244611747069 0.6427575554192596 -0.223884175054709 -0.3573930893115141 -0.9320420580026236 0.05973091181797268 0.3573930893115141 0.9320420580026236 -0.05973091181797268 0.000312141434426454 -0.9401959467122115 0.3406339448053481 -0.000312141434426454 0.9401959467122115 -0.3406339448053481 -0.5938783159957045 -0.6788810746920075 0.431774283874261 0.5938783159957045 0.6788810746920075 -0.431774283874261 -0.2810885037071276 -0.8836044828356823 0.3744761287403708 0.2810885037071276 0.8836044828356823 -0.3744761287403708 -0.306646385949856 -0.3948509445278647 0.8660604630101439 0.306646385949856 0.3948509445278647 -0.8660604630101439 -0.535498682530136 -0.8308301576049837 0.151533528377606 0.535498682530136 0.8308301576049837 -0.151533528377606 0.0008582238826964657 -0.9269981380297792 0.3750649484303885 -0.0008582238826964657 0.9269981380297792 -0.3750649484303885 -0.1704952431820977 -0.2412252931725145 0.9553751776062177 0.1704952431820977 0.2412252931725145 -0.9553751776062177 -0.5540921946255204 -0.8216202647571059 0.1338730009954866 0.5540921946255204 0.8216202647571059 -0.1338730009954866 -0.5143604385851316 -0.7538249196936183 0.4088781354724427 0.5143604385851316 0.7538249196936183 -0.4088781354724427 -0.1380026630778748 -0.9128747444940201 0.3842069310259667 0.1380026630778748 0.9128747444940201 -0.3842069310259667 -0.435850001315338 -0.4621906220367008 0.772278839056689 0.435850001315338 0.4621906220367008 -0.772278839056689 0.03773339099784692 -0.9621256170329681 -0.2699823850786089 -0.03773339099784692 0.9621256170329681 0.2699823850786089 -0.3481885838874076 -0.2117944700509886 0.913185530166955 0.3481885838874076 0.2117944700509886 -0.913185530166955 -0.01286325317847039 -0.9648904002076516 -0.2623376684824051 0.01286325317847039 0.9648904002076516 0.2623376684824051 -0.1095095532543335 -0.9934846951634816 0.0315565876159114 0.1095095532543335 0.9934846951634816 -0.0315565876159114 0.1087422852010516 -0.9469574157884161 -0.3024016668151454 -0.1087422852010516 0.9469574157884161 0.3024016668151454 0.06106025898700137 -0.8594251928277874 -0.5076021894213622 -0.06106025898700137 0.8594251928277874 0.5076021894213622 2.065922027485135e-016 -0.7503520187156011 -0.6610384618230791 -2.065922027485135e-016 0.7503520187156011 0.6610384618230791 -2.234546919098456e-016 -0.7503520187156002 -0.6610384618230801 -0.006610675482426474 -0.7456954604641577 -0.6662541401093234 0.006610675482426474 0.7456954604641577 0.6662541401093234 2.234546919098456e-016 0.7503520187156002 0.6610384618230801 -0.02829408732694985 -0.7299337508869919 -0.6829320346406237 0.02829408732694985 0.7299337508869919 0.6829320346406237</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"204\" source=\"#ID179\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID177\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID175\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID176\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"212\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID177\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 0 6 1 4 7 5 0 2 8 9 3 5 0 10 6 7 11 5 12 13 14 15 16 17 8 2 18 19 3 9 10 20 6 7 21 11 12 22 13 16 23 17 12 14 24 25 15 17 26 8 18 19 9 27 10 28 20 21 29 11 30 22 12 17 23 31 12 24 32 33 25 17 26 18 34 35 19 27 28 36 20 21 37 29 30 38 22 23 39 31 40 26 34 35 27 41 12 32 42 43 33 17 28 44 36 37 45 29 46 38 30 31 39 47 40 34 48 49 35 41 42 32 50 51 33 43 44 52 36 37 53 45 46 54 38 39 55 47 40 48 56 57 49 41 42 50 58 59 51 43 44 60 52 53 61 45 62 54 46 47 55 63 64 56 48 49 57 65 50 66 58 59 67 51 68 69 70 71 72 73 74 62 46 47 63 75 76 56 64 65 57 77 58 66 78 79 67 59 70 69 80 81 72 71 82 69 83 84 72 85 86 76 64 65 77 87 66 88 78 79 89 67 80 69 90 91 72 81 92 69 82 85 72 93 88 76 86 87 77 89 78 88 94 95 89 79 90 69 96 97 72 91 96 69 92 93 72 97 88 86 98 99 87 89 88 100 94 95 101 89 100 88 98 99 89 101 94 100 102 103 101 95 100 98 104 105 99 101 94 102 106 107 103 95 102 100 104 105 101 103 106 102 108 109 103 107 110 102 104 105 103 111 108 102 112 113 103 109 112 102 110 111 103 113 108 112 114 115 113 109 112 110 116 117 111 113 112 118 114 115 119 113 118 112 116 117 113 119 118 120 114 115 121 119 122 118 116 117 119 123 120 124 114 115 125 121 120 118 122 123 119 121 114 124 126 127 125 115 128 124 120 121 125 129 128 120 122 123 121 129 124 130 126 127 131 125 128 132 124 125 133 129 132 130 124 125 131 133 126 130 134 135 131 127 136 130 132 133 131 137 130 138 134 135 139 131 136 140 130 131 141 137 142 143 130 131 144 145 130 140 146 147 141 131 136 148 140 141 149 137 142 130 150 151 131 145 150 130 146 147 131 151 146 140 152 153 141 147 148 154 140 141 155 149 140 154 152 153 155 141 148 156 154 155 157 149 152 154 158 159 155 153 156 160 154 155 161 157 154 160 158 159 161 155 156 162 160 161 163 157 160 164 158 159 165 161 162 166 160 161 167 163 160 168 164 165 169 161 166 170 160 161 171 167 162 172 166 167 173 163 174 168 160 161 169 175 170 176 160 161 177 171 178 170 166 167 171 179 172 180 166 167 181 173 182 178 166 167 179 183 180 182 166 167 183 181 172 184 180 181 185 173 186 182 180 181 183 187 184 188 180 181 189 185 188 190 180 181 191 189 184 192 188 189 193 185 192 194 188 189 195 193 194 196 188 189 197 195 198 199 188 189 200 201 199 202 188 189 203 200</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID180\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID181\">\r\n\t\t\t\t\t<float_array count=\"306\" id=\"ID185\">0.5822945237159729 1.93234646320343 -0.1336532384157181 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.5886632204055786 1.934478163719177 -0.148460179567337 0.5886632204055786 1.934478163719177 -0.148460179567337 0.5886632204055786 1.934720396995544 -0.1188463941216469 0.5886632204055786 1.934720396995544 -0.1188463941216469 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.5886632204055786 1.918007493019104 -0.148460179567337 0.5886632204055786 1.918007493019104 -0.148460179567337 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1147843822836876 0.62096107006073 1.943698525428772 -0.1147843822836876 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.6060627698898315 1.933767676353455 -0.1592995822429657 0.6060627698898315 1.933767676353455 -0.1592995822429657 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.6060627698898315 1.933767676353455 -0.1080069318413734 0.6060627698898315 1.933767676353455 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.5886632204055786 1.918007493019104 -0.148460179567337 0.6624386310577393 1.923469066619873 -0.1336532384157181 0.6624386310577393 1.923469066619873 -0.1336532384157181 0.5886632204055786 1.918007493019104 -0.148460179567337 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1525221467018127 0.62096107006073 1.943698525428772 -0.1525221467018127 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.930925488471985 -0.1632670909166336 0.6624386310577393 1.930925488471985 -0.1632670909166336 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6624386310577393 1.930925488471985 -0.1040394529700279 0.6624386310577393 1.930925488471985 -0.1040394529700279 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.70525062084198 1.934461951255798 -0.1147843822836876 0.70525062084198 1.934461951255798 -0.1147843822836876 0.738028347492218 1.888520956039429 -0.148460179567337 0.738028347492218 1.888520956039429 -0.148460179567337 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.920978307723999 -0.1592995822429657 0.7206282615661621 1.920978307723999 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.7206282615661621 1.920978307723999 -0.1080069318413734 0.7206282615661621 1.920978307723999 -0.1080069318413734 0.744395911693573 1.885544061660767 -0.1336532384157181 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.888520956039429 -0.148460179567337 0.738028347492218 1.888520956039429 -0.148460179567337 0.70525062084198 1.934461951255798 -0.1525222510099411 0.70525062084198 1.934461951255798 -0.1525222510099411 0.738028347492218 1.888520956039429 -0.1188463941216469 0.738028347492218 1.888520956039429 -0.1188463941216469 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.920978307723999 -0.148460179567337 0.738028347492218 1.920978307723999 -0.148460179567337 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.888520956039429 -0.1188463941216469 0.738028347492218 1.920978307723999 -0.1188463941216469 0.738028347492218 1.920978307723999 -0.1188463941216469 0.738028347492218 1.888520956039429 -0.1188463941216469 0.744395911693573 1.920978307723999 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"102\" source=\"#ID185\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID182\">\r\n\t\t\t\t\t<float_array count=\"306\" id=\"ID186\">-0.4525870160939107 0.8917055352646315 0.005121644426094273 -0.268503656107856 0.9630575363932906 0.02063899834778602 -0.1975743797487748 0.9600174138981226 0.1983202699656487 0.1975743797487748 -0.9600174138981226 -0.1983202699656487 0.268503656107856 -0.9630575363932906 -0.02063899834778602 0.4525870160939107 -0.8917055352646315 -0.005121644426094273 -0.6836914411438895 0.4960175374375364 -0.5352874142561113 0.6836914411438895 -0.4960175374375364 0.5352874142561113 -0.6826789355655409 0.5175040650256956 0.5158866286472065 0.6826789355655409 -0.5175040650256956 -0.5158866286472065 -0.9999982786554844 -2.453531840315205e-017 0.00185544767322905 -0.7628108367871563 -5.107898362146584e-017 -0.6466217033784732 0.7628108367871563 5.107898362146584e-017 0.6466217033784732 0.9999982786554844 2.453531840315205e-017 -0.00185544767322905 -0.188685970994036 0.9568090513440232 -0.2211651953092718 0.188685970994036 -0.9568090513440232 0.2211651953092718 -0.9999999999992952 3.715457857115628e-018 1.187155444384655e-006 0.9999999999992952 -3.715457857115628e-018 -1.187155444384655e-006 -0.04316329546441134 0.9022464711878826 0.4290550490947117 0.04316329546441134 -0.9022464711878826 -0.4290550490947117 -0.3190221129661848 -5.169595915164021e-017 -0.9477472719235812 0.3190221129661848 5.169595915164021e-017 0.9477472719235812 -0.3015180340726529 0.4026939942020862 -0.8642478939300533 0.3015180340726529 -0.4026939942020862 0.8642478939300533 -0.7628108229850096 -4.387034181854362e-018 0.6466217196606778 0.7628108229850096 4.387034181854362e-018 -0.6466217196606778 -0.2966889948970395 0.3930087617907217 0.8703561072702991 0.2966889948970395 -0.3930087617907217 -0.8703561072702991 0.07444731930745059 -0.9972153159559796 -0.004382952286991633 0.07003499471041809 -0.9973648724161474 0.01893174017975829 -0.1719345689301247 -0.9851083717067944 1.534270210203556e-009 0.1719345689301247 0.9851083717067944 -1.534270210203556e-009 -0.07003499471041809 0.9973648724161474 -0.01893174017975829 -0.07444731930745059 0.9972153159559796 0.004382952286991633 0.06798922594315633 -0.9976860554080358 -6.586151547304128e-008 -0.06798922594315633 0.9976860554080358 6.586151547304128e-008 -0.05077244356092967 0.9044995626227409 -0.4234414955931014 0.05077244356092967 -0.9044995626227409 0.4234414955931014 0.0700349909810802 -0.9973648699915734 -0.01893188170710432 -0.0700349909810802 0.9973648699915734 0.01893188170710432 0.09074013728241166 0.8894532731297745 0.447927563792071 -0.09074013728241166 -0.8894532731297745 -0.447927563792071 -0.1684282001120586 -0.9857139247301988 3.261984415863724e-017 0.1684282001120586 0.9857139247301988 -3.261984415863724e-017 0.005344218692808919 4.599723035563907e-016 -0.9999857195613163 -0.005344218692808919 -4.599723035563907e-016 0.9999857195613163 0.03778722120653656 0.3316848252043232 -0.9426331750170188 -0.03778722120653656 -0.3316848252043232 0.9426331750170188 0.07444731259877206 -0.9972153164940292 0.004382943820520862 -0.07444731259877206 0.9972153164940292 -0.004382943820520862 -0.3190230296533958 -3.387307016387933e-007 0.947746963356071 0.3190230296533958 3.387307016387933e-007 -0.947746963356071 0.03242818957297756 0.331514159442729 0.9428927694123016 -0.03242818957297756 -0.331514159442729 -0.9428927694123016 -0.428391047419486 -0.8995381360362913 -0.08551170859707016 0.428391047419486 0.8995381360362913 0.08551170859707016 0.096620987895277 0.8889263129942582 -0.4477436708258138 -0.096620987895277 -0.8889263129942582 0.4477436708258138 -0.1684281857940404 -0.985713927176708 7.297025297092771e-018 0.1684281857940404 0.985713927176708 -7.297025297092771e-018 0.2484753200447397 0.8848239865712221 0.3941402391495622 -0.2484753200447397 -0.8848239865712221 -0.3941402391495622 -0.4241534822457019 -0.9051263251428462 -0.02898549692952567 0.4241534822457019 0.9051263251428462 0.02898549692952567 0.3702863131757861 2.794849320865508e-017 -0.9289176746486653 -0.3702863131757861 -2.794849320865508e-017 0.9289176746486653 0.3291556278174122 0.3380571823925383 -0.8816881047790899 -0.3291556278174122 -0.3380571823925383 0.8816881047790899 -0.4283909470720873 -0.8995381996175712 0.08551154246918034 0.4283909470720873 0.8995381996175712 -0.08551154246918034 0.00534420647697881 -7.185503873166344e-006 0.9999857196007852 -0.00534420647697881 7.185503873166344e-006 -0.9999857196007852 0.3421972052650621 0.3781976168594891 0.860155587850584 -0.3421972052650621 -0.3781976168594891 -0.860155587850584 -0.4199577750881749 -0.9075436447592974 3.995179379812722e-009 0.4199577750881749 0.9075436447592974 -3.995179379812722e-009 0.8007728670257135 -7.155639727126521e-018 -0.598968125558797 -0.8007728670257135 7.155639727126521e-018 0.598968125558797 0.2265426645478447 0.8870897369980587 -0.4021818241197354 -0.2265426645478447 -0.8870897369980587 0.4021818241197354 -0.4241534419131434 -0.9051263461530197 0.02898543104591447 0.4241534419131434 0.9051263461530197 -0.02898543104591447 0.370287246724113 2.791847602566496e-017 0.9289173025159322 -0.370287246724113 -2.791847602566496e-017 -0.9289173025159322 0.3251771624720898 0.9178173352138632 0.2277523922761804 -0.3251771624720898 -0.9178173352138632 -0.2277523922761804 0.9999999999994651 -1.021213629580521e-017 1.034288983214875e-006 0.6891861070879743 0.4665571033273914 -0.5543888338807671 -0.6891861070879743 -0.4665571033273914 0.5543888338807671 -0.9999999999994651 1.021213629580521e-017 -1.034288983214875e-006 0.8007725555961954 1.082289136176546e-017 0.5989685419151311 0.6796603680121492 0.4735256808583966 0.5602099728862223 -0.6796603680121492 -0.4735256808583966 -0.5602099728862223 -0.8007725555961954 -1.082289136176546e-017 -0.5989685419151311 0.9999999999992956 -9.014564059030779e-018 1.187010242994903e-006 -0.9999999999992956 9.014564059030779e-018 -1.187010242994903e-006 0.313686535197523 0.9395316905111851 -0.1374080061749221 -0.313686535197523 -0.9395316905111851 0.1374080061749221 0.3230550412313637 0.9463801774828378 -1.598246447941602e-006 -0.3230550412313637 -0.9463801774828378 1.598246447941602e-006 0.4168035059478051 0.908996610240611 -8.345898481386191e-007 -0.4168035059478051 -0.908996610240611 8.345898481386191e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"102\" source=\"#ID186\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID184\">\r\n\t\t\t\t\t<float_array count=\"352\" id=\"ID187\">-14.26092285976243 -3.267336504556862 -14.50122065856141 -3.267336504556862 -14.54251926898909 -3.17988706781201 -14.26092285976243 -0.1936368490969575 -14.32712549384918 -0.3104567334225453 -14.50122065856142 -0.1936368490969575 -13.28435324929342 -1.428885536193822 -13.5667973286864 -1.343144519761906 -13.35215909967177 -1.312346726885018 -19.3234646320343 -2.775774186125142 -19.18007493019104 -2.902572994601767 -19.34478163719177 -2.902572994601767 -13.11902751273521 0.8971882525866644 -13.33458909656133 0.9284211431238822 -13.29162681686096 1.015373793926696 -19.18007493019104 0.8440785969051348 -19.3234646320343 0.8440785969051348 -19.34720396995544 0.9708767054351376 -11.92267352558833 -6.826298116710207 -12.13631873394668 -6.86110752723275 -12.25721177027786 -6.790163260846058 -19.34478163719177 -4.548037813701737 -19.18007493019104 -4.548037813701737 -19.19373035430908 -4.709301980786576 -19.18007493019104 -2.775774186125141 -19.18007493019104 -2.902572994601766 -19.3234646320343 -2.775774186125141 -11.91381290526125 5.517748780580218 -12.07582188985228 5.418781031966613 -12.12824349977981 5.553476189529911 -19.18007493019104 0.9708767054351369 -19.18007493019104 0.8440785969051341 -19.34720396995544 0.9708767054351369 -12.12265048181766 -7.572720107513859 -12.4568996842455 -7.534966229714509 -12.2830045508424 -7.471974036191307 7.481279052890341 -1.332361574105782 7.306749509412366 -1.247090367960376 8.046522017319962 -1.130607405835401 -19.33767676353455 -4.709301980786575 -19.34478163719177 -4.548037813701736 -19.19373035430908 -4.709301980786575 7.916809577349874 -0.6200375446511065 7.177049311337771 -0.7365686098342905 7.113509712554342 -0.6200375446511065 -12.60728008267938 5.152993841333039 -12.78200409385244 5.214550165207798 -12.66254653544607 5.286983389437513 7.916809577349874 -1.481877666592482 7.113509712554342 -1.481877666592482 7.177049311337772 -1.365347363029752 -19.18007493019104 3.436148046595554 -19.34720396995544 3.436148046595554 -19.33767676353455 3.597412461610878 -6.637237714247711 -12.74746105825016 -6.789128990141371 -12.83913569252778 -7.202867050126867 -12.79965041751035 8.000807655241598 -1.284367781877518 7.435563000784418 -1.253156713644663 8.000807655241598 -1.051405475536982 -19.33767676353454 -4.84390537779191 -19.19373035430908 -4.84390537779191 -19.23469066619873 -5.288492384512499 -7.089418961990558 11.42791153601595 -6.936062752823792 11.33775889249149 -7.497939059796469 11.28498356280143 8.046521833787153 -0.9721732080846033 7.306749325871717 -0.855691007925414 7.481278869343953 -0.7704193328896771 -19.19373035430908 3.597412461610879 -19.18007493019104 3.436148046595555 -19.33767676353455 3.597412461610879 -7.369825158474165 -12.2661650838376 -6.807597071843823 -12.3165685238239 -7.373684867622481 -12.36558529324536 -0.9523345474047307 -1.253156713644663 -1.586747984026279 -1.284367781877517 -1.586747984026279 -1.051405475536982 -19.30925488471985 -5.288492384512495 -19.33767676353455 -4.843905377791907 -19.23469066619873 -5.288492384512495 -7.026502570918128 11.14659193631369 -6.612407509575389 11.18368896840311 -7.024437646714015 11.04713849317582 7.435563000784419 -0.8496545304854709 8.000807655241598 -0.8184441655874251 -19.19373035430908 4.696283635055127 -19.33767676353455 4.696283635055127 -19.30925488471985 5.140870625317183 -2.014115649206309 -12.93522160548694 -1.991314094578658 -13.03305745380377 -2.422679319116055 -13.06955143368769 -1.596487895227738 -2.789542415683737 -1.795261294877364 -2.875262727568388 -2.429125493778011 -2.672445961980781 19.30925488471977 5.111744556259069 19.23469066619865 5.111744556259068 18.98195147514334 5.570565771945749 -1.575875569072168 11.70481331340891 -1.600637823938743 11.60727270824166 -2.188957930681452 11.65672342128608 -0.9523345474047285 -0.8496545304854711 -1.586747984026277 -1.051405475536982 -1.586747984026277 -0.8184441655874253 -19.23393808117686 5.142587001218538 -19.19304180662768 4.697996395662434 -19.30850229921694 5.142593680539108 -1.447328158709876 -13.32921368835843 -1.852035486588968 -13.47058325486161 -2.03526438040989 -13.38141326564552 -1.162771101234705 -1.081029775445771 -1.233061224869425 -1.197511247511588 -2.0658382000911 -1.081029775445771 19.20978307723999 4.149075244325578 18.98195147514343 4.149075244325578 18.88520956039429 4.310342993249799 19.20978307723999 5.570565771945566 19.30925488471985 5.111744556258882 18.98195147514343 5.570565771945566 -2.211275104051926 12.3639478654558 -1.780305455998344 12.32466851538065 -2.392882900506015 12.27274921558506 -1.596484536613035 0.6977740394742718 -2.429122137695238 0.5806783548559564 -1.795257934409154 0.7834948204452205 18.98195147514343 -5.713607677473338 19.23469066619873 -5.254786509630095 19.20978307723999 -5.713607677473338 19.23546720119447 -5.25301637823222 19.31003141920311 -5.253009485083976 19.21062783605071 -5.711839834884016 4.322774348413157 -7.633655863766362 4.195476574851193 -7.703165834573777 4.120827068660837 -7.574583915238395 -1.162771101234708 -1.021777341054808 -2.065838200091101 -1.021777341054808 -1.233061224869426 -0.9052966309337139 18.88520956039429 1.220751038278707 18.85544061660767 1.347546326955163 19.20978307723999 1.220751038278707 19.20978307723999 4.310342993249799 2.563221074984186 8.536311706901527 2.364832289113026 8.470198192077113 2.21004758401401 8.575937602597728 18.88520956039429 -5.422194446223683 18.98195147514343 -5.260926449374481 19.20978307723999 -5.422194446223683 18.98195147514343 -5.26092644937448 19.20978307723999 -5.26092644937448 19.20978307723999 -5.422194446223682 0.1146304451731955 -8.842369097665188 -0.1073383621633756 -8.806969540874464 0.05541078008391931 -8.708909056030961 18.85544061660767 -3.279318302324934 18.88520956039429 -3.152523713614531 19.20978307723999 -3.279318302324934 19.20978307723999 1.220751038278706 18.85544061660767 1.347546326955161 19.20978307723999 1.347546326955161 1.414737226473141 2.681464436820052 1.060449668087176 2.714365251456016 1.283321707504077 2.746058902699369 19.20978307723999 -3.279318302324935 19.20978307723999 -3.152523713614531 1.520888431116687 -3.802192102175359 1.478300328370118 -3.889256168860493 1.29792042368622 -3.770919075514688 1.520936551287351 1.732151967067352 1.297968527428662 1.700878897507549 1.240087476461425 1.819216476633805 1.47847632952945 -3.889095433125303 1.24021531170752 -3.889095433125303 1.298096197691254 -3.770758554053941 1.47847632952945 1.819465532770021 1.521064265145528 1.732400780884212 1.24021531170752 1.819465532770021</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"176\" source=\"#ID187\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID183\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID181\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID182\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"60\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID183\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID184\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 0 3 6 4 1 5 0 6 2 7 8 8 10 9 11 10 6 11 6 12 14 13 1 14 16 15 10 16 8 17 8 18 2 19 18 20 6 21 11 22 20 23 16 24 11 25 10 26 6 27 22 28 14 29 24 30 16 31 8 32 8 33 18 34 26 35 28 36 29 37 30 38 22 39 6 40 20 41 30 42 29 43 34 44 22 45 36 46 14 47 30 48 34 49 38 50 24 51 8 52 26 53 26 54 18 55 40 56 42 57 28 58 30 59 22 60 20 61 44 62 36 63 22 64 46 65 30 66 38 67 48 68 50 69 24 70 26 71 52 72 26 73 40 74 54 75 42 76 30 77 46 78 22 79 44 80 56 81 36 82 46 83 30 59 48 84 58 85 50 86 26 87 52 88 52 89 40 90 60 91 62 92 54 93 30 94 46 95 44 96 64 97 56 98 46 99 66 100 68 101 30 102 58 103 70 104 50 105 52 106 52 107 60 108 72 109 74 110 62 111 30 112 66 113 64 114 76 115 66 116 46 117 64 118 78 119 56 120 66 121 80 122 30 123 68 124 82 125 70 126 72 127 70 128 52 129 72 130 60 131 84 132 72 133 74 134 30 135 80 136 76 137 86 138 87 139 87 140 66 113 76 115 78 141 66 142 87 143 90 144 82 145 91 146 82 147 72 148 91 149 84 150 91 151 72 152 86 153 90 154 94 155 87 156 86 157 94 158 78 159 87 160 96 161 94 162 90 154 91 163 84 164 98 165 91 166 96 167 87 168 100 169 98 170 100 171 91 172 98 173 96 174 100 175</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"60\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID183\" />\r\n\t\t\t\t\t<p>3 4 5 4 7 5 9 3 5 7 12 13 4 15 7 9 13 17 19 3 9 21 12 7 13 12 17 15 23 7 9 17 25 27 19 9 31 32 33 21 7 23 35 32 31 15 37 23 39 35 31 27 9 25 41 19 27 31 33 43 45 21 23 47 23 37 49 39 31 27 25 51 41 27 53 31 43 55 45 23 47 47 37 57 59 49 31 53 27 51 61 41 53 31 55 63 65 45 47 67 47 57 59 31 69 53 51 71 73 61 53 31 63 75 77 65 67 65 47 67 67 57 79 69 31 81 73 71 83 73 53 71 73 85 61 81 31 75 88 89 77 77 67 88 88 67 79 92 83 93 92 73 83 73 92 85 95 93 89 95 89 88 97 88 79 92 93 95 92 99 85 101 88 97 92 101 99 101 97 99</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID188\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID191\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID194\">0.6034737825393677 1.943698525428772 -0.1336532384157181 0.6624386310577393 1.940856695175171 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6624386310577393 1.940856695175171 -0.1336532384157181 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1147843822836876 0.62096107006073 1.943698525428772 -0.1147843822836876 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.940856695175171 -0.111865259706974 0.62096107006073 1.943698525428772 -0.1525221467018127 0.62096107006073 1.943698525428772 -0.1525221467018127 0.70525062084198 1.934461951255798 -0.1147843822836876 0.70525062084198 1.934461951255798 -0.1147843822836876 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.70525062084198 1.934461951255798 -0.1525222510099411 0.70525062084198 1.934461951255798 -0.1525222510099411 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7180529236793518 1.930909156799316 -0.1445471495389938</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID194\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID192\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID195\">-0.268503656107856 0.9630575363932906 0.02063899834778602 0.1092906628252984 0.9940098344680534 -7.69523253476409e-009 -0.1975743797487748 0.9600174138981226 0.1983202699656487 0.1975743797487748 -0.9600174138981226 -0.1983202699656487 -0.1092906628252984 -0.9940098344680534 7.69523253476409e-009 0.268503656107856 -0.9630575363932906 -0.02063899834778602 -0.04316329546441134 0.9022464711878826 0.4290550490947117 0.04316329546441134 -0.9022464711878826 -0.4290550490947117 -0.188685970994036 0.9568090513440232 -0.2211651953092718 0.188685970994036 -0.9568090513440232 0.2211651953092718 0.09074013728241166 0.8894532731297745 0.447927563792071 -0.09074013728241166 -0.8894532731297745 -0.447927563792071 -0.05077244356092967 0.9044995626227409 -0.4234414955931014 0.05077244356092967 -0.9044995626227409 0.4234414955931014 0.2484753200447397 0.8848239865712221 0.3941402391495622 -0.2484753200447397 -0.8848239865712221 -0.3941402391495622 0.096620987895277 0.8889263129942582 -0.4477436708258138 -0.096620987895277 -0.8889263129942582 0.4477436708258138 0.3251771624720898 0.9178173352138632 0.2277523922761804 -0.3251771624720898 -0.9178173352138632 -0.2277523922761804 0.2265426645478447 0.8870897369980587 -0.4021818241197354 -0.2265426645478447 -0.8870897369980587 0.4021818241197354 0.3230550412313637 0.9463801774828378 -1.598246447941602e-006 -0.3230550412313637 -0.9463801774828378 1.598246447941602e-006 0.313686535197523 0.9395316905111851 -0.1374080061749221 -0.313686535197523 -0.9395316905111851 0.1374080061749221</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID195\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID193\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID191\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID192\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID193\" />\r\n\t\t\t\t\t<p>0 1 2 2 1 6 0 8 1 6 1 10 8 12 1 1 14 10 12 16 1 1 18 14 16 20 1 1 22 18 20 24 1 1 24 22</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID193\" />\r\n\t\t\t\t\t<p>3 4 5 7 4 3 4 9 5 11 4 7 4 13 9 11 15 4 4 17 13 15 19 4 4 21 17 19 23 4 4 25 21 23 25 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID196\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID197\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID206\">0.6591432690620422 1.832582235336304 0.1425205767154694 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6591432690620422 1.832582235336304 0.1425205767154694 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6581888198852539 1.925890922546387 0.04520654678344727 0.7044316530227661 1.922605037689209 0.06054756790399551 0.7044316530227661 1.922605037689209 0.06054756790399551</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID206\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID198\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID207\">0.07889354688882974 -0.9052810488935695 -0.4174230836614798 -0.3613255746133597 -0.7363735528321385 0.5720120801344139 -0.02555645774528356 -0.7356610195326022 0.6768675880907327 0.02555645774528356 0.7356610195326022 -0.6768675880907327 0.3613255746133597 0.7363735528321385 -0.5720120801344139 -0.07889354688882974 0.9052810488935695 0.4174230836614798 -0.617978362244385 -0.7228716127692982 0.3091267947785527 0.617978362244385 0.7228716127692982 -0.3091267947785527 0.245498465440001 -0.7367781301705658 0.6299908653059739 -0.245498465440001 0.7367781301705658 -0.6299908653059739 -0.6981146516868598 -0.7101009198138653 -0.09161122627515073 0.6981146516868598 0.7101009198138653 0.09161122627515073 0.4229439574322713 -0.7494576529893595 0.5093443189505603 -0.4229439574322713 0.7494576529893595 -0.5093443189505603 0.6309107859638151 0.7132731859136506 0.3052751912801168 -0.6309107859638151 -0.7132731859136506 -0.3052751912801168 -0.668049406363227 0.7436903212606503 0.02519318798744152 0.668049406363227 -0.7436903212606503 -0.02519318798744152 0.3801733720381798 0.7237166802557863 0.5759360849197276 -0.3801733720381798 -0.7237166802557863 -0.5759360849197276 -0.5707129137868127 0.7192086630024464 0.3962646452803979 0.5707129137868127 -0.7192086630024464 -0.3962646452803979 0.0133747525654576 0.7218060729221357 0.6919661184527297 -0.0133747525654576 -0.7218060729221357 -0.6919661184527297 -0.327398087392843 0.7209079855479794 0.6108208974361165 0.327398087392843 -0.7209079855479794 -0.6108208974361165</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID207\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID205\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID208\">1.670397217954203 12.03873704482643 1.176526164090342 11.89637820790931 1.90788936543112 10.97402130969709 -6.542116642659369 8.418421955571644 -6.807315665933135 8.078643921026838 -5.570119367677798 7.645708411753829 10.16757882423856 10.72667158569806 9.998266154211549 9.653925714034958 10.59645423422299 10.58870047207641 -9.328879077613392 3.677675743203012 -9.444353010918027 3.306112027999903 -8.069237158150896 3.286841758651705 14.64976446746045 7.966015200863561 13.87068795816023 7.117704896956166 14.93720437652424 7.723612438930211 9.467765211356864 -1.453302206882614 8.168684772799315 -1.104275795865729 9.543800436155987 -1.084997163890837 -17.0972853500271 2.619394381338049 -18.3762790715688 2.644007760555567 -18.24485641557415 3.125422876902387 7.343712022776949 -5.939154573314194 7.042372400553623 -6.287974280806098 6.061597792196416 -5.55325232752239 -17.204848032999 -0.8227041725542247 -18.36637267839059 -1.22674786200653 -18.48383053894326 -0.7977327367101881 -0.9267127151734594 -10.43011461864739 -1.415903210216094 -10.57918238555594 -1.664725312902166 -9.536787660905636 -16.67259260139242 -4.36693626276425 -16.92224900716855 -4.069997286398384 -15.7903887940536 -3.616838921844481 -11.0216266886206 -8.922337946536512 -11.46257013647479 -8.757281792566458 -10.80642236134923 -7.875322928325505</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID208\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID199\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID197\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID198\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID199\" />\r\n\t\t\t\t\t<p>0 1 2 0 6 1 8 0 2 0 10 6 12 0 8 10 0 15 12 17 0 0 19 15 17 21 0 0 23 19 0 21 25 0 25 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID199\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID205\" />\r\n\t\t\t\t\t<p>3 0 4 1 5 2 4 3 7 4 5 5 3 6 5 7 9 8 7 9 11 10 5 11 9 12 5 13 13 14 14 15 5 16 11 17 5 18 16 19 13 20 14 21 18 22 5 23 5 24 20 25 16 26 18 27 22 28 5 29 24 30 20 31 5 32 22 33 24 34 5 35</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID211\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID212\">\r\n\t\t\t\t\t<float_array count=\"234\" id=\"ID215\">-0.1970338225364685 -1.931188106536865 0.1519460678100586 -0.1967810839414597 -1.975753784179688 0.06137931346893311 -0.479192852973938 -1.931188106536865 0.1536669880151749 -0.479192852973938 -1.931188106536865 0.1536669880151749 -0.1967810839414597 -1.975753784179688 0.06137931346893311 -0.1970338225364685 -1.931188106536865 0.1519460678100586 -0.4238884449005127 -1.952622652053833 0.111620157957077 -0.4238884449005127 -1.952622652053833 0.111620157957077 0.003534962190315127 -1.975753784179688 0.06137931346893311 0.003534962190315127 -1.975753784179688 0.06137931346893311 -0.5108060836791992 -1.828675627708435 0.2087062001228333 -0.5108060836791992 -1.828675627708435 0.2087062001228333 -0.3540624976158142 -1.968288421630859 0.07805071771144867 -0.3540624976158142 -1.968288421630859 0.07805071771144867 0.003534962190315127 -1.931188106536865 0.1527040004730225 0.003534962190315127 -1.931188106536865 0.1527040004730225 -0.1976474672555924 -1.828675627708435 0.2088393121957779 -0.1976474672555924 -1.828675627708435 0.2088393121957779 0.2041033208370209 -1.931188106536865 0.1519460678100586 0.2041033208370209 -1.931188106536865 0.1519460678100586 -0.5159977078437805 -1.740602254867554 0.2356471866369247 -0.5159977078437805 -1.740602254867554 0.2356471866369247 0.2038507014513016 -1.975753784179688 0.06137931346893311 0.2038507014513016 -1.975753784179688 0.06137931346893311 0.2047170847654343 -1.828675627708435 0.2088393121957779 0.2047170847654343 -1.828675627708435 0.2088393121957779 0.003534962190315127 -1.828675627708435 0.2087676078081131 0.003534962190315127 -1.828675627708435 0.2087676078081131 -0.1991988271474838 -1.740602254867554 0.2356471866369247 -0.1991988271474838 -1.740602254867554 0.2356471866369247 0.4862626791000366 -1.931188106536865 0.1536669880151749 0.4862626791000366 -1.931188106536865 0.1536669880151749 0.5178753733634949 -1.828675627708435 0.2087062001228333 0.5178753733634949 -1.828675627708435 0.2087062001228333 -0.5156968235969544 -1.602517247200012 0.2691195011138916 -0.5156968235969544 -1.602517247200012 0.2691195011138916 0.4309577345848084 -1.952622652053833 0.111620157957077 0.4309577345848084 -1.952622652053833 0.111620157957077 0.5230674743652344 -1.740602254867554 0.2356471866369247 0.5230674743652344 -1.740602254867554 0.2356471866369247 0.2062683254480362 -1.740602254867554 0.2356471866369247 0.2062683254480362 -1.740602254867554 0.2356471866369247 0.003534962190315127 -1.742378234863281 0.2356471866369247 0.003534962190315127 -1.742378234863281 0.2356471866369247 -0.2001994103193283 -1.602517247200012 0.2691195011138916 -0.2001994103193283 -1.602517247200012 0.2691195011138916 0.3611322641372681 -1.968288421630859 0.07805071771144867 0.3611322641372681 -1.968288421630859 0.07805071771144867 -0.5085935592651367 -1.473212003707886 0.2946602702140808 -0.5085935592651367 -1.473212003707886 0.2946602702140808 0.5227663516998291 -1.602517247200012 0.2691195011138916 0.5227663516998291 -1.602517247200012 0.2691195011138916 0.2072690576314926 -1.602517247200012 0.2691195011138916 0.2072690576314926 -1.602517247200012 0.2691195011138916 0.003534962190315127 -1.602517247200012 0.2691195011138916 0.003534962190315127 -1.602517247200012 0.2691195011138916 -0.2037112414836884 -1.473212003707886 0.2946602702140808 -0.2037112414836884 -1.473212003707886 0.2946602702140808 -0.4516721367835999 -1.365588307380676 0.3139455020427704 -0.4516721367835999 -1.365588307380676 0.3139455020427704 0.5156629085540772 -1.473212003707886 0.2946602702140808 0.5156629085540772 -1.473212003707886 0.2946602702140808 0.2107809633016586 -1.473212003707886 0.2946602702140808 0.2107809633016586 -1.473212003707886 0.2946602702140808 0.003534962190315127 -1.473212003707886 0.2946602702140808 0.003534962190315127 -1.473212003707886 0.2946602702140808 -0.3896275460720062 -1.332627534866333 0.3204693794250488 -0.3896275460720062 -1.332627534866333 0.3204693794250488 -0.2025128901004791 -1.305356502532959 0.3259882032871246 -0.2025128901004791 -1.305356502532959 0.3259882032871246 0.4587418138980866 -1.365588307380676 0.3139455020427704 0.4587418138980866 -1.365588307380676 0.3139455020427704 0.2095824927091599 -1.305356502532959 0.3259882032871246 0.2095824927091599 -1.305356502532959 0.3259882032871246 0.003534962190315127 -1.301196455955505 0.3259882032871246 0.003534962190315127 -1.301196455955505 0.3259882032871246 0.3966972529888153 -1.332627534866333 0.3204693794250488 0.3966972529888153 -1.332627534866333 0.3204693794250488</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"78\" source=\"#ID215\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID213\">\r\n\t\t\t\t\t<float_array count=\"234\" id=\"ID216\">-4.515878047999203e-005 -0.7243893371074355 0.6893910981770325 0.00167219103053643 -0.897063476184309 0.4418985443212967 0.006410489730464489 -0.6094093748595211 0.792829817460685 -0.006410489730464489 0.6094093748595211 -0.792829817460685 -0.00167219103053643 0.897063476184309 -0.4418985443212967 4.515878047999203e-005 0.7243893371074355 -0.6893910981770325 0.01264943619488881 -0.8853302774953902 0.4647905888826568 -0.01264943619488881 0.8853302774953902 -0.4647905888826568 7.878145810645445e-010 -0.8982732127961225 0.4394374075712401 -7.878145810645445e-010 0.8982732127961225 -0.4394374075712401 0.001474960385020964 -0.375806674823649 0.9266969125069181 -0.001474960385020964 0.375806674823649 -0.9266969125069181 0.002320778656645531 -0.9043218214667207 0.4268450037256373 -0.002320778656645531 0.9043218214667207 -0.4268450037256373 1.857749683900308e-009 -0.7236993566282646 0.6901153825381927 -1.857749683900308e-009 0.7236993566282646 -0.6901153825381927 -0.0005486435031754847 -0.3899735549035239 0.9208258931341008 0.0005486435031754847 0.3899735549035239 -0.9208258931341008 4.516323083206616e-005 -0.7243893393134647 0.6893910958587183 -4.516323083206616e-005 0.7243893393134647 -0.6893910958587183 -0.0001626197986828542 -0.2635487516562606 0.9646460641371153 0.0001626197986828542 0.2635487516562606 -0.9646460641371153 -0.001672191344845518 -0.8970634771177262 0.4418985424252507 0.001672191344845518 0.8970634771177262 -0.4418985424252507 0.0005486438164148678 -0.3899735550538463 0.9208258930702521 -0.0005486438164148678 0.3899735550538463 -0.9208258930702521 4.740422479309856e-010 -0.3897250116678094 0.9209312760898751 -4.740422479309856e-010 0.3897250116678094 -0.9209312760898751 -0.0006334395315461648 -0.2638390090469637 0.964566522360939 0.0006334395315461648 0.2638390090469637 -0.964566522360939 -0.006410483636061917 -0.6094089467559926 0.7928301465719526 0.006410483636061917 0.6094089467559926 -0.7928301465719526 -0.001474960054633009 -0.3758066845522592 0.9266969085621664 0.001474960054633009 0.3758066845522592 -0.9266969085621664 -1.421866300011938e-018 -0.2151078777409298 0.9765902932825993 1.421866300011938e-018 0.2151078777409298 -0.9765902932825993 -0.01264950172687415 -0.8853301863937345 0.464790760629014 0.01264950172687415 0.8853301863937345 -0.464790760629014 0.0001626196653223157 -0.2635487189581836 0.9646460730705043 -0.0001626196653223157 0.2635487189581836 -0.9646460730705043 0.0006334415469292542 -0.2638390102706938 0.9645665220248874 -0.0006334415469292542 0.2638390102706938 -0.9645665220248874 2.009365864777678e-009 -0.2659351138115117 0.9639909310994883 -2.009365864777678e-009 0.2659351138115117 -0.9639909310994883 -0.0003118220590012659 -0.2144534401416348 0.9767341627988764 0.0003118220590012659 0.2144534401416348 -0.9767341627988764 -0.002320771401198793 -0.9043218400706571 0.4268449643504352 0.002320771401198793 0.9043218400706571 -0.4268449643504352 -1.908724997150857e-018 -0.1867975922323924 0.9823984219939387 1.908724997150857e-018 0.1867975922323924 -0.9823984219939387 -3.846534772188975e-018 -0.2151078982051234 0.9765902887750698 3.846534772188975e-018 0.2151078982051234 -0.9765902887750698 0.0003118221621229709 -0.2144534401719119 0.9767341627921956 -0.0003118221621229709 0.2144534401719119 -0.9767341627921956 -3.415587396278465e-018 -0.2133083393301314 0.9769849294498977 3.415587396278465e-018 0.2133083393301314 -0.9769849294498977 -0.0004993295652226545 -0.188260279239131 0.9821190446838864 0.0004993295652226545 0.188260279239131 -0.9821190446838864 -0.001573872363585238 -0.1798939088582221 0.9836847586912652 0.001573872363585238 0.1798939088582221 -0.9836847586912652 1.950937990684165e-018 -0.1867975866733153 0.9823984230509664 -1.950937990684165e-018 0.1867975866733153 -0.9823984230509664 0.0004993296850496009 -0.1882602789748251 0.9821190447344897 -0.0004993296850496009 0.1882602789748251 -0.9821190447344897 -3.48401965557127e-010 -0.1874269755801675 0.9822785393282657 3.48401965557127e-010 0.1874269755801675 -0.9822785393282657 -0.003781893832025225 -0.1854015646517295 0.9826555638186424 0.003781893832025225 0.1854015646517295 -0.9826555638186424 -0.0002058559345083983 -0.1824473280205556 0.9832156071388891 0.0002058559345083983 0.1824473280205556 -0.9832156071388891 0.001573874654780835 -0.1798939133359203 0.9836847578687288 -0.001573874654780835 0.1798939133359203 -0.9836847578687288 0.0002058526909813292 -0.182447326200633 0.9832156074772764 -0.0002058526909813292 0.182447326200633 -0.9832156074772764 -2.788418118671642e-009 -0.1791754175536094 0.9838171424327236 2.788418118671642e-009 0.1791754175536094 -0.9838171424327236 0.003781894494418022 -0.1854015651104945 0.9826555637295359 -0.003781894494418022 0.1854015651104945 -0.9826555637295359</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"78\" source=\"#ID216\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID214\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID212\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID213\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"52\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID214\" />\r\n\t\t\t\t\t<p>0 1 2 1 6 2 8 1 0 2 10 0 1 12 6 8 0 14 10 16 0 18 8 14 0 16 14 10 20 16 22 8 18 18 14 24 14 16 26 20 28 16 22 18 30 18 24 32 14 26 24 16 28 26 20 34 28 36 22 30 30 18 32 32 24 38 24 26 40 26 28 42 34 44 28 46 22 36 24 40 38 26 42 40 28 44 42 34 48 44 40 50 38 40 42 52 42 44 54 48 56 44 40 52 50 42 54 52 44 56 54 48 58 56 52 60 50 52 54 62 54 56 64 58 66 56 52 62 60 54 64 62 56 68 64 56 66 68 62 70 60 64 72 62 64 68 74 62 76 70 62 72 76 64 74 72</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"52\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID214\" />\r\n\t\t\t\t\t<p>3 4 5 3 7 4 5 4 9 5 11 3 7 13 4 15 5 9 5 17 11 15 9 19 15 17 5 17 21 11 19 9 23 25 15 19 27 17 15 17 29 21 31 19 23 33 25 19 25 27 15 27 29 17 29 35 21 31 23 37 33 19 31 39 25 33 41 27 25 43 29 27 29 45 35 37 23 47 39 41 25 41 43 27 43 45 29 45 49 35 39 51 41 53 43 41 55 45 43 45 57 49 51 53 41 53 55 43 55 57 45 57 59 49 51 61 53 63 55 53 65 57 55 57 67 59 61 63 53 63 65 55 65 69 57 69 67 57 61 71 63 63 73 65 75 69 65 71 77 63 77 73 63 73 75 65</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID217\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID218\">\r\n\t\t\t\t\t<float_array count=\"486\" id=\"ID222\">-0.06212541833519936 -1.890682101249695 0.185465544462204 -0.004580865148454905 -1.885924220085144 0.1778659224510193 -0.003423498477786779 -1.882099986076355 0.1798757761716843 -0.003423498477786779 -1.882099986076355 0.1798757761716843 -0.004580865148454905 -1.885924220085144 0.1778659224510193 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362602695822716 -1.877979755401611 0.1924054622650147 -0.05362602695822716 -1.877979755401611 0.1924054622650147 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.003423502203077078 -1.889748334884644 0.1758555620908737 -0.003423502203077078 -1.889748334884644 0.1758555620908737 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.000261504203081131 -1.879300594329834 0.18134805560112 -0.000261504203081131 -1.879300594329834 0.18134805560112 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.01774921268224716 -1.872801303863525 0.1951804459095001 -0.01774921268224716 -1.872801303863525 0.1951804459095001 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.004193538334220648 -1.907847166061401 0.190097764134407 -0.004193538334220648 -1.907847166061401 0.190097764134407 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.01031874679028988 -1.903075337409973 0.1926834881305695 -0.01031874679028988 -1.903075337409973 0.1926834881305695 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.000261504203081131 -1.892548799514771 0.1743834316730499 -0.000261504203081131 -1.892548799514771 0.1743834316730499 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.01256070844829083 -1.896557927131653 0.1962146610021591 -0.01256070844829083 -1.896557927131653 0.1962146610021591 -0.05362602695822716 -1.882304906845093 0.2003258913755417 0.004057842772454023 -1.878275752067566 0.1818866580724716 0.004057842772454023 -1.878275752067566 0.1818866580724716 0.004173615481704474 -1.909591317176819 0.189151793718338 0.004173615481704474 -1.909591317176819 0.189151793718338 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.916087865829468 0.1715866476297379 0.00344362435862422 -1.916087865829468 0.1715866476297379 -0.01031874306499958 -1.890042185783386 0.1997462660074234 -0.01031874306499958 -1.890042185783386 0.1997462660074234 -0.01774921268224716 -1.877128958702087 0.2031001746654511 -0.01774921268224716 -1.877128958702087 0.2031001746654511 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004173615481704474 -1.905439138412476 0.1941477060317993 0.004173615481704474 -1.905439138412476 0.1941477060317993 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.920415163040161 0.1795060932636261 -0.0002153222449123859 -1.904404282569885 0.194709837436676 -0.0002153222449123859 -1.904404282569885 0.194709837436676 0.00344362435862422 -1.916087865829468 0.1715866476297379 0.00344362435862422 -1.916087865829468 0.1715866476297379 -0.003428266383707523 -1.901579737663269 0.1962397992610931 -0.003428266383707523 -1.901579737663269 0.1962397992610931 0.004057839047163725 -1.893572092056274 0.1738448441028595 0.004057839047163725 -1.893572092056274 0.1738448441028595 -0.004604290705174208 -1.897721648216248 0.198330745100975 -0.004604290705174208 -1.897721648216248 0.198330745100975 -0.01774921268224716 -1.877128958702087 0.2031001746654511 -0.01774921268224716 -1.877128958702087 0.2031001746654511 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.0083771962672472 -1.879300594329834 0.18134805560112 0.0083771962672472 -1.879300594329834 0.18134805560112 0.008562571369111538 -1.904404282569885 0.194709837436676 0.008562571369111538 -1.904404282569885 0.194709837436676 0.01254078187048435 -1.907847166061401 0.190097764134407 0.01254078187048435 -1.907847166061401 0.190097764134407 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.0252343937754631 -1.909103035926819 0.1754486709833145 -0.003428266383707523 -1.893861889839172 0.200422078371048 -0.003428266383707523 -1.893861889839172 0.200422078371048 -0.004193538334220648 -1.885270476341248 0.2023317068815231 -0.004193538334220648 -1.885270476341248 0.2023317068815231 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.02461381815373898 -1.873335719108582 0.1948819309473038 0.02461381815373898 -1.873335719108582 0.1948819309473038 0.004173621535301209 -1.898949146270752 0.2003982812166214 0.004173621535301209 -1.898949146270752 0.2003982812166214 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.008377193473279476 -1.892548799514771 0.1743834316730499 0.008377193473279476 -1.892548799514771 0.1743834316730499 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.01153918355703354 -1.882099986076355 0.1798757761716843 0.01153918355703354 -1.882099986076355 0.1798757761716843 0.01177550666034222 -1.901579737663269 0.1962397992610931 0.01177550666034222 -1.901579737663269 0.1962397992610931 0.0186659786850214 -1.903075337409973 0.1926834881305695 0.0186659786850214 -1.903075337409973 0.1926834881305695 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.05625637620687485 -1.903384566307068 0.1785260140895844 -0.0002153187524527311 -1.89103627204895 0.2019526362419128 -0.0002153187524527311 -1.89103627204895 0.2019526362419128 0.004173621535301209 -1.883522987365723 0.2032789885997772 0.004173621535301209 -1.883522987365723 0.2032789885997772 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.05625637620687485 -1.877979755401611 0.1924054622650147 0.05625637620687485 -1.877979755401611 0.1924054622650147 0.01295152120292187 -1.897721648216248 0.198330745100975 0.01295152120292187 -1.897721648216248 0.198330745100975 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.01153918355703354 -1.889748334884644 0.1758555620908737 0.01153918355703354 -1.889748334884644 0.1758555620908737 0.004173621535301209 -1.890002012252808 0.2025137692689896 0.004173621535301209 -1.890002012252808 0.2025137692689896 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.01269654557108879 -1.885924220085144 0.1778659224510193 0.01269654557108879 -1.885924220085144 0.1778659224510193 0.01177550666034222 -1.893861889839172 0.200422078371048 0.01177550666034222 -1.893861889839172 0.200422078371048 0.02090794593095779 -1.896557927131653 0.1962146610021591 0.02090794593095779 -1.896557927131653 0.1962146610021591 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.890682101249695 0.185465544462204 0.064755879342556 -1.890682101249695 0.185465544462204 0.008562571369111538 -1.89103627204895 0.2019526362419128 0.008562571369111538 -1.89103627204895 0.2019526362419128 0.01254078559577465 -1.885270476341248 0.2023317068815231 0.01254078559577465 -1.885270476341248 0.2023317068815231 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.890682101249695 0.185465544462204 0.064755879342556 -1.890682101249695 0.185465544462204 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.0186659786850214 -1.890042185783386 0.1997462660074234 0.0186659786850214 -1.890042185783386 0.1997462660074234</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"162\" source=\"#ID222\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID219\">\r\n\t\t\t\t\t<float_array count=\"486\" id=\"ID223\">-0.1559367835908594 0.4724906605952762 -0.8674308590161968 -0.1571837693401717 0.456705339978458 -0.875621776277393 -0.1522451649855252 0.5550067500675552 -0.8177951559638763 0.1522451649855252 -0.5550067500675552 0.8177951559638763 0.1571837693401717 -0.456705339978458 0.875621776277393 0.1559367835908594 -0.4724906605952762 0.8674308590161968 -0.1390503382858027 0.3378735749610511 -0.9308632825316738 0.1390503382858027 -0.3378735749610511 0.9308632825316738 -0.4869393082831401 0.8579505478323806 -0.1637405494153943 0.4869393082831401 -0.8579505478323806 0.1637405494153943 -0.5650701725602941 -0.7240143539059234 -0.3955994380947325 -0.5654194957188525 -0.7237957918031766 -0.3955002473185714 -0.9999999993758014 -1.504630552647389e-005 -3.196882694804338e-005 0.9999999993758014 1.504630552647389e-005 3.196882694804338e-005 0.5654194957188525 0.7237957918031766 0.3955002473185714 0.5650701725602941 0.7240143539059234 0.3955994380947325 -0.1873666787595777 0.2714871219833654 -0.9440277910569129 0.1873666787595777 -0.2714871219833654 0.9440277910569129 -0.9999999976347745 6.227543176424389e-005 2.919282880435985e-005 0.9999999976347745 -6.227543176424389e-005 -2.919282880435985e-005 -0.1284827264643132 0.7799780092813398 -0.6124757089369463 0.1284827264643132 -0.7799780092813398 0.6124757089369463 -0.2693333263803373 -0.8451188910684884 -0.4617722590845744 0.2693333263803373 0.8451188910684884 0.4617722590845744 -0.1085841614822981 0.07656549866794069 -0.9911343018425484 0.1085841614822981 -0.07656549866794069 0.9911343018425484 -0.5656655764677463 0.7237428511543926 0.3952451656912744 0.5656655764677463 -0.7237428511543926 -0.3952451656912744 -0.215460344750203 0.9745977197732217 -0.06112384520758304 0.215460344750203 -0.9745977197732217 0.06112384520758304 -0.06024289250176393 -0.7152519924570895 0.6962653094828037 -0.06680914302018613 -0.535661734201317 0.8417856288398764 -0.1098236036290324 -0.6959721181523937 0.7096207345056963 0.1098236036290324 0.6959721181523937 -0.7096207345056963 0.06680914302018613 0.535661734201317 -0.8417856288398764 0.06024289250176393 0.7152519924570895 -0.6962653094828037 -0.2693810262618333 -0.8451073808799046 -0.4617655005221041 0.2693810262618333 0.8451073808799046 0.4617655005221041 -0.06641723789961297 -0.4778104061893048 0.8759486093641555 -0.1492248560790995 -0.5551857009119028 0.8182302731084516 0.1492248560790995 0.5551857009119028 -0.8182302731084516 0.06641723789961297 0.4778104061893048 -0.8759486093641555 -0.1801642414375255 0.140548577976789 -0.9735434984303185 0.1801642414375255 -0.140548577976789 0.9735434984303185 -0.06109943537755055 -0.4210572589614811 0.9049738359048778 -0.1598490402081354 -0.4688447286817832 0.8686960945761431 0.1598490402081354 0.4688447286817832 -0.8686960945761431 0.06109943537755055 0.4210572589614811 -0.9049738359048778 -0.01706439951246839 0.8069219832866875 -0.5904114829150576 0.01706439951246839 -0.8069219832866875 0.5904114829150576 -0.005922541934862095 -0.7145168845725065 0.6995931282951752 0.005922541934862095 0.7145168845725065 -0.6995931282951752 -0.01638072440113115 -0.8774243488918827 -0.4794352759651192 0.01638072440113115 0.8774243488918827 0.4794352759651192 -0.004892287435146141 0.09504341174650677 -0.9954611069284605 0.004892287435146141 -0.09504341174650677 0.9954611069284605 -0.1608853655267507 -0.3451121954708132 0.9246693850758978 0.1608853655267507 0.3451121954708132 -0.9246693850758978 -0.2697758473313772 0.8450062910095768 0.4617200021126179 0.2697758473313772 -0.8450062910095768 -0.4617200021126179 0.005163321228154287 0.80314369678722 -0.5957629918221281 -0.005163321228154287 -0.80314369678722 0.5957629918221281 0.002344292070657979 -0.7372617171674439 0.6756031858228611 -0.002344292070657979 0.7372617171674439 -0.6756031858228611 -0.008157238007564552 -0.6687361967973861 0.7434550144837653 0.008157238007564552 0.6687361967973861 -0.7434550144837653 -0.1482697422189595 -0.6939824270870997 0.704559773501597 0.1482697422189595 0.6939824270870997 -0.704559773501597 -0.01631095801948851 -0.8774315909803663 -0.4794244005035099 0.01631095801948851 0.8774315909803663 0.4794244005035099 -0.247634545874316 -0.587407097508461 0.7704739018852661 0.247634545874316 0.587407097508461 -0.7704739018852661 0.01672740120278551 0.08830494052585623 -0.9959530267676915 -0.01672740120278551 -0.08830494052585623 0.9959530267676915 -0.2806604926472587 -0.455709256550181 0.8447240740984473 0.2806604926472587 0.455709256550181 -0.8447240740984473 -0.06931151722567759 -0.2749132873875356 0.9589674645146482 0.06931151722567759 0.2749132873875356 -0.9589674645146482 0.02391697579585033 0.8773665534004429 0.4792242786451961 -0.02391697579585033 -0.8773665534004429 -0.4792242786451961 0.2101921749737974 0.7555228558127222 -0.6204872794218858 -0.2101921749737974 -0.7555228558127222 0.6204872794218858 0.1514833837771899 -0.6960574425040083 0.701823924623685 -0.1514833837771899 0.6960574425040083 -0.701823924623685 0.1295182429994306 -0.6780618820468425 0.7235033578674217 -0.1295182429994306 0.6780618820468425 -0.7235033578674217 0.2751035091169459 -0.8437311463046369 -0.460907595974514 -0.2751035091169459 0.8437311463046369 0.460907595974514 0.1086831171316301 0.05008127305961377 -0.9928141045227352 -0.1086831171316301 -0.05008127305961377 0.9928141045227352 -0.2488725265091385 -0.3207670673426812 0.9138768812358338 0.2488725265091385 0.3207670673426812 -0.9138768812358338 -0.1296109157726461 -0.2425424417003133 0.9614437968423459 0.1296109157726461 0.2425424417003133 -0.9614437968423459 0.02382489002837564 0.8773602369114034 0.4792404295360543 -0.02382489002837564 -0.8773602369114034 -0.4792404295360543 0.2436673669795205 0.9657019217466152 -0.08969956858403495 -0.2436673669795205 -0.9657019217466152 0.08969956858403495 6.120173975055664e-008 -0.478955974542849 0.8778389228381857 -6.120173975055664e-008 0.478955974542849 -0.8778389228381857 0.0739072039953195 -0.6532948377034049 0.7534876111972089 -0.0739072039953195 0.6532948377034049 -0.7534876111972089 0.2751232148782023 -0.8437271877663316 -0.4609030801144639 -0.2751232148782023 0.8437271877663316 0.4609030801144639 0.1207740632168708 0.1185580458727601 -0.9855747639894804 -0.1207740632168708 -0.1185580458727601 0.9855747639894804 0.00894902137950491 -0.2714223354616189 0.9624187398575059 -0.00894902137950491 0.2714223354616189 -0.9624187398575059 0.2194923653377241 0.6465152519741085 -0.7306443255944074 -0.2194923653377241 -0.6465152519741085 0.7306443255944074 0.2502420019123516 -0.5907866162909732 0.7670398389199618 -0.2502420019123516 0.5907866162909732 -0.7670398389199618 0.165115532820197 -0.5861941213740701 0.7931666362675529 -0.165115532820197 0.5861941213740701 -0.7931666362675529 0.5834070092154735 -0.7127232439408671 -0.3894378501695283 -0.5834070092154735 0.7127232439408671 0.3894378501695283 0.1583039384910361 0.3225371996795222 -0.9332253842888749 -0.1583039384910361 -0.3225371996795222 0.9332253842888749 -0.1502315126915595 -0.2102981436898203 0.9660254568876648 0.1502315126915595 0.2102981436898203 -0.9660254568876648 0.01196630073376463 -0.2032111379676907 0.9790618167677796 -0.01196630073376463 0.2032111379676907 -0.9790618167677796 0.2939800854361898 0.8387086624576868 0.4584141019704441 -0.2939800854361898 -0.8387086624576868 -0.4584141019704441 0.4885737109371212 0.8578263993909789 -0.1594666030522976 -0.4885737109371212 -0.8578263993909789 0.1594666030522976 0.2806670705106129 -0.4587400994911635 0.8430797807146296 -0.2806670705106129 0.4587400994911635 -0.8430797807146296 0.06935806896058236 -0.53855939403882 0.8397280734634266 -0.06935806896058236 0.53855939403882 -0.8397280734634266 0.5837254403942573 -0.7125257971522856 -0.3893219729594392 -0.5837254403942573 0.7125257971522856 0.3893219729594392 0.1600135354637308 0.3583929788715838 -0.9197554790073013 -0.1600135354637308 -0.3583929788715838 0.9197554790073013 -0.002334717766163528 -0.1667584603142579 0.9859950126682033 0.002334717766163528 0.1667584603142579 -0.9859950126682033 0.06637512762902212 -0.1772777037866704 0.9819200365469464 -0.06637512762902212 0.1772777037866704 -0.9819200365469464 0.1780098328934645 0.4656460746403963 -0.8668830558761842 -0.1780098328934645 -0.4656460746403963 0.8668830558761842 0.2462724472171071 -0.3254193099052178 0.9129360078792538 -0.2462724472171071 0.3254193099052178 -0.9129360078792538 0.1656993367893799 -0.4721240936589514 0.8658190168703118 -0.1656993367893799 0.4721240936589514 -0.8658190168703118 0.9999999988634817 4.762279000706527e-005 2.259778687422832e-006 -0.9999999988634817 -4.762279000706527e-005 -2.259778687422832e-006 0.17090859929879 0.4725818099566265 -0.8645557723963474 -0.17090859929879 -0.4725818099566265 0.8645557723963474 0.147042743150684 -0.2137060265846958 0.9657681739879935 -0.147042743150684 0.2137060265846958 -0.9657681739879935 0.1124707744108558 -0.2039467248969374 0.9724999014433038 -0.1124707744108558 0.2039467248969374 -0.9724999014433038 0.5666903137006596 0.7231345214766569 0.3948905572517206 -0.5666903137006596 -0.7231345214766569 -0.3948905572517206 0.07468321548360864 -0.4785813686036864 0.87486129812128 -0.07468321548360864 0.4785813686036864 -0.87486129812128 0.9999999985165108 -4.563442049767177e-005 -2.974017410650329e-005 -0.9999999985165108 4.563442049767177e-005 2.974017410650329e-005 0.07423592034048399 -0.4103243047544882 0.9089130833357759 -0.07423592034048399 0.4103243047544882 -0.9089130833357759 0.1529426208812376 -0.3797523998761752 0.9123577530257875 -0.1529426208812376 0.3797523998761752 -0.9123577530257875</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"162\" source=\"#ID223\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID221\">\r\n\t\t\t\t\t<float_array count=\"648\" id=\"ID224\">6.197624366416148 -11.259997112316 5.633936893191923 -11.37516565359185 5.611547707344592 -11.34470730699959 7.403462601312935 -11.80058060332358 7.370045423987567 -11.92998237377035 6.849633993693515 -11.94229113561747 5.696372318742883 -10.64788532287058 5.813110766776234 -10.74276692755852 5.2251960094395 -10.81918947322953 16.71249903445029 3.182932220119489 16.67402942061986 3.118707169152669 16.52218241039167 3.174982135305599 6.812389486930464 -11.72106037525777 7.332829805861207 -11.70953224809925 6.815314067625983 -11.75617018200611 17.12937086962881 3.027794399053971 17.09092129546603 2.963568365523682 16.93907443053135 3.019845005021688 5.16879640366618 -10.37793354192443 4.692598847528177 -10.54041821852935 4.655032869492355 -10.52132573327616 3.316817011957314 8.28696009640405 2.949558494481474 8.240705668572732 2.957463557755681 8.31143063151924 16.56069853453455 3.238318904064413 16.71256449570688 3.182043106992403 16.5222478542219 3.174093280345051 14.96649859022233 -9.098557704937159 14.77792841397065 -9.340442122292201 14.5403783674566 -9.334241340304722 16.97753256443189 3.083914057716583 17.12938258331342 3.027636097162986 16.93908614068197 3.019686755483996 2.372312219509824 -6.160143645757917 1.842523888909761 -6.261200890510088 2.010197727062115 -6.134782165451713 1.189729957394605 -9.184726024294891 0.8309835809387123 -9.155254213398603 1.324136612107796 -9.115977910943537 3.308996198885484 8.215921292460237 2.949642810671755 8.240395628414737 3.316901452868017 8.286649443415252 1.985797509472134 -12.01678366973451 1.884782301468045 -11.91130946186546 2.408964688164641 -11.92198289204256 14.83251544451584 -8.240996096947621 15.0701866687631 -8.242673229859516 14.83482692331507 -8.276136922348439 2.121944780594908 -12.55728524347131 2.187703029390534 -12.43579115089712 2.614634971188297 -12.50776249167922 3.971608883595491 8.165892040130983 3.609428938861981 8.190668385583734 3.979541742940867 8.236609317390048 2.869269205423273 -6.832168742372222 2.825017921672816 -6.827098607389249 3.032185739816667 -6.701957520309583 1.879250671449631 -9.424508502786869 1.66139680828244 -9.484614874094675 1.794288992707469 -9.414068284419628 1.709624855619829 -11.78135322142818 2.134246416472771 -11.69066613969296 2.200682386268879 -11.72825951914409 8.059933387038802 7.361380735710531 7.815088261159154 7.328703211547769 7.833180823061438 7.398263054670808 1.861071224581285 -12.12614345670638 2.354492329090669 -12.08134989583227 2.385238608147247 -12.13726351175387 16.42051106116374 -7.022789241080307 16.64725711412552 -6.962930322031732 16.60630317097705 -7.14220994153427 2.738133534395794 -12.38043226462098 2.310673250895076 -12.31042854559361 2.750462775923929 -12.32029808043496 3.978612217185231 8.240070602782543 3.60850080853052 8.194122714515283 3.616436110895134 8.264844445876936 3.962904818935796 -7.292312993777429 3.76042015277968 -7.422111002188075 3.733155102936037 -7.250534211171334 2.213533841257794 -8.35294398979698 2.12842144698438 -8.343293319300081 2.208810937015485 -8.301976324477195 2.545346670331956 -10.24091808674377 2.322570049726805 -10.19125554829339 2.538430238934704 -10.12685150326239 6.103085514188759 -8.910222896259375 6.029731124295621 -8.881678893032651 6.129663986048146 -8.859309869417674 8.041798655680426 7.291989983945062 7.815044544248284 7.328864562562806 8.059889623759394 7.361542301729187 9.132084732071418 -9.510007126989109 9.08088999905916 -9.464296984695222 9.185110438468982 -9.463971576272957 13.20224478425976 -10.36343232802376 13.3398771322845 -10.51803003989664 13.17843005962019 -10.39320381009214 11.43645710193289 -9.737400761577282 11.41461912072993 -9.678962200227657 11.50668825496226 -9.702385262888926 1.913463414545358 -13.7492248509189 2.26246784942114 -13.66915782100476 2.352917667962758 -13.76595309271632 7.994241014777865 7.299007569651417 7.763322305743026 7.336586921587116 8.012341495641103 7.368561727803613 -2.708505363225937 -7.581342807761608 -2.752716735287881 -7.586624351503083 -2.690305482984234 -7.409024351745314 -2.408038090459215 -8.330172446087151 -2.402712097948566 -8.279241586279305 -2.357857689482753 -8.27351093410228 2.427733195625073 -8.455374829297051 2.347736176994048 -8.497160574895521 2.382893340703943 -8.449574973281287 -1.540654535043063 -10.25350487592474 -1.524502340440594 -10.14001771049218 -1.439682122421367 -10.12888782919359 6.238839170943551 -9.153274357170988 6.298833285700818 -9.112877702812414 6.338533754401055 -9.130256761262144 -7.349453083953662 7.472791483684338 -7.366122874349985 7.542563229943737 -7.138123085184278 7.57659911827452 9.082276873057205 -9.578298123958279 9.157511467552011 -9.550447235340323 9.18649728474279 -9.577967266196051 -15.84106025971079 -7.802581354588299 -16.02577925248045 -7.905519240484162 -16.08720237835226 -7.729472326927488 11.61928007962442 -9.563403606333257 11.52701752301233 -9.540456369846153 11.60485452531269 -9.529500667208096 7.477425664162507 -12.21359236987914 7.357611013346843 -12.13910516746961 7.514430752388228 -12.1561721246241 8.012955099589016 7.36622824461213 7.763935256677664 7.334256585784075 7.782028681595612 7.403804813469619 -4.472627024158272 -7.140105044838997 -4.616561152049331 -7.009602977725914 -4.397930765304884 -6.965464273665069 -1.907041218627021 -9.652654549627787 -1.90040429998779 -9.581964242946295 -1.862323480858624 -9.646297176069183 -2.018224417106208 -8.444456047060598 -2.103325621452177 -8.454168264145315 -2.053887850389722 -8.397104188734629 1.990083414864688 -9.647830565521002 1.945365855454683 -9.641473191466572 1.983446591116788 -9.577140253326217 -2.441442317070226 -9.962434291685895 -2.335028471376848 -9.840651469745062 -2.216347901821768 -9.918014774313466 5.619407371413129 -9.769189997372809 5.580372030501779 -9.750902291957752 5.645238539763041 -9.701195762185026 -7.120154071111422 7.505763881131445 -7.348152995148785 7.471740560249816 -7.136818631874857 7.575542696086022 8.571682981362905 -9.941388359690892 8.543741861368087 -9.913207592295294 8.627578642942691 -9.885342329960086 -17.30873164025513 -5.807842919854194 -17.30042791571163 -5.84240661150004 -17.52869218706355 -5.739481514788718 10.44002827943813 -10.22387272263708 10.42852130822453 -10.18928591467931 10.51999094326319 -10.18967947586913 13.00007191924083 -9.728127183555126 13.01129475757121 -9.664357513014636 13.07625308512217 -9.711458331365444 6.75421226631954 -12.88691426647534 6.598425021674292 -12.86475524284705 6.774513419890265 -12.74136749502083 -8.706701726069261 7.061200937314908 -8.926615639431279 7.0212023372878 -8.726810540056269 7.130405775807971 -7.592880588982362 -7.886585728392562 -7.633057415635026 -7.902042458245666 -7.717839839828695 -7.744500298881613 -5.539662779684833 -9.783784531621299 -5.565493975714329 -9.715790278759508 -5.500627515195189 -9.765496821452649 -6.546767267113827 -8.86477506768734 -6.506817002793847 -8.84775404024936 -6.521452258115116 -8.916084992530603 -4.307539566629169 -10.46302344215784 -4.236882415719203 -10.43054065850127 -4.197033327748333 -10.54754831571461 -4.183166013910026 8.095177530899505 -4.193202844330219 8.165736723659775 -3.87818205344835 8.193143526319274 -17.99768512551199 -4.44821867621306 -18.20772947711836 -4.362708196412636 -18.25068134367565 -4.115679117601889 10.39364211255814 -11.12909175208168 10.404918891182 -11.09446224364395 10.48511055506974 -11.1296301725986 13.75946256675644 -9.10711749848984 13.69168837461222 -9.062539591759453 13.76093359521591 -9.071388525216449 3.314176340585103 -13.55179243198169 3.367676503565271 -13.41155116498354 3.393401801089565 -13.52547294854093 -8.930111430721901 7.023576888020984 -8.950242232747243 7.092782337603858 -8.730319162413187 7.132794853398441 -1.887520876410273 -6.965628159730111 -2.328824417541305 -6.847337843858353 -2.009431466254339 -6.823957987372525 -8.497255295655442 -9.965506187960209 -8.553150880097793 -9.909460134073417 -8.469314236614467 -9.937325408418628 -5.874101238397566 -9.083629668760038 -5.861678596705763 -9.015028149574606 -5.800960042567156 -9.054749242212123 -1.069468892170816 -10.43148323287195 -1.12784662685244 -10.31939180273221 -0.7560415793383726 -10.39445817435967 -3.869230301757583 8.124053248754537 -4.184252351615299 8.096637706176612 -3.87927179928428 8.194610267316962 -8.283416306050794 -12.0090750480539 -8.267032979264023 -12.04181760167526 -8.745552588827549 -11.94967989073469 5.581058484167266 -13.48312572992086 5.515989391869519 -13.43217272378933 5.554950723307702 -13.41377833247973 10.7540593980047 -11.85583002706053 10.68854426789727 -11.83609738632692 10.74742395131375 -11.78678634013501 -6.455515058226985 -12.82829110315036 -6.40736757203113 -12.71896075360123 -6.243447410381162 -12.84104224457879 -3.730550544774442 8.184213897068409 -4.050089217144411 8.162100559980363 -3.738611724340771 8.254924337111099 -6.789357545558712 -10.89796702217291 -6.813753411785932 -10.92745619740967 -7.192776391768387 -10.71412771831276 -10.45039944883282 -10.22156671107636 -10.35892983701128 -10.2211731503276 -10.3704368965475 -10.25575991952401 -9.31243785406706 -9.479580890652926 -9.283118771410861 -9.45228023310394 -9.259975742136748 -9.526014246534382 -2.922748154376651 -12.02158136272815 -2.889989145479664 -11.96637960618612 -2.559457503250584 -12.11909158407499 -16.66245416592098 3.122852859843346 -16.70092479697012 3.187077533745165 -16.54905902340839 3.243354827939089 -7.816380735472926 -11.71470824484129 -8.280273560523812 -11.66449702498086 -8.306038928107515 -11.53401638521053 -5.501207800824206 -13.50172963510977 -5.475100091914485 -13.43238222556532 -5.436138655390553 -13.45077662008532 12.24605122471798 -10.94799925093522 12.21924215364737 -10.97686048198976 12.20418030919195 -10.9086410758723 -7.120645559002742 -13.16877513383195 -7.191200289378312 -13.13009160936637 -6.979967747121975 -13.149619879602 -4.046915306220754 8.157532044061622 -4.054962696160851 8.228241312738671 -3.735428159960213 8.25033577252891 -6.003717679093289 -10.49976845512194 -5.610095722923115 -10.69605544639521 -6.122001358535752 -10.59345887466921 -10.41541767711593 -11.16350779648839 -10.33522592600749 -11.12833991688703 -10.32394925781765 -11.16296937672707 -11.27447212688236 -9.76393293959965 -11.26074218892122 -9.729851739696969 -11.20381765168273 -9.798417488865258 -8.944366430493115 -9.607239634683738 -8.968917873877935 -9.533788053713632 -8.89348850031559 -9.561311101334495 -2.129279084614208 -11.97511880962241 -2.463535233103457 -11.82750889987764 -2.027241597610338 -11.87025468706373 -16.66146154028098 3.122677811701418 -16.54806239403512 3.24317744817157 -16.50961297116488 3.178951358590919 -7.166230498382989 -11.61830630362956 -7.169787853271556 -11.65337994249353 -7.66688026064009 -11.48571992597951 -11.07860540252045 -11.64028442056426 -11.10796073898341 -11.6129993474125 -11.01248111088695 -11.62185212441992 -11.30391686197207 -11.55531934197853 -11.26505197444156 -11.51409731109688 -11.20858812876708 -11.56512696321413 -6.459410281560207 -13.50393031460893 -6.319730071361994 -13.48069229262466 -6.039372967742235 -13.60329889884792 -17.10284554313597 2.959046935256939 -16.98944398312366 3.079550740424591 -16.95099789614945 3.015323313437506 -12.78181866068961 -9.811849976624592 -12.78619287012304 -9.77626833855374 -12.70530928752901 -9.827560921884508 -11.59334749276988 -9.603998235513227 -11.51555518208066 -9.615148469281399 -11.53811771297429 -9.673416449426592 -2.807864160330112 -12.37859176931993 -2.81964309402998 -12.31838935422885 -2.372494295509015 -12.42681527498888 -17.1030221698742 2.959066855560852 -17.14147186864163 3.02329284292782 -16.98962142196237 3.079571133669681 -13.5651865570709 -9.324125563345955 -13.49605717866754 -9.31473296910154 -13.48795982698588 -9.378794899876009 -3.003948839719733 -12.73790184325345 -3.056274745672789 -12.68840325281481 -2.620380130903866 -12.72680484274118 -3.061828660353814 -12.44218577334851 -2.678221898967927 -12.43193504188406 -2.616303497280888 -12.55467185804887</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"324\" source=\"#ID224\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID220\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID218\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID219\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"108\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID220\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID221\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 10 9 11 10 12 11 1 12 6 13 16 14 18 15 12 16 8 17 8 18 2 19 20 20 22 21 11 22 10 23 18 24 10 25 12 26 6 27 24 28 16 29 26 30 18 31 8 32 8 33 20 34 28 35 30 36 31 37 32 38 36 39 11 40 22 41 31 42 38 43 39 44 16 45 24 46 42 47 38 48 44 49 45 50 8 51 28 52 26 53 20 54 48 55 28 56 50 57 30 58 32 59 31 60 39 61 32 62 52 63 36 64 22 65 38 66 45 67 39 68 42 69 24 70 54 71 45 72 44 73 56 74 26 75 28 76 58 77 28 78 48 79 60 80 50 81 32 82 62 83 64 84 30 85 50 86 32 87 39 88 66 89 68 90 36 91 52 92 39 93 45 94 70 95 42 96 54 97 72 98 45 99 56 100 74 101 44 102 76 103 56 104 28 105 78 106 58 107 48 108 80 109 60 110 50 111 62 112 82 113 62 114 32 115 66 116 64 117 50 118 84 119 39 120 70 121 66 122 68 123 52 124 86 125 45 126 74 127 70 128 72 129 54 130 88 131 74 132 56 133 90 134 56 135 76 136 92 137 58 138 78 139 94 140 80 141 96 142 60 143 62 144 98 145 82 146 84 147 50 148 82 149 62 150 66 151 98 152 64 153 84 154 100 155 66 156 70 157 98 158 102 159 68 160 86 161 70 162 74 163 98 164 104 165 72 166 88 167 74 168 90 169 98 170 56 171 92 172 90 173 92 174 76 175 106 176 78 177 96 178 94 179 80 180 108 181 96 182 82 183 98 184 110 185 82 186 110 187 84 188 84 189 112 190 100 191 102 192 86 193 114 194 104 195 88 196 116 197 90 198 118 199 98 200 90 201 92 202 118 203 92 204 106 205 120 206 96 207 122 208 94 209 108 210 124 211 96 212 110 213 98 214 126 215 84 216 110 217 112 218 100 219 112 220 128 221 130 222 102 223 114 224 132 225 104 226 116 227 98 228 118 229 134 230 118 231 92 232 120 233 120 234 106 235 136 236 96 237 124 238 122 239 108 240 138 241 124 242 98 243 140 244 126 245 110 246 126 247 112 248 112 249 142 250 128 251 130 252 114 253 144 254 132 255 116 256 146 257 98 258 134 259 148 260 134 261 118 262 120 263 150 264 120 265 136 266 124 267 152 268 122 269 124 270 138 271 146 272 98 273 148 274 140 275 126 276 140 277 142 278 112 279 126 280 142 281 128 282 142 283 154 284 130 285 144 286 156 287 138 288 132 289 146 290 148 291 134 292 150 293 134 294 120 295 150 296 150 297 136 298 158 299 156 300 152 301 124 302 140 303 148 304 160 305 140 306 160 307 142 308 142 309 160 310 154 311 156 312 144 313 152 314 148 315 150 316 160 317 160 318 150 319 158 320 160 321 158 322 154 323</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"108\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID220\" />\r\n\t\t\t\t\t<p>3 4 5 4 7 5 3 5 9 13 14 15 17 7 4 9 13 19 21 3 9 15 14 23 13 15 19 17 25 7 9 19 27 29 21 9 33 34 35 23 14 37 40 41 34 43 25 17 46 47 41 27 29 9 29 49 21 33 35 51 33 40 34 23 37 53 40 46 41 55 25 43 57 47 46 59 29 27 61 49 29 63 33 51 51 35 65 67 40 33 53 37 69 71 46 40 73 55 43 75 57 46 57 77 47 59 79 29 61 81 49 83 63 51 67 33 63 85 51 65 67 71 40 87 53 69 71 75 46 89 55 73 91 57 75 93 77 57 95 79 59 61 97 81 83 99 63 83 51 85 99 67 63 101 85 65 99 71 67 87 69 103 99 75 71 89 73 105 99 91 75 91 93 57 107 77 93 95 97 79 97 109 81 111 99 83 85 111 83 101 113 85 115 87 103 117 89 105 99 119 91 119 93 91 121 107 93 95 123 97 97 125 109 127 99 111 113 111 85 129 113 101 115 103 131 117 105 133 135 119 99 121 93 119 137 107 121 123 125 97 125 139 109 127 141 99 113 127 111 129 143 113 145 115 131 147 117 133 149 135 99 121 119 135 137 121 151 123 153 125 147 139 125 141 149 99 143 141 127 143 127 113 155 143 129 157 145 131 147 133 139 151 135 149 151 121 135 159 137 151 125 153 157 161 149 141 143 161 141 155 161 143 153 145 157 161 151 149 159 151 161 155 159 161</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID227\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID228\">\r\n\t\t\t\t\t<float_array count=\"2448\" id=\"ID232\">-0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1615252941846848 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.030722618103027 -0.1571999192237854 0.1615252941846848 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1615252941846848 -2.030722618103027 -0.1571999192237854 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1615252941846848 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.04564905166626 -0.1687948554754257 -0.1706530898809433 -2.038688659667969 -0.1488334983587265 -0.1706530898809433 -2.038688659667969 -0.1488334983587265 -0.1801174134016037 -2.008158206939697 -0.1905468553304672 -0.1801174134016037 -2.008158206939697 -0.1905468553304672 -0.1706530898809433 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 0.1615252941846848 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 0.1615252941846848 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 0.1615252941846848 -2.038688659667969 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 0.1615252941846848 -2.038688659667969 -0.1488334983587265 0.1709899455308914 -2.008158206939697 -0.1905468553304672 0.1709899455308914 -2.008158206939697 -0.1905468553304672 0.1709899455308914 -2.04564905166626 -0.1687948554754257 0.1709899455308914 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.2164027541875839 -2.04564905166626 -0.1687948554754257 -0.2164027541875839 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.034487009048462 -0.1905468553304672 -0.2164027541875839 -2.034487009048462 -0.1905468553304672 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.1706530898809433 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.1706530898809433 -1.998634099960327 -0.1363122016191483 0.1615252941846848 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 0.1615252941846848 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.1706530898809433 -2.044009208679199 -0.1363122016191483 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.1706530898809433 -2.044009208679199 -0.1363122016191483 0.1615252941846848 -2.044009208679199 -0.1363122016191483 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 0.1615252941846848 -2.044009208679199 -0.1363122016191483 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.2072749584913254 -2.034487009048462 -0.1905468553304672 0.2072749584913254 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.04564905166626 -0.1687948554754257 0.2072749584913254 -2.04564905166626 -0.1687948554754257 -0.2164027541875839 -2.053104400634766 -0.1409582644701004 -0.2164027541875839 -2.053104400634766 -0.1409582644701004 -0.1801174134016037 -2.053104400634766 -0.1409582644701004 -0.1801174134016037 -2.053104400634766 -0.1409582644701004 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.008158206939697 -0.1905468553304672 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.008158206939697 -0.1905468553304672 -0.1801174134016037 -2.001414299011231 -0.1687948554754257 -0.1801174134016037 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.1706530898809433 -1.996765375137329 -0.1215425506234169 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.1706530898809433 -1.996765375137329 -0.1215425506234169 0.1615252941846848 -1.996765375137329 -0.1215425506234169 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 0.1615252941846848 -1.996765375137329 -0.1215425506234169 0.1709899455308914 -2.001414299011231 -0.1687948554754257 0.1709899455308914 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.1706530898809433 -2.045880794525147 -0.1215425506234169 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.1706530898809433 -2.045880794525147 -0.1215425506234169 0.1615252941846848 -2.045880794525147 -0.1215425506234169 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 0.1615252941846848 -2.045880794525147 -0.1215425506234169 0.1709899455308914 -2.053104400634766 -0.1409582644701004 0.1709899455308914 -2.053104400634766 -0.1409582644701004 0.2072749584913254 -2.008158206939697 -0.1905468553304672 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.008158206939697 -0.1905468553304672 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.053104400634766 -0.1409582644701004 0.2072749584913254 -2.053104400634766 -0.1409582644701004 -0.2258673459291458 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.038688659667969 -0.1488334983587265 -0.2258673459291458 -2.038688659667969 -0.1488334983587265 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -1.998634099960327 -0.1067729070782661 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.1706530898809433 -1.998634099960327 -0.1067729070782661 0.1615252941846848 -1.998634099960327 -0.1067729070782661 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 0.1615252941846848 -1.998634099960327 -0.1067729070782661 -0.1801174134016037 -1.996166825294495 -0.1409582644701004 -0.1801174134016037 -1.996166825294495 -0.1409582644701004 0.1709899455308914 -1.996166825294495 -0.1409582644701004 0.1709899455308914 -1.996166825294495 -0.1409582644701004 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.1706530898809433 -2.044009208679199 -0.1067729070782661 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.1706530898809433 -2.044009208679199 -0.1067729070782661 0.1615252941846848 -2.044009208679199 -0.1067729070782661 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 0.1615252941846848 -2.044009208679199 -0.1067729070782661 -0.1801174134016037 -2.055723428726196 -0.1202674210071564 -0.1801174134016037 -2.055723428726196 -0.1202674210071564 0.1709899455308914 -2.055723428726196 -0.1202674210071564 0.1709899455308914 -2.055723428726196 -0.1202674210071564 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.2167398035526276 -2.038688659667969 -0.1488334983587265 0.2167398035526276 -2.038688659667969 -0.1488334983587265 0.2167398035526276 -2.044009208679199 -0.1363122016191483 0.2167398035526276 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.045880794525147 -0.1215425506234169 -0.2258673459291458 -2.045880794525147 -0.1215425506234169 -0.2164027541875839 -2.055723428726196 -0.1202674210071564 -0.2164027541875839 -2.055723428726196 -0.1202674210071564 -0.2258673459291458 -2.011924266815186 -0.1571999192237854 -0.2258673459291458 -2.011924266815186 -0.1571999192237854 -0.2164027541875839 -2.001414299011231 -0.1687948554754257 -0.2164027541875839 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.003956317901611 -0.09425179660320282 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -2.003956317901611 -0.09425179660320282 0.1615252941846848 -2.003956317901611 -0.09425179660320282 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 0.1615252941846848 -2.003956317901611 -0.09425179660320282 -0.1801174134016037 -1.993547916412354 -0.1202674210071564 -0.1801174134016037 -1.993547916412354 -0.1202674210071564 0.1709899455308914 -1.993547916412354 -0.1202674210071564 0.1709899455308914 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -2.001414299011231 -0.1687948554754257 0.2072749584913254 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 0.1615252941846848 -2.038688659667969 -0.09425181150436401 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 0.1615252941846848 -2.038688659667969 -0.09425181150436401 -0.1801174134016037 -2.054501533508301 -0.0963137224316597 -0.1801174134016037 -2.054501533508301 -0.0963137224316597 0.1709899455308914 -2.054501533508301 -0.0963137224316597 0.1709899455308914 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.055723428726196 -0.1202674210071564 0.2072749584913254 -2.055723428726196 -0.1202674210071564 0.2167398035526276 -2.011924266815186 -0.1571999192237854 0.2167398035526276 -2.011924266815186 -0.1571999192237854 0.2167398035526276 -2.045880794525147 -0.1215425506234169 0.2167398035526276 -2.045880794525147 -0.1215425506234169 -0.6118695139884949 -2.033908367156982 -0.1215425282716751 -0.6118695139884949 -2.033908367156982 -0.1215425282716751 -0.6130750775337219 -2.032478094100952 -0.1363121122121811 -0.6130750775337219 -2.032478094100952 -0.1363121122121811 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.6165025234222412 -2.028409481048584 -0.1488334983587265 -0.6165025234222412 -2.028409481048584 -0.1488334983587265 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.6216357350349426 -2.022314310073853 -0.1571999192237854 -0.6216357350349426 -2.022314310073853 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.6276903748512268 -2.015124082565308 -0.1601379364728928 -0.6276903748512268 -2.015124082565308 -0.1601379364728928 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.1801174134016037 -1.996166825294495 -0.09957704693078995 -0.1801174134016037 -1.996166825294495 -0.09957704693078995 0.1709899455308914 -1.996166825294495 -0.09957704693078995 0.1709899455308914 -1.996166825294495 -0.09957704693078995 -0.2164027541875839 -1.996166825294495 -0.1409582644701004 -0.2164027541875839 -1.996166825294495 -0.1409582644701004 0.2072749584913254 -1.996166825294495 -0.1409582644701004 0.2072749584913254 -1.996166825294495 -0.1409582644701004 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 0.1615252941846848 -2.030722618103027 -0.08588515222072601 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 0.1615252941846848 -2.030722618103027 -0.08588515222072601 -0.1801174134016037 -2.050714015960693 -0.06386412680149078 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.1801174134016037 -2.050714015960693 -0.06386412680149078 0.1709899455308914 -2.050714015960693 -0.06386412680149078 0.1615252941846848 -2.038688659667969 -0.09425181150436401 0.1615252941846848 -2.038688659667969 -0.09425181150436401 0.1709899455308914 -2.050714015960693 -0.06386412680149078 -0.2164027541875839 -2.054501533508301 -0.0963137224316597 -0.2164027541875839 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.054501533508301 -0.0963137224316597 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.6185629963874817 -2.015124082565308 -0.1601379364728928 0.6185629963874817 -2.015124082565308 -0.1601379364728928 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.6125085949897766 -2.022314310073853 -0.1571999192237854 0.6125085949897766 -2.022314310073853 -0.1571999192237854 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.607374906539917 -2.028409481048584 -0.1488334983587265 0.607374906539917 -2.028409481048584 -0.1488334983587265 0.603947639465332 -2.032478094100952 -0.1363121122121811 0.603947639465332 -2.032478094100952 -0.1363121122121811 0.6027420163154602 -2.033908367156982 -0.1215425282716751 0.6027420163154602 -2.033908367156982 -0.1215425282716751 -0.6130750775337219 -2.032478094100952 -0.106772854924202 -0.6130750775337219 -2.032478094100952 -0.106772854924202 -0.2258673459291458 -2.044009208679199 -0.1067729070782661 -0.2258673459291458 -2.044009208679199 -0.1067729070782661 -0.6337444186210632 -2.007936954498291 -0.1571999192237854 -0.6337444186210632 -2.007936954498291 -0.1571999192237854 -0.2258673459291458 -2.003956317901611 -0.1488334983587265 -0.2258673459291458 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1801174134016037 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -1.999191641807556 -0.06404808163642883 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1709899455308914 -1.999191641807556 -0.06404808163642883 0.1709899455308914 -1.999191641807556 -0.06404808163642883 -0.2164027541875839 -1.993547916412354 -0.1202674210071564 -0.2164027541875839 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -1.993547916412354 -0.1202674210071564 0.2167398035526276 -2.003956317901611 -0.1488334983587265 0.2167398035526276 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.1615252941846848 -2.030722618103027 -0.08588515222072601 0.1615252941846848 -2.030722618103027 -0.08588515222072601 0.1709899455308914 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.050714015960693 -0.06386412680149078 -0.2164027541875839 -2.050714015960693 -0.06386412680149078 0.2072749584913254 -2.050714015960693 -0.06386412680149078 0.2072749584913254 -2.050714015960693 -0.06386412680149078 0.2167398035526276 -2.044009208679199 -0.1067729070782661 0.2167398035526276 -2.044009208679199 -0.1067729070782661 0.6246169209480286 -2.007936954498291 -0.1571999192237854 0.6246169209480286 -2.007936954498291 -0.1571999192237854 0.603947639465332 -2.032478094100952 -0.106772854924202 0.603947639465332 -2.032478094100952 -0.106772854924202 -0.6553853750228882 -2.078316926956177 -0.106772854924202 -0.6553853750228882 -2.078316926956177 -0.106772854924202 -0.6546038389205933 -2.079557180404663 -0.1215425282716751 -0.6546038389205933 -2.079557180404663 -0.1215425282716751 -0.6553853750228882 -2.078316926956177 -0.1363121122121811 -0.6553853750228882 -2.078316926956177 -0.1363121122121811 -0.657609224319458 -2.074785947799683 -0.1488334983587265 -0.657609224319458 -2.074785947799683 -0.1488334983587265 -0.6609358191490173 -2.069501638412476 -0.1571999192237854 -0.6609358191490173 -2.069501638412476 -0.1571999192237854 -0.6648588180541992 -2.063269138336182 -0.1601379364728928 -0.6648588180541992 -2.063269138336182 -0.1601379364728928 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -1.996166825294495 -0.09957704693078995 -0.2164027541875839 -1.996166825294495 -0.09957704693078995 0.2072749584913254 -1.996166825294495 -0.09957704693078995 0.2072749584913254 -1.996166825294495 -0.09957704693078995 -0.2258673459291458 -1.998634099960327 -0.1363122016191483 -0.2258673459291458 -1.998634099960327 -0.1363122016191483 0.2167398035526276 -1.998634099960327 -0.1363122016191483 0.2167398035526276 -1.998634099960327 -0.1363122016191483 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 -0.2258673459291458 -2.038688659667969 -0.09425181150436401 -0.2258673459291458 -2.038688659667969 -0.09425181150436401 0.2167398035526276 -2.038688659667969 -0.09425181150436401 0.2167398035526276 -2.038688659667969 -0.09425181150436401 0.6557315587997437 -2.063269138336182 -0.1601379364728928 0.6557315587997437 -2.063269138336182 -0.1601379364728928 0.6518086194992065 -2.069501638412476 -0.1571999192237854 0.6518086194992065 -2.069501638412476 -0.1571999192237854 0.6484818458557129 -2.074785947799683 -0.1488334983587265 0.6484818458557129 -2.074785947799683 -0.1488334983587265 0.6462578773498535 -2.078316926956177 -0.1363121122121811 0.6462578773498535 -2.078316926956177 -0.1363121122121811 0.6454765200614929 -2.079557180404663 -0.1215425282716751 0.6454765200614929 -2.079557180404663 -0.1215425282716751 0.6462578773498535 -2.078316926956177 -0.106772854924202 0.6462578773498535 -2.078316926956177 -0.106772854924202 -0.657609224319458 -2.074785947799683 -0.09425179660320282 -0.657609224319458 -2.074785947799683 -0.09425179660320282 -0.6165025234222412 -2.028409481048584 -0.09425179660320282 -0.6165025234222412 -2.028409481048584 -0.09425179660320282 -0.6687852740287781 -2.057035684585571 -0.1571999192237854 -0.6687852740287781 -2.057035684585571 -0.1571999192237854 -0.6388782262802124 -2.00184178352356 -0.1488334387540817 -0.6388782262802124 -2.00184178352356 -0.1488334387540817 -0.2164027541875839 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.2164027541875839 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.006489753723145 -0.04094164818525314 -0.2164027541875839 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.2072749584913254 -2.006489753723145 -0.04094164818525314 0.2072749584913254 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -1.999191641807556 -0.06404808163642883 0.2072749584913254 -1.999191641807556 -0.06404808163642883 -0.2258673459291458 -1.996765375137329 -0.1215425506234169 -0.2258673459291458 -1.996765375137329 -0.1215425506234169 0.2167398035526276 -1.996765375137329 -0.1215425506234169 0.2167398035526276 -1.996765375137329 -0.1215425506234169 0.6297513246536255 -2.00184178352356 -0.1488334387540817 0.6297513246536255 -2.00184178352356 -0.1488334387540817 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.607374906539917 -2.028409481048584 -0.09425179660320282 0.607374906539917 -2.028409481048584 -0.09425179660320282 0.6596575975418091 -2.057035684585571 -0.1571999192237854 0.6596575975418091 -2.057035684585571 -0.1571999192237854 0.6484818458557129 -2.074785947799683 -0.09425179660320282 0.6484818458557129 -2.074785947799683 -0.09425179660320282 -0.7177013754844666 -2.096775054931641 -0.09390366077423096 -0.7177013754844666 -2.096775054931641 -0.09390366077423096 -0.7165237665176392 -2.098670482635498 -0.1065675467252731 -0.7165237665176392 -2.098670482635498 -0.1065675467252731 -0.7165124416351318 -2.100502252578735 -0.1215060725808144 -0.7165124416351318 -2.100502252578735 -0.1215060725808144 -0.7165237665176392 -2.098670482635498 -0.1364448219537735 -0.7165237665176392 -2.098670482635498 -0.1364448219537735 -0.7177013754844666 -2.096775054931641 -0.1491094380617142 -0.7177013754844666 -2.096775054931641 -0.1491094380617142 -0.7177552580833435 -2.088963031768799 -0.1575712114572525 -0.7177552580833435 -2.088963031768799 -0.1575712114572525 -0.7180059552192688 -2.080292224884033 -0.160543292760849 -0.7180059552192688 -2.080292224884033 -0.160543292760849 -0.2258673459291458 -1.998634099960327 -0.1067729070782661 -0.2258673459291458 -1.998634099960327 -0.1067729070782661 0.2167398035526276 -1.998634099960327 -0.1067729070782661 0.2167398035526276 -1.998634099960327 -0.1067729070782661 -0.6423077583312988 -1.997771978378296 -0.1363121122121811 -0.6423077583312988 -1.997771978378296 -0.1363121122121811 0.6331802010536194 -1.997771978378296 -0.1363121122121811 0.6331802010536194 -1.997771978378296 -0.1363121122121811 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.2072749584913254 -2.025967359542847 -0.03255007416009903 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.6216357350349426 -2.022314310073853 -0.08588512986898422 -0.6216357350349426 -2.022314310073853 -0.08588512986898422 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.6125085949897766 -2.022314310073853 -0.08588512986898422 0.6125085949897766 -2.022314310073853 -0.08588512986898422 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.708878755569458 -2.080292224884033 -0.160543292760849 0.708878755569458 -2.080292224884033 -0.160543292760849 0.7086280584335327 -2.088963031768799 -0.1575712114572525 0.7086280584335327 -2.088963031768799 -0.1575712114572525 0.7085741758346558 -2.096775054931641 -0.1491094380617142 0.7085741758346558 -2.096775054931641 -0.1491094380617142 0.707396388053894 -2.098670482635498 -0.1364448219537735 0.707396388053894 -2.098670482635498 -0.1364448219537735 0.7073850035667419 -2.100502252578735 -0.1215060725808144 0.7073850035667419 -2.100502252578735 -0.1215060725808144 0.707396388053894 -2.098670482635498 -0.1065675467252731 0.707396388053894 -2.098670482635498 -0.1065675467252731 0.7085741758346558 -2.096775054931641 -0.09390366077423096 0.7085741758346558 -2.096775054931641 -0.09390366077423096 -0.7177552580833435 -2.088963031768799 -0.08544092625379562 -0.7177552580833435 -2.088963031768799 -0.08544092625379562 -0.6609358191490173 -2.069501638412476 -0.08588512986898422 -0.6609358191490173 -2.069501638412476 -0.08588512986898422 -0.7180686593055725 -2.071079969406128 -0.1575712114572525 -0.7180686593055725 -2.071079969406128 -0.1575712114572525 -0.6721116900444031 -2.051751613616943 -0.1488334387540817 -0.6721116900444031 -2.051751613616943 -0.1488334387540817 -0.2258673459291458 -2.003956317901611 -0.09425179660320282 -0.2258673459291458 -2.003956317901611 -0.09425179660320282 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.003956317901611 -0.09425179660320282 0.2167398035526276 -2.003956317901611 -0.09425179660320282 -0.6435112357139587 -1.996342778205872 -0.1215425282716751 -0.6435112357139587 -1.996342778205872 -0.1215425282716751 0.6343837380409241 -1.996342778205872 -0.1215425282716751 0.6343837380409241 -1.996342778205872 -0.1215425282716751 0.6629846692085266 -2.051751613616943 -0.1488334387540817 0.6629846692085266 -2.051751613616943 -0.1488334387540817 -0.6276903748512268 -2.015124082565308 -0.08294735848903656 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.6276903748512268 -2.015124082565308 -0.08294735848903656 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.6185629963874817 -2.015124082565308 -0.08294735848903656 0.6185629963874817 -2.015124082565308 -0.08294735848903656 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.6518086194992065 -2.069501638412476 -0.08588512986898422 0.6518086194992065 -2.069501638412476 -0.08588512986898422 0.7089411616325378 -2.071079969406128 -0.1575712114572525 0.7089411616325378 -2.071079969406128 -0.1575712114572525 0.7086280584335327 -2.088963031768799 -0.08544092625379562 0.7086280584335327 -2.088963031768799 -0.08544092625379562 -0.7801192998886108 -2.044661283493042 -0.08544092625379562 -0.7801192998886108 -2.044661283493042 -0.08544092625379562 -0.7858226895332336 -2.048605442047119 -0.09390366077423096 -0.7858226895332336 -2.048605442047119 -0.09390366077423096 -0.7880875468254089 -2.050557851791382 -0.1065675467252731 -0.7880875468254089 -2.050557851791382 -0.1065675467252731 -0.789569079875946 -2.051625490188599 -0.1215060725808144 -0.789569079875946 -2.051625490188599 -0.1215060725808144 -0.7880875468254089 -2.050557851791382 -0.1364448219537735 -0.7880875468254089 -2.050557851791382 -0.1364448219537735 -0.7858226895332336 -2.048605442047119 -0.1491094380617142 -0.7858226895332336 -2.048605442047119 -0.1491094380617142 -0.7801192998886108 -2.044661283493042 -0.1575712114572525 -0.7801192998886108 -2.044661283493042 -0.1575712114572525 -0.7726680636405945 -2.039297103881836 -0.160543292760849 -0.7726680636405945 -2.039297103881836 -0.160543292760849 -0.6423077583312988 -1.997771978378296 -0.106772854924202 -0.6423077583312988 -1.997771978378296 -0.106772854924202 0.6331802010536194 -1.997771978378296 -0.106772854924202 0.6331802010536194 -1.997771978378296 -0.106772854924202 -0.6743361949920654 -2.048221349716187 -0.1363121122121811 -0.6743361949920654 -2.048221349716187 -0.1363121122121811 0.6652085781097412 -2.048221349716187 -0.1363121122121811 0.6652085781097412 -2.048221349716187 -0.1363121122121811 -0.6337444186210632 -2.007936954498291 -0.08588512986898422 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.6337444186210632 -2.007936954498291 -0.08588512986898422 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.6246169209480286 -2.007936954498291 -0.08588512986898422 0.6246169209480286 -2.007936954498291 -0.08588512986898422 0.2167398035526276 -2.011924266815186 -0.08588515222072601 -0.6648588180541992 -2.063269138336182 -0.08294735848903656 -0.6648588180541992 -2.063269138336182 -0.08294735848903656 0.6557315587997437 -2.063269138336182 -0.08294735848903656 0.6557315587997437 -2.063269138336182 -0.08294735848903656 0.7635407447814941 -2.039297103881836 -0.160543292760849 0.7635407447814941 -2.039297103881836 -0.160543292760849 0.770991861820221 -2.044661283493042 -0.1575712114572525 0.770991861820221 -2.044661283493042 -0.1575712114572525 0.7766953706741333 -2.048605442047119 -0.1491094380617142 0.7766953706741333 -2.048605442047119 -0.1491094380617142 0.7789598703384399 -2.050557851791382 -0.1364448219537735 0.7789598703384399 -2.050557851791382 -0.1364448219537735 0.7804414033889771 -2.051625490188599 -0.1215060725808144 0.7804414033889771 -2.051625490188599 -0.1215060725808144 0.7789598703384399 -2.050557851791382 -0.1065675467252731 0.7789598703384399 -2.050557851791382 -0.1065675467252731 0.7766953706741333 -2.048605442047119 -0.09390366077423096 0.7766953706741333 -2.048605442047119 -0.09390366077423096 0.770991861820221 -2.044661283493042 -0.08544092625379562 0.770991861820221 -2.044661283493042 -0.08544092625379562 -0.7726680636405945 -2.039297103881836 -0.08246933668851852 -0.7726680636405945 -2.039297103881836 -0.08246933668851852 -0.7180059552192688 -2.080292224884033 -0.08246933668851852 -0.7180059552192688 -2.080292224884033 -0.08246933668851852 -0.7639322280883789 -2.032893419265747 -0.1575712114572525 -0.7639322280883789 -2.032893419265747 -0.1575712114572525 -0.7181222438812256 -2.063268184661865 -0.1491094380617142 -0.7181222438812256 -2.063268184661865 -0.1491094380617142 -0.6388782262802124 -2.00184178352356 -0.09425176680088043 -0.6388782262802124 -2.00184178352356 -0.09425176680088043 0.6297513246536255 -2.00184178352356 -0.09425176680088043 0.6297513246536255 -2.00184178352356 -0.09425176680088043 -0.6748786568641663 -2.047461271286011 -0.1215425282716751 -0.6748786568641663 -2.047461271286011 -0.1215425282716751 0.6657513976097107 -2.047461271286011 -0.1215425282716751 0.6657513976097107 -2.047461271286011 -0.1215425282716751 0.70899498462677 -2.063268184661865 -0.1491094380617142 0.70899498462677 -2.063268184661865 -0.1491094380617142 -0.6687852740287781 -2.057035684585571 -0.08588512986898422 -0.6687852740287781 -2.057035684585571 -0.08588512986898422 0.6596575975418091 -2.057035684585571 -0.08588512986898422 0.6596575975418091 -2.057035684585571 -0.08588512986898422 0.708878755569458 -2.080292224884033 -0.08246933668851852 0.708878755569458 -2.080292224884033 -0.08246933668851852 0.7548051476478577 -2.032893419265747 -0.1575712114572525 0.7548051476478577 -2.032893419265747 -0.1575712114572525 0.7635407447814941 -2.039297103881836 -0.08246933668851852 0.7635407447814941 -2.039297103881836 -0.08246933668851852 -0.7931804656982422 -1.947999954223633 -0.1005254313349724 -0.7931804656982422 -1.947999954223633 -0.1005254313349724 -0.799446702003479 -1.950582027435303 -0.1023855954408646 -0.799446702003479 -1.950582027435303 -0.1023855954408646 -0.8047597408294678 -1.952769994735718 -0.1076830625534058 -0.8047597408294678 -1.952769994735718 -0.1076830625534058 -0.8083102107048035 -1.954230546951294 -0.1156112402677536 -0.8083102107048035 -1.954230546951294 -0.1156112402677536 -0.8095563650131226 -1.954744100570679 -0.1249629184603691 -0.8095563650131226 -1.954744100570679 -0.1249629184603691 -0.8083102107048035 -1.954230546951294 -0.1343148648738861 -0.8083102107048035 -1.954230546951294 -0.1343148648738861 -0.8047597408294678 -1.952769994735718 -0.1422431319952011 -0.8047597408294678 -1.952769994735718 -0.1422431319952011 -0.799446702003479 -1.950582027435303 -0.1475403010845184 -0.799446702003479 -1.950582027435303 -0.1475403010845184 -0.7931804656982422 -1.947999954223633 -0.1494005620479584 -0.7931804656982422 -1.947999954223633 -0.1494005620479584 -0.6743361949920654 -2.048221349716187 -0.106772854924202 -0.6743361949920654 -2.048221349716187 -0.106772854924202 0.6652085781097412 -2.048221349716187 -0.106772854924202 0.6652085781097412 -2.048221349716187 -0.106772854924202 -0.7181578874588013 -2.058051824569702 -0.1364448219537735 -0.7181578874588013 -2.058051824569702 -0.1364448219537735 0.7090305685997009 -2.058051824569702 -0.1364448219537735 0.7090305685997009 -2.058051824569702 -0.1364448219537735 -0.6721116900444031 -2.051751613616943 -0.09425176680088043 -0.6721116900444031 -2.051751613616943 -0.09425176680088043 0.6629846692085266 -2.051751613616943 -0.09425176680088043 0.6629846692085266 -2.051751613616943 -0.09425176680088043 -0.7180686593055725 -2.071079969406128 -0.08544092625379562 -0.7180686593055725 -2.071079969406128 -0.08544092625379562 0.7089411616325378 -2.071079969406128 -0.08544092625379562 0.7089411616325378 -2.071079969406128 -0.08544092625379562 0.7840532064437866 -1.947999954223633 -0.1494005620479584 0.7840532064437866 -1.947999954223633 -0.1494005620479584 0.7903189063072205 -1.950582027435303 -0.1475403010845184 0.7903189063072205 -1.950582027435303 -0.1475403010845184 0.7956326007843018 -1.952769994735718 -0.1422431319952011 0.7956326007843018 -1.952769994735718 -0.1422431319952011 0.7991833090782166 -1.954230546951294 -0.1343148648738861 0.7991833090782166 -1.954230546951294 -0.1343148648738861 0.8004284501075745 -1.954744100570679 -0.1249629184603691 0.8004284501075745 -1.954744100570679 -0.1249629184603691 0.7991833090782166 -1.954230546951294 -0.1156112402677536 0.7991833090782166 -1.954230546951294 -0.1156112402677536 0.7956326007843018 -1.952769994735718 -0.1076830625534058 0.7956326007843018 -1.952769994735718 -0.1076830625534058 0.7903189063072205 -1.950582027435303 -0.1023855954408646 0.7903189063072205 -1.950582027435303 -0.1023855954408646 0.7840532064437866 -1.947999954223633 -0.1005254313349724 0.7840532064437866 -1.947999954223633 -0.1005254313349724 -0.7869135737419128 -1.945419311523438 -0.1023855954408646 -0.7869135737419128 -1.945419311523438 -0.1023855954408646 -0.7639322280883789 -2.032893419265747 -0.08544092625379562 -0.7639322280883789 -2.032893419265747 -0.08544092625379562 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7591820955276489 -2.029483556747437 -0.1491094380617142 -0.7591820955276489 -2.029483556747437 -0.1491094380617142 -0.7181704640388489 -2.056217908859253 -0.1215060725808144 -0.7181704640388489 -2.056217908859253 -0.1215060725808144 0.7090427279472351 -2.056217908859253 -0.1215060725808144 0.7090427279472351 -2.056217908859253 -0.1215060725808144 0.7500547170639038 -2.029483556747437 -0.1491094380617142 0.7500547170639038 -2.029483556747437 -0.1491094380617142 -0.7181222438812256 -2.063268184661865 -0.093903549015522 -0.7181222438812256 -2.063268184661865 -0.093903549015522 0.70899498462677 -2.063268184661865 -0.093903549015522 0.70899498462677 -2.063268184661865 -0.093903549015522 0.7548051476478577 -2.032893419265747 -0.08544092625379562 0.7548051476478577 -2.032893419265747 -0.08544092625379562 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7777858972549439 -1.945419311523438 -0.1023855954408646 0.7777858972549439 -1.945419311523438 -0.1023855954408646 -0.7966580986976624 -1.939646244049072 -0.1261951923370361 -0.7966580986976624 -1.939646244049072 -0.1261951923370361 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7181578874588013 -2.058051824569702 -0.1065675467252731 -0.7181578874588013 -2.058051824569702 -0.1065675467252731 0.7090305685997009 -2.058051824569702 -0.1065675467252731 0.7090305685997009 -2.058051824569702 -0.1065675467252731 -0.7549589276313782 -2.026442289352417 -0.1364448219537735 -0.7549589276313782 -2.026442289352417 -0.1364448219537735 0.7458319067955017 -2.026442289352417 -0.1364448219537735 0.7458319067955017 -2.026442289352417 -0.1364448219537735 -0.7591820955276489 -2.029483556747437 -0.093903549015522 -0.7591820955276489 -2.029483556747437 -0.093903549015522 0.7500547170639038 -2.029483556747437 -0.093903549015522 0.7500547170639038 -2.029483556747437 -0.093903549015522 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7875306010246277 -1.939646244049072 -0.1261951923370361 0.7875306010246277 -1.939646244049072 -0.1261951923370361 0.7777858972549439 -1.945419311523438 -0.1475403010845184 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.7534772753715515 -2.025376796722412 -0.1215060725808144 -0.7534772753715515 -2.025376796722412 -0.1215060725808144 0.7443500757217407 -2.025376796722412 -0.1215060725808144 0.7443500757217407 -2.025376796722412 -0.1215060725808144 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1422431319952011 -0.7549589276313782 -2.026442289352417 -0.1065675467252731 -0.7549589276313782 -2.026442289352417 -0.1065675467252731 0.7458319067955017 -2.026442289352417 -0.1065675467252731 0.7458319067955017 -2.026442289352417 -0.1065675467252731 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1076830625534058 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"816\" source=\"#ID232\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID229\">\r\n\t\t\t\t\t<float_array count=\"2448\" id=\"ID233\">0.004488788996345108 0.5271326193254718 -0.8497711765036595 1.291284191913415e-005 0.001617569529035767 -0.9999986916501827 -1.184745062262114e-005 -0.001670929507781155 -0.9999986039261345 1.184745062262114e-005 0.001670929507781155 0.9999986039261345 -1.291284191913415e-005 -0.001617569529035767 0.9999986916501827 -0.004488788996345108 -0.5271326193254718 0.8497711765036595 1 -0 -0 1 -0 -0 1 -0 -0 -1 0 0 -1 0 0 -1 0 0 -0.004488791232266994 0.5271326188299925 -0.8497711767992057 1.184746344884554e-005 -0.001670930314586899 -0.9999986039247862 -1.291285525506731e-005 0.001617570336250907 -0.9999986916488768 1.291285525506731e-005 -0.001617570336250907 0.9999986916488768 -1.184746344884554e-005 0.001670930314586899 0.9999986039247862 0.004488791232266994 -0.5271326188299925 0.8497711767992057 -0.004485367141985272 -0.527177061858388 -0.8497436242373103 0.004485367141985272 0.527177061858388 0.8497436242373103 0.00450622159746319 0.5290845697262511 -0.8485571354036818 -0.00450622159746319 -0.5290845697262511 0.8485571354036818 1 -0 -0 -1 0 0 1 -0 -0 -1 0 0 -0.004506223850392898 0.529084570208921 -0.8485571350907679 0.004506223850392898 -0.529084570208921 0.8485571350907679 0.004485369376187172 -0.5271770613638911 -0.8497436245323006 -0.004485369376187172 0.5271770613638911 0.8497436245323006 0.9507847764805869 -0.2039779657307184 -0.2332408590044168 0.9283498084308596 -0.2517515811088936 -0.273473535457379 0.9686109501656518 -0.01105674204799939 -0.2483356109672492 -0.9686109501656518 0.01105674204799939 0.2483356109672492 -0.9283498084308596 0.2517515811088936 0.273473535457379 -0.9507847764805869 0.2039779657307184 0.2332408590044168 -0.004503646784154841 -0.5291183014219199 -0.8485361160646174 0.004503646784154841 0.5291183014219199 0.8485361160646174 0.969486083937551 -0.003329945691308154 -0.245123733067863 0.9518157133827669 0.1909252690972961 -0.2399883109190519 -0.9518157133827669 -0.1909252690972961 0.2399883109190519 -0.969486083937551 0.003329945691308154 0.245123733067863 0.007114028034887915 0.8353288408671091 -0.5497045735854221 -0.007114028034887915 -0.8353288408671091 0.5497045735854221 1 -0 -0 -1 0 0 -0.007114031583790776 0.8353288406995403 -0.5497045737941306 0.007114031583790776 -0.8353288406995403 0.5497045737941306 1 -0 -0 -1 0 0 0.004503649035743961 -0.5291183019045855 -0.8485361157516932 -0.004503649035743961 0.5291183019045855 0.8485361157516932 -0.9686088766577514 -0.01105706906332083 -0.2483436838003697 -0.9694840650325932 -0.003330049845388831 -0.2451317164626107 -0.9518126386933298 0.190931131146001 -0.2399958415951187 0.9518126386933298 -0.190931131146001 0.2399958415951187 0.9694840650325932 0.003330049845388831 0.2451317164626107 0.9686088766577514 0.01105706906332083 0.2483436838003697 -0.9283454604112509 -0.2517587064041628 -0.2734817359231238 -0.9507815996920912 -0.2039844377888872 -0.2332481486033696 0.9507815996920912 0.2039844377888872 0.2332481486033696 0.9283454604112509 0.2517587064041628 0.2734817359231238 0.4905464884192308 -0.8041624847744235 -0.3356886068680113 -0.4905464884192308 0.8041624847744235 0.3356886068680113 0.4815280316392164 -0.7597623620804733 -0.4369117850454046 -0.4815280316392164 0.7597623620804733 0.4369117850454046 0.519680435363879 0.6575142275990822 -0.5455339454193402 -0.519680435363879 -0.6575142275990822 0.5455339454193402 0.4571189376483561 0.7721023227499775 -0.4414751182652633 -0.4571189376483561 -0.7721023227499775 0.4414751182652633 1 -0 -0 -1 0 0 0.008217380333334407 0.9652946846739656 -0.2610338031762294 -0.008217380333334407 -0.9652946846739656 0.2610338031762294 -0.4571111868059822 0.7721059895862967 -0.4414767306912019 -0.008217384433657467 0.9652946846164316 -0.2610338032599099 0.008217384433657467 -0.9652946846164316 0.2610338032599099 0.4571111868059822 -0.7721059895862967 0.4414767306912019 1 -0 -0 -1 0 0 -0.00712138017653666 -0.8359415949672389 -0.5487722075214908 0.00712138017653666 0.8359415949672389 0.5487722075214908 -0.4815203449022732 -0.7597661310854951 -0.4369137025781796 0.007121383731482815 -0.8359415950919007 -0.5487722072854615 -0.007121383731482815 0.8359415950919007 0.5487722072854615 0.4815203449022732 0.7597661310854951 0.4369137025781796 -0.5196764354100114 0.6575156548129167 -0.5455360356158752 0.5196764354100114 -0.6575156548129167 0.5455360356158752 -0.4905403092732229 -0.8041655748678753 -0.3356902339591523 0.4905403092732229 0.8041655748678753 0.3356902339591523 -2.426986289955367e-017 -0.7364613431137198 -0.6764796302174486 -0.4608133353180124 -0.8211656453082652 -0.3366571742270609 0.4608133353180124 0.8211656453082652 0.3366571742270609 2.426986289955367e-017 0.7364613431137198 0.6764796302174486 -1.844326444024408e-017 -0.5303087739567048 -0.8478045790537678 -0.5361227053423503 -0.6069014056672079 -0.586722360759812 0.5361227053423503 0.6069014056672079 0.586722360759812 1.844326444024408e-017 0.5303087739567048 0.8478045790537678 -1.84392460472661e-017 0.5302604510494343 -0.8478348035159034 -1.84392460472661e-017 0.5302604510494343 -0.8478348035159034 1.84392460472661e-017 -0.5302604510494343 0.8478348035159034 1.84392460472661e-017 -0.5302604510494343 0.8478348035159034 1 -0 -0 -1 0 0 0.1971558893645083 0.9573518568225626 -0.2112036399479925 0.008510868807066028 0.9999637818978656 -2.160247128884518e-006 -0.008510868807066028 -0.9999637818978656 2.160247128884518e-006 -0.1971558893645083 -0.9573518568225626 0.2112036399479925 -0.197150763684683 0.957352793676903 -0.2112041780305861 -0.008510873054234794 0.9999637818617173 -2.160248014874601e-006 0.008510873054234794 -0.9999637818617173 2.160248014874601e-006 0.197150763684683 -0.957352793676903 0.2112041780305861 1 -0 -0 -1 0 0 0.4037720748323315 -0.884629716808151 -0.2332345937581405 -0.00822400988133839 -0.9653911586344171 -0.2606765744979195 0.00822400988133839 0.9653911586344171 0.2606765744979195 -0.4037720748323315 0.884629716808151 0.2332345937581405 -0.4037636373369974 -0.8846333061352755 -0.2332355865655364 0.008224013985609841 -0.9653911586268107 -0.2606765743966046 -0.008224013985609841 0.9653911586268107 0.2606765743966046 0.4037636373369974 0.8846333061352755 0.2332355865655364 0 0.5302604510494342 -0.8478348035159036 0 0.5302604510494342 -0.8478348035159036 -0 -0.5302604510494342 0.8478348035159036 -0 -0.5302604510494342 0.8478348035159036 0 -0.530308773956705 -0.8478045790537678 0 -0.73646134311372 -0.6764796302174486 0.5361196403178399 -0.6069025460851478 -0.5867239818013534 -0.5361196403178399 0.6069025460851478 0.5867239818013534 -0 0.73646134311372 0.6764796302174486 -0 0.530308773956705 0.8478045790537678 0.4608080865995052 -0.8211681029947009 -0.3366583638476655 -0.4608080865995052 0.8211681029947009 0.3366583638476655 -0.385742073903384 -0.904729134348099 -0.1807435915391077 0.385742073903384 0.904729134348099 0.1807435915391077 0.3995130760539953 -0.8964009062419867 -0.1919758249114185 -0.3995130760539953 0.8964009062419867 0.1919758249114185 -1.844326444024408e-017 -0.5303087739567048 -0.8478045790537678 1.844326444024408e-017 0.5303087739567048 0.8478045790537678 -0.5296020992421222 0.6561021605196902 -0.5376351657394927 1.84392460472661e-017 0.5302604510494341 -0.8478348035159036 -1.84392460472661e-017 -0.5302604510494341 0.8478348035159036 0.5296020992421222 -0.6561021605196902 0.5376351657394927 0.3363076841507985 0.9088032483512361 -0.2469287293276507 -0.3363076841507985 -0.9088032483512361 0.2469287293276507 1 -0 -0 -1 0 0 0.1687919888662012 0.9856383382082573 -0.005131349594128028 0.008215461209643943 0.9652926464581436 0.2610414007220816 -0.008215461209643943 -0.9652926464581436 -0.2610414007220816 -0.1687919888662012 -0.9856383382082573 0.005131349594128028 -0.1687866907192891 0.985639246299354 -0.005131197761984126 -0.008215465309037044 0.9652926463999988 0.2610414008080769 0.008215465309037044 -0.9652926463999988 -0.2610414008080769 0.1687866907192891 -0.985639246299354 0.005131197761984126 -0.3362995806041703 0.9088060116563134 -0.2469295957612287 0.3362995806041703 -0.9088060116563134 0.2469295957612287 1 -0 -0 -1 0 0 0.4054173713524426 -0.9140433536476199 -0.01270836961564649 -0.0085183821524327 -0.9999637179227549 1.898996257460486e-006 0.0085183821524327 0.9999637179227549 -1.898996257460486e-006 -0.4054173713524426 0.9140433536476199 0.01270836961564649 -0.4054090877927001 -0.9140470268562219 -0.01270843146859746 0.008518386403168153 -0.9999637178865443 1.898997386052117e-006 -0.008518386403168153 0.9999637178865443 -1.898997386052117e-006 0.4054090877927001 0.9140470268562219 0.01270843146859746 -0.3995054948484711 -0.8964041377589346 -0.1919765126116719 0.3995054948484711 0.8964041377589346 0.1919765126116719 0.5295992578884425 0.6561032421321235 -0.5376366446846116 -1.843957923624534e-017 0.530260451049434 -0.8478348035159036 1.843957923624534e-017 -0.530260451049434 0.8478348035159036 -0.5295992578884425 -0.6561032421321235 0.5376366446846116 0 -0.530308773956705 -0.8478045790537678 -0 0.530308773956705 0.8478045790537678 0.3857360849191797 -0.9047315918850344 -0.1807440716493763 -0.3857360849191797 0.9047315918850344 0.1807440716493763 -0.4309198326745419 -0.8770224328284038 -0.2124611732140556 0.4309198326745419 0.8770224328284038 0.2124611732140556 -0.5327637842338816 -0.7277249795655932 -0.4319480342877498 0.5327637842338816 0.7277249795655932 0.4319480342877498 -0.9518042055811592 -0.190973276116534 -0.2399957542277287 -0.9694840947041866 0.00331998404263018 -0.2451317356475093 0.9694840947041866 -0.00331998404263018 0.2451317356475093 0.9518042055811592 0.190973276116534 0.2399957542277287 -0.9686097296440215 0.01105536758733848 -0.2483404326452789 0.9686097296440215 -0.01105536758733848 0.2483404326452789 1 -0 -0 -1 0 0 0.2033484727129228 0.9512258883415256 0.2319885945347255 0.007110930513536101 0.8353317410655891 0.5497002065085688 -0.007110930513536101 -0.8353317410655891 -0.5497002065085688 -0.2033484727129228 -0.9512258883415256 -0.2319885945347255 -0.2033426129463571 0.9512269403845534 0.2319894171008448 -0.007110934060996255 0.8353317408991332 0.5497002067156275 0.007110934060996255 -0.8353317408991332 -0.5497002067156275 0.2033426129463571 -0.9512269403845534 -0.2319894171008448 0.1614152367059206 0.9743133093652557 -0.1570308777052931 -0.1614152367059206 -0.9743133093652557 0.1570308777052931 -0.1614100521526407 0.9743141614547412 -0.1570309200534283 0.1614100521526407 -0.9743141614547412 0.1570309200534283 1 -0 -0 -1 0 0 0.4682095373053083 -0.861961179723896 0.1944293028978371 -0.008224404365587646 -0.9653911472719587 0.2606766041319447 0.008224404365587646 0.9653911472719587 -0.2606766041319447 -0.4682095373053083 0.861961179723896 -0.1944293028978371 -0.4682019899704703 -0.8619651573705387 0.1944298435602781 0.008224408470051839 -0.9653911472649058 0.2606766040285682 -0.008224408470051839 0.9653911472649058 -0.2606766040285682 0.4682019899704703 0.8619651573705387 -0.1944298435602781 0.3830001893543202 -0.9231847577728879 -0.03226078068443357 -0.3830001893543202 0.9231847577728879 0.03226078068443357 -0.3829925019228482 -0.9231879427444888 -0.03226090268538033 0.3829925019228482 0.9231879427444888 0.03226090268538033 0.969482534593383 0.003320064267726581 -0.2451379046407311 0.9686081273789292 0.011055620241521 -0.2483466706774216 -0.9686081273789292 -0.011055620241521 0.2483466706774216 -0.969482534593383 -0.003320064267726581 0.2451379046407311 0.9518018292501137 -0.1909778067330918 -0.2400015732689168 -0.9518018292501137 0.1909778067330918 0.2400015732689168 0.5327584513434122 -0.7277280272118245 -0.4319494772916799 -0.5327584513434122 0.7277280272118245 0.4319494772916799 0.4309135647672034 -0.8770253533943997 -0.2124618299908239 -0.4309135647672034 0.8770253533943997 0.2124618299908239 -0.4170594428444811 -0.9088731196315648 -0.003327693711584223 0.4170594428444811 0.9088731196315648 0.003327693711584223 -0.389889799865892 -0.920520092443446 -0.02507395797325029 0.389889799865892 0.920520092443446 0.02507395797325029 -0.5808401353985782 0.4821791438864718 -0.6558414521140539 0.5808401353985782 -0.4821791438864718 0.6558414521140539 -0.4351576601727508 0.8653660605412787 -0.2485546057836074 0.4351576601727508 -0.8653660605412787 0.2485546057836074 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381909181881517 -0.8670377328596581 0.4981877931206408 0.007381909181881517 -0.8670377328596581 0.4981877931206408 0.007381909181881517 -0.8670377328596581 0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 0.3983226025615785 0.8257120510117484 0.3994229751811265 0.006168303546718681 0.724165675140333 0.6895984534349694 -0.006168303546718681 -0.724165675140333 -0.6895984534349694 -0.3983226025615785 -0.8257120510117484 -0.3994229751811265 -0.3983149935338047 0.82571494562648 0.3994245792327065 -0.006168306624853458 0.7241656751259054 0.6895984534225869 0.006168306624853458 -0.7241656751259054 -0.6895984534225869 0.3983149935338047 -0.82571494562648 -0.3994245792327065 0.1616139654679756 0.9868432281948369 0.00462267581696379 -0.1616139654679756 -0.9868432281948369 -0.00462267581696379 -0.1616088560296658 0.9868440655201934 0.004622553445772205 0.1616088560296658 -0.9868440655201934 -0.004622553445772205 0.4351517892962836 0.8653687240638655 -0.248555610848599 -0.4351517892962836 -0.8653687240638655 0.248555610848599 1 -0 -0 -1 0 0 -0.00711704432119061 -0.8354119817383284 0.5495781731911931 -0.007114343072514042 -0.8359433818649293 0.5487695768160543 0.007114343072514042 0.8359433818649293 -0.5487695768160543 0.00711704432119061 0.8354119817383284 -0.5495781731911931 0.007117047871469148 -0.8354119815705081 0.5495781734003199 0.007114346624128299 -0.8359433819897826 0.548769576579821 -0.007114346624128299 0.8359433819897826 -0.548769576579821 -0.007117047871469148 0.8354119815705081 -0.5495781734003199 0.4205973650660567 -0.9033844932356513 0.08363201468849163 -0.4205973650660567 0.9033844932356513 -0.08363201468849163 -0.4205896914261071 -0.9033880303471145 0.08363239857646454 0.4205896914261071 0.9033880303471145 -0.08363239857646454 0.3898839349670044 -0.9205225746850979 -0.02507402540007215 -0.3898839349670044 0.9205225746850979 0.02507402540007215 0.5808354696970706 0.4821816265219495 -0.6558437589749793 -0.5808354696970706 -0.4821816265219495 0.6558437589749793 0.4170529949296572 -0.9088760784289615 -0.003327683848527164 -0.4170529949296572 0.9088760784289615 0.003327683848527164 0.375636554559482 -0.9267659594296408 -0.001426646816343268 -0.375636554559482 0.9267659594296408 0.001426646816343268 0.3615379352414891 -0.8963778338843952 -0.2565094546055576 -0.3615379352414891 0.8963778338843952 0.2565094546055576 -0.01317855971440936 -0.5315374133761069 -0.8469322899413455 0.3116445996116282 -0.7750366101410903 -0.5497234727332603 -0.3116445996116282 0.7750366101410903 0.5497234727332603 0.01317855971440936 0.5315374133761069 0.8469322899413455 -0.0009604106469768857 -0.003481589405118227 -0.9999934780520339 0.1909697935805264 -0.4542111818604366 -0.8701854631127529 -0.1909697935805264 0.4542111818604366 0.8701854631127529 0.0009604106469768857 0.003481589405118227 0.9999934780520339 -0.0164933863787913 0.09664605067485214 -0.9951821487017912 0.0164933863787913 -0.09664605067485214 0.9951821487017912 0.006165103925877515 0.7241364373548521 0.6896291841189768 -0.006165103925877515 -0.7241364373548521 -0.6896291841189768 0.1113597444880326 0.3410123073759261 0.9334396678552434 0.1127160108475753 0.2964221010645066 0.9483823273865414 0.06760990946514464 0.8518280438394437 0.5194399713833947 -0.06760990946514464 -0.8518280438394437 -0.5194399713833947 -0.1127160108475753 -0.2964221010645066 -0.9483823273865414 -0.1113597444880326 -0.3410123073759261 -0.9334396678552434 -0.1113597986625791 0.3410123265116291 0.9334396544013737 -0.0676099442996163 0.8518280349382184 0.5194399814464574 -0.1127160663844531 0.2964220991850565 0.9483823213733691 0.1127160663844531 -0.2964220991850565 -0.9483823213733691 0.0676099442996163 -0.8518280349382184 -0.5194399814464574 0.1113597986625791 -0.3410123265116291 -0.9334396544013737 -0.006165107002489781 0.7241364373411164 0.6896291841058957 0.006165107002489781 -0.7241364373411164 -0.6896291841058957 0.2520097343969997 0.9561807716861601 0.1490282712333903 -0.2520097343969997 -0.9561807716861601 -0.1490282712333903 -0.2520026543425559 0.9561827210020266 0.1490277365508405 0.2520026543425559 -0.9561827210020266 -0.1490277365508405 -0.2089810829856228 0.9593342405053436 -0.1897491026281595 0.2089810829856228 -0.9593342405053436 0.1897491026281595 0.2089764398195915 0.9593353216206724 -0.1897487504340671 -0.2089764398195915 -0.9593353216206724 0.1897487504340671 0.06511765981521719 0.8653027985546354 0.4970017677973647 -0.06511765981521719 -0.8653027985546354 -0.4970017677973647 -0.06511769217474663 0.8653027967235247 0.4970017667456341 0.06511769217474663 -0.8653027967235247 -0.4970017667456341 -0.004487133044256028 -0.5271690917589494 0.8497485594757354 -0.006053605977966533 -0.7118585486726083 0.7022967752570072 0.006053605977966533 0.7118585486726083 -0.7022967752570072 0.004487133044256028 0.5271690917589494 -0.8497485594757354 0.004487135279260867 -0.527169091262663 0.8497485597718208 0.006053608948403288 -0.711858542716506 0.7022967812685976 -0.006053608948403288 0.711858542716506 -0.7022967812685976 -0.004487135279260867 0.527169091262663 -0.8497485597718208 0.5230269111733532 -0.814656438621079 0.2505548586670826 0.9380631612546022 -0.3098704059889023 0.1549768917913092 -0.9380631612546022 0.3098704059889023 -0.1549768917913092 -0.5230269111733532 0.814656438621079 -0.2505548586670826 -0.5230218643211199 -0.8146592720761156 0.2505561810502257 -0.9380593085260298 -0.3098796964138935 0.1549816358092144 0.9380593085260298 0.3098796964138935 -0.1549816358092144 0.5230218643211199 0.8146592720761156 -0.2505561810502257 -0.4590575121611554 -0.8828407405763209 0.09928961328892443 0.4590575121611554 0.8828407405763209 -0.09928961328892443 0.4590519990438607 -0.8828435600932946 0.09929003260968643 -0.4590519990438607 0.8828435600932946 -0.09929003260968643 0.0009604082012670587 -0.003481586759837493 -0.9999934780635926 0.01649402129472259 0.09664494668425393 -0.9951822453912284 -0.01649402129472259 -0.09664494668425393 0.9951822453912284 -0.0009604082012670587 0.003481586759837493 0.9999934780635926 0.01317855819193988 -0.5315374160970591 -0.8469322882573572 -0.1909713844454057 -0.4542065493211052 -0.8701875320164152 0.1909713844454057 0.4542065493211052 0.8701875320164152 -0.01317855819193988 0.5315374160970591 0.8469322882573572 -0.3116373339559766 -0.775037729972948 -0.549726012849302 0.3116373339559766 0.775037729972948 0.549726012849302 -0.3615400346458993 -0.8963775113842584 -0.2565076225627719 0.3615400346458993 0.8963775113842584 0.2565076225627719 -0.3756351912458759 -0.9267665112885345 -0.001427113083451963 0.3756351912458759 0.9267665112885345 0.001427113083451963 0.3660163128328314 -0.8951196799710379 0.2545443326196945 -0.3660163128328314 0.8951196799710379 -0.2545443326196945 -0.4604682813638613 -0.8639448175538647 0.2038830892438882 0.4604682813638613 0.8639448175538647 -0.2038830892438882 -0.2452495829276179 0.537978731336872 -0.8064933519273415 0.2452495829276179 -0.537978731336872 0.8064933519273415 -0.3420778914638995 0.8352557333912953 -0.4305003786393016 0.3420778914638995 -0.8352557333912953 0.4305003786393016 0.9533547772720478 0.2073353234407452 0.2193780579417316 0.4929498273097556 0.8475452044592331 0.1966407743918826 -0.4929498273097556 -0.8475452044592331 -0.1966407743918826 -0.9533547772720478 -0.2073353234407452 -0.2193780579417316 0.9819633613475416 0.008174349160209676 0.1888945128553083 0.9712395268594098 0.1527028035397002 0.1826899976928819 -0.9712395268594098 -0.1527028035397002 -0.1826899976928819 -0.9819633613475416 -0.008174349160209676 -0.1888945128553083 -0.9819621457066552 0.008174608269845507 0.1889008210114933 -0.9533518229372173 0.2073416252522031 0.2193849405498462 -0.9712376137677075 0.1527078377669839 0.1826959602381562 0.9712376137677075 -0.1527078377669839 -0.1826959602381562 0.9533518229372173 -0.2073416252522031 -0.2193849405498462 0.9819621457066552 -0.008174608269845507 -0.1889008210114933 -0.4929436839516181 0.8475484893400156 0.1966420165418993 0.4929436839516181 -0.8475484893400156 -0.1966420165418993 -0.1616126467929127 0.9868433789549992 0.004636573009163386 0.1616126467929127 -0.9868433789549992 -0.004636573009163386 0.1616086986990226 0.9868440259602455 0.004636478338450456 -0.1616086986990226 -0.9868440259602455 -0.004636478338450456 0.3420719352007187 0.8352574249071307 -0.4305018295960471 -0.3420719352007187 -0.8352574249071307 0.4305018295960471 -0.002537005133132722 -0.2983222820992422 0.9544618272136685 0.002537005133132722 0.2983222820992422 -0.9544618272136685 0.002537006399231014 -0.2983222820982839 0.9544618272106026 -0.002537006399231014 0.2983222820982839 -0.9544618272106026 0.9692117246097193 -0.1700508427884214 0.1780767917107711 0.9755244633565797 -0.1339045376042436 0.1744178781027079 -0.9755244633565797 0.1339045376042436 -0.1744178781027079 -0.9692117246097193 0.1700508427884214 -0.1780767917107711 -0.969209682975027 -0.1700564158979245 0.1780825815159918 -0.975522834811217 -0.1339089090479584 0.1744236303929958 0.975522834811217 0.1339089090479584 -0.1744236303929958 0.969209682975027 0.1700564158979245 -0.1780825815159918 -0.5420085214821976 -0.8034774453955865 0.2462737448070021 0.5420085214821976 0.8034774453955865 -0.2462737448070021 0.5420050527543967 -0.8034794852516837 0.2462747237708181 -0.5420050527543967 0.8034794852516837 -0.2462747237708181 0.4604621041029297 -0.8639479349109633 0.203883830766897 -0.4604621041029297 0.8639479349109633 -0.203883830766897 0.2452400623599147 0.537977272359414 -0.8064972202298221 -0.2452400623599147 -0.537977272359414 0.8064972202298221 -0.3660181200272975 -0.8951191958143714 0.2545434365610635 0.3660181200272975 0.8951191958143714 -0.2545434365610635 0.5349298534122274 -0.820438879235361 0.201816989788763 -0.5349298534122274 0.820438879235361 -0.201816989788763 0.5418619307912237 -0.8404674244212702 -0.0003955324055206845 -0.5418619307912237 0.8404674244212702 0.0003955324055206845 0.5346032101380197 -0.8189075422524407 -0.2087818118328113 -0.5346032101380197 0.8189075422524407 0.2087818118328113 0.5007885610287516 -0.7381352419440627 -0.452069885905855 -0.5007885610287516 0.7381352419440627 0.452069885905855 0.3684123294857594 -0.516149390177032 -0.7732154696478559 -0.3684123294857594 0.516149390177032 0.7732154696478559 0.0478582816317733 -0.0550397329247885 -0.9973365593814466 -0.0478582816317733 0.0550397329247885 0.9973365593814466 0.9820117227801273 -0.01516361406153519 0.1882100983767855 -0.9820117227801273 0.01516361406153519 -0.1882100983767855 -0.9820105098488078 -0.01516412257358528 0.188216385931347 0.9820105098488078 0.01516412257358528 -0.188216385931347 -0.1605722101379926 0.9819392217079419 0.1000596332343944 0.1605722101379926 -0.9819392217079419 -0.1000596332343944 0.1605682782363152 0.9819398513304203 0.100059764108343 -0.1605682782363152 -0.9819398513304203 -0.100059764108343 -0.1756091928408706 0.9545543256001183 -0.2408058364489564 0.1756091928408706 -0.9545543256001183 0.2408058364489564 0.1756049463341025 0.9545549760381938 -0.2408063548657312 -0.1756049463341025 -0.9545549760381938 0.2408063548657312 -4.224825819991032e-018 -0.7626436742213498 0.6468188511246096 -1.429016437196659e-017 -0.7626436742213498 0.6468188511246096 1.429016437196659e-017 0.7626436742213498 -0.6468188511246096 4.224825819991032e-018 0.7626436742213498 -0.6468188511246096 -1.013364126958988e-017 -0.7626436742213497 0.6468188511246096 0 -0.7626436742213497 0.6468188511246096 -0 0.7626436742213497 -0.6468188511246096 1.013364126958988e-017 0.7626436742213497 -0.6468188511246096 -0.5591105295910246 -0.7248419592501981 0.4024916766975165 0.5591105295910246 0.7248419592501981 -0.4024916766975165 0.5591056566767783 -0.7248450914082306 0.4024928050703792 -0.5591056566767783 0.7248450914082306 -0.4024928050703792 -0.04785727603751437 -0.05503628285538993 -0.9973367980274921 0.04785727603751437 0.05503628285538993 0.9973367980274921 -0.3684095361632931 -0.5161481207247707 -0.773217647972571 0.3684095361632931 0.5161481207247707 0.773217647972571 -0.500786033776766 -0.7381333534427802 -0.4520757689917162 0.500786033776766 0.7381333534427802 0.4520757689917162 -0.5346042318944263 -0.8189072324190625 -0.2087804107964212 0.5346042318944263 0.8189072324190625 0.2087804107964212 -0.5418602855356823 -0.8404684850344925 -0.0003957562555456968 0.5418602855356823 0.8404684850344925 0.0003957562555456968 -0.534930478721305 -0.8204385991749377 0.2018164708809996 0.534930478721305 0.8204385991749377 -0.2018164708809996 0.4951674708618757 -0.7385095350908808 0.4576164795766258 -0.4951674708618757 0.7385095350908808 -0.4576164795766258 0.3183395078452557 -0.7721101324745773 0.5500053645874112 -0.3183395078452557 0.7721101324745773 -0.5500053645874112 -0.3312334875777305 0.4585333926876312 -0.8246402273097425 0.3312334875777305 -0.4585333926876312 0.8246402273097425 -0.3953916543466458 0.760631889798606 -0.5148830623495241 0.3953916543466458 -0.760631889798606 0.5148830623495241 -0.4339903309879185 0.8776667121096652 0.2033556860862441 0 0.7418548498667967 0.6705604981872348 -0 -0.7418548498667967 -0.6705604981872348 0.4339903309879185 -0.8776667121096652 -0.2033556860862441 -3.5007466452076e-018 -0.0927257244181379 0.995691689244784 -0.545325893063524 0.6066233389940663 0.5784702195810603 0.545325893063524 -0.6066233389940663 -0.5784702195810603 3.5007466452076e-018 0.0927257244181379 -0.995691689244784 3.500835953124784e-018 -0.09272572441813787 0.995691689244784 0 0.7418548498667967 0.6705604981872347 0.5453237625103464 0.6066240261518271 0.5784715074546947 -0.5453237625103464 -0.6066240261518271 -0.5784715074546947 -0 -0.7418548498667967 -0.6705604981872347 -3.500835953124784e-018 0.09272572441813787 -0.995691689244784 0.433984687094243 0.8776692990887326 0.2033565656791167 -0.433984687094243 -0.8776692990887326 -0.2033565656791167 -0.1638429889992566 0.9864740220782488 -0.004947597452530763 0.1638429889992566 -0.9864740220782488 0.004947597452530763 0.1638388899380074 0.9864747034689766 -0.004947480133999534 -0.1638388899380074 -0.9864747034689766 0.004947480133999534 0.3954027592399868 0.7606273271792183 -0.5148812747941054 -0.3954027592399868 -0.7606273271792183 0.5148812747941054 -2.143303475908384e-017 -0.09272572441813802 0.995691689244784 2.143303475908384e-017 0.09272572441813802 -0.995691689244784 1.039644819016881e-017 -0.09272572441813794 0.995691689244784 -1.039644819016881e-017 0.09272572441813794 -0.995691689244784 -0.9729811604997007 -0.1604862499171054 0.1659874239218137 -0.9663649709820766 -0.1661986424099368 0.1962568575105194 0.9663649709820766 0.1661986424099368 -0.1962568575105194 0.9729811604997007 0.1604862499171054 -0.1659874239218137 0.9729797693100141 -0.1604903406621652 0.1659916234861693 0.9663632722055722 -0.166202713767299 0.1962617743436668 -0.9663632722055722 0.166202713767299 -0.1962617743436668 -0.9729797693100141 0.1604903406621652 -0.1659916234861693 -0.3183322774902897 -0.7721117779715709 0.550007239430014 0.3183322774902897 0.7721117779715709 -0.550007239430014 0.3312363991329317 0.4585259669551954 -0.8246431867888391 -0.3312363991329317 -0.4585259669551954 0.8246431867888391 -0.4951656625047575 -0.7385078120898534 0.4576212169015796 0.4951656625047575 0.7385078120898534 -0.4576212169015796 -0.1400766977702307 -0.9073438454459583 0.3963655697372422 0.1400766977702307 0.9073438454459583 -0.3963655697372422 -0.1256096743341652 -0.9833223113472117 0.1315273421020968 0.1256096743341652 0.9833223113472117 -0.1315273421020968 -0.128283290812836 -0.9917368882248544 0.001158374858148637 0.128283290812836 0.9917368882248544 -0.001158374858148637 -0.1153943029065925 -0.984098587901963 -0.1350337889050886 0.1153943029065925 0.984098587901963 0.1350337889050886 -0.1284831242963187 -0.9099543801398161 -0.3943033259248769 0.1284831242963187 0.9099543801398161 0.3943033259248769 -0.09849816820575726 -0.5903422102445749 -0.8011205812258603 0.09849816820575726 0.5903422102445749 0.8011205812258603 -0.03202782867604653 -0.1016115259451568 -0.9943084611856596 0.03202782867604653 0.1016115259451568 0.9943084611856596 -0.2141261850158152 0.9569679736873127 0.1958628965051106 0.2141261850158152 -0.9569679736873127 -0.1958628965051106 0.2141220647380355 0.9569688389538172 0.1958631733218463 -0.2141220647380355 -0.9569688389538172 -0.1958631733218463 -0.4672212444973646 0.8499038758801577 -0.2436549003287628 0.4672212444973646 -0.8499038758801577 0.2436549003287628 0.4672182636243016 0.8499080224456675 -0.243646152274948 -0.4672182636243016 -0.8499080224456675 0.243646152274948 -0.9826264533111563 -0.01797811170136815 0.1847215221699718 -0.9813579875627883 -0.003808794214706564 0.1921509649555376 0.9813579875627883 0.003808794214706564 -0.1921509649555376 0.9826264533111563 0.01797811170136815 -0.1847215221699718 0.9826255473396359 -0.01797857586882106 0.1847262962472046 0.9813570169983672 -0.00380888767080053 0.1921559199264434 -0.9813570169983672 0.00380888767080053 -0.1921559199264434 -0.9826255473396359 0.01797857586882106 -0.1847262962472046 -0.01040655362327202 -0.5310321088401302 0.8472877923247155 0.1945992146603698 -0.4494178078959073 0.8718685563773961 -0.1945992146603698 0.4494178078959073 -0.8718685563773961 0.01040655362327202 0.5310321088401302 -0.8472877923247155 0.01040654437201029 -0.5310321051968826 0.8472877947217229 -0.1946008373504995 -0.4494125680682662 0.8718708951242554 0.1946008373504995 0.4494125680682662 -0.8718708951242554 -0.01040654437201029 0.5310321051968826 -0.8472877947217229 0.03202750470163987 -0.101612159488225 -0.9943084068772254 -0.03202750470163987 0.101612159488225 0.9943084068772254 0.09849856501704039 -0.5903421861833855 -0.8011205501682033 -0.09849856501704039 0.5903421861833855 0.8011205501682033 0.1284865616602314 -0.9099544824154301 -0.3943019698210983 -0.1284865616602314 0.9099544824154301 0.3943019698210983 0.1153943190618475 -0.9840986892549881 -0.1350330364572579 -0.1153943190618475 0.9840986892549881 0.1350330364572579 0.1282830091798698 -0.9917369243417012 0.001158642749103654 -0.1282830091798698 0.9917369243417012 -0.001158642749103654 0.1256092611713195 -0.9833225359147746 0.1315260577609322 -0.1256092611713195 0.9833225359147746 -0.1315260577609322 0.1400799493552314 -0.9073439561764587 0.3963641671224688 -0.1400799493552314 0.9073439561764587 -0.3963641671224688 -0.09434577775386129 -0.5908641402970412 0.8012355720579669 0.09434577775386129 0.5908641402970412 -0.8012355720579669 0.3558044851785133 -0.5242703878370199 0.7736560791230648 -0.3558044851785133 0.5242703878370199 -0.7736560791230648 0.11044162975056 0.4763486881935899 -0.872292711006051 -0.11044162975056 -0.4763486881935899 0.872292711006051 -0.5138841473982002 0.7078534076519844 -0.4846304120959586 0.5138841473982002 -0.7078534076519844 0.4846304120959586 -0.5487656345747323 0.7204383497653253 0.424057616954591 0.5487656345747323 -0.7204383497653253 -0.424057616954591 -0.97240301549141 0.1423704772866765 0.1848324177745257 0.97240301549141 -0.1423704772866765 -0.1848324177745257 0.9724016040933897 0.1423740406102053 0.184837098324243 -0.9724016040933897 -0.1423740406102053 -0.184837098324243 0.5487607209511846 0.7204413695144796 0.4240588452482003 -0.5487607209511846 -0.7204413695144796 -0.4240588452482003 -0.4910713099762163 0.8711148161495533 0.002818794595687712 0.4910713099762163 -0.8711148161495533 -0.002818794595687712 0.4910715149506781 0.8711147029436044 0.002818070176919228 -0.4910715149506781 -0.8711147029436044 -0.002818070176919228 0.5138751071222991 0.7078565388566401 -0.4846354244975739 -0.5138751071222991 -0.7078565388566401 0.4846354244975739 -0.01952915716753109 0.09936770376786923 0.9948591214178152 -0.000901511437009039 -0.00239284428340388 0.9999967307813382 0.000901511437009039 0.00239284428340388 -0.9999967307813382 0.01952915716753109 -0.09936770376786923 -0.9948591214178152 0.0009015106142754519 -0.002392843584613443 0.9999967307837522 0.019530305448713 0.0993663276712274 0.9948592363215081 -0.019530305448713 -0.0993663276712274 -0.9948592363215081 -0.0009015106142754519 0.002392843584613443 -0.9999967307837522 -0.3558010816934756 -0.5242689737071172 0.7736586026625948 0.3558010816934756 0.5242689737071172 -0.7736586026625948 -0.1104368687109324 0.4763487936985649 -0.8722932561766407 0.1104368687109324 -0.4763487936985649 0.8722932561766407 0.09434667403723156 -0.5908640941187042 0.8012355005735802 -0.09434667403723156 0.5908640941187042 -0.8012355005735802 -0.5365507891276882 -0.2724842322812369 0.798664882065413 0.5365507891276882 0.2724842322812369 -0.798664882065413 -0.7718989017929135 -0.4700275721864217 0.4280726186004335 0.7718989017929135 0.4700275721864217 -0.4280726186004335 -0.8212626267043875 -0.5423479117822164 0.1771621871734457 0.8212626267043875 0.5423479117822164 -0.1771621871734457 -0.8298217026360002 -0.5580246638853392 0.002101506589023479 0.8298217026360002 0.5580246638853392 -0.002101506589023479 -0.8191525367658278 -0.5478711966426224 -0.1697830185839858 0.8191525367658278 0.5478711966426224 0.1697830185839858 -0.7636381136186676 -0.4827390762580249 -0.4287421319190264 0.7636381136186676 0.4827390762580249 0.4287421319190264 -0.5233844415973248 -0.2983440031957737 -0.7981601230649003 0.5233844415973248 0.2983440031957737 0.7981601230649003 -0.1044290352053733 0.005254070376865984 -0.9945184620461048 0.1044290352053733 -0.005254070376865984 0.9945184620461048 -0.472644591359042 0.8465163181847629 0.2449841082722667 0.472644591359042 -0.8465163181847629 -0.2449841082722667 0.4726405629488491 0.8465209651874089 0.2449758227939498 -0.4726405629488491 -0.8465209651874089 -0.2449758227939498 -0.5716476152068997 0.7948786592261468 -0.2034377573979513 0.5716476152068997 -0.7948786592261468 0.2034377573979513 0.5716538709212509 0.7948759531259698 -0.2034307523528113 -0.5716538709212509 -0.7948759531259698 0.2034307523528113 -0.2522332325838068 0.5353992599326737 0.8060558472239181 0.003454990292217633 0.5278882118816235 0.8493068343057785 -0.003454990292217633 -0.5278882118816235 -0.8493068343057785 0.2522332325838068 -0.5353992599326737 -0.8060558472239181 -0.00345498716885455 0.5278882133577253 0.8493068334010104 0.2522230714425461 0.5353976955645072 0.8060600658860997 -0.2522230714425461 -0.5353976955645072 -0.8060600658860997 0.00345498716885455 -0.5278882133577253 -0.8493068334010104 0.0449767607063262 -0.05522849264763451 0.9974602270748624 -0.0449767607063262 0.05522849264763451 -0.9974602270748624 -0.04497635205074753 -0.05522480061078004 0.9974604499195479 0.04497635205074753 0.05522480061078004 -0.9974604499195479 0.1044306828384715 0.005254899200190294 -0.9945182846565902 -0.1044306828384715 -0.005254899200190294 0.9945182846565902 0.5233819800666606 -0.2983432050961097 -0.7981620355006134 -0.5233819800666606 0.2983432050961097 0.7981620355006134 0.7636412175008654 -0.4827403031888474 -0.428735222032125 -0.7636412175008654 0.4827403031888474 0.428735222032125 0.8191529989231559 -0.5478741956857312 -0.1697711107842366 -0.8191529989231559 0.5478741956857312 0.1697711107842366 0.8298214721963223 -0.5580250124644846 0.002099939508719763 -0.8298214721963223 0.5580250124644846 -0.002099939508719763 0.8212619114047657 -0.5423522706732846 0.1771521588107895 -0.8212619114047657 0.5423522706732846 -0.1771521588107895 0.7719029417189524 -0.4700267448051407 0.4280662422260262 -0.7719029417189524 0.4700267448051407 -0.4280662422260262 0.5365496146771743 -0.27248320120415 0.7986660228476696 -0.5365496146771743 0.27248320120415 -0.7986660228476696 -0.1289437060681589 0.03485601270080709 0.9910391410252217 0.1289437060681589 -0.03485601270080709 -0.9910391410252217 -0.03479614492933991 -0.107556492015506 0.9935898697769491 0.03479614492933991 0.107556492015506 -0.9935898697769491 0.4117216244618857 0.3251528563313931 -0.8513289164418195 -0.4117216244618857 -0.3251528563313931 0.8513289164418195 0.2090209499597313 0.8118881659929046 -0.5451126933016783 -0.2090209499597313 -0.8118881659929046 0.5451126933016783 -0.40193394204585 0.7563622353385511 0.5161058759451913 0.40193394204585 -0.7563622353385511 -0.5161058759451913 0.4019449905548627 0.7563576842291382 0.5161039411546733 -0.4019449905548627 -0.7563576842291382 -0.5161039411546733 -0.5735166984635115 0.819193332634773 -0.0009382698162191664 0.5735166984635115 -0.819193332634773 0.0009382698162191664 0.5735121937818867 0.8191964859873223 -0.0009385784519762406 -0.5735121937818867 -0.8191964859873223 0.0009385784519762406 -0.2090240299687819 0.8118886554685469 -0.5451107832515193 0.2090240299687819 -0.8118886554685469 0.5451107832515193 -0.3159127438450883 0.468385233172462 0.825114786937094 0.3159127438450883 -0.468385233172462 -0.825114786937094 0.3159155219903057 0.4683779667290617 0.825117848097072 -0.3159155219903057 -0.4683779667290617 -0.825117848097072 0.03479582160481239 -0.1075568870946448 0.9935898383323755 -0.03479582160481239 0.1075568870946448 -0.9935898383323755 -0.4117181736895207 0.3251486966248509 -0.85133217402899 0.4117181736895207 -0.3251486966248509 0.85133217402899 0.1289448168390606 0.03485611312543633 0.9910389929705732 -0.1289448168390606 -0.03485611312543633 -0.9910389929705732 -0.2179986478772222 0.5715816519244338 0.7910568909421361 0.2179986478772222 -0.5715816519244338 -0.7910568909421361 -0.5815808283735376 0.4410522115439132 0.6835471357269907 0.5815808283735376 -0.4410522115439132 -0.6835471357269907 -0.8189788016617627 0.3296810862412729 0.4696638199855696 0.8189788016617627 -0.3296810862412729 -0.4696638199855696 -0.9368855294290948 0.2565188594263468 0.2375785754334149 0.9368855294290948 -0.2565188594263468 -0.2375785754334149 -0.9736690702705535 0.2279660041882405 0.0002062351157356025 0.9736690702705535 -0.2279660041882405 -0.0002062351157356025 -0.9397567116348682 0.2472500300875843 -0.236060893751819 0.9397567116348682 -0.2472500300875843 0.236060893751819 -0.8191797350546107 0.3112627907725366 -0.481726101385787 0.8191797350546107 -0.3112627907725366 0.481726101385787 -0.5762477640027265 0.4098641495958019 -0.707071349552482 0.5762477640027265 -0.4098641495958019 0.707071349552482 -0.2011847824327154 0.5359189442834044 -0.8199485157469719 0.2011847824327154 -0.5359189442834044 0.8199485157469719 -0.5570993725849827 0.8049566860049144 0.2041691032487639 0.5570993725849827 -0.8049566860049144 -0.2041691032487639 0.5571067054878111 0.8049534204623468 0.2041619690012957 -0.5571067054878111 -0.8049534204623468 -0.2041619690012957 0.244554282108253 0.935479489453685 -0.2550908228729328 -0.244554282108253 -0.935479489453685 0.2550908228729328 -0.2445560468036773 0.9354781423299914 -0.2550940712650647 0.2445560468036773 -0.9354781423299914 0.2550940712650647 -0.4948898272186186 0.7206569593878724 0.4855281719955623 0.4948898272186186 -0.7206569593878724 -0.4855281719955623 0.4948809605575952 0.7206596462753181 0.4855332214256047 -0.4948809605575952 -0.7206596462753181 -0.4855332214256047 0.113544970438825 0.4778958828496498 0.8710471082802582 -0.113544970438825 -0.4778958828496498 -0.8710471082802582 -0.1135390829164887 0.4778950769826455 0.8710483178597122 0.1135390829164887 -0.4778950769826455 -0.8710483178597122 0.201201418721007 0.5359196099292964 -0.8199439985742226 -0.201201418721007 -0.5359196099292964 0.8199439985742226 0.5762381845786991 0.4098643448626707 -0.7070790432785707 -0.5762381845786991 -0.4098643448626707 0.7070790432785707 0.8191556178229759 0.3112796801530513 -0.4817561982090866 -0.8191556178229759 -0.3112796801530513 0.4817561982090866 0.9397661340326265 0.2472489376023817 -0.2360245245305342 -0.9397661340326265 -0.2472489376023817 0.2360245245305342 0.9736700099245995 0.2279619934839536 0.0002032246345537654 -0.9736700099245995 -0.2279619934839536 -0.0002032246345537654 0.936894120427421 0.2565174721216962 0.2375461925706741 -0.936894120427421 -0.2565174721216962 -0.2375461925706741 0.8189551107340638 0.3296966683503205 0.4696941914493472 -0.8189551107340638 -0.3296966683503205 -0.4696941914493472 0.5815727234851986 0.4410522309737556 0.6835540189707624 -0.5815727234851986 -0.4410522309737556 -0.6835540189707624 0.2180149968763851 0.5715826008495109 0.7910516996651348 -0.2180149968763851 -0.5715826008495109 -0.7910516996651348 0.1615929276070497 0.6847314780545727 0.7106549997773765 -0.1615929276070497 -0.6847314780545727 -0.7106549997773765 0.3857982856502868 0.3539777102712661 0.851973863108729 -0.3857982856502868 -0.3539777102712661 -0.851973863108729 0.4710470348251843 0.2073320250443136 -0.8573961292036638 -0.4710470348251843 -0.2073320250443136 0.8573961292036638 0.7240439167329056 0.4871179768674159 -0.4883405402530791 -0.7240439167329056 -0.4871179768674159 0.4883405402530791 0.2596762166444364 0.9656824066951043 -0.005074633857011698 -0.2596762166444364 -0.9656824066951043 0.005074633857011698 -0.2596650624206113 0.96568541228746 -0.005073445899835583 0.2596650624206113 -0.96568541228746 0.005073445899835583 -0.724042314234301 0.4871179111181395 -0.4883429817926515 0.724042314234301 -0.4871179111181395 0.4883429817926515 0.2001431516069512 0.8113013914184546 0.5493020764090706 -0.2001431516069512 -0.8113013914184546 -0.5493020764090706 -0.200147528953493 0.811302209449807 0.549299273252452 0.200147528953493 -0.811302209449807 -0.549299273252452 -0.385793900643739 0.3539738078666538 0.8519774701073204 0.385793900643739 -0.3539738078666538 -0.8519774701073204 -0.4710390211828121 0.2073282544056938 -0.8574014435771766 0.4710390211828121 -0.2073282544056938 0.8574014435771766 -0.1615964627129738 0.6847282314695419 0.7106573240790866 0.1615964627129738 -0.6847282314695419 -0.7106573240790866 -0.3815297487970356 0.9242033489235089 -0.01682915985550096 0.3815297487970356 -0.9242033489235089 0.01682915985550096 -0.1893524600258164 0.9226379770853586 -0.3359833464950444 0.1893524600258164 -0.9226379770853586 0.3359833464950444 0.2430371049992868 0.9365806957721924 0.2524867638123671 -0.2430371049992868 -0.9365806957721924 -0.2524867638123671 -0.2430370270984135 0.9365799912233536 0.2524894522534115 0.2430370270984135 -0.9365799912233536 -0.2524894522534115 0.8151017431464896 0.5177508511940201 -0.2598907547555734 -0.8151017431464896 -0.5177508511940201 0.2598907547555734 -0.8151046069588269 0.5177485751983484 -0.2598863070547895 0.8151046069588269 -0.5177485751983484 0.2598863070547895 0.7143689442105867 0.4976941657223021 0.4919121150708055 -0.7143689442105867 -0.4976941657223021 -0.4919121150708055 -0.7143671097740584 0.4976943659632153 0.4919145764881657 0.7143671097740584 -0.4976943659632153 -0.4919145764881657 0.1893424248662611 0.9226408447753204 -0.3359811269968113 0.3815261748862386 0.9242048271015135 -0.01682900588081726 -0.3815261748862386 -0.9242048271015135 0.01682900588081726 -0.1893424248662611 -0.9226408447753204 0.3359811269968113 -0.06791426900456359 0.967764305676533 0.2425281441894815 0.06791426900456359 -0.967764305676533 -0.2425281441894815 0.7646667205034805 0.3007454141879074 0.5699447362678212 -0.7646667205034805 -0.3007454141879074 -0.5699447362678212 -0.04338468686296027 0.9656293038630097 -0.2562768356033023 0.04338468686296027 -0.9656293038630097 0.2562768356033023 0.7794250940536733 0.242256527445879 -0.5777614539490208 -0.7794250940536733 -0.242256527445879 0.5777614539490208 0.8458046245742587 0.533492675425588 -0.0003198687944614629 -0.8458046245742587 -0.533492675425588 0.0003198687944614629 -0.8458039896858844 0.53349368320006 -0.0003178318336505332 0.8458039896858844 -0.53349368320006 0.0003178318336505332 -0.7794180332466006 0.2422483115643041 -0.5777744239703283 0.7794180332466006 -0.2422483115643041 0.5777744239703283 0.8072299147687196 0.5296170535344539 0.2605487311578569 -0.8072299147687196 -0.5296170535344539 -0.2605487311578569 -0.8072346006267613 0.529613178217676 0.2605420906669885 0.8072346006267613 -0.529613178217676 -0.2605420906669885 -0.7646564644093824 0.3007414749600063 0.5699605746679528 0.7646564644093824 -0.3007414749600063 -0.5699605746679528 0.04338315991997069 0.9656295661029632 -0.2562761059934406 -0.04338315991997069 -0.9656295661029632 0.2562761059934406 0.06791218362178518 0.9677646416119429 0.2425273876522583 -0.06791218362178518 -0.9677646416119429 -0.2425273876522583 0.03596881937183998 0.9901531491874407 0.1352885257041033 -0.03596881937183998 -0.9901531491874407 -0.1352885257041033 0.05336704274176079 0.9892374608611649 -0.1362395125430002 -0.05336704274176079 -0.9892374608611649 0.1362395125430002 0.9238445835961621 0.2567454882110192 -0.2838889565363886 -0.9238445835961621 -0.2567454882110192 0.2838889565363886 -0.9238498592351629 0.256741474720856 -0.2838754176559315 0.9238498592351629 -0.256741474720856 0.2838754176559315 0.9180233515898573 0.2848647456352883 0.2758354629663632 -0.9180233515898573 -0.2848647456352883 -0.2758354629663632 -0.9180321739839776 0.2848572832830602 0.2758138062005712 0.9180321739839776 -0.2848572832830602 -0.2758138062005712 -0.0533662582375591 0.9892377314270605 -0.1362378552486978 0.0533662582375591 -0.9892377314270605 0.1362378552486978 -0.03596860507902677 0.9901533491104316 0.1352871194684281 0.03596860507902677 -0.9901533491104316 -0.1352871194684281 0.08061863977779155 0.9967424115525362 0.002280336118426854 -0.08061863977779155 -0.9967424115525362 -0.002280336118426854 0.9631149707435038 0.26904404532459 -0.004985459368985176 -0.9631149707435038 -0.26904404532459 0.004985459368985176 -0.9631170908148206 0.2690365543304014 -0.004980142008200281 0.9631170908148206 -0.2690365543304014 0.004980142008200281 -0.08061888242522709 0.9967423920075657 0.002280300757270798 0.08061888242522709 -0.9967423920075657 -0.002280300757270798</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"816\" source=\"#ID233\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID231\">\r\n\t\t\t\t\t<float_array count=\"3654\" id=\"ID234\">-0.1258852921180548 -15.48570502078738 1.534266493751242 -15.56317789494367 -0.1266861167179144 -15.56317789494367 -20.22738456726074 -1.25975176692009 -20.22738456726074 -0.804327005147934 -20.13338327407837 -1.236639364560445 0.2171591933625222 -15.48512115102699 0.2179600183620088 -15.56259402518073 -1.442991763260136 -15.56259402518073 20.22738456726074 -0.804327005147934 20.22738456726074 -1.25975176692009 20.13338327407837 -1.236639364560445 -1.534266493751242 14.81136512443701 -1.533465750397696 14.88883083827612 0.1266861167179146 14.81136512443701 1.535182831453892 -15.48560319931241 1.534382627736602 -15.56306891660233 -0.125769697796328 -15.48560319931241 -20.0537109375 -1.17082305153211 20.0537109375 -1.17082305153211 -20.32135009765625 -1.236639364560445 20.32135009765625 -1.236639364560445 -1.443908096956845 -15.48501972830002 0.2170436034463229 -15.48501972830002 -1.443107892840238 -15.56248544558737 1.442991763260136 14.81078125992196 -0.217960018362009 14.81078125992196 1.442191019507003 14.88824697375851 -20.42436417053202 -1.457934297741718 -20.37877720569773 -1.185995510641885 -20.28512865274249 -1.209954558772863 0.1263667481455355 14.8108939296594 -1.533786602762934 14.888339962441 0.1271657844858969 14.88833996244099 -20.01676861989358 -2.142210274540014 -20.02399308552023 -1.829286924592993 -19.93027556611291 -1.805495344233855 1.535182831453892 -11.81749829109407 -0.125769697796328 -11.81749829109406 -0.1250914032063509 -11.72661523658976 -20.00047206878662 -1.072321949402491 20.00047206878662 -1.072321949402491 0.2170436034463227 -11.81707672674592 -1.443908096956845 -11.81707672674592 0.2163653085178635 -11.72619367224318 -20.40102958679199 -1.170823520421982 20.40102958679199 -1.170823520421982 -0.2176406618968502 14.81031116168222 -0.2184396986359462 14.88775719446127 1.442511859765762 14.88775719446127 20.03095235338139 -1.812328709790346 20.02372738872175 -2.125252666203983 19.93723485288939 -1.788537083321516 20.37098365259558 -1.167128669961374 20.41657116571465 -1.439068106254421 20.27733512328646 -1.191087775289236 -19.27332397693066 -0.3641417240250766 -19.37498517074159 -0.1892271894203401 -19.19996052172735 -0.09598873356603006 -20.25288498192033 -1.282814483491743 -20.38300259367404 -1.216169844625221 -20.23855301829428 -0.9700426683051181 0.1271657844858967 10.12746505475762 -1.533786602762934 10.12746505475762 -1.533109210034726 10.21834130689198 -19.64642004864075 -2.524566304484259 -19.56917411608184 -2.186462850662363 -19.51654064930535 -2.457614418915185 1.53576798095259 -11.72712909143676 1.53508925514035 -11.81801568481086 -0.1251846092066019 -11.7271284439361 -19.98179435729981 -0.9561345557371775 19.98179435729981 -0.9561345557371775 1.535771774619323 -7.24993936660568 -0.1251808155399471 -7.24993885709483 -0.1247273262878519 -7.142904384136094 0.2164547174303251 -7.249699541016292 -1.444497043881923 -7.249700050527142 0.2160012279519299 -7.142665068058149 -1.443814524209448 -11.81759386889674 -1.444493250360386 -11.72670727552421 0.216458510951785 -11.72670662802354 -20.45424699783325 -1.072321949402491 20.45424699783325 -1.072321949402491 0.1280776013716562 10.21983633715882 0.1273991315217464 10.12894974260203 -1.532874948178165 10.21983633715882 1.44160021364496 10.21941468027686 -0.2186730368693393 10.12852808572163 -0.2193515070578187 10.21941468027685 1.442511859765762 10.12704401933711 -0.2184396986359461 10.12704401933711 1.441834466699521 10.21792027146991 19.58407642658773 -2.168589865662105 19.6613212151512 -2.506694049127253 19.53144193617117 -2.439742019072841 20.22472307134249 -0.9533116094784729 20.36917352486233 -1.199439246983046 20.23905601646291 -1.266084010725955 19.33720802203883 -0.1755983867431848 19.23554742857724 -0.3505131372780738 19.16218169939295 -0.08235981578698171 -1.801174134016037 6.165596324617181 -1.801174134016037 5.973266267907271 -2.164027541875839 6.165596324617181 -19.83645144563483 0.03318917964926284 -19.7386458323571 0.1983548763961393 -19.66380185096627 0.1291288351316886 -1.801174134016036 12.65174037172843 -2.164027541875838 12.77388336677867 -1.801174134016036 12.77388336677867 1.801174134016038 -14.18852359140346 2.16402754187584 -14.31067771740757 1.801174134016038 -14.31067771740757 -18.94105633498291 -2.750284032160559 -19.00181212506624 -2.48018548161269 -18.92481819325029 -2.412420390939995 -20.00047206878662 -0.8399464587370555 20.00047206878662 -0.8399464587370555 1.536427766611958 -3.037719784628627 -0.1245246814740755 -3.037719075692561 -0.1243657737671471 -2.920606382194752 0.2157985909101244 -3.037642433196023 -1.445153028328816 -3.03764314213209 0.215639683123898 -2.920529739698281 1.536424552133933 -7.141330885511757 1.535971735724498 -7.248360007971451 -0.1245278959520605 -7.141330121281866 -1.444696997338603 -7.248121035000783 -1.445149813974002 -7.141091912541681 0.2158018052648988 -7.141091148311789 19.02525222840553 -2.463730370768209 18.96449488988946 -2.733829416651876 18.94825847333672 -2.395965155820597 -20.47295093536377 -0.9561345557371775 20.47295093536377 -0.9561345557371775 0.1282193479991071 5.199645944215716 -1.532279787764698 5.306673480603418 0.1286728633344158 5.306674244821984 1.441005058336967 5.306434136946083 -0.2194932483535334 5.199406600558972 -0.2199467639151551 5.306434901164647 0.1280776013716559 5.198457694805845 -1.532874948178165 5.198457694805845 -1.532421904097657 5.305481681525087 1.44160021364496 5.198218590203622 -0.2193515070578185 5.198218590203623 1.441147169338374 5.30524257692227 19.7073272718307 0.2193619714884788 19.80513473309581 0.05419578943741742 19.63248359445579 0.1501357268180654 -1.709899455308914 -14.18852359140347 -1.709899455308914 -14.31067771740758 -2.072749584913254 -14.31067771740758 1.709899455308914 12.65174037172843 1.709899455308914 12.77388336677867 2.072749584913254 12.77388336677867 2.072749584913254 6.165596324617179 1.709899455308914 5.973266267907269 1.709899455308914 6.165596324617179 -1.801174134016037 2.880588778750365 -2.164027541875839 2.880588778750365 -2.164027541875839 3.10728777221482 -2.164027541875839 5.973266267907271 -17.31377201656435 0.08931789896481847 -17.37287013460527 0.3111986444837677 -17.20090103287147 0.2484264908816917 -2.164027541875838 12.65174037172843 2.164027541875838 -14.18852359140347 2.164027541875838 -14.31067771740758 1.801174134016036 -14.18852359140347 -12.24665345080589 -4.079363818946902 -12.29238037915529 -4.254866361738525 -12.33345400916902 -3.918308791597755 -20.0537109375 -0.7414472321669261 20.0537109375 -0.7414472321669261 1.536473731628583 1.023433804708911 -0.1244787976216367 1.02343398194291 -0.1246378109740279 1.140547373129819 0.2157527026406713 1.023357288952173 -1.445198997762496 1.023357111718174 0.2159117160724131 1.140470680139015 1.536473051392666 -2.92158106874024 1.536313956212724 -3.038695226888168 -0.1244794778575538 -2.921580891504811 -1.445039222293361 -3.038618494935111 -1.445198317552694 -2.921504336787248 0.2157533828504729 -2.92150415955182 -14.01397623552149 -4.302495126678767 -14.09490695303824 -4.139559529647563 -14.05452101996732 -4.037353805460541 14.15411215206861 -4.125126939414474 14.07317835339905 -4.288062767769929 14.11372681239765 -4.022921070123109 12.35919406675291 -4.244127343717848 12.31346799409292 -4.068624662957061 12.40027174729932 -3.907569508996484 -20.45424699783325 -0.8399464587370555 20.45424699783325 -0.8399464587370555 0.1285303983974092 0.9576156398572594 -1.532262887677826 1.074730746022038 0.1286896618719946 1.074730923259974 1.440988152825947 1.074653933634526 -0.2198043043227711 0.957538827469815 -0.2199635678768321 1.074654110872463 0.1286761474507288 0.9588850272414258 -1.532276503648425 0.9588843182825991 -1.532117005308048 1.076001303352002 1.441001774343951 0.9588073937422039 -0.2199500479082111 0.9588081027010309 1.440842275923982 1.07592437881154 -16.7753448735345 1.438180721989944 -16.64471179919583 1.476097594512997 -16.60427237279912 1.373910338866937 16.58518842739789 1.490732201329241 16.71582385163008 1.452815275052713 16.54474959254172 1.388544800815744 17.31704049764172 0.3204375904302545 17.25794314035383 0.09855671951743608 17.14506961262196 0.2576654013530714 -2.072749584913253 -14.18852359140347 -1.709899455308913 -14.18852359140347 -2.072749584913253 -14.31067771740758 2.072749584913254 12.65174037172843 2.072749584913254 5.973266267907269 2.072749584913254 2.880588778750366 1.709899455308914 2.880588778750366 2.072749584913254 3.107287772214821 13.68307907495966 1.072909917580273 13.62808642009628 0.8503769331383377 13.55208476113084 1.110051758401565 -1.801174134016037 3.10728777221482 16.77343157614949 1.093430361463871 16.8800370767962 0.9316686619756909 16.7822397986052 0.7553960546951699 19.66415887355527 -0.09164776415532905 19.71677879137577 -0.3628001049675953 19.58691646811338 -0.4297521812945988 20.32217697599747 -1.37764651333131 20.30784598460897 -1.690418858362025 20.17771158229746 -1.623774106597644 2.164027541875839 -6.109858504127848 1.801174134016037 -6.109858504127848 1.801174134016037 -5.930707404381179 -20.13338327407837 -0.6756296883026759 20.13338327407837 -0.6756296883026759 1.536431798160886 5.383194369809282 -0.1245206499251362 5.383194815632582 -0.1249735890401167 5.49022756400574 0.2157945595157108 5.382955785992272 -1.445157059723218 5.38295534016897 0.2162474988567167 5.489988534364836 1.536429922569505 1.141549740347531 1.53658890939953 1.024435640256233 -0.1245225255165305 1.141550153896868 -1.44531417111309 1.024358960517863 -1.445155184203727 1.141473060609095 0.2157964350352158 1.141473474158432 -4.418039454811175 -2.939394436690957 -4.515685712402823 -2.90258142229704 -4.509945086823084 -2.78555429801103 4.60235245800409 -2.899954755245872 4.504703024020952 -2.936767771359333 4.596612012498335 -2.782927625493501 -4.950180467880308 -3.765557817145136 -4.967657919060676 -3.987971337740143 -5.047637576747289 -3.72843591542275 5.053509723754392 -3.983803519776202 5.036032810786674 -3.761389973008671 5.133493100570709 -3.724268066917963 -1.709899455308914 -6.109858504127848 -2.072749584913253 -6.109858504127848 -1.709899455308914 -5.930707404381179 -20.40102958679199 -0.7414474666118622 20.40102958679199 -0.7414474666118622 0.1288377546512114 -2.971837188091958 -1.532274295216435 -2.854721620595885 0.1286783558827203 -2.854721207040741 1.440999565994849 -2.85464474342017 -0.2201116551053502 -2.971760310916177 -0.2199522562573161 -2.854644329865026 0.1286903598530311 -2.97310100861579 -1.532262189696789 -2.973101185855498 -1.532421555315797 -2.855984258820569 1.44098745487106 -2.973024325283773 -0.2199642658317187 -2.973024148044064 1.441146820569594 -2.855907398248911 -15.95889351019889 -0.03429134901812657 -15.82235116921501 -0.04436164856562209 -15.80896810424477 -0.1610045434072966 15.75831500296562 -0.03979592193297119 15.89485961610109 -0.02972562099683371 15.74493216452814 -0.1564388328590915 -15.94167276809853 -0.1989282114728265 -15.96040264678348 -0.03552441633350978 -15.81047560219309 -0.162236410886687 15.89637631539405 -0.03096368756243825 15.87764675367161 -0.1943675051849753 15.74644722515451 -0.1576756995503003 1.709899455308914 3.107287772214821 -20.29402090607722 -1.707137542595449 -20.30835265581908 -1.394364744684893 -20.16388658362278 -1.64049269433256 -19.73168774939586 -0.3806781729236828 -19.67906704044389 -0.1095253799235279 -19.601825519152 -0.4476303609034865 -16.92390303656202 0.9166428058467701 -16.81729575673723 1.078404696955189 -16.82610636654618 0.7403699897566273 -13.68951357730702 0.8410080554524878 -13.7445055611347 1.063541142515051 -13.61350942485764 1.100683000464225 13.0525877799319 0.1521790341023219 13.17040191568972 -0.001155844393756667 13.03920295411153 0.03553626429518431 16.24700292835964 1.102935238654555 16.31044231884614 0.841181457112277 16.20163974646863 1.002035331094687 -1.801174134016037 0.9281126122259156 -2.164027541875839 0.9281126122259156 -2.164027541875839 1.092179354949206 19.11775920122815 0.2551224137991908 19.10153141628488 -0.08274181684235182 19.04078517653014 0.1873572049067138 19.98183783074891 -0.5155219419165721 20.07555533468009 -0.491730323831432 19.989062704674 -0.828445788062113 20.23862187101954 -1.082531508487775 20.33227041494376 -1.106490578463651 20.19301794631684 -1.354470543530482 2.164027541875839 -5.930707404381178 2.164027541875839 -6.109858504127846 1.801174134016037 -5.930707404381178 0.1265715466658575 -8.624540498687608 -1.535181274761152 -8.476112729121779 0.1257712544890636 -8.476112526330917 1.443906540323413 -8.475808177192903 -0.2178454526559046 -8.6242359467574 -0.2170451600797494 -8.47580797440204 1.535778260544824 10.34166195767494 -0.125174329614441 10.34166228140747 -0.1258529536602815 10.43254622574892 0.2164482317530474 10.34124051642223 -1.444503529559196 10.34124019268969 0.2171268561375344 10.43212446076212 1.535776363654405 5.48854535393289 1.536229698567882 5.381517581354886 -0.1251762265048792 5.488545608676763 -1.444954967881073 5.381278331737467 -1.444501632741374 5.488306104314879 0.2164501285708891 5.488306359058752 -5.006386172853704 0.8644759555906119 -5.10633734776779 0.8543739725296139 -5.112620370191539 0.971383794125354 5.192089220564711 0.8515297083164171 5.092134941572865 0.8616316919311688 5.198372049964359 0.9685395363262117 -4.4198076004139 -2.939995586543617 -4.511711117659859 -2.786154666037582 -4.41176019428805 -2.776051142907861 4.598375461573348 -2.783526339728882 4.506468587809408 -2.937367267429926 4.498421434102714 -2.773422816126627 2.164027541875839 -4.221487111498896 1.801174134016037 -4.221487111498896 1.801174134016037 -3.99864903761605 -1.709899455308914 -4.221487111498896 -2.072749584913254 -4.221487111498896 -1.709899455308914 -3.99864903761605 -1.709899455308914 -5.930707404381178 -2.072749584913254 -6.109858504127846 -2.072749584913254 -5.930707404381178 -20.32135009765625 -0.6756296883026759 20.32135009765625 -0.6756296883026759 0.1285315268532095 -7.06673312404176 -1.532874170312753 -6.9597073232761 0.128078379237067 -6.959707195905827 1.441599435808795 -6.95946816837863 -0.2198054327362544 -7.066493969143699 -0.2193522848939825 -6.959468041008358 0.1286802715887128 -7.065549315582399 -1.53227237951043 -7.065549761362867 -1.532725812526302 -6.958527232137923 1.440997650360744 -7.065310448255558 -0.2199541718914076 -7.065310002475089 1.441451083602888 -6.958287919031208 -17.03570139470239 -1.664839179020459 -17.16215171293897 -1.465750723148897 -17.02109289708171 -1.548287371507728 17.10490101519861 -1.470209160463029 16.97844830994291 -1.669297642531781 16.96384001004768 -1.552745819682501 -16.10909598759142 -1.302788866770341 -16.10026045620292 -1.114236167078391 -15.97254971372975 -1.312826111367258 16.03698900342898 -1.116078629847719 16.04582438879647 -1.304631333774081 15.90927584270994 -1.314668578596409 -1.801174134016037 1.092179354949206 -1.801174134016037 0.9281126122259151 -2.16402754187584 1.092179354949206 2.072749584913254 1.092179354949206 1.709899455308914 0.9281126122259151 1.709899455308914 1.092179354949206 2.072749584913253 0.928112612225916 1.709899455308914 0.928112612225916 2.072749584913253 1.092179354949207 -20.32447832993505 -1.12534613712419 -20.23082980428274 -1.101387022951018 -20.18522545590466 -1.373326559639653 -19.99602312897831 -0.8454042666628082 -20.08251535874198 -0.508688298157286 -19.98879786942752 -0.5324799518734432 -19.12498771854559 -0.09920621455344565 -19.14121417005104 0.2386584948735982 -19.06424028196456 0.1708931899514246 -16.35799184967967 0.8279845533070835 -16.29455027534648 1.089738574145822 -16.24918742499983 0.9888385743428132 -13.23398984080131 -0.005659109431052334 -13.11617370435128 0.1476757854030664 -13.10278905354915 0.03103300316748309 -1.623332509725665 1.079694577807148 -1.623912730830739 0.9625784149731788 -5.485210456574892 1.07969475504561 13.18691021924062 0.1613203273318695 13.16818254401781 -0.00208362409851555 13.05036600887522 0.1512501135072835 -1.649230744145912 5.316901489714334 -1.65081451611082 5.209884161761756 -5.523024672812959 5.316902253860008 -1.721616743470018 10.23734429079699 -1.723712203225943 10.14648142792378 -5.629320716497547 10.23734429079698 -1.828819947018093 14.83327669988015 -5.785400478102014 14.91072905303895 -1.826823493132404 14.91072905303895 1.948040242702229 -15.49952216750314 5.965298784462179 -15.57698204488604 1.946590302434547 -15.57698204488604 17.9651228853713 -2.46866666317547 17.88111367877141 -2.734881495695522 17.82511370084852 -2.561231209508487 1.535185411592541 10.43307626874063 1.535863756865278 10.34218840029443 -0.1257671176576649 10.43307651155031 -5.589209059185219 14.34121049446882 -5.555801936241187 14.26833670692095 -7.146681740765876 13.86251749888974 5.674530193615789 14.31700556182349 7.232002004761192 13.83831259338827 5.641123056105888 14.24413177840787 -1.444589022608439 10.34176682675407 -1.443910676997195 10.43265469519871 0.2170410234059594 10.43265493800838 -8.509568598196866 4.183771607807824 -8.60374072404613 4.123470965439186 -8.630576273599415 4.228396712930236 8.682293648491479 4.111069268365709 8.588118293225817 4.171369973786545 8.709128504848385 4.215995125570333 -5.005124119188297 0.8652771805034814 -5.111357269189332 0.9721856630876584 -5.013927802630328 1.029193903125683 5.19711097734882 0.9693407154298069 5.090874916270149 0.862432226982461 5.099678329236927 1.026348958594327 2.164027541875839 -3.071965378997481 1.801174134016037 -3.071965378997481 1.801174134016037 -2.907898754035186 -1.709899455308914 -3.071965378997482 -2.072749584913253 -3.071965378997482 -1.709899455308914 -2.907898754035186 2.164027541875839 -3.99864903761605 -2.072749584913254 -3.99864903761605 -17.83013640463499 -2.745083098271195 -17.91414773614437 -2.478868123378903 -17.7741368920588 -2.571432719215629 -1.472393506701663 7.189482014100863 -1.47944486800743 7.337793609484673 0.1848775878461846 7.364425987845634 1.570465385352345 7.335115541791618 1.563414020547373 7.186803946510763 -0.09385624333294915 7.361747920134089 0.1278459538366897 -11.60445230359342 -1.533783998542705 -11.51356454702308 0.1271683887061131 -11.51356430421371 1.442509255643703 -11.51314345890218 -0.2191198682266861 -11.60403121547096 -0.2184423027579913 -11.51314321609281 0.1280793439095862 -11.60312746727764 -1.532873205640229 -11.60312762913219 -1.533551519883644 -11.51225002289478 1.441598471172542 -11.60270602728622 -0.2193532495302308 -11.60270586543168 1.442276785754449 -11.51182842105037 -19.71564877991073 -1.494040472876068 -19.81191580095041 -1.152676274233754 -19.6659051662743 -1.394427905724576 19.77946428884835 -1.162730732326592 19.68319536119753 -1.504095160702185 19.63345196448953 -1.404482526512843 -17.11234276679926 -1.418144715217714 -17.08288268909941 -1.162188648336637 -16.97124931523291 -1.500644719083383 17.02532203902382 -1.166305031655054 17.05478171365591 -1.422261127245591 16.91368607181041 -1.504761140364921 -1.801174134016037 -1.580052705958203 -1.801174134016037 -1.768733472471541 -2.164027541875839 -1.580052705958203 2.072749584913254 -1.580052705958203 1.709899455308914 -1.768733472471541 1.709899455308914 -1.580052705958203 -1.801174134016037 -1.768733472471541 -2.164027541875839 -1.768733472471541 -2.164027541875839 -1.580052705958203 2.072749584913254 -1.768733472471541 2.072749584913254 -1.580052705958202 -13.23177955480132 -0.00658200255963195 -13.25050698507355 0.1568219662438976 -13.11396101893223 0.1467517513486443 -1.85677580673647 -15.49846495925416 -1.855325867060111 -15.57592483664391 -5.874035988020432 -15.57592483664391 1.737565553146629 14.83182100552171 1.735569101289583 14.90927335871286 5.694150108665018 14.90927335871286 5.538076029825277 10.23604209361662 1.632468261753308 10.14517923074912 1.630372801597992 10.23604209361662 1.559579703773065 5.209048591982027 1.557995932234425 5.316065919938509 5.431790903520531 5.316066684084182 1.532681253467128 0.9622987077137645 1.532101032429185 1.079414870547939 5.393979426098372 1.079415047786401 -1.623332772088225 -2.466732283477933 -5.485210718937451 -2.466732106864797 -5.497703966683182 -2.350028972639862 -1.649232307100429 0.447377576352172 -5.523026235767493 0.4473782828116477 -5.510550193190154 0.564081855834275 13.44611496587061 -2.014045157192618 13.30957060914802 -2.024114142851768 13.29597490498195 -1.907486525431189 -1.721616743470019 3.751470101692875 -5.629320716497547 3.751470101692875 -5.593987872893266 3.854820861283677 -1.826823493132404 8.308347630418078 -5.785400478102014 8.308347630418076 -5.732785283958959 8.389268976536879 -5.965298784462179 14.23324356338103 -5.90365040839472 14.29366077080401 -1.946590302434547 14.23324356338103 6.140859473718176 -15.11938777954019 6.079619365090169 -15.18003497983019 2.061893856221012 -15.11938777954019 19.25650095716715 -2.778314433863801 19.32945595815604 -2.848790673537433 19.19517112251402 -2.946462966080575 -18.82236779398378 0.6784072465355927 -18.89905086944287 0.7463918189142581 -18.75080234157753 0.9238325989700599 -19.97088696162336 -0.1974415343765166 -20.06469025362492 -0.1738620178566139 -19.91066038848814 0.1632906828289227 20.07046133359917 -0.1880625399512464 19.97665805461466 -0.2116420885173906 19.91643107483787 0.149090618948812 18.92378358334661 0.7291600778045483 18.84710070390738 0.6611753685995382 18.77553365329143 0.9066012149792155 -10.80569009633248 0.1099605378774972 -10.92821405895882 0.1519472391902269 -10.82422126623122 0.3900870975693102 11.00007461399909 0.1490151236111422 10.87754812043968 0.1070284198381223 10.89607888937612 0.3871549959444814 2.164027541875839 1.030713255234531 1.801174134016037 1.030713255234531 1.801174134016037 1.194776216917491 -1.709899455308914 1.030713255234531 -2.072749584913254 1.030713255234531 -1.709899455308914 1.194776216917491 2.16402754187584 -2.907898754035186 2.16402754187584 -3.071965378997481 1.801174134016037 -2.907898754035186 -1.709899455308914 -2.907898754035186 -2.072749584913254 -3.071965378997482 -2.072749584913254 -2.907898754035186 12.98986872044777 -3.037455366848272 12.89700698097519 -3.196405471095785 12.86791455317681 -2.974745740430965 -12.82084986506411 -3.202609789768635 -12.91371409952405 -3.043659654109695 -12.79175797658145 -2.980950015299825 -19.29269603840264 -2.872384688597455 -19.21974135309156 -2.801908246698138 -19.15840974671375 -2.970057261403088 -1.533777853801287 -15.45945260546777 -1.534577153620485 -15.38198747693904 0.1271745334473898 -15.45945201608054 1.442503111133931 -15.45886978904782 -0.2184484472676229 -15.45886919966059 1.443302411351995 -15.38140466052163 -20.35913839763453 -0.9992405881392164 -20.39944525362752 -0.5877322188676134 -20.28079302324131 -0.932453177032359 20.38291650820884 -0.599747286199168 20.34260851149802 -1.011256052922561 20.26426322596364 -0.9444685773096617 -19.88015526090114 -1.147477682376389 -19.78934155726489 -0.9789607440089759 -19.73472769094323 -1.389446709145283 19.75796237056699 -0.9894516927722035 19.8487757038444 -1.157968754652141 19.70334647721835 -1.399937958769411 -1.801174134016037 -2.3692739281999 -1.801174134016037 -2.626277042775172 -2.164027541875839 -2.3692739281999 2.072749584913254 -2.3692739281999 1.709899455308914 -2.626277042775172 1.709899455308914 -2.3692739281999 -2.164027541875839 -2.626277042775172 2.072749584913254 -2.626277042775172 14.17973260486218 -1.149716057020562 14.18900416428264 -1.338255799942257 14.03847163581126 -1.232040378595642 -14.24825931667381 -1.336457444313252 -14.23898786253076 -1.147917698187767 -14.09772519752328 -1.230242021161755 -13.37209015912777 -2.019615903618303 -13.50863627162445 -2.00954691688874 -13.3584946268269 -1.902988273799286 -1.970622815117818 -15.11873913070546 -5.988349963112748 -15.17938633951847 -6.049588879628458 -15.11873913070546 1.855325867060111 14.23222149466546 5.812389996301541 14.29263872910246 5.874035988020432 14.23222149466546 5.694150108665017 8.307449396982861 1.735569101289583 8.307449396982861 5.641530148518164 8.388370697265708 5.538076029825278 3.750903665915818 1.630372801597992 3.750903665915819 5.502744973542115 3.854254436665682 5.431792466268043 0.4471755655462812 1.557997494981921 0.4471748590868135 5.419315828020097 0.5638791372650112 5.393979688424572 -2.46652122830907 1.532101294755384 -2.466521404922204 5.406473531880293 -2.349818095444993 -19.09568861490444 -1.860737775573822 -19.71716312893302 -1.743635927404361 -19.0933554765953 -1.743635927404361 -1.649233103102599 -2.859567199326331 -1.648675988840149 -2.976683373446285 -5.523027031769663 -2.85956678576967 -19.65501490689303 -0.02263704786605328 -19.0297120460069 -0.02263704786605328 -19.02750970147574 -0.139739765654591 -19.71716312893302 1.847660563006503 -19.0933554765953 1.847660563006503 -19.0867053147492 1.740765367513165 -19.25725339646276 3.827431524102865 -19.88853787551105 3.917867663004274 -19.26881717011474 3.917867663004274 -19.50128008188347 5.671749433882255 -20.13187847699102 5.748127731735295 -19.51778234712939 5.748127731735294 19.7667812749501 -5.811840188322443 20.39490611426976 -5.88769550952377 19.786675930432 -5.88769550952377 6.140859473718175 -11.82192118735633 2.061893856221012 -11.82192118735633 2.062672747337603 -11.73103509104769 -17.38165993209769 0.429103221833177 -17.29160418754188 0.7859695532530753 -17.22586501560617 0.6024968064149385 -19.99860051972076 -0.129264626879026 -20.03692995984601 0.274651531291131 -19.84284155047692 0.2073961150121447 20.0445830652846 0.2609923657732687 20.00625418497915 -0.1429243006399641 19.85049470330193 0.1937368648675621 17.33110558440374 0.7772354161435705 17.42116358810667 0.4203688994892632 17.26536684195997 0.5937625740723932 2.164027541875839 0.5515809805773705 1.801174134016037 0.5515809805773705 1.801174134016037 0.83208660130879 -1.709899455308914 0.5515809805773707 -2.072749584913254 0.5515809805773707 -1.709899455308914 0.8320866013087902 2.164027541875839 1.19477621691749 2.164027541875839 1.03071325523453 1.801174134016037 1.19477621691749 -1.709899455308914 1.19477621691749 -2.072749584913254 1.03071325523453 -2.072749584913254 1.19477621691749 8.289403965375485 -2.788661418358525 8.191755230015026 -2.825474632941424 8.183709745059858 -2.661530130953802 -8.104747585472685 -2.828122870696716 -8.202398775323518 -2.791309654783989 -8.096702295527615 -2.664178362786818 10.55889685108461 -5.946475750744878 10.44012297903797 -5.880095964417052 10.53628430554413 -5.840934631093697 -10.35731628797262 -5.89110171479426 -10.47609214127761 -5.957481542480854 -10.45348009169989 -5.851940357070943 -1.970622815117817 -11.82143713216541 -6.049588879628457 -11.82143713216541 -1.97140170614905 -11.73055103585631 -20.37146078337978 -0.5875260487930961 -20.32937631025639 -0.1610463816450941 -20.27762162786924 -0.5640350063438532 20.32417836561852 -0.1739015931347521 20.36626246054495 -0.6003817335958721 20.27242331558046 -0.5768906650759407 -20.36033972231744 -0.7896780462460825 -20.47467865286477 -0.4440562104675164 -20.32509873553122 -0.3628146208389277 20.46316738269153 -0.4571844655618593 20.34882768846971 -0.8028067005413702 20.31358754771352 -0.3759427820974189 -1.801174134016037 -6.977500372299702 -1.801174134016037 -7.160534927336461 -2.164027541875839 -6.977500372299702 2.072749584913254 -6.977500372299704 1.709899455308914 -7.160534927336463 1.709899455308914 -6.977500372299704 -1.801174134016037 -7.160534927336462 -2.164027541875839 -7.160534927336462 -2.164027541875839 -6.977500372299703 2.072749584913254 -7.160534927336462 1.709899455308915 -7.160534927336462 2.072749584913254 -6.977500372299703 16.40028087842734 -1.096514751653602 16.43264684739913 -1.35225353776757 16.24836178246479 -1.336003393894237 -16.47990704049319 -1.348561334813969 -16.44754130520498 -1.092822530397934 -16.29562067470131 -1.332311189777687 16.19609020845928 -2.976192540915188 16.05680323653849 -3.060572695513196 16.01186058132998 -2.959557939969597 -16.10550301620983 -3.047195266568088 -16.24479163187337 -2.96281503271374 -16.06056070560901 -2.946180416143652 1.557441176765298 -2.976414794792929 1.557998290877803 -2.859298620672535 5.431793262163925 -2.859298207115874 -19.71099252619484 -5.865995296541705 -19.73088776767315 -5.941849933856844 -20.33911867998974 -5.941849933856844 19.44287400693677 5.724306708224998 19.45937786699727 5.800683623232993 20.07347361540942 5.800683623232993 19.19668673045452 3.864446538353782 19.20824711419368 3.954884620453327 19.8279694010471 3.954884620453327 19.03145439579096 1.868086594865004 19.65526164385514 1.868086594865004 19.02480298406573 1.761191802296992 18.96731324907351 -0.01606998787516269 19.59261733200767 -0.01606998787516269 18.96511135067093 -0.1331727488302648 19.65526164385513 -1.75023393902643 19.03378714285789 -1.867335829994521 19.03145439579096 -1.75023393902643 -19.71716312893301 -3.035852820181699 -19.70630012688311 -2.932379932769402 -19.09335547659529 -3.035852820181699 -19.65501490689303 -1.661030144640715 -19.65130187729402 -1.544307681117579 -19.0297120460069 -1.661030144640715 -1.649233627418467 -5.66861509053434 -5.523027556085529 -5.668614660178287 -5.558497928304542 -5.565295516326459 -19.71716312893302 -0.3709380187175263 -19.72097596217537 -0.2542182464687891 -19.0933554765953 -0.3709380187175263 -19.88853787551104 1.004335023182328 -19.90021075152527 1.107755774515915 -19.26881717011473 1.004335023182328 -20.13187847699102 2.709321514746258 -20.15119418013812 2.790029141600843 -19.51778234712939 2.709321514746258 -20.39490611426976 4.825675277952427 -20.42026695723209 4.884771801353764 -19.786675930432 4.825675277952427 20.62862864475278 -5.189494413296692 20.6565575668751 -5.24789067845684 20.02542496075474 -5.189494413296694 6.234562162653291 -10.29060420000016 2.156048683565865 -10.20929661415252 6.286211616719921 -10.20929603489529 2.164027541875839 4.256228387112969 1.801174134016037 4.256228387112969 1.801174134016037 4.446850187936754 1.801174134016037 14.53565253497429 2.164027541875839 14.36881323059433 1.801174134016037 14.36881323059433 -1.709899455308914 14.5356525349743 -1.709899455308914 14.36881323059433 -2.072749584913253 14.36881323059433 -1.709899455308914 4.256228387112969 -2.072749584913254 4.256228387112969 -1.709899455308914 4.446850187936753 2.164027541875839 0.83208660130879 -2.072749584913254 0.8320866013087902 8.840650698761181 0.7309651901980898 8.740696993498888 0.741067230969132 8.749502213520943 0.90498390251546 -8.65457962069206 0.7439368182846401 -8.75453572456612 0.7338347770853647 -8.663384631687885 0.9078534967795184 8.285031415308975 -2.670887680950639 8.290773607553 -2.787914757671433 8.185077943099925 -2.660784213273968 -8.203770488478375 -2.790562541754825 -8.198028435409483 -2.673535460808032 -8.098072564572732 -2.663431992766513 6.286210747687413 -7.247709244640746 2.156047814533343 -7.247709754129139 2.156320294775668 -7.140680253534097 -2.064773746241611 -7.247565948528585 -6.194943086811017 -7.247565439040191 -2.065046226061218 -7.140536447932877 -2.064774615251489 -10.20907791273233 -6.143288541849903 -10.29038548467444 -6.194943955820882 -10.2090773334752 -1.801174134016037 -13.50682571730549 -2.164027541875839 -13.36383510451845 -1.801174134016037 -13.36383510451845 1.709899455308914 -13.5068257173055 1.709899455308914 -13.36383510451845 2.072749584913254 -13.36383510451845 -2.164027541875838 -13.50682571730549 -2.164027541875838 -13.36383510451845 -1.801174134016036 -13.50682571730549 2.072749584913254 -13.50682571730549 1.709899455308914 -13.50682571730549 2.072749584913254 -13.36383510451845 18.8177069592771 -1.209340377535111 18.90992502597356 -1.377384683742904 18.69081283492763 -1.552240444926474 -18.93728235548932 -1.368108922980885 -18.84506451152456 -1.200064541132465 -18.71816917170635 -1.542964762871077 19.49338849225603 -1.600214965321107 19.35491319362604 -1.844695599665951 19.27729808140946 -1.777382601357212 -19.37542426648113 -1.83007648905537 -19.51390051793135 -1.585595581796428 -19.29780925957031 -1.762763415605031 -1.721617074545594 -6.968771324576598 -1.720217509984122 -7.075788784910571 -5.629321047573122 -6.968771197216782 1.628973567806513 -7.075050332908721 1.63037313263474 -6.968032872576905 5.538076360862024 -6.96803274521709 5.43179378641133 -5.667975308354976 1.55799881512521 -5.667975738711083 5.467262370965596 -5.564656151795372 -19.97241806420399 -5.243115459453888 -20.60355221981268 -5.301509222468676 -20.5756207094513 -5.243115459453886 19.73088776767315 4.877998344572728 20.36447977992893 4.937094554868735 20.33911867998974 4.877998344572728 20.09278821849486 2.822020037372321 20.07347361540942 2.741311791476443 19.45937786699727 2.741311791476443 19.83964137098812 1.124191389438626 19.8279694010471 1.020770416184978 19.20824711419368 1.020770416184977 19.65907569985622 -0.249251298510735 19.65526164385514 -0.3659709719504866 19.03145439579096 -0.3659709719504865 19.5889031099648 -1.549256831414366 19.59261733200767 -1.66597919737478 18.96731324907351 -1.66597919737478 19.64439942206315 -2.948580675760438 19.65526164385514 -3.052053772418875 19.03145439579096 -3.052053772418875 -13.33592262243147 -4.898779877281784 -13.32724461429281 -5.002380365810703 -13.9758112521686 -4.895899366622762 -19.27652982269344 -3.485648979579537 -19.88853787551105 -3.378800343703154 -19.26881717011474 -3.378800343703154 -12.78843572517963 -2.167939608558373 -12.78494239059626 -2.284666268952871 -13.43280904490074 -2.166317031007146 -12.86434947522666 0.3783191994140578 -12.86777865046281 0.2615920617598282 -13.51790675091619 0.3786073164295759 -12.80469908872295 3.150110555665507 -13.43915250706015 3.252547179441606 -12.79477930015034 3.253644499076614 -13.3724603603717 6.944633294311597 -13.99945800299225 7.023442643684843 -13.35957153980648 7.026130571389397 -13.23684863189478 12.02525215553542 -13.82154769380664 12.07864571751451 -13.22101723269816 12.08636941785606 12.33377592710247 -13.38925882167366 12.87212983008434 -13.45805102097961 12.31414740306657 -13.44971053785923 20.00563527017167 -4.289910144599922 20.62862864475278 -4.379461966831193 20.02542496075474 -4.379461966831193 2.164027541875839 4.446850187936754 2.16402754187584 14.5356525349743 2.16402754187584 14.36881323059433 1.801174134016037 14.5356525349743 -2.072749584913254 14.5356525349743 -1.709899455308915 14.5356525349743 -2.072749584913254 14.36881323059433 -2.072749584913254 4.446850187936753 8.332421442733166 0.3248724105630031 8.23478612014728 0.3816650488759661 8.244146163658927 0.6620740110073597 -8.14784378851318 0.3834650845206253 -8.245481565846042 0.3266724452599342 -8.157203605496989 0.6638740513313505 8.845018977540157 0.8474460458601429 8.838737870248515 0.7304361606346531 8.747586610073936 0.9044539734638741 -8.752619675533401 0.7333038493751959 -8.758900633707189 0.8503137395542709 -8.661465807769917 0.9073216695714188 6.381706256974224 -3.037854604489748 2.217293209073027 -3.037855313431844 2.217331895121768 -2.920741092364239 -2.126017979415087 -3.037836654842383 -6.29043087830499 -3.037835945900288 -2.126056665465213 -2.920722433774778 6.347327608743012 -5.977014465299771 2.217294058606035 -5.873458934281515 6.381707106507224 -5.873458194850908 -2.126018828940561 -5.87341449389307 -6.256058786560113 -5.976970028205966 -6.290431727830457 -5.87341375446244 -19.95263164985139 -4.329606636135661 -19.97241806420398 -4.419161021052664 -20.57562070945129 -4.419161021052665 19.86182033568163 -0.8703749569180225 20.01154621865167 -0.951449981342862 19.80451876606578 -1.27289923290686 -20.02232204506392 -0.9391425865699135 -19.87259621809162 -0.8580674981478026 -19.81529407100559 -1.260592091872657 20.23146596873297 -0.8716685261312739 20.12242406551535 -1.218348519731488 20.02862266206194 -1.194764354361259 -20.12822428633522 -1.204076335472272 -20.23726650002452 -0.8573959743186155 -20.03442289304061 -1.180492145097886 -1.826824586943753 -11.52725328202993 -1.825132545534608 -11.61812270646902 -5.785401571913356 -11.52725303926997 1.733878155305792 -11.6170711371541 1.735570194995614 -11.52620171269521 5.694151202371042 -11.52620146993524 -1.721617298496609 -9.930784784932458 -5.629321271524137 -9.93078464102506 -5.682238952383604 -9.849983874159859 5.538076584785603 -9.929676401114678 1.630373356558319 -9.929676545021975 5.590999032665459 -9.848875691607359 19.8279694010471 -3.399585845859671 19.21596080132521 -3.506434080563812 19.20824711419368 -3.399585845859672 -12.24637376714517 -13.40836023289157 -12.22674923757046 -13.46881107464228 -12.78473223522918 -13.47715143711746 13.15095731194658 12.04773369815918 13.13512647058755 12.10885081313781 13.73565693208303 12.10112713141661 13.913827371448 7.038180209726914 13.28682978420098 6.959370587725284 13.27393922907185 7.040868146729923 13.35256059130704 3.259584294556714 12.71810719620634 3.157147581717787 12.70818625333717 3.26068161514578 12.78132664426309 0.2637482655984293 12.77789917124408 0.3804753601100623 13.43145531771669 0.3807634770190918 12.69834033445918 -2.286792600824052 12.70183198112379 -2.170065983258001 13.34620643190982 -2.168443406302117 13.24156751753326 -5.010104758862823 13.25024668311079 -4.906504171975626 13.89013699207585 -4.903623658581844 -13.38655077693436 -9.407329466025793 -14.02643328442225 -9.403703719747682 -13.99974726314679 -9.315566488136867 -12.79265236282773 -3.17249119754468 -13.43702561684884 -3.170852553021684 -13.4421999530635 -3.069777157777844 -19.88853787551105 -4.653437878976164 -19.87105866931539 -4.572470025680754 -19.26881717011474 -4.653437878976163 -12.8664396327831 -2.550426284173941 -13.51999690804204 -2.550137563341048 -13.51423263529951 -2.431827814564653 -12.78725258424518 0.5421897651681046 -13.4316259157876 0.5411387125132219 -13.43730858216449 0.6594526508923403 -13.31820626962136 1.148622773729654 -13.95809572863937 1.14641997789693 -13.95356646660478 1.247520193935313 -13.05263182037547 8.058491633593386 -13.65322229626781 8.054612698573468 -13.67842590892999 8.143013872085891 -13.53753473976309 12.42088103693054 -13.56327857532572 12.49011286933152 -12.97958068716272 12.4303234295584 12.18807699161649 -13.99050758966505 12.21078310288069 -14.06453253642737 11.67574409871494 -13.98125989923936 20.80300052005983 -3.525848058974709 20.82854644668942 -3.605475864612836 20.20337945190793 -3.525848058974708 17.92773440791897 0.934404939424109 17.95883205212984 0.5087100955931938 17.86686999530537 0.7498942998668615 20.37068608345732 -0.3150210748115584 20.2389061130269 -0.7428518873839999 20.1766302477866 -0.3823346340016746 -20.2310649963513 -0.7288551156814925 -20.3628445054506 -0.301023868366783 -20.16878870812031 -0.3683374959578851 -17.90835210279895 0.5190444716235586 -17.87725191635645 0.9447395490675353 -17.81638799976208 0.7602288082544331 18.63292876559278 0.6798426208756718 18.71971455788247 0.4374742982094129 18.67283844015406 0.3369992226401191 -18.67640575487218 0.4500103576947548 -18.58961808424568 0.6923788763163904 -18.62952991850636 0.3495352008911188 6.414908754167234 1.023368008062789 2.238467718276084 1.023367830827259 2.238448809289845 1.14048199675667 -2.147192343400981 1.023358710823203 -6.323633826326739 1.023358888058733 -2.147173434416766 1.140472876752615 6.402859763642525 -2.580249934277293 2.238467956833238 -2.463520932997877 6.414908992724389 -2.463520756344259 -2.147192581957001 -2.463513878309864 -6.311584239756299 -2.58024287954372 -6.323634064882758 -2.463513701656246 20.80300052005983 -2.801340922762518 20.20337945190793 -2.801340922762517 20.188512053329 -2.694952224273715 -20.15280409823782 -2.823769506265871 -20.75242450568366 -2.823769506265871 -20.13793298121631 -2.717382437237145 -20.77796689271467 -3.639240388894365 -20.75242450568366 -3.559610185451681 -20.15280409823781 -3.559610185451681 20.35332457234593 -0.3912425455085675 20.31267981979008 -0.795018995246536 20.2188592612982 -0.8185559616507105 -20.30717484434662 -0.7814338473596483 -20.34781928729178 -0.3776570108690364 -20.21335429499406 -0.8049708363084362 -1.945145187511359 -15.47335699436489 -5.965303587510771 -15.39589692551435 -1.946595105483251 -15.39589771130469 1.853880752392238 -15.47229979428692 1.855330669772816 -15.39484051121988 5.874040790733024 -15.39483972542954 -5.785403239548952 -15.04013907866404 -5.847463225359407 -14.97998396035569 -1.826826254579378 -15.04013953634829 5.6941528698481 -15.03873239205965 1.735571862472703 -15.03873284974418 5.756210470486538 -14.97857723599753 -20.13187847699103 -4.886548309996081 -19.51778234712939 -4.886548309996081 -19.53176699574289 -4.976773996913344 19.4733595225263 -5.014604668516155 19.45937786699727 -4.924377015635736 20.07347361540942 -4.924377015635736 19.81049155353127 -4.60384828740536 19.8279694010471 -4.684816776859036 19.20824711419368 -4.684816776859035 -11.58742557215873 -13.99849849022211 -12.12246911885658 -14.08177050757356 -12.09976018715222 -14.00774611181299 12.89323353164304 12.45224083362812 13.47693195902317 12.51203027906792 13.45118815197472 12.44279844010534 13.56703584054666 8.070163337369181 12.96644536465432 8.074042272389097 13.59223945320884 8.158564510881602 13.87238915572219 1.150688780284061 13.23249801746846 1.152891577898662 13.86785819432984 1.251789078104015 13.34502163273091 0.543784993079222 12.70064717012643 0.5448360458892348 13.35070372348434 0.6620989489209274 13.43354892563288 -2.552814681976314 12.77999277959097 -2.553103402850863 13.42778520730833 -2.434504916130313 13.35043036383278 -3.174749920172591 12.70605597875404 -3.176388565908164 13.35560640873016 -3.07367445013428 13.94085189954146 -9.420090180270188 13.30096771279472 -9.423715927097835 13.91416594955969 -9.331952935300919 6.246267764111797 -10.52846786661774 6.291948354259946 -10.61163952638504 5.481289423857795 -10.52846786661774 -13.05222448821012 -8.58187421502493 -13.03820336607494 -8.663257287449984 -13.65281504003895 -8.57755341964312 6.245847800149925 -1.880433942362893 6.266406242435597 -1.980290088833311 5.411532210389346 -1.880433942362893 5.762895432627286 -2.532489777285673 5.773209501044816 -2.650608049472909 4.900561396497381 -2.532489777285673 5.724733741118499 0.7522634488976678 5.714453933394056 0.6341415790908785 4.845745101101401 0.7522634488976678 5.762895432627284 0.1446212800522538 5.74254738240009 0.04473273972453876 4.90056139649738 0.1446212800522538 6.24584780014993 9.099169542499173 6.200304759878094 9.015957262895716 5.411532210389351 9.099169542499173 6.194009239969899 14.76720583912763 5.481289423857793 14.82647764875103 6.246267764111794 14.82647764875103 -6.681573585152865 -15.68616414123209 -6.05407990356233 -15.74840312665198 -6.737347497045993 -15.74840312665198 12.48855316705312 -9.252799388235788 11.97610575784352 -9.249208305926727 11.99392520395582 -9.168288972593787 20.10612483648646 -0.06994634711913117 20.17767637959077 -0.4293966130357051 20.0994877879545 -0.4963115679919771 -20.16009323139969 -0.416667326695615 -20.08854078378872 -0.05721675942178185 -20.0819047173461 -0.4835823377522973 6.381704649756711 5.37887575203954 2.21729160185552 5.378875306235432 2.217181417853976 5.485903637859425 -2.126016372212715 5.378817155681943 -6.290429271102615 5.378817601486052 -2.125906188207228 5.485845487305934 6.393769807776276 0.5592844259689304 2.217292424198623 0.6760129261795581 6.381705472099821 0.6760133383679016 -2.126017194548094 0.6759985033494707 -6.302495025160681 0.559270003232243 -6.290430093437998 0.6759989155378136 20.9060612931202 -1.562612468000731 20.30848620802033 -1.562612468000731 20.30287072104166 -1.44558241718986 -20.25956944162511 -1.569885710493683 -20.85714420726013 -1.569885710493683 -20.25395425910502 -1.45285561270979 20.9060612931202 -2.225438164502922 20.92394225591409 -2.32830743226695 20.30848620802033 -2.225438164502923 -20.87502839644772 -2.345641707276582 -20.85714420726013 -2.242773584147423 -20.25956944162511 -2.242773584147423 -11.88817560536505 -9.260603524094993 -12.40062473387321 -9.264194641840197 -11.906001431415 -9.179683392264884 2.06097151102202 14.99813896867651 6.140855942856528 14.92067524972966 2.061890325359427 14.92067466034867 -1.969700470176329 14.99746901968832 -1.970619284413044 14.92000471135974 -6.049585348923622 14.92000530074073 5.965295159525155 14.4647058947663 6.026937110409433 14.40431189296153 1.946586677497587 14.46470528209729 -5.874032363336034 14.46368315038819 -1.855322242375778 14.46368253771903 -5.935673121822985 14.40328913493601 -20.39490611426975 -5.70279024415907 -19.78667593043199 -5.70279024415907 -19.80659147745628 -5.778662702814096 19.75080462913672 -5.832812341942816 19.73088776767315 -5.756941274204897 20.33911867998974 -5.756941274204898 -20.13187847699103 -6.184768002291844 -20.10909363375337 -6.125026385394213 -19.51778234712939 -6.184768002291844 20.07347361540942 -6.235629099221573 19.45937786699727 -6.235629099221573 20.05068833849255 -6.175887826897446 12.95201542659176 -8.677205228103345 12.96603823407813 -8.595821883043008 13.56662878573868 -8.591501073186427 6.754616299660663 -15.6462745323125 6.810387904093108 -15.70851477878647 6.127121264295615 -15.70851477878647 -6.268455780373956 14.72898408943928 -6.320714429482843 14.78825583087804 -5.555738032909589 14.78825583087804 -5.486073660803411 9.074287849891656 -6.274845184594558 8.991075588023234 -6.320388277228336 9.074287849891652 -4.976351778539248 0.1415936677974302 -5.818333789585228 0.04170518630734208 -5.838683341421687 0.14159366779743 -4.921641526579893 0.7481925475422897 -5.790347859003281 0.6300707052936024 -5.800628184995603 0.7481925475422897 -4.97635177853925 -2.528411035207693 -5.848997933678714 -2.646529279441869 -5.838683341421689 -2.528411035207693 -5.486073660803408 -1.877463045824859 -6.340948186675116 -1.977319135869942 -6.320388277228332 -1.877463045824859 -5.555738032909594 -10.50352967720198 -6.366395134018609 -10.58670129809006 -6.320714429482849 -10.50352967720198 5.481289423857795 -15.98753793244891 5.510969567998247 -15.91530300543795 6.246267764111796 -15.98753793244891 6.24584780014993 -10.78771876483377 5.411532210389351 -10.78771876483377 5.435328218621169 -10.7037108618419 -13.91353734314843 -12.92171871146923 -13.8861213111479 -12.85288663792676 -13.31306410991564 -12.93200797088304 5.762895432627289 -4.557917422079658 4.900561396497384 -4.557917422079658 4.908463923540076 -4.455744293400096 5.724733741118496 -2.869284616338203 4.845745101101398 -2.869284616338203 4.852122102271112 -2.750999744964681 5.762895432627284 0.8523079849774781 4.900561396497379 0.8523079849774783 4.894223108620866 0.9705958909207604 6.245847800149928 2.592472923930502 5.41153221038935 2.592472923930502 5.404312132754207 2.694682901092746 6.246267764111791 9.189171306058729 5.48128942385779 9.189171306058727 5.457634726556623 9.273197912901006 6.054079903562323 15.20192656145848 6.026653593107932 15.27471197250861 6.737347497045986 15.20192656145848 -7.136840617307224 -15.86362293600253 -7.110680685708544 -15.94955050630191 -7.733638703188792 -15.86362293600253 11.88051109584065 -10.51035110463789 11.89856222168681 -10.59982731610746 11.40621783062836 -10.5074326416561 6.286208139886638 10.34096985642506 2.156045206732569 10.34096953267527 2.155637263309643 10.43185840111712 -2.064771138505662 10.34071600012359 -6.194940479075068 10.34071632387338 -2.064363195715607 10.4316048685672 6.320712284776231 4.047761473604088 2.156046116358797 4.151290242535098 6.286209049512875 4.151290488951789 -2.064772048108888 4.151180774574902 -6.229438067194808 4.047651997446768 -6.194941388678302 4.151181020991611 20.38689106185467 -0.3675360882013236 20.98075509356929 -0.4845585734268668 20.38100385810589 -0.4845585734268669 -20.93300181444927 -0.4772426378975562 -20.33913616396483 -0.3602201031614308 -20.33324933203611 -0.4772426378975562 20.98075509356928 -1.181125789820407 20.98439634225405 -1.297509928046471 20.38100385810589 -1.181125789820407 -20.93664116356928 -1.301150725698631 -20.93300181444927 -1.184766447515376 -20.33324933203611 -1.184766447515376 11.9425107601879 -5.460110390939859 11.46821182019071 -5.457833078615106 11.48129222873351 -5.354517706193568 -11.3796557633655 -5.462912767894873 -11.85395239058167 -5.465190072791427 -11.39273033654533 -5.359597732470252 -11.80992550383406 -10.61126265504318 -11.79187660583792 -10.52178615659516 -11.31758565358503 -10.51886768425294 6.19279012385028 8.64965783282023 2.061893058865427 8.730855545814588 6.140858676362587 8.730855762737491 -1.970622017798412 8.730438441473964 -6.10152548991167 8.649240755296395 -6.04958808230905 8.730438658396796 20.62862864475278 4.663095231786883 20.02542496075475 4.663095231786882 20.04875704449826 4.73834140769583 -19.99575106009266 4.793917561647061 -19.97241806420399 4.718672154314169 -20.5756207094513 4.71867215431417 20.39490611426976 5.063741524841502 20.36955884826999 5.00462172494337 19.786675930432 5.063741524841501 -20.33911867998975 5.116027931513679 -19.73088776767315 5.116027931513679 -20.31376897162592 5.056910494480397 -13.54894758620648 -12.869464876199 -12.99100108768251 -12.87938192315538 -12.9741469154952 -12.94032896927434 12.88781872262451 -12.96191251164105 12.90467236016845 -12.90096561145163 13.46261942713789 -12.89104858824029 13.82781376212289 -12.94490572427047 13.2273405288901 -12.95519498368427 13.80039773012236 -12.876073650728 7.206890183415421 -15.8194261028975 7.80369147570937 -15.8194261028975 7.180731613869257 -15.90535242980736 -6.127121264295615 15.16110947286534 -6.810387904093107 15.16110947286534 -6.099695999247533 15.23389437246668 -5.555738032909594 9.16386601240076 -6.320714429482849 9.163866012400758 -5.532082481422274 9.247892971168845 -5.48607366080341 2.582958482464122 -6.320388277228336 2.582958482464122 -5.478856527112153 2.685168097921368 -4.97635177853925 0.847745541607958 -5.838683341421689 0.847745541607958 -4.970013523685966 0.9660334486462843 -4.921641526579892 -2.864741126722707 -5.800628184995603 -2.864741126722707 -4.928018501940538 -2.746456254488112 -4.976351778539248 -4.548779407090365 -5.838683341421688 -4.548779407090365 -4.984251282078246 -4.446606624270848 -5.486073660803407 -10.7624996933367 -6.320388277228332 -10.7624996933367 -5.509870588640021 -10.67849145069768 -6.320714429482852 -15.94817489215379 -5.585417048391617 -15.87594043913541 -5.555738032909598 -15.94817489215379 21.57906557726768 -2.876514824472174 20.65680101162844 -3.153062524123012 21.51185973897987 -2.822035989789736 6.054079903562315 -15.35735574199614 6.737347497045978 -15.35735574199614 6.79137675512484 -15.41563520193747 19.78228867112949 -4.802496146611683 19.81720279778365 -4.884064396474167 18.82936954318858 -4.965817707361395 18.89928919099147 -2.459749490640927 18.91478716833286 -2.561382932191457 17.92280045984089 -2.570335453807294 18.56983972151805 -1.853871095590934 18.57741461973798 -1.972112239387514 17.58561952867072 -1.92545357159622 18.45123474670648 0.09423992229320444 18.44383717760304 -0.02400991670020455 17.46202567084532 0.06687675697882396 18.50194631647845 0.8301131190783623 18.48737543229769 0.7283892171674928 17.5176845152422 0.8472212211496896 19.1518036754584 4.037028737242856 19.12092319045545 3.954465979097988 18.17621860774099 4.104024287775686 19.89386684210612 4.621830500182345 20.82338060881069 4.415922753373301 20.76594985327408 4.35491387762656 -10.35094543297784 -14.20067283139461 -11.19410078352241 -14.53172579100197 -11.19811047518582 -14.44342460728844 -7.136840617307227 -10.31360030017205 -7.733638703188795 -10.31360030017205 -7.683242648508167 -10.23213913867737 20.32446354097022 0.8900140395694282 20.9060612931202 0.78372669717952 20.30848620802033 0.7837266971795198 -20.85714420726013 0.8063377358356672 -20.2755503314351 0.9126234382160128 -20.25956944162511 0.8063377358356674 20.9060612931202 -0.595340636213596 20.90255189760133 -0.7117279831918816 20.30848620802033 -0.595340636213596 -20.85363672124219 -0.7080966544917728 -20.85714420726013 -0.5917091687065901 -20.25956944162511 -0.5917091687065901 11.50908564424262 -1.918365067201044 11.05997776113018 -1.917319314272627 11.06360858494781 -1.800934974495052 -10.9708844374187 -1.918309278534524 -11.4199952284914 -1.919355031782282 -10.97451876354575 -1.801924903216777 11.49024261449513 -6.437900897545949 11.50125220196862 -6.545300943881646 11.04113504256883 -6.436775475956003 -11.41214246865376 -6.551134297138825 -11.40113237296818 -6.443734284266868 -10.95202189307697 -6.442608863027584 7.80369147570937 -10.28700547585288 7.206890183415421 -10.28700547585288 7.75329385580454 -10.20554490388711 20.80300052005983 2.519946469598104 20.20337945190793 2.519946469598103 20.22565931231011 2.609136494481905 -20.17508078172761 2.649577058616104 -20.15280409823781 2.560384419397016 -20.75242450568366 2.560384419397017 20.62862864475278 2.352086369464359 20.60494166879231 2.27210270209862 20.02542496075475 2.352086369464359 -20.55193740283809 2.305486034160472 -20.5756207094513 2.385472061529084 -19.97241806420399 2.385472061529084 12.2068980965008 12.9550050083438 11.69455395108866 12.94594609188215 11.67241457017144 13.00585786343107 -11.58412638900755 13.0226593553717 -11.60626177456227 12.96274836233339 -12.11860764338409 12.97180716108091 12.72918432577834 13.18306093999296 12.70393517905035 13.10954874643071 12.17129791733646 13.17123547407489 -12.64157854467537 13.20214947501818 -12.08369156497823 13.19032410925815 -12.61632654269563 13.12863790408146 -6.864417233210737 -15.3761661782524 -6.810387904093118 -15.317886759067 -6.127121264295628 -15.317886759067 11.25489979803197 -14.38906050582082 11.25089241115764 -14.47736029460588 10.40773359752547 -14.14631256477208 -20.7612177207908 4.288671046468957 -20.81864838608558 4.349679073782933 -19.88913433797749 4.555583957092581 -19.13396671245228 3.912501603394154 -19.16484697658038 3.995064922279535 -18.18926161225843 4.06206092782526 -18.50563229836227 0.713973065757318 -18.52020368526477 0.8156964303875511 -17.53594028943154 0.8328044420980906 -18.46265677827362 -0.03181936797406507 -18.4700543868238 0.08643046949219194 -17.48084579267644 0.05906730453119619 -18.59516460013114 -1.964343308648128 -18.58758982961047 -1.846102159788938 -17.60336804499703 -1.917684638859098 -18.92986105151579 -2.547164824102136 -18.91436262528865 -2.445531918067848 -17.93787344073092 -2.556117298546288 -19.82431353319132 -4.842691482695914 -19.78939915044415 -4.761122784839052 -18.83648099627789 -4.924445242593923 -21.56115409333136 -2.81300687974492 -21.49394886930313 -2.758528585126467 -20.63888794608658 -3.08955183790076 -6.151187897777986 14.86793685246231 -6.183484001710157 14.8188325427136 -6.88676893606024 15.3445787044166 21.01588486134403 -1.493580908638953 20.97214619359315 -1.450305432604273 21.85257272911928 -1.099374492657775 -6.054079903562326 15.66394356841404 -6.085546252392573 15.57912534756473 -6.737347497045989 15.66394356841404 19.09784261631689 -5.665367083744897 19.07866516452079 -5.605766508192128 20.06451467253897 -5.510338225733223 18.94861090759784 -4.489328350193258 17.96526477264077 -4.567994219834461 17.95663560601861 -4.499031578449101 18.55626228192083 -2.245196215778663 17.56705774949353 -2.272660838106723 17.56448057618941 -2.198361804061612 17.50361834533681 0.3376192558547082 18.48537907942182 0.2463938007939507 17.50111210259477 0.263316631053256 17.98349004384679 2.778780388780819 18.95114781123171 2.650100072375254 17.97479970152297 2.709821865356972 18.66871701664516 4.739838390008994 18.68550973270752 4.799881018867224 19.62350378177931 4.626139503213997 20.48585895366501 3.208972020292398 20.5212234669863 3.256749896532715 21.3551482091582 2.922788511933866 -10.59260645905891 -14.02473504976397 -10.57474531747618 -14.07820756627867 -11.42549649788359 -14.3130698754175 -7.032480610264812 -9.929920506486791 -7.017465549157525 -10.009966694629 -7.564205398152559 -9.929920506486791 20.80300052005983 0.6130911782242035 20.78594527094802 0.5101369711179855 20.20337945190793 0.613091178224203 -20.73536589002804 0.5273515224651979 -20.75242450568366 0.6303045875238176 -20.15280409823781 0.6303045875238178 11.11481591308222 -0.1051635201005277 10.67313058780968 -0.1054507822121825 10.66932013353808 0.0109307059469806 -10.58370889753562 -0.1045602024869996 -11.02538954908752 -0.1042729402951162 -10.57989495614908 0.01182131817607818 11.12108527513962 -2.82985394616313 10.6758855991421 -2.711774660640677 11.1175709227317 -2.711485801621931 -10.58646658533347 -2.713396171815666 -11.03166571549463 -2.831475378943757 -11.0281472352027 -2.713107312988698 -7.032480610264807 -5.980251993563511 -7.564205398152554 -5.980251993563511 -7.530786548996639 -5.875759681946785 7.63471531577972 -5.966528150141411 7.102991448426993 -5.966528150141411 7.601296869834521 -5.862035759979094 7.634715315779718 -9.904777725263328 7.087974166484131 -9.98482475006748 7.102991448426991 -9.904777725263328 11.88104301060168 7.730744070698312 11.40674967366338 7.727387722639384 11.38700320447991 7.808030776517882 -11.31811627320468 7.737400235818781 -11.79240729693525 7.740756613765377 -11.29836349812367 7.818044007809075 12.42236784211999 8.855473325503414 11.93024021143789 8.93997306177841 12.44267920541723 8.944654170067947 -11.84224949512063 8.952765702106669 -12.33438121839557 8.868265640508742 -12.35469020856201 8.957446828418414 -7.13684061730723 14.6035380207491 -7.733638703188799 14.6035380207491 -7.793065852383537 14.66364680158483 7.863116019706955 14.62142281774234 7.803691475709366 14.56131246222641 7.206890183415417 14.56131246222641 6.810387904093108 15.62250881395056 6.158585597260383 15.53769164992117 6.127121264295615 15.62250881395056 10.64812188910312 -13.97020986349114 11.48100331908877 -14.25855713810598 10.63025727708445 -14.02368468870126 -20.47134883064427 3.141884624800533 -21.34064834484623 2.855720136661591 -20.50671077110817 3.189659325645795 -18.67744677331908 4.688548675580548 -19.63223152325436 4.574843078576825 -18.69423976044573 4.748594847996532 -18.96586603948137 2.620070198242451 -17.99820761879756 2.748751986681923 -17.98951765047572 2.679792674409498 -18.50374101007454 0.2355873519280551 -17.52198059616986 0.3268114671119724 -17.51947243429134 0.2525099336327405 -17.58504291080237 -2.261868284593515 -18.57424697963804 -2.234404066597924 -17.58246375705508 -2.187570344374183 -17.98007130213197 -4.537979718092 -18.96341891204808 -4.459312931132367 -17.97144271064198 -4.469016272537027 -20.06924100169798 -5.459150753230877 -19.08339303448883 -5.554584673331036 -19.10257096872654 -5.614188769922377 -21.82463515913867 -1.035607285027535 -20.94419451317123 -1.386516728459617 -20.98792973384786 -1.429789553625454 6.957030406515772 15.30147402807357 6.253764026412599 14.77571310684173 6.221463213333099 14.82481879511972 13.24902279558214 3.294787470836895 13.17250605793369 3.493275937324095 13.23996567473463 3.508783176795775 -5.365113282948636 15.79065007294183 -4.710040908357168 15.22767842466411 -5.39995510525978 15.70665233539627 16.19794462004861 2.754856657617638 16.1220949461399 2.556352607012657 16.13048607222746 2.770365114624273 18.34801597482679 1.481637412947112 18.20345860114789 1.329992227552638 18.29265451660103 1.525032494539118 19.53355452758557 0.3371112082606094 19.56892365470986 0.2736465125813908 19.38331637588949 0.1889224661028608 20.0821404801278 -0.5686390283897488 20.09416422805195 -0.6423614134252477 19.89559330751496 -0.6520758376530369 20.14746044991227 -1.316385372481673 20.13548672438661 -1.390114901023454 19.9488895817624 -1.326100459367725 19.73236464710091 -2.196742952686596 19.69731556752489 -2.260318123429297 19.54638105014318 -2.131632940623904 18.58278942852822 -3.435201583282729 18.52779480529105 -3.478882128864334 18.43703879388979 -3.302870002411925 16.33447133570581 -4.872926882947694 16.26708276076318 -4.888623179742998 16.25777471784159 -4.692823570233458 13.07313341024983 -5.779812798939578 13.00574360763224 -5.764118123836169 13.0831053701237 -5.584033418828343 -16.75140205280221 -7.033609355633292 -16.73455669734293 -6.95378890099922 -15.84941523673392 -6.938987130608046 11.485704578568 3.564039440242556 11.03659715100993 3.562346679198259 11.02256251450557 3.665582742433701 -10.94748000297495 3.566890853070066 -11.39659033852839 3.568583609031864 -10.9334511294356 3.67012660634021 11.49823570533242 0.784514190463575 11.0530095748095 0.9012468114319752 11.50211739701468 0.9028734869298769 -10.96390958408971 0.9030289786852718 -11.40913457640902 0.786296441410674 -11.41302031426358 0.9046556530168958 -7.476732188075237 -2.540275438685691 -7.96185890084587 -2.540275438685691 -7.949814201404601 -2.422254753791453 8.031016493912214 -2.536254287616334 7.545887520374816 -2.536254287616334 8.018975014907184 -2.418233402063202 -7.476732188075234 -6.917994599196333 -7.464511891600614 -7.025276898338348 -7.961858900845867 -6.917994599196333 8.03101649391221 -6.900416800026115 7.533669734336611 -7.007698404937827 7.545887520374811 -6.900416800026115 16.76420119447324 -6.91647899188791 16.78104572894176 -6.996300651314189 15.87906067360353 -6.901676998082103 11.91022314828462 4.561712338596312 11.44809652452617 4.666079386483428 11.92239421787382 4.669030272460829 -11.35951521528867 4.672466824850459 -11.82163888593369 4.568099821856783 -11.83381059580436 4.675417709558539 -7.032480610264804 8.72071542154522 -7.564205398152551 8.720715421545219 -7.614253547443564 8.802314661677276 7.634715315779717 8.694160543473812 7.102991448426989 8.694160543473812 7.684765391583088 8.775759062067047 -7.136840617307227 8.411319751399541 -7.151526848290986 8.331230264692637 -7.733638703188795 8.411319751399541 7.803691475709369 8.386000156298877 7.221578957882544 8.305909864359006 7.206890183415419 8.386000156298877 5.440152179921578 15.75103547255551 5.474990754676886 15.66703843587469 4.785074059763954 15.18806852163023 -12.91785455589404 -5.771413657964802 -12.98524824569778 -5.787108314123944 -12.99521938835092 -5.591329170328322 -16.18736023591789 -4.90079620378512 -16.254743835362 -4.885099940633942 -16.17804683615611 -4.704997013960973 -18.45660410930849 -3.492893670088006 -18.5116046017812 -3.449212762133619 -18.36585358986387 -3.316880083443126 -19.6342150670084 -2.270541307850118 -19.66926621938151 -2.206966020290432 -19.48327895573629 -2.141855888590541 -20.07656025567824 -1.393310997677839 -20.08852736323156 -1.31958186362021 -19.88995920110071 -1.329296898526438 -20.0347334368345 -0.6392674188977939 -20.02271642856252 -0.5655454133313304 -19.83616522247241 -0.6489817931228171 -19.50444059046417 0.2832174139911288 -19.46906936833976 0.3466822125640264 -19.31882967102436 0.1984932301516812 -18.13094297193036 1.342681974469279 -18.27550057868637 1.494328204769843 -18.22013320684589 1.537723585374211 -16.04192664748013 2.567288158049044 -16.1177766731274 2.765791866404721 -16.05032309836031 2.781300296672564 -13.08487286704176 3.500189080775882 -13.16139273782458 3.301700818487659 -13.15233636581025 3.515696304294178 10.24085731453228 3.054641142801304 10.09568434174807 3.206266583057336 10.15105999396724 3.249656014342071 -13.92169498924238 8.525583904608956 -13.92571437982139 8.464181066648459 -14.80733845710934 8.721989234606134 9.729376143567727 -5.485682896584646 9.674365302733431 -5.442009467930161 9.820724959866462 -5.309699448012958 -15.7431166168421 -8.744679841109498 -15.74617360574825 -8.806115397923687 -16.63121274020343 -8.824313949317142 -7.649723849017653 0.503208117632882 -8.118524992821746 0.5032081176328818 -8.130684527790425 0.6212197641389228 8.187117002699868 0.4991882500390427 7.718311818779396 0.4991882500390429 8.199273291994922 0.6172001007674531 -7.649723849017653 -2.827342530455175 -7.645574661377543 -2.94568937160102 -8.118524992821746 -2.827342530455175 8.187117002699868 -2.821886003920568 7.714161150644998 -2.940232951486718 7.718311818779396 -2.821886003920568 -17.35285518253659 -4.781519281615425 -17.33550081610619 -4.674675810283945 -16.46204657156678 -4.723592537597446 17.36116383204319 -4.649529544745183 17.37851949569528 -4.756372010921651 16.48771172748784 -4.698445811863101 15.77341221322411 -8.69490455544441 16.66150737375114 -8.774539078152111 15.77646917625345 -8.756340432034165 -7.476732188075231 3.934684559417278 -7.961858900845864 3.934684559417278 -7.996117669615851 4.039003763958955 8.03101649391221 3.92087212163712 7.545887520374811 3.92087212163712 8.065274653067206 4.025191448810749 -7.03248061026481 5.26692659629437 -7.04576841658478 5.159727383726821 -7.564205398152557 5.266926596294369 7.634715315779718 5.249844130181354 7.116276421466857 5.14264557215134 7.102991448426991 5.249844130181354 -16.35401105570545 5.589322087643444 -16.36932733869319 5.669338509553549 -15.46755489395689 5.45903300351341 16.40125262962586 5.632256087627205 16.38593746804693 5.552238438000799 15.49948268553142 5.421947354805714 14.84800931200649 8.674772106184451 13.96638717917902 8.416962603943121 13.96236775505396 8.478365759693405 -9.583499015840868 -5.444112271117455 -9.638510428180183 -5.487785702994803 -9.729861111525326 -5.311802241436492 -10.00503999929794 3.208677945844417 -10.15021542408105 3.057052493225586 -10.06041621888513 3.252067380666915 7.823263378063171 1.844995796719567 7.637044660860614 1.929707460771202 7.672430506030068 1.993162881079528 7.266002671424891 -4.081227628148306 7.230933229169728 -4.017662908855122 7.41752398173393 -3.952563600562411 -7.476732188075232 1.049556411670443 -7.481029337041679 0.9312145841113194 -7.961858900845867 1.049556411670443 8.031016493912208 1.044163919605646 7.550186096798842 0.9258219855750245 7.54588752037481 1.044163919605646 -17.52887280798863 -2.200391799271471 -17.52253928407527 -2.082104840340035 -16.65121182350999 -2.183526522309906 17.54693523901445 -2.074315040848438 17.55326847356357 -2.192602147985348 16.67561015576078 -2.175736849892744 -16.54224332996499 -5.38969046182404 -17.41554103145738 -5.339073624759178 -16.53793646737794 -5.32047998459549 17.44071208892617 -5.309329019913351 16.56741663537295 -5.359946560773709 16.56311019988906 -5.290735121216711 -17.04231749954915 3.027321072225742 -17.05857124665137 3.134267081755523 -16.16536354207718 2.950948116548893 17.08629494565541 3.10905467310819 17.07003942855553 3.002109703978317 16.19308803469502 2.925737491278382 -16.75249666411863 4.038603306935936 -15.86378180945119 3.918212494690579 -15.86143047294218 3.848944464869951 15.89325589887734 3.888945814367085 16.78196948360307 4.009338306784329 15.89090559118726 3.819676817843149 -7.139709940404122 -4.017280058561446 -7.174782378316723 -4.080844784922408 -7.326306038254803 -3.952180743030327 -7.545772553450412 1.92961163723237 -7.731996629065305 1.844899970947288 -7.581161383160362 1.993067059213717 6.454357718850154 0.02693688988193563 6.255173985870023 0.03665121777820374 6.267210639867439 0.1103728717575611 6.292475976014345 -2.027041327424431 6.10527931616058 -2.091055105081219 6.093292294909722 -2.017326341309507 -17.44600370363494 0.1948067163721705 -17.45223396575996 0.3130953221069958 -16.57304843904786 0.1674341708287272 17.47705044806883 0.3053220131582382 17.47082063427238 0.1870332541952688 16.59786600858757 0.1596606731941048 -16.70405113014801 -2.448568659391437 -17.57530955068302 -2.346780597106894 -16.70235926504646 -2.374251231000029 17.5992031813698 -2.336390013497714 16.72794694877144 -2.43817719827735 16.72625352080001 -2.363860410569207 -17.37580324632672 0.6068323270448055 -16.49823457562174 0.5349616993424446 -16.49675925541783 0.4606435041695667 16.52377211140471 0.5245348956779676 17.40133819795266 0.5964049026787099 16.52229490464012 0.4502173423448165 -6.014329621213945 -2.090569549442515 -6.201531625714024 -2.026555794576184 -6.002348538441281 -2.01684081192003 -6.164158314101604 0.03621855138512806 -6.363341453216346 0.02650422652073411 -6.176189022008093 0.1099401823557091</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1827\" source=\"#ID234\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID230\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID228\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID229\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1272\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID230\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID231\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 12 6 13 7 14 8 15 8 16 7 17 6 10 9 11 10 9 11 8 11 6 10 7 9 1 12 18 13 2 14 3 14 19 13 4 12 20 15 1 16 0 17 5 17 4 16 21 15 8 5 7 4 22 18 23 18 10 4 9 5 10 9 9 11 23 19 22 19 8 11 7 9 6 3 24 20 7 4 10 4 25 20 11 3 10 9 25 21 11 10 6 10 24 21 7 9 26 22 12 23 14 24 15 24 17 23 27 22 14 25 13 26 28 27 29 27 16 26 15 25 30 28 31 29 32 30 33 30 34 29 35 28 2 31 18 32 36 33 37 33 19 32 3 31 38 34 32 35 39 36 40 36 33 35 41 34 20 37 0 38 42 39 43 39 5 38 21 37 22 18 7 4 44 40 45 40 10 4 23 18 10 9 23 19 45 41 44 41 22 19 7 9 12 42 26 43 46 44 47 44 27 43 17 42 24 20 48 45 7 4 10 4 49 45 25 20 49 46 25 21 10 9 7 9 24 21 48 46 13 47 50 48 28 49 29 49 51 48 16 47 52 50 53 51 54 52 55 52 56 51 57 50 58 53 59 54 52 55 57 55 60 54 61 53 30 56 62 57 31 58 34 58 63 57 35 56 38 59 30 60 32 61 33 61 35 60 41 59 36 62 18 63 64 64 65 64 19 63 37 62 38 65 39 66 66 67 67 67 40 66 41 65 68 68 20 69 42 70 43 70 21 69 69 68 44 40 7 4 70 71 71 71 10 4 45 40 10 9 45 41 71 72 70 72 44 41 7 9 68 73 42 74 72 75 73 75 43 74 69 73 46 76 74 77 75 78 76 78 77 77 47 76 26 79 74 80 46 81 47 81 77 80 27 79 48 45 78 82 7 4 10 4 79 82 49 45 79 83 49 46 10 9 7 9 48 46 78 83 80 84 36 85 64 86 65 86 37 85 81 84 82 87 50 88 83 89 84 89 51 88 85 87 28 90 50 91 82 92 85 92 51 91 29 90 54 93 53 94 86 95 87 95 56 94 55 93 52 96 59 97 53 98 56 98 60 97 57 96 88 99 59 100 58 101 61 101 60 100 89 99 62 102 90 103 91 104 92 104 93 103 63 102 62 105 64 106 31 107 34 107 65 106 63 105 94 108 95 109 90 110 93 110 96 109 97 108 66 111 98 112 99 113 100 113 101 112 67 111 66 114 39 115 68 116 69 116 40 115 67 114 7 4 102 117 70 71 71 71 103 117 10 4 103 118 10 9 71 72 70 72 7 9 102 118 104 119 72 120 105 121 106 121 73 120 107 119 75 122 108 123 109 124 110 124 111 123 76 122 104 125 68 126 72 127 73 127 69 126 107 125 74 128 108 129 75 130 76 130 111 129 77 128 54 131 86 132 74 133 77 133 87 132 55 131 78 82 112 134 7 4 10 4 113 134 79 82 113 135 79 83 10 9 7 9 78 83 112 135 80 136 114 137 115 138 116 138 117 137 81 136 118 139 83 140 119 141 120 141 84 140 121 139 80 142 64 143 114 144 117 144 65 143 81 142 82 145 83 146 118 147 121 147 84 146 85 145 82 148 88 149 58 150 61 150 89 149 85 148 86 151 122 152 123 153 124 153 125 152 87 151 126 154 127 155 128 156 129 156 130 155 131 154 132 157 127 158 88 159 89 159 130 158 133 157 62 160 91 161 134 162 135 162 92 161 63 160 90 103 95 163 91 104 92 104 96 163 93 103 62 164 136 165 64 166 65 166 137 165 63 164 138 167 95 109 94 108 97 108 96 109 139 167 140 168 141 169 66 170 67 170 142 169 143 168 144 171 66 172 68 173 69 173 67 172 145 171 7 4 146 174 102 117 103 117 147 174 10 4 147 175 10 9 103 118 102 118 7 9 146 175 148 176 105 177 149 178 150 178 106 177 151 176 109 179 152 180 153 181 154 181 155 180 110 179 148 182 104 183 105 184 106 184 107 183 151 182 108 185 152 186 109 187 110 187 155 186 111 185 144 188 68 189 104 190 107 190 69 189 145 188 74 191 156 192 108 193 111 193 157 192 77 191 86 194 156 195 74 196 77 196 157 195 87 194 112 134 158 197 7 4 10 4 159 197 113 134 159 198 113 135 10 9 7 9 112 135 158 198 115 199 160 200 161 201 162 201 163 200 116 199 164 202 119 203 165 204 166 204 120 203 167 202 115 205 114 206 160 207 163 207 117 206 116 205 118 208 119 209 164 210 167 210 120 209 121 208 136 211 114 212 64 213 65 213 117 212 137 211 118 214 168 215 82 216 85 216 169 215 121 214 168 217 88 218 82 219 85 219 89 218 169 217 170 220 86 221 171 222 172 222 87 221 173 220 174 223 126 154 128 156 129 156 131 154 175 223 128 224 127 158 132 157 133 157 130 158 129 224 132 225 88 226 176 227 177 227 89 226 133 225 134 228 91 229 178 230 179 230 92 229 135 228 136 231 62 160 134 162 135 162 63 160 137 231 180 232 91 233 95 234 96 234 92 233 181 232 182 235 95 236 183 237 184 237 96 236 185 235 186 238 183 239 140 240 143 240 184 239 187 238 140 241 66 242 144 243 145 243 67 242 143 241 7 4 188 244 146 174 147 174 189 244 10 4 189 245 10 9 147 175 146 175 7 9 188 245 190 246 149 247 191 248 192 248 150 247 193 246 153 249 194 250 195 251 196 251 197 250 154 249 190 252 148 253 149 254 150 254 151 253 193 252 152 255 194 256 153 257 154 257 197 256 155 255 198 258 104 259 148 260 151 260 107 259 199 258 108 261 200 262 152 263 155 263 201 262 111 261 198 264 144 265 104 266 107 266 145 265 199 264 156 267 200 268 108 269 111 269 201 268 157 267 86 270 170 271 156 272 157 272 173 271 87 270 158 197 202 273 7 4 10 4 203 273 159 197 203 274 159 198 10 9 7 9 158 198 202 274 161 275 204 276 205 277 206 277 207 276 162 275 208 278 165 279 209 280 210 280 166 279 211 278 161 281 160 282 204 283 207 283 163 282 162 281 164 284 165 285 208 286 211 286 166 285 167 284 212 287 160 288 114 289 117 289 163 288 213 287 164 290 214 291 118 292 121 292 215 291 167 290 136 293 212 294 114 295 117 295 213 294 137 293 214 296 168 297 118 298 121 298 169 297 215 296 176 227 88 226 168 299 169 299 89 226 177 227 216 300 217 301 170 302 173 302 218 301 219 300 128 303 220 304 216 305 219 305 221 304 129 303 132 306 222 307 128 308 129 308 223 307 133 306 132 309 176 310 224 311 225 311 177 310 133 309 226 312 134 313 178 314 179 314 135 313 227 312 178 315 91 316 180 317 181 317 92 316 179 315 136 318 134 319 228 320 229 320 135 319 137 318 180 321 95 322 182 323 185 323 96 322 181 321 186 324 182 325 183 326 184 326 185 325 187 324 230 327 186 328 140 329 143 329 187 328 231 327 232 330 140 331 144 332 145 332 143 331 233 330 234 333 235 334 236 335 237 335 238 334 239 333 240 336 241 337 242 338 243 338 244 337 245 336 246 339 191 340 247 341 248 341 192 340 249 339 195 342 250 343 251 344 252 344 253 343 196 342 246 345 190 346 191 347 192 347 193 346 249 345 194 348 250 349 195 350 196 350 253 349 197 348 254 351 148 352 190 353 193 353 151 352 255 351 152 354 256 355 194 356 197 356 257 355 155 354 198 357 148 358 254 359 255 359 151 358 199 357 152 360 200 361 256 362 257 362 201 361 155 360 232 363 144 364 198 365 199 365 145 364 233 363 156 366 258 367 200 368 201 368 259 367 157 366 156 369 170 370 258 371 259 371 173 370 157 369 202 273 260 372 7 4 10 4 261 372 203 273 261 373 203 274 10 9 7 9 202 274 260 373 205 374 262 375 263 376 264 376 265 375 206 374 266 377 209 378 267 379 268 379 210 378 269 377 205 380 204 381 262 382 265 382 207 381 206 380 208 383 209 384 266 385 269 385 210 384 211 383 160 386 270 387 204 388 207 388 271 387 163 386 272 389 164 390 208 391 211 391 167 390 273 389 212 392 270 393 160 394 163 394 271 393 213 392 272 395 214 396 164 397 167 397 215 396 273 395 212 398 136 399 228 400 229 400 137 399 213 398 274 401 168 402 214 403 215 403 169 402 275 401 176 404 168 405 274 406 275 406 169 405 177 404 217 407 276 408 170 409 173 409 277 408 218 407 216 410 220 411 217 412 218 412 221 411 219 410 128 413 222 414 220 415 221 415 223 414 129 413 132 416 224 417 222 418 223 418 225 417 133 416 176 419 278 420 224 421 225 421 279 420 177 419 226 422 178 423 280 424 281 424 179 423 227 422 228 425 134 426 226 427 227 427 135 426 229 425 178 428 180 429 282 430 283 430 181 429 179 428 180 431 284 432 285 433 286 433 287 432 181 431 288 434 289 435 284 436 287 436 290 435 291 434 230 437 292 438 288 439 291 439 293 438 231 437 230 440 140 441 232 442 233 442 143 441 231 440 294 443 246 444 247 445 248 445 249 444 295 443 296 446 297 447 298 448 299 448 300 447 301 446 302 449 303 450 304 451 305 451 306 450 307 449 250 452 308 453 251 454 252 454 309 453 253 452 310 455 190 456 246 457 249 457 193 456 311 455 194 458 312 459 250 460 253 460 313 459 197 458 254 461 190 462 310 463 311 463 193 462 255 461 194 464 256 465 312 466 313 466 257 465 197 464 314 467 198 468 254 469 255 469 199 468 315 467 200 470 316 471 256 472 257 472 317 471 201 470 314 473 232 363 198 365 199 365 233 363 315 473 200 368 258 367 316 474 317 474 259 367 201 368 170 475 276 476 258 477 259 477 277 476 173 475 298 478 318 479 296 480 301 480 319 479 299 478 320 481 303 482 302 483 307 483 306 482 321 481 263 484 322 485 323 486 324 486 325 485 264 484 326 487 267 488 327 489 328 489 268 488 329 487 263 490 262 491 322 492 325 492 265 491 264 490 266 493 267 494 326 495 329 495 268 494 269 493 204 496 330 497 331 498 332 498 333 497 207 496 334 499 208 500 335 501 336 501 211 500 337 499 270 502 330 503 204 504 207 504 333 503 271 502 334 505 272 506 208 507 211 507 273 506 337 505 270 508 212 509 338 510 339 510 213 509 271 508 340 511 214 512 272 513 273 513 215 512 341 511 212 514 228 515 338 516 339 516 229 515 213 514 274 517 214 512 340 518 341 518 215 512 275 517 176 519 274 520 278 521 279 521 275 520 177 519 276 522 342 523 343 524 344 524 345 523 277 522 342 525 346 526 347 527 348 527 349 526 345 525 350 528 346 529 222 530 223 530 349 529 351 528 222 531 224 532 352 533 353 533 225 532 223 531 224 534 278 535 354 536 355 536 279 535 225 534 226 537 280 538 356 539 357 539 281 538 227 537 178 540 282 541 280 542 281 542 283 541 179 540 228 543 226 544 358 545 359 545 227 544 229 543 180 546 285 547 282 548 283 548 286 547 181 546 284 549 289 550 285 551 286 551 290 550 287 549 292 552 289 553 288 554 291 554 290 553 293 552 360 555 292 556 230 557 231 557 293 556 361 555 362 558 230 559 232 560 233 560 231 559 363 558 246 561 364 562 365 563 366 563 367 562 249 561 364 564 368 565 369 566 370 566 371 565 367 564 372 567 373 568 374 569 375 569 376 568 377 567 373 570 250 571 378 572 379 572 253 571 376 570 310 573 246 574 365 575 366 575 249 574 311 573 250 576 312 577 378 578 379 578 313 577 253 576 380 579 254 580 310 581 311 581 255 580 381 579 256 582 382 583 312 584 313 584 383 583 257 582 380 585 314 586 254 587 255 587 315 586 381 585 256 588 316 589 382 590 383 590 317 589 257 588 362 591 232 592 314 593 315 593 233 592 363 591 258 594 384 595 316 596 317 596 385 595 259 594 276 597 384 598 258 599 259 599 385 598 277 597 322 600 386 601 323 602 324 602 387 601 325 600 326 603 327 604 388 605 389 605 328 604 329 603 331 606 390 607 391 608 392 608 393 607 332 606 394 609 335 610 395 611 396 611 336 610 397 609 330 612 390 613 331 614 332 614 393 613 333 612 394 615 334 616 335 617 336 617 337 616 397 615 330 618 270 619 398 620 399 620 271 619 333 618 400 621 272 622 334 623 337 623 273 622 401 621 270 619 338 624 398 620 399 620 339 624 271 619 340 625 272 622 400 621 401 621 273 622 341 625 338 626 228 627 358 628 359 628 229 627 339 626 274 629 340 630 402 631 403 631 341 630 275 629 278 632 274 633 402 634 403 634 275 633 279 632 276 635 343 636 404 637 405 637 344 636 277 635 342 638 347 639 343 640 344 640 348 639 345 638 347 641 346 642 350 643 351 643 349 642 348 641 350 644 222 645 352 646 353 646 223 645 351 644 352 647 224 648 354 649 355 649 225 648 353 647 354 650 278 651 406 652 407 652 279 651 355 650 280 653 408 654 356 655 357 655 409 654 281 653 358 656 226 657 356 658 357 658 227 657 359 656 410 659 280 660 282 661 283 661 281 660 411 659 412 662 282 663 285 664 286 664 283 663 413 662 289 665 414 666 285 667 286 667 415 666 290 665 292 668 416 669 289 670 290 670 417 669 293 668 360 671 418 672 292 673 293 673 419 672 361 671 360 674 230 675 362 676 363 676 231 675 361 674 364 677 369 678 365 679 366 679 370 678 367 677 368 680 420 681 369 682 370 682 421 681 371 680 422 683 372 684 374 685 375 685 377 684 423 683 374 686 373 687 378 688 379 688 376 687 375 686 424 689 310 690 365 691 366 691 311 690 425 689 312 692 426 693 378 694 379 694 427 693 313 692 424 695 380 696 310 697 311 697 381 696 425 695 312 698 382 699 426 700 427 700 383 699 313 698 428 701 314 702 380 703 381 703 315 702 429 701 316 704 430 705 382 706 383 706 431 705 317 704 362 707 314 708 428 709 429 709 315 708 363 707 316 710 384 711 430 712 431 712 385 711 317 710 276 713 404 714 384 715 385 715 405 714 277 713 391 716 420 717 368 718 371 718 421 717 392 716 422 719 395 720 372 721 377 721 396 720 423 719 391 722 390 723 420 724 421 724 393 723 392 722 394 725 395 726 422 727 423 727 396 726 397 725 432 728 330 729 433 730 434 730 333 729 435 728 436 731 334 732 437 733 438 733 337 732 439 731 330 734 398 735 433 736 434 736 399 735 333 734 400 737 334 738 436 739 439 739 337 738 401 737 398 740 338 741 440 742 441 742 339 741 399 740 340 743 400 744 442 745 443 745 401 744 341 743 338 746 358 747 440 748 441 748 359 747 339 746 402 749 340 750 442 751 443 751 341 750 403 749 278 752 402 753 406 754 407 754 403 753 279 752 404 755 343 756 444 757 445 757 344 756 405 755 343 758 347 759 446 760 447 760 348 759 344 758 347 761 350 762 448 763 449 763 351 762 348 761 352 764 450 765 350 766 351 766 451 765 353 764 354 767 452 768 352 769 353 769 453 768 355 767 454 770 354 771 406 772 407 772 355 771 455 770 408 773 456 774 356 775 357 775 457 774 409 773 410 776 408 777 280 778 281 778 409 777 411 776 358 779 356 780 458 781 459 781 357 780 359 779 412 782 410 783 282 784 283 784 411 783 413 782 414 785 412 786 285 787 286 787 413 786 415 785 416 788 414 789 289 790 290 790 415 789 417 788 418 791 416 792 292 793 293 793 417 792 419 791 460 794 418 795 360 796 361 796 419 795 461 794 360 797 362 798 462 799 463 799 363 798 361 797 464 800 365 801 465 802 466 802 366 801 467 800 468 803 469 804 465 805 466 805 470 804 471 803 472 806 473 807 474 808 475 808 476 807 477 806 378 809 478 810 473 811 476 811 479 810 379 809 464 812 424 689 365 691 366 691 425 689 467 812 378 694 426 693 478 813 479 813 427 693 379 694 480 814 380 815 424 816 425 816 381 815 481 814 382 817 482 818 426 819 427 819 483 818 383 817 480 820 428 821 380 822 381 822 429 821 481 820 430 823 482 824 382 825 383 825 483 824 431 823 462 826 362 827 428 828 429 828 363 827 463 826 384 829 484 830 430 831 431 831 485 830 385 829 384 832 404 833 484 834 485 834 405 833 385 832 432 835 486 836 468 837 471 837 487 836 435 835 437 838 472 839 488 840 489 840 477 839 438 838 433 841 486 842 432 843 435 843 487 842 434 841 436 844 437 845 488 846 489 846 438 845 439 844 490 847 398 848 491 849 492 849 399 848 493 847 400 850 494 851 495 852 496 852 497 851 401 850 398 853 440 854 491 855 492 855 441 854 399 853 442 856 400 857 495 858 496 858 401 857 443 856 440 859 358 860 458 861 459 861 359 860 441 859 402 862 442 863 498 864 499 864 443 863 403 862 406 865 402 866 498 867 499 867 403 866 407 865 404 868 444 869 500 870 501 870 445 869 405 868 343 871 446 872 444 873 445 873 447 872 344 871 448 874 446 875 347 876 348 876 447 875 449 874 450 877 448 878 350 879 351 879 449 878 451 877 452 880 450 881 352 882 353 882 451 881 453 880 454 883 452 884 354 885 355 885 453 884 455 883 502 886 454 887 406 888 407 888 455 887 503 886 456 889 408 890 504 891 505 891 409 890 457 889 356 892 456 893 458 894 459 894 457 893 357 892 408 895 410 896 506 897 507 897 411 896 409 895 410 898 412 899 508 900 509 900 413 899 411 898 414 901 510 902 412 903 413 903 511 902 415 901 416 904 512 905 414 906 415 906 513 905 417 904 418 907 514 908 416 909 417 909 515 908 419 907 460 910 516 911 418 912 419 912 517 911 461 910 462 913 460 914 360 915 361 915 461 914 463 913 469 916 464 800 465 802 466 802 467 800 470 916 486 917 469 918 468 919 471 919 470 918 487 917 488 920 472 921 474 922 475 922 477 921 489 920 473 811 478 810 474 923 475 923 479 810 476 811 518 924 424 925 464 926 467 926 425 925 519 924 426 927 520 928 478 929 479 929 521 928 427 927 518 930 480 931 424 932 425 932 481 931 519 930 482 933 520 934 426 935 427 935 521 934 483 933 522 936 428 937 480 938 481 938 429 937 523 936 430 939 524 940 482 941 483 941 525 940 431 939 462 942 428 943 522 944 523 944 429 943 463 942 430 945 484 946 524 947 525 947 485 946 431 945 484 948 404 949 500 950 501 950 405 949 485 948 526 951 490 952 527 953 528 953 493 952 529 951 494 954 530 955 531 956 532 956 533 955 497 954 490 957 491 958 527 959 528 959 492 958 493 957 495 960 494 961 531 962 532 962 497 961 496 960 534 963 440 964 535 965 536 965 441 964 537 963 442 966 538 967 539 968 540 968 541 967 443 966 440 969 458 970 535 971 536 971 459 970 441 969 498 972 442 973 539 974 540 974 443 973 499 972 502 975 406 976 498 977 499 977 407 976 503 975 500 978 444 979 542 980 543 980 445 979 501 978 444 981 446 982 544 983 545 983 447 982 445 981 546 984 446 985 448 986 449 986 447 985 547 984 548 987 448 988 450 989 451 989 449 988 549 987 450 990 452 991 550 992 551 992 453 991 451 990 452 993 454 994 552 995 553 995 455 994 453 993 454 996 502 997 554 998 555 998 503 997 455 996 456 999 504 1000 556 1001 557 1001 505 1000 457 999 408 1002 506 1003 504 1004 505 1004 507 1003 409 1002 456 1005 558 1006 458 1007 459 1007 559 1006 457 1005 410 1008 508 1009 506 1010 507 1010 509 1009 411 1008 412 1011 510 1012 508 1013 509 1013 511 1012 413 1011 414 1014 512 1015 510 1016 511 1016 513 1015 415 1014 416 1017 514 1018 512 1019 513 1019 515 1018 417 1017 516 1020 514 1021 418 1022 419 1022 515 1021 517 1020 560 1023 516 1024 460 1025 461 1025 517 1024 561 1023 562 1026 460 1027 462 1028 463 1028 461 1027 563 1026 469 1029 564 1030 464 1031 467 1031 565 1030 470 1029 526 1032 566 1033 469 1034 470 1034 567 1033 529 1032 568 1035 530 1036 474 1037 475 1037 533 1036 569 1035 570 1038 474 1039 478 1040 479 1040 475 1039 571 1038 464 1041 564 1042 518 1043 519 1043 565 1042 467 1041 570 1044 478 1045 520 1046 521 1046 479 1045 571 1044 572 1047 480 1048 518 1049 519 1049 481 1048 573 1047 482 1050 574 1051 520 1052 521 1052 575 1051 483 1050 522 1053 480 1054 572 1055 573 1055 481 1054 523 1053 482 1056 524 1057 574 1058 575 1058 525 1057 483 1056 562 1059 462 1060 522 1061 523 1061 463 1060 563 1059 484 1062 576 1063 524 1064 525 1064 577 1063 485 1062 500 1065 576 1066 484 1067 485 1067 577 1066 501 1065 526 1068 527 1069 566 1070 567 1070 528 1069 529 1068 531 1071 530 1072 568 1073 569 1073 533 1072 532 1071 534 1074 578 1075 579 1076 580 1076 581 1075 537 1074 538 1077 582 1078 583 1079 584 1079 585 1078 541 1077 535 1080 578 1081 534 1082 537 1082 581 1081 536 1080 539 1083 538 1084 583 1085 584 1085 541 1084 540 1083 558 1086 535 1087 458 1088 459 1088 536 1087 559 1086 498 1089 539 1090 586 1091 587 1091 540 1090 499 1089 586 1092 502 1093 498 1094 499 1094 503 1093 587 1092 500 1095 542 1096 588 1097 589 1097 543 1096 501 1095 444 1098 544 1099 542 1100 543 1100 545 1099 445 1098 544 1101 446 1102 546 1103 547 1103 447 1102 545 1101 546 1104 448 1105 548 1106 549 1106 449 1105 547 1104 548 1107 450 1108 550 1109 551 1109 451 1108 549 1107 550 1110 452 1111 552 1112 553 1112 453 1111 551 1110 552 1113 454 1114 554 1115 555 1115 455 1114 553 1113 554 1116 502 1117 590 1118 591 1118 503 1117 555 1116 556 1119 504 1120 592 1121 593 1121 505 1120 557 1119 558 1122 456 1123 556 1124 557 1124 457 1123 559 1122 504 1125 506 1126 594 1127 595 1127 507 1126 505 1125 506 1128 508 1129 596 1130 597 1130 509 1129 507 1128 508 1131 510 1132 598 1133 599 1133 511 1132 509 1131 510 1134 512 1135 600 1136 601 1136 513 1135 511 1134 512 1137 514 1138 602 1139 603 1139 515 1138 513 1137 516 1140 604 1141 514 1142 515 1142 605 1141 517 1140 560 1143 606 1144 516 1145 517 1145 607 1144 561 1143 560 1146 460 1147 562 1148 563 1148 461 1147 561 1146 469 1149 566 1150 564 1151 565 1151 567 1150 470 1149 568 1152 474 1153 570 1154 571 1154 475 1153 569 1152 608 1155 518 1156 564 1157 565 1157 519 1156 609 1155 520 1158 610 1159 570 1160 571 1160 611 1159 521 1158 572 1161 518 1162 608 1163 609 1163 519 1162 573 1161 520 1164 574 1165 610 1166 611 1166 575 1165 521 1164 612 1167 522 1168 572 1169 573 1169 523 1168 613 1167 524 1170 614 1171 574 1172 575 1172 615 1171 525 1170 612 1173 562 1174 522 1175 523 1175 563 1174 613 1173 576 1176 614 1177 524 1178 525 1178 615 1177 577 1176 500 1179 588 1180 576 1181 577 1181 589 1180 501 1179 579 1182 616 1183 617 1184 618 1184 619 1183 580 1182 582 1185 620 1186 621 1187 622 1187 623 1186 585 1185 578 1188 616 1189 579 1190 580 1190 619 1189 581 1188 583 1191 582 1192 621 1193 622 1193 585 1192 584 1191 624 1194 578 1195 535 1196 536 1196 581 1195 625 1194 539 1197 583 1198 626 1199 627 1199 584 1198 540 1197 558 1200 624 1201 535 1202 536 1202 625 1201 559 1200 586 1203 539 1204 626 1205 627 1205 540 1204 587 1203 502 1206 586 1207 590 1208 591 1208 587 1207 503 1206 588 1209 542 1210 628 1211 629 1211 543 1210 589 1209 542 1212 544 1213 630 1214 631 1214 545 1213 543 1212 632 1215 544 1216 546 1217 547 1217 545 1216 633 1215 634 1218 546 1219 548 1220 549 1220 547 1219 635 1218 636 1221 548 1222 550 1223 551 1223 549 1222 637 1221 638 1224 550 1225 552 1226 553 1226 551 1225 639 1224 640 1227 552 1228 554 1229 555 1229 553 1228 641 1227 642 1230 554 1231 590 1232 591 1232 555 1231 643 1230 592 1233 644 1234 556 1235 557 1235 645 1234 593 1233 504 1236 594 1237 592 1238 593 1238 595 1237 505 1236 556 1239 646 1240 558 1241 559 1241 647 1240 557 1239 506 1242 596 1243 594 1244 595 1244 597 1243 507 1242 508 1245 598 1246 596 1247 597 1247 599 1246 509 1245 510 1248 600 1249 598 1250 599 1250 601 1249 511 1248 512 1251 602 1252 600 1253 601 1253 603 1252 513 1251 514 1254 604 1255 602 1256 603 1256 605 1255 515 1254 606 1257 604 1258 516 1259 517 1259 605 1258 607 1257 648 1260 606 1261 560 1262 561 1262 607 1261 649 1260 650 1263 560 1264 562 1265 563 1265 561 1264 651 1263 652 1266 564 1267 617 1268 618 1268 565 1267 653 1266 570 1269 654 1270 620 1271 623 1271 655 1270 571 1269 608 1272 564 1273 652 1274 653 1274 565 1273 609 1272 570 1275 610 1276 654 1277 655 1277 611 1276 571 1275 608 1278 656 1279 572 1280 573 1280 657 1279 609 1278 658 1281 610 1282 574 1283 575 1283 611 1282 659 1281 656 1284 612 1285 572 1286 573 1286 613 1285 657 1284 614 1287 658 1288 574 1289 575 1289 659 1288 615 1287 650 1290 562 1291 612 1292 613 1292 563 1291 651 1290 576 1293 660 1294 614 1295 615 1295 661 1294 577 1293 588 1296 660 1297 576 1298 577 1298 661 1297 589 1296 652 1299 617 1300 616 1301 619 1301 618 1300 653 1299 620 1302 654 1303 621 1304 622 1304 655 1303 623 1302 662 1305 616 1306 578 1307 581 1307 619 1306 663 1305 583 1308 621 1309 664 1310 665 1310 622 1309 584 1308 624 1311 662 1312 578 1313 581 1313 663 1312 625 1311 626 1314 583 1315 664 1316 665 1316 584 1315 627 1314 646 1317 624 1318 558 1319 559 1319 625 1318 647 1317 586 1320 626 1321 666 1322 667 1322 627 1321 587 1320 590 1323 586 1324 666 1325 667 1325 587 1324 591 1323 668 1326 588 1327 628 1328 629 1328 589 1327 669 1326 628 1329 542 1330 630 1331 631 1331 543 1330 629 1329 630 1332 544 1333 632 1334 633 1334 545 1333 631 1332 632 1335 546 1336 634 1337 635 1337 547 1336 633 1335 634 1338 548 1339 636 1340 637 1340 549 1339 635 1338 636 1341 550 1342 638 1343 639 1343 551 1342 637 1341 638 1344 552 1345 640 1346 641 1346 553 1345 639 1344 640 1347 554 1348 642 1349 643 1349 555 1348 641 1347 590 1350 670 1351 642 1352 643 1352 671 1351 591 1350 592 1353 672 1354 644 1355 645 1355 673 1354 593 1353 644 1356 646 1357 556 1358 557 1358 647 1357 645 1356 592 1359 594 1360 674 1361 675 1361 595 1360 593 1359 594 1362 596 1363 676 1364 677 1364 597 1363 595 1362 596 1365 598 1366 678 1367 679 1367 599 1366 597 1365 598 1368 600 1369 680 1370 681 1370 601 1369 599 1368 600 1371 602 1372 682 1373 683 1373 603 1372 601 1371 602 1374 604 1375 684 1376 685 1376 605 1375 603 1374 686 1377 604 1378 606 1379 607 1379 605 1378 687 1377 688 1380 606 1381 648 1382 649 1382 607 1381 689 1380 648 1383 560 1384 650 1385 651 1385 561 1384 649 1383 652 1386 690 1387 608 1388 609 1388 691 1387 653 1386 692 1389 654 1390 610 1391 611 1391 655 1390 693 1389 690 1392 656 1393 608 1394 609 1394 657 1393 691 1392 658 1395 692 1396 610 1397 611 1397 693 1396 659 1395 694 1398 612 1399 656 1400 657 1400 613 1399 695 1398 614 1401 696 1402 658 1403 659 1403 697 1402 615 1401 694 1404 650 1405 612 1406 613 1406 651 1405 695 1404 660 1407 696 1408 614 1409 615 1409 697 1408 661 1407 588 1410 668 1411 660 1412 661 1412 669 1411 589 1410 698 1413 652 1414 616 1415 619 1415 653 1414 699 1413 621 1416 654 1417 700 1418 701 1418 655 1417 622 1416 662 1419 698 1420 616 1421 619 1421 699 1420 663 1419 700 1422 664 1423 621 1424 622 1424 665 1423 701 1422 702 1425 662 1426 624 1427 625 1427 663 1426 703 1425 626 1428 664 1429 704 1430 705 1430 665 1429 627 1428 646 1431 702 1432 624 1433 625 1433 703 1432 647 1431 666 1434 626 1435 704 1436 705 1436 627 1435 667 1434 590 1437 666 1438 670 1439 671 1439 667 1438 591 1437 668 1440 628 1441 706 1442 707 1442 629 1441 669 1440 628 1443 630 1444 708 1445 709 1445 631 1444 629 1443 630 1446 632 1447 710 1448 711 1448 633 1447 631 1446 632 1449 634 1450 712 1451 713 1451 635 1450 633 1449 634 1452 636 1453 714 1454 715 1454 637 1453 635 1452 636 1455 638 1456 716 1457 717 1457 639 1456 637 1455 638 1458 640 1459 718 1460 719 1460 641 1459 639 1458 640 1461 642 1462 720 1463 721 1463 643 1462 641 1461 642 1464 670 1465 722 1466 723 1466 671 1465 643 1464 672 1467 724 1468 644 1469 645 1469 725 1468 673 1467 674 1470 672 1471 592 1472 593 1472 673 1471 675 1470 644 1473 726 1474 646 1475 647 1475 727 1474 645 1473 676 1476 674 1477 594 1478 595 1478 675 1477 677 1476 596 1479 678 1480 676 1481 677 1481 679 1480 597 1479 598 1482 680 1483 678 1484 679 1484 681 1483 599 1482 680 1485 600 1486 682 1487 683 1487 601 1486 681 1485 682 1488 602 1489 684 1490 685 1490 603 1489 683 1488 686 1491 684 1492 604 1493 605 1493 685 1492 687 1491 688 1494 686 1495 606 1496 607 1496 687 1495 689 1494 728 1497 688 1498 648 1499 649 1499 689 1498 729 1497 730 1500 648 1501 650 1502 651 1502 649 1501 731 1500 698 1503 690 1504 652 1505 653 1505 691 1504 699 1503 692 1506 700 1507 654 1508 655 1508 701 1507 693 1506 732 1509 656 1510 690 1511 691 1511 657 1510 733 1509 658 1512 734 1513 692 1514 693 1514 735 1513 659 1512 694 1515 656 1516 732 1517 733 1517 657 1516 695 1515 658 1518 696 1519 734 1520 735 1520 697 1519 659 1518 730 1521 650 1522 694 1523 695 1523 651 1522 731 1521 660 1524 736 1525 696 1526 697 1526 737 1525 661 1524 660 1527 668 1528 736 1529 737 1529 669 1528 661 1527 738 1530 698 1531 662 1532 663 1532 699 1531 739 1530 700 1533 740 1534 664 1535 665 1535 741 1534 701 1533 738 1536 662 1537 702 1538 703 1538 663 1537 739 1536 664 1539 740 1540 704 1541 705 1541 741 1540 665 1539 726 1542 702 1543 646 1544 647 1544 703 1543 727 1542 666 1545 704 1546 742 1547 743 1547 705 1546 667 1545 666 1548 742 1549 670 1550 671 1550 743 1549 667 1548 744 1551 668 1552 706 1553 707 1553 669 1552 745 1551 706 1554 628 1555 708 1556 709 1556 629 1555 707 1554 708 1557 630 1558 710 1559 711 1559 631 1558 709 1557 632 1560 712 1561 710 1562 711 1562 713 1561 633 1560 634 1563 714 1564 712 1565 713 1565 715 1564 635 1563 714 1566 636 1567 716 1568 717 1568 637 1567 715 1566 716 1569 638 1570 718 1571 719 1571 639 1570 717 1569 640 1572 720 1573 718 1574 719 1574 721 1573 641 1572 642 1575 722 1576 720 1577 721 1577 723 1576 643 1575 670 1578 746 1579 722 1580 723 1580 747 1579 671 1578 748 1581 724 1582 672 1583 673 1583 725 1582 749 1581 644 1584 724 1585 726 1586 727 1586 725 1585 645 1584 674 1587 748 1588 672 1589 673 1589 749 1588 675 1587 676 1590 748 1591 674 1592 675 1592 749 1591 677 1590 676 1593 678 1594 748 1595 749 1595 679 1594 677 1593 678 1596 680 1597 748 1598 749 1598 681 1597 679 1596 680 1599 682 1600 748 1601 749 1601 683 1600 681 1599 682 1602 684 1603 748 1604 749 1604 685 1603 683 1602 684 1605 686 1606 748 1607 749 1607 687 1606 685 1605 686 1608 688 1609 748 1610 749 1610 689 1609 687 1608 688 1611 750 1612 748 1613 749 1613 751 1612 689 1611 648 1614 730 1615 728 1616 729 1616 731 1615 649 1614 752 1617 690 1618 698 1619 699 1619 691 1618 753 1617 692 1620 754 1621 700 1622 701 1622 755 1621 693 1620 732 1623 690 1624 752 1625 753 1625 691 1624 733 1623 692 1626 734 1627 754 1628 755 1628 735 1627 693 1626 756 1629 694 1630 732 1631 733 1631 695 1630 757 1629 696 1632 758 1633 734 1634 735 1634 759 1633 697 1632 756 1635 730 1636 694 1637 695 1637 731 1636 757 1635 696 1638 736 1639 758 1640 759 1640 737 1639 697 1638 736 1641 668 1642 744 1643 745 1643 669 1642 737 1641 752 1644 698 1645 738 1646 739 1646 699 1645 753 1644 700 1647 754 1648 740 1649 741 1649 755 1648 701 1647 760 1650 738 1651 702 1652 703 1652 739 1651 761 1650 740 1653 762 1654 704 1655 705 1655 763 1654 741 1653 726 1656 760 1657 702 1658 703 1658 761 1657 727 1656 704 1659 762 1660 742 1661 743 1661 763 1660 705 1659 670 1662 742 1663 746 1664 747 1664 743 1663 671 1662 764 1665 706 1666 765 1667 766 1667 707 1666 767 1665 706 1668 708 1669 765 1670 766 1670 709 1669 707 1668 708 1671 710 1672 765 1673 766 1673 711 1672 709 1671 710 1674 712 1675 765 1676 766 1676 713 1675 711 1674 712 1677 714 1678 765 1679 766 1679 715 1678 713 1677 714 1680 716 1681 765 1682 766 1682 717 1681 715 1680 716 1683 718 1684 765 1685 766 1685 719 1684 717 1683 765 1686 718 1687 720 1688 721 1688 719 1687 766 1686 765 1689 720 1690 722 1691 723 1691 721 1690 766 1689 746 1692 765 1693 722 1694 723 1694 766 1693 747 1692 748 1695 768 1696 724 1697 725 1697 769 1696 749 1695 724 1698 770 1699 726 1700 727 1700 771 1699 725 1698 750 1701 772 1702 748 1703 749 1703 773 1702 751 1701 774 1704 728 1705 730 1706 731 1706 729 1705 775 1704 776 1707 732 1708 752 1709 753 1709 733 1708 777 1707 734 1710 778 1711 754 1712 755 1712 779 1711 735 1710 776 1713 756 1714 732 1715 733 1715 757 1714 777 1713 734 1716 758 1717 778 1718 779 1718 759 1717 735 1716 730 1719 756 1720 774 1721 775 1721 757 1720 731 1719 758 1722 736 1723 780 1724 781 1724 737 1723 759 1722 780 1725 736 1726 744 1727 745 1727 737 1726 781 1725 782 1728 752 1729 738 1730 739 1730 753 1729 783 1728 754 1731 784 1732 740 1733 741 1733 785 1732 755 1731 760 1734 782 1735 738 1736 739 1736 783 1735 761 1734 740 1737 784 1738 762 1739 763 1739 785 1738 741 1737 760 1740 726 1741 770 1742 771 1742 727 1741 761 1740 742 1743 762 1744 786 1745 787 1745 763 1744 743 1743 742 1746 786 1747 746 1748 747 1748 787 1747 743 1746 788 1749 764 1750 765 1751 766 1751 767 1750 789 1749 790 1752 765 1753 746 1754 747 1754 766 1753 791 1752 748 1755 792 1756 768 1757 769 1757 793 1756 749 1755 772 1758 794 1759 748 1760 749 1760 795 1759 773 1758 782 1761 776 1762 752 1763 753 1763 777 1762 783 1761 754 1764 778 1765 784 1766 785 1766 779 1765 755 1764 756 1767 776 1768 796 1769 797 1769 777 1768 757 1767 778 1770 758 1771 798 1772 799 1772 759 1771 779 1770 774 1773 756 1774 796 1775 797 1775 757 1774 775 1773 758 1776 780 1777 798 1778 799 1778 781 1777 759 1776 782 1779 760 1780 800 1781 801 1781 761 1780 783 1779 762 1782 784 1783 802 1784 803 1784 785 1783 763 1782 760 1785 770 1786 800 1787 801 1787 771 1786 761 1785 786 1788 762 1789 802 1790 803 1790 763 1789 787 1788 804 1791 788 1792 765 1793 766 1793 789 1792 805 1791 806 1794 765 1795 790 1796 791 1796 766 1795 807 1794 748 1797 808 1798 792 1799 793 1799 809 1798 749 1797 748 1800 794 1801 808 1802 809 1802 795 1801 749 1800 776 1803 782 1804 810 1805 811 1805 783 1804 777 1803 784 1806 778 1807 812 1808 813 1808 779 1807 785 1806 796 1809 776 1810 810 1811 811 1811 777 1810 797 1809 778 1812 798 1813 812 1814 813 1814 799 1813 779 1812 782 1815 800 1816 810 1817 811 1817 801 1816 783 1815 802 1818 784 1819 812 1820 813 1820 785 1819 803 1818 804 1821 765 1822 814 1823 815 1823 766 1822 805 1821 814 1824 765 1825 806 1826 807 1826 766 1825 815 1824</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID235\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID236\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID240\">-0.04908180236816406 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.07640528678894043 -0.04908180236816406 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.07640528678894043 -0.04908180236816406 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.1648990213871002 -0.1397031098604202 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.004162006080150604 0.04153963923454285 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.1648990213871002 -0.04908180236816406 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.07640528678894043 0.04153963923454285 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.2324993163347244 -0.1397031098604202 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.004162006080150604 0.1321610063314438 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.2324993163347244 -0.04908180236816406 -2.050858497619629 -0.2324993163347244 0.04153963923454285 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.07640528678894043 0.1321610063314438 -2.050858497619629 -0.07640528678894043 0.04153963923454285 -2.050858497619629 -0.2324993163347244 0.04153963923454285 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.2324993163347244</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID240\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID237\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID241\">0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID241\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID239\">\r\n\t\t\t\t\t<float_array count=\"32\" id=\"ID242\">-0.4908180236816406 -0.03274111449718475 -1.397031098604202 -0.6010549227396648 -1.397031098604202 -0.03274111449718475 -0.4908180236816406 -0.6010549227396648 -1.397031098604202 -1.297205634911855 0.4153963923454285 -0.03274111449718475 -0.4908180236816406 -1.297205634911855 0.4153963923454285 -0.6010549227396648 -1.397031098604202 -1.828994621833166 1.321610063314438 -0.03274111449718475 -0.4908180236816406 -1.828994621833166 0.4153963923454285 -1.297205634911855 1.321610063314438 -0.6010549227396648 0.4153963923454285 -1.828994621833166 1.321610063314438 -1.297205634911855 1.321610063314438 -1.828994621833166</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"16\" source=\"#ID242\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID238\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID236\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID237\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"36\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID238\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID239\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 1 0 0 5 0 4 1 7 3 6 3 8 4 1 1 4 1 9 4 7 3 10 5 6 3 0 0 5 0 7 3 11 5 12 6 8 4 6 3 7 3 9 4 13 6 14 7 6 3 10 5 11 5 7 3 15 7 12 6 16 8 8 4 9 4 17 8 13 6 14 7 12 6 6 3 7 3 13 6 15 7 18 9 14 7 10 5 11 5 15 7 19 9 20 10 16 8 12 6 13 6 17 8 21 10 22 11 12 6 14 7 15 7 13 6 23 11 24 12 14 7 18 9 19 9 15 7 25 12 22 11 20 10 12 6 13 6 21 10 23 11 24 12 22 11 14 7 15 7 23 11 25 12 26 13 20 10 22 11 23 11 21 10 27 13 28 14 22 11 24 12 25 12 23 11 29 14 28 14 26 13 22 11 23 11 27 13 29 14 30 15 26 13 28 14 29 14 27 13 31 15</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID245\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID246\">\r\n\t\t\t\t\t<float_array count=\"462\" id=\"ID249\">-0.3924421966075897 1.913545966148377 0.0538654625415802 -0.003499784041196108 1.913545966148377 0.05373930931091309 -0.003499784041196108 1.89157509803772 0.1127162873744965 -0.003499784041196108 1.89157509803772 0.1127162873744965 -0.003499784041196108 1.913545966148377 0.05373930931091309 -0.3924421966075897 1.913545966148377 0.0538654625415802 -0.3849683403968811 1.89157509803772 0.1122315526008606 -0.3849683403968811 1.89157509803772 0.1122315526008606 0.3854426443576813 1.913545966148377 0.0538654625415802 0.3854426443576813 1.913545966148377 0.0538654625415802 -0.4555876851081848 1.913545966148377 0.0538654625415802 -0.4555876851081848 1.913545966148377 0.0538654625415802 -0.3927546739578247 1.832278966903687 0.1609024703502655 -0.3927546739578247 1.832278966903687 0.1609024703502655 0.3779688477516174 1.89157509803772 0.1122315526008606 0.3779688477516174 1.89157509803772 0.1122315526008606 -0.4815247356891632 1.90060830116272 0.1218081116676331 -0.4815247356891632 1.90060830116272 0.1218081116676331 -0.4985863864421845 1.831613898277283 0.1618779003620148 -0.4985863864421845 1.831613898277283 0.1618779003620148 -0.003499784041196108 1.83673882484436 0.1572884917259216 -0.003499784041196108 1.83673882484436 0.1572884917259216 0.3857554793357849 1.832278966903687 0.1609024703502655 0.3857554793357849 1.832278966903687 0.1609024703502655 0.4525613486766815 1.913545966148377 0.05351218581199646 0.4525613486766815 1.913545966148377 0.05351218581199646 -0.4057326018810272 1.748755574226379 0.202934205532074 -0.4057326018810272 1.748755574226379 0.202934205532074 -0.1956372708082199 1.746377825737 0.2039957940578461 -0.1956372708082199 1.746377825737 0.2039957940578461 0.4956434965133667 1.831613898277283 0.1613763868808746 0.4956434965133667 1.831613898277283 0.1613763868808746 0.4785308539867401 1.90060830116272 0.1212298572063446 0.4785308539867401 1.90060830116272 0.1212298572063446 -0.5137938857078552 1.737711429595947 0.1892369687557221 -0.5137938857078552 1.737711429595947 0.1892369687557221 -0.003499784041196108 1.757756352424622 0.208108589053154 -0.003499784041196108 1.757756352424622 0.208108589053154 0.1886377781629562 1.746377825737 0.2039957940578461 0.1886377781629562 1.746377825737 0.2039957940578461 0.3987329006195068 1.748755574226379 0.202934205532074 0.3987329006195068 1.748755574226379 0.202934205532074 -0.4230424761772156 1.650818824768066 0.2358699589967728 -0.4230424761772156 1.650818824768066 0.2358699589967728 -0.5286108255386353 1.631603360176086 0.214817613363266 -0.5286108255386353 1.631603360176086 0.214817613363266 -0.2041698843240738 1.663896322250366 0.2470194548368454 -0.2041698843240738 1.663896322250366 0.2470194548368454 0.5108861327171326 1.737711429595947 0.1888849139213562 0.5108861327171326 1.737711429595947 0.1888849139213562 0.1971705108880997 1.663896322250366 0.2470194548368454 0.1971705108880997 1.663896322250366 0.2470194548368454 -0.003499784041196108 1.663896322250366 0.2506212294101715 -0.003499784041196108 1.663896322250366 0.2506212294101715 0.4160428643226624 1.650818824768066 0.2358699589967728 0.4160428643226624 1.650818824768066 0.2358699589967728 0.525602400302887 1.631603360176086 0.2142856419086456 0.525602400302887 1.631603360176086 0.2142856419086456 -0.4412959218025208 1.501774668693543 0.2760804295539856 -0.4412959218025208 1.501774668693543 0.2760804295539856 -0.2256496995687485 1.501774907112122 0.2899670302867889 -0.2256496995687485 1.501774907112122 0.2899670302867889 -0.5421937704086304 1.536199450492859 0.2387980967760086 -0.5421937704086304 1.536199450492859 0.2387980967760086 0.2186503261327744 1.501774907112122 0.2899670302867889 0.2186503261327744 1.501774907112122 0.2899670302867889 0.4342963695526123 1.501774668693543 0.2760804295539856 0.4342963695526123 1.501774668693543 0.2760804295539856 -0.003499784041196108 1.501774907112122 0.2931338846683502 -0.003499784041196108 1.501774907112122 0.2931338846683502 -0.5514172911643982 1.437644124031067 0.2581594586372376 -0.5514172911643982 1.437644124031067 0.2581594586372376 -0.4633875489234924 1.329277634620667 0.3124249279499054 -0.4633875489234924 1.329277634620667 0.3124249279499054 -0.2482648938894272 1.33567476272583 0.3311053514480591 -0.2482648938894272 1.33567476272583 0.3311053514480591 0.5393254160881043 1.536199450492859 0.2381628751754761 0.5393254160881043 1.536199450492859 0.2381628751754761 -0.5588521361351013 1.338033318519592 0.2766626179218292 -0.5588521361351013 1.338033318519592 0.2766626179218292 0.2412653863430023 1.33567476272583 0.3311053514480591 0.2412653863430023 1.33567476272583 0.3311053514480591 0.4563882350921631 1.329277634620667 0.3124249279499054 0.4563882350921631 1.329277634620667 0.3124249279499054 -0.003499784041196108 1.326353907585144 0.3321035206317902 -0.003499784041196108 1.326353907585144 0.3321035206317902 0.5483801960945129 1.437644124031067 0.2574158906936646 0.5483801960945129 1.437644124031067 0.2574158906936646 -0.4844794273376465 1.123080253601074 0.3444932699203491 -0.4844794273376465 1.123080253601074 0.3444932699203491 -0.567148745059967 1.231308460235596 0.295699417591095 -0.567148745059967 1.231308460235596 0.295699417591095 0.5556744933128357 1.338033318519592 0.276308536529541 0.5556744933128357 1.338033318519592 0.276308536529541 -0.2700301110744476 1.131339311599731 0.3596623241901398 -0.2700301110744476 1.131339311599731 0.3596623241901398 0.2630306780338287 1.131339311599731 0.3596623241901398 0.2630306780338287 1.131339311599731 0.3596623241901398 0.4774796962738037 1.123080253601074 0.3444932699203491 0.4774796962738037 1.123080253601074 0.3444932699203491 0.5641939043998718 1.231308460235596 0.2950709462165833 0.5641939043998718 1.231308460235596 0.2950709462165833 -0.003499784041196108 1.128503799438477 0.3657594621181488 -0.003499784041196108 1.128503799438477 0.3657594621181488 -0.5044852495193481 0.8832650184631348 0.3699729144573212 -0.5044852495193481 0.8832650184631348 0.3699729144573212 -0.5767728090286255 1.083053588867188 0.3177225887775421 -0.5767728090286255 1.083053588867188 0.3177225887775421 -0.299287348985672 0.8913923501968384 0.3904069364070892 -0.299287348985672 0.8913923501968384 0.3904069364070892 0.2922879457473755 0.8913923501968384 0.3904069364070892 0.2922879457473755 0.8913923501968384 0.3904069364070892 0.4974865317344666 0.8832650184631348 0.3699729144573212 0.4974865317344666 0.8832650184631348 0.3699729144573212 0.573678731918335 1.083053588867188 0.3170293569564819 0.573678731918335 1.083053588867188 0.3170293569564819 -0.003499784041196108 0.8878175616264343 0.3964553773403168 -0.003499784041196108 0.8878175616264343 0.3964553773403168 -0.5283554196357727 0.6259345412254334 0.397999107837677 -0.5283554196357727 0.6259345412254334 0.397999107837677 -0.5918655395507813 0.8816207051277161 0.3470511138439179 -0.5918655395507813 0.8816207051277161 0.3470511138439179 -0.3311246931552887 0.6259345412254334 0.4213344156742096 -0.3311246931552887 0.6259345412254334 0.4213344156742096 -0.6050222516059876 0.7718126773834229 0.3615998923778534 -0.6050222516059876 0.7718126773834229 0.3615998923778534 0.324125200510025 0.6259345412254334 0.4213344156742096 0.324125200510025 0.6259345412254334 0.4213344156742096 0.5213552117347717 0.6259345412254334 0.397999107837677 0.5213552117347717 0.6259345412254334 0.397999107837677 0.5888693928718567 0.8816207051277161 0.3465395271778107 0.5888693928718567 0.8816207051277161 0.3465395271778107 -0.003499784041196108 0.6259345412254334 0.4376304149627686 -0.003499784041196108 0.6259345412254334 0.4376304149627686 -0.5606250166893005 0.4234864413738251 0.4212178885936737 -0.5606250166893005 0.4234864413738251 0.4212178885936737 -0.629096269607544 0.6240295767784119 0.3749243021011353 -0.629096269607544 0.6240295767784119 0.3749243021011353 0.602715015411377 0.7718126773834229 0.3617312014102936 0.602715015411377 0.7718126773834229 0.3617312014102936 -0.3552756011486054 0.4234864413738251 0.4407898485660553 -0.3552756011486054 0.4234864413738251 0.4407898485660553 -0.6648309230804443 0.4212585687637329 0.3920857310295105 -0.6648309230804443 0.4212585687637329 0.3920857310295105 0.3482760787010193 0.4234864413738251 0.4407898485660553 0.3482760787010193 0.4234864413738251 0.4407898485660553 0.553625762462616 0.4234864413738251 0.4212178885936737 0.553625762462616 0.4234864413738251 0.4212178885936737 0.6264829635620117 0.6240295767784119 0.3751082420349121 0.6264829635620117 0.6240295767784119 0.3751082420349121 -0.003499784041196108 0.4255315363407135 0.4577548205852509 -0.003499784041196108 0.4255315363407135 0.4577548205852509 0.6621518731117249 0.4212585687637329 0.3921840190887451 0.6621518731117249 0.4212585687637329 0.3921840190887451</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"154\" source=\"#ID249\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID247\">\r\n\t\t\t\t\t<float_array count=\"462\" id=\"ID250\">-0.0001782469314118506 0.9359415269660365 0.3521554008225851 2.304130455219981e-012 0.937087038524494 0.349095806662574 -4.17327692578534e-011 0.8124286249016133 0.5830606567420528 4.17327692578534e-011 -0.8124286249016133 -0.5830606567420528 -2.304130455219981e-012 -0.937087038524494 -0.349095806662574 0.0001782469314118506 -0.9359415269660365 -0.3521554008225851 0.02815726933504569 0.8124234393539105 0.5823876057849761 -0.02815726933504569 -0.8124234393539105 -0.5823876057849761 0.001177355043848136 0.9358986257314065 0.3522674781883302 -0.001177355043848136 -0.9358986257314065 -0.3522674781883302 0.07111601620125621 0.9588412546148962 0.2748926348380301 -0.07111601620125621 -0.9588412546148962 -0.2748926348380301 0.002224004402349778 0.5451763948437488 0.8383184074739092 -0.002224004402349778 -0.5451763948437488 -0.8383184074739092 -0.0247490152834155 0.8123773450419 0.5826066730695548 0.0247490152834155 -0.8123773450419 -0.5826066730695548 0.1347837926354865 0.7274531243527497 0.6727891802877163 -0.1347837926354865 -0.7274531243527497 -0.6727891802877163 -0.01188990300743283 0.45042272341769 0.8927362434871036 0.01188990300743283 -0.45042272341769 -0.8927362434871036 -1.812531033613134e-009 0.5749698906834061 0.8181745686633825 1.812531033613134e-009 -0.5749698906834061 -0.8181745686633825 -0.0002663419220773194 0.5452890246601579 0.8382480591371233 0.0002663419220773194 -0.5452890246601579 -0.8382480591371233 -0.06831730452083262 0.9597751257338697 0.2723315147491064 0.06831730452083262 -0.9597751257338697 -0.2723315147491064 -0.06167175424223675 0.3636344597811704 0.9294980227995868 0.06167175424223675 -0.3636344597811704 -0.9294980227995868 -0.02751725272444099 0.4567496534542082 0.889169587239667 0.02751725272444099 -0.4567496534542082 -0.889169587239667 0.01579638502248365 0.4498412523778214 0.8929688246962347 -0.01579638502248365 -0.4498412523778214 -0.8929688246962347 -0.1256799507987488 0.7307929084495699 0.6709294112848553 0.1256799507987488 -0.7307929084495699 -0.6709294112848553 -0.1483123354811652 0.2719284164026189 0.950819850180299 0.1483123354811652 -0.2719284164026189 -0.950819850180299 -1.076934935744015e-008 0.4868752681084012 0.8734715068646328 1.076934935744015e-008 -0.4868752681084012 -0.8734715068646328 0.02751725298650883 0.456749677241571 0.8891695750124365 -0.02751725298650883 -0.456749677241571 -0.8891695750124365 0.06101109977296807 0.3642945231045185 0.9292831356161287 -0.06101109977296807 -0.3642945231045185 -0.9292831356161287 -0.145248349693507 0.3159010042398395 0.9376083790322982 0.145248349693507 -0.3159010042398395 -0.9376083790322982 -0.2222891114857754 0.2854551366133628 0.9322568937239943 0.2222891114857754 -0.2854551366133628 -0.9322568937239943 -0.0474367284323688 0.3634452253373133 0.9304070748737584 0.0474367284323688 -0.3634452253373133 -0.9304070748737584 0.1459011091775654 0.2714276469420584 0.9513358496431497 -0.1459011091775654 -0.2714276469420584 -0.9513358496431497 0.04743676327859917 0.3634452669479714 0.9304070568427392 -0.04743676327859917 -0.3634452669479714 -0.9304070568427392 -7.726431084607996e-009 0.3349265681058958 0.9422442326577578 7.726431084607996e-009 -0.3349265681058958 -0.9422442326577578 0.1431094636710336 0.3156371553435537 0.9380260484519704 -0.1431094636710336 -0.3156371553435537 -0.9380260484519704 0.2182979891680393 0.2842321390783597 0.9335727497309091 -0.2182979891680393 -0.2842321390783597 -0.9335727497309091 -0.1665751974634712 0.2398908308754316 0.9564021606269512 0.1665751974634712 -0.2398908308754316 -0.9564021606269512 -0.04219572394290461 0.2493759021386717 0.9674870440028941 0.04219572394290461 -0.2493759021386717 -0.9674870440028941 -0.2613867269618275 0.2450048606994376 0.9336217634576822 0.2613867269618275 -0.2450048606994376 -0.9336217634576822 0.04219573575736518 0.2493759010541719 0.9674870437671579 -0.04219573575736518 -0.2493759010541719 -0.9674870437671579 0.1644228359734293 0.2399124235060672 0.9567691257863102 -0.1644228359734293 -0.2399124235060672 -0.9567691257863102 -4.360533668269902e-009 0.2401766670986377 0.9707291942562508 4.360533668269902e-009 -0.2401766670986377 -0.9707291942562508 -0.2697549245147201 0.1999895753758608 0.94193229610256 0.2697549245147201 -0.1999895753758608 -0.94193229610256 -0.205165955596271 0.2026383263809331 0.9575200464459233 0.205165955596271 -0.2026383263809331 -0.9575200464459233 -0.04510107884947809 0.1949068748297897 0.9797842634124606 0.04510107884947809 -0.1949068748297897 -0.9797842634124606 0.2577041694106427 0.2436241867406072 0.9350057843154495 -0.2577041694106427 -0.2436241867406072 -0.9350057843154495 -0.3155416212866312 0.206553169256247 0.926158341487029 0.3155416212866312 -0.206553169256247 -0.926158341487029 0.04510104543534891 0.1949068346227504 0.9797842729488866 -0.04510104543534891 -0.1949068346227504 -0.9797842729488866 0.2011697807349986 0.2021535428046418 0.9584699601190244 -0.2011697807349986 -0.2021535428046418 -0.9584699601190244 -4.296743762838351e-010 0.1854674230964988 0.9826504134075068 4.296743762838351e-010 -0.1854674230964988 -0.9826504134075068 0.2675210635041206 0.2016813846098287 0.9422086285337693 -0.2675210635041206 -0.2016813846098287 -0.9422086285337693 -0.2058173284334745 0.1429031004056697 0.9681001658975966 0.2058173284334745 -0.1429031004056697 -0.9681001658975966 -0.3252481571229391 0.1766447668061257 0.9289834566062741 0.3252481571229391 -0.1766447668061257 -0.9289834566062741 0.3084472488844051 0.2058706115497009 0.9286967136561829 -0.3084472488844051 -0.2058706115497009 -0.9286967136561829 -0.04796545790210148 0.137895058325429 0.9892847253130254 0.04796545790210148 -0.137895058325429 -0.9892847253130254 0.04796547033123873 0.1378951115528392 0.9892847172911007 -0.04796547033123873 -0.1378951115528392 -0.9892847172911007 0.2024207883500881 0.1425877581726434 0.9688625060673101 -0.2024207883500881 -0.1425877581726434 -0.9688625060673101 0.318558960484321 0.1757972678665487 0.9314588070901503 -0.318558960484321 -0.1757972678665487 -0.9314588070901503 -5.391486020732135e-009 0.1476432149403069 0.9890406872733246 5.391486020732135e-009 -0.1476432149403069 -0.9890406872733246 -0.1773289548747459 0.1343572735873728 0.9749372106947186 0.1773289548747459 -0.1343572735873728 -0.9749372106947186 -0.3212173299977274 0.1431746513568026 0.9361198887524979 0.3212173299977274 -0.1431746513568026 -0.9361198887524979 -0.06274409473882742 0.1270693842706143 0.9899073442279798 0.06274409473882742 -0.1270693842706143 -0.9899073442279798 0.06274399125447423 0.1270692920287318 0.9899073626278246 -0.06274399125447423 -0.1270692920287318 -0.9899073626278246 0.1739226856060093 0.1350214639577931 0.9754589195359729 -0.1739226856060093 -0.1350214639577931 -0.9754589195359729 0.3147030443890779 0.1431671105088732 0.9383310568881254 -0.3147030443890779 -0.1431671105088732 -0.9383310568881254 -4.80197978026056e-009 0.1328495772137584 0.9911362115441681 4.80197978026056e-009 -0.1328495772137584 -0.9911362115441681 -0.1709425518226716 0.1279235197490857 0.9769412556911282 0.1709425518226716 -0.1279235197490857 -0.9769412556911282 -0.2533455977826842 0.1573595136377819 0.9544914832264431 0.2533455977826842 -0.1573595136377819 -0.9544914832264431 -0.0766108992186908 0.1207361439996178 0.9897239785177517 0.0766108992186908 -0.1207361439996178 -0.9897239785177517 -0.22749638196544 0.1315879079765795 0.9648471478254894 0.22749638196544 -0.1315879079765795 -0.9648471478254894 0.07661103214427249 0.1207362064017146 0.9897239606160457 -0.07661103214427249 -0.1207362064017146 -0.9897239606160457 0.1656929408753884 0.1271979898621564 0.9779399371735934 -0.1656929408753884 -0.1271979898621564 -0.9779399371735934 0.2478673874826266 0.1611480776092019 0.9552973648583963 -0.2478673874826266 -0.1611480776092019 -0.9552973648583963 -4.814492874022326e-009 0.1278209019418282 0.9917972660916029 4.814492874022326e-009 -0.1278209019418282 -0.9917972660916029 -0.1953528286554639 0.1373444081517152 0.9710683734350346 0.1953528286554639 -0.1373444081517152 -0.9710683734350346 -0.2237895774661974 0.1223335681965512 0.966929533683712 0.2237895774661974 -0.1223335681965512 -0.966929533683712 0.217589038094111 0.132316565109581 0.9670301634896823 -0.217589038094111 -0.132316565109581 -0.9670301634896823 -0.07338413420345472 0.1038272878729786 0.9918844000891187 0.07338413420345472 -0.1038272878729786 -0.9918844000891187 -0.255451770674433 0.1427053145778973 0.9562319729283896 0.255451770674433 -0.1427053145778973 -0.9562319729283896 0.07338406236200086 0.1038272705222477 0.9918844072204937 -0.07338406236200086 -0.1038272705222477 -0.9918844072204937 0.189399515785567 0.1365482538004697 0.9723591917620952 -0.189399515785567 -0.1365482538004697 -0.9723591917620952 0.2132922457168499 0.1204664420331665 0.9695330083400631 -0.2132922457168499 -0.1204664420331665 -0.9695330083400631 -3.144688608621132e-009 0.09991715580283653 0.9949957597780363 3.144688608621132e-009 -0.09991715580283653 -0.9949957597780363 0.2443217657506773 0.1408108584240575 0.9594160603879589 -0.2443217657506773 -0.1408108584240575 -0.9594160603879589</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"154\" source=\"#ID250\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID248\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID246\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID247\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"232\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID248\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 0 6 7 5 11 12 6 2 3 7 13 8 14 2 3 15 9 10 6 16 17 7 11 12 18 6 7 19 13 20 12 2 3 13 21 2 14 22 23 15 3 8 24 14 15 25 9 18 16 6 7 17 19 26 18 12 13 19 27 28 12 20 21 13 29 20 2 22 23 3 21 22 14 30 31 15 23 14 24 32 33 25 15 26 12 28 29 13 27 34 18 26 27 19 35 36 28 20 21 29 37 38 20 22 23 21 39 14 32 30 31 33 15 40 22 30 31 23 41 42 26 28 29 27 43 44 34 26 27 35 45 36 20 38 39 21 37 46 28 36 37 29 47 38 22 40 41 23 39 40 30 48 49 31 41 42 44 26 27 45 43 46 42 28 29 43 47 36 38 50 51 39 37 52 46 36 37 47 53 38 40 54 55 41 39 40 48 56 57 49 41 58 44 42 43 45 59 58 42 46 47 43 59 52 36 50 51 37 53 50 38 54 55 39 51 60 46 52 53 47 61 54 40 56 57 41 55 62 44 58 59 45 63 60 58 46 47 59 61 52 50 64 65 51 53 50 54 66 67 55 51 68 60 52 53 61 69 66 54 56 57 55 67 70 62 58 59 63 71 72 58 60 61 59 73 68 52 64 65 53 69 64 50 66 67 51 65 74 60 68 69 61 75 66 56 76 77 57 67 78 70 58 59 71 79 74 72 60 61 73 75 72 78 58 59 79 73 68 64 80 81 65 69 64 66 82 83 67 65 84 74 68 69 75 85 66 76 86 87 77 67 88 72 74 75 73 89 90 78 72 73 79 91 84 68 80 81 69 85 80 64 82 83 65 81 82 66 92 93 67 83 94 74 84 85 75 95 66 86 92 93 87 67 94 88 74 75 89 95 88 90 72 73 91 89 84 80 96 97 81 85 80 82 98 99 83 81 82 92 100 101 93 83 102 94 84 85 95 103 104 88 94 95 89 105 106 90 88 89 91 107 102 84 96 97 85 103 96 80 98 99 81 97 98 82 100 101 83 99 108 94 102 103 95 109 108 104 94 95 105 109 104 106 88 89 107 105 102 96 110 111 97 103 96 98 112 113 99 97 98 100 114 115 101 99 116 108 102 103 109 117 118 104 108 109 105 119 120 106 104 105 107 121 116 102 110 111 103 117 110 96 112 113 97 111 112 98 114 115 99 113 122 108 116 117 109 123 122 118 108 109 119 123 118 124 104 105 125 119 124 120 104 105 121 125 116 110 126 127 111 117 110 112 128 129 113 111 112 114 130 131 115 113 132 122 116 117 123 133 134 118 122 123 119 135 136 124 118 119 125 137 132 116 126 127 117 133 126 110 128 129 111 127 128 112 138 139 113 129 112 130 138 139 131 113 140 122 132 133 123 141 140 134 122 123 135 141 134 142 118 119 143 135 142 136 118 119 137 143 132 126 144 145 127 133 126 128 146 147 129 127 128 138 148 149 139 129 150 140 132 133 141 151 150 132 144 145 133 151 144 126 146 147 127 145 146 128 152 153 129 147 128 148 152 153 149 129</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID253\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID254\">\r\n\t\t\t\t\t<float_array count=\"2964\" id=\"ID258\">-0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.94102954864502 -0.2903494238853455 0.4591898620128632 1.94102954864502 -0.2903494238853455 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.4666804373264313 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.4666804373264313 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.94102954864502 -0.2903494238853455 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.4591898620128632 1.94102954864502 -0.2903494238853455 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.4666804373264313 1.927737951278687 -0.2694617509841919 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.4666804373264313 1.927737951278687 -0.2694617509841919 0.4591898620128632 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 0.4591898620128632 1.933063864707947 -0.2819830179214478 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.974754452705383 -0.2916486263275147 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4686544239521027 1.937264442443848 -0.303368866443634 0.4686544239521027 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.4666804373264313 1.925872087478638 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.4666804373264313 1.925872087478638 -0.2546918988227844 0.4591898620128632 1.927737951278687 -0.2694617509841919 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 0.4591898620128632 1.927737951278687 -0.2694617509841919 -0.4761454164981842 1.930520176887512 -0.2916485071182251 -0.4761454164981842 1.930520176887512 -0.2916485071182251 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.963594079017639 -0.303368866443634 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.5049393773078919 1.963594079017639 -0.303368866443634 0.5049393773078919 1.963594079017639 -0.303368866443634 0.4686544239521027 1.950429439544678 -0.3074844181537628 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 0.4686544239521027 1.937264442443848 -0.303368866443634 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.4686544239521027 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.4666804373264313 1.927737951278687 -0.2399222552776337 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.4666804373264313 1.927737951278687 -0.2399222552776337 0.4591898620128632 1.925872087478638 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 0.4591898620128632 1.925872087478638 -0.2546918988227844 -0.4761454164981842 1.92527174949646 -0.2741076946258545 -0.4761454164981842 1.92527174949646 -0.2741076946258545 0.4686544239521027 1.930520176887512 -0.2916485071182251 0.4686544239521027 1.930520176887512 -0.2916485071182251 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.4591898620128632 1.973116874694824 -0.2694617509841919 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.4666804373264313 1.933063864707947 -0.2274011671543121 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.4666804373264313 1.933063864707947 -0.2274011671543121 0.4591898620128632 1.927737951278687 -0.2399222552776337 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 0.4591898620128632 1.927737951278687 -0.2399222552776337 -0.4761454164981842 1.922653794288635 -0.2534168660640717 -0.4761454164981842 1.922653794288635 -0.2534168660640717 0.4686544239521027 1.92527174949646 -0.2741076946258545 0.4686544239521027 1.92527174949646 -0.2741076946258545 -0.5124302506446838 1.930520176887512 -0.2916485071182251 -0.5124302506446838 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.514404296875 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.514404296875 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.963594079017639 -0.303368866443634 0.514404296875 1.967794060707092 -0.2819830179214478 0.514404296875 1.967794060707092 -0.2819830179214478 0.5049393773078919 1.963594079017639 -0.303368866443634 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.514404296875 1.959829092025757 -0.2903494238853455 0.514404296875 1.959829092025757 -0.2903494238853455 0.5049393773078919 1.950429439544678 -0.3074844181537628 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.5049393773078919 1.937264442443848 -0.303368866443634 0.514404296875 1.950429439544678 -0.2932872772216797 0.514404296875 1.950429439544678 -0.2932872772216797 0.5049393773078919 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4666804373264313 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.933063864707947 -0.2274011671543121 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 0.4591898620128632 1.933063864707947 -0.2274011671543121 -0.4761454164981842 1.92527174949646 -0.2327264100313187 -0.4761454164981842 1.92527174949646 -0.2327264100313187 0.4686544239521027 1.922653794288635 -0.2534168660640717 0.4686544239521027 1.922653794288635 -0.2534168660640717 -0.5124302506446838 1.92527174949646 -0.2741076946258545 -0.5124302506446838 1.92527174949646 -0.2741076946258545 0.5049393773078919 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 0.514404296875 1.974986433982849 -0.2546918988227844 0.514404296875 1.974986433982849 -0.2546918988227844 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.974531054496765 -0.2399222552776337 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.4591898620128632 1.973116874694824 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.514404296875 1.94102954864502 -0.2903494238853455 0.514404296875 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.6682524085044861 1.94563889503479 -0.2932872772216797 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.6682524085044861 1.94563889503479 -0.2932872772216797 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.6697498559951782 1.954917311668396 -0.2903493940830231 -0.6697498559951782 1.954917311668396 -0.2903493940830231 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.6710188984870911 1.9627845287323 -0.2819830179214478 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.6710188984870911 1.9627845287323 -0.2819830179214478 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.6718668341636658 1.968037009239197 -0.2694616913795471 -0.6718668341636658 1.968037009239197 -0.2694616913795471 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.6721646189689636 1.969884276390076 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.6721646189689636 1.969884276390076 -0.2546918988227844 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.94102954864502 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4761454164981842 1.928295969963074 -0.1971973478794098 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.4761454164981842 1.928295969963074 -0.1971973478794098 0.4686544239521027 1.92527174949646 -0.2327264100313187 0.4686544239521027 1.92527174949646 -0.2327264100313187 -0.5124302506446838 1.922653794288635 -0.2534168660640717 -0.5124302506446838 1.922653794288635 -0.2534168660640717 0.5049393773078919 1.92527174949646 -0.2741076946258545 0.5049393773078919 1.92527174949646 -0.2741076946258545 -0.5218953490257263 1.933063864707947 -0.2819830179214478 -0.5218953490257263 1.933063864707947 -0.2819830179214478 0.514404296875 1.974986433982849 -0.2546918988227844 0.514404296875 1.973116874694824 -0.2694617509841919 0.6646738648414612 1.969884276390076 -0.2546918988227844 0.6646738648414612 1.969884276390076 -0.2546918988227844 0.514404296875 1.973116874694824 -0.2694617509841919 0.514404296875 1.974986433982849 -0.2546918988227844 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.514404296875 1.967794060707092 -0.2819830179214478 0.6643763184547424 1.968037009239197 -0.2694616913795471 0.6643763184547424 1.968037009239197 -0.2694616913795471 0.514404296875 1.967794060707092 -0.2819830179214478 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.514404296875 1.959829092025757 -0.2903494238853455 0.6635281443595886 1.9627845287323 -0.2819830179214478 0.6635281443595886 1.9627845287323 -0.2819830179214478 0.514404296875 1.959829092025757 -0.2903494238853455 0.514404296875 1.950429439544678 -0.2932872772216797 0.6622587442398071 1.954917311668396 -0.2903493940830231 0.6622587442398071 1.954917311668396 -0.2903493940830231 0.514404296875 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.967794060707092 -0.2274012565612793 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.514404296875 1.94102954864502 -0.2903494238853455 0.6607614159584045 1.94563889503479 -0.2932872772216797 0.6607614159584045 1.94563889503479 -0.2932872772216797 0.514404296875 1.94102954864502 -0.2903494238853455 -0.6667550802230835 1.936360359191895 -0.2903493940830231 -0.6667550802230835 1.936360359191895 -0.2903493940830231 -0.6718668341636658 1.968037009239197 -0.2399222552776337 -0.6718668341636658 1.968037009239197 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4591898620128632 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.4761454164981842 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.928295969963074 -0.1971973478794098 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4686544239521027 1.928295969963074 -0.1971973478794098 -0.5124302506446838 1.92527174949646 -0.2327264100313187 -0.5124302506446838 1.92527174949646 -0.2327264100313187 0.5049393773078919 1.922653794288635 -0.2534168660640717 0.5049393773078919 1.922653794288635 -0.2534168660640717 -0.5218953490257263 1.927737951278687 -0.2694617509841919 -0.5218953490257263 1.927737951278687 -0.2694617509841919 0.514404296875 1.933063864707947 -0.2819830179214478 0.514404296875 1.933063864707947 -0.2819830179214478 0.6643763184547424 1.968037009239197 -0.2399222552776337 0.6643763184547424 1.968037009239197 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.5049393773078919 1.983609795570374 -0.229463130235672 0.5049393773078919 1.983609795570374 -0.229463130235672 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4686544239521027 1.983609795570374 -0.229463130235672 0.659264087677002 1.936360359191895 -0.2903493940830231 0.659264087677002 1.936360359191895 -0.2903493940830231 -0.7710930705070496 1.897564053535461 -0.2932872772216797 -0.7710930705070496 1.897564053535461 -0.2932872772216797 -0.7768009901046753 1.905940294265747 -0.2903493940830231 -0.7768009901046753 1.905940294265747 -0.2903493940830231 -0.7816405296325684 1.913044810295105 -0.2819830179214478 -0.7816405296325684 1.913044810295105 -0.2819830179214478 -0.7848740220069885 1.917791366577148 -0.2694616913795471 -0.7848740220069885 1.917791366577148 -0.2694616913795471 -0.7860094308853149 1.919457793235779 -0.2546918988227844 -0.7860094308853149 1.919457793235779 -0.2546918988227844 -0.7848740220069885 1.917791366577148 -0.2399222552776337 -0.7848740220069885 1.917791366577148 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4686544239521027 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 0.5049393773078919 1.92527174949646 -0.2327264100313187 0.5049393773078919 1.92527174949646 -0.2327264100313187 -0.5218953490257263 1.925872087478638 -0.2546918988227844 -0.5218953490257263 1.925872087478638 -0.2546918988227844 0.514404296875 1.927737951278687 -0.2694617509841919 0.514404296875 1.927737951278687 -0.2694617509841919 -0.6654856204986572 1.928493976593018 -0.281982958316803 -0.6654856204986572 1.928493976593018 -0.281982958316803 0.7773829102516174 1.917791366577148 -0.2399222552776337 0.7773829102516174 1.917791366577148 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.7785183787345886 1.919457793235779 -0.2546918988227844 0.7785183787345886 1.919457793235779 -0.2546918988227844 0.5049393773078919 1.983609795570374 -0.229463130235672 0.5049393773078919 1.983609795570374 -0.229463130235672 0.7773829102516174 1.917791366577148 -0.2694616913795471 0.7773829102516174 1.917791366577148 -0.2694616913795471 0.7741499543190002 1.913044810295105 -0.2819830179214478 0.7741499543190002 1.913044810295105 -0.2819830179214478 0.7693102359771729 1.905940294265747 -0.2903493940830231 0.7693102359771729 1.905940294265747 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.7636018991470337 1.897564053535461 -0.2932872772216797 0.7636018991470337 1.897564053535461 -0.2932872772216797 -0.7653849124908447 1.889186143875122 -0.2903493940830231 -0.7653849124908447 1.889186143875122 -0.2903493940830231 -0.7816405296325684 1.913044810295105 -0.2274011671543121 -0.7816405296325684 1.913044810295105 -0.2274011671543121 -0.6710188984870911 1.9627845287323 -0.2274011671543121 -0.6710188984870911 1.9627845287323 -0.2274011671543121 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 0.514404296875 1.925872087478638 -0.2546918988227844 0.514404296875 1.925872087478638 -0.2546918988227844 -0.6646373271942139 1.923238515853882 -0.2694616913795471 -0.6646373271942139 1.923238515853882 -0.2694616913795471 0.6579948663711548 1.928493976593018 -0.281982958316803 0.6579948663711548 1.928493976593018 -0.281982958316803 0.7741499543190002 1.913044810295105 -0.2274011671543121 0.7741499543190002 1.913044810295105 -0.2274011671543121 0.6635281443595886 1.9627845287323 -0.2274011671543121 0.6635281443595886 1.9627845287323 -0.2274011671543121 0.514404296875 1.967794060707092 -0.2274012565612793 0.514404296875 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.7578940391540527 1.889186143875122 -0.2903493940830231 0.7578940391540527 1.889186143875122 -0.2903493940830231 -0.7926220297813416 1.87386691570282 -0.2936926782131195 -0.7926220297813416 1.87386691570282 -0.2936926782131195 -0.8007404804229736 1.876919627189636 -0.2907206118106842 -0.8007404804229736 1.876919627189636 -0.2907206118106842 -0.8081105947494507 1.879507780075073 -0.2822587192058563 -0.8081105947494507 1.879507780075073 -0.2822587192058563 -0.8095204830169678 1.881236433982849 -0.2695942223072052 -0.8095204830169678 1.881236433982849 -0.2695942223072052 -0.8112494945526123 1.881843686103821 -0.2546553909778595 -0.8112494945526123 1.881843686103821 -0.2546553909778595 -0.8095204830169678 1.881236433982849 -0.239716961979866 -0.8095204830169678 1.881236433982849 -0.239716961979866 -0.8081105947494507 1.879507780075073 -0.2270529717206955 -0.8081105947494507 1.879507780075073 -0.2270529717206955 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5124302506446838 1.928295969963074 -0.1971973478794098 0.514404296875 1.927737951278687 -0.2399222552776337 0.514404296875 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.6643399000167847 1.921393752098084 -0.2546918988227844 -0.6643399000167847 1.921393752098084 -0.2546918988227844 0.6571467518806458 1.923238515853882 -0.2694616913795471 0.6571467518806458 1.923238515853882 -0.2694616913795471 -0.7605457901954651 1.882081866264343 -0.281982958316803 -0.7605457901954651 1.882081866264343 -0.281982958316803 0.80061936378479 1.879507780075073 -0.2270529717206955 0.80061936378479 1.879507780075073 -0.2270529717206955 0.8020292520523071 1.881236433982849 -0.239716961979866 0.8020292520523071 1.881236433982849 -0.239716961979866 0.514404296875 1.967794060707092 -0.2274012565612793 0.514404296875 1.967794060707092 -0.2274012565612793 0.8037582039833069 1.881843686103821 -0.2546553909778595 0.8037582039833069 1.881843686103821 -0.2546553909778595 0.8020292520523071 1.881236433982849 -0.2695942223072052 0.8020292520523071 1.881236433982849 -0.2695942223072052 0.80061936378479 1.879507780075073 -0.2822587192058563 0.80061936378479 1.879507780075073 -0.2822587192058563 0.7932494282722473 1.876919627189636 -0.2907206118106842 0.7932494282722473 1.876919627189636 -0.2907206118106842 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.514404296875 1.959829092025757 -0.2190346866846085 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.514404296875 1.959829092025757 -0.2190346866846085 0.785130500793457 1.87386691570282 -0.2936926782131195 0.785130500793457 1.87386691570282 -0.2936926782131195 -0.7839280962944031 1.870815515518189 -0.2907206118106842 -0.7839280962944031 1.870815515518189 -0.2907206118106842 -0.8007404804229736 1.876919627189636 -0.2185902446508408 -0.8007404804229736 1.876919627189636 -0.2185902446508408 -0.7768009901046753 1.905940294265747 -0.2190346866846085 -0.7768009901046753 1.905940294265747 -0.2190346866846085 -0.6697498559951782 1.954917311668396 -0.2190346866846085 -0.6697498559951782 1.954917311668396 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.5218953490257263 1.94102954864502 -0.2190346866846085 0.514404296875 1.933063864707947 -0.2274011671543121 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.514404296875 1.933063864707947 -0.2274011671543121 0.514404296875 1.927737951278687 -0.2399222552776337 0.514404296875 1.927737951278687 -0.2399222552776337 -0.6646373271942139 1.923238515853882 -0.2399222552776337 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.6646373271942139 1.923238515853882 -0.2399222552776337 0.6568490266799927 1.921393752098084 -0.2546918988227844 0.6568490266799927 1.921393752098084 -0.2546918988227844 -0.757311999797821 1.877334475517273 -0.2694616913795471 -0.757311999797821 1.877334475517273 -0.2694616913795471 0.7530544996261597 1.882081866264343 -0.281982958316803 0.7530544996261597 1.882081866264343 -0.281982958316803 0.7932494282722473 1.876919627189636 -0.2185902446508408 0.7932494282722473 1.876919627189636 -0.2185902446508408 0.7693102359771729 1.905940294265747 -0.2190346866846085 0.7693102359771729 1.905940294265747 -0.2190346866846085 0.6622587442398071 1.954917311668396 -0.2190346866846085 0.6622587442398071 1.954917311668396 -0.2190346866846085 0.514404296875 1.950429439544678 -0.216096967458725 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.514404296875 1.950429439544678 -0.216096967458725 0.514404296875 1.959829092025757 -0.2190346866846085 0.514404296875 1.959829092025757 -0.2190346866846085 0.776436984539032 1.870815515518189 -0.2907206118106842 0.776436984539032 1.870815515518189 -0.2907206118106842 -0.802080512046814 1.844061851501465 -0.2936926782131195 -0.802080512046814 1.844061851501465 -0.2936926782131195 -0.8102076053619385 1.848336219787598 -0.2907206118106842 -0.8102076053619385 1.848336219787598 -0.2907206118106842 -0.8164049386978149 1.851444840431213 -0.2822587192058563 -0.8164049386978149 1.851444840431213 -0.2822587192058563 -0.8189199566841126 1.853061437606812 -0.2695942223072052 -0.8189199566841126 1.853061437606812 -0.2695942223072052 -0.8205373883247376 1.853911638259888 -0.2546553909778595 -0.8205373883247376 1.853911638259888 -0.2546553909778595 -0.8189199566841126 1.853061437606812 -0.239716961979866 -0.8189199566841126 1.853061437606812 -0.239716961979866 -0.8164049386978149 1.851444840431213 -0.2270529717206955 -0.8164049386978149 1.851444840431213 -0.2270529717206955 -0.8102076053619385 1.848336219787598 -0.2185902446508408 -0.8102076053619385 1.848336219787598 -0.2185902446508408 -0.6682524085044861 1.94563889503479 -0.216096967458725 -0.6682524085044861 1.94563889503479 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 0.514404296875 1.94102954864502 -0.2190346866846085 0.514404296875 1.94102954864502 -0.2190346866846085 -0.6654856204986572 1.928493976593018 -0.2274011671543121 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.6654856204986572 1.928493976593018 -0.2274011671543121 0.6571467518806458 1.923238515853882 -0.2399222552776337 0.514404296875 1.933063864707947 -0.2274011671543121 0.514404296875 1.933063864707947 -0.2274011671543121 0.6571467518806458 1.923238515853882 -0.2399222552776337 -0.7566525936126709 1.876231789588928 -0.2546918988227844 -0.7566525936126709 1.876231789588928 -0.2546918988227844 0.7498206496238709 1.877334475517273 -0.2694616913795471 0.7498206496238709 1.877334475517273 -0.2694616913795471 -0.7765578627586365 1.868226766586304 -0.2822587192058563 -0.7765578627586365 1.868226766586304 -0.2822587192058563 0.802716851234436 1.848336219787598 -0.2185902446508408 0.802716851234436 1.848336219787598 -0.2185902446508408 0.8089143037796021 1.851444840431213 -0.2270529717206955 0.8089143037796021 1.851444840431213 -0.2270529717206955 0.8114292621612549 1.853061437606812 -0.239716961979866 0.8114292621612549 1.853061437606812 -0.239716961979866 0.8130461573600769 1.853911638259888 -0.2546553909778595 0.8130461573600769 1.853911638259888 -0.2546553909778595 0.8114292621612549 1.853061437606812 -0.2695942223072052 0.8114292621612549 1.853061437606812 -0.2695942223072052 0.8089143037796021 1.851444840431213 -0.2822587192058563 0.8089143037796021 1.851444840431213 -0.2822587192058563 0.802716851234436 1.848336219787598 -0.2907206118106842 0.802716851234436 1.848336219787598 -0.2907206118106842 0.514404296875 1.950429439544678 -0.216096967458725 0.6607614159584045 1.94563889503479 -0.216096967458725 0.6607614159584045 1.94563889503479 -0.216096967458725 0.514404296875 1.950429439544678 -0.216096967458725 0.7945891618728638 1.844061851501465 -0.2936926782131195 0.7945891618728638 1.844061851501465 -0.2936926782131195 -0.792536735534668 1.838940620422363 -0.2907206118106842 -0.792536735534668 1.838940620422363 -0.2907206118106842 -0.802080512046814 1.844061851501465 -0.2156186848878861 -0.802080512046814 1.844061851501465 -0.2156186848878861 -0.7926220297813416 1.87386691570282 -0.2156186848878861 -0.7926220297813416 1.87386691570282 -0.2156186848878861 -0.7710930705070496 1.897564053535461 -0.216096967458725 -0.7710930705070496 1.897564053535461 -0.216096967458725 -0.6667550802230835 1.936360359191895 -0.2190346866846085 -0.6667550802230835 1.936360359191895 -0.2190346866846085 0.6579948663711548 1.928493976593018 -0.2274011671543121 0.514404296875 1.94102954864502 -0.2190346866846085 0.514404296875 1.94102954864502 -0.2190346866846085 0.6579948663711548 1.928493976593018 -0.2274011671543121 -0.757311999797821 1.877334475517273 -0.2399222552776337 -0.757311999797821 1.877334475517273 -0.2399222552776337 0.7491613626480103 1.876231789588928 -0.2546918988227844 0.7491613626480103 1.876231789588928 -0.2546918988227844 -0.7716328501701355 1.866497397422791 -0.2695942223072052 -0.7716328501701355 1.866497397422791 -0.2695942223072052 0.7690663933753967 1.868226766586304 -0.2822587192058563 0.7690663933753967 1.868226766586304 -0.2822587192058563 0.7945891618728638 1.844061851501465 -0.2156186848878861 0.7945891618728638 1.844061851501465 -0.2156186848878861 0.785130500793457 1.87386691570282 -0.2156186848878861 0.785130500793457 1.87386691570282 -0.2156186848878861 0.7636018991470337 1.897564053535461 -0.216096967458725 0.7636018991470337 1.897564053535461 -0.216096967458725 0.659264087677002 1.936360359191895 -0.2190346866846085 0.659264087677002 1.936360359191895 -0.2190346866846085 0.7850460410118103 1.838940620422363 -0.2907206118106842 0.7850460410118103 1.838940620422363 -0.2907206118106842 -0.8062112331390381 1.823601245880127 -0.2790639102458954 -0.8062112331390381 1.823601245880127 -0.2790639102458954 -0.8124768733978272 1.826184034347534 -0.2772038877010346 -0.8124768733978272 1.826184034347534 -0.2772038877010346 -0.8177905082702637 1.828371405601502 -0.2719063758850098 -0.8177905082702637 1.828371405601502 -0.2719063758850098 -0.8213410377502441 1.829832553863525 -0.2639782726764679 -0.8213410377502441 1.829832553863525 -0.2639782726764679 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8177905082702637 1.828371405601502 -0.2373465597629547 -0.8177905082702637 1.828371405601502 -0.2373465597629547 -0.8124768733978272 1.826184034347534 -0.2320491224527359 -0.8124768733978272 1.826184034347534 -0.2320491224527359 -0.8062112331390381 1.823601245880127 -0.2301888763904572 -0.8062112331390381 1.823601245880127 -0.2301888763904572 -0.7653849124908447 1.889186143875122 -0.2190346866846085 -0.7653849124908447 1.889186143875122 -0.2190346866846085 -0.7605457901954651 1.882081866264343 -0.2274011671543121 -0.7605457901954651 1.882081866264343 -0.2274011671543121 0.7498206496238709 1.877334475517273 -0.2399222552776337 0.7498206496238709 1.877334475517273 -0.2399222552776337 -0.769903838634491 1.865890741348267 -0.2546553909778595 -0.769903838634491 1.865890741348267 -0.2546553909778595 0.7641419172286987 1.866497397422791 -0.2695942223072052 0.7641419172286987 1.866497397422791 -0.2695942223072052 -0.7873572707176209 1.836227893829346 -0.2822587192058563 -0.7873572707176209 1.836227893829346 -0.2822587192058563 0.7987200021743774 1.823601245880127 -0.2301888763904572 0.7987200021743774 1.823601245880127 -0.2301888763904572 0.8049858808517456 1.826184034347534 -0.2320491224527359 0.8049858808517456 1.826184034347534 -0.2320491224527359 0.8102995157241821 1.828371405601502 -0.2373465597629547 0.8102995157241821 1.828371405601502 -0.2373465597629547 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8138501644134522 1.829832553863525 -0.2639782726764679 0.8138501644134522 1.829832553863525 -0.2639782726764679 0.8102995157241821 1.828371405601502 -0.2719063758850098 0.8102995157241821 1.828371405601502 -0.2719063758850098 0.8049858808517456 1.826184034347534 -0.2772038877010346 0.8049858808517456 1.826184034347534 -0.2772038877010346 0.7578940391540527 1.889186143875122 -0.2190346866846085 0.7578940391540527 1.889186143875122 -0.2190346866846085 0.7987200021743774 1.823601245880127 -0.2790639102458954 0.7987200021743774 1.823601245880127 -0.2790639102458954 -0.7999439239501953 1.821020245552063 -0.2772038877010346 -0.7999439239501953 1.821020245552063 -0.2772038877010346 -0.7999439239501953 1.821020245552063 -0.2320491224527359 -0.7999439239501953 1.821020245552063 -0.2320491224527359 -0.792536735534668 1.838940620422363 -0.2185902446508408 -0.792536735534668 1.838940620422363 -0.2185902446508408 -0.7839280962944031 1.870815515518189 -0.2185902446508408 -0.7839280962944031 1.870815515518189 -0.2185902446508408 0.7530544996261597 1.882081866264343 -0.2274011671543121 0.7530544996261597 1.882081866264343 -0.2274011671543121 -0.7716328501701355 1.866497397422791 -0.239716961979866 -0.7716328501701355 1.866497397422791 -0.239716961979866 0.762412965297699 1.865890741348267 -0.2546553909778595 0.762412965297699 1.865890741348267 -0.2546553909778595 -0.7827526926994324 1.833805084228516 -0.2695942223072052 -0.7827526926994324 1.833805084228516 -0.2695942223072052 0.7798661589622498 1.836227893829346 -0.2822587192058563 0.7798661589622498 1.836227893829346 -0.2822587192058563 0.7924529314041138 1.821020245552063 -0.2320491224527359 0.7924529314041138 1.821020245552063 -0.2320491224527359 0.7850460410118103 1.838940620422363 -0.2185902446508408 0.7850460410118103 1.838940620422363 -0.2185902446508408 0.776436984539032 1.870815515518189 -0.2185902446508408 0.776436984539032 1.870815515518189 -0.2185902446508408 0.7924529314041138 1.821020245552063 -0.2772038877010346 0.7924529314041138 1.821020245552063 -0.2772038877010346 -0.8096880912780762 1.815246343612671 -0.2558586299419403 -0.8096880912780762 1.815246343612671 -0.2558586299419403 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.7765578627586365 1.868226766586304 -0.2270528525114059 -0.7765578627586365 1.868226766586304 -0.2270528525114059 0.7641419172286987 1.866497397422791 -0.239716961979866 0.7641419172286987 1.866497397422791 -0.239716961979866 -0.7811350226402283 1.832955837249756 -0.2546553909778595 -0.7811350226402283 1.832955837249756 -0.2546553909778595 0.7752613425254822 1.833805084228516 -0.2695942223072052 0.7752613425254822 1.833805084228516 -0.2695942223072052 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2719063758850098 0.8021973371505737 1.815246343612671 -0.2558586299419403 0.8021973371505737 1.815246343612671 -0.2558586299419403 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.7690663933753967 1.868226766586304 -0.2270528525114059 0.7690663933753967 1.868226766586304 -0.2270528525114059 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7873572707176209 1.836227893829346 -0.2270528525114059 -0.7873572707176209 1.836227893829346 -0.2270528525114059 -0.7827526926994324 1.833805084228516 -0.239716961979866 -0.7827526926994324 1.833805084228516 -0.239716961979866 0.7736440300941467 1.832955837249756 -0.2546553909778595 0.7736440300941467 1.832955837249756 -0.2546553909778595 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2639782726764679 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7798661589622498 1.836227893829346 -0.2270528525114059 0.7798661589622498 1.836227893829346 -0.2270528525114059 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2719063758850098 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2452745586633682 -0.7910812497138977 1.81736946105957 -0.2452745586633682 0.7752613425254822 1.833805084228516 -0.239716961979866 0.7752613425254822 1.833805084228516 -0.239716961979866 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7898352742195129 1.816856741905212 -0.2546263933181763 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2639782726764679 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7910812497138977 1.81736946105957 -0.2452745586633682 -0.7910812497138977 1.81736946105957 -0.2452745586633682 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2452745586633682</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"988\" source=\"#ID258\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID255\">\r\n\t\t\t\t\t<float_array count=\"2964\" id=\"ID259\">0.01811380957266693 0.866976891652594 -0.4980190350209233 0.01811380957266693 0.866976891652594 -0.4980190350209233 0.01811380957266693 0.866976891652594 -0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0.01811379250568842 0.866976891920706 -0.4980190351749354 -0.01811379250568842 0.866976891920706 -0.4980190351749354 -0.01811379250568842 0.866976891920706 -0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.0009121131494288234 -0.298310708672215 -0.9544683803778329 0.001614307504300969 -0.5285047862956617 -0.8489287866917099 0.002200289293744457 -0.7196483725656897 -0.6943352062156852 -0.002200289293744457 0.7196483725656897 0.6943352062156852 -0.001614307504300969 0.5285047862956617 0.8489287866917099 -0.0009121131494288234 0.298310708672215 0.9544683803778329 0.03884761246150546 0.2980925397878077 -0.9537461406102229 0.03884761246150546 0.2980925397878077 -0.9537461406102229 0.03884761246150546 0.2980925397878077 -0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 1 0 0 -1 -0 -0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.002552514391934026 -0.8355289377748245 -0.5494405143517835 -0.002552514391934026 0.8355289377748245 0.5494405143517835 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 -0.0009121122897470495 -0.298310708672449 -0.9544683803785813 -0.002200287232821748 -0.719648376781204 -0.694335201853018 -0.001614305981759535 -0.5285047859663513 -0.8489287868996188 0.001614305981759535 0.5285047859663513 0.8489287868996188 0.002200287232821748 0.719648376781204 0.694335201853018 0.0009121122897470495 0.298310708672449 0.9544683803785813 0.8320403846287647 6.728158019358152e-006 -0.5547150604603675 0.8055737206021635 -0.334860110908844 -0.4887941149372647 0.8320394359021639 1.297833282873577e-005 -0.5547164833815306 -0.8320394359021639 -1.297833282873577e-005 0.5547164833815306 -0.8055737206021635 0.334860110908844 0.4887941149372647 -0.8320403846287647 -6.728158019358152e-006 0.5547150604603675 0.8055816010006706 0.3348440792358995 -0.4887921099300389 0.8116067224060802 0.2934437497667821 -0.5051586818694401 -0.8116067224060802 -0.2934437497667821 0.5051586818694401 -0.8055816010006706 -0.3348440792358995 0.4887921099300389 0.002648263323064338 -0.867050619351959 -0.4982130168740636 0.002648263323064338 -0.867050619351959 -0.4982130168740636 0.002648263323064338 -0.867050619351959 -0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.3338427968763195 -0.8115972051705556 -0.4794360891017068 0.002949635041474276 -0.9653555796487164 -0.2609212611003802 -0.002949635041474276 0.9653555796487164 0.2609212611003802 -0.3338427968763195 0.8115972051705556 0.4794360891017068 -0.002552511986482694 -0.835528937878214 -0.5494405142057348 0.002552511986482694 0.835528937878214 0.5494405142057348 -0.8055939915198626 0.3348349516607002 -0.4887779413736592 -0.8320507220387324 1.297809478051873e-005 -0.5546995545215382 -0.8116189586545295 0.2934350227654479 -0.505144091687885 0.8116189586545295 -0.2934350227654479 0.505144091687885 0.8320507220387324 -1.297809478051873e-005 0.5546995545215382 0.8055939915198626 -0.3348349516607002 0.4887779413736592 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 -0.8055861114285355 -0.334850983396517 -0.4887799463887985 -0.8320516707037028 6.727990467320525e-006 -0.5546981316300886 0.8320516707037028 -6.727990467320525e-006 0.5546981316300886 0.8055861114285355 0.334850983396517 0.4887799463887985 0.5466316485213796 -0.6118596425677951 -0.5716831453100651 -0.5466316485213796 0.6118596425677951 0.5716831453100651 0.7649780016593277 0.5278720251009558 -0.368998349715981 -0.7649780016593277 -0.5278720251009558 0.368998349715981 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -0.002212084448621615 0.7242674441303389 -0.6895156097256238 -0.002214140911835727 0.7242053730320672 -0.6895807967537286 -0.002553587655163572 0.8355923275804911 -0.5493441009774335 0.002553587655163572 -0.8355923275804911 0.5493441009774335 0.002214140911835727 -0.7242053730320672 0.6895807967537286 0.002212084448621615 -0.7242674441303389 0.6895156097256238 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.1864812486088931 -0.9557434151656247 -0.2275505840133497 0.003055537417817281 -0.9999953318327775 1.934294798560031e-006 -0.003055537417817281 0.9999953318327775 -1.934294798560031e-006 -0.1864812486088931 0.9557434151656247 0.2275505840133497 -0.3338527455496996 -0.8115943561974748 -0.4794339842745131 -0.002949632261432901 -0.9653555796741683 -0.2609212610376411 0.002949632261432901 0.9653555796741683 0.2609212610376411 0.3338527455496996 0.8115943561974748 0.4794339842745131 -0.7649920390725676 0.5278581958797434 -0.3689890312708192 0.7649920390725676 -0.5278581958797434 0.3689890312708192 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 0.002214138825010872 0.7242053730344722 -0.6895807967579033 0.002212082363703796 0.7242674441336792 -0.6895156097288039 0.002553585248665742 0.8355923276848613 -0.5493441008298652 -0.002553585248665742 -0.8355923276848613 0.5493441008298652 -0.002212082363703796 -0.7242674441336792 0.6895156097288039 -0.002214138825010872 -0.7242053730344722 0.6895807967579033 -0.5466429642130603 -0.6118560606134371 -0.5716761589982258 0.5466429642130603 0.6118560606134371 0.5716761589982258 0 3.868158711756917e-006 -0.9999999999925187 0 3.868158711701378e-006 -0.9999999999925188 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 -0 -3.868158711701378e-006 0.9999999999925188 -0 -3.868158711756917e-006 0.9999999999925187 0 0.5281572825815556 -0.8491465626475012 0 0.5281572825815556 -0.8491465626475013 -0 -0.5281572825815556 0.8491465626475013 -0 -0.5281572825815556 0.8491465626475012 0 0.8356446321585987 -0.5492704695726142 0 0.8356446321585989 -0.5492704695726142 -0 -0.8356446321585989 0.5492704695726142 -0 -0.8356446321585987 0.5492704695726142 0.7568791977856552 0.5590129755901407 -0.3385828895281033 -0.7568791977856552 -0.5590129755901407 0.3385828895281033 -0.002554155191691176 0.8357993912333664 -0.5490290100761444 0.002554155191691176 -0.8357993912333664 0.5490290100761444 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.1661060322011099 -0.9860944486220339 -0.005150190599470763 0.002949694936965429 -0.9653554352628204 0.2609217946211268 -0.002949694936965429 0.9653554352628204 -0.2609217946211268 -0.1661060322011099 0.9860944486220339 0.005150190599470763 -0.1864880322547073 -0.9557422919471569 -0.2275497422748767 -0.003055534537986922 -0.999995331841577 1.934293567479863e-006 0.003055534537986922 0.999995331841577 -1.934293567479863e-006 0.1864880322547073 0.9557422919471569 0.2275497422748767 0.2862877336281036 -0.8697972039015308 -0.401860868534326 -0.2862877336281036 0.8697972039015308 0.401860868534326 -2.019804105832881e-017 0.835644632158599 -0.5492704695726142 -1.504631385858392e-017 0.5281572825815555 -0.8491465626475012 -5.394652787860109e-018 0.8356446321585987 -0.5492704695726142 5.394652787860109e-018 -0.8356446321585987 0.5492704695726142 1.504631385858392e-017 -0.5281572825815555 0.8491465626475012 2.019804105832881e-017 -0.835644632158599 0.5492704695726142 -0.7568933467921767 0.5589992110197796 -0.3385739855053869 0.7568933467921767 -0.5589992110197796 0.3385739855053869 0 3.86815871177543e-006 -0.9999999999925187 0 0.5281572825815556 -0.8491465626475012 -0 -0.5281572825815556 0.8491465626475012 -0 -3.86815871177543e-006 0.9999999999925187 -1 0 0 1 -0 -0 0.002554152784050285 0.8357993911402223 -0.5490290102291404 -0.002554152784050285 -0.8357993911402223 0.5490290102291404 0 -0.2983734121066879 -0.9544492165368531 0 3.868158711756917e-006 -0.9999999999925187 -0 -3.868158711756917e-006 0.9999999999925187 -0 0.2983734121066879 0.9544492165368531 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 0 0.965359471880244 -0.2609235329576394 -0 -0.965359471880244 0.2609235329576394 0.7268825143436041 0.6607398573687157 -0.1872555772891412 -0.7268825143436041 -0.6607398573687157 0.1872555772891412 -0.002950127160059584 0.9653490900268844 -0.2609452646322702 0.002950127160059584 -0.9653490900268844 0.2609452646322702 -0.002949448796250568 0.9653929382102103 -0.26078300482519 0.002949448796250568 -0.9653929382102103 0.26078300482519 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.2007501489671204 -0.951725343973551 0.232203030402501 0.002552997604157791 -0.8355269595520708 0.5494435203593774 -0.002552997604157791 0.8355269595520708 -0.5494435203593774 -0.2007501489671204 0.951725343973551 -0.232203030402501 -0.1661127803645202 -0.9860933108704654 -0.005150384072321964 -0.002949692156861799 -0.9653554352876221 0.2609217945607945 0.002949692156861799 0.9653554352876221 -0.2609217945607945 0.1661127803645202 0.9860933108704654 0.005150384072321964 0.1724465557830786 -0.9617809931350786 -0.2126958077693477 -0.1724465557830786 0.9617809931350786 0.2126958077693477 -0.2862975662683983 -0.8697944662238237 -0.4018597890747538 0.2862975662683983 0.8697944662238237 0.4018597890747538 0 -0.8667445901319661 -0.4987522586184146 -0 0.8667445901319661 0.4987522586184146 4.409748279020684e-018 0.965359471880244 -0.2609235329576394 -4.409748279020684e-018 -0.965359471880244 0.2609235329576394 -0.7268976426489947 0.6607244087997335 -0.1872513624184803 0.7268976426489947 -0.6607244087997335 0.1872513624184803 -1 0 0 1 -0 -0 0.002950124379610544 0.965349090051797 -0.2609452645715427 0.002949446016322907 0.9653929382009268 -0.2607830048909988 -0.002949446016322907 -0.9653929382009268 0.2607830048909988 -0.002950124379610544 -0.965349090051797 0.2609452645715427 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 -0.8320362498070469 -8.063598776771518e-006 -0.5547212623849964 -0.803978066699777 -0.3441521864512067 -0.4849521015796744 -0.8320371287516315 -3.026124632421247e-006 -0.5547199440885313 0.8320371287516315 3.026124632421247e-006 0.5547199440885313 0.803978066699777 0.3441521864512067 0.4849521015796744 0.8320362498070469 8.063598776771518e-006 0.5547212623849964 -0.8055654191382256 0.3348837302659184 -0.4887916147928875 -0.8116036193285674 0.2934593149064727 -0.5051546254241303 0.8116036193285674 -0.2934593149064727 0.5051546254241303 0.8055654191382256 -0.3348837302659184 0.4887916147928875 -0.7568503463297163 0.5590451464084897 -0.3385942668411544 -0.7649953272105627 0.5278527817531871 -0.3689899594046245 0.7649953272105627 -0.5278527817531871 0.3689899594046245 0.7568503463297163 -0.5590451464084897 0.3385942668411544 -0.7249140961405115 0.6675523157258524 -0.1699219202629169 -0.7268914757574545 0.6607266118067573 -0.1872675276750152 0.7268914757574545 -0.6607266118067573 0.1872675276750152 0.7249140961405115 -0.6675523157258524 0.1699219202629169 0 0.965359471880244 -0.2609235329576393 -0 -0.965359471880244 0.2609235329576393 0.7249272079121237 0.667543496065336 -0.169900630044745 -0.7249272079121237 -0.667543496065336 0.169900630044745 -0.003055185258789919 0.9999953329104274 6.309564516309169e-007 0.003055185258789919 -0.9999953329104274 -6.309564516309169e-007 -0.003055193244397305 0.9999953328861547 3.846450991081987e-007 0.003055193244397305 -0.9999953328861547 -3.846450991081987e-007 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.396242401047364 -0.8263973975146813 0.400074119374375 0.00161200203617746 -0.5277742081911482 0.8493831800887288 -0.00161200203617746 0.5277742081911482 -0.8493831800887288 -0.396242401047364 0.8263973975146813 -0.400074119374375 -0.2007576106584453 -0.951724024483904 0.2322019874653813 -0.002552995198272918 -0.8355269596566859 0.5494435202114703 0.002552995198272918 0.8355269596566859 -0.5494435202114703 0.2007576106584453 0.951724024483904 -0.2322019874653813 0.1616196621128437 -0.9868424115335599 0.00459778393993502 -0.1616196621128437 0.9868424115335599 -0.00459778393993502 -0.1724535429730829 -0.9617797362109177 -0.2126958263109286 0.1724535429730829 0.9617797362109177 0.2126958263109286 -0.3357453554640401 -0.8484485168976997 -0.4091578796240137 0.3357453554640401 0.8484485168976997 0.4091578796240137 2.37852513665284e-017 -0.8667445901319661 -0.4987522586184147 -2.37852513665284e-017 0.8667445901319661 0.4987522586184147 0.7650013428316465 0.5278468550956063 -0.3689859659004064 0.7249205833962374 0.6675457238996612 -0.1699201408654548 0.7268979590519979 0.6607199911880276 -0.1872657212907171 -0.7268979590519979 -0.6607199911880276 0.1872657212907171 -0.7249205833962374 -0.6675457238996612 0.1699201408654548 -0.7650013428316465 -0.5278468550956063 0.3689859659004064 1.464501951309081e-018 0.965359471880244 -0.2609235329576394 -1.464501951309081e-018 -0.965359471880244 0.2609235329576394 0.8116088634042136 0.2934555747505147 -0.5051483727495967 0.7568564105892773 0.5590392475553451 -0.3385904509029589 -0.7568564105892773 -0.5590392475553451 0.3385904509029589 -0.8116088634042136 -0.2934555747505147 0.5051483727495967 -0.7249423445682703 0.6675281145621809 -0.1698964782475471 0.7249423445682703 -0.6675281145621809 0.1698964782475471 0.8320419656509712 -3.026103993012759e-006 -0.554712689044077 0.8055707295559194 0.3348798184281762 -0.4887855428429281 -0.8055707295559194 -0.3348798184281762 0.4887855428429281 -0.8320419656509712 3.026103993012759e-006 0.554712689044077 -1 0 0 1 -0 -0 0.003055190364844028 0.9999953328949524 3.846453285500369e-007 0.003055182379244019 0.9999953329192248 6.309566859035713e-007 -0.003055182379244019 -0.9999953329192248 -6.309566859035713e-007 -0.003055190364844028 -0.9999953328949524 -3.846453285500369e-007 0.8039834668812202 -0.344147818365849 -0.4849462486664688 0.8320410867311748 -8.063554250222519e-006 -0.554714007328267 -0.8320410867311748 8.063554250222519e-006 0.554714007328267 -0.8039834668812202 0.344147818365849 0.4849462486664688 -0.7664487854284114 -0.4050337947265615 -0.4985016393601074 0.7664487854284114 0.4050337947265615 0.4985016393601074 -0.7205240482818297 0.6934070339913934 -0.00563746918592094 0.7205240482818297 -0.6934070339913934 0.00563746918592094 0 0.9992983021790191 -0.03745535024705565 -0 -0.9992983021790191 0.03745535024705565 0.7193380553647977 0.6943244888794296 -0.02159319907541268 -0.7193380553647977 -0.6943244888794296 0.02159319907541268 0.7289093500560232 0.684238699561087 -0.02255130647786537 -0.7289093500560232 -0.684238699561087 0.02255130647786537 -0.002949335473584697 0.9653475938150504 0.2609508086512788 0.002949335473584697 -0.9653475938150504 -0.2609508086512788 -0.002950301896304013 0.9653916081025115 0.2607879190529493 0.002950301896304013 -0.9653916081025115 -0.2607879190529493 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.001615094735668822 -0.5285024120461672 0.8489302632904412 -8.857905654529529e-007 0.000536850303038527 0.9999998558954735 8.857905654529529e-007 -0.000536850303038527 -0.9999998558954735 -0.001615094735668822 0.5285024120461672 -0.8489302632904412 -0.3962520963852381 -0.8263937323002769 0.4000720876606143 -0.001612000517827052 -0.5277742085236129 0.8493831798850298 0.001612000517827052 0.5277742085236129 -0.8493831798850298 0.3962520963852381 0.8263937323002769 -0.4000720876606143 0.2520181699357093 -0.9561763662848922 0.1490422711195572 -0.2520181699357093 0.9561763662848922 -0.1490422711195572 -0.1616261657716915 -0.9868413456543232 0.004597939223866884 0.1616261657716915 0.9868413456543232 -0.004597939223866884 -0.1962426981760692 -0.9534546635626248 -0.2289388738140783 0.1962426981760692 0.9534546635626248 0.2289388738140783 0.3357496371242677 -0.8484470727281261 -0.4091573608649813 -0.3357496371242677 0.8484470727281261 0.4091573608649813 2.37852513665284e-017 -0.8667445901319661 -0.4987522586184147 -2.37852513665284e-017 0.8667445901319661 0.4987522586184147 0.7205305897862324 0.6934002366019171 -0.005637469530682406 -0.7205305897862324 -0.6934002366019171 0.005637469530682406 4.575417561731639e-018 0.9992983021790192 -0.03745535024705565 -4.575417561731639e-018 -0.9992983021790192 0.03745535024705565 -0.7193533642005128 0.6943086462472908 -0.0215926181751677 0.7193533642005128 -0.6943086462472908 0.0215926181751677 -1 0 0 1 -0 -0 0.002950299115588007 0.9653916080934859 0.2607879191178184 0.002949332693869268 0.9653475938402066 0.2609508085896353 -0.002949332693869268 -0.9653475938402066 -0.2609508085896353 -0.002950299115588007 -0.9653916080934859 -0.2607879191178184 -0.7289242112690209 0.6842228763809267 -0.02255104571515598 0.7289242112690209 -0.6842228763809267 0.02255104571515598 0.7664546770341747 -0.4050299076951926 -0.49849573912408 -0.7664546770341747 0.4050299076951926 0.49849573912408 -0.0002797592049493041 0.006263672890302613 -0.9999803438751738 -0.01106566094474254 0.03668599928103868 -0.9992655746119784 0.01697730248933885 -0.524390261730718 -0.8513087715994557 -0.01697730248933885 0.524390261730718 0.8513087715994557 0.01106566094474254 -0.03668599928103868 0.9992655746119784 0.0002797592049493041 -0.006263672890302613 0.9999803438751738 -0.01780721153823865 0.5319665183544828 -0.8465781278576965 -0.1264676245001224 0.5355571030882171 -0.8349757656872761 0.1264676245001224 -0.5355571030882171 0.8349757656872761 0.01780721153823865 -0.5319665183544828 0.8465781278576965 -0.1893315825615171 0.8206660561074328 -0.5391296469290327 -0.02822700821874184 0.8365546736574295 -0.547155840678806 0.02822700821874184 -0.8365546736574295 0.547155840678806 0.1893315825615171 -0.8206660561074328 0.5391296469290327 -0.03272715821418405 0.9650613597744062 -0.2599721234778792 -0.2155343565998912 0.9421998252081087 -0.2565237425714823 0.2155343565998912 -0.9421998252081087 0.2565237425714823 0.03272715821418405 -0.9650613597744062 0.2599721234778792 -0.2228877374193605 0.9748440975020174 0.0002051183931693147 -0.03389589443880784 0.9994253687680178 -2.455819977344632e-005 0.03389589443880784 -0.9994253687680178 2.455819977344632e-005 0.2228877374193605 -0.9748440975020174 -0.0002051183931693147 -0.7301198465623731 0.6832725967623803 -0.007972964902108899 0.7301198465623731 -0.6832725967623803 0.007972964902108899 2.068868811079841e-018 0.9992983021790191 -0.03745535024705565 -2.068868811079841e-018 -0.9992983021790191 0.03745535024705565 0.7678778063303926 0.6369896413553908 0.06788130339905686 -0.7678778063303926 -0.6369896413553908 -0.06788130339905686 0.8092178749763873 0.5804623039637544 0.09071904152816923 -0.8092178749763873 -0.5804623039637544 -0.09071904152816923 -0.002553622612297775 0.8355937385993449 0.549341954546641 0.002553622612297775 -0.8355937385993449 -0.549341954546641 -0.002554286917194058 0.8358000414649245 0.5490280195997059 0.002554286917194058 -0.8358000414649245 -0.5490280195997059 -1 0 0 1 -0 -0 1.481633289449374e-006 -0.0005762421340112978 0.9999998339713901 -0.001613847109763359 0.5284751012949722 0.848947267389898 0.001613847109763359 -0.5284751012949722 -0.848947267389898 -1.481633289449374e-006 0.0005762421340112978 -0.9999998339713901 8.857880502895044e-007 0.0005368497562072896 0.999999855895767 -0.001615093212392778 -0.5285024117156749 0.8489302634990876 0.001615093212392778 0.5285024117156749 -0.8489302634990876 -8.857880502895044e-007 -0.0005368497562072896 -0.999999855895767 0.4929489107293522 -0.8475429605278416 0.1966527433585581 0.9533497854571083 -0.2073605654130637 0.2193758931160399 -0.9533497854571083 0.2073605654130637 -0.2193758931160399 -0.4929489107293522 0.8475429605278416 -0.1966527433585581 -0.2520271808283023 -0.9561738850512725 0.149042952432157 0.2520271808283023 0.9561738850512725 -0.149042952432157 -0.1616277778155193 -0.9868408232939524 0.004653054795648724 0.1616277778155193 0.9868408232939524 -0.004653054795648724 0.1962459009082128 -0.9534539725555282 -0.2289390062763575 -0.1962459009082128 0.9534539725555282 0.2289390062763575 -0.2777561620133268 -0.830283889877445 -0.4831978649307193 0.2777561620133268 0.830283889877445 0.4831978649307193 0.03389580203817755 0.9994253719014018 -2.457505460847512e-005 0.03272706690551168 0.965061366334949 -0.2599721106185886 0.2228865655285466 0.9748443654123843 0.0002052574352880103 -0.2228865655285466 -0.9748443654123843 -0.0002052574352880103 -0.03272706690551168 -0.965061366334949 0.2599721106185886 -0.03389580203817755 -0.9994253719014018 2.457505460847512e-005 0.730126241693922 0.6832657653076124 -0.007972775458476284 -0.730126241693922 -0.6832657653076124 0.007972775458476284 0.02822692769022931 0.8365546646967691 -0.5471558585332399 0.2155368156360248 0.9421992683628976 -0.2565237217138076 -0.2155368156360248 -0.9421992683628976 0.2565237217138076 -0.02822692769022931 -0.8365546646967691 0.5471558585332399 6.123228085551975e-019 0.9992983021790191 -0.03745535024705565 -6.123228085551975e-019 -0.9992983021790191 0.03745535024705565 0.01780718905203821 0.5319665044789665 -0.846578137049673 0.1893315178785763 0.8206639692342971 -0.5391328462803978 -0.1893315178785763 -0.8206639692342971 0.5391328462803978 -0.01780718905203821 -0.5319665044789665 0.846578137049673 0.0002797632041481558 0.00626367289098501 -0.9999803438740506 0.126465024024466 0.5355555057194289 -0.8349771841146907 -0.126465024024466 -0.5355555057194289 0.8349771841146907 -0.0002797632041481558 -0.00626367289098501 0.9999803438740506 0.00255362020575763 0.8355937387029213 0.5493419544002797 0.002554284509427913 0.8358000413710054 0.5490280197538832 -0.002554284509427913 -0.8358000413710054 -0.5490280197538832 -0.00255362020575763 -0.8355937387029213 -0.5493419544002797 -0.8092297345050434 0.5804462092470282 0.09071623318707789 -0.7678918164356939 0.6369729306543241 0.06787962775923269 0.7678918164356939 -0.6369729306543241 -0.06787962775923269 0.8092297345050434 -0.5804462092470282 -0.09071623318707789 -0.01697729557675344 -0.5243902633278786 -0.8513087707534898 0.01106592119690006 0.03668641810883589 -0.9992655563534688 -0.01106592119690006 -0.03668641810883589 0.9992655563534688 0.01697729557675344 0.5243902633278786 0.8513087707534898 0.1184825435448558 -0.4899915571089545 -0.8636377486174882 -0.1184825435448558 0.4899915571089545 0.8636377486174882 -0.2167209968464306 0.9418398285204125 0.256845764883382 0.2167209968464306 -0.9418398285204125 -0.256845764883382 -0.7802832047922998 0.6145788157087936 0.1159784445534376 0.7802832047922998 -0.6145788157087936 -0.1159784445534376 8.335971109177908e-018 0.9965072187388201 0.08350666441321454 -8.335971109177908e-018 -0.9965072187388201 -0.08350666441321454 6.602877351672787e-018 0.9965072187388201 0.08350666441321454 -6.602877351672787e-018 -0.9965072187388201 -0.08350666441321454 0.91484729386902 0.3766843762805661 0.1454761477584959 -0.91484729386902 -0.3766843762805661 -0.1454761477584959 0.9380738936174975 0.3098261895273916 0.1550003303101148 -0.9380738936174975 -0.3098261895273916 -0.1550003303101148 -0.001613329526401327 0.5278221017331963 0.8493534164820853 0.001613329526401327 -0.5278221017331963 -0.8493534164820853 0.001613845587672781 0.5284751009650505 0.84894726759817 -1.481630220660002e-006 -0.0005762415874944916 0.9999998339717051 1.481630220660002e-006 0.0005762415874944916 -0.9999998339717051 -0.001613845587672781 -0.5284751009650505 -0.84894726759817 0.9712365635796946 -0.1527066280144715 0.1827025542414654 0.9819609856057684 -0.008174300589236617 0.1889068647721009 -0.9819609856057684 0.008174300589236617 -0.1889068647721009 -0.9712365635796946 0.1527066280144715 -0.1827025542414654 -0.4929567288601705 -0.8475387800870704 0.1966511625188134 -0.9533535455219041 -0.2073525445156425 0.2193671341010386 0.9533535455219041 0.2073525445156425 -0.2193671341010386 0.4929567288601705 0.8475387800870704 -0.1966511625188134 -0.1605110079563473 -0.9819532101403307 0.1000205449892033 0.1605110079563473 0.9819532101403307 -0.1000205449892033 0.1616305651411281 -0.9868403664580093 0.004653121659863324 -0.1616305651411281 0.9868403664580093 -0.004653121659863324 -0.1621884459272584 -0.9565899097374314 -0.2421376728149378 0.1621884459272584 0.9565899097374314 0.2421376728149378 0.2777603923494519 -0.830283070778745 -0.4831968406561615 -0.2777603923494519 0.830283070778745 0.4831968406561615 0.2167232423485981 0.9418394466154173 0.2568452705912165 -0.2167232423485981 -0.9418394466154173 -0.2568452705912165 0.7802889215868538 0.6145718648083991 0.1159768159364256 -0.7802889215868538 -0.6145718648083991 -0.1159768159364256 1.030934398677886e-018 0.9965072187388201 0.08350666441321455 -1.030934398677886e-018 -0.9965072187388201 -0.08350666441321455 0.001613328006849522 0.5278221020668691 0.849353416277614 -0.001613328006849522 -0.5278221020668691 -0.849353416277614 -0.9380787959196464 0.3098143672477748 0.1549942918071744 -0.9148539408133669 0.3766702869387026 0.1454708284013264 0.9148539408133669 -0.3766702869387026 -0.1454708284013264 0.9380787959196464 -0.3098143672477748 -0.1549942918071744 0 0.9965072187388201 0.08350666441321455 -0 -0.9965072187388201 -0.08350666441321455 -0.1184820905555187 -0.4899930899273966 -0.8636369411048811 0.1184820905555187 0.4899930899273966 0.8636369411048811 -0.02157256374809401 0.0304730294347691 -0.999302766417867 0.02157256374809401 -0.0304730294347691 0.999302766417867 -0.3265606669319467 0.4195619864804518 -0.8469509255638955 0.3265606669319467 -0.4195619864804518 0.8469509255638955 -0.5261526271735196 0.6463451952757038 -0.5526312527014876 0.5261526271735196 -0.6463451952757038 0.5526312527014876 -0.6183152130251024 0.7380156723353358 -0.2702205853171522 0.6183152130251024 -0.7380156723353358 0.2702205853171522 -0.6410526923499644 0.7674968419890563 -0.0002077683496633954 0.6410526923499644 -0.7674968419890563 0.0002077683496633954 -0.6090258531602395 0.7488508500734324 0.261361654660243 0.6090258531602395 -0.7488508500734324 -0.261361654660243 -0.0325679263279658 0.9650796482741636 0.2599242248458434 0.0325679263279658 -0.9650796482741636 -0.2599242248458434 -0.8206302163431705 0.5639156656873579 0.09254820374780565 0.8206302163431705 -0.5639156656873579 -0.09254820374780565 3.839672104174279e-018 0.9631331640241506 0.2690251072982375 -3.839672104174279e-018 -0.9631331640241506 -0.2690251072982375 9.873498882604889e-018 0.9631331640241506 0.2690251072982374 -9.873498882604889e-018 -0.9631331640241506 -0.2690251072982374 0.9692092068417504 0.1700562954552146 0.1780852878517311 -0.9692092068417504 -0.1700562954552146 -0.1780852878517311 0.9755210414545454 0.1339201871436595 0.1744250015188364 -0.9755210414545454 -0.1339201871436595 -0.1744250015188364 0.9820094607551504 0.01516355419712978 0.1882219052381767 -0.9820094607551504 -0.01516355419712978 -0.1882219052381767 -0.9712389984143933 -0.1527002210970489 0.1826949655461758 -0.9819625328217502 -0.008173970839654855 0.1888988362457681 0.9819625328217502 0.008173970839654855 -0.1888988362457681 0.9712389984143933 0.1527002210970489 -0.1826949655461758 -0.02117067087250909 -0.9821148502766945 0.187088811960507 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 0.02117067087250909 0.9821148502766945 -0.187088811960507 0.1605137823074094 -0.981952766035434 0.1000204527320781 -0.1605137823074094 0.981952766035434 -0.1000204527320781 -0.1490552496970033 -0.9888158434479187 -0.00507545900829777 0.1490552496970033 0.9888158434479187 0.00507545900829777 0.1621914928617083 -0.956589485234327 -0.2421373089435325 -0.1621914928617083 0.956589485234327 0.2421373089435325 0.1992955053068566 -0.8041073521826736 -0.5600827329334965 -0.1992955053068566 0.8041073521826736 0.5600827329334965 0.6090279241513155 0.7488517591937228 0.2613542239115452 -0.6090279241513155 -0.7488517591937228 -0.2613542239115452 0.03256783281309811 0.9650796464246926 0.2599242434299818 -0.03256783281309811 -0.9650796464246926 -0.2599242434299818 0.6410549470182567 0.7674949587243872 -0.0002079328529572579 -0.6410549470182567 -0.7674949587243872 0.0002079328529572579 0.8206353015347579 0.5639084200000258 0.0925472621314709 -0.8206353015347579 -0.5639084200000258 -0.0925472621314709 0.6183164625215473 0.7380178490005961 -0.2702117812593917 -0.6183164625215473 -0.7380178490005961 0.2702117812593917 0.5261603498804544 0.64634501550577 -0.5526241101730215 -0.5261603498804544 -0.64634501550577 0.5526241101730215 0.3265598441620871 0.4195571632132496 -0.8469536321294596 -0.3265598441620871 -0.4195571632132496 0.8469536321294596 -0.9755231142129951 0.1339146232400715 0.1744176806365959 -0.969211805223159 0.1700492026605481 0.1780779191550072 0.969211805223159 -0.1700492026605481 -0.1780779191550072 0.9755231142129951 -0.1339146232400715 -0.1744176806365959 9.873448737266604e-018 0.9631331640241506 0.2690251072982374 0 0.9631331640241506 0.2690251072982374 -0 -0.9631331640241506 -0.2690251072982374 -9.873448737266604e-018 -0.9631331640241506 -0.2690251072982374 0.0215690849119027 0.03046902354634635 -0.9993029636602681 -0.0215690849119027 -0.03046902354634635 0.9993029636602681 0.2891880719699376 -0.3913850132782499 -0.8736063360641876 -0.2891880719699376 0.3913850132782499 0.8736063360641876 -0.5050167113002247 0.6564889884265315 0.5603394769086103 0.5050167113002247 -0.6564889884265315 -0.5603394769086103 -0.1913791141245951 0.8201616641672003 0.5391742569034372 0.1913791141245951 -0.8201616641672003 -0.5391742569034372 -0.889292257498726 0.4269801621608256 0.1638512187136083 0.889292257498726 -0.4269801621608256 -0.1638512187136083 -0.9335688285797957 0.3336606029531335 0.1308428230400855 0.9335688285797957 -0.3336606029531335 -0.1308428230400855 -8.514388587547155e-018 0.7626349109729054 0.6468291834521296 8.514388587547155e-018 -0.7626349109729054 -0.6468291834521296 2.174811445937475e-017 0.7626349109729054 0.6468291834521296 -2.174811445937475e-017 -0.7626349109729054 -0.6468291834521296 -0.9820110045135057 0.01516290704785058 0.188213902951492 0.9820110045135057 -0.01516290704785058 -0.188213902951492 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 0.02117070859153276 -0.9821148264214962 0.1870889329190988 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.02117070859153276 0.9821148264214962 -0.1870889329190988 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.1446250046914288 -0.9707689276932437 0.1915497247278472 0.1446250046914288 0.9707689276932437 -0.1915497247278472 0.1490581853501327 -0.9888154004405476 -0.005075552356619214 -0.1490581853501327 0.9888154004405476 0.005075552356619214 0.2347772550107806 -0.9350487801729239 -0.2656377594144512 -0.2347772550107806 0.9350487801729239 0.2656377594144512 -0.1992967459393751 -0.8041087791459054 -0.5600802427853153 0.1992967459393751 0.8041087791459054 0.5600802427853153 0.5050262873067521 0.656488399991662 0.5603315356157868 -0.5050262873067521 -0.656488399991662 -0.5603315356157868 0.1913782600183198 0.8201595563084797 0.5391777664075532 -0.1913782600183198 -0.8201595563084797 -0.5391777664075532 0.88929565445638 0.4269740989418542 0.163848581921817 -0.88929565445638 -0.4269740989418542 -0.163848581921817 2.43577377835986e-017 0.7626349109729054 0.6468291834521296 3.435253496846114e-017 0.7626349109729055 0.6468291834521296 -3.435253496846114e-017 -0.7626349109729055 -0.6468291834521296 -2.43577377835986e-017 -0.7626349109729054 -0.6468291834521296 0.9335711130046454 0.3336550455237233 0.1308406953506054 -0.9335711130046454 -0.3336550455237233 -0.1308406953506054 -0.289189093827899 -0.3913801532758218 -0.8736081751178803 0.289189093827899 0.3913801532758218 0.8736081751178803 -0.04141091907858467 0.03946780910082173 -0.9983623730018315 0.04141091907858467 -0.03946780910082173 0.9983623730018315 -0.4971166425574662 0.2809862863339101 -0.8209273722959116 0.4971166425574662 -0.2809862863339101 0.8209273722959116 -0.8001393427670355 0.4181600269938953 -0.4300223528850576 0.8001393427670355 -0.4181600269938953 0.4300223528850576 -0.8780942256849145 0.4536487713185636 -0.1521621605392353 0.8780942256849145 -0.4536487713185636 0.1521621605392353 -0.8980461688117551 0.4399009207699547 -0.000508515756603526 0.8980461688117551 -0.4399009207699547 0.000508515756603526 -0.8887363119851522 0.4350413154743655 0.1445227372746709 0.8887363119851522 -0.4350413154743655 -0.1445227372746709 -0.8107133045140261 0.3990345337987951 0.4283869497544556 0.8107133045140261 -0.3990345337987951 -0.4283869497544556 -0.02797389227719448 0.8365633045521014 0.5471556440609309 0.02797389227719448 -0.8365633045521014 -0.5471556440609309 -0.966362969318562 0.1662080634581257 0.1962587352739023 0.966362969318562 -0.1662080634581257 -0.1962587352739023 -0.9729795164130922 0.1604889476513607 0.1659944526853352 0.9729795164130922 -0.1604889476513607 -0.1659944526853352 -2.750518736971893e-017 0.558430223714857 0.8295514964375477 2.750518736971893e-017 -0.558430223714857 -0.8295514964375477 2.750518736971894e-017 0.558430223714857 0.8295514964375479 2.750518736971894e-017 0.558430223714857 0.8295514964375479 -2.750518736971894e-017 -0.558430223714857 -0.8295514964375479 -2.750518736971894e-017 -0.558430223714857 -0.8295514964375479 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 0 -0.9535520834967369 0.3012281926696639 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.8246482123398324 -0.5384016893806141 0.1734328306775256 -0.8890262365898423 -0.4149202519035402 0.1935808234696932 -0.9686414897692759 -0.1553131039194101 0.1939368558280669 0.9686414897692759 0.1553131039194101 -0.1939368558280669 0.8890262365898423 0.4149202519035402 -0.1935808234696932 0.8246482123398324 0.5384016893806141 -0.1734328306775256 0.1446279629508149 -0.9707684895702872 0.1915497115375567 -0.1446279629508149 0.9707684895702872 -0.1915497115375567 -0.8635611351890751 -0.4640120862153424 0.1973700829331586 0.8635611351890751 0.4640120862153424 -0.1973700829331586 0.2433418509003679 -0.9699402281087456 0.0008351627014749256 -0.2433418509003679 0.9699402281087456 -0.0008351627014749256 -0.2347805683958469 -0.9350476959945108 -0.265638647261802 0.2347805683958469 0.9350476959945108 0.265638647261802 0.4628863340488015 -0.673449561625458 -0.5763696120523182 -0.4628863340488015 0.673449561625458 0.5763696120523182 0.8107124498491226 0.3990398452309895 0.4283836196420935 -0.8107124498491226 -0.3990398452309895 -0.4283836196420935 0.8887334496212473 0.435047673495858 0.1445212002100697 -0.8887334496212473 -0.435047673495858 -0.1445212002100697 0.02797386354473429 0.8365632928830925 0.5471556633710173 -0.02797386354473429 -0.8365632928830925 -0.5471556633710173 0.8980452761152394 0.4399027401971485 -0.0005110911300991234 -0.8980452761152394 -0.4399027401971485 0.0005110911300991234 0.8780938863150243 0.4536512439230808 -0.152156747149835 -0.8780938863150243 -0.4536512439230808 0.152156747149835 0.8001385740484556 0.4181646564270302 -0.4300192814688292 -0.8001385740484556 -0.4181646564270302 0.4300192814688292 0.4971137439881398 0.2809865126027326 -0.8209290500849927 -0.4971137439881398 -0.2809865126027326 0.8209290500849927 0 0.558430223714857 0.8295514964375477 0 0.558430223714857 0.8295514964375477 -0 -0.558430223714857 -0.8295514964375477 -0 -0.558430223714857 -0.8295514964375477 5.501001328179156e-017 0.5584302237148572 0.8295514964375478 -5.501001328179156e-017 -0.5584302237148572 -0.8295514964375478 0.9663641684364211 0.1662051895494593 0.1962552647166763 0.9729804984150213 0.1604860601719533 0.1659914883195547 -0.9729804984150213 -0.1604860601719533 -0.1659914883195547 -0.9663641684364211 -0.1662051895494593 -0.1962552647166763 0.04139812811194069 0.03946047028410003 -0.9983631935692467 -0.04139812811194069 -0.03946047028410003 0.9983631935692467 0.4352840504712 -0.2573443154483981 -0.8627292151722816 -0.4352840504712 0.2573443154483981 0.8627292151722816 -0.4947758603815167 0.2766781834040977 0.8237997516459558 0.4947758603815167 -0.2766781834040977 -0.8237997516459558 -0.3182902998221029 0.4253874815852181 0.8471934699640583 0.3182902998221029 -0.4253874815852181 -0.8471934699640583 -0.1285214720385949 0.5354504412796926 0.8347305290681628 0.1285214720385949 -0.5354504412796926 -0.8347305290681628 -0.01760029184088905 0.5319340583806397 0.8466028509648533 0.01760029184088905 -0.5319340583806397 -0.8466028509648533 -0.9813562345527125 0.003809967870390602 0.1921598944872417 0.9813562345527125 -0.003809967870390602 -0.1921598944872417 -0.9826247484202688 0.01797822488136286 0.1847305800946843 0.9826247484202688 -0.01797822488136286 -0.1847305800946843 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -0.9723970600012454 -0.1424041971710985 0.1848377730037599 0.9723970600012454 0.1424041971710985 -0.1848377730037599 0.8890296576422765 -0.4149142640270552 0.1935779464178291 0.8246531840080079 -0.5383947946004558 0.1734305949150483 0.9686426244423733 -0.1553103197147293 0.1939334182225955 -0.9686426244423733 0.1553103197147293 -0.1939334182225955 -0.8246531840080079 0.5383947946004558 -0.1734305949150483 -0.8890296576422765 0.4149142640270552 -0.1935779464178291 0.8635652832973482 -0.4640055489693796 0.1973673022797745 -0.8635652832973482 0.4640055489693796 -0.1973673022797745 0.2352902165018025 -0.9353796256116568 0.2640141473654995 0.02641988367814303 -0.8342914698166311 0.5506902333777483 -0.02641988367814303 0.8342914698166311 -0.5506902333777483 -0.2352902165018025 0.9353796256116568 -0.2640141473654995 -0.2433403836998066 -0.9699405959747506 0.000835428618573482 0.2433403836998066 0.9699405959747506 -0.000835428618573482 0.5174644567329831 -0.8184376411384442 -0.2497806309259746 -0.5174644567329831 0.8184376411384442 0.2497806309259746 -0.4628855797423996 -0.6734441282042899 -0.576376566364132 0.4628855797423996 0.6734441282042899 0.576376566364132 0.4947740454005835 0.2766758231917733 0.8238016344115227 -0.4947740454005835 -0.2766758231917733 -0.8238016344115227 0.3182882874077929 0.4253827693621513 0.847196592078132 -0.3182882874077929 -0.4253827693621513 -0.847196592078132 0.128518737747317 0.5354487075508035 0.8347320621792425 -0.128518737747317 -0.5354487075508035 -0.8347320621792425 0.9813569196690418 0.003809901884023064 0.192156396888899 0.9826253879433582 0.01797789724989331 0.1847272101766201 -0.9826253879433582 -0.01797789724989331 -0.1847272101766201 -0.9813569196690418 -0.003809901884023064 -0.192156396888899 0.01760029521255894 0.5319340620057762 0.8466028486170276 -0.01760029521255894 -0.5319340620057762 -0.8466028486170276 -0.4352838388394464 -0.2573442088715797 -0.8627293537404738 0.4352838388394464 0.2573442088715797 0.8627293537404738 -0.1460518413338239 -0.2495440035223013 -0.9572860857387729 0.1460518413338239 0.2495440035223013 0.9572860857387729 -0.6112310483565564 -0.06322878937391613 -0.7889225093247461 0.6112310483565564 0.06322878937391613 0.7889225093247461 -0.8915441330874293 0.08765989438287093 -0.4443701178906702 0.8915441330874293 -0.08765989438287093 0.4443701178906702 -0.9686701625701264 0.1863682952031955 -0.1641492451685955 0.9686701625701264 -0.1863682952031955 0.1641492451685955 -0.979113170918322 0.2033125117858606 0.001192092946436506 0.979113170918322 -0.2033125117858606 -0.001192092946436506 -0.9687439140355221 0.1712184293976954 0.1794978508331603 0.9687439140355221 -0.1712184293976954 -0.1794978508331603 -0.9005329413542803 0.06961919280870038 0.4291778064258139 0.9005329413542803 -0.06961919280870038 -0.4291778064258139 -0.6132342788519511 -0.07787746425893305 0.7860526825865594 0.6132342788519511 0.07787746425893305 -0.7860526825865594 -0.01160717805864078 0.03735978391852368 0.9992344669611213 0.01160717805864078 -0.03735978391852368 -0.9992344669611213 -0.0002750990191358153 0.006169802339054176 0.9999809287479571 0.0002750990191358153 -0.006169802339054176 -0.9999809287479571 0.9723980564127662 -0.1424016814601213 0.1848344691933977 -0.9723980564127662 0.1424016814601213 -0.1848344691933977 0.2021749486814607 -0.8035469111942198 0.5598550273382186 0.01676180795212049 -0.5244277201954837 0.8512899670997793 -0.01676180795212049 0.5244277201954837 -0.8512899670997793 -0.2021749486814607 0.8035469111942198 -0.5598550273382186 -0.2352934458797688 -0.935378697436839 0.2640145577565506 -0.0264198118204032 -0.8342914800161936 0.5506902213729273 0.0264198118204032 0.8342914800161936 -0.5506902213729273 0.2352934458797688 0.935378697436839 -0.2640145577565506 0.5295609180573445 -0.8482711081585763 -0.001166674626152061 -0.5295609180573445 0.8482711081585763 0.001166674626152061 -0.5174623672663363 -0.8184399911235302 -0.2497772595590622 0.5174623672663363 0.8184399911235302 0.2497772595590622 0.6977626942542141 -0.4698759106643299 -0.5406883123246394 -0.6977626942542141 0.4698759106643299 0.5406883123246394 0.6132240363791013 -0.07788204483911553 0.7860602192571512 -0.6132240363791013 0.07788204483911553 -0.7860602192571512 0.9005318544569916 0.06962168370321398 0.4291796829610897 -0.9005318544569916 -0.06962168370321398 -0.4291796829610897 0.9687461451792536 0.1712215384825853 0.1794828430797579 -0.9687461451792536 -0.1712215384825853 -0.1794828430797579 0.9791130567332587 0.2033130864589525 0.001187858993839574 -0.9791130567332587 -0.2033130864589525 -0.001187858993839574 0.9686723019472787 0.1863743052274754 -0.1641297955617317 -0.9686723019472787 -0.1863743052274754 0.1641297955617317 0.8915434616907393 0.08766106977177895 -0.4443712330506563 -0.8915434616907393 -0.08766106977177895 0.4443712330506563 0.6112206164766446 -0.06323622661557089 -0.788929995397142 -0.6112206164766446 0.06323622661557089 0.788929995397142 0.0002750988464171122 0.006169799816833397 0.9999809287635664 0.01160772079517966 0.03736020406176591 0.9992344449479333 -0.01160772079517966 -0.03736020406176591 -0.9992344449479333 -0.0002750988464171122 -0.006169799816833397 -0.9999809287635664 0.1460352483029513 -0.2495452139578195 -0.9572883016332339 -0.1460352483029513 0.2495452139578195 0.9572883016332339 0.4035889713133622 -0.4176632165417596 -0.8140475291911482 -0.4035889713133622 0.4176632165417596 0.8140475291911482 -0.1539794761670579 -0.2560725467089957 0.9543150275151743 0.1539794761670579 0.2560725467089957 -0.9543150275151743 -0.04016355133499785 0.03656675640650078 0.9985237911387334 0.04016355133499785 -0.03656675640650078 -0.9985237911387334 -0.01581688188725655 0.02996803041905136 0.9994257067937403 0.01581688188725655 -0.02996803041905136 -0.9994257067937403 0.1204495300448903 -0.4892020510285962 0.8638132112797188 -0.1204495300448903 0.4892020510285962 -0.8638132112797188 -0.2021770285378366 -0.8035482787212227 0.5598523134682673 -0.01676178295521105 -0.5244277323202428 0.8512899601226424 0.01676178295521105 0.5244277323202428 -0.8512899601226424 0.2021770285378366 0.8035482787212227 -0.5598523134682673 0.5094076716102441 -0.8208413594926837 0.2583085106047273 -0.5094076716102441 0.8208413594926837 -0.2583085106047273 -0.5295565658978195 -0.8482738252862873 -0.001166554189821187 0.5295565658978195 0.8482738252862873 0.001166554189821187 0.7825480196691753 -0.5713196341361541 -0.2474115449254199 -0.7825480196691753 0.5713196341361541 0.2474115449254199 -0.6977594807071145 -0.469882079092307 -0.5406870988207769 0.6977594807071145 0.469882079092307 0.5406870988207769 0.1539618074981693 -0.256072749908537 0.9543178236762513 -0.1539618074981693 0.256072749908537 -0.9543178236762513 0.04015046190472683 0.03655948831891245 0.9985245836846964 -0.04015046190472683 -0.03655948831891245 -0.9985245836846964 0.01581380495359327 0.029964143765137 0.9994258720191867 -0.01581380495359327 -0.029964143765137 -0.9994258720191867 -0.1204492571903401 -0.4892032475319197 0.8638125717113167 0.1204492571903401 0.4892032475319197 -0.8638125717113167 -0.4035754572775538 -0.4176660774932453 -0.8140527611860422 0.4035754572775538 0.4176660774932453 0.8140527611860422 -0.2840023630893594 -0.7144389413139534 -0.6394682610527728 0.2840023630893594 0.7144389413139534 0.6394682610527728 -0.5848906347871803 -0.5854977094664804 -0.5613335706580842 0.5848906347871803 0.5854977094664804 0.5613335706580842 -0.7969858988165718 -0.4526946244706833 -0.399851289935256 0.7969858988165718 0.4526946244706833 0.399851289935256 -0.9231956656843949 -0.3296026792501743 -0.1976659725209516 0.9231956656843949 0.3296026792501743 0.1976659725209516 -0.9966489268663521 0.08166372880846787 0.00468529329347788 0.9966489268663521 -0.08166372880846787 -0.00468529329347788 -0.964893075726331 0.04428042273650343 0.2588833648144611 0.964893075726331 -0.04428042273650343 -0.2588833648144611 -0.8090326429841972 -0.4292081262383663 0.401555185443987 0.8090326429841972 0.4292081262383663 -0.401555185443987 -0.5898902060140966 -0.5786579984570285 0.5631913224387896 0.5898902060140966 0.5786579984570285 -0.5631913224387896 -0.2853859383363251 -0.7146722102624251 0.6385910256795935 0.2853859383363251 0.7146722102624251 -0.6385910256795935 0.281985638696346 -0.4007104282647744 0.8717311811842428 -0.281985638696346 0.4007104282647744 -0.8717311811842428 0.446211320909524 -0.6853561749786278 0.5754844659161896 -0.446211320909524 0.6853561749786278 -0.5754844659161896 -0.5094030941587701 -0.8208446185389465 0.258307181234132 0.5094030941587701 0.8208446185389465 -0.258307181234132 0.8099979478262502 -0.5864296355143889 -0.001899238722307423 -0.8099979478262502 0.5864296355143889 0.001899238722307423 -0.7825487427006799 -0.5713246622280038 -0.2473976467706242 0.7825487427006799 0.5713246622280038 0.2473976467706242 0.7405771949884781 -0.4517623278846433 -0.497449713405532 -0.7405771949884781 0.4517623278846433 0.497449713405532 0.2853792354347278 -0.7146718252325069 0.6385944520597773 -0.2853792354347278 0.7146718252325069 -0.6385944520597773 0.5898824331376763 -0.5786633709007107 0.563193943729335 -0.5898824331376763 0.5786633709007107 -0.563193943729335 0.8090291310112718 -0.4292122029973183 0.4015579036369908 -0.8090291310112718 0.4292122029973183 -0.4015579036369908 0.9649001816587276 0.04427200365486803 0.2588583186365426 -0.9649001816587276 -0.04427200365486803 -0.2588583186365426 0.9966494201427686 0.08165806893666418 0.004679007011975113 -0.9966494201427686 -0.08165806893666418 -0.004679007011975113 0.9232036126395943 -0.3295966235877274 -0.1976389519522193 -0.9232036126395943 0.3295966235877274 0.1976389519522193 0.796980877440989 -0.4526998857070485 -0.3998553419353262 -0.796980877440989 0.4526998857070485 0.3998553419353262 0.5848829390569337 -0.5855014917679562 -0.561337644147995 -0.5848829390569337 0.5855014917679562 0.561337644147995 -0.2819860956836727 -0.4007056494994016 0.871733230008092 0.2819860956836727 0.4007056494994016 -0.871733230008092 0.2839962715560833 -0.714437751660903 -0.6394722955249566 -0.2839962715560833 0.714437751660903 0.6394722955249566 0.06967649649256183 -0.8034909282982834 -0.5912254341441046 -0.06967649649256183 0.8034909282982834 0.5912254341441046 0.03136787686568475 -0.8139973840788715 0.5800209608399454 -0.03136787686568475 0.8139973840788715 -0.5800209608399454 0.4112395355653548 -0.4067898810838509 0.8157230148989163 -0.4112395355653548 0.4067898810838509 -0.8157230148989163 0.4480839719870259 -0.2555058724445752 0.8567015251501929 -0.4480839719870259 0.2555058724445752 -0.8567015251501929 -0.4462089635647924 -0.6853539770439056 0.5754889112611429 0.4462089635647924 0.6853539770439056 -0.5754889112611429 0.7861148917546521 -0.5602688451774001 0.2610022951721959 -0.7861148917546521 0.5602688451774001 -0.2610022951721959 -0.8099959449369538 -0.5864324054839372 -0.001898152790002464 0.8099959449369538 0.5864324054839372 0.001898152790002464 0.8679852392884114 -0.4186456692010427 -0.267090673810694 -0.8679852392884114 0.4186456692010427 0.267090673810694 -0.7405681044240781 -0.4517599181591552 -0.4974654350349996 0.7405681044240781 0.4517599181591552 0.4974654350349996 -0.03136265652006765 -0.8139970210045682 0.5800217526711331 0.03136265652006765 0.8139970210045682 -0.5800217526711331 -0.4112244960213013 -0.4067936091788324 0.8157287376348134 0.4112244960213013 0.4067936091788324 -0.8157287376348134 -0.4480832331455037 -0.2555053323577675 0.8567020726662327 0.4480832331455037 0.2555053323577675 -0.8567020726662327 -0.06967019624810501 -0.8034906672085651 -0.5912265314272404 0.06967019624810501 0.8034906672085651 0.5912265314272404 -0.3815030890092033 -0.924214326544346 -0.01683067695064405 0.3815030890092033 0.924214326544346 0.01683067695064405 -0.7602024055534215 -0.6496822491888411 0.002297320117012182 0.7602024055534215 0.6496822491888411 -0.002297320117012182 -0.7235978029626576 -0.6767074108252281 0.1359165173252718 0.7235978029626576 0.6767074108252281 -0.1359165173252718 0.6996929648346212 -0.457255608955431 0.5489508748874855 -0.6996929648346212 0.457255608955431 -0.5489508748874855 -0.7861194615018242 -0.5602692741775224 0.260987610166985 0.7861194615018242 0.5602692741775224 -0.260987610166985 0.9154288715728126 -0.4024769486616665 -0.001512245655052878 -0.9154288715728126 0.4024769486616665 0.001512245655052878 -0.8679872702806583 -0.418643144329402 -0.2670880310622752 0.8679872702806583 0.418643144329402 0.2670880310622752 0.6401239958287761 -0.5616460253274669 -0.5242089394488227 -0.6401239958287761 0.5616460253274669 0.5242089394488227 0.3815100567366204 -0.9242114501319144 -0.01683068786129064 -0.3815100567366204 0.9242114501319144 0.01683068786129064 0.7236074502295418 -0.676699720026526 0.1359034469331913 -0.7236074502295418 0.676699720026526 -0.1359034469331913 0.7602217437119161 -0.6496596261772683 0.002295757571221962 -0.7602217437119161 0.6496596261772683 -0.002295757571221962 -0.6996930785508547 -0.4572560764512379 0.5489503405376914 0.6996930785508547 0.4572560764512379 -0.5489503405376914 -0.04331297926586832 -0.9656287363035919 -0.2562911029510049 0.04331297926586832 0.9656287363035919 0.2562911029510049 -0.06784976146030096 -0.9677646947856123 0.24254464619177 0.06784976146030096 0.9677646947856123 -0.24254464619177 0.6240702080260744 -0.5918291363616083 0.5101711955880744 -0.6240702080260744 0.5918291363616083 -0.5101711955880744 0.7594261707433901 -0.4193338100716575 0.4974244132738343 -0.7594261707433901 0.4193338100716575 -0.4974244132738343 0.8724739609286245 -0.410869274275227 0.26452906637658 -0.8724739609286245 0.410869274275227 -0.26452906637658 -0.9154312545832757 -0.4024715253698982 -0.001513075846592315 0.9154312545832757 0.4024715253698982 0.001513075846592315 0.8256770590776061 -0.5007123384848367 -0.2598933400493392 -0.8256770590776061 0.5007123384848367 0.2598933400493392 -0.6401183454754561 -0.5616481155677299 -0.5242135996566498 0.6401183454754561 0.5616481155677299 0.5242135996566498 0.06784620197388161 -0.9677652070871987 0.2425435977905633 -0.06784620197388161 0.9677652070871987 -0.2425435977905633 -0.6240708460233705 -0.5918260188339922 0.5101740316546712 0.6240708460233705 0.5918260188339922 -0.5101740316546712 -0.7594127775507094 -0.4193365193935109 0.4974425763800812 0.7594127775507094 0.4193365193935109 -0.4974425763800812 0.04331015943856095 -0.9656291961824468 -0.256289846793524 -0.04331015943856095 0.9656291961824468 0.256289846793524 0.05342527282932921 -0.9892348271926069 -0.1362358135452093 -0.05342527282932921 0.9892348271926069 0.1362358135452093 0.03602488255749498 -0.990151181161496 0.1352880123337349 -0.03602488255749498 0.990151181161496 -0.1352880123337349 -0.8724749547026995 -0.4108695217241122 0.2645254043276785 0.8724749547026995 0.4108695217241122 -0.2645254043276785 0.8774502952952402 -0.4796473008575407 -0.004409769423848663 -0.8774502952952402 0.4796473008575407 0.004409769423848663 -0.8256786698183741 -0.5007121985949208 -0.2598884922138749 0.8256786698183741 0.5007121985949208 0.2598884922138749 -0.03602431648454466 -0.990151257720754 0.1352876027425672 0.03602431648454466 0.990151257720754 -0.1352876027425672 -0.05342430309089553 -0.9892349472673335 -0.1362353219405603 0.05342430309089553 0.9892349472673335 0.1362353219405603 0.08071066687826572 -0.9967349708365165 0.002277314996621204 -0.08071066687826572 0.9967349708365165 -0.002277314996621204 0.8194403105675971 -0.5130260276504044 0.2555814397997763 -0.8194403105675971 0.5130260276504044 -0.2555814397997763 -0.8774528301994429 -0.4796426101341143 -0.004415576827767885 0.8774528301994429 0.4796426101341143 0.004415576827767885 -0.08070874464632695 -0.9967351266216002 0.00227725629573557 0.08070874464632695 0.9967351266216002 -0.00227725629573557 -0.8194362584182509 -0.5130304918091215 0.2555854707599559 0.8194362584182509 0.5130304918091215 -0.2555854707599559</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"988\" source=\"#ID259\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID257\">\r\n\t\t\t\t\t<float_array count=\"3640\" id=\"ID260\">5.073201819573185 5.600716181436744 0.4431947293248177 5.627367762284371 0.445157753558425 5.77577947978994 19.42444920539856 -2.284081900119782 19.34477210044861 -2.21826593875885 19.51842546463013 -2.155384290218354 -0.3683005752163459 5.627980801831711 -4.998312028091073 5.601329220981368 -0.3702635976005759 5.776392519352418 -4.607146616344261 -15.34367856238688 -4.607434025537637 -15.26620563161423 0.02193692619318748 -15.26620484570936 7.160318775454673 13.4418102735027 7.148171802192096 13.3649303743631 2.559466077564319 13.86992800761164 19.29153442382813 -2.119765305519104 -19.34477210044861 -2.21826593875885 -19.42444920539856 -2.284081900119782 -19.51842546463013 -2.155384290218354 0.02193411607899051 -12.19211046583441 -4.607436835651924 -12.19211078958473 0.02169050847536717 -12.101223714757 -7.086038837485496 13.44907359354734 -2.485181750245635 13.87719133378585 -7.073891875480463 13.37219369330701 4.532241269596551 -15.34350658550807 -0.09684663643765332 -15.26603286882992 4.532528678519042 -15.2660336547348 18.12293612293303 -5.740417639581398 18.05022071995145 -5.579453161455872 18.14224321801971 -5.607051071422144 20.0461661021292 -2.185631356216326 20.13818591144634 -2.158032923472155 20.19435282629705 -2.280338623817249 0.02244777560490949 -9.667085073012048 -4.606923132412025 -9.667085343404384 0.02216065455198159 -9.518654281630893 19.27285671234131 -2.003576270739238 -19.29153442382813 -2.119765305519104 0.02160569789400608 -7.995839269942864 -4.607765191921811 -7.995839779454807 0.02144316053642897 -7.888805077286571 4.532531488597545 -12.19198653582923 -0.09684382635923963 -12.19198621207891 -0.09660021898521853 -12.10109946100112 -4.607520677691383 -12.1909112318562 -4.607763879512159 -12.1000356436168 0.02160701030363091 -12.10003499619338 -20.12290056046157 -2.126596506239412 -20.03088058233253 -2.154194590658596 -20.17906587605502 -2.24890066294136 4.532017785128885 -9.666995670709737 -0.09735748611396007 -9.666995400317401 -0.09707036533164624 -9.518564608935924 -18.15759742904709 -5.575369671827158 -18.06557476219196 -5.547772110150985 -18.13829200069284 -5.708734556878697 17.99357612869964 -5.702260793229072 18.04974735518383 -5.579956091177736 18.12245655089196 -5.740922304536536 20.06549735998501 -2.318743424592642 20.04618550119356 -2.18537728325909 20.19437439105596 -2.280082453791246 19.35041664390355 -0.1672801767393221 19.27009759898836 -0.05361967781094949 19.44672188351816 -0.06496179150935104 19.61243033409119 -2.284081900119782 19.69209432601929 -2.218266407648723 4.606925059893758 8.983872029657613 -0.02244584812317223 8.983872353355501 4.606681792005382 9.074743737995473 19.29153442382813 -1.887388408184052 -19.27285671234131 -2.003576270739238 0.02153183676538729 -4.006987150812811 -4.607839118610364 -4.006987623436984 0.02147472689993803 -3.889872771067557 4.532859843554559 -7.995769383157321 -0.09651540948718468 -7.995768873645379 -0.09635287228280043 -7.888734680988943 -4.607675526484326 -7.997752646212891 -4.607838376214422 -7.890711847908215 0.02153257916132211 -7.89071133836483 4.532858531161661 -12.099911581594 4.532615329570105 -12.19078716983378 -0.09651672188005642 -12.09991093417058 14.31034454902532 -6.891321912716821 14.3219313136851 -6.704624404125912 14.39066722400534 -6.77766275692727 -19.23235905354456 -0.03176419670807103 -19.31267478578086 -0.1454239941680635 -19.40898110949886 -0.04310624040735855 -20.03089757299971 -2.153942386636512 -20.05020776466498 -2.287306844929085 -20.17908503223773 -2.248646362017625 -19.61243033409119 -2.284081900119782 -19.69209432601929 -2.218266407648723 0.09735555865652508 8.983748252347926 -4.532019712586315 8.983747928650038 -4.531776444927222 9.074619636988276 -18.06510549529732 -5.548274579009042 -18.00893586832819 -5.670577737512788 -18.13781652703782 -5.709238760892301 -4.761454164981842 -15.36620406725101 -5.124302506446838 -15.36620406725101 -4.761454164981842 -15.25769683390061 4.761454164981842 14.03119791667768 5.124302506446838 14.03119791667768 4.761454164981842 13.92269336851347 5.124302506446838 9.051208503106006 4.761454164981842 8.923895314410608 4.761454164981842 9.051208503106006 19.27005375162924 -0.05399533286574425 19.338784861109 0.01904098857144973 19.44667808279935 -0.06533699708664376 4.606619735267406 9.075917602756913 -0.02250765383615134 8.985038304927638 -0.02275121646351726 9.075917602756913 19.74531054496765 -2.119765305519104 19.34477210044861 -1.788889181613922 -19.29153442382813 -1.887388408184052 0.02139500721034665 -0.08559919136399398 -4.607975889885002 -0.0855991913639942 0.02145203981830667 0.0315140254419601 4.532933771225495 -4.006965017630068 -0.09644154737612184 -4.006964545005895 -0.09638443756449916 -3.889850165260626 0.02139500721034668 -3.887985410722442 -4.607918915518152 -4.00509837419036 -4.607975889885002 -3.887985410722442 4.532933028839068 -7.890641320673163 4.532770179262458 -7.997682118977982 -0.09644228976254241 -7.890640811129774 7.300735343715204 -6.876981630525356 7.208677959532405 -6.957488130201455 7.270102437898879 -6.772688577984919 -14.36005071717713 -6.682371106887645 -14.34846803919266 -6.869067463427804 -14.4287874013639 -6.755409008992634 8.984437848452524 -7.798264015179135 8.940569602336625 -7.697642087810905 9.029006040665307 -7.61466168380332 -4.686544239521028 9.051208503106002 -4.686544239521028 8.923895314410604 -5.049393773078919 9.051208503106002 -19.301046610831 0.04089217765845121 -19.23231472762878 -0.03214369318521712 -19.40893683022086 -0.04348528743434973 -4.686544239521027 14.03119791667768 -4.686544239521027 13.92269336851347 -5.049393773078919 14.03119791667768 -19.74531054496765 -2.119765305519104 0.0976609259876836 9.075793361768964 0.09741736358987754 8.984914063939309 -4.531714388969109 9.075793361768964 4.686544239521027 -15.36620406725101 4.686544239521027 -15.25769683390061 5.049393773078919 -15.36620406725101 -5.124302506446838 -15.25769683390061 5.124302506446838 13.92269336851347 5.124302506446838 8.923895314410608 5.124302506446838 3.967442294660724 4.761454164981842 3.967442294660724 5.124302506446838 4.117387341176849 18.10363545293048 -0.2809333171421746 17.98922406407012 -0.20204778396656 18.16032542044089 -0.1377736016281496 4.606619735267406 4.018951594910801 -0.02275121646351722 4.018951594910799 4.60645699692999 4.125982852127443 4.606508922688092 4.124733668805059 -0.02269943066667871 4.017706157806399 -0.02286199261143391 4.124734178285195 19.76400971412659 -2.003576270739238 19.42444920539856 -1.723072868585587 -19.34477210044861 -1.788889181613922 0.02153152266195754 4.201206879020086 -4.607839432713795 4.201206879020086 0.02169430386568268 4.30823977692898 4.533070541424439 -0.08562176681403434 -0.09630471889683018 -0.08562176681403434 -0.09636175145103647 0.03149144999193612 0.02153152266195751 0.02957013340985924 -4.607896483955441 -0.08754120186105191 -4.607839432713794 0.02957013340985924 4.533070541424439 -3.887962858276884 4.533013567111289 -4.005075821744817 -0.09630471889683018 -3.887962858276884 1.476583962944563 -3.961951133663058 1.378933579597579 -3.998762427310236 1.470855877273663 -3.844924883029417 -7.270340430197083 -6.946251903039824 -7.362393703741029 -6.865745530157424 -7.331759894273065 -6.761452641873312 2.874643384624575 -6.344012562412311 2.854840250265239 -6.200825300641612 2.951799341928625 -6.162900036422522 -8.997852944453967 -7.682148384603612 -9.041722306212098 -7.782770010969236 -9.086285293693118 -7.599168228825396 -4.761454164981842 -9.669378941447398 -5.124302506446838 -9.669378941447398 -4.761454164981842 -9.563003705794053 -4.686544239521027 3.967442294660724 -5.049393773078919 3.967442294660724 -5.049393773078919 4.117387341176849 -4.686544239521027 8.923895314410608 -5.049393773078919 8.923895314410608 -5.049393773078919 9.051208503106006 -17.94074922257743 -0.190250879566312 -18.05515731857771 -0.2691362702345684 -18.11184834142092 -0.1259768133397359 -5.049393773078919 13.92269336851347 -19.76400971412659 -2.003576270739238 0.09760914084168518 4.017635746807368 -4.531603575892205 4.124663257806173 0.09777170263322435 4.124663767286307 0.09766092598768356 4.018881109642489 -4.531714388969109 4.018881109642489 -4.531551650785075 4.125912366859277 5.049393773078919 -15.25769683390061 -20.15883989174207 -1.446384394925267 -20.01064744910403 -1.541089938928572 -20.13952805939735 -1.579751062190041 -18.12105498306678 2.003518467207123 -18.04834926118542 1.842551710623711 -18.17722596699716 1.881213352405044 -14.34379104229491 2.928736016400822 -14.35537490132199 2.742038852078833 -14.4516825406131 2.844355839528841 -11.60635441085664 1.474098297344885 -11.68030642612911 1.293021679652002 -11.73699900134571 1.436180756113591 4.761454164981842 4.117387341176849 17.98957291257794 -0.2027690231414206 18.03003106852359 -0.1005792818805556 18.16067509038074 -0.1384961940455248 4.606508164012554 -0.1524014195865267 -0.02286275128697907 -0.1524009469552575 4.606451053037286 -0.03528480902880758 4.606435462909619 -0.034902986115325 -0.0228783266660047 -0.1520194848137105 -0.02293546331610938 -0.034902986115325 19.74531054496765 -1.887388408184052 19.51842546463013 -1.699962810675303 -19.42444920539856 -1.723072868585587 0.02160463890589585 9.199395637636078 -4.607766250909928 9.19939563763608 0.02184789283266063 9.290282643961225 4.532934085324899 4.201136376263897 -0.09644123327671748 4.201136376263896 -0.09660401432701996 4.308169274172933 0.0216046389058958 4.310373838309889 -4.607928850863339 4.20333433420841 -4.607766250909929 4.310373838309889 4.532934085324899 0.02954755022149495 4.532991136512775 -0.08756378504943213 -0.09644123327671744 0.02954755022149517 2.080673221082074 -0.1580516116257338 1.980713114162307 -0.1479506138575482 2.086947185949026 -0.04104431478021404 -1.450480747367893 -3.996593703793443 -1.548127087929501 -3.959782412325525 -1.542398773543374 -3.842756168619942 1.478128977262679 -3.84748367689357 1.386215277362713 -4.001324400253703 1.378169148335766 -3.837380976808661 -2.924515073702726 -6.194855306154077 -2.944318956763954 -6.338042503843924 -3.021470103146817 -6.156930058907749 -4.761454164981842 -6.551386285397905 -5.124302506446838 -6.551386285397905 -4.761454164981842 -6.407354064951116 5.049393773078919 -9.669378941447398 4.686544239521028 -9.669378941447398 4.686544239521028 -9.563003705794051 -5.124302506446838 -9.563003705794053 11.72913812660912 1.281032594197831 11.65518784529848 1.462109071704529 11.78583115406787 1.424191559828298 -4.686544239521027 4.117387341176849 14.3933440379706 2.719888654750523 14.38176193015808 2.906585325303857 14.48965214181703 2.82220537159695 -17.98155911242234 -0.08878543203838715 -17.94110020337961 -0.190974988782554 -18.11220014362858 -0.126702275739503 18.0636678162378 1.810931733780058 18.13637432502825 1.971897619722236 18.19254462341883 1.849593166447284 -19.74531054496765 -1.887388408184052 0.09784517307933045 -0.03492560211400781 0.09778803648307755 -0.1520421008124095 -4.53153011637229 -0.03492560211400803 0.09777246129926198 -0.1524235527697383 -4.531602817226173 -0.1524240254010073 -4.531545706304733 -0.03530741484327198 20.1242406419332 -1.61126473379213 19.99535993028215 -1.572603819630105 20.14355175979657 -1.477898787843594 -20.06678079509166 -1.418435288422712 -20.01061269560492 -1.540741450105125 -20.15880298935821 -1.44603382526822 -18.0295444399364 1.975363959042047 -18.04885248059514 1.84199695203714 -18.12156445860097 2.002961959819854 -14.2732883668018 2.856238288911769 -14.35361304282905 2.742579638298572 -14.34201654549573 2.929276317082448 -11.60456866809315 1.473918969118328 -11.564113636159 1.371728462482041 -11.67852720339388 1.292843999359143 -10.47625515972126 -0.7799536673345897 -10.46288497898667 -0.896597041693023 -10.59409434988142 -0.9332878993617697 5.124302506446838 -0.1810681453366635 4.761454164981842 -0.1810681453366635 5.124302506446838 -0.01700151890789119 17.50400202822861 -1.423449115347078 17.37279351621073 -1.386758260035087 17.52273216033082 -1.260045454950131 17.37279144816011 -1.386756484877176 17.38616170783077 -1.270113116118066 17.52273008947194 -1.260043677735799 4.606435462909618 -3.94017376343256 -0.02293546331610935 -3.94017376343256 4.606492588632147 -3.823058781002435 4.606507842214324 -3.823420031241192 -0.02292019528997866 -3.940535367002381 -0.02286307308520944 -3.823420031241192 19.69209432601929 -1.788889181613922 19.61243033409119 -1.723072868585587 -19.51842546463013 -1.699962810675303 0.02193292519788623 14.07047703510907 -4.607438026533037 14.07047703510907 0.02222024578093109 14.14793264486438 4.532860902529158 9.199271564634241 -0.09651435051259227 9.199271564634238 -0.09675760421008815 9.290158570959765 0.02193292519788632 9.288725747574326 -4.607681567292359 9.197849735409813 -4.607438026533037 9.288725747574327 4.532860902529158 4.310303418401068 4.533023502329318 4.203263914299446 -0.0965143505125923 4.310303418401068 5.690845502269881 3.381911180032327 5.596674513402085 3.442216463478121 5.717702102938485 3.486845033176731 -2.051536016508506 -0.1503033752320826 -2.151492172878935 -0.1604043722975538 -2.157766383052216 -0.0433970835920991 2.081993036838842 -0.03794822347858934 1.975763000973912 -0.1448570043827798 1.984559679438029 0.01905964840697018 -1.457754229520732 -3.999150084251062 -1.549663657648365 -3.845309370045329 -1.449707779298342 -3.835206670561589 -4.761454164981842 -4.040416392011158 -5.124302506446838 -4.040416392011158 -4.761454164981842 -3.876350825242172 5.049393773078919 -6.551386285397908 4.686544239521027 -6.551386285397908 4.686544239521027 -6.407354064951118 -5.124302506446838 -6.407354064951116 5.049393773078919 -9.563003705794051 -18.07388425457883 -4.474188075370972 -18.12550441956021 -4.572507413312393 -18.21523613450942 -4.463290371653764 10.51541013065442 -0.9003298494342281 10.52878043479375 -0.7836864838295137 10.64661821288263 -0.9370207043494412 11.61295282063542 1.35974183626907 11.65340817536358 1.461932263824594 11.72736497661217 1.280857434191407 -4.686544239521027 -0.181068145336663 -5.049393773078919 -0.181068145336663 -5.049393773078919 -0.01700151890789076 14.39159014935171 2.720431276678623 14.31126689317316 2.834089626742285 14.37999540352754 2.907127461777244 -17.32066854671092 -1.383087478227263 -17.45187405187674 -1.419778327114212 -17.47060458735927 -1.256374695331356 18.06416692096803 1.810377423968519 18.04485959465632 1.943743709634421 18.13687968566132 1.971341561143569 -19.69209432601929 -1.788889181613922 0.09777278309345966 -3.823397420735158 0.09782990524439074 -3.940512756496364 -4.531602495431977 -3.823397420735158 0.09784517307933047 -3.940151151465963 -4.53153011637229 -3.940151151465963 -4.531587242040977 -3.823036169035822 -17.33403701575904 -1.266442347839805 -17.32066646814052 -1.383085696173078 -17.47060250598066 -1.256372911220834 19.99532756972705 -1.572257179571142 20.05149498381842 -1.449951679461248 20.14351725043284 -1.477550067022098 -4.578089119545712 -15.45302547447942 -6.042443522549657 -15.45302547447942 -4.581164235491041 -15.37558999088647 4.565359965689587 14.15486206179388 6.044720666041248 14.15486284728921 4.568480903247499 14.07742950375024 6.047416248517195 9.152503540541604 4.55801373756888 9.061655984129738 4.555339560991968 9.152503540541604 4.549805518930956 4.062372985938772 4.548003588686205 4.169394932529762 6.048578524753239 4.16939544198341 6.049316921622414 -0.02143661639989597 4.546392706834692 -0.1385521722146575 4.545758292856145 -0.02143661639989597 -10.47625096160975 -0.7799554999894198 -10.59409015588215 -0.9332897300608669 -10.61282016940071 -0.7698860612522147 4.761454164981842 -0.01700151890789119 17.50589387807564 -2.286747502342873 17.63362708011275 -2.088157985538652 17.6424661795315 -2.276711018057561 18.33222329356584 -2.53750280138788 18.31763141763591 -2.420951718121649 18.45869955379253 -2.338416052996688 4.606507842214324 -7.813859075424752 -0.02286307308520943 -7.813859075424753 4.606670443487124 -7.706829759908492 4.606618118893985 -7.705705445333536 -0.02291553909568638 -7.812730975322972 -0.02275283283692284 -7.705704681111107 -19.61243033409119 -1.723072868585587 -0.02212474982177109 -15.16260858599943 4.607246132715756 -15.16260858599943 -0.02241169795092981 -15.24008567857359 -0.09684263549329919 14.07030507281433 -0.09712995580554193 14.14776068257027 4.532532679463495 14.07030507281434 -4.607533062650705 14.07088580756522 -4.607246132715755 14.14835842472385 0.02212474982177103 14.14835842472385 4.532532679463494 9.288601513246206 4.532776219993277 9.197725501081312 -0.0968426354932992 9.288601513246205 17.33542141828752 0.1877632006411207 17.26381917608259 0.4331881399150761 17.41208157884864 0.2557460918948759 -5.661727513750998 3.431888070435921 -5.755894392243127 3.371582867353965 -5.782751875781377 3.476516580661745 8.15684694074397 -0.8273037683524903 8.034301206339869 -0.8692903517736603 8.052832203414228 -0.589163423036165 -2.046592066139235 -0.147211950632897 -2.152818396643546 -0.04030317718012921 -2.055389088607163 0.01670469073204583 -4.761454164981842 -0.07917014712386801 -5.124302506446838 -0.07917014712386801 -4.761454164981842 0.08489251226380006 5.049393773078919 -4.040416392011159 4.686544239521027 -4.040416392011159 4.686544239521027 -3.876350825242173 -5.124302506446838 -3.876350825242172 5.049393773078919 -6.407354064951118 5.049393773078919 -6.551386285397907 -14.05781573420595 -5.024120918143106 -14.15256219722485 -4.945567930657166 -14.03167809162006 -4.881563909785387 18.07737601006223 -4.58810494037262 18.02575544117672 -4.489785733663947 18.16710612556526 -4.478888044492561 -18.32662568061224 -5.158126311317372 -18.2474307438047 -5.246695942853649 -18.38865139039027 -5.234791804229245 -4.47089225317745 -0.02168761765281581 -4.471526665899239 -0.1388031734717903 -5.974453860459585 -0.02168761765281603 10.64661403173349 -0.9370225280908811 10.52877624953241 -0.7836883095266434 10.66534421812733 -0.7736188715451156 -4.473138411666099 4.168614706137857 -4.47494033547283 4.061592759479787 -5.97371870907645 4.168615215591504 -4.686544239521027 -0.01700151890789119 -4.686544239521027 -0.1810681453366635 -5.049393773078919 -0.01700151890789119 -4.480472602474462 9.151139574630145 -4.48314677371307 9.060292018121034 -5.972552268551757 9.151139574630147 -4.490490482628745 14.15299466769471 -4.493611421443417 14.07556210968241 -5.969850587262583 14.15299545319003 0.09782524844617796 -7.812660500675886 -4.531712772616011 -7.705634970686305 0.09766254234076646 -7.705634206463876 0.09777278309345971 -7.81378864823879 -4.531602495431977 -7.813788648238789 -4.531765096551524 -7.706759332722385 -18.27099170851211 -2.424541269168228 -18.28558383583374 -2.541092332957057 -18.41205705831794 -2.342005617836192 -17.58211691113504 -2.08964165825829 -17.45438678647546 -2.288231169383394 -17.59095619641875 -2.278194685385098 4.503218956355878 -15.4511854490245 4.506294071050191 -15.3737499654008 5.967573955087233 -15.4511854490245 -6.052265975289288 -15.44533751292056 -6.040289554249846 -15.36844913382241 -4.590939939674025 -15.36844991378953 6.054374605847429 14.13759094877424 6.042443522549659 14.06069895433972 4.578089119545712 14.06069895433972 6.044729634492048 9.015892673164469 4.565368934140106 9.015892350621446 6.054800970515214 9.10643985359448 6.047416248517195 4.018835421644788 4.555339560991967 4.018835421644788 6.054127345178423 4.125729724018402 6.048580889190117 -0.1514151321723878 4.548005953123063 -0.1514156047510027 6.050931677955227 -0.03431204161438601 6.049316921622414 -3.941649049601756 4.545758292856146 -3.941649049601756 6.046967637963183 -3.824547103426327 -10.74851442354966 -3.063015151465335 -10.76209685333605 -3.17964171456935 -10.8986662170669 -3.169573584757068 5.124302506446838 -2.786634471021795 4.761454164981842 -2.786634471021795 5.124302506446838 -2.597953268488039 4.761454164981842 -2.786634471021796 4.761454164981842 -2.597953268488039 18.28037174991929 -2.387247902897864 18.39200537588947 -2.048791391975406 18.42147391942475 -2.304748247562976 20.10342244761315 -2.175557580146113 20.05365622757925 -2.075945265886892 20.19968243591717 -1.834191666765926 4.606616114702037 -11.97692069766911 -0.02275483702880937 -11.97691972658449 4.606859648237528 -11.88604805585828 4.606923857897373 -11.88698878740255 -0.02269036658132474 -11.9778686798956 -0.02244705011956558 -11.88698878740255 0.09703446105603143 -15.16243689422908 0.09732140891473909 -15.23991398680386 -4.532340784707429 -15.16243689422908 4.607210949986045 -15.16254006450116 4.606923857897373 -15.24001089111221 -0.02244705011956553 -15.24001089111221 4.532627714371946 14.07071411677103 -0.09703446105603136 14.14818673393028 4.532340784707429 14.14818673393028 19.07599919846098 -0.7697091863383988 19.01577470375694 -0.4089749355334092 19.16980963613103 -0.7461299621495905 -17.28428507404853 0.4188681793839473 -17.35588528201159 0.173443868592124 -17.43254569204425 0.2414265857558596 15.30183050588967 -0.1829166560228486 15.36758095112323 0.0005554223524328328 15.4576363544048 -0.3563128009267357 -8.093886708506606 -0.8717388436542277 -8.216429222122992 -0.8297522633635218 -8.112418215758909 -0.5916119358026275 -4.761454164981842 -0.5396528051985078 -5.124302506446838 -0.5396528051985078 -4.761454164981842 -0.2591468229856518 5.049393773078919 -0.07917014712386801 4.686544239521027 -0.07917014712386801 4.686544239521027 0.08489251226380006 -4.761454164981842 0.08489251226379962 -5.124302506446838 -0.07917014712386845 -5.124302506446838 0.08489251226379962 5.049393773078919 -3.876350825242173 -10.78873572164456 -3.716033258499089 -10.88638676771986 -3.679221155967225 -10.7806966594359 -3.552089620514495 14.08771776632497 -4.952904215484902 13.99297305853906 -5.031457179754451 13.96683504462481 -4.88890021352956 -12.81873064085446 -6.323475727819551 -12.9375202801542 -6.389862228958428 -12.91489197283081 -6.28431188256751 18.20050519762579 -5.270138353211265 18.27969847953496 -5.181568988507997 18.34172465062959 -5.258234250450363 -4.590931001276149 -12.26650784736685 -6.040280615852252 -12.26650752373431 -4.593497191052654 -12.17565448283994 -4.470892253177451 -3.941391387470278 -5.974453860459587 -3.941391387470278 -5.972106958364483 -3.824289449247038 -4.473140775797431 -0.1516729526775121 -5.9737210732078 -0.151672480098929 -5.976069481400151 -0.03456939748639857 10.81373574963085 -3.175913325044117 10.80015319868049 -3.059286770672568 10.95030387416685 -3.165845195985691 -4.480472602474462 4.018075057372399 -5.972552268551757 4.018075057372399 -5.979265751594065 4.12496938406762 -4.686544239521027 -2.786634471021795 -5.049393773078919 -2.786634471021795 -5.049393773078919 -2.597953268488039 -4.490499449948416 9.014558288891497 -5.969859554582534 9.014558611434746 -5.979934463855106 9.105105856089267 -4.503218956355878 14.05885938239087 -5.967573955087233 14.05885938239087 -5.979503848171558 14.13575134744592 0.09735676063776333 -11.88686467278167 0.09760007687019463 -11.9777445652751 -4.532018510605086 -11.88686467278167 0.09766454650745335 -11.97679549132519 -4.531710768449262 -11.9767964624098 -4.531954301755221 -11.88592382059859 -20.02712261024925 -2.084116209692205 -20.07688910636322 -2.183728438594344 -20.17314666844703 -1.842362817728177 -18.34511534970802 -2.052109752869381 -18.23348502442543 -2.390566215450448 -18.3745844063478 -2.3080665718989 -4.686544239521027 -2.597953268488039 4.516068559031519 -15.36663923555123 5.965418769344401 -15.36663845558411 5.977395191618864 -15.44352683456322 2.185710194233277 -16.01687443923805 1.05048369056491 -16.01687443923805 2.159981592288677 -15.94210187928404 -2.042807883044052 14.68327279064717 -0.8655783579390752 14.68327279064717 -2.017823314231195 14.60834501656992 -1.929195131025891 9.366593011213197 -0.7162983972724596 9.366593011213197 -1.90850667468732 9.277168800803024 -0.6197144075065175 4.230907494019563 -1.842862539746875 4.12441831375727 -1.85645403696691 4.230907494019562 -0.5869599132875225 -0.005214870768700249 -1.827330744080122 -0.1222727230226611 -1.83208928020407 -0.005214870768700249 -0.6197144075065186 -3.854197644495329 -1.86123801091954 -3.971253691573725 -1.856454036966911 -3.854197644495329 6.048581882468827 -3.836912484706731 4.547374048342753 -3.954026417459464 4.548006946401772 -3.836912484706731 -11.7137872856193 -2.243317102395549 -11.57251851853729 -2.32564098050423 -11.72306161508688 -2.431857197353134 5.124302506446838 -3.602498390950017 4.761454164981843 -3.602498390950017 5.124302506446838 -3.345493890250985 4.761454164981842 -3.602498390950017 4.761454164981842 -3.345493890250985 20.08457897251528 -2.055865244857796 20.13921180576704 -1.64537909675398 20.23002554166368 -1.813895503225645 20.19759135237859 -1.625547247119456 20.11925692071081 -1.558760504617163 20.23791939035629 -1.214038421584816 -4.532305602423171 -15.16236827270183 0.09735676063776333 -15.23983909931349 -4.532018510605086 -15.23983909931349 19.73845055727641 -1.17193752314016 19.79020798968127 -0.76894620653525 19.83229447363586 -1.195428257387685 -19.02053244237188 -0.4206978926875721 -19.08075641956122 -0.7814315195013426 -19.17456687379724 -0.7578523360994263 19.04361459444834 -0.7224069564248532 18.88785007816897 -0.3857440386864083 19.08194556589112 -0.3184879843938077 -15.40033074449994 -0.006736022598707869 -15.33457975263204 -0.1902079797442773 -15.49038327259916 -0.3636040100761548 -4.761454164981842 3.090177455198686 -5.124302506446838 3.090177455198686 -4.761454164981842 3.280801018765249 5.049393773078919 -0.5396528051985071 4.686544239521027 -0.5396528051985071 4.686544239521027 -0.2591468229856512 -4.761454164981842 -0.2591468229856516 -5.124302506446838 -0.5396528051985076 -5.124302506446838 -0.2591468229856516 5.049393773078919 0.08489251226380006 4.686544239521026 0.08489251226380006 -11.29117332810071 -0.454513021491851 -11.39113452772774 -0.4646142400789053 -11.29997668616337 -0.2905965906201609 10.81518807001345 -3.681376184324148 10.71753875656982 -3.718188285918735 10.70949955680639 -3.554244652108326 -10.89147854209262 -3.676377657350613 -10.88574355741903 -3.559351615817855 -10.78578256268175 -3.54924914255366 12.86981854023901 -6.398820626364874 12.75103029931516 -6.332434154458914 12.84718988258773 -6.293270326452451 -4.601412393244298 -8.039100679945284 -6.038042127694073 -8.039100170441028 -4.603106545398308 -7.9320681020255 5.96540983205286 -12.2651987737772 4.516059621739696 -12.26519909740974 4.518625810461399 -12.17434573286439 -4.601416592951921 -12.13911900106356 -6.048232252107009 -12.22965381964346 -6.038046327401609 -12.13911835606558 1.924939184056606 -3.851183110382057 1.929725371978757 -3.968239063933166 0.6882050009732821 -3.851183110382057 -4.473141768941632 -3.836662058552371 -4.472508873143861 -3.953775991312667 -5.973722066352004 -3.836662058552371 1.900598898150354 -0.008223471781617087 1.895838164574524 -0.1252812312231929 0.6554722561226023 -0.008223471781616651 11.62146684899884 -2.32414813217465 11.76273441895258 -2.241824255053962 11.77200882275109 -2.430364347748823 1.924939184056609 4.221911285269113 1.911349764665274 4.115421823402338 0.6882050009732854 4.221911285269113 1.997501705891769 9.350362567447537 1.976816557807729 9.260937569313592 0.7846033412747 9.350362567447537 2.110902209731034 14.65994240190167 2.085916671400111 14.58501497532099 0.9336694325431627 14.65994240190167 -20.10569296408427 -1.568586693562604 -20.18402750885082 -1.63537335397261 -20.2243540948804 -1.223865034252437 -20.11354165442537 -1.653906723464462 -20.05891140086225 -2.064392488687762 -20.20435586164081 -1.822422972752629 -4.686544239521027 -3.345493890250986 -4.686544239521027 -3.602498390950018 -5.049393773078919 -3.345493890250986 -4.686544239521027 -3.602498390950018 -5.049393773078919 -3.602498390950018 -5.049393773078919 -3.345493890250986 -2.25358504465243 -15.99313969485531 -2.227856382409962 -15.91836714774108 -1.118360160867006 -15.99313969485531 1.231427929331768 -16.0832287152018 1.246773391632617 -16.00107993467809 2.340082606993026 -16.00107993467809 -1.034247302142608 14.87185567604342 -1.050483690564911 14.78982451832558 -2.185710194233279 14.78982451832558 -0.8511274640230193 10.0002774869243 -0.8655783579390763 9.906600297514103 -2.042807883044055 9.906600297514103 -0.7162983972724579 4.665798678485239 -1.929195131025889 4.665798678485239 -0.7062726610036019 4.773879846168242 -0.6197144075065142 0.06833696570131506 -1.856454036966908 0.06833696570131506 -0.616109874675348 0.1855695620024668 -0.5869599132875247 -4.15662371771603 -1.832089280204071 -4.15662371771603 -0.5905923369997634 -4.039392815958605 -0.6197144075065186 -8.422888053040696 -1.856454036966911 -8.422888053040696 -0.6299763984947571 -8.31482231769256 6.048581882468826 -7.819029137943104 4.548006946401772 -7.819029137943104 6.041885497235486 -7.712135992901121 -13.82931939188191 -4.351686699235466 -13.87428264295881 -4.452702424119747 -14.01357613905352 -4.36832128794176 -14.25778268796201 -2.245020409864408 -14.10584671119727 -2.484509922961849 -14.29015892645264 -2.500759784520114 5.124302506446838 -7.881537941745776 4.761454164981842 -7.881537941745776 5.124302506446838 -7.6985038665113 5.124302506446839 -7.6985038665113 4.761454164981843 -7.881537941745776 4.761454164981843 -7.6985038665113 20.03028076532722 -1.381016395343589 19.99503835597511 -0.9541505383688793 20.14462771188116 -1.03539290335758 -19.78593216233073 -0.7795111928942626 -19.73417519782671 -1.182501940266683 -19.8280191276076 -1.205992641333124 -18.89416258523788 -0.3970288842616265 -19.04992644933156 -0.7336912628382923 -19.08825813327001 -0.3297729376788208 -4.761454164981843 13.44225764041227 -5.124302506446838 13.44225764041227 -4.761454164981843 13.60910229782351 5.049393773078919 3.090177455198686 4.686544239521027 3.090177455198686 4.686544239521027 3.280801018765249 -5.124302506446838 3.280801018765249 5.049393773078919 -0.2591468229856516 5.049393773078919 -0.5396528051985076 4.686544239521027 -0.2591468229856516 -10.82821208961962 -0.7633832521201768 -10.92584966841327 -0.8201757145988158 -10.83756654817415 -0.4829738130488148 11.32068449710185 -0.4622790885886125 11.22072499057226 -0.4521778703036782 11.2295284961436 -0.2882614443346122 -11.38443577435428 -0.4663621754053626 -11.39070290132402 -0.3493546517843862 -11.29326723914596 -0.292347992818163 10.81455182094506 -3.561505136271076 10.82028690372956 -3.678531174828386 10.71459251931607 -3.55140266326374 -4.609014189964251 -4.018059215745196 -6.037142939433112 -4.018058743132294 -4.609602044500985 -3.900947156736948 5.963173779386009 -8.038366688508372 4.526541066212165 -8.038367198012628 4.528235214853508 -7.931334620058437 -4.609016585596063 -7.892475152040531 -6.043968290687342 -7.999373371679192 -6.037145335064903 -7.892474643173437 5.973361525504735 -12.22836178285181 4.526545265390071 -12.13782700560199 5.963177978563827 -12.1378263606043 2.34008260699303 -12.48192391564776 1.246773391632622 -12.48192391564776 2.317592736484473 -12.39277309291505 1.924939184056607 -8.412837673600276 0.6882050009732832 -8.412837673600276 0.6984619795776459 -8.304772637004039 1.900598898150355 -4.153472972138632 0.6554722561226023 -4.153472972138633 0.6591052055856272 -4.036242044737321 -4.473141768941632 -7.8182614765414 -5.973722066352004 -7.8182614765414 -5.967023291911748 -7.711368307083891 1.924939184056606 0.06517660569296027 0.6882050009732821 0.06517660569295983 0.6845999623521182 0.1824092280948905 13.91450185915773 -4.441606057501248 13.86953836477013 -4.34059039963825 14.05379419500759 -4.357224977307931 1.997501705891766 4.655622716512228 0.7846033412746978 4.655622716512228 0.7745824634076259 4.763703169927634 2.110902209731027 9.889210826905524 0.9336694325431572 9.88921082690552 0.9192168054866379 9.982888422541976 2.253585044652428 14.76591122104986 1.118360160867005 14.76591122104986 1.102120059458066 14.84794372060561 -19.98558194520679 -0.9649112159111604 -20.02082543129274 -1.391776445368014 -20.13517140592633 -1.046153461468818 -4.686544239521026 -7.6985038665113 -4.686544239521026 -7.881537941745776 -5.049393773078918 -7.6985038665113 -4.686544239521027 -7.881537941745776 -5.049393773078919 -7.881537941745776 -5.049393773078919 -7.6985038665113 14.14487273506835 -2.48144691508517 14.29680762871678 -2.241957414090741 14.32918403217292 -2.497696775822221 -2.40765094405234 -15.97667295900939 -1.314340653278554 -15.97667295900938 -1.298997832366708 -16.05882076335761 9.628086702292622 -14.28270449167188 9.308205458503469 -14.2937589850914 9.600338603232551 -14.20259415521653 -9.15638467590645 13.23755857289141 -8.780384903449992 13.22736880096883 -9.131317806245944 13.15691490507223 -10.05972714560176 8.367771173881465 -9.63248910550479 8.364731285713532 -10.03446332221797 8.275523334134968 -11.05057981166086 3.367901329390489 -11.47024375638755 3.261958444741649 -11.49145484452039 3.369034668676927 -11.10781426203081 -0.2846352700330709 -11.55327831969917 -0.4020426143794527 -11.5607912865993 -0.2849247609257422 -11.50336225993952 -3.578563639963122 -11.06248694205577 -3.576935725768492 -11.51082094881473 -3.695682477442028 -10.10964567584324 -7.327846505399825 -9.682401778561495 -7.324856078319797 -10.12667529700769 -7.435382094268694 -0.7162983972724568 -7.823109787084589 -1.943001489737283 -7.929580125903267 -1.929195131025889 -7.823109787084589 4.553557532492785 -7.857251946035247 4.555344612540982 -7.75023178734587 6.047421300066162 -7.750231023161794 -17.9198669236586 -3.250838765086589 -17.99747120723871 -3.318150945145977 -18.13596643191458 -3.073669950827252 -17.25217988680722 -2.5263192365622 -17.12527697766129 -2.869220361091524 -17.34439773755976 -2.694363093502924 5.124302506446838 -13.48634422972656 5.124302506446838 -13.62934139326121 4.761454164981841 -13.62934139326121 4.761454164981843 -13.48634422972656 5.124302506446839 -13.48634422972656 4.761454164981843 -13.62934139326121 4.686544239521028 13.44225764041227 4.686544239521028 13.60910229782351 5.049393773078919 13.44225764041227 -5.124302506446838 13.60910229782351 5.049393773078919 3.28080101876525 5.049393773078919 3.090177455198687 4.686544239521027 3.28080101876525 -18.90994524114691 -0.6686511851179914 -19.00192999132849 -0.9098360090245988 -18.97082490968914 -0.4841418391330651 10.85470589029763 -0.818710814368558 10.75707004431758 -0.7619183525581621 10.76642466268993 -0.4815089167862112 -19.4115973855404 -0.8045165649583449 -19.45148232814367 -1.147363289893205 -19.4983977167788 -1.046887611486468 11.32024261235959 -0.3470254471665981 11.31397538034749 -0.4640329673057708 11.22280868561172 -0.290018789896727 -4.611197369125708 -0.07464421162137877 -6.036346680419965 -0.07464421162137877 -4.610611047130893 0.04246622395491267 5.962276415639592 -4.017826119827646 4.534142900166311 -4.017826592440547 4.534730752741241 -3.900714533426205 -4.611197369125708 -3.889258412346493 -6.038739791771512 -4.006358473932219 -6.036346680419965 -3.889258412346493 5.969099984893216 -7.998646739658097 4.534145295495415 -7.891748537457251 5.962278810968677 -7.891748028590238 2.480903371497711 -8.058358052523531 1.423050836975676 -8.058358052523531 2.465468505781433 -7.952015602886137 -2.407650944052344 -12.46470553348781 -2.38515895868009 -12.37555525100804 -1.314340653278559 -12.46470553348781 1.410735011654689 -13.00671822027868 1.423050836975677 -12.91285457345404 2.480903371497713 -12.91285457345404 9.729244274646593 -7.30594838406494 10.15648411028464 -7.308938772449786 10.17351774453513 -7.416472969842089 1.997501705891766 -7.814032465549865 2.011305859053121 -7.92050309886547 0.7846033412746967 -7.814032465549865 11.10444042445242 -3.570828956788975 11.54531507591204 -3.572456871640502 11.55277347298887 -3.689575756379318 -4.480477653373026 -7.749458032316293 -4.478690576892274 -7.856478191042537 -5.972557319450274 -7.749457268132219 11.59508770646414 -0.4081566416561464 11.14962472704136 -0.2907492515030213 11.60260042313606 -0.2910387425086379 11.5122384283163 3.242405769474073 11.09257827984395 3.348347282653135 11.53345264634378 3.349480607268078 10.10672084692224 8.335535333180506 10.08145716235882 8.243286889359673 9.679486869191189 8.332495425106218 9.206022378799732 13.19523610707479 9.180957784235043 13.11459017406516 8.830024516351578 13.18504604893292 -4.686544239521027 -13.48634422972656 -4.686544239521027 -13.62934139326121 -5.049393773078919 -13.48634422972656 -5.049393773078917 -13.48634422972655 -4.686544239521025 -13.62934139326121 -5.049393773078917 -13.62934139326121 17.14783892261312 -2.861549196694088 17.27474097378587 -2.518648181113935 17.36695898175682 -2.686691984662478 18.01437777808899 -3.306078968835501 17.93677342017773 -3.238766841808939 18.15287233016291 -3.061598167134486 -9.676220626684239 -14.23931561735597 -9.64846988615342 -14.15920716125022 -9.356341775336516 -14.25036985130444 8.314302669057607 -14.54647509631868 8.351208741690044 -14.47606596013724 8.612018580897297 -14.46727170186682 -7.874674711645378 13.0703121279486 -7.909382922154723 13.00355435605076 -8.229363370231875 13.01266036622991 -9.200888312076378 7.716063763747422 -9.228446260163334 7.62810248980347 -9.604637102843647 7.63196129370947 -9.731521732947766 0.3128026427261059 -9.726711675644653 0.2117124118050615 -10.15395803252766 0.2139131077134052 -11.06188080428233 -0.3900423914164883 -11.06651790623856 -0.5083858982375872 -11.50739327296986 -0.507336005217475 -11.10900066089257 -3.468773843369492 -11.10440731392674 -3.587115263248207 -11.55738433878191 -3.587404476404805 -11.05269642612473 -4.013668789078606 -11.05913092582625 -4.114699164534456 -11.50000618465159 -4.116336946823259 -9.644629174803402 -10.5877045246411 -9.61875971287736 -10.67598751597022 -10.04599557022101 -10.67961988343205 -0.7313022409280223 -12.71903327725996 -0.7162983972724635 -12.81265723100193 -1.929195131025896 -12.81265723100193 6.047427482856627 -12.02048803427564 4.555350795331638 -12.02048900192059 6.037385524928208 -11.9299382382272 6.044733395853727 -11.96373588251265 4.562728162852848 -12.05458491008635 4.565372695501758 -11.96373588251265 -19.13281915548478 -2.677617379175354 -19.22662532336866 -2.70120123346108 -19.33567460291308 -2.354519640129916 -18.80792778166735 -2.290597024990281 -18.7506233124425 -2.69312374254919 -18.95766314796141 -2.371672764704971 5.049393773078919 13.44225764041227 4.686544239521028 13.60910229782351 5.049393773078919 13.60910229782351 -19.72465195860826 -1.872689394452899 -19.78692607458605 -2.233208412698209 -19.91871488476029 -1.805375217318498 18.96065782700875 -0.9014312385492096 18.86867452091106 -0.6602465080778366 18.92955453951317 -0.4757372335720102 -19.98049274172801 -1.531577379917239 -19.97388192775903 -1.95794251587571 -20.05204745036232 -1.89102883843251 19.41606164962303 -1.137152569665585 19.37617823093496 -0.7943060405164421 19.46297723682424 -1.036676948636391 -4.609013165908317 4.244034893684437 -6.03714191537718 4.244034893684436 -4.607335193697341 4.35106633479906 5.961475705594768 -0.07487620678720416 4.536324607044228 -0.07487620678720394 4.53573828578471 0.04223422879136592 -4.609013165908317 0.03046803522357362 -6.034750327903938 -0.08663088252388675 -6.03714191537718 0.03046803522357362 5.961475705594768 -3.889037147989022 5.963871796437454 -4.006137218737282 4.53632460704423 -3.889037147989022 2.580668397781054 -4.009650183868443 1.546464556103274 -4.009650183868443 2.575145488151038 -3.892615606872484 -1.490413644686014 -8.048534463857896 -2.548261358666484 -8.048534463857896 -2.532824772750701 -7.942192257001909 2.580668397781056 -8.498388385117684 1.53855837293821 -8.606580699121144 1.546464556103276 -8.498388385117684 -2.548261358666482 -12.89452278500166 -1.490413644686011 -12.89452278500166 -1.478094259329754 -12.98838747392245 8.127325805352195 -12.04608252682808 7.866329681399593 -12.05022794831653 8.110494136636552 -11.9526537920919 9.69167276843638 -10.55736549001929 10.09303711034639 -10.64928026616558 9.665805314844198 -10.64564792172906 11.10109676368728 -4.106572517366085 11.09466221611444 -4.005542143797015 11.54197135609249 -4.1082102996243 0.7996088669677953 -12.70189029515711 1.997501705891756 -12.79551465409046 0.7846033412746861 -12.79551465409046 11.14623008516814 -3.581298962871853 11.15082302239242 -3.462957587042447 11.59920578154974 -3.5815881759208 -4.480483835384518 -12.01913765601633 -5.972563501461573 -12.01913668837068 -5.962517963969264 -11.92858682781568 11.10845729119374 -0.5141889211814835 11.10382056253397 -0.3958454591988279 11.54933199150644 -0.5131390285591592 9.773404801169409 0.2038562044241398 9.778215120696375 0.3049464276235968 10.20064709599586 0.2060569001643874 9.652907369034246 7.602326676393322 9.276718422415952 7.598467899525356 9.249162077638447 7.686428557138511 8.28170625625744 12.97315601374789 7.961728231203193 12.96404963741902 7.92701721011836 13.03081009362518 18.75949479111181 -2.68298020751688 18.81679885272213 -2.280453714248502 18.96653425854302 -2.361529408787258 19.23139801201328 -2.689451701497159 19.13759183695888 -2.665867864861596 19.34044707240945 -2.342770367622618 -4.490503210843826 -11.96238721875293 -4.487858677129998 -12.05323624630745 -5.969863315477971 -11.96238721875293 -8.663158878813899 -14.42652604764428 -8.402350720291743 -14.43532004108953 -8.365447939979076 -14.50572705701122 15.46335916394793 -10.60892281156017 15.15066046890538 -10.60892281156017 15.4605718920975 -10.53279436171911 -15.29970092633747 9.305762693544153 -14.99859668636053 9.305762693544153 -15.29624746796896 9.23368831106178 -15.44113742569023 5.340529677294571 -15.72983750475899 5.24998906567549 -15.73376769121119 5.34052967729457 -14.98663259470132 -0.5193083408391356 -15.27171154115017 -0.6200326321203501 -15.2836478343792 -0.5193083408391356 -15.00300206834774 -0.6824902856178123 -15.29705297699152 -0.8008897544279089 -15.29735971942515 -0.6824902856178123 -15.2836478343792 -3.177385094368122 -14.98663259470132 -3.177385094368122 -15.28393654950007 -3.295781449767732 -15.73376769121119 -3.248296663348741 -15.44113742569023 -3.248296663348741 -15.74634910072259 -3.348968410168124 -15.29970092633748 -8.467577620774065 -14.99859668636054 -8.467577620774065 -15.30109726509389 -8.558169169191881 -9.170686243752215 -11.31038111380704 -9.569906803357572 -11.40790835860952 -9.546865027032169 -11.31530059948072 -0.8655783579390791 -12.20994719597754 -2.063998346223663 -12.29929923647023 -2.042807883044057 -12.20994719597754 6.032847801229052 -15.26743859805111 6.044733395853726 -15.34433456450821 4.565372695501758 -15.34433456450821 4.578089119545712 -15.27181098915321 6.042443522549657 -15.27181098915321 4.575014081597541 -15.34924436875584 -19.68978159165452 -2.293963292161629 -19.78360930459403 -2.270426643519187 -19.82425638726421 -1.866647650281283 19.78048424304985 -2.221722100294466 19.71821042565488 -1.861203340651838 19.91227337887101 -1.793889211802343 19.95944976798924 -1.947520684372979 19.96606127535994 -1.521155800721344 20.03761534536724 -1.880607046526774 -4.601408956055971 9.271815676683524 -6.038038690505769 9.271815676683522 -4.598875089223176 9.362670027227752 5.962275391711477 4.24330835415043 4.534141876238193 4.243308354150429 4.532463909626989 4.35033979531938 -4.601408956055971 4.30787130089876 -6.031231801022802 4.200973234703139 -6.038038690505768 4.30787130089876 5.962275391711476 0.03024645439678193 5.959880823535986 -0.08685247252196932 4.534141876238193 0.03024645439678193 2.476153838318579 -0.08152662073299774 1.448475082256825 -0.08152662073299774 2.481589082294483 0.0355093323322735 -1.613661316306823 -4.00664585757511 -2.647858214491436 -4.00664585757511 -2.642337916068863 -3.889611157446968 2.476153838318576 -3.366939655412789 1.447397692994427 -3.483564387562972 1.448475082256822 -3.366939655412789 -1.613661316306821 -8.487591882161246 -1.605754788234128 -8.595784290817457 -2.647858214491436 -8.487591882161246 6.6776721177237 -8.26850753411134 6.465933012836835 -8.270891193067653 6.670723983068755 -8.160274527676586 -8.179911047886003 -12.01633978017662 -8.16308171009161 -11.92290944819252 -7.918916619656993 -12.02048527253476 6.515334858398953 -11.26382444313159 6.553415841722168 -11.17832569057235 6.765147003713963 -11.17553940940338 15.02202243247326 -8.429644127596799 15.32312760948885 -8.429644127596799 15.32452377666325 -8.520234777394641 9.595311194915702 -11.28366783139316 9.618352304145599 -11.37627627152644 9.219134308971217 -11.27874830954333 15.46211492777181 -3.240215589930534 15.7547468827891 -3.240215589930534 15.76732793248971 -3.340887364577219 2.110902209731041 -12.19347232815999 2.132089323736721 -12.28282517451938 0.9336694325431699 -12.19347232815999 15.0101056246541 -3.170566056938317 15.30712256202268 -3.170566056938317 15.30741115185396 -3.288962358661077 15.32066409723172 -0.8077351146625333 15.02661315338168 -0.6893356999620466 15.3209709925307 -0.6893356999620466 15.29518659165885 -0.6282128187308306 15.01010562465411 -0.5274885037723215 15.30712256202268 -0.5274885037723215 15.75081771334134 5.211752358278227 15.46211492777181 5.302292096450603 15.75474688278911 5.302292096450603 15.32312760948885 9.253044120185663 15.31967646468605 9.180966345238184 15.02202243247326 9.253044120185663 19.77908576945749 -2.259271994055478 19.68525805006725 -2.282808626784016 19.81973307066181 -1.855493273825868 -4.503218956355878 -15.26997096044538 -4.500143919658692 -15.34740434007876 -5.967573955087234 -15.26997096044538 -5.95797891353612 -15.2655721743769 -4.490503210843827 -15.34246811125649 -5.969863315477973 -15.34246811125649 -15.48594779083108 -10.55551571529595 -15.48315975889287 -10.47939023135501 -15.17324855490909 -10.55551571529595 15.7114721802048 -10.13036465378344 15.68691514941947 -10.04414893753694 16.01708444038077 -10.04414893753694 -15.1668191078759 9.234871470267324 -15.15066046890538 9.160017322859506 -15.46335916394793 9.160017322859506 -15.00862113548088 4.998656138367536 -14.99859668636054 4.912960297695726 -15.29970092633747 4.912960297695726 -15.44951183108844 0.2103160872656308 -15.44113742569023 0.1081623766247779 -15.73376769121119 0.1081623766247779 -14.98957904088851 -0.7018823012797399 -14.98663259470132 -0.820254278292991 -15.2836478343792 -0.820254278292991 -15.00003788106573 -3.155892365437515 -15.00300206834774 -3.274260926143993 -15.29735971942515 -3.274260926143993 -14.97925661821838 -4.127858398099161 -14.98663259470132 -4.23005584520005 -15.2836478343792 -4.23005584520005 -15.42889186415092 -7.762435691660009 -15.44113742569023 -7.847957855214205 -15.73376769121119 -7.847957855214205 -14.98357338336505 -10.55388201517499 -14.99859668636054 -10.62888111751612 -15.29970092633747 -10.62888111751612 -8.824823626942271 -14.12489571325095 -8.794080268872612 -14.19284427826379 -9.170089165605129 -14.20300702134653 -0.8826350129102212 -15.92375036724437 -0.8655783579390697 -16.00567808604854 -2.042807883044047 -16.00567808604854 -1.050483690564914 -15.82923519957291 -2.211437211425421 -15.90400693072866 -2.185710194233281 -15.82923519957291 -6.030513669705284 14.16644362764167 -6.042443522549659 14.24333609920092 -4.578089119545712 14.24333609920092 -4.590927172236486 14.17802120568929 -6.040276786812616 14.17802120568929 -4.58789892625582 14.25545751748922 5.96317034262518 9.270523289539652 4.526537629451313 9.270523289539652 4.524003767872253 9.361377640174554 -4.590927172236486 9.318216910614718 -6.030122993531732 9.227678957809356 -6.040276786812616 9.318216910614718 5.963170342625178 4.307137113572084 5.956365236892629 4.200239064899323 4.526537629451314 4.307137113572084 2.580668397781054 4.226768642287551 1.546464556103275 4.226768642287551 2.596393690121083 4.33308345358001 -1.515796929642288 -0.08450018169509035 -2.543472473262476 -0.08450018169509035 -2.548905067545308 0.03253589439603184 2.580668397781052 -0.5085529354970522 1.547479105901426 -0.6251768485774619 1.546464556103273 -0.5085529354970519 -1.515796929642288 -3.364648213406738 -1.514720630772632 -3.481272910079917 -2.543472473262476 -3.364648213406738 5.301970907146547 -3.435856086462512 5.122380014925482 -3.436902553364898 5.300567009919858 -3.319233503802847 -6.522399165103879 -8.254818544593391 -6.734136917726277 -8.252434883096971 -6.727188912143367 -8.144201761325455 5.130792201892552 -7.109309396465209 5.159518850826261 -7.003947812433165 5.339109200491081 -7.00284522868404 -6.821393137669627 -11.15121937687499 -6.60966332883516 -11.15400569981857 -6.571580074568978 -11.23950573425742 15.68691514941947 -8.313956844572193 16.01130909436 -8.223475798903641 16.01708444038077 -8.313956844572193 15.00700185472502 -10.50086241382568 15.32312760948885 -10.57586585104739 15.02202243247326 -10.57586585104739 15.46211492777181 -7.812702149595211 15.44987103714391 -7.727179303403415 15.75474688278911 -7.812702149595211 8.874415679096611 -14.0833870487067 9.219676513622714 -14.16150151219486 8.843669532248601 -14.15133835857689 15.01010562465411 -4.21760143079724 15.00272995593065 -4.115404060723963 15.30712256202268 -4.217601430797241 0.9507300078925474 -15.90024312151012 2.110902209731035 -15.98217213411584 0.9336694325431638 -15.98217213411584 15.02661315338167 -3.267215297547446 15.0236473080955 -3.148847216089724 15.3209709925307 -3.267215297547446 15.01010562465411 -0.8272897564913471 15.01305345961021 -0.7089182544098032 15.30712256202268 -0.8272897564913471 15.46211492777181 0.09569302719149637 15.47048894150539 0.1978466668897259 15.75474688278911 0.09569302719149637 15.02202243247326 4.877885897656243 15.03204586218669 4.963582345625581 15.32312760948885 4.877885897656243 15.48594779083108 9.106820843174218 15.17324855490909 9.106820843174218 15.18940489824317 9.181679302055864 4.516055793173837 14.17620921522614 4.513027548437893 14.25364552705619 5.965406003487029 14.17620921522614 5.955644101001473 14.1646048661961 4.503218956355878 14.24149733763617 5.967573955087234 14.24149733763617 2.253585044652437 -15.80549481303079 2.279313202063853 -15.8802661536584 1.118360160867012 -15.80549481303079 -16.03646536591912 -9.98953066762771 -15.70629498706582 -9.98953066762771 -15.73085244048429 -10.0757418179448 -9.691790315408117 -12.66057836863902 -9.713998895841865 -12.46082576638666 -9.592025503009758 -12.61999545698963 -19.38355668723695 -4.849280978589558 -19.22797954663386 -4.68492067644751 -19.29867559749668 -4.885420632541788 -19.65355374764422 -0.1876257909771591 -19.83106337048672 -0.3626433077867314 -19.87527749914726 -0.2839274121714716 -17.82394544450362 -0.5795170116679241 -18.04243545583606 -0.7263208742847903 -18.05720797763103 -0.624616735940446 -17.52329737790185 -1.128318286865405 -17.75279379070075 -1.246811770317144 -17.75986485325772 -1.128547848127118 -17.84463983667688 -2.716384265512863 -17.61117615647032 -2.760379019697464 -17.85187049601123 -2.834639070439923 -18.72812638482233 -2.907042865882481 -18.49785025410326 -2.989545482403961 -18.74496551268442 -3.008544142958534 -19.98336525213728 -2.619792609283633 -19.77616602255682 -2.743600817854579 -20.03000983968968 -2.697641230362282 -19.07521880107368 2.222549238425893 -19.28863543162263 2.360351055835429 -19.20319018112049 2.395655766345168 -15.15066046890538 -10.38957659428272 -15.4678996499368 -10.46161236820582 -15.46335916394793 -10.38957659428272 -7.592980592543337 -14.72278805579691 -7.931323689259743 -14.81781382894436 -7.912733424243109 -14.73609284126878 1.066715171206866 14.87922337145254 1.050483690564915 14.9612663398651 2.185710194233282 14.9612663398651 1.246773391632629 14.68378374546087 2.366609997996232 14.75838297211304 2.340082606993036 14.68378374546087 5.965406003487029 9.316907204223755 5.955254592107321 9.22636929298281 4.516055793173837 9.316907204223753 1.423050836975679 9.408630203324389 2.504008705394735 9.497683835261139 2.480903371497714 9.408630203324389 -1.613661316306823 4.216833965123685 -2.647858214491436 4.216833965123685 -2.66358527831016 4.323148525969196 2.480903371497709 4.956565244715231 1.431281496542692 4.848389187239793 1.423050836975673 4.95656524471523 -1.613661316306823 -0.5108695198862523 -1.614674755282457 -0.6274933972356864 -2.647858214491436 -0.5108695198862521 5.581476603007155 -0.6805588062504455 5.41338949362268 -0.6802705431518155 5.583064466256579 -0.5639388517518161 -5.181810821326999 -3.433770564486227 -5.361405040645122 -3.432724098009614 -5.36000037290997 -3.31610156279985 5.573471488986977 -3.563565990905814 5.395482428849181 -3.681420280371785 5.405384380871043 -3.56327727041682 -5.218859508223209 -6.99200057020482 -5.190136506454993 -7.097361217876384 -5.398453185088338 -6.990897996254484 14.88039625808592 -6.049177235414322 15.21748049650793 -5.941420586126752 15.21811730717534 -6.049177235414322 -16.03069190279564 -8.185171423605269 -15.70629498706582 -8.275654346415315 -16.03646536591912 -8.275654346415315 14.8895366535659 -7.82661596848238 14.88039625808593 -7.746024320254646 15.21811730717534 -7.746024320254646 19.02606839773496 2.256506534682424 19.15403259842444 2.429616522993429 19.2394830470427 2.394311106744111 15.48594779083108 -10.33653502102502 15.49048636236317 -10.40857419527562 15.17324855490909 -10.33653502102502 19.75600973124104 -2.714071717270739 19.9632084087255 -2.590263207330954 20.00985406907348 -2.668112017905508 7.965972928466415 -14.69621602469888 7.98456087767152 -14.77793914185571 7.646222527975709 -14.6829108925316 18.49592406243902 -2.978197317817065 18.72620003535318 -2.895694800358196 18.74303946008466 -2.997195955559551 17.61693882169307 -2.753566207606559 17.85040236961077 -2.70957162793011 17.8576334275191 -2.827825963791534 17.75939437792321 -1.253691370720623 17.5298988979745 -1.135198367111765 17.76646611515011 -1.135427927443862 18.04657186683278 -0.7382075998340181 17.82808222336632 -0.5914038944870823 18.06134458600063 -0.6365035704445915 19.81430039918641 -0.3934265245109556 19.63679235280653 -0.2184086574765198 19.85851574560294 -0.3147104713785267 19.33533831004069 -4.884288843118547 19.25045193748908 -4.92042911361338 19.17976630410968 -4.719925736989262 -2.407650944052344 14.65960892399736 -2.434178292636242 14.73420815998433 -1.31434065327856 14.65960892399736 -1.134588874954071 14.85525742460412 -2.253585044652435 14.93729944855732 -1.118360160867011 14.93729944855732 9.617296553904486 -12.66500159933754 9.517538033774816 -12.6244186570386 9.639505159001477 -12.46524884622546 -8.348870233178907 -12.71452028932761 -8.285797666476661 -12.69012230195108 -8.214562814956576 -12.86742169281624 -18.26962030106745 -6.321678590382891 -18.20580946819558 -6.344842556523926 -18.31228988078171 -6.527023297727342 -20.0176928318019 -1.364111028346354 -19.97740045059154 -1.416793138344588 -20.17402113757889 -1.551212762328492 -19.20516685026805 -0.1514455281133151 -19.18609610962371 -0.2190984511117832 -19.41311367953923 -0.3074381544577679 -17.67416945040313 -0.971600351689575 -17.66995277574447 -1.045853337287439 -17.90337358244077 -1.090443414968429 -17.51628493294478 -2.958314624085006 -17.52029699570496 -3.032574277155831 -17.75686446996305 -3.032804537444579 -18.30652781387649 -4.314869983319435 -18.32123859860547 -4.38319247403253 -18.55345877405838 -4.335297809494179 -19.88292975625511 -2.43110911045672 -19.92024185688072 -2.485132106889783 -20.13522941088246 -2.380158619234217 -18.46166333929716 3.682637282770554 -18.59763165040474 3.857152589259791 -18.39842742323149 3.706758269414646 -7.978014589064561 10.65448200121277 -7.935765208984162 10.85195564554562 -7.915461067359663 10.62926959620017 15.15066046890538 9.563056658643538 15.46335916394792 9.563056658643538 15.13071507699757 9.476108580649944 9.365389491392346 12.82429154073632 9.333231225800933 12.89612594592658 9.65309354528778 12.88456395601899 8.658719233181996 13.33630972377719 8.943388862302919 13.4049215920979 8.919316626974984 13.32407923516827 1.259774571595104 10.10164871144983 1.246773391632616 10.19545538944987 2.340082606993024 10.19545538944987 -2.548261358666484 9.391118389780145 -2.571369004689898 9.480171440153075 -1.490413644686015 9.391118389780145 -1.490413644686015 4.945903461583451 -1.498644713387319 4.837727313105533 -2.548261358666485 4.945903461583451 5.39174599264131 4.676365261466075 5.212157525850023 4.67814160123558 5.394906863333667 4.784706386250813 -5.472181395963654 -0.6834580342270553 -5.640271324742957 -0.6837462972064924 -5.64185996059949 -0.5671263909287087 5.312351299946323 -0.3136682266879932 5.142869273387641 -0.4301738445479654 5.132760493972358 -0.3120448232940665 -5.454294017722256 -3.677656071289764 -5.632285628908424 -3.559801821789036 -5.464195701397696 -3.55951310139795 14.84063769401802 -3.380259162047009 15.18577900417103 -3.26185971708987 15.18595468460332 -3.380259162047009 -15.24130194941138 -5.919889781147626 -14.90421775913593 -6.027644908858769 -15.24193995183978 -6.027644908858769 14.84874765343728 -6.011659752450758 14.84063769401802 -5.904141119940886 15.18595468460332 -5.904141119940886 -14.90421775913593 -7.714855940669859 -14.91335624095274 -7.795449382657618 -15.24193995183978 -7.714855940669859 6.07413098284888 -9.966587740241058 6.052751336910597 -10.0457322227141 5.87941875266081 -9.919309661669212 7.840549175481191 10.6290490144039 7.860849705980102 10.85173505516317 7.903100309075954 10.65426141844438 18.34389530544001 3.739275975397719 18.54309953293489 3.889671079150379 18.40713350634971 3.715154863026652 -15.15330176001074 9.422006758451859 -15.48594779083108 9.508950183664904 -15.17324855490909 9.508950183664904 19.8969724458157 -2.449373366132012 19.85965982852327 -2.395350590533483 20.11196010793283 -2.344400307585765 -9.413435376015551 12.78134491258663 -9.701140325193906 12.84161546867074 -9.381280391948785 12.85317710193036 18.3211164608359 -4.35912086594477 18.30640528909486 -4.290798043421902 18.55333637234671 -4.311225968804862 17.52692274457307 -3.024050899505027 17.52290995029941 -2.949791951472361 17.76348996065288 -3.024281157607632 17.67517820574421 -1.05432127111724 17.67939522910824 -0.9800689784134583 17.90859895542022 -1.09891093270451 19.17654482217115 -0.2418173010313325 19.19561638993978 -0.1741641351521039 19.40356197441698 -0.3301573215256888 19.94916318742726 -1.450260333309652 19.9894558707789 -1.397578366317186 20.14578400235407 -1.584679592411025 18.25653184107658 -6.55787781846958 18.15005578636333 -6.375695333792005 18.2138688302574 -6.352531145971249 -1.327345637163402 10.083661662458 -2.407650944052354 10.17746934616758 -1.314340653278568 10.17746934616759 -8.969535605905968 13.28203736354265 -8.993610370704918 13.3628779521194 -8.708939888320259 13.29426758462078 8.139676247078629 -12.86816259583665 8.210908009611323 -12.69086320744336 8.273978207441394 -12.71526119447974 -12.78274387722732 -6.365614854307423 -12.85013894276203 -6.381307745137489 -12.86009693609806 -6.18552628458628 -15.78946505816563 -5.510541726443739 -15.85685088002671 -5.494847306285777 -15.78013292210458 -5.314741186294477 -17.8416253924724 -4.205936875219305 -17.89662173176317 -4.162252455235499 -17.75085943067127 -4.029919296213584 -18.73492209816997 -2.986942577111664 -18.88587297080539 -3.115625688304565 -18.92092603351418 -3.052052087977587 -19.08382523072946 -2.297553636979063 -19.27044217847237 -2.36156841028472 -19.2823972448122 -2.287838757801712 -19.22438961449992 -1.632404227412163 -19.03782283819056 -1.715842692447699 -19.23639490486517 -1.706128478536877 -18.74223579387762 -0.8065263520552668 -18.59198109796248 -0.9547140616795583 -18.77760881278337 -0.869989378480578 -17.54122458466774 0.1184337390716796 -17.68579234691721 0.2700819306560698 -17.6304287660604 0.3134777680939756 -15.65646630459152 1.291234755797375 -15.7323386476556 1.48973944020916 -15.66488296606815 1.505248688255905 -12.9367457267672 2.211256775862102 -13.0132550779171 2.012766795441328 -13.00421049433906 2.226764875080322 -9.843270666827925 9.942780775254487 -9.888396610315738 10.1631985964147 -9.788166085982898 10.12333448897309 15.68691514941947 8.786710331342688 16.0238749337508 8.86268155512165 16.01708444038077 8.786710331342688 7.897678810089994 8.027416426002192 7.864543301827258 8.114184752327695 8.125539781929545 8.109627824716947 6.673049848220581 9.469715966396223 6.896084339222137 9.559746333869635 6.884762958644726 9.465804985259812 -5.271379763675692 4.6632943912561 -5.450971557570048 4.661518049302336 -5.454131147372023 4.769859307307832 6.677170504544652 3.410883337648484 6.491090664057091 3.307947080044089 6.465431366870718 3.413794575316653 -5.202275551431507 -0.4338439809994849 -5.371761164807856 -0.3173384028208116 -5.192167031731167 -0.3157149999798093 15.1753449570544 -0.7137339373397769 14.82737263025975 -0.7137339373397769 15.17550626670093 -0.5953376211913491 -15.21005229255512 -3.255013659375607 -14.86491272747025 -3.373413050099153 -15.21022837451268 -3.373413050099153 14.83018938232627 -3.363247504567183 14.82737263025975 -3.244873795772628 15.1753449570544 -3.244873795772628 -14.86491272747025 -5.883240749762564 -14.87302250707226 -5.990760022550326 -15.21022837451268 -5.883240749762564 10.16320062559679 -7.037031182269035 10.35410713240962 -7.017393499742548 10.34700273135151 -7.12495615122071 -6.10914123146968 -10.02512542648012 -6.130524663523904 -9.945979887175954 -5.935811910440053 -9.898701177291059 4.439032976970478 -11.98340202401183 4.468619694421044 -11.92649294888146 4.630761698629476 -12.03770408049976 12.941697311043 2.018454057509577 12.86518640303935 2.216944390881896 12.93264894552412 2.232452517676358 9.768878972063599 9.947686821193569 9.713778591995073 10.12824057167612 9.814002868135006 10.16810468723477 15.6659813934412 1.499018471902721 15.59011232929354 1.300513219207083 15.59852351378556 1.514527764349704 -15.70629498706582 8.732666998645161 -16.03646536591912 8.732666998645161 -16.04325582618906 8.808635269477087 17.62672952931197 0.2801970374289753 17.48216341514532 0.128548661864497 17.57136601513961 0.323592927514855 18.53923678922872 -0.9469091429666696 18.68948976418842 -0.7987211602002733 18.72486364052563 -0.8621843036017132 18.9891225781716 -1.713194037408865 19.17568880158024 -1.629755837601254 19.18768961402955 -1.703479854376856 19.22216787145841 -2.364303168194035 19.03555155082161 -2.300288606453789 19.23411853418363 -2.290573759383596 18.8342591331913 -3.123954853184598 18.68330990625126 -2.995271476320575 18.86931301872998 -3.06038112160753 17.83863199804143 -4.173434737613167 17.78363573912622 -4.217119220216832 17.69287130051369 -4.041101388896995 15.79085600446988 -5.505157165192947 15.72346798640699 -5.520851640241356 15.71414130288766 -5.325050415289506 -6.94070064484745 9.437924505789244 -6.952019441919244 9.531867377155223 -6.728988888700038 9.441835550321279 -7.95027424563846 8.000646900380163 -8.17813151795796 8.082859631654044 -7.917136733841961 8.087416633127729 12.77835483883574 -6.387302547985668 12.71096200259839 -6.371609624830847 12.78831666929671 -6.191520684157089 -9.68092843336105 -6.120881596644153 -9.735939489592669 -6.16455774489523 -9.827290752882114 -5.988573495171885 -10.07394446695215 1.952842852432265 -10.21911948003686 1.801217886282871 -10.12932053946803 1.996232043650448 2.413905613590869 8.735847419225193 2.379310964445952 8.790980780609035 2.53426046563354 8.93105476926039 15.67423082878306 3.968712718113738 15.68691514941947 4.049011524292988 16.01708444038077 4.049011524292988 15.21811730717534 5.80085919864991 14.88039625808593 5.800859198649909 15.2190775342545 5.891455222201265 -6.547544681720589 3.294471620129648 -6.733627439126202 3.397406998346797 -6.521889653117752 3.400318211144182 15.18595468460332 2.248110681458929 14.84063769401802 2.248110681458929 15.18646775344484 2.355864921485728 -14.85159354600209 -0.720568210412048 -15.19956548803766 -0.720568210412048 -15.19972704947418 -0.6021719483419815 14.83780678440374 -0.7339876700204291 14.84063769401802 -0.6156173123829684 15.18595468460332 -0.6156173123829684 -14.85159354600209 -3.237951948498318 -14.85441151087351 -3.356325337016881 -15.19956548803767 -3.237951948498318 12.05741482513919 -3.563240662441386 12.24195836344508 -3.489354483544652 12.24154061641983 -3.607748473706828 -10.39766087355002 -6.999490266505816 -10.20675364225036 -7.019128052741568 -10.39055491731616 -7.107053486036927 10.2975001942721 -7.633555202672231 10.30599075633745 -7.564584601157192 10.48832644754952 -7.613440602891981 -4.690710747276611 -12.01390608707657 -4.528570604954117 -11.90269375807636 -4.498981510604737 -11.95960344593224 10.14467526126418 1.803192736996237 9.999495264955684 1.954817680861395 10.05487363302272 1.998206865702695 -2.478268632430267 8.716361066160564 -2.598617818886321 8.911570221728214 -2.443671634953325 8.771494937489718 -15.70629498706582 4.017592829726342 -15.69361245066309 3.937292183630611 -16.03646536591912 4.017592829726342 -14.90421775913593 5.763260575988522 -15.24193995183978 5.763260575988522 -15.24289825157169 5.853858412660615 9.661321327434161 -6.166279363329495 9.606307960399429 -6.122603221429672 9.752675213521918 -5.990295139197252 -7.395537909747889 -4.830922892375976 -7.430609113530139 -4.894486908002942 -7.582130724041725 -4.765823197772249 -7.775983267541528 0.7476408337632816 -7.962203837859102 0.6629274849558876 -7.811371043444507 0.8110953701622439 7.766607095408951 6.515231945749315 7.590830213999094 6.418063621011885 7.750224525147358 6.595115452111634 14.87216447635101 2.179947425949198 14.88039625808592 2.287457504881583 15.21811730717534 2.287457504881584 -14.86491272747025 2.226444157171185 -15.21022837451267 2.226444157171185 -15.21074376780526 2.334196873085406 -14.86491272747025 -0.6225643843096979 -14.86208045979548 -0.7409344194215524 -15.21022837451268 -0.6225643843096981 12.41469233972847 -0.5002694550396616 12.23169637368569 -0.5000396405644378 12.41447618763021 -0.3818782724980979 -12.27825252498836 -3.482855020088215 -12.09370982983083 -3.556741012596679 -12.277836473803 -3.601248711584913 12.22372091515855 -3.796425702544841 12.22513709523424 -3.722106338661855 12.40813305999706 -3.722336782997072 -10.34901622437447 -7.543969645772952 -10.34052578346923 -7.612940066679143 -10.53135278775586 -7.592825519571694 7.887300302356735 0.6628454520420777 7.701075561955177 0.747558799260738 7.736462743421062 0.8110133344696594 -7.642527278143381 6.394943276232301 -7.81830235691293 6.492113066751919 -7.801916090519243 6.571997778155295 -14.90421775913592 2.266675886894497 -14.89598725529453 2.159165115481537 -15.24193995183978 2.266675886894497 7.355734855273431 -4.894160274590968 7.320664240262901 -4.830596263918473 7.507261218016874 -4.765496574388916 -6.338988225187498 -3.044192736994829 -6.526187453215318 -2.980179495076612 -6.327008858612708 -2.970464848302552 -6.478766604773241 -1.044994264491359 -6.677945251180706 -1.054708253937041 -6.490795495926419 -0.9712717169038074 9.610606299620715 4.026767889582137 9.600603974387786 4.095612210845925 9.782930967972504 4.184999620950642 10.84047123466893 3.232022608900226 10.65762112611577 3.184796505463652 10.83485398750863 3.33963684896644 -12.26747683539415 -0.5066035206759694 -12.45047166792699 -0.5068333345684198 -12.45025742428145 -0.3884424522482105 11.96646711559798 -0.2245792295362926 11.96483023268117 -0.1502630192217587 12.14891252852914 -0.1060984740581887 -12.26094568485028 -3.714805528299638 -12.25952937471671 -3.789124952490278 -12.4439405161016 -3.715035972821853 6.603293950145228 -1.054998462077994 6.404110550950738 -1.045284472474634 6.416140047648382 -0.9715619236904124 -9.646317743629719 4.075727575063625 -9.656319410185724 4.006883384766423 -9.828644396363487 4.165114815121433 -10.69924566447718 3.16651825694732 -10.88209648364179 3.21374460925405 -10.8764772486745 3.321359416421312 6.451588298678992 -2.979853689228417 6.264384924186519 -3.043866932336237 6.252404951289926 -2.970139042273824 -12.0013834934214 -0.1574555205813113 -12.00302080340579 -0.2317717869179218 -12.18546658538891 -0.1132909421250119</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1820\" source=\"#ID260\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID256\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID254\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID255\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"636\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID256\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID257\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 7 4 8 5 12 6 13 7 14 8 18 9 19 10 20 11 24 12 25 13 26 14 7 4 30 15 8 5 32 16 33 17 34 18 20 19 19 20 38 21 40 22 41 23 42 24 46 25 47 26 48 27 52 28 53 29 54 30 54 31 58 32 59 33 62 34 63 35 64 36 30 15 68 37 8 5 70 38 32 16 34 18 38 39 72 40 73 41 48 42 47 43 76 44 19 45 72 46 38 47 78 48 79 49 80 50 84 51 85 52 86 53 79 54 90 55 91 56 94 57 53 58 52 59 52 60 54 61 59 62 59 63 58 64 96 65 98 66 8 5 99 67 102 68 103 69 104 70 68 37 108 71 8 5 110 72 70 38 34 18 73 73 112 74 113 75 116 76 76 77 117 78 72 79 112 80 73 81 116 82 48 83 76 84 94 85 72 86 53 87 78 88 80 89 120 90 79 91 91 92 80 93 34 18 122 94 123 95 126 96 127 97 128 98 90 99 132 100 91 101 134 102 135 103 136 104 140 105 141 106 134 107 144 108 140 109 145 110 58 111 148 112 96 113 104 114 103 115 150 116 99 67 8 5 152 117 108 71 154 118 8 5 156 119 110 72 34 18 113 120 158 121 159 122 162 123 117 124 163 125 113 126 112 127 158 128 162 129 116 130 117 131 72 132 166 133 112 134 116 135 132 136 90 137 94 138 166 139 72 140 168 141 169 142 170 143 174 144 78 145 120 146 169 147 176 148 177 149 34 18 123 95 180 150 182 151 126 152 128 153 176 154 184 155 185 156 135 103 188 157 136 104 141 106 135 158 134 107 141 159 140 109 144 108 144 160 145 161 190 162 96 163 148 164 192 165 104 166 150 167 194 168 194 169 150 170 196 171 152 117 8 5 198 172 154 118 200 173 8 5 202 174 156 119 34 18 159 175 204 176 205 177 208 178 163 179 209 180 159 181 158 182 204 183 208 184 162 185 163 186 112 187 212 188 158 189 214 190 116 191 162 192 166 193 212 194 112 195 214 196 132 197 116 198 94 199 216 200 166 201 168 202 170 203 218 204 169 205 177 206 170 207 174 208 120 209 220 210 177 149 176 148 185 211 34 18 180 150 222 212 182 213 224 214 225 215 182 216 128 217 224 218 185 156 184 155 228 219 230 220 231 221 232 222 236 223 232 224 237 225 240 226 237 227 241 228 244 229 241 230 245 231 190 162 145 161 248 232 148 233 250 234 192 235 194 236 196 237 252 238 252 239 196 240 254 241 8 5 256 242 198 172 8 5 200 173 258 243 260 244 202 174 34 18 205 245 262 246 263 247 266 248 209 249 267 250 205 251 204 252 262 253 266 254 208 255 209 256 158 257 270 258 204 259 272 260 162 261 208 262 158 263 212 264 270 265 272 266 214 267 162 268 166 269 274 270 212 271 276 272 132 273 214 274 166 201 216 200 274 275 278 276 279 277 280 278 284 279 168 202 218 204 286 280 287 281 278 282 290 283 174 284 220 285 292 286 293 287 286 288 296 289 34 18 222 212 298 290 225 291 299 292 225 293 224 294 299 295 292 296 302 297 303 298 306 299 231 300 230 301 230 302 232 303 236 304 236 305 237 306 240 307 244 308 240 309 241 310 308 311 244 312 245 313 190 314 248 315 310 316 192 317 250 318 312 319 250 320 314 321 312 322 252 323 254 324 316 325 316 326 254 327 318 328 8 5 320 329 256 242 8 5 258 243 322 330 324 331 260 244 34 18 263 332 326 333 327 334 330 335 267 336 331 337 263 338 262 339 326 340 330 341 266 342 267 343 204 344 334 345 262 346 336 347 208 348 266 349 204 350 270 351 334 352 272 353 208 354 336 355 212 356 338 357 270 358 340 359 214 360 272 361 212 271 274 270 338 362 340 363 342 272 214 274 274 364 231 365 306 366 279 367 344 368 280 369 287 370 279 371 278 372 284 373 218 374 346 375 286 376 293 377 287 378 290 379 220 380 348 381 292 382 303 383 293 384 350 385 34 18 296 289 352 386 298 387 353 388 298 389 299 390 353 391 356 392 290 393 348 394 302 395 358 396 303 397 360 398 361 399 362 400 366 401 367 402 360 403 370 404 366 405 371 406 371 407 374 408 375 409 378 410 374 411 379 412 308 413 245 414 382 415 310 316 248 315 384 416 314 417 386 418 312 419 314 420 388 421 386 422 316 423 318 424 390 425 390 426 318 427 392 428 8 5 322 330 320 329 324 331 34 18 394 429 327 430 396 431 397 432 331 433 400 434 401 435 326 436 396 437 327 438 401 439 330 440 331 441 262 442 404 443 405 444 408 445 266 446 330 447 262 448 334 449 404 450 336 451 266 452 408 453 270 454 410 455 334 456 412 457 272 458 336 459 270 358 338 357 410 460 412 461 340 462 272 361 274 463 414 464 338 465 302 466 340 467 358 468 414 469 274 470 306 471 416 472 417 473 418 474 280 475 344 476 422 477 417 478 424 479 425 480 428 481 284 482 346 483 424 484 430 485 431 486 430 487 434 488 435 489 394 429 34 18 350 385 352 490 438 491 439 492 352 493 353 494 438 495 442 496 356 497 443 498 443 499 356 500 348 501 434 502 446 503 447 504 361 505 450 506 362 507 367 508 361 509 360 510 367 511 366 512 370 513 370 514 371 515 375 516 375 517 374 518 378 519 378 520 379 521 452 522 454 523 308 524 382 525 310 526 384 527 456 528 456 528 384 529 458 530 388 531 460 532 386 533 388 534 462 535 460 536 390 537 392 538 464 539 464 540 392 541 397 542 400 543 466 544 467 545 396 546 464 547 397 548 401 549 400 550 467 551 405 552 470 553 471 554 474 555 330 556 475 557 404 558 470 559 405 560 408 561 330 562 474 563 334 564 478 565 404 566 480 567 336 568 408 569 334 570 410 571 478 572 480 573 412 457 336 459 338 574 482 575 410 576 484 577 340 578 412 579 338 580 414 581 482 582 340 583 484 584 358 585 362 586 450 587 414 588 416 589 418 590 486 591 417 592 425 593 418 594 344 595 488 596 422 597 424 598 431 599 425 600 428 601 346 602 490 603 430 604 435 605 431 606 434 607 447 608 435 609 466 610 439 611 492 612 439 613 438 614 492 615 494 616 442 617 495 618 495 619 442 620 443 621 498 622 428 601 490 603 446 623 500 624 447 625 361 626 502 627 450 628 367 629 504 630 361 631 370 632 506 633 367 634 508 635 370 636 375 637 510 638 375 639 378 640 512 641 378 642 452 643 452 644 379 645 514 646 516 647 454 648 382 649 456 650 458 651 518 652 518 652 458 653 520 654 462 655 522 656 460 657 462 658 524 659 522 660 467 661 466 662 492 663 471 664 526 665 524 666 528 667 475 668 529 669 471 670 470 671 526 672 528 673 474 674 475 675 404 676 532 677 533 678 536 679 408 680 474 681 404 682 478 683 532 684 536 685 480 567 408 686 410 687 538 688 478 689 540 690 412 691 480 692 482 693 538 694 410 695 484 696 412 697 540 698 414 699 542 700 482 701 500 702 446 703 484 704 414 705 450 706 542 707 486 708 418 709 544 710 546 711 416 712 486 713 418 714 425 715 548 716 488 717 550 718 422 719 425 720 431 721 552 722 431 723 435 724 554 725 435 726 447 727 556 728 558 729 494 730 559 731 559 732 494 733 495 734 562 735 498 736 563 737 498 738 490 739 563 740 447 741 500 742 566 743 502 744 568 745 450 746 504 747 502 748 361 749 506 750 504 751 367 752 506 753 370 754 508 755 508 756 375 757 510 758 510 759 378 760 512 761 512 762 452 763 570 764 452 765 514 766 572 767 574 768 454 769 516 770 576 771 574 772 516 773 518 774 520 775 578 776 578 777 520 778 580 779 524 780 526 781 522 782 582 783 529 784 558 785 528 786 529 787 582 788 584 789 585 790 586 791 590 792 474 793 591 794 533 678 532 677 594 795 590 796 536 797 474 798 478 799 596 800 532 801 598 802 480 803 536 804 538 805 596 806 478 807 598 808 540 809 480 810 482 811 600 812 538 813 602 814 484 815 540 816 482 817 542 818 600 819 500 820 484 821 602 822 450 823 568 824 542 825 486 826 544 827 604 828 418 829 548 830 544 831 546 832 486 833 606 834 425 835 552 836 548 837 488 838 608 839 550 840 431 841 554 842 552 843 435 844 556 845 554 846 447 847 566 848 556 849 582 850 558 851 559 852 610 853 562 854 611 855 562 856 563 857 611 858 608 859 614 860 550 861 500 862 616 863 566 864 502 865 618 866 568 867 504 868 620 869 502 870 506 871 622 872 504 873 624 874 506 875 508 876 626 877 508 878 510 879 512 880 628 881 510 882 570 883 630 884 512 885 570 886 452 887 572 888 514 889 632 890 572 891 634 892 574 893 576 894 636 895 634 896 576 897 638 898 578 899 580 900 640 901 641 902 580 903 644 904 645 905 646 906 585 790 650 907 586 791 652 908 590 909 653 910 656 911 657 912 658 913 662 914 536 915 590 916 656 917 664 918 657 919 662 920 598 921 536 922 538 923 666 924 596 925 668 926 540 927 598 928 538 929 600 930 666 931 602 932 540 933 668 934 542 935 670 936 600 937 500 938 602 939 616 940 568 941 670 942 542 943 672 944 604 945 544 946 606 947 486 948 604 949 674 950 544 951 548 952 676 953 546 954 606 955 552 956 678 957 548 958 554 959 680 960 552 961 554 962 556 963 682 964 556 965 566 966 684 967 686 968 610 969 687 970 690 971 610 972 611 973 692 974 693 975 614 976 608 977 692 978 614 979 566 980 616 981 696 982 618 983 698 984 568 985 620 986 618 987 502 988 622 989 620 990 504 991 624 992 622 993 506 994 626 995 624 996 508 997 628 998 626 999 510 1000 630 1001 628 1002 512 1003 700 1004 630 1005 570 1006 702 1007 570 1008 572 1009 572 1010 632 1011 704 1012 704 1013 632 1014 706 1015 708 1016 634 1017 636 1018 710 1019 708 1020 636 1021 712 1022 713 1023 714 1024 658 1025 718 1026 710 1027 720 1028 721 1029 722 1030 658 1031 657 1032 718 1033 726 1034 721 1035 720 1036 596 1037 728 1038 729 1039 732 1040 598 1041 662 1042 596 1043 666 1044 728 1045 732 1046 668 1047 598 1048 600 1049 734 1050 666 1051 736 1052 602 1053 668 1054 600 1055 670 1056 734 1057 602 1058 736 1059 616 1060 568 1061 698 1062 670 1063 738 1064 604 1065 672 1066 674 1067 672 1068 544 1069 740 1070 606 1071 604 1072 678 1073 674 1074 548 1075 676 1076 606 1077 742 1078 680 1079 678 1080 552 1081 682 1082 680 1083 554 1084 556 1085 684 1086 682 1087 566 1088 696 1089 684 1090 744 1091 745 1092 693 1093 692 1094 744 1095 693 1096 748 1097 676 1098 742 1099 616 1100 750 1101 696 1102 618 1103 752 1104 698 1105 620 1106 754 1107 618 1108 756 1109 620 1110 622 1111 758 1112 622 1113 624 1114 760 1115 624 1116 626 1117 628 1118 762 1119 626 1120 630 1121 764 1122 628 1123 700 1124 766 1125 630 1126 700 1127 570 1128 702 1129 702 1130 572 1131 704 1132 768 1133 704 1134 706 1135 770 1136 768 1137 706 1138 718 1139 708 1140 710 1141 772 1142 722 1143 745 1144 720 1145 722 1146 772 1147 729 1148 774 1149 775 1150 778 1151 662 1152 779 1153 729 1154 728 1155 774 1156 778 1157 732 1158 662 1159 666 1160 782 1161 728 1162 784 1163 668 1164 732 1165 666 1166 734 1167 782 1168 784 1169 736 1170 668 1171 670 1172 786 1173 734 1174 616 1175 736 1176 750 1177 698 1178 786 1179 670 1180 788 1181 738 1182 672 1183 740 1184 604 1185 738 1186 790 1187 672 1188 674 1189 742 1190 606 1191 740 1192 792 1193 674 1194 678 1195 680 1196 794 1197 678 1198 682 1199 796 1200 680 1201 684 1202 798 1203 682 1204 684 1205 696 1206 800 1207 744 1208 772 1209 745 1210 802 1211 748 1212 803 1213 803 1214 748 1215 742 1216 696 1217 750 1218 806 1219 752 1220 808 1221 698 1222 754 1223 752 1224 618 1225 756 1226 754 1227 620 1228 758 1229 756 1230 622 1231 760 1232 758 1233 624 1234 762 1235 760 1236 626 1237 764 1238 762 1239 628 1240 766 1241 764 1242 630 1243 810 1244 766 1245 700 1246 812 1247 700 1248 702 1249 814 1250 702 1251 704 1252 814 1253 704 1254 768 1255 816 1256 768 1257 770 1258 775 1259 816 1260 770 1261 818 1262 779 1263 819 1264 775 1265 774 1266 816 1267 818 1268 778 1269 779 1270 728 1271 822 1272 774 1273 824 1274 732 1275 778 1276 728 1277 782 1278 822 1279 824 1280 784 1281 732 1282 734 1283 826 1284 782 1285 828 1286 736 1287 784 1288 786 1289 826 1290 734 1291 736 1292 828 1293 750 1294 808 1295 786 1296 698 1297 830 1298 738 1299 788 1300 790 1301 788 1302 672 1303 832 1304 740 1305 738 1306 792 1307 790 1308 674 1309 834 1310 742 1311 740 1312 794 1313 792 1314 678 1315 796 1316 794 1317 680 1318 798 1319 796 1320 682 1321 800 1322 798 1323 684 1324 696 1325 806 1326 800 1327 819 1328 802 1329 836 1330 836 1331 802 1332 803 1333 803 1334 742 1335 834 1336 750 1337 838 1338 806 1339 752 1340 840 1341 808 1342 754 1343 842 1344 752 1345 844 1346 754 1347 756 1348 846 1349 756 1350 758 1351 848 1352 758 1353 760 1354 762 1355 850 1356 760 1357 764 1358 852 1359 762 1360 766 1361 854 1362 764 1363 856 1364 766 1365 810 1366 810 1367 700 1368 812 1369 812 1370 702 1371 814 1372 858 1373 814 1374 768 1375 858 1376 768 1377 816 1378 836 1379 818 1380 819 1381 860 1382 816 1383 774 1384 862 1385 778 1386 818 1387 774 1388 822 1389 860 1390 862 1391 824 1392 778 1393 782 1394 864 1395 822 1396 866 1397 784 1398 824 1399 782 1400 826 1401 864 1402 866 1403 828 1404 784 1405 868 1406 826 1407 786 1408 828 1409 838 1410 750 1411 808 1412 868 1413 786 1414 870 1415 830 1416 788 1417 832 1418 738 1419 830 1420 872 1421 788 1422 790 1423 834 1424 740 1425 832 1426 874 1427 790 1428 792 1429 876 1430 792 1431 794 1432 796 1433 878 1434 794 1435 798 1436 880 1437 796 1438 800 1439 882 1440 798 1441 800 1442 806 1443 884 1444 836 1445 803 1446 886 1447 886 1448 803 1449 834 1450 806 1451 838 1452 888 1453 840 1454 890 1455 808 1456 842 1457 840 1458 752 1459 844 1460 842 1461 754 1462 846 1463 844 1464 756 1465 848 1466 846 1467 758 1468 850 1469 848 1470 760 1471 852 1472 850 1473 762 1474 854 1475 852 1476 764 1477 854 1478 766 1479 856 1480 856 1481 810 1482 892 1483 810 1484 812 1485 894 1486 896 1487 812 1488 814 1489 896 1490 814 1491 858 1492 860 1493 858 1494 816 1495 818 1496 836 1497 898 1498 898 1499 862 1500 818 1501 822 1502 900 1503 860 1504 902 1505 824 1506 862 1507 822 1508 864 1509 900 1510 866 1511 824 1512 902 1513 904 1514 864 1515 826 1516 866 1517 906 1518 828 1519 868 1520 904 1521 826 1522 906 1523 838 1524 828 1525 868 1526 808 1527 890 1528 908 1529 830 1530 870 1531 870 1532 788 1533 872 1534 910 1535 832 1536 830 1537 874 1538 872 1539 790 1540 912 1541 834 1542 832 1543 876 1544 874 1545 792 1546 878 1547 876 1548 794 1549 880 1550 878 1551 796 1552 882 1553 880 1554 798 1555 884 1556 882 1557 800 1558 806 1559 888 1560 884 1561 898 1562 836 1563 886 1564 886 1565 834 1566 912 1567 838 1568 914 1569 888 1570 890 1571 840 1572 916 1573 840 1574 842 1575 916 1576 842 1577 844 1578 916 1579 916 1580 844 1581 846 1582 916 1583 846 1584 918 1585 920 1586 916 1587 918 1588 852 1589 916 1590 920 1591 916 1592 852 1593 854 1594 916 1595 854 1596 856 1597 892 1598 916 1599 856 1600 892 1601 810 1602 894 1603 894 1604 812 1605 896 1606 922 1607 896 1608 858 1609 922 1610 858 1611 860 1612 924 1613 862 1614 898 1615 860 1616 900 1617 922 1618 902 1619 862 1620 924 1621 864 1622 926 1623 900 1624 902 1625 928 1626 866 1627 904 1628 926 1629 864 1630 928 1631 906 1632 866 1633 930 1634 904 1635 868 1636 838 1637 906 1638 914 1639 890 1640 930 1641 868 1642 932 1643 908 1644 870 1645 908 1646 910 1647 830 1648 872 1649 932 1650 870 1651 910 1652 912 1653 832 1654 874 1655 932 1656 872 1657 932 1658 874 1659 934 1660 932 1661 934 1662 936 1663 880 1664 932 1665 936 1666 882 1667 932 1668 880 1669 882 1670 884 1671 932 1672 884 1673 888 1674 932 1675 898 1676 886 1677 938 1678 938 1679 886 1680 912 1681 888 1682 914 1683 932 1684 940 1685 890 1686 916 1687 942 1688 916 1689 892 1690 944 1691 892 1692 894 1693 946 1694 894 1695 896 1696 922 1697 946 1698 896 1699 924 1700 898 1701 938 1702 900 1703 948 1704 922 1705 950 1706 902 1707 924 1708 926 1709 948 1710 900 1711 950 1712 928 1713 902 1714 952 1715 926 1716 904 1717 928 1718 954 1719 906 1720 930 1721 952 1722 904 1723 906 1724 954 1725 914 1726 932 1727 956 1728 908 1729 958 1730 910 1731 908 1732 910 1733 960 1734 912 1735 960 1736 938 1737 912 1738 914 1739 962 1740 932 1741 964 1742 940 1743 916 1744 966 1745 916 1746 942 1747 946 1748 944 1749 894 1750 948 1751 946 1752 922 1753 968 1754 924 1755 938 1756 968 1757 950 1758 924 1759 926 1760 970 1761 948 1762 950 1763 972 1764 928 1765 952 1766 970 1767 926 1768 972 1769 954 1770 928 1771 932 1772 974 1773 956 1774 958 1775 960 1776 910 1777 960 1778 968 1779 938 1780 962 1781 976 1782 932 1783 964 1784 916 1785 978 1786 978 1787 916 1788 966 1789 980 1790 944 1791 946 1792 948 1793 980 1794 946 1795 982 1796 950 1797 968 1798 970 1799 980 1800 948 1801 982 1802 972 1803 950 1804 932 1805 984 1806 974 1807 958 1808 986 1809 960 1810 986 1811 968 1812 960 1813 932 1814 976 1815 984 1816 986 1817 982 1818 968 1819</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"636\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID256\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 15 16 17 21 22 23 27 28 29 9 31 10 35 36 37 39 22 21 43 44 45 49 50 51 55 56 57 60 61 55 65 66 67 9 69 31 35 37 71 74 75 39 77 50 49 39 75 22 81 82 83 87 88 89 92 93 82 57 56 95 60 55 57 97 61 60 100 9 101 105 106 107 9 109 69 35 71 111 114 115 74 118 77 119 74 115 75 77 49 119 56 75 95 121 81 83 81 92 82 124 125 35 129 130 131 92 133 93 137 138 139 139 142 143 146 143 147 97 149 61 151 106 105 153 9 100 9 155 109 35 111 157 160 161 114 164 118 165 161 115 114 118 119 165 115 167 75 93 133 119 75 167 95 171 172 173 121 83 175 178 179 172 181 124 35 129 131 183 186 187 179 137 189 138 139 138 142 147 143 142 191 146 147 193 149 97 195 151 105 197 151 195 199 9 153 9 201 155 35 157 203 206 207 160 210 164 211 207 161 160 164 165 211 161 213 115 165 119 215 115 213 167 119 133 215 167 217 95 219 171 173 171 178 172 221 121 175 186 179 178 223 181 35 226 227 183 227 129 183 229 187 186 233 234 235 238 233 239 242 238 243 246 242 247 249 146 191 193 251 149 253 197 195 255 197 253 199 257 9 259 201 9 35 203 261 264 265 206 268 210 269 265 207 206 210 211 269 207 271 161 211 165 273 271 213 161 165 215 273 213 275 167 215 133 277 275 217 167 281 282 283 219 173 285 283 288 289 221 175 291 289 294 295 223 35 297 300 226 301 300 227 226 304 305 295 235 234 307 239 233 235 243 238 239 242 243 247 246 247 309 311 249 191 313 251 193 313 315 251 317 255 253 319 255 317 257 321 9 323 259 9 35 261 325 328 329 264 332 268 333 329 265 264 268 269 333 265 335 207 269 211 337 335 271 207 337 211 273 271 339 213 273 215 341 339 275 213 215 343 341 307 234 275 281 345 282 283 282 288 347 219 285 288 294 289 349 221 291 294 304 295 297 35 351 354 301 355 354 300 301 349 291 357 304 359 305 363 364 365 365 368 369 372 369 373 376 377 372 380 377 381 383 246 309 385 249 311 313 387 315 387 389 315 391 319 317 393 319 391 321 323 9 395 35 325 398 399 328 402 403 332 328 399 329 332 333 402 406 407 265 333 269 409 407 335 265 409 269 337 335 411 271 337 273 413 411 339 271 273 341 413 339 415 275 359 341 305 307 275 415 419 420 421 423 345 281 426 427 420 347 285 429 432 433 427 436 437 433 351 35 395 440 441 355 441 354 355 444 357 445 349 357 444 448 449 437 363 451 364 365 364 368 373 369 368 376 372 373 381 377 376 453 380 381 383 309 455 457 385 311 459 385 457 387 461 389 461 463 389 465 393 391 398 393 465 468 469 403 398 465 399 468 403 402 472 473 406 476 333 477 406 473 407 477 333 409 407 479 335 409 337 481 479 411 335 337 413 481 411 483 339 413 341 485 483 415 339 359 485 341 415 451 363 487 419 421 419 426 420 423 489 345 426 432 427 491 347 429 432 436 433 436 448 437 493 440 469 493 441 440 496 445 497 444 445 496 491 429 499 448 501 449 451 503 364 364 505 368 368 507 373 376 373 509 381 376 511 453 381 513 515 380 453 383 455 517 519 459 457 521 459 519 461 523 463 523 525 463 493 469 468 525 527 472 530 476 531 527 473 472 476 477 531 534 535 407 477 409 537 535 479 407 409 481 537 479 539 411 481 413 541 411 539 483 541 413 485 483 543 415 485 449 501 543 451 415 545 419 487 487 421 547 549 426 419 423 551 489 553 432 426 555 436 432 557 448 436 560 497 561 496 497 560 564 499 565 564 491 499 567 501 448 451 569 503 364 503 505 368 505 507 509 373 507 511 376 509 513 381 511 571 453 513 573 515 453 517 455 575 517 575 577 579 521 519 581 521 579 523 527 525 561 530 583 583 530 531 587 588 589 592 477 593 595 535 534 477 537 593 535 597 479 537 481 599 479 597 539 481 541 599 539 601 483 541 485 603 601 543 483 603 485 501 543 569 451 605 545 487 545 549 419 607 487 547 549 553 426 551 609 489 553 555 432 555 557 436 557 567 448 560 561 583 612 565 613 612 564 565 551 615 609 567 617 501 569 619 503 503 621 505 505 623 507 509 507 625 511 509 627 511 629 513 513 631 571 573 453 571 573 633 515 577 575 635 577 635 637 581 579 639 581 642 643 647 648 649 587 651 588 654 593 655 659 660 661 593 537 663 660 665 661 537 599 663 597 667 539 599 541 669 667 601 539 669 541 603 601 671 543 617 603 501 543 671 569 545 605 673 605 487 607 549 545 675 607 547 677 549 679 553 553 681 555 683 557 555 685 567 557 688 613 689 612 613 691 615 694 695 615 695 609 697 617 567 569 699 619 503 619 621 505 621 623 507 623 625 509 625 627 511 627 629 513 629 631 571 631 701 573 571 703 705 633 573 707 633 705 637 635 709 637 709 711 715 716 717 711 719 659 723 724 725 719 660 659 725 724 727 730 731 597 663 599 733 731 667 597 599 669 733 667 735 601 669 603 737 735 671 601 617 737 603 671 699 569 673 605 739 545 673 675 605 607 741 549 675 679 743 607 677 553 679 681 555 681 683 683 685 557 685 697 567 694 746 747 694 747 695 743 677 749 697 751 617 699 753 619 619 755 621 623 621 757 625 623 759 627 625 761 627 763 629 629 765 631 631 767 701 703 571 701 705 573 703 707 705 769 707 769 771 711 709 719 746 723 773 773 723 725 776 777 730 780 663 781 777 731 730 663 733 781 731 783 667 733 669 785 783 735 667 669 737 785 735 787 671 751 737 617 671 787 699 673 739 789 739 605 741 675 673 791 741 607 743 679 675 793 679 795 681 681 797 683 683 799 685 801 697 685 746 773 747 804 749 805 743 749 804 807 751 697 699 809 753 619 753 755 621 755 757 623 757 759 625 759 761 627 761 763 629 763 765 631 765 767 701 767 811 703 701 813 705 703 815 769 705 815 771 769 817 771 817 776 820 780 821 817 777 776 780 781 821 777 823 731 781 733 825 823 783 731 733 785 825 783 827 735 785 737 829 735 827 787 751 829 737 699 787 809 789 739 831 673 789 791 739 741 833 675 791 793 741 743 835 679 793 795 681 795 797 683 797 799 685 799 801 801 807 697 837 805 820 804 805 837 835 743 804 807 839 751 809 841 753 753 843 755 757 755 845 759 757 847 761 759 849 761 851 763 763 853 765 765 855 767 811 767 857 813 701 811 815 703 813 769 815 859 817 769 859 820 821 837 777 817 861 821 781 863 861 823 777 781 825 863 823 865 783 825 785 867 865 827 783 785 829 867 787 827 869 751 839 829 787 869 809 789 831 871 831 739 833 791 789 873 833 741 835 793 791 875 795 793 877 795 879 797 797 881 799 799 883 801 885 807 801 887 804 837 835 804 887 889 839 807 809 891 841 753 841 843 755 843 845 757 845 847 759 847 849 761 849 851 763 851 853 765 853 855 857 767 855 893 811 857 895 813 811 815 813 897 859 815 897 817 859 861 899 837 821 821 863 899 861 901 823 863 825 903 901 865 823 903 825 867 827 865 905 829 907 867 827 905 869 829 839 907 891 809 869 871 831 909 873 789 871 831 833 911 791 873 875 833 835 913 793 875 877 795 877 879 797 879 881 799 881 883 801 883 885 885 889 807 887 837 899 913 835 887 889 915 839 917 841 891 917 843 841 917 845 843 847 845 917 919 847 917 919 917 921 921 917 853 855 853 917 857 855 917 857 917 893 895 811 893 897 813 895 859 897 923 861 859 923 899 863 925 923 901 861 925 863 903 901 927 865 867 929 903 865 927 905 867 907 929 869 905 931 915 907 839 869 931 891 871 909 933 831 911 909 871 933 873 833 913 911 873 933 875 935 875 933 937 935 933 937 933 881 881 933 883 933 885 883 933 889 885 939 887 899 913 887 939 933 915 889 917 891 941 893 917 943 895 893 945 897 895 947 897 947 923 939 899 925 923 949 901 925 903 951 901 949 927 903 929 951 905 927 953 907 955 929 905 953 931 915 955 907 909 957 933 909 911 959 913 961 911 913 939 961 933 963 915 917 941 965 943 917 967 895 945 947 923 947 949 939 925 969 925 951 969 949 971 927 929 973 951 927 971 953 929 955 973 957 975 933 911 961 959 939 969 961 933 977 963 979 917 965 967 917 979 947 945 981 947 981 949 969 951 983 949 981 971 951 973 983 975 985 933 961 987 959 961 969 987 985 977 933 969 983 987</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID261\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID262\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID265\">0.09004729241132736 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.2292656004428864 0.09004729241132736 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.2292656004428864 0.09004729241132736 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.2658107578754425 0.2706232964992523 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.1927204430103302 -0.09052873402833939 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.2658107578754425 0.09004729241132736 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.2292656004428864 -0.09052873402833939 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.3023560345172882 0.2706232964992523 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.1927204430103302 -0.2711048126220703 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.3023560345172882 0.09004729241132736 1.979883551597595 -0.3023560345172882 -0.09052873402833939 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.2292656004428864 -0.2711048126220703 1.979883551597595 -0.2292656004428864 -0.09052873402833939 1.979883551597595 -0.3023560345172882 -0.09052873402833939 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.3023560345172882</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID265\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID263\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID266\">0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID266\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID264\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID262\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID263\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"36\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID264\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 1 0 5 4 7 6 8 1 4 9 7 10 6 0 5 7 11 12 8 6 7 9 13 14 6 10 11 7 15 12 16 8 9 17 13 14 12 6 7 13 15 18 14 10 11 15 19 20 16 12 13 17 21 22 12 14 15 13 23 24 14 18 19 15 25 22 20 12 13 21 23 24 22 14 15 23 25 26 20 22 23 21 27 28 22 24 25 23 29 28 26 22 23 27 29 30 26 28 29 27 31</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID269\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID270\">\r\n\t\t\t\t\t<float_array count=\"1134\" id=\"ID273\">-0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.8002784848213196 0.6196871995925903 -0.1194272115826607 -0.8002784848213196 0.6196871995925903 -0.1194272115826607 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.8002784848213196 0.6200764179229736 0.01818196848034859 -0.8002784848213196 0.6200764179229736 0.01818196848034859 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8002784848213196 0.7639247179031372 0.02084463648498058 -0.8002784848213196 0.7639247179031372 0.02084463648498058 -0.8002784848213196 0.7611286044120789 -0.118915356695652 -0.8002784848213196 0.7611286044120789 -0.118915356695652 -0.8002784848213196 0.6231358647346497 0.1513165235519409 -0.8002784848213196 0.6231358647346497 0.1513165235519409 -0.8002784848213196 0.7669853568077087 0.1513165235519409 -0.8002784848213196 0.7669853568077087 0.1513165235519409 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.8002784848213196 0.8771676421165466 0.02084463648498058 -0.8002784848213196 0.8771676421165466 0.02084463648498058 -0.8002784848213196 0.8771676421165466 0.1513165235519409 -0.8002784848213196 0.8771676421165466 0.1513165235519409 -0.8002784848213196 0.872636616230011 -0.118915356695652 -0.8002784848213196 0.872636616230011 -0.118915356695652 -0.7714517116546631 0.7642374038696289 0.234848827123642 -0.7714517116546631 0.7642374038696289 0.234848827123642 -0.7724733352661133 0.6222134828567505 0.2340750992298126 -0.7724733352661133 0.6222134828567505 0.2340750992298126 -0.7714517116546631 0.8763352632522583 0.234848827123642 -0.7714517116546631 0.8763352632522583 0.234848827123642 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.7714517116546631 1.068503022193909 0.234848827123642 -0.7714517116546631 1.068503022193909 0.234848827123642 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.748810887336731 0.7716558575630188 0.29511559009552 -0.748810887336731 0.7716558575630188 0.29511559009552 -0.7487359046936035 0.8783665895462036 0.29511559009552 -0.7487359046936035 0.8783665895462036 0.29511559009552 -0.7497841715812683 0.6197603940963745 0.2984656691551209 -0.7497841715812683 0.6197603940963745 0.2984656691551209 -0.8002784848213196 1.067611813545227 0.1501588523387909 -0.8002784848213196 1.067611813545227 0.1501588523387909 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.7471549510955811 1.070043087005615 0.292364776134491 -0.7471549510955811 1.070043087005615 0.292364776134491 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.7451425790786743 1.229051828384399 0.2896876931190491 -0.7451425790786743 1.229051828384399 0.2896876931190491 -0.7714517116546631 1.22945249080658 0.2351814955472946 -0.7714517116546631 1.22945249080658 0.2351814955472946 -0.6762760281562805 0.8758261203765869 0.358364999294281 -0.6762760281562805 0.8758261203765869 0.358364999294281 -0.6766242980957031 0.7716558575630188 0.3602698147296906 -0.6766242980957031 0.7716558575630188 0.3602698147296906 -0.6753841638565064 1.070043087005615 0.342584639787674 -0.6753841638565064 1.070043087005615 0.342584639787674 -0.6771467328071594 0.6242926120758057 0.356035441160202 -0.6771467328071594 0.6242926120758057 0.356035441160202 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.6740805506706238 1.229051828384399 0.3374882340431213 -0.6740805506706238 1.229051828384399 0.3374882340431213 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6728717684745789 1.338770151138306 0.3299798667430878 -0.6728717684745789 1.338770151138306 0.3299798667430878 -0.7432098388671875 1.33383572101593 0.2877088189125061 -0.7432098388671875 1.33383572101593 0.2877088189125061 -0.7714517116546631 1.336279630661011 0.2374546378850937 -0.7714517116546631 1.336279630661011 0.2374546378850937 -0.6551044583320618 0.770412027835846 0.3768142461776733 -0.6551044583320618 0.770412027835846 0.3768142461776733 -0.6547621488571167 0.8788958787918091 0.36956787109375 -0.6547621488571167 0.8788958787918091 0.36956787109375 -0.6538115739822388 0.6258586049079895 0.3818635642528534 -0.6538115739822388 0.6258586049079895 0.3818635642528534 -0.652993381023407 1.071277260780335 0.3560464382171631 -0.652993381023407 1.071277260780335 0.3560464382171631 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6503435969352722 1.231573462486267 0.3451077938079834 -0.6503435969352722 1.231573462486267 0.3451077938079834 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.6467726230621338 1.337924003601074 0.3337158262729645 -0.6467726230621338 1.337924003601074 0.3337158262729645 -0.6713939309120178 1.432783603668213 0.3242798447608948 -0.6713939309120178 1.432783603668213 0.3242798447608948 -0.7414166927337647 1.431114196777344 0.2848821878433228 -0.7414166927337647 1.431114196777344 0.2848821878433228 -0.7714517116546631 1.430078029632568 0.2376271635293961 -0.7714517116546631 1.430078029632568 0.2376271635293961 -0.6349050998687744 0.7708060741424561 0.3701403439044952 -0.6349050998687744 0.7708060741424561 0.3701403439044952 -0.6256678700447083 0.8783389925956726 0.3555973768234253 -0.6256678700447083 0.8783389925956726 0.3555973768234253 -0.6176331639289856 1.073966383934021 0.34251469373703 -0.6176331639289856 1.073966383934021 0.34251469373703 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6103045344352722 1.231997966766357 0.325863778591156 -0.6103045344352722 1.231997966766357 0.325863778591156 -0.6049067378044128 1.338981509208679 0.3172231614589691 -0.6049067378044128 1.338981509208679 0.3172231614589691 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.5988566875457764 1.422707080841065 0.303942084312439 -0.5988566875457764 1.422707080841065 0.303942084312439 -0.6432016491889954 1.43192446231842 0.3254314661026001 -0.6432016491889954 1.43192446231842 0.3254314661026001 -0.6704087257385254 1.524521231651306 0.3170008361339569 -0.6704087257385254 1.524521231651306 0.3170008361339569 -0.7381420135498047 1.524521231651306 0.2817167937755585 -0.7381420135498047 1.524521231651306 0.2817167937755585 -0.7714517116546631 1.527541875839233 0.2388848811388016 -0.7714517116546631 1.527541875839233 0.2388848811388016 -0.6096035838127136 0.8772760033607483 0.3508152365684509 -0.6096035838127136 0.8772760033607483 0.3508152365684509 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.5969606637954712 1.076266169548035 0.3287610411643982 -0.5969606637954712 1.076266169548035 0.3287610411643982 -0.5887119770050049 1.234852313995361 0.3147788345813751 -0.5887119770050049 1.234852313995361 0.3147788345813751 -0.581000566482544 1.340795755386353 0.2962920665740967 -0.581000566482544 1.340795755386353 0.2962920665740967 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.5952385663986206 1.534539937973023 0.2910608053207398 -0.5952385663986206 1.534539937973023 0.2910608053207398 -0.5756016969680786 1.432812809944153 0.2799475789070129 -0.5756016969680786 1.432812809944153 0.2799475789070129 -0.6396305561065674 1.523992538452148 0.3161111772060394 -0.6396305561065674 1.523992538452148 0.3161111772060394 -0.6688806414604187 1.630582451820374 0.3066250681877136 -0.6688806414604187 1.630582451820374 0.3066250681877136 -0.7326781153678894 1.627527952194214 0.2751796841621399 -0.7326781153678894 1.627527952194214 0.2751796841621399 -0.7656499743461609 1.629548072814941 0.2351733148097992 -0.7656499743461609 1.629548072814941 0.2351733148097992 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.8002784848213196 1.629548072814941 0.1532912850379944 -0.8002784848213196 1.629548072814941 0.1532912850379944 -0.5857915282249451 1.635170221328735 0.2697256505489349 -0.5857915282249451 1.635170221328735 0.2697256505489349 -0.5694620013237 1.539629101753235 0.2627097368240356 -0.5694620013237 1.539629101753235 0.2627097368240356 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.635464072227478 1.630808830261231 0.3067907989025116 -0.635464072227478 1.630808830261231 0.3067907989025116 -0.6664205193519592 1.735270857810974 0.2955930531024933 -0.6664205193519592 1.735270857810974 0.2955930531024933 -0.725673258304596 1.735270857810974 0.2675617933273315 -0.725673258304596 1.735270857810974 0.2675617933273315 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7607758045196533 1.731385946273804 0.2290779650211334 -0.7607758045196533 1.731385946273804 0.2290779650211334 -0.8002784848213196 1.731245756149292 0.1508422940969467 -0.8002784848213196 1.731245756149292 0.1508422940969467 -0.5798652172088623 1.733703374862671 0.2523872554302216 -0.5798652172088623 1.733703374862671 0.2523872554302216 -0.5607426762580872 1.635875701904297 0.243652269244194 -0.5607426762580872 1.635875701904297 0.243652269244194 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.6283220648765564 1.734643340110779 0.2933281362056732 -0.6283220648765564 1.734643340110779 0.2933281362056732 -0.6636370420455933 1.828536510467529 0.2839697897434235 -0.6636370420455933 1.828536510467529 0.2839697897434235 -0.7195442318916321 1.830480456352234 0.2584208846092224 -0.7195442318916321 1.830480456352234 0.2584208846092224 -0.780127227306366 1.770382642745972 0.08878238499164581 -0.780127227306366 1.770382642745972 0.08878238499164581 -0.7555970549583435 1.832421541213989 0.2219224870204926 -0.7555970549583435 1.832421541213989 0.2219224870204926 -0.789497435092926 1.832582235336304 0.1508422940969467 -0.789497435092926 1.832582235336304 0.1508422940969467 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.5481609702110291 1.737459182739258 0.2144985496997833 -0.5481609702110291 1.737459182739258 0.2144985496997833 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.6187847852706909 1.828536510467529 0.2750792801380158 -0.6187847852706909 1.828536510467529 0.2750792801380158 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.780127227306366 1.831223368644714 0.08806630969047546 -0.780127227306366 1.831223368644714 0.08806630969047546 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7611757516860962 1.848836660385132 0.05843546241521835 -0.7611757516860962 1.848836660385132 0.05843546241521835 -0.7789089679718018 1.794281721115112 0.06106704473495483 -0.7789089679718018 1.794281721115112 0.06106704473495483 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5419393181800842 1.786986827850342 0.1989490985870361 -0.5419393181800842 1.786986827850342 0.1989490985870361 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.5395102500915527 1.831621766090393 0.1790818572044373 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5395102500915527 1.831621766090393 0.1790818572044373 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7694121599197388 1.816561579704285 0.03192228823900223 -0.7694121599197388 1.816561579704285 0.03192228823900223 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.7185090184211731 1.866551876068115 0.03108330257236958 -0.7185090184211731 1.866551876068115 0.03108330257236958 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.7789088487625122 1.840326070785523 -0.01964796893298626 -0.7789088487625122 1.840326070785523 -0.01964796893298626 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.721648633480072 1.884884715080261 -0.0176821406930685 -0.721648633480072 1.884884715080261 -0.0176821406930685 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.6637756824493408 1.907618165016174 -0.01770789735019207 -0.6637756824493408 1.907618165016174 -0.01770789735019207 -0.7765349745750427 1.862605094909668 -0.08081070333719254 -0.7765349745750427 1.862605094909668 -0.08081070333719254 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.6023380160331726 1.907618165016174 0.02810462191700935 -0.6023380160331726 1.907618165016174 0.02810462191700935 -0.7276830077171326 1.896474838256836 -0.07735307514667511 -0.7276830077171326 1.896474838256836 -0.07735307514667511 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6013118028640747 1.918723344802856 -0.0167639497667551 -0.6013118028640747 1.918723344802856 -0.0167639497667551 -0.6637756824493408 1.918723344802856 -0.0708390548825264 -0.6637756824493408 1.918723344802856 -0.0708390548825264 -0.7765349745750427 1.868109583854675 -0.1344994306564331 -0.7765349745750427 1.868109583854675 -0.1344994306564331 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.7254838347434998 1.896474838256836 -0.1368977874517441 -0.7254838347434998 1.896474838256836 -0.1368977874517441 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.6013118028640747 1.918723344802856 -0.06880220025777817 -0.6013118028640747 1.918723344802856 -0.06880220025777817 -0.6637756824493408 1.923628926277161 -0.1305911093950272 -0.6637756824493408 1.923628926277161 -0.1305911093950272 -0.7681390643119812 1.864772439002991 -0.1993826925754547 -0.7681390643119812 1.864772439002991 -0.1993826925754547 -0.7100864052772522 1.889798879623413 -0.1963487863540649 -0.7100864052772522 1.889798879623413 -0.1963487863540649 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5993821024894714 1.918723344802856 -0.1292334944009781 -0.5993821024894714 1.918723344802856 -0.1292334944009781 -0.6636860370635986 1.908910393714905 -0.1960339397192001 -0.6636860370635986 1.908910393714905 -0.1960339397192001 -0.7571017146110535 1.854760766029358 -0.2666657269001007 -0.7571017146110535 1.854760766029358 -0.2666657269001007 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.6893312931060791 1.878122568130493 -0.2706334590911865 -0.6893312931060791 1.878122568130493 -0.2706334590911865 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.6013118028640747 1.913129925727844 -0.1947008073329926 -0.6013118028640747 1.913129925727844 -0.1947008073329926 -0.6547057628631592 1.899369478225708 -0.2707102298736572 -0.6547057628631592 1.899369478225708 -0.2707102298736572 -0.742384135723114 1.849756956100464 -0.2961414754390717 -0.742384135723114 1.849756956100464 -0.2961414754390717 -0.6774798035621643 1.873115420341492 -0.2989807724952698 -0.6774798035621643 1.873115420341492 -0.2989807724952698 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.5953081846237183 1.902366518974304 -0.2694905698299408 -0.5953081846237183 1.902366518974304 -0.2694905698299408 -0.6453258395195007 1.887944936752319 -0.2983261346817017 -0.6453258395195007 1.887944936752319 -0.2983261346817017 -0.7028328776359558 1.811398148536682 -0.3453316688537598 -0.7028328776359558 1.811398148536682 -0.3453316688537598 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.5963053107261658 1.890616059303284 -0.2966291010379791 -0.5963053107261658 1.890616059303284 -0.2966291010379791 -0.6595970392227173 1.831865787506104 -0.3451592326164246 -0.6595970392227173 1.831865787506104 -0.3451592326164246 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.6302624344825745 1.831865787506104 -0.3451592326164246 -0.6302624344825745 1.831865787506104 -0.3451592326164246 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.5841007232666016 1.831865787506104 -0.3430174887180328 -0.5841007232666016 1.831865787506104 -0.3430174887180328 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"378\" source=\"#ID273\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID271\">\r\n\t\t\t\t\t<float_array count=\"1134\" id=\"ID274\">-0.9971698257805797 0.0005629392510087631 -0.07517992851904062 -0.9900549072726571 -0.002353833251243577 -0.1406617931577565 -0.9976197890163987 -0.001197338959292204 -0.06894434670292125 0.9976197890163987 0.001197338959292204 0.06894434670292125 0.9900549072726571 0.002353833251243577 0.1406617931577565 0.9971698257805797 -0.0005629392510087631 0.07517992851904062 -0.999998772192228 0.001297841649654843 -0.000878191943182305 0.999998772192228 -0.001297841649654843 0.000878191943182305 -0.9907504747950866 -0.003274201081718127 -0.1356568328562443 0.9907504747950866 0.003274201081718127 0.1356568328562443 -0.9996866423995363 -0.01288064492216578 0.02146406285703578 0.9996866423995363 0.01288064492216578 -0.02146406285703578 -1 0 0 1 -0 -0 -0.9977881690244589 -0.0004287993236961485 -0.06647244456131977 0.9977881690244589 0.0004287993236961485 0.06647244456131977 -0.9855234423644645 -0.01500868463078184 0.1688735738229934 0.9855234423644645 0.01500868463078184 -0.1688735738229934 -0.9862287710324551 -8.267499692004867e-018 0.1653868531286971 0.9862287710324551 8.267499692004867e-018 -0.1653868531286971 -0.9916285418780479 -0.004290259579512917 -0.1290520383626579 0.9916285418780479 0.004290259579512917 0.1290520383626579 -0.985749350796998 -0.03215857008479352 0.1651182720761036 0.985749350796998 0.03215857008479352 -0.1651182720761036 -1 0 0 1 -0 -0 -0.9862255066865959 0.0001385711715906435 0.1654062597328094 0.9862255066865959 -0.0001385711715906435 -0.1654062597328094 -0.9984170026492772 -0.005688992607919956 -0.05595644899330283 0.9984170026492772 0.005688992607919956 0.05595644899330283 -0.9410469154779283 0.001844830909214399 0.3382710443836322 0.9410469154779283 -0.001844830909214399 -0.3382710443836322 -0.9472759744194746 -0.005534136034595238 0.3203710374331382 0.9472759744194746 0.005534136034595238 -0.3203710374331382 -0.9399700399246553 0.002496395944578447 0.3412478454896523 0.9399700399246553 -0.002496395944578447 -0.3412478454896523 -0.9935588885764284 -0.01612484945244063 -0.1121638273281921 0.9935588885764284 0.01612484945244063 0.1121638273281921 -0.9613973563932222 -0.002189225636765583 0.2751551024626563 0.9613973563932222 0.002189225636765583 -0.2751551024626563 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 -0.9334254836337974 0.003566250945204206 0.3587536039640679 0.9334254836337974 -0.003566250945204206 -0.3587536039640679 -0.9986374256045345 -0.003641894733685418 -0.05205793680791224 0.9986374256045345 0.003641894733685418 0.05205793680791224 -0.8268226581498774 0.009422437119762919 0.5623837743469269 0.8268226581498774 -0.009422437119762919 -0.5623837743469269 -0.8168016371698678 0.01709359352879232 0.5766653228493074 0.8168016371698678 -0.01709359352879232 -0.5766653228493074 -0.8163226983969137 -8.631410377862732e-005 0.5775960912539633 0.8163226983969137 8.631410377862732e-005 -0.5775960912539633 -0.9866427530423128 0.0003843367440036173 0.1628985271706077 0.9866427530423128 -0.0003843367440036173 -0.1628985271706077 -0.9999089323302191 2.494934331033375e-019 -0.01349544538876384 0.9999089323302191 -2.494934331033375e-019 0.01349544538876384 -0.7779781572466521 0.0170058673868699 0.6280611334269329 0.7779781572466521 -0.0170058673868699 -0.6280611334269329 -0.8419596631426931 0.02106523826798618 0.5391290952799299 0.8419596631426931 -0.02106523826798618 -0.5391290952799299 -1 0 0 1 -0 -0 -0.7541959415760483 0.0251328646306682 0.6561682869704039 0.7541959415760483 -0.0251328646306682 -0.6561682869704039 -0.9237461769474246 0.001311369236523803 0.3830029776460528 0.9237461769474246 -0.001311369236523803 -0.3830029776460528 -0.5722869724216011 0.04950486075750642 0.8185578110053667 0.5722869724216011 -0.04950486075750642 -0.8185578110053667 -0.6404317868099004 0.01381361012202974 0.7678908194651599 0.6404317868099004 -0.01381361012202974 -0.7678908194651599 -0.5511097648203741 0.03972113168969944 0.8334868078241682 0.5511097648203741 -0.03972113168969944 -0.8334868078241682 -0.6923513999901381 0.01264498783236419 0.7214496816926425 0.6923513999901381 -0.01264498783236419 -0.7214496816926425 -0.9579561741255267 -0.01503452474447218 0.2865203858724391 0.9579561741255267 0.01503452474447218 -0.2865203858724391 -0.4447687272850421 0.0557822628515867 0.8939066608882611 0.4447687272850421 -0.0557822628515867 -0.8939066608882611 -0.7536840750669706 0.06163170476199874 0.6543407735718255 0.7536840750669706 -0.06163170476199874 -0.6543407735718255 -0.3458396898734605 0.06829452254788901 0.9358048766159453 0.3458396898734605 -0.06829452254788901 -0.9358048766159453 -0.718680268982603 0.02684640343212302 0.6948222374088595 0.718680268982603 -0.02684640343212302 -0.6948222374088595 -0.8902152677398911 -0.01369281234898472 0.455334255215627 0.8902152677398911 0.01369281234898472 -0.455334255215627 -0.1570689378202707 0.04904402033157927 0.9863691159204689 0.1570689378202707 -0.04904402033157927 -0.9863691159204689 -0.02443527989440703 0.06659550801904349 0.9974808045311787 0.02443527989440703 -0.06659550801904349 -0.9974808045311787 -0.2630385832787527 0.04030153307416526 0.9639431986059028 0.2630385832787527 -0.04030153307416526 -0.9639431986059028 -0.08336213897397456 0.06610197637446741 0.9943245358056257 0.08336213897397456 -0.06610197637446741 -0.9943245358056257 -0.7783090938606397 0.06431607241494514 0.6245785757156144 0.7783090938606397 -0.06431607241494514 -0.6245785757156144 0.06493009687762971 0.06947966491896254 0.9954680601014834 -0.06493009687762971 -0.06947966491896254 -0.9954680601014834 -0.8957292464329562 -0.06402755354882821 0.4399654412237403 0.8957292464329562 0.06402755354882821 -0.4399654412237403 0.1276482232535163 0.09421563455280727 0.9873344647615783 -0.1276482232535163 -0.09421563455280727 -0.9873344647615783 -0.2787761319735821 0.07301649224843831 0.9575763468787132 0.2787761319735821 -0.07301649224843831 -0.9575763468787132 -0.6891604595520967 0.03963249604408594 0.72352410205 0.6891604595520967 -0.03963249604408594 -0.72352410205 -0.8617532152450977 0.001114275120065018 0.507326477138433 0.8617532152450977 -0.001114275120065018 -0.507326477138433 0.2920834002159803 0.07212648049786291 0.953669260346197 -0.2920834002159803 -0.07212648049786291 -0.953669260346197 0.3571216532956693 0.06599922729284308 0.9317232565220831 -0.3571216532956693 -0.06599922729284308 -0.9317232565220831 0.4506015337891731 0.06628168920434097 0.8902611950562956 -0.4506015337891731 -0.06628168920434097 -0.8902611950562956 0.2693223248807161 0.03468885815107804 0.9624251495264555 0.2698092361900396 0.03894437952874851 0.9621259332175119 -0.2698092361900396 -0.03894437952874851 -0.9621259332175119 -0.2693223248807161 -0.03468885815107804 -0.9624251495264555 0.4411122495725708 0.0537295665045241 0.8958421272524874 -0.4411122495725708 -0.0537295665045241 -0.8958421272524874 0.5089459389656588 0.08994830854849475 0.8560860546695225 -0.5089459389656588 -0.08994830854849475 -0.8560860546695225 -0.893140624757341 -0.001746560783355491 0.4497741365769009 0.893140624757341 0.001746560783355491 -0.4497741365769009 0.5746451336020118 0.0794064839342916 0.8145413315091624 -0.5746451336020118 -0.0794064839342916 -0.8145413315091624 0.2166944550745142 0.08239317814647433 0.9727563298868236 -0.2166944550745142 -0.08239317814647433 -0.9727563298868236 -0.2291519337417415 0.08885238018855346 0.9693269034733584 0.2291519337417415 -0.08885238018855346 -0.9693269034733584 -0.6433487104130216 0.05695835373892637 0.7634514933833408 0.6433487104130216 -0.05695835373892637 -0.7634514933833408 -0.8603321617051047 0.04400776713950057 0.5078305701385226 0.8603321617051047 -0.04400776713950057 -0.5078305701385226 0.2550527083687899 0.09062810501618281 0.962670588797082 -0.2550527083687899 -0.09062810501618281 -0.962670588797082 0.2682109604760207 0.08039226475316619 0.9599999814835348 -0.2682109604760207 -0.08039226475316619 -0.9599999814835348 0.5040590655039837 0.06903469085750864 0.8609057265121769 -0.5040590655039837 -0.06903469085750864 -0.8609057265121769 0.5691070498781491 0.06388243088221356 0.8197781412086864 -0.5691070498781491 -0.06388243088221356 -0.8197781412086864 0.6651248264792729 0.08194838488496878 0.7422219529329904 -0.6651248264792729 -0.08194838488496878 -0.7422219529329904 -0.941859161629607 0.05197455383669319 0.3319638013516687 0.941859161629607 -0.05197455383669319 -0.3319638013516687 0.6004182426841933 0.09502246409311689 0.7940205697396621 -0.6004182426841933 -0.09502246409311689 -0.7940205697396621 0.6841206473431174 0.07791754646142467 0.7251950053828735 -0.6841206473431174 -0.07791754646142467 -0.7251950053828735 0.267669686032973 0.09407481440231033 0.9589071219227546 -0.267669686032973 -0.09407481440231033 -0.9589071219227546 -0.2313062834227052 0.09844300790988127 0.9678875851269249 0.2313062834227052 -0.09844300790988127 -0.9678875851269249 -0.619244317071901 0.08796980742174308 0.7802549511258077 0.619244317071901 -0.08796980742174308 -0.7802549511258077 -0.8512868441637578 0.07117766962833931 0.519850409541042 0.8512868441637578 -0.07117766962833931 -0.519850409541042 0.2193054435540003 0.09994882204899158 0.9705232379487894 -0.2193054435540003 -0.09994882204899158 -0.9705232379487894 0.8956747356556694 0.0008618938289220829 0.4447089217085428 -0.8956747356556694 -0.0008618938289220829 -0.4447089217085428 0.960647311568589 0.006749071895014515 0.2776890217574298 -0.960647311568589 -0.006749071895014515 -0.2776890217574298 0.6701335758696255 0.08537633870501175 0.7373139570640962 -0.6701335758696255 -0.08537633870501175 -0.7373139570640962 -0.9963151381735486 0.0103614777137824 0.08513979813113079 0.9963151381735486 -0.0103614777137824 -0.08513979813113079 0.6518451327680904 0.08411166198014565 0.7536731063302501 -0.6518451327680904 -0.08411166198014565 -0.7536731063302501 0.6993131868940091 0.07803092851825916 0.7105436234537067 -0.6993131868940091 -0.07803092851825916 -0.7105436234537067 0.6622904416225062 0.08497656868953818 0.7444127576212123 -0.6622904416225062 -0.08497656868953818 -0.7444127576212123 0.3142247324526497 0.08615424789633501 0.9454312577255299 -0.3142247324526497 -0.08615424789633501 -0.9454312577255299 -0.193200246653653 0.1192240843693557 0.9738887423105661 0.193200246653653 -0.1192240843693557 -0.9738887423105661 -0.594527126720041 0.1033651737012722 0.7974039982717156 0.594527126720041 -0.1033651737012722 -0.7974039982717156 -0.9837759202990764 0.00754899880848756 -0.1792427160492016 0.9837759202990764 -0.00754899880848756 0.1792427160492016 -0.8252223923057854 0.07354181259994058 0.5599996473540243 0.8252223923057854 -0.07354181259994058 -0.5599996473540243 -0.9949542336215003 0.04853849320883647 0.08780710492704381 0.9949542336215003 -0.04853849320883647 -0.08780710492704381 0.6975918817599495 0.08525706534140216 0.7114048069221802 -0.6975918817599495 -0.08525706534140216 -0.7114048069221802 0.7002563485426032 0.09092126520727779 0.7080779405255386 -0.7002563485426032 -0.09092126520727779 -0.7080779405255386 0.6677794435755355 0.08506167003832711 0.739483013346648 -0.6677794435755355 -0.08506167003832711 -0.739483013346648 0.3781520398090869 0.1064682548120612 0.9196007533193418 -0.3781520398090869 -0.1064682548120612 -0.9196007533193418 -0.1213382593086127 0.2048805149604576 0.971236841052425 0.1213382593086127 -0.2048805149604576 -0.971236841052425 -0.5551054568074277 0.1581458233571667 0.8166075130546502 0.5551054568074277 -0.1581458233571667 -0.8166075130546502 -0.9901371474068906 0.112258842923586 -0.08382351406617986 0.9901371474068906 -0.112258842923586 0.08382351406617986 -0.803288234902613 0.1033987854605901 0.5865464200149202 0.803288234902613 -0.1033987854605901 -0.5865464200149202 -0.9833532129007401 0.1393681738100481 0.1165888965838687 0.9833532129007401 -0.1393681738100481 -0.1165888965838687 -0.9757579836748939 0.1415666458278183 0.1668988977907482 0.9757579836748939 -0.1415666458278183 -0.1668988977907482 0.7419975155705617 0.1391518965907396 0.655802132172742 -0.7419975155705617 -0.1391518965907396 -0.655802132172742 0.6897713813801563 0.1108430655201028 0.7154923173976208 -0.6897713813801563 -0.1108430655201028 -0.7154923173976208 0.6647871628790784 0.1067286098731158 0.7393693474209881 -0.6647871628790784 -0.1067286098731158 -0.7393693474209881 0.4461970877580111 0.1722484814124183 0.8782019241196101 -0.4461970877580111 -0.1722484814124183 -0.8782019241196101 -0.05563229514765632 0.5289117773130566 0.8468514507020388 0.05563229514765632 -0.5289117773130566 -0.8468514507020388 -0.435165702110851 0.4515896568508939 0.7789079493314098 0.435165702110851 -0.4515896568508939 -0.7789079493314098 -0.9351368442133152 0.1146554042918252 -0.3352211521688928 0.9351368442133152 -0.1146554042918252 0.3352211521688928 -0.978895673913228 0.147226222079519 0.1417310803111279 0.978895673913228 -0.147226222079519 -0.1417310803111279 -0.7476966889115523 0.4263167318637315 0.5091205216093028 0.7476966889115523 -0.4263167318637315 -0.5091205216093028 -0.8950751141167099 0.4457783992915338 0.01105254785271177 0.8950751141167099 -0.4457783992915338 -0.01105254785271177 -0.8045196442390664 0.3681117434220877 -0.4660921436671046 0.8045196442390664 -0.3681117434220877 0.4660921436671046 -0.959812087916502 0.2719516153311274 0.0693042192666197 0.959812087916502 -0.2719516153311274 -0.0693042192666197 0.6459848051780541 0.5996263944146406 0.4723894776562762 -0.6459848051780541 -0.5996263944146406 -0.4723894776562762 0.7457844295604762 0.1824636226309696 0.640712580679932 -0.7457844295604762 -0.1824636226309696 -0.640712580679932 0.5768067994535729 0.1625941184643131 0.8005354887479621 -0.5768067994535729 -0.1625941184643131 -0.8005354887479621 0.4503136938074429 0.4919927923707287 0.7450910477416499 -0.4503136938074429 -0.4919927923707287 -0.7450910477416499 -0.7666597499316146 0.508869338847824 -0.3915160581832792 0.7666597499316146 -0.508869338847824 0.3915160581832792 -0.965191148852219 0.2074110258106779 0.1593320826120586 0.965191148852219 -0.2074110258106779 -0.1593320826120586 0.6720191798213647 0.2479001060540849 0.6978078240967164 0.915635216907809 0.1723123688035635 0.3632087514302132 -0.915635216907809 -0.1723123688035635 -0.3632087514302132 -0.6720191798213647 -0.2479001060540849 -0.6978078240967164 -0.5180563146018837 0.5370719857658701 -0.6657111513311301 0.5180563146018837 -0.5370719857658701 0.6657111513311301 -0.9061218933420621 0.4189367196019224 0.05861006206597097 0.9061218933420621 -0.4189367196019224 -0.05861006206597097 0.6184195938279667 0.7458954947469703 0.2473805103192755 -0.6184195938279667 -0.7458954947469703 -0.2473805103192755 -0.6923879750287439 0.6725876114897066 -0.2611987689598995 0.6923879750287439 -0.6725876114897066 0.2611987689598995 -0.9606390840088881 0.2313098313454677 0.1538450915612705 0.9606390840088881 -0.2313098313454677 -0.1538450915612705 0.3069822403524479 0.7901164364290533 0.5305449283452308 -0.3069822403524479 -0.7901164364290533 -0.5305449283452308 0.3746982762224805 0.3208309892232409 0.8698670462489877 -0.3746982762224805 -0.3208309892232409 -0.8698670462489877 -0.1488282554927515 0.9155661090944683 -0.3736159127293701 0.1488282554927515 -0.9155661090944683 0.3736159127293701 -0.8374524352939948 0.4900488263066086 0.241920578818076 0.8374524352939948 -0.4900488263066086 -0.241920578818076 0.02013432366244061 0.9948608492919433 0.09922952966113069 -0.02013432366244061 -0.9948608492919433 -0.09922952966113069 -0.5180285247407579 0.8233112786731716 0.2319590178554426 0.5180285247407579 -0.8233112786731716 -0.2319590178554426 -0.975224393760161 0.2198350414258225 0.02469689001540941 0.975224393760161 -0.2198350414258225 -0.02469689001540941 0.2427050512818961 0.9516342080442651 -0.1883788527468427 -0.2427050512818961 -0.9516342080442651 0.1883788527468427 -0.2346210444548571 0.9689518614398232 0.07800804901555697 0.2346210444548571 -0.9689518614398232 -0.07800804901555697 -0.819474038561389 0.5635690772945599 0.1041738702422332 0.819474038561389 -0.5635690772945599 -0.1041738702422332 -0.05451759974655495 0.9941628349827284 0.0931025716990618 0.05451759974655495 -0.9941628349827284 -0.0931025716990618 -0.02236446271528624 0.9851014015947033 0.1705141031809617 0.02236446271528624 -0.9851014015947033 -0.1705141031809617 -0.4496591405956503 0.886703902231043 0.1075306795617989 0.4496591405956503 -0.886703902231043 -0.1075306795617989 -0.9776483495819677 0.2082474605589881 -0.02892576239941774 0.9776483495819677 -0.2082474605589881 0.02892576239941774 0.1956975435479542 0.9610457712487652 -0.195175554345729 -0.1956975435479542 -0.9610457712487652 0.195175554345729 -0.04381310747323911 0.9905954208196149 0.1296191492980425 0.04381310747323911 -0.9905954208196149 -0.1296191492980425 -0.2045470172969875 0.9728342701465432 0.1084158685034084 0.2045470172969875 -0.9728342701465432 -0.1084158685034084 -0.8061701085817001 0.590311466549336 -0.04027565629188418 0.8061701085817001 -0.590311466549336 0.04027565629188418 -0.01476168874444083 0.9980629191000056 0.06043593354113075 0.01476168874444083 -0.9980629191000056 -0.06043593354113075 -0.419392606116148 0.903488272462289 -0.08842388511151307 0.419392606116148 -0.903488272462289 0.08842388511151307 -0.9604116408479968 0.2414820489055198 -0.1389096835359247 0.9604116408479968 -0.2414820489055198 0.1389096835359247 0.06838160924233415 0.9976586547835161 -0.001078912866593481 -0.06838160924233415 -0.9976586547835161 0.001078912866593481 0.04222899237231256 0.999029792746431 0.0124974160626191 -0.04222899237231256 -0.999029792746431 -0.0124974160626191 -0.1703502280819691 0.9826233292457884 -0.07370340978777087 0.1703502280819691 -0.9826233292457884 0.07370340978777087 -0.743332148657051 0.6421560784117094 -0.1873309577506773 0.743332148657051 -0.6421560784117094 0.1873309577506773 -0.3686957111908107 0.9044387687211277 -0.2146019249301191 0.3686957111908107 -0.9044387687211277 0.2146019249301191 -0.8917894335220302 0.2447762468689626 -0.3805209524155026 0.8917894335220302 -0.2447762468689626 0.3805209524155026 0.06630971025854703 0.9976983597810961 0.01417763081541426 -0.06630971025854703 -0.9976983597810961 -0.01417763081541426 0.04403933478065045 0.9976015098838473 -0.05340191447453794 -0.04403933478065045 -0.9976015098838473 0.05340191447453794 -0.2225625318643727 0.9576445604125241 -0.1827096475898951 0.2225625318643727 -0.9576445604125241 0.1827096475898951 -0.7124877891680587 0.6192867656417471 -0.3299167352339004 0.7124877891680587 -0.6192867656417471 0.3299167352339004 0.05913006371641766 0.998026649424209 0.02112918843636627 -0.05913006371641766 -0.998026649424209 -0.02112918843636627 -0.4033096759206618 0.8742863152187486 -0.2701198702983436 0.4033096759206618 -0.8742863152187486 0.2701198702983436 -0.8134171882056506 0.211723434582368 -0.5417800893169285 0.8134171882056506 -0.211723434582368 0.5417800893169285 0.01657746807843397 0.9998193993815981 -0.009292802178504271 -0.01657746807843397 -0.9998193993815981 0.009292802178504271 -0.02580076011921999 0.9936985509212223 -0.1090757107441127 0.02580076011921999 -0.9936985509212223 0.1090757107441127 -0.2734955781683317 0.9192954085383365 -0.2830125802198605 0.2734955781683317 -0.9192954085383365 0.2830125802198605 -0.5880241288714962 0.5915554449308768 -0.5516246726149496 0.5880241288714962 -0.5915554449308768 0.5516246726149496 -0.3472030503156433 0.7613958998613115 -0.5474726710310721 0.3472030503156433 -0.7613958998613115 0.5474726710310721 -0.6116960464249118 0.289453862162385 -0.7362366524884584 0.6116960464249118 -0.289453862162385 0.7362366524884584 0.002326696679450597 0.9915085948100195 -0.1300203557156428 -0.002326696679450597 -0.9915085948100195 0.1300203557156428 -0.01557989416257686 0.9619313418665531 -0.2728467709772202 0.01557989416257686 -0.9619313418665531 0.2728467709772202 -0.1534675911282402 0.7918643444445248 -0.5910994488838054 0.1534675911282402 -0.7918643444445248 0.5910994488838054 -0.3471650544122291 0.4496793716837986 -0.8229610486997658 0.3471650544122291 -0.4496793716837986 0.8229610486997658 0.009548372349849251 0.9875451512375372 -0.1570458622590819 -0.009548372349849251 -0.9875451512375372 0.1570458622590819 -0.009566344304074151 0.8013399289201441 -0.5981327640038742 0.009566344304074151 -0.8013399289201441 0.5981327640038742 -0.1286511849964354 0.5174474660113633 -0.8459887661886724 0.1286511849964354 -0.5174474660113633 0.8459887661886724 -0.2579593021808977 0.3380197859589668 -0.905096471498259 0.2579593021808977 -0.3380197859589668 0.905096471498259 0.00101513059537807 0.9767277244806438 -0.2144805859296778 -0.00101513059537807 -0.9767277244806438 0.2144805859296778 0.01572335456579693 0.4801689348661454 -0.8770351019832158 -0.01572335456579693 -0.4801689348661454 0.8770351019832158 -0.08149115589158218 0.3325277535703116 -0.939566115085541 0.08149115589158218 -0.3325277535703116 0.939566115085541 -0.0316252922276885 0.8553539284748959 -0.5170778451394682 0.0316252922276885 -0.8553539284748959 0.5170778451394682 0.006817937470603061 0.4762750335139073 -0.8792699290775122 -0.006817937470603061 -0.4762750335139073 0.8792699290775122 5.835773135693002e-018 0.3078858683395854 -0.9514232980523336 -5.835773135693002e-018 -0.3078858683395854 0.9514232980523336 0 0.3078858683395855 -0.9514232980523336 -0 -0.3078858683395855 0.9514232980523336 0.02307212455675351 0.3132164083073376 -0.9494014738957851 -0.02307212455675351 -0.3132164083073376 0.9494014738957851 -9.880966486775119e-018 0.3078858683395854 -0.9514232980523336 9.880966486775119e-018 -0.3078858683395854 0.9514232980523336 -0.02929681047929539 0.4931386002173482 -0.8694573122766952 0.02929681047929539 -0.4931386002173482 0.8694573122766952 0.01001146315705132 0.3023485085216996 -0.9531448735633838 -0.01001146315705132 -0.3023485085216996 0.9531448735633838 0.01611345675114597 0.2259029614738796 -0.97401653400179 -0.01611345675114597 -0.2259029614738796 0.97401653400179</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"378\" source=\"#ID274\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID272\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID270\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID271\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"297\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID272\" />\r\n\t\t\t\t\t<p>0 1 2 0 2 6 2 1 8 10 0 6 6 2 12 2 8 14 10 6 16 2 14 12 6 12 18 14 8 20 16 6 18 22 10 16 12 14 24 18 12 26 14 20 28 30 16 18 32 22 16 26 12 24 14 28 24 34 18 26 28 20 36 32 16 30 30 18 34 38 22 32 26 24 40 24 28 42 34 26 44 28 36 46 32 30 48 30 34 50 52 38 32 24 42 40 26 40 54 28 56 42 34 44 58 26 54 44 28 46 56 48 30 50 52 32 48 50 34 58 60 38 52 54 40 62 58 44 64 44 54 66 48 50 68 52 48 70 50 58 72 60 52 74 54 62 76 58 64 78 64 44 66 54 76 66 70 48 68 68 50 72 74 52 70 72 58 78 80 60 74 78 64 82 64 66 84 66 76 86 70 68 88 68 72 90 92 74 70 72 78 94 96 80 74 78 82 98 64 84 82 84 66 86 86 76 100 70 88 92 88 68 90 90 72 94 96 74 92 94 78 98 98 82 102 82 84 104 84 86 106 86 100 108 92 88 110 88 90 112 90 94 114 116 92 117 94 98 120 98 102 122 82 104 102 84 106 104 86 108 106 108 100 124 110 88 112 92 110 117 112 90 114 114 94 120 120 98 122 122 102 126 102 104 128 104 106 130 106 108 132 108 124 134 110 112 136 117 110 138 112 114 136 114 120 140 120 122 142 102 128 126 122 126 144 104 130 128 106 132 130 132 108 134 134 124 146 110 136 138 136 114 140 140 120 142 142 122 144 126 128 148 144 126 150 128 130 152 130 132 154 132 134 156 134 146 158 138 136 160 136 140 160 140 142 162 142 144 164 128 152 148 126 148 150 144 150 166 130 154 152 132 156 154 156 134 158 158 146 168 160 140 162 162 142 164 164 144 166 148 152 170 150 148 172 166 150 174 152 154 176 154 156 178 156 158 180 168 146 182 158 168 184 152 176 170 172 148 170 150 172 174 154 178 176 156 180 178 158 184 180 168 182 186 168 186 184 170 176 188 172 170 190 174 172 192 176 178 194 178 180 196 180 184 198 186 182 200 184 186 202 176 194 188 190 170 188 172 190 192 178 196 194 180 198 196 198 184 202 186 200 204 182 206 200 202 186 204 188 194 208 190 188 210 192 190 212 194 196 214 196 198 216 198 202 218 200 220 204 206 222 200 202 204 224 194 214 208 210 188 208 190 210 212 196 216 214 198 218 216 202 224 218 204 220 226 220 200 228 200 222 230 204 226 224 208 214 232 234 210 208 212 210 236 214 216 238 226 220 240 220 228 240 200 230 228 222 242 230 232 214 238 244 208 245 234 208 244 210 234 236 240 228 248 230 250 228 230 242 250 252 244 245 236 234 244 248 228 254 250 254 228 242 256 250 244 252 258 236 244 260 248 254 262 264 254 250 250 256 264 266 258 252 260 244 258 268 262 254 264 268 254 256 270 264 272 266 252 268 274 262 264 276 268 264 270 276 278 266 272 262 274 280 282 274 268 276 282 268 270 284 276 286 278 272 262 280 286 274 288 280 282 290 274 276 292 282 276 284 292 280 278 286 288 294 280 274 290 288 282 296 290 292 296 282 284 298 292 280 294 278 288 300 294 290 302 288 296 304 290 306 296 292 298 306 292 302 300 288 290 304 302 296 308 304 306 308 296 298 310 306 302 312 300 304 314 302 308 316 304 306 318 308 310 318 306 320 312 302 314 320 302 304 316 314 308 322 316 318 322 308 310 324 318 314 326 320 316 328 314 322 330 316 332 322 318 324 332 318 328 326 314 316 330 328 334 330 322 332 334 322 324 336 332 328 338 326 330 340 328 334 342 330 332 344 334 332 336 344 328 346 338 340 346 328 330 348 340 342 348 330 334 350 342 334 344 350 344 336 352 340 354 346 340 348 354 342 356 348 342 350 356 344 358 350 344 352 358 348 360 354 348 356 362 350 364 356 350 358 366 348 362 360 356 368 362 356 370 368 362 372 360 362 368 374 362 374 372 372 374 376</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"297\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID272\" />\r\n\t\t\t\t\t<p>3 4 5 7 3 5 9 4 3 7 5 11 13 3 7 15 9 3 17 7 11 13 15 3 19 13 7 21 9 15 19 7 17 17 11 23 25 15 13 27 13 19 29 21 15 19 17 31 17 23 33 25 13 27 25 29 15 27 19 35 37 21 29 31 17 33 35 19 31 33 23 39 41 25 27 43 29 25 45 27 35 47 37 29 49 31 33 51 35 31 33 39 53 41 43 25 55 41 27 43 57 29 59 45 35 45 55 27 57 47 29 51 31 49 49 33 53 59 35 51 53 39 61 63 41 55 65 45 59 67 55 45 69 51 49 71 49 53 73 59 51 75 53 61 77 63 55 79 65 59 67 45 65 67 77 55 69 49 71 73 51 69 71 53 75 79 59 73 75 61 81 83 65 79 85 67 65 87 77 67 89 69 71 91 73 69 71 75 93 95 79 73 75 81 97 99 83 79 83 85 65 87 67 85 101 77 87 93 89 71 91 69 89 95 73 91 93 75 97 99 79 95 103 83 99 105 85 83 107 87 85 109 101 87 111 89 93 113 91 89 115 95 91 118 93 119 121 99 95 123 103 99 103 105 83 105 107 85 107 109 87 125 101 109 113 89 111 118 111 93 115 91 113 121 95 115 123 99 121 127 103 123 129 105 103 131 107 105 133 109 107 135 125 109 137 113 111 139 111 118 137 115 113 141 121 115 143 123 121 127 129 103 145 127 123 129 131 105 131 133 107 135 109 133 147 125 135 139 137 111 141 115 137 143 121 141 145 123 143 149 129 127 151 127 145 153 131 129 155 133 131 157 135 133 159 147 135 161 137 139 161 141 137 163 143 141 165 145 143 149 153 129 151 149 127 167 151 145 153 155 131 155 157 133 159 135 157 169 147 159 163 141 161 165 143 163 167 145 165 171 153 149 173 149 151 175 151 167 177 155 153 179 157 155 181 159 157 183 147 169 185 169 159 171 177 153 171 149 173 175 173 151 177 179 155 179 181 157 181 185 159 187 183 169 185 187 169 189 177 171 191 171 173 193 173 175 195 179 177 197 181 179 199 185 181 201 183 187 203 187 185 189 195 177 189 171 191 193 191 173 195 197 179 197 199 181 203 185 199 205 201 187 201 207 183 205 187 203 209 195 189 211 189 191 213 191 193 215 197 195 217 199 197 219 203 199 205 221 201 201 223 207 225 205 203 209 215 195 209 189 211 213 211 191 215 217 197 217 219 199 219 225 203 227 221 205 229 201 221 231 223 201 225 227 205 233 215 209 209 211 235 237 211 213 239 217 215 241 221 227 241 229 221 229 231 201 231 243 223 239 215 233 246 209 247 247 209 235 237 235 211 249 229 241 229 251 231 251 243 231 246 247 253 247 235 237 255 229 249 229 255 251 251 257 243 259 253 247 261 247 237 263 255 249 251 255 265 265 257 251 253 259 267 259 247 261 255 263 269 255 269 265 265 271 257 253 267 273 263 275 269 269 277 265 277 271 265 273 267 279 281 275 263 269 275 283 269 283 277 277 285 271 273 279 287 287 281 263 281 289 275 275 291 283 283 293 277 293 285 277 287 279 281 281 295 289 289 291 275 291 297 283 283 297 293 293 299 285 279 295 281 295 301 289 289 303 291 291 305 297 293 297 307 293 307 299 289 301 303 303 305 291 305 309 297 297 309 307 307 311 299 301 313 303 303 315 305 305 317 309 309 319 307 307 319 311 303 313 321 303 321 315 315 317 305 317 323 309 309 323 319 319 325 311 321 327 315 315 329 317 317 331 323 319 323 333 319 333 325 315 327 329 329 331 317 323 331 335 323 335 333 333 337 325 327 339 329 329 341 331 331 343 335 335 345 333 345 337 333 339 347 329 329 347 341 341 349 331 331 349 343 343 351 335 351 345 335 353 337 345 347 355 341 355 349 341 349 357 343 357 351 343 351 359 345 359 353 345 355 361 349 363 357 349 357 365 351 367 359 351 361 363 349 363 369 357 369 371 357 361 373 363 375 369 363 373 375 363 377 375 373</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID275\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID276\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID280\">-0.7116498351097107 1.906256556510925 0.2465686351060867 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6608441472053528 1.925890922546387 0.04520654678344727</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID280\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID277\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID281\">-0.435165702110851 0.4515896568508939 0.7789079493314098 -0.06368333310271433 0.7816356971273526 0.620475680475203 -0.05563229514765632 0.5289117773130566 0.8468514507020388 0.05563229514765632 -0.5289117773130566 -0.8468514507020388 0.06368333310271433 -0.7816356971273526 -0.620475680475203 0.435165702110851 -0.4515896568508939 -0.7789079493314098 0.4503136938074429 0.4919927923707287 0.7450910477416499 -0.4503136938074429 -0.4919927923707287 -0.7450910477416499 -0.357955641606925 0.726460486063723 0.5866199117229437 0.357955641606925 -0.726460486063723 -0.5866199117229437 0.3587988135093599 0.7857758001028901 0.5038053229144552 -0.3587988135093599 -0.7857758001028901 -0.5038053229144552 -0.7476966889115523 0.4263167318637315 0.5091205216093028 0.7476966889115523 -0.4263167318637315 -0.5091205216093028 0.6459848051780541 0.5996263944146406 0.4723894776562762 -0.6459848051780541 -0.5996263944146406 -0.4723894776562762 -0.6026294861515171 0.7116628314326922 0.3610730075455128 0.6026294861515171 -0.7116628314326922 -0.3610730075455128 0.5614139557093099 0.7664281898127975 0.3120932556065631 -0.5614139557093099 -0.7664281898127975 -0.3120932556065631 -0.8950751141167099 0.4457783992915338 0.01105254785271177 0.8950751141167099 -0.4457783992915338 -0.01105254785271177 0.7167870052363519 0.6972488856121056 0.007770497859147317 -0.7167870052363519 -0.6972488856121056 -0.007770497859147317 -0.7799109052037205 0.6257604651572392 -0.01276010150857372 0.7799109052037205 -0.6257604651572392 0.01276010150857372 0.6184195938279667 0.7458954947469703 0.2473805103192755 -0.6184195938279667 -0.7458954947469703 -0.2473805103192755 -0.6469293907248533 0.6898739395188838 -0.3248943074125266 0.6469293907248533 -0.6898739395188838 0.3248943074125266 0.2427050512818961 0.9516342080442651 -0.1883788527468427 -0.2427050512818961 -0.9516342080442651 0.1883788527468427 -0.7666597499316146 0.508869338847824 -0.3915160581832792 0.7666597499316146 -0.508869338847824 0.3915160581832792 0.6935024192222105 0.6221495312494236 -0.3632965115426569 -0.6935024192222105 -0.6221495312494236 0.3632965115426569 -0.5180563146018837 0.5370719857658701 -0.6657111513311301 0.5180563146018837 -0.5370719857658701 0.6657111513311301 0.1956975435479542 0.9610457712487652 -0.195175554345729 -0.1956975435479542 -0.9610457712487652 0.195175554345729 -0.3920370787496035 0.7299200010228979 -0.5599318896010566 0.3920370787496035 -0.7299200010228979 0.5599318896010566 0.436009300540624 0.6523065459228311 -0.6199935967316932 -0.436009300540624 -0.6523065459228311 0.6199935967316932 -0.1488282554927515 0.9155661090944683 -0.3736159127293701 0.1488282554927515 -0.9155661090944683 0.3736159127293701 -0.03258556170756263 0.82269437928504 -0.5675492396796997 0.03258556170756263 -0.82269437928504 0.5675492396796997</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID281\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID279\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID282\">0.7188386542691355 -8.291532658220529 0.1749896748126473 -8.320893956598498 0.2041830542323292 -8.150311163627059 9.672250224643861 -7.059456281068957 9.121063736486267 -7.00015437808274 9.635808610670308 -6.88973862863807 0.6639147781687854 -8.886877481008773 0.2324867331287822 -8.753934829114037 0.7762688155175496 -8.723816519917641 9.839906616466639 -6.307174060427218 9.339995661571731 -6.435828230921108 9.288313773784795 -6.250258337511604 -4.191559614331788 -6.836501395105861 -4.69878214040593 -6.693971572480447 -4.555776490174386 -6.546509488265469 15.85579309369449 -2.88317807879961 15.3954110245283 -3.130225793674685 15.7542839453301 -2.710804965467504 -4.177611420914334 -6.813955883605757 -4.384548454898964 -6.904087306834577 -4.684900128791502 -6.671571896546428 15.13162762342031 -2.942603618617635 14.94554878944722 -2.851268576834669 15.4106366706707 -2.609737105537482 -8.226513411480296 -0.7098504223906802 -8.043831377542412 -1.259634095720322 -8.44139085504138 -0.7876381362217108 16.68586566671936 -0.4969757365175341 16.59975977698542 -0.8734360458787314 16.49519576895906 -0.4117015401201064 -9.850781302299073 -2.029177671362245 -10.11583197132906 -2.034445504716346 -10.23693653686281 -1.551358442944537 17.68092000924953 -0.333467071248151 17.79621260351479 0.1513689572324142 17.91670649074802 -0.307956751485418 -10.32315030913376 4.40779187417157 -10.0581001196428 4.41307461787261 -10.45954325990876 3.982258596677514 17.1422727178355 2.524676465625354 17.10145403098541 2.971463949908351 17.33720217749696 2.997192587960516 -8.658483753761287 3.758285282074407 -8.809672350536607 3.247939079297819 -9.068603822892037 3.332556943658334 18.85280106037276 1.76687791656905 18.57308203040395 1.669767787113157 18.78896415663697 2.136613287842372 -6.327562815075143 7.424957543166874 -6.590166251534956 7.147744147272575 -6.581760019008222 7.518035654996087 17.00806838718614 4.873788786955079 16.64914884213192 5.308447629415089 16.91766513457668 5.423474394581779 -4.633608847655582 7.295671634646289 -4.875549018316793 7.380359627722972 -4.604236027962772 7.665300658634502 17.70326608388892 4.685070745077654 17.53146206826799 4.509947453012988 17.46142862806131 5.061469611505912 -1.852210723918644 10.55642798035522 -2.446473941138867 10.31730615529452 -2.085243986845924 10.65537294062357 12.79719115790005 8.928718448525228 13.23698361062379 8.581924978490923 12.68436991297344 8.726092390013315 0.9968152046229961 8.751937142296828 0.946469134028074 8.916366648893565 1.39957890577551 9.0595932442054 10.14359480581646 8.249131720626881 10.13688624953656 8.080081984372791 9.647226693335407 8.382708553762887</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"72\" source=\"#ID282\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID278\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID276\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID277\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID278\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID279\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 3 6 4 2 5 8 6 1 7 0 8 1 9 10 10 6 11 12 12 8 13 0 14 10 15 14 16 6 17 12 18 16 19 8 20 18 21 14 22 10 23 12 24 20 25 16 26 18 27 22 28 14 29 20 30 24 31 16 32 26 33 14 34 22 35 24 36 20 37 28 38 30 39 26 40 22 41 20 42 32 43 28 44 34 45 30 46 22 47 32 48 36 49 28 50 38 51 30 52 34 53 36 54 40 55 28 56 42 57 38 58 34 59 36 60 44 61 40 62 42 63 44 64 38 65 44 66 46 67 40 68 46 69 44 70 42 71</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID278\" />\r\n\t\t\t\t\t<p>3 4 5 3 7 4 5 4 9 7 11 4 5 9 13 7 15 11 9 17 13 11 15 19 17 21 13 15 23 19 17 25 21 23 15 27 29 21 25 23 27 31 29 33 21 23 31 35 29 37 33 35 31 39 29 41 37 35 39 43 41 45 37 39 45 43 41 47 45 43 45 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID283\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID284\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID287\">-0.7070872783660889 1.922605037689209 0.06054756790399551 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6617981791496277 1.944134831428528 0.1425205767154694 -0.6617981791496277 1.944134831428528 0.1425205767154694 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID287\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID285\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID288\">-0.165409139121686 0.9724881256473652 -0.1640325033945932 -0.03936888359639548 0.9820447570333709 -0.1844944069278004 -0.05154784640370621 0.9986705258475552 -1.828954190066948e-005 0.05154784640370621 -0.9986705258475552 1.828954190066948e-005 0.03936888359639548 -0.9820447570333709 0.1844944069278004 0.165409139121686 -0.9724881256473652 0.1640325033945932 -0.2344195103292229 0.9677138782286453 -0.09261394636166778 0.2344195103292229 -0.9677138782286453 0.09261394636166778 0.07133911037849994 0.9829624583428812 -0.1693975702863634 -0.07133911037849994 -0.9829624583428812 0.1693975702863634 -0.2642754452526631 0.9643255572820237 0.01532020264946916 0.2642754452526631 -0.9643255572820237 -0.01532020264946916 0.1253419610089993 0.9875266825606484 -0.09529136393807591 -0.1253419610089993 -0.9875266825606484 0.09529136393807591 -0.2333211288655121 0.9667719534384546 0.1044664581084193 0.2333211288655121 -0.9667719534384546 -0.1044664581084193 0.1531163977687427 0.9876600812654266 0.03290794142900599 -0.1531163977687427 -0.9876600812654266 -0.03290794142900599 -0.1663136067224484 0.9732003845942406 0.1588105652801244 0.1663136067224484 -0.9732003845942406 -0.1588105652801244 0.1453191391419066 0.9831280205923531 0.1110929472343633 -0.1453191391419066 -0.9831280205923531 -0.1110929472343633 -0.04191050783459503 0.9827371062147273 0.1801979173069162 0.04191050783459503 -0.9827371062147273 -0.1801979173069162 0.08898259893596822 0.9845879358947005 0.1505612618744073 -0.08898259893596822 -0.9845879358947005 -0.1505612618744073</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID288\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID286\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID284\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID285\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID286\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 6 2 10 11 3 7 8 12 2 3 13 9 10 2 14 15 3 11 2 12 16 17 13 3 14 2 18 19 3 15 2 16 20 21 17 3 18 2 22 23 3 19 2 20 24 25 21 3 2 24 22 23 25 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID289\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID290\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID293\">-0.546968400478363 1.912085294723511 0.1417621821165085 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.546968400478363 1.912085294723511 0.1417621821165085</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID293\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID291\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID294\">0.9632631188235522 -0.001770734784068651 0.2685535857378334 0.9632631188235522 -0.001770734784068651 0.2685535857378334 0.9632631188235522 -0.001770734784068651 0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID294\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID292\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID290\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID291\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID292\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID295\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID296\">\r\n\t\t\t\t\t<float_array count=\"612\" id=\"ID299\">-0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.6028463840484619 1.335630416870117 0.1818975508213043 -0.6028463840484619 1.335630416870117 0.1818975508213043 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.6028463840484619 1.430773377418518 0.1891794055700302 -0.6028463840484619 1.430773377418518 0.1891794055700302 -0.6050586104393005 1.530340790748596 0.1673334091901779 -0.6050586104393005 1.530340790748596 0.1673334091901779 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.6008648872375488 1.63359522819519 0.123851403594017 -0.6008648872375488 1.63359522819519 0.123851403594017 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.6027937531471252 1.674088478088379 0.08723254501819611 -0.6027937531471252 1.674088478088379 0.08723254501819611 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.6027937531471252 1.703011274337769 0.06053215265274048 -0.6027937531471252 1.703011274337769 0.06053215265274048 -0.6044416427612305 1.727086067199707 0.03279396891593933 -0.6044416427612305 1.727086067199707 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.60619056224823 1.760315418243408 -0.0219960268586874 -0.60619056224823 1.760315418243408 -0.0219960268586874 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.6044694781303406 1.775644421577454 -0.07519237697124481 -0.6044694781303406 1.775644421577454 -0.07519237697124481 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.6044694781303406 1.788490056991577 -0.1259496361017227 -0.6044694781303406 1.788490056991577 -0.1259496361017227 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.6044694781303406 1.792240262031555 -0.1946214586496353 -0.6044694781303406 1.792240262031555 -0.1946214586496353 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.6074553728103638 1.788490056991577 -0.264063835144043 -0.6074553728103638 1.788490056991577 -0.264063835144043 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.6052919626235962 1.761277794837952 -0.2947392761707306 -0.6052919626235962 1.761277794837952 -0.2947392761707306 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.5915260314941406 1.761277794837952 -0.3425095975399017 -0.5915260314941406 1.761277794837952 -0.3425095975399017 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.5757541060447693 1.778753638267517 -0.3605347573757172</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"204\" source=\"#ID299\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID297\">\r\n\t\t\t\t\t<float_array count=\"612\" id=\"ID300\">0.003154775786052327 0.7279221052632761 -0.6856525767900384 0.00203187706716806 0.704169472516569 -0.7100290314144352 -0.005578169835515358 0.9529680193264487 -0.3030195342916218 0.005578169835515358 -0.9529680193264487 0.3030195342916218 -0.00203187706716806 -0.704169472516569 0.7100290314144352 -0.003154775786052327 -0.7279221052632761 0.6856525767900384 0.009873696533179039 0.2940161067184299 -0.9557494646124096 -0.009873696533179039 -0.2940161067184299 0.9557494646124096 -0.003893262529684494 0.9526976940201263 -0.3038946302842631 0.003893262529684494 -0.9526976940201263 0.3038946302842631 0.008412698300353367 0.295838201885185 -0.9552010180127784 -0.008412698300353367 -0.295838201885185 0.9552010180127784 -0.002151784389725178 0.9027479772971301 -0.4301644561210053 0.002151784389725178 -0.9027479772971301 0.4301644561210053 0.9967239721974597 0.07970595424672489 -0.01372166551612808 0.994807368507486 -0.08790384280203133 -0.05129536025652839 0.9641445631344157 0.263879925291912 0.02815397674009587 -0.9641445631344157 -0.263879925291912 -0.02815397674009587 -0.994807368507486 0.08790384280203133 0.05129536025652839 -0.9967239721974597 -0.07970595424672489 0.01372166551612808 0.9998659225120776 -0.004781490074433051 -0.01566123723529287 -0.9998659225120776 0.004781490074433051 0.01566123723529287 0.00862185958196769 0.2207983508858853 -0.9752813705712944 -0.00862185958196769 -0.2207983508858853 0.9752813705712944 0.003991036288046091 0.9093356525074643 -0.4160441595650297 -0.003991036288046091 -0.9093356525074643 0.4160441595650297 0.9960935768753003 0.08614723225758705 -0.01939691939787533 -0.9960935768753003 -0.08614723225758705 0.01939691939787533 0.9905918755147362 -0.1363080438040944 -0.01215949663836422 -0.9905918755147362 0.1363080438040944 0.01215949663836422 0.005673301987295233 0.2264394723743121 -0.9740087160777382 -0.005673301987295233 -0.2264394723743121 0.9740087160777382 0.004720636310207403 0.7943622490834562 -0.6074259895854802 -0.004720636310207403 -0.7943622490834562 0.6074259895854802 0.9968271721108338 0.04461136360658059 -0.06591976318737446 -0.9968271721108338 -0.04461136360658059 0.06591976318737446 0.9980321071246151 -0.06250502152018732 0.005003542061573886 -0.9980321071246151 0.06250502152018732 -0.005003542061573886 0.004096602433148256 0.1253146873242252 -0.9921085862894931 -0.004096602433148256 -0.1253146873242252 0.9921085862894931 0.008661291044890985 0.800806736223715 -0.5988602117824801 -0.008661291044890985 -0.800806736223715 0.5988602117824801 0.8956747356556694 0.0008618938289220829 0.4447089217085428 -0.8956747356556694 -0.0008618938289220829 -0.4447089217085428 0.9852524477210616 -0.1710581732994747 -0.004088472465827907 -0.9852524477210616 0.1710581732994747 0.004088472465827907 0.005601650806890374 0.1304529279567728 -0.9914386794430319 -0.005601650806890374 -0.1304529279567728 0.9914386794430319 0.006660255799076443 0.62615586728002 -0.7796694625695538 -0.006660255799076443 -0.62615586728002 0.7796694625695538 0.9759876233675472 0.1309203157675931 -0.1740920157637353 -0.9759876233675472 -0.1309203157675931 0.1740920157637353 0.9827040068018349 -0.1847034700396569 0.01332153035235797 -0.9827040068018349 0.1847034700396569 -0.01332153035235797 0.01726207897819288 0.07004635942544597 -0.9973943694249492 -0.01726207897819288 -0.07004635942544597 0.9973943694249492 0.009504062429951832 0.6333564301194223 -0.7738018513958912 -0.009504062429951832 -0.6333564301194223 0.7738018513958912 0.960647311568589 0.006749071895014515 0.2776890217574298 -0.960647311568589 -0.006749071895014515 -0.2776890217574298 0.9710424030277641 -0.2387866027887111 0.007590115327941624 -0.9710424030277641 0.2387866027887111 -0.007590115327941624 0.02864701649948257 0.06098741739664127 -0.9977273592344587 -0.02864701649948257 -0.06098741739664127 0.9977273592344587 0.0122678743552204 0.408942547431161 -0.9124776666633092 -0.0122678743552204 -0.408942547431161 0.9124776666633092 0.9258007050101661 0.1301718437275705 -0.3548920197795999 -0.9258007050101661 -0.1301718437275705 0.3548920197795999 0.9844961877060547 -0.1748438068751519 -0.01403209142106429 -0.9844961877060547 0.1748438068751519 0.01403209142106429 -0.0003328446250290773 -0.9999540637905197 0.009579119128647748 0.009719844425970807 -0.9998397863798134 0.01503084150353108 0.01129802889254054 -0.9997986187078636 0.01658543255363933 -0.01129802889254054 0.9997986187078636 -0.01658543255363933 -0.009719844425970807 0.9998397863798134 -0.01503084150353108 0.0003328446250290773 0.9999540637905197 -0.009579119128647748 0.005829775791856834 0.3941443923859961 -0.9190300384997712 -0.005829775791856834 -0.3941443923859961 0.9190300384997712 0.9125357698546387 -0.1130702210936151 -0.3930567310677209 -0.9125357698546387 0.1130702210936151 0.3930567310677209 0.0584403134379483 -0.9982850189476406 -0.003427930860333971 0.07339187183949321 -0.9972987116424856 -0.002985448732408235 -0.07339187183949321 0.9972987116424856 0.002985448732408235 -0.0584403134379483 0.9982850189476406 0.003427930860333971 -0.008795869253130913 -0.9999350758860359 0.007244080125832215 0.008795869253130913 0.9999350758860359 -0.007244080125832215 -0.001709771075087474 0.1630913164699768 -0.9866094967994991 0.001709771075087474 -0.1630913164699768 0.9866094967994991 0.5477061066700305 0.06663861518257813 -0.8340127790884894 -0.5477061066700305 -0.06663861518257813 0.8340127790884894 -0.01146976780842381 -0.9999016954466101 -0.008064977955058951 0.01146976780842381 0.9999016954466101 0.008064977955058951 -0.07999252346564843 -0.9966968905818605 -0.01401800606535597 0.07999252346564843 0.9966968905818605 0.01401800606535597 0.8175796316467974 -0.1036266295353065 -0.5664142190724379 -0.8175796316467974 0.1036266295353065 0.5664142190724379 -0.1171614320668039 -0.9928592035054589 -0.02244550847189105 0.1171614320668039 0.9928592035054589 0.02244550847189105 0.0005074685993279611 -0.07314158556779575 -0.9973214381212556 -0.0005074685993279611 0.07314158556779575 0.9973214381212556 0.4671843293411222 -0.05410079983313199 -0.8825032044562227 -0.4671843293411222 0.05410079983313199 0.8825032044562227 0.4157909467608663 -0.2893045046693474 -0.8622185292428631 -0.4157909467608663 0.2893045046693474 0.8622185292428631 0.00125164063339767 -0.2989056791747194 -0.9542818390563789 -0.00125164063339767 0.2989056791747194 0.9542818390563789 0.7357186249502042 -0.2286613752319258 -0.6375202587984362 -0.7357186249502042 0.2286613752319258 0.6375202587984362 0.003126663485774014 -0.5245013036690988 -0.8514039032238826 -0.003126663485774014 0.5245013036690988 0.8514039032238826 0.7444360956075482 -0.2640628572513944 -0.6132582710219399 -0.7444360956075482 0.2640628572513944 0.6132582710219399 0.453646658642683 -0.4631728809210656 -0.7613642961694551 -0.453646658642683 0.4631728809210656 0.7613642961694551 0.001292287114555989 -0.6679956796251377 -0.7441640289587799 -0.001292287114555989 0.6679956796251377 0.7441640289587799 0.8074365638431011 -0.3017915337183512 -0.5069201766996171 -0.8074365638431011 0.3017915337183512 0.5069201766996171 0.4413654101371363 -0.6003888253962572 -0.6668806737893819 -0.4413654101371363 0.6003888253962572 0.6668806737893819 -0.001171495476863823 -0.7300817285972934 -0.6833588348494045 0.001171495476863823 0.7300817285972934 0.6833588348494045 0.4526027224778333 -0.635258761474257 -0.6257771820511247 -0.4526027224778333 0.635258761474257 0.6257771820511247 0.4748307092488027 -0.6940603301408 -0.5411248060097805 -0.4748307092488027 0.6940603301408 0.5411248060097805 0.002717381677525309 -0.8075924325322345 -0.5897347528791967 -0.002717381677525309 0.8075924325322345 0.5897347528791967 0.8464322837763881 -0.3623231834195628 -0.3902233972198512 -0.8464322837763881 0.3623231834195628 0.3902233972198512 -0.0003509631312579686 -0.919550123560017 -0.3929725780326637 0.0003509631312579686 0.919550123560017 0.3929725780326637 0.5001644196760581 -0.7853667004844724 -0.3647392206224129 -0.5001644196760581 0.7853667004844724 0.3647392206224129 0.7953598593833767 -0.5959557967894432 -0.1106317420757499 -0.7953598593833767 0.5959557967894432 0.1106317420757499 0.00256577070308407 -0.9705573239926624 -0.2408565914914959 -0.00256577070308407 0.9705573239926624 0.2408565914914959 0.6770063870684798 -0.7260984694438274 0.1201805497566687 -0.6770063870684798 0.7260984694438274 -0.1201805497566687 0.5130715501709678 -0.8343890419510267 -0.2013765405334188 -0.5130715501709678 0.8343890419510267 0.2013765405334188 0.5045078836468269 -0.02905227361918602 -0.8629181657235846 0.3740154694987343 0.08517409969750246 -0.9235030055805781 -0.3740154694987343 -0.08517409969750246 0.9235030055805781 -0.5045078836468269 0.02905227361918602 0.8629181657235846 0.004738754576579228 -0.9886901059625701 -0.1498980272611502 -0.004738754576579228 0.9886901059625701 0.1498980272611502 0.8761960434976746 -0.4814018184795852 -0.0230820823057494 -0.8761960434976746 0.4814018184795852 0.0230820823057494 0.8175550262034389 -0.3652865767667861 -0.4451623254089426 -0.8175550262034389 0.3652865767667861 0.4451623254089426 0.4805228882716853 -0.8689358673983149 -0.1185251542744236 -0.4805228882716853 0.8689358673983149 0.1185251542744236 0.8246367447315011 -0.5481831095965644 0.1395332132206313 -0.8246367447315011 0.5481831095965644 -0.1395332132206313 0.00010182183726732 -0.9999807024157885 0.006211636526666983 -0.00010182183726732 0.9999807024157885 -0.006211636526666983 0.3573934484380254 -0.9320419610155467 0.05973027640879219 -0.3573934484380254 0.9320419610155467 -0.05973027640879219 0.7326226935095296 -0.6427578869681038 0.223889007535297 -0.7326226935095296 0.6427578869681038 -0.223889007535297 -0.0003121471177735471 -0.9401959828614036 0.3406338450234447 0.0003121471177735471 0.9401959828614036 -0.3406338450234447 0.281088461575212 -0.8836047623771194 0.3744755007657446 -0.281088461575212 0.8836047623771194 -0.3744755007657446 0.5938773958340341 -0.6788819111953476 0.4317742342580647 -0.5938773958340341 0.6788819111953476 -0.4317742342580647 -0.0008582256848451016 -0.9269980685706961 0.3750651200989938 0.0008582256848451016 0.9269980685706961 -0.3750651200989938 0.5354989973352612 -0.8308293100162483 0.1515370630270194 -0.5354989973352612 0.8308293100162483 -0.1515370630270194 0.3066480515466414 -0.3948527167845805 0.8660590652666156 -0.3066480515466414 0.3948527167845805 -0.8660590652666156 0.1380021439462748 -0.9128750179141473 0.3842064678457104 -0.1380021439462748 0.9128750179141473 -0.3842064678457104 0.5540930953588987 -0.8216196774116014 0.1338728776326658 -0.5540930953588987 0.8216196774116014 -0.1338728776326658 0.5143594831915055 -0.7538234116189816 0.4088821176648433 -0.5143594831915055 0.7538234116189816 -0.4088821176648433 0.1704962860405792 -0.2412262551434388 0.9553747486069755 -0.1704962860405792 0.2412262551434388 -0.9553747486069755 -0.03773370260261522 -0.9621258501780877 -0.2699815106761744 0.03773370260261522 0.9621258501780877 0.2699815106761744 0.4358498792710058 -0.4621916880777535 0.7722782699333747 -0.4358498792710058 0.4621916880777535 -0.7722782699333747 0.01286360673163864 -0.9648903405124554 -0.2623378707080084 -0.01286360673163864 0.9648903405124554 0.2623378707080084 0.3481882744279781 -0.2117944960202763 0.9131856421376676 -0.3481882744279781 0.2117944960202763 -0.9131856421376676 -0.1087425189090441 -0.9469588072574531 -0.3023972254152774 0.1087425189090441 0.9469588072574531 0.3023972254152774 0.109509698468203 -0.9934846561267767 0.0315573126559204 -0.109509698468203 0.9934846561267767 -0.0315573126559204 -0.06105980458301809 -0.8594249915838784 -0.507602584809548 0.06105980458301809 0.8594249915838784 0.507602584809548 4.131844054970268e-016 -0.7503520187156 -0.6610384618230805 -4.131844054970268e-016 0.7503520187156 0.6610384618230805 0.006610566334737722 -0.7456954882692445 -0.6662541100718458 2.234526453262779e-016 -0.7503520187156001 -0.6610384618230801 -2.234526453262779e-016 0.7503520187156001 0.6610384618230801 -0.006610566334737722 0.7456954882692445 0.6662541100718458 0.02829381865111946 -0.7299337328155146 -0.6829320650871116 -0.02829381865111946 0.7299337328155146 0.6829320650871116</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"204\" source=\"#ID300\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID298\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID296\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID297\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"212\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID298\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 0 6 1 4 7 5 2 1 8 9 4 3 6 10 1 4 11 7 2 8 12 13 9 3 14 15 16 17 18 19 20 15 14 19 18 21 6 22 10 11 23 7 8 24 12 13 25 9 16 15 26 27 18 17 20 28 15 18 29 21 10 22 30 31 23 11 12 24 32 33 25 13 26 15 34 35 18 27 36 28 20 21 29 37 22 38 30 31 39 23 24 40 32 33 41 25 34 15 42 43 18 35 36 44 28 29 45 37 38 46 30 31 47 39 32 40 48 49 41 33 34 42 50 51 43 35 52 44 36 37 45 53 38 54 46 47 55 39 48 40 56 57 41 49 50 42 58 59 43 51 52 60 44 45 61 53 54 62 46 47 63 55 64 48 56 57 49 65 66 50 58 59 51 67 60 68 44 45 69 61 70 71 72 73 74 75 76 64 56 57 65 77 66 58 78 79 59 67 70 80 81 82 83 75 70 72 84 85 73 75 86 64 76 77 65 87 88 66 78 79 67 89 70 90 80 83 91 75 70 84 92 93 85 75 86 76 88 89 77 87 88 78 94 95 79 89 70 96 90 91 97 75 70 92 96 97 93 75 98 86 88 89 87 99 100 88 94 95 89 101 100 98 88 89 99 101 100 94 102 103 95 101 104 98 100 101 99 105 102 104 100 101 105 103 102 94 106 107 95 103 108 104 102 103 105 109 102 106 110 111 107 103 108 102 112 113 103 109 102 110 112 113 111 103 114 108 112 113 109 115 112 110 116 117 111 113 118 114 112 113 115 119 118 112 116 117 113 119 120 114 118 119 115 121 122 118 116 117 119 123 122 120 118 119 121 123 124 122 116 117 123 125 122 126 120 121 127 123 124 126 122 123 127 125 124 116 128 129 117 125 124 130 126 127 131 125 132 124 128 129 125 133 132 130 124 125 131 133 132 128 134 135 129 133 132 136 130 131 137 133 138 132 134 135 133 139 140 136 132 133 137 141 142 132 143 144 133 145 146 136 140 141 137 147 140 132 148 149 133 141 150 132 142 145 133 151 152 146 140 141 147 153 154 140 148 149 141 155 148 132 150 151 133 149 156 146 152 153 147 157 152 140 154 155 141 153 158 156 152 153 157 159 160 152 154 155 153 161 162 156 158 159 157 163 158 152 160 161 153 159 164 162 158 159 163 165 166 158 160 161 159 167 168 162 164 165 163 169 170 164 158 159 165 171 172 158 166 167 159 173 174 168 164 165 169 175 176 170 158 159 171 177 170 178 164 165 179 171 158 172 180 181 173 159 182 168 174 175 169 183 184 174 164 165 175 185 184 164 178 179 165 185 186 182 174 175 183 187 188 174 184 185 175 189 190 182 186 187 183 191 192 186 174 175 187 193 194 190 186 187 191 195 196 194 186 187 195 197 198 199 186 187 200 201 202 198 186 187 201 203</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID301\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID302\">\r\n\t\t\t\t\t<float_array count=\"306\" id=\"ID306\">-0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6165045499801636 1.934720396995544 -0.1188463941216469 -0.6165045499801636 1.934720396995544 -0.1188463941216469 -0.6165045499801636 1.934478163719177 -0.148460179567337 -0.6165045499801636 1.934478163719177 -0.148460179567337 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6339040398597717 1.933767676353455 -0.1080069318413734 -0.6339040398597717 1.933767676353455 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.933767676353455 -0.1592995822429657 -0.6339040398597717 1.933767676353455 -0.1592995822429657 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.690280020236969 1.923469066619873 -0.1336532384157181 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.690280020236969 1.923469066619873 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.690280020236969 1.930925488471985 -0.1040394529700279 -0.690280020236969 1.930925488471985 -0.1040394529700279 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.930925488471985 -0.1632670909166336 -0.690280020236969 1.930925488471985 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.920978307723999 -0.1080069318413734 -0.7484694719314575 1.920978307723999 -0.1080069318413734 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.920978307723999 -0.1592995822429657 -0.7484694719314575 1.920978307723999 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7658695578575134 1.920978307723999 -0.1188463941216469 -0.7658695578575134 1.920978307723999 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7658695578575134 1.920978307723999 -0.148460179567337 -0.7658695578575134 1.920978307723999 -0.148460179567337 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"102\" source=\"#ID306\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID303\">\r\n\t\t\t\t\t<float_array count=\"306\" id=\"ID307\">0.2685032900269681 0.9630576308432356 0.02063935365529308 0.4525875977984503 0.8917052376508322 0.005122056725679501 0.197574767091013 0.960017639689952 0.1983187910740314 -0.197574767091013 -0.960017639689952 -0.1983187910740314 -0.4525875977984503 -0.8917052376508322 -0.005122056725679501 -0.2685032900269681 -0.9630576308432356 -0.02063935365529308 0.6826818001107279 0.5175042953428181 0.5158826068974507 -0.6826818001107279 -0.5175042953428181 -0.5158826068974507 0.6836944016697715 0.4960176053006482 -0.5352835700422942 -0.6836944016697715 -0.4960176053006482 0.5352835700422942 0.9999982787388297 -2.764381330880746e-017 0.001855402753470593 0.9999999999992953 -1.344529174791133e-017 1.187132519731373e-006 -0.9999999999992953 1.344529174791133e-017 -1.187132519731373e-006 -0.9999982787388297 2.764381330880746e-017 -0.001855402753470593 0.04316331056239178 0.9022464637821981 0.4290550631490245 -0.04316331056239178 -0.9022464637821981 -0.4290550631490245 0.762814706200499 -2.629409797658931e-017 -0.6466171386564437 -0.762814706200499 2.629409797658931e-017 0.6466171386564437 0.1886860822774901 0.956809299814221 -0.2211640254286229 -0.1886860822774901 -0.956809299814221 0.2211640254286229 0.7628146924144519 1.553973405980757e-017 0.6466171549198531 -0.7628146924144519 -1.553973405980757e-017 -0.6466171549198531 0.2966896142403783 0.3930092177325965 0.8703556902664036 -0.2966896142403783 -0.3930092177325965 -0.8703556902664036 0.3190228087349438 -3.247041946735389e-017 -0.9477470377199115 -0.3190228087349438 3.247041946735389e-017 0.9477470377199115 0.3015186508611372 0.4026945547667087 -0.8642474175513177 -0.3015186508611372 -0.4026945547667087 0.8642474175513177 -0.06798932660550203 -0.9976860485482023 -6.586060030642062e-008 0.1719351211168655 -0.9851082753314626 1.5342658739515e-009 -0.07003507829713505 -0.9973648774176054 -0.01893116746740961 0.07003507829713505 0.9973648774176054 0.01893116746740961 -0.1719351211168655 0.9851082753314626 -1.5342658739515e-009 0.06798932660550203 0.9976860485482023 6.586060030642062e-008 -0.07003508202665411 -0.997364879841995 0.0189310259437501 0.07003508202665411 0.997364879841995 -0.0189310259437501 -0.09074012681344057 0.8894532850476279 0.4479275422474753 0.09074012681344057 -0.8894532850476279 -0.4479275422474753 -0.07444730486362687 -0.9972153156526353 -0.004383266630817152 0.07444730486362687 0.9972153156526353 0.004383266630817152 0.05077249430285804 0.904499556128183 -0.4234415033817376 -0.05077249430285804 -0.904499556128183 0.4234415033817376 -0.0744472981544605 -0.9972153161907268 0.004383258163692835 0.0744472981544605 0.9972153161907268 -0.004383258163692835 0.3190237254244892 -3.387300576113519e-007 0.9477467291508663 -0.3190237254244892 3.387300576113519e-007 -0.9477467291508663 -0.03242831273582751 0.3315141411543863 0.9428927716064944 0.03242831273582751 -0.3315141411543863 -0.9428927716064944 0.1684288053257849 -0.9857138213175917 3.261995871790642e-017 -0.1684288053257849 0.9857138213175917 -3.261995871790642e-017 -0.005344422354575714 2.736307797239866e-016 -0.9999857184728669 0.005344422354575714 -2.736307797239866e-016 0.9999857184728669 -0.03778745893588001 0.3316848763063766 -0.9426331475058539 0.03778745893588001 -0.3316848763063766 0.9426331475058539 0.1684287910083168 -0.9857138237640154 -7.29699613754242e-018 -0.1684287910083168 0.9857138237640154 7.29699613754242e-018 -0.2484756132977017 0.8848234007634721 0.3941413693812095 0.2484756132977017 -0.8848234007634721 -0.3941413693812095 0.4283917724313258 -0.8995378958168598 -0.08551060345081933 -0.4283917724313258 0.8995378958168598 0.08551060345081933 -0.09662107353385505 0.8889262837349113 -0.4477437104353393 0.09662107353385505 -0.8889262837349113 0.4477437104353393 -0.005344410133169654 -7.18550191482743e-006 0.9999857185123682 0.005344410133169654 7.18550191482743e-006 -0.9999857185123682 0.428391672085077 -0.8995379593972396 0.08551043732552045 -0.428391672085077 0.8995379593972396 -0.08551043732552045 -0.3421974281014101 0.3781955923776879 0.8601563893309577 0.3421974281014101 -0.3781955923776879 -0.8601563893309577 0.4241540399827718 -0.9051261212181009 -0.02898370326526637 -0.4241540399827718 0.9051261212181009 0.02898370326526637 -0.370286485472462 -1.499824138001414e-018 -0.9289176059675327 0.370286485472462 1.499824138001414e-018 0.9289176059675327 -0.3291557229804519 0.3380558114720414 -0.8816885948900528 0.3291557229804519 -0.3380558114720414 0.8816885948900528 -0.3702874190200642 1.094756924120515e-017 0.9289172338348878 0.3702874190200642 -1.094756924120515e-017 -0.9289172338348878 0.4241539996507208 -0.9051261422282078 0.02898363737315737 -0.4241539996507208 0.9051261422282078 -0.02898363737315737 -0.3251796430928072 0.9178164481615403 0.2277524252388309 0.3251796430928072 -0.9178164481615403 -0.2277524252388309 0.4199582781990328 -0.9075434119490392 3.99096900070165e-009 -0.4199582781990328 0.9075434119490392 -3.99096900070165e-009 -0.8007715958187883 -7.155616565122561e-018 -0.5989698250578498 0.8007715958187883 7.155616565122561e-018 0.5989698250578498 -0.2265429325203143 0.8870890848101631 -0.4021831116988422 0.2265429325203143 -0.8870890848101631 0.4021831116988422 -0.6796599789034551 0.4735252770862831 0.5602107862557749 0.6796599789034551 -0.4735252770862831 -0.5602107862557749 -0.8007712843829574 6.359232916259598e-018 0.5989702414207808 0.8007712843829574 -6.359232916259598e-018 -0.5989702414207808 -0.9999999999994651 -1.645457276881922e-017 1.034295879815327e-006 -0.6891858043226757 0.4665554888991755 -0.5543905689116273 0.6891858043226757 -0.4665554888991755 0.5543905689116273 0.9999999999994651 1.645457276881922e-017 -1.034295879815327e-006 -0.9999999999992956 4.946327360675922e-018 1.187017885930274e-006 0.9999999999992956 -4.946327360675922e-018 -1.187017885930274e-006 -0.3230544891964065 0.9463803659259006 8.550144065327416e-008 0.3230544891964065 -0.9463803659259006 -8.550144065327416e-008 -0.3136885055110143 0.9395308213807142 -0.1374094508610924 0.3136885055110143 -0.9395308213807142 0.1374094508610924 -0.4168041023770971 0.9089963367591745 1.538922139574083e-007 0.4168041023770971 -0.9089963367591745 -1.538922139574083e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"102\" source=\"#ID307\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID305\">\r\n\t\t\t\t\t<float_array count=\"354\" id=\"ID308\">14.74662494168064 -3.24670831878189 14.50632766822221 -3.24670831878189 14.78792300082874 -3.159258918565324 13.820349457531 -1.340223392086619 13.53790646303778 -1.425964394727856 13.60571068596005 -1.309425604163282 14.74662494168064 -0.2015677638513016 14.57252871304809 -0.31838760226104 14.50632766822222 -0.2015677638513016 19.3234646320343 0.9305684636762152 19.18007493019104 0.9305684636762152 19.34720396995544 1.05736601641011 12.39923564859679 -6.827449107672569 12.18558988491392 -6.79263974045073 12.520128137449 -6.756504929536055 19.18007493019104 -2.98907029529415 19.3234646320343 -2.862272042610564 19.34478163719177 -2.98907029529415 13.58985134138688 0.913600590386324 13.37428921549126 0.8823677125805266 13.54688959584556 1.000553205744748 19.18007493019104 0.930568463676214 19.18007493019104 1.057366016410109 19.34720396995544 1.057366016410109 19.18007493019104 -2.862272042610565 19.3234646320343 -2.862272042610565 12.71867148612623 -7.495234252113192 12.38442227660791 -7.532988091064745 12.54477580412482 -7.432242123407382 19.34478163719177 -4.733932057985893 19.19373035430908 -4.895195827090482 19.18007493019104 -4.733932057985893 12.33878138412339 5.382247156809008 12.17677293324015 5.481214797596579 12.3912040801708 5.516942167621013 -7.391282448218876 -1.48143095627047 -8.194581123679953 -1.48143095627047 -7.454820262563747 -1.364900655355888 19.18007493019104 3.622039261057927 19.33767676353455 3.783303278093615 19.34720396995544 3.622039261057927 -7.391282448218877 -0.6204842998191036 -7.454820262563748 -0.7370153623541556 -8.194581123679953 -0.6204842998191036 7.481154949549515 -12.79431255424122 7.067416291608053 -12.83379782656899 6.915524424990057 -12.74212319853608 -7.584380995427704 -1.247007601423149 -7.758909944543412 -1.332278807745487 -8.324154097693995 -1.130524639056481 19.33767676353455 -4.895195827090483 19.19373035430908 -4.895195827090483 19.34478163719177 -4.733932057985895 13.04180262783345 5.175172548692535 12.86707806501732 5.11361630106685 12.92234562026518 5.247605683200089 -7.584380812078765 -0.8557737698764369 -8.324153914352896 -0.9722559702773169 -7.758909761188733 -0.7705020946637685 19.19373035430908 3.783303278093616 19.33767676353455 3.783303278093616 19.18007493019104 3.622039261057928 7.648027143859386 -12.25948167563143 7.65188684485852 -12.35890188523497 7.085797861905361 -12.30988511571698 -7.713240890911518 -1.253156713644663 -8.278486734327558 -1.284367781877518 -8.278486734327558 -1.051405475536982 19.33767676353455 -5.062382866966574 19.23469066619873 -5.506970809153192 19.19373035430908 -5.062382866966574 7.367540623698635 11.41985850957108 7.776061332728784 11.27693054705916 7.214183829069861 11.32970587279734 -7.713240890911518 -0.8496545304854714 -8.278486734327558 -1.051405475536983 -8.278486734327558 -0.8184441655874255 19.19373035430909 4.914761442931146 19.30925488471985 5.359349368659267 19.33767676353455 4.914761442931146 2.285092063151581 -12.97430384402288 2.693655733061326 -13.10863367222362 2.262290508523929 -13.0721396923397 1.331404262185989 -1.284367781877517 0.6969924656801174 -1.253156713644663 1.331404262185989 -1.051405475536982 19.30925488471986 -5.506970809153168 19.23469066619874 -5.506970809153168 19.33767676353456 -5.06238286696655 7.304855699042223 11.14301553668178 7.302790777804189 11.0435620935058 6.890760040675517 11.18011256878542 19.233906454615 5.361065771843718 19.30847067265508 5.361072451178341 19.19301018033664 4.916474230813738 1.331404262185988 -1.051405475536982 0.6969924656801174 -0.8496545304854711 1.331404262185988 -0.8184441655874253 2.304331396739664 -13.42647922400892 2.121104136094343 -13.5156493816709 1.71639695895628 -13.37427954811462 1.544746040377931 -2.885022299798933 1.345972632848547 -2.799301999221842 2.178608611574747 -2.682205560965344 -19.30925488471981 5.330255816417758 -18.98195147514339 5.789075628693167 -19.23469066619869 5.330255816417758 1.845480971048728 11.74717148847956 2.458561636177985 11.6990816018842 1.870243297278053 11.64963089452367 -19.23549984096779 -5.471528107735983 -19.21066047540473 -5.930350160969313 -19.31006405897643 -5.471521214608823 -18.98195147514343 -5.932117994536131 -19.20978307723999 -5.932117994536131 -19.23469066619873 -5.473298230104304 2.178605235350849 0.5904376500551031 1.345969254092779 0.7075333192271444 1.544742659768699 0.7932540888905315 -3.959798216985414 -7.753429402214679 -4.087096411535118 -7.683919229159401 -3.885150574633056 -7.624847108754293 1.813176726206721 -1.081169652224882 0.9804013739520012 -1.197651123867453 0.9101107092265193 -1.081169652224882 -19.20978307723999 4.334972713557193 -18.88520956039429 4.496240462481415 -18.98195147514343 4.334972713557193 -19.20978307723999 5.789075628693066 -18.98195147514344 5.789075628693066 -19.30925488471985 5.330255816417655 2.481569112179163 12.40655007166253 2.66317520668856 12.31535119031279 2.050599478808898 12.36727062188914 -18.98195147514343 -5.446823632817054 -19.20978307723999 -5.608091629666255 -19.20978307723999 -5.446823632817054 -18.88520956039429 -5.608091629666257 -19.20978307723999 -5.608091629666257 -18.98195147514343 -5.446823632817055 1.813176726206721 -1.021637471001535 0.9101107092265193 -1.021637471001535 0.9804013739520012 -0.9051567613036898 0.367684899701497 -8.845277138547667 0.145718255611641 -8.880676763911682 0.2049359424005293 -8.74721646374895 -18.85544061660767 1.434091526799194 -18.88520956039429 1.307296052883267 -19.20978307723999 1.307296052883267 -19.20978307723999 4.496240462481416 -18.88520956039429 4.496240462481416 -19.20978307723999 4.334972713557194 -2.117223969310845 8.529395214753574 -2.31561130205695 8.595508854169639 -1.962439484181925 8.635134824541277 -19.20978307723999 -3.239066383758993 -18.88520956039429 -3.239066383758993 -19.20978307723999 -3.365861157709891 -18.85544061660767 -3.365861157709891 -1.225341157779861 -3.905255980985561 -1.267926982609724 -3.818192018720132 -1.044961102637988 -3.786919029566556 -19.20978307723999 1.434091526799194 -18.85544061660767 1.434091526799194 -19.20978307723999 1.307296052883267 -0.806110026159208 2.735666626985071 -1.160395921178498 2.702765752179635 -1.02897991537746 2.767360336190219 -0.9871177962192335 -3.90522116068271 -1.225379355844962 -3.905221160682709 -1.044999251680502 -3.786884255506705 -1.044972846114296 1.717034101611527 -1.26793873007405 1.748307188552936 -0.9870913567213968 1.835371746509942 -0.9871177962192357 1.835423300068112 -1.267965144607175 1.748358692275823 -1.225379355844964 1.835423300068112</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"177\" source=\"#ID308\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID304\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID302\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID303\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"60\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID304\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID305\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 3 1 4 6 5 0 6 8 7 1 8 10 9 11 10 6 11 2 12 6 13 14 14 16 15 10 16 8 17 18 18 8 19 0 20 11 21 20 22 6 23 16 15 11 24 10 25 14 26 6 27 22 28 8 29 24 30 16 31 26 32 8 33 18 34 28 35 29 36 30 37 20 38 22 39 6 40 28 41 34 42 29 43 36 44 14 45 22 46 34 47 38 48 29 49 26 50 24 51 8 52 40 53 26 54 18 55 30 56 29 57 42 58 44 59 22 60 20 61 46 62 36 63 22 64 38 65 48 66 29 67 26 68 50 69 24 70 40 71 52 72 26 73 42 74 29 75 54 76 44 77 46 78 22 79 46 80 56 81 36 82 48 83 58 84 29 85 52 86 50 87 26 88 60 89 52 90 40 91 62 92 46 93 44 94 29 95 64 96 54 97 66 98 56 99 46 100 58 101 68 102 29 103 52 104 70 105 50 106 60 107 72 108 52 109 62 110 66 111 46 112 74 113 66 114 62 115 29 116 76 117 64 118 78 119 56 120 66 121 29 122 68 123 80 124 72 125 82 126 70 127 72 128 70 129 52 130 84 131 72 132 60 133 74 134 86 135 66 136 88 137 86 138 74 139 29 140 80 141 76 142 86 143 78 144 66 145 90 146 82 147 91 148 91 149 82 150 72 151 72 152 84 153 91 154 86 155 88 156 94 157 88 156 90 158 94 157 96 159 78 160 86 161 94 162 90 163 91 164 91 165 84 166 98 167 100 168 96 169 86 170 91 171 98 172 100 173 100 174 98 175 96 176</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"60\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID304\" />\r\n\t\t\t\t\t<p>3 4 5 7 4 3 4 9 5 7 12 13 15 7 3 9 13 17 5 9 19 7 21 12 13 12 17 23 7 15 17 25 9 19 9 27 31 32 33 7 23 21 32 35 33 23 15 37 32 39 35 9 25 27 19 27 41 43 32 31 21 23 45 23 37 47 32 49 39 25 51 27 27 53 41 55 32 43 23 47 45 37 57 47 32 59 49 27 51 53 41 53 61 45 47 63 55 65 32 47 57 67 32 69 59 51 71 53 53 73 61 47 67 63 63 67 75 65 77 32 67 57 79 81 69 32 71 83 73 53 71 73 61 73 85 67 87 75 75 87 89 77 81 32 67 79 87 92 83 93 73 83 92 92 85 73 95 89 87 95 93 89 87 79 97 92 93 95 99 85 92 87 97 101 101 99 92 97 99 101</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID309\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID310\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID313\">-0.690280020236969 1.940856695175171 -0.1336532384157181 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.690280020236969 1.940856695175171 -0.1336532384157181 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7458943724632263 1.930909156799316 -0.1445471495389938</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID313\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID311\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID314\">-0.1092906432207105 0.9940098366235635 -7.695194953645212e-009 0.2685032900269681 0.9630576308432356 0.02063935365529308 0.197574767091013 0.960017639689952 0.1983187910740314 -0.197574767091013 -0.960017639689952 -0.1983187910740314 -0.2685032900269681 -0.9630576308432356 -0.02063935365529308 0.1092906432207105 -0.9940098366235635 7.695194953645212e-009 0.04316331056239178 0.9022464637821981 0.4290550631490245 -0.04316331056239178 -0.9022464637821981 -0.4290550631490245 0.1886860822774901 0.956809299814221 -0.2211640254286229 -0.1886860822774901 -0.956809299814221 0.2211640254286229 -0.09074012681344057 0.8894532850476279 0.4479275422474753 0.09074012681344057 -0.8894532850476279 -0.4479275422474753 0.05077249430285804 0.904499556128183 -0.4234415033817376 -0.05077249430285804 -0.904499556128183 0.4234415033817376 -0.2484756132977017 0.8848234007634721 0.3941413693812095 0.2484756132977017 -0.8848234007634721 -0.3941413693812095 -0.09662107353385505 0.8889262837349113 -0.4477437104353393 0.09662107353385505 -0.8889262837349113 0.4477437104353393 -0.3251796430928072 0.9178164481615403 0.2277524252388309 0.3251796430928072 -0.9178164481615403 -0.2277524252388309 -0.2265429325203143 0.8870890848101631 -0.4021831116988422 0.2265429325203143 -0.8870890848101631 0.4021831116988422 -0.3230544891964065 0.9463803659259006 8.550144065327416e-008 0.3230544891964065 -0.9463803659259006 -8.550144065327416e-008 -0.3136885055110143 0.9395308213807142 -0.1374094508610924 0.3136885055110143 -0.9395308213807142 0.1374094508610924</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID314\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID312\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID310\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID311\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID312\" />\r\n\t\t\t\t\t<p>0 1 2 0 2 6 0 8 1 0 6 10 12 8 0 14 0 10 16 12 0 18 0 14 20 16 0 22 0 18 24 20 0 22 24 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID312\" />\r\n\t\t\t\t\t<p>3 4 5 7 3 5 4 9 5 11 7 5 5 9 13 11 5 15 5 13 17 15 5 19 5 17 21 19 5 23 5 21 25 5 25 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID315\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID316\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID320\">-0.7051355838775635 1.922352433204651 0.230619490146637 -0.6617981791496277 1.832582235336304 0.1425205767154694 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6617981791496277 1.832582235336304 0.1425205767154694 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID320\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID317\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID321\">0.2454983722499582 0.7367784293995229 -0.6299905516705731 -0.01355272467147211 0.9997780551212078 0.01612960483195176 -0.0255551309807017 0.7356609327778424 -0.6768677324743689 0.0255551309807017 -0.7356609327778424 0.6768677324743689 0.01355272467147211 -0.9997780551212078 -0.01612960483195176 -0.2454983722499582 -0.7367784293995229 0.6299905516705731 0.5063254148146489 0.7555293494449054 -0.4157041934358274 -0.5063254148146489 -0.7555293494449054 0.4157041934358274 -0.3613240372427959 0.7363722211506463 -0.5720147655683642 0.3613240372427959 -0.7363722211506463 0.5720147655683642 0.6680473200367499 0.7436922615332333 0.02519123512853581 -0.6680473200367499 -0.7436922615332333 -0.02519123512853581 -0.6179795511991585 0.7228706523012989 -0.3091266639117071 0.6179795511991585 -0.7228706523012989 0.3091266639117071 0.5707110805360036 0.7192114718924991 0.3962621875118188 -0.5707110805360036 -0.7192114718924991 -0.3962621875118188 -0.6999537629947992 0.7141776562948755 0.003873618279981795 0.6999537629947992 -0.7141776562948755 -0.003873618279981795 0.3273966486538866 0.7209092289414518 0.6108202011044208 -0.3273966486538866 -0.7209092289414518 -0.6108202011044208 -0.6309130786522602 0.7132712578771855 0.3052749578197078 0.6309130786522602 -0.7132712578771855 -0.3052749578197078 -0.01337508127704687 0.7218060427142515 0.6919661436096599 0.01337508127704687 -0.7218060427142515 -0.6919661436096599 -0.3801739812245751 0.7237156406791439 0.5759369891196715 0.3801739812245751 -0.7237156406791439 -0.5759369891196715</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID321\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID319\">\r\n\t\t\t\t\t<float_array count=\"72\" id=\"ID322\">10.62254496526318 10.58597901468444 10.02435287981894 9.65120515883069 10.19367564998362 10.72394999514477 14.96110814048428 7.718424838868263 13.8945885778913 7.112516974760296 14.67366561987308 7.960827729676313 1.933627046348441 10.97743010008375 1.202271169615731 11.89978789719242 1.696142772314045 12.04214687284743 18.3961081709604 2.641137417643054 17.11711045647631 2.616524038178354 18.26468471539078 3.122552538824543 -5.548728912979404 7.65138727776807 -6.785922521949193 8.084323930772092 -6.52071943268769 8.424102862944066 18.38599620971365 -1.222997101699112 17.22446535028297 -0.8189539529047211 18.50345185026655 -0.7939825504753987 -8.05029492928022 3.289034660604903 -9.425405248137516 3.308304911706402 -9.309935028138126 3.679868275081967 16.94411386082575 -4.063997537821977 16.69445513940783 -4.360936482954553 15.81224755184468 -3.610839220933176 -8.149844598314363 -1.106574484923794 -9.448921067989758 -1.455600782491445 -9.524954727489204 -1.087295859215323 11.48831525242079 -8.75386128287732 11.04736864805656 -8.918917385485216 10.83216194436042 -7.871902693084232 -7.021471257962126 -6.293757665802318 -7.322809907298218 -5.944937819296826 -6.040699822826644 -5.559035419713093 1.441548375341257 -10.58282918537751 0.9523591449902585 -10.43376135329469 1.690367232773703 -9.540434004979337</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID322\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID318\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID316\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID317\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID318\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID319\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 1 4 0 5 1 6 8 7 2 8 10 9 1 10 6 11 1 12 12 13 8 14 14 15 1 16 10 17 1 18 16 19 12 20 14 21 18 22 1 23 1 24 20 25 16 26 18 27 22 28 1 29 24 30 20 31 1 32 22 33 24 34 1 35</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID318\" />\r\n\t\t\t\t\t<p>3 4 5 5 4 7 3 9 4 7 4 11 9 13 4 11 4 15 13 17 4 4 19 15 17 21 4 4 23 19 4 21 25 4 25 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID330\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID331\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID335\">-0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"128\" source=\"#ID335\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID332\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID336\">-0.902466236746562 0.1795708561871048 0.3915469309555731 -0.9024665938061016 0.2869970887591513 0.3212268950567254 -0.9024662367466551 0.1795709440136923 0.3915468906764066 -0.9024665938125612 0.2869979446047657 0.3212261303894707 0.9024665938125612 -0.2869979446047657 -0.3212261303894707 0.902466236746562 -0.1795708561871048 -0.3915469309555731 0.9024665938061016 -0.2869970887591513 -0.3212268950567254 0.9024662367466551 -0.1795709440136923 -0.3915468906764066 -0.9024668903167546 0.05618340562307148 0.4270795438962162 -0.9024668903001765 0.05618563690832937 0.4270792503940392 0.9024668903167546 -0.05618340562307148 -0.4270795438962162 0.9024668903001765 -0.05618563690832937 -0.4270792503940392 -0.9024690894613248 0.3689289867002785 0.2223531995253341 -0.902469089464752 0.3689290774500262 0.2223530489391454 0.902469089464752 -0.3689290774500262 -0.2223530489391454 0.9024690894613248 -0.3689289867002785 -0.2223531995253341 -0.9999555776890411 0.006279922634141023 0.007028884711349623 -0.9999999999999999 -3.944088456120249e-009 1.649036539061831e-008 -0.9999555775055583 0.003929272324182818 0.008567603779806768 0.9999555775055583 -0.003929272324182818 -0.008567603779806768 0.9999999999999999 3.944088456120249e-009 -1.649036539061831e-008 0.9999555776890411 -0.006279922634141023 -0.007028884711349623 -0.9024674946036678 -0.07219701394895309 0.4246645880699658 -0.9024674946038228 -0.07219707389978321 0.424664577877421 0.9024674946036678 0.07219701394895309 -0.4246645880699658 0.9024674946038228 0.07219707389978321 -0.424664577877421 -0.9999555778310314 0.001229424558499158 0.009345099243102516 0.9999555778310314 -0.001229424558499158 -0.009345099243102516 -0.9024695789502093 0.4180784961390021 0.1037257448061106 -0.9024695789497297 0.4180784539420578 0.1037259148897536 0.9024695789497297 -0.4180784539420578 -0.1037259148897536 0.9024695789502093 -0.4180784961390021 -0.1037257448061106 -0.9999555784085298 0.008072791231372301 0.004865311027822405 0.9999555784085298 -0.008072791231372301 -0.004865311027822405 -0.9024683401951699 -0.1941614071388285 0.3845155951625956 -0.9024683401956324 -0.1941614450021188 0.3845155760424143 0.9024683401951699 0.1941614071388285 -0.3845155951625956 0.9024683401956324 0.1941614450021188 -0.3845155760424143 -0.9999555778376283 -0.001579793115735819 0.009292287400107886 0.9999555778376283 0.001579793115735819 -0.009292287400107886 -0.9024695599145399 0.4300784014704719 -0.02410937610681846 -0.9024695599118074 0.4300783861399769 -0.02410964968268119 0.9024695599118074 -0.4300783861399769 0.02410964968268119 0.9024695599145399 -0.4300784014704719 0.02410937610681846 -0.9999555771365172 0.009148344649372987 0.002269701247122971 0.9999555771365172 -0.009148344649372987 -0.002269701247122971 -0.9024699496610145 -0.298869595953435 0.3102014741639317 -0.9024699496784561 -0.298870415416041 0.3102006845840415 0.9024699496610145 0.298869595953435 -0.3102014741639317 0.9024699496784561 0.298870415416041 -0.3102006845840415 -0.9999555776015303 -0.004248627287482877 0.008413797582663555 0.9999555776015303 0.004248627287482877 -0.008413797582663555 -0.9024682165406183 0.4038669616350336 -0.1498085292421026 -0.902468216543048 0.4038670647292976 -0.1498082512966218 0.9024682165406183 -0.4038669616350336 0.1498085292421026 0.902468216543048 -0.4038670647292976 0.1498082512966218 -0.999955577745935 0.009410860694318868 -0.0005274806018676984 0.999955577745935 -0.009410860694318868 0.0005274806018676984 -0.9024707715227106 -0.3770220929027301 0.2083287018402623 -0.9024707715194342 -0.3770227739999134 0.2083274692366014 0.9024707715227106 0.3770220929027301 -0.2083287018402623 0.9024707715194342 0.3770227739999134 -0.2083274692366014 -0.9999555770671936 -0.006539895081909356 0.006787758432154178 0.9999555770671936 0.006539895081909356 -0.006787758432154178 -0.9024668466034375 0.3417689209700612 -0.2621976266875958 -0.9024668466014079 0.3417688417781226 -0.262197729919524 0.9024668466034375 -0.3417689209700612 0.2621976266875958 0.9024668466014079 -0.3417688417781226 0.262197729919524 -0.9999555775200822 0.008837293966907273 -0.003277990515714328 0.9999555775200822 -0.008837293966907273 0.003277990515714328 -0.902469637953096 -0.4216810734117544 0.08794103080541284 -0.9024696379339142 -0.4216812607433428 0.08794013273434857 0.902469637953096 0.4216810734117544 -0.08794103080541284 0.9024696379339142 0.4216812607433428 -0.08794013273434857 -0.9999555769430629 -0.008249995118261777 0.004558697293603463 0.9999555769430629 0.008249995118261777 -0.004558697293603463 -0.902465509489143 0.2493039587819413 -0.3512884004890483 -0.9024655094892364 0.2493038174778161 -0.3512885007701228 0.902465509489143 -0.2493039587819413 0.3512884004890483 0.9024655094892364 -0.2493038174778161 0.3512885007701228 -0.9999555779597974 0.00747843989793408 -0.005737163391514847 0.9999555779597974 -0.00747843989793408 0.005737163391514847 -0.9024672758692717 -0.4288731719288677 -0.04025690480859202 -0.9024672758646049 -0.4288730763736164 -0.04025792288916159 0.9024672758692717 0.4288731719288677 0.04025690480859202 0.9024672758646049 0.4288730763736164 0.04025792288916159 -0.9999555776764442 -0.009227086398497142 0.001924461057970694 0.9999555776764442 0.009227086398497142 -0.001924461057970694 -0.9024664086806516 0.1346861044661979 -0.4091626015006348 -0.9024664086756207 0.134686627996427 -0.4091624291782907 0.9024664086806516 -0.1346861044661979 0.4091626015006348 0.9024664086756207 -0.134686627996427 0.4091624291782907 -0.9999555777995033 0.005455079717335024 -0.007686646403922885 0.9999555777995033 -0.005455079717335024 0.007686646403922885 -0.902467892340141 -0.3979517141178801 -0.1648821898380311 -0.9024678923401798 -0.3979516028754097 -0.1648824583270336 0.9024678923401798 0.3979516028754097 0.1648824583270336 0.902467892340141 0.3979517141178801 0.1648821898380311 -0.9999555778851129 -0.009384369994094055 -0.000880827034032532 0.9999555778851129 0.009384369994094055 0.000880827034032532 -0.9024663791541479 0.008097340179231503 -0.430684185428747 -0.9024663791250542 0.008094825123542416 -0.4306842327681999 0.9024663791541479 -0.008097340179231503 0.430684185428747 0.9024663791250542 -0.008094825123542416 0.4306842327681999 -0.9999555777991002 0.002947080780235639 -0.008953052180265634 0.9999555777991002 -0.002947080780235639 0.008953052180265634 -0.9024662331196897 -0.3316729654395058 -0.2748594951522004 -0.9024662331163754 -0.3316728008946313 -0.2748596937192685 0.9024662331163754 0.3316728008946313 0.2748596937192685 0.9024662331196897 0.3316729654395058 0.2748594951522004 -0.999955578177709 -0.008707751861328623 -0.003607870397508076 0.999955578177709 0.008707751861328623 0.003607870397508076 -0.9024648168310505 -0.1192080340211159 -0.4139404534554687 -0.9024648168337509 -0.1192074838149737 -0.4139406118994938 0.9024648168310505 0.1192080340211159 0.4139404534554687 0.9024648168337509 0.1192074838149737 0.4139406118994938 -0.9999555778745281 0.0001771432880129035 -0.009423953410019359 0.9999555778745281 -0.0001771432880129035 0.009423953410019359 -0.902465654171666 -0.2359217875784709 -0.3604117828072296 -0.9024656541724766 -0.2359218880318137 -0.3604117170494711 0.9024656541724766 0.2359218880318137 0.3604117170494711 0.902465654171666 0.2359217875784709 0.3604117828072296 -0.9999555777101306 -0.007257512103960586 -0.006014243465287442 0.9999555777101306 0.007257512103960586 0.006014243465287442 -0.9999555776620278 -0.002608402576862527 -0.009057534907320045 0.9999555776620278 0.002608402576862527 0.009057534907320045 -0.9999555782419665 -0.005162296496035368 -0.007886205530005717 0.9999555782419665 0.005162296496035368 0.007886205530005717</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"128\" source=\"#ID336\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID334\">\r\n\t\t\t\t\t<float_array count=\"294\" id=\"ID337\">0.3968896729741346 0.1922852666439943 0.4737327008967246 -0.9152355322345628 0.9630262887515753 -0.6354626856147748 -0.3524052240098752 -0.2361568945663559 0.4655388858093918 0.08953581466919515 0.09695620062060414 -0.9810664844640712 0.6730670627304097 -0.8361327489468616 -0.4167537122269166 -0.1324198059202896 0.2973352684969716 0.2683873916988639 0.7882870625951499 -0.7713646321021612 1.150086384430147 -0.3900178469634608 -0.2567247963027225 -0.31560409935685 -1.289966888573064 1.118085413747316 0.06212354191532857 -0.07234147090675236 -0.783870346512475 1.378704611404 -0.4367617780734336 -0.01462412283998805 0.3039367921445285 -0.9584067804719864 0.4893324111284635 -0.02983363233461241 -0.3008224430983176 -0.9484756688791239 -0.8016174477820905 1.372301469794169 0.04433562663634652 -0.07875933781474324 -0.2203908618967485 1.503989911589727 0.1809070857644482 0.3155180012112068 1.022592991639205 -0.5743581365222055 1.234023150294384 -0.1285484832020004 -0.1429120515214738 -0.367198117649849 -1.66136548078844 0.7619376860652442 0.07671628909398423 -0.06208436965356513 -1.275396677288614 1.12832667461258 -0.4073515623064179 0.1011264290438674 -0.09476487502684913 -0.9804405628471385 0.4626568454837426 -0.1490324395691673 -0.6628716918210396 -0.8170859861489843 -0.2397426200746382 1.50198664557768 0.02493089743164573 -0.08076808610367456 0.3650414996825432 1.493042349004655 0.05736325230823958 0.3346473762187736 1.17267479942198 -0.3439402612969316 1.223643632931941 0.1302055707804858 -0.02066572129329647 -0.3914599007726098 -1.882760478217731 0.3355170423070947 0.08682001596138418 -0.04889598984901968 -1.651269230232574 0.7751163069047897 -0.3353501529221609 0.1995466050261453 -0.4668875889383237 -0.9047897006971836 0.3922070304645184 -0.2514821593426724 -0.9419647060013334 -0.6102700701630079 0.005635596625816379 -0.07818806575251706 0.9203364240227525 1.346830328258524 0.3457982769905845 1.495615404073835 1.126355299807839 0.3752155678757479 0.1040111679385125 -0.388637340607042 1.238011217856225 -0.09244888651659929 -0.06697561493530457 0.3275468783499481 -1.93459673056012 -0.123302009428372 0.09153118311425376 -0.03395832490335624 -1.878050069741289 0.3504523016984736 -0.2344980136134975 0.272067017744716 -0.7734592826352205 -0.7528807175430338 0.2920443195803396 -0.3274591628500121 -1.117289405717435 -0.3613891006095253 -0.01183525826232684 -0.07124871822464581 1.39616406775141 1.078353125365281 0.9029042283172811 1.35375431886067 0.9447253547904824 0.5959672029532446 0.2257787374954082 -0.3581771099131729 1.214189184550729 0.169958907902574 -0.186897061406765 0.2942037124704471 -1.93569205005432 -0.1079301547813531 -1.812203419199725 -0.5737500453082663 0.09043585409260579 -0.01858633654730853 -0.1179073442473178 0.3167816077142103 -0.9983469950028587 -0.5495662572713074 0.1755912440477331 -0.3743751425856143 -1.190013434193229 -0.09824780362384109 -0.02592837582048213 -0.06056746696411634 1.75026303628513 0.7114738979672752 1.382091246066081 1.089018993299208 0.6794575272154855 0.7773668085625854 0.3372907202383119 -0.2986409217881123 1.092513136402134 0.4297375884811659 -0.2952586744430266 0.2337084769733447 -1.819006096267833 -0.5593221080025462 -1.526489466348473 -0.9758143642852514 0.08363089132390443 -0.004153551560189934 0.005430313511846641 0.3347777810011712 -1.13847441899684 -0.3136789370305894 0.05211876781394509 -0.3929897756725005 -1.168978557164991 0.1615496775993526 -0.03539234262457076 -0.04709359816704189 1.951177325817038 0.2788063115482746 1.740805216807092 0.7249390145054863 0.3383174364586705 0.8966761424705388 0.4270405228667517 -0.2102904844304112 0.8659105981995169 0.6639631861579365 -0.3809160440027784 0.146093917292971 -1.538389610930159 -0.9636106058033177 -1.102793304223511 -1.293774310216109 0.07171849013542153 0.008062775638568245 -1.060803453390981 0.4063081240514468 -0.07222633956791902 -0.3845717407713823 0.1297449779240717 0.3265826019173688 -1.192697017918619 -0.05808015184411099 -0.03938788681399102 -0.0320215229750103 1.981042651962162 -0.1812112976198525 1.947182244123232 0.2938766420839853 -0.0524315242956043 0.9283402239298384 0.4802244090786475 -0.09863015383275404 0.5419672336339126 0.840067431844499 -0.4299897675531783 0.03654607664910618 -1.118723112271001 -1.28487983214167 -0.5787908752940257 -1.499364633663538 0.05575920687481053 0.01697370996765415 -0.8675436049402432 0.6248879863575346 -0.1921656442747269 -0.3487502314162322 0.2497335503953799 0.2916925404031848 -1.156099853862085 0.2066797400671177 -0.03755897012292375 -0.01669365819150997 1.837226823603213 -0.6277221656035168 1.982871524296908 -0.1658838045780912 0.1549471133513004 0.926271017659403 -0.4314797661798583 -0.08241555601430506 0.4850983193021703 0.02291896507682182 -0.4435596451746486 0.8574897570892256 -0.5973340108549068 -1.494561963904799 -0.0009938348333969052 -1.574320909725511 0.03716949338786759 0.02178844157197701 -0.590668199735378 0.8003619256414625 -0.3002610023705488 -0.2850266574071003 0.3573215388483328 0.2282013813533236 -1.020058250736914 0.4652208336946513 -0.03006746412218775 -0.00246891752738707 1.53248244939769 -1.021051126561889 1.844715281581389 -0.6135032123919676 -0.2397379242648021 0.9092043715946208 -0.3847025093323656 -0.1940833813882925 0.44076218466755 0.1365952386707551 -0.7787690196498813 0.6932719536246276 -0.02050822442818087 -1.574031800828231 0.5791832437635509 -1.51196408310349 0.01760077999626869 0.02207835371030489 -0.017581589667695 0.009384382415771322 1.093911919977969 -1.326263772815833 1.544954207250127 -1.00921122784879 -0.001204457374191035 0.01781819349283538 0.560426229320167 -1.516213318070019 1.110257215438868 -1.317846356961747</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"147\" source=\"#ID337\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID333\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID331\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID332\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"126\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID333\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID334\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 2 5 9 6 2 5 8 4 0 7 5 7 10 4 7 5 11 6 7 5 10 4 3 8 12 9 1 10 12 9 3 8 13 11 14 11 4 8 15 9 6 10 15 9 4 8 16 12 17 13 18 14 19 14 20 13 21 12 8 15 22 16 23 17 22 16 8 15 9 18 11 18 10 15 24 16 25 17 24 16 10 15 18 19 17 20 26 21 27 21 20 20 19 19 13 22 28 23 12 24 28 23 13 22 29 25 30 25 14 22 31 23 15 24 31 23 14 22 32 26 17 27 16 28 21 28 20 27 33 26 23 29 34 30 35 31 34 30 23 29 22 32 24 32 25 29 36 30 37 31 36 30 25 29 26 33 17 34 38 35 39 35 20 34 27 33 29 36 40 37 28 38 40 37 29 36 41 39 42 39 30 36 43 37 31 38 43 37 30 36 44 40 17 41 32 42 33 42 20 41 45 40 35 43 46 44 47 45 46 44 35 43 34 46 36 46 37 43 48 44 49 45 48 44 37 43 17 47 50 48 38 49 39 49 51 48 20 47 40 50 52 51 53 52 52 51 40 50 41 53 42 53 43 50 54 51 55 52 54 51 43 50 56 54 17 55 44 56 45 56 20 55 57 54 47 57 58 58 59 59 58 58 47 57 46 60 48 60 49 57 60 58 61 59 60 58 49 57 17 61 62 62 50 63 51 63 63 62 20 61 53 64 64 65 65 66 64 65 53 64 52 67 54 67 55 64 66 65 67 66 66 65 55 64 56 68 68 69 17 70 20 70 69 69 57 68 59 71 70 72 71 73 70 72 59 71 58 74 60 74 61 71 72 72 73 73 72 72 61 71 17 75 74 76 62 77 63 77 75 76 20 75 65 78 76 79 77 80 76 79 65 78 64 81 66 81 67 78 78 79 79 80 78 79 67 78 68 82 80 83 17 84 20 84 81 83 69 82 71 85 82 86 83 87 82 86 71 85 70 88 72 88 73 85 84 86 85 87 84 86 73 85 17 89 86 90 74 91 75 91 87 90 20 89 77 92 88 93 89 94 88 93 77 92 76 95 78 95 79 92 90 93 91 94 90 93 79 92 80 96 92 97 17 98 20 98 93 97 81 96 82 99 94 100 83 101 94 100 82 99 95 102 96 102 84 99 97 100 85 101 97 100 84 99 17 103 98 104 86 105 87 105 99 104 20 103 89 106 100 107 101 108 100 107 89 106 88 109 90 109 91 106 102 107 103 108 102 107 91 106 92 110 104 111 17 112 20 112 105 111 93 110 95 113 106 114 94 115 106 114 95 113 107 116 108 116 96 113 109 114 97 115 109 114 96 113 17 117 110 118 98 119 99 119 111 118 20 117 112 120 100 121 113 122 100 121 112 120 101 123 103 123 114 120 102 121 115 122 102 121 114 120 104 124 116 125 17 126 20 126 117 125 105 124 107 127 118 128 106 129 118 128 107 127 119 130 120 130 108 127 121 128 109 129 121 128 108 127 17 131 122 132 110 133 111 133 123 132 20 131 119 134 113 135 118 136 113 135 119 134 112 137 114 137 120 134 115 135 121 136 115 135 120 134 116 138 124 139 17 140 20 140 125 139 117 138 17 141 126 142 122 143 123 143 127 142 20 141 17 144 124 145 126 146 127 146 125 145 20 144</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID338\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID339\">\r\n\t\t\t\t\t<float_array count=\"3000\" id=\"ID343\">-0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 -0.3788313495221017 0.7391863847872159 -0.7918046221566382 -0.3788313495221017 0.7391863847872159</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1000\" source=\"#ID343\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID340\">\r\n\t\t\t\t\t<float_array count=\"3000\" id=\"ID344\">-0.6131685433316286 -0.6352305123706656 -0.4695812321865837 -0.6107430305208749 -0.4313432930897734 -0.6640300551757034 -0.6100330350797705 -0.432978057042589 -0.6636186391527805 0.6100330350797705 0.432978057042589 0.6636186391527805 0.6107430305208749 0.4313432930897734 0.6640300551757034 0.6131685433316286 0.6352305123706656 0.4695812321865837 -0.6414932949073833 -0.1910191354735049 -0.7429657074669219 0.6414932949073833 0.1910191354735049 0.7429657074669219 -0.9119812894775979 0.2460334925802348 0.3282646008505167 -0.9087638176408079 0.2443143590689556 0.3383176284198477 -0.9230582056960787 0.2076733531501404 0.3237828397066665 0.9230582056960787 -0.2076733531501404 -0.3237828397066665 0.9087638176408079 -0.2443143590689556 -0.3383176284198477 0.9119812894775979 -0.2460334925802348 -0.3282646008505167 -0.5814085771430504 -0.6235265193762986 -0.5226650419331412 0.5814085771430504 0.6235265193762986 0.5226650419331412 -0.6219866060717065 -0.2255011033331463 -0.7498545954136263 0.6219866060717065 0.2255011033331463 0.7498545954136263 -0.9234677517021199 0.1707487320338378 0.3435872262978766 -0.9210274254689069 0.188359605763954 0.3409239511248287 0.9210274254689069 -0.188359605763954 -0.3409239511248287 0.9234677517021199 -0.1707487320338378 -0.3435872262978766 -0.9243339167159471 0.2082873548390461 0.319723612238305 0.9243339167159471 -0.2082873548390461 -0.319723612238305 -0.9018502407217643 0.249016537502691 0.3530678509299122 0.9018502407217643 -0.249016537502691 -0.3530678509299122 -0.4688809399671691 -0.7410968956416455 -0.4805476619502169 0.4688809399671691 0.7410968956416455 0.4805476619502169 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.5313074129219958 -0.1516791908637951 -0.8334901655286883 0.5313074129219958 0.1516791908637951 0.8334901655286883 -0.9193974272347317 0.1904939904256795 0.3441226676722378 0.9193974272347317 -0.1904939904256795 -0.3441226676722378 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 -0.9064264101263384 0.2873078457702411 0.3095890256200023 0.9064264101263384 -0.2873078457702411 -0.3095890256200023 -0.4125080872329844 -0.7444765374883888 -0.5249683448520343 0.4125080872329844 0.7444765374883888 0.5249683448520343 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 -0.4893414839082547 -0.1788419456180993 -0.8535575379633175 0.4893414839082547 0.1788419456180993 0.8535575379633175 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 -0.8847877951732008 0.3876305483478212 0.2586370342779885 0.8847877951732008 -0.3876305483478212 -0.2586370342779885 0.04569831620770311 0.6180154536524877 -0.7848366472983348 0.04971157032437513 0.7278710826830646 -0.683909677347578 0.05401064972997639 0.5993988161129192 -0.7986262636291001 -0.05401064972997639 -0.5993988161129192 0.7986262636291001 -0.04971157032437513 -0.7278710826830646 0.683909677347578 -0.04569831620770311 -0.6180154536524877 0.7848366472983348 -0.9126387109060857 0.2012446850352883 0.3557965150204898 0.9126387109060857 -0.2012446850352883 -0.3557965150204898 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 -0.5954974211095998 -0.6204561645494262 0.5103106596225786 -0.5750104179820392 -0.5638465179981029 0.5928238552500531 -0.5884703132773211 -0.5886073228299992 0.554296048968593 0.5884703132773211 0.5886073228299992 -0.554296048968593 0.5750104179820392 0.5638465179981029 -0.5928238552500531 0.5954974211095998 0.6204561645494262 -0.5103106596225786 -0.4435911602170827 0.5573645162302835 -0.7018345094284296 -0.4368753109454024 0.552964815618193 -0.7094856414154525 -0.4492936185982592 0.5610742779696141 -0.6952200363106335 0.4492936185982592 -0.5610742779696141 0.6952200363106335 0.4368753109454024 -0.552964815618193 0.7094856414154525 0.4435911602170827 -0.5573645162302835 0.7018345094284296 0.02921517395714277 -0.972018298904142 0.2330813167247683 0.007288799048047151 -0.9575732679774761 0.2880977435929935 0.0331249413609678 -0.9196095857015579 0.391434474906901 -0.0331249413609678 0.9196095857015579 -0.391434474906901 -0.007288799048047151 0.9575732679774761 -0.2880977435929935 -0.02921517395714277 0.972018298904142 -0.2330813167247683 -0.9092595095315058 0.2346197211408815 0.3438033315404329 0.9092595095315058 -0.2346197211408815 -0.3438033315404329 0.02784385059247752 0.01284876764323613 -0.9995297039879475 0.02557206782593211 -0.2876548247142446 -0.9573926943348394 0.0278811390736898 -0.1294666985918035 -0.9911917150782147 -0.0278811390736898 0.1294666985918035 0.9911917150782147 -0.02557206782593211 0.2876548247142446 0.9573926943348394 -0.02784385059247752 -0.01284876764323613 0.9995297039879475 0.0271922736872749 -0.5474159088744459 -0.8364187963950122 0.009825431372019862 -0.4178389509239254 -0.9084679807176186 -0.009825431372019862 0.4178389509239254 0.9084679807176186 -0.0271922736872749 0.5474159088744459 0.8364187963950122 0.03669397673521557 0.6999623410633172 -0.7132364777298733 -0.03669397673521557 -0.6999623410633172 0.7132364777298733 -0.9111139540391022 0.1995854796515729 0.3606064323711994 0.9111139540391022 -0.1995854796515729 -0.3606064323711994 -0.6085378327787385 -0.4363385207717332 0.6627898621491521 0.6085378327787385 0.4363385207717332 -0.6627898621491521 -0.4290146282623736 0.5477739795014404 -0.7182549102637957 0.4290146282623736 -0.5477739795014404 0.7182549102637957 0.0355140718306879 -0.9496263193448361 0.3113657083071032 -0.0355140718306879 0.9496263193448361 -0.3113657083071032 0.02589537248138592 -0.5533675459134304 -0.8325345571288905 0.02066161520126121 -0.7708648855079502 -0.6366635107716556 0.0193163073801767 -0.6584185702951814 -0.7524040580430462 0.02675587691421818 -0.5599249416657842 -0.8281112139991341 -0.02675587691421818 0.5599249416657842 0.8281112139991341 -0.02589537248138592 0.5533675459134304 0.8325345571288905 -0.02066161520126121 0.7708648855079502 0.6366635107716556 -0.0193163073801767 0.6584185702951814 0.7524040580430462 0.019948224836587 -0.9244137174900406 -0.380869199650106 0.01414311661247775 -0.8602383968027927 -0.5096958631563011 -0.01414311661247775 0.8602383968027927 0.5096958631563011 -0.019948224836587 0.9244137174900406 0.380869199650106 -0.3869225765070412 0.8727213960493712 -0.2977386180306301 -0.4189594113912097 0.8690844326029823 -0.2629928908048341 -0.5897023076858039 0.8014515282654252 -0.09963250549419947 0.5897023076858039 -0.8014515282654252 0.09963250549419947 0.4189594113912097 -0.8690844326029823 0.2629928908048341 0.3869225765070412 -0.8727213960493712 0.2977386180306301 -0.9099990926414894 0.2258504072914317 0.3476970591160654 0.9099990926414894 -0.2258504072914317 -0.3476970591160654 0.03481463620808104 0.01941661477622277 -0.9992051521966502 -0.03481463620808104 -0.01941661477622277 0.9992051521966502 0.02635295136991371 0.002234022109095546 -0.9996502043711644 -0.02635295136991371 -0.002234022109095546 0.9996502043711644 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.03784136067587975 0.8144840404498097 -0.578950584484333 0.03784136067587975 -0.8144840404498097 0.578950584484333 -0.9173890060384352 0.2293469628645768 0.3252650953062846 0.9173890060384352 -0.2293469628645768 -0.3252650953062846 -0.6122597140083652 -0.4503628205385982 0.6498548857082733 0.6122597140083652 0.4503628205385982 -0.6498548857082733 -0.03958647210302838 -0.8552382005688831 0.5167209416252983 0.03958647210302838 0.8552382005688831 -0.5167209416252983 0.03026716317725075 -0.2976749896778023 -0.9541873502376365 -0.03026716317725075 0.2976749896778023 0.9541873502376365 0.02910907021181551 -0.7855610775535136 -0.6180990660600988 -0.02910907021181551 0.7855610775535136 0.6180990660600988 0.01961372260044477 -0.9291073014986491 -0.3692897564076902 -0.01961372260044477 0.9291073014986491 0.3692897564076902 -0.5991542260006512 0.7982237271597008 -0.06207330235162312 0.5991542260006512 -0.7982237271597008 0.06207330235162312 -0.9157317949075062 0.1970830215706734 0.3501336350653144 0.9157317949075062 -0.1970830215706734 -0.3501336350653144 0.0299077864524713 0.3064717907049849 -0.9514097780723052 -0.0299077864524713 -0.3064717907049849 0.9514097780723052 0.02136018720689605 0.2992869541934073 -0.9539240333758867 -0.02136018720689605 -0.2992869541934073 0.9539240333758867 -0.005482260976492941 0.139386230751211 0.9902229160605989 -0.007408558792217734 0.4165322447531742 0.909090755831069 -0.006913157180589681 0.1302289306279806 0.9914598498604414 0.006913157180589681 -0.1302289306279806 -0.9914598498604414 0.007408558792217734 -0.4165322447531742 -0.909090755831069 0.005482260976492941 -0.139386230751211 -0.9902229160605989 -0.003797720091156379 0.4255976902132539 0.9049045161823717 -0.003802609351618076 0.6663786935817081 0.7456037666900933 0.003802609351618076 -0.6663786935817081 -0.7456037666900933 0.003797720091156379 -0.4255976902132539 -0.9049045161823717 -0.0008944920513999811 0.6733396999513402 0.7393327047773614 0.001295306138674836 0.8564789233090522 0.5161803716816183 -0.001295306138674836 -0.8564789233090522 -0.5161803716816183 0.0008944920513999811 -0.6733396999513402 -0.7393327047773614 0.002908326967066847 0.8606855222858298 0.5091286412703778 0.006332432417781015 0.9251165065025596 0.3796305436818457 -0.006332432417781015 -0.9251165065025596 -0.3796305436818457 -0.002908326967066847 -0.8606855222858298 -0.5091286412703778 -0.001404844418161865 0.99551776389769 0.09456430709471765 0.007293336385795456 0.9730925818604524 0.2302990107936251 0.01231533713361633 0.9984524360191881 -0.05423159114975583 -0.01231533713361633 -0.9984524360191881 0.05423159114975583 -0.007293336385795456 -0.9730925818604524 -0.2302990107936251 0.001404844418161865 -0.99551776389769 -0.09456430709471765 0.0120157990965055 0.998198666219562 -0.05877961661630734 0.01023761722016337 0.980868485680595 -0.1944021733219808 -0.01023761722016337 -0.980868485680595 0.1944021733219808 -0.0120157990965055 -0.998198666219562 0.05877961661630734 0.01646393589398393 0.9369218021430217 -0.3491510783084469 0.02512467636456076 0.7906507610061087 -0.611751685537553 0.01414019568378701 0.8726596648110707 -0.4881241279406847 -0.01414019568378701 -0.8726596648110707 0.4881241279406847 -0.02512467636456076 -0.7906507610061087 0.611751685537553 -0.01646393589398393 -0.9369218021430217 0.3491510783084469 0.02402975912977263 0.7849144902682695 -0.6191379601050702 0.03469207648931452 0.5770147196282489 -0.8159966134495859 -0.03469207648931452 -0.5770147196282489 0.8159966134495859 -0.02402975912977263 -0.7849144902682695 0.6191379601050702 0.02921019489462125 0.5707659558659806 -0.8205930709789181 0.03508365640598449 0.3143465129616109 -0.9486597951015225 -0.03508365640598449 -0.3143465129616109 0.9486597951015225 -0.02921019489462125 -0.5707659558659806 0.8205930709789181 0.01492656118699344 -0.9952036424557336 -0.09667940739356572 -0.01492656118699344 0.9952036424557336 0.09667940739356572 0.008347472633542526 -0.9795541238063974 0.2010075576552121 0.01346271275209136 -0.9964377721902609 -0.08324975386068219 -0.01346271275209136 0.9964377721902609 0.08324975386068219 -0.008347472633542526 0.9795541238063974 -0.2010075576552121 0.002143504963585591 -0.8767179422043012 0.4810000573841198 0.008249685662450967 -0.976765905206645 0.2141502022233793 -0.008249685662450967 0.976765905206645 -0.2141502022233793 -0.002143504963585591 0.8767179422043012 -0.4810000573841198 0.002686763416736887 -0.7899672717419514 0.6131431243020837 0.003370248980950642 -0.8703013678452798 0.4925080411002865 -0.003370248980950642 0.8703013678452798 -0.4925080411002865 -0.002686763416736887 0.7899672717419514 -0.6131431243020837 -0.0007244517714074711 -0.686530526938509 0.7271006194132722 -0.006791809893397876 -0.4554923169053546 0.890213806092988 -0.009335567978409306 -0.5787453233274817 0.8154549024299805 0.009335567978409306 0.5787453233274817 -0.8154549024299805 0.006791809893397876 0.4554923169053546 -0.890213806092988 0.0007244517714074711 0.686530526938509 -0.7271006194132722 -0.9824989449431362 0.08503230673662772 -0.1657266725565704 -0.9999899824504387 -0.00260493943261591 0.003639957324477385 -0.9869176053607741 0.09681709921543918 -0.1289189261841074 0.9869176053607741 -0.09681709921543918 0.1289189261841074 0.9999899824504387 0.00260493943261591 -0.003639957324477385 0.9824989449431362 -0.08503230673662772 0.1657266725565704 -0.003997307821499382 -0.4458837485294091 0.8950819539726755 -0.007381002033179414 -0.3156791974855449 0.9488372700752583 0.007381002033179414 0.3156791974855449 -0.9488372700752583 0.003997307821499382 0.4458837485294091 -0.8950819539726755 -0.9999905288897614 -0.001370765720624478 0.004130754424404623 -0.9841485037669431 0.06359518961047951 -0.1655517272386327 0.9841485037669431 -0.06359518961047951 0.1655517272386327 0.9999905288897614 0.001370765720624478 -0.004130754424404623 -0.004057949462573538 -0.1654053068756676 0.9862173277242321 -0.002427302614937988 -0.01243128957560056 0.9999197824033201 0.002427302614937988 0.01243128957560056 -0.9999197824033201 0.004057949462573538 0.1654053068756676 -0.9862173277242321 -0.05001318370946404 0.8414267630942929 -0.5380517482583845 0.05001318370946404 -0.8414267630942929 0.5380517482583845 -0.9187981593551595 0.2316284903157012 0.3196219404853802 0.9187981593551595 -0.2316284903157012 -0.3196219404853802 -0.5116852732955495 -0.4542311857591191 0.7292819831699693 0.5116852732955495 0.4542311857591191 -0.7292819831699693 -0.05172784220055365 -0.8363317719908131 0.5457777913216892 0.05172784220055365 0.8363317719908131 -0.5457777913216892 -0.5143076157204272 0.8449925937235406 -0.1465441672818575 0.5143076157204272 -0.8449925937235406 0.1465441672818575 -0.9157810847001926 0.1934753844391117 0.3520117619078609 0.9157810847001926 -0.1934753844391117 -0.3520117619078609 0.03964917043178988 0.3525170978793918 0.9349650469331792 0.04335475963781485 0.2054908490064289 0.9776982539574081 0.03592728837289261 0.3424796949339312 0.9388380523328466 -0.03592728837289261 -0.3424796949339312 -0.9388380523328466 -0.04335475963781485 -0.2054908490064289 -0.9776982539574081 -0.03964917043178988 -0.3525170978793918 -0.9349650469331792 0.01644376297839757 0.9974451863900713 -0.06951764384949995 -0.01644376297839757 -0.9974451863900713 0.06951764384949995 0.03346756875724736 0.3104113722911479 -0.9500130008551491 0.02135092118153528 0.2802821764875909 -0.9596801757398549 0.03793714202236574 0.1449358727658069 -0.9887134903705868 -0.03793714202236574 -0.1449358727658069 0.9887134903705868 -0.02135092118153528 -0.2802821764875909 0.9596801757398549 -0.03346756875724736 -0.3104113722911479 0.9500130008551491 0.04741565844858901 -0.9527313725054269 -0.3000911314547839 0.04731999989724039 -0.988143031769225 -0.1460622003656307 0.04357592730064158 -0.986621286913195 -0.1570973417013809 -0.04357592730064158 0.986621286913195 0.1570973417013809 -0.04731999989724039 0.988143031769225 0.1460622003656307 -0.04741565844858901 0.9527313725054269 0.3000911314547839 -0.9612697098559012 0.1241480665562238 -0.2460646307048266 0.9612697098559012 -0.1241480665562238 0.2460646307048266 0.03145112195807651 0.7894354586032027 0.613027310670193 0.02684474802398928 0.6624818840923926 0.7485967624515366 0.002788247194464847 0.7096494163407977 0.7045494528879771 -0.002788247194464847 -0.7096494163407977 -0.7045494528879771 -0.02684474802398928 -0.6624818840923926 -0.7485967624515366 -0.03145112195807651 -0.7894354586032027 -0.613027310670193 -0.06757829711111801 0.7710133873258493 -0.6332231283867335 0.06757829711111801 -0.7710133873258493 0.6332231283867335 -0.9294521394256079 0.253452618746215 0.268105372135372 0.9294521394256079 -0.253452618746215 -0.268105372135372 -0.5121653214427434 -0.4705831108144322 0.7184971950729265 0.5121653214427434 0.4705831108144322 -0.7184971950729265 -0.06755689289069129 -0.8758167307604269 0.4778923731794361 0.06755689289069129 0.8758167307604269 -0.4778923731794361 0.01533915038481843 -0.931302781136795 -0.363922849395779 -0.01533915038481843 0.931302781136795 0.363922849395779 -0.5141693164024285 0.8420130928550114 -0.1632294873207583 0.5141693164024285 -0.8420130928550114 0.1632294873207583 -0.9325766854234757 0.1309140125917365 0.3363959677399454 0.9325766854234757 -0.1309140125917365 -0.3363959677399454 0.001200659249239651 -0.1460802454730157 0.9892720153223333 -0.001200659249239651 0.1460802454730157 -0.9892720153223333 -0.002061751646003162 0.149208950471754 0.9888035387675693 0.002061751646003162 -0.149208950471754 -0.9888035387675693 -0.0009318520237067135 0.433722340755988 0.9010460935939696 0.0009318520237067135 -0.433722340755988 -0.9010460935939696 0.001230385039251648 0.6798257005461618 0.7333726904034371 -0.001230385039251648 -0.6798257005461618 -0.7333726904034371 0.004958609525564488 0.865332610935552 0.5011735075231268 -0.004958609525564488 -0.865332610935552 -0.5011735075231268 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.03665747372773916 0.2635154343631972 0.9639584251783245 -0.03665747372773916 -0.2635154343631972 -0.9639584251783245 0.009900852030461732 0.9748308572254344 0.2227257796713161 -0.009900852030461732 -0.9748308572254344 -0.2227257796713161 0.02459906767420807 0.9291593642459279 -0.3688600841832339 -0.02459906767420807 -0.9291593642459279 0.3688600841832339 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.03526949973342622 0.2184273294063683 -0.9752156500779486 -0.03526949973342622 -0.2184273294063683 0.9752156500779486 0.01810657254151843 0.7819003011516978 -0.6231404906517333 -0.01810657254151843 -0.7819003011516978 0.6231404906517333 0.01159606897749572 -0.9972521189634576 -0.07316927228805119 -0.01159606897749572 0.9972521189634576 0.07316927228805119 0.007746355397098426 -0.9745611152693888 0.2239880054443695 -0.007746355397098426 0.9745611152693888 -0.2239880054443695 0.004188632105367766 -0.8653193803481177 0.5012033772382579 -0.004188632105367766 0.8653193803481177 -0.5012033772382579 0.03694298968752306 -0.9660546355743256 -0.2556827264370916 -0.03694298968752306 0.9660546355743256 0.2556827264370916 0.001214459778276763 -0.6793050578937298 0.7338550016232387 -0.001214459778276763 0.6793050578937298 -0.7338550016232387 -0.9165260464188996 0.2413126785897623 -0.3189799325781723 0.9165260464188996 -0.2413126785897623 0.3189799325781723 0.001434244776386382 -0.4349910787918278 0.9004336201594448 -0.001434244776386382 0.4349910787918278 -0.9004336201594448 0.03479758506284582 0.7257101728783496 0.6871199844675382 -0.03479758506284582 -0.7257101728783496 -0.6871199844675382 -0.9053555865328123 0.1174765612269161 -0.4080815108481708 0.9053555865328123 -0.1174765612269161 0.4080815108481708 -0.06837815441249286 0.7838010835826982 -0.61723600783957 0.06837815441249286 -0.7838010835826982 0.61723600783957 -0.925181050407382 0.2544784030417004 0.2815684043930342 0.925181050407382 -0.2544784030417004 -0.2815684043930342 -0.5094027305261349 -0.4031696580921826 0.7602388341346096 0.5094027305261349 0.4031696580921826 -0.7602388341346096 -0.06822779517691434 -0.8673864003091556 0.4929358990010996 0.06822779517691434 0.8673864003091556 -0.4929358990010996 -0.5108147009650829 0.8560080643809171 -0.07948921305931028 0.5108147009650829 -0.8560080643809171 0.07948921305931028 -0.9295497348399154 0.141402496183842 0.3405034868133092 0.9295497348399154 -0.141402496183842 -0.3405034868133092 0.01921047962226295 0.5651345907762262 -0.8247750310120148 -0.01921047962226295 -0.5651345907762262 0.8247750310120148 -0.924489198402029 -0.3808644361577947 0.0161865162458993 -0.9243377794016469 -0.3811886557337647 0.0171720211599593 -0.9072210144294771 -0.4193680273961145 0.03287078604844312 0.9072210144294771 0.4193680273961145 -0.03287078604844312 0.9243377794016469 0.3811886557337647 -0.0171720211599593 0.924489198402029 0.3808644361577947 -0.0161865162458993 -0.03780903634253117 0.08541542107879442 0.9956277831663706 0.03780903634253117 -0.08541542107879442 -0.9956277831663706 -0.915264571564772 -0.4027493562430763 -0.009149867984932962 0.915264571564772 0.4027493562430763 0.009149867984932962 -0.03805664037554967 -0.009784856047856541 -0.9992276761156334 0.03805664037554967 0.009784856047856541 0.9992276761156334 -0.03988346302587386 -0.9059913707647226 -0.4214130342988013 0.03988346302587386 0.9059913707647226 0.4214130342988013 -0.8756294668438924 0.3525945089564383 -0.3300759746610601 0.8756294668438924 -0.3525945089564383 0.3300759746610601 -0.7066995161370085 -0.3328394342728472 0.6243346097123314 -0.6992610303780938 -0.1874041802288657 0.6898649756490857 -0.706699211393621 -0.332866770111896 0.6243203808709985 0.706699211393621 0.332866770111896 -0.6243203808709985 0.6992610303780938 0.1874041802288657 -0.6898649756490857 0.7066995161370085 0.3328394342728472 -0.6243346097123314 -0.038009535614359 0.8723927326412684 0.4873255536467188 0.038009535614359 -0.8723927326412684 -0.4873255536467188 -0.6961182166882092 -0.4697752474880487 0.5428910067797866 0.6961182166882092 0.4697752474880487 -0.5428910067797866 -0.8876323827149847 0.1162542163379045 -0.4456385422507556 0.8876323827149847 -0.1162542163379045 0.4456385422507556 -0.06016248758640132 0.7467500003972328 -0.6623782242753371 0.06016248758640132 -0.7467500003972328 0.6623782242753371 -0.9245527864503199 0.237309528475381 0.298138110213608 0.9245527864503199 -0.237309528475381 -0.298138110213608 -0.5139497895077154 -0.4058857625891543 0.755719763928664 0.5139497895077154 0.4058857625891543 -0.755719763928664 -0.0600348953330893 -0.8956050067033663 0.4407805387153662 0.0600348953330893 0.8956050067033663 -0.4407805387153662 -0.515859789786745 0.8519771407680433 -0.08957471121854281 0.515859789786745 -0.8519771407680433 0.08957471121854281 -0.9272834517509151 0.1632925520749501 0.3368693256230941 0.9272834517509151 -0.1632925520749501 -0.3368693256230941 -0.9059645702483528 -0.4228100787491342 0.02144375813304393 0.9059645702483528 0.4228100787491342 -0.02144375813304393 -0.04998584997638523 0.03649578989508206 0.9980828984218056 0.04998584997638523 -0.03649578989508206 -0.9980828984218056 -0.9126672826667309 -0.4084995448882047 -0.01290554050999234 -0.9026800271055669 -0.4300978238059344 -0.01358788512213859 -0.9111165739877291 -0.4120009636975097 -0.01103605532726058 0.9111165739877291 0.4120009636975097 0.01103605532726058 0.9026800271055669 0.4300978238059344 0.01358788512213859 0.9126672826667309 0.4084995448882047 0.01290554050999234 -0.9164192555908047 -0.4001603245189633 -0.006889315152686308 0.9164192555908047 0.4001603245189633 0.006889315152686308 -0.9100128209423325 -0.4141053938628353 0.01983402365341829 -0.9098768749122155 -0.4144813710644892 0.01814567553114639 0.9098768749122155 0.4144813710644892 -0.01814567553114639 0.9100128209423325 0.4141053938628353 -0.01983402365341829 -0.05007447950133898 -0.04460336033844332 -0.9977490098963712 0.05007447950133898 0.04460336033844332 0.9977490098963712 -0.05223146845994098 -0.8838556721519534 -0.4648344054685892 0.05223146845994098 0.8838556721519534 0.4648344054685892 -0.9055099122664467 0.08478975686936037 -0.415767357926577 -0.9134603460440244 0.100090271838512 -0.3944263349326765 -0.9150871129800877 0.09156365276906278 -0.3927234054004866 0.9150871129800877 -0.09156365276906278 0.3927234054004866 0.9134603460440244 -0.100090271838512 0.3944263349326765 0.9055099122664467 -0.08478975686936037 0.415767357926577 -0.8628976978143381 0.3867850561445824 -0.3252766260430459 0.8628976978143381 -0.3867850561445824 0.3252766260430459 -0.9158353220314106 0.1680129671192036 0.3647153764230731 -0.8250636447121634 0.1563131469686213 0.542988197163665 -0.9156800465471477 0.12306795282666 0.3826020535000676 0.9156800465471477 -0.12306795282666 -0.3826020535000676 0.8250636447121634 -0.1563131469686213 -0.542988197163665 0.9158353220314106 -0.1680129671192036 -0.3647153764230731 -0.9301712002434255 0.04356903436083521 0.3645315863989973 0.9301712002434255 -0.04356903436083521 -0.3645315863989973 -0.9102915714758219 0.1919571037046917 -0.3667720344265427 -0.9098752187950685 0.1899053550703858 -0.3688672421593123 0.9098752187950685 -0.1899053550703858 0.3688672421593123 0.9102915714758219 -0.1919571037046917 0.3667720344265427 -0.05002206568014039 0.8883803733443121 0.4563749611905901 0.05002206568014039 -0.8883803733443121 -0.4563749611905901 -0.9161764556186254 -0.3981519670093227 0.04577896172588378 -0.9335057704990215 -0.3295072998576136 0.1413927713342278 -0.9152454586525087 -0.3912460761204535 0.09618866012325544 0.9152454586525087 0.3912460761204535 -0.09618866012325544 0.9335057704990215 0.3295072998576136 -0.1413927713342278 0.9161764556186254 0.3981519670093227 -0.04577896172588378 -0.8008752262028298 -0.5581038891156944 0.2170689314676397 0.8008752262028298 0.5581038891156944 -0.2170689314676397 -0.9078252336262972 0.2546053228708254 -0.3332108563015343 0.9078252336262972 -0.2546053228708254 0.3332108563015343 -0.06214391660331564 0.7497897154320584 -0.6587514829292707 0.06214391660331564 -0.7497897154320584 0.6587514829292707 -0.9105068842497451 0.232294596580093 0.3420766495005371 0.9105068842497451 -0.232294596580093 -0.3420766495005371 -0.5636529765645513 -0.1834260551652416 0.805388232032502 0.5636529765645513 0.1834260551652416 -0.805388232032502 -0.06204321152616367 -0.8915755561120776 0.4486019033028719 0.06204321152616367 0.8915755561120776 -0.4486019033028719 -0.563551722335448 0.8122020272639635 0.1507890021223632 0.563551722335448 -0.8122020272639635 -0.1507890021223632 -0.9128754411958339 0.2045282989941302 0.3533080861968483 0.9128754411958339 -0.2045282989941302 -0.3533080861968483 -0.8841694971092278 -0.4670196417475235 0.01170276051322128 0.8841694971092278 0.4670196417475235 -0.01170276051322128 -0.7948062792220184 0.5103440598305962 -0.328377707990168 -0.6271806346804609 0.7782902294104336 -0.0301458170575845 -0.6099115313195107 0.7918454994605457 -0.03144247044315008 0.6099115313195107 -0.7918454994605457 0.03144247044315008 0.6271806346804609 -0.7782902294104336 0.0301458170575845 0.7948062792220184 -0.5103440598305962 0.328377707990168 -0.06757420297446912 0.1542219217613901 0.9857227429356539 0.06757420297446912 -0.1542219217613901 -0.9857227429356539 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 -0.9173919056680412 -0.396652180679767 0.03254441544636197 0.9173919056680412 0.396652180679767 -0.03254441544636197 -0.7044687220678403 0.6666170076972114 0.2436094921732724 0.7044687220678403 -0.6666170076972114 -0.2436094921732724 -0.9056948139282527 -0.4239285587280207 -0.001217012017516861 0.9056948139282527 0.4239285587280207 0.001217012017516861 -0.9062955794800263 -0.4218840716820903 0.02534073155818777 0.9062955794800263 0.4218840716820903 -0.02534073155818777 -0.9178702577263617 -0.3968043330700363 -0.007778896977463935 0.9178702577263617 0.3968043330700363 0.007778896977463935 -0.0673402010633347 0.03284261300743482 -0.9971893802541189 0.0673402010633347 -0.03284261300743482 0.9971893802541189 -0.06783519718058229 -0.9323282921296917 -0.3551933863657993 0.06783519718058229 0.9323282921296917 0.3551933863657993 -0.9036091026635394 0.0556782963512844 -0.424724047940556 0.9036091026635394 -0.0556782963512844 0.424724047940556 -0.9151772240300315 0.1669447966678817 -0.3668515823629565 0.9151772240300315 -0.1669447966678817 0.3668515823629565 -0.5462375627474104 0.7832296524327782 0.2969441641012638 -0.6297975146368566 0.6855810967237255 0.3651488057933807 -0.6447186628852124 0.6879675290323077 0.3332244359657386 0.6447186628852124 -0.6879675290323077 -0.3332244359657386 0.6297975146368566 -0.6855810967237255 -0.3651488057933807 0.5462375627474104 -0.7832296524327782 -0.2969441641012638 -0.8004665242590809 0.1327927671656561 0.584482184954404 0.8004665242590809 -0.1327927671656561 -0.584482184954404 -0.9178727869669794 0.2036829255299642 -0.3406212160054408 0.9178727869669794 -0.2036829255299642 0.3406212160054408 -0.06731641938335971 0.8494783472765206 0.5233116062058579 0.06731641938335971 -0.8494783472765206 -0.5233116062058579 -0.7668641844162472 -0.5810340615428355 0.2726146400812705 0.7668641844162472 0.5810340615428355 -0.2726146400812705 -0.6233448385994473 -0.603445758421776 -0.4972870688387107 -0.6450470615181747 -0.7070854542103706 -0.2897316842716416 -0.6476791120465277 -0.7033306111846984 -0.2929809194967823 0.6476791120465277 0.7033306111846984 0.2929809194967823 0.6450470615181747 0.7070854542103706 0.2897316842716416 0.6233448385994473 0.603445758421776 0.4972870688387107 -0.0732053161087646 0.6786547872505393 -0.7308000146656684 0.0732053161087646 -0.6786547872505393 0.7308000146656684 -0.9271360714165975 0.212632426034943 0.3085549488773313 0.9271360714165975 -0.212632426034943 -0.3085549488773313 -0.5682440159721127 -0.2499810897182357 0.7839695103096603 0.5682440159721127 0.2499810897182357 -0.7839695103096603 -0.07326583168045271 -0.9382150080750226 0.3382080964893607 0.07326583168045271 0.9382150080750226 -0.3382080964893607 -0.5680807927105938 0.8189688158964524 0.08108200504714996 0.5680807927105938 -0.8189688158964524 -0.08108200504714996 -0.927548465775947 0.18590322006679 0.3241817953023973 0.927548465775947 -0.18590322006679 -0.3241817953023973 -0.8928491632893021 -0.4470013707692716 0.05486479876920774 0.8928491632893021 0.4470013707692716 -0.05486479876920774 -0.6779678389035451 0.5914850813119577 -0.4364687938419465 -0.7930586724642184 0.5380222435700273 -0.2856396461508205 0.7930586724642184 -0.5380222435700273 0.2856396461508205 0.6779678389035451 -0.5914850813119577 0.4364687938419465 -0.06837946245005622 0.133948004867257 0.9886264112935294 0.06837946245005622 -0.133948004867257 -0.9886264112935294 -0.9187989142657232 -0.3929531117095517 0.0373685314390171 0.9187989142657232 0.3929531117095517 -0.0373685314390171 -0.5792112105076253 -0.03535317024093707 -0.8144105395782932 -0.5626671069308074 -0.09424735772971241 -0.8212935908303943 -0.6084903667744845 -0.3361198159561551 -0.7188622558350478 0.6084903667744845 0.3361198159561551 0.7188622558350478 0.5626671069308074 0.09424735772971241 0.8212935908303943 0.5792112105076253 0.03535317024093707 0.8144105395782932 -0.6142586567780607 -0.3121905317741047 -0.7247229639274684 -0.5114901394861176 -0.3977120680449375 -0.7617105409142576 0.5114901394861176 0.3977120680449375 0.7617105409142576 0.6142586567780607 0.3121905317741047 0.7247229639274684 -0.7165913554401721 0.6650103775153866 0.2103759185488212 0.7165913554401721 -0.6650103775153866 -0.2103759185488212 -0.764937702624227 0.5192485317920021 0.3811184505318785 0.764937702624227 -0.5192485317920021 -0.3811184505318785 -0.5301106299440702 -0.2511652486673166 0.809875754595843 -0.6030031272843839 -0.3014611009609044 0.7385854270784746 -0.5174518251755897 -0.2411286674177418 0.8210362807889765 0.5174518251755897 0.2411286674177418 -0.8210362807889765 0.6030031272843839 0.3014611009609044 -0.7385854270784746 0.5301106299440702 0.2511652486673166 -0.809875754595843 -0.6060304150691775 -0.3080632070317224 0.7333649817685672 -0.5145052688849753 -0.2999231163421164 0.803324624652595 0.5145052688849753 0.2999231163421164 -0.803324624652595 0.6060304150691775 0.3080632070317224 -0.7333649817685672 -0.9180481665079123 -0.3962927934772661 -0.01181464385606148 0.9180481665079123 0.3962927934772661 0.01181464385606148 -0.06822609440622343 0.01557927206212744 -0.9975482375925926 0.06822609440622343 -0.01557927206212744 0.9975482375925926 -0.06836592527621122 -0.9248117108838933 -0.374231745945121 0.06836592527621122 0.9248117108838933 0.374231745945121 -0.9159377876348976 0.1653334364994017 -0.3656813147506822 0.9159377876348976 -0.1653334364994017 0.3656813147506822 -0.6049336713798291 0.7946676713190241 0.05058206590601672 -0.5557652605442751 0.7376308132429826 0.3834393805109877 0.5557652605442751 -0.7376308132429826 -0.3834393805109877 0.6049336713798291 -0.7946676713190241 -0.05058206590601672 -0.5113431291935486 0.8587529234400222 0.03273561836539834 -0.6114792617679662 0.7887888748458873 0.06249178623677078 0.6114792617679662 -0.7887888748458873 -0.06249178623677078 0.5113431291935486 -0.8587529234400222 -0.03273561836539834 -0.6410831753865172 -0.6305734637185176 -0.4374808213972034 -0.6084825682336931 -0.495113360886253 -0.6201707216788357 0.6084825682336931 0.495113360886253 0.6201707216788357 0.6410831753865172 0.6305734637185176 0.4374808213972034 -0.6086877370165386 -0.4987726994136522 -0.6170291995726814 -0.5145324763372529 -0.5486089202616341 -0.6590027188135252 0.5145324763372529 0.5486089202616341 0.6590027188135252 0.6086877370165386 0.4987726994136522 0.6170291995726814 -0.9180510116488734 0.2069327617052255 -0.3381732871525023 0.9180510116488734 -0.2069327617052255 0.3381732871525023 -0.06820506512298212 0.8583605711733054 0.5084930667635563 0.06820506512298212 -0.8583605711733054 -0.5084930667635563 -0.07788897801981856 0.7203251955069255 -0.6892495337836203 0.07788897801981856 -0.7203251955069255 0.6892495337836203 -0.9186236678224693 0.2137604419261941 0.3323206740242198 0.9186236678224693 -0.2137604419261941 -0.3323206740242198 -0.5912354405693278 -0.06373945870929254 0.8039763275235403 0.5912354405693278 0.06373945870929254 -0.8039763275235403 -0.07801011213032839 -0.9149104860515087 0.3960469983706556 0.07801011213032839 0.9149104860515087 -0.3960469983706556 -0.5911901739412696 0.7634359260444917 0.2601149074157052 0.5911901739412696 -0.7634359260444917 -0.2601149074157052 -0.918427191400784 0.2082707995037445 0.3363253903138127 0.918427191400784 -0.2082707995037445 -0.3363253903138127 -0.5611802421407521 0.1223351114562133 -0.8186029906712061 -0.5552116476461365 0.1310993066410967 -0.8213117545221707 0.5552116476461365 -0.1310993066410967 0.8213117545221707 0.5611802421407521 -0.1223351114562133 0.8186029906712061 -0.6408955186930352 0.6368247591987463 -0.4286107327058484 0.6408955186930352 -0.6368247591987463 0.4286107327058484 -0.06018780181180793 0.1916292067335681 0.9796201690654016 0.06018780181180793 -0.1916292067335681 -0.9796201690654016 -0.9294544655857993 -0.3596552207152826 0.08223453419858177 0.9294544655857993 0.3596552207152826 -0.08223453419858177 -0.5119734798882151 -0.3801411073322832 -0.7703089603576846 0.5119734798882151 0.3801411073322832 0.7703089603576846 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 -0.7827724052343109 0.4885261484066231 0.3854991101503113 0.7827724052343109 -0.4885261484066231 -0.3854991101503113 -0.6653394530452826 0.165916713449703 0.7278702194893354 -0.6147039237146543 0.238512470860314 0.7518316882214503 -0.6840994787240873 0.1363722874922993 0.7165266934410397 0.6840994787240873 -0.1363722874922993 -0.7165266934410397 0.6147039237146543 -0.238512470860314 -0.7518316882214503 0.6653394530452826 -0.165916713449703 -0.7278702194893354 -0.5846765150393855 0.2775554521153094 0.7623098738455811 0.5846765150393855 -0.2775554521153094 -0.7623098738455811 -0.5144696680899629 -0.2827869085697489 0.8095384641615049 0.5144696680899629 0.2827869085697489 -0.8095384641615049 -0.9325779507189076 -0.3562891568629708 -0.0579344675887886 0.9325779507189076 0.3562891568629708 0.0579344675887886 -0.06008517546283819 0.07478840775462761 -0.9953875957410397 0.06008517546283819 -0.07478840775462761 0.9953875957410397 -0.06016537746400757 -0.9456188928128914 -0.3196639437126669 0.06016537746400757 0.9456188928128914 0.3196639437126669 -0.9294575191574707 0.1069983269701304 -0.3530723411812842 0.9294575191574707 -0.1069983269701304 0.3530723411812842 -0.5118224780352834 0.8574987258211545 0.05228466498810563 0.5118224780352834 -0.8574987258211545 -0.05228466498810563 -0.514493135926281 -0.5625126092319087 -0.6472065957172033 0.514493135926281 0.5625126092319087 0.6472065957172033 -0.9325781432366856 0.2270966540840191 -0.280579964468348 0.9325781432366856 -0.2270966540840191 0.280579964468348 -0.06002763057924118 0.8270709642152402 0.5588830859125324 0.06002763057924118 -0.8270709642152402 -0.5588830859125324 -0.07605661316331486 0.6351470128865732 -0.7686375372146413 0.07605661316331486 -0.6351470128865732 0.7686375372146413 -0.9208305953623421 0.2088271071494026 0.3293360805685381 0.9208305953623421 -0.2088271071494026 -0.3293360805685381 -0.8621478316094056 0.2290208849793479 0.4519408707944841 0.8621478316094056 -0.2290208849793479 -0.4519408707944841 -0.6042033250166701 -0.04459964845335795 0.7955810539452516 0.6042033250166701 0.04459964845335795 -0.7955810539452516 -0.0760742450757196 -0.9574640025019078 0.27834401942414 0.0760742450757196 0.9574640025019078 -0.27834401942414 -0.6041792882639404 0.748119712716962 0.2743798153603302 0.6041792882639404 -0.748119712716962 -0.2743798153603302 -0.8666360269162206 0.3018712000249856 0.3972603371170386 0.8666360269162206 -0.3018712000249856 -0.3972603371170386 -0.06215953815997215 0.1869805446352334 0.9803950569763448 0.06215953815997215 -0.1869805446352334 -0.9803950569763448 -0.9251817572127729 -0.3717791800066462 0.07628209117657712 0.9251817572127729 0.3717791800066462 -0.07628209117657712 -0.5094391278008816 -0.4503793007937866 -0.7332327464604789 0.5094391278008816 0.4503793007937866 0.7332327464604789 -0.5107042903204709 -0.3659351517327707 0.7779926687151866 0.5107042903204709 0.3659351517327707 -0.7779926687151866 -0.9295512194985515 -0.3651508688837732 -0.05098404929172666 0.9295512194985515 0.3651508688837732 0.05098404929172666 -0.06207876760437363 0.06602698698797134 -0.9958848646314555 0.06207876760437363 -0.06602698698797134 0.9958848646314555 -0.06213739111210562 -0.9439802191053086 -0.3240991986470726 0.06213739111210562 0.9439802191053086 0.3240991986470726 -0.9251831321196651 0.1181898446877643 -0.3606484890498343 0.9251831321196651 -0.1181898446877643 0.3606484890498343 -0.5092947909307791 0.8601651410365301 -0.027106199962007 0.5092947909307791 -0.8601651410365301 0.027106199962007 -0.5105354677853689 -0.4940289674119409 -0.703767657320984 0.5105354677853689 0.4940289674119409 0.703767657320984 -0.9295504993104691 0.2254579596928901 -0.2917268887894581 0.9295504993104691 -0.2254579596928901 0.2917268887894581 -0.06203113682986364 0.8318660453007373 0.551498885528617 0.06203113682986364 -0.8318660453007373 -0.551498885528617 -0.07783629645161526 0.6386398399740993 -0.7655590543861087 0.07783629645161526 -0.6386398399740993 0.7655590543861087 -0.9138229107542849 0.2183939193754576 0.3423912729033732 0.9138229107542849 -0.2183939193754576 -0.3423912729033732 -0.5345884589721218 0.4034395796788172 0.7425979296243637 -0.5524074943628621 0.4050841393154985 0.7285278307976754 -0.4787989807562905 0.4668933018719641 0.7434797782682678 0.4787989807562905 -0.4668933018719641 -0.7434797782682678 0.5524074943628621 -0.4050841393154985 -0.7285278307976754 0.5345884589721218 -0.4034395796788172 -0.7425979296243637 -0.06467178653120824 -0.4384108387102168 -0.8964449210789618 -0.06712979634411644 -0.500579809610561 -0.8630836834589403 -0.05182109757684491 -0.4514163579221916 -0.8908074122088315 0.05182109757684491 0.4514163579221916 0.8908074122088315 0.06712979634411644 0.500579809610561 0.8630836834589403 0.06467178653120824 0.4384108387102168 0.8964449210789618 -0.07792118493082251 -0.9559677627777016 0.2829380240773106 0.07792118493082251 0.9559677627777016 -0.2829380240773106 -0.5296654684248241 0.4971931921921262 0.687206971149242 -0.544217945097606 0.4868904901393766 0.6832016384974328 0.544217945097606 -0.4868904901393766 -0.6832016384974328 0.5296654684248241 -0.4971931921921262 -0.687206971149242 -0.06331144630405373 -0.6168950586009265 -0.784494835827903 -0.04893206091694585 -0.6042992393415967 -0.7952534707535631 -0.06556201067145182 -0.5654470917961071 -0.8221746828600607 0.06556201067145182 0.5654470917961071 0.8221746828600607 0.04893206091694585 0.6042992393415967 0.7952534707535631 0.06331144630405373 0.6168950586009265 0.784494835827903 -0.07317435867671789 0.2852169995987944 0.9556656195407013 0.07317435867671789 -0.2852169995987944 -0.9556656195407013 -0.9245447371101613 -0.3773552231352665 0.05310428094265093 0.9245447371101613 0.3773552231352665 -0.05310428094265093 -0.5139838480450424 -0.4451092818304552 -0.7332791631958371 0.5139838480450424 0.4451092818304552 0.7332791631958371 -0.5157659772286117 -0.3552253929522392 0.7796155314867339 0.5157659772286117 0.3552253929522392 -0.7796155314867339 -0.9272834542399263 -0.373133423886244 -0.03027942324085647 0.9272834542399263 0.373133423886244 0.03027942324085647 -0.07322677161913004 0.1848207446832606 -0.980040372766839 0.07322677161913004 -0.1848207446832606 0.980040372766839 -0.07315269852634401 -0.9712587534489104 -0.2265063278303333 0.07315269852634401 0.9712587534489104 0.2265063278303333 -0.924551007271137 0.1411219268150242 -0.3539633268093474 0.924551007271137 -0.1411219268150242 0.3539633268093474 -0.5138680084800981 0.857573090590434 -0.02254027852243685 0.5138680084800981 -0.857573090590434 0.02254027852243685 -0.5156107881351871 -0.500749424973523 -0.6952665161988583 0.5156107881351871 0.500749424973523 0.6952665161988583 -0.9272779039266812 0.2114525434248893 -0.3089393318573824 0.9272779039266812 -0.2114525434248893 0.3089393318573824 -0.07323009189041933 0.7592000544660637 0.6467245402336659 0.07323009189041933 -0.7592000544660637 -0.6467245402336659 -0.07384419633644265 -0.4918662305097807 -0.8675336569560422 -0.07183856815325576 -0.5367001228199709 -0.8407093423358147 0.07183856815325576 0.5367001228199709 0.8407093423358147 0.07384419633644265 0.4918662305097807 0.8675336569560422 -0.4571428387213803 0.4708925370562133 0.7545068876759978 0.4571428387213803 -0.4708925370562133 -0.7545068876759978 -0.07317072936235344 -0.5741876618940569 -0.815447468138333 0.07317072936235344 0.5741876618940569 0.815447468138333 -0.07786128607335852 0.2282437525088427 0.9704856565512368 0.07786128607335852 -0.2282437525088427 -0.9704856565512368 -0.910518420051696 -0.4126184541394979 0.02649939716473525 0.910518420051696 0.4126184541394979 -0.02649939716473525 -0.5636615363401881 -0.6008612160141833 -0.5667905005736916 0.5636615363401881 0.6008612160141833 0.5667905005736916 -0.5636121577228427 -0.5422177340050004 0.6231703335344874 0.5636121577228427 0.5422177340050004 -0.6231703335344874 -0.9128840725037823 -0.4082071319792981 -0.003099608063125092 0.9128840725037823 0.4082071319792981 0.003099608063125092 -0.07794444694945403 0.123244223494892 -0.9893106309773917 0.07794444694945403 -0.123244223494892 0.9893106309773917 -0.07784980261668228 -0.9558510645399539 -0.2833516378113609 0.07784980261668228 0.9558510645399539 0.2833516378113609 -0.910506959134482 0.181741629865931 -0.3714122471612288 0.910506959134482 -0.181741629865931 0.3714122471612288 -0.5638170052827519 0.7901416633769365 -0.2403883032718469 0.5638170052827519 -0.7901416633769365 0.2403883032718469 -0.5636943070143379 -0.2718931151353536 -0.7799505511130938 0.5636943070143379 0.2718931151353536 0.7799505511130938 -0.9128734660900318 0.2052562609143245 -0.3528907795115115 0.9128734660900318 -0.2052562609143245 0.3528907795115115 -0.07796022575618454 0.7978022440562502 0.597857660801345 0.07796022575618454 -0.7978022440562502 -0.597857660801345 -0.07293523093475945 -0.536747093346532 -0.840584921273599 0.07293523093475945 0.536747093346532 0.840584921273599 -0.07604770112068858 0.3398450615732017 0.9374017715358579 0.07604770112068858 -0.3398450615732017 -0.9374017715358579 -0.9271339304211422 -0.3737861328003613 0.02658198615595467 0.9271339304211422 0.3737861328003613 -0.02658198615595467 -0.56821021807484 -0.5485574908562504 -0.6133692422194298 0.56821021807484 0.5485574908562504 0.6133692422194298 -0.5681978066790452 -0.4856242309667716 0.664319470422969 0.5681978066790452 0.4856242309667716 -0.664319470422969 -0.9275538218035446 -0.3736639910290091 -0.004373724489596332 0.9275538218035446 0.3736639910290091 0.004373724489596332 -0.07601198010694718 0.2461619642348556 -0.9662434818637893 0.07601198010694718 -0.2461619642348556 0.9662434818637893 -0.07603488379294941 -0.9824986161570616 -0.1700445991381432 0.07603488379294941 0.9824986161570616 0.1700445991381432 -0.9271175633615203 0.1624153764230984 -0.3377488256203726 0.9271175633615203 -0.1624153764230984 0.3377488256203726 -0.5684223245221804 0.8045495901676812 -0.1720349323417111 0.5684223245221804 -0.8045495901676812 0.1720349323417111 -0.5682562327497746 -0.3357303571020874 -0.7512456197949771 0.5682562327497746 0.3357303571020874 0.7512456197949771 -0.9275500865344358 0.1892090791949394 -0.3222588421132365 0.9275500865344358 -0.1892090791949394 0.3222588421132365 -0.07602359932507562 0.7168034810914563 0.6931184471941507 0.07602359932507562 -0.7168034810914563 -0.6931184471941507 -0.07788522860997994 0.33527590521265 0.9388950732367325 0.07788522860997994 -0.33527590521265 -0.9388950732367325 -0.9186365967429201 -0.3947997214296697 0.01549138740205839 -0.8622039110363094 -0.5055471860195102 -0.0320383910558382 0.8622039110363094 0.5055471860195102 0.0320383910558382 0.9186365967429201 0.3947997214296697 -0.01549138740205839 -0.5911920785065153 -0.6603884431093904 -0.4630108319669223 0.5911920785065153 0.6603884431093904 0.4630108319669223 -0.5913185191009809 -0.6117206410194161 0.5254905006934163 0.5913185191009809 0.6117206410194161 -0.5254905006934163 -0.9184398770765989 -0.3954642704709246 0.008729431620756456 0.9184398770765989 0.3954642704709246 -0.008729431620756456 -0.8666694425626617 -0.4954474410657432 0.05844579086240863 0.8666694425626617 0.4954474410657432 -0.05844579086240863 -0.07784647127831051 0.2414764141318304 -0.967279209084713 0.07784647127831051 -0.2414764141318304 0.967279209084713 -0.07789085419739079 -0.9815182421211756 -0.1747997574819787 0.07789085419739079 0.9815182421211756 0.1747997574819787 -0.9186099994929518 0.1824781962483763 -0.3505101663653969 -0.8621876343713294 0.2786709173777909 -0.4230543735088806 0.8621876343713294 -0.2786709173777909 0.4230543735088806 0.9186099994929518 -0.1824781962483763 0.3505101663653969 -0.5914357760694816 0.729508062189148 -0.3435428793995359 0.5914357760694816 -0.729508062189148 0.3435428793995359 -0.5912701432089158 -0.1528401862184598 -0.7918582545041852 0.5912701432089158 0.1528401862184598 0.7918582545041852 -0.9184311868293691 0.1886543416202624 -0.3476977055532891 0.9184311868293691 -0.1886543416202624 0.3476977055532891 -0.8666393501579606 0.1951110697023345 -0.45920355751823 0.8666393501579606 -0.1951110697023345 0.45920355751823 -0.07785123444427876 0.7200157100790545 0.6895770896243993 0.07785123444427876 -0.7200157100790545 -0.6895770896243993 -0.06463126882157386 0.9949142282440756 0.07725592228437379 -0.06710589855194701 0.997722592184132 0.006813767306884728 -0.05175606910108979 0.9966603560649529 0.06316204524621295 0.05175606910108979 -0.9966603560649529 -0.06316204524621295 0.06710589855194701 -0.997722592184132 -0.006813767306884728 0.06463126882157386 -0.9949142282440756 -0.07725592228437379 -0.9208481389957095 -0.3897131234716203 0.01274308840634989 0.9208481389957095 0.3897131234716203 -0.01274308840634989 -0.6041265859342664 -0.6628633493676761 -0.4423157788644598 0.6041265859342664 0.6628633493676761 0.4423157788644598 -0.6043510956270248 -0.616247919108277 0.504973519512789 0.6043510956270248 0.616247919108277 -0.504973519512789 -0.06544351105841843 0.9954089662035404 -0.06984366014138725 -0.06320711920580965 0.9890618334347577 -0.1332724642391598 -0.04887595123153411 0.9919269240416067 -0.1170133272433938 0.04887595123153411 -0.9919269240416067 0.1170133272433938 0.06320711920580965 -0.9890618334347577 0.1332724642391598 0.06544351105841843 -0.9954089662035404 0.06984366014138725 -0.06467060858579891 -0.5607537460364631 0.8254531777703786 -0.06715572110431041 -0.500971452014702 0.8628543987192979 -0.05176292428173093 -0.5493551863579695 0.8339840999032322 0.05176292428173093 0.5493551863579695 -0.8339840999032322 0.06715572110431041 0.500971452014702 -0.8628543987192979 0.06467060858579891 0.5607537460364631 -0.8254531777703786 -0.9208229918529777 0.1823261521974405 -0.3447349589174365 0.9208229918529777 -0.1823261521974405 0.3447349589174365 -0.6044052953115482 0.7127115897051575 -0.3560006023861583 0.6044052953115482 -0.7127115897051575 0.3560006023861583 -0.6042208852079725 -0.1329109324677061 -0.7856537442850122 0.6042208852079725 0.1329109324677061 0.7856537442850122 -0.06330197836798127 -0.3750046590734298 0.9248591055982096 -0.0489311245994604 -0.3905865829625489 0.9192648509842373 -0.06555032380382546 -0.4332602793100031 0.8988819084960116 0.06555032380382546 0.4332602793100031 -0.8988819084960116 0.0489311245994604 0.3905865829625489 -0.9192648509842373 0.06330197836798127 0.3750046590734298 -0.9248591055982096 -0.07380847313489657 0.9971350212817937 0.01655471615135637 0.07380847313489657 -0.9971350212817937 -0.01655471615135637 -0.9138485014307795 -0.4058014096885466 0.01435730920149108 0.9138485014307795 0.4058014096885466 -0.01435730920149108 -0.5523468059055555 -0.8333556620290644 -0.020768884660241 -0.4787759179973137 -0.8775837507625626 0.02490744353284692 -0.5345304218766152 -0.844640307144783 -0.02932540937096353 0.5345304218766152 0.844640307144783 0.02932540937096353 0.4787759179973137 0.8775837507625626 -0.02490744353284692 0.5523468059055555 0.8333556620290644 0.020768884660241 -0.5444019885151931 -0.8356723357134307 0.07265137454971396 -0.529810937761632 -0.8443800785050153 0.07951511335591559 0.529810937761632 0.8443800785050153 -0.07951511335591559 0.5444019885151931 0.8356723357134307 -0.07265137454971396 -0.0730429405716595 0.9940521145746529 -0.08077822938333205 0.0730429405716595 -0.9940521145746529 0.08077822938333205 -0.07388662353121546 -0.5091637543312346 0.8574922962560529 0.07388662353121546 0.5091637543312346 -0.8574922962560529 -0.9138168602334956 0.1889226119874796 -0.3595093776702133 0.9138168602334956 -0.1889226119874796 0.3595093776702133 -0.5347331070637321 0.444464319308261 -0.7186876742172578 -0.5525632992352004 0.4314208972124874 -0.7131267838096413 -0.4788900951458034 0.4137789169757429 -0.7742423939811258 0.4788900951458034 -0.4137789169757429 0.7742423939811258 0.5525632992352004 -0.4314208972124874 0.7131267838096413 0.5347331070637321 -0.444464319308261 0.7186876742172578 -0.5297627038662381 0.3498802766270966 -0.7726158616153819 -0.5443231062547118 0.3515163285545688 -0.7616748825822854 0.5443231062547118 -0.3515163285545688 0.7616748825822854 0.5297627038662381 -0.3498802766270966 0.7726158616153819 -0.0731648938415657 -0.4230767780001828 0.9031350608996067 0.0731648938415657 0.4230767780001828 -0.9031350608996067 -0.0717598100444269 0.9967833931070906 -0.03568468702823421 0.0717598100444269 -0.9967833931070906 0.03568468702823421 -0.4570938974721754 -0.8891267751684072 0.02277600870049867 0.4570938974721754 0.8891267751684072 -0.02277600870049867 -0.07186207300492192 -0.4636242428793894 0.8831129055097929 0.07186207300492192 0.4636242428793894 -0.8831129055097929 -0.4572184704652873 0.4213675234050111 -0.7831990043947393 0.4572184704652873 -0.4213675234050111 0.7831990043947393 -0.07284731910756336 0.9966994105687711 -0.03582670890139447 0.07284731910756336 -0.9966994105687711 0.03582670890139447 -0.07295841153948711 -0.4634759310171773 0.8831008614837808 0.07295841153948711 0.4634759310171773 -0.8831008614837808</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1000\" source=\"#ID344\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID342\">\r\n\t\t\t\t\t<float_array count=\"2470\" id=\"ID345\">-2.661799060038712 0.5143268679627622 -2.305498782632804 0.7612421416708729 -2.382152232341637 0.8114993214080721 -1.041160221479432 1.808590267548293 -0.7402787510683859 2.096312634686256 -1.10929632536876 1.865939697634436 2.972256478969288 -4.376182215124748 3.770492703260866 -4.471450631513128 4.117109534675268 -4.221737622712427 -2.388085444237092 0.8134970265397964 -2.741971876010438 0.5644427639446815 -2.64317861492822 0.5288504886875456 -0.8199817364353834 1.712364972440952 -0.4647338457287636 1.921831414400039 -0.5108777407253806 1.994641913414265 3.590480138856723 -4.394738788375328 4.008359773378214 -4.223632152308475 4.159072087260633 -3.60131408385592 2.944593614898622 -4.289383837459042 4.089733578634366 -4.1362612050151 3.720629425418393 -3.737994030932695 2.918110384210961 -4.566913844047221 3.577025552436587 -4.858740273202045 3.715949880857402 -4.664217122611951 -3.63466691595626 -1.375454603305033 -3.778377344265582 -1.567813990875131 -3.532893088158519 -1.405402268119589 2.016960844485938 -3.372595413195628 2.505112526826225 -2.980634682784841 2.166877960838995 -3.20534782375026 3.161264493954209 -2.789679773232189 2.90664991550928 -2.831647031589939 2.177397347012687 2.237394119727016 2.426208068189768 2.382798047632238 2.158320842907479 2.317355631430848 3.263520854441227 -3.993286695212771 3.619577955234709 -4.398837879978945 4.186501325658662 -3.604674619844945 4.118628753531486 -4.214430668958741 4.393196497476434 -4.169263296937372 4.264289486993383 -3.591368647410786 1.088541638290198 -2.918995386648729 1.338783932921017 -3.066679041718678 2.141709561156012 -2.539653586511744 3.043585516181242 -4.434309064416466 3.752219223354113 -4.925163319361463 3.705354160579695 -4.722111991503434 -4.647535569853533 -0.6416093864536248 -4.87356633634843 -0.8206456622006494 -4.720195001665112 -0.838111930340065 5.591129172591309 -4.47290649595115 5.700563982511904 -4.661067300428671 5.976463061569919 -4.01551000878934 0.733154928316176 3.383342872493777 0.7020392817537015 3.483545504538939 0.4940113330114128 3.302791294675418 2.134980860030076 -2.543645943407094 3.07355461487074 -2.178877951918392 2.984341750436177 -1.945595238278266 4.353781662995391 -3.563669890075839 4.486729766309145 -4.140997679661525 4.715175540128614 -4.237778325771608 5.39894081999101 -2.780519209470858 6.205863006664616 -3.061082790207338 6.229541255743985 -2.815692720273948 3.243896960758899 -4.281959803351813 4.226158437872415 -5.067116002014613 3.95954576161025 -4.766474747050036 -5.362925845386348 -4.061579228975656 -5.444027986460442 -4.257840651882353 -5.20917675816532 -4.076852570570276 -3.302965120206075 -5.295307391122558 -3.503674895768212 -5.500147149562402 -3.414236209071933 -5.48280054980703 7.060600724299492 -1.127963471288239 7.357365789459331 -1.181805828420435 7.153708221003003 -1.055334577185998 -5.546105656382263 -2.541558169230477 -6.376601944710836 -2.548300528389567 -6.376055494793524 -2.791910837103957 5.579123822736869 -2.942901892769273 6.001290330568972 -3.594786402053359 6.292020490288079 -3.896997050653707 -5.410310060843501 -1.264541462392171 -5.639737196896117 -0.3708988937511936 -6.445697115556035 -0.5327398872694064 -5.548733127301645 -0.4984393686878871 -6.402386873826202 0.3474497948727556 -6.378040758730448 -0.5490869415448467 5.436007331621839 -2.753141288256818 5.589949262777724 -3.009778769479917 6.249443067828077 -3.021812954622691 2.733685449622757 -4.60808068335111 3.550020822014475 -5.480747652159369 3.685386022701926 -5.416193428280835 -3.150145197377329 -5.815183648067049 -3.23901928547867 -5.834241632626324 -3.214384247080245 -6.200299681307078 7.077515231345002 -1.077833697990142 7.255757232167886 -1.180810893730796 7.37374899284945 -1.133457200799908 -5.64053701285209 -2.362387587081174 -6.473061319915687 -2.607393325339736 -5.813898093729755 -2.627781693529012 -5.571323704244727 -0.4508006085162343 -5.590385402988608 0.4192953775659653 -6.420823099055467 0.4090219793829775 -4.1449948999066 -0.3925930562476963 -6.412003022809788 0.3723260551637551 -6.402434335445965 -0.5259414841779818 -5.571948609914557 -0.5184370324832719 7.511011023866709 -2.787130807200926 7.386028045278803 -2.821643815884106 7.79264834779636 -3.094623924357429 4.528469987559812 -3.533326890439096 5.16365295085847 -4.520813777264999 5.288427740176394 -4.450421141627921 -5.37737609444318 -1.393369944667684 -6.43794403232774 -0.6842351375800343 -6.177999987344328 -1.570835269398446 -4.06048470052598 -0.8115314550383995 -5.627977588762684 -0.09354875387037062 -5.468981652152383 -0.9966139960495889 -5.698594924431132 0.04705198934153895 -6.523407502400124 -0.04000140227339736 -5.604833719540404 -0.8427021686719978 3.397833450122788 1.436453299966811 3.0682720466757 0.4699448618913633 3.120099824776935 -0.2576073983579654 2.698888249206223 2.153148196856395 2.746116622930116 1.15315754419546 2.182281272233411 1.731316065892566 1.762515223752795 2.675938097440283 1.426866649410332 2.153052203845308 0.6739441528367607 2.964104390912614 0.5470052852914087 2.380889252754579 -0.4762730165452944 2.975353590359535 -0.379127025517807 2.394587160073535 -1.269257263899759 2.192925190064263 -1.579665433403898 2.725371249155675 -2.044294447642872 1.793827010075304 -2.540424688596996 2.230643059343542 -2.635383615910281 1.232752438402079 -3.273119380180543 1.535119347208355 -2.989941374167471 0.5595534147310203 -3.076513428396748 -0.1659543789840967 3.797178894091073 0.589535539530324 3.584954115964931 -1.189073698497411 3.86146279790015 -0.3123520279787206 3.002871332391609 -1.96190235463934 2.897061565363328 -0.9648552907429856 2.135972779385058 -2.5645770483233 2.418887774560047 -1.588964928439499 1.728132329397168 -2.074478232231995 1.100337098236535 -2.939288573049616 0.8861221859959634 -2.378246195955483 -0.0462380938019025 -3.05896025402176 -0.03227092295787773 -2.473295078857695 -0.9454591957336178 -2.351161398673499 -1.178273536083925 -2.907562735203924 -1.772319464308227 -2.022702851046091 -2.203293041006291 -2.500402028373014 -2.439402056737099 -1.517112239780935 -3.030200242278591 -1.873660853038731 -2.887398122901175 -0.8793125957286936 -3.595833115298375 -1.078161158264579 -3.710588442244218 0.7070679054892642 -3.819964906568851 -0.198740607318797 5.603135835129864 -3.288385875698955 6.810870890825931 -4.291665963233803 6.262701037578077 -3.297688588377309 3.401754136409783 -5.385730003367606 4.499503752106183 -6.170792077931217 3.537805570138652 -5.322074800046389 -2.456301864786447 -5.979189118527012 -2.487130147304622 -6.36684873423582 -2.402367420971701 -6.32348935043586 -6.510171301073201 -2.96837143036549 -7.11732698224412 -3.953428325490446 -5.851137594154357 -2.991204346202717 -5.60265637794168 -0.5278164021063335 -6.465043856691065 0.3240294976779706 -6.431600829084085 -0.5856926335526124 -4.209404235825325 0.3044258401130099 -5.633236098381424 0.2161519211681857 -4.153220584432583 -0.5919371519429612 -4.215291073560992 -0.5744977462204292 -4.263529414155157 0.3221991449134441 -5.686973105331986 0.2076154673473941 -5.65143262943119 0.3334005600536639 -6.481253406832044 0.2821448753630127 -5.629668278170908 -0.6018165566198391 7.289855802678771 -2.825890216437976 7.611421202677152 -3.106627870969063 7.70924221545971 -3.086643914958204 5.18297450631685 -4.530079671339261 5.895028297840041 -5.457121340977217 5.307646526988149 -4.459574441591602 5.332209067274681 -1.615896687539317 6.143014995752494 -1.761979428609921 5.629008267869499 -0.7463477273334715 4.036035568395636 -0.9993909140033963 5.449746623983231 -1.157975509815105 4.221778863882256 -0.1138895382488578 -3.997216344816255 -1.156592358935419 -4.250909299071609 -0.2815645921801652 -5.638210010572456 -0.5486783925207119 -4.161558112449938 -0.6357893580252552 -5.649991922666122 0.162673834209167 -5.584920386969356 -0.7286636150463668 5.494720606752197 0.2501486147772298 6.275923150491728 -0.65523344044532 6.325862417864055 0.2471940347496744 5.493856655715302 0.366706868280492 6.307487637225778 -0.5247153149898205 6.324667251178918 0.3785027462624838 6.335973878144486 0.4200649213385262 5.505412349689225 0.4046323204088624 6.330840177740377 -0.4832391865050514 6.354965736662829 0.4299973635642851 5.524514761868456 0.413796645671067 6.355104265392128 -0.4667206081220865 6.348686999878188 0.4271997584595754 5.518228264842925 0.4008358708994737 6.348532651289016 -0.4826861760209525 6.405593025417301 0.3823184502673627 5.575015698521129 0.3688125470936636 6.402526849244486 -0.514599815300171 5.580948395643242 0.4157367094855328 6.402189221181026 -0.5113951445993928 6.411353286003433 0.4000658934411254 5.626549839694851 0.2839681310038151 6.428226229766665 -0.6163174962283112 6.457616882721426 0.2866889367729694 5.679613144525984 0.09802792271163478 6.425760748703323 -0.8323530921485491 6.504640036469908 0.06882814165186642 5.638390409749905 -0.3908745494751295 6.259225536954721 -1.368874127389776 6.462225544659513 -0.479789751691096 -6.409194594973165 0.4107466294511674 -6.405189489514616 -0.4925506539050644 -5.574851926507346 -0.4467662664155951 -6.3822125066093 0.4234890959370029 -6.382694340672956 -0.479815042264443 -5.552194299191942 -0.4361777819642201 -6.357692766381553 0.4191095339513883 -6.358135509214947 -0.4841960030603822 -5.527660594977107 -0.4414161723271314 -6.337686374565175 0.3978657857529473 -6.333509171185731 -0.5054400229986481 -5.503241243690558 -0.4621172308995953 -5.479788392845236 -0.5041294043719613 -6.324676198831939 0.3526571860783325 -6.309573809879248 -0.5505412985441708 1.745957532312295 2.657713232886528 2.682327380740597 2.134919811093426 2.727282558497929 2.374467822102313 -5.455101643277436 -0.57908685677795 -6.324274572841182 0.2666680609225586 -6.28355707143229 -0.6362917545517316 0.6652336964723358 2.943428855169668 1.753803744658647 2.655260171310598 0.8867903543797634 3.118978236478919 -5.290951497203457 -1.319381353096898 -6.327435422916969 -0.5524335438192431 -6.107009504749997 -1.440571652735586 5.762356183245927 -3.083708496260667 6.572423246359725 -4.03807808733024 7.047109981082493 -4.025925235254194 3.610847825014008 -5.236842748222333 4.559405230702663 -6.109249604868882 4.719319310056894 -6.012525550950048 -1.964009241795349 -6.507755706175733 -2.046393508680486 -6.553864915925065 -1.635076611744317 -7.643805512306598 -5.495336325949821 -3.347602026111755 -6.684777216062551 -4.368633898008876 -6.226933058893753 -4.35715210192923 -5.604000275338401 0.3645158178360241 -5.59045265464766 -0.5707972914437972 -4.164155400215128 -0.4808138035478431 7.684874037027289 -2.989922987339559 7.58708621916952 -3.010007229700875 8.498994210341262 -3.863426396329256 5.143033007068749 -4.539180625640339 5.717787806425276 -5.541268897230905 5.860507161178415 -5.472263804657364 4.192676241827535 0.04192978539679174 5.490996361882291 -0.9480844056190318 5.615427661959771 -0.05307178236898648 -5.462209449669895 -0.8043086080673315 -5.545667306279297 0.1291291351249389 -6.371687425542625 0.05659531610126218 5.523758680554177 -0.4338833848854653 6.354207285310459 -0.4112716340542739 5.523565805979221 0.4664539955697984 5.536572228151663 -0.4226032985896472 6.366920291787105 -0.4012123226992183 5.53167411224067 0.4777514955588634 5.547326545969745 0.4777114329058925 5.554125450147815 -0.4226259836262465 6.384470114428415 -0.403345774636922 5.559616742817855 0.4536184898915917 5.564444714190893 -0.4525417513668846 6.394798530817934 -0.4242064713489063 5.880914549031902 -2.06864522518943 6.734858187658725 -2.229716846200112 6.706382990873093 -1.992428992817538 5.594342931635121 0.4536484752102395 5.59609063437345 -0.441977094805049 6.426673737565221 -0.4286928413741457 5.554394599787321 0.3625400882458029 5.552652560288326 -0.5062900454127818 6.383108753397958 -0.5201741029379436 4.127093708298099 0.349085374462541 5.780362907360219 2.088063182125595 6.60870069498146 2.039406599150892 6.630766041321724 2.290072167503032 5.652179197504132 0.4063675696246454 5.630277932583336 -0.5294891830228586 6.461347556712913 -0.5273102266094472 5.689181062059775 0.241125792540077 5.646284167170914 -0.6502602675244906 6.471783918825218 -0.6694862709089748 5.604943682381954 -0.8548758041057144 6.435385846454905 -0.8886697541752605 5.705258546267622 0.04954383269713061 -5.625878457091545 0.4128913173724724 -6.456279603494737 0.3681045028935301 -5.61868898488491 -0.4874466767329562 -5.597398384708466 0.4398433145490905 -6.428081916010963 0.3996480928002333 -5.598883524092275 -0.4605082447537164 -5.571119059021333 0.4515076979844473 -6.401896102512689 0.4147173528205499 -5.576957820490299 -0.4488343226107577 -5.548918425932076 0.4519197748685152 -6.379668149979191 0.417815089717694 -5.555720079221102 -0.4484087783848311 -6.476678532968182 2.647031326878516 -6.475752441667305 2.404888014658125 -5.644588786272323 2.432043406180553 -5.532783473477472 0.4443536015118346 -6.363430823466654 0.4123864931825314 -5.537898422956329 -0.4559979435743079 2.254016958954333 3.634765079931456 3.232240892558104 3.344958568234572 2.52699327365733 4.053668724156345 -5.513894893397796 0.3670495865317552 -6.344343569199598 0.3621523079421049 -5.499906396557383 -0.4989705720211488 6.349136616735253 2.738226221440089 5.520765150887098 2.493018469052865 6.351232608300514 2.490855442909809 1.697980286874242 3.981481675466966 2.558079519991281 3.509863443645249 2.83617451174444 3.92667842082563 7.05576917080125 -3.869350706402243 6.581129811636943 -3.882599263004092 7.662203559623302 -4.913533654818638 4.699553073210266 -6.171834810212214 5.781796714671636 -6.755173925272217 4.858615578581932 -6.074245668090698 -3.154857143866117 -6.287097760729689 -3.004235976416077 -7.446203671646552 -2.923013648991004 -7.410697797244424 -6.238904897399809 -4.261501314141265 -6.696771126747163 -4.272424854255496 -7.233100912016699 -5.2780072099835 -4.172281427259849 0.4236948597737338 -5.599138070426414 0.3723794843949643 -4.160046578622444 -0.4737436785604704 7.688724458774837 -2.997587991844135 8.493484725290733 -3.878498459511783 8.583971388279348 -3.861854811376837 5.630635840262678 -5.49305586462806 6.194793007120643 -6.435297706577472 5.773769347551276 -5.42458368153758 4.149493655589789 -0.666422043308793 5.576712249359321 -0.7002834793214141 5.637463441909986 0.2063136648478206 -2.752395262503766 -2.388220319902878 -4.557148381589244 -2.4438330958985 -3.791997104759317 -3.160289595899267 4.080557974305158 0.3597441476089266 5.479408896688173 -0.5431689211380512 5.508185884087253 0.3568838258145871 4.078734300599257 0.4094231397152907 5.49610738001893 -0.4792775997923502 5.506171941511711 0.4210506271797914 5.512567720610957 0.4401719054329141 4.0852749331553 0.4248645746183525 5.509503751461832 -0.460178170981151 5.523701160329052 0.4353960044653995 4.096473844284713 0.4192446804514229 5.523730938822248 -0.4707721957735811 -3.966759717564554 0.6230881827453207 -3.797079964430929 -0.1886666454908832 -3.68214331192589 0.7048003957772115 5.914682744017741 -1.996607342708859 6.117129859104871 -2.221333120763166 6.770678563460123 -2.150790600524764 5.551529312835765 0.4495228068059489 4.124268810346557 0.4384218376475834 5.55221507049154 -0.4461036560030883 4.137603457175834 0.4528163016298624 4.138560890324671 -0.4446638803693676 5.565864599723549 -0.4313945211553699 4.213980714084771 0.4205838582382181 4.205959402934985 -0.4768728165044885 5.634227758319667 -0.4402423970654657 -3.875394710153257 -1.003386691537358 -3.568804610354984 -1.073847359963925 -3.798495665402174 -0.1820849155691501 5.916121464420085 1.806762106662963 6.776703735835856 1.98005265820314 6.123994606683545 2.05525332117598 5.585205845377178 -0.4925639279401325 4.169597344998032 0.4024386876104048 4.15762018592527 -0.4950097606756016 5.597675479733299 0.443399893764163 4.156617820371098 0.3621291455754826 5.572485063851977 -0.5270898869408937 5.584202678227232 0.3648870756734438 -5.55421954180395 0.4325579296179262 -5.552090815762549 -0.4677962709606923 -4.124925005749004 -0.4221101842327787 -5.538576477063474 0.4352706727699609 -5.538876324918283 -0.4650816136418131 -4.111622469373085 -0.4214203977710727 -5.52426233743118 0.4295055149755776 -5.52435757429008 -0.4708482185904604 -4.097125150651432 -0.4279153426255751 -5.512878698675422 0.4153870811823178 -5.51008541062717 -0.4849546898017661 -4.082981753191275 -0.4413168658447663 -5.803781728166912 2.695243922016638 -6.463048840774564 2.677056089199609 -5.631193550035248 2.461507415414935 -4.069649252612988 -0.4640573414130001 -5.505886766735717 0.3892222330192646 -5.496456165566158 -0.5111077385403589 3.395628482009644 4.365034469375767 4.067083141014313 3.636295497457961 3.834919411783258 4.229177482280971 -4.056840720569126 -0.4789649353516526 -5.506608144241801 0.3286859050130154 -5.482838903136125 -0.5372022959242325 5.472318711552627 2.507915073080861 6.28695098665998 2.780121525531526 5.627346059598288 2.772713745747252 1.77785141209766 4.72216774587029 2.915784678967103 4.664107656039868 2.539091054934751 4.89062216698243 6.619178588444171 -3.828609251683794 7.310729392674782 -4.86625049600592 7.719439946235701 -4.846904017109719 4.932253880902296 -5.959704110981211 5.850334017365131 -6.675404868943827 6.022785877259992 -6.533411281220287 -2.438202460806775 -7.566816113078535 -2.517246359618165 -7.605244271636148 -2.225179099355021 -8.573899165916442 -6.147305757602014 -4.334075845317214 -7.127119524533855 -5.359187381576786 -6.717869201020857 -5.349149792973891 8.588931033037188 -3.936947027258597 8.498392206892227 -3.953414187342754 9.271520465878172 -4.829384250182987 5.390870613633427 -5.57345836591487 5.785867199317528 -6.590653648012299 6.001688404292493 -6.520400303231552 4.179845061663457 0.3098219691396784 4.137508093891616 -0.6053915677220051 5.612246399584024 0.2811336414350372 -4.137244533226672 -0.3906263536147895 -4.109915944167414 0.5066086495387171 -5.538764975333309 0.4681121719386963 -4.093491571230447 0.4281509816797937 -5.520719793072696 0.4014243121698805 -4.093491571230447 -0.4693098312026066 4.095955679305225 0.4666987771532346 4.095370697688034 -0.4307901038188899 5.522613030223019 -0.4088759348981764 4.103119696156001 -0.4247646836698221 5.530293461700541 -0.4036800185450093 4.100600948168641 0.4727237170128614 4.109778224059697 0.4720632539261433 4.113528349182373 -0.4254116217219571 5.540696074459932 -0.4062771507909478 4.131128445010857 0.4687326012540565 4.135579146547521 -0.4287439876988017 5.562829411054837 -0.4168563095352443 -6.57558798965443 -0.4291223668602024 -5.949686005033862 -0.4066665999772727 -6.106218164610338 0.4067214157437564 6.906160533801982 -0.6164503317486078 8.588008637681035 -1.014951336896927 7.484402007252639 -0.3666865768634973 -6.594235457051168 -0.1072712048355581 -6.038886626027283 -0.9065050245338635 -5.968331417790047 -0.08485090619073749 6.094257506179066 -2.609111482345269 6.38760915225589 -3.073919155086647 7.785043341838376 -3.027241022869439 4.158247094811467 -0.515202285144675 5.590918326588575 -0.533762702622409 4.182569284383959 0.3628143594684092 -4.154959419916142 0.4418540299037406 -5.582161926964881 0.3971661449070394 -4.151049002528265 -0.4556168108391424 -4.138039279917377 0.4497783237258486 -5.565399234233393 0.4095546653307514 -4.138993010500824 -0.4477007573165332 -4.122737751398939 0.4504695718699686 -5.550147546112627 0.4135444010196748 -4.126058856890215 -0.4470074540046948 -4.110066034056458 0.4463155858593719 -5.537457493840162 0.4119462391451804 -4.11381972194354 -0.4511845102803854 -7.084231717134023 3.932564416781103 -6.487814456845412 2.963892194643452 -5.828619448587592 2.983631213287548 -4.100749980947755 0.4387628393962917 -5.52807408050241 0.4063539597087571 -4.103273851978412 -0.4587102997819708 4.427237314102075 4.211817097101426 4.633612095804903 3.613061858163787 4.717344599847353 4.192502098342859 0.2782028819448612 -1.450158226014998 0.6921164850603934 -1.628641759935543 0.3206106848921589 -1.391178060408406 6.848525411149121 4.203593104396327 5.634213361410922 3.188008916534419 6.293848033120097 3.193539879314641 -2.299859201895115 0.0619301615705932 -1.948271184522626 -0.1883172081444611 -1.891328164057275 -0.1374743576887198 1.568678405240158 5.068661018134691 2.326785986090503 5.245640623360807 2.155429516005429 5.433102250304442 7.732827786625975 -4.70339119690072 7.324212926387032 -4.723950566267607 8.319111193875182 -5.609547578366657 5.538615148466631 -6.572469865395896 5.953360540920912 -6.578961989440483 5.713279785731879 -6.432160030464202 -2.330512122076828 -7.585630805526254 -2.104055885263323 -8.590898403140145 -2.028798512837025 -8.548366861161911 -6.72869513150474 -5.250866900269577 -7.137958890888548 -5.260559550807522 -7.608945487818658 -6.255703576101399 8.496674351625121 -3.951322323121277 9.179300321773068 -4.839084543618871 9.27065934491648 -4.826824061750197 5.650766369438735 -6.458977061674541 5.741440448300319 -6.687316064812344 5.867141115348349 -6.389785434634255 -6.656295097298122 -0.05912841987920928 -6.586162527374134 -0.4246975448627076 -6.116633110672703 0.4110907662336733 -4.81651597652847 -3.918431791851718 -6.154981253152326 -4.374781149297583 -6.224683474972785 -4.744352959566725 -7.718550954367429 0.477881345093763 -6.339258681834792 0.6682309068354281 -7.714038473572953 0.6023579286995218 -6.610675455021291 -0.467456379308435 -6.019037035461805 -0.8972475817193066 -6.574245482658096 -0.09795340618191402 -7.624303380680911 -0.9476220364064913 -7.617857677143023 -1.06830930505799 -6.219167844454492 -1.070784404659 -6.909048470343557 -0.0813386710929849 -8.650674722245444 -0.3398743600165811 -8.259673190808709 -0.551958884871283 -6.715952600713422 4.289071664462673 -5.523929073475165 3.290676722131466 -6.262729427223396 4.280205518061553 3.463533200456307 4.110800280381099 4.069298934555739 5.075875895797951 3.937843837902142 5.147301601424823 5.102250521171852 3.458752088073406 5.450196430193508 4.151242919036542 5.209205622771145 4.035822782958834 4.099195002689461 1.148160626873494 4.389280951963332 1.1286483224619 4.095337276055221 1.204356443781205 2.351942138015295 1.100568588629236 2.769151279432363 0.9159566178321216 2.771021747791493 0.9722150784720091 2.195182696189024 4.692738226224547 3.069583945778339 5.566693212579978 2.935863018679035 5.626067172882261 6.54043165342027 4.011409472370985 5.735592185692652 3.036957278107067 7.015206002807851 4.001647704310436 -0.6317786240502441 2.516375579235664 -0.201766641564953 2.347215580046476 -0.5745818156162452 2.549565507132114 -1.605305603904998 3.543518012266425 -1.400727010858305 3.377949627684427 -1.343223786508591 3.410810264610257 1.807530471990459 4.915030062690574 2.402231215159181 5.271407892927533 2.41298121115136 5.483652071981339 7.295398628059252 -4.757193145759694 7.898642013392817 -5.666257972030044 8.280825905442994 -5.649319198347968 5.529399941378703 -6.811400320934341 5.833464914441211 -7.051644702807992 5.944142243046866 -6.818013508429276 -1.736609375029659 -8.599979835830487 -1.810456390209519 -8.644014698631873 -1.697471362572419 -8.866096477070775 -6.785103664943274 -5.211197734496072 -7.672080099481478 -6.212367473911156 -7.289404194507263 -6.205034285805037 9.271905004153444 -4.866476039442853 9.180531261399484 -4.878668450017517 9.400274494745993 -5.083337609184246 6.154288376155829 -6.665795398995026 6.467954122720688 -6.67559446441701 6.272982820837651 -6.366489343458639 -7.300822201226315 0.4995800430167435 -7.157860533619931 0.3007726256670714 -6.61782679821126 0.7707276170720391 2.4673256467482 0.9193765930242428 2.414069527238531 0.5491065533840862 2.513799392591445 0.5514798227418101 4.05665024727122 -5.593268903064636 4.516995633749293 -6.879723111970071 4.497717665920813 -5.731831628612675 -7.379442888224687 -1.044659418331918 -6.924392869678563 -1.04217891225324 -6.004154607457918 -0.8371542672269368 -8.968287821898736 0.2934255125263521 -7.542023281758183 0.4771849648315717 -7.537423955761589 0.6016595813773412 2.557945762132749 -0.6005614891247557 2.458215345371251 -0.6029203753848054 2.534015244132297 -0.9706957197685954 -6.99273692576547 -0.9065747945953878 -6.293570957011183 -1.129650712023979 -6.885079482756589 -0.6997488815661535 -7.63261541801149 -1.0054346037006 -6.227488975147699 -1.128661156671277 -7.154016454095761 -1.004976464628402 -8.922697736279979 -0.9064193612649891 -7.547280308312806 -1.067918414717907 -7.553775809653298 -0.9472327983245749 -3.98597483593536 5.652457902991198 -3.905101183939973 6.020618958475664 -5.05305560476592 6.622148164113315 -7.27772491667968 5.206817501283571 -6.72868968733474 4.136058323286965 -6.275449585183051 4.127744945274094 3.129344250468945 4.228303088262042 3.573350367991242 5.273079094114264 3.354175750142323 4.951616781581719 3.772065297827613 5.060605702879127 3.90441428202094 4.990208963003467 4.269826941252457 6.128012269342688 6.943140012061708 2.225444299620932 6.655360169729002 2.163960619423023 6.702412297663996 2.1096849018762 3.500449096548218 -0.3224776095588098 3.789307562308364 -0.4094590512181034 3.765924924014517 -0.3463911266747499 2.73421192946776 4.403165535243263 3.38025674050513 4.943435513391906 3.64298411173188 5.25514485092069 2.877940667869294 5.585437524330192 3.011909711981109 5.52641071277909 3.774958042568282 6.421429065416803 7.609975503683925 4.890018825072455 6.543176739322377 3.920145912335438 7.017936891579413 3.909965806713123 -2.844537059602854 2.008309631066081 -2.586835986024328 1.870394885037136 -2.761677657248522 2.029500599706688 -4.008092862297267 4.777051305618736 -3.918084073209415 4.576787760213856 -3.835270694369624 4.598089772890178 8.282079997379809 -5.637824583607729 7.899901978429571 -5.654845163920292 8.467885565626732 -5.943713672615953 5.932658345836569 -7.048441644263794 6.207313497316516 -6.865170711259076 6.042017955053143 -6.814426757901017 -0.7708877180182611 -8.67837023956853 -0.7033889763933321 -8.94094689105154 -0.654931246901786 -8.87572412908016 -7.29247008265804 -6.16825830814427 -7.675148319401016 -6.175515803589196 -7.828473878628092 -6.498814991450156 9.163513299032058 -4.884771330406955 9.288607905876326 -5.078632244589382 9.383696738578189 -5.089147503819769 6.156160333179555 -6.85925835793994 6.463426586427903 -6.72963564814617 6.149763548693514 -6.719783069680686 -7.342427430768073 0.2680930777047664 -7.099418415463823 0.185251862407488 -6.416444883919922 0.4564335272708737 -0.9387513316986113 3.177981314570622 -0.9486586336982406 2.928653260658535 -0.8733676025194243 2.955435193762439 0.1623900218977226 1.096942491253779 0.2049310777999552 0.7494616287782674 0.2390899787757239 1.121124098115781 2.561736891303922 -6.107532364065592 2.351259293116423 -7.267382833582784 2.697162291991673 -7.439733174679802 -8.930165451960262 0.295333508518245 -8.914208763313722 0.1371312959481615 -7.483393821633138 0.4455058785349199 -6.95826376736089 3.067299847819562 -6.977197707339149 3.142543371988218 -7.432231818739337 3.138655979150429 -8.076504999067801 1.942273857748956 -8.129971552498796 2.009779509810612 -9.538039950976902 1.753491054251887 1.514655812151018 -0.7334080930896799 1.495417258704747 -1.082469132367868 1.586050509773324 -1.101728573334035 0.9056622836245004 -3.026816851248352 0.9386843079517104 -2.804837975377466 0.848532342347732 -2.78422799511566 -7.107027252437868 -0.7876375390194846 -6.180492195800953 -0.9112870973468583 -6.87969655198374 -0.6882856501199133 -7.128542655161807 -3.081103406424559 -7.625633710012609 -3.157201018721693 -7.147035477462651 -3.156399070821825 -7.67646206602808 -2.797370727957003 -9.085934916881605 -2.809746725564581 -7.718161150097957 -2.869832060215034 -8.908472463734093 -0.9456976228573982 -7.529679053645937 -0.9754095865071504 -8.90510072222548 -0.8139328844854772 -5.881338388599651 4.50406112808743 -7.253841230344557 5.1963013655474 -7.210690829545285 4.875994604011638 -7.193159703222822 5.269845207239835 -6.201636592931429 4.184642820135692 -6.783802307654304 5.26301819230866 4.462075121711869 4.808897275595138 5.053724850986439 5.865516110681777 4.873549189960155 5.93692711853209 7.561292571124231 3.105880725196114 7.19840840418086 2.838397488863771 7.292904795002277 2.808409441747124 8.1446895956849 4.306100996550779 7.33108804176471 3.332484017562069 7.430419082646078 3.317686977760138 6.976466929022937 1.872974094695157 6.78298815180057 1.772553044467654 7.068893513549147 1.839229311548257 -3.375200879283819 5.745125750166509 -3.431496126799863 6.131233491670329 -3.45919853437108 5.75786510951576 -2.955184331484319 6.221493854929197 -2.872356450278772 7.328422963449643 -3.044170914533516 6.259261082509404 3.025786591428482 5.50585552532548 3.931373325290601 6.336109984127391 3.791337376614206 6.408479467987543 7.238755424174864 4.860237867715482 6.567221837176867 3.884141568478665 7.647720248807206 4.84458354354674 -3.854266820333741 4.863838823179988 -3.683295487647069 4.683780487940838 -3.769795641590861 4.853212271834425 7.967133376560895 -5.610343800351751 8.197397358396524 -5.907933248492452 8.540483215386344 -5.892575601653754 5.80543341433306 -7.001506192640144 6.197624860810667 -6.97081610700894 6.081375034645086 -6.819435075955772 2.694052004896493 -8.635718625076724 2.672106037527454 -8.709265195113094 2.8140929380626 -8.79297493691973 -7.172208132465931 -6.266624957468202 -7.704084751759124 -6.601281756698698 -7.360840524520197 -6.588309894264103 9.263260326210883 -5.103814835884413 9.405523130976883 -5.249161905572431 9.358294433600234 -5.114631927304724 6.099371398642951 -6.823128462645105 6.241312786510573 -6.960253543023304 6.407080260315937 -6.694157141549344 -3.00608556832405 5.019451911661345 -2.940368701141873 5.082412968960504 -3.130554944520676 5.227407523900158 1.353517222041405 2.969811712864057 1.392768651892923 2.763381990809926 1.443907975064636 3.009566474741562 4.266942852427738 -6.615506992460908 4.716744199031261 -7.743148165624424 4.650737616699059 -6.727729441427135 -10.28668002886894 -0.0937828797595812 -9.055407814662802 0.1362472901876673 -9.071140312411432 0.2944633974503092 -3.608858147557148 4.770238110183211 -3.750680886215156 4.97120033830512 -3.773360530426287 4.896600557490119 -7.100705157999414 2.711278583091485 -7.576834581716011 2.773091943295637 -7.53289520959112 2.701458828563071 -8.17428369246934 1.941646553319781 -9.62934706237974 1.724115776184242 -9.577442512528513 1.663494001273091 -7.780241514356955 -0.1627572382919025 -7.925738781038671 -0.7049677603238156 -7.81789872000735 -0.5108880977619668 -0.4003858537230914 -3.128404622530123 -0.3271898303935311 -3.163058982880862 -0.3664504784439115 -2.918283023253877 -3.210576798330826 -4.677163784487616 -3.334860453426127 -4.865370207353467 -3.148104590430492 -4.723003393556979 -1.316512064019561 -5.240797323619147 -1.443959236100936 -5.377229732235214 -1.395218845609698 -5.443644561343438 -7.287339521616378 -2.718342435752688 -7.744361347278708 -2.709899126802834 -7.787263952156327 -2.781924358475356 -7.666572568824681 -2.976800579108238 -9.03710292577769 -2.925003092659073 -9.076011327401556 -2.99138269813291 -10.16170857392661 -0.6825958909967832 -8.851696614398072 -0.9458017672404062 -8.848305698669181 -0.8140373333688989 -0.6418995047070736 7.398626793913742 -0.3851475606342147 7.649532137868212 -1.040226995247436 8.578003799303744 -7.687594056897973 6.085286508094633 -7.200547990069486 5.143462673449845 -6.791185263749208 5.136836418696446 4.936590354621746 5.981307350482459 5.116453585483766 5.909410591143172 5.328590197088473 6.927864112478795 7.306308382958497 3.212871115809425 7.037176307619113 2.935283787564428 7.40562559675408 3.198016750009801 8.188880842524677 4.269016917995517 7.473686813896915 3.279455971915816 8.280426782920902 4.256599975095995 -3.080035187647084 5.826761646029444 -3.032336604943796 6.176772711451529 -3.121678174578922 6.214017685437319 -3.997509586052842 5.931604622387955 -3.978727878031649 7.010881474673525 -4.064391166869241 7.039200860234 3.73907649699957 6.378775164524912 3.87935099306713 6.306692144878103 4.716810930553826 7.113391170709449 8.224676172670373 5.705182593954473 7.244516300415924 4.759328148477268 7.653443140774132 4.743071349325396 8.246228042817288 -5.420226833230213 8.685476913952527 -5.517917613663904 8.589069989065436 -5.401804206253233 5.716535945349822 -6.99827792502101 5.829734031808918 -7.151083490739215 5.950380016897553 -6.888351573934867 5.938075065571109 -7.477345904830089 6.079310741766163 -7.560349740341263 6.329976887835218 -7.444445810242726 3.506912979032589 -8.46166022371338 3.642055186490267 -8.611141909815 3.648030716630628 -8.533174653926585 -7.415617247831406 -6.123164672229621 -7.758917757279447 -6.135179534202703 -7.838113406866619 -6.259107765244684 9.199320618261513 -5.189777088698508 9.242747120781061 -5.317344943838871 9.338938362228362 -5.336702837402881 6.20428809670488 -6.752999988327257 6.586311701542256 -6.745322910101302 6.441712748022574 -6.609927054303896 7.313221789611619 -6.849888355574418 7.521171262621915 -6.706452308652097 7.45901239198993 -6.576650445976441 4.791985438184079 -6.393448434642259 4.96101672126361 -7.410250837308657 5.327297900583988 -7.497732947390289 -10.24084246468124 -0.1040529529873537 -10.18786210624122 -0.2959617694932749 -8.973048322673785 0.09368805104582501 -9.791558687129761 0.9814944629179719 -9.849740241730554 1.038480174062652 -11.03574671084916 0.6911650590541538 -9.415230739134167 -2.222866846366144 -10.75659909304071 -2.068782967820127 -9.461761610005713 -2.286137886242992 -10.13482258713969 -0.6655093740248087 -8.789002283949557 -0.747684339765454 -10.09884371873968 -0.48395379180013 0.7062362991890919 7.398958754048512 0.5215751719474426 8.610576067740357 0.2420699431879769 8.404827397964192 -7.738195418593551 6.050153291287474 -6.837541269088914 5.104195416427717 -7.355456083926312 6.045252120048752 4.669626389314941 6.035463120990829 5.087364117575771 6.997668551183808 4.849663849320372 7.057734058926635 8.887757765929553 5.204713154954328 8.19978347435528 4.33905670336054 8.291339532033625 4.326686009564462 -3.706736949528631 7.154787763625316 -3.646455252176806 8.220131701559021 -3.791426498015353 7.184865016877708 4.017462302655394 6.193364490230405 5.007217863813386 6.917949964255357 4.832422322582662 7.039874860515124 7.815867115999467 5.747013697197486 7.225753052870662 4.782860808236814 8.198275477145513 5.733581468844197 8.255934873121877 -5.425000924755263 8.354061003959405 -5.553084446659128 8.695492439150057 -5.521828640662377 6.214707203613981 -7.128945943891515 6.448048886577796 -6.99394840958314 6.32941090754643 -6.864572112469428 8.221420654770943 -6.011596916810401 8.268057903211902 -6.080553301519491 8.46005302508858 -5.928526389953852 -7.400535590715782 0.8717983867746344 -7.710056807611661 1.143598374101608 -7.739636148797682 0.9160539968145308 -7.397728585105807 -6.149469981422893 -7.820072536121256 -6.285705449040004 -7.476335612334193 -6.285611833348003 8.889699937979515 -5.367090655374562 8.802036041508512 -5.579571116364043 8.983551949191488 -5.392582583260899 6.214109891629436 -6.929543324702434 6.331806366037938 -7.059450696779978 6.596129007660912 -6.921729238484499 -7.479397580784825 0.4238032242109914 -7.823134473615471 0.4236551229774854 -7.840906910557184 0.2065396890655799 5.03613177516775 -7.371151395670309 5.44714017930667 -7.793709156066238 5.403250354818505 -7.456433614001966 -10.18932270967896 -0.3660431812972971 -9.901968525166041 -0.2877602649081492 -9.956211444287531 -0.09606984461399371 -9.785553559477243 0.9997840159759621 -11.03088046238132 0.7124922133221913 -10.96888940766614 0.6583064165969161 -9.410114233620595 -2.228385051922737 -10.70081004544833 -2.014953416345824 -10.75176751996626 -2.075844082053425 -10.17781002545755 -0.4324686368727615 -9.919087785409818 -0.6709566358517062 -9.882478990765385 -0.4894789985166593 1.760118758233272 8.266274949732306 2.073456556903941 8.439249232768111 1.973086817548392 8.775162110542233 -7.895675249693724 6.35572890440783 -7.738632574130896 6.040031310379674 -7.355893051787491 6.035139217269675 4.698653201530358 6.866233768884938 4.936890879330538 6.807500633840543 4.755953259092024 7.10117505962285 8.789778937523959 5.215777509063605 8.193911464926989 4.342014878462916 8.881865056477553 5.207681510575066 -3.636679076312206 7.174520399546183 -3.485281170383963 8.205188246932353 -3.567023200653953 8.239510501697062 4.608467887856551 6.942351551755317 4.784623973985226 6.821644505099476 5.002730093696144 6.988347316600743 8.382336284135629 6.009072709059925 7.818517792135292 5.708527979604562 8.200915224598788 5.694904571137292 -7.300328622433423 0.3133705363867954 -7.610227136120761 0.5768796973943583 -7.640754077580986 0.3502904432559122 8.683624809932937 -5.213540875446535 8.520711222363763 -5.352586884343154 8.752295864988689 -5.257974310796413 -7.092818134246431 1.331112866636004 -7.045255851850174 1.56780133338496 -7.383512819161629 1.615486151864548 9.080826027969591 -4.769648828027862 9.155802633392856 -4.807249290353734 9.216058004429662 -4.588944696320829 -7.184763006546485 1.174210970859951 -7.527235853374553 1.196529730501106 -7.563888096290102 0.9487953516270735 -7.287457386560325 0.1498170140715543 -7.260875675639328 0.3771226435993637 -7.630302431797364 0.1682635791268916 3.685928652310532 -7.859516517881581 3.710282400354488 -8.207401766278244 4.021944197128372 -8.321277962077289 -10.62889198449577 -0.004829544958635267 -10.44103046175671 -0.2056412825270085 -10.20681813314493 0.06374166861326873 -11.00590139692624 0.3907337674933596 -11.06989655349128 0.4434580411120462 -11.33757060876102 0.3299332866368258 -10.88077384336795 -1.431837684361402 -11.21906661463155 -1.401026336483101 -10.93675582579856 -1.489933784228467 -10.5596395438532 -0.7878020949513485 -10.12317404566467 -0.8221614784880638 -10.3823927298437 -0.5840073204946437 -1.615834864721014 8.293094617417673 -1.611430049953948 8.828839023972686 -1.814730889983079 8.61089390575034 -7.797266256922559 6.442545277235023 -7.260221681247103 6.119122849391917 -7.453867248912717 6.432445277851455 5.220278369457862 7.120775325574897 5.393343910433234 6.824179257647212 5.53582304901841 7.144123675288182 8.997431426691051 5.445946787423706 8.792789899193275 5.231813030241208 8.884875029733228 5.223710077424811 -3.138175189433178 8.317365019032891 -3.142359261060369 8.585258492464037 -3.218528724881931 8.353659643728127 4.54585703049935 7.161736605889143 4.939970439093995 7.208514868594181 4.814130817532872 7.434740768529738 8.090778324723388 5.987275507851667 7.865836740895702 5.680391139333189 8.434102477119943 5.975707014455302 -7.282057632106239 0.3420229973445143 -7.24953389326128 0.5767685969397471 -7.591005943910796 0.6062217419930539 -7.160381284168206 1.173992512444623 -7.54050878292817 0.9496240426249764 -7.199326808919533 0.9181592597770775 5.914689599860319 -7.02337559921768 6.29919748455012 -7.216898010070527 6.249641386265783 -7.083776125206647 -10.68063472916411 -0.03014462824183809 -10.63789637362116 -0.3114805503609948 -10.49291382516479 -0.2310377280508252 -10.98767111651761 0.4919174817930945 -11.32050148029596 0.4351794222741164 -11.23691440893257 0.3979838735056778 -10.86032803082546 -1.479091414228765 -11.12090449503825 -1.406631697688325 -11.1989547701045 -1.450640802191977 -10.61528799819944 -0.760199929410775 -10.43811890949309 -0.5563633344249114 -10.59175004968914 -0.4865325643419837 5.168886315289541 7.365943063405671 5.496535504559187 7.447443103446951 5.532248318194387 7.583289295059242 -7.911031530225858 6.136667593078347 -7.830448785404514 6.01329483810173 -7.487027993879361 6.003664093610519 5.196321233049179 7.312074496055821 5.209522134444327 7.172888476327961 5.52505120131981 7.196367035854346 8.940196896659442 5.490580774524839 8.846094317593119 5.475450592245355 8.736560394668635 5.275854911380717 -2.300373506391011 8.476309098196238 -2.219830157215937 8.684287937402377 -2.279150689010646 8.74370209437417 4.920373935155845 7.438211336220197 5.044873738304256 7.211527141739645 5.201938026693515 7.276423649238595 8.554216058595706 5.609838941235937 8.117312848289828 5.50583931127758 8.460523032565412 5.492339300060463 5.794782989367736 -7.095646520287728 5.838978350849863 -7.241079413747425 6.176397673910426 -7.292681087399546 -11.32324141032872 -0.05684265905028527 -11.14133237321608 0.2182022158056376 -11.30737918634648 0.1715256504883076 -10.74131848652431 -0.3051059973261299 -10.51661884714693 -0.3111780448464778 -10.55983482506775 -0.02988727853457548 -11.33513745992419 -0.3186119544810304 -11.4677873213602 -0.4112938962804223 -11.24791499099993 -0.3502225672437868 -11.47568516644927 -0.3709429057436157 -11.33426853498595 -0.4552433648619497 -11.25043997430787 -0.4183930563986958 -10.74388029507606 -0.5088916691470116 -10.54454376524947 -0.7603525242860809 -10.52085334959071 -0.486693300899215 -11.27212812476224 -0.7479573568234509 -11.24399792535239 -0.9644057792185449 -11.0734791832724 -0.9997547129525994 4.978979388225893 7.45691012177773 5.337233013825129 7.679442414591668 5.006846435673423 7.604819984842863 -7.552507478035663 6.163501045937264 -7.896230321513499 6.161101792884907 -7.472314108315947 6.027926149526729 6.381417688566287 7.364138822885103 6.568033924868935 7.091055228351658 6.612442373854851 7.225289807666986 5.108519115953327 7.241921539249105 5.437859442009398 7.127293216737903 5.229994844828195 7.390708196312395 8.899210574551541 5.707140730405462 8.769964914876876 5.554447965853877 8.863857021041271 5.57036678242239 0.6017656373906116 8.849027341067513 0.6831017678459112 9.02094398084264 0.5630702990475844 8.918172808578168 4.84918506126741 7.404696269567971 5.131383779189833 7.243594294828876 5.225877649618224 7.404059473402316 4.852034509448656 7.891839684728685 5.228726971077487 7.891158075813983 4.980384828495451 7.986939090479169 8.219528150327255 5.64268143251085 8.124451070387782 5.513201857738595 8.561642221226299 5.616449946382111 7.477964839792466 -0.3164301919684322 7.820002119320475 -0.5629349420333912 7.82095570648282 -0.3342272036161624 -10.73223469003857 -0.09750802350088886 -10.51385019564315 -0.3178100812963506 -10.50753475833932 -0.1035733729477003 -11.26210337181495 -0.2232559555111391 -11.4828768075653 -0.2822812359787225 -11.38964063218413 -0.3091237266096786 -11.38820264429764 -0.4634149773922885 -11.47856677714294 -0.4958093755231466 -11.25267877158462 -0.5413292099811872 -10.70926736066075 -0.7241433480761172 -10.48624088283821 -0.7019420723149915 -10.51035120217984 -0.4674430017563528 7.844049478789012 0.1933800494995118 7.502764762946278 -0.0432567612130923 7.845644128403817 -0.02419302449264853 -7.479089971007023 -0.2255670009436816 -7.845559445012757 -0.001841097336704264 -7.822783260867139 -0.2298481961284706 5.251847388980799 7.175966403540889 5.480262055549751 7.059138797071849 5.604855525251153 7.206321351226547 8.776750423011515 5.835196226157819 8.682652265325375 5.810220989327786 8.651500581638176 5.680456463118566 1.485772983708301 8.791928779812089 1.608273387713923 8.882207753686709 1.584619933842702 8.958069629267971 4.708393688786927 7.404342806766388 4.976298403093658 7.299798120732598 4.799109858124441 7.566151518812774 -7.454962337104237 -0.6596704191253112 -7.793178801377531 -0.7079307177167631 -7.761536119210644 -0.924080850109646 7.271660093477241 -0.5028294652796737 7.269619430338604 -0.742481892834188 7.613136989127534 -0.7498145417369845 -10.92051144681378 -0.2102256539428505 -10.90482643731967 -0.43775430480715 -10.70221595034152 -0.4305822903290932 -11.27725068815328 -0.173088120066662 -11.28100018826619 -0.3873621256739218 -11.18280299208395 -0.1971672534214698 -11.2630806435167 -0.2184774645733396 -11.24894199331346 -0.4534792626938192 -11.15625228072694 -0.4254444442964471 -10.90845917228694 -0.3742419134110793 -10.90502832334284 -0.6236457186092163 -10.70584857138288 -0.3670718909140796 7.618644319240165 0.413273990567097 7.275205169583114 0.4039696451474449 7.278378418002919 0.1757309639274631 -7.319965044724375 0.02637050699736276 -7.662310025337017 0.002872670088507172 -7.287293167286048 -0.2119090496941094 5.205967696573508 7.371192744173923 5.558892750505161 7.402139770442199 5.304261758068236 7.510718828934936 8.037753861832558 6.122809874252642 8.127594706888372 6.156102077184638 7.943854768287891 6.314353166684216 7.273791869601489 6.668048104795911 7.539061909339335 6.588340650501213 7.310957907657844 6.740480419146932 5.165539756279554 7.582007533895836 5.336979005721872 7.313335759549505 5.436421504585031 7.452357326752184 -7.110207297837602 -1.240657627793926 -7.392083045804741 -1.521561313377225 -7.056068249124015 -1.464908348649675 7.305131176915099 0.2880279903068188 7.649873525010325 0.05285049253222032 7.648649290072918 0.2807114310127205 -10.86392768529901 -0.3402247460209299 -10.96094106120326 -0.5307952075667954 -10.87205009150995 -0.5292217281837912 -10.88594628879937 -0.04402942136596071 -10.97483706903287 -0.04560951047551233 -10.87046564296891 -0.2533508204590864 7.659150054302678 -0.2763464000623481 7.315970564608313 -0.5349705400006876 7.65941400470839 -0.5257647217229292 -7.172426749101089 -1.140875959246738 -7.55519119575834 -0.9454712612601799 -7.513933166500292 -1.170992836758235 8.459571746985008 5.397204563665892 8.593907679644593 5.240374159134416 8.530400067812826 5.439495416581214 7.787513651940996 5.987941707509287 7.84955355450045 6.038053002042353 7.59007991289359 6.128803043075938 -7.332300693067998 -0.2484377953323516 -7.671599965303634 -0.2912972040263326 -7.631753046015854 -0.5387552600929779 7.290719076346226 0.2755267402021296 7.291975651081154 0.03940138049878873 7.635489710447182 0.04037490460496442 7.636853380435862 -0.2578290348497467 7.293339314235867 -0.2588010655243426 7.293684783939276 -0.5164621196727895 -7.156160674413737 -1.141481673185987 -7.199692840819402 -0.9078650066005928 -7.539607897009619 -0.9469071451194763 -7.305606594538739 -0.293280564857082 -7.603196841502352 -0.5847805386810494 -7.262747511722701 -0.5487342049231557</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1235\" source=\"#ID345\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID341\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID339\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID340\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"884\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID341\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID342\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 9 7 10 8 11 8 12 7 13 6 1 9 0 10 14 11 15 11 5 10 4 9 1 12 16 13 6 14 7 14 17 13 4 12 10 15 18 16 19 17 20 17 21 16 11 15 8 18 10 19 22 20 23 20 11 19 13 18 8 21 24 22 9 23 12 23 25 22 13 21 0 24 26 25 14 26 15 26 27 25 5 24 28 27 29 28 30 29 31 29 32 28 33 27 29 28 34 30 35 31 36 31 37 30 32 28 16 32 38 33 6 34 7 34 39 33 17 32 22 35 10 36 19 37 20 37 11 36 23 35 18 38 40 39 19 40 20 40 41 39 21 38 42 41 43 42 44 43 45 43 46 42 47 41 8 44 48 45 24 46 25 46 49 45 13 44 14 47 26 48 50 49 51 49 27 48 15 47 52 50 53 51 54 52 55 52 56 51 57 50 58 53 38 54 16 55 17 55 39 54 59 53 60 56 61 57 62 58 63 58 64 57 65 56 19 59 40 60 66 61 67 61 41 60 20 59 68 62 69 63 70 64 71 64 72 63 73 62 8 65 74 66 48 67 49 67 75 66 13 65 76 68 77 69 78 70 79 70 80 69 81 68 82 71 83 72 84 73 85 73 86 72 87 71 88 74 89 75 90 76 91 76 92 75 93 74 94 77 95 78 96 79 97 79 98 78 99 77 19 80 66 81 100 82 101 82 67 81 20 80 102 83 103 84 104 85 105 85 106 84 107 83 103 86 108 87 109 88 110 88 111 87 106 86 68 89 112 90 69 91 72 91 113 90 73 89 8 92 114 93 74 94 75 94 115 93 13 92 84 95 83 96 116 97 117 97 86 96 85 95 88 98 118 99 89 100 92 100 119 99 93 98 94 101 96 102 120 103 121 103 97 102 99 101 122 104 123 105 124 106 123 105 122 104 125 107 126 107 127 104 128 105 129 106 128 105 127 104 130 108 131 109 123 110 128 110 132 109 133 108 134 111 135 112 136 113 137 113 138 112 139 111 19 114 100 115 140 116 141 116 101 115 20 114 102 117 104 118 142 119 143 119 105 118 107 117 144 120 103 121 102 122 107 122 106 121 145 120 122 123 108 124 103 125 106 125 111 124 127 123 146 126 147 127 148 128 147 127 146 126 149 129 147 127 149 129 150 130 150 130 149 129 151 131 151 131 149 129 152 132 151 131 152 132 153 133 153 133 152 132 154 134 153 133 154 134 155 135 155 135 154 134 156 136 155 135 156 136 157 137 157 137 156 136 158 138 158 138 156 136 159 139 158 138 159 139 160 140 160 140 159 139 161 141 160 140 161 141 162 142 162 142 161 141 163 143 162 142 163 143 164 144 164 144 163 143 165 145 166 146 167 147 168 148 167 147 166 146 146 126 167 147 146 126 169 149 169 149 146 126 148 128 169 149 148 128 170 150 169 149 170 150 171 151 171 151 170 150 172 152 171 151 172 152 173 153 171 151 173 153 174 154 174 154 173 153 175 155 174 154 175 155 176 156 176 156 175 155 177 157 176 156 177 157 178 158 176 156 178 158 179 159 179 159 178 158 180 160 179 159 180 160 181 161 181 161 180 160 182 162 181 161 182 162 183 163 183 163 182 162 184 164 183 163 184 164 165 145 183 163 165 145 185 165 185 165 165 145 163 143 185 165 163 143 186 166 185 165 186 166 187 167 188 167 189 166 190 165 189 166 191 143 190 165 191 143 192 145 190 165 190 165 192 145 193 163 192 145 194 164 193 163 194 164 195 162 193 163 193 163 195 162 196 161 195 162 197 160 196 161 196 161 197 160 198 159 197 160 199 158 198 159 198 159 199 158 200 156 199 158 201 157 200 156 201 157 202 155 200 156 200 156 202 155 203 154 202 155 204 153 203 154 203 154 204 153 205 151 204 153 206 152 205 151 206 152 207 150 205 151 205 151 207 150 208 149 207 150 209 128 208 149 209 128 210 126 208 149 208 149 210 126 211 147 210 126 212 146 211 147 213 148 211 147 212 146 192 145 191 143 214 144 214 144 191 143 215 142 191 143 216 141 215 142 215 142 216 141 217 140 216 141 218 139 217 140 217 140 218 139 219 138 218 139 220 136 219 138 219 138 220 136 221 137 221 137 220 136 222 135 220 136 223 134 222 135 222 135 223 134 224 133 223 134 225 132 224 133 224 133 225 132 226 131 225 132 227 129 226 131 226 131 227 129 228 130 228 130 227 129 229 127 227 129 210 126 229 127 209 128 229 127 210 126 112 168 230 169 69 170 72 170 231 169 113 168 114 171 232 172 74 173 75 173 233 172 115 171 84 174 116 175 234 176 235 176 117 175 85 174 96 177 236 178 120 179 121 179 237 178 97 177 122 180 124 181 108 182 111 182 129 181 127 180 125 183 122 184 238 185 239 185 127 184 126 183 125 186 240 187 123 188 128 188 241 187 126 186 242 189 130 190 123 191 128 191 133 190 243 189 135 192 244 193 136 194 137 194 245 193 138 192 100 195 246 196 140 197 141 197 247 196 101 195 102 198 142 199 248 200 249 200 143 199 107 198 144 201 102 202 250 203 251 203 107 202 145 201 144 204 238 205 103 206 106 206 239 205 145 204 238 207 122 208 103 209 106 209 127 208 239 207 252 210 253 211 254 212 255 212 256 211 257 210 258 213 259 214 253 215 256 215 260 214 261 213 259 216 262 217 263 218 264 218 265 217 260 216 263 219 266 220 267 221 268 221 269 220 264 219 270 222 271 223 272 224 273 224 274 223 275 222 272 225 276 226 277 227 278 227 279 226 273 225 280 228 281 229 282 230 283 230 284 229 285 228 286 231 287 232 281 233 284 233 288 232 289 231 290 234 291 235 287 236 288 236 292 235 293 234 248 237 142 238 291 239 292 239 143 238 249 237 294 240 130 241 242 242 243 242 133 241 295 240 296 243 294 244 297 245 298 245 295 244 299 243 300 246 296 247 301 248 302 248 299 247 303 246 304 249 300 250 305 251 306 251 303 250 307 249 308 252 309 253 310 254 311 254 312 253 313 252 314 255 315 256 316 257 317 257 318 256 319 255 320 258 321 259 309 260 312 260 322 259 323 258 324 261 314 262 325 263 326 263 319 262 327 261 328 264 254 265 329 266 330 266 255 265 331 264 112 267 332 268 230 269 231 269 333 268 113 267 114 270 334 271 232 272 233 272 335 271 115 270 234 273 116 274 336 275 337 275 117 274 235 273 120 276 236 277 338 278 339 278 237 277 121 276 242 279 123 280 240 281 241 281 128 280 243 279 136 282 244 283 340 284 341 284 245 283 137 282 140 285 246 286 342 287 343 287 247 286 141 285 250 288 102 289 248 290 249 290 107 289 251 288 328 291 252 292 254 293 255 293 257 292 331 291 258 294 253 295 252 296 257 296 256 295 261 294 262 297 259 298 258 299 261 299 260 298 265 297 262 300 266 301 263 302 264 302 269 301 265 300 266 303 271 304 267 305 268 305 274 304 269 303 344 306 345 307 346 308 347 308 348 307 349 306 271 309 276 310 272 311 273 311 279 310 274 309 276 312 280 313 277 314 280 313 276 312 350 315 351 315 279 312 285 313 278 314 285 313 279 312 352 316 353 317 354 318 355 318 356 317 357 316 280 319 286 320 281 321 284 321 289 320 285 319 286 322 290 323 287 324 288 324 293 323 289 322 248 325 291 326 290 327 293 327 292 326 249 325 297 328 294 329 242 330 243 330 295 329 298 328 301 331 296 332 297 333 298 333 299 332 302 331 305 334 300 335 301 336 302 336 303 335 306 334 308 337 304 338 305 339 306 339 307 338 313 337 358 340 359 341 360 342 361 342 362 341 363 340 320 343 309 344 308 345 313 345 312 344 323 343 314 346 316 347 364 348 365 348 317 347 319 346 328 349 321 350 320 351 323 351 322 350 331 349 366 352 367 353 368 354 369 354 370 353 371 352 325 355 314 356 364 357 365 357 319 356 326 355 230 358 332 359 372 360 373 360 333 359 231 358 334 361 374 362 232 363 233 363 375 362 335 361 234 364 336 365 376 366 377 366 337 365 235 364 338 367 236 368 378 369 379 369 237 368 339 367 380 370 242 371 240 372 241 372 243 371 381 370 244 373 382 374 340 375 341 375 383 374 245 373 246 376 384 377 342 378 343 378 385 377 247 376 250 379 248 380 290 381 293 381 249 380 251 379 386 382 252 383 328 384 331 384 257 383 387 382 388 385 258 386 252 387 257 387 261 386 389 385 390 388 262 389 258 390 261 390 265 389 391 388 262 391 392 392 266 393 269 393 393 392 265 391 266 394 394 395 271 396 274 396 395 395 269 394 396 397 397 398 398 399 399 399 400 398 401 397 344 400 402 401 345 402 348 402 403 401 349 400 271 403 404 404 276 405 279 405 405 404 274 403 404 406 350 407 276 408 279 408 351 407 405 406 350 409 406 410 280 411 285 411 407 410 351 409 408 412 409 413 410 414 411 414 412 413 413 412 352 415 354 416 414 417 415 417 355 416 357 415 286 418 406 419 416 420 406 419 286 418 280 421 285 421 289 418 407 419 417 420 407 419 289 418 416 422 290 423 286 424 289 424 293 423 417 422 297 425 242 426 380 427 381 427 243 426 298 425 301 428 297 429 418 430 419 430 298 429 302 428 305 431 301 432 420 433 421 433 302 432 306 431 308 434 305 435 422 436 423 436 306 435 313 434 424 437 358 438 360 439 361 439 363 438 425 437 426 440 320 441 308 442 313 442 323 441 427 440 364 443 316 444 428 445 429 445 317 444 365 443 430 446 328 447 320 448 323 448 331 447 431 446 367 449 366 450 432 451 433 451 371 450 370 449 325 452 364 453 434 454 435 454 365 453 326 452 332 455 436 456 372 457 373 457 437 456 333 455 334 458 438 459 374 460 375 460 439 459 335 458 376 461 336 462 440 463 441 463 337 462 377 461 338 464 378 465 442 466 443 466 379 465 339 464 340 467 382 468 444 469 445 469 383 468 341 467 342 470 384 471 446 472 447 472 385 471 343 470 448 473 250 474 290 475 293 475 251 474 449 473 430 476 386 477 328 478 331 478 387 477 431 476 388 479 252 480 386 481 387 481 257 480 389 479 388 482 390 483 258 484 261 484 391 483 389 482 392 485 262 486 390 487 391 487 265 486 393 485 392 488 394 489 266 490 269 490 395 489 393 488 394 491 404 492 271 493 274 493 405 492 395 491 450 494 451 495 452 496 453 496 454 495 455 494 402 497 456 498 345 499 348 499 457 498 403 497 450 500 458 501 451 502 454 502 459 501 455 500 414 503 354 504 460 505 461 505 355 504 415 503 448 506 290 507 416 508 417 508 293 507 449 506 418 509 297 510 380 511 381 511 298 510 419 509 420 512 301 513 418 514 419 514 302 513 421 512 422 515 305 516 420 517 421 517 306 516 423 515 426 518 308 519 422 520 423 520 313 519 427 518 462 521 358 522 424 523 425 523 363 522 463 521 430 524 320 525 426 526 427 526 323 525 431 524 428 527 316 528 464 529 465 529 317 528 429 527 466 530 467 531 468 532 469 532 470 531 471 530 472 533 432 534 366 535 371 535 433 534 473 533 474 536 466 537 468 538 469 538 471 537 475 536 325 539 434 540 476 541 477 541 435 540 326 539 372 542 436 543 478 544 479 544 437 543 373 542 438 545 480 546 374 547 375 547 481 546 439 545 376 548 440 549 482 550 483 550 441 549 377 548 442 551 378 552 484 553 485 553 379 552 443 551 382 554 486 555 444 556 445 556 487 555 383 554 384 557 488 558 446 559 447 559 489 558 385 557 490 560 450 561 452 562 453 562 455 561 491 560 402 563 492 564 456 565 457 565 493 564 403 563 494 566 495 567 496 568 497 568 498 567 499 566 500 569 458 570 450 571 455 571 459 570 501 569 502 572 503 573 458 574 459 574 504 573 505 572 414 575 460 576 506 577 507 577 461 576 415 575 462 578 424 579 508 580 509 580 425 579 463 578 510 581 511 582 512 583 513 583 514 582 515 581 316 584 516 585 464 586 465 586 517 585 317 584 518 587 519 588 520 589 521 589 522 588 523 587 524 590 518 591 520 592 521 592 523 591 525 590 325 593 526 594 527 595 528 595 529 594 326 593 530 596 432 597 472 598 473 598 433 597 531 596 532 599 533 600 534 601 535 601 536 600 537 599 538 602 532 603 534 604 535 604 537 603 539 602 325 605 476 606 540 607 541 607 477 606 326 605 436 608 542 609 478 610 479 610 543 609 437 608 438 611 544 612 480 613 481 613 545 612 439 611 482 614 440 615 546 616 547 616 441 615 483 614 442 617 484 618 548 619 549 619 485 618 443 617 444 620 486 621 550 622 551 622 487 621 445 620 488 623 552 624 446 625 447 625 553 624 489 623 554 626 490 627 452 628 453 628 491 627 555 626 556 629 557 630 558 631 559 631 560 630 561 629 492 632 562 633 456 634 457 634 563 633 493 632 564 635 565 636 566 637 567 637 568 636 569 635 570 638 494 639 496 640 497 640 499 639 571 638 558 641 557 642 572 643 573 643 560 642 559 641 574 644 458 645 500 646 501 646 459 645 575 644 502 647 458 648 576 649 577 649 459 648 505 647 578 650 503 651 502 652 505 652 504 651 579 650 506 653 460 654 580 655 581 655 461 654 507 653 582 656 462 657 508 658 509 658 463 657 583 656 510 659 512 660 584 661 585 661 513 660 515 659 512 662 511 663 586 664 587 664 514 663 513 662 588 665 589 666 590 667 591 667 592 666 593 665 520 668 519 669 594 670 595 670 522 669 521 668 325 671 540 672 526 673 529 673 541 672 326 671 527 674 526 675 596 676 597 676 529 675 528 674 598 677 530 678 472 679 473 679 531 678 599 677 538 680 534 681 600 682 601 682 535 681 539 680 602 683 603 684 604 685 605 685 606 684 607 683 478 686 542 687 608 688 609 688 543 687 479 686 544 689 610 690 480 691 481 691 611 690 545 689 482 692 546 693 612 694 613 694 547 693 483 692 548 695 484 696 614 697 615 697 485 696 549 695 486 698 616 699 550 700 551 700 617 699 487 698 618 701 552 702 488 703 489 703 553 702 619 701 620 704 554 705 452 706 453 706 555 705 621 704 622 707 623 708 556 709 561 709 624 708 625 707 623 710 557 711 556 712 561 712 560 711 624 710 492 713 626 714 562 715 563 715 627 714 493 713 628 716 570 717 496 718 497 718 571 717 629 716 630 719 631 720 632 721 633 721 634 720 635 719 636 722 632 723 637 724 638 724 633 723 639 722 557 725 640 726 572 727 573 727 641 726 560 725 642 728 572 729 640 730 641 730 573 729 643 728 576 731 458 732 574 733 575 733 459 732 577 731 644 734 645 735 646 736 647 736 648 735 649 734 650 737 651 738 645 739 648 739 652 738 653 737 654 740 503 741 578 742 579 742 504 741 655 740 506 743 580 744 656 745 657 745 581 744 507 743 582 746 508 747 658 748 659 748 509 747 583 746 511 749 660 750 586 751 587 751 661 750 514 749 662 752 663 753 588 754 593 754 664 753 665 752 666 755 667 756 662 757 665 757 668 756 669 755 663 758 589 759 588 760 593 760 592 759 664 758 670 761 671 762 602 763 607 763 672 762 673 761 674 764 675 765 671 766 672 766 676 765 677 764 527 767 596 768 678 769 679 769 597 768 528 767 680 770 530 771 598 772 599 772 531 771 681 770 602 773 604 774 670 775 673 775 605 774 607 773 542 776 682 777 608 778 609 778 683 777 543 776 544 779 684 780 610 781 611 781 685 780 545 779 612 782 546 783 686 784 687 784 547 783 613 782 548 785 614 786 688 787 689 787 615 786 549 785 616 788 690 789 550 790 551 790 691 789 617 788 618 791 692 792 552 793 553 793 693 792 619 791 694 794 695 795 631 796 634 796 696 795 697 794 698 797 623 798 622 799 625 799 624 798 699 797 626 800 700 801 562 802 563 802 701 801 627 800 702 803 570 804 628 805 629 805 571 804 703 803 694 806 631 807 630 808 635 808 634 807 697 806 630 809 632 810 636 811 639 811 633 810 635 809 636 812 637 813 704 814 705 814 638 813 639 812 706 815 707 816 708 817 709 817 710 816 711 815 712 818 642 819 640 820 641 820 643 819 713 818 714 821 715 822 716 823 717 823 718 822 719 821 714 824 720 825 715 826 718 826 721 825 719 824 644 827 650 828 645 829 648 829 653 828 649 827 650 830 722 831 651 832 652 832 723 831 653 830 724 833 654 834 578 835 579 835 655 834 725 833 656 836 580 837 726 838 727 838 581 837 657 836 728 839 582 840 658 841 659 841 583 840 729 839 586 842 660 843 730 844 731 844 661 843 587 842 667 845 663 846 662 847 665 847 664 846 668 845 732 848 667 849 666 850 669 850 668 849 733 848 670 851 674 852 671 853 672 853 677 852 673 851 674 854 734 855 675 856 676 856 735 855 677 854 678 857 596 858 736 859 737 859 597 858 679 857 738 860 680 861 598 862 599 862 681 861 739 860 682 863 740 864 608 865 609 865 741 864 683 863 610 866 684 867 742 868 743 868 685 867 611 866 544 869 744 870 684 871 685 871 745 870 545 869 612 872 686 873 746 874 747 874 687 873 613 872 688 875 614 876 748 877 749 877 615 876 689 875 616 878 750 879 690 880 691 880 751 879 617 878 742 881 692 882 618 883 619 883 693 882 743 881 692 884 752 885 552 886 553 886 753 885 693 884 626 887 754 888 700 889 701 889 755 888 627 887 756 890 702 891 628 892 629 892 703 891 757 890 704 893 637 894 758 895 759 895 638 894 705 893 722 896 760 897 651 898 652 898 761 897 723 896 762 899 654 900 724 901 725 901 655 900 763 899 656 902 726 903 764 904 765 904 727 903 657 902 728 905 658 906 766 907 767 907 659 906 729 905 660 908 768 909 730 910 731 910 769 909 661 908 770 911 732 912 666 913 669 913 733 912 771 911 734 914 772 915 675 916 676 916 773 915 735 914 678 917 736 918 774 919 775 919 737 918 679 917 776 920 680 921 738 922 739 922 681 921 777 920 682 923 778 924 740 925 741 925 779 924 683 923 684 926 780 927 742 928 743 928 781 927 685 926 782 929 783 930 784 931 785 931 786 930 787 929 788 932 789 933 790 934 791 934 792 933 793 932 688 935 748 936 794 937 795 937 749 936 689 935 796 938 784 939 797 940 798 940 785 939 799 938 742 941 780 942 692 943 693 943 781 942 743 941 800 944 801 945 802 946 803 946 804 945 805 944 754 947 806 948 700 949 701 949 807 948 755 947 808 950 702 951 756 952 757 952 703 951 809 950 704 953 758 954 810 955 811 955 759 954 705 953 722 956 812 957 760 958 761 958 813 957 723 956 814 959 762 960 724 961 725 961 763 960 815 959 764 962 726 963 816 964 817 964 727 963 765 962 818 965 728 966 766 967 767 967 729 966 819 965 730 968 768 969 820 970 821 970 769 969 731 968 822 971 732 972 770 973 771 973 733 972 823 971 734 974 824 975 772 976 773 976 825 975 735 974 774 977 736 978 826 979 827 979 737 978 775 977 828 980 776 981 738 982 739 982 777 981 829 980 830 983 831 984 789 985 792 985 832 984 833 983 834 986 782 987 784 988 785 988 787 987 835 986 788 989 830 990 789 991 792 991 833 990 793 989 834 992 784 993 796 994 799 994 785 993 835 992 836 995 802 996 831 997 832 997 803 996 837 995 836 998 800 999 802 1000 803 1000 805 999 837 998 754 1001 838 1002 806 1003 807 1003 839 1002 755 1001 840 1004 808 1005 756 1006 757 1006 809 1005 841 1004 810 1007 758 1008 842 1009 843 1009 759 1008 811 1007 812 1010 844 1011 760 1012 761 1012 845 1011 813 1010 846 1013 762 1014 814 1015 815 1015 763 1014 847 1013 764 1016 816 1017 848 1018 849 1018 817 1017 765 1016 818 1019 766 1020 850 1021 851 1021 767 1020 819 1019 820 1022 768 1023 852 1024 853 1024 769 1023 821 1022 854 1025 822 1026 770 1027 771 1027 823 1026 855 1025 824 1028 856 1029 772 1030 773 1030 857 1029 825 1028 774 1031 826 1032 858 1033 859 1033 827 1032 775 1031 860 1034 776 1035 828 1036 829 1036 777 1035 861 1034 830 1037 862 1038 831 1039 832 1039 863 1038 833 1037 836 1040 831 1041 862 1042 863 1042 832 1041 837 1040 838 1043 864 1044 806 1045 807 1045 865 1044 839 1043 840 1046 866 1047 808 1048 809 1048 867 1047 841 1046 810 1049 842 1050 868 1051 869 1051 843 1050 811 1049 812 1052 870 1053 844 1054 845 1054 871 1053 813 1052 846 1055 814 1056 872 1057 873 1057 815 1056 847 1055 848 1058 816 1059 874 1060 875 1060 817 1059 849 1058 876 1061 818 1062 850 1063 851 1063 819 1062 877 1061 878 1064 820 1065 852 1066 853 1066 821 1065 879 1064 854 1067 880 1068 822 1069 823 1069 881 1068 855 1067 824 1070 882 1071 856 1072 857 1072 883 1071 825 1070 858 1073 826 1074 884 1075 885 1075 827 1074 859 1073 886 1076 860 1077 828 1078 829 1078 861 1077 887 1076 838 1079 888 1080 864 1081 865 1081 889 1080 839 1079 890 1082 840 1083 891 1084 892 1084 841 1083 893 1082 890 1085 866 1086 840 1087 841 1087 867 1086 893 1085 842 1088 894 1089 868 1090 869 1090 895 1089 843 1088 896 1091 844 1092 870 1093 871 1093 845 1092 897 1091 898 1094 846 1095 872 1096 873 1096 847 1095 899 1094 898 1097 900 1098 846 1099 847 1099 901 1098 899 1097 848 1100 874 1101 902 1102 903 1102 875 1101 849 1100 904 1103 876 1104 850 1105 851 1105 877 1104 905 1103 906 1106 852 1107 907 1108 908 1108 853 1107 909 1106 878 1109 852 1110 906 1111 909 1111 853 1110 879 1109 910 1112 880 1113 854 1114 855 1114 881 1113 911 1112 882 1115 912 1116 856 1117 857 1117 913 1116 883 1115 858 1118 884 1119 914 1120 915 1120 885 1119 859 1118 858 1121 914 1122 916 1123 917 1123 915 1122 859 1121 918 1124 860 1125 886 1126 887 1126 861 1125 919 1124 920 1127 921 1128 922 1129 923 1129 924 1128 925 1127 890 1130 926 1131 866 1132 867 1132 927 1131 893 1130 868 1133 894 1134 928 1135 929 1135 895 1134 869 1133 930 1136 896 1137 870 1138 871 1138 897 1137 931 1136 898 1139 872 1140 926 1141 927 1141 873 1140 899 1139 932 1142 933 1143 934 1144 935 1144 936 1143 937 1142 938 1145 939 1146 940 1147 941 1147 942 1146 943 1145 944 1148 878 1149 906 1150 909 1150 879 1149 945 1148 910 1151 946 1152 880 1153 881 1153 947 1152 911 1151 882 1154 948 1155 912 1156 913 1156 949 1155 883 1154 884 1157 944 1158 914 1159 915 1159 945 1158 885 1157 950 1160 951 1161 952 1162 953 1162 954 1161 955 1160 920 1163 956 1164 921 1165 924 1165 957 1164 925 1163 890 1166 958 1167 926 1168 927 1168 959 1167 893 1166 960 1169 961 1170 962 1171 963 1171 964 1170 965 1169 961 1172 966 1173 967 1174 968 1174 969 1173 964 1172 958 1175 898 1176 926 1177 927 1177 899 1176 959 1175 932 1178 970 1179 933 1180 936 1180 971 1179 937 1178 972 1181 939 1182 938 1183 943 1183 942 1182 973 1181 944 1184 906 1185 974 1186 975 1186 909 1185 945 1184 976 1187 977 1188 978 1189 979 1189 980 1188 981 1187 982 1190 978 1191 983 1192 984 1192 979 1191 985 1190 914 1193 944 1194 974 1195 975 1195 945 1194 915 1193 950 1196 952 1197 986 1198 987 1198 953 1197 955 1196 956 1199 988 1200 921 1201 924 1201 989 1200 957 1199 962 1202 961 1203 990 1204 991 1204 964 1203 963 1202 990 1205 961 1206 967 1207 968 1207 964 1206 991 1205 988 1208 970 1209 932 1210 937 1210 971 1209 989 1208 972 1211 992 1212 939 1213 942 1213 993 1212 973 1211 994 1214 976 1215 978 1216 979 1216 981 1215 995 1214 994 1217 978 1218 982 1219 985 1219 979 1218 995 1217 986 1220 952 1221 992 1222 993 1222 953 1221 987 1220 956 1223 996 1224 988 1225 989 1225 997 1224 957 1223 988 1226 996 1227 970 1228 971 1228 997 1227 989 1226 972 1229 998 1230 992 1231 993 1231 999 1230 973 1229 986 1232 992 1233 998 1234 999 1234 993 1233 987 1232</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID346\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID352\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID356\">-0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035627 -0.3378135984617037 -1.272300980758927</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID356\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID353\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID357\">-0.9999410261811262 -1.189599814927649e-005 -0.01086020341990315 -0.9999410269663441 -0.002736872445651152 -0.01050962029330042 -0.9999410263908806 7.648229374381802e-005 -0.01085992130776995 -0.9999410267352775 -0.00282230173442009 -0.01048702362534358 0.9999410267352775 0.00282230173442009 0.01048702362534358 0.9999410261811262 1.189599814927649e-005 0.01086020341990315 0.9999410269663441 0.002736872445651152 0.01050962029330042 0.9999410263908806 -7.648229374381802e-005 0.01085992130776995 -0.9999410251909873 0.002884647210172477 -0.01047019343041532 -0.9999410250023675 0.002799366906628021 -0.01049333417637169 0.9999410251909873 -0.002884647210172477 0.01047019343041532 0.9999410250023675 -0.002799366906628021 0.01049333417637169 9.286956521859729e-019 -0.2567189364859594 -0.9664861031848921 -5.715048115234753e-019 0.002173823798311303 -0.9999976372422557 -5.715048115234815e-019 0.002173823798316985 -0.9999976372422557 9.286956521860817e-019 -0.2567189364859696 -0.9664861031848894 -9.286956521860817e-019 0.2567189364859696 0.9664861031848894 -9.286956521859729e-019 0.2567189364859594 0.9664861031848921 5.715048115234753e-019 -0.002173823798311303 0.9999976372422557 5.715048115234815e-019 -0.002173823798316985 0.9999976372422557 -0.999941027241365 -0.005363709391798363 -0.009443127715125572 -0.999941027016906 -0.005440356935925922 -0.009399202348336674 0.999941027016906 0.005440356935925922 0.009399202348336674 0.999941027241365 0.005363709391798363 0.009443127715125572 0.004942785664726246 -0.2568034608485688 -0.9664510082596376 0.003828242018622541 0.004557013776478851 -0.999982288937403 0.0038266651399871 -0.2544110204982774 -0.9670886150105025 -0.0038266651399871 0.2544110204982774 0.9670886150105025 -0.003828242018622541 -0.004557013776478851 0.999982288937403 -0.004942785664726246 0.2568034608485688 0.9664510082596376 -0.9999410238180577 0.005496359094067572 -0.009366905700582823 -0.9999410236206152 0.005419907617564657 -0.009411369824492982 0.9999410238180577 -0.005496359094067572 0.009366905700582823 0.9999410236206152 -0.005419907617564657 0.009411369824492982 1.643076813688965e-018 0.26091795302378 -0.9653609800431552 1.643076813689116e-018 0.2609179530237881 -0.9653609800431529 -1.643076813689116e-018 -0.2609179530237881 0.9653609800431529 -1.643076813688965e-018 -0.26091795302378 0.9653609800431552 0.004944863497418337 0.002079709308106825 -0.9999856114635779 0.003826725799420876 0.2632158559531372 -0.9647293762213907 -0.003826725799420876 -0.2632158559531372 0.9647293762213907 -0.004944863497418337 -0.002079709308106825 0.9999856114635779 5.715048112518241e-019 -0.4981166872421474 -0.8671100079522257 5.715048112519107e-019 -0.4981166872421416 -0.8671100079522289 -5.715048112519107e-019 0.4981166872421416 0.8671100079522289 -5.715048112518241e-019 0.4981166872421474 0.8671100079522257 -0.9999410279774628 -0.007624925862152798 -0.007733115347123785 -0.999941027776978 -0.007687610089140697 -0.007670829123266627 0.999941027776978 0.007687610089140697 0.007670829123266627 0.9999410279774628 0.007624925862152798 0.007733115347123785 0.004945237506788235 -0.498190537464372 -0.8670534775934884 0.003830007769246236 -0.4960444625889477 -0.8682886744483829 -0.003830007769246236 0.4960444625889477 0.8682886744483829 -0.004945237506788235 0.498190537464372 0.8670534775934884 -0.9999410231812367 0.007733425532157156 -0.007625240245423564 -0.9999410229394634 0.007671116821697991 -0.00768795222977871 0.9999410231812367 -0.007733425532157156 0.007625240245423564 0.9999410229394634 -0.007671116821697991 0.00768795222977871 3.714782186172493e-018 0.5018825991966418 -0.8649357528878217 3.714782186172491e-018 0.5018825991966421 -0.8649357528878214 -3.714782186172491e-018 -0.5018825991966421 0.8649357528878214 -3.714782186172493e-018 -0.5018825991966418 0.8649357528878217 0.004941675560377144 0.2608252386265301 -0.9653733861765972 0.003821063636068529 0.5039417767426235 -0.8637291734833188 -0.003821063636068529 -0.5039417767426235 0.8637291734833188 -0.004941675560377144 -0.2608252386265301 0.9653733861765972 -1.143009550785445e-018 -0.7055662686997609 -0.7086439447798146 -1.143009550785445e-018 -0.7055662686997598 -0.7086439447798156 1.143009550785445e-018 0.7055662686997598 0.7086439447798156 1.143009550785445e-018 0.7055662686997609 0.7086439447798146 -0.9999410273711995 -0.009366649538182812 -0.005496149220936206 -0.9999410270511003 -0.009411083689174002 -0.005419771562170325 0.9999410270511003 0.009411083689174002 0.005419771562170325 0.9999410273711995 0.009366649538182812 0.005496149220936206 0.004947190279231937 -0.705623059879875 -0.7085701254456779 0.003831559424319163 -0.7038698595571158 -0.7103186186208439 -0.003831559424319163 0.7038698595571158 0.7103186186208439 -0.004947190279231937 0.705623059879875 0.7085701254456779 -0.9999410254789244 0.009443272316692088 -0.005363783376497059 -0.9999410251117098 0.009399334675645549 -0.00544047848980481 0.9999410254789244 -0.009443272316692088 0.005363783376497059 0.9999410251117098 -0.009399334675645549 0.00544047848980481 4.000533201430981e-018 0.7086421448071734 -0.7055680765192605 4.00053320143097e-018 0.7086421448071717 -0.7055680765192622 -4.00053320143097e-018 -0.7086421448071717 0.7055680765192622 -4.000533201430981e-018 -0.7086421448071734 0.7055680765192605 0.004938464558228079 0.5017959577429818 -0.8649719234522071 0.003824929807736708 0.7103168903995655 -0.7038716396652572 -0.003824929807736708 -0.7103168903995655 0.7038716396652572 -0.004938464558228079 -0.5017959577429818 0.8649719234522071 -4.572041747584274e-018 -0.864936467361332 -0.5018813678833869 -4.572041747584255e-018 -0.8649364673613317 -0.5018813678833874 4.572041747584274e-018 0.864936467361332 0.5018813678833869 4.572041747584255e-018 0.8649364673613317 0.5018813678833874 -0.9999410254124463 -0.01047018167537675 -0.00288461310922097 -0.9999410251383567 -0.01049332216834374 -0.002799363342558378 0.9999410251383567 0.01049332216834374 0.002799363342558378 0.9999410254124463 0.01047018167537675 0.00288461310922097 0.003832821996489258 -0.8637292188850311 -0.5039416096332962 0.004949545639221747 -0.8649707823906792 -0.5017978154679645 -0.004949545639221747 0.8649707823906792 0.5017978154679645 -0.003832821996489258 0.8637292188850311 0.5039416096332962 -0.9999410277040745 0.01050954553455601 -0.0027368899825801 -0.9999410274483728 0.01048696668360297 -0.002822260666456722 0.9999410277040745 -0.01050954553455601 0.0027368899825801 0.9999410274483728 -0.01048696668360297 0.002822260666456722 5.715048312027202e-019 0.8671086552386754 -0.4981190420072052 5.715048312025381e-019 0.8671086552386785 -0.4981190420071999 -5.715048312027202e-019 -0.8671086552386754 0.4981190420072052 -5.715048312025381e-019 -0.8671086552386785 0.4981190420071999 0.0049414496731202 0.7085678671176957 -0.7056253678570574 0.003820269720511365 0.8682920451375475 -0.4960386374972395 -0.003820269720511365 -0.8682920451375475 0.4960386374972395 -0.0049414496731202 -0.7085678671176957 0.7056253678570574 -7.429561417819622e-018 -0.9653613948153605 -0.2609164184181239 -7.429561417819627e-018 -0.9653613948153605 -0.2609164184181246 7.429561417819622e-018 0.9653613948153605 0.2609164184181239 7.429561417819627e-018 0.9653613948153605 0.2609164184181246 -0.9999410239817562 -0.01086014318859406 -7.647378754804853e-005 -0.9999410236950654 -0.0108604323189624 1.189578101152491e-005 0.9999410236950654 0.0108604323189624 -1.189578101152491e-005 0.9999410239817562 0.01086014318859406 7.647378754804853e-005 0.003828924557667887 -0.9647294463450653 -0.2632155669626615 0.004947196804022776 -0.9653740421109739 -0.2608227061858341 -0.004947196804022776 0.9653740421109739 0.2608227061858341 -0.003828924557667887 0.9647294463450653 0.2632155669626615 -0.9999410275599662 0.01085981393770593 7.644316398962921e-005 -0.9999410273536835 0.01086009544374367 -1.190852621266681e-005 0.9999410275599662 -0.01085981393770593 -7.644316398962921e-005 0.9999410273536835 -0.01086009544374367 1.190852621266681e-005 2.286020727136626e-018 0.9664860372523969 -0.2567191847060875 2.28602072713672e-018 0.9664860372523976 -0.2567191847060854 -2.286020727136626e-018 -0.9664860372523969 0.2567191847060875 -2.28602072713672e-018 -0.9664860372523976 0.2567191847060854 0.004937611921748164 0.8670557886269709 -0.4981865909445694 0.003827393334498319 0.9670875751500726 -0.2544149623167159 -0.003827393334498319 -0.9670875751500726 0.2544149623167159 -0.004937611921748164 -0.8670557886269709 0.4981865909445694 -5.143545129757725e-018 -0.9999976392143629 -0.002172916404493806 -5.14354512975772e-018 -0.9999976392143629 -0.002172916404493386 5.143545129757725e-018 0.9999976392143629 0.002172916404493806 5.14354512975772e-018 0.9999976392143629 0.002172916404493386 -0.999941022673983 -0.01048738397334414 0.002822401655441478 -0.999941022932187 -0.01050997881948693 0.002736969591659315 0.999941022673983 0.01048738397334414 -0.002822401655441478 0.999941022932187 0.01050997881948693 -0.002736969591659315 0.003823753939118948 -0.9999822999605859 -0.004558362792749011 0.00494289717588586 -0.9999856224609727 -0.002079095680684648 -0.00494289717588586 0.9999856224609727 0.002079095680684648 -0.003823753939118948 0.9999822999605859 0.004558362792749011 -0.9999410261363435 0.01049322892617458 0.002799356372282648 -0.9999410263259161 0.01047008550038063 0.002884645539441912 0.9999410263259161 -0.01047008550038063 -0.002884645539441912 0.9999410261363435 -0.01049322892617458 -0.002799356372282648 8.00106323387303e-018 0.9999976415480206 0.002171842166549161 8.001063233873028e-018 0.9999976415480205 0.002171842166550713 -8.00106323387303e-018 -0.9999976415480206 -0.002171842166549161 -8.001063233873028e-018 -0.9999976415480205 -0.002171842166550713 0.004943655417316188 0.9664498920219311 -0.2568076449055063 0.003820960518357111 0.9999823146921165 0.004557473391502327 -0.003820960518357111 -0.9999823146921165 -0.004557473391502327 -0.004943655417316188 -0.9664498920219311 0.2568076449055063 -6.858057229063156e-018 -0.966486022918216 0.2567192386708286 -6.858057229063177e-018 -0.9664860229182158 0.2567192386708294 6.858057229063156e-018 0.966486022918216 -0.2567192386708286 6.858057229063177e-018 0.9664860229182158 -0.2567192386708294 -0.9999410247043286 -0.009399388050470537 0.005440461150824826 -0.9999410247948612 -0.009443327762755185 0.005363813286095222 0.9999410247043286 0.009399388050470537 -0.005440461150824826 0.9999410247948612 0.009443327762755185 -0.005363813286095222 0.003820755532216115 -0.9670893318392673 0.2544083844330651 0.004936272458468085 -0.9664516804695458 0.2568010563292271 -0.004936272458468085 0.9664516804695458 -0.2568010563292271 -0.003820755532216115 0.9670893318392673 -0.2544083844330651 -0.9999410253685213 0.009411196694760312 0.005419885766598052 -0.9999410256117496 0.009366813524850533 0.005496189854195041 0.9999410256117496 -0.009366813524850533 -0.005496189854195041 0.9999410253685213 -0.009411196694760312 -0.005419885766598052 3.429033357918545e-018 0.965360504839634 0.2609197112058935 3.429033357918479e-018 0.9653605048396337 0.2609197112058954 -3.429033357918545e-018 -0.965360504839634 -0.2609197112058935 -3.429033357918479e-018 -0.9653605048396337 -0.2609197112058954 0.004934312890925137 0.9999856557972721 0.002083448102078534 0.003817824858266475 0.9647289711546364 0.263217469838665 -0.003817824858266475 -0.9647289711546364 -0.263217469838665 -0.004934312890925137 -0.9999856557972721 -0.002083448102078534 -9.144078984033087e-018 -0.867110662481631 0.4981155478507642 -9.144078984033078e-018 -0.8671106624816305 0.4981155478507653 9.144078984033087e-018 0.867110662481631 -0.4981155478507642 9.144078984033078e-018 0.8671106624816305 -0.4981155478507653 -0.9999410258568779 -0.007670953598774204 0.007687735634113518 -0.9999410261583621 -0.007733206562220277 0.007625071909699455 0.9999410258568779 0.007670953598774204 -0.007687735634113518 0.9999410261583621 0.007733206562220277 -0.007625071909699455 0.003833002046245444 -0.8682878081597345 0.4960459558311885 0.004943216518040933 -0.8670551900821601 0.4981875770852226 -0.004943216518040933 0.8670551900821601 -0.4981875770852226 -0.003833002046245444 0.8682878081597345 -0.4960459558311885 -0.9999410269360286 0.00768770199564354 0.007670846638225618 -0.9999410272625215 0.00762500257451162 0.007733132154028003 0.9999410272625215 -0.00762500257451162 -0.007733132154028003 0.9999410269360286 -0.00768770199564354 -0.007670846638225618 1.854995159308181e-033 0.8649358526966459 0.501882427187809 0 0.8649358526966459 0.5018824271878087 -1.854995159308181e-033 -0.8649358526966459 -0.501882427187809 -0 -0.8649358526966459 -0.5018824271878087 0.00493577675738415 0.965373481876459 0.2608249961133392 0.003824655911536794 0.8637325256144357 0.5039360040747896 -0.003824655911536794 -0.8637325256144357 -0.5039360040747896 -0.00493577675738415 -0.965373481876459 -0.2608249961133392 -4.000534401751088e-018 -0.7086423925289491 0.7055678277181058 -4.000534401751267e-018 -0.7086423925289535 0.7055678277181015 4.000534401751088e-018 0.7086423925289491 -0.7055678277181058 4.000534401751267e-018 0.7086423925289535 -0.7055678277181015 -0.9999410250620634 -0.005419835344405121 0.009411258293619431 -0.9999410252935886 -0.005496284586928853 0.009366791902600188 0.9999410250620634 0.005419835344405121 -0.009411258293619431 0.9999410252935886 0.005496284586928853 -0.009366791902600188 0.003839165997742563 -0.7103157740092257 0.7038726887712835 0.004956122332517188 -0.7085675751092042 0.7056255581789024 -0.004956122332517188 0.7085675751092042 -0.7056255581789024 -0.003839165997742563 0.7103157740092257 -0.7038726887712835 -0.9999410283762649 0.005440312684114939 0.009399083344507243 -0.9999410286150683 0.005363601809037949 0.00944304335864537 0.9999410286150683 -0.005363601809037949 -0.00944304335864537 0.9999410283762649 -0.005440312684114939 -0.009399083344507243 1.143010565603663e-018 0.7055700372479684 0.708640192578646 1.143010565603663e-018 0.7055700372479702 0.7086401925786443 -1.143010565603663e-018 -0.7055700372479684 -0.708640192578646 -1.143010565603663e-018 -0.7055700372479702 -0.7086401925786443 0.004943198463052079 0.8649741663126888 0.5017920449754302 0.003828663124196161 0.7038699749626737 0.7103185198801497 -0.003828663124196161 -0.7038699749626737 -0.7103185198801497 -0.004943198463052079 -0.8649741663126888 -0.5017920449754302 1.143009736610791e-018 -0.5018818905357418 0.864936164090894 1.143009736610772e-018 -0.5018818905357437 0.8649361640908929 -1.143009736610772e-018 0.5018818905357437 -0.8649361640908929 -1.143009736610791e-018 0.5018818905357418 -0.864936164090894 -0.9999410255099235 -0.002799393181743322 0.01049327880009495 -0.9999410257213326 -0.002884592461343174 0.01047015786420724 0.9999410255099235 0.002799393181743322 -0.01049327880009495 0.9999410257213326 0.002884592461343174 -0.01047015786420724 0.004945242852861994 -0.5017941450757408 0.8649729363054273 0.003824873531433713 -0.5039411440157595 0.863729525783712 -0.003824873531433713 0.5039411440157595 -0.863729525783712 -0.004945242852861994 0.5017941450757408 -0.8649729363054273 -0.9999410274584727 0.002822277484269053 0.01048696119453971 -0.9999410276338193 0.002736849005709989 0.0105095628901078 0.9999410276338193 -0.002736849005709989 -0.0105095628901078 0.9999410274584727 -0.002822277484269053 -0.01048696119453971 3.143276138552537e-018 0.4981161284324288 0.8671103289636725 3.143276138552654e-018 0.4981161284324221 0.8671103289636764 -3.143276138552654e-018 -0.4981161284324221 -0.8671103289636764 -3.143276138552537e-018 -0.4981161284324288 -0.8671103289636725 0.004946838745694068 0.705624759428811 0.7085684354157024 0.003832358652013756 0.4960426150147506 0.8682897195731909 -0.003832358652013756 -0.4960426150147506 -0.8682897195731909 -0.004946838745694068 -0.705624759428811 -0.7085684354157024 1.357324303737726e-018 -0.2609183436732318 0.9653608744582605 1.357324303737725e-018 -0.2609183436732317 0.9653608744582606 -1.357324303737726e-018 0.2609183436732318 -0.9653608744582605 -1.357324303737725e-018 0.2609183436732317 -0.9653608744582606 -0.999941026412113 -7.640534256199236e-005 0.01085991989442496 -0.999941026192585 1.181962340437762e-005 0.01086020244821933 0.999941026412113 7.640534256199236e-005 -0.01085991989442496 0.999941026192585 -1.181962340437762e-005 -0.01086020244821933 0.004940850776478425 -0.2608260194767013 0.9653731794272844 0.003825647232711771 -0.2632147699247492 0.9647296768093704 -0.003825647232711771 0.2632147699247492 -0.9647296768093704 -0.004940850776478425 0.2608260194767013 -0.9653731794272844 3.143278067595227e-018 0.2567179580818204 0.9664863630689782 3.143278067595215e-018 0.2567179580818195 0.9664863630689783 -3.143278067595227e-018 -0.2567179580818204 -0.9664863630689782 -3.143278067595215e-018 -0.2567179580818195 -0.9664863630689783 0.004950182655957406 0.4981916449537949 0.8670528130338454 0.003832480658714482 0.2544130730309406 0.9670880520216109 -0.003832480658714482 -0.2544130730309406 -0.9670880520216109 -0.004950182655957406 -0.4981916449537949 -0.8670528130338454 7.858190309334453e-019 -0.002175164586431004 0.9999976343267127 7.858190309334296e-019 -0.002175164586436765 0.9999976343267127 -7.858190309334453e-019 0.002175164586431004 -0.9999976343267127 -7.858190309334296e-019 0.002175164586436765 -0.9999976343267127 0.004940921873113072 -0.002084718490196847 0.9999856205165454 0.00382758993817654 -0.004556349394965424 0.999982294460985 -0.00382758993817654 0.004556349394965424 -0.999982294460985 -0.004940921873113072 0.002084718490196847 -0.9999856205165454 0.004946892765949841 0.2568047730411928 0.9664506385714813 -0.004946892765949841 -0.2568047730411928 -0.9664506385714813</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID357\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID355\">\r\n\t\t\t\t\t<float_array count=\"1344\" id=\"ID358\">0.04500165965700093 21.74008679032289 -6.710953503131737 20.09757480725083 0.1000627746095763 20.77921931956998 -7.080247872229587 21.0145052715412 -3.540123936114794 10.5072526357706 0.02250082982850047 10.87004339516144 -3.355476751565869 10.04878740362542 0.05003138730478817 10.38960965978499 0.07534380260125198 21.74001127780054 6.933554213792702 20.05073484708986 7.196528629951274 20.99006307575776 0.1303669829364637 20.77914246233489 0.06518349146823182 10.38957123116744 0.03767190130062599 10.87000563890027 3.466777106896351 10.02536742354493 3.598264314975637 10.49503153787888 -12.86224447874705 -2.82602362217035 -10.61044593144633 2.825940115185436 -12.86224447874711 2.825940115185495 -10.61044593144635 -2.826023622170461 -5.305222965723173 -1.41301181108523 -6.431122239373526 -1.413011811085175 -5.305222965723164 1.412970057592718 -6.431122239373552 1.412970057592747 -7.109527114000408 21.00841184581578 -13.09484172604693 18.04624503956301 -6.740198911846502 20.0914898144459 -13.75322553755872 18.85673535189866 -6.876612768779358 9.42836767594933 -3.554763557000204 10.50420592290789 -6.547420863023467 9.023122519781506 -3.370099455923251 10.04574490722295 -4.327947130481451 -2.831682395143322 -10.59673960971082 2.494519512677447 -10.42638530473695 -2.905002536116535 -5.213192652368477 -1.452501268058267 -5.298369804855411 1.247259756338724 -2.163973565240725 -1.415841197571661 7.225755851347815 20.9838244764124 13.29449402849827 17.95567810305388 13.85751213473528 18.80944566772061 6.962746893829194 20.04450223255975 3.481373446914597 10.02225111627987 3.612877925673907 10.4919122382062 6.647247014249137 8.977839051526939 6.928756067367642 9.404722833860303 10.61044593144633 2.825981580630943 12.86224447874709 -2.825992595740977 12.86224447874711 2.825981580630883 10.61044593144633 -2.825992595741062 5.305222965723164 -1.412996297870531 5.305222965723164 1.412990790315471 6.431122239373543 -1.412996297870488 6.431122239373552 1.412990790315442 4.495704241856068 2.664961531154151 10.43221711685011 -2.891879332533704 10.59158413280459 2.507848288547653 5.295792066402295 1.253924144273827 5.216108558425053 -1.445939666266852 2.247852120928034 1.332480765577075 -12.86224447874696 -2.825947916893363 -10.61044593144635 2.826018007123239 -12.86224447874705 2.826018007123342 -10.6104459314464 -2.825947916893278 -5.3052229657232 -1.412973958446639 -6.431122239373481 -1.412973958446681 -5.305222965723173 1.413009003561619 -6.431122239373526 1.413009003561671 -13.77936642589772 18.84494910367416 -18.58612139372733 14.76504876496961 -13.1209585274604 18.03447090017816 -19.48876166620547 15.41386975725847 -9.744380833102735 7.706934878629236 -6.889683212948862 9.42247455183708 -9.293060696863666 7.382524382484806 -6.560479263730202 9.01723545008908 -4.388737822148864 -2.773106452524509 -10.54092074314131 2.636624072452559 -10.48787858864871 -2.764407581528367 -5.243939294324353 -1.382203790764184 -5.270460371570657 1.31831203622628 -2.194368911074432 -1.386553226262254 -4.202713000993107 -2.847316927641705 -4.496732087605833 2.554385096985135 -10.59227251636439 2.389322457437515 -5.296136258182196 1.194661228718757 -2.248366043802917 1.277192548492567 -2.101356500496554 -1.423658463820853 -4.39962318408665 2.65699263316773 -10.49869520647 2.632675389960963 -4.30720657991396 -2.74923276937071 -2.15360328995698 -1.374616384685355 -5.249347603234998 1.316337694980481 -2.199811592043325 1.328496316583865 13.88355461244131 18.79753048361999 18.74912252010727 14.63692954201792 19.57388520321002 15.34696485517103 13.32051131828215 17.94377319846329 6.660255659141074 8.971886599231643 6.941777306220654 9.398765241809993 9.374561260053634 7.318464771008959 9.786942601605007 7.673482427585516 10.61044593144633 2.826024849709162 12.86224447874698 -2.825950054937781 12.86224447874709 2.826024849709241 10.61044593144633 -2.825950054937781 5.305222965723164 -1.41297502746889 5.305222965723164 1.413012424854581 6.43112223937349 -1.41297502746889 6.431122239373543 1.41301242485462 4.442089363119534 2.720080828020509 10.48866032343423 -2.762877897270078 10.54035182778038 2.638199660780892 5.270175913890189 1.319099830390446 5.244330161717117 -1.381438948635039 2.221044681559767 1.360040414010254 4.208186488432563 -2.842408495161039 10.29981134249543 -3.080686268385806 4.491944073349894 2.559656761580416 2.245972036674947 1.279828380790208 5.149905671247714 -1.540343134192903 2.104093244216282 -1.421204247580519 -12.86224447874695 -2.82600768666433 -10.6104459314464 2.825974081103952 -12.86224447874696 2.825974081103872 -10.61044593144626 -2.826007686664317 -5.305222965723129 -1.413003843332158 -6.431122239373472 -1.413003843332165 -5.3052229657232 1.412987040551976 -6.431122239373481 1.412987040551936 -19.50998122430807 15.39728158332552 -22.81065927108942 10.47772735264272 -18.60732806298233 14.74847168761938 -23.89600667514926 10.92066306974483 -11.94800333757463 5.460331534872416 -9.754990612154034 7.698640791662758 -11.40532963554471 5.238863676321358 -9.303664031491167 7.374235843809688 -4.401245236452727 -2.76072003842497 -10.52885884924632 2.666219038494773 -10.50030773036436 -2.734916554904787 -5.250153865182178 -1.367458277452394 -5.26442942462316 1.333109519247386 -2.200622618226364 -1.380360019212485 -4.378491287508375 2.678448496215526 -10.47763817691943 2.68387523224497 -4.32864380715561 -2.728077418327247 -2.164321903577805 -1.364038709163623 -5.238819088459714 1.341937616122485 -2.189245643754187 1.339224248107763 19.5949665952896 15.33027302281989 22.92595043396204 10.32077586296335 23.95620936789129 10.83867888613798 18.77018998656991 14.62024772013757 9.385094993284955 7.310123860068783 9.797483297644799 7.665136511409947 11.46297521698102 5.160387931481677 11.97810468394564 5.41933944306899 10.61044593144633 2.826049461490449 12.86224447874695 -2.825897195613273 12.86224447874698 2.826049461490449 10.6104459314464 -2.825897195613247 5.3052229657232 -1.412948597806623 5.305222965723164 1.413024730745224 6.431122239373472 -1.412948597806637 6.43112223937349 1.413024730745224 4.430291040022829 2.732353085540517 10.50094812248903 -2.734076931910342 10.52887684445967 2.667030953698378 5.264438422229835 1.333515476849189 5.250474061244517 -1.367038465955171 2.215145520011415 1.366176542770259 4.307926494970575 -2.748488817035858 10.405646661895 -2.852414177822029 4.399105344315679 2.657705380890611 2.199552672157839 1.328852690445306 5.202823330947497 -1.426207088911014 2.153963247485287 -1.374244408517929 -10.61044593144626 2.825894995370698 -12.86224447874705 -2.82609222888195 -10.61044593144633 -2.826092228881945 -12.86224447874695 2.82589499537068 -6.431122239373472 1.41294749768534 -5.305222965723129 1.412947497685349 -6.431122239373526 -1.413046114440975 -5.305222965723164 -1.413046114440972 -23.91094160824194 10.90046653479481 -25.480634378765 5.476511141612718 -22.82558978287088 10.45753752207573 -26.67466626827587 5.683381458330269 -13.33733313413794 2.841690729165134 -11.95547080412097 5.450233267397406 -12.7403171893825 2.738255570806359 -11.41279489143544 5.228768761037864 -10.52299040682837 2.680227784306265 -10.5061668122532 -2.720959260215462 -4.407169166769916 -2.754967482411306 -2.203584583384958 -1.377483741205653 -5.253083406126599 -1.360479630107731 -5.261495203414187 1.340113892153132 -10.46739654333959 2.708275296133268 -4.338942229388606 -2.718106829418196 -4.36829736990867 2.688553868555497 -2.184148684954335 1.344276934277748 -2.169471114694303 -1.359053414709098 -5.233698271669796 1.354137648066634 23.97097124693982 10.81840765627475 25.54024123667234 5.301444883669677 26.70589873035085 5.591928469817038 22.94070725863429 10.30051085556732 11.47035362931715 5.150255427783658 11.98548562346991 5.409203828137374 12.77012061833617 2.650722441834839 13.35294936517543 2.795964234908519 12.86224447874695 2.825978074745911 10.61044593144626 -2.826022509369519 12.86224447874705 -2.826022509369585 10.6104459314464 2.825978074745936 5.3052229657232 1.412989037372968 6.431122239373472 1.412989037372956 5.305222965723129 -1.41301125468476 6.431122239373526 -1.413011254684793 4.424277996020746 2.737940602897313 10.50650593923221 -2.720529992983924 10.52299403178044 2.680668671248751 5.261497015890218 1.340334335624375 5.253252969616103 -1.360264996491962 2.212138998010373 1.368970301448656 4.378331935230842 2.678689137250321 4.328980138760369 -2.727871931832631 10.42739215514632 -2.802536852443821 5.21369607757316 -1.40126842622191 2.164490069380185 -1.363935965916316 2.189165967615421 1.339344568625161 -10.61044593144629 -2.825904747399156 -12.86224447874705 2.826069973237946 -12.86224447874705 -2.825904747399128 -10.61044593144633 2.826069973237937 -5.305222965723164 1.413034986618969 -5.305222965723146 -1.412952373699578 -6.431122239373526 1.413034986618973 -6.431122239373526 -1.412952373699564 -26.68240515494901 5.660952007740802 -26.41417937681512 0.1022416071421344 -25.48837270451038 5.454083694207584 -27.63562791825015 0.05894696417114838 -13.81781395912508 0.02947348208557419 -13.34120257747451 2.830476003870401 -13.20708968840756 0.05112080357106722 -12.74418635225519 2.727041847103792 -10.51923878233571 2.689544116394612 -10.51013701455871 -2.711656587826044 -4.411191943823121 -2.751040942821268 -2.20559597191156 -1.375520471410634 -5.255068507279354 -1.355828293913022 -5.259619391167854 1.344772058197306 -10.46055017487655 2.724534513404098 -4.345629980062277 -2.711270388115964 -4.361511748855548 2.695401719720111 -2.180755874427774 1.347700859860056 -2.172814990031139 -1.355635194057982 -5.230275087438276 1.362267256702049 26.71345124453584 5.569463238081498 26.41427114481721 -0.07904357354193686 27.6356806405396 -0.03575631278366894 25.54779300121115 5.278981513532999 12.77389650060558 2.6394907567665 13.35672562226792 2.784731619040749 13.20713557240861 -0.03952178677096843 13.8178403202698 -0.01787815639183447 12.86224447874705 2.825904567781341 10.61044593144638 -2.826080473249799 12.86224447874712 -2.826080473249835 10.61044593144626 2.825904567781381 5.305222965723129 1.412952283890691 6.431122239373526 1.41295228389067 5.305222965723191 -1.4130402366249 6.431122239373561 -1.413040236624918 4.420634634695935 2.742095775502585 10.51058248831772 -2.711008433256825 10.51942773562302 2.690148952244857 5.259713867811509 1.345074476122429 5.255291244158862 -1.355504216628413 2.210317317347967 1.371047887751293 4.368439727116307 2.688941036790968 4.339422289735736 -2.717691662957049 10.43808803086309 -2.778188160359191 5.219044015431544 -1.389094080179595 2.169711144867868 -1.358845831478525 2.184219863558154 1.344470518395484 -10.61044593144636 -2.825999911941941 -12.86224447874705 2.825969956194804 -12.86224447874705 -2.82599991194193 -10.61044593144629 2.825969956194813 -5.305222965723146 1.412984978097406 -5.305222965723181 -1.41299995597097 -6.431122239373525 1.412984978097402 -6.431122239373525 -1.412999955970965 -26.41427583939755 0.07904742262653271 -26.71345594367574 -5.569460127254565 -25.54793886530002 -5.278983127411783 -27.63572438081653 0.03575277887220742 -13.81786219040827 0.01787638943610371 -13.20713791969877 0.03952371131326635 -13.35672797183787 -2.784730063627282 -12.77396943265001 -2.639491563705891 -10.51629208656035 2.697135660162628 -10.51334257328524 -2.704033755330998 -4.414444895310771 -2.747727539370401 -2.207222447655385 -1.373863769685201 -5.256671286642618 -1.352016877665499 -5.258146043280174 1.348567830081314 -10.45521431322128 2.737626225312479 -4.351142237181914 -2.705693483194667 -4.356241648110164 2.700981605799032 -2.178120824055082 1.350490802899516 -2.175571118590957 -1.352846741597333 -5.227607156610642 1.36881311265624 26.41417720728785 -0.1022377360609355 26.68242100433726 -5.660947693454984 27.6355867030183 -0.05895047794281139 25.48830445552332 -5.454082925036311 12.74415222776166 -2.727041462518156 13.20708860364393 -0.05111886803046777 13.34121050216863 -2.830473846727492 13.81779335150915 -0.0294752389714057 12.86224447874712 2.826052632890059 10.61044593144626 -2.82592204733246 12.86224447874695 -2.825922047332492 10.61044593144638 2.826052632890082 5.305222965723191 1.413026316445041 6.431122239373561 1.41302631644503 5.305222965723129 -1.41296102366623 6.431122239373472 -1.412961023666246 4.417217997697089 2.744713837406366 10.51330575549122 -2.704166435394285 10.51606746666478 2.697041471798994 5.258033733332388 1.348520735899497 5.256652877745612 -1.352083217697142 2.208608998848545 1.372356918703183 4.361514299577717 2.695541103625278 4.345847193716227 -2.711126089156569 10.44465127714765 -2.762265554347846 5.222325638573823 -1.381132777173923 2.172923596858114 -1.355563044578285 2.180757149788859 1.347770551812639 -10.6104459314464 -2.825930766618026 -12.86224447874705 2.826041266166101 -12.86224447874691 -2.825930766618044 -10.61044593144636 2.826041266166125 -5.305222965723182 1.413020633083062 -5.3052229657232 -1.412965383309013 -6.431122239373526 1.41302063308305 -6.431122239373455 -1.412965383309022 -25.54038650199819 -5.301448515743764 -23.97101290175442 -10.81841542886811 -22.94071136809923 -10.30052099361089 -26.70590282994665 -5.591927379275652 -13.35295141497332 -2.795963689637826 -12.77019325099909 -2.650724257871882 -11.98550645087721 -5.409207714434054 -11.47035568404961 -5.150260496805447 -10.51363540807846 2.703735574337612 -10.51638582391865 -2.697463741985649 -4.417536498075453 -2.745135983150786 -2.208768249037727 -1.372567991575393 -5.258192911959323 -1.348731870992824 -5.256817704039229 1.351867787168806 -10.45023670146809 2.749406257350436 -4.356258630087857 -2.700933213781691 -4.351338578301006 2.705750945986859 -2.175669289150503 1.352875472993429 -2.178129315043929 -1.350466606890846 -5.225118350734043 1.374703128675218 25.48056850699846 -5.4765109888474 23.91084720343317 -10.90046224804534 26.67468449563205 -5.683377758338963 22.82558998950295 -10.45752259924669 11.41279499475147 -5.228761299623346 12.74028425349923 -2.7382554944237 11.95542360171659 -5.450231124022667 13.33734224781603 -2.841688879169482 12.86224447874695 2.82582712160258 10.61044593144633 -2.826129032011907 12.86224447874705 -2.82612903201192 10.61044593144626 2.825827121602595 5.305222965723129 1.412913560801298 6.431122239373472 1.41291356080129 5.305222965723164 -1.413064516005953 6.431122239373526 -1.41306451600596 4.4146364097076 2.747910046670556 10.51647688693124 -2.696955842399996 10.51353388990205 2.704223658516902 5.256766944951025 1.352111829258451 5.258238443465622 -1.348477921199998 2.2073182048538 1.373955023335278 4.35645153003614 2.70087991621506 4.351538024872898 -2.705808272904777 10.45043595056386 -2.749456155586584 5.225217975281929 -1.374728077793292 2.175769012436449 -1.352904136452389 2.17822576501807 1.35043995810753 -10.6104459314464 2.825966664539571 -12.86224447874705 -2.826015326484667 -10.61044593144629 -2.826015326484686 -12.86224447874691 2.825966664539562 -6.431122239373455 1.412983332269781 -5.3052229657232 1.412983332269786 -6.431122239373526 -1.413007663242334 -5.305222965723146 -1.413007663242343 -22.92594750356043 -10.32078231370186 -19.59503874243783 -15.33026292526798 -18.77019605670036 -14.62023762439384 -23.95624398101459 -10.83868297384684 -11.97812199050729 -5.419341486923419 -11.46297375178022 -5.160391156850932 -9.797519371218915 -7.665131462633992 -9.385098028350182 -7.310118812196918 -10.51025774098094 2.711469903985125 -10.519136567093 -2.689735512526468 -4.420343528520512 -2.741685283211833 -2.210171764260256 -1.370842641605917 -5.2595682835465 -1.344867756263234 -5.25512887049047 1.355734951992562 -10.44496489620798 2.762230408910285 -4.361795749282214 -2.695581765113801 -4.346160956957755 2.711090981816287 -2.173080478478878 1.355545490908144 -2.180897874641107 -1.3477908825569 -5.222482448103991 1.381115204455142 22.81066195964529 -10.47771276851302 19.50999293442922 -15.39728354324274 23.89591475193814 -10.92065912129808 18.60733076095817 -14.74847483060988 9.303665380479083 -7.374237415304939 11.40533097982264 -5.23885638425651 9.754996467214612 -7.698641771621368 11.94795737596907 -5.460329560649042 12.86224447874705 2.826225508708164 10.61044593144644 -2.825782753959264 12.86224447874696 -2.825782753959264 10.61044593144633 2.826225508708167 5.305222965723164 1.413112754354084 6.431122239373526 1.413112754354082 5.305222965723218 -1.412891376979632 6.431122239373481 -1.412891376979632 4.411525367456426 2.750835793495604 10.51953671685669 -2.689732105727344 10.51046993801221 2.711434912783619 5.255234969006104 1.355717456391809 5.259768358428346 -1.344866052863672 2.205762683728213 1.375417896747802 4.351468090508527 2.705965589278195 4.356556746050451 -2.700699764144963 10.4555289323171 -2.737359948082401 5.227764466158549 -1.3686799740412 2.178278373025226 -1.350349882072481 2.175734045254263 1.352982794639098 -10.61044593144629 2.825979287301716 -12.86224447874705 -2.825992100767848 -10.61044593144633 -2.825992100767798 -12.86224447874705 2.825979287301734 -6.431122239373526 1.412989643650867 -5.305222965723146 1.412989643650858 -6.431122239373526 -1.412996050383924 -5.305222965723164 -1.412996050383899 -18.74913042428991 -14.63692005507998 -13.88360005709505 -18.79752453568512 -13.32055676393909 -17.94376725013277 -19.57395918633143 -15.34695536581981 -9.786979593165713 -7.673477682909906 -9.374565212144953 -7.31846002753999 -6.941800028547526 -9.398762267842558 -6.660278381969544 -8.971883625066383 -10.50600177760153 2.720649408174218 -10.52258142340395 -2.680531625677441 -4.423865910935081 -2.737831791075885 -2.211932955467541 -1.368915895537943 -5.261290711701975 -1.34026581283872 -5.253000888800764 1.360324704087109 -10.43779947743348 2.778124667649001 -4.368203459203839 -2.688987647016699 -4.339133801438258 2.717625466155597 -2.169566900719129 1.358812733077798 -2.184101729601919 -1.344493823508349 -5.218899738716739 1.389062333824501 18.5861204811644 -14.76505058173662 13.77936550939809 -18.84494501053288 19.48876976388837 -15.41387039274213 13.12090955371273 -18.03447626008716 6.560454776856362 -9.01723813004358 9.2930602405822 -7.382525290868308 6.889682754699045 -9.422472505266441 9.744384881944184 -7.706935196371063 12.86224447874696 2.825791620706781 10.61044593144629 -2.826150515554888 12.86224447874705 -2.826150515554875 10.61044593144644 2.825791620706781 5.305222965723218 1.412895810353391 6.431122239373481 1.412895810353391 5.305222965723146 -1.413075257777444 6.431122239373526 -1.413075257777438 4.407346409174058 2.754875420631839 10.52313453471532 -2.680309961522778 10.50634358496391 2.720891158259654 5.253171792481954 1.360445579129827 5.261567267357662 -1.340154980761389 2.203673204587029 1.37743771031592 4.345862822087661 2.711004199695371 4.36172004203437 -2.695664125246008 10.46075794161088 -2.724776304844964 5.230378970805441 -1.362388152422482 2.180860021017185 -1.347832062623004 2.17293141104383 1.355502099847685 -12.86224447874695 -2.825976183967639 -10.61044593144633 2.825990416027972 -12.86224447874705 2.825990416027897 -10.61044593144638 -2.825976183967614 -5.305222965723191 -1.412988091983807 -6.431122239373472 -1.412988091983819 -5.305222965723164 1.412995208013986 -6.431122239373526 1.412995208013948 -13.29454013808028 -17.95567278723111 -7.225792948281573 -20.98382388441372 -6.962728423460445 -20.04450400512787 -13.85755824385552 -18.80944035209259 -6.928779121927762 -9.404720176046295 -6.647270069040138 -8.977836393615556 -3.612896474140786 -10.49191194220686 -3.481364211730222 -10.02225200256394 -4.430171035067845 -2.732341685834769 -10.50077901065932 2.734066663135995 -10.52875653309172 -2.667019882103738 -5.264378266545858 -1.333509941051869 -5.25038950532966 1.367033331567997 -2.215085517533923 -1.366170842917385 -4.328518097775763 2.728095874626715 -10.42692928344672 2.802797985646838 -4.378004242621763 -2.678465056738759 -2.189002121310882 -1.339232528369379 -5.21346464172336 1.401398992823419 -2.164259048887882 1.364047937313357 13.09479295026678 -18.04624987728669 7.109488848458013 -21.00842022412065 13.75322481972926 -18.85673073724269 6.740151636101647 -20.09147929057193 3.370075818050824 -10.04573964528597 6.547396475133392 -9.023124938643347 3.554744424229007 -10.50421011206032 6.876612409864629 -9.428365368621344 10.61044593144629 2.826043208161488 12.862244478747 -2.82594132410737 12.86224447874705 2.826043208161514 10.61044593144629 -2.825941324107447 5.305222965723146 -1.412970662053724 5.305222965723146 1.413021604080744 6.431122239373499 -1.412970662053685 6.431122239373526 1.413021604080757 4.401303486300014 2.760784370702243 10.52890011716264 -2.666196886704789 10.50036585142223 2.734971001562761 5.250182925711115 1.367485500781381 5.264450058581321 -1.333098443352395 2.200651743150007 1.380392185351122 4.338997338335714 2.717948747950908 4.368342022762667 -2.688678959368056 10.46744109647829 -2.708407758160335 5.233720548239147 -1.354203879080168 2.184171011381333 -1.344339479684028 2.169498669167857 1.358974373975454 -10.61044593144636 -2.826003796516174 -12.86224447874694 2.825979469314216 -12.86224447874705 -2.826003796516174 -10.61044593144638 2.825979469314233 -5.30522296572319 1.412989734657116 -5.305222965723181 -1.413001898258087 -6.431122239373472 1.412989734657108 -6.431122239373525 -1.413001898258087 -0.1303295216944846 -20.7791541441071 -7.196566260968286 -20.990062942279 -0.07540959329038582 -21.74001114445558 -6.933536276452181 -20.05073707708879 -3.466768138226091 -10.0253685385444 -0.06516476084724229 -10.38957707205355 -3.598283130484143 -10.4950314711395 -0.03770479664519291 -10.87000557222779 -4.442085949347874 -2.719981088299503 -10.48865422912526 2.762966583080145 -10.54034897368759 -2.638160548550109 -5.270174486843797 -1.319080274275055 -5.24432711456263 1.381483291540072 -2.221042974673937 -1.359990544149752 -4.39903924405151 -2.657516153234907 -4.307800004700079 2.748704857416722 -10.40551982253659 2.852631559912603 -5.202759911268297 1.426315779956301 -2.153900002350039 1.374352428708361 -2.199519622025755 -1.328758076617453 6.71090713895255 -20.09756546865577 -0.04506717194452021 -21.74008690407053 7.080210519352136 -21.01451483490556 -0.1000250353029242 -20.77923124592329 -0.05001251765146209 -10.38961562296164 3.355453569476275 -10.04878273432789 -0.0225335859722601 -10.87004345203527 3.540105259676068 -10.50725741745278 12.862244478747 2.825946327616524 10.61044593144629 -2.826051856133897 12.86224447874703 -2.826051856133904 10.61044593144629 2.82594632761644 5.305222965723146 1.41297316380822 6.431122239373499 1.412973163808262 5.305222965723146 -1.413025928066949 6.431122239373517 -1.413025928066952 4.388634374310819 2.773181238710972 10.54086775703753 -2.636542126831748 10.48777562266277 2.764482314003959 5.243887811331383 1.38224115700198 5.270433878518763 -1.318271063415874 2.19431718715541 1.386590619355486 4.328497143600641 2.728049645213909 4.378387600123009 -2.678476127130542 10.47753497153215 -2.683902847387294 5.238767485766075 -1.341951423693647 2.189193800061505 -1.339238063565271 2.164248571800321 1.364024822606955 -10.61044593144629 -2.825941511668355 -12.86224447874705 2.826010708320168 -12.86224447874705 -2.8259415116683 -10.61044593144636 2.826010708320168 -5.305222965723182 1.413005354160084 -5.305222965723146 -1.412970755834178 -6.431122239373526 1.413005354160084 -6.431122239373526 -1.41297075583415 -4.495704144051983 -2.664967449207419 -10.4322800455154 2.891766839544133 -10.59158817915015 -2.507978354408405 -5.295794089575077 -1.253989177204203 -5.216140022757697 1.445883419772067 -2.247852072025991 -1.332483724603709 -4.208366568860864 2.842306276570779 -10.30000224773623 3.080400759006474 -4.491947727247955 -2.559759000559964 -2.245973863623977 -1.279879500279982 -5.150001123868115 1.540200379503237 -2.104183284430432 1.421153138285389 12.86224447874703 2.82603951587651 10.61044593144629 -2.825944977148527 12.86224447874705 -2.825944977148583 10.61044593144629 2.826039515876513 5.305222965723146 1.413019757938257 6.431122239373517 1.413019757938255 5.305222965723146 -1.412972488574264 6.431122239373526 -1.412972488574291 4.32761740458788 2.831720453845512 10.59673143731553 -2.494209468150155 10.42605207004991 2.905243259815798 5.213026035024954 1.452621629907899 5.298365718657763 -1.247104734075077 2.16380870229394 1.415860226922756 4.399491681506321 -2.656972876258102 10.4985636977804 -2.632587427674483 4.306952304418521 2.749261829601255 2.153476152209261 1.374630914800627 5.249281848890198 -1.316293713837241 2.199745840753161 -1.328486438129051 4.496740578981384 -2.554476881970431 10.59228532888561 -2.389536449472878 4.203006248744854 2.847276271266106 2.101503124372427 1.423638135633053 5.296142664442805 -1.194768224736439 2.248370289490692 -1.277238440985215</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"672\" source=\"#ID358\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID354\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID352\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID353\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID354\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID355\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 0 8 8 9 9 10 8 9 0 8 2 11 12 16 13 17 14 18 13 17 12 16 15 19 3 24 20 25 1 26 20 25 3 24 21 27 24 32 25 33 26 34 9 38 30 39 31 40 30 39 9 38 8 41 13 46 34 47 14 48 34 47 13 46 35 49 38 54 39 55 25 56 42 60 15 61 12 62 15 61 42 60 43 63 21 68 46 69 20 70 46 69 21 68 47 71 50 76 26 77 51 78 24 82 38 83 25 84 24 88 26 89 50 90 31 94 54 95 55 96 54 95 31 94 30 97 35 102 58 103 34 104 58 103 35 102 59 105 62 110 63 111 39 112 62 116 39 117 38 118 66 122 43 123 42 124 43 123 66 122 67 125 47 130 70 131 46 132 70 131 47 130 71 133 74 138 51 139 75 140 50 144 51 145 74 146 55 150 78 151 79 152 78 151 55 150 54 153 59 158 82 159 58 160 82 159 59 158 83 161 86 166 87 167 63 168 86 172 63 173 62 174 67 178 90 179 91 180 90 179 67 178 66 181 71 186 94 187 70 188 94 187 71 186 95 189 75 194 98 195 99 196 75 200 99 201 74 202 79 206 102 207 103 208 102 207 79 206 78 209 82 214 106 215 107 216 106 215 82 214 83 217 110 222 111 223 87 224 86 228 110 229 87 230 114 234 90 235 115 236 90 235 114 234 91 237 95 242 118 243 94 244 118 243 95 242 119 245 98 250 122 251 123 252 98 256 123 257 99 258 103 262 126 263 127 264 126 263 103 262 102 265 107 270 130 271 131 272 130 271 107 270 106 273 134 278 135 279 111 280 110 284 134 285 111 286 138 290 115 291 139 292 115 291 138 290 114 293 118 298 142 299 143 300 142 299 118 298 119 301 122 306 146 307 147 308 122 312 147 313 123 314 126 318 150 319 127 320 150 319 126 318 151 321 131 326 154 327 155 328 154 327 131 326 130 329 158 334 159 335 135 336 134 340 158 341 135 342 162 346 139 347 163 348 139 347 162 346 138 349 143 354 166 355 167 356 166 355 143 354 142 357 146 362 170 363 171 364 146 368 171 369 147 370 151 374 174 375 150 376 174 375 151 374 175 377 155 382 178 383 179 384 178 383 155 382 154 385 182 390 183 391 159 392 158 396 182 397 159 398 162 402 186 403 187 404 186 403 162 402 163 405 167 410 190 411 191 412 190 411 167 410 166 413 170 418 194 419 195 420 170 424 195 425 171 426 175 430 198 431 174 432 198 431 175 430 199 433 179 438 202 439 203 440 202 439 179 438 178 441 206 446 207 447 183 448 182 452 206 453 183 454 187 458 210 459 211 460 210 459 187 458 186 461 191 466 214 467 215 468 214 467 191 466 190 469 194 474 218 475 219 476 194 480 219 481 195 482 199 486 222 487 198 488 222 487 199 486 223 489 203 494 226 495 227 496 226 495 203 494 202 497 230 502 231 503 207 504 206 508 230 509 207 510 234 514 211 515 210 516 211 515 234 514 235 517 215 522 238 523 239 524 238 523 215 522 214 525 242 530 218 531 243 532 219 536 218 537 242 538 223 542 246 543 222 544 246 543 223 542 247 545 226 550 250 551 227 552 250 551 226 550 251 553 254 558 255 559 231 560 230 564 254 565 231 566 258 570 234 571 259 572 234 571 258 570 235 573 262 578 238 579 263 580 238 579 262 578 239 581 266 586 243 587 267 588 266 592 242 593 243 594 247 598 263 599 246 600 263 599 247 598 262 601 250 606 270 607 271 608 270 607 250 606 251 609 274 614 275 615 255 616 254 620 274 621 255 622 278 626 259 627 279 628 259 627 278 626 258 629 282 634 267 635 283 636 266 640 267 641 282 642 271 646 278 647 279 648 278 647 271 646 270 649 286 654 283 655 275 656 286 660 275 661 274 662 282 666 283 667 286 668</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID354\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID355\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 7 12 5 13 10 14 11 15 10 14 5 13 16 20 17 21 18 22 19 23 18 22 17 21 22 28 4 29 23 30 6 31 23 30 4 29 27 35 28 36 29 37 10 42 11 43 32 44 33 45 32 44 11 43 36 50 18 51 37 52 19 53 37 52 18 51 28 57 40 58 41 59 44 64 45 65 16 66 17 67 16 66 45 65 48 72 22 73 49 74 23 75 49 74 22 73 52 79 27 80 53 81 28 85 41 86 29 87 53 91 27 92 29 93 32 98 33 99 56 100 57 101 56 100 33 99 60 106 36 107 61 108 37 109 61 108 36 107 40 113 64 114 65 115 41 119 40 120 65 121 68 126 69 127 44 128 45 129 44 128 69 127 72 134 48 135 73 136 49 137 73 136 48 135 76 141 52 142 77 143 77 147 52 148 53 149 56 154 57 155 80 156 81 157 80 156 57 155 84 162 60 163 85 164 61 165 85 164 60 163 64 169 88 170 89 171 65 175 64 176 89 177 69 182 68 183 92 184 93 185 92 184 68 183 96 190 72 191 97 192 73 193 97 192 72 191 100 197 101 198 76 199 77 203 100 204 76 205 80 210 81 211 104 212 105 213 104 212 81 211 84 218 85 219 108 220 109 221 108 220 85 219 88 225 112 226 113 227 88 231 113 232 89 233 93 238 116 239 92 240 117 241 92 240 116 239 120 246 96 247 121 248 97 249 121 248 96 247 124 253 125 254 101 255 100 259 124 260 101 261 104 266 105 267 128 268 129 269 128 268 105 267 108 274 109 275 132 276 133 277 132 276 109 275 112 281 136 282 137 283 112 287 137 288 113 289 116 294 140 295 117 296 141 297 117 296 140 295 120 302 121 303 144 304 145 305 144 304 121 303 148 309 149 310 125 311 124 315 148 316 125 317 152 322 128 323 153 324 129 325 153 324 128 323 132 330 133 331 156 332 157 333 156 332 133 331 136 337 160 338 161 339 136 343 161 344 137 345 140 350 164 351 141 352 165 353 141 352 164 351 144 358 145 359 168 360 169 361 168 360 145 359 172 365 173 366 149 367 148 371 172 372 149 373 176 378 152 379 177 380 153 381 177 380 152 379 156 386 157 387 180 388 181 389 180 388 157 387 160 393 184 394 185 395 160 399 185 400 161 401 165 406 164 407 188 408 189 409 188 408 164 407 168 414 169 415 192 416 193 417 192 416 169 415 196 421 197 422 173 423 172 427 196 428 173 429 200 434 176 435 201 436 177 437 201 436 176 435 180 442 181 443 204 444 205 445 204 444 181 443 184 449 208 450 209 451 184 455 209 456 185 457 188 462 189 463 212 464 213 465 212 464 189 463 192 470 193 471 216 472 217 473 216 472 193 471 220 477 221 478 197 479 196 483 220 484 197 485 224 490 200 491 225 492 201 493 225 492 200 491 204 498 205 499 228 500 229 501 228 500 205 499 208 505 232 506 233 507 208 511 233 512 209 513 236 518 237 519 213 520 212 521 213 520 237 519 216 526 217 527 240 528 241 529 240 528 217 527 244 533 221 534 245 535 245 539 221 540 220 541 248 546 224 547 249 548 225 549 249 548 224 547 252 554 228 555 253 556 229 557 253 556 228 555 232 561 256 562 257 563 232 567 257 568 233 569 236 574 260 575 237 576 261 577 237 576 260 575 241 582 264 583 240 584 265 585 240 584 264 583 268 589 244 590 269 591 244 595 245 596 269 597 264 602 248 603 265 604 249 605 265 604 248 603 252 610 253 611 272 612 273 613 272 612 253 611 256 617 276 618 277 619 256 623 277 624 257 625 260 630 280 631 261 632 281 633 261 632 280 631 284 637 268 638 285 639 285 643 268 644 269 645 272 650 273 651 280 652 281 653 280 652 273 651 276 657 284 658 287 659 277 663 276 664 287 665 287 669 284 670 285 671</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID359\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID360\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID364\">-0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID364\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID361\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID365\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.357324008988185e-018 0.002095735273219623 -0.999997803944421 1.428762637497407e-018 0.2608439886717864 -0.9653809681021234 1.357324008988168e-018 0.002095735273213525 -0.999997803944421 1.428762637497411e-018 0.2608439886717847 -0.9653809681021238 -1.428762637497411e-018 -0.2608439886717847 0.9653809681021238 -1.357324008988185e-018 -0.002095735273219623 0.999997803944421 -1.428762637497407e-018 -0.2608439886717864 0.9653809681021234 -1.357324008988168e-018 -0.002095735273213525 0.999997803944421 5.000666824631841e-019 -0.2567918074288612 -0.9664667441963116 5.000666824631774e-019 -0.2567918074288629 -0.9664667441963111 -5.000666824631774e-019 0.2567918074288629 0.9664667441963111 -5.000666824631841e-019 0.2567918074288612 0.9664667441963116 -2.286020591985056e-018 -0.4981832167412074 -0.8670717862768821 -2.286020591985096e-018 -0.4981832167412094 -0.867071786276881 2.286020591985056e-018 0.4981832167412074 0.8670717862768821 2.286020591985096e-018 0.4981832167412094 0.867071786276881 -6.858055771993613e-018 -0.7056226073427964 -0.7085878463583424 -6.858055771993708e-018 -0.7056226073428004 -0.7085878463583386 6.858055771993708e-018 0.7056226073428004 0.7085878463583386 6.858055771993613e-018 0.7056226073427964 0.7085878463583424 -8.001070223829628e-018 -0.8649741646300232 -0.5018163952309587 -8.001070223829614e-018 -0.8649741646300241 -0.5018163952309572 8.001070223829628e-018 0.8649741646300232 0.5018163952309587 8.001070223829614e-018 0.8649741646300241 0.5018163952309572 -5.715045332456655e-019 -0.9653796265175301 -0.2608489538121138 -5.715045332456722e-019 -0.96537962651753 -0.260848953812114 5.715045332456655e-019 0.9653796265175301 0.2608489538121138 5.715045332456722e-019 0.96537962651753 0.260848953812114 2.286022406958772e-018 -0.9999977996832321 -0.002097767550154592 2.286022406958698e-018 -0.9999977996832321 -0.002097767550151775 -2.286022406958772e-018 0.9999977996832321 0.002097767550154592 -2.286022406958698e-018 0.9999977996832321 0.002097767550151775 -5.1435407892633e-018 -0.9664655322690486 0.2567963686189982 -5.143540789263351e-018 -0.9664655322690482 0.2567963686189999 5.1435407892633e-018 0.9664655322690486 -0.2567963686189982 5.143540789263351e-018 0.9664655322690482 -0.2567963686189999 -8.001071306872786e-018 -0.8670714378610992 0.498183823147125 -8.001071306872821e-018 -0.8670714378611013 0.4981838231471211 8.001071306872786e-018 0.8670714378610992 -0.498183823147125 8.001071306872821e-018 0.8670714378611013 -0.4981838231471211 -5.715047892338878e-018 -0.708586537670636 0.7056239215275657 -5.715047892338916e-018 -0.7085865376706391 0.7056239215275628 5.715047892338878e-018 0.708586537670636 -0.7056239215275657 5.715047892338916e-018 0.7085865376706391 -0.7056239215275628 -3.714781434290872e-018 -0.5018152321358096 0.8649748394008253 -3.714781434290843e-018 -0.5018152321358057 0.8649748394008278 3.714781434290872e-018 0.5018152321358096 -0.8649748394008253 3.714781434290843e-018 0.5018152321358057 -0.8649748394008278 -1.357324087236494e-018 -0.2608455302381308 0.9653805515726887 -1.357324087236548e-018 -0.2608455302381353 0.9653805515726874 1.357324087236548e-018 0.2608455302381353 -0.9653805515726874 1.357324087236494e-018 0.2608455302381308 -0.9653805515726887 5.00066824342e-019 -0.002098394659843867 0.9999977983675022 5.00066824341991e-019 -0.0020983946598471 0.9999977983675022 -5.00066824341991e-019 0.0020983946598471 -0.9999977983675022 -5.00066824342e-019 0.002098394659843867 -0.9999977983675022 1.285886092699162e-018 0.2567924015669348 0.9664665863326504 1.285886092699151e-018 0.2567924015669318 0.966466586332651 -1.285886092699162e-018 -0.2567924015669348 -0.9664665863326504 -1.285886092699151e-018 -0.2567924015669318 -0.966466586332651 -2.000267021076344e-018 0.4981821975151394 0.8670723718807943 -2.000267021076362e-018 0.4981821975151401 0.867072371880794 2.000267021076344e-018 -0.4981821975151394 -0.8670723718807943 2.000267021076362e-018 -0.4981821975151401 -0.867072371880794 -4.000536746314618e-018 0.7056247595919799 0.7085857031092008 -4.00053674631458e-018 0.7056247595919819 0.7085857031091989 4.00053674631458e-018 -0.7056247595919819 -0.7085857031091989 4.000536746314618e-018 -0.7056247595919799 -0.7085857031092008 4.204657661605452e-033 0.8649761689145237 0.5018129404568533 -1.21193073775685e-032 0.8649761689145231 0.5018129404568542 1.21193073775685e-032 -0.8649761689145231 -0.5018129404568542 -4.204657661605452e-033 -0.8649761689145237 -0.5018129404568533 2.286019992337455e-018 0.9653804430920453 0.2608459317210191 2.286019992337455e-018 0.9653804430920455 0.2608459317210175 -2.286019992337455e-018 -0.9653804430920455 -0.2608459317210175 -2.286019992337455e-018 -0.9653804430920453 -0.2608459317210191 4.000536773496116e-018 0.9999978094868985 0.002093088962490353 4.00053677349617e-018 0.9999978094868985 0.002093088962486192 -4.00053677349617e-018 -0.9999978094868985 -0.002093088962486192 -4.000536773496116e-018 -0.9999978094868985 -0.002093088962490353 7.429555745771746e-018 0.9664663526289716 -0.256793281134948 7.429555745771715e-018 0.9664663526289721 -0.2567932811349458 -7.429555745771715e-018 -0.9664663526289721 0.2567932811349458 -7.429555745771746e-018 -0.9664663526289716 0.256793281134948 8.001073065904097e-018 0.8670738131462032 -0.498179689024054 8.001073065904117e-018 0.8670738131462042 -0.4981796890240521 -8.001073065904117e-018 -0.8670738131462042 0.4981796890240521 -8.001073065904097e-018 -0.8670738131462032 0.498179689024054 2.286020065195515e-018 0.7085865942299627 -0.705623864730766 2.286020065195486e-018 0.7085865942299621 -0.7056238647307667 -2.286020065195486e-018 -0.7085865942299621 0.7056238647307667 -2.286020065195515e-018 -0.7085865942299627 0.705623864730766 -5.715046975223761e-019 0.5018142835855971 -0.8649753897016226 -5.715046975224879e-019 0.5018142835856045 -0.8649753897016184 5.715046975223761e-019 -0.5018142835855971 0.8649753897016226 5.715046975224879e-019 -0.5018142835856045 0.8649753897016184</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID365\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID363\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID366\">27.57592606178605 5.763926047288433 27.54501506067751 -5.854844720127505 28.53273433475351 -0.04706980378245257 27.52202780079212 -0.04706980378244907 26.59974397119641 5.558144204924854 24.73998964194365 11.18211185132277 23.86467605623466 10.78457791436985 20.2179874206012 15.8382655546944 19.50326776451671 15.27607259060124 14.31814331951038 19.41505375671623 13.81280957653182 18.72650799807924 7.442587205730431 21.66875226978101 7.180994110594869 20.90077510041938 0.05980164344527855 22.44574392129143 0.05980164344524746 21.65067841029049 -7.326991595764483 21.69310909336947 -7.065454819865953 20.9251390127225 -13.70921071502846 18.77357233764413 -14.21458200416499 19.46211927773357 -19.41873183844568 15.34262262532737 -20.1333673911358 15.90482031523034 -23.80492209641044 10.86610404027797 -24.68017861195908 11.26362616270643 -26.5687879146979 5.649065240668816 -27.54503608652599 5.854853581020853 -27.52206684879615 0.04706611174358209 26.56880593685397 -5.64906110558527 24.68013205472282 -11.26361907399176 23.80482748009175 -10.8660993144682 20.13340493729391 -15.90483331120719 19.4187408495236 -15.34262380677985 14.21454295616055 -19.46214172533002 13.70921071502838 -18.77356879328679 7.327029141922628 -21.6931232707988 7.065417273707942 -20.92514846434208 -0.05986734922203147 -22.44576046162567 -0.05986734922203591 -21.65067841029053 -7.442633762966584 -21.66874754397123 -7.181031656752985 -20.90077510041939 -13.81285613376801 -18.72650327226948 -14.3181898767466 -19.4150537567162 -19.50334285683298 -15.27606432043412 -20.21802346491327 -15.83825019581263 -23.86471360239281 -10.78458382163206 -24.74002718810177 -11.18212484729964 -26.59974397119644 -5.55814125129378 -27.57601917625835 -5.763931954550666 -28.53282744922561 0.04706611174357161 -14.2664137246128 0.0235330558717858 -13.77251804326299 2.927426790510427 -13.78800958812917 -2.881965977275333 -13.76103342439808 0.02353305587179104 -13.29987198559822 -2.77907062564689 -12.37001359405088 -5.591062423649821 -11.9323568011964 -5.39229191081603 -10.10901173245664 -7.919125097906314 -9.751671428416488 -7.638032160217059 -7.159094938373302 -9.707526878358099 -6.906428066884002 -9.363251636134741 -3.721316881483292 -10.83437377198561 -3.590515828376493 -10.4503875502097 -0.02993367461101796 -10.82533920514526 -0.02993367461101574 -11.22288023081283 3.532708636853971 -10.46257423217104 3.663514570961314 -10.8465616353994 6.854605357514191 -9.386784396643396 7.107271478080275 -9.731070862665009 9.709370424761799 -7.671311903389926 10.06670246864696 -7.952416655603594 11.90241374004588 -5.433049657234099 12.34006602736141 -5.631809536995879 13.28440296842699 -2.824530552792635 13.76101390039606 -0.02353490189122454 13.77250753033876 -2.927422360063753 -13.28439395734895 2.824532620334408 -12.34008930597954 5.631813081353213 -11.90246104820522 5.433052020138987 -10.0666836955679 7.95241015761517 -9.709365919222838 7.671311312663686 -7.107291002082496 9.731059638866784 -6.854605357514229 9.386786168822065 -3.663495797882241 10.84655454668474 -3.532727409932976 10.46256950636125 0.02990082172262373 10.82533920514525 0.02990082172263927 11.22287196064572 3.590497055297435 10.45038755020969 3.721293602865216 10.8343761348905 6.906404788265909 9.363253999039621 7.159071659755192 9.707526878358115 9.751633882258355 7.638036295300619 10.1089937103006 7.919132777347199 11.93233802811733 5.392288957184925 12.36999482097183 5.591055925661383 13.2998719855982 2.779072102462427 13.78796303089303 2.881963023644217 14.26636716737676 -0.02353490189122628 12.86224447874703 2.929743190342062 15.27491705001244 -2.92979227890684 15.2749170500126 2.929743190342119 12.86224447874696 -2.929792278906809 6.431122239373481 -1.464896139453405 6.431122239373517 1.464871595171031 7.637458525006222 -1.46489613945342 7.637458525006302 1.46487159517106 -15.27491705001257 -2.929731850741423 -12.86224447874703 2.929750167992304 -15.2749170500126 2.929750167992251 -12.86224447874705 -2.92973185074145 -6.431122239373526 -1.464865925370725 -7.637458525006284 -1.464865925370711 -6.431122239373517 1.464875083996152 -7.637458525006302 1.464875083996125 -12.86224447874709 -2.929852871110114 -15.27491705001257 2.929721881732551 -15.27491705001264 -2.929852871110166 -12.86224447874705 2.929721881732527 -6.431122239373525 1.464860940866263 -6.431122239373543 -1.464926435555057 -7.637458525006283 1.464860940866276 -7.637458525006319 -1.464926435555083 -15.27491705001234 -2.929677555424733 -12.86224447874709 2.929823033031287 -15.27491705001264 2.929823033031245 -12.86224447874695 -2.929677555424782 -6.431122239373472 -1.464838777712391 -7.637458525006169 -1.464838777712367 -6.431122239373543 1.464911516515643 -7.63745852500632 1.464911516515623 -12.86224447874695 2.929697425929892 -15.2749170500125 -2.929855373115951 -12.86224447874691 -2.929855373116002 -15.27491705001234 2.929697425929927 -7.637458525006169 1.464848712964963 -6.431122239373472 1.464848712964946 -7.637458525006249 -1.464927686557976 -6.431122239373455 -1.464927686558001 -12.86224447874709 -2.929773314130085 -15.2749170500125 2.929742869038943 -15.27491705001257 -2.929773314130076 -12.86224447874691 2.92974286903891 -6.431122239373455 1.464871434519455 -6.431122239373543 -1.464886657065043 -7.637458525006249 1.464871434519471 -7.637458525006284 -1.464886657065038 -12.86224447874709 2.929540399646413 -15.27491705001243 -2.930000664061414 -12.86224447874695 -2.930000664061421 -15.27491705001257 2.929540399646405 -7.637458525006284 1.464770199823202 -6.431122239373543 1.464770199823206 -7.637458525006213 -1.465000332030707 -6.431122239373472 -1.465000332030711 -12.86224447874695 -2.929581822242644 -15.27491705001243 2.929960781087207 -15.27491705001232 -2.929581822242648 -12.86224447874695 2.9299607810872 -6.431122239373472 1.4649803905436 -6.431122239373472 -1.464790911121322 -7.637458525006213 1.464980390543604 -7.63745852500616 -1.464790911121324 -12.86224447874698 -2.929795632432642 -15.27491705001232 2.929734008047276 -15.27491705001264 -2.929795632432599 -12.86224447874695 2.929734008047279 -6.431122239373472 1.46486700402364 -6.43112223937349 -1.464897816216321 -7.63745852500616 1.464867004023638 -7.63745852500632 -1.4648978162163 -12.86224447874698 2.929854278460752 -15.27491705001246 -2.929664031079308 -12.86224447874705 -2.929664031079275 -15.27491705001264 2.929854278460836 -7.63745852500632 1.464927139230418 -6.43112223937349 1.464927139230376 -7.637458525006231 -1.464832015539654 -6.431122239373526 -1.464832015539638 -12.86224447874709 -2.929746866326544 -15.27491705001246 2.929799501924643 -15.2749170500126 -2.929746866326596 -12.86224447874705 2.929799501924695 -6.431122239373526 1.464899750962348 -6.431122239373543 -1.464873433163272 -7.637458525006231 1.464899750962321 -7.637458525006302 -1.464873433163298 -15.2749170500125 -2.92977425536968 -12.86224447874709 2.929742564000939 -15.2749170500126 2.929742564000883 -12.86224447874695 -2.929774255369613 -6.431122239373472 -1.464887127684806 -7.637458525006249 -1.46488712768484 -6.431122239373543 1.46487128200047 -7.637458525006302 1.464871282000442 -15.27491705001246 -2.929781790797626 -12.86224447874695 2.929741567953739 -15.2749170500125 2.92974156795366 -12.86224447874693 -2.929781790797601 -6.431122239373464 -1.4648908953988 -7.637458525006231 -1.464890895398813 -6.431122239373472 1.464870783976869 -7.637458525006249 1.46487078397683 12.86224447874707 2.929790045178396 15.27491705001246 -2.929772829085463 15.27491705001257 2.929790045178342 12.86224447874693 -2.929772829085486 6.431122239373464 -1.464886414542743 6.431122239373535 1.464895022589198 7.637458525006231 -1.464886414542731 7.637458525006284 1.464895022589171 12.86224447874705 2.929757835224654 15.27491705001257 -2.929758053031452 15.2749170500126 2.929757835224672 12.86224447874707 -2.9297580530314 6.431122239373535 -1.4648790265157 6.431122239373526 1.464878917612327 7.637458525006284 -1.464879026515726 7.637458525006302 1.464878917612336 15.2749170500125 2.929803538710692 12.86224447874705 -2.929750667340226 15.2749170500126 -2.929750667340216 12.86224447874705 2.929803538710713 6.431122239373526 1.464901769355357 7.637458525006249 1.464901769355346 6.431122239373526 -1.464875333670113 7.637458525006302 -1.464875333670108 15.27491705001246 2.929593042074761 12.86224447874705 -2.92993527925525 15.2749170500125 -2.929935279255278 12.86224447874705 2.929593042074726 6.431122239373526 1.464796521037363 7.637458525006231 1.464796521037381 6.431122239373526 -1.464967639627625 7.637458525006249 -1.464967639627639 15.27491705001232 2.929842954384168 12.86224447874705 -2.9296825896425 15.27491705001246 -2.929682589642478 12.86224447874696 2.929842954384198 6.431122239373481 1.464921477192099 7.63745852500616 1.464921477192084 6.431122239373526 -1.46484129482125 7.637458525006231 -1.464841294821239 15.27491705001232 -2.929740962824745 12.86224447874705 2.92978013852247 12.86224447874696 -2.929740962824737 15.2749170500125 2.929780138522509 7.637458525006249 1.464890069261254 7.63745852500616 -1.464870481412373 6.431122239373526 1.464890069261235 6.431122239373481 -1.464870481412369 15.2749170500125 -2.9299561138927 12.862244478747 2.929584292566244 12.86224447874705 -2.929956113892731 15.27491705001248 2.92958429256624 7.63745852500624 1.46479214628312 7.637458525006249 -1.46497805694635 6.431122239373499 1.464792146283122 6.431122239373526 -1.464978056946366 15.27491705001248 -2.929568316003488 12.86224447874695 2.929938126060063 12.862244478747 -2.929568316003465 15.27491705001243 2.929938126060052 7.637458525006213 1.464969063030026 7.63745852500624 -1.464784158001744 6.431122239373472 1.464969063030032 6.431122239373499 -1.464784158001733 15.27491705001243 -2.929777731100098 12.86224447874698 2.929762392715941 12.86224447874695 -2.929777731100067 15.27491705001244 2.929762392715948 7.637458525006222 1.464881196357974 7.637458525006213 -1.464888865550049 6.43112223937349 1.464881196357971 6.431122239373472 -1.464888865550033 12.86224447874698 2.929710500811676 15.27491705001244 -2.929833042641431 15.27491705001246 2.929710500811587 12.86224447874698 -2.929833042641436 6.43112223937349 -1.464916521320718 6.43112223937349 1.464855250405838 7.637458525006222 -1.464916521320715 7.637458525006231 1.464855250405794 15.27491705001244 2.92982644805314 12.86224447874698 -2.929692188965083 15.27491705001246 -2.929692188965185 12.86224447874696 2.929826448053173 6.431122239373481 1.464913224026587 7.637458525006222 1.46491322402657 6.43112223937349 -1.464846094482541 7.637458525006231 -1.464846094482593</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID366\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID362\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID360\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID361\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID362\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID363\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 1 1 26 26 27 27 26 26 1 1 3 3 27 27 26 26 28 28 27 27 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 25 25 46 46 25 25 24 24 46 46 24 24 47 47 96 96 97 97 98 98 97 97 96 96 99 99 104 104 96 105 98 106 96 105 104 104 105 107 108 112 104 113 109 114 104 113 108 112 105 115 112 120 108 121 109 122 108 121 112 120 113 123 113 128 116 129 117 130 116 129 113 128 112 131 120 136 116 137 121 138 116 137 120 136 117 139 120 144 124 145 125 146 124 145 120 144 121 147 128 152 124 153 129 154 124 153 128 152 125 155 132 160 129 161 133 162 129 161 132 160 128 163 132 168 136 169 137 170 136 169 132 168 133 171 140 176 136 177 141 178 136 177 140 176 137 179 144 184 140 185 141 186 140 185 144 184 145 187 148 192 145 193 144 194 145 193 148 192 149 195 152 200 148 201 153 202 148 201 152 200 149 203 156 208 153 209 157 210 153 209 156 208 152 211 160 216 156 217 157 218 156 217 160 216 161 219 164 224 161 225 160 226 161 225 164 224 165 227 168 232 165 233 164 234 165 233 168 232 169 235 168 240 172 241 169 242 172 241 168 240 173 243 173 248 176 249 172 250 176 249 173 248 177 251 177 256 180 257 176 258 180 257 177 256 181 259 181 264 184 265 180 266 184 265 181 264 185 267 188 272 185 273 189 274 185 273 188 272 184 275 97 280 188 281 189 282 188 281 97 280 99 283</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID362\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID363\" />\r\n\t\t\t\t\t<p>48 48 49 49 50 50 49 49 51 51 50 50 51 51 52 52 50 50 50 50 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 58 58 60 60 59 59 60 60 61 61 59 59 59 59 61 61 62 62 61 61 63 63 62 62 62 62 63 63 64 64 63 63 65 65 64 64 64 64 65 65 66 66 65 65 67 67 66 66 66 66 67 67 68 68 67 67 69 69 68 68 68 68 69 69 70 70 69 69 71 71 70 70 72 72 73 73 71 71 70 70 71 71 73 73 51 51 49 49 74 74 49 49 75 75 74 74 74 74 75 75 76 76 75 75 77 77 76 76 76 76 77 77 78 78 77 77 79 79 78 78 78 78 79 79 80 80 79 79 81 81 80 80 80 80 81 81 82 82 82 82 81 81 83 83 81 81 84 84 83 83 83 83 84 84 85 85 84 84 86 86 85 85 85 85 86 86 87 87 86 86 88 88 87 87 87 87 88 88 89 89 88 88 90 90 89 89 89 89 90 90 91 91 90 90 92 92 91 91 91 91 92 92 93 93 92 92 94 94 93 93 93 93 94 94 72 72 72 72 94 94 73 73 95 95 73 73 94 94 100 100 101 101 102 102 103 103 102 102 101 101 106 108 107 109 101 110 103 111 101 110 107 109 106 116 110 117 107 118 111 119 107 118 110 117 114 124 115 125 110 126 111 127 110 126 115 125 115 132 114 133 118 134 119 135 118 134 114 133 119 140 122 141 118 142 123 143 118 142 122 141 123 148 122 149 126 150 127 151 126 150 122 149 127 156 130 157 126 158 131 159 126 158 130 157 130 164 134 165 131 166 135 167 131 166 134 165 135 172 134 173 138 174 139 175 138 174 134 173 139 180 142 181 138 182 143 183 138 182 142 181 146 188 147 189 142 190 143 191 142 190 147 189 150 196 151 197 146 198 147 199 146 198 151 197 150 204 154 205 151 206 155 207 151 206 154 205 154 212 158 213 155 214 159 215 155 214 158 213 162 220 163 221 158 222 159 223 158 222 163 221 166 228 167 229 162 230 163 231 162 230 167 229 170 236 171 237 166 238 167 239 166 238 171 237 174 244 171 245 175 246 170 247 175 246 171 245 178 252 174 253 179 254 175 255 179 254 174 253 182 260 178 261 183 262 179 263 183 262 178 261 186 268 182 269 187 270 183 271 187 270 182 269 187 276 190 277 186 278 191 279 186 278 190 277 100 284 102 285 190 286 191 287 190 286 102 285</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID367\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID368\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID372\">-0.763745852500616 -1.436485524582849 0.3818088725044516 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.7637458525006249 -1.28872021610141 0.7405885836107022</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID372\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID369\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID373\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762080882819e-018 0.5017398950377737 -0.8650185418402798 5.715050599695061e-019 0.7085275831213713 -0.7056831186560921 5.715050599694446e-019 0.7085275831213729 -0.7056831186560907 1.428762080881852e-018 0.5017398950377386 -0.8650185418403001 -1.428762080881852e-018 -0.5017398950377386 0.8650185418403001 -1.428762080882819e-018 -0.5017398950377737 0.8650185418402798 -5.715050599695061e-019 -0.7085275831213713 0.7056831186560921 -5.715050599694446e-019 -0.7085275831213729 0.7056831186560907 -9.286952941388407e-019 0.2607625543991058 -0.9654029677928556 -9.286952941388763e-019 0.2607625543991116 -0.9654029677928541 9.286952941388763e-019 -0.2607625543991116 0.9654029677928541 9.286952941388407e-019 -0.2607625543991058 0.9654029677928556 -7.14381254244789e-020 0.002012725556721015 -0.9999979744658651 -7.143812542448248e-020 0.002012725556727595 -0.9999979744658651 7.14381254244789e-020 -0.002012725556721015 0.9999979744658651 7.143812542448248e-020 -0.002012725556727595 0.9999979744658651 -8.572571838953785e-019 -0.2568741755083748 -0.9664448551039488 -8.572571838953487e-019 -0.2568741755083704 -0.9664448551039501 8.572571838953487e-019 0.2568741755083704 0.9664448551039501 8.572571838953785e-019 0.2568741755083748 0.9664448551039488 -2.000267235225416e-018 -0.4982546428953812 -0.8670307438800519 -2.000267235225424e-018 -0.4982546428953847 -0.8670307438800501 2.000267235225424e-018 0.4982546428953847 0.8670307438800501 2.000267235225416e-018 0.4982546428953812 0.8670307438800519 1.045111957692991e-006 -0.7056819897722565 -0.7085287074706123 1.045111957693077e-006 -0.7056819897722642 -0.7085287074706047 -1.045111957692991e-006 0.7056819897722565 0.7085287074706123 -1.045111957693077e-006 0.7056819897722642 0.7085287074706047 1.703558339410631e-006 -0.8650181793754788 -0.5017405199373778 1.703555472269594e-006 -0.8650186691821249 -0.5017396754926639 -1.703558339410631e-006 0.8650181793754788 0.5017405199373778 -1.703555472269594e-006 0.8650186691821249 0.5017396754926639 6.584446236329073e-007 -0.9654035292207907 -0.2607604758540074 6.584446236328554e-007 -0.9654035292207932 -0.2607604758539974 -6.584446236329073e-007 0.9654035292207907 0.2607604758540074 -6.584446236328554e-007 0.9654035292207932 0.2607604758539974 -6.286553020284208e-018 -0.999997973793477 -0.002013059596886011 -6.286553020284232e-018 -0.999997973793477 -0.002013059596885226 6.286553020284208e-018 0.999997973793477 0.002013059596886011 6.286553020284232e-018 0.999997973793477 0.002013059596885226 -8.001067536444891e-018 -0.9664454482419091 0.2568719439185513 -8.001067536444849e-018 -0.9664454482419086 0.2568719439185535 8.001067536444891e-018 0.9664454482419091 -0.2568719439185513 8.001067536444849e-018 0.9664454482419086 -0.2568719439185535 -6.858064911194342e-018 -0.8670284530084556 0.4982586293018563 -6.858064911194386e-018 -0.8670284530084529 0.4982586293018606 6.858064911194342e-018 0.8670284530084556 -0.4982586293018563 6.858064911194386e-018 0.8670284530084529 -0.4982586293018606 -1.714512912291224e-018 -0.7085272435711623 0.7056834595747947 -1.714512912290773e-018 -0.7085272435711557 0.7056834595748014 1.714512912291224e-018 0.7085272435711623 -0.7056834595747947 1.714512912290773e-018 0.7085272435711557 -0.7056834595748014 2.000267850227171e-018 -0.50174509130913 0.8650155278069827 2.000267850227025e-018 -0.5017450913091236 0.8650155278069864 -2.000267850227171e-018 0.50174509130913 -0.8650155278069827 -2.000267850227025e-018 0.5017450913091236 -0.8650155278069864 -9.286958702615267e-019 -0.2607603696967824 0.9654035578946233 -9.286958702616151e-019 -0.260760369696751 0.9654035578946318 9.286958702616151e-019 0.260760369696751 -0.9654035578946318 9.286958702615267e-019 0.2607603696967824 -0.9654035578946233 -9.286950770806969e-019 -0.002010277094332024 0.9999979793909607 -9.286950770806418e-019 -0.002010277094311723 0.9999979793909607 9.286950770806969e-019 0.002010277094332024 -0.9999979793909607 9.286950770806418e-019 0.002010277094311723 -0.9999979793909607 5.715048573591528e-019 0.2568730418156993 0.9664451564306947 5.715048573588878e-019 0.2568730418156698 0.9664451564307025 -5.715048573591528e-019 -0.2568730418156993 -0.9664451564306947 -5.715048573588878e-019 -0.2568730418156698 -0.9664451564307025 2.000267221612142e-018 0.4982543657066462 0.8670309031714313 2.000267221612171e-018 0.4982543657066573 0.8670309031714246 -2.000267221612171e-018 -0.4982543657066573 -0.8670309031714246 -2.000267221612142e-018 -0.4982543657066462 -0.8670309031714313 4.572040930296596e-018 0.7056830209675885 0.70852768041768 4.572040930296914e-018 0.7056830209676014 0.7085276804176672 -4.572040930296596e-018 -0.7056830209675885 -0.70852768041768 -4.572040930296914e-018 -0.7056830209676014 -0.7085276804176672 -1.14300938579175e-018 0.8650179182246978 0.5017409701730664 -1.143009385792095e-018 0.8650179182247008 0.5017409701730615 1.143009385792095e-018 -0.8650179182247008 -0.5017409701730615 1.14300938579175e-018 -0.8650179182246978 -0.5017409701730664 -2.857524059864703e-018 0.9654022143532335 0.2607653437899165 -2.857524059865316e-018 0.9654022143532302 0.2607653437899289 2.857524059865316e-018 -0.9654022143532302 -0.2607653437899289 2.857524059864703e-018 -0.9654022143532335 -0.2607653437899165 8.572576927432837e-018 0.9999979724130936 0.002013745192837731 8.572576927432834e-018 0.9999979724130936 0.002013745192837834 -8.572576927432834e-018 -0.9999979724130936 -0.002013745192837834 -8.572576927432837e-018 -0.9999979724130936 -0.002013745192837731 1.028708566471013e-017 0.9664447927409161 -0.2568744101384328 1.028708566471029e-017 0.9664447927409177 -0.2568744101384266 -1.028708566471029e-017 -0.9664447927409177 0.2568744101384266 -1.028708566471013e-017 -0.9664447927409161 0.2568744101384328 1.714514848940942e-018 0.8670306548123118 -0.4982547978853128 1.714514848941008e-018 0.8670306548123127 -0.4982547978853114 -1.714514848941008e-018 -0.8670306548123127 0.4982547978853114 -1.714514848940942e-018 -0.8670306548123118 0.4982547978853128</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID373\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID371\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID374\">28.72971049165699 6.007126260736706 28.69872439823219 -6.09804847793303 29.72717074101186 -0.04706980378243859 28.53273433475355 -0.04706980378241763 27.57592606178616 5.76392604728844 25.7744043220282 11.65192704880838 24.73998964194376 11.18211185132279 21.062597259995 16.50268132861221 20.2179874206012 15.8382655546944 14.91535251156158 20.22880748247864 14.31814331951052 19.41505375671623 7.751723499126264 22.57635112608661 7.442587205730467 21.66875226978099 0.05980164344520748 23.38537904207242 0.05980164344520748 22.44574392129145 -7.636156424240395 22.60071976419947 -7.326991595764447 21.69310909336947 -14.21458200416507 19.46211927773357 -14.81179119621629 20.27586473332886 -20.13336739113572 15.90482031523034 -20.97801477668778 16.56924081495793 -24.68017861195898 11.26362616270643 -25.71460380496778 11.73344963035913 -27.54503608652592 5.854853581020838 -28.69876344623657 6.098035481956177 -28.53282744922561 0.0470661117435786 27.5450150606774 -5.854844720127502 25.71453772372937 -11.73342718276273 24.68013205472289 -11.26361907399176 20.97795770652724 -16.56924435931522 20.13340493729391 -15.90483331120722 14.81174313713382 -20.27586000751904 14.21454295616059 -19.46214172533004 7.636146662239294 -22.60070086096038 7.327029141922557 -21.6931232707988 -0.05986734922217803 -23.38535305011864 -0.05986734922200039 -22.44576046162567 -7.442633762966477 -21.6687475439712 -7.751770807285503 -22.57637002932572 -14.31818987674653 -19.41505375671621 -14.91540807987584 -20.22880748247863 -20.21802346491317 -15.83825019581262 -21.06255070275907 -16.50266951408773 -24.74002718810198 -11.18212484729966 -25.77444337003271 -11.65193295607063 -27.57601917625835 -5.76393195455067 -28.72973752489099 -6.007128032915357 -29.72717074101174 0.0470661117435751 -14.86358537050587 0.02353305587178755 -14.34938172311829 3.049017740978088 -14.3648687624455 -3.003564016457678 -14.2664137246128 0.0235330558717893 -13.78800958812917 -2.881965977275335 -12.88722168501636 -5.825966478035316 -12.37001359405099 -5.591062423649832 -10.53127535137954 -8.251334757043864 -10.10901173245659 -7.919125097906307 -7.45770403993792 -10.11440374123932 -7.159094938373267 -9.707526878358106 -3.875885403642752 -11.28818501466286 -3.721316881483239 -10.8343737719856 -0.02993367461108901 -11.69267652505932 -0.0299336746110002 -11.22288023081284 3.663514570961278 -10.8465616353994 3.818073331119647 -11.30035043048019 7.107271478080293 -9.731070862665019 7.405871568566908 -10.13793000375952 10.06670246864696 -7.952416655603611 10.48897885326362 -8.28462217965761 12.34006602736145 -5.631809536995879 12.85726886186469 -5.866713591381362 13.7725075303387 -2.927422360063751 14.26636716737677 -0.02353490189120882 14.34936219911609 -3.049024238966515 -13.77251804326296 2.927426790510419 -12.85730190248389 5.866724815179567 -12.34008930597949 5.631813081353215 -10.48900738834389 8.284620407478963 -10.06668369556786 7.952410157615169 -7.405895598108147 10.13793236666443 -7.107291002082534 9.731059638866787 -3.818078212120197 11.30035988209974 -3.663495797882224 10.84655454668473 0.02990082172260374 11.22287196064572 0.02990082172260374 11.69268952103621 3.721293602865234 10.83437613489049 3.875861749563132 11.28817556304331 7.159071659755262 9.707526878358113 7.45767625578079 10.11440374123932 10.1089937103006 7.919132777347201 10.5312986299975 8.251340664306103 12.36999482097188 5.591055925661395 12.8872021610141 5.825963524404191 13.78796303089308 2.88196302364422 14.36485524582849 3.003563130368353 14.86358537050593 -0.0235349018912193 16.15957962910908 3.052369011605017 15.2749170500125 -3.052489088735269 16.15957962910919 -3.05248908873528 15.27491705001234 3.052369011605174 7.637458525006169 1.526184505802587 8.079789814554541 1.526184505802509 7.637458525006249 -1.526244544367635 8.079789814554594 -1.52624454436764 16.1595796291089 3.052393434432479 15.27491705001234 -3.05240474671089 16.15957962910908 -3.052404746711059 15.27491705001257 3.052393434432461 7.637458525006284 1.52619671721623 8.079789814554452 1.526196717216239 7.637458525006169 -1.526202373355445 8.079789814554541 -1.526202373355529 15.27491705001246 3.052465505274848 16.1595796291089 -3.052357776085077 16.15957962910905 3.05246550527482 15.27491705001257 -3.052357776085104 7.637458525006284 -1.526178888042552 7.637458525006231 1.526232752637424 8.079789814554452 -1.526178888042539 8.079789814554523 1.52623275263741 -16.15957962910892 -3.05237354033085 -15.27491705001246 3.052416952581463 -16.15957962910905 3.052416952581491 -15.27491705001257 -3.052373540330827 -7.637458525006284 -1.526186770165414 -8.079789814554461 -1.526186770165425 -7.637458525006231 1.526208476290732 -8.079789814554523 1.526208476290746 -16.1595796291089 -3.052465806413212 -15.27491705001257 3.052375467693421 -16.15957962910892 3.052375467693405 -15.27491705001257 -3.052465806413236 -7.637458525006284 -1.526232903206618 -8.079789814554452 -1.526232903206606 -7.637458525006284 1.526187733846711 -8.079789814554461 1.526187733846702 -15.2749170500126 -3.052461191049092 -16.1595796291089 3.052369534568117 -16.15957962910917 -3.052461191049134 -15.27491705001257 3.052369534568098 -7.637458525006284 1.526184767284049 -7.637458525006302 -1.526230595524546 -8.079789814554452 1.526184767284059 -8.079789814554585 -1.526230595524567 -15.2748497760961 -3.052427910611382 -16.15952474692822 3.052390554465293 -16.15951235518956 -3.05243276531964 -15.27486216783468 3.05239166573236 -7.637431083917338 1.52619583286618 -7.637424888048051 -1.526213955305691 -8.079762373464108 1.526195277232647 -8.079756177594778 -1.52621638265982 -15.27488067987029 3.052479826373591 -16.15953903824096 -3.052340909406815 -15.27487645914545 -3.052340530900251 -16.15954325896589 3.052475085430112 -8.079771629482943 1.526237542715056 -7.637440339935146 1.526239913186796 -8.079769519120479 -1.526170454703408 -7.637438229572727 -1.526170265450126 -15.2749170500125 3.052418165791669 -16.15957962910889 -3.052394161251984 -15.2749170500123 -3.052394161251988 -16.15957962910889 3.052418165791704 -8.079789814554443 1.526209082895852 -7.637458525006249 1.526209082895835 -8.079789814554443 -1.526197080625992 -7.637458525006151 -1.526197080625994 -15.2749170500123 3.052374063043222 -16.15957962910892 -3.052455040458447 -15.27491705001232 -3.052455040458483 -16.15957962910888 3.052374063043219 -8.079789814554442 1.52618703152161 -7.63745852500615 1.526187031521611 -8.079789814554459 -1.526227520229223 -7.637458525006159 -1.526227520229242 -15.27491705001232 3.052318411927153 -16.15957962910915 -3.052488191674192 -15.27491705001257 -3.052488191674224 -16.15957962910892 3.05231841192716 -8.079789814554461 1.52615920596358 -7.63745852500616 1.526159205963577 -8.079789814554577 -1.526244095837096 -7.637458525006284 -1.526244095837112 -15.27491705001232 -3.052197806521551 -16.15957962910915 3.05265172018527 -16.1595796291089 -3.052197806521591 -15.27491705001257 3.052651720185259 -7.637458525006284 1.52632586009263 -7.63745852500616 -1.526098903260776 -8.079789814554577 1.526325860092635 -8.079789814554452 -1.526098903260796 -15.27491705001257 -3.0525561576722 -16.1595796291089 3.052245515360641 -16.15957962910915 -3.052556157672223 -15.27491705001232 3.05224551536068 -7.63745852500616 1.52612275768034 -7.637458525006284 -1.5262780788361 -8.079789814554452 1.526122757680321 -8.079789814554577 -1.526278078836111 -16.15957962910908 -3.052423131493118 -15.27491705001257 3.052388317079474 -16.15957962910915 3.052388317079447 -15.27491705001248 -3.052423131493245 -7.63745852500624 -1.526211565746623 -8.079789814554541 -1.526211565746559 -7.637458525006284 1.526194158539737 -8.079789814554577 1.526194158539723 -15.27491705001243 -3.052249109402259 -16.15957962910908 3.052553877330226 -16.15957962910915 -3.052249109402342 -15.27491705001248 3.052553877330089 -7.63745852500624 1.526276938665044 -7.637458525006213 -1.52612455470113 -8.079789814554541 1.526276938665113 -8.079789814554577 -1.526124554701171 15.27491705001246 3.052416535812357 16.15957962910915 -3.05241669005392 16.15957962910915 3.052416535812224 15.27491705001243 -3.052416690054004 7.637458525006213 -1.526208345027002 7.637458525006231 1.526208267906179 8.079789814554577 -1.52620834502696 8.079789814554577 1.526208267906112 16.15957962910905 3.052438862169345 15.27491705001246 -3.052369155945408 16.15957962910915 -3.052369155945526 15.27491705001246 3.052438862169398 7.637458525006231 1.526219431084699 8.079789814554523 1.526219431084672 7.637458525006231 -1.526184577972704 8.079789814554577 -1.526184577972763 15.27491705001264 3.05243197721078 16.15957962910905 -3.052388094537172 16.15957962910919 3.052431977210855 15.27491705001246 -3.052388094537107 7.637458525006231 -1.526194047268554 7.63745852500632 1.52621598860539 8.079789814554523 -1.526194047268586 8.079789814554594 1.526215988605428 16.15957962910919 -3.052517161824061 15.27491705001257 3.052318676844949 15.27491705001264 -3.052517161824126 16.15957962910915 3.052318676844975 8.079789814554577 1.526159338422487 8.079789814554594 -1.526258580912031 7.637458525006284 1.526159338422474 7.63745852500632 -1.526258580912063 16.15957962910915 -3.052362761715934 15.27491705001246 3.05243305502342 15.27491705001257 -3.052362761715977 16.1595796291089 3.052433055023369 8.07978981455445 1.526216527511684 8.079789814554575 -1.526181380857967 7.63745852500623 1.52621652751171 7.637458525006283 -1.526181380857988 16.15957962910901 3.052501452363778 15.27491705001246 -3.052324167367494 16.1595796291089 -3.052324167367532 15.27491705001232 3.052501452363784 7.63745852500616 1.526250726181892 8.079789814554506 1.526250726181889 7.637458525006231 -1.526162083683747 8.079789814554452 -1.526162083683766 16.15957962910922 3.052376857360143 15.27491705001232 -3.052456883429417 16.15957962910901 -3.052456883429418 15.27491705001232 3.052376857360129 7.637458525006159 1.526188428680064 8.07978981455461 1.526188428680072 7.637458525006159 -1.526228441714708 8.079789814554504 -1.526228441714709 16.15957962910922 -3.052351123981224 15.2749170500125 3.052455255490937 15.27491705001232 -3.052351123981252 16.15957962910908 3.052455255490922 8.079789814554541 1.526227627745461 8.079789814554612 -1.526175561990612 7.637458525006249 1.526227627745469 7.63745852500616 -1.526175561990626 16.15957962910919 3.052429041414678 15.2749170500125 -3.052393678245672 16.15957962910908 -3.052393678245677 15.2749170500125 3.052429041414679 7.637458525006248 1.52621452070734 8.079789814554593 1.526214520707339 7.637458525006248 -1.526196839122836 8.079789814554539 -1.526196839122838</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID374\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID370\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID368\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID369\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID370\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID371\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 1 1 26 26 27 27 26 26 1 1 3 3 27 27 26 26 28 28 27 27 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 35 35 37 37 38 38 38 38 37 37 39 39 38 38 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 25 25 46 46 25 25 24 24 46 46 24 24 47 47 96 96 97 97 98 98 97 97 96 96 99 99 104 104 99 105 96 106 99 105 104 104 105 107 108 112 104 113 109 114 104 113 108 112 105 115 112 120 108 121 109 122 108 121 112 120 113 123 116 128 113 129 112 130 113 129 116 128 117 131 120 136 116 137 121 138 116 137 120 136 117 139 124 144 121 145 125 146 121 145 124 144 120 147 124 152 128 153 129 154 128 153 124 152 125 155 129 160 132 161 133 162 132 161 129 160 128 163 133 168 136 169 137 170 136 169 133 168 132 171 137 176 140 177 141 178 140 177 137 176 136 179 144 184 140 185 145 186 140 185 144 184 141 187 148 192 145 193 149 194 145 193 148 192 144 195 152 200 148 201 149 202 148 201 152 200 153 203 156 208 152 209 157 210 152 209 156 208 153 211 160 216 157 217 161 218 157 217 160 216 156 219 164 224 160 225 161 226 160 225 164 224 165 227 168 232 164 233 169 234 164 233 168 232 165 235 169 240 172 241 168 242 172 241 169 240 173 243 173 248 176 249 172 250 176 249 173 248 177 251 180 256 176 257 177 258 176 257 180 256 181 259 184 264 181 265 180 266 181 265 184 264 185 267 184 272 188 273 185 274 188 273 184 272 189 275 98 280 188 281 189 282 188 281 98 280 97 283</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID370\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID371\" />\r\n\t\t\t\t\t<p>48 48 49 49 50 50 49 49 51 51 50 50 51 51 52 52 50 50 50 50 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 58 58 60 60 59 59 59 59 60 60 61 61 60 60 62 62 61 61 62 62 63 63 61 61 61 61 63 63 64 64 63 63 65 65 64 64 64 64 65 65 66 66 65 65 67 67 66 66 66 66 67 67 68 68 67 67 69 69 68 68 68 68 69 69 70 70 69 69 71 71 70 70 72 72 73 73 71 71 70 70 71 71 73 73 51 51 49 49 74 74 49 49 75 75 74 74 74 74 75 75 76 76 75 75 77 77 76 76 76 76 77 77 78 78 77 77 79 79 78 78 78 78 79 79 80 80 79 79 81 81 80 80 80 80 81 81 82 82 82 82 81 81 83 83 81 81 84 84 83 83 83 83 84 84 85 85 84 84 86 86 85 85 85 85 86 86 87 87 86 86 88 88 87 87 87 87 88 88 89 89 88 88 90 90 89 89 89 89 90 90 91 91 90 90 92 92 91 91 91 91 92 92 93 93 92 92 94 94 93 93 93 93 94 94 72 72 72 72 94 94 73 73 95 95 73 73 94 94 100 100 101 101 102 102 103 103 102 102 101 101 106 108 107 109 100 110 101 111 100 110 107 109 106 116 110 117 107 118 111 119 107 118 110 117 114 124 115 125 110 126 111 127 110 126 115 125 118 132 119 133 114 134 115 135 114 134 119 133 118 140 122 141 119 142 123 143 119 142 122 141 122 148 126 149 123 150 127 151 123 150 126 149 127 156 126 157 130 158 131 159 130 158 126 157 130 164 131 165 134 166 135 167 134 166 131 165 134 172 135 173 138 174 139 175 138 174 135 173 138 180 139 181 142 182 143 183 142 182 139 181 143 188 146 189 142 190 147 191 142 190 146 189 146 196 150 197 147 198 151 199 147 198 150 197 154 204 155 205 150 206 151 207 150 206 155 205 154 212 158 213 155 214 159 215 155 214 158 213 158 220 162 221 159 222 163 223 159 222 162 221 166 228 167 229 162 230 163 231 162 230 167 229 166 236 170 237 167 238 171 239 167 238 170 237 174 244 171 245 175 246 170 247 175 246 171 245 178 252 174 253 179 254 175 255 179 254 174 253 182 260 183 261 179 262 178 263 179 262 183 261 186 268 187 269 182 270 183 271 182 270 187 269 190 276 187 277 191 278 186 279 191 278 187 277 102 284 103 285 191 286 190 287 191 286 103 285</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID375\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID376\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID380\">0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035627 -0.3578613696232667 1.324001740206996 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151409 -0.35666972965487 1.31956378430982 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 0.6831636119784472 1.189256688460091 0.848191442515148 0.680868640605695 1.185278447723705 0.848191442515148 0.680868640605695 1.185278447723705 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035627 -0.6883468591155371 1.186265836591588 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.6860480580346522 1.182286995116669 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151387 0.9644406560028058 0.9686694797989038 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 0.6883464085616424 -1.186264860391474 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151387 0.6860518126504815 -1.182286394378136 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151333 -0.6808676644055873 -1.185277922077488 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.3508928026645748 -1.321112338057901 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035609 0.002993367461099794 -1.371508293416812 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151387 0.002993367461098018 -1.366914445870862 -0.2249169753035609 0.002993367461099794 -1.371508293416812</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID380\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID377\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID381\">-0.00428062881210491 -0.2567048492765375 -0.9664803653333486 -0.004280981952864871 0.002183299616824533 -0.999988453131486 -0.004280628810128404 -0.2567062461107217 -0.9664799943220406 -0.004280981954898488 0.002184853357166072 -0.9999884497379504 0.004280981954898488 -0.002184853357166072 0.9999884497379504 0.00428062881210491 0.2567048492765375 0.9664803653333486 0.004280981952864871 -0.002183299616824533 0.999988453131486 0.004280628810128404 0.2567062461107217 0.9664799943220406 -0.004281638786373565 0.2609241043035803 -0.9653498222730853 -0.00428163879072645 0.2609252439511864 -0.9653495142373459 0.00428163879072645 -0.2609252439511864 0.9653495142373459 0.004281638786373565 -0.2609241043035803 0.9653498222730853 -0.004280369372364794 -0.4981020763274863 -0.8671078364288279 -0.00428036937316088 -0.4981009455189371 -0.867108486010355 0.00428036937316088 0.4981009455189371 0.867108486010355 0.004280369372364794 0.4981020763274863 0.8671078364288279 -0.004282256411797012 0.5018836420376206 -0.864924547076262 -0.004282256413127314 0.5018847979083912 -0.8649238763662763 0.004282256413127314 -0.5018847979083912 0.8649238763662763 0.004282256411797012 -0.5018836420376206 0.864924547076262 -0.004279848666279009 -0.705555224291424 -0.7086420170794786 -0.004279848671315645 -0.7055541584054808 -0.708643078320874 0.004279848671315645 0.7055541584054808 0.708643078320874 0.004279848666279009 0.705555224291424 0.7086420170794786 -0.004281892798924736 0.7086451305096495 -0.7055520848236652 -0.0042818928041386 0.7086441543526577 -0.7055530652586102 0.004281892798924736 -0.7086451305096495 0.7055520848236652 0.0042818928041386 -0.7086441543526577 0.7055530652586102 -0.004279390712496793 -0.8649233212950592 -0.5018857789328697 -0.004279390712642355 -0.8649226644398191 -0.5018869109206303 0.004279390712496793 0.8649233212950592 0.5018857789328697 0.004279390712642355 0.8649226644398191 0.5018869109206303 -0.004281359113397748 0.8671102266169878 -0.4980979069022258 -0.004281359112962919 0.8671110173025061 -0.4980965304403946 0.004281359113397748 -0.8671102266169878 0.4980979069022258 0.004281359112962919 -0.8671110173025061 0.4980965304403946 -0.004280028371695556 -0.965348902363104 -0.2609275341229588 -0.004280028364445989 -0.9653485192918171 -0.260928951360894 0.004280028371695556 0.965348902363104 0.2609275341229588 0.004280028364445989 0.9653485192918171 0.260928951360894 -0.004281468576927181 0.9664802791478765 -0.2567051597554433 -0.004281468578594852 0.9664806579291112 -0.2567037336614381 0.004281468576927181 -0.9664802791478765 0.2567051597554433 0.004281468578594852 -0.9664806579291112 0.2567037336614381 -0.004280447389466799 -0.9999884506049243 -0.002185503811303777 -0.00428044738673919 -0.9999884540002806 -0.002183949701340417 0.004280447389466799 0.9999884506049243 0.002185503811303777 0.00428044738673919 0.9999884540002806 0.002183949701340417 -0.004280716988099828 0.9999884543797312 0.002183247421708556 -0.004280716977420427 0.9999884509864663 0.002184801100054285 0.004280716988099828 -0.9999884543797312 -0.002183247421708556 0.004280716977420427 -0.9999884509864663 -0.002184801100054285 -0.004279849309618837 -0.9664798642304419 0.2567067488925707 -0.004279849305227373 -0.9664794597692433 0.256708271651063 0.004279849309618837 0.9664798642304419 -0.2567067488925707 0.004279849305227373 0.9664794597692433 -0.256708271651063 -0.004279550911469715 0.9653495572584627 0.2609251190377931 -0.004279550914307764 0.9653499365637356 0.2609237157108637 0.004279550911469715 -0.9653495572584627 -0.2609251190377931 0.004279550914307764 -0.9653499365637356 -0.2609237157108637 -0.004279366945403445 -0.8671083352607096 0.4981012165614008 -0.004279366943950962 -0.8671074945846607 0.4981026800306053 0.004279366945403445 0.8671083352607096 -0.4981012165614008 0.004279366943950962 0.8671074945846607 -0.4981026800306053 -0.004280137578717258 0.8649244175304505 0.5018838833653839 -0.004280137569418133 0.8649251493016499 0.5018826222613267 0.004280137578717258 -0.8649244175304505 -0.5018838833653839 0.004280137569418133 -0.8649251493016499 -0.5018826222613267 -0.004279503727668084 -0.7086453482994729 0.7055518805738978 -0.004279503731088207 -0.708644065358699 0.7055531691373169 0.004279503727668084 0.7086453482994729 -0.7055518805738978 0.004279503731088207 0.708644065358699 -0.7055531691373169 -0.004280820620104977 0.7055523445921659 0.7086448783525611 -0.004280820622493526 0.7055537732692776 0.7086434559073291 0.004280820620104977 -0.7055523445921659 -0.7086448783525611 0.004280820622493526 -0.7055537732692776 -0.7086434559073291 -0.004279856789499468 -0.5018853069956759 0.8649235928379554 -0.004279856787992766 -0.5018869261655592 0.8649226532875417 0.004279856787992766 0.5018869261655592 -0.8649226532875417 0.004279856789499468 0.5018853069956759 -0.8649235928379554 -0.004280325599923767 0.4981013730755701 0.8671082406210833 -0.004280325596508693 0.4981002179615462 0.8671089041633976 0.004280325596508693 -0.4981002179615462 -0.8671089041633976 0.004280325599923767 -0.4981013730755701 -0.8671082406210833 -0.004280271874951132 -0.2609268930036005 0.9653490745736302 -0.004280271879293935 -0.2609251102153328 0.965349556446656 0.004280271874951132 0.2609268930036005 -0.9653490745736302 0.004280271879293935 0.2609251102153328 -0.965349556446656 -0.004280237443075813 0.2567064328691884 0.966479946450524 -0.004280237446015731 0.256704930550933 0.9664803454795375 0.004280237446015731 -0.256704930550933 -0.9664803454795375 0.004280237443075813 -0.2567064328691884 -0.966479946450524 -0.004280534257630148 -0.002183750939241975 0.9999884540624979 -0.004280534258190548 -0.002185305100490302 0.9999884506673475 0.004280534258190548 0.002185305100490302 -0.9999884506673475 0.004280534257630148 0.002183750939241975 -0.9999884540624979</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID381\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID379\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID382\">16.72264492845211 -3.239903109249033 -4.493906290557893 2.933910303838056 -4.728586341386173 -2.696140844848241 16.95653956603488 2.371301515704383 8.478269783017442 1.185650757852192 8.361322464226053 -1.619951554624516 -2.246953145278947 1.466955151919028 -2.364293170693086 -1.348070422424121 -16.95324444480733 2.385627098572262 4.724869775837585 -2.700043436932254 4.497951786028732 2.930243137362552 -16.72708843421687 -3.225761471737048 -8.363544217108437 -1.612880735868524 -8.476622222403663 1.192813549286131 2.362434887918793 -1.350021718466127 2.248975893014366 1.465121568681276 -4.650377267339515 -2.779097278612486 16.8845397929188 2.670381715873585 -4.576559850465017 2.853718301221435 16.81096911007859 -2.94358313064525 8.405484555039294 -1.471791565322625 -2.325188633669757 -1.389548639306243 8.442269896459401 1.335190857936793 -2.288279925232509 1.426859150610718 -16.88407653528399 2.671868009696685 4.649988302077555 -2.779450835817336 4.577047968530231 2.853401927377038 -16.81138055951746 -2.942128119354722 -8.405690279758728 -1.471064059677361 -8.442038267641994 1.335934004848342 2.324994151038777 -1.389725417908668 2.288523984265115 1.426700963688519 -4.633528105959257 -2.796443786905329 16.86821789600814 2.73349127372693 -4.593746885068567 2.836588465561602 16.82856995092033 -2.880655093693082 8.414284975460165 -1.440327546846541 -2.316764052979628 -1.398221893452664 8.434108948004072 1.366745636863465 -2.296873442534284 1.418294232780801 4.593973352083259 2.836523718218725 -16.82868561620813 -2.880198764756717 4.633415836383876 -2.796499481809613 -16.86799572512858 2.733954476238326 -8.433997862564288 1.366977238119163 2.296986676041629 1.418261859109362 -8.414342808104063 -1.440099382378358 2.316707918191938 -1.398249740904807 16.86025756741855 2.763878992145286 -4.625368403466258 -2.804667302171011 16.83691785074735 -2.850323934358243 -4.601950849363642 2.828377057234473 -2.300975424681821 1.414188528617236 8.430128783709277 1.381939496072643 -2.312684201733129 -1.402333651085505 8.418458925373676 -1.425161967179121 4.625321723249752 -2.804583041773303 -16.86010532359727 2.764157331875902 -16.83696537367468 -2.850054064282261 4.602104112393668 2.82847806387397 2.301052056196834 1.414239031936985 2.312660861624876 -1.402291520886652 -8.430052661798635 1.382078665937951 -8.41848268683734 -1.42502703214113 16.85496166571006 2.783686677685021 -4.620007726224934 -2.810278447092262 16.84234184440923 -2.830551225302984 -4.607345360204824 2.822837129837691 -2.303672680102412 1.411418564918846 8.42748083285503 1.391843338842511 -2.310003863112467 -1.405139223546131 8.421170922204613 -1.415275612651492 4.619984400096286 -2.809976726827539 -16.85483529246015 2.784011826299676 -16.84236541118916 -2.830188792266932 4.60747210773349 2.823105087936984 2.303736053866745 1.411552543968492 2.309992200048143 -1.404988363413769 -8.427417646230072 1.392005913149838 -8.421182705594578 -1.415094396133466 16.84661280771467 -2.814593484597931 -4.611683716472709 2.81851480107025 -4.615752153365286 -2.814589810342543 16.85066790715681 2.799634925290195 8.425333953578404 1.399817462645097 8.423306403857335 -1.407296742298966 -2.305841858236355 1.409257400535125 -2.307876076682643 -1.407294905171272 4.615710287708393 -2.814561377896678 -16.85057595863294 2.799689708006414 -16.84665468625737 -2.814561337141796 4.611775836897464 2.818552915409719 2.305887918448732 1.409276457704859 2.307855143854197 -1.407280688948339 -8.425287979316471 1.399844854003207 -8.423327343128683 -1.407280668570898 16.85061274891556 -2.799737230245905 -4.615671991269269 2.81450515557137 -4.611738806717524 -2.818601982494837 16.84669296982185 2.814502371962669 8.423346484910923 1.407251185981335 8.425306374457781 -1.399868615122952 -2.307835995634635 1.407252577785685 -2.305869403358762 -1.409300991247418 4.615728155487668 2.814609614993135 -16.85069104536705 -2.799615976508483 4.611660413818911 -2.818490959721189 -16.8466368184738 2.8146110332504 -8.423318409236899 1.4073055166252 2.307864077743834 1.407304807496568 -8.425345522683527 -1.399807988254242 2.305830206909456 -1.409245479860595 16.85488174045585 -2.783822084320475 -4.619932794077956 2.810191868402641 -4.607425572770014 -2.822910867387297 16.84241677434491 2.830407356558213 8.421208387172452 1.415203678279107 8.427440870227924 -1.391911042160237 -2.309966397038978 1.405095934201321 -2.303712786385007 -1.411455433693649 4.620004557216717 2.810058274546969 -16.85496420879204 -2.783885263391031 4.607342998617686 -2.823023215688412 -16.84234483497815 2.830335643376079 -8.421172417489073 1.41516782168804 2.310002278608359 1.405029137273484 -8.427482104396022 -1.391942631695516 2.303671499308843 -1.411511607844206 16.86015697964571 -2.764128945178626 -4.625258428899851 2.804623625608292 -4.602052139363532 -2.828459741286155 16.83702861702645 2.850080276962824 8.418514308513226 1.425040138481412 8.430078489822854 -1.382064472589313 -2.312629214449926 1.402311812804146 -2.301026069681766 -1.414229870643077 4.625415304190483 2.804724666538888 -16.86021964902263 -2.763862037364986 4.601989023202723 -2.828331854061645 -16.83687108925824 2.850382876463817 -8.418435544629118 1.425191438231908 2.312707652095241 1.402362333269444 -8.430109824511312 -1.381931018682493 2.300994511601362 -1.414165927030822 -4.593914234547086 -2.836549647844413 16.82876921869526 2.880127300163432 -4.633332011394352 2.796435274276993 16.86805470199861 -2.733989105220428 8.434027350999303 -1.366994552610214 -2.296957117273543 -1.418274823922207 8.414384609347628 1.440063650081716 -2.316666005697176 1.398217637138496 -16.82855802294511 2.880666116932571 4.593755417573123 -2.836541457565994 4.633540441894999 2.796500506525937 -16.86820930785124 -2.733438833984344 -8.434104653925619 -1.366719416992172 -8.414279011472553 1.440333058466285 2.296877708786562 -1.418270728782997 2.316770220947499 1.398250253262969 16.88411675624425 -2.671921487800922 -4.649910896461154 2.779418514975413 -4.577007912454192 -2.853430276512045 16.81145811289813 2.942066762377245 8.405729056449063 1.471033381188622 8.442058378122125 -1.335960743900461 -2.324955448230577 1.389709257487706 -2.288503956227096 -1.426715138256022 -16.81098620107458 2.943539550568779 4.576551096657347 -2.853740970625229 4.650360429397084 2.779075221069198 -16.88454891053257 -2.670436317040372 -8.442274455266283 -1.335218158520186 -8.405493100537289 1.47176977528439 2.288275548328674 -1.426870485312614 2.325180214698542 1.389537610534599 -4.497954252672803 -2.930183803648829 16.72711886388277 3.225770011282844 -4.724839231514265 2.700053591480886 16.95324496794547 -2.385640017490524 8.476622483972733 -1.192820008745262 -2.248977126336401 -1.465091901824415 8.363559431941386 1.612885005641422 -2.362419615757132 1.350026795740443 -16.72266364813068 3.23986216331764 4.493904609166451 -2.933941311184089 4.728569530450034 2.696148379731193 -16.95654291422808 -2.371371245078102 -8.478271457114039 -1.185685622539051 -8.361331824065339 1.61993108165882 2.246952304583226 -1.466970655592045 2.364284765225017 1.348074189865597</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID382\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID378\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID376\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID377\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID378\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID379\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 8 8 9 1 10 8 9 3 8 9 11 12 16 0 17 2 18 0 17 12 16 13 19 9 24 16 25 8 26 16 25 9 24 17 27 20 32 13 33 12 34 13 33 20 32 21 35 16 40 24 41 25 42 24 41 16 40 17 43 21 48 28 49 29 50 28 49 21 48 20 51 32 56 24 57 33 58 24 57 32 56 25 59 29 64 36 65 37 66 36 65 29 64 28 67 40 72 33 73 41 74 33 73 40 72 32 75 44 80 36 81 45 82 36 81 44 80 37 83 48 88 41 89 49 90 41 89 48 88 40 91 52 96 45 97 53 98 45 97 52 96 44 99 48 104 56 105 57 106 56 105 48 104 49 107 60 112 53 113 61 114 53 113 60 112 52 115 57 120 64 121 65 122 64 121 57 120 56 123 68 128 61 129 69 130 61 129 68 128 60 131 65 136 72 137 73 138 72 137 65 136 64 139 76 144 68 145 69 146 68 145 76 144 77 147 72 152 80 153 73 154 80 153 72 152 81 155 84 160 76 161 85 162 76 161 84 160 77 163 81 168 88 169 80 170 88 169 81 168 89 171 92 176 84 177 85 178 84 177 92 176 93 179 89 184 92 185 88 186 92 185 89 184 93 187</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID378\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID379\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 7 7 6 6 5 5 10 12 4 13 11 14 6 15 11 14 4 13 14 20 15 21 5 22 7 23 5 22 15 21 18 28 10 29 19 30 11 31 19 30 10 29 22 36 23 37 14 38 15 39 14 38 23 37 18 44 19 45 26 46 27 47 26 46 19 45 23 52 22 53 30 54 31 55 30 54 22 53 27 60 34 61 26 62 35 63 26 62 34 61 30 68 31 69 38 70 39 71 38 70 31 69 34 76 42 77 35 78 43 79 35 78 42 77 39 84 46 85 38 86 47 87 38 86 46 85 42 92 50 93 43 94 51 95 43 94 50 93 46 100 54 101 47 102 55 103 47 102 54 101 51 108 50 109 58 110 59 111 58 110 50 109 54 116 62 117 55 118 63 119 55 118 62 117 58 124 59 125 66 126 67 127 66 126 59 125 62 132 70 133 63 134 71 135 63 134 70 133 66 140 67 141 74 142 75 143 74 142 67 141 78 148 79 149 70 150 71 151 70 150 79 149 82 156 74 157 83 158 75 159 83 158 74 157 78 164 86 165 79 166 87 167 79 166 86 165 90 172 82 173 91 174 83 175 91 174 82 173 94 180 95 181 86 182 87 183 86 182 95 181 94 188 90 189 95 190 91 191 95 190 90 189</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID383\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID386\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID390\">-0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID390\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID387\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID391\">-0.9082500329767456 0.0007516867371791146 -0.4184271890840621 -0.9082492745359263 -0.1074503430176522 -0.4043979217186361 -0.9082500344776737 0.0008765598473410654 -0.4184269428635523 -0.9082492736520922 -0.1075708369032307 -0.4043658887176134 0.9082492736520922 0.1075708369032307 0.4043658887176134 0.9082500329767456 -0.0007516867371791146 0.4184271890840621 0.9082492745359263 0.1074503430176522 0.4043979217186361 0.9082500344776737 -0.0008765598473410654 0.4184269428635523 -0.9082506050830315 0.1091435923435764 -0.4039412266860695 -0.9082506046354215 0.1090229161292429 -0.4039738146688064 0.9082506050830315 -0.1091435923435764 0.4039412266860695 0.9082506046354215 -0.1090229161292429 0.4039738146688064 -0.9082482427168129 -0.2084560405691885 -0.3628101552493231 -0.9082482405359982 -0.2085640638359936 -0.3627480735158756 0.9082482405359982 0.2085640638359936 0.3627480735158756 0.9082482427168129 0.2084560405691885 0.3628101552493231 -0.9082491615154812 0.2099738865158217 -0.3619315233409027 -0.9082491645414247 0.209866585626633 -0.3619937449006862 0.9082491615154812 -0.2099738865158217 0.3619315233409027 0.9082491645414247 -0.209866585626633 0.3619937449006862 -0.9082465712478778 -0.2952584160994148 -0.2964972740834871 -0.908246568910591 -0.2953461497473803 -0.2964098883160561 0.908246568910591 0.2953461497473803 0.2964098883160561 0.9082465712478778 0.2952584160994148 0.2964972740834871 -0.9082473909658394 0.2964969062159364 -0.295256263960858 -0.9082473912470552 0.2964072177461657 -0.2953463010787428 0.9082473909658394 -0.2964969062159364 0.295256263960858 0.9082473912470552 -0.2964072177461657 0.2953463010787428 -0.9082474673790382 -0.3619345433051908 -0.2099760090153772 -0.9082474712734822 -0.3619966089766116 -0.2098689734447648 0.9082474712734822 0.3619966089766116 0.2098689734447648 0.9082474673790382 0.3619345433051908 0.2099760090153772 -0.9082484639023035 0.3628095932970937 -0.2084560549149473 -0.908248460723703 0.3627472515016051 -0.2085645346674632 0.9082484639023035 -0.3628095932970937 0.2084560549149473 0.908248460723703 -0.3627472515016051 0.2085645346674632 -0.9082511405035336 -0.4039399392223229 -0.1091439016853281 -0.9082511440516279 -0.403972551902783 -0.1090231013962746 0.9082511440516279 0.403972551902783 0.1090231013962746 0.9082511405035336 0.4039399392223229 0.1091439016853281 -0.9082495969998886 0.4043972754492359 -0.1074500495987548 -0.908249596623721 0.404365212715167 -0.1075706511027334 0.9082495969998886 -0.4043972754492359 0.1074500495987548 0.908249596623721 -0.404365212715167 0.1075706511027334 -0.9082514585655601 -0.4184238527729456 -0.0008760389129415635 -0.9082514553289773 -0.4184241025164883 -0.0007512163908289862 0.9082514553289773 0.4184241025164883 0.0007512163908289862 0.9082514585655601 0.4184238527729456 0.0008760389129415635 -0.9082505851953316 0.4184257471815965 0.0008766914283048339 -0.9082505828752954 0.418425995279139 0.0007517854403690022 0.9082505851953316 -0.4184257471815965 -0.0008766914283048339 0.9082505828752954 -0.418425995279139 -0.0007517854403690022 -0.9082490302929679 -0.4043664017146101 0.1075709632580378 -0.9082490333533763 -0.4043984855098431 0.1074502597949525 0.9082490302929679 0.4043664017146101 -0.1075709632580378 0.9082490333533763 0.4043984855098431 -0.1074502597949525 -0.9082505698761868 0.4039735439268114 0.1090242089024017 -0.9082505682264853 0.4039407217202315 0.1091457679088157 0.9082505682264853 -0.4039407217202315 -0.1091457679088157 0.9082505698761868 -0.4039735439268114 -0.1090242089024017 -0.9082486494484744 -0.3627467689190975 0.2085645521505931 -0.9082486481231678 -0.3628091637581442 0.2084559998550159 0.9082486494484744 0.3627467689190975 -0.2085645521505931 0.9082486481231678 0.3628091637581442 -0.2084559998550159 -0.9082483686281029 0.3619950655307562 0.2098677522054624 -0.9082483661589828 0.3619328652568282 0.209975013790977 0.9082483661589828 -0.3619328652568282 -0.209975013790977 0.9082483686281029 -0.3619950655307562 -0.2098677522054624 -0.9082506197478876 -0.2964042575108705 0.2953393435643274 -0.9082506167666825 -0.2964919493568599 0.2952513185567682 0.9082506197478876 0.2964042575108705 -0.2953393435643274 0.9082506167666825 0.2964919493568599 -0.2952513185567682 -0.9082480131803266 0.2953441289205035 0.2964074764006107 -0.90824801524225 0.295256581095625 0.2964946780774259 0.90824801524225 -0.295256581095625 -0.2964946780774259 0.9082480131803266 -0.2953441289205035 -0.2964074764006107 -0.9082502482972585 -0.2098653041311184 0.3619917686770259 -0.9082502533146946 -0.2099721613881187 0.3619297843446915 0.9082502482972585 0.2098653041311184 -0.3619917686770259 0.9082502533146946 0.2099721613881187 -0.3619297843446915 -0.9082493143264231 0.2085638932647763 0.3627454830205625 -0.9082493159583445 0.2084540785156279 0.3628085958344974 0.9082493159583445 -0.2084540785156279 -0.3628085958344974 0.9082493143264231 -0.2085638932647763 -0.3627454830205625 -0.9082485879667209 -0.1090232989628911 0.4039782453792602 -0.9082485869772989 -0.1091444703673541 0.4039455270726108 0.9082485879667209 0.1090232989628911 -0.4039782453792602 0.9082485869772989 0.1091444703673541 -0.4039455270726108 -0.9082511946939681 0.107569634709001 0.4043618936368158 -0.9082511981082746 0.1074499269831152 0.4043937120260486 0.9082511981082746 -0.1074499269831152 -0.4043937120260486 0.9082511946939681 -0.107569634709001 -0.4043618936368158 -0.9082509090819749 -0.0008773896933384607 0.4184250426768125 -0.9082509125925561 -0.000752468406024658 0.4184252783545552 0.9082509090819749 0.0008773896933384607 -0.4184250426768125 0.9082509125925561 0.000752468406024658 -0.4184252783545552</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID391\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID389\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID392\">-4.542699139165971 13.57301502275557 -0.4760628845307824 14.03057851338626 -4.293205956690974 12.84291939320605 -0.4520778451937232 13.27480097802665 0.5262263144851437 13.27311290434169 0.5509308441970694 14.02887609692691 4.364922551878471 12.82793928468497 4.615115580867611 13.5578951401443 -9.200497557095831 12.02549805985014 -5.460294461359973 13.36213689623786 -8.700673353099646 11.37978305347014 -5.167760694787276 12.6419962786728 5.236482058585006 12.62448183080072 5.529599615995658 13.34448409699993 8.762464862805501 11.35038498428026 9.262826653654555 11.9958490506677 -12.99216162462306 9.619703772942543 -9.850935596277633 11.70231789836429 -12.28897078609038 9.104402023815595 -9.321713719835559 11.07126571357382 9.379208433918393 11.04116980481799 9.908805909503144 11.67203388437624 12.33621713888454 9.064756673517946 13.03968184989838 9.57981702183138 -15.70518465917443 6.660142705593261 -13.3525193171996 9.309346053102276 -14.85691765236203 6.30484509550176 -12.63441802294289 8.80693061639283 12.67792072561648 8.768150175948428 13.39616309803314 9.270430520945231 14.8880027823071 6.259267456761666 15.73641299818794 6.614399205461904 -17.30591011175082 3.414281264193431 -15.85447136542427 6.437527688275801 -16.37252037394564 3.234169117888085 -15.00127260492471 6.089614567846071 15.03012559609594 6.045417211916162 15.88339658588965 6.393267460950476 16.38777273810398 3.18595789568538 17.32115792288254 3.365996716390026 -17.84158673383741 0.07271931827509812 -17.34754144405634 3.280923251307002 -16.88054368036996 0.07271501916888513 -16.4134956469478 3.102928287245775 16.42781917250773 3.055684031940567 17.36184157354511 3.233666018167433 16.88077042213474 0.02413597414263838 17.84180938374336 0.0241319283408874 -17.84181214267261 -0.02413337543565036 -16.88076908897763 -0.02413745264056083 -17.36185361655219 -3.23366717946566 -16.42782986626323 -3.055684287849731 16.4134818910754 -3.102935319425331 16.88054701756033 -0.07271698671732821 17.34751954079551 -3.280922069425896 17.84158597896712 -0.07272124314771755 -17.3211786305619 -3.365991047406652 -16.3877919244592 -3.185951882083677 -15.88340587967561 -6.393257993900284 -15.03015255389675 -6.045413601251539 15.00124014052953 -6.089609450990861 16.37250085551697 -3.234178633475433 15.85445263950981 -6.437525411168315 17.3058822788614 -3.414283177660608 -15.73639731955359 -6.614409163697935 -14.8880059792257 -6.259281506746234 -13.39617422300147 -9.270432463617809 -12.67787981034289 -8.768156485934776 12.63438003713352 -8.806939261801423 14.85687775431837 -6.30484505352637 13.35248086666035 -9.309357964262242 15.70515852596362 -6.660145524742545 -13.03968789063718 -9.579816255505966 -12.33617009607184 -9.064760126010743 -9.908816153169438 -11.67204170025707 -9.379206298367013 -11.04117126199523 9.321679514522458 -11.07126762305999 12.28893385344979 -9.104409654094303 9.850928337812352 -11.70231246863167 12.99212427033344 -9.61971454210361 -9.262873717913241 -11.99585669306635 -8.762497622106514 -11.35038698937884 -5.529610632032458 -13.34446963758883 -5.236511265108912 -12.62449364339831 5.167749101606612 -12.64198777028426 8.700643486461816 -11.37978310462293 5.460273663042221 -13.36213548128276 9.200495491064043 -12.02549128880329 -4.364955882694339 -12.82794829884673 -0.5262691202224505 -13.27310290361913 -4.615130655374084 -13.55787759450954 -0.5509741484817764 -14.02888433511281 0.4520367491142101 -13.27478359432735 4.293193018885061 -12.84290598107812 0.4760213753747136 -14.03057938515311 4.542676807114459 -13.57300831123361</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID392\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID388\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID386\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID387\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID388\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 0 8 9 8 0 2 3 12 1 12 3 13 9 16 17 16 9 8 13 20 12 20 13 21 17 24 25 24 17 16 21 28 20 28 21 29 25 32 33 32 25 24 29 36 28 36 29 37 33 40 41 40 33 32 37 44 36 44 37 45 41 48 49 48 41 40 44 52 53 52 44 45 48 56 49 56 48 57 53 60 61 60 53 52 57 64 56 64 57 65 61 68 69 68 61 60 65 72 64 72 65 73 69 76 77 76 69 68 73 80 72 80 73 81 77 84 85 84 77 76 81 88 80 88 81 89 92 84 93 84 92 85 89 93 88 93 89 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID388\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID389\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 7 4 5 5 10 6 11 7 10 6 5 5 14 8 4 9 15 10 6 11 15 10 4 9 10 12 11 13 18 14 19 15 18 14 11 13 22 16 14 17 23 18 15 19 23 18 14 17 18 20 19 21 26 22 27 23 26 22 19 21 30 24 22 25 31 26 23 27 31 26 22 25 26 28 27 29 34 30 35 31 34 30 27 29 38 32 30 33 39 34 31 35 39 34 30 33 34 36 35 37 42 38 43 39 42 38 35 37 46 40 38 41 47 42 39 43 47 42 38 41 42 44 43 45 50 46 51 47 50 46 43 45 46 48 47 49 54 50 55 51 54 50 47 49 58 52 50 53 59 54 51 55 59 54 50 53 54 56 55 57 62 58 63 59 62 58 55 57 66 60 58 61 67 62 59 63 67 62 58 61 62 64 63 65 70 66 71 67 70 66 63 65 74 68 66 69 75 70 67 71 75 70 66 69 70 72 71 73 78 74 79 75 78 74 71 73 82 76 74 77 83 78 75 79 83 78 74 77 78 80 79 81 86 82 87 83 86 82 79 81 90 84 82 85 91 86 83 87 91 86 82 85 87 88 94 89 86 90 95 91 86 90 94 89 94 92 90 93 95 94 91 95 95 94 90 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID393\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID394\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID398\">-0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.848191442515148 -1.821721723044679 -0.002991724816678865</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID398\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID395\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID399\">-1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID399\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID397\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID400\">-18.21719920829072 0.02353305587178056 -17.58874109970749 3.731832569171651 -17.60424916488311 -3.686367916216107 -15.79154768106481 -7.14505990410002 -15.76162339299344 7.185815878339411 -15.73645395039408 0.02353305587178406 -15.20798726843623 -3.181281342099942 -13.6431234692418 -6.169288878862472 -12.90268619664868 -10.11682217439248 -11.14849664574191 -8.7368715422037 -9.134543999449482 -12.39913428420196 -7.894159355730627 -10.70906301849755 -4.743844447887168 -13.83647042450765 -4.101781864347913 -11.95141933613647 -0.02993367461101796 -14.33087164735588 -0.02993367461098022 -12.37934495576256 4.043974672825356 -11.9636131068125 4.686051523904595 -13.84865828792145 7.842322378820725 -10.73257746649335 9.082687498537359 -12.42266290962708 11.106162601468 -8.770158964817435 12.86035665791355 -10.15009187521957 13.61317214793644 -6.210043671649416 15.19249872726272 -3.226737724888358 15.73644944485523 -0.02353490189122628 15.7615948579133 -7.185808789624735 -15.19252726234299 3.226739497067041 -13.61319017009239 6.210048988185412 -12.86033863575761 10.15009660102933 -11.10619113654815 8.770154239007669 -9.082711528078582 12.42266290962708 -7.842317873281745 10.73258573666044 -4.686070296983688 13.84864765484944 -4.043988564903902 11.96361546971739 0.0299008217225882 12.37933786704789 0.0299008217226215 14.33087282880834 4.101776983347349 11.95143942082804 4.743848953426131 13.83646333579298 7.894117304033426 10.70905592978288 9.134510958830333 12.39913428420196 11.14846360512272 8.736878630918373 12.90263363202708 10.11682099294002 13.64312346924178 6.169292423219798 15.20797224997292 3.181279569921278 15.79154317552588 7.145053996837801 17.58872307755159 -3.731830796992965 17.60422062980293 3.686373823478347 18.21721723044679 -0.02353490189120707</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID400\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID396\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID394\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID395\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID396\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 6 7 8 8 7 9 9 7 10 9 10 11 11 10 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 18 16 19 18 19 20 20 19 21 20 21 22 22 21 23 22 23 24 24 23 25 4 26 27 26 4 5 27 26 28 27 28 29 27 29 30 30 29 31 30 31 32 32 31 33 32 33 34 34 33 35 34 35 36 34 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 25 43 25 23 43 23 45 43 45 46 46 45 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID396\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID397\" />\r\n\t\t\t\t\t<p>48 0 49 1 50 2 50 2 49 1 51 3 49 1 52 4 51 3 52 4 53 5 51 3 53 5 54 6 51 3 54 6 55 7 51 3 51 3 55 7 56 8 55 7 57 9 56 8 56 8 57 9 58 10 57 9 59 11 58 10 58 10 59 11 60 12 59 11 61 13 60 12 60 12 61 13 62 14 61 13 63 15 62 14 63 15 64 16 62 14 62 14 64 16 65 17 64 16 66 18 65 17 65 17 66 18 67 19 66 18 68 20 67 19 67 19 68 20 69 21 68 20 70 22 69 21 70 22 71 23 69 21 72 24 73 25 71 23 69 21 71 23 73 25 53 5 52 4 74 26 74 26 52 4 75 27 52 4 76 28 75 27 75 27 76 28 77 29 76 28 78 30 77 29 77 29 78 30 79 31 78 30 80 32 79 31 79 31 80 32 81 33 81 33 80 32 82 34 80 32 83 35 82 34 82 34 83 35 84 36 83 35 85 37 84 36 84 36 85 37 86 38 85 37 87 39 86 38 86 38 87 39 88 40 87 39 89 41 88 40 88 40 89 41 90 42 90 42 89 41 91 43 89 41 92 44 91 43 91 43 92 44 72 24 72 24 92 44 73 25 73 25 92 44 93 45 92 44 94 46 93 45 95 47 93 45 94 46</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID401\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID402\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID406\">-0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151516 1.286033863575761 1.29026651708 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950979 -0.9639834939807769 1.663688891962011 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006284 0.9616870958540129 -1.659710651225625 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.7637458525006196 -0.956506702224935 -1.66269977597085 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950926 -0.9588031003517052 -1.6666787676304 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006284 0.4993573332498595 -1.852061121441011 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID406\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID403\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID407\">-0.7524585417620626 0.1695187983675101 0.6364507207391202 -0.752458751757041 -0.001116951969874288 0.6586384283675927 -0.7524587513418458 -0.0009841473680792699 0.6586386406695468 -0.7524585421170914 0.1693892527612725 0.6364852107032804 0.7524585421170914 -0.1693892527612725 -0.6364852107032804 0.7524585417620626 -0.1695187983675101 -0.6364507207391202 0.752458751757041 0.001116951969874288 -0.6586384283675927 0.7524587513418458 0.0009841473680792699 -0.6586386406695468 -0.7524565325827145 -0.1715493318107424 0.6359087932470239 -0.7524565358976068 -0.1714184440870872 0.6359440845009378 0.7524565325827145 0.1715493318107424 -0.6359087932470239 0.7524565358976068 0.1714184440870872 -0.6359440845009378 -0.003023428365700127 -0.001557416609379177 0.9999942166504876 -0.003023523763512286 0.2573134050059734 0.9663232740176982 -0.003023428365418651 -0.001558199390591175 0.9999942154310586 -0.003023523763771853 0.2573140904666033 0.9663230914923821 0.003023523763771853 -0.2573140904666033 -0.9663230914923821 0.003023428365700127 0.001557416609379177 -0.9999942166504876 0.003023523763512286 -0.2573134050059734 -0.9663232740176982 0.003023428365418651 0.001558199390591175 -0.9999942154310586 -0.752458965034369 0.3283526619799974 0.5709553706815058 -0.7524589655183874 0.3284673404373135 0.5708894038927644 0.7524589655183874 -0.3284673404373135 -0.5708894038927644 0.752458965034369 -0.3283526619799974 -0.5709553706815058 -0.7524536793556657 -0.3302908594592792 0.5698433193271392 -0.7524536801024093 -0.3301728027602695 0.5699117296720337 0.7524536793556657 0.3302908594592792 -0.5698433193271392 0.7524536801024093 0.3301728027602695 -0.5699117296720337 -0.003023637205282373 -0.2603221403258926 0.9655170847137802 -0.00302363720643009 -0.2603227088345894 0.9655169314326214 0.003023637205282373 0.2603221403258926 -0.9655170847137802 0.00302363720643009 0.2603227088345894 -0.9655169314326214 -0.003023769458048854 0.4986487925159631 0.8667988454887539 -0.003023769456780855 0.4986480616163927 0.8667992659575149 0.003023769458048854 -0.4986487925159631 -0.8667988454887539 0.003023769456780855 -0.4986480616163927 -0.8667992659575149 -0.7524604277183468 0.4649355000609762 0.4665171867155301 -0.7524604292449857 0.4650302144511048 0.4664227718154544 0.7524604292449857 -0.4650302144511048 -0.4664227718154544 0.7524604277183468 -0.4649355000609762 -0.4665171867155301 -0.7524523992911886 -0.4665217526188665 0.4649439118155596 -0.7524523999108818 -0.4664284121355344 0.4650375492592817 0.7524523992911886 0.4665217526188665 -0.4649439118155596 0.7524523999108818 0.4664284121355344 -0.4650375492592817 -0.003024220271891797 -0.5013452460737722 0.8652420460951814 -0.003024220270688767 -0.5013448265809373 0.8652422891608365 0.003024220270688767 0.5013448265809373 -0.8652422891608365 0.003024220271891797 0.5013452460737722 -0.8652420460951814 -0.003023789150446498 0.7060009776560012 0.7082044028724647 -0.003023789151712843 0.7060003159894974 0.7082050624797142 0.003023789150446498 -0.7060009776560012 -0.7082044028724647 0.003023789151712843 -0.7060003159894974 -0.7082050624797142 -0.7524618458997252 0.5698351311725082 0.3302863814128411 -0.7524618457279603 0.5699021833508379 0.3301706712226562 0.7524618457279603 -0.5699021833508379 -0.3301706712226562 0.7524618458997252 -0.5698351311725082 -0.3302863814128411 -0.7524479855813711 -0.5709672528893324 0.3283571609125437 -0.75244799164648 -0.5709000097533534 0.3284740457491269 0.7524479855813711 0.5709672528893324 -0.3283571609125437 0.75244799164648 0.5709000097533534 -0.3284740457491269 -0.003024450878027729 -0.7082033825184431 0.7060019983585898 -0.003024450877476187 -0.7082039104336583 0.7060014687968891 0.003024450878027729 0.7082033825184431 -0.7060019983585898 0.003024450877476187 0.7082039104336583 -0.7060014687968891 -0.003023198803451891 0.8652412822109276 0.5013465705746725 -0.003023198805660467 0.8652409285580689 0.5013471809205194 0.003023198803451891 -0.8652412822109276 -0.5013465705746725 0.003023198805660467 -0.8652409285580689 -0.5013471809205194 -0.7524650029900875 0.6358998698302749 0.1715452559092408 -0.7524650076588183 0.6359345265441972 0.1714167150485116 0.7524650076588183 -0.6359345265441972 -0.1714167150485116 0.7524650029900875 -0.6358998698302749 -0.1715452559092408 -0.7524485695931888 -0.6364956983395131 0.1693941442685062 -0.7524485617789981 -0.6364614586825991 0.1695227816204527 0.7524485695931888 0.6364956983395131 -0.1693941442685062 0.7524485617789981 0.6364614586825991 -0.1695227816204527 -0.003024642282712115 -0.8667991712589429 0.4986482209372369 -0.00302464228433073 -0.8667995384389017 0.4986475826685202 0.003024642282712115 0.8667991712589429 -0.4986482209372369 0.00302464228433073 0.8667995384389017 -0.4986475826685202 -0.003021941420137833 0.9655175454494209 0.2603204511738924 -0.003021941424746023 0.9655173587289867 0.2603211437110447 0.003021941420137833 -0.9655175454494209 -0.2603204511738924 0.003021941424746023 -0.9655173587289867 -0.2603211437110447 -0.7524649227682221 0.6586313785893013 0.001116754659718303 -0.7524649176522377 0.6586315962545964 0.0009839297400806876 0.7524649176522377 -0.6586315962545964 -0.0009839297400806876 0.7524649227682221 -0.6586313785893013 -0.001116754659718303 -0.7524562762274313 -0.6586412570388478 -0.001116643288669679 -0.7524562723022982 -0.6586414735750391 -0.0009836461920094291 0.7524562762274313 0.6586412570388478 0.001116643288669679 0.7524562723022982 0.6586414735750391 0.0009836461920094291 -0.00302424272530191 -0.966322583003932 0.2573159915989429 -0.003024242721690821 -0.9663227607441889 0.2573153241136048 0.00302424272530191 0.966322583003932 -0.2573159915989429 0.003024242721690821 0.9663227607441889 -0.2573153241136048 -0.003021067751355109 0.9999942264063256 0.001555732514273759 -0.003021067751511359 0.9999942251911452 0.001556513412098616 0.003021067751355109 -0.9999942264063256 -0.001555732514273759 0.003021067751511359 -0.9999942251911452 -0.001556513412098616 -0.7524581266761962 0.6364513097928596 -0.1695184292692185 -0.7524581327993718 0.6364858961559734 -0.1693884954139764 0.7524581266761962 -0.6364513097928596 0.1695184292692185 0.7524581327993718 -0.6364858961559734 0.1693884954139764 -0.7524554877062412 -0.6359441915615974 -0.1714226479781157 -0.7524554835789596 -0.6359095448500886 -0.171551146893593 0.7524554835789596 0.6359095448500886 0.171551146893593 0.7524554877062412 0.6359441915615974 0.1714226479781157 -0.003022939996113761 -0.9999942166299063 -0.001558377528098246 -0.003022939999784108 -0.9999942178488096 -0.001557595167271352 0.003022939996113761 0.9999942166299063 0.001558377528098246 0.003022939999784108 0.9999942178488096 0.001557595167271352 -0.003022243473153594 0.9663240542030337 -0.2573104900951403 -0.00302224347973812 0.966323868653908 -0.2573111869198347 0.003022243473153594 -0.9663240542030337 0.2573104900951403 0.00302224347973812 -0.966323868653908 0.2573111869198347 -0.752453954284854 0.5708942615132673 -0.3284703774350259 -0.7524539551700281 0.5709604990173309 -0.3283552251919589 0.752453954284854 -0.5708942615132673 0.3284703774350259 0.7524539551700281 -0.5709604990173309 0.3283552251919589 -0.75245270637364 -0.5699112482350072 -0.3301758528514779 -0.7524527067090119 -0.5698454450886161 -0.3302894077593754 0.7524527067090119 0.5698454450886161 0.3302894077593754 0.75245270637364 0.5699112482350072 0.3301758528514779 -0.003022956207305731 -0.9655159878608529 -0.2603262163533472 -0.003022956203584093 -0.9655161881351868 -0.2603254735608669 0.003022956207305731 0.9655159878608529 0.2603262163533472 0.003022956203584093 0.9655161881351868 0.2603254735608669 -0.003023860053777756 0.8667994464540276 -0.4986477473100291 -0.003023860056238176 0.866799054464471 -0.4986484287048933 0.003023860053777756 -0.8667994464540276 0.4986477473100291 0.003023860056238176 -0.866799054464471 0.4986484287048933 -0.7524520034872866 0.4664284183759522 -0.4650381844314248 -0.7524520059884629 0.4665225652234435 -0.4649437329626844 0.7524520034872866 -0.4664284183759522 0.4650381844314248 0.7524520059884629 -0.4665225652234435 0.4649437329626844 -0.7524541205941244 -0.4650354160681895 -0.4664277631136556 -0.7524541226695466 -0.4649429710307974 -0.4665199105790212 0.7524541226695466 0.4649429710307974 0.4665199105790212 0.7524541205941244 0.4650354160681895 0.4664277631136556 -0.003023625947355671 -0.8652411650582806 -0.5013467701847889 -0.003023625947147205 -0.8652415864938384 -0.5013460428563862 0.003023625947355671 0.8652411650582806 0.5013467701847889 0.003023625947147205 0.8652415864938384 0.5013460428563862 -0.003024498956473901 0.7082035258586333 -0.7060018543654559 -0.003024498957837877 0.7082029736233368 -0.7060024083224629 0.003024498956473901 -0.7082035258586333 0.7060018543654559 0.003024498957837877 -0.7082029736233368 0.7060024083224629 -0.7524548626014672 0.3301727897440394 -0.5699101759576202 -0.7524548560904877 0.3302906965735977 -0.5698418599074405 0.7524548626014672 -0.3301727897440394 0.5699101759576202 0.7524548560904877 -0.3302906965735977 0.5698418599074405 -0.7524550849515038 -0.3284703658453776 -0.5708927779294718 -0.7524550849804075 -0.3283542750975831 -0.5709595564593596 0.7524550849804075 0.3283542750975831 0.5709595564593596 0.7524550849515038 0.3284703658453776 0.5708927779294718 -0.003023436767652145 -0.7060015557338235 -0.7082038280972031 -0.003023436769444781 -0.7060023070751241 -0.7082030790915156 0.003023436767652145 0.7060015557338235 0.7082038280972031 0.003023436769444781 0.7060023070751241 0.7082030790915156 -0.003024066204165313 0.5013465000752155 -0.86524132002923 -0.003024066201718197 0.5013460802322781 -0.8652415632985611 0.003024066201718197 -0.5013460802322781 0.8652415632985611 0.003024066204165313 -0.5013465000752155 0.86524132002923 -0.7524593774133471 0.1714196849035536 -0.6359403879061972 -0.7524593773351924 0.171545207486858 -0.6359065397121069 0.7524593774133471 -0.1714196849035536 0.6359403879061972 0.7524593773351924 -0.171545207486858 0.6359065397121069 -0.7524551617968616 -0.1695201961406735 -0.6364543444628897 -0.7524551621628105 -0.169389900494532 -0.6364890341121294 0.7524551621628105 0.169389900494532 0.6364890341121294 0.7524551617968616 0.1695201961406735 0.6364543444628897 -0.003023456200964241 -0.498649628175152 -0.8667983658460503 -0.00302345619967725 -0.4986502339698029 -0.8667980173457189 0.00302345619967725 0.4986502339698029 0.8667980173457189 0.003023456200964241 0.498649628175152 0.8667983658460503 -0.003023170420924781 0.260321986899808 -0.9655171275420972 -0.00302317041934693 0.2603211190972351 -0.9655173615179473 0.00302317041934693 -0.2603211190972351 0.9655173615179473 0.003023170420924781 -0.260321986899808 0.9655171275420972 -0.7524572925624328 0.0009838075905523819 -0.6586403077494104 -0.7524572962038846 0.001116597773462055 -0.6586400918551432 0.7524572925624328 -0.0009838075905523819 0.6586403077494104 0.7524572962038846 -0.001116597773462055 0.6586400918551432 -0.003023757163787752 -0.2573148938061689 -0.9663228768471408 -0.003023757164135984 -0.257314121269845 -0.9663230825597305 0.003023757163787752 0.2573148938061689 0.9663228768471408 0.003023757164135984 0.257314121269845 0.9663230825597305 -0.003023376607918181 0.00155726701169435 -0.9999942170399491 -0.003023376605318863 0.001558049788827533 -0.9999942158206505 0.003023376607918181 -0.00155726701169435 0.9999942170399491 0.003023376605318863 -0.001558049788827533 0.9999942158206505</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID407\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID405\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID408\">-3.696624459452266 5.823858262090928 -4.040246963321643 6.795564893228256 0.9890827628466336 6.463093582785248 0.8935679007835635 7.468892618247301 -0.9529481975090883 6.466222128749999 -0.8551161998463231 7.471883329228509 3.729258442558688 5.811233706692518 4.07507250558566 6.782456078829257 -7.669972009859915 -1.835835337729923 -7.554321652554542 2.111785202383856 7.520717237189627 -2.106470744697186 7.63609149265897 1.831723202669839 -6.629265165315137 5.393041111258648 -2.241789872750055 7.291664938508001 -5.90273736965205 4.562006538717816 -1.735763312451184 6.364938643819828 1.768131448370683 6.359083708982839 2.27580128791188 7.285250498133096 5.926144752668277 4.543403046768413 6.654145913192843 5.373626057838043 7.555789239779621 2.108606428206098 7.668686127052055 -1.839057708593067 -7.634813705495054 1.834989415906823 -7.522186994038186 -2.10322894330467 -7.595724971270944 2.017799588171895 7.598413731494718 1.926247716636706 -7.632211106838805 -1.930765085388588 7.562014832044193 -2.012872824046142 -8.324555039492182 3.660162647609309 -4.81941465461502 6.4734078982287 -7.324240456616781 3.029240377010939 -3.995200295744808 5.700833126747577 4.020265958111306 5.689488510288188 4.845342759447187 6.461479132204169 7.337817537611757 3.009063783125704 8.338854610045059 3.639262429833399 7.632062042614949 -1.931080970865312 -7.562169654384618 -2.01252978617579 7.595891934628797 2.017484888043871 -7.598253173295223 1.926593136966556 -7.604280525974141 1.99775209317084 7.590162806256027 1.94624081239991 -7.623955884291689 -1.950882992818789 7.570534444041288 -1.992951860281939 -9.221774272756345 1.91194394298594 -6.718836162952989 5.323810449893363 -8.053104492918207 1.49712621750965 -5.675786398794395 4.737275524689899 5.693691067492606 4.723354330334615 6.737080334535841 5.309500309403943 8.058934044048545 1.477726111620418 9.227804990882156 1.892125520133433 7.604353213083794 1.997658685379888 7.623905935675444 -1.950977619621975 -7.590091221085666 1.946343936349168 -7.570585176680469 -1.992873761941959 -7.608357971913602 1.988098722674424 7.586171209310034 1.955863353392116 -7.619941292962327 -1.960561098109789 7.574615404368769 -1.983378289115803 -9.530272482541513 0.2746756156189894 -8.039325504952567 4.035248474488306 -8.274409480860204 0.07154880520611728 -6.858172886042456 3.642920142785312 6.870173671642146 3.627808949292373 8.051367441154209 4.019989372762995 8.274442799196638 0.05352251049803518 9.530305767400433 0.2564839307956014 7.608407674373749 1.988121343208024 7.619919383937229 -1.960542415976749 -7.586121691995373 1.955936271722545 -7.574637547254818 -1.98328952605131 -7.611019100226375 1.981758278354976 7.583544916727871 1.962188646121968 -7.617277576123059 -1.966904209989248 7.577301328813645 -1.977040668559802 -9.405511470881637 -1.240742243288395 -8.907815301433299 2.678985865460446 -8.123357840021573 -1.240750832424818 -7.650419727648758 2.481813686900803 7.657930885613808 2.465945293105961 8.915288502883657 2.663096804961726 8.119140709179817 -1.257537690235669 9.401272865435805 -1.257546018046028 7.611084735482613 1.981768564680788 7.617292804392591 -1.966902198835446 -7.583479377394854 1.962214253446523 -7.577286260901328 -1.977014389700738 -7.613120069812265 1.976745737194301 7.581459565158655 1.967310797641272 -7.615123097651352 -1.971918595009516 7.579461129931657 -1.971921953343625 -9.40150003157304 1.257442113621577 -8.119346403993839 1.257431712139362 -8.915537713431498 -2.663206671196163 -7.658166793412561 -2.466041118855443 7.650148767210773 -2.481713396774992 8.123108074390222 1.240849617657296 8.907523179620583 -2.678883862796719 9.4052402334673 1.240842837764527 -7.581390237913452 1.967188101395981 7.613189535885248 1.976618480108285 -7.57943764585014 -1.972050019822055 7.615146667941806 -1.972047747371725 7.579485914074268 1.97196708429726 7.581436772792678 -1.967275288237997 -7.615098313537803 1.971965794024384 -7.613142864168738 -1.976698898278629 -9.530625737779101 -0.25656725043594 -8.274749853594916 -0.05359064644060455 -8.051667980628185 -4.020064251666414 -6.870443660400792 -3.627887047345771 6.857934007589495 -3.64281816651194 8.274163615890476 -0.07144692779477511 8.039062677012478 -4.035156716714083 9.530005361959193 -0.2745723376109419 -7.579437553117938 1.972059733917022 7.615146760673897 1.972057399417009 -7.581436910305003 -1.967173248538126 7.613142749986364 -1.976607435662339 7.577315792308811 1.976949996703046 7.583505855838784 -1.96227509970517 -7.617263129816307 1.966838229966558 -7.611058272200855 -1.981825946153671 -9.227871799659241 -1.89215435520369 -8.058966808118642 -1.477763534671876 -6.737129216083037 -5.309523955305282 -5.693760167031574 -4.723377340212994 5.67558565569558 -4.737197305973607 8.052840575659085 -1.49704295134452 6.718603029494449 -5.323738691458113 9.221486487586468 -1.911869754300307 -7.577285369609861 1.977050570888327 7.617293560270303 1.966914482853697 -7.58353067722906 -1.962188734427586 7.611033394817669 -1.981754273956296 7.574638852779416 1.983381936755945 7.586122794998227 -1.955846374730674 -7.619918079974323 1.960632188041886 -7.608406550904774 -1.988032733024195 -8.338839386390088 -3.639205298984838 -7.337822183067741 -3.009007241083356 -4.845341235349157 -6.46142968527283 -4.020258889731459 -5.689438975694102 3.995128624001985 -5.700755173353182 7.324198181243452 -3.029144275291806 4.819358432886512 -6.47331750582667 8.324474868783517 -3.660076593319374 -7.574614745364233 1.983312116988463 7.619942024878952 1.960505775974488 -7.586170583499415 -1.95591014113808 7.60835859070232 -1.988135387999505 -7.604356035217696 -1.99769600445393 -7.623909739917847 1.950936307139087 7.590088410733276 -1.946377631840885 7.570581331427527 1.992838049551194 -6.654222092787895 -5.373730949672475 -5.926219203160268 -4.543505385850812 -2.275894023815066 -7.285346259589042 -1.768164791791738 -6.359189590593228 1.735701167858861 -6.364888541509357 5.902663718800884 -4.56193950172254 2.241735351137526 -7.291601797073808 6.629208755942161 -5.392962666056423 7.604268587691806 -1.997775046101012 -7.590174738516678 -1.946265886184374 7.623938984367359 1.950861077277974 -7.570551389136386 1.992910516343811 -7.59588595364065 -2.017442116402822 -7.632050366310129 1.931128964526406 7.59825903017894 -1.926544287206376 7.562181491525478 2.012562850542992 -4.075150813204585 -6.782473277036217 -3.729273224583506 -5.811255341959331 0.8550672826260229 -7.471889629038476 0.9528974804567071 -6.466230103660284 -0.9891114730239413 -6.463016631894419 3.696609987697176 -5.823790531437526 -0.8935970025749593 -7.468813907025647 4.040236589761045 -6.795486286170825 7.632213683143744 1.930717081479863 7.595726351403361 -2.01783708517383 -7.562012115608883 2.012838846303647 -7.598412396963864 -1.926287761518784 -7.668671507496315 1.83911283206964 7.522201914891844 2.103271019508454 -7.555790432103792 -2.108548548224249 7.634813601656944 -1.834968467158941 7.669984821502206 1.835824551549613 7.554320332815763 -2.111817851860591 -7.52070372868721 2.106484885781963 -7.636091856533377 -1.831723312270308</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID408\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID404\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID402\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID403\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID404\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 2 8 9 8 2 1 12 13 14 13 12 15 0 20 3 20 0 21 9 24 25 24 9 8 28 14 29 14 28 12 13 32 33 32 13 15 21 36 20 36 21 37 25 40 41 40 25 24 44 28 29 28 44 45 33 48 49 48 33 32 37 52 36 52 37 53 41 56 57 56 41 40 60 44 61 44 60 45 49 64 65 64 49 48 53 68 52 68 53 69 57 72 73 72 57 56 76 61 77 61 76 60 65 80 81 80 65 64 69 84 68 84 69 85 73 88 89 88 73 72 92 77 93 77 92 76 81 96 97 96 81 80 84 100 101 100 84 85 88 104 89 104 88 105 92 108 109 108 92 93 112 96 113 96 112 97 101 116 117 116 101 100 105 120 104 120 105 121 109 124 125 124 109 108 128 113 129 113 128 112 117 132 133 132 117 116 121 136 120 136 121 137 125 140 141 140 125 124 144 129 145 129 144 128 133 148 149 148 133 132 137 152 136 152 137 153 141 156 157 156 141 140 145 160 144 160 145 161 149 164 165 164 149 148 153 168 152 168 153 169 172 157 156 157 172 173 161 176 160 176 161 177 165 180 181 180 165 164 169 180 168 180 169 181 184 172 185 172 184 173 176 188 189 188 176 177 188 185 189 185 188 184</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID404\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID405\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 7 3 6 2 5 1 6 4 7 5 10 6 11 7 10 6 7 5 16 8 17 9 18 10 19 11 18 10 17 9 22 12 5 13 23 14 4 15 23 14 5 13 10 16 11 17 26 18 27 19 26 18 11 17 17 20 30 21 19 22 31 23 19 22 30 21 16 24 18 25 34 26 35 27 34 26 18 25 38 28 22 29 39 30 23 31 39 30 22 29 26 32 27 33 42 34 43 35 42 34 27 33 46 36 47 37 30 38 31 39 30 38 47 37 34 40 35 41 50 42 51 43 50 42 35 41 54 44 38 45 55 46 39 47 55 46 38 45 42 48 43 49 58 50 59 51 58 50 43 49 46 52 62 53 47 54 63 55 47 54 62 53 50 56 51 57 66 58 67 59 66 58 51 57 70 60 54 61 71 62 55 63 71 62 54 61 58 64 59 65 74 66 75 67 74 66 59 65 62 68 78 69 63 70 79 71 63 70 78 69 66 72 67 73 82 74 83 75 82 74 67 73 86 76 70 77 87 78 71 79 87 78 70 77 74 80 75 81 90 82 91 83 90 82 75 81 78 84 94 85 79 86 95 87 79 86 94 85 82 88 83 89 98 90 99 91 98 90 83 89 86 92 87 93 102 94 103 95 102 94 87 93 106 96 90 97 107 98 91 99 107 98 90 97 95 100 94 101 110 102 111 103 110 102 94 101 99 104 114 105 98 106 115 107 98 106 114 105 102 108 103 109 118 110 119 111 118 110 103 109 122 112 106 113 123 114 107 115 123 114 106 113 110 116 111 117 126 118 127 119 126 118 111 117 114 120 130 121 115 122 131 123 115 122 130 121 118 124 119 125 134 126 135 127 134 126 119 125 138 128 122 129 139 130 123 131 139 130 122 129 126 132 127 133 142 134 143 135 142 134 127 133 130 136 146 137 131 138 147 139 131 138 146 137 134 140 135 141 150 142 151 143 150 142 135 141 154 144 138 145 155 146 139 147 155 146 138 145 142 148 143 149 158 150 159 151 158 150 143 149 162 152 147 153 163 154 146 155 163 154 147 153 150 156 151 157 166 158 167 159 166 158 151 157 170 160 154 161 171 162 155 163 171 162 154 161 174 164 175 165 159 166 158 167 159 166 175 165 178 168 162 169 179 170 163 171 179 170 162 169 166 172 167 173 182 174 183 175 182 174 167 173 183 176 170 177 182 178 171 179 182 178 170 177 174 180 186 181 175 182 187 183 175 182 186 181 178 184 179 185 190 186 191 187 190 186 179 185 186 188 190 189 187 190 191 191 187 190 190 189</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID409\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID410\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID414\">0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 0.4757403116530008 1.787046344116789 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.9220519445225366 1.603022710678486 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 0.9220519445225366 1.603022710678486 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151476 1.785497189630175 0.4815196415974014 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.7557056430950975 1.361733376410932 -1.357502525122301 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151387 1.309760632593005 -1.305527979088765 0.7557056430950975 1.361733376410932 -1.357502525122301 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.84819144251514 1.603025714371136 -0.9220525452610677 0.84819144251514 1.603025714371136 -0.9220525452610677 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.7557056430950979 1.858045828870668 -0.494764837365608 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.7557056430950979 1.858045828870668 -0.494764837365608 0.7557056430950908 1.922786669424786 0.002991490153192444 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151409 1.849288112382276 0.00299149015319311 0.7557056430950908 1.922786669424786 0.002991490153192444 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.60003328556399 0.9272330890747753 0.7557056430950908 1.663689943254438 0.9639850709194202 0.7557056430950908 1.663689943254438 0.9639850709194202 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.7557056430950904 1.357503426230103 1.361732775672407 0.7557056430950904 1.357503426230103 1.361732775672407 0.8481914425151351 1.305526777611701 1.309757628900341</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID414\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID411\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID415\">0.6221918684034155 -0.001303781729081092 0.7828637040033659 0.6221941339063147 0.2014863019961419 0.7564904030062049 0.6221918691918711 -0.001174692367902513 0.7828639077191937 0.6221941321218698 0.2013597797845118 0.7565240915121251 -0.6221941321218698 -0.2013597797845118 -0.7565240915121251 -0.6221918684034155 0.001303781729081092 -0.7828637040033659 -0.6221941339063147 -0.2014863019961419 -0.7564904030062049 -0.6221918691918711 0.001174692367902513 -0.7828639077191937 0.6221901218932683 -0.2038805206493446 0.7558519600544753 0.6221901229061849 -0.2037543408673254 0.755885983158643 -0.6221901218932683 0.2038805206493446 -0.7558519600544753 -0.6221901229061849 0.2037543408673254 -0.755885983158643 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 0.622195876340844 0.3903006052975382 0.678629301584322 0.6221958765038165 0.3904133786148501 0.6785644295571243 -0.622195876340844 -0.3903006052975382 -0.678629301584322 -0.6221958765038165 -0.3904133786148501 -0.6785644295571243 0.6221894238249361 -0.3924488889485895 0.677395150885664 0.6221894242877948 -0.392561562997384 0.6773298602316846 -0.6221894242877948 0.392561562997384 -0.6773298602316846 -0.6221894238249361 0.3924488889485895 -0.677395150885664 0.6221894259644839 -0.5544921390400044 0.5526470717925018 0.6221894262295475 -0.5543996744161857 0.5527398293007061 -0.6221894259644839 0.5544921390400044 -0.5526470717925018 -0.6221894262295475 0.5543996744161857 -0.5527398293007061 0.6221935983998548 -0.6785663445167995 0.3904136808557666 0.6221936044128955 -0.6786309659335652 0.3903013332077736 -0.6221935983998548 0.6785663445167995 -0.3904136808557666 -0.6221936044128955 0.6786309659335652 -0.3903013332077736 0.6222050039132737 -0.7564827860628643 0.2014813328719305 0.6222050124535287 -0.7565155769512322 0.2013581493455097 -0.6222050039132737 0.7564827860628643 -0.2014813328719305 -0.6222050124535287 0.7565155769512322 -0.2013581493455097 0.6222055415468412 -0.7828530407950558 -0.001174983547447636 0.6222055340692866 -0.7828528419120427 -0.001304332699868602 -0.6222055415468412 0.7828530407950558 0.001174983547447636 -0.6222055340692866 0.7828528419120427 0.001304332699868602 0.6221917009441136 -0.7558510087740555 -0.203879228494502 0.6221917107911614 -0.7558845909667217 -0.2037546567856542 -0.6221917009441136 0.7558510087740555 0.203879228494502 -0.6221917107911614 0.7558845909667217 0.2037546567856542 0.6221815841653294 -0.6773359418068746 -0.392563495834897 0.6221815865170676 -0.6773995833087608 -0.3924536634205645 -0.6221815841653294 0.6773359418068746 0.392563495834897 -0.6221815865170676 0.6773995833087608 0.3924536634205645 0.6221798007864562 -0.5526539130480859 -0.554496120713179 0.6221798004943125 -0.5527449429825729 -0.5544053786391775 -0.6221798007864562 0.5526539130480859 0.554496120713179 -0.6221798004943125 0.5527449429825729 0.5544053786391775 0.6221838439383094 -0.3903078065454426 -0.678636191557623 0.622183838657477 -0.3904185239302142 -0.6785725068742466 -0.6221838439383094 0.3903078065454426 0.678636191557623 -0.622183838657477 0.3904185239302142 0.6785725068742466 0.6221885184214142 -0.201487412154011 -0.7564947258825042 0.6221885190971537 -0.2013628297434559 -0.7565278960497087 -0.6221885190971537 0.2013628297434559 0.7565278960497087 -0.6221885184214142 0.201487412154011 0.7564947258825042 0.6221871363076309 0.00130441775786443 -0.7828674638197849 0.6221871383491345 0.001175274353274519 -0.7828676667247855 -0.6221871363076309 -0.00130441775786443 0.7828674638197849 -0.6221871383491345 -0.001175274353274519 0.7828676667247855 0.6221898070491942 0.2038792279466273 -0.7558525679098893 0.6221898011836357 0.2037549411636534 -0.7558860861627658 -0.6221898070491942 -0.2038792279466273 0.7558525679098893 -0.6221898011836357 -0.2037549411636534 0.7558860861627658 0.6221939030436636 0.3925585914201147 -0.6773274683028494 0.6221939035143759 0.3924479534520299 -0.6773915782328985 -0.6221939030436636 -0.3925585914201147 0.6773274683028494 -0.6221939035143759 -0.3924479534520299 0.6773915782328985 0.6221903896076413 0.5543987480332496 -0.5527396740410957 0.6221903859354878 0.5544908010891638 -0.5526473334387365 -0.6221903859354878 -0.5544908010891638 0.5526473334387365 -0.6221903896076413 -0.5543987480332496 0.5527396740410957 0.6221910156914612 0.678568769305014 -0.3904135823927066 0.6221910202362403 0.6786331798213453 -0.3903016033568862 -0.6221910202362403 -0.6786331798213453 0.3903016033568862 -0.6221910156914612 -0.678568769305014 0.3904135823927066 0.6221853496726847 0.7564982237091488 -0.2014840643266405 0.6221853387884145 0.7565314500689442 -0.2013593038658174 -0.6221853387884145 -0.7565314500689442 0.2013593038658174 -0.6221853496726847 -0.7564982237091488 0.2014840643266405 0.6221793638195623 0.7828738475245173 0.001173924718077005 0.622179367250408 0.7828736406861537 0.00130295306474845 -0.622179367250408 -0.7828736406861537 -0.00130295306474845 -0.6221793638195623 -0.7828738475245173 -0.001173924718077005 0.622189223507684 0.7558868877678742 0.2037537313805625 0.6221892329183988 0.7558531905054573 0.2038786718691672 -0.6221892329183988 -0.7558531905054573 -0.2038786718691672 -0.622189223507684 -0.7558868877678742 -0.2037537313805625 0.6221951309101329 0.6773259154460521 0.3925593246082557 0.6221951326288879 0.6773907079233851 0.3924475070018612 -0.6221951326288879 -0.6773907079233851 -0.3924475070018612 -0.6221951309101329 -0.6773259154460521 -0.3925593246082557 0.6221949112080535 0.5526439122938858 0.554489133050694 0.6221949093854745 0.55273621248258 0.5543971267468953 -0.6221949093854745 -0.55273621248258 -0.5543971267468953 -0.6221949112080535 -0.5526439122938858 -0.554489133050694</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID415\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID413\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID416\">-1.399394685447692 3.99758154621831 3.662193290876626 4.107473716139581 -1.250023878680641 4.919473912535772 3.325059649491211 3.216767926096336 -3.346531992851785 3.203384761442292 1.219983462261442 4.924407217212858 -3.68705615598036 4.093286913307604 1.372898142287666 4.002874476983909 -13.05527828904129 -10.30342549923025 -13.66913394578432 -0.02353490189121231 -16.00031333163775 -7.294225363887784 -13.19562582832752 -2.805824911607605 -11.82288121501415 -5.396910799146412 -9.220524701687543 -12.61044414255163 -9.644378024947853 -7.620210540823365 -6.808676644055874 -9.324186320342909 -4.757417384070129 -14.05810026995697 -3.508928026645748 -10.39275039272216 0.02993367461101789 -14.54771542895396 0.02993367461098014 -10.75306030751745 3.56674422924643 -10.38057079947547 4.815205427051927 -14.04592303961512 6.860518126504815 -9.300652969108006 9.272333143517251 -12.58691433567411 9.686716574760796 -7.58692666256699 13.09760632593005 -10.27015343549829 11.8527964920076 -5.35615068982347 13.21113689719592 -2.760366756640539 16.03025714371136 -7.2534800227204 13.66916248086444 0.02353305587179104 16.0003328556399 7.294233634054899 17.85497189630175 3.787954513899558 17.87046043747516 -3.742493405301364 18.49288112382276 0.0235330558717858 -17.85496739076283 -3.787953332447107 -17.87042739685603 3.742497540384916 -18.4927970204285 -0.02353490189122628 -16.03022410309207 7.253473524731939 -13.09757328531092 10.27014516533118 -13.2110843325745 2.760368233456089 -11.85278748092962 5.356150689823473 -9.272324132439298 12.58691788003143 -9.686702307220683 7.586924890388302 -6.860480580346522 9.300657694917794 -4.815191534973343 14.0459159509005 -3.5666972965487 10.38056843657058 -0.02990082172258827 14.54770834023929 -0.02990082172260382 10.75306267042233 3.508941918724347 10.39274802981726 4.757403116530008 14.05809790705208 6.80868640605695 9.324190455426477 9.220519445225365 12.61044532400409 9.644406560028058 7.620199907751378 13.05526777611702 10.30342668068269 11.8228864714763 5.396912571325081 13.19564835602249 2.805823139428946 1.162658492477524 4.932771090314962 4.606236932793788 2.014872649270415 5.339868907720868 2.743315371972167 0.5886060988810937 4.120513442521916 -5.353301219116173 2.726315394172552 -0.611291521408307 4.117988780848812 -1.187571050858884 4.929264283026042 -4.617667416210899 1.999131421715409 -5.164343543501015 0.8290711333373181 -2.99636583736415 4.428807317739661 -6.141480814850693 1.351387648974424 -2.139599332309027 3.788942846944112 -3.20239465897159 3.292826485442597 -6.372640036501849 0.1891437608247533 -5.26773872097306 -0.1397922540547897 -4.225021602925385 3.758142633215543 -3.943277568442837 2.750953874283442 -6.301440743977258 -0.7720073775261384 -5.136984467603375 -0.9288234656837572 -5.060075937571718 3.054007997932716 -4.477181062845431 2.188046769828072 -6.045781765648268 -1.597450497087772 -4.864377425616241 -1.59744239333856 -5.642996750969768 2.338482509684357 -4.471180360231378 -2.195912950284375 -6.049493045559932 1.588934727628423 -5.636963394135375 -2.34637225796323 -4.868088702938565 1.588940824409902 -3.935010939522044 -2.758405912819115 -6.303369004477561 0.7623055482335482 -5.051724644990093 -3.061634706345457 -5.138980702977859 0.9193062601172498 -3.190956910517112 -3.299940318090963 -6.372186186701201 -0.2009621428356244 -4.213235749099931 -3.765702618015408 -5.267538473975297 0.1284836752139618 -2.123166668350666 -3.794862669340203 -6.13638914881693 -1.36597498609087 -2.978922285784557 -4.43555752449242 -5.160082680879592 -0.8427219285103885 -1.16256291986312 -4.932657257001637 -4.606122629645602 -2.014735477800759 -5.339735788379853 -2.743176144763794 -0.5885197661079195 -4.120399914351149 1.399436221034114 -3.997516865119874 -3.662179849014553 -4.107398405247095 1.250064419912603 -4.919404685624561 -3.325063773367089 -3.216692463880472 3.346512787926854 -3.203272247311469 -1.21997784929461 -4.924298380406616 3.68705418545108 -4.093164790378991 -1.372895805521925 -4.00277042444336 4.617747902423629 -1.999222052002686 1.187652019463948 -4.929337193170962 5.353407928182614 -2.726409124851045 0.6113642978876138 -4.118071356985403 6.141565090651655 -1.351438121476672 2.139663964115627 -3.788989196166075 2.996454837881586 -4.42885565877945 5.164438050886696 -0.8291264049415041 6.372654774740514 -0.1890906805768049 3.202401858901243 -3.292778259440419 4.225021696139704 -3.75808538423671 5.267743730206006 0.1398428529100231 6.301322821900057 0.7719723381833509 3.943189382779365 -2.750992348204655 5.059997234893208 -3.054044110362204 5.136887609411004 0.9287968784213682 6.04489261921601 1.597565779340973 4.476345343562111 -2.187929742582891 5.642141342295993 -2.338367823715728 4.863551817964225 1.597558026222105 5.636555464348028 2.346311909831038 4.86769810624192 -1.589009864038318 6.049038901895399 -1.588997567746211 4.470751428024356 2.195852734366363 6.303703735283573 -0.7621972952458326 3.935311944199161 2.758511066035775 5.13929496892643 -0.9192004917269404 5.05203837862957 3.061732231587077 6.372547766122596 0.2010852094342388 3.191244841452139 3.300055229866782 5.267888059821077 -0.1283553981323895 4.213545717048607 3.765827006196082 2.979191962199724 4.435783737510645 5.160386065421639 0.8429754464373749 6.136714648690377 1.366238049433706 2.123424527614135 3.795082979436403</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID416\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID412\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID410\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID411\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"192\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID412\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID413\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 2 5 9 6 2 5 8 4 0 7 5 7 10 4 7 5 11 6 7 5 10 4 12 8 13 9 14 10 13 9 12 8 15 11 15 11 12 8 16 12 16 12 12 8 17 13 16 12 17 13 18 14 18 14 17 13 19 15 19 15 17 13 20 16 19 15 20 16 21 17 21 17 20 16 22 18 21 17 22 18 23 19 23 19 22 18 24 20 24 20 22 18 25 21 24 20 25 21 26 22 26 22 25 21 27 23 26 22 27 23 28 24 28 24 27 23 29 25 28 24 29 25 30 26 30 26 29 25 31 27 31 27 29 25 32 28 31 27 32 28 33 29 33 29 32 28 34 30 34 30 32 28 35 31 35 31 32 28 36 32 35 31 36 32 37 33 38 34 39 35 40 36 39 35 38 34 41 37 41 37 38 34 14 10 41 37 14 10 42 38 42 38 14 10 13 9 42 38 13 9 43 39 42 38 43 39 44 40 42 38 44 40 45 41 45 41 44 40 46 42 45 41 46 42 47 43 45 41 47 43 48 44 48 44 47 43 49 45 48 44 49 45 50 46 50 46 49 45 51 47 50 46 51 47 52 48 50 46 52 48 53 49 53 49 52 48 54 50 53 49 54 50 55 51 55 51 54 50 56 52 55 51 56 52 57 53 57 53 56 52 58 54 57 53 58 54 59 55 57 53 59 55 34 30 34 30 59 55 33 29 60 29 61 55 62 30 62 30 61 55 63 53 61 55 64 54 63 53 64 54 65 52 63 53 63 53 65 52 66 51 65 52 67 50 66 51 66 51 67 50 68 49 67 50 69 48 68 49 68 49 69 48 70 46 69 48 71 47 70 46 71 47 72 45 70 46 70 46 72 45 73 44 72 45 74 43 73 44 73 44 74 43 75 41 74 43 76 42 75 41 76 42 77 40 75 41 75 41 77 40 78 38 77 40 79 39 78 38 79 39 80 9 78 38 80 9 81 10 78 38 78 38 81 10 82 37 81 10 83 34 82 37 82 37 83 34 84 35 85 36 84 35 83 34 86 33 87 32 88 31 87 32 89 28 88 31 88 31 89 28 62 30 62 30 89 28 60 29 60 29 89 28 90 27 89 28 91 25 90 27 90 27 91 25 92 26 92 26 91 25 93 24 91 25 94 23 93 24 93 24 94 23 95 22 94 23 96 21 95 22 95 22 96 21 97 20 96 21 98 18 97 20 97 20 98 18 99 19 99 19 98 18 100 17 98 18 101 16 100 17 100 17 101 16 102 15 101 16 103 13 102 15 102 15 103 13 104 14 104 14 103 13 105 12 103 13 106 8 105 12 105 12 106 8 107 11 107 11 106 8 80 9 81 10 80 9 106 8 1 56 108 57 109 58 108 57 1 56 3 59 4 59 6 56 110 57 111 58 110 57 6 56 112 60 8 61 9 62 8 61 112 60 113 63 114 63 115 60 10 61 11 62 10 61 115 60 116 64 112 65 117 66 112 65 116 64 113 67 114 67 118 64 115 65 119 66 115 65 118 64 116 68 120 69 121 70 120 69 116 68 117 71 119 71 118 68 122 69 123 70 122 69 118 68 121 72 124 73 125 74 124 73 121 72 120 75 122 75 123 72 126 73 127 74 126 73 123 72 125 76 128 77 129 78 128 77 125 76 124 79 126 79 127 76 130 77 131 78 130 77 127 76 132 80 128 81 133 82 128 81 132 80 129 83 131 83 134 80 130 81 135 82 130 81 134 80 136 84 133 85 137 86 133 85 136 84 132 87 134 87 138 84 135 85 139 86 135 85 138 84 140 88 137 89 141 90 137 89 140 88 136 91 138 91 142 88 139 89 143 90 139 89 142 88 144 92 141 93 145 94 141 93 144 92 140 95 142 95 146 92 143 93 147 94 143 93 146 92 148 96 144 97 145 98 144 97 148 96 149 99 150 99 151 96 146 97 147 98 146 97 151 96 152 100 148 101 153 102 148 101 152 100 149 103 150 103 154 100 151 101 155 102 151 101 154 100 156 104 153 105 157 106 153 105 156 104 152 107 154 107 158 104 155 105 159 106 155 105 158 104 160 108 157 109 161 110 157 109 160 108 156 111 158 111 162 108 159 109 163 110 159 109 162 108 164 112 160 113 161 114 160 113 164 112 165 115 166 115 167 112 162 113 163 114 162 113 167 112 168 116 165 117 164 118 165 117 168 116 169 119 170 119 171 116 166 117 167 118 166 117 171 116 172 120 169 121 168 122 169 121 172 120 173 123 174 123 175 120 170 121 171 122 170 121 175 120 176 124 173 125 172 126 173 125 176 124 177 127 178 127 179 124 174 125 175 126 174 125 179 124 180 128 177 129 176 130 177 129 180 128 181 131 182 131 183 128 178 129 179 130 178 129 183 128 180 132 184 133 181 134 184 133 180 132 185 135 186 135 183 132 187 133 182 134 187 133 183 132 185 136 188 137 184 138 188 137 185 136 189 139 190 139 186 136 191 137 187 138 191 137 186 136 109 140 188 141 189 142 188 141 109 140 108 143 110 143 111 140 191 141 190 142 191 141 111 140</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID417\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID418\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID422\">-0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID422\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID419\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID423\">-0.9015424253173537 0.203441541780783 0.381880602323241 -0.913408876044686 0.2046884346174862 0.3518335826731535 -0.914297075399253 0.215116645721763 0.3431991938361602 0.914297075399253 -0.215116645721763 -0.3431991938361602 0.913408876044686 -0.2046884346174862 -0.3518335826731535 0.9015424253173537 -0.203441541780783 -0.381880602323241 -0.9136510681511446 0.2298793945988548 0.3352569009060609 0.9136510681511446 -0.2298793945988548 -0.3352569009060609 -0.9117782845679017 0.2541872650090479 0.3225665731250447 0.9117782845679017 -0.2541872650090479 -0.3225665731250447 -0.9120084709463099 0.1943087758477377 0.3612265889310024 0.9120084709463099 -0.1943087758477377 -0.3612265889310024 -0.9141809063392639 0.1816931123289236 0.3622994388857799 0.9141809063392639 -0.1816931123289236 -0.3622994388857799 -0.914761389475236 0.2626135214064524 0.306994688390269 0.914761389475236 -0.2626135214064524 -0.306994688390269 -0.9126379924856676 0.2390954511057188 0.3315497849980955 0.9126379924856676 -0.2390954511057188 -0.3315497849980955 -0.9141710218943564 0.2509149231036151 0.3183285159902191 0.9141710218943564 -0.2509149231036151 -0.3183285159902191 -0.9164054954864268 0.1852852093678754 0.3547821289633675 0.9164054954864268 -0.1852852093678754 -0.3547821289633675 -0.8960867889457255 0.2095902619358588 0.3912804477335874 0.8960867889457255 -0.2095902619358588 -0.3912804477335874 -0.907217225171867 0.2176423778275239 0.3599843076094281 0.907217225171867 -0.2176423778275239 -0.3599843076094281 -0.8562445711454921 0.1718809545737532 0.4871367075459286 0.8562445711454921 -0.1718809545737532 -0.4871367075459286 -0.8755394211216304 0.1676337555122239 0.4531331438714985 0.8755394211216304 -0.1676337555122239 -0.4531331438714985</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID423\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID421\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID424\">7.438147269351948 -8.945061733813203 11.48721830684091 -14.18013834552815 11.91024662259696 -14.00044492351452 5.955123311298482 -7.00022246175726 5.743609153420457 -7.090069172764073 3.719073634675974 -4.472530866906602 8.254929826970962 -8.487481463314271 12.88197936170507 -13.45581934143577 13.28861338462427 -13.18460323054936 6.644306692312134 -6.592301615274679 6.440989680852535 -6.727909670717886 4.127464913485481 -4.243740731657136 8.460166676803608 -8.414954825070682 12.39471472312215 -13.45941836602513 12.70973102284357 -13.55074890505256 6.354865511421787 -6.775374452526281 6.197357361561076 -6.729709183012567 4.230083338401804 -4.207477412535341 7.486582909888019 -8.962355583693171 12.38139310001852 -13.74944422881806 12.3713572617144 -13.48543642483197 6.185678630857198 -6.742718212415983 6.19069655000926 -6.874722114409029 3.74329145494401 -4.481177791846585 7.360925690233538 -8.961744858697601 10.65623561054411 -13.82917257110459 11.08396695669552 -14.10459549978603 5.54198347834776 -7.052297749893013 5.328117805272056 -6.914586285552295 3.680462845116769 -4.480872429348801 8.419948186108105 -8.356981608688461 13.46124800907294 -12.7724965200221 13.26768441638996 -12.36521479670056 6.633842208194981 -6.182607398350278 6.730624004536471 -6.386248260011051 4.209974093054052 -4.17849080434423 8.259253079178057 -8.537099214004153 9.876498001695808 -11.98045450806011 11.72036966567479 -13.33278326480139 5.860184832837393 -6.666391632400697 4.938249000847904 -5.990227254030056 4.129626539589029 -4.268549607002076 8.323250129800233 -8.425467281546748 13.15729410283716 -12.4439210471574 11.97966509082454 -10.58711210718703 5.989832545412269 -5.293556053593514 6.578647051418579 -6.221960523578701 4.161625064900116 -4.212733640773374 6.956289496105613 -10.6269661093069 8.850256094164777 -12.34833197236433 7.350777491034236 -8.872150234277518 3.675388745517118 -4.436075117138759 4.425128047082389 -6.174165986182165 3.478144748052807 -5.313483054653452 7.951820622852295 -8.756422366433158 11.57804377148073 -10.94931484447147 10.13372814794584 -9.101011452070644 5.066864073972921 -4.550505726035322 5.789021885740366 -5.474657422235735 3.975910311426147 -4.378211183216579 7.059350620025528 -10.00408034766921 7.554866048665636 -10.57803416141198 7.911156915166181 -8.818168903335222 3.955578457583091 -4.409084451667611 3.777433024332818 -5.28901708070599 3.529675310012764 -5.002040173834605 7.514844530510416 -9.783809952703798 9.68941088965202 -10.15601053307976 9.193989107545409 -9.508454846182369 4.596994553772705 -4.754227423091185 4.84470544482601 -5.078005266539878 3.757422265255208 -4.891904976351899 7.370703582872622 -9.539412442323325 9.051855465856226 -9.271744288876676 8.659595885478712 -9.110994827756787 4.329797942739356 -4.555497413878394 4.525927732928113 -4.635872144438338 3.685351791436311 -4.769706221161663</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"78\" source=\"#ID424\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID420\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID418\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID419\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID420\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID421\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 0 6 2 7 6 8 0 12 8 13 1 14 0 18 6 19 10 20 0 24 12 25 8 26 0 30 10 31 14 32 0 36 16 37 12 38 0 42 14 43 18 44 20 48 16 49 0 50 0 54 18 55 22 56 24 60 20 61 0 62 0 66 22 67 26 68 0 72 26 73 28 74</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID420\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID421\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 7 9 3 10 5 11 4 15 9 16 5 17 11 21 7 22 5 23 9 27 13 28 5 29 15 33 11 34 5 35 13 39 17 40 5 41 19 45 15 46 5 47 5 51 17 52 21 53 23 57 19 58 5 59 5 63 21 64 25 65 27 69 23 70 5 71 29 75 27 76 5 77</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID425\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID426\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID430\">-0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID430\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID427\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID431\">-0.9142974941597579 -0.4048897335756242 0.01115328732918963 -0.9119121534907809 -0.4102455541326406 0.01071492558113266 -0.9134093689969149 -0.4070360955457695 -0.002222960079090378 0.9134093689969149 0.4070360955457695 0.002222960079090378 0.9119121534907809 0.4102455541326406 -0.01071492558113266 0.9142974941597579 0.4048897335756242 -0.01115328732918963 -0.9136502264216238 -0.4055454024125849 0.02786019277984999 0.9136502264216238 0.4055454024125849 -0.02786019277984999 -0.9117790669024211 -0.4069450223696586 0.05526917700770017 0.9117790669024211 0.4069450223696586 -0.05526917700770017 -0.9120015951730859 -0.4098723359248514 -0.01605486360118063 0.9120015951730859 0.4098723359248514 0.01605486360118063 -0.9141814459760682 -0.4043812773638791 -0.02735080164569932 0.9141814459760682 0.4043812773638791 0.02735080164569932 -0.9147624108846287 -0.3977990536394137 0.07046732970766671 0.9147624108846287 0.3977990536394137 -0.07046732970766671 -0.9126372670989114 -0.4070248176210724 0.03773614371876295 0.9126372670989114 0.4070248176210724 -0.03773614371876295 -0.9144871313551589 -0.4004184535448701 0.05812356360846403 0.9144871313551589 0.4004184535448701 -0.05812356360846403 -0.9204794639534302 -0.3894229249437765 -0.03267020000305571 0.9204794639534302 0.3894229249437765 0.03267020000305571 -0.9088875917936953 -0.4158717928127509 0.03120893183313543 0.9088875917936953 0.4158717928127509 -0.03120893183313543 -0.9109205019190907 -0.4117843417158877 -0.0256416672836413 0.9109205019190907 0.4117843417158877 0.0256416672836413 -0.9100402409371641 -0.4142768079748553 0.01419458520680808 0.9100402409371641 0.4142768079748553 -0.01419458520680808 -0.8630221137902762 -0.5042508634437252 0.03039568760896014 0.8630221137902762 0.5042508634437252 -0.03039568760896014 -0.9456945690175788 -0.3202907360795988 0.05545833131500434 0.9456945690175788 0.3202907360795988 -0.05545833131500434 -0.8815078276401288 -0.4717714966614515 0.01938052494116135 0.8815078276401288 0.4717714966614515 -0.01938052494116135</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID431\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID429\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID432\">-21.27670996781477 -0.5024825625750654 -13.45535559221688 -0.2253901856971766 -21.24412297407829 -0.125142413745954 -10.62206148703914 -0.06257120687297701 -6.727677796108438 -0.1126950928485883 -10.63835498390739 -0.2512412812875327 -21.24619008053712 -1.035354676238285 -21.18446660970853 -1.451884809972818 -13.42484942034366 -0.7580228247401991 -6.712424710171829 -0.3790114123700996 -10.59223330485427 -0.7259424049864089 -10.62309504026856 -0.5176773381191425 -21.25751011054963 -0.7668235939129079 -13.46874671677735 -0.8672629349756258 -20.98510383527625 -0.6124360400889033 -10.49255191763812 -0.3062180200444516 -6.734373358388677 -0.4336314674878129 -10.62875505527481 -0.3834117969564539 -21.26028882019027 -0.9262762329989754 -20.97141608118763 -1.060835085065468 -13.50058237987369 -0.2330322036721792 -6.750291189936846 -0.1165161018360896 -10.48570804059382 -0.5304175425327341 -10.63014441009513 -0.4631381164994877 -20.9479230613187 0.06512407169546448 -13.43154180529066 -0.1892618490922838 -20.42396479385608 0.2036061404282778 -10.21198239692804 0.1018030702141389 -6.71577090264533 -0.09463092454614187 -10.47396153065935 0.03256203584773224 -20.85307675263828 -1.723023086473669 -20.31535974206487 -1.82375838440512 -13.38256041331185 -0.8934496676200572 -6.691280206655926 -0.4467248338100286 -10.15767987103244 -0.9118791922025602 -10.42653837631914 -0.8615115432368344 -20.47295909683744 -0.3353143390356228 -13.48055350387107 -0.7283738844541267 -18.02003060176221 0.1220255335760297 -9.010015300881104 0.06101276678801487 -6.740276751935537 -0.3641869422270633 -10.23647954841872 -0.1676571695178114 -20.33158400188232 -1.748210110450446 -17.71476096729495 -2.009425410882813 -13.39863503439812 -0.8185917493552359 -6.699317517199058 -0.409295874677618 -8.857380483647473 -1.004712705441407 -10.16579200094116 -0.8741050552252229 -17.86863127354823 0.6202423415971474 -13.32897297677283 -0.2295582768528615 -15.0082564826709 0.9665192416528483 -7.504128241335451 0.4832596208264242 -6.664486488386415 -0.1147791384264307 -8.934315636774112 0.3101211707985737 -17.76961962851651 -1.883509276524634 -15.02644916115231 -1.943272607151886 -13.4529889311389 -0.693808394268258 -6.72649446556945 -0.346904197134129 -7.513224580576157 -0.9716363035759428 -8.884809814258253 -0.9417546382623171 -14.89071638258296 1.073873522804769 -13.21218803543074 -0.1228597901630481 -14.02614066497001 1.087155530817702 -7.013070332485004 0.5435777654088512 -6.60609401771537 -0.06142989508152404 -7.445358191291481 0.5369367614023844 -15.35883216443236 -1.675075450976801 -14.44465413117839 -1.686613223182673 -13.78397498742696 -0.4267008592463119 -6.891987493713481 -0.213350429623156 -7.222327065589196 -0.8433066115913365 -7.679416082216179 -0.8375377254884004 -15.11723179364458 0.6225414511188454 -14.30189428277912 -0.5868967377974099 -14.69836427084818 0.4732769352801142 -7.349182135424091 0.2366384676400571 -7.150947141389562 -0.293448368898705 -7.558615896822288 0.3112707255594227 -13.29140723759785 -2.096895835997954 -12.92434911954095 -1.920022184078838 -12.63674340539486 -0.8350418093976046 -6.318371702697432 -0.4175209046988023 -6.462174559770474 -0.960011092039419 -6.645703618798926 -1.048447917998977 -14.41809006551084 0.5267253828811376 -14.02024496794676 -0.5331294523352237 -14.1800185543271 0.1536412372854066 -7.090009277163551 0.07682061864270329 -7.010122483973378 -0.2665647261676118 -7.209045032755421 0.2633626914405688</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"90\" source=\"#ID432\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID428\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID426\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID427\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID428\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID429\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 0 6 6 7 1 8 2 12 1 13 8 14 6 18 10 19 1 20 8 24 1 25 12 26 10 30 14 31 1 32 12 36 1 37 16 38 14 42 18 43 1 44 16 48 1 49 20 50 18 54 22 55 1 56 20 60 1 61 24 62 22 66 26 67 1 68 24 72 1 73 28 74 26 78 30 79 1 80 28 84 1 85 32 86</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID428\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID429\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 4 9 7 10 5 11 9 15 4 16 3 17 4 21 11 22 7 23 13 27 4 28 9 29 4 33 15 34 11 35 17 39 4 40 13 41 4 45 19 46 15 47 21 51 4 52 17 53 4 57 23 58 19 59 25 63 4 64 21 65 4 69 27 70 23 71 29 75 4 76 25 77 4 81 31 82 27 83 33 87 4 88 29 89</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID433\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID434\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID438\">-0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID438\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID435\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID439\">-0.9105526100805975 0.1847929401693026 -0.369791175582917 -0.9047258764599201 0.221095053799041 -0.3641264418432539 -0.9056830514341907 0.2001496463545517 -0.3737356410740096 0.9056830514341907 -0.2001496463545517 0.3737356410740096 0.9047258764599201 -0.221095053799041 0.3641264418432539 0.9105526100805975 -0.1847929401693026 0.369791175582917 -0.9051369888889698 0.176876174222501 -0.386577094946688 0.9051369888889698 -0.176876174222501 0.386577094946688 -0.904493813809657 0.1911218988267972 -0.3812654725632798 0.904493813809657 -0.1911218988267972 0.3812654725632798 -0.9048570575862879 0.1960303289645085 -0.3778965671481442 0.9048570575862879 -0.1960303289645085 0.3778965671481442 -0.9032828455301246 0.283194694223623 -0.3223055477874834 0.9032828455301246 -0.283194694223623 0.3223055477874834 -0.903932511685058 0.08979039239145804 -0.4181431570083751 0.903932511685058 -0.08979039239145804 0.4181431570083751 -0.9053391715144735 0.2442462075276558 -0.347425926824473 0.9053391715144735 -0.2442462075276558 0.347425926824473 -0.9034477096128234 0.08055611706507812 -0.4210616914405072 0.9034477096128234 -0.08055611706507812 0.4210616914405072 -0.9051167199063447 0.3004841266895872 -0.3007873217966073 0.9051167199063447 -0.3004841266895872 0.3007873217966073 -0.9038086622089847 0.07690250391578957 -0.4209701972913139 0.9038086622089847 -0.07690250391578957 0.4209701972913139 -0.8916242092027337 0.2877059539723708 -0.3496162948325602 0.8916242092027337 -0.2877059539723708 0.3496162948325602 -0.8974554480062785 0.08990498062023532 -0.4318458212180883 0.8974554480062785 -0.08990498062023532 0.4318458212180883 -0.8779052696244868 0.2831733692969536 -0.3861284507603243 0.8779052696244868 -0.2831733692969536 0.3861284507603243 -0.8787757289941988 0.135225059641794 -0.4576760878346039 0.8787757289941988 -0.135225059641794 0.4576760878346039 -0.9571766001854924 0.2406762368571569 -0.1608971878859901 0.9571766001854924 -0.2406762368571569 0.1608971878859901 -0.9663187840262552 -0.06408349179479717 -0.2492414767196787 0.9663187840262552 0.06408349179479717 0.2492414767196787</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID439\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID437\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID440\">7.247890561596551 9.017184793018476 11.62241699167023 14.15859673204485 11.23701380701663 14.38472431556303 5.618506903508315 7.192362157781517 5.811208495835114 7.079298366022423 3.623945280798275 4.508592396509238 6.312270124388578 9.4365141150515 10.09506839990886 14.89571032499116 9.610237607549587 15.07004322533177 4.805118803774794 7.535021612665886 5.047534199954431 7.447855162495579 3.156135062194289 4.71825705752575 6.493139303682451 9.389856794481524 10.73290706126174 14.34965055071956 10.70820329278883 14.61305107737053 5.354101646394414 7.306525538685265 5.366453530630868 7.174825275359781 3.246569651841226 4.694928397240762 6.929856889300352 9.19065053817757 10.37099973231822 14.77093216045764 10.07214180933752 14.65062086041686 5.036070904668759 7.32531043020843 5.185499866159109 7.385466080228818 3.464928444650176 4.595325269088785 7.821705813732769 8.685069065969902 12.17351499889409 13.08321338276301 12.31835537755474 13.50282029479082 6.159177688777371 6.751410147395411 6.086757499447046 6.541606691381505 3.910852906866384 4.342534532984951 5.370170743512229 9.751768766821881 8.151522194221171 15.33158858879169 7.77529816670016 15.01302132937492 3.88764908335008 7.506510664687459 4.075761097110585 7.665794294395843 2.685085371756115 4.87588438341094 7.211427886669418 9.036025413102365 10.6191642510143 11.62672481508899 11.45974683281593 13.49634638012442 5.729873416407967 6.748173190062207 5.309582125507149 5.813362407544494 3.605713943334709 4.518012706551183 5.235798096827196 9.792612949944351 7.610509003207477 15.06240894843653 6.043161989998992 13.39339577620473 3.021580994999496 6.696697888102364 3.805254501603738 7.531204474218267 2.617899048413598 4.896306474972175 7.980285588588723 8.469341774523125 10.22937862915607 8.939277822018701 11.46063465620553 10.99959879798778 5.730317328102766 5.499799398993892 5.114689314578033 4.46963891100935 3.990142794294362 4.234670887261562 4.605625825318914 11.54493689437456 5.204683511179758 9.799429035524494 6.007223952446729 13.40087908685941 3.003611976223365 6.700439543429704 2.602341755589879 4.899714517762247 2.302812912659457 5.772468447187281 7.838690672075432 8.780226490960692 9.603947610001866 8.670713562118595 10.08534950006962 9.25731378331802 5.042674750034811 4.62865689165901 4.801973805000933 4.335356781059297 3.919345336037716 4.390113245480346 4.061243782257101 10.93449054480636 5.113560001846171 9.800622461742714 4.507682296432314 11.54467298219238 2.253841148216157 5.772336491096191 2.556780000923085 4.900311230871357 2.030621891128551 5.46724527240318 7.906737286793971 9.178667328377136 9.276434081040812 8.875378320044581 9.671671521288179 9.065981605457438 4.835835760644089 4.532990802728719 4.638217040520406 4.43768916002229 3.953368643396986 4.589333664188568 5.196960240007307 11.11464310537072 5.184839687325803 10.74959644287122 6.191963544606201 9.949194390801255 3.0959817723031 4.974597195400627 2.592419843662901 5.374798221435611 2.598480120003654 5.557321552685361 7.116338653487188 7.625819840706948 7.961446468619004 7.383621000725571 8.493525136113068 7.344301545890064 4.246762568056534 3.672150772945032 3.980723234309502 3.691810500362786 3.558169326743594 3.812909920353474 2.15770661357887 9.356257960679804 2.510419584926491 9.040122526603774 3.248034811266818 8.626432983016079 1.624017405633409 4.313216491508039 1.255209792463246 4.520061263301887 1.078853306789435 4.678128980339902</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID440\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID436\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID434\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID435\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID436\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID437\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 0 6 2 7 6 8 0 12 8 13 1 14 0 18 6 19 10 20 0 24 12 25 8 26 0 30 10 31 14 32 0 36 16 37 12 38 0 42 14 43 18 44 0 48 20 49 16 50 22 54 0 55 18 56 0 60 24 61 20 62 26 66 0 67 22 68 0 72 28 73 24 74 26 78 30 79 0 80 0 84 32 85 28 86 30 90 34 91 0 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID436\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID437\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 7 9 3 10 5 11 4 15 9 16 5 17 11 21 7 22 5 23 9 27 13 28 5 29 15 33 11 34 5 35 13 39 17 40 5 41 19 45 15 46 5 47 17 51 21 52 5 53 19 57 5 58 23 59 21 63 25 64 5 65 23 69 5 70 27 71 25 75 29 76 5 77 5 81 31 82 27 83 29 87 33 88 5 89 5 93 35 94 31 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID441\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID442\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID446\">-0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID446\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID443\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID447\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1357431839025557 0.7497550114468473 0.6476428111500465 -0.1366815993397975 0.7492072263892851 0.6480792176331454 -0.1339049186988217 0.7508247768900788 0.6467856114325872 0.1339049186988217 -0.7508247768900788 -0.6467856114325872 0.1366815993397975 -0.7492072263892851 -0.6480792176331454 0.1357431839025557 -0.7497550114468473 -0.6476428111500465 -0.1390632020355034 0.9113651292871443 -0.3873951818996452 -0.1334097867881871 0.9103994814047611 -0.3916307100408146 -0.1520463180641854 0.9134113510277387 -0.3775733319195171 0.1520463180641854 -0.9134113510277387 0.3775733319195171 0.1334097867881871 -0.9103994814047611 0.3916307100408146 0.1390632020355034 -0.9113651292871443 0.3873951818996452 -0.1620999136155048 0.09272970269960207 -0.9824076649961 -0.1662539374228294 0.0953143051630216 -0.9814656445962314 -0.1567944187057105 0.08942895644361149 -0.9835740805918715 0.1567944187057105 -0.08942895644361149 0.9835740805918715 0.1662539374228294 -0.0953143051630216 0.9814656445962314 0.1620999136155048 -0.09272970269960207 0.9824076649961 -0.1839627565907119 -0.7773362748139587 -0.6015862532055601 -0.1731947688567061 -0.7836915051681265 -0.5965158814046685 -0.1804827978264776 -0.7794077832683366 -0.5999578877466854 0.1804827978264776 0.7794077832683366 0.5999578877466854 0.1731947688567061 0.7836915051681265 0.5965158814046685 0.1839627565907119 0.7773362748139587 0.6015862532055601 -0.1454069155601703 -0.830330389039357 0.5379667963220666 -0.159394116583764 -0.8338018904044722 0.5285526682899351 -0.1498802405936568 -0.8314662140399025 0.5349764933057699 0.1498802405936568 0.8314662140399025 -0.5349764933057699 0.159394116583764 0.8338018904044722 -0.5285526682899351 0.1454069155601703 0.830330389039357 -0.5379667963220666 -0.1178688308120367 -0.1336192904808511 0.9839983861442035 -0.1169608422628643 -0.1329517455880777 0.9841971320432936 -0.1200646820303652 -0.1352334059142434 0.9835122765140153 0.1200646820303652 0.1352334059142434 -0.9835122765140153 0.1169608422628643 0.1329517455880777 -0.9841971320432936 0.1178688308120367 0.1336192904808511 -0.9839983861442035 -0.1149780011914516 -0.1314937652318465 0.9846265530378361 0.1149780011914516 0.1314937652318465 -0.9846265530378361 -0.1383533907224121 0.748228527281576 0.6488546911579324 0.1383533907224121 -0.748228527281576 -0.6488546911579324 -0.1218391275179259 0.9082828720398434 -0.4002217527380592 0.1218391275179259 -0.9082828720398434 0.4002217527380592 -0.171069294297384 0.09831063701288102 -0.9803419378965262 0.171069294297384 -0.09831063701288102 0.9803419378965262 -0.1903801350748161 -0.7734717985712226 -0.6045632977479636 0.1903801350748161 0.7734717985712226 0.6045632977479636 -0.1369570666554436 -0.8281195642851391 0.5435630130365088 0.1369570666554436 0.8281195642851391 -0.5435630130365088</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID447\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID445\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID448\">-2.556691561629541 -2.602862605502018 -2.586245081388976 -3.138366854245081 -2.334681128296288 -2.878373475755785 -2.951301684127827 -2.560178796236892 -3.07457980125035 -3.103438394186436 -3.22750530352778 -2.812409736805045 3.575431113631269 -3.789832146312027 3.841902111534349 -4.161649426798395 3.890396129634985 -3.830929293644298 3.566726244310392 -1.436325568056493 3.912498830598775 -1.754485825277173 3.887388388210999 -1.440193123441505 -0.6269127531905233 3.417011356515528 -0.02789107994044388 3.434714660158956 -0.4520798298547238 3.628218854229932 -4.876425679403012 -2.926478984311723 -4.930711116245211 -3.25041739217853 -4.616564961458593 -3.307009919642491 -4.878537780603065 -1.515035859425156 -4.836851909935116 -1.83958610627239 -4.513663973358447 -1.850958396857737 -4.790052294242987 -1.141577079945387 -5.308185798548161 -1.055748647629636 -5.046195202738853 -1.291777653134048 -4.796520925120116 -1.098375304575961 -5.090443691600591 -0.8300736736479857 -5.313828097940997 -1.009515787560939 3.552114816996843 -3.802895821126935 3.495993835408513 -4.170866329638131 3.816637853167348 -4.175572887189126 3.688828852934125 -1.375709284375783 3.713607575865441 -1.738790116719466 4.0296039108369 -1.697189035132493 -0.6101368924396966 3.352691153528167 -0.1460547981744018 3.138679991438502 -0.01104629650652111 3.368886973135145 -4.906343357164033 -2.861941179468713 -4.653434003548693 -3.245359532973397 -4.583199311398975 -2.874060766680606 -4.518465614885066 -1.386244061110217 -4.835281606577187 -1.418604677661858 -4.476160721886599 -1.758342063168315</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID448\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID444\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID442\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID443\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID444\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID445\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 42 24 48 25 43 26 46 26 49 25 47 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 24 33 54 34 25 35 28 35 55 34 29 33 30 36 32 37 56 38 57 38 33 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID449\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID450\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID454\">-0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID454\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID451\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID455\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211700042938787 0.789903523489808 0.6011407935232872 -0.1116879029147231 0.7955488162724242 0.5955064174885576 -0.1556107303666403 0.7682758938062599 0.6209166220926551 0.1556107303666403 -0.7682758938062599 -0.6209166220926551 0.1116879029147231 -0.7955488162724242 -0.5955064174885576 0.1211700042938787 -0.789903523489808 -0.6011407935232872 -0.07906121212958679 0.7719592340661052 -0.6307362885364001 -0.1090844255234062 0.783426245276965 -0.6118365029315144 -0.1244233597649755 0.7888847891485317 -0.60181360652188 0.1244233597649755 -0.7888847891485317 0.60181360652188 0.1090844255234062 -0.783426245276965 0.6118365029315144 0.07906121212958679 -0.7719592340661052 0.6307362885364001 -0.1697468595286489 -0.006068861490700951 -0.9854690114865956 -0.1572201673390395 -0.01588452934778078 -0.9874358210584038 -0.2018053130177652 0.01921618423162401 -0.979237128534952 0.2018053130177652 -0.01921618423162401 0.979237128534952 0.1572201673390395 0.01588452934778078 0.9874358210584038 0.1697468595286489 0.006068861490700951 0.9854690114865956 -0.1343567494298995 -0.8462231442695603 -0.5156109521578944 -0.1086210651978576 -0.8602669808478003 -0.4981387215006411 -0.1301145213637191 -0.8486119901717154 -0.5127649573314177 0.1301145213637191 0.8486119901717154 0.5127649573314177 0.1086210651978576 0.8602669808478003 0.4981387215006411 0.1343567494298995 0.8462231442695603 0.5156109521578944 -0.1133150330807146 -0.8395891544271424 0.5312718278303796 -0.1395139141062699 -0.8459706197122566 0.5146548147587942 -0.1233984985839719 -0.8421416557768033 0.5249478470788555 0.1233984985839719 0.8421416557768033 -0.5249478470788555 0.1395139141062699 0.8459706197122566 -0.5146548147587942 0.1133150330807146 0.8395891544271424 -0.5312718278303796 -0.1260546410823167 0.1544903123830586 0.9799198798072183 -0.1302224134692138 0.1510864416931907 0.9799056128866409 -0.1131147639969138 0.1650111135103676 0.9797838448270062 0.1131147639969138 -0.1650111135103676 -0.9797838448270062 0.1302224134692138 -0.1510864416931907 -0.9799056128866409 0.1260546410823167 -0.1544903123830586 -0.9799198798072183 -0.1420492710714026 0.1413865864036689 0.9797100784278996 0.1420492710714026 -0.1413865864036689 -0.9797100784278996 -0.07903885031514943 0.8139813077432695 0.5754887407981291 0.07903885031514943 -0.8139813077432695 -0.5754887407981291 -0.1506678535050407 0.7975887197008246 -0.5840816998727005 0.1506678535050407 -0.7975887197008246 0.5840816998727005 -0.1263475132736118 -0.03992446121385578 -0.9911822956885165 0.1263475132736118 0.03992446121385578 0.9911822956885165 -0.1536418730879432 -0.8349919501480647 -0.5283773443496233 0.1536418730879432 0.8349919501480647 0.5283773443496233 -0.09890193715248216 -0.8357326912076589 0.5401567139953833 0.09890193715248216 0.8357326912076589 -0.5401567139953833</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID455\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID453\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID456\">2.761839076668994 -2.686682816693547 2.821044674853094 -3.223738017132682 2.994709736256524 -2.987806394483918 2.418521699517856 -3.217524168002713 2.38695007375611 -2.736350782082216 2.1541310401361 -2.962968129024459 4.546856623073591 -1.394885293464188 4.816630126722004 -1.72556996709557 4.862848037992812 -1.436471730911179 4.674295548158963 -3.13614816966916 4.356729313977708 -3.137265300856367 4.701232558523698 -3.464185464245616 2.790045554862084 2.35347060364349 3.232835120194977 2.574608855939533 2.832124689239227 2.605261509879871 -4.067706033708806 -1.206600595934767 -4.089461011924668 -1.478694176529454 -3.773819348498676 -1.514619174466891 -3.969045730769214 -3.701827264759665 -3.931153506527283 -4.05303378018515 -3.610399023948869 -4.057492832424999 5.001577739208429 -0.581536198764107 5.043212311869807 -0.9815096230854541 5.255177150779224 -0.7332430780051124 4.606137713813613 -1.534142956742709 4.850872795825993 -1.696794596249568 4.9024837554483 -1.297541471095555 4.37016457834615 -1.331467340770913 4.347788412930141 -1.649491048209251 4.665354963484203 -1.648431032989956 4.483803267194991 -3.009115504783515 4.536459444617076 -3.384541965459336 4.849233383170659 -3.32165800873397 1.04044806537555 3.226749937533368 1.452060210471746 3.329977995737437 1.340664256104527 3.565066468173025 -3.862250629639993 -0.9756131540381329 -3.57981940945645 -1.290193905695045 -3.541497141569373 -0.9801162596498589 -3.807240998867626 -3.6140169568218 -4.122520570283084 -3.650081136837909 -3.774866068728113 -4.012438122951902</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID456\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID452\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID450\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID451\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID452\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID453\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 6 5 7 4 8 3 7 4 9 0 8 3 8 3 9 0 10 1 11 2 10 1 9 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 19 30 52 31 20 32 21 32 53 31 22 30 24 33 54 34 25 35 28 35 55 34 29 33 30 36 32 37 56 38 57 38 33 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID457\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID458\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID462\">-0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID462\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID459\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID463\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1281283390755502 0.939946060968536 0.3163613933391273 -0.1346201936039555 0.9376228862790311 0.3205319431816625 -0.1162781854949556 0.9440221721569896 0.3087094460070827 0.1162781854949556 -0.9440221721569896 -0.3087094460070827 0.1346201936039555 -0.9376228862790311 -0.3205319431816625 0.1281283390755502 -0.939946060968536 -0.3163613933391273 -0.1649346685400534 0.70700699320098 -0.687704636220007 -0.138001516637389 0.6955840009988096 -0.7050662940179939 -0.1262440609561076 0.6903675011133202 -0.7123588635511321 0.1262440609561076 -0.6903675011133202 0.7123588635511321 0.138001516637389 -0.6955840009988096 0.7050662940179939 0.1649346685400534 -0.70700699320098 0.687704636220007 -0.1286676828647164 -0.2510584934495154 -0.9593822284434316 -0.1249639091624064 -0.2537058685940289 -0.959175350834142 -0.1349838365174811 -0.2465273866193998 -0.9596893307344993 0.1349838365174811 0.2465273866193998 0.9596893307344993 0.1249639091624064 0.2537058685940289 0.959175350834142 0.1286676828647164 0.2510584934495154 0.9593822284434316 -0.1434766227141468 -0.9644040248531957 -0.2221245947244455 -0.1258995814562067 -0.9694811380793162 -0.2103701934628239 -0.137528258736553 -0.9661754887229821 -0.2181533933721836 0.137528258736553 0.9661754887229821 0.2181533933721836 0.1258995814562067 0.9694811380793162 0.2103701934628239 0.1434766227141468 0.9644040248531957 0.2221245947244455 -0.1200262461105332 -0.6312838785604785 0.7662077818152547 -0.1185484243271057 -0.6305364008267925 0.7670528784392604 -0.1239625549634292 -0.6332652192933885 0.7639426987675421 0.1239625549634292 0.6332652192933885 -0.7639426987675421 0.1185484243271057 0.6305364008267925 -0.7670528784392604 0.1200262461105332 0.6312838785604785 -0.7662077818152547 -0.1074482883687536 0.2164917070285634 0.9703536500237859 -0.1045482762700885 0.2188615063811693 0.9701388039623601 -0.1167974670152386 0.208822637995721 0.9709538905423534 0.1167974670152386 -0.208822637995721 -0.9709538905423534 0.1045482762700885 -0.2188615063811693 -0.9701388039623601 0.1074482883687536 -0.2164917070285634 -0.9703536500237859 -0.09592521523731801 0.2258827503490979 0.9694201030391322 0.09592521523731801 -0.2258827503490979 -0.9694201030391322 -0.1453360876391361 0.933647648128806 0.3273827893663605 0.1453360876391361 -0.933647648128806 -0.3273827893663605 -0.1018954951506087 0.6791262154425009 -0.7269146384320226 0.1018954951506087 -0.6791262154425009 0.7269146384320226 -0.1190712048485406 -0.2579031796181484 -0.9588055058867603 0.1190712048485406 0.2579031796181484 0.9588055058867603 -0.154126908222058 -0.9610952896026681 -0.2292176704913324 0.154126908222058 0.9610952896026681 0.2292176704913324 -0.115015487565636 -0.6287414646692523 0.7690615113406746 0.115015487565636 0.6287414646692523 -0.7690615113406746</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID463\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID461\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID464\">4.360066392024481 1.345881974146346 4.569212760641203 0.8212451680291688 4.659980598047449 1.15030729017397 4.139088478041265 0.7343252686688629 3.993090241948528 1.28379398993862 3.858881499525051 0.9609417295217747 4.615259486836989 2.070469394477851 4.916285000295099 1.711163197031581 4.932691922661467 2.050594508079105 5.237714155139309 -0.7850202068611257 4.917103607755755 -0.805118177735519 5.301373169335704 -1.097168139238578 -1.662795203246673 4.446608370819519 -1.733459754836062 4.880174696214064 -1.940032066892782 4.570920503433157 -3.840719447785261 1.984768461447111 -3.852408664159016 1.648173959859722 -3.534587250218728 1.624071027479026 -3.179303377019544 -2.513625773284166 -3.557127484714577 -2.219977571431748 -3.499512347452446 -2.523060644294281 5.765266348757652 1.69019121520112 5.857553404921535 1.299387320327408 6.036691952030751 1.558880138713572 5.379672069378961 1.860096852462629 5.68267868581342 1.783065168379234 5.53875939098732 2.16409055123303 4.72200273180184 2.074276447220133 4.697355198809692 1.697146151252073 5.018382483950596 1.712588065047657 4.680145291440302 -1.1477025667911 4.730220832293885 -1.507328388868188 5.042709028738651 -1.456450100848597 -1.849061549422705 4.695147414247404 -2.15044191010415 4.778099156923561 -2.043781256662477 4.349112368737373 -3.363423892743181 2.083472085264609 -3.683758735701449 2.077217382872447 -3.380644054737866 1.71494630994848 -3.246199033616235 -2.51847405722835 -3.308006398490402 -2.172864553124199 -3.620464559827389 -2.222019128872433</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID464\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID460\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID458\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID459\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID460\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID461\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 6 5 7 4 8 3 7 4 9 0 8 3 8 3 9 0 10 1 11 2 10 1 9 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 19 30 52 31 20 32 21 32 53 31 22 30 54 33 25 34 24 35 29 35 28 34 55 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 58 40 37 41 40 41 59 40 41 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID465\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID466\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID470\">-0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID470\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID467\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID471\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1135576304247743 0.5024134134834092 0.8571379273630698 -0.1060549371234037 0.5081935363673253 0.8546880599998006 -0.1410029563660657 0.4807853474390595 0.8654268403417659 0.1410029563660657 -0.4807853474390595 -0.8654268403417659 0.1060549371234037 -0.5081935363673253 -0.8546880599998006 0.1135576304247743 -0.5024134134834092 -0.8571379273630698 -0.1001724357446263 0.9948230072652543 0.01710752269338355 -0.0992313783360488 0.9949317552839722 0.01624610356613912 -0.1067686555805312 0.994014375944963 0.02314896542551481 0.1067686555805312 -0.994014375944963 -0.02314896542551481 0.0992313783360488 -0.9949317552839722 -0.01624610356613912 0.1001724357446263 -0.9948230072652543 -0.01710752269338355 -0.1204055105956813 0.4823208077810515 -0.8676803278855798 -0.1287480142985737 0.4875078415387097 -0.8635739998705626 -0.09891909191161409 0.4687497692647048 -0.8777748384806138 0.09891909191161409 -0.4687497692647048 0.8777748384806138 0.1287480142985737 -0.4875078415387097 0.8635739998705626 0.1204055105956813 -0.4823208077810515 0.8676803278855798 -0.148440743472404 -0.4706111030796328 -0.869764643645355 -0.1437557280381843 -0.4742852702663527 -0.8685549913877557 -0.1646652191806799 -0.4577190077569442 -0.8737154431107287 0.1646652191806799 0.4577190077569442 0.8737154431107287 0.1437557280381843 0.4742852702663527 0.8685549913877557 0.148440743472404 0.4706111030796328 0.869764643645355 -0.09475985240703004 -0.9954707181582593 0.007656347776652718 -0.1039611698752289 -0.994581356731652 -1.567513741408958e-017 -0.09646331398013955 -0.9953169813336709 0.006239849741635174 0.09646331398013955 0.9953169813336709 -0.006239849741635174 0.1039611698752289 0.994581356731652 1.567513741408958e-017 0.09475985240703004 0.9954707181582593 -0.007656347776652718 -0.1004692751834205 -0.4547958960035424 0.8849105139631087 -0.1080393619639094 -0.4596758574940459 0.881490557126703 -0.08050414354804245 -0.4417526345097378 0.8935175951123192 0.08050414354804245 0.4417526345097378 -0.8935175951123192 0.1080393619639094 0.4596758574940459 -0.881490557126703 0.1004692751834205 0.4547958960035424 -0.8849105139631087 -0.1261670868981231 -0.4712139498534301 0.8729486122602924 0.1261670868981231 0.4712139498534301 -0.8729486122602924 -0.08066176544082679 0.5273398224729309 0.8458169963001376 0.08066176544082679 -0.5273398224729309 -0.8458169963001376 -0.09298631847472325 0.9956116753904154 0.01053263513122168 0.09298631847472325 -0.9956116753904154 -0.01053263513122168 -0.1480979007488019 0.499360107511594 -0.8536430722613565 0.1480979007488019 -0.499360107511594 0.8536430722613565 -0.128617271239178 -0.4860099095104769 -0.8644373692735674 0.128617271239178 0.4860099095104769 0.8644373692735674 -0.08787557746910753 -0.9960416408784326 0.01337656610159817 0.08787557746910753 0.9960416408784326 -0.01337656610159817</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID471\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID469\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID472\">0.3783244763866356 3.599650192905323 0.04688576503043994 3.183664922406017 0.3783244763866733 3.320256183830747 0.027122406016975 3.736241749693183 -0.3004302779671875 3.329571050263488 -0.2925268116698577 3.596545335882117 4.000044726454139 1.10793485062912 4.21481509604171 0.7529116011386672 4.304771798895633 1.03172710660281 4.10347570606989 3.588741106063421 4.420431663145973 3.314529897656492 4.421275731804731 3.581575744406544 4.004262736190113 2.404159357085891 4.391308998608645 2.132013168039903 4.319595171864108 2.43657218669946 -3.898880727774464 2.528130711158829 -4.085679924831708 2.901690795312082 -4.197876129968127 2.620891524746142 -4.41453160017797 3.599650192905323 -4.414531600177956 3.320256183830747 -4.096804965313124 3.297878293086227 -4.021893908100886 0.8163003856027347 -4.40070684784139 1.094589961698369 -4.337741485997127 0.7903962326542223 -4.014861215834311 1.087495689805327 -4.318740986045711 1.009222180880419 -3.915494554730933 0.7530582966662636 4.117569520822965 1.609168978682243 4.06494067866972 1.289160856444053 4.382412656505274 1.275732923953219 4.113749018618937 3.59761042930563 4.11338677832698 3.307928508737795 4.430786423268708 3.323457494963106 4.004673048262786 2.396474751015988 4.306625459163545 2.483105444542788 3.896458540050114 2.733419148329708 -4.010318426120987 2.335558842294007 -3.918374393230021 2.65249310587964 -4.232313562344972 2.697004915989215 -4.110337663997246 3.602853878806665 -4.427552647176091 3.591221143347064 -4.109867458805556 3.289422241500907</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID472\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID468\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID466\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID467\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID468\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID469\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 54 33 25 34 24 35 29 35 28 34 55 33 30 36 56 37 31 38 34 38 57 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID473\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID474\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID478\">-0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID478\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID475\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID479\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1038929795673725 0.5024082937966418 0.8583659797085161 -0.101645225647281 0.504024634304494 0.8576872484287816 -0.1094074020686247 0.4984230333416132 0.8600026163955198 0.1094074020686247 -0.4984230333416132 -0.8600026163955198 0.101645225647281 -0.504024634304494 -0.8576872484287816 0.1038929795673725 -0.5024082937966418 -0.8583659797085161 -0.1067289061750859 0.9771652234428873 -0.1837309627702476 -0.1087690994352792 0.9772346523405453 -0.1821584949237671 -0.1018222525483512 0.9769718064996613 -0.1875055150942714 0.1018222525483512 -0.9769718064996613 0.1875055150942714 0.1087690994352792 -0.9772346523405453 0.1821584949237671 0.1067289061750859 -0.9771652234428873 0.1837309627702476 -0.1384934920200037 0.3534641008466894 -0.9251392771257453 -0.1359909180218172 0.3518821215535716 -0.9261130831310727 -0.1433289414998819 0.3565134591932102 -0.9232307230278977 0.1433289414998819 -0.3565134591932102 0.9232307230278977 0.1359909180218172 -0.3518821215535716 0.9261130831310727 0.1384934920200037 -0.3534641008466894 0.9251392771257453 -0.1222124372058731 -0.6679776222096131 -0.7340776637518621 -0.1173622889185317 -0.6711286400381099 -0.731992104916713 -0.1349675165566499 -0.6595557153030317 -0.7394389953780073 0.1349675165566499 0.6595557153030317 0.7394389953780073 0.1173622889185317 0.6711286400381099 0.731992104916713 0.1222124372058731 0.6679776222096131 0.7340776637518621 -0.1005580890291001 -0.9698016599802893 0.2221999348116262 -0.1176512528335321 -0.9707395559761901 0.209339191671912 -0.1058191295169145 -0.9701374026818134 0.2182561150255999 0.1058191295169145 0.9701374026818134 -0.2182561150255999 0.1176512528335321 0.9707395559761901 -0.209339191671912 0.1005580890291001 0.9698016599802893 -0.2221999348116262 -0.09416004869071552 -0.2485813326810608 0.9640234469519244 -0.09548416722338041 -0.2496875094316789 0.9636072443913355 -0.08585473045780438 -0.2416308289560064 0.9665627283089551 0.08585473045780438 0.2416308289560064 -0.9665627283089551 0.09548416722338041 0.2496875094316789 -0.9636072443913355 0.09416004869071552 0.2485813326810608 -0.9640234469519244 -0.1032242823055442 -0.256142923912011 0.9611116220670267 0.1032242823055442 0.256142923912011 -0.9611116220670267 -0.09649147165714225 0.5077129698964091 0.8561056804486271 0.09649147165714225 -0.5077129698964091 -0.8561056804486271 -0.1131851789208752 0.9773627740502681 -0.1787487711102216 0.1131851789208752 -0.9773627740502681 0.1787487711102216 -0.1315202965520038 0.349049637920842 -0.9278290585351389 0.1315202965520038 -0.349049637920842 0.9278290585351389 -0.1057405989715317 -0.6785643004438799 -0.7268902364815817 0.1057405989715317 0.6785643004438799 0.7268902364815817 -0.08943516453163014 -0.968954655637462 0.2304956109423514 0.08943516453163014 0.968954655637462 -0.2304956109423514</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID479\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID477\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID480\">-3.832275540913754 1.38313464652574 -4.037474306459234 0.861597233214203 -3.745473328734743 1.066488851161099 -4.163760809506149 1.448324091080901 -4.43604104310682 0.9826730704162471 -4.51102072099726 1.290001193398601 3.171026590337021 -2.606554836662415 3.406816483430799 -2.972177582241644 3.48126989775373 -2.661916721724257 3.668382965150461 2.008969601292834 3.994159350684655 1.684526607744221 3.986386895219333 1.997404066098809 2.195936011940815 4.503074526773451 2.648891197907055 4.264915060407883 2.500220450372008 4.580014812517327 -4.885016970408737 -1.255419445917819 -5.138103206570871 -0.8942667761061519 -5.196643413251278 -1.19861087185011 -4.90668503084679 1.890274882143592 -4.89624123966273 1.566454220558648 -4.577487831674194 1.559607900813885 -5.196980618279403 2.02817604302201 -5.613737620860929 2.214624445873762 -5.502753935253568 1.960405471812763 -5.419548725810715 2.156634437970546 -5.709881774726242 2.054336581082488 -5.28394018282753 1.881208739224467 3.310138597047183 -2.520016467100998 3.240017181379571 -2.859050560085873 3.557132004722975 -2.881032731401244 3.611445236497108 1.98282659750306 3.620759139691174 1.628873567018144 3.938085392640403 1.658921497886375 2.474798949672067 4.128983753580942 2.766926089553627 4.231515357916557 2.320203332516909 4.476851663613845 -4.68279295752764 -0.9992583488947533 -5.001424279837343 -0.9895101278624701 -4.732582976568755 -1.343547542461741 -4.494532730293797 1.981060250884132 -4.811397957767102 1.963200932487673 -4.484848678126927 1.630913117934281</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID480\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID476\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID474\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID475\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID476\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID477\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 54 33 25 34 24 35 29 35 28 34 55 33 56 36 31 37 30 38 35 38 34 37 57 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID481\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID482\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID486\">-0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID486\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID483\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID487\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6659834446608215 0.3807686437826488 0.6414680750821734 -0.6631750828133616 0.3731148991519088 0.6488328610407705 -0.6729842940505703 0.1624422630054802 0.7215986773483681 0.6729842940505703 -0.1624422630054802 -0.7215986773483681 0.6631750828133616 -0.3731148991519088 -0.6488328610407705 0.6659834446608215 -0.3807686437826488 -0.6414680750821734 -0.6145137989325163 0.4655985671337754 0.6368600829102905 -0.6113335516860552 0.4667959055536873 0.6390405864585023 0.6113335516860552 -0.4667959055536873 -0.6390405864585023 0.6145137989325163 -0.4655985671337754 -0.6368600829102905 -0.6629988808447853 -0.7286899444755632 -0.1715909345471451 -0.6112712807697465 -0.7468583700018094 -0.2618205424796805 -0.6144500916695223 -0.7444263356970634 -0.2613054066948456 0.6144500916695223 0.7444263356970634 0.2613054066948456 0.6112712807697465 0.7468583700018094 0.2618205424796805 0.6629988808447853 0.7286899444755632 0.1715909345471451 -0.6729924006868499 -0.7380291832850042 0.04893008519735241 -0.6658161315575506 -0.7238380484211855 -0.180962312693964 0.6658161315575506 0.7238380484211855 0.180962312693964 0.6729924006868499 0.7380291832850042 -0.04893008519735241 -0.6289565476282814 -0.7476459025257273 0.2131648789833918 -0.6701345713609732 -0.7408307531705968 0.04571051764672113 0.6701345713609732 0.7408307531705968 -0.04571051764672113 0.6289565476282814 0.7476459025257273 -0.2131648789833918 -0.6586335051836426 -0.4503276787562835 0.602832387646422 -0.6194244385915946 -0.5603481644919415 0.5498393396493199 -0.6253103361580007 -0.5580893712997171 0.545456906763728 0.6253103361580007 0.5580893712997171 -0.545456906763728 0.6194244385915946 0.5603481644919415 -0.5498393396493199 0.6586335051836426 0.4503276787562835 -0.602832387646422 -0.6252441215267333 -0.3647786176751771 0.6899321333169304 -0.6193457640666231 -0.3683472929438279 0.6933477455892423 0.6193457640666231 0.3683472929438279 -0.6933477455892423 0.6252441215267333 0.3647786176751771 -0.6899321333169304 -0.6701201336408642 0.1663084455640048 0.7233813015438224 -0.6289128458978669 0.007652928515795015 0.7774381422015375 0.6289128458978669 -0.007652928515795015 -0.7774381422015375 0.6701201336408642 -0.1663084455640048 -0.7233813015438224 -0.622078851308744 -0.7522767596266303 0.2170197679476473 0.622078851308744 0.7522767596266303 -0.2170197679476473 -0.6633240955833247 -0.4478538037142369 0.5995232395139108 0.6633240955833247 0.4478538037142369 -0.5995232395139108 -0.6220261755595516 0.005266994658404282 0.7829787325885845 0.6220261755595516 -0.005266994658404282 -0.7829787325885845</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID487\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID485\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID488\">-4.22725624399334 -5.808877949883205 -4.55134529488531 -5.976060559444166 -4.338167595264546 -6.491496952334127 -4.986782358868105 -5.199964448886369 -5.184941219754366 -5.408638486833185 -5.944453442550639 -4.799730893098601 -6.05632672639457 -5.091645344449993 -6.745726004323971 -4.816560978528544 -6.74510123625174 -5.077039638609257 -7.849986300628801 -5.500677176589291 -7.923492667272267 -5.229891230022745 -10.06436935037758 -6.764499303685906 -10.25054723218782 -6.567089824067745 -4.190221839946828 -7.423786392543641 -4.020489550882155 -6.418076771645296 -4.541160899478318 -7.445155913627095 -5.145381836570095 -9.567177416708539 -5.438809568305453 -9.482737238346916 -5.505193325159312 -7.604034168790181 -5.336475990643389 -7.742358147485223 -4.269678334633769 -7.17228634502103 -5.689347174156868 -9.800731856029373 -5.511200601136377 -9.91390228982233 -3.661673248818458 -8.175413593687873 -6.015019925488002 -7.266096214065682 -6.619985055648084 -9.486958521750623 -6.397152300006442 -9.528426778102082 -5.916495195503265 -6.398410337512396 -6.028516018800286 -7.409110337784746 -5.79271183303645 -7.457467891379393 -6.058299012606727 -5.672970773922897 -5.918451089773818 -6.293838969348061 -5.673245435811727 -6.290409739551873 -6.611867500289026 -4.289528229207675 -6.048613951193245 -5.018529849581411 -5.831542273483992 -4.949930903754136 -7.208078507396563 -3.680070861867471 -7.32929965042728 -3.837447967747981 -6.506198159929273 -4.392862628766582 -6.660239379493177 -5.681909366053281 -6.612063954614971 -5.871073215402708 -5.811153776812445 -5.845724523787836 -6.31321530276293 -9.510799849948398 -4.202315597411297 -7.952433032619871 -4.387052615037615 -7.827415091763079 -5.571264021655384 -7.567302934022142 -4.332306682772676 -7.141703510882534 -4.446445643616539 -6.970949011293415 -6.035007605903449 -7.19101390246045 -6.473568664496056 -9.447001600170312 -5.799661110009105 -7.240732120036159 -5.673040901826159 -6.386349889532563 -5.918247615980235 -6.389731880133182 -5.796727443660892 -7.448951623798941 -5.819314759100421 -5.528107959488318 -6.041028142086967 -5.586805558446977 -5.664342994491257 -6.207430836053704 -6.610934274938454 -4.510184301514173 -5.81103562343381 -5.155932387550443 -6.42137595324032 -4.391696199990871 -6.752987524416816 -5.516952551322585 -5.907464823598496 -5.691800534694194 -5.87571544118804 -5.509489278649395 -6.262434736188439 -4.53591418972004 -7.16680172405666 -3.98054871024504 -6.431552494877005 -4.672209874291356</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID488\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID484\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID482\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID483\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"64\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID484\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID485\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 9 9 7 7 10 10 9 9 10 10 11 11 11 11 10 10 12 12 0 0 13 13 14 14 13 13 0 0 2 2 13 13 2 2 15 15 13 13 15 15 16 16 16 16 15 15 17 17 18 17 19 15 20 16 20 16 19 15 21 13 19 15 22 2 21 13 22 2 23 0 21 13 24 14 21 13 23 0 25 12 26 10 27 11 27 11 26 10 28 9 26 10 29 7 28 9 28 9 29 7 30 8 30 8 29 7 31 6 29 7 32 5 31 6 31 6 32 5 33 4 32 5 34 3 33 4 33 4 34 3 35 1 34 3 23 0 35 1 22 2 35 1 23 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 37 23 40 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 46 28 53 29 54 29 51 28 55 27 56 30 52 31 57 32 58 32 55 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 60 38 65 38 68 37 69 36 70 39 38 40 71 41 72 41 39 40 73 39 42 42 37 43 36 44 41 44 40 43 45 42 36 45 38 46 70 47 73 47 39 46 41 45 46 48 48 49 53 50 54 50 49 49 51 48 57 51 52 52 53 53 54 53 55 52 58 51 74 54 56 55 57 56 58 56 59 55 75 54 60 57 62 58 76 59 77 59 63 58 65 57 70 60 71 61 78 62 79 62 72 61 73 60 76 63 66 64 60 65 65 65 69 64 77 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID489\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID490\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID494\">-0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID494\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID491\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID495\">-0.1088396993734213 0.9391143652329044 0.3259112284863811 -0.1164463359679276 0.9328196483828717 0.3410099037132209 -0.115277788968267 0.9330479626690824 0.3407822335886396 0.115277788968267 -0.9330479626690824 -0.3407822335886396 0.1164463359679276 -0.9328196483828717 -0.3410099037132209 0.1088396993734213 -0.9391143652329044 -0.3259112284863811 -0.110822325248955 0.938063640003709 0.3282605969796052 0.110822325248955 -0.938063640003709 -0.3282605969796052 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1169850955608708 0.9419046119998733 0.3148494708745472 0.1169850955608708 -0.9419046119998733 -0.3148494708745472 -0.5580107354442373 0.8289599112591531 0.03807209810606934 -0.4971810650748229 0.8663223338632058 0.04792287951357918 -0.5145250095588039 0.8558675183312584 0.05248624204499802 0.5145250095588039 -0.8558675183312584 -0.05248624204499802 0.4971810650748229 -0.8663223338632058 -0.04792287951357918 0.5580107354442373 -0.8289599112591531 -0.03807209810606934 -0.545158170653844 0.8382267271768401 0.01336124304687095 -0.5582784877518608 0.8289230506726751 0.03480957019271046 0.5582784877518608 -0.8289230506726751 -0.03480957019271046 0.545158170653844 -0.8382267271768401 -0.01336124304687095 -0.1318695905464307 0.9596171302456248 0.2484861654665474 -0.1321549003024238 0.9557169747171905 0.2629451398361978 -0.1365860819270675 0.9570595346721975 0.2556976521535723 0.1365860819270675 -0.9570595346721975 -0.2556976521535723 0.1321549003024238 -0.9557169747171905 -0.2629451398361978 0.1318695905464307 -0.9596171302456248 -0.2484861654665474 -0.1289657532660433 0.9574337946917685 0.2582409016144471 -0.1269044865420529 0.9532261396277257 0.2743267723462684 0.1269044865420529 -0.9532261396277257 -0.2743267723462684 0.1289657532660433 -0.9574337946917685 -0.2582409016144471 -0.1240825368586034 0.9470375050500011 0.2961815120418608 -0.1256954876265769 0.946399129432289 0.2975387910846624 -0.1260690186249341 0.9534847853620122 0.2738126487693791 0.1260690186249341 -0.9534847853620122 -0.2738126487693791 0.1240825368586034 -0.9470375050500011 -0.2961815120418608 0.1256954876265769 -0.946399129432289 -0.2975387910846624 -0.1211441855015404 0.9401500394776983 0.3184995911916539 0.1211441855015404 -0.9401500394776983 -0.3184995911916539 -0.5536072311495947 0.7950907964196508 0.2476886333032765 -0.6328306015520273 0.7446519113729666 0.2121767202779013 -0.6307694948426644 0.7463033893518946 0.2125114006772442 0.6307694948426644 -0.7463033893518946 -0.2125114006772442 0.6328306015520273 -0.7446519113729666 -0.2121767202779013 0.5536072311495947 -0.7950907964196508 -0.2476886333032765 -0.5039674104246305 0.8086833501771441 0.3033942787465886 -0.5497408771862887 0.7964870254649378 0.2517804325527812 0.5497408771862887 -0.7964870254649378 -0.2517804325527812 0.5039674104246305 -0.8086833501771441 -0.3033942787465886 -0.4609956099973669 0.7886395059681967 0.4068547372089872 -0.49850465150458 0.8115072862067282 0.3048754448322932 0.49850465150458 -0.8115072862067282 -0.3048754448322932 0.4609956099973669 -0.7886395059681967 -0.4068547372089872 -0.4569339343695998 0.6598239237892639 0.5965264195464085 -0.4573880925719646 0.794515332784318 0.399426487283961 0.4573880925719646 -0.794515332784318 -0.399426487283961 0.4569339343695998 -0.6598239237892639 -0.5965264195464085 -0.4287005991166544 0.541309811422194 0.7233252963743838 -0.4542025713545716 0.645235326881341 0.6143056219173191 0.4542025713545716 -0.645235326881341 -0.6143056219173191 0.4287005991166544 -0.541309811422194 -0.7233252963743838 -0.3063228392035632 0.9519258992836576 -0.001844032339199885 -0.3523470247597167 0.9358104485918809 0.01050611484984737 0.3523470247597167 -0.9358104485918809 -0.01050611484984737 0.3063228392035632 -0.9519258992836576 0.001844032339199885 -0.5412614551618135 0.8407681758003589 0.01203792828742119 0.5412614551618135 -0.8407681758003589 -0.01203792828742119 -0.4272410976619026 0.5422294182526325 0.7235000362474522 0.4272410976619026 -0.5422294182526325 -0.7235000362474522</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID495\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID493\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID496\">3.76825062863832 -7.313630254900839 3.596381102692845 -10.48973263072317 4.591982473100826 -10.49532155130045 3.796584343130128 -7.304870234576655 4.631787065582489 -10.48471036339275 4.788649302747732 -7.361376930524428 -1.233424149184261 -2.753147786843712 -0.7088761597558091 -3.338546544481618 -0.694556993678912 -2.849561690363584 -0.7853905368619629 -4.383741487515724 -1.146439087214903 -5.03998101979383 -1.55270259855911 -5.546970027708173 -1.390357703847656 -3.215229491993068 -1.75673311539269 -4.219410608791835 -1.883282441546899 -6.176047377569198 -2.160556126454998 -5.312462941343926 -2.261771182375565 -7.026766978130183 -2.433741973391066 -5.946419099073036 -3.334680812059787 -9.988933491671299 -2.830459374017382 -6.858879041460048 -4.18747608939894 -9.796708225378035 -0.7842970050049303 -4.827816971326995 3.846359672297336 -6.358789390875086 3.803908500346693 -7.294419494786282 4.796023997542307 -7.350374402013268 4.056342725136757 -3.460756783488558 4.017070421792077 -4.507227523838949 4.189805728167312 -4.506856094946615 3.870196798047121 -2.901029633565524 3.862151086380763 -3.39010326253353 4.041586134627782 -3.375623115899968 3.928024266704107 -3.013988383563838 4.902261330893889 -3.531575789521651 4.924433338735429 -3.053604799231155 3.919683204120139 -3.486961206510021 4.865011689683587 -4.583100420342436 4.914626931451051 -3.539105977826516 4.875488640555209 -4.580879223037842 3.826540600621813 -5.700099691054323 4.822529489921589 -5.718396071753157 3.879494827284836 -4.562583285591289 3.823573876076065 -5.724436591786642 4.783442973528894 -6.411767901669563 4.819555400866464 -5.742979411248102 3.807368354643659 -6.37459105667303 4.751878529572747 -7.369217884205696 4.801955210030906 -6.405668232595182 2.459913955440844 -7.711138893628805 1.765124464725816 -10.7423214537102 1.957060357039899 -10.75365200785607 3.149980037999058 -6.910862697284486 2.933665600069839 -7.795972115472037 3.112360206094057 -7.803950315529296 3.543814988888633 -6.287816333452746 3.368556206581121 -6.954419143262834 3.538235007196647 -6.973994288736734 3.78465959479941 -5.80854108379769 3.571658995865501 -6.383955407013207 3.730204477851461 -6.425917052375335 3.519029084241668 -5.520774225638371 3.291859972225696 -5.827754909589918 3.450220969145402 -5.87097057055601 4.662182803330457 -4.380360850124628 4.662517777683195 -4.824437088967236 4.81826881172313 -4.865116337961796 4.189859564349691 -4.520942806572722 4.017124258375433 -4.521314350847296 4.169439869693115 -5.006811491088558 4.054308477449268 -3.46818554239393 3.874875918312202 -3.482684764307377 4.004600561683029 -4.529075056857496 3.954605625143068 -2.881286514067027 4.12622640779107 -3.355828234508149 4.13083736103226 -2.887771090306144 3.943337637863319 -2.998836062633428 3.923906485213045 -3.463165909205145 4.918885407229313 -3.514893431760281 3.928797703118019 -3.481218209051338 3.879818224823473 -4.558188850263479 4.875812890540187 -4.576456053667682 3.841555000386308 -5.715504750840945 3.808597935928527 -6.370329666730073 4.803189826014569 -6.40130696790807 2.948827516519374 -7.691092086442025 2.529718595190085 -10.74144726110512 3.127530081582867 -7.698959191979644 3.405436347186381 -6.871638496491231 3.386085399216066 -7.765086638555999 3.575179329102383 -6.890866213050533 3.787685574673548 -6.22844919458952 3.799988017323743 -6.914572938978153 3.947379466551694 -6.267623306827016 3.764036350977447 -5.816332960126295 3.707505967984392 -6.43359348176798 3.926023634899166 -5.850225398106103 3.560052651719282 -5.497587420403937 3.494701207686569 -5.848193276457293 3.706070434976303 -5.556515053892731</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID496\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID492\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID490\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID491\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID492\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID493\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 2 4 6 5 7 5 3 4 5 3 8 6 9 7 10 8 9 7 8 6 11 9 11 9 8 6 12 10 12 10 8 6 13 11 13 11 8 6 14 12 13 11 14 12 15 13 13 11 15 13 16 14 16 14 15 13 17 15 16 14 17 15 18 16 18 16 17 15 19 17 18 16 19 17 20 18 20 18 19 17 21 19 20 18 21 19 22 20 12 10 23 21 11 9 24 9 25 21 26 10 27 20 28 19 29 18 28 19 30 17 29 18 29 18 30 17 31 16 30 17 32 15 31 16 31 16 32 15 33 14 32 15 34 13 33 14 33 14 34 13 35 11 34 13 36 12 35 11 36 12 37 6 35 11 35 11 37 6 26 10 26 10 37 6 24 9 24 9 37 6 38 7 39 8 38 7 37 6 40 22 0 23 6 24 7 24 5 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 42 29 49 30 50 30 47 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 59 37 62 38 63 39 62 38 59 37 64 40 65 40 60 37 66 38 67 39 66 38 60 37 62 41 68 42 63 43 67 43 69 42 66 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 70 51 77 52 78 52 75 51 79 50 80 53 76 54 81 55 82 55 79 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 43 62 92 63 93 64 94 64 95 63 46 62 44 65 43 66 93 67 94 67 46 66 45 65 49 68 42 69 44 70 45 70 47 69 50 68 48 71 49 72 96 73 97 73 50 72 51 71 52 74 58 75 53 76 56 76 61 75 57 74 58 77 64 78 59 79 60 79 65 78 61 77 62 80 40 81 68 82 69 82 41 81 66 80 70 83 72 84 77 85 78 85 73 84 75 83 76 86 77 87 81 88 82 88 78 87 79 86 80 89 81 90 85 91 86 91 82 90 83 89 84 92 85 93 89 94 90 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID497\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID498\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID502\">-0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID502\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID499\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID503\">-0.1164097430468417 -0.5916084081534543 -0.7977770760844811 -0.10882822046992 -0.5789017034806163 -0.8081022436156152 -0.1152454256731035 -0.591455387657384 -0.7980595317847402 0.1152454256731035 0.591455387657384 0.7980595317847402 0.10882822046992 0.5789017034806163 0.8081022436156152 0.1164097430468417 0.5916084081534543 0.7977770760844811 -0.1108221458520233 -0.5808630075720961 -0.8064221093342195 0.1108221458520233 0.5808630075720961 0.8064221093342195 -0.1170077107804017 -0.5691015957689537 -0.8138996064080387 0.1170077107804017 0.5691015957689537 0.8138996064080387 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211696670977339 -0.5721039063745667 -0.8111812572331694 0.1211696670977339 0.5721039063745667 0.8111812572331694 -0.1289674607165914 -0.5192099234538959 -0.844860017673528 -0.1321663082555465 -0.5232428882080906 -0.8418722865742495 -0.1268981050915295 -0.533447946261532 -0.8362596244908234 0.1268981050915295 0.533447946261532 0.8362596244908234 0.1321663082555465 0.5232428882080906 0.8418722865742495 0.1289674607165914 0.5192099234538959 0.844860017673528 -0.1318813258933644 -0.5104743797675104 -0.8497194969409517 -0.1366069441971335 -0.5166761365997606 -0.8452125843037756 0.1366069441971335 0.5166761365997606 0.8452125843037756 0.1318813258933644 0.5104743797675104 0.8497194969409517 -0.558031261867371 -0.2716463664879751 -0.78409780152261 -0.5451296895268838 -0.2505730592629967 -0.8000292266960662 -0.5582991414998946 -0.2685090417213844 -0.7849872375487035 0.5582991414998946 0.2685090417213844 0.7849872375487035 0.5451296895268838 0.2505730592629967 0.8000292266960662 0.558031261867371 0.2716463664879751 0.78409780152261 -0.5143888624622276 -0.293110942014941 -0.8059094700063585 -0.497052555982873 -0.2917024651576237 -0.8172199388242178 0.497052555982873 0.2917024651576237 0.8172199388242178 0.5143888624622276 0.293110942014941 0.8059094700063585 -0.3523806686222084 -0.2755513168992308 -0.8943709164191694 -0.306415783897025 -0.2682897565392926 -0.9133071629604461 0.306415783897025 0.2682897565392926 0.9133071629604461 0.3523806686222084 0.2755513168992308 0.8943709164191694 -0.4286828954205195 -0.847176126038426 -0.3138846709293164 -0.4541605104685136 -0.7721228532482589 -0.4444823171091813 -0.456893286178551 -0.7592058438957603 -0.4635245534375617 0.456893286178551 0.7592058438957603 0.4635245534375617 0.4541605104685136 0.7721228532482589 0.4444823171091813 0.4286828954205195 0.847176126038426 0.3138846709293164 -0.4574134951468932 -0.6083801890432725 -0.6485726173969845 -0.4610282434667641 -0.6138335702605229 -0.6408286094949022 0.4610282434667641 0.6138335702605229 0.6408286094949022 0.4574134951468932 0.6083801890432725 0.6485726173969845 -0.4985789755177557 -0.522521104138984 -0.69165793633923 -0.5040410792207913 -0.5203001144828611 -0.6893695535248579 0.5040410792207913 0.5203001144828611 0.6893695535248579 0.4985789755177557 0.522521104138984 0.69165793633923 -0.5536165038480039 -0.4630501931675085 -0.6921656487248167 -0.5497531637915774 -0.4673687586348154 -0.6923423303202705 0.5497531637915774 0.4673687586348154 0.6923423303202705 0.5536165038480039 0.4630501931675085 0.6921656487248167 -0.6328486545725545 -0.4146821088617343 -0.6538664458401979 -0.6307873335127643 -0.4154716222280389 -0.6553553776410614 0.6307873335127643 0.4154716222280389 0.6553553776410614 0.6328486545725545 0.4146821088617343 0.6538664458401979 -0.1240913043504173 -0.5526586540230366 -0.8241175646217339 -0.1256979469617381 -0.5537729312787706 -0.823125486613385 0.1256979469617381 0.5537729312787706 0.823125486613385 0.1240913043504173 0.5526586540230366 0.8241175646217339 -0.1260575905833764 -0.5330255257953374 -0.8366560061978389 0.1260575905833764 0.5330255257953374 0.8366560061978389 -0.5412201697451934 -0.2500231718377586 -0.8028506345548783 0.5412201697451934 0.2500231718377586 0.8028506345548783 -0.4272344532522728 -0.8476012840976981 -0.3147106371735229 0.4272344532522728 0.8476012840976981 0.3147106371735229</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID503\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID501\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID504\">-6.161466385372765 -9.739583828584451 -5.534782427677182 -6.599055031610398 -7.138963213337921 -9.590815887125158 -5.453974869115332 -6.64082692448904 -6.442251176197418 -6.552312786454574 -7.020912501436172 -9.64477766665155 -5.308720537271718 -5.689141638149316 -6.478772582362814 -6.522289149874103 -5.491014958906135 -6.614316476552948 -3.324449483955088 -1.304083515806536 -3.572826706871928 -1.932684592651026 -3.054065519073461 -1.683218989209923 -3.916435254479966 -1.453588938535106 -4.692973909088815 -2.493915854454659 -5.168852690973136 -1.807773613133746 -5.910816590358083 -3.108575940139804 -5.710456022755999 -1.932931811574967 -5.866347671529796 -2.26628703653867 -6.369100491594986 -2.716571791351699 -6.606115120661046 -3.494493541298796 -7.042161934252819 -3.144381333275127 -7.605823633967948 -4.052573869433889 -7.9717957997741 -3.671216674709287 -10.80202970911157 -5.90961685543797 -11.2782606739596 -5.320825261743578 -5.406867405753555 -5.632958163486499 -6.388217779204394 -5.501977139414676 -6.591891121267537 -6.452906138227753 -4.869366170504851 -2.672663225915323 -5.851698291102253 -2.537936179978868 -6.117810543867646 -3.561478629224226 -4.783295469245281 -2.147838056814312 -5.759915324541431 -1.987415610829698 -5.892517064855022 -2.454203569649013 -5.685275317190505 1.018545122632574 -5.145451942425918 1.261211835115473 -5.7562003319981 1.149012728635336 -5.946862418828762 0.7642798521704014 -7.130976261011481 0.2767553873179948 -7.036424047085478 0.1630502095845917 -7.281644872447997 -0.3986048403960985 -7.834279527146465 -0.6456774898488107 -7.689126942260445 -0.7059138880145554 -7.188071436753713 -2.505819076414183 -7.416547296366069 -2.811190375613943 -7.259177835029453 -2.856584011353963 -7.575012072795065 -2.706222549244504 -8.018917079536788 -3.217136703021234 -7.861456431581737 -3.261559665315641 -8.102290839309255 -2.644916224219954 -8.698178247785402 -3.146031785827807 -8.557885289507643 -3.223633364054006 -9.379701635931678 -3.470919080308647 -8.684971497927776 -2.754199168926557 -9.506351967249945 -3.371429820198309 -12.25623907044876 -4.989462679559276 -9.490624175621949 -2.809199905568493 -12.37770881846667 -4.872005277182687 -5.318589154545419 -4.950828734137319 -6.296049610050064 -4.799287875721132 -6.444857026542284 -5.458380516152987 -5.392057858255205 -4.876556620212218 -6.08813702729078 -3.598391158750079 -6.367006455932359 -4.715312852682593 -5.113185334491933 -3.759627421801614 -5.281056882911339 -4.974112230283341 -6.403242112042205 -5.487229736398297 -5.422269957287876 -5.619952481288294 -4.853940277352765 -2.690709885832792 -6.096300623064521 -3.58478531167352 -5.121764907583199 -3.747570384158296 -4.892686598708286 -2.620119059241625 -4.767264819600784 -2.166119404674233 -5.873559466293838 -2.478965772395742 -5.839645049230055 0.7939477636360648 -5.917332136334101 0.9220098715437491 -7.042920849049135 0.3363783258394972 -5.177910156173502 1.294964790723312 -5.271800528567625 1.412461230707683 -5.787526407421514 1.179018042887779 -7.052366363064595 0.117928942085436 -7.147894061445859 0.2311284178204125 -7.650128474823353 -0.0521237149128579 -7.330237832350131 -2.497391177424061 -7.397103799309265 -2.828987567036165 -7.169448987281526 -2.523237030315316 -7.737670076202681 -2.636262514374005 -8.030026041788469 -3.199266105371076 -7.584247127016653 -2.689362640162711 -8.015596352434937 -2.86584519018703 -8.170034062009835 -2.815279621232072 -8.584674860058595 -3.385887706682498 -8.626894580693087 -2.948706082022819 -8.7639835389675 -2.867638261066807 -9.418099806598537 -3.589866553505813 -9.444421399327453 -3.12265942849865 -9.566235995890917 -3.01950100195389 -12.16085591726943 -5.324233997524462</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID504\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID500\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID498\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID499\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID500\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID501\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 6 7 1 8 4 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 14 13 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 16 15 18 17 19 18 16 15 19 18 20 19 20 19 19 18 21 20 20 19 21 20 22 21 22 21 21 20 23 22 22 21 23 22 24 23 24 23 23 22 25 24 26 24 27 22 28 23 28 23 27 22 29 21 27 22 30 20 29 21 29 21 30 20 31 19 30 20 32 18 31 19 31 19 32 18 33 15 32 18 34 17 33 15 34 17 35 16 33 15 35 16 36 14 33 15 33 15 36 14 37 13 36 14 38 12 37 13 37 13 38 12 39 10 38 12 40 9 39 10 41 11 39 10 40 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 54 37 60 38 61 39 62 39 63 38 59 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 75 49 78 50 79 51 80 51 81 50 76 49 82 52 79 53 83 54 84 54 80 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 90 61 46 62 91 63 46 62 90 61 94 64 95 64 93 61 47 62 92 63 47 62 93 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 44 71 50 72 45 73 48 73 53 72 49 71 54 74 56 75 60 76 63 76 57 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 61 80 60 81 64 82 67 82 63 81 62 80 98 83 69 84 68 85 73 85 72 84 99 83 69 86 74 87 70 88 71 88 77 87 72 86 75 89 74 90 78 91 81 91 77 90 76 89 79 92 78 93 83 94 84 94 81 93 80 92 82 95 83 96 87 97 88 97 84 96 85 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID505\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID506\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID510\">-0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID510\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID507\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID511\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6729884580762607 0.7375072073159738 0.05629968430755275 -0.6658436797422771 0.7251760043223742 -0.1754193743641215 -0.6630305151580132 0.7299655905773456 -0.1659541278256337 0.6630305151580132 -0.7299655905773456 0.1659541278256337 0.6658436797422771 -0.7251760043223742 0.1754193743641215 0.6729884580762607 -0.7375072073159738 -0.05629968430755275 -0.6144800241452068 0.7457833801420833 -0.257335286795953 -0.6113107337789397 0.7482110703485606 -0.2578359574894776 0.6113107337789397 -0.7482110703485606 0.2578359574894776 0.6144800241452068 -0.7457833801420833 0.257335286795953 -0.6144572319660114 -0.469525830568726 0.6340250819276909 -0.6630446878927789 -0.3784166032630609 0.645889012317143 -0.6112832145498026 -0.4707347038740193 0.6361931076161541 0.6112832145498026 0.4707347038740193 -0.6361931076161541 0.6630446878927789 0.3784166032630609 -0.645889012317143 0.6144572319660114 0.469525830568726 -0.6340250819276909 -0.6658562154288208 -0.3859655043248172 0.6384873764187492 -0.6729915547513984 -0.1696569719422396 0.71992977373122 0.6729915547513984 0.1696569719422396 -0.71992977373122 0.6658562154288208 0.3859655043248172 -0.6384873764187492 -0.6701267456751917 -0.1735325142790268 0.72167625097323 -0.6289091309737778 -0.01542730369521124 0.7773257382066434 0.6289091309737778 0.01542730369521124 -0.7773257382066434 0.6701267456751917 0.1735325142790268 -0.72167625097323 -0.6252368259778801 0.3578597082949858 0.6935526949123143 -0.6586051859823896 0.4442906086005776 0.6073261595769036 -0.6193427745518753 0.3613913988662995 0.6970012800819265 0.6193427745518753 -0.3613913988662995 -0.6970012800819265 0.6586051859823896 -0.4442906086005776 -0.6073261595769036 0.6252368259778801 -0.3578597082949858 -0.6935526949123143 -0.6253034624160696 0.5526101220855131 0.5510150931318574 -0.6194223535536992 0.5548231614226238 0.5554162470319005 0.6194223535536992 -0.5548231614226238 -0.5554162470319005 0.6253034624160696 -0.5526101220855131 -0.5510150931318574 -0.628982358135911 0.7454560785608687 0.2206273511839385 -0.67013650131323 0.7403345362785804 0.05312103162442063 0.67013650131323 -0.7403345362785804 -0.05312103162442063 0.628982358135911 -0.7454560785608687 -0.2206273511839385 -0.6220189146899646 -0.01309573882381509 0.7828926946859175 0.6220189146899646 0.01309573882381509 -0.7828926946859175 -0.6632923012885572 0.441848588696277 0.6039976388351515 0.6632923012885572 -0.441848588696277 -0.6039976388351515 -0.6221076599331773 0.7500464868654583 0.2245268959239637 0.6221076599331773 -0.7500464868654583 -0.2245268959239637</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID511\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID509\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID512\">7.795591679423524 -5.323227745288749 9.929583898964312 -6.871125386769826 10.11824808736943 -6.675185043266 7.718649839306408 -5.593427100716775 6.623133292318746 -4.900658240318208 6.619185689247543 -5.161112975986945 5.822099524111708 -4.877519494199655 5.930260994757609 -5.170298768740171 5.05490498188978 -5.48043594259001 4.859378482153733 -5.270196480154701 4.414072035031004 -6.042836842313367 4.092155780313024 -5.873100523294384 4.194417247662015 -6.556555994075766 4.385226823545771 -7.511775063321221 4.975203874607814 -9.634970930132152 5.269730206931626 -9.552833993310438 4.034559973661107 -7.487651576590498 3.87764031107622 -6.480658898337778 5.822179128624093 -6.457005021127549 5.689472813873823 -7.515378658893742 5.925653000357565 -7.46826496498529 5.916109472248006 -7.310813277664289 6.288098685998339 -9.573629295500691 6.511257923774214 -9.533277001644295 5.546090981562797 -9.850025254076742 3.526461403957602 -8.209666149461569 5.366702388850225 -9.961973302364093 5.329292279186206 -7.665955408862323 4.100724298898611 -7.222142695431995 5.158417602448649 -7.80262028114791 6.489769452481003 -5.779453223070861 5.637638242695263 -5.933192605821058 6.437987728279937 -5.968028370914714 7.098762251858164 -3.787052743699775 6.386063448597975 -4.493172816030821 7.217578390551652 -3.945559541713974 5.729712477188441 -5.034440475430622 5.946010344400233 -5.104542875128599 6.517499784057383 -4.37952604699279 5.967022270105487 -5.74343876346228 5.576548159483153 -6.35877397416587 5.82171707979354 -6.36355039909147 5.927577537499342 -7.239119522850759 5.691826745769582 -7.287545814181028 6.355060939941811 -9.495860674564316 5.577040359522241 -6.444146991745441 5.691612126075604 -7.507383079612655 5.822211657743393 -6.448847275944787 4.064972331357362 -7.995403824306254 6.168526379568627 -9.569136817559707 4.251113033307034 -7.871692637448878 4.281639333974275 -7.022897481686874 4.164842777836451 -7.1925382682496 5.397026101555857 -7.63010449077775 5.701364756438144 -5.601711277529612 5.729387676422575 -5.784399080729091 6.578380074322135 -5.620264617403369 7.051363306255356 -4.085489202208199 6.13862237800544 -4.632304826311748 6.30564364571233 -4.770181180200111 5.734267381965052 -5.596749296751172 5.573646081394728 -6.275246632246977 5.955497993585017 -5.656571920937295 5.704254899531289 -5.239542710890913 6.511544613865906 -4.599494280401795 6.323365246363862 -4.479665053217046</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID512\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID508\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID506\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID507\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"64\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID508\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID509\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 7 7 6 6 8 8 8 8 6 6 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 15 15 14 14 13 13 16 16 16 16 13 13 12 12 16 16 12 12 11 11 16 16 11 11 17 17 18 17 19 11 20 16 19 11 21 12 20 16 21 12 22 13 20 16 20 16 22 13 23 14 24 15 23 14 22 13 21 12 19 11 25 10 19 11 26 9 25 10 25 10 26 9 27 8 26 9 28 6 27 8 27 8 28 6 29 7 29 7 28 6 30 5 28 6 31 4 30 5 30 5 31 4 32 3 31 4 33 0 32 3 32 3 33 0 34 1 35 2 34 1 33 0 36 18 37 19 38 20 39 20 40 19 41 18 38 21 42 22 43 23 44 23 45 22 39 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 47 29 50 29 54 28 55 27 56 30 57 31 53 32 54 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 70 39 71 40 36 41 41 41 72 40 73 39 38 42 37 43 42 44 45 44 40 43 39 42 71 45 37 46 36 47 41 47 40 46 72 45 47 48 46 49 52 50 55 50 51 49 50 48 56 51 53 52 52 53 55 53 54 52 59 51 74 54 57 55 56 56 59 56 58 55 75 54 60 57 76 58 61 59 64 59 77 58 65 57 78 60 71 61 70 62 73 62 72 61 79 60 66 63 61 64 76 65 77 65 64 64 69 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID513\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID514\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID518\">-0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID518\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID515\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID519\">-0.1164164008736633 0.5995543045607452 -0.7918218596946564 -0.1152524072062661 0.5994041612018266 -0.792105759458354 -0.108837402926013 0.5869636604169701 -0.8022643461317676 0.108837402926013 -0.5869636604169701 0.8022643461317676 0.1152524072062661 -0.5994041612018266 0.792105759458354 0.1164164008736633 -0.5995543045607452 0.7918218596946564 -0.1108295971226472 0.5889064001271712 -0.8005660824010021 0.1108295971226472 -0.5889064001271712 0.8005660824010021 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.117010717209138 0.5772025840593379 -0.8081742813362881 0.117010717209138 -0.5772025840593379 0.8081742813362881 -0.55805116068878 0.2794674820048999 -0.7813301661626451 -0.4972069966061667 0.2998409485598932 -0.8141748019268212 -0.5145432086037881 0.301138149130455 -0.8028456275137845 0.5145432086037881 -0.301138149130455 0.8028456275137845 0.4972069966061667 -0.2998409485598932 0.8141748019268212 0.55805116068878 -0.2794674820048999 0.7813301661626451 -0.5583170886261052 0.2763353231468237 -0.7822536786295161 -0.5451735392333464 0.2585521366823797 -0.7974563340627268 0.5451735392333464 -0.2585521366823797 0.7974563340627268 0.5583170886261052 -0.2763353231468237 0.7822536786295161 -0.1318899009461685 0.5189517552672971 -0.8445674216623568 -0.1321751191906274 0.5316379949383054 -0.8365947526759427 -0.1366137379887484 0.525105648062938 -0.8400004434315159 0.1366137379887484 -0.525105648062938 0.8400004434315159 0.1321751191906274 -0.5316379949383054 0.8365947526759427 0.1318899009461685 -0.5189517552672971 0.8445674216623568 -0.1289772731066859 0.5276362262001799 -0.8396218647839013 -0.1269133562014147 0.541783060402261 -0.8308815291477196 0.1269133562014147 -0.541783060402261 0.8308815291477196 0.1289772731066859 -0.5276362262001799 0.8396218647839013 -0.1260730475475516 0.541364594212308 -0.8312821198699127 -0.1257237932527103 0.5619705390732921 -0.8175467210036521 -0.1241088849423676 0.5608577831136058 -0.8185569814003505 0.1241088849423676 -0.5608577831136058 0.8185569814003505 0.1260730475475516 -0.541364594212308 0.8312821198699127 0.1257237932527103 -0.5619705390732921 0.8175467210036521 -0.1211792230471033 0.5801840317827792 -0.8054204399976321 0.1211792230471033 -0.5801840317827792 0.8054204399976321 -0.6328077900805511 0.4212204572764466 -0.6497134962313701 -0.630745177755128 0.4220252385451681 -0.6511952232391957 -0.5535170558317795 0.4699781182489695 -0.6875604971713225 0.5535170558317795 -0.4699781182489695 0.6875604971713225 0.630745177755128 -0.4220252385451681 0.6511952232391957 0.6328077900805511 -0.4212204572764466 0.6497134962313701 -0.5496579690091841 0.4742995180535889 -0.6876889444209731 -0.5040577082147066 0.5271615428562393 -0.6841246483812488 0.5040577082147066 -0.5271615428562393 0.6841246483812488 0.5496579690091841 -0.4742995180535889 0.6876889444209731 -0.4611603796146424 0.6201725230534618 -0.6345999889089049 -0.4986083373847545 0.5294053531974816 -0.6863815978712283 0.4986083373847545 -0.5294053531974816 0.6863815978712283 0.4611603796146424 -0.6201725230534618 0.6345999889089049 -0.4569158452101462 0.7637801850174524 -0.4559251466749819 -0.4575413346766589 0.6147893824288844 -0.6424094818065907 0.4575413346766589 -0.6147893824288844 0.6424094818065907 0.4569158452101462 -0.7637801850174524 0.4559251466749819 -0.4287765424434085 0.8502341030875822 -0.3053729631076245 -0.4541857773435357 0.7765036889450471 -0.4367577139714671 0.4541857773435357 -0.7765036889450471 0.4367577139714671 0.4287765424434085 -0.8502341030875822 0.3053729631076245 -0.3064595936731795 0.2773796356690582 -0.9105729268772327 -0.3524563901464338 0.2844550069979994 -0.8915491248600456 0.3524563901464338 -0.2844550069979994 0.8915491248600456 0.3064595936731795 -0.2773796356690582 0.9105729268772327 -0.5412696949613353 0.2580312515619297 -0.8002793203212533 0.5412696949613353 -0.2580312515619297 0.8002793203212533 -0.427351177790763 0.8506607779687953 -0.3061816644842928 0.427351177790763 -0.8506607779687953 0.3061816644842928</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID519\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID517\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID520\">6.113201900217518 -9.742250853991777 7.091288569950677 -9.595896339223589 5.499103420584213 -6.600182416334707 5.420290547408211 -6.640748761512123 6.975901634042057 -9.648330521578423 6.408896219694804 -6.554535211264102 7.876456342147549 -3.761524831997849 10.67805680033176 -6.022078132143546 11.16176846173632 -5.437065414091726 7.505618194240906 -4.139992194044065 6.953548495402975 -3.227415287865078 6.513094513763935 -3.57407440575762 6.285949643299203 -2.794328788599893 5.822719035721721 -3.182704696932027 5.788941760897649 -2.3401120123712 4.612728757974727 -2.558494340414665 5.637283441458915 -2.005547866194009 5.097247661780172 -1.876136291272333 3.849480692439346 -1.51211513898687 3.499790042667428 -1.988486954492802 3.259391378364231 -1.357956861170158 2.984224971584125 -1.734949918247632 5.276829500861391 -5.688413843343613 5.455377910186199 -6.614016405360451 6.443502443529829 -6.524454426903926 5.918364098679632 0.6946835222532575 6.996622144483922 0.08107890823026182 7.093346623752447 0.1936633434774049 5.659837046645889 0.9479949494725006 5.733164416645455 1.077643543196735 5.12457596617492 1.196888661312207 4.758236997495068 -2.149699721033194 5.865618505324296 -2.460175025701383 5.735808099411976 -1.992899477220481 4.843545496099361 -2.673703235409213 6.087171796191482 -3.566690023565987 5.826602908377137 -2.54228182317705 5.082764984602673 -3.760757070883378 6.331641412255999 -4.720481401818463 6.058548585046148 -3.602661679311559 5.35585679491965 -4.878577887491488 5.285915461951562 -4.952279500389528 6.40989096811075 -5.463018791418008 6.264065004454752 -4.803501560120678 5.3725854730318 -5.6341428049648 6.554020323273361 -6.45725466293534 6.354500477194964 -5.5058065265386 12.14541253552307 -5.10293046955647 12.26851450157659 -4.986537430148319 9.41056898809822 -2.898791439095068 9.298610626780286 -3.549173966198144 9.42651991423803 -3.450700016896117 8.613182971989794 -2.826927959732564 8.038933125624038 -2.704561851470576 8.487838424714864 -3.286514222629172 8.629014812798161 -3.209905916204647 7.523789324761757 -2.751687845226335 7.805375665433106 -3.308562304365771 7.96324250441662 -3.265004189452493 7.150832450639896 -2.549082256247872 7.219812768339646 -2.90011231837174 7.377457688057052 -2.855312596780183 7.635697253095525 -0.8035006671235652 7.782229223622522 -0.7453506809080558 7.235310741891112 -0.4904196007434802 7.011895007764506 0.03672512252392931 7.606548193301278 -0.1401008424521096 7.109563867316364 0.1488038753349426 5.810559197299331 0.7254211548792295 7.005536879862811 0.2545755458081305 5.890502313623793 0.8526266988596412 5.158474751740419 1.229593571299443 5.765798087273703 1.106421549715725 5.254634222010645 1.345955951793201 4.742685627602766 -2.167049408315839 4.865427715803005 -2.621495704933041 5.847127653942131 -2.483938036577421 5.090846327701405 -3.748857617575201 6.066241502050971 -3.589285790193484 4.828626099140562 -2.691145961250775 5.249019993973442 -4.974806095254356 5.387368148386617 -5.621069559526315 6.368925063442006 -5.491049143458817 9.362675427690499 -3.207509091704578 12.04798571922787 -5.432569415147625 9.485908542837471 -3.105411685193395 8.55510598041441 -3.016987279469245 9.338158193561835 -3.664297378796833 8.693206550649377 -2.936984635025157 7.953234205976306 -2.919923603102037 8.516550120266997 -3.44382944239968 8.108248304215895 -2.870429459557781 7.686443725701371 -2.683559650169936 7.532549763138777 -2.735810750521659 7.973800953496667 -3.248171677254486 7.293828092787273 -2.540400614243558 7.132876063535401 -2.565649444134168 7.358713154635643 -2.872239896407073</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID520\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID516\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID514\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID515\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID516\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID517\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 8 6 9 7 10 8 9 7 8 6 11 9 11 9 8 6 12 10 11 9 12 10 13 11 13 11 12 10 14 12 13 11 14 12 15 13 15 13 14 12 16 14 15 13 16 14 17 15 17 15 16 14 18 16 17 15 18 16 19 17 17 15 19 17 20 18 17 15 20 18 21 19 21 19 20 18 22 20 21 19 22 20 23 21 24 21 25 20 26 19 25 20 27 18 26 19 26 19 27 18 28 15 27 18 29 17 28 15 29 17 30 16 28 15 30 16 31 14 28 15 28 15 31 14 32 13 31 14 33 12 32 13 32 13 33 12 34 11 33 12 35 10 34 11 34 11 35 10 36 9 35 10 37 6 36 9 36 9 37 6 38 7 39 8 38 7 37 6 40 22 2 23 6 24 7 24 3 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 42 28 48 29 49 30 50 30 51 29 47 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 62 37 63 38 59 39 63 38 62 37 64 40 65 40 66 37 67 38 60 39 67 38 66 37 64 41 68 42 63 43 67 43 69 42 65 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 72 50 76 51 77 52 78 52 79 51 73 50 80 53 77 54 81 55 82 55 78 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 92 62 93 63 43 64 46 64 94 63 95 62 43 65 93 66 44 67 45 67 94 66 46 65 42 68 44 69 48 70 51 70 45 69 47 68 49 71 48 72 96 73 97 73 51 72 50 71 52 74 58 75 53 76 56 76 61 75 57 74 62 77 59 78 58 79 61 79 60 78 66 77 64 80 40 81 68 82 69 82 41 81 65 80 72 83 71 84 76 85 79 85 74 84 73 83 77 86 76 87 81 88 82 88 79 87 78 86 80 89 81 90 85 91 86 91 82 90 83 89 89 92 84 93 85 94 86 94 87 93 90 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID521\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID522\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID526\">-0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID526\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID523\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID527\">-0.1088358859381834 -0.9423316096583713 0.3164899482933284 -0.115264363165527 -0.9364085327492276 0.3314410752735454 -0.1164308334372561 -0.9361829241127744 0.3316706101311379 0.1164308334372561 0.9361829241127744 -0.3316706101311379 0.115264363165527 0.9364085327492276 -0.3314410752735454 0.1088358859381834 0.9423316096583713 -0.3164899482933284 -0.1108265020245895 -0.9413013605670106 0.3188561353395736 0.1108265020245895 0.9413013605670106 -0.3188561353395736 -0.1170061438965575 -0.9450112108173462 0.3053905265721109 0.1170061438965575 0.9450112108173462 -0.3053905265721109 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211767870245431 -0.9432883615922447 0.3090683632645491 0.1211767870245431 0.9432883615922447 -0.3090683632645491 -0.1289832713335865 -0.9599617263082118 0.2486700620087674 -0.1321753098522585 -0.9582917932523017 0.2533900677823568 -0.1269172199874076 -0.9559205324775958 0.2647790680141043 0.1269172199874076 0.9559205324775958 -0.2647790680141043 0.1321753098522585 0.9582917932523017 -0.2533900677823568 0.1289832713335865 0.9599617263082118 -0.2486700620087674 -0.1318905450426279 -0.9620432799504404 0.238909212109029 -0.1366015841177712 -0.9595604633487854 0.2461376127177232 0.1366015841177712 0.9595604633487854 -0.2461376127177232 0.1318905450426279 0.9620432799504404 -0.238909212109029 -0.5450709898174925 -0.8383750888433897 0.004982616402794485 -0.5582559972072337 -0.8292442885329374 0.02653585343755587 -0.5579936818601086 -0.8293100066025989 0.02979872401626703 0.5579936818601086 0.8293100066025989 -0.02979872401626703 0.5582559972072337 0.8292442885329374 -0.02653585343755587 0.5450709898174925 0.8383750888433897 -0.004982616402794485 -0.5144490778171239 -0.8563961092508181 0.04390729316607478 -0.4971056987735406 -0.8668022854730181 0.03923929338842273 0.4971056987735406 0.8668022854730181 -0.03923929338842273 0.5144490778171239 0.8563961092508181 -0.04390729316607478 -0.352304512060553 -0.9358847587336349 0.001117654625490362 -0.3062977673774491 -0.9518676260712704 -0.01138859679831438 0.3062977673774491 0.9518676260712704 0.01138859679831438 0.352304512060553 0.9358847587336349 -0.001117654625490362 -0.4286372452159311 -0.5485409186912338 0.7178948199667378 -0.4542014913136462 -0.6513390540662555 0.6078309320333537 -0.4569466615946189 -0.6657511171996592 0.5898942264549963 0.4569466615946189 0.6657511171996592 -0.5898942264549963 0.4542014913136462 0.6513390540662555 -0.6078309320333537 0.4286372452159311 0.5485409186912338 -0.7178948199667378 -0.4574340725793243 -0.7984546202919721 0.3914387417947999 -0.4610431429742561 -0.7926530874053718 0.3989239317754095 0.4610431429742561 0.7926530874053718 -0.3989239317754095 0.4574340725793243 0.7984546202919721 -0.3914387417947999 -0.4985522816593612 -0.8144906939653281 0.2967330987539529 -0.504011286993974 -0.8116541095840285 0.2952799163133784 0.504011286993974 0.8116541095840285 -0.2952799163133784 0.4985522816593612 0.8144906939653281 -0.2967330987539529 -0.5497181193307189 -0.7989775362978114 0.2438132190242709 -0.5535803758470984 -0.7975432953446792 0.2397362290679806 0.5535803758470984 0.7975432953446792 -0.2397362290679806 0.5497181193307189 0.7989775362978114 -0.2438132190242709 -0.6307130915381779 -0.7484351601869926 0.2050507428863028 -0.6327733709944583 -0.7467813291086449 0.2047327708380742 0.6327733709944583 0.7467813291086449 -0.2047327708380742 0.6307130915381779 0.7484351601869926 -0.2050507428863028 -0.1241102328803618 -0.949950385418969 0.2866895800979427 -0.12572764539914 -0.9493235337335358 0.288057958546645 0.12572764539914 0.9493235337335358 -0.288057958546645 0.1241102328803618 0.949950385418969 -0.2866895800979427 -0.1260763385258006 -0.9561757449318785 0.2642587778445488 0.1260763385258006 0.9561757449318785 -0.2642587778445488 -0.5411572163250612 -0.8409136120021787 0.0036282735233317 0.5411572163250612 0.8409136120021787 -0.0036282735233317 -0.4271593597663426 -0.5494736951569242 0.7180623508405128 0.4271593597663426 0.5494736951569242 -0.7180623508405128</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID527\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID525\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID528\">-3.786473319759188 -7.323412140034409 -4.615531269323347 -10.50426780891869 -3.619923147946738 -10.4997124189645 -3.81352480912883 -7.314962732852594 -4.805676486616894 -7.37051953241552 -4.653673804142658 -10.49401698912256 -3.861453874929484 -6.370197921834446 -4.812624718306279 -7.36088743703495 -3.820425668882074 -7.305856672633955 2.694805104503927 -6.908588653047397 3.159237001412372 -10.04246510191542 4.01444950041533 -9.85695107623112 2.124028407813262 -7.071998294227972 2.309722319644435 -5.993056934305602 2.044608896717736 -5.356969436367257 1.756362347080652 -6.218346919426859 1.654720203610757 -4.260796592547062 1.433822075213695 -5.58669282178515 1.301124565657046 -3.253791213680578 1.034025889616375 -5.076538702772943 1.150057598209742 -2.790499405865308 0.6099842723727789 -2.882667464664047 0.6813313594591697 -4.417481111052449 0.6181083223495576 -3.371747130340732 0.6745777442559287 -4.861532670451762 -3.824119757917572 -6.385272312822708 -4.818761116653899 -6.415319624856644 -4.770302607309429 -7.378913320643741 -3.932374746135774 -3.499523185868613 -4.927413575326117 -3.550563414087187 -4.879652942044097 -4.594604717966694 -3.940378453159533 -3.027190444375211 -4.936862069573945 -3.065660927447276 -4.915571062373914 -3.5436583785342 -3.918064205042312 -2.911394748494002 -4.09282702520373 -3.385230939043493 -3.913500117488176 -3.40050299024049 -4.103959653848396 -3.470749325366316 -4.244247793447956 -4.516291113672466 -4.071526949273308 -4.517354419797227 -4.694071954369298 -4.397249817793164 -4.852048441064388 -4.881619431869657 -4.696140705790722 -4.841330176768042 -3.612092296619232 -5.493643733810828 -3.54728384340591 -5.844317579836226 -3.388429709736816 -5.80223159735321 -3.853333020430924 -5.800397365438651 -3.80351443586253 -6.41800547167999 -3.644650972120329 -6.376784300125662 -3.613854860136208 -6.28799614187596 -3.613167292398807 -6.974182995811063 -3.443345100842655 -6.955360092461058 -3.229723261065653 -6.914445467807718 -3.198837732959714 -7.807696212394419 -3.020090597742209 -7.800548950638829 -2.556309598949435 -7.719435323674952 -2.07909737595266 -10.76451173411055 -1.887081515124395 -10.7541844740011 -3.839915993991579 -5.735080854880583 -4.835935624615236 -5.752527526608549 -4.800992548081733 -6.42136775030822 -3.842653010323232 -5.712728447491024 -4.889675796800544 -4.592379227370737 -4.838679085328147 -5.729945936031485 -3.893651563408266 -4.575157380439522 -3.857120588539961 -5.72660297898442 -4.819904359823177 -6.41140743340478 -3.825258441823209 -6.381453665091004 -3.941118556409633 -3.493999293346616 -4.890027573496783 -4.588206715689682 -3.894002460961315 -4.571016362072552 -3.954943057750661 -3.012787565415254 -4.93138635985045 -3.527791052174538 -3.936315166081157 -3.477142797519195 -4.105939758987547 -3.476609754896952 -4.063770219756945 -4.537696388468241 -3.926614997645129 -3.491897394819695 -4.000934001956216 -2.89206782663573 -4.177193689864259 -2.897812676959156 -4.175804411867014 -3.36587945210828 -4.244396603139681 -4.53007578126498 -4.22716918693565 -5.016005951249156 -4.071675761691439 -4.531139361422384 -3.652170740556171 -5.469963595447143 -3.798853510505536 -5.527848467073778 -3.590817288257763 -5.821021844290655 -3.833509888572388 -5.808143101871867 -3.995755863268846 -5.841267620548126 -3.781669341089509 -6.425648218290957 -3.850258232861662 -6.228912249916991 -4.010205632191378 -6.267452237426695 -3.866956363979578 -6.914973573831331 -3.477759105263607 -6.875094619680589 -3.647638875630202 -6.893593195818973 -3.464546362080003 -7.768615286749084 -3.033317435407952 -7.697846838450428 -3.212070745508375 -7.704897883551319 -2.636818840382449 -10.75008068999862</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID528\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID524\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID522\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID523\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID524\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID525\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 6 7 0 8 5 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 13 12 10 9 14 13 13 12 14 13 15 14 13 12 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 20 19 19 18 21 20 20 19 21 20 22 21 20 19 22 21 23 22 23 22 22 21 24 23 25 24 20 19 23 22 26 22 27 19 28 24 29 23 30 21 26 22 26 22 30 21 27 19 30 21 31 20 27 19 31 20 32 18 27 19 27 19 32 18 33 17 32 18 34 16 33 17 33 17 34 16 35 15 34 16 36 14 35 15 35 15 36 14 37 12 36 14 38 13 37 12 38 13 39 9 37 12 37 12 39 9 40 10 41 11 40 10 39 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 56 37 60 38 61 39 62 39 63 38 57 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 75 49 78 50 79 51 80 51 81 50 76 49 79 52 82 53 83 54 84 54 85 53 80 52 83 55 86 56 87 57 88 57 89 56 84 55 90 58 91 59 42 60 43 60 92 59 93 58 90 61 46 62 91 63 46 62 90 61 94 64 95 64 93 61 47 62 92 63 47 62 93 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 55 74 60 75 56 76 57 76 63 75 58 74 54 77 96 78 55 79 58 79 97 78 59 77 60 80 64 81 61 82 62 82 67 81 63 80 68 83 98 84 69 85 72 85 99 84 73 83 70 86 69 87 74 88 77 88 72 87 71 86 75 89 74 90 78 91 81 91 77 90 76 89 79 92 78 93 82 94 85 94 81 93 80 92 83 95 82 96 86 97 89 97 85 96 84 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID529\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID530\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID534\">-0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID534\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID531\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID535\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID535\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID533\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID536\">4.048226775239526 -14.15776759814488 5.275854736254216 -20.25943781854545 6.074311336163872 -20.10514721805505 3.331770984800639 -14.38222820365034 3.34628257493822 -12.47232526311665 2.743403913001568 -11.2463545094255 2.619482817920047 -12.7497492002406 1.930445109493735 -10.2117235234207 2.016557223285633 -11.52379262397881 1.315964684678752 -10.70622398827427 1.252530450429137 -9.803638625415397 -0.1147598324848787 -10.49443800458955 1.185360373440858 -8.832837379884129 1.034377884849387 -6.712951942821705 1.02924344771786 -5.77682455434737 -0.08553014833978972 -5.880332193704978 -1.198492142265195 -5.712091593480277 -1.215528711540519 -6.648138052462246 -1.547887303772093 -10.63899816275007 -1.472992104737583 -9.736992302315027 -1.393422409009268 -8.766741022896534 -2.156041200933601 -10.13969745661595 -2.258842582037208 -11.4510186977769 -2.982122386725945 -11.16788361953795 -2.877321672698945 -12.67215376661415 -3.610391638133557 -14.29897361281646 -3.600610863927081 -12.38904113597162 -4.32388128207585 -14.06887039043778 -5.629060832817041 -20.16055024897072 -6.425433245485834 -20.00001212795564 -3.212716622742917 -10.00000606397782 -2.161940641037925 -7.034435195218892 -2.814530416408521 -10.08027512448536 -1.805195819066778 -7.149486806408228 -1.80030543196354 -6.194520567985809 -1.491061193362973 -5.583941809768977 -1.438660836349472 -6.336076883307075 -1.129421291018604 -5.725509348888448 -1.0780206004668 -5.069848728307975 -0.7739436518860465 -5.319499081375033 -0.7364960523687913 -4.868496151157514 -0.6967112045046342 -4.383370511448267 -0.6077643557702595 -3.324069026231123 -0.05737991624243935 -5.247219002294777 -0.5992460711325975 -2.856045796740138 -0.04276507416989486 -2.940166096852489 0.5146217238589301 -2.888412277173685 0.5171889424246934 -3.356475971410852 0.592680186720429 -4.416418689942065 0.6262652252145684 -4.901819312707699 0.657982342339376 -5.353111994137136 0.9652225547468674 -5.105861761710349 1.008278611642817 -5.761896311989403 1.309741408960023 -6.374874600120302 1.371701956500784 -5.623177254712751 1.66588549240032 -7.191114101825169 1.67314128746911 -6.236162631558325 2.024113387619763 -7.07888379907244 2.637927368127108 -10.12971890927273 3.037155668081936 -10.05257360902752</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID536\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID532\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID530\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID531\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID532\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID533\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 3 3 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 9 9 7 7 10 10 9 9 10 10 11 11 11 11 10 10 12 12 11 11 12 12 13 13 11 11 13 13 14 14 11 11 14 14 15 15 11 11 15 15 16 16 11 11 16 16 17 17 11 11 17 17 18 18 18 18 17 17 19 19 19 19 17 17 20 20 18 18 19 19 21 21 18 18 21 21 22 22 22 22 21 21 23 23 22 22 23 23 24 24 24 24 23 23 25 25 25 25 23 23 26 26 25 25 26 26 27 27 25 25 27 27 28 28 28 28 27 27 29 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID532\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID533\" />\r\n\t\t\t\t\t<p>30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 34 34 35 35 33 33 33 33 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 41 41 42 42 40 40 40 40 42 42 39 39 39 39 42 42 43 43 42 42 44 44 43 43 44 44 45 45 43 43 45 45 46 46 43 43 46 46 47 47 43 43 47 47 48 48 43 43 48 48 49 49 43 43 43 43 49 49 50 50 49 49 51 51 50 50 50 50 51 51 52 52 52 52 51 51 53 53 51 51 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 56 56 57 57 55 55 55 55 57 57 58 58 59 59 58 58 57 57</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID537\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID538\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID542\">-0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID542\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID539\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID543\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6630779028754261 -0.686790694066647 -0.2977351797517055 -0.6729311871649365 -0.562029832840137 -0.4809221187868957 -0.6658892428368299 -0.6885143064564592 -0.2872969997737087 0.6658892428368299 0.6885143064564592 0.2872969997737087 0.6729311871649365 0.562029832840137 0.4809221187868957 0.6630779028754261 0.686790694066647 0.2977351797517055 -0.6113217468963009 -0.7555949016953774 -0.2352914497035711 -0.6145076962834851 -0.7533304730451725 -0.23425091160954 0.6145076962834851 0.7533304730451725 0.23425091160954 0.6113217468963009 0.7555949016953774 0.2352914497035711 -0.6113552837420216 0.7554994400131816 -0.2355107496070638 -0.614536014802447 0.753238837863779 -0.234471191501963 -0.6630217725658703 0.6867913760071885 -0.2978585821254177 0.6630217725658703 -0.6867913760071885 0.2978585821254177 0.614536014802447 -0.753238837863779 0.234471191501963 0.6113552837420216 -0.7554994400131816 0.2355107496070638 -0.6658367060927759 0.6885118877851151 -0.2874245313088283 -0.6729662109479289 0.5620113969532229 -0.480894654386046 0.6729662109479289 -0.5620113969532229 0.480894654386046 0.6658367060927759 -0.6885118877851151 0.2874245313088283 -0.6701069292073644 0.5661758691150767 -0.4800016548513805 -0.6289247236154029 0.4714099301382881 -0.6182445873538268 0.6289247236154029 -0.4714099301382881 0.6182445873538268 0.6701069292073644 -0.5661758691150767 0.4800016548513805 -0.6252698128776827 0.1206693193046023 -0.7710230713036228 -0.6586069297905275 -2.229606074873209e-006 -0.7524871507387512 -0.6193819127185333 0.1198559305827131 -0.7758869776593 0.6193819127185333 -0.1198559305827131 0.7758869776593 0.6586069297905275 2.229606074873209e-006 0.7524871507387512 0.6252698128776827 -0.1206693193046023 0.7710230713036228 -0.6252581822364834 -0.120672201244489 -0.7710320521178985 -0.6193686517759511 -0.1198585530154133 -0.7758971584342167 0.6193686517759511 0.1198585530154133 0.7758971584342167 0.6252581822364834 0.120672201244489 0.7710320521178985 -0.6288757300373609 -0.4714242768409007 -0.6182834846371121 -0.67006535899179 -0.5661918537004904 -0.4800408310575318 0.67006535899179 0.5661918537004904 0.4800408310575318 0.6288757300373609 0.4714242768409007 0.6182834846371121 -0.6220449068117597 0.4728131159400871 -0.6241056731873016 0.6220449068117597 -0.4728131159400871 0.6241056731873016 -0.6632952763355497 -2.144258925662945e-006 -0.7483577863471115 0.6632952763355497 2.144258925662945e-006 0.7483577863471115 -0.6219938106167091 -0.472827546613443 -0.6241456646633203 0.6219938106167091 0.472827546613443 0.6241456646633203</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID543\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID541\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID544\">2.916716979171949 10.15761536438385 2.360348620683812 7.925327132511852 3.216081884900745 10.0871098268747 2.095474554515417 8.10766186966894 1.731248660526263 7.039697384405099 1.53253561834532 7.248080785050663 1.102106460940886 6.648978065149996 0.9696623879520416 6.935506865534766 0.03037484196967586 6.518738882791184 0.03037484196966032 6.779216066056368 -1.04136616354108 6.648978065150011 -0.9088939309335409 6.935506865534769 -1.471814094024708 7.248080785050666 -1.670494283317261 7.039697384405096 -2.034706097497008 8.107661869668936 -2.299594243474685 7.925327132511855 -2.856924722266216 10.15761536438385 -3.156233308757805 10.08710982687471 -1.40781128757764 8.740863958144171 -1.852121515551163 7.788450679867976 -1.168223810341762 8.705845242068937 -1.353723762346343 10.77235392063934 -1.891963265655392 8.548125708057006 -1.127976746028978 10.74215769727934 1.390907857481091 10.76412350460084 1.165152667342891 10.73392563091469 1.92977610017306 8.539773730394375 1.451024695764368 8.728401408360952 1.211452728307992 8.693382385382428 1.895306010249322 7.775979783153745 0.9074623347642705 7.685547256742304 1.633385363252757 7.302298032340775 1.117617843992585 7.784976980384649 -0.2901796556002942 6.749254765222319 0.8549824061199894 6.711683130854517 -0.197239063084682 6.918126269644701 0.3497466618996286 6.756248688697456 0.2568369789646587 6.925123544849952 -0.7953736304985473 6.718676308614904 -1.583745696748875 7.318291702219283 -0.8578410112294874 7.701550924618476 -1.06798004515442 7.800983242129445 -0.7399734769562733 10.71852904030233 -1.55024617473669 8.534797514554935 -1.310273488089885 8.50145099047988 -1.78574637488333 7.791442475072095 -1.566410502550131 7.70517274122652 -1.095319278789253 8.705805411636872 0.7810767299616233 10.71158619287857 1.352006114122691 8.494388859175095 1.591962985362013 8.527737177369552 1.138657808235052 8.693800988211841 1.609739214986294 7.693184525529069 1.829089859934408 7.779452862022374 1.08537548281971 7.599211858902786 1.642118984845298 7.065808738801556 1.799210093489108 7.202159495554009 0.8075133592585561 6.667004022123 0.8413662356912078 6.855588981904453 -0.303908425543867 6.890972967685572 -1.594006231623408 7.083719623542236 -1.037267018645942 7.617144552937642 -1.751077057674244 7.220075955278533 0.3635172617960516 6.897601249431154 -0.7817156750263035 6.862217289076101 -0.7478615787589549 6.673632464807028</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID544\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID540\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID538\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID539\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"64\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID540\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID541\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 10 10 12 12 13 13 13 13 12 12 14 14 13 13 14 14 15 15 15 15 14 14 16 16 15 15 16 16 17 17 18 17 19 16 20 15 19 16 21 14 20 15 20 15 21 14 22 13 21 14 23 12 22 13 22 13 23 12 24 10 23 12 25 11 24 10 25 11 26 9 24 10 24 10 26 9 27 8 26 9 28 7 27 8 27 8 28 7 29 6 28 7 30 5 29 6 29 6 30 5 31 4 30 5 32 3 31 4 31 4 32 3 33 1 32 3 34 0 33 1 35 2 33 1 34 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 36 22 43 23 44 23 41 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 48 27 52 28 53 29 54 29 55 28 49 27 56 30 57 31 53 32 54 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 70 39 71 40 37 41 40 41 72 40 73 39 43 42 36 43 38 44 39 44 41 43 44 42 37 45 71 46 38 47 39 47 72 46 40 45 47 48 52 49 48 50 49 50 55 49 50 48 52 51 56 52 53 53 54 53 59 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 76 57 61 58 60 59 65 59 64 58 77 57 78 60 71 61 70 62 73 62 72 61 79 60 66 63 61 64 76 65 77 65 64 64 69 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID545\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID546\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID550\">-0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID550\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID547\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID551\">-0.1164409580977757 -0.9514088463688938 0.2850661507936061 -0.1152736558224273 -0.9514554511327701 0.2853848432959771 -0.1088414049293589 -0.947410974285598 0.3009418455054356 0.1088414049293589 0.947410974285598 -0.3009418455054356 0.1152736558224273 0.9514554511327701 -0.2853848432959771 0.1164409580977757 0.9514088463688938 -0.2850661507936061 -0.1108291057697727 -0.947976074128154 0.2984263262429192 0.1108291057697727 0.947976074128154 -0.2984263262429192 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170025511882888 -0.9430258041624864 0.3114686753096171 0.1170025511882888 0.9430258041624864 -0.3114686753096171 -0.4971366770465531 -0.7227409499224468 0.4801048256790497 -0.5144747560634457 -0.7170989215866322 0.4701966206096629 -0.5580530298785489 -0.6868819057170897 0.4655857208311168 0.5580530298785489 0.6868819057170897 -0.4655857208311168 0.5144747560634457 0.7170989215866322 -0.4701966206096629 0.4971366770465531 0.7227409499224468 -0.4801048256790497 -0.5583224479878474 -0.6848994354787804 0.4681760431223551 -0.5451847648562986 -0.6795279363612947 0.4909331480692076 0.5451847648562986 0.6795279363612947 -0.4909331480692076 0.5583224479878474 0.6848994354787804 -0.4681760431223551 -0.132187031375201 -0.9230309666043481 0.3613037827447346 -0.1366215138279231 -0.9197698814859678 0.3679102160455122 -0.1319019164971365 -0.9175016921677499 0.375223305904228 0.1319019164971365 0.9175016921677499 -0.375223305904228 0.1366215138279231 0.9197698814859678 -0.3679102160455122 0.132187031375201 0.9230309666043481 -0.3613037827447346 -0.1268997631170716 -0.9278451148530309 0.3507134057377864 -0.1289849043901566 -0.9215886923010116 0.3661108802840657 0.1289849043901566 0.9215886923010116 -0.3661108802840657 0.1268997631170716 0.9278451148530309 -0.3507134057377864 -0.1260530155511802 -0.927743067690427 0.3512882543194544 -0.1256997483470361 -0.9362686863122588 0.3280251824122791 -0.1240889977263835 -0.935968365345372 0.3294922453047622 0.1240889977263835 0.935968365345372 -0.3294922453047622 0.1260530155511802 0.927743067690427 -0.3512882543194544 0.1256997483470361 0.9362686863122588 -0.3280251824122791 -0.1211640169608956 -0.9438046778011408 0.3074931074911838 0.1211640169608956 0.9438046778011408 -0.3074931074911838 -0.6328548543715852 -0.7235364593406309 0.2756623392905591 -0.6307922097387901 -0.7250610588406663 0.2763831562988343 -0.5535665584026356 -0.7852409048141928 0.2774180722751294 0.5535665584026356 0.7852409048141928 -0.2774180722751294 0.6307922097387901 0.7250610588406663 -0.2763831562988343 0.6328548543715852 0.7235364593406309 -0.2756623392905591 -0.5497036183937712 -0.7888062471367417 0.2749738831286428 -0.5040203107265815 -0.8294161793038206 0.2408989993423235 0.5040203107265815 0.8294161793038206 -0.2408989993423235 0.5497036183937712 0.7888062471367417 -0.2749738831286428 -0.4985502972453628 -0.8325691162757212 0.2414047798624232 -0.460851692936173 -0.8753739730121579 0.146068903229857 0.460851692936173 0.8753739730121579 -0.146068903229857 0.4985502972453628 0.8325691162757212 -0.2414047798624232 -0.4572416734112509 -0.8756361354271367 0.1555358814881895 -0.4569279317681941 -0.8856200811699702 -0.08302973562848467 0.4569279317681941 0.8856200811699702 0.08302973562848467 0.4572416734112509 0.8756361354271367 -0.1555358814881895 -0.4542038175253678 -0.8845680751983658 -0.1060104357374351 -0.4286788938903839 -0.8665692927857499 -0.2555231236771386 0.4286788938903839 0.8665692927857499 0.2555231236771386 0.4542038175253678 0.8845680751983658 0.1060104357374351 -0.3524105864353466 -0.7559917297368691 0.5516187842502752 -0.3064282572468343 -0.7615096868410569 0.5711433445361185 0.3064282572468343 0.7615096868410569 -0.5711433445361185 0.3524105864353466 0.7559917297368691 -0.5516187842502752 -0.5412831574712219 -0.6807737084399571 0.4935176808736367 0.5412831574712219 0.6807737084399571 -0.4935176808736367 -0.4272120245077655 -0.8674148026834218 -0.2551106548179773 0.4272120245077655 0.8674148026834218 0.2551106548179773</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID551\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID549\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID552\">-4.616909317180718 10.23948786492563 -5.610078521260624 10.18451102473239 -4.476007576609035 7.062446497286024 -5.582273135016021 10.1941861999994 -5.451980479202522 7.070081426959295 -4.457317962308713 7.070081426959296 -1.33218931828335 3.230435375675426 -1.6114341764961 2.609907015700216 -1.106382029703872 2.786350440244579 -1.802609827421979 4.207418866483767 -1.971952387364679 3.008396156954229 -2.310670360138509 5.273218044780612 -2.705824901930551 3.881759770422776 -2.574112979026264 5.90973500068239 -2.950461588838496 6.827506162532062 -2.915820564645328 4.577486397015233 -2.976053988909622 5.174927108690099 -4.098294577175903 9.820029505899221 -3.189794693172454 5.834534961886438 -3.533778702362138 6.694277314763351 -4.927754917204618 9.572531168459182 -3.044538181434562 4.237025474007779 -4.457317962308713 7.061712810444016 -5.451980479202522 7.061712810444018 -4.414598464887224 6.126107772952492 -5.763048222846655 3.122267891642199 -5.924772333389478 3.074542164180131 -5.33596872995056 2.130714035845917 -5.218756704377096 1.966856877840273 -5.377440342691845 1.899378453086448 -4.987916614829788 1.512708834556799 -5.29019606874273 3.166224867289707 -5.257018934731138 2.688642967424494 -4.260154754836963 2.720485635982612 -5.351085900066831 4.23457763899701 -5.285625910594948 3.191125460069592 -4.288675503379187 3.206941579033968 -4.351493664629199 4.291039244739512 -5.414233208841241 5.380670171341812 -5.345933874498217 4.243665053434983 -4.41979236804897 5.428040042772467 -5.444478208186572 6.07674149299513 -5.409786663689427 5.40789315121728 -4.415291528805324 5.454552311874554 -5.479987793634328 7.049459215875197 -5.432744773063641 6.08583337300607 -4.438155718111392 6.116919218057375 -7.120928170141183 9.270667048401974 -7.302381745519437 9.220150285118146 -6.203185173507943 6.276398871968053 -6.246087340236969 6.477690060269889 -6.416833798944759 6.43548686015438 -6.05090352278245 5.589542698505411 -6.057282581899993 5.716607486391731 -6.225849311089496 5.691759027822195 -5.947800219407116 5.041376582275624 -6.110213799958335 5.176780817884009 -5.915069665924102 4.577268658835078 -5.942953322128933 5.176183896234631 -5.911078840908683 4.364150946875863 -6.078344164688114 4.355576795346951 -5.968821493453951 4.011867773493208 -6.077940492615052 3.895396330804702 -5.788129089640393 3.450333224929001 -5.914572748051512 3.883135267461919 -6.122288302219893 3.554007002763703 -5.926698155432084 3.092878339107605 -5.764906912468319 3.140463050621411 -5.870819298278879 3.017708812526331 -5.411299025384771 2.019532791723905 -5.25185851333697 2.085897937376482 -5.418215817904647 1.905293193501272 -5.20087948499223 1.469582089575572 -5.03425269375542 1.515196952579786 -4.289073233445126 3.18393522163202 -5.286018809997048 3.167931777298792 -4.257505459531929 2.720014403967389 -4.351952313245739 4.286247223369609 -5.34638380163261 4.238759873238242 -4.285980849598744 3.209841492506433 -4.438928614152006 6.112609013456504 -5.433512735694054 6.081425640721875 -4.405753380254583 5.457778096002004 -7.23775406617386 9.323170269276911 -6.415450211855801 6.313277663626342 -6.244958820165806 6.356114253185693 -6.408634890764557 6.478828975510515 -6.226509457877878 5.603684553087598 -6.058025690602193 5.628878803242282 -6.210238106228282 5.734211264659076 -6.110019128929388 5.081703461357701 -5.942758739870094 5.081091340191565 -6.111403487118982 5.175334618298088 -6.083282415819649 4.567569574095214 -5.91599523908132 4.575875699918768 -6.075915714967462 4.348926781517354 -6.129123088814952 4.015794026888997 -5.965547817296141 4.005385117475852</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID552\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID548\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID546\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID547\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID548\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID549\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 14 12 16 14 17 15 17 15 16 14 18 16 18 16 16 14 19 17 18 16 19 17 20 18 20 18 19 17 21 19 21 19 19 17 22 20 23 21 14 12 17 15 24 15 25 12 26 21 27 20 28 17 29 19 29 19 28 17 30 18 30 18 28 17 31 16 28 17 32 14 31 16 31 16 32 14 24 15 24 15 32 14 25 12 32 14 33 13 25 12 33 13 34 11 25 12 25 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 2 22 6 23 40 24 41 24 7 23 3 22 42 25 43 26 44 27 45 27 46 26 47 25 44 28 48 29 49 30 50 30 51 29 45 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 52 35 59 36 60 36 57 35 61 34 62 37 63 38 58 39 63 38 62 37 64 40 65 40 66 37 67 38 61 39 67 38 66 37 68 41 63 42 64 43 65 43 67 42 69 41 6 44 68 45 40 46 41 46 69 45 7 44 70 47 71 48 72 49 73 49 74 48 75 47 72 50 76 51 77 52 78 52 79 51 73 50 77 53 80 54 81 55 82 55 83 54 78 53 84 56 85 57 81 58 82 58 86 57 87 56 85 59 88 60 89 61 90 61 91 60 86 59 92 62 42 63 93 64 94 64 47 63 95 62 92 65 43 66 42 67 47 67 46 66 95 65 43 68 48 69 44 70 45 70 51 69 46 68 48 71 96 72 49 73 50 73 97 72 51 71 59 74 52 75 54 76 55 76 57 75 60 74 62 77 58 78 59 79 60 79 61 78 66 77 40 80 68 81 64 82 65 82 69 81 41 80 71 83 76 84 72 85 73 85 79 84 74 83 76 86 80 87 77 88 78 88 83 87 79 86 80 89 84 90 81 91 82 91 87 90 83 89 84 92 88 93 85 94 86 94 91 93 87 92 88 95 98 96 89 97 90 97 99 96 91 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID553\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID554\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID558\">-0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID558\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID555\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID559\">-0.1164499499977552 0.9514072021990337 0.2850679651404685 -0.1088253784222441 0.9474097604849766 0.3009514624471104 -0.1152785401318226 0.9514539780096277 0.2853877816493387 0.1152785401318226 -0.9514539780096277 -0.2853877816493387 0.1088253784222441 -0.9474097604849766 -0.3009514624471104 0.1164499499977552 -0.9514072021990337 -0.2850679651404685 -0.1108158709414702 0.9479756505698795 0.2984325864815992 0.1108158709414702 -0.9479756505698795 -0.2984325864815992 -0.1170020873176061 0.9430265699053393 0.3114665311327904 0.1170020873176061 -0.9430265699053393 -0.3114665311327904 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211732142097103 0.9438073403036035 0.3074813108908012 0.1211732142097103 -0.9438073403036035 -0.3074813108908012 -0.1269033028027753 0.9278449706028746 0.3507125065701218 -0.1289786499144217 0.9215964103368728 0.3660936551218056 -0.1321716117428985 0.9230345567260386 0.3613002520603185 0.1321716117428985 -0.9230345567260386 -0.3613002520603185 0.1289786499144217 -0.9215964103368728 -0.3660936551218056 0.1269033028027753 -0.9278449706028746 -0.3507125065701218 -0.1318868020555722 0.9175152480092108 0.3751954705405586 -0.1365916059617619 0.9197763476074805 0.3679051556619317 0.1365916059617619 -0.9197763476074805 -0.3679051556619317 0.1318868020555722 -0.9175152480092108 -0.3751954705405586 -0.5580352589138925 0.686896283790861 0.4655858085500564 -0.5451072798952581 0.6795683929083647 0.4909631888086266 -0.5582998943323946 0.6849160643720522 0.4681786120206002 0.5582998943323946 -0.6849160643720522 -0.4681786120206002 0.5451072798952581 -0.6795683929083647 -0.4909631888086266 0.5580352589138925 -0.686896283790861 -0.4655858085500564 -0.497074599178697 0.7227721921072363 0.4801220690281148 -0.5144099610105722 0.7171316315973716 0.4702176251222334 0.5144099610105722 -0.7171316315973716 -0.4702176251222334 0.497074599178697 -0.7227721921072363 -0.4801220690281148 -0.352403313346486 0.7560131466980314 0.5515940778889484 -0.3064402809272837 0.7615293823458688 0.5711106320575088 0.3064402809272837 -0.7615293823458688 -0.5711106320575088 0.352403313346486 -0.7560131466980314 -0.5515940778889484 -0.4568215763294453 0.8856767481496878 -0.08301051250820768 -0.4286481079664477 0.8665788463267886 -0.2555423695509543 -0.4540888561829713 0.8846296580586545 -0.1059890502526975 0.4540888561829713 -0.8846296580586545 0.1059890502526975 0.4286481079664477 -0.8665788463267886 0.2555423695509543 0.4568215763294453 -0.8856767481496878 0.08301051250820768 -0.4574195148530338 0.8755517285042376 0.1554881286299919 -0.4610442893976508 0.8752815563959685 0.1460149315887465 0.4610442893976508 -0.8752815563959685 -0.1460149315887465 0.4574195148530338 -0.8755517285042376 -0.1554881286299919 -0.5040953384354201 0.8293748738257591 0.2408842220532205 -0.4986342763500318 0.8325237471962924 0.2413877975439595 0.4986342763500318 -0.8325237471962924 -0.2413877975439595 0.5040953384354201 -0.8293748738257591 -0.2408842220532205 -0.5535993933396806 0.7852192614320004 0.2774138121473434 -0.5497405090277223 0.7887818631232486 0.2749700804483234 0.5497405090277223 -0.7887818631232486 -0.2749700804483234 0.5535993933396806 -0.7852192614320004 -0.2774138121473434 -0.6327739567192011 0.7235964141618628 0.2756906765018007 -0.6307142225357303 0.7251185372018276 0.2764103407932322 0.6307142225357303 -0.7251185372018276 -0.2764103407932322 0.6327739567192011 -0.7235964141618628 -0.2756906765018007 -0.1241004601015495 0.9359706713431454 0.329481377604328 -0.1257158798169777 0.9362722954747478 0.3280086984948568 0.1257158798169777 -0.9362722954747478 -0.3280086984948568 0.1241004601015495 -0.9359706713431454 -0.329481377604328 -0.1260584581940911 0.9277432077180657 0.3512859314728144 0.1260584581940911 -0.9277432077180657 -0.3512859314728144 -0.5411915379110214 0.6808183023324969 0.4935566416355883 0.5411915379110214 -0.6808183023324969 -0.4935566416355883 -0.4272108780820152 0.8674072480996509 -0.2551382597584773 0.4272108780820152 -0.8674072480996509 0.2551382597584773</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID559\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID557\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID560\">4.624208775236756 10.25279109822444 4.483294934126929 7.075747942042431 5.617378929991789 10.19781422708152 5.588996955066634 10.20763462219114 4.464061036837125 7.083520870205009 5.458721422938665 7.083520870205004 5.458721422938665 7.076423884248994 4.464061036837125 7.076423884248999 4.421346952999289 6.140815188881417 4.158114993700223 9.82002950589921 3.593575840268438 6.694277314763352 4.987579839267953 9.572531168459182 3.010244459204613 6.827506162532067 3.2495779390001 5.834534961886451 3.035846245815374 5.174927108690105 2.975650367709245 4.577486397015233 2.633905235931875 5.90973500068239 2.765668784803665 3.88175977042276 2.031777497158823 3.008396156954226 2.370486083393128 5.273218044780597 1.862425550676504 4.207418866483772 1.671278059369284 2.609907015700215 1.391990961728664 3.230435375675429 1.166188366418925 2.786350440244582 3.10435390468914 4.237025474007778 5.487502565849463 7.063677282062665 4.445669499516969 6.131139493031489 5.440259090957746 6.100053721609197 5.359399117465306 4.250949577599662 4.296992243910657 3.223309561720638 5.293941409287112 3.207493381871648 5.298962164022343 3.183399341581381 4.268933211202332 2.737661070040306 5.265793053665141 2.705818470045893 5.257114503965267 1.984286605816789 5.026294682284743 1.530141409702067 5.415796362687616 1.916808604102276 5.797934195308944 3.14048579679244 5.370891361201542 2.148913571710389 5.959649671694621 3.092759185175174 6.100274528703595 3.920387757089989 5.936906742911044 3.908127033707534 5.810472141374266 3.475336991400121 5.937866076838642 4.353177406087491 5.995585169795275 4.000895026903539 6.105118350408258 4.344603273888446 6.137981372295337 5.179637239087242 5.970701324597152 5.179040319610356 5.942823095099554 4.580127261937448 6.087918494432243 5.725176464399121 5.978424246796603 5.049948518067148 6.256494040726642 5.700328114675888 6.280019180205057 6.487347366001216 6.084814463887035 5.599199516900355 6.450770346717195 6.445144142728336 7.160276736564839 9.280524494546649 6.242625006838358 6.286231003209693 7.341713869329332 9.230007304171149 5.452393926001093 6.09104426690505 4.423201973780691 5.468860483384689 5.417699803672306 5.422201727503866 5.422292833750023 5.396900100893685 4.359547899167656 4.307272427779807 5.353987874597794 4.259895192131318 4.427849072468621 5.444266645087963 4.446466439651513 6.127255214550647 4.413290633479596 5.472425483488996 5.441051096828423 6.096071898312635 4.360018074793429 4.302764210820874 4.294045878582681 3.226357187596779 5.354449558780775 4.25527680367496 4.297427948320241 3.201644465293737 4.265866408531684 2.73773186676205 5.294372291942167 3.185641304488297 5.908260563923147 3.034311935547308 5.289309405852778 2.102497103108806 5.44874766786911 2.036131675611467 5.455634220373443 1.92359810915547 5.071713689974774 1.533491951675666 5.238326230219618 1.487875929105176 6.157026842955437 3.572135238052842 5.799683556714631 3.158588099668047 5.961466416325745 3.111003021527154 6.102338909262918 4.338121338358671 5.991977498616147 3.994577086405462 6.155552762072252 4.004986074229297 6.13932621225063 5.17824259034208 5.943923440480776 4.578781900045646 6.111197565143103 4.570475749670344 6.23799435261363 5.743683457483806 5.970467508847646 5.090572949560249 6.137747467825764 5.091185061900924 6.439857234582204 6.489474903673819 6.089209544512898 5.639527272863173 6.257702125498454 5.614333098042479 7.272565028641802 9.334630861843838 6.279722914979196 6.367584550843858 6.450219087665467 6.324748101400834</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID560\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID556\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID554\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID555\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID556\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID557\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 6 6 1 7 8 8 9 8 4 7 7 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 15 14 13 12 16 15 16 15 13 12 17 16 16 15 17 16 18 17 18 17 17 16 19 18 19 18 17 16 20 19 19 18 20 19 21 20 19 18 21 20 22 21 22 21 21 20 23 22 22 21 23 22 24 23 18 17 25 24 16 15 26 15 27 24 28 17 29 23 30 22 31 21 30 22 32 20 31 21 31 21 32 20 33 18 32 20 34 19 33 18 34 19 35 16 33 18 33 18 35 16 28 17 28 17 35 16 26 15 35 16 36 12 26 15 26 15 36 12 37 14 37 14 36 12 38 13 38 13 36 12 39 10 36 12 40 9 39 10 41 11 39 10 40 9 6 25 8 26 42 27 43 27 9 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 46 31 50 32 51 33 52 33 53 32 47 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 54 38 61 39 62 39 59 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 75 50 79 51 80 51 76 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 94 62 44 63 94 62 91 61 90 64 93 64 92 61 95 62 49 63 95 62 92 61 8 65 90 66 42 67 43 67 93 66 9 65 94 68 45 69 44 70 49 70 48 69 95 68 45 71 50 72 46 73 47 73 53 72 48 71 61 74 54 75 56 76 57 76 59 75 62 74 56 77 55 78 96 79 97 79 58 78 57 77 64 80 60 81 61 82 62 82 63 81 67 80 70 83 69 84 98 85 99 85 72 84 71 83 74 86 68 87 70 88 71 88 73 87 77 86 79 89 75 90 74 91 77 91 76 90 80 89 83 92 78 93 79 94 80 94 81 93 84 92 87 95 82 96 83 97 84 97 85 96 88 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID561\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID562\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID566\">-0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID566\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID563\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID567\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6631686390966892 -0.5040032000643614 0.5533426880727064 -0.6729749463518688 -0.637361758729642 0.3753327991153409 -0.665978872098829 -0.4946710441241405 0.5583660985617809 0.665978872098829 0.4946710441241405 -0.5583660985617809 0.6729749463518688 0.637361758729642 -0.3753327991153409 0.6631686390966892 0.5040032000643614 -0.5533426880727064 -0.6144927450388785 -0.4648298128754873 0.6374416925152632 -0.6113023930812731 -0.4665479271234981 0.6392514496736599 0.6113023930812731 0.4665479271234981 -0.6392514496736599 0.6144927450388785 0.4648298128754873 -0.6374416925152632 -0.6144856224526448 0.02115082100305797 -0.788644446230291 -0.6629772102952537 -0.05946182801509716 -0.7462744197935675 -0.6113024351803775 0.02089648161452121 -0.7911211473590341 0.6113024351803775 -0.02089648161452121 0.7911211473590341 0.6629772102952537 0.05946182801509716 0.7462744197935675 0.6144856224526448 -0.02115082100305797 0.788644446230291 -0.6657964087760006 -0.04905406275857674 -0.7445192012217402 -0.6729865574698508 -0.2722723663025976 -0.6877185848970954 0.6729865574698508 0.2722723663025976 0.6877185848970954 0.6657964087760006 0.04905406275857674 0.7445192012217402 -0.6701219898639051 -0.2700944235726152 -0.6913649695029515 -0.6289126479749136 -0.4316287370285187 -0.6466571847496542 0.6289126479749136 0.4316287370285187 0.6466571847496542 0.6701219898639051 0.2700944235726152 0.6913649695029515 -0.6585492725804401 -0.7117353213657445 -0.2444293106486486 -0.6193536905515095 -0.6949069317223108 -0.3653838560261096 -0.625235720980833 -0.6900477813844846 -0.3645742072828637 0.625235720980833 0.6900477813844846 0.3645742072828637 0.6193536905515095 0.6949069317223108 0.3653838560261096 0.6585492725804401 0.7117353213657445 0.2444293106486486 -0.6252889641002037 -0.7683994078132589 -0.1362940257191311 -0.6194174598878585 -0.7727236736317268 -0.1386367000298329 0.6194174598878585 0.7727236736317268 0.1386367000298329 0.6252889641002037 0.7683994078132589 0.1362940257191311 -0.6701143216290043 -0.6378674916840043 0.3795679899576043 -0.6289491677379813 -0.7378166084535101 0.2450501921889897 0.6289491677379813 0.7378166084535101 -0.2450501921889897 0.6701143216290043 0.6378674916840043 -0.3795679899576043 -0.6220235325541719 -0.4367230682693095 -0.6498920576451671 0.6220235325541719 0.4367230682693095 0.6498920576451671 -0.66322861238516 -0.7078364633944363 -0.2430953492004979 0.66322861238516 0.7078364633944363 0.2430953492004979 -0.6220739496306955 -0.7438120858740276 0.2444740928986038 0.6220739496306955 0.7438120858740276 -0.2444740928986038</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID567\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID565\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID568\">-7.899110943071706 3.579476892421579 -8.214175023921374 3.499343108218881 -8.021211049481213 2.979020818746164 -8.759556250140577 4.335206239657886 -9.064802010625483 4.197342553950783 -11.08282841508071 5.669081998703718 -11.2648379224095 5.469276533528866 -7.825205836228406 2.14481334522609 -7.633701656418383 2.984495669372309 -8.138397114707948 2.229419222292963 -8.32989678897887 1.389732320018504 -8.631364655027486 1.58133806218634 -9.003990750986796 1.048556618282334 -9.189994418622993 1.264051624233875 -10.27307042155825 0.8681266778283273 -10.40627893432769 1.124434441577344 -13.15255137381423 0.9279589001163017 -13.1400950603756 1.173564403059267 -9.479935146563065 4.69355806947108 -8.826029735810842 3.819095263127729 -9.293499526711592 4.817014898978647 -11.27238326129256 6.122746934237442 -11.4451814866472 6.004559867052301 -9.598333715416914 4.269996002902563 -13.01122109678588 3.368945949801105 -10.11869071105481 3.450892066657108 -12.99649077872279 3.548711561631994 -10.9099599054405 1.675370038626291 -9.691000544009365 2.135289745490901 -10.93441203049134 1.86609666716912 -9.948650378751601 0.3300733873617702 -9.807669465111511 0.1722143048301494 -9.373139815182823 0.7689770988787354 -8.44894854732777 1.148049050310268 -8.784749024975916 0.3368814101118945 -8.577158506658666 0.2520704532656712 -7.929857688637407 2.612187149318454 -8.163454103892477 2.60234989713821 -8.283231792898336 1.754479953103737 -8.347904821053195 4.082333036170931 -8.575064803892623 4.009635864995857 -8.393267123014773 3.395516742139427 -11.4967703490366 5.776114209361791 -9.712549747783164 3.988124977535597 -9.538143212337962 4.122019508445817 -9.336631246940229 4.75423905497862 -8.857708853722354 3.759685808930915 -8.635265013996062 3.840908182472945 -12.99262703403099 3.273043651450185 -10.11874372708642 3.156863270877688 -10.099789347737 3.347976657609713 -9.576302614795329 2.006517442139522 -9.664307303095521 2.186591215072741 -10.88782026707182 1.734216017891711 -9.120028776210594 0.3225903730954203 -9.313113161111691 0.4264642055287746 -9.715984028727405 -0.1838898453009026 -8.597687662062889 1.298337143620016 -8.748456669163948 0.4045346212719758 -8.362142656158987 1.254366929361164 -8.171197827192739 4.170460074055694 -8.229032362201163 3.484223882823618 -7.995450381775688 3.494271011514753 -8.079339290991934 2.696767466467675 -8.439711847109324 1.84086418270131 -8.20339914665017 1.799521614731336</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID568\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID564\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID562\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID563\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"64\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID564\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID565\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 0 0 7 7 8 8 7 7 0 0 9 9 7 7 9 9 10 10 9 9 0 0 2 2 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 18 17 19 15 20 16 20 16 19 15 21 14 19 15 22 13 21 14 21 14 22 13 23 12 22 13 24 11 23 12 23 12 24 11 25 10 24 11 26 9 25 10 27 2 28 0 26 9 25 10 26 9 29 7 26 9 28 0 29 7 30 8 29 7 28 0 31 6 32 5 33 4 32 5 34 3 33 4 33 4 34 3 35 1 34 3 28 0 35 1 27 2 35 1 28 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 36 23 41 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 47 29 50 29 54 28 55 27 53 30 56 31 57 32 58 32 59 31 54 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 60 38 65 38 68 37 69 36 70 39 37 40 71 41 72 41 40 40 73 39 42 42 36 43 38 44 39 44 41 43 45 42 38 45 37 46 70 47 73 47 40 46 39 45 46 48 52 49 47 50 50 50 55 49 51 48 56 51 53 52 52 53 55 53 54 52 59 51 74 54 57 55 56 56 59 56 58 55 75 54 60 57 62 58 76 59 77 59 63 58 65 57 70 60 71 61 78 62 79 62 72 61 73 60 66 63 60 64 76 65 77 65 65 64 69 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID569\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID570\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID574\">-0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.36399123050046 -0.05397436236353959</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID574\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID571\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID575\">-0.1164223673367788 -0.03939636620354328 0.9924181370338092 -0.1152576241861024 -0.03911071598773939 0.9925653791876389 -0.1088382594273443 -0.0230925907380549 0.9937912082212393 0.1088382594273443 0.0230925907380549 -0.9937912082212393 0.1152576241861024 0.03911071598773939 -0.9925653791876389 0.1164223673367788 0.03939636620354328 -0.9924181370338092 -0.1108273234566798 -0.02565555069468248 0.9935084786220906 0.1108273234566798 0.02565555069468248 -0.9935084786220906 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170010640450718 -0.01171259707753706 0.993062720114908 0.1170010640450718 0.01171259707753706 -0.993062720114908 -0.3063605024253654 0.292841831319583 0.9057521208272551 -0.3523453743815874 0.2761690730154793 0.8941942631563176 -0.49707423312389 0.2193373097837861 0.8395286482908776 0.49707423312389 -0.2193373097837861 -0.8395286482908776 0.3523453743815874 -0.2761690730154793 -0.8941942631563176 0.3063605024253654 -0.292841831319583 -0.9057521208272551 -0.5580248035340664 0.2172606952515568 0.8008783359159973 -0.514413700169338 0.2117991293092924 0.830975134346339 0.514413700169338 -0.2117991293092924 -0.830975134346339 0.5580248035340664 -0.2172606952515568 -0.8008783359159973 -0.5582941772828572 0.2203572971939314 0.7998439055124711 -0.545145087248696 0.2436486159674788 0.8021547143698301 0.545145087248696 -0.2436486159674788 -0.8021547143698301 0.5582941772828572 -0.2203572971939314 -0.7998439055124711 -0.131888714653345 0.05687624445573066 0.9896314767446013 -0.1321734375085311 0.04191912395636385 0.9903398252437945 -0.1366090766113033 0.0492215304934492 0.9894014357798807 0.1366090766113033 -0.0492215304934492 -0.9894014357798807 0.1321734375085311 -0.04191912395636385 -0.9903398252437945 0.131888714653345 -0.05687624445573066 -0.9896314767446013 -0.1289755249516954 0.04693082498186052 0.9905366281112257 -0.1269026228341467 0.03033545622924269 0.9914512012263529 0.1269026228341467 -0.03033545622924269 -0.9914512012263529 0.1289755249516954 -0.04693082498186052 -0.9905366281112257 -0.126060444224836 0.03090911601848133 0.9915409174354799 -0.1257051481658395 0.006141985696806098 0.9920486337555757 -0.124092777366998 0.0076289036136885 0.992241292446045 0.124092777366998 -0.0076289036136885 -0.992241292446045 0.126060444224836 -0.03090911601848133 -0.9915409174354799 0.1257051481658395 -0.006141985696806098 -0.9920486337555757 -0.121164189425585 -0.01572761942446628 0.9925078746227056 0.121164189425585 0.01572761942446628 -0.9925078746227056 -0.5535966397540385 0.007327883701034462 0.8327527019310723 -0.6328191074081528 0.02571473448560696 0.7738725539321597 -0.6307579737542808 0.02590113406437414 0.7755472324749624 0.6307579737542808 -0.02590113406437414 -0.7755472324749624 0.6328191074081528 -0.02571473448560696 -0.7738725539321597 0.5535966397540385 -0.007327883701034462 -0.8327527019310723 -0.50401691956796 -0.04154329558212729 0.8626940937443589 -0.5497328291718073 0.003855971050269636 0.8353316395408592 0.5497328291718073 -0.003855971050269636 -0.8353316395408592 0.50401691956796 0.04154329558212729 -0.8626940937443589 -0.4985583850107261 -0.04209033687011798 0.8658336677894066 -0.4610763548051719 -0.1461813753387184 0.8752368825316127 0.4610763548051719 0.1461813753387184 -0.8752368825316127 0.4985583850107261 0.04209033687011798 -0.8658336677894066 -0.4574584754158474 -0.1372954494769191 0.8785679841783102 -0.4568954263623595 -0.3661495419449712 0.8106670600824024 0.4568954263623595 0.3661495419449712 -0.8106670600824024 0.4574584754158474 0.1372954494769191 -0.8785679841783102 -0.4541605407154716 -0.3875438698506286 0.8022144053794031 -0.4286977599895537 -0.5231200390841958 0.736589203890804 0.4286977599895537 0.5231200390841958 -0.736589203890804 0.4541605407154716 0.3875438698506286 -0.8022144053794031 -0.4272529523562543 -0.5230063251151536 0.7375088464502692 0.4272529523562543 0.5230063251151536 -0.7375088464502692 -0.5412401970068317 0.2456900208751192 0.8041737764851509 0.5412401970068317 -0.2456900208751192 -0.8041737764851509</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID575\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID573\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID576\">-13.80735445879598 0.2458649066213103 -14.09510292357247 -0.5039355294692868 -9.982481491239387 -0.7801007211882352 -9.988301163081676 -0.7356641740735505 -14.09879580861296 -0.4405539083059194 -10.34526016737302 -1.466008715794491 -3.709288218786411 0.08183865699999136 -4.257382154934284 -0.4900517056751142 -3.661200976693986 -0.3512310434882693 -4.316527116072848 0.05807392568797635 -5.545750788810404 -0.7523932208971403 -5.643938497996714 0.02538830541298317 -6.082881246769018 -0.8890069299183254 -7.090320138584049 -0.006447222908070464 -6.450420964679379 -0.6826635284399174 -7.188240519124049 -0.5334174714432312 -7.941139361618053 0.004288303168351604 -8.050713318734761 -0.478223336087835 -9.166790892866176 0.02237652469014133 -9.196091163788671 -0.4549016494423948 -13.13740525360347 0.1403214759947992 -13.10922761281063 -0.5571905098427091 -9.444849024834038 -2.637915891572029 -9.56365659142571 -3.414782035487321 -8.25892496550161 -2.716294787433218 -0.8383862270638492 -6.024387405365547 -0.760980155205736 -6.138226240003666 -0.4501075387385644 -5.702039180101661 -1.931797432665722 -4.455539334599414 -3.11972454521867 -4.927496814587837 -3.036946117474684 -5.046749768110493 -1.942059996843278 -4.288237917025894 -1.840201626763001 -4.405347099302408 -1.39198761903897 -4.060249812509751 -2.072054116570976 -3.996942288506867 -2.315112412340436 -4.901759201329516 -1.743825325723805 -4.738097079607221 -3.210764357994353 -3.909876114437887 -4.29745234114743 -4.921683762233218 -3.006142084263772 -4.677607628037944 -4.63326543236224 -4.104402683678466 -5.817027785622174 -5.11390335315071 -4.404478357282174 -4.86718369880627 -6.045846395112246 -4.351127992404424 -7.574657362153948 -2.511963867763529 -8.526584459177135 -3.206102051772249 -7.68254055900837 -3.291082013018551 -8.486035206263603 -2.245302060931764 -9.850251925139794 -2.869509604712622 -8.639203837906873 -3.01900298997022 -8.979394940552526 -3.648259713923244 -12.88930466061255 -3.809766395600264 -12.8594219210069 -3.959341569141119 -8.247053604057138 -3.436684447776327 -9.391545189087976 -3.394260442828891 -9.376131742660215 -3.534536530901836 -8.688221694559164 -2.944754120167723 -8.7058236215713 -3.078954991981029 -7.8341142891939 -3.053992018602209 -8.706594682299912 -1.318227486458866 -8.793910115866449 -1.430479012716069 -8.040918009984427 -1.609661502807112 -8.080882217779717 0.5073250354274762 -8.204757539203133 0.4184993788204998 -7.846467309198026 0.203731956450229 -7.836967917690922 0.2422817623004304 -8.193916486682584 0.4584273007660447 -7.973663933481603 0.1708422317066539 -3.184266115108013 -4.914833768129049 -3.657392430113825 -5.248806784060694 -3.102673325396043 -5.034591316029415 -2.258730892786211 -4.273571014922622 -3.394592342438381 -4.827589234947812 -2.162892915154069 -4.393783806136414 -1.204920604791744 -4.132968849313659 -1.64240444746631 -4.486484675650029 -1.124263670823358 -4.256400851632963 -1.573574662755514 -4.13323415933467 -2.106744346024158 -4.33304282629061 -1.707878264920318 -5.051978381616294 -4.376892342551905 -4.270486949557792 -4.102647352655998 -5.023934951648005 -3.055364651970826 -3.986730453637497 -7.39868796456141 -2.814896261844453 -8.22936812025759 -2.7654805562517 -8.304432996410977 -3.546277958346702 -8.87990583956584 -3.966989383531663 -12.75388280914387 -4.321676615539797 -8.85003260959982 -4.105813515261139 -8.187762571847973 -3.592890692650113 -9.315494873795004 -3.699917069303213 -8.18877059368268 -3.727801701899872 -7.814820248641656 -3.142791349253691 -8.686391782372066 -3.170572816674207 -7.860413932309075 -3.269408970252542 -8.035881586078531 -1.62343299194266 -8.789396298041625 -1.445615269068238 -8.113196821760255 -1.740424407903711</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID576\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID572\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID570\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID571\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID572\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID573\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 16 14 15 13 17 15 17 15 15 13 18 16 17 15 18 16 19 17 19 17 18 16 20 18 19 17 20 18 21 19 21 19 20 18 22 20 21 19 22 20 23 21 24 21 25 20 26 19 25 20 27 18 26 19 26 19 27 18 28 17 27 18 29 16 28 17 28 17 29 16 30 15 29 16 31 13 30 15 30 15 31 13 32 14 32 14 31 13 33 12 31 13 34 11 33 12 33 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 2 22 6 23 40 24 41 24 7 23 3 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 44 29 49 30 50 30 45 29 51 28 48 31 52 32 53 33 54 33 55 32 51 31 56 34 57 35 58 36 59 36 60 35 61 34 62 37 63 38 57 39 60 39 64 38 65 37 66 40 67 41 63 42 67 41 66 40 68 43 69 43 70 40 71 41 64 42 71 41 70 40 68 44 72 45 67 46 71 46 73 45 69 44 40 47 6 48 72 49 73 49 7 48 41 47 74 50 75 51 76 52 77 52 78 51 79 50 80 53 74 54 81 55 82 55 79 54 83 53 80 56 84 57 85 58 86 58 87 57 83 56 85 59 88 60 89 61 90 61 91 60 86 59 89 62 92 63 93 64 94 64 95 63 90 62 93 65 92 66 96 67 97 67 95 66 94 65 44 68 43 69 49 70 50 70 46 69 45 68 48 71 49 72 52 73 55 73 50 72 51 71 53 74 52 75 98 76 99 76 55 75 54 74 56 77 62 78 57 79 60 79 65 78 61 77 66 80 63 81 62 82 65 82 64 81 70 80 68 83 40 84 72 85 73 85 41 84 69 83 74 86 76 87 81 88 82 88 77 87 79 86 80 89 81 90 84 91 87 91 82 90 83 89 85 92 84 93 88 94 91 94 87 93 86 92 89 95 88 96 92 97 95 97 91 96 90 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID577\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID578\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID582\">-0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID582\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID579\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID583\">-0.1088481568860517 0.5923386087106918 -0.7983026063925831 -0.1152614763458105 0.5789463800012497 -0.8071777258782806 -0.1164251204271865 0.5786308311400867 -0.8072369866325796 0.1164251204271865 -0.5786308311400867 0.8072369866325796 0.1152614763458105 -0.5789463800012497 0.8071777258782806 0.1088481568860517 -0.5923386087106918 0.7983026063925831 -0.1108311632331452 0.590147562033904 -0.7996513667104105 0.1108311632331452 -0.590147562033904 0.7996513667104105 -0.1169877446230861 0.6008761854127825 -0.7907348970494391 0.1169877446230861 -0.6008761854127825 0.7907348970494391 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211500310125118 0.5973661817498072 -0.7927649808659082 0.1211500310125118 -0.5973661817498072 0.7927649808659082 -0.1289733966194932 0.6455983790150909 -0.7527075102438648 -0.1321771951964776 0.641516467688795 -0.7556360306087073 -0.1268970330673193 0.6330602330777329 -0.763630725085285 0.1268970330673193 -0.6330602330777329 0.763630725085285 0.1321771951964776 -0.641516467688795 0.7556360306087073 0.1289733966194932 -0.6455983790150909 0.7527075102438648 -0.1318920760546484 0.6528924852832206 -0.7458792683368364 -0.1366192134527518 0.6467025975280807 -0.7504071833784541 0.1366192134527518 -0.6467025975280807 0.7504071833784541 0.1318920760546484 -0.6528924852832206 0.7458792683368364 -0.5584055108423882 0.6651998527735585 -0.4956737246726797 -0.5581385279990985 0.6633895104200506 -0.4983931590899352 -0.5451959861481726 0.685035348561869 -0.4832058649360955 0.5451959861481726 -0.685035348561869 0.4832058649360955 0.5581385279990985 -0.6633895104200506 0.4983931590899352 0.5584055108423882 -0.6651998527735585 0.4956737246726797 -0.5144129314214905 0.6776483658738426 -0.5255207210137955 -0.4970796441004287 0.6888461887919656 -0.5276388496005341 0.4970796441004287 -0.6888461887919656 0.5276388496005341 0.5144129314214905 -0.6776483658738426 0.5255207210137955 -0.3524751158962745 0.7672119047738485 -0.5358611628464889 -0.3065368645499978 0.7874550645024714 -0.5347426222597793 0.3065368645499978 -0.7874550645024714 0.5347426222597793 0.3524751158962745 -0.7672119047738485 0.5358611628464889 -0.4568675187823961 0.2091268429512146 -0.864602818546687 -0.4286959899151095 0.03977866415051463 -0.9025726597394278 -0.454140017835944 0.1871034341906217 -0.8710620810906903 0.454140017835944 -0.1871034341906217 0.8710620810906903 0.4286959899151095 -0.03977866415051463 0.9025726597394278 0.4568675187823961 -0.2091268429512146 0.864602818546687 -0.4574112545118764 0.4314471465815102 -0.7775784873262276 -0.4610330568129479 0.4223904034843316 -0.7804068602786966 0.4610330568129479 -0.4223904034843316 0.7804068602786966 0.4574112545118764 -0.4314471465815102 0.7775784873262276 -0.5040287169911085 0.4972319905766404 -0.7061978476287568 -0.4985686990456941 0.4987245144832661 -0.7090155929070352 0.4985686990456941 -0.4987245144832661 0.7090155929070352 0.5040287169911085 -0.4972319905766404 0.7061978476287568 -0.5497106232233426 0.5162657272219958 -0.6567251553057397 -0.5535723758972673 0.5174191484113569 -0.6525603799655021 0.5535723758972673 -0.5174191484113569 0.6525603799655021 0.5497106232233426 -0.5162657272219958 0.6567251553057397 -0.6328126226365115 0.4957425846370723 -0.5948003651724295 -0.6307511085987073 0.4969187375520394 -0.5960073886045282 0.6307511085987073 -0.4969187375520394 0.5960073886045282 0.6328126226365115 -0.4957425846370723 0.5948003651724295 -0.1240850473728673 0.6156224677283072 -0.7782106901389768 -0.1257030963027143 0.6143256787305055 -0.7789754116993772 0.1257030963027143 -0.6143256787305055 0.7789754116993772 0.1240850473728673 -0.6156224677283072 0.7782106901389768 -0.1260524294574446 0.6335694907637545 -0.7633482071775848 0.1260524294574446 -0.6335694907637545 0.7633482071775848 -0.5412748879965412 0.687898621088518 -0.4835462570725241 0.5412748879965412 -0.687898621088518 0.4835462570725241 -0.4272470439601668 0.04043528853901111 -0.9032302867309456 0.4272470439601668 -0.04043528853901111 0.9032302867309456</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID583\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID581\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID584\">2.646808655273745 7.626911531842514 2.986714499689779 10.86290628058702 1.998937623161384 10.76476841980763 2.753392543137154 7.603757279601984 3.73149548145001 7.745943970176235 3.137910672426441 10.83666032021479 2.986360958528956 6.654920534525154 3.799485555325677 7.718958628996464 2.820184296480023 7.581971421901169 -2.95700400690178 2.488800756097747 -2.971172988345912 1.772671627247351 -2.594993336245468 2.091126521667093 -3.76863480279438 3.318475734997433 -3.431737630961593 2.084911934129343 -4.453542058358801 2.75223422874128 -4.08577743896114 3.685864912838015 -4.53685698336594 3.700681803303125 -5.569883206520585 3.476406390468299 -5.235605254682731 3.939530432036485 -5.959241747873955 4.31281594366269 -6.249633121797126 3.879151418789206 -6.88113622380909 4.847979343375632 -7.230760792342645 4.457246732780551 -9.888780236097874 6.819957862866433 -10.45577002727441 6.283216928777442 2.835843568044133 6.696637019396241 3.81895079101609 6.819175129102827 3.625763036746231 7.771438100407487 3.373113844173326 3.843845654733742 4.353287423553801 3.987980441594453 4.147409147623762 5.020072757806616 3.441920088820501 3.382462419447546 4.425017633747888 3.516183683878827 4.329822052382522 3.988576604581577 2.230352107905733 4.329484501746936 2.056359603288195 4.291999654325147 2.288473777971453 3.838233246252393 2.009452657357155 5.389437917116684 1.846819489349988 5.343682783349156 2.335103140462541 4.369785709347631 3.459288365190417 5.567061823306501 3.317376742139041 5.502219060815397 3.432423115070612 5.067446679764254 -4.074900648768324 5.522217060790011 -3.625507904080766 5.488165434978679 -4.027123668961578 5.648598042583979 -0.4737934490769319 6.534086009615941 -0.9192721422585309 7.044197939014103 -1.028756012507091 6.944701516300213 -0.7779385115273918 7.439108605446435 -0.2529975353390784 6.897934716972006 -0.6357437305888969 7.514537810738175 -0.9697804840218809 7.326856963524517 -1.497398853673659 8.118176192147216 -1.653891145271553 8.049854498656151 -4.608304711025181 10.23293734499374 -2.240674467155615 7.779841628900575 -4.443807657891354 10.31154936901565 2.910250464513155 6.064224792957607 3.895902912319825 6.178304156875717 3.75622254964643 6.838662211659464 3.960090801378393 6.133215747935012 3.191931818886059 4.899905221596626 4.178668992404626 5.008016229071481 2.9733499521145 6.025115824772509 2.981756068882562 6.041430594450256 3.836421506115961 6.809938349919037 2.853014213669746 6.688899456137831 3.403561010679153 3.827721629442527 4.186013224173247 5.000603531797977 3.19913319123502 4.893302521149462 3.493767507501942 3.347032692092354 4.38943376548893 3.946035659923494 3.408140364595802 3.806695969447152 1.628068030784827 5.400671769098429 1.994848645956156 4.389698935824643 2.168577740868163 4.427932373500567 2.393635605078873 4.309488781848157 2.442902545374851 3.817638953721654 2.605226202472054 3.872011356930058 1.76553688369938 5.855830345560892 1.832450069184318 5.358546584306009 1.995011165963287 5.404459939837887 -3.582332382251634 5.498604840327278 -3.558007158969994 5.626281209275753 -3.982493890322007 5.661270718905809 -0.5199101826953312 6.531590478244566 -0.4026134045726859 6.625773062040189 -0.9689320567369109 7.039776299560601 0.3219388629227055 6.921678714189059 0.4484293081867797 7.007795171809001 -0.01524134949612947 7.554529442168967 -0.4343023409365476 7.391532441464667 -0.2892066006479271 7.463461634669913 -0.9145523620121765 8.201304268657363 -1.364385652116661 7.987424724987632 -1.205987261730729 8.052971772803227 -3.35620196045869 10.62525094866661</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID584\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID580\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID578\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID579\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID580\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID581\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 6 7 0 8 5 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 15 14 13 12 16 15 15 14 16 15 17 16 15 14 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 18 17 20 19 21 20 21 20 20 19 22 21 21 20 22 21 23 22 23 22 22 21 24 23 23 22 24 23 25 24 26 24 27 23 28 22 27 23 29 21 28 22 28 22 29 21 30 20 29 21 31 19 30 20 30 20 31 19 32 17 31 19 33 18 32 17 33 18 34 16 32 17 32 17 34 16 35 14 34 16 36 15 35 14 36 15 37 12 35 14 35 14 37 12 38 13 38 13 37 12 39 10 37 12 40 9 39 10 41 11 39 10 40 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 55 39 58 39 62 38 63 37 64 40 65 41 61 42 62 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 68 46 74 47 75 48 76 48 77 47 73 46 78 49 75 50 79 51 80 51 76 50 81 49 78 52 82 53 83 54 84 54 85 53 81 52 86 55 83 56 87 57 88 57 84 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 94 62 46 63 94 62 91 61 90 64 93 64 92 61 95 62 47 63 95 62 92 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 60 74 55 75 54 76 59 76 58 75 63 74 54 77 56 78 96 79 97 79 57 78 59 77 64 80 61 81 60 82 63 82 62 81 67 80 69 83 98 84 70 85 71 85 99 84 72 83 68 86 70 87 74 88 77 88 71 87 73 86 75 89 74 90 79 91 80 91 77 90 76 89 78 92 79 93 82 94 85 94 80 93 81 92 83 95 82 96 87 97 88 97 85 96 84 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID585\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID586\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID590\">-0.5298591187803394 0.3053530486319291 0.657905410261265 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID590\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID587\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID591\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID591\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID589\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID592\">-6.107060972638583 10.3510451214439 -6.227565367325356 8.494179944032663 -5.98671614912405 9.138399969870253 -6.540672166948984 11.6205228613906 -6.901978847139394 10.23735513419642 -6.853807126191143 9.252082277676843 -7.239162120697529 13.30684774139463 -7.335486789514798 11.50684232576269 -10.06778605077227 19.04794340165244 -7.985814033393162 13.15527448152569 -10.82793655825754 18.80162710738276 -4.083905012052296 5.898375335431962 -4.306234587730349 4.811018489749948 -3.385471377541194 5.140468275977997 -5.553161274050962 7.679445612741617 -5.041763826525845 4.277439417764588 -5.726108265179133 5.043303854792981 -7.390247861223824 6.714910200247886 -7.717772010128141 8.570258983447072 -8.150745295211088 7.481316037858777 -8.858556458189856 8.193395738456855 -9.003512412931656 7.511347968262671 -10.02743369272711 8.549250986811536 -10.42232541141175 7.994811895109255 -11.41290570274134 9.284142171201117 -11.80775011326652 8.729689492795748 -13.18353596539283 10.30339123710937 -13.60830466398959 9.797102239768163 -19.04886463418979 14.25191163615645 -19.59188570890547 13.76630396384998 -9.795942854452735 6.88315198192499 -9.524432317094897 7.125955818078223 -6.804152331994795 4.898551119884082 -6.591767982696415 5.151695618554686 -5.903875056633261 4.364844746397874 -5.706452851370669 4.642071085600558 -5.211162705705876 3.997405947554627 -5.013716846363556 4.274625493405768 -4.501756206465828 3.755673984131335 -4.429278229094928 4.096697869228428 -4.075372647605544 3.740658018929389 -3.858886005064071 4.285129491723536 -3.695123930611912 3.357455100123943 -3.426903563095571 4.626041138838422 -3.270336083474492 5.8102614306953 -3.113782683662678 4.247089972016331 -2.863054132589566 2.521651927396491 -2.776580637025481 3.839722806370808 -2.520881913262922 2.138719708882294 -2.153117293865174 2.405509244874974 -2.041952506026148 2.949187667715981 -1.692735688770597 2.570234137988999 -5.413968279128769 9.400813553691382 -5.033893025386136 9.52397170082622 -3.992907016696581 6.577637240762844 -3.667743394757399 5.753421162881343 -3.619581060348764 6.653423870697313 -3.450989423569697 5.118677567098211 -3.053530486319291 5.175522560721952 -2.993358074562025 4.569199984935127</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID592\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID588\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID586\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID587\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID588\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID589\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 4 4 5 5 4 4 3 3 6 6 4 4 6 6 7 7 7 7 6 6 8 8 7 7 8 8 9 9 9 9 8 8 10 10 11 11 12 12 13 13 12 12 11 11 14 14 12 12 14 14 15 15 15 15 14 14 16 16 16 16 14 14 1 1 16 16 1 1 17 17 17 17 1 1 5 5 5 5 1 1 3 3 17 17 5 5 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 25 25 24 24 26 26 25 25 26 26 27 27 27 27 26 26 28 28 27 27 28 28 29 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID588\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID589\" />\r\n\t\t\t\t\t<p>30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 33 33 35 35 34 34 34 34 35 35 36 36 35 35 37 37 36 36 36 36 37 37 38 38 37 37 39 39 38 38 38 38 39 39 40 40 39 39 41 41 40 40 40 40 41 41 42 42 41 41 43 43 42 42 44 44 45 45 43 43 43 43 45 45 42 42 42 42 45 45 46 46 45 45 47 47 46 46 46 46 47 47 48 48 48 48 47 47 49 49 47 47 50 50 49 49 51 51 49 49 50 50 52 52 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 55 55 56 56 57 57 56 56 44 44 57 57 43 43 57 57 44 44 44 44 58 58 45 45 59 59 45 45 58 58</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID593\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID594\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID598\">-0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID598\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID595\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID599\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6658812119562829 0.05557583132515614 -0.7439849047770725 -0.6630700206644244 0.06601587505827476 -0.7456406989538392 -0.672990936518585 0.2791484701318099 -0.6849520647365829 0.672990936518585 -0.2791484701318099 0.6849520647365829 0.6630700206644244 -0.06601587505827476 0.7456406989538392 0.6658812119562829 -0.05557583132515614 0.7439849047770725 -0.6145075341081261 -0.01519103171901108 -0.7887646816888181 -0.6113304972219287 -0.01491894967988539 -0.791234761690131 0.6113304972219287 0.01491894967988539 0.791234761690131 0.6145075341081261 0.01519103171901108 0.7887646816888181 -0.6145579693011508 0.4591343117628982 0.6414937148019891 -0.6630483910174163 0.498855229375798 0.5581310699948852 -0.6113858088080906 0.4608262320043037 0.643309083322156 0.6113858088080906 -0.4608262320043037 -0.643309083322156 0.6630483910174163 -0.498855229375798 -0.5581310699948852 0.6145579693011508 -0.4591343117628982 -0.6414937148019891 -0.6730103961097779 0.633535161008159 0.3816938648898171 -0.6658642050055886 0.4894684515523368 0.563067931449868 0.6658642050055886 -0.4894684515523368 -0.563067931449868 0.6730103961097779 -0.633535161008159 -0.3816938648898171 -0.6701444240931888 0.6340128793903517 0.3859198357482596 -0.6288817366873886 0.7353849506127249 0.2524217416812069 0.6288817366873886 -0.7353849506127249 -0.2524217416812069 0.6701444240931888 -0.6340128793903517 -0.3859198357482596 -0.6252123795686114 0.7697839976649213 -0.1286160074530658 -0.658578304891523 0.7141210938325098 -0.2372881785291209 -0.6193201491348418 0.7741457966357958 -0.1309230248150662 0.6193201491348418 -0.7741457966357958 0.1309230248150662 0.658578304891523 -0.7141210938325098 0.2372881785291209 0.6252123795686114 -0.7697839976649213 0.1286160074530658 -0.6252712636549731 0.6936274305614512 -0.3576546300833142 -0.6193894345161001 0.698494696426414 -0.3584158024892286 0.6193894345161001 -0.698494696426414 0.3584158024892286 0.6252712636549731 -0.6936274305614512 0.3576546300833142 -0.6289250440898284 0.438067046954839 -0.6423009818526467 -0.6701291299022093 0.2769832769238545 -0.6886270496872973 0.6701291299022093 -0.2769832769238545 0.6886270496872973 0.6289250440898284 -0.438067046954839 0.6423009818526467 -0.6219814506780375 0.7414065190456863 0.2519036492967151 0.6219814506780375 -0.7414065190456863 -0.2519036492967151 -0.6632653245983359 0.7102034419860702 -0.2359876695435651 0.6632653245983359 -0.7102034419860702 0.2359876695435651 -0.6220409688791525 0.4431898766144704 -0.6454825840426184 0.6220409688791525 -0.4431898766144704 0.6454825840426184</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID599\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID597\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID600\">11.17320201782601 5.536950720255618 9.132267951340403 4.075553710198706 11.35265838639835 5.335723967790457 8.828758325209945 4.21581308609941 8.272822123002557 3.384285294404218 7.958813840120982 3.46689333538805 8.073268797801365 2.865498302382628 13.17319575342934 1.025474877244218 10.29819330692128 0.7370029567927344 13.18256427081902 0.7797863034262775 10.43461727267754 0.9922419491244857 9.220172518723757 1.141427050559116 9.031436992618183 0.9274041343529934 8.665601494827795 1.463091360543377 8.36173593111768 1.273861371559148 8.18085731407338 2.115010321233234 7.866647783783838 2.032874418182379 7.685815723975792 2.874023367856466 10.95406190306286 1.514596294059031 10.9820680884364 1.705023222924476 9.743740101464573 1.988437824085204 13.08422968449263 3.199757330669627 13.07267779495826 3.379665889560748 10.18916535332233 3.309702731294755 11.36545721424794 6.006842844578951 9.664606296230362 4.161713060886227 11.53679451320826 5.887322116789082 8.87938669524374 3.718691191733911 9.54294143455537 4.58860161283133 9.357925723043625 4.713345186989823 8.394680517829666 3.989110993373233 8.433829724268323 3.302053148008258 8.621195066914398 3.915152656841173 7.959361423291862 2.521603384444761 8.30581624406488 1.662156996532964 8.192850961276159 2.510608965499221 8.468953380353767 1.050766553539041 8.589066946989393 0.1540948178637264 8.797428992253618 0.2377375302496965 9.395660232283182 0.6451734807435667 9.821862682408826 0.04469772784885676 9.9650088203073 0.2013483060752452 13.05993379571968 3.110797586965738 10.16431663537896 3.21133071886602 10.18010204372508 3.02003618013284 9.626254877814432 1.862045396082188 10.93264464736882 1.574955679289271 9.717512492742973 2.041116121749284 9.604226472762715 4.0114184348044 9.776872146541788 3.876144995495381 11.58740893055048 5.655514610796291 8.689895478581324 3.740148740343702 8.911424637990344 3.657371138622741 9.401641036197944 4.648499728985229 8.215118084369612 4.081528994233212 8.033717664007693 3.406265074033831 8.267186516090369 3.395002083835391 8.111839397566158 2.603469864687234 8.228261606106596 1.705594495213734 8.464930288377673 1.745696425622322 9.135802437258771 0.2031367210126086 9.724851614784443 -0.308343230978199 9.330301350185701 0.305373195999198 8.620257114820655 1.19753825098844 8.384287130441004 1.154964469876548 8.762482845796232 0.3028705175705735</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID600\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID596\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID594\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID595\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"64\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID596\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID597\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 7 7 8 8 9 9 8 8 7 7 10 10 8 8 10 10 11 11 8 8 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 6 6 16 16 6 6 5 5 16 16 5 5 17 17 18 17 19 5 20 16 19 5 21 6 20 16 21 6 22 15 20 16 20 16 22 15 23 14 22 15 24 13 23 14 23 14 24 13 25 12 24 13 26 11 25 12 25 12 26 11 27 8 26 11 28 10 27 8 28 10 29 7 27 8 30 9 27 8 29 7 21 6 19 5 31 4 19 5 32 3 31 4 31 4 32 3 33 1 32 3 34 0 33 1 35 2 33 1 34 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 37 23 40 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 47 28 53 29 54 29 50 28 55 27 56 30 57 31 52 32 55 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 70 39 71 40 38 41 39 41 72 40 73 39 42 42 37 43 36 44 41 44 40 43 45 42 71 45 36 46 38 47 39 47 41 46 72 45 53 48 47 49 46 50 51 50 50 49 54 48 56 51 52 52 53 53 54 53 55 52 59 51 56 54 74 55 57 56 58 56 75 55 59 54 60 57 76 58 61 59 64 59 77 58 65 57 78 60 71 61 70 62 73 62 72 61 79 60 61 63 76 64 66 65 69 65 77 64 64 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID601\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID602\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID606\">-0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID606\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID603\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID607\">-0.1088540514781176 -0.584331089942785 -0.8041815546274835 -0.1164339797874606 -0.5705294778991202 -0.8129816991784074 -0.1152698562505582 -0.5708457404589754 -0.8129255813663509 0.1152698562505582 0.5708457404589754 0.8129255813663509 0.1164339797874606 0.5705294778991202 0.8129816991784074 0.1088540514781176 0.584331089942785 0.8041815546274835 -0.1108435503727157 -0.5821217352458851 -0.8055110133915557 0.1108435503727157 0.5821217352458851 0.8055110133915557 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170176206764311 -0.5929274844702175 -0.7967081489548396 0.1170176206764311 0.5929274844702175 0.7967081489548396 -0.5144163086132454 -0.6723630224863056 -0.5322629307267247 -0.5581062161838647 -0.6583968034238775 -0.505006040259074 -0.4970751144160029 -0.683545041602595 -0.5344927564792851 0.4970751144160029 0.683545041602595 0.5344927564792851 0.5581062161838647 0.6583968034238775 0.505006040259074 0.5144163086132454 0.6723630224863056 0.5322629307267247 -0.5583798869887992 -0.6602297154995238 -0.5023033192980051 -0.5452373970371485 -0.6801451362856548 -0.4900191572368603 0.5452373970371485 0.6801451362856548 0.4900191572368603 0.5583798869887992 0.6602297154995238 0.5023033192980051 -0.1318903393557705 -0.6453922059420187 -0.7523787868447079 -0.1321750213771143 -0.6339255398774245 -0.7620158617870596 -0.1366232935947715 -0.6391496733784974 -0.7568498996944356 0.1366232935947715 0.6391496733784974 0.7568498996944356 0.1321750213771143 0.6339255398774245 0.7620158617870596 0.1318903393557705 0.6453922059420187 0.7523787868447079 -0.1289732790216521 -0.6380369665418767 -0.7591276062852959 -0.1269071717687836 -0.6253899701404045 -0.7699233435878096 0.1269071717687836 0.6253899701404045 0.7699233435878096 0.1289732790216521 0.6380369665418767 0.7591276062852959 -0.1241010714283334 -0.6078068716321187 -0.7843275660507647 -0.1257095939325673 -0.6065122404802681 -0.7850732450803013 -0.1260674500275698 -0.6258988106438125 -0.7696477615625263 0.1260674500275698 0.6258988106438125 0.7696477615625263 0.1241010714283334 0.6078068716321187 0.7843275660507647 0.1257095939325673 0.6065122404802681 0.7850732450803013 -0.1211769958232875 -0.5894025390301889 -0.7986994319942953 0.1211769958232875 0.5894025390301889 0.7986994319942953 -0.5535679708898417 -0.5108673680079583 -0.6577058870874768 -0.6327553060025942 -0.489798292648837 -0.5997652501136153 -0.630695063396688 -0.4909614247884672 -0.6009830416714983 0.630695063396688 0.4909614247884672 0.6009830416714983 0.6327553060025942 0.489798292648837 0.5997652501136153 0.5535679708898417 0.5108673680079583 0.6577058870874768 -0.5040208671260086 -0.4901460352175064 -0.7111398102076026 -0.5497067787296889 -0.5096714306261669 -0.6618591165966555 0.5497067787296889 0.5096714306261669 0.6618591165966555 0.5040208671260086 0.4901460352175064 0.7111398102076026 -0.4985571397014289 -0.4916144428633812 -0.7139720008661804 -0.4609719154458496 -0.4145896076660237 -0.7846147783374444 0.4609719154458496 0.4145896076660237 0.7846147783374444 0.4985571397014289 0.4916144428633812 0.7139720008661804 -0.4568505475577015 -0.2004861491589987 -0.8666561493416083 -0.4573491576022501 -0.4236797699590816 -0.7818741590357953 0.4573491576022501 0.4236797699590816 0.7818741590357953 0.4568505475577015 0.2004861491589987 0.8666561493416083 -0.4286900949630499 -0.03074629865061099 -0.9029282737847225 -0.4541268962482883 -0.1783764702348078 -0.8728978158813705 0.4541268962482883 0.1783764702348078 0.8728978158813705 0.4286900949630499 0.03074629865061099 0.9029282737847225 -0.3523735052985816 -0.7618774628075067 -0.5434847232715808 -0.3063976859348787 -0.7821413631807209 -0.5425636792631395 0.3063976859348787 0.7821413631807209 0.5425636792631395 0.3523735052985816 0.7618774628075067 0.5434847232715808 -0.5413340802838006 -0.6829922424325828 -0.4903865927002937 0.5413340802838006 0.6829922424325828 0.4903865927002937 -0.4272481797681519 -0.03139308917336886 -0.9035892135461523 0.4272481797681519 0.03139308917336886 0.9035892135461523</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID607\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID605\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID608\">-2.610060487118674 7.619753708788435 -1.948631865258435 10.75586386611057 -2.935981608932602 10.85663512075862 -2.719262994468259 7.596384747860257 -3.090772258404805 10.83022540427713 -3.69679133168683 7.740997122795123 9.993834386692768 6.697166556715506 7.305900416866997 4.355477009968277 10.55396224199972 6.155992813056084 6.961259725370663 4.748945569060884 6.317450494552758 3.785131728647392 6.032602059962001 4.221058734951406 5.632646490923408 3.387754924869541 5.304258404919437 3.853486727345086 4.50713919916442 2.672402010274958 4.602543987106065 3.620146029906336 4.151239165752258 3.608874678226097 3.476915045794671 2.013146968314747 3.829487363207134 3.243997859007959 3.007344018484941 2.420750867493745 3.012389283490861 1.704548783954941 2.640320935711225 2.025948153228608 -2.788788460198426 7.572962376067476 -3.767581555079931 7.71218000849874 -2.958384683729662 6.646322239064626 -1.949330144772716 5.368941012682137 -2.284182369127702 4.351127936247142 -1.787116026856405 5.322273542286981 -2.178006254645743 4.308764307005029 -2.240688841859411 3.817870637244726 -2.004373405150739 4.27027736655339 -3.424324889167503 3.37281876876143 -4.309776294106773 3.981152767028634 -4.406878702077174 3.508993181485741 -3.353896149640327 3.834780310909004 -4.123486029284101 5.012918456920043 -4.33348685434635 3.981344992154811 -4.15522701980411 5.000954905113102 -2.945912001956207 6.015132060051506 -3.932224531327764 6.125626458280218 -3.168915308745923 4.890452789232343 -2.880014071898048 6.056684529967771 -3.722631041023821 6.8333627787756 -3.865167419372976 6.173403206929011 -2.803637068433257 6.688943611917154 -3.589002991997068 7.76577639285253 -3.786233442174673 6.814013616893653 2.352155135876836 7.732019785561647 4.750224669518837 10.16676035099951 4.58673566867724 10.24664292795459 1.077703269353097 7.292616194349058 1.771051416478688 8.010154330456691 1.615439914209591 8.079710179245698 0.8917779093368455 7.409005396259467 0.7506151581350007 7.485622764389828 0.3595836739408692 6.872236538923343 0.6025386688846102 6.509881421450357 1.164565261957301 6.91447012137925 1.05683395826347 7.015137815428471 3.803209898733897 5.402796817356368 4.253535901802713 5.428742796817378 4.209437347221686 5.555948874626798 -3.4228971200836 5.548400610587399 -3.398703655180526 5.048706996552484 -3.281343791480293 5.483076573831793 -1.700902869676162 5.834124829345437 -1.934455908459623 5.38406533167012 -1.772317777748014 5.337234730377968 -1.563862617851588 5.377877017135567 -2.113718735031875 4.408380312461595 -1.940368773200062 4.369112149830636 -2.342549230029242 4.289545610607819 -2.558103344791782 3.853272065013154 -2.396266153697702 3.797994575249178 -3.477653760136398 3.336397819512019 -3.390320269200981 3.795864862738408 -4.371090681150245 3.937463004736838 -3.384938017023071 3.81842371163158 -3.176364284525369 4.883517101095137 -4.162826579523441 4.993184227830971 -2.821558507236654 6.680662886123442 -3.804473587643869 6.804173406389755 -2.952987580260624 6.033504265500596 1.47307452581419 7.94934296837219 3.496248995700073 10.57238716409893 1.315460912566759 8.016050776524924 0.538204523295595 7.363180085962341 1.02837778858371 8.169264935007575 0.3940072705090324 7.436216706816778 -0.2216517634023708 6.902275859416785 0.1235323511647279 7.532459053158027 -0.3470360049582089 6.989381151517559 0.6495041291754328 6.506652750037433 1.107371202240202 7.009909940338497 0.5338562939897318 6.602089407485308 3.762660802913122 5.413427654679166 4.167566621199896 5.568730472320866 3.74214220390277 5.54151624829845</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID608\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID604\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID602\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID603\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID604\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID605\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 2 4 6 5 7 5 3 4 5 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 16 14 15 13 17 15 16 14 17 15 18 16 16 14 18 16 19 17 19 17 18 16 20 18 19 17 20 18 21 19 19 17 21 19 22 20 22 20 21 19 23 21 24 21 25 19 26 20 26 20 25 19 27 17 25 19 28 18 27 17 28 18 29 16 27 17 27 17 29 16 30 14 29 16 31 15 30 14 31 15 32 13 30 14 30 14 32 13 33 12 32 13 34 11 33 12 33 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 0 22 6 23 40 24 41 24 7 23 5 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 43 30 46 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 59 37 62 38 63 39 62 38 59 37 64 40 65 40 60 37 66 38 67 39 66 38 60 37 62 41 68 42 63 43 67 43 69 42 66 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 70 51 77 52 78 52 75 51 79 50 76 53 80 54 81 55 82 55 83 54 79 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 92 62 44 63 93 64 94 64 45 63 95 62 92 65 42 66 44 67 45 67 47 66 95 65 42 68 48 69 43 70 46 70 51 69 47 68 48 71 96 72 49 73 50 73 97 72 51 71 52 74 58 75 53 76 56 76 61 75 57 74 58 77 64 78 59 79 60 79 65 78 61 77 40 80 68 81 62 82 66 82 69 81 41 80 70 83 72 84 77 85 78 85 73 84 75 83 76 86 77 87 80 88 83 88 78 87 79 86 81 89 80 90 85 91 86 91 83 90 82 89 84 92 85 93 89 94 90 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID609\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID610\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID614\">-0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5473779309113525 1.195018672079414</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID614\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID611\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID615\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID615\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID613\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID616\">10.18738032658465 19.04794340165245 8.105455617364823 13.15527448152571 10.94755861822705 18.80162710738278 7.358775169589009 13.30684774139464 7.455165168721541 11.50684232576267 7.021610669109959 10.23735513419643 6.660275453839438 11.62052286139061 6.973438948161821 9.252082277676829 6.226729965305786 10.35104512144388 6.34719681383455 8.494179944032666 6.106319436014469 9.138399969870267 19.2668110713613 14.01201653592069 13.76983724756887 9.60023445609569 19.80366406321081 13.52217335660197 13.3515820564935 10.10985633078179 11.95582315006028 8.547050531634294 11.56802765527242 9.104569669858437 10.56113355821253 7.823090735984151 10.17331027926723 8.380616962922931 9.136256855185536 7.350812800878698 8.999992836063413 8.033974680727708 8.283114275883213 7.327495655441081 7.849390818560094 8.493335205535086 7.512957717242513 6.567116406747775 5.827651849983826 4.90867469051484 5.672811493639108 7.679445612741619 5.133601729440363 4.148245525455751 4.203545845101182 5.898375335431982 4.414968261826749 4.748609150477415 3.505102824050252 5.140468275978011 1.752551412025126 2.570234137989006 2.101772922550591 2.949187667715991 2.207484130913374 2.374304575238707 2.566800864720181 2.074122762727876 2.836405746819554 3.839722806370809 2.913825924991913 2.45433734525742 3.173598406917275 4.247089972016333 3.330137726919719 5.810261430695305 3.48671947408091 4.626041138838414 3.756478858621256 3.283558203373887 3.924695409280047 4.246667602767543 4.141557137941606 3.66374782772054 4.499996418031707 4.016987340363854 4.568128427592768 3.675406400439349 5.086655139633613 4.190308481461465 5.280566779106266 3.911545367992075 5.784013827636212 4.552284834929218 5.977911575030141 4.273525265817147 6.675791028246748 5.054928165390897 6.884918623784433 4.800117228047845 9.633405535680648 7.006008267960344 9.901832031605407 6.761086678300985 3.053159718007235 4.569199984935134 3.113364982652893 5.175522560721941 3.51080533455498 5.118677567098216 3.679387584794505 6.65342387069732 3.72758258436077 5.753421162881336 4.052727808682412 6.577637240762856 5.093690163292324 9.523971700826227 5.473779309113525 9.400813553691391</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID616\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID612\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID610\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID611\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID612\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID613\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 5 5 6 6 7 7 8 8 9 9 6 6 9 9 8 8 10 10 11 11 12 12 13 13 12 12 11 11 14 14 12 12 14 14 15 15 15 15 14 14 16 16 15 15 16 16 17 17 17 17 16 16 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 7 7 23 23 7 7 24 24 24 24 7 7 9 9 9 9 7 7 6 6 24 24 9 9 25 25 24 24 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID612\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID613\" />\r\n\t\t\t\t\t<p>30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 33 33 34 34 35 35 34 34 36 36 35 35 37 37 38 38 36 36 36 36 38 38 35 35 35 35 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 47 47 46 46 48 48 47 47 47 47 48 48 49 49 48 48 50 50 49 49 51 51 49 49 50 50 52 52 53 53 36 36 37 37 36 36 53 53 38 38 37 37 54 54 37 37 55 55 54 54 54 54 55 55 56 56 56 56 55 55 57 57 55 55 58 58 57 57 59 59 57 57 58 58</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID617\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID618\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID622\">-0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID622\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID619\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID623\">-0.1088387569614722 0.01315362923910896 0.9939723874539582 -0.1152536654891546 0.0291861515433436 0.9929072268592888 -0.1164175568789908 0.02947304770899976 0.9927629585702068 0.1164175568789908 -0.02947304770899976 -0.9927629585702068 0.1152536654891546 -0.0291861515433436 -0.9929072268592888 0.1088387569614722 -0.01315362923910896 -0.9939723874539582 -0.1108275343076859 0.0157188274115992 0.9937153395737044 0.1108275343076859 -0.0157188274115992 -0.9937153395737044 -0.1169992818606147 0.001779387199382528 0.9931304052466096 0.1169992818606147 -0.001779387199382528 -0.9931304052466096 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211613462438688 0.005798762209368286 0.9926158887168858 0.1211613462438688 -0.005798762209368286 -0.9926158887168858 -0.1289723073749611 -0.05683794718569368 0.990017975437868 -0.1321721693293524 -0.05182041772276032 0.9898712855527286 -0.1269009350449967 -0.04024779597736024 0.9910985155894797 0.1269009350449967 0.04024779597736024 -0.9910985155894797 0.1321721693293524 0.05182041772276032 -0.9898712855527286 0.1289723073749611 0.05683794718569368 -0.990017975437868 -0.1318875386354734 -0.06677197077271543 0.9890132360447983 -0.1366133769342704 -0.05910629755485246 0.9888595607223364 0.1366133769342704 0.05910629755485246 -0.9888595607223364 0.1318875386354734 0.06677197077271543 -0.9890132360447983 -0.558028898390844 -0.2252503846026686 0.7986651443484001 -0.5451251899441658 -0.2516490044651679 0.7996945078215975 -0.5582945311177081 -0.2283387439749839 0.7976018019814056 0.5582945311177081 0.2283387439749839 -0.7976018019814056 0.5451251899441658 0.2516490044651679 -0.7996945078215975 0.558028898390844 0.2252503846026686 -0.7986651443484001 -0.5144576180718076 -0.2200898906441139 0.8287905641621072 -0.4971178181320478 -0.2277136551304314 0.8372695898948984 0.4971178181320478 0.2277136551304314 -0.8372695898948984 0.5144576180718076 0.2200898906441139 -0.8287905641621072 -0.3523674383661242 -0.2850989537794993 0.8913785811500805 -0.306373651989246 -0.301890195052002 0.9027721171470885 0.306373651989246 0.301890195052002 -0.9027721171470885 0.3523674383661242 0.2850989537794993 -0.8913785811500805 -0.4569170898122744 0.3580322882283826 0.8142724689091671 -0.4287165572106656 0.5157236689642438 0.7417757146493089 -0.4541867966104732 0.3794965782313983 0.8060376547627145 0.4541867966104732 -0.3794965782313983 -0.8060376547627145 0.4287165572106656 -0.5157236689642438 -0.7417757146493089 0.4569170898122744 -0.3580322882283826 -0.8142724689091671 -0.4610519398068395 0.1374069943415377 0.8766700785964896 -0.4574434326879626 0.128523092512843 0.8799018812240311 0.4574434326879626 -0.128523092512843 -0.8799018812240311 0.4610519398068395 -0.1374069943415377 -0.8766700785964896 -0.4985584274964397 0.03343317632154487 0.8662111273201989 -0.5040157149677988 0.03292087746401979 0.8630668426561742 0.5040157149677988 -0.03292087746401979 -0.8630668426561742 0.4985584274964397 -0.03343317632154487 -0.8662111273201989 -0.5535759670464742 -0.01565705409007048 0.8326514909407067 -0.5497125255609511 -0.01221039753376431 0.8352646559225813 0.5497125255609511 0.01221039753376431 -0.8352646559225813 0.5535759670464742 0.01565705409007048 -0.8326514909407067 -0.6307597955618702 -0.0336555489308815 0.7752479502255447 -0.6328213274262273 -0.03345237151289191 0.7735748873862641 0.6328213274262273 0.03345237151289191 -0.7735748873862641 0.6307597955618702 0.0336555489308815 -0.7752479502255447 -0.1240902978453498 -0.0175498111580307 0.9921157201198707 -0.1257023489127471 -0.01606129966648226 0.9919379789739081 0.1257023489127471 0.01606129966648226 -0.9919379789739081 0.1240902978453498 0.0175498111580307 -0.9921157201198707 -0.1260595472930294 -0.0408216577978071 0.9911824165061218 0.1260595472930294 0.0408216577978071 -0.9911824165061218 -0.5412148349373932 -0.2537132226334566 0.8016957671739552 0.5412148349373932 0.2537132226334566 -0.8016957671739552 -0.4272661229037248 0.5156003108204946 0.7426977714391153 0.4272661229037248 -0.5156003108204946 -0.7426977714391153</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID623\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID621\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID624\">9.891501356083198 -1.398559899101458 14.0190207913705 -1.378322775502937 13.80728166277617 -0.6130167098138849 9.892292853868527 -1.396358040448894 10.16976395576887 -2.147763991652776 14.01980057287232 -1.374692521388983 9.112972347923334 -3.318913266075672 7.922917617543023 -3.31064759363729 9.13990034236501 -4.10109427719969 9.185461095484014 -0.09440081931622046 13.12035929778858 -0.7049523672064595 13.15740834483686 -0.007683132925823285 9.208683394319904 -0.571882978597314 8.06307501585481 -0.5861914753075564 7.959654123141069 -0.1028398972043406 7.199978199095067 -0.6346024122160491 7.108731272710429 -0.10688175677692 6.460281336741163 -0.7780344309739375 5.66281971002354 -0.06367290266154251 6.090137041837841 -0.981480541855419 5.554770877852206 -0.8406449125250893 4.335914825773608 -0.02054527340170165 4.269814814293227 -0.5681835556315917 3.728999951832195 0.007992341182690677 3.675384037947553 -0.4246823111445474 8.240503349031185 -2.792558387712522 8.312030923974277 -3.573561015301703 9.534613588802479 -3.503157893577027 2.866400881466295 -4.09043929177291 2.592754049921546 -4.844748037579367 3.858647062123191 -5.16058960318777 1.764387869163704 -4.104380020650059 1.377297237169688 -4.827743230540988 1.934313392358909 -5.019461920039144 1.877196734483731 -4.342754535484429 1.33150791732068 -4.108270374199182 1.773090404879941 -4.458637017925284 1.855718646494166 -4.509721762035793 2.948315257028529 -5.11514745525924 3.033601055682589 -4.996987230377251 0.3417500518942679 -5.735767157626841 0.643265683683088 -6.176002351858831 0.7230910765086479 -6.063201128471859 8.098827313590068 0.4251827631843959 7.860758236876446 0.1233516168670555 8.221633022424319 0.3354410191769293 8.692700701586954 -1.456731561340594 8.020550205059355 -1.738846683847045 8.777424033680292 -1.570199514101096 7.775142777459928 -3.195329571672053 8.646044617348052 -3.233748210890571 8.631777309452774 -3.099303113019177 9.330348977001862 -3.552345717479117 8.185074552308338 -3.578387594753834 9.311692834307262 -3.69237575750201 8.92396389964752 -3.788083846687805 12.79728635458154 -4.147255281525537 12.83018579927031 -3.998070213710835 7.317289624280975 -2.980140061228889 7.346533038834244 -3.763528691237196 8.196485417401426 -3.731313273001689 5.336390733417921 -5.449619584766261 4.251179605034944 -4.373769397749731 3.951018182975293 -5.121079041999575 5.636561508752498 -4.702312727263123 7.093366192879808 -3.295908493898871 7.918442027052564 -4.084159963801527 7.9264042430006 -3.301158048278965 2.698973295573131 -4.160805864112061 3.648222878151388 -5.254826617090851 3.990976447294812 -4.518942246687931 1.264659737377111 -4.215067749817517 1.327014570610913 -5.138559858782626 1.781220271575089 -4.440238296359105 2.190316269496892 -4.331888373982719 2.092057563700482 -4.450888635141769 3.314877001865865 -4.899940379907601 1.141746521037105 -4.178758122598253 1.05871830345268 -4.301210512261891 1.572352064691836 -4.537480266369492 3.097661168592327 -4.985281801077196 3.013530619634568 -5.103953439875546 3.563681401541414 -5.3253843708294 7.851589781199859 0.1624999726829313 7.987420609990448 0.09004473225368445 8.21113041698956 0.3759870027255349 8.015398979144715 -1.752248997002818 8.090091306673514 -1.870291468803673 8.772747345371998 -1.584925376850224 7.744361237538513 -3.295161361764044 7.786369406217942 -3.422538761892946 8.614935622004783 -3.33792690271419 8.114139814095902 -3.742617406280015 8.111754056698198 -3.877517115416049 9.238931812302894 -3.867268169121407 8.806680473794703 -4.11759385727599 8.773640424439241 -4.255971035984555 12.67194791268335 -4.5269585570712</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID624\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID620\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID618\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID619\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID620\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID621\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 0 6 8 7 6 8 7 8 9 7 5 6 10 9 11 10 12 11 11 10 10 9 13 12 13 12 10 9 14 13 14 13 10 9 15 14 14 13 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 20 19 19 18 21 20 21 20 19 18 22 21 21 20 22 21 23 22 23 22 22 21 24 23 23 22 24 23 25 24 26 24 27 23 28 22 27 23 29 21 28 22 28 22 29 21 30 20 29 21 31 18 30 20 30 20 31 18 32 19 32 19 31 18 33 17 31 18 34 16 33 17 33 17 34 16 35 15 34 16 36 14 35 15 35 15 36 14 37 13 36 14 38 9 37 13 37 13 38 9 39 12 39 12 38 9 40 10 41 11 40 10 38 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 54 37 60 38 61 39 62 39 63 38 59 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 68 47 75 48 76 48 73 47 77 46 74 49 78 50 79 51 80 51 81 50 77 49 82 52 79 53 83 54 84 54 80 53 85 52 82 55 86 56 87 57 88 57 89 56 85 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 94 62 46 63 94 62 91 61 90 64 93 64 92 61 95 62 47 63 95 62 92 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 54 74 56 75 60 76 63 76 57 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 61 80 60 81 64 82 67 82 63 81 62 80 69 83 98 84 70 85 71 85 99 84 72 83 68 86 70 87 75 88 76 88 71 87 73 86 74 89 75 90 78 91 81 91 76 90 77 89 79 92 78 93 83 94 84 94 81 93 80 92 82 95 83 96 86 97 89 97 84 96 85 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID625\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID628\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID632\">-0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID632\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID629\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID633\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID633\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID631\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID634\">3.295252840429122 -1.288182790405501 3.553954881384697 -0.9130679473510686 3.861528503676829 -1.431814179263339 3.653175485382575 -0.4978760590883997 4.220446497283755 -0.6391021215311316 5.122854141660617 -1.809345535610677 5.526358198109146 -0.9067158682851475 5.700755221866416 -1.981511659262586 5.845294038790562 -2.297413730313628 6.124135088072079 -1.029998510971301 6.237853014667429 -2.141924398637036 6.348994523888187 -2.758800446062714 6.627065876926979 -2.5283351085099 7.000331008498487 -3.170403709446711 7.278421134616336 -2.939943688429858 7.915026008602089 -3.68870217088264 8.159474776988487 -3.454130399997072 11.21097795849668 -5.348585849823603 11.42530494601942 -5.07263695607616 6.348834577254241 -1.615424885060101 6.474741113180418 -0.8385239100247427 6.679996197963138 -1.144255152347283 7.225110846459248 -0.6922914059295819 7.281870875630058 -1.006895651470734 8.059207761561993 -0.6539708482222155 8.115944512114693 -0.9685740599925033 9.186441801135759 -0.6488213400628682 9.21274739048158 -0.9514208473190707 13.06654213649594 -1.122084458825146 13.09524992904242 -0.79949167490136</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID634\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID630\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID628\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID629\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID630\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 13 14 15 14 13 16 16 13 17 16 17 18 18 17 19 18 19 20 20 19 12 20 12 21 21 12 11 21 11 22 21 22 23 23 22 24 24 22 25 24 25 26 26 25 27 26 27 28 26 28 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID630\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID631\" />\r\n\t\t\t\t\t<p>30 0 31 1 32 2 31 1 33 3 32 2 33 3 34 4 32 2 32 2 34 4 35 5 34 4 36 6 35 5 35 5 36 6 37 7 37 7 36 6 38 8 36 6 39 9 38 8 39 9 40 10 38 8 38 8 40 10 41 11 40 10 42 12 41 11 41 11 42 12 43 13 42 12 44 14 43 13 43 13 44 14 45 15 44 14 46 16 45 15 45 15 46 16 47 17 48 18 47 17 46 16 40 10 39 9 49 19 39 9 50 20 49 19 49 19 50 20 51 21 50 20 52 22 51 21 51 21 52 22 53 23 52 22 54 24 53 23 53 23 54 24 55 25 54 24 56 26 55 25 55 25 56 26 57 27 57 27 56 26 58 28 59 29 58 28 56 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID635\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID636\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID640\">-0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID640\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID637\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID641\">-0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID641\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID639\">\r\n\t\t\t\t\t<float_array count=\"116\" id=\"ID642\">-5.942143510265987 -3.537919751528921 -3.014275322117851 -6.330159141483323 -2.722917134621747 -5.429709253919597 -4.532998647519656 -5.776067396796974 -3.761988289242532 -8.403663709214172 -5.054129935863941 -5.15141281351586 -5.946686595406146 -5.057682875228573 -6.957166350571083 -4.013129460871145 -6.563991993162109 -5.617669476879784 -9.272628914606271 -5.165311420703098 -7.710539025580329 -12.82943654886498 -8.196902947598092 -11.50317111573932 -9.781350822898569 -10.19751021323684 -11.70834131037578 -6.394627456981616 -11.82235097061978 -9.37266146756806 -13.07634609667806 -7.142739684942715 -13.57695803480326 -9.381946502322247 -15.03078282578663 -8.21146679775252 -16.05001083580809 -10.25921156711687 -21.52269079340287 -11.99864627882594 -20.67270284231222 -12.96009691898834 -4.569559219049879 -10.58978432392038 -5.12072743462904 -6.367588736361021 -5.093403218011745 -11.83399197753575 -5.841838948681586 -13.61146945795768 -6.191243496727681 -6.283137334198752 -8.616810169633229 -19.58292117139953 -8.078369726216202 -14.94382291552136 -10.02986884390828 -19.21441079518665 -5.014934421954141 -9.607205397593324 -4.039184863108101 -7.471911457760681 -4.308405084816615 -9.791460585699765 -3.855269512790164 -6.414718274432491 -3.478583175285542 -2.006564730435573 -3.281995996581054 -2.808834738439892 -3.095621748363841 -3.141568667099376 -2.920919474340793 -6.805734728978842 -2.56036371731452 -3.18379436818051 -2.546701609005873 -5.916995988767874 -2.284779609524939 -5.294892161960191 -2.266499323759828 -2.888033698398487 -1.880994144621266 -4.201831854607086 -10.33635142115611 -6.480048459494169 -10.76134539670144 -5.999323139412972 -8.025005417904044 -5.129605783558433 -7.515391412893316 -4.10573339887626 -6.788479017401629 -4.690973251161124 -6.53817304833903 -3.571369842471357 -5.911175485309891 -4.68633073378403 -5.854170655187891 -3.197313728490808 -4.890675411449284 -5.098755106618421 -4.636314457303135 -2.582655710351549 -4.098451473799046 -5.751585557869662 -2.973343297703073 -2.528841437614287 -2.971071755132994 -1.768959875764461 -2.52706496793197 -2.57570640675793 -1.507137661058926 -3.165079570741662 -1.361458567310874 -2.714854626959799</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID642\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID638\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID636\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID637\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID638\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID639\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 3 3 0 0 5 5 5 5 0 0 6 6 6 6 0 0 7 7 6 6 7 7 8 8 9 9 10 10 7 7 10 10 9 9 11 11 11 11 9 9 12 12 12 12 9 9 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 16 16 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 3 3 21 21 4 4 21 21 3 3 22 22 21 21 22 22 23 23 23 23 22 22 24 24 24 24 22 22 25 25 24 24 25 25 26 26 26 26 25 25 8 8 26 26 8 8 10 10 10 10 8 8 7 7 26 26 10 10 27 27 26 26 27 27 28 28</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID638\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID639\" />\r\n\t\t\t\t\t<p>29 29 30 30 31 31 30 30 32 32 31 31 33 33 34 34 32 32 32 32 34 34 31 31 34 34 35 35 31 31 31 31 35 35 36 36 35 35 37 37 36 36 36 36 37 37 38 38 38 38 37 37 39 39 37 37 40 40 39 39 41 41 39 39 40 40 42 42 43 43 44 44 43 43 45 45 44 44 44 44 45 45 46 46 45 45 47 47 46 46 46 46 47 47 48 48 47 47 49 49 48 48 48 48 49 49 50 50 49 49 51 51 50 50 50 50 51 51 52 52 52 52 51 51 32 32 33 33 32 32 51 51 34 34 33 33 53 53 33 33 54 54 53 53 53 53 54 54 55 55 55 55 54 54 40 40 41 41 40 40 56 56 40 40 54 54 56 56 57 57 56 56 54 54</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID643\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID644\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID648\">-0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID648\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID645\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID649\">-0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID649\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID647\">\r\n\t\t\t\t\t<float_array count=\"116\" id=\"ID650\">14.82902591557052 -8.384892502619829 20.41029086447709 -13.17764101175096 21.27248131697755 -12.2229423723072 15.79670305040769 -10.44749344574282 13.33494263193682 -9.550817708016966 12.88835961543644 -7.300830137085 11.5805232985438 -9.527731536536132 11.52980744991694 -6.541998000371912 9.529151400085357 -10.33648417410537 9.109835905503532 -5.293563109915906 7.928136657948257 -11.62962404360425 6.809176289792611 -4.123239947803949 7.424943045986368 -12.95197178042472 5.800264086731488 -3.640068430440598 6.099572673222684 -5.983272599215604 5.548610961513447 -5.312678419743834 2.557177127561046 -5.506438392768292 4.71279593362039 -5.407517741830074 4.245346264840824 -5.927683489544283 3.55839236819476 -8.488419045241628 2.837121282969626 -6.409136584333087 7.765917730597559 -15.06914637484883 8.270848227836648 -19.70532053592662 9.688516068491094 -19.34793117157087 5.571861419967594 -13.71230731538016 5.676042622384449 -6.509790425305303 4.812696874597001 -6.53714695665132 4.846150501537627 -11.92903008491025 4.338197914026393 -10.68076768650679 1.77919618409738 -4.244209522620814 2.122673132420412 -2.963841744772142 2.169098957013197 -5.340383843253396 2.406348437298501 -3.26857347832566 2.423075250768814 -5.964515042455125 2.785930709983797 -6.856153657690079 2.838021311192224 -3.254895212652651 3.049786336611342 -2.991636299607802 3.404588144896306 -2.061619973901975 3.712471522993184 -6.475985890212362 3.88295886529878 -7.534573187424415 4.135424113918324 -9.85266026796331 4.844258034245547 -9.673965585785433 1.418560641484813 -3.204568292166544 1.278588563780523 -2.753219196384146 2.356397966810195 -2.703758870915037 2.774305480756723 -2.656339209871917 2.900132043365744 -1.820034215220299 3.964068328974129 -5.814812021802124 4.554917952751766 -2.646781554957953 4.764575700042679 -5.168242087052686 5.764903724958471 -3.270999000185956 5.790261649271899 -4.763865768268066 6.444179807718218 -3.6504150685425 6.667471315968408 -4.775408854008483 7.414512957785258 -4.192446251309915 7.898351525203847 -5.223746722871408 10.20514543223855 -6.588820505875478 10.63624065848878 -6.111471186153602</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID650\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID646\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID644\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID645\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID646\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID647\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 11 11 14 14 13 13 15 15 15 15 13 13 16 16 15 15 16 16 17 17 17 17 16 16 18 18 18 18 16 16 19 19 19 19 16 16 20 20 21 21 22 22 23 23 22 22 21 21 24 24 24 24 21 21 12 12 24 24 12 12 11 11 24 24 11 11 14 14 24 24 14 14 25 25 24 24 25 25 26 26 24 24 26 26 27 27 27 27 26 26 28 28 28 28 26 26 18 18 28 28 18 18 19 19</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID646\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID647\" />\r\n\t\t\t\t\t<p>29 29 30 30 31 31 30 30 32 32 31 31 31 31 32 32 33 33 33 33 32 32 34 34 32 32 35 35 34 34 35 35 36 36 34 34 36 36 37 37 34 34 37 37 38 38 34 34 38 38 39 39 34 34 34 34 39 39 40 40 41 41 40 40 39 39 42 42 43 43 29 29 29 29 43 43 30 30 30 30 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 36 36 37 37 36 36 46 46 38 38 37 37 47 47 37 37 48 48 47 47 47 47 48 48 49 49 48 48 50 50 49 49 49 49 50 50 51 51 50 50 52 52 51 51 51 51 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 55 55 54 54 56 56 57 57 56 56 54 54</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID651\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID652\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID656\">-0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086261 -0.4057228466663786 1.255007445577006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID656\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID653\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID657\">-0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID657\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID655\">\r\n\t\t\t\t\t<float_array count=\"116\" id=\"ID658\">6.702103108885646 20.11553924734162 5.794715717549207 13.65502883900708 8.114458168158471 19.74546699100114 5.035936020298975 15.78554439442911 5.041999724845416 11.87869973036162 4.515123873609423 10.63526002083553 3.72203637432034 13.91843838723838 3.499059127413852 8.503668162237371 2.323357503165463 13.08490005884943 2.520531152860973 6.490504505913559 2.068972894939293 5.631935926042748 0.06075091877033985 12.78483712999241 0.8120119978442776 7.222580289126928 0.8227126529265449 6.595773100139321 0.04362987063896788 7.548865554982541 -2.201940144480685 13.08490005885077 -0.6525134482231259 7.207434068793488 -0.6603042760459281 6.628102364821207 -1.949292046070537 5.631935926043967 -2.400906623229417 6.490504505914989 -3.600572082937799 13.91843838724053 -3.379425211242822 8.503668162239411 -4.395536890136512 10.63526002083815 -4.914377863521055 15.78554439443209 -4.922422127911656 11.87869973036458 -6.582432022018011 20.11553924734553 -5.675109960996605 13.65502883901048 -7.994833638526947 19.7454669910059 0.1023145158150442 6.277101703712805 -0.3301521380229641 3.314051182410604 0.05115725790752209 3.138550851856402 -0.9746460230352685 2.815967963021984 0.4113563264632725 3.297886550069661 1.034486447469647 2.815967963021374 -3.997416819263473 9.872733495502947 -3.291216011009006 10.05776962367277 -2.837554980498303 6.82751441950524 -2.461211063955828 5.939349865182291 -2.457188931760527 7.892772197216043 -2.197768445068256 5.317630010419073 -1.8002860414689 6.959219193620267 -1.689712605621411 4.251834081119705 -1.200453311614709 3.245252252957494 -1.100970072240343 6.542450029425386 -0.3262567241115629 3.603717034396744 0.02181493531948394 3.774432777491271 0.03037545938516992 6.392418564996206 0.4060059989221388 3.611290144563464 1.161678751582732 6.542450029424717 1.260265576430486 3.245252252956779 1.749529563706926 4.251834081118686 1.86101818716017 6.959219193619191 2.257561936804712 5.317630010417767 2.517968010149487 7.892772197214557 2.520999862422708 5.939349865180811 2.897357858774603 6.827514419503538 3.351051554442823 10.05776962367081 4.057229084079236 9.872733495500569</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID658\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID654\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID652\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID653\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID654\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID655\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 5 5 6 6 7 7 7 7 6 6 8 8 7 7 8 8 9 9 9 9 8 8 10 10 10 10 8 8 11 11 10 10 11 11 12 12 10 10 12 12 13 13 12 12 11 11 14 14 14 14 11 11 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 18 18 15 15 19 19 19 19 15 15 20 20 19 19 20 20 21 21 21 21 20 20 22 22 22 22 20 20 23 23 22 22 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 26 26 25 25 27 27 10 10 28 28 18 18 28 28 10 10 13 13 18 18 28 28 17 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID654\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID655\" />\r\n\t\t\t\t\t<p>29 29 30 30 31 31 32 32 33 33 30 30 31 31 30 30 33 33 34 34 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 41 41 40 40 42 42 40 40 43 43 42 42 42 42 43 43 31 31 31 31 43 43 29 29 29 29 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 47 47 32 32 47 47 33 33 47 47 46 46 33 33 46 46 48 48 33 33 33 33 48 48 49 49 49 49 48 48 50 50 48 48 51 51 50 50 50 50 51 51 52 52 51 51 53 53 52 52 52 52 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 57 57 55 55 56 56</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID659\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID660\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID664\">-0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID664\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID661\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID665\">-0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID665\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID663\">\r\n\t\t\t\t\t<float_array count=\"116\" id=\"ID666\">-6.984665430113307 3.983443023641084 -7.40422572564607 0.3789239175328026 -6.09915843792158 3.36857647914322 -7.410646117683638 2.119594723555238 -7.616745992036167 2.801032421564928 -9.087203731092407 5.365323263029861 -8.3423442719905 2.953155647545233 -9.093473939508872 2.602729468533396 -11.31992357356801 6.813667586479245 -14.53491699533404 8.746494248780024 -15.52040002022607 7.299823452712065 -14.97250845787214 5.988482126861165 -21.10379608906077 12.45059281253822 -17.33840302157449 8.883806786916869 -22.00748405742919 11.51994145614131 -8.583146557493567 0.3217766936036152 -8.054646834917762 1.646710999030179 -8.931546370346142 1.906224412462378 -11.32126622418493 0.2476387067093099 -12.6437260187638 7.60952939642481 -14.21409408474354 0.1839639580231964 -15.88012976177167 0.1958135568310805 -15.34672951463004 4.207573708536487 -16.44238348055336 2.621577179361666 -18.26023629726925 0.2127637073613848 -17.89873287521094 1.85170038214918 -20.57025466836452 1.480585937066035 -26.33609653088566 0.4649613457242628 -26.32221346343603 1.636013390160535 -13.16110673171801 0.8180066950802676 -10.28512733418226 0.7402929685330173 -13.16804826544283 0.2324806728621314 -9.130118148634626 0.1063818536806924 -8.949366437605471 0.9258501910745902 -8.22119174027668 1.310788589680833 -7.940064880885833 0.09790677841554024 -7.673364757315019 2.103786854268244 -7.486254228936068 2.994241063430582 -7.267458497667017 4.373247124390012 -7.107047042371768 0.09198197901159821 -6.321863009381899 3.804764698212405 -5.660633112092466 0.123819353354655 -5.659961786784004 3.406833793239623 -4.546736969754436 1.301364734266698 -4.465773185173071 0.953112206231189 -4.291573278746784 0.1608883468018076 -4.027323417458881 0.8233554995150897 -3.705323058841819 1.059797361777619 -3.702112862823035 0.1894619587664013 -11.00374202871459 5.759970728070657 -10.55189804453039 6.225296406269112 -8.669201510787243 4.441903393458435 -7.760200010113037 3.649911726356033 -4.543601865546203 2.682661631514931 -4.17117213599525 1.476577823772616 -3.808372996018083 1.400516210782464 -3.492332715056654 1.991721511820542 -3.04957921896079 1.68428823957161</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID666\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID662\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID660\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID661\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID662\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID663\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 7 7 5 5 8 8 9 9 10 10 11 11 10 10 9 9 12 12 10 10 12 12 13 13 13 13 12 12 14 14 3 3 15 15 1 1 15 15 3 3 16 16 15 15 16 16 17 17 15 15 17 17 18 18 18 18 17 17 7 7 18 18 7 7 8 8 18 18 8 8 19 19 18 18 19 19 20 20 20 20 19 19 9 9 20 20 9 9 21 21 21 21 9 9 11 11 21 21 11 11 22 22 21 21 22 22 23 23 21 21 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 24 24 26 26 27 27 27 27 26 26 28 28</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID662\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID663\" />\r\n\t\t\t\t\t<p>29 29 30 30 31 31 31 31 30 30 32 32 30 30 33 33 32 32 33 33 34 34 32 32 32 32 34 34 35 35 34 34 36 36 35 35 36 36 37 37 35 35 37 37 38 38 35 35 35 35 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 41 41 41 41 44 44 45 45 44 44 46 46 45 45 46 46 47 47 45 45 48 48 45 45 47 47 49 49 50 50 51 51 51 51 50 50 52 52 50 50 38 38 52 52 37 37 52 52 38 38 42 42 53 53 43 43 43 43 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 55 55 56 56 47 47 47 47 56 56 48 48 57 57 48 48 56 56</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID667\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID668\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID672\">-0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID672\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID669\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID673\">-0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID673\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID671\">\r\n\t\t\t\t\t<float_array count=\"116\" id=\"ID674\">20.61719888652537 1.218148136177216 26.37837451250605 0.1684497917821321 26.37941679385733 1.339544146984344 18.29973586318679 -0.02022262547900209 17.95056710501454 1.610244438259214 15.91953471137129 -0.01844121671260754 16.50403527979898 2.391555627588657 15.42855411374404 3.986084458633338 14.25340591987107 -0.01718592348860902 15.07707401407439 5.769850515057511 14.68308415411048 8.542387413325084 12.77760761527535 7.420370888018093 11.36156327050402 0.06924101484297966 11.44368572952684 6.634956071308992 9.192662885861024 5.204233701788687 9.425026296851021 2.312795134179659 8.738063013666524 2.754604887566969 7.072628075169551 3.838965865215587 7.924071315350075 2.605400439849607 7.606327939590292 1.892705793038809 7.446428614955478 0.2313362901843486 6.179339266233333 3.231097654269962 9.207521402500165 1.59536744141203 8.624532442400788 0.1649128185498039 8.27845148027766 1.398775674567985 21.29872623692821 12.19463380149279 17.47963465401062 8.646417845385683 22.19043848268239 11.25691735948019 15.64156248019065 7.076826964854104 7.538537007037196 2.884925257528756 7.34154207705524 4.271193706662542 7.820781240095327 3.538413482427052 8.739817327005309 4.323208922692841 10.64936311846411 6.097316900746395 11.09521924134119 5.628458679740094 3.803163969795146 0.9463528965194042 4.13922574013883 0.6993878372839926 3.723214307477739 0.1156681450921743 4.312266221200394 0.08245640927490194 4.603760701250082 0.797683720706015 4.712513148425511 1.156397567089829 5.680781635252012 0.03462050742148983 3.089669633116666 1.615548827134981 3.536314037584776 1.919482932607794 3.962035657675037 1.302700219924803 4.369031506833262 1.377302443783485 4.596331442930512 2.602116850894344 5.721842864763418 3.317478035654496 6.388803807637676 3.710185444009047 7.126702959935534 -0.00859296174430451 7.714277056872022 1.993042229316669 7.959767355685644 -0.009220608356303768 8.252017639899492 1.195777813794329 8.975283552507268 0.8051222191296068 9.149867931593397 -0.01011131273950105 10.30859944326268 0.609074068088608 13.18918725625302 0.08422489589106605 13.18970839692866 0.6697720734921721</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID674\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID670\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID668\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID669\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID670\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID671\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 5 5 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 8 8 10 10 11 11 8 8 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 12 12 14 14 15 15 15 15 14 14 16 16 16 16 14 14 17 17 16 16 17 17 18 18 18 18 17 17 19 19 19 19 17 17 20 20 20 20 17 17 21 21 12 12 22 22 23 23 22 22 12 12 15 15 23 23 22 22 24 24 23 23 24 24 20 20 20 20 24 24 19 19 25 25 26 26 27 27 26 26 25 25 10 10 26 26 10 10 28 28 28 28 10 10 9 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID670\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID671\" />\r\n\t\t\t\t\t<p>29 29 30 30 31 31 31 31 30 30 32 32 30 30 33 33 32 32 34 34 32 32 33 33 35 35 36 36 37 37 37 37 36 36 38 38 36 36 39 39 38 38 40 40 41 41 39 39 38 38 39 39 41 41 42 42 43 43 37 37 37 37 43 43 35 35 35 35 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 40 40 40 40 46 46 41 41 46 46 47 47 41 41 47 47 48 48 41 41 41 41 48 48 49 49 48 48 30 30 49 49 30 30 29 29 49 49 29 29 50 50 49 49 49 49 50 50 51 51 50 50 52 52 51 51 52 52 53 53 51 51 51 51 53 53 54 54 53 53 55 55 54 54 54 54 55 55 56 56 57 57 56 56 55 55</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID675\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID676\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID680\">-0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803394 0.6383334991085194 -0.1943718802796175</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID680\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID677\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID681\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID681\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID679\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID682\">-12.93127233964243 -1.486071496671276 -12.62543034616549 -4.129144983791254 -12.23498784722559 -1.874505443854724 -12.76666998217039 -3.058117583065982 -13.34961163411208 -2.09427775069872 -14.42832176977398 -1.181805033857142 -14.54974604533614 -1.810114365788693 -16.09538020415581 -1.092060798588364 -16.21682400372031 -1.72034805212735 -18.34966205435873 -1.064030839351062 -18.40995067147561 -1.668797885313605 -26.17068750133516 -1.303845305457521 -26.12148100826749 -1.949461217357851 -7.159292431165309 -1.69744618722385 -7.854985196129549 -2.746417347632534 -6.718791141366869 -2.468068923971035 -7.2798246100092 -0.8491966345196895 -8.417877199601666 -1.122717643494433 -10.38703202271997 -3.481579675358059 -11.03641160156596 -1.637361946361363 -11.54718953748084 -3.816798493870874 -11.84430204918045 -4.446292896444675 -12.86330478225409 -5.361104519921764 -13.4136083098111 -4.895822555464352 -14.17645312960758 -6.174030638247034 -14.72672962393063 -5.708741585074908 -16.01893622609624 -7.196171309012338 -16.5018368904839 -6.72319749841732 -22.65270559410508 -10.46391163633777 -23.07439550773097 -9.908684515855253 -11.53719775386548 -4.954342257927626 -8.250918445241952 -3.36159874920866 -11.32635279705254 -5.231955818168884 -8.009468113048119 -3.598085654506169 -7.363364811965314 -2.854370792537454 -7.088226564803792 -3.087015319123517 -6.70680415490555 -2.447911277732176 -6.431652391127047 -2.680552259960882 -6.312715173082745 -2.064572491895627 -5.922151024590223 -2.223146448222337 -6.117493923612793 -0.937252721927362 -5.77359476874042 -1.908399246935437 -5.518205800782978 -0.8186809731806815 -5.193516011359987 -1.74078983767903 -4.208938599800833 -0.5613588217472164 -3.927492598064775 -1.373208673816267 -3.6399123050046 -0.4245983172598448 -3.579646215582655 -0.8487230936119248 -3.359395570683434 -1.234034461985518 -13.06074050413374 -0.9747306086789257 -13.08534375066758 -0.6519226527287603 -9.204975335737807 -0.8343989426568027 -9.174831027179364 -0.5320154196755311 -8.108412001860152 -0.860174026063675 -8.047690102077906 -0.5460303992941817 -7.274873022668071 -0.9050571828943463 -7.214160884886991 -0.5909025169285711 -6.674805817056042 -1.04713887534936 -6.465636169821214 -0.7430357483356379 -6.383334991085194 -1.529058791532991</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID682\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID678\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID676\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID677\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID678\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID679\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 15 15 14 14 13 13 16 16 14 14 16 16 17 17 14 14 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 20 20 19 19 2 2 20 20 2 2 21 21 21 21 2 2 1 1 21 21 1 1 22 22 22 22 1 1 23 23 22 22 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID678\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID679\" />\r\n\t\t\t\t\t<p>30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 33 33 34 34 35 35 34 34 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 46 46 47 47 45 45 48 48 45 45 47 47 49 49 50 50 51 51 50 50 52 52 51 51 51 51 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 59 59 58 58 38 38 40 40 38 38 58 58</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID683\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID684\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID688\">-0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.270747921471866 -0.3435928533137942</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID688\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID685\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID689\">1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID689\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID687\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID690\">-13.23998135775804 -2.815179652060345 -12.70747921471866 -2.702930446068514 -13.16378218064985 -0.02353490189121056 -11.86264785299155 -5.414977569922251 -11.3852296786218 -5.19814619357484 -9.676892997933901 -7.645755905570643 -9.287060999525936 -7.339102244252365 -6.831627108706453 -9.35548004195716 -6.556009772566556 -8.979918166834205 -3.520815891249638 -10.42765167937458 -3.378135984617037 -10.00876771530356 0.02993367461099795 -10.78919857487892 0.02993367461107122 -10.35552755201697 3.578613696232724 -10.41547563048526 3.435947306217084 -9.996572763175115 6.607832481936404 -8.956385406325536 6.883464085616424 -9.331950235079592 9.329413065955807 -7.305833134151492 9.719179734048568 -7.612483251112466 11.41515847223228 -5.15738785643058 11.89255787352293 -5.374217460599311 12.72300830574298 -2.657477903000535 13.25550293955077 -2.769719724914605 13.16380470834466 0.02353305587178231 13.24002340945525 2.815181424239013 13.71509494893863 0.02353305587177882 -13.25547891000948 2.769721792456383 -13.71506791570486 -0.02353490189120707 -12.72297526512372 2.657477016911196 -11.89256237906191 5.374217460599315 -11.415120926074 5.157382539894559 -9.719207518205637 7.612483251112464 -9.329352241179443 7.305826045436834 -6.883468591155371 9.331957914520494 -6.607781419161219 8.956387769230418 -3.578613696232667 10.41548035629503 -3.435919522059974 9.9965833962471 -0.02990082172260377 10.7891985748789 -0.02990082172267482 10.35552991492187 3.378140490156039 10.00875944513644 3.520825277789115 10.42765758663682 6.556009772566611 8.979915213203102 6.831636119784472 9.35548594921938 9.287065505064954 7.339104016431012 9.676888492394975 7.645755905570645 11.38526271924082 5.198144421396179 11.86263358545151 5.414979342100926 12.70754829964972 2.702938420872503</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID690\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID686\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID684\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID685\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID686\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID687\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 15 15 13 13 16 16 15 15 16 16 17 17 17 17 16 16 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 24 24 22 22 25 25 0 0 26 26 27 27 26 26 0 0 2 2 26 26 2 2 28 28 26 26 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 47 47 46 46 47 47 24 24 24 24 47 47 23 23 48 23 49 47 50 24 50 24 49 47 51 46 49 47 52 45 51 46 51 46 52 45 53 44 52 45 54 43 53 44 53 44 54 43 55 42 54 43 56 41 55 42 55 42 56 41 57 40 56 41 58 39 57 40 57 40 58 39 59 37 58 39 60 38 59 37 60 38 61 36 59 37 59 37 61 36 62 35 61 36 63 34 62 35 62 35 63 34 64 33 63 34 65 32 64 33 64 33 65 32 66 31 65 32 67 30 66 31 66 31 67 30 68 29 67 30 69 28 68 29 68 29 69 28 70 26 69 28 71 2 70 26 71 2 72 0 70 26 73 27 70 26 72 0 74 25 75 22 50 24 50 24 75 22 48 23 48 23 75 22 76 21 75 22 77 20 76 21 76 21 77 20 78 19 77 20 79 18 78 19 78 19 79 18 80 17 79 18 81 16 80 17 80 17 81 16 82 15 81 16 83 13 82 15 82 15 83 13 84 14 84 14 83 13 85 12 83 13 86 11 85 12 85 12 86 11 87 10 86 11 88 9 87 10 87 10 88 9 89 8 88 9 90 7 89 8 89 8 90 7 91 6 90 7 92 5 91 6 91 6 92 5 93 4 92 5 94 3 93 4 93 4 94 3 95 1 94 3 72 0 95 1 71 2 95 1 72 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID691\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID694\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID696\">-0.4478128033659967 0.2778640982455765 -0.362934906886154 -0.4478128033659949 0.307457980125035 -0.3945048806169198</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID696\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID695\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID694\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID695\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID697\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID698\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID700\">-0.4478128033659896 -0.2592153908032857 -0.3790163769896233 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID700\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID699\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID698\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID699\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID701\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID702\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID704\">-0.4478128033659967 -0.4253519781642065 0.1347814339741829 -0.4478128033659914 -0.4139088478041265 0.0933464324579063</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID704\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID703\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID702\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID703\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID705\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID706\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID708\">-0.4478128033659932 -0.003894005930508371 0.4410080127493087 -0.4478128033659967 0.03004302779671875 0.423250557236884</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID708\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID707\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID706\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID707\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID709\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID710\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID712\">-0.4478128033659976 0.4132203263553758 0.1481986756257214 -0.4478128033659941 0.443604104310682 0.1249160682732518</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID712\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID711\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID710\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID711\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID713\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID714\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID716\">-0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.005569503239401641 -0.6325761712128029</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID716\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID715\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID714\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID715\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID717\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID718\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID720\">-0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803314 -0.6020747235977453 -0.1948699676140677</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID720\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID719\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID718\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID719\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID721\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID722\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID724\">-0.5298591187803314 0.005242382336229534 -0.5675233220841833 -0.529859118780335 -0.05171889424246934 -0.426670674331888</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID724\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID723\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID722\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID723\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID725\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID726\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID728\">-0.5298591187803421 0.004574999374554745 -0.4344675846323871 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID728\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID727\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID726\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID727\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID729\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID730\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID732\">-0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.365877924949132 0.5166904045363489</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID732\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID731\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID730\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID731\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID733\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID734\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID736\">-0.5298591187803314 -0.3342368387947641 0.459116412202264 -0.5298591187803323 -0.2836405746819554 0.488100356742052</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID736\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID735\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID734\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID735\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID737\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID738\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID740\">-0.5298591187803341 0.328054863850014 0.4637080820710361 -0.5298591187803368 0.2863054132589566 0.3205489738215878</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID740\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID739\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID738\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID739\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID741\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID742\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID744\">-0.5298591187803421 0.2506140352906494 0.3552348656737639 -0.5298591187803332 0.2520881913262922 0.2718711494341899</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID744\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID743\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID742\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID743\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID745\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID746\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID748\">-0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.3723203951393453 0.5119000403984736</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID748\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID747\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID746\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID747\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID749\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID750\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID752\">-0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2562910144078499 0.3510828613173088</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID752\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID751\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID750\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID751\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID753\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID756\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID758\">-0.5298591187803385 -0.540087405646254 -0.1750670537230961 -0.529859118780335 -0.4220446497283755 -0.0812417951098896</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID758\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID757\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID756\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID757\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID759\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID760\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID762\">-0.529859118780335 -0.4132513394820253 -0.1345502998244115 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID762\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID761\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID760\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID761\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID763\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID764\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID766\">-0.5298591187803394 0.5432375283177788 -0.1650388315610469 -0.5298591187803332 0.5193516011359987 -0.221286843772758</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID766\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID765\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID764\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID765\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID767\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID768\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID770\">-0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.6054177208838552 -0.184220112484069</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID770\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID769\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID768\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID769\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID771\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID772\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID774\">-0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.4160034728768081 -0.1257918324128582</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID774\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID773\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID772\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID773\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID775\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID776\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID778\">0.4736113844101926 1.42012168249506 1.065790132799686 0.8846653631423393 1.420121682495051 1.065790132799686</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID778\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID777\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID776\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID777\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID784\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID785\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID789\">-0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"128\" source=\"#ID789\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID786\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID790\">-0.9024665938125612 0.2869979446047657 0.3212261303894707 -0.902466236746562 0.1795708561871048 0.3915469309555731 -0.9024665938061016 0.2869970887591513 0.3212268950567254 -0.9024662367466551 0.1795709440136923 0.3915468906764066 0.902466236746562 -0.1795708561871048 -0.3915469309555731 0.9024665938061016 -0.2869970887591513 -0.3212268950567254 0.9024662367466551 -0.1795709440136923 -0.3915468906764066 0.9024665938125612 -0.2869979446047657 -0.3212261303894707 -0.9024668903167546 0.05618340562307148 0.4270795438962162 -0.9024668903001765 0.05618563690832937 0.4270792503940392 0.9024668903167546 -0.05618340562307148 -0.4270795438962162 0.9024668903001765 -0.05618563690832937 -0.4270792503940392 -0.902469089464752 0.3689290774500262 0.2223530489391454 -0.9024690894613248 0.3689289867002785 0.2223531995253341 0.9024690894613248 -0.3689289867002785 -0.2223531995253341 0.902469089464752 -0.3689290774500262 -0.2223530489391454 -0.9999555775055583 0.003929272324182818 0.008567603779806768 -0.9999999999999999 -3.944088456120249e-009 1.649036539061831e-008 -0.9999555776890411 0.006279922634141023 0.007028884711349623 0.9999555776890411 -0.006279922634141023 -0.007028884711349623 0.9999999999999999 3.944088456120249e-009 -1.649036539061831e-008 0.9999555775055583 -0.003929272324182818 -0.008567603779806768 -0.9024674946036678 -0.07219701394895309 0.4246645880699658 -0.9024674946038228 -0.07219707389978321 0.424664577877421 0.9024674946036678 0.07219701394895309 -0.4246645880699658 0.9024674946038228 0.07219707389978321 -0.424664577877421 -0.9999555778310314 0.001229424558499158 0.009345099243102516 0.9999555778310314 -0.001229424558499158 -0.009345099243102516 -0.9024695789497297 0.4180784539420578 0.1037259148897536 -0.9024695789502093 0.4180784961390021 0.1037257448061106 0.9024695789502093 -0.4180784961390021 -0.1037257448061106 0.9024695789497297 -0.4180784539420578 -0.1037259148897536 -0.9999555784085298 0.008072791231372301 0.004865311027822405 0.9999555784085298 -0.008072791231372301 -0.004865311027822405 -0.9024683401951699 -0.1941614071388285 0.3845155951625956 -0.9024683401956324 -0.1941614450021188 0.3845155760424143 0.9024683401951699 0.1941614071388285 -0.3845155951625956 0.9024683401956324 0.1941614450021188 -0.3845155760424143 -0.9999555778376283 -0.001579793115735819 0.009292287400107886 0.9999555778376283 0.001579793115735819 -0.009292287400107886 -0.9024695599118074 0.4300783861399769 -0.02410964968268119 -0.9024695599145399 0.4300784014704719 -0.02410937610681846 0.9024695599145399 -0.4300784014704719 0.02410937610681846 0.9024695599118074 -0.4300783861399769 0.02410964968268119 -0.9999555771365172 0.009148344649372987 0.002269701247122971 0.9999555771365172 -0.009148344649372987 -0.002269701247122971 -0.9024699496610145 -0.298869595953435 0.3102014741639317 -0.9024699496784561 -0.298870415416041 0.3102006845840415 0.9024699496610145 0.298869595953435 -0.3102014741639317 0.9024699496784561 0.298870415416041 -0.3102006845840415 -0.9999555776015303 -0.004248627287482877 0.008413797582663555 0.9999555776015303 0.004248627287482877 -0.008413797582663555 -0.9024682165406183 0.4038669616350336 -0.1498085292421026 -0.902468216543048 0.4038670647292976 -0.1498082512966218 0.9024682165406183 -0.4038669616350336 0.1498085292421026 0.902468216543048 -0.4038670647292976 0.1498082512966218 -0.999955577745935 0.009410860694318868 -0.0005274806018676984 0.999955577745935 -0.009410860694318868 0.0005274806018676984 -0.9024707715227106 -0.3770220929027301 0.2083287018402623 -0.9024707715194342 -0.3770227739999134 0.2083274692366014 0.9024707715227106 0.3770220929027301 -0.2083287018402623 0.9024707715194342 0.3770227739999134 -0.2083274692366014 -0.9999555770671936 -0.006539895081909356 0.006787758432154178 0.9999555770671936 0.006539895081909356 -0.006787758432154178 -0.9024668466034375 0.3417689209700612 -0.2621976266875958 -0.9024668466014079 0.3417688417781226 -0.262197729919524 0.9024668466034375 -0.3417689209700612 0.2621976266875958 0.9024668466014079 -0.3417688417781226 0.262197729919524 -0.9999555775200822 0.008837293966907273 -0.003277990515714328 0.9999555775200822 -0.008837293966907273 0.003277990515714328 -0.902469637953096 -0.4216810734117544 0.08794103080541284 -0.9024696379339142 -0.4216812607433428 0.08794013273434857 0.902469637953096 0.4216810734117544 -0.08794103080541284 0.9024696379339142 0.4216812607433428 -0.08794013273434857 -0.9999555769430629 -0.008249995118261777 0.004558697293603463 0.9999555769430629 0.008249995118261777 -0.004558697293603463 -0.902465509489143 0.2493039587819413 -0.3512884004890483 -0.9024655094892364 0.2493038174778161 -0.3512885007701228 0.902465509489143 -0.2493039587819413 0.3512884004890483 0.9024655094892364 -0.2493038174778161 0.3512885007701228 -0.9999555779597974 0.00747843989793408 -0.005737163391514847 0.9999555779597974 -0.00747843989793408 0.005737163391514847 -0.9024672758692717 -0.4288731719288677 -0.04025690480859202 -0.9024672758646049 -0.4288730763736164 -0.04025792288916159 0.9024672758692717 0.4288731719288677 0.04025690480859202 0.9024672758646049 0.4288730763736164 0.04025792288916159 -0.9999555776764442 -0.009227086398497142 0.001924461057970694 0.9999555776764442 0.009227086398497142 -0.001924461057970694 -0.9024664086806516 0.1346861044661979 -0.4091626015006348 -0.9024664086756207 0.134686627996427 -0.4091624291782907 0.9024664086806516 -0.1346861044661979 0.4091626015006348 0.9024664086756207 -0.134686627996427 0.4091624291782907 -0.9999555777995033 0.005455079717335024 -0.007686646403922885 0.9999555777995033 -0.005455079717335024 0.007686646403922885 -0.9024678923401798 -0.3979516028754097 -0.1648824583270336 -0.902467892340141 -0.3979517141178801 -0.1648821898380311 0.902467892340141 0.3979517141178801 0.1648821898380311 0.9024678923401798 0.3979516028754097 0.1648824583270336 -0.9999555778851129 -0.009384369994094055 -0.000880827034032532 0.9999555778851129 0.009384369994094055 0.000880827034032532 -0.9024663791541479 0.008097340179231503 -0.430684185428747 -0.9024663791250542 0.008094825123542416 -0.4306842327681999 0.9024663791541479 -0.008097340179231503 0.430684185428747 0.9024663791250542 -0.008094825123542416 0.4306842327681999 -0.9999555777991002 0.002947080780235639 -0.008953052180265634 0.9999555777991002 -0.002947080780235639 0.008953052180265634 -0.9024662331163754 -0.3316728008946313 -0.2748596937192685 -0.9024662331196897 -0.3316729654395058 -0.2748594951522004 0.9024662331196897 0.3316729654395058 0.2748594951522004 0.9024662331163754 0.3316728008946313 0.2748596937192685 -0.999955578177709 -0.008707751861328623 -0.003607870397508076 0.999955578177709 0.008707751861328623 0.003607870397508076 -0.9024648168310505 -0.1192080340211159 -0.4139404534554687 -0.9024648168337509 -0.1192074838149737 -0.4139406118994938 0.9024648168310505 0.1192080340211159 0.4139404534554687 0.9024648168337509 0.1192074838149737 0.4139406118994938 -0.9999555778745281 0.0001771432880129035 -0.009423953410019359 0.9999555778745281 -0.0001771432880129035 0.009423953410019359 -0.9024656541724766 -0.2359218880318137 -0.3604117170494711 -0.902465654171666 -0.2359217875784709 -0.3604117828072296 0.902465654171666 0.2359217875784709 0.3604117828072296 0.9024656541724766 0.2359218880318137 0.3604117170494711 -0.9999555777101306 -0.007257512103960586 -0.006014243465287442 0.9999555777101306 0.007257512103960586 0.006014243465287442 -0.9999555776620278 -0.002608402576862527 -0.009057534907320045 0.9999555776620278 0.002608402576862527 0.009057534907320045 -0.9999555782419665 -0.005162296496035368 -0.007886205530005717 0.9999555782419665 0.005162296496035368 0.007886205530005717</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"128\" source=\"#ID790\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID788\">\r\n\t\t\t\t\t<float_array count=\"294\" id=\"ID791\">-0.3524052240098752 -0.2361568945663559 0.3968896729741346 0.1922852666439943 0.4737327008967246 -0.9152355322345628 0.9630262887515753 -0.6354626856147748 -0.4167537122269166 -0.1324198059202896 0.4655388858093918 0.08953581466919515 0.09695620062060414 -0.9810664844640712 0.6730670627304097 -0.8361327489468616 -0.2567247963027225 -0.31560409935685 0.2973352684969716 0.2683873916988639 0.7882870625951499 -0.7713646321021612 1.150086384430147 -0.3900178469634608 -0.783870346512475 1.378704611404 0.06212354191532857 -0.07234147090675236 -1.289966888573064 1.118085413747316 -0.3008224430983176 -0.9484756688791239 -0.4367617780734336 -0.01462412283998805 0.3039367921445285 -0.9584067804719864 0.4893324111284635 -0.02983363233461241 -0.2203908618967485 1.503989911589727 0.04433562663634652 -0.07875933781474324 -0.8016174477820905 1.372301469794169 -0.1429120515214738 -0.367198117649849 0.1809070857644482 0.3155180012112068 1.022592991639205 -0.5743581365222055 1.234023150294384 -0.1285484832020004 -1.275396677288614 1.12832667461258 0.07671628909398423 -0.06208436965356513 -1.66136548078844 0.7619376860652442 -0.6628716918210396 -0.8170859861489843 -0.4073515623064179 0.1011264290438674 -0.09476487502684913 -0.9804405628471385 0.4626568454837426 -0.1490324395691673 0.3650414996825432 1.493042349004655 0.02493089743164573 -0.08076808610367456 -0.2397426200746382 1.50198664557768 -0.02066572129329647 -0.3914599007726098 0.05736325230823958 0.3346473762187736 1.17267479942198 -0.3439402612969316 1.223643632931941 0.1302055707804858 -1.651269230232574 0.7751163069047897 0.08682001596138418 -0.04889598984901968 -1.882760478217731 0.3355170423070947 -0.9419647060013334 -0.6102700701630079 -0.3353501529221609 0.1995466050261453 -0.4668875889383237 -0.9047897006971836 0.3922070304645184 -0.2514821593426724 0.3457982769905845 1.495615404073835 0.9203364240227525 1.346830328258524 0.005635596625816379 -0.07818806575251706 -0.06697561493530457 0.3275468783499481 1.126355299807839 0.3752155678757479 0.1040111679385125 -0.388637340607042 1.238011217856225 -0.09244888651659929 -1.878050069741289 0.3504523016984736 0.09153118311425376 -0.03395832490335624 -1.93459673056012 -0.123302009428372 -1.117289405717435 -0.3613891006095253 -0.2344980136134975 0.272067017744716 -0.7734592826352205 -0.7528807175430338 0.2920443195803396 -0.3274591628500121 0.9029042283172811 1.35375431886067 1.39616406775141 1.078353125365281 -0.01183525826232684 -0.07124871822464581 -0.186897061406765 0.2942037124704471 0.9447253547904824 0.5959672029532446 0.2257787374954082 -0.3581771099131729 1.214189184550729 0.169958907902574 0.09043585409260579 -0.01858633654730853 -1.812203419199725 -0.5737500453082663 -1.93569205005432 -0.1079301547813531 -1.190013434193229 -0.09824780362384109 -0.1179073442473178 0.3167816077142103 -0.9983469950028587 -0.5495662572713074 0.1755912440477331 -0.3743751425856143 1.382091246066081 1.089018993299208 1.75026303628513 0.7114738979672752 -0.02592837582048213 -0.06056746696411634 -0.2952586744430266 0.2337084769733447 0.6794575272154855 0.7773668085625854 0.3372907202383119 -0.2986409217881123 1.092513136402134 0.4297375884811659 0.08363089132390443 -0.004153551560189934 -1.526489466348473 -0.9758143642852514 -1.819006096267833 -0.5593221080025462 -1.168978557164991 0.1615496775993526 0.005430313511846641 0.3347777810011712 -1.13847441899684 -0.3136789370305894 0.05211876781394509 -0.3929897756725005 1.740805216807092 0.7249390145054863 1.951177325817038 0.2788063115482746 -0.03539234262457076 -0.04709359816704189 -0.3809160440027784 0.146093917292971 0.3383174364586705 0.8966761424705388 0.4270405228667517 -0.2102904844304112 0.8659105981995169 0.6639631861579365 0.07171849013542153 0.008062775638568245 -1.102793304223511 -1.293774310216109 -1.538389610930159 -0.9636106058033177 -1.192697017918619 -0.05808015184411099 -1.060803453390981 0.4063081240514468 -0.07222633956791902 -0.3845717407713823 0.1297449779240717 0.3265826019173688 1.947182244123232 0.2938766420839853 1.981042651962162 -0.1812112976198525 -0.03938788681399102 -0.0320215229750103 -0.4299897675531783 0.03654607664910618 -0.0524315242956043 0.9283402239298384 0.4802244090786475 -0.09863015383275404 0.5419672336339126 0.840067431844499 0.05575920687481053 0.01697370996765415 -0.5787908752940257 -1.499364633663538 -1.118723112271001 -1.28487983214167 -1.156099853862085 0.2066797400671177 -0.8675436049402432 0.6248879863575346 -0.1921656442747269 -0.3487502314162322 0.2497335503953799 0.2916925404031848 1.982871524296908 -0.1658838045780912 1.837226823603213 -0.6277221656035168 -0.03755897012292375 -0.01669365819150997 -0.4435596451746486 0.8574897570892256 0.1549471133513004 0.926271017659403 -0.4314797661798583 -0.08241555601430506 0.4850983193021703 0.02291896507682182 0.03716949338786759 0.02178844157197701 -0.0009938348333969052 -1.574320909725511 -0.5973340108549068 -1.494561963904799 -1.020058250736914 0.4652208336946513 -0.590668199735378 0.8003619256414625 -0.3002610023705488 -0.2850266574071003 0.3573215388483328 0.2282013813533236 1.844715281581389 -0.6135032123919676 1.53248244939769 -1.021051126561889 -0.03006746412218775 -0.00246891752738707 -0.7787690196498813 0.6932719536246276 -0.2397379242648021 0.9092043715946208 -0.3847025093323656 -0.1940833813882925 0.44076218466755 0.1365952386707551 0.01760077999626869 0.02207835371030489 0.5791832437635509 -1.51196408310349 -0.02050822442818087 -1.574031800828231 1.544954207250127 -1.00921122784879 1.093911919977969 -1.326263772815833 -0.017581589667695 0.009384382415771322 1.110257215438868 -1.317846356961747 0.560426229320167 -1.516213318070019 -0.001204457374191035 0.01781819349283538</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"147\" source=\"#ID791\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID787\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID785\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID786\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"126\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID787\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID788\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 2 2 1 1 4 1 5 2 6 3 5 2 4 1 7 0 1 4 8 5 3 6 9 7 3 6 8 5 10 5 6 6 11 7 6 6 10 5 4 4 12 8 0 9 13 10 2 11 13 10 0 9 7 9 14 10 5 11 14 10 7 9 15 8 16 12 17 13 18 14 19 14 20 13 21 12 9 15 8 16 22 17 23 18 22 17 8 16 10 16 24 17 25 18 24 17 10 16 11 15 26 19 17 20 16 21 21 21 20 20 27 19 28 22 12 23 29 24 13 25 29 24 12 23 15 23 30 24 14 25 30 24 15 23 31 22 18 26 17 27 32 28 33 28 20 27 19 26 22 29 23 30 34 31 35 32 34 31 23 30 25 30 36 31 37 32 36 31 25 30 24 29 38 33 17 34 26 35 27 35 20 34 39 33 40 36 28 37 41 38 29 39 41 38 28 37 31 37 42 38 30 39 42 38 31 37 43 36 32 40 17 41 44 42 45 42 20 41 33 40 34 43 35 44 46 45 47 46 46 45 35 44 37 44 48 45 49 46 48 45 37 44 36 43 38 47 50 48 17 49 20 49 51 48 39 47 40 50 41 51 52 52 53 53 52 52 41 51 42 51 54 52 55 53 54 52 42 51 43 50 44 54 17 55 56 56 57 56 20 55 45 54 46 57 47 58 58 59 59 60 58 59 47 58 49 58 60 59 61 60 60 59 49 58 48 57 50 61 62 62 17 63 20 63 63 62 51 61 52 64 53 65 64 66 65 67 64 66 53 65 55 65 66 66 67 67 66 66 55 65 54 64 17 68 68 69 56 70 57 70 69 69 20 68 58 71 59 72 70 73 71 74 70 73 59 72 61 72 72 73 73 74 72 73 61 72 60 71 62 75 74 76 17 77 20 77 75 76 63 75 64 78 65 79 76 80 77 81 76 80 65 79 67 79 78 80 79 81 78 80 67 79 66 78 17 82 80 83 68 84 69 84 81 83 20 82 70 85 71 86 82 87 83 88 82 87 71 86 73 86 84 87 85 88 84 87 73 86 72 85 74 89 86 90 17 91 20 91 87 90 75 89 76 92 77 93 88 94 89 95 88 94 77 93 79 93 90 94 91 95 90 94 79 93 78 92 17 96 92 97 80 98 81 98 93 97 20 96 94 99 82 100 95 101 83 102 95 101 82 100 84 100 96 101 85 102 96 101 84 100 97 99 86 103 98 104 17 105 20 105 99 104 87 103 88 106 89 107 100 108 101 109 100 108 89 107 91 107 102 108 103 109 102 108 91 107 90 106 17 110 104 111 92 112 93 112 105 111 20 110 106 113 94 114 107 115 95 116 107 115 94 114 97 114 108 115 96 116 108 115 97 114 109 113 98 117 110 118 17 119 20 119 111 118 99 117 101 120 112 121 100 122 113 123 100 122 112 121 114 121 102 122 115 123 102 122 114 121 103 120 17 124 116 125 104 126 105 126 117 125 20 124 118 127 106 128 119 129 107 130 119 129 106 128 109 128 120 129 108 130 120 129 109 128 121 127 110 131 122 132 17 133 20 133 123 132 111 131 112 134 118 135 113 136 119 137 113 136 118 135 121 135 115 136 120 137 115 136 121 135 114 134 17 138 124 139 116 140 117 140 125 139 20 138 122 141 126 142 17 143 20 143 127 142 123 141 126 144 124 145 17 146 20 146 125 145 127 144</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID792\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID793\">\r\n\t\t\t\t\t<float_array count=\"3000\" id=\"ID797\">-0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 -0.3788313495221017 0.7391863847872159 -0.7918046221566382 -0.3788313495221017 0.7391863847872159</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1000\" source=\"#ID797\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID794\">\r\n\t\t\t\t\t<float_array count=\"3000\" id=\"ID798\">-0.6100330350797705 -0.432978057042589 -0.6636186391527805 -0.6107430305208749 -0.4313432930897734 -0.6640300551757034 -0.6131685433316286 -0.6352305123706656 -0.4695812321865837 0.6131685433316286 0.6352305123706656 0.4695812321865837 0.6107430305208749 0.4313432930897734 0.6640300551757034 0.6100330350797705 0.432978057042589 0.6636186391527805 -0.6414932949073833 -0.1910191354735049 -0.7429657074669219 0.6414932949073833 0.1910191354735049 0.7429657074669219 -0.9230582056960787 0.2076733531501404 0.3237828397066665 -0.9087638176408079 0.2443143590689556 0.3383176284198477 -0.9119812894775979 0.2460334925802348 0.3282646008505167 0.9119812894775979 -0.2460334925802348 -0.3282646008505167 0.9087638176408079 -0.2443143590689556 -0.3383176284198477 0.9230582056960787 -0.2076733531501404 -0.3237828397066665 -0.5814085771430504 -0.6235265193762986 -0.5226650419331412 0.5814085771430504 0.6235265193762986 0.5226650419331412 -0.6219866060717065 -0.2255011033331463 -0.7498545954136263 0.6219866060717065 0.2255011033331463 0.7498545954136263 -0.9210274254689069 0.188359605763954 0.3409239511248287 -0.9234677517021199 0.1707487320338378 0.3435872262978766 0.9234677517021199 -0.1707487320338378 -0.3435872262978766 0.9210274254689069 -0.188359605763954 -0.3409239511248287 -0.9243339167159471 0.2082873548390461 0.319723612238305 0.9243339167159471 -0.2082873548390461 -0.319723612238305 -0.9018502407217643 0.249016537502691 0.3530678509299122 0.9018502407217643 -0.249016537502691 -0.3530678509299122 -0.4688809399671691 -0.7410968956416455 -0.4805476619502169 0.4688809399671691 0.7410968956416455 0.4805476619502169 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.5313074129219958 -0.1516791908637951 -0.8334901655286883 0.5313074129219958 0.1516791908637951 0.8334901655286883 -0.9193974272347317 0.1904939904256795 0.3441226676722378 0.9193974272347317 -0.1904939904256795 -0.3441226676722378 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 -0.9064264101263384 0.2873078457702411 0.3095890256200023 0.9064264101263384 -0.2873078457702411 -0.3095890256200023 -0.4125080872329844 -0.7444765374883888 -0.5249683448520343 0.4125080872329844 0.7444765374883888 0.5249683448520343 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 -0.4893414839082547 -0.1788419456180993 -0.8535575379633175 0.4893414839082547 0.1788419456180993 0.8535575379633175 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 -0.8847877951732008 0.3876305483478212 0.2586370342779885 0.8847877951732008 -0.3876305483478212 -0.2586370342779885 0.05401064972997639 0.5993988161129192 -0.7986262636291001 0.04971157032437513 0.7278710826830646 -0.683909677347578 0.04569831620770311 0.6180154536524877 -0.7848366472983348 -0.04569831620770311 -0.6180154536524877 0.7848366472983348 -0.04971157032437513 -0.7278710826830646 0.683909677347578 -0.05401064972997639 -0.5993988161129192 0.7986262636291001 -0.9126387109060857 0.2012446850352883 0.3557965150204898 0.9126387109060857 -0.2012446850352883 -0.3557965150204898 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 -0.5884703132773211 -0.5886073228299992 0.554296048968593 -0.5750104179820392 -0.5638465179981029 0.5928238552500531 -0.5954974211095998 -0.6204561645494262 0.5103106596225786 0.5954974211095998 0.6204561645494262 -0.5103106596225786 0.5750104179820392 0.5638465179981029 -0.5928238552500531 0.5884703132773211 0.5886073228299992 -0.554296048968593 -0.4492936185982592 0.5610742779696141 -0.6952200363106335 -0.4368753109454024 0.552964815618193 -0.7094856414154525 -0.4435911602170827 0.5573645162302835 -0.7018345094284296 0.4435911602170827 -0.5573645162302835 0.7018345094284296 0.4368753109454024 -0.552964815618193 0.7094856414154525 0.4492936185982592 -0.5610742779696141 0.6952200363106335 0.0331249413609678 -0.9196095857015579 0.391434474906901 0.007288799048047151 -0.9575732679774761 0.2880977435929935 0.02921517395714277 -0.972018298904142 0.2330813167247683 -0.02921517395714277 0.972018298904142 -0.2330813167247683 -0.007288799048047151 0.9575732679774761 -0.2880977435929935 -0.0331249413609678 0.9196095857015579 -0.391434474906901 -0.9092595095315058 0.2346197211408815 0.3438033315404329 0.9092595095315058 -0.2346197211408815 -0.3438033315404329 0.0278811390736898 -0.1294666985918035 -0.9911917150782147 0.02557206782593211 -0.2876548247142446 -0.9573926943348394 0.02784385059247752 0.01284876764323613 -0.9995297039879475 -0.02784385059247752 -0.01284876764323613 0.9995297039879475 -0.02557206782593211 0.2876548247142446 0.9573926943348394 -0.0278811390736898 0.1294666985918035 0.9911917150782147 0.009825431372019862 -0.4178389509239254 -0.9084679807176186 0.0271922736872749 -0.5474159088744459 -0.8364187963950122 -0.0271922736872749 0.5474159088744459 0.8364187963950122 -0.009825431372019862 0.4178389509239254 0.9084679807176186 0.03669397673521557 0.6999623410633172 -0.7132364777298733 -0.03669397673521557 -0.6999623410633172 0.7132364777298733 -0.9111139540391022 0.1995854796515729 0.3606064323711994 0.9111139540391022 -0.1995854796515729 -0.3606064323711994 -0.6085378327787385 -0.4363385207717332 0.6627898621491521 0.6085378327787385 0.4363385207717332 -0.6627898621491521 -0.4290146282623736 0.5477739795014404 -0.7182549102637957 0.4290146282623736 -0.5477739795014404 0.7182549102637957 0.0355140718306879 -0.9496263193448361 0.3113657083071032 -0.0355140718306879 0.9496263193448361 -0.3113657083071032 0.02675587691421818 -0.5599249416657842 -0.8281112139991341 0.02589537248138592 -0.5533675459134304 -0.8325345571288905 0.02066161520126121 -0.7708648855079502 -0.6366635107716556 0.0193163073801767 -0.6584185702951814 -0.7524040580430462 -0.02589537248138592 0.5533675459134304 0.8325345571288905 -0.02066161520126121 0.7708648855079502 0.6366635107716556 -0.0193163073801767 0.6584185702951814 0.7524040580430462 -0.02675587691421818 0.5599249416657842 0.8281112139991341 0.01414311661247775 -0.8602383968027927 -0.5096958631563011 0.019948224836587 -0.9244137174900406 -0.380869199650106 -0.019948224836587 0.9244137174900406 0.380869199650106 -0.01414311661247775 0.8602383968027927 0.5096958631563011 -0.5897023076858039 0.8014515282654252 -0.09963250549419947 -0.4189594113912097 0.8690844326029823 -0.2629928908048341 -0.3869225765070412 0.8727213960493712 -0.2977386180306301 0.3869225765070412 -0.8727213960493712 0.2977386180306301 0.4189594113912097 -0.8690844326029823 0.2629928908048341 0.5897023076858039 -0.8014515282654252 0.09963250549419947 -0.9099990926414894 0.2258504072914317 0.3476970591160654 0.9099990926414894 -0.2258504072914317 -0.3476970591160654 0.03481463620808104 0.01941661477622277 -0.9992051521966502 -0.03481463620808104 -0.01941661477622277 0.9992051521966502 0.02635295136991371 0.002234022109095546 -0.9996502043711644 -0.02635295136991371 -0.002234022109095546 0.9996502043711644 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.03784136067587975 0.8144840404498097 -0.578950584484333 0.03784136067587975 -0.8144840404498097 0.578950584484333 -0.9173890060384352 0.2293469628645768 0.3252650953062846 0.9173890060384352 -0.2293469628645768 -0.3252650953062846 -0.6122597140083652 -0.4503628205385982 0.6498548857082733 0.6122597140083652 0.4503628205385982 -0.6498548857082733 -0.03958647210302838 -0.8552382005688831 0.5167209416252983 0.03958647210302838 0.8552382005688831 -0.5167209416252983 0.03026716317725075 -0.2976749896778023 -0.9541873502376365 -0.03026716317725075 0.2976749896778023 0.9541873502376365 0.02910907021181551 -0.7855610775535136 -0.6180990660600988 -0.02910907021181551 0.7855610775535136 0.6180990660600988 0.01961372260044477 -0.9291073014986491 -0.3692897564076902 -0.01961372260044477 0.9291073014986491 0.3692897564076902 -0.5991542260006512 0.7982237271597008 -0.06207330235162312 0.5991542260006512 -0.7982237271597008 0.06207330235162312 -0.9157317949075062 0.1970830215706734 0.3501336350653144 0.9157317949075062 -0.1970830215706734 -0.3501336350653144 0.0299077864524713 0.3064717907049849 -0.9514097780723052 -0.0299077864524713 -0.3064717907049849 0.9514097780723052 0.02136018720689605 0.2992869541934073 -0.9539240333758867 -0.02136018720689605 -0.2992869541934073 0.9539240333758867 -0.006913157180589681 0.1302289306279806 0.9914598498604414 -0.007408558792217734 0.4165322447531742 0.909090755831069 -0.005482260976492941 0.139386230751211 0.9902229160605989 0.005482260976492941 -0.139386230751211 -0.9902229160605989 0.007408558792217734 -0.4165322447531742 -0.909090755831069 0.006913157180589681 -0.1302289306279806 -0.9914598498604414 -0.003802609351618076 0.6663786935817081 0.7456037666900933 -0.003797720091156379 0.4255976902132539 0.9049045161823717 0.003797720091156379 -0.4255976902132539 -0.9049045161823717 0.003802609351618076 -0.6663786935817081 -0.7456037666900933 0.001295306138674836 0.8564789233090522 0.5161803716816183 -0.0008944920513999811 0.6733396999513402 0.7393327047773614 0.0008944920513999811 -0.6733396999513402 -0.7393327047773614 -0.001295306138674836 -0.8564789233090522 -0.5161803716816183 0.006332432417781015 0.9251165065025596 0.3796305436818457 0.002908326967066847 0.8606855222858298 0.5091286412703778 -0.002908326967066847 -0.8606855222858298 -0.5091286412703778 -0.006332432417781015 -0.9251165065025596 -0.3796305436818457 0.01231533713361633 0.9984524360191881 -0.05423159114975583 0.007293336385795456 0.9730925818604524 0.2302990107936251 -0.001404844418161865 0.99551776389769 0.09456430709471765 0.001404844418161865 -0.99551776389769 -0.09456430709471765 -0.007293336385795456 -0.9730925818604524 -0.2302990107936251 -0.01231533713361633 -0.9984524360191881 0.05423159114975583 0.01023761722016337 0.980868485680595 -0.1944021733219808 0.0120157990965055 0.998198666219562 -0.05877961661630734 -0.0120157990965055 -0.998198666219562 0.05877961661630734 -0.01023761722016337 -0.980868485680595 0.1944021733219808 0.01414019568378701 0.8726596648110707 -0.4881241279406847 0.02512467636456076 0.7906507610061087 -0.611751685537553 0.01646393589398393 0.9369218021430217 -0.3491510783084469 -0.01646393589398393 -0.9369218021430217 0.3491510783084469 -0.02512467636456076 -0.7906507610061087 0.611751685537553 -0.01414019568378701 -0.8726596648110707 0.4881241279406847 0.03469207648931452 0.5770147196282489 -0.8159966134495859 0.02402975912977263 0.7849144902682695 -0.6191379601050702 -0.02402975912977263 -0.7849144902682695 0.6191379601050702 -0.03469207648931452 -0.5770147196282489 0.8159966134495859 0.03508365640598449 0.3143465129616109 -0.9486597951015225 0.02921019489462125 0.5707659558659806 -0.8205930709789181 -0.02921019489462125 -0.5707659558659806 0.8205930709789181 -0.03508365640598449 -0.3143465129616109 0.9486597951015225 0.01492656118699344 -0.9952036424557336 -0.09667940739356572 -0.01492656118699344 0.9952036424557336 0.09667940739356572 0.01346271275209136 -0.9964377721902609 -0.08324975386068219 0.008347472633542526 -0.9795541238063974 0.2010075576552121 -0.008347472633542526 0.9795541238063974 -0.2010075576552121 -0.01346271275209136 0.9964377721902609 0.08324975386068219 0.008249685662450967 -0.976765905206645 0.2141502022233793 0.002143504963585591 -0.8767179422043012 0.4810000573841198 -0.002143504963585591 0.8767179422043012 -0.4810000573841198 -0.008249685662450967 0.976765905206645 -0.2141502022233793 0.003370248980950642 -0.8703013678452798 0.4925080411002865 0.002686763416736887 -0.7899672717419514 0.6131431243020837 -0.002686763416736887 0.7899672717419514 -0.6131431243020837 -0.003370248980950642 0.8703013678452798 -0.4925080411002865 -0.009335567978409306 -0.5787453233274817 0.8154549024299805 -0.006791809893397876 -0.4554923169053546 0.890213806092988 -0.0007244517714074711 -0.686530526938509 0.7271006194132722 0.0007244517714074711 0.686530526938509 -0.7271006194132722 0.006791809893397876 0.4554923169053546 -0.890213806092988 0.009335567978409306 0.5787453233274817 -0.8154549024299805 -0.9869176053607741 0.09681709921543918 -0.1289189261841074 -0.9999899824504387 -0.00260493943261591 0.003639957324477385 -0.9824989449431362 0.08503230673662772 -0.1657266725565704 0.9824989449431362 -0.08503230673662772 0.1657266725565704 0.9999899824504387 0.00260493943261591 -0.003639957324477385 0.9869176053607741 -0.09681709921543918 0.1289189261841074 -0.007381002033179414 -0.3156791974855449 0.9488372700752583 -0.003997307821499382 -0.4458837485294091 0.8950819539726755 0.003997307821499382 0.4458837485294091 -0.8950819539726755 0.007381002033179414 0.3156791974855449 -0.9488372700752583 -0.9841485037669431 0.06359518961047951 -0.1655517272386327 -0.9999905288897614 -0.001370765720624478 0.004130754424404623 0.9999905288897614 0.001370765720624478 -0.004130754424404623 0.9841485037669431 -0.06359518961047951 0.1655517272386327 -0.002427302614937988 -0.01243128957560056 0.9999197824033201 -0.004057949462573538 -0.1654053068756676 0.9862173277242321 0.004057949462573538 0.1654053068756676 -0.9862173277242321 0.002427302614937988 0.01243128957560056 -0.9999197824033201 -0.05001318370946404 0.8414267630942929 -0.5380517482583845 0.05001318370946404 -0.8414267630942929 0.5380517482583845 -0.9187981593551595 0.2316284903157012 0.3196219404853802 0.9187981593551595 -0.2316284903157012 -0.3196219404853802 -0.5116852732955495 -0.4542311857591191 0.7292819831699693 0.5116852732955495 0.4542311857591191 -0.7292819831699693 -0.05172784220055365 -0.8363317719908131 0.5457777913216892 0.05172784220055365 0.8363317719908131 -0.5457777913216892 -0.5143076157204272 0.8449925937235406 -0.1465441672818575 0.5143076157204272 -0.8449925937235406 0.1465441672818575 -0.9157810847001926 0.1934753844391117 0.3520117619078609 0.9157810847001926 -0.1934753844391117 -0.3520117619078609 0.03592728837289261 0.3424796949339312 0.9388380523328466 0.04335475963781485 0.2054908490064289 0.9776982539574081 0.03964917043178988 0.3525170978793918 0.9349650469331792 -0.03964917043178988 -0.3525170978793918 -0.9349650469331792 -0.04335475963781485 -0.2054908490064289 -0.9776982539574081 -0.03592728837289261 -0.3424796949339312 -0.9388380523328466 0.01644376297839757 0.9974451863900713 -0.06951764384949995 -0.01644376297839757 -0.9974451863900713 0.06951764384949995 0.03793714202236574 0.1449358727658069 -0.9887134903705868 0.02135092118153528 0.2802821764875909 -0.9596801757398549 0.03346756875724736 0.3104113722911479 -0.9500130008551491 -0.03346756875724736 -0.3104113722911479 0.9500130008551491 -0.02135092118153528 -0.2802821764875909 0.9596801757398549 -0.03793714202236574 -0.1449358727658069 0.9887134903705868 0.04357592730064158 -0.986621286913195 -0.1570973417013809 0.04731999989724039 -0.988143031769225 -0.1460622003656307 0.04741565844858901 -0.9527313725054269 -0.3000911314547839 -0.04741565844858901 0.9527313725054269 0.3000911314547839 -0.04731999989724039 0.988143031769225 0.1460622003656307 -0.04357592730064158 0.986621286913195 0.1570973417013809 -0.9612697098559012 0.1241480665562238 -0.2460646307048266 0.9612697098559012 -0.1241480665562238 0.2460646307048266 0.002788247194464847 0.7096494163407977 0.7045494528879771 0.02684474802398928 0.6624818840923926 0.7485967624515366 0.03145112195807651 0.7894354586032027 0.613027310670193 -0.03145112195807651 -0.7894354586032027 -0.613027310670193 -0.02684474802398928 -0.6624818840923926 -0.7485967624515366 -0.002788247194464847 -0.7096494163407977 -0.7045494528879771 -0.06757829711111801 0.7710133873258493 -0.6332231283867335 0.06757829711111801 -0.7710133873258493 0.6332231283867335 -0.9294521394256079 0.253452618746215 0.268105372135372 0.9294521394256079 -0.253452618746215 -0.268105372135372 -0.5121653214427434 -0.4705831108144322 0.7184971950729265 0.5121653214427434 0.4705831108144322 -0.7184971950729265 -0.06755689289069129 -0.8758167307604269 0.4778923731794361 0.06755689289069129 0.8758167307604269 -0.4778923731794361 0.01533915038481843 -0.931302781136795 -0.363922849395779 -0.01533915038481843 0.931302781136795 0.363922849395779 -0.5141693164024285 0.8420130928550114 -0.1632294873207583 0.5141693164024285 -0.8420130928550114 0.1632294873207583 -0.9325766854234757 0.1309140125917365 0.3363959677399454 0.9325766854234757 -0.1309140125917365 -0.3363959677399454 0.001200659249239651 -0.1460802454730157 0.9892720153223333 -0.001200659249239651 0.1460802454730157 -0.9892720153223333 -0.002061751646003162 0.149208950471754 0.9888035387675693 0.002061751646003162 -0.149208950471754 -0.9888035387675693 -0.0009318520237067135 0.433722340755988 0.9010460935939696 0.0009318520237067135 -0.433722340755988 -0.9010460935939696 0.001230385039251648 0.6798257005461618 0.7333726904034371 -0.001230385039251648 -0.6798257005461618 -0.7333726904034371 0.004958609525564488 0.865332610935552 0.5011735075231268 -0.004958609525564488 -0.865332610935552 -0.5011735075231268 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.03665747372773916 0.2635154343631972 0.9639584251783245 -0.03665747372773916 -0.2635154343631972 -0.9639584251783245 0.009900852030461732 0.9748308572254344 0.2227257796713161 -0.009900852030461732 -0.9748308572254344 -0.2227257796713161 0.02459906767420807 0.9291593642459279 -0.3688600841832339 -0.02459906767420807 -0.9291593642459279 0.3688600841832339 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.03526949973342622 0.2184273294063683 -0.9752156500779486 -0.03526949973342622 -0.2184273294063683 0.9752156500779486 0.01810657254151843 0.7819003011516978 -0.6231404906517333 -0.01810657254151843 -0.7819003011516978 0.6231404906517333 0.01159606897749572 -0.9972521189634576 -0.07316927228805119 -0.01159606897749572 0.9972521189634576 0.07316927228805119 0.007746355397098426 -0.9745611152693888 0.2239880054443695 -0.007746355397098426 0.9745611152693888 -0.2239880054443695 0.004188632105367766 -0.8653193803481177 0.5012033772382579 -0.004188632105367766 0.8653193803481177 -0.5012033772382579 0.03694298968752306 -0.9660546355743256 -0.2556827264370916 -0.03694298968752306 0.9660546355743256 0.2556827264370916 0.001214459778276763 -0.6793050578937298 0.7338550016232387 -0.001214459778276763 0.6793050578937298 -0.7338550016232387 -0.9165260464188996 0.2413126785897623 -0.3189799325781723 0.9165260464188996 -0.2413126785897623 0.3189799325781723 0.001434244776386382 -0.4349910787918278 0.9004336201594448 -0.001434244776386382 0.4349910787918278 -0.9004336201594448 0.03479758506284582 0.7257101728783496 0.6871199844675382 -0.03479758506284582 -0.7257101728783496 -0.6871199844675382 -0.9053555865328123 0.1174765612269161 -0.4080815108481708 0.9053555865328123 -0.1174765612269161 0.4080815108481708 -0.06837815441249286 0.7838010835826982 -0.61723600783957 0.06837815441249286 -0.7838010835826982 0.61723600783957 -0.925181050407382 0.2544784030417004 0.2815684043930342 0.925181050407382 -0.2544784030417004 -0.2815684043930342 -0.5094027305261349 -0.4031696580921826 0.7602388341346096 0.5094027305261349 0.4031696580921826 -0.7602388341346096 -0.06822779517691434 -0.8673864003091556 0.4929358990010996 0.06822779517691434 0.8673864003091556 -0.4929358990010996 -0.5108147009650829 0.8560080643809171 -0.07948921305931028 0.5108147009650829 -0.8560080643809171 0.07948921305931028 -0.9295497348399154 0.141402496183842 0.3405034868133092 0.9295497348399154 -0.141402496183842 -0.3405034868133092 0.01921047962226295 0.5651345907762262 -0.8247750310120148 -0.01921047962226295 -0.5651345907762262 0.8247750310120148 -0.9072210144294771 -0.4193680273961145 0.03287078604844312 -0.9243377794016469 -0.3811886557337647 0.0171720211599593 -0.924489198402029 -0.3808644361577947 0.0161865162458993 0.924489198402029 0.3808644361577947 -0.0161865162458993 0.9243377794016469 0.3811886557337647 -0.0171720211599593 0.9072210144294771 0.4193680273961145 -0.03287078604844312 -0.03780903634253117 0.08541542107879442 0.9956277831663706 0.03780903634253117 -0.08541542107879442 -0.9956277831663706 -0.915264571564772 -0.4027493562430763 -0.009149867984932962 0.915264571564772 0.4027493562430763 0.009149867984932962 -0.03805664037554967 -0.009784856047856541 -0.9992276761156334 0.03805664037554967 0.009784856047856541 0.9992276761156334 -0.03988346302587386 -0.9059913707647226 -0.4214130342988013 0.03988346302587386 0.9059913707647226 0.4214130342988013 -0.8756294668438924 0.3525945089564383 -0.3300759746610601 0.8756294668438924 -0.3525945089564383 0.3300759746610601 -0.706699211393621 -0.332866770111896 0.6243203808709985 -0.6992610303780938 -0.1874041802288657 0.6898649756490857 -0.7066995161370085 -0.3328394342728472 0.6243346097123314 0.7066995161370085 0.3328394342728472 -0.6243346097123314 0.6992610303780938 0.1874041802288657 -0.6898649756490857 0.706699211393621 0.332866770111896 -0.6243203808709985 -0.038009535614359 0.8723927326412684 0.4873255536467188 0.038009535614359 -0.8723927326412684 -0.4873255536467188 -0.6961182166882092 -0.4697752474880487 0.5428910067797866 0.6961182166882092 0.4697752474880487 -0.5428910067797866 -0.8876323827149847 0.1162542163379045 -0.4456385422507556 0.8876323827149847 -0.1162542163379045 0.4456385422507556 -0.06016248758640132 0.7467500003972328 -0.6623782242753371 0.06016248758640132 -0.7467500003972328 0.6623782242753371 -0.9245527864503199 0.237309528475381 0.298138110213608 0.9245527864503199 -0.237309528475381 -0.298138110213608 -0.5139497895077154 -0.4058857625891543 0.755719763928664 0.5139497895077154 0.4058857625891543 -0.755719763928664 -0.0600348953330893 -0.8956050067033663 0.4407805387153662 0.0600348953330893 0.8956050067033663 -0.4407805387153662 -0.515859789786745 0.8519771407680433 -0.08957471121854281 0.515859789786745 -0.8519771407680433 0.08957471121854281 -0.9272834517509151 0.1632925520749501 0.3368693256230941 0.9272834517509151 -0.1632925520749501 -0.3368693256230941 -0.9059645702483528 -0.4228100787491342 0.02144375813304393 0.9059645702483528 0.4228100787491342 -0.02144375813304393 -0.04998584997638523 0.03649578989508206 0.9980828984218056 0.04998584997638523 -0.03649578989508206 -0.9980828984218056 -0.9111165739877291 -0.4120009636975097 -0.01103605532726058 -0.9026800271055669 -0.4300978238059344 -0.01358788512213859 -0.9126672826667309 -0.4084995448882047 -0.01290554050999234 0.9126672826667309 0.4084995448882047 0.01290554050999234 0.9026800271055669 0.4300978238059344 0.01358788512213859 0.9111165739877291 0.4120009636975097 0.01103605532726058 -0.9164192555908047 -0.4001603245189633 -0.006889315152686308 0.9164192555908047 0.4001603245189633 0.006889315152686308 -0.9098768749122155 -0.4144813710644892 0.01814567553114639 -0.9100128209423325 -0.4141053938628353 0.01983402365341829 0.9100128209423325 0.4141053938628353 -0.01983402365341829 0.9098768749122155 0.4144813710644892 -0.01814567553114639 -0.05007447950133898 -0.04460336033844332 -0.9977490098963712 0.05007447950133898 0.04460336033844332 0.9977490098963712 -0.05223146845994098 -0.8838556721519534 -0.4648344054685892 0.05223146845994098 0.8838556721519534 0.4648344054685892 -0.9150871129800877 0.09156365276906278 -0.3927234054004866 -0.9134603460440244 0.100090271838512 -0.3944263349326765 -0.9055099122664467 0.08478975686936037 -0.415767357926577 0.9055099122664467 -0.08478975686936037 0.415767357926577 0.9134603460440244 -0.100090271838512 0.3944263349326765 0.9150871129800877 -0.09156365276906278 0.3927234054004866 -0.8628976978143381 0.3867850561445824 -0.3252766260430459 0.8628976978143381 -0.3867850561445824 0.3252766260430459 -0.9156800465471477 0.12306795282666 0.3826020535000676 -0.8250636447121634 0.1563131469686213 0.542988197163665 -0.9158353220314106 0.1680129671192036 0.3647153764230731 0.9158353220314106 -0.1680129671192036 -0.3647153764230731 0.8250636447121634 -0.1563131469686213 -0.542988197163665 0.9156800465471477 -0.12306795282666 -0.3826020535000676 -0.9301712002434255 0.04356903436083521 0.3645315863989973 0.9301712002434255 -0.04356903436083521 -0.3645315863989973 -0.9098752187950685 0.1899053550703858 -0.3688672421593123 -0.9102915714758219 0.1919571037046917 -0.3667720344265427 0.9102915714758219 -0.1919571037046917 0.3667720344265427 0.9098752187950685 -0.1899053550703858 0.3688672421593123 -0.05002206568014039 0.8883803733443121 0.4563749611905901 0.05002206568014039 -0.8883803733443121 -0.4563749611905901 -0.9152454586525087 -0.3912460761204535 0.09618866012325544 -0.9335057704990215 -0.3295072998576136 0.1413927713342278 -0.9161764556186254 -0.3981519670093227 0.04577896172588378 0.9161764556186254 0.3981519670093227 -0.04577896172588378 0.9335057704990215 0.3295072998576136 -0.1413927713342278 0.9152454586525087 0.3912460761204535 -0.09618866012325544 -0.8008752262028298 -0.5581038891156944 0.2170689314676397 0.8008752262028298 0.5581038891156944 -0.2170689314676397 -0.9078252336262972 0.2546053228708254 -0.3332108563015343 0.9078252336262972 -0.2546053228708254 0.3332108563015343 -0.06214391660331564 0.7497897154320584 -0.6587514829292707 0.06214391660331564 -0.7497897154320584 0.6587514829292707 -0.9105068842497451 0.232294596580093 0.3420766495005371 0.9105068842497451 -0.232294596580093 -0.3420766495005371 -0.5636529765645513 -0.1834260551652416 0.805388232032502 0.5636529765645513 0.1834260551652416 -0.805388232032502 -0.06204321152616367 -0.8915755561120776 0.4486019033028719 0.06204321152616367 0.8915755561120776 -0.4486019033028719 -0.563551722335448 0.8122020272639635 0.1507890021223632 0.563551722335448 -0.8122020272639635 -0.1507890021223632 -0.9128754411958339 0.2045282989941302 0.3533080861968483 0.9128754411958339 -0.2045282989941302 -0.3533080861968483 -0.8841694971092278 -0.4670196417475235 0.01170276051322128 0.8841694971092278 0.4670196417475235 -0.01170276051322128 -0.6099115313195107 0.7918454994605457 -0.03144247044315008 -0.6271806346804609 0.7782902294104336 -0.0301458170575845 -0.7948062792220184 0.5103440598305962 -0.328377707990168 0.7948062792220184 -0.5103440598305962 0.328377707990168 0.6271806346804609 -0.7782902294104336 0.0301458170575845 0.6099115313195107 -0.7918454994605457 0.03144247044315008 -0.06757420297446912 0.1542219217613901 0.9857227429356539 0.06757420297446912 -0.1542219217613901 -0.9857227429356539 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 -0.9173919056680412 -0.396652180679767 0.03254441544636197 0.9173919056680412 0.396652180679767 -0.03254441544636197 -0.7044687220678403 0.6666170076972114 0.2436094921732724 0.7044687220678403 -0.6666170076972114 -0.2436094921732724 -0.9056948139282527 -0.4239285587280207 -0.001217012017516861 0.9056948139282527 0.4239285587280207 0.001217012017516861 -0.9062955794800263 -0.4218840716820903 0.02534073155818777 0.9062955794800263 0.4218840716820903 -0.02534073155818777 -0.9178702577263617 -0.3968043330700363 -0.007778896977463935 0.9178702577263617 0.3968043330700363 0.007778896977463935 -0.0673402010633347 0.03284261300743482 -0.9971893802541189 0.0673402010633347 -0.03284261300743482 0.9971893802541189 -0.06783519718058229 -0.9323282921296917 -0.3551933863657993 0.06783519718058229 0.9323282921296917 0.3551933863657993 -0.9036091026635394 0.0556782963512844 -0.424724047940556 0.9036091026635394 -0.0556782963512844 0.424724047940556 -0.9151772240300315 0.1669447966678817 -0.3668515823629565 0.9151772240300315 -0.1669447966678817 0.3668515823629565 -0.6447186628852124 0.6879675290323077 0.3332244359657386 -0.6297975146368566 0.6855810967237255 0.3651488057933807 -0.5462375627474104 0.7832296524327782 0.2969441641012638 0.5462375627474104 -0.7832296524327782 -0.2969441641012638 0.6297975146368566 -0.6855810967237255 -0.3651488057933807 0.6447186628852124 -0.6879675290323077 -0.3332244359657386 -0.8004665242590809 0.1327927671656561 0.584482184954404 0.8004665242590809 -0.1327927671656561 -0.584482184954404 -0.9178727869669794 0.2036829255299642 -0.3406212160054408 0.9178727869669794 -0.2036829255299642 0.3406212160054408 -0.06731641938335971 0.8494783472765206 0.5233116062058579 0.06731641938335971 -0.8494783472765206 -0.5233116062058579 -0.7668641844162472 -0.5810340615428355 0.2726146400812705 0.7668641844162472 0.5810340615428355 -0.2726146400812705 -0.6476791120465277 -0.7033306111846984 -0.2929809194967823 -0.6450470615181747 -0.7070854542103706 -0.2897316842716416 -0.6233448385994473 -0.603445758421776 -0.4972870688387107 0.6233448385994473 0.603445758421776 0.4972870688387107 0.6450470615181747 0.7070854542103706 0.2897316842716416 0.6476791120465277 0.7033306111846984 0.2929809194967823 -0.0732053161087646 0.6786547872505393 -0.7308000146656684 0.0732053161087646 -0.6786547872505393 0.7308000146656684 -0.9271360714165975 0.212632426034943 0.3085549488773313 0.9271360714165975 -0.212632426034943 -0.3085549488773313 -0.5682440159721127 -0.2499810897182357 0.7839695103096603 0.5682440159721127 0.2499810897182357 -0.7839695103096603 -0.07326583168045271 -0.9382150080750226 0.3382080964893607 0.07326583168045271 0.9382150080750226 -0.3382080964893607 -0.5680807927105938 0.8189688158964524 0.08108200504714996 0.5680807927105938 -0.8189688158964524 -0.08108200504714996 -0.927548465775947 0.18590322006679 0.3241817953023973 0.927548465775947 -0.18590322006679 -0.3241817953023973 -0.8928491632893021 -0.4470013707692716 0.05486479876920774 0.8928491632893021 0.4470013707692716 -0.05486479876920774 -0.7930586724642184 0.5380222435700273 -0.2856396461508205 -0.6779678389035451 0.5914850813119577 -0.4364687938419465 0.6779678389035451 -0.5914850813119577 0.4364687938419465 0.7930586724642184 -0.5380222435700273 0.2856396461508205 -0.06837946245005622 0.133948004867257 0.9886264112935294 0.06837946245005622 -0.133948004867257 -0.9886264112935294 -0.9187989142657232 -0.3929531117095517 0.0373685314390171 0.9187989142657232 0.3929531117095517 -0.0373685314390171 -0.6084903667744845 -0.3361198159561551 -0.7188622558350478 -0.5626671069308074 -0.09424735772971241 -0.8212935908303943 -0.5792112105076253 -0.03535317024093707 -0.8144105395782932 0.5792112105076253 0.03535317024093707 0.8144105395782932 0.5626671069308074 0.09424735772971241 0.8212935908303943 0.6084903667744845 0.3361198159561551 0.7188622558350478 -0.5114901394861176 -0.3977120680449375 -0.7617105409142576 -0.6142586567780607 -0.3121905317741047 -0.7247229639274684 0.6142586567780607 0.3121905317741047 0.7247229639274684 0.5114901394861176 0.3977120680449375 0.7617105409142576 -0.7165913554401721 0.6650103775153866 0.2103759185488212 0.7165913554401721 -0.6650103775153866 -0.2103759185488212 -0.764937702624227 0.5192485317920021 0.3811184505318785 0.764937702624227 -0.5192485317920021 -0.3811184505318785 -0.5174518251755897 -0.2411286674177418 0.8210362807889765 -0.6030031272843839 -0.3014611009609044 0.7385854270784746 -0.5301106299440702 -0.2511652486673166 0.809875754595843 0.5301106299440702 0.2511652486673166 -0.809875754595843 0.6030031272843839 0.3014611009609044 -0.7385854270784746 0.5174518251755897 0.2411286674177418 -0.8210362807889765 -0.5145052688849753 -0.2999231163421164 0.803324624652595 -0.6060304150691775 -0.3080632070317224 0.7333649817685672 0.6060304150691775 0.3080632070317224 -0.7333649817685672 0.5145052688849753 0.2999231163421164 -0.803324624652595 -0.9180481665079123 -0.3962927934772661 -0.01181464385606148 0.9180481665079123 0.3962927934772661 0.01181464385606148 -0.06822609440622343 0.01557927206212744 -0.9975482375925926 0.06822609440622343 -0.01557927206212744 0.9975482375925926 -0.06836592527621122 -0.9248117108838933 -0.374231745945121 0.06836592527621122 0.9248117108838933 0.374231745945121 -0.9159377876348976 0.1653334364994017 -0.3656813147506822 0.9159377876348976 -0.1653334364994017 0.3656813147506822 -0.5557652605442751 0.7376308132429826 0.3834393805109877 -0.6049336713798291 0.7946676713190241 0.05058206590601672 0.6049336713798291 -0.7946676713190241 -0.05058206590601672 0.5557652605442751 -0.7376308132429826 -0.3834393805109877 -0.6114792617679662 0.7887888748458873 0.06249178623677078 -0.5113431291935486 0.8587529234400222 0.03273561836539834 0.5113431291935486 -0.8587529234400222 -0.03273561836539834 0.6114792617679662 -0.7887888748458873 -0.06249178623677078 -0.6084825682336931 -0.495113360886253 -0.6201707216788357 -0.6410831753865172 -0.6305734637185176 -0.4374808213972034 0.6410831753865172 0.6305734637185176 0.4374808213972034 0.6084825682336931 0.495113360886253 0.6201707216788357 -0.5145324763372529 -0.5486089202616341 -0.6590027188135252 -0.6086877370165386 -0.4987726994136522 -0.6170291995726814 0.6086877370165386 0.4987726994136522 0.6170291995726814 0.5145324763372529 0.5486089202616341 0.6590027188135252 -0.9180510116488734 0.2069327617052255 -0.3381732871525023 0.9180510116488734 -0.2069327617052255 0.3381732871525023 -0.06820506512298212 0.8583605711733054 0.5084930667635563 0.06820506512298212 -0.8583605711733054 -0.5084930667635563 -0.07788897801981856 0.7203251955069255 -0.6892495337836203 0.07788897801981856 -0.7203251955069255 0.6892495337836203 -0.9186236678224693 0.2137604419261941 0.3323206740242198 0.9186236678224693 -0.2137604419261941 -0.3323206740242198 -0.5912354405693278 -0.06373945870929254 0.8039763275235403 0.5912354405693278 0.06373945870929254 -0.8039763275235403 -0.07801011213032839 -0.9149104860515087 0.3960469983706556 0.07801011213032839 0.9149104860515087 -0.3960469983706556 -0.5911901739412696 0.7634359260444917 0.2601149074157052 0.5911901739412696 -0.7634359260444917 -0.2601149074157052 -0.918427191400784 0.2082707995037445 0.3363253903138127 0.918427191400784 -0.2082707995037445 -0.3363253903138127 -0.5552116476461365 0.1310993066410967 -0.8213117545221707 -0.5611802421407521 0.1223351114562133 -0.8186029906712061 0.5611802421407521 -0.1223351114562133 0.8186029906712061 0.5552116476461365 -0.1310993066410967 0.8213117545221707 -0.6408955186930352 0.6368247591987463 -0.4286107327058484 0.6408955186930352 -0.6368247591987463 0.4286107327058484 -0.06018780181180793 0.1916292067335681 0.9796201690654016 0.06018780181180793 -0.1916292067335681 -0.9796201690654016 -0.9294544655857993 -0.3596552207152826 0.08223453419858177 0.9294544655857993 0.3596552207152826 -0.08223453419858177 -0.5119734798882151 -0.3801411073322832 -0.7703089603576846 0.5119734798882151 0.3801411073322832 0.7703089603576846 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 -0.7827724052343109 0.4885261484066231 0.3854991101503113 0.7827724052343109 -0.4885261484066231 -0.3854991101503113 -0.6840994787240873 0.1363722874922993 0.7165266934410397 -0.6147039237146543 0.238512470860314 0.7518316882214503 -0.6653394530452826 0.165916713449703 0.7278702194893354 0.6653394530452826 -0.165916713449703 -0.7278702194893354 0.6147039237146543 -0.238512470860314 -0.7518316882214503 0.6840994787240873 -0.1363722874922993 -0.7165266934410397 -0.5846765150393855 0.2775554521153094 0.7623098738455811 0.5846765150393855 -0.2775554521153094 -0.7623098738455811 -0.5144696680899629 -0.2827869085697489 0.8095384641615049 0.5144696680899629 0.2827869085697489 -0.8095384641615049 -0.9325779507189076 -0.3562891568629708 -0.0579344675887886 0.9325779507189076 0.3562891568629708 0.0579344675887886 -0.06008517546283819 0.07478840775462761 -0.9953875957410397 0.06008517546283819 -0.07478840775462761 0.9953875957410397 -0.06016537746400757 -0.9456188928128914 -0.3196639437126669 0.06016537746400757 0.9456188928128914 0.3196639437126669 -0.9294575191574707 0.1069983269701304 -0.3530723411812842 0.9294575191574707 -0.1069983269701304 0.3530723411812842 -0.5118224780352834 0.8574987258211545 0.05228466498810563 0.5118224780352834 -0.8574987258211545 -0.05228466498810563 -0.514493135926281 -0.5625126092319087 -0.6472065957172033 0.514493135926281 0.5625126092319087 0.6472065957172033 -0.9325781432366856 0.2270966540840191 -0.280579964468348 0.9325781432366856 -0.2270966540840191 0.280579964468348 -0.06002763057924118 0.8270709642152402 0.5588830859125324 0.06002763057924118 -0.8270709642152402 -0.5588830859125324 -0.07605661316331486 0.6351470128865732 -0.7686375372146413 0.07605661316331486 -0.6351470128865732 0.7686375372146413 -0.9208305953623421 0.2088271071494026 0.3293360805685381 0.9208305953623421 -0.2088271071494026 -0.3293360805685381 -0.8621478316094056 0.2290208849793479 0.4519408707944841 0.8621478316094056 -0.2290208849793479 -0.4519408707944841 -0.6042033250166701 -0.04459964845335795 0.7955810539452516 0.6042033250166701 0.04459964845335795 -0.7955810539452516 -0.0760742450757196 -0.9574640025019078 0.27834401942414 0.0760742450757196 0.9574640025019078 -0.27834401942414 -0.6041792882639404 0.748119712716962 0.2743798153603302 0.6041792882639404 -0.748119712716962 -0.2743798153603302 -0.8666360269162206 0.3018712000249856 0.3972603371170386 0.8666360269162206 -0.3018712000249856 -0.3972603371170386 -0.06215953815997215 0.1869805446352334 0.9803950569763448 0.06215953815997215 -0.1869805446352334 -0.9803950569763448 -0.9251817572127729 -0.3717791800066462 0.07628209117657712 0.9251817572127729 0.3717791800066462 -0.07628209117657712 -0.5094391278008816 -0.4503793007937866 -0.7332327464604789 0.5094391278008816 0.4503793007937866 0.7332327464604789 -0.5107042903204709 -0.3659351517327707 0.7779926687151866 0.5107042903204709 0.3659351517327707 -0.7779926687151866 -0.9295512194985515 -0.3651508688837732 -0.05098404929172666 0.9295512194985515 0.3651508688837732 0.05098404929172666 -0.06207876760437363 0.06602698698797134 -0.9958848646314555 0.06207876760437363 -0.06602698698797134 0.9958848646314555 -0.06213739111210562 -0.9439802191053086 -0.3240991986470726 0.06213739111210562 0.9439802191053086 0.3240991986470726 -0.9251831321196651 0.1181898446877643 -0.3606484890498343 0.9251831321196651 -0.1181898446877643 0.3606484890498343 -0.5092947909307791 0.8601651410365301 -0.027106199962007 0.5092947909307791 -0.8601651410365301 0.027106199962007 -0.5105354677853689 -0.4940289674119409 -0.703767657320984 0.5105354677853689 0.4940289674119409 0.703767657320984 -0.9295504993104691 0.2254579596928901 -0.2917268887894581 0.9295504993104691 -0.2254579596928901 0.2917268887894581 -0.06203113682986364 0.8318660453007373 0.551498885528617 0.06203113682986364 -0.8318660453007373 -0.551498885528617 -0.07783629645161526 0.6386398399740993 -0.7655590543861087 0.07783629645161526 -0.6386398399740993 0.7655590543861087 -0.9138229107542849 0.2183939193754576 0.3423912729033732 0.9138229107542849 -0.2183939193754576 -0.3423912729033732 -0.4787989807562905 0.4668933018719641 0.7434797782682678 -0.5524074943628621 0.4050841393154985 0.7285278307976754 -0.5345884589721218 0.4034395796788172 0.7425979296243637 0.5345884589721218 -0.4034395796788172 -0.7425979296243637 0.5524074943628621 -0.4050841393154985 -0.7285278307976754 0.4787989807562905 -0.4668933018719641 -0.7434797782682678 -0.05182109757684491 -0.4514163579221916 -0.8908074122088315 -0.06712979634411644 -0.500579809610561 -0.8630836834589403 -0.06467178653120824 -0.4384108387102168 -0.8964449210789618 0.06467178653120824 0.4384108387102168 0.8964449210789618 0.06712979634411644 0.500579809610561 0.8630836834589403 0.05182109757684491 0.4514163579221916 0.8908074122088315 -0.07792118493082251 -0.9559677627777016 0.2829380240773106 0.07792118493082251 0.9559677627777016 -0.2829380240773106 -0.544217945097606 0.4868904901393766 0.6832016384974328 -0.5296654684248241 0.4971931921921262 0.687206971149242 0.5296654684248241 -0.4971931921921262 -0.687206971149242 0.544217945097606 -0.4868904901393766 -0.6832016384974328 -0.06556201067145182 -0.5654470917961071 -0.8221746828600607 -0.04893206091694585 -0.6042992393415967 -0.7952534707535631 -0.06331144630405373 -0.6168950586009265 -0.784494835827903 0.06331144630405373 0.6168950586009265 0.784494835827903 0.04893206091694585 0.6042992393415967 0.7952534707535631 0.06556201067145182 0.5654470917961071 0.8221746828600607 -0.07317435867671789 0.2852169995987944 0.9556656195407013 0.07317435867671789 -0.2852169995987944 -0.9556656195407013 -0.9245447371101613 -0.3773552231352665 0.05310428094265093 0.9245447371101613 0.3773552231352665 -0.05310428094265093 -0.5139838480450424 -0.4451092818304552 -0.7332791631958371 0.5139838480450424 0.4451092818304552 0.7332791631958371 -0.5157659772286117 -0.3552253929522392 0.7796155314867339 0.5157659772286117 0.3552253929522392 -0.7796155314867339 -0.9272834542399263 -0.373133423886244 -0.03027942324085647 0.9272834542399263 0.373133423886244 0.03027942324085647 -0.07322677161913004 0.1848207446832606 -0.980040372766839 0.07322677161913004 -0.1848207446832606 0.980040372766839 -0.07315269852634401 -0.9712587534489104 -0.2265063278303333 0.07315269852634401 0.9712587534489104 0.2265063278303333 -0.924551007271137 0.1411219268150242 -0.3539633268093474 0.924551007271137 -0.1411219268150242 0.3539633268093474 -0.5138680084800981 0.857573090590434 -0.02254027852243685 0.5138680084800981 -0.857573090590434 0.02254027852243685 -0.5156107881351871 -0.500749424973523 -0.6952665161988583 0.5156107881351871 0.500749424973523 0.6952665161988583 -0.9272779039266812 0.2114525434248893 -0.3089393318573824 0.9272779039266812 -0.2114525434248893 0.3089393318573824 -0.07323009189041933 0.7592000544660637 0.6467245402336659 0.07323009189041933 -0.7592000544660637 -0.6467245402336659 -0.07183856815325576 -0.5367001228199709 -0.8407093423358147 -0.07384419633644265 -0.4918662305097807 -0.8675336569560422 0.07384419633644265 0.4918662305097807 0.8675336569560422 0.07183856815325576 0.5367001228199709 0.8407093423358147 -0.4571428387213803 0.4708925370562133 0.7545068876759978 0.4571428387213803 -0.4708925370562133 -0.7545068876759978 -0.07317072936235344 -0.5741876618940569 -0.815447468138333 0.07317072936235344 0.5741876618940569 0.815447468138333 -0.07786128607335852 0.2282437525088427 0.9704856565512368 0.07786128607335852 -0.2282437525088427 -0.9704856565512368 -0.910518420051696 -0.4126184541394979 0.02649939716473525 0.910518420051696 0.4126184541394979 -0.02649939716473525 -0.5636615363401881 -0.6008612160141833 -0.5667905005736916 0.5636615363401881 0.6008612160141833 0.5667905005736916 -0.5636121577228427 -0.5422177340050004 0.6231703335344874 0.5636121577228427 0.5422177340050004 -0.6231703335344874 -0.9128840725037823 -0.4082071319792981 -0.003099608063125092 0.9128840725037823 0.4082071319792981 0.003099608063125092 -0.07794444694945403 0.123244223494892 -0.9893106309773917 0.07794444694945403 -0.123244223494892 0.9893106309773917 -0.07784980261668228 -0.9558510645399539 -0.2833516378113609 0.07784980261668228 0.9558510645399539 0.2833516378113609 -0.910506959134482 0.181741629865931 -0.3714122471612288 0.910506959134482 -0.181741629865931 0.3714122471612288 -0.5638170052827519 0.7901416633769365 -0.2403883032718469 0.5638170052827519 -0.7901416633769365 0.2403883032718469 -0.5636943070143379 -0.2718931151353536 -0.7799505511130938 0.5636943070143379 0.2718931151353536 0.7799505511130938 -0.9128734660900318 0.2052562609143245 -0.3528907795115115 0.9128734660900318 -0.2052562609143245 0.3528907795115115 -0.07796022575618454 0.7978022440562502 0.597857660801345 0.07796022575618454 -0.7978022440562502 -0.597857660801345 -0.07293523093475945 -0.536747093346532 -0.840584921273599 0.07293523093475945 0.536747093346532 0.840584921273599 -0.07604770112068858 0.3398450615732017 0.9374017715358579 0.07604770112068858 -0.3398450615732017 -0.9374017715358579 -0.9271339304211422 -0.3737861328003613 0.02658198615595467 0.9271339304211422 0.3737861328003613 -0.02658198615595467 -0.56821021807484 -0.5485574908562504 -0.6133692422194298 0.56821021807484 0.5485574908562504 0.6133692422194298 -0.5681978066790452 -0.4856242309667716 0.664319470422969 0.5681978066790452 0.4856242309667716 -0.664319470422969 -0.9275538218035446 -0.3736639910290091 -0.004373724489596332 0.9275538218035446 0.3736639910290091 0.004373724489596332 -0.07601198010694718 0.2461619642348556 -0.9662434818637893 0.07601198010694718 -0.2461619642348556 0.9662434818637893 -0.07603488379294941 -0.9824986161570616 -0.1700445991381432 0.07603488379294941 0.9824986161570616 0.1700445991381432 -0.9271175633615203 0.1624153764230984 -0.3377488256203726 0.9271175633615203 -0.1624153764230984 0.3377488256203726 -0.5684223245221804 0.8045495901676812 -0.1720349323417111 0.5684223245221804 -0.8045495901676812 0.1720349323417111 -0.5682562327497746 -0.3357303571020874 -0.7512456197949771 0.5682562327497746 0.3357303571020874 0.7512456197949771 -0.9275500865344358 0.1892090791949394 -0.3222588421132365 0.9275500865344358 -0.1892090791949394 0.3222588421132365 -0.07602359932507562 0.7168034810914563 0.6931184471941507 0.07602359932507562 -0.7168034810914563 -0.6931184471941507 -0.07788522860997994 0.33527590521265 0.9388950732367325 0.07788522860997994 -0.33527590521265 -0.9388950732367325 -0.8622039110363094 -0.5055471860195102 -0.0320383910558382 -0.9186365967429201 -0.3947997214296697 0.01549138740205839 0.9186365967429201 0.3947997214296697 -0.01549138740205839 0.8622039110363094 0.5055471860195102 0.0320383910558382 -0.5911920785065153 -0.6603884431093904 -0.4630108319669223 0.5911920785065153 0.6603884431093904 0.4630108319669223 -0.5913185191009809 -0.6117206410194161 0.5254905006934163 0.5913185191009809 0.6117206410194161 -0.5254905006934163 -0.9184398770765989 -0.3954642704709246 0.008729431620756456 0.9184398770765989 0.3954642704709246 -0.008729431620756456 -0.8666694425626617 -0.4954474410657432 0.05844579086240863 0.8666694425626617 0.4954474410657432 -0.05844579086240863 -0.07784647127831051 0.2414764141318304 -0.967279209084713 0.07784647127831051 -0.2414764141318304 0.967279209084713 -0.07789085419739079 -0.9815182421211756 -0.1747997574819787 0.07789085419739079 0.9815182421211756 0.1747997574819787 -0.8621876343713294 0.2786709173777909 -0.4230543735088806 -0.9186099994929518 0.1824781962483763 -0.3505101663653969 0.9186099994929518 -0.1824781962483763 0.3505101663653969 0.8621876343713294 -0.2786709173777909 0.4230543735088806 -0.5914357760694816 0.729508062189148 -0.3435428793995359 0.5914357760694816 -0.729508062189148 0.3435428793995359 -0.5912701432089158 -0.1528401862184598 -0.7918582545041852 0.5912701432089158 0.1528401862184598 0.7918582545041852 -0.9184311868293691 0.1886543416202624 -0.3476977055532891 0.9184311868293691 -0.1886543416202624 0.3476977055532891 -0.8666393501579606 0.1951110697023345 -0.45920355751823 0.8666393501579606 -0.1951110697023345 0.45920355751823 -0.07785123444427876 0.7200157100790545 0.6895770896243993 0.07785123444427876 -0.7200157100790545 -0.6895770896243993 -0.05175606910108979 0.9966603560649529 0.06316204524621295 -0.06710589855194701 0.997722592184132 0.006813767306884728 -0.06463126882157386 0.9949142282440756 0.07725592228437379 0.06463126882157386 -0.9949142282440756 -0.07725592228437379 0.06710589855194701 -0.997722592184132 -0.006813767306884728 0.05175606910108979 -0.9966603560649529 -0.06316204524621295 -0.9208481389957095 -0.3897131234716203 0.01274308840634989 0.9208481389957095 0.3897131234716203 -0.01274308840634989 -0.6041265859342664 -0.6628633493676761 -0.4423157788644598 0.6041265859342664 0.6628633493676761 0.4423157788644598 -0.6043510956270248 -0.616247919108277 0.504973519512789 0.6043510956270248 0.616247919108277 -0.504973519512789 -0.04887595123153411 0.9919269240416067 -0.1170133272433938 -0.06320711920580965 0.9890618334347577 -0.1332724642391598 -0.06544351105841843 0.9954089662035404 -0.06984366014138725 0.06544351105841843 -0.9954089662035404 0.06984366014138725 0.06320711920580965 -0.9890618334347577 0.1332724642391598 0.04887595123153411 -0.9919269240416067 0.1170133272433938 -0.05176292428173093 -0.5493551863579695 0.8339840999032322 -0.06715572110431041 -0.500971452014702 0.8628543987192979 -0.06467060858579891 -0.5607537460364631 0.8254531777703786 0.06467060858579891 0.5607537460364631 -0.8254531777703786 0.06715572110431041 0.500971452014702 -0.8628543987192979 0.05176292428173093 0.5493551863579695 -0.8339840999032322 -0.9208229918529777 0.1823261521974405 -0.3447349589174365 0.9208229918529777 -0.1823261521974405 0.3447349589174365 -0.6044052953115482 0.7127115897051575 -0.3560006023861583 0.6044052953115482 -0.7127115897051575 0.3560006023861583 -0.6042208852079725 -0.1329109324677061 -0.7856537442850122 0.6042208852079725 0.1329109324677061 0.7856537442850122 -0.06555032380382546 -0.4332602793100031 0.8988819084960116 -0.0489311245994604 -0.3905865829625489 0.9192648509842373 -0.06330197836798127 -0.3750046590734298 0.9248591055982096 0.06330197836798127 0.3750046590734298 -0.9248591055982096 0.0489311245994604 0.3905865829625489 -0.9192648509842373 0.06555032380382546 0.4332602793100031 -0.8988819084960116 -0.07380847313489657 0.9971350212817937 0.01655471615135637 0.07380847313489657 -0.9971350212817937 -0.01655471615135637 -0.9138485014307795 -0.4058014096885466 0.01435730920149108 0.9138485014307795 0.4058014096885466 -0.01435730920149108 -0.5345304218766152 -0.844640307144783 -0.02932540937096353 -0.4787759179973137 -0.8775837507625626 0.02490744353284692 -0.5523468059055555 -0.8333556620290644 -0.020768884660241 0.5523468059055555 0.8333556620290644 0.020768884660241 0.4787759179973137 0.8775837507625626 -0.02490744353284692 0.5345304218766152 0.844640307144783 0.02932540937096353 -0.529810937761632 -0.8443800785050153 0.07951511335591559 -0.5444019885151931 -0.8356723357134307 0.07265137454971396 0.5444019885151931 0.8356723357134307 -0.07265137454971396 0.529810937761632 0.8443800785050153 -0.07951511335591559 -0.0730429405716595 0.9940521145746529 -0.08077822938333205 0.0730429405716595 -0.9940521145746529 0.08077822938333205 -0.07388662353121546 -0.5091637543312346 0.8574922962560529 0.07388662353121546 0.5091637543312346 -0.8574922962560529 -0.9138168602334956 0.1889226119874796 -0.3595093776702133 0.9138168602334956 -0.1889226119874796 0.3595093776702133 -0.4788900951458034 0.4137789169757429 -0.7742423939811258 -0.5525632992352004 0.4314208972124874 -0.7131267838096413 -0.5347331070637321 0.444464319308261 -0.7186876742172578 0.5347331070637321 -0.444464319308261 0.7186876742172578 0.5525632992352004 -0.4314208972124874 0.7131267838096413 0.4788900951458034 -0.4137789169757429 0.7742423939811258 -0.5443231062547118 0.3515163285545688 -0.7616748825822854 -0.5297627038662381 0.3498802766270966 -0.7726158616153819 0.5297627038662381 -0.3498802766270966 0.7726158616153819 0.5443231062547118 -0.3515163285545688 0.7616748825822854 -0.0731648938415657 -0.4230767780001828 0.9031350608996067 0.0731648938415657 0.4230767780001828 -0.9031350608996067 -0.0717598100444269 0.9967833931070906 -0.03568468702823421 0.0717598100444269 -0.9967833931070906 0.03568468702823421 -0.4570938974721754 -0.8891267751684072 0.02277600870049867 0.4570938974721754 0.8891267751684072 -0.02277600870049867 -0.07186207300492192 -0.4636242428793894 0.8831129055097929 0.07186207300492192 0.4636242428793894 -0.8831129055097929 -0.4572184704652873 0.4213675234050111 -0.7831990043947393 0.4572184704652873 -0.4213675234050111 0.7831990043947393 -0.07284731910756336 0.9966994105687711 -0.03582670890139447 0.07284731910756336 -0.9966994105687711 0.03582670890139447 -0.07295841153948711 -0.4634759310171773 0.8831008614837808 0.07295841153948711 0.4634759310171773 -0.8831008614837808</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1000\" source=\"#ID798\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID796\">\r\n\t\t\t\t\t<float_array count=\"2470\" id=\"ID799\">-2.382152232341637 0.8114993214080721 -2.305498782632804 0.7612421416708729 -2.661799060038712 0.5143268679627622 -1.10929632536876 1.865939697634436 -0.7402787510683859 2.096312634686256 -1.041160221479432 1.808590267548293 4.117109534675268 -4.221737622712427 3.770492703260866 -4.471450631513128 2.972256478969288 -4.376182215124748 -2.64317861492822 0.5288504886875456 -2.741971876010438 0.5644427639446815 -2.388085444237092 0.8134970265397964 -0.5108777407253806 1.994641913414265 -0.4647338457287636 1.921831414400039 -0.8199817364353834 1.712364972440952 4.159072087260633 -3.60131408385592 4.008359773378214 -4.223632152308475 3.590480138856723 -4.394738788375328 3.720629425418393 -3.737994030932695 4.089733578634366 -4.1362612050151 2.944593614898622 -4.289383837459042 3.715949880857402 -4.664217122611951 3.577025552436587 -4.858740273202045 2.918110384210961 -4.566913844047221 -3.532893088158519 -1.405402268119589 -3.778377344265582 -1.567813990875131 -3.63466691595626 -1.375454603305033 2.166877960838995 -3.20534782375026 2.505112526826225 -2.980634682784841 2.016960844485938 -3.372595413195628 2.90664991550928 -2.831647031589939 3.161264493954209 -2.789679773232189 2.158320842907479 2.317355631430848 2.426208068189768 2.382798047632238 2.177397347012687 2.237394119727016 4.186501325658662 -3.604674619844945 3.619577955234709 -4.398837879978945 3.263520854441227 -3.993286695212771 4.264289486993383 -3.591368647410786 4.393196497476434 -4.169263296937372 4.118628753531486 -4.214430668958741 2.141709561156012 -2.539653586511744 1.338783932921017 -3.066679041718678 1.088541638290198 -2.918995386648729 3.705354160579695 -4.722111991503434 3.752219223354113 -4.925163319361463 3.043585516181242 -4.434309064416466 -4.720195001665112 -0.838111930340065 -4.87356633634843 -0.8206456622006494 -4.647535569853533 -0.6416093864536248 5.976463061569919 -4.01551000878934 5.700563982511904 -4.661067300428671 5.591129172591309 -4.47290649595115 0.4940113330114128 3.302791294675418 0.7020392817537015 3.483545504538939 0.733154928316176 3.383342872493777 2.984341750436177 -1.945595238278266 3.07355461487074 -2.178877951918392 2.134980860030076 -2.543645943407094 4.715175540128614 -4.237778325771608 4.486729766309145 -4.140997679661525 4.353781662995391 -3.563669890075839 6.229541255743985 -2.815692720273948 6.205863006664616 -3.061082790207338 5.39894081999101 -2.780519209470858 3.95954576161025 -4.766474747050036 4.226158437872415 -5.067116002014613 3.243896960758899 -4.281959803351813 -5.20917675816532 -4.076852570570276 -5.444027986460442 -4.257840651882353 -5.362925845386348 -4.061579228975656 -3.414236209071933 -5.48280054980703 -3.503674895768212 -5.500147149562402 -3.302965120206075 -5.295307391122558 7.153708221003003 -1.055334577185998 7.357365789459331 -1.181805828420435 7.060600724299492 -1.127963471288239 -6.376055494793524 -2.791910837103957 -6.376601944710836 -2.548300528389567 -5.546105656382263 -2.541558169230477 6.292020490288079 -3.896997050653707 6.001290330568972 -3.594786402053359 5.579123822736869 -2.942901892769273 -6.445697115556035 -0.5327398872694064 -5.639737196896117 -0.3708988937511936 -5.410310060843501 -1.264541462392171 -6.378040758730448 -0.5490869415448467 -6.402386873826202 0.3474497948727556 -5.548733127301645 -0.4984393686878871 6.249443067828077 -3.021812954622691 5.589949262777724 -3.009778769479917 5.436007331621839 -2.753141288256818 3.685386022701926 -5.416193428280835 3.550020822014475 -5.480747652159369 2.733685449622757 -4.60808068335111 -3.214384247080245 -6.200299681307078 -3.23901928547867 -5.834241632626324 -3.150145197377329 -5.815183648067049 7.37374899284945 -1.133457200799908 7.255757232167886 -1.180810893730796 7.077515231345002 -1.077833697990142 -5.813898093729755 -2.627781693529012 -6.473061319915687 -2.607393325339736 -5.64053701285209 -2.362387587081174 -4.1449948999066 -0.3925930562476963 -5.571323704244727 -0.4508006085162343 -5.590385402988608 0.4192953775659653 -6.420823099055467 0.4090219793829775 -5.571948609914557 -0.5184370324832719 -6.402434335445965 -0.5259414841779818 -6.412003022809788 0.3723260551637551 7.79264834779636 -3.094623924357429 7.386028045278803 -2.821643815884106 7.511011023866709 -2.787130807200926 5.288427740176394 -4.450421141627921 5.16365295085847 -4.520813777264999 4.528469987559812 -3.533326890439096 -6.177999987344328 -1.570835269398446 -6.43794403232774 -0.6842351375800343 -5.37737609444318 -1.393369944667684 -5.468981652152383 -0.9966139960495889 -5.627977588762684 -0.09354875387037062 -4.06048470052598 -0.8115314550383995 -5.604833719540404 -0.8427021686719978 -6.523407502400124 -0.04000140227339736 -5.698594924431132 0.04705198934153895 -3.819964906568851 -0.198740607318797 -3.710588442244218 0.7070679054892642 -3.595833115298375 -1.078161158264579 -3.273119380180543 1.535119347208355 -3.076513428396748 -0.1659543789840967 -3.030200242278591 -1.873660853038731 -2.887398122901175 -0.8793125957286936 -2.439402056737099 -1.517112239780935 -2.203293041006291 -2.500402028373014 -1.772319464308227 -2.022702851046091 -1.178273536083925 -2.907562735203924 -0.9454591957336178 -2.351161398673499 -0.0462380938019025 -3.05896025402176 -0.03227092295787773 -2.473295078857695 0.8861221859959634 -2.378246195955483 1.100337098236535 -2.939288573049616 1.728132329397168 -2.074478232231995 2.135972779385058 -2.5645770483233 2.418887774560047 -1.588964928439499 2.897061565363328 -0.9648552907429856 3.002871332391609 -1.96190235463934 3.120099824776935 -0.2576073983579654 3.397833450122788 1.436453299966811 3.584954115964931 -1.189073698497411 3.797178894091073 0.589535539530324 3.86146279790015 -0.3123520279787206 -2.989941374167471 0.5595534147310203 -2.635383615910281 1.232752438402079 -2.540424688596996 2.230643059343542 -2.044294447642872 1.793827010075304 -1.579665433403898 2.725371249155675 -1.269257263899759 2.192925190064263 -0.4762730165452944 2.975353590359535 -0.379127025517807 2.394587160073535 0.5470052852914087 2.380889252754579 0.6739441528367607 2.964104390912614 1.426866649410332 2.153052203845308 1.762515223752795 2.675938097440283 2.182281272233411 1.731316065892566 2.698888249206223 2.153148196856395 2.746116622930116 1.15315754419546 3.0682720466757 0.4699448618913633 6.262701037578077 -3.297688588377309 6.810870890825931 -4.291665963233803 5.603135835129864 -3.288385875698955 3.537805570138652 -5.322074800046389 4.499503752106183 -6.170792077931217 3.401754136409783 -5.385730003367606 -2.402367420971701 -6.32348935043586 -2.487130147304622 -6.36684873423582 -2.456301864786447 -5.979189118527012 -5.851137594154357 -2.991204346202717 -7.11732698224412 -3.953428325490446 -6.510171301073201 -2.96837143036549 -6.431600829084085 -0.5856926335526124 -6.465043856691065 0.3240294976779706 -5.60265637794168 -0.5278164021063335 -4.153220584432583 -0.5919371519429612 -5.633236098381424 0.2161519211681857 -4.209404235825325 0.3044258401130099 -5.686973105331986 0.2076154673473941 -4.263529414155157 0.3221991449134441 -4.215291073560992 -0.5744977462204292 -5.629668278170908 -0.6018165566198391 -6.481253406832044 0.2821448753630127 -5.65143262943119 0.3334005600536639 7.70924221545971 -3.086643914958204 7.611421202677152 -3.106627870969063 7.289855802678771 -2.825890216437976 5.307646526988149 -4.459574441591602 5.895028297840041 -5.457121340977217 5.18297450631685 -4.530079671339261 5.629008267869499 -0.7463477273334715 6.143014995752494 -1.761979428609921 5.332209067274681 -1.615896687539317 4.221778863882256 -0.1138895382488578 5.449746623983231 -1.157975509815105 4.036035568395636 -0.9993909140033963 -5.638210010572456 -0.5486783925207119 -4.250909299071609 -0.2815645921801652 -3.997216344816255 -1.156592358935419 -5.584920386969356 -0.7286636150463668 -5.649991922666122 0.162673834209167 -4.161558112449938 -0.6357893580252552 6.325862417864055 0.2471940347496744 6.275923150491728 -0.65523344044532 5.494720606752197 0.2501486147772298 6.324667251178918 0.3785027462624838 6.307487637225778 -0.5247153149898205 5.493856655715302 0.366706868280492 6.330840177740377 -0.4832391865050514 5.505412349689225 0.4046323204088624 6.335973878144486 0.4200649213385262 6.355104265392128 -0.4667206081220865 5.524514761868456 0.413796645671067 6.354965736662829 0.4299973635642851 6.348532651289016 -0.4826861760209525 5.518228264842925 0.4008358708994737 6.348686999878188 0.4271997584595754 6.402526849244486 -0.514599815300171 5.575015698521129 0.3688125470936636 6.405593025417301 0.3823184502673627 6.411353286003433 0.4000658934411254 6.402189221181026 -0.5113951445993928 5.580948395643242 0.4157367094855328 6.457616882721426 0.2866889367729694 6.428226229766665 -0.6163174962283112 5.626549839694851 0.2839681310038151 6.504640036469908 0.06882814165186642 6.425760748703323 -0.8323530921485491 5.679613144525984 0.09802792271163478 6.462225544659513 -0.479789751691096 6.259225536954721 -1.368874127389776 5.638390409749905 -0.3908745494751295 -5.574851926507346 -0.4467662664155951 -6.405189489514616 -0.4925506539050644 -6.409194594973165 0.4107466294511674 -5.552194299191942 -0.4361777819642201 -6.382694340672956 -0.479815042264443 -6.3822125066093 0.4234890959370029 -5.527660594977107 -0.4414161723271314 -6.358135509214947 -0.4841960030603822 -6.357692766381553 0.4191095339513883 -5.503241243690558 -0.4621172308995953 -6.333509171185731 -0.5054400229986481 -6.337686374565175 0.3978657857529473 -6.309573809879248 -0.5505412985441708 -6.324676198831939 0.3526571860783325 -5.479788392845236 -0.5041294043719613 2.727282558497929 2.374467822102313 2.682327380740597 2.134919811093426 1.745957532312295 2.657713232886528 -6.28355707143229 -0.6362917545517316 -6.324274572841182 0.2666680609225586 -5.455101643277436 -0.57908685677795 0.8867903543797634 3.118978236478919 1.753803744658647 2.655260171310598 0.6652336964723358 2.943428855169668 -6.107009504749997 -1.440571652735586 -6.327435422916969 -0.5524335438192431 -5.290951497203457 -1.319381353096898 7.047109981082493 -4.025925235254194 6.572423246359725 -4.03807808733024 5.762356183245927 -3.083708496260667 4.719319310056894 -6.012525550950048 4.559405230702663 -6.109249604868882 3.610847825014008 -5.236842748222333 -1.635076611744317 -7.643805512306598 -2.046393508680486 -6.553864915925065 -1.964009241795349 -6.507755706175733 -6.226933058893753 -4.35715210192923 -6.684777216062551 -4.368633898008876 -5.495336325949821 -3.347602026111755 -4.164155400215128 -0.4808138035478431 -5.59045265464766 -0.5707972914437972 -5.604000275338401 0.3645158178360241 8.498994210341262 -3.863426396329256 7.58708621916952 -3.010007229700875 7.684874037027289 -2.989922987339559 5.860507161178415 -5.472263804657364 5.717787806425276 -5.541268897230905 5.143033007068749 -4.539180625640339 5.615427661959771 -0.05307178236898648 5.490996361882291 -0.9480844056190318 4.192676241827535 0.04192978539679174 -6.371687425542625 0.05659531610126218 -5.545667306279297 0.1291291351249389 -5.462209449669895 -0.8043086080673315 5.523565805979221 0.4664539955697984 6.354207285310459 -0.4112716340542739 5.523758680554177 -0.4338833848854653 5.53167411224067 0.4777514955588634 6.366920291787105 -0.4012123226992183 5.536572228151663 -0.4226032985896472 6.384470114428415 -0.403345774636922 5.554125450147815 -0.4226259836262465 5.547326545969745 0.4777114329058925 6.394798530817934 -0.4242064713489063 5.564444714190893 -0.4525417513668846 5.559616742817855 0.4536184898915917 6.706382990873093 -1.992428992817538 6.734858187658725 -2.229716846200112 5.880914549031902 -2.06864522518943 6.426673737565221 -0.4286928413741457 5.59609063437345 -0.441977094805049 5.594342931635121 0.4536484752102395 4.127093708298099 0.349085374462541 5.554394599787321 0.3625400882458029 5.552652560288326 -0.5062900454127818 6.383108753397958 -0.5201741029379436 6.630766041321724 2.290072167503032 6.60870069498146 2.039406599150892 5.780362907360219 2.088063182125595 6.461347556712913 -0.5273102266094472 5.630277932583336 -0.5294891830228586 5.652179197504132 0.4063675696246454 6.471783918825218 -0.6694862709089748 5.646284167170914 -0.6502602675244906 5.689181062059775 0.241125792540077 5.705258546267622 0.04954383269713061 6.435385846454905 -0.8886697541752605 5.604943682381954 -0.8548758041057144 -5.61868898488491 -0.4874466767329562 -6.456279603494737 0.3681045028935301 -5.625878457091545 0.4128913173724724 -5.598883524092275 -0.4605082447537164 -6.428081916010963 0.3996480928002333 -5.597398384708466 0.4398433145490905 -5.576957820490299 -0.4488343226107577 -6.401896102512689 0.4147173528205499 -5.571119059021333 0.4515076979844473 -5.555720079221102 -0.4484087783848311 -6.379668149979191 0.417815089717694 -5.548918425932076 0.4519197748685152 -5.644588786272323 2.432043406180553 -6.475752441667305 2.404888014658125 -6.476678532968182 2.647031326878516 -5.537898422956329 -0.4559979435743079 -6.363430823466654 0.4123864931825314 -5.532783473477472 0.4443536015118346 2.52699327365733 4.053668724156345 3.232240892558104 3.344958568234572 2.254016958954333 3.634765079931456 -5.499906396557383 -0.4989705720211488 -6.344343569199598 0.3621523079421049 -5.513894893397796 0.3670495865317552 6.351232608300514 2.490855442909809 5.520765150887098 2.493018469052865 6.349136616735253 2.738226221440089 2.83617451174444 3.92667842082563 2.558079519991281 3.509863443645249 1.697980286874242 3.981481675466966 7.662203559623302 -4.913533654818638 6.581129811636943 -3.882599263004092 7.05576917080125 -3.869350706402243 4.858615578581932 -6.074245668090698 5.781796714671636 -6.755173925272217 4.699553073210266 -6.171834810212214 -2.923013648991004 -7.410697797244424 -3.004235976416077 -7.446203671646552 -3.154857143866117 -6.287097760729689 -7.233100912016699 -5.2780072099835 -6.696771126747163 -4.272424854255496 -6.238904897399809 -4.261501314141265 -4.160046578622444 -0.4737436785604704 -5.599138070426414 0.3723794843949643 -4.172281427259849 0.4236948597737338 8.583971388279348 -3.861854811376837 8.493484725290733 -3.878498459511783 7.688724458774837 -2.997587991844135 5.773769347551276 -5.42458368153758 6.194793007120643 -6.435297706577472 5.630635840262678 -5.49305586462806 5.637463441909986 0.2063136648478206 5.576712249359321 -0.7002834793214141 4.149493655589789 -0.666422043308793 -3.791997104759317 -3.160289595899267 -4.557148381589244 -2.4438330958985 -2.752395262503766 -2.388220319902878 5.508185884087253 0.3568838258145871 5.479408896688173 -0.5431689211380512 4.080557974305158 0.3597441476089266 5.506171941511711 0.4210506271797914 5.49610738001893 -0.4792775997923502 4.078734300599257 0.4094231397152907 5.509503751461832 -0.460178170981151 4.0852749331553 0.4248645746183525 5.512567720610957 0.4401719054329141 5.523730938822248 -0.4707721957735811 4.096473844284713 0.4192446804514229 5.523701160329052 0.4353960044653995 -3.68214331192589 0.7048003957772115 -3.797079964430929 -0.1886666454908832 -3.966759717564554 0.6230881827453207 6.770678563460123 -2.150790600524764 6.117129859104871 -2.221333120763166 5.914682744017741 -1.996607342708859 5.55221507049154 -0.4461036560030883 4.124268810346557 0.4384218376475834 5.551529312835765 0.4495228068059489 5.565864599723549 -0.4313945211553699 4.138560890324671 -0.4446638803693676 4.137603457175834 0.4528163016298624 5.634227758319667 -0.4402423970654657 4.205959402934985 -0.4768728165044885 4.213980714084771 0.4205838582382181 -3.798495665402174 -0.1820849155691501 -3.568804610354984 -1.073847359963925 -3.875394710153257 -1.003386691537358 6.123994606683545 2.05525332117598 6.776703735835856 1.98005265820314 5.916121464420085 1.806762106662963 5.597675479733299 0.443399893764163 5.585205845377178 -0.4925639279401325 4.169597344998032 0.4024386876104048 4.15762018592527 -0.4950097606756016 5.584202678227232 0.3648870756734438 5.572485063851977 -0.5270898869408937 4.156617820371098 0.3621291455754826 -4.124925005749004 -0.4221101842327787 -5.552090815762549 -0.4677962709606923 -5.55421954180395 0.4325579296179262 -4.111622469373085 -0.4214203977710727 -5.538876324918283 -0.4650816136418131 -5.538576477063474 0.4352706727699609 -4.097125150651432 -0.4279153426255751 -5.52435757429008 -0.4708482185904604 -5.52426233743118 0.4295055149755776 -4.082981753191275 -0.4413168658447663 -5.51008541062717 -0.4849546898017661 -5.512878698675422 0.4153870811823178 -5.631193550035248 2.461507415414935 -6.463048840774564 2.677056089199609 -5.803781728166912 2.695243922016638 -5.496456165566158 -0.5111077385403589 -5.505886766735717 0.3892222330192646 -4.069649252612988 -0.4640573414130001 3.834919411783258 4.229177482280971 4.067083141014313 3.636295497457961 3.395628482009644 4.365034469375767 -5.482838903136125 -0.5372022959242325 -5.506608144241801 0.3286859050130154 -4.056840720569126 -0.4789649353516526 5.627346059598288 2.772713745747252 6.28695098665998 2.780121525531526 5.472318711552627 2.507915073080861 2.539091054934751 4.89062216698243 2.915784678967103 4.664107656039868 1.77785141209766 4.72216774587029 7.719439946235701 -4.846904017109719 7.310729392674782 -4.86625049600592 6.619178588444171 -3.828609251683794 6.022785877259992 -6.533411281220287 5.850334017365131 -6.675404868943827 4.932253880902296 -5.959704110981211 -2.225179099355021 -8.573899165916442 -2.517246359618165 -7.605244271636148 -2.438202460806775 -7.566816113078535 -6.717869201020857 -5.349149792973891 -7.127119524533855 -5.359187381576786 -6.147305757602014 -4.334075845317214 9.271520465878172 -4.829384250182987 8.498392206892227 -3.953414187342754 8.588931033037188 -3.936947027258597 6.001688404292493 -6.520400303231552 5.785867199317528 -6.590653648012299 5.390870613633427 -5.57345836591487 5.612246399584024 0.2811336414350372 4.137508093891616 -0.6053915677220051 4.179845061663457 0.3098219691396784 -5.538764975333309 0.4681121719386963 -4.109915944167414 0.5066086495387171 -4.137244533226672 -0.3906263536147895 -4.093491571230447 -0.4693098312026066 -5.520719793072696 0.4014243121698805 -4.093491571230447 0.4281509816797937 5.522613030223019 -0.4088759348981764 4.095370697688034 -0.4307901038188899 4.095955679305225 0.4666987771532346 4.100600948168641 0.4727237170128614 5.530293461700541 -0.4036800185450093 4.103119696156001 -0.4247646836698221 5.540696074459932 -0.4062771507909478 4.113528349182373 -0.4254116217219571 4.109778224059697 0.4720632539261433 5.562829411054837 -0.4168563095352443 4.135579146547521 -0.4287439876988017 4.131128445010857 0.4687326012540565 -6.106218164610338 0.4067214157437564 -5.949686005033862 -0.4066665999772727 -6.57558798965443 -0.4291223668602024 7.484402007252639 -0.3666865768634973 8.588008637681035 -1.014951336896927 6.906160533801982 -0.6164503317486078 -5.968331417790047 -0.08485090619073749 -6.038886626027283 -0.9065050245338635 -6.594235457051168 -0.1072712048355581 7.785043341838376 -3.027241022869439 6.38760915225589 -3.073919155086647 6.094257506179066 -2.609111482345269 4.182569284383959 0.3628143594684092 5.590918326588575 -0.533762702622409 4.158247094811467 -0.515202285144675 -4.151049002528265 -0.4556168108391424 -5.582161926964881 0.3971661449070394 -4.154959419916142 0.4418540299037406 -4.138993010500824 -0.4477007573165332 -5.565399234233393 0.4095546653307514 -4.138039279917377 0.4497783237258486 -4.126058856890215 -0.4470074540046948 -5.550147546112627 0.4135444010196748 -4.122737751398939 0.4504695718699686 -4.11381972194354 -0.4511845102803854 -5.537457493840162 0.4119462391451804 -4.110066034056458 0.4463155858593719 -5.828619448587592 2.983631213287548 -6.487814456845412 2.963892194643452 -7.084231717134023 3.932564416781103 -4.103273851978412 -0.4587102997819708 -5.52807408050241 0.4063539597087571 -4.100749980947755 0.4387628393962917 4.717344599847353 4.192502098342859 4.633612095804903 3.613061858163787 4.427237314102075 4.211817097101426 0.3206106848921589 -1.391178060408406 0.6921164850603934 -1.628641759935543 0.2782028819448612 -1.450158226014998 6.293848033120097 3.193539879314641 5.634213361410922 3.188008916534419 6.848525411149121 4.203593104396327 -1.891328164057275 -0.1374743576887198 -1.948271184522626 -0.1883172081444611 -2.299859201895115 0.0619301615705932 2.155429516005429 5.433102250304442 2.326785986090503 5.245640623360807 1.568678405240158 5.068661018134691 8.319111193875182 -5.609547578366657 7.324212926387032 -4.723950566267607 7.732827786625975 -4.70339119690072 5.713279785731879 -6.432160030464202 5.953360540920912 -6.578961989440483 5.538615148466631 -6.572469865395896 -2.028798512837025 -8.548366861161911 -2.104055885263323 -8.590898403140145 -2.330512122076828 -7.585630805526254 -7.608945487818658 -6.255703576101399 -7.137958890888548 -5.260559550807522 -6.72869513150474 -5.250866900269577 9.27065934491648 -4.826824061750197 9.179300321773068 -4.839084543618871 8.496674351625121 -3.951322323121277 5.867141115348349 -6.389785434634255 5.741440448300319 -6.687316064812344 5.650766369438735 -6.458977061674541 -6.116633110672703 0.4110907662336733 -6.586162527374134 -0.4246975448627076 -6.656295097298122 -0.05912841987920928 -6.224683474972785 -4.744352959566725 -6.154981253152326 -4.374781149297583 -4.81651597652847 -3.918431791851718 -7.714038473572953 0.6023579286995218 -6.339258681834792 0.6682309068354281 -7.718550954367429 0.477881345093763 -6.574245482658096 -0.09795340618191402 -6.019037035461805 -0.8972475817193066 -6.610675455021291 -0.467456379308435 -6.219167844454492 -1.070784404659 -7.617857677143023 -1.06830930505799 -7.624303380680911 -0.9476220364064913 -8.259673190808709 -0.551958884871283 -8.650674722245444 -0.3398743600165811 -6.909048470343557 -0.0813386710929849 -6.262729427223396 4.280205518061553 -5.523929073475165 3.290676722131466 -6.715952600713422 4.289071664462673 3.937843837902142 5.147301601424823 4.069298934555739 5.075875895797951 3.463533200456307 4.110800280381099 5.209205622771145 4.035822782958834 5.450196430193508 4.151242919036542 5.102250521171852 3.458752088073406 4.095337276055221 1.204356443781205 4.389280951963332 1.1286483224619 4.099195002689461 1.148160626873494 2.771021747791493 0.9722150784720091 2.769151279432363 0.9159566178321216 2.351942138015295 1.100568588629236 2.935863018679035 5.626067172882261 3.069583945778339 5.566693212579978 2.195182696189024 4.692738226224547 7.015206002807851 4.001647704310436 5.735592185692652 3.036957278107067 6.54043165342027 4.011409472370985 -0.5745818156162452 2.549565507132114 -0.201766641564953 2.347215580046476 -0.6317786240502441 2.516375579235664 -1.343223786508591 3.410810264610257 -1.400727010858305 3.377949627684427 -1.605305603904998 3.543518012266425 2.41298121115136 5.483652071981339 2.402231215159181 5.271407892927533 1.807530471990459 4.915030062690574 8.280825905442994 -5.649319198347968 7.898642013392817 -5.666257972030044 7.295398628059252 -4.757193145759694 5.944142243046866 -6.818013508429276 5.833464914441211 -7.051644702807992 5.529399941378703 -6.811400320934341 -1.697471362572419 -8.866096477070775 -1.810456390209519 -8.644014698631873 -1.736609375029659 -8.599979835830487 -7.289404194507263 -6.205034285805037 -7.672080099481478 -6.212367473911156 -6.785103664943274 -5.211197734496072 9.400274494745993 -5.083337609184246 9.180531261399484 -4.878668450017517 9.271905004153444 -4.866476039442853 6.272982820837651 -6.366489343458639 6.467954122720688 -6.67559446441701 6.154288376155829 -6.665795398995026 -6.61782679821126 0.7707276170720391 -7.157860533619931 0.3007726256670714 -7.300822201226315 0.4995800430167435 2.513799392591445 0.5514798227418101 2.414069527238531 0.5491065533840862 2.4673256467482 0.9193765930242428 4.497717665920813 -5.731831628612675 4.516995633749293 -6.879723111970071 4.05665024727122 -5.593268903064636 -6.004154607457918 -0.8371542672269368 -6.924392869678563 -1.04217891225324 -7.379442888224687 -1.044659418331918 -7.537423955761589 0.6016595813773412 -7.542023281758183 0.4771849648315717 -8.968287821898736 0.2934255125263521 2.534015244132297 -0.9706957197685954 2.458215345371251 -0.6029203753848054 2.557945762132749 -0.6005614891247557 -6.885079482756589 -0.6997488815661535 -6.293570957011183 -1.129650712023979 -6.99273692576547 -0.9065747945953878 -7.154016454095761 -1.004976464628402 -6.227488975147699 -1.128661156671277 -7.63261541801149 -1.0054346037006 -7.553775809653298 -0.9472327983245749 -7.547280308312806 -1.067918414717907 -8.922697736279979 -0.9064193612649891 -5.05305560476592 6.622148164113315 -3.905101183939973 6.020618958475664 -3.98597483593536 5.652457902991198 -6.275449585183051 4.127744945274094 -6.72868968733474 4.136058323286965 -7.27772491667968 5.206817501283571 3.354175750142323 4.951616781581719 3.573350367991242 5.273079094114264 3.129344250468945 4.228303088262042 4.269826941252457 6.128012269342688 3.90441428202094 4.990208963003467 3.772065297827613 5.060605702879127 6.702412297663996 2.1096849018762 6.655360169729002 2.163960619423023 6.943140012061708 2.225444299620932 3.765924924014517 -0.3463911266747499 3.789307562308364 -0.4094590512181034 3.500449096548218 -0.3224776095588098 3.64298411173188 5.25514485092069 3.38025674050513 4.943435513391906 2.73421192946776 4.403165535243263 3.774958042568282 6.421429065416803 3.011909711981109 5.52641071277909 2.877940667869294 5.585437524330192 7.017936891579413 3.909965806713123 6.543176739322377 3.920145912335438 7.609975503683925 4.890018825072455 -2.761677657248522 2.029500599706688 -2.586835986024328 1.870394885037136 -2.844537059602854 2.008309631066081 -3.835270694369624 4.598089772890178 -3.918084073209415 4.576787760213856 -4.008092862297267 4.777051305618736 8.467885565626732 -5.943713672615953 7.899901978429571 -5.654845163920292 8.282079997379809 -5.637824583607729 6.042017955053143 -6.814426757901017 6.207313497316516 -6.865170711259076 5.932658345836569 -7.048441644263794 -0.654931246901786 -8.87572412908016 -0.7033889763933321 -8.94094689105154 -0.7708877180182611 -8.67837023956853 -7.828473878628092 -6.498814991450156 -7.675148319401016 -6.175515803589196 -7.29247008265804 -6.16825830814427 9.383696738578189 -5.089147503819769 9.288607905876326 -5.078632244589382 9.163513299032058 -4.884771330406955 6.149763548693514 -6.719783069680686 6.463426586427903 -6.72963564814617 6.156160333179555 -6.85925835793994 -6.416444883919922 0.4564335272708737 -7.099418415463823 0.185251862407488 -7.342427430768073 0.2680930777047664 -0.8733676025194243 2.955435193762439 -0.9486586336982406 2.928653260658535 -0.9387513316986113 3.177981314570622 0.2390899787757239 1.121124098115781 0.2049310777999552 0.7494616287782674 0.1623900218977226 1.096942491253779 2.697162291991673 -7.439733174679802 2.351259293116423 -7.267382833582784 2.561736891303922 -6.107532364065592 -7.483393821633138 0.4455058785349199 -8.914208763313722 0.1371312959481615 -8.930165451960262 0.295333508518245 -7.432231818739337 3.138655979150429 -6.977197707339149 3.142543371988218 -6.95826376736089 3.067299847819562 -9.538039950976902 1.753491054251887 -8.129971552498796 2.009779509810612 -8.076504999067801 1.942273857748956 1.586050509773324 -1.101728573334035 1.495417258704747 -1.082469132367868 1.514655812151018 -0.7334080930896799 0.848532342347732 -2.78422799511566 0.9386843079517104 -2.804837975377466 0.9056622836245004 -3.026816851248352 -6.87969655198374 -0.6882856501199133 -6.180492195800953 -0.9112870973468583 -7.107027252437868 -0.7876375390194846 -7.147035477462651 -3.156399070821825 -7.625633710012609 -3.157201018721693 -7.128542655161807 -3.081103406424559 -7.718161150097957 -2.869832060215034 -9.085934916881605 -2.809746725564581 -7.67646206602808 -2.797370727957003 -8.90510072222548 -0.8139328844854772 -7.529679053645937 -0.9754095865071504 -8.908472463734093 -0.9456976228573982 -7.210690829545285 4.875994604011638 -7.253841230344557 5.1963013655474 -5.881338388599651 4.50406112808743 -6.783802307654304 5.26301819230866 -6.201636592931429 4.184642820135692 -7.193159703222822 5.269845207239835 4.873549189960155 5.93692711853209 5.053724850986439 5.865516110681777 4.462075121711869 4.808897275595138 7.292904795002277 2.808409441747124 7.19840840418086 2.838397488863771 7.561292571124231 3.105880725196114 7.430419082646078 3.317686977760138 7.33108804176471 3.332484017562069 8.1446895956849 4.306100996550779 7.068893513549147 1.839229311548257 6.78298815180057 1.772553044467654 6.976466929022937 1.872974094695157 -3.45919853437108 5.75786510951576 -3.431496126799863 6.131233491670329 -3.375200879283819 5.745125750166509 -3.044170914533516 6.259261082509404 -2.872356450278772 7.328422963449643 -2.955184331484319 6.221493854929197 3.791337376614206 6.408479467987543 3.931373325290601 6.336109984127391 3.025786591428482 5.50585552532548 7.647720248807206 4.84458354354674 6.567221837176867 3.884141568478665 7.238755424174864 4.860237867715482 -3.769795641590861 4.853212271834425 -3.683295487647069 4.683780487940838 -3.854266820333741 4.863838823179988 8.540483215386344 -5.892575601653754 8.197397358396524 -5.907933248492452 7.967133376560895 -5.610343800351751 6.081375034645086 -6.819435075955772 6.197624860810667 -6.97081610700894 5.80543341433306 -7.001506192640144 2.8140929380626 -8.79297493691973 2.672106037527454 -8.709265195113094 2.694052004896493 -8.635718625076724 -7.360840524520197 -6.588309894264103 -7.704084751759124 -6.601281756698698 -7.172208132465931 -6.266624957468202 9.358294433600234 -5.114631927304724 9.405523130976883 -5.249161905572431 9.263260326210883 -5.103814835884413 6.407080260315937 -6.694157141549344 6.241312786510573 -6.960253543023304 6.099371398642951 -6.823128462645105 -3.130554944520676 5.227407523900158 -2.940368701141873 5.082412968960504 -3.00608556832405 5.019451911661345 1.443907975064636 3.009566474741562 1.392768651892923 2.763381990809926 1.353517222041405 2.969811712864057 4.650737616699059 -6.727729441427135 4.716744199031261 -7.743148165624424 4.266942852427738 -6.615506992460908 -9.071140312411432 0.2944633974503092 -9.055407814662802 0.1362472901876673 -10.28668002886894 -0.0937828797595812 -3.773360530426287 4.896600557490119 -3.750680886215156 4.97120033830512 -3.608858147557148 4.770238110183211 -7.53289520959112 2.701458828563071 -7.576834581716011 2.773091943295637 -7.100705157999414 2.711278583091485 -9.577442512528513 1.663494001273091 -9.62934706237974 1.724115776184242 -8.17428369246934 1.941646553319781 -7.81789872000735 -0.5108880977619668 -7.925738781038671 -0.7049677603238156 -7.780241514356955 -0.1627572382919025 -0.3664504784439115 -2.918283023253877 -0.3271898303935311 -3.163058982880862 -0.4003858537230914 -3.128404622530123 -3.148104590430492 -4.723003393556979 -3.334860453426127 -4.865370207353467 -3.210576798330826 -4.677163784487616 -1.395218845609698 -5.443644561343438 -1.443959236100936 -5.377229732235214 -1.316512064019561 -5.240797323619147 -7.787263952156327 -2.781924358475356 -7.744361347278708 -2.709899126802834 -7.287339521616378 -2.718342435752688 -9.076011327401556 -2.99138269813291 -9.03710292577769 -2.925003092659073 -7.666572568824681 -2.976800579108238 -8.848305698669181 -0.8140373333688989 -8.851696614398072 -0.9458017672404062 -10.16170857392661 -0.6825958909967832 -1.040226995247436 8.578003799303744 -0.3851475606342147 7.649532137868212 -0.6418995047070736 7.398626793913742 -6.791185263749208 5.136836418696446 -7.200547990069486 5.143462673449845 -7.687594056897973 6.085286508094633 5.328590197088473 6.927864112478795 5.116453585483766 5.909410591143172 4.936590354621746 5.981307350482459 7.40562559675408 3.198016750009801 7.037176307619113 2.935283787564428 7.306308382958497 3.212871115809425 8.280426782920902 4.256599975095995 7.473686813896915 3.279455971915816 8.188880842524677 4.269016917995517 -3.121678174578922 6.214017685437319 -3.032336604943796 6.176772711451529 -3.080035187647084 5.826761646029444 -4.064391166869241 7.039200860234 -3.978727878031649 7.010881474673525 -3.997509586052842 5.931604622387955 4.716810930553826 7.113391170709449 3.87935099306713 6.306692144878103 3.73907649699957 6.378775164524912 7.653443140774132 4.743071349325396 7.244516300415924 4.759328148477268 8.224676172670373 5.705182593954473 8.589069989065436 -5.401804206253233 8.685476913952527 -5.517917613663904 8.246228042817288 -5.420226833230213 5.950380016897553 -6.888351573934867 5.829734031808918 -7.151083490739215 5.716535945349822 -6.99827792502101 6.329976887835218 -7.444445810242726 6.079310741766163 -7.560349740341263 5.938075065571109 -7.477345904830089 3.648030716630628 -8.533174653926585 3.642055186490267 -8.611141909815 3.506912979032589 -8.46166022371338 -7.838113406866619 -6.259107765244684 -7.758917757279447 -6.135179534202703 -7.415617247831406 -6.123164672229621 9.338938362228362 -5.336702837402881 9.242747120781061 -5.317344943838871 9.199320618261513 -5.189777088698508 6.441712748022574 -6.609927054303896 6.586311701542256 -6.745322910101302 6.20428809670488 -6.752999988327257 7.45901239198993 -6.576650445976441 7.521171262621915 -6.706452308652097 7.313221789611619 -6.849888355574418 5.327297900583988 -7.497732947390289 4.96101672126361 -7.410250837308657 4.791985438184079 -6.393448434642259 -8.973048322673785 0.09368805104582501 -10.18786210624122 -0.2959617694932749 -10.24084246468124 -0.1040529529873537 -11.03574671084916 0.6911650590541538 -9.849740241730554 1.038480174062652 -9.791558687129761 0.9814944629179719 -9.461761610005713 -2.286137886242992 -10.75659909304071 -2.068782967820127 -9.415230739134167 -2.222866846366144 -10.09884371873968 -0.48395379180013 -8.789002283949557 -0.747684339765454 -10.13482258713969 -0.6655093740248087 0.2420699431879769 8.404827397964192 0.5215751719474426 8.610576067740357 0.7062362991890919 7.398958754048512 -7.355456083926312 6.045252120048752 -6.837541269088914 5.104195416427717 -7.738195418593551 6.050153291287474 4.849663849320372 7.057734058926635 5.087364117575771 6.997668551183808 4.669626389314941 6.035463120990829 8.291339532033625 4.326686009564462 8.19978347435528 4.33905670336054 8.887757765929553 5.204713154954328 -3.791426498015353 7.184865016877708 -3.646455252176806 8.220131701559021 -3.706736949528631 7.154787763625316 4.832422322582662 7.039874860515124 5.007217863813386 6.917949964255357 4.017462302655394 6.193364490230405 8.198275477145513 5.733581468844197 7.225753052870662 4.782860808236814 7.815867115999467 5.747013697197486 8.695492439150057 -5.521828640662377 8.354061003959405 -5.553084446659128 8.255934873121877 -5.425000924755263 6.32941090754643 -6.864572112469428 6.448048886577796 -6.99394840958314 6.214707203613981 -7.128945943891515 8.46005302508858 -5.928526389953852 8.268057903211902 -6.080553301519491 8.221420654770943 -6.011596916810401 -7.739636148797682 0.9160539968145308 -7.710056807611661 1.143598374101608 -7.400535590715782 0.8717983867746344 -7.476335612334193 -6.285611833348003 -7.820072536121256 -6.285705449040004 -7.397728585105807 -6.149469981422893 8.983551949191488 -5.392582583260899 8.802036041508512 -5.579571116364043 8.889699937979515 -5.367090655374562 6.596129007660912 -6.921729238484499 6.331806366037938 -7.059450696779978 6.214109891629436 -6.929543324702434 -7.840906910557184 0.2065396890655799 -7.823134473615471 0.4236551229774854 -7.479397580784825 0.4238032242109914 5.403250354818505 -7.456433614001966 5.44714017930667 -7.793709156066238 5.03613177516775 -7.371151395670309 -9.956211444287531 -0.09606984461399371 -9.901968525166041 -0.2877602649081492 -10.18932270967896 -0.3660431812972971 -10.96888940766614 0.6583064165969161 -11.03088046238132 0.7124922133221913 -9.785553559477243 0.9997840159759621 -10.75176751996626 -2.075844082053425 -10.70081004544833 -2.014953416345824 -9.410114233620595 -2.228385051922737 -9.882478990765385 -0.4894789985166593 -9.919087785409818 -0.6709566358517062 -10.17781002545755 -0.4324686368727615 1.973086817548392 8.775162110542233 2.073456556903941 8.439249232768111 1.760118758233272 8.266274949732306 -7.355893051787491 6.035139217269675 -7.738632574130896 6.040031310379674 -7.895675249693724 6.35572890440783 4.755953259092024 7.10117505962285 4.936890879330538 6.807500633840543 4.698653201530358 6.866233768884938 8.881865056477553 5.207681510575066 8.193911464926989 4.342014878462916 8.789778937523959 5.215777509063605 -3.567023200653953 8.239510501697062 -3.485281170383963 8.205188246932353 -3.636679076312206 7.174520399546183 5.002730093696144 6.988347316600743 4.784623973985226 6.821644505099476 4.608467887856551 6.942351551755317 8.200915224598788 5.694904571137292 7.818517792135292 5.708527979604562 8.382336284135629 6.009072709059925 -7.640754077580986 0.3502904432559122 -7.610227136120761 0.5768796973943583 -7.300328622433423 0.3133705363867954 8.752295864988689 -5.257974310796413 8.520711222363763 -5.352586884343154 8.683624809932937 -5.213540875446535 -7.383512819161629 1.615486151864548 -7.045255851850174 1.56780133338496 -7.092818134246431 1.331112866636004 9.216058004429662 -4.588944696320829 9.155802633392856 -4.807249290353734 9.080826027969591 -4.769648828027862 -7.563888096290102 0.9487953516270735 -7.527235853374553 1.196529730501106 -7.184763006546485 1.174210970859951 -7.630302431797364 0.1682635791268916 -7.260875675639328 0.3771226435993637 -7.287457386560325 0.1498170140715543 4.021944197128372 -8.321277962077289 3.710282400354488 -8.207401766278244 3.685928652310532 -7.859516517881581 -10.20681813314493 0.06374166861326873 -10.44103046175671 -0.2056412825270085 -10.62889198449577 -0.004829544958635267 -11.33757060876102 0.3299332866368258 -11.06989655349128 0.4434580411120462 -11.00590139692624 0.3907337674933596 -10.93675582579856 -1.489933784228467 -11.21906661463155 -1.401026336483101 -10.88077384336795 -1.431837684361402 -10.3823927298437 -0.5840073204946437 -10.12317404566467 -0.8221614784880638 -10.5596395438532 -0.7878020949513485 -1.814730889983079 8.61089390575034 -1.611430049953948 8.828839023972686 -1.615834864721014 8.293094617417673 -7.453867248912717 6.432445277851455 -7.260221681247103 6.119122849391917 -7.797266256922559 6.442545277235023 5.53582304901841 7.144123675288182 5.393343910433234 6.824179257647212 5.220278369457862 7.120775325574897 8.884875029733228 5.223710077424811 8.792789899193275 5.231813030241208 8.997431426691051 5.445946787423706 -3.218528724881931 8.353659643728127 -3.142359261060369 8.585258492464037 -3.138175189433178 8.317365019032891 4.814130817532872 7.434740768529738 4.939970439093995 7.208514868594181 4.54585703049935 7.161736605889143 8.434102477119943 5.975707014455302 7.865836740895702 5.680391139333189 8.090778324723388 5.987275507851667 -7.591005943910796 0.6062217419930539 -7.24953389326128 0.5767685969397471 -7.282057632106239 0.3420229973445143 -7.199326808919533 0.9181592597770775 -7.54050878292817 0.9496240426249764 -7.160381284168206 1.173992512444623 6.249641386265783 -7.083776125206647 6.29919748455012 -7.216898010070527 5.914689599860319 -7.02337559921768 -10.49291382516479 -0.2310377280508252 -10.63789637362116 -0.3114805503609948 -10.68063472916411 -0.03014462824183809 -11.23691440893257 0.3979838735056778 -11.32050148029596 0.4351794222741164 -10.98767111651761 0.4919174817930945 -11.1989547701045 -1.450640802191977 -11.12090449503825 -1.406631697688325 -10.86032803082546 -1.479091414228765 -10.59175004968914 -0.4865325643419837 -10.43811890949309 -0.5563633344249114 -10.61528799819944 -0.760199929410775 5.532248318194387 7.583289295059242 5.496535504559187 7.447443103446951 5.168886315289541 7.365943063405671 -7.487027993879361 6.003664093610519 -7.830448785404514 6.01329483810173 -7.911031530225858 6.136667593078347 5.52505120131981 7.196367035854346 5.209522134444327 7.172888476327961 5.196321233049179 7.312074496055821 8.736560394668635 5.275854911380717 8.846094317593119 5.475450592245355 8.940196896659442 5.490580774524839 -2.279150689010646 8.74370209437417 -2.219830157215937 8.684287937402377 -2.300373506391011 8.476309098196238 5.201938026693515 7.276423649238595 5.044873738304256 7.211527141739645 4.920373935155845 7.438211336220197 8.460523032565412 5.492339300060463 8.117312848289828 5.50583931127758 8.554216058595706 5.609838941235937 6.176397673910426 -7.292681087399546 5.838978350849863 -7.241079413747425 5.794782989367736 -7.095646520287728 -11.30737918634648 0.1715256504883076 -11.14133237321608 0.2182022158056376 -11.32324141032872 -0.05684265905028527 -10.55983482506775 -0.02988727853457548 -10.51661884714693 -0.3111780448464778 -10.74131848652431 -0.3051059973261299 -11.24791499099993 -0.3502225672437868 -11.4677873213602 -0.4112938962804223 -11.33513745992419 -0.3186119544810304 -11.25043997430787 -0.4183930563986958 -11.33426853498595 -0.4552433648619497 -11.47568516644927 -0.3709429057436157 -10.52085334959071 -0.486693300899215 -10.54454376524947 -0.7603525242860809 -10.74388029507606 -0.5088916691470116 -11.0734791832724 -0.9997547129525994 -11.24399792535239 -0.9644057792185449 -11.27212812476224 -0.7479573568234509 5.006846435673423 7.604819984842863 5.337233013825129 7.679442414591668 4.978979388225893 7.45691012177773 -7.472314108315947 6.027926149526729 -7.896230321513499 6.161101792884907 -7.552507478035663 6.163501045937264 6.612442373854851 7.225289807666986 6.568033924868935 7.091055228351658 6.381417688566287 7.364138822885103 5.229994844828195 7.390708196312395 5.437859442009398 7.127293216737903 5.108519115953327 7.241921539249105 8.863857021041271 5.57036678242239 8.769964914876876 5.554447965853877 8.899210574551541 5.707140730405462 0.5630702990475844 8.918172808578168 0.6831017678459112 9.02094398084264 0.6017656373906116 8.849027341067513 5.225877649618224 7.404059473402316 5.131383779189833 7.243594294828876 4.84918506126741 7.404696269567971 4.980384828495451 7.986939090479169 5.228726971077487 7.891158075813983 4.852034509448656 7.891839684728685 8.561642221226299 5.616449946382111 8.124451070387782 5.513201857738595 8.219528150327255 5.64268143251085 7.82095570648282 -0.3342272036161624 7.820002119320475 -0.5629349420333912 7.477964839792466 -0.3164301919684322 -10.50753475833932 -0.1035733729477003 -10.51385019564315 -0.3178100812963506 -10.73223469003857 -0.09750802350088886 -11.38964063218413 -0.3091237266096786 -11.4828768075653 -0.2822812359787225 -11.26210337181495 -0.2232559555111391 -11.25267877158462 -0.5413292099811872 -11.47856677714294 -0.4958093755231466 -11.38820264429764 -0.4634149773922885 -10.51035120217984 -0.4674430017563528 -10.48624088283821 -0.7019420723149915 -10.70926736066075 -0.7241433480761172 7.845644128403817 -0.02419302449264853 7.502764762946278 -0.0432567612130923 7.844049478789012 0.1933800494995118 -7.822783260867139 -0.2298481961284706 -7.845559445012757 -0.001841097336704264 -7.479089971007023 -0.2255670009436816 5.604855525251153 7.206321351226547 5.480262055549751 7.059138797071849 5.251847388980799 7.175966403540889 8.651500581638176 5.680456463118566 8.682652265325375 5.810220989327786 8.776750423011515 5.835196226157819 1.584619933842702 8.958069629267971 1.608273387713923 8.882207753686709 1.485772983708301 8.791928779812089 4.799109858124441 7.566151518812774 4.976298403093658 7.299798120732598 4.708393688786927 7.404342806766388 -7.761536119210644 -0.924080850109646 -7.793178801377531 -0.7079307177167631 -7.454962337104237 -0.6596704191253112 7.613136989127534 -0.7498145417369845 7.269619430338604 -0.742481892834188 7.271660093477241 -0.5028294652796737 -10.70221595034152 -0.4305822903290932 -10.90482643731967 -0.43775430480715 -10.92051144681378 -0.2102256539428505 -11.18280299208395 -0.1971672534214698 -11.28100018826619 -0.3873621256739218 -11.27725068815328 -0.173088120066662 -11.15625228072694 -0.4254444442964471 -11.24894199331346 -0.4534792626938192 -11.2630806435167 -0.2184774645733396 -10.70584857138288 -0.3670718909140796 -10.90502832334284 -0.6236457186092163 -10.90845917228694 -0.3742419134110793 7.278378418002919 0.1757309639274631 7.275205169583114 0.4039696451474449 7.618644319240165 0.413273990567097 -7.287293167286048 -0.2119090496941094 -7.662310025337017 0.002872670088507172 -7.319965044724375 0.02637050699736276 5.304261758068236 7.510718828934936 5.558892750505161 7.402139770442199 5.205967696573508 7.371192744173923 7.943854768287891 6.314353166684216 8.127594706888372 6.156102077184638 8.037753861832558 6.122809874252642 7.310957907657844 6.740480419146932 7.539061909339335 6.588340650501213 7.273791869601489 6.668048104795911 5.436421504585031 7.452357326752184 5.336979005721872 7.313335759549505 5.165539756279554 7.582007533895836 -7.056068249124015 -1.464908348649675 -7.392083045804741 -1.521561313377225 -7.110207297837602 -1.240657627793926 7.648649290072918 0.2807114310127205 7.649873525010325 0.05285049253222032 7.305131176915099 0.2880279903068188 -10.87205009150995 -0.5292217281837912 -10.96094106120326 -0.5307952075667954 -10.86392768529901 -0.3402247460209299 -10.87046564296891 -0.2533508204590864 -10.97483706903287 -0.04560951047551233 -10.88594628879937 -0.04402942136596071 7.65941400470839 -0.5257647217229292 7.315970564608313 -0.5349705400006876 7.659150054302678 -0.2763464000623481 -7.513933166500292 -1.170992836758235 -7.55519119575834 -0.9454712612601799 -7.172426749101089 -1.140875959246738 8.530400067812826 5.439495416581214 8.593907679644593 5.240374159134416 8.459571746985008 5.397204563665892 7.59007991289359 6.128803043075938 7.84955355450045 6.038053002042353 7.787513651940996 5.987941707509287 -7.631753046015854 -0.5387552600929779 -7.671599965303634 -0.2912972040263326 -7.332300693067998 -0.2484377953323516 7.635489710447182 0.04037490460496442 7.291975651081154 0.03940138049878873 7.290719076346226 0.2755267402021296 7.293684783939276 -0.5164621196727895 7.293339314235867 -0.2588010655243426 7.636853380435862 -0.2578290348497467 -7.539607897009619 -0.9469071451194763 -7.199692840819402 -0.9078650066005928 -7.156160674413737 -1.141481673185987 -7.262747511722701 -0.5487342049231557 -7.603196841502352 -0.5847805386810494 -7.305606594538739 -0.293280564857082</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1235\" source=\"#ID799\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID795\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID793\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID794\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"884\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID795\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID796\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 9 7 10 8 11 8 12 7 13 6 14 9 2 10 1 11 4 11 3 10 15 9 6 12 16 13 1 14 4 14 17 13 7 12 18 15 19 16 8 17 13 17 20 16 21 15 22 18 8 19 10 20 11 20 13 19 23 18 9 21 24 22 10 23 11 23 25 22 12 21 14 24 26 25 2 26 3 26 27 25 15 24 28 27 29 28 30 29 31 29 32 28 33 27 34 30 35 31 29 28 32 28 36 31 37 30 6 32 38 33 16 34 17 34 39 33 7 32 18 35 8 36 22 37 23 37 13 36 21 35 18 38 40 39 19 40 20 40 41 39 21 38 42 41 43 42 44 43 45 43 46 42 47 41 24 44 48 45 10 46 11 46 49 45 25 44 50 47 26 48 14 49 15 49 27 48 51 47 52 50 53 51 54 52 55 52 56 51 57 50 16 53 38 54 58 55 59 55 39 54 17 53 60 56 61 57 62 58 63 58 64 57 65 56 66 59 40 60 18 61 21 61 41 60 67 59 68 62 69 63 70 64 71 64 72 63 73 62 48 65 74 66 10 67 11 67 75 66 49 65 76 68 77 69 78 70 79 70 80 69 81 68 82 71 83 72 84 73 85 73 86 72 87 71 88 74 89 75 90 76 91 76 92 75 93 74 94 77 95 78 96 79 97 79 98 78 99 77 100 80 66 81 18 82 21 82 67 81 101 80 102 83 103 84 104 85 105 85 106 84 107 83 108 86 109 87 103 88 106 88 110 87 111 86 69 89 112 90 70 91 71 91 113 90 72 89 74 92 114 93 10 94 11 94 115 93 75 92 116 95 83 96 82 97 87 97 86 96 117 95 89 98 118 99 90 100 91 100 119 99 92 98 120 101 94 102 96 103 97 103 99 102 121 101 122 104 123 105 124 106 125 107 124 106 123 105 126 105 127 106 128 107 127 106 126 105 129 104 124 108 130 109 131 110 132 110 133 109 127 108 134 111 135 112 136 113 137 113 138 112 139 111 140 114 100 115 18 116 21 116 101 115 141 114 142 117 102 118 104 119 105 119 107 118 143 117 104 120 103 121 144 122 145 122 106 121 105 120 103 123 109 124 123 125 126 125 110 124 106 123 146 126 147 127 148 128 147 127 149 129 148 128 149 129 150 130 148 128 148 128 150 130 151 131 150 130 152 132 151 131 152 132 153 133 151 131 151 131 153 133 154 134 153 133 155 135 154 134 154 134 155 135 156 136 155 135 157 137 156 136 156 136 157 137 158 138 157 137 159 139 158 138 159 139 160 140 158 138 158 138 160 140 161 141 160 140 162 142 161 141 161 141 162 142 163 143 162 142 164 144 163 143 164 144 165 145 163 143 163 143 165 145 166 146 165 145 167 147 166 146 167 147 168 148 166 146 166 146 168 148 169 149 168 148 170 150 169 149 171 151 169 149 170 150 150 130 149 129 172 152 172 152 149 129 173 153 149 129 174 154 173 153 173 153 174 154 175 155 174 154 176 156 175 155 175 155 176 156 177 157 176 156 178 158 177 157 177 157 178 158 179 159 179 159 178 158 180 160 178 158 181 161 180 160 180 160 181 161 182 162 181 161 183 163 182 162 182 162 183 163 184 164 183 163 185 165 184 164 184 164 185 165 186 166 186 166 185 165 187 167 185 165 168 148 187 167 167 147 187 167 168 148 188 148 189 167 190 147 189 167 188 148 191 165 189 167 191 165 192 166 192 166 191 165 193 164 193 164 191 165 194 163 193 164 194 163 195 162 195 162 194 163 196 161 195 162 196 161 197 160 197 160 196 161 198 158 197 160 198 158 199 159 199 159 198 158 200 157 200 157 198 158 201 156 200 157 201 156 202 155 202 155 201 156 203 154 202 155 203 154 204 153 204 153 203 154 205 129 204 153 205 129 206 152 206 152 205 129 207 130 208 150 209 149 210 151 209 149 208 150 188 148 209 149 188 148 211 146 211 146 188 148 190 147 211 146 190 147 212 145 211 146 212 145 213 143 213 143 212 145 214 144 213 143 214 144 215 142 213 143 215 142 216 141 216 141 215 142 217 140 216 141 217 140 218 138 218 138 217 140 219 139 218 138 219 139 220 137 218 138 220 137 221 136 221 136 220 137 222 135 221 136 222 135 223 134 223 134 222 135 224 133 223 134 224 133 225 131 225 131 224 133 226 132 225 131 226 132 207 130 225 131 207 130 227 128 227 128 207 130 205 129 227 128 205 129 228 127 227 128 228 127 229 126 69 168 230 169 112 170 113 170 231 169 72 168 74 171 232 172 114 173 115 173 233 172 75 171 234 174 116 175 82 176 87 176 117 175 235 174 120 177 236 178 94 179 99 179 237 178 121 177 109 180 125 181 123 182 126 182 128 181 110 180 238 183 123 184 122 185 129 185 126 184 239 183 124 186 240 187 122 188 129 188 241 187 127 186 124 189 131 190 242 191 243 191 132 190 127 189 134 192 244 193 135 194 138 194 245 193 139 192 140 195 246 196 100 197 101 197 247 196 141 195 248 198 142 199 104 200 105 200 143 199 249 198 250 201 104 202 144 203 145 203 105 202 251 201 103 204 238 205 144 206 145 206 239 205 106 204 103 207 123 208 238 209 239 209 126 208 106 207 252 210 253 211 254 212 255 212 256 211 257 210 253 213 258 214 259 215 260 215 261 214 256 213 262 216 263 217 258 218 261 218 264 217 265 216 266 219 267 220 262 221 265 221 268 220 269 219 270 222 271 223 272 224 273 224 274 223 275 222 276 225 277 226 270 227 275 227 278 226 279 225 280 228 281 229 282 230 283 230 284 229 285 228 281 231 286 232 287 233 288 233 289 232 284 231 286 234 290 235 291 236 292 236 293 235 289 234 290 237 142 238 248 239 249 239 143 238 293 237 242 240 131 241 294 242 295 242 132 241 243 240 296 243 294 244 297 245 298 245 295 244 299 243 300 246 297 247 301 248 302 248 298 247 303 246 304 249 301 250 305 251 306 251 302 250 307 249 308 252 309 253 310 254 311 254 312 253 313 252 314 255 315 256 316 257 317 257 318 256 319 255 309 258 320 259 321 260 322 260 323 259 312 258 324 261 316 262 325 263 326 263 317 262 327 261 328 264 252 265 329 266 330 266 257 265 331 264 230 267 332 268 112 269 113 269 333 268 231 267 232 270 334 271 114 272 115 272 335 271 233 270 336 273 116 274 234 275 235 275 117 274 337 273 338 276 236 277 120 278 121 278 237 277 339 276 240 279 124 280 242 281 243 281 127 280 241 279 340 282 244 283 134 284 139 284 245 283 341 282 342 285 246 286 140 287 141 287 247 286 343 285 248 288 104 289 250 290 251 290 105 289 249 288 252 291 254 292 329 293 330 293 255 292 257 291 254 294 253 295 259 296 260 296 256 295 255 294 259 297 258 298 263 299 264 299 261 298 260 297 262 300 267 301 263 302 264 302 268 301 265 300 266 303 271 304 267 305 268 305 274 304 269 303 344 306 345 307 346 308 347 308 348 307 349 306 270 309 277 310 271 311 274 311 278 310 275 309 350 312 277 313 282 314 276 315 282 314 277 313 278 313 283 314 279 315 283 314 278 313 351 312 352 316 353 317 354 318 355 318 356 317 357 316 281 319 287 320 282 321 283 321 288 320 284 319 286 322 291 323 287 324 288 324 292 323 289 322 291 325 290 326 248 327 249 327 293 326 292 325 242 328 294 329 296 330 299 330 295 329 243 328 296 331 297 332 300 333 303 333 298 332 299 331 300 334 301 335 304 336 307 336 302 335 303 334 304 337 305 338 310 339 311 339 306 338 307 337 358 340 359 341 360 342 361 342 362 341 363 340 310 343 309 344 321 345 322 345 312 344 311 343 364 346 314 347 316 348 317 348 319 347 365 346 321 349 320 350 329 351 330 351 323 350 322 349 366 352 367 353 368 354 369 354 370 353 371 352 364 355 316 356 324 357 327 357 317 356 365 355 372 358 332 359 230 360 231 360 333 359 373 358 232 361 374 362 334 363 335 363 375 362 233 361 376 364 336 365 234 366 235 366 337 365 377 364 378 367 236 368 338 369 339 369 237 368 379 367 240 370 242 371 380 372 381 372 243 371 241 370 340 373 382 374 244 375 245 375 383 374 341 373 342 376 384 377 246 378 247 378 385 377 343 376 291 379 248 380 250 381 251 381 249 380 292 379 329 382 254 383 386 384 387 384 255 383 330 382 254 385 259 386 388 387 389 387 260 386 255 385 259 388 263 389 390 390 391 390 264 389 260 388 267 391 392 392 263 393 264 393 393 392 268 391 271 394 394 395 267 396 268 396 395 395 274 394 396 397 397 398 398 399 399 399 400 398 401 397 345 400 402 401 346 402 347 402 403 401 348 400 277 403 404 404 271 405 274 405 405 404 278 403 277 406 350 407 404 408 405 408 351 407 278 406 282 409 406 410 350 411 351 411 407 410 283 409 408 412 409 413 410 414 411 414 412 413 413 412 414 415 352 416 354 417 355 417 357 416 415 415 282 418 287 419 406 420 416 421 406 420 287 419 288 419 407 420 417 421 407 420 288 419 283 418 287 422 291 423 416 424 417 424 292 423 288 422 380 425 242 426 296 427 299 427 243 426 381 425 418 428 296 429 300 430 303 430 299 429 419 428 420 431 300 432 304 433 307 433 303 432 421 431 422 434 304 435 310 436 311 436 307 435 423 434 358 437 360 438 424 439 425 439 361 438 363 437 310 440 321 441 426 442 427 442 322 441 311 440 428 443 314 444 364 445 365 445 319 444 429 443 321 446 329 447 430 448 431 448 330 447 322 446 432 449 368 450 367 451 370 451 369 450 433 449 434 452 364 453 324 454 327 454 365 453 435 452 372 455 436 456 332 457 333 457 437 456 373 455 374 458 438 459 334 460 335 460 439 459 375 458 440 461 336 462 376 463 377 463 337 462 441 461 442 464 378 465 338 466 339 466 379 465 443 464 444 467 382 468 340 469 341 469 383 468 445 467 446 470 384 471 342 472 343 472 385 471 447 470 291 473 250 474 448 475 449 475 251 474 292 473 329 476 386 477 430 478 431 478 387 477 330 476 386 479 254 480 388 481 389 481 255 480 387 479 259 482 390 483 388 484 389 484 391 483 260 482 390 485 263 486 392 487 393 487 264 486 391 485 267 488 394 489 392 490 393 490 395 489 268 488 271 491 404 492 394 493 395 493 405 492 274 491 450 494 451 495 452 496 453 496 454 495 455 494 345 497 456 498 402 499 403 499 457 498 348 497 451 500 458 501 452 502 453 502 459 501 454 500 460 503 352 504 414 505 415 505 357 504 461 503 416 506 291 507 448 508 449 508 292 507 417 506 380 509 296 510 418 511 419 511 299 510 381 509 418 512 300 513 420 514 421 514 303 513 419 512 420 515 304 516 422 517 423 517 307 516 421 515 422 518 310 519 426 520 427 520 311 519 423 518 424 521 360 522 462 523 463 523 361 522 425 521 426 524 321 525 430 526 431 526 322 525 427 524 464 527 314 528 428 529 429 529 319 528 465 527 466 530 467 531 468 532 469 532 470 531 471 530 368 533 432 534 472 535 473 535 433 534 369 533 466 536 468 537 474 538 475 538 469 537 471 536 476 539 434 540 324 541 327 541 435 540 477 539 478 542 436 543 372 544 373 544 437 543 479 542 374 545 480 546 438 547 439 547 481 546 375 545 482 548 440 549 376 550 377 550 441 549 483 548 484 551 378 552 442 553 443 553 379 552 485 551 444 554 486 555 382 556 383 556 487 555 445 554 446 557 488 558 384 559 385 559 489 558 447 557 450 560 452 561 490 562 491 562 453 561 455 560 456 563 492 564 402 565 403 565 493 564 457 563 494 566 495 567 496 568 497 568 498 567 499 566 452 569 458 570 500 571 501 571 459 570 453 569 458 572 502 573 503 574 504 574 505 573 459 572 506 575 460 576 414 577 415 577 461 576 507 575 508 578 424 579 462 580 463 580 425 579 509 578 510 581 511 582 512 583 513 583 514 582 515 581 464 584 516 585 314 586 319 586 517 585 465 584 518 587 519 588 520 589 521 589 522 588 523 587 518 590 520 591 524 592 525 592 521 591 523 590 526 593 527 594 324 595 327 595 528 594 529 593 472 596 432 597 530 598 531 598 433 597 473 596 532 599 533 600 534 601 535 601 536 600 537 599 532 602 534 603 538 604 539 604 535 603 537 602 540 605 476 606 324 607 327 607 477 606 541 605 478 608 542 609 436 610 437 610 543 609 479 608 480 611 544 612 438 613 439 613 545 612 481 611 546 614 440 615 482 616 483 616 441 615 547 614 548 617 484 618 442 619 443 619 485 618 549 617 550 620 486 621 444 622 445 622 487 621 551 620 446 623 552 624 488 625 489 625 553 624 447 623 450 626 490 627 554 628 555 628 491 627 455 626 556 629 557 630 558 631 559 631 560 630 561 629 456 632 562 633 492 634 493 634 563 633 457 632 564 635 565 636 566 637 567 637 568 636 569 635 494 638 496 639 570 640 571 640 497 639 499 638 572 641 557 642 556 643 561 643 560 642 573 641 500 644 458 645 574 646 575 646 459 645 501 644 576 647 458 648 503 649 504 649 459 648 577 647 503 650 502 651 578 652 579 652 505 651 504 650 580 653 460 654 506 655 507 655 461 654 581 653 508 656 462 657 582 658 583 658 463 657 509 656 584 659 510 660 512 661 513 661 515 660 585 659 586 662 511 663 510 664 515 664 514 663 587 662 588 665 589 666 590 667 591 667 592 666 593 665 594 668 519 669 518 670 523 670 522 669 595 668 527 671 540 672 324 673 327 673 541 672 528 671 596 674 527 675 526 676 529 676 528 675 597 674 472 677 530 678 598 679 599 679 531 678 473 677 600 680 532 681 538 682 539 682 537 681 601 680 602 683 603 684 604 685 605 685 606 684 607 683 608 686 542 687 478 688 479 688 543 687 609 686 480 689 610 690 544 691 545 691 611 690 481 689 612 692 546 693 482 694 483 694 547 693 613 692 614 695 484 696 548 697 549 697 485 696 615 695 550 698 616 699 486 700 487 700 617 699 551 698 488 701 552 702 618 703 619 703 553 702 489 701 450 704 554 705 620 706 621 706 555 705 455 704 558 707 622 708 623 709 624 709 625 708 559 707 558 710 557 711 622 712 625 712 560 711 559 710 562 713 626 714 492 715 493 715 627 714 563 713 494 716 570 717 628 718 629 718 571 717 499 716 630 719 631 720 632 721 633 721 634 720 635 719 636 722 630 723 637 724 638 724 635 723 639 722 572 725 640 726 557 727 560 727 641 726 573 725 640 728 572 729 642 730 643 730 573 729 641 728 574 731 458 732 576 733 577 733 459 732 575 731 644 734 645 735 646 736 647 736 648 735 649 734 645 737 650 738 651 739 652 739 653 738 648 737 578 740 502 741 654 742 655 742 505 741 579 740 656 743 580 744 506 745 507 745 581 744 657 743 658 746 508 747 582 748 583 748 509 747 659 746 586 749 660 750 511 751 514 751 661 750 587 749 590 752 662 753 663 754 664 754 665 753 591 752 663 755 666 756 667 757 668 757 669 756 664 755 590 758 589 759 662 760 665 760 592 759 591 758 604 761 670 762 671 763 672 763 673 762 605 761 670 764 674 765 675 766 676 766 677 765 673 764 678 767 596 768 526 769 529 769 597 768 679 767 598 770 530 771 680 772 681 772 531 771 599 770 671 773 602 774 604 775 605 775 607 774 672 773 608 776 682 777 542 778 543 778 683 777 609 776 610 779 684 780 544 781 545 781 685 780 611 779 686 782 546 783 612 784 613 784 547 783 687 782 688 785 614 786 548 787 549 787 615 786 689 785 550 788 690 789 616 790 617 790 691 789 551 788 552 791 692 792 618 793 619 793 693 792 553 791 631 794 694 795 695 796 696 796 697 795 634 794 623 797 622 798 698 799 699 799 625 798 624 797 562 800 700 801 626 802 627 802 701 801 563 800 628 803 570 804 702 805 703 805 571 804 629 803 632 806 631 807 695 808 696 808 634 807 633 806 637 809 630 810 632 811 633 811 635 810 638 809 704 812 636 813 637 814 638 814 639 813 705 812 706 815 707 816 708 817 709 817 710 816 711 815 640 818 642 819 712 820 713 820 643 819 641 818 714 821 715 822 716 823 717 823 718 822 719 821 715 824 720 825 716 826 717 826 721 825 718 824 645 827 651 828 646 829 647 829 652 828 648 827 650 830 722 831 651 832 652 832 723 831 653 830 578 833 654 834 724 835 725 835 655 834 579 833 726 836 580 837 656 838 657 838 581 837 727 836 658 839 582 840 728 841 729 841 583 840 659 839 730 842 660 843 586 844 587 844 661 843 731 842 663 845 662 846 666 847 669 847 665 846 664 845 667 848 666 849 732 850 733 850 669 849 668 848 670 851 675 852 671 853 672 853 676 852 673 851 674 854 734 855 675 856 676 856 735 855 677 854 736 857 596 858 678 859 679 859 597 858 737 857 598 860 680 861 738 862 739 862 681 861 599 860 608 863 740 864 682 865 683 865 741 864 609 863 742 866 684 867 610 868 611 868 685 867 743 866 684 869 744 870 544 871 545 871 745 870 685 869 746 872 686 873 612 874 613 874 687 873 747 872 748 875 614 876 688 877 689 877 615 876 749 875 690 878 750 879 616 880 617 880 751 879 691 878 618 881 692 882 742 883 743 883 693 882 619 881 552 884 752 885 692 886 693 886 753 885 553 884 700 887 754 888 626 889 627 889 755 888 701 887 628 890 702 891 756 892 757 892 703 891 629 890 758 893 636 894 704 895 705 895 639 894 759 893 650 896 760 897 722 898 723 898 761 897 653 896 724 899 654 900 762 901 763 901 655 900 725 899 764 902 726 903 656 904 657 904 727 903 765 902 766 905 658 906 728 907 729 907 659 906 767 905 730 908 768 909 660 910 661 910 769 909 731 908 667 911 732 912 770 913 771 913 733 912 668 911 674 914 772 915 734 916 735 916 773 915 677 914 774 917 736 918 678 919 679 919 737 918 775 917 738 920 680 921 776 922 777 922 681 921 739 920 740 923 778 924 682 925 683 925 779 924 741 923 742 926 780 927 684 928 685 928 781 927 743 926 782 929 783 930 784 931 785 931 786 930 787 929 788 932 789 933 790 934 791 934 792 933 793 932 794 935 748 936 688 937 689 937 749 936 795 935 796 938 782 939 797 940 798 940 787 939 799 938 692 941 780 942 742 943 743 943 781 942 693 941 800 944 801 945 802 946 803 946 804 945 805 944 700 947 806 948 754 949 755 949 807 948 701 947 756 950 702 951 808 952 809 952 703 951 757 950 810 953 758 954 704 955 705 955 759 954 811 953 760 956 812 957 722 958 723 958 813 957 761 956 724 959 762 960 814 961 815 961 763 960 725 959 816 962 726 963 764 964 765 964 727 963 817 962 766 965 728 966 818 967 819 967 729 966 767 965 820 968 768 969 730 970 731 970 769 969 821 968 770 971 732 972 822 973 823 973 733 972 771 971 772 974 824 975 734 976 735 976 825 975 773 974 826 977 736 978 774 979 775 979 737 978 827 977 738 980 776 981 828 982 829 982 777 981 739 980 789 983 830 984 831 985 832 985 833 984 792 983 782 986 784 987 834 988 835 988 785 987 787 986 789 989 831 990 790 991 791 991 832 990 792 989 797 992 782 993 834 994 835 994 787 993 798 992 830 995 800 996 836 997 837 997 805 996 833 995 800 998 802 999 836 1000 837 1000 803 999 805 998 806 1001 838 1002 754 1003 755 1003 839 1002 807 1001 756 1004 808 1005 840 1006 841 1006 809 1005 757 1004 842 1007 758 1008 810 1009 811 1009 759 1008 843 1007 760 1010 844 1011 812 1012 813 1012 845 1011 761 1010 814 1013 762 1014 846 1015 847 1015 763 1014 815 1013 848 1016 816 1017 764 1018 765 1018 817 1017 849 1016 850 1019 766 1020 818 1021 819 1021 767 1020 851 1019 852 1022 768 1023 820 1024 821 1024 769 1023 853 1022 770 1025 822 1026 854 1027 855 1027 823 1026 771 1025 772 1028 856 1029 824 1030 825 1030 857 1029 773 1028 858 1031 826 1032 774 1033 775 1033 827 1032 859 1031 828 1034 776 1035 860 1036 861 1036 777 1035 829 1034 830 1037 862 1038 831 1039 832 1039 863 1038 833 1037 862 1040 830 1041 836 1042 837 1042 833 1041 863 1040 806 1043 864 1044 838 1045 839 1045 865 1044 807 1043 808 1046 866 1047 840 1048 841 1048 867 1047 809 1046 868 1049 842 1050 810 1051 811 1051 843 1050 869 1049 844 1052 870 1053 812 1054 813 1054 871 1053 845 1052 872 1055 814 1056 846 1057 847 1057 815 1056 873 1055 874 1058 816 1059 848 1060 849 1060 817 1059 875 1058 850 1061 818 1062 876 1063 877 1063 819 1062 851 1061 852 1064 820 1065 878 1066 879 1066 821 1065 853 1064 822 1067 880 1068 854 1069 855 1069 881 1068 823 1067 856 1070 882 1071 824 1072 825 1072 883 1071 857 1070 884 1073 826 1074 858 1075 859 1075 827 1074 885 1073 828 1076 860 1077 886 1078 887 1078 861 1077 829 1076 864 1079 888 1080 838 1081 839 1081 889 1080 865 1079 890 1082 840 1083 891 1084 892 1084 841 1083 893 1082 840 1085 866 1086 891 1087 892 1087 867 1086 841 1085 868 1088 894 1089 842 1090 843 1090 895 1089 869 1088 870 1091 844 1092 896 1093 897 1093 845 1092 871 1091 872 1094 846 1095 898 1096 899 1096 847 1095 873 1094 846 1097 900 1098 898 1099 899 1099 901 1098 847 1097 902 1100 874 1101 848 1102 849 1102 875 1101 903 1100 850 1103 876 1104 904 1105 905 1105 877 1104 851 1103 906 1106 852 1107 907 1108 908 1108 853 1107 909 1106 907 1109 852 1110 878 1111 879 1111 853 1110 908 1109 854 1112 880 1113 910 1114 911 1114 881 1113 855 1112 856 1115 912 1116 882 1117 883 1117 913 1116 857 1115 914 1118 884 1119 858 1120 859 1120 885 1119 915 1118 916 1121 914 1122 858 1123 859 1123 915 1122 917 1121 886 1124 860 1125 918 1126 919 1126 861 1125 887 1124 920 1127 921 1128 922 1129 923 1129 924 1128 925 1127 866 1130 926 1131 891 1132 892 1132 927 1131 867 1130 928 1133 894 1134 868 1135 869 1135 895 1134 929 1133 870 1136 896 1137 930 1138 931 1138 897 1137 871 1136 926 1139 872 1140 898 1141 899 1141 873 1140 927 1139 932 1142 933 1143 934 1144 935 1144 936 1143 937 1142 938 1145 939 1146 940 1147 941 1147 942 1146 943 1145 907 1148 878 1149 944 1150 945 1150 879 1149 908 1148 880 1151 946 1152 910 1153 911 1153 947 1152 881 1151 912 1154 948 1155 882 1156 883 1156 949 1155 913 1154 914 1157 944 1158 884 1159 885 1159 945 1158 915 1157 950 1160 951 1161 952 1162 953 1162 954 1161 955 1160 921 1163 956 1164 922 1165 923 1165 957 1164 924 1163 926 1166 958 1167 891 1168 892 1168 959 1167 927 1166 960 1169 961 1170 962 1171 963 1171 964 1170 965 1169 966 1172 967 1173 961 1174 964 1174 968 1173 969 1172 926 1175 898 1176 958 1177 959 1177 899 1176 927 1175 933 1178 970 1179 934 1180 935 1180 971 1179 936 1178 940 1181 939 1182 972 1183 973 1183 942 1182 941 1181 974 1184 907 1185 944 1186 945 1186 908 1185 975 1184 976 1187 977 1188 978 1189 979 1189 980 1188 981 1187 982 1190 976 1191 983 1192 984 1192 981 1191 985 1190 974 1193 944 1194 914 1195 915 1195 945 1194 975 1193 986 1196 950 1197 952 1198 953 1198 955 1197 987 1196 921 1199 988 1200 956 1201 957 1201 989 1200 924 1199 990 1202 961 1203 960 1204 965 1204 964 1203 991 1202 966 1205 961 1206 990 1207 991 1207 964 1206 969 1205 934 1208 970 1209 988 1210 989 1210 971 1209 935 1208 939 1211 992 1212 972 1213 973 1213 993 1212 942 1211 976 1214 978 1215 994 1216 995 1216 979 1215 981 1214 983 1217 976 1218 994 1219 995 1219 981 1218 984 1217 992 1220 950 1221 986 1222 987 1222 955 1221 993 1220 988 1223 996 1224 956 1225 957 1225 997 1224 989 1223 970 1226 996 1227 988 1228 989 1228 997 1227 971 1226 992 1229 998 1230 972 1231 973 1231 999 1230 993 1229 998 1232 992 1233 986 1234 987 1234 993 1233 999 1232</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID800\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID801\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID805\">-0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035627 -0.3378135984617037 -1.272300980758927</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID805\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID802\">\r\n\t\t\t\t\t<float_array count=\"864\" id=\"ID806\">-0.9999410267352775 -0.00282230173442009 -0.01048702362534358 -0.9999410261811262 -1.189599814927649e-005 -0.01086020341990315 -0.9999410269663441 -0.002736872445651152 -0.01050962029330042 -0.9999410263908806 7.648229374381802e-005 -0.01085992130776995 0.9999410261811262 1.189599814927649e-005 0.01086020341990315 0.9999410269663441 0.002736872445651152 0.01050962029330042 0.9999410263908806 -7.648229374381802e-005 0.01085992130776995 0.9999410267352775 0.00282230173442009 0.01048702362534358 -0.9999410251909873 0.002884647210172477 -0.01047019343041532 -0.9999410250023675 0.002799366906628021 -0.01049333417637169 0.9999410251909873 -0.002884647210172477 0.01047019343041532 0.9999410250023675 -0.002799366906628021 0.01049333417637169 9.286956521860817e-019 -0.2567189364859696 -0.9664861031848894 9.286956521859729e-019 -0.2567189364859594 -0.9664861031848921 -5.715048115234753e-019 0.002173823798311303 -0.9999976372422557 -5.715048115234815e-019 0.002173823798316985 -0.9999976372422557 -9.286956521859729e-019 0.2567189364859594 0.9664861031848921 5.715048115234753e-019 -0.002173823798311303 0.9999976372422557 5.715048115234815e-019 -0.002173823798316985 0.9999976372422557 -9.286956521860817e-019 0.2567189364859696 0.9664861031848894 -0.999941027016906 -0.005440356935925922 -0.009399202348336674 -0.999941027241365 -0.005363709391798363 -0.009443127715125572 0.999941027241365 0.005363709391798363 0.009443127715125572 0.999941027016906 0.005440356935925922 0.009399202348336674 0.0038266651399871 -0.2544110204982774 -0.9670886150105025 0.003828242018622541 0.004557013776478851 -0.999982288937403 0.004942785664726246 -0.2568034608485688 -0.9664510082596376 -0.004942785664726246 0.2568034608485688 0.9664510082596376 -0.003828242018622541 -0.004557013776478851 0.999982288937403 -0.0038266651399871 0.2544110204982774 0.9670886150105025 -0.9999410238180577 0.005496359094067572 -0.009366905700582823 -0.9999410236206152 0.005419907617564657 -0.009411369824492982 0.9999410238180577 -0.005496359094067572 0.009366905700582823 0.9999410236206152 -0.005419907617564657 0.009411369824492982 1.643076813689116e-018 0.2609179530237881 -0.9653609800431529 1.643076813688965e-018 0.26091795302378 -0.9653609800431552 -1.643076813688965e-018 -0.26091795302378 0.9653609800431552 -1.643076813689116e-018 -0.2609179530237881 0.9653609800431529 0.003826725799420876 0.2632158559531372 -0.9647293762213907 0.004944863497418337 0.002079709308106825 -0.9999856114635779 -0.004944863497418337 -0.002079709308106825 0.9999856114635779 -0.003826725799420876 -0.2632158559531372 0.9647293762213907 5.715048112519107e-019 -0.4981166872421416 -0.8671100079522289 5.715048112518241e-019 -0.4981166872421474 -0.8671100079522257 -5.715048112518241e-019 0.4981166872421474 0.8671100079522257 -5.715048112519107e-019 0.4981166872421416 0.8671100079522289 -0.999941027776978 -0.007687610089140697 -0.007670829123266627 -0.9999410279774628 -0.007624925862152798 -0.007733115347123785 0.9999410279774628 0.007624925862152798 0.007733115347123785 0.999941027776978 0.007687610089140697 0.007670829123266627 0.003830007769246236 -0.4960444625889477 -0.8682886744483829 0.004945237506788235 -0.498190537464372 -0.8670534775934884 -0.004945237506788235 0.498190537464372 0.8670534775934884 -0.003830007769246236 0.4960444625889477 0.8682886744483829 -0.9999410231812367 0.007733425532157156 -0.007625240245423564 -0.9999410229394634 0.007671116821697991 -0.00768795222977871 0.9999410231812367 -0.007733425532157156 0.007625240245423564 0.9999410229394634 -0.007671116821697991 0.00768795222977871 3.714782186172491e-018 0.5018825991966421 -0.8649357528878214 3.714782186172493e-018 0.5018825991966418 -0.8649357528878217 -3.714782186172493e-018 -0.5018825991966418 0.8649357528878217 -3.714782186172491e-018 -0.5018825991966421 0.8649357528878214 0.003821063636068529 0.5039417767426235 -0.8637291734833188 0.004941675560377144 0.2608252386265301 -0.9653733861765972 -0.004941675560377144 -0.2608252386265301 0.9653733861765972 -0.003821063636068529 -0.5039417767426235 0.8637291734833188 -1.143009550785445e-018 -0.7055662686997598 -0.7086439447798156 -1.143009550785445e-018 -0.7055662686997609 -0.7086439447798146 1.143009550785445e-018 0.7055662686997609 0.7086439447798146 1.143009550785445e-018 0.7055662686997598 0.7086439447798156 -0.9999410270511003 -0.009411083689174002 -0.005419771562170325 -0.9999410273711995 -0.009366649538182812 -0.005496149220936206 0.9999410273711995 0.009366649538182812 0.005496149220936206 0.9999410270511003 0.009411083689174002 0.005419771562170325 0.003831559424319163 -0.7038698595571158 -0.7103186186208439 0.004947190279231937 -0.705623059879875 -0.7085701254456779 -0.004947190279231937 0.705623059879875 0.7085701254456779 -0.003831559424319163 0.7038698595571158 0.7103186186208439 -0.9999410254789244 0.009443272316692088 -0.005363783376497059 -0.9999410251117098 0.009399334675645549 -0.00544047848980481 0.9999410254789244 -0.009443272316692088 0.005363783376497059 0.9999410251117098 -0.009399334675645549 0.00544047848980481 4.00053320143097e-018 0.7086421448071717 -0.7055680765192622 4.000533201430981e-018 0.7086421448071734 -0.7055680765192605 -4.000533201430981e-018 -0.7086421448071734 0.7055680765192605 -4.00053320143097e-018 -0.7086421448071717 0.7055680765192622 0.003824929807736708 0.7103168903995655 -0.7038716396652572 0.004938464558228079 0.5017959577429818 -0.8649719234522071 -0.004938464558228079 -0.5017959577429818 0.8649719234522071 -0.003824929807736708 -0.7103168903995655 0.7038716396652572 -4.572041747584274e-018 -0.864936467361332 -0.5018813678833869 -4.572041747584255e-018 -0.8649364673613317 -0.5018813678833874 4.572041747584274e-018 0.864936467361332 0.5018813678833869 4.572041747584255e-018 0.8649364673613317 0.5018813678833874 -0.9999410251383567 -0.01049332216834374 -0.002799363342558378 -0.9999410254124463 -0.01047018167537675 -0.00288461310922097 0.9999410254124463 0.01047018167537675 0.00288461310922097 0.9999410251383567 0.01049332216834374 0.002799363342558378 0.004949545639221747 -0.8649707823906792 -0.5017978154679645 0.003832821996489258 -0.8637292188850311 -0.5039416096332962 -0.003832821996489258 0.8637292188850311 0.5039416096332962 -0.004949545639221747 0.8649707823906792 0.5017978154679645 -0.9999410277040745 0.01050954553455601 -0.0027368899825801 -0.9999410274483728 0.01048696668360297 -0.002822260666456722 0.9999410277040745 -0.01050954553455601 0.0027368899825801 0.9999410274483728 -0.01048696668360297 0.002822260666456722 5.715048312027202e-019 0.8671086552386754 -0.4981190420072052 5.715048312025381e-019 0.8671086552386785 -0.4981190420071999 -5.715048312027202e-019 -0.8671086552386754 0.4981190420072052 -5.715048312025381e-019 -0.8671086552386785 0.4981190420071999 0.003820269720511365 0.8682920451375475 -0.4960386374972395 0.0049414496731202 0.7085678671176957 -0.7056253678570574 -0.0049414496731202 -0.7085678671176957 0.7056253678570574 -0.003820269720511365 -0.8682920451375475 0.4960386374972395 -7.429561417819622e-018 -0.9653613948153605 -0.2609164184181239 -7.429561417819627e-018 -0.9653613948153605 -0.2609164184181246 7.429561417819622e-018 0.9653613948153605 0.2609164184181239 7.429561417819627e-018 0.9653613948153605 0.2609164184181246 -0.9999410236950654 -0.0108604323189624 1.189578101152491e-005 -0.9999410239817562 -0.01086014318859406 -7.647378754804853e-005 0.9999410239817562 0.01086014318859406 7.647378754804853e-005 0.9999410236950654 0.0108604323189624 -1.189578101152491e-005 0.004947196804022776 -0.9653740421109739 -0.2608227061858341 0.003828924557667887 -0.9647294463450653 -0.2632155669626615 -0.003828924557667887 0.9647294463450653 0.2632155669626615 -0.004947196804022776 0.9653740421109739 0.2608227061858341 -0.9999410275599662 0.01085981393770593 7.644316398962921e-005 -0.9999410273536835 0.01086009544374367 -1.190852621266681e-005 0.9999410275599662 -0.01085981393770593 -7.644316398962921e-005 0.9999410273536835 -0.01086009544374367 1.190852621266681e-005 2.286020727136626e-018 0.9664860372523969 -0.2567191847060875 2.28602072713672e-018 0.9664860372523976 -0.2567191847060854 -2.286020727136626e-018 -0.9664860372523969 0.2567191847060875 -2.28602072713672e-018 -0.9664860372523976 0.2567191847060854 0.003827393334498319 0.9670875751500726 -0.2544149623167159 0.004937611921748164 0.8670557886269709 -0.4981865909445694 -0.004937611921748164 -0.8670557886269709 0.4981865909445694 -0.003827393334498319 -0.9670875751500726 0.2544149623167159 -5.143545129757725e-018 -0.9999976392143629 -0.002172916404493806 -5.14354512975772e-018 -0.9999976392143629 -0.002172916404493386 5.143545129757725e-018 0.9999976392143629 0.002172916404493806 5.14354512975772e-018 0.9999976392143629 0.002172916404493386 -0.999941022673983 -0.01048738397334414 0.002822401655441478 -0.999941022932187 -0.01050997881948693 0.002736969591659315 0.999941022673983 0.01048738397334414 -0.002822401655441478 0.999941022932187 0.01050997881948693 -0.002736969591659315 0.00494289717588586 -0.9999856224609727 -0.002079095680684648 0.003823753939118948 -0.9999822999605859 -0.004558362792749011 -0.003823753939118948 0.9999822999605859 0.004558362792749011 -0.00494289717588586 0.9999856224609727 0.002079095680684648 -0.9999410263259161 0.01047008550038063 0.002884645539441912 -0.9999410261363435 0.01049322892617458 0.002799356372282648 0.9999410261363435 -0.01049322892617458 -0.002799356372282648 0.9999410263259161 -0.01047008550038063 -0.002884645539441912 8.00106323387303e-018 0.9999976415480206 0.002171842166549161 8.001063233873028e-018 0.9999976415480205 0.002171842166550713 -8.00106323387303e-018 -0.9999976415480206 -0.002171842166549161 -8.001063233873028e-018 -0.9999976415480205 -0.002171842166550713 0.003820960518357111 0.9999823146921165 0.004557473391502327 0.004943655417316188 0.9664498920219311 -0.2568076449055063 -0.004943655417316188 -0.9664498920219311 0.2568076449055063 -0.003820960518357111 -0.9999823146921165 -0.004557473391502327 -6.858057229063156e-018 -0.966486022918216 0.2567192386708286 -6.858057229063177e-018 -0.9664860229182158 0.2567192386708294 6.858057229063156e-018 0.966486022918216 -0.2567192386708286 6.858057229063177e-018 0.9664860229182158 -0.2567192386708294 -0.9999410247043286 -0.009399388050470537 0.005440461150824826 -0.9999410247948612 -0.009443327762755185 0.005363813286095222 0.9999410247043286 0.009399388050470537 -0.005440461150824826 0.9999410247948612 0.009443327762755185 -0.005363813286095222 0.004936272458468085 -0.9664516804695458 0.2568010563292271 0.003820755532216115 -0.9670893318392673 0.2544083844330651 -0.003820755532216115 0.9670893318392673 -0.2544083844330651 -0.004936272458468085 0.9664516804695458 -0.2568010563292271 -0.9999410256117496 0.009366813524850533 0.005496189854195041 -0.9999410253685213 0.009411196694760312 0.005419885766598052 0.9999410253685213 -0.009411196694760312 -0.005419885766598052 0.9999410256117496 -0.009366813524850533 -0.005496189854195041 3.429033357918545e-018 0.965360504839634 0.2609197112058935 3.429033357918479e-018 0.9653605048396337 0.2609197112058954 -3.429033357918545e-018 -0.965360504839634 -0.2609197112058935 -3.429033357918479e-018 -0.9653605048396337 -0.2609197112058954 0.003817824858266475 0.9647289711546364 0.263217469838665 0.004934312890925137 0.9999856557972721 0.002083448102078534 -0.004934312890925137 -0.9999856557972721 -0.002083448102078534 -0.003817824858266475 -0.9647289711546364 -0.263217469838665 -9.144078984033087e-018 -0.867110662481631 0.4981155478507642 -9.144078984033078e-018 -0.8671106624816305 0.4981155478507653 9.144078984033087e-018 0.867110662481631 -0.4981155478507642 9.144078984033078e-018 0.8671106624816305 -0.4981155478507653 -0.9999410258568779 -0.007670953598774204 0.007687735634113518 -0.9999410261583621 -0.007733206562220277 0.007625071909699455 0.9999410258568779 0.007670953598774204 -0.007687735634113518 0.9999410261583621 0.007733206562220277 -0.007625071909699455 0.004943216518040933 -0.8670551900821601 0.4981875770852226 0.003833002046245444 -0.8682878081597345 0.4960459558311885 -0.003833002046245444 0.8682878081597345 -0.4960459558311885 -0.004943216518040933 0.8670551900821601 -0.4981875770852226 -0.9999410272625215 0.00762500257451162 0.007733132154028003 -0.9999410269360286 0.00768770199564354 0.007670846638225618 0.9999410269360286 -0.00768770199564354 -0.007670846638225618 0.9999410272625215 -0.00762500257451162 -0.007733132154028003 1.854995159308181e-033 0.8649358526966459 0.501882427187809 0 0.8649358526966459 0.5018824271878087 -1.854995159308181e-033 -0.8649358526966459 -0.501882427187809 -0 -0.8649358526966459 -0.5018824271878087 0.003824655911536794 0.8637325256144357 0.5039360040747896 0.00493577675738415 0.965373481876459 0.2608249961133392 -0.00493577675738415 -0.965373481876459 -0.2608249961133392 -0.003824655911536794 -0.8637325256144357 -0.5039360040747896 -4.000534401751088e-018 -0.7086423925289491 0.7055678277181058 -4.000534401751267e-018 -0.7086423925289535 0.7055678277181015 4.000534401751088e-018 0.7086423925289491 -0.7055678277181058 4.000534401751267e-018 0.7086423925289535 -0.7055678277181015 -0.9999410250620634 -0.005419835344405121 0.009411258293619431 -0.9999410252935886 -0.005496284586928853 0.009366791902600188 0.9999410250620634 0.005419835344405121 -0.009411258293619431 0.9999410252935886 0.005496284586928853 -0.009366791902600188 0.004956122332517188 -0.7085675751092042 0.7056255581789024 0.003839165997742563 -0.7103157740092257 0.7038726887712835 -0.003839165997742563 0.7103157740092257 -0.7038726887712835 -0.004956122332517188 0.7085675751092042 -0.7056255581789024 -0.9999410286150683 0.005363601809037949 0.00944304335864537 -0.9999410283762649 0.005440312684114939 0.009399083344507243 0.9999410283762649 -0.005440312684114939 -0.009399083344507243 0.9999410286150683 -0.005363601809037949 -0.00944304335864537 1.143010565603663e-018 0.7055700372479684 0.708640192578646 1.143010565603663e-018 0.7055700372479702 0.7086401925786443 -1.143010565603663e-018 -0.7055700372479684 -0.708640192578646 -1.143010565603663e-018 -0.7055700372479702 -0.7086401925786443 0.003828663124196161 0.7038699749626737 0.7103185198801497 0.004943198463052079 0.8649741663126888 0.5017920449754302 -0.004943198463052079 -0.8649741663126888 -0.5017920449754302 -0.003828663124196161 -0.7038699749626737 -0.7103185198801497 1.143009736610772e-018 -0.5018818905357437 0.8649361640908929 1.143009736610791e-018 -0.5018818905357418 0.864936164090894 -1.143009736610791e-018 0.5018818905357418 -0.864936164090894 -1.143009736610772e-018 0.5018818905357437 -0.8649361640908929 -0.9999410255099235 -0.002799393181743322 0.01049327880009495 -0.9999410257213326 -0.002884592461343174 0.01047015786420724 0.9999410255099235 0.002799393181743322 -0.01049327880009495 0.9999410257213326 0.002884592461343174 -0.01047015786420724 0.003824873531433713 -0.5039411440157595 0.863729525783712 0.004945242852861994 -0.5017941450757408 0.8649729363054273 -0.004945242852861994 0.5017941450757408 -0.8649729363054273 -0.003824873531433713 0.5039411440157595 -0.863729525783712 -0.9999410276338193 0.002736849005709989 0.0105095628901078 -0.9999410274584727 0.002822277484269053 0.01048696119453971 0.9999410274584727 -0.002822277484269053 -0.01048696119453971 0.9999410276338193 -0.002736849005709989 -0.0105095628901078 3.143276138552654e-018 0.4981161284324221 0.8671103289636764 3.143276138552537e-018 0.4981161284324288 0.8671103289636725 -3.143276138552537e-018 -0.4981161284324288 -0.8671103289636725 -3.143276138552654e-018 -0.4981161284324221 -0.8671103289636764 0.003832358652013756 0.4960426150147506 0.8682897195731909 0.004946838745694068 0.705624759428811 0.7085684354157024 -0.004946838745694068 -0.705624759428811 -0.7085684354157024 -0.003832358652013756 -0.4960426150147506 -0.8682897195731909 1.357324303737726e-018 -0.2609183436732318 0.9653608744582605 1.357324303737725e-018 -0.2609183436732317 0.9653608744582606 -1.357324303737726e-018 0.2609183436732318 -0.9653608744582605 -1.357324303737725e-018 0.2609183436732317 -0.9653608744582606 -0.999941026412113 -7.640534256199236e-005 0.01085991989442496 -0.999941026192585 1.181962340437762e-005 0.01086020244821933 0.999941026412113 7.640534256199236e-005 -0.01085991989442496 0.999941026192585 -1.181962340437762e-005 -0.01086020244821933 0.003825647232711771 -0.2632147699247492 0.9647296768093704 0.004940850776478425 -0.2608260194767013 0.9653731794272844 -0.004940850776478425 0.2608260194767013 -0.9653731794272844 -0.003825647232711771 0.2632147699247492 -0.9647296768093704 3.143278067595227e-018 0.2567179580818204 0.9664863630689782 3.143278067595215e-018 0.2567179580818195 0.9664863630689783 -3.143278067595227e-018 -0.2567179580818204 -0.9664863630689782 -3.143278067595215e-018 -0.2567179580818195 -0.9664863630689783 0.003832480658714482 0.2544130730309406 0.9670880520216109 0.004950182655957406 0.4981916449537949 0.8670528130338454 -0.004950182655957406 -0.4981916449537949 -0.8670528130338454 -0.003832480658714482 -0.2544130730309406 -0.9670880520216109 7.858190309334453e-019 -0.002175164586431004 0.9999976343267127 7.858190309334296e-019 -0.002175164586436765 0.9999976343267127 -7.858190309334453e-019 0.002175164586431004 -0.9999976343267127 -7.858190309334296e-019 0.002175164586436765 -0.9999976343267127 0.00382758993817654 -0.004556349394965424 0.999982294460985 0.004940921873113072 -0.002084718490196847 0.9999856205165454 -0.004940921873113072 0.002084718490196847 -0.9999856205165454 -0.00382758993817654 0.004556349394965424 -0.999982294460985 0.004946892765949841 0.2568047730411928 0.9664506385714813 -0.004946892765949841 -0.2568047730411928 -0.9664506385714813</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID806\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID804\">\r\n\t\t\t\t\t<float_array count=\"1344\" id=\"ID807\">-7.080247872229587 21.0145052715412 0.04500165965700093 21.74008679032289 -6.710953503131737 20.09757480725083 0.1000627746095763 20.77921931956998 0.02250082982850047 10.87004339516144 -3.355476751565869 10.04878740362542 0.05003138730478817 10.38960965978499 -3.540123936114794 10.5072526357706 0.1303669829364637 20.77914246233489 0.07534380260125198 21.74001127780054 6.933554213792702 20.05073484708986 7.196528629951274 20.99006307575776 0.03767190130062599 10.87000563890027 3.466777106896351 10.02536742354493 3.598264314975637 10.49503153787888 0.06518349146823182 10.38957123116744 -10.61044593144635 -2.826023622170461 -12.86224447874705 -2.82602362217035 -10.61044593144633 2.825940115185436 -12.86224447874711 2.825940115185495 -6.431122239373526 -1.413011811085175 -5.305222965723164 1.412970057592718 -6.431122239373552 1.412970057592747 -5.305222965723173 -1.41301181108523 -13.75322553755872 18.85673535189866 -7.109527114000408 21.00841184581578 -13.09484172604693 18.04624503956301 -6.740198911846502 20.0914898144459 -3.554763557000204 10.50420592290789 -6.547420863023467 9.023122519781506 -3.370099455923251 10.04574490722295 -6.876612768779358 9.42836767594933 -10.42638530473695 -2.905002536116535 -10.59673960971082 2.494519512677447 -4.327947130481451 -2.831682395143322 -2.163973565240725 -1.415841197571661 -5.298369804855411 1.247259756338724 -5.213192652368477 -1.452501268058267 6.962746893829194 20.04450223255975 7.225755851347815 20.9838244764124 13.29449402849827 17.95567810305388 13.85751213473528 18.80944566772061 3.612877925673907 10.4919122382062 6.647247014249137 8.977839051526939 6.928756067367642 9.404722833860303 3.481373446914597 10.02225111627987 10.61044593144633 -2.825992595741062 10.61044593144633 2.825981580630943 12.86224447874709 -2.825992595740977 12.86224447874711 2.825981580630883 5.305222965723164 1.412990790315471 6.431122239373543 -1.412996297870488 6.431122239373552 1.412990790315442 5.305222965723164 -1.412996297870531 10.59158413280459 2.507848288547653 10.43221711685011 -2.891879332533704 4.495704241856068 2.664961531154151 2.247852120928034 1.332480765577075 5.216108558425053 -1.445939666266852 5.295792066402295 1.253924144273827 -10.6104459314464 -2.825947916893278 -12.86224447874696 -2.825947916893363 -10.61044593144635 2.826018007123239 -12.86224447874705 2.826018007123342 -6.431122239373481 -1.412973958446681 -5.305222965723173 1.413009003561619 -6.431122239373526 1.413009003561671 -5.3052229657232 -1.412973958446639 -19.48876166620547 15.41386975725847 -13.77936642589772 18.84494910367416 -18.58612139372733 14.76504876496961 -13.1209585274604 18.03447090017816 -6.889683212948862 9.42247455183708 -9.293060696863666 7.382524382484806 -6.560479263730202 9.01723545008908 -9.744380833102735 7.706934878629236 -10.48787858864871 -2.764407581528367 -10.54092074314131 2.636624072452559 -4.388737822148864 -2.773106452524509 -2.194368911074432 -1.386553226262254 -5.270460371570657 1.31831203622628 -5.243939294324353 -1.382203790764184 -10.59227251636439 2.389322457437515 -4.496732087605833 2.554385096985135 -4.202713000993107 -2.847316927641705 -2.101356500496554 -1.423658463820853 -2.248366043802917 1.277192548492567 -5.296136258182196 1.194661228718757 -4.30720657991396 -2.74923276937071 -10.49869520647 2.632675389960963 -4.39962318408665 2.65699263316773 -2.199811592043325 1.328496316583865 -5.249347603234998 1.316337694980481 -2.15360328995698 -1.374616384685355 13.32051131828215 17.94377319846329 13.88355461244131 18.79753048361999 18.74912252010727 14.63692954201792 19.57388520321002 15.34696485517103 6.941777306220654 9.398765241809993 9.374561260053634 7.318464771008959 9.786942601605007 7.673482427585516 6.660255659141074 8.971886599231643 10.61044593144633 -2.825950054937781 10.61044593144633 2.826024849709162 12.86224447874698 -2.825950054937781 12.86224447874709 2.826024849709241 5.305222965723164 1.413012424854581 6.43112223937349 -1.41297502746889 6.431122239373543 1.41301242485462 5.305222965723164 -1.41297502746889 10.54035182778038 2.638199660780892 10.48866032343423 -2.762877897270078 4.442089363119534 2.720080828020509 2.221044681559767 1.360040414010254 5.244330161717117 -1.381438948635039 5.270175913890189 1.319099830390446 4.491944073349894 2.559656761580416 10.29981134249543 -3.080686268385806 4.208186488432563 -2.842408495161039 2.104093244216282 -1.421204247580519 5.149905671247714 -1.540343134192903 2.245972036674947 1.279828380790208 -10.61044593144626 -2.826007686664317 -12.86224447874695 -2.82600768666433 -10.6104459314464 2.825974081103952 -12.86224447874696 2.825974081103872 -6.431122239373472 -1.413003843332165 -5.3052229657232 1.412987040551976 -6.431122239373481 1.412987040551936 -5.305222965723129 -1.413003843332158 -23.89600667514926 10.92066306974483 -19.50998122430807 15.39728158332552 -22.81065927108942 10.47772735264272 -18.60732806298233 14.74847168761938 -9.754990612154034 7.698640791662758 -11.40532963554471 5.238863676321358 -9.303664031491167 7.374235843809688 -11.94800333757463 5.460331534872416 -10.50030773036436 -2.734916554904787 -10.52885884924632 2.666219038494773 -4.401245236452727 -2.76072003842497 -2.200622618226364 -1.380360019212485 -5.26442942462316 1.333109519247386 -5.250153865182178 -1.367458277452394 -4.32864380715561 -2.728077418327247 -10.47763817691943 2.68387523224497 -4.378491287508375 2.678448496215526 -2.189245643754187 1.339224248107763 -5.238819088459714 1.341937616122485 -2.164321903577805 -1.364038709163623 18.77018998656991 14.62024772013757 19.5949665952896 15.33027302281989 22.92595043396204 10.32077586296335 23.95620936789129 10.83867888613798 9.797483297644799 7.665136511409947 11.46297521698102 5.160387931481677 11.97810468394564 5.41933944306899 9.385094993284955 7.310123860068783 10.6104459314464 -2.825897195613247 10.61044593144633 2.826049461490449 12.86224447874695 -2.825897195613273 12.86224447874698 2.826049461490449 5.305222965723164 1.413024730745224 6.431122239373472 -1.412948597806637 6.43112223937349 1.413024730745224 5.3052229657232 -1.412948597806623 10.52887684445967 2.667030953698378 10.50094812248903 -2.734076931910342 4.430291040022829 2.732353085540517 2.215145520011415 1.366176542770259 5.250474061244517 -1.367038465955171 5.264438422229835 1.333515476849189 4.399105344315679 2.657705380890611 10.405646661895 -2.852414177822029 4.307926494970575 -2.748488817035858 2.153963247485287 -1.374244408517929 5.202823330947497 -1.426207088911014 2.199552672157839 1.328852690445306 -12.86224447874695 2.82589499537068 -10.61044593144626 2.825894995370698 -12.86224447874705 -2.82609222888195 -10.61044593144633 -2.826092228881945 -5.305222965723129 1.412947497685349 -6.431122239373526 -1.413046114440975 -5.305222965723164 -1.413046114440972 -6.431122239373472 1.41294749768534 -26.67466626827587 5.683381458330269 -23.91094160824194 10.90046653479481 -25.480634378765 5.476511141612718 -22.82558978287088 10.45753752207573 -11.95547080412097 5.450233267397406 -12.7403171893825 2.738255570806359 -11.41279489143544 5.228768761037864 -13.33733313413794 2.841690729165134 -4.407169166769916 -2.754967482411306 -10.5061668122532 -2.720959260215462 -10.52299040682837 2.680227784306265 -5.261495203414187 1.340113892153132 -5.253083406126599 -1.360479630107731 -2.203584583384958 -1.377483741205653 -4.36829736990867 2.688553868555497 -4.338942229388606 -2.718106829418196 -10.46739654333959 2.708275296133268 -5.233698271669796 1.354137648066634 -2.169471114694303 -1.359053414709098 -2.184148684954335 1.344276934277748 22.94070725863429 10.30051085556732 23.97097124693982 10.81840765627475 25.54024123667234 5.301444883669677 26.70589873035085 5.591928469817038 11.98548562346991 5.409203828137374 12.77012061833617 2.650722441834839 13.35294936517543 2.795964234908519 11.47035362931715 5.150255427783658 10.6104459314464 2.825978074745936 12.86224447874695 2.825978074745911 10.61044593144626 -2.826022509369519 12.86224447874705 -2.826022509369585 6.431122239373472 1.412989037372956 5.305222965723129 -1.41301125468476 6.431122239373526 -1.413011254684793 5.3052229657232 1.412989037372968 10.52299403178044 2.680668671248751 10.50650593923221 -2.720529992983924 4.424277996020746 2.737940602897313 2.212138998010373 1.368970301448656 5.253252969616103 -1.360264996491962 5.261497015890218 1.340334335624375 10.42739215514632 -2.802536852443821 4.328980138760369 -2.727871931832631 4.378331935230842 2.678689137250321 2.189165967615421 1.339344568625161 2.164490069380185 -1.363935965916316 5.21369607757316 -1.40126842622191 -10.61044593144633 2.826069973237937 -10.61044593144629 -2.825904747399156 -12.86224447874705 2.826069973237946 -12.86224447874705 -2.825904747399128 -5.305222965723146 -1.412952373699578 -6.431122239373526 1.413034986618973 -6.431122239373526 -1.412952373699564 -5.305222965723164 1.413034986618969 -27.63562791825015 0.05894696417114838 -26.68240515494901 5.660952007740802 -26.41417937681512 0.1022416071421344 -25.48837270451038 5.454083694207584 -13.34120257747451 2.830476003870401 -13.20708968840756 0.05112080357106722 -12.74418635225519 2.727041847103792 -13.81781395912508 0.02947348208557419 -4.411191943823121 -2.751040942821268 -10.51013701455871 -2.711656587826044 -10.51923878233571 2.689544116394612 -5.259619391167854 1.344772058197306 -5.255068507279354 -1.355828293913022 -2.20559597191156 -1.375520471410634 -4.361511748855548 2.695401719720111 -4.345629980062277 -2.711270388115964 -10.46055017487655 2.724534513404098 -5.230275087438276 1.362267256702049 -2.172814990031139 -1.355635194057982 -2.180755874427774 1.347700859860056 25.54779300121115 5.278981513532999 26.71345124453584 5.569463238081498 26.41427114481721 -0.07904357354193686 27.6356806405396 -0.03575631278366894 13.35672562226792 2.784731619040749 13.20713557240861 -0.03952178677096843 13.8178403202698 -0.01787815639183447 12.77389650060558 2.6394907567665 10.61044593144626 2.825904567781381 12.86224447874705 2.825904567781341 10.61044593144638 -2.826080473249799 12.86224447874712 -2.826080473249835 6.431122239373526 1.41295228389067 5.305222965723191 -1.4130402366249 6.431122239373561 -1.413040236624918 5.305222965723129 1.412952283890691 10.51942773562302 2.690148952244857 10.51058248831772 -2.711008433256825 4.420634634695935 2.742095775502585 2.210317317347967 1.371047887751293 5.255291244158862 -1.355504216628413 5.259713867811509 1.345074476122429 10.43808803086309 -2.778188160359191 4.339422289735736 -2.717691662957049 4.368439727116307 2.688941036790968 2.184219863558154 1.344470518395484 2.169711144867868 -1.358845831478525 5.219044015431544 -1.389094080179595 -10.61044593144629 2.825969956194813 -10.61044593144636 -2.825999911941941 -12.86224447874705 2.825969956194804 -12.86224447874705 -2.82599991194193 -5.305222965723181 -1.41299995597097 -6.431122239373525 1.412984978097402 -6.431122239373525 -1.412999955970965 -5.305222965723146 1.412984978097406 -27.63572438081653 0.03575277887220742 -26.41427583939755 0.07904742262653271 -26.71345594367574 -5.569460127254565 -25.54793886530002 -5.278983127411783 -13.20713791969877 0.03952371131326635 -13.35672797183787 -2.784730063627282 -12.77396943265001 -2.639491563705891 -13.81786219040827 0.01787638943610371 -4.414444895310771 -2.747727539370401 -10.51334257328524 -2.704033755330998 -10.51629208656035 2.697135660162628 -5.258146043280174 1.348567830081314 -5.256671286642618 -1.352016877665499 -2.207222447655385 -1.373863769685201 -4.356241648110164 2.700981605799032 -4.351142237181914 -2.705693483194667 -10.45521431322128 2.737626225312479 -5.227607156610642 1.36881311265624 -2.175571118590957 -1.352846741597333 -2.178120824055082 1.350490802899516 25.48830445552332 -5.454082925036311 26.41417720728785 -0.1022377360609355 26.68242100433726 -5.660947693454984 27.6355867030183 -0.05895047794281139 13.20708860364393 -0.05111886803046777 13.34121050216863 -2.830473846727492 13.81779335150915 -0.0294752389714057 12.74415222776166 -2.727041462518156 10.61044593144638 2.826052632890082 12.86224447874712 2.826052632890059 10.61044593144626 -2.82592204733246 12.86224447874695 -2.825922047332492 6.431122239373561 1.41302631644503 5.305222965723129 -1.41296102366623 6.431122239373472 -1.412961023666246 5.305222965723191 1.413026316445041 10.51606746666478 2.697041471798994 10.51330575549122 -2.704166435394285 4.417217997697089 2.744713837406366 2.208608998848545 1.372356918703183 5.256652877745612 -1.352083217697142 5.258033733332388 1.348520735899497 10.44465127714765 -2.762265554347846 4.345847193716227 -2.711126089156569 4.361514299577717 2.695541103625278 2.180757149788859 1.347770551812639 2.172923596858114 -1.355563044578285 5.222325638573823 -1.381132777173923 -10.61044593144636 2.826041266166125 -10.6104459314464 -2.825930766618026 -12.86224447874705 2.826041266166101 -12.86224447874691 -2.825930766618044 -5.3052229657232 -1.412965383309013 -6.431122239373526 1.41302063308305 -6.431122239373455 -1.412965383309022 -5.305222965723182 1.413020633083062 -26.70590282994665 -5.591927379275652 -25.54038650199819 -5.301448515743764 -23.97101290175442 -10.81841542886811 -22.94071136809923 -10.30052099361089 -12.77019325099909 -2.650724257871882 -11.98550645087721 -5.409207714434054 -11.47035568404961 -5.150260496805447 -13.35295141497332 -2.795963689637826 -4.417536498075453 -2.745135983150786 -10.51638582391865 -2.697463741985649 -10.51363540807846 2.703735574337612 -5.256817704039229 1.351867787168806 -5.258192911959323 -1.348731870992824 -2.208768249037727 -1.372567991575393 -4.351338578301006 2.705750945986859 -4.356258630087857 -2.700933213781691 -10.45023670146809 2.749406257350436 -5.225118350734043 1.374703128675218 -2.178129315043929 -1.350466606890846 -2.175669289150503 1.352875472993429 22.82558998950295 -10.45752259924669 25.48056850699846 -5.4765109888474 23.91084720343317 -10.90046224804534 26.67468449563205 -5.683377758338963 12.74028425349923 -2.7382554944237 11.95542360171659 -5.450231124022667 13.33734224781603 -2.841688879169482 11.41279499475147 -5.228761299623346 10.61044593144626 2.825827121602595 12.86224447874695 2.82582712160258 10.61044593144633 -2.826129032011907 12.86224447874705 -2.82612903201192 6.431122239373472 1.41291356080129 5.305222965723164 -1.413064516005953 6.431122239373526 -1.41306451600596 5.305222965723129 1.412913560801298 10.51353388990205 2.704223658516902 10.51647688693124 -2.696955842399996 4.4146364097076 2.747910046670556 2.2073182048538 1.373955023335278 5.258238443465622 -1.348477921199998 5.256766944951025 1.352111829258451 10.45043595056386 -2.749456155586584 4.351538024872898 -2.705808272904777 4.35645153003614 2.70087991621506 2.17822576501807 1.35043995810753 2.175769012436449 -1.352904136452389 5.225217975281929 -1.374728077793292 -12.86224447874691 2.825966664539562 -10.6104459314464 2.825966664539571 -12.86224447874705 -2.826015326484667 -10.61044593144629 -2.826015326484686 -5.3052229657232 1.412983332269786 -6.431122239373526 -1.413007663242334 -5.305222965723146 -1.413007663242343 -6.431122239373455 1.412983332269781 -23.95624398101459 -10.83868297384684 -22.92594750356043 -10.32078231370186 -19.59503874243783 -15.33026292526798 -18.77019605670036 -14.62023762439384 -11.46297375178022 -5.160391156850932 -9.797519371218915 -7.665131462633992 -9.385098028350182 -7.310118812196918 -11.97812199050729 -5.419341486923419 -4.420343528520512 -2.741685283211833 -10.519136567093 -2.689735512526468 -10.51025774098094 2.711469903985125 -5.25512887049047 1.355734951992562 -5.2595682835465 -1.344867756263234 -2.210171764260256 -1.370842641605917 -4.346160956957755 2.711090981816287 -4.361795749282214 -2.695581765113801 -10.44496489620798 2.762230408910285 -5.222482448103991 1.381115204455142 -2.180897874641107 -1.3477908825569 -2.173080478478878 1.355545490908144 18.60733076095817 -14.74847483060988 22.81066195964529 -10.47771276851302 19.50999293442922 -15.39728354324274 23.89591475193814 -10.92065912129808 11.40533097982264 -5.23885638425651 9.754996467214612 -7.698641771621368 11.94795737596907 -5.460329560649042 9.303665380479083 -7.374237415304939 10.61044593144633 2.826225508708167 12.86224447874705 2.826225508708164 10.61044593144644 -2.825782753959264 12.86224447874696 -2.825782753959264 6.431122239373526 1.413112754354082 5.305222965723218 -1.412891376979632 6.431122239373481 -1.412891376979632 5.305222965723164 1.413112754354084 10.51046993801221 2.711434912783619 10.51953671685669 -2.689732105727344 4.411525367456426 2.750835793495604 2.205762683728213 1.375417896747802 5.259768358428346 -1.344866052863672 5.255234969006104 1.355717456391809 10.4555289323171 -2.737359948082401 4.356556746050451 -2.700699764144963 4.351468090508527 2.705965589278195 2.175734045254263 1.352982794639098 2.178278373025226 -1.350349882072481 5.227764466158549 -1.3686799740412 -12.86224447874705 2.825979287301734 -10.61044593144629 2.825979287301716 -12.86224447874705 -2.825992100767848 -10.61044593144633 -2.825992100767798 -5.305222965723146 1.412989643650858 -6.431122239373526 -1.412996050383924 -5.305222965723164 -1.412996050383899 -6.431122239373526 1.412989643650867 -19.57395918633143 -15.34695536581981 -18.74913042428991 -14.63692005507998 -13.88360005709505 -18.79752453568512 -13.32055676393909 -17.94376725013277 -9.374565212144953 -7.31846002753999 -6.941800028547526 -9.398762267842558 -6.660278381969544 -8.971883625066383 -9.786979593165713 -7.673477682909906 -4.423865910935081 -2.737831791075885 -10.52258142340395 -2.680531625677441 -10.50600177760153 2.720649408174218 -5.253000888800764 1.360324704087109 -5.261290711701975 -1.34026581283872 -2.211932955467541 -1.368915895537943 -4.339133801438258 2.717625466155597 -4.368203459203839 -2.688987647016699 -10.43779947743348 2.778124667649001 -5.218899738716739 1.389062333824501 -2.184101729601919 -1.344493823508349 -2.169566900719129 1.358812733077798 13.12090955371273 -18.03447626008716 18.5861204811644 -14.76505058173662 13.77936550939809 -18.84494501053288 19.48876976388837 -15.41387039274213 9.2930602405822 -7.382525290868308 6.889682754699045 -9.422472505266441 9.744384881944184 -7.706935196371063 6.560454776856362 -9.01723813004358 10.61044593144644 2.825791620706781 12.86224447874696 2.825791620706781 10.61044593144629 -2.826150515554888 12.86224447874705 -2.826150515554875 6.431122239373481 1.412895810353391 5.305222965723146 -1.413075257777444 6.431122239373526 -1.413075257777438 5.305222965723218 1.412895810353391 10.50634358496391 2.720891158259654 10.52313453471532 -2.680309961522778 4.407346409174058 2.754875420631839 2.203673204587029 1.37743771031592 5.261567267357662 -1.340154980761389 5.253171792481954 1.360445579129827 10.46075794161088 -2.724776304844964 4.36172004203437 -2.695664125246008 4.345862822087661 2.711004199695371 2.17293141104383 1.355502099847685 2.180860021017185 -1.347832062623004 5.230378970805441 -1.362388152422482 -10.61044593144638 -2.825976183967614 -12.86224447874695 -2.825976183967639 -10.61044593144633 2.825990416027972 -12.86224447874705 2.825990416027897 -6.431122239373472 -1.412988091983819 -5.305222965723164 1.412995208013986 -6.431122239373526 1.412995208013948 -5.305222965723191 -1.412988091983807 -13.85755824385552 -18.80944035209259 -13.29454013808028 -17.95567278723111 -7.225792948281573 -20.98382388441372 -6.962728423460445 -20.04450400512787 -6.647270069040138 -8.977836393615556 -3.612896474140786 -10.49191194220686 -3.481364211730222 -10.02225200256394 -6.928779121927762 -9.404720176046295 -10.52875653309172 -2.667019882103738 -10.50077901065932 2.734066663135995 -4.430171035067845 -2.732341685834769 -2.215085517533923 -1.366170842917385 -5.25038950532966 1.367033331567997 -5.264378266545858 -1.333509941051869 -4.378004242621763 -2.678465056738759 -10.42692928344672 2.802797985646838 -4.328518097775763 2.728095874626715 -2.164259048887882 1.364047937313357 -5.21346464172336 1.401398992823419 -2.189002121310882 -1.339232528369379 6.740151636101647 -20.09147929057193 13.09479295026678 -18.04624987728669 7.109488848458013 -21.00842022412065 13.75322481972926 -18.85673073724269 6.547396475133392 -9.023124938643347 3.554744424229007 -10.50421011206032 6.876612409864629 -9.428365368621344 3.370075818050824 -10.04573964528597 10.61044593144629 -2.825941324107447 10.61044593144629 2.826043208161488 12.862244478747 -2.82594132410737 12.86224447874705 2.826043208161514 5.305222965723146 1.413021604080744 6.431122239373499 -1.412970662053685 6.431122239373526 1.413021604080757 5.305222965723146 -1.412970662053724 10.50036585142223 2.734971001562761 10.52890011716264 -2.666196886704789 4.401303486300014 2.760784370702243 2.200651743150007 1.380392185351122 5.264450058581321 -1.333098443352395 5.250182925711115 1.367485500781381 10.46744109647829 -2.708407758160335 4.368342022762667 -2.688678959368056 4.338997338335714 2.717948747950908 2.169498669167857 1.358974373975454 2.184171011381333 -1.344339479684028 5.233720548239147 -1.354203879080168 -10.61044593144638 2.825979469314233 -10.61044593144636 -2.826003796516174 -12.86224447874694 2.825979469314216 -12.86224447874705 -2.826003796516174 -5.305222965723181 -1.413001898258087 -6.431122239373472 1.412989734657108 -6.431122239373525 -1.413001898258087 -5.30522296572319 1.412989734657116 -6.933536276452181 -20.05073707708879 -0.1303295216944846 -20.7791541441071 -7.196566260968286 -20.990062942279 -0.07540959329038582 -21.74001114445558 -0.06516476084724229 -10.38957707205355 -3.598283130484143 -10.4950314711395 -0.03770479664519291 -10.87000557222779 -3.466768138226091 -10.0253685385444 -10.54034897368759 -2.638160548550109 -10.48865422912526 2.762966583080145 -4.442085949347874 -2.719981088299503 -2.221042974673937 -1.359990544149752 -5.24432711456263 1.381483291540072 -5.270174486843797 -1.319080274275055 -10.40551982253659 2.852631559912603 -4.307800004700079 2.748704857416722 -4.39903924405151 -2.657516153234907 -2.199519622025755 -1.328758076617453 -2.153900002350039 1.374352428708361 -5.202759911268297 1.426315779956301 -0.1000250353029242 -20.77923124592329 6.71090713895255 -20.09756546865577 -0.04506717194452021 -21.74008690407053 7.080210519352136 -21.01451483490556 3.355453569476275 -10.04878273432789 -0.0225335859722601 -10.87004345203527 3.540105259676068 -10.50725741745278 -0.05001251765146209 -10.38961562296164 10.61044593144629 2.82594632761644 12.862244478747 2.825946327616524 10.61044593144629 -2.826051856133897 12.86224447874703 -2.826051856133904 6.431122239373499 1.412973163808262 5.305222965723146 -1.413025928066949 6.431122239373517 -1.413025928066952 5.305222965723146 1.41297316380822 10.48777562266277 2.764482314003959 10.54086775703753 -2.636542126831748 4.388634374310819 2.773181238710972 2.19431718715541 1.386590619355486 5.270433878518763 -1.318271063415874 5.243887811331383 1.38224115700198 10.47753497153215 -2.683902847387294 4.378387600123009 -2.678476127130542 4.328497143600641 2.728049645213909 2.164248571800321 1.364024822606955 2.189193800061505 -1.339238063565271 5.238767485766075 -1.341951423693647 -10.61044593144636 2.826010708320168 -10.61044593144629 -2.825941511668355 -12.86224447874705 2.826010708320168 -12.86224447874705 -2.8259415116683 -5.305222965723146 -1.412970755834178 -6.431122239373526 1.413005354160084 -6.431122239373526 -1.41297075583415 -5.305222965723182 1.413005354160084 -10.59158817915015 -2.507978354408405 -10.4322800455154 2.891766839544133 -4.495704144051983 -2.664967449207419 -2.247852072025991 -1.332483724603709 -5.216140022757697 1.445883419772067 -5.295794089575077 -1.253989177204203 -4.491947727247955 -2.559759000559964 -10.30000224773623 3.080400759006474 -4.208366568860864 2.842306276570779 -2.104183284430432 1.421153138285389 -5.150001123868115 1.540200379503237 -2.245973863623977 -1.279879500279982 10.61044593144629 2.826039515876513 12.86224447874703 2.82603951587651 10.61044593144629 -2.825944977148527 12.86224447874705 -2.825944977148583 6.431122239373517 1.413019757938255 5.305222965723146 -1.412972488574264 6.431122239373526 -1.412972488574291 5.305222965723146 1.413019757938257 10.42605207004991 2.905243259815798 10.59673143731553 -2.494209468150155 4.32761740458788 2.831720453845512 2.16380870229394 1.415860226922756 5.298365718657763 -1.247104734075077 5.213026035024954 1.452621629907899 4.306952304418521 2.749261829601255 10.4985636977804 -2.632587427674483 4.399491681506321 -2.656972876258102 2.199745840753161 -1.328486438129051 5.249281848890198 -1.316293713837241 2.153476152209261 1.374630914800627 4.203006248744854 2.847276271266106 10.59228532888561 -2.389536449472878 4.496740578981384 -2.554476881970431 2.248370289490692 -1.277238440985215 5.296142664442805 -1.194768224736439 2.101503124372427 1.423638135633053</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"672\" source=\"#ID807\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID803\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID801\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID802\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID803\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID804\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 2 2 1 1 3 8 1 9 8 10 9 11 8 10 1 9 12 16 13 17 14 18 15 19 14 18 13 17 20 24 0 25 21 26 2 27 21 26 0 25 24 32 25 33 26 34 8 38 9 39 30 40 31 41 30 40 9 39 34 46 14 47 35 48 15 49 35 48 14 47 25 54 38 55 39 56 42 60 43 61 12 62 13 63 12 62 43 61 46 68 20 69 47 70 21 71 47 70 20 69 50 76 24 77 51 78 25 82 39 83 26 84 51 88 24 89 26 90 30 94 31 95 54 96 55 97 54 96 31 95 58 102 34 103 59 104 35 105 59 104 34 103 38 110 62 111 63 112 39 116 38 117 63 118 66 122 67 123 42 124 43 125 42 124 67 123 70 130 46 131 71 132 47 133 71 132 46 131 74 138 50 139 75 140 75 144 50 145 51 146 54 150 55 151 78 152 79 153 78 152 55 151 82 158 58 159 83 160 59 161 83 160 58 159 62 166 86 167 87 168 63 172 62 173 87 174 67 178 66 179 90 180 91 181 90 180 66 179 94 186 70 187 95 188 71 189 95 188 70 187 98 194 99 195 74 196 75 200 98 201 74 202 78 206 79 207 102 208 103 209 102 208 79 207 82 214 83 215 106 216 107 217 106 216 83 215 86 222 110 223 111 224 86 228 111 229 87 230 91 234 114 235 90 236 115 237 90 236 114 235 118 242 94 243 119 244 95 245 119 244 94 243 122 250 123 251 99 252 98 256 122 257 99 258 102 262 103 263 126 264 127 265 126 264 103 263 106 270 107 271 130 272 131 273 130 272 107 271 110 278 134 279 135 280 110 284 135 285 111 286 114 290 138 291 115 292 139 293 115 292 138 291 118 298 119 299 142 300 143 301 142 300 119 299 146 306 147 307 123 308 122 312 146 313 123 314 150 318 126 319 151 320 127 321 151 320 126 319 130 326 131 327 154 328 155 329 154 328 131 327 134 334 158 335 159 336 134 340 159 341 135 342 138 346 162 347 139 348 163 349 139 348 162 347 142 354 143 355 166 356 167 357 166 356 143 355 170 362 171 363 147 364 146 368 170 369 147 370 174 374 150 375 175 376 151 377 175 376 150 375 154 382 155 383 178 384 179 385 178 384 155 383 158 390 182 391 183 392 158 396 183 397 159 398 163 402 162 403 186 404 187 405 186 404 162 403 166 410 167 411 190 412 191 413 190 412 167 411 194 418 195 419 171 420 170 424 194 425 171 426 198 430 174 431 199 432 175 433 199 432 174 431 178 438 179 439 202 440 203 441 202 440 179 439 182 446 206 447 207 448 182 452 207 453 183 454 186 458 187 459 210 460 211 461 210 460 187 459 190 466 191 467 214 468 215 469 214 468 191 467 218 474 219 475 195 476 194 480 218 481 195 482 222 486 198 487 223 488 199 489 223 488 198 487 202 494 203 495 226 496 227 497 226 496 203 495 206 502 230 503 231 504 206 508 231 509 207 510 234 514 235 515 211 516 210 517 211 516 235 515 214 522 215 523 238 524 239 525 238 524 215 523 242 530 219 531 243 532 243 536 219 537 218 538 246 542 222 543 247 544 223 545 247 544 222 543 250 550 226 551 251 552 227 553 251 552 226 551 230 558 254 559 255 560 230 564 255 565 231 566 234 570 258 571 235 572 259 573 235 572 258 571 239 578 262 579 238 580 263 581 238 580 262 579 266 586 242 587 267 588 242 592 243 593 267 594 262 598 246 599 263 600 247 601 263 600 246 599 250 606 251 607 270 608 271 609 270 608 251 607 254 614 274 615 275 616 254 620 275 621 255 622 258 626 278 627 259 628 279 629 259 628 278 627 282 634 266 635 283 636 283 640 266 641 267 642 270 646 271 647 278 648 279 649 278 648 271 647 274 654 282 655 286 656 275 660 274 661 286 662 286 666 282 667 283 668</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID803\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID804\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 5 5 4 4 7 7 4 12 10 13 11 14 10 13 4 12 6 15 16 20 17 21 18 22 17 21 16 20 19 23 7 28 22 29 5 30 22 29 7 28 23 31 27 35 28 36 29 37 11 42 32 43 33 44 32 43 11 42 10 45 17 50 36 51 18 52 36 51 17 50 37 53 40 57 41 58 28 59 44 64 19 65 16 66 19 65 44 64 45 67 23 72 48 73 22 74 48 73 23 72 49 75 52 79 29 80 53 81 27 85 40 86 28 87 27 91 29 92 52 93 33 98 56 99 57 100 56 99 33 98 32 101 37 106 60 107 36 108 60 107 37 106 61 109 64 113 65 114 41 115 64 119 41 120 40 121 68 126 45 127 44 128 45 127 68 126 69 129 49 134 72 135 48 136 72 135 49 134 73 137 76 141 53 142 77 143 52 147 53 148 76 149 57 154 80 155 81 156 80 155 57 154 56 157 61 162 84 163 60 164 84 163 61 162 85 165 88 169 89 170 65 171 88 175 65 176 64 177 69 182 92 183 93 184 92 183 69 182 68 185 73 190 96 191 72 192 96 191 73 190 97 193 77 197 100 198 101 199 77 203 101 204 76 205 81 210 104 211 105 212 104 211 81 210 80 213 84 218 108 219 109 220 108 219 84 218 85 221 112 225 113 226 89 227 88 231 112 232 89 233 116 238 92 239 117 240 92 239 116 238 93 241 97 246 120 247 96 248 120 247 97 246 121 249 100 253 124 254 125 255 100 259 125 260 101 261 105 266 128 267 129 268 128 267 105 266 104 269 109 274 132 275 133 276 132 275 109 274 108 277 136 281 137 282 113 283 112 287 136 288 113 289 140 294 117 295 141 296 117 295 140 294 116 297 120 302 144 303 145 304 144 303 120 302 121 305 124 309 148 310 149 311 124 315 149 316 125 317 128 322 152 323 129 324 152 323 128 322 153 325 133 330 156 331 157 332 156 331 133 330 132 333 160 337 161 338 137 339 136 343 160 344 137 345 164 350 141 351 165 352 141 351 164 350 140 353 145 358 168 359 169 360 168 359 145 358 144 361 148 365 172 366 173 367 148 371 173 372 149 373 153 378 176 379 152 380 176 379 153 378 177 381 157 386 180 387 181 388 180 387 157 386 156 389 184 393 185 394 161 395 160 399 184 400 161 401 164 406 188 407 189 408 188 407 164 406 165 409 169 414 192 415 193 416 192 415 169 414 168 417 172 421 196 422 197 423 172 427 197 428 173 429 177 434 200 435 176 436 200 435 177 434 201 437 181 442 204 443 205 444 204 443 181 442 180 445 208 449 209 450 185 451 184 455 208 456 185 457 189 462 212 463 213 464 212 463 189 462 188 465 193 470 216 471 217 472 216 471 193 470 192 473 196 477 220 478 221 479 196 483 221 484 197 485 201 490 224 491 200 492 224 491 201 490 225 493 205 498 228 499 229 500 228 499 205 498 204 501 232 505 233 506 209 507 208 511 232 512 209 513 236 518 213 519 212 520 213 519 236 518 237 521 217 526 240 527 241 528 240 527 217 526 216 529 244 533 220 534 245 535 221 539 220 540 244 541 225 546 248 547 224 548 248 547 225 546 249 549 228 554 252 555 229 556 252 555 228 554 253 557 256 561 257 562 233 563 232 567 256 568 233 569 260 574 236 575 261 576 236 575 260 574 237 577 264 582 240 583 265 584 240 583 264 582 241 585 268 589 245 590 269 591 268 595 244 596 245 597 249 602 265 603 248 604 265 603 249 602 264 605 252 610 272 611 273 612 272 611 252 610 253 613 276 617 277 618 257 619 256 623 276 624 257 625 280 630 261 631 281 632 261 631 280 630 260 633 284 637 269 638 285 639 268 643 269 644 284 645 273 650 280 651 281 652 280 651 273 650 272 653 287 657 285 658 277 659 287 663 277 664 276 665 284 669 285 670 287 671</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID808\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID809\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID813\">-0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID813\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID810\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID814\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762637497411e-018 0.2608439886717847 -0.9653809681021238 1.357324008988185e-018 0.002095735273219623 -0.999997803944421 1.428762637497407e-018 0.2608439886717864 -0.9653809681021234 1.357324008988168e-018 0.002095735273213525 -0.999997803944421 -1.357324008988185e-018 -0.002095735273219623 0.999997803944421 -1.428762637497407e-018 -0.2608439886717864 0.9653809681021234 -1.357324008988168e-018 -0.002095735273213525 0.999997803944421 -1.428762637497411e-018 -0.2608439886717847 0.9653809681021238 5.000666824631774e-019 -0.2567918074288629 -0.9664667441963111 5.000666824631841e-019 -0.2567918074288612 -0.9664667441963116 -5.000666824631841e-019 0.2567918074288612 0.9664667441963116 -5.000666824631774e-019 0.2567918074288629 0.9664667441963111 -2.286020591985056e-018 -0.4981832167412074 -0.8670717862768821 -2.286020591985096e-018 -0.4981832167412094 -0.867071786276881 2.286020591985056e-018 0.4981832167412074 0.8670717862768821 2.286020591985096e-018 0.4981832167412094 0.867071786276881 -6.858055771993708e-018 -0.7056226073428004 -0.7085878463583386 -6.858055771993613e-018 -0.7056226073427964 -0.7085878463583424 6.858055771993613e-018 0.7056226073427964 0.7085878463583424 6.858055771993708e-018 0.7056226073428004 0.7085878463583386 -8.001070223829628e-018 -0.8649741646300232 -0.5018163952309587 -8.001070223829614e-018 -0.8649741646300241 -0.5018163952309572 8.001070223829628e-018 0.8649741646300232 0.5018163952309587 8.001070223829614e-018 0.8649741646300241 0.5018163952309572 -5.715045332456655e-019 -0.9653796265175301 -0.2608489538121138 -5.715045332456722e-019 -0.96537962651753 -0.260848953812114 5.715045332456655e-019 0.9653796265175301 0.2608489538121138 5.715045332456722e-019 0.96537962651753 0.260848953812114 2.286022406958772e-018 -0.9999977996832321 -0.002097767550154592 2.286022406958698e-018 -0.9999977996832321 -0.002097767550151775 -2.286022406958772e-018 0.9999977996832321 0.002097767550154592 -2.286022406958698e-018 0.9999977996832321 0.002097767550151775 -5.1435407892633e-018 -0.9664655322690486 0.2567963686189982 -5.143540789263351e-018 -0.9664655322690482 0.2567963686189999 5.1435407892633e-018 0.9664655322690486 -0.2567963686189982 5.143540789263351e-018 0.9664655322690482 -0.2567963686189999 -8.001071306872786e-018 -0.8670714378610992 0.498183823147125 -8.001071306872821e-018 -0.8670714378611013 0.4981838231471211 8.001071306872786e-018 0.8670714378610992 -0.498183823147125 8.001071306872821e-018 0.8670714378611013 -0.4981838231471211 -5.715047892338878e-018 -0.708586537670636 0.7056239215275657 -5.715047892338916e-018 -0.7085865376706391 0.7056239215275628 5.715047892338878e-018 0.708586537670636 -0.7056239215275657 5.715047892338916e-018 0.7085865376706391 -0.7056239215275628 -3.714781434290872e-018 -0.5018152321358096 0.8649748394008253 -3.714781434290843e-018 -0.5018152321358057 0.8649748394008278 3.714781434290872e-018 0.5018152321358096 -0.8649748394008253 3.714781434290843e-018 0.5018152321358057 -0.8649748394008278 -1.357324087236548e-018 -0.2608455302381353 0.9653805515726874 -1.357324087236494e-018 -0.2608455302381308 0.9653805515726887 1.357324087236494e-018 0.2608455302381308 -0.9653805515726887 1.357324087236548e-018 0.2608455302381353 -0.9653805515726874 5.00066824341991e-019 -0.0020983946598471 0.9999977983675022 5.00066824342e-019 -0.002098394659843867 0.9999977983675022 -5.00066824342e-019 0.002098394659843867 -0.9999977983675022 -5.00066824341991e-019 0.0020983946598471 -0.9999977983675022 1.285886092699162e-018 0.2567924015669348 0.9664665863326504 1.285886092699151e-018 0.2567924015669318 0.966466586332651 -1.285886092699162e-018 -0.2567924015669348 -0.9664665863326504 -1.285886092699151e-018 -0.2567924015669318 -0.966466586332651 -2.000267021076344e-018 0.4981821975151394 0.8670723718807943 -2.000267021076362e-018 0.4981821975151401 0.867072371880794 2.000267021076344e-018 -0.4981821975151394 -0.8670723718807943 2.000267021076362e-018 -0.4981821975151401 -0.867072371880794 -4.00053674631458e-018 0.7056247595919819 0.7085857031091989 -4.000536746314618e-018 0.7056247595919799 0.7085857031092008 4.000536746314618e-018 -0.7056247595919799 -0.7085857031092008 4.00053674631458e-018 -0.7056247595919819 -0.7085857031091989 -1.21193073775685e-032 0.8649761689145231 0.5018129404568542 4.204657661605452e-033 0.8649761689145237 0.5018129404568533 -4.204657661605452e-033 -0.8649761689145237 -0.5018129404568533 1.21193073775685e-032 -0.8649761689145231 -0.5018129404568542 2.286019992337455e-018 0.9653804430920455 0.2608459317210175 2.286019992337455e-018 0.9653804430920453 0.2608459317210191 -2.286019992337455e-018 -0.9653804430920453 -0.2608459317210191 -2.286019992337455e-018 -0.9653804430920455 -0.2608459317210175 4.00053677349617e-018 0.9999978094868985 0.002093088962486192 4.000536773496116e-018 0.9999978094868985 0.002093088962490353 -4.000536773496116e-018 -0.9999978094868985 -0.002093088962490353 -4.00053677349617e-018 -0.9999978094868985 -0.002093088962486192 7.429555745771715e-018 0.9664663526289721 -0.2567932811349458 7.429555745771746e-018 0.9664663526289716 -0.256793281134948 -7.429555745771746e-018 -0.9664663526289716 0.256793281134948 -7.429555745771715e-018 -0.9664663526289721 0.2567932811349458 8.001073065904117e-018 0.8670738131462042 -0.4981796890240521 8.001073065904097e-018 0.8670738131462032 -0.498179689024054 -8.001073065904097e-018 -0.8670738131462032 0.498179689024054 -8.001073065904117e-018 -0.8670738131462042 0.4981796890240521 2.286020065195486e-018 0.7085865942299621 -0.7056238647307667 2.286020065195515e-018 0.7085865942299627 -0.705623864730766 -2.286020065195515e-018 -0.7085865942299627 0.705623864730766 -2.286020065195486e-018 -0.7085865942299621 0.7056238647307667 -5.715046975223761e-019 0.5018142835855971 -0.8649753897016226 -5.715046975224879e-019 0.5018142835856045 -0.8649753897016184 5.715046975223761e-019 -0.5018142835855971 0.8649753897016226 5.715046975224879e-019 -0.5018142835856045 0.8649753897016184</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID814\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID812\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID815\">-28.53282744922561 0.04706611174357161 -27.54503608652599 5.854853581020853 -27.57601917625835 -5.763931954550666 -27.52206684879615 0.04706611174358209 -26.59974397119644 -5.55814125129378 -24.74002718810177 -11.18212484729964 -23.86471360239281 -10.78458382163206 -20.21802346491327 -15.83825019581263 -19.50334285683298 -15.27606432043412 -14.3181898767466 -19.4150537567162 -13.81285613376801 -18.72650327226948 -7.442633762966584 -21.66874754397123 -7.181031656752985 -20.90077510041939 -0.05986734922203591 -21.65067841029053 -0.05986734922203147 -22.44576046162567 7.065417273707942 -20.92514846434208 7.327029141922628 -21.6931232707988 13.70921071502838 -18.77356879328679 14.21454295616055 -19.46214172533002 19.4187408495236 -15.34262380677985 20.13340493729391 -15.90483331120719 23.80482748009175 -10.8660993144682 24.68013205472282 -11.26361907399176 26.56880593685397 -5.64906110558527 27.52202780079212 -0.04706980378244907 27.54501506067751 -5.854844720127505 -26.5687879146979 5.649065240668816 -24.68017861195908 11.26362616270643 -23.80492209641044 10.86610404027797 -20.1333673911358 15.90482031523034 -19.41873183844568 15.34262262532737 -14.21458200416499 19.46211927773357 -13.70921071502846 18.77357233764413 -7.326991595764483 21.69310909336947 -7.065454819865953 20.9251390127225 0.05980164344524746 21.65067841029049 0.05980164344527855 22.44574392129143 7.180994110594869 20.90077510041938 7.442587205730431 21.66875226978101 13.81280957653182 18.72650799807924 14.31814331951038 19.41505375671623 19.50326776451671 15.27607259060124 20.2179874206012 15.8382655546944 23.86467605623466 10.78457791436985 24.73998964194365 11.18211185132277 26.59974397119641 5.558144204924854 27.57592606178605 5.763926047288433 28.53273433475351 -0.04706980378245257 13.78796303089303 2.881963023644217 13.77250753033876 -2.927422360063753 14.26636716737676 -0.02353490189122628 13.76101390039606 -0.02353490189122454 13.2998719855982 2.779072102462427 12.36999482097183 5.591055925661383 11.93233802811733 5.392288957184925 10.1089937103006 7.919132777347199 9.751633882258355 7.638036295300619 7.159071659755192 9.707526878358115 6.906404788265909 9.363253999039621 3.721293602865216 10.8343761348905 3.590497055297435 10.45038755020969 0.02990082172263927 11.22287196064572 0.02990082172262373 10.82533920514525 -3.663495797882241 10.84655454668474 -3.532727409932976 10.46256950636125 -6.854605357514229 9.386786168822065 -7.107291002082496 9.731059638866784 -9.709365919222838 7.671311312663686 -10.0666836955679 7.95241015761517 -11.90246104820522 5.433052020138987 -12.34008930597954 5.631813081353213 -13.28439395734895 2.824532620334408 -13.77251804326299 2.927426790510427 -13.76103342439808 0.02353305587179104 13.28440296842699 -2.824530552792635 12.34006602736141 -5.631809536995879 11.90241374004588 -5.433049657234099 10.06670246864696 -7.952416655603594 9.709370424761799 -7.671311903389926 7.107271478080275 -9.731070862665009 6.854605357514191 -9.386784396643396 3.663514570961314 -10.8465616353994 3.532708636853971 -10.46257423217104 -0.02993367461101574 -11.22288023081283 -0.02993367461101796 -10.82533920514526 -3.721316881483292 -10.83437377198561 -3.590515828376493 -10.4503875502097 -6.906428066884002 -9.363251636134741 -7.159094938373302 -9.707526878358099 -9.751671428416488 -7.638032160217059 -10.10901173245664 -7.919125097906314 -11.9323568011964 -5.39229191081603 -12.37001359405088 -5.591062423649821 -13.29987198559822 -2.77907062564689 -13.78800958812917 -2.881965977275333 -14.2664137246128 0.0235330558717858 12.86224447874696 -2.929792278906809 12.86224447874703 2.929743190342062 15.27491705001244 -2.92979227890684 15.2749170500126 2.929743190342119 6.431122239373517 1.464871595171031 7.637458525006222 -1.46489613945342 7.637458525006302 1.46487159517106 6.431122239373481 -1.464896139453405 -12.86224447874705 -2.92973185074145 -15.27491705001257 -2.929731850741423 -12.86224447874703 2.929750167992304 -15.2749170500126 2.929750167992251 -7.637458525006284 -1.464865925370711 -6.431122239373517 1.464875083996152 -7.637458525006302 1.464875083996125 -6.431122239373526 -1.464865925370725 -12.86224447874705 2.929721881732527 -12.86224447874709 -2.929852871110114 -15.27491705001257 2.929721881732551 -15.27491705001264 -2.929852871110166 -6.431122239373543 -1.464926435555057 -7.637458525006283 1.464860940866276 -7.637458525006319 -1.464926435555083 -6.431122239373525 1.464860940866263 -12.86224447874695 -2.929677555424782 -15.27491705001234 -2.929677555424733 -12.86224447874709 2.929823033031287 -15.27491705001264 2.929823033031245 -7.637458525006169 -1.464838777712367 -6.431122239373543 1.464911516515643 -7.63745852500632 1.464911516515623 -6.431122239373472 -1.464838777712391 -15.27491705001234 2.929697425929927 -12.86224447874695 2.929697425929892 -15.2749170500125 -2.929855373115951 -12.86224447874691 -2.929855373116002 -6.431122239373472 1.464848712964946 -7.637458525006249 -1.464927686557976 -6.431122239373455 -1.464927686558001 -7.637458525006169 1.464848712964963 -12.86224447874691 2.92974286903891 -12.86224447874709 -2.929773314130085 -15.2749170500125 2.929742869038943 -15.27491705001257 -2.929773314130076 -6.431122239373543 -1.464886657065043 -7.637458525006249 1.464871434519471 -7.637458525006284 -1.464886657065038 -6.431122239373455 1.464871434519455 -15.27491705001257 2.929540399646405 -12.86224447874709 2.929540399646413 -15.27491705001243 -2.930000664061414 -12.86224447874695 -2.930000664061421 -6.431122239373543 1.464770199823206 -7.637458525006213 -1.465000332030707 -6.431122239373472 -1.465000332030711 -7.637458525006284 1.464770199823202 -12.86224447874695 2.9299607810872 -12.86224447874695 -2.929581822242644 -15.27491705001243 2.929960781087207 -15.27491705001232 -2.929581822242648 -6.431122239373472 -1.464790911121322 -7.637458525006213 1.464980390543604 -7.63745852500616 -1.464790911121324 -6.431122239373472 1.4649803905436 -12.86224447874695 2.929734008047279 -12.86224447874698 -2.929795632432642 -15.27491705001232 2.929734008047276 -15.27491705001264 -2.929795632432599 -6.43112223937349 -1.464897816216321 -7.63745852500616 1.464867004023638 -7.63745852500632 -1.4648978162163 -6.431122239373472 1.46486700402364 -15.27491705001264 2.929854278460836 -12.86224447874698 2.929854278460752 -15.27491705001246 -2.929664031079308 -12.86224447874705 -2.929664031079275 -6.43112223937349 1.464927139230376 -7.637458525006231 -1.464832015539654 -6.431122239373526 -1.464832015539638 -7.63745852500632 1.464927139230418 -12.86224447874705 2.929799501924695 -12.86224447874709 -2.929746866326544 -15.27491705001246 2.929799501924643 -15.2749170500126 -2.929746866326596 -6.431122239373543 -1.464873433163272 -7.637458525006231 1.464899750962321 -7.637458525006302 -1.464873433163298 -6.431122239373526 1.464899750962348 -12.86224447874695 -2.929774255369613 -15.2749170500125 -2.92977425536968 -12.86224447874709 2.929742564000939 -15.2749170500126 2.929742564000883 -7.637458525006249 -1.46488712768484 -6.431122239373543 1.46487128200047 -7.637458525006302 1.464871282000442 -6.431122239373472 -1.464887127684806 -12.86224447874693 -2.929781790797601 -15.27491705001246 -2.929781790797626 -12.86224447874695 2.929741567953739 -15.2749170500125 2.92974156795366 -7.637458525006231 -1.464890895398813 -6.431122239373472 1.464870783976869 -7.637458525006249 1.46487078397683 -6.431122239373464 -1.4648908953988 12.86224447874693 -2.929772829085486 12.86224447874707 2.929790045178396 15.27491705001246 -2.929772829085463 15.27491705001257 2.929790045178342 6.431122239373535 1.464895022589198 7.637458525006231 -1.464886414542731 7.637458525006284 1.464895022589171 6.431122239373464 -1.464886414542743 12.86224447874707 -2.9297580530314 12.86224447874705 2.929757835224654 15.27491705001257 -2.929758053031452 15.2749170500126 2.929757835224672 6.431122239373526 1.464878917612327 7.637458525006284 -1.464879026515726 7.637458525006302 1.464878917612336 6.431122239373535 -1.4648790265157 12.86224447874705 2.929803538710713 15.2749170500125 2.929803538710692 12.86224447874705 -2.929750667340226 15.2749170500126 -2.929750667340216 7.637458525006249 1.464901769355346 6.431122239373526 -1.464875333670113 7.637458525006302 -1.464875333670108 6.431122239373526 1.464901769355357 12.86224447874705 2.929593042074726 15.27491705001246 2.929593042074761 12.86224447874705 -2.92993527925525 15.2749170500125 -2.929935279255278 7.637458525006231 1.464796521037381 6.431122239373526 -1.464967639627625 7.637458525006249 -1.464967639627639 6.431122239373526 1.464796521037363 12.86224447874696 2.929842954384198 15.27491705001232 2.929842954384168 12.86224447874705 -2.9296825896425 15.27491705001246 -2.929682589642478 7.63745852500616 1.464921477192084 6.431122239373526 -1.46484129482125 7.637458525006231 -1.464841294821239 6.431122239373481 1.464921477192099 15.2749170500125 2.929780138522509 15.27491705001232 -2.929740962824745 12.86224447874705 2.92978013852247 12.86224447874696 -2.929740962824737 7.63745852500616 -1.464870481412373 6.431122239373526 1.464890069261235 6.431122239373481 -1.464870481412369 7.637458525006249 1.464890069261254 15.27491705001248 2.92958429256624 15.2749170500125 -2.9299561138927 12.862244478747 2.929584292566244 12.86224447874705 -2.929956113892731 7.637458525006249 -1.46497805694635 6.431122239373499 1.464792146283122 6.431122239373526 -1.464978056946366 7.63745852500624 1.46479214628312 15.27491705001243 2.929938126060052 15.27491705001248 -2.929568316003488 12.86224447874695 2.929938126060063 12.862244478747 -2.929568316003465 7.63745852500624 -1.464784158001744 6.431122239373472 1.464969063030032 6.431122239373499 -1.464784158001733 7.637458525006213 1.464969063030026 15.27491705001244 2.929762392715948 15.27491705001243 -2.929777731100098 12.86224447874698 2.929762392715941 12.86224447874695 -2.929777731100067 7.637458525006213 -1.464888865550049 6.43112223937349 1.464881196357971 6.431122239373472 -1.464888865550033 7.637458525006222 1.464881196357974 12.86224447874698 -2.929833042641436 12.86224447874698 2.929710500811676 15.27491705001244 -2.929833042641431 15.27491705001246 2.929710500811587 6.43112223937349 1.464855250405838 7.637458525006222 -1.464916521320715 7.637458525006231 1.464855250405794 6.43112223937349 -1.464916521320718 12.86224447874696 2.929826448053173 15.27491705001244 2.92982644805314 12.86224447874698 -2.929692188965083 15.27491705001246 -2.929692188965185 7.637458525006222 1.46491322402657 6.43112223937349 -1.464846094482541 7.637458525006231 -1.464846094482593 6.431122239373481 1.464913224026587</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID815\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID811\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID809\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID810\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID811\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID812\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 12 12 13 13 11 11 11 11 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 24 24 25 25 23 23 22 22 23 23 25 25 3 3 1 1 26 26 1 1 27 27 26 26 26 26 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 34 34 33 33 35 35 33 33 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 24 24 24 24 46 46 25 25 47 47 25 25 46 46 96 96 97 97 98 98 99 99 98 98 97 97 104 104 105 105 97 106 99 107 97 106 105 105 104 112 108 113 105 114 109 115 105 114 108 113 112 120 113 121 108 122 109 123 108 122 113 121 113 128 112 129 116 130 117 131 116 130 112 129 117 136 120 137 116 138 121 139 116 138 120 137 121 144 120 145 124 146 125 147 124 146 120 145 125 152 128 153 124 154 129 155 124 154 128 153 128 160 132 161 129 162 133 163 129 162 132 161 133 168 132 169 136 170 137 171 136 170 132 169 137 176 140 177 136 178 141 179 136 178 140 177 144 184 145 185 140 186 141 187 140 186 145 185 148 192 149 193 144 194 145 195 144 194 149 193 148 200 152 201 149 202 153 203 149 202 152 201 152 208 156 209 153 210 157 211 153 210 156 209 160 216 161 217 156 218 157 219 156 218 161 217 164 224 165 225 160 226 161 227 160 226 165 225 168 232 169 233 164 234 165 235 164 234 169 233 172 240 169 241 173 242 168 243 173 242 169 241 176 248 172 249 177 250 173 251 177 250 172 249 180 256 176 257 181 258 177 259 181 258 176 257 184 264 180 265 185 266 181 267 185 266 180 265 185 272 188 273 184 274 189 275 184 274 188 273 96 280 98 281 188 282 189 283 188 282 98 281</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID811\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID812\" />\r\n\t\t\t\t\t<p>48 48 49 49 50 50 49 49 48 48 51 51 51 51 48 48 52 52 52 52 48 48 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59 58 58 59 59 60 60 60 60 59 59 61 61 60 60 61 61 62 62 62 62 61 61 63 63 62 62 63 63 64 64 64 64 63 63 65 65 65 65 63 63 66 66 65 65 66 66 67 67 67 67 66 66 68 68 67 67 68 68 69 69 69 69 68 68 70 70 69 69 70 70 71 71 71 71 70 70 72 72 71 71 72 72 73 73 49 49 74 74 75 75 74 74 49 49 51 51 75 75 74 74 76 76 75 75 76 76 77 77 77 77 76 76 78 78 77 77 78 78 79 79 79 79 78 78 80 80 79 79 80 80 81 81 81 81 80 80 82 82 81 81 82 82 83 83 83 83 82 82 84 84 83 83 84 84 85 85 85 85 84 84 86 86 85 85 86 86 87 87 85 85 87 87 88 88 88 88 87 87 89 89 88 88 89 89 90 90 90 90 89 89 91 91 90 90 91 91 92 92 92 92 91 91 93 93 92 92 93 93 94 94 94 94 93 93 73 73 94 94 73 73 72 72 94 94 72 72 95 95 100 100 101 101 102 102 101 101 100 100 103 103 106 108 100 109 102 110 100 109 106 108 107 111 110 116 106 117 111 118 106 117 110 116 107 119 114 124 110 125 111 126 110 125 114 124 115 127 115 132 118 133 119 134 118 133 115 132 114 135 122 140 118 141 123 142 118 141 122 140 119 143 122 148 126 149 127 150 126 149 122 148 123 151 130 156 126 157 131 158 126 157 130 156 127 159 134 164 131 165 135 166 131 165 134 164 130 167 134 172 138 173 139 174 138 173 134 172 135 175 142 180 138 181 143 182 138 181 142 180 139 183 146 188 142 189 143 190 142 189 146 188 147 191 150 196 147 197 146 198 147 197 150 196 151 199 154 204 150 205 155 206 150 205 154 204 151 207 158 212 155 213 159 214 155 213 158 212 154 215 162 220 158 221 159 222 158 221 162 220 163 223 166 228 163 229 162 230 163 229 166 228 167 231 170 236 167 237 166 238 167 237 170 236 171 239 170 244 174 245 171 246 174 245 170 244 175 247 175 252 178 253 174 254 178 253 175 252 179 255 179 260 182 261 178 262 182 261 179 260 183 263 183 268 186 269 182 270 186 269 183 268 187 271 190 276 187 277 191 278 187 277 190 276 186 279 101 284 190 285 191 286 190 285 101 284 103 287</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID816\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID817\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID821\">-0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.8079789814554541 -1.288720216101408 0.7405885836107005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID821\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID818\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID822\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762080881852e-018 0.5017398950377386 -0.8650185418403001 1.428762080882819e-018 0.5017398950377737 -0.8650185418402798 5.715050599695061e-019 0.7085275831213713 -0.7056831186560921 5.715050599694446e-019 0.7085275831213729 -0.7056831186560907 -1.428762080882819e-018 -0.5017398950377737 0.8650185418402798 -5.715050599695061e-019 -0.7085275831213713 0.7056831186560921 -5.715050599694446e-019 -0.7085275831213729 0.7056831186560907 -1.428762080881852e-018 -0.5017398950377386 0.8650185418403001 -9.286952941388763e-019 0.2607625543991116 -0.9654029677928541 -9.286952941388407e-019 0.2607625543991058 -0.9654029677928556 9.286952941388407e-019 -0.2607625543991058 0.9654029677928556 9.286952941388763e-019 -0.2607625543991116 0.9654029677928541 -7.14381254244789e-020 0.002012725556721015 -0.9999979744658651 -7.143812542448248e-020 0.002012725556727595 -0.9999979744658651 7.14381254244789e-020 -0.002012725556721015 0.9999979744658651 7.143812542448248e-020 -0.002012725556727595 0.9999979744658651 -8.572571838953487e-019 -0.2568741755083704 -0.9664448551039501 -8.572571838953785e-019 -0.2568741755083748 -0.9664448551039488 8.572571838953785e-019 0.2568741755083748 0.9664448551039488 8.572571838953487e-019 0.2568741755083704 0.9664448551039501 -2.000267235225424e-018 -0.4982546428953847 -0.8670307438800501 -2.000267235225416e-018 -0.4982546428953812 -0.8670307438800519 2.000267235225416e-018 0.4982546428953812 0.8670307438800519 2.000267235225424e-018 0.4982546428953847 0.8670307438800501 1.045111957692991e-006 -0.7056819897722565 -0.7085287074706123 1.045111957693077e-006 -0.7056819897722642 -0.7085287074706047 -1.045111957692991e-006 0.7056819897722565 0.7085287074706123 -1.045111957693077e-006 0.7056819897722642 0.7085287074706047 1.703558339410631e-006 -0.8650181793754788 -0.5017405199373778 1.703555472269594e-006 -0.8650186691821249 -0.5017396754926639 -1.703558339410631e-006 0.8650181793754788 0.5017405199373778 -1.703555472269594e-006 0.8650186691821249 0.5017396754926639 6.584446236329073e-007 -0.9654035292207907 -0.2607604758540074 6.584446236328554e-007 -0.9654035292207932 -0.2607604758539974 -6.584446236329073e-007 0.9654035292207907 0.2607604758540074 -6.584446236328554e-007 0.9654035292207932 0.2607604758539974 -6.286553020284208e-018 -0.999997973793477 -0.002013059596886011 -6.286553020284232e-018 -0.999997973793477 -0.002013059596885226 6.286553020284208e-018 0.999997973793477 0.002013059596886011 6.286553020284232e-018 0.999997973793477 0.002013059596885226 -8.001067536444891e-018 -0.9664454482419091 0.2568719439185513 -8.001067536444849e-018 -0.9664454482419086 0.2568719439185535 8.001067536444891e-018 0.9664454482419091 -0.2568719439185513 8.001067536444849e-018 0.9664454482419086 -0.2568719439185535 -6.858064911194342e-018 -0.8670284530084556 0.4982586293018563 -6.858064911194386e-018 -0.8670284530084529 0.4982586293018606 6.858064911194342e-018 0.8670284530084556 -0.4982586293018563 6.858064911194386e-018 0.8670284530084529 -0.4982586293018606 -1.714512912291224e-018 -0.7085272435711623 0.7056834595747947 -1.714512912290773e-018 -0.7085272435711557 0.7056834595748014 1.714512912291224e-018 0.7085272435711623 -0.7056834595747947 1.714512912290773e-018 0.7085272435711557 -0.7056834595748014 2.000267850227171e-018 -0.50174509130913 0.8650155278069827 2.000267850227025e-018 -0.5017450913091236 0.8650155278069864 -2.000267850227171e-018 0.50174509130913 -0.8650155278069827 -2.000267850227025e-018 0.5017450913091236 -0.8650155278069864 -9.286958702616151e-019 -0.260760369696751 0.9654035578946318 -9.286958702615267e-019 -0.2607603696967824 0.9654035578946233 9.286958702615267e-019 0.2607603696967824 -0.9654035578946233 9.286958702616151e-019 0.260760369696751 -0.9654035578946318 -9.286950770806969e-019 -0.002010277094332024 0.9999979793909607 -9.286950770806418e-019 -0.002010277094311723 0.9999979793909607 9.286950770806969e-019 0.002010277094332024 -0.9999979793909607 9.286950770806418e-019 0.002010277094311723 -0.9999979793909607 5.715048573591528e-019 0.2568730418156993 0.9664451564306947 5.715048573588878e-019 0.2568730418156698 0.9664451564307025 -5.715048573591528e-019 -0.2568730418156993 -0.9664451564306947 -5.715048573588878e-019 -0.2568730418156698 -0.9664451564307025 2.000267221612171e-018 0.4982543657066573 0.8670309031714246 2.000267221612142e-018 0.4982543657066462 0.8670309031714313 -2.000267221612142e-018 -0.4982543657066462 -0.8670309031714313 -2.000267221612171e-018 -0.4982543657066573 -0.8670309031714246 4.572040930296596e-018 0.7056830209675885 0.70852768041768 4.572040930296914e-018 0.7056830209676014 0.7085276804176672 -4.572040930296596e-018 -0.7056830209675885 -0.70852768041768 -4.572040930296914e-018 -0.7056830209676014 -0.7085276804176672 -1.143009385792095e-018 0.8650179182247008 0.5017409701730615 -1.14300938579175e-018 0.8650179182246978 0.5017409701730664 1.14300938579175e-018 -0.8650179182246978 -0.5017409701730664 1.143009385792095e-018 -0.8650179182247008 -0.5017409701730615 -2.857524059865316e-018 0.9654022143532302 0.2607653437899289 -2.857524059864703e-018 0.9654022143532335 0.2607653437899165 2.857524059864703e-018 -0.9654022143532335 -0.2607653437899165 2.857524059865316e-018 -0.9654022143532302 -0.2607653437899289 8.572576927432834e-018 0.9999979724130936 0.002013745192837834 8.572576927432837e-018 0.9999979724130936 0.002013745192837731 -8.572576927432837e-018 -0.9999979724130936 -0.002013745192837731 -8.572576927432834e-018 -0.9999979724130936 -0.002013745192837834 1.028708566471029e-017 0.9664447927409177 -0.2568744101384266 1.028708566471013e-017 0.9664447927409161 -0.2568744101384328 -1.028708566471013e-017 -0.9664447927409161 0.2568744101384328 -1.028708566471029e-017 -0.9664447927409177 0.2568744101384266 1.714514848941008e-018 0.8670306548123127 -0.4982547978853114 1.714514848940942e-018 0.8670306548123118 -0.4982547978853128 -1.714514848940942e-018 -0.8670306548123118 0.4982547978853128 -1.714514848941008e-018 -0.8670306548123127 0.4982547978853114</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID822\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID820\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID823\">-29.72717074101174 0.0470661117435751 -28.69876344623657 6.098035481956177 -28.72973752489099 -6.007128032915357 -28.53282744922561 0.0470661117435786 -27.57601917625835 -5.76393195455067 -25.77444337003271 -11.65193295607063 -24.74002718810198 -11.18212484729966 -21.06255070275907 -16.50266951408773 -20.21802346491317 -15.83825019581262 -14.91540807987584 -20.22880748247863 -14.31818987674653 -19.41505375671621 -7.751770807285503 -22.57637002932572 -7.442633762966477 -21.6687475439712 -0.05986734922217803 -23.38535305011864 -0.05986734922200039 -22.44576046162567 7.327029141922557 -21.6931232707988 7.636146662239294 -22.60070086096038 14.21454295616059 -19.46214172533004 14.81174313713382 -20.27586000751904 20.13340493729391 -15.90483331120722 20.97795770652724 -16.56924435931522 24.68013205472289 -11.26361907399176 25.71453772372937 -11.73342718276273 27.5450150606774 -5.854844720127502 28.53273433475355 -0.04706980378241763 28.69872439823219 -6.09804847793303 -27.54503608652592 5.854853581020838 -25.71460380496778 11.73344963035913 -24.68017861195898 11.26362616270643 -20.97801477668778 16.56924081495793 -20.13336739113572 15.90482031523034 -14.81179119621629 20.27586473332886 -14.21458200416507 19.46211927773357 -7.636156424240395 22.60071976419947 -7.326991595764447 21.69310909336947 0.05980164344520748 22.44574392129145 0.05980164344520748 23.38537904207242 7.442587205730467 21.66875226978099 7.751723499126264 22.57635112608661 14.31814331951052 19.41505375671623 14.91535251156158 20.22880748247864 20.2179874206012 15.8382655546944 21.062597259995 16.50268132861221 24.73998964194376 11.18211185132279 25.7744043220282 11.65192704880838 27.57592606178616 5.76392604728844 28.72971049165699 6.007126260736706 29.72717074101186 -0.04706980378243859 14.36485524582849 3.003563130368353 14.34936219911609 -3.049024238966515 14.86358537050593 -0.0235349018912193 14.26636716737677 -0.02353490189120882 13.78796303089308 2.88196302364422 12.8872021610141 5.825963524404191 12.36999482097188 5.591055925661395 10.5312986299975 8.251340664306103 10.1089937103006 7.919132777347201 7.45767625578079 10.11440374123932 7.159071659755262 9.707526878358113 3.875861749563132 11.28817556304331 3.721293602865234 10.83437613489049 0.02990082172260374 11.69268952103621 0.02990082172260374 11.22287196064572 -3.818078212120197 11.30035988209974 -3.663495797882224 10.84655454668473 -7.107291002082534 9.731059638866787 -7.405895598108147 10.13793236666443 -10.06668369556786 7.952410157615169 -10.48900738834389 8.284620407478963 -12.34008930597949 5.631813081353215 -12.85730190248389 5.866724815179567 -13.77251804326296 2.927426790510419 -14.34938172311829 3.049017740978088 -14.2664137246128 0.0235330558717893 13.7725075303387 -2.927422360063751 12.85726886186469 -5.866713591381362 12.34006602736145 -5.631809536995879 10.48897885326362 -8.28462217965761 10.06670246864696 -7.952416655603611 7.405871568566908 -10.13793000375952 7.107271478080293 -9.731070862665019 3.818073331119647 -11.30035043048019 3.663514570961278 -10.8465616353994 -0.02993367461108901 -11.69267652505932 -0.0299336746110002 -11.22288023081284 -3.721316881483239 -10.8343737719856 -3.875885403642752 -11.28818501466286 -7.159094938373267 -9.707526878358106 -7.45770403993792 -10.11440374123932 -10.10901173245659 -7.919125097906307 -10.53127535137954 -8.251334757043864 -12.37001359405099 -5.591062423649832 -12.88722168501636 -5.825966478035316 -13.78800958812917 -2.881965977275335 -14.3648687624455 -3.003564016457678 -14.86358537050587 0.02353305587178755 15.27491705001234 3.052369011605174 16.15957962910908 3.052369011605017 15.2749170500125 -3.052489088735269 16.15957962910919 -3.05248908873528 8.079789814554541 1.526184505802509 7.637458525006249 -1.526244544367635 8.079789814554594 -1.52624454436764 7.637458525006169 1.526184505802587 15.27491705001257 3.052393434432461 16.1595796291089 3.052393434432479 15.27491705001234 -3.05240474671089 16.15957962910908 -3.052404746711059 8.079789814554452 1.526196717216239 7.637458525006169 -1.526202373355445 8.079789814554541 -1.526202373355529 7.637458525006284 1.52619671721623 15.27491705001257 -3.052357776085104 15.27491705001246 3.052465505274848 16.1595796291089 -3.052357776085077 16.15957962910905 3.05246550527482 7.637458525006231 1.526232752637424 8.079789814554452 -1.526178888042539 8.079789814554523 1.52623275263741 7.637458525006284 -1.526178888042552 -15.27491705001257 -3.052373540330827 -16.15957962910892 -3.05237354033085 -15.27491705001246 3.052416952581463 -16.15957962910905 3.052416952581491 -8.079789814554461 -1.526186770165425 -7.637458525006231 1.526208476290732 -8.079789814554523 1.526208476290746 -7.637458525006284 -1.526186770165414 -15.27491705001257 -3.052465806413236 -16.1595796291089 -3.052465806413212 -15.27491705001257 3.052375467693421 -16.15957962910892 3.052375467693405 -8.079789814554452 -1.526232903206606 -7.637458525006284 1.526187733846711 -8.079789814554461 1.526187733846702 -7.637458525006284 -1.526232903206618 -15.27491705001257 3.052369534568098 -15.2749170500126 -3.052461191049092 -16.1595796291089 3.052369534568117 -16.15957962910917 -3.052461191049134 -7.637458525006302 -1.526230595524546 -8.079789814554452 1.526184767284059 -8.079789814554585 -1.526230595524567 -7.637458525006284 1.526184767284049 -15.27486216783468 3.05239166573236 -15.2748497760961 -3.052427910611382 -16.15952474692822 3.052390554465293 -16.15951235518956 -3.05243276531964 -7.637424888048051 -1.526213955305691 -8.079762373464108 1.526195277232647 -8.079756177594778 -1.52621638265982 -7.637431083917338 1.52619583286618 -16.15954325896589 3.052475085430112 -15.27488067987029 3.052479826373591 -16.15953903824096 -3.052340909406815 -15.27487645914545 -3.052340530900251 -7.637440339935146 1.526239913186796 -8.079769519120479 -1.526170454703408 -7.637438229572727 -1.526170265450126 -8.079771629482943 1.526237542715056 -16.15957962910889 3.052418165791704 -15.2749170500125 3.052418165791669 -16.15957962910889 -3.052394161251984 -15.2749170500123 -3.052394161251988 -7.637458525006249 1.526209082895835 -8.079789814554443 -1.526197080625992 -7.637458525006151 -1.526197080625994 -8.079789814554443 1.526209082895852 -16.15957962910888 3.052374063043219 -15.2749170500123 3.052374063043222 -16.15957962910892 -3.052455040458447 -15.27491705001232 -3.052455040458483 -7.63745852500615 1.526187031521611 -8.079789814554459 -1.526227520229223 -7.637458525006159 -1.526227520229242 -8.079789814554442 1.52618703152161 -16.15957962910892 3.05231841192716 -15.27491705001232 3.052318411927153 -16.15957962910915 -3.052488191674192 -15.27491705001257 -3.052488191674224 -7.63745852500616 1.526159205963577 -8.079789814554577 -1.526244095837096 -7.637458525006284 -1.526244095837112 -8.079789814554461 1.52615920596358 -15.27491705001257 3.052651720185259 -15.27491705001232 -3.052197806521551 -16.15957962910915 3.05265172018527 -16.1595796291089 -3.052197806521591 -7.63745852500616 -1.526098903260776 -8.079789814554577 1.526325860092635 -8.079789814554452 -1.526098903260796 -7.637458525006284 1.52632586009263 -15.27491705001232 3.05224551536068 -15.27491705001257 -3.0525561576722 -16.1595796291089 3.052245515360641 -16.15957962910915 -3.052556157672223 -7.637458525006284 -1.5262780788361 -8.079789814554452 1.526122757680321 -8.079789814554577 -1.526278078836111 -7.63745852500616 1.52612275768034 -15.27491705001248 -3.052423131493245 -16.15957962910908 -3.052423131493118 -15.27491705001257 3.052388317079474 -16.15957962910915 3.052388317079447 -8.079789814554541 -1.526211565746559 -7.637458525006284 1.526194158539737 -8.079789814554577 1.526194158539723 -7.63745852500624 -1.526211565746623 -15.27491705001248 3.052553877330089 -15.27491705001243 -3.052249109402259 -16.15957962910908 3.052553877330226 -16.15957962910915 -3.052249109402342 -7.637458525006213 -1.52612455470113 -8.079789814554541 1.526276938665113 -8.079789814554577 -1.526124554701171 -7.63745852500624 1.526276938665044 15.27491705001243 -3.052416690054004 15.27491705001246 3.052416535812357 16.15957962910915 -3.05241669005392 16.15957962910915 3.052416535812224 7.637458525006231 1.526208267906179 8.079789814554577 -1.52620834502696 8.079789814554577 1.526208267906112 7.637458525006213 -1.526208345027002 15.27491705001246 3.052438862169398 16.15957962910905 3.052438862169345 15.27491705001246 -3.052369155945408 16.15957962910915 -3.052369155945526 8.079789814554523 1.526219431084672 7.637458525006231 -1.526184577972704 8.079789814554577 -1.526184577972763 7.637458525006231 1.526219431084699 15.27491705001246 -3.052388094537107 15.27491705001264 3.05243197721078 16.15957962910905 -3.052388094537172 16.15957962910919 3.052431977210855 7.63745852500632 1.52621598860539 8.079789814554523 -1.526194047268586 8.079789814554594 1.526215988605428 7.637458525006231 -1.526194047268554 16.15957962910915 3.052318676844975 16.15957962910919 -3.052517161824061 15.27491705001257 3.052318676844949 15.27491705001264 -3.052517161824126 8.079789814554594 -1.526258580912031 7.637458525006284 1.526159338422474 7.63745852500632 -1.526258580912063 8.079789814554577 1.526159338422487 16.1595796291089 3.052433055023369 16.15957962910915 -3.052362761715934 15.27491705001246 3.05243305502342 15.27491705001257 -3.052362761715977 8.079789814554575 -1.526181380857967 7.63745852500623 1.52621652751171 7.637458525006283 -1.526181380857988 8.07978981455445 1.526216527511684 15.27491705001232 3.052501452363784 16.15957962910901 3.052501452363778 15.27491705001246 -3.052324167367494 16.1595796291089 -3.052324167367532 8.079789814554506 1.526250726181889 7.637458525006231 -1.526162083683747 8.079789814554452 -1.526162083683766 7.63745852500616 1.526250726181892 15.27491705001232 3.052376857360129 16.15957962910922 3.052376857360143 15.27491705001232 -3.052456883429417 16.15957962910901 -3.052456883429418 8.07978981455461 1.526188428680072 7.637458525006159 -1.526228441714708 8.079789814554504 -1.526228441714709 7.637458525006159 1.526188428680064 16.15957962910908 3.052455255490922 16.15957962910922 -3.052351123981224 15.2749170500125 3.052455255490937 15.27491705001232 -3.052351123981252 8.079789814554612 -1.526175561990612 7.637458525006249 1.526227627745469 7.63745852500616 -1.526175561990626 8.079789814554541 1.526227627745461 15.2749170500125 3.052429041414679 16.15957962910919 3.052429041414678 15.2749170500125 -3.052393678245672 16.15957962910908 -3.052393678245677 8.079789814554593 1.526214520707339 7.637458525006248 -1.526196839122836 8.079789814554539 -1.526196839122838 7.637458525006248 1.52621452070734</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"288\" source=\"#ID823\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID819\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID817\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID818\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID819\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID820\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 14 14 15 15 13 13 13 13 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 24 24 25 25 23 23 22 22 23 23 25 25 3 3 1 1 26 26 1 1 27 27 26 26 26 26 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 34 34 33 33 35 35 33 33 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 24 24 24 24 46 46 25 25 47 47 25 25 46 46 96 96 97 97 98 98 99 99 98 98 97 97 104 104 105 105 96 106 97 107 96 106 105 105 104 112 108 113 105 114 109 115 105 114 108 113 112 120 113 121 108 122 109 123 108 122 113 121 116 128 117 129 112 130 113 131 112 130 117 129 116 136 120 137 117 138 121 139 117 138 120 137 120 144 124 145 121 146 125 147 121 146 124 145 125 152 124 153 128 154 129 155 128 154 124 153 128 160 129 161 132 162 133 163 132 162 129 161 132 168 133 169 136 170 137 171 136 170 133 169 136 176 137 177 140 178 141 179 140 178 137 177 141 184 144 185 140 186 145 187 140 186 144 185 144 192 148 193 145 194 149 195 145 194 148 193 152 200 153 201 148 202 149 203 148 202 153 201 152 208 156 209 153 210 157 211 153 210 156 209 156 216 160 217 157 218 161 219 157 218 160 217 164 224 165 225 160 226 161 227 160 226 165 225 164 232 168 233 165 234 169 235 165 234 168 233 172 240 169 241 173 242 168 243 173 242 169 241 176 248 172 249 177 250 173 251 177 250 172 249 180 256 181 257 177 258 176 259 177 258 181 257 184 264 185 265 180 266 181 267 180 266 185 265 188 272 185 273 189 274 184 275 189 274 185 273 98 280 99 281 189 282 188 283 189 282 99 281</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID819\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID820\" />\r\n\t\t\t\t\t<p>48 48 49 49 50 50 49 49 48 48 51 51 51 51 48 48 52 52 52 52 48 48 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59 58 58 59 59 60 60 60 60 59 59 61 61 60 60 61 61 62 62 62 62 61 61 63 63 62 62 63 63 64 64 64 64 63 63 65 65 65 65 63 63 66 66 65 65 66 66 67 67 67 67 66 66 68 68 67 67 68 68 69 69 69 69 68 68 70 70 69 69 70 70 71 71 71 71 70 70 72 72 71 71 72 72 73 73 49 49 74 74 75 75 74 74 49 49 51 51 75 75 74 74 76 76 75 75 76 76 77 77 77 77 76 76 78 78 77 77 78 78 79 79 79 79 78 78 80 80 79 79 80 80 81 81 81 81 80 80 82 82 81 81 82 82 83 83 83 83 82 82 84 84 83 83 84 84 85 85 83 83 85 85 86 86 86 86 85 85 87 87 86 86 87 87 88 88 88 88 87 87 89 89 88 88 89 89 90 90 90 90 89 89 91 91 90 90 91 91 92 92 92 92 91 91 93 93 92 92 93 93 94 94 94 94 93 93 73 73 94 94 73 73 72 72 94 94 72 72 95 95 100 100 101 101 102 102 101 101 100 100 103 103 106 108 103 109 100 110 103 109 106 108 107 111 110 116 106 117 111 118 106 117 110 116 107 119 114 124 110 125 111 126 110 125 114 124 115 127 118 132 115 133 114 134 115 133 118 132 119 135 122 140 118 141 123 142 118 141 122 140 119 143 126 148 123 149 127 150 123 149 126 148 122 151 126 156 130 157 131 158 130 157 126 156 127 159 131 164 134 165 135 166 134 165 131 164 130 167 135 172 138 173 139 174 138 173 135 172 134 175 139 180 142 181 143 182 142 181 139 180 138 183 146 188 142 189 147 190 142 189 146 188 143 191 150 196 147 197 151 198 147 197 150 196 146 199 154 204 150 205 151 206 150 205 154 204 155 207 158 212 154 213 159 214 154 213 158 212 155 215 162 220 159 221 163 222 159 221 162 220 158 223 166 228 162 229 163 230 162 229 166 228 167 231 170 236 166 237 171 238 166 237 170 236 167 239 171 244 174 245 170 246 174 245 171 244 175 247 175 252 178 253 174 254 178 253 175 252 179 255 182 260 178 261 179 262 178 261 182 260 183 263 186 268 183 269 182 270 183 269 186 268 187 271 186 276 190 277 187 278 190 277 186 276 191 279 102 284 190 285 191 286 190 285 102 284 101 287</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID824\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID825\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID829\">0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035627 -0.3578613696232667 1.324001740206996 0.8481914425151409 -0.35666972965487 1.31956378430982 0.848191442515148 0.680868640605695 1.185278447723705 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035609 0.6831636119784472 1.189256688460091 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151351 -0.6860480580346522 1.182286995116669 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035627 -0.6883468591155371 1.186265836591588 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151387 0.9644406560028058 0.9686694797989038 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151387 0.6860518126504815 -1.182286394378136 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035627 0.6883464085616424 -1.186264860391474 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151333 -0.6808676644055873 -1.185277922077488 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151351 -0.3508928026645748 -1.321112338057901 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461098018 -1.366914445870862 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035609 0.002993367461099794 -1.371508293416812 0.8481914425151387 0.002993367461098018 -1.366914445870862</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID829\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID826\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID830\">-0.004280981954898488 0.002184853357166072 -0.9999884497379504 -0.00428062881210491 -0.2567048492765375 -0.9664803653333486 -0.004280981952864871 0.002183299616824533 -0.999988453131486 -0.004280628810128404 -0.2567062461107217 -0.9664799943220406 0.00428062881210491 0.2567048492765375 0.9664803653333486 0.004280981952864871 -0.002183299616824533 0.999988453131486 0.004280628810128404 0.2567062461107217 0.9664799943220406 0.004280981954898488 -0.002184853357166072 0.9999884497379504 -0.00428163879072645 0.2609252439511864 -0.9653495142373459 -0.004281638786373565 0.2609241043035803 -0.9653498222730853 0.004281638786373565 -0.2609241043035803 0.9653498222730853 0.00428163879072645 -0.2609252439511864 0.9653495142373459 -0.00428036937316088 -0.4981009455189371 -0.867108486010355 -0.004280369372364794 -0.4981020763274863 -0.8671078364288279 0.004280369372364794 0.4981020763274863 0.8671078364288279 0.00428036937316088 0.4981009455189371 0.867108486010355 -0.004282256413127314 0.5018847979083912 -0.8649238763662763 -0.004282256411797012 0.5018836420376206 -0.864924547076262 0.004282256411797012 -0.5018836420376206 0.864924547076262 0.004282256413127314 -0.5018847979083912 0.8649238763662763 -0.004279848671315645 -0.7055541584054808 -0.708643078320874 -0.004279848666279009 -0.705555224291424 -0.7086420170794786 0.004279848666279009 0.705555224291424 0.7086420170794786 0.004279848671315645 0.7055541584054808 0.708643078320874 -0.004281892798924736 0.7086451305096495 -0.7055520848236652 -0.0042818928041386 0.7086441543526577 -0.7055530652586102 0.004281892798924736 -0.7086451305096495 0.7055520848236652 0.0042818928041386 -0.7086441543526577 0.7055530652586102 -0.004279390712496793 -0.8649233212950592 -0.5018857789328697 -0.004279390712642355 -0.8649226644398191 -0.5018869109206303 0.004279390712496793 0.8649233212950592 0.5018857789328697 0.004279390712642355 0.8649226644398191 0.5018869109206303 -0.004281359113397748 0.8671102266169878 -0.4980979069022258 -0.004281359112962919 0.8671110173025061 -0.4980965304403946 0.004281359113397748 -0.8671102266169878 0.4980979069022258 0.004281359112962919 -0.8671110173025061 0.4980965304403946 -0.004280028371695556 -0.965348902363104 -0.2609275341229588 -0.004280028364445989 -0.9653485192918171 -0.260928951360894 0.004280028371695556 0.965348902363104 0.2609275341229588 0.004280028364445989 0.9653485192918171 0.260928951360894 -0.004281468576927181 0.9664802791478765 -0.2567051597554433 -0.004281468578594852 0.9664806579291112 -0.2567037336614381 0.004281468576927181 -0.9664802791478765 0.2567051597554433 0.004281468578594852 -0.9664806579291112 0.2567037336614381 -0.004280447389466799 -0.9999884506049243 -0.002185503811303777 -0.00428044738673919 -0.9999884540002806 -0.002183949701340417 0.004280447389466799 0.9999884506049243 0.002185503811303777 0.00428044738673919 0.9999884540002806 0.002183949701340417 -0.004280716988099828 0.9999884543797312 0.002183247421708556 -0.004280716977420427 0.9999884509864663 0.002184801100054285 0.004280716988099828 -0.9999884543797312 -0.002183247421708556 0.004280716977420427 -0.9999884509864663 -0.002184801100054285 -0.004279849309618837 -0.9664798642304419 0.2567067488925707 -0.004279849305227373 -0.9664794597692433 0.256708271651063 0.004279849309618837 0.9664798642304419 -0.2567067488925707 0.004279849305227373 0.9664794597692433 -0.256708271651063 -0.004279550911469715 0.9653495572584627 0.2609251190377931 -0.004279550914307764 0.9653499365637356 0.2609237157108637 0.004279550911469715 -0.9653495572584627 -0.2609251190377931 0.004279550914307764 -0.9653499365637356 -0.2609237157108637 -0.004279366945403445 -0.8671083352607096 0.4981012165614008 -0.004279366943950962 -0.8671074945846607 0.4981026800306053 0.004279366945403445 0.8671083352607096 -0.4981012165614008 0.004279366943950962 0.8671074945846607 -0.4981026800306053 -0.004280137578717258 0.8649244175304505 0.5018838833653839 -0.004280137569418133 0.8649251493016499 0.5018826222613267 0.004280137578717258 -0.8649244175304505 -0.5018838833653839 0.004280137569418133 -0.8649251493016499 -0.5018826222613267 -0.004279503727668084 -0.7086453482994729 0.7055518805738978 -0.004279503731088207 -0.708644065358699 0.7055531691373169 0.004279503727668084 0.7086453482994729 -0.7055518805738978 0.004279503731088207 0.708644065358699 -0.7055531691373169 -0.004280820620104977 0.7055523445921659 0.7086448783525611 -0.004280820622493526 0.7055537732692776 0.7086434559073291 0.004280820620104977 -0.7055523445921659 -0.7086448783525611 0.004280820622493526 -0.7055537732692776 -0.7086434559073291 -0.004279856787992766 -0.5018869261655592 0.8649226532875417 -0.004279856789499468 -0.5018853069956759 0.8649235928379554 0.004279856789499468 0.5018853069956759 -0.8649235928379554 0.004279856787992766 0.5018869261655592 -0.8649226532875417 -0.004280325596508693 0.4981002179615462 0.8671089041633976 -0.004280325599923767 0.4981013730755701 0.8671082406210833 0.004280325599923767 -0.4981013730755701 -0.8671082406210833 0.004280325596508693 -0.4981002179615462 -0.8671089041633976 -0.004280271874951132 -0.2609268930036005 0.9653490745736302 -0.004280271879293935 -0.2609251102153328 0.965349556446656 0.004280271874951132 0.2609268930036005 -0.9653490745736302 0.004280271879293935 0.2609251102153328 -0.965349556446656 -0.004280237446015731 0.256704930550933 0.9664803454795375 -0.004280237443075813 0.2567064328691884 0.966479946450524 0.004280237443075813 -0.2567064328691884 -0.966479946450524 0.004280237446015731 -0.256704930550933 -0.9664803454795375 -0.004280534258190548 -0.002185305100490302 0.9999884506673475 -0.004280534257630148 -0.002183750939241975 0.9999884540624979 0.004280534257630148 0.002183750939241975 -0.9999884540624979 0.004280534258190548 0.002185305100490302 -0.9999884506673475</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID830\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID828\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID831\">16.95653956603488 2.371301515704383 16.72264492845211 -3.239903109249033 -4.493906290557893 2.933910303838056 -4.728586341386173 -2.696140844848241 8.361322464226053 -1.619951554624516 -2.246953145278947 1.466955151919028 -2.364293170693086 -1.348070422424121 8.478269783017442 1.185650757852192 -16.72708843421687 -3.225761471737048 -16.95324444480733 2.385627098572262 4.724869775837585 -2.700043436932254 4.497951786028732 2.930243137362552 -8.476622222403663 1.192813549286131 2.362434887918793 -1.350021718466127 2.248975893014366 1.465121568681276 -8.363544217108437 -1.612880735868524 16.81096911007859 -2.94358313064525 -4.650377267339515 -2.779097278612486 16.8845397929188 2.670381715873585 -4.576559850465017 2.853718301221435 -2.325188633669757 -1.389548639306243 8.442269896459401 1.335190857936793 -2.288279925232509 1.426859150610718 8.405484555039294 -1.471791565322625 -16.81138055951746 -2.942128119354722 -16.88407653528399 2.671868009696685 4.649988302077555 -2.779450835817336 4.577047968530231 2.853401927377038 -8.442038267641994 1.335934004848342 2.324994151038777 -1.389725417908668 2.288523984265115 1.426700963688519 -8.405690279758728 -1.471064059677361 16.82856995092033 -2.880655093693082 -4.633528105959257 -2.796443786905329 16.86821789600814 2.73349127372693 -4.593746885068567 2.836588465561602 -2.316764052979628 -1.398221893452664 8.434108948004072 1.366745636863465 -2.296873442534284 1.418294232780801 8.414284975460165 -1.440327546846541 -16.86799572512858 2.733954476238326 4.593973352083259 2.836523718218725 -16.82868561620813 -2.880198764756717 4.633415836383876 -2.796499481809613 2.296986676041629 1.418261859109362 -8.414342808104063 -1.440099382378358 2.316707918191938 -1.398249740904807 -8.433997862564288 1.366977238119163 -4.601950849363642 2.828377057234473 16.86025756741855 2.763878992145286 -4.625368403466258 -2.804667302171011 16.83691785074735 -2.850323934358243 8.430128783709277 1.381939496072643 -2.312684201733129 -1.402333651085505 8.418458925373676 -1.425161967179121 -2.300975424681821 1.414188528617236 4.602104112393668 2.82847806387397 4.625321723249752 -2.804583041773303 -16.86010532359727 2.764157331875902 -16.83696537367468 -2.850054064282261 2.312660861624876 -1.402291520886652 -8.430052661798635 1.382078665937951 -8.41848268683734 -1.42502703214113 2.301052056196834 1.414239031936985 -4.607345360204824 2.822837129837691 16.85496166571006 2.783686677685021 -4.620007726224934 -2.810278447092262 16.84234184440923 -2.830551225302984 8.42748083285503 1.391843338842511 -2.310003863112467 -1.405139223546131 8.421170922204613 -1.415275612651492 -2.303672680102412 1.411418564918846 4.60747210773349 2.823105087936984 4.619984400096286 -2.809976726827539 -16.85483529246015 2.784011826299676 -16.84236541118916 -2.830188792266932 2.309992200048143 -1.404988363413769 -8.427417646230072 1.392005913149838 -8.421182705594578 -1.415094396133466 2.303736053866745 1.411552543968492 16.85066790715681 2.799634925290195 16.84661280771467 -2.814593484597931 -4.611683716472709 2.81851480107025 -4.615752153365286 -2.814589810342543 8.423306403857335 -1.407296742298966 -2.305841858236355 1.409257400535125 -2.307876076682643 -1.407294905171272 8.425333953578404 1.399817462645097 4.611775836897464 2.818552915409719 4.615710287708393 -2.814561377896678 -16.85057595863294 2.799689708006414 -16.84665468625737 -2.814561337141796 2.307855143854197 -1.407280688948339 -8.425287979316471 1.399844854003207 -8.423327343128683 -1.407280668570898 2.305887918448732 1.409276457704859 16.84669296982185 2.814502371962669 16.85061274891556 -2.799737230245905 -4.615671991269269 2.81450515557137 -4.611738806717524 -2.818601982494837 8.425306374457781 -1.399868615122952 -2.307835995634635 1.407252577785685 -2.305869403358762 -1.409300991247418 8.423346484910923 1.407251185981335 -16.8466368184738 2.8146110332504 4.615728155487668 2.814609614993135 -16.85069104536705 -2.799615976508483 4.611660413818911 -2.818490959721189 2.307864077743834 1.407304807496568 -8.425345522683527 -1.399807988254242 2.305830206909456 -1.409245479860595 -8.423318409236899 1.4073055166252 16.84241677434491 2.830407356558213 16.85488174045585 -2.783822084320475 -4.619932794077956 2.810191868402641 -4.607425572770014 -2.822910867387297 8.427440870227924 -1.391911042160237 -2.309966397038978 1.405095934201321 -2.303712786385007 -1.411455433693649 8.421208387172452 1.415203678279107 -16.84234483497815 2.830335643376079 4.620004557216717 2.810058274546969 -16.85496420879204 -2.783885263391031 4.607342998617686 -2.823023215688412 2.310002278608359 1.405029137273484 -8.427482104396022 -1.391942631695516 2.303671499308843 -1.411511607844206 -8.421172417489073 1.41516782168804 16.83702861702645 2.850080276962824 16.86015697964571 -2.764128945178626 -4.625258428899851 2.804623625608292 -4.602052139363532 -2.828459741286155 8.430078489822854 -1.382064472589313 -2.312629214449926 1.402311812804146 -2.301026069681766 -1.414229870643077 8.418514308513226 1.425040138481412 -16.83687108925824 2.850382876463817 4.625415304190483 2.804724666538888 -16.86021964902263 -2.763862037364986 4.601989023202723 -2.828331854061645 2.312707652095241 1.402362333269444 -8.430109824511312 -1.381931018682493 2.300994511601362 -1.414165927030822 -8.418435544629118 1.425191438231908 16.86805470199861 -2.733989105220428 -4.593914234547086 -2.836549647844413 16.82876921869526 2.880127300163432 -4.633332011394352 2.796435274276993 -2.296957117273543 -1.418274823922207 8.414384609347628 1.440063650081716 -2.316666005697176 1.398217637138496 8.434027350999303 -1.366994552610214 -16.86820930785124 -2.733438833984344 -16.82855802294511 2.880666116932571 4.593755417573123 -2.836541457565994 4.633540441894999 2.796500506525937 -8.414279011472553 1.440333058466285 2.296877708786562 -1.418270728782997 2.316770220947499 1.398250253262969 -8.434104653925619 -1.366719416992172 16.81145811289813 2.942066762377245 16.88411675624425 -2.671921487800922 -4.649910896461154 2.779418514975413 -4.577007912454192 -2.853430276512045 8.442058378122125 -1.335960743900461 -2.324955448230577 1.389709257487706 -2.288503956227096 -1.426715138256022 8.405729056449063 1.471033381188622 -16.88454891053257 -2.670436317040372 -16.81098620107458 2.943539550568779 4.576551096657347 -2.853740970625229 4.650360429397084 2.779075221069198 -8.405493100537289 1.47176977528439 2.288275548328674 -1.426870485312614 2.325180214698542 1.389537610534599 -8.442274455266283 -1.335218158520186 16.95324496794547 -2.385640017490524 -4.497954252672803 -2.930183803648829 16.72711886388277 3.225770011282844 -4.724839231514265 2.700053591480886 -2.248977126336401 -1.465091901824415 8.363559431941386 1.612885005641422 -2.362419615757132 1.350026795740443 8.476622483972733 -1.192820008745262 -16.95654291422808 -2.371371245078102 -16.72266364813068 3.23986216331764 4.493904609166451 -2.933941311184089 4.728569530450034 2.696148379731193 -8.361331824065339 1.61993108165882 2.246952304583226 -1.466970655592045 2.364284765225017 1.348074189865597 -8.478271457114039 -1.185685622539051</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID831\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID827\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID825\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID826\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID827\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID828\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 2 2 1 1 8 8 0 9 9 10 2 11 9 10 0 9 12 16 13 17 1 18 3 19 1 18 13 17 16 24 8 25 17 26 9 27 17 26 8 25 20 32 21 33 12 34 13 35 12 34 21 33 16 40 17 41 24 42 25 43 24 42 17 41 21 48 20 49 28 50 29 51 28 50 20 49 25 56 32 57 24 58 33 59 24 58 32 57 28 64 29 65 36 66 37 67 36 66 29 65 32 72 40 73 33 74 41 75 33 74 40 73 37 80 44 81 36 82 45 83 36 82 44 81 40 88 48 89 41 90 49 91 41 90 48 89 44 96 52 97 45 98 53 99 45 98 52 97 49 104 48 105 56 106 57 107 56 106 48 105 52 112 60 113 53 114 61 115 53 114 60 113 56 120 57 121 64 122 65 123 64 122 57 121 60 128 68 129 61 130 69 131 61 130 68 129 64 136 65 137 72 138 73 139 72 138 65 137 76 144 77 145 68 146 69 147 68 146 77 145 80 152 72 153 81 154 73 155 81 154 72 153 76 160 84 161 77 162 85 163 77 162 84 161 88 168 80 169 89 170 81 171 89 170 80 169 92 176 93 177 84 178 85 179 84 178 93 177 92 184 88 185 93 186 89 187 93 186 88 185</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID827\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID828\" />\r\n\t\t\t\t\t<p>4 4 5 5 6 6 5 5 4 4 7 7 7 12 10 13 5 14 10 13 7 12 11 15 14 20 4 21 6 22 4 21 14 20 15 23 11 28 18 29 10 30 18 29 11 28 19 31 22 36 15 37 14 38 15 37 22 36 23 39 18 44 26 45 27 46 26 45 18 44 19 47 23 52 30 53 31 54 30 53 23 52 22 55 34 60 26 61 35 62 26 61 34 60 27 63 31 68 38 69 39 70 38 69 31 68 30 71 42 76 35 77 43 78 35 77 42 76 34 79 46 84 38 85 47 86 38 85 46 84 39 87 50 92 43 93 51 94 43 93 50 92 42 95 54 100 47 101 55 102 47 101 54 100 46 103 50 108 58 109 59 110 58 109 50 108 51 111 62 116 55 117 63 118 55 117 62 116 54 119 59 124 66 125 67 126 66 125 59 124 58 127 70 132 63 133 71 134 63 133 70 132 62 135 67 140 74 141 75 142 74 141 67 140 66 143 78 148 70 149 71 150 70 149 78 148 79 151 74 156 82 157 75 158 82 157 74 156 83 159 86 164 78 165 87 166 78 165 86 164 79 167 83 172 90 173 82 174 90 173 83 172 91 175 94 180 86 181 87 182 86 181 94 180 95 183 91 188 94 189 90 190 94 189 91 188 95 191</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID832\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID833\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID837\">-0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID837\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID834\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID838\">-0.9082492736520922 -0.1075708369032307 -0.4043658887176134 -0.9082500329767456 0.0007516867371791146 -0.4184271890840621 -0.9082492745359263 -0.1074503430176522 -0.4043979217186361 -0.9082500344776737 0.0008765598473410654 -0.4184269428635523 0.9082500329767456 -0.0007516867371791146 0.4184271890840621 0.9082492745359263 0.1074503430176522 0.4043979217186361 0.9082500344776737 -0.0008765598473410654 0.4184269428635523 0.9082492736520922 0.1075708369032307 0.4043658887176134 -0.9082506050830315 0.1091435923435764 -0.4039412266860695 -0.9082506046354215 0.1090229161292429 -0.4039738146688064 0.9082506050830315 -0.1091435923435764 0.4039412266860695 0.9082506046354215 -0.1090229161292429 0.4039738146688064 -0.9082482405359982 -0.2085640638359936 -0.3627480735158756 -0.9082482427168129 -0.2084560405691885 -0.3628101552493231 0.9082482427168129 0.2084560405691885 0.3628101552493231 0.9082482405359982 0.2085640638359936 0.3627480735158756 -0.9082491615154812 0.2099738865158217 -0.3619315233409027 -0.9082491645414247 0.209866585626633 -0.3619937449006862 0.9082491615154812 -0.2099738865158217 0.3619315233409027 0.9082491645414247 -0.209866585626633 0.3619937449006862 -0.908246568910591 -0.2953461497473803 -0.2964098883160561 -0.9082465712478778 -0.2952584160994148 -0.2964972740834871 0.9082465712478778 0.2952584160994148 0.2964972740834871 0.908246568910591 0.2953461497473803 0.2964098883160561 -0.9082473909658394 0.2964969062159364 -0.295256263960858 -0.9082473912470552 0.2964072177461657 -0.2953463010787428 0.9082473909658394 -0.2964969062159364 0.295256263960858 0.9082473912470552 -0.2964072177461657 0.2953463010787428 -0.9082474712734822 -0.3619966089766116 -0.2098689734447648 -0.9082474673790382 -0.3619345433051908 -0.2099760090153772 0.9082474673790382 0.3619345433051908 0.2099760090153772 0.9082474712734822 0.3619966089766116 0.2098689734447648 -0.9082484639023035 0.3628095932970937 -0.2084560549149473 -0.908248460723703 0.3627472515016051 -0.2085645346674632 0.9082484639023035 -0.3628095932970937 0.2084560549149473 0.908248460723703 -0.3627472515016051 0.2085645346674632 -0.9082511440516279 -0.403972551902783 -0.1090231013962746 -0.9082511405035336 -0.4039399392223229 -0.1091439016853281 0.9082511405035336 0.4039399392223229 0.1091439016853281 0.9082511440516279 0.403972551902783 0.1090231013962746 -0.9082495969998886 0.4043972754492359 -0.1074500495987548 -0.908249596623721 0.404365212715167 -0.1075706511027334 0.9082495969998886 -0.4043972754492359 0.1074500495987548 0.908249596623721 -0.404365212715167 0.1075706511027334 -0.9082514553289773 -0.4184241025164883 -0.0007512163908289862 -0.9082514585655601 -0.4184238527729456 -0.0008760389129415635 0.9082514585655601 0.4184238527729456 0.0008760389129415635 0.9082514553289773 0.4184241025164883 0.0007512163908289862 -0.9082505851953316 0.4184257471815965 0.0008766914283048339 -0.9082505828752954 0.418425995279139 0.0007517854403690022 0.9082505851953316 -0.4184257471815965 -0.0008766914283048339 0.9082505828752954 -0.418425995279139 -0.0007517854403690022 -0.9082490302929679 -0.4043664017146101 0.1075709632580378 -0.9082490333533763 -0.4043984855098431 0.1074502597949525 0.9082490302929679 0.4043664017146101 -0.1075709632580378 0.9082490333533763 0.4043984855098431 -0.1074502597949525 -0.9082505682264853 0.4039407217202315 0.1091457679088157 -0.9082505698761868 0.4039735439268114 0.1090242089024017 0.9082505698761868 -0.4039735439268114 -0.1090242089024017 0.9082505682264853 -0.4039407217202315 -0.1091457679088157 -0.9082486494484744 -0.3627467689190975 0.2085645521505931 -0.9082486481231678 -0.3628091637581442 0.2084559998550159 0.9082486494484744 0.3627467689190975 -0.2085645521505931 0.9082486481231678 0.3628091637581442 -0.2084559998550159 -0.9082483661589828 0.3619328652568282 0.209975013790977 -0.9082483686281029 0.3619950655307562 0.2098677522054624 0.9082483686281029 -0.3619950655307562 -0.2098677522054624 0.9082483661589828 -0.3619328652568282 -0.209975013790977 -0.9082506197478876 -0.2964042575108705 0.2953393435643274 -0.9082506167666825 -0.2964919493568599 0.2952513185567682 0.9082506197478876 0.2964042575108705 -0.2953393435643274 0.9082506167666825 0.2964919493568599 -0.2952513185567682 -0.90824801524225 0.295256581095625 0.2964946780774259 -0.9082480131803266 0.2953441289205035 0.2964074764006107 0.9082480131803266 -0.2953441289205035 -0.2964074764006107 0.90824801524225 -0.295256581095625 -0.2964946780774259 -0.9082502482972585 -0.2098653041311184 0.3619917686770259 -0.9082502533146946 -0.2099721613881187 0.3619297843446915 0.9082502482972585 0.2098653041311184 -0.3619917686770259 0.9082502533146946 0.2099721613881187 -0.3619297843446915 -0.9082493159583445 0.2084540785156279 0.3628085958344974 -0.9082493143264231 0.2085638932647763 0.3627454830205625 0.9082493143264231 -0.2085638932647763 -0.3627454830205625 0.9082493159583445 -0.2084540785156279 -0.3628085958344974 -0.9082485879667209 -0.1090232989628911 0.4039782453792602 -0.9082485869772989 -0.1091444703673541 0.4039455270726108 0.9082485879667209 0.1090232989628911 -0.4039782453792602 0.9082485869772989 0.1091444703673541 -0.4039455270726108 -0.9082511981082746 0.1074499269831152 0.4043937120260486 -0.9082511946939681 0.107569634709001 0.4043618936368158 0.9082511946939681 -0.107569634709001 -0.4043618936368158 0.9082511981082746 -0.1074499269831152 -0.4043937120260486 -0.9082509090819749 -0.0008773896933384607 0.4184250426768125 -0.9082509125925561 -0.000752468406024658 0.4184252783545552 0.9082509090819749 0.0008773896933384607 -0.4184250426768125 0.9082509125925561 0.000752468406024658 -0.4184252783545552</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID838\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID836\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID839\">-0.4760628845307824 14.03057851338626 -4.293205956690974 12.84291939320605 -0.4520778451937232 13.27480097802665 -4.542699139165971 13.57301502275557 0.5509308441970694 14.02887609692691 4.364922551878471 12.82793928468497 4.615115580867611 13.5578951401443 0.5262263144851437 13.27311290434169 -5.460294461359973 13.36213689623786 -8.700673353099646 11.37978305347014 -5.167760694787276 12.6419962786728 -9.200497557095831 12.02549805985014 5.529599615995658 13.34448409699993 8.762464862805501 11.35038498428026 9.262826653654555 11.9958490506677 5.236482058585006 12.62448183080072 -9.850935596277633 11.70231789836429 -12.28897078609038 9.104402023815595 -9.321713719835559 11.07126571357382 -12.99216162462306 9.619703772942543 9.908805909503144 11.67203388437624 12.33621713888454 9.064756673517946 13.03968184989838 9.57981702183138 9.379208433918393 11.04116980481799 -13.3525193171996 9.309346053102276 -14.85691765236203 6.30484509550176 -12.63441802294289 8.80693061639283 -15.70518465917443 6.660142705593261 13.39616309803314 9.270430520945231 14.8880027823071 6.259267456761666 15.73641299818794 6.614399205461904 12.67792072561648 8.768150175948428 -15.85447136542427 6.437527688275801 -16.37252037394564 3.234169117888085 -15.00127260492471 6.089614567846071 -17.30591011175082 3.414281264193431 15.88339658588965 6.393267460950476 16.38777273810398 3.18595789568538 17.32115792288254 3.365996716390026 15.03012559609594 6.045417211916162 -17.34754144405634 3.280923251307002 -16.88054368036996 0.07271501916888513 -16.4134956469478 3.102928287245775 -17.84158673383741 0.07271931827509812 17.36184157354511 3.233666018167433 16.88077042213474 0.02413597414263838 17.84180938374336 0.0241319283408874 16.42781917250773 3.055684031940567 -16.88076908897763 -0.02413745264056083 -17.36185361655219 -3.23366717946566 -16.42782986626323 -3.055684287849731 -17.84181214267261 -0.02413337543565036 16.88054701756033 -0.07271698671732821 17.34751954079551 -3.280922069425896 17.84158597896712 -0.07272124314771755 16.4134818910754 -3.102935319425331 -16.3877919244592 -3.185951882083677 -15.88340587967561 -6.393257993900284 -15.03015255389675 -6.045413601251539 -17.3211786305619 -3.365991047406652 16.37250085551697 -3.234178633475433 15.85445263950981 -6.437525411168315 17.3058822788614 -3.414283177660608 15.00124014052953 -6.089609450990861 -14.8880059792257 -6.259281506746234 -13.39617422300147 -9.270432463617809 -12.67787981034289 -8.768156485934776 -15.73639731955359 -6.614409163697935 14.85687775431837 -6.30484505352637 13.35248086666035 -9.309357964262242 15.70515852596362 -6.660145524742545 12.63438003713352 -8.806939261801423 -12.33617009607184 -9.064760126010743 -9.908816153169438 -11.67204170025707 -9.379206298367013 -11.04117126199523 -13.03968789063718 -9.579816255505966 12.28893385344979 -9.104409654094303 9.850928337812352 -11.70231246863167 12.99212427033344 -9.61971454210361 9.321679514522458 -11.07126762305999 -8.762497622106514 -11.35038698937884 -5.529610632032458 -13.34446963758883 -5.236511265108912 -12.62449364339831 -9.262873717913241 -11.99585669306635 8.700643486461816 -11.37978310462293 5.460273663042221 -13.36213548128276 9.200495491064043 -12.02549128880329 5.167749101606612 -12.64198777028426 -0.5262691202224505 -13.27310290361913 -4.615130655374084 -13.55787759450954 -0.5509741484817764 -14.02888433511281 -4.364955882694339 -12.82794829884673 4.293193018885061 -12.84290598107812 0.4760213753747136 -14.03057938515311 4.542676807114459 -13.57300831123361 0.4520367491142101 -13.27478359432735</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID839\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID835\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID833\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID834\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID835\" />\r\n\t\t\t\t\t<p>0 1 2 3 2 1 3 1 8 9 8 1 12 0 13 2 13 0 8 9 16 17 16 9 20 12 21 13 21 12 16 17 24 25 24 17 28 20 29 21 29 20 24 25 32 33 32 25 36 28 37 29 37 28 32 33 40 41 40 33 44 36 45 37 45 36 40 41 48 49 48 41 44 45 52 53 52 45 56 48 57 49 57 48 52 53 60 61 60 53 64 56 65 57 65 56 60 61 68 69 68 61 72 64 73 65 73 64 68 69 76 77 76 69 80 72 81 73 81 72 76 77 84 85 84 77 88 80 89 81 89 80 85 92 84 93 84 92 92 88 93 89 93 88</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID835\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID836\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 5 1 4 0 7 3 4 4 10 5 11 6 10 5 4 4 6 7 7 8 14 9 5 10 14 9 7 8 15 11 11 12 18 13 19 14 18 13 11 12 10 15 15 16 22 17 14 18 22 17 15 16 23 19 19 20 26 21 27 22 26 21 19 20 18 23 23 24 30 25 22 26 30 25 23 24 31 27 27 28 34 29 35 30 34 29 27 28 26 31 31 32 38 33 30 34 38 33 31 32 39 35 35 36 42 37 43 38 42 37 35 36 34 39 39 40 46 41 38 42 46 41 39 40 47 43 43 44 50 45 51 46 50 45 43 44 42 47 46 48 54 49 55 50 54 49 46 48 47 51 50 52 58 53 51 54 58 53 50 52 59 55 55 56 62 57 63 58 62 57 55 56 54 59 59 60 66 61 58 62 66 61 59 60 67 63 63 64 70 65 71 66 70 65 63 64 62 67 67 68 74 69 66 70 74 69 67 68 75 71 71 72 78 73 79 74 78 73 71 72 70 75 75 76 82 77 74 78 82 77 75 76 83 79 79 80 86 81 87 82 86 81 79 80 78 83 83 84 90 85 82 86 90 85 83 84 91 87 94 88 86 89 95 90 86 89 94 88 87 91 91 92 95 93 90 94 95 93 91 92 94 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID840\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID841\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID845\">-0.848191442515148 1.821719920829072 0.002991490153192444 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.848191442515148 1.821719920829072 0.002991490153192444</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID845\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID842\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID846\">-1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID846\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID844\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID847\">17.60422062980293 3.686373823478347 17.58872307755159 -3.731830796992965 18.21721723044679 -0.02353490189120707 15.79154317552588 7.145053996837801 15.7615948579133 -7.185808789624735 15.73644944485523 -0.02353490189122628 15.20797224997292 3.181279569921278 12.90263363202708 10.11682099294002 13.64312346924178 6.169292423219798 11.14846360512272 8.736878630918373 9.134510958830333 12.39913428420196 7.894117304033426 10.70905592978288 4.743848953426131 13.83646333579298 4.101776983347349 11.95143942082804 0.0299008217226215 14.33087282880834 0.0299008217225882 12.37933786704789 -4.686070296983688 13.84864765484944 -4.043988564903902 11.96361546971739 -7.842317873281745 10.73258573666044 -9.082711528078582 12.42266290962708 -11.10619113654815 8.770154239007669 -12.86033863575761 10.15009660102933 -13.61319017009239 6.210048988185412 -15.76162339299344 7.185815878339411 -15.19252726234299 3.226739497067041 -15.73645395039408 0.02353305587178406 15.19249872726272 -3.226737724888358 12.86035665791355 -10.15009187521957 13.61317214793644 -6.210043671649416 11.106162601468 -8.770158964817435 9.082687498537359 -12.42266290962708 7.842322378820725 -10.73257746649335 4.686051523904595 -13.84865828792145 4.043974672825356 -11.9636131068125 -0.02993367461101796 -14.33087164735588 -0.02993367461098022 -12.37934495576256 -4.101781864347913 -11.95141933613647 -4.743844447887168 -13.83647042450765 -7.894159355730627 -10.70906301849755 -9.134543999449482 -12.39913428420196 -11.14849664574191 -8.7368715422037 -12.90268619664868 -10.11682217439248 -13.6431234692418 -6.169288878862472 -15.79154768106481 -7.14505990410002 -15.20798726843623 -3.181281342099942 -17.58874109970749 3.731832569171651 -17.60424916488311 -3.686367916216107 -18.21719920829072 0.02353305587178056</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID847\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID843\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID841\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID842\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID843\" />\r\n\t\t\t\t\t<p>0 1 2 2 1 3 1 4 3 4 5 3 5 6 3 6 7 3 3 7 8 7 9 8 8 9 10 9 11 10 10 11 12 11 13 12 12 13 14 13 15 14 15 16 14 14 16 17 16 18 17 17 18 19 18 20 19 19 20 21 20 22 21 22 23 21 24 25 23 21 23 25 5 4 26 26 4 27 4 28 27 27 28 29 28 30 29 29 30 31 30 32 31 31 32 33 33 32 34 32 35 34 34 35 36 35 37 36 36 37 38 37 39 38 38 39 40 39 41 40 40 41 42 42 41 43 41 44 43 43 44 24 24 44 25 25 44 45 44 46 45 47 45 46</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID843\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID844\" />\r\n\t\t\t\t\t<p>48 0 49 1 50 2 49 1 48 0 51 3 49 1 51 3 52 4 52 4 51 3 53 5 53 5 51 3 54 6 54 6 51 3 55 7 54 6 55 7 56 8 56 8 55 7 57 9 57 9 55 7 58 10 57 9 58 10 59 11 59 11 58 10 60 12 59 11 60 12 61 13 61 13 60 12 62 14 61 13 62 14 63 15 63 15 62 14 64 16 63 15 64 16 65 17 65 17 64 16 66 18 66 18 64 16 67 19 66 18 67 19 68 20 68 20 67 19 69 21 68 20 69 21 70 22 70 22 69 21 71 23 70 22 71 23 72 24 72 24 71 23 73 25 52 4 74 26 75 27 74 26 52 4 53 5 75 27 74 26 76 28 75 27 76 28 77 29 75 27 77 29 78 30 78 30 77 29 79 31 78 30 79 31 80 32 80 32 79 31 81 33 80 32 81 33 82 34 82 34 81 33 83 35 82 34 83 35 84 36 82 34 84 36 85 37 85 37 84 36 86 38 85 37 86 38 87 39 87 39 86 38 88 40 87 39 88 40 89 41 89 41 88 40 90 42 89 41 90 42 91 43 91 43 90 42 92 44 91 43 92 44 73 25 91 43 73 25 71 23 91 43 71 23 93 45 91 43 93 45 94 46 94 46 93 45 95 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID848\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID849\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID853\">-0.8481914425151489 0.4686070296983689 1.760421312057132 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950957 0.4947663767580937 1.858045979055305 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151516 1.286033863575761 1.29026651708 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950979 -0.9639834939807769 1.663688891962011 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.7637458525006284 0.9616870958540129 -1.659710651225625 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 0.7557056430950926 -0.9588031003517052 -1.6666787676304 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006196 -0.956506702224935 -1.66269977597085 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.7637458525006284 0.4993573332498595 -1.852061121441011 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID853\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID850\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID854\">-0.7524585421170914 0.1693892527612725 0.6364852107032804 -0.7524585417620626 0.1695187983675101 0.6364507207391202 -0.752458751757041 -0.001116951969874288 0.6586384283675927 -0.7524587513418458 -0.0009841473680792699 0.6586386406695468 0.7524585417620626 -0.1695187983675101 -0.6364507207391202 0.752458751757041 0.001116951969874288 -0.6586384283675927 0.7524587513418458 0.0009841473680792699 -0.6586386406695468 0.7524585421170914 -0.1693892527612725 -0.6364852107032804 -0.7524565325827145 -0.1715493318107424 0.6359087932470239 -0.7524565358976068 -0.1714184440870872 0.6359440845009378 0.7524565325827145 0.1715493318107424 -0.6359087932470239 0.7524565358976068 0.1714184440870872 -0.6359440845009378 -0.003023523763771853 0.2573140904666033 0.9663230914923821 -0.003023428365700127 -0.001557416609379177 0.9999942166504876 -0.003023523763512286 0.2573134050059734 0.9663232740176982 -0.003023428365418651 -0.001558199390591175 0.9999942154310586 0.003023428365700127 0.001557416609379177 -0.9999942166504876 0.003023523763512286 -0.2573134050059734 -0.9663232740176982 0.003023428365418651 0.001558199390591175 -0.9999942154310586 0.003023523763771853 -0.2573140904666033 -0.9663230914923821 -0.7524589655183874 0.3284673404373135 0.5708894038927644 -0.752458965034369 0.3283526619799974 0.5709553706815058 0.752458965034369 -0.3283526619799974 -0.5709553706815058 0.7524589655183874 -0.3284673404373135 -0.5708894038927644 -0.7524536793556657 -0.3302908594592792 0.5698433193271392 -0.7524536801024093 -0.3301728027602695 0.5699117296720337 0.7524536793556657 0.3302908594592792 -0.5698433193271392 0.7524536801024093 0.3301728027602695 -0.5699117296720337 -0.003023637205282373 -0.2603221403258926 0.9655170847137802 -0.00302363720643009 -0.2603227088345894 0.9655169314326214 0.003023637205282373 0.2603221403258926 -0.9655170847137802 0.00302363720643009 0.2603227088345894 -0.9655169314326214 -0.003023769458048854 0.4986487925159631 0.8667988454887539 -0.003023769456780855 0.4986480616163927 0.8667992659575149 0.003023769458048854 -0.4986487925159631 -0.8667988454887539 0.003023769456780855 -0.4986480616163927 -0.8667992659575149 -0.7524604292449857 0.4650302144511048 0.4664227718154544 -0.7524604277183468 0.4649355000609762 0.4665171867155301 0.7524604277183468 -0.4649355000609762 -0.4665171867155301 0.7524604292449857 -0.4650302144511048 -0.4664227718154544 -0.7524523992911886 -0.4665217526188665 0.4649439118155596 -0.7524523999108818 -0.4664284121355344 0.4650375492592817 0.7524523992911886 0.4665217526188665 -0.4649439118155596 0.7524523999108818 0.4664284121355344 -0.4650375492592817 -0.003024220270688767 -0.5013448265809373 0.8652422891608365 -0.003024220271891797 -0.5013452460737722 0.8652420460951814 0.003024220271891797 0.5013452460737722 -0.8652420460951814 0.003024220270688767 0.5013448265809373 -0.8652422891608365 -0.003023789150446498 0.7060009776560012 0.7082044028724647 -0.003023789151712843 0.7060003159894974 0.7082050624797142 0.003023789150446498 -0.7060009776560012 -0.7082044028724647 0.003023789151712843 -0.7060003159894974 -0.7082050624797142 -0.7524618457279603 0.5699021833508379 0.3301706712226562 -0.7524618458997252 0.5698351311725082 0.3302863814128411 0.7524618458997252 -0.5698351311725082 -0.3302863814128411 0.7524618457279603 -0.5699021833508379 -0.3301706712226562 -0.7524479855813711 -0.5709672528893324 0.3283571609125437 -0.75244799164648 -0.5709000097533534 0.3284740457491269 0.7524479855813711 0.5709672528893324 -0.3283571609125437 0.75244799164648 0.5709000097533534 -0.3284740457491269 -0.003024450878027729 -0.7082033825184431 0.7060019983585898 -0.003024450877476187 -0.7082039104336583 0.7060014687968891 0.003024450878027729 0.7082033825184431 -0.7060019983585898 0.003024450877476187 0.7082039104336583 -0.7060014687968891 -0.003023198803451891 0.8652412822109276 0.5013465705746725 -0.003023198805660467 0.8652409285580689 0.5013471809205194 0.003023198803451891 -0.8652412822109276 -0.5013465705746725 0.003023198805660467 -0.8652409285580689 -0.5013471809205194 -0.7524650076588183 0.6359345265441972 0.1714167150485116 -0.7524650029900875 0.6358998698302749 0.1715452559092408 0.7524650029900875 -0.6358998698302749 -0.1715452559092408 0.7524650076588183 -0.6359345265441972 -0.1714167150485116 -0.7524485695931888 -0.6364956983395131 0.1693941442685062 -0.7524485617789981 -0.6364614586825991 0.1695227816204527 0.7524485695931888 0.6364956983395131 -0.1693941442685062 0.7524485617789981 0.6364614586825991 -0.1695227816204527 -0.003024642282712115 -0.8667991712589429 0.4986482209372369 -0.00302464228433073 -0.8667995384389017 0.4986475826685202 0.003024642282712115 0.8667991712589429 -0.4986482209372369 0.00302464228433073 0.8667995384389017 -0.4986475826685202 -0.003021941420137833 0.9655175454494209 0.2603204511738924 -0.003021941424746023 0.9655173587289867 0.2603211437110447 0.003021941420137833 -0.9655175454494209 -0.2603204511738924 0.003021941424746023 -0.9655173587289867 -0.2603211437110447 -0.7524649176522377 0.6586315962545964 0.0009839297400806876 -0.7524649227682221 0.6586313785893013 0.001116754659718303 0.7524649227682221 -0.6586313785893013 -0.001116754659718303 0.7524649176522377 -0.6586315962545964 -0.0009839297400806876 -0.7524562762274313 -0.6586412570388478 -0.001116643288669679 -0.7524562723022982 -0.6586414735750391 -0.0009836461920094291 0.7524562762274313 0.6586412570388478 0.001116643288669679 0.7524562723022982 0.6586414735750391 0.0009836461920094291 -0.00302424272530191 -0.966322583003932 0.2573159915989429 -0.003024242721690821 -0.9663227607441889 0.2573153241136048 0.00302424272530191 0.966322583003932 -0.2573159915989429 0.003024242721690821 0.9663227607441889 -0.2573153241136048 -0.003021067751355109 0.9999942264063256 0.001555732514273759 -0.003021067751511359 0.9999942251911452 0.001556513412098616 0.003021067751355109 -0.9999942264063256 -0.001555732514273759 0.003021067751511359 -0.9999942251911452 -0.001556513412098616 -0.7524581266761962 0.6364513097928596 -0.1695184292692185 -0.7524581327993718 0.6364858961559734 -0.1693884954139764 0.7524581266761962 -0.6364513097928596 0.1695184292692185 0.7524581327993718 -0.6364858961559734 0.1693884954139764 -0.7524554835789596 -0.6359095448500886 -0.171551146893593 -0.7524554877062412 -0.6359441915615974 -0.1714226479781157 0.7524554877062412 0.6359441915615974 0.1714226479781157 0.7524554835789596 0.6359095448500886 0.171551146893593 -0.003022939996113761 -0.9999942166299063 -0.001558377528098246 -0.003022939999784108 -0.9999942178488096 -0.001557595167271352 0.003022939996113761 0.9999942166299063 0.001558377528098246 0.003022939999784108 0.9999942178488096 0.001557595167271352 -0.003022243473153594 0.9663240542030337 -0.2573104900951403 -0.00302224347973812 0.966323868653908 -0.2573111869198347 0.003022243473153594 -0.9663240542030337 0.2573104900951403 0.00302224347973812 -0.966323868653908 0.2573111869198347 -0.752453954284854 0.5708942615132673 -0.3284703774350259 -0.7524539551700281 0.5709604990173309 -0.3283552251919589 0.752453954284854 -0.5708942615132673 0.3284703774350259 0.7524539551700281 -0.5709604990173309 0.3283552251919589 -0.7524527067090119 -0.5698454450886161 -0.3302894077593754 -0.75245270637364 -0.5699112482350072 -0.3301758528514779 0.75245270637364 0.5699112482350072 0.3301758528514779 0.7524527067090119 0.5698454450886161 0.3302894077593754 -0.003022956207305731 -0.9655159878608529 -0.2603262163533472 -0.003022956203584093 -0.9655161881351868 -0.2603254735608669 0.003022956207305731 0.9655159878608529 0.2603262163533472 0.003022956203584093 0.9655161881351868 0.2603254735608669 -0.003023860053777756 0.8667994464540276 -0.4986477473100291 -0.003023860056238176 0.866799054464471 -0.4986484287048933 0.003023860053777756 -0.8667994464540276 0.4986477473100291 0.003023860056238176 -0.866799054464471 0.4986484287048933 -0.7524520034872866 0.4664284183759522 -0.4650381844314248 -0.7524520059884629 0.4665225652234435 -0.4649437329626844 0.7524520034872866 -0.4664284183759522 0.4650381844314248 0.7524520059884629 -0.4665225652234435 0.4649437329626844 -0.7524541226695466 -0.4649429710307974 -0.4665199105790212 -0.7524541205941244 -0.4650354160681895 -0.4664277631136556 0.7524541205941244 0.4650354160681895 0.4664277631136556 0.7524541226695466 0.4649429710307974 0.4665199105790212 -0.003023625947355671 -0.8652411650582806 -0.5013467701847889 -0.003023625947147205 -0.8652415864938384 -0.5013460428563862 0.003023625947355671 0.8652411650582806 0.5013467701847889 0.003023625947147205 0.8652415864938384 0.5013460428563862 -0.003024498956473901 0.7082035258586333 -0.7060018543654559 -0.003024498957837877 0.7082029736233368 -0.7060024083224629 0.003024498956473901 -0.7082035258586333 0.7060018543654559 0.003024498957837877 -0.7082029736233368 0.7060024083224629 -0.7524548626014672 0.3301727897440394 -0.5699101759576202 -0.7524548560904877 0.3302906965735977 -0.5698418599074405 0.7524548626014672 -0.3301727897440394 0.5699101759576202 0.7524548560904877 -0.3302906965735977 0.5698418599074405 -0.7524550849804075 -0.3283542750975831 -0.5709595564593596 -0.7524550849515038 -0.3284703658453776 -0.5708927779294718 0.7524550849515038 0.3284703658453776 0.5708927779294718 0.7524550849804075 0.3283542750975831 0.5709595564593596 -0.003023436767652145 -0.7060015557338235 -0.7082038280972031 -0.003023436769444781 -0.7060023070751241 -0.7082030790915156 0.003023436767652145 0.7060015557338235 0.7082038280972031 0.003023436769444781 0.7060023070751241 0.7082030790915156 -0.003024066201718197 0.5013460802322781 -0.8652415632985611 -0.003024066204165313 0.5013465000752155 -0.86524132002923 0.003024066204165313 -0.5013465000752155 0.86524132002923 0.003024066201718197 -0.5013460802322781 0.8652415632985611 -0.7524593774133471 0.1714196849035536 -0.6359403879061972 -0.7524593773351924 0.171545207486858 -0.6359065397121069 0.7524593774133471 -0.1714196849035536 0.6359403879061972 0.7524593773351924 -0.171545207486858 0.6359065397121069 -0.7524551621628105 -0.169389900494532 -0.6364890341121294 -0.7524551617968616 -0.1695201961406735 -0.6364543444628897 0.7524551617968616 0.1695201961406735 0.6364543444628897 0.7524551621628105 0.169389900494532 0.6364890341121294 -0.00302345619967725 -0.4986502339698029 -0.8667980173457189 -0.003023456200964241 -0.498649628175152 -0.8667983658460503 0.003023456200964241 0.498649628175152 0.8667983658460503 0.00302345619967725 0.4986502339698029 0.8667980173457189 -0.00302317041934693 0.2603211190972351 -0.9655173615179473 -0.003023170420924781 0.260321986899808 -0.9655171275420972 0.003023170420924781 -0.260321986899808 0.9655171275420972 0.00302317041934693 -0.2603211190972351 0.9655173615179473 -0.7524572925624328 0.0009838075905523819 -0.6586403077494104 -0.7524572962038846 0.001116597773462055 -0.6586400918551432 0.7524572925624328 -0.0009838075905523819 0.6586403077494104 0.7524572962038846 -0.001116597773462055 0.6586400918551432 -0.003023757163787752 -0.2573148938061689 -0.9663228768471408 -0.003023757164135984 -0.257314121269845 -0.9663230825597305 0.003023757163787752 0.2573148938061689 0.9663228768471408 0.003023757164135984 0.257314121269845 0.9663230825597305 -0.003023376607918181 0.00155726701169435 -0.9999942170399491 -0.003023376605318863 0.001558049788827533 -0.9999942158206505 0.003023376607918181 -0.00155726701169435 0.9999942170399491 0.003023376605318863 -0.001558049788827533 0.9999942158206505</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID854\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID852\">\r\n\t\t\t\t\t<float_array count=\"384\" id=\"ID855\">-4.040246963321643 6.795564893228256 0.9890827628466336 6.463093582785248 0.8935679007835635 7.468892618247301 -3.696624459452266 5.823858262090928 -0.8551161998463231 7.471883329228509 3.729258442558688 5.811233706692518 4.07507250558566 6.782456078829257 -0.9529481975090883 6.466222128749999 -7.554321652554542 2.111785202383856 7.520717237189627 -2.106470744697186 7.63609149265897 1.831723202669839 -7.669972009859915 -1.835835337729923 -2.241789872750055 7.291664938508001 -5.90273736965205 4.562006538717816 -1.735763312451184 6.364938643819828 -6.629265165315137 5.393041111258648 2.27580128791188 7.285250498133096 5.926144752668277 4.543403046768413 6.654145913192843 5.373626057838043 1.768131448370683 6.359083708982839 7.668686127052055 -1.839057708593067 -7.634813705495054 1.834989415906823 -7.522186994038186 -2.10322894330467 7.555789239779621 2.108606428206098 7.598413731494718 1.926247716636706 -7.632211106838805 -1.930765085388588 7.562014832044193 -2.012872824046142 -7.595724971270944 2.017799588171895 -4.81941465461502 6.4734078982287 -7.324240456616781 3.029240377010939 -3.995200295744808 5.700833126747577 -8.324555039492182 3.660162647609309 4.845342759447187 6.461479132204169 7.337817537611757 3.009063783125704 8.338854610045059 3.639262429833399 4.020265958111306 5.689488510288188 -7.562169654384618 -2.01252978617579 7.595891934628797 2.017484888043871 -7.598253173295223 1.926593136966556 7.632062042614949 -1.931080970865312 7.590162806256027 1.94624081239991 -7.623955884291689 -1.950882992818789 7.570534444041288 -1.992951860281939 -7.604280525974141 1.99775209317084 -6.718836162952989 5.323810449893363 -8.053104492918207 1.49712621750965 -5.675786398794395 4.737275524689899 -9.221774272756345 1.91194394298594 6.737080334535841 5.309500309403943 8.058934044048545 1.477726111620418 9.227804990882156 1.892125520133433 5.693691067492606 4.723354330334615 7.623905935675444 -1.950977619621975 -7.590091221085666 1.946343936349168 -7.570585176680469 -1.992873761941959 7.604353213083794 1.997658685379888 7.586171209310034 1.955863353392116 -7.619941292962327 -1.960561098109789 7.574615404368769 -1.983378289115803 -7.608357971913602 1.988098722674424 -8.039325504952567 4.035248474488306 -8.274409480860204 0.07154880520611728 -6.858172886042456 3.642920142785312 -9.530272482541513 0.2746756156189894 8.051367441154209 4.019989372762995 8.274442799196638 0.05352251049803518 9.530305767400433 0.2564839307956014 6.870173671642146 3.627808949292373 7.619919383937229 -1.960542415976749 -7.586121691995373 1.955936271722545 -7.574637547254818 -1.98328952605131 7.608407674373749 1.988121343208024 7.583544916727871 1.962188646121968 -7.617277576123059 -1.966904209989248 7.577301328813645 -1.977040668559802 -7.611019100226375 1.981758278354976 -8.907815301433299 2.678985865460446 -8.123357840021573 -1.240750832424818 -7.650419727648758 2.481813686900803 -9.405511470881637 -1.240742243288395 8.915288502883657 2.663096804961726 8.119140709179817 -1.257537690235669 9.401272865435805 -1.257546018046028 7.657930885613808 2.465945293105961 7.617292804392591 -1.966902198835446 -7.583479377394854 1.962214253446523 -7.577286260901328 -1.977014389700738 7.611084735482613 1.981768564680788 7.581459565158655 1.967310797641272 -7.615123097651352 -1.971918595009516 7.579461129931657 -1.971921953343625 -7.613120069812265 1.976745737194301 -8.119346403993839 1.257431712139362 -8.915537713431498 -2.663206671196163 -7.658166793412561 -2.466041118855443 -9.40150003157304 1.257442113621577 8.123108074390222 1.240849617657296 8.907523179620583 -2.678883862796719 9.4052402334673 1.240842837764527 7.650148767210773 -2.481713396774992 7.613189535885248 1.976618480108285 -7.57943764585014 -1.972050019822055 7.615146667941806 -1.972047747371725 -7.581390237913452 1.967188101395981 7.581436772792678 -1.967275288237997 -7.615098313537803 1.971965794024384 -7.613142864168738 -1.976698898278629 7.579485914074268 1.97196708429726 -8.274749853594916 -0.05359064644060455 -8.051667980628185 -4.020064251666414 -6.870443660400792 -3.627887047345771 -9.530625737779101 -0.25656725043594 8.274163615890476 -0.07144692779477511 8.039062677012478 -4.035156716714083 9.530005361959193 -0.2745723376109419 6.857934007589495 -3.64281816651194 7.615146760673897 1.972057399417009 -7.581436910305003 -1.967173248538126 7.613142749986364 -1.976607435662339 -7.579437553117938 1.972059733917022 7.583505855838784 -1.96227509970517 -7.617263129816307 1.966838229966558 -7.611058272200855 -1.981825946153671 7.577315792308811 1.976949996703046 -8.058966808118642 -1.477763534671876 -6.737129216083037 -5.309523955305282 -5.693760167031574 -4.723377340212994 -9.227871799659241 -1.89215435520369 8.052840575659085 -1.49704295134452 6.718603029494449 -5.323738691458113 9.221486487586468 -1.911869754300307 5.67558565569558 -4.737197305973607 7.617293560270303 1.966914482853697 -7.58353067722906 -1.962188734427586 7.611033394817669 -1.981754273956296 -7.577285369609861 1.977050570888327 7.586122794998227 -1.955846374730674 -7.619918079974323 1.960632188041886 -7.608406550904774 -1.988032733024195 7.574638852779416 1.983381936755945 -7.337822183067741 -3.009007241083356 -4.845341235349157 -6.46142968527283 -4.020258889731459 -5.689438975694102 -8.338839386390088 -3.639205298984838 7.324198181243452 -3.029144275291806 4.819358432886512 -6.47331750582667 8.324474868783517 -3.660076593319374 3.995128624001985 -5.700755173353182 7.619942024878952 1.960505775974488 -7.586170583499415 -1.95591014113808 7.60835859070232 -1.988135387999505 -7.574614745364233 1.983312116988463 -7.623909739917847 1.950936307139087 7.590088410733276 -1.946377631840885 7.570581331427527 1.992838049551194 -7.604356035217696 -1.99769600445393 -5.926219203160268 -4.543505385850812 -2.275894023815066 -7.285346259589042 -1.768164791791738 -6.359189590593228 -6.654222092787895 -5.373730949672475 5.902663718800884 -4.56193950172254 2.241735351137526 -7.291601797073808 6.629208755942161 -5.392962666056423 1.735701167858861 -6.364888541509357 -7.590174738516678 -1.946265886184374 7.623938984367359 1.950861077277974 -7.570551389136386 1.992910516343811 7.604268587691806 -1.997775046101012 -7.632050366310129 1.931128964526406 7.59825903017894 -1.926544287206376 7.562181491525478 2.012562850542992 -7.59588595364065 -2.017442116402822 -3.729273224583506 -5.811255341959331 0.8550672826260229 -7.471889629038476 0.9528974804567071 -6.466230103660284 -4.075150813204585 -6.782473277036217 3.696609987697176 -5.823790531437526 -0.8935970025749593 -7.468813907025647 4.040236589761045 -6.795486286170825 -0.9891114730239413 -6.463016631894419 7.595726351403361 -2.01783708517383 -7.562012115608883 2.012838846303647 -7.598412396963864 -1.926287761518784 7.632213683143744 1.930717081479863 7.522201914891844 2.103271019508454 -7.555790432103792 -2.108548548224249 7.634813601656944 -1.834968467158941 -7.668671507496315 1.83911283206964 7.554320332815763 -2.111817851860591 -7.52070372868721 2.106484885781963 -7.636091856533377 -1.831723312270308 7.669984821502206 1.835824551549613</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID855\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID851\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID849\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID850\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID851\" />\r\n\t\t\t\t\t<p>0 1 2 3 2 1 2 3 8 9 8 3 12 13 14 15 14 13 20 1 21 0 21 1 8 9 24 25 24 9 13 28 15 29 15 28 12 14 32 33 32 14 36 20 37 21 37 20 24 25 40 41 40 25 44 45 28 29 28 45 32 33 48 49 48 33 52 36 53 37 53 36 40 41 56 57 56 41 44 60 45 61 45 60 48 49 64 65 64 49 68 52 69 53 69 52 56 57 72 73 72 57 60 76 61 77 61 76 64 65 80 81 80 65 84 68 85 69 85 68 72 73 88 89 88 73 76 92 77 93 77 92 80 81 96 97 96 81 84 85 100 101 100 85 104 88 105 89 105 88 93 92 108 109 108 92 97 112 96 113 96 112 100 101 116 117 116 101 120 104 121 105 121 104 108 109 124 125 124 109 112 128 113 129 113 128 116 117 132 133 132 117 136 120 137 121 137 120 124 125 140 141 140 125 128 144 129 145 129 144 132 133 148 149 148 133 152 136 153 137 153 136 140 141 156 157 156 141 160 145 161 144 161 145 148 149 164 165 164 149 168 152 169 153 169 152 172 173 157 156 157 173 176 160 177 161 177 160 164 165 180 181 180 165 181 168 180 169 180 168 172 184 173 185 173 184 176 177 188 189 188 177 184 188 185 189 185 188</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID851\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID852\" />\r\n\t\t\t\t\t<p>4 0 5 1 6 2 5 1 4 0 7 3 6 4 10 5 11 6 10 5 6 4 5 7 16 8 17 9 18 10 17 9 16 8 19 11 4 12 22 13 7 14 22 13 4 12 23 15 11 16 26 17 27 18 26 17 11 16 10 19 30 20 18 21 31 22 18 21 30 20 16 23 17 24 34 25 35 26 34 25 17 24 19 27 23 28 38 29 22 30 38 29 23 28 39 31 27 32 42 33 43 34 42 33 27 32 26 35 46 36 30 37 31 38 30 37 46 36 47 39 35 40 50 41 51 42 50 41 35 40 34 43 39 44 54 45 38 46 54 45 39 44 55 47 43 48 58 49 59 50 58 49 43 48 42 51 62 52 46 53 63 54 46 53 62 52 47 55 51 56 66 57 67 58 66 57 51 56 50 59 55 60 70 61 54 62 70 61 55 60 71 63 59 64 74 65 75 66 74 65 59 64 58 67 78 68 63 69 79 70 63 69 78 68 62 71 67 72 82 73 83 74 82 73 67 72 66 75 71 76 86 77 70 78 86 77 71 76 87 79 75 80 90 81 91 82 90 81 75 80 74 83 94 84 79 85 95 86 79 85 94 84 78 87 83 88 98 89 99 90 98 89 83 88 82 91 86 92 102 93 103 94 102 93 86 92 87 95 90 96 106 97 91 98 106 97 90 96 107 99 94 100 110 101 111 102 110 101 94 100 95 103 114 104 98 105 115 106 98 105 114 104 99 107 103 108 118 109 119 110 118 109 103 108 102 111 107 112 122 113 106 114 122 113 107 112 123 115 111 116 126 117 127 118 126 117 111 116 110 119 130 120 115 121 131 122 115 121 130 120 114 123 119 124 134 125 135 126 134 125 119 124 118 127 123 128 138 129 122 130 138 129 123 128 139 131 127 132 142 133 143 134 142 133 127 132 126 135 146 136 131 137 147 138 131 137 146 136 130 139 135 140 150 141 151 142 150 141 135 140 134 143 139 144 154 145 138 146 154 145 139 144 155 147 143 148 158 149 159 150 158 149 143 148 142 151 147 152 162 153 146 154 162 153 147 152 163 155 151 156 166 157 167 158 166 157 151 156 150 159 155 160 170 161 154 162 170 161 155 160 171 163 174 164 159 165 158 166 159 165 174 164 175 167 163 168 178 169 162 170 178 169 163 168 179 171 167 172 182 173 183 174 182 173 167 172 166 175 171 176 182 177 170 178 182 177 171 176 183 179 186 180 174 181 187 182 174 181 186 180 175 183 178 184 190 185 191 186 190 185 178 184 179 187 190 188 187 189 191 190 187 189 190 188 186 191</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID856\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID857\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID861\">0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 0.9220519445225366 1.603022710678486 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151476 1.785497189630175 0.4815196415974014 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 0.4757403116530008 1.787046344116789 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.9220519445225366 1.603022710678486 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151387 1.309760632593005 -1.305527979088765 0.7557056430950975 1.361733376410932 -1.357502525122301 0.7557056430950975 1.361733376410932 -1.357502525122301 0.8481914425151387 1.309760632593005 -1.305527979088765 0.84819144251514 1.603025714371136 -0.9220525452610677 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.7557056430950979 1.858045828870668 -0.494764837365608 0.7557056430950979 1.858045828870668 -0.494764837365608 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.7557056430950908 1.922786669424786 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950926 1.856498927153553 0.500544129763853 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950908 1.663689943254438 0.9639850709194202 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.60003328556399 0.9272330890747753 0.7557056430950908 1.663689943254438 0.9639850709194202 0.7557056430950904 1.357503426230103 1.361732775672407 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151351 1.305526777611701 1.309757628900341 0.7557056430950904 1.357503426230103 1.361732775672407</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID861\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID858\">\r\n\t\t\t\t\t<float_array count=\"576\" id=\"ID862\">0.6221941321218698 0.2013597797845118 0.7565240915121251 0.6221918684034155 -0.001303781729081092 0.7828637040033659 0.6221941339063147 0.2014863019961419 0.7564904030062049 0.6221918691918711 -0.001174692367902513 0.7828639077191937 -0.6221918684034155 0.001303781729081092 -0.7828637040033659 -0.6221941339063147 -0.2014863019961419 -0.7564904030062049 -0.6221918691918711 0.001174692367902513 -0.7828639077191937 -0.6221941321218698 -0.2013597797845118 -0.7565240915121251 0.6221901218932683 -0.2038805206493446 0.7558519600544753 0.6221901229061849 -0.2037543408673254 0.755885983158643 -0.6221901218932683 0.2038805206493446 -0.7558519600544753 -0.6221901229061849 0.2037543408673254 -0.755885983158643 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 0.622195876340844 0.3903006052975382 0.678629301584322 0.6221958765038165 0.3904133786148501 0.6785644295571243 -0.622195876340844 -0.3903006052975382 -0.678629301584322 -0.6221958765038165 -0.3904133786148501 -0.6785644295571243 0.6221894242877948 -0.392561562997384 0.6773298602316846 0.6221894238249361 -0.3924488889485895 0.677395150885664 -0.6221894238249361 0.3924488889485895 -0.677395150885664 -0.6221894242877948 0.392561562997384 -0.6773298602316846 0.6221894259644839 -0.5544921390400044 0.5526470717925018 0.6221894262295475 -0.5543996744161857 0.5527398293007061 -0.6221894259644839 0.5544921390400044 -0.5526470717925018 -0.6221894262295475 0.5543996744161857 -0.5527398293007061 0.6221935983998548 -0.6785663445167995 0.3904136808557666 0.6221936044128955 -0.6786309659335652 0.3903013332077736 -0.6221935983998548 0.6785663445167995 -0.3904136808557666 -0.6221936044128955 0.6786309659335652 -0.3903013332077736 0.6222050039132737 -0.7564827860628643 0.2014813328719305 0.6222050124535287 -0.7565155769512322 0.2013581493455097 -0.6222050039132737 0.7564827860628643 -0.2014813328719305 -0.6222050124535287 0.7565155769512322 -0.2013581493455097 0.6222055415468412 -0.7828530407950558 -0.001174983547447636 0.6222055340692866 -0.7828528419120427 -0.001304332699868602 -0.6222055415468412 0.7828530407950558 0.001174983547447636 -0.6222055340692866 0.7828528419120427 0.001304332699868602 0.6221917009441136 -0.7558510087740555 -0.203879228494502 0.6221917107911614 -0.7558845909667217 -0.2037546567856542 -0.6221917009441136 0.7558510087740555 0.203879228494502 -0.6221917107911614 0.7558845909667217 0.2037546567856542 0.6221815841653294 -0.6773359418068746 -0.392563495834897 0.6221815865170676 -0.6773995833087608 -0.3924536634205645 -0.6221815841653294 0.6773359418068746 0.392563495834897 -0.6221815865170676 0.6773995833087608 0.3924536634205645 0.6221798007864562 -0.5526539130480859 -0.554496120713179 0.6221798004943125 -0.5527449429825729 -0.5544053786391775 -0.6221798007864562 0.5526539130480859 0.554496120713179 -0.6221798004943125 0.5527449429825729 0.5544053786391775 0.6221838439383094 -0.3903078065454426 -0.678636191557623 0.622183838657477 -0.3904185239302142 -0.6785725068742466 -0.6221838439383094 0.3903078065454426 0.678636191557623 -0.622183838657477 0.3904185239302142 0.6785725068742466 0.6221885190971537 -0.2013628297434559 -0.7565278960497087 0.6221885184214142 -0.201487412154011 -0.7564947258825042 -0.6221885184214142 0.201487412154011 0.7564947258825042 -0.6221885190971537 0.2013628297434559 0.7565278960497087 0.6221871363076309 0.00130441775786443 -0.7828674638197849 0.6221871383491345 0.001175274353274519 -0.7828676667247855 -0.6221871363076309 -0.00130441775786443 0.7828674638197849 -0.6221871383491345 -0.001175274353274519 0.7828676667247855 0.6221898070491942 0.2038792279466273 -0.7558525679098893 0.6221898011836357 0.2037549411636534 -0.7558860861627658 -0.6221898070491942 -0.2038792279466273 0.7558525679098893 -0.6221898011836357 -0.2037549411636534 0.7558860861627658 0.6221939030436636 0.3925585914201147 -0.6773274683028494 0.6221939035143759 0.3924479534520299 -0.6773915782328985 -0.6221939030436636 -0.3925585914201147 0.6773274683028494 -0.6221939035143759 -0.3924479534520299 0.6773915782328985 0.6221903859354878 0.5544908010891638 -0.5526473334387365 0.6221903896076413 0.5543987480332496 -0.5527396740410957 -0.6221903896076413 -0.5543987480332496 0.5527396740410957 -0.6221903859354878 -0.5544908010891638 0.5526473334387365 0.6221910202362403 0.6786331798213453 -0.3903016033568862 0.6221910156914612 0.678568769305014 -0.3904135823927066 -0.6221910156914612 -0.678568769305014 0.3904135823927066 -0.6221910202362403 -0.6786331798213453 0.3903016033568862 0.6221853387884145 0.7565314500689442 -0.2013593038658174 0.6221853496726847 0.7564982237091488 -0.2014840643266405 -0.6221853496726847 -0.7564982237091488 0.2014840643266405 -0.6221853387884145 -0.7565314500689442 0.2013593038658174 0.622179367250408 0.7828736406861537 0.00130295306474845 0.6221793638195623 0.7828738475245173 0.001173924718077005 -0.6221793638195623 -0.7828738475245173 -0.001173924718077005 -0.622179367250408 -0.7828736406861537 -0.00130295306474845 0.6221892329183988 0.7558531905054573 0.2038786718691672 0.622189223507684 0.7558868877678742 0.2037537313805625 -0.622189223507684 -0.7558868877678742 -0.2037537313805625 -0.6221892329183988 -0.7558531905054573 -0.2038786718691672 0.6221951326288879 0.6773907079233851 0.3924475070018612 0.6221951309101329 0.6773259154460521 0.3925593246082557 -0.6221951309101329 -0.6773259154460521 -0.3925593246082557 -0.6221951326288879 -0.6773907079233851 -0.3924475070018612 0.6221949093854745 0.55273621248258 0.5543971267468953 0.6221949112080535 0.5526439122938858 0.554489133050694 -0.6221949112080535 -0.5526439122938858 -0.554489133050694 -0.6221949093854745 -0.55273621248258 -0.5543971267468953</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"192\" source=\"#ID862\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID860\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID863\">3.325059649491211 3.216767926096336 -1.399394685447692 3.99758154621831 3.662193290876626 4.107473716139581 -1.250023878680641 4.919473912535772 1.372898142287666 4.002874476983909 -3.346531992851785 3.203384761442292 1.219983462261442 4.924407217212858 -3.68705615598036 4.093286913307604 13.66916248086444 0.02353305587179104 13.19564835602249 2.805823139428946 16.0003328556399 7.294233634054899 13.05526777611702 10.30342668068269 11.8228864714763 5.396912571325081 9.644406560028058 7.620199907751378 9.220519445225365 12.61044532400409 6.80868640605695 9.324190455426477 4.757403116530008 14.05809790705208 3.508941918724347 10.39274802981726 -0.02990082172258827 14.54770834023929 -0.02990082172260382 10.75306267042233 -3.5666972965487 10.38056843657058 -4.815191534973343 14.0459159509005 -6.860480580346522 9.300657694917794 -9.272324132439298 12.58691788003143 -9.686702307220683 7.586924890388302 -11.85278748092962 5.356150689823473 -13.09757328531092 10.27014516533118 -13.2110843325745 2.760368233456089 -13.66913394578432 -0.02353490189121231 -16.00031333163775 -7.294225363887784 -16.03022410309207 7.253473524731939 -17.85496739076283 -3.787953332447107 -17.87042739685603 3.742497540384916 -18.4927970204285 -0.02353490189122628 18.49288112382276 0.0235330558717858 17.87046043747516 -3.742493405301364 17.85497189630175 3.787954513899558 16.03025714371136 -7.2534800227204 13.21113689719592 -2.760366756640539 13.09760632593005 -10.27015343549829 11.8527964920076 -5.35615068982347 9.686716574760796 -7.58692666256699 9.272333143517251 -12.58691433567411 6.860518126504815 -9.300652969108006 4.815205427051927 -14.04592303961512 3.56674422924643 -10.38057079947547 0.02993367461101789 -14.54771542895396 0.02993367461098014 -10.75306030751745 -3.508928026645748 -10.39275039272216 -4.757417384070129 -14.05810026995697 -6.808676644055874 -9.324186320342909 -9.220524701687543 -12.61044414255163 -9.644378024947853 -7.620210540823365 -11.82288121501415 -5.396910799146412 -13.05527828904129 -10.30342549923025 -13.19562582832752 -2.805824911607605 0.5886060988810937 4.120513442521916 1.162658492477524 4.932771090314962 4.606236932793788 2.014872649270415 5.339868907720868 2.743315371972167 -4.617667416210899 1.999131421715409 -5.353301219116173 2.726315394172552 -0.611291521408307 4.117988780848812 -1.187571050858884 4.929264283026042 -2.139599332309027 3.788942846944112 -5.164343543501015 0.8290711333373181 -2.99636583736415 4.428807317739661 -6.141480814850693 1.351387648974424 -4.225021602925385 3.758142633215543 -3.20239465897159 3.292826485442597 -6.372640036501849 0.1891437608247533 -5.26773872097306 -0.1397922540547897 -5.060075937571718 3.054007997932716 -3.943277568442837 2.750953874283442 -6.301440743977258 -0.7720073775261384 -5.136984467603375 -0.9288234656837572 -5.642996750969768 2.338482509684357 -4.477181062845431 2.188046769828072 -6.045781765648268 -1.597450497087772 -4.864377425616241 -1.59744239333856 -4.868088702938565 1.588940824409902 -4.471180360231378 -2.195912950284375 -6.049493045559932 1.588934727628423 -5.636963394135375 -2.34637225796323 -5.138980702977859 0.9193062601172498 -3.935010939522044 -2.758405912819115 -6.303369004477561 0.7623055482335482 -5.051724644990093 -3.061634706345457 -5.267538473975297 0.1284836752139618 -3.190956910517112 -3.299940318090963 -6.372186186701201 -0.2009621428356244 -4.213235749099931 -3.765702618015408 -5.160082680879592 -0.8427219285103885 -2.123166668350666 -3.794862669340203 -6.13638914881693 -1.36597498609087 -2.978922285784557 -4.43555752449242 -0.5885197661079195 -4.120399914351149 -1.16256291986312 -4.932657257001637 -4.606122629645602 -2.014735477800759 -5.339735788379853 -2.743176144763794 -3.325063773367089 -3.216692463880472 1.399436221034114 -3.997516865119874 -3.662179849014553 -4.107398405247095 1.250064419912603 -4.919404685624561 -1.372895805521925 -4.00277042444336 3.346512787926854 -3.203272247311469 -1.21997784929461 -4.924298380406616 3.68705418545108 -4.093164790378991 0.6113642978876138 -4.118071356985403 4.617747902423629 -1.999222052002686 1.187652019463948 -4.929337193170962 5.353407928182614 -2.726409124851045 5.164438050886696 -0.8291264049415041 6.141565090651655 -1.351438121476672 2.139663964115627 -3.788989196166075 2.996454837881586 -4.42885565877945 5.267743730206006 0.1398428529100231 6.372654774740514 -0.1890906805768049 3.202401858901243 -3.292778259440419 4.225021696139704 -3.75808538423671 5.136887609411004 0.9287968784213682 6.301322821900057 0.7719723381833509 3.943189382779365 -2.750992348204655 5.059997234893208 -3.054044110362204 4.863551817964225 1.597558026222105 6.04489261921601 1.597565779340973 4.476345343562111 -2.187929742582891 5.642141342295993 -2.338367823715728 4.470751428024356 2.195852734366363 5.636555464348028 2.346311909831038 4.86769810624192 -1.589009864038318 6.049038901895399 -1.588997567746211 5.05203837862957 3.061732231587077 6.303703735283573 -0.7621972952458326 3.935311944199161 2.758511066035775 5.13929496892643 -0.9192004917269404 4.213545717048607 3.765827006196082 6.372547766122596 0.2010852094342388 3.191244841452139 3.300055229866782 5.267888059821077 -0.1283553981323895 2.123424527614135 3.795082979436403 2.979191962199724 4.435783737510645 5.160386065421639 0.8429754464373749 6.136714648690377 1.366238049433706</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID863\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID859\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID857\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID858\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"192\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID859\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID860\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 2 2 1 1 4 1 5 2 6 3 5 2 4 1 7 0 1 4 8 5 3 6 9 7 3 6 8 5 10 5 6 6 11 7 6 6 10 5 4 4 12 8 13 9 14 10 14 10 13 9 15 11 13 9 16 12 15 11 16 12 17 13 15 11 15 11 17 13 18 14 17 13 19 15 18 14 18 14 19 15 20 16 19 15 21 17 20 16 20 16 21 17 22 18 21 17 23 19 22 18 23 19 24 20 22 18 22 18 24 20 25 21 24 20 26 22 25 21 25 21 26 22 27 23 26 22 28 24 27 23 28 24 29 25 27 23 27 23 29 25 30 26 29 25 31 27 30 26 31 27 32 28 30 26 32 28 33 29 30 26 30 26 33 29 34 30 33 29 35 31 34 30 34 30 35 31 36 32 37 33 36 32 35 31 38 34 39 35 40 36 39 35 41 37 40 36 40 36 41 37 14 10 14 10 41 37 12 8 12 8 41 37 42 38 41 37 43 39 42 38 42 38 43 39 44 40 44 40 43 39 45 41 43 39 46 42 45 41 45 41 46 42 47 43 46 42 48 44 47 43 47 43 48 44 49 45 48 44 50 46 49 45 49 45 50 46 51 47 51 47 50 46 52 48 50 46 53 49 52 48 52 48 53 49 54 50 53 49 55 51 54 50 54 50 55 51 56 52 56 52 55 51 57 53 55 51 58 54 57 53 57 53 58 54 59 55 59 55 58 54 32 28 33 29 32 28 58 54 60 54 61 28 62 29 61 28 60 54 63 55 63 55 60 54 64 53 64 53 60 54 65 51 64 53 65 51 66 52 66 52 65 51 67 50 67 50 65 51 68 49 67 50 68 49 69 48 69 48 68 49 70 46 69 48 70 46 71 47 71 47 70 46 72 45 72 45 70 46 73 44 72 45 73 44 74 43 74 43 73 44 75 42 74 43 75 42 76 41 76 41 75 42 77 39 76 41 77 39 78 40 78 40 77 39 79 38 79 38 77 39 80 37 79 38 80 37 81 8 81 8 80 37 82 10 82 10 80 37 83 36 83 36 80 37 84 35 83 36 84 35 85 34 86 31 87 32 88 33 87 32 86 31 89 30 89 30 86 31 62 29 89 30 62 29 90 26 90 26 62 29 61 28 90 26 61 28 91 27 90 26 91 27 92 25 90 26 92 25 93 23 93 23 92 25 94 24 93 23 94 24 95 22 93 23 95 22 96 21 96 21 95 22 97 20 96 21 97 20 98 18 98 18 97 20 99 19 98 18 99 19 100 17 98 18 100 17 101 16 101 16 100 17 102 15 101 16 102 15 103 14 103 14 102 15 104 13 103 14 104 13 105 11 105 11 104 13 106 12 105 11 106 12 107 9 105 11 107 9 82 10 82 10 107 9 81 8 0 56 2 57 108 58 109 59 108 58 2 57 5 57 110 58 111 59 110 58 5 57 7 56 112 60 113 61 8 62 9 63 8 62 113 61 114 61 10 62 11 63 10 62 114 61 115 60 112 64 116 65 113 66 117 67 113 66 116 65 118 65 114 66 119 67 114 66 118 65 115 64 117 68 116 69 120 70 121 71 120 70 116 69 118 69 122 70 123 71 122 70 118 69 119 68 120 72 121 73 124 74 125 75 124 74 121 73 123 73 126 74 127 75 126 74 123 73 122 72 124 76 125 77 128 78 129 79 128 78 125 77 127 77 130 78 131 79 130 78 127 77 126 76 129 80 132 81 128 82 133 83 128 82 132 81 134 81 130 82 135 83 130 82 134 81 131 80 132 84 136 85 133 86 137 87 133 86 136 85 138 85 135 86 139 87 135 86 138 85 134 84 136 88 140 89 137 90 141 91 137 90 140 89 142 89 139 90 143 91 139 90 142 89 138 88 140 92 144 93 141 94 145 95 141 94 144 93 146 93 143 94 147 95 143 94 146 93 142 92 148 96 149 97 144 98 145 99 144 98 149 97 150 97 146 98 147 99 146 98 150 97 151 96 148 100 152 101 149 102 153 103 149 102 152 101 154 101 150 102 155 103 150 102 154 101 151 100 152 104 156 105 153 106 157 107 153 106 156 105 158 105 155 106 159 107 155 106 158 105 154 104 156 108 160 109 157 110 161 111 157 110 160 109 162 109 159 110 163 111 159 110 162 109 158 108 164 112 165 113 160 114 161 115 160 114 165 113 166 113 162 114 163 115 162 114 166 113 167 112 168 116 169 117 164 118 165 119 164 118 169 117 170 117 167 118 166 119 167 118 170 117 171 116 172 120 173 121 168 122 169 123 168 122 173 121 174 121 171 122 170 123 171 122 174 121 175 120 176 124 177 125 172 126 173 127 172 126 177 125 178 125 175 126 174 127 175 126 178 125 179 124 180 128 181 129 176 130 177 131 176 130 181 129 182 129 179 130 178 131 179 130 182 129 183 128 184 132 181 133 185 134 180 135 185 134 181 133 182 133 186 134 183 135 186 134 182 133 187 132 188 136 184 137 189 138 185 139 189 138 184 137 187 137 190 138 186 139 190 138 187 137 191 136 108 140 109 141 189 142 188 143 189 142 109 141 111 141 190 142 191 143 190 142 111 141 110 140</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID864\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID865\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID869\">-0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID869\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID866\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID870\">-0.914297075399253 0.215116645721763 0.3431991938361602 -0.913408876044686 0.2046884346174862 0.3518335826731535 -0.9015424253173537 0.203441541780783 0.381880602323241 0.9015424253173537 -0.203441541780783 -0.381880602323241 0.913408876044686 -0.2046884346174862 -0.3518335826731535 0.914297075399253 -0.215116645721763 -0.3431991938361602 -0.9136510681511446 0.2298793945988548 0.3352569009060609 0.9136510681511446 -0.2298793945988548 -0.3352569009060609 -0.9117782845679017 0.2541872650090479 0.3225665731250447 0.9117782845679017 -0.2541872650090479 -0.3225665731250447 -0.9120084709463099 0.1943087758477377 0.3612265889310024 0.9120084709463099 -0.1943087758477377 -0.3612265889310024 -0.9141809063392639 0.1816931123289236 0.3622994388857799 0.9141809063392639 -0.1816931123289236 -0.3622994388857799 -0.914761389475236 0.2626135214064524 0.306994688390269 0.914761389475236 -0.2626135214064524 -0.306994688390269 -0.9126379924856676 0.2390954511057188 0.3315497849980955 0.9126379924856676 -0.2390954511057188 -0.3315497849980955 -0.9141710218943564 0.2509149231036151 0.3183285159902191 0.9141710218943564 -0.2509149231036151 -0.3183285159902191 -0.9164054954864268 0.1852852093678754 0.3547821289633675 0.9164054954864268 -0.1852852093678754 -0.3547821289633675 -0.8960867889457255 0.2095902619358588 0.3912804477335874 0.8960867889457255 -0.2095902619358588 -0.3912804477335874 -0.907217225171867 0.2176423778275239 0.3599843076094281 0.907217225171867 -0.2176423778275239 -0.3599843076094281 -0.8562445711454921 0.1718809545737532 0.4871367075459286 0.8562445711454921 -0.1718809545737532 -0.4871367075459286 -0.8755394211216304 0.1676337555122239 0.4531331438714985 0.8755394211216304 -0.1676337555122239 -0.4531331438714985</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID870\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID868\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID871\">11.91024662259696 -14.00044492351452 11.48721830684091 -14.18013834552815 7.438147269351948 -8.945061733813203 3.719073634675974 -4.472530866906602 5.743609153420457 -7.090069172764073 5.955123311298482 -7.00022246175726 13.28861338462427 -13.18460323054936 12.88197936170507 -13.45581934143577 8.254929826970962 -8.487481463314271 4.127464913485481 -4.243740731657136 6.440989680852535 -6.727909670717886 6.644306692312134 -6.592301615274679 12.70973102284357 -13.55074890505256 12.39471472312215 -13.45941836602513 8.460166676803608 -8.414954825070682 4.230083338401804 -4.207477412535341 6.197357361561076 -6.729709183012567 6.354865511421787 -6.775374452526281 12.3713572617144 -13.48543642483197 12.38139310001852 -13.74944422881806 7.486582909888019 -8.962355583693171 3.74329145494401 -4.481177791846585 6.19069655000926 -6.874722114409029 6.185678630857198 -6.742718212415983 11.08396695669552 -14.10459549978603 10.65623561054411 -13.82917257110459 7.360925690233538 -8.961744858697601 3.680462845116769 -4.480872429348801 5.328117805272056 -6.914586285552295 5.54198347834776 -7.052297749893013 13.26768441638996 -12.36521479670056 13.46124800907294 -12.7724965200221 8.419948186108105 -8.356981608688461 4.209974093054052 -4.17849080434423 6.730624004536471 -6.386248260011051 6.633842208194981 -6.182607398350278 11.72036966567479 -13.33278326480139 9.876498001695808 -11.98045450806011 8.259253079178057 -8.537099214004153 4.129626539589029 -4.268549607002076 4.938249000847904 -5.990227254030056 5.860184832837393 -6.666391632400697 11.97966509082454 -10.58711210718703 13.15729410283716 -12.4439210471574 8.323250129800233 -8.425467281546748 4.161625064900116 -4.212733640773374 6.578647051418579 -6.221960523578701 5.989832545412269 -5.293556053593514 7.350777491034236 -8.872150234277518 8.850256094164777 -12.34833197236433 6.956289496105613 -10.6269661093069 3.478144748052807 -5.313483054653452 4.425128047082389 -6.174165986182165 3.675388745517118 -4.436075117138759 10.13372814794584 -9.101011452070644 11.57804377148073 -10.94931484447147 7.951820622852295 -8.756422366433158 3.975910311426147 -4.378211183216579 5.789021885740366 -5.474657422235735 5.066864073972921 -4.550505726035322 7.911156915166181 -8.818168903335222 7.554866048665636 -10.57803416141198 7.059350620025528 -10.00408034766921 3.529675310012764 -5.002040173834605 3.777433024332818 -5.28901708070599 3.955578457583091 -4.409084451667611 9.193989107545409 -9.508454846182369 9.68941088965202 -10.15601053307976 7.514844530510416 -9.783809952703798 3.757422265255208 -4.891904976351899 4.84470544482601 -5.078005266539878 4.596994553772705 -4.754227423091185 8.659595885478712 -9.110994827756787 9.051855465856226 -9.271744288876676 7.370703582872622 -9.539412442323325 3.685351791436311 -4.769706221161663 4.525927732928113 -4.635872144438338 4.329797942739356 -4.555497413878394</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"78\" source=\"#ID871\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID867\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID865\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID866\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID867\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID868\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 6 0 7 2 8 1 12 8 13 2 14 10 18 6 19 2 20 8 24 12 25 2 26 14 30 10 31 2 32 12 36 16 37 2 38 18 42 14 43 2 44 2 48 16 49 20 50 22 54 18 55 2 56 2 60 20 61 24 62 26 66 22 67 2 68 28 72 26 73 2 74</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"13\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID867\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID868\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 3 9 5 10 7 11 3 15 9 16 4 17 3 21 7 22 11 23 3 27 13 28 9 29 3 33 11 34 15 35 3 39 17 40 13 41 3 45 15 46 19 47 21 51 17 52 3 53 3 57 19 58 23 59 25 63 21 64 3 65 3 69 23 70 27 71 3 75 27 76 29 77</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID872\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID873\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID877\">-0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID877\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID874\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID878\">-0.9134093689969149 -0.4070360955457695 -0.002222960079090378 -0.9119121534907809 -0.4102455541326406 0.01071492558113266 -0.9142974941597579 -0.4048897335756242 0.01115328732918963 0.9142974941597579 0.4048897335756242 -0.01115328732918963 0.9119121534907809 0.4102455541326406 -0.01071492558113266 0.9134093689969149 0.4070360955457695 0.002222960079090378 -0.9136502264216238 -0.4055454024125849 0.02786019277984999 0.9136502264216238 0.4055454024125849 -0.02786019277984999 -0.9117790669024211 -0.4069450223696586 0.05526917700770017 0.9117790669024211 0.4069450223696586 -0.05526917700770017 -0.9120015951730859 -0.4098723359248514 -0.01605486360118063 0.9120015951730859 0.4098723359248514 0.01605486360118063 -0.9141814459760682 -0.4043812773638791 -0.02735080164569932 0.9141814459760682 0.4043812773638791 0.02735080164569932 -0.9147624108846287 -0.3977990536394137 0.07046732970766671 0.9147624108846287 0.3977990536394137 -0.07046732970766671 -0.9126372670989114 -0.4070248176210724 0.03773614371876295 0.9126372670989114 0.4070248176210724 -0.03773614371876295 -0.9144871313551589 -0.4004184535448701 0.05812356360846403 0.9144871313551589 0.4004184535448701 -0.05812356360846403 -0.9204794639534302 -0.3894229249437765 -0.03267020000305571 0.9204794639534302 0.3894229249437765 0.03267020000305571 -0.9088875917936953 -0.4158717928127509 0.03120893183313543 0.9088875917936953 0.4158717928127509 -0.03120893183313543 -0.9109205019190907 -0.4117843417158877 -0.0256416672836413 0.9109205019190907 0.4117843417158877 0.0256416672836413 -0.9100402409371641 -0.4142768079748553 0.01419458520680808 0.9100402409371641 0.4142768079748553 -0.01419458520680808 -0.8630221137902762 -0.5042508634437252 0.03039568760896014 0.8630221137902762 0.5042508634437252 -0.03039568760896014 -0.9456945690175788 -0.3202907360795988 0.05545833131500434 0.9456945690175788 0.3202907360795988 -0.05545833131500434 -0.8815078276401288 -0.4717714966614515 0.01938052494116135 0.8815078276401288 0.4717714966614515 -0.01938052494116135</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID878\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID876\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID879\">-21.24412297407829 -0.125142413745954 -13.45535559221688 -0.2253901856971766 -21.27670996781477 -0.5024825625750654 -10.63835498390739 -0.2512412812875327 -6.727677796108438 -0.1126950928485883 -10.62206148703914 -0.06257120687297701 -13.42484942034366 -0.7580228247401991 -21.18446660970853 -1.451884809972818 -21.24619008053712 -1.035354676238285 -10.62309504026856 -0.5176773381191425 -10.59223330485427 -0.7259424049864089 -6.712424710171829 -0.3790114123700996 -20.98510383527625 -0.6124360400889033 -13.46874671677735 -0.8672629349756258 -21.25751011054963 -0.7668235939129079 -10.62875505527481 -0.3834117969564539 -6.734373358388677 -0.4336314674878129 -10.49255191763812 -0.3062180200444516 -13.50058237987369 -0.2330322036721792 -20.97141608118763 -1.060835085065468 -21.26028882019027 -0.9262762329989754 -10.63014441009513 -0.4631381164994877 -10.48570804059382 -0.5304175425327341 -6.750291189936846 -0.1165161018360896 -20.42396479385608 0.2036061404282778 -13.43154180529066 -0.1892618490922838 -20.9479230613187 0.06512407169546448 -10.47396153065935 0.03256203584773224 -6.71577090264533 -0.09463092454614187 -10.21198239692804 0.1018030702141389 -13.38256041331185 -0.8934496676200572 -20.31535974206487 -1.82375838440512 -20.85307675263828 -1.723023086473669 -10.42653837631914 -0.8615115432368344 -10.15767987103244 -0.9118791922025602 -6.691280206655926 -0.4467248338100286 -18.02003060176221 0.1220255335760297 -13.48055350387107 -0.7283738844541267 -20.47295909683744 -0.3353143390356228 -10.23647954841872 -0.1676571695178114 -6.740276751935537 -0.3641869422270633 -9.010015300881104 0.06101276678801487 -13.39863503439812 -0.8185917493552359 -17.71476096729495 -2.009425410882813 -20.33158400188232 -1.748210110450446 -10.16579200094116 -0.8741050552252229 -8.857380483647473 -1.004712705441407 -6.699317517199058 -0.409295874677618 -15.0082564826709 0.9665192416528483 -13.32897297677283 -0.2295582768528615 -17.86863127354823 0.6202423415971474 -8.934315636774112 0.3101211707985737 -6.664486488386415 -0.1147791384264307 -7.504128241335451 0.4832596208264242 -13.4529889311389 -0.693808394268258 -15.02644916115231 -1.943272607151886 -17.76961962851651 -1.883509276524634 -8.884809814258253 -0.9417546382623171 -7.513224580576157 -0.9716363035759428 -6.72649446556945 -0.346904197134129 -14.02614066497001 1.087155530817702 -13.21218803543074 -0.1228597901630481 -14.89071638258296 1.073873522804769 -7.445358191291481 0.5369367614023844 -6.60609401771537 -0.06142989508152404 -7.013070332485004 0.5435777654088512 -13.78397498742696 -0.4267008592463119 -14.44465413117839 -1.686613223182673 -15.35883216443236 -1.675075450976801 -7.679416082216179 -0.8375377254884004 -7.222327065589196 -0.8433066115913365 -6.891987493713481 -0.213350429623156 -14.69836427084818 0.4732769352801142 -14.30189428277912 -0.5868967377974099 -15.11723179364458 0.6225414511188454 -7.558615896822288 0.3112707255594227 -7.150947141389562 -0.293448368898705 -7.349182135424091 0.2366384676400571 -12.63674340539486 -0.8350418093976046 -12.92434911954095 -1.920022184078838 -13.29140723759785 -2.096895835997954 -6.645703618798926 -1.048447917998977 -6.462174559770474 -0.960011092039419 -6.318371702697432 -0.4175209046988023 -14.1800185543271 0.1536412372854066 -14.02024496794676 -0.5331294523352237 -14.41809006551084 0.5267253828811376 -7.209045032755421 0.2633626914405688 -7.010122483973378 -0.2665647261676118 -7.090009277163551 0.07682061864270329</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"90\" source=\"#ID879\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID875\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID873\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID874\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID875\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID876\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 6 6 7 2 8 8 12 1 13 0 14 1 18 10 19 6 20 12 24 1 25 8 26 1 30 14 31 10 32 16 36 1 37 12 38 1 42 18 43 14 44 20 48 1 49 16 50 1 54 22 55 18 56 24 60 1 61 20 62 1 66 26 67 22 68 28 72 1 73 24 74 1 78 30 79 26 80 32 84 1 85 28 86</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"15\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID875\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID876\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 3 9 7 10 4 11 5 15 4 16 9 17 7 21 11 22 4 23 9 27 4 28 13 29 11 33 15 34 4 35 13 39 4 40 17 41 15 45 19 46 4 47 17 51 4 52 21 53 19 57 23 58 4 59 21 63 4 64 25 65 23 69 27 70 4 71 25 75 4 76 29 77 27 81 31 82 4 83 29 87 4 88 33 89</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID880\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID881\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID885\">-0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID885\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID882\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID886\">-0.9056830514341907 0.2001496463545517 -0.3737356410740096 -0.9047258764599201 0.221095053799041 -0.3641264418432539 -0.9105526100805975 0.1847929401693026 -0.369791175582917 0.9105526100805975 -0.1847929401693026 0.369791175582917 0.9047258764599201 -0.221095053799041 0.3641264418432539 0.9056830514341907 -0.2001496463545517 0.3737356410740096 -0.9051369888889698 0.176876174222501 -0.386577094946688 0.9051369888889698 -0.176876174222501 0.386577094946688 -0.904493813809657 0.1911218988267972 -0.3812654725632798 0.904493813809657 -0.1911218988267972 0.3812654725632798 -0.9048570575862879 0.1960303289645085 -0.3778965671481442 0.9048570575862879 -0.1960303289645085 0.3778965671481442 -0.9032828455301246 0.283194694223623 -0.3223055477874834 0.9032828455301246 -0.283194694223623 0.3223055477874834 -0.903932511685058 0.08979039239145804 -0.4181431570083751 0.903932511685058 -0.08979039239145804 0.4181431570083751 -0.9053391715144735 0.2442462075276558 -0.347425926824473 0.9053391715144735 -0.2442462075276558 0.347425926824473 -0.9034477096128234 0.08055611706507812 -0.4210616914405072 0.9034477096128234 -0.08055611706507812 0.4210616914405072 -0.9051167199063447 0.3004841266895872 -0.3007873217966073 0.9051167199063447 -0.3004841266895872 0.3007873217966073 -0.9038086622089847 0.07690250391578957 -0.4209701972913139 0.9038086622089847 -0.07690250391578957 0.4209701972913139 -0.8916242092027337 0.2877059539723708 -0.3496162948325602 0.8916242092027337 -0.2877059539723708 0.3496162948325602 -0.8974554480062785 0.08990498062023532 -0.4318458212180883 0.8974554480062785 -0.08990498062023532 0.4318458212180883 -0.8779052696244868 0.2831733692969536 -0.3861284507603243 0.8779052696244868 -0.2831733692969536 0.3861284507603243 -0.8787757289941988 0.135225059641794 -0.4576760878346039 0.8787757289941988 -0.135225059641794 0.4576760878346039 -0.9571766001854924 0.2406762368571569 -0.1608971878859901 0.9571766001854924 -0.2406762368571569 0.1608971878859901 -0.9663187840262552 -0.06408349179479717 -0.2492414767196787 0.9663187840262552 0.06408349179479717 0.2492414767196787</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID886\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID884\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID887\">11.23701380701663 14.38472431556303 11.62241699167023 14.15859673204485 7.247890561596551 9.017184793018476 3.623945280798275 4.508592396509238 5.811208495835114 7.079298366022423 5.618506903508315 7.192362157781517 9.610237607549587 15.07004322533177 10.09506839990886 14.89571032499116 6.312270124388578 9.4365141150515 3.156135062194289 4.71825705752575 5.047534199954431 7.447855162495579 4.805118803774794 7.535021612665886 10.70820329278883 14.61305107737053 10.73290706126174 14.34965055071956 6.493139303682451 9.389856794481524 3.246569651841226 4.694928397240762 5.366453530630868 7.174825275359781 5.354101646394414 7.306525538685265 10.07214180933752 14.65062086041686 10.37099973231822 14.77093216045764 6.929856889300352 9.19065053817757 3.464928444650176 4.595325269088785 5.185499866159109 7.385466080228818 5.036070904668759 7.32531043020843 12.31835537755474 13.50282029479082 12.17351499889409 13.08321338276301 7.821705813732769 8.685069065969902 3.910852906866384 4.342534532984951 6.086757499447046 6.541606691381505 6.159177688777371 6.751410147395411 7.77529816670016 15.01302132937492 8.151522194221171 15.33158858879169 5.370170743512229 9.751768766821881 2.685085371756115 4.87588438341094 4.075761097110585 7.665794294395843 3.88764908335008 7.506510664687459 11.45974683281593 13.49634638012442 10.6191642510143 11.62672481508899 7.211427886669418 9.036025413102365 3.605713943334709 4.518012706551183 5.309582125507149 5.813362407544494 5.729873416407967 6.748173190062207 6.043161989998992 13.39339577620473 7.610509003207477 15.06240894843653 5.235798096827196 9.792612949944351 2.617899048413598 4.896306474972175 3.805254501603738 7.531204474218267 3.021580994999496 6.696697888102364 11.46063465620553 10.99959879798778 10.22937862915607 8.939277822018701 7.980285588588723 8.469341774523125 3.990142794294362 4.234670887261562 5.114689314578033 4.46963891100935 5.730317328102766 5.499799398993892 6.007223952446729 13.40087908685941 5.204683511179758 9.799429035524494 4.605625825318914 11.54493689437456 2.302812912659457 5.772468447187281 2.602341755589879 4.899714517762247 3.003611976223365 6.700439543429704 10.08534950006962 9.25731378331802 9.603947610001866 8.670713562118595 7.838690672075432 8.780226490960692 3.919345336037716 4.390113245480346 4.801973805000933 4.335356781059297 5.042674750034811 4.62865689165901 4.507682296432314 11.54467298219238 5.113560001846171 9.800622461742714 4.061243782257101 10.93449054480636 2.030621891128551 5.46724527240318 2.556780000923085 4.900311230871357 2.253841148216157 5.772336491096191 9.671671521288179 9.065981605457438 9.276434081040812 8.875378320044581 7.906737286793971 9.178667328377136 3.953368643396986 4.589333664188568 4.638217040520406 4.43768916002229 4.835835760644089 4.532990802728719 6.191963544606201 9.949194390801255 5.184839687325803 10.74959644287122 5.196960240007307 11.11464310537072 2.598480120003654 5.557321552685361 2.592419843662901 5.374798221435611 3.0959817723031 4.974597195400627 8.493525136113068 7.344301545890064 7.961446468619004 7.383621000725571 7.116338653487188 7.625819840706948 3.558169326743594 3.812909920353474 3.980723234309502 3.691810500362786 4.246762568056534 3.672150772945032 3.248034811266818 8.626432983016079 2.510419584926491 9.040122526603774 2.15770661357887 9.356257960679804 1.078853306789435 4.678128980339902 1.255209792463246 4.520061263301887 1.624017405633409 4.313216491508039</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID887\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID883\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID881\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID882\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID883\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID884\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 6 0 7 2 8 1 12 8 13 2 14 10 18 6 19 2 20 8 24 12 25 2 26 14 30 10 31 2 32 12 36 16 37 2 38 18 42 14 43 2 44 16 48 20 49 2 50 18 54 2 55 22 56 20 60 24 61 2 62 22 66 2 67 26 68 24 72 28 73 2 74 2 78 30 79 26 80 28 84 32 85 2 86 2 90 34 91 30 92</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID883\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID884\" />\r\n\t\t\t\t\t<p>3 3 4 4 5 5 3 9 5 10 7 11 3 15 9 16 4 17 3 21 7 22 11 23 3 27 13 28 9 29 3 33 11 34 15 35 3 39 17 40 13 41 3 45 15 46 19 47 3 51 21 52 17 53 23 57 3 58 19 59 3 63 25 64 21 65 27 69 3 70 23 71 3 75 29 76 25 77 27 81 31 82 3 83 3 87 33 88 29 89 31 93 35 94 3 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID888\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID889\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID893\">-0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID893\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID890\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID894\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1339049186988217 0.7508247768900788 0.6467856114325872 -0.1366815993397975 0.7492072263892851 0.6480792176331454 -0.1357431839025557 0.7497550114468473 0.6476428111500465 0.1357431839025557 -0.7497550114468473 -0.6476428111500465 0.1366815993397975 -0.7492072263892851 -0.6480792176331454 0.1339049186988217 -0.7508247768900788 -0.6467856114325872 -0.1520463180641854 0.9134113510277387 -0.3775733319195171 -0.1334097867881871 0.9103994814047611 -0.3916307100408146 -0.1390632020355034 0.9113651292871443 -0.3873951818996452 0.1390632020355034 -0.9113651292871443 0.3873951818996452 0.1334097867881871 -0.9103994814047611 0.3916307100408146 0.1520463180641854 -0.9134113510277387 0.3775733319195171 -0.1567944187057105 0.08942895644361149 -0.9835740805918715 -0.1662539374228294 0.0953143051630216 -0.9814656445962314 -0.1620999136155048 0.09272970269960207 -0.9824076649961 0.1620999136155048 -0.09272970269960207 0.9824076649961 0.1662539374228294 -0.0953143051630216 0.9814656445962314 0.1567944187057105 -0.08942895644361149 0.9835740805918715 -0.1804827978264776 -0.7794077832683366 -0.5999578877466854 -0.1731947688567061 -0.7836915051681265 -0.5965158814046685 -0.1839627565907119 -0.7773362748139587 -0.6015862532055601 0.1839627565907119 0.7773362748139587 0.6015862532055601 0.1731947688567061 0.7836915051681265 0.5965158814046685 0.1804827978264776 0.7794077832683366 0.5999578877466854 -0.1498802405936568 -0.8314662140399025 0.5349764933057699 -0.159394116583764 -0.8338018904044722 0.5285526682899351 -0.1454069155601703 -0.830330389039357 0.5379667963220666 0.1454069155601703 0.830330389039357 -0.5379667963220666 0.159394116583764 0.8338018904044722 -0.5285526682899351 0.1498802405936568 0.8314662140399025 -0.5349764933057699 -0.1200646820303652 -0.1352334059142434 0.9835122765140153 -0.1169608422628643 -0.1329517455880777 0.9841971320432936 -0.1178688308120367 -0.1336192904808511 0.9839983861442035 0.1178688308120367 0.1336192904808511 -0.9839983861442035 0.1169608422628643 0.1329517455880777 -0.9841971320432936 0.1200646820303652 0.1352334059142434 -0.9835122765140153 -0.1149780011914516 -0.1314937652318465 0.9846265530378361 0.1149780011914516 0.1314937652318465 -0.9846265530378361 -0.1383533907224121 0.748228527281576 0.6488546911579324 0.1383533907224121 -0.748228527281576 -0.6488546911579324 -0.1218391275179259 0.9082828720398434 -0.4002217527380592 0.1218391275179259 -0.9082828720398434 0.4002217527380592 -0.171069294297384 0.09831063701288102 -0.9803419378965262 0.171069294297384 -0.09831063701288102 0.9803419378965262 -0.1903801350748161 -0.7734717985712226 -0.6045632977479636 0.1903801350748161 0.7734717985712226 0.6045632977479636 -0.1369570666554436 -0.8281195642851391 0.5435630130365088 0.1369570666554436 0.8281195642851391 -0.5435630130365088</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID894\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID892\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID895\">-3.22750530352778 -2.812409736805045 -2.951301684127827 -2.560178796236892 -3.07457980125035 -3.103438394186436 -2.586245081388976 -3.138366854245081 -2.556691561629541 -2.602862605502018 -2.334681128296288 -2.878373475755785 3.890396129634985 -3.830929293644298 3.841902111534349 -4.161649426798395 3.575431113631269 -3.789832146312027 3.887388388210999 -1.440193123441505 3.912498830598775 -1.754485825277173 3.566726244310392 -1.436325568056493 -0.4520798298547238 3.628218854229932 -0.02789107994044388 3.434714660158956 -0.6269127531905233 3.417011356515528 -4.616564961458593 -3.307009919642491 -4.930711116245211 -3.25041739217853 -4.876425679403012 -2.926478984311723 -4.513663973358447 -1.850958396857737 -4.836851909935116 -1.83958610627239 -4.878537780603065 -1.515035859425156 -5.046195202738853 -1.291777653134048 -5.308185798548161 -1.055748647629636 -4.790052294242987 -1.141577079945387 -5.313828097940997 -1.009515787560939 -5.090443691600591 -0.8300736736479857 -4.796520925120116 -1.098375304575961 3.816637853167348 -4.175572887189126 3.495993835408513 -4.170866329638131 3.552114816996843 -3.802895821126935 4.0296039108369 -1.697189035132493 3.713607575865441 -1.738790116719466 3.688828852934125 -1.375709284375783 -0.01104629650652111 3.368886973135145 -0.1460547981744018 3.138679991438502 -0.6101368924396966 3.352691153528167 -4.583199311398975 -2.874060766680606 -4.653434003548693 -3.245359532973397 -4.906343357164033 -2.861941179468713 -4.476160721886599 -1.758342063168315 -4.835281606577187 -1.418604677661858 -4.518465614885066 -1.386244061110217</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID895\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID891\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID889\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID890\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID891\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID892\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 43 24 48 25 44 26 45 26 49 25 46 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 25 33 54 34 26 35 27 35 55 34 28 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID896\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID897\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID901\">-0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID901\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID898\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID902\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1556107303666403 0.7682758938062599 0.6209166220926551 -0.1116879029147231 0.7955488162724242 0.5955064174885576 -0.1211700042938787 0.789903523489808 0.6011407935232872 0.1211700042938787 -0.789903523489808 -0.6011407935232872 0.1116879029147231 -0.7955488162724242 -0.5955064174885576 0.1556107303666403 -0.7682758938062599 -0.6209166220926551 -0.1244233597649755 0.7888847891485317 -0.60181360652188 -0.1090844255234062 0.783426245276965 -0.6118365029315144 -0.07906121212958679 0.7719592340661052 -0.6307362885364001 0.07906121212958679 -0.7719592340661052 0.6307362885364001 0.1090844255234062 -0.783426245276965 0.6118365029315144 0.1244233597649755 -0.7888847891485317 0.60181360652188 -0.2018053130177652 0.01921618423162401 -0.979237128534952 -0.1572201673390395 -0.01588452934778078 -0.9874358210584038 -0.1697468595286489 -0.006068861490700951 -0.9854690114865956 0.1697468595286489 0.006068861490700951 0.9854690114865956 0.1572201673390395 0.01588452934778078 0.9874358210584038 0.2018053130177652 -0.01921618423162401 0.979237128534952 -0.1301145213637191 -0.8486119901717154 -0.5127649573314177 -0.1086210651978576 -0.8602669808478003 -0.4981387215006411 -0.1343567494298995 -0.8462231442695603 -0.5156109521578944 0.1343567494298995 0.8462231442695603 0.5156109521578944 0.1086210651978576 0.8602669808478003 0.4981387215006411 0.1301145213637191 0.8486119901717154 0.5127649573314177 -0.1233984985839719 -0.8421416557768033 0.5249478470788555 -0.1395139141062699 -0.8459706197122566 0.5146548147587942 -0.1133150330807146 -0.8395891544271424 0.5312718278303796 0.1133150330807146 0.8395891544271424 -0.5312718278303796 0.1395139141062699 0.8459706197122566 -0.5146548147587942 0.1233984985839719 0.8421416557768033 -0.5249478470788555 -0.1131147639969138 0.1650111135103676 0.9797838448270062 -0.1302224134692138 0.1510864416931907 0.9799056128866409 -0.1260546410823167 0.1544903123830586 0.9799198798072183 0.1260546410823167 -0.1544903123830586 -0.9799198798072183 0.1302224134692138 -0.1510864416931907 -0.9799056128866409 0.1131147639969138 -0.1650111135103676 -0.9797838448270062 -0.1420492710714026 0.1413865864036689 0.9797100784278996 0.1420492710714026 -0.1413865864036689 -0.9797100784278996 -0.07903885031514943 0.8139813077432695 0.5754887407981291 0.07903885031514943 -0.8139813077432695 -0.5754887407981291 -0.1506678535050407 0.7975887197008246 -0.5840816998727005 0.1506678535050407 -0.7975887197008246 0.5840816998727005 -0.1263475132736118 -0.03992446121385578 -0.9911822956885165 0.1263475132736118 0.03992446121385578 0.9911822956885165 -0.1536418730879432 -0.8349919501480647 -0.5283773443496233 0.1536418730879432 0.8349919501480647 0.5283773443496233 -0.09890193715248216 -0.8357326912076589 0.5401567139953833 0.09890193715248216 0.8357326912076589 -0.5401567139953833</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID902\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID900\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID903\">2.1541310401361 -2.962968129024459 2.38695007375611 -2.736350782082216 2.418521699517856 -3.217524168002713 2.761839076668994 -2.686682816693547 2.821044674853094 -3.223738017132682 2.994709736256524 -2.987806394483918 4.862848037992812 -1.436471730911179 4.816630126722004 -1.72556996709557 4.546856623073591 -1.394885293464188 4.701232558523698 -3.464185464245616 4.356729313977708 -3.137265300856367 4.674295548158963 -3.13614816966916 2.832124689239227 2.605261509879871 3.232835120194977 2.574608855939533 2.790045554862084 2.35347060364349 -3.773819348498676 -1.514619174466891 -4.089461011924668 -1.478694176529454 -4.067706033708806 -1.206600595934767 -3.610399023948869 -4.057492832424999 -3.931153506527283 -4.05303378018515 -3.969045730769214 -3.701827264759665 5.255177150779224 -0.7332430780051124 5.043212311869807 -0.9815096230854541 5.001577739208429 -0.581536198764107 4.9024837554483 -1.297541471095555 4.850872795825993 -1.696794596249568 4.606137713813613 -1.534142956742709 4.665354963484203 -1.648431032989956 4.347788412930141 -1.649491048209251 4.37016457834615 -1.331467340770913 4.849233383170659 -3.32165800873397 4.536459444617076 -3.384541965459336 4.483803267194991 -3.009115504783515 1.340664256104527 3.565066468173025 1.452060210471746 3.329977995737437 1.04044806537555 3.226749937533368 -3.541497141569373 -0.9801162596498589 -3.57981940945645 -1.290193905695045 -3.862250629639993 -0.9756131540381329 -3.774866068728113 -4.012438122951902 -4.122520570283084 -3.650081136837909 -3.807240998867626 -3.6140169568218</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID903\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID899\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID897\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID898\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID899\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID900\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 5 5 4 4 3 3 6 3 7 4 8 5 7 4 6 3 9 2 9 2 6 3 10 1 9 2 10 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 18 30 52 31 19 32 22 32 53 31 23 30 25 33 54 34 26 35 27 35 55 34 28 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID904\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID905\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID909\">-0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID909\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID906\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID910\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1162781854949556 0.9440221721569896 0.3087094460070827 -0.1346201936039555 0.9376228862790311 0.3205319431816625 -0.1281283390755502 0.939946060968536 0.3163613933391273 0.1281283390755502 -0.939946060968536 -0.3163613933391273 0.1346201936039555 -0.9376228862790311 -0.3205319431816625 0.1162781854949556 -0.9440221721569896 -0.3087094460070827 -0.1262440609561076 0.6903675011133202 -0.7123588635511321 -0.138001516637389 0.6955840009988096 -0.7050662940179939 -0.1649346685400534 0.70700699320098 -0.687704636220007 0.1649346685400534 -0.70700699320098 0.687704636220007 0.138001516637389 -0.6955840009988096 0.7050662940179939 0.1262440609561076 -0.6903675011133202 0.7123588635511321 -0.1349838365174811 -0.2465273866193998 -0.9596893307344993 -0.1249639091624064 -0.2537058685940289 -0.959175350834142 -0.1286676828647164 -0.2510584934495154 -0.9593822284434316 0.1286676828647164 0.2510584934495154 0.9593822284434316 0.1249639091624064 0.2537058685940289 0.959175350834142 0.1349838365174811 0.2465273866193998 0.9596893307344993 -0.137528258736553 -0.9661754887229821 -0.2181533933721836 -0.1258995814562067 -0.9694811380793162 -0.2103701934628239 -0.1434766227141468 -0.9644040248531957 -0.2221245947244455 0.1434766227141468 0.9644040248531957 0.2221245947244455 0.1258995814562067 0.9694811380793162 0.2103701934628239 0.137528258736553 0.9661754887229821 0.2181533933721836 -0.1239625549634292 -0.6332652192933885 0.7639426987675421 -0.1185484243271057 -0.6305364008267925 0.7670528784392604 -0.1200262461105332 -0.6312838785604785 0.7662077818152547 0.1200262461105332 0.6312838785604785 -0.7662077818152547 0.1185484243271057 0.6305364008267925 -0.7670528784392604 0.1239625549634292 0.6332652192933885 -0.7639426987675421 -0.1167974670152386 0.208822637995721 0.9709538905423534 -0.1045482762700885 0.2188615063811693 0.9701388039623601 -0.1074482883687536 0.2164917070285634 0.9703536500237859 0.1074482883687536 -0.2164917070285634 -0.9703536500237859 0.1045482762700885 -0.2188615063811693 -0.9701388039623601 0.1167974670152386 -0.208822637995721 -0.9709538905423534 -0.09592521523731801 0.2258827503490979 0.9694201030391322 0.09592521523731801 -0.2258827503490979 -0.9694201030391322 -0.1453360876391361 0.933647648128806 0.3273827893663605 0.1453360876391361 -0.933647648128806 -0.3273827893663605 -0.1018954951506087 0.6791262154425009 -0.7269146384320226 0.1018954951506087 -0.6791262154425009 0.7269146384320226 -0.1190712048485406 -0.2579031796181484 -0.9588055058867603 0.1190712048485406 0.2579031796181484 0.9588055058867603 -0.154126908222058 -0.9610952896026681 -0.2292176704913324 0.154126908222058 0.9610952896026681 0.2292176704913324 -0.115015487565636 -0.6287414646692523 0.7690615113406746 0.115015487565636 0.6287414646692523 -0.7690615113406746</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID910\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID908\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID911\">3.858881499525051 0.9609417295217747 3.993090241948528 1.28379398993862 4.139088478041265 0.7343252686688629 4.360066392024481 1.345881974146346 4.569212760641203 0.8212451680291688 4.659980598047449 1.15030729017397 4.932691922661467 2.050594508079105 4.916285000295099 1.711163197031581 4.615259486836989 2.070469394477851 5.301373169335704 -1.097168139238578 4.917103607755755 -0.805118177735519 5.237714155139309 -0.7850202068611257 -1.940032066892782 4.570920503433157 -1.733459754836062 4.880174696214064 -1.662795203246673 4.446608370819519 -3.534587250218728 1.624071027479026 -3.852408664159016 1.648173959859722 -3.840719447785261 1.984768461447111 -3.499512347452446 -2.523060644294281 -3.557127484714577 -2.219977571431748 -3.179303377019544 -2.513625773284166 6.036691952030751 1.558880138713572 5.857553404921535 1.299387320327408 5.765266348757652 1.69019121520112 5.53875939098732 2.16409055123303 5.68267868581342 1.783065168379234 5.379672069378961 1.860096852462629 5.018382483950596 1.712588065047657 4.697355198809692 1.697146151252073 4.72200273180184 2.074276447220133 5.042709028738651 -1.456450100848597 4.730220832293885 -1.507328388868188 4.680145291440302 -1.1477025667911 -2.043781256662477 4.349112368737373 -2.15044191010415 4.778099156923561 -1.849061549422705 4.695147414247404 -3.380644054737866 1.71494630994848 -3.683758735701449 2.077217382872447 -3.363423892743181 2.083472085264609 -3.620464559827389 -2.222019128872433 -3.308006398490402 -2.172864553124199 -3.246199033616235 -2.51847405722835</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID911\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID907\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID905\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID906\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID907\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID908\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 5 5 4 4 3 3 6 3 7 4 8 5 7 4 6 3 9 2 9 2 6 3 10 1 9 2 10 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 18 30 52 31 19 32 22 32 53 31 23 30 26 33 25 34 54 35 55 35 28 34 27 33 30 36 32 37 56 38 57 38 33 37 35 36 37 39 58 40 38 41 39 41 59 40 40 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID912\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID913\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID917\">-0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID917\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID914\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID918\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1410029563660657 0.4807853474390595 0.8654268403417659 -0.1060549371234037 0.5081935363673253 0.8546880599998006 -0.1135576304247743 0.5024134134834092 0.8571379273630698 0.1135576304247743 -0.5024134134834092 -0.8571379273630698 0.1060549371234037 -0.5081935363673253 -0.8546880599998006 0.1410029563660657 -0.4807853474390595 -0.8654268403417659 -0.1067686555805312 0.994014375944963 0.02314896542551481 -0.0992313783360488 0.9949317552839722 0.01624610356613912 -0.1001724357446263 0.9948230072652543 0.01710752269338355 0.1001724357446263 -0.9948230072652543 -0.01710752269338355 0.0992313783360488 -0.9949317552839722 -0.01624610356613912 0.1067686555805312 -0.994014375944963 -0.02314896542551481 -0.09891909191161409 0.4687497692647048 -0.8777748384806138 -0.1287480142985737 0.4875078415387097 -0.8635739998705626 -0.1204055105956813 0.4823208077810515 -0.8676803278855798 0.1204055105956813 -0.4823208077810515 0.8676803278855798 0.1287480142985737 -0.4875078415387097 0.8635739998705626 0.09891909191161409 -0.4687497692647048 0.8777748384806138 -0.1646652191806799 -0.4577190077569442 -0.8737154431107287 -0.1437557280381843 -0.4742852702663527 -0.8685549913877557 -0.148440743472404 -0.4706111030796328 -0.869764643645355 0.148440743472404 0.4706111030796328 0.869764643645355 0.1437557280381843 0.4742852702663527 0.8685549913877557 0.1646652191806799 0.4577190077569442 0.8737154431107287 -0.09646331398013955 -0.9953169813336709 0.006239849741635174 -0.1039611698752289 -0.994581356731652 -1.567513741408958e-017 -0.09475985240703004 -0.9954707181582593 0.007656347776652718 0.09475985240703004 0.9954707181582593 -0.007656347776652718 0.1039611698752289 0.994581356731652 1.567513741408958e-017 0.09646331398013955 0.9953169813336709 -0.006239849741635174 -0.08050414354804245 -0.4417526345097378 0.8935175951123192 -0.1080393619639094 -0.4596758574940459 0.881490557126703 -0.1004692751834205 -0.4547958960035424 0.8849105139631087 0.1004692751834205 0.4547958960035424 -0.8849105139631087 0.1080393619639094 0.4596758574940459 -0.881490557126703 0.08050414354804245 0.4417526345097378 -0.8935175951123192 -0.1261670868981231 -0.4712139498534301 0.8729486122602924 0.1261670868981231 0.4712139498534301 -0.8729486122602924 -0.08066176544082679 0.5273398224729309 0.8458169963001376 0.08066176544082679 -0.5273398224729309 -0.8458169963001376 -0.09298631847472325 0.9956116753904154 0.01053263513122168 0.09298631847472325 -0.9956116753904154 -0.01053263513122168 -0.1480979007488019 0.499360107511594 -0.8536430722613565 0.1480979007488019 -0.499360107511594 0.8536430722613565 -0.128617271239178 -0.4860099095104769 -0.8644373692735674 0.128617271239178 0.4860099095104769 0.8644373692735674 -0.08787557746910753 -0.9960416408784326 0.01337656610159817 0.08787557746910753 0.9960416408784326 -0.01337656610159817</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID918\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID916\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID919\">-0.2925268116698577 3.596545335882117 0.027122406016975 3.736241749693183 -0.3004302779671875 3.329571050263488 0.04688576503043994 3.183664922406017 0.3783244763866356 3.599650192905323 0.3783244763866733 3.320256183830747 4.304771798895633 1.03172710660281 4.21481509604171 0.7529116011386672 4.000044726454139 1.10793485062912 4.421275731804731 3.581575744406544 4.420431663145973 3.314529897656492 4.10347570606989 3.588741106063421 4.319595171864108 2.43657218669946 4.391308998608645 2.132013168039903 4.004262736190113 2.404159357085891 -4.197876129968127 2.620891524746142 -4.085679924831708 2.901690795312082 -3.898880727774464 2.528130711158829 -4.096804965313124 3.297878293086227 -4.414531600177956 3.320256183830747 -4.41453160017797 3.599650192905323 -4.337741485997127 0.7903962326542223 -4.40070684784139 1.094589961698369 -4.021893908100886 0.8163003856027347 -3.915494554730933 0.7530582966662636 -4.318740986045711 1.009222180880419 -4.014861215834311 1.087495689805327 4.382412656505274 1.275732923953219 4.06494067866972 1.289160856444053 4.117569520822965 1.609168978682243 4.430786423268708 3.323457494963106 4.11338677832698 3.307928508737795 4.113749018618937 3.59761042930563 3.896458540050114 2.733419148329708 4.306625459163545 2.483105444542788 4.004673048262786 2.396474751015988 -4.232313562344972 2.697004915989215 -3.918374393230021 2.65249310587964 -4.010318426120987 2.335558842294007 -4.109867458805556 3.289422241500907 -4.427552647176091 3.591221143347064 -4.110337663997246 3.602853878806665</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID919\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID915\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID913\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID914\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID915\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID916\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 26 33 25 34 54 35 55 35 28 34 27 33 31 36 56 37 32 38 33 38 57 37 34 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID920\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID921\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID925\">-0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID925\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID922\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID926\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1094074020686247 0.4984230333416132 0.8600026163955198 -0.101645225647281 0.504024634304494 0.8576872484287816 -0.1038929795673725 0.5024082937966418 0.8583659797085161 0.1038929795673725 -0.5024082937966418 -0.8583659797085161 0.101645225647281 -0.504024634304494 -0.8576872484287816 0.1094074020686247 -0.4984230333416132 -0.8600026163955198 -0.1018222525483512 0.9769718064996613 -0.1875055150942714 -0.1087690994352792 0.9772346523405453 -0.1821584949237671 -0.1067289061750859 0.9771652234428873 -0.1837309627702476 0.1067289061750859 -0.9771652234428873 0.1837309627702476 0.1087690994352792 -0.9772346523405453 0.1821584949237671 0.1018222525483512 -0.9769718064996613 0.1875055150942714 -0.1433289414998819 0.3565134591932102 -0.9232307230278977 -0.1359909180218172 0.3518821215535716 -0.9261130831310727 -0.1384934920200037 0.3534641008466894 -0.9251392771257453 0.1384934920200037 -0.3534641008466894 0.9251392771257453 0.1359909180218172 -0.3518821215535716 0.9261130831310727 0.1433289414998819 -0.3565134591932102 0.9232307230278977 -0.1349675165566499 -0.6595557153030317 -0.7394389953780073 -0.1173622889185317 -0.6711286400381099 -0.731992104916713 -0.1222124372058731 -0.6679776222096131 -0.7340776637518621 0.1222124372058731 0.6679776222096131 0.7340776637518621 0.1173622889185317 0.6711286400381099 0.731992104916713 0.1349675165566499 0.6595557153030317 0.7394389953780073 -0.1058191295169145 -0.9701374026818134 0.2182561150255999 -0.1176512528335321 -0.9707395559761901 0.209339191671912 -0.1005580890291001 -0.9698016599802893 0.2221999348116262 0.1005580890291001 0.9698016599802893 -0.2221999348116262 0.1176512528335321 0.9707395559761901 -0.209339191671912 0.1058191295169145 0.9701374026818134 -0.2182561150255999 -0.08585473045780438 -0.2416308289560064 0.9665627283089551 -0.09548416722338041 -0.2496875094316789 0.9636072443913355 -0.09416004869071552 -0.2485813326810608 0.9640234469519244 0.09416004869071552 0.2485813326810608 -0.9640234469519244 0.09548416722338041 0.2496875094316789 -0.9636072443913355 0.08585473045780438 0.2416308289560064 -0.9665627283089551 -0.1032242823055442 -0.256142923912011 0.9611116220670267 0.1032242823055442 0.256142923912011 -0.9611116220670267 -0.09649147165714225 0.5077129698964091 0.8561056804486271 0.09649147165714225 -0.5077129698964091 -0.8561056804486271 -0.1131851789208752 0.9773627740502681 -0.1787487711102216 0.1131851789208752 -0.9773627740502681 0.1787487711102216 -0.1315202965520038 0.349049637920842 -0.9278290585351389 0.1315202965520038 -0.349049637920842 0.9278290585351389 -0.1057405989715317 -0.6785643004438799 -0.7268902364815817 0.1057405989715317 0.6785643004438799 0.7268902364815817 -0.08943516453163014 -0.968954655637462 0.2304956109423514 0.08943516453163014 0.968954655637462 -0.2304956109423514</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID926\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID924\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID927\">-4.51102072099726 1.290001193398601 -4.163760809506149 1.448324091080901 -4.43604104310682 0.9826730704162471 -4.037474306459234 0.861597233214203 -3.832275540913754 1.38313464652574 -3.745473328734743 1.066488851161099 3.48126989775373 -2.661916721724257 3.406816483430799 -2.972177582241644 3.171026590337021 -2.606554836662415 3.986386895219333 1.997404066098809 3.994159350684655 1.684526607744221 3.668382965150461 2.008969601292834 2.500220450372008 4.580014812517327 2.648891197907055 4.264915060407883 2.195936011940815 4.503074526773451 -5.196643413251278 -1.19861087185011 -5.138103206570871 -0.8942667761061519 -4.885016970408737 -1.255419445917819 -4.577487831674194 1.559607900813885 -4.89624123966273 1.566454220558648 -4.90668503084679 1.890274882143592 -5.502753935253568 1.960405471812763 -5.613737620860929 2.214624445873762 -5.196980618279403 2.02817604302201 -5.28394018282753 1.881208739224467 -5.709881774726242 2.054336581082488 -5.419548725810715 2.156634437970546 3.557132004722975 -2.881032731401244 3.240017181379571 -2.859050560085873 3.310138597047183 -2.520016467100998 3.938085392640403 1.658921497886375 3.620759139691174 1.628873567018144 3.611445236497108 1.98282659750306 2.320203332516909 4.476851663613845 2.766926089553627 4.231515357916557 2.474798949672067 4.128983753580942 -4.732582976568755 -1.343547542461741 -5.001424279837343 -0.9895101278624701 -4.68279295752764 -0.9992583488947533 -4.484848678126927 1.630913117934281 -4.811397957767102 1.963200932487673 -4.494532730293797 1.981060250884132</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"42\" source=\"#ID927\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID923\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID921\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID922\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID923\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID924\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 26 33 25 34 54 35 55 35 28 34 27 33 32 36 31 37 56 38 57 38 34 37 33 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID928\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID929\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID933\">-0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID933\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID930\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID934\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6729842940505703 0.1624422630054802 0.7215986773483681 -0.6631750828133616 0.3731148991519088 0.6488328610407705 -0.6659834446608215 0.3807686437826488 0.6414680750821734 0.6659834446608215 -0.3807686437826488 -0.6414680750821734 0.6631750828133616 -0.3731148991519088 -0.6488328610407705 0.6729842940505703 -0.1624422630054802 -0.7215986773483681 -0.6113335516860552 0.4667959055536873 0.6390405864585023 -0.6145137989325163 0.4655985671337754 0.6368600829102905 0.6145137989325163 -0.4655985671337754 -0.6368600829102905 0.6113335516860552 -0.4667959055536873 -0.6390405864585023 -0.6144500916695223 -0.7444263356970634 -0.2613054066948456 -0.6112712807697465 -0.7468583700018094 -0.2618205424796805 -0.6629988808447853 -0.7286899444755632 -0.1715909345471451 0.6629988808447853 0.7286899444755632 0.1715909345471451 0.6112712807697465 0.7468583700018094 0.2618205424796805 0.6144500916695223 0.7444263356970634 0.2613054066948456 -0.6658161315575506 -0.7238380484211855 -0.180962312693964 -0.6729924006868499 -0.7380291832850042 0.04893008519735241 0.6729924006868499 0.7380291832850042 -0.04893008519735241 0.6658161315575506 0.7238380484211855 0.180962312693964 -0.6701345713609732 -0.7408307531705968 0.04571051764672113 -0.6289565476282814 -0.7476459025257273 0.2131648789833918 0.6289565476282814 0.7476459025257273 -0.2131648789833918 0.6701345713609732 0.7408307531705968 -0.04571051764672113 -0.6253103361580007 -0.5580893712997171 0.545456906763728 -0.6194244385915946 -0.5603481644919415 0.5498393396493199 -0.6586335051836426 -0.4503276787562835 0.602832387646422 0.6586335051836426 0.4503276787562835 -0.602832387646422 0.6194244385915946 0.5603481644919415 -0.5498393396493199 0.6253103361580007 0.5580893712997171 -0.545456906763728 -0.6193457640666231 -0.3683472929438279 0.6933477455892423 -0.6252441215267333 -0.3647786176751771 0.6899321333169304 0.6252441215267333 0.3647786176751771 -0.6899321333169304 0.6193457640666231 0.3683472929438279 -0.6933477455892423 -0.6289128458978669 0.007652928515795015 0.7774381422015375 -0.6701201336408642 0.1663084455640048 0.7233813015438224 0.6701201336408642 -0.1663084455640048 -0.7233813015438224 0.6289128458978669 -0.007652928515795015 -0.7774381422015375 -0.622078851308744 -0.7522767596266303 0.2170197679476473 0.622078851308744 0.7522767596266303 -0.2170197679476473 -0.6633240955833247 -0.4478538037142369 0.5995232395139108 0.6633240955833247 0.4478538037142369 -0.5995232395139108 -0.6220261755595516 0.005266994658404282 0.7829787325885845 0.6220261755595516 -0.005266994658404282 -0.7829787325885845</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID934\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID932\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID935\">-5.438809568305453 -9.482737238346916 -4.541160899478318 -7.445155913627095 -5.145381836570095 -9.567177416708539 -4.190221839946828 -7.423786392543641 -4.338167595264546 -6.491496952334127 -4.22725624399334 -5.808877949883205 -4.020489550882155 -6.418076771645296 -10.25054723218782 -6.567089824067745 -7.923492667272267 -5.229891230022745 -10.06436935037758 -6.764499303685906 -7.849986300628801 -5.500677176589291 -6.745726004323971 -4.816560978528544 -6.74510123625174 -5.077039638609257 -6.05632672639457 -5.091645344449993 -5.944453442550639 -4.799730893098601 -5.184941219754366 -5.408638486833185 -4.986782358868105 -5.199964448886369 -4.55134529488531 -5.976060559444166 -4.269678334633769 -7.17228634502103 -5.336475990643389 -7.742358147485223 -5.505193325159312 -7.604034168790181 -3.661673248818458 -8.175413593687873 -5.511200601136377 -9.91390228982233 -5.689347174156868 -9.800731856029373 -6.397152300006442 -9.528426778102082 -6.619985055648084 -9.486958521750623 -6.015019925488002 -7.266096214065682 -5.79271183303645 -7.457467891379393 -6.028516018800286 -7.409110337784746 -5.916495195503265 -6.398410337512396 -5.673245435811727 -6.290409739551873 -5.918451089773818 -6.293838969348061 -6.058299012606727 -5.672970773922897 -5.831542273483992 -4.949930903754136 -6.048613951193245 -5.018529849581411 -6.611867500289026 -4.289528229207675 -6.506198159929273 -4.392862628766582 -7.32929965042728 -3.837447967747981 -7.208078507396563 -3.680070861867471 -5.811153776812445 -5.845724523787836 -6.612063954614971 -5.871073215402708 -6.660239379493177 -5.681909366053281 -4.387052615037615 -7.827415091763079 -4.202315597411297 -7.952433032619871 -6.31321530276293 -9.510799849948398 -4.446445643616539 -6.970949011293415 -4.332306682772676 -7.141703510882534 -5.571264021655384 -7.567302934022142 -5.799661110009105 -7.240732120036159 -6.473568664496056 -9.447001600170312 -6.035007605903449 -7.19101390246045 -5.796727443660892 -7.448951623798941 -5.918247615980235 -6.389731880133182 -5.673040901826159 -6.386349889532563 -5.664342994491257 -6.207430836053704 -6.041028142086967 -5.586805558446977 -5.819314759100421 -5.528107959488318 -6.42137595324032 -4.391696199990871 -5.81103562343381 -5.155932387550443 -6.610934274938454 -4.510184301514173 -5.87571544118804 -5.509489278649395 -5.907464823598496 -5.691800534694194 -6.752987524416816 -5.516952551322585 -6.431552494877005 -4.672209874291356 -7.16680172405666 -3.98054871024504 -6.262434736188439 -4.53591418972004</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID935\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID931\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID929\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID930\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"64\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID931\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID932\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 6 6 3 3 5 5 7 7 8 8 9 9 9 9 8 8 10 10 8 8 11 11 10 10 10 10 11 11 12 12 12 12 11 11 13 13 11 11 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 5 5 17 17 4 4 17 17 5 5 18 5 19 17 20 4 19 17 18 5 21 16 19 17 21 16 22 15 22 15 21 16 23 14 22 15 23 14 24 13 24 13 23 14 25 11 24 13 25 11 26 12 26 12 25 11 27 10 27 10 25 11 28 8 27 10 28 8 29 9 29 9 28 8 30 7 18 5 31 3 32 6 31 3 18 5 20 4 31 3 20 4 33 1 31 3 33 1 34 2 34 2 33 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 37 21 42 22 43 23 44 23 45 22 40 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 48 28 53 29 54 29 49 28 55 27 56 30 53 31 57 32 58 32 54 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 62 36 66 37 67 38 68 38 69 37 63 36 70 39 36 40 71 41 72 41 41 40 73 39 38 42 37 43 43 44 44 44 40 43 39 42 71 45 36 46 38 47 39 47 41 46 72 45 52 48 46 49 48 50 49 50 51 49 55 48 52 51 53 52 56 53 59 53 54 52 55 51 56 54 57 55 74 56 75 56 58 55 59 54 76 57 60 58 62 59 63 59 65 58 77 57 78 60 70 61 71 62 72 62 73 61 79 60 62 63 67 64 76 65 77 65 68 64 63 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID936\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID937\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID941\">-0.5150356702529333 0.418747608939894 -1.245344265937886 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID941\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID938\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID942\">-0.115277788968267 0.9330479626690824 0.3407822335886396 -0.1164463359679276 0.9328196483828717 0.3410099037132209 -0.1088396993734213 0.9391143652329044 0.3259112284863811 0.1088396993734213 -0.9391143652329044 -0.3259112284863811 0.1164463359679276 -0.9328196483828717 -0.3410099037132209 0.115277788968267 -0.9330479626690824 -0.3407822335886396 -0.110822325248955 0.938063640003709 0.3282605969796052 0.110822325248955 -0.938063640003709 -0.3282605969796052 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1169850955608708 0.9419046119998733 0.3148494708745472 0.1169850955608708 -0.9419046119998733 -0.3148494708745472 -0.5145250095588039 0.8558675183312584 0.05248624204499802 -0.4971810650748229 0.8663223338632058 0.04792287951357918 -0.5580107354442373 0.8289599112591531 0.03807209810606934 0.5580107354442373 -0.8289599112591531 -0.03807209810606934 0.4971810650748229 -0.8663223338632058 -0.04792287951357918 0.5145250095588039 -0.8558675183312584 -0.05248624204499802 -0.5582784877518608 0.8289230506726751 0.03480957019271046 -0.545158170653844 0.8382267271768401 0.01336124304687095 0.545158170653844 -0.8382267271768401 -0.01336124304687095 0.5582784877518608 -0.8289230506726751 -0.03480957019271046 -0.1365860819270675 0.9570595346721975 0.2556976521535723 -0.1321549003024238 0.9557169747171905 0.2629451398361978 -0.1318695905464307 0.9596171302456248 0.2484861654665474 0.1318695905464307 -0.9596171302456248 -0.2484861654665474 0.1321549003024238 -0.9557169747171905 -0.2629451398361978 0.1365860819270675 -0.9570595346721975 -0.2556976521535723 -0.1269044865420529 0.9532261396277257 0.2743267723462684 -0.1289657532660433 0.9574337946917685 0.2582409016144471 0.1289657532660433 -0.9574337946917685 -0.2582409016144471 0.1269044865420529 -0.9532261396277257 -0.2743267723462684 -0.1260690186249341 0.9534847853620122 0.2738126487693791 -0.1240825368586034 0.9470375050500011 0.2961815120418608 -0.1256954876265769 0.946399129432289 0.2975387910846624 0.1240825368586034 -0.9470375050500011 -0.2961815120418608 0.1256954876265769 -0.946399129432289 -0.2975387910846624 0.1260690186249341 -0.9534847853620122 -0.2738126487693791 -0.1211441855015404 0.9401500394776983 0.3184995911916539 0.1211441855015404 -0.9401500394776983 -0.3184995911916539 -0.6307694948426644 0.7463033893518946 0.2125114006772442 -0.6328306015520273 0.7446519113729666 0.2121767202779013 -0.5536072311495947 0.7950907964196508 0.2476886333032765 0.5536072311495947 -0.7950907964196508 -0.2476886333032765 0.6328306015520273 -0.7446519113729666 -0.2121767202779013 0.6307694948426644 -0.7463033893518946 -0.2125114006772442 -0.5497408771862887 0.7964870254649378 0.2517804325527812 -0.5039674104246305 0.8086833501771441 0.3033942787465886 0.5039674104246305 -0.8086833501771441 -0.3033942787465886 0.5497408771862887 -0.7964870254649378 -0.2517804325527812 -0.49850465150458 0.8115072862067282 0.3048754448322932 -0.4609956099973669 0.7886395059681967 0.4068547372089872 0.4609956099973669 -0.7886395059681967 -0.4068547372089872 0.49850465150458 -0.8115072862067282 -0.3048754448322932 -0.4573880925719646 0.794515332784318 0.399426487283961 -0.4569339343695998 0.6598239237892639 0.5965264195464085 0.4569339343695998 -0.6598239237892639 -0.5965264195464085 0.4573880925719646 -0.794515332784318 -0.399426487283961 -0.4542025713545716 0.645235326881341 0.6143056219173191 -0.4287005991166544 0.541309811422194 0.7233252963743838 0.4287005991166544 -0.541309811422194 -0.7233252963743838 0.4542025713545716 -0.645235326881341 -0.6143056219173191 -0.3523470247597167 0.9358104485918809 0.01050611484984737 -0.3063228392035632 0.9519258992836576 -0.001844032339199885 0.3063228392035632 -0.9519258992836576 0.001844032339199885 0.3523470247597167 -0.9358104485918809 -0.01050611484984737 -0.5412614551618135 0.8407681758003589 0.01203792828742119 0.5412614551618135 -0.8407681758003589 -0.01203792828742119 -0.4272410976619026 0.5422294182526325 0.7235000362474522 0.4272410976619026 -0.5422294182526325 -0.7235000362474522</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID942\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID940\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID943\">4.591982473100826 -10.49532155130045 3.596381102692845 -10.48973263072317 3.76825062863832 -7.313630254900839 4.788649302747732 -7.361376930524428 4.631787065582489 -10.48471036339275 3.796584343130128 -7.304870234576655 -0.7853905368619629 -4.383741487515724 -0.7842970050049303 -4.827816971326995 -1.146439087214903 -5.03998101979383 -4.18747608939894 -9.796708225378035 -2.830459374017382 -6.858879041460048 -3.334680812059787 -9.988933491671299 -2.433741973391066 -5.946419099073036 -2.261771182375565 -7.026766978130183 -2.160556126454998 -5.312462941343926 -1.883282441546899 -6.176047377569198 -1.75673311539269 -4.219410608791835 -1.55270259855911 -5.546970027708173 -1.390357703847656 -3.215229491993068 -1.233424149184261 -2.753147786843712 -0.7088761597558091 -3.338546544481618 -0.694556993678912 -2.849561690363584 4.796023997542307 -7.350374402013268 3.803908500346693 -7.294419494786282 3.846359672297336 -6.358789390875086 4.189805728167312 -4.506856094946615 4.017070421792077 -4.507227523838949 4.056342725136757 -3.460756783488558 4.041586134627782 -3.375623115899968 3.862151086380763 -3.39010326253353 3.870196798047121 -2.901029633565524 4.924433338735429 -3.053604799231155 4.902261330893889 -3.531575789521651 3.928024266704107 -3.013988383563838 4.914626931451051 -3.539105977826516 4.865011689683587 -4.583100420342436 3.919683204120139 -3.486961206510021 3.879494827284836 -4.562583285591289 4.875488640555209 -4.580879223037842 3.826540600621813 -5.700099691054323 4.822529489921589 -5.718396071753157 4.819555400866464 -5.742979411248102 4.783442973528894 -6.411767901669563 3.823573876076065 -5.724436591786642 4.801955210030906 -6.405668232595182 4.751878529572747 -7.369217884205696 3.807368354643659 -6.37459105667303 1.957060357039899 -10.75365200785607 1.765124464725816 -10.7423214537102 2.459913955440844 -7.711138893628805 3.112360206094057 -7.803950315529296 2.933665600069839 -7.795972115472037 3.149980037999058 -6.910862697284486 3.538235007196647 -6.973994288736734 3.368556206581121 -6.954419143262834 3.543814988888633 -6.287816333452746 3.730204477851461 -6.425917052375335 3.571658995865501 -6.383955407013207 3.78465959479941 -5.80854108379769 3.450220969145402 -5.87097057055601 3.291859972225696 -5.827754909589918 3.519029084241668 -5.520774225638371 4.81826881172313 -4.865116337961796 4.662517777683195 -4.824437088967236 4.662182803330457 -4.380360850124628 4.169439869693115 -5.006811491088558 4.017124258375433 -4.521314350847296 4.189859564349691 -4.520942806572722 4.004600561683029 -4.529075056857496 3.874875918312202 -3.482684764307377 4.054308477449268 -3.46818554239393 4.13083736103226 -2.887771090306144 4.12622640779107 -3.355828234508149 3.954605625143068 -2.881286514067027 4.918885407229313 -3.514893431760281 3.923906485213045 -3.463165909205145 3.943337637863319 -2.998836062633428 4.875812890540187 -4.576456053667682 3.879818224823473 -4.558188850263479 3.928797703118019 -3.481218209051338 4.803189826014569 -6.40130696790807 3.808597935928527 -6.370329666730073 3.841555000386308 -5.715504750840945 3.127530081582867 -7.698959191979644 2.529718595190085 -10.74144726110512 2.948827516519374 -7.691092086442025 3.575179329102383 -6.890866213050533 3.386085399216066 -7.765086638555999 3.405436347186381 -6.871638496491231 3.947379466551694 -6.267623306827016 3.799988017323743 -6.914572938978153 3.787685574673548 -6.22844919458952 3.926023634899166 -5.850225398106103 3.707505967984392 -6.43359348176798 3.764036350977447 -5.816332960126295 3.706070434976303 -5.556515053892731 3.494701207686569 -5.848193276457293 3.560052651719282 -5.497587420403937</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID943\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID939\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID937\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID938\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID939\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID940\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 8 6 9 7 10 8 11 9 12 10 13 11 12 10 14 12 13 11 13 11 14 12 15 13 14 12 16 14 15 13 15 13 16 14 17 15 16 14 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 20 18 21 19 19 17 19 17 21 19 10 8 10 8 21 19 8 6 8 6 21 19 22 20 23 21 22 20 21 19 24 19 25 20 26 21 25 20 24 19 27 6 27 6 24 19 28 8 28 8 24 19 29 17 29 17 24 19 30 18 29 17 30 18 31 16 29 17 31 16 32 15 32 15 31 16 33 14 32 15 33 14 34 13 34 13 33 14 35 12 34 13 35 12 36 11 36 11 35 12 37 10 36 11 37 10 38 9 28 8 39 7 27 6 6 22 2 23 40 24 41 24 3 23 7 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 44 29 49 30 50 30 45 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 58 38 63 39 64 40 63 39 58 38 61 38 65 39 66 40 65 39 61 38 67 37 64 41 68 42 63 43 65 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 72 51 77 52 78 52 73 51 79 50 80 53 77 54 81 55 82 55 78 54 83 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 92 62 93 63 43 64 46 64 94 63 95 62 92 65 43 66 42 67 47 67 46 66 95 65 42 68 44 69 48 70 51 70 45 69 47 68 96 71 48 72 49 73 50 73 51 72 97 71 53 74 59 75 54 76 55 76 60 75 56 74 58 77 62 78 59 79 60 79 67 78 61 77 68 80 40 81 63 82 65 82 41 81 69 80 76 83 70 84 72 85 73 85 75 84 79 83 80 86 76 87 77 88 78 88 79 87 83 86 84 89 80 90 81 91 82 91 83 90 87 89 88 92 84 93 85 94 86 94 87 93 91 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID944\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID945\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID949\">-0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID949\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID946\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID950\">-0.1152454256731035 -0.591455387657384 -0.7980595317847402 -0.10882822046992 -0.5789017034806163 -0.8081022436156152 -0.1164097430468417 -0.5916084081534543 -0.7977770760844811 0.1164097430468417 0.5916084081534543 0.7977770760844811 0.10882822046992 0.5789017034806163 0.8081022436156152 0.1152454256731035 0.591455387657384 0.7980595317847402 -0.1108221458520233 -0.5808630075720961 -0.8064221093342195 0.1108221458520233 0.5808630075720961 0.8064221093342195 -0.1170077107804017 -0.5691015957689537 -0.8138996064080387 0.1170077107804017 0.5691015957689537 0.8138996064080387 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211696670977339 -0.5721039063745667 -0.8111812572331694 0.1211696670977339 0.5721039063745667 0.8111812572331694 -0.1268981050915295 -0.533447946261532 -0.8362596244908234 -0.1321663082555465 -0.5232428882080906 -0.8418722865742495 -0.1289674607165914 -0.5192099234538959 -0.844860017673528 0.1289674607165914 0.5192099234538959 0.844860017673528 0.1321663082555465 0.5232428882080906 0.8418722865742495 0.1268981050915295 0.533447946261532 0.8362596244908234 -0.1366069441971335 -0.5166761365997606 -0.8452125843037756 -0.1318813258933644 -0.5104743797675104 -0.8497194969409517 0.1318813258933644 0.5104743797675104 0.8497194969409517 0.1366069441971335 0.5166761365997606 0.8452125843037756 -0.5582991414998946 -0.2685090417213844 -0.7849872375487035 -0.5451296895268838 -0.2505730592629967 -0.8000292266960662 -0.558031261867371 -0.2716463664879751 -0.78409780152261 0.558031261867371 0.2716463664879751 0.78409780152261 0.5451296895268838 0.2505730592629967 0.8000292266960662 0.5582991414998946 0.2685090417213844 0.7849872375487035 -0.497052555982873 -0.2917024651576237 -0.8172199388242178 -0.5143888624622276 -0.293110942014941 -0.8059094700063585 0.5143888624622276 0.293110942014941 0.8059094700063585 0.497052555982873 0.2917024651576237 0.8172199388242178 -0.306415783897025 -0.2682897565392926 -0.9133071629604461 -0.3523806686222084 -0.2755513168992308 -0.8943709164191694 0.3523806686222084 0.2755513168992308 0.8943709164191694 0.306415783897025 0.2682897565392926 0.9133071629604461 -0.456893286178551 -0.7592058438957603 -0.4635245534375617 -0.4541605104685136 -0.7721228532482589 -0.4444823171091813 -0.4286828954205195 -0.847176126038426 -0.3138846709293164 0.4286828954205195 0.847176126038426 0.3138846709293164 0.4541605104685136 0.7721228532482589 0.4444823171091813 0.456893286178551 0.7592058438957603 0.4635245534375617 -0.4610282434667641 -0.6138335702605229 -0.6408286094949022 -0.4574134951468932 -0.6083801890432725 -0.6485726173969845 0.4574134951468932 0.6083801890432725 0.6485726173969845 0.4610282434667641 0.6138335702605229 0.6408286094949022 -0.5040410792207913 -0.5203001144828611 -0.6893695535248579 -0.4985789755177557 -0.522521104138984 -0.69165793633923 0.4985789755177557 0.522521104138984 0.69165793633923 0.5040410792207913 0.5203001144828611 0.6893695535248579 -0.5497531637915774 -0.4673687586348154 -0.6923423303202705 -0.5536165038480039 -0.4630501931675085 -0.6921656487248167 0.5536165038480039 0.4630501931675085 0.6921656487248167 0.5497531637915774 0.4673687586348154 0.6923423303202705 -0.6307873335127643 -0.4154716222280389 -0.6553553776410614 -0.6328486545725545 -0.4146821088617343 -0.6538664458401979 0.6328486545725545 0.4146821088617343 0.6538664458401979 0.6307873335127643 0.4154716222280389 0.6553553776410614 -0.1256979469617381 -0.5537729312787706 -0.823125486613385 -0.1240913043504173 -0.5526586540230366 -0.8241175646217339 0.1240913043504173 0.5526586540230366 0.8241175646217339 0.1256979469617381 0.5537729312787706 0.823125486613385 -0.1260575905833764 -0.5330255257953374 -0.8366560061978389 0.1260575905833764 0.5330255257953374 0.8366560061978389 -0.5412201697451934 -0.2500231718377586 -0.8028506345548783 0.5412201697451934 0.2500231718377586 0.8028506345548783 -0.4272344532522728 -0.8476012840976981 -0.3147106371735229 0.4272344532522728 0.8476012840976981 0.3147106371735229</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID950\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID948\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID951\">-7.138963213337921 -9.590815887125158 -5.534782427677182 -6.599055031610398 -6.161466385372765 -9.739583828584451 -7.020912501436172 -9.64477766665155 -6.442251176197418 -6.552312786454574 -5.453974869115332 -6.64082692448904 -5.491014958906135 -6.614316476552948 -6.478772582362814 -6.522289149874103 -5.308720537271718 -5.689141638149316 -11.2782606739596 -5.320825261743578 -7.9717957997741 -3.671216674709287 -10.80202970911157 -5.90961685543797 -7.605823633967948 -4.052573869433889 -7.042161934252819 -3.144381333275127 -6.606115120661046 -3.494493541298796 -6.369100491594986 -2.716571791351699 -5.910816590358083 -3.108575940139804 -5.866347671529796 -2.26628703653867 -5.710456022755999 -1.932931811574967 -5.168852690973136 -1.807773613133746 -4.692973909088815 -2.493915854454659 -3.916435254479966 -1.453588938535106 -3.572826706871928 -1.932684592651026 -3.324449483955088 -1.304083515806536 -3.054065519073461 -1.683218989209923 -6.591891121267537 -6.452906138227753 -6.388217779204394 -5.501977139414676 -5.406867405753555 -5.632958163486499 -6.117810543867646 -3.561478629224226 -5.851698291102253 -2.537936179978868 -4.869366170504851 -2.672663225915323 -5.892517064855022 -2.454203569649013 -5.759915324541431 -1.987415610829698 -4.783295469245281 -2.147838056814312 -5.7562003319981 1.149012728635336 -5.145451942425918 1.261211835115473 -5.685275317190505 1.018545122632574 -7.036424047085478 0.1630502095845917 -7.130976261011481 0.2767553873179948 -5.946862418828762 0.7642798521704014 -7.689126942260445 -0.7059138880145554 -7.834279527146465 -0.6456774898488107 -7.281644872447997 -0.3986048403960985 -7.259177835029453 -2.856584011353963 -7.416547296366069 -2.811190375613943 -7.188071436753713 -2.505819076414183 -7.861456431581737 -3.261559665315641 -8.018917079536788 -3.217136703021234 -7.575012072795065 -2.706222549244504 -8.557885289507643 -3.223633364054006 -8.698178247785402 -3.146031785827807 -8.102290839309255 -2.644916224219954 -9.506351967249945 -3.371429820198309 -8.684971497927776 -2.754199168926557 -9.379701635931678 -3.470919080308647 -12.37770881846667 -4.872005277182687 -9.490624175621949 -2.809199905568493 -12.25623907044876 -4.989462679559276 -6.444857026542284 -5.458380516152987 -6.296049610050064 -4.799287875721132 -5.318589154545419 -4.950828734137319 -5.113185334491933 -3.759627421801614 -5.392057858255205 -4.876556620212218 -6.08813702729078 -3.598391158750079 -6.367006455932359 -4.715312852682593 -5.422269957287876 -5.619952481288294 -6.403242112042205 -5.487229736398297 -5.281056882911339 -4.974112230283341 -5.121764907583199 -3.747570384158296 -6.096300623064521 -3.58478531167352 -4.853940277352765 -2.690709885832792 -5.873559466293838 -2.478965772395742 -4.767264819600784 -2.166119404674233 -4.892686598708286 -2.620119059241625 -7.042920849049135 0.3363783258394972 -5.917332136334101 0.9220098715437491 -5.839645049230055 0.7939477636360648 -5.787526407421514 1.179018042887779 -5.271800528567625 1.412461230707683 -5.177910156173502 1.294964790723312 -7.650128474823353 -0.0521237149128579 -7.147894061445859 0.2311284178204125 -7.052366363064595 0.117928942085436 -7.169448987281526 -2.523237030315316 -7.397103799309265 -2.828987567036165 -7.330237832350131 -2.497391177424061 -7.584247127016653 -2.689362640162711 -8.030026041788469 -3.199266105371076 -7.737670076202681 -2.636262514374005 -8.584674860058595 -3.385887706682498 -8.170034062009835 -2.815279621232072 -8.015596352434937 -2.86584519018703 -9.418099806598537 -3.589866553505813 -8.7639835389675 -2.867638261066807 -8.626894580693087 -2.948706082022819 -12.16085591726943 -5.324233997524462 -9.566235995890917 -3.01950100195389 -9.444421399327453 -3.12265942849865</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID951\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID947\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID945\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID946\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID947\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID948\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 1 6 6 7 8 8 9 8 7 7 4 6 10 9 11 10 12 11 12 11 11 10 13 12 11 10 14 13 13 12 13 12 14 13 15 14 14 13 16 15 15 14 15 14 16 15 17 16 16 15 18 17 17 16 18 17 19 18 17 16 19 18 20 19 17 16 17 16 20 19 21 20 20 19 22 21 21 20 21 20 22 21 23 22 22 21 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 21 27 22 29 21 30 20 30 20 29 21 31 19 30 20 31 19 32 16 32 16 31 19 33 18 32 16 33 18 34 17 32 16 34 17 35 15 32 16 35 15 36 14 36 14 35 15 37 13 36 14 37 13 38 12 38 12 37 13 39 10 38 12 39 10 40 11 40 11 39 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 56 39 57 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 79 50 74 51 77 51 80 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 83 56 87 57 88 57 84 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 94 61 91 62 44 63 90 64 44 63 91 62 92 62 49 63 93 64 49 63 92 62 95 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 45 71 51 72 46 73 47 73 52 72 48 71 61 74 54 75 56 76 57 76 59 75 62 74 54 77 96 78 55 79 58 79 97 78 59 77 65 80 61 81 60 82 63 82 62 81 66 80 70 83 69 84 98 85 99 85 72 84 71 83 68 86 75 87 69 88 72 88 76 87 73 86 79 89 75 90 74 91 77 91 76 90 80 89 82 92 79 93 78 94 81 94 80 93 85 92 86 95 82 96 83 97 84 97 85 96 89 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID952\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID953\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID957\">-0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID957\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID954\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID958\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6630305151580132 0.7299655905773456 -0.1659541278256337 -0.6658436797422771 0.7251760043223742 -0.1754193743641215 -0.6729884580762607 0.7375072073159738 0.05629968430755275 0.6729884580762607 -0.7375072073159738 -0.05629968430755275 0.6658436797422771 -0.7251760043223742 0.1754193743641215 0.6630305151580132 -0.7299655905773456 0.1659541278256337 -0.6113107337789397 0.7482110703485606 -0.2578359574894776 -0.6144800241452068 0.7457833801420833 -0.257335286795953 0.6144800241452068 -0.7457833801420833 0.257335286795953 0.6113107337789397 -0.7482110703485606 0.2578359574894776 -0.6112832145498026 -0.4707347038740193 0.6361931076161541 -0.6630446878927789 -0.3784166032630609 0.645889012317143 -0.6144572319660114 -0.469525830568726 0.6340250819276909 0.6144572319660114 0.469525830568726 -0.6340250819276909 0.6630446878927789 0.3784166032630609 -0.645889012317143 0.6112832145498026 0.4707347038740193 -0.6361931076161541 -0.6729915547513984 -0.1696569719422396 0.71992977373122 -0.6658562154288208 -0.3859655043248172 0.6384873764187492 0.6658562154288208 0.3859655043248172 -0.6384873764187492 0.6729915547513984 0.1696569719422396 -0.71992977373122 -0.6289091309737778 -0.01542730369521124 0.7773257382066434 -0.6701267456751917 -0.1735325142790268 0.72167625097323 0.6701267456751917 0.1735325142790268 -0.72167625097323 0.6289091309737778 0.01542730369521124 -0.7773257382066434 -0.6193427745518753 0.3613913988662995 0.6970012800819265 -0.6586051859823896 0.4442906086005776 0.6073261595769036 -0.6252368259778801 0.3578597082949858 0.6935526949123143 0.6252368259778801 -0.3578597082949858 -0.6935526949123143 0.6586051859823896 -0.4442906086005776 -0.6073261595769036 0.6193427745518753 -0.3613913988662995 -0.6970012800819265 -0.6194223535536992 0.5548231614226238 0.5554162470319005 -0.6253034624160696 0.5526101220855131 0.5510150931318574 0.6253034624160696 -0.5526101220855131 -0.5510150931318574 0.6194223535536992 -0.5548231614226238 -0.5554162470319005 -0.67013650131323 0.7403345362785804 0.05312103162442063 -0.628982358135911 0.7454560785608687 0.2206273511839385 0.628982358135911 -0.7454560785608687 -0.2206273511839385 0.67013650131323 -0.7403345362785804 -0.05312103162442063 -0.6220189146899646 -0.01309573882381509 0.7828926946859175 0.6220189146899646 0.01309573882381509 -0.7828926946859175 -0.6632923012885572 0.441848588696277 0.6039976388351515 0.6632923012885572 -0.441848588696277 -0.6039976388351515 -0.6221076599331773 0.7500464868654583 0.2245268959239637 0.6221076599331773 -0.7500464868654583 -0.2245268959239637</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID958\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID956\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID959\">3.87764031107622 -6.480658898337778 4.092155780313024 -5.873100523294384 4.034559973661107 -7.487651576590498 4.194417247662015 -6.556555994075766 4.385226823545771 -7.511775063321221 4.975203874607814 -9.634970930132152 5.269730206931626 -9.552833993310438 4.414072035031004 -6.042836842313367 4.859378482153733 -5.270196480154701 5.05490498188978 -5.48043594259001 5.822099524111708 -4.877519494199655 5.930260994757609 -5.170298768740171 6.619185689247543 -5.161112975986945 6.623133292318746 -4.900658240318208 7.718649839306408 -5.593427100716775 7.795591679423524 -5.323227745288749 9.929583898964312 -6.871125386769826 10.11824808736943 -6.675185043266 5.925653000357565 -7.46826496498529 5.689472813873823 -7.515378658893742 5.822179128624093 -6.457005021127549 6.511257923774214 -9.533277001644295 6.288098685998339 -9.573629295500691 5.916109472248006 -7.310813277664289 5.366702388850225 -9.961973302364093 3.526461403957602 -8.209666149461569 5.546090981562797 -9.850025254076742 5.158417602448649 -7.80262028114791 4.100724298898611 -7.222142695431995 5.329292279186206 -7.665955408862323 6.437987728279937 -5.968028370914714 5.637638242695263 -5.933192605821058 6.489769452481003 -5.779453223070861 7.217578390551652 -3.945559541713974 6.386063448597975 -4.493172816030821 7.098762251858164 -3.787052743699775 6.517499784057383 -4.37952604699279 5.946010344400233 -5.104542875128599 5.729712477188441 -5.034440475430622 5.82171707979354 -6.36355039909147 5.576548159483153 -6.35877397416587 5.967022270105487 -5.74343876346228 6.355060939941811 -9.495860674564316 5.691826745769582 -7.287545814181028 5.927577537499342 -7.239119522850759 5.822211657743393 -6.448847275944787 5.691612126075604 -7.507383079612655 5.577040359522241 -6.444146991745441 4.251113033307034 -7.871692637448878 6.168526379568627 -9.569136817559707 4.064972331357362 -7.995403824306254 5.397026101555857 -7.63010449077775 4.164842777836451 -7.1925382682496 4.281639333974275 -7.022897481686874 6.578380074322135 -5.620264617403369 5.729387676422575 -5.784399080729091 5.701364756438144 -5.601711277529612 6.30564364571233 -4.770181180200111 6.13862237800544 -4.632304826311748 7.051363306255356 -4.085489202208199 5.955497993585017 -5.656571920937295 5.573646081394728 -6.275246632246977 5.734267381965052 -5.596749296751172 6.323365246363862 -4.479665053217046 6.511544613865906 -4.599494280401795 5.704254899531289 -5.239542710890913</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID959\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID955\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID953\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID954\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"64\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID955\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID956\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 6 6 5 5 4 4 3 3 1 1 7 7 1 1 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 11 11 10 10 12 12 10 10 13 13 12 12 12 12 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 17 17 16 16 15 15 18 15 19 16 20 17 19 16 18 15 21 14 21 14 18 15 22 13 21 14 22 13 23 12 23 12 22 13 24 10 23 12 24 10 25 11 25 11 24 10 26 9 26 9 24 10 27 8 26 9 27 8 28 7 28 7 27 8 29 1 28 7 29 1 30 3 31 4 32 5 33 6 32 5 31 4 34 2 34 2 31 4 30 3 34 2 30 3 29 1 34 2 29 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 36 23 41 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 47 27 52 28 53 29 54 29 55 28 50 27 52 30 56 31 57 32 58 32 59 31 55 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 38 39 70 40 71 41 72 41 73 40 39 39 43 42 37 43 36 44 41 44 40 43 44 42 38 45 37 46 70 47 73 47 40 46 39 45 53 48 48 49 47 50 50 50 49 49 54 48 53 51 52 52 57 53 58 53 55 52 54 51 57 54 56 55 74 56 75 56 59 55 58 54 61 57 76 58 62 59 63 59 77 58 64 57 71 60 70 61 78 62 79 62 73 61 72 60 76 63 61 64 67 65 68 65 64 64 77 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID960\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID961\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID965\">-0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID965\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID962\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID966\">-0.108837402926013 0.5869636604169701 -0.8022643461317676 -0.1152524072062661 0.5994041612018266 -0.792105759458354 -0.1164164008736633 0.5995543045607452 -0.7918218596946564 0.1164164008736633 -0.5995543045607452 0.7918218596946564 0.1152524072062661 -0.5994041612018266 0.792105759458354 0.108837402926013 -0.5869636604169701 0.8022643461317676 -0.1108295971226472 0.5889064001271712 -0.8005660824010021 0.1108295971226472 -0.5889064001271712 0.8005660824010021 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.117010717209138 0.5772025840593379 -0.8081742813362881 0.117010717209138 -0.5772025840593379 0.8081742813362881 -0.5145432086037881 0.301138149130455 -0.8028456275137845 -0.4972069966061667 0.2998409485598932 -0.8141748019268212 -0.55805116068878 0.2794674820048999 -0.7813301661626451 0.55805116068878 -0.2794674820048999 0.7813301661626451 0.4972069966061667 -0.2998409485598932 0.8141748019268212 0.5145432086037881 -0.301138149130455 0.8028456275137845 -0.5451735392333464 0.2585521366823797 -0.7974563340627268 -0.5583170886261052 0.2763353231468237 -0.7822536786295161 0.5583170886261052 -0.2763353231468237 0.7822536786295161 0.5451735392333464 -0.2585521366823797 0.7974563340627268 -0.1366137379887484 0.525105648062938 -0.8400004434315159 -0.1321751191906274 0.5316379949383054 -0.8365947526759427 -0.1318899009461685 0.5189517552672971 -0.8445674216623568 0.1318899009461685 -0.5189517552672971 0.8445674216623568 0.1321751191906274 -0.5316379949383054 0.8365947526759427 0.1366137379887484 -0.525105648062938 0.8400004434315159 -0.1269133562014147 0.541783060402261 -0.8308815291477196 -0.1289772731066859 0.5276362262001799 -0.8396218647839013 0.1289772731066859 -0.5276362262001799 0.8396218647839013 0.1269133562014147 -0.541783060402261 0.8308815291477196 -0.1241088849423676 0.5608577831136058 -0.8185569814003505 -0.1260730475475516 0.541364594212308 -0.8312821198699127 -0.1257237932527103 0.5619705390732921 -0.8175467210036521 0.1260730475475516 -0.541364594212308 0.8312821198699127 0.1257237932527103 -0.5619705390732921 0.8175467210036521 0.1241088849423676 -0.5608577831136058 0.8185569814003505 -0.1211792230471033 0.5801840317827792 -0.8054204399976321 0.1211792230471033 -0.5801840317827792 0.8054204399976321 -0.5535170558317795 0.4699781182489695 -0.6875604971713225 -0.630745177755128 0.4220252385451681 -0.6511952232391957 -0.6328077900805511 0.4212204572764466 -0.6497134962313701 0.6328077900805511 -0.4212204572764466 0.6497134962313701 0.630745177755128 -0.4220252385451681 0.6511952232391957 0.5535170558317795 -0.4699781182489695 0.6875604971713225 -0.5040577082147066 0.5271615428562393 -0.6841246483812488 -0.5496579690091841 0.4742995180535889 -0.6876889444209731 0.5496579690091841 -0.4742995180535889 0.6876889444209731 0.5040577082147066 -0.5271615428562393 0.6841246483812488 -0.4986083373847545 0.5294053531974816 -0.6863815978712283 -0.4611603796146424 0.6201725230534618 -0.6345999889089049 0.4611603796146424 -0.6201725230534618 0.6345999889089049 0.4986083373847545 -0.5294053531974816 0.6863815978712283 -0.4575413346766589 0.6147893824288844 -0.6424094818065907 -0.4569158452101462 0.7637801850174524 -0.4559251466749819 0.4569158452101462 -0.7637801850174524 0.4559251466749819 0.4575413346766589 -0.6147893824288844 0.6424094818065907 -0.4541857773435357 0.7765036889450471 -0.4367577139714671 -0.4287765424434085 0.8502341030875822 -0.3053729631076245 0.4287765424434085 -0.8502341030875822 0.3053729631076245 0.4541857773435357 -0.7765036889450471 0.4367577139714671 -0.3524563901464338 0.2844550069979994 -0.8915491248600456 -0.3064595936731795 0.2773796356690582 -0.9105729268772327 0.3064595936731795 -0.2773796356690582 0.9105729268772327 0.3524563901464338 -0.2844550069979994 0.8915491248600456 -0.5412696949613353 0.2580312515619297 -0.8002793203212533 0.5412696949613353 -0.2580312515619297 0.8002793203212533 -0.427351177790763 0.8506607779687953 -0.3061816644842928 0.427351177790763 -0.8506607779687953 0.3061816644842928</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID966\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID964\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID967\">5.499103420584213 -6.600182416334707 7.091288569950677 -9.595896339223589 6.113201900217518 -9.742250853991777 6.408896219694804 -6.554535211264102 6.975901634042057 -9.648330521578423 5.420290547408211 -6.640748761512123 2.984224971584125 -1.734949918247632 3.259391378364231 -1.357956861170158 3.499790042667428 -1.988486954492802 3.849480692439346 -1.51211513898687 4.612728757974727 -2.558494340414665 5.097247661780172 -1.876136291272333 5.637283441458915 -2.005547866194009 5.788941760897649 -2.3401120123712 5.822719035721721 -3.182704696932027 6.285949643299203 -2.794328788599893 6.513094513763935 -3.57407440575762 6.953548495402975 -3.227415287865078 7.505618194240906 -4.139992194044065 7.876456342147549 -3.761524831997849 10.67805680033176 -6.022078132143546 11.16176846173632 -5.437065414091726 6.443502443529829 -6.524454426903926 5.455377910186199 -6.614016405360451 5.276829500861391 -5.688413843343613 7.093346623752447 0.1936633434774049 6.996622144483922 0.08107890823026182 5.918364098679632 0.6946835222532575 5.12457596617492 1.196888661312207 5.733164416645455 1.077643543196735 5.659837046645889 0.9479949494725006 5.735808099411976 -1.992899477220481 5.865618505324296 -2.460175025701383 4.758236997495068 -2.149699721033194 5.826602908377137 -2.54228182317705 6.087171796191482 -3.566690023565987 4.843545496099361 -2.673703235409213 5.35585679491965 -4.878577887491488 5.082764984602673 -3.760757070883378 6.331641412255999 -4.720481401818463 6.058548585046148 -3.602661679311559 6.264065004454752 -4.803501560120678 6.40989096811075 -5.463018791418008 5.285915461951562 -4.952279500389528 6.354500477194964 -5.5058065265386 6.554020323273361 -6.45725466293534 5.3725854730318 -5.6341428049648 9.41056898809822 -2.898791439095068 12.26851450157659 -4.986537430148319 12.14541253552307 -5.10293046955647 8.613182971989794 -2.826927959732564 9.42651991423803 -3.450700016896117 9.298610626780286 -3.549173966198144 8.629014812798161 -3.209905916204647 8.487838424714864 -3.286514222629172 8.038933125624038 -2.704561851470576 7.96324250441662 -3.265004189452493 7.805375665433106 -3.308562304365771 7.523789324761757 -2.751687845226335 7.377457688057052 -2.855312596780183 7.219812768339646 -2.90011231837174 7.150832450639896 -2.549082256247872 7.235310741891112 -0.4904196007434802 7.782229223622522 -0.7453506809080558 7.635697253095525 -0.8035006671235652 7.109563867316364 0.1488038753349426 7.606548193301278 -0.1401008424521096 7.011895007764506 0.03672512252392931 5.890502313623793 0.8526266988596412 7.005536879862811 0.2545755458081305 5.810559197299331 0.7254211548792295 5.254634222010645 1.345955951793201 5.765798087273703 1.106421549715725 5.158474751740419 1.229593571299443 5.847127653942131 -2.483938036577421 4.865427715803005 -2.621495704933041 4.742685627602766 -2.167049408315839 4.828626099140562 -2.691145961250775 6.066241502050971 -3.589285790193484 5.090846327701405 -3.748857617575201 6.368925063442006 -5.491049143458817 5.387368148386617 -5.621069559526315 5.249019993973442 -4.974806095254356 9.485908542837471 -3.105411685193395 12.04798571922787 -5.432569415147625 9.362675427690499 -3.207509091704578 8.693206550649377 -2.936984635025157 9.338158193561835 -3.664297378796833 8.55510598041441 -3.016987279469245 8.108248304215895 -2.870429459557781 8.516550120266997 -3.44382944239968 7.953234205976306 -2.919923603102037 7.973800953496667 -3.248171677254486 7.532549763138777 -2.735810750521659 7.686443725701371 -2.683559650169936 7.358713154635643 -2.872239896407073 7.132876063535401 -2.565649444134168 7.293828092787273 -2.540400614243558</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID967\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID963\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID961\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID962\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID963\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID964\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 9 7 10 8 9 7 11 9 10 8 10 8 11 9 12 10 11 9 13 11 12 10 13 11 14 12 12 10 14 12 15 13 12 10 12 10 15 13 16 14 15 13 17 15 16 14 16 14 17 15 18 16 17 15 19 17 18 16 18 16 19 17 20 18 19 17 21 19 20 18 20 18 21 19 22 20 23 21 22 20 21 19 24 19 25 20 26 21 25 20 24 19 27 18 27 18 24 19 28 17 27 18 28 17 29 16 29 16 28 17 30 15 29 16 30 15 31 14 31 14 30 15 32 13 31 14 32 13 33 10 33 10 32 13 34 12 33 10 34 12 35 11 33 10 35 11 36 9 33 10 36 9 37 8 37 8 36 9 38 7 37 8 38 7 39 6 6 22 0 23 40 24 41 24 5 23 7 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 44 30 45 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 63 38 64 39 58 40 64 39 63 38 65 38 66 39 61 40 66 39 65 38 67 37 64 41 68 42 62 43 67 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 77 51 70 52 75 52 78 51 79 50 80 53 76 54 81 55 82 55 79 54 83 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 43 62 92 63 93 64 94 64 95 63 46 62 42 65 92 66 43 67 46 67 95 66 47 65 49 68 42 69 44 70 45 70 47 69 50 68 96 71 49 72 48 73 51 73 50 72 97 71 53 74 59 75 54 76 55 76 60 75 56 74 59 77 58 78 63 79 65 79 61 78 60 77 68 80 40 81 62 82 67 82 41 81 69 80 77 83 71 84 70 85 75 85 74 84 78 83 80 86 77 87 76 88 79 88 78 87 83 86 84 89 80 90 81 91 82 91 83 90 87 89 84 92 85 93 88 94 91 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID968\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID969\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID973\">-0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID973\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID970\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID974\">-0.1164308334372561 -0.9361829241127744 0.3316706101311379 -0.115264363165527 -0.9364085327492276 0.3314410752735454 -0.1088358859381834 -0.9423316096583713 0.3164899482933284 0.1088358859381834 0.9423316096583713 -0.3164899482933284 0.115264363165527 0.9364085327492276 -0.3314410752735454 0.1164308334372561 0.9361829241127744 -0.3316706101311379 -0.1108265020245895 -0.9413013605670106 0.3188561353395736 0.1108265020245895 0.9413013605670106 -0.3188561353395736 -0.1170061438965575 -0.9450112108173462 0.3053905265721109 0.1170061438965575 0.9450112108173462 -0.3053905265721109 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211767870245431 -0.9432883615922447 0.3090683632645491 0.1211767870245431 0.9432883615922447 -0.3090683632645491 -0.1269172199874076 -0.9559205324775958 0.2647790680141043 -0.1321753098522585 -0.9582917932523017 0.2533900677823568 -0.1289832713335865 -0.9599617263082118 0.2486700620087674 0.1289832713335865 0.9599617263082118 -0.2486700620087674 0.1321753098522585 0.9582917932523017 -0.2533900677823568 0.1269172199874076 0.9559205324775958 -0.2647790680141043 -0.1366015841177712 -0.9595604633487854 0.2461376127177232 -0.1318905450426279 -0.9620432799504404 0.238909212109029 0.1318905450426279 0.9620432799504404 -0.238909212109029 0.1366015841177712 0.9595604633487854 -0.2461376127177232 -0.5579936818601086 -0.8293100066025989 0.02979872401626703 -0.5582559972072337 -0.8292442885329374 0.02653585343755587 -0.5450709898174925 -0.8383750888433897 0.004982616402794485 0.5450709898174925 0.8383750888433897 -0.004982616402794485 0.5582559972072337 0.8292442885329374 -0.02653585343755587 0.5579936818601086 0.8293100066025989 -0.02979872401626703 -0.4971056987735406 -0.8668022854730181 0.03923929338842273 -0.5144490778171239 -0.8563961092508181 0.04390729316607478 0.5144490778171239 0.8563961092508181 -0.04390729316607478 0.4971056987735406 0.8668022854730181 -0.03923929338842273 -0.3062977673774491 -0.9518676260712704 -0.01138859679831438 -0.352304512060553 -0.9358847587336349 0.001117654625490362 0.352304512060553 0.9358847587336349 -0.001117654625490362 0.3062977673774491 0.9518676260712704 0.01138859679831438 -0.4569466615946189 -0.6657511171996592 0.5898942264549963 -0.4542014913136462 -0.6513390540662555 0.6078309320333537 -0.4286372452159311 -0.5485409186912338 0.7178948199667378 0.4286372452159311 0.5485409186912338 -0.7178948199667378 0.4542014913136462 0.6513390540662555 -0.6078309320333537 0.4569466615946189 0.6657511171996592 -0.5898942264549963 -0.4610431429742561 -0.7926530874053718 0.3989239317754095 -0.4574340725793243 -0.7984546202919721 0.3914387417947999 0.4574340725793243 0.7984546202919721 -0.3914387417947999 0.4610431429742561 0.7926530874053718 -0.3989239317754095 -0.504011286993974 -0.8116541095840285 0.2952799163133784 -0.4985522816593612 -0.8144906939653281 0.2967330987539529 0.4985522816593612 0.8144906939653281 -0.2967330987539529 0.504011286993974 0.8116541095840285 -0.2952799163133784 -0.5535803758470984 -0.7975432953446792 0.2397362290679806 -0.5497181193307189 -0.7989775362978114 0.2438132190242709 0.5497181193307189 0.7989775362978114 -0.2438132190242709 0.5535803758470984 0.7975432953446792 -0.2397362290679806 -0.6327733709944583 -0.7467813291086449 0.2047327708380742 -0.6307130915381779 -0.7484351601869926 0.2050507428863028 0.6307130915381779 0.7484351601869926 -0.2050507428863028 0.6327733709944583 0.7467813291086449 -0.2047327708380742 -0.12572764539914 -0.9493235337335358 0.288057958546645 -0.1241102328803618 -0.949950385418969 0.2866895800979427 0.1241102328803618 0.949950385418969 -0.2866895800979427 0.12572764539914 0.9493235337335358 -0.288057958546645 -0.1260763385258006 -0.9561757449318785 0.2642587778445488 0.1260763385258006 0.9561757449318785 -0.2642587778445488 -0.5411572163250612 -0.8409136120021787 0.0036282735233317 0.5411572163250612 0.8409136120021787 -0.0036282735233317 -0.4271593597663426 -0.5494736951569242 0.7180623508405128 0.4271593597663426 0.5494736951569242 -0.7180623508405128</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID974\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID972\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID975\">-3.619923147946738 -10.4997124189645 -4.615531269323347 -10.50426780891869 -3.786473319759188 -7.323412140034409 -4.653673804142658 -10.49401698912256 -4.805676486616894 -7.37051953241552 -3.81352480912883 -7.314962732852594 -3.820425668882074 -7.305856672633955 -4.812624718306279 -7.36088743703495 -3.861453874929484 -6.370197921834446 0.6813313594591697 -4.417481111052449 1.034025889616375 -5.076538702772943 0.6745777442559287 -4.861532670451762 0.6181083223495576 -3.371747130340732 0.6099842723727789 -2.882667464664047 1.150057598209742 -2.790499405865308 1.301124565657046 -3.253791213680578 1.433822075213695 -5.58669282178515 1.654720203610757 -4.260796592547062 1.756362347080652 -6.218346919426859 2.044608896717736 -5.356969436367257 2.124028407813262 -7.071998294227972 2.309722319644435 -5.993056934305602 2.694805104503927 -6.908588653047397 3.159237001412372 -10.04246510191542 4.01444950041533 -9.85695107623112 -4.770302607309429 -7.378913320643741 -4.818761116653899 -6.415319624856644 -3.824119757917572 -6.385272312822708 -4.879652942044097 -4.594604717966694 -4.927413575326117 -3.550563414087187 -3.932374746135774 -3.499523185868613 -4.915571062373914 -3.5436583785342 -4.936862069573945 -3.065660927447276 -3.940378453159533 -3.027190444375211 -3.913500117488176 -3.40050299024049 -4.09282702520373 -3.385230939043493 -3.918064205042312 -2.911394748494002 -4.071526949273308 -4.517354419797227 -4.244247793447956 -4.516291113672466 -4.103959653848396 -3.470749325366316 -4.696140705790722 -4.841330176768042 -4.852048441064388 -4.881619431869657 -4.694071954369298 -4.397249817793164 -3.388429709736816 -5.80223159735321 -3.54728384340591 -5.844317579836226 -3.612092296619232 -5.493643733810828 -3.644650972120329 -6.376784300125662 -3.80351443586253 -6.41800547167999 -3.853333020430924 -5.800397365438651 -3.443345100842655 -6.955360092461058 -3.613167292398807 -6.974182995811063 -3.613854860136208 -6.28799614187596 -3.020090597742209 -7.800548950638829 -3.198837732959714 -7.807696212394419 -3.229723261065653 -6.914445467807718 -1.887081515124395 -10.7541844740011 -2.07909737595266 -10.76451173411055 -2.556309598949435 -7.719435323674952 -4.800992548081733 -6.42136775030822 -4.835935624615236 -5.752527526608549 -3.839915993991579 -5.735080854880583 -3.893651563408266 -4.575157380439522 -3.842653010323232 -5.712728447491024 -4.889675796800544 -4.592379227370737 -4.838679085328147 -5.729945936031485 -3.825258441823209 -6.381453665091004 -4.819904359823177 -6.41140743340478 -3.857120588539961 -5.72660297898442 -3.894002460961315 -4.571016362072552 -4.890027573496783 -4.588206715689682 -3.941118556409633 -3.493999293346616 -3.936315166081157 -3.477142797519195 -4.93138635985045 -3.527791052174538 -3.954943057750661 -3.012787565415254 -3.926614997645129 -3.491897394819695 -4.063770219756945 -4.537696388468241 -4.105939758987547 -3.476609754896952 -4.175804411867014 -3.36587945210828 -4.177193689864259 -2.897812676959156 -4.000934001956216 -2.89206782663573 -4.071675761691439 -4.531139361422384 -4.22716918693565 -5.016005951249156 -4.244396603139681 -4.53007578126498 -3.590817288257763 -5.821021844290655 -3.798853510505536 -5.527848467073778 -3.652170740556171 -5.469963595447143 -3.781669341089509 -6.425648218290957 -3.995755863268846 -5.841267620548126 -3.833509888572388 -5.808143101871867 -3.866956363979578 -6.914973573831331 -4.010205632191378 -6.267452237426695 -3.850258232861662 -6.228912249916991 -3.464546362080003 -7.768615286749084 -3.647638875630202 -6.893593195818973 -3.477759105263607 -6.875094619680589 -2.636818840382449 -10.75008068999862 -3.212070745508375 -7.704897883551319 -3.033317435407952 -7.697846838450428</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID975\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID971\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID969\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID970\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID971\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID972\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 2 6 6 7 8 8 9 8 7 7 3 6 10 9 11 10 12 11 13 12 14 13 10 9 10 9 14 13 11 10 14 13 15 14 11 10 15 14 16 15 11 10 11 10 16 15 17 16 16 15 18 17 17 16 17 16 18 17 19 18 18 17 20 19 19 18 19 18 20 19 21 20 20 19 22 21 21 20 22 21 23 22 21 20 21 20 23 22 24 23 25 24 24 23 23 22 26 22 27 23 28 24 27 23 26 22 29 20 29 20 26 22 30 21 29 20 30 21 31 19 29 20 31 19 32 18 32 18 31 19 33 17 32 18 33 17 34 16 34 16 33 17 35 15 34 16 35 15 36 10 36 10 35 15 37 14 36 10 37 14 38 13 36 10 38 13 39 9 39 9 38 13 40 12 41 11 36 10 39 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 54 39 59 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 79 50 74 51 77 51 80 50 81 49 82 52 83 53 78 54 81 54 84 53 85 52 86 55 87 56 82 57 85 57 88 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 94 61 91 62 44 63 90 64 44 63 91 62 92 62 49 63 93 64 49 63 92 62 95 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 54 74 61 75 55 76 58 76 62 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 60 80 65 81 61 82 62 82 66 81 63 80 69 83 98 84 70 85 71 85 99 84 72 83 75 86 69 87 68 88 73 88 72 87 76 86 79 89 75 90 74 91 77 91 76 90 80 89 83 92 79 93 78 94 81 94 80 93 84 92 87 95 83 96 82 97 85 97 84 96 88 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID976\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID977\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID981\">-0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803332 0.3212716622742917 -1.271187211522604</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID981\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID978\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID982\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID982\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID980\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID983\">-6.425433245485834 -20.00001212795564 -4.32388128207585 -14.06887039043778 -5.629060832817041 -20.16055024897072 -3.610391638133557 -14.29897361281646 -3.600610863927081 -12.38904113597162 -2.982122386725945 -11.16788361953795 -2.877321672698945 -12.67215376661415 -2.258842582037208 -11.4510186977769 -2.156041200933601 -10.13969745661595 -1.547887303772093 -10.63899816275007 -1.472992104737583 -9.736992302315027 -1.393422409009268 -8.766741022896534 -1.215528711540519 -6.648138052462246 -0.1147598324848787 -10.49443800458955 -1.198492142265195 -5.712091593480277 -0.08553014833978972 -5.880332193704978 1.02924344771786 -5.77682455434737 1.034377884849387 -6.712951942821705 1.185360373440858 -8.832837379884129 1.252530450429137 -9.803638625415397 1.315964684678752 -10.70622398827427 1.930445109493735 -10.2117235234207 2.016557223285633 -11.52379262397881 2.619482817920047 -12.7497492002406 2.743403913001568 -11.2463545094255 3.331770984800639 -14.38222820365034 3.34628257493822 -12.47232526311665 4.048226775239526 -14.15776759814488 5.275854736254216 -20.25943781854545 6.074311336163872 -20.10514721805505 2.024113387619763 -7.07888379907244 2.637927368127108 -10.12971890927273 3.037155668081936 -10.05257360902752 1.66588549240032 -7.191114101825169 1.67314128746911 -6.236162631558325 1.371701956500784 -5.623177254712751 1.309741408960023 -6.374874600120302 0.9652225547468674 -5.105861761710349 1.008278611642817 -5.761896311989403 0.657982342339376 -5.353111994137136 0.6262652252145684 -4.901819312707699 -0.05737991624243935 -5.247219002294777 0.592680186720429 -4.416418689942065 0.5171889424246934 -3.356475971410852 0.5146217238589301 -2.888412277173685 -0.04276507416989486 -2.940166096852489 -0.5992460711325975 -2.856045796740138 -0.6077643557702595 -3.324069026231123 -0.7739436518860465 -5.319499081375033 -0.7364960523687913 -4.868496151157514 -0.6967112045046342 -4.383370511448267 -1.0780206004668 -5.069848728307975 -1.129421291018604 -5.725509348888448 -1.491061193362973 -5.583941809768977 -1.438660836349472 -6.336076883307075 -1.805195819066778 -7.149486806408228 -1.80030543196354 -6.194520567985809 -2.161940641037925 -7.034435195218892 -2.814530416408521 -10.08027512448536 -3.212716622742917 -10.00000606397782</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID983\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID979\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID977\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID978\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID979\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID980\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 3 3 5 5 6 6 6 6 5 5 7 7 5 5 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 11 11 12 12 10 10 10 10 12 12 9 9 9 9 12 12 13 13 12 12 14 14 13 13 14 14 15 15 13 13 15 15 16 16 13 13 16 16 17 17 13 13 17 17 18 18 13 13 18 18 19 19 13 13 13 13 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 22 22 21 21 23 23 21 21 24 24 23 23 23 23 24 24 25 25 24 24 26 26 25 25 26 26 27 27 25 25 25 25 27 27 28 28 29 29 28 28 27 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID979\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID980\" />\r\n\t\t\t\t\t<p>30 30 31 31 32 32 31 31 30 30 33 33 33 33 30 30 34 34 33 33 34 34 35 35 33 33 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 39 39 37 37 40 40 39 39 40 40 41 41 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 41 41 44 44 45 45 41 41 45 45 46 46 41 41 46 46 47 47 41 41 47 47 48 48 48 48 47 47 49 49 49 49 47 47 50 50 48 48 49 49 51 51 48 48 51 51 52 52 52 52 51 51 53 53 52 52 53 53 54 54 54 54 53 53 55 55 55 55 53 53 56 56 55 55 56 56 57 57 55 55 57 57 58 58 58 58 57 57 59 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID984\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID985\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID989\">-0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID989\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID986\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID990\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6658892428368299 -0.6885143064564592 -0.2872969997737087 -0.6729311871649365 -0.562029832840137 -0.4809221187868957 -0.6630779028754261 -0.686790694066647 -0.2977351797517055 0.6630779028754261 0.686790694066647 0.2977351797517055 0.6729311871649365 0.562029832840137 0.4809221187868957 0.6658892428368299 0.6885143064564592 0.2872969997737087 -0.6145076962834851 -0.7533304730451725 -0.23425091160954 -0.6113217468963009 -0.7555949016953774 -0.2352914497035711 0.6113217468963009 0.7555949016953774 0.2352914497035711 0.6145076962834851 0.7533304730451725 0.23425091160954 -0.6630217725658703 0.6867913760071885 -0.2978585821254177 -0.614536014802447 0.753238837863779 -0.234471191501963 -0.6113552837420216 0.7554994400131816 -0.2355107496070638 0.6113552837420216 -0.7554994400131816 0.2355107496070638 0.614536014802447 -0.753238837863779 0.234471191501963 0.6630217725658703 -0.6867913760071885 0.2978585821254177 -0.6729662109479289 0.5620113969532229 -0.480894654386046 -0.6658367060927759 0.6885118877851151 -0.2874245313088283 0.6658367060927759 -0.6885118877851151 0.2874245313088283 0.6729662109479289 -0.5620113969532229 0.480894654386046 -0.6289247236154029 0.4714099301382881 -0.6182445873538268 -0.6701069292073644 0.5661758691150767 -0.4800016548513805 0.6701069292073644 -0.5661758691150767 0.4800016548513805 0.6289247236154029 -0.4714099301382881 0.6182445873538268 -0.6193819127185333 0.1198559305827131 -0.7758869776593 -0.6586069297905275 -2.229606074873209e-006 -0.7524871507387512 -0.6252698128776827 0.1206693193046023 -0.7710230713036228 0.6252698128776827 -0.1206693193046023 0.7710230713036228 0.6586069297905275 2.229606074873209e-006 0.7524871507387512 0.6193819127185333 -0.1198559305827131 0.7758869776593 -0.6193686517759511 -0.1198585530154133 -0.7758971584342167 -0.6252581822364834 -0.120672201244489 -0.7710320521178985 0.6252581822364834 0.120672201244489 0.7710320521178985 0.6193686517759511 0.1198585530154133 0.7758971584342167 -0.67006535899179 -0.5661918537004904 -0.4800408310575318 -0.6288757300373609 -0.4714242768409007 -0.6182834846371121 0.6288757300373609 0.4714242768409007 0.6182834846371121 0.67006535899179 0.5661918537004904 0.4800408310575318 -0.6220449068117597 0.4728131159400871 -0.6241056731873016 0.6220449068117597 -0.4728131159400871 0.6241056731873016 -0.6632952763355497 -2.144258925662945e-006 -0.7483577863471115 0.6632952763355497 2.144258925662945e-006 0.7483577863471115 -0.6219938106167091 -0.472827546613443 -0.6241456646633203 0.6219938106167091 0.472827546613443 0.6241456646633203</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID990\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID988\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID991\">-3.156233308757805 10.08710982687471 -2.856924722266216 10.15761536438385 -2.299594243474685 7.925327132511855 -2.034706097497008 8.107661869668936 -1.670494283317261 7.039697384405096 -1.471814094024708 7.248080785050666 -1.04136616354108 6.648978065150011 -0.9088939309335409 6.935506865534769 0.03037484196966032 6.779216066056368 0.03037484196967586 6.518738882791184 0.9696623879520416 6.935506865534766 1.102106460940886 6.648978065149996 1.53253561834532 7.248080785050663 1.731248660526263 7.039697384405099 2.095474554515417 8.10766186966894 2.360348620683812 7.925327132511852 2.916716979171949 10.15761536438385 3.216081884900745 10.0871098268747 -1.168223810341762 8.705845242068937 -1.852121515551163 7.788450679867976 -1.40781128757764 8.740863958144171 -1.127976746028978 10.74215769727934 -1.891963265655392 8.548125708057006 -1.353723762346343 10.77235392063934 1.92977610017306 8.539773730394375 1.165152667342891 10.73392563091469 1.390907857481091 10.76412350460084 1.895306010249322 7.775979783153745 1.211452728307992 8.693382385382428 1.451024695764368 8.728401408360952 1.117617843992585 7.784976980384649 1.633385363252757 7.302298032340775 0.9074623347642705 7.685547256742304 -0.197239063084682 6.918126269644701 0.8549824061199894 6.711683130854517 -0.2901796556002942 6.749254765222319 -0.7953736304985473 6.718676308614904 0.2568369789646587 6.925123544849952 0.3497466618996286 6.756248688697456 -1.06798004515442 7.800983242129445 -0.8578410112294874 7.701550924618476 -1.583745696748875 7.318291702219283 -1.310273488089885 8.50145099047988 -1.55024617473669 8.534797514554935 -0.7399734769562733 10.71852904030233 -1.095319278789253 8.705805411636872 -1.566410502550131 7.70517274122652 -1.78574637488333 7.791442475072095 1.591962985362013 8.527737177369552 1.352006114122691 8.494388859175095 0.7810767299616233 10.71158619287857 1.829089859934408 7.779452862022374 1.609739214986294 7.693184525529069 1.138657808235052 8.693800988211841 1.799210093489108 7.202159495554009 1.642118984845298 7.065808738801556 1.08537548281971 7.599211858902786 -0.303908425543867 6.890972967685572 0.8413662356912078 6.855588981904453 0.8075133592585561 6.667004022123 -1.751077057674244 7.220075955278533 -1.037267018645942 7.617144552937642 -1.594006231623408 7.083719623542236 -0.7478615787589549 6.673632464807028 -0.7817156750263035 6.862217289076101 0.3635172617960516 6.897601249431154</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID991\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID987\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID985\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID986\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"64\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID987\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID988\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 3 3 5 5 4 4 4 4 5 5 6 6 5 5 7 7 6 6 7 7 8 8 6 6 6 6 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 17 17 15 15 16 16 18 16 19 15 20 17 19 15 18 16 21 14 19 15 21 14 22 13 22 13 21 14 23 12 22 13 23 12 24 11 24 11 23 12 25 10 24 11 25 10 26 9 26 9 25 10 27 8 26 9 27 8 28 6 28 6 27 8 29 7 28 6 29 7 30 5 28 6 30 5 31 4 31 4 30 5 32 3 31 4 32 3 33 2 33 2 32 3 34 1 33 2 34 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 38 22 43 23 44 23 39 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 46 29 51 29 54 28 55 27 52 30 56 31 57 32 58 32 59 31 55 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 37 39 70 40 71 41 72 41 73 40 40 39 36 42 38 43 42 44 45 44 39 43 41 42 36 45 70 46 37 47 40 47 73 46 41 45 46 48 53 49 47 50 50 50 54 49 51 48 52 51 57 52 53 53 54 53 58 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 62 57 61 58 76 59 77 59 64 58 63 57 71 60 70 61 78 62 79 62 73 61 72 60 76 63 61 64 67 65 68 65 64 64 77 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID992\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID993\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID997\">-0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID997\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID994\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID998\">-0.1088414049293589 -0.947410974285598 0.3009418455054356 -0.1152736558224273 -0.9514554511327701 0.2853848432959771 -0.1164409580977757 -0.9514088463688938 0.2850661507936061 0.1164409580977757 0.9514088463688938 -0.2850661507936061 0.1152736558224273 0.9514554511327701 -0.2853848432959771 0.1088414049293589 0.947410974285598 -0.3009418455054356 -0.1108291057697727 -0.947976074128154 0.2984263262429192 0.1108291057697727 0.947976074128154 -0.2984263262429192 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170025511882888 -0.9430258041624864 0.3114686753096171 0.1170025511882888 0.9430258041624864 -0.3114686753096171 -0.5580530298785489 -0.6868819057170897 0.4655857208311168 -0.5144747560634457 -0.7170989215866322 0.4701966206096629 -0.4971366770465531 -0.7227409499224468 0.4801048256790497 0.4971366770465531 0.7227409499224468 -0.4801048256790497 0.5144747560634457 0.7170989215866322 -0.4701966206096629 0.5580530298785489 0.6868819057170897 -0.4655857208311168 -0.5451847648562986 -0.6795279363612947 0.4909331480692076 -0.5583224479878474 -0.6848994354787804 0.4681760431223551 0.5583224479878474 0.6848994354787804 -0.4681760431223551 0.5451847648562986 0.6795279363612947 -0.4909331480692076 -0.1319019164971365 -0.9175016921677499 0.375223305904228 -0.1366215138279231 -0.9197698814859678 0.3679102160455122 -0.132187031375201 -0.9230309666043481 0.3613037827447346 0.132187031375201 0.9230309666043481 -0.3613037827447346 0.1366215138279231 0.9197698814859678 -0.3679102160455122 0.1319019164971365 0.9175016921677499 -0.375223305904228 -0.1289849043901566 -0.9215886923010116 0.3661108802840657 -0.1268997631170716 -0.9278451148530309 0.3507134057377864 0.1268997631170716 0.9278451148530309 -0.3507134057377864 0.1289849043901566 0.9215886923010116 -0.3661108802840657 -0.1240889977263835 -0.935968365345372 0.3294922453047622 -0.1260530155511802 -0.927743067690427 0.3512882543194544 -0.1256997483470361 -0.9362686863122588 0.3280251824122791 0.1260530155511802 0.927743067690427 -0.3512882543194544 0.1256997483470361 0.9362686863122588 -0.3280251824122791 0.1240889977263835 0.935968365345372 -0.3294922453047622 -0.1211640169608956 -0.9438046778011408 0.3074931074911838 0.1211640169608956 0.9438046778011408 -0.3074931074911838 -0.5535665584026356 -0.7852409048141928 0.2774180722751294 -0.6307922097387901 -0.7250610588406663 0.2763831562988343 -0.6328548543715852 -0.7235364593406309 0.2756623392905591 0.6328548543715852 0.7235364593406309 -0.2756623392905591 0.6307922097387901 0.7250610588406663 -0.2763831562988343 0.5535665584026356 0.7852409048141928 -0.2774180722751294 -0.5040203107265815 -0.8294161793038206 0.2408989993423235 -0.5497036183937712 -0.7888062471367417 0.2749738831286428 0.5497036183937712 0.7888062471367417 -0.2749738831286428 0.5040203107265815 0.8294161793038206 -0.2408989993423235 -0.460851692936173 -0.8753739730121579 0.146068903229857 -0.4985502972453628 -0.8325691162757212 0.2414047798624232 0.4985502972453628 0.8325691162757212 -0.2414047798624232 0.460851692936173 0.8753739730121579 -0.146068903229857 -0.4569279317681941 -0.8856200811699702 -0.08302973562848467 -0.4572416734112509 -0.8756361354271367 0.1555358814881895 0.4572416734112509 0.8756361354271367 -0.1555358814881895 0.4569279317681941 0.8856200811699702 0.08302973562848467 -0.4286788938903839 -0.8665692927857499 -0.2555231236771386 -0.4542038175253678 -0.8845680751983658 -0.1060104357374351 0.4542038175253678 0.8845680751983658 0.1060104357374351 0.4286788938903839 0.8665692927857499 0.2555231236771386 -0.3064282572468343 -0.7615096868410569 0.5711433445361185 -0.3524105864353466 -0.7559917297368691 0.5516187842502752 0.3524105864353466 0.7559917297368691 -0.5516187842502752 0.3064282572468343 0.7615096868410569 -0.5711433445361185 -0.5412831574712219 -0.6807737084399571 0.4935176808736367 0.5412831574712219 0.6807737084399571 -0.4935176808736367 -0.4272120245077655 -0.8674148026834218 -0.2551106548179773 0.4272120245077655 0.8674148026834218 0.2551106548179773</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID998\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID996\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID999\">-4.476007576609035 7.062446497286024 -5.610078521260624 10.18451102473239 -4.616909317180718 10.23948786492563 -4.457317962308713 7.070081426959296 -5.451980479202522 7.070081426959295 -5.582273135016021 10.1941861999994 -2.915820564645328 4.577486397015233 -2.705824901930551 3.881759770422776 -3.044538181434562 4.237025474007779 -4.927754917204618 9.572531168459182 -4.098294577175903 9.820029505899221 -3.533778702362138 6.694277314763351 -3.189794693172454 5.834534961886438 -2.976053988909622 5.174927108690099 -2.950461588838496 6.827506162532062 -2.574112979026264 5.90973500068239 -2.310670360138509 5.273218044780612 -1.971952387364679 3.008396156954229 -1.802609827421979 4.207418866483767 -1.6114341764961 2.609907015700216 -1.33218931828335 3.230435375675426 -1.106382029703872 2.786350440244579 -4.414598464887224 6.126107772952492 -5.451980479202522 7.061712810444018 -4.457317962308713 7.061712810444016 -5.33596872995056 2.130714035845917 -5.924772333389478 3.074542164180131 -5.763048222846655 3.122267891642199 -4.987916614829788 1.512708834556799 -5.377440342691845 1.899378453086448 -5.218756704377096 1.966856877840273 -4.260154754836963 2.720485635982612 -5.257018934731138 2.688642967424494 -5.29019606874273 3.166224867289707 -4.288675503379187 3.206941579033968 -5.285625910594948 3.191125460069592 -5.351085900066831 4.23457763899701 -4.41979236804897 5.428040042772467 -4.351493664629199 4.291039244739512 -5.414233208841241 5.380670171341812 -5.345933874498217 4.243665053434983 -4.415291528805324 5.454552311874554 -5.409786663689427 5.40789315121728 -5.444478208186572 6.07674149299513 -4.438155718111392 6.116919218057375 -5.432744773063641 6.08583337300607 -5.479987793634328 7.049459215875197 -6.203185173507943 6.276398871968053 -7.302381745519437 9.220150285118146 -7.120928170141183 9.270667048401974 -6.05090352278245 5.589542698505411 -6.416833798944759 6.43548686015438 -6.246087340236969 6.477690060269889 -5.947800219407116 5.041376582275624 -6.225849311089496 5.691759027822195 -6.057282581899993 5.716607486391731 -5.942953322128933 5.176183896234631 -5.915069665924102 4.577268658835078 -6.110213799958335 5.176780817884009 -5.968821493453951 4.011867773493208 -6.078344164688114 4.355576795346951 -5.911078840908683 4.364150946875863 -5.914572748051512 3.883135267461919 -5.788129089640393 3.450333224929001 -6.077940492615052 3.895396330804702 -5.764906912468319 3.140463050621411 -5.926698155432084 3.092878339107605 -6.122288302219893 3.554007002763703 -5.25185851333697 2.085897937376482 -5.411299025384771 2.019532791723905 -5.870819298278879 3.017708812526331 -5.03425269375542 1.515196952579786 -5.20087948499223 1.469582089575572 -5.418215817904647 1.905293193501272 -4.257505459531929 2.720014403967389 -5.286018809997048 3.167931777298792 -4.289073233445126 3.18393522163202 -4.285980849598744 3.209841492506433 -5.34638380163261 4.238759873238242 -4.351952313245739 4.286247223369609 -4.405753380254583 5.457778096002004 -5.433512735694054 6.081425640721875 -4.438928614152006 6.112609013456504 -6.244958820165806 6.356114253185693 -6.415450211855801 6.313277663626342 -7.23775406617386 9.323170269276911 -6.058025690602193 5.628878803242282 -6.226509457877878 5.603684553087598 -6.408634890764557 6.478828975510515 -5.942758739870094 5.081091340191565 -6.110019128929388 5.081703461357701 -6.210238106228282 5.734211264659076 -5.91599523908132 4.575875699918768 -6.083282415819649 4.567569574095214 -6.111403487118982 5.175334618298088 -5.965547817296141 4.005385117475852 -6.129123088814952 4.015794026888997 -6.075915714967462 4.348926781517354</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID999\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID995\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID993\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID994\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID995\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID996\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 9 7 10 8 11 9 12 10 13 11 13 11 12 10 14 12 14 12 12 10 15 13 12 10 16 14 15 13 15 13 16 14 8 6 8 6 16 14 9 7 16 14 17 15 9 7 17 15 18 16 9 7 9 7 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 7 30 7 29 16 31 15 30 7 31 15 32 14 30 7 32 14 33 6 33 6 32 14 34 13 34 13 32 14 35 10 34 13 35 10 36 12 36 12 35 10 37 11 37 11 35 10 38 9 39 8 30 7 33 6 40 22 6 23 0 24 5 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 42 30 47 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 54 35 59 36 60 36 55 35 61 34 62 37 63 38 64 39 59 40 64 39 63 38 65 38 66 39 60 40 66 39 65 38 67 37 62 41 64 42 68 43 69 43 66 42 67 41 40 44 68 45 6 46 7 46 69 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 77 51 70 52 75 52 78 51 79 50 80 53 81 54 76 55 79 55 82 54 83 53 80 56 84 57 85 58 86 58 87 57 83 56 88 59 89 60 84 61 87 61 90 60 91 59 92 62 44 63 93 64 94 64 45 63 95 62 44 65 43 66 93 67 94 67 46 66 45 65 42 68 49 69 43 70 46 70 50 69 47 68 48 71 96 72 49 73 50 73 97 72 51 71 52 74 54 75 58 76 61 76 55 75 57 74 58 77 59 78 63 79 65 79 60 78 61 77 62 80 68 81 40 82 41 82 69 81 67 80 70 83 77 84 71 85 74 85 78 84 75 83 76 86 81 87 77 88 78 88 82 87 79 86 80 89 85 90 81 91 82 91 86 90 83 89 84 92 89 93 85 94 86 94 90 93 87 92 88 95 98 96 89 97 90 97 99 96 91 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1000\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1001\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1005\">-0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1005\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1002\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1006\">-0.1152785401318226 0.9514539780096277 0.2853877816493387 -0.1088253784222441 0.9474097604849766 0.3009514624471104 -0.1164499499977552 0.9514072021990337 0.2850679651404685 0.1164499499977552 -0.9514072021990337 -0.2850679651404685 0.1088253784222441 -0.9474097604849766 -0.3009514624471104 0.1152785401318226 -0.9514539780096277 -0.2853877816493387 -0.1108158709414702 0.9479756505698795 0.2984325864815992 0.1108158709414702 -0.9479756505698795 -0.2984325864815992 -0.1170020873176061 0.9430265699053393 0.3114665311327904 0.1170020873176061 -0.9430265699053393 -0.3114665311327904 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211732142097103 0.9438073403036035 0.3074813108908012 0.1211732142097103 -0.9438073403036035 -0.3074813108908012 -0.1321716117428985 0.9230345567260386 0.3613002520603185 -0.1289786499144217 0.9215964103368728 0.3660936551218056 -0.1269033028027753 0.9278449706028746 0.3507125065701218 0.1269033028027753 -0.9278449706028746 -0.3507125065701218 0.1289786499144217 -0.9215964103368728 -0.3660936551218056 0.1321716117428985 -0.9230345567260386 -0.3613002520603185 -0.1365916059617619 0.9197763476074805 0.3679051556619317 -0.1318868020555722 0.9175152480092108 0.3751954705405586 0.1318868020555722 -0.9175152480092108 -0.3751954705405586 0.1365916059617619 -0.9197763476074805 -0.3679051556619317 -0.5582998943323946 0.6849160643720522 0.4681786120206002 -0.5451072798952581 0.6795683929083647 0.4909631888086266 -0.5580352589138925 0.686896283790861 0.4655858085500564 0.5580352589138925 -0.686896283790861 -0.4655858085500564 0.5451072798952581 -0.6795683929083647 -0.4909631888086266 0.5582998943323946 -0.6849160643720522 -0.4681786120206002 -0.5144099610105722 0.7171316315973716 0.4702176251222334 -0.497074599178697 0.7227721921072363 0.4801220690281148 0.497074599178697 -0.7227721921072363 -0.4801220690281148 0.5144099610105722 -0.7171316315973716 -0.4702176251222334 -0.3064402809272837 0.7615293823458688 0.5711106320575088 -0.352403313346486 0.7560131466980314 0.5515940778889484 0.352403313346486 -0.7560131466980314 -0.5515940778889484 0.3064402809272837 -0.7615293823458688 -0.5711106320575088 -0.4540888561829713 0.8846296580586545 -0.1059890502526975 -0.4286481079664477 0.8665788463267886 -0.2555423695509543 -0.4568215763294453 0.8856767481496878 -0.08301051250820768 0.4568215763294453 -0.8856767481496878 0.08301051250820768 0.4286481079664477 -0.8665788463267886 0.2555423695509543 0.4540888561829713 -0.8846296580586545 0.1059890502526975 -0.4610442893976508 0.8752815563959685 0.1460149315887465 -0.4574195148530338 0.8755517285042376 0.1554881286299919 0.4574195148530338 -0.8755517285042376 -0.1554881286299919 0.4610442893976508 -0.8752815563959685 -0.1460149315887465 -0.4986342763500318 0.8325237471962924 0.2413877975439595 -0.5040953384354201 0.8293748738257591 0.2408842220532205 0.5040953384354201 -0.8293748738257591 -0.2408842220532205 0.4986342763500318 -0.8325237471962924 -0.2413877975439595 -0.5497405090277223 0.7887818631232486 0.2749700804483234 -0.5535993933396806 0.7852192614320004 0.2774138121473434 0.5535993933396806 -0.7852192614320004 -0.2774138121473434 0.5497405090277223 -0.7887818631232486 -0.2749700804483234 -0.6307142225357303 0.7251185372018276 0.2764103407932322 -0.6327739567192011 0.7235964141618628 0.2756906765018007 0.6327739567192011 -0.7235964141618628 -0.2756906765018007 0.6307142225357303 -0.7251185372018276 -0.2764103407932322 -0.1257158798169777 0.9362722954747478 0.3280086984948568 -0.1241004601015495 0.9359706713431454 0.329481377604328 0.1241004601015495 -0.9359706713431454 -0.329481377604328 0.1257158798169777 -0.9362722954747478 -0.3280086984948568 -0.1260584581940911 0.9277432077180657 0.3512859314728144 0.1260584581940911 -0.9277432077180657 -0.3512859314728144 -0.5411915379110214 0.6808183023324969 0.4935566416355883 0.5411915379110214 -0.6808183023324969 -0.4935566416355883 -0.4272108780820152 0.8674072480996509 -0.2551382597584773 0.4272108780820152 -0.8674072480996509 0.2551382597584773</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1006\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1004\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID1007\">5.617378929991789 10.19781422708152 4.483294934126929 7.075747942042431 4.624208775236756 10.25279109822444 5.458721422938665 7.083520870205004 4.464061036837125 7.083520870205009 5.588996955066634 10.20763462219114 4.421346952999289 6.140815188881417 4.464061036837125 7.076423884248999 5.458721422938665 7.076423884248994 2.975650367709245 4.577486397015233 3.10435390468914 4.237025474007778 2.765668784803665 3.88175977042276 1.166188366418925 2.786350440244582 1.391990961728664 3.230435375675429 1.671278059369284 2.609907015700215 1.862425550676504 4.207418866483772 2.031777497158823 3.008396156954226 2.370486083393128 5.273218044780597 2.633905235931875 5.90973500068239 3.010244459204613 6.827506162532067 3.035846245815374 5.174927108690105 3.2495779390001 5.834534961886451 3.593575840268438 6.694277314763352 4.158114993700223 9.82002950589921 4.987579839267953 9.572531168459182 5.440259090957746 6.100053721609197 4.445669499516969 6.131139493031489 5.487502565849463 7.063677282062665 5.293941409287112 3.207493381871648 4.296992243910657 3.223309561720638 5.359399117465306 4.250949577599662 5.265793053665141 2.705818470045893 4.268933211202332 2.737661070040306 5.298962164022343 3.183399341581381 5.415796362687616 1.916808604102276 5.026294682284743 1.530141409702067 5.257114503965267 1.984286605816789 5.959649671694621 3.092759185175174 5.370891361201542 2.148913571710389 5.797934195308944 3.14048579679244 5.810472141374266 3.475336991400121 5.936906742911044 3.908127033707534 6.100274528703595 3.920387757089989 6.105118350408258 4.344603273888446 5.995585169795275 4.000895026903539 5.937866076838642 4.353177406087491 5.942823095099554 4.580127261937448 5.970701324597152 5.179040319610356 6.137981372295337 5.179637239087242 6.256494040726642 5.700328114675888 5.978424246796603 5.049948518067148 6.087918494432243 5.725176464399121 6.450770346717195 6.445144142728336 6.084814463887035 5.599199516900355 6.280019180205057 6.487347366001216 7.341713869329332 9.230007304171149 6.242625006838358 6.286231003209693 7.160276736564839 9.280524494546649 5.417699803672306 5.422201727503866 4.423201973780691 5.468860483384689 5.452393926001093 6.09104426690505 4.427849072468621 5.444266645087963 5.422292833750023 5.396900100893685 4.359547899167656 4.307272427779807 5.353987874597794 4.259895192131318 5.441051096828423 6.096071898312635 4.413290633479596 5.472425483488996 4.446466439651513 6.127255214550647 5.354449558780775 4.25527680367496 4.294045878582681 3.226357187596779 4.360018074793429 4.302764210820874 5.294372291942167 3.185641304488297 4.265866408531684 2.73773186676205 4.297427948320241 3.201644465293737 5.44874766786911 2.036131675611467 5.289309405852778 2.102497103108806 5.908260563923147 3.034311935547308 5.238326230219618 1.487875929105176 5.071713689974774 1.533491951675666 5.455634220373443 1.92359810915547 5.961466416325745 3.111003021527154 5.799683556714631 3.158588099668047 6.157026842955437 3.572135238052842 6.155552762072252 4.004986074229297 5.991977498616147 3.994577086405462 6.102338909262918 4.338121338358671 6.111197565143103 4.570475749670344 5.943923440480776 4.578781900045646 6.13932621225063 5.17824259034208 6.137747467825764 5.091185061900924 5.970467508847646 5.090572949560249 6.23799435261363 5.743683457483806 6.257702125498454 5.614333098042479 6.089209544512898 5.639527272863173 6.439857234582204 6.489474903673819 6.450219087665467 6.324748101400834 6.279722914979196 6.367584550843858 7.272565028641802 9.334630861843838</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID1007\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1003\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1001\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1002\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1003\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1004\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 1 7 6 8 7 8 4 7 9 6 10 9 11 10 12 11 13 12 14 13 15 14 14 13 16 15 15 14 15 14 16 15 17 16 16 15 18 17 17 16 18 17 19 18 17 16 17 16 19 18 12 11 12 11 19 18 10 9 19 18 20 19 10 9 10 9 20 19 21 20 21 20 20 19 22 21 22 21 20 19 23 22 20 19 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 19 27 22 29 19 30 21 30 21 29 19 31 20 31 20 29 19 32 9 32 9 29 19 33 18 32 9 33 18 34 11 34 11 33 18 35 16 35 16 33 18 36 17 35 16 36 17 37 15 35 16 37 15 38 14 38 14 37 15 39 13 38 14 39 13 40 12 34 11 41 10 32 9 42 25 8 26 6 27 7 27 9 26 43 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 44 33 49 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 56 38 61 39 62 39 57 38 63 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 78 49 74 50 79 51 80 51 77 50 81 49 82 52 79 53 83 54 84 54 80 53 85 52 86 55 83 56 87 57 88 57 84 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 90 62 94 63 46 64 94 63 90 62 93 62 95 63 47 64 95 63 93 62 92 61 42 65 91 66 8 67 9 67 92 66 43 65 46 68 45 69 94 70 95 70 48 69 47 68 44 71 51 72 45 73 48 73 52 72 49 71 54 74 56 75 60 76 63 76 57 75 59 74 96 77 55 78 54 79 59 79 58 78 97 77 60 80 61 81 65 82 66 82 62 81 63 80 98 83 69 84 68 85 73 85 72 84 99 83 68 86 70 87 75 88 76 88 71 87 73 86 75 89 74 90 78 91 81 91 77 90 76 89 78 92 79 93 82 94 85 94 80 93 81 92 82 95 83 96 86 97 89 97 84 96 85 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1008\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1009\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID1013\">-0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID1013\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1010\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID1014\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.665978872098829 -0.4946710441241405 0.5583660985617809 -0.6729749463518688 -0.637361758729642 0.3753327991153409 -0.6631686390966892 -0.5040032000643614 0.5533426880727064 0.6631686390966892 0.5040032000643614 -0.5533426880727064 0.6729749463518688 0.637361758729642 -0.3753327991153409 0.665978872098829 0.4946710441241405 -0.5583660985617809 -0.6113023930812731 -0.4665479271234981 0.6392514496736599 -0.6144927450388785 -0.4648298128754873 0.6374416925152632 0.6144927450388785 0.4648298128754873 -0.6374416925152632 0.6113023930812731 0.4665479271234981 -0.6392514496736599 -0.6113024351803775 0.02089648161452121 -0.7911211473590341 -0.6629772102952537 -0.05946182801509716 -0.7462744197935675 -0.6144856224526448 0.02115082100305797 -0.788644446230291 0.6144856224526448 -0.02115082100305797 0.788644446230291 0.6629772102952537 0.05946182801509716 0.7462744197935675 0.6113024351803775 -0.02089648161452121 0.7911211473590341 -0.6729865574698508 -0.2722723663025976 -0.6877185848970954 -0.6657964087760006 -0.04905406275857674 -0.7445192012217402 0.6657964087760006 0.04905406275857674 0.7445192012217402 0.6729865574698508 0.2722723663025976 0.6877185848970954 -0.6289126479749136 -0.4316287370285187 -0.6466571847496542 -0.6701219898639051 -0.2700944235726152 -0.6913649695029515 0.6701219898639051 0.2700944235726152 0.6913649695029515 0.6289126479749136 0.4316287370285187 0.6466571847496542 -0.625235720980833 -0.6900477813844846 -0.3645742072828637 -0.6193536905515095 -0.6949069317223108 -0.3653838560261096 -0.6585492725804401 -0.7117353213657445 -0.2444293106486486 0.6585492725804401 0.7117353213657445 0.2444293106486486 0.6193536905515095 0.6949069317223108 0.3653838560261096 0.625235720980833 0.6900477813844846 0.3645742072828637 -0.6194174598878585 -0.7727236736317268 -0.1386367000298329 -0.6252889641002037 -0.7683994078132589 -0.1362940257191311 0.6252889641002037 0.7683994078132589 0.1362940257191311 0.6194174598878585 0.7727236736317268 0.1386367000298329 -0.6289491677379813 -0.7378166084535101 0.2450501921889897 -0.6701143216290043 -0.6378674916840043 0.3795679899576043 0.6701143216290043 0.6378674916840043 -0.3795679899576043 0.6289491677379813 0.7378166084535101 -0.2450501921889897 -0.6220235325541719 -0.4367230682693095 -0.6498920576451671 0.6220235325541719 0.4367230682693095 0.6498920576451671 -0.66322861238516 -0.7078364633944363 -0.2430953492004979 0.66322861238516 0.7078364633944363 0.2430953492004979 -0.6220739496306955 -0.7438120858740276 0.2444740928986038 0.6220739496306955 0.7438120858740276 -0.2444740928986038</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID1014\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1012\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID1015\">-13.1400950603756 1.173564403059267 -10.40627893432769 1.124434441577344 -13.15255137381423 0.9279589001163017 -10.27307042155825 0.8681266778283273 -9.189994418622993 1.264051624233875 -9.003990750986796 1.048556618282334 -8.631364655027486 1.58133806218634 -8.32989678897887 1.389732320018504 -8.138397114707948 2.229419222292963 -8.021211049481213 2.979020818746164 -7.899110943071706 3.579476892421579 -7.825205836228406 2.14481334522609 -7.633701656418383 2.984495669372309 -11.2648379224095 5.469276533528866 -11.08282841508071 5.669081998703718 -9.064802010625483 4.197342553950783 -8.759556250140577 4.335206239657886 -8.214175023921374 3.499343108218881 -9.293499526711592 4.817014898978647 -8.826029735810842 3.819095263127729 -9.479935146563065 4.69355806947108 -9.598333715416914 4.269996002902563 -11.4451814866472 6.004559867052301 -11.27238326129256 6.122746934237442 -12.99649077872279 3.548711561631994 -10.11869071105481 3.450892066657108 -13.01122109678588 3.368945949801105 -10.93441203049134 1.86609666716912 -9.691000544009365 2.135289745490901 -10.9099599054405 1.675370038626291 -9.373139815182823 0.7689770988787354 -9.807669465111511 0.1722143048301494 -9.948650378751601 0.3300733873617702 -8.577158506658666 0.2520704532656712 -8.784749024975916 0.3368814101118945 -8.44894854732777 1.148049050310268 -8.283231792898336 1.754479953103737 -8.163454103892477 2.60234989713821 -7.929857688637407 2.612187149318454 -8.393267123014773 3.395516742139427 -8.575064803892623 4.009635864995857 -8.347904821053195 4.082333036170931 -9.538143212337962 4.122019508445817 -9.712549747783164 3.988124977535597 -11.4967703490366 5.776114209361791 -8.635265013996062 3.840908182472945 -8.857708853722354 3.759685808930915 -9.336631246940229 4.75423905497862 -10.099789347737 3.347976657609713 -10.11874372708642 3.156863270877688 -12.99262703403099 3.273043651450185 -10.88782026707182 1.734216017891711 -9.664307303095521 2.186591215072741 -9.576302614795329 2.006517442139522 -9.715984028727405 -0.1838898453009026 -9.313113161111691 0.4264642055287746 -9.120028776210594 0.3225903730954203 -8.362142656158987 1.254366929361164 -8.748456669163948 0.4045346212719758 -8.597687662062889 1.298337143620016 -7.995450381775688 3.494271011514753 -8.229032362201163 3.484223882823618 -8.171197827192739 4.170460074055694 -8.20339914665017 1.799521614731336 -8.439711847109324 1.84086418270131 -8.079339290991934 2.696767466467675</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID1015\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1011\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1009\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1010\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"64\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1011\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1012\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 9 9 10 10 8 8 7 7 8 8 11 11 8 8 10 10 11 11 12 12 11 11 10 10 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 10 10 17 17 9 9 17 17 10 10 18 10 19 17 20 9 19 17 18 10 21 16 19 17 21 16 22 15 22 15 21 16 23 14 22 15 23 14 24 13 18 10 25 11 26 12 25 11 18 10 27 8 25 11 27 8 28 7 27 8 18 10 20 9 28 7 27 8 29 6 28 7 29 6 30 5 30 5 29 6 31 4 30 5 31 4 32 3 32 3 31 4 33 1 32 3 33 1 34 2 34 2 33 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 38 21 42 22 43 23 44 23 45 22 39 21 46 24 47 25 48 26 49 26 50 25 51 24 47 27 52 28 53 29 54 29 55 28 50 27 56 30 57 31 52 32 55 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 62 36 66 37 67 38 68 38 69 37 63 36 70 39 37 40 71 41 72 41 40 40 73 39 36 42 38 43 43 44 44 44 39 43 41 42 71 45 37 46 36 47 41 47 40 46 72 45 47 48 53 49 48 50 49 50 54 49 50 48 53 51 52 52 57 53 58 53 55 52 54 51 57 54 56 55 74 56 75 56 59 55 58 54 76 57 60 58 62 59 63 59 65 58 77 57 78 60 70 61 71 62 72 62 73 61 79 60 76 63 62 64 67 65 68 65 63 64 77 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1016\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1017\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1021\">-0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.36399123050046 -0.05397436236353959</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1021\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1018\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1022\">-0.1088382594273443 -0.0230925907380549 0.9937912082212393 -0.1152576241861024 -0.03911071598773939 0.9925653791876389 -0.1164223673367788 -0.03939636620354328 0.9924181370338092 0.1164223673367788 0.03939636620354328 -0.9924181370338092 0.1152576241861024 0.03911071598773939 -0.9925653791876389 0.1088382594273443 0.0230925907380549 -0.9937912082212393 -0.1108273234566798 -0.02565555069468248 0.9935084786220906 0.1108273234566798 0.02565555069468248 -0.9935084786220906 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170010640450718 -0.01171259707753706 0.993062720114908 0.1170010640450718 0.01171259707753706 -0.993062720114908 -0.49707423312389 0.2193373097837861 0.8395286482908776 -0.3523453743815874 0.2761690730154793 0.8941942631563176 -0.3063605024253654 0.292841831319583 0.9057521208272551 0.3063605024253654 -0.292841831319583 -0.9057521208272551 0.3523453743815874 -0.2761690730154793 -0.8941942631563176 0.49707423312389 -0.2193373097837861 -0.8395286482908776 -0.514413700169338 0.2117991293092924 0.830975134346339 -0.5580248035340664 0.2172606952515568 0.8008783359159973 0.5580248035340664 -0.2172606952515568 -0.8008783359159973 0.514413700169338 -0.2117991293092924 -0.830975134346339 -0.545145087248696 0.2436486159674788 0.8021547143698301 -0.5582941772828572 0.2203572971939314 0.7998439055124711 0.5582941772828572 -0.2203572971939314 -0.7998439055124711 0.545145087248696 -0.2436486159674788 -0.8021547143698301 -0.1366090766113033 0.0492215304934492 0.9894014357798807 -0.1321734375085311 0.04191912395636385 0.9903398252437945 -0.131888714653345 0.05687624445573066 0.9896314767446013 0.131888714653345 -0.05687624445573066 -0.9896314767446013 0.1321734375085311 -0.04191912395636385 -0.9903398252437945 0.1366090766113033 -0.0492215304934492 -0.9894014357798807 -0.1269026228341467 0.03033545622924269 0.9914512012263529 -0.1289755249516954 0.04693082498186052 0.9905366281112257 0.1289755249516954 -0.04693082498186052 -0.9905366281112257 0.1269026228341467 -0.03033545622924269 -0.9914512012263529 -0.124092777366998 0.0076289036136885 0.992241292446045 -0.126060444224836 0.03090911601848133 0.9915409174354799 -0.1257051481658395 0.006141985696806098 0.9920486337555757 0.126060444224836 -0.03090911601848133 -0.9915409174354799 0.1257051481658395 -0.006141985696806098 -0.9920486337555757 0.124092777366998 -0.0076289036136885 -0.992241292446045 -0.121164189425585 -0.01572761942446628 0.9925078746227056 0.121164189425585 0.01572761942446628 -0.9925078746227056 -0.6307579737542808 0.02590113406437414 0.7755472324749624 -0.6328191074081528 0.02571473448560696 0.7738725539321597 -0.5535966397540385 0.007327883701034462 0.8327527019310723 0.5535966397540385 -0.007327883701034462 -0.8327527019310723 0.6328191074081528 -0.02571473448560696 -0.7738725539321597 0.6307579737542808 -0.02590113406437414 -0.7755472324749624 -0.5497328291718073 0.003855971050269636 0.8353316395408592 -0.50401691956796 -0.04154329558212729 0.8626940937443589 0.50401691956796 0.04154329558212729 -0.8626940937443589 0.5497328291718073 -0.003855971050269636 -0.8353316395408592 -0.4610763548051719 -0.1461813753387184 0.8752368825316127 -0.4985583850107261 -0.04209033687011798 0.8658336677894066 0.4985583850107261 0.04209033687011798 -0.8658336677894066 0.4610763548051719 0.1461813753387184 -0.8752368825316127 -0.4568954263623595 -0.3661495419449712 0.8106670600824024 -0.4574584754158474 -0.1372954494769191 0.8785679841783102 0.4574584754158474 0.1372954494769191 -0.8785679841783102 0.4568954263623595 0.3661495419449712 -0.8106670600824024 -0.4286977599895537 -0.5231200390841958 0.736589203890804 -0.4541605407154716 -0.3875438698506286 0.8022144053794031 0.4541605407154716 0.3875438698506286 -0.8022144053794031 0.4286977599895537 0.5231200390841958 -0.736589203890804 -0.4272529523562543 -0.5230063251151536 0.7375088464502692 0.4272529523562543 0.5230063251151536 -0.7375088464502692 -0.5412401970068317 0.2456900208751192 0.8041737764851509 0.5412401970068317 -0.2456900208751192 -0.8041737764851509</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1022\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1020\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID1023\">-9.982481491239387 -0.7801007211882352 -14.09510292357247 -0.5039355294692868 -13.80735445879598 0.2458649066213103 -10.34526016737302 -1.466008715794491 -14.09879580861296 -0.4405539083059194 -9.988301163081676 -0.7356641740735505 -13.10922761281063 -0.5571905098427091 -13.13740525360347 0.1403214759947992 -9.196091163788671 -0.4549016494423948 -9.166790892866176 0.02237652469014133 -8.050713318734761 -0.478223336087835 -7.941139361618053 0.004288303168351604 -7.188240519124049 -0.5334174714432312 -7.090320138584049 -0.006447222908070464 -6.450420964679379 -0.6826635284399174 -6.082881246769018 -0.8890069299183254 -5.643938497996714 0.02538830541298317 -5.545750788810404 -0.7523932208971403 -4.316527116072848 0.05807392568797635 -4.257382154934284 -0.4900517056751142 -3.709288218786411 0.08183865699999136 -3.661200976693986 -0.3512310434882693 -8.25892496550161 -2.716294787433218 -9.56365659142571 -3.414782035487321 -9.444849024834038 -2.637915891572029 -0.4501075387385644 -5.702039180101661 -0.760980155205736 -6.138226240003666 -0.8383862270638492 -6.024387405365547 -3.036946117474684 -5.046749768110493 -3.11972454521867 -4.927496814587837 -1.931797432665722 -4.455539334599414 -1.39198761903897 -4.060249812509751 -1.840201626763001 -4.405347099302408 -1.942059996843278 -4.288237917025894 -1.743825325723805 -4.738097079607221 -2.315112412340436 -4.901759201329516 -2.072054116570976 -3.996942288506867 -3.006142084263772 -4.677607628037944 -4.29745234114743 -4.921683762233218 -3.210764357994353 -3.909876114437887 -6.045846395112246 -4.351127992404424 -4.63326543236224 -4.104402683678466 -5.817027785622174 -5.11390335315071 -4.404478357282174 -4.86718369880627 -7.68254055900837 -3.291082013018551 -8.526584459177135 -3.206102051772249 -7.574657362153948 -2.511963867763529 -8.639203837906873 -3.01900298997022 -9.850251925139794 -2.869509604712622 -8.486035206263603 -2.245302060931764 -12.8594219210069 -3.959341569141119 -12.88930466061255 -3.809766395600264 -8.979394940552526 -3.648259713923244 -9.376131742660215 -3.534536530901836 -9.391545189087976 -3.394260442828891 -8.247053604057138 -3.436684447776327 -7.8341142891939 -3.053992018602209 -8.7058236215713 -3.078954991981029 -8.688221694559164 -2.944754120167723 -8.040918009984427 -1.609661502807112 -8.793910115866449 -1.430479012716069 -8.706594682299912 -1.318227486458866 -7.846467309198026 0.203731956450229 -8.204757539203133 0.4184993788204998 -8.080882217779717 0.5073250354274762 -7.973663933481603 0.1708422317066539 -8.193916486682584 0.4584273007660447 -7.836967917690922 0.2422817623004304 -3.102673325396043 -5.034591316029415 -3.657392430113825 -5.248806784060694 -3.184266115108013 -4.914833768129049 -2.162892915154069 -4.393783806136414 -3.394592342438381 -4.827589234947812 -2.258730892786211 -4.273571014922622 -1.124263670823358 -4.256400851632963 -1.64240444746631 -4.486484675650029 -1.204920604791744 -4.132968849313659 -1.707878264920318 -5.051978381616294 -2.106744346024158 -4.33304282629061 -1.573574662755514 -4.13323415933467 -3.055364651970826 -3.986730453637497 -4.102647352655998 -5.023934951648005 -4.376892342551905 -4.270486949557792 -8.304432996410977 -3.546277958346702 -8.22936812025759 -2.7654805562517 -7.39868796456141 -2.814896261844453 -8.85003260959982 -4.105813515261139 -12.75388280914387 -4.321676615539797 -8.87990583956584 -3.966989383531663 -8.18877059368268 -3.727801701899872 -9.315494873795004 -3.699917069303213 -8.187762571847973 -3.592890692650113 -7.860413932309075 -3.269408970252542 -8.686391782372066 -3.170572816674207 -7.814820248641656 -3.142791349253691 -8.113196821760255 -1.740424407903711 -8.789396298041625 -1.445615269068238 -8.035881586078531 -1.62343299194266</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID1023\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1019\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1017\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1018\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1019\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1020\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 9 7 10 8 9 7 11 9 10 8 10 8 11 9 12 10 11 9 13 11 12 10 12 10 13 11 14 12 13 11 15 13 14 12 14 12 15 13 16 14 16 14 15 13 17 15 15 13 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 15 30 15 29 16 31 13 30 15 31 13 32 14 32 14 31 13 33 12 33 12 31 13 34 11 33 12 34 11 35 10 35 10 34 11 36 9 35 10 36 9 37 8 37 8 36 9 38 7 37 8 38 7 39 6 40 22 6 23 0 24 5 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 42 29 49 30 50 30 47 29 51 28 52 31 53 32 49 33 50 33 54 32 55 31 56 34 57 35 58 36 59 36 60 35 61 34 57 37 62 38 63 39 64 39 65 38 60 37 66 40 67 41 68 42 62 43 68 42 67 41 69 41 70 42 65 43 70 42 69 41 71 40 68 44 72 45 66 46 71 46 73 45 70 44 72 47 6 48 40 49 41 49 7 48 73 47 74 50 75 51 76 52 77 52 78 51 79 50 80 53 76 54 81 55 82 55 77 54 83 53 84 56 85 57 81 58 82 58 86 57 87 56 88 59 89 60 84 61 87 61 90 60 91 59 92 62 93 63 88 64 91 64 94 63 95 62 96 65 93 66 92 67 95 67 94 66 97 65 48 68 43 69 42 70 47 70 46 69 51 68 53 71 48 72 49 73 50 73 51 72 54 71 98 74 53 75 52 76 55 76 54 75 99 74 57 77 63 78 58 79 59 79 64 78 60 77 63 80 62 81 67 82 69 82 65 81 64 80 72 83 40 84 66 85 71 85 41 84 73 83 80 86 74 87 76 88 77 88 79 87 83 86 85 89 80 90 81 91 82 91 83 90 86 89 89 92 85 93 84 94 87 94 86 93 90 92 93 95 89 96 88 97 91 97 90 96 94 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1024\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1025\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1029\">-0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1029\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1026\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1030\">-0.1164251204271865 0.5786308311400867 -0.8072369866325796 -0.1152614763458105 0.5789463800012497 -0.8071777258782806 -0.1088481568860517 0.5923386087106918 -0.7983026063925831 0.1088481568860517 -0.5923386087106918 0.7983026063925831 0.1152614763458105 -0.5789463800012497 0.8071777258782806 0.1164251204271865 -0.5786308311400867 0.8072369866325796 -0.1108311632331452 0.590147562033904 -0.7996513667104105 0.1108311632331452 -0.590147562033904 0.7996513667104105 -0.1169877446230861 0.6008761854127825 -0.7907348970494391 0.1169877446230861 -0.6008761854127825 0.7907348970494391 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211500310125118 0.5973661817498072 -0.7927649808659082 0.1211500310125118 -0.5973661817498072 0.7927649808659082 -0.1268970330673193 0.6330602330777329 -0.763630725085285 -0.1321771951964776 0.641516467688795 -0.7556360306087073 -0.1289733966194932 0.6455983790150909 -0.7527075102438648 0.1289733966194932 -0.6455983790150909 0.7527075102438648 0.1321771951964776 -0.641516467688795 0.7556360306087073 0.1268970330673193 -0.6330602330777329 0.763630725085285 -0.1366192134527518 0.6467025975280807 -0.7504071833784541 -0.1318920760546484 0.6528924852832206 -0.7458792683368364 0.1318920760546484 -0.6528924852832206 0.7458792683368364 0.1366192134527518 -0.6467025975280807 0.7504071833784541 -0.5451959861481726 0.685035348561869 -0.4832058649360955 -0.5581385279990985 0.6633895104200506 -0.4983931590899352 -0.5584055108423882 0.6651998527735585 -0.4956737246726797 0.5584055108423882 -0.6651998527735585 0.4956737246726797 0.5581385279990985 -0.6633895104200506 0.4983931590899352 0.5451959861481726 -0.685035348561869 0.4832058649360955 -0.4970796441004287 0.6888461887919656 -0.5276388496005341 -0.5144129314214905 0.6776483658738426 -0.5255207210137955 0.5144129314214905 -0.6776483658738426 0.5255207210137955 0.4970796441004287 -0.6888461887919656 0.5276388496005341 -0.3065368645499978 0.7874550645024714 -0.5347426222597793 -0.3524751158962745 0.7672119047738485 -0.5358611628464889 0.3524751158962745 -0.7672119047738485 0.5358611628464889 0.3065368645499978 -0.7874550645024714 0.5347426222597793 -0.454140017835944 0.1871034341906217 -0.8710620810906903 -0.4286959899151095 0.03977866415051463 -0.9025726597394278 -0.4568675187823961 0.2091268429512146 -0.864602818546687 0.4568675187823961 -0.2091268429512146 0.864602818546687 0.4286959899151095 -0.03977866415051463 0.9025726597394278 0.454140017835944 -0.1871034341906217 0.8710620810906903 -0.4610330568129479 0.4223904034843316 -0.7804068602786966 -0.4574112545118764 0.4314471465815102 -0.7775784873262276 0.4574112545118764 -0.4314471465815102 0.7775784873262276 0.4610330568129479 -0.4223904034843316 0.7804068602786966 -0.4985686990456941 0.4987245144832661 -0.7090155929070352 -0.5040287169911085 0.4972319905766404 -0.7061978476287568 0.5040287169911085 -0.4972319905766404 0.7061978476287568 0.4985686990456941 -0.4987245144832661 0.7090155929070352 -0.5535723758972673 0.5174191484113569 -0.6525603799655021 -0.5497106232233426 0.5162657272219958 -0.6567251553057397 0.5497106232233426 -0.5162657272219958 0.6567251553057397 0.5535723758972673 -0.5174191484113569 0.6525603799655021 -0.6307511085987073 0.4969187375520394 -0.5960073886045282 -0.6328126226365115 0.4957425846370723 -0.5948003651724295 0.6328126226365115 -0.4957425846370723 0.5948003651724295 0.6307511085987073 -0.4969187375520394 0.5960073886045282 -0.1257030963027143 0.6143256787305055 -0.7789754116993772 -0.1240850473728673 0.6156224677283072 -0.7782106901389768 0.1240850473728673 -0.6156224677283072 0.7782106901389768 0.1257030963027143 -0.6143256787305055 0.7789754116993772 -0.1260524294574446 0.6335694907637545 -0.7633482071775848 0.1260524294574446 -0.6335694907637545 0.7633482071775848 -0.5412748879965412 0.687898621088518 -0.4835462570725241 0.5412748879965412 -0.687898621088518 0.4835462570725241 -0.4272470439601668 0.04043528853901111 -0.9032302867309456 0.4272470439601668 -0.04043528853901111 0.9032302867309456</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1030\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1028\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID1031\">1.998937623161384 10.76476841980763 2.986714499689779 10.86290628058702 2.646808655273745 7.626911531842514 3.137910672426441 10.83666032021479 3.73149548145001 7.745943970176235 2.753392543137154 7.603757279601984 2.820184296480023 7.581971421901169 3.799485555325677 7.718958628996464 2.986360958528956 6.654920534525154 -10.45577002727441 6.283216928777442 -9.888780236097874 6.819957862866433 -7.230760792342645 4.457246732780551 -6.88113622380909 4.847979343375632 -6.249633121797126 3.879151418789206 -5.959241747873955 4.31281594366269 -5.569883206520585 3.476406390468299 -5.235605254682731 3.939530432036485 -4.53685698336594 3.700681803303125 -4.453542058358801 2.75223422874128 -4.08577743896114 3.685864912838015 -3.76863480279438 3.318475734997433 -3.431737630961593 2.084911934129343 -2.971172988345912 1.772671627247351 -2.95700400690178 2.488800756097747 -2.594993336245468 2.091126521667093 3.625763036746231 7.771438100407487 3.81895079101609 6.819175129102827 2.835843568044133 6.696637019396241 4.147409147623762 5.020072757806616 4.353287423553801 3.987980441594453 3.373113844173326 3.843845654733742 4.329822052382522 3.988576604581577 4.425017633747888 3.516183683878827 3.441920088820501 3.382462419447546 2.288473777971453 3.838233246252393 2.056359603288195 4.291999654325147 2.230352107905733 4.329484501746936 2.335103140462541 4.369785709347631 1.846819489349988 5.343682783349156 2.009452657357155 5.389437917116684 3.432423115070612 5.067446679764254 3.317376742139041 5.502219060815397 3.459288365190417 5.567061823306501 -4.027123668961578 5.648598042583979 -3.625507904080766 5.488165434978679 -4.074900648768324 5.522217060790011 -1.028756012507091 6.944701516300213 -0.9192721422585309 7.044197939014103 -0.4737934490769319 6.534086009615941 -0.6357437305888969 7.514537810738175 -0.2529975353390784 6.897934716972006 -0.7779385115273918 7.439108605446435 -1.653891145271553 8.049854498656151 -1.497398853673659 8.118176192147216 -0.9697804840218809 7.326856963524517 -4.443807657891354 10.31154936901565 -2.240674467155615 7.779841628900575 -4.608304711025181 10.23293734499374 3.75622254964643 6.838662211659464 3.895902912319825 6.178304156875717 2.910250464513155 6.064224792957607 2.9733499521145 6.025115824772509 3.960090801378393 6.133215747935012 3.191931818886059 4.899905221596626 4.178668992404626 5.008016229071481 2.853014213669746 6.688899456137831 3.836421506115961 6.809938349919037 2.981756068882562 6.041430594450256 3.19913319123502 4.893302521149462 4.186013224173247 5.000603531797977 3.403561010679153 3.827721629442527 3.408140364595802 3.806695969447152 4.38943376548893 3.946035659923494 3.493767507501942 3.347032692092354 2.168577740868163 4.427932373500567 1.994848645956156 4.389698935824643 1.628068030784827 5.400671769098429 2.605226202472054 3.872011356930058 2.442902545374851 3.817638953721654 2.393635605078873 4.309488781848157 1.995011165963287 5.404459939837887 1.832450069184318 5.358546584306009 1.76553688369938 5.855830345560892 -3.982493890322007 5.661270718905809 -3.558007158969994 5.626281209275753 -3.582332382251634 5.498604840327278 -0.9689320567369109 7.039776299560601 -0.4026134045726859 6.625773062040189 -0.5199101826953312 6.531590478244566 -0.01524134949612947 7.554529442168967 0.4484293081867797 7.007795171809001 0.3219388629227055 6.921678714189059 -0.9145523620121765 8.201304268657363 -0.2892066006479271 7.463461634669913 -0.4343023409365476 7.391532441464667 -3.35620196045869 10.62525094866661 -1.205987261730729 8.052971772803227 -1.364385652116661 7.987424724987632</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID1031\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1027\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1025\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1026\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1027\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1028\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 2 6 6 7 8 8 9 8 7 7 3 6 10 9 11 10 12 11 11 10 13 12 12 11 12 11 13 12 14 13 13 12 15 14 14 13 14 13 15 14 16 15 15 14 17 16 16 15 17 16 18 17 16 15 16 15 18 17 19 18 18 17 20 19 19 18 20 19 21 20 19 18 19 18 21 20 22 21 22 21 21 20 23 22 21 20 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 20 27 22 29 20 30 21 30 21 29 20 31 18 31 18 29 20 32 19 31 18 32 19 33 17 31 18 33 17 34 15 34 15 33 17 35 16 34 15 35 16 36 14 34 15 36 14 37 13 37 13 36 14 38 12 37 13 38 12 39 11 39 11 38 12 40 10 39 11 40 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 55 37 60 38 61 39 62 39 63 38 58 37 60 40 64 41 65 42 66 42 67 41 63 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 70 48 71 48 76 47 77 46 78 49 74 50 79 51 80 51 77 50 81 49 82 52 83 53 79 54 80 54 84 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 90 62 94 63 44 64 94 63 90 62 93 62 95 63 49 64 95 63 93 62 92 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 56 74 55 75 61 76 62 76 58 75 57 74 96 77 54 78 56 79 57 79 59 78 97 77 61 80 60 81 65 82 66 82 63 81 62 80 68 83 98 84 69 85 72 85 99 84 73 83 75 86 68 87 70 88 71 88 73 87 76 86 78 89 75 90 74 91 77 91 76 90 81 89 83 92 78 93 79 94 80 94 81 93 84 92 86 95 83 96 82 97 85 97 84 96 89 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1032\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1033\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1037\">-0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.9795942854452735 0.8749769468548716</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1037\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1034\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1038\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1038\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1036\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID1039\">-19.59188570890547 13.76630396384998 -19.04886463418979 14.25191163615645 -13.60830466398959 9.797102239768163 -13.18353596539283 10.30339123710937 -11.80775011326652 8.729689492795748 -11.41290570274134 9.284142171201117 -10.42232541141175 7.994811895109255 -10.02743369272711 8.549250986811536 -9.003512412931656 7.511347968262671 -8.858556458189856 8.193395738456855 -8.150745295211088 7.481316037858777 -7.717772010128141 8.570258983447072 -7.390247861223824 6.714910200247886 -6.853807126191143 9.252082277676843 -6.540672166948984 11.6205228613906 -6.227565367325356 8.494179944032663 -5.726108265179133 5.043303854792981 -5.553161274050962 7.679445612741617 -5.041763826525845 4.277439417764588 -4.306234587730349 4.811018489749948 -4.083905012052296 5.898375335431962 -3.385471377541194 5.140468275977997 -10.82793655825754 18.80162710738276 -10.06778605077227 19.04794340165244 -7.985814033393162 13.15527448152569 -7.335486789514798 11.50684232576269 -7.239162120697529 13.30684774139463 -6.901978847139394 10.23735513419642 -6.107060972638583 10.3510451214439 -5.98671614912405 9.138399969870253 -3.053530486319291 5.175522560721952 -3.113782683662678 4.247089972016331 -2.993358074562025 4.569199984935127 -3.270336083474492 5.8102614306953 -3.450989423569697 5.118677567098211 -3.426903563095571 4.626041138838422 -3.619581060348764 6.653423870697313 -3.667743394757399 5.753421162881343 -5.033893025386136 9.52397170082622 -3.992907016696581 6.577637240762844 -5.413968279128769 9.400813553691382 -2.041952506026148 2.949187667715981 -2.153117293865174 2.405509244874974 -1.692735688770597 2.570234137988999 -2.776580637025481 3.839722806370808 -2.520881913262922 2.138719708882294 -2.863054132589566 2.521651927396491 -3.695123930611912 3.357455100123943 -3.858886005064071 4.285129491723536 -4.075372647605544 3.740658018929389 -4.429278229094928 4.096697869228428 -4.501756206465828 3.755673984131335 -5.013716846363556 4.274625493405768 -5.211162705705876 3.997405947554627 -5.706452851370669 4.642071085600558 -5.903875056633261 4.364844746397874 -6.591767982696415 5.151695618554686 -6.804152331994795 4.898551119884082 -9.524432317094897 7.125955818078223 -9.795942854452735 6.88315198192499</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1039\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1035\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1033\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1034\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1035\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1036\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 3 3 5 5 4 4 4 4 5 5 6 6 5 5 7 7 6 6 6 6 7 7 8 8 7 7 9 9 8 8 8 8 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 11 11 13 13 12 12 14 14 15 15 13 13 13 13 15 15 12 12 12 12 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 18 18 17 17 19 19 17 17 20 20 19 19 21 21 19 19 20 20 22 22 23 23 24 24 24 24 23 23 25 25 23 23 26 26 25 25 25 25 26 26 27 27 26 26 14 14 27 27 13 13 27 27 14 14 14 14 28 28 15 15 29 29 15 15 28 28</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1035\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1036\" />\r\n\t\t\t\t\t<p>30 30 31 31 32 32 31 31 30 30 33 33 33 33 34 34 35 35 34 34 33 33 36 36 34 34 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 39 39 38 38 40 40 41 41 42 42 43 43 42 42 41 41 44 44 42 42 44 44 45 45 45 45 44 44 46 46 46 46 44 44 31 31 46 46 31 31 47 47 47 47 31 31 35 35 35 35 31 31 33 33 47 47 35 35 48 48 47 47 48 48 49 49 49 49 48 48 50 50 49 49 50 50 51 51 51 51 50 50 52 52 51 51 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 55 55 54 54 56 56 55 55 56 56 57 57 57 57 56 56 58 58 57 57 58 58 59 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1040\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1041\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID1045\">-0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID1045\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1042\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID1046\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.672990936518585 0.2791484701318099 -0.6849520647365829 -0.6630700206644244 0.06601587505827476 -0.7456406989538392 -0.6658812119562829 0.05557583132515614 -0.7439849047770725 0.6658812119562829 -0.05557583132515614 0.7439849047770725 0.6630700206644244 -0.06601587505827476 0.7456406989538392 0.672990936518585 -0.2791484701318099 0.6849520647365829 -0.6113304972219287 -0.01491894967988539 -0.791234761690131 -0.6145075341081261 -0.01519103171901108 -0.7887646816888181 0.6145075341081261 0.01519103171901108 0.7887646816888181 0.6113304972219287 0.01491894967988539 0.791234761690131 -0.6113858088080906 0.4608262320043037 0.643309083322156 -0.6630483910174163 0.498855229375798 0.5581310699948852 -0.6145579693011508 0.4591343117628982 0.6414937148019891 0.6145579693011508 -0.4591343117628982 -0.6414937148019891 0.6630483910174163 -0.498855229375798 -0.5581310699948852 0.6113858088080906 -0.4608262320043037 -0.643309083322156 -0.6658642050055886 0.4894684515523368 0.563067931449868 -0.6730103961097779 0.633535161008159 0.3816938648898171 0.6730103961097779 -0.633535161008159 -0.3816938648898171 0.6658642050055886 -0.4894684515523368 -0.563067931449868 -0.6288817366873886 0.7353849506127249 0.2524217416812069 -0.6701444240931888 0.6340128793903517 0.3859198357482596 0.6701444240931888 -0.6340128793903517 -0.3859198357482596 0.6288817366873886 -0.7353849506127249 -0.2524217416812069 -0.6193201491348418 0.7741457966357958 -0.1309230248150662 -0.658578304891523 0.7141210938325098 -0.2372881785291209 -0.6252123795686114 0.7697839976649213 -0.1286160074530658 0.6252123795686114 -0.7697839976649213 0.1286160074530658 0.658578304891523 -0.7141210938325098 0.2372881785291209 0.6193201491348418 -0.7741457966357958 0.1309230248150662 -0.6193894345161001 0.698494696426414 -0.3584158024892286 -0.6252712636549731 0.6936274305614512 -0.3576546300833142 0.6252712636549731 -0.6936274305614512 0.3576546300833142 0.6193894345161001 -0.698494696426414 0.3584158024892286 -0.6701291299022093 0.2769832769238545 -0.6886270496872973 -0.6289250440898284 0.438067046954839 -0.6423009818526467 0.6289250440898284 -0.438067046954839 0.6423009818526467 0.6701291299022093 -0.2769832769238545 0.6886270496872973 -0.6219814506780375 0.7414065190456863 0.2519036492967151 0.6219814506780375 -0.7414065190456863 -0.2519036492967151 -0.6632653245983359 0.7102034419860702 -0.2359876695435651 0.6632653245983359 -0.7102034419860702 0.2359876695435651 -0.6220409688791525 0.4431898766144704 -0.6454825840426184 0.6220409688791525 -0.4431898766144704 0.6454825840426184</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID1046\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1044\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID1047\">7.685815723975792 2.874023367856466 7.958813840120982 3.46689333538805 7.866647783783838 2.032874418182379 8.073268797801365 2.865498302382628 8.18085731407338 2.115010321233234 8.36173593111768 1.273861371559148 8.665601494827795 1.463091360543377 9.031436992618183 0.9274041343529934 9.220172518723757 1.141427050559116 10.29819330692128 0.7370029567927344 10.43461727267754 0.9922419491244857 13.17319575342934 1.025474877244218 13.18256427081902 0.7797863034262775 8.272822123002557 3.384285294404218 8.828758325209945 4.21581308609941 9.132267951340403 4.075553710198706 11.17320201782601 5.536950720255618 11.35265838639835 5.335723967790457 9.743740101464573 1.988437824085204 10.9820680884364 1.705023222924476 10.95406190306286 1.514596294059031 10.18916535332233 3.309702731294755 13.07267779495826 3.379665889560748 13.08422968449263 3.199757330669627 11.53679451320826 5.887322116789082 9.664606296230362 4.161713060886227 11.36545721424794 6.006842844578951 9.357925723043625 4.713345186989823 9.54294143455537 4.58860161283133 8.87938669524374 3.718691191733911 8.621195066914398 3.915152656841173 8.433829724268323 3.302053148008258 8.394680517829666 3.989110993373233 8.192850961276159 2.510608965499221 8.30581624406488 1.662156996532964 7.959361423291862 2.521603384444761 8.797428992253618 0.2377375302496965 8.589066946989393 0.1540948178637264 8.468953380353767 1.050766553539041 9.9650088203073 0.2013483060752452 9.821862682408826 0.04469772784885676 9.395660232283182 0.6451734807435667 10.18010204372508 3.02003618013284 10.16431663537896 3.21133071886602 13.05993379571968 3.110797586965738 9.717512492742973 2.041116121749284 10.93264464736882 1.574955679289271 9.626254877814432 1.862045396082188 11.58740893055048 5.655514610796291 9.776872146541788 3.876144995495381 9.604226472762715 4.0114184348044 9.401641036197944 4.648499728985229 8.911424637990344 3.657371138622741 8.689895478581324 3.740148740343702 8.267186516090369 3.395002083835391 8.033717664007693 3.406265074033831 8.215118084369612 4.081528994233212 8.464930288377673 1.745696425622322 8.228261606106596 1.705594495213734 8.111839397566158 2.603469864687234 9.330301350185701 0.305373195999198 9.724851614784443 -0.308343230978199 9.135802437258771 0.2031367210126086 8.762482845796232 0.3028705175705735 8.384287130441004 1.154964469876548 8.620257114820655 1.19753825098844</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID1047\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1043\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1041\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1042\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"64\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1043\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1044\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 10 10 11 11 9 9 12 12 9 9 11 11 3 3 1 1 13 13 1 1 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 17 17 15 15 16 16 18 16 19 15 20 17 19 15 18 16 21 14 19 15 21 14 22 13 22 13 21 14 23 1 22 13 23 1 24 3 25 11 26 9 27 12 26 9 25 11 28 10 26 9 28 10 29 8 26 9 29 8 30 7 30 7 29 8 31 6 30 7 31 6 32 5 32 5 31 6 33 4 32 5 33 4 34 2 34 2 33 4 24 3 34 2 24 3 23 1 34 2 23 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 37 21 42 22 43 23 44 23 45 22 40 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 47 28 53 29 54 29 50 28 55 27 53 30 56 31 57 32 58 32 59 31 54 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 36 39 70 40 71 41 72 41 73 40 41 39 38 42 37 43 43 44 44 44 40 43 39 42 36 45 38 46 70 47 73 47 39 46 41 45 48 48 47 49 52 50 55 50 50 49 49 48 52 51 53 52 57 53 58 53 54 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 61 57 76 58 62 59 63 59 77 58 64 57 71 60 70 61 78 62 79 62 73 61 72 60 67 63 76 64 61 65 64 65 77 64 68 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1048\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1049\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1053\">-0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1053\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1050\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1054\">-0.1152698562505582 -0.5708457404589754 -0.8129255813663509 -0.1164339797874606 -0.5705294778991202 -0.8129816991784074 -0.1088540514781176 -0.584331089942785 -0.8041815546274835 0.1088540514781176 0.584331089942785 0.8041815546274835 0.1164339797874606 0.5705294778991202 0.8129816991784074 0.1152698562505582 0.5708457404589754 0.8129255813663509 -0.1108435503727157 -0.5821217352458851 -0.8055110133915557 0.1108435503727157 0.5821217352458851 0.8055110133915557 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170176206764311 -0.5929274844702175 -0.7967081489548396 0.1170176206764311 0.5929274844702175 0.7967081489548396 -0.4970751144160029 -0.683545041602595 -0.5344927564792851 -0.5581062161838647 -0.6583968034238775 -0.505006040259074 -0.5144163086132454 -0.6723630224863056 -0.5322629307267247 0.5144163086132454 0.6723630224863056 0.5322629307267247 0.5581062161838647 0.6583968034238775 0.505006040259074 0.4970751144160029 0.683545041602595 0.5344927564792851 -0.5452373970371485 -0.6801451362856548 -0.4900191572368603 -0.5583798869887992 -0.6602297154995238 -0.5023033192980051 0.5583798869887992 0.6602297154995238 0.5023033192980051 0.5452373970371485 0.6801451362856548 0.4900191572368603 -0.1366232935947715 -0.6391496733784974 -0.7568498996944356 -0.1321750213771143 -0.6339255398774245 -0.7620158617870596 -0.1318903393557705 -0.6453922059420187 -0.7523787868447079 0.1318903393557705 0.6453922059420187 0.7523787868447079 0.1321750213771143 0.6339255398774245 0.7620158617870596 0.1366232935947715 0.6391496733784974 0.7568498996944356 -0.1269071717687836 -0.6253899701404045 -0.7699233435878096 -0.1289732790216521 -0.6380369665418767 -0.7591276062852959 0.1289732790216521 0.6380369665418767 0.7591276062852959 0.1269071717687836 0.6253899701404045 0.7699233435878096 -0.1260674500275698 -0.6258988106438125 -0.7696477615625263 -0.1241010714283334 -0.6078068716321187 -0.7843275660507647 -0.1257095939325673 -0.6065122404802681 -0.7850732450803013 0.1241010714283334 0.6078068716321187 0.7843275660507647 0.1257095939325673 0.6065122404802681 0.7850732450803013 0.1260674500275698 0.6258988106438125 0.7696477615625263 -0.1211769958232875 -0.5894025390301889 -0.7986994319942953 0.1211769958232875 0.5894025390301889 0.7986994319942953 -0.630695063396688 -0.4909614247884672 -0.6009830416714983 -0.6327553060025942 -0.489798292648837 -0.5997652501136153 -0.5535679708898417 -0.5108673680079583 -0.6577058870874768 0.5535679708898417 0.5108673680079583 0.6577058870874768 0.6327553060025942 0.489798292648837 0.5997652501136153 0.630695063396688 0.4909614247884672 0.6009830416714983 -0.5497067787296889 -0.5096714306261669 -0.6618591165966555 -0.5040208671260086 -0.4901460352175064 -0.7111398102076026 0.5040208671260086 0.4901460352175064 0.7111398102076026 0.5497067787296889 0.5096714306261669 0.6618591165966555 -0.4609719154458496 -0.4145896076660237 -0.7846147783374444 -0.4985571397014289 -0.4916144428633812 -0.7139720008661804 0.4985571397014289 0.4916144428633812 0.7139720008661804 0.4609719154458496 0.4145896076660237 0.7846147783374444 -0.4573491576022501 -0.4236797699590816 -0.7818741590357953 -0.4568505475577015 -0.2004861491589987 -0.8666561493416083 0.4568505475577015 0.2004861491589987 0.8666561493416083 0.4573491576022501 0.4236797699590816 0.7818741590357953 -0.4541268962482883 -0.1783764702348078 -0.8728978158813705 -0.4286900949630499 -0.03074629865061099 -0.9029282737847225 0.4286900949630499 0.03074629865061099 0.9029282737847225 0.4541268962482883 0.1783764702348078 0.8728978158813705 -0.3063976859348787 -0.7821413631807209 -0.5425636792631395 -0.3523735052985816 -0.7618774628075067 -0.5434847232715808 0.3523735052985816 0.7618774628075067 0.5434847232715808 0.3063976859348787 0.7821413631807209 0.5425636792631395 -0.5413340802838006 -0.6829922424325828 -0.4903865927002937 0.5413340802838006 0.6829922424325828 0.4903865927002937 -0.4272481797681519 -0.03139308917336886 -0.9035892135461523 0.4272481797681519 0.03139308917336886 0.9035892135461523</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1054\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1052\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID1055\">-2.935981608932602 10.85663512075862 -1.948631865258435 10.75586386611057 -2.610060487118674 7.619753708788435 -3.69679133168683 7.740997122795123 -3.090772258404805 10.83022540427713 -2.719262994468259 7.596384747860257 2.640320935711225 2.025948153228608 3.007344018484941 2.420750867493745 3.012389283490861 1.704548783954941 3.476915045794671 2.013146968314747 3.829487363207134 3.243997859007959 4.151239165752258 3.608874678226097 4.50713919916442 2.672402010274958 4.602543987106065 3.620146029906336 5.304258404919437 3.853486727345086 5.632646490923408 3.387754924869541 6.032602059962001 4.221058734951406 6.317450494552758 3.785131728647392 6.961259725370663 4.748945569060884 7.305900416866997 4.355477009968277 9.993834386692768 6.697166556715506 10.55396224199972 6.155992813056084 -2.958384683729662 6.646322239064626 -3.767581555079931 7.71218000849874 -2.788788460198426 7.572962376067476 -1.787116026856405 5.322273542286981 -2.284182369127702 4.351127936247142 -1.949330144772716 5.368941012682137 -2.004373405150739 4.27027736655339 -2.240688841859411 3.817870637244726 -2.178006254645743 4.308764307005029 -4.406878702077174 3.508993181485741 -4.309776294106773 3.981152767028634 -3.424324889167503 3.37281876876143 -4.33348685434635 3.981344992154811 -4.123486029284101 5.012918456920043 -3.353896149640327 3.834780310909004 -3.168915308745923 4.890452789232343 -4.15522701980411 5.000954905113102 -2.945912001956207 6.015132060051506 -3.932224531327764 6.125626458280218 -3.865167419372976 6.173403206929011 -3.722631041023821 6.8333627787756 -2.880014071898048 6.056684529967771 -3.786233442174673 6.814013616893653 -3.589002991997068 7.76577639285253 -2.803637068433257 6.688943611917154 4.58673566867724 10.24664292795459 4.750224669518837 10.16676035099951 2.352155135876836 7.732019785561647 1.615439914209591 8.079710179245698 1.771051416478688 8.010154330456691 1.077703269353097 7.292616194349058 0.3595836739408692 6.872236538923343 0.7506151581350007 7.485622764389828 0.8917779093368455 7.409005396259467 1.05683395826347 7.015137815428471 1.164565261957301 6.91447012137925 0.6025386688846102 6.509881421450357 4.209437347221686 5.555948874626798 4.253535901802713 5.428742796817378 3.803209898733897 5.402796817356368 -3.281343791480293 5.483076573831793 -3.398703655180526 5.048706996552484 -3.4228971200836 5.548400610587399 -1.772317777748014 5.337234730377968 -1.934455908459623 5.38406533167012 -1.700902869676162 5.834124829345437 -1.940368773200062 4.369112149830636 -2.113718735031875 4.408380312461595 -1.563862617851588 5.377877017135567 -2.396266153697702 3.797994575249178 -2.558103344791782 3.853272065013154 -2.342549230029242 4.289545610607819 -4.371090681150245 3.937463004736838 -3.390320269200981 3.795864862738408 -3.477653760136398 3.336397819512019 -4.162826579523441 4.993184227830971 -3.176364284525369 4.883517101095137 -3.384938017023071 3.81842371163158 -2.952987580260624 6.033504265500596 -3.804473587643869 6.804173406389755 -2.821558507236654 6.680662886123442 1.315460912566759 8.016050776524924 3.496248995700073 10.57238716409893 1.47307452581419 7.94934296837219 0.3940072705090324 7.436216706816778 1.02837778858371 8.169264935007575 0.538204523295595 7.363180085962341 -0.3470360049582089 6.989381151517559 0.1235323511647279 7.532459053158027 -0.2216517634023708 6.902275859416785 0.5338562939897318 6.602089407485308 1.107371202240202 7.009909940338497 0.6495041291754328 6.506652750037433 3.74214220390277 5.54151624829845 4.167566621199896 5.568730472320866 3.762660802913122 5.413427654679166</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID1055\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1051\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1049\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1050\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1051\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1052\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 8 6 9 7 10 8 10 8 9 7 11 9 9 7 12 10 11 9 12 10 13 11 11 9 11 9 13 11 14 12 13 11 15 13 14 12 15 13 16 14 14 12 14 12 16 14 17 15 16 14 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 15 30 15 29 16 31 14 30 15 31 14 32 12 32 12 31 14 33 13 32 12 33 13 34 11 32 12 34 11 35 9 35 9 34 11 36 10 35 9 36 10 37 7 35 9 37 7 38 8 38 8 37 7 39 6 40 22 6 23 2 24 3 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 43 28 48 29 49 30 50 30 51 29 46 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 58 38 63 39 64 40 63 39 58 38 61 38 65 39 66 40 65 39 61 38 67 37 64 41 68 42 63 43 65 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 72 51 77 52 78 52 73 51 79 50 80 53 81 54 77 55 78 55 82 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 92 62 42 63 93 64 94 64 47 63 95 62 42 65 44 66 93 67 94 67 45 66 47 65 43 68 49 69 44 70 45 70 50 69 46 68 48 71 96 72 49 73 50 73 97 72 51 71 53 74 59 75 54 76 55 76 60 75 56 74 58 77 62 78 59 79 60 79 67 78 61 77 63 80 68 81 40 82 41 82 69 81 65 80 76 83 70 84 72 85 73 85 75 84 79 83 81 86 76 87 77 88 78 88 79 87 82 86 84 89 81 90 80 91 83 91 82 90 87 89 88 92 84 93 85 94 86 94 87 93 91 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1056\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1057\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1061\">-0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.5298591187803385 -0.1752551412025126 0.3267246785579244</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1061\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1058\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1062\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1062\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1060\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID1063\">3.505102824050252 5.140468275978011 4.203545845101182 5.898375335431982 4.414968261826749 4.748609150477415 5.133601729440363 4.148245525455751 5.672811493639108 7.679445612741619 5.827651849983826 4.90867469051484 6.34719681383455 8.494179944032666 6.660275453839438 11.62052286139061 6.973438948161821 9.252082277676829 7.512957717242513 6.567116406747775 7.849390818560094 8.493335205535086 8.283114275883213 7.327495655441081 8.999992836063413 8.033974680727708 9.136256855185536 7.350812800878698 10.17331027926723 8.380616962922931 10.56113355821253 7.823090735984151 11.56802765527242 9.104569669858437 11.95582315006028 8.547050531634294 13.3515820564935 10.10985633078179 13.76983724756887 9.60023445609569 19.2668110713613 14.01201653592069 19.80366406321081 13.52217335660197 6.106319436014469 9.138399969870267 6.226729965305786 10.35104512144388 7.021610669109959 10.23735513419643 7.358775169589009 13.30684774139464 7.455165168721541 11.50684232576267 8.105455617364823 13.15527448152571 10.18738032658465 19.04794340165245 10.94755861822705 18.80162710738278 5.093690163292324 9.523971700826227 4.052727808682412 6.577637240762856 5.473779309113525 9.400813553691391 3.679387584794505 6.65342387069732 3.72758258436077 5.753421162881336 3.51080533455498 5.118677567098216 3.330137726919719 5.810261430695305 3.48671947408091 4.626041138838414 3.113364982652893 5.175522560721941 3.173598406917275 4.247089972016333 3.053159718007235 4.569199984935134 9.633405535680648 7.006008267960344 6.884918623784433 4.800117228047845 9.901832031605407 6.761086678300985 6.675791028246748 5.054928165390897 5.977911575030141 4.273525265817147 5.784013827636212 4.552284834929218 5.280566779106266 3.911545367992075 5.086655139633613 4.190308481461465 4.568128427592768 3.675406400439349 4.499996418031707 4.016987340363854 4.141557137941606 3.66374782772054 3.924695409280047 4.246667602767543 3.756478858621256 3.283558203373887 2.913825924991913 2.45433734525742 2.836405746819554 3.839722806370809 2.566800864720181 2.074122762727876 2.101772922550591 2.949187667715991 2.207484130913374 2.374304575238707 1.752551412025126 2.570234137989006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1063\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1059\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1057\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1058\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1059\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1060\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 7 7 8 8 6 6 6 6 8 8 5 5 5 5 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 18 18 17 17 17 17 18 18 19 19 18 18 20 20 19 19 21 21 19 19 20 20 22 22 23 23 6 6 7 7 6 6 23 23 8 8 7 7 24 24 7 7 25 25 24 24 24 24 25 25 26 26 26 26 25 25 27 27 25 25 28 28 27 27 29 29 27 27 28 28</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1059\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1060\" />\r\n\t\t\t\t\t<p>30 30 31 31 32 32 31 31 30 30 33 33 31 31 33 33 34 34 34 34 33 33 35 35 35 35 33 33 36 36 35 35 36 36 37 37 38 38 39 39 36 36 39 39 38 38 40 40 41 41 42 42 43 43 42 42 41 41 44 44 42 42 44 44 45 45 45 45 44 44 46 46 45 45 46 46 47 47 47 47 46 46 48 48 47 47 48 48 49 49 49 49 48 48 50 50 49 49 50 50 51 51 51 51 50 50 52 52 51 51 52 52 53 53 53 53 52 52 37 37 53 53 37 37 54 54 54 54 37 37 39 39 39 39 37 37 36 36 54 54 39 39 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1064\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1065\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1069\">-0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1069\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1066\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1070\">-0.1164175568789908 0.02947304770899976 0.9927629585702068 -0.1152536654891546 0.0291861515433436 0.9929072268592888 -0.1088387569614722 0.01315362923910896 0.9939723874539582 0.1088387569614722 -0.01315362923910896 -0.9939723874539582 0.1152536654891546 -0.0291861515433436 -0.9929072268592888 0.1164175568789908 -0.02947304770899976 -0.9927629585702068 -0.1108275343076859 0.0157188274115992 0.9937153395737044 0.1108275343076859 -0.0157188274115992 -0.9937153395737044 -0.1169992818606147 0.001779387199382528 0.9931304052466096 0.1169992818606147 -0.001779387199382528 -0.9931304052466096 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211613462438688 0.005798762209368286 0.9926158887168858 0.1211613462438688 -0.005798762209368286 -0.9926158887168858 -0.1269009350449967 -0.04024779597736024 0.9910985155894797 -0.1321721693293524 -0.05182041772276032 0.9898712855527286 -0.1289723073749611 -0.05683794718569368 0.990017975437868 0.1289723073749611 0.05683794718569368 -0.990017975437868 0.1321721693293524 0.05182041772276032 -0.9898712855527286 0.1269009350449967 0.04024779597736024 -0.9910985155894797 -0.1366133769342704 -0.05910629755485246 0.9888595607223364 -0.1318875386354734 -0.06677197077271543 0.9890132360447983 0.1318875386354734 0.06677197077271543 -0.9890132360447983 0.1366133769342704 0.05910629755485246 -0.9888595607223364 -0.5582945311177081 -0.2283387439749839 0.7976018019814056 -0.5451251899441658 -0.2516490044651679 0.7996945078215975 -0.558028898390844 -0.2252503846026686 0.7986651443484001 0.558028898390844 0.2252503846026686 -0.7986651443484001 0.5451251899441658 0.2516490044651679 -0.7996945078215975 0.5582945311177081 0.2283387439749839 -0.7976018019814056 -0.4971178181320478 -0.2277136551304314 0.8372695898948984 -0.5144576180718076 -0.2200898906441139 0.8287905641621072 0.5144576180718076 0.2200898906441139 -0.8287905641621072 0.4971178181320478 0.2277136551304314 -0.8372695898948984 -0.306373651989246 -0.301890195052002 0.9027721171470885 -0.3523674383661242 -0.2850989537794993 0.8913785811500805 0.3523674383661242 0.2850989537794993 -0.8913785811500805 0.306373651989246 0.301890195052002 -0.9027721171470885 -0.4541867966104732 0.3794965782313983 0.8060376547627145 -0.4287165572106656 0.5157236689642438 0.7417757146493089 -0.4569170898122744 0.3580322882283826 0.8142724689091671 0.4569170898122744 -0.3580322882283826 -0.8142724689091671 0.4287165572106656 -0.5157236689642438 -0.7417757146493089 0.4541867966104732 -0.3794965782313983 -0.8060376547627145 -0.4574434326879626 0.128523092512843 0.8799018812240311 -0.4610519398068395 0.1374069943415377 0.8766700785964896 0.4610519398068395 -0.1374069943415377 -0.8766700785964896 0.4574434326879626 -0.128523092512843 -0.8799018812240311 -0.5040157149677988 0.03292087746401979 0.8630668426561742 -0.4985584274964397 0.03343317632154487 0.8662111273201989 0.4985584274964397 -0.03343317632154487 -0.8662111273201989 0.5040157149677988 -0.03292087746401979 -0.8630668426561742 -0.5497125255609511 -0.01221039753376431 0.8352646559225813 -0.5535759670464742 -0.01565705409007048 0.8326514909407067 0.5535759670464742 0.01565705409007048 -0.8326514909407067 0.5497125255609511 0.01221039753376431 -0.8352646559225813 -0.6328213274262273 -0.03345237151289191 0.7735748873862641 -0.6307597955618702 -0.0336555489308815 0.7752479502255447 0.6307597955618702 0.0336555489308815 -0.7752479502255447 0.6328213274262273 0.03345237151289191 -0.7735748873862641 -0.1257023489127471 -0.01606129966648226 0.9919379789739081 -0.1240902978453498 -0.0175498111580307 0.9921157201198707 0.1240902978453498 0.0175498111580307 -0.9921157201198707 0.1257023489127471 0.01606129966648226 -0.9919379789739081 -0.1260595472930294 -0.0408216577978071 0.9911824165061218 0.1260595472930294 0.0408216577978071 -0.9911824165061218 -0.5412148349373932 -0.2537132226334566 0.8016957671739552 0.5412148349373932 0.2537132226334566 -0.8016957671739552 -0.4272661229037248 0.5156003108204946 0.7426977714391153 0.4272661229037248 -0.5156003108204946 -0.7426977714391153</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1070\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1068\">\r\n\t\t\t\t\t<float_array count=\"196\" id=\"ID1071\">13.80728166277617 -0.6130167098138849 14.0190207913705 -1.378322775502937 9.891501356083198 -1.398559899101458 14.01980057287232 -1.374692521388983 10.16976395576887 -2.147763991652776 9.892292853868527 -1.396358040448894 9.13990034236501 -4.10109427719969 7.922917617543023 -3.31064759363729 9.112972347923334 -3.318913266075672 3.675384037947553 -0.4246823111445474 3.728999951832195 0.007992341182690677 4.269814814293227 -0.5681835556315917 4.335914825773608 -0.02054527340170165 5.554770877852206 -0.8406449125250893 5.66281971002354 -0.06367290266154251 6.090137041837841 -0.981480541855419 6.460281336741163 -0.7780344309739375 7.108731272710429 -0.10688175677692 7.199978199095067 -0.6346024122160491 7.959654123141069 -0.1028398972043406 8.06307501585481 -0.5861914753075564 9.185461095484014 -0.09440081931622046 9.208683394319904 -0.571882978597314 13.12035929778858 -0.7049523672064595 13.15740834483686 -0.007683132925823285 9.534613588802479 -3.503157893577027 8.312030923974277 -3.573561015301703 8.240503349031185 -2.792558387712522 3.858647062123191 -5.16058960318777 2.592754049921546 -4.844748037579367 2.866400881466295 -4.09043929177291 1.934313392358909 -5.019461920039144 1.377297237169688 -4.827743230540988 1.764387869163704 -4.104380020650059 1.773090404879941 -4.458637017925284 1.33150791732068 -4.108270374199182 1.877196734483731 -4.342754535484429 3.033601055682589 -4.996987230377251 2.948315257028529 -5.11514745525924 1.855718646494166 -4.509721762035793 0.7230910765086479 -6.063201128471859 0.643265683683088 -6.176002351858831 0.3417500518942679 -5.735767157626841 8.221633022424319 0.3354410191769293 7.860758236876446 0.1233516168670555 8.098827313590068 0.4251827631843959 8.777424033680292 -1.570199514101096 8.020550205059355 -1.738846683847045 8.692700701586954 -1.456731561340594 8.631777309452774 -3.099303113019177 8.646044617348052 -3.233748210890571 7.775142777459928 -3.195329571672053 9.311692834307262 -3.69237575750201 8.185074552308338 -3.578387594753834 9.330348977001862 -3.552345717479117 12.83018579927031 -3.998070213710835 12.79728635458154 -4.147255281525537 8.92396389964752 -3.788083846687805 8.196485417401426 -3.731313273001689 7.346533038834244 -3.763528691237196 7.317289624280975 -2.980140061228889 5.636561508752498 -4.702312727263123 5.336390733417921 -5.449619584766261 4.251179605034944 -4.373769397749731 3.951018182975293 -5.121079041999575 7.9264042430006 -3.301158048278965 7.918442027052564 -4.084159963801527 7.093366192879808 -3.295908493898871 3.990976447294812 -4.518942246687931 3.648222878151388 -5.254826617090851 2.698973295573131 -4.160805864112061 1.781220271575089 -4.440238296359105 1.327014570610913 -5.138559858782626 1.264659737377111 -4.215067749817517 3.314877001865865 -4.899940379907601 2.092057563700482 -4.450888635141769 2.190316269496892 -4.331888373982719 1.572352064691836 -4.537480266369492 1.05871830345268 -4.301210512261891 1.141746521037105 -4.178758122598253 3.563681401541414 -5.3253843708294 3.013530619634568 -5.103953439875546 3.097661168592327 -4.985281801077196 8.21113041698956 0.3759870027255349 7.987420609990448 0.09004473225368445 7.851589781199859 0.1624999726829313 8.772747345371998 -1.584925376850224 8.090091306673514 -1.870291468803673 8.015398979144715 -1.752248997002818 8.614935622004783 -3.33792690271419 7.786369406217942 -3.422538761892946 7.744361237538513 -3.295161361764044 9.238931812302894 -3.867268169121407 8.111754056698198 -3.877517115416049 8.114139814095902 -3.742617406280015 12.67194791268335 -4.5269585570712 8.773640424439241 -4.255971035984555 8.806680473794703 -4.11759385727599</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"98\" source=\"#ID1071\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1067\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1065\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1066\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"84\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1067\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1068\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 6 6 8 7 2 8 3 8 9 7 7 6 10 9 11 10 12 11 11 10 13 12 12 11 12 11 13 12 14 13 13 12 15 14 14 13 14 13 15 14 16 15 16 15 15 14 17 16 15 14 18 17 17 16 17 16 18 17 19 18 18 17 20 19 19 18 19 18 20 19 21 20 20 19 22 21 21 20 21 20 22 21 23 22 23 22 22 21 24 23 25 24 24 23 22 21 26 21 27 23 28 24 27 23 26 21 29 22 29 22 26 21 30 20 30 20 26 21 31 19 30 20 31 19 32 18 32 18 31 19 33 17 32 18 33 17 34 16 34 16 33 17 35 14 34 16 35 14 36 15 36 15 35 14 37 13 37 13 35 14 38 12 37 13 38 12 39 11 39 11 38 12 40 10 39 11 40 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 56 39 57 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 70 47 75 48 76 48 71 47 77 46 78 49 79 50 75 51 76 51 80 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 87 56 83 57 84 57 88 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 90 62 94 63 44 64 94 63 90 62 93 62 95 63 49 64 95 63 93 62 92 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 61 74 54 75 56 76 57 76 59 75 62 74 54 77 96 78 55 79 58 79 97 78 59 77 65 80 61 81 60 82 63 82 62 81 66 80 68 83 98 84 69 85 72 85 99 84 73 83 74 86 68 87 70 88 71 88 73 87 77 86 79 89 74 90 75 91 76 91 77 90 80 89 82 92 79 93 78 94 81 94 80 93 85 92 87 95 82 96 83 97 84 97 85 96 88 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1072\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1073\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1077\">-0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803385 -0.3295252840429122 -0.163752049627818</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1077\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1074\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1078\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1078\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1076\">\r\n\t\t\t\t\t<float_array count=\"60\" id=\"ID1079\">9.186441801135759 -0.6488213400628682 13.06654213649594 -1.122084458825146 13.09524992904242 -0.79949167490136 9.21274739048158 -0.9514208473190707 8.115944512114693 -0.9685740599925033 8.059207761561993 -0.6539708482222155 7.281870875630058 -1.006895651470734 7.225110846459248 -0.6922914059295819 6.679996197963138 -1.144255152347283 6.474741113180418 -0.8385239100247427 6.348834577254241 -1.615424885060101 6.124135088072079 -1.029998510971301 6.237853014667429 -2.141924398637036 8.159474776988487 -3.454130399997072 11.21097795849668 -5.348585849823603 11.42530494601942 -5.07263695607616 7.915026008602089 -3.68870217088264 7.278421134616336 -2.939943688429858 7.000331008498487 -3.170403709446711 6.627065876926979 -2.5283351085099 6.348994523888187 -2.758800446062714 5.845294038790562 -2.297413730313628 5.526358198109146 -0.9067158682851475 5.700755221866416 -1.981511659262586 5.122854141660617 -1.809345535610677 4.220446497283755 -0.6391021215311316 3.861528503676829 -1.431814179263339 3.653175485382575 -0.4978760590883997 3.553954881384697 -0.9130679473510686 3.295252840429122 -1.288182790405501</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID1079\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1075\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1073\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1074\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1075\" />\r\n\t\t\t\t\t<p>0 1 2 1 3 2 3 4 2 2 4 5 4 6 5 5 6 7 7 6 8 6 9 8 9 10 8 8 10 11 10 12 11 11 12 13 12 14 13 13 14 15 14 16 15 15 16 17 18 17 16 10 9 19 9 20 19 19 20 21 20 22 21 21 22 23 22 24 23 23 24 25 24 26 25 25 26 27 27 26 28 29 28 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1075\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1076\" />\r\n\t\t\t\t\t<p>30 0 31 1 32 2 31 1 30 0 33 3 33 3 30 0 34 4 34 4 30 0 35 5 34 4 35 5 36 6 36 6 35 5 37 7 36 6 37 7 38 8 38 8 37 7 39 9 38 8 39 9 40 10 40 10 39 9 41 11 40 10 41 11 42 12 43 13 44 14 45 15 44 14 43 13 46 16 46 16 43 13 47 17 46 16 47 17 48 18 48 18 47 17 49 19 48 18 49 19 50 20 50 20 49 19 42 12 50 20 42 12 51 21 51 21 42 12 41 11 51 21 41 11 52 22 51 21 52 22 53 23 53 23 52 22 54 24 54 24 52 22 55 25 54 24 55 25 56 26 56 26 55 25 57 27 56 26 57 27 58 28 56 26 58 28 59 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1080\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1081\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1085\">-0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.5014927709964905 -1.221254125201766</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1085\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1082\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1086\">-0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1086\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1084\">\r\n\t\t\t\t\t<float_array count=\"116\" id=\"ID1087\">-10.02986884390828 -19.21441079518665 -8.078369726216202 -14.94382291552136 -8.616810169633229 -19.58292117139953 -7.710539025580329 -12.82943654886498 -6.957166350571083 -4.013129460871145 -6.563991993162109 -5.617669476879784 -6.191243496727681 -6.283137334198752 -5.841838948681586 -13.61146945795768 -5.12072743462904 -6.367588736361021 -5.093403218011745 -11.83399197753575 -4.569559219049879 -10.58978432392038 -4.532998647519656 -5.776067396796974 -3.761988289242532 -8.403663709214172 -20.67270284231222 -12.96009691898834 -21.52269079340287 -11.99864627882594 -16.05001083580809 -10.25921156711687 -15.03078282578663 -8.21146679775252 -13.57695803480326 -9.381946502322247 -13.07634609667806 -7.142739684942715 -11.82235097061978 -9.37266146756806 -11.70834131037578 -6.394627456981616 -9.781350822898569 -10.19751021323684 -9.272628914606271 -5.165311420703098 -8.196902947598092 -11.50317111573932 -5.946686595406146 -5.057682875228573 -5.942143510265987 -3.537919751528921 -5.054129935863941 -5.15141281351586 -3.014275322117851 -6.330159141483323 -2.722917134621747 -5.429709253919597 -2.971071755132994 -1.768959875764461 -1.507137661058926 -3.165079570741662 -1.361458567310874 -2.714854626959799 -2.266499323759828 -2.888033698398487 -1.880994144621266 -4.201831854607086 -2.52706496793197 -2.57570640675793 -2.973343297703073 -2.528841437614287 -3.478583175285542 -2.006564730435573 -3.281995996581054 -2.808834738439892 -4.636314457303135 -2.582655710351549 -3.855269512790164 -6.414718274432491 -4.098451473799046 -5.751585557869662 -4.890675411449284 -5.098755106618421 -5.854170655187891 -3.197313728490808 -5.911175485309891 -4.68633073378403 -6.53817304833903 -3.571369842471357 -6.788479017401629 -4.690973251161124 -7.515391412893316 -4.10573339887626 -8.025005417904044 -5.129605783558433 -10.76134539670144 -5.999323139412972 -10.33635142115611 -6.480048459494169 -2.284779609524939 -5.294892161960191 -2.56036371731452 -3.18379436818051 -2.546701609005873 -5.916995988767874 -2.920919474340793 -6.805734728978842 -3.095621748363841 -3.141568667099376 -4.308405084816615 -9.791460585699765 -4.039184863108101 -7.471911457760681 -5.014934421954141 -9.607205397593324</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1087\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1083\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1081\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1082\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1083\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1084\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 2 2 4 4 5 5 3 3 3 3 5 5 2 2 5 5 6 6 2 2 2 2 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 9 9 8 8 10 10 8 8 11 11 10 10 12 12 10 10 11 11 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 18 18 17 17 17 17 18 18 19 19 18 18 20 20 19 19 19 19 20 20 21 21 20 20 22 22 21 21 21 21 22 22 23 23 23 23 22 22 3 3 4 4 3 3 22 22 5 5 4 4 24 24 4 4 25 25 24 24 24 24 25 25 26 26 26 26 25 25 11 11 12 12 11 11 27 27 11 11 25 25 27 27 28 28 27 27 25 25</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1083\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1084\" />\r\n\t\t\t\t\t<p>29 29 30 30 31 31 30 30 29 29 32 32 30 30 32 32 33 33 32 32 29 29 34 34 34 34 29 29 35 35 35 35 29 29 36 36 35 35 36 36 37 37 38 38 39 39 36 36 39 39 38 38 40 40 40 40 38 38 41 41 41 41 38 38 42 42 41 41 42 42 43 43 43 43 42 42 44 44 43 43 44 44 45 45 45 45 44 44 46 46 45 45 46 46 47 47 47 47 46 46 48 48 47 47 48 48 49 49 32 32 50 50 33 33 50 50 32 32 51 51 50 50 51 51 52 52 52 52 51 51 53 53 53 53 51 51 54 54 53 53 54 54 55 55 55 55 54 54 37 37 55 55 37 37 39 39 39 39 37 37 36 36 55 55 39 39 56 56 55 55 56 56 57 57</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1088\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1089\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1093\">-0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1093\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1090\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1094\">-0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1094\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1092\">\r\n\t\t\t\t\t<float_array count=\"116\" id=\"ID1095\">3.55839236819476 -8.488419045241628 4.245346264840824 -5.927683489544283 4.338197914026393 -10.68076768650679 4.812696874597001 -6.53714695665132 4.846150501537627 -11.92903008491025 5.571861419967594 -13.71230731538016 5.676042622384449 -6.509790425305303 6.099572673222684 -5.983272599215604 6.809176289792611 -4.123239947803949 7.424943045986368 -12.95197178042472 7.765917730597559 -15.06914637484883 8.270848227836648 -19.70532053592662 9.688516068491094 -19.34793117157087 2.837121282969626 -6.409136584333087 2.557177127561046 -5.506438392768292 4.71279593362039 -5.407517741830074 5.548610961513447 -5.312678419743834 5.800264086731488 -3.640068430440598 7.928136657948257 -11.62962404360425 9.109835905503532 -5.293563109915906 9.529151400085357 -10.33648417410537 11.52980744991694 -6.541998000371912 11.5805232985438 -9.527731536536132 12.88835961543644 -7.300830137085 13.33494263193682 -9.550817708016966 14.82902591557052 -8.384892502619829 15.79670305040769 -10.44749344574282 20.41029086447709 -13.17764101175096 21.27248131697755 -12.2229423723072 7.414512957785258 -4.192446251309915 10.20514543223855 -6.588820505875478 10.63624065848878 -6.111471186153602 7.898351525203847 -5.223746722871408 6.667471315968408 -4.775408854008483 6.444179807718218 -3.6504150685425 5.790261649271899 -4.763865768268066 5.764903724958471 -3.270999000185956 4.764575700042679 -5.168242087052686 4.554917952751766 -2.646781554957953 3.964068328974129 -5.814812021802124 3.404588144896306 -2.061619973901975 3.712471522993184 -6.475985890212362 2.900132043365744 -1.820034215220299 3.049786336611342 -2.991636299607802 2.774305480756723 -2.656339209871917 1.278588563780523 -2.753219196384146 2.356397966810195 -2.703758870915037 2.122673132420412 -2.963841744772142 1.77919618409738 -4.244209522620814 1.418560641484813 -3.204568292166544 3.88295886529878 -7.534573187424415 4.135424113918324 -9.85266026796331 4.844258034245547 -9.673965585785433 2.785930709983797 -6.856153657690079 2.838021311192224 -3.254895212652651 2.406348437298501 -3.26857347832566 2.423075250768814 -5.964515042455125 2.169098957013197 -5.340383843253396</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1095\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1091\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1089\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1090\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1091\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1092\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 4 4 3 3 5 5 3 3 6 6 5 5 6 6 7 7 5 5 7 7 8 8 5 5 8 8 9 9 5 5 9 9 10 10 5 5 5 5 10 10 11 11 12 12 11 11 10 10 13 13 14 14 0 0 0 0 14 14 1 1 1 1 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 7 7 8 8 7 7 17 17 9 9 8 8 18 18 8 8 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 22 22 23 23 24 24 23 23 25 25 24 24 24 24 25 25 26 26 26 26 25 25 27 27 28 28 27 27 25 25</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1091\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1092\" />\r\n\t\t\t\t\t<p>29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 33 33 29 29 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 39 39 38 38 40 40 39 39 40 40 41 41 42 42 43 43 40 40 43 43 42 42 44 44 44 44 42 42 45 45 44 44 45 45 46 46 46 46 45 45 47 47 47 47 45 45 48 48 48 48 45 45 49 49 50 50 51 51 52 52 51 51 50 50 53 53 53 53 50 50 41 41 53 53 41 41 40 40 53 53 40 40 43 43 53 53 43 43 54 54 53 53 54 54 55 55 53 53 55 55 56 56 56 56 55 55 57 57 57 57 55 55 47 47 57 57 47 47 48 48</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1096\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1097\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1101\">-0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4161909408446167 -0.00511566405237196 0.3989672790630737</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1101\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1098\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1102\">-0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1102\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1100\">\r\n\t\t\t\t\t<float_array count=\"116\" id=\"ID1103\">-0.6603042760459281 6.628102364821207 0.1023145158150442 6.277101703712805 -1.949292046070537 5.631935926043967 0.8227126529265449 6.595773100139321 2.068972894939293 5.631935926042748 -7.994833638526947 19.7454669910059 -6.582432022018011 20.11553924734553 -5.675109960996605 13.65502883901048 -4.922422127911656 11.87869973036458 -4.914377863521055 15.78554439443209 -4.395536890136512 10.63526002083815 -3.600572082937799 13.91843838724053 -3.379425211242822 8.503668162239411 -2.400906623229417 6.490504505914989 -2.201940144480685 13.08490005885077 -0.6525134482231259 7.207434068793488 0.04362987063896788 7.548865554982541 0.06075091877033985 12.78483712999241 0.8120119978442776 7.222580289126928 2.323357503165463 13.08490005884943 2.520531152860973 6.490504505913559 3.499059127413852 8.503668162237371 3.72203637432034 13.91843838723838 4.515123873609423 10.63526002083553 5.035936020298975 15.78554439442911 5.041999724845416 11.87869973036162 5.794715717549207 13.65502883900708 6.702103108885646 20.11553924734162 8.114458168158471 19.74546699100114 3.351051554442823 10.05776962367081 2.897357858774603 6.827514419503538 4.057229084079236 9.872733495500569 2.517968010149487 7.892772197214557 2.520999862422708 5.939349865180811 2.257561936804712 5.317630010417767 1.86101818716017 6.959219193619191 1.749529563706926 4.251834081118686 1.161678751582732 6.542450029424717 1.260265576430486 3.245252252956779 1.034486447469647 2.815967963021374 0.03037545938516992 6.392418564996206 0.4060059989221388 3.611290144563464 0.4113563264632725 3.297886550069661 0.02181493531948394 3.774432777491271 -1.100970072240343 6.542450029425386 -0.3262567241115629 3.603717034396744 -0.3301521380229641 3.314051182410604 -0.9746460230352685 2.815967963021984 -1.200453311614709 3.245252252957494 -1.8002860414689 6.959219193620267 -1.689712605621411 4.251834081119705 -2.197768445068256 5.317630010419073 -2.457188931760527 7.892772197216043 -2.461211063955828 5.939349865182291 -3.291216011009006 10.05776962367277 -2.837554980498303 6.82751441950524 -3.997416819263473 9.872733495502947 0.05115725790752209 3.138550851856402</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1103\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1099\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1097\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1098\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1099\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1100\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 4 4 1 1 2 2 1 1 4 4 5 5 6 6 7 7 7 7 6 6 8 8 6 6 9 9 8 8 8 8 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 12 12 11 11 13 13 11 11 14 14 13 13 13 13 14 14 2 2 2 2 14 14 0 0 0 0 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 18 18 3 3 18 18 4 4 18 18 17 17 4 4 17 17 19 19 4 4 4 4 19 19 20 20 20 20 19 19 21 21 19 19 22 22 21 21 21 21 22 22 23 23 22 22 24 24 23 23 23 23 24 24 25 25 25 25 24 24 26 26 24 24 27 27 26 26 28 28 26 26 27 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1099\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1100\" />\r\n\t\t\t\t\t<p>29 29 30 30 31 31 30 30 29 29 32 32 30 30 32 32 33 33 33 33 32 32 34 34 34 34 32 32 35 35 34 34 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 39 39 37 37 40 40 39 39 40 40 41 41 39 39 41 41 42 42 41 41 40 40 43 43 43 43 40 40 44 44 43 43 44 44 45 45 45 45 44 44 46 46 46 46 44 44 47 47 47 47 44 44 48 48 48 48 44 44 49 49 48 48 49 49 50 50 50 50 49 49 51 51 51 51 49 49 52 52 51 51 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 55 55 54 54 56 56 39 39 57 57 47 47 57 57 39 39 42 42 47 47 57 57 46 46</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1104\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1105\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1109\">-0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086244 1.316109687941657 0.1039835031210425</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1109\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1106\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1110\">-0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1110\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1108\">\r\n\t\t\t\t\t<float_array count=\"116\" id=\"ID1111\">-26.32221346343603 1.636013390160535 -20.57025466836452 1.480585937066035 -26.33609653088566 0.4649613457242628 -18.26023629726925 0.2127637073613848 -17.89873287521094 1.85170038214918 -16.44238348055336 2.621577179361666 -15.88012976177167 0.1958135568310805 -15.34672951463004 4.207573708536487 -14.97250845787214 5.988482126861165 -14.53491699533404 8.746494248780024 -14.21409408474354 0.1839639580231964 -12.6437260187638 7.60952939642481 -11.32126622418493 0.2476387067093099 -11.31992357356801 6.813667586479245 -9.093473939508872 2.602729468533396 -8.931546370346142 1.906224412462378 -8.583146557493567 0.3217766936036152 -8.054646834917762 1.646710999030179 -7.410646117683638 2.119594723555238 -7.40422572564607 0.3789239175328026 -22.00748405742919 11.51994145614131 -21.10379608906077 12.45059281253822 -17.33840302157449 8.883806786916869 -15.52040002022607 7.299823452712065 -9.087203731092407 5.365323263029861 -8.3423442719905 2.953155647545233 -7.616745992036167 2.801032421564928 -6.984665430113307 3.983443023641084 -6.09915843792158 3.36857647914322 -3.492332715056654 1.991721511820542 -3.702112862823035 0.1894619587664013 -3.04957921896079 1.68428823957161 -3.705323058841819 1.059797361777619 -3.808372996018083 1.400516210782464 -4.543601865546203 2.682661631514931 -4.17117213599525 1.476577823772616 -4.546736969754436 1.301364734266698 -5.659961786784004 3.406833793239623 -7.267458497667017 4.373247124390012 -7.760200010113037 3.649911726356033 -7.486254228936068 2.994241063430582 -10.55189804453039 6.225296406269112 -8.669201510787243 4.441903393458435 -11.00374202871459 5.759970728070657 -4.291573278746784 0.1608883468018076 -4.027323417458881 0.8233554995150897 -4.465773185173071 0.953112206231189 -5.660633112092466 0.123819353354655 -6.321863009381899 3.804764698212405 -7.107047042371768 0.09198197901159821 -7.940064880885833 0.09790677841554024 -7.673364757315019 2.103786854268244 -8.22119174027668 1.310788589680833 -9.130118148634626 0.1063818536806924 -8.949366437605471 0.9258501910745902 -10.28512733418226 0.7402929685330173 -13.16804826544283 0.2324806728621314 -13.16110673171801 0.8180066950802676</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1111\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1107\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1105\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1106\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1107\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1108\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 3 3 5 5 6 6 5 5 7 7 6 6 7 7 8 8 6 6 8 8 9 9 6 6 6 6 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 11 11 13 13 12 12 13 13 14 14 12 12 14 14 15 15 12 12 12 12 15 15 16 16 15 15 17 17 16 16 17 17 18 18 16 16 19 19 16 16 18 18 20 20 21 21 22 22 22 22 21 21 23 23 21 21 9 9 23 23 8 8 23 23 9 9 13 13 24 24 14 14 14 14 24 24 25 25 25 25 24 24 26 26 24 24 27 27 26 26 26 26 27 27 18 18 18 18 27 27 19 19 28 28 19 19 27 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1107\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1108\" />\r\n\t\t\t\t\t<p>29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 33 33 29 29 34 34 33 33 34 34 35 35 35 35 34 34 36 36 36 36 34 34 37 37 38 38 39 39 40 40 39 39 38 38 41 41 39 39 41 41 42 42 42 42 41 41 43 43 32 32 44 44 30 30 44 44 32 32 45 45 44 44 45 45 46 46 44 44 46 46 47 47 47 47 46 46 36 36 47 47 36 36 37 37 47 47 37 37 48 48 47 47 48 48 49 49 49 49 48 48 38 38 49 49 38 38 50 50 50 50 38 38 40 40 50 50 40 40 51 51 50 50 51 51 52 52 50 50 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 53 53 55 55 56 56 56 56 55 55 57 57</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1112\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1113\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1117\">-0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086244 -0.7820770884023743 0.4497980564798922</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1117\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1114\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1118\">-0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1118\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1116\">\r\n\t\t\t\t\t<float_array count=\"116\" id=\"ID1119\">15.07707401407439 5.769850515057511 14.68308415411048 8.542387413325084 15.64156248019065 7.076826964854104 17.47963465401062 8.646417845385683 21.29872623692821 12.19463380149279 22.19043848268239 11.25691735948019 7.606327939590292 1.892705793038809 8.27845148027766 1.398775674567985 7.446428614955478 0.2313362901843486 8.624532442400788 0.1649128185498039 9.207521402500165 1.59536744141203 9.425026296851021 2.312795134179659 11.36156327050402 0.06924101484297966 6.179339266233333 3.231097654269962 7.072628075169551 3.838965865215587 7.924071315350075 2.605400439849607 8.738063013666524 2.754604887566969 9.192662885861024 5.204233701788687 11.44368572952684 6.634956071308992 12.77760761527535 7.420370888018093 14.25340591987107 -0.01718592348860902 15.42855411374404 3.986084458633338 15.91953471137129 -0.01844121671260754 16.50403527979898 2.391555627588657 17.95056710501454 1.610244438259214 18.29973586318679 -0.02022262547900209 20.61719888652537 1.218148136177216 26.37837451250605 0.1684497917821321 26.37941679385733 1.339544146984344 10.30859944326268 0.609074068088608 13.18918725625302 0.08422489589106605 13.18970839692866 0.6697720734921721 9.149867931593397 -0.01011131273950105 8.975283552507268 0.8051222191296068 7.959767355685644 -0.009220608356303768 8.252017639899492 1.195777813794329 7.714277056872022 1.993042229316669 7.126702959935534 -0.00859296174430451 7.538537007037196 2.884925257528756 7.34154207705524 4.271193706662542 6.388803807637676 3.710185444009047 5.680781635252012 0.03462050742148983 5.721842864763418 3.317478035654496 4.596331442930512 2.602116850894344 4.712513148425511 1.156397567089829 4.369031506833262 1.377302443783485 3.536314037584776 1.919482932607794 3.962035657675037 1.302700219924803 3.803163969795146 0.9463528965194042 3.723214307477739 0.1156681450921743 3.089669633116666 1.615548827134981 4.603760701250082 0.797683720706015 4.312266221200394 0.08245640927490194 4.13922574013883 0.6993878372839926 10.64936311846411 6.097316900746395 8.739817327005309 4.323208922692841 11.09521924134119 5.628458679740094 7.820781240095327 3.538413482427052</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1119\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1115\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1113\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1114\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1115\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1116\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 6 7 7 8 8 8 8 7 7 9 9 7 7 10 10 9 9 11 11 12 12 10 10 9 9 10 10 12 12 13 13 14 14 8 8 8 8 14 14 6 6 6 6 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 11 11 11 11 17 17 12 12 17 17 18 18 12 12 18 18 19 19 12 12 12 12 19 19 20 20 19 19 1 1 20 20 1 1 0 0 20 20 0 0 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 23 23 24 24 22 22 22 22 24 24 25 25 24 24 26 26 25 25 25 25 26 26 27 27 28 28 27 27 26 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"29\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1115\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1116\" />\r\n\t\t\t\t\t<p>29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 32 32 33 33 34 34 34 34 33 33 35 35 34 34 35 35 36 36 34 34 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 37 37 40 40 41 41 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 44 44 43 43 45 45 45 45 43 43 46 46 45 45 46 46 47 47 47 47 46 46 48 48 48 48 46 46 49 49 49 49 46 46 50 50 41 41 51 51 52 52 51 51 41 41 44 44 52 52 51 51 53 53 52 52 53 53 49 49 49 49 53 53 48 48 54 54 55 55 56 56 55 55 54 54 39 39 55 55 39 39 57 57 57 57 39 39 38 38</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1120\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1121\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1125\">-0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.529859118780335 1.153719775386548 -0.6297892700755456</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1125\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1122\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1126\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1126\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1124\">\r\n\t\t\t\t\t<float_array count=\"120\" id=\"ID1127\">-23.07439550773097 -9.908684515855253 -16.5018368904839 -6.72319749841732 -22.65270559410508 -10.46391163633777 -16.01893622609624 -7.196171309012338 -14.72672962393063 -5.708741585074908 -14.17645312960758 -6.174030638247034 -13.4136083098111 -4.895822555464352 -12.86330478225409 -5.361104519921764 -12.62543034616549 -4.129144983791254 -11.84430204918045 -4.446292896444675 -12.23498784722559 -1.874505443854724 -11.54718953748084 -3.816798493870874 -11.03641160156596 -1.637361946361363 -10.38703202271997 -3.481579675358059 -8.417877199601666 -1.122717643494433 -7.854985196129549 -2.746417347632534 -7.2798246100092 -0.8491966345196895 -7.159292431165309 -1.69744618722385 -6.718791141366869 -2.468068923971035 -26.12148100826749 -1.949461217357851 -26.17068750133516 -1.303845305457521 -18.40995067147561 -1.668797885313605 -18.34966205435873 -1.064030839351062 -16.21682400372031 -1.72034805212735 -16.09538020415581 -1.092060798588364 -14.54974604533614 -1.810114365788693 -14.42832176977398 -1.181805033857142 -13.34961163411208 -2.09427775069872 -12.93127233964243 -1.486071496671276 -12.76666998217039 -3.058117583065982 -6.465636169821214 -0.7430357483356379 -6.312715173082745 -2.064572491895627 -6.117493923612793 -0.937252721927362 -6.383334991085194 -1.529058791532991 -6.674805817056042 -1.04713887534936 -7.214160884886991 -0.5909025169285711 -7.274873022668071 -0.9050571828943463 -8.047690102077906 -0.5460303992941817 -8.108412001860152 -0.860174026063675 -9.174831027179364 -0.5320154196755311 -9.204975335737807 -0.8343989426568027 -13.08534375066758 -0.6519226527287603 -13.06074050413374 -0.9747306086789257 -3.579646215582655 -0.8487230936119248 -3.927492598064775 -1.373208673816267 -3.359395570683434 -1.234034461985518 -3.6399123050046 -0.4245983172598448 -4.208938599800833 -0.5613588217472164 -5.193516011359987 -1.74078983767903 -5.518205800782978 -0.8186809731806815 -5.77359476874042 -1.908399246935437 -5.922151024590223 -2.223146448222337 -6.431652391127047 -2.680552259960882 -6.70680415490555 -2.447911277732176 -7.088226564803792 -3.087015319123517 -7.363364811965314 -2.854370792537454 -8.009468113048119 -3.598085654506169 -8.250918445241952 -3.36159874920866 -11.32635279705254 -5.231955818168884 -11.53719775386548 -4.954342257927626</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1127\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1123\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1121\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1122\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1123\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1124\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 16 16 17 17 15 15 18 18 15 15 17 17 19 19 20 20 21 21 20 20 22 22 21 21 21 21 22 22 23 23 22 22 24 24 23 23 23 23 24 24 25 25 24 24 26 26 25 25 25 25 26 26 27 27 26 26 28 28 27 27 27 27 28 28 29 29 29 29 28 28 8 8 10 10 8 8 28 28</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1123\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1124\" />\r\n\t\t\t\t\t<p>30 30 31 31 32 32 31 31 30 30 33 33 33 33 30 30 34 34 34 34 30 30 35 35 34 34 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 38 38 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 43 43 44 44 45 45 44 44 43 43 46 46 44 44 46 46 47 47 44 44 47 47 48 48 48 48 47 47 49 49 48 48 49 49 50 50 50 50 49 49 32 32 50 50 32 32 51 51 51 51 32 32 31 31 51 51 31 31 52 52 52 52 31 31 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1128\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1129\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID1133\">-0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.270754829964972 0.3435938670600639</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID1133\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1130\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID1134\">1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"96\" source=\"#ID1134\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1132\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1135\">13.16380470834466 0.02353305587178231 12.70754829964972 2.702938420872503 13.24002340945525 2.815181424239013 11.86263358545151 5.414979342100926 11.38526271924082 5.198144421396179 9.676888492394975 7.645755905570645 9.287065505064954 7.339104016431012 6.831636119784472 9.35548594921938 6.556009772566611 8.979915213203102 3.520825277789115 10.42765758663682 3.378140490156039 10.00875944513644 -0.02990082172260377 10.7891985748789 -0.02990082172267482 10.35552991492187 -3.435919522059974 9.9965833962471 -3.578613696232667 10.41548035629503 -6.607781419161219 8.956387769230418 -6.883468591155371 9.331957914520494 -9.329352241179443 7.305826045436834 -9.719207518205637 7.612483251112464 -11.415120926074 5.157382539894559 -11.89256237906191 5.374217460599315 -12.72297526512372 2.657477016911196 -13.25547891000948 2.769721792456383 -13.16378218064985 -0.02353490189121056 -13.23998135775804 -2.815179652060345 -13.71506791570486 -0.02353490189120707 13.71509494893863 0.02353305587177882 13.25550293955077 -2.769719724914605 12.72300830574298 -2.657477903000535 11.89255787352293 -5.374217460599311 11.41515847223228 -5.15738785643058 9.719179734048568 -7.612483251112466 9.329413065955807 -7.305833134151492 6.883464085616424 -9.331950235079592 6.607832481936404 -8.956385406325536 3.578613696232724 -10.41547563048526 3.435947306217084 -9.996572763175115 0.02993367461107122 -10.35552755201697 0.02993367461099795 -10.78919857487892 -3.378135984617037 -10.00876771530356 -3.520815891249638 -10.42765167937458 -6.556009772566556 -8.979918166834205 -6.831627108706453 -9.35548004195716 -9.287060999525936 -7.339102244252365 -9.676892997933901 -7.645755905570643 -11.3852296786218 -5.19814619357484 -11.86264785299155 -5.414977569922251 -12.70747921471866 -2.702930446068514</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1135\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1131\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1129\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1130\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"96\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1131\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1132\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 12 12 13 13 11 11 11 11 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 23 23 24 24 22 22 25 25 22 22 24 24 26 26 27 27 2 2 2 2 27 27 0 0 0 0 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 33 33 35 35 34 34 34 34 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 47 47 46 46 24 24 47 47 23 23 47 47 24 24 48 24 49 47 50 23 49 47 48 24 51 46 49 47 51 46 52 45 52 45 51 46 53 44 52 45 53 44 54 43 54 43 53 44 55 42 54 43 55 42 56 41 56 41 55 42 57 40 56 41 57 40 58 39 58 39 57 40 59 38 58 39 59 38 60 37 60 37 59 38 61 35 60 37 61 35 62 36 62 36 61 35 63 34 63 34 61 35 64 33 63 34 64 33 65 32 65 32 64 33 66 31 65 32 66 31 67 30 67 30 66 31 68 29 67 30 68 29 69 28 69 28 68 29 70 27 69 28 70 27 71 0 71 0 70 27 72 2 72 2 70 27 73 26 48 24 74 22 75 25 74 22 48 24 50 23 74 22 50 23 76 21 74 22 76 21 77 20 77 20 76 21 78 19 77 20 78 19 79 18 79 18 78 19 80 17 79 18 80 17 81 16 81 16 80 17 82 15 81 16 82 15 83 14 83 14 82 15 84 13 83 14 84 13 85 11 85 11 84 13 86 12 85 11 86 12 87 10 85 11 87 10 88 9 88 9 87 10 89 8 88 9 89 8 90 7 90 7 89 8 91 6 90 7 91 6 92 5 92 5 91 6 93 4 92 5 93 4 94 3 94 3 93 4 95 1 94 3 95 1 72 2 72 2 95 1 71 0</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1136\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1137\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1139\">-0.4478128033659967 0.2778640982455765 -0.362934906886154 -0.4478128033659949 0.307457980125035 -0.3945048806169198</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1139\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1138\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1137\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1138\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1140\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1141\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1143\">-0.4478128033659896 -0.2592153908032857 -0.3790163769896233 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1143\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1142\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1141\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1142\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1144\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1145\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1147\">-0.4478128033659967 -0.4253519781642065 0.1347814339741829 -0.4478128033659914 -0.4139088478041265 0.0933464324579063</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1147\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1146\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1145\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1146\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1148\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1149\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1151\">-0.4478128033659932 -0.003894005930508371 0.4410080127493087 -0.4478128033659967 0.03004302779671875 0.423250557236884</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1151\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1150\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1149\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1150\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1152\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1153\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1155\">-0.4478128033659976 0.4132203263553758 0.1481986756257214 -0.4478128033659941 0.443604104310682 0.1249160682732518</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1155\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1154\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1153\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1154\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1156\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1157\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1159\">-0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.005569503239401641 -0.6325761712128029</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1159\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1158\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1157\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1158\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1160\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1161\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1163\">-0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803314 -0.6020747235977453 -0.1948699676140677</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1163\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1162\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1161\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1162\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1164\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1165\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1167\">-0.5298591187803314 0.005242382336229534 -0.5675233220841833 -0.529859118780335 -0.05171889424246934 -0.426670674331888</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1167\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1166\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1165\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1166\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1168\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1169\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1171\">-0.5298591187803421 0.004574999374554745 -0.4344675846323871 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1171\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1170\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1169\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1170\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1172\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1173\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1175\">-0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.365877924949132 0.5166904045363489</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1175\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1174\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1173\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1174\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1176\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1177\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1179\">-0.5298591187803314 -0.3342368387947641 0.459116412202264 -0.5298591187803323 -0.2836405746819554 0.488100356742052</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1179\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1178\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1177\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1178\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1180\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1181\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1183\">-0.5298591187803341 0.328054863850014 0.4637080820710361 -0.5298591187803368 0.2863054132589566 0.3205489738215878</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1183\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1182\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1181\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1182\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1184\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1185\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1187\">-0.5298591187803421 0.2506140352906494 0.3552348656737639 -0.5298591187803332 0.2520881913262922 0.2718711494341899</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1187\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1186\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1185\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1186\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1188\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1189\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1191\">-0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.3723203951393453 0.5119000403984736</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1191\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1190\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1189\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1190\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1192\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1193\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1195\">-0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2562910144078499 0.3510828613173088</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1195\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1194\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1193\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1194\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1196\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1197\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1199\">-0.5298591187803385 -0.540087405646254 -0.1750670537230961 -0.529859118780335 -0.4220446497283755 -0.0812417951098896</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1199\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1198\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1197\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1198\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1200\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1201\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1203\">-0.529859118780335 -0.4132513394820253 -0.1345502998244115 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1203\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1202\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1201\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1202\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1204\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1205\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1207\">-0.5298591187803394 0.5432375283177788 -0.1650388315610469 -0.5298591187803332 0.5193516011359987 -0.221286843772758</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1207\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1206\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1205\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1206\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1208\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1209\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1211\">-0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.6054177208838552 -0.184220112484069</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1211\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1210\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1209\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1210\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1212\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1213\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1215\">-0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.4160034728768081 -0.1257918324128582</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1215\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1214\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1213\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1214\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1216\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1217\">\r\n\t\t\t\t\t<float_array count=\"6\" id=\"ID1219\">0.4736113844101926 1.42012168249506 1.065790132799686 0.8846653631423393 1.420121682495051 1.065790132799686</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2\" source=\"#ID1219\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1218\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1217\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<lines count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1218\" />\r\n\t\t\t\t\t<p>1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1222\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1228\">\r\n\t\t\t\t\t<float_array count=\"1008\" id=\"ID1232\">-0.3969897627830505 0.2017256319522858 0.5573908686637878 -0.3969897627830505 0.216172605752945 0.555826723575592 -0.3344528675079346 0.2122509032487869 0.5473707914352417 -0.3344528675079346 0.2122509032487869 0.5473707914352417 -0.3969897627830505 0.216172605752945 0.555826723575592 -0.3969897627830505 0.2017256319522858 0.5573908686637878 -0.4577676355838776 0.1979141235351563 0.5491738319396973 -0.4577676355838776 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.2218439280986786 0.535342276096344 -0.3362122476100922 0.2218439280986786 0.535342276096344 -0.4535223543643951 0.1872304528951645 0.5396941304206848 -0.4535223543643951 0.1872304528951645 0.5396941304206848 -0.4595263302326202 0.2122509032487869 0.5473707914352417 -0.4595263302326202 0.2122509032487869 0.5473707914352417 -0.3969897627830505 0.190775528550148 0.5473343729972839 -0.3969897627830505 0.190775528550148 0.5473343729972839 -0.2774728834629059 0.2008335143327713 0.5227594971656799 -0.2774728834629059 0.2008335143327713 0.5227594971656799 -0.2808338701725006 0.2107474654912949 0.5114217400550842 -0.2808338701725006 0.2107474654912949 0.5114217400550842 -0.3969897627830505 0.2256553471088409 0.5435583591461182 -0.3969897627830505 0.2256553471088409 0.5435583591461182 -0.5050317049026489 0.1769081056118012 0.5174409151077271 -0.5050317049026489 0.1769081056118012 0.5174409151077271 -0.513146698474884 0.1868172287940979 0.5252532958984375 -0.513146698474884 0.1868172287940979 0.5252532958984375 -0.3404567539691925 0.1872304528951645 0.5396941304206848 -0.3404567539691925 0.1872304528951645 0.5396941304206848 -0.2808338701725006 0.1868172287940979 0.5252532958984375 -0.2808338701725006 0.1868172287940979 0.5252532958984375 -0.2889475822448731 0.2107493579387665 0.4978778660297394 -0.2889475822448731 0.2107493579387665 0.4978778660297394 -0.3404567539691925 0.2210730165243149 0.5201323628425598 -0.3404567539691925 0.2210730165243149 0.5201323628425598 -0.4969178736209869 0.1769112795591354 0.5039008259773254 -0.4969178736209869 0.1769112795591354 0.5039008259773254 -0.449276864528656 0.1864599287509918 0.5244837999343872 -0.449276864528656 0.1864599287509918 0.5244837999343872 -0.5165071487426758 0.2008335143327713 0.5227594971656799 -0.5165071487426758 0.2008335143327713 0.5227594971656799 -0.4577676355838776 0.2218439280986786 0.535342276096344 -0.4577676355838776 0.2218439280986786 0.535342276096344 -0.3969897627830505 0.1897388398647308 0.531552791595459 -0.3969897627830505 0.1897388398647308 0.531552791595459 -0.2311128377914429 0.1829331666231155 0.4841702878475189 -0.2311128377914429 0.1829331666231155 0.4841702878475189 -0.2357764393091202 0.1933503299951553 0.4739169776439667 -0.2357764393091202 0.1933503299951553 0.4739169776439667 -0.2470376193523407 0.1945692449808121 0.4629979431629181 -0.2470376193523407 0.1945692449808121 0.4629979431629181 -0.3969897627830505 0.2246185094118118 0.5277756452560425 -0.3969897627830505 0.2246185094118118 0.5277756452560425 -0.5356808304786682 0.1619468927383423 0.4716387093067169 -0.5356808304786682 0.1619468927383423 0.4716387093067169 -0.546941876411438 0.1607280522584915 0.4825592339038849 -0.546941876411438 0.1607280522584915 0.4825592339038849 -0.5582029819488525 0.1694204658269882 0.4877499043941498 -0.5582029819488525 0.1694204658269882 0.4877499043941498 -0.3447033762931824 0.1864599287509918 0.5244837999343872 -0.3447033762931824 0.1864599287509918 0.5244837999343872 -0.2889475822448731 0.1769081056118012 0.5174409151077271 -0.2889475822448731 0.1769081056118012 0.5174409151077271 -0.2357764393091202 0.1694204658269882 0.4877499043941498 -0.2357764393091202 0.1694204658269882 0.4877499043941498 -0.2582992911338806 0.1858771443367004 0.4578079283237457 -0.2582992911338806 0.1858771443367004 0.4578079283237457 -0.2970618903636932 0.2008417099714279 0.490065723657608 -0.2970618903636932 0.2008417099714279 0.490065723657608 -0.3447033762931824 0.2103893458843231 0.5106498599052429 -0.3447033762931824 0.2103893458843231 0.5106498599052429 -0.5310156345367432 0.1723641604185104 0.4613868892192841 -0.5310156345367432 0.1723641604185104 0.4613868892192841 -0.4935570359230042 0.1868250817060471 0.4925611317157745 -0.4935570359230042 0.1868250817060471 0.4925611317157745 -0.4475182890892029 0.1960520446300507 0.5124538540840149 -0.4475182890892029 0.1960520446300507 0.5124538540840149 -0.5628681778907776 0.1829331666231155 0.4841702878475189 -0.5628681778907776 0.1829331666231155 0.4841702878475189 -0.513146698474884 0.2107474654912949 0.5114217400550842 -0.513146698474884 0.2107474654912949 0.5114217400550842 -0.4535223543643951 0.2210730165243149 0.5201323628425598 -0.4535223543643951 0.2210730165243149 0.5201323628425598 -0.3969897627830505 0.1992211937904358 0.5192845463752747 -0.3969897627830505 0.1992211937904358 0.5192845463752747 -0.1994902491569519 0.160144031047821 0.4350440502166748 -0.1994902491569519 0.160144031047821 0.4350440502166748 -0.2050454169511795 0.1712013632059097 0.4261728525161743 -0.2050454169511795 0.1712013632059097 0.4261728525161743 -0.2184522151947022 0.1739687025547028 0.4185889363288879 -0.2184522151947022 0.1739687025547028 0.4185889363288879 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.3969897627830505 0.2136686891317368 0.5177204012870789 -0.3969897627830505 0.2136686891317368 0.5177204012870789 -0.5565645694732666 0.1539511382579804 0.4216945171356201 -0.5565645694732666 0.1539511382579804 0.4216945171356201 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5755271911621094 0.1401268541812897 0.4381494522094727 -0.5755271911621094 0.1401268541812897 0.4381494522094727 -0.5889348983764648 0.1472729295492172 0.4400050044059753 -0.5889348983764648 0.1472729295492172 0.4400050044059753 -0.3464618027210236 0.1960520446300507 0.5124538540840149 -0.3464618027210236 0.1960520446300507 0.5124538540840149 -0.2970618903636932 0.1769112795591354 0.5039008259773254 -0.2970618903636932 0.1769112795591354 0.5039008259773254 -0.2470376193523407 0.1607280522584915 0.4825592339038849 -0.2470376193523407 0.1607280522584915 0.4825592339038849 -0.2050454169511795 0.1472729295492172 0.4400050044059753 -0.2050454169511795 0.1472729295492172 0.4400050044059753 -0.2374149113893509 0.1539511382579804 0.4216945171356201 -0.2374149113893509 0.1539511382579804 0.4216945171356201 -0.2629641890525818 0.1723641604185104 0.4613868892192841 -0.2629641890525818 0.1723641604185104 0.4613868892192841 -0.3004229962825775 0.1868250817060471 0.4925611317157745 -0.3004229962825775 0.1868250817060471 0.4925611317157745 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5356808304786682 0.1858771443367004 0.4578079283237457 -0.5356808304786682 0.1858771443367004 0.4578079283237457 -0.4969178736209869 0.2008417099714279 0.490065723657608 -0.4969178736209869 0.2008417099714279 0.490065723657608 -0.449276864528656 0.2103893458843231 0.5106498599052429 -0.449276864528656 0.2103893458843231 0.5106498599052429 -0.5944892168045044 0.160144031047821 0.4350440502166748 -0.5944892168045044 0.160144031047821 0.4350440502166748 -0.5582029819488525 0.1933503299951553 0.4739169776439667 -0.5582029819488525 0.1933503299951553 0.4739169776439667 -0.5050317049026489 0.2107493579387665 0.4978778660297394 -0.5050317049026489 0.2107493579387665 0.4978778660297394 -0.1854178756475449 0.1344887018203735 0.379740834236145 -0.1854178756475449 0.1344887018203735 0.379740834236145 -0.1913672238588333 0.1462691277265549 0.3724253475666046 -0.1913672238588333 0.1462691277265549 0.3724253475666046 -0.205731064081192 0.1507763862609863 0.3685949742794037 -0.205731064081192 0.1507763862609863 0.3685949742794037 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2260439544916153 0.1332219839096069 0.3770101070404053 -0.2260439544916153 0.1332219839096069 0.3770101070404053 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5679354667663574 0.1332219839096069 0.3770102262496948 -0.5679354667663574 0.1332219839096069 0.3770102262496948 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5882483720779419 0.1169347614049912 0.3881564140319824 -0.5882483720779419 0.1169347614049912 0.3881564140319824 -0.602612316608429 0.1223383918404579 0.3862566649913788 -0.602612316608429 0.1223383918404579 0.3862566649913788 -0.2582992911338806 0.1619468927383423 0.4716387093067169 -0.2582992911338806 0.1619468927383423 0.4716387093067169 -0.2184522151947022 0.1401268541812897 0.4381494522094727 -0.2184522151947022 0.1401268541812897 0.4381494522094727 -0.1913672238588333 0.1223383918404579 0.3862566649913788 -0.1913672238588333 0.1223383918404579 0.3862566649913788 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.5882483720779419 0.1507763862609863 0.3685950040817261 -0.5882483720779419 0.1507763862609863 0.3685950040817261 -0.5755271911621094 0.1739687025547028 0.4185889363288879 -0.5755271911621094 0.1739687025547028 0.4185889363288879 -0.546941876411438 0.1945692449808121 0.4629979431629181 -0.546941876411438 0.1945692449808121 0.4629979431629181 -0.6085617542266846 0.1344887018203735 0.379740834236145 -0.6085617542266846 0.1344887018203735 0.379740834236145 -0.5889348983764648 0.1712013632059097 0.4261728525161743 -0.5889348983764648 0.1712013632059097 0.4261728525161743 -0.1901445388793945 0.108248382806778 0.3231741487979889 -0.1901445388793945 0.108248382806778 0.3231741487979889 -0.1959603577852249 0.1207654625177383 0.3174494504928589 -0.1959603577852249 0.1207654625177383 0.3174494504928589 -0.2100040912628174 0.1270548850297928 0.3174593448638916 -0.2100040912628174 0.1270548850297928 0.3174593448638916 -0.2240462750196457 0.1234327480196953 0.323198676109314 -0.2240462750196457 0.1234327480196953 0.323198676109314 -0.2298634797334671 0.1120201274752617 0.3313052952289581 -0.2298634797334671 0.1120201274752617 0.3313052952289581 -0.2240462750196457 0.09950244426727295 0.3370305299758911 -0.2240462750196457 0.09950244426727295 0.3370305299758911 -0.5839760303497315 0.1270548850297928 0.3174594044685364 -0.5839760303497315 0.1270548850297928 0.3174594044685364 -0.5699338316917419 0.1234327480196953 0.323198676109314 -0.5699338316917419 0.1234327480196953 0.323198676109314 -0.5641167759895325 0.1120201274752617 0.3313052952289581 -0.5641167759895325 0.1120201274752617 0.3313052952289581 -0.5699338316917419 0.09950244426727295 0.3370305597782135 -0.5699338316917419 0.09950244426727295 0.3370305597782135 -0.5839760303497315 0.09321287274360657 0.3370204567909241 -0.5839760303497315 0.09321287274360657 0.3370204567909241 -0.5980189442634583 0.09683530032634735 0.3312812447547913 -0.5980189442634583 0.09683530032634735 0.3312812447547913 -0.205731064081192 0.1169347614049912 0.3881563544273377 -0.205731064081192 0.1169347614049912 0.3881563544273377 -0.1959603577852249 0.09683530032634735 0.3312811255455017 -0.1959603577852249 0.09683530032634735 0.3312811255455017 -0.2100040912628174 0.09321287274360657 0.3370203971862793 -0.2100040912628174 0.09321287274360657 0.3370203971862793 -0.5980189442634583 0.1207654625177383 0.3174495100975037 -0.5980189442634583 0.1207654625177383 0.3174495100975037 -0.602612316608429 0.1462691277265549 0.372425377368927 -0.602612316608429 0.1462691277265549 0.372425377368927 -0.6038353443145752 0.108248382806778 0.3231741487979889 -0.6038353443145752 0.108248382806778 0.3231741487979889 -0.2132495641708374 0.08375199884176254 0.2703697681427002 -0.2132495641708374 0.08375199884176254 0.2703697681427002 -0.2184157222509384 0.09695863723754883 0.2661298215389252 -0.2184157222509384 0.09695863723754883 0.2661298215389252 -0.2308897227048874 0.1049110144376755 0.2697240114212036 -0.2308897227048874 0.1049110144376755 0.2697240114212036 -0.2433643490076065 0.1029518842697144 0.2790485918521881 -0.2433643490076065 0.1029518842697144 0.2790485918521881 -0.2485314607620239 0.09222786128520966 0.2886408567428589 -0.2485314607620239 0.09222786128520966 0.2886408567428589 -0.2433643490076065 0.0790218710899353 0.2928808033466339 -0.2433643490076065 0.0790218710899353 0.2928808033466339 -0.2308897227048874 0.07106951624155045 0.2892857789993286 -0.2308897227048874 0.07106951624155045 0.2892857789993286 -0.5755632519721985 0.09695863723754883 0.2661299407482147 -0.5755632519721985 0.09695863723754883 0.2661299407482147 -0.5630897283554077 0.1049110144376755 0.2697240114212036 -0.5630897283554077 0.1049110144376755 0.2697240114212036 -0.550615668296814 0.1029518842697144 0.2790486514568329 -0.550615668296814 0.1029518842697144 0.2790486514568329 -0.5454484224319458 0.09222786128520966 0.2886409163475037 -0.5454484224319458 0.09222786128520966 0.2886409163475037 -0.550615668296814 0.0790218710899353 0.2928808629512787 -0.550615668296814 0.0790218710899353 0.2928808629512787 -0.5630897283554077 0.07106951624155045 0.2892858386039734 -0.5630897283554077 0.07106951624155045 0.2892858386039734 -0.5755632519721985 0.07302837073802948 0.2799610495567322 -0.5755632519721985 0.07302837073802948 0.2799610495567322 -0.2184157222509384 0.07302837073802948 0.2799609899520874 -0.2184157222509384 0.07302837073802948 0.2799609899520874 -0.5807303786277771 0.08375222980976105 0.2703697681427002 -0.5807303786277771 0.08375222980976105 0.2703697681427002 -0.2526813745498657 0.0631781592965126 0.2260204702615738 -0.2526813745498657 0.0631781592965126 0.2260204702615738 -0.2567388117313385 0.07696282863616943 0.2230269759893417 -0.2567388117313385 0.07696282863616943 0.2230269759893417 -0.2665359377861023 0.08631247282028198 0.2296321243047714 -0.2665359377861023 0.08631247282028198 0.2296321243047714 -0.2763324975967407 0.08574993163347244 0.2419681996107101 -0.2763324975967407 0.08574993163347244 0.2419681996107101 -0.2803907990455627 0.07560457289218903 0.2528066337108612 -0.2803907990455627 0.07560457289218903 0.2528066337108612 -0.2763324975967407 0.06182022392749786 0.255800187587738 -0.2763324975967407 0.06182022392749786 0.255800187587738 -0.2665359377861023 0.05247067660093308 0.2491944879293442 -0.2665359377861023 0.05247067660093308 0.2491944879293442 -0.2567388117313385 0.05303321778774262 0.2368583828210831 -0.2567388117313385 0.05303321778774262 0.2368583828210831 -0.5412995219230652 0.0631781592965126 0.2260205298662186 -0.5412995219230652 0.0631781592965126 0.2260205298662186 -0.5372412204742432 0.07696282863616943 0.2230269759893417 -0.5372412204742432 0.07696282863616943 0.2230269759893417 -0.5274438858032227 0.08631247282028198 0.229632243514061 -0.5274438858032227 0.08631247282028198 0.229632243514061 -0.5176466703414917 0.08574993163347244 0.2419681996107101 -0.5176466703414917 0.08574993163347244 0.2419681996107101 -0.5135881304740906 0.07560480386018753 0.252806693315506 -0.5135881304740906 0.07560480386018753 0.252806693315506 -0.5176466703414917 0.06182022392749786 0.2558001279830933 -0.5176466703414917 0.06182022392749786 0.2558001279830933 -0.5274438858032227 0.05247067660093308 0.249194547533989 -0.5274438858032227 0.05247067660093308 0.249194547533989 -0.5372412204742432 0.05303321778774262 0.2368584722280502 -0.5372412204742432 0.05303321778774262 0.2368584722280502 -0.3049343228340149 0.04835595190525055 0.1940678507089615 -0.3049343228340149 0.04835595190525055 0.1940678507089615 -0.3075232207775116 0.06255754083395004 0.1919737458229065 -0.3075232207775116 0.06255754083395004 0.1919737458229065 -0.3137733042240143 0.07291240990161896 0.2007463872432709 -0.3137733042240143 0.07291240990161896 0.2007463872432709 -0.3200229704380035 0.07335587590932846 0.2152515798807144 -0.3200229704380035 0.07335587590932846 0.2152515798807144 -0.3226109147071838 0.06362755596637726 0.2269887775182724 -0.3226109147071838 0.06362755596637726 0.2269887775182724 -0.3200229704380035 0.04942680522799492 0.2290833741426468 -0.3200229704380035 0.04942680522799492 0.2290833741426468 -0.3137733042240143 0.03907079249620438 0.2203076630830765 -0.3137733042240143 0.03907079249620438 0.2203076630830765 -0.3075232207775116 0.03862743079662323 0.2058039754629135 -0.3075232207775116 0.03862743079662323 0.2058039754629135 -0.4864564538002014 0.03862784057855606 0.2058040350675583 -0.4864564538002014 0.03862784057855606 0.2058040350675583 -0.4890454411506653 0.04835615679621697 0.1940679997205734 -0.4890454411506653 0.04835615679621697 0.1940679997205734 -0.4864564538002014 0.06255754083395004 0.1919737756252289 -0.4864564538002014 0.06255754083395004 0.1919737756252289 -0.4802065193653107 0.07291240990161896 0.2007464468479157 -0.4802065193653107 0.07291240990161896 0.2007464468479157 -0.4739566445350647 0.07335587590932846 0.2152516394853592 -0.4739566445350647 0.07335587590932846 0.2152516394853592 -0.4713678061962128 0.06362777203321457 0.2269886881113052 -0.4713678061962128 0.06362777203321457 0.2269886881113052 -0.4739566445350647 0.04942680522799492 0.2290834337472916 -0.4739566445350647 0.04942680522799492 0.2290834337472916 -0.4802065193653107 0.03907079249620438 0.2203076630830765 -0.4802065193653107 0.03907079249620438 0.2203076630830765 -0.365368127822876 0.04060065001249313 0.1773498803377152 -0.365368127822876 0.04060065001249313 0.1773498803377152 -0.3662575781345367 0.05502000823616982 0.1757262051105499 -0.3662575781345367 0.05502000823616982 0.1757262051105499 -0.3684046268463135 0.06590185314416885 0.185634508728981 -0.3684046268463135 0.06590185314416885 0.185634508728981 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3714402318000794 0.05736114829778671 0.2134792059659958 -0.3714402318000794 0.05736114829778671 0.2134792059659958 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3684046268463135 0.03205951303243637 0.2051951140165329 -0.3684046268463135 0.03205951303243637 0.2051951140165329 -0.3662575781345367 0.03109009563922882 0.1895565390586853 -0.3662575781345367 0.03109009563922882 0.1895565390586853 -0.4255755841732025 0.03205951303243637 0.2051951140165329 -0.4255755841732025 0.03205951303243637 0.2051951140165329 -0.4277224540710449 0.03109009563922882 0.1895565390586853 -0.4277224540710449 0.03109009563922882 0.1895565390586853 -0.4286115169525147 0.04060065001249313 0.1773498803377152 -0.4286115169525147 0.04060065001249313 0.1773498803377152 -0.4277224540710449 0.05502000823616982 0.1757262051105499 -0.4277224540710449 0.05502000823616982 0.1757262051105499 -0.4255755841732025 0.06590185314416885 0.185634508728981 -0.4255755841732025 0.06590185314416885 0.185634508728981 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4225397408008575 0.05736114829778671 0.2134792059659958 -0.4225397408008575 0.05736114829778671 0.2134792059659958 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.4233378767967224 0.04165389388799667 0.2158837467432022</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"336\" source=\"#ID1232\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1229\">\r\n\t\t\t\t\t<float_array count=\"1008\" id=\"ID1233\">1.100715383596115e-005 -0.2879526679489293 0.9576446422864466 -5.00212074441366e-007 0.4861331523678775 0.8738847510791226 0.2915133493835332 0.4649853603216409 0.8359477147631591 -0.2915133493835332 -0.4649853603216409 -0.8359477147631591 5.00212074441366e-007 -0.4861331523678775 -0.8738847510791226 -1.100715383596115e-005 0.2879526679489293 -0.9576446422864466 -0.2165908462952944 -0.3036360506308182 0.9278434965329054 0.2165908462952944 0.3036360506308182 -0.9278434965329054 0.2165672156771486 -0.3036348934200792 0.9278493911145411 -0.2165672156771486 0.3036348934200792 -0.9278493911145411 0.2012191114973859 0.935966109203319 0.2889261351816466 -0.2012191114973859 -0.935966109203319 -0.2889261351816466 -0.01338570612357837 -0.8872174650094622 0.4611572320302012 0.01338570612357837 0.8872174650094622 -0.4611572320302012 -0.2915081904689192 0.4649882673554808 0.8359478967682641 0.2915081904689192 -0.4649882673554808 -0.8359478967682641 9.286556119569346e-006 -0.886195944691421 0.4633106382614584 -9.286556119569346e-006 0.886195944691421 -0.4633106382614584 0.5586933627804324 0.4030607494604687 0.7248474036853946 -0.5586933627804324 -0.4030607494604687 -0.7248474036853946 0.3872031794044685 0.8971003565986427 0.2128018986044513 -0.3872031794044685 -0.8971003565986427 -0.2128018986044513 -4.215760203857162e-006 0.9491698563782013 0.3147643304525022 4.215760203857162e-006 -0.9491698563782013 -0.3147643304525022 -0.02489908720408136 -0.8902586988205591 0.4547741028584725 0.02489908720408136 0.8902586988205591 -0.4547741028584725 -0.4127100464423818 -0.3494503553924499 0.8411628062875923 0.4127100464423818 0.3494503553924499 -0.8411628062875923 0.01337168713847178 -0.8872144590180767 0.4611634218932942 -0.01337168713847178 0.8872144590180767 -0.4611634218932942 0.4127213451782525 -0.3494520919706329 0.8411565411096807 -0.4127213451782525 0.3494520919706329 -0.8411565411096807 0.01371745529342166 0.9156097785848437 -0.4018340015231245 -0.01371745529342166 -0.9156097785848437 0.4018340015231245 0.006620618646293013 0.9162693618435276 -0.4005079574185703 -0.006620618646293013 -0.9162693618435276 0.4005079574185703 0.363455227687781 -0.9155786834854502 -0.1720929162210725 -0.363455227687781 0.9155786834854502 0.1720929162210725 0.1887453159836821 -0.9514474668815823 -0.2431520583068137 -0.1887453159836821 0.9514474668815823 0.2431520583068137 -0.5586849146318411 0.4030614471027265 0.7248535272882849 0.5586849146318411 -0.4030614471027265 -0.7248535272882849 -0.2012099022502427 0.9359642253928665 0.2889386509644896 0.2012099022502427 -0.9359642253928665 -0.2889386509644896 -5.812806568932802e-007 -0.9636132872443618 -0.2673002668269849 5.812806568932802e-007 0.9636132872443618 0.2673002668269849 0.7781572839386454 0.3051784083299842 0.5489420557239244 -0.7781572839386454 -0.3051784083299842 -0.5489420557239244 0.5429990370358453 0.8347584459073265 0.09127093055584411 -0.5429990370358453 -0.8347584459073265 -0.09127093055584411 0.0216401567875206 0.9177460426900622 -0.3965777411062578 -0.0216401567875206 -0.9177460426900622 0.3965777411062578 -2.059688964850534e-006 0.9164211759940478 -0.4002152273283016 2.059688964850534e-006 -0.9164211759940478 0.4002152273283016 0.5222649138591139 -0.8510833480847447 -0.05381908922114634 -0.5222649138591139 0.8510833480847447 0.05381908922114634 -0.03319586646515618 -0.8907586118954389 0.453262760199576 0.03319586646515618 0.8907586118954389 -0.453262760199576 -0.5698524653192305 -0.4205778588907226 0.7059620615730641 0.5698524653192305 0.4205778588907226 -0.7059620615730641 -0.1887331923837483 -0.9514500233658778 -0.2431514654072841 0.1887331923837483 0.9514500233658778 0.2431514654072841 0.02490777566955089 -0.8902587869583333 0.4547734545404692 -0.02490777566955089 0.8902587869583333 -0.4547734545404692 0.5698689534768392 -0.4205476238758168 0.7059667640304439 -0.5698689534768392 0.4205476238758168 -0.7059667640304439 -0.5544686309274808 0.4664188183525423 -0.6892155128869512 0.5544686309274808 -0.4664188183525423 0.6892155128869512 -0.3952795905222943 0.3983177432788594 -0.827705878138946 0.3952795905222943 -0.3983177432788594 0.827705878138946 -0.207927917002811 0.3537115165398592 -0.911950735729702 0.207927917002811 -0.3537115165398592 0.911950735729702 0.7794515084571977 -0.3099762539564684 -0.5443988133224705 -0.7794515084571977 0.3099762539564684 0.5443988133224705 0.5575192502637445 -0.4076386593834047 -0.7231894696146043 -0.5575192502637445 0.4076386593834047 0.7231894696146043 0.2907385042740951 -0.4698676619789975 -0.8334839544699421 -0.2907385042740951 0.4698676619789975 0.8334839544699421 -0.7781654779003928 0.3051658714372215 0.5489374098328645 0.7781654779003928 -0.3051658714372215 -0.5489374098328645 -0.3872146420584227 0.8970965729133288 0.2127969920904148 0.3872146420584227 -0.8970965729133288 -0.2127969920904148 -0.00660748602147272 0.916263273565502 -0.4005221025655215 0.00660748602147272 -0.916263273565502 0.4005221025655215 8.541388568576863e-006 -0.4910278000528664 -0.8711439028669642 -8.541388568576863e-006 0.4910278000528664 0.8711439028669642 0.9293599606018972 0.179336702210366 0.3226893411167321 -0.9293599606018972 -0.179336702210366 -0.3226893411167321 0.6544140873167479 0.7531369058381351 -0.06728300963800632 -0.6544140873167479 -0.7531369058381351 0.06728300963800632 0.08491776977295618 0.9176703790828461 -0.3881623986564549 -0.08491776977295618 -0.9176703790828461 0.3881623986564549 -0.6089327437528342 0.5904872166633667 -0.5296468262368759 0.6089327437528342 -0.5904872166633667 0.5296468262368759 2.974362482897488e-006 0.3383138927599808 -0.9410333203222624 -2.974362482897488e-006 -0.3383138927599808 0.9410333203222624 0.930509737814023 -0.1808882794953763 -0.3184824299305707 -0.930509737814023 0.1808882794953763 0.3184824299305707 0.5871771771243384 -0.8010775837051904 0.116179462683157 -0.5871771771243384 0.8010775837051904 -0.116179462683157 -0.09343537945941918 -0.8868205441743211 0.4525694999617577 0.09343537945941918 0.8868205441743211 -0.4525694999617577 -0.6732692549969293 -0.5099273050840194 0.5354275430024397 0.6732692549969293 0.5099273050840194 -0.5354275430024397 -0.290749099116707 -0.4698652454584595 -0.833481620956986 0.290749099116707 0.4698652454584595 0.833481620956986 -0.3634643232123655 -0.9155783093509572 -0.1720756961276642 0.3634643232123655 0.9155783093509572 0.1720756961276642 0.03305816323114872 -0.894752363067841 0.4453373627131425 -0.03305816323114872 0.894752363067841 -0.4453373627131425 0.673259410583817 -0.5099398597757813 0.5354279647834881 -0.673259410583817 0.5099398597757813 -0.5354279647834881 -0.9303034464617545 -0.1771334335109996 -0.3211841282410853 0.9303034464617545 0.1771334335109996 0.3211841282410853 -0.7795733875872093 -0.3052459198546588 -0.5468914533779863 0.7795733875872093 0.3052459198546588 0.5468914533779863 -0.557525300036653 -0.4076416721374287 -0.7231831074880283 0.557525300036653 0.4076416721374287 0.7231831074880283 0.6083105377611066 0.5964914058014206 -0.5235993625414743 -0.6083105377611066 -0.5964914058014206 0.5235993625414743 0.5460609384515709 0.4719230165382369 -0.6921749186143923 -0.5460609384515709 -0.4719230165382369 0.6921749186143923 0.3952953118344753 0.3983059077837897 -0.8277040656334943 -0.3952953118344753 -0.3983059077837897 0.8277040656334943 0.2079168365125522 0.3537163887637413 -0.9119513722861271 -0.2079168365125522 -0.3537163887637413 0.9119513722861271 -0.9293620016168114 0.1793367018887206 0.3226834630198296 0.9293620016168114 -0.1793367018887206 -0.3226834630198296 -0.5429698145779854 0.8347806377526564 0.09124180670293802 0.5429698145779854 -0.8347806377526564 -0.09124180670293802 -0.0137147172176815 0.915604316800109 -0.4018465398490383 0.0137147172176815 -0.915604316800109 0.4018465398490383 0.9971363129691673 0.03671384203629936 0.06611555914600223 -0.9971363129691673 -0.03671384203629936 -0.06611555914600223 0.7098166461020702 0.6583800844002149 -0.250391679936803 -0.7098166461020702 -0.6583800844002149 0.250391679936803 0.09262093803667669 0.9028998927923957 -0.419753672327815 -0.09262093803667669 -0.9028998927923957 0.419753672327815 -0.6320131605804139 0.6764909543610331 -0.3780467610241551 0.6320131605804139 -0.6764909543610331 0.3780467610241551 -0.9968574878858364 -0.04248596266388211 -0.06685874529530655 0.9968574878858364 0.04248596266388211 0.06685874529530655 0.6377644486983164 0.6763436168742892 -0.3685319794670977 -0.6377644486983164 -0.6763436168742892 0.3685319794670977 0.9967452301006394 -0.03912097567410024 -0.07048755587995632 -0.9967452301006394 0.03912097567410024 0.07048755587995632 0.6293091094626061 -0.7298048971572618 0.2671232989326467 -0.6293091094626061 0.7298048971572618 -0.2671232989326467 -0.0878470981311025 -0.9032670839852487 0.4199898359945516 0.0878470981311025 0.9032670839852487 -0.4199898359945516 -0.7139595591759941 -0.6085786298290158 0.3462568398987349 0.7139595591759941 0.6085786298290158 -0.3462568398987349 -0.5124184657129083 -0.8570967194989182 -0.05303328596854585 0.5124184657129083 0.8570967194989182 0.05303328596854585 0.08429227443152722 -0.8856210560847648 0.4566948187690176 -0.08429227443152722 0.8856210560847648 -0.4566948187690176 0.7139661310468548 -0.6085710049990598 0.34625669032153 -0.7139661310468548 0.6085710049990598 -0.34625669032153 -0.6384249373570429 -0.7202899272963328 0.2712858639813348 0.6384249373570429 0.7202899272963328 -0.2712858639813348 -0.5817646013022528 -0.8027559971512503 0.1308921606106814 0.5817646013022528 0.8027559971512503 -0.1308921606106814 -0.0975350277309561 0.9057875738450613 -0.4123539613407385 0.0975350277309561 -0.9057875738450613 0.4123539613407385 -0.07861868255715707 0.9197678292123763 -0.3845077932876396 0.07861868255715707 -0.9197678292123763 0.3845077932876396 -0.02133435285472708 0.9141485480559647 -0.4048175854325521 0.02133435285472708 -0.9141485480559647 0.4048175854325521 -0.9971359471075431 0.03672338310102496 0.06611577814378743 0.9971359471075431 -0.03672338310102496 -0.06611577814378743 -0.6544282329626999 0.753125001996044 -0.06727866875746516 0.6544282329626999 -0.753125001996044 0.06727866875746516 0.9743393554807079 -0.1093163319607265 -0.1967555842361046 -0.9743393554807079 0.1093163319607265 0.1967555842361046 0.701768580865077 0.5586859060907931 -0.4420304483246886 -0.701768580865077 -0.5586859060907931 0.4420304483246886 0.03706289722461273 0.9026851440191707 -0.4287025453813015 -0.03706289722461273 -0.9026851440191707 0.4287025453813015 -0.6503264580190576 0.7378384316224732 -0.1807482968696412 0.6503264580190576 -0.7378384316224732 0.1807482968696412 -0.9751811664482191 0.1061087405855619 0.1943260861954379 0.9751811664482191 -0.1061087405855619 -0.1943260861954379 -0.6723224793925161 -0.6002392068805169 0.4332382464960218 0.6723224793925161 0.6002392068805169 -0.4332382464960218 -0.04106258774338166 0.8990879536256117 -0.4358379464125708 0.04106258774338166 -0.8990879536256117 0.4358379464125708 0.6586147483838466 0.7298865062220813 -0.1830090195761027 -0.6586147483838466 -0.7298865062220813 0.1830090195761027 0.9748193469988046 0.111417186237971 0.1931669001864392 -0.9748193469988046 -0.111417186237971 -0.1931669001864392 0.6651896065333129 -0.6032270776840166 0.440045315971955 -0.6651896065333129 0.6032270776840166 -0.440045315971955 -0.03185468267752745 -0.9097173842164842 0.4140042995499341 0.03185468267752745 0.9097173842164842 -0.4140042995499341 -0.6897283700466407 -0.7069106424900996 0.1566911582924795 0.6897283700466407 0.7069106424900996 -0.1566911582924795 0.09347567343550103 -0.9000933710169554 0.4255516677527101 -0.09347567343550103 0.9000933710169554 -0.4255516677527101 0.6897375445398015 -0.7069016727983516 0.1566912398543636 -0.6897375445398015 0.7069016727983516 -0.1566912398543636 0.03593812209819782 -0.9127512269897633 0.4069319955579026 -0.03593812209819782 0.9127512269897633 -0.4069319955579026 -0.7017590213569223 0.5586946081510511 -0.4420346262083076 0.7017590213569223 -0.5586946081510511 0.4420346262083076 -0.709818748063382 0.6583775987073595 -0.2503922571048552 0.709818748063382 -0.6583775987073595 0.2503922571048552 -0.974338443766663 -0.1093171781621164 -0.1967596288800864 0.974338443766663 0.1093171781621164 0.1967596288800864 0.8633889564679328 -0.2451083098381773 -0.4410004833302183 -0.8633889564679328 0.2451083098381773 0.4410004833302183 0.6290046103695766 0.4634642747900084 -0.6241426648829487 -0.6290046103695766 -0.4634642747900084 0.6241426648829487 0.03554156252135575 0.8973259468323727 -0.4399351571253733 -0.03554156252135575 -0.8973259468323727 0.4399351571253733 -0.5694245203325242 0.8219547043962799 -0.01209047413871957 0.5694245203325242 -0.8219547043962799 0.01209047413871957 -0.8627114190412447 0.2482474767330248 0.4405703096572987 0.8627114190412447 -0.2482474767330248 -0.4405703096572987 -0.5992748592906593 -0.5084212250092343 0.6183668013260982 0.5992748592906593 0.5084212250092343 -0.6183668013260982 0.02512503278738687 -0.9129947515708048 0.4071969011812309 -0.02512503278738687 0.9129947515708048 -0.4071969011812309 -0.6289899427792813 0.4634856608255055 -0.6241415657458338 0.6289899427792813 -0.4634856608255055 0.6241415657458338 -0.03554759284476012 0.8973269535253716 -0.439932616567377 0.03554759284476012 -0.8973269535253716 0.439932616567377 0.5694218016437607 0.8219566749752858 -0.01208454700623923 -0.5694218016437607 -0.8219566749752858 0.01208454700623923 0.8627077507767076 0.248248209645723 0.4405770797005759 -0.8627077507767076 -0.248248209645723 -0.4405770797005759 0.5992774056691878 -0.5084208416781608 0.6183646487321849 -0.5992774056691878 0.5084208416781608 -0.6183646487321849 -0.02512235848010955 -0.9129943206482132 0.407198032373076 0.02512235848010955 0.9129943206482132 -0.407198032373076 -0.6050543403621613 -0.7960244965541471 -0.01594509625641305 0.6050543403621613 0.7960244965541471 0.01594509625641305 0.605062878180421 -0.7960177516385063 -0.01595783583078501 -0.605062878180421 0.7960177516385063 0.01595783583078501 -0.8633931629464862 -0.2450969105560301 -0.4409985834593485 0.8633931629464862 0.2450969105560301 0.4409985834593485 0.6757257263860772 -0.3582131733021387 -0.6442655238120539 -0.6757257263860772 0.3582131733021387 0.6442655238120539 0.497191645673142 0.3821475813859728 -0.7789503793655177 -0.497191645673142 -0.3821475813859728 0.7789503793655177 0.02947926195039484 0.8923438960447034 -0.4503924336693717 -0.02947926195039484 -0.8923438960447034 0.4503924336693717 -0.4412794085392349 0.8892751887941607 0.1202585639128165 0.4412794085392349 -0.8892751887941607 -0.1202585639128165 -0.6746014688802863 0.3624176619489304 0.6430912038677179 0.6746014688802863 -0.3624176619489304 -0.6430912038677179 -0.4754566145998638 -0.4300698529820409 0.7674509294992365 0.4754566145998638 0.4300698529820409 -0.7674509294992365 0.01748884856509388 -0.9150062616010659 0.4030603942422384 -0.01748884856509388 0.9150062616010659 -0.4030603942422384 0.4697897548825131 -0.8686441130557135 -0.1573371890592981 -0.4697897548825131 0.8686441130557135 0.1573371890592981 -0.675734036367169 -0.3582105659598173 -0.6442582576340646 0.675734036367169 0.3582105659598173 0.6442582576340646 -0.4971853572315199 0.3821684436042292 -0.7789441579906016 0.4971853572315199 -0.3821684436042292 0.7789441579906016 -0.02948069239466262 0.8923420790190162 -0.4503959400216118 0.02948069239466262 -0.8923420790190162 0.4503959400216118 0.4412707421759817 0.8892806518473205 0.1202499661100279 -0.4412707421759817 -0.8892806518473205 -0.1202499661100279 0.6745953782164265 0.3624208822881841 0.6430957780692472 -0.6745953782164265 -0.3624208822881841 -0.6430957780692472 0.475445493356882 -0.4300732761216662 0.7674559010214257 -0.475445493356882 0.4300732761216662 -0.7674559010214257 -0.01749034331298835 -0.9150054223823763 0.4030622345266829 0.01749034331298835 0.9150054223823763 -0.4030622345266829 -0.4697815306159824 -0.8686507780892173 -0.1573249478534862 0.4697815306159824 0.8686507780892173 0.1573249478534862 0.4296030359012069 -0.4388818302217858 -0.7891919732521624 -0.4296030359012069 0.4388818302217858 0.7891919732521624 0.3183998410294463 0.3229962732788499 -0.8912322641603577 -0.3183998410294463 -0.3229962732788499 0.8912322641603577 0.03038741195228124 0.8869362814384787 -0.4608911345024181 -0.03038741195228124 -0.8869362814384787 0.4608911345024181 -0.2670054108262962 0.9367771694262486 0.226178348723361 0.2670054108262962 -0.9367771694262486 -0.226178348723361 -0.4259850899852302 0.4459367148158626 0.7871957504264814 0.4259850899852302 -0.4459367148158626 -0.7871957504264814 -0.3010341479674957 -0.3735542393901423 0.8774027991698773 0.3010341479674957 0.3735542393901423 -0.8774027991698773 0.01009041759120744 -0.9160154494001691 0.4010160594453058 -0.01009041759120744 0.9160154494001691 -0.4010160594453058 0.2970481968236596 -0.9196343318873466 -0.256972886464557 -0.2970481968236596 0.9196343318873466 0.256972886464557 -0.2970484422515409 -0.9196320989134578 -0.2569805938275515 0.2970484422515409 0.9196320989134578 0.2569805938275515 -0.4295979640396049 -0.4388908348945468 -0.7891897264527675 0.4295979640396049 0.4388908348945468 0.7891897264527675 -0.3183968437424108 0.3229971010153391 -0.8912330349748924 0.3183968437424108 -0.3229971010153391 0.8912330349748924 -0.01947852840250339 0.8885028919470697 -0.4584574112531792 0.01947852840250339 -0.8885028919470697 0.4584574112531792 0.2702220342571353 0.9389866831721295 0.2128005193305185 -0.2702220342571353 -0.9389866831721295 -0.2128005193305185 0.4240429041274266 0.4414033343789021 0.7907911935892845 -0.4240429041274266 -0.4414033343789021 -0.7907911935892845 0.2983027650498462 -0.3667050530799812 0.881216695489381 -0.2983027650498462 0.3667050530799812 -0.881216695489381 -0.01622450498842495 -0.9165547656188361 0.3995799382592689 0.01622450498842495 0.9165547656188361 -0.3995799382592689 0.1472679733307151 -0.4807855014462627 -0.8643826962810682 -0.1472679733307151 0.4807855014462627 0.8643826962810682 0.1095684548527651 0.2918769691750159 -0.9501592437935783 -0.1095684548527651 -0.2918769691750159 0.9501592437935783 0.01814557456022227 0.8484106733494172 -0.5290274732664344 -0.01814557456022227 -0.8484106733494172 0.5290274732664344 -0.08166489083295546 0.9750941196064656 0.2062093681531785 0.08166489083295546 -0.9750941196064656 -0.2062093681531785 -0.1423373977113889 0.4764771508096741 0.8675883758840045 0.1423373977113889 -0.4764771508096741 -0.8675883758840045 -0.09161509243024273 -0.3783895678159515 0.9211015198158428 0.09161509243024273 0.3783895678159515 -0.9211015198158428 0.01429840890886133 -0.9315300536387764 0.3633831513298508 -0.01429840890886133 0.9315300536387764 -0.3633831513298508 0.1015501957394042 -0.9458455719011187 -0.3083240371108524 -0.1015501957394042 0.9458455719011187 0.3083240371108524 -0.009943928546088702 -0.9334025049453157 0.3586932980233676 0.009943928546088702 0.9334025049453157 -0.3586932980233676 -0.1015534747776958 -0.9458444330921899 -0.3083264506153984 0.1015534747776958 0.9458444330921899 0.3083264506153984 -0.147266657557691 -0.4807868808128261 -0.8643821532227857 0.147266657557691 0.4807868808128261 0.8643821532227857 -0.1095691102264438 0.291874995190177 -0.9501597745994721 0.1095691102264438 -0.291874995190177 0.9501597745994721 -0.02566642895233784 0.8527891332854933 -0.5216243174690112 0.02566642895233784 -0.8527891332854933 0.5216243174690112 0.06924176205058456 0.9778832794164339 0.1973572147804362 -0.06924176205058456 -0.9778832794164339 -0.1973572147804362 0.1449489124022483 0.4719675827323842 0.8696185449052678 -0.1449489124022483 -0.4719675827323842 -0.8696185449052678 0.09738220292944767 -0.3725574388083665 0.9228855082517864 -0.09738220292944767 0.3725574388083665 -0.9228855082517864</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"336\" source=\"#ID1233\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1231\">\r\n\t\t\t\t\t<float_array count=\"2004\" id=\"ID1234\">8.02231418666651 5.767267780802827 8.252088057911237 5.589311019664747 7.431385573142238 4.627258133742329 1.606075704142272 -6.664116171898536 2.403748798413335 -7.599058137546133 1.376311979132671 -6.842086032861725 7.225737949685353 4.830108071600177 8.023678022363086 5.764812889299482 7.43235358172829 4.625008508021419 7.363995635106627 6.533390653799618 7.297642829302479 6.835913372468743 8.544185864865252 7.048583972946593 -9.353644995208162 9.496317571299793 -9.456248184920225 9.776109948263965 -8.251432643860941 10.01863490878347 2.406236697679825 -7.597681970312806 2.199605115929212 -7.802763113320637 1.378608390915007 -6.840969840094465 -7.590335541155204 10.70602694802739 -7.571895639415195 11.00280147164252 -6.367080428351595 10.76031072335507 4.966023898041894 10.00672256238572 5.243664226169317 9.91913432926051 4.839027801587744 8.723565081277133 8.007737987502445 8.528718158347967 6.920853200511596 7.959932833629308 7.888919430143502 8.814733613483142 8.575346384537509 6.74049066075222 7.363867878052579 6.533863598668274 8.544070322159202 7.049028936628958 -10.6474920219949 8.111744241615781 -9.826387542111165 9.005408973160634 -9.693951711360347 8.738440923612204 -8.23270430587667 9.723159798408275 -9.353379702169475 9.497690138106181 -8.251133017061301 10.01993501712986 -2.076341590827678 -5.446531966539086 -2.747292704012422 -4.372146411011835 -2.469653090599756 -4.284561418814406 8.36450869076322 5.248636055142397 7.086689606986296 5.152756972189283 7.117970209082349 5.461294787847897 -6.469701209238219 10.47974138353815 -7.590377992084248 10.70524599506641 -6.367123258373397 10.75953831236817 4.571922371945806 8.84539763252314 4.96501638536636 10.00742870724498 4.838216032068572 8.724251868207164 6.920818075007783 7.960006058168995 6.770569825654725 8.229591706489064 7.888897956771724 8.814791376665028 6.369864240073535 10.21852039588463 6.209602950654397 10.49059365702833 7.338289473943722 10.97111630784981 7.036948750544099 10.6454234430234 6.953010084715945 10.9502757685996 8.170900501940615 11.11495073965689 -9.258150899043443 10.5071703098472 -9.418417710349523 10.77916637951357 -8.368582196735387 11.22619350350597 -10.64730331774392 8.113789988750014 -10.85135259844804 8.333778046742935 -9.826089290604813 9.007354055240066 -8.772087774188769 10.74251265572863 -8.856046438867478 11.04737288696119 -7.723218056485544 11.20050605659699 -2.077924500427836 -5.446783367694267 -2.34421369354931 -5.567932998300748 -2.748731068066101 -4.372307557346347 8.298218277099975 4.945222462917677 7.086734774222069 5.151862307460801 8.364553402206269 5.247747464753283 -7.000573116885825 10.99152509365734 -8.132295327164709 10.82834839739508 -8.13340981920302 11.14465832752162 -5.747197968884668 11.34771865661842 -5.614785283970845 11.61469325889407 -4.589597508688529 10.94102483346657 3.600188297201517 11.08574969555976 3.882049501761424 11.00737322589368 3.546444374582394 9.794570462850089 6.99670435438618 9.55955763258903 6.092887770699351 8.735608954423846 6.814469531908987 9.808638799461429 6.647959731086218 10.23822650913605 5.755524825279502 9.532889735268309 6.490809983562573 10.51210877794677 7.41997173218677 10.66527665403989 6.370133579721438 10.2182263388499 7.338564645077707 10.97081474691645 8.169805699052926 10.79857588292758 7.036968516098395 10.64538167454566 8.170920417540495 11.11490860880507 -8.740919240116529 10.83978666178993 -9.566338625551969 10.18739078053096 -8.898077287828695 11.11359071720087 -8.28684292727478 10.92038831944528 -9.257843112603737 10.50691625709059 -8.368270315967777 11.22593438525606 -10.70207184086822 7.859646832739864 -11.38157048740469 6.947354717371921 -10.92180453057965 8.063971084084493 -7.724344382085194 10.8842171823605 -8.772099555649737 10.74253351947274 -7.723229921896868 11.20052711259926 -3.655488084653787 -2.338871853116272 -4.263545100703079 -1.238570008658045 -3.981686478920031 -1.160193451602171 7.361321654529953 4.312137890551743 6.124180677253954 4.611336636689946 6.242986094475011 4.897355864011173 8.90362543194138 11.00610886361448 7.686842502579204 10.85445098157452 7.685727858736397 11.17078370771504 -7.084553032983659 10.68665734821619 -8.132293932533601 10.82834098437742 -7.000571717824942 10.99151764991668 -4.794009342179233 10.72139473624548 -5.747598954692891 11.3480105177875 -4.589976545268181 10.9413791756188 3.274668987659907 9.906720870699749 3.600953888569323 11.08539287268543 3.547076298694634 9.794219210659854 6.09288381772793 8.735612996503775 5.884514685839049 8.960870719261866 6.814458782371375 9.808647412005715 5.755658541536009 9.532800255145016 5.531478612772006 9.75360210527751 6.490951328416285 10.51201356954455 3.605290948896335 10.38141642767636 3.33455265833195 10.51716039845814 4.014028828894553 11.42943895203155 5.589979773123033 11.53341126438089 4.840404163330653 10.68682665382721 4.636374353864254 10.90679269216684 7.533368318126436 10.93688718677573 6.515314143438632 10.43149938548117 6.412693034774826 10.71133130046171 -5.623218934403118 4.408422528738681 -5.831607429130463 4.633650344396608 -5.054071071988054 5.342434346091068 -9.566143887607765 10.18733400003877 -9.790321147955863 10.40816513457345 -8.897877965835795 11.1135306292603 -7.080356331707753 4.053971967280779 -7.23060879446113 4.323584921403613 -6.295565336252739 4.812966406053784 -11.38154062340129 6.946934657969052 -11.65227155783105 7.082692552127814 -10.92180663684189 8.063564187879415 -8.181179189229288 4.911309043923017 -8.247506721794631 5.213846656682764 -7.20526833652511 5.391622673994847 -3.655653795968758 -2.338906340375719 -3.928071478759999 -2.451409328531153 -4.263698117344093 -1.238597480587634 7.36141480199807 4.312676224611774 7.211174320131137 4.043088922317519 6.124272005539162 4.611867448607266 8.819661913325041 10.7013222488483 7.686833079872884 10.85451661169397 8.903615990191723 11.00617464652251 -7.414680419786158 6.801473658954425 -8.488180523016553 6.670718688023931 -8.456904346591537 6.979250293358286 -6.263600740604844 10.54523868733316 -7.394884629014753 10.68671664530804 -7.31343401982421 10.99226281712368 -3.292621517860952 10.54167626392773 -4.242831137437234 11.31821873024799 -4.023119003917025 11.52254472997818 2.551809972545656 9.664317185975541 2.6236274458066 10.95547984480436 2.905003578692951 10.86778812080018 5.193624988674518 8.580056277800161 5.692767334986558 9.773034138616049 5.915652172224851 9.562128742488907 5.937110580194192 9.489415672846647 5.262547314077408 8.578135569452515 5.716187416262216 9.713476051139757 3.176137914244959 10.68649459689848 2.834873189666084 9.69182847940672 2.899293108193951 10.80930583801228 4.234461290235831 11.22486887962152 3.605942037354565 10.38119795908854 4.014763754588621 11.42918778233066 5.589504880842169 11.53356933265291 5.721950122961196 11.26655762799355 4.839977335964876 10.6869421673126 7.533143785096657 10.93687425265906 7.551591709610324 10.64012137186822 6.515105828923725 10.43145378207258 -4.162820841888336 5.683229236242456 -3.785455540905263 6.710550714605108 -3.562552804087732 6.499677047211517 -4.872389408174831 5.093837840595416 -5.623779512367979 4.40896397538488 -5.054609188486499 5.342962105285681 -8.887746741103829 10.83526687679533 -9.525692247198936 10.01031531247674 -9.107133392035042 11.0608579480509 -6.176474298564618 4.526406989595827 -7.080055569335768 4.053426788815008 -6.295280344376946 4.812437533749789 -11.31857231475265 7.207002239849808 -11.68082557747522 6.132629915955798 -11.5941746043776 7.332576212619316 -7.173977897034508 5.083030682715448 -8.181164024524115 4.911246986479281 -7.205253998235585 5.391562295675325 -5.064701339923504 1.894592448432216 -4.721524901407358 0.7249575728427193 -5.346087968207796 1.806900478081168 5.956868974092837 4.582459303872925 4.844680692420677 5.181156372358337 5.026908626978211 5.430239683354471 9.472188816692448 10.72397226626382 8.262063269598878 10.89895199625093 8.343486758075576 11.20449002484071 8.289909445598125 9.953360197058817 9.410573323369611 9.727789472525593 8.27146697812546 9.656606977076205 -7.481007247740252 6.498971555125469 -8.488182100825481 6.670754732288192 -7.414681949864845 6.801509311352131 -6.26357202431161 10.54538716088015 -6.423847746747091 10.27339065209758 -7.394855765646165 10.68686629489177 -3.292568142589447 10.54167249367159 -3.563299937621667 10.40591384363897 -4.242772177916078 11.31822179306155 2.551014626765364 9.664570003049022 2.279565712514537 9.786101771501294 2.622698378662749 10.9557400928255 5.193794640470326 8.579934506661576 4.950006967750503 8.762408130938974 5.692974766025896 9.772896559926084 5.262729318767912 8.578022902558102 4.991162906919249 8.733644753001784 5.716394133052781 9.71335350989146 3.628339580450876 9.410096179628415 3.343259316224513 9.476119751452627 3.791720391302833 10.51744087914368 -2.543497724329717 9.820157007470904 -2.848652052517384 9.677531866782541 -3.132722358266544 10.69001710564758 -3.873097941905428 10.89286343072251 -3.320076696099827 9.991416069596967 -3.592497529002921 9.878920394021563 -5.238846009887677 9.80758299599721 -4.634251248975909 8.929086183173229 -4.900537747090571 8.8078942451424 -8.214277558189956 5.481786058120083 -7.321064523486167 4.882925935033296 -7.527661981317388 4.677793400510733 4.377614265992437 0.7281219543282957 4.073595089472888 0.8692070938502872 4.394109549297308 1.830549502300379 -3.537676791819183 5.376926876400024 -3.811855606249014 5.583853884632541 -3.17471002551291 6.409423422083563 3.97394736107426 -2.367570675376053 3.701523387203382 -2.255077662628404 3.972653577627958 -1.275216590961533 -10.36711544436186 9.788610904639777 -10.63722024298047 9.923741161134938 -9.99021332211368 10.85480794770453 2.405243483742395 -5.482637948843198 2.138955835681639 -5.361451513027145 2.46589077455381 -4.395385817039694 -11.68072628394697 6.132280067793281 -11.98353862516836 6.177170132947989 -11.5941092281414 7.332228813223198 -2.108601609355256 -7.748206068148464 -2.315165169803018 -7.543038888934133 -1.651511075343576 -6.766188339209613 -4.721607784662597 0.7249281405996211 -4.993049772383447 0.6033964299868833 -5.346166221861001 1.806873718311953 5.957238957132517 4.583363214343673 5.748849837769354 4.358110775196654 4.845041714752265 5.18204363639175 9.472304078310044 10.72461316264121 9.31201810079169 10.45253915697316 8.262178858055076 10.89959515296517 9.410594163350751 9.728071431052994 9.307990612543218 9.448239951301609 8.271487518594194 9.656893728748518 -8.212551034223413 5.484377895292075 -7.982782368570982 5.662358312422271 -7.319611670762221 4.885109787038521 -6.901073416418869 8.239933947756155 -7.954920374718853 8.443296667457076 -7.836119496150149 8.729328991386085 -5.586655222954788 9.822978924250215 -6.636258537640909 10.25454365534416 -6.479091496931305 10.52834820115506 -2.602420738045671 9.709493464092688 -3.267466644683721 10.73896569644136 -2.991862575009607 10.86453843503981 1.578587327183264 8.616623560601905 1.717743461392392 9.90224185360913 1.995689528240346 9.796409591444695 4.352990694981493 7.476449471708879 4.67407626424998 8.728944349425365 4.921550948121843 8.551503278166209 5.36216474635061 8.436915836161079 4.950843260216593 7.383133306463973 5.093068539573298 8.596771107822468 3.539780496745524 9.457279058321062 3.431838494209256 8.415414457869801 3.254074064554408 9.520538078961783 -1.911819010740019 9.727529858260962 -1.560214478487912 8.779557572046723 -2.224358608507 9.601911011762139 -2.597596011191904 10.8406810002062 -2.312286468233244 9.868305447743705 -2.878987540687646 10.75300435365292 -3.873742899600679 10.89269934021582 -3.591884319513478 10.9711322781505 -3.320647345935045 9.991297569800498 -5.239716594033536 9.807178809229182 -4.962070710154135 9.894783771798668 -4.635008456639771 8.928760034592838 5.337713155207496 3.462758609268935 5.393465189571801 4.573231349241489 5.70505027354063 4.449750938917815 5.129220193628463 0.9198204399797194 5.102133984892365 2.022038626272866 5.383840597970641 1.935373272153651 -2.227268869578842 7.054369051497821 -2.034900411214426 8.149204375606008 -1.755890989466358 7.948838331591519 4.252846068985002 -1.354174780213079 3.972139728465299 -2.368093965309794 3.970989358694878 -1.275739720450518 -10.19313023741471 10.03250173789567 -10.53232842096415 9.035484642111983 -10.46177202297931 10.17051760475854 2.742152961264321 -4.483278004021566 2.403715482025087 -5.482913926852961 2.46450769472513 -4.39566988852989 -11.64163930689924 6.726216799847979 -11.68206775371864 5.595744450929492 -11.94487170416447 6.7681756510519 -1.415135332853638 -6.94608800957697 -2.101288255754695 -7.750494143941382 -1.644927001856219 -6.768137293212735 -6.040314688080228 4.585570830692188 -5.634910717157917 3.438957385634206 -6.318254047018166 4.479738783865751 3.772799252705641 6.794011187827457 4.515734982915213 5.783518579648719 3.549899250107047 6.583107714048141 9.845815772556408 10.33921330332771 8.72919618033063 10.82374885991195 8.88637049790432 11.09763221655218 9.851713168959194 8.925334765489707 10.80529367403964 8.298672400676939 9.719293013185254 8.658317822126612 -6.901067860907201 8.240207827987678 -7.051326483111327 7.970596969093 -7.95491621140005 8.443563333066301 -5.586682549038167 9.82295175808374 -5.81087235396957 9.60212059242105 -6.636286790182588 10.25451423594288 -2.602139271092833 9.709540968608463 -2.904935435372564 9.664650374919933 -3.267147498582656 10.73903754096013 1.57906352729198 8.616547117844673 1.312847838604522 8.755549052967469 1.718269194621227 9.902160048390355 4.352689875045941 7.476531527549001 4.088748369108377 7.622855452442973 4.673772905118243 8.729027056202934 4.950684882683941 7.383317938390422 4.650677824799282 7.464055681726327 5.092860829896539 8.596961519928501 3.485437118801275 8.39470371481638 3.18930951732058 8.376616343648747 3.314412612124502 9.500890420785105 -1.598690305595134 8.762447828867947 -1.899933665045985 8.601317540266477 -2.264923659557595 9.583109588253944 -4.014504204957136 7.810915601141399 -4.31044475881743 7.646321463655264 -4.782135122017676 8.540628683683423 -4.944918115545426 8.916342100839811 -5.221899578824482 8.710983236931227 -5.814321154642443 9.53314649738221 -6.010383345488194 9.011817357987011 -6.218766714484236 8.786587269027372 -6.970145529470814 9.471478083619513 12.1442212012655 6.488431451935157 11.84971286259486 6.50445092814584 11.72931439275864 7.550679691730608 5.436096370687942 3.474098083261125 5.135131007202009 3.637393151327177 5.488416272723167 4.584737819363221 12.01932916880682 7.491045479827514 11.7289601973689 7.428774637327286 11.31174713342957 8.389041456769789 -2.39134695514438 7.08531697164199 -2.688828499347872 7.248095610817745 -2.198341011465316 8.180040094807449 11.6103318338582 7.058012136265086 11.33960582649887 6.922264435752206 10.7111442100928 7.765984863512145 -10.45780460366582 9.087031108132035 -10.74805210172731 9.151539204082358 -10.38147545947754 10.22169048139711 10.80522796946904 8.299426142429587 10.60120330713986 8.07946236572252 9.719217761431199 8.659042733514418 -11.68216800417867 5.595901151841711 -11.98844735752957 5.552942729837733 -11.9449518098545 6.768336867292641 -5.634496435233625 3.439184867669541 -5.900713396455597 3.30018383903054 -6.317853489068273 4.47995725505486 4.515824471600816 5.783647666803651 4.272044803960049 5.601173690129581 3.549987279452767 6.58323503844122 9.845588602994498 10.33886278974944 9.621409732253103 10.11806138536246 8.728966521278007 10.82339260922394 -6.010423861258278 9.011941989207395 -6.970193554858753 9.471587034582777 -6.787968605968723 9.720708966139664 -5.042628918682938 8.816203776538053 -5.938130179876525 9.503409018794248 -5.717198770774001 9.727500037880455 -2.4771281657538 8.609333718139764 -2.823820427044403 9.782772886274298 -2.520604148431285 9.824732043656677 0.4940333704000091 6.884722314694114 0.7434816770441161 8.153401315576275 1.01370411297787 8.02235870422696 3.579048963009202 5.527249581922334 3.767987851475939 6.806380999142068 4.029731018408183 6.656160081433367 4.987430164885366 7.149493275445536 4.871659888438184 6.024804147658597 4.688389354051153 7.233739411470873 3.692162256277692 7.359146195942491 3.197147972982466 8.365396172811582 3.493291293792061 8.383224321743267 -0.9252138314459013 7.941778656958044 -0.5010888893011865 7.024536617868603 -1.230796721377351 7.78903825988127 -3.583457915889256 6.865153699605307 -3.221365219127212 5.881871791901279 -3.87761673597965 6.697396046793376 -4.507248736247584 8.731902211037241 -4.021559745944325 7.803848348223497 -4.789252495370334 8.533496379906529 -5.655596031237238 9.703362544822191 -5.005465970002792 8.882122257586087 -5.879015884294735 9.493039482114664 12.14478024890936 6.736805458154219 11.94023890165135 5.624830788396087 11.85024427758389 6.752308579129163 12.14283763709443 6.442043886399361 11.73125571185489 7.505584812508928 12.02185570015984 7.566768504754241 6.268038727420731 5.474776872629459 6.437817250366501 6.556154450177642 6.743247791385032 6.401371977377769 11.94837906263659 6.158904965374388 11.31052831244434 7.107701851895589 11.58612788215819 7.233260150820028 -1.161015913433849 8.890149066805394 -1.073395569348677 9.991665786302482 -0.7779209136219883 9.825272029397965 11.61033482922322 7.05916121664057 10.71110780030712 7.767083893015066 10.93080057539455 7.97140033992074 -10.40959229367743 9.199877177991784 -10.44082428807349 8.154377363048935 -10.6996207909959 9.265362865873017 -11.4592516894927 5.204423171008229 -12.03267423410591 6.2623036348526 -11.72610224262008 6.303121306840652 -6.991555867399386 6.618692905334878 -6.486489299443168 5.513057706673341 -7.261779009522398 6.487650126571119 2.594874711865614 8.532891592041368 3.179902013339848 7.426720616761154 2.34740764779583 8.355450529378375 10.02678762383469 9.888296594928445 9.080636181045295 10.64395596575919 9.301557082651641 10.86801707684183 -4.908080489198695 8.827277128001134 -5.171691680823249 8.688617412622387 -5.785647758998728 9.537241381157172 -2.477356966879039 8.609267980107019 -2.783634433798757 8.65222484643942 -2.824082129607023 9.782697427019917 0.4942974535608793 6.884675877025379 0.2386820867089246 7.047718489624774 0.7437538596373056 8.153353285366208 3.579019696709793 5.527247574791911 3.304264902654809 5.644802179261861 3.767961516094372 6.806378559086036 4.871671759983433 6.024758632758172 4.563916490311018 6.02454101335168 4.688411113318542 7.233695395474622 3.131865063576585 7.495146351122008 2.845350157739452 7.371832530066978 2.578489150401894 8.470519743897006 -0.2995594809006691 7.190644557877686 -0.5550029855080121 7.02733308637674 -1.026197123972311 7.958064922804658 -3.364466087299869 5.756434020851 -3.63924298866122 5.638867507453358 -4.01388909856642 6.577406380998356 -4.595208407807088 6.220843177572365 -4.902936610581055 6.221062566755599 -4.996186739518726 7.264738208188124 -4.5801979245055 7.680872387890022 -4.872535989311253 7.618357848562964 -5.208623099405675 8.610438098348078 9.930435795209954 8.723360458360926 9.622695485060167 8.723578076682632 9.506893312035652 9.848262337106252 11.68679383842413 4.820806528320301 11.4010933228296 4.945995181335735 11.6709817879123 5.951759745750621 10.04349825550007 9.365039409526721 9.743489424522231 9.284300831811486 9.332208169824803 10.33809864246232 6.754756775286062 5.428533295660523 6.499138699141653 5.591569262435212 6.91902076309531 6.510762270686894 10.0264207380193 9.888097497687822 9.754836146645381 9.732476048171769 9.080260517751327 10.6437458782189 -1.695201464579465 8.909158721601118 -1.970122869278565 9.026384550142128 -1.618544575515055 10.01149266800221 -9.591302846728635 8.822595493203158 -9.899031319075601 8.822373286436831 -9.78321586192828 9.947065951688893 -11.45924781968514 5.204421096615239 -11.74577848271567 5.081109433850616 -12.0326708752261 6.262301283511819 -6.486248434573849 5.513244118226436 -6.741869014961592 5.350199016100515 -7.261540555938209 6.487834619938462 3.179105813721875 7.425997878045219 2.915163522363724 7.279674511815227 2.346612301949778 8.3547285559653 -4.571867659767827 7.685001879234275 -5.19800283550379 8.616111621538478 -4.935183100948795 8.756265694426407 -2.540742087517667 8.566909293518494 -2.827630048306525 7.385714519013615 -2.847312146644797 8.607725686728166 -0.8141520036824412 4.787247278753537 -0.4098877686924643 6.015532093705279 -0.1545507334713725 5.852053936942369 2.825907391035651 2.91447464078058 2.925963511056933 4.203776059192933 3.195347959271043 4.074387879869384 5.072049316640039 4.636612424534547 4.563860349506689 5.750794012321112 4.871615609433643 5.751025002883836 3.819561550989884 6.356088346280721 3.024697696615445 7.153515715233586 3.312968409168299 7.272667240672091 0.5078875531633522 5.922246885641981 1.040830647940628 5.061918861623786 0.2525454068644117 5.758776982927945 -2.899864803665365 4.123037899357319 -2.582070981663241 3.125168581569071 -3.169270650466771 3.993636507156769 -4.595210131123386 5.767368898608199 -4.795624677444554 4.652969215294837 -4.902938321178672 5.767605456015868 -4.551751286835951 6.370503943752767 -4.892659326416026 7.43553078191047 -4.600764251184403 7.500082132145554 9.931094966858455 9.09603213633477 9.715593417550867 7.897930479543868 9.62335466645721 9.096263129355123 9.930735827967505 8.723240740338639 9.507213151533417 9.848150076420589 9.806255898006034 9.932396455442374 11.8210066322793 5.641957047386217 11.27328617849653 4.65094501386657 11.53273560497294 5.761107365348592 10.04286228329696 9.365040585658122 9.331545345119851 10.3380801892938 9.600660148426115 10.49793464954639 7.535739623001351 6.593692710145172 7.831890891357638 7.647449006016194 8.087231527084098 7.48397886482603 -0.5241565780873642 10.2562204738642 -0.4864394008526751 11.34992170397917 -0.217035001175078 11.22051945101113 -9.406536758183124 8.082332868907633 -9.899645775372855 9.112810577833072 -9.591917313190002 9.113046440972934 -11.03306145856628 4.858172341658545 -11.86906432189366 5.730018181815798 -11.58077780285274 5.849167122095434 -7.929185938596586 7.741276002141859 -7.288134711684656 6.706399437704047 -8.184528376761124 7.577795649447086 1.501843717442459 10.20233969252613 1.965537662966534 9.040762659994472 1.240099738841787 10.05211935322896 -2.827699190618862 7.385692878294297 -3.114245837009395 7.509005844610631 -2.847390549560736 8.607703896819539 -0.8142387846834531 4.787281714610788 -1.051017422478481 4.980689694303933 -0.4099715308854265 6.015565535980942 2.825863560250873 2.914464272130583 2.545775655456215 3.010294430635846 2.925926509520307 4.203765160541554 5.072050792302683 4.636426793683894 4.779368647532038 4.552517088168444 4.563890708589148 5.750621555024526 3.819606376355887 6.356099602651848 3.57245010124174 6.162515789484883 3.024745146625805 7.153529587802932 1.040750145448171 5.061814419743752 0.8039557843155296 4.868386050648546 0.2524662820454121 5.758674099467705 -2.582061023304272 3.125174822309014 -2.862143473626441 3.02934388643336 -3.16926160391908 3.993642131390482 -4.795648217881778 4.653056670178607 -5.088339457465029 4.736985317881022 -4.902938859512489 5.767695125229697 -3.565535127923351 6.176115265244123 -3.812677839446398 6.369703167130202 -3.264977022005007 7.360700876068053 0.8403367238430468 10.23718379894077 0.5602462057335531 10.14135523217399 0.1908371556963209 11.30127999331571 9.715279811570234 7.898164399687699 9.422605508712325 7.982071061332078 9.623011104925984 9.096494743366428 1.965753936980625 9.040883578076532 1.690994369615404 8.923329790133387 1.240320107445503 10.05224320831427 11.27329027881219 4.650949558498282 11.02614506513587 4.844534047078025 11.53273910555405 5.761112050140519 7.535684312874684 6.593713095228133 7.29888869613132 6.787141360236949 7.831834683618196 7.647469643366902 -0.5243639138978562 10.25621995077311 -0.8044472733028646 10.35205112217272 -0.4866562948651038 11.34992151046864 -9.406679726772429 8.082195684650662 -9.699361351824194 7.998267172378847 -9.899801537804553 9.112667271309139 -11.03307087735487 4.858169344732327 -11.28020427240938 4.664581839190625 -11.86907291533646 5.730015976303339 -7.288344436481048 6.706182540603755 -7.525136251228246 6.512774038618834 -8.184740686029647 7.577576093726885 -2.9766841745925 7.241548697681889 -3.565543648095952 6.176113404817853 -3.264986470492337 7.360699251177363 -2.447883322974987 2.751568552554161 -1.842477514017635 3.89427599955851 -1.614034516523058 3.69108995963267 2.003331820157259 -0.1121430521644828 2.058836564324649 1.179529586358521 2.331326469065933 1.063849400045171 5.590202303166725 3.422160988082945 4.776235014799291 4.339683957172108 5.06699202493466 4.430039021249202 4.792858524577 5.351708305204213 3.811958992720328 5.9163916658123 4.062104287424121 6.106097355200138 1.961101285046039 3.826234095799287 2.634831518947544 3.067113124415407 1.732641496307822 3.623029203228422 -2.020157793277054 1.09577077218773 -1.738045133809642 0.08407938248913949 -2.292642079395596 0.9800899134956276 -4.815052538517008 4.360912519372523 -5.338295125527744 3.35305854322367 -5.105817903968173 4.45128774765985 -3.757921129518451 5.992529127627781 -4.607363580042399 5.115621178425016 -4.00805316343177 6.182238803780592 -0.6027579114285769 11.93512829791986 -0.2653383113282294 10.72511841245179 -0.8752508527681888 11.81945025564948 0.4600121899457396 11.43059484807465 0.8401312322340304 10.23711634359213 0.1906229618076444 11.30120722624912 9.961904685985054 7.921317673188637 9.399438483820717 6.837739257140222 9.671155628119442 8.011670098567954 11.38672699552658 5.073226793175415 10.59662327021988 4.257574427615073 11.13659264145704 5.26293318678408 8.209859950819201 6.723645760614549 8.678594971015968 7.712374678279593 8.907055491034399 7.509169243790011 0.5636269487086308 10.7579458860558 0.5637591081185163 11.85131753997724 0.8362441670383727 11.73563610545614 -9.148746431801881 7.100180552171004 -9.923439640128624 7.94197383515283 -9.632683886221651 8.032348723175383 -10.40054945299948 4.523433465522471 -11.44077742670279 5.149367724775502 -11.19065494879698 5.339077459104777 -8.796927104377645 7.780796373855483 -7.986534988438879 6.86769660754922 -9.025385134024679 7.577611382133364 -2.447892436598347 2.751575933223066 -2.652886586709821 2.981172518037141 -1.842485880906245 3.894282984607421 2.003168542977567 -0.1121808863049317 1.721200557589594 -0.03050824392382967 2.058702137872348 1.179490512144429 5.590195069697714 3.422055694461649 5.338722500134333 3.256005850783021 4.776238298562009 4.339587993653761 4.792795272598981 5.351648803674095 4.602007058565834 5.100676746162371 3.811893721850205 5.91632865729288 2.634784447227349 3.067013910342503 2.42977377423855 2.837408746390241 1.732596091264525 3.622932693977843 -1.737830524364876 0.08416656496258945 -2.019797238494305 0.002493112357009886 -2.292451735554148 0.9801620760153762 -5.338230787118782 3.352811588678597 -5.589690939112673 3.518873465351141 -5.105795936552603 4.451049761509455 -4.607296183997103 5.115620237273077 -4.798095314695769 5.366593423150325 -4.007980502882582 6.182234904595543 -7.986555889325445 6.867667979007165 -8.191559998099267 6.638073613249739 -9.025406708161478 7.577581768393026 -0.2658513924094679 10.72501539099795 -0.5478243079042257 10.64334171938851 -0.8757989830207733 11.81932769923068 9.399457966750671 6.837717751034001 9.147982137033422 7.003769477635871 9.671177663608312 8.011648001645453 10.59660707242216 4.257565553010063 10.40580607527824 4.508535786249877 11.13657856985533 5.262923170214947 8.209868148312985 6.723639797819137 8.004859697248556 6.953245674626219 8.678603577310881 7.712368521680295 0.5639647615244471 10.75793337704772 0.2819922366942799 10.83960535262652 0.5641211542755882 11.85130502777144 -9.148596913292062 7.10036550451596 -9.400067489701645 6.934305838027768 -9.923274874606658 7.942172818902312 -10.40053026270629 4.523460414640201 -10.59133362882067 4.272487777171353 -11.44075930953975 5.149392890475632 -3.424488619818151 2.051510872033782 -4.451447721073044 1.320914993730629 -3.607048434730841 2.29931948229028 1.25371906925343 -2.068980133225255 0.9100342911362658 -3.244662667896889 0.9829208397823459 -1.955645742096218 6.427844467605201 2.657369518137107 5.360460969395073 3.26317312659965 5.602447748904911 3.442765449294591 5.963050307158162 4.598401472884455 4.862897871431918 4.888020304292075 5.05696668467419 5.136464285890265 4.566975869361551 1.677618748944787 3.554610122510936 2.020117489460222 3.737188382645553 2.26793412788283 -0.6344515222543741 -3.052113042568756 -1.200876406250898 -2.153962787728282 -0.930079256085121 -2.040628396656744 -5.404912574038195 3.292132349355072 -6.230314461078931 2.506727066998844 -5.646887013182357 3.471735037880793 -4.807767079003931 4.950234886829042 -5.860966101770035 4.324810658490876 -5.001847324719297 5.198679461186795 -8.424882873013623 5.988174923117744 -9.605562586612063 6.45041964919662 -9.422991708989319 6.698226291653528 -2.128911530962449 11.39370619047285 -1.858108794091689 11.50704281919493 -1.504539573232881 10.29731278098825 9.827835858960567 6.402761707059793 8.940439791553009 5.558433182247473 9.585846775178787 6.582357230862296 10.67860142778535 4.504886653852445 9.698961064470598 3.923137010221114 10.48451955824054 4.753328410402241 9.475381065925804 6.418838346460516 8.616699388997306 5.807979933582672 9.292803232787765 6.666654121823592 1.804515688494758 11.42193482798765 2.075320240595833 11.30860473085816 1.789653651069088 10.33114660586087 -8.777986349147227 5.884762204148979 -9.783395815642388 6.431566205911736 -9.541410130717059 6.611166294790215 -9.560048236954533 4.233786674396139 -10.73377188997996 4.567113960877165 -10.53968755340356 4.815558038235333 -4.451445388161562 1.32091150302849 -4.605144881901487 1.589257774717442 -3.607046360323376 2.299316214686616 0.911036215103248 -3.244569414619009 0.6302815542887075 -3.165285501969137 0.983746179428347 -1.95554251611689 6.427837637908099 2.657239812949093 6.247832911031965 2.418709446125305 5.360460556278488 3.263054726837308 5.963041769819713 4.598377594103866 5.842530324928217 4.30624879890488 4.862889228392628 4.887996023993652 4.566949491164673 1.677515046485934 4.413267843553816 1.409146381545383 3.554584669588645 2.020016521937351 -0.6343308283330909 -3.052077616634356 -0.9150620653111302 -3.131377159015987 -1.200769992778023 -2.153936368019525 -6.230355841487682 2.506952398274932 -6.410349313279072 2.745551901517965 -5.646903438454379 3.471945281263957 -5.860956446689808 4.324806852545208 -5.981476839089077 4.616905572027501 -5.0018371782836 5.198675172178971 -9.560036157906882 4.233835501329801 -9.680555144833743 3.941738909819654 -10.73376020318313 4.567161406600481 -8.424843361141196 5.988249141808261 -8.578539572529392 5.719905180363528 -9.605521278105222 6.450498456879819 -2.128002541521889 11.39390767417695 -1.503710088307944 10.29746899243481 -1.784459266712324 10.21817791926077 8.940289758199278 5.558664658271775 8.760286641389778 5.797195116769234 9.585670957141998 6.582604959215122 9.698953334175988 3.923134326470514 9.578437925476589 4.215263271704036 10.48451321445017 4.75332441468671 8.616695792321206 5.807984438043635 8.463004396435052 6.076345229884326 9.292799280948527 6.666658905933183 1.508981687625615 10.41044201964916 1.804587711918147 11.42192402718496 1.789719178778943 10.33113589358192 -8.778070540410155 5.884638780422247 -8.958068784782792 5.646039814873298 -9.78348840858556 6.431427333718194 -5.470301552639625 1.49112445145663 -6.665204895598771 1.080079427803008 -5.581515389563202 1.779680751651247 -0.7296916084496221 -4.847825225879011 -1.239323924915554 -5.965180848058259 -0.983402713437965 -4.703812054329481 6.429372105238576 3.070798693737436 7.484425162189432 2.632960455440022 6.272223592574061 2.816627919331381 7.309598879931788 4.100114165975394 6.172386671636989 4.114089657735745 6.296584270959485 4.404670451417599 6.673165340113267 1.46069710806245 5.596511227521427 1.504273208093048 5.707708117320678 1.792847359453377 1.671539516001294 -5.76057523486305 0.9391731330657233 -4.970479558128506 1.189951666304455 -4.821454150550515 -7.373905047151883 2.420445369343553 -6.47597200022688 3.112499440921925 -6.318837669790733 2.858262985955836 -6.033213721615906 4.212408827890807 -7.217274505620218 3.886515904012549 -6.15656019014606 4.503325440700059 -8.531387785648066 4.071560705961415 -9.756070774288414 4.083774492867834 -9.632726737808362 4.374689417968849 -8.30493748442003 4.330441993887243 -9.577449855087568 4.441364589949741 -9.466235265510377 4.729916703274379 -4.223502876719913 9.587379479106971 -3.969797935985473 9.731396764551324 -3.445407544471821 8.581711696651405 9.236966853624979 4.947401304070755 9.394113356902082 4.693230341527976 8.259831785298545 4.22248881572931 9.704809832242122 4.035789645949894 8.603472821994846 3.73267274812119 9.581467689801546 4.326736376942702 9.490922071357993 4.298600231082052 8.499707389419065 3.92265445724289 9.384156338551122 4.58884088651304 3.896539175924027 9.654215450822882 4.150228742439791 9.510185577491333 3.726479854733768 8.581304777485496 -9.423216318515408 4.472155017098237 -9.27255740290623 4.730284297664632 -8.288675878665934 4.342030565834466 -6.66522566276802 1.08014405010757 -6.742837437992399 1.380267567573475 -5.581533433821307 1.779741156120973 -1.238853797483174 -5.965278003164967 -1.507311542582164 -5.853615238692918 -0.9830102772306847 -4.703893449025443 7.484424883292007 2.633010383882151 7.406514263464952 2.345939879885023 6.272222931238717 2.816675323673188 7.313853897789303 4.322100817522392 7.275717967010026 4.025212024150625 6.17664659304196 4.336469780392419 6.661012628610327 1.088548563306246 6.56636052877616 0.7409570961453518 5.584453830074927 1.134419119775722 2.351564991295644 -5.401406404498824 2.074093047184209 -5.557442487260533 1.55075082268886 -4.68077587183498 -7.395552620997582 3.131023308700499 -7.452434806027009 3.415760819294903 -6.457330494885647 3.767389427237792 -7.217251753191022 3.88649397765239 -7.257883350292583 4.200173622039879 -6.156536674490829 4.50330220183436 -8.318962544481733 4.428387293992502 -8.385053749840118 4.14527160788125 -9.454913042633246 4.545565996067015 -8.531387766736476 4.071564738885102 -8.572015826007476 3.75788512580678 -9.756070755442112 4.083778519245252 -8.304936126238683 4.330442324466572 -8.382542219297406 4.030317796828685 -9.57744845601994 4.441365389578568 -4.223053139952752 9.587572180154115 -3.445006685817724 8.581866582107013 -3.713464068600874 8.470204180724483 9.236995531655577 4.947344928234697 8.259855461770449 4.22243918171893 8.181948701807347 4.50951019832294 8.521518244742271 3.901937992931166 8.477299227918195 4.198338886371126 9.490271124852209 4.51095639480711 8.423503269721058 4.130100135004379 8.325702677385262 4.476698785747071 9.285303626375194 4.82533710714792 4.484670822436756 8.19170513651676 5.071017670644485 9.072023935372219 4.759512355616062 8.031340542406799 -7.30736255645752 2.298931442533629 -8.572230339050293 2.298931442533629 -7.325151562690735 2.608416926275309 -7.325151562690734 -0.7002259076981166 -8.554449081420897 -0.7002259076981166 -7.307362556457519 -0.4100161815854154 7.36809253692627 3.474163313404961 8.51151168346405 3.474163313404961 7.325151562690735 3.179824033527633 8.466757535934448 4.213194162628142 7.36809253692627 3.916873597429247 7.410417795181274 4.213194162628142 8.450794816017149 2.424425283844014 7.410417795181274 2.064646501630932 7.428804636001586 2.424425283844014 8.466757535934448 -0.1701258822565584 7.428804636001587 -0.4879306383211063 7.410417795181274 -0.1701258822565584 -7.36809253692627 3.482318071436428 -8.51151168346405 3.482318071436428 -7.410417795181274 3.769580330403504 -7.325151562690735 3.822338718081032 -8.554449081420898 3.822338718081032 -7.36809253692627 4.135710571823177 -8.466757535934448 3.769580330403504 -8.51151168346405 4.135710571823177 -7.325151562690735 2.608416926275308 -8.572230339050293 2.298931442533628 -8.554449081420898 2.608416926275308 -8.554449081420898 -0.7002259076981161 -8.572230339050293 -0.4100161815854152 -7.30736255645752 -0.4100161815854152 8.51151168346405 3.474163313404961 8.554449081420898 3.179824033527634 7.325151562690735 3.179824033527634 8.51151168346405 3.916873597429247 8.466757535934448 2.064646501630932 7.410417795181274 2.064646501630932 8.450794816017151 2.424425283844015 8.466757535934448 -0.1701258822565581 8.450794816017151 -0.4879306383211062 7.428804636001587 -0.4879306383211062</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1002\" source=\"#ID1234\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1230\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1228\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1229\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"336\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1230\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1231\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 10 9 2 10 1 11 12 12 6 13 0 14 6 15 14 16 1 17 16 18 0 19 8 20 8 21 2 22 18 23 10 24 20 25 2 26 22 27 10 28 1 29 24 30 6 31 12 32 16 33 12 34 0 35 26 36 14 37 6 38 14 39 22 40 1 41 28 42 16 43 8 44 30 45 8 46 18 47 20 48 18 49 2 50 32 51 20 52 10 53 34 54 10 55 22 56 36 57 24 58 12 59 24 60 26 61 6 62 38 63 12 64 16 65 26 66 40 67 14 68 42 69 22 70 14 71 28 72 44 73 16 74 28 75 8 76 30 77 30 78 18 79 46 80 20 81 48 82 18 83 32 84 50 85 20 86 34 87 32 88 10 89 52 90 34 91 22 92 36 93 54 94 24 95 38 96 36 97 12 98 24 99 56 100 26 101 44 102 38 103 16 104 58 105 40 106 26 107 40 108 42 109 14 110 42 111 52 112 22 113 60 114 44 115 28 116 62 117 28 118 30 119 64 120 30 121 46 122 48 123 46 124 18 125 50 126 48 127 20 128 66 129 50 130 32 131 34 132 68 133 32 134 52 135 70 136 34 137 72 138 54 139 36 140 54 141 56 142 24 143 74 144 36 145 38 146 56 147 58 148 26 149 76 150 38 151 44 152 58 153 78 154 40 155 40 156 80 157 42 158 82 159 52 160 42 161 60 162 84 163 44 164 62 165 60 166 28 167 64 168 62 169 30 170 86 171 64 172 46 173 88 174 46 175 48 176 50 177 90 178 48 179 66 180 92 181 50 182 68 183 66 184 32 185 34 186 70 187 68 188 52 189 94 190 70 191 96 192 54 193 72 194 74 195 72 196 36 197 54 198 98 199 56 200 76 201 74 202 38 203 56 204 100 205 58 206 84 207 76 208 44 209 58 210 102 211 78 212 78 213 80 214 40 215 80 216 82 217 42 218 52 219 82 220 94 221 104 222 84 223 60 224 62 225 106 226 60 227 64 228 108 229 62 230 86 231 110 232 64 233 88 234 86 235 46 236 90 237 88 238 48 239 92 240 90 241 50 242 112 243 92 244 66 245 68 246 114 247 66 248 70 249 116 250 68 251 94 252 104 253 70 254 118 255 96 256 72 257 96 258 98 259 54 260 120 261 72 262 74 263 98 264 100 265 56 266 122 267 74 268 76 269 100 270 102 271 58 272 124 273 76 274 84 275 102 276 126 277 78 278 78 279 128 280 80 281 80 282 130 283 82 284 82 285 124 286 94 287 94 288 84 289 104 290 106 291 104 292 60 293 108 294 106 295 62 296 110 297 108 298 64 299 132 300 110 301 86 302 134 303 86 304 88 305 90 306 136 307 88 308 92 309 138 310 90 311 112 312 140 313 92 314 114 315 112 316 66 317 68 318 116 319 114 320 70 321 104 322 116 323 142 324 96 325 118 326 118 327 72 328 120 329 144 330 98 331 96 332 122 333 120 334 74 335 98 336 146 337 100 338 124 339 122 340 76 341 100 342 148 343 102 344 94 345 124 346 84 347 102 348 150 349 126 350 78 351 126 352 128 353 128 354 130 355 80 356 82 357 130 358 124 359 106 360 116 361 104 362 108 363 152 364 106 365 110 366 154 367 108 368 132 369 156 370 110 371 134 372 132 373 86 374 136 375 134 376 88 377 138 378 136 379 90 380 140 381 138 382 92 383 158 384 140 385 112 386 160 387 112 388 114 389 152 390 114 391 116 392 162 393 142 394 118 395 142 396 144 397 96 398 164 399 118 400 120 401 144 402 146 403 98 404 166 405 120 406 122 407 146 408 148 409 100 410 130 411 122 412 124 413 148 414 150 415 102 416 150 417 168 418 126 419 126 420 170 421 128 422 128 423 166 424 130 425 152 426 116 427 106 428 154 429 152 430 108 431 156 432 154 433 110 434 172 435 156 436 132 437 174 438 132 439 134 440 136 441 176 442 134 443 178 444 136 445 138 446 140 447 180 448 138 449 158 450 182 451 140 452 160 453 158 454 112 455 152 456 160 457 114 458 162 459 184 460 142 461 162 462 118 463 164 464 186 465 144 466 142 467 164 468 120 469 166 470 188 471 146 472 144 473 166 474 122 475 130 476 146 477 190 478 148 479 192 480 150 481 148 482 150 483 194 484 168 485 126 486 168 487 170 488 170 489 166 490 128 491 154 492 160 493 152 494 156 495 196 496 154 497 172 498 198 499 156 500 174 501 172 502 132 503 176 504 174 505 134 506 178 507 176 508 136 509 180 510 178 511 138 512 182 513 180 514 140 515 200 516 182 517 158 518 196 519 158 520 160 521 202 522 184 523 162 524 184 525 186 526 142 527 204 528 162 529 164 530 186 531 188 532 144 533 170 534 164 535 166 536 188 537 190 538 146 539 190 540 192 541 148 542 192 543 194 544 150 545 194 546 206 547 168 548 168 549 204 550 170 551 196 552 160 553 154 554 156 555 198 556 196 557 208 558 198 559 172 560 210 561 172 562 174 563 212 564 174 565 176 566 214 567 176 568 178 569 180 570 216 571 178 572 182 573 218 574 180 575 200 576 220 577 182 578 200 579 158 580 196 581 202 582 222 583 184 584 202 585 162 586 204 587 184 588 224 589 186 590 204 591 164 592 170 593 226 594 188 595 186 596 228 597 190 598 188 599 230 600 192 601 190 602 232 603 194 604 192 605 194 606 234 607 206 608 168 609 206 610 204 611 198 612 200 613 196 614 208 615 236 616 198 617 210 618 208 619 172 620 212 621 210 622 174 623 214 624 212 625 176 626 216 627 214 628 178 629 218 630 216 631 180 632 220 633 218 634 182 635 236 636 220 637 200 638 238 639 222 640 202 641 222 642 224 643 184 644 206 645 202 646 204 647 224 648 226 649 186 650 226 651 228 652 188 653 228 654 230 655 190 656 230 657 232 658 192 659 232 660 234 661 194 662 234 663 238 664 206 665 198 666 236 667 200 668 240 669 236 670 208 671 242 672 208 673 210 674 244 675 210 676 212 677 246 678 212 679 214 680 216 681 248 682 214 683 218 684 250 685 216 686 220 687 252 688 218 689 236 690 254 691 220 692 238 693 256 694 222 695 206 696 238 697 202 698 222 699 258 700 224 701 224 702 260 703 226 704 262 705 228 706 226 707 264 708 230 709 228 710 266 711 232 712 230 713 268 714 234 715 232 716 234 717 270 718 238 719 240 720 254 721 236 722 242 723 240 724 208 725 244 726 242 727 210 728 246 729 244 730 212 731 248 732 246 733 214 734 250 735 248 736 216 737 252 738 250 739 218 740 254 741 252 742 220 743 270 744 256 745 238 746 256 747 258 748 222 749 258 750 260 751 224 752 260 753 262 754 226 755 262 756 264 757 228 758 264 759 266 760 230 761 266 762 268 763 232 764 268 765 270 766 234 767 240 768 272 769 254 770 242 771 274 772 240 773 276 774 242 775 244 776 278 777 244 778 246 779 280 780 246 781 248 782 282 783 248 784 250 785 252 786 284 787 250 788 254 789 286 790 252 791 288 792 256 793 270 794 258 795 256 796 290 797 258 798 292 799 260 800 260 801 294 802 262 803 262 804 296 805 264 806 266 807 264 808 298 809 300 810 268 811 266 812 302 813 270 814 268 815 272 816 286 817 254 818 274 819 272 820 240 821 276 822 274 823 242 824 278 825 276 826 244 827 280 828 278 829 246 830 282 831 280 832 248 833 284 834 282 835 250 836 286 837 284 838 252 839 302 840 288 841 270 842 288 843 290 844 256 845 258 846 290 847 292 848 292 849 294 850 260 851 294 852 296 853 262 854 296 855 298 856 264 857 300 858 266 859 298 860 300 861 302 862 268 863 272 864 304 865 286 866 274 867 306 868 272 869 276 870 308 871 274 872 310 873 276 874 278 875 312 876 278 877 280 878 314 879 280 880 282 881 316 882 282 883 284 884 286 885 318 886 284 887 320 888 288 889 302 890 322 891 290 892 288 893 292 894 290 895 324 896 294 897 292 898 326 899 294 900 328 901 296 902 296 903 330 904 298 905 300 906 298 907 332 908 302 909 300 910 334 911 304 912 318 913 286 914 306 915 304 916 272 917 308 918 306 919 274 920 310 921 308 922 276 923 312 924 310 925 278 926 314 927 312 928 280 929 316 930 314 931 282 932 318 933 316 934 284 935 334 936 320 937 302 938 320 939 322 940 288 941 322 942 324 943 290 944 292 945 324 946 326 947 294 948 326 949 328 950 328 951 330 952 296 953 330 954 332 955 298 956 334 957 300 958 332 959 304 960 324 961 318 962 306 963 326 964 304 965 308 966 328 967 306 968 330 969 308 970 310 971 332 972 310 973 312 974 334 975 312 976 314 977 316 978 320 979 314 980 318 981 322 982 316 983 314 980 320 979 334 984 316 983 322 982 320 985 318 986 324 987 322 988 326 989 324 990 304 991 328 992 326 993 306 994 328 995 308 970 330 969 330 996 310 997 332 998 334 999 332 1000 312 1001</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"336\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1230\" />\r\n\t\t\t\t\t<p>3 4 5 4 7 5 3 5 9 4 3 11 5 7 13 4 15 7 9 5 17 19 3 9 3 21 11 4 11 23 13 7 25 5 13 17 7 15 27 4 23 15 9 17 29 19 9 31 3 19 21 11 21 33 23 11 35 13 25 37 7 27 25 17 13 39 15 41 27 15 23 43 17 45 29 31 9 29 47 19 31 19 49 21 21 51 33 11 33 35 23 35 53 25 55 37 13 37 39 27 57 25 17 39 45 27 41 59 15 43 41 23 53 43 29 45 61 31 29 63 47 31 65 19 47 49 21 49 51 33 51 67 33 69 35 35 71 53 37 55 73 25 57 55 39 37 75 27 59 57 45 39 77 41 79 59 43 81 41 43 53 83 45 85 61 29 61 63 31 63 65 47 65 87 49 47 89 49 91 51 51 93 67 33 67 69 69 71 35 71 95 53 73 55 97 37 73 75 57 99 55 39 75 77 59 101 57 45 77 85 79 103 59 41 81 79 43 83 81 95 83 53 61 85 105 61 107 63 63 109 65 65 111 87 47 87 89 49 89 91 51 91 93 67 93 113 67 115 69 69 117 71 71 105 95 73 97 119 55 99 97 75 73 121 57 101 99 77 75 123 59 103 101 85 77 125 79 127 103 81 129 79 83 131 81 95 125 83 105 85 95 61 105 107 63 107 109 65 109 111 87 111 133 89 87 135 89 137 91 91 139 93 93 141 113 67 113 115 115 117 69 117 105 71 119 97 143 121 73 119 97 99 145 75 121 123 101 147 99 77 123 125 103 149 101 85 125 95 127 151 103 129 127 79 81 131 129 125 131 83 105 117 107 107 153 109 109 155 111 111 157 133 87 133 135 89 135 137 91 137 139 93 139 141 113 141 159 115 113 161 117 115 153 119 143 163 97 145 143 121 119 165 99 147 145 123 121 167 101 149 147 125 123 131 103 151 149 127 169 151 129 171 127 131 167 129 107 117 153 109 153 155 111 155 157 133 157 173 135 133 175 135 177 137 139 137 179 139 181 141 141 183 159 113 159 161 115 161 153 143 185 163 165 119 163 143 145 187 167 121 165 145 147 189 131 123 167 149 191 147 149 151 193 169 195 151 171 169 127 129 167 171 153 161 155 155 197 157 157 199 173 133 173 175 135 175 177 137 177 179 139 179 181 141 181 183 159 183 201 161 159 197 163 185 203 143 187 185 165 163 205 145 189 187 167 165 171 147 191 189 149 193 191 151 195 193 169 207 195 171 205 169 155 161 197 197 199 157 173 199 209 175 173 211 177 175 213 179 177 215 179 217 181 181 219 183 183 221 201 197 159 201 185 223 203 205 163 203 187 225 185 171 165 205 187 189 227 189 191 229 191 193 231 193 195 233 207 235 195 205 207 169 197 201 199 199 237 209 173 209 211 175 211 213 177 213 215 179 215 217 181 217 219 183 219 221 201 221 237 203 223 239 185 225 223 205 203 207 187 227 225 189 229 227 191 231 229 193 233 231 195 235 233 207 239 235 201 237 199 209 237 241 211 209 243 213 211 245 215 213 247 215 249 217 217 251 219 219 253 221 221 255 237 223 257 239 203 239 207 225 259 223 227 261 225 227 229 263 229 231 265 231 233 267 233 235 269 239 271 235 237 255 241 209 241 243 211 243 245 213 245 247 215 247 249 217 249 251 219 251 253 221 253 255 239 257 271 223 259 257 225 261 259 227 263 261 229 265 263 231 267 265 233 269 267 235 271 269 255 273 241 241 275 243 245 243 277 247 245 279 249 247 281 251 249 283 251 285 253 253 287 255 271 257 289 291 257 259 261 293 259 263 295 261 265 297 263 299 265 267 267 269 301 269 271 303 255 287 273 241 273 275 243 275 277 245 277 279 247 279 281 249 281 283 251 283 285 253 285 287 271 289 303 257 291 289 293 291 259 261 295 293 263 297 295 265 299 297 299 267 301 269 303 301 287 305 273 273 307 275 275 309 277 279 277 311 281 279 313 283 281 315 285 283 317 285 319 287 303 289 321 289 291 323 325 291 293 327 293 295 297 329 295 299 331 297 333 299 301 335 301 303 287 319 305 273 305 307 275 307 309 277 309 311 279 311 313 281 313 315 283 315 317 285 317 319 303 321 335 289 323 321 291 325 323 327 325 293 329 327 295 297 331 329 299 333 331 333 301 335 319 325 305 305 327 307 307 329 309 311 309 331 313 311 333 315 313 335 315 321 317 317 323 319 335 321 315 321 323 317 323 325 319 305 325 327 307 327 329 331 309 329 333 311 331 313 333 335</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1235\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1236\">\r\n\t\t\t\t\t<float_array count=\"474\" id=\"ID1240\">-0.2632333636283875 0.1463004350662231 0.4053278565406799 -0.2554321587085724 0.1350731551647186 0.3807511031627655 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2554321587085724 0.1350731551647186 0.3807511031627655 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2632333636283875 0.1463004350662231 0.4053278565406799 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.3599225878715515 0.1203248128294945 0.3703152239322662 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3599225878715515 0.1203248128294945 0.3703152239322662 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.3616665303707123 0.1178532540798187 0.3428008258342743 -0.3616665303707123 0.1178532540798187 0.3428008258342743 -0.3599225878715515 0.2193765044212341 0.3321252465248108 -0.3599225878715515 0.2193765044212341 0.3321252465248108 -0.3686836659908295 0.1289883852005005 0.3880452811717987 -0.3686836659908295 0.1289883852005005 0.3880452811717987 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.3685232102870941 0.112412266433239 0.3536622524261475 -0.3685232102870941 0.112412266433239 0.3536622524261475 -0.3686836659908295 0.2251724451780319 0.3510836064815521 -0.3686836659908295 0.2251724451780319 0.3510836064815521 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.3948188722133637 0.1214067563414574 0.3719117343425751 -0.3948188722133637 0.1214067563414574 0.3719117343425751 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.3685232102870941 0.213781014084816 0.3145064115524292 -0.3685232102870941 0.213781014084816 0.3145064115524292 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.331480085849762 0.3918247520923615 0.2766976058483124 -0.331480085849762 0.3918247520923615 0.2766976058483124 -0.380407452583313 0.1333868056535721 0.3983803391456604 -0.380407452583313 0.1333868056535721 0.3983803391456604 -0.3475818336009979 0.391990065574646 0.2504473626613617 -0.3475818336009979 0.391990065574646 0.2504473626613617 -0.3847377300262451 0.1070445701479912 0.3405502736568451 -0.3847377300262451 0.1070445701479912 0.3405502736568451 -0.3477009534835815 0.3914711475372315 0.3060665428638458 -0.3477009534835815 0.3914711475372315 0.3060665428638458 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.406432032585144 0.1333922743797302 0.3976973593235016 -0.406432032585144 0.1333922743797302 0.3976973593235016 -0.377187043428421 0.3922291398048401 0.2198213487863541 -0.377187043428421 0.3922291398048401 0.2198213487863541 -0.3847377300262451 0.2087883651256561 0.3013535141944885 -0.3847377300262451 0.2087883651256561 0.3013535141944885 -0.4076659083366394 0.1068173423409462 0.3408112823963165 -0.4076659083366394 0.1068173423409462 0.3408112823963165 -0.4203027784824371 0.1285581141710281 0.3884540498256683 -0.4203027784824371 0.1285581141710281 0.3884540498256683 -0.4076659083366394 0.2091143876314163 0.301336407661438 -0.4076659083366394 0.2091143876314163 0.301336407661438 -0.4257177710533142 0.1123063191771507 0.352569580078125 -0.4257177710533142 0.1123063191771507 0.352569580078125 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.4285887479782105 0.1201155632734299 0.3699979782104492 -0.4285887479782105 0.1201155632734299 0.3699979782104492 -0.4184880256652832 0.3922127485275269 0.2197222262620926 -0.4184880256652832 0.3922127485275269 0.2197222262620926 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.3817976415157318 0.07198629528284073 0.2429685145616531 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4114072024822235 0.07156319916248322 0.2420414835214615 -0.3817976415157318 0.07198629528284073 0.2429685145616531 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4114072024822235 0.07156319916248322 0.2420414835214615 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.4257177710533142 0.2131323367357254 0.3136953711509705 -0.4257177710533142 0.2131323367357254 0.3136953711509705 -0.449212372303009 0.3919951915740967 0.2502450942993164 -0.449212372303009 0.3919951915740967 0.2502450942993164 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4313807189464569 0.1182028353214264 0.3435654938220978 -0.4313807189464569 0.1182028353214264 0.3435654938220978 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4203027784824371 0.2257343530654907 0.3509951531887054 -0.4203027784824371 0.2257343530654907 0.3509951531887054 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4393015503883362 0.3914935886859894 0.3062659204006195 -0.4393015503883362 0.3914935886859894 0.3062659204006195 -0.4285887479782105 0.2193097323179245 0.331741213798523 -0.4285887479782105 0.2193097323179245 0.331741213798523 -0.5296262502670288 0.1466700881719589 0.4061391949653626 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.5353522300720215 0.135115921497345 0.3808478713035584 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.5353522300720215 0.135115921497345 0.3808478713035584 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.5296262502670288 0.1466700881719589 0.4061391949653626 -0.455159991979599 0.3916418254375458 0.2787977755069733 -0.455159991979599 0.3916418254375458 0.2787977755069733 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5619023442268372 0.1410554200410843 0.431704044342041</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"158\" source=\"#ID1240\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1237\">\r\n\t\t\t\t\t<float_array count=\"474\" id=\"ID1241\">7.154997292855769e-005 -0.9095757112452636 0.4155382297614439 6.852755594235001e-005 -0.909576342414341 0.4155368486959054 0.0001263487641218279 -0.9095642658499487 0.4155632687387494 0.0001263487641218279 -0.9095642658499487 0.4155632687387494 -6.852755594235001e-005 0.909576342414341 -0.4155368486959054 -0.0001263487641218279 0.9095642658499487 -0.4155632687387494 -0.0001263487641218279 0.9095642658499487 -0.4155632687387494 -7.154997292855769e-005 0.9095757112452636 -0.4155382297614439 0.9447151072035335 -0.3209045653834627 0.06733220728200723 0.4384268685113827 -0.8133494384010177 0.3824193666906158 0.7939855858878951 -0.1106473800233164 0.5977826082249566 -0.7939855858878951 0.1106473800233164 -0.5977826082249566 -0.4384268685113827 0.8133494384010177 -0.3824193666906158 -0.9447151072035335 0.3209045653834627 -0.06733220728200723 3.04203672274447e-005 -0.9095842994173099 0.4155194355600263 3.04203672274447e-005 -0.9095842994173099 0.4155194355600263 -3.04203672274447e-005 0.9095842994173099 -0.4155194355600263 -3.04203672274447e-005 0.9095842994173099 -0.4155194355600263 0.7459218330116282 -0.529476007767462 -0.4040492250149765 -0.7459218330116282 0.529476007767462 0.4040492250149765 0.9995435931490206 -0.02557286258534972 -0.01608210477319518 -0.9995435931490206 0.02557286258534972 0.01608210477319518 0.3268345149983279 -0.7222415736188392 0.609545986076843 -0.3268345149983279 0.7222415736188392 -0.609545986076843 -0.5591657910973846 -0.7999263466458474 0.2178335557444341 -0.525736770613326 -0.8229577751390799 0.2152704075417861 -0.5429581458881555 -0.8113378986682585 0.2166270204712956 0.5429581458881555 0.8113378986682585 -0.2166270204712956 0.525736770613326 0.8229577751390799 -0.2152704075417861 0.5591657910973846 0.7999263466458474 -0.2178335557444341 0.3232419702666449 -0.931578117861167 0.1663635746802267 -0.3232419702666449 0.931578117861167 -0.1663635746802267 0.8161955627422841 0.1770353984243641 0.5499847916665811 -0.8161955627422841 -0.1770353984243641 -0.5499847916665811 0.367804967138664 0.05323771252511472 0.9283777529180778 -0.367804967138664 -0.05323771252511472 -0.9283777529180778 0.001422634435665874 -0.9075303617627482 0.4199840694479229 -0.001422634435665874 0.9075303617627482 -0.4199840694479229 -0.5742241777860956 -0.7888937276389303 0.2188910234290935 0.5742241777860956 0.7888937276389303 -0.2188910234290935 0.7961764647920196 -0.2076752187963572 -0.5683080506285011 -0.7961764647920196 0.2076752187963572 0.5683080506285011 0.3256245194348662 -0.653574442369451 -0.6832343087289117 -0.3256245194348662 0.653574442369451 0.6832343087289117 0.974033649817812 -0.1940885357400465 -0.1165679600785597 -0.974033649817812 0.1940885357400465 0.1165679600785597 0.1616895397440462 -0.6332904620999461 0.7568353079439377 -0.1616895397440462 0.6332904620999461 -0.7568353079439377 0.7462209594081926 -0.3077281488075161 -0.590303029105743 -0.7462209594081926 0.3077281488075161 0.590303029105743 0.1363240481501958 -0.9903877858573049 0.02340486104654377 -0.1363240481501958 0.9903877858573049 -0.02340486104654377 0.8043460974294051 0.05891508458270945 0.5912329222554325 -0.8043460974294051 -0.05891508458270945 -0.5912329222554325 0.3600849068814223 0.2993654758240678 0.8835831436377829 -0.3600849068814223 -0.2993654758240678 -0.8835831436377829 -0.3440377057128069 0.03357744818432158 0.9383552696187609 0.3440377057128069 -0.03357744818432158 -0.9383552696187609 -0.1305064306091962 -0.6524378774858333 0.7465205205427564 0.1305064306091962 0.6524378774858333 -0.7465205205427564 0.334771657383111 -0.3926254953009006 -0.8566056022772017 -0.334771657383111 0.3926254953009006 0.8566056022772017 0.3459775000900096 -0.3151107792028358 -0.8837447404435566 -0.3459775000900096 0.3151107792028358 0.8837447404435566 -0.1260648181863209 -0.9917475145758299 0.02333514406028312 0.1260648181863209 0.9917475145758299 -0.02333514406028312 -0.3146699866686367 -0.7026366235699806 0.6381885103228808 0.3146699866686367 0.7026366235699806 -0.6381885103228808 -0.3091364483100864 -0.3196699407816844 -0.8956817433033117 0.3091364483100864 0.3196699407816844 0.8956817433033117 -0.4045527655689166 -0.9035508367343974 0.1411840830515661 0.4045527655689166 0.9035508367343974 -0.1411840830515661 -0.3085605894463301 -0.6493048447907174 -0.6951212708382872 0.3085605894463301 0.6493048447907174 0.6951212708382872 0.4043726751136649 0.1731169967969206 0.8980608248005439 -0.4043726751136649 -0.1731169967969206 -0.8980608248005439 -0.7740390339621123 -0.09553922007584777 0.6258880341804747 0.7740390339621123 0.09553922007584777 -0.6258880341804747 -0.4056396103659939 -0.8085508928082049 0.4262651290466761 0.4056396103659939 0.8085508928082049 -0.4262651290466761 -0.3279646841002163 -0.4003026479086039 -0.8556850799566426 0.3279646841002163 0.4003026479086039 0.8556850799566426 -2.754448984373484e-005 -0.9090599037003082 0.4166654422023591 -1.434938109444597e-005 -0.9093464648875964 0.4160396694914158 -2.754448984373484e-005 -0.9090599037003082 0.4166654422023591 -1.363567733812147e-005 -0.9093619522663444 0.4160058167675192 1.434938109444597e-005 0.9093464648875964 -0.4160396694914158 2.754448984373484e-005 0.9090599037003082 -0.4166654422023591 1.363567733812147e-005 0.9093619522663444 -0.4160058167675192 2.754448984373484e-005 0.9090599037003082 -0.4166654422023591 -0.3299024776612259 0.3083376942217712 0.8922400022163241 0.3299024776612259 -0.3083376942217712 -0.8922400022163241 -0.8455678684091331 -0.1881845255135273 -0.4996014053936233 0.8455678684091331 0.1881845255135273 0.4996014053936233 -0.8183546287287127 -0.2907122829469654 -0.4957641275667838 0.8183546287287127 0.2907122829469654 0.4957641275667838 -0.9458502421880254 -0.2838528046477783 0.1574639788854709 0.9458502421880254 0.2838528046477783 -0.1574639788854709 -0.7896396980138031 -0.4780241226557592 -0.3846584010259772 0.7896396980138031 0.4780241226557592 0.3846584010259772 -3.728876776365491e-006 -0.9095767996909002 0.4155358533871124 -3.728876776365491e-006 -0.9095767996909002 0.4155358533871124 3.728876776365491e-006 0.9095767996909002 -0.4155358533871124 3.728876776365491e-006 0.9095767996909002 -0.4155358533871124 -0.7919122321604043 0.1926328944419546 0.5794545577814024 0.7919122321604043 -0.1926328944419546 -0.5794545577814024 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 0 0.9928578450812609 0.1193033924940749 0 0.9928578450812609 0.1193033924940749 0 0.9928578450812609 0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0.7816935535743665 0.06795371568789234 0.6199495792598683 0.7816935535743665 -0.06795371568789234 -0.6199495792598683 -0.9929097945071276 0.02385699098022405 0.1164516378295436 0.9929097945071276 -0.02385699098022405 -0.1164516378295436 -5.859460411438772e-005 -0.9095740687183863 0.4155418271146151 -0.0001156458150618025 -0.9095662717086603 0.4155588815030348 -5.978439340967497e-005 -0.9095739061471146 0.4155421827950879 -0.0001156458150618025 -0.9095662717086603 0.4155588815030348 0.0001156458150618025 0.9095662717086603 -0.4155588815030348 5.978439340967497e-005 0.9095739061471146 -0.4155421827950879 0.0001156458150618025 0.9095662717086603 -0.4155588815030348 5.859460411438772e-005 0.9095740687183863 -0.4155418271146151 -0.9890238215101863 -0.1175613266145401 0.08950539073160209 0.9890238215101863 0.1175613266145401 -0.08950539073160209 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 -0.3463720517402847 0.1847738626352813 0.9197200777737015 0.3463720517402847 -0.1847738626352813 -0.9197200777737015 -1.483031748329013e-005 -0.9095800476225388 0.4155287435870616 -1.483031748329013e-005 -0.9095800476225388 0.4155287435870616 1.483031748329013e-005 0.9095800476225388 -0.4155287435870616 1.483031748329013e-005 0.9095800476225388 -0.4155287435870616 0.5807092003594135 -0.7878595155234006 0.2050712276677619 0.5777978740210455 -0.7889102339766428 0.2092134305050199 0.5752096050775968 -0.7898221279238338 0.21287300549469 -0.5752096050775968 0.7898221279238338 -0.21287300549469 -0.5777978740210455 0.7889102339766428 -0.2092134305050199 -0.5807092003594135 0.7878595155234006 -0.2050712276677619 0.5729543618345776 -0.7905998681501759 0.2160443189154868 -0.5729543618345776 0.7905998681501759 -0.2160443189154868</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"158\" source=\"#ID1241\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1239\">\r\n\t\t\t\t\t<float_array count=\"488\" id=\"ID1242\">-2.63213038303705 3.378607622204579 -2.554133930553064 3.166048461566486 -3.587391906179787 3.213099664198045 -3.50313724758169 3.025141641425929 -1.045319997864637 3.894876806025977 -1.160862126351026 3.94820031540899 -1.015187397600491 4.092764163498988 -2.632284705724435 3.378530270152548 -2.53997460493407 3.46794460018157 -2.554276411449781 3.165973798754651 -2.417760943946474 3.122053832822153 -1.968270958422909 2.944184880112239 -2.117713939615053 2.773720815463494 -2.088736626084283 2.990275045555151 1.962256326470615 3.443412943408657 2.076606523626401 3.621259255608264 2.880180304337664 3.178785496016955 -1.610510223683513 3.934838441292375 -1.608181009007588 4.104677324854946 -1.477774829738932 4.086917556437528 -2.752215170559102 2.855029146521831 -2.953567051477624 3.177199976881162 -2.712584059120986 3.305623980831408 0.9262408536690879 1.135273511479787 1.031456717394809 1.325083520305112 1.940257989943857 1.041639633748331 -1.991581193229378 2.765433417334989 -2.079062651350002 2.850908629070537 -1.962284483885672 2.9819610514638 3.0451415689917 3.243791996790366 2.251318087510055 3.697026584523082 3.123671631587728 3.402710175634945 -1.373648664845498 4.173606268015004 -1.299628758783695 4.338301173687359 -1.244354189338972 4.151378445934692 -3.609732514477293 3.023515457575924 -3.958777436169807 3.037469723625358 -3.698106505987994 3.178484654265517 -2.483947490368943 2.900519119337377 -2.736047809243717 2.823433714152102 -2.703970739913745 3.274400369748774 1.889351512430463 0.9735185433538492 0.9367106543766401 1.219089245779115 1.950873127176101 1.12643457960694 -3.6099706886097 3.024834741402522 -3.695257113375188 2.879532741405246 -3.959017175547804 3.038764757168724 -2.715953227610941 2.311948976600159 -2.917988703346826 2.195736082177195 -2.801558566947437 2.398591749173 2.139780247186715 3.575680708223637 2.196425072156733 3.740258156433743 3.868317254469622 3.09451357754042 2.770953920766503 3.679310685817001 2.910212431396204 3.836884914240899 3.606214276684401 3.324599139223731 -1.388274266682096 4.303677939285445 -1.272571655037253 4.344387171593602 -1.347709011128989 4.180005708010928 -3.665593177900184 3.220691373475351 -3.928131927426224 3.081837356524855 -3.78210775391995 3.309640463856862 1.130311605295193 1.126377820761716 1.206299475270031 1.275214239361596 2.907066575813981 0.5852342416995015 1.075584867740999 -0.8051297767572097 0.05284343010698259 -0.6419163210803518 0.1694911801936667 -0.4677180556519611 -3.718476757910115 2.863521288867862 -3.87887026624569 2.750507641232472 -3.984108898022294 3.020815664882268 -2.965268422994861 2.222128669978276 -3.0176028482097 2.320260662551189 -2.848097127192144 2.42472007513564 0.8346455045968398 0.6332092869589715 2.552734102432543 0.129416192031585 2.499370292160392 -0.1091776051487044 2.337403123774756 3.799527166530098 3.995023245851485 3.394946101639595 3.994761601601176 3.130999170019357 3.658828574919182 3.277701144631026 2.97219994711978 3.797755710265468 3.745284641653469 3.385474241904113 -3.80407452583313 1.900967347094276 -4.117704927921295 1.994636624096851 -3.76063346862793 1.994636624096851 -3.962779579329583 3.041395312246116 -4.080372196636212 3.264611387099298 -3.820145293746886 3.270523676416271 0.3801030424848884 -0.3465349114581305 2.08373234170659 -1.017605435598144 1.960784316884723 -1.338437785425406 1.011564768524706 -0.8679895976751437 0.07835258162855172 -0.55549004156412 1.102073393762526 -0.7148585526376634 -3.830687475043129 2.804184661643422 -4.059977335877058 2.806447143685902 -3.929307467255845 3.076032806541181 -3.840650724818295 2.282253252091462 -3.801559492599367 2.180375066078454 -4.06994220151686 2.284412015148941 2.806324945484714 3.776306591838458 2.862592946750355 3.895811282485938 4.41521860624963 3.264266924492304 -4.148633308407015 1.858109092092074 -4.209966339227252 1.950404146035647 -3.889037958600043 1.873540194319601 -3.91024878588611 3.091265282919711 -4.162843133981847 3.235502402638323 -4.022756456893595 3.316097428165297 1.804807190581595 -1.483917399848166 0.1327346838318974 -0.6080369253746125 0.250299370182768 -0.4667385074936911 -3.871135737455754 -0.922493003367199 -4.100439852056908 -0.9230012540089677 -3.821057423243681 -0.1255950877840216 -4.075401395101349 2.78586827125366 -4.255855413971 2.88801979264803 -3.946759728136424 3.056056913209712 -3.80853533744812 2.166517314017002 -4.106560349464417 2.166517314017002 -4.076659083366394 2.27096666118209 2.884313037022852 3.883343937946692 4.464238345634785 3.45766940877569 4.433186107104556 3.24612279044892 -4.116867083721242 0.8355899834767357 -4.027425087298078 1.009292965064785 -3.911392188290299 0.9591490281471551 -3.932537492759314 3.075582033218262 -4.27037241076195 3.059062345964517 -4.186452856359546 3.218376547966553 -3.654507412820775 0.1045054500660082 -3.789056795842323 0.09287938346886765 -3.604199663229611 0.2351718893821941 -4.162080062192815 -2.134557563507187 -3.835212772701145 -0.5537914285606398 -3.749076225537093 -2.132638084670926 -4.076659083366395 -0.9609096291555792 -4.106560349464417 -0.1611151102336025 -3.808535337448121 -0.1611151102336027 -4.23375680939343 -2.075608589924791 -4.102573149155481 -0.4997027753894155 -3.873268508805136 -0.4993724616566957 -4.242544917072 2.909227215851943 -4.270258826944595 3.059580446390041 -3.932423128148093 3.076090249226915 -4.153657258174265 2.738967934813566 -4.198452213939097 2.63786798315234 -4.340722410538401 2.833473573004768 -3.808568989192585 2.711296288180668 -3.817998225232173 1.973450218548164 -4.106594001072074 2.711293328307002 -4.114093706563162 1.965431016429906 0.732578898063736 0.1227938792054498 0.8775865696850392 -0.0259031933701444 -0.02550715650289914 -0.3041852114695976 -3.776598173440457 1.620656936664281 -3.769765041652121 1.448290098568495 -3.911604173469502 1.612976061742652 -3.385369088698196 3.594503282257561 -2.370403948015334 3.77963298969028 -3.289356085657654 3.436664800728592 -5.394351889746344 2.310255168302022 -5.531872946933133 2.633321255562824 -3.713732337249778 3.174091889593237 -3.889304833134624 2.365421909394091 -4.089795617994382 2.466351634785759 -3.963381092801987 2.505727375327931 -4.121228868352374 2.707894396648292 -4.336747437386265 2.83253564941946 -4.258426856026714 2.905729610370996 -4.114074958573479 1.96581464507311 -3.817979366256187 1.973831313140475 -4.199585029464345 1.853778971787298 -3.740375050887728 1.853779587175583 1.056613651199812 -0.3380899033010843 0.2599314411611681 -0.7503730004179626 0.1637812586082857 -0.6361592099273964 -3.625609780677588 1.470019006260463 -3.749122315784419 1.425305607118445 -3.773776743402028 1.631220182217955 -5.648011933897507 2.435838676545936 -3.984133733066641 3.177350696966402 -3.858569836676477 3.032917600025752 -3.319925345597347 3.645233257028249 -2.432301748736574 4.002032074398338 -2.301567409380017 3.818449438756614 -3.644154888198931 2.686037288831495 -3.725814568994564 2.615137532808995 -3.846415389615387 2.784757725480801 -4.233378767967224 1.105920625207006 -4.19958233833313 1.321346009862422 -3.740372359752655 1.321346009862422 3.740372359752655 1.72767490928385 4.233378767967224 1.497410698066083 4.19958233833313 1.72767490928385 -1.229035429433876 -1.135141619079729 -2.798357227829818 -1.702964175906817 -1.288276156667242 -1.006323504849119 -0.2856228011415883 1.764231067308358 -1.074809300350776 1.300467174443276 -1.157417466045279 1.46022175021733 -5.296448941949752 3.385283044686555 -4.297830011210234 3.225214911140218 -5.353694049117336 3.166543500717179 -4.386127765099642 3.030401783887719 -0.4408526238691178 1.958105914965327 -0.3215888104597184 1.773783870337314 -1.236038297165288 1.500727647207349 -4.754764565415463 2.731318227310149 -2.946988463528547 3.011638785558609 -4.746216689148262 2.501964216298292 -1.455300936847106 3.769211273504801 -1.355374774016136 3.591468562779232 -2.30160619104441 3.344906032491399 -4.233378767967224 1.105920625207006 -3.740372359752655 1.321346009862423 -3.705208897590637 1.105920625207006 3.705208897590637 1.497410698066083 -2.90680081264382 -1.56447180063519 -2.954947297464281 -1.326590688235755 -1.382410700753786 -0.887391473981207 -2.251513409819251 1.229897929918368 -2.187152370213687 1.065030952520911 -3.908840734075562 0.8468919766099712 -5.296286415903058 3.38548417288662 -5.353544330087429 3.166746703318761 -5.421686338526626 3.465686649193497 -5.519764233846809 3.147562017189221 -1.076216311928042 3.430300695985917 -1.933439566116338 3.019782772118031 -1.993828948218517 3.163892373159887 -2.931510696520517 2.881073904661668 -2.865565543124608 2.738479308013299 -4.67447627507849 2.462725569490671 -3.811898130570406 0.3234380588460911 -2.093010548006573 0.5548424321950821 -3.809698603504408 0.07393165446856226 -3.64755428466631 3.617721750936123 -3.910352172916965 3.670072295123552 -3.468904282222147 3.913365430898217 -3.504503565450099 3.939119908911015 -3.945426023973666 3.695237842850044 -3.722119223755929 4.070378628286982</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"244\" source=\"#ID1242\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1238\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1236\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1237\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"86\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1238\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1239\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 3 2 2 1 1 8 4 9 5 10 6 0 7 14 8 1 9 15 10 1 9 14 8 8 11 18 12 9 13 8 14 10 15 20 16 9 17 22 18 10 19 24 20 25 21 26 22 18 23 8 24 20 25 18 26 30 27 9 28 20 29 10 30 32 31 22 32 34 33 10 34 9 35 36 36 22 37 38 38 24 39 26 40 40 41 18 42 20 43 9 44 30 45 36 46 18 47 42 48 30 49 20 50 32 51 44 52 10 53 34 54 32 55 46 56 34 57 22 58 22 59 36 60 46 61 40 62 20 63 48 64 40 65 42 66 18 67 30 68 50 69 36 70 42 71 50 72 30 73 20 74 44 75 48 76 32 77 52 78 44 79 32 80 34 81 54 82 46 83 56 84 34 85 36 86 58 87 46 88 40 89 48 90 60 91 62 92 42 93 40 94 50 95 64 96 36 97 50 98 42 99 64 100 32 101 54 102 52 103 58 104 56 105 46 106 36 107 66 108 58 109 60 110 62 111 40 112 62 113 68 114 42 115 64 116 70 117 36 118 42 119 72 120 64 121 54 122 74 123 52 124 76 125 56 126 58 127 36 128 78 129 66 130 66 131 76 132 58 133 80 134 62 135 60 136 68 137 72 138 42 139 80 140 68 141 62 142 70 143 78 144 36 145 64 146 72 147 70 148 82 149 83 150 84 151 85 152 84 151 83 150 56 153 76 154 90 155 66 156 78 157 76 158 92 159 72 160 68 161 80 162 94 163 68 164 70 165 96 166 78 167 72 168 98 169 70 170 85 171 83 172 100 173 101 174 100 173 83 172 76 175 104 176 90 177 78 178 96 179 76 180 94 181 92 182 68 183 92 184 98 185 72 186 70 187 98 188 96 189 106 190 107 191 108 192 115 193 116 194 117 195 104 196 118 197 90 198 76 199 120 200 104 201 122 202 123 203 124 204 125 205 124 204 123 203 76 206 96 207 120 208 130 209 92 210 94 211 96 212 98 213 92 214 132 215 133 216 134 217 141 193 142 218 143 194 118 219 144 220 90 221 104 222 120 223 118 224 122 225 124 226 146 227 147 228 146 227 124 226 96 229 92 230 120 231 120 232 92 233 130 234 118 235 120 236 130 237 150 238 151 239 152 240 152 241 151 242 156 243</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"86\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1238\" />\r\n\t\t\t\t\t<p>4 5 6 5 4 7 11 12 13 16 4 17 4 16 7 12 19 13 21 11 13 11 23 12 27 28 29 21 13 19 12 31 19 33 11 21 11 35 23 23 37 12 27 29 39 21 19 41 37 31 12 31 43 19 45 33 21 33 35 11 23 35 47 47 37 23 49 21 41 19 43 41 37 51 31 31 51 43 49 45 21 45 53 33 55 35 33 35 57 47 47 59 37 61 49 41 41 43 63 37 65 51 65 43 51 53 55 33 47 57 59 59 67 37 41 63 61 43 69 63 37 71 65 65 73 43 53 75 55 59 57 77 67 79 37 59 77 67 61 63 81 43 73 69 63 69 81 37 79 71 71 73 65 86 87 88 87 86 89 91 77 57 77 79 67 69 73 93 69 95 81 79 97 71 71 99 73 86 102 103 102 86 88 91 105 77 77 97 79 69 93 95 73 99 93 97 99 71 109 110 111 112 113 114 91 119 105 105 121 77 126 127 128 127 126 129 121 97 77 95 93 131 93 99 97 135 136 137 138 139 140 91 145 119 119 121 105 127 148 149 148 127 129 121 93 97 131 93 121 131 121 119 153 154 155 157 154 153</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1243\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1244\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID1247\">-0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.367525190114975 0.391314297914505 0.3244994282722473</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID1247\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1245\">\r\n\t\t\t\t\t<float_array count=\"36\" id=\"ID1248\">-0.3440377057128069 0.03357744818432158 0.9383552696187609 -0.3299024776612259 0.3083376942217712 0.8922400022163241 0.3600849068814223 0.2993654758240678 0.8835831436377829 -0.3600849068814223 -0.2993654758240678 -0.8835831436377829 0.3299024776612259 -0.3083376942217712 -0.8922400022163241 0.3440377057128069 -0.03357744818432158 -0.9383552696187609 -0.3463720517402847 0.1847738626352813 0.9197200777737015 0.3463720517402847 -0.1847738626352813 -0.9197200777737015 0.367804967138664 0.05323771252511472 0.9283777529180778 -0.367804967138664 -0.05323771252511472 -0.9283777529180778 0.4043726751136649 0.1731169967969206 0.8980608248005439 -0.4043726751136649 -0.1731169967969206 -0.8980608248005439</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"12\" source=\"#ID1248\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1246\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1244\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1245\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1246\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 1 6 2 3 7 4 0 2 8 9 3 5 2 6 10 11 7 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1249\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1250\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1253\">-0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5519742369651794 0.1341030150651932 0.3786295652389526</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1253\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1251\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1254\">0.5855516228701534 0.6673756912043336 -0.4601510444882938 0.5847287981283337 0.6684276671237125 -0.4596701931417198 0.5840114434190137 0.66934247689241 -0.4592507839766566 -0.5840114434190137 -0.66934247689241 0.4592507839766566 -0.5847287981283337 -0.6684276671237125 0.4596701931417198 -0.5855516228701534 -0.6673756912043336 0.4601510444882938 0.5865086810349907 0.6661485009135626 -0.4607100409164197 -0.5865086810349907 -0.6661485009135626 0.4607100409164197</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1254\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1252\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1250\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1251\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1252\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 0 6 1 4 7 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1255\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1256\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1259\">-0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2540025115013123 0.1510234326124191 0.4156664907932282</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1259\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1257\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1260\">-0.5664893720279264 0.680870144856998 -0.46422584721428 -0.5784378393100765 0.6758352019951724 -0.456789279425902 -0.5524855132419443 0.6865142307862299 -0.4727134106261178 0.5524855132419443 -0.6865142307862299 0.4727134106261178 0.5784378393100765 -0.6758352019951724 0.456789279425902 0.5664893720279264 -0.680870144856998 0.46422584721428 -0.5389551592185798 0.691712799742818 -0.4806877770690945 0.5389551592185798 -0.691712799742818 0.4806877770690945</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1260\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1258\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1256\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1257\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1258\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 2 3 5 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1261\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1262\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1265\">-0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.5398718118667603 0.5160609483718872 -0.2822246551513672 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5398718118667603 0.5160609483718872 -0.2822246551513672 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4597278535366058 0.5886020064353943 -0.2516790628433228 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4597278535366058 0.5886020064353943 -0.2516790628433228 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5398718118667603 0.5885813236236572 -0.2513153851032257 -0.5398718118667603 0.5885813236236572 -0.2513153851032257 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4733552634716034 0.6066198348999023 -0.2439994066953659 -0.4733552634716034 0.6066198348999023 -0.2439994066953659 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5270576477050781 0.606323778629303 -0.2437526285648346 -0.5270576477050781 0.606323778629303 -0.2437526285648346 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5270576477050781 0.4954752027988434 -0.2909989953041077 -0.5270576477050781 0.4954752027988434 -0.2909989953041077 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4597278535366058 0.5160419344902039 -0.2826054692268372 -0.4597278535366058 0.5160419344902039 -0.2826054692268372 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4733411073684692 0.4960610568523407 -0.2911213934421539 -0.4733411073684692 0.4960610568523407 -0.2911213934421539</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1265\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1263\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1266\">1.018605038254633e-017 -0.3920865992729213 0.9199283117018389 -1.492644435246423e-006 -0.3920905111252245 0.9199266444034179 1.263479483478821e-017 -0.392094972052365 0.9199247430585043 -1.263479483478821e-017 0.392094972052365 -0.9199247430585043 1.492644435246423e-006 0.3920905111252245 -0.9199266444034179 -1.018605038254633e-017 0.3920865992729213 -0.9199283117018389 -7.160122051603417e-007 -0.3920995868816517 0.9199227760886918 7.160122051603417e-007 0.3920995868816517 -0.9199227760886918 -0.9657779994111223 -0.2556768389188145 -0.04361433129067741 -0.961816197635081 -0.2697193962519665 -0.04648708694110092 -0.952955038844713 0.2700497766246847 0.137658316441213 0.952955038844713 -0.2700497766246847 -0.137658316441213 0.961816197635081 0.2697193962519665 0.04648708694110092 0.9657779994111223 0.2556768389188145 0.04361433129067741 4.226078624807187e-017 -0.3920867037195872 0.9199282671851697 -4.226078624807187e-017 0.3920867037195872 -0.9199282671851697 0.9556301563420309 0.2865716167704185 0.06817413550089126 0.9464262773971828 0.3144432018787364 0.07350356620164039 0.4461077867563716 0.8529219849936016 0.2711308357784226 -0.4461077867563716 -0.8529219849936016 -0.2711308357784226 -0.9464262773971828 -0.3144432018787364 -0.07350356620164039 -0.9556301563420309 -0.2865716167704185 -0.06817413550089126 -5.489730722854122e-006 -0.392084984740443 0.9199289998206108 5.489730722854122e-006 0.392084984740443 -0.9199289998206108 -0.9617606342588828 0.2423096741065457 0.1276812602707654 0.9617606342588828 -0.2423096741065457 -0.1276812602707654 -0.4995310403535877 -0.8292392942562499 -0.2506609913501879 0.4995310403535877 0.8292392942562499 0.2506609913501879 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9634604031238594 -0.2417599937723264 -0.1153089633272929 -0.9634604031238594 0.2417599937723264 0.1153089633272929 0.4722805523885353 0.8390374649568232 0.2701244384249742 -0.4722805523885353 -0.8390374649568232 -0.2701244384249742 -0.4554289994794556 0.8379380261111193 0.3007395731029473 -0.4946133559482358 0.8179775718930541 0.2937180961356777 0.4946133559482358 -0.8179775718930541 -0.2937180961356777 0.4554289994794556 -0.8379380261111193 -0.3007395731029473 -0.496138447156815 -0.8307139620940133 -0.2525093155408146 0.496138447156815 0.8307139620940133 0.2525093155408146 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9563447960919848 -0.2662293121312899 -0.1205262807435803 -0.9563447960919848 0.2662293121312899 0.1205262807435803 0.4944995435269457 -0.8167100971460085 -0.2974135482310776 -0.4944995435269457 0.8167100971460085 0.2974135482310776 0.4800780324579885 -0.8242189406550274 -0.3003135371853403 -0.4800780324579885 0.8242189406550274 0.3003135371853403</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1266\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1264\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1262\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1263\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"44\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1264\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 0 2 3 5 15 16 17 18 19 20 21 1 22 6 7 23 4 10 9 24 25 12 11 8 26 9 12 27 13 28 0 14 15 5 29 30 17 16 21 20 31 16 18 32 33 19 21 34 35 18 19 36 37 10 24 34 37 25 11 26 38 9 12 39 27 40 28 14 15 29 41 42 30 16 21 31 43 35 32 18 19 33 36 34 24 35 36 25 37 44 38 26 27 39 45 44 30 42 43 31 45 46 38 44 45 39 47 46 44 42 43 45 47</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1267\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1268\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID1271\">-0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.4343203604221344 0.5160609483718872 -0.2822246551513672 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4343203604221344 0.5160609483718872 -0.2822246551513672 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.354176789522171 0.5886020064353943 -0.2516790628433228 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.354176789522171 0.5886020064353943 -0.2516790628433228 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4343203604221344 0.5885813236236572 -0.2513153851032257 -0.4343203604221344 0.5885813236236572 -0.2513153851032257 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3678038418292999 0.6066198348999023 -0.2439994066953659 -0.3678038418292999 0.6066198348999023 -0.2439994066953659 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4215061962604523 0.606323778629303 -0.2437526285648346 -0.4215061962604523 0.606323778629303 -0.2437526285648346 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4215061962604523 0.4954752027988434 -0.2909989953041077 -0.4215061962604523 0.4954752027988434 -0.2909989953041077 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.354176789522171 0.5160419344902039 -0.2826054692268372 -0.354176789522171 0.5160419344902039 -0.2826054692268372 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.3677899539470673 0.4960610568523407 -0.2911213934421539 -0.3677899539470673 0.4960610568523407 -0.2911213934421539</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID1271\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1269\">\r\n\t\t\t\t\t<float_array count=\"150\" id=\"ID1272\">1.577987075014722e-017 -0.3920865992778976 0.919928311699718 -1.49264799376819e-006 -0.3920905111273643 0.9199266444025057 9.377758992654222e-018 -0.3920949720469876 0.9199247430607962 -9.377758992654222e-018 0.3920949720469876 -0.9199247430607962 1.49264799376819e-006 0.3920905111273643 -0.9199266444025057 -1.577987075014722e-017 0.3920865992778976 -0.919928311699718 -7.160187554859395e-007 -0.3920995868705536 0.9199227760934221 7.160187554859395e-007 0.3920995868705536 -0.9199227760934221 -0.9657782097535681 -0.2556749505845612 -0.04362074287280278 -0.9618163096584675 -0.2697179776438742 -0.04649299958773773 -0.9529549464436813 0.2700530802757604 0.1376524750307613 0.9529549464436813 -0.2700530802757604 -0.1376524750307613 0.9618163096584675 0.2697179776438742 0.04649299958773773 0.9657782097535681 0.2556749505845612 0.04362074287280278 4.398390274986898e-017 -0.3920867037122621 0.9199282671882916 -4.398390274986898e-017 0.3920867037122621 -0.9199282671882916 0.9556306576448407 0.2865699003687983 0.06817432340629723 0.9464258468055602 0.3144451341472773 0.07350084427732247 0.4461060594785385 0.8529213522706366 0.2711356681393269 -0.4461060594785385 -0.8529213522706366 -0.2711356681393269 -0.9464258468055602 -0.3144451341472773 -0.07350084427732247 -0.9556306576448407 -0.2865699003687983 -0.06817432340629723 -5.489764998567177e-006 -0.3920849847041301 0.9199289998360877 5.489764998567177e-006 0.3920849847041301 -0.9199289998360877 -0.9617605142813323 0.2423129442383939 0.127675957892739 0.9617605142813323 -0.2423129442383939 -0.127675957892739 -0.4995316796696845 -0.8292382630216973 -0.2506631288146341 0.4995316796696845 0.8292382630216973 0.2506631288146341 1.401435880184439e-017 -0.3920801801035452 0.9199310476171416 -1.401435880184439e-017 0.3920801801035452 -0.9199310476171416 0.9634607759132623 -0.2417572975523022 -0.1153115014073698 -0.9634607759132623 0.2417572975523022 0.1153115014073698 0.4722914400859864 0.8390289711358017 0.2701317849056331 -0.4722914400859864 -0.8390289711358017 -0.2701317849056331 -0.4554294014629058 0.8379385721984621 0.3007374428054177 -0.4946125368993921 0.8179786090951815 0.2937165868735704 0.4946125368993921 -0.8179786090951815 -0.2937165868735704 0.4554294014629058 -0.8379385721984621 -0.3007374428054177 -0.496137727824831 -0.8307138391627682 -0.2525111333234005 0.496137727824831 0.8307138391627682 0.2525111333234005 0 -0.3920801801035452 0.9199310476171416 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9563451698804476 -0.266226810714687 -0.120528840129754 -0.9563451698804476 0.266226810714687 0.120528840129754 0.4945017044715873 -0.8167083583261001 -0.2974147301580424 -0.4945017044715873 0.8167083583261001 0.2974147301580424 0.4800785693254803 -0.8242181053042629 -0.3003149715932439 -0.4800785693254803 0.8242181053042629 0.3003149715932439</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"50\" source=\"#ID1272\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1270\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1268\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1269\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"44\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1270\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 0 2 3 5 15 16 17 18 19 20 21 1 22 6 7 23 4 10 9 24 25 12 11 8 26 9 12 27 13 28 0 14 15 5 29 30 17 16 21 20 31 16 18 32 33 19 21 34 35 18 19 36 37 10 24 34 37 25 11 26 38 9 12 39 27 40 41 14 15 42 43 44 30 16 21 31 45 35 32 18 19 33 36 34 24 35 36 25 37 46 38 26 27 39 47 46 30 44 45 31 47 48 38 46 47 39 49 48 46 44 45 47 49</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1273\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1274\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID1277\">-0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3090353906154633 0.5463404059410095 -0.2693190574645996 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3090353906154633 0.5463404059410095 -0.2693190574645996 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.6342289447784424 -0.232231467962265 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2288918197154999 0.6342289447784424 -0.232231467962265 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.3090353906154633 0.6342087984085083 -0.2318678945302963 -0.3090353906154633 0.6342087984085083 -0.2318678945302963 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2425188422203064 0.6522464156150818 -0.2245520353317261 -0.2425188422203064 0.6522464156150818 -0.2245520353317261 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.2962212562561035 0.6519521474838257 -0.2243053764104843 -0.2962212562561035 0.6519521474838257 -0.2243053764104843 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.3262083530426025 0.5177374482154846 -0.2815103232860565 -0.3262083530426025 0.5177374482154846 -0.2815103232860565 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.2288918197154999 0.5177167654037476 -0.2818911969661713 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5177167654037476 -0.2818911969661713 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.2425051629543304 0.4977369606494904 -0.2904066741466522 -0.2425051629543304 0.4977369606494904 -0.2904066741466522</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID1277\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1275\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID1278\">4.719033471891902e-017 -0.3920905752870032 0.9199266170576362 -2.884976234942127e-006 -0.3920858289120519 0.9199286400357509 3.370173609169518e-018 -0.3920945522236592 0.9199249219999034 -3.370173609169518e-018 0.3920945522236592 -0.9199249219999034 2.884976234942127e-006 0.3920858289120519 -0.9199286400357509 -4.719033471891902e-017 0.3920905752870032 -0.9199266170576362 -1.383915055981403e-006 -0.3920969058693643 0.9199239188138092 1.383915055981403e-006 0.3920969058693643 -0.9199239188138092 -0.9706832903972148 0.2078131408484302 0.1207793369510993 -0.9650271046384095 0.2288071805736214 0.1279451500884601 -0.9529537582915173 0.2700616675338173 0.1376438530662601 0.9529537582915173 -0.2700616675338173 -0.1376438530662601 0.9650271046384095 -0.2288071805736214 -0.1279451500884601 0.9706832903972148 -0.2078131408484302 -0.1207793369510993 -4.719033471891901e-017 -0.3920905752870033 0.9199266170576362 -4.719033471891901e-017 -0.3920905752870033 0.9199266170576362 4.719033471891901e-017 0.3920905752870033 -0.9199266170576362 4.719033471891901e-017 0.3920905752870033 -0.9199266170576362 0.95563218680553 0.2865661400237065 0.06816869467133878 0.9464256864674265 0.3144455718013523 0.07350103651773379 0.4461113649611553 0.8529273245609877 0.2711081501352002 -0.4461113649611553 -0.8529273245609877 -0.2711081501352002 -0.9464256864674265 -0.3144455718013523 -0.07350103651773379 -0.95563218680553 -0.2865661400237065 -0.06816869467133878 -1.061068912738696e-005 -0.3920686822882367 0.9199359479095156 1.061068912738696e-005 0.3920686822882367 -0.9199359479095156 -0.9617597641238146 0.2423166136760486 0.1276746445034306 0.9617597641238146 -0.2423166136760486 -0.1276746445034306 -0.993909052903077 0.07939780418357825 0.07642501716149437 0.993909052903077 -0.07939780418357825 -0.07642501716149437 0 -0.3920945895234322 0.919924906101825 0 -0.3920898773552489 0.9199269145293805 0 -0.3920898773552489 0.9199269145293805 -0 0.3920898773552489 -0.9199269145293805 -0 0.3920898773552489 -0.9199269145293805 -0 0.3920945895234322 -0.919924906101825 0.9995077430572552 0.01230109785848254 -0.02886095216842587 -0.9995077430572552 -0.01230109785848254 0.02886095216842587 0.4723017897819827 0.83903742859678 0.2700874169272593 -0.4723017897819827 -0.83903742859678 -0.2700874169272593 -0.4554410407912898 0.8379186725669763 0.3007752591662806 -0.494612554153276 0.8179656278243028 0.2937527071738518 0.494612554153276 -0.8179656278243028 -0.2937527071738518 0.4554410407912898 -0.8379186725669763 -0.3007752591662806 -0.9966295060997636 0.04754817778887997 0.06684907149914918 0.9966295060997636 -0.04754817778887997 -0.06684907149914918 -9.303577740844134e-018 -0.3920932922423561 0.9199254590338015 0 -0.392089877355249 0.9199269145293805 -0 0.392089877355249 -0.9199269145293805 9.303577740844134e-018 0.3920932922423561 -0.9199254590338015 0.999507737305549 0.01230113833683166 -0.0288611341073107 0.999507737305549 0.01230113833683166 -0.0288611341073107 -0.999507737305549 -0.01230113833683166 0.0288611341073107 -0.999507737305549 -0.01230113833683166 0.0288611341073107 -0.9439128184700081 -0.3237861883456118 -0.06473866977800677 0.9439128184700081 0.3237861883456118 0.06473866977800677 0.963462018835475 -0.2417599248694221 -0.1152956069787658 0.9995077372826678 0.0123011480951978 -0.02886113074051997 0.9995077372826678 0.0123011480951978 -0.02886113074051997 -0.9995077372826678 -0.0123011480951978 0.02886113074051997 -0.9995077372826678 -0.0123011480951978 0.02886113074051997 -0.963462018835475 0.2417599248694221 0.1152956069787658 0 -0.392098647750297 0.9199231763752823 -0 0.392098647750297 -0.9199231763752823 -0.9443667124121585 -0.3230491775558667 -0.06173120255049157 0.9443667124121585 0.3230491775558667 0.06173120255049157 0.9563417668586146 -0.2662410739890978 -0.1205243356458564 0.9995077430203615 0.01230117529490369 -0.02886092044109709 -0.9995077430203615 -0.01230117529490369 0.02886092044109709 -0.9563417668586146 0.2662410739890978 0.1205243356458564 -3.14513905962739e-017 -0.3920986477502967 0.9199231763752823 -3.14513905962739e-017 -0.3920986477502967 0.9199231763752823 3.14513905962739e-017 0.3920986477502967 -0.9199231763752823 3.14513905962739e-017 0.3920986477502967 -0.9199231763752823 0.4937060730407563 -0.8168181655729783 -0.2984332384850423 0.0009918824747248147 -0.9489850171414499 -0.3153196051789331 -6.163859535989389e-018 -0.9503574393807658 -0.3111603082233241 6.163859535989389e-018 0.9503574393807658 0.3111603082233241 -0.0009918824747248147 0.9489850171414499 0.3153196051789331 -0.4937060730407563 0.8168181655729783 0.2984332384850423 0.478545962683365 -0.8250059356649211 -0.3005976841512581 -0.478545962683365 0.8250059356649211 0.3005976841512581</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID1278\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1276\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1274\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1275\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"56\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1276\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 15 2 3 16 17 18 19 20 21 22 23 1 24 6 7 25 4 10 9 26 27 12 11 8 28 9 12 29 13 30 31 32 33 34 35 36 19 18 23 22 37 18 20 38 39 21 23 40 41 20 21 42 43 10 26 40 43 27 11 28 44 9 12 45 29 46 30 47 48 35 49 50 51 18 23 52 53 41 38 20 21 39 42 40 26 41 42 27 43 28 54 44 45 55 29 56 57 58 59 60 61 62 30 46 49 35 63 54 64 44 45 65 55 66 56 67 68 61 69 70 71 46 49 72 73 74 75 76 77 78 79 74 56 66 69 61 79 80 75 74 79 78 81 80 74 66 69 79 81</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1279\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1280\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1284\">-0.04600401967763901 0.08707708120346069 -0.01083299890160561 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04600401967763901 0.08707708120346069 -0.01083299890160561 -0.0460008941590786 -0.02191586047410965 -0.01119139418005943 -0.0460008941590786 -0.02191586047410965 -0.01119139418005943 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.04103969037532806 0.08707645535469055 -0.01081464067101479 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 0.04103180021047592 -0.02191830426454544 -0.01120293512940407 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 0.04103180021047592 -0.02191830426454544 -0.01120293512940407 -0.03807717561721802 0.08011185377836227 -0.004252579063177109 -0.03807717561721802 0.08011185377836227 -0.004252579063177109 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.03397076576948166 0.08009880036115646 -0.004249315708875656 0.03397076576948166 0.08009880036115646 -0.004249315708875656 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.03397389501333237 -0.01386075466871262 -0.004252579063177109 0.03397389501333237 -0.01386075466871262 -0.004252579063177109 -0.03824574872851372 -0.01380164921283722 -0.004176754504442215 -0.03824574872851372 -0.01380164921283722 -0.004176754504442215 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.04096663743257523 -0.02193134278059006 -0.01722836121916771</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1284\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1281\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1285\">-0.6486441876550205 0.6402461338216394 0.4115162280491523 -0.999996480949607 -2.046947438069042e-005 -0.002652860607489197 -0.9999970690292698 -3.40381449223314e-005 -0.002420903607070828 0.9999970690292698 3.40381449223314e-005 0.002420903607070828 0.999996480949607 2.046947438069042e-005 0.002652860607489197 0.6486441876550205 -0.6402461338216394 -0.4115162280491523 -0.6446719316482925 -0.644822687491583 0.4106114979405608 0.6446719316482925 0.644822687491583 -0.4106114979405608 7.611822237619043e-006 0.9999890564764319 0.004678340457441075 0.6505553393427764 0.6452539138369123 0.4005310688707574 -0.6505553393427764 -0.6452539138369123 -0.4005310688707574 -7.611822237619043e-006 -0.9999890564764319 -0.004678340457441075 0.646379155313016 -0.6486622084704848 0.4017851750363935 -2.514981772618891e-005 -0.9999956140211347 0.002961639069878762 2.514981772618891e-005 0.9999956140211347 -0.002961639069878762 -0.646379155313016 0.6486622084704848 -0.4017851750363935 -0.2617607029099485 0.2921712109796223 0.9198463555870572 0.2617607029099485 -0.2921712109796223 -0.9198463555870572 3.539189288607463e-005 0.9999906878303608 0.004315437402608491 -3.539189288607463e-005 -0.9999906878303608 -0.004315437402608491 0.2865456530664451 0.2878643484044356 0.9137974095095774 -0.2865456530664451 -0.2878643484044356 -0.9137974095095774 2.99402056733925e-005 -0.9999976589943478 0.002163587162167933 -2.99402056733925e-005 0.9999976589943478 -0.002163587162167933 0.3011043870364404 -0.2680404608962498 0.9151450483010523 -0.3011043870364404 0.2680404608962498 -0.9151450483010523 -0.2822290812437018 -0.2697570257358308 0.9206399365476681 0.2822290812437018 0.2697570257358308 -0.9206399365476681 0.9999419530695684 -3.618336592114948e-005 -0.01077446899763445 0.9999520259284223 -9.383437398849214e-005 -0.009794745364441736 -0.9999520259284223 9.383437398849214e-005 0.009794745364441736 -0.9999419530695684 3.618336592114948e-005 0.01077446899763445</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1285\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1283\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID1286\">-0.8707864704909432 -0.08434327720870816 0.2193234052329562 -0.1345068892009654 -0.8710984953321045 -0.1366050456523515 0.219149440263566 -0.08707526051738947 0.2193298965176322 -0.1344195170941046 -0.8707799769185171 -0.08425587433581898 0.460045595066703 -0.08843597314605903 0.4598847762189375 -0.1406981648935765 -0.41039150548504 -0.08829155347246408 0.4103240692412902 -0.08864631410412539 -0.4598426450664129 -0.1358998265072047 -0.460002874797282 -0.08855552489452194 0.2173279417038078 -0.3349111044485853 -0.8725929847974866 -0.3305062472124367 -0.8026261008891247 -0.2496295959706924 0.4599102052639029 -0.140437032640179 -0.4097160864162608 -0.1402346022057112 -0.4103660852034731 -0.08803051127773137 -0.3398813958454692 -0.4817281392132452 0.4598513028877966 -0.5572988052567657 -0.4105857758064011 -0.5570880807014496 0.4096598078376315 -0.1359027548422077 -0.4598552837208138 -0.1357560359272202 0.410311439520114 -0.0885026253266744 -0.4600364788878897 -0.1880195805409327 0.3397215291036052 -0.1044438552799327 0.4102904548644768 -0.188158587445632 0.139042925418609 -0.244706074045336 0.220392977764265 -0.3268400886053832 -0.8000932453864994 -0.2455938994646215 0.3808784947774433 -0.4810168158123215 0.4601562152297449 -0.556389830578105 -0.3396009300866689 -0.4809794369128 -0.2192749842084334 -0.1323665538265052 0.870803060896964 -0.08190953177439291 0.8710894002196447 -0.1341156409114885 -0.2175838531507747 -0.2966763144834158 0.8023045473003625 -0.2164605455912662 0.8723557892252097 -0.292197015768231 -0.219299554992477 -0.1320367727938727 -0.2191691477657872 -0.08463398247406859 0.8707784504735122 -0.08157922078266909 -0.1386068791570084 -0.2139009042944786 0.8009886710783843 -0.2138643169869433 -0.2191822364392242 -0.2918252702643436 -0.4600956096947584 -0.1878844921633072 -0.3825120598021665 -0.1035254300397508 0.3396840872636271 -0.1044373070507742 0.1231824674503541 0.3047815613493842 0.8674396054230038 -0.1457932893168431 -0.3167144351205317 -0.145793289316843 -0.3807736822210102 0.6302120878700486 0.3397057323850419 0.6301094009879676 0.3397370233452011 -0.1090390990261831</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID1286\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1282\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1280\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1281\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1282\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1283\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 1 4 0 5 0 6 8 7 9 8 12 9 13 10 6 11 6 12 0 13 16 14 8 15 18 16 9 17 20 18 0 19 9 20 22 21 13 22 12 23 6 24 24 25 12 26 26 27 6 28 16 29 16 30 0 31 20 32 28 33 9 34 29 35 12 36 20 37 9 38 28 39 12 40 9 41 24 42 20 43 12 44 6 45 26 46 24 47 26 48 16 49 24 50 16 51 20 52 24 53</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"18\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1282\" />\r\n\t\t\t\t\t<p>3 4 5 5 4 7 10 11 5 7 14 15 17 5 7 10 19 11 10 5 21 15 14 23 15 25 7 17 7 27 21 5 17 30 10 31 10 21 15 10 15 31 15 21 25 25 27 7 25 17 27 25 21 17</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1287\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1288\">\r\n\t\t\t\t\t<float_array count=\"270\" id=\"ID1292\">0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03052753955125809 0.03227363899350166 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.007473953068256378 0.03052753955125809 0.03227363899350166 0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.004581844434142113 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03819084912538528 -0.00840609148144722 -0.002400107681751251 0.03819084912538528 -0.00840609148144722 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.004581844434142113 0.03738900274038315 0.03356627002358437 0.004581844434142113 0.03738900274038315 0.03356627002358437 0.004581844434142113 0.0236658900976181 0.03098114207386971 0.004581844434142113 0.0236658900976181 0.03098114207386971 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.007473953068256378 0.0236976221203804 0.06852835416793823 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.004581844434142113 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 0.004581844434142113 0.03055736422538757 0.06982077658176422 0.004581844434142113 0.03055736422538757 0.06982077658176422 -0.002400107681751251 0.04023017734289169 0.03410175070166588 -0.002400107681751251 0.04023017734289169 0.03410175070166588 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.002400107681751251 0.0208236575126648 0.03044562414288521 -0.002400107681751251 0.0208236575126648 0.03044562414288521 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.002400107681751251 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.03055736422538757 0.06982077658176422 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.03055736422538757 0.06982077658176422 -0.002400107681751251 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.03738900274038315 0.03356627002358437 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.009382165037095547 0.03738900274038315 0.03356627002358437 -0.009382165037095547 0.0236658900976181 0.03098114207386971 -0.009382165037095547 0.0236658900976181 0.03098114207386971 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.01227427553385496 0.03052753955125809 0.03227363899350166 -0.01227427553385496 0.03052753955125809 0.03227363899350166 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.01227427553385496 0.0236976221203804 0.06852835416793823</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"90\" source=\"#ID1292\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1289\">\r\n\t\t\t\t\t<float_array count=\"270\" id=\"ID1293\">0.9999999999843209 5.59463077948367e-006 -2.416152423186181e-007 0.9999999999777997 6.557605099620334e-006 -1.182487493608621e-006 0.7071262376961327 0.6948662526521028 0.1308945181699234 -0.7071262376961327 -0.6948662526521028 -0.1308945181699234 -0.9999999999777997 -6.557605099620334e-006 1.182487493608621e-006 -0.9999999999843209 -5.59463077948367e-006 2.416152423186181e-007 1.092972036851802e-005 0.1851295783395137 -0.9827141187061349 2.740400571134737e-011 0.1851357863769715 -0.9827129492392885 0 0.185136694083701 -0.9827127782336801 -0 -0.185136694083701 0.9827127782336801 -2.740400571134737e-011 -0.1851357863769715 0.9827129492392885 -1.092972036851802e-005 -0.1851295783395137 0.9827141187061349 0.7070687980160841 0.6949183363800148 0.1309283034142069 -0.7070687980160841 -0.6949183363800148 -0.1309283034142069 0.7071193471183617 -0.6948704469520933 -0.1309094759117928 -0.7071193471183617 0.6948704469520933 0.1309094759117928 1.152910625477662e-010 0.1851188374083177 -0.9827161421471579 -1.152910625477662e-010 -0.1851188374083177 0.9827161421471579 9.082784110290093e-006 0.1851419944086071 -0.9827117796301753 -9.082784110290093e-006 -0.1851419944086071 0.9827117796301753 0.9999999981982459 5.683518537357934e-005 1.932019074476484e-005 -0.9999999981982459 -5.683518537357934e-005 -1.932019074476484e-005 -7.322717337165324e-006 0.9827132657669674 0.1851341060744877 7.322717337165324e-006 -0.9827132657669674 -0.1851341060744877 0.7071207355928849 -0.6948684197189324 -0.1309127364769786 -0.7071207355928849 0.6948684197189324 0.1309127364769786 0.7070877969633483 -0.6949008947275105 -0.1309182718050604 -0.7070877969633483 0.6949008947275105 0.1309182718050604 -1.092945993357549e-005 0.1851295784335574 -0.9827141186884213 1.092945993357549e-005 -0.1851295784335574 0.9827141186884213 9.582577601239217e-011 0.1851509204028663 -0.9827100979810738 -9.582577601239217e-011 -0.1851509204028663 0.9827100979810738 0.707133719216717 0.6948560980324883 0.1309080065305341 -0.707133719216717 -0.6948560980324883 -0.1309080065305341 6.699664853351547e-006 0.9827125128654742 0.1851381025416967 -6.699664853351547e-006 -0.9827125128654742 -0.1851381025416967 3.679930986933653e-006 -0.9827113486993524 -0.185144281909969 -3.679930986933653e-006 0.9827113486993524 0.185144281909969 9.809428192896419e-007 -0.982711713156937 -0.1851423474605306 -9.809428192896419e-007 0.982711713156937 0.1851423474605306 2.07520584667854e-018 0.1851366940837009 -0.9827127782336801 -2.07520584667854e-018 -0.1851366940837009 0.9827127782336801 -0.7071163400283342 0.6948735133440726 0.1309094424317747 0.7071163400283342 -0.6948735133440726 -0.1309094424317747 -1.718584229658197e-006 -0.9827120775996558 -0.1851404130297176 1.718584229658197e-006 0.9827120775996558 0.1851404130297176 -9.08256768208233e-006 0.1851419943304572 -0.9827117796449008 9.08256768208233e-006 -0.1851419943304572 0.9827117796449008 -2.079226534932906e-011 -0.185132285854762 0.9827136087050951 -1.544303238000122e-005 -0.1851341913731198 0.9827132496034303 -2.077496026233396e-018 -0.1851400068869456 0.9827121541173194 2.077496026233396e-018 0.1851400068869456 -0.9827121541173194 1.544303238000122e-005 0.1851341913731198 -0.9827132496034303 2.079226534932906e-011 0.185132285854762 -0.9827136087050951 4.149734441407028e-018 -0.1851306440014455 0.9827139180105317 -4.149734441407028e-018 0.1851306440014455 -0.9827139180105317 5.306861256704692e-007 -0.1851301225601347 0.9827140162430716 5.306861256704692e-007 -0.1851301225601347 0.9827140162430716 -5.306861256704692e-007 0.1851301225601347 -0.9827140162430716 -5.306861256704692e-007 0.1851301225601347 -0.9827140162430716 -0.7070712434321569 0.6949188944884924 0.1309121338692294 -0.999999999992516 3.673648708004297e-006 -1.21340366347125e-006 0.999999999992516 -3.673648708004297e-006 1.21340366347125e-006 0.7070712434321569 -0.6949188944884924 -0.1309121338692294 -0.7071171656275636 -0.6948719811382966 -0.1309131158584951 0.7071171656275636 0.6948719811382966 0.1309131158584951 -0.7070833248779243 -0.6949067594280631 -0.1309112958486298 0.7070833248779243 0.6949067594280631 0.1309112958486298 -1.628881000492389e-010 -0.1851190103732217 0.9827161095649339 1.628881000492389e-010 0.1851190103732217 -0.9827161095649339 2.072275978801209e-005 0.9827117597734726 0.1851420988686585 -2.072275978801209e-005 -0.9827117597734726 -0.1851420988686585 -5.306781267168944e-007 -0.1851301225601347 0.9827140162430716 -5.306781267168944e-007 -0.1851301225601347 0.9827140162430716 5.306781267168944e-007 0.1851301225601347 -0.9827140162430716 5.306781267168944e-007 0.1851301225601347 -0.9827140162430716 -0.7071208444863583 -0.6948680619418981 -0.1309140473211718 0.7071208444863583 0.6948680619418981 0.1309140473211718 -0.9999999999686882 6.26256998439923e-006 4.837770999284142e-006 0.9999999999686882 -6.26256998439923e-006 -4.837770999284142e-006 1.544266439301172e-005 -0.185134191506031 0.9827132495783969 -1.544266439301172e-005 0.185134191506031 -0.9827132495783969 0 -0.1851306440014456 0.9827139180105317 2.076191813833597e-018 -0.1851400068869453 0.9827121541173194 -2.076191813833597e-018 0.1851400068869453 -0.9827121541173194 -0 0.1851306440014456 -0.9827139180105317 -0.7071485051525848 0.6948381123294621 0.1309236010614372 0.7071485051525848 -0.6948381123294621 -0.1309236010614372 -0.999999998002033 6.258929378344746e-005 8.860817899594689e-006 0.999999998002033 -6.258929378344746e-005 -8.860817899594689e-006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"90\" source=\"#ID1293\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1291\">\r\n\t\t\t\t\t<float_array count=\"288\" id=\"ID1294\">0.6510872705125546 -0.1556902917672408 0.5091323331628461 0.4859498357783174 0.7999895375563727 -0.1353021326776318 -0.09163688868284226 0.6758417122097311 0.04800215363502502 0.5659956989651277 -0.1494790613651276 0.5659956989651277 0.5091398819643883 0.4859528635768757 0.6580499782604877 0.5063414818440127 0.7999982320181107 -0.1352987729461431 0.4729394207015694 0.4809972847452069 0.6218529516300301 0.5013837912807035 0.7638095683241661 -0.1402561063415956 0.04811526319480644 0.7213531073913666 0.04809234652788788 0.5659965854206529 -0.09153049147923925 0.6758553449678909 0.04800215363502502 0.565997478692822 -0.09163688868284226 0.4561468467564381 -0.1494790613651276 0.565997478692822 0.5091402582228589 0.485950990043552 0.3826219470117034 1.057795420483731 0.658050352644889 0.506339616781079 0.4163477624840881 -0.2182112697822676 0.2655901037478704 -0.2267597005850756 0.2060534626632536 0.4228385905839157 0.4729395515342789 0.4809964563939979 0.3464105655850779 1.052837079788438 0.621853079895568 0.5013829745340264 0.6148997267801072 -0.1606454691514448 0.4729381179354542 0.4809963655769018 0.763807486615806 -0.1402572512020607 0.04788904511082719 0.7213618711601205 0.1875369044727172 0.6758641087366354 0.04791196143232645 0.5660053491893753 0.04807709459996988 0.5659894528942754 0.0480580547087076 0.4106440228522598 -0.09157541091939606 0.4561494129102339 0.3825954800209273 1.057783002296572 0.5314738466463114 1.078168385901833 0.6580197401679548 0.5063259172927894 0.3464117597140501 1.052838829051515 0.4953354491949941 1.07322932668225 0.6218556839459112 0.5013851596091921 0.4161977624350172 -0.2182497707848508 0.2059276593544127 0.4228050014573921 0.3566741815061503 0.4313559367715039 0.2682872546432723 0.4263529644979455 0.06447197816393442 0.9967390040575556 0.215225639192149 1.005288852695318 0.3278292532561891 -0.2232425473342045 0.1175387683668979 0.417807654733203 0.2682932696752419 0.4263591477695988 0.1876433007419109 0.6758417122097311 0.2454855106770992 0.5659956989651277 0.04800215363502501 0.5659956989651277 -0.1771212857929688 -0.2317991959130784 -0.3278808897344198 -0.223250717587511 -0.2683332221435008 0.4263536238589009 0.3277879802678649 -0.2232535352137678 0.1770382567541186 -0.2318049380274199 0.1175081133203516 0.4177988223024968 0.04792721333757736 0.5659967346302373 0.1875818234430332 0.4561566946461803 0.04794625294185437 0.4106513045881997 -0.04800215363502504 0.5660205297415833 0.09163688868284223 0.6758459780352492 0.1494790613651275 0.5660205297415833 0.3566755498470675 0.4313391620893886 0.205929031215576 0.4227881883703239 0.1528723625255549 1.001728466640204 0.09163688868284226 0.4561372364875994 -0.04800215363502502 0.5660016543558335 0.1494790613651276 0.5660016543558335 -0.04800135138284162 0.4106342368739969 -0.0480007950229394 0.5660012351480476 0.09163785387650254 0.4561365078338856 0.268293561735544 0.4263552504214559 0.1175390617829038 0.417803742594852 0.06447633242992115 0.9967408581486913 0.2454855106770992 0.5659974786928219 0.1876433007419109 0.4561468467564381 0.04800215363502505 0.5659974786928219 -0.6218441919080547 0.501383848524292 -0.6148889278733198 -0.1606447289196409 -0.7637912106097812 -0.140256575350682 -0.1174492761242781 0.417809338909525 -0.1769603112941838 -0.2317904042619489 -0.2681977522331389 0.4263602278180171 -0.2060029524054107 0.4228198476894341 -0.2655432373483784 -0.2267833374526798 -0.3567594013726532 0.4313713619072311 -0.2655036338905208 -0.226783065550902 -0.4162553089038189 -0.218231682781948 -0.3567309898836858 0.431370673836562 -0.04808123348330946 0.5659837339676254 -0.04811361390934024 0.7213334608495877 0.09153491548227659 0.6758271926694005 0.3568779477726087 0.4314031715482364 0.1530400304974734 1.001784796028239 0.3038042615818714 1.010334821786139 -0.04800295587472177 0.4106340241257506 -0.1876442659206286 0.4561362950856394 -0.04800351222623805 0.5660010223998012 -0.1529369738513216 1.001757681771448 -0.2059970122914718 0.4228204135917049 -0.3036925848774558 1.010307526190229 -0.6580482066325464 0.5063387778905422 -0.6510962043071398 -0.1556894494846782 -0.8000039794399367 -0.1353012352707589 -0.6218541365516803 0.5013845337171072 -0.4729440270315344 0.4809959098166953 -0.6149001735083197 -0.1606440521845235 -0.1174492839826364 0.4178092431173398 -0.2681977600723241 0.4263601322350106 -0.2151605257598007 1.005293849772534 -0.2060029338035077 0.4228201003191478 -0.3567593828654816 0.4313716135034493 -0.3036964347252453 1.010307426110565 -0.6580482484236974 0.5063393173290812 -0.5091347038764172 0.4859528069456206 -0.6510971306454888 -0.1556889157940269 -0.04792307364234808 0.5659961173990309 -0.1875413277420207 0.6758395761008507 -0.04789069370438232 0.7213458442810562 -0.1876433007419109 0.4561372364875994 -0.2454855106770992 0.5660016543558336 -0.04800215363502502 0.5660016543558336 -0.4953053611168168 1.073218739524393 -0.4729455980262873 0.4809882274780117 -0.6218557012413173 0.5013768798761702 -0.06457727243628572 0.9967267806838426 -0.117669046741589 0.4177884940441474 -0.2153434451407594 1.005276892152473 -0.3826043543167069 1.057794075527375 -0.5091348448501433 0.4859536581559255 -0.5315280563267647 1.078184581926353 -0.5315295409942268 1.078183713276601 -0.5091347033733921 0.4859528275585371 -0.6580482481193694 0.5063393370438158 -0.2454855106770992 0.5660205297415832 -0.1876433007419109 0.675845978035249 -0.04800215363502502 0.5660205297415832 -0.3463907463326202 1.052831956001588 -0.4729045888168348 0.4809869137284013 -0.4952691330856551 1.073217314052622</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"144\" source=\"#ID1294\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1290\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1288\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1289\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1290\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1291\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 7 4 8 5 1 6 12 7 2 8 14 9 1 10 0 11 16 12 7 13 6 14 7 15 18 16 8 17 1 18 20 19 12 20 22 21 2 22 12 23 14 24 24 25 1 26 26 27 14 28 0 29 16 30 28 31 7 32 7 33 30 34 18 35 20 36 32 37 12 38 24 39 20 40 1 41 22 42 12 43 34 44 14 45 36 46 24 47 26 48 38 49 14 50 28 51 40 52 7 53 42 54 22 55 34 56 26 57 44 58 38 59 7 60 46 61 30 62 48 63 49 64 50 65 34 66 12 67 32 68 54 69 48 70 50 71 56 72 48 73 57 74 14 75 38 76 36 77 40 78 46 79 7 80 60 81 61 82 42 83 60 84 42 85 34 86 38 87 44 88 64 89 44 90 66 91 64 92 48 93 68 94 49 95 34 96 32 97 70 98 72 99 73 100 48 101 36 102 38 103 76 104 78 105 66 106 61 107 60 108 78 109 61 110 60 111 34 112 70 113 38 114 64 115 76 116 78 117 64 118 66 119 48 120 80 121 68 122 82 123 83 124 48 125 86 126 78 127 60 128 86 129 60 130 70 131 76 132 64 133 88 134 88 135 64 136 78 137 83 138 80 139 48 140 88 141 78 142 86 143</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1290\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 3 13 4 5 4 15 11 10 17 9 19 10 13 21 4 13 3 23 4 25 15 5 15 27 10 29 17 19 31 10 13 33 21 4 21 25 35 13 23 25 37 15 15 39 27 10 41 29 35 23 43 39 45 27 31 47 10 51 52 53 33 13 35 51 53 55 58 53 59 37 39 15 10 47 41 43 62 63 35 43 63 65 45 39 65 67 45 52 69 53 71 33 35 53 74 75 77 39 37 62 67 79 62 79 63 71 35 63 77 65 39 67 65 79 69 81 53 53 84 85 63 79 87 71 63 87 89 65 77 79 65 89 53 81 84 87 79 89</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1295\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1296\">\r\n\t\t\t\t\t<float_array count=\"396\" id=\"ID1300\">0.00151330791413784 0.02864761650562286 0.06481364369392395 0.003007436171174049 0.02510105818510056 0.0641457736492157 0.0124336164444685 0.02437891811132431 0.06798277795314789 0.0124336164444685 0.02437891811132431 0.06798277795314789 0.003007436171174049 0.02510105818510056 0.0641457736492157 0.00151330791413784 0.02864761650562286 0.06481364369392395 -0.002093736082315445 0.02519572526216507 0.06365212798118591 -0.002093736082315445 0.02519572526216507 0.06365212798118591 0.008178489282727242 0.03447502106428146 0.06988455355167389 0.008178489282727242 0.03447502106428146 0.06988455355167389 0.008178489282727242 0.01428460329771042 0.0660809725522995 0.008178489282727242 0.01428460329771042 0.0660809725522995 -0.002093736082315445 0.03011453151702881 0.06509023904800415 -0.002093736082315445 0.03011453151702881 0.06509023904800415 0.00151330791413784 0.02155684679746628 0.06347811222076416 0.00151330791413784 0.02155684679746628 0.06347811222076416 0.01964792050421238 0.02304359525442123 0.07507239282131195 0.01964792050421238 0.02304359525442123 0.07507239282131195 0.0132798757404089 0.007935501635074616 0.0722261369228363 0.0132798757404089 0.007935501635074616 0.0722261369228363 -0.005700994282960892 0.02864761650562286 0.06481364369392395 -0.005700994282960892 0.02864761650562286 0.06481364369392395 -0.002093736082315445 0.02008949965238571 0.06320127844810486 -0.002093736082315445 0.02008949965238571 0.06320127844810486 0.0132798757404089 0.03815094381570816 0.07791852951049805 0.0132798757404089 0.03815094381570816 0.07791852951049805 -0.002093736082315445 0.03865481913089752 0.07067219913005829 -0.002093736082315445 0.03865481913089752 0.07067219913005829 -0.002093736082315445 0.001676708459854126 0.07104742527008057 -0.002093736082315445 0.001676708459854126 0.07104742527008057 -0.002093736082315445 0.01010248810052872 0.06529328227043152 -0.002093736082315445 0.01010248810052872 0.06529328227043152 -0.007195173762738705 0.02510105818510056 0.0641457736492157 -0.007195173762738705 0.02510105818510056 0.0641457736492157 -0.005700994282960892 0.02155684679746628 0.06347811222076416 -0.005700994282960892 0.02155684679746628 0.06347811222076416 0.02355220727622509 0.02117396146059036 0.08431173861026764 0.02355220727622509 0.02117396146059036 0.08431173861026764 0.01604082249104977 0.007562488317489624 0.08174745738506317 0.01604082249104977 0.007562488317489624 0.08174745738506317 -0.002093736082315445 0.001921959221363068 0.08068540692329407 -0.002093736082315445 0.001921959221363068 0.08068540692329407 -0.01236628275364637 0.03447502106428146 0.06988455355167389 -0.01236628275364637 0.03447502106428146 0.06988455355167389 -0.01236628275364637 0.01428460329771042 0.0660809725522995 -0.01236628275364637 0.01428460329771042 0.0660809725522995 0.01604076288640499 0.03478480130434036 0.0868762880563736 0.01604076288640499 0.03478480130434036 0.0868762880563736 -0.002093736082315445 0.04440972954034805 0.07909753918647766 -0.002093736082315445 0.04440972954034805 0.07909753918647766 -0.020228561013937 0.007562488317489624 0.08174745738506317 -0.020228561013937 0.007562488317489624 0.08174745738506317 -0.01746771670877934 0.007935501635074616 0.0722261369228363 -0.01746771670877934 0.007935501635074616 0.0722261369228363 -0.01662124134600163 0.02437891811132431 0.06798277795314789 -0.01662124134600163 0.02437891811132431 0.06798277795314789 0.02355220727622509 0.01847297698259354 0.0950017124414444 0.02355220727622509 0.01847297698259354 0.0950017124414444 0.01604082249104977 0.0006505176424980164 0.09164398908615112 0.01604082249104977 0.0006505176424980164 0.09164398908615112 -0.002093736082315445 -0.006729543209075928 0.0902535617351532 -0.002093736082315445 -0.006729543209075928 0.0902535617351532 -0.020228561013937 0.0006505176424980164 0.09164398908615112 -0.020228561013937 0.0006505176424980164 0.09164398908615112 -0.01746771670877934 0.03815094381570816 0.07791852951049805 -0.01746771670877934 0.03815094381570816 0.07791852951049805 -0.02383571118116379 0.02304359525442123 0.07507239282131195 -0.02383571118116379 0.02304359525442123 0.07507239282131195 0.01604076288640499 0.03629373759031296 0.0983588844537735 0.01604076288640499 0.03629373759031296 0.0983588844537735 -0.002093736082315445 0.04042350500822067 0.08793878555297852 -0.002093736082315445 0.04042350500822067 0.08793878555297852 -0.02773984149098396 0.01847297698259354 0.0950017124414444 -0.02773984149098396 0.01847297698259354 0.0950017124414444 -0.02773984149098396 0.02117396146059036 0.08431173861026764 -0.02773984149098396 0.02117396146059036 0.08431173861026764 0.01964792050421238 0.01672781258821487 0.1042646914720535 0.01964792050421238 0.01672781258821487 0.1042646914720535 0.0132798757404089 0.001620359718799591 0.1014187186956406 0.0132798757404089 0.001620359718799591 0.1014187186956406 -0.002093736082315445 -0.004638850688934326 0.1002393662929535 -0.002093736082315445 -0.004638850688934326 0.1002393662929535 -0.01746771670877934 0.001620359718799591 0.1014187186956406 -0.01746771670877934 0.001620359718799591 0.1014187186956406 -0.02383571118116379 0.01672781258821487 0.1042646914720535 -0.02383571118116379 0.01672781258821487 0.1042646914720535 -0.020228561013937 0.03478480130434036 0.0868762880563736 -0.020228561013937 0.03478480130434036 0.0868762880563736 0.0132798757404089 0.03183591365814209 0.1071109622716904 0.0132798757404089 0.03183591365814209 0.1071109622716904 -0.002093736082315445 0.04367602616548538 0.0997496098279953 -0.002093736082315445 0.04367602616548538 0.0997496098279953 -0.01746771670877934 0.03183591365814209 0.1071109622716904 -0.01746771670877934 0.03183591365814209 0.1071109622716904 -0.020228561013937 0.03629373759031296 0.0983588844537735 -0.020228561013937 0.03629373759031296 0.0983588844537735 0.0124336164444685 0.01539282500743866 0.1113545000553131 0.0124336164444685 0.01539282500743866 0.1113545000553131 0.008178489282727242 0.005297861993312836 0.1094527095556259 0.008178489282727242 0.005297861993312836 0.1094527095556259 -0.002093736082315445 0.001115962862968445 0.108664870262146 -0.002093736082315445 0.001115962862968445 0.108664870262146 -0.01236628275364637 0.005297861993312836 0.1094527095556259 -0.01236628275364637 0.005297861993312836 0.1094527095556259 -0.01662124134600163 0.01539282500743866 0.1113545000553131 -0.01662124134600163 0.01539282500743866 0.1113545000553131 -0.01236628275364637 0.02548617869615555 0.113256186246872 -0.01236628275364637 0.02548617869615555 0.113256186246872 0.008178489282727242 0.02548617869615555 0.113256186246872 0.008178489282727242 0.02548617869615555 0.113256186246872 -0.002093736082315445 0.03809449821710587 0.1082897335290909 -0.002093736082315445 0.03809449821710587 0.1082897335290909 -0.002093736082315445 0.02966859936714172 0.1140438467264175 -0.002093736082315445 0.02966859936714172 0.1140438467264175 0.003007436171174049 0.0146685466170311 0.1151914745569229 0.003007436171174049 0.0146685466170311 0.1151914745569229 0.00151330791413784 0.01112633943557739 0.114523395895958 0.00151330791413784 0.01112633943557739 0.114523395895958 -0.002093736082315445 0.009656563401222229 0.1142469793558121 -0.002093736082315445 0.009656563401222229 0.1142469793558121 -0.005700994282960892 0.01112633943557739 0.114523395895958 -0.005700994282960892 0.01112633943557739 0.114523395895958 -0.007195173762738705 0.0146685466170311 0.1151914745569229 -0.007195173762738705 0.0146685466170311 0.1151914745569229 -0.005700994282960892 0.01821445673704147 0.1158591508865356 -0.005700994282960892 0.01821445673704147 0.1158591508865356 -0.002093736082315445 0.01968275755643845 0.116135448217392 -0.002093736082315445 0.01968275755643845 0.116135448217392 0.00151330791413784 0.01821445673704147 0.1158591508865356 0.00151330791413784 0.01821445673704147 0.1158591508865356 -0.002093736082315445 0.01457632333040237 0.1156851947307587 -0.002093736082315445 0.01457632333040237 0.1156851947307587</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"132\" source=\"#ID1300\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1297\">\r\n\t\t\t\t\t<float_array count=\"396\" id=\"ID1301\">0.1956903806374744 0.3702693627518756 -0.9080781210519722 0.2767978448031712 0.1778221379204244 -0.9443316368616107 0.5872577302173264 0.1498232412232817 -0.7954126945739199 -0.5872577302173264 -0.1498232412232817 0.7954126945739199 -0.2767978448031712 -0.1778221379204244 0.9443316368616107 -0.1956903806374744 -0.3702693627518756 0.9080781210519722 2.4069769204625e-006 0.1851429709867631 -0.982711595682274 -2.4069769204625e-006 -0.1851429709867631 0.982711595682274 0.41523124678526 0.5579861698652578 -0.7184945691738096 -0.41523124678526 -0.5579861698652578 0.7184945691738096 0.4152520124328477 -0.2582140384559897 -0.8722908210652679 -0.4152520124328477 0.2582140384559897 0.8722908210652679 3.092309193832321e-005 0.4499216971921687 -0.8930680071749748 -3.092309193832321e-005 -0.4499216971921687 0.8930680071749748 0.195734922284424 -0.01445646791097698 -0.980550279554215 -0.195734922284424 0.01445646791097698 0.980550279554215 0.8528754350002218 0.07814618017484649 -0.5162331516836778 -0.8528754350002218 -0.07814618017484649 0.5162331516836778 0.6090890771932528 -0.620433230571093 -0.4940375516567427 -0.6090890771932528 0.620433230571093 0.4940375516567427 -0.1957192350159142 0.370234229083485 -0.9080862275465601 0.1957192350159142 -0.370234229083485 0.9080862275465601 2.257090650783234e-006 -0.0940749441470593 -0.9955651183516993 -2.257090650783234e-006 0.0940749441470593 0.9955651183516993 0.606843164777356 0.753827945089025 -0.2519619069737745 -0.606843164777356 -0.753827945089025 0.2519619069737745 4.52876460394671e-005 0.7269386552422567 -0.6867024024012211 -4.52876460394671e-005 -0.7269386552422567 0.6867024024012211 0.01668560911036096 -0.897510430114174 -0.4406774537968637 -0.01668560911036096 0.897510430114174 0.4406774537968637 7.089180052383154e-006 -0.4272513667247607 -0.9041328827011919 -7.089180052383154e-006 0.4272513667247607 0.9041328827011919 -0.2768174520306065 0.1778350597500305 -0.9443234561181808 0.2768174520306065 -0.1778350597500305 0.9443234561181808 -0.1957398696738184 -0.0144574372588037 -0.9805492776643019 0.1957398696738184 0.0144574372588037 0.9805492776643019 0.9825994497321882 0.04768106420081351 -0.1795127781041752 -0.9825994497321882 -0.04768106420081351 0.1795127781041752 0.6916137433321561 -0.6245883168010983 -0.3627118202508069 -0.6916137433321561 0.6245883168010983 0.3627118202508069 -8.052169911274337e-006 -0.9324818027209991 -0.3612169535464225 8.052169911274337e-006 0.9324818027209991 0.3612169535464225 -0.4152638558557382 0.5579383902303894 -0.7185128271137172 0.4152638558557382 -0.5579383902303894 0.7185128271137172 -0.4152548156556983 -0.2582057259968227 -0.8722919471926848 0.4152548156556983 0.2582057259968227 0.8722919471926848 0.7021791044699796 0.7119894581709351 0.003939124166071239 -0.7021791044699796 -0.7119894581709351 -0.003939124166071239 -0.01649914634204176 0.9972916561361611 -0.07167378022106048 0.01649914634204176 -0.9972916561361611 0.07167378022106048 -0.7034998926438633 -0.6446120515784689 -0.2992711212427118 0.7034998926438633 0.6446120515784689 0.2992711212427118 -0.6053376996549881 -0.6041444851763438 -0.5182429067603512 0.6053376996549881 0.6041444851763438 0.5182429067603512 -0.5872558020230481 0.1498361060737085 -0.7954116948517509 0.5872558020230481 -0.1498361060737085 0.7954116948517509 0.9849598354450867 -0.02379272750458698 0.1711374555083724 -0.9849598354450867 0.02379272750458698 -0.1711374555083724 0.6738930300558093 -0.7322553035040448 -0.09833796079032518 -0.6738930300558093 0.7322553035040448 0.09833796079032518 -0.01089455672182331 -0.9695025713242476 -0.2448388711571495 0.01089455672182331 0.9695025713242476 0.2448388711571495 -0.6732345283280943 -0.7291622953401415 -0.1227909480423722 0.6732345283280943 0.7291622953401415 0.1227909480423722 -0.6102173515399514 0.7601218285598231 -0.2232702166130507 0.6102173515399514 -0.7601218285598231 0.2232702166130507 -0.8531517942983409 0.1190310212392098 -0.5079012028616121 0.8531517942983409 -0.1190310212392098 0.5079012028616121 0.6768015028084661 0.7109748341810475 0.1909306443644764 -0.6768015028084661 -0.7109748341810475 -0.1909306443644764 0.0002619427007181099 0.9976283903600751 0.068829689332344 -0.0002619427007181099 -0.9976283903600751 -0.068829689332344 -0.9851563358757249 -0.05627531599207819 0.1621730023583073 0.9851563358757249 0.05627531599207819 -0.1621730023583073 -0.9822286559208107 0.03686212846388164 -0.184032744295982 0.9822286559208107 -0.03686212846388164 0.184032744295982 0.8451646013890729 -0.0989653286562158 0.5252643718003502 -0.8451646013890729 0.0989653286562158 -0.5252643718003502 0.5976308884055098 -0.6861926602264394 0.4147010420471637 -0.5976308884055098 0.6861926602264394 -0.4147010420471637 -2.769287440755231e-005 -0.9295143678751611 0.3687858987905372 2.769287440755231e-005 0.9295143678751611 -0.3687858987905372 -0.5976089936893609 -0.6862253529501121 0.4146784967056808 0.5976089936893609 0.6862253529501121 -0.4146784967056808 -0.8451601416135406 -0.09895473138994973 0.5252735441304108 0.8451601416135406 0.09895473138994973 -0.5252735441304108 -0.6943501393017593 0.7169794268532971 -0.06179308635070134 0.6943501393017593 -0.7169794268532971 0.06179308635070134 0.5976185875585842 0.4883301075234018 0.6359133037534798 -0.5976185875585842 -0.4883301075234018 -0.6359133037534798 0.01187222206486697 0.9858258610195975 0.1673511938655115 -0.01187222206486697 -0.9858258610195975 -0.1673511938655115 -0.5976220854673472 0.4883263199428125 0.635912925024149 0.5976220854673472 -0.4883263199428125 -0.635912925024149 -0.6763329695767453 0.7043165012944799 0.2156663633203012 0.6763329695767453 -0.7043165012944799 -0.2156663633203012 0.5872548942566114 -0.1498419288211753 0.7954112681743992 -0.5872548942566114 0.1498419288211753 -0.7954112681743992 0.4152537891845273 -0.5579015597107579 0.7185472428728649 -0.4152537891845273 0.5579015597107579 -0.7185472428728649 5.672463972588586e-008 -0.7269265674754418 0.6867151996995324 -5.672463972588586e-008 0.7269265674754418 -0.6867151996995324 -0.4152446317486396 -0.5579093061341975 0.7185465203678847 0.4152446317486396 0.5579093061341975 -0.7185465203678847 -0.5872665062521697 -0.1498228226207654 0.7954062939506557 0.5872665062521697 0.1498228226207654 -0.7954062939506557 -0.4152537205038676 0.2581954684019092 0.8722955048058053 0.4152537205038676 -0.2581954684019092 -0.8722955048058053 0.4152483299874877 0.2582110277020007 0.872293465306074 -0.4152483299874877 -0.2582110277020007 -0.872293465306074 6.775138903465313e-006 0.7315970759914494 0.6817372795695269 -6.775138903465313e-006 -0.7315970759914494 -0.6817372795695269 8.512239439668168e-006 0.4272458985545937 0.9041354666728984 -8.512239439668168e-006 -0.4272458985545937 -0.9041354666728984 0.2767973318869605 -0.1780315720475731 0.9442923257204464 -0.2767973318869605 0.1780315720475731 -0.9442923257204464 0.1957835389452804 -0.3702209790276415 0.9080777679064038 -0.1957835389452804 0.3702209790276415 -0.9080777679064038 -5.137564631330466e-005 -0.4499066475089857 0.8930755880034837 5.137564631330466e-005 0.4499066475089857 -0.8930755880034837 -0.1956889170168902 -0.3703019887117289 0.9080651325278903 0.1956889170168902 0.3703019887117289 -0.9080651325278903 -0.2767603498626814 -0.1779618944664103 0.9443162991613628 0.2767603498626814 0.1779618944664103 -0.9443162991613628 -0.1956928545008283 0.0145078660224017 0.9805579169640077 0.1956928545008283 -0.0145078660224017 -0.9805579169640077 -1.827556367716609e-005 0.09414657368914475 0.9955583470237183 1.827556367716609e-005 -0.09414657368914475 -0.9955583470237183 0.1956948075932166 0.01448265239006214 0.9805578999022968 -0.1956948075932166 -0.01448265239006214 -0.9805578999022968 2.405554025817842e-006 -0.1851566190805033 0.9827090242818015 -2.405554025817842e-006 0.1851566190805033 -0.9827090242818015</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"132\" source=\"#ID1301\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1299\">\r\n\t\t\t\t\t<float_array count=\"768\" id=\"ID1302\">0.2080582420229697 0.3882045639627037 0.171383566938535 0.3776320810910839 0.1046905764235344 0.4383724341029862 0.1010017631055067 0.3294286417634476 0.1202050940286545 0.2920410646281706 0.07309387706344146 0.307930832875431 0.2090662446480763 0.4685215090185798 0.2080315582321686 0.3882634996152287 0.1046564174161391 0.4384218369377809 0.2496123824858481 0.2200480093324486 0.1394726711780237 0.2602934649331121 0.2386395607208875 0.2998444509836821 0.06376238275677403 0.3676674803682631 0.05673238008998306 0.3277340851400835 0.02596570958586805 0.3599869945924319 0.1589088718957364 0.2396154021835559 0.1086236296223543 0.2317627961669785 0.1161818469373493 0.2618915737983167 0.1464213323988043 0.533592116390885 0.09817371566666291 0.604310598754456 0.2549750272269263 0.5525622137268859 0.103825972067229 0.4724434417343824 0.06509943028128994 0.4685762677249725 0.01727397236375587 0.5394743884514127 0.2649373005417774 0.4105097867300601 0.1571726437905581 0.388986221498794 0.1062425157039879 0.4585337399394807 0.2496140858291876 0.2200245139129967 0.2147949831452184 0.206138284531609 0.1394763887758067 0.2602733806614553 -0.02231501358307491 0.3721826220829955 0.01548370099147176 0.3645021277390662 -0.01528541984169108 0.3322491823064301 0.1247570099462456 0.2206571694598572 0.1033248141235846 0.1840256789465968 0.07674430986559575 0.2065184020678076 0.254964509120884 0.552582383197711 0.09816146859795036 0.6043275260536403 0.2605997383241684 0.6327157898210546 0.2649362945355829 0.4105211844224449 0.1062408657725533 0.4585438208054554 0.2675298292567629 0.4907552629770638 0.1276331686020876 0.5504554024377412 0.1038775357813703 0.4724001927331763 0.01733835202234516 0.5394413787095309 0.1384203174032103 0.2614922151725247 -0.01085229198658636 0.3255561382136697 0.1544275092811839 0.340760731290634 0.1438308082842277 0.005171244455458367 0.0452312589261509 0.06095763251281533 0.1520765339589031 0.08516605074963499 -0.06263340927464314 0.3422366332281409 -0.03472552967862196 0.3207385988470679 -0.08183952982352577 0.3048486639301516 -0.08732518098070186 0.5580348656151252 -0.02485981102038577 0.4761082008774138 -0.06358822450061247 0.4799761398409971 0.10631886024611 -0.003338514110620998 0.04523073783769346 0.06095640886336243 0.1438299019628124 0.005169599450056709 -0.08674402536572262 0.2344196707044798 -0.03872978573575731 0.2202807567916615 -0.06531287802638468 0.1977878005772124 0.1221074455191948 0.6280235097575183 0.08829727228098044 0.703753494718967 0.285842149394967 0.6513517727745747 0.1489079664835728 0.6196372241314372 0.03812327434693984 0.6122692549671323 0.002326090532160327 0.6874224568079909 0.1200074108369201 0.5674038945552706 0.1259503105362105 0.6453054766934032 0.2837585702440268 0.590691403734369 0.1528789556923448 0.5684602092775959 -0.01310889317377053 0.5591850992389119 -0.01218794922812959 0.6350249708269947 0.02798624290204783 0.2513443940562198 -0.01085177440272786 0.3255667206167832 0.1384221967330916 0.2615047611748251 -0.08153584686102669 0.2801217377832773 -0.07397905136523253 0.2499925822418439 -0.1242658053286974 0.2578452867549194 -0.1819365595642197 0.4902346623673546 -0.1442088430693662 0.3994057130453525 -0.1808846373144836 0.4099762411847058 0.02288594704291429 0.5470312648394177 -0.02492679807781306 0.4761272149880436 -0.08741198483382286 0.5580445273350287 -0.1394450479261169 0.01613795932540049 -0.1852058514391318 0.1046420371559939 -0.07835760972878399 0.08043328459741525 -0.1769541244099746 0.02464457027635999 -0.185204818429171 0.1046396117936526 -0.139441008528674 0.0161364959594385 0.06741342792232763 0.6808947856999051 0.2228588296250281 0.7011366573705343 0.2657729754807748 0.630433478214673 0.1352566951232709 0.6206283495429738 0.2902567707110412 0.6429042249500787 0.2911088085944585 0.5626421563380348 0.1489626486947834 0.6196133995722869 0.002387909799050052 0.6874081822758681 0.1682023498449169 0.6984386902146473 0.1506261487647364 0.5603116479083441 -0.01411168737255509 0.6273789999156675 0.1757988307631528 0.6357992196468209 -0.02568429657156245 0.6347703883653577 -0.02495908944858601 0.5589292021810814 -0.2156018516536662 0.643127653372318 -0.06514438190551528 0.2633726167132439 -0.1915922019484218 0.352800069700637 -0.02630892620494943 0.3375957727410948 -0.2479516845314106 0.2505007583338688 -0.2369886348386537 0.3302972074025672 -0.2131316044867787 0.2366157045391757 -0.181867065913399 0.4902492869963763 -0.07745886651356443 0.4601475953214236 -0.144161252169029 0.3994147093794894 0.001359886543496893 0.6182124634845919 -0.1094276578114278 0.6255816144805028 -0.1286571737077494 0.7044084431602284 -0.1755853420183451 0.2735265650159313 -0.1915919410095564 0.3527953443888429 -0.06514645085925339 0.2633658527220589 -0.236965033320896 0.3303158736430435 -0.1377995039188114 0.2907638994653895 -0.213122803815267 0.2366320389842904 0.07756392616899793 0.6304498435742529 0.05366712537029805 0.7151253977820606 0.2329941519881805 0.6507637048681906 0.1932670534730516 0.5379296285845305 0.02730019389423506 0.5284229376606484 -0.01129022340284161 0.6006518969316107 0.138284401693455 0.6404778035460549 0.07615862066183092 0.7218970631011209 0.2935508929381908 0.6615742729914216 0.176599968659267 0.4818190296465187 -0.01310071310947299 0.470855685318903 -0.04269214992280118 0.5696259222882558 -0.0261304068675559 0.5251982967325118 -0.2159192031756957 0.5352032708817965 -0.1929730855310471 0.628432874748292 -0.02579307327864677 0.5520117546201454 -0.1917753686403668 0.5613856719066962 -0.2157922616770364 0.6371056923739527 -0.125094583659455 0.551031642965349 -0.233647954502779 0.570000547687834 -0.2392878783191334 0.6501339370444887 0.03707694644989035 0.6933791868335899 0.001287706720952842 0.6182234440958171 -0.1287410399310728 0.7044085138252826 -0.2766006809446024 0.5138713407498793 -0.1153121323528152 0.4816592282457536 -0.1662437506292764 0.4121121695409867 -0.2740092436721249 0.4336369129846999 -0.2766035107276342 0.513871899331205 -0.1662451406294676 0.4121136944166516 0.2556632473040211 0.6941827097584667 0.07613108897525486 0.7581895240206594 0.2695143022305876 0.7846351439976531 0.06590489319615893 0.7285601847238541 0.259285526863961 0.7550914667326976 0.2843435659551222 0.6706239033359103 0.1617965981833127 0.4442247481849591 -0.04080049484237337 0.5107678252204927 0.1490544489404103 0.5198569286160608 0.1773340919812732 0.5423554378049972 -0.04716662747071239 0.6215991558867381 0.1484220901923369 0.6345525160244437 0.01003422637323316 0.5847062943806605 -0.02716728418582717 0.4875414780077202 -0.1854264661766825 0.5988261138125302 -0.07669825523228402 0.7353170697687607 -0.1414713327027521 0.655184667415497 -0.2699311341538568 0.7625046186014222 -0.157344457189635 0.6507872178140571 -0.1484700983558898 0.5730585792750997 -0.3126460023175801 0.6717210882007215 -0.07681739075579377 0.6217440960200278 -0.1250691239449588 0.5510263051573182 -0.2392550393970368 0.6501338608937675 0.005646298457818357 0.4408160893341088 -0.1602739329270165 0.4508488223597982 -0.1441685953371539 0.5260830347811247 -0.2878860286894726 0.6668763501632932 -0.1300129888345546 0.5620410501109798 -0.2934317215176717 0.5867306020968504 0.1015232348939078 0.5866750997084917 0.09720003321684195 0.6668629984245904 0.2942986226919566 0.6157375177931697 0.1373413603375052 0.7237529430955545 -0.05256313650851326 0.7153287971421402 -0.0481843548750184 0.8063700168014226 0.07570508625083916 0.6592520854617144 0.07241333498619998 0.7394768146881223 0.268853543301056 0.6868101313368737 0.1517674658002891 0.6997244517686309 -0.04400127574436411 0.6885804100920228 -0.03638949172855385 0.7686149563678284 0.004998956006142696 0.6862408483747942 -0.1907722065023648 0.6973853942935883 -0.1685891660654876 0.7757317551434142 -0.2543749297989185 0.7544038215594972 -0.09393675393800623 0.6508236897929691 -0.2870849600325312 0.6783810647268174 -0.2927235876658776 0.7568772729065211 -0.1611857191789751 0.6518900510986958 -0.3166207076123774 0.672201774437577 -0.2347778985046108 0.710483796899215 -0.1128779830293311 0.6168726118426419 -0.2767838310329202 0.6394439938315563 0.0841389162801193 0.5829415879532797 0.04743476569016653 0.5101068455946162 -0.105753089981269 0.5915806611126669 -0.03673915749690032 0.7102227954984445 -0.0730018702055297 0.6351987822433595 -0.1920594005484161 0.7310470828487421 0.0972006896596182 0.6668669704030218 0.2606319063263749 0.6915065253920528 0.2942993536290568 0.6157416674978724 0.07241670287206464 0.7395035949661424 0.2361453857394986 0.7628609343992937 0.2688574826135216 0.6868382306077284 0.1650885440251674 0.7423708403751169 -0.0189626455091732 0.8270042884992223 0.1768001133898592 0.8382999474881305 0.1517608075590242 0.6996736720411803 -0.03639401679218882 0.7685677820582493 0.1295796612097496 0.7780205881684124 -0.002604180917756822 0.7663214238895806 0.005010321853939543 0.6862870376575062 -0.1685813223016391 0.7757737164068272 -0.09065528838327473 0.7310249783205859 -0.09394779220725852 0.6508004863863935 -0.2543836567215877 0.754382833644238 -0.08406438233962031 0.6538138320318847 -0.08838826351847956 0.5736264274176743 -0.247495419168689 0.6784533208505356 -0.06783662193725235 0.7199435960856713 -0.09289436582891378 0.6354759784948433 -0.2612011993119516 0.7464705386397327 0.09567019989317839 0.7392873824859151 -0.09422137123556697 0.7479323725353121 -0.1034184211764667 0.8440309126814857 -0.0476654507798161 0.6794313502269357 -0.2031153618598148 0.6996480116237488 -0.2162479199072611 0.7901667433545733 0.1233343970809288 0.5214166957459726 0.2820263719437469 0.4733929648057076 0.1207371656860335 0.4411819771735436 0.2006501146604302 0.5183762525620003 0.005029331790608622 0.5056491440348117 0.01160227546055524 0.5857430621380582 0.08161017703864065 0.5779366673242971 0.08725860645803901 0.6580740760745135 0.2440492058866474 0.6063246612429023 0.1305743452376824 0.6584494751579818 -0.03524161102812632 0.6474158926183059 -0.01600154488583202 0.7262417747470411 -0.004223759032836607 0.6414631458429357 -0.1700431486384346 0.6524965984240604 -0.1342590765612526 0.7276587441820807 -0.2171399658048231 0.6596095700459324 -0.102949530992559 0.5605012715081108 -0.2653882882540545 0.5888895289933324 -0.1116692834863443 0.418030489126575 -0.2729578219881398 0.450242930628122 -0.2220198422858973 0.5197910101150416 -0.2474956980842612 0.678452789270064 -0.08838860081279965 0.5736258410028052 -0.2811633898565886 0.6026880952129459 0.05409249544158197 0.8073395572925669 0.05966025944387264 0.7163385405005769 -0.1416985174983493 0.8183612303317118 0.1233291602950166 0.5213706510168323 0.2310849248397054 0.5428932217507596 0.282019649796565 0.4733438827122014 0.08725861575139056 0.6580743091594025 0.1958017724451708 0.6770442728344743 0.2440492238456599 0.6063249105757141 0.2006513188047662 0.5183804059416854 0.01160334398944389 0.585746980003428 0.1774426994942418 0.5965343702039254 0.1305748135810249 0.658460743190107 -0.01600182655903531 0.7262520392295695 0.09479064695705169 0.7336226615917477 -0.02346344094958563 0.7202787574019434 -0.004224923338314924 0.6414526413781714 -0.1342588794123853 0.7276495107459581 -0.1085966439099987 0.640643569267857 -0.1029476864153791 0.5605059964387001 -0.2171391271351572 0.6596135777394324 -0.1142545077211706 0.4982870351788154 -0.1116541954595357 0.4180514559230356 -0.2220099714195967 0.5198084756169563 -0.007739909084885002 0.3667732939438934 0.00826160109455059 0.2875004536900948 -0.1181799302189235 0.3769340437589404 0.02648622302457283 0.57874511957447 0.03305907657106505 0.4986512882814798 -0.1393565486291509 0.5895325357957912 0.03305971296194421 0.4986526400923563 -0.1625640946810289 0.5113797199135576 -0.1393560029338519 0.5895337811261071 0.1477670252786445 0.3251474826058816 0.2579173242316524 0.284900112650938 0.1587588837187196 0.2453515516988695 0.04489251775895983 0.3788118852243066 0.1941670260061251 0.3147455280013232 0.02888817239001664 0.2995395883191777 0.09340040653540357 0.408957019524095 0.09443325949047135 0.4892189907694559 0.1977978177184108 0.4390597401728739 -0.01700424292782076 0.4916737909751708 0.006765468393145828 0.5697291266390435 0.09329828349014012 0.5026902472052257 -0.1335211427572895 0.4950467490333376 -0.08572101886471382 0.5659605325024991 -0.02321586824066765 0.4840287800018171 -0.1205927518739747 0.387292188398676 -0.2249920317252153 0.4173894234732767 -0.1582728790865721 0.4781123703852491 -0.1604314491502845 0.2148771169737214 -0.2595886569148715 0.2544264682782443 -0.1842723229005086 0.3085603014123665 -0.1038340372901505 0.1056829109646204 -0.05806716518954648 0.01718763258847805 -0.1649164670862111 0.04139669522916714 -0.1181642265434135 0.3769626624200317 0.008282488544084487 0.2875336079700712 -0.1569998946990238 0.3027388807033044 0.1477661879727247 0.3251199328738696 0.1826025400776905 0.3390062713382762 0.2579148488932883 0.2848697887431579 0.09441109444261013 0.4894653628017057 0.1310455411064328 0.500034700779838 0.1977958265194056 0.4393318484204865 0.155341211678657 0.3890139057296106 0.1941814072320926 0.3147915900584225 0.04490407271647314 0.3788538718982092 0.006801692781106001 0.5695807395810987 0.04553908455198724 0.573447099210587 0.09330861190876177 0.5025211808494376 -0.02321802396029496 0.4841270912619529 -0.08576115238161489 0.566040906577534 -0.04702152290862134 0.5621760547641354 -0.120633676237802 0.3872629880546628 -0.1582450040765638 0.4781008164818528 -0.1216129381345534 0.4675259254091417 -0.1494293674300025 0.2946669358965301 -0.1604129358621988 0.2148711223650165 -0.1842665688488493 0.3085522968429815 -0.06623956381366637 0.09719929106545393 -0.05794927563359222 0.0172095069455723 -0.1037623795280825 0.1056899803016136 0.1369209661971957 0.125083638802776 0.1979812565786531 0.06078440868974403 0.09940135812491932 0.1165898096804462 0.06457760427489892 0.2611078435790685 0.1148573908294561 0.2689606230022873 0.1072944986554617 0.23882018376842 0.09944066821653162 0.1166923458920594 0.1980381408147453 0.06090616171214715 0.09119066960290964 0.0367005362591048 0.05839749350901192 0.2935323672363474 0.03914909840766832 0.330895245008053 0.08626643021294608 0.3150174476167217 -0.006831296614083174 0.3289837123361127 0.0002444636612285904 0.3689196089610778 0.03097801309104284 0.3366591568939948 -0.03460728754184527 0.324440008484787 -0.07241863793649281 0.3321154617135932 -0.04168263633880348 0.3643759502252016 -0.09677293437997288 0.2807476421119609 -0.1246418658234179 0.3022329471600883 -0.07752175078445497 0.3181109105842664 -0.141934830421964 0.2205948741971674 -0.1494963004299555 0.2507356913852268 -0.0992150020156706 0.2428828134899558 -0.08010388262469373 0.1847174117292542 -0.1281037157479544 0.1988746742058536 -0.1015066903322446 0.2213608795203222 0.04208799284752866 0.1984597971967464 0.06349184826195159 0.235102886276443 0.09008628595217623 0.2126169133576009</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"384\" source=\"#ID1302\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1298\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1296\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1297\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"128\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1298\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1299\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 1 9 10 10 2 11 12 12 6 13 0 14 6 15 14 16 1 17 2 18 16 19 8 20 12 21 0 22 8 23 2 24 10 25 18 26 1 27 14 28 10 29 12 30 20 31 6 32 6 33 22 34 14 35 8 36 16 37 24 38 2 39 18 40 16 41 26 42 12 43 8 44 10 45 28 46 18 47 14 48 30 49 10 50 20 51 32 52 6 53 26 54 20 55 12 56 22 57 30 58 14 59 6 60 34 61 22 62 16 63 36 64 24 65 26 66 8 67 24 68 18 69 38 70 16 71 18 72 28 73 40 74 30 75 28 76 10 77 32 78 34 79 6 80 42 81 32 82 20 83 42 84 20 85 26 86 22 87 44 88 30 89 34 90 44 91 22 92 36 93 46 94 24 95 38 96 36 97 16 98 26 99 24 100 48 101 18 102 40 103 38 104 40 105 28 106 50 107 30 108 52 109 28 110 32 111 54 112 34 113 42 114 54 115 32 116 42 117 26 118 48 119 44 120 52 121 30 122 54 123 44 124 34 125 36 126 56 127 46 128 48 129 24 130 46 131 38 132 58 133 36 134 38 135 40 136 60 137 40 138 50 139 62 140 28 141 52 142 50 143 54 144 42 145 64 146 64 147 42 148 48 149 66 150 52 151 44 152 54 153 66 154 44 155 46 156 56 157 68 158 58 159 56 160 36 161 48 162 46 163 70 164 38 165 60 166 58 167 60 168 40 169 62 170 62 171 50 172 72 173 50 174 52 175 74 176 66 177 54 178 64 179 64 180 48 181 70 182 74 183 52 184 66 185 56 186 76 187 68 188 70 189 46 190 68 191 58 192 78 193 56 194 58 195 60 196 80 197 60 198 62 199 82 200 84 201 62 202 72 203 72 204 50 205 74 206 86 207 66 208 64 209 86 210 64 211 70 212 74 213 66 214 86 215 76 216 88 217 68 218 78 219 76 220 56 221 70 222 68 223 90 224 58 225 80 226 78 227 80 228 60 229 82 230 82 231 62 232 84 233 84 234 72 235 92 236 72 237 74 238 94 239 86 240 70 241 90 242 74 243 86 244 94 245 96 246 88 247 76 248 90 249 68 250 88 251 78 252 98 253 76 254 78 255 80 256 100 257 80 258 82 259 102 260 104 261 82 262 84 263 84 264 92 265 106 266 92 267 72 268 94 269 94 270 86 271 90 272 96 273 108 274 88 275 98 276 96 277 76 278 90 279 88 280 110 281 78 282 100 283 98 284 100 285 80 286 102 287 102 288 82 289 104 290 104 291 84 292 106 293 106 294 92 295 112 296 92 297 94 298 110 299 94 300 90 301 110 302 114 303 108 304 96 305 108 306 110 307 88 308 98 309 116 310 96 311 100 312 118 313 98 314 102 315 120 316 100 317 102 318 104 319 122 320 104 321 106 322 124 323 126 324 106 325 112 326 112 327 92 328 110 329 114 330 128 331 108 332 116 333 114 334 96 335 112 336 110 337 108 338 118 339 116 340 98 341 100 342 120 343 118 344 102 345 122 346 120 347 122 348 104 349 124 350 124 351 106 352 126 353 126 354 112 355 128 356 130 357 128 358 114 359 128 360 112 361 108 362 116 363 130 364 114 365 118 366 130 367 116 368 118 369 120 370 130 371 120 372 122 373 130 374 122 375 124 376 130 377 130 378 124 379 126 380 130 381 126 382 128 383</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"128\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1298\" />\r\n\t\t\t\t\t<p>3 4 5 4 7 5 3 5 9 3 11 4 5 7 13 4 15 7 9 17 3 9 5 13 19 11 3 11 15 4 7 21 13 15 23 7 25 17 9 17 19 3 9 13 27 19 29 11 11 31 15 7 33 21 13 21 27 15 31 23 23 35 7 25 37 17 25 9 27 17 39 19 41 29 19 11 29 31 7 35 33 21 33 43 27 21 43 31 45 23 23 45 35 25 47 37 17 37 39 49 25 27 39 41 19 51 29 41 29 53 31 35 55 33 33 55 43 49 27 43 31 53 45 35 45 55 47 57 37 47 25 49 37 59 39 61 41 39 63 51 41 51 53 29 65 43 55 49 43 65 45 53 67 45 67 55 69 57 47 37 57 59 71 47 49 59 61 39 63 41 61 73 51 63 75 53 51 65 55 67 71 49 65 67 53 75 69 77 57 69 47 71 57 79 59 81 61 59 83 63 61 73 63 85 75 51 73 65 67 87 71 65 87 87 67 75 69 89 77 57 77 79 91 69 71 79 81 59 83 61 81 85 63 83 93 73 85 95 75 73 91 71 87 95 87 75 77 89 97 89 69 91 77 99 79 101 81 79 103 83 81 85 83 105 107 93 85 95 73 93 91 87 95 89 109 97 77 97 99 111 89 91 99 101 79 103 81 101 105 83 103 107 85 105 113 93 107 111 95 93 111 91 95 97 109 115 89 111 109 97 117 99 99 119 101 101 121 103 123 105 103 125 107 105 113 107 127 111 93 113 109 129 115 97 115 117 109 111 113 99 117 119 119 121 101 121 123 103 125 105 123 127 107 125 129 113 127 115 129 131 109 113 129 115 131 117 117 131 119 131 121 119 131 123 121 131 125 123 127 125 131 129 127 131</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1303\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1306\">\r\n\t\t\t\t\t<float_array count=\"522\" id=\"ID1309\">0.5757430791854858 -0.2640672326087952 -0.04370040446519852 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5220236778259277 0.04897113516926765 -0.04865696281194687 0.5220236778259277 0.04897113516926765 -0.04865696281194687 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5757430791854858 -0.2640672326087952 -0.04370040446519852 0.5596339106559753 -0.4551787674427033 -0.0152185931801796 0.5596339106559753 -0.4551787674427033 -0.0152185931801796 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.1914478987455368 0.04898110404610634 -0.04865696281194687 0.1914478987455368 0.04898110404610634 -0.04865696281194687 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5609543919563294 -0.5950192809104919 0.115213468670845 0.5609543919563294 -0.5950192809104919 0.115213468670845 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.574457585811615 -0.06990624219179153 -0.2623734772205353 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.574457585811615 -0.06990624219179153 -0.2623734772205353 0.1425719261169434 -0.2640497386455536 -0.04370040446519852 0.1425719261169434 -0.2640497386455536 -0.04370040446519852 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.1586782038211823 -0.4551669061183929 -0.0152185931801796 0.1586782038211823 -0.4551669061183929 -0.0152185931801796 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5491922497749329 -0.6375892162322998 0.3780633807182312 0.5491922497749329 -0.6375892162322998 0.3780633807182312 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.1438722163438797 -0.06989359110593796 -0.2623734772205353 0.1438722163438797 -0.06989359110593796 -0.2623734772205353 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.1573539972305298 -0.595005989074707 0.1152148991823196 0.1573539972305298 -0.595005989074707 0.1152148991823196 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5184099674224854 -0.8335617780685425 0.3569554090499878 0.5184099674224854 -0.8335617780685425 0.3569554090499878 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1950476169586182 -0.8335521221160889 0.3569565713405609 0.1950476169586182 -0.8335521221160889 0.3569565713405609 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.2369584441184998 -0.8251082301139832 0.4601387679576874 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.2369584441184998 -0.8251082301139832 0.4601387679576874 0.3958669900894165 -0.85288006067276 0.4996026456356049 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.3958669900894165 -0.85288006067276 0.4996026456356049 0.4764984846115112 -0.8251250982284546 0.4601365625858307 0.4764984846115112 -0.8251250982284546 0.4601365625858307 0.4596176445484161 -0.8469366431236267 0.4531694352626801 0.4596176445484161 -0.8469366431236267 0.4531694352626801 0.3175884783267975 -0.8528740406036377 0.4996022284030914 0.3175884783267975 -0.8528740406036377 0.4996022284030914 0.2538373470306397 -0.8469233512878418 0.4531687796115875 0.2538373470306397 -0.8469233512878418 0.4531687796115875</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"174\" source=\"#ID1309\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1307\">\r\n\t\t\t\t\t<float_array count=\"522\" id=\"ID1310\">-0.5623456695593759 -0.02902424062761077 0.8263927282979973 -0.6776788756103134 -0.06952626265423349 0.7320638225953225 -0.08364715755509074 0.3839984169292143 0.9195370404876635 0.08364715755509074 -0.3839984169292143 -0.9195370404876635 0.6776788756103134 0.06952626265423349 -0.7320638225953225 0.5623456695593759 0.02902424062761077 -0.8263927282979973 -0.6954869493704354 0.3760430533359256 0.6122822268310583 0.6954869493704354 -0.3760430533359256 -0.6122822268310583 -0.3204674790414629 -0.04817752523915629 0.9460335728390615 0.3204674790414629 0.04817752523915629 -0.9460335728390615 0.6878997258483419 -0.0773037578987384 0.7216772798089942 -0.6878997258483419 0.0773037578987384 -0.7216772798089942 -0.9200618122166246 0.3674044358970494 0.1360155953699105 0.9200618122166246 -0.3674044358970494 -0.1360155953699105 -0.07128196911654768 -0.02119409286438933 0.9972310120060061 0.07128196911654768 0.02119409286438933 -0.9972310120060061 -0.278925631441701 0.0822711107392837 0.9567820841040937 0.278925631441701 -0.0822711107392837 -0.9567820841040937 0.08407854415395319 0.387336020948779 0.9180967298103827 -0.08407854415395319 -0.387336020948779 -0.9180967298103827 2.255743400527115e-005 0.8234880555100644 0.5673336072571545 2.140412797513351e-005 0.8234874830219355 0.5673344382708149 3.033972759434882e-005 0.9277932590582046 0.373094716560897 -3.033972759434882e-005 -0.9277932590582046 -0.373094716560897 -2.140412797513351e-005 -0.8234874830219355 -0.5673344382708149 -2.255743400527115e-005 -0.8234880555100644 -0.5673336072571545 -0.6145553697712602 0.7034281203016348 0.3570862319583578 0.6145553697712602 -0.7034281203016348 -0.3570862319583578 -0.05429496829919668 0.4036684937205148 0.9132928356199889 0.05429496829919668 -0.4036684937205148 -0.9132928356199889 0.9726035301304553 -0.1616463061327001 -0.1670713766371429 0.9746476165022039 -0.06780241782248969 -0.2132248948504782 0.9720490564290999 0.04311552109500944 -0.2307849296119713 -0.9720490564290999 -0.04311552109500944 0.2307849296119713 -0.9746476165022039 0.06780241782248969 0.2132248948504782 -0.9726035301304553 0.1616463061327001 0.1670713766371429 0.0336392230587115 0.7307994210963498 0.6817628684500544 -0.0336392230587115 -0.7307994210963498 -0.6817628684500544 0.7374793544197982 0.4572059492354973 -0.4970783859596251 0.8838275377583784 0.3740634335566644 -0.2809367031481668 -0.8838275377583784 -0.3740634335566644 0.2809367031481668 -0.7374793544197982 -0.4572059492354973 0.4970783859596251 0.5785150252202893 -0.02554248858252377 0.8152717012575499 -0.5785150252202893 0.02554248858252377 -0.8152717012575499 2.595741966724495e-005 0.9277954126478304 0.3730893614080339 -2.595741966724495e-005 -0.9277954126478304 -0.3730893614080339 -0.04629672257949584 0.8986462600662638 0.4362241542456291 0.04629672257949584 -0.8986462600662638 -0.4362241542456291 -0.904333663484486 0.4260001815927788 0.02654186074200746 0.904333663484486 -0.4260001815927788 -0.02654186074200746 0.9834693286842997 -0.1261076284381207 -0.1299420855110674 -0.9834693286842997 0.1261076284381207 0.1299420855110674 0.3527001788631265 0.7653825052469869 -0.5383235128542731 -0.3527001788631265 -0.7653825052469869 0.5383235128542731 -0.03456069332299173 0.7307200114792106 0.6818018944685153 0.03456069332299173 -0.7307200114792106 -0.6818018944685153 0.3308857098890422 -0.04606984733465251 0.94254560428543 -0.3308857098890422 0.04606984733465251 -0.94254560428543 0.7083231229345967 0.370005918120624 0.6011438879934609 -0.7083231229345967 -0.370005918120624 -0.6011438879934609 0.9329916499520448 0.3380979339269275 0.1233546439908304 -0.9329916499520448 -0.3380979339269275 -0.1233546439908304 4.175137933241703e-005 0.9624971715928647 0.2712917118759023 -4.175137933241703e-005 -0.9624971715928647 -0.2712917118759023 -0.06316387502239948 0.9659005428502105 0.251090553812411 0.06316387502239948 -0.9659005428502105 -0.251090553812411 -0.5338774675678342 0.7433939804543349 0.4029146801093459 0.5338774675678342 -0.7433939804543349 -0.4029146801093459 0.9282916758272926 -0.3528729355165036 -0.1172828033844797 -0.9282916758272926 0.3528729355165036 0.1172828033844797 -0.7371727916115995 0.4555778108195047 -0.4990241813744788 0.7371727916115995 -0.4555778108195047 0.4990241813744788 0.2927453765890279 0.08075837779410651 0.9527739652728829 -0.2927453765890279 -0.08075837779410651 -0.9527739652728829 -0.3690024290606827 0.7579722564310877 -0.5378803452702854 0.3690024290606827 -0.7579722564310877 0.5378803452702854 0.07128622684052716 -0.02118911041509052 0.9972308135344886 -0.07128622684052716 0.02118911041509052 -0.9972308135344886 0.6341081704417082 0.6888848242950419 0.351204394954076 -0.6341081704417082 -0.6888848242950419 -0.351204394954076 0.9204352528465152 0.3903257781933799 0.02108867456964116 0.9181639455430147 0.3957148118369558 0.01961521852354617 -0.9181639455430147 -0.3957148118369558 -0.01961521852354617 -0.9204352528465152 -0.3903257781933799 -0.02108867456964116 5.178125723876811e-005 0.9624944681935413 0.271301301168154 -5.178125723876811e-005 -0.9624944681935413 -0.271301301168154 -0.06528031215682842 0.9705532911741637 0.2318723567735187 0.06528031215682842 -0.9705532911741637 -0.2318723567735187 -0.8071345011136001 0.5825913322456345 -0.09550516585167916 0.8071345011136001 -0.5825913322456345 0.09550516585167916 -0.06764256345976379 0.8384986448583431 0.540688918121422 0.06764256345976379 -0.8384986448583431 -0.540688918121422 0.593262699854513 -0.8040659702966354 -0.03895233461892018 -0.593262699854513 0.8040659702966354 0.03895233461892018 -0.8897101437617623 0.3619257650191408 -0.2782545609738211 0.8897101437617623 -0.3619257650191408 0.2782545609738211 -0.9720327846987922 0.04319680535765318 -0.2308382582623698 0.9720327846987922 -0.04319680535765318 0.2308382582623698 -0.9746323213825966 -0.06775027945219549 -0.2133113633881711 0.9746323213825966 0.06775027945219549 0.2133113633881711 0.05226532367732852 0.4064698286281858 0.9121680844865584 -0.05226532367732852 -0.4064698286281858 -0.9121680844865584 0.9142349564372279 0.4047881480732629 0.01791646191741633 -0.9142349564372279 -0.4047881480732629 -0.01791646191741633 0.07205264813033455 0.7714983133929116 0.6321382509620019 0.079094426078098 0.6673578487483389 0.7405252011088925 0.08490175081320314 0.4049533256248704 0.9103870038473806 -0.08490175081320314 -0.4049533256248704 -0.9103870038473806 -0.079094426078098 -0.6673578487483389 -0.7405252011088925 -0.07205264813033455 -0.7714983133929116 -0.6321382509620019 5.013457659817343e-005 0.8714767518656733 0.4904368139161049 -5.013457659817343e-005 -0.8714767518656733 -0.4904368139161049 0.9447989913515391 -0.3276488849487459 -0.001036403858430049 -0.9447989913515391 0.3276488849487459 0.001036403858430049 -0.7920052855989604 0.6051280337239494 0.08091780017212312 0.7920052855989604 -0.6051280337239494 -0.08091780017212312 -3.138986537923502e-005 -0.9199607579002272 -0.3920104627918951 -3.138986537923502e-005 -0.9199607579002272 -0.3920104627918951 3.138986537923502e-005 0.9199607579002272 0.3920104627918951 3.138986537923502e-005 0.9199607579002272 0.3920104627918951 -0.9732157750163402 -0.1580442816411232 -0.1669522695260109 0.9732157750163402 0.1580442816411232 0.1669522695260109 -0.9834711209303843 -0.126096114110478 -0.1299396948671616 0.9834711209303843 0.126096114110478 0.1299396948671616 0.0437178963006298 0.8972403367035504 0.4393728755113896 -0.0437178963006298 -0.8972403367035504 -0.4393728755113896 0.06426418018846064 0.9662185317857469 0.2495833808139088 -0.06426418018846064 -0.9662185317857469 -0.2495833808139088 0.06429709081035219 0.9708344238347439 0.2309684082527008 -0.06429709081035219 -0.9708344238347439 -0.2309684082527008 0.7196572827450084 0.6620618477432274 -0.2092068477724722 0.7747789695478524 0.623234240124659 -0.1062856071281851 0.8171431206070383 0.5764162239823395 -0.004632188956936927 -0.8171431206070383 -0.5764162239823395 0.004632188956936927 -0.7747789695478524 -0.623234240124659 0.1062856071281851 -0.7196572827450084 -0.6620618477432274 0.2092068477724722 0.6594272425643234 0.6888982854805503 -0.3009565816292633 -0.6594272425643234 -0.6888982854805503 0.3009565816292633 6.682663927711848e-005 0.8714617897975016 0.4904633976731961 -6.682663927711848e-005 -0.8714617897975016 -0.4904633976731961 0.9335593015579758 -0.3287625002337843 0.1427664138185698 -0.9335593015579758 0.3287625002337843 -0.1427664138185698 -0.6594020609505565 0.6888906318398524 -0.3010292666460313 0.6594020609505565 -0.6888906318398524 0.3010292666460313 0.8221498543273054 -0.3070330188316616 0.4793749496758327 -0.8221498543273054 0.3070330188316616 -0.4793749496758327 -3.066908308931682e-005 -0.9199606115312351 -0.392010806344013 -0.6076623147201187 -0.7932324038290286 -0.03910070056416476 0.6076623147201187 0.7932324038290286 0.03910070056416476 3.066908308931682e-005 0.9199606115312351 0.392010806344013 -0.9333115515423831 -0.3394665247283948 -0.1170129323894408 0.9333115515423831 0.3394665247283948 0.1170129323894408 -0.7396363893425982 -0.6554726337331369 -0.1526225343361504 -0.8661412983354875 -0.2914642771454225 0.4060145643518379 -0.937612648422409 -0.3458272918389665 0.03586092215270673 0.937612648422409 0.3458272918389665 -0.03586092215270673 0.8661412983354875 0.2914642771454225 -0.4060145643518379 0.7396363893425982 0.6554726337331369 0.1526225343361504 -0.6855657172326377 -0.4195975644837834 0.5949264922951209 -0.3246046366813378 -0.2814634871269046 0.9030006286040668 0.3246046366813378 0.2814634871269046 -0.9030006286040668 0.6855657172326377 0.4195975644837834 -0.5949264922951209 0.1775861564188749 -0.8016171053217112 0.57085302268098 0.3245515382109805 -0.2814412062072947 0.9030266587944508 -0.3245515382109805 0.2814412062072947 -0.9030266587944508 -0.1775861564188749 0.8016171053217112 -0.57085302268098 0.6855528672262897 -0.4196299680603711 0.5949184449514615 -0.6855528672262897 0.4196299680603711 -0.5949184449514615 0.3674568997501367 -0.8965543114883223 0.2473171918361488 -0.3674568997501367 0.8965543114883223 -0.2473171918361488 -0.1776701550306539 -0.8016016592896061 0.5708485752242301 0.1776701550306539 0.8016016592896061 -0.5708485752242301 -0.3675430122840427 -0.8965104567949764 0.2473482059333262 0.3675430122840427 0.8965104567949764 -0.2473482059333262</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"174\" source=\"#ID1310\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1308\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1306\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1307\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"94\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1308\" />\r\n\t\t\t\t\t<p>0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 14 0 8 2 16 8 10 18 2 20 21 22 26 12 6 28 6 14 30 31 32 2 36 16 38 32 39 18 36 2 10 42 18 20 22 44 26 6 46 48 12 26 30 50 31 46 6 28 30 32 38 38 39 52 54 36 18 42 56 18 10 58 42 10 60 58 44 22 62 26 46 64 66 12 48 30 68 50 70 38 52 54 18 72 74 70 52 56 72 18 76 56 42 76 42 58 60 78 58 60 80 81 22 84 62 64 46 86 88 12 66 66 64 90 92 68 30 94 70 74 96 70 94 96 98 70 100 76 58 78 100 58 60 102 78 60 81 102 104 105 106 62 84 110 92 112 68 64 86 90 114 88 66 114 66 90 116 117 92 98 120 70 122 120 98 124 100 78 124 78 126 128 126 105 130 131 132 128 105 104 131 130 136 84 138 110 92 140 112 88 114 142 92 144 140 92 146 147 150 120 122 124 126 128 152 153 154 158 153 159 162 159 163 166 163 144 92 166 144 92 147 168 150 147 120 154 147 150 153 147 154 158 159 170 158 147 153 170 159 162 162 163 166 92 168 166 147 172 168 172 158 170 172 147 158 172 170 162 168 162 166 168 172 162</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"94\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1308\" />\r\n\t\t\t\t\t<p>3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 15 9 17 3 3 19 11 23 24 25 7 13 27 15 7 29 33 34 35 17 37 3 40 33 41 3 37 19 19 43 11 45 23 25 47 7 27 27 13 49 34 51 35 29 7 47 41 33 35 53 40 41 19 37 55 19 57 43 43 59 11 59 61 11 63 23 45 65 47 27 49 13 67 51 69 35 53 41 71 73 19 55 53 71 75 19 73 57 43 57 77 59 43 77 59 79 61 82 83 61 63 85 23 87 47 65 67 13 89 91 65 67 35 69 93 75 71 95 95 71 97 71 99 97 59 77 101 59 101 79 79 103 61 103 82 61 107 108 109 111 85 63 69 113 93 91 87 65 67 89 115 91 67 115 93 118 119 71 121 99 99 121 123 79 101 125 127 79 125 108 127 129 133 134 135 109 108 129 137 135 134 111 139 85 113 141 93 143 115 89 141 145 93 148 149 93 123 121 151 129 127 125 155 156 157 160 156 161 164 160 165 145 164 167 145 167 93 169 148 93 121 148 151 151 148 155 155 148 156 171 160 161 156 148 161 165 160 171 167 164 165 167 169 93 169 173 148 171 161 173 161 148 173 165 171 173 167 165 169 165 173 169</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1311\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1312\">\r\n\t\t\t\t\t<float_array count=\"522\" id=\"ID1315\">-0.1579605340957642 -0.2640672326087952 -0.04370040446519852 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.2116810828447342 0.04897113516926765 -0.04865696281194687 -0.2116810828447342 0.04897113516926765 -0.04865696281194687 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.1579605340957642 -0.2640672326087952 -0.04370040446519852 -0.1740687191486359 -0.4551787674427033 -0.0152185931801796 -0.1740687191486359 -0.4551787674427033 -0.0152185931801796 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.5422577261924744 0.04898110404610634 -0.04865696281194687 -0.5422577261924744 0.04898110404610634 -0.04865696281194687 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.172749400138855 -0.5950192809104919 0.115213468670845 -0.172749400138855 -0.5950192809104919 0.115213468670845 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.1592455804347992 -0.06990624219179153 -0.2623733282089233 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1592455804347992 -0.06990624219179153 -0.2623733282089233 -0.591135561466217 -0.2640497386455536 -0.04370040446519852 -0.591135561466217 -0.2640497386455536 -0.04370040446519852 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.5750284194946289 -0.4551669061183929 -0.0152185931801796 -0.5750284194946289 -0.4551669061183929 -0.0152185931801796 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1845105141401291 -0.6375892162322998 0.3780633807182312 -0.1845105141401291 -0.6375892162322998 0.3780633807182312 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.5898348093032837 -0.06989359110593796 -0.2623733282089233 -0.5898348093032837 -0.06989359110593796 -0.2623733282089233 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.5763527154922485 -0.595005989074707 0.1152148991823196 -0.5763527154922485 -0.595005989074707 0.1152148991823196 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.2152939885854721 -0.8335617780685425 0.3569554090499878 -0.2152939885854721 -0.8335617780685425 0.3569554090499878 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5386579036712647 -0.8335521221160889 0.3569565713405609 -0.5386579036712647 -0.8335521221160889 0.3569565713405609 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.4967458844184876 -0.8251082301139832 0.4601387679576874 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4967458844184876 -0.8251082301139832 0.4601387679576874 -0.3378376364707947 -0.85288006067276 0.4996026456356049 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.3378376364707947 -0.85288006067276 0.4996026456356049 -0.2572067081928253 -0.8251250982284546 0.4601365625858307 -0.2572067081928253 -0.8251250982284546 0.4601365625858307 -0.27408766746521 -0.8469366431236267 0.4531694352626801 -0.27408766746521 -0.8469366431236267 0.4531694352626801 -0.4161160886287689 -0.8528740406036377 0.4996022284030914 -0.4161160886287689 -0.8528740406036377 0.4996022284030914 -0.4798671901226044 -0.8469233512878418 0.4531687796115875 -0.4798671901226044 -0.8469233512878418 0.4531687796115875</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"174\" source=\"#ID1315\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1313\">\r\n\t\t\t\t\t<float_array count=\"522\" id=\"ID1316\">-0.5623413782526318 -0.02902591286613609 0.8263955897070229 -0.677675404794203 -0.06952438551774405 0.7320672138235622 -0.08364765397423228 0.3839963828085615 0.9195378447755958 0.08364765397423228 -0.3839963828085615 -0.9195378447755958 0.677675404794203 0.06952438551774405 -0.7320672138235622 0.5623413782526318 0.02902591286613609 -0.8263955897070229 -0.695482362370099 0.3760445437328366 0.6122865217860584 0.695482362370099 -0.3760445437328366 -0.6122865217860584 -0.3204593099152888 -0.0481776503756154 0.9460363337065347 0.3204593099152888 0.0481776503756154 -0.9460363337065347 0.6878959204722767 -0.07730026101703819 0.7216812816225021 -0.6878959204722767 0.07730026101703819 -0.7216812816225021 -0.9200589462427619 0.3674108354986236 0.1360176951608199 0.9200589462427619 -0.3674108354986236 -0.1360176951608199 -0.07128014245902452 -0.02119425833209892 0.9972311390569257 0.07128014245902452 0.02119425833209892 -0.9972311390569257 -0.2789192657441723 0.08227147538685829 0.9567839084842519 0.2789192657441723 -0.08227147538685829 -0.9567839084842519 0.08407837059411352 0.3873346347619575 0.9180973305222382 -0.08407837059411352 -0.3873346347619575 -0.9180973305222382 2.255739283483661e-005 0.8234880555114981 0.5673336072550753 2.140409195340843e-005 0.8234874830248066 0.5673344382666489 3.033968594614084e-005 0.9277932184238439 0.3730948176083784 -3.033968594614084e-005 -0.9277932184238439 -0.3730948176083784 -2.140409195340843e-005 -0.8234874830248066 -0.5673344382666489 -2.255739283483661e-005 -0.8234880555114981 -0.5673336072550753 -0.6145538793548455 0.7034298561426827 0.3570853775457554 0.6145538793548455 -0.7034298561426827 -0.3570853775457554 -0.05429544957895544 0.403668201025771 0.9132929363767339 0.05429544957895544 -0.403668201025771 -0.9132929363767339 0.9726028806148421 -0.1616484893202991 -0.1670730454626849 0.9746474771901317 -0.06780566333342517 -0.2132244995933303 0.9720479865498597 0.04311735512513346 -0.230789093181148 -0.9720479865498597 -0.04311735512513346 0.230789093181148 -0.9746474771901317 0.06780566333342517 0.2132244995933303 -0.9726028806148421 0.1616484893202991 0.1670730454626849 0.03363914623609972 0.7307988193148688 0.6817635173053045 -0.03363914623609972 -0.7307988193148688 -0.6817635173053045 0.7374772903514135 0.4572062697034959 -0.4970811534948304 0.8838245448984975 0.374067643048655 -0.2809405137373174 -0.8838245448984975 -0.374067643048655 0.2809405137373174 -0.7374772903514135 -0.4572062697034959 0.4970811534948304 0.5785078095990561 -0.02554278550114724 0.8152768120962013 -0.5785078095990561 0.02554278550114724 -0.8152768120962013 2.595736406077767e-005 0.9277954038468378 0.3730893832942695 -2.595736406077767e-005 -0.9277954038468378 -0.3730893832942695 -0.04629593633056625 0.8986463460660794 0.4362240605255061 0.04629593633056625 -0.8986463460660794 -0.4362240605255061 -0.9043343512161365 0.4259983832059894 0.02654729207230666 0.9043343512161365 -0.4259983832059894 -0.02654729207230666 0.9834689833887162 -0.1261096567901756 -0.1299427303723811 -0.9834689833887162 0.1261096567901756 0.1299427303723811 0.3526969098823379 0.7653832506285668 -0.5383245948465466 -0.3526969098823379 -0.7653832506285668 0.5383245948465466 -0.03456054493227085 0.7307198857760062 0.681802036712626 0.03456054493227085 -0.7307198857760062 -0.681802036712626 0.3308812010916427 -0.04607141258674735 0.9425471106031853 -0.3308812010916427 0.04607141258674735 -0.9425471106031853 0.7083195658882379 0.3700095213471906 0.6011458614116222 -0.7083195658882379 -0.3700095213471906 -0.6011458614116222 0.9329876653634008 0.3381076251655933 0.1233582185532577 -0.9329876653634008 -0.3381076251655933 -0.1233582185532577 4.175134927565876e-005 0.9624972903196903 0.2712912906528304 -4.175134927565876e-005 -0.9624972903196903 -0.2712912906528304 -0.0631634402754065 0.965900669977191 0.2510901741410616 0.0631634402754065 -0.965900669977191 -0.2510901741410616 -0.533871373943583 0.7433977055760073 0.4029158813299858 0.533871373943583 -0.7433977055760073 -0.4029158813299858 0.9282903521594874 -0.3528761504278969 -0.1172836073234571 -0.9282903521594874 0.3528761504278969 0.1172836073234571 -0.7371721457438576 0.4555775508361483 -0.4990253728153849 0.7371721457438576 -0.4555775508361483 0.4990253728153849 0.292743715322472 0.08075455144167999 0.9527748000239347 -0.292743715322472 -0.08075455144167999 -0.9527748000239347 -0.368999017402634 0.7579737893133243 -0.5378805256466265 0.368999017402634 -0.7579737893133243 0.5378805256466265 0.07128671084572642 -0.02118923355026286 0.9972307763192781 -0.07128671084572642 0.02118923355026286 -0.9972307763192781 0.6341018364624005 0.6888896156433952 0.3512064328193694 -0.6341018364624005 -0.6888896156433952 -0.3512064328193694 0.9204315623145812 0.3903344223627087 0.02108975613680669 0.9181604324338736 0.3957229027240721 0.01961643628381157 -0.9181604324338736 -0.3957229027240721 -0.01961643628381157 -0.9204315623145812 -0.3903344223627087 -0.02108975613680669 5.178130880145423e-005 0.9624944376759281 0.2713014094353274 -5.178130880145423e-005 -0.9624944376759281 -0.2713014094353274 -0.06527977768556016 0.9705533066587464 0.2318724424313881 0.06527977768556016 -0.9705533066587464 -0.2318724424313881 -0.8071252456732988 0.5826058726144744 -0.09549468567383179 0.8071252456732988 -0.5826058726144744 0.09549468567383179 -0.06764276738943618 0.8384989893984246 0.5406883582968282 0.06764276738943618 -0.8384989893984246 -0.5406883582968282 0.5932608855457696 -0.8040674217601206 -0.03895000571863708 -0.5932608855457696 0.8040674217601206 0.03895000571863708 -0.889706350667824 0.3619341275934684 -0.2782558119150394 0.889706350667824 -0.3619341275934684 0.2782558119150394 -0.9720318059751443 0.04320074092632786 -0.23084164302854 0.9720318059751443 -0.04320074092632786 0.23084164302854 -0.9746315500638775 -0.0677533314633561 -0.2133139181949928 0.9746315500638775 0.0677533314633561 0.2133139181949928 0.05226561043417893 0.4064695056671582 0.9121682119700502 -0.05226561043417893 -0.4064695056671582 -0.9121682119700502 0.9142315574047728 0.404795774692041 0.01791759572917519 -0.9142315574047728 -0.404795774692041 -0.01791759572917519 0.07205190362702056 0.7714993399204356 0.6321370829860044 0.07909377644207545 0.6673572130602039 0.7405258433739153 0.08490095446075462 0.4049538320230013 0.9103868528606617 -0.08490095446075462 -0.4049538320230013 -0.9103868528606617 -0.07909377644207545 -0.6673572130602039 -0.7405258433739153 -0.07205190362702056 -0.7714993399204356 -0.6321370829860044 5.013466762419966e-005 0.8714767519895718 0.4904368136959355 -5.013466762419966e-005 -0.8714767519895718 -0.4904368136959355 0.9447976547977393 -0.3276527353948617 -0.001037534075002607 -0.9447976547977393 0.3276527353948617 0.001037534075002607 -0.7919943496495504 0.6051402722477143 0.08093331222153129 0.7919943496495504 -0.6051402722477143 -0.08093331222153129 -3.138965815380397e-005 -0.9199607238787885 -0.3920105426325991 -3.138965815380397e-005 -0.9199607238787885 -0.3920105426325991 3.138965815380397e-005 0.9199607238787885 0.3920105426325991 3.138965815380397e-005 0.9199607238787885 0.3920105426325991 -0.9732150206109642 -0.1580472657677843 -0.1669538422454788 0.9732150206109642 0.1580472657677843 0.1669538422454788 -0.9834706541117561 -0.1260987934752365 -0.1299406279232339 0.9834706541117561 0.1260987934752365 0.1299406279232339 0.04371821291222033 0.8972403291110204 0.4393728595128624 -0.04371821291222033 -0.8972403291110204 -0.4393728595128624 0.06426401791437653 0.9662185050152043 0.2495835262345739 -0.06426401791437653 -0.9662185050152043 -0.2495835262345739 0.06429683232106599 0.9708344231682075 0.2309684830125767 -0.06429683232106599 -0.9708344231682075 -0.2309684830125767 0.7196515342741144 0.6620689141402413 -0.2092042593879843 0.774773632654447 0.6232414768956255 -0.1062820757248923 0.8171375224633035 0.5764241827179299 -0.004629358540970275 -0.8171375224633035 -0.5764241827179299 0.004629358540970275 -0.774773632654447 -0.6232414768956255 0.1062820757248923 -0.7196515342741144 -0.6620689141402413 0.2092042593879843 0.6594220440648094 0.6889046228283825 -0.3009534655840876 -0.6594220440648094 -0.6889046228283825 0.3009534655840876 6.682698108115185e-005 0.8714617897650312 0.4904633977308434 -6.682698108115185e-005 -0.8714617897650312 -0.4904633977308434 0.9335580875933367 -0.3287665807871548 0.1427649552467095 -0.9335580875933367 0.3287665807871548 -0.1427649552467095 -0.6593962739985512 0.6889030861991201 -0.3010134409991609 0.6593962739985512 -0.6889030861991201 0.3010134409991609 0.8221468749188605 -0.3070399146782842 0.4793756427432495 -0.8221468749188605 0.3070399146782842 -0.4793756427432495 -3.066889184531668e-005 -0.9199605775121815 -0.3920108861790355 -0.6076610753347634 -0.7932334874382245 -0.03909797858701984 0.6076610753347634 0.7932334874382245 0.03909797858701984 3.066889184531668e-005 0.9199605775121815 0.3920108861790355 -0.9333101311172105 -0.3394700156761205 -0.1170141342352701 0.9333101311172105 0.3394700156761205 0.1170141342352701 -0.7396277501350566 -0.6554808718826581 -0.1526290202618907 -0.8661382076886683 -0.2914696843078111 0.4060172758779682 -0.937610986303589 -0.3458318488782075 0.0358604331302899 0.937610986303589 0.3458318488782075 -0.0358604331302899 0.8661382076886683 0.2914696843078111 -0.4060172758779682 0.7396277501350566 0.6554808718826581 0.1526290202618907 -0.6855618799634182 -0.4195984413714799 0.5949302956982847 -0.3246028309346458 -0.2814634160625591 0.903001299870387 0.3246028309346458 0.2814634160625591 -0.903001299870387 0.6855618799634182 0.4195984413714799 -0.5949302956982847 0.1775873766266002 -0.8016168874161663 0.5708529490789194 0.3245524342354843 -0.2814434746436617 0.9030256297649164 -0.3245524342354843 0.2814434746436617 -0.9030256297649164 -0.1775873766266002 0.8016168874161663 -0.5708529490789194 0.6855484573798776 -0.4196354047042378 0.5949196918095591 -0.6855484573798776 0.4196354047042378 -0.5949196918095591 0.3674545694908423 -0.8965556991366327 0.2473156236591688 -0.3674545694908423 0.8965556991366327 -0.2473156236591688 -0.1776713711439905 -0.8016010428185574 0.5708490623869115 0.1776713711439905 0.8016010428185574 -0.5708490623869115 -0.3675432537537296 -0.8965097759246182 0.2473503149213933 0.3675432537537296 0.8965097759246182 -0.2473503149213933</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"174\" source=\"#ID1316\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1314\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1312\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1313\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"94\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1314\" />\r\n\t\t\t\t\t<p>0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 14 0 8 2 16 8 10 18 2 20 21 22 26 12 6 28 6 14 30 31 32 2 36 16 38 32 39 18 36 2 10 42 18 20 22 44 26 6 46 48 12 26 30 50 31 46 6 28 30 32 38 38 39 52 54 36 18 42 56 18 10 58 42 10 60 58 44 22 62 26 46 64 66 12 48 30 68 50 70 38 52 54 18 72 74 70 52 56 72 18 76 56 42 76 42 58 60 78 58 60 80 81 22 84 62 64 46 86 88 12 66 66 64 90 92 68 30 94 70 74 96 70 94 96 98 70 100 76 58 78 100 58 60 102 78 60 81 102 104 105 106 62 84 110 92 112 68 64 86 90 114 88 66 114 66 90 116 117 92 98 120 70 122 120 98 124 100 78 124 78 126 128 126 105 130 131 132 128 105 104 131 130 136 84 138 110 92 140 112 88 114 142 92 144 140 92 146 147 150 120 122 124 126 128 152 153 154 158 153 159 162 159 163 166 163 144 92 166 144 92 147 168 150 147 120 154 147 150 153 147 154 158 159 170 158 147 153 170 159 162 162 163 166 92 168 166 147 172 168 172 158 170 172 147 158 172 170 162 168 162 166 168 172 162</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"94\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1314\" />\r\n\t\t\t\t\t<p>3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 15 9 17 3 3 19 11 23 24 25 7 13 27 15 7 29 33 34 35 17 37 3 40 33 41 3 37 19 19 43 11 45 23 25 47 7 27 27 13 49 34 51 35 29 7 47 41 33 35 53 40 41 19 37 55 19 57 43 43 59 11 59 61 11 63 23 45 65 47 27 49 13 67 51 69 35 53 41 71 73 19 55 53 71 75 19 73 57 43 57 77 59 43 77 59 79 61 82 83 61 63 85 23 87 47 65 67 13 89 91 65 67 35 69 93 75 71 95 95 71 97 71 99 97 59 77 101 59 101 79 79 103 61 103 82 61 107 108 109 111 85 63 69 113 93 91 87 65 67 89 115 91 67 115 93 118 119 71 121 99 99 121 123 79 101 125 127 79 125 108 127 129 133 134 135 109 108 129 137 135 134 111 139 85 113 141 93 143 115 89 141 145 93 148 149 93 123 121 151 129 127 125 155 156 157 160 156 161 164 160 165 145 164 167 145 167 93 169 148 93 121 148 151 151 148 155 155 148 156 171 160 161 156 148 161 165 160 171 167 164 165 167 169 93 169 173 148 171 161 173 161 148 173 165 171 173 167 165 169 165 173 169</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1317\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1318\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID1321\">0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.082414269447327 0.1612508594989777</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID1321\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1319\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID1322\">-1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 -1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 -1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.0799147073227571 -0.9968017052320478 0 -0.0799147073227571 -0.9968017052320478 0 -0.0799147073227571 -0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1 0 0 -1 -0 -0 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 -1 0 0 1 -0 -0 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID1322\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1320\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1318\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1319\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1320\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 38 40 41 43 57 58 59 60 61 62 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1323\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1324\">\r\n\t\t\t\t\t<float_array count=\"966\" id=\"ID1327\">0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1117984429001808 1.667413234710693 0.115709200501442 0.1117984429001808 1.667413234710693 0.115709200501442 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1117984429001808 1.667413234710693 0.115709200501442 0.1117984429001808 1.667413234710693 0.115709200501442 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.09066395461559296 1.60400927066803 0.1203010678291321 0.1119078770279884 1.560610055923462 0.1241858452558518 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1115833297371864 1.673897385597229 0.2029488384723663 0.1115833297371864 1.673897385597229 0.2029488384723663 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.09066395461559296 1.60400927066803 0.1203010678291321 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09044858813285828 1.561036467552185 0.124122679233551 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1115833297371864 1.673897385597229 0.2029488384723663 0.1115833297371864 1.673897385597229 0.2029488384723663 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.07645327597856522 1.567093849182129 0.2114255875349045 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.1116053834557533 1.522350549697876 0.1273301094770432 0.1116053834557533 1.522350549697876 0.1273301094770432 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.05172950774431229 1.567497491836548 0.2110787779092789 -0.05172950774431229 1.567497491836548 0.2110787779092789 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.08998314291238785 1.525822281837463 0.126566618680954 0.1116053834557533 1.522350549697876 0.1273301094770432 0.1116053834557533 1.522350549697876 0.1273301094770432 -0.05172950774431229 1.567497491836548 0.2110787779092789 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.05172950774431229 1.567497491836548 0.2110787779092789 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1075886934995651 1.45469856262207 0.2205129116773605 -0.08888807147741318 1.61049234867096 0.2075405865907669 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.1117819771170616 1.44821560382843 0.1332732439041138 0.1117819771170616 1.44821560382843 0.1332732439041138 -0.09107325971126556 1.454367280006409 0.2200525850057602 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09107325971126556 1.454367280006409 0.2200525850057602 0.1117819771170616 1.44821560382843 0.1332732439041138 0.1117819771170616 1.44821560382843 0.1332732439041138 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09107325971126556 1.454367280006409 0.2200525850057602 -0.09107325971126556 1.454367280006409 0.2200525850057602 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.05548623204231262 1.409258842468262 0.2237561196088791 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.05548623204231262 1.409258842468262 0.2237561196088791 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09051128476858139 1.402777671813965 0.1365166902542114 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1079739183187485 1.36528754234314 0.227682426571846 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1079739183187485 1.36528754234314 0.227682426571846 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.09036904573440552 1.244997978210449 0.1491470038890839 0.08007287234067917 1.249786019325256 0.2368745058774948 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.08007287234067917 1.249786019325256 0.2368745058774948 0.08007287234067917 1.249786019325256 0.2368745058774948 0.08007287234067917 1.249786019325256 0.2368745058774948 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.06330171227455139 1.251481771469116 0.2363867312669754 0.1115483716130257 1.243325471878052 0.1499182283878326 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1120293214917183 1.201940059661865 0.1530233770608902 -0.08816695958375931 1.208342671394348 0.2397843152284622 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09032661467790604 1.131766676902771 0.1581645011901856 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09032661467790604 1.131766676902771 0.1581645011901856 0.1115765795111656 1.083741784095764 0.1624274700880051 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1092481017112732 1.136982560157776 0.2459899932146072 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.09032661467790604 1.131766676902771 0.1581645011901856 -0.09032661467790604 1.131766676902771 0.1581645011901856 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1117357686161995 1.130521655082703 0.1590335518121719 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.09047000855207443 1.083552598953247 0.162391409277916 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1115765795111656 1.083741784095764 0.1624274700880051 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 0.1115765795111656 1.083741784095764 0.1624274700880051 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.08826761692762375 1.138250350952148 0.245403990149498 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.05714914947748184 1.090012192726135 0.2493478506803513</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"322\" source=\"#ID1327\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1325\">\r\n\t\t\t\t\t<float_array count=\"966\" id=\"ID1328\">-0.0024166884015165 0.07992091046628912 0.9967982783328879 -0.0024166884015165 0.07992091046628912 0.9967982783328879 -0.0024166884015165 0.07992091046628912 0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 -0.003110631363261071 0.07783347408664396 0.9969615209646388 -0.003110631363261071 0.07783347408664396 0.9969615209646388 -0.003110631363261071 0.07783347408664396 0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.9836178943881302 -0.1019900524990053 0.1486400586339742 0.9383821690531233 -0.3444700849915576 0.02791532462760632 0.999993085877236 -0.00259857559576065 0.002660000488053514 -0.999993085877236 0.00259857559576065 -0.002660000488053514 -0.9383821690531233 0.3444700849915576 -0.02791532462760632 -0.9836178943881302 0.1019900524990053 -0.1486400586339742 -0.001995957895499944 0.07990977967405556 0.9968001019585238 -0.001995957895499944 0.07990977967405556 0.9968001019585238 -0.001995957895499944 0.07990977967405556 0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.9610347439268059 0.1218714046724881 0.2481120345503079 0.9654052662832268 0.0893224290906193 0.2449779081753355 -0.9654052662832268 -0.0893224290906193 -0.2449779081753355 -0.9610347439268059 -0.1218714046724881 -0.2481120345503079 0.9999930844790407 -0.002600124498239249 0.00265901235195945 -0.9999930844790407 0.002600124498239249 -0.00265901235195945 -0.9997677002701824 -0.001962063264229214 0.02146382547958299 -0.9997146380314173 -0.002416057679974692 0.02376563003581787 -0.9997652412158105 7.096798190734332e-007 0.02166708231831937 0.9997652412158105 -7.096798190734332e-007 -0.02166708231831937 0.9997146380314173 0.002416057679974692 -0.02376563003581787 0.9997677002701824 0.001962063264229214 -0.02146382547958299 -0.0001447480486744699 0.07898002261828373 0.9968761884382722 -0.0001242652016906591 0.08858072054682997 0.9960689938480989 -0.001884638334509741 0.08147407185733846 0.9966736796732084 0.001884638334509741 -0.08147407185733846 -0.9966736796732084 0.0001242652016906591 -0.08858072054682997 -0.9960689938480989 0.0001447480486744699 -0.07898002261828373 -0.9968761884382722 0.9559355522797811 0.2607780009126028 0.1348408474000981 -0.9559355522797811 -0.2607780009126028 -0.1348408474000981 -0.002445224016861097 0.07991358786941463 0.9967987958225796 -0.002445224016861097 0.07991358786941463 0.9967987958225796 -0.002445224016861097 0.07991358786941463 0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 -0.00244232132186794 0.07992222073353468 0.9967981108025743 -0.00244232132186794 0.07992222073353468 0.9967981108025743 -0.00244232132186794 0.07992222073353468 0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 -0.9569652647069851 -0.2408069165882212 0.1619552748988548 0.9569652647069851 0.2408069165882212 -0.1619552748988548 -0.9539867307263839 -0.1064385090943651 0.2803215321372131 0.9539867307263839 0.1064385090943651 -0.2803215321372131 -0.001398335844479897 0.07526812206716654 0.9971623511030429 0.001398335844479897 -0.07526812206716654 -0.9971623511030429 -0.002443871020245489 0.07991829436837256 0.9967984218083847 -0.002444424462418968 0.07991536596824644 0.9967986552314407 -0.002444424462418968 0.07991536596824644 0.9967986552314407 0.002444424462418968 -0.07991536596824644 -0.9967986552314407 0.002444424462418968 -0.07991536596824644 -0.9967986552314407 0.002443871020245489 -0.07991829436837256 -0.9967984218083847 0.9989575248213486 6.802289991542292e-005 0.04564930421912409 -0.9989575248213486 -6.802289991542292e-005 -0.04564930421912409 -0.002444750279150375 0.0799185331884759 0.996798400504874 -0.002444750279150375 0.0799185331884759 0.996798400504874 -0.002444750279150375 0.0799185331884759 0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 -0.9616780887009002 -0.0003991166626293087 0.2741807696000454 0.9616780887009002 0.0003991166626293087 -0.2741807696000454 -0.9791900689292776 0.1393278140334234 0.1475620857366297 0.9791900689292776 -0.1393278140334234 -0.1475620857366297 -0.002381608891005497 0.08090506957136846 0.9967189662370946 0.002381608891005497 -0.08090506957136846 -0.9967189662370946 -0.002445265856695502 0.07991799161119449 0.9967984426611648 -0.002444579976353827 0.07991582004189891 0.9967986184459579 0.002444579976353827 -0.07991582004189891 -0.9967986184459579 0.002445265856695502 -0.07991799161119449 -0.9967984426611648 -0.002443667558720246 0.07991812532567823 0.9967984358601753 -0.002444421147860942 0.07991555159334562 0.9967986403576118 0.002444421147860942 -0.07991555159334562 -0.9967986403576118 0.002443667558720246 -0.07991812532567823 -0.9967984358601753 0.9510292064959941 -0.3017074737471085 0.06720155263636195 -0.9510292064959941 0.3017074737471085 -0.06720155263636195 -0.002445270659689314 0.0799165646360902 0.9967985570556203 -0.002445270659689314 0.0799165646360902 0.9967985570556203 0.002445270659689314 -0.0799165646360902 -0.9967985570556203 0.002445270659689314 -0.0799165646360902 -0.9967985570556203 -0.9137266110828168 0.4050395357152827 -0.0323520433150555 0.9137266110828168 -0.4050395357152827 0.0323520433150555 -0.002394921818000142 0.07906623005156864 0.9968664883598597 0.002394921818000142 -0.07906623005156864 -0.9968664883598597 -0.002443729418870228 0.07991713631775732 0.9967985150015506 -0.002442987674479496 0.07991918003998787 0.9967983529646096 0.002442987674479496 -0.07991918003998787 -0.9967983529646096 0.002443729418870228 -0.07991713631775732 -0.9967985150015506 0.9802656257872744 -0.09160270883204402 0.1751806114686077 -0.9802656257872744 0.09160270883204402 -0.1751806114686077 -0.9999953927080971 0.001598781537811305 -0.00258039922741558 0.9999953927080971 -0.001598781537811305 0.00258039922741558 -0.002043259112987656 0.08061333388167614 0.9967433548776127 0.002043259112987656 -0.08061333388167614 -0.9967433548776127 -0.9667576730943045 -0.2181100199662426 0.1334451973793394 0.9667576730943045 0.2181100199662426 -0.1334451973793394 -0.002443338460478632 0.0799196743506909 0.9967983124729131 0.002443338460478632 -0.0799196743506909 -0.9967983124729131 0.9584067278384761 0.1063003813176155 0.2648712384644182 -0.9584067278384761 -0.1063003813176155 -0.2648712384644182 -0.002278182316047894 0.07872327552518302 0.9968939039716919 0.002278182316047894 -0.07872327552518302 -0.9968939039716919 -0.9623422278865017 -0.1024231927397928 0.2518073192252984 0.9623422278865017 0.1024231927397928 -0.2518073192252984 -0.002445857659568367 0.07991052514313757 0.9967990398027363 0.002445857659568367 -0.07991052514313757 -0.9967990398027363 0.9578191650142742 0.1254879398364993 0.2585250937277644 -0.9578191650142742 -0.1254879398364993 -0.2585250937277644 -0.001577468944671645 0.08182061186603903 0.9966458242854357 0.001577468944671645 -0.08182061186603903 -0.9966458242854357 -0.9669997358230092 -0.04406785290913275 0.2509373134035851 0.9669997358230092 0.04406785290913275 -0.2509373134035851 -0.002445817810539561 0.07992501388276625 0.9967978782737639 -0.002445817810539561 0.07992501388276625 0.9967978782737639 -0.002445817810539561 0.07992501388276625 0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.9610764950953273 0.2399997840510825 0.1368651680695834 -0.9610764950953273 -0.2399997840510825 -0.1368651680695834 -0.00158449559484253 0.07788846641257956 0.9969608197785942 -0.00158449559484253 0.07788846641257956 0.9969608197785942 -0.00158449559484253 0.07788846641257956 0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 -0.9840427171014795 0.124301408755054 0.1273149272514676 0.9840427171014795 -0.124301408755054 -0.1273149272514676 -0.9403492166118542 0.3390969407785543 -0.02750664596234511 0.9403492166118542 -0.3390969407785543 0.02750664596234511 -0.00244355684856112 0.07991609501014736 0.9967985989096581 -0.00244355684856112 0.07991609501014736 0.9967985989096581 -0.00244355684856112 0.07991609501014736 0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.9989802704922386 0.009779687184768413 0.0440769427912357 -0.9989802704922386 -0.009779687184768413 -0.0440769427912357 -0.002381196982845648 0.0817170499956124 0.9966527246944864 -0.002381196982845648 0.0817170499956124 0.9966527246944864 -0.002381196982845648 0.0817170499956124 0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 -0.9999969486514102 0.000139643403180076 -0.002466411885425263 0.9999969486514102 -0.000139643403180076 0.002466411885425263 -0.002443516755476382 0.07992008569338822 0.9967982790558114 -0.002443516755476382 0.07992008569338822 0.9967982790558114 -0.002443516755476382 0.07992008569338822 0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.9504660443541458 -0.30389861198688 0.06526815580534208 -0.9504660443541458 0.30389861198688 -0.06526815580534208 -0.002398955504286184 0.07991844676457421 0.9967985186983508 -0.002398955504286184 0.07991844676457421 0.9967985186983508 -0.002398955504286184 0.07991844676457421 0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 -0.968220462326018 -0.2223397110796081 0.1145172004994391 0.968220462326018 0.2223397110796081 -0.1145172004994391 -0.002443761099980847 0.07992071991256082 0.9967982276069437 -0.002443761099980847 0.07992071991256082 0.9967982276069437 -0.002443761099980847 0.07992071991256082 0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.9833765888465397 -0.08333360548540723 0.1613257409880592 -0.9833765888465397 0.08333360548540723 -0.1613257409880592 -0.003795766429472628 0.08361081189266659 0.996491256505476 -0.003795766429472628 0.08361081189266659 0.996491256505476 -0.003795766429472628 0.08361081189266659 0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 -0.9784827002644059 -0.0745133946312441 0.1924041561500301 0.9784827002644059 0.0745133946312441 -0.1924041561500301 -0.002444991716577943 0.07991751699015108 0.9967984813860998 -0.002445551076435985 0.07990965451043451 0.9967991103507042 -0.002443767676182471 0.07991733785490238 0.9967984987497376 0.002443767676182471 -0.07991733785490238 -0.9967984987497376 0.002445551076435985 -0.07990965451043451 -0.9967991103507042 0.002444991716577943 -0.07991751699015108 -0.9967984813860998 0.9693050042447923 0.08319554462812245 0.2313575373745867 -0.9693050042447923 -0.08319554462812245 -0.2313575373745867 -0.003456718727903946 0.07669146954277205 0.9970488802435948 -0.003213004740076926 0.08123887225724388 0.9966894813505917 -0.00380606245701583 0.07821620482660538 0.9969291545496579 0.00380606245701583 -0.07821620482660538 -0.9969291545496579 0.003213004740076926 -0.08123887225724388 -0.9966894813505917 0.003456718727903946 -0.07669146954277205 -0.9970488802435948 -0.9739892050184895 -0.0922701735317274 0.2069571056617187 0.9739892050184895 0.0922701735317274 -0.2069571056617187 -0.002809236550367398 0.07987191534697595 0.9968011764282834 0.002809236550367398 -0.07987191534697595 -0.9968011764282834 -0.002446251211139701 0.07991196601776093 0.996798923325155 0.002446251211139701 -0.07991196601776093 -0.996798923325155 0.9685060428241819 0.1121048662211712 0.2223253111604196 -0.9685060428241819 -0.1121048662211712 -0.2223253111604196 -0.9609854155315478 0.1850092940482606 0.2056175874078444 0.9609854155315478 -0.1850092940482606 -0.2056175874078444 -0.002730819450908612 0.0795900882636436 0.996823936548131 0.002730819450908612 -0.0795900882636436 -0.996823936548131 -0.002446316978625154 0.07991709286511523 0.9967985121383503 0.002446316978625154 -0.07991709286511523 -0.9967985121383503 0.9665484020399958 0.2298013491319769 0.1139101683391513 -0.9665484020399958 -0.2298013491319769 -0.1139101683391513 -0.8667040419528477 0.4987022577925894 -0.01096183083112856 0.8667040419528477 -0.4987022577925894 0.01096183083112856 -0.002935468462640064 0.07965440775023729 0.9968182173048723 0.002935468462640064 -0.07965440775023729 -0.9968182173048723 0.9995874389300169 0.005994783610162951 0.02808940196580926 -0.9995874389300169 -0.005994783610162951 -0.02808940196580926 -0.002445480732065667 0.07991923298229058 0.9967983426067238 -0.002446450689720361 0.07991678813471327 0.9967985362415288 0.002446450689720361 -0.07991678813471327 -0.9967985362415288 0.002445480732065667 -0.07991923298229058 -0.9967983426067238 -0.9996776451341545 0.001994494988195014 0.02531062640026721 -0.9995283515176999 -0.004230687603517372 0.03041670256143396 -0.9996516075833083 6.011857201776541e-005 0.02639431457463623 0.9996516075833083 -6.011857201776541e-005 -0.02639431457463623 0.9995283515176999 0.004230687603517372 -0.03041670256143396 0.9996776451341545 -0.001994494988195014 -0.02531062640026721 -0.5499063532088864 -0.8312969104678514 -0.08092248974857767 -0.5053849952022258 -0.8592625535158552 0.07908141848663544 -0.5211302495544821 -0.8530062356488047 0.02834827937528588 0.5211302495544821 0.8530062356488047 -0.02834827937528588 0.5053849952022258 0.8592625535158552 -0.07908141848663544 0.5499063532088864 0.8312969104678514 0.08092248974857767 -0.003264430936771524 0.07768920491457423 0.996972281926835 0.003264430936771524 -0.07768920491457423 -0.996972281926835 0.9600985396372078 -0.2755269031283226 0.04791367069028046 -0.9600985396372078 0.2755269031283226 -0.04791367069028046 -0.002445359849831862 0.07991908453884576 0.9967983548048611 -0.0024464506121011 0.07991642136050764 0.9967985656472086 0.0024464506121011 -0.07991642136050764 -0.9967985656472086 0.002445359849831862 -0.07991908453884576 -0.9967983548048611 -0.9724788741558994 -0.1821300782318736 0.1453047622197095 0.9724788741558994 0.1821300782318736 -0.1453047622197095 -0.002295832167474499 0.08251084577785184 0.9965875222396087 0.002295832167474499 -0.08251084577785184 -0.9965875222396087 -0.5630349425936618 -0.8140319658878363 -0.142631034250392 0.5630349425936618 0.8140319658878363 0.142631034250392 0.9856814792948521 -0.08674609407977396 0.14459300307074 -0.9856814792948521 0.08674609407977396 -0.14459300307074 -0.002444373616892614 0.0799221279444856 0.9967981132117207 0.002444373616892614 -0.0799221279444856 -0.9967981132117207 -0.9728132926628291 -0.180687705249497 0.1448663204135999 0.9728132926628291 0.180687705249497 -0.1448663204135999 -0.003308252190807438 0.07460958167797054 0.9972073334012742 0.003308252190807438 -0.07460958167797054 -0.9972073334012742 0.9409405930065078 0.02131297530999618 0.3379002182834409 0.9174339737188549 -0.365243963553171 0.1578345683125247 -0.9174339737188549 0.365243963553171 -0.1578345683125247 -0.9409405930065078 -0.02131297530999618 -0.3379002182834409 -0.002444379353908034 0.07992126607955948 0.9967981823006173 -0.002444379353908034 0.07992126607955948 0.9967981823006173 0.002444379353908034 -0.07992126607955948 -0.9967981823006173 0.002444379353908034 -0.07992126607955948 -0.9967981823006173 -0.8017203786756358 -0.4891027836453612 0.3435446134733509 0.8017203786756358 0.4891027836453612 -0.3435446134733509 -0.0002595716808050765 0.08733536323079442 0.9961789332001998 0.0002595716808050765 -0.08733536323079442 -0.9961789332001998 -0.002445010281564422 0.07991906958635045 0.9967983568611936 -0.002444552802717854 0.0799211787639864 0.9967981888760481 -0.002444462435903807 0.07992097684034019 0.996798205287452 0.002444462435903807 -0.07992097684034019 -0.996798205287452 0.002444552802717854 -0.0799211787639864 -0.9967981888760481 0.002445010281564422 -0.07991906958635045 -0.9967983568611936</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"322\" source=\"#ID1328\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1326\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1324\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1325\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"204\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1326\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 18 19 20 21 22 23 24 25 12 17 26 27 14 13 28 29 16 15 12 25 13 16 26 17 30 31 32 33 34 35 36 37 38 39 40 41 24 42 25 26 43 27 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 30 32 33 35 63 64 30 62 63 35 65 66 36 38 39 41 67 68 69 70 71 72 73 74 42 24 27 43 75 76 77 78 79 80 81 82 83 84 85 86 87 88 64 62 63 65 89 90 64 88 89 65 91 92 66 38 39 67 93 68 94 95 96 97 73 98 68 99 100 73 101 74 102 42 43 103 75 94 104 105 106 107 97 90 88 108 109 89 91 66 92 110 111 93 67 112 113 98 101 114 115 116 102 74 75 103 117 118 90 108 109 91 119 120 66 110 111 67 121 122 118 108 109 119 123 124 112 98 101 115 125 116 126 102 103 127 117 128 120 110 111 121 129 130 118 122 123 119 131 132 112 124 125 115 133 134 126 116 117 127 135 136 120 128 129 121 137 138 130 122 123 131 139 140 141 142 143 144 145 140 141 142 143 144 145 134 146 126 127 147 135 148 149 150 151 152 153 148 149 150 151 152 153 154 130 138 139 131 155 156 154 138 139 155 157 158 159 160 161 162 163 164 165 166 167 168 169 170 146 134 135 147 171 172 173 174 175 176 177 178 179 180 181 182 183 184 154 156 157 155 185 186 187 188 189 190 191 192 193 194 195 196 197 170 198 146 147 199 171 200 201 202 203 204 205 200 201 202 203 204 205 206 184 156 157 185 207 208 209 210 211 212 213 214 215 216 217 218 219 220 198 170 171 199 221 222 223 224 225 226 227 222 223 224 225 226 227 228 184 206 207 185 229 230 231 232 233 234 235 220 236 198 199 237 221 238 239 240 241 242 243 244 228 206 207 229 245 246 239 238 243 242 247 248 231 230 235 234 249 250 236 220 221 237 251 252 228 244 245 229 253 246 238 254 255 243 247 248 230 256 257 235 249 250 258 236 237 259 251 260 252 244 245 253 261 262 246 254 255 247 263 264 258 250 251 259 265 266 248 267 268 249 269 270 271 272 273 274 275 276 277 278 279 280 281 282 262 254 255 263 283 264 284 258 259 285 265 286 266 287 288 269 289 290 270 272 273 275 291 292 262 282 283 263 293 276 278 294 295 279 281 296 284 264 265 285 297 298 266 286 289 269 299 300 270 290 291 275 301 302 292 282 283 293 303 304 305 296 297 306 307 296 305 284 285 306 297 308 309 286 289 310 311 312 300 290 291 301 313 314 292 302 303 293 315 316 317 318 319 320 321</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1329\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1330\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID1333\">0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.062657833099365 0.1071692258119583</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID1333\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1331\">\r\n\t\t\t\t\t<float_array count=\"192\" id=\"ID1334\">0 -0.07991391507360633 -0.9968017687472311 0 -0.07991391507360633 -0.9968017687472311 0 -0.07991391507360633 -0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 1 0 0 -1 -0 -0 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 1.147561669525629e-017 0.07991600494652802 0.996801601199249 1.147561669525629e-017 0.07991600494652802 0.996801601199249 1.147561669525629e-017 0.07991600494652802 0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1 0 0 1 -0 -0 5.737808347628146e-018 0.07991600494652806 0.996801601199249 5.737808347628146e-018 0.07991600494652806 0.996801601199249 5.737808347628146e-018 0.07991600494652806 0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"64\" source=\"#ID1334\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1332\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1330\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1331\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1332\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 38 40 41 43 57 58 59 60 61 62 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1335\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1336\">\r\n\t\t\t\t\t<float_array count=\"282\" id=\"ID1339\">0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.0440603718161583 1.045381546020508 0.2065596729516983 0.0440603718161583 1.045381546020508 0.2065596729516983 0.07561483234167099 1.003175139427185 0.2072263807058334 0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.06279636174440384 1.001669645309448 0.1831667721271515 0.002107266336679459 0.9911500215530396 0.2126912921667099 0.002107266336679459 0.9911500215530396 0.2126912921667099 0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.03254434466362 1.04327380657196 0.1803381443023682 0.03254434466362 1.04327380657196 0.1803381443023682 0.03597279638051987 1.047588586807251 0.2340257316827774 0.03597279638051987 1.047588586807251 0.2340257316827774 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03010775707662106 1.00167453289032 0.1743656992912293 0.0719255730509758 1.00575578212738 0.235799714922905 0.0719255730509758 1.00575578212738 0.235799714922905 0.04405999183654785 1.087227463722229 0.2031978219747543 0.04405999183654785 1.087227463722229 0.2031978219747543 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03597242385149002 1.089434146881104 0.2306637018918991 0.03597242385149002 1.089434146881104 0.2306637018918991 0.0719255730509758 1.00575578212738 0.235799714922905 0.0719255730509758 1.00575578212738 0.235799714922905 -0.02109381183981895 1.000947713851929 0.1777425706386566 -0.02109381183981895 1.000947713851929 0.1777425706386566 0.04016397893428803 1.007267832756043 0.2528495788574219 0.04016397893428803 1.007267832756043 0.2528495788574219 0.03254392743110657 1.085119843482971 0.1769760102033615 0.03254392743110657 1.085119843482971 0.1769760102033615 0.006812980398535729 1.042252779006958 0.1676288843154907 0.006812980398535729 1.042252779006958 0.1676288843154907 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206574775278568 1.048860192298889 0.2498844712972641 0.01206574775278568 1.048860192298889 0.2498844712972641 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.02109381183981895 1.000947713851929 0.1777425706386566 -0.02109381183981895 1.000947713851929 0.1777425706386566 0.04016397893428803 1.007267832756043 0.2528495788574219 0.04016397893428803 1.007267832756043 0.2528495788574219 -0.0164741575717926 1.006759405136108 0.2500763237476349 -0.0164741575717926 1.006759405136108 0.2500763237476349 0.03254392743110657 1.085119843482971 0.1769760102033615 0.04405999183654785 1.087227463722229 0.2031978219747543 0.002163510769605637 1.087440609931946 0.2058562785387039 0.002163510769605637 1.087440609931946 0.2058562785387039 0.04405999183654785 1.087227463722229 0.2031978219747543 0.03254392743110657 1.085119843482971 0.1769760102033615 0.03597242385149002 1.089434146881104 0.2306637018918991 0.03597242385149002 1.089434146881104 0.2306637018918991 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206542737782002 1.090707302093506 0.2465221434831619 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.02109413221478462 1.042794585227966 0.1743806302547455 -0.02109413221478462 1.042794585227966 0.1743806302547455 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.0164746418595314 1.048605918884277 0.2467141896486282 -0.0164746418595314 1.048605918884277 0.2467141896486282 -0.0164741575717926 1.006759405136108 0.2500763237476349 -0.0164741575717926 1.006759405136108 0.2500763237476349 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03811760619282723 1.044645190238953 0.1974330991506577 -0.03811760619282723 1.044645190238953 0.1974330991506577 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03629376366734505 1.046942353248596 0.2259997576475143 -0.03629376366734505 1.046942353248596 0.2259997576475143 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"94\" source=\"#ID1339\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1337\">\r\n\t\t\t\t\t<float_array count=\"282\" id=\"ID1340\">0.6276871539837947 0.4309998440177499 -0.6482653555299707 0.7756951975660233 0.6093867961617383 -0.1641483875544934 0.9404190385916551 0.327759812088853 -0.09047395997648566 -0.9404190385916551 -0.327759812088853 0.09047395997648566 -0.7756951975660233 -0.6093867961617383 0.1641483875544934 -0.6276871539837947 -0.4309998440177499 0.6482653555299707 0.1648427918008577 -0.9850664580310059 0.04970842236027692 0.129387054397268 -0.9878566338463108 -0.08601314504326615 -0.05568244469267168 -0.9964744984836782 0.06275379848861432 0.05568244469267168 0.9964744984836782 -0.06275379848861432 -0.129387054397268 0.9878566338463108 0.08601314504326615 -0.1648427918008577 0.9850664580310059 -0.04970842236027692 0.6563058127916149 0.128948669986271 -0.7433941892459947 -0.6563058127916149 -0.128948669986271 0.7433941892459947 0.7479255132941836 0.3269821441431697 0.5776591589987712 -0.7479255132941836 -0.3269821441431697 -0.5776591589987712 0.03982993058637029 -0.9705873949438616 -0.2374314330613652 -0.03982993058637029 0.9705873949438616 0.2374314330613652 0.1452430843573787 -0.9735269213220822 0.1764930024321196 -0.1452430843573787 0.9735269213220822 -0.1764930024321196 0.997980356608158 -0.00507857796887716 -0.06331994843702948 -0.997980356608158 0.00507857796887716 0.06331994843702948 0.1918851097947965 0.01069227642552562 -0.9813591492740459 -0.1918851097947965 -0.01069227642552562 0.9813591492740459 0.8053359431313069 0.04748302428073999 0.5909140217544032 -0.8053359431313069 -0.04748302428073999 -0.5909140217544032 0.715602061077506 0.6137473135264319 0.3335085086181657 -0.715602061077506 -0.6137473135264319 -0.3335085086181657 -0.1366997851774793 -0.9737080860083718 -0.1822244000520906 0.1366997851774793 0.9737080860083718 0.1822244000520906 0.07059561893914663 -0.9470573698230294 0.3132069553034937 -0.07059561893914663 0.9470573698230294 -0.3132069553034937 0.7236637528950451 -0.05526205440008075 -0.687936681744288 -0.7236637528950451 0.05526205440008075 0.687936681744288 0.08437475756259349 -0.0702733835124722 -0.9939529927798209 -0.08437475756259349 0.0702733835124722 0.9939529927798209 0.2358549030278205 0.07783122909426544 0.968666487752835 -0.2358549030278205 -0.07783122909426544 -0.968666487752835 0.1654666873681945 0.1148860508075438 0.9795008783565447 -0.1654666873681945 -0.1148860508075438 -0.9795008783565447 -0.2772541405953719 -0.9607904196022034 -0.003451249533688699 0.2772541405953719 0.9607904196022034 0.003451249533688699 -0.5103626176939258 -0.1084744471579512 -0.8530904364569917 0.5103626176939258 0.1084744471579512 0.8530904364569917 0.2995652230669426 0.2766979128121305 0.913071159425301 -0.2995652230669426 -0.2766979128121305 -0.913071159425301 -0.1158973363211239 -0.9357427097883285 0.333096665416609 0.1158973363211239 0.9357427097883285 -0.333096665416609 1.970778470046658e-005 0.9967884877806362 -0.08007939959562506 -1.150195081025581e-005 0.9967868070093873 -0.08010031984790116 -7.282118987466312e-007 0.9967885040606478 -0.08007919937165804 7.282118987466312e-007 -0.9967885040606478 0.08007919937165804 1.150195081025581e-005 -0.9967868070093873 0.08010031984790116 -1.970778470046658e-005 -0.9967884877806362 0.08007939959562506 -1.889549755688283e-005 0.9967887057027286 -0.08007668715949433 1.889549755688283e-005 -0.9967887057027286 0.08007668715949433 2.329386935487206e-005 0.9967886177533125 -0.08007778078116733 -2.329386935487206e-005 -0.9967886177533125 0.08007778078116733 -0.2605487185606611 -0.9462888235931847 0.1914466703785265 0.2605487185606611 0.9462888235931847 -0.1914466703785265 -0.9595220654229494 -0.02256570486844812 -0.2807279731880444 -0.5540160790910454 -0.06667433737339892 -0.8298317400801218 0.5540160790910454 0.06667433737339892 0.8298317400801218 0.9595220654229494 0.02256570486844812 0.2807279731880444 -0.4357782588810896 0.063090866032614 0.8978401036430822 0.4357782588810896 -0.063090866032614 -0.8978401036430822 -0.4168015697498971 0.07279112339523536 0.9060783099759541 0.4168015697498971 -0.07279112339523536 -0.9060783099759541 1.845361895121706e-005 0.9967908784027425 -0.08004963705447339 -1.845361895121706e-005 -0.9967908784027425 0.08004963705447339 0.1107318538263125 -0.07958489032305821 -0.9906587211449031 -0.1107318538263125 0.07958489032305821 0.9906587211449031 7.579804948945358e-006 0.9967850151258243 -0.08012261580325931 -7.579804948945358e-006 -0.9967850151258243 0.08012261580325931 -0.4439788070510328 0.07175525117515293 0.8931595617907993 0.4439788070510328 -0.07175525117515293 -0.8931595617907993 -0.9160709345376484 0.03210037665102224 0.3997294193753845 -0.9595223797540715 -0.02256522993427959 -0.2807269369852064 0.9595223797540715 0.02256522993427959 0.2807269369852064 0.9160709345376484 -0.03210037665102224 -0.3997294193753845 -0.9160688904640111 0.03210634924118765 0.3997336241329201 0.9160688904640111 -0.03210634924118765 -0.3997336241329201 -7.835666853594533e-006 0.9967902102202908 -0.08005795867739281 7.835666853594533e-006 -0.9967902102202908 0.08005795867739281 -3.309266463157973e-005 0.9967870438756097 -0.08009736616518035 3.309266463157973e-005 -0.9967870438756097 0.08009736616518035 -0.5540120246036621 -0.06667498928042141 -0.8298343945625578 0.5540120246036621 0.06667498928042141 0.8298343945625578 -0.9160696316409548 0.03210638439341102 0.3997319227512211 0.9160696316409548 -0.03210638439341102 -0.3997319227512211 -4.263568844941531e-006 0.9967907668418901 -0.08005102822936799 4.263568844941531e-006 -0.9967907668418901 0.08005102822936799 -0.9595207149823204 -0.02256288350226006 -0.2807328156947099 0.9595207149823204 0.02256288350226006 0.2807328156947099</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"94\" source=\"#ID1340\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1338\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1336\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1337\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"108\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1338\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 7 16 8 9 17 10 6 8 18 19 9 11 12 2 20 21 3 13 12 22 0 5 23 13 2 14 24 25 15 3 1 26 14 15 27 4 16 28 8 9 29 17 18 8 30 31 9 19 32 12 20 21 13 33 20 2 24 25 3 21 34 22 12 13 23 35 36 24 14 15 25 37 38 14 26 27 15 39 28 40 8 9 41 29 34 42 22 23 43 35 44 38 26 27 39 45 8 46 30 31 47 9 48 49 50 51 52 53 32 34 12 13 35 33 50 49 54 55 52 51 50 54 56 57 55 51 38 36 14 15 37 39 8 40 58 59 41 9 60 42 61 62 43 63 61 42 34 35 43 62 64 38 44 45 39 65 66 64 44 45 65 67 8 58 46 47 59 9 68 48 50 51 53 69 70 34 32 33 35 71 72 50 56 57 51 73 74 36 38 39 37 75 76 60 77 78 63 79 60 61 77 78 62 63 70 61 34 35 62 71 64 74 38 39 75 65 66 80 64 65 81 67 66 76 80 81 79 67 82 68 50 51 69 83 84 50 72 73 51 85 76 77 80 81 78 79 77 61 86 87 62 78 86 61 70 71 62 87 64 88 74 75 89 65 64 80 88 89 81 65 90 82 50 51 83 91 90 50 84 85 51 91 80 77 92 93 78 81 77 86 92 93 87 78 80 92 88 89 93 81</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1341\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1342\">\r\n\t\t\t\t\t<float_array count=\"438\" id=\"ID1345\">-0.2801137268543243 1.370505452156067 0.08972623944282532 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2717342674732208 1.375396370887756 0.1507259011268616 -0.2717342674732208 1.375396370887756 0.1507259011268616 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"146\" source=\"#ID1345\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1343\">\r\n\t\t\t\t\t<float_array count=\"438\" id=\"ID1346\">-0.1356700480673765 -0.07917526411310574 -0.987585396616422 -0.1356717587444433 -0.07918105062319039 -0.9875846976849111 -0.131471833847658 -0.3228375455041391 -0.9372785477741379 0.131471833847658 0.3228375455041391 0.9372785477741379 0.1356717587444433 0.07918105062319039 0.9875846976849111 0.1356700480673765 0.07917526411310574 0.987585396616422 0.9907549594614613 -0.01084161144827005 -0.1352296926112117 0.9907553066324637 -0.01084267929951237 -0.1352270634348798 0.9907545025340931 -0.01084171762083586 -0.1352330317172986 -0.9907545025340931 0.01084171762083586 0.1352330317172986 -0.9907553066324637 0.01084267929951237 0.1352270634348798 -0.9907549594614613 0.01084161144827005 0.1352296926112117 -0.1314728281855081 -0.3228414075762337 -0.9372770780314113 0.1314728281855081 0.3228414075762337 0.9372770780314113 -0.1314692192096207 0.1693882077956309 -0.9767412551234831 0.1314692192096207 -0.1693882077956309 0.9767412551234831 0.9907553387548729 -0.01084410526579882 -0.1352267137428888 -0.9907553387548729 0.01084410526579882 0.1352267137428888 0.9907553433962273 -0.0108397264534755 -0.1352270308120293 -0.9907553433962273 0.0108397264534755 0.1352270308120293 -0.9907545485809562 0.01084668739650943 0.135232295841888 -0.9907535624333586 0.01084306642662415 0.1352398108401405 -0.9907537588504309 0.01084231220904852 0.1352384323692929 0.9907537588504309 -0.01084231220904852 -0.1352384323692929 0.9907535624333586 -0.01084306642662415 -0.1352398108401405 0.9907545485809562 -0.01084668739650943 -0.135232295841888 -0.1152753808899663 -0.5929332692716832 -0.7969577935822366 0.1152753808899663 0.5929332692716832 0.7969577935822366 -0.9907546911898524 0.01083669708757584 0.1352320519756046 0.9907546911898524 -0.01083669708757584 -0.1352320519756046 -0.1314704096508954 0.1693831609902619 -0.9767419701022235 0.1314704096508954 -0.1693831609902619 0.9767419701022235 0.9907552515571781 -0.01084377265302208 -0.1352273792784672 0.9907545280392873 -0.01084287687524467 -0.1352327519157898 -0.9907545280392873 0.01084287687524467 0.1352327519157898 -0.9907552515571781 0.01084377265302208 0.1352273792784672 0.9907553910903142 -0.01083804725477862 -0.1352268159692522 -0.9907553910903142 0.01083804725477862 0.1352268159692522 -0.990752856690359 0.0108439365066572 0.1352449111831305 0.990752856690359 -0.0108439365066572 -0.1352449111831305 -0.1152730989501126 -0.5929230807293835 -0.7969657037770286 0.1152730989501126 0.5929230807293835 0.7969657037770286 -0.9907528892232725 0.01084143558253761 0.1352448733603154 0.9907528892232725 -0.01084143558253761 -0.1352448733603154 -0.11527371476005 0.4583767681188761 -0.8812506505724197 0.11527371476005 -0.4583767681188761 0.8812506505724197 0.990754380856577 -0.01084218444689922 -0.1352338857310568 -0.990754380856577 0.01084218444689922 0.1352338857310568 -0.07441361952230829 -0.8769020836287289 -0.4748740348315358 0.07441361952230829 0.8769020836287289 0.4748740348315358 -0.1152751037892964 0.4583732049641491 -0.8812523222194998 0.1152751037892964 -0.4583732049641491 0.8812523222194998 0.9907553006407596 -0.01083849785456402 -0.1352274425421666 0.9907544045609922 -0.0108406531823145 -0.1352338348253676 -0.9907544045609922 0.0108406531823145 0.1352338348253676 -0.9907553006407596 0.01083849785456402 0.1352274425421666 -0.9907530489548243 0.01084127892656997 0.1352437157799057 0.9907530489548243 -0.01084127892656997 -0.1352437157799057 -0.9907530808765145 0.01084411850094725 0.1352432542777355 0.9907530808765145 -0.01084411850094725 -0.1352432542777355 0.9907542375847659 -0.01084303923369326 -0.1352348668354655 -0.9907542375847659 0.01084303923369326 0.1352348668354655 -0.07441248060794727 -0.8769001220509307 -0.4748778355291333 3.192874926016029e-006 -0.9968024692705665 0.07990517659017407 -3.192874926016029e-006 0.9968024692705665 -0.07990517659017407 0.07441248060794727 0.8769001220509307 0.4748778355291333 -0.0744176951841353 0.7900494079782563 -0.6085096051803028 0.0744176951841353 -0.7900494079782563 0.6085096051803028 -0.07441523278592301 0.7900546838570458 -0.608503056397386 0.07441523278592301 -0.7900546838570458 0.608503056397386 0.9907543028327227 -0.01084167648458662 -0.1352344980744529 -0.9907543028327227 0.01084167648458662 0.1352344980744529 -0.9907538262053057 0.0108422411242947 0.1352379446270524 -0.9907538262053057 0.0108422411242947 0.1352379446270524 0.9907538262053057 -0.0108422411242947 -0.1352379446270524 0.9907538262053057 -0.0108422411242947 -0.1352379446270524 -0.9907539146927812 0.01084211309693643 0.1352373066299488 0.9907539146927812 -0.01084211309693643 -0.1352373066299488 0.9907538401461802 -0.0108431721144034 -0.1352377678538621 -0.9907538401461802 0.0108431721144034 0.1352377678538621 2.928640909464708e-006 -0.9968023333952469 0.07990687160197312 0.07441770000105559 -0.7900488052496225 0.6085103871341859 -0.07441770000105559 0.7900488052496225 -0.6085103871341859 -2.928640909464708e-006 0.9968023333952469 -0.07990687160197312 -1.162098143399065e-006 0.9968021881199078 -0.07990868387111294 1.162098143399065e-006 -0.9968021881199078 0.07990868387111294 5.807865462094241e-006 0.9968037713732912 -0.07988893128745632 -5.807865462094241e-006 -0.9968037713732912 0.07988893128745632 0.9907543186649002 -0.01084091741884598 -0.1352344429365815 -0.9907543186649002 0.01084091741884598 0.1352344429365815 -0.9907542998263837 0.01084096646404351 0.1352345770195546 -0.9907537518170448 0.01084228453618815 0.1352384861142942 -0.9907537518170448 0.01084228453618815 0.1352384861142942 0.9907537518170448 -0.01084228453618815 -0.1352384861142942 0.9907537518170448 -0.01084228453618815 -0.1352384861142942 0.9907542998263837 -0.01084096646404351 -0.1352345770195546 -0.9907543337021733 0.01084276611543772 0.1352341845589668 -0.9907538409807305 0.01084215611410985 0.1352378431975552 -0.9907538409807305 0.01084215611410985 0.1352378431975552 0.9907538409807305 -0.01084215611410985 -0.1352378431975552 0.9907538409807305 -0.01084215611410985 -0.1352378431975552 0.9907543337021733 -0.01084276611543772 -0.1352341845589668 0.9907541247954318 -0.0108440271202516 -0.1352356139360237 -0.9907541247954318 0.0108440271202516 0.1352356139360237 0.07441831678586862 -0.7900528107385049 0.6085051112118504 0.11527576302403 -0.4583805966872975 0.881248391226801 -0.11527576302403 0.4583805966872975 -0.881248391226801 -0.07441831678586862 0.7900528107385049 -0.6085051112118504 0.07441513256072134 0.8769111714498417 0.474857015776788 -0.07441513256072134 -0.8769111714498417 -0.474857015776788 0.07442050729758486 0.876903121439521 0.4748710390234334 -0.07442050729758486 -0.876903121439521 -0.4748710390234334 0.9907539142897456 -0.0108411707924452 -0.1352373851248114 -0.9907539142897456 0.0108411707924452 0.1352373851248114 -0.9907541204724976 0.01084425063052422 0.1352356276837962 0.9907541204724976 -0.01084425063052422 -0.1352356276837962 -0.9907540773735396 0.01083963900090975 0.1352363131486376 0.9907540773735396 -0.01083963900090975 -0.1352363131486376 0.9907535193266759 -0.01084215616411869 -0.1352401996135736 -0.9907535193266759 0.01084215616411869 0.1352401996135736 0.1152759311751334 -0.4583833867458709 0.8812469179787758 0.1314739000021054 -0.1693891771649449 0.9767404569677756 -0.1314739000021054 0.1693891771649449 -0.9767404569677756 -0.1152759311751334 0.4583833867458709 -0.8812469179787758 0.1152753987928035 0.5929345763565147 0.7969568185253705 -0.1152753987928035 -0.5929345763565147 -0.7969568185253705 0.1152756976317288 0.5929321630903564 0.7969585707604311 -0.1152756976317288 -0.5929321630903564 -0.7969585707604311 0.9907541370054225 -0.0108397014107838 -0.1352358712766903 -0.9907541370054225 0.0108397014107838 0.1352358712766903 -0.9907528498073734 0.01084446748582026 0.1352449190303184 0.9907528498073734 -0.01084446748582026 -0.1352449190303184 -0.9907528440645809 0.01084106895587919 0.135245233564213 0.9907528440645809 -0.01084106895587919 -0.135245233564213 0.1314730277390396 -0.1693844129615158 0.9767414005881046 0.1356732411329711 0.07917733423144563 0.987584791997364 -0.1356732411329711 -0.07917733423144563 -0.987584791997364 -0.1314730277390396 0.1693844129615158 -0.9767414005881046 0.131473404914537 0.3228332179285216 0.937279817985053 -0.131473404914537 -0.3228332179285216 -0.937279817985053 0.1314713272349154 0.322840250832319 0.9372776870050918 -0.1314713272349154 -0.322840250832319 -0.9372776870050918 -0.9907544778676863 0.01084184676513502 0.1352332020764488 0.9907544778676863 -0.01084184676513502 -0.1352332020764488 0.1356735801070929 0.07917500836808616 0.987584931897423 -0.1356735801070929 -0.07917500836808616 -0.987584931897423</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"146\" source=\"#ID1346\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1344\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1342\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1343\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"128\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1344\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 14 0 30 31 5 15 32 33 8 9 34 35 18 8 36 37 9 19 38 20 22 23 25 39 12 40 26 27 41 13 22 28 42 43 29 23 44 14 30 31 15 45 33 46 8 9 47 34 26 40 48 49 41 27 44 30 50 51 31 45 52 8 53 54 9 55 56 38 22 23 39 57 22 42 58 59 43 23 46 60 8 9 61 47 48 62 63 64 65 49 48 40 62 65 41 49 66 44 50 51 45 67 66 50 68 69 51 67 53 8 70 71 9 54 72 56 73 74 57 75 22 58 76 77 59 23 60 78 8 9 79 61 63 80 81 82 83 64 63 62 80 83 65 64 66 68 84 85 69 67 68 86 84 85 87 69 8 88 70 71 89 9 90 91 92 93 94 95 96 97 98 99 100 101 78 102 8 9 103 79 81 104 105 106 107 82 81 80 104 107 83 82 84 86 108 109 87 85 86 110 108 109 111 87 8 112 88 89 113 9 114 90 22 23 95 115 116 22 96 101 23 117 8 102 118 119 103 9 105 120 121 122 123 106 104 120 105 106 123 107 108 110 124 125 111 109 110 126 124 125 127 111 8 128 112 113 129 9 130 114 22 23 115 131 132 22 116 117 23 133 8 118 128 129 119 9 121 134 135 136 137 122 120 134 121 122 137 123 138 124 126 127 125 139 138 126 140 141 127 139 130 22 142 143 23 131 142 22 132 133 23 143 144 140 135 136 141 145 134 144 135 136 145 137 144 138 140 141 139 145</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1347\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1348\">\r\n\t\t\t\t\t<float_array count=\"204\" id=\"ID1351\">-0.211421862244606 1.405271649360657 0.100438803434372 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.405271649360657 0.100438803434372 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.405271649360657 0.100438803434372 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.211421862244606 1.405271649360657 0.100438803434372 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.341523766517639 0.187200739979744</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"68\" source=\"#ID1351\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1349\">\r\n\t\t\t\t\t<float_array count=\"204\" id=\"ID1352\">-0.1692952967771664 -0.07876468768567274 -0.9824129612657346 -0.1692952967771664 -0.07876468768567274 -0.9824129612657346 -0.1692952967771664 -0.07876468768567274 -0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 -3.607747919905091e-006 0.9968011265815032 -0.07992192460664423 2.292340680649794e-006 0.9968014598728446 -0.07991776767472422 2.292364934457254e-006 0.9968014598742147 -0.07991776765763606 -2.292364934457254e-006 -0.9968014598742147 0.07991776765763606 -2.292340680649794e-006 -0.9968014598728446 0.07991776767472422 3.607747919905091e-006 -0.9968011265815032 0.07992192460664423 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -0.985566788375241 0.01352899279242671 0.1687455836629085 -0.985566788375241 0.01352899279242671 0.1687455836629085 -0.985566788375241 0.01352899279242671 0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 8.192430132416068e-006 0.9968017931121987 -0.07991361073803248 -8.192430132416068e-006 -0.9968017931121987 0.07991361073803248 0.169292302696274 0.07876082619117925 0.9824137868054765 0.169292302696274 0.07876082619117925 0.9824137868054765 0.169292302696274 0.07876082619117925 0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.9855666474151553 0.01352822838162632 0.1687464682288358 -0.9855666474151553 0.01352822838162632 0.1687464682288358 -0.9855666474151553 0.01352822838162632 0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.1692940095783117 0.07875907644888579 0.9824136329458265 0.1692940095783117 0.07875907644888579 0.9824136329458265 0.1692940095783117 0.07875907644888579 0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"68\" source=\"#ID1352\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1350\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1348\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1349\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1350\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 19 48 20 21 49 22 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1353\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1354\">\r\n\t\t\t\t\t<float_array count=\"450\" id=\"ID1357\">-0.2801137268543243 1.601384282112122 0.07121631503105164 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"150\" source=\"#ID1357\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1355\">\r\n\t\t\t\t\t<float_array count=\"450\" id=\"ID1358\">-0.1356692217318193 -0.0791759307796135 -0.9875854566870982 -0.1356698493860474 -0.07917859868270143 -0.9875851565704148 -0.1314681476065477 -0.3228358283250789 -0.9372796563003826 0.1314681476065477 0.3228358283250789 0.9372796563003826 0.1356698493860474 0.07917859868270143 0.9875851565704148 0.1356692217318193 0.0791759307796135 0.9875854566870982 0.990755038883388 -0.01084157807576591 -0.1352291134038946 0.9907553094818479 -0.01084286333397569 -0.1352270278023179 0.9907545150269511 -0.01084163096386696 -0.1352329471384623 -0.9907545150269511 0.01084163096386696 0.1352329471384623 -0.9907553094818479 0.01084286333397569 0.1352270278023179 -0.990755038883388 0.01084157807576591 0.1352291134038946 -0.1314688471447525 -0.3228407589476306 -0.9372778598646976 0.1314688471447525 0.3228407589476306 0.9372778598646976 -0.1314702534478887 0.1693883395937448 -0.9767410930579414 0.1314702534478887 -0.1693883395937448 0.9767410930579414 0.9907553225442187 -0.01084392916864213 -0.135226846633672 -0.9907553225442187 0.01084392916864213 0.135226846633672 0.9907553502238049 -0.01083952063097537 -0.135226997287511 -0.9907553502238049 0.01083952063097537 0.135226997287511 -0.990754664616892 0.01084708955208488 0.1352314134663949 -0.9907537198654387 0.01084286954524533 0.1352386732884534 -0.9907537742528971 0.01084220172669491 0.1352383283886532 0.9907537742528971 -0.01084220172669491 -0.1352383283886532 0.9907537198654387 -0.01084286954524533 -0.1352386732884534 0.990754664616892 -0.01084708955208488 -0.1352314134663949 -0.115269717371056 -0.5929125925150331 -0.7969739957453436 0.115269717371056 0.5929125925150331 0.7969739957453436 -0.9907547608051255 0.01083646901163245 0.1352315602266675 0.9907547608051255 -0.01083646901163245 -0.1352315602266675 -0.1314706361830664 0.1693873924460705 -0.9767412057970836 0.1314706361830664 -0.1693873924460705 0.9767412057970836 0.9907552486948316 -0.01084364746921769 -0.135227410288026 0.9907544686782243 -0.01084268175388495 -0.1352332024560302 -0.9907544686782243 0.01084268175388495 0.1352332024560302 -0.9907552486948316 0.01084364746921769 0.135227410288026 0.9907553600312666 -0.01083830286003287 -0.1352270230406248 -0.9907553600312666 0.01083830286003287 0.1352270230406248 -0.9907528949808248 0.0108438867540005 0.1352446346705895 0.9907528949808248 -0.0108438867540005 -0.1352446346705895 -0.1152728223332582 -0.5929306852146626 -0.7969600861788473 0.1152728223332582 0.5929306852146626 0.7969600861788473 -0.9907530246285961 0.01084120938957167 0.1352438995602404 0.9907530246285961 -0.01084120938957167 -0.1352438995602404 -0.1152763180923769 0.4583634432222098 -0.8812572407671583 0.1152763180923769 -0.4583634432222098 0.8812572407671583 0.9907543117722588 -0.01084193425789373 -0.1352344119158477 -0.9907543117722588 0.01084193425789373 0.1352344119158477 -0.07441634651649491 -0.8769018501917213 -0.4748740385633572 0.07441634651649491 0.8769018501917213 0.4748740385633572 -0.1152716199714295 0.4583767549267875 -0.8812509314445858 0.1152716199714295 -0.4583767549267875 0.8812509314445858 0.9907552724987844 -0.01083873891871537 -0.1352276294050575 0.9907544579576236 -0.0108406981143271 -0.1352334400268269 -0.9907544579576236 0.0108406981143271 0.1352334400268269 -0.9907552724987844 0.01083873891871537 0.1352276294050575 -0.9907530102878968 0.0108410673081059 0.1352440160047461 0.9907530102878968 -0.0108410673081059 -0.1352440160047461 -0.9907531370540285 0.01084393251738769 0.1352428576493415 0.9907531370540285 -0.01084393251738769 -0.1352428576493415 0.990754216923581 -0.01084271563818988 -0.1352350441480726 0.9907546154829099 -0.01084175701065832 -0.1352322010625927 -0.9907546154829099 0.01084175701065832 0.1352322010625927 -0.990754216923581 0.01084271563818988 0.1352350441480726 -0.07441916213512102 -0.8769111782314245 -0.4748563717587472 -4.235417158476926e-006 -0.9968004622671232 0.07993020959631503 4.235417158476926e-006 0.9968004622671232 -0.07993020959631503 0.07441916213512102 0.8769111782314245 0.4748563717587472 -0.07441374131601436 0.7900357613279838 -0.6085278062063114 0.07441374131601436 -0.7900357613279838 0.6085278062063114 -0.07441502969023559 0.7900314892178472 -0.6085331949864627 0.07441502969023559 -0.7900314892178472 0.6085331949864627 0.9907543765916157 -0.01084162177413705 -0.1352339620874339 -0.9907543765916157 0.01084162177413705 0.1352339620874339 -0.9907537574304999 0.0108419922220309 0.1352384684252361 -0.9907537574304999 0.0108419922220309 0.1352384684252361 0.9907537574304999 -0.0108419922220309 -0.1352384684252361 0.9907537574304999 -0.0108419922220309 -0.1352384684252361 -0.9907538895728028 0.0108421226586768 0.1352374898932132 -0.9907538895728028 0.0108421226586768 0.1352374898932132 0.9907538895728028 -0.0108421226586768 -0.1352374898932132 0.9907538895728028 -0.0108421226586768 -0.1352374898932132 0.9907538673674123 -0.0108427181255508 -0.1352376048300391 -0.9907538673674123 0.0108427181255508 0.1352376048300391 -2.57462444777998e-006 -0.9968024550084911 0.07990535452906993 0.07441418381058321 -0.7900491071668576 0.6085104251470602 -0.07441418381058321 0.7900491071668576 -0.6085104251470602 2.57462444777998e-006 0.9968024550084911 -0.07990535452906993 1.067839092478683e-006 0.9968001981039093 -0.07993350398216555 -1.067839092478683e-006 -0.9968001981039093 0.07993350398216555 -1.347711116124554e-006 0.9967996693632567 -0.0799400972946978 1.347711116124554e-006 -0.9967996693632567 0.0799400972946978 0.9907542594744274 -0.01084074886987405 -0.135234890088392 -0.9907542594744274 0.01084074886987405 0.135234890088392 -0.990754285377745 0.01084072616952699 0.1352347021357721 -0.9907537594868053 0.01084199102203542 0.1352384534569954 -0.9907537594868053 0.01084199102203542 0.1352384534569954 0.9907537594868053 -0.01084199102203542 -0.1352384534569954 0.9907537594868053 -0.01084199102203542 -0.1352384534569954 0.990754285377745 -0.01084072616952699 -0.1352347021357721 -0.9907542347739401 0.01084268184047282 0.1352349160831287 -0.9907538171999085 0.01084216489426355 0.1352380167120766 -0.9907538171999085 0.01084216489426355 0.1352380167120766 0.9907538171999085 -0.01084216489426355 -0.1352380167120766 0.9907538171999085 -0.01084216489426355 -0.1352380167120766 0.9907542347739401 -0.01084268184047282 -0.1352349160831287 0.9907541447492104 -0.01084372969831687 -0.1352354916007271 -0.9907541447492104 0.01084372969831687 0.1352354916007271 0.07441486581928107 -0.790057000203266 0.6085000938166855 0.115274064337515 -0.458377227782483 0.8812503657539986 -0.115274064337515 0.458377227782483 -0.8812503657539986 -0.07441486581928107 0.790057000203266 -0.6085000938166855 0.07442034387648687 0.8768891770633528 0.4748968135989771 -0.07442034387648687 -0.8768891770633528 -0.4748968135989771 0.07441722469855183 0.8768924517460316 0.474891255698606 -0.07441722469855183 -0.8768924517460316 -0.474891255698606 0.9907538211855245 -0.01084133154978273 -0.1352380543209258 -0.9907538211855245 0.01084133154978273 0.1352380543209258 -0.9907540170982758 0.01084435679705766 0.1352363765016191 0.9907540170982758 -0.01084435679705766 -0.1352363765016191 -0.9907539455884662 0.01083975691409952 0.1352372691639772 0.9907539455884662 -0.01083975691409952 -0.1352372691639772 0.9907535072974634 -0.0108417617890564 -0.1352403193544176 -0.9907535072974634 0.0108417617890564 0.1352403193544176 0.1152751208156897 -0.4583785629178389 0.8812495330939499 0.1314731089687768 -0.1693813640998348 0.9767419183764785 -0.1314731089687768 0.1693813640998348 -0.9767419183764785 -0.1152751208156897 0.4583785629178389 -0.8812495330939499 0.1152735228554939 0.5929025989580536 0.7969808799947897 -0.1152735228554939 -0.5929025989580536 -0.7969808799947897 0.115268135674773 0.5929178457434806 0.7969703163211114 -0.115268135674773 -0.5929178457434806 -0.7969703163211114 0.9907542573323389 -0.01084017946061422 -0.1352349514256858 -0.9907542573323389 0.01084017946061422 0.1352349514256858 -0.990752711050512 0.01084431889758902 0.1352459474206457 0.990752711050512 -0.01084431889758902 -0.1352459474206457 -0.9907528726464318 0.01084160231982215 0.1352449814299302 0.9907528726464318 -0.01084160231982215 -0.1352449814299302 0.1314753993869377 -0.1693935009502534 0.9767395052888265 0.135673890395719 0.07916904731405634 0.9875853671517592 -0.135673890395719 -0.07916904731405634 -0.9875853671517592 -0.1314753993869377 0.1693935009502534 -0.9767395052888265 0.1314685987065968 0.322842898002442 0.9372771579226225 -0.1314685987065968 -0.322842898002442 -0.9372771579226225 0.1314699454240871 0.3228410598408602 0.9372776021707856 -0.1314699454240871 -0.3228410598408602 -0.9372776021707856 -0.9907544541490362 0.01084113343017222 0.1352334330326444 0.9907544541490362 -0.01084113343017222 -0.1352334330326444 0.1356723079532084 0.07917457048518277 0.9875851417691218 -0.1356723079532084 -0.07917457048518277 -0.9875851417691218</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"150\" source=\"#ID1358\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1356\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1354\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1355\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"128\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1356\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 14 0 30 31 5 15 32 33 8 9 34 35 18 8 36 37 9 19 38 20 22 23 25 39 12 40 26 27 41 13 22 28 42 43 29 23 44 14 30 31 15 45 33 46 8 9 47 34 26 40 48 49 41 27 44 30 50 51 31 45 52 8 53 54 9 55 56 38 22 23 39 57 22 42 58 59 43 23 46 60 61 62 63 47 48 64 65 66 67 49 48 40 64 67 41 49 68 44 50 51 45 69 68 50 70 71 51 69 53 8 72 73 9 54 74 56 75 76 57 77 78 58 79 80 59 81 60 82 8 9 83 63 65 84 85 86 87 66 65 64 84 87 67 66 68 70 88 89 71 69 70 90 88 89 91 71 8 92 72 73 93 9 94 95 96 97 98 99 100 101 102 103 104 105 82 106 8 9 107 83 85 108 109 110 111 86 85 84 108 111 87 86 88 90 112 113 91 89 90 114 112 113 115 91 8 116 92 93 117 9 118 94 22 23 99 119 120 22 100 105 23 121 8 106 122 123 107 9 109 124 125 126 127 110 108 124 109 110 127 111 112 114 128 129 115 113 114 130 128 129 131 115 8 132 116 117 133 9 134 118 22 23 119 135 136 22 120 121 23 137 8 122 132 133 123 9 125 138 139 140 141 126 124 138 125 126 141 127 142 128 130 131 129 143 142 130 144 145 131 143 134 22 146 147 23 135 146 22 136 137 23 147 148 144 139 140 145 149 138 148 139 140 149 141 148 142 144 145 143 149</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1359\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1360\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID1363\">-0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID1363\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1361\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID1364\">-0.1692923417467978 -0.07875995462953699 -0.9824138499495204 -0.1692938326651547 -0.07876144204660998 -0.9824134737819312 -0.1692938326907131 -0.07876144207210842 -0.9824134737754826 0.1692938326907131 0.07876144207210842 0.9824134737754826 0.1692938326651547 0.07876144204660998 0.9824134737819312 0.1692923417467978 0.07875995462953699 0.9824138499495204 0.985565970216552 -0.01352869035001519 -0.1687503863359133 0.985565970216552 -0.01352869035001519 -0.1687503863359133 0.985565970216552 -0.01352869035001519 -0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.1692953236140108 -0.0787629294945232 -0.9824130976019551 0.1692953236140108 0.0787629294945232 0.9824130976019551 4.192985630659793e-006 0.996801436518354 -0.07991805889387653 1.096906230813379e-005 0.9968018192187224 -0.07991328476495892 1.09690889451969e-005 0.9968018192202266 -0.07991328474619158 -1.09690889451969e-005 -0.9968018192202266 0.07991328474619158 -1.096906230813379e-005 -0.9968018192187224 0.07991328476495892 -4.192985630659793e-006 -0.996801436518354 0.07991805889387653 9.582506172782085e-007 -0.996801371888121 0.07991886511357456 -5.671514406445729e-006 -0.9968017463641189 0.07991419406636696 -5.671498187858583e-006 -0.996801746363203 0.07991419407779388 5.671498187858583e-006 0.996801746363203 -0.07991419407779388 5.671514406445729e-006 0.9968017463641189 -0.07991419406636696 -9.582506172782085e-007 0.996801371888121 -0.07991886511357456 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -1.230130500121009e-005 -0.9968021207758588 0.07990952299587543 1.230130500121009e-005 0.9968021207758588 -0.07990952299587543 -0.985566806953075 0.01352881908006203 0.1687454890852473 -0.985566806953075 0.01352881908006203 0.1687454890852473 -0.985566806953075 0.01352881908006203 0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 1.774514664156804e-005 0.9968022018508893 -0.07990851062514436 -1.774514664156804e-005 -0.9968022018508893 0.07990851062514436 0.1692896681507659 0.07876208895893308 0.9824141395563425 0.1692914505875623 0.07876026173301266 0.9824139788957129 0.1692914506032995 0.07876026171688015 0.9824139788942946 -0.1692914506032995 -0.07876026171688015 -0.9824139788942946 -0.1692914505875623 -0.07876026173301266 -0.9824139788957129 -0.1692896681507659 -0.07876208895893308 -0.9824141395563425 -0.985566674990484 0.01352810345769673 0.1687463171895607 -0.985566674990484 0.01352810345769673 0.1687463171895607 -0.985566674990484 0.01352810345769673 0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.1692932330193621 0.07875843451056407 0.9824138182290074 -0.1692932330193621 -0.07875843451056407 -0.9824138182290074</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID1364\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1362\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1360\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1361\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1362\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 21 32 22 23 33 24 34 35 36 37 38 39 15 40 16 17 41 18 42 43 44 45 46 47 48 49 50 51 52 53 43 54 44 45 55 46</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1365\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1366\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID1369\">-0.1229010000824928 1.402469992637634 0.07537984848022461 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1123381182551384 1.404854774475098 0.1051209568977356 -0.1123381182551384 1.404854774475098 0.1051209568977356 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.2154930233955383 1.407772421836853 0.1415231823921204 -0.2154930233955383 1.407772421836853 0.1415231823921204 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.420804738998413 0.1686054915189743</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID1369\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1367\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID1370\">-0.3337266271680724 -0.07532520667226132 -0.9396556026325833 -0.3337254443835178 -0.07531800304052706 -0.939656600141249 -0.2556522031940139 -0.6984222253960624 -0.6684671615531003 0.2556522031940139 0.6984222253960624 0.6684671615531003 0.3337254443835178 0.07531800304052706 0.939656600141249 0.3337266271680724 0.07532520667226132 0.9396556026325833 0.9426693299249394 -0.02667009523577694 -0.3326608489723134 0.9426698480710878 -0.02666549239372739 -0.3326597496737959 0.942668346931451 -0.02667054805145014 -0.3326635981891633 -0.942668346931451 0.02667054805145014 0.3326635981891633 -0.9426698480710878 0.02666549239372739 0.3326597496737959 -0.9426693299249394 0.02667009523577694 0.3326608489723134 -0.2556517063393704 -0.6984267968755661 -0.6684625752066491 0.2556517063393704 0.6984267968755661 0.6684625752066491 -0.255639269038604 0.5830513834916339 -0.7711677173831254 0.255639269038604 -0.5830513834916339 0.7711677173831254 0.94266992556121 -0.02666708717482581 -0.3326594022480552 -0.94266992556121 0.02666708717482581 0.3326594022480552 0.9426698844777661 -0.02667432654829168 -0.3326589382563925 -0.9426698844777661 0.02667432654829168 0.3326589382563925 -0.9426692985040845 0.02667097289356337 0.3326608676456075 -0.9426700925419396 0.02667093112104283 0.3326586209015298 -0.9426726158260356 0.02666887460036563 0.3326516353473254 0.9426726158260356 -0.02666887460036563 -0.3326516353473254 0.9426700925419396 -0.02667093112104283 -0.3326586209015298 0.9426692985040845 -0.02667097289356337 -0.3326608676456075 -0.05795608011964645 -0.9947370444312012 -0.08449440936206237 0.05795608011964645 0.9947370444312012 0.08449440936206237 -0.9426700925637542 0.02666824235994739 0.3326588364004093 0.9426700925637542 -0.02666824235994739 -0.3326588364004093 -0.2556454488961971 0.5830389603010273 -0.7711750613380591 0.2556454488961971 -0.5830389603010273 0.7711750613380591 0.9426676632894262 -0.02667050683223612 -0.3326655387228512 -0.9426676632894262 0.02667050683223612 0.3326655387228512 0.942669672464622 -0.02667280394461036 -0.3326596611330787 -0.942669672464622 0.02667280394461036 0.3326596611330787 -0.9426708263224173 0.02666902468531293 0.3326566943906968 0.9426708263224173 -0.02666902468531293 -0.3326566943906968 -0.05795410471479303 -0.9947383245080389 -0.08448069307034842 0.05795410471479303 0.9947383245080389 0.08448069307034842 -0.9426700638303835 0.02666835112717045 0.3326589091038728 -0.9426711799215867 0.02666751137953105 0.3326558136904663 0.9426711799215867 -0.02666751137953105 -0.3326558136904663 0.9426700638303835 -0.02666835112717045 -0.3326589091038728 -0.05795203583627952 0.968575292156016 -0.2418748952812563 0.05795203583627952 -0.968575292156016 0.2418748952812563 0.942665841501148 -0.02667405932079358 -0.3326704162174381 -0.942665841501148 0.02667405932079358 0.3326704162174381 0.1668648430655019 -0.8255867437633917 0.5390386374564307 -0.1668648430655019 0.8255867437633917 -0.5390386374564307 -0.05795097760768985 0.9685756112144538 -0.2418738711702036 0.05795097760768985 -0.9685756112144538 0.2418738711702036 0.942667165956151 -0.02667077309447859 -0.3326669266559897 -0.942667165956151 0.02667077309447859 0.3326669266559897 -0.9426750123298155 0.02666608750429935 0.3326450674610936 0.9426750123298155 -0.02666608750429935 -0.3326450674610936 -0.9426743676767683 0.02666977656740232 0.3326465985742982 0.9426743676767683 -0.02666977656740232 -0.3326465985742982 0.9426659987069123 -0.02667273395274511 -0.3326700770213422 0.9426657124675998 -0.02667044983034913 -0.332671071245757 -0.9426657124675998 0.02667044983034913 0.332671071245757 -0.9426659987069123 0.02667273395274511 0.3326700770213422 0.1668651044540556 -0.8255855666711214 0.5390403593608371 0.3136006934420363 -0.270121277291786 0.9103236241177795 -0.3136006934420363 0.270121277291786 -0.9103236241177795 -0.1668651044540556 0.8255855666711214 -0.5390403593608371 0.1668518724339733 0.9009418074566474 0.4005799698462547 -0.1668518724339733 -0.9009418074566474 -0.4005799698462547 0.1668533512389299 0.9009402941734973 0.4005827573859245 -0.1668533512389299 -0.9009402941734973 -0.4005827573859245 -0.9426764526599932 0.02666602774790375 0.3326409905055594 0.9426764526599932 -0.02666602774790375 -0.3326409905055594 -0.9426762338578055 0.02667124274608742 0.3326411924732764 0.9426762338578055 -0.02667124274608742 -0.3326411924732764 0.3136004230653525 -0.270117527812872 0.9103248298390494 0.3135922239403754 0.4117529551857169 0.8556397729067756 -0.3135922239403754 -0.4117529551857169 -0.8556397729067756 -0.3136004230653525 0.270117527812872 -0.9103248298390494 0.3135992515083158 0.4117307509759519 0.8556478821070047 -0.3135992515083158 -0.4117307509759519 -0.8556478821070047</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID1370\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1368\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1366\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1367\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"72\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1368\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 21 28 29 24 23 14 0 30 31 5 15 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 22 40 41 42 43 23 14 30 44 45 31 15 32 46 8 9 47 33 48 26 38 39 27 49 30 50 44 45 51 31 8 52 34 35 53 9 54 36 22 23 37 55 56 22 41 42 23 57 8 58 59 60 61 9 48 62 63 64 65 49 48 38 62 65 39 49 44 50 66 67 51 45 50 68 66 67 69 51 8 59 52 53 60 9 70 54 22 23 55 71 72 22 56 57 23 73 63 74 75 76 77 64 62 74 63 64 77 65 66 68 78 79 69 67 68 75 78 79 76 69 70 22 72 73 23 71 74 78 75 76 79 77</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1371\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1372\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID1375\">-0.121831588447094 1.560251235961914 0.06273014843463898 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.2144237756729126 1.565554141998291 0.1288736164569855 -0.2144237756729126 1.565554141998291 0.1288736164569855 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2044984251260757 1.578587532043457 0.1559560894966126</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID1375\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1373\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID1376\">-0.3337284789644306 -0.07535968965900289 -0.9396521800658937 -0.3337242968039064 -0.07533479758929397 -0.939655661396726 -0.2556476260153263 -0.6984382220308391 -0.6684521982304555 0.2556476260153263 0.6984382220308391 0.6684521982304555 0.3337242968039064 0.07533479758929397 0.939655661396726 0.3337284789644306 0.07535968965900289 0.9396521800658937 0.9426694128352491 -0.02666973091874628 -0.3326606432350672 0.9426694127314597 -0.02667813209137133 -0.3326599698921414 0.942668926506434 -0.02666950286440723 -0.3326620396380881 -0.942668926506434 0.02666950286440723 0.3326620396380881 -0.9426694127314597 0.02667813209137133 0.3326599698921414 -0.9426694128352491 0.02666973091874628 0.3326606432350672 -0.255646262106825 -0.6984564686954649 -0.6684336541559452 0.255646262106825 0.6984564686954649 0.6684336541559452 -0.2556503053192089 0.583016594440822 -0.7711903604148728 0.2556503053192089 -0.583016594440822 0.7711903604148728 0.9426699931672807 -0.02668006749924834 -0.3326581698684618 0.942669259790379 -0.02667984675927415 -0.3326602657714937 -0.942669259790379 0.02667984675927415 0.3326602657714937 -0.9426699931672807 0.02668006749924834 0.3326581698684618 0.9426697523001979 -0.02666004568836103 -0.3326604576173405 -0.9426697523001979 0.02666004568836103 0.3326604576173405 -0.9426707722604234 0.02666917946059317 0.3326568351812961 -0.94267117412886 0.02666943846076941 0.3326556756147475 -0.9426731217563237 0.02666860222138295 0.3326502234686538 0.9426731217563237 -0.02666860222138295 -0.3326502234686538 0.94267117412886 -0.02666943846076941 -0.3326556756147475 0.9426707722604234 -0.02666917946059317 -0.3326568351812961 -0.05795423941257186 -0.994738707658848 -0.08447608903894131 0.05795423941257186 0.994738707658848 0.08447608903894131 -0.9426708768647963 0.02666948294379122 0.3326565144266181 0.9426708768647963 -0.02666948294379122 -0.3326565144266181 -0.255652140417525 0.583012347109947 -0.7711929630237095 0.255652140417525 -0.583012347109947 0.7711929630237095 0.9426680003299808 -0.02668065199421859 -0.332663770138918 -0.9426680003299808 0.02668065199421859 0.332663770138918 0.9426695663783524 -0.02665915632357748 -0.3326610557431757 -0.9426695663783524 0.02665915632357748 0.3326610557431757 -0.9426733099111155 0.02666872421876396 0.3326496804894987 0.9426733099111155 -0.02666872421876396 -0.3326496804894987 -0.0579498436027994 -0.994741411996432 -0.08444725505163428 0.0579498436027994 0.994741411996432 0.08444725505163428 -0.9426731236378981 0.0266686940813683 0.3326502107721603 0.9426731236378981 -0.0266686940813683 -0.3326502107721603 -0.05795127045210659 0.9685752051750813 -0.241875426972307 0.05795127045210659 -0.9685752051750813 0.241875426972307 0.9426682123690319 -0.02667545368174198 -0.3326635861645327 -0.9426682123690319 0.02667545368174198 0.3326635861645327 0.1668598278491472 -0.8255880097559711 0.5390382509593614 -0.1668598278491472 0.8255880097559711 -0.5390382509593614 -0.05795438103376407 0.9685733722687513 -0.2418820213470451 0.05795438103376407 -0.9685733722687513 0.2418820213470451 0.9426682383299377 -0.02665834859776295 -0.3326648837703971 -0.9426682383299377 0.02665834859776295 0.3326648837703971 -0.942674597705025 0.02667283037220496 0.332645701853496 0.942674597705025 -0.02667283037220496 -0.332645701853496 -0.9426756674865577 0.02666678017256694 0.3326431552940793 0.9426756674865577 -0.02666678017256694 -0.3326431552940793 0.9426689503533277 -0.02666923001243467 -0.3326619939372389 0.9426681929053484 -0.02666318732849757 -0.3326646246988855 -0.9426681929053484 0.02666318732849757 0.3326646246988855 -0.9426689503533277 0.02666923001243467 0.3326619939372389 0.1668582087259924 -0.8255983909538566 0.53902285205282 0.3135987183210398 -0.2701335159881868 0.9103206728440595 -0.3135987183210398 0.2701335159881868 -0.9103206728440595 -0.1668582087259924 0.8255983909538566 -0.53902285205282 0.1668622050623149 0.9009256888053704 0.4006119166628858 -0.1668622050623149 -0.9009256888053704 -0.4006119166628858 0.1668585745490759 0.9009288777610089 0.4006062572099185 -0.1668585745490759 -0.9009288777610089 -0.4006062572099185 -0.9426738098360217 0.02666876774876723 0.3326482602930651 0.9426738098360217 -0.02666876774876723 -0.3326482602930651 -0.9426749672617724 0.0266638276274031 0.3326453763308198 -0.9426752609315559 0.02666617088208003 0.3326443562697421 0.9426752609315559 -0.02666617088208003 -0.3326443562697421 0.9426749672617724 -0.0266638276274031 -0.3326453763308198 0.3135995234629018 -0.2701506651186825 0.9103153063745411 0.3135975129665967 0.4117207496375949 0.8556533317757969 -0.3135975129665967 -0.4117207496375949 -0.8556533317757969 -0.3135995234629018 0.2701506651186825 -0.9103153063745411 0.3136011967334145 0.41170988785074 0.8556572080297702 -0.3136011967334145 -0.41170988785074 -0.8556572080297702</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID1376\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1374\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1372\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1373\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"72\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1374\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 16 17 8 9 18 19 6 8 20 21 9 11 22 23 24 25 26 27 28 2 12 13 3 29 24 23 30 31 26 25 14 0 32 33 5 15 17 34 8 9 35 18 20 8 36 37 9 21 38 22 24 25 27 39 28 12 40 41 13 29 24 30 42 43 31 25 14 32 44 45 33 15 34 46 8 9 47 35 48 28 40 41 29 49 32 50 44 45 51 33 8 52 36 37 53 9 54 38 24 25 39 55 56 24 42 43 25 57 58 46 59 60 47 61 48 62 63 64 65 49 48 40 62 65 41 49 44 50 66 67 51 45 50 68 66 67 69 51 8 59 52 53 60 9 70 54 24 25 55 71 72 24 73 74 25 75 63 76 77 78 79 64 62 76 63 64 79 65 66 68 80 81 69 67 68 77 80 81 78 69 70 24 72 75 25 71 76 80 77 78 81 79</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1377\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1378\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID1381\">-0.121831588447094 1.632965445518494 0.05580605939030647 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.1112687066197395 1.635351061820984 0.08554725348949432 -0.1112687066197395 1.635351061820984 0.08554725348949432 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2144237756729126 1.63826847076416 0.1219496876001358 -0.2144237756729126 1.63826847076416 0.1219496876001358 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.651299953460693 0.1490315943956375</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID1381\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1379\">\r\n\t\t\t\t\t<float_array count=\"240\" id=\"ID1382\">-0.333730378141187 -0.07535403620761856 -0.9396519589363719 -0.333726883852007 -0.07533113375164462 -0.9396550363203088 -0.2556565374133898 -0.6984324284783076 -0.6684548434469525 0.2556565374133898 0.6984324284783076 0.6684548434469525 0.333726883852007 0.07533113375164462 0.9396550363203088 0.333730378141187 0.07535403620761856 0.9396519589363719 0.9426698651042278 -0.02666926967659147 -0.3326593986035781 0.9426706627335539 -0.02667644281289909 -0.3326565631703853 0.9426693154071472 -0.02667025725170954 -0.3326608771225557 -0.9426693154071472 0.02667025725170954 0.3326608771225557 -0.9426706627335539 0.02667644281289909 0.3326565631703853 -0.9426698651042278 0.02666926967659147 0.3326593986035781 -0.2556565162415049 -0.6984283547388395 -0.6684591079490616 0.2556565162415049 0.6984283547388395 0.6684591079490616 -0.2556544916264227 0.5830074241203893 -0.7711959052872001 0.2556544916264227 -0.5830074241203893 0.7711959052872001 0.9426701864689276 -0.02667871855776842 -0.3326577302855785 -0.9426701864689276 0.02667871855776842 0.3326577302855785 0.9426703818063023 -0.0266627993108055 -0.3326584530687176 -0.9426703818063023 0.0266627993108055 0.3326584530687176 -0.942670682789034 0.02666641547402317 0.3326573102996888 -0.9426715774722685 0.02666939845816986 0.3326545358353379 -0.9426726866031083 0.02666879491651253 0.3326514411665441 0.9426726866031083 -0.02666879491651253 -0.3326514411665441 0.9426715774722685 -0.02666939845816986 -0.3326545358353379 0.942670682789034 -0.02666641547402317 -0.3326573102996888 -0.05795034002025325 -0.9947409900488647 -0.08445188457424339 0.05795034002025325 0.9947409900488647 0.08445188457424339 -0.9426715774692825 0.0266696397275071 0.332654516500798 -0.9426706530564586 0.02667313881978869 0.3326568555307563 0.9426706530564586 -0.02667313881978869 -0.3326568555307563 0.9426715774692825 -0.0266696397275071 -0.332654516500798 -0.2556600729310317 0.5829964967063355 -0.7712023158270722 0.2556600729310317 -0.5829964967063355 0.7712023158270722 0.9426679717584315 -0.02668017002983864 -0.3326638897566493 -0.9426679717584315 0.02668017002983864 0.3326638897566493 0.9426693238288924 -0.02666202804200823 -0.3326615129116476 -0.9426693238288924 0.02666202804200823 0.3326615129116476 -0.9426725348063688 0.02666425905578586 0.3326522349402474 0.9426725348063688 -0.02666425905578586 -0.3326522349402474 -0.05795252513498193 -0.9947392447197427 -0.08447094083100366 0.05795252513498193 0.9947392447197427 0.08447094083100366 -0.9426734261757909 0.02667385572371525 0.3326489395786893 0.9426734261757909 -0.02667385572371525 -0.3326489395786893 -0.05796483274626623 0.96857007026727 -0.241892738930198 0.05796483274626623 -0.96857007026727 0.241892738930198 0.9426680303599566 -0.02667357815985674 -0.3326642523106893 -0.9426680303599566 0.02667357815985674 0.3326642523106893 0.1668674553623587 -0.8255766404347668 0.5390533026606321 -0.1668674553623587 0.8255766404347668 -0.5390533026606321 -0.05796124807593681 0.9685715880919653 -0.2418875202702447 0.05796124807593681 -0.9685715880919653 0.2418875202702447 0.9426683879472891 -0.02666417007570079 -0.3326639932409778 -0.9426683879472891 0.02666417007570079 0.3326639932409778 -0.9426744820301379 0.02666664481774934 0.3326465255844037 0.9426744820301379 -0.02666664481774934 -0.3326465255844037 -0.9426746561069067 0.02666737641715492 0.3326459736247396 0.9426746561069067 -0.02666737641715492 -0.3326459736247396 0.9426690297862003 -0.02666515139479778 -0.3326620958014853 -0.9426690297862003 0.02666515139479778 0.3326620958014853 0.1668667127256855 -0.8255788199028996 0.5390501946125792 0.3135970278251287 -0.2701501860406067 0.9103163082805179 -0.3135970278251287 0.2701501860406067 -0.9103163082805179 -0.1668667127256855 0.8255788199028996 -0.5390501946125792 0.1668686049155389 0.9009099015269486 0.4006447528974333 -0.1668686049155389 -0.9009099015269486 -0.4006447528974333 0.1668609828112135 0.9009170600359566 0.4006318301775889 -0.1668609828112135 -0.9009170600359566 -0.4006318301775889 0.9426690267813482 -0.02666512741588473 -0.332662106238448 -0.9426690267813482 0.02666512741588473 0.332662106238448 -0.9426734572124721 0.02667010445225194 0.3326491524047397 0.9426734572124721 -0.02667010445225194 -0.3326491524047397 -0.942672710193572 0.026667841495269 0.3326514507503151 0.942672710193572 -0.026667841495269 -0.3326514507503151 0.3135950812842684 -0.270120249285133 0.9103258624912568 0.313594948705331 0.411703538656981 0.8556625528815787 -0.313594948705331 -0.411703538656981 -0.8556625528815787 -0.3135950812842684 0.270120249285133 -0.9103258624912568 0.3135997197807662 0.4116882149507133 0.8556681771715717 -0.3135997197807662 -0.4116882149507133 -0.8556681771715717</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"80\" source=\"#ID1382\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1380\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1378\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1379\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"72\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1380\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 28 29 30 31 23 14 0 32 33 5 15 16 34 8 9 35 17 18 8 36 37 9 19 38 20 22 23 25 39 26 12 40 41 13 27 22 29 42 43 30 23 14 32 44 45 33 15 34 46 8 9 47 35 48 26 40 41 27 49 32 50 44 45 51 33 8 52 36 37 53 9 54 38 22 23 39 55 56 22 42 43 23 57 8 46 58 59 47 9 48 60 61 62 63 49 48 40 60 63 41 49 44 50 64 65 51 45 50 66 64 65 67 51 8 68 52 53 69 9 70 54 22 23 55 71 72 22 56 57 23 73 61 74 75 76 77 62 60 74 61 62 77 63 64 66 78 79 67 65 66 75 78 79 76 67 70 22 72 73 23 71 74 78 75 76 79 77</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1383\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1384\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID1387\">-0.1239700987935066 1.32936418056488 0.08014623820781708 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1134073734283447 1.331748962402344 0.1098872125148773 -0.1134073734283447 1.331748962402344 0.1098872125148773 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.32611608505249 0.1751019805669785</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID1387\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1385\">\r\n\t\t\t\t\t<float_array count=\"246\" id=\"ID1388\">-0.3337276167891264 -0.075333276831864 -0.939654604199875 -0.3337309577305596 -0.07535292865709133 -0.9396518419047784 -0.2556555199327572 -0.6984359506995821 -0.6684515523942498 0.2556555199327572 0.6984359506995821 0.6684515523942498 0.3337309577305596 0.07535292865709133 0.9396518419047784 0.3337276167891264 0.075333276831864 0.939654604199875 0.9426704146675395 -0.02666821468598398 -0.3326579258577669 0.9426719908397363 -0.02667014439399164 -0.332653304634498 0.9426704041214337 -0.02666958664825751 -0.3326578457537778 -0.9426704041214337 0.02666958664825751 0.3326578457537778 -0.9426719908397363 0.02667014439399164 0.332653304634498 -0.9426704146675395 0.02666821468598398 0.3326579258577669 -0.2556553714157113 -0.6984335117424741 -0.6684541575466264 0.2556553714157113 0.6984335117424741 0.6684541575466264 -0.255661960777685 0.5829995249413289 -0.7711994007579975 0.255661960777685 -0.5829995249413289 0.7711994007579975 0.9426702483678892 -0.02667440003294516 -0.3326579011911561 -0.9426702483678892 0.02667440003294516 0.3326579011911561 0.9426715215503717 -0.02666734987902996 -0.3326548585370981 -0.9426715215503717 0.02666734987902996 0.3326548585370981 -0.9426736657977303 0.02667311100922879 0.3326483202431038 -0.9426761082832638 0.02667120236097125 0.3326415515784829 -0.9426735152706354 0.02666898903716784 0.3326490773037535 0.9426735152706354 -0.02666898903716784 -0.3326490773037535 0.9426761082832638 -0.02667120236097125 -0.3326415515784829 0.9426736657977303 -0.02667311100922879 -0.3326483202431038 -0.05796044901938876 -0.9947380448489566 -0.08447963351924584 0.05796044901938876 0.9947380448489566 0.08447963351924584 -0.942674955676002 0.02666551330546385 0.3326452740403869 0.942674955676002 -0.02666551330546385 -0.3326452740403869 -0.2556428475158868 0.5830371083732807 -0.7711773238196857 0.2556428475158868 -0.5830371083732807 0.7711773238196857 0.9426693620251326 -0.02666865831024714 -0.3326608732073263 -0.9426693620251326 0.02666865831024714 0.3326608732073263 0.9426698305620523 -0.02666526531686748 -0.3326598174918229 -0.9426698305620523 0.02666526531686748 0.3326598174918229 -0.9426728524084502 0.02666545790151182 0.3326512388178031 0.9426728524084502 -0.02666545790151182 -0.3326512388178031 -0.05796238945661559 -0.9947363993485305 -0.0844976758236609 0.05796238945661559 0.9947363993485305 0.0844976758236609 -0.9426738031800903 0.02666987603224691 0.3326481903008177 -0.9426738031800903 0.02666987603224691 0.3326481903008177 0.9426738031800903 -0.02666987603224691 -0.3326481903008177 0.9426738031800903 -0.02666987603224691 -0.3326481903008177 -0.05794658213933268 0.9685775282560405 -0.241867247422607 0.05794658213933268 -0.9685775282560405 0.241867247422607 0.9426711761204227 -0.02666912724864952 -0.3326556949212423 -0.9426711761204227 0.02666912724864952 0.3326556949212423 0.1668609813859133 -0.8255905717489268 0.5390339699223137 -0.1668609813859133 0.8255905717489268 -0.5390339699223137 -0.05793367877946438 0.9685830448084376 -0.2418482461641892 0.05793367877946438 -0.9685830448084376 0.2418482461641892 0.9426686652623827 -0.02666981781125841 -0.332662754678597 -0.9426686652623827 0.02666981781125841 0.332662754678597 -0.9426734123039166 0.0266680332057299 0.3326494457236154 0.9426734123039166 -0.0266680332057299 -0.3326494457236154 -0.9426726990613483 0.02666801150120607 0.3326514686679803 -0.9426738963327904 0.02666980594554911 0.3326479319394343 0.9426738963327904 -0.02666980594554911 -0.3326479319394343 0.9426726990613483 -0.02666801150120607 -0.3326514686679803 0.942670427945132 -0.02667330231420939 -0.3326574803328437 -0.942670427945132 0.02667330231420939 0.3326574803328437 0.1668612428472993 -0.8255908640540989 0.5390334412871441 0.3135988286385334 -0.2701201898894522 0.9103245891936711 -0.3135988286385334 0.2701201898894522 -0.9103245891936711 -0.1668612428472993 0.8255908640540989 -0.5390334412871441 0.1668796441514547 0.9009087185794509 0.4006428149304759 -0.1668796441514547 -0.9009087185794509 -0.4006428149304759 0.1668653875440422 0.9009213997699368 0.4006202364788306 -0.1668653875440422 -0.9009213997699368 -0.4006202364788306 -0.9426723431580075 0.02667011828838743 0.3326523083272915 0.9426723431580075 -0.02667011828838743 -0.3326523083272915 -0.9426718367008743 0.02666889046501486 0.3326538419624301 0.9426718367008743 -0.02666889046501486 -0.3326538419624301 0.3135988204463492 -0.2701250551890383 0.9103231483235926 0.3135955801410653 0.4117195158224673 0.8556546338371001 -0.3135955801410653 -0.4117195158224673 -0.8556546338371001 -0.3135988204463492 0.2701250551890383 -0.9103231483235926 0.3136012111030773 0.4117025885446904 0.8556607148749348 -0.3136012111030773 -0.4117025885446904 -0.8556607148749348 -0.9426721716935939 0.02667156403007993 0.3326526783097842 0.9426721716935939 -0.02667156403007993 -0.3326526783097842</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"82\" source=\"#ID1388\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1386\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1384\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1385\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"72\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1386\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 21 28 29 24 23 14 0 30 31 5 15 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 40 28 41 42 29 43 14 30 44 45 31 15 32 46 8 9 47 33 48 26 38 39 27 49 30 50 44 45 51 31 8 52 34 35 53 9 54 36 22 23 37 55 56 22 57 58 23 59 8 46 60 61 47 9 48 62 63 64 65 49 48 38 62 65 39 49 44 50 66 67 51 45 50 68 66 67 69 51 8 60 52 53 61 9 70 54 22 23 55 71 72 22 56 59 23 73 63 74 75 76 77 64 62 74 63 64 77 65 66 68 78 79 69 67 68 75 78 79 76 69 80 22 72 73 23 81 74 78 75 76 79 77</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1389\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1390\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1393\">-0.1687647700309753 1.267630815505981 0.05896011367440224 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.2957886457443237 1.262829661369324 0.1834776252508164</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1393\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1391\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1394\">-0.01079581468578262 -0.1023463330354198 -0.9946902424873149 -0.004458380291245571 -0.09581628524271313 -0.9953890507371808 -0.004460959319859007 -0.09581894420101469 -0.995388783227011 0.004460959319859007 0.09581894420101469 0.995388783227011 0.004458380291245571 0.09581628524271313 0.9953890507371808 0.01079581468578262 0.1023463330354198 0.9946902424873149 0.9006312732702783 0.184235557488107 0.3935995032575677 0.9140735431317246 0.1655938409318771 0.3702002668719231 0.9216773985449562 0.1543073910567798 0.3559494375282138 -0.9216773985449562 -0.1543073910567798 -0.3559494375282138 -0.9140735431317246 -0.1655938409318771 -0.3702002668719231 -0.9006312732702783 -0.184235557488107 -0.3935995032575677 0.0008007850258315159 -0.09039150978887539 -0.9959059863769422 -0.0008007850258315159 0.09039150978887539 0.9959059863769422 -0.01075649788807149 0.9995620510894315 0.02756816597223926 -0.006716028346641294 0.999475288903926 0.03168661915794756 -0.006315207491680864 0.999464867974066 0.03209510616776137 0.006315207491680864 -0.999464867974066 -0.03209510616776137 0.006716028346641294 -0.999475288903926 -0.03168661915794756 0.01075649788807149 -0.9995620510894315 -0.02756816597223926 -1.157259076034438e-020 -0.9999999979197582 -6.450181205663836e-005 0.004671067444897015 -0.9999665336340035 0.006716601887925604 0.006204736968704651 -0.9999407596261793 0.008943068677412352 -0.006204736968704651 0.9999407596261793 -0.008943068677412352 -0.004671067444897015 0.9999665336340035 -0.006716601887925604 1.157259076034438e-020 0.9999999979197582 6.450181205663836e-005 0.9338681191719526 0.1348394762169404 0.3312229636480253 -0.9338681191719526 -0.1348394762169404 -0.3312229636480253 0.00897295824350252 -0.9998757315918625 0.01296176662334557 -0.00897295824350252 0.9998757315918625 -0.01296176662334557 -0.9339444544418049 0.1407940027916114 0.3285191087217226 -0.9294909902303715 0.1299033390301004 0.3452124296565728 -0.9399623412950603 0.1572199293011113 0.3029070662392382 0.9399623412950603 -0.1572199293011113 -0.3029070662392382 0.9294909902303715 -0.1299033390301004 -0.3452124296565728 0.9339444544418049 -0.1407940027916114 -0.3285191087217226 1.172950410623281e-017 0.9992574657191585 0.03852943296396869 -1.172950410623281e-017 -0.9992574657191585 -0.03852943296396869 0 0.07991461157145938 0.9968017129085318 0 0.07991461157145938 0.9968017129085318 0 0.07991461157145938 0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0.9218001741158475 0.1128702562766233 0.3708702525790428 0.9218001741158475 -0.1128702562766233 -0.3708702525790428 0 0.07991461157145938 0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1394\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1392\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1390\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1391\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1392\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 7 26 8 9 27 10 21 28 22 23 29 24 30 31 32 33 34 35 16 15 36 37 18 17 38 39 40 41 42 43 44 31 30 35 34 45 38 46 39 42 47 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1395\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1396\">\r\n\t\t\t\t\t<float_array count=\"228\" id=\"ID1399\">-0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3322747349739075 0.9441547989845276 0.1811926662921906 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3322747349739075 0.9441547989845276 0.1811926662921906 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3322747349739075 1.074667453765869 0.1964417695999146 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3322747349739075 1.074667453765869 0.1964417695999146 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 1.075878262519836 0.1860643476247788</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"76\" source=\"#ID1399\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1397\">\r\n\t\t\t\t\t<float_array count=\"228\" id=\"ID1400\">-0.7660484854148862 -0.0745931702744352 0.6384399556277536 -0.999999999880804 9.129351145749808e-007 -1.541294222891259e-005 -0.999999999994756 1.099899772535657e-006 -3.046035710492433e-006 0.999999999994756 -1.099899772535657e-006 3.046035710492433e-006 0.999999999880804 -9.129351145749808e-007 1.541294222891259e-005 0.7660484854148862 0.0745931702744352 -0.6384399556277536 -1.162476943371287e-005 -0.9932434439682124 -0.1160493898261838 3.427597121637712e-022 -0.9932460392063136 -0.1160271761311556 2.37112327817461e-005 -0.9932400230976206 -0.1160786627887123 -2.37112327817461e-005 0.9932400230976206 0.1160786627887123 -3.427597121637712e-022 0.9932460392063136 0.1160271761311556 1.162476943371287e-005 0.9932434439682124 0.1160493898261838 -0.766051153372814 -0.07459198157284841 0.6384368932801559 0.766051153372814 0.07459198157284841 -0.6384368932801559 -0.7660502336723536 0.0745925132308464 -0.6384379346972096 0.7660502336723536 -0.0745925132308464 0.6384379346972096 1.522862207152876e-005 -0.9932426439875201 -0.1160562360787638 -1.522862207152876e-005 0.9932426439875201 0.1160562360787638 5.612146763604787e-005 -0.9932475702882814 -0.1160140550399245 -5.612146763604787e-005 0.9932475702882814 0.1160140550399245 -3.471916287413821e-018 0.993242000120007 0.1160617473485916 1.585121066035665e-005 0.9932438862712563 0.1160456036802376 8.070319983265988e-006 0.9932398287754397 0.1160803276572105 -8.070319983265988e-006 -0.9932398287754397 -0.1160803276572105 -1.585121066035665e-005 -0.9932438862712563 -0.1160456036802376 3.471916287413821e-018 -0.993242000120007 -0.1160617473485916 -0.1736487374015801 -0.1142829697488939 0.9781541385815481 0.1736487374015801 0.1142829697488939 -0.9781541385815481 2.222021911968254e-005 0.9932461275554015 0.1160264176920982 -2.222021911968254e-005 -0.9932461275554015 -0.1160264176920982 -0.7660486120073445 0.07459292706600855 -0.6384398321481405 0.7660486120073445 -0.07459292706600855 0.6384398321481405 -4.106049424604954e-005 -0.9932435989717825 -0.1160480564922013 4.106049424604954e-005 0.9932435989717825 0.1160480564922013 3.396163110747765e-005 -0.9932414115337033 -0.1160667793175307 -3.396163110747765e-005 0.9932414115337033 0.1160667793175307 6.647656232279825e-006 0.9932389066328453 0.1160882177768221 -6.647656232279825e-006 -0.9932389066328453 -0.1160882177768221 -0.1736515678230348 -0.1142833672265894 0.9781535896616412 0.1736515678230348 0.1142833672265894 -0.9781535896616412 2.504259532865034e-005 0.9932488028377058 0.1160035130258264 -2.504259532865034e-005 -0.9932488028377058 -0.1160035130258264 -0.1736579387619272 0.114283511484801 -0.9781524417531564 0.1736579387619272 -0.114283511484801 0.9781524417531564 -6.420171219164083e-005 -0.9932449077149694 -0.1160368440471479 6.420171219164083e-005 0.9932449077149694 0.1160368440471479 0.4999990993658716 -0.1004992050061297 0.8601748720036253 -0.4999990993658716 0.1004992050061297 -0.8601748720036253 -0.1736658952266699 0.1142845472302315 -0.9781509081422458 0.1736658952266699 -0.1142845472302315 0.9781509081422458 -5.946023309051964e-005 -0.9932419979460728 -0.1160617507216493 5.946023309051964e-005 0.9932419979460728 0.1160617507216493 -4.466557373368193e-006 0.9932389923049177 0.116087484877405 4.466557373368193e-006 -0.9932389923049177 -0.116087484877405 2.894799536756943e-005 0.993246845080762 0.1160202736556259 -2.894799536756943e-005 -0.993246845080762 -0.1160202736556259 -6.892321585256021e-005 -0.9932427930824257 -0.1160549406075073 6.892321585256021e-005 0.9932427930824257 0.1160549406075073 0.9396912244112444 -0.03969080372930595 0.3397131773479175 0.4999973724122661 -0.1004992598769736 0.8601758694272993 -0.4999973724122661 0.1004992598769736 -0.8601758694272993 -0.9396912244112444 0.03969080372930595 -0.3397131773479175 0.4999924063535025 0.100500966161157 -0.8601785566901258 -0.4999924063535025 -0.100500966161157 0.8601785566901258 0.5000055265544119 0.1005000820859015 -0.8601710335251777 -0.5000055265544119 -0.1005000820859015 0.8601710335251777 1.351536742928827e-005 0.9932451346926782 0.1160349181352688 -1.351536742928827e-005 -0.9932451346926782 -0.1160349181352688 4.268433620980341e-005 0.9932483331576502 0.1160075293142519 -4.268433620980341e-005 -0.9932483331576502 -0.1160075293142519 0.9396938380138644 0.03969024141156683 -0.3397060133931466 0.9396891726750086 -0.03969085591167384 0.3397188465692719 -0.9396891726750086 0.03969085591167384 -0.3397188465692719 -0.9396938380138644 -0.03969024141156683 0.3397060133931466 0.9396930255132888 0.03969063850974941 -0.339708214525893 -0.9396930255132888 -0.03969063850974941 0.339708214525893</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"76\" source=\"#ID1400\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1398\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1396\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1397\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"72\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1398\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 6 8 16 17 9 11 6 18 7 10 19 11 20 21 22 23 24 25 0 12 26 27 13 5 20 28 21 24 29 25 1 30 14 15 31 4 32 6 16 17 11 33 34 18 6 11 19 35 22 21 36 37 24 23 26 12 38 39 13 27 28 40 21 24 41 29 14 30 42 43 31 15 44 6 32 33 11 45 26 38 46 47 39 27 42 30 48 49 31 43 50 34 6 11 35 51 21 52 36 37 53 24 40 54 21 24 55 41 56 6 44 45 11 57 58 46 59 60 47 61 46 38 59 60 39 47 42 48 62 63 49 43 62 48 64 65 49 63 56 50 6 11 51 57 21 66 52 53 67 24 54 68 21 24 69 55 70 58 71 72 61 73 58 59 71 72 60 61 64 74 62 63 75 65 64 70 74 75 73 65 21 68 66 67 69 24 70 71 74 75 72 73</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1401\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1402\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1405\">-0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8554512858390808 0.2614400088787079</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1405\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1403\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1406\">0 -0.4786973748340194 -0.877979967497561 0 -0.4786973748340194 -0.877979967497561 0 -0.4786973748340194 -0.877979967497561 -0 0.4786973748340194 0.877979967497561 -0 0.4786973748340194 0.877979967497561 -0 0.4786973748340194 0.877979967497561 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 0 -0.9968021350235882 0.07990934621442103 0 -0.9968021350235882 0.07990934621442103 0 -0.9968021350235882 0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 1 0 0 -1 -0 -0 0 -0.9968021350235882 0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.9968010375962467 -0.07992303452100592 0 0.9968010375962467 -0.07992303452100592 0 0.9968010375962467 -0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 0 0.4786932702954678 0.877982205385639 0 0.4786932702954678 0.877982205385639 0 0.4786932702954678 0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -1 0 0 1 -0 -0 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1406\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1404\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1402\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1403\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1404\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 25 32 26 27 33 28 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 34 36 37 39 53 54 55 56 57 58 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1407\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1408\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID1411\">0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.6798586249351502 0.2174845784902573 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.8228713870048523 0.2210390418767929 0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.1889988780021668 0.6943401694297791 0.2454363852739334 -0.1889988780021668 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.02375267259776592 0.8228713870048523 0.2210390418767929 0.02375267259776592 0.8228713870048523 0.2210390418767929 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.6798586249351502 0.2174845784902573 0.02375267259776592 0.8228713870048523 0.2210390418767929 0.02375267259776592 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.6943401694297791 0.2454363852739334 -0.1889988780021668 0.6943401694297791 0.2454363852739334</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID1411\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1409\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID1412\">0.001387337141682634 -0.2220524090996359 -0.9750337444974421 0.001387337141682634 -0.2220524090996359 -0.9750337444974421 0.001387337141682634 -0.2220524090996359 -0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 0.5871770811767491 0.1797423846289223 0.7892501191058904 0.3330322933170721 0.1873578318890383 0.9241139185391649 0.644964467798049 0.1429182379491617 0.7507297866339702 -0.644964467798049 -0.1429182379491617 -0.7507297866339702 -0.3330322933170721 -0.1873578318890383 -0.9241139185391649 -0.5871770811767491 -0.1797423846289223 -0.7892501191058904 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 3.614714750383517e-005 0.9997049233532446 -0.02429125185467766 6.972200714376944e-006 0.9996998649392079 -0.02449857122197072 3.414267295072655e-005 0.9997045772159082 -0.02430549583613239 -3.414267295072655e-005 -0.9997045772159082 0.02430549583613239 -6.972200714376944e-006 -0.9996998649392079 0.02449857122197072 -3.614714750383517e-005 -0.9997049233532446 0.02429125185467766 -1.667872850933478e-017 -0.8849633272774763 0.4656607234607388 -0.0001258651819107453 -0.8854385084749843 0.4647565296663953 -0.0006245036285647431 -0.8873118148838094 0.4611695492579906 0.0006245036285647431 0.8873118148838094 -0.4611695492579906 0.0001258651819107453 0.8854385084749843 -0.4647565296663953 1.667872850933478e-017 0.8849633272774763 -0.4656607234607388 0.3689954470602589 0.1683477590433835 0.9140576524890925 -0.3689954470602589 -0.1683477590433835 -0.9140576524890925 -0.0006556404756979402 -0.8874283031096446 0.4609453080089909 0.0006556404756979402 0.8874283031096446 -0.4609453080089909 -0.5324369513931456 0.1663152504389824 0.829969957445805 -0.5742615086464369 0.1817890206747265 0.7982333441101306 -0.3017067920176465 0.1897741692638221 0.9343226296791952 0.3017067920176465 -0.1897741692638221 -0.9343226296791952 0.5742615086464369 -0.1817890206747265 -0.7982333441101306 0.5324369513931456 -0.1663152504389824 -0.829969957445805 6.960335564674304e-019 0.9996986495932743 -0.02454811604551317 -6.960335564674304e-019 -0.9996986495932743 0.02454811604551317 -0.2795365000399969 0.1790523481666212 0.9432918963721716 0.2795365000399969 -0.1790523481666212 -0.9432918963721716</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID1412\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1410\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1408\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1409\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1410\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 7 30 8 9 31 10 25 32 26 27 33 28 34 35 36 37 38 39 20 19 40 41 22 21 7 42 30 31 43 10 42 34 36 37 39 43 42 36 30 31 37 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1413\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1414\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID1417\">0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.01764903031289578 0.6965709924697876 0.2436218112707138 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.0158530380576849 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.7263770699501038 0.3404266238212585</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID1417\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1415\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID1418\">-9.169722976373865e-018 -0.1821198965755864 -0.983276331084654 -0.005848219727591161 -0.1918366380413361 -0.9814094469848022 -0.003043484746153533 -0.1871796094987132 -0.9823209918293049 0.003043484746153533 0.1871796094987132 0.9823209918293049 0.005848219727591161 0.1918366380413361 0.9814094469848022 9.169722976373865e-018 0.1821198965755864 0.983276331084654 0.9814788691163255 0.04935029315769431 0.1851047758524577 0.9843960977963142 0.03227702870119385 0.1729812592786051 0.9845849359046324 0.03107424619155901 0.1721246502198257 -0.9845849359046324 -0.03107424619155901 -0.1721246502198257 -0.9843960977963142 -0.03227702870119385 -0.1729812592786051 -0.9814788691163255 -0.04935029315769431 -0.1851047758524577 -0.008858386551980338 -0.1968286115952417 -0.9803978920036421 0.008858386551980338 0.1968286115952417 0.9803978920036421 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 1.572333825322655e-017 -0.9557235430893282 0.2942660517028448 0.0006579533516455556 -0.9553377050857177 0.2955155433119237 0.001385184622082391 -0.9549088580608247 0.2968958640003838 -0.001385184622082391 0.9549088580608247 -0.2968958640003838 -0.0006579533516455556 0.9553377050857177 -0.2955155433119237 -1.572333825322655e-017 0.9557235430893282 -0.2942660517028448 0.9873699300492289 0.01134341927737611 0.1580251501302195 -0.9873699300492289 -0.01134341927737611 -0.1580251501302195 0.001969717348993657 -0.954562346254986 0.2980047773538896 -0.001969717348993657 0.954562346254986 -0.2980047773538896 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.9968014312424773 -0.07991812480876104 0 0.9968014312424773 -0.07991812480876104 0 0.9968014312424773 -0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 0 0.1862758884093816 0.9824974775526376 0 0.1862758884093816 0.9824974775526376 0 0.1862758884093816 0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -1 0 0 1 -0 -0 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID1418\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1416\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1414\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1415\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1416\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 8 7 26 27 10 9 21 28 22 23 29 24 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 30 32 33 35 49 50 51 52 53 54 55</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1419\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1420\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID1423\">0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.2837311029434204 1.419497728347778 -0.1022137701511383 0.2837311029434204 1.419497728347778 -0.1022137701511383 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1487234085798264 1.461263656616211 -0.04204044118523598 0.1487234085798264 1.461263656616211 -0.04204044118523598 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.2972021996974945 1.449135422706604 -0.1123467683792114 0.2972021996974945 1.449135422706604 -0.1123467683792114 0.3032180666923523 1.409106135368347 -0.07835546880960465 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.3032180666923523 1.409106135368347 -0.07835546880960465 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.316688597202301 1.438741087913513 -0.08848993480205536 0.316688597202301 1.438741087913513 -0.08848993480205536 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID1423\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1421\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID1424\">-0.2117507404386459 0.321455254932216 -0.9229453629550066 -0.2600110696684296 0.01043847675148996 -0.9655492125484789 0.007326895033529043 -0.6541949177868747 -0.756290503808551 -0.007326895033529043 0.6541949177868747 0.756290503808551 0.2600110696684296 -0.01043847675148996 0.9655492125484789 0.2117507404386459 -0.321455254932216 0.9229453629550066 -0.5340335661942859 0.5457193397975845 0.6457542507399403 -0.8707103579114028 0.4699527830000934 0.1449408651011291 -0.7822641140321018 0.4093452656265391 0.4695735399345974 0.7822641140321018 -0.4093452656265391 -0.4695735399345974 0.8707103579114028 -0.4699527830000934 -0.1449408651011291 0.5340335661942859 -0.5457193397975845 -0.6457542507399403 0.1465548072432481 0.04878246053037574 -0.9879989676201573 -0.1465548072432481 -0.04878246053037574 0.9879989676201573 0.3202308478076849 -0.9465922625117664 -0.03762037566567392 -0.1790162912968978 -0.9771273884804481 -0.1147834227215927 0.1790162912968978 0.9771273884804481 0.1147834227215927 -0.3202308478076849 0.9465922625117664 0.03762037566567392 -0.9573953783632936 0.2484317593297414 0.1472268672659153 0.9573953783632936 -0.2484317593297414 -0.1472268672659153 -0.6678373175942008 0.2933145627367843 0.6840759347580586 0.6678373175942008 -0.2933145627367843 -0.6840759347580586 0.5620522173348252 -0.4846545636370911 -0.6702292584890242 -0.5620522173348252 0.4846545636370911 0.6702292584890242 -0.1052168161437504 0.6907663114035757 -0.715381943181732 0.1052168161437504 -0.6907663114035757 0.715381943181732 -0.0793312004268637 -0.9684364386380066 0.2362994391803917 0.0793312004268637 0.9684364386380066 -0.2362994391803917 -0.8727059715511012 0.2560767326326131 0.4157030120449623 0.8727059715511012 -0.2560767326326131 -0.4157030120449623 -0.8484371084385745 0.2185231540830602 0.482081014098234 0.8484371084385745 -0.2185231540830602 -0.482081014098234 0.5620589706866968 -0.4846631741876052 -0.6702173685133847 -0.5620589706866968 0.4846631741876052 0.6702173685133847 -0.1052741459759133 0.6906784752780507 -0.7154583132346911 0.1052741459759133 -0.6906784752780507 0.7154583132346911 0.5620476210655032 -0.4846406454961437 -0.6702431770541867 -0.5620476210655032 0.4846406454961437 0.6702431770541867 0.2437385669028079 -0.08741448486360912 0.9658934821398245 -0.2437385669028079 0.08741448486360912 -0.9658934821398245 0.2162155226341925 0.8876420744044321 0.406623161562422 0.1694938574646845 0.9428451667909947 0.2869056007480554 0.2541860079556013 0.660310801664626 0.7066676153359613 -0.2541860079556013 -0.660310801664626 -0.7066676153359613 -0.1694938574646845 -0.9428451667909947 -0.2869056007480554 -0.2162155226341925 -0.8876420744044321 -0.406623161562422 0.2050441197686757 -0.270224688595742 0.9407101182732243 -0.2050441197686757 0.270224688595742 -0.9407101182732243 0.5620695889105933 -0.4846418345315089 -0.6702238950110704 -0.5620695889105933 0.4846418345315089 0.6702238950110704 0.2529610287947978 0.6542028453927553 0.7127617799735758 -0.2529610287947978 -0.6542028453927553 -0.7127617799735758</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID1424\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1422\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1420\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1421\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1422\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 8 7 18 19 10 9 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 28 8 18 19 9 29 30 20 8 9 21 31 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 40 41 42 43 44 45 26 46 38 39 47 27 32 22 48 49 23 33 22 36 48 49 37 23 46 42 50 51 43 47 41 50 42 43 51 44 38 46 50 51 47 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1425\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1426\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1429\">0.1553212702274323 1.314650535583496 -0.05614136904478073 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3060109317302704 1.261957168579102 -0.09241525828838348 0.3060109317302704 1.261957168579102 -0.09241525828838348 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1553212702274323 1.314650535583496 -0.05614136904478073 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1456548571586609 1.300154447555542 -0.03195736929774284 0.1456548571586609 1.300154447555542 -0.03195736929774284 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3194818496704102 1.291594505310059 -0.1025481522083283 0.3194818496704102 1.291594505310059 -0.1025481522083283 0.3254974186420441 1.251564621925354 -0.06855690479278565 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3254974186420441 1.251564621925354 -0.06855690479278565 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.3389680683612824 1.281198859214783 -0.07869188487529755 0.3389680683612824 1.281198859214783 -0.07869188487529755 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1429\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1427\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1430\">-0.5270872587659297 0.4829598615392093 -0.6992344340696084 -0.2373091719483964 -0.009947946585583324 -0.97138323810322 0.0302289803388917 -0.6523592771410928 -0.7573067953449394 -0.0302289803388917 0.6523592771410928 0.7573067953449394 0.2373091719483964 0.009947946585583324 0.97138323810322 0.5270872587659297 -0.4829598615392093 0.6992344340696084 -0.5821281597074549 0.5128590065675404 0.6309535997663915 -0.7838480433492671 0.4685158370778919 0.4075231960818029 0.7838480433492671 -0.4685158370778919 -0.4075231960818029 0.5821281597074549 -0.5128590065675404 -0.6309535997663915 0.1563350658793139 0.05170904550473698 -0.9863495941041895 -0.1563350658793139 -0.05170904550473698 0.9863495941041895 0.3285388353453203 -0.9437967567357263 -0.03619275680388343 -0.1506281647881631 -0.9803261545184075 -0.1275609138400202 0.1506281647881631 0.9803261545184075 0.1275609138400202 -0.3285388353453203 0.9437967567357263 0.03619275680388343 -0.6094776194613598 0.704008224981229 -0.3645674841980472 0.6094776194613598 -0.704008224981229 0.3645674841980472 -0.8193965941596137 0.04187406713262325 0.5716955343374633 0.8193965941596137 -0.04187406713262325 -0.5716955343374633 0.5620468045841043 -0.4846723610466129 -0.6702209276755684 -0.5620468045841043 0.4846723610466129 0.6702209276755684 -0.04262652272856061 -0.9574414427167757 0.2854625427766147 0.04262652272856061 0.9574414427167757 -0.2854625427766147 -0.8189515769899407 0.46942592209402 0.3300872887765723 0.8189515769899407 -0.46942592209402 -0.3300872887765723 -0.943859419131144 0.09540917204895222 0.3162696425620914 0.943859419131144 -0.09540917204895222 -0.3162696425620914 0.5620475949657969 -0.4846744725247572 -0.6702187379326335 -0.5620475949657969 0.4846744725247572 0.6702187379326335 -0.1052551056785802 0.6906696782463675 -0.7154696068175436 0.1052551056785802 -0.6906696782463675 0.7154696068175436 0.5620622113175559 -0.4846776506083926 -0.6702041820292888 -0.5620622113175559 0.4846776506083926 0.6702041820292888 0.2169583513266659 -0.05765775487784369 0.9744766067443905 -0.2169583513266659 0.05765775487784369 -0.9744766067443905 0.2033241252333373 0.8550932664263433 0.4769431892903231 0.1441081999331713 0.9399395443921297 0.3094292804502138 0.232953018600208 0.5645718045526801 0.7918279918196762 -0.232953018600208 -0.5645718045526801 -0.7918279918196762 -0.1441081999331713 -0.9399395443921297 -0.3094292804502138 -0.2033241252333373 -0.8550932664263433 -0.4769431892903231 0.189215187049918 -0.2702283709857141 0.9440202542869892 -0.189215187049918 0.2702283709857141 -0.9440202542869892 0.5620737986969204 -0.484671044609835 -0.6701992415209267 -0.5620737986969204 0.484671044609835 0.6701992415209267 0.2152998076267679 0.6552577786690892 0.7240740544512888 -0.2152998076267679 -0.6552577786690892 -0.7240740544512888</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1430\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1428\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1426\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1427\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1428\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 7 8 5 9 0 2 10 11 3 5 12 2 13 14 3 15 7 0 16 17 5 8 6 7 18 19 8 9 10 2 20 21 3 11 16 0 10 11 5 17 2 12 20 21 15 3 12 13 22 23 14 15 24 7 16 17 8 25 26 18 7 8 19 27 10 20 28 29 21 11 16 10 30 31 11 17 20 12 32 33 15 21 12 22 34 35 23 15 26 7 24 25 8 27 36 37 38 39 40 41 22 42 34 35 43 23 28 20 44 45 21 29 20 32 44 45 33 21 42 38 46 47 39 43 37 46 38 39 47 40 34 42 46 47 43 35</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1431\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1432\">\r\n\t\t\t\t\t<float_array count=\"138\" id=\"ID1435\">0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.3287272155284882 1.101558089256287 -0.07955601811408997 0.3287272155284882 1.101558089256287 -0.07955601811408997 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.1151409223675728 1.132263422012329 -0.01849719509482384 0.1151409223675728 1.132263422012329 -0.01849719509482384 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.342198371887207 1.131192564964294 -0.08968864381313324 0.342198371887207 1.131192564964294 -0.08968864381313324 0.3482146561145783 1.091163873672485 -0.05569736659526825 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.3482146561145783 1.091163873672485 -0.05569736659526825 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.105472669005394 1.10316526889801 -0.008405376225709915 0.105472669005394 1.10316526889801 -0.008405376225709915 0.3616852462291718 1.12079918384552 -0.06583249568939209 0.3616852462291718 1.12079918384552 -0.06583249568939209 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.105472669005394 1.10316526889801 -0.008405376225709915 0.105472669005394 1.10316526889801 -0.008405376225709915 0.1518978178501129 1.152041435241699 -0.004814382642507553 0.1518978178501129 1.152041435241699 -0.004814382642507553 0.1460323482751846 1.123474359512329 0.005232919007539749 0.1460323482751846 1.123474359512329 0.005232919007539749 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"46\" source=\"#ID1435\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1433\">\r\n\t\t\t\t\t<float_array count=\"138\" id=\"ID1436\">-0.1526069341708608 0.2014247147177761 -0.9675428713725471 -0.154409281518514 0.06995639787526577 -0.9855272072232476 0.09500311225222836 -0.6364217107878273 -0.7654683629649796 -0.09500311225222836 0.6364217107878273 0.7654683629649796 0.154409281518514 -0.06995639787526577 0.9855272072232476 0.1526069341708608 -0.2014247147177761 0.9675428713725471 -0.2900583322876976 0.6155294324973895 0.7327957980228336 -0.4305008441564028 0.7745127584729289 0.4634641411622686 -0.4376760788393953 0.6090235893184742 0.6614604430088121 0.4376760788393953 -0.6090235893184742 -0.6614604430088121 0.4305008441564028 -0.7745127584729289 -0.4634641411622686 0.2900583322876976 -0.6155294324973895 -0.7327957980228336 0.177896048170807 0.05895478953893228 -0.9822816952563201 -0.177896048170807 -0.05895478953893228 0.9822816952563201 0.3543751582787857 -0.934605232097684 -0.03051732836471479 -0.04369649900807408 -0.9987996309860718 -0.02213398103650087 0.04369649900807408 0.9987996309860718 0.02213398103650087 -0.3543751582787857 0.934605232097684 0.03051732836471479 -0.2117804347327577 0.8531466670474889 0.4767492128679035 0.2117804347327577 -0.8531466670474889 -0.4767492128679035 -0.3287200085374632 0.4051046469262522 0.8531315144957938 0.3287200085374632 -0.4051046469262522 -0.8531315144957938 0.5620632890462979 -0.4846637448481013 -0.6702133343468127 -0.5620632890462979 0.4846637448481013 0.6702133343468127 -0.1052500340877712 0.6906722531251714 -0.7154678672641575 0.1052500340877712 -0.6906722531251714 0.7154678672641575 -0.008154407886818508 -0.97842746915962 0.2064296326255428 0.008154407886818508 0.97842746915962 -0.2064296326255428 -0.1491645848139461 0.6469968928687555 0.7477599529631548 0.1491645848139461 -0.6469968928687555 -0.7477599529631548 -0.1013988600854753 -0.1025717765919676 0.9895439868040904 0.1013988600854753 0.1025717765919676 -0.9895439868040904 0.5620712952768785 -0.4846411792026707 -0.6702229378697933 -0.5620712952768785 0.4846411792026707 0.6702229378697933 -0.1052822686682469 0.6906021664222173 -0.7155307761634067 0.1052822686682469 -0.6906021664222173 0.7155307761634067 0.562089467608081 -0.484678935656285 -0.6701803934278854 -0.562089467608081 0.484678935656285 0.6701803934278854 0.1948791177058165 -0.03431924276733405 0.9802266671837078 -0.1948791177058165 0.03431924276733405 -0.9802266671837078 0.1115421042893579 0.9377788356412317 0.3288300691756725 -0.1115421042893579 -0.9377788356412317 -0.3288300691756725 0.5620918735784156 -0.4846569278382608 -0.6701942911988175 -0.5620918735784156 0.4846569278382608 0.6701942911988175 0.1788184282318766 0.6574281446431123 0.7319919428216382 -0.1788184282318766 -0.6574281446431123 -0.7319919428216382</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"46\" source=\"#ID1436\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1434\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1432\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1433\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1434\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 7 18 8 9 19 10 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 8 18 28 29 19 9 20 8 30 31 9 21 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 18 40 28 29 41 19 26 30 38 39 31 27 32 22 42 43 23 33 22 36 42 43 37 23 30 28 44 45 29 31 40 44 28 29 45 41 38 30 44 45 31 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1437\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1438\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID1441\">0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.2623249590396881 1.570870399475098 -0.1115184426307678 0.2623249590396881 1.570870399475098 -0.1115184426307678 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1539330631494522 1.616379618644714 -0.05164474248886108 0.1539330631494522 1.616379618644714 -0.05164474248886108 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.275795191526413 1.600508689880371 -0.1216493099927902 0.275795191526413 1.600508689880371 -0.1216493099927902 0.2818127274513245 1.560474872589111 -0.08765904605388641 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.2818127274513245 1.560474872589111 -0.08765904605388641 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.2952823638916016 1.590112090110779 -0.09779312461614609 0.2952823638916016 1.590112090110779 -0.09779312461614609 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.160272628068924 1.631876587867737 -0.03761931881308556 0.160272628068924 1.631876587867737 -0.03761931881308556 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.160272628068924 1.631876587867737 -0.03761931881308556 0.160272628068924 1.631876587867737 -0.03761931881308556 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID1441\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1439\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID1442\">-0.2612649648831572 0.2154767763815477 -0.9409093351459635 -0.3120238526800682 -0.07529301042391109 -0.9470860984831274 -0.01732523752695652 -0.6643846957284765 -0.7471899438739886 0.01732523752695652 0.6643846957284765 0.7471899438739886 0.3120238526800682 0.07529301042391109 0.9470860984831274 0.2612649648831572 -0.2154767763815477 0.9409093351459635 -0.5116776227184808 0.4929719940946034 0.7036793470378068 -0.61982026767674 0.4991510477646793 0.6055337045058326 -0.8170728539503203 0.3730756256143977 0.439552646346151 0.8170728539503203 -0.3730756256143977 -0.439552646346151 0.61982026767674 -0.4991510477646793 -0.6055337045058326 0.5116776227184808 -0.4929719940946034 -0.7036793470378068 0.1410729471083749 0.04728219640286073 -0.9888694643366631 -0.1410729471083749 -0.04728219640286073 0.9888694643366631 0.3067464724749431 -0.9509680058590948 -0.03957844686891629 -0.222264189367348 -0.9710011656212904 -0.08806455863155831 0.222264189367348 0.9710011656212904 0.08806455863155831 -0.3067464724749431 0.9509680058590948 0.03957844686891629 -0.8461142536324233 0.3228838989908336 0.4240715241236134 0.8461142536324233 -0.3228838989908336 -0.4240715241236134 -0.7522535916241838 0.3506204932206724 0.5578349250649412 0.7522535916241838 -0.3506204932206724 -0.5578349250649412 0.5620416863427057 -0.4846401836812222 -0.6702484876331157 -0.5620416863427057 0.4846401836812222 0.6702484876331157 -0.1052279702985872 0.6907230101808186 -0.7154221113954954 0.1052279702985872 -0.6907230101808186 0.7154221113954954 -0.08911847962830034 -0.9484448676391016 0.3041549434709021 0.08911847962830034 0.9484448676391016 -0.3041549434709021 -0.9555879694916472 0.2506915569620883 0.1549366832959687 0.9555879694916472 -0.2506915569620883 -0.1549366832959687 -0.9556014649654541 0.2506460825295659 0.1549270198140411 0.9556014649654541 -0.2506460825295659 -0.1549270198140411 0.5620181180033185 -0.4846701760122687 -0.6702465632289694 -0.5620181180033185 0.4846701760122687 0.6702465632289694 -0.1052660889666847 0.6906765086185261 -0.7154613972508797 0.1052660889666847 -0.6906765086185261 0.7154613972508797 0.5620558193373243 -0.4846561231327442 -0.6702251101376221 -0.5620558193373243 0.4846561231327442 0.6702251101376221 0.2614239168632214 -0.107974508427586 0.9591658048646816 -0.2614239168632214 0.107974508427586 -0.9591658048646816 0.2835840095916742 0.8451598330638175 0.4530838400113706 0.2044205305712835 0.9410969837991859 0.2693486843573391 0.3059738327077238 0.5779843669752629 0.7565144316074548 -0.3059738327077238 -0.5779843669752629 -0.7565144316074548 -0.2044205305712835 -0.9410969837991859 -0.2693486843573391 -0.2835840095916742 -0.8451598330638175 -0.4530838400113706 0.2225006061998179 -0.2761711370454932 0.9349989215521658 -0.2225006061998179 0.2761711370454932 -0.9349989215521658 0.562042227331252 -0.4846734199866424 -0.6702240003573262 -0.562042227331252 0.4846734199866424 0.6702240003573262 0.5620425693420601 -0.4846750527563176 -0.6702225328076016 -0.5620425693420601 0.4846750527563176 0.6702225328076016 0.2889663716664621 0.6493798714439022 0.7034232144373833 -0.2889663716664621 -0.6493798714439022 -0.7034232144373833</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID1442\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1440\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1438\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1439\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1440\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 8 7 18 19 10 9 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 28 8 18 19 9 29 30 20 8 9 21 31 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 40 41 42 43 44 45 26 46 38 39 47 27 32 22 48 49 23 33 22 36 50 51 37 23 46 42 52 53 43 47 41 52 42 43 53 44 38 46 52 53 47 39</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1443\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1444\">\r\n\t\t\t\t\t<float_array count=\"210\" id=\"ID1447\">0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3140751421451569 1.607973217964172 -0.1055402606725693 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3140751421451569 1.607973217964172 -0.1055402606725693 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.339216023683548 1.609411358833313 -0.1320241838693619 0.339216023683548 1.609411358833313 -0.1320241838693619 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4216348826885223 0.8485112190246582 -0.04465353116393089 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4216348826885223 0.8485112190246582 -0.04465353116393089 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.339216023683548 1.609411358833313 -0.1320241838693619 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.339216023683548 1.609411358833313 -0.1320241838693619 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2889344394207001 1.602334499359131 -0.131456732749939 0.2889344394207001 1.602334499359131 -0.131456732749939 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2889344394207001 1.602334499359131 -0.131456732749939 0.2889344394207001 1.602334499359131 -0.131456732749939 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"70\" source=\"#ID1447\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1445\">\r\n\t\t\t\t\t<float_array count=\"210\" id=\"ID1448\">0.7121836708119679 0.1557404146299578 0.6844993369461211 0.3868375999335935 0.1280001794504949 0.9132210166976327 0.7121878203325724 0.1557409396922177 0.6844949001079004 -0.7121878203325724 -0.1557409396922177 -0.6844949001079004 -0.3868375999335935 -0.1280001794504949 -0.9132210166976327 -0.7121836708119679 -0.1557404146299578 -0.6844993369461211 -0.1397991539385844 0.9870137805752409 -0.07912012078242896 -0.1397854057744817 0.9870158887178813 -0.07911811266021804 -0.1397921558860157 0.9870139522999297 -0.07913034258747995 0.1397921558860157 -0.9870139522999297 0.07913034258747995 0.1397854057744817 -0.9870158887178813 0.07911811266021804 0.1397991539385844 -0.9870137805752409 0.07912012078242896 0.7121835415319054 0.1557403982713827 0.6844994751768214 0.3868305965648333 0.1279992383157068 0.9132241151830661 -0.3868305965648333 -0.1279992383157068 -0.9132241151830661 -0.7121835415319054 -0.1557403982713827 -0.6844994751768214 0.3868164037145685 -0.0191313024773292 -0.9219582762158214 0.7121601037797707 0.0446929504145383 -0.7005929822426357 0.7121674042622895 0.04469407932465986 -0.7005854891300802 -0.7121674042622895 -0.04469407932465986 0.7005854891300802 -0.7121601037797707 -0.0446929504145383 0.7005929822426357 -0.3868164037145685 0.0191313024773292 0.9219582762158214 -0.1397999796143324 0.9870142551838378 -0.07911274084321916 0.1397999796143324 -0.9870142551838378 0.07911274084321916 -0.1397936820510165 0.9870155914581198 -0.07910719737923563 0.1397936820510165 -0.9870155914581198 0.07910719737923563 0.1398000093145633 -0.9870133953731055 0.07912341467417676 0.1397920699189058 -0.9870142472339551 0.07912681558723841 0.1397945789315667 -0.9870143200804079 0.07912147406081613 -0.1397945789315667 0.9870143200804079 -0.07912147406081613 -0.1397920699189058 0.9870142472339551 -0.07912681558723841 -0.1398000093145633 0.9870133953731055 -0.07912341467417676 -0.3868504373152667 0.01912515861491171 0.9219441238258104 0.3868504373152667 -0.01912515861491171 -0.9219441238258104 0.139796916829866 -0.9870134878570978 0.07912772480635578 -0.139796916829866 0.9870134878570978 -0.07912772480635578 0.3868216047912728 -0.01913054427063408 -0.9219561097702068 0.7121676317021652 0.04469411449494164 -0.7005852556864456 -0.7121676317021652 -0.04469411449494164 0.7005852556864456 -0.3868216047912728 0.01913054427063408 0.9219561097702068 -0.139797317906358 0.9870138655822434 -0.07912230440644323 0.139797317906358 -0.9870138655822434 0.07912230440644323 -0.1398015061678415 0.9870126308571869 -0.07913030646710245 0.1398015061678415 -0.9870126308571869 0.07913030646710245 0.1397897769542053 -0.987013750024252 0.07913706794010708 -0.1397897769542053 0.987013750024252 -0.07913706794010708 -0.3868511661520297 0.01912511454953269 0.9219438189175532 0.3868511661520297 -0.01912511454953269 -0.9219438189175532 0.1397921147097734 -0.9870147120373068 0.07912093835946439 -0.1397921147097734 0.9870147120373068 -0.07912093835946439 -0.3868356486941172 -0.1280000544911218 -0.9132218607488934 0.3868356486941172 0.1280000544911218 0.9132218607488934 -0.7122127191321335 -0.0447050027962357 0.7005387251475835 0.7122127191321335 0.0447050027962357 -0.7005387251475835 -0.3868353003950386 -0.1279997158045518 -0.9132220557576531 0.3868353003950386 0.1279997158045518 0.9132220557576531 0.1397926979644894 -0.9870138933571084 0.07913012015567621 -0.1397926979644894 0.9870138933571084 -0.07913012015567621 0.1397926979655048 -0.9870146754240228 0.07912036459178133 -0.1397926979655048 0.9870146754240228 -0.07912036459178133 -0.7121911290598167 -0.1557408636965086 -0.6844914747924689 -0.7121862825202999 -0.1557409163686991 -0.6844965054392562 0.7121862825202999 0.1557409163686991 0.6844965054392562 0.7121911290598167 0.1557408636965086 0.6844914747924689 -0.7122094375937212 -0.04470403383812917 0.7005421231882025 -0.7122126199852392 -0.04470497352052413 0.7005388278149118 0.7122126199852392 0.04470497352052413 -0.7005388278149118 0.7122094375937212 0.04470403383812917 -0.7005421231882025 -0.7121861315320546 -0.1557409180095111 -0.6844966621620312 0.7121861315320546 0.1557409180095111 0.6844966621620312</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"70\" source=\"#ID1448\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1446\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1444\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1445\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1446\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 1 4 14 15 16 17 18 19 20 21 6 8 22 23 9 11 24 7 6 11 10 25 26 27 28 29 30 31 32 1 13 14 4 33 26 34 27 30 35 31 36 16 37 38 21 39 40 6 22 23 11 41 42 24 6 11 25 43 28 27 44 45 30 29 46 32 13 14 33 47 34 48 27 30 49 35 36 50 16 21 51 39 42 6 40 41 11 43 46 52 32 33 53 47 36 54 50 51 55 39 27 56 44 45 57 30 27 58 56 57 59 30 60 61 54 55 62 63 46 64 65 66 67 47 68 50 54 55 51 69</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1449\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1450\">\r\n\t\t\t\t\t<float_array count=\"228\" id=\"ID1453\">0.4633594453334808 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.988379180431366 0.1358994990587235 0.4633594453334808 0.988379180431366 0.1358994990587235 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 1.00645387172699 0.1104805320501328 0.3092793822288513 1.00645387172699 0.1104805320501328 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.988379180431366 0.1358994990587235 0.3092793822288513 0.988379180431366 0.1358994990587235 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.3092793822288513 1.00645387172699 0.1104805320501328 0.3092793822288513 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.018564820289612 0.1280457824468613 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 1.016549944877625 0.1492861360311508 0.3092793822288513 1.016549944877625 0.1492861360311508 0.4633594453334808 1.001353979110718 0.1642626523971558 0.4633594453334808 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 1.016549944877625 0.1492861360311508 0.3092793822288513 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.4633594453334808 1.001353979110718 0.1642626523971558 0.4633594453334808 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 1.001353979110718 0.1642626523971558</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"76\" source=\"#ID1453\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1451\">\r\n\t\t\t\t\t<float_array count=\"228\" id=\"ID1454\">-1.776339763670333e-019 -0.07991900300950217 -0.9968013608327225 -2.027870309745611e-018 -0.07991900300950217 -0.9968013608327225 0 -0.7019467038801081 -0.7122294748968564 -0 0.7019467038801081 0.7122294748968564 2.027870309745611e-018 0.07991900300950217 0.9968013608327225 1.776339763670333e-019 0.07991900300950217 0.9968013608327225 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.7019467038801081 -0.7122294748968564 -0 0.7019467038801081 0.7122294748968564 2.898738914260018e-018 0.5795037448550457 -0.8149695759345732 -2.898738914260018e-018 -0.5795037448550457 0.8149695759345732 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 -0.9955340971290169 -0.09440265596641433 -0 0.9955340971290169 0.09440265596641433 -1 0 0 1 -0 -0 4.748950731204071e-018 0.5795037448550459 -0.8149695759345731 -4.748950731204071e-018 -0.5795037448550459 0.8149695759345731 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 1.843061888750653e-018 -0.995534097129017 -0.09440265596641415 -1.843061888750653e-018 0.995534097129017 0.09440265596641415 -1 0 0 1 -0 -0 5.730896300542484e-018 0.9677823485561018 -0.2517882559279441 -5.730896300542484e-018 -0.9677823485561018 0.2517882559279441 1 0 0 -1 -0 -0 -4.62053728699901e-018 -0.8232985997773137 0.5676085055781978 4.62053728699901e-018 0.8232985997773137 -0.5676085055781978 4.835062976132084e-018 0.9677823485561018 -0.251788255927944 -4.835062976132084e-018 -0.9677823485561018 0.251788255927944 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -2.777492070114276e-018 -0.8232985997773136 0.567608505578198 -5.287825904614969e-018 -0.2658319714319039 0.964019378936247 5.287825904614969e-018 0.2658319714319039 -0.964019378936247 2.777492070114276e-018 0.8232985997773136 -0.567608505578198 8.958142244258213e-019 0.9032019239526054 0.4292158950555213 -8.958142244258213e-019 -0.9032019239526054 -0.4292158950555213 0 0.9032019239526051 0.4292158950555214 -0 -0.9032019239526051 -0.4292158950555214 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 -4.393083191022361e-018 -0.2658319714319036 0.9640193789362471 -4.044203278242868e-019 0.4160212955636348 0.9093548711243343 4.044203278242868e-019 -0.4160212955636348 -0.9093548711243343 4.393083191022361e-018 0.2658319714319036 -0.9640193789362471 4.903180125159446e-019 0.4160212955636352 0.9093548711243343 -4.903180125159446e-019 -0.4160212955636352 -0.9093548711243343</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"76\" source=\"#ID1454\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1452\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1450\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1451\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"72\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1452\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 30 14 0 5 15 31 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 22 28 40 41 29 23 14 30 42 43 31 15 32 44 8 9 45 33 26 38 46 47 39 27 42 30 48 49 31 43 8 50 34 35 51 9 52 36 22 23 37 53 54 22 40 41 23 55 8 44 56 57 45 9 46 58 59 60 61 47 46 38 58 61 39 47 42 48 62 63 49 43 62 48 64 65 49 63 8 56 50 51 57 9 66 52 22 23 53 67 68 22 54 55 23 69 59 70 71 72 73 60 58 70 59 60 73 61 74 62 64 65 63 75 71 74 64 65 75 72 66 22 68 69 23 67 70 74 71 72 75 73</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1455\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1456\">\r\n\t\t\t\t\t<float_array count=\"888\" id=\"ID1460\">-0.001449317671358585 0.240059107542038 0.2575531899929047 -0.001449317671358585 0.1619613170623779 0.1178073287010193 -0.1529100686311722 0.240059107542038 0.2577010691165924 -0.1529100686311722 0.240059107542038 0.2577010691165924 -0.001449317671358585 0.1619613170623779 0.1178073287010193 -0.001449317671358585 0.240059107542038 0.2575531899929047 0.1500110626220703 0.240059107542038 0.2577010691165924 0.1500110626220703 0.240059107542038 0.2577010691165924 -0.1523515284061432 0.2470187544822693 0.3542184829711914 -0.1523515284061432 0.2470187544822693 0.3542184829711914 -0.1529100686311722 0.1619613170623779 0.1178135275840759 -0.1529100686311722 0.1619613170623779 0.1178135275840759 0.1500110626220703 0.1619613170623779 0.1178135275840759 0.1500110626220703 0.1619613170623779 0.1178135275840759 0.1494526416063309 0.2470187544822693 0.3542184829711914 0.1494526416063309 0.2470187544822693 0.3542184829711914 -0.001449317671358585 0.2470187544822693 0.3542184829711914 -0.001449317671358585 0.2470187544822693 0.3542184829711914 -0.1628827601671219 0.2536900639533997 0.3536399900913239 -0.1628827601671219 0.2536900639533997 0.3536399900913239 -0.1630400717258453 0.1643714010715485 0.1090982854366303 -0.1630400717258453 0.1643714010715485 0.1090982854366303 -0.001449317671358585 0.1496018767356873 0.01143438369035721 -0.001449317671358585 0.1496018767356873 0.01143438369035721 0.1601412743330002 0.1643714010715485 0.1090982854366303 0.1601412743330002 0.1643714010715485 0.1090982854366303 0.1599837839603424 0.2536900639533997 0.3536399900913239 0.1599837839603424 0.2536900639533997 0.3536399900913239 -0.001449264585971832 0.261539101600647 0.4428333342075348 -0.001449264585971832 0.261539101600647 0.4428333342075348 -0.1540883034467697 0.261539101600647 0.4380881488323212 -0.1540883034467697 0.261539101600647 0.4380881488323212 -0.1634102165699005 0.2467786967754364 0.2577041983604431 -0.1634102165699005 0.2467786967754364 0.2577041983604431 -0.09997250139713287 0.1520867645740509 -0.001049425452947617 -0.09997250139713287 0.1520867645740509 -0.001049425452947617 -0.09253218770027161 0.1496018767356873 0.01143438369035721 -0.09253218770027161 0.1496018767356873 0.01143438369035721 0.08963353931903839 0.1496018767356873 0.01143438369035721 0.08963353931903839 0.1496018767356873 0.01143438369035721 0.09707370400428772 0.1520867645740509 -0.001049425452947617 0.09707370400428772 0.1520867645740509 -0.001049425452947617 0.1605114936828613 0.2467786967754364 0.2577041983604431 0.1605114936828613 0.2467786967754364 0.2577041983604431 0.1511895954608917 0.261539101600647 0.4380881488323212 0.1511895954608917 0.261539101600647 0.4380881488323212 -0.163021519780159 0.2689068913459778 0.4383325576782227 -0.163021519780159 0.2689068913459778 0.4383325576782227 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1630400717258453 0.3184337615966797 0.1096392124891281 -0.1630400717258453 0.3184337615966797 0.1096392124891281 -0.1097900420427322 0.3173555135726929 -0.0002152398228645325 -0.1097900420427322 0.3173555135726929 -0.0002152398228645325 -0.001449317671358585 0.1354821473360062 -0.008116859942674637 -0.001449317671358585 0.1354821473360062 -0.008116859942674637 0.1068910136818886 0.3173555135726929 -0.0002152398228645325 0.1068910136818886 0.3173555135726929 -0.0002152398228645325 0.1601412743330002 0.3184337615966797 0.1096392124891281 0.1601412743330002 0.3184337615966797 0.1096392124891281 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1601225733757019 0.2689068913459778 0.4383325576782227 0.1601225733757019 0.2689068913459778 0.4383325576782227 -0.001449317671358585 0.2768021523952484 0.4565147459506989 -0.001449317671358585 0.2768021523952484 0.4565147459506989 -0.1456240266561508 0.2768021523952484 0.4514736533164978 -0.1456240266561508 0.2768021523952484 0.4514736533164978 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.09238605946302414 0.1354821473360062 -0.008116859942674637 -0.09238605946302414 0.1354821473360062 -0.008116859942674637 -0.1097748056054115 0.3184337615966797 -0.02075992710888386 -0.1097748056054115 0.3184337615966797 -0.02075992710888386 0.08948712050914764 0.1354821473360062 -0.008116859942674637 0.08948712050914764 0.1354821473360062 -0.008116859942674637 0.1068758368492127 0.3184337615966797 -0.02075992710888386 0.1068758368492127 0.3184337615966797 -0.02075992710888386 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1427254229784012 0.2768021523952484 0.4514736533164978 0.1427254229784012 0.2768021523952484 0.4514736533164978 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.354182094335556 0.298282265663147 0.3550088405609131 -0.354182094335556 0.298282265663147 0.3550088405609131 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.3544719517230988 0.298282265663147 0.2575727701187134 -0.3544719517230988 0.298282265663147 0.2575727701187134 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1696929037570953 0.4537642896175385 0.1070729941129684 -0.1696929037570953 0.4537642896175385 0.1070729941129684 -0.09995711594820023 0.1357338577508926 -0.01938049495220184 -0.09995711594820023 0.1357338577508926 -0.01938049495220184 -0.1371392905712128 0.4597870707511902 -0.02026660554111004 -0.1371392905712128 0.4597870707511902 -0.02026660554111004 -0.001449317671358585 0.04650413244962692 -0.01317102089524269 -0.001449317671358585 0.04650413244962692 -0.01317102089524269 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.09705853462219238 0.1357338577508926 -0.01938049495220184 0.09705853462219238 0.1357338577508926 -0.01938049495220184 0.1342403590679169 0.4597870707511902 -0.02026660554111004 0.1342403590679169 0.4597870707511902 -0.02026660554111004 0.1667940318584442 0.4537642896175385 0.1070729941129684 0.1667940318584442 0.4537642896175385 0.1070729941129684 0.170243501663208 0.4526919424533844 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.3515732288360596 0.298282265663147 0.2575727701187134 0.3515732288360596 0.298282265663147 0.2575727701187134 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.3512834012508392 0.298282265663147 0.3550088405609131 0.3512834012508392 0.298282265663147 0.3550088405609131 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1599837839603424 0.3077715933322907 0.438141942024231 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.09300129115581513 0.0464128889143467 -0.01317102089524269 -0.09300129115581513 0.0464128889143467 -0.01317102089524269 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.3181760609149933 -0.273921549320221 -0.1097748056054115 0.3181760609149933 -0.273921549320221 0.09010248631238937 0.0464128889143467 -0.01317102089524269 0.09010248631238937 0.0464128889143467 -0.01317102089524269 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.1427799314260483 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5756529569625855 0.2870831191539764 0.3586305379867554 -0.5756529569625855 0.2870831191539764 0.3586305379867554 -0.603806734085083 0.2870831191539764 0.2575727701187134 -0.603806734085083 0.2870831191539764 0.2575727701187134 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.09995711594820023 0.04646233096718788 -0.02443481422960758 -0.09995711594820023 0.04646233096718788 -0.02443481422960758 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.09995711594820023 0.1377387195825577 -0.2734987437725067 -0.09995711594820023 0.1377387195825577 -0.2734987437725067 -0.001449317671358585 -0.3543172776699066 -0.08908890932798386 -0.001449317671358585 -0.3543172776699066 -0.08908890932798386 0.09705853462219238 0.04646233096718788 -0.02443481422960758 0.09705853462219238 0.04646233096718788 -0.02443481422960758 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.09705853462219238 0.1377387195825577 -0.2734987437725067 0.09705853462219238 0.1377387195825577 -0.2734987437725067 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.57275390625 0.2870831191539764 0.3586305379867554 0.57275390625 0.2870831191539764 0.3586305379867554 0.600908100605011 0.2870831191539764 0.2575727701187134 0.600908100605011 0.2870831191539764 0.2575727701187134 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.1427799314260483 0.3090838491916657 0.4529981315135956 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.09210735559463501 -0.3543172776699066 -0.08908890932798386 -0.09210735559463501 -0.3543172776699066 -0.08908890932798386 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 0.08920849859714508 -0.3543172776699066 -0.08908890932798386 0.08920849859714508 -0.3543172776699066 -0.08908890932798386 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.5986962914466858 0.2943861186504364 0.2461786717176437 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.1048265770077705 0.04720093682408333 -0.2734573781490326 -0.1048265770077705 0.04720093682408333 -0.2734573781490326 -0.1013187915086746 -0.3543172776699066 -0.09922146797180176 -0.1013187915086746 -0.3543172776699066 -0.09922146797180176 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 0.09842002391815186 -0.3543172776699066 -0.09922146797180176 0.09842002391815186 -0.3543172776699066 -0.09922146797180176 0.1019275709986687 0.04720093682408333 -0.2734573781490326 0.1019275709986687 0.04720093682408333 -0.2734573781490326 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6997751593589783 0.2703775763511658 0.354082316160202 0.6997751593589783 0.2703775763511658 0.354082316160202 0.7538297772407532 0.2898140251636505 0.2332167774438858 0.7538297772407532 0.2898140251636505 0.2332167774438858 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.09248960018157959 -0.7727522850036621 -0.08908890932798386 -0.09248960018157959 -0.7727522850036621 -0.08908890932798386 0.08959063142538071 -0.7727522850036621 -0.08908890932798386 0.08959063142538071 -0.7727522850036621 -0.08908890932798386 0.7403134107589722 0.280442476272583 0.2985353469848633 0.7403134107589722 0.280442476272583 0.2985353469848633 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.6621055603027344 0.3010430932044983 0.2265639156103134 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.1043468117713928 -0.3548235893249512 -0.273533433675766 -0.1043468117713928 -0.3548235893249512 -0.273533433675766 -0.1016295403242111 -0.7727522850036621 -0.09962338954210281 -0.1016295403242111 -0.7727522850036621 -0.09962338954210281 0.09873109310865402 -0.7727522850036621 -0.09962338954210281 0.09873109310865402 -0.7727522850036621 -0.09962338954210281 0.1014480292797089 -0.3548235893249512 -0.273533433675766 0.1014480292797089 -0.3548235893249512 -0.273533433675766 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.6748431324958801 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.1036523431539536 -0.6999796628952026 -0.273533433675766 -0.1036523431539536 -0.6999796628952026 -0.273533433675766 0.100753627717495 -0.6999796628952026 -0.273533433675766 0.100753627717495 -0.6999796628952026 -0.273533433675766 0.6823241114616394 0.310824066400528 0.0157061405479908 0.6823241114616394 0.310824066400528 0.0157061405479908 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.8011427521705627 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"296\" source=\"#ID1460\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1457\">\r\n\t\t\t\t\t<float_array count=\"888\" id=\"ID1461\">-3.234952956545837e-010 -0.9579877817902355 0.2868090130045148 -6.217357242973127e-011 -0.9515595232544742 0.3074645893492739 -0.2812065349451302 -0.9162931207527727 0.2851838031258053 0.2812065349451302 0.9162931207527727 -0.2851838031258053 6.217357242973127e-011 0.9515595232544742 -0.3074645893492739 3.234952956545837e-010 0.9579877817902355 -0.2868090130045148 0.2812005918009352 -0.916294768072033 0.2851843704949887 -0.2812005918009352 0.916294768072033 -0.2851843704949887 -0.2756918473565419 -0.9544959188559045 0.1137169564689446 0.2756918473565419 0.9544959188559045 -0.1137169564689446 -0.2442800039146172 -0.9227793826871448 0.2980025009542817 0.2442800039146172 0.9227793826871448 -0.2980025009542817 0.2442758821752764 -0.9227803713982717 0.2980028180228472 -0.2442758821752764 0.9227803713982717 -0.2980028180228472 0.2756935896854381 -0.9544954774242553 0.1137164376112813 -0.2756935896854381 0.9544954774242553 -0.1137164376112813 1.490483751561444e-018 -0.9931464214067424 0.1168767968716687 -1.490483751561444e-018 0.9931464214067424 -0.1168767968716687 -0.8704887825702192 -0.4886119739719802 0.05922514930857357 0.8704887825702192 0.4886119739719802 -0.05922514930857357 -0.8046057671952051 -0.5876209018924398 -0.0855057603634472 0.8046057671952051 0.5876209018924398 0.0855057603634472 -9.200784490519991e-013 -0.9321223686831632 0.3621434657708033 9.200784490519991e-013 0.9321223686831632 -0.3621434657708033 0.804604821940701 -0.5876223945276238 -0.08550439731028192 -0.804604821940701 0.5876223945276238 0.08550439731028192 0.8704895216285693 -0.4886106534106326 0.05922518137160225 -0.8704895216285693 0.4886106534106326 -0.05922518137160225 2.974499319537437e-008 -0.8735363385033532 0.4867589396345526 -2.974499319537437e-008 0.8735363385033532 -0.4867589396345526 -0.3116860285389407 -0.8228945555233569 0.4750751204847921 0.3116860285389407 0.8228945555233569 -0.4750751204847921 -0.9015170437079738 -0.4167464578187631 0.1165736239444807 0.9015170437079738 0.4167464578187631 -0.1165736239444807 -0.9185766413583475 -0.3939973318069229 0.03135373151386103 0.9185766413583475 0.3939973318069229 -0.03135373151386103 -0.2086040935063664 -0.949799062777097 0.2331653330152989 0.2086040935063664 0.949799062777097 -0.2331653330152989 0.2086063702315061 -0.9497992489494362 0.2331625377154804 -0.2086063702315061 0.9497992489494362 -0.2331625377154804 0.9185766708178467 -0.3939969993628236 0.03135704581577447 -0.9185766708178467 0.3939969993628236 -0.03135704581577447 0.9015146128661709 -0.4167510528800471 0.1165759954370121 -0.9015146128661709 0.4167510528800471 -0.1165759954370121 0.3116915687490797 -0.8228931038431774 0.4750740001495339 -0.3116915687490797 0.8228931038431774 -0.4750740001495339 -0.8174019137252895 -0.3563103952147633 0.4526555132770762 0.8174019137252895 0.3563103952147633 -0.4526555132770762 -0.9999820905342003 1.551754390397572e-005 0.005984845031944604 0.9999820905342003 -1.551754390397572e-005 -0.005984845031944604 -0.9733205705292534 -0.02918463832305922 -0.2275858604363652 0.9733205705292534 0.02918463832305922 0.2275858604363652 -0.9708137837163441 -0.09990252189294425 -0.2180368855624793 0.9708137837163441 0.09990252189294425 0.2180368855624793 -4.973308797008195e-005 -0.4802883840395421 0.8771106348023067 4.973308797008195e-005 0.4802883840395421 -0.8771106348023067 0.9708140150792235 -0.09990213515044862 -0.2180360326141954 -0.9708140150792235 0.09990213515044862 0.2180360326141954 0.9733203282558441 -0.02918431405002838 -0.2275869381519185 -0.9733203282558441 0.02918431405002838 0.2275869381519185 0.999982070663732 1.552603589011465e-005 0.005988164160817121 -0.999982070663732 -1.552603589011465e-005 -0.005988164160817121 0.8174051349614597 -0.3563064286015123 0.4526528186986943 -0.8174051349614597 0.3563064286015123 -0.4526528186986943 -1.533467956234012e-008 -0.3933849529556973 0.9193738514815634 1.533467956234012e-008 0.3933849529556973 -0.9193738514815634 -0.2774641446396492 -0.2995144511443457 0.9128552689200458 0.2774641446396492 0.2995144511443457 -0.9128552689200458 -0.9999975879857992 0.0004976203717153804 0.002139251399367902 0.9999975879857992 -0.0004976203717153804 -0.002139251399367902 -0.9996865263546504 -0.02493816425449222 -0.00222193352487478 0.9996865263546504 0.02493816425449222 0.00222193352487478 -0.5031715502941616 -0.4429180687134052 0.7420525421974897 0.5031715502941616 0.4429180687134052 -0.7420525421974897 -0.9938297139390042 -0.1089172766501073 -0.02096488824298363 0.9938297139390042 0.1089172766501073 0.02096488824298363 0.5031644996780427 -0.4429142935026257 0.742059576364873 -0.5031644996780427 0.4429142935026257 -0.742059576364873 0.9938298285119792 -0.1089165278974066 -0.02096334683736273 -0.9938298285119792 0.1089165278974066 0.02096334683736273 0.9996865289447992 -0.02493807414508746 -0.002221779519478998 -0.9996865289447992 0.02493807414508746 0.002221779519478998 0.9999975853886962 0.0004977304266776404 0.00214043948749002 -0.9999975853886962 -0.0004977304266776404 -0.00214043948749002 0.2774684575642872 -0.2995131211223426 0.912854394376479 -0.2774684575642872 0.2995131211223426 -0.912854394376479 -0.8994705543474922 -0.009788394691910805 0.4368717308217256 0.8994705543474922 0.009788394691910805 -0.4368717308217256 0.04493718847070125 -0.9989737508561716 0.00566517366904504 0.04076621903261399 -0.9683858721428929 -0.2461034701499217 0.0468698340447171 -0.9989001860101959 -0.00127947075645433 -0.0468698340447171 0.9989001860101959 0.00127947075645433 -0.04076621903261399 0.9683858721428929 0.2461034701499217 -0.04493718847070125 0.9989737508561716 -0.00566517366904504 0.02366492200974112 -0.5517765660279215 -0.8336561597257634 0.04462576523667903 -0.9752630527249254 -0.2164960024266041 -0.04462576523667903 0.9752630527249254 0.2164960024266041 -0.02366492200974112 0.5517765660279215 0.8336561597257634 -0.9990570470692374 -0.0375993076012986 -0.02170964691556774 0.9990570470692374 0.0375993076012986 0.02170964691556774 -0.9851454615818815 -0.06161690562177455 -0.1602865448695515 0.9851454615818815 0.06161690562177455 0.1602865448695515 -0.9690913892938591 -0.1070782175622976 0.2222524117308507 0.9690913892938591 0.1070782175622976 -0.2222524117308507 -0.9763006140656918 -0.175860789299445 -0.1261352201485753 0.9763006140656918 0.175860789299445 0.1261352201485753 9.869805431426705e-007 -0.1216014839457632 0.9925790039594904 -9.869805431426705e-007 0.1216014839457632 -0.9925790039594904 -1.837198440433751e-005 -0.05666264686922608 0.9983933814445304 1.837198440433751e-005 0.05666264686922608 -0.9983933814445304 0.9690892642041279 -0.1070789280220219 0.2222613353193871 -0.9690892642041279 0.1070789280220219 -0.2222613353193871 0.9763005019376909 -0.1758613568419084 -0.1261352967489112 -0.9763005019376909 0.1758613568419084 0.1261352967489112 0.985145322931821 -0.06161747969626393 -0.1602871763474503 -0.985145322931821 0.06161747969626393 0.1602871763474503 0.9990570199402463 -0.0375998952982182 -0.02170987751410551 -0.9990570199402463 0.0375998952982182 0.02170987751410551 -0.02366493571792748 -0.5517768020638852 -0.8336560031101667 -0.04076619997730011 -0.9683859664691773 -0.2461031021441385 -0.04462578548346446 -0.975263111227018 -0.2164957347149845 0.04462578548346446 0.975263111227018 0.2164957347149845 0.04076619997730011 0.9683859664691773 0.2461031021441385 0.02366493571792748 0.5517768020638852 0.8336560031101667 -0.04493713660936019 -0.9989737535032993 0.005665118258344553 -0.04686985171654567 -0.9989001851420066 -0.001279501205082898 0.04686985171654567 0.9989001851420066 0.001279501205082898 0.04493713660936019 0.9989737535032993 -0.005665118258344553 0.8994719120219989 -0.009786118546536363 0.4368689865019977 -0.8994719120219989 0.009786118546536363 -0.4368689865019977 7.367702913516951e-009 -0.02830913765764351 0.9995992160486525 -7.367702913516951e-009 0.02830913765764351 -0.9995992160486525 -0.1992518788334495 -0.01139878853772022 0.9798820114693465 0.1992518788334495 0.01139878853772022 -0.9798820114693465 0.05313815940111782 -0.9984565021845745 0.01615392400645438 0.04894046550362478 -0.9988003242091736 0.001656259622829284 -0.04894046550362478 0.9988003242091736 -0.001656259622829284 -0.05313815940111782 0.9984565021845745 -0.01615392400645438 0.02541770183677723 -0.5744325664555302 -0.818157177459594 -0.02541770183677723 0.5744325664555302 0.818157177459594 -0.4776759646854844 -0.1060206642515086 0.8721154118082427 0.4776759646854844 0.1060206642515086 -0.8721154118082427 -0.948167466935901 -0.3110276407063832 -0.06511728926312721 0.948167466935901 0.3110276407063832 0.06511728926312721 -0.9996321410519423 -0.02712136582566339 -0.0001187082981316481 0.9996321410519423 0.02712136582566339 0.0001187082981316481 0.4777126476003307 -0.1060674432822479 0.8720896305989708 -0.4777126476003307 0.1060674432822479 -0.8720896305989708 0.9481669711281279 -0.3110291485060471 -0.06511730677258731 -0.9481669711281279 0.3110291485060471 0.06511730677258731 0.9996321700259963 -0.02712029790701727 -0.0001187036323516585 -0.9996321700259963 0.02712029790701727 0.0001187036323516585 -0.02541772641987503 -0.5744328089866907 -0.8181570064133806 0.02541772641987503 0.5744328089866907 0.8181570064133806 -0.04894045645718776 -0.9988003246976386 0.001656232367120277 0.04894045645718776 0.9988003246976386 -0.001656232367120277 -0.05313800065321193 -0.9984564967070155 0.01615478474424408 0.05313800065321193 0.9984564967070155 -0.01615478474424408 0.1992520465395727 -0.01139743910568457 0.9798819930642794 -0.1992520465395727 0.01139743910568457 -0.9798819930642794 0.05698037502494026 -0.9982593360277356 0.01521627074816993 0.06301398155012374 -0.9978973057251951 0.01517251975109406 -0.06301398155012374 0.9978973057251951 -0.01517251975109406 -0.05698037502494026 0.9982593360277356 -0.01521627074816993 0.07220965848694676 -0.9972581577389953 -0.01618431475916849 -0.07220965848694676 0.9972581577389953 0.01618431475916849 0.08464117416450329 -0.9962514551856712 -0.01785804234755087 -0.08464117416450329 0.9962514551856712 0.01785804234755087 0.05804349935847929 -0.9543882301332066 -0.2928720853298034 -0.05804349935847929 0.9543882301332066 0.2928720853298034 -0.9997155845505343 -0.02376206962614927 -0.002028313059047507 0.9997155845505343 0.02376206962614927 0.002028313059047507 -0.9947201077769768 -0.08705250788645738 -0.0543485791427706 0.9947201077769768 0.08705250788645738 0.0543485791427706 -0.9567690259522409 -0.03346676688157008 0.2889169543188745 0.9567690259522409 0.03346676688157008 -0.2889169543188745 -0.9596228460909934 -0.2794338093639866 0.03226049355717801 0.9596228460909934 0.2794338093639866 -0.03226049355717801 -0.9999512956216323 -0.006497377633779611 0.007429028772524331 0.9999512956216323 0.006497377633779611 -0.007429028772524331 -3.901761616862526e-013 -0.09347540603174656 0.9956215889921231 3.901761616862526e-013 0.09347540603174656 -0.9956215889921231 0.9567670008545158 -0.03346797143143741 0.2889235209603388 -0.9567670008545158 0.03346797143143741 -0.2889235209603388 0.9947199598846177 -0.08705306808189042 -0.05435038863407004 -0.9947199598846177 0.08705306808189042 0.05435038863407004 0.9596226115168612 -0.2794344652553429 0.03226178998474629 -0.9596226115168612 0.2794344652553429 -0.03226178998474629 0.9999512957144556 -0.006498115259404758 0.007428371090393464 -0.9999512957144556 0.006498115259404758 -0.007428371090393464 0.9997155503841998 -0.02376330161955009 -0.00203071813770353 -0.9997155503841998 0.02376330161955009 0.00203071813770353 -0.08464106271132993 -0.9962514626526612 -0.01785815403477691 0.08464106271132993 0.9962514626526612 0.01785815403477691 -0.05804348823879056 -0.9543881044087331 -0.2928724972341693 0.05804348823879056 0.9543881044087331 0.2928724972341693 -0.07220971410323639 -0.9972581543863262 -0.01618427320294488 0.07220971410323639 0.9972581543863262 0.01618427320294488 -0.05697975250352784 -0.9982593489102732 0.01521775666365164 0.05697975250352784 0.9982593489102732 -0.01521775666365164 -0.06301300009297557 -0.9978973426808896 0.01517416520609868 0.06301300009297557 0.9978973426808896 -0.01517416520609868 0.1159152314789492 -0.5849783904363448 -0.8027228300189829 -0.1159152314789492 0.5849783904363448 0.8027228300189829 -0.9901595337418041 -0.1398104911772548 0.006092971113353422 0.9901595337418041 0.1398104911772548 -0.006092971113353422 -0.4132302658222034 -0.0853117835344339 0.906621556658943 0.4132302658222034 0.0853117835344339 -0.906621556658943 -0.9921051517240733 -0.1036476073615039 0.07060128476726806 0.9921051517240733 0.1036476073615039 -0.07060128476726806 0.4132279345911737 -0.08531204065782463 0.9066225950153186 -0.4132279345911737 0.08531204065782463 -0.9066225950153186 0.9901595172279322 -0.1398106134766217 0.006092848450349776 -0.9901595172279322 0.1398106134766217 -0.006092848450349776 0.9921051154436165 -0.1036470165708205 0.07060266189440977 -0.9921051154436165 0.1036470165708205 -0.07060266189440977 -0.1159164628534591 -0.5849792717652266 -0.8027220099415288 0.1159164628534591 0.5849792717652266 0.8027220099415288 0.1250974713162175 -0.9921180956036373 0.007232361032191726 -0.1250974713162175 0.9921180956036373 -0.007232361032191726 0.06485830889529796 -0.9936291449251408 -0.09216573182357687 -0.06485830889529796 0.9936291449251408 0.09216573182357687 -0.3954628486908789 -0.9144944149380586 -0.0854932766502305 0.3954628486908789 0.9144944149380586 0.0854932766502305 -0.9994575407345154 0.02665766213240324 0.0193389068602394 0.9994575407345154 -0.02665766213240324 -0.0193389068602394 -0.9362204999204865 -0.02944462073358915 0.3501773691124108 0.9362204999204865 0.02944462073358915 -0.3501773691124108 0 0 1 -0 -0 -1 0.9362197042172463 -0.02944465744666143 0.3501794933790681 -0.9362197042172463 0.02944465744666143 -0.3501794933790681 0.9994576316254423 0.02665534148774293 0.01933740819844515 -0.9994576316254423 -0.02665534148774293 -0.01933740819844515 -0.1250972968983719 -0.9921181191248688 0.007232151329507097 0.1250972968983719 0.9921181191248688 -0.007232151329507097 -0.06485814056062322 -0.9936291286457055 -0.09216602578930233 0.06485814056062322 0.9936291286457055 0.09216602578930233 0.3954580285428707 -0.9144961465914285 -0.08549704983456716 -0.3954580285428707 0.9144961465914285 0.08549704983456716 -0.100695794754597 -0.9856927002483367 -0.1351675167926194 0.100695794754597 0.9856927002483367 0.1351675167926194 0.3120306604070797 -0.7954287677809169 -0.5195478248943536 -0.3120306604070797 0.7954287677809169 0.5195478248943536 -0.4151053597124028 -2.915928035469865e-005 0.9097733451183172 0.4151053597124028 2.915928035469865e-005 -0.9097733451183172 0.4150926689286753 -2.886845055806662e-005 0.9097791354874445 -0.4150926689286753 2.886845055806662e-005 -0.9097791354874445 0.1006962484761042 -0.9856925593885402 -0.1351682059839063 -0.1006962484761042 0.9856925593885402 0.1351682059839063 -0.3120320962622111 -0.7954273829439994 -0.5195490827295054 0.3120320962622111 0.7954273829439994 0.5195490827295054 0.01779273758949539 -0.9952231201370434 -0.0959914560456267 -0.01779273758949539 0.9952231201370434 0.0959914560456267 -0.9998629779706079 -0.0005771715810145362 0.01654364399743302 0.9998629779706079 0.0005771715810145362 -0.01654364399743302 -0.9145873298303341 -0.0005385388398137522 0.404388088461737 0.9145873298303341 0.0005385388398137522 -0.404388088461737 0.9145808842121449 -0.0005380349770274592 0.4044026665986449 -0.9145808842121449 0.0005380349770274592 -0.4044026665986449 0.9998629826075197 -0.0005765823352515847 0.01654338429721482 -0.9998629826075197 0.0005765823352515847 -0.01654338429721482 -0.01779270708697304 -0.9952231309454234 -0.09599134963998564 0.01779270708697304 0.9952231309454234 0.09599134963998564 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 -0.5805296449644594 0.7970800414865904 0.1662790990508843 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 0.5805288259387089 0.79708037182807 0.1662803749714611 -0.01939252250667103 -0.9996859402873071 -0.01587296011180408 0.01939252250667103 0.9996859402873071 0.01587296011180408 -0.9999397759429392 -0.002011921118868233 0.01078872840496727 0.9999397759429392 0.002011921118868233 -0.01078872840496727 0.9999397920931323 -0.002011726887975461 0.01078726766476841 -0.9999397920931323 0.002011726887975461 -0.01078726766476841 0.01939245868370844 -0.9996859421610532 -0.0158729200769155 -0.01939245868370844 0.9996859421610532 0.0158729200769155 -0.02872498908936132 -0.9993173359750012 -0.02323224099484929 0.02872498908936132 0.9993173359750012 0.02323224099484929 0.02872489305492778 -0.999317340439856 -0.0232321676818156 -0.02872489305492778 0.999317340439856 0.0232321676818156 -0.0338039231267008 -0.9985855403020367 -0.04103917008095537 0.0338039231267008 0.9985855403020367 0.04103917008095537 0.03380383430301043 -0.9985855458828281 -0.04103910745019926 -0.03380383430301043 0.9985855458828281 0.04103910745019926 -0.03095060591091806 -0.9988632126208304 -0.03625386140179363 0.03095060591091806 0.9988632126208304 0.03625386140179363 0.03095052874497888 -0.9988632158995391 -0.03625383694503856 -0.03095052874497888 0.9988632158995391 0.03625383694503856 -0.02363192930817951 -0.9986858878964992 -0.0454755894250371 0.02363192930817951 0.9986858878964992 0.0454755894250371 0.02363189189260647 -0.9986858900590736 -0.04547556137633117 -0.02363189189260647 0.9986858900590736 0.04547556137633117 -0.01337538710735877 -0.9993032316896482 -0.03484465747218112 0.01337538710735877 0.9993032316896482 0.03484465747218112 0.01337535277071187 -0.9993032331787931 -0.03484462794563845 -0.01337535277071187 0.9993032331787931 0.03484462794563845</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"296\" source=\"#ID1461\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1459\">\r\n\t\t\t\t\t<float_array count=\"1204\" id=\"ID1462\">-0.02636663033366615 6.838755345493062 -0.02721889647085817 3.636995278897075 -3.055581198595796 6.842143449215987 -0.03075380607900271 3.636979847311833 -0.03160607430193035 6.838739913907263 2.997601080631402 6.84212801763019 -0.02864833987362354 5.483028193469725 -3.057863351562802 5.485993454889168 -3.046682747609613 7.421353608982838 -0.0289123393400924 3.636263891157869 -3.058127357745602 3.636405881443521 -3.058091668136631 6.840639902274836 3.000147237397563 3.636405235727331 -0.02906036768025068 3.63626324544168 3.00011154770125 6.840639256558645 2.9998832306968 5.48599316172996 -0.02932436766466735 5.483027900310498 2.988705010905401 7.421353315835564 -0.02898635342717174 7.420855085281451 -0.02898635342717174 5.482544939601901 -3.047030568122864 7.420855085281451 -5.159912367381772 5.296856146763377 -5.474658075878946 7.219549253258736 -5.225329501062905 7.231142715651031 -4.373547947010668 2.495708889645916 -4.566221446976303 2.304321095525766 -5.284730168103733 5.567656581500462 -0.02897094982604534 2.714251480314225 -0.02897212529120171 0.5724803258323166 -3.058185968988067 2.714376292021933 -0.02900058159730653 0.5724802940152011 -0.0290017570653396 2.714251448497109 3.000205848768988 2.714376260204818 4.51912475598531 2.318306065720881 4.326447095963328 2.509694088595111 5.23761693820873 5.581645452160142 5.425781084175483 7.221534450837133 5.111034404777476 5.298841441446934 5.176454019892085 7.233127912643904 2.989052832126617 7.420855085281451 -0.02898635342717165 5.482544939601901 -0.02898635342717165 7.420855085281451 -0.02898635342717178 7.790007593915478 -3.047030568122864 7.790007593915478 -0.02898529171943672 9.585939924497836 -5.233578201713131 7.355735839827242 -5.482903018040604 7.344061827949919 -5.41974110645347 9.048229402814595 -5.16381046254205 5.295773823995131 -5.413134337179937 5.295836535495962 -5.478754947755846 7.218434380103668 -5.163568618199661 5.683786140393082 -4.518427213087274 2.405157487470111 -5.412892491165275 5.683855181014641 -2.615203760778698 -0.06186090152526974 -3.899768724483668 2.141380444338674 -3.691532640562677 2.315708005786755 -0.02898635342717171 0.5724606318597649 -1.850643754005432 0.5724606318597649 -3.058201372623444 2.714354935577812 1.792670786380768 0.572460631859765 -0.02898635342717171 0.572460631859765 3.000221252441406 2.714354935577812 3.843183514386036 2.141180313622572 2.558618446146386 -0.06206097129407832 3.6349433670269 2.315507870248307 4.469578241634467 2.418372813017507 5.114699187858625 5.697005749432438 5.36402783025949 5.6970747901442 5.364272833238893 5.297829338659803 5.114944189165764 5.297766627151653 5.429887681453169 7.220427407740841 5.434128262689799 7.348232666916337 5.184804956831304 7.359906676366162 5.370971728479812 9.052399887415888 2.989052832126617 7.790007593915478 -0.02898635342717164 7.790007593915478 -0.02898529171943657 9.585939924497836 -3.073559076940085 7.820103220942611 -3.109856074710857 9.522417415152312 -0.05711945621795228 9.618731098239561 -5.699618030456981 8.965286654319527 -5.736105240871591 7.260339372503561 -5.93120865529341 8.970221092247884 -5.073759430605529 7.054785231902612 -4.935531951542906 5.136040407634792 -6.127173639791447 5.133255636556745 -4.935545297933068 5.162224262445908 -3.287399448785889 2.190096748478799 -6.368646659170224 2.200915323218838 -2.568644366127439 0.1413895475487604 -2.725268582380571 -0.1084508522356947 -3.798823731668918 2.270371778376013 -3.466273929253212 3.41033496303592 -3.149763314163041 0.8796827536958151 -6.460951685521415 0.8988482333115089 -0.02898635342717163 1.937154820393069 -0.02898635342717164 1.454819714509872 -1.850643754005432 1.937154820393069 1.792670786380768 1.937154820393069 -0.02898635342717174 1.454819714509872 -0.02898635342717175 1.937154820393069 2.669317919921736 -0.1090026243704966 2.512696550149399 0.140837784823799 3.742868755891826 2.269820095835775 3.146487813238784 0.8511975929225955 3.462996692318609 3.381850019386242 6.457675910666511 0.8703630741826385 3.287399951146515 2.189953668002609 4.935545800267551 5.162081185696131 6.368647161530801 2.200772242756213 4.935532676480418 5.136350543601128 5.073760155673227 7.055095395720951 6.127174364728862 5.133565772482659 3.051882784571162 9.522470531624158 3.015582208849378 7.820156340730565 -0.0008502575972435707 9.618784214523791 5.691293807880778 7.265349514273309 5.65481379488936 8.970296396698309 5.886400741133047 8.975230833470755 -3.261216748434335 9.662302326147335 -0.2208518809264089 10.214249374523 -0.2102702694532389 9.804438774077401 -5.647174495173614 7.133758925437891 -5.878680504139493 7.141729747383367 -5.701452783863372 7.570295796680164 -5.378161089582958 8.77197701868781 -5.073824521938459 7.078123397081378 -6.12567424477393 7.073539197708593 -6.125572868107976 7.050180529447786 -5.073723145548264 7.05476479209345 -6.12713723702111 5.13323513221534 -6.127167100909393 5.130431462038796 -4.935525412693865 5.133216247242905 -6.253308388634133 4.896900817283603 -6.258978668700247 4.928608914566635 -4.94119507295335 5.164920888226908 -6.374281494973109 2.203604719333665 -3.281873387043052 3.388242983490191 -6.343363832797683 0.9586469866169477 -6.363116134675763 3.400265596412329 -3.516931398666756 0.2462875400800124 -3.279106132294992 -0.1733490150808107 -3.640044025700155 -0.02165769974764224 -6.466114527036964 0.002688284437034642 -3.15491272167495 -0.0139955519073096 -6.487623499595503 -0.4082085088720726 -0.02898635342717157 1.454819714509872 -1.847721189260483 1.454819714509872 -1.850643754005432 1.937154820393069 1.789742410182953 1.454819714509872 -0.02898635342717174 1.454819714509872 1.792670786380768 1.937154820393069 3.247335937252875 -0.1557451567850106 3.485164049653188 0.2638898259161639 3.608275259725327 -0.004054409868652941 3.151473509965481 -0.01422365240314152 6.462675041408438 0.002460183750547187 6.484184086812314 -0.4084366048630124 6.343462499663039 0.9333591743451106 3.281972038222571 3.362957176328559 6.363214785816568 3.374979799172784 4.941097925178682 5.164730528058628 6.258881521802579 4.928418553681022 6.374184336321573 2.203414350176213 4.935526244668555 5.133572133463288 6.127167932883925 5.130787348191338 6.253309220582092 4.897256697747134 5.07372449927955 7.055075300019057 6.12557422183897 7.050491037306701 6.127138590509018 5.133545612186522 0.1523347741752135 9.805934192734966 0.1629142784383076 10.21574484758487 3.203277673848404 9.663797725935616 5.073824113164295 7.078029599300062 5.378160680817295 8.771883221881627 6.125673835999754 7.073445399924637 5.601492339008226 7.161883139375415 5.655776694769287 7.598418447210583 5.832994668995053 7.169853932774302 -3.29229548917307 9.577208045340949 -3.135585968901885 9.988246606589721 -0.2544853944912711 10.14304715713552 -5.345153759990367 2.659266773740501 -6.12243651836439 2.652960177864921 -5.506542168678719 3.09404522880144 -5.366463836624983 8.76685689293635 -6.113982155565933 7.068421344626113 -6.143762830504425 8.763044579849012 -2.998909066793914 7.061671293003088 -3.009383622791294 5.144753875142473 -6.828240068496953 7.093632513089244 -3.006583778138543 1.558678636976905 -3.002738232531304 1.293285723944899 -6.831232731187104 1.55885611133052 -6.46510561082901 4.935179111872872 -6.579529808405709 2.210137881213651 -9.272240772076914 4.681736501928362 -6.547779309438316 3.229453125679772 -6.464223432163376 0.7891846968995643 -9.257544872562866 3.172448047115339 -3.277546589312663 -0.08843876873491094 -3.371355981309236 -0.3431960830523758 -3.634946533166137 0.07141021680080344 -6.648717845179229 0.00585761924331976 -6.669831971640257 -0.4050596526205177 -9.549385618892208 -0.3951926563523799 -3.14399619025572 -0.1065724795831643 -2.817386681209193 -0.4735937208030097 -6.476656430358466 -0.5012124531603661 -0.02898635342717163 0.913646990879659 -1.847721189260483 2.696075859143994 -0.02898635342717148 2.696075859143994 1.781119207154543 2.701809827268504 0.8152532076377372 1.729123404493221 -0.03760036592324648 2.696037187182018 -0.03194300973043898 0.9136173373610622 3.33699263842763 -0.321367168751961 3.243177321967573 -0.06660778468474321 3.600577886942102 0.09324249952771058 6.658814698157106 -0.4056713099979922 6.637700346328465 0.005245949403433635 9.538368487016358 -0.3958043140291034 2.814292429173244 -0.4709099327871273 3.140901745352777 -0.1038885235339979 6.473561762450731 -0.498528677789164 6.46084564322932 0.7640001628475446 6.544401249173743 3.204270616938121 9.254166738134776 3.147265491062098 6.575504533891243 2.209782281736347 6.461080479726541 4.934823526191813 9.268215374267234 4.681380914964183 2.944816367723171 1.294447701317205 2.948661020057206 1.55984063228462 6.773309973105766 1.560018106650228 2.95146016768939 5.144755718026892 2.940980549594411 7.061673136108093 6.770317208793428 7.093634356197926 0.196560697793166 10.14483968800053 3.077661907383472 9.990039162658695 3.23436934961255 9.579000668333457 6.114186672050714 7.068417750818075 5.366668350899943 8.766853299129746 6.143967346907679 8.763040986042407 5.507121974816171 3.14030772055557 6.123016175449285 2.699228291979475 5.345733414294688 2.705534807467032 -2.124944464071637 5.929230350296569 -4.793328873308041 4.831765829292571 -2.424087179380182 6.662759231684621 -6.329741855409807 3.517445271705451 -6.336494444822557 3.972765392797835 -5.691831002047781 3.926042402504652 -2.94268139914473 8.872257638594711 -2.944185181676458 7.177373413464506 -6.790849362496888 8.959695619745167 -2.998922106546994 7.060106920966361 -6.828253108172078 7.092068150392605 -6.845712750985853 8.842156164075469 -3.006445803952361 5.150512521979542 -6.831094757930405 5.150668686150087 -6.825302785272073 7.099390110382316 -2.972522825755776 1.776907481445139 -6.805192167810611 1.776907481445138 -6.801570916553547 2.03437296505763 -9.214528240608519 4.745969262161818 -6.522646409043738 2.27346763816126 -9.232525146047564 2.222123536139848 -9.604528261047836 2.393860449313284 -6.677475086746783 0.1768921183055275 -9.57627511056608 -0.2374426242850861 -2.765936644393134 -1.116894091628714 -0.9858012394810384 -1.238632662674646 -2.775689648758619 -1.388199031006643 -9.549072857123221 -0.3020218693831952 -6.669519401796959 -0.3119447185681393 -9.461015396905538 -5.376912490753298 -2.818037903687294 -0.3877109797521869 -6.472161291438469 -5.478532074706668 -6.477307879814198 -0.4152996229269818 -1.859099769337564 0.9136935523578336 -1.845019758784917 2.697931230696875 -0.02805939028729755 0.9136935523578337 1.796439903317344 2.691611429166005 1.804340486741244 0.9073356961307943 0.8250993973108234 1.724391901254001 -0.02668547621783949 0.9136798124634822 0.9839940938471216 -1.206368748089032 2.764129395093635 -1.084628390063306 2.773882667123692 -1.355937311880331 6.664504339654775 0.1626841406920702 9.591558611604032 2.379652713535864 9.563304722542457 -0.2516506470958837 6.658520920728246 -0.3180065740152979 9.538074517660286 -0.3080837246826926 9.450016779080851 -5.382974421571861 6.469046392546575 -5.478528909275005 2.814923421156487 -0.3877078143211198 6.474192981507066 -0.4152964574959116 6.51976775696096 2.27186243653367 9.211649476928296 4.744364060265751 9.229646420799721 2.220518334517832 6.773172053771983 5.150669074791106 2.948523099793939 5.150512910620561 6.76738067662801 7.099390499020172 6.747277703375682 1.778054512055766 2.91461282674071 1.778054512055766 6.743660030372366 2.035519925276201 6.770330240658309 7.092070927097284 2.940993581537236 7.060109697668658 6.787787501226327 8.842158940910547 2.07129614789165 5.951108811215057 2.370438806936668 6.684637715548111 4.739681227361353 4.853644255882038 2.886279891113184 7.177322034931364 2.884776109860868 8.872206260062704 6.732947347352482 8.959644241213219 5.688532992642515 3.969893912367153 6.333196440557649 4.016616713248672 6.326440875495734 3.561298437991529 -5.934439181466193 2.564486783206475 -6.382239992335672 3.030585942245407 -4.400330850436354 5.135936699598823 -2.863256667798199 8.858152859487548 -2.861252783238947 9.133225387838984 -2.51820719905027 9.155310854924538 -2.943009276547118 8.858157393776786 -6.791177314412912 8.945592095501487 -2.941058130282403 9.133230301267204 -6.751782475507639 7.092730904472949 -10.87570375166805 8.415305835162611 -6.769268352832716 8.842818656232213 -6.77333752277042 7.099227913273971 -6.779127273668858 5.150506482439512 -11.20841424702214 7.171661862608203 -6.814614871242686 2.040519201239409 -6.818460430289814 1.783056970246015 -11.80633820404197 2.04051920123941 -9.09171907599913 4.75479704864049 -9.112398907492434 2.230971879985942 -12.78866513764523 4.063980984403791 -9.173804071530416 2.850006625405597 -9.27450811171625 0.220479519264528 -14.21774104770318 2.814837196482078 -0.9926681972144869 -1.18325607489457 -0.9985162440230233 -1.447962315251344 -2.782857030104402 -1.329182627647969 -6.368675231933594 -0.4151985421776772 -6.363521218299866 -5.478430986404419 -9.211796522140503 -5.451368689537048 -9.184447614364222 -0.6590180415941973 -8.896168158166821 -5.726479328106876 -11.23707257527814 -5.726479328106876 -2.819283219477624 -0.3868174287271915 -2.859321231360607 -5.469182872040909 -6.473405966243857 -5.477638983772041 -0.03604880720977874 -7.294108674436618 -1.859099769337564 0.8648414790412329 -0.02805939028729712 0.864841479041232 -0.02192385777758977 -7.294165442551623 -0.02991328949181006 0.8647847109117424 1.801123699545969 0.8647847109117429 0.9964932391849524 -1.417559054370042 0.9906448802719919 -1.15285047148747 2.780833955293622 -1.298778315622266 9.27275597825315 0.2060561641657651 9.172052478769913 2.835583586177344 14.21598956540136 2.800414153029118 6.363521218299866 -5.478430986404419 6.368675231933594 -0.4151985421776772 9.211796522140503 -5.451368689537048 8.864198284825417 -5.730925506599281 9.15247965980455 -0.6634642487763759 11.20510771234817 -5.730925506599281 2.856167736454677 -5.469207712156813 2.816129719907828 -0.3868422688798363 6.470252050363343 -5.477663823887884 9.111763185916413 2.229381236623932 9.091083522079005 4.753206406652221 12.78802963708831 4.062390342039505 6.721226272527701 5.150507018182688 6.715437116939103 7.099228449012697 11.15050669776064 7.171662398346762 11.74842402563137 2.041615635174673 6.760540894601352 1.784153471565902 6.756698906493762 2.041615635174672 10.81780787399817 8.415309040742367 6.693892549552362 7.092734109939539 6.711376046269765 8.842821861848547 5.89261878482687 2.604508803106154 4.358522115839356 5.175966387100329 6.340418136713105 3.070609351969068 6.733274958915194 8.945555555684942 2.885103646949781 8.858120852209627 2.88315964419209 9.13319376520754 2.80340188434552 9.133180134758289 2.805398626466703 8.858107599537522 2.460351541592808 9.15526560239538 -6.77460312273808 7.021203173047983 -11.20967975574413 7.093642709070672 -10.89849197034851 8.343879214946197 -6.814614871242685 5.072583397887066 -11.80633820404197 5.072583397887066 -11.24382979373957 7.093896667381135 -6.869369183801485 0.7670959441529462 -11.80662675423104 0.7739615289177348 -11.85622182531548 1.043704364313447 -12.84480794438212 3.950526219131178 -9.168223069684583 2.118156324435814 -14.2121676338043 2.084092525164981 -14.48303158559042 2.144125741160916 -9.49824297019198 -0.3694625458418844 -15.5213641316082 -1.618177852494305 -2.714677155017853 -0.3876098990440369 -0.9292466193437576 -0.4886962845921516 -2.754774391651154 -5.469974875450134 -1.141758391497902 -1.132155274230674 6.818692493820374 -2.91283442237678 -1.159196012549074 -1.396351267211961 -9.355459686440179 -0.6597511565328875 -11.36906450694955 -5.742843595913961 -14.57962206144768 -4.68136921340893 -1.8421471118927 -7.294158452063673 -1.860025823116302 0.8630026274965318 -0.0289863534271717 -7.294158452063673 1.784169971942906 -7.294158452063673 -0.02898635342716709 -7.294158452063674 1.802049726247787 0.8630026274965329 -6.825540455410093 -2.882790235124071 1.134906988487327 -1.102095691848085 1.152345667236225 -1.366293968975637 0.9292466193437576 -0.4886962845921516 2.714677155017853 -0.3876098990440369 2.754774391651154 -5.469974875450134 9.489753801293103 -0.3709603909915806 14.47454318235925 2.142627979824022 15.51287503815869 -1.619675739281022 9.166575014905702 2.11859637962785 12.84316013339381 3.950966229592697 14.21051968951901 2.084532581188558 11.36526920227416 -5.735877480657661 9.351664591353453 -0.652783738407381 14.57581694983691 -4.674402826081583 11.15177162177318 7.09367909750699 6.716702132197051 7.021239561509185 10.8405850282281 8.343915602953048 11.74842402563136 5.072614769542129 6.75669890649376 5.072614769542129 11.18590727867735 7.093928043603475 11.74869750490922 0.77510221082015 6.811431000110176 0.7682366242140287 11.79828899240948 1.044845118560229 -10.80496632019039 6.977662048894169 -12.46155548835796 7.657098334252402 -10.49529891741161 8.228276001342932 -11.21487106341044 4.881022912592136 -13.21899380723216 6.8125123245248 -10.65669909416979 6.903537955267404 -11.51251320636103 0.5578575936245883 -14.61233982042884 0.2524251237269393 -11.5684994504771 0.8263467159237325 -9.481788910771552 -0.4489778016980909 -14.72705052423376 -4.443037756452817 -15.50488449584283 -1.697816468325149 -0.8205209546146492 -0.5288734822450359 -0.8300404743074754 -5.510289665520177 -2.643413216704172 -5.511117138271891 6.688313272222799 -3.315611715802851 6.658101382735414 -3.587815610413396 -1.244508051282861 -1.578725988619197 -0.02898635342717171 -15.45504570007324 -1.8421471118927 -7.086345553398132 -0.02898635342717171 -7.086345553398132 1.784169971942902 -7.086345553398132 -6.667602453628678 -3.549646618820059 -6.697815009734231 -3.277441587974647 1.235004835475794 -1.540548610673851 0.8331646414142193 -5.5091467110538 0.8236442068899232 -0.5277306955751653 2.646536927669105 -5.509974183777642 14.71921589675338 -4.441333888747046 9.473963539051594 -0.4472738422507893 15.49705920225716 -1.696112537563038 12.40393384027185 7.657276229073564 10.74734348798995 6.977839945846476 10.43767726880506 8.228453894372517 13.1615240929437 6.812788755903888 11.15740491040168 4.881299309953024 10.59922465227442 6.903814388249673 14.55454565970635 0.2549110852172093 11.45473337963093 0.5603437143635875 11.51071612648785 0.8288329766496544 -10.67083552423818 7.305298660398512 -13.23313184952681 7.214318423797966 -12.32748189269051 7.984595464340071 -12.10251372621878 4.076419314872052 -14.88997705397223 4.908523114067743 -14.07829490287512 6.03689070274844 -12.04632824074949 4.268192840440507 -15.10444972929663 3.776010808033947 -14.83508302186561 5.095958089172433 -12.78301536129654 0.2962467436444843 -14.62950192805164 0.4509841625962124 -11.52928819755993 0.7524619498734347 -0.9297487410889054 -0.5276811829171171 7.085836338187223 -2.023700170738353 -0.9445453203016435 -5.509084486554984 7.088025415829121 -2.553216429840028 15.45672905434624 -2.553216429840028 7.088193710545637 -2.827091748524344 -1.849792003631592 -15.45504570007324 1.791812628507614 -15.45504570007324 -7.088140225495319 -2.788095125751982 -15.45667561482647 -2.514218604200972 -7.087971978350901 -2.514218604200972 -7.085850612107634 -2.022563490992714 0.9297344638217198 -0.5265445530501437 0.9445310551610517 -5.507947690603388 13.17564725650051 7.21417585087989 10.61334620353099 7.305156086916923 12.26999375690795 7.984452886651061 14.83200498227364 4.908476323045658 12.04454165399633 4.076372525604834 14.02031925564632 6.036843909346684 14.57169925216748 0.4533441194975119 12.72520792726563 0.2986069485387188 11.47149979120349 0.7548214236054923 15.04646703475571 3.776053864359719 11.98835627572861 4.268235893980133 14.77711105823558 5.096001138026241 -12.6266160603829 2.297591583870821 -15.12178814565102 0.7325988359478599 -14.47438377006741 2.436194618030055 7.08391559836993 -2.019479612635523 7.093969354055942 -5.506245102356618 -0.9465268942683268 -5.50472376224181 15.4548777945726 -2.559000053247869 15.45486120822411 -2.837936446359119 7.086161659917741 -2.827294198155631 -15.45486788703943 -2.799944950337141 -15.45488434305973 -2.521001721354575 -7.086168334303783 -2.789302441324948 -7.094039863961248 -5.505237706008601 -7.083986074240761 -2.018472221561888 0.9464563790294733 -5.503716365896093 15.06409865668014 0.7342359878714846 12.56892409316339 2.29922863371934 14.41669653760615 2.437831658838328 -13.46262675968666 2.193185871354747 -15.7924982468157 2.177528096152326 -13.26693739714533 3.692991203840863 15.45651721013149 -2.02727151420398 7.097984951813347 -5.505997022377133 7.087814756859743 -2.019231870341796 -7.097944413422521 -5.504989922836323 -15.45647663035068 -2.026264419961787 -7.087774172317961 -2.01822477611185 15.7345131545799 2.177569303028596 13.40465358825945 2.193227078345851 13.20894992640147 3.693032421831513 -13.67575051186454 0.3119285146293583 -15.79802331059779 3.026710069019142 -13.46815091855662 3.042232609582492 15.45092476634052 -2.014616342788127 13.99539387109469 -5.493019668618155 7.092258426701513 -5.493019668618155 -13.99551091456761 -5.49239127305972 -15.45104179173041 -2.01398800205036 -7.092375472872663 -5.49239127305972 15.74003799321126 3.026710239021875 13.61776877069671 0.3119286846437253 13.41017752197328 3.042232779585159 -13.86518791625325 0.1692229827221521 -16.18437295613618 0.2123764109855858 -15.98639586710108 2.88483664257106 16.12642020221242 0.2123388549923344 13.80722562885067 0.169185426859677 15.92843001220545 2.884799078478925 -13.86446578634248 0.2080251464501503 -13.87008147872469 -2.473959308767584 -16.18365094042712 0.2511724367599241 13.81212377347374 -2.47398692214609 13.8065033197383 0.2079975307914403 16.12569800729954 0.2511448210645306 -13.92494684437629 -2.517198155654229 -16.24051475529805 -2.526288577242352 -16.23794953086601 0.2084146666107355 16.18257905510459 -2.526342953705542 13.8670063789047 -2.517252532117403 16.18001383595163 0.2083602901524978 -13.52001637528098 -5.33607329619298 -16.23979030598128 -2.707268479957214 -13.92422244310166 -2.698165829005447 16.18185434755122 -2.707388557209061 13.46207921431993 -5.336193364330121 13.86628171939325 -2.698285906288855 -13.3838787709003 -5.214761861270069 -15.70455385173568 -5.214761861270069 -16.10638680846293 -2.588788711866555 15.64659092828793 -5.214788734311799 13.32590988752191 -5.214788734311799 16.04841912021596 -2.588815587613281</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"602\" source=\"#ID1462\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1458\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1456\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1457\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"204\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1458\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1459\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 3 0 4 6 5 0 6 2 7 8 8 1 9 10 10 2 11 12 12 1 13 6 14 6 15 0 16 14 17 16 18 0 19 8 20 2 21 18 22 8 23 10 24 20 25 2 26 1 27 22 28 10 29 22 30 1 31 12 32 24 33 12 34 6 35 26 36 6 37 14 38 14 39 0 40 16 41 16 42 8 43 28 44 8 45 18 46 30 47 2 48 32 49 18 50 2 51 20 52 32 53 34 54 20 55 10 56 22 57 36 58 10 59 38 60 22 61 12 62 24 63 40 64 12 65 24 66 6 67 42 68 42 69 6 70 26 71 26 72 14 73 44 74 14 75 16 76 28 77 8 78 30 79 28 80 30 81 18 82 46 83 18 84 32 85 48 86 32 87 20 88 50 89 36 90 34 91 10 92 20 93 34 94 52 95 22 96 54 97 36 98 38 99 54 100 22 101 40 102 38 103 12 104 40 105 24 106 56 107 24 108 42 109 58 110 42 111 26 112 60 113 44 114 14 115 28 116 26 117 44 118 62 119 30 120 64 121 28 122 30 123 46 124 66 125 46 126 18 127 68 128 68 129 18 130 48 131 48 132 32 133 70 134 70 135 32 136 50 137 20 138 52 139 50 140 36 141 72 142 34 143 52 144 34 145 74 146 54 147 72 148 36 149 76 150 54 151 38 152 76 153 38 154 40 155 40 156 56 157 78 158 56 159 24 160 58 161 42 162 80 163 58 164 42 165 60 166 80 167 26 168 82 169 60 170 28 171 64 172 44 173 26 174 62 175 82 176 44 177 84 178 62 179 30 180 66 181 64 182 46 183 86 184 66 185 46 186 68 187 86 188 88 189 89 190 90 191 89 192 94 193 95 194 70 195 50 196 98 197 50 198 52 199 100 200 72 201 102 202 34 203 52 204 74 205 104 206 34 207 102 208 74 209 106 210 72 211 54 212 76 213 108 214 54 215 106 216 54 215 108 214 110 217 76 218 40 219 78 220 56 221 112 222 110 223 40 224 78 225 56 226 58 227 114 228 58 229 80 230 116 231 118 232 119 233 120 234 119 235 124 236 125 237 64 238 84 239 44 240 82 241 62 242 128 243 84 244 128 245 62 246 64 247 66 248 130 249 86 250 132 251 66 252 134 253 88 254 135 255 88 256 90 257 135 258 89 259 95 260 90 261 94 262 138 263 95 264 98 265 50 266 100 267 100 268 52 269 104 270 72 271 140 272 102 273 104 274 74 275 142 276 102 277 144 278 74 279 140 280 72 281 106 282 76 283 146 284 108 285 106 286 108 285 146 284 146 287 76 288 110 289 56 290 114 291 112 292 78 293 112 294 148 295 150 296 110 297 78 298 58 299 116 300 114 301 120 302 119 303 125 304 152 305 118 306 120 307 125 308 124 309 154 310 64 311 130 312 84 313 124 314 156 315 154 316 84 317 158 318 128 319 66 320 132 321 130 322 134 323 160 324 161 325 134 326 135 327 160 328 90 329 164 330 135 331 90 332 95 333 166 334 95 335 138 336 168 337 98 338 100 339 170 340 100 341 104 342 172 343 140 344 174 345 102 346 74 347 144 348 142 349 104 350 142 351 176 352 102 353 178 354 144 355 180 356 140 357 106 358 180 359 106 360 146 361 182 362 146 363 110 364 112 365 114 366 184 367 150 368 78 369 148 370 148 371 112 372 186 373 188 374 110 375 150 376 114 377 116 378 190 379 120 380 125 381 192 382 194 383 152 384 120 385 196 386 125 387 154 388 84 389 130 390 158 391 154 392 156 393 198 394 198 395 156 396 200 397 90 398 166 399 164 400 95 401 168 402 166 403 138 404 202 405 168 406 170 407 100 408 172 409 172 410 104 411 204 412 102 413 174 414 178 415 140 416 206 417 174 418 104 419 176 420 208 421 206 422 140 423 180 424 210 425 180 426 146 427 210 428 146 429 182 430 182 431 110 432 188 433 112 434 184 435 212 436 114 437 190 438 184 439 186 440 112 441 214 442 192 443 125 444 196 445 194 446 120 447 192 448 216 449 152 450 194 451 166 452 218 453 164 454 168 455 220 456 166 457 202 458 222 459 168 460 104 461 208 462 204 463 174 464 224 465 178 466 206 467 226 468 174 469 228 470 206 471 180 472 228 470 180 472 210 473 230 474 210 475 182 476 232 477 182 478 188 479 214 480 112 481 212 482 234 483 192 484 196 485 236 486 194 487 192 488 238 489 216 490 194 491 166 492 220 493 218 494 168 495 240 496 220 497 168 498 222 499 240 500 242 501 222 502 202 503 174 504 226 505 224 506 206 507 244 508 226 509 244 510 206 471 228 470 228 470 210 473 246 511 230 512 246 513 210 514 230 515 182 516 232 517 236 518 192 519 234 520 248 521 194 522 236 523 238 524 250 525 216 526 238 527 194 528 248 529 242 530 252 531 222 532 226 533 254 534 224 535 244 536 256 537 226 538 258 539 246 540 230 541 260 542 230 543 232 544 262 545 250 546 238 547 264 548 252 549 242 550 256 551 254 552 226 553 260 554 258 555 230 556 262 557 266 558 250 559 268 560 252 561 264 562 256 563 270 564 254 565 272 566 258 567 260 568 262 569 274 570 266 571 268 572 276 573 252 574 278 575 274 576 262 577 268 578 280 579 276 580 282 581 274 582 278 583 280 584 284 585 276 586 286 587 282 588 278 589 288 590 284 591 280 592 286 593 290 594 282 595 288 596 292 597 284 598 294 599 290 600 286 601</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"204\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1458\" />\r\n\t\t\t\t\t<p>3 4 5 7 5 4 9 3 5 3 11 4 7 4 13 15 5 7 9 5 17 9 19 3 3 21 11 11 23 4 13 4 23 7 13 25 15 7 27 17 5 15 29 9 17 31 19 9 19 33 3 33 21 3 11 21 35 11 37 23 13 23 39 13 41 25 43 7 25 27 7 43 45 15 27 29 17 15 29 31 9 47 19 31 49 33 19 51 21 33 11 35 37 53 35 21 37 55 23 23 55 39 13 39 41 57 25 41 59 43 25 61 27 43 29 15 45 63 45 27 29 65 31 67 47 31 69 19 47 49 19 69 71 33 49 51 33 71 51 53 21 35 73 37 75 35 53 37 73 55 39 55 77 41 39 77 79 57 41 59 25 57 59 81 43 81 61 43 61 83 27 45 65 29 83 63 27 63 85 45 65 67 31 67 87 47 87 69 47 91 92 93 96 97 92 99 51 71 101 53 51 35 103 73 105 75 53 75 103 35 55 73 107 109 55 107 55 109 77 41 77 111 113 57 79 79 41 111 115 59 57 117 81 59 121 122 123 126 127 122 45 85 65 129 63 83 63 129 85 131 67 65 67 133 87 136 93 137 136 91 93 91 96 92 96 139 97 101 51 99 105 53 101 103 141 73 143 75 105 75 145 103 107 73 141 147 109 107 109 147 77 111 77 147 113 115 57 149 113 79 79 111 151 115 117 59 126 122 121 121 123 153 155 127 126 85 131 65 155 157 127 129 159 85 131 133 67 162 163 137 163 136 137 136 165 91 167 96 91 169 139 96 171 101 99 173 105 101 103 175 141 143 145 75 177 143 105 145 179 103 107 141 181 147 107 181 111 147 183 185 115 113 149 79 151 187 113 149 151 111 189 191 117 115 193 126 121 121 153 195 155 126 197 159 131 85 199 157 155 201 157 199 165 167 91 167 169 96 169 203 139 173 101 171 205 105 173 179 175 103 175 207 141 209 177 105 181 141 207 147 181 211 183 147 211 189 111 183 213 185 113 185 191 115 215 113 187 197 126 193 193 121 195 195 153 217 165 219 167 167 221 169 169 223 203 205 209 105 179 225 175 175 227 207 181 207 229 211 181 229 183 211 231 189 183 233 213 113 215 197 193 235 193 195 237 195 217 239 219 221 167 221 241 169 241 223 169 203 223 243 225 227 175 227 245 207 229 207 245 247 211 229 211 247 231 233 183 231 235 193 237 237 195 249 217 251 239 249 195 239 223 253 243 225 255 227 227 257 245 231 247 259 233 231 261 239 251 263 243 253 265 227 255 257 231 259 261 251 267 263 265 253 269 255 271 257 261 259 273 267 275 263 253 277 269 263 275 279 277 281 269 279 275 283 277 285 281 279 283 287 281 285 289 283 291 287 285 293 289 287 291 295</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1463\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1464\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1467\">-0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7728267908096314 0.3120907545089722 0.236614540219307 -0.7728267908096314 0.3120907545089722 0.236614540219307 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1467\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1465\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1468\">-0.100695794754597 -0.9856927002483367 -0.1351675167926194 -0.3954628486908789 -0.9144944149380586 -0.0854932766502305 -0.7920645011639883 -0.5938971135727662 0.1411383877114198 0.7920645011639883 0.5938971135727662 -0.1411383877114198 0.3954628486908789 0.9144944149380586 0.0854932766502305 0.100695794754597 0.9856927002483367 0.1351675167926194 -0.7834146661868462 -0.5940033022008459 0.1828155840672318 0.7834146661868462 0.5940033022008459 -0.1828155840672318</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1468\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1466\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1464\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1465\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1466\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 1 6 2 3 7 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1469\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1470\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID1473\">-0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.3545526266098023 0.4489807486534119 0.2332167774438858 -0.3545526266098023 0.4489807486534119 0.2332167774438858 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.5312814712524414 0.4448592662811279 0.2332167774438858 -0.5312814712524414 0.4448592662811279 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.5847116112709045 0.447659969329834 0.2332167774438858 -0.5847116112709045 0.447659969329834 0.2332167774438858 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5898233652114868 0.6375383734703064 0.1986889690160751</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID1473\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1471\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID1474\">0.1159152314789492 -0.5849783904363448 -0.8027228300189829 0.02541770183677723 -0.5744325664555302 -0.818157177459594 0.002455958872292993 -0.134052915566394 -0.990971131816748 -0.002455958872292993 0.134052915566394 0.990971131816748 -0.02541770183677723 0.5744325664555302 0.818157177459594 -0.1159152314789492 0.5849783904363448 0.8027228300189829 0.01360116452442704 -0.1197858586092047 -0.9927065812216794 -0.01360116452442704 0.1197858586092047 0.9927065812216794 0.003485675612845834 -0.1357584235591588 -0.990735837899414 -0.003485675612845834 0.1357584235591588 0.990735837899414 0.3120306604070797 -0.7954287677809169 -0.5195478248943536 -0.3120306604070797 0.7954287677809169 0.5195478248943536 0.001228544436429594 -0.530792278723088 -0.8475010604869587 -0.001228544436429594 0.530792278723088 0.8475010604869587 0.0009837850219002171 -0.5287955729337499 -0.8487486519651727 -0.0009837850219002171 0.5287955729337499 0.8487486519651727 0.02366492200974112 -0.5517765660279215 -0.8336561597257634 -0.02366492200974112 0.5517765660279215 0.8336561597257634 0.3639947690900174 -0.1116367124113476 -0.9246864617355932 -0.3639947690900174 0.1116367124113476 0.9246864617355932 -0.002892945757292406 -0.5261264371370477 -0.8504014363877342 0.002892945757292406 0.5261264371370477 0.8504014363877342 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 -0.5805296449644594 0.7970800414865904 0.1662790990508843 0.5344913977113528 -0.4762571258614551 -0.6982106385889222 -0.5344913977113528 0.4762571258614551 0.6982106385889222</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID1474\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1472\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1470\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1471\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1472\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 2 3 5 7 2 1 8 9 4 3 10 0 6 7 5 11 12 6 2 3 7 13 14 2 8 9 3 15 8 1 16 17 4 9 18 10 6 7 11 19 20 6 12 13 7 21 12 2 14 15 3 13 22 10 18 19 11 23 20 18 6 7 19 21 22 18 24 25 19 23 24 18 20 21 19 25</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1475\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1476\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID1479\">-0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5370995402336121 0.7065956592559815 0.1053698509931564 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5370995402336121 0.7065956592559815 0.1053698509931564 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.3720340728759766 0.7059378027915955 0.1053698509931564 -0.3720340728759766 0.7059378027915955 0.1053698509931564 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5370995402336121 0.7579361200332642 -0.08268103003501892 -0.5370995402336121 0.7579361200332642 -0.08268103003501892 -0.374770998954773 0.7579371929168701 -0.08268103003501892 -0.374770998954773 0.7579371929168701 -0.08268103003501892 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.5373399257659912 0.7229641675949097 -0.2198816239833832 -0.5373399257659912 0.7229641675949097 -0.2198816239833832 -0.3733293414115906 0.7212921380996704 -0.2198816239833832 -0.3733293414115906 0.7212921380996704 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.3628515005111694 0.5584809184074402 -0.2725684344768524 -0.3628515005111694 0.5584809184074402 -0.2725684344768524 -0.5319955945014954 0.5639436841011047 -0.2725684344768524 -0.5319955945014954 0.5639436841011047 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.5847000479698181 0.5650895833969116 -0.2725684344768524 -0.5847000479698181 0.5650895833969116 -0.2725684344768524 -0.5855176448822022 0.4595295786857605 -0.2725684344768524 -0.5855176448822022 0.4595295786857605 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.3558951914310455 0.4595295786857605 -0.2725684344768524 -0.3558951914310455 0.4595295786857605 -0.2725684344768524 -0.5304210782051086 0.4595295786857605 -0.2725684344768524 -0.5304210782051086 0.4595295786857605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.1097748056054115 0.3181760609149933 -0.273921549320221 -0.1097748056054115 0.3181760609149933 -0.273921549320221</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID1479\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1477\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID1480\">-0.002892945757292406 -0.5261264371370477 -0.8504014363877342 0.008706503524001734 -0.8994941718400871 -0.4368460044708004 0.5344913977113528 -0.4762571258614551 -0.6982106385889222 -0.5344913977113528 0.4762571258614551 0.6982106385889222 -0.008706503524001734 0.8994941718400871 0.4368460044708004 0.002892945757292406 0.5261264371370477 0.8504014363877342 0.02363037582786412 -0.902347833097122 -0.4303603065376295 -0.02363037582786412 0.902347833097122 0.4303603065376295 -0.001023532765410392 -0.8995423755520391 -0.4368323098934793 0.001023532765410392 0.8995423755520391 0.4368323098934793 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 0.9696804631133598 -0.2296304749271341 -0.08360409344642968 -0.9696804631133598 0.2296304749271341 0.08360409344642968 -0.5805296449644594 0.7970800414865904 0.1662790990508843 -0.0005890438034978813 -0.9999601116063219 -0.008912251324439506 0.0005890438034978813 0.9999601116063219 0.008912251324439506 -0.002310012349595028 -0.9999946975497346 -0.002295368240525906 0.002310012349595028 0.9999946975497346 0.002295368240525906 0.001228544436429594 -0.530792278723088 -0.8475010604869587 -0.001228544436429594 0.530792278723088 0.8475010604869587 0.9738575501752567 -0.2231741112042929 -0.04236493898049872 -0.9738575501752567 0.2231741112042929 0.04236493898049872 0.004762179403278648 -0.9999158367782302 -0.01206818161209902 -0.004762179403278648 0.9999158367782302 0.01206818161209902 -0.0001054259024026388 -0.9999945805237475 0.00329056355564671 0.0001054259024026388 0.9999945805237475 -0.00329056355564671 -0.0002528615801463851 -0.8990032443558421 -0.4379418942036619 0.0002528615801463851 0.8990032443558421 0.4379418942036619 0.9735632488975363 -0.2269778489099383 0.02560579036645414 -0.9735632488975363 0.2269778489099383 -0.02560579036645414 0.01015304597198024 -0.7326994030879146 0.6804766714385618 -0.01015304597198024 0.7326994030879146 -0.6804766714385618 -0.006235246769021037 -0.7266493421561909 0.6869802437055265 0.006235246769021037 0.7266493421561909 -0.6869802437055265 -0.004959970467436007 -0.7176069837348265 0.6964306251077467 0.004959970467436007 0.7176069837348265 -0.6964306251077467 0.0009837850219002171 -0.5287955729337499 -0.8487486519651727 -0.0009837850219002171 0.5287955729337499 0.8487486519651727 0.9570454198941 -0.2670495177232334 0.1129097840911679 -0.9570454198941 0.2670495177232334 -0.1129097840911679 0.0324233640709075 -0.720253582420105 0.692952741875902 -0.0324233640709075 0.720253582420105 -0.692952741875902 0.9623630987746608 -0.206648239703785 0.1765043091376513 -0.9623630987746608 0.206648239703785 -0.1765043091376513 -0.001696972163550282 -0.1552309794340162 0.9878767449988041 0.001696972163550282 0.1552309794340162 -0.9878767449988041 -0.003501671595040209 -0.161037683266441 0.9869420463554169 0.003501671595040209 0.161037683266441 -0.9869420463554169 -0.0009664958691925261 -0.1310146610866349 0.9913799596855328 0.0009664958691925261 0.1310146610866349 -0.9913799596855328 0.5189876165657845 -0.1695060220436144 0.8378063990817426 -0.5189876165657845 0.1695060220436144 -0.8378063990817426 0.4533044710605235 -0.06671512823443905 0.8888555271703055 -0.4533044710605235 0.06671512823443905 -0.8888555271703055 2.506645839339887e-005 -0.005818798789160718 0.9999830703328551 -2.506645839339887e-005 0.005818798789160718 -0.9999830703328551 0.0008486584163376593 -0.002669914770303769 0.9999960756593056 -0.0008486584163376593 0.002669914770303769 -0.9999960756593056 0 0 1 -0 -0 -1 0.8647397467261543 -0.493715428752364 0.09203393854364951 -0.8647397467261543 0.493715428752364 -0.09203393854364951 0.0009780771413953171 -0.002169760516917563 0.9999971677481916 -0.0009780771413953171 0.002169760516917563 -0.9999971677481916 0.0008261095942327029 -0.008133842201674421 0.9999665785184907 -0.0008261095942327029 0.008133842201674421 -0.9999665785184907</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID1480\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1478\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1476\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1477\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"42\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1478\" />\r\n\t\t\t\t\t<p>0 1 2 1 6 2 8 1 0 10 2 11 14 6 1 8 16 1 18 8 0 20 10 11 14 22 6 16 14 1 24 16 8 26 8 18 20 11 28 30 22 14 16 32 14 24 34 16 26 24 8 36 26 18 38 20 28 32 30 14 30 40 22 34 32 16 42 38 28 30 32 44 40 30 46 32 34 48 50 38 42 44 32 48 46 30 44 50 40 46 52 38 50 44 48 54 46 44 56 50 46 58 60 38 52 52 50 58 56 44 54 58 46 56 62 52 58 64 56 54 62 58 56 62 56 64</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"42\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1478\" />\r\n\t\t\t\t\t<p>3 4 5 3 7 4 5 4 9 12 3 13 4 7 15 4 17 9 5 9 19 12 13 21 7 23 15 4 15 17 9 17 25 19 9 27 29 12 21 15 23 31 15 33 17 17 35 25 9 25 27 19 27 37 29 21 39 15 31 33 23 41 31 17 33 35 29 39 43 45 33 31 47 31 41 49 35 33 43 39 51 49 33 45 45 31 47 47 41 51 51 39 53 55 49 45 57 45 47 59 47 51 53 39 61 59 51 53 55 45 57 57 47 59 59 53 63 55 57 65 57 59 63 65 57 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1481\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1482\">\r\n\t\t\t\t\t<float_array count=\"3072\" id=\"ID1485\">-0.7704972624778748 0.4213694334030151 -0.2747071981430054 -0.7704972624778748 0.3214001655578613 -0.2747071981430054 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7704972624778748 0.3214001655578613 -0.2747071981430054 -0.7704972624778748 0.4213694334030151 -0.2747071981430054 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7711951732635498 0.8992693424224854 -0.2752210795879364 -0.7711951732635498 0.8992693424224854 -0.2752210795879364 -0.7704972624778748 -0.4633741080760956 -0.2747071981430054 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7704972624778748 -0.4633741080760956 -0.2747071981430054 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.7809916734695435 0.9031000733375549 -0.2496751993894577 -0.7809916734695435 0.9031000733375549 -0.2496751993894577 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8140090107917786 -0.7940167188644409 -0.08648346364498138 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.8140090107917786 -0.7940167188644409 -0.08648346364498138 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8207589983940125 -0.8301818370819092 -0.02805159240961075 -0.8207589983940125 -0.8301818370819092 -0.02805159240961075 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.7726795077323914 0.312279224395752 0.2324964851140976 -0.7726795077323914 0.312279224395752 0.2324964851140976 -0.8207589983940125 -0.8697569370269775 0.02455062046647072 -0.8207589983940125 -0.8697569370269775 0.02455062046647072 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.8194112181663513 -0.9438937306404114 0.07964269816875458 -0.8194112181663513 -0.9438937306404114 0.07964269816875458 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7497841715812683 0.2803181707859039 0.2984566986560822 -0.7497841715812683 0.2803181707859039 0.2984566986560822 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7746564745903015 -0.8304092884063721 0.2270265072584152 -0.7746564745903015 -0.8304092884063721 0.2270265072584152 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.8160943388938904 -1.033355116844177 0.1124019175767899 -0.8160943388938904 -1.033355116844177 0.1124019175767899 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7746564745903015 -1.029682159423828 0.2270265072584152 -0.7746564745903015 -1.029682159423828 0.2270265072584152 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.8116487264633179 -1.128642797470093 0.1301879435777664 -0.8116487264633179 -1.128642797470093 0.1301879435777664 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7481676936149597 -1.030174612998962 0.297200620174408 -0.7481676936149597 -1.030174612998962 0.297200620174408 -0.7481676936149597 -0.8389725685119629 0.2947215437889099 -0.7481676936149597 -0.8389725685119629 0.2947215437889099 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7746564745903015 -1.188867688179016 0.2275206297636032 -0.7746564745903015 -1.188867688179016 0.2275206297636032 -0.7211520075798035 -0.8380235433578491 0.3453765213489533 -0.7211520075798035 -0.8380235433578491 0.3453765213489533 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.8134415149688721 -1.233547210693359 0.1249729543924332 -0.8134415149688721 -1.233547210693359 0.1249729543924332 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.7181724905967712 -1.030174612998962 0.3453765213489533 -0.7181724905967712 -1.030174612998962 0.3453765213489533 -0.7464496493339539 -1.17504346370697 0.2979675829410553 -0.7464496493339539 -1.17504346370697 0.2979675829410553 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.7746564745903015 -1.300840497016907 0.2215401381254196 -0.7746564745903015 -1.300840497016907 0.2215401381254196 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.818085253238678 -1.344445824623108 0.08846646547317505 -0.818085253238678 -1.344445824623108 0.08846646547317505 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7163878679275513 -1.179451704025269 0.3430816829204559 -0.7163878679275513 -1.179451704025269 0.3430816829204559 -0.7474802732467651 -1.294782400131226 0.2903444766998291 -0.7474802732467651 -1.294782400131226 0.2903444766998291 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7786112427711487 -1.4743812084198 0.2122804075479507 -0.7786112427711487 -1.4743812084198 0.2122804075479507 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.8198900818824768 -1.411396861076355 0.03317912295460701 -0.8198900818824768 -1.411396861076355 0.03317912295460701 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.6794602870941162 -1.172713875770569 0.3437448143959045 -0.6794602870941162 -1.172713875770569 0.3437448143959045 -0.7141572833061218 -1.303147315979004 0.3360871374607086 -0.7141572833061218 -1.303147315979004 0.3360871374607086 -0.7498881816864014 -1.477022528648377 0.2740126550197601 -0.7498881816864014 -1.477022528648377 0.2740126550197601 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.7819064259529114 -1.59941303730011 0.1968471556901932 -0.7819064259529114 -1.59941303730011 0.1968471556901932 -0.6524924635887146 -1.173845291137695 0.3425645530223846 -0.6524924635887146 -1.173845291137695 0.3425645530223846 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1598972976207733 0.3079861700534821 0.4518939852714539 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.604820966720581 0.05439910665154457 -0.8011427521705627 -1.604820966720581 0.05439910665154457 -0.6765456199645996 -1.305132031440735 0.3258563876152039 -0.6765456199645996 -1.305132031440735 0.3258563876152039 -0.6524924635887146 -1.303990125656128 0.3261548578739166 -0.6524924635887146 -1.303990125656128 0.3261548578739166 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.71500164270401 -1.478913545608521 0.3202499747276306 -0.71500164270401 -1.478913545608521 0.3202499747276306 -0.7503867149353027 -1.605847239494324 0.2616663873195648 -0.7503867149353027 -1.605847239494324 0.2616663873195648 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3520008623600006 0.4234864413738251 0.4407898485660553 -0.8153771162033081 -1.476347208023071 -0.05023443698883057 -0.8153771162033081 -1.476347208023071 -0.05023443698883057 -0.8011427521705627 -1.597437262535095 -0.02763602323830128 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.597437262535095 -0.02763602323830128 -0.7843642234802246 -1.743004322052002 0.1827057152986527 -0.7843642234802246 -1.743004322052002 0.1827057152986527 -0.6225963234901428 -1.305356502532959 0.3261548578739166 -0.6225963234901428 -1.305356502532959 0.3261548578739166 -0.6213556528091431 -1.173213005065918 0.3425645530223846 -0.6213556528091431 -1.173213005065918 0.3425645530223846 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.5571752190589905 0.2870903313159943 0.4211375415325165 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.597437262535095 -0.09717599302530289 -0.8011427521705627 -1.597437262535095 -0.09717599302530289 -0.8011427521705627 -1.746039509773254 0.05331587418913841 -0.8011427521705627 -1.746039509773254 0.05331587418913841 -0.6745424270629883 -1.473710179328919 0.3142852187156677 -0.6745424270629883 -1.473710179328919 0.3142852187156677 -0.6521297693252564 -1.473981022834778 0.2955112159252167 -0.6521297693252564 -1.473981022834778 0.2955112159252167 -0.6222109794616699 -1.473212003707886 0.2955112159252167 -0.6222109794616699 -1.473212003707886 0.2955112159252167 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.7156392335891724 -1.612327575683594 0.3050930202007294 -0.7156392335891724 -1.612327575683594 0.3050930202007294 -0.7640226483345032 -1.752110004425049 0.2460802644491196 -0.7640226483345032 -1.752110004425049 0.2460802644491196 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5573503971099854 0.4234864413738251 0.4212178885936737 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.731833338737488 -0.09522708505392075 -0.8011427521705627 -1.731833338737488 -0.09522708505392075 -0.8011427521705627 -1.739925384521484 -0.0306595154106617 -0.8011427521705627 -1.739925384521484 -0.0306595154106617 -0.7859653830528259 -1.849237442016602 0.1747838407754898 -0.7859653830528259 -1.849237442016602 0.1747838407754898 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.4741233587265015 -1.305356502532959 0.3261548578739166 -0.4741233587265015 -1.305356502532959 0.3261548578739166 -0.513939380645752 -1.173213005065918 0.3425645530223846 -0.513939380645752 -1.173213005065918 0.3425645530223846 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6549683213233948 0.2769641578197479 0.3925894796848297 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.7960734963417053 -1.730340600013733 -0.1583104282617569 -0.7960734963417053 -1.730340600013733 -0.1583104282617569 -0.8011427521705627 -1.85834276676178 0.05595642700791359 -0.8011427521705627 -1.85834276676178 0.05595642700791359 -0.6725387573242188 -1.600142955780029 0.2973578274250031 -0.6725387573242188 -1.600142955780029 0.2973578274250031 -0.6505559682846069 -1.602483987808228 0.2705280482769013 -0.6505559682846069 -1.602483987808228 0.2705280482769013 -0.6175405383110046 -1.602517247200012 0.2705280482769013 -0.6175405383110046 -1.602517247200012 0.2705280482769013 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.7154456973075867 -1.752095222473145 0.2910460829734802 -0.7154456973075867 -1.752095222473145 0.2910460829734802 -0.7698361277580261 -1.831026315689087 0.2328774482011795 -0.7698361277580261 -1.831026315689087 0.2328774482011795 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 -0.8006090521812439 -1.604159355163574 -0.155659943819046 -0.8006090521812439 -1.604159355163574 -0.155659943819046 -0.8011427521705627 -1.861560702323914 -0.0306595154106617 -0.8011427521705627 -1.861560702323914 -0.0306595154106617 -0.8011427521705627 -1.859525799751282 -0.0991249606013298 -0.8011427521705627 -1.859525799751282 -0.0991249606013298 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2030248194932938 -1.17602002620697 0.3425645530223846 -0.2030248194932938 -1.17602002620697 0.3425645530223846 0.6997751593589783 0.2703775763511658 0.354082316160202 0.6997751593589783 0.2703775763511658 0.354082316160202 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7820540070533752 -1.731492161750794 -0.2158130407333374 -0.7820540070533752 -1.731492161750794 -0.2158130407333374 -0.7960734963417053 -1.858019590377808 -0.1583313196897507 -0.7960734963417053 -1.858019590377808 -0.1583313196897507 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.6705343127250671 -1.744048237800598 0.2750363051891327 -0.6705343127250671 -1.744048237800598 0.2750363051891327 -0.6491485834121704 -1.744982481002808 0.2377863973379135 -0.6491485834121704 -1.744982481002808 0.2377863973379135 -0.6203603148460388 -1.742636442184448 0.2377863973379135 -0.6203603148460388 -1.742636442184448 0.2377863973379135 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7660660147666931 -1.904120802879334 0.2353758960962296 0.6885963678359985 0.4193951189517975 0.3593906462192535 0.6885963678359985 0.4193951189517975 0.3593906462192535 -0.7805264592170715 -1.615131855010986 -0.2230612486600876 -0.7805264592170715 -1.615131855010986 -0.2230612486600876 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7879398465156555 -1.996179938316345 -0.0991249606013298 -0.7879398465156555 -1.996179938316345 -0.0991249606013298 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449317671358585 -1.17882776260376 0.3425645530223846 -0.001449317671358585 -1.17882776260376 0.3425645530223846 0.7468852996826172 0.2803181707859039 0.2984566986560822 0.7468852996826172 0.2803181707859039 0.2984566986560822 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7820540070533752 -1.859680533409119 -0.2195352166891098 -0.7820540070533752 -1.859680533409119 -0.2195352166891098 -0.764397144317627 -1.623394966125488 -0.2698330581188202 -0.764397144317627 -1.623394966125488 -0.2698330581188202 -0.7849075794219971 -1.98232901096344 -0.1583313196897507 -0.7849075794219971 -1.98232901096344 -0.1583313196897507 -0.6673435568809509 -1.82667601108551 0.2628661394119263 -0.6673435568809509 -1.82667601108551 0.2628661394119263 -0.6485981941223145 -1.828809261322022 0.2115316838026047 -0.6485981941223145 -1.828809261322022 0.2115316838026047 -0.6190515756607056 -1.828675627708435 0.2114831358194351 -0.6190515756607056 -1.828675627708435 0.2114831358194351 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 0.7468852996826172 0.4189915955066681 0.2977039515972138 0.7468852996826172 0.4189915955066681 0.2977039515972138 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7655863761901856 -1.73902428150177 -0.2654593288898468 -0.7655863761901856 -1.73902428150177 -0.2654593288898468 -0.7655726671218872 -2.044322729110718 -0.09895889461040497 -0.7655726671218872 -2.044322729110718 -0.09895889461040497 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.6603543758392334 -1.904120802879334 0.2353758960962296 0.2001260668039322 -1.17602002620697 0.3425645530223846 0.2001260668039322 -1.17602002620697 0.3425645530223846 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 0.7697807550430298 0.312279224395752 0.2324964851140976 0.7697807550430298 0.312279224395752 0.2324964851140976 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7572376728057861 -1.859680533409119 -0.2654593288898468 -0.7572376728057861 -1.859680533409119 -0.2654593288898468 -0.7723438739776611 -1.952685952186585 -0.2173483222723007 -0.7723438739776611 -1.952685952186585 -0.2173483222723007 -0.7361075282096863 -1.634256482124329 -0.3076135516166687 -0.7361075282096863 -1.634256482124329 -0.3076135516166687 -0.7605022788047791 -2.023205518722534 -0.1581518948078156 -0.7605022788047791 -2.023205518722534 -0.1581518948078156 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.7695745229721069 0.423301488161087 0.2328356057405472 0.7695745229721069 0.423301488161087 0.2328356057405472 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7277590036392212 -1.743023633956909 -0.3158882260322571 -0.7277590036392212 -1.743023633956909 -0.3158882260322571 -0.7142770290374756 -2.065832376480103 -0.09944543987512589 -0.7142770290374756 -2.065832376480103 -0.09944543987512589 0.5110407471656799 -1.173213005065918 0.3425645530223846 0.5110407471656799 -1.173213005065918 0.3425645530223846 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011 -0.7003812193870544 -1.598517417907715 -0.3394664824008942 -0.7003812193870544 -1.598517417907715 -0.3394664824008942 -0.7305502891540527 -1.908180832862854 -0.2644224464893341 -0.7305502891540527 -1.908180832862854 -0.2644224464893341 -0.7482796907424927 -1.984729170799255 -0.2173768430948257 -0.7482796907424927 -1.984729170799255 -0.2173768430948257 -0.6821182370185852 -1.645132303237915 -0.3384934365749359 -0.6821182370185852 -1.645132303237915 -0.3384934365749359 -0.7097958326339722 -2.044126987457275 -0.1583652049303055 -0.7097958326339722 -2.044126987457275 -0.1583652049303055 -0.4238884449005127 -1.952623009681702 0.1164684295654297 -0.4238884449005127 -1.952623009681702 0.1164684295654297 0.4712246954441071 -1.305356502532959 0.3261548578739166 0.4712246954441071 -1.305356502532959 0.3261548578739166 0.7870740294456482 0.4261996150016785 0.1537329405546188 0.7870740294456482 0.4261996150016785 0.1537329405546188 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6998868584632874 -1.74457848072052 -0.3189045786857605 -0.6998868584632874 -1.74457848072052 -0.3189045786857605 -0.666880190372467 -2.044580698013306 -0.09905537962913513 -0.666880190372467 -2.044580698013306 -0.09905537962913513 -0.3737652599811554 -1.973503470420837 0.07559454441070557 -0.3737652599811554 -1.973503470420837 0.07559454441070557 0.6184563636779785 -1.173213005065918 0.3425645530223846 0.6184563636779785 -1.173213005065918 0.3425645530223846 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.619949996471405 -1.078431725502014 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.7982441186904907 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 -0.425421267747879 -1.598517417907715 -0.3394664824008942 -0.425421267747879 -1.598517417907715 -0.3394664824008942 -0.6535030603408814 -1.644188165664673 -0.3349318206310272 -0.6535030603408814 -1.644188165664673 -0.3349318206310272 -0.6806384921073914 -1.948326945304871 -0.2634786665439606 -0.6806384921073914 -1.948326945304871 -0.2634786665439606 -0.6979761719703674 -2.006107807159424 -0.2173768430948257 -0.6979761719703674 -2.006107807159424 -0.2173768430948257 -0.6668106913566589 -1.748111844062805 -0.3100372552871704 -0.6668106913566589 -1.748111844062805 -0.3100372552871704 -0.6619876027107239 -2.02424168586731 -0.1575844436883926 -0.6619876027107239 -2.02424168586731 -0.1575844436883926 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.6040789484977722 -1.973503470420837 0.07559454441070557 -0.6040789484977722 -1.973503470420837 0.07559454441070557 0.6196975111961365 -1.305356502532959 0.3261548578739166 0.6196975111961365 -1.305356502532959 0.3261548578739166 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.7982441186904907 0.4255830943584442 0.01974329724907875 0.7982441186904907 0.4255830943584442 0.01974329724907875 -0.001449264585971832 -1.553421497344971 -0.3157995939254761 -0.001449264585971832 -1.553421497344971 -0.3157995939254761 -0.6268174052238464 -1.647485733032227 -0.3367124497890472 -0.6268174052238464 -1.647485733032227 -0.3367124497890472 -0.6384567618370056 -1.997578978538513 -0.09881686419248581 -0.6384567618370056 -1.997578978538513 -0.09881686419248581 -0.6342340707778931 -1.982501149177551 -0.1579913049936295 -0.6342340707778931 -1.982501149177551 -0.1579913049936295 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.3774064481258392 -2.007932424545288 -0.03081386722624302 -0.3774064481258392 -2.007932424545288 -0.03081386722624302 0.6495939493179321 -1.173845291137695 0.3425645530223846 0.6495939493179321 -1.173845291137695 0.3425645530223846 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.7982441186904907 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 -0.001449264585971832 -1.33904230594635 -0.2504197061061859 -0.001449264585971832 -1.33904230594635 -0.2504197061061859 -0.001449317671358585 -1.642231822013855 -0.3354183435440064 -0.001449317671358585 -1.642231822013855 -0.3354183435440064 -0.6034112572669983 -1.647485733032227 -0.3367124497890472 -0.6034112572669983 -1.647485733032227 -0.3367124497890472 -0.6429769396781921 -1.748111844062805 -0.3091297447681427 -0.6429769396781921 -1.748111844062805 -0.3091297447681427 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6601085662841797 -1.986837506294251 -0.216516375541687 -0.6601085662841797 -1.986837506294251 -0.216516375541687 -0.6524618268013001 -1.911460518836975 -0.2634730935096741 -0.6524618268013001 -1.911460518836975 -0.2634730935096741 -0.6338272094726563 -1.951573252677918 -0.2168276309967041 -0.6338272094726563 -1.951573252677918 -0.2168276309967041 -0.1949691921472549 -2.007932424545288 -0.03081386722624302 -0.1949691921472549 -2.007932424545288 -0.03081386722624302 -0.6168754100799561 -2.006487607955933 -0.03038886189460754 -0.6168754100799561 -2.006487607955933 -0.03038886189460754 0.6495939493179321 -1.303990125656128 0.3261548578739166 0.6495939493179321 -1.303990125656128 0.3261548578739166 0.6193124651908875 -1.473212003707886 0.2955112159252167 0.6193124651908875 -1.473212003707886 0.2955112159252167 0.7970438599586487 0.4232206344604492 -0.1200132966041565 0.7970438599586487 0.4232206344604492 -0.1200132966041565 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4225226640701294 -1.598517417907715 -0.3394666016101837 0.4225226640701294 -1.598517417907715 -0.3394666016101837 -0.1931811571121216 -1.642231822013855 -0.3354183435440064 -0.1931811571121216 -1.642231822013855 -0.3354183435440064 -0.3914590775966644 -1.642231822013855 -0.3383925259113312 -0.3914590775966644 -1.642231822013855 -0.3383925259113312 -0.6225053668022156 -1.746745824813843 -0.3130424916744232 -0.6225053668022156 -1.746745824813843 -0.3130424916744232 -0.6155943870544434 -1.99778163433075 -0.09729073196649551 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6155943870544434 -1.99778163433075 -0.09729073196649551 -0.613030731678009 -1.981651902198792 -0.1575021743774414 -0.613030731678009 -1.981651902198792 -0.1575021743774414 -0.6093374490737915 -1.951626658439636 -0.2170951366424561 -0.6093374490737915 -1.951626658439636 -0.2170951366424561 -0.001449264585971832 -2.007932424545288 -0.03081386722624302 -0.001449264585971832 -2.007932424545288 -0.03081386722624302 -0.1945523172616959 -1.99778163433075 -0.09787315130233765 -0.1945523172616959 -1.99778163433075 -0.09787315130233765 -0.4005182683467865 -1.99778163433075 -0.09787315130233765 -0.4005182683467865 -1.99778163433075 -0.09787315130233765 0.6765615344047546 -1.172713875770569 0.3437448143959045 0.6765615344047546 -1.172713875770569 0.3437448143959045 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.1902825087308884 -1.642231822013855 -0.3354183435440064 0.1902825087308884 -1.642231822013855 -0.3354183435440064 -0.1965046674013138 -1.744363188743591 -0.3111516833305359 -0.1965046674013138 -1.744363188743591 -0.3111516833305359 -0.6007706522941589 -1.744363188743591 -0.3092606365680695 -0.6007706522941589 -1.744363188743591 -0.3092606365680695 -0.6303516626358032 -1.911460518836975 -0.261831134557724 -0.6303516626358032 -1.911460518836975 -0.261831134557724 -0.6051907539367676 -1.911460518836975 -0.2640201151371002 -0.6051907539367676 -1.911460518836975 -0.2640201151371002 -0.001449317671358585 -1.99778163433075 -0.09787315130233765 -0.001449317671358585 -1.99778163433075 -0.09787315130233765 -0.001449317671358585 -1.975146889686585 0.06838828325271606 -0.001449317671358585 -1.975146889686585 0.06838828325271606 0.6736465096473694 -1.305132031440735 0.3258563876152039 0.6736465096473694 -1.305132031440735 0.3258563876152039 0.6492306590080261 -1.473981022834778 0.2955112159252167 0.6492306590080261 -1.473981022834778 0.2955112159252167 0.614641547203064 -1.602517247200012 0.2705280482769013 0.614641547203064 -1.602517247200012 0.2705280482769013 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.7780932784080505 0.4214316308498383 -0.2512775957584381 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 0.6974818110466003 -1.598517417907715 -0.3394666016101837 0.6974818110466003 -1.598517417907715 -0.3394666016101837 0.1936057955026627 -1.744363188743591 -0.3111516833305359 0.1936057955026627 -1.744363188743591 -0.3111516833305359 0.3885605037212372 -1.642231822013855 -0.3383925259113312 0.3885605037212372 -1.642231822013855 -0.3383925259113312 -0.001449317671358585 -1.744363188743591 -0.3139945566654205 -0.001449317671358585 -1.744363188743591 -0.3139945566654205 -0.3942905366420746 -1.744363188743591 -0.3111516833305359 -0.3942905366420746 -1.744363188743591 -0.3111516833305359 -0.4007205367088318 -1.982554078102112 -0.1579129248857498 -0.4007205367088318 -1.982554078102112 -0.1579129248857498 -0.3937298357486725 -1.951626658439636 -0.2179252803325653 -0.3937298357486725 -1.951626658439636 -0.2179252803325653 -0.3913251757621765 -1.911460518836975 -0.2640201151371002 -0.3913251757621765 -1.911460518836975 -0.2640201151371002 0.192070484161377 -2.007932424545288 -0.03081386722624302 0.192070484161377 -2.007932424545288 -0.03081386722624302 0.1927159428596497 -1.975192189216614 0.06858637928962708 0.1927159428596497 -1.975192189216614 0.06858637928962708 -0.1971269398927689 -1.982554078102112 -0.1579129248857498 -0.1971269398927689 -1.982554078102112 -0.1579129248857498 -0.001449317671358585 -1.982554078102112 -0.1579129248857498 -0.001449317671358585 -1.982554078102112 -0.1579129248857498 0.7112580537796021 -1.303147315979004 0.3360871374607086 0.7112580537796021 -1.303147315979004 0.3360871374607086 0.7134889364242554 -1.179451704025269 0.3430816829204559 0.7134889364242554 -1.179451704025269 0.3430816829204559 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.7675982117652893 0.4213694334030151 -0.2747071981430054 0.7675982117652893 0.4213694334030151 -0.2747071981430054 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.623918354511261 -1.647485733032227 -0.3367124497890472 0.623918354511261 -1.647485733032227 -0.3367124497890472 0.3913919627666473 -1.744363188743591 -0.3111516833305359 0.3913919627666473 -1.744363188743591 -0.3111516833305359 0.600512683391571 -1.647485733032227 -0.3367124497890472 0.600512683391571 -1.647485733032227 -0.3367124497890472 -0.1950719803571701 -1.911460518836975 -0.2640201151371002 -0.1950719803571701 -1.911460518836975 -0.2640201151371002 0.1916532665491104 -1.99778163433075 -0.09787315130233765 0.1916532665491104 -1.99778163433075 -0.09787315130233765 0.6716429591178894 -1.473710179328919 0.3142852187156677 0.6716429591178894 -1.473710179328919 0.3142852187156677 0.7121022939682007 -1.478913545608521 0.3202499747276306 0.7121022939682007 -1.478913545608521 0.3202499747276306 0.7152735590934753 -1.030174612998962 0.3453765213489533 0.7152735590934753 -1.030174612998962 0.3453765213489533 0.6476567387580872 -1.602483987808228 0.2705280482769013 0.6476567387580872 -1.602483987808228 0.2705280482769013 0.6174612641334534 -1.742636442184448 0.2377863973379135 0.6174612641334534 -1.742636442184448 0.2377863973379135 0.7675982117652893 0.3214001655578613 -0.2747071981430054 0.7675982117652893 0.3214001655578613 -0.2747071981430054 0.7682967782020569 0.8992693424224854 -0.2752210795879364 0.7682967782020569 0.8992693424224854 -0.2752210795879364 0.7332086563110352 -1.634256482124329 -0.3076135516166687 0.7332086563110352 -1.634256482124329 -0.3076135516166687 0.6506040692329407 -1.644188165664673 -0.3349318206310272 0.6506040692329407 -1.644188165664673 -0.3349318206310272 0.1921732872724533 -1.911460518836975 -0.264020174741745 0.1921732872724533 -1.911460518836975 -0.264020174741745 0.388426661491394 -1.911460518836975 -0.264020174741745 0.388426661491394 -1.911460518836975 -0.264020174741745 0.5978718400001526 -1.744363188743591 -0.3092606365680695 0.5978718400001526 -1.744363188743591 -0.3092606365680695 -0.001449264585971832 -1.911460518836975 -0.264020174741745 -0.001449264585971832 -1.911460518836975 -0.264020174741745 -0.198796808719635 -1.951626658439636 -0.2179252803325653 -0.198796808719635 -1.951626658439636 -0.2179252803325653 0.3745077848434448 -2.007932424545288 -0.03081386722624302 0.3745077848434448 -2.007932424545288 -0.03081386722624302 0.37086620926857 -1.973503470420837 0.07559454441070557 0.37086620926857 -1.973503470420837 0.07559454441070557 -0.001449264585971832 -1.951626658439636 -0.2179252803325653 -0.001449264585971832 -1.951626658439636 -0.2179252803325653 0.1942282319068909 -1.982554078102112 -0.1579129248857498 0.1942282319068909 -1.982554078102112 -0.1579129248857498 0.7445815801620483 -1.294782400131226 0.2903444766998291 0.7445815801620483 -1.294782400131226 0.2903444766998291 0.746989369392395 -1.477022528648377 0.2740126550197601 0.746989369392395 -1.477022528648377 0.2740126550197601 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.7435510754585266 -1.17504346370697 0.2979675829410553 0.7435510754585266 -1.17504346370697 0.2979675829410553 0.5079431533813477 -1.828675627708435 0.210712805390358 0.5079431533813477 -1.828675627708435 0.210712805390358 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7780932784080505 0.9031000733375549 -0.2496751993894577 0.7780932784080505 0.9031000733375549 -0.2496751993894577 0.7614982724189758 -1.623395562171936 -0.2698330581188202 0.7614982724189758 -1.623395562171936 -0.2698330581188202 0.6792197823524475 -1.645132303237915 -0.3384934961795807 0.6792197823524475 -1.645132303237915 -0.3384934961795807 0.6400778889656067 -1.748111844062805 -0.3091297447681427 0.6400778889656067 -1.748111844062805 -0.3091297447681427 0.6196064352989197 -1.746745824813843 -0.313042551279068 0.6196064352989197 -1.746745824813843 -0.313042551279068 0.6022922396659851 -1.911460518836975 -0.264020174741745 0.6022922396659851 -1.911460518836975 -0.264020174741745 0.3976193964481354 -1.99778163433075 -0.09787315130233765 0.3976193964481354 -1.99778163433075 -0.09787315130233765 0.351957768201828 -1.969097256660461 0.0834038257598877 0.351957768201828 -1.969097256660461 0.0834038257598877 0.7127406597137451 -1.612327575683594 0.3050930202007294 0.7127406597137451 -1.612327575683594 0.3050930202007294 0.6696393489837647 -1.600142955780029 0.2973578274250031 0.6696393489837647 -1.600142955780029 0.2973578274250031 0.7474879622459412 -1.605847239494324 0.2616663873195648 0.7474879622459412 -1.605847239494324 0.2616663873195648 0.7182532548904419 -0.8380235433578491 0.3453765213489533 0.7182532548904419 -0.8380235433578491 0.3453765213489533 0.7452688217163086 -1.030174612998962 0.297200620174408 0.7452688217163086 -1.030174612998962 0.297200620174408 0.6462497711181641 -1.744982481002808 0.2377863973379135 0.6462497711181641 -1.744982481002808 0.2377863973379135 0.6161529421806335 -1.828675627708435 0.2114831358194351 0.6161529421806335 -1.828675627708435 0.2114831358194351 0.7675982117652893 -0.4633741080760956 -0.2747071981430054 0.7675982117652893 -0.4633741080760956 -0.2747071981430054 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.7626872658729553 -1.73902428150177 -0.2654593288898468 0.7626872658729553 -1.73902428150177 -0.2654593288898468 0.7248597741127014 -1.743023633956909 -0.3158882260322571 0.7248597741127014 -1.743023633956909 -0.3158882260322571 0.6639117002487183 -1.748111844062805 -0.3100373148918152 0.6639117002487183 -1.748111844062805 -0.3100373148918152 0.3908311724662781 -1.951626658439636 -0.2179252803325653 0.3908311724662781 -1.951626658439636 -0.2179252803325653 0.1958980262279511 -1.951626658439636 -0.2179252803325653 0.1958980262279511 -1.951626658439636 -0.2179252803325653 0.6064390540122986 -1.951626658439636 -0.2170951366424561 0.6064390540122986 -1.951626658439636 -0.2170951366424561 0.6274524927139282 -1.911460518836975 -0.2618311941623688 0.6274524927139282 -1.911460518836975 -0.2618311941623688 0.613976776599884 -2.00648832321167 -0.03038886189460754 0.613976776599884 -2.00648832321167 -0.03038886189460754 0.6011803150177002 -1.973503470420837 0.07559454441070557 0.6011803150177002 -1.973503470420837 0.07559454441070557 0.4209894239902496 -1.952623009681702 0.1164684295654297 0.4209894239902496 -1.952623009681702 0.1164684295654297 0.3978218138217926 -1.982554078102112 -0.1579129248857498 0.3978218138217926 -1.982554078102112 -0.1579129248857498 0.7757121920585632 -1.4743812084198 0.2122804075479507 0.7757121920585632 -1.4743812084198 0.2122804075479507 0.7717577815055847 -1.300840497016907 0.2215401381254196 0.7717577815055847 -1.300840497016907 0.2215401381254196 0.7790074944496155 -1.59941303730011 0.1968471556901932 0.7790074944496155 -1.59941303730011 0.1968471556901932 0.7452688217163086 -0.8389725685119629 0.2947215437889099 0.7452688217163086 -0.8389725685119629 0.2947215437889099 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7717577815055847 -1.188867688179016 0.2275206297636032 0.7717577815055847 -1.188867688179016 0.2275206297636032 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7776272892951965 -1.615131855010986 -0.2230612486600876 0.7776272892951965 -1.615131855010986 -0.2230612486600876 0.7791553735733032 -1.731492877006531 -0.2158130407333374 0.7791553735733032 -1.731492877006531 -0.2158130407333374 0.6969878077507019 -1.74457848072052 -0.3189046382904053 0.6969878077507019 -1.74457848072052 -0.3189046382904053 0.6495630145072937 -1.911460518836975 -0.2634732127189636 0.6495630145072937 -1.911460518836975 -0.2634732127189636 0.6309284567832947 -1.951574444770813 -0.2168276309967041 0.6309284567832947 -1.951574444770813 -0.2168276309967041 0.6126948595046997 -1.99778163433075 -0.09729073196649551 0.6126948595046997 -1.99778163433075 -0.09729073196649551 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7125467658042908 -1.752095222473145 0.2910460829734802 0.7125467658042908 -1.752095222473145 0.2910460829734802 0.7611239552497864 -1.752110004425049 0.2460802644491196 0.7611239552497864 -1.752110004425049 0.2460802644491196 0.6676357984542847 -1.744048237800598 0.2750363051891327 0.6676357984542847 -1.744048237800598 0.2750363051891327 0.7814652919769287 -1.743004322052002 0.1827057152986527 0.7814652919769287 -1.743004322052002 0.1827057152986527 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.7717577815055847 -1.029682159423828 0.2270265072584152 0.7717577815055847 -1.029682159423828 0.2270265072584152 0.7717577815055847 -0.8304092884063721 0.2270265072584152 0.7717577815055847 -0.8304092884063721 0.2270265072584152 0.6456993222236633 -1.828809261322022 0.2115316838026047 0.6456993222236633 -1.828809261322022 0.2115316838026047 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7791553735733032 -1.859680533409119 -0.2195352166891098 0.7791553735733032 -1.859680533409119 -0.2195352166891098 0.7543383836746216 -1.859680533409119 -0.2654593288898468 0.7543383836746216 -1.859680533409119 -0.2654593288898468 0.7276512980461121 -1.908180832862854 -0.2644224464893341 0.7276512980461121 -1.908180832862854 -0.2644224464893341 0.6777392029762268 -1.948328375816345 -0.2634787857532501 0.6777392029762268 -1.948328375816345 -0.2634787857532501 0.6101319193840027 -1.981651902198792 -0.1575021743774414 0.6101319193840027 -1.981651902198792 -0.1575021743774414 0.6313349008560181 -1.982501864433289 -0.1579913049936295 0.6313349008560181 -1.982501864433289 -0.1579913049936295 0.6572094559669495 -1.986838221549988 -0.216516375541687 0.6572094559669495 -1.986838221549988 -0.216516375541687 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.604820966720581 0.05439910665154457 0.7982441186904907 -1.604820966720581 0.05439910665154457 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.7977098822593689 -1.604159355163574 -0.155659943819046 0.7977098822593689 -1.604159355163574 -0.155659943819046 0.7931743264198303 -1.858019590377808 -0.1583313196897507 0.7931743264198303 -1.858019590377808 -0.1583313196897507 0.6590888500213623 -2.02424168586731 -0.1575844436883926 0.6590888500213623 -2.02424168586731 -0.1575844436883926 0.6355575323104858 -1.997578978538513 -0.09881686419248581 0.6355575323104858 -1.997578978538513 -0.09881686419248581 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7669368982315064 -1.831026315689087 0.2328774482011795 0.7669368982315064 -1.831026315689087 0.2328774482011795 0.7830662131309509 -1.849237442016602 0.1747838407754898 0.7830662131309509 -1.849237442016602 0.1747838407754898 0.6644447445869446 -1.82667601108551 0.2628661394119263 0.6644447445869446 -1.82667601108551 0.2628661394119263 0.7982441186904907 -1.746039509773254 0.05331587418913841 0.7982441186904907 -1.746039509773254 0.05331587418913841 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7931743264198303 -1.730340600013733 -0.1583104282617569 0.7931743264198303 -1.730340600013733 -0.1583104282617569 0.7820088863372803 -1.98232901096344 -0.1583313196897507 0.7820088863372803 -1.98232901096344 -0.1583313196897507 0.7694445252418518 -1.952685952186585 -0.2173483222723007 0.7694445252418518 -1.952685952186585 -0.2173483222723007 0.7453804016113281 -1.984729170799255 -0.2173768430948257 0.7453804016113281 -1.984729170799255 -0.2173768430948257 0.6950770616531372 -2.006107807159424 -0.2173768430948257 0.6950770616531372 -2.006107807159424 -0.2173768430948257 0.6639816164970398 -2.044581174850464 -0.09905537962913513 0.6639816164970398 -2.044581174850464 -0.09905537962913513 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7117041945457459 -1.817547917366028 0.285483330488205 0.8151856660842896 -1.344445824623108 0.08846646547317505 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.8151856660842896 -1.344445824623108 0.08846646547317505 0.8169910311698914 -1.411396861076355 0.03317912295460701 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.8169910311698914 -1.411396861076355 0.03317912295460701 0.7982441186904907 -1.597437262535095 -0.02763602323830128 0.7982441186904907 -1.597437262535095 -0.02763602323830128 0.8105422854423523 -1.233547210693359 0.1249729543924332 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.8105422854423523 -1.233547210693359 0.1249729543924332 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.8087496757507324 -1.128642797470093 0.1301879435777664 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.8087496757507324 -1.128642797470093 0.1301879435777664 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.8111097812652588 -0.7940167188644409 -0.08648346364498138 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.8111097812652588 -0.7940167188644409 -0.08648346364498138 0.7982441186904907 -1.597437262535095 -0.09717599302530289 0.7982441186904907 -1.597437262535095 -0.09717599302530289 0.7982441186904907 -1.859525799751282 -0.0991249606013298 0.7982441186904907 -1.859525799751282 -0.0991249606013298 0.7850413918495178 -1.996179938316345 -0.0991249606013298 0.7850413918495178 -1.996179938316345 -0.0991249606013298 0.7068971991539002 -2.044126987457275 -0.1583652049303055 0.7068971991539002 -2.044126987457275 -0.1583652049303055 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7982441186904907 -1.85834276676178 0.05595642700791359 0.7982441186904907 -1.85834276676178 0.05595642700791359 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.739925384521484 -0.0306595154106617 0.7982441186904907 -1.739925384521484 -0.0306595154106617 0.8131956458091736 -1.033355116844177 0.1124019175767899 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.8131956458091736 -1.033355116844177 0.1124019175767899 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.8178597688674927 -0.8301818370819092 -0.02805159240961075 0.8178597688674927 -0.8301818370819092 -0.02805159240961075 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.731833338737488 -0.09522708505392075 0.7982441186904907 -1.731833338737488 -0.09522708505392075 0.7626733183860779 -2.044323444366455 -0.09895889461040497 0.7626733183860779 -2.044323444366455 -0.09895889461040497 0.7576038241386414 -2.023205518722534 -0.1581518948078156 0.7576038241386414 -2.023205518722534 -0.1581518948078156 0.7113782167434692 -2.065833806991577 -0.09944543987512589 0.7113782167434692 -2.065833806991577 -0.09944543987512589 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.8124783635139465 -1.476347923278809 -0.05023443698883057 0.8124783635139465 -1.476347923278809 -0.05023443698883057 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.8165122270584106 -0.9438937306404114 0.07964269816875458 0.8165122270584106 -0.9438937306404114 0.07964269816875458 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -1.861560702323914 -0.0306595154106617 0.7982441186904907 -1.861560702323914 -0.0306595154106617 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.8178598284721375 -0.8697569370269775 0.02455062046647072 0.8178598284721375 -0.8697569370269775 0.02455062046647072 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1024\" source=\"#ID1485\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1483\">\r\n\t\t\t\t\t<float_array count=\"3072\" id=\"ID1486\">-0.9771900185215559 -0.001586737603416483 -0.2123608955660601 -0.9790417160505522 3.292227695633877e-018 -0.2036598100578263 -0.9999689324618893 1.894445986804272e-005 -0.007882496567513529 0.9999689324618893 -1.894445986804272e-005 0.007882496567513529 0.9790417160505522 -3.292227695633877e-018 0.2036598100578263 0.9771900185215559 0.001586737603416483 0.2123608955660601 -0.9502911551307772 0.0007757361223652627 -0.3113617168402076 0.9502911551307772 -0.0007757361223652627 0.3113617168402076 -0.9999188006678761 -0.0001738576127736409 -0.01274212872509091 0.9999188006678761 0.0001738576127736409 0.01274212872509091 -0.9999689326413301 -8.358683530417662e-019 -0.007882496568928017 0.9999689326413301 8.358683530417662e-019 0.007882496568928017 -0.9432849430408019 0.01059441770911542 -0.3318151210326555 0.9432849430408019 -0.01059441770911542 0.3318151210326555 -0.9472204709051849 -0.002797125391854481 -0.3205706717522704 0.9472204709051849 0.002797125391854481 0.3205706717522704 -0.9822519876469651 -0.005061664463367821 -0.1874977661638847 0.9822519876469651 0.005061664463367821 0.1874977661638847 -0.9790417160505522 -1.045811182739211e-019 -0.2036598100578265 -0.9999689326413301 2.170208064185533e-019 -0.007882496568928015 0.9999689326413301 -2.170208064185533e-019 0.007882496568928015 0.9790417160505522 1.045811182739211e-019 0.2036598100578265 -0.9968881233310588 0.008087498311279936 -0.07841340403620074 0.9968881233310588 -0.008087498311279936 0.07841340403620074 -0.9989409175778646 -0.0347494603399221 -0.0301582193568878 0.9989409175778646 0.0347494603399221 0.0301582193568878 -0.9999689326413301 0 -0.007882496568928017 -0.9999689326413301 0 -0.007882496568928017 0.9999689326413301 -0 0.007882496568928017 0.9999689326413301 -0 0.007882496568928017 -0.8994369480327905 7.741777964543919e-018 -0.4370505422871128 0.8994369480327905 -7.741777964543919e-018 0.4370505422871128 -0.9970361569647415 0.007947672178051453 -0.07652278230651169 0.9970361569647415 -0.007947672178051453 0.07652278230651169 -0.9639392879483925 -0.000743497724044367 -0.266121206146148 0.9639392879483925 0.000743497724044367 0.266121206146148 -0.9974070143424252 -0.06128363998301194 -0.03773013664117783 0.9974070143424252 0.06128363998301194 0.03773013664117783 -0.9781157939340335 1.481576469783222e-018 -0.2080612738036459 -0.9999689326413301 3.8116225473858e-019 -0.007882496568928013 0.9999689326413301 -3.8116225473858e-019 0.007882496568928013 0.9781157939340335 -1.481576469783222e-018 0.2080612738036459 -0.9663092415749675 0.004883560455926994 -0.2573375224954274 0.9663092415749675 -0.004883560455926994 0.2573375224954274 -0.9991782421800318 0.001610189992179519 0.04049997089148081 0.9991782421800318 -0.001610189992179519 -0.04049997089148081 -0.9790874310059494 0.0008247154921036521 -0.2034382517879249 0.9790874310059494 -0.0008247154921036521 0.2034382517879249 -0.9852274316154588 -0.004011911017639334 -0.1712040086049179 0.9852274316154588 0.004011911017639334 0.1712040086049179 -0.9999689326413301 0 -0.007882496568928019 -0.9999689326413301 0 -0.007882496568928019 0.9999689326413301 -0 0.007882496568928019 0.9999689326413301 -0 0.007882496568928019 -0.9971892225895257 0.02017482648119507 -0.07215698668702252 0.9971892225895257 -0.02017482648119507 0.07215698668702252 -0.9992120642586049 0.001957573758255666 0.03964112189430344 0.9992120642586049 -0.001957573758255666 -0.03964112189430344 -0.9856172416564362 0.002474734662910435 -0.1689749349397905 0.9856172416564362 -0.002474734662910435 0.1689749349397905 -0.9663855598534248 -0.001290974715952425 -0.2570939188138557 0.9663855598534248 0.001290974715952425 0.2570939188138557 -0.9999575158879286 -0.001434488811743013 -0.009105419325431454 0.9999575158879286 0.001434488811743013 0.009105419325431454 -0.9890265936715046 0.006176024749959835 0.1476084473491557 0.9890265936715046 -0.006176024749959835 -0.1476084473491557 -0.984522798150021 -0.0004074915144433557 -0.1752560808460546 0.984522798150021 0.0004074915144433557 0.1752560808460546 -0.9996823142354346 0.002893836478710463 0.02503789758186764 0.9996823142354346 -0.002893836478710463 -0.02503789758186764 -0.8613334865459467 0.4933852669413169 0.1211429045377775 -0.8645448626999024 0.4903430408955166 0.1101175854463976 -0.8544213626011464 0.5186865821214917 0.03046907707701686 0.8544213626011464 -0.5186865821214917 -0.03046907707701686 0.8645448626999024 -0.4903430408955166 -0.1101175854463976 0.8613334865459467 -0.4933852669413169 -0.1211429045377775 -0.9891518293142284 0.006988410326678562 0.1467304354434402 0.9891518293142284 -0.006988410326678562 -0.1467304354434402 -0.9837721987850511 -0.003801302179372787 -0.1793817465612573 0.9837721987850511 0.003801302179372787 0.1793817465612573 -1 0 0 1 -0 -0 -0.850767997898328 0.4522143794921146 0.2677610291521756 0.850767997898328 -0.4522143794921146 -0.2677610291521756 -0.9618276394508243 0.002839871854348845 0.2736412379673534 0.9618276394508243 -0.002839871854348845 -0.2736412379673534 -0.8572897278184025 0.4462273448013313 0.2567790476822494 0.8572897278184025 -0.4462273448013313 -0.2567790476822494 -0.9982061105512535 0.003222709143129392 0.05978440435361971 0.9982061105512535 -0.003222709143129392 -0.05978440435361971 -0.9591399644253476 0.0013276724258438 0.2829289061373419 0.9591399644253476 -0.0013276724258438 -0.2829289061373419 -0.8876118350170518 0.3295661439206302 0.3217629362107274 0.8876118350170518 -0.3295661439206302 -0.3217629362107274 -0.8977361771613399 0.3250774706096561 0.2973119478221008 0.8977361771613399 -0.3250774706096561 -0.2973119478221008 -0.9902348384620743 0.004109082403179794 0.1393487715690145 0.9902348384620743 -0.004109082403179794 -0.1393487715690145 -0.8566503694453361 0.002446876006654095 0.5158916139335636 0.8566503694453361 -0.002446876006654095 -0.5158916139335636 -0.9020856819345563 0.1863441929453943 0.3892521858695155 0.9020856819345563 -0.1863441929453943 -0.3892521858695155 -0.9867764024740569 0.004515207692181317 0.1620245179590255 0.9867764024740569 -0.004515207692181317 -0.1620245179590255 -0.8425063325319582 0.01555040831455135 0.5384619433579316 0.8425063325319582 -0.01555040831455135 -0.5384619433579316 -0.906121976113601 0.1894976602978684 0.3781978333433655 0.906121976113601 -0.1894976602978684 -0.3781978333433655 -0.9598789165785798 -0.003077378431222278 0.280397923048518 0.9598789165785798 0.003077378431222278 -0.280397923048518 -0.6347609883576616 0.01155324137621323 0.7726221652741446 0.6347609883576616 -0.01155324137621323 -0.7726221652741446 -0.8966819075516134 0.07771590752586575 0.435800177130564 0.8966819075516134 -0.07771590752586575 -0.435800177130564 -0.9785891255823827 0.003221788367465404 0.2057983075042719 0.9785891255823827 -0.003221788367465404 -0.2057983075042719 -0.9607776263730951 0.00201443888784302 0.277312629890614 0.9607776263730951 -0.00201443888784302 -0.277312629890614 -0.6983489367023467 0.04961210116549678 0.7140359949082725 0.6983489367023467 -0.04961210116549678 -0.7140359949082725 -0.900604689928327 0.09010029011729324 0.425197754227232 0.900604689928327 -0.09010029011729324 -0.425197754227232 -0.9588346583016721 0.0008326970514992843 0.2839637382750413 0.9588346583016721 -0.0008326970514992843 -0.2839637382750413 -0.9164147169425765 -0.00910325530792762 0.4001264766468924 0.9164147169425765 0.00910325530792762 -0.4001264766468924 -0.4464505246919321 0.03803327876922855 0.8939996637070737 0.4464505246919321 -0.03803327876922855 -0.8939996637070737 -0.8969034603948126 0.0200156497148593 0.4417731957671298 0.8969034603948126 -0.0200156497148593 -0.4417731957671298 -0.9765428707314156 0.0004992186759849619 0.2153224846697605 0.9765428707314156 -0.0004992186759849619 -0.2153224846697605 -0.895520692734899 -0.0002651310475007681 0.445019795727262 0.895520692734899 0.0002651310475007681 -0.445019795727262 -0.9072315228553386 -0.007386263429703882 0.4205667688371613 0.9072315228553386 0.007386263429703882 -0.4205667688371613 -0.5151201333405083 0.05762348945996668 0.8551788010057979 0.5151201333405083 -0.05762348945996668 -0.8551788010057979 -0.8963849877349819 0.01799898941747728 0.4429108151121465 0.8963849877349819 -0.01799898941747728 -0.4429108151121465 -0.9550607048378887 -0.008595199200161906 0.296285626761179 0.9550607048378887 0.008595199200161906 -0.296285626761179 -0.6083268790154661 -0.01773804223761951 0.7934883553807698 0.6083268790154661 0.01773804223761951 -0.7934883553807698 -0.206533912779653 0.01312869502328621 0.9783513582751915 0.206533912779653 -0.01312869502328621 -0.9783513582751915 -0.8950561340727541 -0.05500856952533083 0.4425478213001536 0.8950561340727541 0.05500856952533083 -0.4425478213001536 -0.974817159690307 -0.01264423724930605 0.2226468693642596 0.974817159690307 0.01264423724930605 -0.2226468693642596 -0.4492757287568513 -0.01816108521842438 0.8932085392189718 0.4492757287568513 0.01816108521842438 -0.8932085392189718 -0.8847410800965309 -0.01757427319378755 0.4657513994732964 0.8847410800965309 0.01757427319378755 -0.4657513994732964 -0.5575023998409231 0.02727996565469962 0.8297269898258644 0.5575023998409231 -0.02727996565469962 -0.8297269898258644 -0.1934309920620744 0.00141326582144325 0.9811128650617114 0.1934309920620744 -0.00141326582144325 -0.9811128650617114 -0.8919664970414266 -0.06944743650307948 0.4467357403642531 0.8919664970414266 0.06944743650307948 -0.4467357403642531 -0.9558315403963276 -0.00754370464283368 0.2938182412714452 0.9558315403963276 0.00754370464283368 -0.2938182412714452 -0.2476666920797232 -0.02438408932794591 0.9685383966688849 0.2476666920797232 0.02438408932794591 -0.9685383966688849 -0.07432341848991311 0.01114049535973943 0.9971719605098774 0.07432341848991311 -0.01114049535973943 -0.9971719605098774 -0.8879690242672579 -0.2040393937551356 0.4121637268585031 0.8879690242672579 0.2040393937551356 -0.4121637268585031 -0.984245975666149 -0.01640619454133032 0.1760417455198129 0.984245975666149 0.01640619454133032 -0.1760417455198129 -0.470586420836446 -0.03092208977332432 0.8818119101534031 0.470586420836446 0.03092208977332432 -0.8818119101534031 -0.8765304281839281 -0.02677057613336905 0.4806014406149725 0.8765304281839281 0.02677057613336905 -0.4806014406149725 -0.1228183054958481 -0.111129705670554 0.9861875340688021 0.1228183054958481 0.111129705670554 -0.9861875340688021 -0.1422524387013631 0.08650520172209436 0.9860431500489898 0.1422524387013631 -0.08650520172209436 -0.9860431500489898 -0.07722944505424488 0.01429695874918533 0.9969108334184845 0.07722944505424488 -0.01429695874918533 -0.9969108334184845 -0.8856001506157596 -0.207145051657605 0.4156961640466651 0.8856001506157596 0.207145051657605 -0.4156961640466651 -0.9565582953355224 -0.01332882085912952 0.2912362789202348 0.9565582953355224 0.01332882085912952 -0.2912362789202348 -0.3283505887844118 0.3306960167614941 0.8847745675272385 0.3283505887844118 -0.3306960167614941 -0.8847745675272385 9.355723527338429e-009 0.0186001828842623 0.9998270016341188 -9.355723527338429e-009 -0.0186001828842623 -0.9998270016341188 -0.8949706469360677 -0.3243746580670968 0.3062819327461068 0.8949706469360677 0.3243746580670968 -0.3062819327461068 -0.9951376548752913 -0.01258038220657256 0.09768716309138305 0.9951376548752913 0.01258038220657256 -0.09768716309138305 0.02441341528062479 -0.04018947456705912 0.9988937837870248 -0.02441341528062479 0.04018947456705912 -0.9988937837870248 -0.3415286992173654 -0.08847586848124532 0.9356976906604951 0.3415286992173654 0.08847586848124532 -0.9356976906604951 -0.8571769674024923 -0.04022818316830723 0.5134484782659736 0.8571769674024923 0.04022818316830723 -0.5134484782659736 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 7.367702913516951e-009 -0.02830913765764351 0.9995992160486525 -0.1992518788334495 -0.01139878853772022 0.9798820114693465 -0.05013526873064869 0.01986799350556079 0.9985448000282053 0.05013526873064869 -0.01986799350556079 -0.9985448000282053 0.1992518788334495 0.01139878853772022 -0.9798820114693465 -7.367702913516951e-009 0.02830913765764351 -0.9995992160486525 -0.8971048502216629 -0.321983413427523 0.3025385416543298 0.8971048502216629 0.321983413427523 -0.3025385416543298 -0.9578180503286586 -0.01408032653443589 0.2870301845961338 0.9578180503286586 0.01408032653443589 -0.2870301845961338 0.02350686145086761 -0.05281539590359781 0.9983275822195219 -0.02350686145086761 0.05281539590359781 -0.9983275822195219 0.05013529181632081 0.01986798553163498 0.9985447990277688 0.1992520465395727 -0.01139743910568457 0.9798819930642794 0.07722949104593611 0.01429697516615458 0.996910829620124 -0.1992520465395727 0.01139743910568457 -0.9798819930642794 -0.07722949104593611 -0.01429697516615458 -0.996910829620124 -0.05013529181632081 -0.01986798553163498 -0.9985447990277688 -0.873379065742168 -0.435637042386647 0.2177828616396445 0.873379065742168 0.435637042386647 -0.2177828616396445 -0.9978102123183206 -0.0002979809767365266 0.06614144994332498 0.9978102123183206 0.0002979809767365266 -0.06614144994332498 0.1392324360751088 -0.1282270959827192 0.9819226754691173 -0.1392324360751088 0.1282270959827192 -0.9819226754691173 -0.004151361905557766 -0.1530036777795603 0.988216899663357 0.004151361905557766 0.1530036777795603 -0.988216899663357 -0.1091464427993047 -0.1854747968576843 0.9765685607036809 0.1091464427993047 0.1854747968576843 -0.9765685607036809 -0.3680833179199177 -0.08538772445546562 0.9258637089665964 0.3680833179199177 0.08538772445546562 -0.9258637089665964 -0.8512027761381504 -0.02536012167907416 0.5242239007553247 0.8512027761381504 0.02536012167907416 -0.5242239007553247 0.07432345455429569 0.01114044357539076 0.997171958400385 -0.07432345455429569 -0.01114044357539076 -0.997171958400385 -0.8574598469235982 -0.4841012329394283 0.1743806387770306 0.8574598469235982 0.4841012329394283 -0.1743806387770306 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 -0.9733832727178078 0.007736198347291853 0.229052735474391 0.9733832727178078 -0.007736198347291853 -0.229052735474391 -0.003101175158944016 -0.1523881894354768 0.9883158515541531 0.003101175158944016 0.1523881894354768 -0.9883158515541531 0.001450612072996214 -0.04482941980428752 0.9989936030048563 -0.001450612072996214 0.04482941980428752 -0.9989936030048563 0.1934307639629917 0.001412657525049151 0.9811129109085307 -0.1934307639629917 -0.001412657525049151 -0.9811129109085307 -0.8682198219329231 -0.4898573784628851 0.07895625097630328 0.8682198219329231 0.4898573784628851 -0.07895625097630328 -0.9999426757569431 -0.005924605813726535 -0.008918758097251045 0.9999426757569431 0.005924605813726535 0.008918758097251045 -0.9979816137896427 0.0007788093903403534 0.06349875584414082 0.9979816137896427 -0.0007788093903403534 -0.06349875584414082 0.4190664890064954 -0.09024923546223157 0.9034591043817376 -0.4190664890064954 0.09024923546223157 -0.9034591043817376 0.3293576436016264 -0.1512844787638046 0.932006732318146 -0.3293576436016264 0.1512844787638046 -0.932006732318146 0.003468750218861239 -0.1849306565179608 0.9827454502829077 -0.003468750218861239 0.1849306565179608 -0.9827454502829077 -0.0771747638042234 -0.2197377985821765 0.9725015967627102 0.0771747638042234 0.2197377985821765 -0.9725015967627102 -0.3332161310673002 -0.08667606909295655 0.9388579599934874 0.3332161310673002 0.08667606909295655 -0.9388579599934874 -0.8471829494023482 -0.01871022510968509 0.5309717296789758 0.8471829494023482 0.01871022510968509 -0.5309717296789758 0.206534672424648 0.01312835379791649 0.9783512024896787 -0.206534672424648 -0.01312835379791649 -0.9783512024896787 -0.8751933954880818 -0.4789510829348484 0.06813501779245279 0.8751933954880818 0.4789510829348484 -0.06813501779245279 -0.9999943641874873 0.0002114853066728545 -0.003350651761670484 0.9999943641874873 -0.0002114853066728545 0.003350651761670484 -0.9992194764740899 0.0003249760845030904 -0.03950104081401198 0.9992194764740899 -0.0003249760845030904 0.03950104081401198 -1 0 0 1 -0 -0 -0.9765685441597449 -0.04566527106811754 0.2103058762279164 0.9765685441597449 0.04566527106811754 -0.2103058762279164 0.003607103899563249 -0.1873518661177469 0.9822862449732541 -0.003607103899563249 0.1873518661177469 -0.9822862449732541 0.00602688632923911 -0.1563124366892208 0.9876892723814776 -0.00602688632923911 0.1563124366892208 -0.9876892723814776 0.001251671320043853 -0.04183185705672599 0.9991238807345625 -0.001251671320043853 0.04183185705672599 -0.9991238807345625 0.5151195527131143 0.05762274208745132 0.8551792011075597 -0.5151195527131143 -0.05762274208745132 -0.8551792011075597 -0.9903947707187708 -0.004947155871302164 -0.1381800411843137 0.9903947707187708 0.004947155871302164 0.1381800411843137 -0.9878663656498398 -0.009852017467930564 -0.1549934881522087 0.9878663656498398 0.009852017467930564 0.1549934881522087 -0.996482872850571 -0.05726756133441097 0.06117442712671616 0.996482872850571 0.05726756133441097 -0.06117442712671616 0.526348044934525 -0.1131629593586895 0.8427050968297194 -0.526348044934525 0.1131629593586895 -0.8427050968297194 0.4173686971612756 -0.1778874320780186 0.8911562332939087 -0.4173686971612756 0.1778874320780186 -0.8911562332939087 0.005222164543497156 -0.2092035110452315 0.9778581798828645 -0.005222164543497156 0.2092035110452315 -0.9778581798828645 0.007545316719704674 -0.2110414645011939 0.9774479875966754 -0.007545316719704674 0.2110414645011939 -0.9774479875966754 -0.01969785890737417 -0.2616664220722393 0.9649573451269117 0.01969785890737417 0.2616664220722393 -0.9649573451269117 -0.2014758556225803 -0.1015170915729863 0.9742185379675912 0.2014758556225803 0.1015170915729863 -0.9742185379675912 -0.868201468219757 -0.02383906889302845 0.4956388900957751 0.868201468219757 0.02383906889302845 -0.4956388900957751 0.4464522679055878 0.03803370703448546 0.8939987749494807 -0.4464522679055878 -0.03803370703448546 -0.8939987749494807 -0.9898172877087869 -0.01510264998941633 -0.1415402660592297 0.9898172877087869 0.01510264998941633 0.1415402660592297 -0.9981408894568261 -0.06091817756761343 0.001934020728103332 0.9981408894568261 0.06091817756761343 -0.001934020728103332 -0.9978372472000537 -0.05127472324472305 -0.04113065591983561 0.9978372472000537 0.05127472324472305 0.04113065591983561 -0.986834032541885 -0.03790333343156378 0.1572320881114841 0.986834032541885 0.03790333343156378 -0.1572320881114841 0.02477291592964374 -0.1906352083191541 0.9813483173600776 -0.02477291592964374 0.1906352083191541 -0.9813483173600776 -0.002328718950658374 -0.1360208146346536 0.990703242678742 0.002328718950658374 0.1360208146346536 -0.990703242678742 -0.001031618229602105 -0.04511816296389461 0.9989811245136676 0.001031618229602105 0.04511816296389461 -0.9989811245136676 0.6983491129304112 0.04961305488200415 0.7140357562857639 -0.6983491129304112 -0.04961305488200415 -0.7140357562857639 -0.9509233179690119 -0.008522740260876977 -0.3093092404718151 0.9509233179690119 0.008522740260876977 0.3093092404718151 -0.9603612407120864 -0.004049774339899059 -0.2787290560127123 0.9603612407120864 0.004049774339899059 0.2787290560127123 -0.9870724976498742 -0.04346784834016133 -0.1542673994851666 0.9870724976498742 0.04346784834016133 0.1542673994851666 -0.9981388138662855 -0.05180664955192778 0.03217109441421623 0.9981388138662855 0.05180664955192778 -0.03217109441421623 0.6592718697604481 -0.1055100362959731 0.7444650656568009 -0.6592718697604481 0.1055100362959731 -0.7444650656568009 0.5028544664240005 -0.2156034093731595 0.8370499121701784 -0.5028544664240005 0.2156034093731595 -0.8370499121701784 0.01543515840224038 -0.257605509409122 0.9661268847346939 -0.01543515840224038 0.257605509409122 -0.9661268847346939 0.01238193944210214 -0.2569872685258789 0.9663354652455121 -0.01238193944210214 0.2569872685258789 -0.9663354652455121 0.005615760653294178 -0.2129790952388896 0.9770406174891138 -0.005615760653294178 0.2129790952388896 -0.9770406174891138 -0.005662748884652038 -0.3003436078411413 0.9538142641542096 0.005662748884652038 0.3003436078411413 -0.9538142641542096 -0.6724794224102589 -0.05649842023248849 0.737956201238256 0.6724794224102589 0.05649842023248849 -0.737956201238256 -0.8365327615396679 -0.08000809676405099 0.5420439496231012 0.8365327615396679 0.08000809676405099 -0.5420439496231012 0.6347615283535828 0.01155433665977158 0.772621705252044 -0.6347615283535828 -0.01155433665977158 -0.772621705252044 -0.9519190478961309 -0.005574400389519616 -0.3062989590462578 0.9519190478961309 0.005574400389519616 0.3062989590462578 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 -0.964539282200069 -0.2580563926064153 -0.05541544304559113 0.964539282200069 0.2580563926064153 0.05541544304559113 0.442655489608497 -0.1319682527915336 0.8869275606128225 -0.442655489608497 0.1319682527915336 -0.8869275606128225 2.605657906526417e-009 -0.1300025924816046 0.9915136539392998 -2.605657906526417e-009 0.1300025924816046 -0.9915136539392998 -7.067358788118902e-011 -0.04362721548871919 0.9990478797678822 7.067358788118902e-011 0.04362721548871919 -0.9990478797678822 0.8425057926680641 0.01555117100145642 0.5384627660305216 -0.8425057926680641 -0.01555117100145642 -0.5384627660305216 -0.9015863992712774 -0.01219373558413136 -0.4324271932494034 0.9015863992712774 0.01219373558413136 0.4324271932494034 -0.9371645856471843 -0.05885413476929844 -0.3438876709469223 0.9371645856471843 0.05885413476929844 0.3438876709469223 -0.8891099819974205 -0.01775480320450284 -0.4573491083141148 0.8891099819974205 0.01775480320450284 0.4573491083141148 -0.9238625911297171 -0.298752180278987 -0.239217573538477 0.9238625911297171 0.298752180278987 0.239217573538477 0.714460437130116 -0.1454390921233625 0.684392982326803 -0.714460437130116 0.1454390921233625 -0.684392982326803 0.5669657547679409 -0.2605372480570189 0.7814538855846162 -0.5669657547679409 0.2605372480570189 -0.7814538855846162 0.005018164881382924 -0.3337214114980939 0.9426583885633985 -0.005018164881382924 0.3337214114980939 -0.9426583885633985 0.008334074846322034 -0.3314169967032203 0.9434475700814931 -0.008334074846322034 0.3314169967032203 -0.9434475700814931 -1.07869099120766e-009 -0.2576574119967494 0.9662363365363245 1.07869099120766e-009 0.2576574119967494 -0.9662363365363245 -0.6255914375192391 -0.09499054398525243 0.7743462725783586 0.6255914375192391 0.09499054398525243 -0.7743462725783586 0.8566494289754592 0.002447052947409265 0.515893174763819 -0.8566494289754592 -0.002447052947409265 -0.515893174763819 -0.9224100075395584 -0.3862095043714823 -0.001413054848939107 0.9224100075395584 0.3862095043714823 0.001413054848939107 -0.8828076860501695 -0.01967706819265308 -0.4693222799293541 0.8828076860501695 0.01967706819265308 0.4693222799293541 -0.6615076437520473 -0.7266804356183233 -0.1853191348651796 0.6615076437520473 0.7266804356183233 0.1853191348651796 0.8505881097345353 -0.07656512545695393 0.5202284586044782 -0.8505881097345353 0.07656512545695393 -0.5202284586044782 0.001031618759408731 -0.04511816235489764 0.9989811245406254 -0.001031618759408731 0.04511816235489764 -0.9989811245406254 0.005662748672241021 -0.3003435921545434 0.9538142690949744 -0.005662748672241021 0.3003435921545434 -0.9538142690949744 0.6341513258495346 -0.07317274126097195 0.7697388166512276 -0.6341513258495346 0.07317274126097195 -0.7697388166512276 0.9591405385262183 0.001327998537806206 0.282926958375337 -0.9591405385262183 -0.001327998537806206 -0.282926958375337 -0.4469774344299156 0.513470208436643 -0.7325022308215047 0.4469774344299156 -0.513470208436643 0.7325022308215047 -0.6952119327195182 -0.184416700421677 -0.6947451685402165 0.6952119327195182 0.184416700421677 0.6947451685402165 -0.7722612531751347 -0.3004697649391121 -0.5597593029167134 0.7722612531751347 0.3004697649391121 0.5597593029167134 -0.6908010466491781 -0.05284287290219791 -0.7211113261708225 0.6908010466491781 0.05284287290219791 0.7211113261708225 -0.5948201101151525 -0.6913376571153824 -0.4101722570540478 0.5948201101151525 0.6913376571153824 0.4101722570540478 0.9845608053297705 0.005789609544017289 0.1749471378151744 -0.9845608053297705 -0.005789609544017289 -0.1749471378151744 0.003174899820202929 -0.6896700314217814 0.724116819145786 -0.003174899820202929 0.6896700314217814 -0.724116819145786 0.004057326653133169 -0.789447614806144 0.6138045304307553 -0.004057326653133169 0.789447614806144 -0.6138045304307553 0.002328722508645825 -0.1360208178701879 0.9907032422261487 -0.002328722508645825 0.1360208178701879 -0.9907032422261487 0.9618278313538345 0.002838815778547771 0.2736405744003531 -0.9618278313538345 -0.002838815778547771 -0.2736405744003531 -0.03258879221096398 -0.992925889807309 -0.1141759518138322 -0.03507863000728281 -0.9993638928866502 -0.006426454018542583 0.03507863000728281 0.9993638928866502 0.006426454018542583 0.03258879221096398 0.992925889807309 0.1141759518138322 -0.4888251582665992 -0.1400022890829338 -0.8610745169247391 0.4888251582665992 0.1400022890829338 0.8610745169247391 -0.03524828916784289 -0.9772415642552044 -0.2091805038783054 0.03524828916784289 0.9772415642552044 0.2091805038783054 -0.001251671724717876 -0.04183185849651849 0.9991238806737735 0.001251671724717876 0.04183185849651849 -0.9991238806737735 0.01969778337526758 -0.2616666146433107 0.9649572944494539 -0.01969778337526758 0.2616666146433107 -0.9649572944494539 0.9891517491442294 0.006985270438849279 0.1467311254022397 -0.9891517491442294 -0.006985270438849279 -0.1467311254022397 -0.2711734956875576 0.1051523120706788 -0.9567695263242767 0.2711734956875576 -0.1051523120706788 0.9567695263242767 -0.385463035904434 -0.3423335113386137 -0.8568698938379807 0.385463035904434 0.3423335113386137 0.8568698938379807 -0.4541983832729183 -0.5664546984294635 -0.6876284630957713 0.4541983832729183 0.5664546984294635 0.6876284630957713 -0.1226959874954221 -0.105219651549913 -0.9868508091805155 0.1226959874954221 0.105219651549913 0.9868508091805155 0.00342297481961079 -0.9004525847666326 -0.4349407153055167 -0.00342297481961079 0.9004525847666326 0.4349407153055167 0.03166910955675777 -0.8815383232987408 0.4710490972876683 -0.03166910955675777 0.8815383232987408 -0.4710490972876683 -0.006026882282988452 -0.1563124458061748 0.9876892709633118 0.006026882282988452 0.1563124458061748 -0.9876892709633118 0.9890263553172155 0.006172431079916526 0.1476101947106241 -0.9890263553172155 -0.006172431079916526 -0.1476101947106241 -0.1337631166327554 0.5108285547050319 -0.8492123505500023 0.1337631166327554 -0.5108285547050319 0.8492123505500023 0.5488649620174 -0.8350332471836223 -0.03829790552515543 -0.5488649620174 0.8350332471836223 0.03829790552515543 0.03815920939920633 -0.2349458118875155 -0.9712591519334805 -0.03815920939920633 0.2349458118875155 0.9712591519334805 0.6394382168331546 -0.7392226720858357 -0.2113494923758103 -0.6394382168331546 0.7392226720858357 0.2113494923758103 0.007514645778823581 -0.921398025935363 0.3885475619550775 -0.007514645778823581 0.921398025935363 -0.3885475619550775 -0.00145059792117709 -0.04482942654834016 0.9989936027227692 0.00145059792117709 0.04482942654834016 -0.9989936027227692 -0.005615740926310768 -0.2129790948974011 0.9770406176769378 0.005615740926310768 0.2129790948974011 -0.9770406176769378 0.07717520035315093 -0.2197372978899333 0.9725016752512469 -0.07717520035315093 0.2197372978899333 -0.9725016752512469 0.9992120137663731 0.001956494929291655 0.03964244786262546 -0.9992120137663731 -0.001956494929291655 -0.03964244786262546 0.00051765045677645 0.2244249960784471 -0.9744912278585137 -0.00051765045677645 -0.2244249960784471 0.9744912278585137 -0.009337471849616528 -0.1906882854260363 -0.9816062293102749 0.009337471849616528 0.1906882854260363 0.9816062293102749 0.1248461329420074 -0.4911711065753458 -0.8620698273080766 -0.1248461329420074 0.4911711065753458 0.8620698273080766 0.02873404700195586 -0.7438727809243705 -0.6677032576996559 -0.02873404700195586 0.7438727809243705 0.6677032576996559 0.1375879447662982 -0.2442634976772494 -0.9598983806411293 -0.1375879447662982 0.2442634976772494 0.9598983806411293 0.6109216499255123 -0.7321214414072957 -0.3012854670972261 -0.6109216499255123 0.7321214414072957 0.3012854670972261 0.01095452666231913 -0.881965730537646 0.4711862142537712 -0.01095452666231913 0.881965730537646 -0.4711862142537712 0.002759994826984163 -0.9365555159321531 0.3505084136017472 -0.002759994826984163 0.9365555159321531 -0.3505084136017472 0.003101137519958726 -0.1523881820302551 0.9883158528140668 -0.003101137519958726 0.1523881820302551 -0.9883158528140668 -0.02477283165215043 -0.1906352669757192 0.9813483080930188 0.02477283165215043 0.1906352669757192 -0.9813483080930188 0.9991782585581174 0.001611336279199616 0.04049952123375587 -0.9991782585581174 -0.001611336279199616 -0.04049952123375587 -1.02530016735507e-007 0.2636233694851336 -0.9646256885762965 1.02530016735507e-007 -0.2636233694851336 0.9646256885762965 -0.0351849297132265 -0.1621484141288771 -0.9861388910881496 0.0351849297132265 0.1621484141288771 0.9861388910881496 0.5143809167910157 -0.8427232925643818 -0.1588386747951559 -0.5143809167910157 0.8427232925643818 0.1588386747951559 0.4862319033164969 -0.8180756479873211 -0.3071331476206068 -0.4862319033164969 0.8180756479873211 0.3071331476206068 0.001922941174372306 -0.9487328369278876 0.3160732611784843 -0.001922941174372306 0.9487328369278876 -0.3160732611784843 0.01058462495978283 -0.9372415837114693 0.3485199843287005 -0.01058462495978283 0.9372415837114693 -0.3485199843287005 -0.001655665923785194 -0.9967332534053051 0.08074701434991111 0.001655665923785194 0.9967332534053051 -0.08074701434991111 -0.02350702559942529 -0.05281540246072417 0.9983275780075294 0.02350702559942529 0.05281540246072417 -0.9983275780075294 -0.003607093997184266 -0.1873518799749329 0.9822862423666299 0.003607093997184266 0.1873518799749329 -0.9822862423666299 0.1091488696533336 -0.1854757037912854 0.9765681172127867 -0.1091488696533336 0.1854757037912854 -0.9765681172127867 0.9970360989926174 0.007952043551113014 -0.07652308350390141 -0.9970360989926174 -0.007952043551113014 0.07652308350390141 -2.171072517093037e-008 0.2472169324000076 -0.9689601582803751 2.171072517093037e-008 -0.2472169324000076 0.9689601582803751 -5.84617728037201e-008 -0.008881558328595218 -0.9999605581829977 5.84617728037201e-008 0.008881558328595218 0.9999605581829977 0.006159025862486746 -0.1559530855423624 -0.9877452614466149 -0.006159025862486746 0.1559530855423624 0.9877452614466149 -0.06704875134860357 -0.2521927092765705 -0.9653513880087066 0.06704875134860357 0.2521927092765705 0.9653513880087066 0.9554196933123231 -0.280007949107208 -0.09364164707949933 -0.9554196933123231 0.280007949107208 0.09364164707949933 0.5580519801572651 -0.6424666100918869 -0.5251805807144766 -0.5580519801572651 0.6424666100918869 0.5251805807144766 0.2213501855596587 -0.3636856818823712 -0.9048407706035683 -0.2213501855596587 0.3636856818823712 0.9048407706035683 0.4176489384104904 -0.7475845573333596 -0.5164171703974174 -0.4176489384104904 0.7475845573333596 0.5164171703974174 0.000543654461523819 -0.9965146488499961 0.08341617988852952 -0.000543654461523819 0.9965146488499961 -0.08341617988852952 0.01776409704298866 -0.9960145399706042 0.0874040789860125 -0.01776409704298866 0.9960145399706042 -0.0874040789860125 0.004151389166419962 -0.1530036796870666 0.9882168992535022 -0.004151389166419962 0.1530036796870666 -0.9882168992535022 -0.003468795617832963 -0.1849306395670129 0.9827454533124522 0.003468795617832963 0.1849306395670129 -0.9827454533124522 0.9968880601904836 0.008091956229407032 -0.07841374684349815 -0.9968880601904836 -0.008091956229407032 0.07841374684349815 -0.001043001060514516 0.2456279899096795 -0.9693636070751357 0.001043001060514516 -0.2456279899096795 0.9693636070751357 0.1337633194460965 0.5108296595896843 -0.8492116539792946 -0.1337633194460965 -0.5108296595896843 0.8492116539792946 -0.0005177218023518647 0.2244242470440256 -0.97449140032268 0.0005177218023518647 -0.2244242470440256 0.97449140032268 0.001565852237767074 -0.1619392335587709 -0.9867994896336172 -0.001565852237767074 0.1619392335587709 0.9867994896336172 0.00641168821081358 -0.1389593965367389 -0.9902773229598024 -0.00641168821081358 0.1389593965367389 0.9902773229598024 0.01706464709692535 -0.2680552022445862 -0.9632524105181733 -0.01706464709692535 0.2680552022445862 0.9632524105181733 0.003679893357355509 -0.9807448154713261 -0.1952589698605237 0.03520220708547025 -0.9955675555630086 0.08721265347762125 -0.03520220708547025 0.9955675555630086 -0.08721265347762125 -0.003679893357355509 0.9807448154713261 0.1952589698605237 0.01913276905228145 -0.9353993121726628 -0.3530751533814035 -0.01913276905228145 0.9353993121726628 0.3530751533814035 -0.001994112838259068 -0.8302319855317633 -0.5574144541667129 0.001994112838259068 0.8302319855317633 0.5574144541667129 -1.364018447764835e-010 -0.9964469582527105 0.08422267740294874 1.364018447764835e-010 0.9964469582527105 -0.08422267740294874 5.41970020038079e-019 -0.9802037300795121 -0.1979915340064092 -5.41970020038079e-019 0.9802037300795121 0.1979915340064092 -0.001766313770587881 -0.9804977542855673 -0.1965223498145266 0.001766313770587881 0.9804977542855673 0.1965223498145266 -0.02441358428433715 -0.04018937462395292 0.9988937836775875 0.02441358428433715 0.04018937462395292 -0.9988937836775875 0.1228143137468341 -0.1111288314674064 0.9861881296971603 -0.1228143137468341 0.1111288314674064 -0.9861881296971603 -0.007545313160508039 -0.2110414854128979 0.9774479831090899 0.007545313160508039 0.2110414854128979 -0.9774479831090899 0.9502869607144168 0.0007765411933242198 -0.311374516105496 -0.9502869607144168 -0.0007765411933242198 0.311374516105496 2.537875881418471e-010 -0.2697717871999729 -0.9629242871747148 -2.537875881418471e-010 0.2697717871999729 0.9629242871747148 0.001043003155523745 0.2456281415727075 -0.9693635686428263 -0.001043003155523745 -0.2456281415727075 0.9693635686428263 -0.001565851058636335 -0.1619405677985199 -0.9867992706784673 0.001565851058636335 0.1619405677985199 0.9867992706784673 -0.004611174646379514 -0.2494173833582457 -0.9683851020885783 0.004611174646379514 0.2494173833582457 0.9683851020885783 0.0866390342236773 -0.2729801568117363 -0.9581103859868279 -0.0866390342236773 0.2729801568117363 0.9581103859868279 0.04754809025452786 -0.4924470298485574 -0.869042635263933 -0.04754809025452786 0.4924470298485574 0.869042635263933 -0.0349422049523222 -0.5274602944483731 -0.8488608131451854 0.0349422049523222 0.5274602944483731 0.8488608131451854 -3.75971853423118e-018 -0.980203730079512 -0.1979915340064091 3.75971853423118e-018 0.980203730079512 0.1979915340064091 -1.339987576635483e-010 -0.9494894852049263 0.3137988487634778 1.339987576635483e-010 0.9494894852049263 -0.3137988487634778 -0.1392326954818779 -0.1282268657791879 0.9819226687480521 0.1392326954818779 0.1282268657791879 -0.9819226687480521 -0.3293614164730073 -0.1512838249825715 0.9320055051540935 0.3293614164730073 0.1512838249825715 -0.9320055051540935 -0.005222168794586046 -0.2092035074705264 0.9778581806249362 0.005222168794586046 0.2092035074705264 -0.9778581806249362 0.9472163939976568 -0.002797653202538041 -0.3205827133184727 -0.9472163939976568 0.002797653202538041 0.3205827133184727 0.0005327402026250499 -0.2855058741792734 -0.958376811070158 -0.0005327402026250499 0.2855058741792734 0.958376811070158 0.2711703080685523 0.1051545366733732 -0.956770185279106 -0.2711703080685523 -0.1051545366733732 0.956770185279106 0.004611184001270919 -0.2494172177081709 -0.9683851447088711 -0.004611184001270919 0.2494172177081709 0.9683851447088711 -0.00641169077383815 -0.138960756374078 -0.9902771321248233 0.00641169077383815 0.138960756374078 0.9902771321248233 -3.265894096845424e-008 -0.2425354887703818 -0.9701425342118091 3.265894096845424e-008 0.2425354887703818 0.9701425342118091 -0.0007672322097599292 -0.2614437891938212 -0.9652183983154864 0.0007672322097599292 0.2614437891938212 0.9652183983154864 -0.001596423311002504 -0.9348817568566014 -0.3549557044608905 0.001596423311002504 0.9348817568566014 0.3549557044608905 -0.001610422576868236 -0.8275150490717169 -0.561441225863365 0.001610422576868236 0.8275150490717169 0.561441225863365 -0.0005274653425915593 -0.5352782164951003 -0.8446756494217983 0.0005274653425915593 0.5352782164951003 0.8446756494217983 -0.0005436553252101591 -0.996514648972146 0.08341617842366074 0.0005436553252101591 0.996514648972146 -0.08341617842366074 -0.001922888543134675 -0.9487332505075247 0.3160720200857349 0.001922888543134675 0.9487332505075247 -0.3160720200857349 -7.396599460252093e-018 -0.9351479406582195 -0.3542574333485339 7.396599460252093e-018 0.9351479406582195 0.3542574333485339 -2.293528301419984e-018 -0.9351479406582196 -0.3542574333485339 2.293528301419984e-018 0.9351479406582196 0.3542574333485339 0.3415245336174704 -0.08847644274145106 0.9356991567898243 -0.3415245336174704 0.08847644274145106 -0.9356991567898243 0.4705842001746854 -0.03092247994198945 0.8818130815429019 -0.4705842001746854 0.03092247994198945 -0.8818130815429019 -0.01238196350419059 -0.2569854266098262 0.9663359547745009 0.01238196350419059 0.2569854266098262 -0.9663359547745009 0.9771876480280277 -0.001587207294657635 -0.2123717997156287 -0.9771876480280277 0.001587207294657635 0.2123717997156287 -0.000532740161792093 -0.2855057619596127 -0.9583768445010455 0.000532740161792093 0.2855057619596127 0.9583768445010455 0.4469772352428111 0.5134695466944448 -0.7325028162349238 -0.4469772352428111 -0.5134695466944448 0.7325028162349238 0.03518499885919119 -0.1621494165226706 -0.986138723799363 -0.03518499885919119 0.1621494165226706 0.986138723799363 0.0007672363316913843 -0.2614436288699845 -0.9652184417382965 -0.0007672363316913843 0.2614436288699845 0.9652184417382965 -0.006159121280631435 -0.1559541201625387 -0.9877450974970105 0.006159121280631435 0.1559541201625387 0.9877450974970105 -0.001969321035844544 -0.5365270886895071 -0.843880800159015 0.001969321035844544 0.5365270886895071 0.843880800159015 -8.837531091392778e-019 -0.9802037300795119 -0.1979915340064091 8.837531091392778e-019 0.9802037300795119 0.1979915340064091 -0.4190697444091525 -0.09024864078020417 0.9034576537714277 0.4190697444091525 0.09024864078020417 -0.9034576537714277 0.3680797257813653 -0.08538783222646242 0.9258651270980997 -0.3680797257813653 0.08538783222646242 -0.9258651270980997 0.4492746531252486 -0.01816073048124067 0.8932090874636104 -0.4492746531252486 0.01816073048124067 -0.8932090874636104 -0.4173701553929433 -0.1778880338757434 0.891155430209059 0.4173701553929433 0.1778880338757434 -0.891155430209059 -0.01543465121279611 -0.2576051549014911 0.9661269873624885 0.01543465121279611 0.2576051549014911 -0.9661269873624885 0.979039599996785 3.723198623051503e-018 -0.2036699821724724 -0.979039599996785 -3.723198623051503e-018 0.2036699821724724 0.9822516255750345 -0.00506035999292398 -0.1874996981649415 -0.9822516255750345 0.00506035999292398 0.1874996981649415 0.6908014509118093 -0.05284299212726929 -0.7211109301634363 -0.6908014509118093 0.05284299212726929 0.7211109301634363 0.009337283033500718 -0.1906891812700813 -0.9816060570779391 -0.009337283033500718 0.1906891812700813 0.9816060570779391 0.001969230634495697 -0.536527240943499 -0.8438807035690913 -0.001969230634495697 0.536527240943499 0.8438807035690913 0.0005274653854330695 -0.5352783480696075 -0.8446755660418618 -0.0005274653854330695 0.5352783480696075 0.8446755660418618 -0.08664067818260744 -0.2729798777103628 -0.9581103168473312 0.08664067818260744 0.2729798777103628 0.9581103168473312 -8.682525665784773e-008 -0.541578389631433 -0.8406502530090716 8.682525665784773e-008 0.541578389631433 0.8406502530090716 -3.921503028202469e-008 -0.8274109878084094 -0.5615968814495951 3.921503028202469e-008 0.8274109878084094 0.5615968814495951 0.001654855532108666 -0.9967332357435745 0.08074724897673978 -0.001654855532108666 0.9967332357435745 -0.08074724897673978 -0.007507578153535655 -0.9214029086402269 0.3885361195816913 0.007507578153535655 0.9214029086402269 -0.3885361195816913 1.166034280447703e-017 -0.8274111517833948 -0.5615966398621667 -1.166034280447703e-017 0.8274111517833948 0.5615966398621667 6.519206129915245e-018 -0.9351479406582196 -0.354257433348534 -6.519206129915245e-018 0.9351479406582196 0.354257433348534 0.8765287252543467 -0.02677196831588556 0.480604468889422 -0.8765287252543467 0.02677196831588556 -0.480604468889422 0.8571758297539573 -0.04022835732976661 0.5134503638640867 -0.8571758297539573 0.04022835732976661 -0.5134503638640867 0.2476665877536164 -0.02438400563172669 0.9685384254534418 -0.2476665877536164 0.02438400563172669 -0.9685384254534418 0.884740255987156 -0.01757400060212124 0.4657529752332437 -0.884740255987156 0.01757400060212124 -0.4657529752332437 -0.008331180739317903 -0.3314190500550238 0.9434468743326858 0.008331180739317903 0.3314190500550238 -0.9434468743326858 0.9432798258574218 0.01059364971511918 -0.3318296923364535 -0.9432798258574218 -0.01059364971511918 0.3318296923364535 0.9999689460896092 1.894030449980373e-005 -0.007880767583261984 -0.9999689460896092 -1.894030449980373e-005 0.007880767583261984 0.99991876650967 -0.0001743193360556289 -0.01274480264849827 -0.99991876650967 0.0001743193360556289 0.01274480264849827 0.963940371883855 -0.0007430628977369711 -0.2661172811185801 -0.963940371883855 0.0007430628977369711 0.2661172811185801 0.8891107244168913 -0.01775462431207951 -0.457347671954726 -0.8891107244168913 0.01775462431207951 0.457347671954726 0.1227000911442241 -0.1052200392904613 -0.9868502576201279 -0.1227000911442241 0.1052200392904613 0.9868502576201279 0.0670495281157894 -0.2521921100028625 -0.9653514906145605 -0.0670495281157894 0.2521921100028625 0.9653514906145605 -0.0170646773798094 -0.2680546801232958 -0.9632525552781683 0.0170646773798094 0.2680546801232958 0.9632525552781683 0.03494104891599838 -0.5274582057490552 -0.8488621585915097 -0.03494104891599838 0.5274582057490552 0.8488621585915097 0.001765561878675717 -0.980497605028382 -0.1965231012498518 -0.001765561878675717 0.980497605028382 0.1965231012498518 -0.01094685603328983 -0.8819912528699143 0.471138616761506 0.01094685603328983 0.8819912528699143 -0.471138616761506 0.3332198513983277 -0.08667457196835998 0.9388567777931722 -0.3332198513983277 0.08667457196835998 -0.9388567777931722 -0.5263482937354177 -0.1131636951629167 0.8427048426221894 0.5263482937354177 0.1131636951629167 -0.8427048426221894 0.8512036730938258 -0.0253588199466456 0.5242225073024747 -0.8512036730938258 0.0253588199466456 -0.5242225073024747 0.6083282053285112 -0.01773846461560139 0.793487329120556 -0.6083282053285112 0.01773846461560139 -0.793487329120556 0.8955201128425246 -0.0002645525043728441 0.4450209629966709 -0.8955201128425246 0.0002645525043728441 -0.4450209629966709 -0.5028522588127636 -0.2156046685228307 0.8370509140536563 0.5028522588127636 0.2156046685228307 -0.8370509140536563 -0.00501692700507513 -0.3337218280837456 0.9426582476719061 0.00501692700507513 0.3337218280837456 -0.9426582476719061 0.979039599996785 1.8305164934997e-018 -0.2036699821724724 -0.979039599996785 -1.8305164934997e-018 0.2036699821724724 0.9999689462689712 -1.671736728866068e-018 -0.007880767584675541 -0.9999689462689712 1.671736728866068e-018 0.007880767584675541 0.9989411528411329 -0.03474272973627807 -0.03015818116034828 -0.9989411528411329 0.03474272973627807 0.03015818116034828 0.9852263379833788 -0.004009932625759784 -0.1712103483560439 -0.9852263379833788 0.004009932625759784 0.1712103483560439 0.9790951786464889 0.000824466295486361 -0.2034009621573309 -0.9790951786464889 -0.000824466295486361 0.2034009621573309 0.9015877380131129 -0.01219416928485135 -0.4324243898068783 -0.9015877380131129 0.01219416928485135 0.4324243898068783 0.882805259821104 -0.01967849854219704 -0.4693267837310353 -0.882805259821104 0.01967849854219704 0.4693267837310353 0.4888256144894809 -0.1400032866549034 -0.8610740957343952 -0.4888256144894809 0.1400032866549034 0.8610740957343952 -0.1375895520841367 -0.2442624196218493 -0.9598984245834381 0.1375895520841367 0.2442624196218493 0.9598984245834381 0.001610421043702095 -0.8275152308916418 -0.561440957881071 -0.001610421043702095 0.8275152308916418 0.561440957881071 3.826848737184621e-018 -0.8274111517833948 -0.5615966398621665 -3.826848737184621e-018 0.8274111517833948 0.5615966398621665 0.001974657072815 -0.8302327332466417 -0.5574134097555021 -0.001974657072815 0.8302327332466417 0.5574134097555021 -0.04754584098955737 -0.4924427086165555 -0.8690452069570294 0.04754584098955737 0.4924427086165555 0.8690452069570294 -0.01775173400364818 -0.9960150402472624 0.08740088981874049 0.01775173400364818 0.9960150402472624 -0.08740088981874049 -0.002760499121996385 -0.9365546305067288 0.350510775470601 0.002760499121996385 0.9365546305067288 -0.350510775470601 -0.03166756980589452 -0.8815390907118107 0.4710477646370724 0.03166756980589452 0.8815390907118107 -0.4710477646370724 0.001596424580051864 -0.9348817574377485 -0.3549557029245579 -0.001596424580051864 0.9348817574377485 0.3549557029245579 0.956558491032075 -0.0133283327265745 0.2912356584986964 -0.956558491032075 0.0133283327265745 -0.2912356584986964 0.9558326378297177 -0.007543621672339141 0.2938146732747506 -0.9558326378297177 0.007543621672339141 -0.2938146732747506 0.9578180647728783 -0.01408003476693324 0.2870301507084225 -0.9578180647728783 0.01408003476693324 -0.2870301507084225 0.9072313656561679 -0.007386427186210549 0.4205671050653715 -0.9072313656561679 0.007386427186210549 -0.4205671050653715 0.5575043664877837 0.02727866862154784 0.829725711054738 -0.5575043664877837 -0.02727866862154784 -0.829725711054738 0.955061983574575 -0.008595504674960005 0.2962814959290931 -0.955061983574575 0.008595504674960005 -0.2962814959290931 -0.004056581686613388 -0.7894483875484434 0.6138035414871621 0.004056581686613388 0.7894483875484434 -0.6138035414871621 0.8994373316751744 4.749529601802568e-018 -0.4370497527616764 -0.8994373316751744 -4.749529601802568e-018 0.4370497527616764 0.9999689462689712 2.170208093761268e-019 -0.007880767584675538 -0.9999689462689712 -2.170208093761268e-019 0.007880767584675538 0.997407803994539 -0.06127178855395159 -0.03772850988564364 -0.997407803994539 0.06127178855395159 0.03772850988564364 0.9663855875540297 -0.001291832929411919 -0.2570938103796652 -0.9663855875540297 0.001291832929411919 0.2570938103796652 0.9856181589139861 0.002472889974129722 -0.1689696115701884 -0.9856181589139861 -0.002472889974129722 0.1689696115701884 0.9519198641335414 -0.005572174531889075 -0.3062964628247709 -0.9519198641335414 0.005572174531889075 0.3062964628247709 0.9603614077941031 -0.004049466913913244 -0.2787284847973766 -0.9603614077941031 0.004049466913913244 0.2787284847973766 -0.03815805929900767 -0.2349450670776329 -0.9712593772862224 0.03815805929900767 0.2349450670776329 0.9712593772862224 -0.2213583936854587 -0.3636822296313745 -0.9048401501897149 0.2213583936854587 0.3636822296313745 0.9048401501897149 -0.4176656747506726 -0.7475790938819354 -0.5164115437572342 0.4176656747506726 0.7475790938819354 0.5164115437572342 -0.003678226109313476 -0.9807441849824888 -0.1952621680605918 0.003678226109313476 0.9807441849824888 0.1952621680605918 -0.003174899851690268 -0.6896701426261755 0.7241167132313149 0.003174899851690268 0.6896701426261755 -0.7241167132313149 0.2014731996283661 -0.101518830700172 0.9742189060189594 -0.2014731996283661 0.101518830700172 -0.9742189060189594 0.8471832164661007 -0.01871259358130396 0.530971220104831 -0.8471832164661007 0.01871259358130396 -0.530971220104831 -0.6592700716512461 -0.1055123068662708 0.7444663361930605 0.6592700716512461 0.1055123068662708 -0.7444663361930605 0.9733834031071185 0.007735325110119988 0.2290522108626014 -0.9733834031071185 -0.007735325110119988 -0.2290522108626014 0.9164151976740033 -0.009103539561407248 0.4001253691526837 -0.9164151976740033 0.009103539561407248 -0.4001253691526837 0.1422539534903038 0.08650680782154999 0.9860427906114946 -0.1422539534903038 -0.08650680782154999 -0.9860427906114946 0.9588345703509946 0.0008323912160688985 0.2839640361466345 -0.9588345703509946 -0.0008323912160688985 -0.2839640361466345 0.9598790634568707 -0.003077495641744351 0.2803974189569793 -0.9598790634568707 0.003077495641744351 -0.2803974189569793 -0.5669650605659093 -0.2605368662497732 0.7814545165409452 0.5669650605659093 0.2605368662497732 -0.7814545165409452 0.9781135818534934 1.34430433349115e-018 -0.2080716727325698 -0.9781135818534934 -1.34430433349115e-018 0.2080716727325698 0.9663115335897946 0.004882744349163951 -0.2573289312513458 -0.9663115335897946 -0.004882744349163951 0.2573289312513458 0.9999689462689712 -2.170208093761268e-019 -0.007880767584675541 0.9999689462689712 -2.170208093761268e-019 -0.007880767584675541 -0.9999689462689712 2.170208093761268e-019 0.007880767584675541 -0.9999689462689712 2.170208093761268e-019 0.007880767584675541 0.9845241791459773 -0.0004086970412225588 -0.1752483199453504 -0.9845241791459773 0.0004086970412225588 0.1752483199453504 0.9509242474571021 -0.008522673049577493 -0.3093063847421095 -0.9509242474571021 0.008522673049577493 0.3093063847421095 0.9371635595269554 -0.05885583532215234 -0.3438901762820491 -0.9371635595269554 0.05885583532215234 0.3438901762820491 0.695209612036329 -0.184417268281811 -0.694747340039364 -0.695209612036329 0.184417268281811 0.694747340039364 0.3854694816538004 -0.3423323407385548 -0.8568674618621087 -0.3854694816538004 0.3423323407385548 0.8568674618621087 -0.1248496818334184 -0.4911743379772181 -0.862067472219394 0.1248496818334184 0.4911743379772181 0.862067472219394 -0.01914711607387571 -0.9353999608355318 -0.3530726571329746 0.01914711607387571 0.9353999608355318 0.3530726571329746 -0.4862404515351986 -0.8180727855420281 -0.3071272388544412 0.4862404515351986 0.8180727855420281 0.3071272388544412 -0.5580514886342289 -0.6424719998950559 -0.5251745094575406 0.5580514886342289 0.6424719998950559 0.5251745094575406 -0.03517707448840293 -0.9955686973253226 0.08720976055693352 0.03517707448840293 0.9955686973253226 -0.08720976055693352 -0.01058259043784989 -0.9372406732639375 0.3485224944811823 0.01058259043784989 0.9372406732639375 -0.3485224944811823 0.9842462036749082 -0.01640469791371886 0.1760406101951788 -0.9842462036749082 0.01640469791371886 -0.1760406101951788 0.9951374926014686 -0.01257896904630131 0.09768899813486875 -0.9951374926014686 0.01257896904630131 -0.09768899813486875 0.9748192624683028 -0.01264279127167541 0.222637744665219 -0.9748192624683028 0.01264279127167541 -0.222637744665219 0.9978101430840221 -0.0002980269199170782 0.06614249419698789 -0.9978101430840221 0.0002980269199170782 -0.06614249419698789 0.3283493187707493 0.3306983436379725 0.8847741691402875 -0.3283493187707493 -0.3306983436379725 -0.8847741691402875 0.9765438230670186 0.0004985906997081331 0.2153181669923967 -0.9765438230670186 -0.0004985906997081331 -0.2153181669923967 0.9999689462689712 3.811622599330838e-019 -0.007880767584675538 -0.9999689462689712 -3.811622599330838e-019 0.007880767584675538 0.9971892143428791 0.02017313827773756 -0.07215757264666442 -0.9971892143428791 -0.02017313827773756 0.07215757264666442 0.9837731791909455 -0.003803803578565293 -0.1793763166721725 -0.9837731791909455 0.003803803578565293 0.1793763166721725 0.9898167070083889 -0.0151019980822362 -0.1415443965015694 -0.9898167070083889 0.0151019980822362 0.1415443965015694 0.9870725569722861 -0.04346651375319539 -0.1542673959537012 -0.9870725569722861 0.04346651375319539 0.1542673959537012 -0.6109158080307132 -0.7321255433242386 -0.3012873450883211 0.6109158080307132 0.7321255433242386 0.3012873450883211 -0.5143786487068958 -0.8427253558269834 -0.1588350729554152 0.5143786487068958 0.8427253558269834 0.1588350729554152 -0.4426563640097903 -0.1319682946309932 0.8869271179831065 0.4426563640097903 0.1319682946309932 -0.8869271179831065 0.8682017986762796 -0.02384011395508521 0.4956382609745554 -0.8682017986762796 0.02384011395508521 -0.4956382609745554 0.9765681864789892 -0.04566472509215266 0.2103076556842293 -0.9765681864789892 0.04566472509215266 -0.2103076556842293 -0.7144594929188609 -0.1454395098621124 0.684393879245857 0.7144594929188609 0.1454395098621124 -0.684393879245857 0.9979815238056222 0.0007785418897066691 0.06350017334727653 -0.9979815238056222 -0.0007785418897066691 -0.06350017334727653 0.9607774046779956 0.002014716084005299 0.2773133959608085 -0.9607774046779956 -0.002014716084005299 -0.2773133959608085 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 0.9785895810056572 0.003221874091712548 0.2057961405724349 -0.9785895810056572 -0.003221874091712548 -0.2057961405724349 -0.9845592136282013 0.005778961781360174 0.1749564473248911 0.9845592136282013 -0.005778961781360174 -0.1749564473248911 0.9999689462689712 -3.81162259933084e-019 -0.007880767584675541 0.9999689462689712 -3.81162259933084e-019 -0.007880767584675541 -0.9999689462689712 3.81162259933084e-019 0.007880767584675541 -0.9999689462689712 3.81162259933084e-019 0.007880767584675541 0.9999574977946593 -0.001434794235076954 -0.009107358000382792 -0.9999574977946593 0.001434794235076954 0.009107358000382792 0.990394137619684 -0.004947048548015723 -0.1381845826394031 -0.990394137619684 0.004947048548015723 0.1381845826394031 0.9878664051229494 -0.009852100486114623 -0.1549932312892155 -0.9878664051229494 0.009852100486114623 0.1549932312892155 0.9238623772605025 -0.2987503600454748 -0.2392206727172045 -0.9238623772605025 0.2987503600454748 0.2392206727172045 0.7722566517449084 -0.3004713563895385 -0.559764796879166 -0.7722566517449084 0.3004713563895385 0.559764796879166 0.4541969113379238 -0.5664532909165588 -0.6876305948260959 -0.4541969113379238 0.5664532909165588 0.6876305948260959 -0.02872876545232268 -0.7438757857110302 -0.6677001373883212 0.02872876545232268 0.7438757857110302 0.6677001373883212 -0.6394400882197744 -0.7392207940664073 -0.2113503990942941 0.6394400882197744 0.7392207940664073 0.2113503990942941 -0.9554201128959187 -0.2800080264120052 -0.09363713482803654 -0.5488772901889137 -0.8350252574485036 -0.03829542711519779 0.5488772901889137 0.8350252574485036 0.03829542711519779 0.9554201128959187 0.2800080264120052 0.09363713482803654 0.6724831580142987 -0.05649631950853753 0.7379529578971176 -0.6724831580142987 0.05649631950853753 -0.7379529578971176 0.8879735761679941 -0.2040308333966141 0.412158157811909 0.8856056710704745 -0.2071367107747284 0.415688559401436 0.8919673020626285 -0.06944885009471929 0.4467339132768373 -0.8919673020626285 0.06944885009471929 -0.4467339132768373 -0.8856056710704745 0.2071367107747284 -0.415688559401436 -0.8879735761679941 0.2040308333966141 -0.412158157811909 0.8949774379466016 -0.3243624985815883 0.3062749664606072 0.8971127254100035 -0.3219710774562727 0.3025283179953283 -0.8971127254100035 0.3219710774562727 -0.3025283179953283 -0.8949774379466016 0.3243624985815883 -0.3062749664606072 1 0 0 -1 -0 -0 0.8950565235662222 -0.05501086320564266 0.4425467484355961 0.8963859747980307 0.01799744263674584 0.4429088802947186 -0.8963859747980307 -0.01799744263674584 -0.4429088802947186 -0.8950565235662222 0.05501086320564266 -0.4425467484355961 0.9902347700892529 0.004108876318823506 0.1393492635132362 -0.9902347700892529 -0.004108876318823506 -0.1393492635132362 0.9867767988482539 0.00451540126637684 0.1620220985118897 -0.9867767988482539 -0.00451540126637684 -0.1620220985118897 0.896904250736173 0.02001407858138542 0.441771662366343 0.9006047635162565 0.0901014076929148 0.4251973615435342 -0.9006047635162565 -0.0901014076929148 -0.4251973615435342 -0.896904250736173 -0.02001407858138542 -0.441771662366343 -0.8505869295512368 -0.07656434047780775 0.5202305037613593 0.8505869295512368 0.07656434047780775 -0.5202305037613593 0.9996823061849715 0.002893873138954182 0.02503821477167236 -0.9996823061849715 -0.002893873138954182 -0.02503821477167236 0.8645545832379741 0.4903277633869822 0.110109295947855 0.8613428925296286 0.4933706707004632 0.1211354728445291 0.8544312098838555 0.5186707182013584 0.03046298831202012 -0.8544312098838555 -0.5186707182013584 -0.03046298831202012 -0.8613428925296286 -0.4933706707004632 -0.1211354728445291 -0.8645545832379741 -0.4903277633869822 -0.110109295947855 0.9999426356173807 -0.005924578645249221 -0.008923275320326694 -0.9999426356173807 0.005924578645249221 0.008923275320326694 0.9978370846623687 -0.0512747743709475 -0.04113453519505445 -0.9978370846623687 0.0512747743709475 0.04113453519505445 0.9645386096877072 -0.258059021394777 -0.0554149068254659 -0.9645386096877072 0.258059021394777 0.0554149068254659 -0.003424724626311721 -0.9004485623674271 -0.434949028958185 0.003424724626311721 0.9004485623674271 0.434949028958185 0.8365363380127288 -0.08000022603088255 0.5420395917451615 -0.8365363380127288 0.08000022603088255 -0.5420395917451615 0.9868338077903163 -0.03790197884639443 0.1572338252463278 -0.9868338077903163 0.03790197884639443 -0.1572338252463278 0.9964827847970811 -0.05726715295511971 0.0611762437182037 -0.9964827847970811 0.05726715295511971 -0.0611762437182037 0.873378472098167 -0.4356367472142845 0.2177858327624385 -0.873378472098167 0.4356367472142845 -0.2177858327624385 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 0.8966813609712228 0.07771580569472812 0.4358013199062331 0.9061208994149789 0.1894983809113076 0.3782000519240881 -0.9061208994149789 -0.1894983809113076 -0.3782000519240881 -0.8966813609712228 -0.07771580569472812 -0.4358013199062331 1 0 0 -1 -0 -0 0.8507754953433536 0.4522042923304711 0.2677542427696876 -0.8507754953433536 -0.4522042923304711 -0.2677542427696876 0.9999943528527163 0.0002116978693424881 -0.003354019482552267 -0.9999943528527163 -0.0002116978693424881 0.003354019482552267 0.9992193119948976 0.0003250103045750034 -0.03950520098348688 -0.9992193119948976 -0.0003250103045750034 0.03950520098348688 0.6615091298782606 -0.7266790865525058 -0.1853191200468062 -0.6615091298782606 0.7266790865525058 0.1853191200468062 0.594824018870023 -0.6913328274830446 -0.4101747288895473 -0.594824018870023 0.6913328274830446 0.4101747288895473 0.03524428480282053 -0.9772404059165154 -0.2091865899929102 -0.03524428480282053 0.9772404059165154 0.2091865899929102 -0.6341573082842825 -0.07317161945134183 0.7697339946088529 0.6341573082842825 0.07317161945134183 -0.7697339946088529 0.625589589694931 -0.09499442026280379 0.7743472899056741 -0.625589589694931 0.09499442026280379 -0.7743472899056741 0.8574560540041059 -0.4841070563899792 0.1743831224778856 -0.8574560540041059 0.4841070563899792 -0.1743831224778856 0.9982059251327112 0.003221613185180923 0.05978755922792781 -0.9982059251327112 -0.003221613185180923 -0.05978755922792781 0.9020852017429797 0.1863446310950731 0.3892530889516085 -0.9020852017429797 -0.1863446310950731 -0.3892530889516085 0.8572964449490628 0.4462177410166214 0.2567733106841953 -0.8572964449490628 -0.4462177410166214 -0.2567733106841953 0.8751946504592248 -0.478949811212292 0.06812783680159866 0.8682201907639653 -0.4898576719033636 0.07895037445889835 -0.8682201907639653 0.4898576719033636 -0.07895037445889835 -0.8751946504592248 0.478949811212292 -0.06812783680159866 0.9981408261253131 -0.06091922746013796 0.001933635833697217 -0.9981408261253131 0.06091922746013796 -0.001933635833697217 0.9763108033078525 -0.2123747784436454 -0.04140252196893392 -0.9763108033078525 0.2123747784436454 0.04140252196893392 0.9224089668347014 -0.3862119958074538 -0.001411452217341778 -0.9224089668347014 0.3862119958074538 0.001411452217341778 0.0350836217122919 -0.9993641268128589 -0.006362509498693735 -0.0350836217122919 0.9993641268128589 0.006362509498693735 0.9981387801496015 -0.05180774196831358 0.03217038130968378 -0.9981387801496015 0.05180774196831358 -0.03217038130968378 0.8977399542408993 0.3250712691215336 0.2973073234067127 -0.8977399542408993 -0.3250712691215336 -0.2973073234067127 0.8876171555381039 0.3295593733851059 0.3217551935998261 -0.8876171555381039 -0.3295593733851059 -0.3217551935998261 0.03260687053562721 -0.9929270011109181 -0.114161124988988 -0.03260687053562721 0.9929270011109181 0.114161124988988</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1024\" source=\"#ID1486\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1484\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1482\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1483\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"748\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1484\" />\r\n\t\t\t\t\t<p>0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 16 0 8 1 18 19 12 18 1 6 14 22 14 0 16 16 8 24 18 26 27 30 18 12 32 6 22 14 16 34 16 24 36 18 38 39 30 38 18 42 30 12 32 22 44 46 14 34 34 16 48 48 16 36 38 50 51 54 42 12 56 32 44 58 46 34 34 48 60 62 42 54 56 44 64 66 58 34 66 34 60 68 62 54 70 71 72 76 56 64 66 60 78 80 62 68 82 71 70 84 76 64 86 82 70 88 80 68 90 76 84 92 82 86 94 92 86 96 88 68 98 90 84 100 92 94 102 88 96 104 90 98 106 100 94 108 102 96 104 98 110 112 100 106 114 102 108 116 108 96 118 104 110 120 112 106 122 114 108 124 108 116 118 110 126 128 112 120 122 130 114 132 122 108 134 108 124 136 118 126 138 128 120 140 130 122 134 132 108 132 140 122 142 134 124 136 126 144 146 128 138 140 148 130 150 132 134 152 140 132 150 134 142 142 124 154 136 144 156 158 146 138 160 148 140 150 152 132 160 140 152 150 142 162 142 154 162 156 144 164 158 166 146 160 168 148 170 152 150 172 160 152 150 162 174 154 176 162 178 156 164 180 166 158 182 168 160 170 150 174 170 172 152 182 160 172 176 154 184 178 164 186 180 188 166 182 190 168 170 174 192 194 172 170 196 182 172 198 176 184 200 201 186 201 202 186 178 186 202 206 188 180 182 208 190 194 170 192 192 174 210 194 196 172 196 208 182 212 213 214 214 213 186 200 186 213 206 218 188 208 220 190 194 192 222 224 192 210 174 226 210 228 196 194 230 208 196 186 232 214 218 234 188 236 237 190 220 236 190 240 220 208 228 194 222 222 192 224 224 210 242 210 226 244 228 230 196 230 240 208 214 232 246 218 248 234 236 250 237 220 252 236 240 252 220 228 222 254 222 224 256 224 242 258 242 210 244 226 260 244 262 230 228 264 240 230 246 232 266 248 268 234 250 270 237 236 272 250 252 274 236 276 252 240 262 228 254 254 222 256 256 224 258 258 242 278 242 244 280 244 260 282 262 264 230 264 276 240 246 266 284 250 286 270 274 272 236 272 288 250 252 290 274 276 290 252 262 254 292 254 256 294 256 258 296 298 258 278 278 242 280 244 282 280 260 300 282 264 262 302 304 276 264 266 306 284 250 308 286 274 310 272 288 308 250 272 312 288 290 310 274 314 290 276 302 262 292 294 292 254 294 256 296 296 258 298 278 280 316 280 282 318 282 300 320 304 264 302 314 276 304 284 306 322 308 324 286 310 312 272 288 326 308 312 328 288 330 310 290 314 330 290 302 292 332 294 334 292 336 294 296 338 296 298 316 280 340 340 280 318 318 282 320 320 300 342 304 302 344 346 314 304 306 348 322 308 350 324 310 352 312 328 326 288 326 350 308 312 354 328 330 352 310 356 302 332 334 332 292 334 294 336 336 296 338 318 320 358 320 342 360 346 304 344 362 322 348 350 364 324 352 354 312 328 366 326 326 368 350 354 370 328 356 332 372 334 374 332 334 336 376 336 338 378 320 360 358 360 342 380 346 344 382 384 362 348 350 368 364 352 386 354 366 388 326 370 366 328 326 388 368 354 390 370 356 372 392 374 372 332 374 334 376 376 336 378 358 360 394 360 380 396 398 356 392 400 362 384 368 402 364 386 390 354 366 404 388 370 406 366 388 408 368 390 410 370 412 392 372 374 412 372 414 374 376 376 378 416 358 394 418 360 396 394 400 384 420 368 408 402 390 422 423 404 426 388 366 406 404 370 410 406 388 426 408 428 410 390 414 376 416 418 394 430 394 396 432 434 400 420 402 408 436 428 390 423 404 438 426 404 406 440 410 440 406 408 426 442 444 410 428 446 414 416 448 418 430 430 394 432 434 420 450 402 436 452 436 408 442 454 428 423 426 438 456 404 440 438 444 440 410 426 456 442 444 428 458 446 460 414 448 430 462 464 418 448 430 432 466 468 434 450 452 436 470 436 442 472 458 428 454 456 438 474 438 440 476 476 440 444 442 456 478 480 444 458 482 460 446 460 484 414 448 462 486 462 430 466 488 464 448 490 468 450 452 470 492 436 494 470 436 472 494 442 478 472 458 454 496 438 476 474 456 474 478 476 444 480 480 458 498 500 460 482 484 502 414 460 504 484 486 462 506 508 448 486 462 466 510 488 448 508 512 468 490 514 452 492 470 516 492 494 518 470 472 520 494 472 478 520 454 522 496 458 496 498 474 476 524 478 474 526 524 476 480 480 498 528 500 530 460 532 502 484 530 504 460 504 532 484 534 486 506 506 462 510 536 508 486 538 512 490 540 452 514 514 492 542 492 516 544 470 546 516 470 518 548 494 550 518 494 520 550 478 526 520 552 496 553 556 498 496 474 524 526 524 480 528 558 528 498 560 530 500 532 553 502 530 562 504 504 564 532 534 506 566 536 486 534 506 510 568 570 508 536 572 512 538 574 540 514 514 542 576 492 544 542 516 578 544 546 580 516 470 548 546 518 582 548 518 550 582 520 526 550 556 496 552 552 553 532 558 498 556 526 524 584 524 528 584 558 586 528 560 588 530 590 560 500 562 564 504 588 562 530 564 552 532 592 534 566 566 506 568 594 536 534 596 570 536 598 572 538 600 540 574 574 514 576 542 544 602 578 516 604 578 606 544 516 580 608 610 580 546 548 610 546 582 610 548 550 584 582 526 584 550 612 556 552 614 558 556 586 584 528 616 586 558 618 588 560 560 590 620 562 622 564 588 624 562 564 612 552 594 534 592 592 566 626 566 568 628 596 536 594 630 570 596 632 572 598 574 576 634 542 602 636 544 638 602 516 608 604 578 604 640 544 606 642 606 578 640 580 644 608 610 616 580 582 586 610 584 586 582 612 614 556 614 616 558 610 586 616 646 588 618 618 560 620 624 622 562 622 612 564 646 624 588 648 594 592 626 566 628 592 626 650 628 568 652 654 596 594 630 596 656 658 572 632 632 598 660 636 602 662 638 664 602 544 642 638 608 666 604 604 668 640 606 670 642 606 640 670 580 616 644 608 644 672 674 614 612 644 616 614 676 646 618 618 620 678 624 680 622 622 674 612 682 624 646 648 592 650 654 594 648 684 626 628 686 650 626 568 688 652 690 628 652 656 596 654 692 630 656 658 694 572 696 658 632 632 660 698 660 598 700 662 702 636 602 704 662 638 706 664 664 704 602 642 708 638 604 666 668 608 672 666 640 668 710 642 670 708 670 640 710 672 644 674 674 644 614 712 646 676 676 618 678 678 620 714 680 674 622 682 680 624 712 682 646 648 650 716 718 654 648 686 626 684 684 628 690 720 650 686 652 688 722 724 690 652 726 656 654 728 692 656 730 694 658 732 658 696 696 632 698 698 660 734 660 700 736 598 738 700 636 702 740 662 742 702 704 744 662 638 708 706 664 706 746 664 746 704 668 666 748 666 672 750 710 668 752 708 670 754 670 710 754 680 672 674 712 676 756 758 676 678 678 714 760 750 680 682 762 682 712 718 648 716 720 716 650 726 654 718 764 686 684 766 684 690 768 720 686 770 652 722 722 688 772 774 690 724 724 652 770 728 656 726 776 692 728 730 778 694 780 730 658 734 660 782 660 736 782 736 700 784 738 786 700 702 788 740 742 790 702 744 742 662 704 792 744 706 708 794 706 794 746 704 746 792 668 748 752 748 666 750 750 672 680 710 752 796 708 754 794 754 710 796 798 712 756 756 676 758 758 678 800 678 760 800 762 750 682 762 712 798 802 718 716 804 716 720 806 726 718 766 764 684 768 686 764 774 766 690 808 720 768 770 722 810 810 722 772 688 812 772 774 724 814 724 770 816 818 728 726 776 728 800 820 778 730 778 822 694 824 730 825 700 828 784 786 828 700 740 788 830 702 790 788 742 832 790 744 834 742 744 792 836 746 794 838 746 838 792 752 748 840 748 750 762 796 752 842 794 754 844 796 844 754 846 798 756 848 756 758 848 758 800 800 760 776 840 762 798 806 718 802 802 716 804 808 804 720 818 726 806 850 764 766 768 764 852 854 766 774 856 808 768 816 770 810 812 858 772 814 724 816 860 774 814 800 728 818 862 820 730 822 864 694 784 828 866 788 868 830 788 790 868 832 870 790 834 832 742 744 836 834 792 838 836 794 844 838 748 762 840 842 752 840 842 872 796 872 844 796 874 798 846 846 756 848 874 840 798 876 806 802 802 804 878 880 804 808 882 818 806 850 766 854 852 764 850 856 768 852 854 774 860 884 808 856 816 810 886 888 858 812 890 814 816 860 814 890 892 818 882 894 820 895 822 898 864 830 868 900 790 902 868 790 870 902 832 904 870 834 906 832 836 908 834 838 910 836 838 844 910 842 840 874 912 872 842 910 844 872 914 915 874 882 806 876 918 802 878 880 878 804 884 880 808 920 921 922 926 927 921 930 856 852 932 922 933 884 856 930 816 886 936 938 890 816 940 933 941 944 892 882 898 946 864 948 949 950 868 954 900 868 902 954 870 956 902 904 958 870 906 904 832 834 908 906 836 910 908 874 912 842 960 872 912 960 910 872 915 912 874 944 882 876 962 918 878 880 964 878 966 880 884 920 922 932 926 921 920 968 927 926 970 930 852 940 932 933 972 884 930 938 816 936 974 941 975 974 940 941 898 978 946 948 980 949 900 954 982 902 984 954 956 984 902 958 956 870 986 958 904 988 904 906 908 988 906 908 910 960 990 960 912 990 912 915 992 944 876 964 962 878 994 918 962 966 964 880 966 884 972 996 968 926 954 930 970 984 972 930 998 938 936 1000 974 975 980 1002 949 978 998 946 1004 1005 996 982 954 970 954 984 930 956 1008 984 958 1010 956 986 1012 958 988 986 904 908 960 988 988 960 990 990 915 1014 1016 964 966 1008 966 972 1005 968 996 1008 972 984 1000 975 1018 998 936 946 980 1020 1002 1020 1018 1002 1010 1008 956 1012 1010 958 1022 986 1014 988 990 986 986 990 1014 1008 1016 966 1020 1000 1018 1010 1016 1008</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"748\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1484\" />\r\n\t\t\t\t\t<p>3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 17 20 21 4 4 21 13 23 15 7 17 5 15 25 9 17 28 29 21 13 21 31 23 7 33 35 17 15 37 25 17 40 41 21 21 41 31 13 31 43 45 23 33 35 15 47 49 17 35 37 17 49 52 53 41 13 43 55 45 33 57 35 47 59 61 49 35 55 43 63 65 45 57 35 59 67 61 35 67 55 63 69 73 74 75 65 57 77 79 61 67 69 63 81 75 74 83 65 77 85 75 83 87 69 81 89 85 77 91 87 83 93 87 93 95 69 89 97 85 91 99 95 93 101 97 89 103 99 91 105 95 101 107 97 103 109 111 99 105 107 101 113 109 103 115 97 109 117 111 105 119 107 113 121 109 115 123 117 109 125 127 111 119 121 113 129 115 131 123 109 123 133 125 109 135 127 119 137 121 129 139 123 131 141 109 133 135 123 141 133 125 135 143 145 127 137 139 129 147 131 149 141 135 133 151 133 141 153 143 135 151 155 125 143 157 145 137 139 147 159 141 149 161 133 153 151 153 141 161 163 143 151 163 155 143 165 145 157 147 167 159 149 169 161 151 153 171 153 161 173 175 163 151 163 177 155 165 157 179 159 167 181 161 169 183 175 151 171 153 173 171 173 161 183 185 155 177 187 165 179 167 189 181 169 191 183 193 175 171 171 173 195 173 183 197 185 177 199 203 187 179 187 203 204 187 204 205 181 189 207 191 209 183 193 171 195 211 175 193 173 197 195 183 209 197 215 187 205 187 215 216 216 215 217 189 219 207 191 221 209 223 193 195 211 193 225 211 227 175 195 197 229 197 209 231 216 233 187 189 235 219 191 238 239 191 239 221 209 221 241 223 195 229 225 193 223 243 211 225 245 227 211 197 231 229 209 241 231 247 233 216 235 249 219 238 251 239 239 253 221 221 253 241 255 223 229 257 225 223 259 243 225 245 211 243 245 261 227 229 231 263 231 241 265 267 233 247 235 269 249 238 271 251 251 273 239 239 275 253 241 253 277 255 229 263 257 223 255 259 225 257 279 243 259 281 245 243 283 261 245 231 265 263 241 277 265 285 267 247 271 287 251 239 273 275 251 289 273 275 291 253 253 291 277 293 255 263 295 257 255 297 259 257 279 259 299 281 243 279 281 283 245 283 301 261 303 263 265 265 277 305 285 307 267 287 309 251 273 311 275 251 309 289 289 313 273 275 311 291 277 291 315 293 263 303 255 293 295 297 257 295 299 259 297 317 281 279 319 283 281 321 301 283 303 265 305 305 277 315 323 307 285 287 325 309 273 313 311 309 327 289 289 329 313 291 311 331 291 331 315 333 293 303 293 335 295 297 295 337 299 297 339 341 281 317 319 281 341 321 283 319 343 301 321 345 303 305 305 315 347 323 349 307 325 351 309 313 353 311 289 327 329 309 351 327 329 355 313 311 353 331 333 303 357 293 333 335 337 295 335 339 297 337 359 321 319 361 343 321 345 305 347 349 323 363 325 365 351 313 355 353 327 367 329 351 369 327 329 371 355 373 333 357 333 375 335 377 337 335 379 339 337 359 361 321 381 343 361 383 345 347 349 363 385 365 369 351 355 387 353 327 389 367 329 367 371 369 389 327 371 391 355 393 373 357 333 373 375 377 335 375 379 337 377 395 361 359 397 381 361 393 357 399 385 363 401 365 403 369 355 391 387 389 405 367 367 407 371 369 409 389 371 411 391 373 393 413 373 413 375 377 375 415 417 379 377 419 395 359 395 397 361 421 385 401 403 409 369 424 425 391 389 427 405 405 407 367 407 411 371 409 427 389 391 411 429 417 377 415 431 395 419 433 397 395 421 401 435 437 409 403 424 391 429 427 439 405 441 407 405 407 441 411 443 427 409 429 411 445 417 415 447 431 419 449 433 395 431 451 421 435 453 437 403 443 409 437 424 429 455 457 439 427 439 441 405 411 441 445 443 457 427 459 429 445 415 461 447 463 431 449 449 419 465 467 433 431 451 435 469 471 437 453 473 443 437 455 429 459 475 439 457 477 441 439 445 441 477 479 457 443 459 445 481 447 461 483 415 485 461 487 463 449 467 431 463 449 465 489 451 469 491 493 471 453 471 495 437 495 473 437 473 479 443 497 455 459 475 477 439 479 475 457 481 445 477 499 459 481 483 461 501 415 503 485 485 505 461 507 463 487 487 449 509 511 467 463 509 449 489 491 469 513 493 453 515 493 517 471 471 519 495 495 521 473 521 479 473 497 523 455 499 497 459 525 477 475 527 475 479 481 477 525 529 499 481 461 531 501 485 503 533 461 505 531 485 533 505 507 487 535 511 463 507 487 509 537 491 513 539 515 453 541 543 493 515 545 517 493 517 547 471 549 519 471 519 551 495 551 521 495 521 527 479 554 497 555 497 499 557 527 525 475 529 481 525 499 529 559 501 531 561 503 554 533 505 563 531 533 565 505 567 507 535 535 487 537 569 511 507 537 509 571 539 513 573 515 541 575 577 543 515 543 545 493 545 579 517 517 581 547 547 549 471 549 583 519 583 551 519 551 527 521 555 497 557 533 554 555 557 499 559 585 525 527 585 529 525 529 587 559 531 589 561 501 561 591 505 565 563 531 563 589 533 555 565 567 535 593 569 507 567 535 537 595 537 571 597 539 573 599 575 541 601 577 515 575 603 545 543 605 517 579 545 607 579 609 581 517 547 581 611 547 611 549 549 611 583 583 585 551 551 585 527 555 557 613 557 559 615 529 585 587 559 587 617 561 589 619 621 591 561 565 623 563 563 625 589 555 613 565 593 535 595 627 567 593 629 569 567 595 537 597 597 571 631 599 573 633 635 577 575 637 603 543 603 639 545 605 609 517 641 605 579 643 607 545 641 579 607 609 645 581 581 617 611 611 587 583 583 587 585 557 615 613 559 617 615 617 587 611 619 589 647 621 561 619 563 623 625 565 613 623 589 625 647 593 595 649 629 567 627 651 627 593 653 569 629 595 597 655 657 597 631 633 573 659 661 599 633 663 603 637 603 665 639 639 643 545 605 667 609 641 669 605 643 671 607 671 641 607 645 617 581 673 645 609 613 615 675 615 617 645 619 647 677 679 621 619 623 681 625 613 675 623 647 625 683 651 593 649 649 595 655 629 627 685 627 651 687 653 689 569 653 629 691 655 597 657 657 631 693 573 695 659 633 659 697 699 661 633 701 599 661 637 703 663 663 705 603 665 707 639 603 705 665 639 709 643 669 667 605 667 673 609 711 669 641 709 671 643 711 641 671 675 645 673 615 645 675 677 647 713 679 619 677 715 621 679 623 675 681 625 681 683 647 683 713 717 651 649 649 655 719 685 627 687 691 629 685 687 651 721 723 689 653 653 691 725 655 657 727 657 693 729 659 695 731 697 659 733 699 633 697 735 661 699 737 701 661 701 739 599 741 703 637 703 743 663 663 745 705 707 709 639 747 707 665 705 747 665 749 667 669 751 673 667 753 669 711 755 671 709 755 711 671 675 673 681 757 677 713 679 677 759 761 715 679 683 681 751 713 683 763 717 649 719 651 717 721 719 655 727 685 687 765 691 685 767 687 721 769 723 653 771 773 689 723 725 691 775 771 653 725 727 657 729 729 693 777 695 779 731 659 731 781 783 661 735 783 737 661 785 701 737 701 787 739 741 789 703 703 791 743 663 743 745 745 793 705 795 709 707 747 795 707 793 747 705 753 749 669 751 667 749 681 673 751 797 753 711 795 755 709 797 711 755 757 713 799 759 677 757 801 679 759 801 761 679 683 751 763 799 713 763 717 719 803 721 717 805 719 727 807 685 765 767 765 687 769 691 767 775 769 721 809 811 723 771 773 723 811 773 813 689 815 725 775 817 771 725 727 729 819 801 729 777 731 779 821 695 823 779 826 731 827 785 829 701 701 829 787 831 789 741 789 791 703 791 833 743 743 835 745 837 793 745 839 795 747 793 839 747 841 749 753 763 751 749 843 753 797 845 755 795 755 845 797 757 799 847 759 757 849 801 759 849 777 761 801 799 763 841 803 719 807 805 717 803 721 805 809 807 727 819 767 765 851 853 765 769 775 767 855 769 809 857 811 771 817 773 859 813 817 725 815 815 775 861 819 729 801 731 821 863 695 865 823 867 829 785 831 869 789 869 791 789 791 871 833 743 833 835 835 837 745 837 839 793 839 845 795 841 763 749 841 753 843 797 873 843 797 845 873 847 799 875 849 757 847 799 841 875 803 807 877 879 805 803 809 805 881 807 819 883 855 767 851 851 765 853 853 769 857 861 775 855 857 809 885 887 811 817 813 859 889 817 815 891 891 815 861 883 819 893 896 821 897 865 899 823 901 869 831 869 903 791 903 871 791 871 905 833 833 907 835 835 909 837 837 911 839 911 845 839 875 841 843 843 873 913 873 845 911 875 916 917 877 807 883 879 803 919 805 879 881 809 881 885 923 924 925 924 928 929 853 857 931 934 923 935 931 857 885 937 887 817 817 891 939 942 934 943 883 893 945 865 947 899 951 952 953 901 955 869 955 903 869 903 957 871 871 959 905 833 905 907 907 909 835 909 911 837 843 913 875 913 873 961 873 911 961 875 913 916 877 883 945 879 919 963 879 965 881 885 881 967 935 923 925 925 924 929 929 928 969 853 931 971 934 935 943 931 885 973 937 817 939 976 942 977 942 943 977 947 979 899 952 981 953 983 955 901 955 985 903 903 985 957 871 957 959 905 959 987 907 905 989 907 989 909 961 911 909 913 961 991 916 913 991 877 945 993 879 963 965 963 919 995 881 965 967 973 885 967 929 969 997 971 931 955 931 973 985 937 939 999 976 977 1001 952 1003 981 947 999 979 997 1006 1007 971 955 983 931 985 955 985 1009 957 957 1011 959 959 1013 987 905 987 989 989 961 909 991 961 989 1015 916 991 967 965 1017 973 967 1009 997 969 1006 985 973 1009 1019 976 1001 947 937 999 1003 1021 981 1003 1019 1021 957 1009 1011 959 1011 1013 1015 987 1023 987 991 989 1015 991 987 967 1017 1009 1019 1001 1021 1009 1017 1011</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1487\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1488\">\r\n\t\t\t\t\t<float_array count=\"3360\" id=\"ID1491\">-0.4284909069538117 1.845905065536499 -0.3419413566589356 -0.4284909069538117 1.778753757476807 -0.3575156927108765 -0.2499992847442627 1.845905065536499 -0.3415195643901825 -0.2499992847442627 1.845905065536499 -0.3415195643901825 -0.4284909069538117 1.778753757476807 -0.3575156927108765 -0.4284909069538117 1.845905065536499 -0.3419413566589356 -0.492791086435318 1.735238432884216 -0.341511458158493 -0.492791086435318 1.735238432884216 -0.341511458158493 -0.2530297040939331 1.885210990905762 -0.2984420955181122 -0.2530297040939331 1.885210990905762 -0.2984420955181122 -0.2518970370292664 1.778753757476807 -0.3580342233181 -0.2518970370292664 1.778753757476807 -0.3580342233181 -0.5439662933349609 1.630160927772522 -0.3612952828407288 -0.5439662933349609 1.630160927772522 -0.3612952828407288 -0.4274950623512268 1.892464756965637 -0.2981753945350647 -0.4274950623512268 1.892464756965637 -0.2981753945350647 -0.001449317671358585 1.893650889396668 -0.2984420955181122 -0.001449317671358585 1.893650889396668 -0.2984420955181122 -0.001449317671358585 1.840989470481873 -0.3415195643901825 -0.001449317671358585 1.840989470481873 -0.3415195643901825 -0.5402756929397583 1.730631828308106 -0.05429454147815704 -0.5402756929397583 1.730631828308106 -0.05429454147815704 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.001449317671358585 1.903719186782837 -0.2660267651081085 -0.001449317671358585 1.903719186782837 -0.2660267651081085 -0.2510687708854675 1.897168397903442 -0.2660267651081085 -0.2510687708854675 1.897168397903442 -0.2660267651081085 -0.001449317671358585 1.790218114852905 -0.3580342829227448 -0.001449317671358585 1.790218114852905 -0.3580342829227448 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4942575693130493 1.810338735580444 -0.1560795605182648 -0.4942575693130493 1.810338735580444 -0.1560795605182648 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.4262329339981079 1.900443553924561 -0.2676746845245361 0.2471002340316773 1.845904111862183 -0.3415195643901825 0.2471002340316773 1.845904111862183 -0.3415195643901825 0.2501309812068939 1.885210514068604 -0.2984420955181122 0.2501309812068939 1.885210514068604 -0.2984420955181122 0.2489985525608063 1.778753399848938 -0.3580342829227448 0.2489985525608063 1.778753399848938 -0.3580342829227448 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.5022329092025757 1.826841831207275 0.03412822261452675 -0.5022329092025757 1.826841831207275 0.03412822261452675 -0.5121397972106934 1.815709233283997 -0.1209307163953781 -0.5121397972106934 1.815709233283997 -0.1209307163953781 -0.4660681784152985 1.811052560806274 -0.1879515945911408 -0.4660681784152985 1.811052560806274 -0.1879515945911408 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.253710150718689 1.913546323776245 -0.1969181150197983 0.248169869184494 1.897167801856995 -0.2660267651081085 0.248169869184494 1.897167801856995 -0.2660267651081085 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.001449317671358585 1.915921688079834 -0.1955144852399826 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 -0.001449264585971832 1.536692500114441 -0.3334604203701019 -0.001449264585971832 1.536692500114441 -0.3334604203701019 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.4583899974822998 1.827001571655273 0.05228543654084206 -0.4583899974822998 1.827001571655273 0.05228543654084206 -0.5234936475753784 1.823414206504822 0.00754820927977562 -0.5234936475753784 1.823414206504822 0.00754820927977562 -0.5227372050285339 1.817952036857605 -0.07677430659532547 -0.5227372050285339 1.817952036857605 -0.07677430659532547 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4287169277667999 1.813359618186951 -0.1959136426448822 0.425592303276062 1.778753399848938 -0.3575156927108765 0.425592303276062 1.778753399848938 -0.3575156927108765 0.425592303276062 1.845904111862183 -0.3419413566589356 0.425592303276062 1.845904111862183 -0.3419413566589356 0.424596518278122 1.892464280128479 -0.2981753945350647 0.424596518278122 1.892464280128479 -0.2981753945350647 0.5410676598548889 1.630160927772522 -0.3612952828407288 0.5410676598548889 1.630160927772522 -0.3612952828407288 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.5042721629142761 1.629883885383606 0.1692219376564026 -0.5042721629142761 1.629883885383606 0.1692219376564026 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.531063973903656 1.821377754211426 -0.03405506536364555 -0.531063973903656 1.821377754211426 -0.03405506536364555 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.5112505555152893 1.913546323776245 -0.1217374056577683 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.5500150322914124 1.538213133811951 -0.362256646156311 0.5500150322914124 1.538213133811951 -0.362256646156311 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4982104897499085 1.831614017486572 0.1618779003620148 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4982104897499085 1.831614017486572 0.1618779003620148 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.4839866459369659 1.627110838890076 0.1684880554676056 -0.4839866459369659 1.627110838890076 0.1684880554676056 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.5210548639297485 1.913546323776245 -0.07925551384687424 0.4898924827575684 1.735237956047058 -0.341511458158493 0.4898924827575684 1.735237956047058 -0.341511458158493 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.5500150322914124 1.538213133811951 -0.362256646156311 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5500150322914124 1.538213133811951 -0.362256646156311 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.1436953097581863 1.441868185997009 -0.2887334525585175 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.5120450258255005 1.535624384880066 0.1684880554676056 -0.5120450258255005 1.535624384880066 0.1684880554676056 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.3280232548713684 1.530326366424561 -0.02723223529756069 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.3280232548713684 1.530326366424561 -0.02723223529756069 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.3179892599582672 1.440020799636841 -0.02723223529756069 -0.3179892599582672 1.440020799636841 -0.02723223529756069 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.4811488389968872 1.900608420372009 0.1218080669641495 -0.4811488389968872 1.900608420372009 0.1218080669641495 -0.3965325653553009 1.825424194335938 0.07977844774723053 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3965325653553009 1.825424194335938 0.07977844774723053 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3392848372459412 1.63602614402771 -0.02723223529756069 -0.3392848372459412 1.63602614402771 -0.02723223529756069 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 0.5373769402503967 1.730631828308106 -0.05429454147815704 0.5373769402503967 1.730631828308106 -0.05429454147815704 0.425817996263504 1.813359618186951 -0.1959136426448822 0.425817996263504 1.813359618186951 -0.1959136426448822 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5607179403305054 1.441428422927856 -0.371430516242981 0.5607179403305054 1.441428422927856 -0.371430516242981 0.174921989440918 1.441850662231445 -0.06437790393829346 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.174921989440918 1.441850662231445 -0.06437790393829346 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.146251991391182 1.636475563049316 -0.2887333929538727 -0.146251991391182 1.636475563049316 -0.2887333929538727 -0.3129720091819763 1.329645752906799 -0.02723223529756069 -0.3129720091819763 1.329645752906799 -0.02723223529756069 -0.001449264585971832 1.800307512283325 -0.2640757858753204 -0.001449264585971832 1.800307512283325 -0.2640757858753204 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.4740534126758575 1.535303473472595 0.1684880554676056 -0.4740534126758575 1.535303473472595 0.1684880554676056 0.4913583993911743 1.810338258743286 -0.1560795605182648 0.4913583993911743 1.810338258743286 -0.1560795605182648 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.425817996263504 1.813359618186951 -0.1959136426448822 0.463169276714325 1.811052083969116 -0.1879515945911408 0.463169276714325 1.811052083969116 -0.1879515945911408 0.425817996263504 1.813359618186951 -0.1959136426448822 0.5607179403305054 1.441428422927856 -0.371430516242981 0.5607179403305054 1.441428422927856 -0.371430516242981 0.501373291015625 1.629883170127869 0.1692219376564026 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5520590543746948 1.631603479385376 0.1968967169523239 0.501373291015625 1.629883170127869 0.1692219376564026 0.4799154102802277 1.733479738235474 0.1646009534597397 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4799154102802277 1.733479738235474 0.1646009534597397 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.332428932189941 -0.06246279180049896 0.174921989440918 1.332428932189941 -0.06246279180049896 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5218863487243652 1.436050415039063 0.1684880554676056 -0.5218863487243652 1.436050415039063 0.1684880554676056 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.4668075442314148 1.436590313911438 0.1684880554676056 -0.4668075442314148 1.436590313911438 0.1684880554676056 -0.001449264585971832 1.825429081916809 0.07037267088890076 -0.001449264585971832 1.825429081916809 0.07037267088890076 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 0.499333918094635 1.826841831207275 0.03412822261452675 0.499333918094635 1.826841831207275 0.03412822261452675 0.5092408657073975 1.815709233283997 -0.1209307163953781 0.5092408657073975 1.815709233283997 -0.1209307163953781 0.425817996263504 1.813359618186951 -0.1959136426448822 0.425817996263504 1.813359618186951 -0.1959136426448822 0.57486492395401 1.437644124031067 0.2137537151575089 0.57486492395401 1.437644124031067 0.2137537151575089 0.5091465711593628 1.535624027252197 0.1684880554676056 0.5091465711593628 1.535624027252197 0.1684880554676056 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.174921989440918 1.635286450386047 -0.06640081107616425 0.174921989440918 1.635286450386047 -0.06640081107616425 0.174921989440918 1.441850662231445 -0.06437790393829346 0.174921989440918 1.537016987800598 -0.06437790393829346 0.3251246511936188 1.530326366424561 -0.02723223529756069 0.3251246511936188 1.530326366424561 -0.02723223529756069 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.441850662231445 -0.06437790393829346 0.174921989440918 1.332428932189941 -0.06246279180049896 0.31509068608284 1.440020322799683 -0.02723223529756069 0.31509068608284 1.440020322799683 -0.02723223529756069 0.174921989440918 1.332428932189941 -0.06246279180049896 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.3129720091819763 1.236830115318298 -0.02777358889579773 -0.3129720091819763 1.236830115318298 -0.02777358889579773 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.4615717530250549 1.331655025482178 0.1681370437145233 -0.4615717530250549 1.331655025482178 0.1681370437145233 0.3936337828636169 1.825424194335938 0.07977844774723053 0.3936337828636169 1.825424194335938 0.07977844774723053 -0.001449317671358585 1.738980174064636 -0.3044333755970001 -0.001449317671358585 1.738980174064636 -0.3044333755970001 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.001449317671358585 1.847941994667053 0.08541373908519745 0.4554912447929382 1.827001571655273 0.05228543654084206 0.4554912447929382 1.827001571655273 0.05228543654084206 0.5205953121185303 1.823413729667664 0.00754820927977562 0.5205953121185303 1.823413729667664 0.00754820927977562 0.5198380947113037 1.817951560020447 -0.07677430659532547 0.5198380947113037 1.817951560020447 -0.07677430659532547 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.57486492395401 1.437644124031067 0.2137537151575089 0.57486492395401 1.437644124031067 0.2137537151575089 0.4810881018638611 1.627110362052918 0.1684880554676056 0.4810881018638611 1.627110362052918 0.1684880554676056 0.4953119158744812 1.831613540649414 0.1618779003620148 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4953119158744812 1.831613540649414 0.1618779003620148 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.174921989440918 1.238158345222473 -0.06665239483118057 0.174921989440918 1.238158345222473 -0.06665239483118057 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.174921989440918 1.635286450386047 -0.06640081107616425 0.3363863527774811 1.636025667190552 -0.02723223529756069 0.3363863527774811 1.636025667190552 -0.02723223529756069 0.174921989440918 1.635286450386047 -0.06640081107616425 0.1433530896902084 1.636475563049316 -0.2887334525585175 0.1433530896902084 1.636475563049316 -0.2887334525585175 0.3100736141204834 1.329645752906799 -0.02723223529756069 0.3100736141204834 1.329645752906799 -0.02723223529756069 -0.59349524974823 1.231308460235596 0.211546465754509 -0.59349524974823 1.231308460235596 0.211546465754509 -0.5315014719963074 1.332691550254822 0.1684880554676056 -0.5315014719963074 1.332691550254822 0.1684880554676056 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 0.391455739736557 1.843269467353821 0.09250524640083313 0.391455739736557 1.843269467353821 0.09250524640083313 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.4959137439727783 1.913545846939087 0.03620735183358192 0.4959137439727783 1.913545846939087 0.03620735183358192 0.528164803981781 1.821377277374268 -0.03405506536364555 0.528164803981781 1.821377277374268 -0.03405506536364555 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5189875960350037 1.436050415039063 0.1684880554676056 0.5189875960350037 1.436050415039063 0.1684880554676056 0.4711544513702393 1.535303473472595 0.1684880554676056 0.4711544513702393 1.535303473472595 0.1684880554676056 0.47825026512146 1.900608062744141 0.1218080669641495 0.47825026512146 1.900608062744141 0.1218080669641495 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.4799154102802277 1.733479738235474 0.1646009534597397 0.4799154102802277 1.733479738235474 0.1646009534597397 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.174921989440918 1.238158345222473 -0.06665239483118057 0.174921989440918 1.238158345222473 -0.06665239483118057 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.4639089703559876 1.436590313911438 0.1684880554676056 0.4639089703559876 1.436590313911438 0.1684880554676056 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.59349524974823 1.231308460235596 0.211546465754509 -0.59349524974823 1.231308460235596 0.211546465754509 -0.4589178562164307 1.23185932636261 0.1681370437145233 -0.4589178562164307 1.23185932636261 0.1681370437145233 -0.3018067181110382 1.0907301902771 -0.02723223529756069 -0.3018067181110382 1.0907301902771 -0.02723223529756069 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.002916331402957439 1.098329663276672 -0.2887333929538727 -0.002916331402957439 1.098329663276672 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.536308765411377 1.230878353118897 0.1681370437145233 -0.536308765411377 1.230878353118897 0.1681370437145233 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5822999477386475 1.338033080101013 0.2104835957288742 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.097799062728882 -0.06455764919519424 0.174921989440918 1.097799062728882 -0.06455764919519424 0.3100736141204834 1.236830115318298 -0.02777358889579773 0.3100736141204834 1.236830115318298 -0.02777358889579773 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.4586731791496277 1.331655025482178 0.1681370437145233 0.4586731791496277 1.331655025482178 0.1681370437145233 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.001449264585971832 0.9224953055381775 -0.4125895202159882 -0.001449264585971832 0.9224953055381775 -0.4125895202159882 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.5905963182449341 1.231308460235596 0.211546465754509 0.5905963182449341 1.231308460235596 0.211546465754509 0.5286024808883667 1.332691550254822 0.1684880554676056 0.5286024808883667 1.332691550254822 0.1684880554676056 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.174921989440918 1.097799062728882 -0.06455764919519424 0.174921989440918 1.097799062728882 -0.06455764919519424 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.4476439952850342 1.085452318191528 0.1687992811203003 -0.4476439952850342 1.085452318191528 0.1687992811203003 -0.5506917834281921 1.079741597175598 0.1681370437145233 -0.5506917834281921 1.079741597175598 0.1681370437145233 -0.2962236702442169 0.9798537492752075 -0.02685293555259705 -0.2962236702442169 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.406062126159668 0.9056558609008789 -0.4102611839771271 -0.406062126159668 0.9056558609008789 -0.4102611839771271 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.1434928178787231 1.029773592948914 -0.290567547082901 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.5905963182449341 1.231308460235596 0.211546465754509 0.5905963182449341 1.231308460235596 0.211546465754509 0.174921989440918 1.021738171577454 -0.06246279180049896 0.174921989440918 1.021738171577454 -0.06246279180049896 0.2989078760147095 1.0907301902771 -0.02723223529756069 0.2989078760147095 1.0907301902771 -0.02723223529756069 0.4560191333293915 1.23185932636261 0.1681370437145233 0.4560191333293915 1.23185932636261 0.1681370437145233 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 1.764297485351563e-005 1.098328948020935 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 1.764297485351563e-005 1.098328948020935 -0.2887334525585175 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.5334103107452393 1.230877995491028 0.1681370437145233 0.5334103107452393 1.230877995491028 0.1681370437145233 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.001449264585971832 0.4225348234176636 -0.4125895202159882 -0.001449264585971832 0.4225348234176636 -0.4125895202159882 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.4369345605373383 0.8832268714904785 0.1687992811203003 -0.4369345605373383 0.8832268714904785 0.1687992811203003 -0.001449264585971832 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 0.9798537492752075 -0.02685293555259705 0.59018474817276 1.083053469657898 0.2102400213479996 0.59018474817276 1.083053469657898 0.2102400213479996 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.174921989440918 1.021738171577454 -0.06246279180049896 0.174921989440918 1.021738171577454 -0.06246279180049896 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.2021754086017609 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.5537700057029724 0.8805091977119446 0.1687992811203003 -0.5537700057029724 0.8805091977119446 0.1687992811203003 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.4031637907028198 0.9056558609008789 -0.4102611839771271 0.4031637907028198 0.9056558609008789 -0.4102611839771271 -0.3065129816532135 0.8859434127807617 0.1687992811203003 -0.3065129816532135 0.8859434127807617 0.1687992811203003 0.6102513670921326 0.878864586353302 -0.178733304142952 0.6102513670921326 0.878864586353302 -0.178733304142952 0.59018474817276 1.083053469657898 0.2102400213479996 0.59018474817276 1.083053469657898 0.2102400213479996 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.2933250367641449 0.9798537492752075 -0.02685293555259705 0.2933250367641449 0.9798537492752075 -0.02685293555259705 0.4447450339794159 1.085452318191528 0.1687992811203003 0.4447450339794159 1.085452318191528 0.1687992811203003 0.5477932691574097 1.079741597175598 0.1681370437145233 0.5477932691574097 1.079741597175598 0.1681370437145233 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.7692805528640747 0.9785095453262329 -0.3779011070728302 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7665115594863892 0.9050183892250061 -0.4102611839771271 -0.4568682312965393 0.7821235656738281 0.1939517259597778 -0.4568682312965393 0.7821235656738281 0.1939517259597778 0.3036143779754639 0.8859434127807617 0.1687992811203003 0.3036143779754639 0.8859434127807617 0.1687992811203003 -0.001449317671358585 0.8832268714904785 0.1687992811203003 -0.001449317671358585 0.8832268714904785 0.1687992811203003 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.6102513670921326 0.878864586353302 -0.178733304142952 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.6102513670921326 0.878864586353302 -0.178733304142952 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.4340358078479767 0.8832268714904785 0.1687992811203003 0.4340358078479767 0.8832268714904785 0.1687992811203003 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.5659343004226685 0.7770506739616394 0.1939517259597778 -0.5659343004226685 0.7770506739616394 0.1939517259597778 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 -0.3224376142024994 0.7821235656738281 0.1939517259597778 -0.3224376142024994 0.7821235656738281 0.1939517259597778 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.5508714914321899 0.8805091977119446 0.1687992811203003 0.5508714914321899 0.8805091977119446 0.1687992811203003 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.001449264585971832 -0.4657838642597199 -0.401268482208252 -0.001449264585971832 -0.4657838642597199 -0.401268482208252 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 -0.4873052835464478 0.6395153403282166 0.2242447286844254 -0.4873052835464478 0.6395153403282166 0.2242447286844254 -0.5904378294944763 0.6395494937896729 0.2237000018358231 -0.5904378294944763 0.6395494937896729 0.2237000018358231 0.3195390701293945 0.7821230292320252 0.1939517259597778 0.3195390701293945 0.7821230292320252 0.1939517259597778 0.4539692401885986 0.7821230292320252 0.1939517259597778 0.4539692401885986 0.7821230292320252 0.1939517259597778 -0.001449317671358585 0.7846598029136658 0.1939517259597778 -0.001449317671358585 0.7846598029136658 0.1939517259597778 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.620998740196228 0.7615718245506287 -0.2084415704011917 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.3351199328899384 0.6414915919303894 0.2242447286844254 -0.3351199328899384 0.6414915919303894 0.2242447286844254 -0.5904378294944763 0.6395494937896729 0.2237000018358231 -0.5904378294944763 0.6395494937896729 0.2237000018358231 0.5630353093147278 0.7770506739616394 0.1939517259597778 0.5630353093147278 0.7770506739616394 0.1939517259597778 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7813732028007507 0.6196871995925903 -0.2350356727838516 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 0.3322211503982544 0.6414915919303894 0.2242447286844254 0.3322211503982544 0.6414915919303894 0.2242447286844254 0.484406590461731 0.6395153403282166 0.2242447286844254 0.484406590461731 0.6395153403282166 0.2242447286844254 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.5875386595726013 0.6395494937896729 0.2237000018358231 -0.001449317671358585 0.64403235912323 0.2242447286844254 -0.001449317671358585 0.64403235912323 0.2242447286844254 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6330281496047974 0.6197859644889832 -0.2311255186796188 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.001449264585971832 -0.7595747113227844 -0.3996257781982422 -0.001449264585971832 -0.7595747113227844 -0.3996257781982422 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4915523529052734 -0.7594550848007202 -0.401268482208252 -0.3487512469291687 0.4234864413738251 0.2671858966350555 -0.3487512469291687 0.4234864413738251 0.2671858966350555 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.7780932784080505 0.4214316308498383 -0.2512775957584381 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 -0.3487512469291687 0.4234864413738251 0.2671858966350555 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.3487512469291687 0.4234864413738251 0.2671858966350555 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 -0.001449264585971832 0.4234864413738251 0.2770070433616638 -0.001449264585971832 0.4234864413738251 0.2770070433616638 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.6541249752044678 0.4215267300605774 -0.2490309327840805 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.4983565807342529 -1.144771337509155 -0.05335938557982445 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4983565807342529 -1.144771337509155 -0.05335938557982445 -0.001449264585971832 -0.994135320186615 -0.3598018288612366 -0.001449264585971832 -0.994135320186615 -0.3598018288612366 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.354899525642395 0.4234864413738251 0.4407898485660553 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 -0.001449264585971832 0.4234864413738251 0.2770070433616638 -0.001449264585971832 0.4234864413738251 0.2770070433616638 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.6541249752044678 0.4215267300605774 -0.2490309327840805 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4954578280448914 -1.144771337509155 -0.05335938557982445 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4954578280448914 -1.144771337509155 -0.05335938557982445 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6173088550567627 0.4206523001194 0.2673260569572449 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.001449317671358585 0.4255315661430359 0.4577548205852509 0.7970438599586487 0.4232206344604492 -0.1200132966041565 0.7970438599586487 0.4232206344604492 -0.1200132966041565 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.6885963678359985 0.4193951189517975 0.3593906462192535 0.6885963678359985 0.4193951189517975 0.3593906462192535 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.7982441186904907 0.4255830943584442 0.01974329724907875 0.7982441186904907 0.4255830943584442 0.01974329724907875 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.4872207045555115 -1.537930369377136 -0.2763937413692474 -0.4872207045555115 -1.537930369377136 -0.2763937413692474 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7870740294456482 0.4261996150016785 0.1537329405546188 0.7870740294456482 0.4261996150016785 0.1537329405546188 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 0.4843221306800842 -1.537930369377136 -0.2763938009738922 0.4843221306800842 -1.537930369377136 -0.2763938009738922 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.7695745229721069 0.423301488161087 0.2328356057405472 0.7695745229721069 0.423301488161087 0.2328356057405472 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.7468852996826172 0.4189915955066681 0.2977039515972138 0.7468852996826172 0.4189915955066681 0.2977039515972138 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5133307576179504 -1.001767039299011 0.1643165051937103 -0.5133307576179504 -1.001767039299011 0.1643165051937103 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5133307576179504 -1.001767039299011 0.1643165051937103 -0.5133307576179504 -1.001767039299011 0.1643165051937103 0.523284912109375 -1.491312742233276 -0.023659847676754 0.523284912109375 -1.491312742233276 -0.023659847676754 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5104317665100098 -1.001767039299011 0.1643165051937103 0.5104317665100098 -1.001767039299011 0.1643165051937103 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.5102030634880066 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.491312742233276 -0.023659847676754 0.523284912109375 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.440359592437744 0.05794682726264 0.523284912109375 -1.440359592437744 0.05794682726264 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5104317665100098 -1.001767039299011 0.1643165051937103 0.5104317665100098 -1.001767039299011 0.1643165051937103 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.523284912109375 -1.440359592437744 0.05794682726264 0.523284912109375 -1.440359592437744 0.05794682726264 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7923230528831482 -1.368424773216248 0.1249729543924332</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1120\" source=\"#ID1491\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1489\">\r\n\t\t\t\t\t<float_array count=\"3360\" id=\"ID1492\">-0.3624737800293703 0.4859647467451019 -0.7952678943049244 -0.1545443154350269 0.1639940879950334 -0.9742802439079815 -0.003853141030227453 0.5060249083727283 -0.8625102581480253 0.003853141030227453 -0.5060249083727283 0.8625102581480253 0.1545443154350269 -0.1639940879950334 0.9742802439079815 0.3624737800293703 -0.4859647467451019 0.7952678943049244 -0.7324920660122415 0.457917387625513 -0.5037529546705845 0.7324920660122415 -0.457917387625513 0.5037529546705845 -0.0004069113151989066 0.8510737583644934 -0.5250459906013161 0.0004069113151989066 -0.8510737583644934 0.5250459906013161 0.03299238499774464 0.01579987216850699 -0.9993307093107963 -0.03299238499774464 -0.01579987216850699 0.9993307093107963 -0.6599367575566504 0.1574799509539804 -0.7346315682525131 0.6599367575566504 -0.1574799509539804 0.7346315682525131 -0.4825950502217278 0.7718517995669966 -0.41394059598773 0.4825950502217278 -0.7718517995669966 0.41394059598773 1.071540052998343e-006 0.8368601856344831 -0.5474166874499445 -1.071540052998343e-006 -0.8368601856344831 0.5474166874499445 6.813683993455388e-007 0.4721141919303452 -0.8815374012357574 -6.813683993455388e-007 -0.4721141919303452 0.8815374012357574 -0.9974871553865196 0.06924404581483046 -0.01498789371802915 0.9974871553865196 -0.06924404581483046 0.01498789371802915 -0.9711284224999425 0.2245742194279648 0.08047364152996804 0.9711284224999425 -0.2245742194279648 -0.08047364152996804 1.061019862232905e-006 0.9717634124067937 -0.2359573484898874 -1.061019862232905e-006 -0.9717634124067937 0.2359573484898874 0.004512754540973932 0.9589012500145845 -0.2837041201091738 -0.004512754540973932 -0.9589012500145845 0.2837041201091738 -7.330408345447807e-008 0.05702732137435288 -0.998372618122543 7.330408345447807e-008 -0.05702732137435288 0.998372618122543 0.03150240910259435 -0.120950970924864 -0.9921584857536954 -0.03150240910259435 0.120950970924864 0.9921584857536954 -0.9385416613712174 0.3443531983703549 0.02367328964597491 0.9385416613712174 -0.3443531983703549 -0.02367328964597491 -0.8761981556018987 0.2259556718250015 -0.425700395219388 0.8761981556018987 -0.2259556718250015 0.425700395219388 -0.9664102261534006 0.1792971905669148 0.1841298244200134 0.9664102261534006 -0.1792971905669148 -0.1841298244200134 0.009571043662882323 0.9761844930476938 -0.2167307792087227 -0.009571043662882323 -0.9761844930476938 0.2167307792087227 0.003853817547659413 0.5060234076335159 -0.862511135590303 -0.003853817547659413 -0.5060234076335159 0.862511135590303 0.0004077021893716645 0.851072916055885 -0.5250473553262195 -0.0004077021893716645 -0.851072916055885 0.5250473553262195 -0.03299219064653936 0.01580101445099036 -0.9993306976665243 0.03299219064653936 -0.01580101445099036 0.9993306976665243 0.1854924483388497 0.0297144551440979 -0.9821963157967701 -0.1854924483388497 -0.0297144551440979 0.9821963157967701 -0.9827438492098397 0.1835206260197056 -0.02312372516623031 0.9827438492098397 -0.1835206260197056 0.02312372516623031 -0.7396135861098553 0.2706010337434902 0.6162360130491191 0.7396135861098553 -0.2706010337434902 -0.6162360130491191 -0.929203404900106 0.004851496540596717 -0.3695368659597662 0.929203404900106 -0.004851496540596717 0.3695368659597662 -0.4572957004858343 0.5678939809349656 -0.684380792201978 0.4572957004858343 -0.5678939809349656 0.684380792201978 -0.9996755617097963 0.02513946843080167 -0.004096150292636169 0.9996755617097963 -0.02513946843080167 0.004096150292636169 -0.1444513541761632 0.8970155625046075 -0.4177282452758196 0.1444513541761632 -0.8970155625046075 0.4177282452758196 -0.0003142089705117116 0.844635117266066 -0.5353423390258441 0.0003142089705117116 -0.844635117266066 0.5353423390258441 -0.004511777179443033 0.9589014785861503 -0.2837033630959952 0.004511777179443033 -0.9589014785861503 0.2837033630959952 9.386065420688752e-007 0.8779194969412163 -0.4788082673571967 -9.386065420688752e-007 -0.8779194969412163 0.4788082673571967 -0.03150232463048155 -0.1209510078656186 -0.9921584839324648 0.03150232463048155 0.1209510078656186 0.9921584839324648 1.421110156752401e-007 -0.09647637482302918 -0.9953352747195219 -1.421110156752401e-007 0.09647637482302918 0.9953352747195219 -0.9939519189231681 0.1071781674738492 -0.02392536908596283 0.9939519189231681 -0.1071781674738492 0.02392536908596283 0.1874073137697865 0.004104856223899814 -0.9822737138399735 -0.1874073137697865 -0.004104856223899814 0.9822737138399735 0.4766670216020972 -0.03148357499934053 0.8785199684823598 0.4740065005530203 0.06433251425393863 0.8781680733454425 0.6770012810427748 0.06137130979137885 0.7334185897568538 -0.6770012810427748 -0.06137130979137885 -0.7334185897568538 -0.4740065005530203 -0.06433251425393863 -0.8781680733454425 -0.4766670216020972 0.03148357499934053 -0.8785199684823598 -0.75716505701647 0.4316397027746605 0.4902940377180294 0.75716505701647 -0.4316397027746605 -0.4902940377180294 -0.8837170001912241 -0.08811553730210767 0.4596519505658436 0.8837170001912241 0.08811553730210767 -0.4596519505658436 -0.9732376766669912 0.0742968484610015 -0.2174589686000547 0.9732376766669912 -0.0742968484610015 0.2174589686000547 -0.7577190848040959 0.3973032107154196 -0.5176987031844511 0.7577190848040959 -0.3973032107154196 0.5176987031844511 -0.457138707571557 0.3553778220514752 -0.8153102511521345 0.457138707571557 -0.3553778220514752 0.8153102511521345 -0.2089924216546803 0.008762989339713465 -0.9778779973538337 -0.1006180874477454 0.6177155415554498 -0.779938145111018 0.1006180874477454 -0.6177155415554498 0.779938145111018 0.2089924216546803 -0.008762989339713465 0.9778779973538337 0.1545449189804481 0.1639953826160094 -0.9742799302551375 -0.1545449189804481 -0.1639953826160094 0.9742799302551375 0.3624719227926648 0.4859633171358438 -0.7952696143983599 -0.3624719227926648 -0.4859633171358438 0.7952696143983599 0.4825976504425874 0.7718509711554245 -0.4139391091860277 -0.4825976504425874 -0.7718509711554245 0.4139391091860277 0.6599378617402222 0.1574791258733538 -0.7346307532059271 -0.6599378617402222 -0.1574791258733538 0.7346307532059271 -0.9930809860323686 0.1146799591334536 -0.02527176594795086 0.9930809860323686 -0.1146799591334536 0.02527176594795086 0.1977659800341587 0.0464019048807483 -0.9791503870011831 -0.1977659800341587 -0.0464019048807483 0.9791503870011831 0.9907202004319288 -0.004481338298964892 0.1358432996624015 0.9903889769166423 0.0008426209381802807 0.1383074994060737 0.9902665732855567 -0.0009229499262855498 0.1391806811188776 -0.9902665732855567 0.0009229499262855498 -0.1391806811188776 -0.9903889769166423 -0.0008426209381802807 -0.1383074994060737 -0.9907202004319288 0.004481338298964892 -0.1358432996624015 0.9506355888777646 -0.03521948841048554 0.3083043379440672 -0.9506355888777646 0.03521948841048554 -0.3083043379440672 0.2785982112331046 -0.01731088269238537 0.9602517222260656 -0.2785982112331046 0.01731088269238537 -0.9602517222260656 -0.9385111508363014 0.3147102088340285 -0.1419658557948474 0.9385111508363014 -0.3147102088340285 0.1419658557948474 -0.5374118567073094 0.4163750394213115 0.7333623407411262 0.5374118567073094 -0.4163750394213115 -0.7333623407411262 -0.9984558984029656 0.05542846701277118 0.00367477740021313 0.9984558984029656 -0.05542846701277118 -0.00367477740021313 -0.8244249006574319 0.4220939913763589 0.3770414375369871 0.8244249006574319 -0.4220939913763589 -0.3770414375369871 -0.8609538082186087 0.3950426369975656 -0.3204681810537273 0.8609538082186087 -0.3950426369975656 0.3204681810537273 -0.00957148868517114 0.9761843977801478 -0.2167311886530402 0.00957148868517114 -0.9761843977801478 0.2167311886530402 0.0003145381297959222 0.8446308682000966 -0.5353490427275611 -0.0003145381297959222 -0.8446308682000966 0.5353490427275611 -0.185492318012902 0.029714409387343 -0.9821963417937178 0.185492318012902 -0.029714409387343 0.9821963417937178 -0.9948953864089095 0.09776053599842396 -0.02502094529723696 0.9948953864089095 -0.09776053599842396 0.02502094529723696 0.5153709162730268 0.007115690917785558 0.8569376789490958 -0.5153709162730268 -0.007115690917785558 -0.8569376789490958 0.1990967315569903 0.004305444266122145 -0.9799703845693475 -0.1990967315569903 -0.004305444266122145 0.9799703845693475 0.9902788853317449 0.001416575145139241 0.1390889017174802 -0.9902788853317449 -0.001416575145139241 -0.1390889017174802 0.9909381866633921 -0.00339928129879528 0.1342756683056169 -0.9909381866633921 0.00339928129879528 -0.1342756683056169 0.7837827076589627 -0.0777275116834283 0.6161518490618102 0.7789570757840516 -0.0003647030452540897 0.627077141249502 0.807881193541539 0.1421292548319688 0.5719503929912172 -0.807881193541539 -0.1421292548319688 -0.5719503929912172 -0.7789570757840516 0.0003647030452540897 -0.627077141249502 -0.7837827076589627 0.0777275116834283 -0.6161518490618102 0.97886734548447 -0.09340764649124664 0.1819168258329987 -0.97886734548447 0.09340764649124664 -0.1819168258329987 0.4487402694777954 0.03338026433872194 0.8930385929519914 -0.4487402694777954 -0.03338026433872194 -0.8930385929519914 -0.9947296916848576 0.03826608924145202 -0.09512385029377941 0.9947296916848576 -0.03826608924145202 0.09512385029377941 -0.1102595056986163 0.6041944645946928 0.7891716482212404 0.1102595056986163 -0.6041944645946928 -0.7891716482212404 -0.904888817089381 0.4255285472945364 0.01008385561096054 0.904888817089381 -0.4255285472945364 -0.01008385561096054 -0.8988689238162904 0.3942461495617065 -0.1913233685494596 0.8988689238162904 -0.3942461495617065 0.1913233685494596 0.732492058088297 0.4579188953728411 -0.5037515956283295 -0.732492058088297 -0.4579188953728411 0.5037515956283295 0.9711282967358724 0.2245734737144611 0.08047724015337268 -0.9711282967358724 -0.2245734737144611 -0.08047724015337268 0.9939518227067535 0.1071790024554668 -0.0239256258136243 0.9827435946668154 0.1835219798413784 -0.02312379848656081 -0.9827435946668154 -0.1835219798413784 0.02312379848656081 -0.9939518227067535 -0.1071790024554668 0.0239256258136243 -0.187407160819612 0.004104808380183385 -0.9822737432211522 0.187407160819612 -0.004104808380183385 0.9822737432211522 -0.9962646189382179 0.08335278637210813 -0.02256373319938482 0.9962646189382179 -0.08335278637210813 0.02256373319938482 0.282762654895606 -0.01355152068251251 0.9590941753986312 -0.282762654895606 0.01355152068251251 -0.9590941753986312 0.9905045084774971 0.00430583151241134 0.1374128032635193 -0.9905045084774971 -0.00430583151241134 -0.1374128032635193 0.2033008390474977 0.02159626358807922 -0.9788781181748919 -0.2033008390474977 -0.02159626358807922 0.9788781181748919 0.9901476793937345 0.0009945214277502505 0.1400235120197049 -0.9901476793937345 -0.0009945214277502505 -0.1400235120197049 0.2505953805537095 0.01319931024358321 0.9680019284351841 0.5544622414410764 0.05792895198666866 0.8301902549041778 0.2384622152970593 0.01130057266012134 0.9710860255060683 -0.2384622152970593 -0.01130057266012134 -0.9710860255060683 -0.5544622414410764 -0.05792895198666866 -0.8301902549041778 -0.2505953805537095 -0.01319931024358321 -0.9680019284351841 0.2536853763433732 -0.01385342089267899 0.9671875787866031 0.5517721355645144 0.04180008004943988 0.8329467352252697 -0.5517721355645144 -0.04180008004943988 -0.8329467352252697 -0.2536853763433732 0.01385342089267899 -0.9671875787866031 0.8556501718362605 0.2205237944821925 0.4682222116727841 -0.8556501718362605 -0.2205237944821925 -0.4682222116727841 0.01092354614888393 -0.9096493391911312 0.415233375162295 -0.0210116343912583 -0.9819081657303571 0.1881883771444284 -0.05251364681989335 -0.965692631172645 0.2543227457317366 0.05251364681989335 0.965692631172645 -0.2543227457317366 0.0210116343912583 0.9819081657303571 -0.1881883771444284 -0.01092354614888393 0.9096493391911312 -0.415233375162295 0.199686066098458 0.9695763853543423 0.1415878101014707 0.1705977330597303 0.9606879073294415 0.2190323222400281 0.2344657761266083 0.9511198135383904 0.2009898010348905 -0.2344657761266083 -0.9511198135383904 -0.2009898010348905 -0.1705977330597303 -0.9606879073294415 -0.2190323222400281 -0.199686066098458 -0.9695763853543423 -0.1415878101014707 0.5595943241498509 0.03064844215397503 0.8281997738304483 -0.5595943241498509 -0.03064844215397503 -0.8281997738304483 0.8927890657270788 0.2334357383356926 0.385273202008445 -0.8927890657270788 -0.2334357383356926 -0.385273202008445 0.9974870555249193 0.06924543025848322 -0.01498814359899946 -0.9974870555249193 -0.06924543025848322 0.01498814359899946 0.9664101543029536 0.1792973560538182 0.1841300403851904 -0.9664101543029536 -0.1792973560538182 -0.1841300403851904 0.1006180685619479 0.6177085888725438 -0.7799436540622367 -0.1006180685619479 -0.6177085888725438 0.7799436540622367 0.9930807542926085 0.1146818707139896 -0.02527219783010267 -0.9930807542926085 -0.1146818707139896 0.02527219783010267 0.9385419000274274 0.3443525048755634 0.02367391557878455 -0.9385419000274274 -0.3443525048755634 -0.02367391557878455 -0.1977659061729414 0.04640222383028751 -0.9791503868043964 0.1977659061729414 -0.04640222383028751 0.9791503868043964 -0.9903888581766679 0.0008425838663977495 0.1383083498995786 -0.9907200813861874 -0.004481335275896335 0.1358441679730533 -0.9902664316060748 -0.0009233398319787592 0.1391816865745136 0.9902664316060748 0.0009233398319787592 -0.1391816865745136 0.9907200813861874 0.004481335275896335 -0.1358441679730533 0.9903888581766679 -0.0008425838663977495 -0.1383083498995786 -0.9956332832031598 0.09060838061056614 -0.02246078229331045 0.9956332832031598 -0.09060838061056614 0.02246078229331045 0.609302980938861 -0.04851120027734063 0.7914521721915162 -0.609302980938861 0.04851120027734063 -0.7914521721915162 0.9900164870656073 0.002237715452367364 0.1409338425213349 -0.9900164870656073 -0.002237715452367364 -0.1409338425213349 0.2037279884680405 0.003408292205479992 -0.9790215984640012 -0.2037279884680405 -0.003408292205479992 0.9790215984640012 0.2354288757230134 0.01033069315864383 0.9718366741663231 -0.2354288757230134 -0.01033069315864383 -0.9718366741663231 0.9899604319430478 -0.002011784228226916 0.1413304493425017 -0.9899604319430478 0.002011784228226916 -0.1413304493425017 0.5547653430423216 0.006299757779836354 0.8319830089677616 -0.5547653430423216 -0.006299757779836354 -0.8319830089677616 -4.394328509024803e-007 -0.8604107253640477 0.5096012006248809 4.394328509024803e-007 0.8604107253640477 -0.5096012006248809 0.1724366937858562 -0.5852573613334642 0.7923000742403056 -0.1724366937858562 0.5852573613334642 -0.7923000742403056 0.1714073010240002 0.9747916390754533 0.1428313605069244 -0.1714073010240002 -0.9747916390754533 -0.1428313605069244 0.5503810947730992 0.001214969156718686 0.8349126746949726 -0.5503810947730992 -0.001214969156718686 -0.8349126746949726 0.450037116531388 0.04310610239371941 0.8919688658695077 -0.450037116531388 -0.04310610239371941 -0.8919688658695077 0.8761978087912092 0.2259548846055289 -0.4257015268851939 -0.8761978087912092 -0.2259548846055289 0.4257015268851939 0.9996755819224945 0.02513868544375044 -0.004096022715052424 -0.9996755819224945 -0.02513868544375044 0.004096022715052424 0.1444621315590783 0.897014967628634 -0.4177257957028849 0.4573000724444853 0.5678945186820267 -0.6843774246665197 -0.4573000724444853 -0.5678945186820267 0.6843774246665197 -0.1444621315590783 -0.897014967628634 0.4177257957028849 0.9948955834759435 0.09775843681465128 -0.02502131114905634 -0.9948955834759435 -0.09775843681465128 0.02502131114905634 -0.2785981445243947 -0.01731150240502203 0.9602517304082537 -0.4766671925824109 -0.03148473006323069 0.8785198343170451 -0.515371312570275 0.00711481025181893 0.8569374479241017 0.515371312570275 -0.00711481025181893 -0.8569374479241017 0.4766671925824109 0.03148473006323069 -0.8785198343170451 0.2785981445243947 0.01731150240502203 -0.9602517304082537 -0.6770023525194214 0.06137146879587433 0.7334175873954796 -0.4740073313116037 0.06433442568254497 0.8781674848996339 0.4740073313116037 -0.06433442568254497 -0.8781674848996339 0.6770023525194214 -0.06137146879587433 -0.7334175873954796 -0.1990967204008648 0.004305648388343431 -0.9799703859390732 0.1990967204008648 -0.004305648388343431 0.9799703859390732 -0.990278754510625 0.001416584633724603 0.139089833031969 0.990278754510625 -0.001416584633724603 -0.139089833031969 -0.9909380630799358 -0.003399242763365023 0.1342765813089576 0.9909380630799358 0.003399242763365023 -0.1342765813089576 -0.9968199301215862 0.07708524078587133 -0.0201963502985076 0.9968199301215862 -0.07708524078587133 0.0201963502985076 0.3314473236246197 -0.03404005513124647 0.942859452044014 -0.3314473236246197 0.03404005513124647 -0.942859452044014 0.2690640104709645 -0.007413334523900739 0.9630937652900248 -0.2690640104709645 0.007413334523900739 -0.9630937652900248 0.9892307285286091 0.01363532297325122 0.1457279784467367 -0.9892307285286091 -0.01363532297325122 -0.1457279784467367 0.2193871989700671 0.04480102687666464 -0.9746087034902083 -0.2193871989700671 -0.04480102687666464 0.9746087034902083 0.9899973159602924 -0.001154469275832887 0.1410814714698849 -0.9899973159602924 0.001154469275832887 -0.1410814714698849 0.4465459218696992 0.02656812732855649 0.8943661857828673 -0.4465459218696992 -0.02656812732855649 -0.8943661857828673 -1.148944981636436e-008 -0.8668010893336193 0.4986540599755013 1.148944981636436e-008 0.8668010893336193 -0.4986540599755013 -0.001024137529105541 -0.5316213354677284 0.8469815268456746 0.001024137529105541 0.5316213354677284 -0.8469815268456746 0.2602016548448433 0.9646775598081155 0.04113762777147901 -0.2602016548448433 -0.9646775598081155 -0.04113762777147901 0.2346650363901175 0 0.972076293660135 -0.2346650363901175 -0 -0.972076293660135 0.7396104306978107 0.2705991214933103 0.6162406398883861 -0.7396104306978107 -0.2705991214933103 -0.6162406398883861 0.9292033977608823 0.004849915305961162 -0.3695369046673911 -0.9292033977608823 -0.004849915305961162 0.3695369046673911 0.2089923606738436 0.00876284107834017 -0.9778780117152702 -0.2089923606738436 -0.00876284107834017 0.9778780117152702 0.9962647277989406 0.0833513433905458 -0.02256425710485266 -0.9962647277989406 -0.0833513433905458 0.02256425710485266 -0.2827633455471794 -0.0135519361059265 0.9590939659088401 0.2827633455471794 0.0135519361059265 -0.9590939659088401 -0.9506354482239151 -0.03521547083878675 0.3083052305649686 0.9506354482239151 0.03521547083878675 -0.3083052305649686 -0.9905043599947265 0.004306145735177295 0.1374138637123065 0.9905043599947265 -0.004306145735177295 -0.1374138637123065 -0.203300842541363 0.02159634962472388 -0.9788781155510927 0.203300842541363 -0.02159634962472388 0.9788781155510927 -0.9901475184290349 0.0009944306250129018 0.1400246508888931 0.9901475184290349 -0.0009944306250129018 -0.1400246508888931 -0.2505953057574743 0.01319924367291896 0.9680019487060865 -0.2384621371886398 0.01130063956788524 0.9710860439079448 -0.5544623521168383 0.05792931606360777 0.8301901555821206 0.5544623521168383 -0.05792931606360777 -0.8301901555821206 0.2384621371886398 -0.01130063956788524 -0.9710860439079448 0.2505953057574743 -0.01319924367291896 -0.9680019487060865 -0.2536850281599741 -0.0138535557623779 0.9671876681803858 -0.551772243987951 0.04179930726748266 0.8329467021823543 0.551772243987951 -0.04179930726748266 -0.8329467021823543 0.2536850281599741 0.0138535557623779 -0.9671876681803858 -0.9959826638017204 0.08218396933776975 -0.03555739853135363 0.9959826638017204 -0.08218396933776975 0.03555739853135363 0.6153083634408196 -0.05148481002412313 0.7866034148264042 -0.6153083634408196 0.05148481002412313 -0.7866034148264042 0.5727285138006848 0.02121515963538596 0.8194705403376649 -0.5727285138006848 -0.02121515963538596 -0.8194705403376649 0.9893888310005082 0.00274175030615532 0.1452660452298001 -0.9893888310005082 -0.00274175030615532 -0.1452660452298001 0.2097557314495232 0.01720629354741938 -0.9776024123264199 -0.2097557314495232 -0.01720629354741938 0.9776024123264199 0.9897895976065745 -0.004342237901327167 0.1424699878564741 -0.9897895976065745 0.004342237901327167 -0.1424699878564741 0.4503054884335412 0.01362090150421649 0.892770652591606 -0.4503054884335412 -0.01362090150421649 -0.892770652591606 -0.01092992491029081 -0.9096482954439253 0.415235493831412 0.01092992491029081 0.9096482954439253 -0.415235493831412 -6.080638707766665e-007 -0.549717805339878 0.8353504261637377 6.080638707766665e-007 0.549717805339878 -0.8353504261637377 3.440188208490243e-008 -0.5555299093164049 0.8314965543253354 -3.440188208490243e-008 0.5555299093164049 -0.8314965543253354 0.7571660530837381 0.4316386416869186 0.4902934336295622 -0.7571660530837381 -0.4316386416869186 -0.4902934336295622 0.8837149458269733 -0.08812159394410893 0.4596547391279451 -0.8837149458269733 0.08812159394410893 -0.4596547391279451 0.9732381178375368 0.07429979006275535 -0.2174559890752135 -0.9732381178375368 -0.07429979006275535 0.2174559890752135 0.7577242285038515 0.3972933108754175 -0.5176987721367438 -0.7577242285038515 -0.3972933108754175 0.5176987721367438 0.4571384098397874 0.3553681588594452 -0.8153146300159212 -0.4571384098397874 -0.3553681588594452 0.8153146300159212 0.9956332479540522 0.09060858342719801 -0.02246152661288552 -0.9956332479540522 -0.09060858342719801 0.02246152661288552 -0.60930239163265 -0.04851017134711085 0.7914526889376313 0.60930239163265 0.04851017134711085 -0.7914526889376313 -0.4487398167543257 0.03338053044725342 0.8930388104927769 0.4487398167543257 -0.03338053044725342 -0.8930388104927769 -0.7789583409897993 -0.000363824971310878 0.6270755701140092 -0.7837836806675312 -0.07772604490380559 0.6161507963663354 -0.8078824561640882 0.1421267736203982 0.5719492261053741 0.8078824561640882 -0.1421267736203982 -0.5719492261053741 0.7837836806675312 0.07772604490380559 -0.6161507963663354 0.7789583409897993 0.000363824971310878 -0.6270755701140092 0.9385102612342132 0.3147124102554416 -0.1419668566578107 -0.9385102612342132 -0.3147124102554416 0.1419668566578107 -0.9788676032683243 -0.09340394251875722 0.1819173405524587 0.9788676032683243 0.09340394251875722 -0.1819173405524587 -0.9900163262707898 0.002237773630536223 0.1409349711266421 0.9900163262707898 -0.002237773630536223 -0.1409349711266421 -0.2037279640935901 0.003408228659399518 -0.9790216037573869 0.2037279640935901 -0.003408228659399518 0.9790216037573869 -0.2354286825828318 0.01033067541157402 0.9718367211434505 -0.5595946128675985 0.03064871190227865 0.8281995687684784 0.5595946128675985 -0.03064871190227865 -0.8281995687684784 0.2354286825828318 -0.01033067541157402 -0.9718367211434505 -0.9899603075635177 -0.002011262428334605 0.1413313279927344 0.9899603075635177 0.002011262428334605 -0.1413313279927344 -0.5547654368374926 0.006299470406166929 0.8319829486011763 0.5547654368374926 -0.006299470406166929 -0.8319829486011763 -0.9985425728218029 0.05396971174717015 2.182525293931658e-005 0.9985425728218029 -0.05396971174717015 -2.182525293931658e-005 0.328951013776384 -0.02646334594056419 0.9439761235630481 -0.328951013776384 0.02646334594056419 -0.9439761235630481 0.2841570197766841 0.02309268086450633 0.9584996172154285 -0.2841570197766841 -0.02309268086450633 -0.9584996172154285 0.9891669386176245 0.007070011516571865 0.1466246312288359 -0.9891669386176245 -0.007070011516571865 -0.1466246312288359 0.147731337883644 0.5587010131958488 -0.8161057711234742 -0.147731337883644 -0.5587010131958488 0.8161057711234742 -0.1724417686133558 -0.5852546171744093 0.7923009967894356 0.1724417686133558 0.5852546171744093 -0.7923009967894356 0.02100936362367406 -0.9819079119043689 0.1881899550447116 -0.02100936362367406 0.9819079119043689 -0.1881899550447116 0.001023400392436381 -0.5316206646494037 0.8469819487860194 -0.001023400392436381 0.5316206646494037 -0.8469819487860194 0.5374137069235633 0.4163662298492717 0.7333659865659014 -0.5374137069235633 -0.4163662298492717 -0.7333659865659014 0.9984558285342023 0.05543043573489472 0.003664049715707952 -0.9984558285342023 -0.05543043573489472 -0.003664049715707952 0.8244304220700673 0.42208399743857 0.3770405525558863 -0.8244304220700673 -0.42208399743857 -0.3770405525558863 0.8609593490701201 0.3950356538503604 -0.3204619032518112 -0.8609593490701201 -0.3950356538503604 0.3204619032518112 0.9968199900682904 0.0770843016658484 -0.02019697593557614 -0.9968199900682904 -0.0770843016658484 0.02019697593557614 -0.3314467288794468 -0.03403931238868394 0.9428596879319956 0.3314467288794468 0.03403931238868394 -0.9428596879319956 -0.4500384764145335 0.04310675662060656 0.8919681481309393 0.4500384764145335 -0.04310675662060656 -0.8919681481309393 -0.8556511006454337 0.2205202335716528 0.4682221914324025 0.8556511006454337 -0.2205202335716528 -0.4682221914324025 0.9947292441872121 0.03826670708435793 -0.0951282812188765 -0.9947292441872121 -0.03826670708435793 0.0951282812188765 0.05250119610140889 -0.9656931304469213 0.2543234205014291 -0.05250119610140889 0.9656931304469213 -0.2543234205014291 -0.1705956336861564 0.9606885189129935 0.2190312749266132 -0.1996848346137059 0.9695768355687583 0.1415864638790379 -0.2344624242422771 0.9511207570385238 0.2009892463513906 0.2344624242422771 -0.9511207570385238 -0.2009892463513906 0.1996848346137059 -0.9695768355687583 -0.1415864638790379 0.1705956336861564 -0.9606885189129935 -0.2190312749266132 -0.9892305482017425 0.01363551190350415 0.1457291848587969 0.9892305482017425 -0.01363551190350415 -0.1457291848587969 -0.2690636223426728 -0.007413233922668227 0.9630938744975213 0.2690636223426728 0.007413233922668227 -0.9630938744975213 -0.2193871688498107 0.04480051646010619 -0.9746087337331696 0.2193871688498107 -0.04480051646010619 0.9746087337331696 -0.5503813245396799 0.001214963109203446 0.834912523239765 0.5503813245396799 -0.001214963109203446 -0.834912523239765 -0.9899971732306971 -0.001153879037670049 0.1410824778574415 0.9899971732306971 0.001153879037670049 -0.1410824778574415 -0.4465456466954729 0.02656714329178133 0.8943663524052299 0.4465456466954729 -0.02656714329178133 -0.8943663524052299 -0.9983834563885684 0.05683670962253818 -0.0002498977763939091 0.9983834563885684 -0.05683670962253818 0.0002498977763939091 0.6061218733991877 -0.01969442439617812 0.7951279169006473 -0.6061218733991877 0.01969442439617812 -0.7951279169006473 0.4419258402810651 0.0239470611798888 0.8967318941315297 -0.4419258402810651 -0.0239470611798888 -0.8967318941315297 0.570230995658594 0.03991175871994512 0.8205142674604075 -0.570230995658594 -0.03991175871994512 -0.8205142674604075 0.9479143263943628 -0.2903074595404179 0.131072532406718 -0.9479143263943628 0.2903074595404179 -0.131072532406718 0.06336221035526715 0.329066082673738 -0.9421787216513943 -0.06336221035526715 -0.329066082673738 0.9421787216513943 0.9885657644415824 -0.03036804094180219 0.1477007497048907 -0.9885657644415824 0.03036804094180219 -0.1477007497048907 -0.001802792156686485 -0.02305023658463695 0.9997326825376031 -0.0008256944294643935 -0.02505255330090537 0.9996857945383711 -0.002734208924138677 -0.02114140788636196 0.9997727566673047 0.002734208924138677 0.02114140788636196 -0.9997727566673047 0.0008256944294643935 0.02505255330090537 -0.9996857945383711 0.001802792156686485 0.02305023658463695 -0.9997326825376031 0.3220491945008595 -0.01398584764411414 0.9466196239181941 -0.3220491945008595 0.01398584764411414 -0.9466196239181941 0.1102607918778887 0.6041870483927864 0.7891771463549068 -0.1102607918778887 -0.6041870483927864 -0.7891771463549068 0.904891680280896 0.4255225800980013 0.01007872934236248 -0.904891680280896 -0.4255225800980013 -0.01007872934236248 0.8988743871289552 0.3942317592744247 -0.1913273533578971 -0.8988743871289552 -0.3942317592744247 0.1913273533578971 0.9959824002825762 0.08218668947580367 -0.0355584926616104 -0.9959824002825762 -0.08218668947580367 0.0355584926616104 -0.6153067761488915 -0.05148347473506788 0.7866047438545368 0.6153067761488915 0.05148347473506788 -0.7866047438545368 -0.8927893756465019 0.2334317597510517 0.3852748944224846 0.8927893756465019 -0.2334317597510517 -0.3852748944224846 -0.1714068147238466 0.9747919519341297 0.1428298089009226 0.1714068147238466 -0.9747919519341297 -0.1428298089009226 -0.9893886561191522 0.002741776618111332 0.1452672358232045 0.9893886561191522 -0.002741776618111332 -0.1452672358232045 -0.5727289759413263 0.02121602657569409 0.8194701949024987 0.5727289759413263 -0.02121602657569409 -0.8194701949024987 -0.2097555208802006 0.0172061271122594 -0.9776024604357706 0.2097555208802006 -0.0172061271122594 0.9776024604357706 -0.2346648726773565 3.783173416404959e-017 0.972076333181361 0.2346648726773565 -3.783173416404959e-017 -0.972076333181361 -0.989789563809418 -0.004340030956380254 0.1424702899037547 0.989789563809418 0.004340030956380254 -0.1424702899037547 -0.4503056651465148 0.01362115755138225 0.8927705595526296 0.4503056651465148 -0.01362115755138225 -0.8927705595526296 -0.9989954996840046 -0.000137660845391611 0.04481040794946183 0.9989954996840046 0.000137660845391611 -0.04481040794946183 -0.9972216916799506 0.07119311484437237 -0.02191889690960671 0.9972216916799506 -0.07119311484437237 0.02191889690960671 0.2214779324102707 0.196197245236413 0.9552246680320364 -0.2214779324102707 -0.196197245236413 -0.9552246680320364 1.780389104542476e-007 0.4337085547787001 -0.9010532112543296 -1.780389104542476e-007 -0.4337085547787001 0.9010532112543296 -0.9865277944392574 0.05217622602417737 -0.1550501603891077 -0.9736896225321698 0.05084994715485541 -0.2221323971137686 0.9736896225321698 -0.05084994715485541 0.2221323971137686 0.9865277944392574 -0.05217622602417737 0.1550501603891077 0.8744760066387074 -0.4712393770442262 0.1150007101551506 -0.8744760066387074 0.4712393770442262 -0.1150007101551506 -0.003554629011209123 -0.01945995380215752 0.9998043182596337 0.003554629011209123 0.01945995380215752 -0.9998043182596337 -0.2602011346471293 0.9646777618329538 0.04113618058727868 0.2602011346471293 -0.9646777618329538 -0.04113618058727868 0.9985425731774548 0.05396970529110465 2.151600848150853e-005 -0.9985425731774548 -0.05396970529110465 -2.151600848150853e-005 -0.3289498256034926 -0.02646299455308964 0.9439765474601131 0.3289498256034926 0.02646299455308964 -0.9439765474601131 -0.9891667803014308 0.007069732576932015 0.1466257127157151 0.9891667803014308 -0.007069732576932015 -0.1466257127157151 -0.2841572966473706 0.02309293508627453 0.9584995290093571 0.2841572966473706 -0.02309293508627453 -0.9584995290093571 -0.1477311316684 0.5587017574653437 -0.8161052989296846 0.1477311316684 -0.5587017574653437 0.8161052989296846 -0.9973266047647974 0.05600939024017728 0.04693177637001751 0.9973266047647974 -0.05600939024017728 -0.04693177637001751 0.6914289920974853 0.004286087141038797 0.7224317118898334 -0.6914289920974853 -0.004286087141038797 -0.7224317118898334 -0.001583130968168075 0.9869731748496333 -0.1608771140453886 -0.001126925678352958 0.9966247613602267 -0.08208419508155551 -0.005838407715201528 0.9856277375830695 -0.1688309092027607 0.005838407715201528 -0.9856277375830695 0.1688309092027607 0.001126925678352958 -0.9966247613602267 0.08208419508155551 0.001583130968168075 -0.9869731748496333 0.1608771140453886 -0.9968756305926255 0.07737442659515952 -0.01588002643654866 0.9968756305926255 -0.07737442659515952 0.01588002643654866 0.447907665072911 0.03186390273533372 0.8935118439457903 -0.447907665072911 -0.03186390273533372 -0.8935118439457903 0.3961548121424567 -0.003715527347467818 0.9181762138461795 -0.3961548121424567 0.003715527347467818 -0.9181762138461795 0.402695768400104 0.4873827922562387 0.7747865073200242 -0.402695768400104 -0.4873827922562387 -0.7747865073200242 8.132231258095106e-007 0.8321193877225259 -0.5545965421598185 -8.132231258095106e-007 -0.8321193877225259 0.5545965421598185 -0.003655777851620025 0.009903831423077426 -0.9999442731529806 0.003655777851620025 -0.009903831423077426 0.9999442731529806 -0.0128535655306012 0.9750745821463159 -0.2215047293069336 0.0005688769515589375 0.9848479174845526 -0.1734193063224333 -0.0005688769515589375 -0.9848479174845526 0.1734193063224333 0.0128535655306012 -0.9750745821463159 0.2215047293069336 0.01108124840155184 0.8707973362884408 0.4915172479647275 -0.01108124840155184 -0.8707973362884408 -0.4915172479647275 0.1752279006153873 0.9590644972035478 0.2224645433538342 5.430323419212678e-007 0.9853891688670527 0.1703178965323498 -5.430323419212678e-007 -0.9853891688670527 -0.1703178965323498 -0.1752279006153873 -0.9590644972035478 -0.2224645433538342 0.998383435854744 0.05683706859506152 -0.0002502886265367268 -0.998383435854744 -0.05683706859506152 0.0002502886265367268 -0.6061240476733609 -0.01969603041895944 0.7951262196769748 0.6061240476733609 0.01969603041895944 -0.7951262196769748 -0.9479154558277739 -0.2903029525775037 0.1310743465656306 0.9479154558277739 0.2903029525775037 -0.1310743465656306 -0.5702310738101326 0.03991203788247619 0.8205141995684235 0.5702310738101326 -0.03991203788247619 -0.8205141995684235 -0.4419261685556237 0.0239478688565466 0.8967317107825372 0.4419261685556237 -0.0239478688565466 -0.8967317107825372 -0.06336302353539842 0.3290683811726526 -0.9421778641853471 0.06336302353539842 -0.3290683811726526 0.9421778641853471 -0.9885656140756707 -0.03036796316458268 0.1477017720964342 0.9885656140756707 0.03036796316458268 -0.1477017720964342 0.001802970942108782 -0.02304999440336087 0.9997326877989871 0.002734444657222303 -0.02114104111121133 0.9997727637784253 0.0008258177220701067 -0.02505243310216891 0.9996857974487541 -0.0008258177220701067 0.02505243310216891 -0.9996857974487541 -0.002734444657222303 0.02114104111121133 -0.9997727637784253 -0.001802970942108782 0.02304999440336087 -0.9997326877989871 -0.322051282173163 -0.01398702650755865 0.9466188962513364 0.322051282173163 0.01398702650755865 -0.9466188962513364 -0.9969246471896264 0.06302065782301529 0.04657944303438513 0.9969246471896264 -0.06302065782301529 -0.04657944303438513 -0.00212881274995628 -0.2683718283930491 0.9633130487444087 -0.001005174475925616 -0.2694076348507848 0.9630257088512118 -0.001639758244104681 -0.2716436840334383 0.9623964983922387 0.001639758244104681 0.2716436840334383 -0.9623964983922387 0.001005174475925616 0.2694076348507848 -0.9630257088512118 0.00212881274995628 0.2683718283930491 -0.9633130487444087 0.001038111635286944 0.9956823341796562 -0.09282031957919484 -0.001038111635286944 -0.9956823341796562 0.09282031957919484 -0.01055405555417334 -0.2587200214695265 0.9658946952966286 0.01055405555417334 0.2587200214695265 -0.9658946952966286 0.001393652670393064 0.9997215447667671 0.02355611728157328 -0.001393652670393064 -0.9997215447667671 -0.02355611728157328 -2.184619363978431e-010 -0.004499848741330991 -0.9999898756294011 2.184619363978431e-010 0.004499848741330991 0.9999898756294011 -0.004163240460725096 0.03105645564005462 -0.9995089614365362 0.004163240460725096 -0.03105645564005462 0.9995089614365362 -0.02234166972565267 0.5339027079899825 -0.8452507013867739 0.02234166972565267 -0.5339027079899825 0.8452507013867739 0.0009277835913001386 0.9998004819989514 0.01995333085657497 -0.0009277835913001386 -0.9998004819989514 -0.01995333085657497 0.1556278945893801 0.2809026446796918 0.9470341401647734 -0.1556278945893801 -0.2809026446796918 -0.9470341401647734 -3.541958887443474e-010 0.9631080259860416 0.2691150874277956 3.541958887443474e-010 -0.9631080259860416 -0.2691150874277956 0.9989955276880921 -0.0001368748650612091 0.04480978603454567 -0.9989955276880921 0.0001368748650612091 -0.04480978603454567 0.9972216595772164 0.07119431950687306 -0.02191644451127155 -0.9972216595772164 -0.07119431950687306 0.02191644451127155 -0.2214778855070592 0.1961979907061468 0.9552245257918122 0.2214778855070592 -0.1961979907061468 -0.9552245257918122 0.9736909147966711 0.05084773715865913 -0.2221272384654028 0.9865278216836982 0.05217386120331387 -0.1550507828137432 -0.9865278216836982 -0.05217386120331387 0.1550507828137432 -0.9736909147966711 -0.05084773715865913 0.2221272384654028 -0.8744793070848513 -0.4712326775356765 0.1150030656241631 0.8744793070848513 0.4712326775356765 -0.1150030656241631 0.003554918847038024 -0.01945946918911573 0.9998043266614068 -0.003554918847038024 0.01945946918911573 -0.9998043266614068 -0.9956402565366229 0.08230549210112352 0.04388946950784167 0.9956402565366229 -0.08230549210112352 -0.04388946950784167 0.8246343825300643 -0.01411444302695114 0.5654899801475696 -0.8246343825300643 0.01411444302695114 -0.5654899801475696 -0.01087594253182367 -0.2146052472578675 0.976640313382278 0.01087594253182367 0.2146052472578675 -0.976640313382278 0.4401942536872691 0.07256629869602126 0.8949654469946131 -0.4401942536872691 -0.07256629869602126 -0.8949654469946131 -0.175225918065263 0.9590652604319062 0.2224628145800227 -0.01108109537805878 0.8707975440991215 0.4915168832463043 0.01108109537805878 -0.8707975440991215 -0.4915168832463043 0.175225918065263 -0.9590652604319062 -0.2224628145800227 0.003655776094791184 0.009903878800838617 -0.9999442726901551 -0.003655776094791184 -0.009903878800838617 0.9999442726901551 -0.005741523756654533 0.633379681744303 0.7738198845070068 0.005741523756654533 -0.633379681744303 -0.7738198845070068 0.997326663603473 0.05600807958972717 0.04693209015413619 -0.997326663603473 -0.05600807958972717 -0.04693209015413619 -0.6914294736212706 0.004286908751857613 0.722431246155069 0.6914294736212706 -0.004286908751857613 -0.722431246155069 0.001126942549455734 0.9966247498934016 -0.08208433407420153 0.001583162336782136 0.9869731804581573 -0.160877079328676 0.005838414458393801 0.9856277529672934 -0.1688308191570955 -0.005838414458393801 -0.9856277529672934 0.1688308191570955 -0.001583162336782136 -0.9869731804581573 0.160877079328676 -0.001126942549455734 -0.9966247498934016 0.08208433407420153 0.9968755542992248 0.07737574505142088 -0.01587839155427141 -0.9968755542992248 -0.07737574505142088 0.01587839155427141 -0.4026962970868477 0.4873823656380145 0.7747865009004961 0.4026962970868477 -0.4873823656380145 -0.7747865009004961 -0.4479081988270762 0.03186402010616231 0.8935115721948757 0.4479081988270762 -0.03186402010616231 -0.8935115721948757 -0.3961550658726484 -0.00371524072142496 0.9181761055319505 0.3961550658726484 0.00371524072142496 -0.9181761055319505 0.01285199485402978 0.9750752153123479 -0.2215020332002622 -0.0005698567566058358 0.9848490615899062 -0.1734128056077704 0.0005698567566058358 -0.9848490615899062 0.1734128056077704 -0.01285199485402978 -0.9750752153123479 0.2215020332002622 -0.9932673995775939 0.1101566052120566 0.03585240946602527 0.9932673995775939 -0.1101566052120566 -0.03585240946602527 -0.01947042315387116 -0.2047452333996747 0.9786216286299428 0.01947042315387116 0.2047452333996747 -0.9786216286299428 -3.649169004302243e-006 0.002404705578097014 -0.9999971086847034 3.649169004302243e-006 -0.002404705578097014 0.9999971086847034 0.004163232182903801 0.03105646358866811 -0.9995089612240387 -0.004163232182903801 -0.03105646358866811 0.9995089612240387 -0.005539235710457793 0.2257622422815508 0.9741666832876962 0.005539235710457793 -0.2257622422815508 -0.9741666832876962 0.005741541568387194 0.6333792388219084 0.7738202469112567 -0.005741541568387194 -0.6333792388219084 -0.7738202469112567 9.129794179690531e-008 0.6271054976389598 0.7789343328105293 -9.129794179690531e-008 -0.6271054976389598 -0.7789343328105293 0.9969248065263503 0.0630173633110655 0.04658049005452914 -0.9969248065263503 -0.0630173633110655 -0.04658049005452914 0.002128530445273913 -0.2683715989666407 0.9633131132846848 0.001639764983917454 -0.2716436780894816 0.9623965000584819 0.001005197093830429 -0.2694069088834613 0.9630259119175667 -0.001005197093830429 0.2694069088834613 -0.9630259119175667 -0.001639764983917454 0.2716436780894816 -0.9623965000584819 -0.002128530445273913 0.2683715989666407 -0.9633131132846848 -0.001037056060731555 0.9956816563005005 -0.09282760269132624 0.001037056060731555 -0.9956816563005005 0.09282760269132624 0.01055406525834097 -0.2587200319160666 0.9658946923924329 -0.01055406525834097 0.2587200319160666 -0.9658946923924329 -0.001392086521481292 0.9997216255719778 0.0235527802783202 0.001392086521481292 -0.9997216255719778 -0.0235527802783202 -0.0009266258992287946 0.9998006871929479 0.01994310038464602 0.0009266258992287946 -0.9998006871929479 -0.01994310038464602 0.02234158084566133 0.5339013868798324 -0.8452515382139852 -0.02234158084566133 -0.5339013868798324 0.8452515382139852 -0.1556280380849506 0.2809020143766772 0.9470343035397156 0.1556280380849506 -0.2809020143766772 -0.9470343035397156 -0.9949922403436752 0.09349449262480997 0.03534432775854178 0.9949922403436752 -0.09349449262480997 -0.03534432775854178 0.771127959994469 0.08874154827928825 0.6304653891561086 -0.771127959994469 -0.08874154827928825 -0.6304653891561086 -0.02384731832305925 -0.1218724595508653 0.9922592448608485 0.02384731832305925 0.1218724595508653 -0.9922592448608485 0.4249547264085437 0.1646834045613325 0.8901083399031425 -0.4249547264085437 -0.1646834045613325 -0.8901083399031425 0.004123423268501376 -0.003767271156499045 -0.9999844024026487 -0.004123423268501376 0.003767271156499045 0.9999844024026487 3.649170348330782e-006 0.002404705577239728 -0.9999971086847054 -3.649170348330782e-006 -0.002404705577239728 0.9999971086847054 -0.0004978541198465981 0.2232745900914064 0.9747554614162414 0.0004978541198465981 -0.2232745900914064 -0.9747554614162414 0.995640216310576 0.08230536122088525 0.04389062746565749 -0.995640216310576 -0.08230536122088525 -0.04389062746565749 -0.8246374845250392 -0.01411276082802709 0.5654854985744786 0.8246374845250392 0.01411276082802709 -0.5654854985744786 0.01087546504665527 -0.2146050196655245 0.9766403687101916 -0.01087546504665527 0.2146050196655245 -0.9766403687101916 -0.4401972825385715 0.07256682050643808 0.894963914919056 0.4401972825385715 -0.07256682050643808 -0.894963914919056 -0.9938736768183237 0.1060759675041956 0.0310323000384265 0.9938736768183237 -0.1060759675041956 -0.0310323000384265 -0.02469285204551572 -0.1223257360684622 0.9921827842455073 0.02469285204551572 0.1223257360684622 -0.9921827842455073 -1.975234189968038e-009 -0.0092096358929908 -0.9999575904040723 1.975234189968038e-009 0.0092096358929908 0.9999575904040723 -0.004123424047886496 -0.003767272097554435 -0.9999844023958895 0.004123424047886496 0.003767272097554435 0.9999844023958895 -0.003656799258033165 0.2025676661135156 0.979261440303104 0.003656799258033165 -0.2025676661135156 -0.979261440303104 -0.005991095453674735 0.2026514220813025 0.9792326117443653 0.005991095453674735 -0.2026514220813025 -0.9792326117443653 0.0004979735973291479 0.2232744541324763 0.97475549249755 -0.0004979735973291479 -0.2232744541324763 -0.97475549249755 0.005538729495513114 0.2257617772353544 0.9741667939398827 -0.005538729495513114 -0.2257617772353544 -0.9741667939398827 1.270040682074497e-007 0.229068254948915 0.973410362886405 -1.270040682074497e-007 -0.229068254948915 -0.973410362886405 0.9932672326084836 0.1101579073625746 0.03585303434555028 -0.9932672326084836 -0.1101579073625746 -0.03585303434555028 0.01946975905828728 -0.204745561519798 0.9786215731937217 -0.01946975905828728 0.204745561519798 -0.9786215731937217 -0.9939120391092525 0.1054061652209854 0.03206865833012031 0.9939120391092525 -0.1054061652209854 -0.03206865833012031 0.9242746092440277 -0.03269483896492043 0.3803255108612332 -0.9242746092440277 0.03269483896492043 -0.3803255108612332 -0.02133260597046953 -0.08559868170729368 0.9961012928475107 0.02133260597046953 0.08559868170729368 -0.9961012928475107 0.02101322130799316 -0.00641634108519356 -0.999758608413721 -0.02101322130799316 0.00641634108519356 0.999758608413721 -0.001748214336487093 0.2024396979067454 0.9792931698209986 0.001748214336487093 -0.2024396979067454 -0.9792931698209986 0.9166413971056587 -0.0669061911394007 0.3940712000380186 -0.9166413971056587 0.0669061911394007 -0.3940712000380186 -0.4249567961679917 0.1646831342390139 0.8901074017711855 0.4249567961679917 -0.1646831342390139 -0.8901074017711855 0.994992237216198 0.09349442076486945 0.03534460588755371 -0.994992237216198 -0.09349442076486945 -0.03534460588755371 -0.7711318273143256 0.08873899184190973 0.6304610188027099 0.7711318273143256 -0.08873899184190973 -0.6304610188027099 0.02384718136722833 -0.1218726623496858 0.9922592232439254 -0.02384718136722833 0.1218726623496858 -0.9922592232439254 -0.9931293348599229 0.1133726637291741 0.02899591970672322 0.9931293348599229 -0.1133726637291741 -0.02899591970672322 -0.01798191713551359 -0.08803433048368339 0.9959551231418118 0.01798191713551359 0.08803433048368339 -0.9959551231418118 0.01427091325176062 -0.06851877216335224 -0.997547752689658 -0.01427091325176062 0.06851877216335224 0.997547752689658 -0.02101322846933548 -0.006416343807304026 -0.9997586082457315 0.02101322846933548 0.006416343807304026 0.9997586082457315 -0.003101143724149982 0.1954095786057839 0.980716819217817 0.003101143724149982 -0.1954095786057839 -0.980716819217817 -0.005416480598996744 0.1962979641407612 0.9805293320508637 0.005416480598996744 -0.1962979641407612 -0.9805293320508637 0.9817272518583401 -0.02642165932822021 0.1884502557096029 -0.9817272518583401 0.02642165932822021 -0.1884502557096029 0.001748277811602291 0.2024400378841402 0.9792930994274193 -0.001748277811602291 -0.2024400378841402 -0.9792930994274193 0.003656811932388367 0.2025680473072131 0.979261361402886 -0.003656811932388367 -0.2025680473072131 -0.979261361402886 0.005990923095397907 0.2026516007718099 0.9792325758189869 -0.005990923095397907 -0.2026516007718099 -0.9792325758189869 -2.83832460254903e-009 0.2145028510253935 0.9767233625249155 2.83832460254903e-009 -0.2145028510253935 -0.9767233625249155 0.9938735231494315 0.1060775467690079 0.03103182324655636 -0.9938735231494315 -0.1060775467690079 -0.03103182324655636 0.02469291859595026 -0.1223257281918692 0.9921827835603391 -0.02469291859595026 0.1223257281918692 -0.9921827835603391 0.00748251340675228 0.9999710413922299 -0.001388657645822813 -0.0007751097969328722 0.9999996026545626 0.000440335690215953 -0.03029640124837576 0.9994606427639767 0.01267089725377578 0.03029640124837576 -0.9994606427639767 -0.01267089725377578 0.0007751097969328722 -0.9999996026545626 -0.000440335690215953 -0.00748251340675228 -0.9999710413922299 0.001388657645822813 0.989503388961654 -0.02233416760546805 0.1427733455192977 -0.989503388961654 0.02233416760546805 -0.1427733455192977 -3.404876009399591e-010 -0.08815295950554364 -0.9961069499458449 3.404876009399591e-010 0.08815295950554364 0.9961069499458449 0.0411386407770415 -3.064684165570203e-018 -0.9991534477921885 -0.0411386407770415 3.064684165570203e-018 0.9991534477921885 -0.01427092404631581 -0.0685187381006679 -0.9975477548749014 0.01427092404631581 0.0685187381006679 0.9975477548749014 -0.004907800722363624 0.2005341877099537 0.9796744117570789 0.004907800722363624 -0.2005341877099537 -0.9796744117570789 -0.9242723716676167 -0.03269417253723511 0.3803310059067297 -0.9166378344760666 -0.06690351820570036 0.3940799406957 0.9166378344760666 0.06690351820570036 -0.3940799406957 0.9242723716676167 0.03269417253723511 -0.3803310059067297 0.9939122830165466 0.1054039787532497 0.03206828545183944 -0.9939122830165466 -0.1054039787532497 -0.03206828545183944 0.02133270175206617 -0.08559872865015414 0.9961012867622624 -0.02133270175206617 0.08559872865015414 -0.9961012867622624 0.04084427492219095 0.9991334508123856 -0.00800579001814427 -0.04084427492219095 -0.9991334508123856 0.00800579001814427 -0.02589161929896242 0.9996281125004789 -0.008559249313332249 -0.01033024795755935 0.9999409324432032 -0.003378994192503816 -0.02567501078340835 0.9996355603729615 -0.008339080231465297 0.02567501078340835 -0.9996355603729615 0.008339080231465297 0.01033024795755935 -0.9999409324432032 0.003378994192503816 0.02589161929896242 -0.9996281125004789 0.008559249313332249 0.001654889868512676 -0.4444033375107274 -0.8958252814856531 -0.001654889868512676 0.4444033375107274 0.8958252814856531 0 -1 0 0 -1 0 0 -0.9990387165311067 -0.04383654721666857 -0 0.9990387165311067 0.04383654721666857 -0 1 -0 -0 1 -0 -0.041138663034018 -6.129374969030033e-018 -0.9991534468757908 0.041138663034018 6.129374969030033e-018 0.9991534468757908 0 1 0 -0.01356751355233308 0.9998984483959967 -0.004360673260583247 0.01356751355233308 -0.9998984483959967 0.004360673260583247 -0 -1 -0 0.004907790606368402 0.2005341840537439 0.9796744125561631 -0.004907790606368402 -0.2005341840537439 -0.9796744125561631 0.00310114401148762 0.1954095771429339 0.9807168195083839 -0.00310114401148762 -0.1954095771429339 -0.9807168195083839 0.00541648995331054 0.1962979667575549 0.9805293314753187 -0.00541648995331054 -0.1962979667575549 -0.9805293314753187 -0.9817269690373728 -0.02642036875922447 0.1884519099911692 0.9817269690373728 0.02642036875922447 -0.1884519099911692 -4.734138847979123e-009 0.2326694570985017 0.9725558717798625 4.734138847979123e-009 -0.2326694570985017 -0.9725558717798625 0.9931295480912079 0.1133709359390444 0.02899537191446477 -0.9931295480912079 -0.1133709359390444 -0.02899537191446477 0.0179820440594617 -0.08803435978545028 0.9959551182601603 -0.0179820440594617 0.08803435978545028 -0.9959551182601603 -0.03887165794655145 0.9989838002767033 0.02281142242829177 0.03887165794655145 -0.9989838002767033 -0.02281142242829177 -0.9973482542834168 -0.01150372475800906 -0.0718618396265561 -0.9976513058438805 -0.04571807180863672 -0.05100715496967237 -0.999705072602087 -0.009892700087384557 -0.02217887054467122 0.999705072602087 0.009892700087384557 0.02217887054467122 0.9976513058438805 0.04571807180863672 0.05100715496967237 0.9973482542834168 0.01150372475800906 0.0718618396265561 2.961086036837299e-010 -0.4429273754907279 -0.8965574939962833 -2.961086036837299e-010 0.4429273754907279 0.8965574939962833 -0.001654890613376401 -0.4444033561486889 -0.8958252722383084 0.001654890613376401 0.4444033561486889 0.8958252722383084 -3.394031304407869e-019 -0.9994409791871446 -0.03343245610842094 3.394031304407869e-019 0.9994409791871446 0.03343245610842094 0 -1 0 0 -1 0 -4.805460757006482e-019 -0.9990387077873204 -0.04383674648786176 4.805460757006482e-019 0.9990387077873204 0.04383674648786176 -0 1 -0 -0 1 -0 -0.0008164578700198733 0.9999981144611564 -0.00176195081614317 0.0008164578700198733 -0.9999981144611564 0.00176195081614317 -0.9895034220085447 -0.02233271772348092 0.1427733432839038 0.9895034220085447 0.02233271772348092 -0.1427733432839038 9.255161719245658e-010 0.9999676468122628 -0.008043962254118291 -9.255161719245658e-010 -0.9999676468122628 0.008043962254118291 0.0007751050476572073 0.9999996026584948 0.0004403351199602355 -0.007482544509399058 0.9999710411432887 -0.001388669317023434 0.03029662795841154 0.9994606353720725 0.01267093824475535 -0.03029662795841154 -0.9994606353720725 -0.01267093824475535 0.007482544509399058 -0.9999710411432887 0.001388669317023434 -0.0007751050476572073 -0.9999996026584948 -0.0004403351199602355 0.1045832752325765 0.9943930580433587 -0.01564559544423735 -0.1045832752325765 -0.9943930580433587 0.01564559544423735 -0.9908954987600042 -0.08453192428526146 -0.1047877107002216 0.9908954987600042 0.08453192428526146 0.1047877107002216 -0.987600324858768 -0.072703700674905 -0.1391393914282716 0.987600324858768 0.072703700674905 0.1391393914282716 0.0005327402026250499 -0.2855058741792734 -0.958376811070158 -0.0005327402026250499 0.2855058741792734 0.958376811070158 0.9976185190063851 -0.04573625020724208 -0.05162834446781926 0.9932415657032433 -0.09013428504885948 -0.07312320300766836 0.9997023733211127 -0.009759694602735259 -0.02235873738375898 0.9973354014790976 -0.01165276589655645 -0.07201603990422566 -0.9932415657032433 0.09013428504885948 0.07312320300766836 -0.9997023733211127 0.009759694602735259 0.02235873738375898 -0.9973354014790976 0.01165276589655645 0.07201603990422566 -0.9976185190063851 0.04573625020724208 0.05162834446781926 1.410291816654595e-018 -0.9999323261610292 0.0116337052650082 -1.410291816654595e-018 0.9999323261610292 -0.0116337052650082 3.123119780309943e-019 -0.9994409852759545 -0.03343227408701486 -3.123119780309943e-019 0.9994409852759545 0.03343227408701486 0 1 0 0.0008164581756783618 0.9999981144609226 -0.001761950807225865 -0.0008164581756783618 -0.9999981144609226 0.001761950807225865 -0 -1 -0 0.01033025013843936 0.9999409323895296 -0.003379003408602833 0.01356758032274603 0.9998984472588524 -0.004360726260850447 -0.01356758032274603 -0.9998984472588524 0.004360726260850447 -0.01033025013843936 -0.9999409323895296 0.003379003408602833 0.02589163339415156 0.9996281121180106 -0.008559251343714632 0.02567508100579211 0.9996355580756299 -0.008339139414213367 -0.02567508100579211 -0.9996355580756299 0.008339139414213367 -0.02589163339415156 -0.9996281121180106 0.008559251343714632 -7.364137691395697e-010 0.9999359938074939 -0.01131407478406496 7.364137691395697e-010 -0.9999359938074939 0.01131407478406496 -0.04084474853355217 0.9991334304944088 -0.008005909423994038 0.04084474853355217 -0.9991334304944088 0.008005909423994038 0.08663380591301835 0.9962037664858618 -0.008522869963094761 -0.08663380591301835 -0.9962037664858618 0.008522869963094761 -0.9967825298993301 -0.0447105348500445 -0.06652485370832326 0.9967825298993301 0.0447105348500445 0.06652485370832326 -0.8783033298547853 -0.2320437595006832 -0.4180178877067167 0.8783033298547853 0.2320437595006832 0.4180178877067167 -0.000532740161792093 -0.2855057619596127 -0.9583768445010455 0.000532740161792093 0.2855057619596127 0.9583768445010455 2.537875881418471e-010 -0.2697717871999729 -0.9629242871747148 -2.537875881418471e-010 0.2697717871999729 0.9629242871747148 0.990690887480761 -0.08575286944409223 -0.1057261124069503 -0.990690887480761 0.08575286944409223 0.1057261124069503 0.9875995101078402 -0.07270673036156833 -0.1391435912821163 -0.9875995101078402 0.07270673036156833 0.1391435912821163 -4.820625318444053e-019 -0.9995796764235522 -0.02899086892431474 4.820625318444053e-019 0.9995796764235522 0.02899086892431474 -2.652849202070998e-019 -0.9999323232579478 0.01163395478601814 2.652849202070998e-019 0.9999323232579478 -0.01163395478601814 0.03887190050625438 0.9989837896533671 0.02281147432387656 -0.03887190050625438 -0.9989837896533671 -0.02281147432387656 -0.02212740826631281 0.9987424994696821 0.04498663753236129 0.02212740826631281 -0.9987424994696821 -0.04498663753236129 -0.1337631166327554 0.5108285547050319 -0.8492123505500023 0.1337631166327554 -0.5108285547050319 0.8492123505500023 -0.9323640263889717 -0.1914068041724176 -0.3066932630695479 0.9323640263889717 0.1914068041724176 0.3066932630695479 0.9967824449025985 -0.04470756018247908 -0.06652812635666128 -0.9967824449025985 0.04470756018247908 0.06652812635666128 0.878304663953519 -0.2320436175285829 -0.4180151634112627 -0.878304663953519 0.2320436175285829 0.4180151634112627 -3.173857528627368e-018 -0.999448507723101 -0.0332066320193234 3.173857528627368e-018 0.999448507723101 0.0332066320193234 5.592757879193317e-019 -0.9995796950832848 -0.02899022554598833 -5.592757879193317e-019 0.9995796950832848 0.02899022554598833 -0.1045815532024361 0.9943932453543304 -0.01564520129139864 0.1045815532024361 -0.9943932453543304 0.01564520129139864 -0.1210075744333001 0.9867713021129483 0.1078868122436016 0.1210075744333001 -0.9867713021129483 -0.1078868122436016 -0.462088132140393 0.7429386187509101 -0.4842693123701861 0.462088132140393 -0.7429386187509101 0.4842693123701861 -8.717775860082275e-019 -0.9999830350033698 -0.005824921068072554 8.717775860082275e-019 0.9999830350033698 0.005824921068072554 -0.9965103101143514 -0.07678665601015007 -0.03272630890549316 0.9965103101143514 0.07678665601015007 0.03272630890549316 0.1337633194460965 0.5108296595896843 -0.8492116539792946 -0.1337633194460965 -0.5108296595896843 0.8492116539792946 0.9323701490761447 -0.1913997652358318 -0.3066790422891596 -0.9323701490761447 0.1913997652358318 0.3066790422891596 7.973626678796302e-018 -0.9994485322936126 -0.03320589249129963 -7.973626678796302e-018 0.9994485322936126 0.03320589249129963 -0.08663352748993097 0.9962037903422601 -0.008522911613152079 0.08663352748993097 -0.9962037903422601 0.008522911613152079 -0.4469774344299156 0.513470208436643 -0.7325022308215047 0.4469774344299156 -0.513470208436643 0.7325022308215047 -0.9256712522559258 0.167853255079391 -0.3390545936957635 0.9256712522559258 -0.167853255079391 0.3390545936957635 -2.319304073202425e-018 -0.9649737693459085 -0.2623463826210484 2.319304073202425e-018 0.9649737693459085 0.2623463826210484 -0.9963121731378012 -0.07650231110023816 -0.03885164158377934 0.9963121731378012 0.07650231110023816 0.03885164158377934 0 -0.9656326893104121 -0.259910579498298 -0 0.9656326893104121 0.259910579498298 0.4620909004634785 0.7429386393024869 -0.4842666393013472 -0.4620909004634785 -0.7429386393024869 0.4842666393013472 3.720313159902421e-018 -0.9999830322203812 -0.005825398813118429 -3.720313159902421e-018 0.9999830322203812 0.005825398813118429 0.996510362992616 -0.07678573609388789 -0.03272685717945185 -0.996510362992616 0.07678573609388789 0.03272685717945185 0.02212732636862875 0.9987425008261646 0.04498664769990116 -0.02212732636862875 -0.9987425008261646 -0.04498664769990116 5.197460848859656e-018 0.9771494445064004 -0.2125534358716255 -5.197460848859656e-018 -0.9771494445064004 0.2125534358716255 -8.475559142478103e-019 0.9884947513402278 -0.1512551704002918 8.475559142478103e-019 -0.9884947513402278 0.1512551704002918 -0.9692342821730617 0.1297429946546814 -0.2091689785759472 0.9692342821730617 -0.1297429946546814 0.2091689785759472 -4.134891109695223e-018 -0.8867350737852805 -0.4622779563412182 -4.134891109695223e-018 -0.8867350737852805 -0.4622779563412182 4.134891109695223e-018 0.8867350737852805 0.4622779563412182 4.134891109695223e-018 0.8867350737852805 0.4622779563412182 -0.9962900253079109 -0.08038413385825094 -0.03073396322996985 0.9962900253079109 0.08038413385825094 0.03073396322996985 0.9256731243617642 0.1678507207473665 -0.3390507371750123 -0.9256731243617642 -0.1678507207473665 0.3390507371750123 0.4469772352428111 0.5134695466944448 -0.7325028162349238 -0.4469772352428111 -0.5134695466944448 0.7325028162349238 5.661456373090657e-018 -0.9649736978135386 -0.2623466457343516 -5.661456373090657e-018 0.9649736978135386 0.2623466457343516 0.9963122674049834 -0.07650133516965876 -0.03885114587242723 -0.9963122674049834 0.07650133516965876 0.03885114587242723 -2.234569429237177e-018 -0.9656327065041755 -0.2599105156191658 2.234569429237177e-018 0.9656327065041755 0.2599105156191658 0.1210067927792891 0.9867714148828135 0.1078866575227938 -0.1210067927792891 -0.9867714148828135 -0.1078866575227938 0 0.9866422485374621 -0.1629020362087006 -0 -0.9866422485374621 0.1629020362087006 -0.9967221314255439 0.07840569708791045 -0.01993838987179611 0.9967221314255439 -0.07840569708791045 0.01993838987179611 0 0.9851390618417552 -0.1717586353973112 -0 -0.9851390618417552 0.1717586353973112 2.166155574562098e-017 -0.7895706811088429 -0.6136596284043119 -2.166155574562098e-017 0.7895706811088429 0.6136596284043119 8.914895848239008e-018 -0.7865841596254477 -0.6174830846479343 -8.914895848239008e-018 0.7865841596254477 0.6174830846479343 -0.9962003996229454 -0.08647837290293989 -0.01030799743615296 0.9962003996229454 0.08647837290293989 0.01030799743615296 -1.677845589769437e-018 0.9771494362869531 -0.2125534736580186 1.971565419576037e-019 0.9884947661902032 -0.1512550733515274 -1.971565419576037e-019 -0.9884947661902032 0.1512550733515274 1.677845589769437e-018 -0.9771494362869531 0.2125534736580186 0.9692337674164756 0.1297439298009559 -0.2091707837616668 -0.9692337674164756 -0.1297439298009559 0.2091707837616668 -1.128780193505647e-018 -0.8867350737852805 -0.4622779563412182 -1.021695108512319e-017 -0.8867350737852805 -0.4622779563412181 1.021695108512319e-017 0.8867350737852805 0.4622779563412181 1.128780193505647e-018 0.8867350737852805 0.4622779563412182 0.9962901134102942 -0.08038250755747767 -0.03073536073767557 -0.9962901134102942 0.08038250755747767 0.03073536073767557 -0.9965359278681637 0.0774194785836184 -0.03037052524699822 0.9965359278681637 -0.0774194785836184 0.03037052524699822 0 0.9856521593871221 -0.1687892789708608 -3.533073050874074e-018 0.9801115654826196 -0.1984472705965206 3.533073050874074e-018 -0.9801115654826196 0.1984472705965206 -0 -0.9856521593871221 0.1687892789708608 2.342884402904967e-017 -0.5793540694270123 -0.8150759855610766 -2.342884402904967e-017 0.5793540694270123 0.8150759855610766 1.489903192868899e-017 -0.5683954036936462 -0.8227555317710948 -1.489903192868899e-017 0.5683954036936462 0.8227555317710948 -0.9973577217584451 -0.06876329520585735 -0.02343467689634523 0.9973577217584451 0.06876329520585735 0.02343467689634523 1.257941559232004e-018 0.9866422701885081 -0.1629019050756211 -1.257941559232004e-018 -0.9866422701885081 0.1629019050756211 0.9967223493904013 0.07840420476392516 -0.01993336150816342 -0.9967223493904013 -0.07840420476392516 0.01993336150816342 0 0.9851390633231312 -0.1717586269007288 -0 -0.9851390633231312 0.1717586269007288 -1.793119758484267e-017 -0.7895708206534031 -0.6136594488580058 1.793119758484267e-017 0.7895708206534031 0.6136594488580058 -2.200042870792001e-017 -0.7865842902176107 -0.6174829182923667 2.200042870792001e-017 0.7865842902176107 0.6174829182923667 0.9962004199280746 -0.08647795103243808 -0.01030957420843498 -0.9962004199280746 0.08647795103243808 0.01030957420843498 -3.550744942707794e-018 0.9800675422696868 -0.1986645730608647 5.086179847342662e-018 0.9205827353896554 -0.3905475992788838 -5.086179847342662e-018 -0.9205827353896554 0.3905475992788838 3.550744942707794e-018 -0.9800675422696868 0.1986645730608647 -0.9961397036751403 0.08149595572681781 -0.03262054509318518 0.9961397036751403 -0.08149595572681781 0.03262054509318518 1.727393988152528e-018 -0.3156358666850648 -0.9488803927060397 -1.727393988152528e-018 0.3156358666850648 0.9488803927060397 -0.999042756123289 -0.01552591487896637 -0.04089642288457383 0.999042756123289 0.01552591487896637 0.04089642288457383 7.537306358416392e-018 -0.3069588727487859 -0.9517227802468504 -7.537306358416392e-018 0.3069588727487859 0.9517227802468504 0.9965360246287977 0.07741852079323409 -0.03036979182048899 -0.9965360246287977 -0.07741852079323409 0.03036979182048899 0 0.9856521659491153 -0.168789240651819 0 0.9801115435030257 -0.1984473791515443 -0 -0.9801115435030257 0.1984473791515443 -0 -0.9856521659491153 0.168789240651819 -1.83948316947542e-017 -0.579354092442289 -0.8150759692018723 1.83948316947542e-017 0.579354092442289 0.8150759692018723 -2.337933897370917e-017 -0.5683954594514145 -0.8227554932511939 2.337933897370917e-017 0.5683954594514145 0.8227554932511939 0.9973577533466965 -0.068763183598015 -0.02343365999360792 -0.9973577533466965 0.068763183598015 0.02343365999360792 -8.536066060444724e-018 0.9205827353896554 -0.3905475992788838 8.536066060444724e-018 -0.9205827353896554 0.3905475992788838 -0.9958122648008684 0.0910603185000064 -0.008121063159624241 0.9958122648008684 -0.0910603185000064 0.008121063159624241 -1.469169304093626e-017 0.770026188855712 -0.6380122792520121 1.469169304093626e-017 -0.770026188855712 0.6380122792520121 3.962650399660909e-018 -0.06049888400598817 -0.9981682648902588 -3.056940938661591e-019 -0.05846806307024186 -0.9982892795181236 3.056940938661591e-019 0.05846806307024186 0.9982892795181236 -3.962650399660909e-018 0.06049888400598817 0.9981682648902588 -0.9979843206367407 0.05931566859490737 -0.02255985865119938 0.9979843206367407 -0.05931566859490737 0.02255985865119938 0 0.9800675200453534 -0.1986646826996457 0 0.920584787765236 -0.3905427614682356 -0 -0.920584787765236 0.3905427614682356 -0 -0.9800675200453534 0.1986646826996457 0.9961398268241957 0.08149416357364148 -0.0326212617489593 -0.9961398268241957 -0.08149416357364148 0.0326212617489593 -1.727394869965462e-018 -0.3156357440700538 -0.9488804334927259 1.727394869965462e-018 0.3156357440700538 0.9488804334927259 0.9990426691746329 -0.01552723854632595 -0.04089804434872643 -0.9990426691746329 0.01552723854632595 0.04089804434872643 2.287870097440066e-018 -0.3069588983703188 -0.9517227719831444 -2.287870097440066e-018 0.3069588983703188 0.9517227719831444 -1.299528321634852e-017 0.773243148676752 -0.6341096380157475 -3.446381906211511e-017 0.5575799631598709 -0.8301232346360611 3.446381906211511e-017 -0.5575799631598709 0.8301232346360611 1.299528321634852e-017 -0.773243148676752 0.6341096380157475 1.226597955325728e-017 0.2590089053646115 -0.9658749333851801 -1.226597955325728e-017 -0.2590089053646115 0.9658749333851801 -1.310032251613415e-017 0.247952238821439 -0.9687722576867258 1.310032251613415e-017 -0.247952238821439 0.9687722576867258 -6.811152637076217e-018 0.920584787765236 -0.3905427614682356 6.811152637076217e-018 -0.920584787765236 0.3905427614682356 0.9958123003023679 0.09105983567328287 -0.008122123716212848 -0.9958123003023679 -0.09105983567328287 0.008122123716212848 1.771824390044765e-017 0.7700293506231545 -0.6380084632502011 -1.771824390044765e-017 -0.7700293506231545 0.6380084632502011 1.378782026995277e-017 -0.05846796210489705 -0.9982892854314825 1.578927059184854e-018 -0.06049903045249035 -0.9981682560141394 -1.578927059184854e-018 0.06049903045249035 0.9981682560141394 -1.378782026995277e-017 0.05846796210489705 0.9982892854314825 0.9979844310784948 0.05931458544750328 -0.02255782077515118 -0.9979844310784948 -0.05931458544750328 0.02255782077515118 1.555532412505964e-018 0.5688883171801603 -0.8224147874253753 -1.555532412505964e-018 -0.5688883171801603 0.8224147874253753 1.223150988481862e-017 0.5575780441067687 -0.8301245236288773 -1.191923178912958e-017 0.7732464394526523 -0.6341056251712294 1.191923178912958e-017 -0.7732464394526523 0.6341056251712294 -1.223150988481862e-017 -0.5575780441067687 0.8301245236288773 -2.087010853048018e-017 0.2590068889601615 -0.9658754741016975 2.087010853048018e-017 -0.2590068889601615 0.9658754741016975 -3.148965933286888e-018 0.2479506096265221 -0.9687726746692622 3.148965933286888e-018 -0.2479506096265221 0.9687726746692622 -2.338814768352773e-017 0.5688867081291823 -0.8224159004505826 2.338814768352773e-017 -0.5688867081291823 0.8224159004505826</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1120\" source=\"#ID1492\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1490\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1488\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1489\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1256\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1490\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 0 6 1 4 7 5 0 2 8 9 3 5 1 10 2 3 11 4 6 12 1 4 13 7 6 0 14 15 5 7 8 2 16 17 3 9 14 0 8 9 5 15 2 10 18 19 11 3 1 12 10 11 13 4 20 12 6 7 13 21 6 14 22 23 15 7 16 2 18 19 3 17 8 16 24 25 17 9 14 8 26 27 9 15 18 10 28 29 11 19 10 12 30 31 13 11 12 20 32 33 21 13 20 6 34 35 7 21 36 6 22 23 7 37 38 14 26 27 15 39 16 18 40 41 19 17 16 42 24 25 43 17 26 8 24 25 9 27 18 28 44 45 29 19 10 30 28 29 31 11 12 46 30 31 47 13 48 12 32 33 13 49 32 20 50 51 21 33 20 34 52 53 35 21 6 54 34 35 55 7 36 22 56 57 23 37 6 58 54 55 59 7 38 26 60 61 27 39 40 18 44 45 19 41 16 40 42 43 41 17 24 42 62 63 43 25 26 24 64 65 25 27 28 66 44 45 67 29 28 30 68 69 31 29 70 12 48 49 13 71 46 72 30 31 73 47 74 75 76 77 78 79 50 80 32 33 81 51 20 82 50 51 83 21 20 52 84 85 53 21 52 34 86 87 35 53 34 54 88 89 55 35 54 90 91 92 93 55 38 60 91 92 61 39 60 26 64 65 27 61 40 44 94 95 45 41 40 96 42 43 97 41 42 98 62 63 99 43 24 62 64 65 63 25 44 66 100 101 67 45 28 68 66 67 69 29 102 70 48 49 71 103 46 104 72 73 105 47 106 107 108 109 110 111 76 75 112 113 78 77 114 74 76 77 79 115 32 80 116 117 81 33 50 118 80 81 119 51 20 120 82 83 121 21 50 82 122 123 83 51 20 84 120 121 85 21 84 52 124 125 53 85 124 52 86 87 53 125 86 34 88 89 35 87 88 54 91 92 55 89 96 40 94 95 41 97 94 44 100 101 45 95 98 42 96 97 43 99 98 126 62 63 127 99 62 128 64 65 129 63 100 66 130 131 67 101 102 132 70 71 133 103 134 74 114 115 79 135 104 136 72 73 137 105 107 138 108 109 139 110 140 107 106 111 110 141 142 143 144 145 146 147 148 76 112 113 77 149 150 114 76 77 115 151 116 80 152 153 81 117 80 118 154 155 119 81 118 50 122 123 51 119 82 120 156 157 121 83 122 82 156 157 83 123 120 84 158 159 85 121 158 84 124 125 85 159 96 94 160 161 95 97 160 94 100 101 95 161 96 160 98 99 161 97 98 160 162 163 161 99 62 126 128 129 127 63 100 164 165 166 167 101 66 168 130 131 169 67 170 132 102 103 133 171 172 134 114 115 135 173 174 140 106 111 141 175 104 176 136 137 177 105 108 138 178 179 139 109 180 181 182 183 184 185 186 187 180 185 188 189 144 143 190 191 146 145 192 193 194 195 196 197 198 199 200 201 202 203 172 114 150 151 115 173 204 150 76 77 151 205 144 190 206 207 191 145 156 120 158 159 121 157 100 208 160 161 209 101 160 210 162 163 211 161 128 126 212 213 127 129 164 214 165 166 215 167 100 165 216 217 166 101 130 168 218 219 169 131 220 221 222 223 224 225 170 226 132 133 227 171 228 134 172 173 135 229 230 140 174 175 141 231 136 176 232 233 177 137 182 204 234 235 205 183 108 178 236 237 179 109 181 204 182 183 205 184 187 181 180 185 184 188 238 187 186 189 188 239 240 193 192 197 196 241 192 194 242 243 195 197 198 244 199 202 245 203 204 76 246 247 77 205 172 150 248 249 151 173 181 150 204 205 151 184 208 100 216 217 101 209 160 208 250 251 209 161 162 210 252 253 211 163 254 160 255 256 161 257 258 214 164 167 215 259 260 261 262 263 264 265 266 267 261 264 268 269 168 270 218 219 271 169 272 220 222 223 225 273 220 274 221 224 275 225 276 226 170 171 227 277 278 228 172 173 229 279 280 238 186 189 239 281 282 230 174 175 231 283 176 284 232 233 285 177 204 246 234 235 247 205 236 178 286 287 179 237 181 187 248 249 188 184 238 288 187 188 289 239 290 240 192 197 241 291 292 193 240 241 196 293 192 242 290 291 243 197 198 294 244 245 295 203 234 246 296 297 247 235 278 172 248 249 173 279 181 248 150 151 249 184 208 216 298 299 217 209 250 208 300 301 209 251 255 160 250 251 161 256 212 302 255 256 303 213 258 304 214 215 305 259 260 266 261 264 269 265 306 260 262 263 265 307 266 308 267 268 309 269 274 310 221 224 311 275 218 270 312 313 271 219 272 222 314 315 223 273 316 317 318 319 320 321 322 316 323 324 321 325 326 226 276 277 227 327 328 228 278 279 229 329 330 238 280 281 239 331 332 230 282 283 231 333 232 284 334 335 285 233 236 286 336 337 287 237 187 288 248 249 289 188 238 338 288 289 339 239 240 290 340 341 291 241 342 292 240 241 293 343 242 344 290 291 345 243 278 248 288 289 249 279 346 298 216 217 299 347 348 208 298 299 209 349 300 208 350 351 209 301 250 300 352 353 301 251 255 250 354 355 251 256 354 212 255 256 213 355 356 304 258 259 305 357 306 262 358 359 263 307 360 266 260 265 269 361 360 260 306 307 265 361 362 363 364 365 366 367 346 216 368 369 217 347 266 370 308 309 371 269 274 372 310 311 373 275 270 374 312 313 375 271 317 376 377 378 379 320 314 222 380 381 223 315 318 317 377 378 320 319 323 316 318 319 321 324 382 322 323 324 325 383 384 326 276 277 327 385 386 328 278 279 329 387 238 330 338 339 331 239 388 330 280 281 331 389 390 332 282 283 333 391 334 284 392 393 285 335 386 288 338 339 289 387 290 394 340 341 395 291 396 240 340 341 241 397 342 240 398 399 241 343 290 344 394 395 345 291 386 278 288 289 279 387 346 400 298 299 401 347 402 208 348 349 209 403 348 298 404 405 299 349 350 208 402 403 209 351 300 350 406 407 351 301 352 300 406 407 301 353 354 250 352 353 251 355 356 408 304 305 409 357 410 306 358 359 307 411 360 377 266 269 378 361 412 360 306 307 361 413 362 364 414 415 365 367 346 368 416 417 369 347 396 340 418 419 341 397 420 421 422 423 424 425 372 426 310 311 427 373 428 322 382 383 325 429 312 374 430 431 375 313 377 376 432 433 379 378 314 380 434 435 381 315 360 318 377 378 319 361 323 318 412 413 319 324 436 382 323 324 383 437 384 438 326 327 439 385 440 328 386 387 329 441 330 442 338 339 443 331 444 330 388 389 331 445 446 332 390 391 333 447 284 448 392 393 449 285 450 446 390 391 447 451 452 453 454 455 456 457 458 386 338 339 387 459 340 394 418 419 395 341 398 240 396 397 241 399 346 460 400 401 461 347 404 298 400 401 299 405 402 348 462 463 349 403 462 348 404 405 349 463 350 402 464 465 403 351 406 350 464 465 351 407 356 466 408 409 467 357 410 358 468 469 359 411 412 306 410 411 307 413 266 377 432 433 378 269 412 318 360 361 319 413 414 364 470 471 365 415 472 421 420 425 424 473 372 474 426 427 475 373 476 428 382 383 429 477 374 478 430 431 479 375 376 480 432 433 481 379 434 380 482 483 381 435 436 323 412 413 324 437 484 382 436 437 383 485 486 438 384 385 439 487 438 488 326 327 489 439 458 440 386 387 441 459 444 442 330 331 443 445 458 338 442 443 339 459 490 444 388 389 445 491 448 492 392 393 493 449 494 495 326 327 496 497 498 446 450 451 447 499 452 454 500 501 455 457 502 421 472 473 424 503 464 402 462 463 403 465 466 504 408 409 505 467 506 410 468 469 411 507 436 412 410 411 413 437 474 508 426 427 509 475 510 428 476 477 429 511 476 382 484 485 383 477 478 512 430 431 513 479 484 436 506 507 437 485 514 438 486 487 439 515 516 440 458 459 441 517 518 519 520 521 522 523 488 524 326 327 525 489 444 526 442 443 527 445 528 458 442 443 459 529 530 444 490 491 445 531 492 532 392 393 533 493 448 534 492 493 535 449 536 448 537 538 449 539 524 494 326 327 497 525 540 530 490 491 531 541 542 543 540 541 544 545 546 504 466 467 505 547 506 468 548 549 469 507 436 410 506 507 411 437 474 550 508 509 551 475 552 510 476 477 511 553 554 476 484 485 477 555 430 512 556 557 513 431 550 558 508 509 559 551 560 561 562 563 564 565 484 506 566 567 507 485 568 514 486 487 515 569 570 571 572 573 574 575 528 516 458 459 517 529 576 519 518 523 522 577 571 578 572 573 579 574 580 519 576 577 522 581 528 442 526 527 443 529 530 526 444 445 527 531 532 492 512 513 493 533 492 534 582 583 535 493 448 584 534 535 585 449 586 448 536 539 449 587 536 537 588 589 538 539 588 537 580 581 538 589 530 540 590 591 541 531 540 543 592 593 544 541 546 594 504 505 595 547 596 546 466 467 547 597 566 506 548 549 507 567 598 510 552 553 511 599 554 552 476 477 553 555 554 484 566 567 485 555 600 601 466 467 602 603 492 556 512 513 557 493 550 604 558 559 605 551 606 561 560 565 564 607 608 514 568 569 515 609 610 516 528 529 517 611 612 571 570 575 574 613 588 580 576 577 581 589 614 528 526 527 529 615 530 590 526 527 591 531 543 616 617 618 619 544 534 584 582 583 585 535 492 582 620 621 583 493 586 584 448 449 585 587 590 540 622 623 541 591 592 543 617 618 544 593 540 592 622 623 593 541 546 624 594 595 625 547 626 566 548 549 567 627 628 629 630 631 632 633 634 596 466 467 597 635 636 598 552 553 599 637 638 552 554 555 553 639 554 566 640 641 567 555 601 634 466 467 635 602 556 642 643 644 645 557 492 620 556 557 621 493 617 598 636 637 599 618 646 608 568 569 609 647 648 612 570 575 613 649 614 610 528 529 611 615 614 526 590 591 527 615 584 650 582 583 651 585 620 582 652 653 583 621 654 590 622 623 591 655 592 617 656 657 618 593 622 592 658 659 593 623 624 660 594 595 661 625 662 663 664 665 666 667 640 566 626 627 567 641 628 668 629 632 669 633 664 663 670 671 666 665 628 672 668 669 673 633 638 636 552 553 637 639 638 554 640 641 555 639 643 674 672 673 675 644 556 676 642 645 677 557 643 642 674 675 645 644 556 620 652 653 621 557 617 636 678 679 637 618 680 608 646 647 609 681 614 682 610 611 683 615 684 612 648 649 613 685 686 614 590 591 615 687 650 688 582 583 689 651 652 582 690 691 583 653 692 654 622 623 655 693 654 686 590 591 687 655 658 592 656 657 593 659 656 617 678 679 618 657 692 622 658 659 623 693 624 694 660 661 695 625 696 640 626 627 641 697 698 662 664 665 667 699 672 674 668 669 675 673 678 636 638 639 637 679 638 640 700 701 641 639 676 556 652 653 557 677 702 680 646 647 681 703 704 684 648 649 685 705 686 682 614 615 683 687 582 688 706 707 689 583 690 582 708 709 583 691 710 654 692 693 655 711 712 686 654 655 687 713 658 656 714 715 657 659 656 678 716 717 679 657 718 692 658 659 693 719 694 720 660 661 721 695 722 662 698 699 667 723 696 700 640 641 701 697 678 638 700 701 639 679 724 680 702 703 681 725 726 682 686 687 683 727 728 684 704 705 685 729 688 730 706 707 731 689 582 706 708 709 707 583 732 710 692 693 711 733 710 712 654 655 713 711 734 726 686 687 727 735 718 658 714 715 659 719 714 656 716 717 657 715 716 678 736 737 679 717 732 692 718 719 693 733 694 738 720 721 739 695 740 700 696 697 701 741 742 722 698 699 723 743 678 700 736 737 701 679 744 724 702 703 725 745 746 728 704 705 729 747 730 748 706 707 749 731 708 706 750 751 707 709 752 710 732 733 711 753 754 712 710 711 713 755 756 726 734 735 727 757 718 714 758 759 715 719 714 716 760 761 717 715 716 736 762 763 737 717 764 732 718 719 733 765 738 766 720 721 767 739 768 722 742 743 723 769 740 736 700 701 737 741 770 771 772 773 774 775 756 776 726 727 777 757 706 748 778 779 749 707 730 780 748 749 781 731 706 782 750 751 783 707 784 752 732 733 753 785 752 754 710 711 755 753 764 718 758 759 719 765 758 714 760 761 715 759 760 716 762 763 717 761 786 787 736 737 788 789 784 732 764 765 733 785 738 790 766 767 791 739 740 786 736 737 789 741 792 768 742 743 769 793 794 770 772 773 775 795 796 797 798 799 800 801 748 802 778 779 803 749 706 778 782 783 779 707 804 805 806 807 808 809 750 782 810 811 783 751 797 812 813 814 815 800 764 758 816 817 759 765 758 760 818 819 761 759 760 762 820 821 763 761 786 822 787 788 823 789 784 764 824 825 765 785 790 826 766 767 827 791 828 768 792 793 769 829 830 794 772 773 795 831 798 797 813 814 800 799 832 833 834 835 836 837 778 802 838 839 803 779 778 840 782 783 841 779 842 804 806 807 809 843 844 845 846 847 848 849 813 812 850 851 815 814 824 764 816 817 765 825 816 758 818 819 759 817 818 760 820 821 761 819 852 822 786 789 823 853 812 854 850 851 855 815 856 857 858 859 860 861 862 794 830 831 795 863 832 864 833 836 865 837 866 832 834 835 837 867 778 838 840 841 839 779 802 868 838 839 869 803 870 871 872 873 872 871 874 875 876 875 874 877 842 806 878 879 807 843 846 845 880 881 848 847 854 882 883 884 885 855 882 886 887 888 889 885 886 890 891 892 893 889 850 854 894 895 855 851 857 896 858 859 897 860 898 862 830 831 863 899 900 864 832 837 865 901 902 832 866 867 837 903 838 904 840 841 905 839 838 868 906 907 869 839 870 908 871 873 871 908 909 874 876 874 909 877 872 873 910 911 876 875 912 842 878 879 843 913 846 880 914 915 881 847 854 883 894 895 884 855 882 887 883 884 888 885 886 891 887 888 892 889 896 916 858 859 917 897 918 898 830 831 899 919 920 900 832 837 901 921 832 902 922 923 903 837 838 906 904 905 907 839 908 924 873 876 925 909 873 926 910 911 927 876 912 878 928 929 879 913 914 880 930 931 881 915 896 932 916 917 933 897 934 918 830 831 919 935 936 920 832 837 921 937 938 912 928 929 913 939 940 832 922 923 837 941 924 942 873 876 943 925 926 873 944 945 876 927 914 930 946 947 931 915 932 948 916 917 949 933 950 920 936 937 921 951 952 936 832 837 937 953 938 928 954 955 929 939 956 832 940 941 837 957 958 938 954 955 939 959 942 960 873 876 961 943 946 930 962 963 931 947 873 964 944 945 965 876 948 966 916 917 967 949 968 950 936 937 951 969 968 936 970 971 937 969 972 952 832 837 953 973 974 958 975 976 959 977 978 832 956 957 837 979 958 954 975 976 955 959 960 980 873 876 981 961 942 982 960 961 983 943 946 962 984 985 963 947 873 986 964 965 987 876 984 962 988 989 963 985 966 990 916 917 991 967 992 968 970 971 969 993 994 972 832 837 973 995 992 970 996 997 971 993 974 975 998 999 976 977 1000 974 998 999 977 1001 1002 832 978 979 837 1003 960 1004 1005 1006 1007 961 980 1008 873 876 1009 981 960 982 1004 1007 983 961 1010 988 1011 1012 989 1013 873 1014 986 987 1015 876 984 988 1010 1013 989 985 1016 994 832 837 995 1017 1018 996 1019 1020 997 1021 1018 992 996 997 993 1021 998 1022 1000 1001 1023 999 1000 1022 1024 1025 1023 1001 1026 832 1002 1003 837 1027 1005 1004 1028 1029 1007 1006 1008 1030 873 876 1031 1009 1005 1028 1032 1033 1029 1006 1010 1011 1034 1035 1012 1013 1034 1011 1036 1037 1012 1035 873 1038 1014 1015 1039 876 1040 1019 1041 1042 1020 1043 1044 1016 832 837 1017 1045 1040 1018 1019 1020 1021 1043 1022 1046 1024 1025 1047 1023 1048 832 1026 1027 837 1049 1024 1046 1050 1051 1047 1025 1030 1052 873 876 1053 1031 1032 1054 1055 1056 1057 1033 1032 1028 1054 1057 1029 1033 1036 1058 1034 1035 1059 1037 1036 1060 1058 1059 1061 1037 873 1062 1038 1039 1063 876 1064 1040 1041 1042 1043 1065 1066 1044 832 837 1045 1067 1064 1041 1068 1069 1042 1065 1050 1070 1071 1072 1073 1051 1074 832 1048 1049 837 1075 1046 1070 1050 1051 1073 1047 1055 1076 1077 1078 1079 1056 1052 1080 873 876 1081 1053 1055 1054 1076 1079 1057 1056 1060 1082 1058 1059 1083 1061 873 1084 1062 1063 1085 876 1060 1086 1082 1083 1087 1061 1074 1066 832 837 1067 1075 1088 1068 1089 1090 1069 1091 1088 1064 1068 1069 1065 1091 1070 1092 1071 1072 1093 1073 1092 1094 1071 1072 1095 1093 1077 1076 1096 1097 1079 1078 1080 1098 873 876 1099 1081 1077 1096 1100 1101 1097 1078 1086 1102 1103 1104 1105 1087 873 1106 1084 1085 1107 876 1086 1103 1082 1083 1104 1087 1108 1089 1094 1095 1090 1109 1108 1088 1089 1090 1091 1109 1092 1108 1094 1095 1109 1093 1098 1106 873 876 1107 1099 1110 1100 1111 1112 1101 1113 1100 1096 1111 1112 1097 1101 1103 1102 1114 1115 1105 1104 1102 1116 1114 1115 1117 1105 1116 1110 1118 1119 1113 1117 1118 1110 1111 1112 1113 1119 1114 1116 1118 1119 1117 1115</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1493\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1494\">\r\n\t\t\t\t\t<float_array count=\"438\" id=\"ID1497\">-0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.2027863264083862 -1.073487997055054 0.3571899831295013 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.2027863264083862 -1.073487997055054 0.3571899831295013 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.001449317671358585 -1.071282982826233 0.3571899831295013 -0.001449317671358585 -1.071282982826233 0.3571899831295013 -0.5202267169952393 -1.066875219345093 0.3566815555095673 -0.5202267169952393 -1.066875219345093 0.3566815555095673 0.1998874694108963 -1.073487997055054 0.3571899831295013 0.1998874694108963 -1.073487997055054 0.3571899831295013 -0.2034463435411453 -1.0250403881073 0.4070454835891724 -0.2034463435411453 -1.0250403881073 0.4070454835891724 -0.5110751390457153 -1.023176193237305 0.4070454835891724 -0.5110751390457153 -1.023176193237305 0.4070454835891724 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.5227118730545044 -1.09248673915863 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.2005475461483002 -1.0250403881073 0.4070454835891724 0.2005475461483002 -1.0250403881073 0.4070454835891724 -0.001449264585971832 -1.0250403881073 0.4070454835891724 -0.001449264585971832 -1.0250403881073 0.4070454835891724 -0.5803182721138001 -1.014520287513733 0.4069845676422119 -0.5803182721138001 -1.014520287513733 0.4069845676422119 -0.6076786518096924 -1.055238604545593 0.3565012812614441 -0.6076786518096924 -1.055238604545593 0.3565012812614441 0.5173282623291016 -1.066875219345093 0.3566815555095673 0.5173282623291016 -1.066875219345093 0.3566815555095673 0.5081762075424194 -1.023176193237305 0.4070454835891724 0.5081762075424194 -1.023176193237305 0.4070454835891724 -0.2034463435411453 -0.9802029728889465 0.4227888584136963 -0.2034463435411453 -0.9802029728889465 0.4227888584136963 -0.5032289624214172 -0.9798094630241394 0.4227888584136963 -0.5032289624214172 -0.9798094630241394 0.4227888584136963 -0.5651706457138062 -0.9790123105049133 0.4227888584136963 -0.5651706457138062 -0.9790123105049133 0.4227888584136963 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.6228487491607666 -1.078431725502014 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5003302693367004 -0.9798094630241394 0.4227888584136963 0.5003302693367004 -0.9798094630241394 0.4227888584136963 0.2005475461483002 -0.9802029728889465 0.4227888584136963 0.2005475461483002 -0.9802029728889465 0.4227888584136963 -0.001449264585971832 -0.9774380326271057 0.4227888584136963 -0.001449264585971832 -0.9774380326271057 0.4227888584136963 -0.5889738202095032 -0.9703580737113953 0.4228299856185913 -0.5889738202095032 -0.9703580737113953 0.4228299856185913 -0.6072395443916321 -1.003041625022888 0.4070454835891724 -0.6072395443916321 -1.003041625022888 0.4070454835891724 -0.6396746635437012 -1.03993558883667 0.3565011620521545 -0.6396746635437012 -1.03993558883667 0.3565011620521545 0.6047801375389099 -1.055238604545593 0.3565012812614441 0.6047801375389099 -1.055238604545593 0.3565012812614441 0.5774192214012146 -1.014520287513733 0.4069845676422119 0.5774192214012146 -1.014520287513733 0.4069845676422119 0.5622721910476685 -0.9790123105049133 0.4227888584136963 0.5622721910476685 -0.9790123105049133 0.4227888584136963 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.6555055379867554 -1.058401465415955 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.2032903134822846 -0.9188514351844788 0.4277473092079163 0.2032903134822846 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.6052019596099854 -0.9562928080558777 0.4228299856185913 -0.6052019596099854 -0.9562928080558777 0.4228299856185913 -0.6279228329658508 -0.9917994141578674 0.4070454835891724 -0.6279228329658508 -0.9917994141578674 0.4070454835891724 -0.6603804230690002 -1.012173652648926 0.3565012216567993 -0.6603804230690002 -1.012173652648926 0.3565012216567993 0.636775553226471 -1.03993558883667 0.3565011620521545 0.636775553226471 -1.03993558883667 0.3565011620521545 0.6043407917022705 -1.003041625022888 0.4070454835891724 0.6043407917022705 -1.003041625022888 0.4070454835891724 0.5860748887062073 -0.9703580737113953 0.4228299856185913 0.5860748887062073 -0.9703580737113953 0.4228299856185913 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.683056652545929 -1.024173378944397 0.3421223759651184 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.6526064276695252 -1.058401465415955 0.3392031490802765 -0.6355372071266174 -0.8487778306007385 0.4070375561714172 -0.6355372071266174 -0.8487778306007385 0.4070375561714172 -0.6531206369400024 -0.8487778306007385 0.3929504156112671 -0.6531206369400024 -0.8487778306007385 0.3929504156112671 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.6910825967788696 -0.8380230665206909 0.352030873298645 0.6574813723564148 -1.012173652648926 0.3565012216567993 0.6574813723564148 -1.012173652648926 0.3565012216567993 0.6250237822532654 -0.9917994141578674 0.4070454835891724 0.6250237822532654 -0.9917994141578674 0.4070454835891724 0.602303683757782 -0.9562928080558777 0.4228299856185913 0.602303683757782 -0.9562928080558777 0.4228299856185913 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6718029379844666 -0.8377653956413269 0.3578441739082336 -0.6718029379844666 -0.8377653956413269 0.3578441739082336 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6502217650413513 -0.8487778306007385 0.3929504156112671 0.6502217650413513 -0.8487778306007385 0.3929504156112671 0.6326382160186768 -0.8487778306007385 0.4070375561714172 0.6326382160186768 -0.8487778306007385 0.4070375561714172 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 0.6689043045043945 -0.8377653956413269 0.3578441739082336 0.6689043045043945 -0.8377653956413269 0.3578441739082336 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"146\" source=\"#ID1497\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1495\">\r\n\t\t\t\t\t<float_array count=\"438\" id=\"ID1498\">-0.005662748884652038 -0.3003436078411413 0.9538142641542096 -0.004958250870822625 -0.663702973508031 0.7479797983267328 -1.07869099120766e-009 -0.2576574119967494 0.9662363365363245 1.07869099120766e-009 0.2576574119967494 -0.9662363365363245 0.004958250870822625 0.663702973508031 -0.7479797983267328 0.005662748884652038 0.3003436078411413 -0.9538142641542096 -2.372597894113113e-009 -0.6365373962141622 0.7712458383815724 2.372597894113113e-009 0.6365373962141622 -0.7712458383815724 -0.05062296754243888 -0.658588521188452 0.7507985581472603 0.05062296754243888 0.658588521188452 -0.7507985581472603 0.004958239794221573 -0.6637029536472272 0.7479798160231928 -0.004958239794221573 0.6637029536472272 -0.7479798160231928 0.0003101519018471342 -0.5400639855969268 0.8416239036927126 -0.0003101519018471342 0.5400639855969268 -0.8416239036927126 -0.03373737267444298 -0.571531831791014 0.8198860621663439 0.03373737267444298 0.571531831791014 -0.8198860621663439 -0.01969785890737417 -0.2616664220722393 0.9649573451269117 0.01969785890737417 0.2616664220722393 -0.9649573451269117 0.005662748672241021 -0.3003435921545434 0.9538142690949744 -0.005662748672241021 0.3003435921545434 -0.9538142690949744 -0.0003101511477583259 -0.5400639863074525 0.8416239032370512 0.0003101511477583259 0.5400639863074525 -0.8416239032370512 -1.047140219661615e-009 -0.5417635515779979 0.8405309358861184 1.047140219661615e-009 0.5417635515779979 -0.8405309358861184 -0.1456617391791251 -0.5690161591534998 0.8093227220098986 0.1456617391791251 0.5690161591534998 -0.8093227220098986 -0.1803519318601171 -0.6134749525573249 0.7688443686853091 0.1803519318601171 0.6134749525573249 -0.7688443686853091 0.05062320118724138 -0.6585884825921694 0.750798576249649 -0.05062320118724138 0.6585884825921694 -0.750798576249649 0.03373728297714376 -0.571531725438843 0.8198861399939744 -0.03373728297714376 0.571531725438843 -0.8198861399939744 -0.001154009035315631 -0.2065151984626948 0.9784427122049916 0.001154009035315631 0.2065151984626948 -0.9784427122049916 -0.001686019370673894 -0.1977884537775508 0.9802432784217228 0.001686019370673894 0.1977884537775508 -0.9802432784217228 -0.04843642768347421 -0.2158089521412255 0.975233514933203 0.04843642768347421 0.2158089521412255 -0.975233514933203 -0.0771747638042234 -0.2197377985821765 0.9725015967627102 0.0771747638042234 0.2197377985821765 -0.9725015967627102 0.01969778337526758 -0.2616666146433107 0.9649572944494539 -0.01969778337526758 0.2616666146433107 -0.9649572944494539 0.001686017598503319 -0.1977884587910386 0.9802432774131753 -0.001686017598503319 0.1977884587910386 -0.9802432774131753 0.001154004466121158 -0.2065152029394589 0.9784427112654918 -0.001154004466121158 0.2065152029394589 -0.9784427112654918 -1.213845109435125e-009 -0.183784508905539 0.9829665580712041 1.213845109435125e-009 0.183784508905539 -0.9829665580712041 -0.1145861315951627 -0.1902762129514024 0.9750205029797725 0.1145861315951627 0.1902762129514024 -0.9750205029797725 -0.2521009452976371 -0.5079576817782719 0.8236650453324347 0.2521009452976371 0.5079576817782719 -0.8236650453324347 -0.4123732310645685 -0.5040732699400515 0.7588533829622899 0.4123732310645685 0.5040732699400515 -0.7588533829622899 0.1803539988353248 -0.6134741762408932 0.7688445032577559 -0.1803539988353248 0.6134741762408932 -0.7688445032577559 0.1456605441840856 -0.569016061049941 0.8093230060582769 -0.1456605441840856 0.569016061049941 -0.8093230060582769 0.04843747151955567 -0.2158095166861311 0.9752333381609197 -0.04843747151955567 0.2158095166861311 -0.9752333381609197 0.009401250144782504 0.3008855372065615 0.9536139208273095 -0.009401250144782504 -0.3008855372065615 -0.9536139208273095 0.05052979851625714 0.2432052738812564 0.9686578003703111 -0.05052979851625714 -0.2432052738812564 -0.9686578003703111 0.1138664131417217 0.232912953725105 0.9658084675261892 -0.1138664131417217 -0.232912953725105 -0.9658084675261892 -0.1091464427993047 -0.1854747968576843 0.9765685607036809 0.1091464427993047 0.1854747968576843 -0.9765685607036809 0.07717520035315093 -0.2197372978899333 0.9725016752512469 -0.07717520035315093 0.2197372978899333 -0.9725016752512469 -0.05052997868541467 0.2432047259207096 0.9686579285505717 0.05052997868541467 -0.2432047259207096 -0.9686579285505717 -0.009401248097297095 0.3008855179818873 0.9536139269132895 0.009401248097297095 -0.3008855179818873 -0.9536139269132895 1.715447736761821e-009 0.2481218125350861 0.9687288403595217 -1.715447736761821e-009 -0.2481218125350861 -0.9687288403595217 -0.2784405634250393 -0.0765847600931651 0.9573952303834706 0.2784405634250393 0.0765847600931651 -0.9573952303834706 -0.5315739033317701 -0.3193684087267559 0.7844953822706452 0.5315739033317701 0.3193684087267559 -0.7844953822706452 -0.5943067986228019 -0.2534906281099632 0.7632443452598471 0.5943067986228019 0.2534906281099632 -0.7632443452598471 0.4123749716343679 -0.5040727249996686 0.7588527990862015 -0.4123749716343679 0.5040727249996686 -0.7588527990862015 0.2521017102364427 -0.5079580221528142 0.8236646012950064 -0.2521017102364427 0.5079580221528142 -0.8236646012950064 0.1145832480102491 -0.1902760513495413 0.9750208733961794 -0.1145832480102491 0.1902760513495413 -0.9750208733961794 -0.1138663683946042 0.2329141275011871 0.9658081897348899 0.1138663683946042 -0.2329141275011871 -0.9658081897348899 0.1030468669472135 0.2216429896176415 0.9696678443496605 -0.1030468669472135 -0.2216429896176415 -0.9696678443496605 -0.1228183054958481 -0.111129705670554 0.9861875340688021 0.1228183054958481 0.111129705670554 -0.9861875340688021 0.1091488696533336 -0.1854757037912854 0.9765681172127867 -0.1091488696533336 0.1854757037912854 -0.9765681172127867 -0.4531054072318778 0.04326566030068675 0.8904064086561708 0.4531054072318778 -0.04326566030068675 -0.8904064086561708 -0.76979622301074 -0.018849408134265 0.6380113438265709 0.76979622301074 0.018849408134265 -0.6380113438265709 -0.2476666920797232 -0.02438408932794591 0.9685383966688849 0.2476666920797232 0.02438408932794591 -0.9685383966688849 0.5943031912732282 -0.2534917515070076 0.7632467810350505 -0.5943031912732282 0.2534917515070076 -0.7632467810350505 0.5315755300349619 -0.3193689405572947 0.784494063505493 -0.5315755300349619 0.3193689405572947 -0.784494063505493 0.2784462538371627 -0.07658606360023611 0.9573934711424926 -0.2784462538371627 0.07658606360023611 -0.9573934711424926 0.1114224209044949 0.1676835182573328 0.979524007783691 -0.1114224209044949 -0.1676835182573328 -0.979524007783691 -0.6323090853057036 -0.03335460635571474 0.7739978623192184 0.6323090853057036 0.03335460635571474 -0.7739978623192184 0.1228143137468341 -0.1111288314674064 0.9861881296971603 -0.1228143137468341 0.1111288314674064 -0.9861881296971603 -0.1030444216764338 0.2216419275986339 0.9696683469577272 0.1030444216764338 -0.2216419275986339 -0.9696683469577272 -0.5736763948085086 0.3276465503718861 0.7506950992706128 0.5736763948085086 -0.3276465503718861 -0.7506950992706128 -0.2441943401385535 0.4431550853429167 0.8625443145595528 0.2441943401385535 -0.4431550853429167 -0.8625443145595528 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 -0.1422524387013631 0.08650520172209436 0.9860431500489898 0.1422524387013631 -0.08650520172209436 -0.9860431500489898 0.2476665877536164 -0.02438400563172669 0.9685384254534418 -0.2476665877536164 0.02438400563172669 -0.9685384254534418 0.7697936430402944 -0.01885005181698557 0.63801443767461 -0.7697936430402944 0.01885005181698557 -0.63801443767461 0.4531049316146203 0.04326603676424462 0.8904066323928778 -0.4531049316146203 -0.04326603676424462 -0.8904066323928778 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 0.6323069370255796 -0.03335520396877564 0.7739995915745248 -0.6323069370255796 0.03335520396877564 -0.7739995915745248 -0.1114237979693154 0.1676831763354625 0.9795239096725221 0.1114237979693154 -0.1676831763354625 -0.9795239096725221 0.1422539534903038 0.08650680782154999 0.9860427906114946 -0.1422539534903038 -0.08650680782154999 -0.9860427906114946 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 0.5736724490507156 0.3276483942267879 0.7506973098131908 -0.5736724490507156 -0.3276483942267879 -0.7506973098131908 0.2441976709347891 0.4431556628268767 0.8625430748748124 -0.2441976709347891 -0.4431556628268767 -0.8625430748748124 -0.1983818612641697 0.4627947061566479 0.8639824634069522 0.1983818612641697 -0.4627947061566479 -0.8639824634069522</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"146\" source=\"#ID1498\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1496\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1494\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1495\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"220\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1496\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 2 1 6 7 4 3 8 1 0 5 4 9 2 6 10 11 7 3 6 1 12 13 4 7 1 8 14 15 9 4 16 8 0 5 9 17 18 2 10 11 3 19 10 6 20 21 7 11 22 6 12 13 7 23 12 1 14 15 4 13 8 24 14 15 25 9 16 26 8 9 27 17 18 10 28 29 11 19 30 10 20 21 11 31 20 6 22 23 7 21 12 32 22 23 33 13 14 34 12 13 35 15 24 36 14 15 37 25 8 26 24 25 27 9 38 26 16 17 27 39 18 28 40 41 29 19 28 10 30 31 11 29 20 42 30 31 43 21 20 22 44 45 23 21 22 32 46 47 33 23 12 34 32 33 35 13 14 36 34 35 37 15 24 48 36 37 49 25 26 50 24 25 51 27 38 52 26 27 53 39 40 28 54 55 29 41 56 28 30 31 29 57 30 42 58 59 43 31 20 44 42 43 45 21 22 46 44 45 47 23 32 60 46 47 61 33 34 62 32 33 63 35 36 62 34 35 63 37 50 48 24 25 49 51 36 48 64 65 49 37 26 52 50 51 53 27 66 52 38 39 53 67 40 54 68 69 55 41 54 28 56 57 29 55 30 58 56 57 59 31 42 70 58 59 71 43 42 44 70 71 45 43 44 46 72 73 47 45 62 60 32 33 61 63 46 60 74 75 61 47 36 64 62 63 65 37 50 76 48 49 77 51 48 76 64 65 77 49 52 78 50 51 79 53 66 80 52 53 81 67 68 54 82 83 55 69 56 84 54 55 85 57 56 58 86 87 59 57 70 88 58 59 89 71 44 72 70 71 73 45 46 74 72 73 75 47 50 78 76 77 79 51 76 90 64 65 91 77 52 80 78 79 81 53 92 80 66 67 81 93 68 82 94 95 83 69 54 84 82 83 85 55 56 86 84 85 87 57 58 88 86 87 89 59 78 96 76 77 97 79 76 96 90 91 97 77 78 80 98 99 81 79 92 100 80 81 101 93 94 82 102 103 83 95 84 104 82 83 105 85 86 106 84 85 107 87 86 88 106 107 89 87 98 96 78 79 97 99 96 108 90 91 109 97 98 80 110 111 81 99 100 110 80 81 111 101 94 102 112 113 103 95 102 82 104 105 83 103 84 106 104 105 107 85 88 114 106 107 115 89 98 116 96 97 117 99 96 118 108 109 119 97 98 110 120 121 111 99 100 122 110 111 123 101 112 102 124 125 103 113 102 104 126 127 105 103 104 106 128 129 107 105 106 114 128 129 115 107 116 98 120 121 99 117 116 118 96 97 119 117 118 130 108 109 131 119 122 120 110 111 121 123 102 132 124 125 133 103 102 126 132 133 127 103 104 128 126 127 129 105 114 134 128 129 135 115 124 132 136 137 133 125 132 126 138 139 127 133 126 128 140 141 129 127 128 134 142 143 135 129 132 138 136 137 139 133 138 126 140 141 127 139 128 142 140 141 143 129 134 144 142 143 145 135</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1499\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1500\">\r\n\t\t\t\t\t<float_array count=\"768\" id=\"ID1503\">-0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9008265137672424 0.407900333404541 -0.001449264585971832 -0.9008265137672424 0.407900333404541 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 0.2032903134822846 -0.9188514351844788 0.4277473092079163 0.2032903134822846 -0.9188514351844788 0.4277473092079163 -0.2058618664741516 -0.8905866146087647 0.4041489362716675 -0.2058618664741516 -0.8905866146087647 0.4041489362716675 0.2029633522033691 -0.8905866146087647 0.4041489362716675 0.2029633522033691 -0.8905866146087647 0.4041489362716675 -0.001449264585971832 -0.8642953038215637 0.2873175442218781 -0.001449264585971832 -0.8642953038215637 0.2873175442218781 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 -0.2091975510120392 -0.8604845404624939 0.28980353474617 -0.2091975510120392 -0.8604845404624939 0.28980353474617 -0.5089024901390076 -0.88034588098526 0.4033911228179932 -0.5089024901390076 -0.88034588098526 0.4033911228179932 0.5060030221939087 -0.88034588098526 0.4033911228179932 0.5060030221939087 -0.88034588098526 0.4033911228179932 0.2062989473342896 -0.8604845404624939 0.28980353474617 0.2062989473342896 -0.8604845404624939 0.28980353474617 -0.2169111371040344 -0.850664496421814 0.2308530360460281 -0.2169111371040344 -0.850664496421814 0.2308530360460281 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.5592859983444214 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.2140122205018997 -0.850664496421814 0.2308530360460281 0.2140122205018997 -0.850664496421814 0.2308530360460281 -0.001449264585971832 -0.8544549345970154 0.226887509226799 -0.001449264585971832 -0.8544549345970154 0.226887509226799 -0.4991267025470734 -0.8247990608215332 0.2303560227155685 -0.4991267025470734 -0.8247990608215332 0.2303560227155685 -0.4822732210159302 -0.8412036895751953 0.3024190962314606 -0.4822732210159302 -0.8412036895751953 0.3024190962314606 -0.5360015034675598 -0.8629845380783081 0.4011168479919434 -0.5360015034675598 -0.8629845380783081 0.4011168479919434 0.5331027507781982 -0.8629845380783081 0.4011168479919434 0.5331027507781982 -0.8629845380783081 0.4011168479919434 0.4793746471405029 -0.8412036895751953 0.3024190962314606 0.4793746471405029 -0.8412036895751953 0.3024190962314606 0.4962282776832581 -0.8247990608215332 0.2303560227155685 0.4962282776832581 -0.8247990608215332 0.2303560227155685 -0.2233303785324097 -0.8408377170562744 0.155529111623764 -0.2233303785324097 -0.8408377170562744 0.155529111623764 -0.5103840827941895 -0.8105360865592957 0.1526265740394592 -0.5103840827941895 -0.8105360865592957 0.1526265740394592 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5074851512908936 -0.8105360865592957 0.1526265740394592 0.5074851512908936 -0.8105360865592957 0.1526265740394592 0.2204316407442093 -0.8408377170562744 0.155529111623764 0.2204316407442093 -0.8408377170562744 0.155529111623764 -0.001449264585971832 -0.8478066325187683 0.1633798182010651 -0.001449264585971832 -0.8478066325187683 0.1633798182010651 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5080633759498596 -0.8316804766654968 0.2988536059856415 0.5080633759498596 -0.8316804766654968 0.2988536059856415 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.5774928331375122 -0.7780205607414246 0.1524880826473236 -0.2308849394321442 -0.8047881722450256 0.0218891017138958 -0.2308849394321442 -0.8047881722450256 0.0218891017138958 -0.5296268463134766 -0.7695713043212891 0.02064040675759316 -0.5296268463134766 -0.7695713043212891 0.02064040675759316 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5267279148101807 -0.7695713043212891 0.02064040675759316 0.5267279148101807 -0.7695713043212891 0.02064040675759316 0.2279863953590393 -0.8047881722450256 0.0218891017138958 0.2279863953590393 -0.8047881722450256 0.0218891017138958 -0.001449264585971832 -0.811660647392273 0.02170788124203682 -0.001449264585971832 -0.811660647392273 0.02170788124203682 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5562193989753723 -0.8102383017539978 0.2943964898586273 -0.2359215766191483 -0.7559671401977539 -0.10956010222435 -0.2359215766191483 -0.7559671401977539 -0.10956010222435 -0.5445342063903809 -0.7176461219787598 -0.1151830404996872 -0.5445342063903809 -0.7176461219787598 -0.1151830404996872 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5416357517242432 -0.7176461219787598 -0.1151830404996872 0.5416357517242432 -0.7176461219787598 -0.1151830404996872 0.2330227941274643 -0.7559671401977539 -0.10956010222435 0.2330227941274643 -0.7559671401977539 -0.10956010222435 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449264585971832 -0.7628392577171326 -0.1150786280632019 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449264585971832 -0.7628392577171326 -0.1150786280632019 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.596644401550293 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 -0.2399774938821793 -0.6989214420318604 -0.2486914843320847 -0.2399774938821793 -0.6989214420318604 -0.2486914843320847 -0.5503517985343933 -0.6690559387207031 -0.2467941492795944 -0.5503517985343933 -0.6690559387207031 -0.2467941492795944 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.5474526286125183 -0.6690559387207031 -0.2467941492795944 0.5474526286125183 -0.6690559387207031 -0.2467941492795944 0.2370787858963013 -0.6989214420318604 -0.2486914843320847 0.2370787858963013 -0.6989214420318604 -0.2486914843320847 -0.001449264585971832 -0.7057934999465942 -0.2469800859689713 -0.001449264585971832 -0.7057934999465942 -0.2469800859689713 0.6237722635269165 -0.666684091091156 0.3805446624755859 0.6237722635269165 -0.666684091091156 0.3805446624755859 -0.2416535615921021 -0.6776809096336365 -0.2738118767738342 -0.2416535615921021 -0.6776809096336365 -0.2738118767738342 -0.5451606512069702 -0.6392850279808044 -0.2739138007164002 -0.5451606512069702 -0.6392850279808044 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5422620177268982 -0.6392850279808044 -0.2739138603210449 0.5422620177268982 -0.6392850279808044 -0.2739138603210449 0.2387548983097076 -0.6776809096336365 -0.2738119065761566 0.2387548983097076 -0.6776809096336365 -0.2738119065761566 -0.001449264585971832 -0.684722900390625 -0.2738119065761566 -0.001449264585971832 -0.684722900390625 -0.2738119065761566 0.6344869732856751 -0.6666867136955261 0.380647212266922 0.6344869732856751 -0.6666867136955261 0.380647212266922 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.6099106073379517 -0.6618664264678955 0.2912401556968689 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.4858808219432831 -0.459694117307663 -0.2738118767738342 -0.4858808219432831 -0.459694117307663 -0.2738118767738342 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.4829820096492767 -0.459694117307663 -0.2738119065761566 0.4829820096492767 -0.459694117307663 -0.2738119065761566 0.08564969897270203 -0.4586217701435089 -0.2738119065761566 0.08564969897270203 -0.4586217701435089 -0.2738119065761566 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 -0.08879685401916504 -0.07529165595769882 -0.2738118767738342 -0.08879685401916504 -0.07529165595769882 -0.2738118767738342 -0.4861236810684204 -0.07529165595769882 -0.2738118767738342 -0.4861236810684204 -0.07529165595769882 -0.2738118767738342 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.4832248687744141 -0.07529165595769882 -0.2738119065761566 0.4832248687744141 -0.07529165595769882 -0.2738119065761566 0.0858980268239975 -0.07529165595769882 -0.2738119065761566 0.0858980268239975 -0.07529165595769882 -0.2738119065761566 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 0.6728364825248718 -0.6232461929321289 0.151445209980011 0.6728364825248718 -0.6232461929321289 0.151445209980011 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 -0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 -0.1051686182618141 0.3285070955753326 -0.2738118767738342 -0.1051686182618141 0.3285070955753326 -0.2738118767738342 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.6822202205657959 -0.5696841478347778 0.01786315068602562 0.6822202205657959 -0.5696841478347778 0.01786315068602562 0.1022694855928421 0.3285070955753326 -0.2738119065761566 0.1022694855928421 0.3285070955753326 -0.2738119065761566 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.6822202205657959 -0.5125510692596436 -0.1188254952430725 0.6822202205657959 -0.5125510692596436 -0.1188254952430725 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"256\" source=\"#ID1503\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1501\">\r\n\t\t\t\t\t<float_array count=\"768\" id=\"ID1504\">1.715447736761821e-009 0.2481218125350861 0.9687288403595217 0.009401250144782504 0.3008855372065615 0.9536139208273095 2.035422321482497e-009 0.7939846868735797 0.6079377575132702 -2.035422321482497e-009 -0.7939846868735797 -0.6079377575132702 -0.009401250144782504 -0.3008855372065615 -0.9536139208273095 -1.715447736761821e-009 -0.2481218125350861 -0.9687288403595217 -0.009401248097297095 0.3008855179818873 0.9536139269132895 0.009401248097297095 -0.3008855179818873 -0.9536139269132895 0.02583369656101249 0.8431526023843547 0.5370533578840037 -0.02583369656101249 -0.8431526023843547 -0.5370533578840037 -0.02583373351476824 0.843152589493277 0.5370533763449116 0.02583373351476824 -0.843152589493277 -0.5370533763449116 -8.169983004136007e-009 0.9756019101559423 0.219547063064111 8.169983004136007e-009 -0.9756019101559423 -0.219547063064111 0.05052979851625714 0.2432052738812564 0.9686578003703111 -0.05052979851625714 -0.2432052738812564 -0.9686578003703111 -0.05052997868541467 0.2432047259207096 0.9686579285505717 0.05052997868541467 -0.2432047259207096 -0.9686579285505717 0.04201646249544194 0.9757956725274732 0.2146099307022518 -0.04201646249544194 -0.9757956725274732 -0.2146099307022518 0.2080929561113531 0.742062843676496 0.6372127255882378 -0.2080929561113531 -0.742062843676496 -0.6372127255882378 -0.208089506830558 0.7420653365720928 0.6372109489055893 0.208089506830558 -0.7420653365720928 -0.6372109489055893 -0.04201651599233937 0.975795648809786 0.2146100280689472 0.04201651599233937 -0.975795648809786 -0.2146100280689472 0.05801343365966621 0.9880929435038131 0.1425018474020108 -0.05801343365966621 -0.9880929435038131 -0.1425018474020108 0.1138664131417217 0.232912953725105 0.9658084675261892 -0.1138664131417217 -0.232912953725105 -0.9658084675261892 -0.1138663683946042 0.2329141275011871 0.9658081897348899 0.1138663683946042 -0.2329141275011871 -0.9658081897348899 -0.05801332090299661 0.9880929317009803 0.142501975145496 0.05801332090299661 -0.9880929317009803 -0.142501975145496 -1.571396074608873e-008 0.9908900542609914 0.134673309778327 1.571396074608873e-008 -0.9908900542609914 -0.134673309778327 0.227388534602158 0.9595246946824242 0.1661529856068916 -0.227388534602158 -0.9595246946824242 -0.1661529856068916 0.1755717558524631 0.9424091495213978 0.2846744692543377 -0.1755717558524631 -0.9424091495213978 -0.2846744692543377 0.4545401320225986 0.6272147484516137 0.6324515220201922 -0.4545401320225986 -0.6272147484516137 -0.6324515220201922 -0.4545377758904722 0.6272169812874293 0.6324510010057913 0.4545377758904722 -0.6272169812874293 -0.6324510010057913 -0.1755711219142102 0.9424094696764631 0.2846738003644047 0.1755711219142102 -0.9424094696764631 -0.2846738003644047 -0.2273888042380214 0.9595245256886391 0.1661535925256964 0.2273888042380214 -0.9595245256886391 -0.1661535925256964 0.0638410034790694 0.9793792180325037 0.1916785683398832 -0.0638410034790694 -0.9793792180325037 -0.1916785683398832 0.2571540481453198 0.9471230925857829 0.1919105078238738 -0.2571540481453198 -0.9471230925857829 -0.1919105078238738 0.1030468669472135 0.2216429896176415 0.9696678443496605 -0.1030468669472135 -0.2216429896176415 -0.9696678443496605 -0.1030444216764338 0.2216419275986339 0.9696683469577272 0.1030444216764338 -0.2216419275986339 -0.9696683469577272 -0.257153388496056 0.947123103862737 0.1919113360758331 0.257153388496056 -0.947123103862737 -0.1919113360758331 -0.06384107734919033 0.9793792351847296 0.1916784560973631 0.06384107734919033 -0.9793792351847296 -0.1916784560973631 -8.739514482084267e-009 0.984322838181471 0.1763761611850463 8.739514482084267e-009 -0.984322838181471 -0.1763761611850463 0.345541571839725 0.9120028016585794 0.2210246861720067 -0.345541571839725 -0.9120028016585794 -0.2210246861720067 0.7923653450499429 0.6086502283222469 0.04125602413176856 -0.7923653450499429 -0.6086502283222469 -0.04125602413176856 0.6550020983156387 0.4876283129803074 0.5772268874386309 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.6550028074066617 0.4876263453328185 0.57722774502509 0.6550028074066617 -0.4876263453328185 -0.57722774502509 -0.345541217123833 0.9120031117774368 0.221023961092123 0.345541217123833 -0.9120031117774368 -0.221023961092123 -0.7923653544809333 0.608650103731723 0.0412576810505382 0.7923653544809333 -0.608650103731723 -0.0412576810505382 0.06889339436928037 0.9515744320927353 0.2995993998653323 -0.06889339436928037 -0.9515744320927353 -0.2995993998653323 0.2570777685290928 0.922056222251064 0.289349864240851 -0.2570777685290928 -0.922056222251064 -0.289349864240851 0.7244552439627415 0.6850948378838646 0.07622114273458253 -0.7244552439627415 -0.6850948378838646 -0.07622114273458253 0.7968674597543884 0.5870317053962028 0.1428146646679311 -0.7968674597543884 -0.5870317053962028 -0.1428146646679311 0.1114224209044949 0.1676835182573328 0.979524007783691 -0.1114224209044949 -0.1676835182573328 -0.979524007783691 -0.1114237979693154 0.1676831763354625 0.9795239096725221 0.1114237979693154 -0.1676831763354625 -0.9795239096725221 -0.7244565686574949 0.6850933441356621 0.07622197812982619 0.7244565686574949 -0.6850933441356621 -0.07622197812982619 -0.7968685932815799 0.5870304906792523 0.1428133329010719 0.7968685932815799 -0.5870304906792523 -0.1428133329010719 -0.2570767790947514 0.9220564773034056 0.2893499305565886 0.2570767790947514 -0.9220564773034056 -0.2893499305565886 -0.06889346903278142 0.9515744364678358 0.2995993688003195 0.06889346903278142 -0.9515744364678358 -0.2995993688003195 -1.062354948045608e-008 0.9560443774783194 0.2932220119501479 1.062354948045608e-008 -0.9560443774783194 -0.2932220119501479 0.7476117988063761 0.6572838630161918 0.09515525053304569 -0.7476117988063761 -0.6572838630161918 -0.09515525053304569 0.8216288131614381 0.2706515877970226 0.5016710191010413 -0.8216288131614381 -0.2706515877970226 -0.5016710191010413 -0.8216292782168875 0.2706545588897141 0.5016686545211001 0.8216292782168875 -0.2706545588897141 -0.5016686545211001 -0.7476141706463564 0.6572814401000713 0.09515335174725628 0.7476141706463564 -0.6572814401000713 -0.09515335174725628 0.0686384617992974 0.9314733218746919 0.3572761007925849 -0.0686384617992974 -0.9314733218746919 -0.3572761007925849 0.3044284030251505 0.8973732926014187 0.3194440814246603 -0.3044284030251505 -0.8973732926014187 -0.3194440814246603 0.8188535649683953 0.5430980693366506 0.1858045376769702 -0.8188535649683953 -0.5430980693366506 -0.1858045376769702 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 -0.1983818612641697 0.4627947061566479 0.8639824634069522 0.1983818612641697 -0.4627947061566479 -0.8639824634069522 -0.8188546049565538 0.5430968997890379 0.1858033728999071 0.8188546049565538 -0.5430968997890379 -0.1858033728999071 -0.3044293230567004 0.8973731718340767 0.3194435438942034 0.3044293230567004 -0.8973731718340767 -0.3194435438942034 -0.06863843041400655 0.9314732955013412 0.3572761755815422 0.06863843041400655 -0.9314732955013412 -0.3572761755815422 1.116069999838444e-008 0.9423171754854557 0.3347212882162006 -3.747649454434864e-008 0.9318290390368441 0.3628975640696287 -1.116069999838444e-008 -0.9423171754854557 -0.3347212882162006 3.747649454434864e-008 -0.9318290390368441 -0.3628975640696287 0.7753776474116275 0.4751149390666444 0.4159991569343728 -0.7753776474116275 -0.4751149390666444 -0.4159991569343728 -0.7753733229355523 0.4751248107874208 0.4159959425933109 0.7753733229355523 -0.4751248107874208 -0.4159959425933109 0.05864831235288941 0.8527161846489071 0.5190717521653139 -0.05864831235288941 -0.8527161846489071 -0.5190717521653139 0.3054264818168302 0.7913895422415095 0.5295443858976955 -0.3054264818168302 -0.7913895422415095 -0.5295443858976955 0.7904399506188402 0.4467527980245364 0.4190663693532726 -0.7904399506188402 -0.4467527980245364 -0.4190663693532726 -0.3839601059320404 0.8794258325261762 0.2813980137426312 0.3839601059320404 -0.8794258325261762 -0.2813980137426312 -0.7904401366226477 0.4467532877527571 0.4190654964299407 0.7904401366226477 -0.4467532877527571 -0.4190654964299407 -0.3054229704142912 0.7913907101155595 0.5295446658083733 0.3054229704142912 -0.7913907101155595 -0.5295446658083733 -0.05864834861013611 0.8527163737529747 0.5190714374138505 0.05864834861013611 -0.8527163737529747 -0.5190714374138505 9.520451530020358e-009 0.8593676434638604 0.5113582436681463 -9.520451530020358e-009 -0.8593676434638604 -0.5113582436681463 -0.08976430741077263 0.8138330291007455 0.5741238279846687 0.08976430741077263 -0.8138330291007455 -0.5741238279846687 0.03370352932777578 0.4328829088361045 0.9008198817457596 -0.03370352932777578 -0.4328829088361045 -0.9008198817457596 0.165091213986121 0.3819560318732822 0.9093153912588333 -0.165091213986121 -0.3819560318732822 -0.9093153912588333 0.4644031292697052 0.1881536417132338 0.8654062286779275 -0.4644031292697052 -0.1881536417132338 -0.8654062286779275 0.2441976709347891 0.4431556628268767 0.8625430748748124 -0.2441976709347891 -0.4431556628268767 -0.8625430748748124 0.2331018669884867 0.8320242126565701 0.5033877522940903 -0.2331018669884867 -0.8320242126565701 -0.5033877522940903 -0.4644038303505231 0.1881541816406321 0.8654057350670302 0.4644038303505231 -0.1881541816406321 -0.8654057350670302 -0.165092715159511 0.3819576415429155 0.9093144425710142 0.165092715159511 -0.3819576415429155 -0.9093144425710142 -0.03370352026973898 0.4328831985936684 0.9008197428435624 0.03370352026973898 -0.4328831985936684 -0.9008197428435624 4.846721671527672e-008 0.5015666720711498 0.8651189938196187 -4.846721671527672e-008 -0.5015666720711498 -0.8651189938196187 0.09447211453588736 0.7839513607472624 0.6135921149734847 -0.09447211453588736 -0.7839513607472624 -0.6135921149734847 -0.4543309600657438 0.8834859794272519 0.1141748785031492 0.4543309600657438 -0.8834859794272519 -0.1141748785031492 1.215795615369895e-007 -8.497444814096651e-008 0.9999999999999891 -1.215795615369895e-007 8.497444814096651e-008 -0.9999999999999891 -0.0002808496167795781 -0.0001564916449623308 0.9999999483169277 0.0002808496167795781 0.0001564916449623308 -0.9999999483169277 0.5736724490507156 0.3276483942267879 0.7506973098131908 -0.5736724490507156 -0.3276483942267879 -0.7506973098131908 -0.355210421201735 0.9270152150350377 0.1202844452255927 0.355210421201735 -0.9270152150350377 -0.1202844452255927 0.0002807284206540641 -0.0001565349119740308 0.9999999483441864 -0.0002807284206540641 0.0001565349119740308 -0.9999999483441864 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 0.2818142223592027 0.1785573489795022 0.9427078111490802 -0.2818142223592027 -0.1785573489795022 -0.9427078111490802 -0.03348084013298106 0.9726744552437342 0.2297464634337051 0.03348084013298106 -0.9726744552437342 -0.2297464634337051 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 -0.2818180752902821 0.1785579729115788 0.9427065411618766 0.2818180752902821 -0.1785579729115788 -0.9427065411618766 0.001011990533916156 -0.0008954261137955052 0.9999990870432002 -0.001011990533916156 0.0008954261137955052 -0.9999990870432002 0.002221217822754517 -0.002345727983024854 0.9999947818621923 -0.002221217822754517 0.002345727983024854 -0.9999947818621923 -0.4390785855880069 0.8722665560520438 0.2153161649090516 0.4390785855880069 -0.8722665560520438 -0.2153161649090516 0.3283493187707493 0.3306983436379725 0.8847741691402875 -0.3283493187707493 -0.3306983436379725 -0.8847741691402875 -0.002221262159606195 -0.002345712392918114 0.9999947818002793 0.002221262159606195 0.002345712392918114 -0.9999947818002793 -0.001011990290598944 -0.0008954263256683121 0.9999990870432569 0.001011990290598944 0.0008954263256683121 -0.9999990870432569 0.1362496104767762 0.3488194948181901 0.9272329824158057 -0.1362496104767762 -0.3488194948181901 -0.9272329824158057 -0.008441607087187315 0.9540781587225472 0.2994388189904235 0.008441607087187315 -0.9540781587225472 -0.2994388189904235 -0.136250489327595 0.3488184035330123 0.9272332638094212 0.136250489327595 -0.3488184035330123 -0.9272332638094212 0.4374558677757206 -0.004190114349567642 0.8992301188741004 -0.4374558677757206 0.004190114349567642 -0.8992301188741004 0.4245302778687223 0.4022424278976751 0.8111566262884677 -0.4245302778687223 -0.4022424278976751 -0.8111566262884677 -0.01296507097444566 0.9520060979013328 0.3058043434833871 0.01296507097444566 -0.9520060979013328 -0.3058043434833871 -0.3813913782069187 0.8843791144645131 0.2690988638556295 0.3813913782069187 -0.8843791144645131 -0.2690988638556295 -0.4374569246052411 -0.004190067454014929 0.899229604967305 0.4374569246052411 0.004190067454014929 -0.899229604967305 -0.4245302747465338 0.4022424534965067 0.8111566152283682 0.4245302747465338 -0.4022424534965067 -0.8111566152283682 0.003439997739732104 0.0001394725262926738 0.9999940734639207 -0.003439997739732104 -0.0001394725262926738 -0.9999940734639207 -0.01478300939640896 0.9790725836662425 0.202973738563131 0.01478300939640896 -0.9790725836662425 -0.202973738563131 -0.01238376079733685 0.9254422777560835 0.378686193318619 0.01238376079733685 -0.9254422777560835 -0.378686193318619 0.002610959995311266 0.9247620000521626 0.3805370233596553 -0.002610959995311266 -0.9247620000521626 -0.3805370233596553 -0.003439994610727402 0.0001394697970728227 0.9999940734750652 0.003439994610727402 -0.0001394697970728227 -0.9999940734750652 -0.008243773311861815 0.9182764608397499 0.3958539903413963 0.008243773311861815 -0.9182764608397499 -0.3958539903413963 0.809062268051393 -0.005296295934975697 0.5876990689671925 -0.809062268051393 0.005296295934975697 -0.5876990689671925 -0.384970124415974 0.9206201242962624 0.06524254783409289 0.384970124415974 -0.9206201242962624 -0.06524254783409289 -0.3135274238242752 0.882947604923759 0.3494339443578869 0.3135274238242752 -0.882947604923759 -0.3494339443578869 -0.2493540230310667 0.8484132149469607 0.4669235353905227 0.2493540230310667 -0.8484132149469607 -0.4669235353905227 0.8895615761176244 0 0.4568152824666966 -0.8895615761176244 -0 -0.4568152824666966 -0.0175951655914716 0.9948258934248654 0.1000592420480349 0.0175951655914716 -0.9948258934248654 -0.1000592420480349 -0.01241268125867795 0.9276093213098375 0.3733455133828087 0.01241268125867795 -0.9276093213098375 -0.3733455133828087 -0.001902567885113303 0.9285006741488983 0.371325838503711 0.001902567885113303 -0.9285006741488983 -0.371325838503711 -0.2820162498870407 0.8935441405364961 0.3493504024794374 0.2820162498870407 -0.8935441405364961 -0.3493504024794374 -0.2771330402511802 0.960779697982544 0.009982481941339451 0.2771330402511802 -0.960779697982544 -0.009982481941339451 -0.0170119865673869 0.999555120818576 -0.02449801539702913 0.0170119865673869 -0.999555120818576 0.02449801539702913 -0.01248522173395713 0.9329216369708445 0.3598629440632834 0.01248522173395713 -0.9329216369708445 -0.3598629440632834</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"256\" source=\"#ID1504\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1502\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1500\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1501\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"179\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1502\" />\r\n\t\t\t\t\t<p>0 1 2 0 2 6 1 8 2 2 10 6 8 12 2 1 14 8 6 10 16 12 10 2 18 12 8 14 20 8 10 22 16 12 24 10 26 12 18 20 18 8 14 28 20 16 22 30 24 22 10 12 32 24 26 34 12 36 26 18 38 18 20 28 40 20 22 42 30 24 44 22 32 46 24 34 32 12 48 34 26 36 18 38 36 50 26 40 38 20 28 52 40 30 42 54 44 42 22 24 46 44 56 46 32 34 58 32 48 60 34 50 48 26 62 36 38 64 50 36 62 38 40 52 66 40 42 68 54 44 70 42 46 70 44 56 72 46 58 56 32 60 58 34 48 74 60 50 76 48 78 36 62 78 64 36 64 80 50 52 82 66 54 68 84 68 42 70 46 86 70 72 86 46 88 72 56 90 56 58 92 58 60 74 94 60 76 74 48 80 76 50 96 78 62 82 98 66 68 100 84 70 102 68 86 102 70 90 88 56 92 90 58 94 92 60 104 94 74 76 106 74 80 108 76 96 62 66 82 110 98 84 100 112 114 88 90 116 90 92 94 118 92 94 104 120 121 120 104 106 104 74 108 106 76 110 124 98 100 126 112 116 114 90 118 116 92 94 120 118 121 118 120 128 121 104 106 130 104 108 132 106 126 134 112 136 114 116 138 116 118 121 140 118 128 142 121 130 128 104 132 130 106 134 144 112 138 136 116 140 138 118 142 140 121 128 146 142 130 148 128 132 150 130 144 152 112 134 154 144 138 156 136 140 158 138 160 140 142 146 162 142 148 146 128 130 150 148 144 164 152 134 166 154 144 154 164 138 158 156 160 158 140 162 160 142 146 168 162 148 170 146 148 150 170 164 172 152 166 174 154 164 154 172 158 176 156 160 176 158 162 178 160 146 170 180 150 182 170 166 184 174 186 172 154 156 176 188 160 178 176 170 190 180 182 192 170 194 184 166 154 196 186 176 198 188 178 200 176 170 192 190 182 202 192 194 204 184 176 200 198 188 198 206 192 208 190 202 210 192 204 212 184 214 204 194 198 200 216 206 198 218 208 220 190 210 208 192 184 212 222 204 224 212 214 226 204 198 216 218 200 228 216 206 218 230 210 232 208 184 222 234 226 224 204 236 226 214 206 230 238 210 240 232 234 222 242 226 244 224 246 226 236 238 230 248 234 242 250 246 244 226 248 246 236 230 246 248 250 242 252 246 254 244 230 254 246</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"179\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1502\" />\r\n\t\t\t\t\t<p>3 4 5 7 3 5 3 9 4 7 11 3 3 13 9 9 15 4 17 11 7 3 11 13 9 13 19 9 21 15 17 23 11 11 25 13 19 13 27 9 19 21 21 29 15 31 23 17 11 23 25 25 33 13 13 35 27 19 27 37 21 19 39 21 41 29 31 43 23 23 45 25 25 47 33 13 33 35 27 35 49 39 19 37 27 51 37 21 39 41 41 53 29 55 43 31 23 43 45 45 47 25 33 47 57 33 59 35 35 61 49 27 49 51 39 37 63 37 51 65 41 39 63 41 67 53 55 69 43 43 71 45 45 71 47 47 73 57 33 57 59 35 59 61 61 75 49 49 77 51 63 37 79 37 65 79 51 81 65 67 83 53 85 69 55 71 43 69 71 87 47 47 87 73 57 73 89 59 57 91 61 59 93 61 95 75 49 75 77 51 77 81 63 79 97 67 99 83 85 101 69 69 103 71 71 103 87 57 89 91 59 91 93 61 93 95 75 95 105 75 107 77 77 109 81 67 63 97 99 111 83 113 101 85 91 89 115 93 91 117 93 119 95 105 122 123 122 105 95 75 105 107 77 107 109 99 125 111 113 127 101 91 115 117 93 117 119 122 119 123 119 122 95 105 123 129 105 131 107 107 133 109 113 135 127 117 115 137 119 117 139 119 141 123 123 143 129 105 129 131 107 131 133 113 145 135 117 137 139 119 139 141 123 141 143 143 147 129 129 149 131 131 151 133 113 153 145 145 155 135 137 157 139 139 159 141 143 141 161 143 163 147 129 147 149 149 151 131 153 165 145 155 167 135 165 155 145 157 159 139 141 159 161 143 161 163 163 169 147 147 171 149 171 151 149 153 173 165 155 175 167 173 155 165 157 177 159 159 177 161 161 179 163 181 171 147 171 183 151 175 185 167 155 173 187 189 177 157 177 179 161 181 191 171 171 193 183 167 185 195 187 197 155 189 199 177 177 201 179 191 193 171 193 203 183 185 205 195 199 201 177 207 199 189 191 209 193 193 211 203 185 213 205 195 205 215 217 201 199 219 199 207 191 221 209 193 209 211 223 213 185 213 225 205 205 227 215 219 217 199 217 229 201 231 219 207 209 233 211 235 223 185 205 225 227 215 227 237 239 231 207 233 241 211 243 223 235 225 245 227 237 227 247 249 231 239 251 243 235 227 245 247 237 247 249 249 247 231 253 243 251 245 255 247 247 255 231</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1505\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1506\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1509\">-0.5360015034675598 -0.8629845380783081 0.4011168479919434 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5360015034675598 -0.8629845380783081 0.4011168479919434</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1509\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1507\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1510\">0.4545401320225986 0.6272147484516137 0.6324515220201922 0.6550020983156387 0.4876283129803074 0.5772268874386309 0.345541571839725 0.9120028016585794 0.2210246861720067 -0.345541571839725 -0.9120028016585794 -0.2210246861720067 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.4545401320225986 -0.6272147484516137 -0.6324515220201922</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1510\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1508\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1506\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1507\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1508\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1511\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1512\">\r\n\t\t\t\t\t<float_array count=\"324\" id=\"ID1515\">-0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5942209959030151 -0.7019175291061401 0.2899888455867767 -0.5942209959030151 -0.7019175291061401 0.2899888455867767 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.6056320667266846 -0.6565739512443543 0.2298039048910141 -0.6056320667266846 -0.6565739512443543 0.2298039048910141 -0.6020826697349548 -0.6751006841659546 0.2901735305786133 -0.6020826697349548 -0.6751006841659546 0.2901735305786133 -0.6089040040969849 -0.6353139281272888 0.1513132899999619 -0.6089040040969849 -0.6353139281272888 0.1513132899999619 -0.6128094792366028 -0.6618664264678955 0.2912401556968689 -0.6128094792366028 -0.6618664264678955 0.2912401556968689 -0.6167487502098084 -0.6420672535896301 0.2305959314107895 -0.6167487502098084 -0.6420672535896301 0.2305959314107895 -0.6211212873458862 -0.623186469078064 0.1507736295461655 -0.6211212873458862 -0.623186469078064 0.1507736295461655 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.6087551116943359 -0.6622411012649536 0.3692092895507813 -0.6087551116943359 -0.6622411012649536 0.3692092895507813 -0.6310858130455017 -0.5694386959075928 0.02023929730057716 -0.6310858130455017 -0.5694386959075928 0.02023929730057716 -0.6167565584182739 -0.5806991457939148 0.01851669326424599 -0.6167565584182739 -0.5806991457939148 0.01851669326424599 -0.663953423500061 -0.6420672535896301 0.2324964851140976 -0.663953423500061 -0.6420672535896301 0.2324964851140976 -0.652129054069519 -0.6622440814971924 0.3726666569709778 -0.652129054069519 -0.6622440814971924 0.3726666569709778 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6851193904876709 -0.5696841478347778 0.01786315068602562 -0.6851193904876709 -0.5696841478347778 0.01786315068602562 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.654255211353302 -0.6612551212310791 0.2933478653430939 -0.654255211353302 -0.6612551212310791 0.2933478653430939 -0.6266710758209229 -0.666684091091156 0.3805446624755859 -0.6266710758209229 -0.666684091091156 0.3805446624755859 -0.6365204453468323 -0.5123711824417114 -0.1182090491056442 -0.6365204453468323 -0.5123711824417114 -0.1182090491056442 -0.6851193904876709 -0.5125510692596436 -0.1188254952430725 -0.6851193904876709 -0.5125510692596436 -0.1188254952430725 -0.6213362812995911 -0.523088812828064 -0.1182090491056442 -0.6213362812995911 -0.523088812828064 -0.1182090491056442 -0.662648618221283 -0.6536641716957092 0.2969664335250855 -0.662648618221283 -0.6536641716957092 0.2969664335250855 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.637385904788971 -0.6666867136955261 0.380647212266922 -0.637385904788971 -0.6666867136955261 0.380647212266922 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.6374267935752869 -0.4625494778156281 -0.2498909682035446 -0.6374267935752869 -0.4625494778156281 -0.2498909682035446 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6226447820663452 -0.4733588397502899 -0.2504602670669556 -0.6226447820663452 -0.4733588397502899 -0.2504602670669556 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"108\" source=\"#ID1515\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1513\">\r\n\t\t\t\t\t<float_array count=\"324\" id=\"ID1516\">0.7476117988063761 0.6572838630161918 0.09515525053304569 0.6550020983156387 0.4876283129803074 0.5772268874386309 0.8216288131614381 0.2706515877970226 0.5016710191010413 -0.8216288131614381 -0.2706515877970226 -0.5016710191010413 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.7476117988063761 -0.6572838630161918 -0.09515525053304569 0.9584177845989502 0.2850008742348596 -0.01448626417700434 -0.9584177845989502 -0.2850008742348596 0.01448626417700434 0.7244552439627415 0.6850948378838646 0.07622114273458253 -0.7244552439627415 -0.6850948378838646 -0.07622114273458253 0.7753776474116275 0.4751149390666444 0.4159991569343728 -0.7753776474116275 -0.4751149390666444 -0.4159991569343728 0.8881477781735072 0.4524796353460257 0.08034739399999649 -0.8881477781735072 -0.4524796353460257 -0.08034739399999649 0.8941930136861405 0.4475389692309519 0.01130156159982143 -0.8941930136861405 -0.4475389692309519 -0.01130156159982143 0.8752548469912496 0.4733750407807403 0.09922209221820005 -0.8752548469912496 -0.4733750407807403 -0.09922209221820005 0.4543224241270784 0.8834901017645209 0.11417694609426 -0.4543224241270784 -0.8834901017645209 -0.11417694609426 0.4390754791618005 0.8722680660772021 0.2153163823325404 -0.4390754791618005 -0.8722680660772021 -0.2153163823325404 0.3813948965532262 0.8843778726692496 0.269097958402078 -0.3813948965532262 -0.8843778726692496 -0.269097958402078 0.7923653450499429 0.6086502283222469 0.04125602413176856 -0.7923653450499429 -0.6086502283222469 -0.04125602413176856 0.383967075534481 0.8794224081425625 0.2813992056887057 -0.383967075534481 -0.8794224081425625 -0.2813992056887057 0.3135360072946354 0.8829453143304613 0.3494320306320262 -0.3135360072946354 -0.8829453143304613 -0.3494320306320262 0.8653510967847383 0.4780680927149463 0.1503940757521522 -0.8653510967847383 -0.4780680927149463 -0.1503940757521522 0.03348087307887111 0.9726744395591567 0.2297465250360863 -0.03348087307887111 -0.9726744395591567 -0.2297465250360863 -0.2331067307112813 0.8320228762697379 0.503387708889411 0.2331067307112813 -0.8320228762697379 -0.503387708889411 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 0.008441628187206814 0.9540781631986869 0.2994388041336138 -0.008441628187206814 -0.9540781631986869 -0.2994388041336138 -0.002610862372902 0.9247620023780555 0.3805370183771865 0.002610862372902 -0.9247620023780555 -0.3805370183771865 0.7968674597543884 0.5870317053962028 0.1428146646679311 -0.7968674597543884 -0.5870317053962028 -0.1428146646679311 0.3552230113875264 0.9270105580432917 0.1202831553337471 -0.3552230113875264 -0.9270105580432917 -0.1202831553337471 0.08976514704597118 0.8138320965427058 0.5741250186263609 -0.08976514704597118 -0.8138320965427058 -0.5741250186263609 0.2820189569398525 0.8935433688248957 0.3493501910055495 -0.2820189569398525 -0.8935433688248957 -0.3493501910055495 0.001902625878580924 0.9285006704963633 0.3713258473397318 -0.001902625878580924 -0.9285006704963633 -0.3713258473397318 0.8445678230404525 0.5026257642637024 0.1845874681094032 -0.8445678230404525 -0.5026257642637024 -0.1845874681094032 0.3849831700521143 0.9206148005691767 0.06524069090375866 -0.3849831700521143 -0.9206148005691767 -0.06524069090375866 0.01296510866664954 0.9520061052465042 0.3058043190189504 -0.01296510866664954 -0.9520061052465042 -0.3058043190189504 -0.09447285823394672 0.7839505576979712 0.6135930264777693 0.09447285823394672 -0.7839505576979712 -0.6135930264777693 -0.2441943401385535 0.4431550853429167 0.8625443145595528 0.2441943401385535 -0.4431550853429167 -0.8625443145595528 0.01238381535827511 0.9254422776884952 0.378686191699542 -0.01238381535827511 -0.9254422776884952 -0.378686191699542 0.01241273853124808 0.9276093124790017 0.3733455334196308 -0.01241273853124808 -0.9276093124790017 -0.3733455334196308 0.8188535649683953 0.5430980693366506 0.1858045376769702 -0.8188535649683953 -0.5430980693366506 -0.1858045376769702 0.01478301714399302 0.9790725865523251 0.2029737240774287 -0.01478301714399302 -0.9790725865523251 -0.2029737240774287 -0.5736763948085086 0.3276465503718861 0.7506950992706128 0.5736763948085086 -0.3276465503718861 -0.7506950992706128 0.2771369959745497 0.9607785545357305 0.009982715383835508 -0.2771369959745497 -0.9607785545357305 -0.009982715383835508 0.2493525773637736 0.8484138635542167 0.4669231288885251 -0.2493525773637736 -0.8484138635542167 -0.4669231288885251 0.008243433979804274 0.9182764917626426 0.3958539256750068 -0.008243433979804274 -0.9182764917626426 -0.3958539256750068 0.01248526471267345 0.9329216223065805 0.3598629805883239 -0.01248526471267345 -0.9329216223065805 -0.3598629805883239 0.7773720159345992 0.4537323794727712 0.4356830001959617 -0.7773720159345992 -0.4537323794727712 -0.4356830001959617 0.0175951555574402 0.9948258762089856 0.1000594149789708 -0.0175951555574402 -0.9948258762089856 -0.1000594149789708 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 -0.3283505887844118 0.3306960167614941 0.8847745675272385 0.3283505887844118 -0.3306960167614941 -0.8847745675272385 0.7904399506188402 0.4467527980245364 0.4190663693532726 -0.7904399506188402 -0.4467527980245364 -0.4190663693532726 0.01701204558444335 0.9995551163423349 -0.02449815705097821 -0.01701204558444335 -0.9995551163423349 0.02449815705097821 0.1362496104767762 0.3488194948181901 0.9272329824158057 -0.1362496104767762 -0.3488194948181901 -0.9272329824158057 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 0.2818142223592027 0.1785573489795022 0.9427078111490802 -0.2818142223592027 -0.1785573489795022 -0.9427078111490802 0.4245302778687223 0.4022424278976751 0.8111566262884677 -0.4245302778687223 -0.4022424278976751 -0.8111566262884677 0 0 1 -0 -0 -1 0.4644031292697052 0.1881536417132338 0.8654062286779275 -0.4644031292697052 -0.1881536417132338 -0.8654062286779275</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"108\" source=\"#ID1516\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1514\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1512\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1513\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"144\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1514\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 0 2 6 7 3 5 8 0 6 7 5 9 6 2 10 11 3 7 8 6 12 13 7 9 14 6 10 11 7 15 6 14 12 13 15 7 8 12 16 17 13 9 14 10 18 19 11 15 12 14 20 21 15 13 22 16 12 13 17 23 24 8 16 17 9 25 14 18 20 21 19 15 10 26 18 19 27 11 12 20 22 23 21 13 22 28 16 17 29 23 24 16 30 31 17 25 32 20 18 19 21 33 18 26 34 35 27 19 36 26 10 11 27 37 38 22 20 21 23 39 28 30 16 17 31 29 40 28 22 23 29 41 42 24 30 31 25 43 32 18 44 45 19 33 38 20 32 33 21 39 34 26 46 47 27 35 44 18 34 35 19 45 46 26 36 37 27 47 40 22 38 39 23 41 48 30 28 29 31 49 40 50 28 29 51 41 42 30 52 53 31 43 32 44 54 55 45 33 56 38 32 33 39 57 34 46 58 59 47 35 54 44 34 35 45 55 60 46 36 37 47 61 62 40 38 39 41 63 48 52 30 31 53 49 50 48 28 29 49 51 64 50 40 41 51 65 66 42 52 53 43 67 68 32 54 55 33 69 56 62 38 39 63 57 68 56 32 33 57 69 58 46 60 61 47 59 70 34 58 59 35 71 72 54 34 35 55 73 62 64 40 41 65 63 48 74 52 53 75 49 50 76 48 49 77 51 78 50 64 65 51 79 66 52 80 81 53 67 82 68 54 55 69 83 70 58 60 61 59 71 70 84 34 35 85 71 84 86 34 35 87 85 82 54 72 73 55 83 76 74 48 49 75 77 74 80 52 53 81 75 78 76 50 51 77 79 88 66 80 81 67 89 82 72 90 91 73 83 76 92 74 75 93 77 92 80 74 75 81 93 94 95 96 97 98 99 88 80 100 101 81 89 102 92 76 77 93 103 92 100 80 81 101 93 95 104 96 97 105 98 106 88 100 101 89 107</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1517\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1518\">\r\n\t\t\t\t\t<float_array count=\"534\" id=\"ID1521\">-0.3606338500976563 -1.926416754722595 -0.09349501132965088 -0.3624692857265472 -1.826847672462463 -0.1463934928178787 -0.2926522493362427 -1.851223945617676 -0.1463934928178787 -0.2926522493362427 -1.851223945617676 -0.1463934928178787 -0.3624692857265472 -1.826847672462463 -0.1463934928178787 -0.3606338500976563 -1.926416754722595 -0.09349501132965088 -0.001449317671358585 -1.628891706466675 -0.1275773644447327 -0.001449317671358585 -1.628891706466675 -0.1275773644447327 -0.4921964704990387 -1.894847393035889 -0.09349501132965088 -0.4921964704990387 -1.894847393035889 -0.09349501132965088 -0.235410675406456 -1.933972954750061 -0.09592393785715103 -0.235410675406456 -1.933972954750061 -0.09592393785715103 -0.3976570665836334 -1.780892610549927 -0.1463934928178787 -0.3976570665836334 -1.780892610549927 -0.1463934928178787 -0.1878064125776291 -1.864198327064514 -0.1463934928178787 -0.1878064125776291 -1.864198327064514 -0.1463934928178787 -0.4105052947998047 -1.968539357185364 -0.01854868978261948 -0.4105052947998047 -1.968539357185364 -0.01854868978261948 -0.2646690011024475 -1.9807208776474 -0.01785293966531754 -0.2646690011024475 -1.9807208776474 -0.01785293966531754 -0.4050852954387665 -1.714909911155701 -0.1463934928178787 -0.4050852954387665 -1.714909911155701 -0.1463934928178787 -0.001449264585971832 -1.864198327064514 -0.1463934928178787 -0.001449264585971832 -1.864198327064514 -0.1463934928178787 -0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.5109597444534302 -1.817365527153015 -0.09349501132965088 -0.5109597444534302 -1.817365527153015 -0.09349501132965088 -0.001366172917187214 -1.941106200218201 -0.09592393785715103 -0.001366172917187214 -1.941106200218201 -0.09592393785715103 -0.4193870723247528 -1.601637005805969 -0.1275773644447327 -0.4193870723247528 -1.601637005805969 -0.1275773644447327 0.1849076002836227 -1.864198327064514 -0.1463934928178787 0.1849076002836227 -1.864198327064514 -0.1463934928178787 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.001449317671358585 -1.9807208776474 -0.01785293966531754 -0.001449317671358585 -1.9807208776474 -0.01785293966531754 -0.3988296985626221 -1.515700936317444 -0.1028623208403587 -0.3988296985626221 -1.515700936317444 -0.1028623208403587 -0.4935618042945862 -1.730852842330933 -0.09349501132965088 -0.4935618042945862 -1.730852842330933 -0.09349501132965088 0.2897535860538483 -1.851223945617676 -0.1463934928178787 0.2897535860538483 -1.851223945617676 -0.1463934928178787 0.2325120717287064 -1.933972954750061 -0.09592393785715103 0.2325120717287064 -1.933972954750061 -0.09592393785715103 -0.5515520572662354 -1.828812718391419 -0.01854868978261948 -0.5515520572662354 -1.828812718391419 -0.01854868978261948 -0.001449317671358585 -1.975146889686585 0.06838828325271606 -0.001449317671358585 -1.975146889686585 0.06838828325271606 0.2617702782154083 -1.9807208776474 -0.01785293966531754 0.2617702782154083 -1.9807208776474 -0.01785293966531754 -0.3782610595226288 -1.453732490539551 -0.08835642039775848 -0.3782610595226288 -1.453732490539551 -0.08835642039775848 -0.4942137002944946 -1.606165766716003 -0.07467878609895706 -0.4942137002944946 -1.606165766716003 -0.07467878609895706 0.35957071185112 -1.826847672462463 -0.1463934928178787 0.35957071185112 -1.826847672462463 -0.1463934928178787 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.317712277173996 -1.412886142730713 -0.08004907518625259 -0.317712277173996 -1.412886142730713 -0.08004907518625259 -0.5008955001831055 -1.484931826591492 -0.05118564888834953 -0.5008955001831055 -1.484931826591492 -0.05118564888834953 -0.541976809501648 -1.741774439811707 -0.01074292883276939 -0.541976809501648 -1.741774439811707 -0.01074292883276939 0.3947583734989166 -1.780892610549927 -0.1463934928178787 0.3947583734989166 -1.780892610549927 -0.1463934928178787 0.3577354252338409 -1.926417708396912 -0.09349501132965088 0.3577354252338409 -1.926417708396912 -0.09349501132965088 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.5108418464660645 -1.82867443561554 0.210712805390358 0.1927159428596497 -1.975192189216614 0.06858637928962708 0.1927159428596497 -1.975192189216614 0.06858637928962708 -0.1767936646938324 -1.406760692596436 -0.08004907518625259 -0.1767936646938324 -1.406760692596436 -0.08004907518625259 -0.4652675688266754 -1.396878957748413 -0.0271506030112505 -0.4652675688266754 -1.396878957748413 -0.0271506030112505 -0.5288583636283875 -1.602755665779114 0.02520615234971046 -0.5288583636283875 -1.602755665779114 0.02520615234971046 0.4021864235401154 -1.714909911155701 -0.1463934928178787 0.4021864235401154 -1.714909911155701 -0.1463934928178787 0.4892977476119995 -1.894847393035889 -0.09349501132965088 0.4892977476119995 -1.894847393035889 -0.09349501132965088 0.4076065123081207 -1.968539357185364 -0.01854868978261948 0.4076065123081207 -1.968539357185364 -0.01854868978261948 -0.001449264585971832 -1.40310525894165 -0.08004907518625259 -0.001449264585971832 -1.40310525894165 -0.08004907518625259 -0.3848465085029602 -1.370032668113709 -0.0271506030112505 -0.3848465085029602 -1.370032668113709 -0.0271506030112505 -0.5189878940582275 -1.473042607307434 0.0858701765537262 -0.5189878940582275 -1.473042607307434 0.0858701765537262 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.5151616930961609 -1.741188645362854 0.2367520481348038 0.4164886176586151 -1.601638078689575 -0.1275773644447327 0.4164886176586151 -1.601638078689575 -0.1275773644447327 0.5080612301826477 -1.81736695766449 -0.09349501132965088 0.5080612301826477 -1.81736695766449 -0.09349501132965088 0.351957768201828 -1.969097256660461 0.0834038257598877 0.351957768201828 -1.969097256660461 0.0834038257598877 0.1738950163125992 -1.406760692596436 -0.08004907518625259 0.1738950163125992 -1.406760692596436 -0.08004907518625259 -0.2127160131931305 -1.348718166351318 -0.0271506030112505 -0.2127160131931305 -1.348718166351318 -0.0271506030112505 -0.5000548958778381 -1.364248633384705 0.1308065205812454 -0.5000548958778381 -1.364248633384705 0.1308065205812454 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5150116086006165 -1.602635979652405 0.2695119678974152 0.3959312736988068 -1.515700936317444 -0.1028623208403587 0.3959312736988068 -1.515700936317444 -0.1028623208403587 0.4906633496284485 -1.730852842330933 -0.09349501132965088 0.4906633496284485 -1.730852842330933 -0.09349501132965088 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.314813494682312 -1.412886142730713 -0.08004907518625259 0.314813494682312 -1.412886142730713 -0.08004907518625259 0.2098170965909958 -1.348718166351318 -0.0271506030112505 0.2098170965909958 -1.348718166351318 -0.0271506030112505 -0.001449264585971832 -1.346470355987549 -0.0247164648026228 -0.001449264585971832 -1.346470355987549 -0.0247164648026228 -0.4503773152828217 -1.332709312438965 0.1465340554714203 -0.4503773152828217 -1.332709312438965 0.1465340554714203 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.5091840028762817 -1.473127722740173 0.2953929603099823 0.3753623962402344 -1.453732490539551 -0.08835642039775848 0.3753623962402344 -1.453732490539551 -0.08835642039775848 0.4913150072097778 -1.606165766716003 -0.07467878609895706 0.4913150072097778 -1.606165766716003 -0.07467878609895706 0.5486531853675842 -1.828812718391419 -0.01854868978261948 0.5486531853675842 -1.828812718391419 -0.01854868978261948 0.3819479644298554 -1.370032668113709 -0.0271506030112505 0.3819479644298554 -1.370032668113709 -0.0271506030112505 -0.2346685528755188 -1.304289698600769 0.1577682644128799 -0.2346685528755188 -1.304289698600769 0.1577682644128799 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.4488465189933777 -1.36491858959198 0.3139463365077972 0.4979969263076782 -1.484931826591492 -0.05118564888834953 0.4979969263076782 -1.484931826591492 -0.05118564888834953 0.5390774607658386 -1.741774439811707 -0.01074292883276939 0.5390774607658386 -1.741774439811707 -0.01074292883276939 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.4623689949512482 -1.396880269050598 -0.0271506030112505 0.4623689949512482 -1.396880269050598 -0.0271506030112505 0.4474785029888153 -1.332709312438965 0.1465340554714203 0.4474785029888153 -1.332709312438965 0.1465340554714203 0.2317695468664169 -1.304289698600769 0.1577682644128799 0.2317695468664169 -1.304289698600769 0.1577682644128799 -0.001449317671358585 -1.30136251449585 0.1578548401594162 -0.001449317671358585 -1.30136251449585 0.1578548401594162 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.3898182511329651 -1.332667946815491 0.3197168409824371 0.5259599089622498 -1.60275661945343 0.02520615234971046 0.5259599089622498 -1.60275661945343 0.02520615234971046 0.5079431533813477 -1.828675627708435 0.210712805390358 0.5079431533813477 -1.828675627708435 0.210712805390358 0.4971560835838318 -1.364249706268311 0.1308065205812454 0.4971560835838318 -1.364249706268311 0.1308065205812454 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2033214420080185 -1.304823517799377 0.3252071440219879 0.5160892605781555 -1.473042607307434 0.0858701765537262 0.5160892605781555 -1.473042607307434 0.0858701765537262 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.2004226595163345 -1.304823517799377 0.3252071440219879 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449264585971832 -1.302743792533875 0.3265746533870697 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.5062857866287231 -1.473127722740173 0.2953929603099823</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"178\" source=\"#ID1521\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1519\">\r\n\t\t\t\t\t<float_array count=\"534\" id=\"ID1522\">0.1102844365530712 0.6884343880834366 0.7168650056728645 0.1033700632704769 0.2084592851432369 0.9725530095871527 0.04521304169707321 0.259030171588043 0.9648104223460522 -0.04521304169707321 -0.259030171588043 -0.9648104223460522 -0.1033700632704769 -0.2084592851432369 -0.9725530095871527 -0.1102844365530712 -0.6884343880834366 -0.7168650056728645 -4.307140260861875e-008 -0.1462111153925923 0.98925341027244 4.307140260861875e-008 0.1462111153925923 -0.98925341027244 0.5321740367225489 0.4647669008979348 0.7076598918040757 -0.5321740367225489 -0.4647669008979348 -0.7076598918040757 0.0413459562307197 0.7207422630431816 0.6919690037615563 -0.0413459562307197 -0.7207422630431816 -0.6919690037615563 0.1961331907637079 0.06135705273615555 0.9786557533476109 -0.1961331907637079 -0.06135705273615555 -0.9786557533476109 0.01033695112433616 0.2777725719850512 0.9605912479792135 -0.01033695112433616 -0.2777725719850512 -0.9605912479792135 0.2164019946925166 0.9532943408112349 0.2107132565131422 -0.2164019946925166 -0.9532943408112349 -0.2107132565131422 0.05566140920335683 0.9755575218522317 0.2125778188876468 -0.05566140920335683 -0.9755575218522317 -0.2125778188876468 0.234471846381218 -0.0643979059398732 0.9699875581496608 -0.234471846381218 0.0643979059398732 -0.9699875581496608 5.093929862705434e-006 0.2528021849297338 0.9675179870518195 -5.093929862705434e-006 -0.2528021849297338 -0.9675179870518195 0.7043444308093231 0.6885011446313276 0.1728152094847037 -0.7043444308093231 -0.6885011446313276 -0.1728152094847037 0.716448435581581 0.0321284880729666 0.69689984890718 -0.716448435581581 -0.0321284880729666 -0.69689984890718 -5.784214901150153e-006 0.7419429016926926 0.6704630717603842 5.784214901150153e-006 -0.7419429016926926 -0.6704630717603842 0.3123301514282754 -0.232653174309777 0.9210441775465361 -0.3123301514282754 0.232653174309777 -0.9210441775465361 -0.01033691087861853 0.277772542345011 0.9605912569832584 0.01033691087861853 -0.277772542345011 -0.9605912569832584 0.1493590760120027 0.9875730596760047 -0.04890110648048201 -0.1493590760120027 -0.9875730596760047 0.04890110648048201 0.01854079080984633 0.9975812603195948 -0.06699155271610174 -0.01854079080984633 -0.9975812603195948 0.06699155271610174 2.790039622087009e-018 0.9795646181507258 0.2011297065756883 -2.790039622087009e-018 -0.9795646181507258 -0.2011297065756883 0.2153401244752097 -0.2706544164613817 0.9382829091702301 -0.2153401244752097 0.2706544164613817 -0.9382829091702301 0.7095592943048024 -0.1085354821195478 0.6962367822707647 -0.7095592943048024 0.1085354821195478 -0.6962367822707647 -0.04521192352943625 0.2590288814080347 0.9648108211288216 0.04521192352943625 -0.2590288814080347 -0.9648108211288216 -0.0413438662129717 0.7207413543092698 0.6919700751586035 0.0413438662129717 -0.7207413543092698 -0.6919700751586035 0.9805421601871839 0.1026497737848967 0.1673322922730709 -0.9805421601871839 -0.1026497737848967 -0.1673322922730709 4.377473158451889e-011 0.9979296639472881 -0.06431474025487947 -4.377473158451889e-011 -0.9979296639472881 0.06431474025487947 -0.05565935011423944 0.9755584605081817 0.2125740503348586 0.05565935011423944 -0.9755584605081817 -0.2125740503348586 0.1816563073119213 -0.3539460384193683 0.9174547334343161 -0.1816563073119213 0.3539460384193683 -0.9174547334343161 0.7610440641787706 -0.1404914023157347 0.6333041119822434 -0.7610440641787706 0.1404914023157347 -0.6333041119822434 -0.1033703901796722 0.2084578250215096 0.9725532878055599 0.1033703901796722 -0.2084578250215096 -0.9725532878055599 0.747043425910407 0.6504555146670747 -0.1372360857909948 -0.747043425910407 -0.6504555146670747 0.1372360857909948 0.06541783064119561 -0.5082262244283293 0.8587354727956247 -0.06541783064119561 0.5082262244283293 -0.8587354727956247 0.7656897381547677 -0.274108269361712 0.5818796108749732 -0.7656897381547677 0.274108269361712 -0.5818796108749732 0.9780136521515699 -0.09947584929131725 0.1832862559302234 -0.9780136521515699 0.09947584929131725 -0.1832862559302234 -0.1961330129413249 0.06135674483668833 0.9786558082889019 0.1961330129413249 -0.06135674483668833 -0.9786558082889019 -0.1102849643238392 0.6884360637011642 0.7168633153117381 0.1102849643238392 -0.6884360637011642 -0.7168633153117381 0.9753070585279619 0.1705312787247317 -0.1403396756517649 -0.9753070585279619 -0.1705312787247317 0.1403396756517649 -0.01854023728564532 0.9975813585017789 -0.06699024385040971 0.01854023728564532 -0.9975813585017789 0.06699024385040971 0.02138505679844553 -0.4553018746991844 0.8900802673024132 -0.02138505679844553 0.4553018746991844 -0.8900802673024132 0.5689659860680157 -0.6358120761339294 0.5215560473620385 -0.5689659860680157 0.6358120761339294 -0.5215560473620385 0.990482205730385 -0.08332503075027384 0.1095533631703609 -0.990482205730385 0.08332503075027384 -0.1095533631703609 -0.2344705609306409 -0.06439821856471613 0.9699878481210792 0.2344705609306409 0.06439821856471613 -0.9699878481210792 -0.5321715949501727 0.4647679909086325 0.7076610121766936 0.5321715949501727 -0.4647679909086325 -0.7076610121766936 -0.216402336378506 0.9532941923770181 0.2107135771377177 0.216402336378506 -0.9532941923770181 -0.2107135771377177 -2.812811688057497e-009 -0.469904473165833 0.8827172741590259 2.812811688057497e-009 0.469904473165833 -0.8827172741590259 0.1938866687187758 -0.8326174796938357 0.5188025560860518 -0.1938866687187758 0.8326174796938357 -0.5188025560860518 0.9825476572045379 -0.171768516677661 0.07138401782073113 -0.9825476572045379 0.171768516677661 -0.07138401782073113 0.9958208103188742 0.02618308965014393 -0.08749491157909338 -0.9958208103188742 -0.02618308965014393 0.08749491157909338 -0.3123299092873392 -0.2326510344493272 0.9210448001776137 0.3123299092873392 0.2326510344493272 -0.9210448001776137 -0.7164482581224304 0.03213212483050044 0.6968998636728325 0.7164482581224304 -0.03213212483050044 -0.6968998636728325 -0.149357994953947 0.9875735034865902 -0.04889544513099698 0.149357994953947 -0.9875735034865902 0.04889544513099698 -0.0213850771991602 -0.4553019057041807 0.89008025095231 0.0213850771991602 0.4553019057041807 -0.89008025095231 0.05873867013076143 -0.8544479039721123 0.5162059163056284 -0.05873867013076143 0.8544479039721123 -0.5162059163056284 0.7955663513823786 -0.6002896085858349 0.08201564711684241 -0.7955663513823786 0.6002896085858349 -0.08201564711684241 0.9984411485218635 -0.01772472490393671 -0.05292548597246906 -0.9984411485218635 0.01772472490393671 0.05292548597246906 -0.2153405394920977 -0.2706533764593418 0.9382831139173347 0.2153405394920977 0.2706533764593418 -0.9382831139173347 -0.7095609051348071 -0.1085351406263525 0.6962351938486673 0.7095609051348071 0.1085351406263525 -0.6962351938486673 -0.7043453961272412 0.6885000654906582 0.1728155744535739 0.7043453961272412 -0.6885000654906582 -0.1728155744535739 -0.06541868829408093 -0.5082262645592816 0.8587353837090919 0.06541868829408093 0.5082262645592816 -0.8587353837090919 -0.05873856335209898 -0.8544479846210449 0.5162057949620151 0.05873856335209898 0.8544479846210449 -0.5162057949620151 -4.505566842810803e-009 -0.8699258848861241 0.4931824761739755 4.505566842810803e-009 0.8699258848861241 -0.4931824761739755 0.3623917214846428 -0.9289771709492192 0.0753236752593929 -0.3623917214846428 0.9289771709492192 -0.0753236752593929 0.9687409037377627 -0.2150856712682755 -0.1236091236131779 -0.9687409037377627 0.2150856712682755 0.1236091236131779 -0.1816568763454598 -0.3539484409708389 0.9174536938781831 0.1816568763454598 0.3539484409708389 -0.9174536938781831 -0.7610442542995036 -0.1404904499567133 0.6333040947828087 0.7610442542995036 0.1404904499567133 -0.6333040947828087 -0.9805431581954143 0.1026452389617377 0.1673292258831386 0.9805431581954143 -0.1026452389617377 -0.1673292258831386 -0.1938926420317465 -0.8326148238787625 0.5188045859697908 0.1938926420317465 0.8326148238787625 -0.5188045859697908 0.07586902325831367 -0.9913590887010482 0.1070095722805057 -0.07586902325831367 0.9913590887010482 -0.1070095722805057 0.6730663500074919 -0.7101697307652958 -0.2064961064822766 -0.6730663500074919 0.7101697307652958 0.2064961064822766 -0.7656894567676184 -0.2741104707790182 0.5818789441148515 0.7656894567676184 0.2741104707790182 -0.5818789441148515 -0.9780139960392903 -0.09947648931692157 0.1832840735700717 0.9780139960392903 0.09947648931692157 -0.1832840735700717 -0.747044926563488 0.6504540070975241 -0.1372350623803081 0.747044926563488 -0.6504540070975241 0.1372350623803081 -0.5689687714554724 -0.6358099364793625 0.5215556171517662 0.5689687714554724 0.6358099364793625 -0.5215556171517662 -0.3623985485590152 -0.9289743956436117 0.07532505719151701 0.3623985485590152 0.9289743956436117 -0.07532505719151701 -0.07586897640646192 -0.9913590911749723 0.1070095825791727 0.07586897640646192 0.9913590911749723 -0.1070095825791727 -6.861687268936658e-009 -0.993110212151613 0.1171840711025953 6.861687268936658e-009 0.993110212151613 -0.1171840711025953 0.2765227344053635 -0.9567016942412029 -0.09086828705875856 -0.2765227344053635 0.9567016942412029 0.09086828705875856 -0.9904823390352332 -0.08332329393080694 0.1095534789398025 0.9904823390352332 0.08332329393080694 -0.1095534789398025 -0.9753074974216965 0.1705307485558667 -0.1403372697112316 0.9753074974216965 -0.1705307485558667 0.1403372697112316 -0.7955693304830882 -0.6002854616638265 0.08201710132489212 0.7955693304830882 0.6002854616638265 -0.08201710132489212 0.0714146009854829 -0.997297786611956 -0.01723599677934504 -0.0714146009854829 0.997297786611956 0.01723599677934504 -0.9825473850294997 -0.1717699905701884 0.07138421752186797 0.9825473850294997 0.1717699905701884 -0.07138421752186797 -0.9958208935248408 0.02618264676288238 -0.08749409710304948 0.9958208935248408 -0.02618264676288238 0.08749409710304948 -0.6730654741557118 -0.7101711958038869 -0.2064939227919899 0.6730654741557118 0.7101711958038869 0.2064939227919899 -0.2765217054096677 -0.9567020119458887 -0.09086807346927529 0.2765217054096677 0.9567020119458887 0.09086807346927529 -0.07141472484110054 -0.9972977789648503 -0.0172359260745187 0.07141472484110054 0.9972977789648503 0.0172359260745187 -8.531464836120813e-009 -0.9999664897077552 -0.008186541488936034 8.531464836120813e-009 0.9999664897077552 0.008186541488936034 -0.9984411168865852 -0.0177237495391565 -0.05292640940533804 0.9984411168865852 0.0177237495391565 0.05292640940533804 -0.9687413035679741 -0.2150852523239042 -0.1236067190495125 0.9687413035679741 0.2150852523239042 0.1236067190495125</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"178\" source=\"#ID1522\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1520\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1518\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1519\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"304\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1520\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 2 1 6 7 4 3 8 1 0 5 4 9 0 2 10 11 3 5 1 12 6 7 13 4 14 2 6 7 3 15 8 0 16 17 5 9 8 12 1 4 13 9 10 2 14 15 3 11 0 10 18 19 11 5 12 20 6 7 21 13 14 6 22 23 7 15 24 8 16 17 9 25 16 0 18 19 5 17 8 26 12 13 27 9 10 14 22 23 15 11 10 28 18 19 29 11 20 30 6 7 31 21 26 20 12 13 21 27 22 6 32 33 7 23 24 16 34 35 17 25 8 24 26 27 25 9 16 18 36 37 19 17 10 22 28 29 23 11 18 28 38 39 29 19 30 40 6 7 41 31 42 30 20 21 31 43 26 42 20 21 43 27 32 6 44 45 7 33 22 32 46 47 33 23 16 36 34 35 37 17 24 48 26 27 49 25 18 50 36 37 51 19 28 22 46 47 23 29 18 38 50 51 39 19 38 28 52 53 29 39 40 54 6 7 55 41 30 56 40 41 57 31 42 56 30 31 57 43 26 48 42 43 49 27 44 6 58 59 7 45 46 32 44 45 33 47 24 60 48 49 61 25 28 46 52 53 47 29 38 52 50 51 53 39 54 62 6 7 63 55 40 64 54 55 65 41 56 64 40 41 65 57 42 66 56 57 67 43 48 66 42 43 67 49 58 6 68 69 7 59 70 44 58 59 45 71 46 44 70 71 45 47 48 60 72 73 61 49 46 70 52 53 71 47 50 52 74 75 53 51 62 76 6 7 77 63 54 78 62 63 79 55 64 78 54 55 79 65 56 80 64 65 81 57 56 66 80 81 67 57 48 72 66 67 73 49 68 6 82 83 7 69 58 68 84 85 69 59 70 58 84 85 59 71 70 86 52 53 87 71 52 86 74 75 87 53 6 76 88 89 77 7 76 62 90 91 63 77 78 90 62 63 91 79 64 92 78 79 93 65 64 80 92 93 81 65 66 94 80 81 95 67 66 72 94 95 73 67 82 6 96 97 7 83 68 82 98 99 83 69 84 68 98 99 69 85 70 84 86 87 85 71 74 86 100 101 87 75 6 88 102 103 89 7 76 104 88 89 105 77 90 104 76 77 105 91 90 78 106 107 79 91 78 92 106 107 93 79 80 108 92 93 109 81 80 94 108 109 95 81 6 110 96 97 111 7 82 96 112 113 97 83 82 112 98 99 113 83 114 84 98 99 85 115 86 84 114 115 85 87 86 114 100 101 115 87 6 102 116 117 103 7 102 88 118 119 89 103 88 104 120 121 105 89 104 90 122 123 91 105 90 106 122 123 107 91 92 124 106 107 125 93 108 124 92 93 125 109 6 126 110 111 127 7 96 110 128 129 111 97 112 96 128 129 97 113 130 98 112 113 99 131 130 114 98 99 115 131 6 116 126 127 117 7 116 102 132 133 103 117 102 118 132 133 119 103 88 120 118 119 121 89 120 104 134 135 105 121 104 122 134 135 123 105 122 106 136 137 107 123 124 136 106 107 137 125 110 126 138 139 127 111 128 110 138 139 111 129 140 112 128 129 113 141 140 130 112 113 131 141 142 114 130 131 115 143 126 116 144 145 117 127 116 132 144 145 133 117 132 118 146 147 119 133 118 120 148 149 121 119 120 134 150 151 135 121 134 122 152 153 123 135 122 136 152 153 137 123 126 144 138 139 145 127 154 128 138 139 129 155 140 128 154 155 129 141 156 130 140 141 131 157 142 130 156 157 131 143 144 132 158 159 133 145 158 132 146 147 133 159 146 118 148 149 119 147 148 120 150 151 121 149 150 134 160 161 135 151 134 152 160 161 153 135 162 138 144 145 139 163 154 138 162 163 139 155 164 140 154 155 141 165 156 140 164 165 141 157 162 144 158 159 145 163 158 146 166 167 147 159 146 148 168 169 149 147 148 150 170 171 151 149 150 160 172 173 161 151 174 154 162 163 155 175 164 154 174 175 155 165 176 162 158 159 163 177 166 176 158 159 177 167 166 146 168 169 147 167 168 148 170 171 149 169 170 150 172 173 151 171 176 174 162 163 175 177</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1523\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1524\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1527\">-0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.5167703032493591 -1.931200861930847 -0.01854868978261948</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1527\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1525\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1528\">0.7043444308093231 0.6885011446313276 0.1728152094847037 0.1493590760120027 0.9875730596760047 -0.04890110648048201 0.747043425910407 0.6504555146670747 -0.1372360857909948 -0.747043425910407 -0.6504555146670747 0.1372360857909948 -0.1493590760120027 -0.9875730596760047 0.04890110648048201 -0.7043444308093231 -0.6885011446313276 -0.1728152094847037</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1528\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1526\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1524\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1525\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1526\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1526\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1529\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1530\">\r\n\t\t\t\t\t<float_array count=\"606\" id=\"ID1534\">-0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.2516766786575317 1.928897380828857 -0.1850217580795288 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.2508114874362946 1.913545846939087 -0.1969181150197983 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.001449317671358585 1.913302659988403 -0.1713338941335678 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.2487779557704926 1.928897380828857 -0.1850217580795288 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.2549293041229248 1.913302659988403 -0.1713338941335678 -0.2549293041229248 1.913302659988403 -0.1713338941335678 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.4201467633247376 1.927762508392334 -0.1845976114273071 0.25203076004982 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4172481298446655 1.927762508392334 -0.1845976114273071 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.4117976725101471 1.911528825759888 -0.1705324798822403 -0.4117976725101471 1.911528825759888 -0.1705324798822403 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.4610534906387329 1.913545846939087 -0.1884861141443253 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.45652174949646 1.927762508392334 -0.1764486581087112 0.408898800611496 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4536233246326447 1.927762508392334 -0.1764486581087112 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4486589431762695 1.911528825759888 -0.1648858040571213 -0.4486589431762695 1.911528825759888 -0.1648858040571213 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4900375604629517 1.913545846939087 -0.156715527176857 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4769005477428436 1.927762508392334 -0.1519266217947006 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.4740022420883179 1.927762508392334 -0.1519266217947006 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4662005603313446 1.911528825759888 -0.1489890366792679 -0.4662005603313446 1.911528825759888 -0.1489890366792679 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5083516836166382 1.913545846939087 -0.1217374056577683 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4958158433437347 1.927762508392334 -0.1193308234214783 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.492917001247406 1.927762508392334 -0.1193308234214783 0.492917001247406 1.927762508392334 -0.1193308234214783 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.4822799563407898 1.911528825759888 -0.1171957403421402 -0.4822799563407898 1.911528825759888 -0.1171957403421402 0.492917001247406 1.927762508392334 -0.1193308234214783 0.492917001247406 1.927762508392334 -0.1193308234214783 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5181557536125183 1.913545846939087 -0.07925551384687424 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.5063496232032776 1.927762508392334 -0.07853657007217407 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5034509897232056 1.927762508392334 -0.07853657007217407 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.4914830029010773 1.911528825759888 -0.0755583867430687 -0.4914830029010773 1.911528825759888 -0.0755583867430687 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5266676545143127 1.913545846939087 -0.03383167833089829 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.5109774470329285 1.927762508392334 -0.0344013050198555 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5080784559249878 1.927762508392334 -0.0344013050198555 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.4949836730957031 1.911528825759888 -0.03233586996793747 -0.4949836730957031 1.911528825759888 -0.03233586996793747 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5185676217079163 1.913545846939087 0.008449893444776535 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.502662718296051 1.927762508392334 0.00562204048037529 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4997647404670715 1.927762508392334 0.00562204048037529 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4959137439727783 1.913545846939087 0.03620735183358192 0.4959137439727783 1.913545846939087 0.03620735183358192 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4801041185855866 1.927762508392334 0.02575856074690819 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4772054851055145 1.927762508392334 0.02575856074690819 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4692228436470032 1.911528825759888 0.009228713810443878 -0.4692228436470032 1.911528825759888 0.009228713810443878 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 -0.3920661807060242 1.913546323776245 0.05386548116803169 -0.3920661807060242 1.913546323776245 0.05386548116803169 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4434280395507813 1.923323154449463 0.0383446104824543 0.4663237631320953 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 0.440529465675354 1.923323154449463 0.0383446104824543 0.440529465675354 1.923323154449463 0.0383446104824543 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.4382359385490418 1.911528825759888 0.01968160644173622 -0.4382359385490418 1.911528825759888 0.01968160644173622 0.440529465675354 1.923323154449463 0.0383446104824543 0.440529465675354 1.923323154449463 0.0383446104824543 0.3891672492027283 1.913545846939087 0.05386548116803169 0.3891672492027283 1.913545846939087 0.05386548116803169 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.001449317671358585 1.913545846939087 0.05373930558562279 -0.001449317671358585 1.913545846939087 0.05373930558562279 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.3894325792789459 1.927762508392334 0.03898162022233009 0.4353374838829041 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 0.3865337669849396 1.927762508392334 0.03898162022233009 0.3865337669849396 1.927762508392334 0.03898162022233009 0.391455739736557 1.843269467353821 0.09250524640083313 0.391455739736557 1.843269467353821 0.09250524640083313 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.3876460790634155 1.911528825759888 0.01913142576813698 -0.3876460790634155 1.911528825759888 0.01913142576813698 0.3865337669849396 1.927762508392334 0.03898162022233009 0.3865337669849396 1.927762508392334 0.03898162022233009 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.001449317671358585 1.928503632545471 0.03217223659157753 0.3847475349903107 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.911528825759888 0.01366442814469338</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"202\" source=\"#ID1534\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1531\">\r\n\t\t\t\t\t<float_array count=\"606\" id=\"ID1535\">6.128600361442149e-007 0.6840769881677191 -0.7294098122859376 -0.0003142089705117116 0.844635117266066 -0.5353423390258441 9.386065420688752e-007 0.8779194969412163 -0.4788082673571967 -9.386065420688752e-007 -0.8779194969412163 0.4788082673571967 0.0003142089705117116 -0.844635117266066 0.5353423390258441 -6.128600361442149e-007 -0.6840769881677191 0.7294098122859376 -0.001925969402956692 0.6114911657791373 -0.791248914574883 0.001925969402956692 -0.6114911657791373 0.791248914574883 0.0003145381297959222 0.8446308682000966 -0.5353490427275611 -0.0003145381297959222 -0.8446308682000966 0.5353490427275611 -0.1006180874477454 0.6177155415554498 -0.779938145111018 0.1006180874477454 -0.6177155415554498 0.779938145111018 4.969367531929439e-010 0.894881490157497 0.4463038410920274 -0.001291978520968337 0.6585055303928173 0.7525747784995027 1.001052099419736e-009 0.6063749440270834 0.7951788649455865 -1.001052099419736e-009 -0.6063749440270834 -0.7951788649455865 0.001291978520968337 -0.6585055303928173 -0.7525747784995027 -4.969367531929439e-010 -0.894881490157497 -0.4463038410920274 0.001925917791914164 0.6114792511770825 -0.7912581223725752 -0.001925917791914164 -0.6114792511770825 0.7912581223725752 -0.06164021264500252 0.6013047843270357 -0.7966385884016014 0.06164021264500252 -0.6013047843270357 0.7966385884016014 -0.002644288432719418 0.9089634573760564 0.4168674140463013 0.002644288432719418 -0.9089634573760564 -0.4168674140463013 0.001291971215169704 0.6585055365302968 0.7525747731417293 -0.001291971215169704 -0.6585055365302968 -0.7525747731417293 0.1006180685619479 0.6177085888725438 -0.7799436540622367 -0.1006180685619479 -0.6177085888725438 0.7799436540622367 -0.457138707571557 0.3553778220514752 -0.8153102511521345 0.457138707571557 -0.3553778220514752 0.8153102511521345 0.09331129554943694 0.6791844739812039 0.7280119864574765 -0.09331129554943694 -0.6791844739812039 -0.7280119864574765 0.002644295945974327 0.9089634594849646 0.4168674094002494 -0.002644295945974327 -0.9089634594849646 -0.4168674094002494 0.06164146348256043 0.6012926394439115 -0.7966476584603147 -0.06164146348256043 -0.6012926394439115 0.7966476584603147 -0.3534342557912457 0.7119731748590228 -0.6067770802481349 0.3534342557912457 -0.7119731748590228 0.6067770802481349 0.02924273660338733 0.9041888065487982 0.4261308067575084 -0.02924273660338733 -0.9041888065487982 -0.4261308067575084 -0.09331117542665858 0.6791852066164548 0.7280113183556001 0.09331117542665858 -0.6791852066164548 -0.7280113183556001 0.4571384098397874 0.3553681588594452 -0.8153146300159212 -0.4571384098397874 -0.3553681588594452 0.8153146300159212 -0.7577190848040959 0.3973032107154196 -0.5176987031844511 0.7577190848040959 -0.3973032107154196 0.5176987031844511 0.3817826116955557 0.6639727354523177 0.6429480880933445 -0.3817826116955557 -0.6639727354523177 -0.6429480880933445 -0.02924227528812681 0.9041889475495584 0.4261305392308737 0.02924227528812681 -0.9041889475495584 -0.4261305392308737 0.3534405366926419 0.7119593419342024 -0.606789652560947 -0.3534405366926419 -0.7119593419342024 0.606789652560947 -0.5510939953671437 0.7400984093180693 -0.385421526118018 0.5510939953671437 -0.7400984093180693 0.385421526118018 0.2241640399453825 0.8706733606552441 0.4378108978093943 -0.2241640399453825 -0.8706733606552441 -0.4378108978093943 -0.3817811736126304 0.6639780421091951 0.642943461800338 0.3817811736126304 -0.6639780421091951 -0.642943461800338 0.7577242285038515 0.3972933108754175 -0.5176987721367438 -0.7577242285038515 -0.3972933108754175 0.5176987721367438 -0.8609538082186087 0.3950426369975656 -0.3204681810537273 0.8609538082186087 -0.3950426369975656 0.3204681810537273 0.6673193653866828 0.5618732751990277 0.4888591690835232 -0.6673193653866828 -0.5618732751990277 -0.4888591690835232 -0.2241599652446266 0.8706753570527359 0.4378090138435005 0.2241599652446266 -0.8706753570527359 -0.4378090138435005 0.5511053480631766 0.7400875112290761 -0.38542621999407 -0.5511053480631766 -0.7400875112290761 0.38542621999407 -0.6339896614048989 0.7262465481499139 -0.2657499962973408 0.6339896614048989 -0.7262465481499139 0.2657499962973408 0.3998168551749346 0.8534018871285293 0.3344423737559136 -0.3998168551749346 -0.8534018871285293 -0.3344423737559136 -0.66731407538091 0.5618897450471379 0.4888474600623219 0.66731407538091 -0.5618897450471379 -0.4888474600623219 0.8609593490701201 0.3950356538503604 -0.3204619032518112 -0.8609593490701201 -0.3950356538503604 0.3204619032518112 -0.8988689238162904 0.3942461495617065 -0.1913233685494596 0.8988689238162904 -0.3942461495617065 0.1913233685494596 0.7283537775783645 0.6275371629439781 0.2751324841082005 -0.7283537775783645 -0.6275371629439781 -0.2751324841082005 -0.3998115996034019 0.8534065930400281 0.3344366483781063 0.3998115996034019 -0.8534065930400281 -0.3344366483781063 0.6340044397489889 0.7262338056222191 -0.2657495624644367 -0.6340044397489889 -0.7262338056222191 0.2657495624644367 -0.6726026519052687 0.725781149555615 -0.1443862721997141 0.6726026519052687 -0.725781149555615 0.1443862721997141 0.4201432233616178 0.8931283013615952 0.1606284818152159 -0.4201432233616178 -0.8931283013615952 -0.1606284818152159 -0.728355216334616 0.6275344039178031 0.2751349682204766 0.728355216334616 -0.6275344039178031 -0.2751349682204766 0.8988743871289552 0.3942317592744247 -0.1913273533578971 -0.8988743871289552 -0.3942317592744247 0.1913273533578971 -0.904888817089381 0.4255285472945364 0.01008385561096054 0.904888817089381 -0.4255285472945364 -0.01008385561096054 0.7259477785303447 0.6767357693169247 0.1225908698634929 -0.7259477785303447 -0.6767357693169247 -0.1225908698634929 -0.4201461494678589 0.8931264266291222 0.1606312520776282 0.4201461494678589 -0.8931264266291222 -0.1606312520776282 0.6726225954035205 0.7257611192617377 -0.1443940508489927 -0.6726225954035205 -0.7257611192617377 0.1443940508489927 -0.6045394279521578 0.7960919868723888 0.02774217887711796 0.6045394279521578 -0.7960919868723888 -0.02774217887711796 0.4055797586912695 0.9118155828195894 0.06401095427584386 -0.4055797586912695 -0.9118155828195894 -0.06401095427584386 -0.7259411183171096 0.6767440188828733 0.122584769212008 0.7259411183171096 -0.6767440188828733 -0.122584769212008 0.904891680280896 0.4255225800980013 0.01007872934236248 -0.904891680280896 -0.4255225800980013 -0.01007872934236248 -0.8244249006574319 0.4220939913763589 0.3770414375369871 0.8244249006574319 -0.4220939913763589 -0.3770414375369871 0.7178561239409382 0.6953700531279656 -0.03380938528430715 -0.7178561239409382 -0.6953700531279656 0.03380938528430715 -0.4055734414635172 0.9118187127533433 0.06400639540135789 0.4055734414635172 -0.9118187127533433 -0.06400639540135789 0.6045479253195766 0.7960855311013991 0.02774226311603459 -0.6045479253195766 -0.7960855311013991 -0.02774226311603459 -0.520461789693991 0.7996555798249611 0.2994502949127498 0.520461789693991 -0.7996555798249611 -0.2994502949127498 0.4169491499270961 0.9082925536082132 -0.0340300372456919 -0.4169491499270961 -0.9082925536082132 0.0340300372456919 -0.7178499013754158 0.6953767735306654 -0.03380328281968029 0.7178499013754158 -0.6953767735306654 0.03380328281968029 0.8244304220700673 0.42208399743857 0.3770405525558863 -0.8244304220700673 -0.42208399743857 -0.3770405525558863 -0.5374118567073094 0.4163750394213115 0.7333623407411262 0.5374118567073094 -0.4163750394213115 -0.7333623407411262 0.6153207668073935 0.7069640641929612 -0.3486863431156029 -0.6153207668073935 -0.7069640641929612 0.3486863431156029 -0.4169425741389288 0.9082957376618707 -0.03402561998968118 0.4169425741389288 -0.9082957376618707 0.03402561998968118 0.5204810111627883 0.7996418884984935 0.2994534474296871 -0.5204810111627883 -0.7996418884984935 -0.2994534474296871 -0.2699000820828266 0.8084765996171364 0.5229909497909081 0.2699000820828266 -0.8084765996171364 -0.5229909497909081 0.3563384704058399 0.8984507696935942 -0.2565328613371287 -0.3563384704058399 -0.8984507696935942 0.2565328613371287 -0.6153069154673361 0.7069814264632994 -0.3486755833349832 0.6153069154673361 -0.7069814264632994 0.3486755833349832 0.5374137069235633 0.4163662298492717 0.7333659865659014 -0.5374137069235633 -0.4163662298492717 -0.7333659865659014 -0.1102595056986163 0.6041944645946928 0.7891716482212404 0.1102595056986163 -0.6041944645946928 -0.7891716482212404 0.3497908904793823 0.7485760896646085 -0.563276282937676 -0.3497908904793823 -0.7485760896646085 0.563276282937676 -0.3563267758811212 0.8984562983297307 -0.2565297424896443 0.3563267758811212 -0.8984562983297307 0.2565297424896443 0.2699024119542983 0.8084670402013563 0.5230045247694426 -0.2699024119542983 -0.8084670402013563 -0.5230045247694426 -0.03236051657316586 0.8431449359226038 0.5367116674669802 0.03236051657316586 -0.8431449359226038 -0.5367116674669802 0.15167984215981 0.9399767739299777 -0.3056744836497922 -0.15167984215981 -0.9399767739299777 0.3056744836497922 -0.3497863484367549 0.7485814332558655 -0.5632720019953729 0.3497863484367549 -0.7485814332558655 0.5632720019953729 0.1102607918778887 0.6041870483927864 0.7891771463549068 -0.1102607918778887 -0.6041870483927864 -0.7891771463549068 -0.01255478291219509 0.6182595626877923 0.7858737115918354 0.01255478291219509 -0.6182595626877923 -0.7858737115918354 0.0871192663472851 0.8369719858849694 -0.5402667195699559 -0.0871192663472851 -0.8369719858849694 0.5402667195699559 -0.1516789233016182 0.9399777592119516 -0.3056719097544625 0.1516789233016182 -0.9399777592119516 0.3056719097544625 0.03236331531330518 0.8431339299655836 0.5367287880882876 -0.03236331531330518 -0.8431339299655836 -0.5367287880882876 0.09431746603273164 0.5380671052349956 0.8376085039355778 -0.09431746603273164 -0.5380671052349956 -0.8376085039355778 -0.03019305672699172 0.7278128100128949 0.6851108617637107 0.03019305672699172 -0.7278128100128949 -0.6851108617637107 0.03067908811827804 0.9512473880934572 -0.3068993323511907 -0.03067908811827804 -0.9512473880934572 0.3068993323511907 -0.08712026188797994 0.8369724020630891 -0.5402659142989795 0.08712026188797994 -0.8369724020630891 0.5402659142989795 0.01255462315995493 0.6182537225919658 0.7858783086066747 -0.01255462315995493 -0.6182537225919658 -0.7858783086066747 2.380743700391382e-007 0.4408306292320842 0.8975903053903757 -2.380743700391382e-007 -0.4408306292320842 -0.8975903053903757 0.2553438641265905 0.6261687724546333 0.7366900158516871 -0.2553438641265905 -0.6261687724546333 -0.7366900158516871 1.437911629610173e-007 0.6476662694700774 0.7619241454309559 -1.437911629610173e-007 -0.6476662694700774 -0.7619241454309559 -0.01722143407120868 0.7827482930805981 -0.6221000979649022 0.01722143407120868 -0.7827482930805981 0.6221000979649022 -0.03068035818936333 0.9512472595490038 -0.3068996038151283 0.03068035818936333 -0.9512472595490038 0.3068996038151283 0.03019317537246524 0.7278014255281793 0.6851229503965529 -0.03019317537246524 -0.7278014255281793 -0.6851229503965529 -0.09431575631846477 0.5380684094560438 0.8376078586400196 0.09431575631846477 -0.5380684094560438 -0.8376078586400196 -1.903637264665041e-009 0.8217151404454917 0.5698984365329017 1.903637264665041e-009 -0.8217151404454917 -0.5698984365329017 -0.006609870843098183 0.9419276296900147 -0.3357508749564002 0.006609870843098183 -0.9419276296900147 0.3357508749564002 0.01722136611832838 0.7827483236145768 -0.6221000614270894 -0.01722136611832838 -0.7827483236145768 0.6221000614270894 -0.2553377958902426 0.6261678416535161 0.7366929102881947 0.2553377958902426 -0.6261678416535161 -0.7366929102881947 -9.862734229464834e-010 0.7385473108944132 -0.6742016534914694 9.862734229464834e-010 -0.7385473108944132 0.6742016534914694 0.006609858237680783 0.9419276456734308 -0.3357508303641045 -0.006609858237680783 -0.9419276456734308 0.3357508303641045 -5.914188849881876e-010 0.9347435500271971 -0.3553230863348913 5.914188849881876e-010 -0.9347435500271971 0.3553230863348913</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"202\" source=\"#ID1535\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1533\">\r\n\t\t\t\t\t<float_array count=\"624\" id=\"ID1536\">-0.05380870815511803 10.02615970184128 2.469327384643551 9.869515624641515 -0.0533492419844185 9.885573640941855 2.695509980669273 11.09340950000694 2.714420445137348 10.94051719289138 0.1933439381652574 11.11649030137573 0.08283134771281404 10.02610094892601 0.08237163622220682 9.885514888522888 -2.440304755920862 9.869456872279237 3.917851124051062 10.98062779597724 2.192658991959701 10.96319908686411 2.169567624052186 11.11573559076327 -0.1655737740176625 -12.78515855351413 2.335121354259058 -12.96272995353259 -0.1670414371732786 -12.93943206437335 -2.666529615291092 11.09373316119279 -0.1643644549579891 11.11681441138162 -2.685440586750941 10.94083788099445 4.002737599078533 11.57203397921939 4.065199224210197 11.4226589805636 2.318009211600533 11.56625389074455 2.549293041229248 -12.20109509134276 2.516766786575317 -12.36432661201445 0.01449317671358563 -12.20109509134276 0.1945589067152743 -12.78498790905135 0.1960265703843204 -12.93926141990754 -2.30613534556603 -12.96255930906632 -2.140578639992576 11.11556974847594 -2.163670740596903 10.96303029430335 -3.888861079008852 10.98045934051256 0.6315873549859696 11.27431109715125 0.2651173038680699 11.18407150777661 0.1737275907395747 11.32392373563129 2.475224153187638 -12.20323771530714 4.126826737481165 -12.36133839440843 2.44209458583373 -12.36639413197201 0.01449317671358574 -12.20109509134276 -2.487779557704926 -12.36432661201445 -2.5203076004982 -12.20109509134276 -3.973750784243558 11.57198732316051 -2.289021503369634 11.56620711579573 -4.036210388611464 11.42260925202844 0.08228287036970761 10.1013326287451 0.1868423606318254 9.966703678166272 -0.2720222552018592 10.01019335227733 4.014792876585607 -12.2685279360334 4.09740678853818 -12.43776498794701 2.446036325079714 -12.2781708593734 -2.446238966445645 -12.20317121662351 -2.413107611266176 -12.36632762923594 -4.097840656967279 -12.36127189179793 -0.1452202178875478 11.32042239558104 -0.236609804368596 11.18056739333164 -0.6030812903635374 11.27080877288327 -8.022286860006334 5.593261486731232 -8.167981207212625 5.701679535064567 -7.792875250136092 5.879410405840596 8.739995187286191 -10.84044096350622 8.385363300433259 -10.93079034335959 8.267845782222405 -10.77484689111856 -3.985804373263655 -12.26843523952335 -2.417051099865585 -12.2780781633298 -4.068420667613448 -12.43767229962311 -0.0539118208473538 10.09787861455891 0.3003947571417248 10.00673767966941 -0.1584712148151629 9.963247214195681 -7.061976761004196 5.184606121782157 -7.44117463541251 5.012332592839834 -7.275030817548849 5.226414065630704 8.058384143284908 -11.8030467490348 8.16659818377264 -11.94851691915868 7.69657085052069 -11.87408655367555 -8.23955135980237 -10.77842060139959 -8.357070947486893 -10.93436387847232 -8.711705015920382 -10.84401460010668 8.191255306804186 5.695031534054818 8.045558458843509 5.586612580813333 7.816147521064625 5.872763888256488 -7.730668185584237 3.167776477787669 -7.944421259824952 3.207314744907487 -7.585321762754447 3.456563622575323 16.46611971504321 -5.474538374457483 16.2980198494438 -5.370032995525104 16.61541297319499 -5.252907565510547 -8.029911154756903 -11.80643646820372 -7.668097493578577 -11.87747606863542 -8.138129135209356 -11.95190622016309 7.465085244636752 5.006713775956396 7.085885088693217 5.178988191552556 7.298942258767398 5.22079635057736 -8.441671786793989 4.045887376002375 -8.795823948881619 3.792295743166499 -8.651318680868776 4.066102843541724 17.53888569422124 -5.401548196061816 17.73175217697868 -5.431685628113611 17.42459909925773 -5.564637171484631 -16.27663497001927 -5.377734917012615 -16.44473700847936 -5.482240075722087 -16.59403301421012 -5.260609733815044 7.967753567962989 3.203040242451181 7.753997314570496 3.163502001417317 7.608657415129363 3.452288955673404 -8.893471066252115 1.163615445163711 -9.10327908769538 1.182768515764871 -8.820198992148935 1.501712627489478 18.21313751638797 -3.692606818175909 18.01918197613998 -3.667159552472572 18.32798399354051 -3.410240891940054 -17.51982134757863 -5.41278623894306 -17.40553230134771 -5.575873952955945 -17.71269103070093 -5.44292343789721 8.818296075081838 3.787063216178194 8.464147260825534 4.040654650115789 8.673797171430994 4.060870101799641 -9.44481667624879 1.794327895487298 -9.725538419038109 1.474096433930082 -9.64934725501584 1.800072789742478 17.32529019022485 -3.678105730668172 17.43287758364442 -3.410915674581981 17.64409043916598 -3.428858858631469 -18.31022646007288 -3.417863523895226 -18.00142150737727 -3.674780213682573 -18.19538021287728 -3.700227284187649 9.125261741698838 1.180443847057856 8.915450708245798 1.16129077824844 8.842181588537358 1.499387928945664 -9.474646054522664 1.143525837893942 -9.679178527573013 1.149228844032068 -9.413183324947861 1.503849442994916 17.80951438488398 -2.260050022788326 17.59819015422691 -2.242937601662701 17.87855371886245 -1.933089236309175 -17.41354326494719 -3.416890403162804 -17.3059550593323 -3.684081144780982 -17.62475477720695 -3.434833633249285 9.747071760034585 1.47141517142829 9.466350995741708 1.791647165612336 9.67088146016896 1.797392069422744 -7.717269545573585 0.3042754695831612 -7.680552920451054 0.6521793938305373 -7.446535059711652 0.6566695755527798 17.14807018289559 -2.117295267826407 17.21167733516982 -1.785595462078189 17.43175062511593 -1.809320861181577 -17.85961717355434 -1.936399726504026 -17.57925413269361 -2.24624838514796 -17.79057702499381 -2.263360822471536 9.700676675036 1.147325899379445 9.496144316272888 1.141622884759032 9.434680060174202 1.501947025782269 -7.365922553757773 -1.934956066044626 -7.599939764880167 -1.939467151009083 -7.430403382971643 -1.600112621366761 17.53937998476847 -1.184786782725471 17.31926709982417 -1.16128979106497 17.57098702004867 -0.8365725056749495 -17.19151097042277 -1.788152872528991 -17.12790601969691 -2.119852171994886 -17.41158728655829 -1.811878235419665 7.703677431307231 0.6512296301189862 7.740391028713226 0.3033258025207887 7.469653833058668 0.6557198105938373 -7.277169507095795 -2.049438454343182 -7.344226170140487 -1.732221820826337 -7.108525561792963 -1.709808851939396 17.01432816492904 -1.044346485594764 17.03902608469128 -0.703769713619851 17.26691184597801 -0.7200445457025309 -17.551056120922 -0.8378084385110383 -17.29933515195096 -1.162525552957664 -17.51945105836678 -1.186022532248465 7.62314572605751 -1.937863479616851 7.3891227774384 -1.933352394983213 7.453602315184695 -1.598508974861046 -6.362828502231192 -6.069120517714572 -6.598201956491736 -6.093568700597403 -6.550735961317874 -5.829143606752477 17.45140341847328 0.8585311205752961 17.22353562204133 0.8749608794588334 17.3938590916468 1.176901778452265 -17.01849989635089 -0.7046791388334163 -16.99380285037305 -1.045255855238144 -17.24638733125057 -0.7209539682606144 7.368170362462248 -1.730417311119357 7.301123392545696 -2.047633569055367 7.132471153464324 -1.708004368769112 -3.609431739334912 -6.566014062281595 -3.813794288459234 -6.390686311648089 -3.584116150451824 -6.299709170919823 16.79275177785766 1.111610850259286 16.73653810964288 1.365447152584783 16.9604724151008 1.414452080066858 -17.37371202841378 1.17921589028315 -17.2033804271112 0.8772758598705845 -17.43124990248817 0.8608461482498537 6.622757713056812 -6.088408624530629 6.387385689375017 -6.063960291505319 6.575288669845557 -5.82398190678425 -1.070664898439768 -9.10248158322648 -1.292130162331143 -9.205290982842362 -1.485995838992753 -8.92873692126939 15.39845217984451 5.505958467381132 15.17795653455731 5.44810323459475 15.2159568444035 5.695629069246537 -16.71527400723095 1.368069988257085 -16.77148802860013 1.114234073532352 -16.93921574627554 1.417074840910039 3.840162049355425 -6.386761718092833 3.6357940925184 -6.562090788560848 3.610479456259792 -6.29578389250567 3.336803069423739 -7.463342982331089 2.97442271292554 -7.349328937631624 3.099283388677669 -7.20872904478977 11.51826065585274 7.035744374802508 11.35088847557238 7.12821780049199 11.51148367367722 7.285011787033255 -15.15416185348659 5.455622738459792 -15.37466508242597 5.513477827337386 -15.19216085011591 5.703147957417179 1.319874456606009 -9.201299470312357 1.098404946621058 -9.098488965808315 1.51373869210039 -8.92474243662488 4.552118182182312 -7.664626745175032 4.434280395507813 -7.808928913568809 3.920661807060242 -7.664626745175032 11.24483992100088 7.480637013323874 11.08608965271641 7.322684619291019 10.88574069705672 7.600904109249646 -11.32383549790549 7.132850771450945 -11.49120822426326 7.04037759881887 -11.48443440188923 7.289644328918891 -2.945349655131783 -7.348738723830701 -3.307728792902329 -7.462753979116228 -3.070209379436171 -7.208137338117762 3.943541049957273 -12.35581500746084 4.55211818218231 -12.98671323878099 3.92066180706024 -12.98671323878099 2.628585590388074 -10.28710414578369 2.08684181598452 -10.28024522552557 2.126269005759161 -10.11998517144959 8.262191974363937 6.995507731040081 7.958045262470991 7.090038433186434 8.031569136812552 7.258817252443395 -11.05889938787842 7.327172846147806 -11.2176536103565 7.485124686592735 -10.85855476705862 7.60539136100915 -3.891672492027283 -7.664909854313903 -4.40529465675354 -7.809214022037327 -4.523130357265472 -7.664909854313903 4.328884036974373 -12.29754953042057 4.320734485693432 -12.92867187812786 0.4016776935553612 -12.41337861786099 11.24639974346111 -8.218459380038901 11.44064970086064 -8.985911243392785 10.61176139123148 -8.53641050438708 3.900297128442823 -10.25243517339981 0.02042066034977062 -10.09188964063419 3.92658910476724 -10.09051700491245 2.992779383146418 8.625072438692831 2.94976641275648 8.449896296879995 2.451018764299815 8.631051589117122 -7.929664764260844 7.092175497915052 -8.233805105814426 6.997644807516901 -8.003187874585274 7.260954296196313 -2.057979506169385 -10.2789983789781 -2.599725654599161 -10.2858574109507 -2.097405948464584 -10.11873571467056 -3.914557397365568 -12.35579316755734 -3.891672492027281 -12.986688111843 -4.523130357265471 -12.986688111843 0.02687899325162695 -12.79901199847697 3.933486458816073 -13.36981634318971 0.02731870266585258 -13.37209924485815 4.091938431373729 -8.371881898406425 0.2123861419828262 -8.43707022536165 0.2108512462680907 -8.230602030692712 4.212015702232384 9.663859545268688 3.706137154243328 9.658266304365233 3.72255627737955 9.860067139782384 -2.920868219725448 8.44896669889777 -2.963880040260758 8.624142796778127 -2.422117045149522 8.630121945702905 0.008588849727731681 -10.09208049180067 -3.871285678251858 -10.2526285762621 -3.897576633068511 -10.09070783426238 -0.3726934217549541 -12.41377619472284 -4.291747019996334 -12.92906683723967 -4.299902495320053 -12.29794769570773 -10.58480197896604 -8.542838562289346 -11.41368134563579 -8.992341397305667 -11.21943894774718 -8.224885955343089 0.002129902643298674 -12.79902576207975 0.001690993740716476 -13.37211300884068 -3.904473800800141 -13.36983010717072 -0.1834014049554984 -8.437203570058866 -4.062951924705676 -8.372015243104659 -0.1818665085408016 -8.230735375393149 3.564617618765245 9.675722731788627 -0.29960241337697 9.808336336221796 3.579836285876353 9.877581793384563 -3.677153188720006 9.658136852898412 -4.183032630820126 9.663730093468221 -3.693569632525103 9.859937676277907 0.3285849908930763 9.808099469443674 -3.535635954205661 9.675485879299483 -3.550851938882881 9.877344919145314 3.627972635438376 10.3005003741877 -0.2336695137521053 10.24214598982511 -0.2358732435270384 10.43969715816428 0.2626533657364339 10.24194590423555 -3.598989696227069 10.30030028859921 0.264857094990649 10.43949707257832</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"312\" source=\"#ID1536\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1532\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1530\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1531\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"104\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1532\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1533\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 1 4 0 5 0 6 2 7 8 8 10 9 1 10 6 11 12 12 13 13 14 14 18 15 0 16 8 17 20 18 10 19 6 20 22 21 13 22 12 23 12 24 14 25 24 26 18 27 8 28 26 29 28 30 10 31 20 32 22 33 30 34 13 35 12 36 24 37 32 38 34 39 18 40 26 41 36 42 28 43 20 44 38 45 30 46 22 47 32 48 24 49 40 50 34 51 26 52 42 53 28 54 36 55 44 56 46 57 30 58 38 59 48 60 32 61 40 62 50 63 34 64 42 65 44 66 36 67 52 68 54 69 46 70 38 71 48 72 40 73 56 74 50 75 42 76 58 77 44 78 52 79 60 80 46 81 54 82 62 83 64 84 48 85 56 86 50 87 58 88 66 89 60 90 52 91 68 92 70 93 62 94 54 95 64 96 56 97 72 98 66 99 58 100 74 101 60 102 68 103 76 104 62 105 70 106 78 107 80 108 64 109 72 110 66 111 74 112 82 113 76 114 68 115 84 116 70 117 86 118 78 119 88 120 80 121 72 122 82 123 74 124 90 125 76 126 84 127 92 128 78 129 86 130 94 131 96 132 80 133 88 134 82 135 90 136 98 137 84 138 100 139 92 140 86 141 102 142 94 143 104 144 96 145 88 146 98 147 90 148 106 149 92 150 100 151 108 152 94 153 102 154 110 155 112 156 96 157 104 158 114 159 98 160 106 161 100 162 116 163 108 164 102 165 118 166 110 167 120 168 112 169 104 170 114 171 106 172 122 173 108 174 116 175 124 176 110 177 118 178 126 179 128 180 112 181 120 182 130 183 114 184 122 185 116 186 132 187 124 188 118 189 134 190 126 191 136 192 128 193 120 194 130 195 122 196 138 197 124 198 132 199 140 200 126 201 134 202 142 203 144 204 128 205 136 206 146 207 130 208 138 209 132 210 148 211 140 212 134 213 150 214 142 215 144 216 136 217 152 218 146 219 138 220 154 221 140 222 148 223 156 224 142 225 150 226 158 227 160 228 144 229 152 230 162 231 146 232 154 233 164 234 140 235 156 236 148 237 166 238 156 239 150 240 168 241 158 242 160 243 152 244 170 245 172 246 162 247 154 248 164 249 156 250 174 251 176 252 140 253 164 254 166 255 178 256 156 257 158 258 168 259 180 260 182 261 160 262 170 263 184 264 162 265 172 266 186 267 172 268 154 269 174 270 156 271 178 272 166 273 188 274 178 275 168 276 190 277 180 278 182 279 170 280 192 281 178 282 184 283 172 284 174 285 172 286 186 287 186 288 154 289 194 290 174 291 178 292 172 293 188 294 184 295 178 296 190 297 196 298 180 299 198 300 182 301 192 302 196 303 198 304 192 305 190 306 200 307 196 308 200 309 198 310 196 311</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"104\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1532\" />\r\n\t\t\t\t\t<p>3 4 5 5 4 7 9 3 5 7 4 11 15 16 17 9 5 19 7 11 21 17 16 23 25 15 17 27 9 19 21 11 29 16 31 23 33 25 17 27 19 35 21 29 37 23 31 39 41 25 33 43 27 35 45 37 29 39 31 47 41 33 49 43 35 51 53 37 45 39 47 55 57 41 49 59 43 51 61 53 45 63 55 47 57 49 65 67 59 51 69 53 61 55 63 71 73 57 65 75 59 67 77 69 61 79 71 63 73 65 81 83 75 67 85 69 77 79 87 71 73 81 89 91 75 83 93 85 77 95 87 79 89 81 97 99 91 83 93 101 85 95 103 87 89 97 105 107 91 99 109 101 93 111 103 95 105 97 113 107 99 115 109 117 101 111 119 103 105 113 121 123 107 115 125 117 109 127 119 111 121 113 129 123 115 131 125 133 117 127 135 119 121 129 137 139 123 131 141 133 125 143 135 127 137 129 145 139 131 147 141 149 133 143 151 135 153 137 145 155 139 147 157 149 141 159 151 143 153 145 161 155 147 163 157 141 165 157 167 149 159 169 151 171 153 161 155 163 173 175 157 165 165 141 177 157 179 167 181 169 159 171 161 183 173 163 185 155 173 187 179 157 175 179 189 167 181 191 169 193 171 183 173 185 179 187 173 175 195 155 187 173 179 175 179 185 189 181 197 191 193 183 199 193 199 197 197 201 191 197 199 201</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1537\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1543\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1547\">-0.2549293041229248 1.913302659988403 -0.1713338941335678 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.2549293041229248 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 -0.3876460790634155 1.911528825759888 0.01913142576813698 -0.3876460790634155 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 -0.4117976725101471 1.911528825759888 -0.1705324798822403 -0.4117976725101471 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 -0.4382359385490418 1.911528825759888 0.01968160644173622 -0.4382359385490418 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 -0.4486589431762695 1.911528825759888 -0.1648858040571213 -0.4486589431762695 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 -0.4662005603313446 1.911528825759888 -0.1489890366792679 -0.4662005603313446 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 -0.4692228436470032 1.911528825759888 0.009228713810443878 -0.4692228436470032 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 -0.4822799563407898 1.911528825759888 -0.1171957403421402 -0.4822799563407898 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 -0.4914830029010773 1.911528825759888 -0.0755583867430687 -0.4914830029010773 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 -0.4949836730957031 1.911528825759888 -0.03233586996793747 -0.4949836730957031 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1547\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1544\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1548\">-0.002644288432719418 0.9089634573760564 0.4168674140463013 4.969367531929439e-010 0.894881490157497 0.4463038410920274 -5.914188849881876e-010 0.9347435500271971 -0.3553230863348913 5.914188849881876e-010 -0.9347435500271971 0.3553230863348913 -4.969367531929439e-010 -0.894881490157497 -0.4463038410920274 0.002644288432719418 -0.9089634573760564 -0.4168674140463013 0.002644295945974327 0.9089634594849646 0.4168674094002494 -0.002644295945974327 -0.9089634594849646 -0.4168674094002494 -0.006609870843098183 0.9419276296900147 -0.3357508749564002 0.006609870843098183 -0.9419276296900147 0.3357508749564002 0.006609858237680783 0.9419276456734308 -0.3357508303641045 -0.006609858237680783 -0.9419276456734308 0.3357508303641045 0.02924273660338733 0.9041888065487982 0.4261308067575084 -0.02924273660338733 -0.9041888065487982 -0.4261308067575084 -0.02924227528812681 0.9041889475495584 0.4261305392308737 0.02924227528812681 -0.9041889475495584 -0.4261305392308737 0.03067908811827804 0.9512473880934572 -0.3068993323511907 -0.03067908811827804 -0.9512473880934572 0.3068993323511907 -0.03068035818936333 0.9512472595490038 -0.3068996038151283 0.03068035818936333 -0.9512472595490038 0.3068996038151283 0.2241640399453825 0.8706733606552441 0.4378108978093943 -0.2241640399453825 -0.8706733606552441 -0.4378108978093943 -0.2241599652446266 0.8706753570527359 0.4378090138435005 0.2241599652446266 -0.8706753570527359 -0.4378090138435005 0.3998168551749346 0.8534018871285293 0.3344423737559136 -0.3998168551749346 -0.8534018871285293 -0.3344423737559136 -0.3998115996034019 0.8534065930400281 0.3344366483781063 0.3998115996034019 -0.8534065930400281 -0.3344366483781063 0.15167984215981 0.9399767739299777 -0.3056744836497922 -0.15167984215981 -0.9399767739299777 0.3056744836497922 -0.1516789233016182 0.9399777592119516 -0.3056719097544625 0.1516789233016182 -0.9399777592119516 0.3056719097544625 0.4201432233616178 0.8931283013615952 0.1606284818152159 -0.4201432233616178 -0.8931283013615952 -0.1606284818152159 -0.4201461494678589 0.8931264266291222 0.1606312520776282 0.4201461494678589 -0.8931264266291222 -0.1606312520776282 0.3563384704058399 0.8984507696935942 -0.2565328613371287 -0.3563384704058399 -0.8984507696935942 0.2565328613371287 -0.3563267758811212 0.8984562983297307 -0.2565297424896443 0.3563267758811212 -0.8984562983297307 0.2565297424896443 0.4055797586912695 0.9118155828195894 0.06401095427584386 -0.4055797586912695 -0.9118155828195894 -0.06401095427584386 -0.4055734414635172 0.9118187127533433 0.06400639540135789 0.4055734414635172 -0.9118187127533433 -0.06400639540135789 0.4169491499270961 0.9082925536082132 -0.0340300372456919 -0.4169491499270961 -0.9082925536082132 0.0340300372456919 -0.4169425741389288 0.9082957376618707 -0.03402561998968118 0.4169425741389288 -0.9082957376618707 0.03402561998968118</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1548\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1546\">\r\n\t\t\t\t\t<float_array count=\"76\" id=\"ID1549\">5.098586082458496 -3.793412971426244 0.02898635342717173 -3.793412971426244 0.02898635342717173 -0.09327644780219568 0.02898635342717169 -3.793412971426244 -5.040615200996399 -3.793412971426244 0.02898635342717169 -0.09327644780219568 5.10368117777181 -3.786432228989693 0.03407676994508434 -0.08630211584569986 7.758011929317281 0.02304267326305717 0.02389593761035827 -0.08630218760122092 -5.045710295607492 -3.786432300744443 -7.700041047154103 0.02304260150751324 7.803433022620331 -3.465786126433319 4.665865079960936 -3.481814428052453 7.320431992283355 0.3274959133999949 -4.607896991491319 -3.481812852925806 -7.74545837805893 -3.465784551307054 -7.262463903943627 0.3274974884361274 8.235953450202942 -3.410649597644806 7.752921581268311 0.3826285153627396 8.764718770980835 0.3936321288347244 -7.694950699806213 0.3826285153627396 -8.177976012229919 -3.410649597644806 -8.706749677658081 0.3936321288347244 8.973178863525391 -3.297716081142426 -8.915202021598816 -3.297716081142426 9.324011206626892 -2.979780733585358 -9.26603376865387 -2.979780733585358 9.384456872940064 0.1845742762088776 -9.326475262641907 0.1845742762088776 9.645599126815796 -2.343914806842804 -9.587626457214356 -2.343914806842804 9.744054079055786 -0.0104040652513504 -9.686073064804077 -0.0104040652513504 9.829660058021545 -1.511167734861374 -9.771678447723389 -1.511167734861374 9.899673461914063 -0.6467173993587494 -9.841688871383667 -0.6467173993587494</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID1549\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1545\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1543\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1544\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"44\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1545\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1546\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 0 6 2 7 8 8 9 8 3 7 5 6 2 9 6 10 10 11 11 11 7 10 3 9 12 12 0 13 8 14 9 14 5 13 13 12 6 15 14 16 10 17 11 17 15 16 7 15 12 18 8 19 16 20 17 20 9 19 13 18 10 21 14 22 18 23 19 23 15 22 11 21 20 24 12 18 16 20 17 20 13 18 21 24 14 22 22 25 18 23 19 23 23 25 15 22 24 26 20 24 16 20 17 20 21 24 25 26 22 25 26 27 18 23 19 23 27 27 23 25 28 28 24 26 16 20 17 20 25 26 29 28 26 27 30 29 18 23 19 23 31 29 27 27 32 30 24 26 28 28 29 28 25 26 33 30 26 27 34 31 30 29 31 29 35 31 27 27 36 32 32 30 28 28 29 28 33 30 37 32 34 31 38 33 30 29 31 29 39 33 35 31 40 34 32 30 36 32 37 32 33 30 41 34 34 31 42 35 38 33 39 33 43 35 35 31 44 36 40 34 36 32 37 32 41 34 45 36 42 35 46 37 38 33 39 33 47 37 43 35</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1550\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1553\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID1556\">-0.75937420129776 -2.059271097183228 0.09401828050613403 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.75937420129776 -2.059271097183228 0.09401828050613403 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7132100462913513 -2.062207937240601 0.09551356732845306 -0.7132100462913513 -2.062207937240601 0.09551356732845306 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.6684518456459045 -2.059271097183228 0.09401828050613403 -0.6684518456459045 -2.059271097183228 0.09401828050613403 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID1556\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1554\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID1557\">-0.5561338226597609 -0.8009804129341711 0.2216879549945059 -0.9436279770637638 -0.294802001739216 -0.1505258139758768 -0.9853335926304631 -0.1499911356522045 0.08136565897052001 0.9853335926304631 0.1499911356522045 -0.08136565897052001 0.9436279770637638 0.294802001739216 0.1505258139758768 0.5561338226597609 0.8009804129341711 -0.2216879549945059 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 0.5592988209446661 0.8285232037662215 -0.02709482812018735 -0.5933286735546096 -0.641507705513458 0.4862396003050205 0.5933286735546096 0.641507705513458 -0.4862396003050205 0.00102079149857841 -0.9650401052263313 0.2621002733487091 -0.00102079149857841 0.9650401052263313 -0.2621002733487091 -0.0001897054169267276 -0.8685858618862585 0.4955386609974646 0.0001897054169267276 0.8685858618862585 -0.4955386609974646 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 0.0003259087856735385 -0.9990110688943522 0.04446097176206857 -0.0003259087856735385 0.9990110688943522 -0.04446097176206857 0.5519712570922619 -0.8023479070624949 0.2270805305974565 -0.5519712570922619 0.8023479070624949 -0.2270805305974565 0.537584015006585 -0.8419809394557429 0.04551400226989654 -0.537584015006585 0.8419809394557429 -0.04551400226989654 0.5697731445095979 -0.6724564716572923 0.4723990447935624 -0.5697731445095979 0.6724564716572923 -0.4723990447935624 0.9834002721368989 -0.1574388066126764 0.09020491634855526 -0.9834002721368989 0.1574388066126764 -0.09020491634855526 0.9534207476003748 -0.2793935727768806 -0.1137018449107683 -0.9534207476003748 0.2793935727768806 0.1137018449107683 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID1557\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1555\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1553\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1554\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1555\" />\r\n\t\t\t\t\t<p>0 1 2 0 6 1 8 0 2 6 0 10 12 0 8 8 2 14 10 0 12 16 6 10 18 10 12 20 16 10 18 12 22 18 20 10 18 22 24 20 18 26 26 18 24 24 22 28</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1555\" />\r\n\t\t\t\t\t<p>3 4 5 4 7 5 3 5 9 11 5 7 9 5 13 15 3 9 13 5 11 11 7 17 13 11 19 11 17 21 23 13 19 11 21 19 25 23 19 27 19 21 25 19 27 29 23 25</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1558\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1559\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID1562\">-0.7442749738693237 -1.974473595619202 0.2335336655378342 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7442749738693237 -1.974473595619202 0.2335336655378342 -0.7132100462913513 -1.981115937232971 0.2377601712942123 -0.7132100462913513 -1.981115937232971 0.2377601712942123 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.732620894908905 -1.956179261207581 0.2581743896007538 -0.732620894908905 -1.956179261207581 0.2581743896007538 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.7132100462913513 -1.961442589759827 0.2600972652435303 -0.7132100462913513 -1.961442589759827 0.2600972652435303 -0.7190929651260376 -1.930104374885559 0.2703545987606049 -0.7190929651260376 -1.930104374885559 0.2703545987606049 -0.6792644262313843 -1.974473595619202 0.2335336655378342 -0.6792644262313843 -1.974473595619202 0.2335336655378342 -0.6959635019302368 -1.956179261207581 0.2581743896007538 -0.6959635019302368 -1.956179261207581 0.2581743896007538 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.7073091864585877 -1.930104374885559 0.2703545987606049 -0.7073091864585877 -1.930104374885559 0.2703545987606049 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID1562\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1560\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID1563\">-0.6038443360950649 -0.5112675941819026 0.6115369693692765 -0.5933286735546096 -0.641507705513458 0.4862396003050205 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 0.5933286735546096 0.641507705513458 -0.4862396003050205 0.6038443360950649 0.5112675941819026 -0.6115369693692765 -0.002391138459624213 -0.7580277718353075 0.6522178927193474 0.002391138459624213 0.7580277718353075 -0.6522178927193474 -0.8510242709127007 -0.1534738216882031 0.5021986423457593 0.8510242709127007 0.1534738216882031 -0.5021986423457593 -0.0001897054169267276 -0.8685858618862585 0.4955386609974646 0.0001897054169267276 0.8685858618862585 -0.4955386609974646 -0.4816332037904218 -0.4003286159953588 0.7795937764129565 0.4816332037904218 0.4003286159953588 -0.7795937764129565 0.5697731445095979 -0.6724564716572923 0.4723990447935624 -0.5697731445095979 0.6724564716572923 -0.4723990447935624 0.01324367386319167 -0.5911598887815612 0.8064456528485832 -0.01324367386319167 0.5911598887815612 -0.8064456528485832 -0.5934713821303773 -0.1497793578805715 0.7907957147994312 0.5934713821303773 0.1497793578805715 -0.7907957147994312 0.6132460904981805 -0.4994353159705884 0.6119588202240867 -0.6132460904981805 0.4994353159705884 -0.6119588202240867 0.4595277406161648 -0.4008535545887295 0.7925595771787654 -0.4595277406161648 0.4008535545887295 -0.7925595771787654 -0.6121179836118351 -0.1235081349179034 0.7810616587364163 0.6121179836118351 0.1235081349179034 -0.7810616587364163 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937 0.5987942084567582 -0.1559010396415385 0.7855828166128199 -0.5987942084567582 0.1559010396415385 -0.7855828166128199 -0.6312255978924052 -0.232565300120417 0.7399105525300177 0.6312255978924052 0.232565300120417 -0.7399105525300177 0.8533897397826985 -0.1412687265943303 0.5017659802338482 -0.8533897397826985 0.1412687265943303 -0.5017659802338482 0.6300652721750066 -0.2328232920063185 0.7408178369196948 -0.6300652721750066 0.2328232920063185 -0.7408178369196948 0.6120888028889895 -0.123428166670594 0.7810971674831884 -0.6120888028889895 0.123428166670594 -0.7810971674831884</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID1563\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1561\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1559\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1560\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1561\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 6 0 2 8 10 1 6 6 0 12 12 0 8 14 10 6 6 12 16 12 8 18 20 14 6 22 6 16 12 18 16 18 8 24 14 20 26 20 6 22 16 28 22 16 18 30 30 18 24 26 20 32 20 22 32 22 28 32 16 34 28 34 36 28 28 36 32</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1561\" />\r\n\t\t\t\t\t<p>3 4 5 7 5 4 9 3 5 7 4 11 13 5 7 9 5 13 7 11 15 17 13 7 19 9 13 7 15 21 17 7 23 17 19 13 25 9 19 27 21 15 23 7 21 23 29 17 31 19 17 25 19 31 33 21 27 33 23 21 33 29 23 29 35 17 29 37 35 33 37 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1564\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1565\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID1569\">-0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7841270565986633 -2.018415689468384 -0.01978804916143417</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID1569\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1566\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID1570\">-0.03507863000728281 -0.9993638928866502 -0.006426454018542583 -0.03258879221096398 -0.992925889807309 -0.1141759518138322 0.0003259087856735385 -0.9990110688943522 0.04446097176206857 -0.0003259087856735385 0.9990110688943522 -0.04446097176206857 0.03258879221096398 0.992925889807309 0.1141759518138322 0.03507863000728281 0.9993638928866502 0.006426454018542583 0.537584015006585 -0.8419809394557429 0.04551400226989654 -0.537584015006585 0.8419809394557429 -0.04551400226989654 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 0.5592988209446661 0.8285232037662215 -0.02709482812018735 0.5488649620174 -0.8350332471836223 -0.03829790552515543 -0.5488649620174 0.8350332471836223 0.03829790552515543 -0.9224100075395584 -0.3862095043714823 -0.001413054848939107 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 0.9224100075395584 0.3862095043714823 0.001413054848939107 0.9534207476003748 -0.2793935727768806 -0.1137018449107683 -0.9534207476003748 0.2793935727768806 0.1137018449107683 0.9554196933123231 -0.280007949107208 -0.09364164707949933 -0.9554196933123231 0.280007949107208 0.09364164707949933 0.9834002721368989 -0.1574388066126764 0.09020491634855526 -0.9834002721368989 0.1574388066126764 -0.09020491634855526 0.9999030608777266 0.0091911144929521 0.01045907556770696 -0.9999030608777266 -0.0091911144929521 -0.01045907556770696 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937 0.9845608053297705 0.005789609544017289 0.1749471378151744 -0.9845608053297705 -0.005789609544017289 -0.1749471378151744 0.8533897397826985 -0.1412687265943303 0.5017659802338482 -0.8533897397826985 0.1412687265943303 -0.5017659802338482 0.8505881097345353 -0.07656512545695393 0.5202284586044782 -0.8505881097345353 0.07656512545695393 -0.5202284586044782 0.6120888028889895 -0.123428166670594 0.7810971674831884 -0.6120888028889895 0.123428166670594 -0.7810971674831884 0.6341513258495346 -0.07317274126097195 0.7697388166512276 -0.6341513258495346 0.07317274126097195 -0.7697388166512276 -0.6121179836118351 -0.1235081349179034 0.7810616587364163 -0.8510242709127007 -0.1534738216882031 0.5021986423457593 -0.6255914375192391 -0.09499054398525243 0.7743462725783586 0.6255914375192391 0.09499054398525243 -0.7743462725783586 0.8510242709127007 0.1534738216882031 -0.5021986423457593 0.6121179836118351 0.1235081349179034 -0.7810616587364163 -0.8365327615396679 -0.08000809676405099 0.5420439496231012 0.8365327615396679 0.08000809676405099 -0.5420439496231012 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 -0.986834032541885 -0.03790333343156378 0.1572320881114841 0.986834032541885 0.03790333343156378 -0.1572320881114841 -0.9853335926304631 -0.1499911356522045 0.08136565897052001 0.9853335926304631 0.1499911356522045 -0.08136565897052001 -0.9981388138662855 -0.05180664955192778 0.03217109441421623 0.9981388138662855 0.05180664955192778 -0.03217109441421623 -0.9436279770637638 -0.294802001739216 -0.1505258139758768 0.9436279770637638 0.294802001739216 0.1505258139758768</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID1570\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1568\">\r\n\t\t\t\t\t<float_array count=\"138\" id=\"ID1571\">-6.306092317982453 -1.271501018627536 -6.784815808535565 -1.286086166393232 -6.306369069507085 -1.185650880848618 -7.489267850228599 -1.171509235018648 -7.960392566110251 -1.242774628416125 -7.960111184225731 -1.156924499951786 -6.784817513680201 -1.286081136919438 -6.785094264637429 -1.200230589696816 -6.306370773987924 -1.185645853331707 -7.489550428628045 -1.257354880306367 -7.960393762555639 -1.242769734407629 -7.489269046334202 -1.171504342400244 16.22989170620917 -0.4325477354765682 16.23634433632682 -0.5182483619599257 15.62580784216991 -0.5234426142540005 -21.35518248273874 -0.3254202931075205 -21.34902642173081 -0.2397061667655785 -20.84021281446976 -0.2449004456687551 -21.59802244816052 0.3505792080735636 -21.08461437258555 0.4370503163289707 -20.98446818310251 0.345000167392186 -20.16364743902301 -0.3092719751842178 -20.2725391110552 -0.2235871018883999 -19.94171877301929 0.5993853514445762 -20.16364623668031 -0.3092722004508784 -19.94171757385895 0.5993851266589149 -19.83282590152668 0.5137016747808543 -19.38718969248185 0.8819730681369841 -19.49594649604843 0.9677624583550557 -19.12270220684322 1.627962861283831 -19.54988191260408 0.8983130588275439 -19.28656884661604 1.644559913419114 -19.12893707137241 1.652943780736948 -19.19823782851327 2.393227254796936 -19.35585556866196 2.384681651035667 -19.05768570728569 2.898233168553988 -19.58089838569085 2.25643435415043 -19.44853918039593 2.76280839742426 -19.30240151704015 2.785425753413094 -20.21626233545632 2.216000657861116 -20.04819653781429 2.804765886351715 -20.0743637675117 2.251597876075918 -20.04811880715953 2.805177302875323 -19.90621096466235 2.840771842231666 -20.07430436054864 2.252009829195494 16.58836098419017 -5.730743485420502 16.75644603800339 -6.319506967773847 16.44645311290055 -5.69514901710096 16.75599268744965 -6.319961358425972 16.61409424247359 -6.284363836867083 16.44602310623511 -5.695596235526827 18.82129313582166 0.2435889040443392 19.11037059099694 -0.2731696219641182 18.67517545389078 0.2662860105638668 19.58954765192474 0.1591349106955591 19.43201586527058 0.1502098457519561 19.14581736895401 0.6942703692766635 19.52270398761788 0.8858351267101063 19.89352402824985 0.2247900018658341 19.36515905154538 0.8770548724480094 20.19502555639999 0.4151013409679305 20.08623901514947 0.3293352869389188 19.66464977633564 1.06635550902239 19.74101486272088 0.7572303592065931 20.07183513911413 -0.06574207473235705 19.63212318776349 0.6715469093930906 20.07183384833129 -0.06574251590433804 19.96294217361733 -0.1514273870910756 19.63212189488597 0.6715464674480196</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"69\" source=\"#ID1571\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1567\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1565\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1566\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"23\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1567\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1568\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 2 8 10 9 0 10 6 11 8 12 12 13 13 14 10 15 6 16 16 17 10 18 16 19 18 20 18 21 16 22 20 23 18 24 20 25 22 26 22 27 20 28 24 29 22 30 24 31 26 32 26 33 24 34 28 35 26 36 28 37 30 38 28 39 32 40 30 41 32 42 34 43 30 44 36 45 37 46 38 47 37 48 42 49 38 50 37 51 44 52 42 53 44 54 46 55 42 56 44 57 48 58 46 59 48 60 50 61 46 62 48 63 52 64 50 65 52 66 13 67 50 68</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"23\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1567\" />\r\n\t\t\t\t\t<p>3 4 5 3 5 7 3 9 4 7 5 11 14 15 9 17 7 11 19 17 11 21 17 19 23 21 19 25 21 23 27 25 23 29 25 27 31 29 27 31 33 29 31 35 33 39 40 41 39 43 40 43 45 40 43 47 45 47 49 45 47 51 49 51 53 49 51 14 53</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1572\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1573\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1576\">-0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7841270565986633 -2.018415689468384 -0.01978804916143417</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1576\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1574\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1577\">-0.9436279770637638 -0.294802001739216 -0.1505258139758768 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 0.5592988209446661 0.8285232037662215 -0.02709482812018735 0.9436279770637638 0.294802001739216 0.1505258139758768</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1577\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1575\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1573\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1574\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1575\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1578\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1579\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1582\">-0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6489370465278626 0.3227427005767822 -0.2719404995441437</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1582\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1580\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1583\">0.158445906171609 -0.9873674686534116 0.0006137282883339717 0.158445906171609 -0.9873674686534116 0.0006137282883339717 0.158445906171609 -0.9873674686534116 0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1583\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1581\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1579\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1580\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1581\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1584\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1585\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1588\">0.7538297772407532 0.2898140251636505 0.2332167774438858 0.7403134107589722 0.280442476272583 0.2985353469848633 0.769927978515625 0.3120907545089722 0.236614540219307 0.769927978515625 0.3120907545089722 0.236614540219307 0.7403134107589722 0.280442476272583 0.2985353469848633 0.7538297772407532 0.2898140251636505 0.2332167774438858 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1588\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1586\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1589\">0.3954580285428707 -0.9144961465914285 -0.08549704983456716 0.1006962484761042 -0.9856925593885402 -0.1351682059839063 0.7920595892200424 -0.5939052573171069 0.1411316848042239 -0.7920595892200424 0.5939052573171069 -0.1411316848042239 -0.1006962484761042 0.9856925593885402 0.1351682059839063 -0.3954580285428707 0.9144961465914285 0.08549704983456716 0.7834096988866806 -0.5940114822015261 0.1828102915675878 -0.7834096988866806 0.5940114822015261 -0.1828102915675878</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1589\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1587\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1585\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1586\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"4\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1587\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 2 3 5 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1590\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1591\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID1594\">0.3516539335250855 0.4489807486534119 0.2332167774438858 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3516539335250855 0.4489807486534119 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.5283824801445007 0.4448592662811279 0.2332167774438858 0.5283824801445007 0.4448592662811279 0.2332167774438858 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5818127393722534 0.447659969329834 0.2332167774438858 0.5818127393722534 0.447659969329834 0.2332167774438858 0.6719444394111633 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 0.5869252681732178 0.6375383734703064 0.1986889690160751 0.5869252681732178 0.6375383734703064 0.1986889690160751</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID1594\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1592\">\r\n\t\t\t\t\t<float_array count=\"78\" id=\"ID1595\">-0.002455960715664099 -0.1340529164618239 -0.9909711316910512 -0.02541772641987503 -0.5744328089866907 -0.8181570064133806 -0.1159164628534591 -0.5849792717652266 -0.8027220099415288 0.1159164628534591 0.5849792717652266 0.8027220099415288 0.02541772641987503 0.5744328089866907 0.8181570064133806 0.002455960715664099 0.1340529164618239 0.9909711316910512 -0.003485674259203649 -0.135758403562462 -0.9907358406442811 0.003485674259203649 0.135758403562462 0.9907358406442811 -0.01360116989091377 -0.1197858847249975 -0.992706577996866 0.01360116989091377 0.1197858847249975 0.992706577996866 -0.0009837846824466707 -0.5287955557962981 -0.8487486626427067 0.0009837846824466707 0.5287955557962981 0.8487486626427067 -0.02366493571792748 -0.5517768020638852 -0.8336560031101667 0.02366493571792748 0.5517768020638852 0.8336560031101667 -0.001228812053990985 -0.5307931439620783 -0.8475005181967668 0.001228812053990985 0.5307931439620783 0.8475005181967668 -0.3120320962622111 -0.7954273829439994 -0.5195490827295054 0.3120320962622111 0.7954273829439994 0.5195490827295054 0.002893224898524778 -0.5261266435823435 -0.8504013077144604 -0.002893224898524778 0.5261266435823435 0.8504013077144604 -0.3639931181795807 -0.1116354944085396 -0.9246872586480613 0.3639931181795807 0.1116354944085396 0.9246872586480613 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 0.5805288259387089 0.79708037182807 0.1662803749714611 -0.534492854911476 -0.4762568934147193 -0.6982096816311992 0.534492854911476 0.4762568934147193 0.6982096816311992</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"26\" source=\"#ID1595\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1593\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1591\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1592\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"28\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1593\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 10 6 0 5 7 11 6 12 1 4 13 7 14 0 8 9 5 15 8 2 16 17 3 9 10 0 14 15 5 11 14 8 18 19 9 15 20 8 16 17 9 21 18 8 20 21 9 19 16 22 20 21 23 17 18 20 24 25 21 19 20 22 24 25 23 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1596\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1597\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID1600\">0.5869252681732178 0.6375383734703064 0.1986889690160751 0.534200131893158 0.7065956592559815 0.1053698509931564 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.534200131893158 0.7065956592559815 0.1053698509931564 0.5869252681732178 0.6375383734703064 0.1986889690160751 0.3691354095935822 0.7059374451637268 0.1053698509931564 0.3691354095935822 0.7059374451637268 0.1053698509931564 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3718721866607666 0.7579371929168701 -0.08268103003501892 0.3718721866607666 0.7579371929168701 -0.08268103003501892 0.534200131893158 0.7579361200332642 -0.08268103003501892 0.534200131893158 0.7579361200332642 -0.08268103003501892 0.6719444394111633 0.310824066400528 0.1522213369607925 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.6719444394111633 0.310824066400528 0.1522213369607925 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.6823241114616394 0.310824066400528 0.0157061405479908 0.6823241114616394 0.310824066400528 0.0157061405479908 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.3704305589199066 0.7212921380996704 -0.2198816239833832 0.3704305589199066 0.7212921380996704 -0.2198816239833832 0.5344406366348267 0.7229641675949097 -0.2198816239833832 0.5344406366348267 0.7229641675949097 -0.2198816239833832 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.359952837228775 0.5584809184074402 -0.2725684344768524 0.359952837228775 0.5584809184074402 -0.2725684344768524 0.5290966629981995 0.5639436841011047 -0.2725684344768524 0.5290966629981995 0.5639436841011047 -0.2725684344768524 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5818012356758118 0.5650895833969116 -0.2725684344768524 0.5818012356758118 0.5650895833969116 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.352996438741684 0.4595295786857605 -0.2725684344768524 0.352996438741684 0.4595295786857605 -0.2725684344768524 0.5275225043296814 0.4595295786857605 -0.2725684344768524 0.5275225043296814 0.4595295786857605 -0.2725684344768524 0.5826190710067749 0.4595295786857605 -0.2725684344768524 0.5826190710067749 0.4595295786857605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID1600\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1598\">\r\n\t\t\t\t\t<float_array count=\"198\" id=\"ID1601\">-0.534492854911476 -0.4762568934147193 -0.6982096816311992 -0.008708290630548747 -0.8994943682349239 -0.4368455644595113 0.002893224898524778 -0.5261266435823435 -0.8504013077144604 -0.002893224898524778 0.5261266435823435 0.8504013077144604 0.008708290630548747 0.8994943682349239 0.4368455644595113 0.534492854911476 0.4762568934147193 0.6982096816311992 0.001023643364597451 -0.8995424763256171 -0.4368321021173226 -0.001023643364597451 0.8995424763256171 0.4368321021173226 -0.0236357229016307 -0.9023480103169261 -0.4303596413233958 0.0236357229016307 0.9023480103169261 0.4303596413233958 -0.001228812053990985 -0.5307931439620783 -0.8475005181967668 0.001228812053990985 0.5307931439620783 0.8475005181967668 0.002310619850038598 -0.9999946954244299 -0.002295682667614813 -0.002310619850038598 0.9999946954244299 0.002295682667614813 0.0005887579113936776 -0.9999601086645632 -0.008912600275817318 -0.0005887579113936776 0.9999601086645632 0.008912600275817318 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 -0.9696809579224759 -0.2296289695838888 -0.08360248902031012 0.9696809579224759 0.2296289695838888 0.08360248902031012 0.5805288259387089 0.79708037182807 0.1662803749714611 0.0002517151608787327 -0.8990035483622607 -0.4379412708018532 -0.0002517151608787327 0.8990035483622607 0.4379412708018532 0.0001049664590907936 -0.9999945765291868 0.003291791951931407 -0.0001049664590907936 0.9999945765291868 -0.003291791951931407 -0.004762183782822505 -0.99991582039779 -0.01206953701817792 0.004762183782822505 0.99991582039779 0.01206953701817792 -0.9738578787136809 -0.22317279432954 -0.04236432388737434 0.9738578787136809 0.22317279432954 0.04236432388737434 -0.0009837846824466707 -0.5287955557962981 -0.8487486626427067 0.0009837846824466707 0.5287955557962981 0.8487486626427067 0.004960938197936508 -0.7176065544393218 0.6964310605637294 -0.004960938197936508 0.7176065544393218 -0.6964310605637294 0.006236033036651492 -0.7266495822650051 0.6869799825948784 -0.006236033036651492 0.7266495822650051 -0.6869799825948784 -0.01015286975425089 -0.7326993687073732 0.6804767110868452 0.01015286975425089 0.7326993687073732 -0.6804767110868452 -0.9735634800605109 -0.2269766006540034 0.02560806607341277 0.9735634800605109 0.2269766006540034 -0.02560806607341277 -0.03242314820124487 -0.720253991249472 0.692952327039837 0.03242314820124487 0.720253991249472 -0.692952327039837 -0.9570457757608381 -0.2670484824654185 0.1129092162369959 0.9570457757608381 0.2670484824654185 -0.1129092162369959 0.0009666724662604464 -0.131014841647294 0.991379935651553 -0.0009666724662604464 0.131014841647294 -0.991379935651553 0.001696977507081195 -0.155230976216615 0.9878767454951943 -0.001696977507081195 0.155230976216615 -0.9878767454951943 0.00350166923253529 -0.1610376828668566 0.9869420464289985 -0.00350166923253529 0.1610376828668566 -0.9869420464289985 -0.9623626947490217 -0.206647714191229 0.1765071272638618 0.9623626947490217 0.206647714191229 -0.1765071272638618 -0.5189880486035221 -0.1695065661790611 0.8378060213610854 0.5189880486035221 0.1695065661790611 -0.8378060213610854 -2.50664681986786e-005 -0.005818806173580303 0.9999830702898858 2.50664681986786e-005 0.005818806173580303 -0.9999830702898858 -0.0008486584844322239 -0.002669912908706293 0.9999960756642182 0.0008486584844322239 0.002669912908706293 -0.9999960756642182 0 0 1 -0 -0 -1 -0.4533059364850565 -0.06671574964729424 0.8888547331799531 0.4533059364850565 0.06671574964729424 -0.8888547331799531 -0.8647407894750915 -0.4937134355135344 0.09203483368496382 0.8647407894750915 0.4937134355135344 -0.09203483368496382 -0.0008261090318084516 -0.008133841918222379 0.9999665785212609 0.0008261090318084516 0.008133841918222379 -0.9999665785212609 -0.0009780757563540878 -0.002169755771291285 0.999997167759843 0.0009780757563540878 0.002169755771291285 -0.999997167759843</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"66\" source=\"#ID1601\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1599\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1597\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1598\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"42\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1599\" />\r\n\t\t\t\t\t<p>0 1 2 1 6 2 8 1 0 2 6 10 1 12 6 8 14 1 0 16 17 6 20 10 12 22 6 14 12 1 24 14 8 16 26 17 10 20 28 6 22 20 12 30 22 14 32 12 24 34 14 17 26 36 32 30 12 34 32 14 38 34 24 26 40 36 42 30 32 44 32 34 46 34 38 40 48 36 44 42 32 46 44 34 46 38 50 40 50 48 52 42 44 54 44 46 56 46 50 40 58 50 54 52 44 56 54 46 56 50 58 40 60 58 62 52 54 54 56 64 56 58 64 62 54 64</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"42\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1599\" />\r\n\t\t\t\t\t<p>3 4 5 3 7 4 5 4 9 11 7 3 7 13 4 4 15 9 18 19 5 11 21 7 7 23 13 4 13 15 9 15 25 18 27 19 29 21 11 21 23 7 23 31 13 13 33 15 15 35 25 37 27 18 13 31 33 15 33 35 25 35 39 37 41 27 33 31 43 35 33 45 39 35 47 37 49 41 33 43 45 35 45 47 51 39 47 49 51 41 45 43 53 47 45 55 51 47 57 51 59 41 45 53 55 47 55 57 59 51 57 59 61 41 55 53 63 65 57 55 65 59 57 65 55 63</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1602\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1603\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID1606\">0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5913218855857849 -0.7019175291061401 0.2899888455867767 0.5913218855857849 -0.7019175291061401 0.2899888455867767 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5991842150688171 -0.6751006841659546 0.2901735305786133 0.5991842150688171 -0.6751006841659546 0.2901735305786133 0.6027332544326782 -0.6565739512443543 0.2298039048910141 0.6027332544326782 -0.6565739512443543 0.2298039048910141 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.606005072593689 -0.6353139281272888 0.1513132899999619 0.606005072593689 -0.6353139281272888 0.1513132899999619 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6138572096824646 -0.5806991457939148 0.01851669326424599 0.6138572096824646 -0.5806991457939148 0.01851669326424599 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6184371709823608 -0.523088812828064 -0.1182090491056442 0.6184371709823608 -0.523088812828064 -0.1182090491056442 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6197459101676941 -0.4733588397502899 -0.2504602670669556 0.6197459101676941 -0.4733588397502899 -0.2504602670669556 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5905120968818665 -0.6027178764343262 -0.2739138007164002</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID1606\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1604\">\r\n\t\t\t\t\t<float_array count=\"156\" id=\"ID1607\">-0.6550028074066617 0.4876263453328185 0.57722774502509 -0.7476141706463564 0.6572814401000713 0.09515335174725628 -0.8216292782168875 0.2706545588897141 0.5016686545211001 0.8216292782168875 -0.2706545588897141 -0.5016686545211001 0.7476141706463564 -0.6572814401000713 -0.09515335174725628 0.6550028074066617 -0.4876263453328185 -0.57722774502509 -0.9584160287978759 0.2850066878088134 -0.01448805188969848 0.9584160287978759 -0.2850066878088134 0.01448805188969848 -0.7753733229355523 0.4751248107874208 0.4159959425933109 0.7753733229355523 -0.4751248107874208 -0.4159959425933109 -0.7244565686574949 0.6850933441356621 0.07622197812982619 0.7244565686574949 -0.6850933441356621 -0.07622197812982619 -0.8941909770901743 0.4475430250016918 0.01130209108326358 0.8941909770901743 -0.4475430250016918 -0.01130209108326358 -0.8881486012223843 0.4524779345091655 0.08034787445254196 0.8881486012223843 -0.4524779345091655 -0.08034787445254196 -0.4543309600657438 0.8834859794272519 0.1141748785031492 0.4543309600657438 -0.8834859794272519 -0.1141748785031492 -0.8752530071759646 0.4733778114794652 0.09922510281346596 0.8752530071759646 -0.4733778114794652 -0.09922510281346596 -0.3839601059320404 0.8794258325261762 0.2813980137426312 0.3839601059320404 -0.8794258325261762 -0.2813980137426312 -0.4390785855880069 0.8722665560520438 0.2153161649090516 0.4390785855880069 -0.8722665560520438 -0.2153161649090516 -0.3813913782069187 0.8843791144645131 0.2690988638556295 0.3813913782069187 -0.8843791144645131 -0.2690988638556295 -0.7923653544809333 0.608650103731723 0.0412576810505382 0.7923653544809333 -0.608650103731723 -0.0412576810505382 -0.3135274238242752 0.882947604923759 0.3494339443578869 0.3135274238242752 -0.882947604923759 -0.3494339443578869 -0.8653479516275449 0.4780730382160567 0.1503964519025673 0.8653479516275449 -0.4780730382160567 -0.1503964519025673 -0.7968685932815799 0.5870304906792523 0.1428133329010719 0.7968685932815799 -0.5870304906792523 -0.1428133329010719 -0.2820162498870407 0.8935441405364961 0.3493504024794374 0.2820162498870407 -0.8935441405364961 -0.3493504024794374 -0.8445674453171055 0.5026266180178239 0.1845868716092845 0.8445674453171055 -0.5026266180178239 -0.1845868716092845 -0.8188546049565538 0.5430968997890379 0.1858033728999071 0.8188546049565538 -0.5430968997890379 -0.1858033728999071 -0.2493540230310667 0.8484132149469607 0.4669235353905227 0.2493540230310667 -0.8484132149469607 -0.4669235353905227 -0.7773761696034033 0.4537299634695453 0.4356781050072014 0.7773761696034033 -0.4537299634695453 -0.4356781050072014 -0.7904401366226477 0.4467532877527571 0.4190654964299407 0.7904401366226477 -0.4467532877527571 -0.4190654964299407 -0.136250489327595 0.3488184035330123 0.9272332638094212 0.136250489327595 -0.3488184035330123 -0.9272332638094212 -0.2818180752902821 0.1785579729115788 0.9427065411618766 0.2818180752902821 -0.1785579729115788 -0.9427065411618766 -0.4644038303505231 0.1881541816406321 0.8654057350670302 0.4644038303505231 -0.1881541816406321 -0.8654057350670302</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"52\" source=\"#ID1607\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1605\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1603\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1604\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"62\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1605\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 2 1 6 7 4 3 2 6 8 9 7 3 1 10 6 7 11 4 6 12 8 9 13 7 6 10 14 15 11 7 8 12 16 17 13 9 12 6 14 15 7 13 14 10 18 19 11 15 20 8 16 17 9 21 16 12 22 23 13 17 12 14 22 23 15 13 18 24 14 15 25 19 10 26 18 19 27 11 22 14 24 25 15 23 28 24 18 19 25 29 18 26 30 31 27 19 30 28 18 19 29 31 26 32 30 31 33 27 30 34 28 29 35 31 30 32 36 37 33 31 36 34 30 31 35 37 32 38 36 37 39 33 36 40 34 35 41 37 36 38 42 43 39 37 42 40 36 37 41 43 38 44 42 43 45 39 42 46 40 41 47 43 42 44 48 49 45 43 48 46 42 43 47 49 44 50 48 49 51 45</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1608\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1609\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID1612\">0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6610545516014099 -0.6420672535896301 0.2324964851140976</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID1612\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1610\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID1613\">-0.384970124415974 0.9206201242962624 0.06524254783409289 -0.2771330402511802 0.960779697982544 0.009982481941339451 0.2331018669884867 0.8320242126565701 0.5033877522940903 -0.2331018669884867 -0.8320242126565701 -0.5033877522940903 0.2771330402511802 -0.960779697982544 -0.009982481941339451 0.384970124415974 -0.9206201242962624 -0.06524254783409289 -0.355210421201735 0.9270152150350377 0.1202844452255927 0.355210421201735 -0.9270152150350377 -0.1202844452255927 -0.03348084013298106 0.9726744552437342 0.2297464634337051 0.03348084013298106 -0.9726744552437342 -0.2297464634337051</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID1613\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1611\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1609\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1610\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1611\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 2 3 5 7 6 8 0 5 9 7</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1614\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1615\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID1618\">0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6621965765953064 0.320149302482605 -0.2725684344768524</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID1618\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1616\">\r\n\t\t\t\t\t<float_array count=\"66\" id=\"ID1619\">-0.8895615761176244 0 0.4568152824666966 -0.4245302747465338 0.4022424534965067 0.8111566152283682 -0.8090636576108965 -0.00529621518445905 0.5876971567380582 0.8090636576108965 0.00529621518445905 -0.5876971567380582 0.4245302747465338 -0.4022424534965067 -0.8111566152283682 0.8895615761176244 -0 -0.4568152824666966 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.4374569246052411 -0.004190067454014929 0.899229604967305 0.4374569246052411 0.004190067454014929 -0.899229604967305 0 0 1 -0 -0 -1 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"22\" source=\"#ID1619\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1617\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1615\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1616\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"10\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1617\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 8 7 14 15 10 9 16 17 18 19 20 21</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1620\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1621\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1624\">0.351957768201828 -1.969097256660461 0.0834038257598877 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.351957768201828 -1.969097256660461 0.0834038257598877</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1624\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1622\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1625\">-0.149357994953947 0.9875735034865902 -0.04889544513099698 -0.7043453961272412 0.6885000654906582 0.1728155744535739 -0.747044926563488 0.6504540070975241 -0.1372350623803081 0.747044926563488 -0.6504540070975241 0.1372350623803081 0.7043453961272412 -0.6885000654906582 -0.1728155744535739 0.149357994953947 -0.9875735034865902 0.04889544513099698</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1625\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1623\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1621\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1622\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1623\" />\r\n\t\t\t\t\t<p>0 1 2</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"1\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1623\" />\r\n\t\t\t\t\t<p>3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1626\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1627\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID1630\">0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.756475567817688 -2.059271097183228 0.09401828050613403 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.756475567817688 -2.059271097183228 0.09401828050613403 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.756475567817688 -2.010841131210327 0.1919151991605759 0.756475567817688 -2.010841131210327 0.1919151991605759 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.062207937240601 0.09551356732845306 0.7103111147880554 -2.062207937240601 0.09551356732845306 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.6655531525611877 -2.059271097183228 0.09401828050613403 0.6655531525611877 -2.059271097183228 0.09401828050613403 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID1630\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1628\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID1631\">0.943627143899562 -0.2948034789954753 -0.1505281437742455 0.5561347809388669 -0.800980889787665 0.2216838280638415 0.9853337997491376 -0.1499904908385696 0.08136433942416936 -0.9853337997491376 0.1499904908385696 -0.08136433942416936 -0.5561347809388669 0.800980889787665 -0.2216838280638415 -0.943627143899562 0.2948034789954753 0.1505281437742455 0.5933281384221253 -0.6415076825928938 0.4862402835335944 -0.5933281384221253 0.6415076825928938 -0.4862402835335944 0.5592979853536424 -0.8285238041283055 0.0270937183147329 -0.5592979853536424 0.8285238041283055 -0.0270937183147329 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 0.0001897390297503977 -0.8685842107168599 0.4955415551620975 -0.0001897390297503977 0.8685842107168599 -0.4955415551620975 -0.001021169911253755 -0.9650411311786424 0.2620964943402691 0.001021169911253755 0.9650411311786424 -0.2620964943402691 -0.000319951151868398 -0.9990084344300625 0.04452017035969026 0.000319951151868398 0.9990084344300625 -0.04452017035969026 -0.5519720940320964 -0.8023482870868035 0.2270771534494271 0.5519720940320964 0.8023482870868035 -0.2270771534494271 -0.5375902063391951 -0.8419767167272813 0.04551899095244997 0.5375902063391951 0.8419767167272813 -0.04551899095244997 -0.5697713573672883 -0.6724576161103255 0.4723995711884758 0.5697713573672883 0.6724576161103255 -0.4723995711884758 -0.9834003406516149 -0.1574389615609065 0.09020389896734656 0.9834003406516149 0.1574389615609065 -0.09020389896734656 -0.9534206114498375 -0.279393753748928 -0.1137025418744073 0.9534206114498375 0.279393753748928 0.1137025418744073 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID1631\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1629\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1627\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1628\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1629\" />\r\n\t\t\t\t\t<p>0 1 2 1 6 2 8 1 0 2 6 10 1 12 6 1 8 14 1 14 12 8 16 14 14 18 12 16 20 14 12 18 22 20 18 14 22 18 24 18 20 26 18 26 24 22 24 28</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"16\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1629\" />\r\n\t\t\t\t\t<p>3 4 5 3 7 4 5 4 9 11 7 3 7 13 4 15 9 4 13 15 4 15 17 9 13 19 15 15 21 17 23 19 13 15 19 21 25 19 23 27 21 19 25 27 19 29 25 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1632\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1633\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID1636\">0.756475567817688 -2.010841131210327 0.1919151991605759 0.7413764595985413 -1.974473595619202 0.2335336655378342 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7413764595985413 -1.974473595619202 0.2335336655378342 0.756475567817688 -2.010841131210327 0.1919151991605759 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7103111147880554 -1.981115937232971 0.2377601712942123 0.7103111147880554 -1.981115937232971 0.2377601712942123 0.7297222018241882 -1.956180214881897 0.2581743896007538 0.7297222018241882 -1.956180214881897 0.2581743896007538 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7161936759948731 -1.930104374885559 0.2703545987606049 0.7161936759948731 -1.930104374885559 0.2703545987606049 0.7103111147880554 -1.961444020271301 0.2600972652435303 0.7103111147880554 -1.961444020271301 0.2600972652435303 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.6930640935897827 -1.956180214881897 0.2581743896007538 0.6930640935897827 -1.956180214881897 0.2581743896007538 0.6763654351234436 -1.974473595619202 0.2335336655378342 0.6763654351234436 -1.974473595619202 0.2335336655378342 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7044104337692261 -1.930104374885559 0.2703545987606049 0.7044104337692261 -1.930104374885559 0.2703545987606049 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.91874897480011 0.2325675636529923</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID1636\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1634\">\r\n\t\t\t\t\t<float_array count=\"114\" id=\"ID1637\">0.5933281384221253 -0.6415076825928938 0.4862402835335944 0.6038475476821412 -0.5112670930340427 0.6115342171447025 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 -0.6038475476821412 0.5112670930340427 -0.6115342171447025 -0.5933281384221253 0.6415076825928938 -0.4862402835335944 0.8510247683157842 -0.1534714959402908 0.5021985101998162 -0.8510247683157842 0.1534714959402908 -0.5021985101998162 0.002390214720458501 -0.7580324268348783 0.6522124858820286 -0.002390214720458501 0.7580324268348783 -0.6522124858820286 0.4816343039379686 -0.4003304091070729 0.7795921759576298 -0.4816343039379686 0.4003304091070729 -0.7795921759576298 0.0001897390297503977 -0.8685842107168599 0.4955415551620975 -0.0001897390297503977 0.8685842107168599 -0.4955415551620975 0.593480914577841 -0.1497719923081683 0.7907899558997266 -0.593480914577841 0.1497719923081683 -0.7907899558997266 -0.01324242902615902 -0.5911708723841617 0.8064376217154284 0.01324242902615902 0.5911708723841617 -0.8064376217154284 -0.5697713573672883 -0.6724576161103255 0.4723995711884758 0.5697713573672883 0.6724576161103255 -0.4723995711884758 0.6121141719640919 -0.1235155841382136 0.7810634679433613 -0.6121141719640919 0.1235155841382136 -0.7810634679433613 -0.4595343448738955 -0.4008536781948491 0.7925556854625295 0.4595343448738955 0.4008536781948491 -0.7925556854625295 -0.6132519451184463 -0.499434195720541 0.6119538675042576 0.6132519451184463 0.499434195720541 -0.6119538675042576 0.6312475923018771 -0.2325527198214028 0.7398957424642685 -0.6312475923018771 0.2325527198214028 -0.7398957424642685 -0.5988004092927477 -0.1558923629322883 0.7855798119925344 0.5988004092927477 0.1558923629322883 -0.7855798119925344 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482 -0.630075658131957 -0.2328132967471215 0.7408121448027956 -0.6120926070614714 -0.1234322633736009 0.781093539045844 0.6120926070614714 0.1234322633736009 -0.781093539045844 0.630075658131957 0.2328132967471215 -0.7408121448027956 -0.8533897187137808 -0.1412637953393277 0.5017674044016239 0.8533897187137808 0.1412637953393277 -0.5017674044016239</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"38\" source=\"#ID1637\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1635\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1633\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1634\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1635\" />\r\n\t\t\t\t\t<p>0 1 2 2 1 6 8 1 0 1 10 6 1 8 10 0 12 8 10 14 6 10 8 16 12 18 8 14 20 6 16 14 10 8 22 16 18 24 8 26 20 14 16 26 14 8 24 22 22 28 16 24 18 30 32 28 33 16 28 32 22 24 36 22 36 28 24 30 36 28 36 33</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1635\" />\r\n\t\t\t\t\t<p>3 4 5 7 4 3 5 4 9 7 11 4 11 9 4 9 13 5 7 15 11 17 9 11 9 19 13 7 21 15 11 15 17 17 23 9 9 25 19 15 21 27 15 27 17 23 25 9 17 29 23 31 19 25 34 29 35 35 29 17 37 25 23 29 37 23 37 31 25 34 37 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1638\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1639\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID1643\">0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7769084572792053 -1.932552456855774 0.167515367269516 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID1643\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1640\">\r\n\t\t\t\t\t<float_array count=\"162\" id=\"ID1644\">0.03260687053562721 -0.9929270011109181 -0.114161124988988 0.0350836217122919 -0.9993641268128589 -0.006362509498693735 -0.000319951151868398 -0.9990084344300625 0.04452017035969026 0.000319951151868398 0.9990084344300625 -0.04452017035969026 -0.0350836217122919 0.9993641268128589 0.006362509498693735 -0.03260687053562721 0.9929270011109181 0.114161124988988 -0.5375902063391951 -0.8419767167272813 0.04551899095244997 0.5375902063391951 0.8419767167272813 -0.04551899095244997 0.5592979853536424 -0.8285238041283055 0.0270937183147329 -0.5592979853536424 0.8285238041283055 -0.0270937183147329 -0.5488772901889137 -0.8350252574485036 -0.03829542711519779 0.5488772901889137 0.8350252574485036 0.03829542711519779 0.9224089668347014 -0.3862119958074538 -0.001411452217341778 0.9763108033078525 -0.2123747784436454 -0.04140252196893392 -0.9763108033078525 0.2123747784436454 0.04140252196893392 -0.9224089668347014 0.3862119958074538 0.001411452217341778 -0.9534206114498375 -0.279393753748928 -0.1137025418744073 0.9534206114498375 0.279393753748928 0.1137025418744073 0.943627143899562 -0.2948034789954753 -0.1505281437742455 -0.943627143899562 0.2948034789954753 0.1505281437742455 -0.9554201128959187 -0.2800080264120052 -0.09363713482803654 0.9554201128959187 0.2800080264120052 0.09363713482803654 0.9981387801496015 -0.05180774196831358 0.03217038130968378 -0.9981387801496015 0.05180774196831358 -0.03217038130968378 -0.9834003406516149 -0.1574389615609065 0.09020389896734656 0.9834003406516149 0.1574389615609065 -0.09020389896734656 0.9853337997491376 -0.1499904908385696 0.08136433942416936 -0.9853337997491376 0.1499904908385696 -0.08136433942416936 -0.9999030821333683 0.009189671904800476 0.01045831107171379 0.9999030821333683 -0.009189671904800476 -0.01045831107171379 0.9868338077903163 -0.03790197884639443 0.1572338252463278 -0.9868338077903163 0.03790197884639443 -0.1572338252463278 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 -0.9845592136282013 0.005778961781360174 0.1749564473248911 0.9845592136282013 -0.005778961781360174 -0.1749564473248911 0.8365363380127288 -0.08000022603088255 0.5420395917451615 -0.8365363380127288 0.08000022603088255 -0.5420395917451615 -0.8533897187137808 -0.1412637953393277 0.5017674044016239 0.8533897187137808 0.1412637953393277 -0.5017674044016239 0.8510247683157842 -0.1534714959402908 0.5021985101998162 -0.8510247683157842 0.1534714959402908 -0.5021985101998162 -0.8505869295512368 -0.07656434047780775 0.5202305037613593 0.8505869295512368 0.07656434047780775 -0.5202305037613593 0.625589589694931 -0.09499442026280379 0.7743472899056741 -0.625589589694931 0.09499442026280379 -0.7743472899056741 -0.6120926070614714 -0.1234322633736009 0.781093539045844 0.6120926070614714 0.1234322633736009 -0.781093539045844 0.6121141719640919 -0.1235155841382136 0.7810634679433613 -0.6121141719640919 0.1235155841382136 -0.7810634679433613 -0.6341573082842825 -0.07317161945134183 0.7697339946088529 0.6341573082842825 0.07317161945134183 -0.7697339946088529</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"54\" source=\"#ID1644\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1642\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1645\">6.755113598492128 -1.28818411616344 6.276391367870363 -1.273598846461514 6.276668932229784 -1.187747990949572 7.931538674230804 -1.244918489932155 7.460416922470831 -1.173652500424159 7.93125667663631 -1.159067643361002 6.756122927852144 -1.200172844248997 6.755846175862104 -1.286023391469558 6.277401224106905 -1.185588107884238 7.932052753930135 -1.242815736372001 7.461212451825801 -1.257400882197142 7.460930856031394 -1.171550344724229 -16.24728231087358 -0.5177389912904121 -16.24082968313403 -0.4320383646962481 -15.63674559141635 -0.522933243591203 21.33544447558737 -0.2403093091453216 21.34160053997291 -0.3260234353371425 20.8266311479033 -0.245503588039401 -14.79313507739231 5.22963607387074 -14.28798007840902 5.22391645303245 -14.19140803992131 5.129532450942014 21.07322891855065 0.4447104957203296 21.58663672369534 0.3582394118802513 20.97308269046432 0.3526603727741297 -19.9633255362985 -0.1517282072863839 -20.07221720636866 -0.06604333244753349 -19.63250515425505 0.6712456823300048 20.27214182428386 -0.2232742610814208 20.16325015490548 -0.3089591364643262 19.94132142720788 0.5996982122972813 -20.07221849283267 -0.06604289288495532 -19.74139811312834 0.7569295761315995 -19.63250644281464 0.671246122666006 19.94132023358347 0.5996979883382857 20.16324895809792 -0.3089593609044395 19.83242856390492 0.514014534373161 -20.08491412531244 0.3303765089605132 -20.19370065774289 0.4161425699128248 -19.6633247007291 1.067396790538526 19.49744157309759 0.9665899046439173 19.38868477230044 0.8808005122531655 19.12419723176296 1.626790324292759 -19.89337726924902 0.2264197868138914 -19.52255720459599 0.887465042970309 -19.36501226868057 0.8786847869640739 19.28749393754247 1.64325076531458 19.55080638375404 0.8970037444619536 19.12986222150346 1.651634634500309 -19.43161350839342 0.1546049060511749 -19.58914529491563 0.1635299724358948 -19.14541499575194 0.6986655174245279 19.35649336917293 2.380108223234186 19.1988756900863 2.388653849969002 19.05833933438694 2.89366112135713 -19.11172399431847 -0.2679135574191213 -18.82266012345276 0.2488447054826669 -18.6765281188492 0.2715418004460036 19.44731916119307 2.757970496121026 19.5796641290889 2.25159550389601 19.30116719062189 2.780587894495063 -16.76336612554423 -6.302297048279994 -16.45337271801021 -5.677936043669404 -16.62145283987993 -6.266699761521001 20.20919753439371 2.199007422694983 20.06728409754036 2.234604336452552 20.04109973271386 2.787767615572082 -16.59522296582594 -5.713583036091153 -16.45332255721194 -5.677988345851003 -16.76331323493317 -6.30235018920447 20.041108713796 2.787719521374515 20.06729093591975 2.234556179490449 19.8992081362568 2.823313794863152</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"72\" source=\"#ID1645\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1641\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1639\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1640\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1641\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1642\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 3 6 4 2 5 8 6 0 7 2 8 1 9 10 10 6 11 12 12 8 13 13 14 6 15 10 16 16 17 8 18 18 19 13 20 16 21 10 22 20 23 13 24 18 25 22 26 16 27 20 28 24 29 18 30 26 31 22 32 24 33 20 34 28 35 22 36 26 37 30 38 24 39 28 40 32 41 26 42 34 43 30 44 32 45 28 46 36 47 30 48 34 49 38 50 32 51 36 52 40 53 34 54 42 55 38 56 40 57 36 58 44 59 42 60 46 61 38 62 40 63 44 64 48 65 50 66 46 67 42 68 48 69 44 70 52 71</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1641\" />\r\n\t\t\t\t\t<p>3 4 5 3 7 4 3 5 9 7 11 4 14 9 15 17 11 7 14 19 9 21 11 17 23 19 14 25 21 17 23 27 19 29 21 25 31 27 23 33 29 25 31 35 27 37 29 33 39 35 31 41 37 33 39 43 35 45 37 41 39 47 43 49 45 41 43 47 51 53 45 49</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1646\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1647\">\r\n\t\t\t\t\t<float_array count=\"216\" id=\"ID1651\">0.006833886727690697 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.1739678084850311 -0.02579164505004883 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 -0.003804403357207775 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.003717809915542603 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"72\" source=\"#ID1651\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1648\">\r\n\t\t\t\t\t<float_array count=\"216\" id=\"ID1652\">0.9998049716621695 0.003265724132970699 -0.01947700401745051 0.6962336060517574 -0.1186870162805717 0.7079351368385252 0.9998049107848057 -0.003265929304979619 0.01948009436223057 -0.9998049107848057 0.003265929304979619 -0.01948009436223057 -0.6962336060517574 0.1186870162805717 -0.7079351368385252 -0.9998049716621695 -0.003265724132970699 0.01947700401745051 2.619829425874514e-011 0.9963636286193238 0.08520281429937872 -4.558107797513391e-018 0.9963634276886537 0.08520516395452349 -1.705110882004213e-005 0.9963684474014146 0.08514644286260223 1.705110882004213e-005 -0.9963684474014146 -0.08514644286260223 4.558107797513391e-018 -0.9963634276886537 -0.08520516395452349 -2.619829425874514e-011 -0.9963636286193238 -0.08520281429937872 0.7159194915021295 -0.1154425096916523 0.6885726603949834 -0.7159194915021295 0.1154425096916523 -0.6885726603949834 0.6962354344651125 0.118687547969271 -0.707933249503241 -0.6962354344651125 -0.118687547969271 0.707933249503241 8.864681295471469e-011 0.9963669954613724 0.08516343320508928 -8.864681295471469e-011 -0.9963669954613724 -0.08516343320508928 -2.176765036235961e-005 0.9963588062953948 0.08525918509923451 2.176765036235961e-005 -0.9963588062953948 -0.08525918509923451 6.96112966911225e-024 -0.9963651261403207 -0.08518530044193647 1.566060733247115e-011 -0.9963648425785238 -0.08518861704167753 -8.274059926537097e-006 -0.9963661779121036 -0.08517299715500586 8.274059926537097e-006 0.9963661779121036 0.08517299715500586 -1.566060733247115e-011 0.9963648425785238 0.08518861704167753 -6.96112966911225e-024 0.9963651261403207 0.08518530044193647 -2.471863667802537e-006 -0.1653464355874766 0.9862355480474259 2.471863667802537e-006 0.1653464355874766 -0.9862355480474259 -1.493160568799804e-005 -0.9963635068379099 -0.08520423709364172 3.03852199377559e-018 -0.9963647790799293 -0.08518935971706705 -3.03852199377559e-018 0.9963647790799293 0.08518935971706705 1.493160568799804e-005 0.9963635068379099 0.08520423709364172 0.7159269080944584 0.1154408704105128 -0.6885652240021801 -0.7159269080944584 -0.1154408704105128 0.6885652240021801 1.705156827135167e-005 0.9963684473730702 0.08514644319419053 -1.705156827135167e-005 -0.9963684473730702 -0.08514644319419053 1.131742397740694e-010 0.99636066224498 0.08523749603751304 -1.131742397740694e-010 -0.99636066224498 -0.08523749603751304 4.302158584745926e-011 -0.9963668826780806 -0.08516475269948359 -4.302158584745926e-011 0.9963668826780806 0.08516475269948359 -2.593857004538737e-006 -0.1653464337092199 0.98623554836201 2.593857004538737e-006 0.1653464337092199 -0.98623554836201 7.76297641547973e-011 -0.9963622345947807 -0.08521911448316716 -7.76297641547973e-011 0.9963622345947807 0.08521911448316716 -1.559712169649621e-006 0.1653464004706182 -0.9862355539367748 1.559712169649621e-006 -0.1653464004706182 0.9862355539367748 0 0.9963634276886574 0.08520516395448119 -0 -0.9963634276886574 -0.08520516395448119 -0.6962457922026375 -0.1186868026290101 0.7079231877271882 0.6962457922026375 0.1186868026290101 -0.7079231877271882 -1.627571474248932e-006 0.1653464000348263 -0.9862355540097275 1.627571474248932e-006 -0.1653464000348263 0.9862355540097275 2.176823690354987e-005 0.9963588063316035 0.08525918467594232 -2.176823690354987e-005 -0.9963588063316035 -0.08525918467594232 8.274282878190502e-006 -0.9963661779258559 -0.08517299699410662 -8.274282878190502e-006 0.9963661779258559 0.08517299699410662 1.493200802520914e-005 -0.9963635068130742 -0.08520423738399643 -1.493200802520914e-005 0.9963635068130742 0.08520423738399643 -0.7159325878051063 -0.1154387083727279 0.6885596810211297 -0.9998049490353376 -0.003265232502298848 0.01947824789738779 0.9998049490353376 0.003265232502298848 -0.01947824789738779 0.7159325878051063 0.1154387083727279 -0.6885596810211297 -0.6962484674923013 0.1186859181289345 -0.7079207048480173 0.6962484674923013 -0.1186859181289345 0.7079207048480173 -0.7159407679065135 0.1154380930984608 -0.6885512787811979 0.7159407679065135 -0.1154380930984608 0.6885512787811979 0 -0.9963651261403206 -0.08518530044193662 -0 0.9963651261403206 0.08518530044193662 0 -0.9963647790799293 -0.08518935971706705 -0 0.9963647790799293 0.08518935971706705 -0.999805002135868 0.003265123499963573 -0.01947554036804029 0.999805002135868 -0.003265123499963573 0.01947554036804029</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"72\" source=\"#ID1652\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1650\">\r\n\t\t\t\t\t<float_array count=\"190\" id=\"ID1653\">-3.78385647797872 -0.5368291555505009 -1.739423843074547 -0.1799178917846214 -1.730899181380262 -0.2436144662387565 0.03804403357207777 -0.08565411079277659 -0.06833886727690695 -0.08565411079277659 -0.03717809915542601 -0.02648206485871089 -3.783857775120314 -0.5368237240548432 -3.792386478312588 -0.4731251089819596 -1.739424462173343 -0.1799148638363466 -3.784698469383545 -0.5599226070787846 -3.793227792223549 -0.4962241689968014 -1.740270053687452 -0.2030113945499858 0.03810357741858603 -0.08560710535715624 -0.03711833609852653 -0.02643488697022119 0.03810388751150448 -0.001919473357293152 0.03804403357207775 -0.08544425710045202 -0.03717809915542603 -0.1446184544504857 -0.06833886727690697 -0.08544425710045202 0.06833886727690698 -0.2181024719236225 -0.03804403357207774 -0.2181024719236225 0.03717809915542604 -0.1589278689549507 -3.517503574711176 -1.209469476160321 -1.637576351005736 -0.4899506188661591 -1.60714885377694 -0.5493620486491635 0.06833886727690695 -0.2180778897768378 0.03717809915542601 -0.2772523574934656 -0.03804403357207777 -0.2180778897768378 -3.784698522544912 -0.5599223776129466 -1.740270065876921 -0.2030113103218567 -1.731733911942559 -0.2667089309541987 0.1132058439606109 -0.02643471249641912 0.03798448923867157 -0.08560693088335417 0.03798417914344956 -0.001919298883491098 0.03811965220128281 -0.1691909148496111 -0.03710236454502762 -0.1446784631501363 0.03812004841057926 -0.08550448624906966 0.03724127751810454 -0.1589778357249278 -0.03798096162057727 -0.2181523549831544 -0.03798081115040063 -0.1344687724317231 -3.547781940744175 -1.150334764731821 -1.637511752180902 -0.4900819857319114 -3.517351359849356 -1.209742491236282 0.03729172604245902 -0.2771623376993361 -0.03793048631065454 -0.3016756919196557 -0.03793021458618022 -0.2179877188646143 -1.622869320241991 -0.5449599752267526 -3.502771782515439 -1.264521850803344 -3.533202545114582 -1.205112314602253 0.144423209130764 -0.08565411079277664 0.03804403357207775 -0.08565411079277664 0.1132656075060368 -0.02648206485871096 3.519634907072213 -1.200727860576276 1.578861299940099 -0.600021575930721 1.609289010118138 -0.5406106514737369 -1.592426711040016 -0.6043974690281462 -3.502736577798566 -1.264582249258277 -1.622854449132616 -0.5449874998115688 0.1131898722603979 -0.1446782402197432 0.03796841430849378 -0.169190691919218 0.03796801809625403 -0.08550426331867661 -0.03810710598162181 -0.2181524396493085 -0.1133287863275493 -0.1589779203910819 -0.03810725645291624 -0.1344688570978772 -0.03815758164282528 -0.3016758448048321 -0.1133792352029856 -0.2771624905845126 -0.03815785336931814 -0.2179878717497908 0.144423209130764 -0.08544425710045202 0.1132656075060368 -0.1446184544504857 1.734209016599792 -0.2025127584334603 3.787171555676506 -0.4957207377102524 1.725684806598952 -0.2662084117049909 3.489078071152921 -1.26036719741202 1.578795133082179 -0.6001312260728746 3.519507670502645 -1.200959597629099 1.620728963620361 -0.5537166486525158 3.561488423218359 -1.154458092708701 3.531057906240408 -1.213867268921171 1.65114379992236 -0.4943292451528582 3.561461871548045 -1.15450872025842 1.620716584679031 -0.5537389422427166 -0.03804403357207775 -0.2181024719236225 -0.144423209130764 -0.2181024719236225 -0.1132656075060368 -0.1589278689549507 -0.03804403357207775 -0.2180778897768378 -0.1132656075060368 -0.2772523574934656 -0.144423209130764 -0.2180778897768378 1.74548602931454 -0.1804100699957148 3.798444775978536 -0.473618476292029 1.736950304149554 -0.2441067676099537 3.787172504572145 -0.4957159662352187 3.778644209862403 -0.5594136565925029 1.725685475162031 -0.2662051984582139 3.798444758146664 -0.4736185545995512 3.789915866690295 -0.5373160698634416 1.736950303257186 -0.2441067517590004</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"95\" source=\"#ID1653\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1649\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1647\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1648\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1649\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1650\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 7 4 8 5 0 6 12 7 1 8 14 9 0 10 2 11 6 12 8 13 16 14 6 15 18 16 7 17 20 18 21 19 22 20 12 21 26 22 1 23 20 24 28 25 29 26 14 27 2 28 32 29 34 30 6 31 16 32 36 33 18 34 6 35 22 36 21 37 38 38 40 39 26 40 12 41 28 42 42 43 21 44 32 45 44 46 14 47 46 48 6 49 34 50 40 51 48 52 26 53 50 54 44 55 32 56 52 57 36 58 6 59 21 60 54 61 38 62 42 63 56 64 21 65 46 66 52 67 6 15 48 68 58 69 59 70 58 71 48 72 40 73 50 74 62 75 44 76 64 77 62 78 50 79 21 80 66 81 54 82 68 83 56 84 66 85 59 86 70 87 64 88 58 89 70 90 59 91 70 92 62 93 64 94</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1649\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 4 13 5 3 5 15 17 9 11 10 19 11 23 24 25 4 27 13 30 31 25 33 3 15 17 11 35 11 19 37 39 24 23 13 27 41 24 43 31 15 45 33 35 11 47 27 49 41 33 45 51 11 37 53 39 55 24 24 57 43 11 53 47 60 61 49 41 49 61 45 63 51 51 63 65 55 67 24 67 57 69 65 71 60 60 71 61 65 63 71</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1654\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1655\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1659\">0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1659\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1656\">\r\n\t\t\t\t\t<float_array count=\"144\" id=\"ID1660\">-0.0006593742600013772 -0.9466403948768872 0.3222910610192537 -0.002128573944177214 -0.9461004970595006 0.3238662048388656 -0.01833442080583775 -0.9398353448568709 0.3411354182307682 0.01833442080583775 0.9398353448568709 -0.3411354182307682 0.002128573944177214 0.9461004970595006 -0.3238662048388656 0.0006593742600013772 0.9466403948768872 -0.3222910610192537 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.01522418468072721 -0.9521791109850349 0.305160883477152 -0.01522418468072721 0.9521791109850349 -0.305160883477152 0.02689478553277844 -0.1144978889026558 0.9930593657722489 0.0210125908849934 -0.1114018274912128 0.9935532717755591 0.01363640320789622 -0.1075131122113731 0.9941101444056268 -0.01363640320789622 0.1075131122113731 -0.9941101444056268 -0.0210125908849934 0.1114018274912128 -0.9935532717755591 -0.02689478553277844 0.1144978889026558 -0.9930593657722489 0.03896795812420601 -0.07191116297063634 -0.996649528610655 -0.04549002213706894 -0.03999100863499665 -0.9981640031148813 0.01346607256353736 -0.06232216632515028 -0.9979652361050727 -0.01346607256353736 0.06232216632515028 0.9979652361050727 0.04549002213706894 0.03999100863499665 0.9981640031148813 -0.03896795812420601 0.07191116297063634 0.996649528610655 -1 0 0 1 -0 -0 -0.07063030013069079 -0.03039912455602881 -0.9970392439265747 0.07063030013069079 0.03039912455602881 0.9970392439265747 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0.007591344819378201 -0.1043209431433819 0.9945147119603152 -0.007591344819378201 0.1043209431433819 -0.9945147119603152 -0.02847752976912464 0.9412040415617694 0.3366362761884698 -0.01944613168993581 0.9390402948574675 0.3432567152967266 -0.01571426971207608 0.938110735387483 0.3459787708489812 0.01571426971207608 -0.938110735387483 -0.3459787708489812 0.01944613168993581 -0.9390402948574675 -0.3432567152967266 0.02847752976912464 -0.9412040415617694 -0.3366362761884698 1 0 0 -1 -0 -0 -0.006449925473110886 0.9357134779221441 0.3527019785828205 0.006449925473110886 -0.9357134779221441 -0.3527019785828205</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"48\" source=\"#ID1660\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1658\">\r\n\t\t\t\t\t<float_array count=\"64\" id=\"ID1661\">0.5962178185185005 -3.153222447198755 -0.3076784558028441 -3.788853636176019 -0.3132526899849421 -3.129932065461746 9.122759699821472 -0.7230144093434017 9.408553242683411 -1.342410018046697 7.024862170219421 -1.477709011236827 0.2672582030481958 -3.587867602238631 -0.6416294861636938 -3.53482038775765 0.2714787355169092 -2.907390154659175 -1.685713180447373 -7.121351341609589 -2.564360875834735 -6.935206370602908 -1.290641924854021 -5.788995093053979 -3.77882935994712 4.538055591439239 -4.914503516199181 6.192265767175461 -2.972304828267201 4.869390074315862 7.431445717811585 -0.5834498077630997 6.603824181796629 1.760979977168799 8.447879157900552 3.168090786832034 8.812832047182409 2.511125951417969 -9.414598345756531 -1.39292692343394 -9.150596261024475 -0.7449076980352403 -7.422901391983032 -0.5882037063439688 -1.152089188980093 -7.16611278359242 -1.029338308238922 -5.831802174445271 -0.1220151584815939 -5.87725193204454 0.703505908083516 0.4640800664009921 -0.2056379982005104 0.4928598836778991 0.7158020717300879 1.413768038128628 -7.009677290916443 -1.450608934958776 -0.3694934503598784 0.5882635765330485 -0.3666451411266298 1.509896919897033 0.5424926673391237 1.514977305889284</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1661\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1657\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1655\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1656\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1657\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1658\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 7 4 8 5 12 6 1 7 0 8 14 9 15 10 16 11 20 12 21 13 22 14 26 15 6 3 8 5 22 16 21 17 28 18 30 19 31 20 32 21 15 22 36 23 16 24 38 25 39 26 40 27 30 19 32 21 44 28 39 29 46 30 40 31</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1657\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 5 4 13 17 18 19 23 24 25 9 11 27 29 24 23 33 34 35 17 37 18 41 42 43 45 33 35 41 47 42</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1662\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1663\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID1666\">0.5354120135307312 -1.17527174949646 -0.07834970951080322 0.562521755695343 -1.151860475540161 -0.07491381466388702 0.5547160506248474 -1.150959491729736 -0.06465452164411545 0.5547160506248474 -1.150959491729736 -0.06465452164411545 0.562521755695343 -1.151860475540161 -0.07491381466388702 0.5354120135307312 -1.17527174949646 -0.07834970951080322 0.5319939255714417 -1.170861482620239 -0.06753732264041901 0.5319939255714417 -1.170861482620239 -0.06753732264041901 0.4903435707092285 -1.175581336021423 -0.08379843086004257 0.4903435707092285 -1.175581336021423 -0.08379843086004257</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID1666\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1664\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID1667\">-0.2763363380720035 0.8551502778352715 -0.4385843483062444 -0.5409053186076919 0.695722716937777 -0.4726429280531225 -0.5430156278659727 0.6958912225936584 -0.4699674820776719 0.5430156278659727 -0.6958912225936584 0.4699674820776719 0.5409053186076919 -0.695722716937777 0.4726429280531225 0.2763363380720035 -0.8551502778352715 0.4385843483062444 -0.2920370970250125 0.849742049015813 -0.4389222984716212 0.2920370970250125 -0.849742049015813 0.4389222984716212 0.03799590451241128 0.9294106667549519 -0.3670859896024359 -0.03799590451241128 -0.9294106667549519 0.3670859896024359</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID1667\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1665\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1663\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1664\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1665\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 2 3 5 7 8 0 6 7 5 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1668\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1669\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1672\">0.5576969385147095 -1.15022337436676 -0.1041795313358307 0.5330261588096619 -1.171381711959839 -0.1073039323091507 0.5314076542854309 -1.169530868530273 -0.09279186278581619 0.5314076542854309 -1.169530868530273 -0.09279186278581619 0.5330261588096619 -1.171381711959839 -0.1073039323091507 0.5576969385147095 -1.15022337436676 -0.1041795313358307</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1672\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1670\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1673\">0.6295919600173455 -0.7587678132981195 0.1669891295393434 0.6295919600173455 -0.7587678132981195 0.1669891295393434 0.6295919600173455 -0.7587678132981195 0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1673\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1671\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1669\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1670\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1671\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1674\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1675\">\r\n\t\t\t\t\t<float_array count=\"4554\" id=\"ID1679\">0.4636488556861877 -1.158051013946533 -0.2167745679616928 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4636488556861877 -1.158051013946533 -0.2167745679616928 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4745834171772003 -1.166073203086853 -0.2129503935575485 0.4745834171772003 -1.166073203086853 -0.2129503935575485 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4532370567321777 -1.161874890327454 -0.2219637185335159 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4532370567321777 -1.161874890327454 -0.2219637185335159 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4667462110519409 -1.171931743621826 -0.2178431153297424 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4667462110519409 -1.171931743621826 -0.2178431153297424 0.4605698585510254 -1.126953125 -0.2246965765953064 0.4605698585510254 -1.126953125 -0.2246965765953064 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4839742183685303 -1.178971529006958 -0.21320441365242 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839742183685303 -1.178971529006958 -0.21320441365242 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4885714054107666 -1.171796083450317 -0.2086967974901199 0.4885714054107666 -1.171796083450317 -0.2086967974901199 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.5035322308540344 -1.182219982147217 -0.2082613259553909 0.5035322308540344 -1.182219982147217 -0.2082613259553909 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4692953824996948 -1.117928266525269 -0.2261810004711151 0.4692953824996948 -1.117928266525269 -0.2261810004711151 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.5044348835945129 -1.174407243728638 -0.2041947245597839 0.5044348835945129 -1.174407243728638 -0.2041947245597839 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5234974026679993 -1.181341052055359 -0.2032404690980911 0.5234974026679993 -1.181341052055359 -0.2032404690980911 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.481840968132019 -1.111177086830139 -0.2272232472896576 0.481840968132019 -1.111177086830139 -0.2272232472896576 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5206239223480225 -1.173695206642151 -0.1996323019266129 0.5206239223480225 -1.173695206642151 -0.1996323019266129 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.5355482697486877 -1.169721484184265 -0.1951994001865387 0.5355482697486877 -1.169721484184265 -0.1951994001865387 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5419154763221741 -1.176581740379334 -0.1983370929956436 0.5419154763221741 -1.176581740379334 -0.1983370929956436 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.49695885181427 -1.107329487800598 -0.2279713302850723 0.49695885181427 -1.107329487800598 -0.2279713302850723 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4944649934768677 -1.099338173866272 -0.232122465968132 0.4944649934768677 -1.099338173866272 -0.232122465968132 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5477467775344849 -1.16288423538208 -0.1910746395587921 0.5477467775344849 -1.16288423538208 -0.1910746395587921 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5569940805435181 -1.168012976646423 -0.1938970983028412 0.5569940805435181 -1.168012976646423 -0.1938970983028412 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5131818056106567 -1.106769561767578 -0.2286092787981033 0.5131818056106567 -1.106769561767578 -0.2286092787981033 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5144700407981873 -1.09870171546936 -0.2323014289140701 0.5144700407981873 -1.09870171546936 -0.2323014289140701 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5560302138328552 -1.153861403465271 -0.1874096095561981 0.5560302138328552 -1.153861403465271 -0.1874096095561981 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5289202332496643 -1.109543561935425 -0.2293297797441483 0.5289202332496643 -1.109543561935425 -0.2293297797441483 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5338693857192993 -1.102164149284363 -0.232584223151207 0.5338693857192993 -1.102164149284363 -0.232584223151207 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5716711282730103 -1.144144535064697 -0.1867542266845703 0.5716711282730103 -1.144144535064697 -0.1867542266845703 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5426270365715027 -1.115358591079712 -0.2303158938884735 0.5426270365715027 -1.115358591079712 -0.2303158938884735 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5507592558860779 -1.10938823223114 -0.233196958899498 0.5507592558860779 -1.10938823223114 -0.233196958899498 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5698375701904297 -1.131062269210815 -0.1842824816703796 0.5698375701904297 -1.131062269210815 -0.1842824816703796 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5580675601959229 -1.132967352867127 -0.1818155646324158 0.5580675601959229 -1.132967352867127 -0.1818155646324158 0.5529654026031494 -1.12365186214447 -0.2317251414060593 0.5529654026031494 -1.12365186214447 -0.2317251414060593 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5634716749191284 -1.119650483131409 -0.234331026673317 0.5634716749191284 -1.119650483131409 -0.234331026673317 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5516188144683838 -1.123155951499939 -0.1799236834049225 0.5516188144683838 -1.123155951499939 -0.1799236834049225 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5619267821311951 -1.118939995765686 -0.1825531870126724 0.5619267821311951 -1.118939995765686 -0.1825531870126724 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5707834362983704 -1.131942868232727 -0.2361352443695068 0.5707834362983704 -1.131942868232727 -0.2361352443695068 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5408812165260315 -1.115089893341065 -0.1785658150911331 0.5408812165260315 -1.115089893341065 -0.1785658150911331 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5485350489616394 -1.108938336372376 -0.1814902722835541 0.5485350489616394 -1.108938336372376 -0.1814902722835541 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.5719619989395142 -1.145043611526489 -0.2386840134859085 0.5719619989395142 -1.145043611526489 -0.2386840134859085 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5268968939781189 -1.109560012817383 -0.1776151955127716 0.5268968939781189 -1.109560012817383 -0.1776151955127716 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5314382910728455 -1.10209047794342 -0.1809175610542297 0.5314382910728455 -1.10209047794342 -0.1809175610542297 0.5558396577835083 -1.154414772987366 -0.2393956333398819 0.5558396577835083 -1.154414772987366 -0.2393956333398819 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5667877793312073 -1.157662510871887 -0.2419774681329727 0.5667877793312073 -1.157662510871887 -0.2419774681329727 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5119343400001526 -1.099033117294312 -0.180652067065239 0.5119343400001526 -1.099033117294312 -0.180652067065239 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5110345482826233 -1.107124924659729 -0.1769119054079056 0.5110345482826233 -1.107124924659729 -0.1769119054079056 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5473005175590515 -1.163247227668762 -0.2431076467037201 0.5473005175590515 -1.163247227668762 -0.2431076467037201 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5560925006866455 -1.168561935424805 -0.2459687143564224 0.5560925006866455 -1.168561935424805 -0.2459687143564224 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4919718503952026 -1.100103139877319 -0.1804688721895218 0.4919718503952026 -1.100103139877319 -0.1804688721895218 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.494856595993042 -1.108041167259216 -0.1762722134590149 0.494856595993042 -1.108041167259216 -0.1762722134590149 0.5345627069473267 -1.169810295104981 -0.2472778558731079 0.5345627069473267 -1.169810295104981 -0.2472778558731079 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5405961871147156 -1.176667809486389 -0.2504985928535461 0.5405961871147156 -1.176667809486389 -0.2504985928535461 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.4799317121505737 -1.112206339836121 -0.1754997223615646 0.4799317121505737 -1.112206339836121 -0.1754997223615646 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.5194347500801086 -1.173466086387634 -0.251732736825943 0.5194347500801086 -1.173466086387634 -0.251732736825943 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5219248533248901 -1.18116819858551 -0.2553885877132416 0.5219248533248901 -1.18116819858551 -0.2553885877132416 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4677366316318512 -1.119231224060059 -0.1744198352098465 0.4677366316318512 -1.119231224060059 -0.1744198352098465 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.5032081604003906 -1.173833608627319 -0.2562981843948364 0.5032081604003906 -1.173833608627319 -0.2562981843948364 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5019099116325378 -1.181609272956848 -0.2604122757911682 0.5019099116325378 -1.181609272956848 -0.2604122757911682 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4594584703445435 -1.128440141677856 -0.172881230711937 0.4594584703445435 -1.128440141677856 -0.172881230711937 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4870093464851379 -1.170987844467163 -0.2608384788036346 0.4870093464851379 -1.170987844467163 -0.2608384788036346 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4819841086864471 -1.178058624267578 -0.2653992772102356 0.4819841086864471 -1.178058624267578 -0.2653992772102356 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4729524850845337 -1.164982080459595 -0.2651008367538452 0.4729524850845337 -1.164982080459595 -0.2651008367538452 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4647094905376434 -1.170600295066834 -0.2700395882129669 0.4647094905376434 -1.170600295066834 -0.2700395882129669 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.4627623558044434 -1.156416177749634 -0.2688753008842468 0.4627623558044434 -1.156416177749634 -0.2688753008842468 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4649145305156708 -1.160146474838257 -0.1646309047937393 0.4649145305156708 -1.160146474838257 -0.1646309047937393 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4546861052513123 -1.164170503616333 -0.1697998344898224 0.4546861052513123 -1.164170503616333 -0.1697998344898224 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.47580885887146 -1.168325185775757 -0.1607684940099716 0.47580885887146 -1.168325185775757 -0.1607684940099716 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4680851995944977 -1.174239277839661 -0.1656459718942642 0.4680851995944977 -1.174239277839661 -0.1656459718942642 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4899028539657593 -1.173924684524536 -0.1565033048391342 0.4899028539657593 -1.173924684524536 -0.1565033048391342 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4854431748390198 -1.181017994880676 -0.1610624641180039 0.4854431748390198 -1.181017994880676 -0.1610624641180039 0.4604437947273254 -1.125065088272095 -0.276747465133667 0.4604437947273254 -1.125065088272095 -0.276747465133667 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.5050500631332398 -1.184240102767944 -0.1560435742139816 0.5050500631332398 -1.184240102767944 -0.1560435742139816 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5058070421218872 -1.176416993141174 -0.1519948393106461 0.5058070421218872 -1.176416993141174 -0.1519948393106461 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.469342440366745 -1.116126656532288 -0.2782136499881744 0.469342440366745 -1.116126656532288 -0.2782136499881744 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5249907970428467 -1.183200836181641 -0.151024729013443 0.5249907970428467 -1.183200836181641 -0.151024729013443 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.521974503993988 -1.175574421882629 -0.1474335044622421 0.521974503993988 -1.175574421882629 -0.1474335044622421 0.4820057153701782 -1.109466791152954 -0.2792381644248962 0.4820057153701782 -1.109466791152954 -0.2792381644248962 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.5368162989616394 -1.171478390693665 -0.1430082470178604 0.5368162989616394 -1.171478390693665 -0.1430082470178604 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5433157086372376 -1.178148150444031 -0.1461730748414993 0.5433157086372376 -1.178148150444031 -0.1461730748414993 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.4971978068351746 -1.105741739273071 -0.2799796760082245 0.4971978068351746 -1.105741739273071 -0.2799796760082245 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4948467612266541 -1.097743153572083 -0.2841138243675232 0.4948467612266541 -1.097743153572083 -0.2841138243675232 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5488884449005127 -1.164548993110657 -0.1389009952545166 0.5488884449005127 -1.164548993110657 -0.1389009952545166 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5582281947135925 -1.169593691825867 -0.1417096853256226 0.5582281947135925 -1.169593691825867 -0.1417096853256226 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5134349465370178 -1.10530686378479 -0.2806179523468018 0.5134349465370178 -1.10530686378479 -0.2806179523468018 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5148717761039734 -1.097256898880005 -0.2842935025691986 0.5148717761039734 -1.097256898880005 -0.2842935025691986 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5570006370544434 -1.155444264411926 -0.1352554857730866 0.5570006370544434 -1.155444264411926 -0.1352554857730866 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5291153788566589 -1.108209729194641 -0.2813448011875153 0.5291153788566589 -1.108209729194641 -0.2813448011875153 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5342056155204773 -1.100881338119507 -0.2845841646194458 0.5342056155204773 -1.100881338119507 -0.2845841646194458 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5724602341651917 -1.145607948303223 -0.1346215158700943 0.5724602341651917 -1.145607948303223 -0.1346215158700943 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5427180528640747 -1.114132642745972 -0.2823444902896881 0.5427180528640747 -1.114132642745972 -0.2823444902896881 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5509542226791382 -1.108233690261841 -0.2852115333080292 0.5509542226791382 -1.108233690261841 -0.2852115333080292 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5703842043876648 -1.132545948028565 -0.1321807950735092 0.5703842043876648 -1.132545948028565 -0.1321807950735092 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5586453080177307 -1.134552240371704 -0.12970831990242 0.5586453080177307 -1.134552240371704 -0.12970831990242 0.552798330783844 -1.122508764266968 -0.2837682664394379 0.552798330783844 -1.122508764266968 -0.2837682664394379 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5634849667549133 -1.118594884872437 -0.2863717079162598 0.5634849667549133 -1.118594884872437 -0.2863717079162598 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5520180463790894 -1.124776363372803 -0.1278393864631653 0.5520180463790894 -1.124776363372803 -0.1278393864631653 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5622471570968628 -1.120481729507446 -0.1304780244827271 0.5622471570968628 -1.120481729507446 -0.1304780244827271 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5705611705780029 -1.130938291549683 -0.2882024645805359 0.5705611705780029 -1.130938291549683 -0.2882024645805359 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5411297678947449 -1.116797208786011 -0.1264989823102951 0.5411297678947449 -1.116797208786011 -0.1264989823102951 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.548848032951355 -1.110594391822815 -0.1294268220663071 0.548848032951355 -1.110594391822815 -0.1294268220663071 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5715000629425049 -1.144049525260925 -0.2907814383506775 0.5715000629425049 -1.144049525260925 -0.2907814383506775 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5270463824272156 -1.111389398574829 -0.1255616396665573 0.5270463824272156 -1.111389398574829 -0.1255616396665573 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5314984917640686 -1.103869557380676 -0.1288754492998123 0.5314984917640686 -1.103869557380676 -0.1288754492998123 0.5552088022232056 -1.153280735015869 -0.2915137708187103 0.5552088022232056 -1.153280735015869 -0.2915137708187103 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5118945837020874 -1.100982189178467 -0.1286222636699677 0.5118945837020874 -1.100982189178467 -0.1286222636699677 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5111450552940369 -1.109081149101257 -0.1248650401830673 0.5111450552940369 -1.109081149101257 -0.1248650401830673 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5463075637817383 -1.162050008773804 -0.2952521145343781 0.5463075637817383 -1.162050008773804 -0.2952521145343781 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5551921725273132 -1.167435169219971 -0.2981182038784027 0.5551921725273132 -1.167435169219971 -0.2981182038784027 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4919535517692566 -1.102204203605652 -0.1284358650445938 0.4919535517692566 -1.102204203605652 -0.1284358650445938 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.4949806928634644 -1.110114693641663 -0.1242219507694244 0.4949806928634644 -1.110114693641663 -0.1242219507694244 0.5336343050003052 -1.168520212173462 -0.2994299232959747 0.5336343050003052 -1.168520212173462 -0.2994299232959747 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5396984219551086 -1.17541229724884 -0.3026644587516785 0.5396984219551086 -1.17541229724884 -0.3026644587516785 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.480143129825592 -1.114396691322327 -0.1234430968761444 0.480143129825592 -1.114396691322327 -0.1234430968761444 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.5184391140937805 -1.17204761505127 -0.3038930296897888 0.5184391140937805 -1.17204761505127 -0.3038930296897888 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5207850933074951 -1.179760098457336 -0.3075655698776245 0.5207850933074951 -1.179760098457336 -0.3075655698776245 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4683116972446442 -1.121699452400208 -0.1222783178091049 0.4683116972446442 -1.121699452400208 -0.1222783178091049 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.461048811674118 -1.131386756896973 -0.1205792278051376 0.461048811674118 -1.131386756896973 -0.1205792278051376 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4607804119586945 -1.152724027633667 -0.1155533939599991 0.4607804119586945 -1.152724027633667 -0.1155533939599991 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4680401384830475 -1.162484645843506 -0.1121409386396408 0.4680401384830475 -1.162484645843506 -0.1121409386396408 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4580906927585602 -1.166784763336182 -0.1172759383916855 0.4580906927585602 -1.166784763336182 -0.1172759383916855 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4794342219829559 -1.170353889465332 -0.1082139611244202 0.4794342219829559 -1.170353889465332 -0.1082139611244202 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4721178412437439 -1.176489114761353 -0.1130447238683701 0.4721178412437439 -1.176489114761353 -0.1130447238683701 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4938605427742004 -1.175561666488648 -0.1039053350687027 0.4938605427742004 -1.175561666488648 -0.1039053350687027 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4898883104324341 -1.182911038398743 -0.1083405017852783 0.4898883104324341 -1.182911038398743 -0.1083405017852783 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.5096529722213745 -1.185441017150879 -0.1033653542399406 0.5096529722213745 -1.185441017150879 -0.1033653542399406 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098979473114014 -1.177605509757996 -0.0993800014257431 0.5098979473114014 -1.177605509757996 -0.0993800014257431 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5294449925422669 -1.183813214302063 -0.09840545058250427 0.5294449925422669 -1.183813214302063 -0.09840545058250427 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5259718894958496 -1.176306962966919 -0.0948249101638794 0.5259718894958496 -1.176306962966919 -0.0948249101638794 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5405214428901672 -1.171802759170532 -0.09043388068675995 0.5405214428901672 -1.171802759170532 -0.09043388068675995 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5474494099617004 -1.178286552429199 -0.093544140458107 0.5474494099617004 -1.178286552429199 -0.093544140458107 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5521175265312195 -1.164524674415588 -0.08638119697570801 0.5521175265312195 -1.164524674415588 -0.08638119697570801 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5617793798446655 -1.169313788414002 -0.08915026485919952 0.5617793798446655 -1.169313788414002 -0.08915026485919952 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5596198439598084 -1.155208110809326 -0.08280808478593826 0.5596198439598084 -1.155208110809326 -0.08280808478593826 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5744172930717468 -1.144819259643555 -0.08224614709615707 0.5744172930717468 -1.144819259643555 -0.08224614709615707 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5714950561523438 -1.131919503211975 -0.07991252094507217 0.5714950561523438 -1.131919503211975 -0.07991252094507217 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.559681236743927 -1.134244561195374 -0.07743934541940689 0.559681236743927 -1.134244561195374 -0.07743934541940689 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5526447892189026 -1.124674439430237 -0.07563516497612 0.5526447892189026 -1.124674439430237 -0.07563516497612 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5625854730606079 -1.12008547782898 -0.07830538600683212 0.5625854730606079 -1.12008547782898 -0.07830538600683212 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5412472486495972 -1.116996884346008 -0.07435604929924011 0.5412472486495972 -1.116996884346008 -0.07435604929924011 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5485594868659973 -1.110581040382385 -0.07733217626810074 0.5485594868659973 -1.110581040382385 -0.07733217626810074 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5268322229385376 -1.111981153488159 -0.07346238195896149 0.5268322229385376 -1.111981153488159 -0.07346238195896149 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5307966470718384 -1.104349851608276 -0.0768328532576561 0.5307966470718384 -1.104349851608276 -0.0768328532576561 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5110327005386353 -1.102004647254944 -0.07660330086946487 0.5110327005386353 -1.102004647254944 -0.07660330086946487 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5107991099357605 -1.110127329826355 -0.07278375327587128 0.5107991099357605 -1.110127329826355 -0.07278375327587128 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5108838081359863 -1.106828689575195 -0.07990724593400955</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1518\" source=\"#ID1679\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1676\">\r\n\t\t\t\t\t<float_array count=\"4554\" id=\"ID1680\">0.7116708837850373 0.7019521713401213 0.02806603505151321 0.5353173971062792 0.682865854756012 0.4971212213974565 0.737245834253374 0.3797311575543762 0.558813768493995 -0.737245834253374 -0.3797311575543762 -0.558813768493995 -0.5353173971062792 -0.682865854756012 -0.4971212213974565 -0.7116708837850373 -0.7019521713401213 -0.02806603505151321 0.7293853031182515 0.4062619024414093 0.5504074365593031 -0.7293853031182515 -0.4062619024414093 -0.5504074365593031 0.3217641207685286 0.832196716188115 0.4515711197051622 -0.3217641207685286 -0.832196716188115 -0.4515711197051622 0.8551425374279981 0.1137214122970094 -0.5057654407592304 0.8413495777315172 0.1893711133358783 -0.5062306485041452 -0.8413495777315172 -0.1893711133358783 0.5062306485041452 -0.8551425374279981 -0.1137214122970094 0.5057654407592304 -0.3800054119371152 -0.01453889161881108 0.9248699949338827 -0.3750179728961746 0.09078606260087684 0.9225613317510514 -0.379253227111593 -0.05515227528217267 0.9236477771621829 0.379253227111593 0.05515227528217267 -0.9236477771621829 0.3750179728961746 -0.09078606260087684 -0.9225613317510514 0.3800054119371152 0.01453889161881108 -0.9248699949338827 0.8189175815511282 -0.02914902590783115 0.5731704187369371 -0.8189175815511282 0.02914902590783115 -0.5731704187369371 -0.3666652985344028 -0.1470296851004238 0.9186614341257324 -0.3567323136201435 -0.1797042290898553 0.9167597539521685 0.3567323136201435 0.1797042290898553 -0.9167597539521685 0.3666652985344028 0.1470296851004238 -0.9186614341257324 0.4686066523877808 0.8829418569476178 0.02866151754199518 -0.4686066523877808 -0.8829418569476178 -0.02866151754199518 0.7524101408696786 0.4659479230344618 -0.465587277464002 -0.7524101408696786 -0.4659479230344618 0.465587277464002 0.8259665881004755 -0.2402942949423648 -0.5099390622023489 -0.8259665881004755 0.2402942949423648 0.5099390622023489 -0.362814134912121 0.111554295612124 0.925160279431868 0.362814134912121 -0.111554295612124 -0.925160279431868 0.8229490491338481 0.02578359544042075 0.5675297954608728 -0.8229490491338481 -0.02578359544042075 -0.5675297954608728 0.8318497362912086 -0.2056747177206577 -0.5154841672862265 -0.8318497362912086 0.2056747177206577 0.5154841672862265 -0.3282798987083118 -0.2624462240004592 0.9073887191341764 0.3282798987083118 0.2624462240004592 -0.9073887191341764 0.122880769654211 0.895041873632129 0.4287194431026854 -0.122880769654211 -0.895041873632129 -0.4287194431026854 -0.2545333500310454 -0.3210229160174924 -0.9122264308348006 -0.2471679512239378 -0.2985262902585059 -0.9218405816149861 -0.152416296237888 -0.4664354693319945 -0.8713249827648502 0.152416296237888 0.4664354693319945 0.8713249827648502 0.2471679512239378 0.2985262902585059 0.9218405816149861 0.2545333500310454 0.3210229160174924 0.9122264308348006 -0.3131325503241589 -0.1234551955288698 -0.9416511140674219 -0.2995098322824998 -0.1347925511896848 -0.9445235987045982 0.2995098322824998 0.1347925511896848 0.9445235987045982 0.3131325503241589 0.1234551955288698 0.9416511140674219 -0.7112062640457456 -0.7025334994503608 -0.02514621506555601 -0.5589728191536472 -0.6498545269164316 -0.5150130884682884 -0.9359964274276729 -0.3517817543255671 -0.01266037780873084 0.9359964274276729 0.3517817543255671 0.01266037780873084 0.5589728191536472 0.6498545269164316 0.5150130884682884 0.7112062640457456 0.7025334994503608 0.02514621506555601 -0.332993880196678 0.2202540363226734 0.9168441717299244 0.332993880196678 -0.2202540363226734 -0.9168441717299244 -0.328938048740701 -0.8033638405159231 -0.4963932914959336 -0.466090014478561 -0.8841596436575528 -0.03196596519306006 0.466090014478561 0.8841596436575528 0.03196596519306006 0.328938048740701 0.8033638405159231 0.4963932914959336 0.8306556856039417 -0.5565983328246119 0.0144716229465927 -0.8306556856039417 0.5565983328246119 -0.0144716229465927 0.6945338870796753 -0.5290705524739058 -0.4875520794776212 -0.6945338870796753 0.5290705524739058 0.4875520794776212 -0.1306456276842966 -0.866194015653377 -0.4823273237265885 -0.2464385877352586 -0.9684724233977866 -0.0364580250846064 0.2464385877352586 0.9684724233977866 0.0364580250846064 0.1306456276842966 0.866194015653377 0.4823273237265885 -0.3138510212708438 -0.2841832337118347 0.9059455977730303 0.3138510212708438 0.2841832337118347 -0.9059455977730303 0.2540901770460554 0.9666107038501276 0.03319531790878375 -0.2540901770460554 -0.9666107038501276 -0.03319531790878375 0.5643088165704985 0.7140801601412177 -0.4143007173943784 -0.5643088165704985 -0.7140801601412177 0.4143007173943784 -0.3139222174966849 0.05128821237034839 -0.9480624244393497 0.3139222174966849 -0.05128821237034839 0.9480624244393497 -0.9597648161928933 -0.2806352262868117 -0.00976562159678172 0.9597648161928933 0.2806352262868117 0.00976562159678172 -0.322037179718785 0.2144970607378 0.9221079469420136 0.322037179718785 -0.2144970607378 -0.9221079469420136 0.7616350347395199 -0.3651610676273299 0.5353218364186153 -0.7616350347395199 0.3651610676273299 -0.5353218364186153 -0.31677346396858 0.09264401157420453 -0.9439659208068825 0.31677346396858 -0.09264401157420453 0.9439659208068825 0.06287306268676872 -0.8760278543005509 -0.4781445142192458 -0.06287306268676872 0.8760278543005509 0.4781445142192458 -0.2570814061046293 -0.3475596914782427 0.9017269051629854 0.2570814061046293 0.3475596914782427 -0.9017269051629854 -0.07307391728897358 0.9059654040739069 0.4169974690969323 0.07307391728897358 -0.9059654040739069 -0.4169974690969323 -0.03938863183529962 -0.538048317326203 -0.8419931970655016 0.03938863183529962 0.538048317326203 0.8419931970655016 -0.9931138443770341 0.1171074856303961 0.003275502403372714 -0.9848207832588084 0.1734761948025066 0.005833926495086407 0.9848207832588084 -0.1734761948025066 -0.005833926495086407 0.9931138443770341 -0.1171074856303961 -0.003275502403372714 -0.8474248755763526 0.5305787100121511 0.01890271769469281 -0.8283161743331357 0.5598719726514161 0.02087317842424748 0.8283161743331357 -0.5598719726514161 -0.02087317842424748 0.8474248755763526 -0.5305787100121511 -0.01890271769469281 -0.2700042395207376 0.3208992526405757 0.9078113131568413 0.2700042395207376 -0.3208992526405757 -0.9078113131568413 0.07034711482529543 -0.5595881892235496 -0.8257798386478478 -0.07034711482529543 0.5595881892235496 0.8257798386478478 0.587272046502337 -0.8093880343899205 -0.001597868385652056 -0.587272046502337 0.8093880343899205 0.001597868385652056 0.5099095310147842 -0.7296686651050987 -0.4556049926680197 -0.5099095310147842 0.7296686651050987 0.4556049926680197 -0.2828630320997383 0.2426507848307525 -0.9279596444309216 0.2828630320997383 -0.2426507848307525 0.9279596444309216 0.1787474381172575 -0.5392555554077365 -0.8229537042436902 -0.1787474381172575 0.5392555554077365 0.8229537042436902 -0.03438013672743311 -0.9987521835622533 -0.0362226728477399 0.03438013672743311 0.9987521835622533 0.0362226728477399 -0.2512280346402211 -0.3570550449326406 0.8996644760681405 0.2512280346402211 0.3570550449326406 -0.8996644760681405 0.04869907658823495 0.9982759987746035 0.03276324480299457 -0.04869907658823495 -0.9982759987746035 -0.03276324480299457 0.3711498313041716 0.8484665325741075 -0.3772960983426096 -0.3711498313041716 -0.8484665325741075 0.3772960983426096 -0.6057320559409027 0.795127545577512 0.02934046130327287 0.6057320559409027 -0.795127545577512 -0.02934046130327287 -0.2698658743382608 0.2961595472264194 0.9162215520573003 0.2698658743382608 -0.2961595472264194 -0.9162215520573003 0.5816068301066244 -0.663602821211347 0.470494198533484 -0.5816068301066244 0.663602821211347 -0.470494198533484 -0.2686309993082194 0.2880621993603541 -0.9191613326888503 0.2686309993082194 -0.2880621993603541 0.9191613326888503 -0.5932621022767013 0.804464749553707 0.0296064980657997 0.5932621022767013 -0.804464749553707 -0.0296064980657997 0.2823812218328424 -0.4806794641766704 -0.830185580623405 -0.2823812218328424 0.4806794641766704 0.830185580623405 0.2505482073841761 -0.8378586389163725 -0.4849932957987971 -0.2505482073841761 0.8378586389163725 0.4849932957987971 -0.1747254219544659 -0.3953249454357398 0.9017700452105643 0.1747254219544659 0.3953249454357398 -0.9017700452105643 -0.269787438181167 0.8647912808873121 0.423498262925511 0.269787438181167 -0.8647912808873121 -0.423498262925511 -0.2021770691781843 0.3530693316193985 0.9134913681958636 -0.1918981575903566 0.3817008057313711 0.9041457802906834 0.1918981575903566 -0.3817008057313711 -0.9041457802906834 0.2021770691781843 -0.3530693316193985 -0.9134913681958636 0.1692723764072049 0.9176857401311533 -0.3594436603216075 -0.1692723764072049 -0.9176857401311533 0.3594436603216075 0.350213950657196 -0.9365358264104842 -0.0158377591442387 -0.350213950657196 0.9365358264104842 0.0158377591442387 0.3115077194688655 -0.8473674173878394 -0.4300365108461951 -0.3115077194688655 0.8473674173878394 0.4300365108461951 -0.2053704330187628 0.4066247173330662 -0.8902130781422446 0.2053704330187628 -0.4066247173330662 0.8902130781422446 -0.3625291776399519 0.9313584765223022 0.03382282616453856 0.3625291776399519 -0.9313584765223022 -0.03382282616453856 -0.03190857183921407 0.93184815621673 -0.3614427434583004 -0.1549911753047212 0.9873781432922444 0.03259045452922111 0.1549911753047212 -0.9873781432922444 -0.03259045452922111 0.03190857183921407 -0.93184815621673 0.3614427434583004 0.1733093536903892 -0.9842603919487195 -0.03457381616733454 -0.1733093536903892 0.9842603919487195 0.03457381616733454 -0.1804048848422663 -0.4056306790331152 0.8960568228366898 0.1804048848422663 0.4056306790331152 -0.8960568228366898 -0.108805433348809 0.4031123833662217 0.9086593333315748 0.108805433348809 -0.4031123833662217 -0.9086593333315748 0.3631414463665614 -0.8364782339863709 0.4104052314455118 -0.3631414463665614 0.8364782339863709 -0.4104052314455118 -0.1858169195835328 0.4347471399737442 -0.8811736472915747 0.1858169195835328 -0.4347471399737442 0.8811736472915747 -0.3566777150334399 0.933613505802546 0.03386486943136579 0.3566777150334399 -0.933613505802546 -0.03386486943136579 -0.1232384028517292 0.3821397865521475 0.9158501403594552 0.1232384028517292 -0.3821397865521475 -0.9158501403594552 -0.3718386216031298 0.9277963706743407 0.03049482001596008 0.3718386216031298 -0.9277963706743407 -0.03049482001596008 0.3769085707966882 -0.3788840177068252 -0.8452140737034208 -0.3769085707966882 0.3788840177068252 0.8452140737034208 0.4429179332453602 -0.7517449794132562 -0.4885726049796708 -0.4429179332453602 0.7517449794132562 0.4885726049796708 -0.08868578433421416 -0.404843097298547 0.9100752156974414 0.08868578433421416 0.404843097298547 -0.9100752156974414 -0.4722049908017236 0.7597220128569533 0.4470401658045096 0.4722049908017236 -0.7597220128569533 -0.4470401658045096 0.1349569415431963 -0.9904765886164998 -0.02725346458576107 -0.1349569415431963 0.9904765886164998 0.02725346458576107 0.1148517625882883 -0.9010483209033618 -0.4182355747991743 -0.1148517625882883 0.9010483209033618 0.4182355747991743 -0.1350424427577856 0.8787885333691383 -0.4577054208472182 0.1350424427577856 -0.8787885333691383 0.4577054208472182 -0.1391785592704044 0.989617306401859 0.03587360463270809 0.1391785592704044 -0.989617306401859 -0.03587360463270809 -0.02950439234126823 0.3883875311015432 0.9210236785867235 0.02950439234126823 -0.3883875311015432 -0.9210236785867235 -0.2379891605344312 0.891093379186692 -0.3864113728111002 0.2379891605344312 -0.891093379186692 0.3864113728111002 0.4018188507707239 -0.9154802688229474 -0.0209162272209588 -0.4018188507707239 0.9154802688229474 0.0209162272209588 -0.100085503680128 -0.4247726450810115 0.8997505720720472 0.100085503680128 0.4247726450810115 -0.8997505720720472 0.149269000632694 -0.9164617465126577 0.3712366261955926 -0.149269000632694 0.9164617465126577 -0.3712366261955926 -0.08635669052636709 0.5298659996736879 -0.8436732450369257 0.08635669052636709 -0.5298659996736879 0.8436732450369257 -0.03900572845106688 0.3769642007921201 0.9254061510867322 0.03900572845106688 -0.3769642007921201 -0.9254061510867322 -0.667625789639097 0.5691203515451191 0.4799769061797995 0.667625789639097 -0.5691203515451191 -0.4799769061797995 -0.6097550454350776 0.7922787176737801 0.022208513855214 0.6097550454350776 -0.7922787176737801 -0.022208513855214 0.4545986938444905 -0.2369848167058383 -0.8585908363159855 -0.4545986938444905 0.2369848167058383 0.8585908363159855 0.6358716013457333 -0.5907649801212694 -0.4966528413935922 -0.6358716013457333 0.5907649801212694 0.4966528413935922 -0.007502297839772759 -0.3776969063399905 0.925898894301275 0.007502297839772759 0.3776969063399905 -0.925898894301275 -0.06862623427926712 -0.9970195165030676 -0.03524944936642797 0.06862623427926712 0.9970195165030676 0.03524944936642797 -0.08052297485908085 -0.9028420140569938 -0.4223651834294049 0.08052297485908085 0.9028420140569938 0.4223651834294049 0.05900428262862644 0.89880510324023 -0.4343591613179128 -0.05900428262862644 -0.89880510324023 0.4343591613179128 0.07261340932901327 0.9967048932856687 0.03614759308751523 -0.07261340932901327 -0.9967048932856687 -0.03614759308751523 0.04179663426654825 0.3419041216917153 0.938804885444364 -0.04179663426654825 -0.3419041216917153 -0.938804885444364 -0.015040960508501 -0.4057912697378742 0.9138420076312457 0.015040960508501 0.4057912697378742 -0.9138420076312457 -0.4517263098586344 0.7788118881748393 -0.435195799404179 0.4517263098586344 -0.7788118881748393 0.435195799404179 0.6413006735416574 -0.7670395894745782 -0.01958862664117091 -0.6413006735416574 0.7670395894745782 0.01958862664117091 -0.054347935502678 -0.9322939027710796 0.3575952750840892 0.054347935502678 0.9322939027710796 -0.3575952750840892 0.02122241934069372 0.5779986549452476 -0.815761707730151 -0.02122241934069372 -0.5779986549452476 0.815761707730151 0.0435010045089644 0.3322311570815762 0.9421943116316018 -0.0435010045089644 -0.3322311570815762 -0.9421943116316018 0.06238736218192513 -0.3162640646319618 0.9466175882913077 -0.06238736218192513 0.3162640646319618 -0.9466175882913077 -0.8151742883947546 0.2813160644072832 0.5063123062364794 0.8151742883947546 -0.2813160644072832 -0.5063123062364794 -0.8495097889871003 0.5275543050046959 0.004424215874554589 0.8495097889871003 -0.5275543050046959 -0.004424215874554589 0.4986818555958908 -0.0546081901313145 -0.8650632072109072 -0.4986818555958908 0.0546081901313145 0.8650632072109072 0.8439535395437307 -0.5361077387325823 -0.01819108470228664 -0.8439535395437307 0.5361077387325823 0.01819108470228664 -0.2769446260576919 -0.9598235560561156 -0.04517095679259156 0.2769446260576919 0.9598235560561156 0.04517095679259156 -0.2862441926806097 -0.8449631923969382 -0.4517759020255516 0.2862441926806097 0.8449631923969382 0.4517759020255516 0.2515240060345187 0.8702968979477529 -0.4234607228667922 -0.2515240060345187 -0.8702968979477529 0.4234607228667922 0.285022113988306 0.9578448162586878 0.035995867873935 -0.285022113988306 -0.9578448162586878 -0.035995867873935 0.1022641569809444 0.2645290245048019 0.9589402678955111 -0.1022641569809444 -0.2645290245048019 -0.9589402678955111 0.8727466539507099 -0.4878051827691275 -0.01895736483317585 -0.8727466539507099 0.4878051827691275 0.01895736483317585 0.06497119151503472 -0.3441637413544276 0.9366589899264509 -0.06497119151503472 0.3441637413544276 -0.9366589899264509 -0.6577171642732842 0.5643165632134004 -0.4989538538816246 0.6577171642732842 -0.5643165632134004 0.4989538538816246 0.4964578187488516 -0.01406200872446651 -0.8679469419922888 -0.4964578187488516 0.01406200872446651 0.8679469419922888 -0.2544265746159438 -0.8958214392384447 0.3643776435649682 0.2544265746159438 0.8958214392384447 -0.3643776435649682 0.1346525740323371 0.5836816827901039 -0.8007398937743633 -0.1346525740323371 -0.5836816827901039 0.8007398937743633 0.1124481173905443 0.2448637316454644 0.9630146280404989 -0.1124481173905443 -0.2448637316454644 -0.9630146280404989 0.8819697538892645 0.007598171866789702 -0.471244757009341 -0.8819697538892645 -0.007598171866789702 0.471244757009341 0.1171398320703514 -0.2299441770171356 0.9661283223249602 -0.1171398320703514 0.2299441770171356 -0.9661283223249602 -0.8597805182002386 -0.06612450851032715 0.5063645029991706 0.8597805182002386 0.06612450851032715 -0.5063645029991706 -0.8025564832620339 0.1985573670928974 -0.5625638302870289 0.8025564832620339 -0.1985573670928974 0.5625638302870289 0.4943676037891732 0.1453010501104848 -0.857022915189869 -0.4943676037891732 -0.1453010501104848 0.857022915189869 -0.5011081975069153 -0.8640068972210966 -0.04881245687059649 0.5011081975069153 0.8640068972210966 0.04881245687059649 -0.4953971625889056 -0.7179255223596246 -0.4890445742910574 0.4953971625889056 0.7179255223596246 0.4890445742910574 0.4523361541883907 0.78269789407462 -0.4275231107498302 -0.4523361541883907 -0.78269789407462 0.4275231107498302 0.5160103324743733 0.8561743149607777 0.02643632313938037 -0.5160103324743733 -0.8561743149607777 -0.02643632313938037 0.1456798900475802 0.1553296146775426 0.977061963459765 -0.1456798900475802 -0.1553296146775426 -0.977061963459765 0.9975819344811169 -0.06940501209422294 -0.003637072052292452 -0.9975819344811169 0.06940501209422294 0.003637072052292452 0.1299031228142292 -0.2399521483669082 0.9620541279872025 -0.1299031228142292 0.2399521483669082 -0.9620541279872025 -0.8574309484630749 -0.02498433355687328 0.5139921708493532 0.8574309484630749 0.02498433355687328 -0.5139921708493532 -0.7991850679086362 0.2325782180646128 -0.5542658204451704 0.7991850679086362 -0.2325782180646128 0.5542658204451704 -0.4545593221843078 -0.8001107826523628 0.3914058738685027 0.4545593221843078 0.8001107826523628 -0.3914058738685027 0.248556603048201 0.5432161265870228 -0.801957514396449 -0.248556603048201 -0.5432161265870228 0.801957514396449 0.1547328152558442 0.122294846017621 0.9803579583603773 -0.1547328152558442 -0.122294846017621 -0.9803579583603773 0.4386407978618918 0.3279107683376264 -0.8367011285156191 -0.4386407978618918 -0.3279107683376264 0.8367011285156191 0.8139565735366405 0.3698909682614625 -0.4479457199204939 -0.8139565735366405 -0.3698909682614625 0.4479457199204939 0.1540882353378779 -0.1214346133398591 0.9805663926595983 -0.1540882353378779 0.1214346133398591 -0.9805663926595983 -0.7859346199362765 -0.3952550220605985 0.4754789592836855 0.7859346199362765 0.3952550220605985 -0.4754789592836855 -0.9306770059150464 -0.363141929097298 -0.04436496356921191 0.9306770059150464 0.363141929097298 0.04436496356921191 -0.7418398379539286 -0.6686780926148429 -0.05043077712532803 0.7418398379539286 0.6686780926148429 0.05043077712532803 -0.6931837386825032 -0.4794121952214146 -0.538200939704802 0.6931837386825032 0.4794121952214146 0.538200939704802 0.6572311903075883 0.6158016613381416 -0.4345520410492345 -0.6572311903075883 -0.6158016613381416 0.4345520410492345 0.751979601982272 0.6588136627921902 0.02216384264791805 -0.751979601982272 -0.6588136627921902 -0.02216384264791805 0.1709113901269176 0.02371991789714821 0.9850008437660535 -0.1709113901269176 -0.02371991789714821 -0.9850008437660535 -0.806985682832787 -0.1634898584380173 -0.5674902412295894 0.806985682832787 0.1634898584380173 0.5674902412295894 0.9307984716769429 0.3653080137814092 0.01281640319859835 -0.9307984716769429 -0.3653080137814092 -0.01281640319859835 0.1665332574936393 -0.1041946282880731 0.9805152490320931 -0.1665332574936393 0.1041946282880731 -0.9805152490320931 -0.6462181275664664 -0.6271355390768563 0.4348599167907648 0.6462181275664664 0.6271355390768563 -0.4348599167907648 0.3568816664825016 0.4535565930443404 -0.8166528595643825 -0.3568816664825016 -0.4535565930443404 0.8166528595643825 0.1682901928002351 -0.008553425957378354 0.985700385467943 -0.1682901928002351 0.008553425957378354 -0.985700385467943 -0.7170554180673224 -0.6951505316171346 -0.05096337717138435 0.7170554180673224 0.6951505316171346 0.05096337717138435 0.3464688034355574 0.4660440007429664 -0.8141021788555926 -0.3464688034355574 -0.4660440007429664 0.8141021788555926 0.6355101789920478 0.6397366600929556 -0.4322774781672137 -0.6355101789920478 -0.6397366600929556 0.4322774781672137 0.1685699882457755 0.005747924127919781 0.9856729277153952 -0.1685699882457755 -0.005747924127919781 -0.9856729277153952 -0.6279723658398444 -0.6490434333612153 0.4294104439253827 0.6279723658398444 0.6490434333612153 -0.4294104439253827 -0.7973251583280008 -0.3587315378057597 0.4853702459779992 0.7973251583280008 0.3587315378057597 -0.4853702459779992 -0.8133914914443122 -0.1226105341873485 -0.5686483434885663 0.8133914914443122 0.1226105341873485 0.5686483434885663 0.8277403482845291 0.3350766609950497 -0.450077267897652 -0.8277403482845291 -0.3350766609950497 0.450077267897652 0.9459914682312661 0.3239907301155634 0.01140827913568343 -0.9459914682312661 -0.3239907301155634 -0.01140827913568343 0.1643055508453276 -0.1191819882641469 0.9791829959894208 -0.1643055508453276 0.1191819882641469 -0.9791829959894208 -0.6747092881545888 -0.509981513077707 -0.5335599617633439 0.6747092881545888 0.509981513077707 0.5335599617633439 0.7259849856952051 0.6873476337686363 0.02233899948049431 -0.7259849856952051 -0.6873476337686363 -0.02233899948049431 0.1700273526739748 0.03942770412635237 0.9846502706494346 -0.1700273526739748 -0.03942770412635237 -0.9846502706494346 -0.7985791720875104 -0.363552001419785 0.4796886992328414 0.7985791720875104 0.363552001419785 -0.4796886992328414 -0.8005820443769667 -0.1773037046999857 -0.5723912879498229 0.8005820443769667 0.1773037046999857 0.5723912879498229 0.4462219555270105 0.310754437046979 -0.8392363470806455 -0.4462219555270105 -0.310754437046979 0.8392363470806455 0.1512091593896242 -0.1336481090587945 0.9794253279661964 -0.1512091593896242 0.1336481090587945 -0.9794253279661964 -0.4336952871383574 -0.8129939531323626 0.3885218527756087 0.4336952871383574 0.8129939531323626 -0.3885218527756087 -0.476892863167146 -0.8776635498063434 -0.04774819788819028 0.476892863167146 0.8776635498063434 0.04774819788819028 0.2380035050945923 0.552747386812773 -0.7986392539403127 -0.2380035050945923 -0.552747386812773 0.7986392539403127 0.4293210067423389 0.7959884213628337 -0.4267152519257412 -0.4293210067423389 -0.7959884213628337 0.4267152519257412 0.1533393076810733 0.1385717365111475 0.9784093880171909 -0.1533393076810733 -0.1385717365111475 -0.9784093880171909 -0.8569261781032325 0.01555967142405624 0.5152042526091591 0.8569261781032325 -0.01555967142405624 -0.5152042526091591 -0.7895538112070181 0.2718086027881717 -0.5502043826241432 0.7895538112070181 -0.2718086027881717 0.5502043826241432 0.8795771108593874 -0.03296431319738044 -0.474612958217196 -0.8795771108593874 0.03296431319738044 0.474612958217196 0.9931770550638256 -0.1165144114890372 -0.004871263707719249 -0.9931770550638256 0.1165144114890372 0.004871263707719249 0.1241152025120477 -0.2522053788639627 0.9596811258837378 -0.1241152025120477 0.2522053788639627 -0.9596811258837378 0.1440231793131058 0.1695717310208471 0.974937306630092 -0.1440231793131058 -0.1695717310208471 -0.974937306630092 -0.4731693583086877 -0.7368229619348619 -0.482910634717524 0.4731693583086877 0.7368229619348619 0.482910634717524 0.4914126934498371 0.8706243101949823 0.02295376252136903 -0.4914126934498371 -0.8706243101949823 -0.02295376252136903 -0.860938007212393 -0.02971517484011645 0.5078412705968026 0.860938007212393 0.02971517484011645 -0.5078412705968026 -0.7938388756252783 0.2406792724284641 -0.5584741062657237 0.7938388756252783 -0.2406792724284641 0.5584741062657237 0.4981231555934732 0.1224106765943749 -0.8584223599821407 -0.4981231555934732 -0.1224106765943749 0.8584223599821407 0.1121129923186101 -0.2398355057457572 0.9643182084442065 -0.1121129923186101 0.2398355057457572 -0.9643182084442065 0.1062857836713503 0.2553732186660098 0.9609827529032606 -0.1062857836713503 -0.2553732186660098 -0.9609827529032606 -0.2334720756407013 -0.9021215824597253 0.3628600837187571 0.2334720756407013 0.9021215824597253 -0.3628600837187571 -0.2546686456171097 -0.9661263003323787 -0.0417594629469482 0.2546686456171097 0.9661263003323787 0.0417594629469482 0.122600930984431 0.5856207422677188 -0.8012598566929189 -0.122600930984431 -0.5856207422677188 0.8012598566929189 0.2322407150442801 0.8745496591760359 -0.4257078151864269 -0.2322407150442801 -0.8745496591760359 0.4257078151864269 -0.8298561313882098 0.5579087855247387 0.008751470259655452 0.8298561313882098 -0.5579087855247387 -0.008751470259655452 -0.6382078320153407 0.5920859297022119 -0.4920620032099067 0.6382078320153407 -0.5920859297022119 0.4920620032099067 0.7845392952351216 -0.3705904072518202 -0.4971527373804845 -0.7845392952351216 0.3705904072518202 0.4971527373804845 0.8531057511976792 -0.5209817000929371 -0.02808283179661205 -0.8531057511976792 0.5209817000929371 0.02808283179661205 0.05742405221231209 -0.353113506087878 0.9338165398223807 -0.05742405221231209 0.353113506087878 -0.9338165398223807 0.2641960348307784 0.9638996132824373 0.03313594262521669 -0.2641960348307784 -0.9638996132824373 -0.03313594262521669 0.09615837488984069 0.2735020116739096 0.9570528807484307 -0.09615837488984069 -0.2735020116739096 -0.9570528807484307 -0.2628332742021519 -0.8574239266200959 -0.4424283897214923 0.2628332742021519 0.8574239266200959 0.4424283897214923 -0.8054615164145194 0.3138603555421823 0.5027160458888875 0.8054615164145194 -0.3138603555421823 -0.5027160458888875 0.5011963936528531 -0.07682531249453754 -0.8619164961581204 -0.5011963936528531 0.07682531249453754 0.8619164961581204 0.05593817161375906 -0.3240685888605996 0.9443783514409938 -0.05593817161375906 0.3240685888605996 -0.9443783514409938 0.03897668307371886 0.899180937822316 -0.4358376523816537 -0.03897668307371886 -0.899180937822316 0.4358376523816537 0.03524796927851993 0.3387274965168724 0.9402240497696029 -0.03524796927851993 -0.3387274965168724 -0.9402240497696029 -0.03380508164456341 -0.9335848275237068 0.356758442468479 0.03380508164456341 0.9335848275237068 -0.356758442468479 -0.04789256857390976 -0.9982543317458711 -0.03456285616087879 0.04789256857390976 0.9982543317458711 0.03456285616087879 0.00988376543882104 0.5750260384461712 -0.8180754037921276 -0.00988376543882104 -0.5750260384461712 0.8180754037921276 -0.5854676341618266 0.8104246664582965 0.0209644781693344 0.5854676341618266 -0.8104246664582965 -0.0209644781693344 -0.4340338561009833 0.7959874828626293 -0.4219224323073219 0.4340338561009833 -0.7959874828626293 0.4219224323073219 0.6153551915075027 -0.6092477810503327 -0.5001551055122906 -0.6153551915075027 0.6092477810503327 0.5001551055122906 0.6198722765427641 -0.7840918033200787 -0.03095811266789722 -0.6198722765427641 0.7840918033200787 0.03095811266789722 -0.0240890152515117 -0.4096357119910222 0.9119310844607836 0.0240890152515117 0.4096357119910222 -0.9119310844607836 0.05032314782727924 0.9980454334989849 0.03705257703017323 -0.05032314782727924 -0.9980454334989849 -0.03705257703017323 0.03482642477584477 0.3480616475002124 0.9368245351594772 -0.03482642477584477 -0.3480616475002124 -0.9368245351594772 -0.06078781811973539 -0.9051555509277223 -0.4207116230780575 0.06078781811973539 0.9051555509277223 0.4207116230780575 -0.648244348193578 0.6028199139261126 0.4651746085172723 0.648244348193578 -0.6028199139261126 -0.4651746085172723 0.4478888839578471 -0.254166375648369 -0.8572018438598732 -0.4478888839578471 0.254166375648369 0.8572018438598732 -0.01559188035809234 -0.3809853597316547 0.9244495924262397 0.01559188035809234 0.3809853597316547 -0.9244495924262397 -0.09714637419523878 0.5223268542527806 -0.8471937436661776 0.09714637419523878 -0.5223268542527806 0.8471937436661776 -0.1553367019142123 0.8736819979580711 -0.4610317510567014 0.1553367019142123 -0.8736819979580711 0.4610317510567014 -0.04773954315524366 0.3792351705057024 0.9240679744860978 0.04773954315524366 -0.3792351705057024 -0.9240679744860978 0.1710113448355263 -0.9112302410561427 0.374719318587004 -0.1710113448355263 0.9112302410561427 -0.374719318587004 0.1565670680249241 -0.9873307068236811 -0.02578426987775575 -0.1565670680249241 0.9873307068236811 0.02578426987775575 -0.3468667454040835 0.9373968143656501 0.03115563111076062 0.3468667454040835 -0.9373968143656501 -0.03115563111076062 -0.2151392028201705 0.8989116209247668 -0.3816713523128371 0.2151392028201705 -0.8989116209247668 0.3816713523128371 0.4229025381987818 -0.7599193955709881 -0.4936354478965752 -0.4229025381987818 0.7599193955709881 0.4936354478965752 0.3770488932395795 -0.9255375705175457 -0.03484734806678229 -0.3770488932395795 0.9255375705175457 0.03484734806678229 -0.1086298674624796 -0.4243898270490075 0.8989398348011938 0.1086298674624796 0.4243898270490075 -0.8989398348011938 0.1350396414025762 -0.898050863893943 -0.4186513359696902 -0.1350396414025762 0.898050863893943 0.4186513359696902 -0.161212579139658 0.9862882694139366 0.03529807280293992 0.161212579139658 -0.9862882694139366 -0.03529807280293992 -0.03730059635445455 0.3914554395165683 0.9194407563211957 0.03730059635445455 -0.3914554395165683 -0.9194407563211957 -0.4512943497619424 0.7735069445809086 0.4449948500354278 0.4512943497619424 -0.7735069445809086 -0.4449948500354278 0.3680389534659732 -0.3929713986181781 -0.842686660983633 -0.3680389534659732 0.3929713986181781 0.842686660983633 -0.09727941991731651 -0.4055490045254993 0.9088821262347099 0.09727941991731651 0.4055490045254993 -0.9088821262347099 0.3736525375605955 -0.9274559743706151 -0.01446363643004581 -0.3736525375605955 0.9274559743706151 0.01446363643004581 -0.1954342410551409 0.4220188002486209 -0.8852714779433005 0.1954342410551409 -0.4220188002486209 0.8852714779433005 -0.3804029272399221 0.9242065059515137 0.03370381735343186 0.3804029272399221 -0.9242065059515137 -0.03370381735343186 -0.1318258194384319 0.380539017198842 0.9153207141317874 0.1318258194384319 -0.380539017198842 -0.9153207141317874 0.3857828423291087 -0.8237000262929853 0.4155597011855332 -0.3857828423291087 0.8237000262929853 -0.4155597011855332 -0.1338340648369891 0.990448749506782 0.03316199164194668 0.1338340648369891 -0.990448749506782 -0.03316199164194668 -0.01119721103801772 0.9329614249593895 -0.3598021706475875 0.01119721103801772 -0.9329614249593895 0.3598021706475875 0.2325288884947923 -0.8440977660700394 -0.4831451928053774 -0.2325288884947923 0.8440977660700394 0.4831451928053774 0.1545306786828613 -0.9873150556191783 -0.03645888497352928 -0.1545306786828613 0.9873150556191783 0.03645888497352928 -0.188385323455448 -0.4022629462123833 0.8959327497145752 0.188385323455448 0.4022629462123833 -0.8959327497145752 0.3322826921166519 -0.8385561379056643 -0.431754346938681 -0.3322826921166519 0.8385561379056643 0.431754346938681 -0.2152423523879837 0.391658948099139 -0.8945803474883423 0.2152423523879837 -0.391658948099139 0.8945803474883423 -0.3868290367640545 0.9215290834905184 0.03387395160472276 0.3868290367640545 -0.9215290834905184 -0.03387395160472276 -0.1173952291246271 0.4026765469559839 0.9077829909787811 0.1173952291246271 -0.4026765469559839 -0.9077829909787811 -0.2489266544343785 0.8717552409187929 0.4219932708500514 0.2489266544343785 -0.8717552409187929 -0.4219932708500514 0.2718519283454329 -0.4882152724018878 -0.8293023434480454 -0.2718519283454329 0.4882152724018878 0.8293023434480454 -0.1836666092848303 -0.3924574694225748 0.9012456442769875 0.1836666092848303 0.3924574694225748 -0.9012456442769875 0.6033474415446439 -0.6384829790022293 0.4778193699568609 -0.6033474415446439 0.6384829790022293 -0.4778193699568609 0.6131352150534856 -0.7899777710976196 0.0005737882476074437 -0.6131352150534856 0.7899777710976196 -0.0005737882476074437 -0.2753808237963566 0.2694940130538956 -0.9227883716288078 0.2753808237963566 -0.2694940130538956 0.9227883716288078 -0.6186543257883074 0.7850985118013816 0.02978509611652962 0.6186543257883074 -0.7850985118013816 -0.02978509611652962 -0.2101296655536507 0.3486871822500865 0.9133798621541893 0.2101296655536507 -0.3486871822500865 -0.9133798621541893 0.06461220227132994 0.9973959955887958 0.03203890293196258 -0.06461220227132994 -0.9973959955887958 -0.03203890293196258 0.1834471411803039 0.9148563256495362 -0.3597013341812944 -0.1834471411803039 -0.9148563256495362 0.3597013341812944 0.04706446276303368 -0.8766449495836062 -0.4788304174907683 -0.04706446276303368 0.8766449495836062 0.4788304174907683 -0.05240410698773285 -0.9979334573656791 -0.03718365556263761 0.05240410698773285 0.9979334573656791 0.03718365556263761 -0.2558783423962933 -0.3504893468067221 0.900934787688611 0.2558783423962933 0.3504893468067221 -0.900934787688611 -0.2006920968280758 0.3777441372672295 0.9038982514813195 0.2006920968280758 -0.3777441372672295 -0.9038982514813195 0.530521993908302 -0.7131828725865238 -0.4581665682137816 -0.530521993908302 0.7131828725865238 0.4581665682137816 -0.2881229732548578 0.2233331766299601 -0.9311860418300691 0.2881229732548578 -0.2233331766299601 0.9311860418300691 -0.6320293355882027 0.7743886006494227 0.02934645021402401 0.6320293355882027 -0.7743886006494227 -0.02934645021402401 -0.05526060814531907 0.9079152834422599 0.4154950099331765 0.05526060814531907 -0.9079152834422599 -0.4154950099331765 0.169324867786248 -0.5435456118555541 -0.822123626337147 -0.169324867786248 0.5435456118555541 0.822123626337147 -0.262425063392403 -0.3400792848199952 0.9030388508474119 0.262425063392403 0.3400792848199952 -0.9030388508474119 -0.2785256252605083 0.2831471851144514 0.917742419001653 0.2785256252605083 -0.2831471851144514 -0.917742419001653 0.7799928739812686 -0.3127646575647681 0.5420234178675621 -0.7799928739812686 0.3127646575647681 -0.5420234178675621 0.8613617624052101 -0.5077492879164336 0.0157027031604448 -0.8613617624052101 0.5077492879164336 -0.0157027031604448 -0.3203826022531021 0.06507348339724793 -0.9450504906787143 0.3203826022531021 -0.06507348339724793 0.9450504906787143 -0.8569955182629497 0.514965341673612 0.01921922350664027 0.8569955182629497 -0.514965341673612 -0.01921922350664027 0.2668604861589438 0.9632172055238382 0.03159265594818225 -0.2668604861589438 -0.9632172055238382 -0.03159265594818225 0.3848259988989242 0.8411153441483907 -0.3800446400221686 -0.3848259988989242 -0.8411153441483907 0.3800446400221686 -0.1463452204061559 -0.8637105572618807 -0.4822728996518934 0.1463452204061559 0.8637105572618807 0.4822728996518934 -0.2614906007336944 -0.964583089536215 -0.03467173356931733 0.2614906007336944 0.964583089536215 0.03467173356931733 -0.3128205817555215 -0.2727530831994496 0.9098071439790585 0.3128205817555215 0.2727530831994496 -0.9098071439790585 -0.877251335563384 0.4797023225995196 0.01777008567467638 0.877251335563384 -0.4797023225995196 -0.01777008567467638 -0.2802057379684856 0.3069626073985923 0.9095376309249628 0.2802057379684856 -0.3069626073985923 -0.9095376309249628 0.7175372919484939 -0.4930483606966952 -0.4919792156966829 -0.7175372919484939 0.4930483606966952 0.4919792156966829 -0.3153542051832245 0.02589270463782779 -0.9486207319681534 0.3153542051832245 -0.02589270463782779 0.9486207319681534 0.139251626078047 0.8939704795085888 0.4259410362970489 -0.139251626078047 -0.8939704795085888 -0.4259410362970489 0.06132171006327589 -0.5593056598669248 -0.8266902846385335 -0.06132171006327589 0.5593056598669248 0.8266902846385335 -0.3280033984977638 -0.249834438430717 0.9110414501810141 0.3280033984977638 0.249834438430717 -0.9110414501810141 -0.9954158731747244 0.09554874053023407 0.004204475578096453 0.9954158731747244 -0.09554874053023407 -0.004204475578096453 -0.3316173720207138 0.1947632518625393 0.9230911083408855 0.3316173720207138 -0.1947632518625393 -0.9230911083408855 0.817575153764345 0.09709929153633617 0.5675760702587355 -0.817575153764345 -0.09709929153633617 -0.5675760702587355 0.8458775383286142 -0.1331990427620946 -0.5164776908622341 -0.8458775383286142 0.1331990427620946 0.5164776908622341 -0.3083759824560517 -0.1573796570753727 -0.9381555825038312 0.3083759824560517 0.1573796570753727 0.9381555825038312 0.4990163719993245 0.8660150067876759 0.03163334467257348 -0.4990163719993245 -0.8660150067876759 -0.03163334467257348 0.5956789501138251 0.6858391035791073 -0.4180805094633062 -0.5956789501138251 -0.6858391035791073 0.4180805094633062 -0.3620953882820228 -0.7880951880868865 -0.4977880114056444 0.3620953882820228 0.7880951880868865 0.4977880114056444 -0.4980481988525364 -0.8665885920918063 -0.03118018082188514 0.4980481988525364 0.8665885920918063 0.03118018082188514 -0.3599611320206116 -0.1644710035956224 0.9183557439307976 0.3599611320206116 0.1644710035956224 -0.9183557439307976 -0.2943256424314859 -0.1612840048859618 -0.9419978163325211 0.2943256424314859 0.1612840048859618 0.9419978163325211 -0.9995122683368192 0.0311708959594342 0.001897548226659741 0.9995122683368192 -0.0311708959594342 -0.001897548226659741 -0.3430764110087483 0.1961104572649701 0.9186072418398849 0.3430764110087483 -0.1961104572649701 -0.9186072418398849 0.8174352215529376 0.0463851767321013 0.5741498706298134 -0.8174352215529376 -0.0463851767321013 -0.5741498706298134 0.8407491762812339 -0.1769459966637989 -0.5116941829326203 -0.8407491762812339 0.1769459966637989 0.5116941829326203 0.351330893026568 0.8170314435160931 0.4571938581293095 -0.351330893026568 -0.8170314435160931 -0.4571938581293095 -0.05311202123594302 -0.5295486039395305 -0.8466152545672248 0.05311202123594302 0.5295486039395305 0.8466152545672248 -0.37190415890185 -0.1265488341316491 0.9196046374238375 0.37190415890185 0.1265488341316491 -0.9196046374238375 -0.2430519777419506 -0.3409754151362031 -0.908108750309356 0.2430519777419506 0.3409754151362031 0.908108750309356 -0.9393301647007613 -0.342807994740731 -0.01189623575252639 0.9393301647007613 0.342807994740731 0.01189623575252639 -0.3671425430842894 0.09387747790844114 0.9254152431201633 0.3671425430842894 -0.09387747790844114 -0.9254152431201633 0.7105810854744179 0.4478938837629632 0.5426468371360209 -0.7105810854744179 -0.4478938837629632 -0.5426468371360209 0.832248097536002 0.2410706283649829 -0.499247490016142 -0.832248097536002 -0.2410706283649829 0.499247490016142 0.7492661764034824 0.6617274221376309 0.02677714863071222 -0.7492661764034824 -0.6617274221376309 -0.02677714863071222 0.771790659619931 0.4268693530229965 -0.4712979240068435 -0.771790659619931 -0.4268693530229965 0.4712979240068435 -0.1704960135927644 -0.4188404448990791 -0.8919101922647355 0.1704960135927644 0.4188404448990791 0.8919101922647355 -0.7457577804628064 -0.6658070536922155 -0.02337306425952852 0.7457577804628064 0.6658070536922155 0.02337306425952852 -0.3832894174236852 -0.03328216608980961 0.9230284502177506 0.3832894174236852 0.03328216608980961 -0.9230284502177506 0.8487181325949951 0.1690921359116911 -0.5010842054757729 -0.8487181325949951 -0.1690921359116911 0.5010842054757729 -0.2376092621617667 -0.3172641265836313 -0.918087856644486 0.2376092621617667 0.3172641265836313 0.918087856644486 -0.9142861257012683 -0.4047971558969609 -0.01483721429029009 0.9142861257012683 0.4047971558969609 0.01483721429029009 -0.3773104254029742 0.07298334062249158 0.9232065179979007 0.3773104254029742 -0.07298334062249158 -0.9232065179979007 0.7162880539923326 0.4292135047673638 0.5501883232432265 -0.7162880539923326 -0.4292135047673638 -0.5501883232432265 0.5634627908216059 0.6543478710563656 0.5043198855920013 -0.5634627908216059 -0.6543478710563656 -0.5043198855920013 -0.1654917863658059 -0.4500086473228867 -0.877556087085082 0.1654917863658059 0.4500086473228867 0.877556087085082 -0.7849727204841929 -0.6191489520560974 -0.02173483985406269 0.7849727204841929 0.6191489520560974 0.02173483985406269 -0.3812090940806548 0.001936728282550633 0.9244868174688949 0.3812090940806548 -0.001936728282550633 -0.9244868174688949 0.7062604362073617 0.7074454334915477 0.02677974757430267 -0.7062604362073617 -0.7074454334915477 -0.02677974757430267 -0.1468902033780271 -0.4681736318872253 -0.8713419068064423 0.1468902033780271 0.4681736318872253 0.8713419068064423 -0.5453491082515233 -0.6597150224060673 -0.5170787554532 0.5453491082515233 0.6597150224060673 0.5170787554532 -0.3800962827451415 -0.01950687838726434 0.9247412057105005 0.3800962827451415 0.01950687838726434 -0.9247412057105005 0.5268268176928848 0.690872562717454 0.4951248390495125 -0.5268268176928848 -0.690872562717454 -0.4951248390495125 0.7478602442038386 0.3581124738567753 0.5589816734093839 -0.7478602442038386 -0.3581124738567753 -0.5589816734093839 0.8574544598189914 0.09220009470449439 -0.5062321521525515 -0.8574544598189914 -0.09220009470449439 0.5062321521525515 -0.2503197381908354 -0.2899055413683712 -0.9237395768050555 0.2503197381908354 0.2899055413683712 0.9237395768050555 -0.9458652848475723 -0.3243628032144416 -0.01129755774892723 0.9458652848475723 0.3243628032144416 0.01129755774892723 -0.3740395889501752 0.1012831300126014 0.9218655614962708 0.3740395889501752 -0.1012831300126014 -0.9218655614962708 0.7456116067161954 0.4793411569132378 -0.4629204977306279 -0.7456116067161954 -0.4793411569132378 0.4629204977306279 -0.7019985273356816 -0.7116016075999861 -0.0286569307437078 0.7019985273356816 0.7116016075999861 0.0286569307437078 -0.3797481066952388 -0.05574983828455482 0.9234085395926482 0.3797481066952388 0.05574983828455482 -0.9234085395926482 0.7412720626271601 0.3839166967398176 0.5505667072506862 -0.7412720626271601 -0.3839166967398176 -0.5505667072506862 0.8464349456429571 0.1647903424594057 -0.5063516819627598 -0.8464349456429571 -0.1647903424594057 0.5063516819627598 -0.2583514331959643 -0.3088208194943954 -0.9153601686835632 0.2583514331959643 0.3088208194943954 0.9153601686835632 -0.9667079460379267 -0.2557261280812135 -0.008938371424594471 0.9667079460379267 0.2557261280812135 0.008938371424594471 -0.3620990946634469 0.1188843009914378 0.9245273217280761 0.3620990946634469 -0.1188843009914378 -0.9245273217280761 0.319761704224191 0.8329906729542334 0.4515296128526839 -0.319761704224191 -0.8329906729542334 -0.4515296128526839 0.4674235674928223 0.8835645762532153 0.02878972286700408 -0.4674235674928223 -0.8835645762532153 -0.02878972286700408 -0.03702291901141228 -0.5386610444372147 -0.8417087279300859 0.03702291901141228 0.5386610444372147 0.8417087279300859 -0.3259297431167805 -0.8059261183550209 -0.4942194798923228 0.3259297431167805 0.8059261183550209 0.4942194798923228 -0.3683647448944613 -0.1472065661969778 0.9179529626224501 0.3683647448944613 0.1472065661969778 -0.9179529626224501 0.8188414523304987 -0.04539498950297801 0.5722219594469477 -0.8188414523304987 0.04539498950297801 -0.5722219594469477 0.8222351799247571 -0.2531189896746004 -0.5097647358931486 -0.8222351799247571 0.2531189896746004 0.5097647358931486 -0.3007669408721845 -0.1278712170447151 -0.9450863448013052 0.3007669408721845 0.1278712170447151 0.9450863448013052 -0.9912196725870244 0.1321124366424652 0.005464866042518272 0.9912196725870244 -0.1321124366424652 -0.005464866042518272 -0.3334531898166117 0.2261849219163817 0.9152318565799635 0.3334531898166117 -0.2261849219163817 -0.9152318565799635 -0.3572509335391731 -0.1813572351176351 0.916232134208289 0.3572509335391731 0.1813572351176351 -0.916232134208289 0.5652910635408757 0.7136397675557669 -0.4137200691817796 -0.5652910635408757 -0.7136397675557669 0.4137200691817796 -0.4590092833981768 -0.8877795503597669 -0.03402863084671884 0.4590092833981768 0.8877795503597669 0.03402863084671884 0.8236552113892361 0.0100891157115191 0.5670011485839446 -0.8236552113892361 -0.0100891157115191 -0.5670011485839446 0.8284238845313932 -0.2197766705392278 -0.5151816015975425 -0.8284238845313932 0.2197766705392278 0.5151816015975425 -0.3143545530052891 -0.1151609002877546 -0.9422946365387838 0.3143545530052891 0.1151609002877546 0.9422946365387838 -0.9814011140988709 0.1918121627780759 0.007742574241940405 0.9814011140988709 -0.1918121627780759 -0.007742574241940405 -0.3228697798530805 0.2179416238368772 0.9210084439661607 0.3228697798530805 -0.2179416238368772 -0.9210084439661607 -0.3242603454229419 -0.26278932832013 0.9087337328982836 0.3242603454229419 0.26278932832013 -0.9087337328982836 0.117408333593584 0.8977407286122229 0.4245902346893686 -0.117408333593584 -0.8977407286122229 -0.4245902346893686 0.2470104206640791 0.9685291661992058 0.0306121920944245 -0.2470104206640791 -0.9685291661992058 -0.0306121920944245 0.07434944066558483 -0.5619908898762065 -0.8237951203842275 -0.07434944066558483 0.5619908898762065 0.8237951203842275 -0.1220431256235842 -0.8647778253340694 -0.487098335347703 0.1220431256235842 0.8647778253340694 0.487098335347703 0.8216033761799422 -0.569899124762224 0.01352330747160687 -0.8216033761799422 0.569899124762224 -0.01352330747160687 0.6878039565639096 -0.5387580380347037 -0.4864827785112528 -0.6878039565639096 0.5387580380347037 0.4864827785112528 -0.3137263906325912 0.05871167165584165 -0.9476965186345381 0.3137263906325912 -0.05871167165584165 0.9476965186345381 -0.8392362141851329 0.5433656482746885 0.02088897018124987 0.8392362141851329 -0.5433656482746885 -0.02088897018124987 -0.2680687356060446 0.3235076137467493 0.9074590772252271 0.2680687356060446 -0.3235076137467493 -0.9074590772252271 -0.2377803173828305 -0.9701737056791269 -0.04715401864265265 0.2377803173828305 0.9701737056791269 0.04715401864265265 -0.3107264998112969 -0.2832606490249422 0.907310557102136 0.3107264998112969 0.2832606490249422 -0.907310557102136 0.3634875532057154 0.8517395637612272 -0.3773811259037166 -0.3634875532057154 -0.8517395637612272 0.3773811259037166 0.7564741380647571 -0.3790849739850686 0.5329554023911599 -0.7564741380647571 0.3790849739850686 -0.5329554023911599 -0.3158301950430751 0.1010014341521823 -0.9434246118255849 0.3158301950430751 -0.1010014341521823 0.9434246118255849 -0.8201546778133422 0.5717219841423917 0.02191523007362344 0.8201546778133422 -0.5717219841423917 -0.02191523007362344 -0.2680279304866537 0.2977166802809032 0.9162564088515616 0.2680279304866537 -0.2977166802809032 -0.9162564088515616 0.06943503471947671 -0.8752562718779137 -0.4786493857636093 -0.06943503471947671 0.8752562718779137 0.4786493857636093 -0.2548440377212501 -0.3496896180200109 0.9015385113720594 0.2548440377212501 0.3496896180200109 -0.9015385113720594 -0.07988208919618244 0.9055631098653776 0.4166224980442116 0.07988208919618244 -0.9055631098653776 -0.4166224980442116 0.04085328202072017 0.9986139180224687 0.03318511835069635 -0.04085328202072017 -0.9986139180224687 -0.03318511835069635 0.1825432294880344 -0.537504617058687 -0.8232659084455477 -0.1825432294880344 0.537504617058687 0.8232659084455477 0.5778141449209872 -0.8161653615313131 -0.00221733301270339 -0.5778141449209872 0.8161653615313131 0.00221733301270339 0.5021146877112246 -0.7356145625900777 -0.4546999622719005 -0.5021146877112246 0.7356145625900777 0.4546999622719005 -0.2805128566256279 0.2496901615118323 -0.9268049204184908 0.2805128566256279 -0.2496901615118323 0.9268049204184908 -0.5959281025117016 0.8024830981153345 0.02984248441429266 0.5959281025117016 -0.8024830981153345 -0.02984248441429266 -0.1886773154703058 0.3827046229957719 0.9043992714308115 0.1886773154703058 -0.3827046229957719 -0.9043992714308115 -0.02640921272806773 -0.9989879478236353 -0.0364092513821016 0.02640921272806773 0.9989879478236353 0.0364092513821016 -0.2495445260554905 -0.3595971644574081 0.8991203528059704 0.2495445260554905 0.3595971644574081 -0.8991203528059704 0.1610895679762224 0.919489204049207 -0.3585941364916466 -0.1610895679762224 -0.919489204049207 0.3585941364916466 0.5735083298594795 -0.6719851894797322 0.4685339909778998 -0.5735083298594795 0.6719851894797322 -0.4685339909778998 -0.2658005393205428 0.2945847544311872 -0.9179160613877642 0.2658005393205428 -0.2945847544311872 0.9179160613877642 -0.5837520942757996 0.8113702867369903 0.0301952020849721 0.5837520942757996 -0.8113702867369903 -0.0301952020849721 -0.1992068250247359 0.3545104032779222 0.9135858004759538 0.1992068250247359 -0.3545104032779222 -0.9135858004759538 0.2861913866710729 -0.4776759500918658 -0.830614337041639 -0.2861913866710729 0.4776759500918658 0.830614337041639 0.2596318044898602 -0.8356783259833757 -0.4839763027039257 -0.2596318044898602 0.8356783259833757 0.4839763027039257 -0.1711688674842123 -0.3974652104131658 0.9015113007141897 0.1711688674842123 0.3974652104131658 -0.9015113007141897 -0.2759588185517231 0.8621143631909254 0.4249771232001111 0.2759588185517231 -0.8621143631909254 -0.4249771232001111 -0.1627320990026209 0.9861135152307041 0.03314210363789748 0.1627320990026209 -0.9861135152307041 -0.03314210363789748 0.3417012434807117 -0.939666226372916 -0.01635980494440938 -0.3417012434807117 0.939666226372916 0.01635980494440938 0.3037790949308605 -0.8502658120976109 -0.4298445187052845 -0.3037790949308605 0.8502658120976109 0.4298445187052845 -0.2017856073853346 0.4122559507173126 -0.8884411065176443 0.2017856073853346 -0.4122559507173126 0.8884411065176443 -0.353383081220885 0.9348236989469535 0.03500071133518485 0.353383081220885 -0.9348236989469535 -0.03500071133518485 -0.1058642773528767 0.4039725874490634 0.9086247318724392 0.1058642773528767 -0.4039725874490634 -0.9086247318724392 -0.03908713698263171 0.9310460057487885 -0.3628023303421956 0.03908713698263171 -0.9310460057487885 0.3628023303421956 0.1852977366561001 -0.9820238636952331 -0.03597054243701098 -0.1852977366561001 0.9820238636952331 0.03597054243701098 -0.1773562520115273 -0.4078832717296075 0.8956427839912378 0.1773562520115273 0.4078832717296075 -0.8956427839912378 0.3549033669302498 -0.8408083423102349 0.4087602373556992 -0.3549033669302498 0.8408083423102349 -0.4087602373556992 -0.1821962809216112 0.4398357752132144 -0.8794026416044724 0.1821962809216112 -0.4398357752132144 0.8794026416044724 -0.3477733437344215 0.9369257507071379 0.03498341106361896 0.3477733437344215 -0.9369257507071379 -0.03498341106361896 -0.1202939555411783 0.3835446138356098 0.9156543526123544 0.1202939555411783 -0.3835446138356098 -0.9156543526123544 -0.3816928160809102 0.9236570684072814 0.03417914764138207 0.3816928160809102 -0.9236570684072814 -0.03417914764138207 0.3808577460685767 -0.3762245883194242 -0.8446315388401284 -0.3808577460685767 0.3762245883194242 0.8446315388401284 0.4502494234029147 -0.7431755873906194 -0.4949398984037865 -0.4502494234029147 0.7431755873906194 0.4949398984037865 -0.08540093500703064 -0.4049584619435693 0.9103380275481322 0.08540093500703064 0.4049584619435693 -0.9103380275481322 -0.4839614745690746 0.7462630882213914 0.4570259229969331 0.4839614745690746 -0.7462630882213914 -0.4570259229969331 0.1272613134699524 -0.9915110894095429 -0.02665178552750414 -0.1272613134699524 0.9915110894095429 0.02665178552750414 0.1074872954876126 -0.9023021340846562 -0.4174893293666727 -0.1074872954876126 0.9023021340846562 0.4174893293666727 -0.1272965915932204 0.8805005225712929 -0.4566337783393045 0.1272965915932204 -0.8805005225712929 0.4566337783393045 -0.1306424101633403 0.9907860809176877 0.03571417822774105 0.1306424101633403 -0.9907860809176877 -0.03571417822774105 -0.02654519648341589 0.3880500181022754 0.9212559557443742 0.02654519648341589 -0.3880500181022754 -0.9212559557443742 -0.2461620453906043 0.8881319108602231 -0.3881055994454122 0.2461620453906043 -0.8881319108602231 0.3881055994454122 0.4100579418481921 -0.9114198883774879 -0.03415071591039503 -0.4100579418481921 0.9114198883774879 0.03415071591039503 -0.09587537643338889 -0.4238610962026208 0.9006384864748278 0.09587537643338889 0.4238610962026208 -0.9006384864748278 0.1414243282584529 -0.9177596944437224 0.3711014721490754 -0.1414243282584529 0.9177596944437224 -0.3711014721490754 -0.08231361666613409 0.5327125572456595 -0.8422836813474013 0.08231361666613409 -0.5327125572456595 0.8422836813474013 -0.0357738988202156 0.3767866784866152 0.9256090033476472 0.0357738988202156 -0.3767866784866152 -0.9256090033476472 -0.6747147755791466 0.5584902983883989 0.4825438407245698 0.6747147755791466 -0.5584902983883989 -0.4825438407245698 -0.6195773714114743 0.7846165788034097 0.02237644077329868 0.6195773714114743 -0.7846165788034097 -0.02237644077329868 0.4569721173514396 -0.2307612450082885 -0.8590260367215694 -0.4569721173514396 0.2307612450082885 0.8590260367215694 0.6402024441693123 -0.5821756253416732 -0.501210905445672 -0.6402024441693123 0.5821756253416732 0.501210905445672 -0.004103715279616589 -0.3751858317991564 0.9269405326870106 0.004103715279616589 0.3751858317991564 -0.9269405326870106 -0.07705662111402463 -0.996390105839737 -0.03562350526221716 0.07705662111402463 0.996390105839737 0.03562350526221716 -0.08906834893946965 -0.901889651168439 -0.4226841448794457 0.08906834893946965 0.901889651168439 0.4226841448794457 0.06621860718030846 0.8987904080853973 -0.4333484722446644 -0.06621860718030846 -0.8987904080853973 0.4333484722446644 0.08027133921803603 0.9960947495142613 0.03676631733345015 -0.08027133921803603 -0.9960947495142613 -0.03676631733345015 0.04440000070647108 0.339511262952567 0.9395534802583716 -0.04440000070647108 -0.339511262952567 -0.9395534802583716 -0.01160310818029262 -0.4044697119215308 0.9144777854156274 0.01160310818029262 0.4044697119215308 -0.9144777854156274 -0.4608981076396527 0.7725726231779423 -0.4366972364123002 0.4608981076396527 -0.7725726231779423 0.4366972364123002 0.6528599392294456 -0.7569500091748925 -0.02829458180384909 -0.6528599392294456 0.7569500091748925 0.02829458180384909 -0.06266948071216899 -0.9322056042347686 0.3564621264882947 0.06266948071216899 0.9322056042347686 -0.3564621264882947 0.02541222647829463 0.5792942106514886 -0.8147223062191711 -0.02541222647829463 -0.5792942106514886 0.8147223062191711 0.04651274091202064 0.3295208045599909 0.9430019110770601 -0.04651274091202064 -0.3295208045599909 -0.9430019110770601 0.06468452150063614 -0.3132026605496621 0.9474808737398591 -0.06468452150063614 0.3132026605496621 -0.9474808737398591 -0.8189912238312458 0.2678190603133242 0.5074705175872646 0.8189912238312458 -0.2678190603133242 -0.5074705175872646 -0.8580826706007079 0.5134990070261529 0.003591684550717541 0.8580826706007079 -0.5134990070261529 -0.003591684550717541 0.4994221860388733 -0.04701482210331644 -0.8650821270808609 -0.4994221860388733 0.04701482210331644 0.8650821270808609 0.8539350250635807 -0.5200075136972855 -0.01967634793423746 -0.8539350250635807 0.5200075136972855 0.01967634793423746 -0.2852383295094946 -0.9574724353983852 -0.04342385094528022 0.2852383295094946 0.9574724353983852 0.04342385094528022 -0.2923937270020495 -0.8450148886231683 -0.4477228455361924 0.2923937270020495 0.8450148886231683 0.4477228455361924 0.2599973302445103 0.8674538926089805 -0.4241758272971886 -0.2599973302445103 -0.8674538926089805 0.4241758272971886 0.2946043865131284 0.9549829925430863 0.03486745474901904 -0.2946043865131284 -0.9549829925430863 -0.03486745474901904 0.1034208991949439 0.260849244371909 0.9598238324402627 -0.1034208991949439 -0.260849244371909 -0.9598238324402627 0.8820023309921814 -0.4709110062872414 -0.01774013195824339 -0.8820023309921814 0.4709110062872414 0.01774013195824339 0.06788770271577643 -0.3406675967151395 0.9377296243418493 -0.06788770271577643 0.3406675967151395 -0.9377296243418493 -0.663998397715294 0.5539954384782575 -0.5021903841938887 0.663998397715294 -0.5539954384782575 0.5021903841938887 0.4964854153761558 -0.007182893173776466 -0.8680153445443347 -0.4964854153761558 0.007182893173776466 0.8680153445443347 -0.2615383452944082 -0.8933672340881239 0.3653664995568126 0.2615383452944082 0.8933672340881239 -0.3653664995568126 0.138234137089511 0.58318797932163 -0.8004892904454577 -0.138234137089511 -0.58318797932163 0.8004892904454577 0.1141353834988266 0.2414910802766948 0.9636675632085843 -0.1141353834988266 -0.2414910802766948 -0.9636675632085843 0.8822869759273295 0.02221257835460109 -0.4701875088428538 -0.8822869759273295 -0.02221257835460109 0.4701875088428538 0.1188090796556892 -0.2260232352277939 0.9668494710804414 -0.1188090796556892 0.2260232352277939 -0.9668494710804414 -0.8587355829409947 -0.08016053196359224 0.5061101537277273 0.8587355829409947 0.08016053196359224 -0.5061101537277273 -0.8050817861859301 0.1826543429245913 -0.5643409506339746 0.8050817861859301 -0.1826543429245913 0.5643409506339746 0.4926074062465193 0.1528286611391779 -0.8567271115387227 -0.4926074062465193 -0.1528286611391779 0.8567271115387227 -0.5097963798255546 -0.8590980614326789 -0.04536708012834995 0.5097963798255546 0.8590980614326789 0.04536708012834995 -0.5032437954977744 -0.7119934393276318 -0.489705038413333 0.5032437954977744 0.7119934393276318 0.489705038413333 0.4603550888754805 0.778908558202372 -0.4258810281117847 -0.4603550888754805 -0.778908558202372 0.4258810281117847 0.5234788386839879 0.8515032728047226 0.03020069292101319 -0.5234788386839879 -0.8515032728047226 -0.03020069292101319 0.1518556239521084 0.1545007228608813 0.976252731678422 -0.1518556239521084 -0.1545007228608813 -0.976252731678422 0.9986607577249228 -0.05168645363632656 -0.00228067770253558 -0.9986607577249228 0.05168645363632656 0.00228067770253558 0.1318177949197178 -0.2349826358603667 0.9630198491135152 -0.1318177949197178 0.2349826358603667 -0.9630198491135152 -0.8570263845191761 -0.04026866888180463 0.5136966133278249 0.8570263845191761 0.04026866888180463 -0.5136966133278249 -0.8020591645631245 0.2179712583136024 -0.5560482237085983 0.8020591645631245 -0.2179712583136024 0.5560482237085983 -0.4616293207635678 -0.7910058913438179 0.4015072229371958 0.4616293207635678 0.7910058913438179 -0.4015072229371958 0.252555832078979 0.5415387773077612 -0.8018424435978114 -0.252555832078979 -0.5415387773077612 0.8018424435978114 0.1597918980779847 0.1228009126198238 0.9794827640996923 -0.1597918980779847 -0.1228009126198238 -0.9794827640996923 0.43533046034932 0.3341460369124196 -0.8359628079692141 -0.43533046034932 -0.3341460369124196 0.8359628079692141 0.8085218084328519 0.3823038566077889 -0.4473658977965149 -0.8085218084328519 -0.3823038566077889 0.4473658977965149 0.1551443768086196 -0.1168564902557366 0.9809560556058442 -0.1551443768086196 0.1168564902557366 -0.9809560556058442 -0.7805802054304413 -0.4068145480406504 0.4745486975987306 0.7805802054304413 0.4068145480406504 -0.4745486975987306 -0.9244807062414688 -0.3785924093579286 -0.04475724928805827 0.9244807062414688 0.3785924093579286 0.04475724928805827 -0.7501932453694553 -0.6593635372132038 -0.04949566037276468 0.7501932453694553 0.6593635372132038 0.04949566037276468 -0.697842370438045 -0.4623248219804261 -0.5470573873024455 0.697842370438045 0.4623248219804261 0.5470573873024455 0.664914727913751 0.6072439449909418 -0.4349059621058563 -0.664914727913751 -0.6072439449909418 0.4349059621058563 0.7604819999119626 0.6489570574122129 0.02284437446689475 -0.7604819999119626 -0.6489570574122129 -0.02284437446689475 0.1719287864699752 0.01941246406533368 0.9849180923416291 -0.1719287864699752 -0.01941246406533368 -0.9849180923416291 -0.8041096581556844 -0.1784964749614651 -0.5670508496484942 0.8041096581556844 0.1784964749614651 0.5670508496484942 0.9246610726829869 0.3805584205546403 0.01331124373247689 -0.9246610726829869 -0.3805584205546403 -0.01331124373247689 0.1673333523979098 -0.09873223940876282 0.9809441849955621 -0.1673333523979098 0.09873223940876282 -0.9809441849955621 -0.6515875564377071 -0.6172434749691158 0.4409582167321395 0.6515875564377071 0.6172434749691158 -0.4409582167321395 0.3609516342520132 0.4491983126357995 -0.8172727779976226 -0.3609516342520132 -0.4491983126357995 0.8172727779976226 0.1680765945439185 -0.01327555933124413 0.985684542787885 -0.1680765945439185 0.01327555933124413 -0.985684542787885 -0.7077230417893935 -0.7046661999761413 -0.05073108249932461 0.7077230417893935 0.7046661999761413 0.05073108249932461 0.3422843836739553 0.4701521679440835 -0.8135098891042559 -0.3422843836739553 -0.4701521679440835 0.8135098891042559 0.6285613170124984 0.6463117594752375 -0.4326566540798099 -0.6285613170124984 -0.6463117594752375 0.4326566540798099 0.1684890695428452 0.01078571029425203 0.985644510915591 -0.1684890695428452 -0.01078571029425203 -0.985644510915591 -0.6208654125576584 -0.6569322432545512 0.4277454468046993 0.6208654125576584 0.6569322432545512 -0.4277454468046993 -0.8016865899686199 -0.3477296061211744 0.4861920736615304 0.8016865899686199 0.3477296061211744 -0.4861920736615304 -0.8149279964462595 -0.108071750513553 -0.5693969242532153 0.8149279964462595 0.108071750513553 0.5693969242532153 0.8324412887316971 0.3218681243093255 -0.4510459082713287 -0.8324412887316971 -0.3218681243093255 0.4510459082713287 0.9513162046913369 0.3080467120941872 0.01023239266405334 -0.9513162046913369 -0.3080467120941872 -0.01023239266405334 0.1634427347217502 -0.1247272176778069 0.9786365993753906 -0.1634427347217502 0.1247272176778069 -0.9786365993753906 -0.6678615635047543 -0.5214529767142511 -0.5310816557449818 0.6678615635047543 0.5214529767142511 0.5310816557449818 0.7182704099668077 0.6953221181158507 0.02479456039136455 -0.7182704099668077 -0.6953221181158507 -0.02479456039136455 0.1693906938899092 0.04483850883956429 0.9845284662967035 -0.1693906938899092 -0.04483850883956429 -0.9845284662967035 -0.8048827537658515 -0.3506513833950874 0.4787560548060056 0.8048827537658515 0.3506513833950874 -0.4787560548060056 -0.8033590027119337 -0.1702033941689896 -0.5706532374174729 0.8033590027119337 0.1702033941689896 0.5706532374174729 0.4492489151208772 0.3040901989692398 -0.8400622376666881 -0.4492489151208772 -0.3040901989692398 0.8400622376666881 0.1500447169283141 -0.138173474524132 0.9789763397855082 -0.1500447169283141 0.138173474524132 -0.9789763397855082 -0.4259168336932312 -0.8178708918854935 0.3868876516292036 0.4259168336932312 0.8178708918854935 -0.3868876516292036 -0.4675528058744584 -0.8826984411395502 -0.04730576845088733 0.4675528058744584 0.8826984411395502 0.04730576845088733 0.2320331210174481 0.552451721304366 -0.8005983552186111 -0.2320331210174481 -0.552451721304366 0.8005983552186111 0.423552817016082 0.800072550116941 -0.424837528647266 -0.423552817016082 -0.800072550116941 0.424837528647266 0.1520176940995982 0.1435779793503188 0.9778936468381009 -0.1520176940995982 -0.1435779793503188 -0.9778936468381009 -0.8563320272399652 0.03082560515181998 0.5155048410928027 0.8563320272399652 -0.03082560515181998 -0.5155048410928027 -0.7854929334559505 0.2863061653322473 -0.548661672785251 0.7854929334559505 -0.2863061653322473 0.548661672785251 0.8789014297648528 -0.04562048212722426 -0.4748168577122944 -0.8789014297648528 0.04562048212722426 0.4748168577122944 0.990959560209696 -0.1340304237963209 -0.005915701647684131 -0.990959560209696 0.1340304237963209 0.005915701647684131 0.1214820122370588 -0.2566134302884692 0.9588491372986786 -0.1214820122370588 0.2566134302884692 -0.9588491372986786 0.1424440772897258 0.1742521583025163 0.9743438151761387 -0.1424440772897258 -0.1742521583025163 -0.9743438151761387 -0.4649789463636549 -0.7434132489006698 -0.4807611889467537 0.4649789463636549 0.7434132489006698 0.4807611889467537 0.4806943639689125 0.8763139387563154 0.03173025669476218 -0.4806943639689125 -0.8763139387563154 -0.03173025669476218 -0.860825508538414 -0.01637030433322081 0.5086368616071968 0.860825508538414 0.01637030433322081 -0.5086368616071968 -0.7900884051782785 0.2562287310294556 -0.5568726509695724 0.7900884051782785 -0.2562287310294556 0.5568726509695724 0.4980018128158077 0.116895785697058 -0.8592610602828669 -0.4980018128158077 -0.116895785697058 0.8592610602828669 0.1096753208974513 -0.2434453283727799 0.9636937771302202 -0.1096753208974513 0.2434453283727799 -0.9636937771302202 0.1039430968539143 0.2597255547324514 0.9600721164763293 -0.1039430968539143 -0.2597255547324514 -0.9600721164763293 -0.2255378127122263 -0.9042298971151196 0.3626306498355663 0.2255378127122263 0.9042298971151196 -0.3626306498355663 -0.2462918182893521 -0.96830953209926 -0.04143658153657273 0.2462918182893521 0.96830953209926 0.04143658153657273 0.1176930609954982 0.5855060654368791 -0.8020791673707371 -0.1176930609954982 -0.5855060654368791 0.8020791673707371 0.2245571584220953 0.8769448063270271 -0.4249022114056911 -0.2245571584220953 -0.8769448063270271 0.4249022114056911 -0.8181617821641836 0.5749329272460735 0.007964130472813039 0.8181617821641836 -0.5749329272460735 -0.007964130472813039 -0.6304609217472185 0.6022863710895903 -0.4896633061087792 0.6304609217472185 -0.6022863710895903 0.4896633061087792 0.4950013122049483 -0.03894530890403111 -0.8680189881735012 -0.4950013122049483 0.03894530890403111 0.8680189881735012 0.8451068423974378 -0.5342149866024907 -0.0202181359757254 -0.8451068423974378 0.5342149866024907 0.0202181359757254 0.05381813097046343 -0.3554000960565684 0.9331636407950258 -0.05381813097046343 0.3554000960565684 -0.9331636407950258 0.2549211886610694 0.9663190211123204 0.03525247520606934 -0.2549211886610694 -0.9663190211123204 -0.03525247520606934 0.09422609105449224 0.2772421142827128 0.9561685279450699 -0.09422609105449224 -0.2772421142827128 -0.9561685279450699 -0.2549063720897547 -0.8600353702113481 -0.4419976283346649 0.2549063720897547 0.8600353702113481 0.4419976283346649 -0.7992910972255116 0.3271170577276409 0.5041112698994628 0.7992910972255116 -0.3271170577276409 -0.5041112698994628 0.4949280783144888 -0.08220662998103046 -0.8650365699108271 -0.4949280783144888 0.08220662998103046 0.8650365699108271 0.8144052318136436 -0.5798883687887207 -0.02176231003644295 -0.8144052318136436 0.5798883687887207 0.02176231003644295 0.05283031180687196 -0.3265213348335798 0.9437122315901633 -0.05283031180687196 0.3265213348335798 -0.9437122315901633 0.03142046943407338 0.8992579101895374 -0.4362888550743516 -0.03142046943407338 -0.8992579101895374 0.4362888550743516 0.03222159564070842 0.3414367672048336 0.9393522783147328 -0.03222159564070842 -0.3414367672048336 -0.9393522783147328 -0.02592514452303629 -0.9334526254606158 0.3577626069087477 0.02592514452303629 0.9334526254606158 -0.3577626069087477 -0.0404770076713309 -0.9985696498028432 -0.0349323108683382 0.0404770076713309 0.9985696498028432 0.0349323108683382 0.005341845474849757 0.5749862201913398 -0.81814565407206 -0.005341845474849757 -0.5749862201913398 0.81814565407206 -0.574906489257205 0.8178669076457746 0.02400520751614118 0.574906489257205 -0.8178669076457746 -0.02400520751614118 -0.421387756392962 0.8001699473257764 -0.4268025470387568 0.421387756392962 -0.8001699473257764 0.4268025470387568 0.6075099102665565 -0.6169939087150959 -0.5002501629548846 -0.6075099102665565 0.6169939087150959 0.5002501629548846 0.6082797322516791 -0.7931780715012599 -0.02939922144152161 -0.6082797322516791 0.7931780715012599 0.02939922144152161 -0.02730706582291779 -0.4112336310983517 0.9111208618014449 0.02730706582291779 0.4112336310983517 -0.9111208618014449 0.04234098605252406 0.9984387177568578 0.03643305894571202 -0.04234098605252406 -0.9984387177568578 -0.03643305894571202 0.03222062748171443 0.3506876557753391 0.9359380317368676 -0.03222062748171443 -0.3506876557753391 -0.9359380317368676 -0.05359885155536436 -0.905109373875957 -0.4217868945733366 0.05359885155536436 0.905109373875957 0.4217868945733366 -0.6412398403612154 0.6027366805185808 0.4748894198557863 0.6412398403612154 -0.6027366805185808 -0.4748894198557863 0.4462003108871671 -0.2575534308846376 -0.8570714747346032 -0.4462003108871671 0.2575534308846376 0.8570714747346032 -0.01844543975861133 -0.3829315652906932 0.923592541143621 0.01844543975861133 0.3829315652906932 -0.923592541143621 -0.1011384811445885 0.5194155014906922 -0.8485154945214249 0.1011384811445885 -0.5194155014906922 0.8485154945214249 -0.1630305828156131 0.871816205858354 -0.4619064107257507 0.1630305828156131 -0.871816205858354 0.4619064107257507 -0.05106358717678178 0.3804744010172239 0.9233806042121655 0.05106358717678178 -0.3804744010172239 -0.9233806042121655 0.178902982933125 -0.909502291302828 0.3752323344443225 -0.178902982933125 0.909502291302828 -0.3752323344443225 0.1644525628000263 -0.9860484084502497 -0.02576607811121025 -0.1644525628000263 0.9860484084502497 0.02576607811121025 -0.3395235070082521 0.940104617936637 0.03044824334878762 0.3395235070082521 -0.940104617936637 -0.03044824334878762 -0.2081541630010026 0.9007482565618307 -0.381214405192373 0.2081541630010026 -0.9007482565618307 0.381214405192373 0.4170563673189221 -0.7630525398774261 -0.4937760705677763 -0.4170563673189221 0.7630525398774261 0.4937760705677763 0.36720841985559 -0.9296698343243465 -0.02952923186442408 -0.36720841985559 0.9296698343243465 0.02952923186442408 -0.1118294411162269 -0.4246407291739832 0.8984288659800619 0.1118294411162269 0.4246407291739832 -0.8984288659800619 0.1429901777364974 -0.8969709229870444 -0.4183263945612977 -0.1429901777364974 0.8969709229870444 0.4183263945612977 -0.1697446487579901 0.9848270794668116 0.03608847138488001 0.1697446487579901 -0.9848270794668116 -0.03608847138488001 -0.04028722686337445 0.392989375681737 0.9186600513535665 0.04028722686337445 -0.392989375681737 -0.9186600513535665 -0.4425101174830575 0.7807516343174299 0.441148140011712 0.4425101174830575 -0.7807516343174299 -0.441148140011712 0.3615447145108744 -0.3924531599859243 -0.8457339632687769 -0.3615447145108744 0.3924531599859243 0.8457339632687769 -0.1003791110580368 -0.4059871763102075 0.9083492977565748 0.1003791110580368 0.4059871763102075 -0.9083492977565748 0.3904613070520585 -0.9205045247519884 -0.01453917488421713 -0.3904613070520585 0.9205045247519884 0.01453917488421713 -0.2027938743593213 0.4136934196415589 -0.8875428998463166 0.2027938743593213 -0.4136934196415589 0.8875428998463166 -0.3965966468495452 0.9173871351526347 0.03334582378857478 0.3965966468495452 -0.9173871351526347 -0.03334582378857478 -0.1368383598079337 0.3784286616007553 0.915459999871177 0.1368383598079337 -0.3784286616007553 -0.915459999871177 0.4037435534212635 -0.8135795210505415 0.4184250303195815 -0.4037435534212635 0.8135795210505415 -0.4184250303195815 -0.2130408944280989 0.9762376935143398 -0.03966790973920272 0.2130408944280989 -0.9762376935143398 0.03966790973920272 -0.1082278509567285 0.9240489369501362 -0.3666337333069769 0.1082278509567285 -0.9240489369501362 0.3666337333069769 0.3281946322400866 -0.7677392652593321 -0.5503314491720924 -0.3281946322400866 0.7677392652593321 0.5503314491720924 0.2328783177023817 -0.9718833678048814 -0.03479092594844219 -0.2328783177023817 0.9718833678048814 0.03479092594844219 -0.1473896970475713 -0.3971277019566815 0.9058509069062251 0.1473896970475713 0.3971277019566815 -0.9058509069062251 0.3468643571967391 -0.8319756076699162 -0.4330146717476977 -0.3468643571967391 0.8319756076699162 0.4330146717476977 -0.2233698916078353 0.3809815401075 -0.8971950499308505 0.2233698916078353 -0.3809815401075 0.8971950499308505 -0.4038432049329347 0.9142219902761136 0.03329892378256747 0.4038432049329347 -0.9142219902761136 -0.03329892378256747 -0.1223518925781642 0.4012286904715316 0.9077695480269434 0.1223518925781642 -0.4012286904715316 -0.9077695480269434 -0.3151267980724777 0.8509676693573339 0.4201774944533978 0.3151267980724777 -0.8509676693573339 -0.4201774944533978 0.3363313341491097 -0.4604980154032345 -0.8214759956804354 -0.3363313341491097 0.4604980154032345 0.8214759956804354 -0.1477826541164828 -0.3878707196895589 0.9097893118463153 0.1477826541164828 0.3878707196895589 -0.9097893118463153 0.6420208181518405 -0.5915231226189216 0.4877598430240047 -0.6420208181518405 0.5915231226189216 -0.4877598430240047 0.65653122842572 -0.7542974888116372 0.001429851136826754 -0.65653122842572 0.7542974888116372 -0.001429851136826754 -0.2874144392910325 0.2414427372665864 -0.9268755821081055 0.2874144392910325 -0.2414427372665864 0.9268755821081055 -0.6582580876005819 0.7522645242817573 0.02818466986796277 0.6582580876005819 -0.7522645242817573 -0.02818466986796277 -0.2201120227169055 0.3382984877345638 0.9149343313331178 0.2201120227169055 -0.3382984877345638 -0.9149343313331178 -0.2116578245121082 0.3682512626748039 0.9053131904822851 0.2116578245121082 -0.3682512626748039 -0.9053131904822851 0.5633763436292277 -0.6828683868338715 -0.4650783393170105 -0.5633763436292277 0.6828683868338715 0.4650783393170105 -0.2983763754703027 0.1912008658930078 -0.9351009397080986 0.2983763754703027 -0.1912008658930078 0.9351009397080986 -0.6749332731683019 0.7373564838805623 0.02775774575891243 0.6749332731683019 -0.7373564838805623 -0.02775774575891243 -0.2877855553736377 0.2722912126200352 0.918170446947732 0.2877855553736377 -0.2722912126200352 -0.918170446947732 0.7965483089217491 -0.25331969064047 0.5489443741288532 -0.7965483089217491 0.25331969064047 -0.5489443741288532 0.8952256744516675 -0.4451837288087445 0.01955605805113435 -0.8952256744516675 0.4451837288087445 -0.01955605805113435 -0.3232824650890451 0.02811582924454463 -0.9458847434607676 0.3232824650890451 -0.02811582924454463 0.9458847434607676 -0.8886118728611181 0.4583255718674542 0.01751027077537788 0.8886118728611181 -0.4583255718674542 -0.01751027077537788 -0.9067575697746833 0.4213139181950124 0.01689058884340025 0.9067575697746833 -0.4213139181950124 -0.01689058884340025 -0.2922720892736487 0.2931609731637135 0.9102931778527843 0.2922720892736487 -0.2931609731637135 -0.9102931778527843 0.7420188942410478 -0.4512429732643064 -0.4957698454614613 -0.7420188942410478 0.4512429732643064 0.4957698454614613 -0.3148535364835675 -0.004871793888643465 -0.9491277659978646 0.3148535364835675 0.004871793888643465 0.9491277659978646 -0.9986403082252574 0.05205747715350662 0.002748428673804703 0.9986403082252574 -0.05205747715350662 -0.002748428673804703 -0.3382050028932526 0.1884684216310399 0.9220070661691697 0.3382050028932526 -0.1884684216310399 -0.9220070661691697 0.8102448085935331 0.1385233204286664 0.5694862946943025 -0.8102448085935331 -0.1385233204286664 -0.5694862946943025 0.850292163442842 -0.1027524680073306 -0.5161832689133712 -0.850292163442842 0.1027524680073306 0.5161832689133712 -0.3038564751406507 -0.1820363668605298 -0.9351652279973406 0.3038564751406507 0.1820363668605298 0.9351652279973406 -0.2901697835728679 -0.1816600180615158 -0.9395749754751691 0.2901697835728679 0.1816600180615158 0.9395749754751691 -0.9998129191060721 -0.01934078147536413 0.0002469018372241945 0.9998129191060721 0.01934078147536413 -0.0002469018372241945 -0.3506145778820866 0.1891215684172913 0.9172254085752041 0.3506145778820866 -0.1891215684172913 -0.9172254085752041 0.8136157480820356 0.08554507510620872 0.5750751729973943 -0.8136157480820356 -0.08554507510620872 -0.5750751729973943 0.8477309982821077 -0.1457122358244851 -0.5100197044062617 -0.8477309982821077 0.1457122358244851 0.5100197044062617 -0.2332418363908272 -0.3605133273120471 -0.9031214683459979 0.2332418363908272 0.3605133273120471 0.9031214683459979 -0.9227566296420373 -0.3850317492158972 -0.01645462085294679 0.9227566296420373 0.3850317492158972 0.01645462085294679 -0.3711117305023067 0.08354994880662744 0.924821869085065 0.3711117305023067 -0.08354994880662744 -0.924821869085065 0.6915525193962799 0.4814310474029508 0.5384972233105345 -0.6915525193962799 -0.4814310474029508 -0.5384972233105345 0.8981535665174812 0.4388266490999631 0.02741063646882945 -0.8981535665174812 -0.4388266490999631 -0.02741063646882945 0.8429352430834632 0.2038986239245007 -0.4978810371258556 -0.8429352430834632 -0.2038986239245007 0.4978810371258556 -0.2289950518611368 -0.3335850885685384 -0.9144846936432756 0.2289950518611368 0.3335850885685384 0.9144846936432756 -0.8927785079939059 -0.4501277377975449 -0.01820866083598725 0.8927785079939059 0.4501277377975449 0.01820866083598725 -0.3806718630014748 0.05862662374499314 0.9228498532845144 0.3806718630014748 -0.05862662374499314 -0.9228498532845144 0.6731402347726009 0.739007696052626 0.02738338009226562 -0.6731402347726009 -0.739007696052626 -0.02738338009226562 -0.1328738513841334 -0.4812144041162298 -0.8664740255134076 0.1328738513841334 0.4812144041162298 0.8664740255134076 -0.5162158849207206 -0.6859595176090008 -0.5128164392422929 0.5162158849207206 0.6859595176090008 0.5128164392422929 -0.3820861233216923 -0.03800548351507161 0.9233448855047532 0.3820861233216923 0.03800548351507161 -0.9233448855047532 0.4981736372697926 0.7158538915589526 0.489260904905847 -0.4981736372697926 -0.7158538915589526 -0.489260904905847 0.7240770488769371 0.517255732976564 -0.4562443796832387 -0.7240770488769371 -0.517255732976564 0.4562443796832387 -0.6700269848456324 -0.7418464818371532 -0.02697474679230343 0.6700269848456324 0.7418464818371532 0.02697474679230343 -0.3799114723477743 -0.07529745765768819 0.9219531257329924 0.3799114723477743 0.07529745765768819 -0.9219531257329924 0.2919749971374274 0.8457010469135147 0.4466993847051776 -0.2919749971374274 -0.8457010469135147 -0.4466993847051776 0.4366617916404663 0.8991652104182367 0.02878200991706404 -0.4366617916404663 -0.8991652104182367 -0.02878200991706404 -0.02177044887002021 -0.544129826311796 -0.8387185342377337 0.02177044887002021 0.544129826311796 0.8387185342377337 -0.2991009114274306 -0.8171307614867489 -0.492783891188994 0.2991009114274306 0.8171307614867489 0.492783891188994 -0.3640544368667302 -0.1638864704625395 0.9168454568775367 0.3640544368667302 0.1638864704625395 -0.9168454568775367 -0.3516856267179471 -0.196019897617879 0.9153651837916281 0.3516856267179471 0.196019897617879 -0.9153651837916281 0.5385161458900962 0.7373175566309818 -0.4078764289578351 -0.5385161458900962 -0.7373175566309818 0.4078764289578351 -0.4313189614731646 -0.9015982752540596 -0.03293180123551914 0.4313189614731646 0.9015982752540596 0.03293180123551914 -0.3161452063528133 -0.2763503626536033 0.9075696587928439 0.3161452063528133 0.2763503626536033 -0.9075696587928439 0.09038315820220927 0.9018744521072597 0.4224374005099746 -0.09038315820220927 -0.9018744521072597 -0.4224374005099746 0.2181619494371877 0.9753973184674988 0.03170859416906728 -0.2181619494371877 -0.9753973184674988 -0.03170859416906728 0.08967458377019724 -0.5583310478931445 -0.8247574855581399 -0.08967458377019724 0.5583310478931445 0.8247574855581399 -0.09608809114761942 -0.8715032637221102 -0.4808837074192855 0.09608809114761942 0.8715032637221102 0.4808837074192855 -0.2086381313968603 -0.9773338619956301 -0.03589780388732829 0.2086381313968603 0.9773338619956301 0.03589780388732829 -0.3037588754766067 -0.2968283103013384 0.9053306024722899 0.3037588754766067 0.2968283103013384 -0.9053306024722899 0.3354134538968336 0.865290934758583 -0.3725176682650289 -0.3354134538968336 -0.865290934758583 0.3725176682650289 0.09634526151574765 -0.8729893959564508 -0.4781287537170853 -0.09634526151574765 0.8729893959564508 0.4781287537170853 -0.2454519458640523 -0.3778207053344043 0.8927512850128885 0.2454519458640523 0.3778207053344043 -0.8927512850128885 -0.1068596453381972 0.9026835445539788 0.4168254245960288 0.1068596453381972 -0.9026835445539788 -0.4168254245960288 0.01341617214996129 0.9993634397870952 0.0330563389041718 -0.01341617214996129 -0.9993634397870952 -0.0330563389041718 0.1974038384609054 -0.5321711683649947 -0.8233016288833256 -0.1974038384609054 0.5321711683649947 0.8233016288833256 0.003027027676952878 -0.9993161318622146 -0.03685248571513117 -0.003027027676952878 0.9993161318622146 0.03685248571513117 -0.2410784854031796 -0.3871111001126082 0.8899585159125762 0.2410784854031796 0.3871111001126082 -0.8899585159125762 0.1343276141167968 0.9239282355531835 -0.3582076320142694 -0.1343276141167968 -0.9239282355531835 0.3582076320142694 0.2993722838353061 -0.4646129549562232 -0.8333732883636714 -0.2993722838353061 0.4646129549562232 0.8333732883636714 0.2850152925201461 -0.8250136651719049 -0.4879741133597926 -0.2850152925201461 0.8250136651719049 0.4879741133597926 -0.1571424745819219 -0.4017635371120054 0.9021597989987807 0.1571424745819219 0.4017635371120054 -0.9021597989987807 -0.3048747392502304 0.8512690426142484 0.4270742446621255 0.3048747392502304 -0.8512690426142484 -0.4270742446621255 -0.191661035085276 0.980913794752465 0.03277460746308981 0.191661035085276 -0.980913794752465 -0.03277460746308981 -0.06722178414629125 0.9289421994874978 -0.3640709020884793 0.06722178414629125 -0.9289421994874978 0.3640709020884793 0.2140686791785048 -0.9760684691549257 -0.03827458838877772 -0.2140686791785048 0.9760684691549257 0.03827458838877772 -0.1633917211133873 -0.4107405372276532 0.8969923949229134 0.1633917211133873 0.4107405372276532 -0.8969923949229134 -0.4114640890829475 0.9109562830814607 0.02925668657845718 0.4114640890829475 -0.9109562830814607 -0.02925668657845718 0.392675059128166 -0.358586445760263 -0.8468896379432878 -0.392675059128166 0.358586445760263 0.8468896379432878 0.4758242106397891 -0.7262213496936595 -0.4961792738699808 -0.4758242106397891 0.7262213496936595 0.4961792738699808 -0.07402654048899283 -0.4019009932307778 0.9126859607462723 0.07402654048899283 0.4019009932307778 -0.9126859607462723 -0.5074201901332889 0.7336684332419206 0.4519462143988402 0.5074201901332889 -0.7336684332419206 -0.4519462143988402 -0.2747979300910873 0.8774232036407563 -0.3932106551588422 0.2747979300910873 -0.8774232036407563 0.3932106551588422 0.4416148108064678 -0.8965736984884186 -0.03364464378123158 -0.4416148108064678 0.8965736984884186 0.03364464378123158 -0.08548628211920895 -0.423666707208808 0.9017752584609322 0.08548628211920895 0.423666707208808 -0.9017752584609322 -0.6983849305252001 0.5260925321892732 0.4852681077404427 0.6983849305252001 -0.5260925321892732 -0.4852681077404427 -0.652935709757424 0.7571546896547233 0.01979229287951628 0.652935709757424 -0.7571546896547233 -0.01979229287951628 0.4651313472448723 -0.2078324456462522 -0.8604989856745141 -0.4651313472448723 0.2078324456462522 0.8604989856745141 0.6654114949270703 -0.5535400797209197 -0.500820249751824 -0.6654114949270703 0.5535400797209197 0.500820249751824 0.005395287547259124 -0.3680561013165262 0.9297879312810859 -0.005395287547259124 0.3680561013165262 -0.9297879312810859 -0.000867225763679104 -0.3981886224855724 0.917303149914202 0.000867225763679104 0.3981886224855724 -0.917303149914202 -0.4894566363220897 0.7496441153331802 -0.4454951195092927 0.4894566363220897 -0.7496441153331802 0.4454951195092927 0.6864967735788914 -0.7266359314524244 -0.02687755546994618 -0.6864967735788914 0.7266359314524244 0.02687755546994618 0.0725868616834736 -0.3044345845642266 0.949763513319053 -0.0725868616834736 0.3044345845642266 -0.949763513319053 -0.8316075752541561 0.2226775441602132 0.5087666971281429 0.8316075752541561 -0.2226775441602132 -0.5087666971281429 -0.8847522436102832 0.4660615723940678 -0.0002795785034157092 0.8847522436102832 -0.4660615723940678 0.0002795785034157092 0.5016079384743974 -0.02021602861251859 -0.864858825616414 -0.5016079384743974 0.02021602861251859 0.864858825616414 0.8822555810296323 -0.4704188499675612 -0.01819877296036858 -0.8822555810296323 0.4704188499675612 0.01819877296036858 0.9073054664746716 -0.4200752144590276 -0.01826484881898978 -0.9073054664746716 0.4200752144590276 0.01826484881898978 0.07682261342699291 -0.3297455999359967 0.9409389594384412 -0.07682261342699291 0.3297455999359967 -0.9409389594384412 -0.6901848685364405 0.5152374056275222 -0.5081094991097458 0.6901848685364405 -0.5152374056275222 0.5081094991097458 0.4967362894971037 0.01610327605483461 -0.8677521208253837 -0.4967362894971037 -0.01610327605483461 0.8677521208253837 0.881137121676604 0.07683693444745683 -0.466576315631416 -0.881137121676604 -0.07683693444745683 0.466576315631416 0.121346200908773 -0.213182952753967 0.9694473313079507 -0.121346200908773 0.213182952753967 -0.9694473313079507 -0.8530883309270968 -0.1294128720969493 0.5054627663553852 0.8530883309270968 0.1294128720969493 -0.5054627663553852 -0.8141432837357056 0.1226372975117968 -0.5675656850154398 0.8141432837357056 -0.1226372975117968 0.5675656850154398 0.4880880001696214 0.1805403350483941 -0.8539176140067805 -0.4880880001696214 -0.1805403350483941 0.8539176140067805 0.9999911939194426 0.00358340787864473 -0.002184324047165417 -0.9999911939194426 -0.00358340787864473 0.002184324047165417 0.1346498631346914 -0.2158552630592423 0.9670966444815297 -0.1346498631346914 0.2158552630592423 -0.9670966444815297 -0.852543754197059 -0.09185104189736706 0.5145216548231503 0.852543754197059 0.09185104189736706 -0.5145216548231503 -0.8136703326963612 0.1551561998301619 -0.5602384700679308 0.8136703326963612 -0.1551561998301619 0.5602384700679308 0.4242136223232629 0.3566618937050531 -0.8323671643055735 -0.4242136223232629 -0.3566618937050531 0.8323671643055735 0.7885484681636336 0.4252011479454887 -0.4442919053309724 -0.7885484681636336 -0.4252011479454887 0.4442919053309724 0.1578814167796198 -0.1001769572785845 0.9823634945711617 -0.1578814167796198 0.1001769572785845 -0.9823634945711617 -0.7547596030705374 -0.4463957743418704 0.4806961142161715 0.7547596030705374 0.4463957743418704 -0.4806961142161715 -0.9002422811471575 -0.432446934138268 -0.05053201351000254 0.9002422811471575 0.432446934138268 0.05053201351000254 -0.784429404362836 -0.2204048515778357 -0.5797346039110642 0.784429404362836 0.2204048515778357 0.5797346039110642 0.9025741462529998 0.4302707163807931 0.01506722073999456 -0.9025741462529998 -0.4302707163807931 -0.01506722073999456 0.1694471870219152 -0.07902390383136461 0.9823659569801935 -0.1694471870219152 0.07902390383136461 -0.9823659569801935 -0.6778132556286053 -0.7334246779500521 -0.05155028872871112 0.6778132556286053 0.7334246779500521 0.05155028872871112 0.3277239054474204 0.4836963039014177 -0.8115632614839077 -0.3277239054474204 -0.4836963039014177 0.8115632614839077 0.6008326756885273 0.6729871147698903 -0.4313796925895602 -0.6008326756885273 -0.6729871147698903 0.4313796925895602 0.1681094028706255 0.02892216114368819 0.985343969008417 -0.1681094028706255 -0.02892216114368819 -0.985343969008417 -0.5960298095862601 -0.6811322263594015 0.4252144827016733 0.5960298095862601 0.6811322263594015 -0.4252144827016733 -0.6424561725011055 -0.5590930582546198 -0.524084934554244 0.6424561725011055 0.5590930582546198 0.524084934554244 0.6860325639933897 0.7271010793847965 0.02614080140545522 -0.6860325639933897 -0.7271010793847965 -0.02614080140545522 0.1672300435761301 0.06358661083851493 0.9838652628523872 -0.1672300435761301 -0.06358661083851493 -0.9838652628523872 -0.3992045197284531 -0.8338741797123846 0.381168734076357 0.3992045197284531 0.8338741797123846 -0.381168734076357 -0.4366474483440545 -0.8983639980873879 -0.04776120596331298 0.4366474483440545 0.8983639980873879 0.04776120596331298 0.21652768302515 0.5604449753332692 -0.799385509067716 -0.21652768302515 -0.5604449753332692 0.799385509067716 0.3958710000720266 0.8145634474200975 -0.4239959214769163 -0.3958710000720266 -0.8145634474200975 0.4239959214769163 0.1470166178175257 0.1606718982912375 0.9759972618737133 -0.1470166178175257 -0.1606718982912375 -0.9759972618737133 0.1367856755483046 0.1896587772198493 0.9722752836456687 -0.1367856755483046 -0.1896587772198493 -0.9722752836456687 -0.4363458210862009 -0.7642315505540981 -0.4749236376074457 0.4363458210862009 0.7642315505540981 0.4749236376074457 0.4488835511081195 0.8930107740742522 0.03217631010338277 -0.4488835511081195 -0.8930107740742522 -0.03217631010338277 0.09538016543152474 0.2729069538911774 0.9573005894493608 -0.09538016543152474 -0.2729069538911774 -0.9573005894493608 -0.1991257440922289 -0.911641678242569 0.3595252265568972 0.1991257440922289 0.911641678242569 -0.3595252265568972 -0.21763138543582 -0.9751835671834637 -0.0406643623904359 0.21763138543582 0.9751835671834637 0.0406643623904359 0.1020096596484588 0.5870233287360724 -0.8031174514714685 -0.1020096596484588 -0.5870233287360724 0.8031174514714685 0.1981179938194849 0.882839950676482 -0.4258437295704719 -0.1981179938194849 -0.882839950676482 0.4258437295704719 0.2257180373774269 0.9735631159368801 0.03501752261020089 -0.2257180373774269 -0.9735631159368801 -0.03501752261020089 0.08665528999423607 0.2887177158272826 0.9534846308585636 -0.08665528999423607 -0.2887177158272826 -0.9534846308585636 -0.22658225065359 -0.8704022707202611 -0.4371045307632571 0.22658225065359 0.8704022707202611 0.4371045307632571 0.1011007468646662 0.8940055806808013 -0.4365004704407433 -0.1011007468646662 -0.8940055806808013 0.4365004704407433 0.06443326429145652 0.3425219535590591 0.9372977466007442 -0.06443326429145652 -0.3425219535590591 -0.9372977466007442 -0.09417717869610834 -0.929341111713472 0.357009463588865 0.09417717869610834 0.929341111713472 -0.357009463588865 -0.1141361063721672 -0.9931842134820167 -0.02362344835770253 0.1141361063721672 0.9931842134820167 0.02362344835770253 0.05548436446878843 0.5705421072592388 -0.819391963069984 -0.05548436446878843 -0.5705421072592388 0.819391963069984 0.1183676936289435 0.9923371121115479 0.03544213637857988 -0.1183676936289435 -0.9923371121115479 -0.03544213637857988 0.06845085986894042 0.3516465771793187 0.9336268872206244 -0.06845085986894042 -0.3516465771793187 -0.9336268872206244 -0.1175175581890131 -0.9006103052869663 -0.4184384082851493 0.1175175581890131 0.9006103052869663 0.4184384082851493</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1518\" source=\"#ID1680\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1678\">\r\n\t\t\t\t\t<float_array count=\"5340\" id=\"ID1681\">-11.74144888926981 0.2995156568493015 -11.72844578741597 0.3612383321323039 -11.62607680371758 0.2695236410015677 -11.78256668186463 0.262761006242173 -11.65678044938733 0.2324514479488458 -11.67940949101347 0.1715944909997955 -9.580882603731697 1.421600639414946 -9.607195934743855 1.36255963073953 -9.727642328860437 1.456478716738787 -12.34296233652733 -1.662321588895963 -12.47259485116248 -1.563632893161546 -12.35690281990772 -1.592852254899214 11.25359972635966 3.202696558467046 11.12205437894896 3.192040233868029 11.22505410564551 3.256420738249801 -12.2778256741957 -2.055348678266946 -12.27481420880708 -1.991985827857275 -12.17174214833166 -2.08069444679817 12.57910007025483 0.03536161511213354 12.43937175444395 0.008946513143718278 12.55876004226043 0.08460807200294225 -9.467294573785217 1.521881094364595 -9.601346415461196 1.556031399693923 -9.586767854433372 1.616566234433712 -12.462725789786 -1.723326776848073 -12.46730567443074 -1.654941739996449 -12.33663307886079 -1.752777897535181 -11.28869336132121 0.4398648638747889 -11.28298616308152 0.5100510143314823 -11.17184969501088 0.4156940846380962 11.07615252924521 3.347637650004606 11.0612927033548 3.408852629792498 11.19269111039786 3.420577286670575 12.41561520551233 0.2612536600144755 12.41016093304932 0.3193238275237464 12.54904096458563 0.3483757592762649 -12.13571358259024 -2.203830549269758 -12.24023606917502 -2.116178483286911 -12.1236442051423 -2.141281075889086 -11.21175291259949 0.6206576612046281 -11.10526099853357 0.5963948490635626 -11.10146977004413 0.5256831566832035 12.42295638218037 -2.240499018688151 12.41762828509784 -2.188888247691884 12.57370146367941 -2.147123103745953 -7.586069925680303 1.949817941538308 -7.60819537041221 1.890715946886392 -7.749304143157143 1.988341492969443 -11.38058480781225 -3.271030873764528 -11.36067456409951 -3.337695502945139 -11.51496513825033 -3.237689075113913 9.522000295042211 4.628290408179952 9.462781273686264 4.668011820203072 9.633060442370404 4.683730091613124 11.76523208046429 1.72660165246162 11.71574001668296 1.774431773310611 11.86479566838173 1.780438597084393 12.26293617741474 -1.640409236288337 12.2600949049113 -1.712061773181668 12.11792521977338 -1.667086849452554 8.582894749084975 5.650800462674184 8.442122972975994 5.654527718153445 8.544366554184844 5.705255006519111 10.69429534297361 -1.561597904695199 10.52788443167712 -1.522357153209414 10.69630887454192 -1.489913897716416 -9.900225467786489 -4.636824579757597 -9.910425623077938 -4.574069523589055 -9.789317732973457 -4.656192700655551 -8.116123295485657 1.988761401734192 -8.101080489202101 2.058539639742051 -7.994956948560539 1.970766669297734 8.867639124559188 -1.423482573657848 8.682830784924246 -1.388297678149426 8.869004640289541 -1.35179908183861 12.4814838856345 -2.535243935387405 12.32361028046125 -2.572587378820387 12.46077931862412 -2.493028243144972 -7.467743502836397 2.038189770179729 -7.617401495150659 2.075532089734611 -7.608093276448374 2.136490070290303 -11.32310925696379 -3.341949109365313 -11.47003562461896 -3.307732454895078 -11.47779287200183 -3.242319126658382 9.345263057604573 4.996263702353766 9.470591739150775 5.05977166077629 9.51526332418165 5.013750705311483 11.69207919916437 1.956179677677225 11.80411877732831 2.016810328045327 11.84108299496973 1.962935924976196 11.53250658600702 -3.2937293863427 11.65661798818057 -3.244338195426174 11.66710759314982 -3.305456648502024 12.11873944609426 -1.665530933477226 12.26090874005484 -1.710506622428359 12.11573781677575 -1.737184806741658 10.69481208164027 -1.560248948535748 10.52640090788366 -1.59267802114744 10.5284012816735 -1.521007904880169 8.618093920705027 5.813962404226531 8.500860657116686 5.757708680955643 8.477340463340058 5.818095675446084 8.863835676057466 -1.43583079714488 8.67773387194017 -1.472342261358682 8.679026700309082 -1.400647969371447 -9.651361284927219 -4.665461375826346 -9.773549465450035 -4.584334530269455 -9.652501269993472 -4.603005449856767 -7.989509410617246 2.167613199549099 -7.878378916217077 2.149052074777905 -7.884060026655901 2.079338842195392 11.58286659727549 -3.207762407974214 11.717654063922 -3.218079582774465 11.60866230772046 -3.263443251872617 6.8024959949886 -1.315169183001223 6.604245192873673 -1.354082244872524 6.604863575770278 -1.282392355259058 11.56007032580767 -4.512516076480284 11.55093439552774 -4.467841717403029 11.72558156553137 -4.418324245411744 -5.32706318121881 2.330758983969183 -5.343308444112894 2.270707543166831 -5.500806707047188 2.370979239898025 -9.826589170379434 -3.974607359006392 -9.81029134104285 -4.039041553451645 -9.976624520188517 -3.938214189792536 6.876764242952964 5.946212405802218 6.819011396469598 5.982111922878704 7.011396664271641 6.003770116684303 11.71583660752506 -1.725252336186162 11.84708922395542 -1.776039007761535 11.71371726709966 -1.796926660236255 8.785357077343116 -1.645965651398126 8.920027470748808 -1.702637621248604 8.78224832741803 -1.717616460982631 11.84807912321745 -1.708398896539467 11.84459315430042 -1.780039199584147 11.71334063005863 -1.729252380568548 6.647801241743226 6.377228777611297 6.799473637701535 6.443314285184105 6.839782541090891 6.40100200948506 5.442131985907679 7.094449136178818 5.485940593849181 7.041522291144609 5.328097840241385 7.057449095653953 4.42124092548154 6.964040605521635 4.592010374627861 7.032737066621546 4.621381257541662 6.990114533605977 -5.658289412791666 -5.80177853690927 -5.677452900271285 -5.74116267308825 -5.533056881975005 -5.815300248078828 -4.171628216484647 2.511730079263448 -4.308183490024966 2.524016656431328 -4.287791378959351 2.592006132494689 7.243050797876385 -7.790876490447768 7.224362489216523 -7.848287411221677 7.092176616415644 -7.819598782151662 2.096998671710746 7.340669616702345 2.280459009696378 7.411437032476648 2.297043273553935 7.366325298233281 6.797944273614725 -1.332168338789559 6.6003112185224 -1.299393883842578 6.79851282549804 -1.260482466016632 11.53173238421809 -4.690202647446402 11.35516371564881 -4.735306374773988 11.50440471180585 -4.654589799965487 -5.259056507240328 2.356389715352195 -5.418447200525968 2.395472743371997 -5.416163797169103 2.457040261511123 -9.733313145750167 -4.008711148135379 -9.896791658206171 -3.971258390226221 -9.900126551066935 -3.908375954930581 8.902223862974255 -1.659890107778779 8.90028411629473 -1.731567578837551 8.765611732637771 -1.674898535885492 4.886278355500735 -1.510110149169463 4.883899426680693 -1.581778252261581 4.731457784751854 -1.519715201032139 4.628567068798929 6.584826676335769 4.579836239075592 6.621244609343353 4.780336367366727 6.645547777093944 5.628892475123588 7.188550491108445 5.500078713141996 7.149740799693046 5.471304793045595 7.205970412741817 2.299889899483088 6.950322569585003 2.262372408423257 6.988786366947189 2.462758520709198 7.012736027295794 -5.377745294550071 -5.720513876955472 -5.522807977343678 -5.647186116354863 -5.38631330642562 -5.659668017166704 -4.060375952524813 2.671271332259083 -4.069921487613713 2.603857562684286 -4.185656402419397 2.684515495011054 7.396324549621735 -7.608717857458358 7.529531508741336 -7.634317416186927 7.397141033844306 -7.663371343043143 4.73128336449428 -1.519980003883965 4.883725038692171 -1.582043006063475 4.728976788938931 -1.591648050335046 -0.2623939151831403 7.192021975820668 -0.2882031907343582 7.234366400791881 -0.09856620857761261 7.255684692062035 4.600984050270906 -1.25497677049042 4.401147185348393 -1.294499925841812 4.401034565651177 -1.222812712557103 10.34843091374799 -6.102023026030048 10.32865731907952 -6.063442410896943 10.51594670131318 -6.007619749890765 -3.024566038011676 2.614173059664148 -3.033320735940625 2.552965586811446 -3.199731901498446 2.655063304862684 -7.869327831525308 -4.396665505132675 -7.859232112623701 -4.459099537014789 -8.029118937316149 -4.358607758926194 2.80338546977934 7.817560174019732 2.651174619007168 7.793309069816327 2.625530491847687 7.844952543933458 2.501163748330692 7.639824342170074 2.545905629507471 7.590475487409764 2.367395524972351 7.61508978971215 -7.789523853502827 -4.41638889590269 -7.963648209580031 -4.377043011570966 -7.959731909486614 -4.316234069489483 -1.452510394040529 -5.753264390215425 -1.594887257913027 -5.744142072134474 -1.615132328423253 -5.685031944660874 -0.6805255439388658 2.446925120460911 -0.8355996490348416 2.454796094465432 -0.8154635459344278 2.520751271812972 2.206032798767428 -9.232251956037208 2.177164481613696 -9.281967985823835 2.030900249366722 -9.245132810952153 1.18078117221213 -1.512357968187159 1.006539800950368 -1.445972828189044 1.182269970665983 -1.440676522659683 -5.699138178084543 -4.723544166976328 -5.874720303201966 -4.68374440348691 -5.862301994908608 -4.624578427908912 -0.2472358015268761 7.56848280017925 -0.4366062880899663 7.545745711628018 -0.2519689592964963 7.617707515150494 4.603779124356972 -1.244203004424983 4.40382998669326 -1.212037611753788 4.603675541672037 -1.172513637404377 9.996371707486201 -6.299288350336639 10.14814460439911 -6.219257254932239 10.18623724756709 -6.249139634979684 -2.924899355663001 2.658345360810463 -3.085560799920206 2.697903569888154 -3.090838590846902 2.76091732316388 -0.2425418896444004 7.759050048208717 -0.2033617495848006 7.71296278464953 -0.3965134596743597 7.743115340900113 -5.797455951671555 -4.72888951395918 -5.795755319060717 -4.789761749946327 -5.958540525269064 -4.690410918465032 -1.346012285661594 -5.572166732864312 -1.33801683863705 -5.632068485196453 -1.500993267249134 -5.564361484786845 -0.5873198502714261 2.598794170090538 -0.5950487446150343 2.533777516879111 -0.7296950531256075 2.607932517163409 2.39871123418593 -9.091707786376636 2.546232638608836 -9.125297466938982 2.392123971019934 -9.141003364633905 1.178743975734375 -1.515679005070357 1.002977098907413 -1.520986627162868 1.004502142666655 -1.44929461518139 0.124197980807792 8.013735527304492 -0.0508325942405391 8.000322499871041 -0.06794789182396233 8.047632544815455 -3.462659446866571 -5.088523691965518 -3.469555344496901 -5.148244870947446 -3.616068461591926 -5.050932896824789 -3.190935871667016 7.152346912506171 -3.2075366039817 7.19995355679202 -3.036510958986105 7.21606128078029 2.184128383719081 -1.195890384387676 1.993906149719048 -1.23448887110764 1.993099842741572 -1.162802263894674 8.85340002942193 -7.37705073251813 8.820881506475359 -7.343338260105415 9.010989805826339 -7.284395031560132 -0.3721558219405674 2.922912716702614 -0.3741360009975697 2.859781547657486 -0.5389588898993131 2.962843513785378 1.841010860811883 -5.339151004110392 1.685044987527295 -5.33275759033376 1.669306136396076 -5.273812819038381 2.284246773658898 2.199535898117158 2.114348079412392 2.204579909077931 2.130035244899707 2.268703560682782 -1.574382956317714 -9.07560624458185 -1.598843878068589 -9.12128588575635 -1.766745344757587 -9.080675506967056 -1.929664949831288 -1.494754635054952 -2.12136419378335 -1.425536299440526 -1.928892107442987 -1.423055163383718 -2.789005220763803 7.608930183053209 -2.759875383825831 7.565405457637623 -2.958477020432813 7.598235637733082 -0.2305862254098634 2.984710626421055 -0.3835328563344093 3.023449877844294 -0.3947774450083669 3.088394675990279 -3.360529271533014 -5.074723276154611 -3.527773611387869 -5.03589488259901 -3.507442583608847 -4.977785405454979 -3.164103394036962 7.498919628037291 -3.334948320080214 7.481665859646864 -3.161665334791502 7.554469576134271 2.141946816386589 -1.347016227446665 1.950914292275701 -1.313942341068258 2.141550528157461 -1.275684769070103 8.367545931313082 -7.521889161878075 8.510904523052702 -7.443822241932844 8.560669073191862 -7.469360101513356 1.935564192398618 -5.150695691254837 1.937625305694038 -5.210663637304537 1.765664580042745 -5.145743430516593 2.352257450953568 2.340008797729845 2.35030451613772 2.277053980511773 2.196298392948655 2.346504281828393 -1.436569806362055 -8.957979159587007 -1.267486835270482 -8.995433275758586 -1.437147823229758 -9.004116153599394 -1.929011731256789 -1.493625859443813 -2.121456364780773 -1.496098091524942 -2.120710804885195 -1.424407231915603 -2.396398774805084 7.919002447977963 -2.588716161691157 7.912445480916588 -2.593738818145487 7.956244148618748 2.84725765789131 3.15343715271799 2.849139194257781 3.087909424565146 2.696417707258635 3.191008792351492 -0.653755907212582 -5.529349150344372 -0.6675606502791859 -5.588633021257145 -0.7923726897496097 -5.493801660748249 -6.51669874472976 6.504786669363671 -6.531014767564402 6.559216844638987 -6.379514552670415 6.56676647444814 -0.9922128335761016 -1.328294778651259 -1.165643109812238 -1.363229300725369 -1.166513227596551 -1.291900445344396 7.108951019253105 -8.425929485828988 7.06372407601108 -8.395615705091698 7.24391227245696 -8.335699164961863 4.573621223592019 -4.916651511719975 4.411314280187598 -4.911262491498004 4.403269182855177 -4.851607402140906 4.904112069894061 1.918793779259097 4.727402268474455 1.922791412813862 4.736237152207083 1.985380271621021 -4.437798329623791 -8.397316982537653 -4.451040071313446 -8.442264935614094 -4.637930829928404 -8.399912369502895 -4.597358119168579 -1.507892447416386 -4.797520813419397 -1.437615233207941 -4.597312546022032 -1.436199197686443 -5.25814206742687 7.196860485896443 -5.241338446088387 7.154917703844793 -5.434563461629423 7.187607580935707 6.497323518171333 -8.52474281684847 6.622369366610961 -8.44848361847532 6.680889858458037 -8.471549336480635 3.015012548645007 3.202968935163313 2.876850300405353 3.23959512920371 2.863088353439498 3.306794710839682 -0.5529586887712751 -5.517447700459916 -0.7041704637670615 -5.480869536733048 -0.6782037517688422 -5.422970305899322 -6.431651721616982 6.769318716729861 -6.583112641813516 6.761295992214714 -6.426791496494857 6.829938492278095 -0.9795284992144193 -1.290583599234043 -1.153827927395088 -1.254186403510166 -0.9824627614352688 -1.21896596610352 4.64657151577039 -4.760996021544277 4.640355262090291 -4.821849173762274 4.469828209252315 -4.757089485762245 4.950214427835618 2.045401205283817 4.955626831047628 1.984088816903914 4.787915037566915 2.050929208458205 -4.182367516991635 -8.341623084630752 -4.358971374696691 -8.347879702256856 -4.370280096107651 -8.302167619387358 -4.596201381844119 -1.505827281507136 -4.796353063114546 -1.5072360563653 -4.7963637397194 -1.435549474411177 -5.057470471956677 7.582553290774086 -4.865669217241129 7.545031703597378 -5.065817293544431 7.540918553991048 4.957591516893525 -9.323477817304287 4.903639879733459 -9.294322505478187 5.067308156413816 -9.234710711719869 6.654209712705845 2.946736603795653 6.654873907429679 2.878672557132365 6.522398766810107 2.980568470682666 2.923934359186434 -5.922054866367398 2.907208536146099 -5.982025405549064 2.802982723945541 -5.889461530968069 -9.802638322290378 4.800814161494554 -9.820299511097669 4.859944077207221 -9.684135151580561 4.857534280005362 -4.860752889845385 -1.41028527103227 -4.864187674367006 -1.338681412253571 -4.70940169383392 -1.379459452976369 6.958807523722374 -4.563540491940228 6.799021687318941 -4.557461396095697 6.799650798308866 -4.496414082661399 7.284856738574284 1.609208457925939 7.109567093749364 1.613872955632837 7.110902738525677 1.675324021364 -6.789442135413402 -7.534503654495818 -6.788979414593166 -7.581071930070149 -6.986459445370556 -7.538395863380834 -7.008129643592699 -1.549175893199101 -7.205871408085209 -1.479708683959871 -7.008829431586213 -1.477491424499945 -7.832844768012574 6.298513577097724 -7.827612006397824 6.256565743114188 -8.006139552828646 6.285788516270243 -4.809665896933416 -1.209971681952114 -4.657252871414563 -1.179092909372824 -4.654884380676176 -1.250760207850114 4.210688179725525 -9.378079285201636 4.311158735613041 -9.302915101020057 4.378167916048067 -9.325424874845838 6.697864003470544 3.055986178291118 6.829321579968937 2.953277954181535 6.708648164460842 2.986503354732487 3.065895121767051 -5.887984999060847 2.933787341464837 -5.854709724497033 2.960982918963832 -5.795902234497583 -9.670129115792346 5.037702401030357 -9.806288946486646 5.040265670107184 -9.671903276790584 5.103116196075329 7.043136576742679 -4.40595530181414 7.028554200167543 -4.468134874763893 6.869188407948853 -4.401316131635946 7.352803372952859 1.769272242920003 7.366683665009312 1.708971074642476 7.193031605693971 1.775576025144588 -6.565620979244169 -7.515410889788616 -6.740790494041411 -7.522325461626006 -6.764030400945428 -7.475491577683311 -7.00044973843489 -1.535394491632223 -7.197508846279785 -1.537620689163504 -7.198189008208616 -1.465922887936483 -7.639853404915388 6.727583692399423 -7.462811141342913 6.693220984734914 -7.659634417423792 6.685590613259228 -9.091993175251236 -1.400163686848697 -9.095104423048859 -1.328513963169547 -8.957198678408712 -1.374794444840026 2.088802938963234 -9.997176616541324 2.027730622655659 -9.965915446612344 2.167946043729305 -9.907699787770394 10.37420003917934 1.776465948431914 10.3674006851155 1.706671799040516 10.2568571852293 1.805140932588809 7.332845110279943 -5.645878000589251 7.32011928773478 -5.707650147655692 7.225554091578649 -5.617044665746957 -12.00365085640907 2.103529000028071 -12.11083833930589 2.056083463161218 -12.13936301001261 2.117543901426363 9.128422547300703 -4.167615688441376 8.979583680000857 -4.159240890501897 8.988062650575198 -4.096364795214314 9.62942118449809 1.180079220242551 9.468566151109352 1.187702421762954 9.462964868310205 1.248825602015191 -8.856260462870637 -6.481852542666997 -8.844030139595029 -6.531199063870697 -9.039758192796155 -6.490164318717562 -9.231914109724617 -1.608956791029672 -9.418010000617326 -1.542047426818185 -9.233337730757027 -1.537265740118989 -10.55432641586378 4.272124490870982 -10.55468275467456 4.227341829008037 -10.71373661621766 4.247774287076543 -11.96096458773688 2.293891907884383 -12.09652153339656 2.308807428075515 -11.97451007278699 2.360528953007108 -9.095146740151805 -1.328592620864423 -8.960384110906421 -1.303225258190149 -8.957240991936562 -1.374873095942348 1.094721441473835 -9.972217113667822 1.171234339606149 -9.896583233264874 1.23975293336472 -9.921829482104302 10.39408689113141 1.80897667360674 10.5034567901416 1.709699847662922 10.39601587426526 1.73818566891451 7.483868840123264 -5.591557105054264 7.36655530723886 -5.562501044965872 7.388357740887591 -5.501567722421501 9.21742561308921 -4.018882356122719 9.195921656679007 -4.082676604849426 9.055290784876068 -4.011757143174085 9.629174249886784 1.255980265621598 9.646737705419934 1.195861539282453 9.480371447671427 1.2647426972968 -8.675520694219362 -6.523252221111428 -8.836062699078173 -6.534223681332305 -8.872044167421587 -6.484641757133002 -9.250791470911054 -1.642268815319364 -9.434490888544763 -1.647091110091293 -9.436893779928141 -1.575370499087178 -10.45707069175856 4.726532492156542 -10.29913629310245 4.701291922158695 -10.48184197192814 4.679613162712742 -12.63977616208932 -0.9273837207853625 -12.74979171327828 -0.9632254569319163 -12.78919055579869 -0.9032802440668931 -12.12116219307873 -1.481798284927145 -12.12450508476186 -1.410156043194183 -11.98906089864303 -1.462353739325835 -2.535001836699398 -9.906907097943615 -2.412670307475611 -9.853889246526428 -2.478112408157837 -9.946148530229237 12.50865967383724 -0.2513612785534403 12.49146251114397 -0.3208641598353222 12.39295065094641 -0.2289750108097736 11.31895732277467 -3.810554978819632 11.31814963420504 -3.873852936035063 11.21343409370321 -3.786668892533225 11.07707933209384 -3.550728295677646 10.94469483375759 -3.538567788386231 10.95833133003168 -3.473446396453449 11.63106600647887 0.2061548452155761 11.48698905095698 0.2180093359482591 11.48046761016169 0.2794816087649741 -10.6712569807544 -5.117824792180593 -10.64809699011871 -5.171932325189414 -10.83379115271743 -5.133620797087398 -11.27988741507947 -1.748918738247703 -11.44541448108541 -1.686180825741681 -11.28293958390806 -1.6772134093654 -12.39938061167506 -0.4161167486264854 -12.38865371823923 -0.4662161340696799 -12.52963891058665 -0.4659498291942053 11.30927551074504 -3.664382577826464 11.41503851120376 -3.75078062260317 11.29980337060023 -3.727178829093584 -12.66463773237975 -0.6781409895137429 -12.64104808831509 -0.741897834317016 -12.79002850106259 -0.716185648479387 -12.12526583663069 -1.411368076138394 -11.99325727439361 -1.391927485522272 -11.98982170169331 -1.463565854456969 -3.632906423484318 -9.660405237300248 -3.566552739560311 -9.582546796987295 -3.505217974087447 -9.615885002960656 12.52991061831078 -0.3724242446203644 12.42393325626139 -0.3498166024465829 12.4323418599017 -0.2799144889856022 11.15233775538905 -3.421362161783144 11.12729216168632 -3.487077713208864 11.00819875187688 -3.410125439206657 11.65777484585111 0.2767919104626061 11.67564296320735 0.2157896464781605 11.52550440551939 0.2896976605287122 -10.51807316836586 -5.240924733950831 -10.66130814058692 -5.257961011479553 -10.70453960265825 -5.205009393716994 -11.26384167887985 -1.721771597922077 -11.42721805654077 -1.730696341314952 -11.42936266179998 -1.659023754208922 -12.52972168922306 -0.3846057967100768 -12.38873673943226 -0.3849423132242902 -12.53591580490833 -0.4398196182138159 12.62792554990162 -1.101263352783651 12.6400791714095 -1.163773215646772 12.51119708843168 -1.083369849221743 -11.86485453032099 -3.402588128043231 -11.99008255230615 -3.427512120177802 -12.03463162676741 -3.371110583381843 -12.58964605089722 -1.427822778329626 -12.59259175567948 -1.356170908843144 -12.44489492035745 -1.414216302568857 -9.383061769334239 -6.801552598409037 -9.256724540624576 -6.768127164853158 -9.352222490927115 -6.854946803153172 12.41861655384095 -2.060790323269516 12.39461041287445 -2.128417416854343 12.2910786336016 -2.044728136316965 12.45813533263003 -2.402572675965091 12.34280676518138 -2.385298577056727 12.35654189842645 -2.317549214513047 12.52165489348191 -1.616972652003023 12.64858877083594 -1.697364788690704 12.52305040564574 -1.67956377972338 -12.08278393720486 -3.202849801472213 -12.05594895768474 -3.262135795159361 -12.22298998974308 -3.229226508116268 -12.6516029425873 -1.773830985726373 -12.50857597536363 -1.75963628194757 -12.50568850042542 -1.831292728905742 -9.343902537534031 -6.935784564243342 -9.257470007907044 -6.861887306191102 -9.215933138648033 -6.906660176224864 12.36268158078461 -2.196490795645535 12.2456680767882 -2.179789116329019 12.25976053359167 -2.112336626754983 12.50719410694841 -1.024809426739362 12.6368248416923 -1.104464511988787 12.50950434925755 -1.087312927530483 -11.96484813240372 -3.218363235038317 -11.93796267029835 -3.27703910065273 -12.10709183690796 -3.243472356547868 -12.59326632727019 -1.357352994966052 -12.4483492725467 -1.343747833019326 -12.4455687913008 -1.415397285402063 -9.877332938997045 -6.199439506866744 -9.839047067623984 -6.245437223394697 -9.968073484456209 -6.271748555655978 12.51067197777951 -2.264394422211805 12.48707835841465 -2.332238428219439 12.38479057784987 -2.247731725578681 12.63240496506322 -1.701099363938241 12.64351064881452 -1.763772357297994 12.51738461037265 -1.682597194654001 -11.98937488519044 -3.412015789481183 -12.11259730909406 -3.437965774524124 -12.15705428745152 -3.38118091886831 -12.64844737687594 -1.844992647812353 -12.65133571213523 -1.773334687458416 -12.50542168328711 -1.830797080135709 -8.656578494107571 -7.45388394231253 -8.531792649229395 -7.417193489479274 -8.621547105244462 -7.505938558919116 10.97555340259266 -3.12495378456293 10.95065784997287 -3.190445665850969 10.82933501696498 -3.114233826382925 11.47346684383802 0.7713484604645637 11.49162006441407 0.7104710682554059 11.33940731064752 0.7837407097749916 -10.33527373714022 -5.153424382142408 -10.48058855160338 -5.169670767153617 -10.52340699636314 -5.117177205175353 -11.04069175363465 -1.302988737267793 -11.20783564497405 -1.311353676934393 -11.20985138859328 -1.239688386468351 -12.48444414933543 0.491694038411598 -12.34128613440473 0.4874768722513266 -12.4945254589186 0.4372881367572089 12.42541345905517 -0.4991480218042001 12.31989503692353 -0.4758992407401852 12.32742995315252 -0.4058124407485412 10.99733374286901 -4.265374068443967 11.10124592985135 -4.352311553958974 10.98646045081967 -4.328072274064161 -12.66567049967682 -0.5787927298188667 -12.64275324487363 -0.6430002116656972 -12.78990107422398 -0.6182692529406896 -11.91816445190107 -1.816697026754288 -11.78657867307373 -1.796639591553614 -11.78325237076993 -1.868285798063717 -3.03661008545884 -9.886142970834346 -2.970469711943867 -9.808508856148313 -2.907759085318206 -9.840687205965677 -12.35686802520185 0.388155113470278 -12.34850347190673 0.339079343109507 -12.49170032758256 0.342381093573635 10.88906956943895 -3.269372934687003 10.75490927218324 -3.257674969762436 10.76814069664601 -3.192774596174574 11.44305494885871 0.6971207847463162 11.29698743446772 0.7084441200533634 11.29039165657002 0.7698080386748657 -10.47450039479497 -5.064020869488842 -10.45348956660261 -5.116971269781486 -10.64094982682822 -5.078626965614672 -11.06949987109534 -1.351997602225283 -11.23866903046987 -1.288713004914383 -11.07302684333547 -1.280265968585814 12.39289100820223 -0.3836486901399827 12.37672940311273 -0.4532790525142293 12.27776342596203 -0.3605871649456335 10.99680138746255 -4.410459568927757 10.99459695654076 -4.473688554938871 10.89173243654458 -4.385983431962557 -12.64852390106491 -0.8453489149761317 -12.75762377908674 -0.8824337353252709 -12.79607724188367 -0.8221612998089154 -11.91438449032938 -1.887684993837084 -11.91776011481119 -1.816045856628485 -11.7828480176952 -1.867634602068566 -1.933703828158792 -10.07868929536656 -1.81026501520841 -10.02473356046239 -1.875686140215478 -10.11676003594861 -10.17706018306459 5.097687172114565 -10.01725217847693 5.071354279007315 -10.20095668611738 5.051879504055433 8.995147568145498 -3.696204126959678 8.974272125570424 -3.759849373325496 8.831458980904374 -3.689412356531054 9.400596252401385 1.682104356206595 9.417770529397334 1.622021736905093 9.2502975424471 1.690531282780614 -8.45640697574469 -6.382028951600566 -8.619824479915039 -6.392241901847838 -8.653110732555769 -6.343341259016498 -9.038068919105529 -1.24788696516011 -9.222240593653645 -1.252393929910638 -9.225225480908765 -1.180647070927984 10.05675776997463 1.643108930239682 10.16820728874696 1.543330011735562 10.059810790726 1.572368137454234 6.998934761922653 -6.035054778172777 6.880632778123195 -6.005502360400557 6.903312709457032 -5.944818003328651 -11.74457042749066 2.489837794344858 -11.87918610599331 2.503635272383705 -11.75613173818142 2.556659312516994 -8.670913047531144 -1.724799554574812 -8.534977760678501 -1.698829678135716 -8.531851816781167 -1.770475826390209 1.485425508101299 -10.06843254090519 1.564093993658654 -9.992824421600794 1.632754902427563 -10.01762387632426 -9.02391560484867 -1.22302474044927 -9.21106794281592 -1.155777571130257 -9.025790632366473 -1.151290994180673 -10.27446063735071 4.690293434642577 -10.27490244014704 4.645887228578312 -10.43582367873811 4.667623486146511 8.913467909195871 -3.838523047499619 8.763137088026813 -3.830458369733087 8.770889745621997 -3.76779204998402 9.360019475549045 1.568404717229265 9.196334975332707 1.575493977360676 9.192263655233109 1.636484690979623 -8.661253801899644 -6.366194588792125 -8.649440463393031 -6.415375118327732 -8.845249100216865 -6.373972631867829 10.03340020791131 1.599414314214787 10.02750044884798 1.529709581156705 9.914903397122924 1.628687998814944 6.853934287475052 -6.079798110897198 6.840378967730652 -6.141342012782307 6.745636531592738 -6.050532874361013 -11.798215440735 2.243726706561286 -11.90627848130967 2.195688543891689 -11.93298986374412 2.256529284951512 -8.621247131419645 -1.706807212065337 -8.62392013129776 -1.635202834720432 -8.484864646119997 -1.680889930087116 2.435780704926944 -10.0619895946401 2.374970751312699 -10.031181497431 2.517677819352089 -9.972776275313359 -6.764268467558409 -1.147253245800262 -6.961689712012028 -1.149343042150286 -6.962895703967666 -1.077600405002238 -7.348261144312024 6.98402052889424 -7.169409761167305 6.949110522036535 -7.367288455792304 6.942211602050309 6.794298856602808 -4.063250246811537 6.780510794048428 -4.125271320167731 6.619619264772761 -4.058767166544976 7.102789637265532 2.135591705515717 7.114675123131672 2.075236888191242 6.942343096858249 2.141722453699808 -6.332418529825498 -7.359341531255688 -6.506967826071922 -7.366219647931042 -6.529785341266063 -7.319498210145622 6.430823141387458 2.750723014481685 6.562552201241535 2.647755997665314 6.441537606303928 2.681374281013077 2.644283802694815 -6.225210952991415 2.510218440309529 -6.191554350243303 2.537567006580673 -6.132915613534858 -9.355826973640905 5.036597614380479 -9.492855318043128 5.037883858320361 -9.356904150321803 5.100959264180673 -4.494624287318655 -1.525973817509648 -4.341150799821101 -1.494621520714359 -4.339576505329961 -1.56624606056034 4.472284172518158 -9.457221279901232 4.575456510418413 -9.382123781945879 4.64194587567867 -9.404522966263153 -6.562998102176331 -7.400945008980378 -6.563966135535728 -7.447263729996825 -6.760382188291946 -7.404611872568815 -6.753648041943365 -1.128215647802435 -6.952271945189014 -1.058556925125039 -6.754216078794794 -1.05651140982454 -7.547955162615296 6.577112494790191 -7.541697627712216 6.535292898393608 -7.722052059055042 6.56503499319368 6.718925135536847 -4.211698638346738 6.558466337379583 -4.205769742937711 6.558213828802286 -4.144925359838098 7.057051119940247 2.006429283631081 6.882381850272501 2.01105322098368 6.884512304638858 2.072582115892741 6.169857353068333 2.527969920420695 6.170038855887454 2.460789918122341 6.036112087882685 2.56198727054916 2.67862509952272 -6.154060816581917 2.663999153976167 -6.213608002844778 2.55719983182038 -6.121371755901471 -9.482021656755968 4.822189384605398 -9.498751468852149 4.880856389207573 -9.361722204302287 4.879632311053638 -4.528751805469526 -1.685335543553132 -4.531103428842284 -1.613666035805749 -4.376050928750205 -1.653927036019258 5.235676004327856 -9.372783672994176 5.181000303094324 -9.343697319571449 5.346725306317451 -9.283745814227659 -3.902345644681797 -8.188450922791049 -4.078676241945887 -8.194789082512166 -4.08867326440851 -8.149136522546895 -4.327690351277358 -1.088238499736795 -4.527601804844657 -1.089680638999548 -4.52746346555077 -1.017975091231807 -4.79947061981522 7.78193419980953 -4.606635102665683 7.744276694443797 -4.806417106789312 7.740181965700497 4.387417903032164 -4.407854659546714 4.382133547516519 -4.46855719281075 4.210971058523595 -4.403936426526169 4.681718741610681 2.442432361484705 4.686367937986903 2.38098940092198 4.519706775186822 2.447973052733856 2.476831900306799 2.716574320402483 2.335078071260506 2.753282953091385 2.322415237819073 2.819720465299218 -0.8495766814528855 -5.774371647432403 -1.002707635119836 -5.737629929984101 -0.9790738337904092 -5.679901341697414 -6.071758205456579 6.677088089301477 -6.224041331265969 6.667414535635049 -6.066577875337789 6.737074892068213 -0.603000168508987 -1.600932722750944 -0.7793963174765101 -1.564909228730366 -0.6045114858098177 -1.529249202034462 6.70547068815338 -8.606727274878164 6.832839897149201 -8.530298598614294 6.891944206870454 -8.553411110576478 4.637206991234515 2.320151978438376 4.46076634823816 2.32417045170247 4.470391535050927 2.386897525562452 -4.161879116041738 -8.263382461045596 -4.176476253040675 -8.308291472603296 -4.361769972694257 -8.266061222019705 -4.336992906053219 -1.104783608457802 -4.536768711631513 -1.034524935495792 -4.336927146500251 -1.033097672776584 -5.001450248918326 7.419336624268841 -4.983329668157889 7.377315062324037 -5.17758152973672 7.410160257254966 4.298966063716758 -4.588667483190155 4.136946941045659 -4.583257838637099 4.128020234244661 -4.523692774115456 2.484855667067577 2.789012963088577 2.486445910335214 2.723714722672173 2.332074113184158 2.826902418716778 -1.046989673823427 -5.847260349220556 -1.060382942890412 -5.906539020698793 -1.189097759635383 -5.81140936995679 -6.146239914780912 6.392685852270479 -6.159389527583137 6.445813851573554 -6.007048796865194 6.454908809726416 -0.60076057330336 -1.59410819447996 -0.7756371006096985 -1.629763143934852 -0.7771564598577757 -1.558083905279896 7.301209059354632 -8.484636073484849 7.257233861067239 -8.454047762899966 7.440374990276014 -8.394007409282501 2.06803911632309 2.737769939167325 2.065327229402503 2.674623546000769 1.91312958157923 2.744481654770203 -1.085763499124732 -8.796770273188072 -0.9189585077525481 -8.833920236310153 -1.087378176596949 -8.843106727841482 -1.626913881604018 -1.092671610911676 -1.817993393265908 -1.095358427071946 -1.81723355860426 -1.023674964812309 -2.13322646002044 8.09807582376013 -2.324178927807937 8.090987503568474 -2.330545061576794 8.135077551150664 1.618299095932219 -4.828931019078644 1.621124506788383 -4.888867402070411 1.449631634185229 -4.823763440210499 -0.526703063943198 2.599859309825714 -0.6808456436704596 2.638770696695628 -0.6915268286746495 2.703538147112178 -3.627946778109352 -5.414580689639528 -3.796489413940117 -5.375580232539402 -3.776878688799414 -5.317382522403903 -2.831180103493431 7.294171544058458 -3.004226880453705 7.276283520025179 -2.828418811434614 7.348253626233903 2.384310184686598 -1.604284260452886 2.191513321852315 -1.57108577423952 2.38357500279351 -1.532597390340951 8.54957863899463 -7.591958080748714 8.694371719356722 -7.513685233859774 8.742967469453195 -7.539587880709598 1.530720740360913 -5.009527037301059 1.375804350051337 -5.00291396835108 1.359469765756647 -4.944030215581829 1.994722808651195 2.594395626625812 1.826031627198952 2.599663348134984 1.842304716504712 2.663955668709898 -1.230188828532585 -8.932765496567605 -1.255554628742061 -8.978672107389132 -1.421166755824111 -8.938354502977786 -1.623548050405513 -1.086890318599028 -1.813866864484138 -1.017892199499018 -1.622732729965817 -1.015192423542869 -2.52433515747498 7.813396953095524 -2.493986601513873 7.769672185517139 -2.692542401511045 7.802322348963337 -0.6789744603693282 2.523575595231862 -0.6815984130075842 2.460667918481013 -0.8471022097428899 2.563674171800625 -3.71955093586108 -5.419688800708901 -3.725594302735853 -5.479495385044515 -3.874166855982458 -5.381957471144198 -2.865162023902458 6.948440991182726 -2.88256355845516 6.99548191542547 -2.709338924917071 7.012270865625154 2.382390142265855 -1.61121454396324 2.190337654589732 -1.649707131131667 2.189593049550067 -1.578016883926444 9.018525333863623 -7.422902961848025 8.987350590271735 -7.388781861755396 9.177789302006772 -7.330101556697305 -1.734840241074575 -5.237012503188767 -1.726541311988324 -5.296927396016576 -1.888064613997089 -5.228781993322624 -0.9343831352841131 2.981186092474813 -0.9424780710862002 2.915941712039061 -1.075018360585027 2.990666902811253 2.879638810031646 -8.860838831828378 3.025151230380163 -8.893887984753487 2.873038903464342 -8.910624774351719 1.538114101585074 -1.111345728594263 1.364447079257619 -1.117042581622354 1.366026765647388 -1.045352587476172 0.4017533075938273 8.171196412326729 0.2288697599364914 8.156834237209869 0.2106361456114381 8.204542608298826 -3.181248914916064 2.258494138680487 -3.342174126764455 2.29807164957007 -3.346656646867972 2.360914327616166 -5.926349958980843 -5.06625658958029 -6.102200572384774 -5.026432565121168 -6.090668504000481 -4.967127170047029 0.03574799594463524 7.336786246313772 -0.1551556582812577 7.313608638095359 0.02987760622357699 7.38556038550886 4.843810405557674 -1.662258023769051 4.643599147677852 -1.630117199620958 4.843775193465255 -1.590565388951407 10.15214888561591 -6.339933274769392 10.3041786765267 -6.259841996109039 10.34108758160019 -6.290217166385594 0.03538291129991822 7.938883458342072 0.07537975947526532 7.892534215055209 -0.1167220988954792 7.92217278993467 -1.850600471716873 -5.426529386050101 -1.991235154178143 -5.417043593907985 -2.011729940428158 -5.357809422857985 -1.033841117868534 2.826126203028453 -1.187076858600957 2.834362496567488 -1.166697703646944 2.900502985901227 2.678207242450373 -9.024066749886115 2.649555917360691 -9.074552129300455 2.5053206830967 -9.03820302863493 1.544461811700419 -1.10108425941019 1.372375919480135 -1.035088788568971 1.546070719287427 -1.029407568048758 -3.292508124898563 2.199341571516821 -3.302010601473206 2.138329323654655 -3.467945166414737 2.240220777393406 -6.020979430218435 -5.066676307681636 -6.018376983691343 -5.127690501302943 -6.182331141876469 -5.02818840631396 0.02654210223308778 6.931692715332654 -0.0004457597454907147 6.973550817262883 0.190740740374836 6.995237711350105 4.84555470151556 -1.655510726685842 4.645365517852461 -1.69505807017009 4.645343664165999 -1.623369052427622 10.49805273155337 -6.111395293942536 10.47938283660226 -6.072165176631619 10.66572932337091 -6.016724088369951 3.102348802430499 7.933502846369441 2.952697980710364 7.90795570433971 2.926472332432486 7.960038482065441 -5.840321407958555 -5.330936839917112 -5.983139800278881 -5.256838325824224 -5.848569170131905 -5.269891554470393 -4.450702103163462 3.005103805866383 -4.460197113508072 2.937459260404336 -4.574251263814028 3.01885466453023 7.943893635454855 -7.141913835124806 8.076472608614363 -7.166312855754238 7.946647222001136 -7.197159556594382 5.163246012492278 -1.117714900073078 5.313443090294662 -1.179269555505842 5.160788520402234 -1.189376693575992 -5.389259396377673 1.958338642300305 -5.552358789030637 1.99775064261208 -5.548972140961457 2.059161362022441 -7.875828986749958 -4.784830431849331 -8.053825766287021 -4.745134763497052 -8.051083700878257 -4.68412435418221 2.289061699829304 7.081129402044353 2.476728056986634 7.152507556084055 2.494896636996879 7.107802367516557 6.923315659644519 -1.735031695388572 6.721568045365858 -1.702598765740075 6.923969103668046 -1.663344518567312 11.60620272298837 -4.749799098219619 11.42773978052086 -4.795881116940632 11.58007216565808 -4.713300346350442 5.308641939536588 -1.118435504130821 5.30624722769184 -1.190103914756658 5.156048844720216 -1.128551230192833 2.810780822408498 7.783362550281193 2.855705105938886 7.733674022955864 2.679216825708374 7.757563963387368 -6.115439472472932 -5.404563151923239 -6.134086655511664 -5.343737657615951 -5.991950256816617 -5.418643294124607 -4.559069854247967 2.849935141477938 -4.693701891053848 2.862775396947482 -4.67355214217529 2.930957736777195 7.811948520213087 -7.337528698838748 7.795477730888241 -7.395699225801588 7.663840744841885 -7.368325238486968 -5.50145245314144 1.881265092103241 -5.518773719895751 1.821686496073894 -5.679089124715823 1.921915560587383 -7.943159315760849 -4.756189822174432 -7.931662356416103 -4.818796447116341 -8.106655857986439 -4.717809657474035 2.494337055136485 6.67547359716108 2.454966310932485 6.713500120556995 2.661158912192207 6.738404930453302 6.920255931322688 -1.746841740351618 6.717866785987352 -1.786097314133124 6.71850789687507 -1.714410428183297 11.64429563392608 -4.519348819292599 11.63628996857907 -4.47357687761575 11.81256480465637 -4.422548434737205 9.407406470594957 -1.262136784813376 9.542673219289938 -1.317912163644785 9.404289811265478 -1.333788014731307 6.253732902396818 7.134431086163533 6.124291599389031 7.092843252678284 6.097602218918007 7.150089030176484 -10.26290308418997 -3.972719949134878 -10.38279108496317 -3.890470452135454 -10.26138530886212 -3.910161990690205 -8.656844822433374 2.310417244970755 -8.546241828981769 2.290879783888999 -8.549772754970995 2.220934272486494 11.87531791095878 -2.244158917229915 12.01420443028966 -2.251642967548273 11.90591421676997 -2.298678393724654 -7.623607648579411 1.609053413946567 -7.775015845034464 1.646441049340284 -7.764555077366621 1.707001432455249 -9.867434151347112 -4.348764056329122 -10.03296462756189 -4.311126714488231 -10.03732134579322 -4.247963100685223 4.629350314123354 6.711883495506523 4.80198327387759 6.781159402920771 4.833139363168596 6.738679451910256 9.020287560180325 -1.855205638108501 8.83343608063967 -1.820032905691768 9.021650452684609 -1.783524995757172 12.51946170319711 -2.507211751598441 12.36153290831863 -2.544874825907662 12.49936523022057 -2.463797454452632 11.84951486019543 -2.304579654823831 11.97278306643314 -2.252622739703133 11.98829948574294 -2.313154032494368 9.546788166750069 -1.244734472388702 9.543697495405235 -1.3163825107356 9.408430854647296 -1.260606969909894 6.077497518052693 7.055427066833151 6.120346229457305 7.001993631060697 5.963995239100615 7.01622629795399 -10.51213878607093 -3.92479448163076 -10.52042041971787 -3.861844166002971 -10.40179501108615 -3.945218872980798 -8.772780334495117 2.136129060071057 -8.759206881541326 2.206115055414994 -8.651459538570904 2.117135106131407 -7.728839161207974 1.528558995582689 -7.752236912433713 1.469616016356739 -7.893884662722856 1.566936828031893 -9.908294568453352 -4.292637413521375 -9.890347902417892 -4.357184603066536 -10.06008873121019 -4.256231171523289 4.843593585418221 6.308114476659102 4.793128669348505 6.344454751318796 4.997303606373547 6.369366587658844 9.02130879258814 -1.851845878495564 8.833155852809799 -1.888369842997336 8.834457480864748 -1.816672594376324 12.43912935850406 -2.240405695724614 12.43522336433228 -2.187747316429558 12.59157169365658 -2.146203486778124 11.49402236278089 2.491336944193565 11.44196618525643 2.537554441272767 11.59794844380999 2.546054530721898 11.99060753637678 -1.323865960497666 12.12498734381802 -1.373491897610147 11.98738336172206 -1.395510357908704 9.193701576120317 5.560736267461 9.075423531901116 5.501053444315247 9.053593253000045 5.561851641265711 -12.36259419343729 -1.288563893963514 -12.24216711289985 -1.314857938220127 -12.25632669275038 -1.377156506041721 -11.65682314128354 0.5461271657592528 -11.54517527586237 0.5207279007337042 -11.53901091853103 0.4500983110608039 -9.931828991437335 0.9990095623593351 -10.06331861283669 1.03290457993383 -10.04913073169398 1.093637546638904 -11.75240798306647 -3.449854181697886 -11.76005233971442 -3.384055276445229 -11.60914839163295 -3.483546629822345 7.045854807670821 6.058967473158784 7.191973529833671 6.125430180177156 7.233043903328235 6.08238625132066 11.05441371495044 -1.992047285819952 10.89271591663927 -1.952196063597097 11.05653685935817 -1.920362180415097 12.46475238117098 0.4688473995782341 12.32626294349365 0.4441457396488355 12.44253518149371 0.5186156868772237 -11.7064333499875 0.3889537461494134 -11.70412534448503 0.459091255688088 -11.58560085130863 0.3636063492832632 11.40112471645486 2.739979586395068 11.51739580529257 2.801918313389274 11.55700694559627 2.749548115938441 12.1279939110552 -1.302377135290846 12.12467143926534 -1.37402621865195 11.99029167902811 -1.324400202437869 9.185772754082921 5.425035435736002 9.045663230792716 5.426053245024225 9.149955825922403 5.480230210119204 -12.37661344837803 -1.242203117709605 -12.37042846956559 -1.179175972023946 -12.26535867193886 -1.268648271677662 -10.00639875127156 0.9370219716282171 -10.03166110505072 0.8776080608921254 -10.14972968865928 0.9716440052608725 -11.68272755083222 -3.455317847211425 -11.83270512839736 -3.354963382779449 -11.70090864286917 -3.388112649421537 7.267043876681645 5.63265133736134 7.209500233534502 5.669337467038668 7.397084304861492 5.690711140751803 11.05331525113629 -1.994793905262312 10.88944634029167 -2.026608988448495 10.89161720027761 -1.954943317187773 12.28612602379153 0.7108669385735174 12.27746929648367 0.7691719838338954 12.41519918837009 0.7963750411686446 -12.34856340660054 -1.479771390745623 -12.48148139345204 -1.380608568178576 -12.36334344712432 -1.410580492210075 9.276707521053739 5.028618018300326 9.217787171578857 5.068181204600121 9.390156909603837 5.085472769549537 12.05668347276712 -1.248890233995446 12.20104707917173 -1.292993058252718 12.05385279070249 -1.320552384434651 11.20983808074964 3.331052729982874 11.19446727308732 3.391832166527687 11.32742640367338 3.40648227147286 -11.67019791010287 0.740410999773072 -11.54177374301834 0.7092751996803449 -11.56482166293863 0.648716467158813 -11.86011193620283 -0.1977464485696365 -11.8475151704687 -0.1358856883258326 -11.74493314011552 -0.2277591628032306 -12.45162304445733 -1.888628516929203 -12.45537080457958 -1.819981544393522 -12.32556100599877 -1.918098184957783 9.536978925267567 4.66422627225294 9.660485091603505 4.728210306524845 9.705320206050196 4.681830997219107 12.31854013554872 -2.059681960987298 12.31564040994777 -2.131331673667286 12.17464832343649 -2.086220046635131 11.03303546332057 3.318596146552173 10.90027268380914 3.308325911882873 11.00329787871924 3.372434746885128 -11.61454327488999 0.7934822348016178 -11.60120460944142 0.8550394872478138 -11.49674254072749 0.7626998964175838 -12.46748036750243 -1.509335310362308 -12.47229587360645 -1.441162276366993 -12.33862010593852 -1.539692711522541 9.099873893864729 5.357595381784607 9.227131317571855 5.421982117480596 9.271950371913921 5.376608774755344 12.20731609617598 -1.215157272801693 12.20409599903379 -1.286968686155147 12.05973374626652 -1.242863119947411 11.3943753839447 3.199659974258058 11.26120491807419 3.186250269918912 11.36553075979545 3.252887088884078 -11.91062286996956 -0.2643539151282401 -11.78502774377633 -0.2946316209082915 -11.80700887801265 -0.3555079257078837 -12.3241425430299 -1.844631417711465 -12.45317510216577 -1.745882362920325 -12.33764463007565 -1.775046606873426 9.701573112228534 4.311767033288764 9.643132417721008 4.352305486159655 9.811737959371968 4.368268671331372 12.17534193218787 -2.084908062443002 12.31633363804273 -2.130020425710703 12.17235078940941 -2.156560351364473 10.97198046768064 3.546291437560214 10.85624208327961 3.473988594873646 10.83934999866612 3.53501278438576 -9.645483191836284 1.800788195159089 -9.670581109214606 1.741546430859303 -9.79215969083244 1.836093629779995 -11.47187316251818 -2.86496606589652 -11.45354420573529 -2.931704449242993 -11.6068129648284 -2.831214107572199 6.867133204543505 6.226843680856156 6.810644959444466 6.263273864668945 7.001209531720384 6.285467061214239 10.74136253194078 -1.127131668761829 10.57376281562699 -1.159826986220972 10.57608788956758 -1.08799419114843 12.42751632653647 0.5240458871917365 12.41929637764344 0.5815454362173664 12.5591173345161 0.611609730538909 -12.22556260541854 -2.510056909099419 -12.22245351548211 -2.446819659825185 -12.11888299322155 -2.535194557593524 -11.1805352717619 0.1636557725206742 -11.17520488691826 0.2339215675086613 -11.06377031148741 0.1397183147273343 11.74031249664773 1.647453380557038 11.85245807396038 1.707939759353359 11.88859530474086 1.653637216901723 11.76539563976768 -2.116613731691715 11.76199157330927 -2.188254616000427 11.6319646956527 -2.13725735156381 8.455844250518283 5.547693248480998 8.314437949829083 5.55193550155163 8.416948548971313 5.602138631030913 12.59726805529594 0.2701429102855949 12.45644840070009 0.2431167178063067 12.57588514082611 0.3188292712014195 -9.568502549918181 1.856830802983324 -9.703134651220706 1.891334807373945 -9.689358052799605 1.951949968211019 -11.39044827376524 -2.938774342873005 -11.53744511220677 -2.904288118536661 -11.54439757547641 -2.838929844390844 6.655606854539049 6.593312683415472 6.806146126184824 6.659854544762145 6.845799299435067 6.617400483461004 10.73196397616225 -1.151491097104088 10.56668715559906 -1.112359312279817 10.73401485999725 -1.079827300854991 -12.08088402820533 -2.6477630053221 -12.18576927259354 -2.560352930530136 -12.0692266799461 -2.58521614158271 -11.10319217059368 0.3450579422479534 -10.99612125272448 0.3209718443542478 -10.99258888133999 0.25025036190555 11.80968273231142 1.405814557636461 11.76087880795927 1.454000771050924 11.90920593615931 1.459487540272102 11.63167374589668 -2.137717227448651 11.76170061290552 -2.18871450868585 11.62828626381446 -2.209367044286528 8.493264998848581 5.71492167655479 8.376826026194479 5.659661944827525 8.351880536625716 5.719592706312391 12.42160597004817 -2.191689468957073 12.41626913264293 -2.140350501684493 12.57315094325855 -2.098282296104488 -7.492963786032458 2.334175902216748 -7.515004825038322 2.275091116646372 -7.656669510425816 2.372592074488226 -9.761450156183038 -3.623960061355933 -9.745338831219963 -3.688310512075075 -9.912017340509349 -3.587498971372419 4.557536204359291 6.839050374406378 4.509188347564309 6.875503686973955 4.709950779347495 6.899769343178097 8.741101864319731 -1.019439105203981 8.554761744415805 -1.055516542513835 8.556037629630342 -0.9838416150760361 -9.744751999399297 -5.048119737146935 -9.755298058729467 -4.985450926885065 -9.633295069987362 -5.067261186780085 -7.95830288070798 1.672339155563685 -7.943088679739913 1.742095909332836 -7.836688785660706 1.65457461290219 11.41626537571705 -3.636196009305314 11.54120330482786 -3.587542135558419 11.55039307892587 -3.648727317551346 8.759899201414649 -2.032709288667752 8.756786200472496 -2.104366810480081 8.621688515798034 -2.047468045499825 5.360334818855622 6.90740915643771 5.404957143048305 6.855020456556098 5.245568253235189 6.871284674799691 8.771807560103289 -0.9210703944025453 8.586749376067742 -0.8854534434550553 8.773553566395822 -0.8488183355714642 12.48451468444921 -2.432517852822418 12.32597291397993 -2.470540383775541 12.46317769539996 -2.390473393376261 -7.402046846608363 2.391646228617125 -7.552263854057411 2.428990472157417 -7.543112769015149 2.489682956953894 -9.681251666514095 -3.660784878569707 -9.845279350554231 -3.623200107078743 -9.848323616903944 -3.56037718183123 4.354281668687017 7.196984233116653 4.525920107431199 7.26450082097733 4.554695827691159 7.222970505021299 -9.490166520642905 -5.076109068943691 -9.613256464947316 -4.995312687271215 -9.491875139303247 -5.013705756931108 -7.837459935101392 1.846455804932724 -7.725788812337279 1.82810317725126 -7.731688088601177 1.75846466450187 11.47441714812592 -3.55673480308616 11.60875792182651 -3.567763588459859 11.4989817614926 -3.612604496064194 8.623679604165812 -2.044552916215587 8.758777033071473 -2.101452057009262 8.620634843427039 -2.116198953238602 5.567935311688869 7.038297109457089 5.437169717013191 7.000125266167434 5.408844334005877 7.056275990035505 6.765559098201202 -0.7936087604780515 6.566876320977782 -0.833140497396606 6.567647415609427 -0.7608779301899279 11.58528452648304 -4.35031587650545 11.57505880479942 -4.305765159566232 11.75021394494332 -4.255099604628661 -5.295141635197718 2.679771178556884 -5.310994730184532 2.619939140035927 -5.469162233682212 2.72013946673693 -7.814300715167843 -4.043097857336617 -7.80454769582162 -4.105496493312833 -7.974297870740199 -4.004970755252076 2.236489778626236 7.190694810087972 2.199833902498322 7.228187263065463 2.399785381492636 7.252871982601729 -5.466753151928634 -6.160242652390536 -5.486256297514611 -6.099739855213911 -5.340910892394801 -6.17356594191517 -4.009488964703396 2.149967279611272 -4.146706653837466 2.162074996238527 -4.126214334909601 2.229980700145121 7.024165130624047 -8.027860484645059 7.004595496875917 -8.08493803403019 6.872155409524989 -8.055797956143129 4.72843336227485 -1.982197320672569 4.575073661752587 -1.919951510193588 4.730715318819804 -1.910533737619413 2.387307200098002 7.460099458288207 2.431832250990889 7.41087982027978 2.252727580309843 7.435775626898996 2.014316783777129 7.59309989024561 2.197756937827875 7.66498349234721 2.213873897873271 7.61968627136445 6.732694121844202 -0.9164665257472985 6.534777069807451 -0.8837557940011735 6.733264098078946 -0.8447802793763075 11.52435613383678 -4.551081451412544 11.34693915299813 -4.596617080832574 11.49646599204208 -4.515784694007481 -5.184653418642398 2.746475510558088 -5.344257242103688 2.78560951664586 -5.342239998541112 2.84724068057069 -7.714439504122781 -4.048260815140622 -7.888817807670372 -4.008889820918976 -7.884601281074504 -3.94816664725183 -5.202451819625299 -6.089579192889955 -5.348382206312138 -6.016470742126772 -5.211180209075206 -6.028742240987849 -3.894933975222198 2.314225785687906 -3.904531105545545 2.246891686083626 -4.020818669428834 2.327298642214918 7.179702031988827 -7.864912338704983 7.31317580027523 -7.890970779092383 7.179928466027126 -7.919451264279131 4.725926433044577 -1.986020410667492 4.570283283646218 -1.995440418799354 4.572566256937288 -1.923775325315378 2.695076435902459 7.661061965266521 2.541931857413301 7.637274094410984 2.516649344211394 7.688805792929841 -0.3698445108058149 7.453488717860072 -0.3952989717585217 7.496051840537323 -0.2063389654605621 7.517240049820471 4.515918699687586 -0.8393387980662707 4.316249118334187 -0.8788466468877427 4.31612899876572 -0.8071590605465268 10.30485371860901 -6.001201054318452 10.28459294262881 -5.962818761835691 10.47223928593306 -5.906872450912127 -2.938501361369633 3.006617235003971 -2.947002569396036 2.945329435304808 -3.113533836915765 3.047486358113979 -5.718205139175695 -4.359722446777262 -5.716856770521808 -4.420526897234973 -5.879140019153367 -4.321262435429309 -1.317171084655176 -6.108452060814098 -1.460162259544871 -6.099492312357857 -1.480366500252042 -6.040368189323569 -0.5645865119736526 2.071141367184692 -0.7203694705909897 2.078847428744961 -0.7003867035881961 2.144754698464442 2.029345654287545 -9.405432250419249 2.000439532636525 -9.455004844401778 1.853474228735507 -9.417872323385714 1.037229569638983 -1.918048788614067 0.862239285371042 -1.851528348295805 1.038688067181828 -1.846370377598734 -0.3415059436527473 7.569954266639446 -0.3027434724742456 7.52389720553111 -0.496260766229028 7.554267652011123 -5.635589728228762 -4.363558339894523 -5.810918821675529 -4.323746273856592 -5.79818970980217 -4.264615156559517 -0.3523577227348151 7.809265353143129 -0.5410580242089885 7.786690220767343 -0.3566093495609768 7.858655653168618 4.515485805132868 -0.8410027561567854 4.315696051118508 -0.8088232226260013 4.515380272364803 -0.7693143339499299 9.941295152995236 -6.179408871339137 10.09312811367236 -6.099640101588622 10.13157038100183 -6.12925749870301 -2.82618486091816 3.060393695973454 -2.986682021334212 3.099969472485129 -2.992190700392496 3.163078476023416 -1.207496587028629 -5.925593980249909 -1.199669725326454 -5.985478026594858 -1.363226630820564 -5.917933100082081 -0.4729956394597623 2.223734660237116 -0.4804706718709007 2.158776479735584 -0.6159846801350177 2.232715461974108 2.226674139061502 -9.280767392920096 2.374920921507335 -9.314600961175254 2.220040689712028 -9.329863156063558 1.041460852905896 -1.911123834948141 0.8650018540111748 -1.916285449041143 0.8664715569511983 -1.844601785732089 0.01555739350644139 7.836576546842011 -0.1602331515344417 7.823534767753698 -0.1769757855709346 7.870598218226059 -3.371045457446532 -4.738527668990224 -3.378194683407445 -4.798236383189997 -3.523966528169564 -4.700972500495921 -3.31950339507936 7.386220307546418 -3.335764832454265 7.434042315532138 -3.165537438445921 7.449896024721483 1.990952794153078 -0.794301863207289 1.800873117040144 -0.8324918601336201 1.800058934935638 -0.7608062510942829 8.791423880104997 -7.27043802749428 8.758476871357217 -7.236972157502552 8.948533693457904 -7.178066836602934 -0.2951623346060905 3.322587602154639 -0.2968720255190893 3.259344289539156 -0.4632284125750602 3.36263616348693 1.95619008696065 -5.695072869730268 1.799800415117131 -5.688739350864791 1.784312015099943 -5.62978551853464 2.401249254238791 1.815872394107089 2.230977048957919 1.820845639886842 2.246422160905807 1.884927755754067 -1.704545758230504 -9.242583819217362 -1.728777046018541 -9.288127940177166 -1.897435285471872 -9.24748621079967 -2.037287167596162 -1.892904068553259 -2.229581024032743 -1.823618281792473 -2.036592650860404 -1.821213163940699 -2.878992602768241 7.406988912774769 -2.850347945369914 7.363622240913537 -3.048949264113406 7.396414355001799 -0.07592872800912309 3.447476459058427 -0.2283303797216346 3.486316303097001 -0.2412998257332361 3.551742843935231 -3.264736926777666 -4.720466754106278 -3.431556722778725 -4.681699525668206 -3.41092521489787 -4.623590437275364 -3.281244212679644 7.695838698016365 -3.451310724976913 7.67895024004497 -3.277624373470368 7.750705745551207 1.993124369130136 -0.7866312688620434 1.802230766442821 -0.7531347520216162 1.992266794691588 -0.7149389143416736 8.320804586917859 -7.385845346409994 8.465266382435967 -7.307301725538728 8.513754288195907 -7.333080183788806 2.04339030631442 -5.518528912334286 2.045130314503581 -5.578534592163575 1.8730165363144 -5.51363265332439 2.458320082436398 1.945240049825693 2.456592126953376 1.882381007478111 2.301937070191282 1.951674525511828 -1.57456143403115 -9.143997773465767 -1.404745360288789 -9.181537442923032 -1.574790531085726 -9.190054921100517 -2.044893155000779 -1.906099714813112 -2.237859075511692 -1.908506354491039 -2.237189028987264 -1.836817393347053 -2.487223103494111 7.74038816037992 -2.680066389377364 7.734029933285218 -2.684561388224735 7.777601030272265 3.124503043639733 3.626647404675496 3.127443276339544 3.560470550474426 2.976079560891939 3.664159249923833 -0.5396567529731716 -5.184956032361135 -0.553707648967835 -5.244267969709651 -0.6776173971474248 -5.149519879826631 -6.653734747338472 6.689172984141466 -6.666825254069089 6.743140156944046 -6.517181117049558 6.750903853205761 -1.086589498616595 -0.78422802616515 -1.25850225696438 -0.8193585587526251 -1.26014777792732 -0.7476747171529783 7.017786738957272 -8.328748700634764 6.973980755895396 -8.298221015688425 7.153590525520563 -8.238650052595556 4.663665539788083 -5.288366739821417 4.501255195215487 -5.282973516835888 4.493544616641717 -5.223259506164044 4.989095297036961 1.523544818016136 4.812262991224277 1.527546637891884 4.820812251942096 1.590059642268411 -4.526624981459384 -8.580682148720971 -4.539323854414262 -8.625643216579517 -4.72691499555313 -8.583279951014488 -4.69161048776627 -1.922169901065071 -4.891936047374309 -1.851894312156033 -4.691629537544647 -1.850479003712745 -5.357828321895757 6.993676402184764 -5.341512802323475 6.951888721855984 -5.534352977043232 6.98440571602306 6.408035537186003 -8.402038505772289 6.530582252696229 -8.326233675610846 6.590979218592096 -8.349116967331526 3.151633318516139 3.57640480636253 3.014121496524458 3.612904582949041 3.000388115497104 3.680200470823879 -0.4139711090741488 -5.15596766273602 -0.5644978615418062 -5.119522335759868 -0.5384089976975576 -5.061648887326983 -6.572938285279893 6.943744311546604 -6.722538923445383 6.935478093730819 -6.56818483266882 7.004611278737533 -1.087894671073633 -0.7880754491256219 -1.261453102026516 -0.7515225856906145 -1.089500803017993 -0.7164060861554753 4.750081876964079 -5.115959186366008 4.743565224223874 -5.176820829293575 4.573233912439122 -5.112054898983798 5.038845685473962 1.656762792982082 5.044549730654726 1.595503841975917 4.87644282530279 1.66229373187832 -4.271526767372488 -8.541590942140692 -4.448254046038575 -8.547835486346314 -4.460139430447081 -8.502134332072298 -4.684233127320541 -1.908962697287057 -4.884542293299398 -1.910377144235648 -4.884556521351725 -1.838683288294857 -5.151397631783981 7.409441118889362 -4.960006882914137 7.371997852621876 -5.160252591464357 7.367865723672731 4.879907596298446 -9.227739958717748 4.824005816342195 -9.198633819923883 4.986802317450687 -9.138900628341862 6.818366883296587 3.286812406137304 6.818806668116153 3.21865571565823 6.687161155696851 3.320460777096002 3.105136375445501 -5.564541851484951 3.088415858145972 -5.624521227335868 2.984729266269326 -5.53209267039398 -9.930011817071847 4.936524218704519 -9.947990209783102 4.995843238968276 -9.812250271109953 4.992960715800802 -5.063117719388234 -0.879775590197084 -5.06555625158882 -0.8081207642899929 -4.912639681043252 -0.8491490300287995 7.043833246952805 -4.918718453727871 6.884389349493025 -4.912587850899379 6.885347967170201 -4.85151534305512 7.38893079278795 1.213416027666563 7.215298962011859 1.218274031275709 7.216443370953684 1.279690506259362 -6.872543926388105 -7.720063000584813 -6.871528454692539 -7.766703935272252 -7.069206212194869 -7.724057565211616 -7.085460401778228 -1.953814347816976 -7.282842567164233 -1.884405848869345 -7.086179438519924 -1.882122722407894 -7.928797813112159 6.099000294691537 -7.923953075196081 6.057018011829091 -8.101736184299917 6.086030956983156 -5.067350791792155 -0.8122836020138835 -4.916807556105715 -0.7816469406124569 -4.914434026842691 -0.8533114193579594 4.110930028857236 -9.26373436105564 4.210500129604794 -9.188566322535746 4.277639095865341 -9.211101364387835 6.87747635928748 3.396608088620244 7.008006566036567 3.293918145568711 6.887884282947002 3.32701415432634 3.214404750168435 -5.548211672136048 3.08310451610041 -5.51507025616875 3.110169943087202 -5.456165494929545 -9.795692840599257 5.160583222514068 -9.93142628115389 5.163649265953787 -9.797825469959694 5.226139370354115 7.127199503208617 -4.764813459291362 7.112271247637003 -4.827021935788306 6.953579509582307 -4.760121010634209 7.436880455331188 1.348831713234827 7.449711873178442 1.2885437837349 7.277450382965372 1.355180921345015 -6.648983202732421 -7.718741714087121 -6.822484486637244 -7.725928122136549 -6.847591722566838 -7.678861228464416 -7.087543715143064 -1.957556829563276 -7.28425004385158 -1.959844843465908 -7.284926555487864 -1.888149518457082 -7.732442454363511 6.556022419027978 -7.556164965878786 6.521793116343225 -7.752590292824291 6.513852055204032 -9.262362620543998 -0.9982610265921572 -9.265431373128871 -0.9266128859795643 -9.12788631365718 -0.9731158902532068 1.950180839681862 -9.916711313632785 1.889080999859249 -9.885293286695218 2.028367727486693 -9.827089988307804 10.52286538669712 2.065146281759869 10.51551482730427 1.995311366964083 10.40577293714618 2.093615155603636 7.52111787249818 -5.273899497310464 7.508853107780256 -5.335786557518499 7.414292697664784 -5.245212397101912 -12.08431270744813 2.196093485976012 -12.19128707591015 2.149047890931748 -12.22033312289464 2.210515938221928 9.199457341029337 -4.520190071452821 9.051150894347089 -4.511699164043895 9.059958026507999 -4.448772184552951 9.669691796684516 0.753360214058832 9.508240145469834 0.7609521533103458 9.503498561134443 0.8219653569383332 -8.921587146112858 -6.669966323949844 -8.907569886315399 -6.719804087994952 -9.104286002616078 -6.678503718230066 -9.324038835693287 -2.030183037586843 -9.508564438758199 -1.963448650971783 -9.325439036827589 -1.958494199056971 -10.60599221786575 4.089910737059385 -10.60662944468108 4.044862993918632 -10.7662950282064 4.064835981792844 -12.04143354217628 2.377086426874083 -12.1772867240961 2.392453396183923 -12.0553928578485 2.443722520172197 -9.267837549188249 -0.9310471242582803 -9.133413303858129 -0.9058945534221484 -9.130292302324495 -0.9775497855284092 0.9479796548154323 -9.868300889684225 1.023695726492549 -9.792488994938639 1.092114544290961 -9.817929410036772 10.53623588670695 2.091421124707996 10.64483644214927 1.992336050057641 10.53783793416231 2.020620562636231 7.578610021389456 -5.124587369069729 7.674140448169284 -5.214529400491242 7.557220039841097 -5.185629502084914 9.248660695682039 -4.424783009195661 9.225085482810178 -4.488804878413693 9.085481007625125 -4.41751426874457 9.703647827910444 0.8624343743937109 9.721302149155008 0.8023152308608818 9.555379135053091 0.8713239533769561 -8.729616780509579 -6.730094086031299 -8.890756388093246 -6.741045432981515 -8.927184794724571 -6.691391928617982 -9.325516693352057 -2.032784362284588 -9.508429923758628 -2.037722327752077 -9.510042819401726 -1.966050870582934 -10.55771085711433 4.487660258475979 -10.39894084242473 4.463672700849949 -10.58000601058593 4.441562148147697 -12.65257406103908 -0.8144460656515057 -12.76303655065152 -0.8498721179081807 -12.8027059717406 -0.7899796649965601 -12.2088925959948 -1.075004728866367 -12.21215032807042 -1.003353263060955 -12.07663315924217 -1.055804126495541 -2.762777199480826 -9.799910230420966 -2.64082009568663 -9.747235043604697 -2.70636780441321 -9.839595663160447 12.56514827402928 0.02621527134906461 12.54768310754997 -0.04325083913083788 12.44927162896445 0.04835732556534333 11.44645299374619 -3.379799133354346 11.44624021100312 -3.44311780906447 11.34082058533418 -3.356134394409414 11.15158224797604 -3.91397944806601 11.02069010905071 -3.901613426206277 11.03580612241227 -3.836028782075375 11.68284991976453 -0.203584460076076 11.53944526903806 -0.1915152855845707 11.53297615464903 -0.1300230787323312 -10.7213018571439 -5.281466400770705 -10.69784016135745 -5.335743939901509 -10.88300945774196 -5.297638907282837 -11.31979072714832 -2.137674283481226 -11.48458296453805 -2.075134861174838 -11.32216416519158 -2.066015916383278 -12.38651771823724 -0.6942693835357292 -12.3741535119025 -0.7426226895315506 -12.51497053451344 -0.7431947815588879 11.43397392136102 -3.230024288088108 11.54045022315169 -3.316207533749339 11.42491432129546 -3.292852691533721 -12.68046711594635 -0.5828946779229147 -12.65653270953471 -0.6464768443492177 -12.80622590301123 -0.6203999083251425 -12.2119079911996 -1.002969579672727 -12.07967570715272 -0.9837700450213652 -12.07639080066768 -1.055420408405151 -3.869929745865673 -9.519464737527869 -3.803415572468722 -9.441606603762649 -3.742590848385259 -9.475369423853087 12.58230329810353 -0.0981976794319511 12.47621695814002 -0.07582480933020433 12.484816741565 -0.005979543912745515 11.24627603075263 -3.76232573747763 11.22058929470643 -3.828343276630022 11.10430498040334 -3.750862145429234 11.73940073486214 -0.1264601345604492 11.75768076529818 -0.1879173364969197 11.60862897452939 -0.1133295857564735 -10.57042428796328 -5.422818079844593 -10.71295262364756 -5.440159567732102 -10.75635901643806 -5.387094030580002 -11.3179454351192 -2.134532054307301 -11.48054090956381 -2.143662211054009 -11.48273687812214 -2.071991336639826 -12.51434750350248 -0.650580813859589 -12.37353185978491 -0.6498274134242043 -12.51983891596024 -0.7060533553217917 12.63958050495457 -0.6693547964434079 12.65198352598792 -0.731828798096542 12.5221328162481 -0.651691222853194 -11.83462611313661 -3.25307820474858 -11.9605286250438 -3.277596497196791 -12.0052031508993 -3.221363921453147 -12.58250281806942 -1.015046530271011 -12.58528579872573 -0.9433830155386896 -12.43698451464761 -1.001648766609163 -9.655464840408483 -6.514825842457736 -9.528604502594481 -6.482686502146462 -9.626160197578194 -6.568658861140238 12.40024141668809 -1.753199306494514 12.37619883512541 -1.820774510109404 12.27206791113328 -1.737364164996175 12.44657289345614 -2.769530930851455 12.33204167285077 -2.751948366573266 12.34683587159214 -2.683895528262178 12.50359033416776 -2.060438594993016 12.6298464498674 -2.141716106848167 12.50495292832494 -2.123546688312313 -12.11239440981136 -3.325770736080165 -12.08559598487972 -3.385247611446262 -12.25173706902597 -3.35258701561263 -12.65359948292654 -2.186435630159274 -12.51127527650821 -2.172022624119048 -12.5083384750712 -2.243677080142132 -9.094376039244555 -7.212058789567762 -9.009492746513812 -7.137624585116146 -8.966801636117909 -7.181986746492179 12.34575627928272 -1.884543078536829 12.22803114568178 -1.86806206583168 12.2421675796568 -1.800715955727265 12.51463740134587 -0.5872590298221754 12.64529440888101 -0.6665814394666298 12.51737822269537 -0.6497039335917156 -11.93742043501262 -3.086640748076639 -11.91061202692907 -3.14513654200913 -12.08053448882132 -3.111317530780448 -12.5854364412165 -0.9436425349592006 -12.43993409235087 -0.9302505669090631 -12.43713501742452 -1.001908065963351 -10.10626095412997 -5.904965002461295 -10.06927576034501 -5.951373557172462 -10.19862236532301 -5.97664674374756 12.52689379923964 -2.564429694384292 12.50276351476397 -2.632160172276806 12.40159987216635 -2.547566698791825 12.61860799010647 -2.07157490265327 12.63071247558316 -2.134070790287479 12.50436027662797 -2.05288573196875 -12.02217889485638 -3.552433880925095 -12.1446982041293 -3.578770994341044 -12.18895028811796 -3.521825751571051 -12.6506109294987 -2.258069628247561 -12.65359355466221 -2.186424059880305 -12.50833255829316 -2.243665527901626 -8.371711296460484 -7.711058531133934 -8.247493324895878 -7.673278536577046 -8.33526926066186 -7.762582516942481 10.92081324715679 -2.781893670447513 10.89598809710243 -2.847298419544966 10.77389037552655 -2.771354714339896 11.41909956563652 1.176088603862243 11.43741133559371 1.115289727710095 11.28433698302148 1.188297566200957 -10.28317486014378 -4.970754249946205 -10.42929398469201 -4.986742463350395 -10.47187985914567 -4.934357291864098 -11.02080708112402 -0.8895196254789614 -11.18732886843113 -0.897792518239128 -11.18936508156011 -0.8261190930710749 -12.47060931995162 0.8211727458480483 -12.32692890558392 0.8157345692125834 -12.48189717357242 0.7671225504100739 12.35737763565091 -0.7610649615736504 12.25110646693393 -0.73758325334747 12.2590339506434 -0.6675199869267502 10.85958640769515 -4.696877842611122 10.96376175377825 -4.784017579808633 10.84911064754874 -4.759555551762515 -12.64738279739117 -0.6705078456432573 -12.62484614593904 -0.7348530040563482 -12.77130993133742 -0.7105102352840176 -11.81966874191324 -2.221216928577346 -11.68814189401062 -2.200933905113122 -11.68477240812853 -2.272568859774362 -2.813837005937617 -10.02175846134583 -2.747730045187505 -9.944225755608683 -2.684584726814461 -9.975990867798494 -12.34712717847993 0.711068567427408 -12.33956233899112 0.6621577329345746 -12.4833067550381 0.6664226720683839 10.8341790913295 -2.928026544613575 10.69932087865276 -2.916489536031525 10.71246538689819 -2.851702319205666 11.39026777054721 1.102973270925174 11.24342278414055 1.114109912454478 11.23677318122472 1.175433037698627 -10.44480332973878 -4.891435348338514 -10.4227137964753 -4.944847588370251 -10.61062682259548 -4.905997593885506 -11.02046413612363 -0.8889369615822576 -11.18902199551489 -0.8255361971176556 -11.02251895736931 -0.8172662058665945 12.32972769345473 -0.6571501199675645 12.31397725318278 -0.7268343890666958 12.21481564695536 -0.6338252937164728 10.85686994610952 -4.839283370499927 10.85418283551526 -4.902475788041593 10.75105040469853 -4.81457168848571 -12.63310231493371 -0.9496811178036727 -12.74189688413779 -0.987207398137782 -12.77995673749219 -0.9268411838871186 -11.81758591857441 -2.295070005443553 -11.82103415492809 -2.223430057712653 -11.6861378518861 -2.274782038886273 -1.700680309258098 -10.1847686180246 -1.576911440637717 -10.13042462988106 -1.642357880487287 -10.22243727512909 -10.07489593405453 5.317865131622324 -9.914212043539097 5.290983115074772 -10.09887128280329 5.272346325687641 8.926739659517338 -3.333700991142646 8.906055126422018 -3.397258317156485 8.762487648304621 -3.32703020223145 9.322637233375367 2.072371933533065 9.339731769609148 2.01231322404564 9.171855318009799 2.080670833352711 -8.389721987007942 -6.192875430508777 -8.55369073492459 -6.202934797632022 -8.588287626146517 -6.153801221723152 -8.953615184345583 -0.7905433555926199 -9.139687651119626 -0.794883308664731 -9.140975068249894 -0.7232014806574122 9.916681593819769 1.355376862847567 10.02890419320369 1.255402500478206 9.920180365030419 1.2846531573443 6.806571625771529 -6.414021707408567 6.687836312696602 -6.384293090103021 6.710808514383312 -6.323702891380686 -11.70770455946561 2.327646037062097 -11.84237110709834 2.340842626216489 -11.71945801068183 2.394391966093911 -8.497812747680163 -2.125569904993155 -8.361422144933348 -2.099387563293242 -8.358261214048065 -2.171035711933601 1.647171871169038 -10.17810927867025 1.726491109724755 -10.10245365700075 1.79514528646327 -10.1270924823156 -8.95332294793722 -0.7900298055367276 -9.140682730464413 -0.7226877560546117 -8.954591924157162 -0.7183431001338305 -10.182430584409 4.923837330807495 -10.18266462648535 4.879634520720614 -10.34450278856321 4.901821467802213 8.839585991712525 -3.485217008954383 8.688773749948515 -3.477266435189169 8.696271217218778 -3.414670201888944 9.288538652900973 1.965996370032669 9.124309544921923 1.972946970572734 9.120416123885098 2.033978688334276 -8.587658393071976 -6.193333549739277 -8.575865719793248 -6.242524934708914 -8.773568499488418 -6.200830912026516 9.890862181544346 1.305687024710952 9.88534748018013 1.236021162589624 9.77197480422123 1.33518926633466 6.665538242502155 -6.452944035834532 6.651807514522332 -6.514386963890035 6.556891616352036 -6.423516395302233 -11.75101458588584 2.114149917366381 -11.8589344778326 2.06515187335709 -11.8858029850785 2.126552785291868 -8.497014745379723 -2.201529350571034 -8.500061384445765 -2.129882272843588 -8.360509649708535 -2.175347697790068 2.591126072632715 -10.14678966530765 2.530477444128616 -10.11615706904937 2.673833530764338 -10.05754682408608 -6.673280126673509 -0.7225446577926918 -6.871434112871212 -0.724537688939901 -6.871984446148782 -0.6528453404657015 -7.25799830404261 7.162579420947893 -7.078469010283276 7.127490702602729 -7.276450317435023 7.1208275330605 6.716704057231503 -3.702182447020491 6.703222601122889 -3.764155022811938 6.541750659983299 -3.697743607190727 7.02276182648545 2.52952846852613 7.034419215835821 2.469111966056694 6.862116333526764 2.535600225585909 -6.258451424956638 -7.156337190288912 -6.433325467948533 -7.163179576646859 -6.456044912435761 -7.116420380834304 6.12148523600438 2.432855809288773 6.25615285277576 2.329841047502787 6.133010334498379 2.363646324428206 2.482131981882935 -6.578948038907051 2.347397337717577 -6.54511569793694 2.374685842992014 -6.48654031337502 -9.226883617228856 4.949918969721494 -9.364300424677927 4.950734550338548 -9.227331453626954 5.014855107582775 -4.144388904626483 -2.059837602090552 -4.30091436112659 -2.019724650321638 -4.146690846255067 -1.98817332472513 4.58366395416181 -9.57844883091896 4.687797825325956 -9.503157336036267 4.75401390710288 -9.525546124816136 -6.480623026832273 -7.212833170771361 -6.482062634754204 -7.258941925857334 -6.678743437251233 -7.216326884488593 -6.674115931306228 -0.7240396627997361 -6.872820514184492 -0.6543408101834938 -6.674674293542323 -0.652348144219881 -7.459838911950114 6.776905529532344 -7.453197270593202 6.73512117752022 -7.634232373204485 6.765041439828853 6.640026708949564 -3.854609266625648 6.479369334592612 -3.84873527494939 6.478738437322397 -3.787922221610563 6.983802994338966 2.410197361084788 6.808810192667448 2.41479142626565 6.811319571334433 2.47639529799676 6.070038885237254 2.30442542891948 6.071263036094379 2.236711245752523 5.935553584784401 2.338876406096 2.352162169744286 -6.602427208229413 2.335520940445758 -6.662218054347383 2.228692780121906 -6.569367996641364 -9.352558283623353 4.681432156679366 -9.369069035535254 4.739923671642124 -9.231651764626596 4.739157938824222 -4.144147157576669 -2.059248813414291 -4.298406531952122 -2.090796906347824 -4.300672587376654 -2.01913579716988 5.318857115998671 -9.475497878340921 5.264506578007724 -9.446406902090407 5.431054043365919 -9.386478061742478 -3.798437635028153 -7.988997234969305 -3.974687229717874 -7.995376371805689 -3.984202140860202 -7.949865124205307 -4.239991226707238 -0.6854206447204622 -4.43977561736835 -0.6868879570074055 -4.439645894320549 -0.6151951654697432 -4.70736126842966 7.959147464083581 -4.51415759813757 7.92149520321366 -4.713837501285989 7.917347047259822 4.29228277170574 -4.052848656795728 4.287355328842573 -4.113540076474784 4.115968003424621 -4.048916083437927 4.602153769781864 2.84892743796308 4.606437271493864 2.787384127466765 4.440207456119154 2.854502823893526 2.501540817132148 2.458421236806983 2.360894878367134 2.49541657796471 2.347214760178243 2.562277059063196 -0.995987370844324 -6.193340856458598 -1.14982734784705 -6.156379658505479 -1.124472851279751 -6.098513453078377 -6.021111357985751 6.468295099512081 -6.173156786121 6.458297194800057 -6.016431170743815 6.52809812707032 -0.4673611767382618 -2.012142972794287 -0.6445168387110728 -1.976256813940504 -0.468805931694829 -1.940468705341978 6.770791638712933 -8.743876822142328 6.899332350587947 -8.667446781248739 6.958090127764787 -8.690637162682506 4.539717524041055 2.706829269539442 4.363356280612857 2.710870355417722 4.373278723959134 2.773626692411378 -4.069659760668041 -8.087473990802284 -4.084730298185056 -8.132364966101234 -4.269422606780978 -8.090208960337565 -4.239811057065991 -0.6851008210236675 -4.439465672741036 -0.6148752503924861 -4.23972471180077 -0.6134209565716047 -4.909868340854303 7.617742079432595 -4.891256859307714 7.575729809148655 -5.085869538237439 7.608586064309732 4.214459294067448 -4.220588294909764 4.052505424544329 -4.215150427434201 4.04326125207857 -4.15565456024358 2.313009045770565 2.381868346057378 2.314475444715103 2.316766841332019 2.159267758698982 2.419806410991602 -1.098011577230085 -6.203634390694601 -1.111064161653627 -6.262929803788139 -1.239118732682174 -6.167742373348917 -6.107052651180744 6.220643665716459 -6.119745850805267 6.27426029218976 -5.967650873234329 6.283780382622252 -0.4924884353088443 -2.089383935684647 -0.6667519852174547 -2.12515907898624 -0.6696466591109601 -2.053505604099753 7.361945856571936 -8.600266542189791 7.318191678102082 -8.569583331019507 7.502172404554232 -8.509610303663143 1.961866993229882 3.121420198292064 1.958855011039579 3.05822469283424 1.807479363525461 3.128187325946219 -0.9534596355512204 -8.616875581533371 -0.7875150586268281 -8.65393563374966 -0.9553964181431812 -8.663280655942394 -1.51554266047925 -0.6737276652590656 -1.706051469211878 -0.6764903426647987 -1.705250544440307 -0.6048132151761321 -2.045058043252404 8.274174214337881 -2.235433419952746 8.266902856311152 -2.242357602555838 8.311058497063025 1.503540247707399 -4.466496658125283 1.506635251235516 -4.526385834563106 1.335329230917145 -4.461239476627109 -0.656613062860214 2.182939504566808 -0.8111416065795968 2.221849701690229 -0.8214786410022695 2.286451640181053 -3.723373662074076 -5.770770407697359 -3.892365640552052 -5.731735655616535 -3.872998263873556 -5.673518365337237 -2.722161985294747 7.121072471250257 -2.895915131563711 7.102752784121488 -2.718419346985435 7.175531454212196 2.502047898251155 -2.059457062259479 2.307258732297215 -2.026349521758462 2.499797868375544 -1.987789267103908 8.60232885134681 -7.732012325644101 8.747377381387175 -7.653778516002554 8.795771051466248 -7.679795656206258 1.416206611738852 -4.648816687372756 1.261812103455085 -4.642147384413928 1.245142400618741 -4.58327829393803 1.884090460540353 2.975302765977744 1.715925736702129 2.980632017713818 1.732481879783885 3.044952568735773 -1.101939570557584 -8.770828551072645 -1.127596089301494 -8.816850064327529 -1.292339017399659 -8.776608818779309 -1.519352831643749 -0.680248378444777 -1.709061696274642 -0.6113355990130359 -1.518494808126481 -0.6085562156311978 -2.432832418340815 8.014027739704867 -2.402052538621178 7.970192476512427 -2.600568684462753 8.002787713078721 -0.7887234807686039 2.121535479458697 -0.7915802586981796 2.058723468682336 -0.9570349319695676 2.161652285090936 -3.814700094223602 -5.774321532089809 -3.820414909471595 -5.834135546616221 -3.969682280101117 -5.736544379247184 -2.735030482338774 6.715111064731046 -2.752681918904458 6.761933194069331 -2.578715199213051 6.778952396307427 2.512021352067604 -2.022946996562845 2.317962934978308 -2.061527020896144 2.317233307623482 -1.989835372920374 9.068258403170781 -7.539931851525441 9.037582147125956 -7.505617190798471 9.228077681181993 -7.447079154052003 -2.135624988089351 -4.88392659388195 -2.127787708236893 -4.943922613996008 -2.287825372741574 -4.875016067259235 -1.265266249581897 3.361322696758975 -1.272981469490768 3.295978028257124 -1.404182385817391 3.37155812642724 3.377144303257839 -8.614972367176044 3.522939210648212 -8.64677302543765 3.372142215560619 -8.665070813338549 1.880044486869489 -0.7099514351381803 1.706315315811077 -0.7161579521971155 1.707983358657299 -0.6444746211323323 0.6337253384765141 8.349045894123551 0.4609188363799184 8.333314393872879 0.4429084197343792 8.381346533202356 0.2695293010936289 8.1364090602647 0.3104024884032453 8.089717936087684 0.1186430588494392 8.118356841517262 -2.273763436104708 -5.093778321852651 -2.412676028745445 -5.083513173020799 -2.433325245719731 -5.024192203367654 -1.352700378083153 3.220124235178913 -1.504857610480996 3.229056740737732 -1.484182202929981 3.295401634304913 3.147647696784186 -8.819590970392428 3.119343838084017 -8.870722796612172 2.974893776662716 -8.835327339648192 1.886046075813324 -0.7001921648486493 1.713986269026166 -0.634713201971237 1.88776685392225 -0.6285039010011156 3.699286847979196 8.021822719626043 3.551952280515458 7.992681642936506 3.526917347250496 8.045842285832848 -6.836616185196524 -4.819791454772719 -6.974650412903761 -4.743853791100033 -6.842495237258248 -4.758460733709759 -5.459351615402195 3.312165022183192 -5.33863699750301 3.296910802299307 -5.346121993929955 3.228855582043298 9.041019153931364 -6.223731286472436 9.17630563324073 -6.244424906221747 9.050258749720699 -6.279024996016408 6.041048416374899 -0.7390722020015017 6.189725108657427 -0.7993394197908873 6.03839393747066 -0.8107428311457778 6.190729492069909 -0.7300320553835483 6.188178023715594 -0.8016900164781685 6.039501070505297 -0.7414231970392802 3.426548616858394 7.90026039116947 3.471178173534864 7.849667070041692 3.298289751271667 7.871255638637174 -7.174730556041649 -4.906914882122241 -7.19105403806215 -4.845489807090734 -7.054114516421728 -4.922644265753986 -5.548237129010005 3.181780743562215 -5.529544051101709 3.250467760491241 -5.415988493601526 3.167433313382298 8.937225232820152 -6.451378921063251 8.926680707431935 -6.511009150407484 8.792206600368742 -6.487263767881751 9.800177201884342 -0.8616435763712601 9.931073519539018 -0.9166810034770428 9.79701255595192 -0.9332864011530994 6.543709852027904 7.192855156707714 6.418256003569928 7.149474398751684 6.39047432061879 7.207047475399693 -10.6400071920669 -3.408831100365564 -10.75619133608059 -3.325594972389929 -10.63771319022588 -3.346104088131604 -8.981249019126471 2.571235861176958 -8.87372873114696 2.55103419758575 -8.877325153416768 2.48084769220877 12.06170687526851 -1.408798886311561 12.19939239644375 -1.414165055528784 12.09521623568925 -1.462925454458923 12.05148810165725 -1.446818324504842 12.16880426552161 -1.39314695239537 12.18912632739616 -1.452889081468752 9.949440569830106 -0.824816356737934 9.944926260336747 -0.8964329369946092 9.81403154190742 -0.8413931562028022 6.369941897162857 7.118594636873734 6.413417582830934 7.065469826911111 6.259985367198966 7.07827979375381 -10.85607504668656 -3.355543728139729 -10.86392437964178 -3.292489464994982 -10.74884128748 -3.376666859992118 -9.145558097532087 2.348930978149284 -9.131910200316611 2.41889883773728 -9.026943999321077 2.329259125943994 11.31957069538852 3.020063535695641 11.26583492276647 3.065205116143619 11.42096419302446 3.074562563346431 12.11838366928983 -0.916930972997013 12.24919422657635 -0.9661783164602587 12.1137980097633 -0.9885447479458788 9.380176606079347 5.589576159771561 9.266021591225567 5.52885695472803 9.243020805809994 5.589392515012531 -12.40786866375894 -0.6990625123970562 -12.29002405232616 -0.7258816563634604 -12.30443274239033 -0.7882153539158593 -11.80972128753171 0.7593281674162619 -11.69993427371322 0.7335394531590792 -11.69436938673955 0.6628881535085086 -11.86829958126493 0.580998676268116 -11.86624101006072 0.6509562222434236 -11.74995342578468 0.5552141355206599 11.21328869378885 3.273985903877301 11.3272664105408 3.335675764187015 11.36829230186353 3.284553751724773 12.25469266709176 -0.8918064921604529 12.25071985344918 -0.9636108793327785 12.11990880630248 -0.9143643410958979 9.381505479978991 5.459039563227266 9.244349645995575 5.458872224572826 9.345371550519099 5.513624454725724 -12.41324362251875 -0.6884910809370632 -12.40648445054843 -0.62555973916627 -12.30384427382546 -0.715279913644114 -12.32826371519772 -1.362403121319241 -12.4641364650429 -1.262973566421748 -12.34391070149085 -1.293517925765701 8.981203934996707 5.429316778188807 8.921911684114765 5.467780531960197 9.097381664687084 5.486188805898603 11.94236502335973 -0.8120089244758073 12.08925826584056 -0.8553680978831623 11.93906130248036 -0.8838342888720473 11.47787161521177 3.097568893933862 11.46388290660867 3.158119809795075 11.5966558362717 3.174562599256967 -11.34821614628667 1.255624421034312 -11.37199634600862 1.195303020831611 -11.47904374747924 1.287374896716945 -11.28751556120904 1.321710735149691 -11.40740462468705 1.353063397022768 -11.3935630011545 1.414495959264407 -12.44094075818664 -1.383219269771241 -12.44652625482842 -1.315413747877141 -12.30989459050788 -1.414197626557444 8.790311906755896 5.759914720469269 8.920833395116851 5.824940625231536 8.965450224087414 5.780183568122521 12.08695084765901 -0.7940576838640522 12.08419862447269 -0.8657165775385197 11.93730339714487 -0.8223615656621114 11.6677428890452 2.960337297373715 11.53468992322189 2.945360715295816 11.64097291766424 3.01325500917886 -9.369071727379923 2.270001709774427 -9.394095880381938 2.210798678097317 -9.518271409100272 2.305789280122922 -11.29147691600203 -2.630005990951341 -11.2730960361497 -2.696397365380065 -11.42869150098175 -2.595812799590735 6.576658927265195 6.554304857670149 6.520974822997713 6.590584892256295 6.713551668846446 6.613202537613497 10.52339895681859 -0.7207779304447626 10.35283549260919 -0.7540787061680859 10.35480122092476 -0.6824037917664646 12.51180493535195 0.2706465071181 12.50509077932547 0.327355149520634 12.64691539020935 0.3590274409921676 12.66778146565213 0.05892633726080144 12.52495608246687 0.0301714431453946 12.64674478859559 0.1068366988525202 -9.302510166488013 2.310149017915042 -9.439415499216281 2.345100915452966 -9.426070055047823 2.405635132471007 -11.20914066415681 -2.694165706725969 -11.35869759713432 -2.659180231377136 -11.3653588524073 -2.594180249874346 6.361798036712726 6.910066499029041 6.51560573550019 6.976942616822218 6.553995546503733 6.934599816498761 10.52299578483374 -0.7218641785146214 10.35439796509906 -0.6834902677926709 10.52494382013441 -0.6501968436860819 12.37000959761969 -2.336958627664024 12.36424737504895 -2.286473781923784 12.52368815173407 -2.242902055310073 -7.224685944093681 2.756019202345131 -7.245965853143572 2.696905971698105 -7.390269406292927 2.794788332272979 -9.530928646863446 -3.317543633379358 -9.515533077944276 -3.381619966434712 -9.683232503992896 -3.280780719023091 4.257134499501867 7.144053646115612 4.210186732294227 7.180672783186406 4.411524365462806 7.205010246440727 8.545973735453295 -0.592941878975351 8.357028163816624 -0.6299704831927728 8.35820892604297 -0.5582927843914641 8.546230575502396 -0.5920844654164418 8.358465807110765 -0.5574352332749095 8.54739793738338 -0.5203936384912864 12.41475282978748 -2.565479432249199 12.25351832280703 -2.604754525619022 12.39284133089804 -2.524392084192538 -7.128554081253577 2.81551315224877 -7.280503727026984 2.85317221179776 -7.272251546151035 2.913945760187608 -9.436436927120244 -3.342654604932382 -9.602337393165087 -3.304783873263495 -9.604596860468231 -3.242291066644484 4.043546367960193 7.507514708560755 4.217305617531318 7.576650856390418 4.244512810361858 7.533681961433697 6.458588815215814 -0.4911045874229971 6.259337848940884 -0.5302686320569416 6.259788327676025 -0.4585727995235803 11.45022029032948 -4.43438708186878 11.4389091848806 -4.390728059032241 11.61617969043561 -4.339166469793684 -5.006251699513427 3.100853315779034 -5.02112085534459 3.040863773969763 -5.181011700825348 3.142336909852881 -7.552485714177336 -3.699467933501392 -7.54377745695181 -3.761609553274425 -7.713189516733095 -3.661254097011805 1.883949753098416 7.515269190246045 1.848487499930221 7.554335453351069 2.047700650454797 7.578044841063513 1.689162816113156 7.860895420440947 1.873638509106969 7.931905728540796 1.888054153622193 7.886221660767003 6.457348208570663 -0.4957853571967956 6.25854755424382 -0.4632542000480829 6.457838105933594 -0.4241002986534197 11.2777955831601 -4.692609692730578 11.0974163655919 -4.737000543948343 11.24964601433964 -4.657753875375169 -4.894188290903335 3.164392141248226 -5.054484030439394 3.203652280341502 -5.053497485486894 3.266429849060887 -7.470913264088006 -3.712882289854652 -7.646001996777374 -3.673342907891183 -7.640648267248458 -3.612865098936539 -0.7302780596735581 7.710385280979263 -0.7542204343304731 7.753523337154497 -0.5673989491577319 7.774105028477619 4.19487860069561 -0.4224204991272711 3.996298338185958 -0.461464255093915 3.996095256625206 -0.3897783386373207 9.878641123504959 -6.202299018746859 9.858408393813962 -6.164194333899258 10.04825114846391 -6.11211180087455 -2.608771561801277 3.429134367301827 -2.61640780100766 3.366640053256094 -2.783219999291351 3.469005226175061 -5.438666118872652 -4.031915268882641 -5.438482305466206 -4.092539373380188 -5.598960862720181 -3.99348706643258 -5.339848911181261 -4.02173657458162 -5.51460469757868 -3.982004317795938 -5.5007060378602 -3.923065006203717 -0.7235561226348133 8.069782180759592 -0.9101067414326411 8.047732414326177 -0.7267770962588636 8.119347977291019 4.202241642346643 -0.3947040905378378 4.003459239982811 -0.3620583813129791 4.20195769221024 -0.3226515792289527 9.676123288116585 -6.246639807917428 9.827903993125302 -6.168116163994411 9.867218195010635 -6.197472680389462 -2.497942624891423 3.476350128791754 -2.657800587684473 3.515888260631241 -2.664241510416254 3.579230860433497 -3.039940524517814 -4.412230103514333 -3.048242970748799 -4.471818097288121 -3.191190959732303 -4.374922231239453 -3.763036890219274 7.590975318271896 -3.778704319162962 7.639051110321895 -3.611274597345889 7.654713604059981 1.650523539803778 -0.3535035296280499 1.462196838817967 -0.3917729921800831 1.461145487245244 -0.3197248815295568 8.592219930555833 -7.257072706052855 8.557921179424286 -7.224053261046919 8.747476541769197 -7.164935697135427 0.1406337610625319 3.733797810210173 0.1395419039069806 3.670258686393833 -0.02388507881883939 3.773426175556571 0.2709240254026241 3.777324967501047 0.1201334906623336 3.815767655541199 0.1080787144297618 3.881060097561499 -2.936354617074754 -4.394314621472311 -3.101275843536757 -4.355795668491951 -3.07971136218907 -4.297793192633391 -3.721072113896653 7.867935155099407 -3.888349492248882 7.851295778302021 -3.716943315756291 7.923624035620274 1.645064061037364 -0.3724507021735264 1.455685340335751 -0.3386743722916912 1.644100099668695 -0.3007641796892113 8.100940675740842 -7.347312867957174 8.241692624995373 -7.269464729778806 8.29346233362131 -7.294459136463427 3.469850849684725 3.900357043555614 3.472017456300336 3.834401550811186 3.322275567743667 3.937355519735375 -0.1023895106528927 -4.879835590156923 -0.1170898568501827 -4.939151136998811 -0.238029561536206 -4.844759002316809 -7.114636760554537 6.756816294661537 -7.127895730494763 6.81161600095514 -6.980733369026265 6.818051314912564 -1.550998060598423 -0.3778865650695223 -1.720065763427929 -0.4124693052699294 -1.721835239327647 -0.3407922871979483 6.80702682276617 -8.297761895734295 6.759729529718261 -8.26778005069659 6.938896502216644 -8.207586602382589 6.163368388470193 -8.350734524831868 6.284459955916631 -8.274759866409978 6.346039756643334 -8.297456563449998 3.643874164541265 3.941770590636395 3.508670096486394 3.977873807408855 3.49497507021792 4.045478249316951 0.005835663129068469 -4.860933560759089 -0.1421120931521958 -4.824876920903267 -0.1155740604464639 -4.766915566438251 -7.026139346161553 6.991237927096178 -7.17327156087129 6.984389301634262 -7.021802981148946 7.052850713371004 -1.554815807467813 -0.3887919030281837 -1.72565342438554 -0.351698874051286 -1.556549722259848 -0.3171079159341658 4.574721270117863 -9.206420184576434 4.517744107111181 -9.17721696821164 4.677354815083322 -9.117540535223441 7.353869995920599 3.5507029233354 7.353694124279022 3.482245578826975 7.225199208536866 3.583728155222878 3.647514931463742 -5.242838091940076 3.630918838176233 -5.303045250355286 3.529486700959499 -5.21084132776262 -10.33125851989274 4.830395726752738 -10.35048384214724 4.890220798922674 -10.2155357828808 4.885791695912404 -5.6362703403132 -0.4896387235804584 -5.638819120231366 -0.417969801788205 -5.488409815916429 -0.4597030815992176 -5.634811288321173 -0.4089858632164678 -5.486990394918814 -0.3790542862912318 -5.484402411438603 -0.4507200963404745 3.763031202477097 -9.218754706048724 3.859035375087246 -9.143704093001249 3.926740526010622 -9.166398178683943 7.408314102668021 3.645974968143622 7.535697521555866 3.543628900312736 7.417894719828418 3.576135708947374 3.791319289428732 -5.203325182469116 3.662355303616272 -5.170711020977769 3.689169757568529 -5.11161268549519 -10.19138273408183 5.04141668936046 -10.32631531885218 5.046128526909784 -10.19496663212064 5.107359031539379 -9.806781445342764 -0.6041624731399967 -9.810039044935884 -0.5325135653374357 -9.672624342500644 -0.5797765348465975 1.535922109075115 -9.865529604055389 1.474457187294036 -9.833688724408701 1.609684157394824 -9.776722218676373 10.93539100340914 2.177462147527562 10.92675072566646 2.107547018278384 10.81934835029744 2.205101865336883 8.072853190883647 -4.801022135136885 8.061390124508989 -4.863120881729041 7.968882449874977 -4.773024751161838 -12.27146224211327 2.015760399897205 -12.37926707659833 1.970167214977837 -12.40980259010493 2.031643386693846 -12.23230287926874 2.180127290769761 -12.37044845907693 2.197026830779392 -12.24796720187469 2.246514432487988 -9.7794452200131 -0.4770096666667782 -9.648176375190293 -0.4527164337478769 -9.642033647960231 -0.5242782681450098 0.6347877467500684 -9.7938824966912 0.7064899812011505 -9.71696929723729 0.774283166708718 -9.743687857519737 10.92258138251291 2.193204678530598 11.02901042879143 2.094991913303787 10.92479461569198 2.122419629650227 8.274267772584182 -4.533218815517539 8.368657229714991 -4.622098876869929 8.251571579293271 -4.5940434551654 -12.62322136483424 -0.9884926746096205 -12.73402258899104 -1.022165627830135 -12.77512460861654 -0.9628896790440884 -12.42656044648903 -0.6819918015620948 -12.43279392382107 -0.610434823620015 -12.29429478115778 -0.6636320508769412 -3.514888558759066 -9.587899785499472 -3.394188500635819 -9.536087997465549 -3.461425166322894 -9.630198417003474 12.67926010943561 0.112703683031725 12.66238027365438 0.04315350076231182 12.56225914008888 0.1340217108155918 11.89531750833988 -2.599964148209908 11.89459864827752 -2.663352588840468 11.7861060285692 -2.577088680193272 11.75577224359357 -2.625974774347513 11.86384865128812 -2.712561399909004 11.74866162454194 -2.689746790882088 -12.66282470131991 -0.7703015141692573 -12.63789468173582 -0.8332199780093381 -12.7893008948975 -0.8058556451738165 -12.42167249640617 -0.5929351130584185 -12.28646030539558 -0.5744824291765425 -12.2831707763391 -0.6461281874960041 -4.690159170759388 -9.215779302306514 -4.62245131688605 -9.137747522884199 -4.563762793138021 -9.17319511605838 12.70399787726469 -0.08200532495677756 12.59439955775383 -0.06030497090109629 12.60566385994444 0.0100626524788951 12.61640793213024 -0.1023569909323241 12.6304044421532 -0.1654198673449201 12.49827414866427 -0.08512560844670043 -11.67350323515287 -3.288010248492187 -11.80204843882791 -3.311238971525278 -11.846820292182 -3.255535621580952 -12.48538805670654 -0.59129550450552 -12.48811697465957 -0.5196351760705164 -12.33725850261272 -0.5786498228314776 -10.50563804373145 -5.580884561568996 -10.37647905207472 -5.5534926342502 -10.48223632086638 -5.636103579282757 12.26433931610314 -1.606192561422027 12.2382986223441 -1.67409303859007 12.13387420455086 -1.591030891722805 12.25008523136633 -1.651601640595737 12.13164251785821 -1.635736838902463 12.14548500515366 -1.568676501068125 12.45898529356781 0.06265792421729399 12.59305490883578 -0.01562164687526756 12.46274646214888 0.0004132969269934617 -11.78705701281359 -3.145702805812931 -11.76049531113983 -3.203525023142638 -11.93312207740811 -3.168849634525575 -12.48802585516416 -0.5194814619330627 -12.3398577858151 -0.5068274917863478 -12.33716744915971 -0.5784962131693596 -10.80976664562027 -5.00053219044899 -10.77723945394556 -5.048177494912495 -10.90821893477896 -5.069560801012446 10.68389964464171 -2.503523768390299 10.65940534287381 -2.568672673545232 10.53444531774685 -2.49359210205869 11.18407651756669 1.693274869997672 11.20252889825199 1.632674230747778 11.04684961283824 1.704870363887166 -10.06808402359556 -4.910543599436745 -10.21696107594429 -4.925582567577007 -10.25872359456791 -4.873614434076883 -10.7816665529123 -0.4648133065879106 -10.95109552754286 -0.4724726394720479 -10.95300623200576 -0.4007884327468569 -12.30908038002033 1.740118222142352 -12.16332030314266 1.730537365504907 -12.32385807588184 1.687300798036264 -12.20876008939372 1.568895762789303 -12.20352521299595 1.520487039089596 -12.34947627949594 1.52805768223384 10.60534147703649 -2.640136696809395 10.46803189022016 -2.629163630984892 10.48068895447858 -2.564740459846621 11.1572787914086 1.617496273057383 11.00776963092635 1.627958053809139 11.00123978666344 1.68921021825032 -10.22928332495867 -4.858430103010528 -10.20826288899793 -4.911140997368372 -10.39813383988574 -4.871837620040224 -10.78215597732558 -0.4656464671670826 -10.95349585095464 -0.4016219155005061 -10.78408957030241 -0.3939673121257168 -9.699595093495944 5.775912464707766 -9.536309214523842 5.747275989514788 -9.723468536318375 5.73110556445044 8.665189670607965 -2.996047723033286 8.645332841270562 -3.059336570399545 8.49905097107551 -2.989800264909472 9.040807845074188 2.520450967274743 9.057325119261686 2.460372842151566 8.888248850721846 2.528343927701152 -8.12958098266942 -6.08372138608525 -8.295508498011042 -6.093180139383154 -8.328721898618415 -6.044505563437614 -8.672207449606802 -0.3716241419591361 -8.860448226334816 -0.3755544401733517 -8.861624165207038 -0.3038651157676479 -8.673389915837582 -0.373705239891557 -8.862807031354816 -0.3059469055392942 -8.67458805903075 -0.3020321883300314 -9.832646750119491 5.392998362967258 -9.832473836806617 5.349290839839418 -9.997025549394298 5.373023407964293 8.575783519388756 -3.154262665406538 8.423197819176439 -3.146695911335647 8.429752763263647 -3.084400491640864 8.99728339693395 2.405265479481248 8.831127768129674 2.411791497874662 8.827933938632205 2.472814376969788 -8.334586758656092 -6.111197157968449 -8.324437661620836 -6.159874202813236 -8.522696161312483 -6.117982771918519 -6.377544179146341 -0.3103605142503153 -6.576570181989181 -0.3121674903087746 -6.577067006288759 -0.2404893070979254 -6.92624851164522 7.440383425074537 -6.744319709033606 7.404698113182658 -6.94324404247165 7.398770758029583 6.42893787304784 -3.3565738762113 6.416546647835457 -3.418317624762302 6.253206074137435 -3.352311352956643 6.716822531297657 2.942347538293593 6.72753624867111 2.881857282507835 6.555455076872859 2.948252037061713 -5.961504567206625 -7.033789168623536 -6.137089499438966 -7.040375504351062 -6.158074207712867 -6.993892333598071 -6.198563300694816 -7.116947799031139 -6.201960465062159 -7.162881452958369 -6.397561210177187 -7.120139189853734 -6.379592733052274 -0.3140210896168131 -6.579116187902246 -0.2441509917345677 -6.380062631985634 -0.2423322560992763 -7.130691912037596 7.081262166481328 -7.122500172632322 7.039563654134417 -7.30593463043105 7.070108838600221 6.340075997570792 -3.530611999909155 6.178698014784366 -3.524888339870417 6.176952111102356 -3.464274940928936 6.673710039240254 2.819823577916315 6.498014450153883 2.824219524485156 6.501442688301053 2.885918880306083</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2670\" source=\"#ID1681\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1677\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1675\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1676\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"890\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1677\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1678\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 3 6 4 2 5 1 6 0 7 8 8 10 9 0 10 11 11 14 12 15 13 16 14 2 15 6 16 20 17 22 18 16 19 23 20 0 21 26 22 8 23 28 24 0 25 10 26 10 27 11 28 30 29 32 30 15 31 14 32 14 33 16 34 22 35 20 36 6 37 34 38 11 39 36 40 30 41 22 42 23 43 38 44 8 45 26 46 40 47 0 48 28 49 26 50 42 51 43 52 44 53 48 54 49 55 42 56 52 57 53 58 54 59 32 60 58 61 15 62 60 63 52 64 61 65 20 66 34 67 64 68 30 69 36 70 66 71 68 72 61 73 69 74 38 75 23 76 72 77 26 78 74 79 40 80 28 81 76 82 26 83 43 84 53 85 44 86 49 87 43 88 42 89 78 90 49 91 48 92 54 93 53 94 80 95 60 96 53 97 52 98 32 99 82 100 58 101 68 102 60 103 61 104 64 105 34 106 84 107 36 108 64 109 66 110 78 111 48 112 86 113 88 114 68 115 69 116 38 117 72 118 90 119 40 120 74 121 92 122 26 123 76 124 74 125 44 126 53 127 94 128 96 129 80 130 97 131 100 132 97 133 101 134 54 135 80 136 96 137 53 138 60 139 94 140 58 141 82 142 104 143 60 144 68 145 106 146 64 147 84 148 108 149 110 150 66 151 64 152 78 153 86 154 112 155 68 156 88 157 114 158 88 159 69 160 116 161 90 162 72 163 118 164 74 165 120 166 92 167 76 168 122 169 74 170 96 171 97 172 100 173 100 174 101 175 124 176 94 177 60 178 106 179 82 180 126 181 104 182 106 183 68 184 114 185 108 186 84 187 128 188 108 189 110 190 64 191 112 192 86 193 130 194 124 195 101 196 132 197 114 198 88 199 134 200 136 201 88 202 116 203 90 204 118 205 138 206 92 207 120 208 140 209 74 210 122 211 120 212 126 213 142 214 143 215 104 216 126 217 143 218 122 219 146 220 120 221 148 222 108 223 128 224 150 225 110 226 108 227 112 228 130 229 152 230 132 231 154 232 124 233 146 234 156 235 157 236 134 237 88 238 136 239 136 240 116 241 160 242 118 243 162 244 138 245 120 246 157 247 140 248 143 249 142 250 164 251 120 252 146 253 157 254 166 255 148 256 128 257 148 258 150 259 108 260 152 261 130 262 168 263 132 264 170 265 154 266 142 267 172 268 164 269 157 270 156 271 174 272 134 273 136 274 176 275 178 276 136 277 160 278 138 279 162 280 180 281 140 282 157 283 182 284 184 285 148 286 166 287 186 288 150 289 148 290 152 291 168 292 188 293 170 294 190 295 154 296 164 297 172 298 192 299 157 300 174 301 182 302 156 303 194 304 174 305 176 306 136 307 178 308 178 309 160 310 196 311 162 312 198 313 180 314 200 315 184 316 166 317 184 318 186 319 148 320 188 321 168 322 202 323 170 324 188 325 190 326 172 327 204 328 192 329 182 330 174 331 206 332 174 333 194 334 208 335 176 336 178 337 210 338 212 339 178 340 196 341 180 342 198 343 214 344 216 345 184 346 200 347 218 348 186 349 184 350 188 351 202 352 220 353 188 354 222 355 190 356 192 357 204 358 224 359 198 360 226 361 214 362 174 363 208 364 206 365 194 366 228 367 208 368 210 369 178 370 212 371 212 372 196 373 230 374 232 375 216 376 200 377 216 378 218 379 184 380 202 381 234 382 220 383 188 384 220 385 222 386 224 387 204 388 236 389 214 390 226 391 238 392 206 393 208 394 240 395 208 396 228 397 242 398 210 399 212 400 244 401 212 402 230 403 246 404 248 405 216 406 232 407 250 408 218 409 216 410 220 411 234 412 252 413 220 414 254 415 222 416 224 417 236 418 256 419 230 420 258 421 246 422 226 423 260 424 238 425 240 426 208 427 242 428 228 429 262 430 242 431 244 432 212 433 264 434 266 435 248 436 232 437 248 438 250 439 216 440 234 441 268 442 252 443 220 444 252 445 254 446 256 447 236 448 270 449 246 450 258 451 272 452 238 453 260 454 274 455 240 456 242 457 276 458 242 459 262 460 278 461 280 462 244 463 264 464 282 465 248 466 266 467 284 468 250 469 248 470 252 471 268 472 286 473 252 474 288 475 254 476 256 477 270 478 290 479 280 480 264 481 272 482 258 483 292 484 272 485 260 486 294 487 274 488 276 489 242 490 296 491 262 492 298 493 278 494 300 495 282 496 266 497 282 498 284 499 248 500 268 501 302 502 286 503 252 504 286 505 288 506 290 507 270 508 304 509 306 510 280 511 272 512 272 513 292 514 308 515 294 516 310 517 274 518 276 519 296 520 312 521 278 522 298 523 314 524 316 525 282 526 300 527 318 528 284 529 282 530 286 531 302 532 320 533 286 534 322 535 288 536 290 537 304 538 324 539 314 540 298 541 326 542 308 543 306 544 272 545 292 546 328 547 308 548 294 549 330 550 310 551 296 552 314 553 312 554 332 555 316 556 300 557 316 558 318 559 282 560 302 561 334 562 320 563 286 564 320 565 322 566 324 567 304 568 336 569 314 570 326 571 338 572 340 573 306 574 308 575 308 576 328 577 342 578 330 579 344 580 310 581 312 582 314 583 346 584 348 585 316 586 332 587 316 588 350 589 318 590 320 591 334 592 352 593 354 594 322 595 320 596 356 597 324 598 336 599 314 600 338 601 346 602 338 603 326 604 358 605 342 606 340 607 308 608 328 609 360 610 342 611 362 612 344 613 330 614 364 615 348 616 332 617 366 618 350 619 316 620 334 621 368 622 352 623 352 624 354 625 320 626 356 627 336 628 370 629 346 630 338 631 372 632 338 633 358 634 374 635 376 636 340 637 342 638 378 639 342 640 360 641 362 642 380 643 344 644 382 645 348 646 364 647 366 648 384 649 350 650 352 651 368 652 386 653 388 654 354 655 352 656 390 657 356 658 370 659 392 660 380 661 362 662 338 663 374 664 372 665 358 666 394 667 374 668 378 669 376 670 342 671 378 672 360 673 396 674 398 675 382 676 364 677 400 678 384 679 366 680 368 681 402 682 386 683 386 684 388 685 352 686 390 687 370 688 404 689 392 690 406 691 380 692 372 693 374 694 408 695 374 696 394 697 410 698 412 699 376 700 378 701 414 702 378 703 396 704 398 705 416 706 382 707 418 708 384 709 400 710 402 711 420 712 386 713 422 714 388 715 386 716 424 717 390 718 404 719 414 720 396 721 426 722 428 723 406 724 392 725 374 726 410 727 408 728 394 729 430 730 410 731 414 732 412 733 378 734 432 735 416 736 398 737 416 738 418 739 400 740 402 741 434 742 420 743 420 744 422 745 386 746 436 747 424 748 404 749 438 750 414 751 426 752 428 753 440 754 406 755 408 756 410 757 442 758 410 759 430 760 444 761 446 762 412 763 414 764 432 765 448 766 416 767 450 768 418 769 416 770 434 771 452 772 420 773 454 774 422 775 420 776 456 777 424 778 436 779 438 780 446 781 414 782 438 783 426 784 458 785 460 786 440 787 428 788 410 789 444 790 442 791 430 792 462 793 444 794 464 795 448 796 432 797 448 798 450 799 416 800 466 801 452 802 434 803 452 804 454 805 420 806 468 807 456 808 436 809 470 810 446 811 438 812 472 813 438 814 458 815 460 816 474 817 440 818 442 819 444 820 476 821 444 822 462 823 478 824 480 825 448 826 464 827 482 828 450 829 448 830 466 831 484 832 452 833 452 834 486 835 454 836 488 837 456 838 468 839 462 840 490 841 478 842 472 843 470 844 438 845 472 846 458 847 492 848 494 849 474 850 460 851 444 852 478 853 476 854 496 855 480 856 464 857 480 858 482 859 448 860 498 861 484 862 466 863 452 864 484 865 486 866 500 867 488 868 468 869 478 870 490 871 502 872 472 873 504 874 470 875 506 876 472 877 492 878 508 879 474 880 494 881 476 882 478 883 510 884 512 885 480 886 496 887 514 888 482 889 480 890 498 891 516 892 484 893 484 894 518 895 486 896 520 897 488 898 500 899 478 900 502 901 510 902 490 903 522 904 502 905 524 906 504 907 472 908 506 909 492 910 526 911 528 912 508 913 494 914 530 915 512 916 496 917 512 918 514 919 480 920 532 921 516 922 498 923 484 924 516 925 518 926 534 927 520 928 500 929 510 930 502 931 536 932 502 933 522 934 538 935 524 936 540 937 504 938 542 939 506 940 526 941 544 942 508 943 528 944 546 945 512 946 530 947 548 948 514 949 512 950 532 951 550 952 516 953 516 954 552 955 518 956 554 957 520 958 534 959 556 960 544 961 528 962 502 963 538 964 536 965 522 966 558 967 538 968 560 969 540 970 524 971 542 972 526 973 562 974 564 975 546 976 530 977 546 978 548 979 512 980 566 981 550 982 532 983 516 984 550 985 552 986 568 987 554 988 534 989 570 990 544 991 556 992 538 993 572 994 536 995 538 996 558 997 574 998 560 999 576 1000 540 1001 562 1002 578 1003 542 1004 580 1005 546 1006 564 1007 582 1008 548 1009 546 1010 584 1011 550 1012 566 1013 550 1014 586 1015 552 1016 568 1017 588 1018 554 1019 590 1020 578 1021 562 1022 592 1023 570 1024 556 1025 574 1026 572 1027 538 1028 558 1029 594 1030 574 1031 596 1032 576 1033 560 1034 598 1035 580 1036 564 1037 580 1038 582 1039 546 1040 600 1041 584 1042 566 1043 550 1044 584 1045 586 1046 602 1047 588 1048 568 1049 590 1050 604 1051 578 1052 606 1053 570 1054 592 1055 574 1056 608 1057 572 1058 610 1059 574 1060 594 1061 596 1062 612 1063 576 1064 614 1065 580 1066 598 1067 616 1068 582 1069 580 1070 618 1071 584 1072 600 1073 584 1074 620 1075 586 1076 602 1077 622 1078 588 1079 596 1080 624 1081 612 1082 626 1083 604 1084 590 1085 628 1086 606 1087 592 1088 630 1089 608 1090 574 1091 632 1092 610 1093 594 1094 634 1095 614 1096 598 1097 614 1098 616 1099 580 1100 636 1101 618 1102 600 1103 584 1104 618 1105 620 1106 638 1107 622 1108 602 1109 612 1110 624 1111 640 1112 626 1113 642 1114 604 1115 644 1116 606 1117 628 1118 646 1119 608 1120 630 1121 648 1122 610 1123 632 1124 650 1125 614 1126 634 1127 616 1128 614 1129 652 1130 654 1131 618 1132 636 1133 618 1134 656 1135 620 1136 638 1137 658 1138 622 1139 660 1140 648 1141 632 1142 624 1143 662 1144 640 1145 664 1146 642 1147 626 1148 644 1149 628 1150 666 1151 668 1152 646 1153 630 1154 670 1155 650 1156 634 1157 652 1158 614 1159 650 1160 672 1161 654 1162 636 1163 618 1164 674 1165 656 1166 676 1167 658 1168 638 1169 660 1170 678 1171 648 1172 640 1173 662 1174 680 1175 664 1176 682 1177 642 1178 644 1179 666 1180 684 1181 686 1182 646 1183 668 1184 650 1185 670 1186 688 1187 652 1188 650 1189 690 1190 692 1191 654 1192 672 1193 656 1194 674 1195 694 1196 676 1197 696 1198 658 1199 678 1200 686 1201 668 1202 698 1203 678 1204 660 1205 662 1206 682 1207 680 1208 700 1209 682 1210 664 1211 684 1212 666 1213 702 1214 670 1215 704 1216 688 1217 690 1218 650 1219 706 1220 708 1221 692 1222 672 1223 694 1224 674 1225 710 1226 676 1227 712 1228 696 1229 686 1230 678 1231 714 1232 678 1233 698 1234 716 1235 680 1236 682 1237 718 1238 720 1239 682 1240 700 1241 684 1242 702 1243 722 1244 688 1245 704 1246 724 1247 690 1248 706 1249 726 1250 728 1251 692 1252 708 1253 694 1254 710 1255 730 1256 712 1257 732 1258 696 1259 722 1260 702 1261 734 1262 678 1263 716 1264 714 1265 698 1266 736 1267 716 1268 682 1269 720 1270 718 1271 720 1272 700 1273 738 1274 724 1275 704 1276 740 1277 706 1278 742 1279 726 1280 744 1281 728 1282 708 1283 730 1284 710 1285 746 1286 712 1287 748 1288 732 1289 722 1290 734 1291 750 1292 714 1293 716 1294 752 1295 716 1296 736 1297 754 1298 718 1299 720 1300 756 1301 758 1302 720 1303 738 1304 724 1305 740 1306 760 1307 726 1308 742 1309 762 1310 764 1311 728 1312 744 1313 730 1314 746 1315 766 1316 732 1317 748 1318 768 1319 758 1320 738 1321 770 1322 750 1323 734 1324 772 1325 716 1326 754 1327 752 1328 736 1329 774 1330 754 1331 720 1332 758 1333 756 1334 760 1335 740 1336 776 1337 742 1338 760 1339 762 1340 764 1341 744 1342 778 1343 766 1344 746 1345 780 1346 748 1347 782 1348 768 1349 784 1350 758 1351 770 1352 750 1353 772 1354 786 1355 752 1356 754 1357 788 1358 754 1359 774 1360 790 1361 756 1362 758 1363 792 1364 760 1365 776 1366 794 1367 796 1368 762 1369 760 1370 764 1371 778 1372 798 1373 780 1374 800 1375 766 1376 768 1377 782 1378 802 1379 758 1380 784 1381 792 1382 784 1383 770 1384 804 1385 786 1386 772 1387 806 1388 754 1389 790 1390 788 1391 774 1392 808 1393 790 1394 794 1395 776 1396 810 1397 794 1398 796 1399 760 1400 798 1401 778 1402 812 1403 780 1404 814 1405 800 1406 782 1407 816 1408 802 1409 792 1410 784 1411 818 1412 820 1413 784 1414 804 1415 786 1416 806 1417 822 1418 788 1419 790 1420 824 1421 790 1422 808 1423 826 1424 828 1425 794 1426 810 1427 830 1428 796 1429 794 1430 798 1431 812 1432 832 1433 814 1434 834 1435 800 1436 802 1437 816 1438 836 1439 808 1440 838 1441 826 1442 818 1443 784 1444 820 1445 820 1446 804 1447 840 1448 806 1449 842 1450 822 1451 790 1452 826 1453 824 1454 844 1455 828 1456 810 1457 828 1458 830 1459 794 1460 832 1461 812 1462 846 1463 814 1464 848 1465 834 1466 816 1467 850 1468 836 1469 826 1470 838 1471 852 1472 818 1473 820 1474 854 1475 856 1476 820 1477 840 1478 822 1479 842 1480 858 1481 824 1482 826 1483 860 1484 862 1485 828 1486 844 1487 864 1488 830 1489 828 1490 832 1491 846 1492 866 1493 848 1494 868 1495 834 1496 836 1497 850 1498 870 1499 826 1500 852 1501 860 1502 838 1503 872 1504 852 1505 854 1506 820 1507 856 1508 856 1509 840 1510 874 1511 842 1512 876 1513 858 1514 878 1515 862 1516 844 1517 862 1518 864 1519 828 1520 866 1521 846 1522 880 1523 848 1524 866 1525 868 1526 850 1527 882 1528 870 1529 860 1530 852 1531 884 1532 852 1533 872 1534 886 1535 854 1536 856 1537 888 1538 890 1539 856 1540 874 1541 858 1542 876 1543 892 1544 894 1545 862 1546 878 1547 896 1548 864 1549 862 1550 866 1551 880 1552 898 1553 866 1554 900 1555 868 1556 870 1557 882 1558 902 1559 876 1560 904 1561 892 1562 852 1563 886 1564 884 1565 872 1566 906 1567 886 1568 888 1569 856 1570 890 1571 890 1572 874 1573 908 1574 910 1575 894 1576 878 1577 894 1578 896 1579 862 1580 880 1581 912 1582 898 1583 866 1584 898 1585 900 1586 902 1587 882 1588 914 1589 892 1590 904 1591 916 1592 884 1593 886 1594 918 1595 886 1596 906 1597 920 1598 888 1599 890 1600 922 1601 890 1602 908 1603 924 1604 926 1605 894 1606 910 1607 928 1608 896 1609 894 1610 898 1611 912 1612 930 1613 898 1614 932 1615 900 1616 902 1617 914 1618 934 1619 908 1620 936 1621 924 1622 904 1623 938 1624 916 1625 918 1626 886 1627 920 1628 906 1629 940 1630 920 1631 922 1632 890 1633 942 1634 944 1635 926 1636 910 1637 926 1638 928 1639 894 1640 912 1641 946 1642 930 1643 898 1644 930 1645 932 1646 934 1647 914 1648 948 1649 924 1650 936 1651 950 1652 916 1653 938 1654 952 1655 918 1656 920 1657 954 1658 920 1659 940 1660 956 1661 958 1662 922 1663 942 1664 960 1665 926 1666 944 1667 962 1668 928 1669 926 1670 930 1671 946 1672 964 1673 930 1674 966 1675 932 1676 934 1677 948 1678 968 1679 958 1680 942 1681 950 1682 936 1683 970 1684 950 1685 938 1686 972 1687 952 1688 954 1689 920 1690 974 1691 956 1692 940 1693 976 1694 978 1695 960 1696 944 1697 960 1698 962 1699 926 1700 946 1701 980 1702 964 1703 930 1704 964 1705 966 1706 968 1707 948 1708 982 1709 984 1710 958 1711 950 1712 950 1713 970 1714 986 1715 972 1716 988 1717 952 1718 954 1719 974 1720 990 1721 956 1722 976 1723 992 1724 994 1725 960 1726 978 1727 996 1728 962 1729 960 1730 964 1731 980 1732 998 1733 964 1734 1000 1735 966 1736 968 1737 982 1738 1002 1739 992 1740 976 1741 1004 1742 986 1743 984 1744 950 1745 970 1746 1006 1747 986 1748 972 1749 1008 1750 988 1751 974 1752 992 1753 990 1754 1010 1755 994 1756 978 1757 994 1758 996 1759 960 1760 980 1761 1012 1762 998 1763 964 1764 998 1765 1000 1766 1002 1767 982 1768 1014 1769 992 1770 1004 1771 1016 1772 1018 1773 984 1774 986 1775 986 1776 1006 1777 1020 1778 1008 1779 1022 1780 988 1781 990 1782 992 1783 1024 1784 1026 1785 994 1786 1010 1787 994 1788 1028 1789 996 1790 998 1791 1012 1792 1030 1793 1032 1794 1000 1795 998 1796 1034 1797 1002 1798 1014 1799 992 1800 1016 1801 1024 1802 1016 1803 1004 1804 1036 1805 1020 1806 1018 1807 986 1808 1006 1809 1038 1810 1020 1811 1040 1812 1022 1813 1008 1814 1042 1815 1026 1816 1010 1817 1044 1818 1028 1819 994 1820 1012 1821 1046 1822 1030 1823 1030 1824 1032 1825 998 1826 1034 1827 1014 1828 1048 1829 1024 1830 1016 1831 1050 1832 1016 1833 1036 1834 1052 1835 1054 1836 1018 1837 1020 1838 1056 1839 1020 1840 1038 1841 1040 1842 1058 1843 1022 1844 1060 1845 1026 1846 1042 1847 1044 1848 1062 1849 1028 1850 1030 1851 1046 1852 1064 1853 1066 1854 1032 1855 1030 1856 1068 1857 1034 1858 1048 1859 1070 1860 1058 1861 1040 1862 1016 1863 1052 1864 1050 1865 1036 1866 1072 1867 1052 1868 1056 1869 1054 1870 1020 1871 1056 1872 1038 1873 1074 1874 1076 1875 1060 1876 1042 1877 1078 1878 1062 1879 1044 1880 1046 1881 1080 1882 1064 1883 1064 1884 1066 1885 1030 1886 1068 1887 1048 1888 1082 1889 1070 1890 1084 1891 1058 1892 1050 1893 1052 1894 1086 1895 1052 1896 1072 1897 1088 1898 1090 1899 1054 1900 1056 1901 1092 1902 1056 1903 1074 1904 1076 1905 1094 1906 1060 1907 1096 1908 1062 1909 1078 1910 1080 1911 1098 1912 1064 1913 1100 1914 1066 1915 1064 1916 1102 1917 1068 1918 1082 1919 1092 1920 1074 1921 1104 1922 1106 1923 1084 1924 1070 1925 1052 1926 1088 1927 1086 1928 1072 1929 1108 1930 1088 1931 1092 1932 1090 1933 1056 1934 1110 1935 1094 1936 1076 1937 1094 1938 1096 1939 1078 1940 1080 1941 1112 1942 1098 1943 1114 1944 1100 1945 1064 1946 1116 1947 1102 1948 1082 1949 1118 1950 1092 1951 1104 1952 1106 1953 1120 1954 1084 1955 1086 1956 1088 1957 1122 1958 1088 1959 1108 1960 1124 1961 1126 1962 1090 1963 1092 1964 1110 1965 1128 1966 1094 1967 1130 1968 1096 1969 1094 1970 1112 1971 1132 1972 1098 1973 1114 1974 1134 1975 1100 1976 1136 1977 1102 1978 1116 1979 1118 1980 1126 1981 1092 1982 1118 1983 1104 1984 1138 1985 1140 1986 1120 1987 1106 1988 1088 1989 1124 1990 1122 1991 1108 1992 1142 1993 1124 1994 1144 1995 1128 1996 1110 1997 1128 1998 1130 1999 1094 2000 1146 2001 1132 2002 1112 2003 1114 2004 1132 2005 1134 2006 1148 2007 1136 2008 1116 2009 1150 2010 1126 2011 1118 2012 1152 2013 1118 2014 1138 2015 1140 2016 1154 2017 1120 2018 1122 2019 1124 2020 1156 2021 1124 2022 1142 2023 1158 2024 1160 2025 1128 2026 1144 2027 1162 2028 1130 2029 1128 2030 1146 2031 1164 2032 1132 2033 1132 2034 1166 2035 1134 2036 1168 2037 1136 2038 1148 2039 1142 2040 1170 2041 1158 2042 1152 2043 1150 2044 1118 2045 1152 2046 1138 2047 1172 2048 1174 2049 1154 2050 1140 2051 1124 2052 1158 2053 1156 2054 1176 2055 1160 2056 1144 2057 1160 2058 1162 2059 1128 2060 1178 2061 1164 2062 1146 2063 1132 2064 1164 2065 1166 2066 1180 2067 1168 2068 1148 2069 1158 2070 1170 2071 1182 2072 1152 2073 1184 2074 1150 2075 1186 2076 1152 2077 1172 2078 1188 2079 1154 2080 1174 2081 1156 2082 1158 2083 1190 2084 1192 2085 1160 2086 1176 2087 1194 2088 1162 2089 1160 2090 1178 2091 1196 2092 1164 2093 1164 2094 1198 2095 1166 2096 1200 2097 1168 2098 1180 2099 1158 2100 1182 2101 1190 2102 1170 2103 1202 2104 1182 2105 1204 2106 1184 2107 1152 2108 1186 2109 1172 2110 1206 2111 1208 2112 1188 2113 1174 2114 1210 2115 1192 2116 1176 2117 1192 2118 1194 2119 1160 2120 1212 2121 1196 2122 1178 2123 1164 2124 1196 2125 1198 2126 1214 2127 1200 2128 1180 2129 1190 2130 1182 2131 1216 2132 1182 2133 1202 2134 1218 2135 1204 2136 1220 2137 1184 2138 1222 2139 1186 2140 1206 2141 1224 2142 1188 2143 1208 2144 1226 2145 1224 2146 1208 2147 1182 2148 1218 2149 1216 2150 1202 2151 1228 2152 1218 2153 1230 2154 1220 2155 1204 2156 1222 2157 1206 2158 1232 2159 1234 2160 1224 2161 1226 2162 1218 2163 1236 2164 1216 2165 1238 2166 1218 2167 1228 2168 1230 2169 1240 2170 1220 2171 1232 2172 1242 2173 1222 2174 1244 2175 1242 2176 1232 2177 1246 2178 1234 2179 1226 2180 1238 2181 1236 2182 1218 2183 1248 2184 1238 2185 1228 2186 1250 2187 1240 2188 1230 2189 1244 2190 1252 2191 1242 2192 1254 2193 1234 2194 1246 2195 1238 2196 1256 2197 1236 2198 1258 2199 1238 2200 1248 2201 1250 2202 1260 2203 1240 2204 1250 2205 1262 2206 1260 2207 1264 2208 1252 2209 1244 2210 1266 2211 1254 2212 1246 2213 1268 2214 1256 2215 1238 2216 1270 2217 1258 2218 1248 2219 1260 2220 1262 2221 1272 2222 1264 2223 1274 2224 1252 2225 1276 2226 1254 2227 1266 2228 1278 2229 1256 2230 1268 2231 1280 2232 1258 2233 1270 2234 1282 2235 1280 2236 1270 2237 1262 2238 1284 2239 1272 2240 1286 2241 1274 2242 1264 2243 1276 2244 1266 2245 1288 2246 1280 2247 1278 2248 1268 2249 1282 2250 1290 2251 1280 2252 1272 2253 1284 2254 1292 2255 1286 2256 1294 2257 1274 2258 1276 2259 1288 2260 1296 2261 1278 2262 1280 2263 1298 2264 1280 2265 1290 2266 1298 2267 1300 2268 1290 2269 1282 2270 1284 2271 1294 2272 1292 2273 1302 2274 1294 2275 1286 2276 1296 2277 1288 2278 1304 2279 1298 2280 1290 2281 1306 2282 1290 2283 1300 2284 1308 2285 1292 2286 1294 2287 1310 2288 1312 2289 1294 2290 1302 2291 1296 2292 1304 2293 1314 2294 1314 2295 1304 2296 1316 2297 1290 2298 1308 2299 1306 2300 1300 2301 1318 2302 1308 2303 1294 2304 1312 2305 1310 2306 1312 2307 1302 2308 1320 2309 1314 2310 1316 2311 1322 2312 1306 2313 1308 2314 1324 2315 1308 2316 1318 2317 1326 2318 1310 2319 1312 2320 1328 2321 1330 2322 1312 2323 1320 2324 1330 2325 1320 2326 1332 2327 1322 2328 1316 2329 1334 2330 1308 2331 1326 2332 1324 2333 1318 2334 1336 2335 1326 2336 1312 2337 1330 2338 1328 2339 1338 2340 1330 2341 1332 2342 1322 2343 1334 2344 1340 2345 1324 2346 1326 2347 1342 2348 1326 2349 1336 2350 1344 2351 1328 2352 1330 2353 1346 2354 1330 2355 1338 2356 1346 2357 1338 2358 1332 2359 1348 2360 1340 2361 1334 2362 1350 2363 1326 2364 1344 2365 1342 2366 1336 2367 1352 2368 1344 2369 1346 2370 1338 2371 1354 2372 1356 2373 1338 2374 1348 2375 1340 2376 1350 2377 1358 2378 1342 2379 1344 2380 1360 2381 1344 2382 1352 2383 1362 2384 1352 2385 1364 2386 1362 2387 1354 2388 1338 2389 1356 2390 1356 2391 1348 2392 1366 2393 1350 2394 1368 2395 1358 2396 1344 2397 1362 2398 1360 2399 1362 2400 1364 2401 1370 2402 1354 2403 1356 2404 1372 2405 1374 2406 1356 2407 1366 2408 1358 2409 1368 2410 1376 2411 1360 2412 1362 2413 1378 2414 1362 2415 1370 2416 1378 2417 1364 2418 1380 2419 1370 2420 1372 2421 1356 2422 1374 2423 1374 2424 1366 2425 1382 2426 1368 2427 1384 2428 1376 2429 1378 2430 1370 2431 1386 2432 1370 2433 1380 2434 1388 2435 1372 2436 1374 2437 1390 2438 1392 2439 1374 2440 1382 2441 1376 2442 1384 2443 1394 2444 1384 2445 1396 2446 1394 2447 1370 2448 1388 2449 1386 2450 1380 2451 1398 2452 1388 2453 1390 2454 1374 2455 1392 2456 1392 2457 1382 2458 1400 2459 1394 2460 1396 2461 1402 2462 1386 2463 1388 2464 1404 2465 1388 2466 1398 2467 1406 2468 1390 2469 1392 2470 1408 2471 1392 2472 1400 2473 1410 2474 1400 2475 1412 2476 1410 2477 1396 2478 1414 2479 1402 2480 1404 2481 1388 2482 1406 2483 1398 2484 1416 2485 1406 2486 1408 2487 1392 2488 1418 2489 1410 2490 1412 2491 1420 2492 1402 2493 1414 2494 1422 2495 1404 2496 1406 2497 1424 2498 1406 2499 1416 2500 1426 2501 1428 2502 1408 2503 1418 2504 1428 2505 1418 2506 1420 2507 1412 2508 1430 2509 1420 2510 1414 2511 1432 2512 1422 2513 1424 2514 1406 2515 1434 2516 1426 2517 1416 2518 1436 2519 1438 2520 1428 2521 1420 2522 1420 2523 1430 2524 1440 2525 1432 2526 1442 2527 1422 2528 1424 2529 1434 2530 1444 2531 1426 2532 1436 2533 1446 2534 1446 2535 1436 2536 1448 2537 1440 2538 1438 2539 1420 2540 1430 2541 1450 2542 1440 2543 1432 2544 1452 2545 1442 2546 1434 2547 1446 2548 1444 2549 1446 2550 1448 2551 1454 2552 1456 2553 1438 2554 1440 2555 1440 2556 1450 2557 1458 2558 1452 2559 1460 2560 1442 2561 1444 2562 1446 2563 1462 2564 1446 2565 1454 2566 1462 2567 1454 2568 1448 2569 1464 2570 1458 2571 1456 2572 1440 2573 1450 2574 1466 2575 1458 2576 1468 2577 1460 2578 1452 2579 1462 2580 1454 2581 1470 2582 1454 2583 1464 2584 1472 2585 1474 2586 1456 2587 1458 2588 1476 2589 1458 2590 1466 2591 1468 2592 1478 2593 1460 2594 1480 2595 1478 2596 1468 2597 1454 2598 1472 2599 1470 2600 1464 2601 1482 2602 1472 2603 1476 2604 1474 2605 1458 2606 1476 2607 1466 2608 1484 2609 1480 2610 1486 2611 1478 2612 1470 2613 1472 2614 1488 2615 1472 2616 1482 2617 1490 2618 1492 2619 1474 2620 1476 2621 1494 2622 1476 2623 1484 2624 1494 2625 1484 2626 1496 2627 1498 2628 1486 2629 1480 2630 1472 2631 1490 2632 1488 2633 1482 2634 1500 2635 1490 2636 1494 2637 1492 2638 1476 2639 1502 2640 1494 2641 1496 2642 1498 2643 1504 2644 1486 2645 1488 2646 1490 2647 1506 2648 1490 2649 1500 2650 1508 2651 1510 2652 1492 2653 1494 2654 1502 2655 1510 2656 1494 2657 1502 2658 1496 2659 1512 2660 1514 2661 1504 2662 1498 2663 1490 2664 1508 2665 1506 2666 1500 2667 1516 2668 1508 2669</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"890\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1677\" />\r\n\t\t\t\t\t<p>3 4 5 3 7 4 9 5 4 12 5 13 17 18 19 21 7 3 24 17 25 9 27 5 13 5 29 31 12 13 19 18 33 25 17 19 35 7 21 31 37 12 39 24 25 41 27 9 27 29 5 45 46 47 47 50 51 55 56 57 18 59 33 62 57 63 65 35 21 67 37 31 70 62 71 73 24 39 41 75 27 27 77 29 45 56 46 47 46 50 51 50 79 81 56 55 57 56 63 59 83 33 62 63 71 85 35 65 67 65 37 87 51 79 70 71 89 91 73 39 93 75 41 75 77 27 95 56 45 98 81 99 102 98 103 99 81 55 95 63 56 105 83 59 107 71 63 109 85 65 65 67 111 113 87 79 115 89 71 117 70 89 119 73 91 93 121 75 75 123 77 103 98 99 125 102 103 107 63 95 105 127 83 115 71 107 129 85 109 65 111 109 131 87 113 133 102 125 135 89 115 117 89 137 139 119 91 141 121 93 121 123 75 144 145 127 144 127 105 121 147 123 129 109 149 109 111 151 153 131 113 125 155 133 158 159 147 137 89 135 161 117 137 139 163 119 141 158 121 165 145 144 158 147 121 129 149 167 109 151 149 169 131 153 155 171 133 165 173 145 175 159 158 177 137 135 161 137 179 181 163 139 183 158 141 167 149 185 149 151 187 189 169 153 155 191 171 193 173 165 183 175 158 175 195 159 179 137 177 197 161 179 181 199 163 167 185 201 149 187 185 203 169 189 191 189 171 193 205 173 207 175 183 209 195 175 211 179 177 197 179 213 215 199 181 201 185 217 185 187 219 221 203 189 191 223 189 225 205 193 215 227 199 207 209 175 209 229 195 213 179 211 231 197 213 201 217 233 185 219 217 221 235 203 223 221 189 237 205 225 239 227 215 241 209 207 243 229 209 245 213 211 247 231 213 233 217 249 217 219 251 253 235 221 223 255 221 257 237 225 247 259 231 239 261 227 243 209 241 243 263 229 265 213 245 233 249 267 217 251 249 253 269 235 255 253 221 271 237 257 273 259 247 275 261 239 277 243 241 279 263 243 265 245 281 267 249 283 249 251 285 287 269 253 255 289 253 291 271 257 273 265 281 273 293 259 275 295 261 297 243 277 279 299 263 267 283 301 249 285 283 287 303 269 289 287 253 305 271 291 273 281 307 309 293 273 275 311 295 313 297 277 315 299 279 301 283 317 283 285 319 321 303 287 289 323 287 325 305 291 327 299 315 273 307 309 309 329 293 311 331 295 313 315 297 301 317 333 283 319 317 321 335 303 323 321 287 337 305 325 339 327 315 309 307 341 343 329 309 311 345 331 347 315 313 333 317 349 319 351 317 353 335 321 321 323 355 337 325 357 347 339 315 359 327 339 309 341 343 343 361 329 331 345 363 333 349 365 317 351 367 353 369 335 321 355 353 371 337 357 373 339 347 375 359 339 343 341 377 361 343 379 345 381 363 365 349 383 351 385 367 387 369 353 353 355 389 371 357 391 363 381 393 373 375 339 375 395 359 343 377 379 397 361 379 365 383 399 367 385 401 387 403 369 353 389 387 405 371 391 381 407 393 409 375 373 411 395 375 379 377 413 397 379 415 383 417 399 401 385 419 387 421 403 387 389 423 405 391 425 427 397 415 393 407 429 409 411 375 411 431 395 379 413 415 399 417 433 401 419 417 421 435 403 387 423 421 405 425 437 427 415 439 407 441 429 443 411 409 445 431 411 415 413 447 417 449 433 417 419 451 421 453 435 421 423 455 437 425 457 415 447 439 459 427 439 429 441 461 443 445 411 445 463 431 433 449 465 417 451 449 435 453 467 421 455 453 437 457 469 439 447 471 459 439 473 441 475 461 477 445 443 479 463 445 465 449 481 449 451 483 453 485 467 455 487 453 469 457 489 479 491 463 439 471 473 493 459 473 461 475 495 477 479 445 465 481 497 449 483 481 467 485 499 487 485 453 469 489 501 503 491 479 471 505 473 493 473 507 495 475 509 511 479 477 497 481 513 481 483 515 485 517 499 487 519 485 501 489 521 511 503 479 503 523 491 473 505 525 527 493 507 495 509 529 497 513 531 481 515 513 499 517 533 519 517 485 501 521 535 537 503 511 539 523 503 505 541 525 527 507 543 529 509 545 531 513 547 513 515 549 517 551 533 519 553 517 535 521 555 529 545 557 537 539 503 539 559 523 525 541 561 563 527 543 531 547 565 513 549 547 533 551 567 553 551 517 535 555 569 557 545 571 537 573 539 575 559 539 541 577 561 543 579 563 565 547 581 547 549 583 567 551 585 553 587 551 555 589 569 563 579 591 557 571 593 539 573 575 575 595 559 561 577 597 565 581 599 547 583 581 567 585 601 587 585 551 569 589 603 579 605 591 593 571 607 573 609 575 595 575 611 577 613 597 599 581 615 581 583 617 601 585 619 587 621 585 589 623 603 613 625 597 591 605 627 593 607 629 575 609 631 595 611 633 599 615 635 581 617 615 601 619 637 621 619 585 603 623 639 641 625 613 605 643 627 629 607 645 631 609 647 633 611 649 635 615 651 653 615 617 637 619 655 621 657 619 623 659 639 633 649 661 641 663 625 627 643 665 667 629 645 631 647 669 635 651 671 651 615 653 637 655 673 657 675 619 639 659 677 649 679 661 681 663 641 643 683 665 685 667 645 669 647 687 689 671 651 691 651 653 673 655 693 695 675 657 659 697 677 669 687 679 661 679 699 681 683 663 665 683 701 703 667 685 689 705 671 707 651 691 673 693 709 711 675 695 697 713 677 715 679 687 717 699 679 719 683 681 701 683 721 723 703 685 725 705 689 727 707 691 709 693 729 731 711 695 697 733 713 735 703 723 715 717 679 717 737 699 719 721 683 739 701 721 741 705 725 727 743 707 709 729 745 747 711 731 733 749 713 751 735 723 753 717 715 755 737 717 757 721 719 739 721 759 761 741 725 763 743 727 745 729 765 767 747 731 769 749 733 771 739 759 773 735 751 753 755 717 755 775 737 757 759 721 777 741 761 763 761 743 779 745 765 781 747 767 769 783 749 771 759 785 787 773 751 789 755 753 791 775 755 793 759 757 795 777 761 761 763 797 799 779 765 767 801 781 803 783 769 793 785 759 805 771 785 807 773 787 789 791 755 791 809 775 811 777 795 761 797 795 813 779 799 801 815 781 803 817 783 819 785 793 805 785 821 823 807 787 825 791 789 827 809 791 811 795 829 795 797 831 833 813 799 801 835 815 837 817 803 827 839 809 821 785 819 841 805 821 823 843 807 825 827 791 811 829 845 795 831 829 847 813 833 835 849 815 837 851 817 853 839 827 855 821 819 841 821 857 859 843 823 861 827 825 845 829 863 829 831 865 867 847 833 835 869 849 871 851 837 861 853 827 853 873 839 857 821 855 875 841 857 859 877 843 845 863 879 829 865 863 881 847 867 869 867 849 871 883 851 885 853 861 887 873 853 889 857 855 875 857 891 893 877 859 879 863 895 863 865 897 899 881 867 869 901 867 903 883 871 893 905 877 885 887 853 887 907 873 891 857 889 909 875 891 879 895 911 863 897 895 899 913 881 901 899 867 915 883 903 917 905 893 919 887 885 921 907 887 923 891 889 925 909 891 911 895 927 895 897 929 931 913 899 901 933 899 935 915 903 925 937 909 917 939 905 921 887 919 921 941 907 943 891 923 911 927 945 895 929 927 931 947 913 933 931 899 949 915 935 951 937 925 953 939 917 955 921 919 957 941 921 943 923 959 945 927 961 927 929 963 965 947 931 933 967 931 969 949 935 951 943 959 951 971 937 953 973 939 975 921 955 977 941 957 945 961 979 927 963 961 965 981 947 967 965 931 983 949 969 951 959 985 987 971 951 953 989 973 991 975 955 993 977 957 979 961 995 961 963 997 999 981 965 967 1001 965 1003 983 969 1005 977 993 951 985 987 987 1007 971 989 1009 973 991 993 975 979 995 1011 961 997 995 999 1013 981 1001 999 965 1015 983 1003 1017 1005 993 987 985 1019 1021 1007 987 989 1023 1009 1025 993 991 1011 995 1027 997 1029 995 1031 1013 999 999 1001 1033 1015 1003 1035 1025 1017 993 1037 1005 1017 987 1019 1021 1021 1039 1007 1009 1023 1041 1011 1027 1043 995 1029 1045 1031 1047 1013 999 1033 1031 1049 1015 1035 1051 1017 1025 1053 1037 1017 1021 1019 1055 1039 1021 1057 1023 1059 1041 1043 1027 1061 1029 1063 1045 1065 1047 1031 1031 1033 1067 1049 1035 1069 1041 1059 1071 1051 1053 1017 1053 1073 1037 1021 1055 1057 1075 1039 1057 1043 1061 1077 1045 1063 1079 1065 1081 1047 1031 1067 1065 1083 1049 1069 1059 1085 1071 1087 1053 1051 1089 1073 1053 1057 1055 1091 1075 1057 1093 1061 1095 1077 1079 1063 1097 1065 1099 1081 1065 1067 1101 1083 1069 1103 1105 1075 1093 1071 1085 1107 1087 1089 1053 1089 1109 1073 1057 1091 1093 1077 1095 1111 1079 1097 1095 1099 1113 1081 1065 1101 1115 1083 1103 1117 1105 1093 1119 1085 1121 1107 1123 1089 1087 1125 1109 1089 1093 1091 1127 1095 1129 1111 1095 1097 1131 1099 1133 1113 1101 1135 1115 1117 1103 1137 1093 1127 1119 1139 1105 1119 1107 1121 1141 1123 1125 1089 1125 1143 1109 1111 1129 1145 1095 1131 1129 1113 1133 1147 1135 1133 1115 1117 1137 1149 1119 1127 1151 1139 1119 1153 1121 1155 1141 1157 1125 1123 1159 1143 1125 1145 1129 1161 1129 1131 1163 1133 1165 1147 1135 1167 1133 1149 1137 1169 1159 1171 1143 1119 1151 1153 1173 1139 1153 1141 1155 1175 1157 1159 1125 1145 1161 1177 1129 1163 1161 1147 1165 1179 1167 1165 1133 1149 1169 1181 1183 1171 1159 1151 1185 1153 1173 1153 1187 1175 1155 1189 1191 1159 1157 1177 1161 1193 1161 1163 1195 1165 1197 1179 1167 1199 1165 1181 1169 1201 1191 1183 1159 1183 1203 1171 1153 1185 1205 1207 1173 1187 1175 1189 1209 1177 1193 1211 1161 1195 1193 1179 1197 1213 1199 1197 1165 1181 1201 1215 1217 1183 1191 1219 1203 1183 1185 1221 1205 1207 1187 1223 1209 1189 1225 1209 1225 1227 1217 1219 1183 1219 1229 1203 1205 1221 1231 1233 1207 1223 1227 1225 1235 1217 1237 1219 1229 1219 1239 1221 1241 1231 1223 1243 1233 1233 1243 1245 1227 1235 1247 1219 1237 1239 1229 1239 1249 1231 1241 1251 1243 1253 1245 1247 1235 1255 1237 1257 1239 1249 1239 1259 1241 1261 1251 1261 1263 1251 1245 1253 1265 1247 1255 1267 1239 1257 1269 1249 1259 1271 1273 1263 1261 1253 1275 1265 1267 1255 1277 1269 1257 1279 1271 1259 1281 1271 1281 1283 1273 1285 1263 1265 1275 1287 1289 1267 1277 1269 1279 1281 1281 1291 1283 1293 1285 1273 1275 1295 1287 1297 1289 1277 1299 1281 1279 1299 1291 1281 1283 1291 1301 1293 1295 1285 1287 1295 1303 1305 1289 1297 1307 1291 1299 1309 1301 1291 1311 1295 1293 1303 1295 1313 1315 1305 1297 1317 1305 1315 1307 1309 1291 1309 1319 1301 1311 1313 1295 1321 1303 1313 1323 1317 1315 1325 1309 1307 1327 1319 1309 1329 1313 1311 1321 1313 1331 1333 1321 1331 1335 1317 1323 1325 1327 1309 1327 1337 1319 1329 1331 1313 1333 1331 1339 1341 1335 1323 1343 1327 1325 1345 1337 1327 1347 1331 1329 1347 1339 1331 1349 1333 1339 1351 1335 1341 1343 1345 1327 1345 1353 1337 1355 1339 1347 1349 1339 1357 1359 1351 1341 1361 1345 1343 1363 1353 1345 1363 1365 1353 1357 1339 1355 1367 1349 1357 1359 1369 1351 1361 1363 1345 1371 1365 1363 1373 1357 1355 1367 1357 1375 1377 1369 1359 1379 1363 1361 1379 1371 1363 1371 1381 1365 1375 1357 1373 1383 1367 1375 1377 1385 1369 1387 1371 1379 1389 1381 1371 1391 1375 1373 1383 1375 1393 1395 1385 1377 1395 1397 1385 1387 1389 1371 1389 1399 1381 1393 1375 1391 1401 1383 1393 1403 1397 1395 1405 1389 1387 1407 1399 1389 1409 1393 1391 1411 1401 1393 1411 1413 1401 1403 1415 1397 1407 1389 1405 1407 1417 1399 1419 1393 1409 1421 1413 1411 1423 1415 1403 1425 1407 1405 1427 1417 1407 1419 1409 1429 1421 1419 1429 1421 1431 1413 1423 1433 1415 1435 1407 1425 1437 1417 1427 1421 1429 1439 1441 1431 1421 1423 1443 1433 1445 1435 1425 1447 1437 1427 1449 1437 1447 1421 1439 1441 1441 1451 1431 1443 1453 1433 1445 1447 1435 1455 1449 1447 1441 1439 1457 1459 1451 1441 1443 1461 1453 1463 1447 1445 1463 1455 1447 1465 1449 1455 1441 1457 1459 1459 1467 1451 1453 1461 1469 1471 1455 1463 1473 1465 1455 1459 1457 1475 1467 1459 1477 1461 1479 1469 1469 1479 1481 1471 1473 1455 1473 1483 1465 1459 1475 1477 1485 1467 1477 1479 1487 1481 1489 1473 1471 1491 1483 1473 1477 1475 1493 1485 1477 1495 1497 1485 1495 1481 1487 1499 1489 1491 1473 1491 1501 1483 1477 1493 1495 1497 1495 1503 1487 1505 1499 1507 1491 1489 1509 1501 1491 1495 1493 1511 1495 1511 1503 1513 1497 1503 1499 1505 1515 1507 1509 1491 1509 1517 1501</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1682\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1683\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID1686\">-0.5659469366073608 -1.151860475540161 -0.07378179579973221 -0.5388372540473938 -1.17527174949646 -0.07721765339374542 -0.5581417679786682 -1.150959491729736 -0.0635225921869278 -0.5581417679786682 -1.150959491729736 -0.0635225921869278 -0.5388372540473938 -1.17527174949646 -0.07721765339374542 -0.5659469366073608 -1.151860475540161 -0.07378179579973221 -0.5354199409484863 -1.170861482620239 -0.06640531122684479 -0.5354199409484863 -1.170861482620239 -0.06640531122684479 -0.4937689304351807 -1.175581336021423 -0.08266642689704895 -0.4937689304351807 -1.175581336021423 -0.08266642689704895</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID1686\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1684\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID1687\">0.5409137891857291 0.6957278621630106 -0.4726256599877156 0.2763324570536528 0.8551586518832471 -0.4385704655901018 0.5430258197750222 0.6958964898748292 -0.4699479060891291 -0.5430258197750222 -0.6958964898748292 0.4699479060891291 -0.2763324570536528 -0.8551586518832471 0.4385704655901018 -0.5409137891857291 -0.6957278621630106 0.4726256599877156 0.2920574673906872 0.8497416742821521 -0.4389094698562592 -0.2920574673906872 -0.8497416742821521 0.4389094698562592 -0.03799684812346563 0.9294092924482325 -0.3670893714663478 0.03799684812346563 -0.9294092924482325 0.3670893714663478</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID1687\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1685\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1683\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1684\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1685\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 1 6 2 3 7 4 1 8 6 7 9 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1688\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1689\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1692\">-0.5364519953727722 -1.171381711959839 -0.1061717569828033 -0.5611231327056885 -1.15022337436676 -0.1030475050210953 -0.5348328948020935 -1.169529438018799 -0.09166005253791809 -0.5348328948020935 -1.169529438018799 -0.09166005253791809 -0.5611231327056885 -1.15022337436676 -0.1030475050210953 -0.5364519953727722 -1.171381711959839 -0.1061717569828033</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1692\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1690\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1693\">-0.6295684446900218 -0.7587649004087633 0.1670909912540662 -0.6295684446900218 -0.7587649004087633 0.1670909912540662 -0.6295684446900218 -0.7587649004087633 0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1693\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1691\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1689\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1690\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1691\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1694\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1695\">\r\n\t\t\t\t\t<float_array count=\"4554\" id=\"ID1699\">-0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4670745432376862 -1.158051013946533 -0.2156426906585693 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4670745432376862 -1.158051013946533 -0.2156426906585693 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4780085980892181 -1.166073203086853 -0.2118184715509415 -0.4780085980892181 -1.166073203086853 -0.2118184715509415 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4566622674465179 -1.161874890327454 -0.2208317667245865 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4566622674465179 -1.161874890327454 -0.2208317667245865 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4701715409755707 -1.171931743621826 -0.2167111337184906 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4701715409755707 -1.171931743621826 -0.2167111337184906 -0.4639952778816223 -1.126953125 -0.2235644310712814 -0.4639952778816223 -1.126953125 -0.2235644310712814 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4873996675014496 -1.178971529006958 -0.2120722085237503 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4873996675014496 -1.178971529006958 -0.2120722085237503 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4919966459274292 -1.171796083450317 -0.2075648158788681 -0.4919966459274292 -1.171796083450317 -0.2075648158788681 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.5069580674171448 -1.182219982147217 -0.2071293890476227 -0.5069580674171448 -1.182219982147217 -0.2071293890476227 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4727209806442261 -1.117928266525269 -0.2250491082668304 -0.4727209806442261 -1.117928266525269 -0.2250491082668304 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5078603625297546 -1.174407243728638 -0.2030627429485321 -0.5078603625297546 -1.174407243728638 -0.2030627429485321 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5269226431846619 -1.181341052055359 -0.2021083533763886 -0.5269226431846619 -1.181341052055359 -0.2021083533763886 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.4852666556835175 -1.111176490783691 -0.2260912507772446 -0.4852666556835175 -1.111176490783691 -0.2260912507772446 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5240494608879089 -1.173695206642151 -0.1985002011060715 -0.5240494608879089 -1.173695206642151 -0.1985002011060715 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.5389738082885742 -1.169721484184265 -0.1940673291683197 -0.5389738082885742 -1.169721484184265 -0.1940673291683197 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5453409552574158 -1.176581025123596 -0.1972052454948425 -0.5453409552574158 -1.176581025123596 -0.1972052454948425 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5003835558891296 -1.10732901096344 -0.2268392145633698 -0.5003835558891296 -1.10732901096344 -0.2268392145633698 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4978899359703064 -1.099338173866272 -0.2309906035661697 -0.4978899359703064 -1.099338173866272 -0.2309906035661697 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5511723160743713 -1.16288423538208 -0.1899425983428955 -0.5511723160743713 -1.16288423538208 -0.1899425983428955 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.5604198575019836 -1.168011784553528 -0.1927651613950729 -0.5604198575019836 -1.168011784553528 -0.1927651613950729 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5166073441505432 -1.10676920413971 -0.2274772375822067 -0.5166073441505432 -1.10676920413971 -0.2274772375822067 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.5178954601287842 -1.09870171546936 -0.2311694622039795 -0.5178954601287842 -1.09870171546936 -0.2311694622039795 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5594555735588074 -1.153860569000244 -0.1862775683403015 -0.5594555735588074 -1.153860569000244 -0.1862775683403015 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.5323457717895508 -1.109543561935425 -0.2281976342201233 -0.5323457717895508 -1.109543561935425 -0.2281976342201233 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5372952222824097 -1.102163672447205 -0.2314521372318268 -0.5372952222824097 -1.102163672447205 -0.2314521372318268 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5750964283943176 -1.14414381980896 -0.1856220960617065 -0.5750964283943176 -1.14414381980896 -0.1856220960617065 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5460524559020996 -1.115358591079712 -0.2291837930679321 -0.5460524559020996 -1.115358591079712 -0.2291837930679321 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5541844964027405 -1.109387874603272 -0.2320649176836014 -0.5541844964027405 -1.109387874603272 -0.2320649176836014 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5732637643814087 -1.131062269210815 -0.1831503957509995 -0.5732637643814087 -1.131062269210815 -0.1831503957509995 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5614937543869019 -1.132966756820679 -0.1806835681200028 -0.5614937543869019 -1.132966756820679 -0.1806835681200028 -0.5563911199569702 -1.12365186214447 -0.2305930256843567 -0.5563911199569702 -1.12365186214447 -0.2305930256843567 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.566897451877594 -1.119650483131409 -0.2331991493701935 -0.566897451877594 -1.119650483131409 -0.2331991493701935 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.555044412612915 -1.123155951499939 -0.1787916719913483 -0.555044412612915 -1.123155951499939 -0.1787916719913483 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5653523802757263 -1.118939995765686 -0.1814211159944534 -0.5653523802757263 -1.118939995765686 -0.1814211159944534 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5742090940475464 -1.131942391395569 -0.235003262758255 -0.5742090940475464 -1.131942391395569 -0.235003262758255 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.5443065166473389 -1.115089893341065 -0.1774336248636246 -0.5443065166473389 -1.115089893341065 -0.1774336248636246 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5519604086875916 -1.108938336372376 -0.1803582608699799 -0.5519604086875916 -1.108938336372376 -0.1803582608699799 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.575387716293335 -1.145042896270752 -0.2375518679618835 -0.575387716293335 -1.145042896270752 -0.2375518679618835 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5303224325180054 -1.109560012817383 -0.1764832884073257 -0.5303224325180054 -1.109560012817383 -0.1764832884073257 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5348636507987976 -1.10209047794342 -0.1797855794429779 -0.5348636507987976 -1.10209047794342 -0.1797855794429779 -0.55926513671875 -1.15441358089447 -0.2382635623216629 -0.55926513671875 -1.15441358089447 -0.2382635623216629 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5702131390571594 -1.157662510871887 -0.2408456802368164 -0.5702131390571594 -1.157662510871887 -0.2408456802368164 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5153597593307495 -1.099033117294312 -0.1795200258493424 -0.5153597593307495 -1.099033117294312 -0.1795200258493424 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5144603252410889 -1.107124924659729 -0.175779864192009 -0.5144603252410889 -1.107124924659729 -0.175779864192009 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.5507266521453857 -1.163246393203735 -0.2419756203889847 -0.5507266521453857 -1.163246393203735 -0.2419756203889847 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5595179796218872 -1.168561935424805 -0.2448366731405258 -0.5595179796218872 -1.168561935424805 -0.2448366731405258 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4953970909118652 -1.100103139877319 -0.179336816072464 -0.4953970909118652 -1.100103139877319 -0.179336816072464 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4982820451259613 -1.108041167259216 -0.1751401573419571 -0.4982820451259613 -1.108041167259216 -0.1751401573419571 -0.537988007068634 -1.169810295104981 -0.246146023273468 -0.537988007068634 -1.169810295104981 -0.246146023273468 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.5440220236778259 -1.176667809486389 -0.2493667304515839 -0.5440220236778259 -1.176667809486389 -0.2493667304515839 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.4833570420742035 -1.112205982208252 -0.1743675768375397 -0.4833570420742035 -1.112205982208252 -0.1743675768375397 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.5228596329689026 -1.173466086387634 -0.2506005465984345 -0.5228596329689026 -1.173466086387634 -0.2506005465984345 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5253502726554871 -1.18116819858551 -0.2542564868927002 -0.5253502726554871 -1.18116819858551 -0.2542564868927002 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.4711625874042511 -1.119231224060059 -0.1732877790927887 -0.4711625874042511 -1.119231224060059 -0.1732877790927887 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.506633460521698 -1.173833608627319 -0.2551662623882294 -0.506633460521698 -1.173833608627319 -0.2551662623882294 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5053356289863586 -1.181609272956848 -0.2592801749706268 -0.5053356289863586 -1.181609272956848 -0.2592801749706268 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4628840982913971 -1.12843930721283 -0.1717492789030075 -0.4628840982913971 -1.12843930721283 -0.1717492789030075 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4904350936412811 -1.170987844467163 -0.2597062885761261 -0.4904350936412811 -1.170987844467163 -0.2597062885761261 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4854094684123993 -1.178057670593262 -0.2642672657966614 -0.4854094684123993 -1.178057670593262 -0.2642672657966614 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4763774275779724 -1.164982080459595 -0.2639687359333038 -0.4763774275779724 -1.164982080459595 -0.2639687359333038 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4681350886821747 -1.170600295066834 -0.2689074873924255 -0.4681350886821747 -1.170600295066834 -0.2689074873924255 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4661877453327179 -1.156416177749634 -0.2677432894706726 -0.4661877453327179 -1.156416177749634 -0.2677432894706726 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.4683403670787811 -1.160146474838257 -0.1634988784790039 -0.4683403670787811 -1.160146474838257 -0.1634988784790039 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4581113755702972 -1.164169549942017 -0.1686679422855377 -0.4581113755702972 -1.164169549942017 -0.1686679422855377 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4792343080043793 -1.168325185775757 -0.1596363484859467 -0.4792343080043793 -1.168325185775757 -0.1596363484859467 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.4715106785297394 -1.174239277839661 -0.1645141541957855 -0.4715106785297394 -1.174239277839661 -0.1645141541957855 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4933280944824219 -1.17392373085022 -0.1553713232278824 -0.4933280944824219 -1.17392373085022 -0.1553713232278824 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.4888685941696167 -1.181017160415649 -0.1599304676055908 -0.4888685941696167 -1.181017160415649 -0.1599304676055908 -0.4638693332672119 -1.125065088272095 -0.2756152749061585 -0.4638693332672119 -1.125065088272095 -0.2756152749061585 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.5084754824638367 -1.184240102767944 -0.1549115777015686 -0.5084754824638367 -1.184240102767944 -0.1549115777015686 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.509232759475708 -1.176416993141174 -0.1508626490831375 -0.509232759475708 -1.176416993141174 -0.1508626490831375 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.4727680087089539 -1.116126298904419 -0.2770816385746002 -0.4727680087089539 -1.116126298904419 -0.2770816385746002 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.5284159779548645 -1.183200836181641 -0.1498926430940628 -0.5284159779548645 -1.183200836181641 -0.1498926430940628 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5254004597663879 -1.175574421882629 -0.1463013589382172 -0.5254004597663879 -1.175574421882629 -0.1463013589382172 -0.485431581735611 -1.109466314315796 -0.278106302022934 -0.485431581735611 -1.109466314315796 -0.278106302022934 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.5402413010597229 -1.17147707939148 -0.1418762654066086 -0.5402413010597229 -1.17147707939148 -0.1418762654066086 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5467411875724793 -1.178147196769714 -0.1450409889221191 -0.5467411875724793 -1.178147196769714 -0.1450409889221191 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.5006225109100342 -1.105741024017334 -0.2788476049900055 -0.5006225109100342 -1.105741024017334 -0.2788476049900055 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4982722103595734 -1.097743153572083 -0.2829819023609161 -0.4982722103595734 -1.097743153572083 -0.2829819023609161 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.5523137450218201 -1.164548993110657 -0.137769028544426 -0.5523137450218201 -1.164548993110657 -0.137769028544426 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5616535544395447 -1.169592380523682 -0.1405776739120483 -0.5616535544395447 -1.169592380523682 -0.1405776739120483 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5168607831001282 -1.10530686378479 -0.2794858813285828 -0.5168607831001282 -1.10530686378479 -0.2794858813285828 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5182973146438599 -1.097256898880005 -0.2831613123416901 -0.5182973146438599 -1.097256898880005 -0.2831613123416901 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5604264736175537 -1.155444264411926 -0.134123295545578 -0.5604264736175537 -1.155444264411926 -0.134123295545578 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.5325407385826111 -1.108209729194641 -0.2802126407623291 -0.5325407385826111 -1.108209729194641 -0.2802126407623291 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5376310348510742 -1.100880861282349 -0.283452033996582 -0.5376310348510742 -1.100880861282349 -0.283452033996582 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5758856534957886 -1.145607948303223 -0.1334896087646484 -0.5758856534957886 -1.145607948303223 -0.1334896087646484 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5461440086364746 -1.114132165908814 -0.2812126278877258 -0.5461440086364746 -1.114132165908814 -0.2812126278877258 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5543799996376038 -1.108233690261841 -0.284079521894455 -0.5543799996376038 -1.108233690261841 -0.284079521894455 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5738096833229065 -1.132545471191406 -0.1310487687587738 -0.5738096833229065 -1.132545471191406 -0.1310487687587738 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.5620707869529724 -1.134551882743835 -0.1285762786865234 -0.5620707869529724 -1.134551882743835 -0.1285762786865234 -0.5562236309051514 -1.122508764266968 -0.2826361358165741 -0.5562236309051514 -1.122508764266968 -0.2826361358165741 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5669103860855103 -1.118594884872437 -0.2852396965026856 -0.5669103860855103 -1.118594884872437 -0.2852396965026856 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.555444061756134 -1.124776363372803 -0.1267072409391403 -0.555444061756134 -1.124776363372803 -0.1267072409391403 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5656728148460388 -1.120481729507446 -0.1293461471796036 -0.5656728148460388 -1.120481729507446 -0.1293461471796036 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5739870071411133 -1.130938291549683 -0.2870706021785736 -0.5739870071411133 -1.130938291549683 -0.2870706021785736 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5445551872253418 -1.116797208786011 -0.1253669559955597 -0.5445551872253418 -1.116797208786011 -0.1253669559955597 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5522736310958862 -1.110593795776367 -0.1282949596643448 -0.5522736310958862 -1.110593795776367 -0.1282949596643448 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.57492595911026 -1.144049525260925 -0.2896494567394257 -0.57492595911026 -1.144049525260925 -0.2896494567394257 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5304718613624573 -1.111389398574829 -0.1244296282529831 -0.5304718613624573 -1.111389398574829 -0.1244296282529831 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5349233746528626 -1.103869080543518 -0.1277434676885605 -0.5349233746528626 -1.103869080543518 -0.1277434676885605 -0.5586347579956055 -1.153280735015869 -0.2903818190097809 -0.5586347579956055 -1.153280735015869 -0.2903818190097809 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5153201818466187 -1.100982189178467 -0.1274901926517487 -0.5153201818466187 -1.100982189178467 -0.1274901926517487 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.514570415019989 -1.10908055305481 -0.1237329840660095 -0.514570415019989 -1.10908055305481 -0.1237329840660095 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5497334003448486 -1.162050008773804 -0.294120192527771 -0.5497334003448486 -1.162050008773804 -0.294120192527771 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5586177706718445 -1.167435169219971 -0.2969862818717957 -0.5586177706718445 -1.167435169219971 -0.2969862818717957 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4953792691230774 -1.102204203605652 -0.1273037791252136 -0.4953792691230774 -1.102204203605652 -0.1273037791252136 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4984057247638702 -1.110114693641663 -0.1230899542570114 -0.4984057247638702 -1.110114693641663 -0.1230899542570114 -0.5370596647262573 -1.168520212173462 -0.2982980012893677 -0.5370596647262573 -1.168520212173462 -0.2982980012893677 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5431241989135742 -1.17541229724884 -0.301532506942749 -0.5431241989135742 -1.17541229724884 -0.301532506942749 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.4835685193538666 -1.114396214485169 -0.1223111301660538 -0.4835685193538666 -1.114396214485169 -0.1223111301660538 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.5218650698661804 -1.17204761505127 -0.3027612566947937 -0.5218650698661804 -1.17204761505127 -0.3027612566947937 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5242103338241577 -1.179760098457336 -0.306433379650116 -0.5242103338241577 -1.179760098457336 -0.306433379650116 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.4717373251914978 -1.121699452400208 -0.1211463361978531 -0.4717373251914978 -1.121699452400208 -0.1211463361978531 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.4644741714000702 -1.131386756896973 -0.1194473057985306 -0.4644741714000702 -1.131386756896973 -0.1194473057985306 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4642059803009033 -1.152724027633667 -0.1144214868545532 -0.4642059803009033 -1.152724027633667 -0.1144214868545532 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4714657664299011 -1.162484645843506 -0.1110089421272278 -0.4714657664299011 -1.162484645843506 -0.1110089421272278 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4615163803100586 -1.166784763336182 -0.1161440908908844 -0.4615163803100586 -1.166784763336182 -0.1161440908908844 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4828593134880066 -1.170353889465332 -0.1070819646120071 -0.4828593134880066 -1.170353889465332 -0.1070819646120071 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4755431711673737 -1.176489114761353 -0.1119127124547958 -0.4755431711673737 -1.176489114761353 -0.1119127124547958 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4972856640815735 -1.175560474395752 -0.1027733832597733 -0.4972856640815735 -1.175560474395752 -0.1027733832597733 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4933141171932221 -1.182911038398743 -0.1072084903717041 -0.4933141171932221 -1.182911038398743 -0.1072084903717041 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.5130786299705505 -1.185441017150879 -0.102233350276947 -0.5130786299705505 -1.185441017150879 -0.102233350276947 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.5133234262466431 -1.177604675292969 -0.09824811667203903 -0.5133234262466431 -1.177604675292969 -0.09824811667203903 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5328704714775085 -1.183813214302063 -0.09727362543344498 -0.5328704714775085 -1.183813214302063 -0.09727362543344498 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5293971300125122 -1.176306962966919 -0.09369296580553055 -0.5293971300125122 -1.176306962966919 -0.09369296580553055 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5439476370811462 -1.171802759170532 -0.08930191397666931 -0.5439476370811462 -1.171802759170532 -0.08930191397666931 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5508751273155212 -1.178285956382752 -0.0924120768904686 -0.5508751273155212 -1.178285956382752 -0.0924120768904686 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5555424094200134 -1.164524674415588 -0.08524921536445618 -0.5555424094200134 -1.164524674415588 -0.08524921536445618 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5652047991752625 -1.169313788414002 -0.08801811188459396 -0.5652047991752625 -1.169313788414002 -0.08801811188459396 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.5630452036857605 -1.155208110809326 -0.08167614042758942 -0.5630452036857605 -1.155208110809326 -0.08167614042758942 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5778428316116333 -1.144819259643555 -0.08111421018838882 -0.5778428316116333 -1.144819259643555 -0.08111421018838882 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.574921190738678 -1.131919503211975 -0.0787806510925293 -0.574921190738678 -1.131919503211975 -0.0787806510925293 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5631065368652344 -1.134244561195374 -0.076307512819767 -0.5631065368652344 -1.134244561195374 -0.076307512819767 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5560707449913025 -1.124674439430237 -0.07450312376022339 -0.5560707449913025 -1.124674439430237 -0.07450312376022339 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5660110712051392 -1.12008547782898 -0.07717347890138626 -0.5660110712051392 -1.12008547782898 -0.07717347890138626 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5446727871894836 -1.116996884346008 -0.07322388887405396 -0.5446727871894836 -1.116996884346008 -0.07322388887405396 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5519850254058838 -1.110580444335938 -0.0762002095580101 -0.5519850254058838 -1.110580444335938 -0.0762002095580101 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.530258059501648 -1.111981153488159 -0.07233035564422607 -0.530258059501648 -1.111981153488159 -0.07233035564422607 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.534221887588501 -1.104349851608276 -0.07570070773363113 -0.534221887588501 -1.104349851608276 -0.07570070773363113 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5144584774971008 -1.102004647254944 -0.07547114044427872 -0.5144584774971008 -1.102004647254944 -0.07547114044427872 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.514224648475647 -1.110127329826355 -0.07165177166461945 -0.514224648475647 -1.110127329826355 -0.07165177166461945 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5143094658851624 -1.106828689575195 -0.07877529412508011</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1518\" source=\"#ID1699\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1696\">\r\n\t\t\t\t\t<float_array count=\"4554\" id=\"ID1700\">-0.535310170416145 0.6828597286651628 0.4971374180409053 -0.711679610756167 0.701944011990737 0.02804880860747333 -0.7372431242803319 0.3797272314562333 0.5588200116244577 0.7372431242803319 -0.3797272314562333 -0.5588200116244577 0.711679610756167 -0.701944011990737 -0.02804880860747333 0.535310170416145 -0.6828597286651628 -0.4971374180409053 -0.729385409062589 0.4062554931621462 0.5504120268691277 0.729385409062589 -0.4062554931621462 -0.5504120268691277 -0.855130798811114 0.1136943568170223 -0.5057913701840213 -0.8413435891190259 0.1893640378826544 -0.5062432480587691 0.8413435891190259 -0.1893640378826544 0.5062432480587691 0.855130798811114 -0.1136943568170223 0.5057913701840213 -0.3217641206506636 0.8321982925179576 0.4515682147717007 0.3217641206506636 -0.8321982925179576 -0.4515682147717007 0.379993968652636 -0.01452187984957496 0.9248749638698487 0.3792356722588351 -0.05515184004802218 0.9236550110434667 0.3750217319175143 0.09079787801754481 0.9225586409205104 -0.3750217319175143 -0.09079787801754481 -0.9225586409205104 -0.3792356722588351 0.05515184004802218 -0.9236550110434667 -0.379993968652636 0.01452187984957496 -0.9248749638698487 -0.81891872323098 -0.02916354235750145 0.5731680491259991 0.81891872323098 0.02916354235750145 -0.5731680491259991 -0.8259819640337442 -0.2402927006267335 -0.5099149077213467 0.8259819640337442 0.2402927006267335 0.5099149077213467 -0.7524074740264602 0.4659136678491019 -0.465625866056127 0.7524074740264602 -0.4659136678491019 0.465625866056127 0.3666695855979613 -0.1470453642187064 0.9186572134693155 0.3567388083380884 -0.1797184269164603 0.9167544434864733 -0.3567388083380884 0.1797184269164603 -0.9167544434864733 -0.3666695855979613 0.1470453642187064 -0.9186572134693155 -0.4686122420705575 0.8829390577970164 0.02865635702809793 0.4686122420705575 -0.8829390577970164 -0.02865635702809793 0.362818980110611 0.1115732442145029 0.9251560943143308 -0.362818980110611 -0.1115732442145029 -0.9251560943143308 -0.8229435868585475 0.02579388750379018 0.567537248306955 0.8229435868585475 -0.02579388750379018 -0.567537248306955 -0.8318735357222543 -0.2056588359136707 -0.5154520964896634 0.8318735357222543 0.2056588359136707 0.5154520964896634 0.3131079370299137 -0.1234465688639044 -0.9416604294567128 0.2545174903010224 -0.3210223259692432 -0.9122310635799277 0.2994850388200162 -0.1347916098286615 -0.9445315947297746 -0.2994850388200162 0.1347916098286615 0.9445315947297746 -0.2545174903010224 0.3210223259692432 0.9122310635799277 -0.3131079370299137 0.1234465688639044 0.9416604294567128 0.1523944153111659 -0.4664167061013169 -0.8713388539779263 0.2471519929915358 -0.2985266892247367 -0.9218447310587772 -0.2471519929915358 0.2985266892247367 0.9218447310587772 -0.1523944153111659 0.4664167061013169 0.8713388539779263 0.3282817590528282 -0.2624482480758333 0.9073874606556488 -0.3282817590528282 0.2624482480758333 -0.9073874606556488 -0.1228561251570979 0.8950510040663684 0.4287074441051489 0.1228561251570979 -0.8950510040663684 -0.4287074441051489 0.5589975536955726 -0.6498570818411518 -0.5149830173348129 0.7112410577589947 -0.7025013268705942 -0.02506079613501234 0.9360046751277166 -0.3517618957081072 -0.01260225642083865 -0.9360046751277166 0.3517618957081072 0.01260225642083865 -0.7112410577589947 0.7025013268705942 0.02506079613501234 -0.5589975536955726 0.6498570818411518 0.5149830173348129 0.3329806907099038 0.2202433885859086 0.9168515198212587 -0.3329806907099038 -0.2202433885859086 -0.9168515198212587 0.328949659917621 -0.8033618405725865 -0.4963888338308061 0.4661076996959741 -0.8841508505218183 -0.03195130366155524 -0.4661076996959741 0.8841508505218183 0.03195130366155524 -0.328949659917621 0.8033618405725865 0.4963888338308061 -0.8306623845255892 -0.5565875870647995 0.0145003744657297 0.8306623845255892 0.5565875870647995 -0.0145003744657297 -0.6945545646332318 -0.5290651887906086 -0.4875284430236858 0.6945545646332318 0.5290651887906086 0.4875284430236858 0.3139158622216069 0.05128541750858253 -0.948064679964735 -0.3139158622216069 -0.05128541750858253 0.948064679964735 -0.5643062696415467 0.7140844036848697 -0.4142968723720538 0.5643062696415467 -0.7140844036848697 0.4142968723720538 0.1306461037378148 -0.8661971870146993 -0.4823214994025772 0.2464364274691459 -0.9684731079097251 -0.03645444378840799 -0.2464364274691459 0.9684731079097251 0.03645444378840799 -0.1306461037378148 0.8661971870146993 0.4823214994025772 0.3138505278316415 -0.2841790770731234 0.9059470725896009 -0.3138505278316415 0.2841790770731234 -0.9059470725896009 -0.2540861679460684 0.9666121345141174 0.03318434372628529 0.2540861679460684 -0.9666121345141174 -0.03318434372628529 0.9597608241675195 -0.2806503197590552 -0.009724114994385009 -0.9597608241675195 0.2806503197590552 0.009724114994385009 0.3220258347742228 0.214498438267411 0.9221115885394817 -0.3220258347742228 -0.214498438267411 -0.9221115885394817 -0.7616207824844075 -0.3651471048914312 0.5353516372229054 0.7616207824844075 0.3651471048914312 -0.5353516372229054 0.3167748269163652 0.09263797783393953 -0.9439660555840689 -0.3167748269163652 -0.09263797783393953 0.9439660555840689 0.9848243133712018 0.1734566137781367 0.005820217312395853 0.847433960872483 0.5305646473937475 0.01889012694302194 0.8283273280770336 0.5598559803948217 0.02085950087886269 -0.8283273280770336 -0.5598559803948217 -0.02085950087886269 -0.847433960872483 -0.5305646473937475 -0.01889012694302194 -0.9848243133712018 -0.1734566137781367 -0.005820217312395853 0.99311480872505 0.117099537706675 0.00326725571241982 -0.99311480872505 -0.117099537706675 -0.00326725571241982 0.03937472706342653 -0.5380336305709434 -0.8420032323235643 -0.03937472706342653 0.5380336305709434 0.8420032323235643 -0.06288384653166469 -0.8760148156605907 -0.478166984000907 0.06288384653166469 0.8760148156605907 0.478166984000907 0.257077063885439 -0.3475015842572659 0.9017505376559153 -0.257077063885439 0.3475015842572659 -0.9017505376559153 0.07303455185892338 0.9060032613570995 0.4169221086067103 -0.07303455185892338 -0.9060032613570995 -0.4169221086067103 0.2700156883626287 0.3209112866746965 0.9078036539488298 -0.2700156883626287 -0.3209112866746965 -0.9078036539488298 -0.07035077711726034 -0.5595903559214819 -0.8257780583901869 0.07035077711726034 0.5595903559214819 0.8257780583901869 -0.5872649289636108 -0.8093931705807556 -0.00161202561925844 0.5872649289636108 0.8093931705807556 0.00161202561925844 -0.509882051398594 -0.7296644481425849 -0.4556424988720199 0.509882051398594 0.7296644481425849 0.4556424988720199 0.2828710356509407 0.2426484055828317 -0.9279578268746236 -0.2828710356509407 -0.2426484055828317 0.9279578268746236 0.6057325087479234 0.7951282343225092 0.02931243471831879 -0.6057325087479234 -0.7951282343225092 -0.02931243471831879 -0.371145693979263 0.8484694174731969 -0.3772936806432688 0.371145693979263 -0.8484694174731969 0.3772936806432688 -0.1787530742583322 -0.5392198561948459 -0.8229758715347643 0.1787530742583322 0.5392198561948459 0.8229758715347643 0.03438135610527487 -0.9987520891903908 -0.03622411752123286 -0.03438135610527487 0.9987520891903908 0.03622411752123286 0.2512244040277587 -0.3569957493692131 0.8996890205805623 -0.2512244040277587 0.3569957493692131 -0.8996890205805623 -0.04872205898106887 0.9982765115858446 0.0327134129164507 0.04872205898106887 -0.9982765115858446 -0.0327134129164507 0.2698800213758354 0.2961674361769304 0.9162148349653386 -0.2698800213758354 -0.2961674361769304 -0.9162148349653386 -0.5816032194955555 -0.6636002251380012 0.4705023233409152 0.5816032194955555 0.6636002251380012 -0.4705023233409152 0.2686367963209743 0.288060300556891 -0.9191602335313885 -0.2686367963209743 -0.288060300556891 0.9191602335313885 0.5932575987977159 0.8044689158088678 0.02958352524756113 -0.5932575987977159 -0.8044689158088678 -0.02958352524756113 0.1919079033946834 0.3816786325888079 0.9041530722393164 0.2021851966061355 0.3530580894870337 0.9134939144411987 -0.2021851966061355 -0.3530580894870337 -0.9134939144411987 -0.1919079033946834 -0.3816786325888079 -0.9041530722393164 -0.2823820210451418 -0.4806475230958568 -0.8302038019259361 0.2823820210451418 0.4806475230958568 0.8302038019259361 -0.2505474052630797 -0.8378549079901313 -0.4850001555389304 0.2505474052630797 0.8378549079901313 0.4850001555389304 0.1747230772131435 -0.3953057429770431 0.9017789173952439 -0.1747230772131435 0.3953057429770431 -0.9017789173952439 0.26978728423016 0.8647902119375572 0.4235005438068643 -0.26978728423016 -0.8647902119375572 -0.4235005438068643 -0.1692684314459983 0.9176875552732279 -0.359440883891159 0.1692684314459983 -0.9176875552732279 0.359440883891159 -0.3502329098367625 -0.9365294321543141 -0.01579656848787955 0.3502329098367625 0.9365294321543141 0.01579656848787955 -0.3115226959250829 -0.8473851427508421 -0.429990732189315 0.3115226959250829 0.8473851427508421 0.429990732189315 0.2053626087379487 0.4066091744468938 -0.8902219825346709 -0.2053626087379487 -0.4066091744468938 0.8902219825346709 0.3625395537087672 0.9313536382647069 0.03384482955698954 -0.3625395537087672 -0.9313536382647069 -0.03384482955698954 0.1088163998042708 0.4031873021297915 0.9086247798376056 -0.1088163998042708 -0.4031873021297915 -0.9086247798376056 0.03197152740742636 0.9318883559366843 -0.3613335211475126 0.1550225723017221 0.9873709613234915 0.03265864069556018 -0.1550225723017221 -0.9873709613234915 -0.03265864069556018 -0.03197152740742636 -0.9318883559366843 0.3613335211475126 -0.1733353671567152 -0.9842555908762638 -0.03458008561966801 0.1733353671567152 0.9842555908762638 0.03458008561966801 0.1804061394791801 -0.4056248164437825 0.8960592241158876 -0.1804061394791801 0.4056248164437825 -0.8960592241158876 -0.3631565580660195 -0.8364706749585888 0.4104072663440117 0.3631565580660195 0.8364706749585888 -0.4104072663440117 0.1858046722706848 0.4347309710258129 -0.8811842069586456 -0.1858046722706848 -0.4347309710258129 0.8811842069586456 0.3566880885534043 0.9336089901440405 0.03388009749607839 -0.3566880885534043 -0.9336089901440405 -0.03388009749607839 0.1232571526515191 0.3822050703645238 0.9158203745865722 -0.1232571526515191 -0.3822050703645238 -0.9158203745865722 0.3718249345779886 0.9278015722570135 0.03050345133731713 -0.3718249345779886 -0.9278015722570135 -0.03050345133731713 -0.3769218826360062 -0.3789209326972639 -0.845191588430673 0.3769218826360062 0.3789209326972639 0.845191588430673 -0.4429394053228697 -0.7517457624653662 -0.4885519336033661 0.4429394053228697 0.7517457624653662 0.4885519336033661 0.08866515045489541 -0.4048987009543537 0.9100524891786669 -0.08866515045489541 0.4048987009543537 -0.9100524891786669 0.4722008782443767 0.7597224242219586 0.447043810738444 -0.4722008782443767 -0.7597224242219586 -0.447043810738444 -0.1349743997069032 -0.990475062389603 -0.0272224577889874 0.1349743997069032 0.990475062389603 0.0272224577889874 -0.1148745169857842 -0.9010766916345416 -0.4181681971889206 0.1148745169857842 0.9010766916345416 0.4181681971889206 0.1350323407016534 0.878766484746587 -0.4577507315676939 -0.1350323407016534 -0.878766484746587 0.4577507315676939 0.1391599109902589 0.9896225055955918 0.03580245231665115 -0.1391599109902589 -0.9896225055955918 -0.03580245231665115 0.02951347803965053 0.3883416053264751 0.9210427526377151 -0.02951347803965053 -0.3883416053264751 -0.9210427526377151 0.2379697063315265 0.8911006352533213 -0.3864066209572686 -0.2379697063315265 -0.8911006352533213 0.3864066209572686 -0.4018422953209712 -0.915469856946197 -0.02092153708700449 0.4018422953209712 0.915469856946197 0.02092153708700449 0.1000694492240476 -0.4248366424042973 0.8997221418875046 -0.1000694492240476 0.4248366424042973 -0.8997221418875046 -0.149258376407865 -0.916465922743119 0.371230588075244 0.149258376407865 0.916465922743119 -0.371230588075244 0.08634970589385892 0.5298551962191168 -0.8436807449098535 -0.08634970589385892 -0.5298551962191168 0.8436807449098535 0.03901594064805804 0.3769126891822767 0.9254267021805303 -0.03901594064805804 -0.3769126891822767 -0.9254267021805303 0.6676355058203269 0.5690937041910978 0.4799949866593313 -0.6676355058203269 -0.5690937041910978 -0.4799949866593313 0.6097847373579887 0.7922549558333398 0.02224093169725167 -0.6097847373579887 -0.7922549558333398 -0.02224093169725167 -0.4546059078543376 -0.2369869510319531 -0.8585864275566627 0.4546059078543376 0.2369869510319531 0.8585864275566627 -0.6358582712225318 -0.5907494832679082 -0.4966883398436012 0.6358582712225318 0.5907494832679082 0.4966883398436012 0.007498331790333134 -0.3777105669550434 0.9258933538107194 -0.007498331790333134 0.3777105669550434 -0.9258933538107194 0.06864084590568426 -0.9970179924571337 -0.0352641034211662 -0.06864084590568426 0.9970179924571337 0.0352641034211662 0.08052190282451008 -0.9028331427755107 -0.4223843504103985 -0.08052190282451008 0.9028331427755107 0.4223843504103985 -0.05898967825784544 0.8988150489367441 -0.4343405641473913 0.05898967825784544 -0.8988150489367441 0.4343405641473913 -0.07260509816947629 0.9967060792391365 0.03613158351842422 0.07260509816947629 -0.9967060792391365 -0.03613158351842422 -0.04181228090555243 0.3419317653722825 0.9387941206648397 0.04181228090555243 -0.3419317653722825 -0.9387941206648397 0.01504041957043186 -0.4057949568608777 0.9138403792596516 -0.01504041957043186 0.4057949568608777 -0.9138403792596516 0.4517798446100684 0.7787948471666188 -0.4351707228557833 -0.4517798446100684 -0.7787948471666188 0.4351707228557833 -0.6412771318334352 -0.7670575183231125 -0.01965715573197376 0.6412771318334352 0.7670575183231125 0.01965715573197376 0.05436673979736359 -0.9322885250947756 0.3576064367155796 -0.05436673979736359 0.9322885250947756 -0.3576064367155796 -0.0212071890036439 0.5780475407181148 -0.8157274641718907 0.0212071890036439 -0.5780475407181148 0.8157274641718907 -0.04351368272639628 0.3322625189290334 0.9421826669656582 0.04351368272639628 -0.3322625189290334 -0.9421826669656582 -0.06237698712821529 -0.3162498352456724 0.9466230259104684 0.06237698712821529 0.3162498352456724 -0.9466230259104684 0.8151747555481969 0.2812969192611448 0.5063221910316851 -0.8151747555481969 -0.2812969192611448 -0.5063221910316851 0.8495200192304718 0.5275379171118494 0.004413947887178284 -0.8495200192304718 -0.5275379171118494 -0.004413947887178284 -0.4986760678817546 -0.0546023815812284 -0.8650669102720608 0.4986760678817546 0.0546023815812284 0.8650669102720608 -0.8439557844500474 -0.5361032111239543 -0.01822034346245837 0.8439557844500474 0.5361032111239543 0.01822034346245837 0.2769606513134717 -0.9598182468762322 -0.04518551302633956 -0.2769606513134717 0.9598182468762322 0.04518551302633956 0.2862523820680035 -0.8449411142000919 -0.4518120043720634 -0.2862523820680035 0.8449411142000919 0.4518120043720634 -0.2515239683296016 0.8702997792149998 -0.4234548236282732 0.2515239683296016 -0.8702997792149998 0.4234548236282732 -0.2850091085724672 0.9578491851140157 0.03598258755486267 0.2850091085724672 -0.9578491851140157 -0.03598258755486267 -0.1022652138103845 0.2645297637071581 0.9589399512781558 0.1022652138103845 -0.2645297637071581 -0.9589399512781558 -0.8727550771939916 -0.4877890895991029 -0.01898365876716792 0.8727550771939916 0.4877890895991029 0.01898365876716792 -0.06496053448506671 -0.3441482908946016 0.9366654060195345 0.06496053448506671 0.3441482908946016 -0.9366654060195345 0.6576786834479146 0.5643363169938016 -0.4989822348141159 -0.6576786834479146 -0.5643363169938016 0.4989822348141159 -0.4964548012322866 -0.01405178624130724 -0.8679488335361937 0.4964548012322866 0.01405178624130724 0.8679488335361937 0.2544372511161985 -0.8958142249090459 0.3643879247382352 -0.2544372511161985 0.8958142249090459 -0.3643879247382352 -0.1346599506753236 0.5836962910113674 -0.8007280047205121 0.1346599506753236 -0.5836962910113674 0.8007280047205121 -0.1124404606428646 0.2448652957053648 0.9630151243721693 0.1124404606428646 -0.2448652957053648 -0.9630151243721693 -0.8819596162681433 0.007606609768102142 -0.4712635937137361 0.8819596162681433 -0.007606609768102142 0.4712635937137361 -0.1171297377672967 -0.2299390039661313 0.9661307773721048 0.1171297377672967 0.2299390039661313 -0.9661307773721048 0.8597941689935817 -0.06610076241144321 0.5063444244516397 -0.8597941689935817 0.06610076241144321 -0.5063444244516397 0.8025443301909858 0.1986012381867819 -0.5625656817376785 -0.8025443301909858 -0.1986012381867819 0.5625656817376785 -0.4943665989696874 0.1452993819705873 -0.8570237776293663 0.4943665989696874 -0.1452993819705873 0.8570237776293663 0.5011082647832796 -0.8640069618754204 -0.04881062176101025 -0.5011082647832796 0.8640069618754204 0.04881062176101025 0.495393292699206 -0.7179196114702798 -0.4890571715198556 -0.495393292699206 0.7179196114702798 0.4890571715198556 -0.4523459423830585 0.7826873274957782 -0.427532099130696 0.4523459423830585 -0.7826873274957782 0.427532099130696 -0.5160344004894462 0.8561607522170113 0.02640575457545195 0.5160344004894462 -0.8561607522170113 -0.02640575457545195 -0.1456700287183111 0.1553266991594604 0.9770638972254747 0.1456700287183111 -0.1553266991594604 -0.9770638972254747 -0.9975799967319756 -0.06943171943913534 -0.003658750600534279 0.9975799967319756 0.06943171943913534 0.003658750600534279 -0.1298938066383518 -0.2399502853702611 0.9620558505345356 0.1298938066383518 0.2399502853702611 -0.9620558505345356 0.8574527099986579 -0.024943073842547 0.5139578710198363 -0.8574527099986579 0.024943073842547 -0.5139578710198363 0.7991923633604373 0.2325909216970215 -0.5542499702214594 -0.7991923633604373 -0.2325909216970215 0.5542499702214594 0.4545425258572903 -0.8001119199105381 0.3914230547685552 -0.4545425258572903 0.8001119199105381 -0.3914230547685552 -0.2485621394074033 0.5432107119168934 -0.8019594661277815 0.2485621394074033 -0.5432107119168934 0.8019594661277815 -0.1547297701498987 0.1222919404111891 0.9803588014292652 0.1547297701498987 -0.1222919404111891 -0.9803588014292652 -0.4386221089531073 0.3279040177656268 -0.8367135714631907 0.4386221089531073 -0.3279040177656268 0.8367135714631907 -0.8139596649067716 0.369876750153207 -0.4479518429485005 0.8139596649067716 -0.369876750153207 0.4479518429485005 -0.1540747872951352 -0.1214426860447951 0.9805675060525839 0.1540747872951352 0.1214426860447951 -0.9805675060525839 0.7859819010892829 -0.3952252448442107 0.4754255535811157 -0.7859819010892829 0.3952252448442107 -0.4754255535811157 0.9306780161615121 -0.3631421276095757 -0.04434214010241968 -0.9306780161615121 0.3631421276095757 0.04434214010241968 0.7418342663243822 -0.6686855396130648 -0.05041399031370274 -0.7418342663243822 0.6686855396130648 0.05041399031370274 0.6931728046754269 -0.4794465154382414 -0.5381844495082803 -0.6931728046754269 0.4794465154382414 0.5381844495082803 -0.6572266751115354 0.615817033732647 -0.4345370852833627 0.6572266751115354 -0.615817033732647 0.4345370852833627 -0.7519579582759212 0.6588368316709177 0.02220941735694816 0.7519579582759212 -0.6588368316709177 -0.02220941735694816 -0.1709405722559768 0.02372283740880488 0.9849957095043992 0.1709405722559768 -0.02372283740880488 -0.9849957095043992 0.8070332257881647 -0.1635417914939574 -0.5674076620110943 -0.8070332257881647 0.1635417914939574 0.5674076620110943 -0.9307959225689865 0.3653144447802395 0.01281822779696078 0.9307959225689865 -0.3653144447802395 -0.01281822779696078 -0.1665224790155269 -0.1042049381458482 0.98051598398422 0.1665224790155269 0.1042049381458482 -0.98051598398422 0.6462131120801343 -0.6271220006901789 0.4348868933712018 -0.6462131120801343 0.6271220006901789 -0.4348868933712018 -0.356871619837412 0.4535533681326124 -0.8166590409774356 0.356871619837412 -0.4535533681326124 0.8166590409774356 -0.1683124202182102 -0.008542688178951144 0.9856966834066989 0.1683124202182102 0.008542688178951144 -0.9856966834066989 0.7170352095489575 -0.6951740874276534 -0.05092638251645233 -0.7170352095489575 0.6951740874276534 0.05092638251645233 -0.3464664709718055 0.4660313447269559 -0.8141104164818971 0.3464664709718055 -0.4660313447269559 0.8141104164818971 -0.6354976406288125 0.6397473796149413 -0.4322800469961907 0.6354976406288125 -0.6397473796149413 0.4322800469961907 -0.1685700138354227 0.005739948138891548 0.9856729698185338 0.1685700138354227 -0.005739948138891548 -0.9856729698185338 0.627961198733126 -0.649050529225108 0.4294160493021458 -0.627961198733126 0.649050529225108 -0.4294160493021458 0.797309948167892 -0.3587410006949399 0.4853882373656234 -0.797309948167892 0.3587410006949399 -0.4853882373656234 0.8133505745047901 -0.1225610302085998 -0.5687175369433712 -0.8133505745047901 0.1225610302085998 0.5687175369433712 -0.827728804209694 0.3350726078951755 -0.4501015153495001 0.827728804209694 -0.3350726078951755 0.4501015153495001 -0.9459935076998534 0.3239857232554233 0.01138132313871105 0.9459935076998534 -0.3239857232554233 -0.01138132313871105 -0.1642946471614618 -0.1191759077197101 0.9791855656275137 0.1642946471614618 0.1191759077197101 -0.9791855656275137 0.6747183980805227 -0.5099847396469173 -0.5335453576022561 -0.6747183980805227 0.5099847396469173 0.5335453576022561 -0.725972841726008 0.6873609092027893 0.022325178077218 0.725972841726008 -0.6873609092027893 -0.022325178077218 -0.1700291583770809 0.03942041603916416 0.9846502506478534 0.1700291583770809 -0.03942041603916416 -0.9846502506478534 0.7985683741119738 -0.3635551752882126 0.4797042697217896 -0.7985683741119738 0.3635551752882126 -0.4797042697217896 0.8005407714938573 -0.177249530910696 -0.5724657867226284 -0.8005407714938573 0.177249530910696 0.5724657867226284 -0.4462067143413283 0.3107408208180051 -0.839249492316837 0.4462067143413283 -0.3107408208180051 0.839249492316837 -0.1512006834129393 -0.1336474753351201 0.9794267229721725 0.1512006834129393 0.1336474753351201 -0.9794267229721725 0.433676410702461 -0.8129828071542766 0.3885662441229072 -0.433676410702461 0.8129828071542766 -0.3885662441229072 0.4768903302031552 -0.8776658114493595 -0.04773192193556719 -0.4768903302031552 0.8776658114493595 0.04773192193556719 -0.238012317776634 0.5527815444245369 -0.7986129855757533 0.238012317776634 -0.5527815444245369 0.7986129855757533 -0.4293197939239346 0.7959816418674625 -0.4267291182414073 0.4293197939239346 -0.7959816418674625 0.4267291182414073 -0.1533284582499095 0.138567601006442 0.9784116740115201 0.1533284582499095 -0.138567601006442 -0.9784116740115201 0.856906041284654 0.0155227088499625 0.515238859093355 -0.856906041284654 -0.0155227088499625 -0.515238859093355 0.7895060350991036 0.2718495608044064 -0.5502527027035348 -0.7895060350991036 -0.2718495608044064 0.5502527027035348 -0.8795828893751583 -0.03295106831366036 -0.4746031687793886 0.8795828893751583 0.03295106831366036 0.4746031687793886 -0.9931749293461942 -0.1165321844306382 -0.004879519444127158 0.9931749293461942 0.1165321844306382 0.004879519444127158 -0.1241386851449203 -0.252215880966428 0.9596753285558711 0.1241386851449203 0.252215880966428 -0.9596753285558711 -0.1440117039784415 0.1695726396981693 0.9749388437143227 0.1440117039784415 -0.1695726396981693 -0.9749388437143227 0.4731713745155489 -0.7368035674240903 -0.4829382500591563 -0.4731713745155489 0.7368035674240903 0.4829382500591563 -0.4914271999019824 0.8706180904945938 0.02287897943624781 0.4914271999019824 -0.8706180904945938 -0.02287897943624781 0.8609196727568225 -0.02973249428943746 0.5078713378835374 -0.8609196727568225 0.02973249428943746 -0.5078713378835374 0.7938149946100161 0.240672771386379 -0.5585108516810573 -0.7938149946100161 -0.240672771386379 0.5585108516810573 -0.4981315225321004 0.1224069535905647 -0.8584180356752349 0.4981315225321004 -0.1224069535905647 0.8584180356752349 -0.1121383259459405 -0.2398450308899771 0.9643128937287047 0.1121383259459405 0.2398450308899771 -0.9643128937287047 -0.1062966699288113 0.2553977220723043 0.9609750368882238 0.1062966699288113 -0.2553977220723043 -0.9609750368882238 0.2334715834460491 -0.9021087639137927 0.3628922674749679 -0.2334715834460491 0.9021087639137927 -0.3628922674749679 0.2546730969055133 -0.9661253549653743 -0.04175418788079063 -0.2546730969055133 0.9661253549653743 0.04175418788079063 -0.1226019453821983 0.5856224846958062 -0.8012584279788954 0.1226019453821983 -0.5856224846958062 0.8012584279788954 -0.2322335972147434 0.8745422537674141 -0.4257269109418759 0.2322335972147434 -0.8745422537674141 0.4257269109418759 0.8298769241635319 0.5578774476779886 0.008777477608551191 -0.8298769241635319 -0.5578774476779886 -0.008777477608551191 0.6381503195400743 0.5921063201550033 -0.4921120556371302 -0.6381503195400743 -0.5921063201550033 0.4921120556371302 -0.7845301195558947 -0.3705924622541761 -0.4971656850889858 0.7845301195558947 0.3705924622541761 0.4971656850889858 -0.8531044413202037 -0.5209828221013414 -0.02810180198964397 0.8531044413202037 0.5209828221013414 0.02810180198964397 -0.05742407169246319 -0.3531049708559187 0.9338197660935966 0.05742407169246319 0.3531049708559187 -0.9338197660935966 -0.264181886575063 0.9639045097863968 0.03310629576208342 0.264181886575063 -0.9639045097863968 -0.03310629576208342 -0.0961714147092337 0.2735265109821333 0.9570445688591338 0.0961714147092337 -0.2735265109821333 -0.9570445688591338 0.2628301722769759 -0.8574191658827258 -0.4424394585904674 -0.2628301722769759 0.8574191658827258 0.4424394585904674 0.805436444413751 0.3138416009291293 0.5027679221433841 -0.805436444413751 -0.3138416009291293 -0.5027679221433841 -0.5011848910180647 -0.0768321832181772 -0.861922572298196 0.5011848910180647 0.0768321832181772 0.861922572298196 -0.05593530965330448 -0.3240535581092801 0.9443836787083438 0.05593530965330448 0.3240535581092801 -0.9443836787083438 -0.03897239308958518 0.8991793280296998 -0.4358413571713087 0.03897239308958518 -0.8991793280296998 0.4358413571713087 -0.03525158766491567 0.3387304469134816 0.9402228511905546 0.03525158766491567 -0.3387304469134816 -0.9402228511905546 0.03378643596204006 -0.9335658899859859 0.3568097613570249 -0.03378643596204006 0.9335658899859859 -0.3568097613570249 0.04789021286171039 -0.9982553370951237 -0.03453707389401745 -0.04789021286171039 0.9982553370951237 0.03453707389401745 -0.009885358226968684 0.5750224134681391 -0.8180779325357707 0.009885358226968684 -0.5750224134681391 0.8180779325357707 0.5855044421088986 0.8103976357524733 0.02098142601324613 -0.5855044421088986 -0.8103976357524733 -0.02098142601324613 0.4340609032382765 0.7959713587299389 -0.4219250269438712 -0.4340609032382765 -0.7959713587299389 0.4219250269438712 -0.6153560448574253 -0.6092572074248711 -0.5001425729312331 0.6153560448574253 0.6092572074248711 0.5001425729312331 -0.6198630903292977 -0.7840993120202319 -0.03095186806659787 0.6198630903292977 0.7840993120202319 0.03095186806659787 0.02409656358769302 -0.4096282971439647 0.9119342157207393 -0.02409656358769302 0.4096282971439647 -0.9119342157207393 -0.05031979474142957 0.9980457114744417 0.03704964324600307 0.05031979474142957 -0.9980457114744417 -0.03704964324600307 -0.0348206751678781 0.3480614376028201 0.9368248268671744 0.0348206751678781 -0.3480614376028201 -0.9368248268671744 0.06078477015216938 -0.9051564198478542 -0.4207101939884068 -0.06078477015216938 0.9051564198478542 0.4207101939884068 0.6482297321278429 0.6028398979148678 0.4651690787955032 -0.6482297321278429 -0.6028398979148678 -0.4651690787955032 -0.4478966020177788 -0.2541415579067543 -0.8572051693997507 0.4478966020177788 0.2541415579067543 0.8572051693997507 0.01559672925442231 -0.380983862705341 0.9244501275864925 -0.01559672925442231 0.380983862705341 -0.9244501275864925 0.09714985020961668 0.522333864264374 -0.8471890230915977 -0.09714985020961668 -0.522333864264374 0.8471890230915977 0.1553408786736751 0.8736838440230915 -0.4610268453202319 -0.1553408786736751 -0.8736838440230915 0.4610268453202319 0.04774165709909886 0.3792289904447429 0.9240704015299337 -0.04774165709909886 -0.3792289904447429 -0.9240704015299337 -0.1710161198878743 -0.9112221572522233 0.3747367967935634 0.1710161198878743 0.9112221572522233 -0.3747367967935634 -0.1565556598465962 -0.9873325668951926 -0.02578231405725385 0.1565556598465962 0.9873325668951926 0.02578231405725385 0.3468654255841545 0.9373977055235857 0.0311435099730263 -0.3468654255841545 -0.9373977055235857 -0.0311435099730263 0.2151468099413452 0.8989038256627896 -0.3816854233277242 -0.2151468099413452 -0.8989038256627896 0.3816854233277242 -0.4229049650401514 -0.7599165361481899 -0.4936377706708892 0.4229049650401514 0.7599165361481899 0.4936377706708892 -0.3770508568913159 -0.9255392515129642 -0.03478139195526916 0.3770508568913159 0.9255392515129642 0.03478139195526916 0.1086182708157457 -0.4244487475750574 0.8989134173695276 -0.1086182708157457 0.4244487475750574 -0.8989134173695276 -0.1350343542808518 -0.8980551277568514 -0.4186438948242033 0.1350343542808518 0.8980551277568514 0.4186438948242033 0.1612143466838741 0.9862880320014714 0.03529663374821999 -0.1612143466838741 -0.9862880320014714 -0.03529663374821999 0.03730645428521182 0.3914503345569155 0.9194426920933921 -0.03730645428521182 -0.3914503345569155 -0.9194426920933921 0.4512939907351913 0.7735056125491248 0.4449975295227023 -0.4512939907351913 -0.7735056125491248 -0.4449975295227023 -0.3680144667309154 -0.3929169477632095 -0.8427227447014842 0.3680144667309154 0.3929169477632095 0.8427227447014842 0.09726149813952741 -0.4055986414267697 0.9088618943780256 -0.09726149813952741 0.4055986414267697 -0.9088618943780256 -0.3736623046740656 -0.9274521783534832 -0.01445472009568674 0.3736623046740656 0.9274521783534832 0.01445472009568674 0.1954486345942783 0.4220317646660174 -0.8852621198538428 -0.1954486345942783 -0.4220317646660174 0.8852621198538428 0.3803994815951778 0.9242084766368134 0.03368866448496297 -0.3803994815951778 -0.9242084766368134 -0.03368866448496297 0.1318367886920812 0.3805656094993993 0.9153080781975599 -0.1318367886920812 -0.3805656094993993 -0.9153080781975599 -0.3857834882261922 -0.8237101252463507 0.4155390833347361 0.3857834882261922 0.8237101252463507 -0.4155390833347361 0.1338395089256006 0.9904472527131343 0.03318471701790733 -0.1338395089256006 -0.9904472527131343 -0.03318471701790733 0.01120160698955215 0.9329626622364952 -0.3597988255587321 -0.01120160698955215 -0.9329626622364952 0.3597988255587321 -0.2325309580868789 -0.8440969843494561 -0.4831455624792101 0.2325309580868789 0.8440969843494561 0.4831455624792101 -0.154527552306003 -0.9873161144596161 -0.03644345903837389 0.154527552306003 0.9873161144596161 0.03644345903837389 0.1883721494601096 -0.4022385583668752 0.8959464690876995 -0.1883721494601096 0.4022385583668752 -0.8959464690876995 -0.3323026476776037 -0.8385615661172768 -0.431728444948204 0.3323026476776037 0.8385615661172768 0.431728444948204 0.215248562815476 0.3916735621518621 -0.894572454816905 -0.215248562815476 -0.3916735621518621 0.894572454816905 0.3868280921821323 0.9215302862295679 0.03385201117189925 -0.3868280921821323 -0.9215302862295679 -0.03385201117189925 0.1173977769977951 0.4027091350504056 0.9077682052721003 -0.1173977769977951 -0.4027091350504056 -0.9077682052721003 0.2489458852328293 0.8717344856732384 0.4220248010646504 -0.2489458852328293 -0.8717344856732384 -0.4220248010646504 -0.2718556376875321 -0.4882131085991132 -0.8293024013286684 0.2718556376875321 0.4882131085991132 0.8293024013286684 0.1836613834871931 -0.3924336867930833 0.9012570652624913 -0.1836613834871931 0.3924336867930833 -0.9012570652624913 -0.6033355098507652 -0.6384923575383442 0.4778219039749477 0.6033355098507652 0.6384923575383442 -0.4778219039749477 -0.6131254961321928 -0.7899853147212744 0.0005731643582408101 0.6131254961321928 0.7899853147212744 -0.0005731643582408101 0.275362539101309 0.2694875496646566 -0.9227957155489069 -0.275362539101309 -0.2694875496646566 0.9227957155489069 0.6186506423816441 0.7851030912335202 0.02974086105596318 -0.6186506423816441 -0.7851030912335202 -0.02974086105596318 0.2101175513439924 0.3486731677630247 0.9133879989901894 -0.2101175513439924 -0.3486731677630247 -0.9133879989901894 -0.06461905806779944 0.997395885326813 0.03202850710809595 0.06461905806779944 -0.997395885326813 -0.03202850710809595 -0.1834497390466434 0.9148534576368063 -0.3597073036424178 0.1834497390466434 -0.9148534576368063 0.3597073036424178 -0.04706007671438661 -0.8766410006301814 -0.4788380782621098 0.04706007671438661 0.8766410006301814 0.4788380782621098 0.05240676047166495 -0.9979332119693068 -0.03718650165702653 -0.05240676047166495 0.9979332119693068 0.03718650165702653 0.2558861234443253 -0.3505181987180789 0.9009213529471198 -0.2558861234443253 0.3505181987180789 -0.9009213529471198 0.2006831002614205 0.3777160261579191 0.9039119961881992 -0.2006831002614205 -0.3777160261579191 -0.9039119961881992 -0.53050839092554 -0.713187852388419 -0.4581745675647977 0.53050839092554 0.713187852388419 0.4581745675647977 0.2881075812934133 0.2233228200054878 -0.9311932880267425 -0.2881075812934133 -0.2233228200054878 0.9311932880267425 0.6320216216874215 0.7743967147908979 0.02929842727291891 -0.6320216216874215 -0.7743967147908979 -0.02929842727291891 0.05525295018242418 0.9079180958221401 0.4154898828790391 -0.05525295018242418 -0.9079180958221401 -0.4154898828790391 -0.1693098597271242 -0.5435439754273672 -0.8221277991746753 0.1693098597271242 0.5435439754273672 0.8221277991746753 0.2624313659527194 -0.3401103022477795 0.9030253376672848 -0.2624313659527194 0.3401103022477795 -0.9030253376672848 0.2785082007361578 0.2831362367560196 0.9177510847492076 -0.2785082007361578 -0.2831362367560196 -0.9177510847492076 -0.779978121252102 -0.3127799279651076 0.5420358355590368 0.779978121252102 0.3127799279651076 -0.5420358355590368 -0.8613360645284098 -0.5077925879855756 0.0157121459267218 0.8613360645284098 0.5077925879855756 -0.0157121459267218 0.3203858618669948 0.06507575749340232 -0.9450492290364575 -0.3203858618669948 -0.06507575749340232 0.9450492290364575 0.8570000808160878 0.5149590853378663 0.01918337585533324 -0.8570000808160878 -0.5149590853378663 -0.01918337585533324 -0.2668584916686912 0.9632176658702873 0.03159546770830292 0.2668584916686912 -0.9632176658702873 -0.03159546770830292 -0.3848584408113122 0.8410886970001501 -0.3800707622468155 0.3848584408113122 -0.8410886970001501 0.3800707622468155 0.1463445884545457 -0.8636978191850746 -0.4822959035333138 -0.1463445884545457 0.8636978191850746 0.4822959035333138 0.2614864536151934 -0.9645813656025409 -0.03475088068073299 -0.2614864536151934 0.9645813656025409 0.03475088068073299 0.3128152317921457 -0.272750132100432 0.90980986815819 -0.3128152317921457 0.272750132100432 -0.90980986815819 0.8772517041359547 0.4797027255919508 0.01774098785910602 -0.8772517041359547 -0.4797027255919508 -0.01774098785910602 0.2801952750834338 0.3069638684701647 0.9095404286092786 -0.2801952750834338 -0.3069638684701647 -0.9095404286092786 -0.7175498325229612 -0.4930624735870243 -0.4919467806445282 0.7175498325229612 0.4930624735870243 0.4919467806445282 0.3153611958733363 0.02588977355127589 -0.948618487993357 -0.3153611958733363 -0.02588977355127589 0.948618487993357 -0.1392445525868265 0.8939663745427139 0.4259519641483658 0.1392445525868265 -0.8939663745427139 -0.4259519641483658 -0.06131327874475354 -0.5593307263178334 -0.8266739505066874 0.06131327874475354 0.5593307263178334 0.8266739505066874 0.3279961473473233 -0.2498327249204238 0.9110445306812115 -0.3279961473473233 0.2498327249204238 -0.9110445306812115 0.9954171290400191 0.09553601835509044 0.004196237669848525 -0.9954171290400191 -0.09553601835509044 -0.004196237669848525 0.331646199686615 0.1947660239000207 0.9230801667068806 -0.331646199686615 -0.1947660239000207 -0.9230801667068806 -0.8175661160704699 0.09712556361431309 0.5675845934713599 0.8175661160704699 -0.09712556361431309 -0.5675845934713599 -0.845898092456866 -0.133183130216802 -0.5164481300222606 0.845898092456866 0.133183130216802 0.5164481300222606 0.3083725906203965 -0.1573722168839604 -0.9381579455012324 -0.3083725906203965 0.1573722168839604 0.9381579455012324 -0.4989995426749803 0.866022516206001 0.03169318277464853 0.4989995426749803 -0.866022516206001 -0.03169318277464853 -0.5956907462458242 0.6858816290607149 -0.4179939302838174 0.5956907462458242 -0.6858816290607149 0.4179939302838174 0.3620907452817879 -0.7880871337618098 -0.4978041399791435 -0.3620907452817879 0.7880871337618098 0.4978041399791435 0.4980423443424801 -0.8665917528265352 -0.03118584895236354 -0.4980423443424801 0.8665917528265352 0.03118584895236354 0.3599700298658335 -0.1644817040127886 0.9183503398177847 -0.3599700298658335 0.1644817040127886 -0.9183503398177847 0.2943240018707259 -0.1612778925229903 -0.9419993754276824 -0.2943240018707259 0.1612778925229903 0.9419993754276824 0.9995125932000399 0.03116117905467866 0.001885988985655725 -0.9995125932000399 -0.03116117905467866 -0.001885988985655725 0.3431132187610625 0.1961239636348738 0.9185906106637333 -0.3431132187610625 -0.1961239636348738 -0.9185906106637333 -0.8174331647353583 0.04639253701091174 0.5741522042981528 0.8174331647353583 -0.04639253701091174 -0.5741522042981528 -0.8407693587693527 -0.1769326226913789 -0.5116656451063738 0.8407693587693527 0.1769326226913789 0.5116656451063738 -0.351344017464407 0.8170334422133354 0.4571802004647607 0.351344017464407 -0.8170334422133354 -0.4571802004647607 0.05308682866082147 -0.5294829636699153 -0.8466578882914042 -0.05308682866082147 0.5294829636699153 0.8466578882914042 0.3719130906702194 -0.1265632048515265 0.9195990475015922 -0.3719130906702194 0.1265632048515265 -0.9195990475015922 0.2430574879004985 -0.3409814292140196 -0.9081050173337133 -0.2430574879004985 0.3409814292140196 0.9081050173337133 0.9393255939314196 -0.3428193935498642 -0.01192862068678942 -0.9393255939314196 0.3428193935498642 0.01192862068678942 0.36716622020733 0.09385941434953689 0.9254076815526358 -0.36716622020733 -0.09385941434953689 -0.9254076815526358 -0.7106066404541951 0.4478795658527937 0.5426251901947745 0.7106066404541951 -0.4478795658527937 -0.5426251901947745 -0.8322407805009124 0.2410512179802989 -0.4992690593071502 0.8322407805009124 -0.2410512179802989 0.4992690593071502 -0.7492626143908922 0.6617306644805105 0.02679668565899822 0.7492626143908922 -0.6617306644805105 -0.02679668565899822 -0.7718117655767617 0.4268896522834806 -0.4712449716342559 0.7718117655767617 -0.4268896522834806 0.4712449716342559 0.1704561015336629 -0.4188039207007326 -0.8919349715397643 -0.1704561015336629 0.4188039207007326 0.8919349715397643 0.7457573191449481 -0.6658082115411176 -0.02335479364410316 -0.7457573191449481 0.6658082115411176 0.02335479364410316 0.3832945142782272 -0.03327922599264618 0.9230264397304924 -0.3832945142782272 0.03327922599264618 -0.9230264397304924 -0.8487072942267473 0.1690980125474086 -0.5011005796033666 0.8487072942267473 -0.1690980125474086 0.5011005796033666 0.2376184337326038 -0.3172723381324109 -0.9180826451940247 -0.2376184337326038 0.3172723381324109 0.9180826451940247 0.914282202159292 -0.4048044901428724 -0.01487882975655453 -0.914282202159292 0.4048044901428724 0.01487882975655453 0.3773336200634785 0.07297369323016359 0.9231978007264426 -0.3773336200634785 -0.07297369323016359 -0.9231978007264426 -0.716305029535777 0.4292096781431709 0.5501692074716518 0.716305029535777 -0.4292096781431709 -0.5501692074716518 -0.5635137014633063 0.6543319596569852 0.5042836452182177 0.5635137014633063 -0.6543319596569852 -0.5042836452182177 0.1654645754220075 -0.4499810960536757 -0.8775753457537122 -0.1654645754220075 0.4499810960536757 0.8775753457537122 0.7849717542644445 -0.6191505250492028 -0.02172492435652893 -0.7849717542644445 0.6191505250492028 0.02172492435652893 0.3812131251694482 0.001938054737225733 0.9244851524726496 -0.3812131251694482 -0.001938054737225733 -0.9244851524726496 -0.706263187382144 0.707442942431103 0.02677299671754465 0.706263187382144 -0.707442942431103 -0.02677299671754465 0.1468988514602051 -0.4682212046665963 -0.8713148862152154 -0.1468988514602051 0.4682212046665963 0.8713148862152154 0.5453443397134076 -0.6597043316735971 -0.5170974240059992 -0.5453443397134076 0.6597043316735971 0.5170974240059992 0.3801252730647183 -0.01953358577190619 0.9247287255213634 -0.3801252730647183 0.01953358577190619 -0.9247287255213634 -0.5268173003900145 0.6908686067102202 0.4951404853898096 0.5268173003900145 -0.6908686067102202 -0.4951404853898096 -0.7479084547054277 0.3581028584852424 0.5589233275905001 0.7479084547054277 -0.3581028584852424 -0.5589233275905001 -0.857463476648464 0.09220337702018273 -0.506216281326473 0.857463476648464 -0.09220337702018273 0.506216281326473 0.2503476186166397 -0.2899487472026017 -0.9237184602727281 -0.2503476186166397 0.2899487472026017 0.9237184602727281 0.9458611265874839 -0.3243741966978646 -0.01131855676626295 -0.9458611265874839 0.3243741966978646 0.01131855676626295 0.3740559177265709 0.1012911302250636 0.921858057051877 -0.3740559177265709 -0.1012911302250636 -0.921858057051877 -0.7456081572732178 0.479349187413293 -0.4629177381931395 0.7456081572732178 -0.479349187413293 0.4629177381931395 0.7019866539849511 -0.7116120731318623 -0.02868788943065985 -0.7019866539849511 0.7116120731318623 0.02868788943065985 0.3797707895361056 -0.05578521508747981 0.9233970744987049 -0.3797707895361056 0.05578521508747981 -0.9233970744987049 -0.7413372018600667 0.3838759711138743 0.5505073949909002 0.7413372018600667 -0.3838759711138743 -0.5505073949909002 -0.8464429439500593 0.1647919807723101 -0.5063377782768096 0.8464429439500593 -0.1647919807723101 0.5063377782768096 0.2583786506831493 -0.3088727730113479 -0.9153349567035204 -0.2583786506831493 0.3088727730113479 0.9153349567035204 0.9667052361602763 -0.2557355619573141 -0.008961513861014344 -0.9667052361602763 0.2557355619573141 0.008961513861014344 0.3621145849670063 0.1188741203512216 0.9245225637402779 -0.3621145849670063 -0.1188741203512216 -0.9245225637402779 -0.3197967591986774 0.8330108071813056 0.4514676377384902 0.3197967591986774 -0.8330108071813056 -0.4514676377384902 -0.4673945829500927 0.8835792856825052 0.02880884832309254 0.4673945829500927 -0.8835792856825052 -0.02880884832309254 0.0369972132086472 -0.5385792329872361 -0.8417622087084182 -0.0369972132086472 0.5385792329872361 0.8417622087084182 0.325919582977926 -0.8059328847832468 -0.4942151461220593 -0.325919582977926 0.8059328847832468 0.4942151461220593 0.3683543468231149 -0.1472162384577096 0.9179555840621478 -0.3683543468231149 0.1472162384577096 -0.9179555840621478 -0.8188355990647986 -0.04539334334400072 0.5722304658826251 0.8188355990647986 0.04539334334400072 -0.5722304658826251 -0.822254580904724 -0.2531097721189614 -0.5097380184360236 0.822254580904724 0.2531097721189614 0.5097380184360236 0.3007446134877924 -0.1278820455526602 -0.9450919848794326 -0.3007446134877924 0.1278820455526602 0.9450919848794326 0.9912207788015529 0.1321041308441238 0.005465005577446667 -0.9912207788015529 -0.1321041308441238 -0.005465005577446667 0.333464432219462 0.2262048617210932 0.91522283241749 -0.333464432219462 -0.2262048617210932 -0.91522283241749 0.3572482033442377 -0.1813374423690488 0.9162371162545022 -0.3572482033442377 0.1813374423690488 -0.9162371162545022 -0.5652732880236447 0.7136985729110916 -0.4136429098529417 0.5652732880236447 -0.7136985729110916 0.4136429098529417 0.4589963824499008 -0.8877897039360941 -0.03393762636022827 -0.4589963824499008 0.8877897039360941 0.03393762636022827 -0.823645160210407 0.01010080678141246 0.5670155410254093 0.823645160210407 -0.01010080678141246 -0.5670155410254093 -0.8284382484647666 -0.2197789923965592 -0.5151575127878687 0.8284382484647666 0.2197789923965592 0.5151575127878687 0.3143157204193575 -0.1151624860391426 -0.9423073966103337 -0.3143157204193575 0.1151624860391426 0.9423073966103337 0.981402156481385 0.1918066126499629 0.007747941496548565 -0.981402156481385 -0.1918066126499629 -0.007747941496548565 0.3228742433604697 0.2179475000854879 0.921005488681197 -0.3228742433604697 -0.2179475000854879 -0.921005488681197 0.3242555894649844 -0.2627546519260186 0.908745456985592 -0.3242555894649844 0.2627546519260186 -0.908745456985592 -0.1174200889755088 0.8977402856722788 0.4245879204429147 0.1174200889755088 -0.8977402856722788 -0.4245879204429147 -0.2470425728422168 0.9685221241356217 0.03057551738436241 0.2470425728422168 -0.9685221241356217 -0.03057551738436241 -0.07435657945962489 -0.5620431171607689 -0.8237588442883455 0.07435657945962489 0.5620431171607689 0.8237588442883455 0.122052206662836 -0.8647746579518298 -0.4871016832377279 -0.122052206662836 0.8647746579518298 0.4871016832377279 -0.8216029429713218 -0.5698993658412955 0.01353945769047497 0.8216029429713218 0.5698993658412955 -0.01353945769047497 -0.687814852997406 -0.5387613544941684 -0.4864636994676644 0.687814852997406 0.5387613544941684 0.4864636994676644 0.3136922875594778 0.05869778538725343 -0.9477086676380743 -0.3136922875594778 -0.05869778538725343 0.9477086676380743 0.8392381286762829 0.5433628842023259 0.02088395190715675 -0.8392381286762829 -0.5433628842023259 -0.02088395190715675 0.2680639167135812 0.3235094080333575 0.9074598610793101 -0.2680639167135812 -0.3235094080333575 -0.9074598610793101 0.2377993407915023 -0.9701661113154197 -0.047214298408886 -0.2377993407915023 0.9701661113154197 0.047214298408886 0.3107209325440185 -0.2832329611922849 0.9073211073116425 -0.3107209325440185 0.2832329611922849 -0.9073211073116425 -0.3635273000075052 0.851692513376756 -0.3774490227927974 0.3635273000075052 -0.851692513376756 0.3774490227927974 -0.7564678452367355 -0.3791042515503695 0.5329506220836264 0.7564678452367355 0.3791042515503695 -0.5329506220836264 0.3157961521326879 0.1009840434610352 -0.9434378693186151 -0.3157961521326879 -0.1009840434610352 0.9434378693186151 0.8201569852139139 0.5717187770962822 0.02191254253516401 -0.8201569852139139 -0.5717187770962822 -0.02191254253516401 0.2680197907289993 0.2977210426974458 0.9162573724193051 -0.2680197907289993 -0.2977210426974458 -0.9162573724193051 -0.06942815001823158 -0.8752597050279347 -0.4786441065546077 0.06942815001823158 0.8752597050279347 0.4786441065546077 0.2548514201025964 -0.3497432858298242 0.9015156059041062 -0.2548514201025964 0.3497432858298242 -0.9015156059041062 0.07986773118218563 0.905558053888146 0.41663624008735 -0.07986773118218563 -0.905558053888146 -0.41663624008735 -0.04084834986914429 0.9986125210912749 0.03323319173200137 0.04084834986914429 -0.9986125210912749 -0.03323319173200137 -0.1825339355083896 -0.5374471019079156 -0.8233055174348108 0.1825339355083896 0.5374471019079156 0.8233055174348108 -0.5778181017680943 -0.8161625429142692 -0.002223693510753986 0.5778181017680943 0.8161625429142692 0.002223693510753986 -0.5021307064919959 -0.7356131203733092 -0.4546846057790966 0.5021307064919959 0.7356131203733092 0.4546846057790966 0.2804724294980047 0.2496565340564341 -0.9268262141817177 -0.2804724294980047 -0.2496565340564341 0.9268262141817177 0.5959242985213953 0.8024852760343626 0.02985987575050859 -0.5959242985213953 -0.8024852760343626 -0.02985987575050859 0.1886829069587858 0.3827062994548023 0.9043973954955827 -0.1886829069587858 -0.3827062994548023 -0.9043973954955827 0.02641669813824826 -0.9989910161941067 -0.03631952123774438 -0.02641669813824826 0.9989910161941067 0.03631952123774438 0.2495535357316533 -0.3596536697663272 0.8990952511427498 -0.2495535357316533 0.3596536697663272 -0.8990952511427498 -0.1610502094959316 0.9195286051879728 -0.3585107728679537 0.1610502094959316 -0.9195286051879728 0.3585107728679537 -0.5735199496354257 -0.6719919437662193 0.468510079809898 0.5735199496354257 0.6719919437662193 -0.468510079809898 0.2657695805823602 0.2945433575572579 -0.9179383097768463 -0.2657695805823602 -0.2945433575572579 0.9179383097768463 0.5837519371941382 0.8113694555299569 0.03022056344796199 -0.5837519371941382 -0.8113694555299569 -0.03022056344796199 0.1992132108648616 0.3545177770346929 0.9135815466521268 -0.1992132108648616 -0.3545177770346929 -0.9135815466521268 -0.2862029651949788 -0.4777049899822951 -0.8305936462913842 0.2862029651949788 0.4777049899822951 0.8305936462913842 -0.259630524598282 -0.8356972204193286 -0.4839443630007778 0.259630524598282 0.8356972204193286 0.4839443630007778 0.171173079251343 -0.3974581639717709 0.9015136076797746 -0.171173079251343 0.3974581639717709 -0.9015136076797746 0.2759497417719133 0.8621233294073297 0.4249648278477118 -0.2759497417719133 -0.8621233294073297 -0.4249648278477118 0.1627627831762174 0.9861080321639755 0.03315456702210878 -0.1627627831762174 -0.9861080321639755 -0.03315456702210878 -0.3417068928269009 -0.9396636876767586 -0.01638760068771967 0.3417068928269009 0.9396636876767586 0.01638760068771967 -0.303785009541162 -0.8502631311565697 -0.429845641799358 0.303785009541162 0.8502631311565697 0.429845641799358 0.2017864719686995 0.41224349150772 -0.8884466913889372 -0.2017864719686995 -0.41224349150772 0.8884466913889372 0.3533781354598145 0.9348240537342529 0.03504114636828513 -0.3533781354598145 -0.9348240537342529 -0.03504114636828513 0.1058796997325965 0.403970480962094 0.9086238714098311 -0.1058796997325965 -0.403970480962094 -0.9086238714098311 0.03908976938190037 0.9310403854777442 -0.3628164694981797 -0.03908976938190037 -0.9310403854777442 0.3628164694981797 -0.1853003135714887 -0.982022781340319 -0.03598681312553404 0.1853003135714887 0.982022781340319 0.03598681312553404 0.1773610796877783 -0.407874054326998 0.8956460256255497 -0.1773610796877783 0.407874054326998 -0.8956460256255497 -0.3549193342244598 -0.840823918289625 0.4087143313192582 0.3549193342244598 0.840823918289625 -0.4087143313192582 0.1822055254325907 0.439830622007737 -0.8794033036361193 -0.1822055254325907 -0.439830622007737 0.8794033036361193 0.3477622130530788 0.9369285015570612 0.03502036753754913 -0.3477622130530788 -0.9369285015570612 -0.03502036753754913 0.1203037155984768 0.3835571539917935 0.9156478174685484 -0.1203037155984768 -0.3835571539917935 -0.9156478174685484 0.3817045715444365 0.9236517523580562 0.03419152567479299 -0.3817045715444365 -0.9236517523580562 -0.03419152567479299 -0.3808638825150635 -0.376271781229598 -0.8446077489852065 0.3808638825150635 0.376271781229598 0.8446077489852065 -0.4502588378367068 -0.7431572936698991 -0.4949588021392989 0.4502588378367068 0.7431572936698991 0.4949588021392989 0.0853863809066545 -0.4049841614163864 0.9103279601097232 -0.0853863809066545 0.4049841614163864 -0.9103279601097232 0.4839679574708264 0.7461911190259736 0.4571365551214228 -0.4839679574708264 -0.7461911190259736 -0.4571365551214228 -0.1272640715387168 -0.9915104379252862 -0.02666285019639791 0.1272640715387168 0.9915104379252862 0.02666285019639791 -0.1074964943735469 -0.902313169276024 -0.417463110045014 0.1074964943735469 0.902313169276024 0.417463110045014 0.1272910013469667 0.8805065804099733 -0.4566236555751592 -0.1272910013469667 -0.8805065804099733 0.4566236555751592 0.1306357975299962 0.9907866742362398 0.03572190587850656 -0.1306357975299962 -0.9907866742362398 -0.03572190587850656 0.02654281869850746 0.3881449395306496 0.9212160358419118 -0.02654281869850746 -0.3881449395306496 -0.9212160358419118 0.24608647452967 0.8881051220699402 -0.3882148106482991 -0.24608647452967 -0.8881051220699402 0.3882148106482991 -0.4100890657649051 -0.9114022377113701 -0.03424790847299099 0.4100890657649051 0.9114022377113701 0.03424790847299099 0.09586480764581787 -0.4238883735895807 0.900626773636344 -0.09586480764581787 0.4238883735895807 -0.900626773636344 -0.1414171634691401 -0.9177766694141802 0.3710622197898309 0.1414171634691401 0.9177766694141802 -0.3710622197898309 0.08231754639569727 0.532746798148681 -0.8422616402387804 -0.08231754639569727 -0.532746798148681 0.8422616402387804 0.03577593509908762 0.376879423980663 0.9255711654150584 -0.03577593509908762 -0.376879423980663 -0.9255711654150584 0.674701977245175 0.5584531599486828 0.4826047140722749 -0.674701977245175 -0.5584531599486828 -0.4826047140722749 0.6195348000722665 0.7846501978477477 0.02237629363650723 -0.6195348000722665 -0.7846501978477477 -0.02237629363650723 -0.4569983235447788 -0.2308211994285236 -0.8589959872849463 0.4569983235447788 0.2308211994285236 0.8589959872849463 -0.640204806147654 -0.5821627797804134 -0.5012228087625168 0.640204806147654 0.5821627797804134 0.5012228087625168 0.004104716059359423 -0.3751759950358459 0.9269445096956641 -0.004104716059359423 0.3751759950358459 -0.9269445096956641 0.07708188418723362 -0.9963873970472187 -0.03564460878750064 -0.07708188418723362 0.9963873970472187 0.03564460878750064 0.08908413621321892 -0.9018765858658367 -0.4227086946611419 -0.08908413621321892 0.9018765858658367 0.4227086946611419 -0.06621297605435472 0.8988127326352441 -0.4333030272855141 0.06621297605435472 -0.8988127326352441 0.4333030272855141 -0.08027734084685322 0.9960943927787809 0.03676287830447991 0.08027734084685322 -0.9960943927787809 -0.03676287830447991 -0.04438937087252709 0.3395012522623767 0.9395575998659259 0.04438937087252709 -0.3395012522623767 -0.9395575998659259 0.01160241142300691 -0.4044586493257089 0.9144826871159424 -0.01160241142300691 0.4044586493257089 -0.9144826871159424 0.460879652033973 0.7725758700024636 -0.4367109701289637 -0.460879652033973 -0.7725758700024636 0.4367109701289637 -0.652862642100236 -0.7569451882164892 -0.02836111044728642 0.652862642100236 0.7569451882164892 0.02836111044728642 0.06267172098493584 -0.9321992982217414 0.3564782234354281 -0.06267172098493584 0.9321992982217414 -0.3564782234354281 -0.02540906870737653 0.5793748184688801 -0.8146650839158238 0.02540906870737653 -0.5793748184688801 0.8146650839158238 -0.04650596936050504 0.3295030845688647 0.9430084369046989 0.04650596936050504 -0.3295030845688647 -0.9430084369046989 -0.06468376165068974 -0.3131914276879613 0.9474846387153163 0.06468376165068974 0.3131914276879613 -0.9474846387153163 0.8190040891150869 0.2677833677801808 0.5074685901147686 -0.8190040891150869 -0.2677833677801808 -0.5074685901147686 0.8580878426413556 0.5134904032115263 0.003586101053787535 -0.8580878426413556 -0.5134904032115263 -0.003586101053787535 -0.4994845441692579 -0.04703125899196081 -0.8650452305016542 0.4994845441692579 0.04703125899196081 0.8650452305016542 -0.8539216757964206 -0.5200262819562841 -0.01975949593881323 0.8539216757964206 0.5200262819562841 0.01975949593881323 0.2852085614390063 -0.9574829271713448 -0.04338802435333355 -0.2852085614390063 0.9574829271713448 0.04338802435333355 0.2923757519874668 -0.8450098693040526 -0.4477440568321495 -0.2923757519874668 0.8450098693040526 0.4477440568321495 -0.2599931803788589 0.8674723641581483 -0.4241405941175153 0.2599931803788589 -0.8674723641581483 0.4241405941175153 -0.2945837843567172 0.9549877330598857 0.03491165563555571 0.2945837843567172 -0.9549877330598857 -0.03491165563555571 -0.1034251404298343 0.26085776955375 0.9598210585262816 0.1034251404298343 -0.26085776955375 -0.9598210585262816 -0.8820069727444916 -0.4709006088845356 -0.01778529117757768 0.8820069727444916 0.4709006088845356 0.01778529117757768 -0.06788913571598272 -0.3406639787186241 0.9377308349709599 0.06788913571598272 0.3406639787186241 -0.9377308349709599 0.6640268346823709 0.5539656351546057 -0.5021856607764358 -0.6640268346823709 -0.5539656351546057 0.5021856607764358 -0.4965328229289699 -0.007212757334351909 -0.8679879791136649 0.4965328229289699 0.007212757334351909 0.8679879791136649 0.2614934444580715 -0.8933487023252803 0.3654439417464616 -0.2614934444580715 0.8933487023252803 -0.3654439417464616 -0.1382473958712453 0.583207717912289 -0.8004726199579592 0.1382473958712453 -0.583207717912289 0.8004726199579592 -0.114141413431016 0.2415027933932298 0.9636639136769817 0.114141413431016 -0.2415027933932298 -0.9636639136769817 -0.8822930021998877 0.02221209157725519 -0.4701762236192644 0.8822930021998877 -0.02221209157725519 0.4701762236192644 -0.1188250463877658 -0.2260188820695762 0.9668485265536502 0.1188250463877658 0.2260188820695762 -0.9668485265536502 0.8587563515222183 -0.08016604293207227 0.5060740403151119 -0.8587563515222183 0.08016604293207227 -0.5060740403151119 0.8050736187094051 0.1826511136534107 -0.564353647227793 -0.8050736187094051 -0.1826511136534107 0.564353647227793 -0.492612678330724 0.1528176287577358 -0.856726048097461 0.492612678330724 -0.1528176287577358 0.856726048097461 0.5098126035478107 -0.8590875699022332 -0.04538343864537134 -0.5098126035478107 0.8590875699022332 0.04538343864537134 0.5032434482250976 -0.7119749758641289 -0.4897322386384079 -0.5032434482250976 0.7119749758641289 0.4897322386384079 -0.4603753100173895 0.7788984058880536 -0.4258777374217175 0.4603753100173895 -0.7788984058880536 0.4258777374217175 -0.523498639095926 0.8514919385532362 0.03017703503601408 0.523498639095926 -0.8514919385532362 -0.03017703503601408 -0.1518535687965457 0.154520002132968 0.9762500000433191 0.1518535687965457 -0.154520002132968 -0.9762500000433191 -0.9986631704877207 -0.05164308480979089 -0.002205380407690168 0.9986631704877207 0.05164308480979089 0.002205380407690168 -0.1318326200590944 -0.234976129845822 0.9630194072245034 0.1318326200590944 0.234976129845822 -0.9630194072245034 0.8570540920898327 -0.04024487428179111 0.5136522494121047 -0.8570540920898327 0.04024487428179111 -0.5136522494121047 0.8020522544097641 0.2179622658222837 -0.556061715885774 -0.8020522544097641 -0.2179622658222837 0.556061715885774 0.4616480901245103 -0.79099306047077 0.4015109203639135 -0.4616480901245103 0.79099306047077 -0.4015109203639135 -0.25257374780988 0.5415648808669609 -0.8018191702178402 0.25257374780988 -0.5415648808669609 0.8018191702178402 -0.1597949684978955 0.1228200618629221 0.9794798621956169 0.1597949684978955 -0.1228200618629221 -0.9794798621956169 -0.4353175597640887 0.3341211481231659 -0.8359794737539293 0.4353175597640887 -0.3341211481231659 0.8359794737539293 -0.8085300793051226 0.3822941225048211 -0.4473592681024069 0.8085300793051226 -0.3822941225048211 0.4473592681024069 -0.1551321596947687 -0.1168575652958692 0.9809578596767339 0.1551321596947687 0.1168575652958692 -0.9809578596767339 0.7805990224724158 -0.4067995959297094 0.4745305626264066 -0.7805990224724158 0.4067995959297094 -0.4745305626264066 0.924486303246182 -0.3785777619601645 -0.04476553651461776 -0.924486303246182 0.3785777619601645 0.04476553651461776 0.7501967760572326 -0.6593607613057052 -0.04947912331170887 -0.7501967760572326 0.6593607613057052 0.04947912331170887 0.6978478847480852 -0.4622788558928253 -0.5470891967010899 -0.6978478847480852 0.4622788558928253 0.5470891967010899 -0.6649136060196553 0.6072581488774166 -0.434887844336804 0.6649136060196553 -0.6072581488774166 0.434887844336804 -0.760467105916375 0.6489733367243699 0.02287769743681768 0.760467105916375 -0.6489733367243699 -0.02287769743681768 -0.171953642694786 0.01941832872952423 0.9849136374694718 0.171953642694786 -0.01941832872952423 -0.9849136374694718 0.8041150128230653 -0.178476691563577 -0.5670494834854194 -0.8041150128230653 0.178476691563577 0.5670494834854194 -0.9246620643280678 0.3805553436602243 0.01333031148191201 0.9246620643280678 -0.3805553436602243 -0.01333031148191201 -0.1673212804961899 -0.09874576694697208 0.980944882551089 0.1673212804961899 0.09874576694697208 -0.980944882551089 0.6515713666903741 -0.6172349448124972 0.4409940782046305 -0.6515713666903741 0.6172349448124972 -0.4409940782046305 -0.3609566471516233 0.4491862863400353 -0.8172771739386255 0.3609566471516233 -0.4491862863400353 0.8172771739386255 -0.1680958210730742 -0.01327446757619972 0.9856812788362867 0.1680958210730742 0.01327446757619972 -0.9856812788362867 0.7077234985869574 -0.7046654485268453 -0.05073514758327681 -0.7077234985869574 0.7046654485268453 0.05073514758327681 -0.342296253152495 0.4701368124202711 -0.8135137692043508 0.342296253152495 -0.4701368124202711 0.8135137692043508 -0.6285692651519454 0.6463050638907462 -0.4326551089442051 0.6285692651519454 -0.6463050638907462 0.4326551089442051 -0.1684940725506878 0.01077890427230811 0.9856437301266476 0.1684940725506878 -0.01077890427230811 -0.9856437301266476 0.6208745200734542 -0.6569329412250992 0.4277311551160358 -0.6208745200734542 0.6569329412250992 -0.4277311551160358 0.8016952897873982 -0.3477265981354733 0.4861798795526515 -0.8016952897873982 0.3477265981354733 -0.4861798795526515 0.8149503753719954 -0.1081215601672776 -0.569355437234104 -0.8149503753719954 0.1081215601672776 0.569355437234104 -0.8324307492478874 0.3218681311364857 -0.4510653543172061 0.8324307492478874 -0.3218681311364857 0.4510653543172061 -0.951308818898382 0.308069603019877 0.01022989644818191 0.951308818898382 -0.308069603019877 -0.01022989644818191 -0.1634302060126187 -0.1247405643740396 0.9786369905957566 0.1634302060126187 0.1247405643740396 -0.9786369905957566 0.6678646842738194 -0.5214257130287312 -0.5311044994088369 -0.6678646842738194 0.5214257130287312 0.5311044994088369 -0.718278485553605 0.6953136880547992 0.02479702390314172 0.718278485553605 -0.6953136880547992 -0.02479702390314172 -0.1694016656235607 0.04483516685173435 0.9845267307175263 0.1694016656235607 -0.04483516685173435 -0.9845267307175263 0.8048888050458055 -0.3506580527077226 0.4787409963468383 -0.8048888050458055 0.3506580527077226 -0.4787409963468383 0.8033788736156395 -0.1702434220385553 -0.5706133215064897 -0.8033788736156395 0.1702434220385553 0.5706133215064897 -0.4492202155089497 0.3040881169407794 -0.840078338676521 0.4492202155089497 -0.3040881169407794 0.840078338676521 -0.1500286448931143 -0.1381858466799649 0.9789770566713384 0.1500286448931143 0.1381858466799649 -0.9789770566713384 0.4259236542733373 -0.8178625688033844 0.3868977374976181 -0.4259236542733373 0.8178625688033844 -0.3868977374976181 0.4675574684184699 -0.8826942109090509 -0.04733860743367385 -0.4675574684184699 0.8826942109090509 0.04733860743367385 -0.2320262889549334 0.5524684967797857 -0.8005887591639579 0.2320262889549334 -0.5524684967797857 0.8005887591639579 -0.4235561613148924 0.8000764739943699 -0.4248268046780114 0.4235561613148924 -0.8000764739943699 0.4248268046780114 -0.1520170731640112 0.1435797585607158 0.9778934821330462 0.1520170731640112 -0.1435797585607158 -0.9778934821330462 0.8563174279290809 0.03077461079569902 0.5155321386250295 -0.8563174279290809 -0.03077461079569902 -0.5155321386250295 0.785470581674461 0.2863404754438074 -0.5486757671399369 -0.785470581674461 -0.2863404754438074 0.5486757671399369 -0.8789037696885808 -0.04562595251895923 -0.4748120007791926 0.8789037696885808 0.04562595251895923 0.4748120007791926 -0.9909627935175657 -0.1340079579351373 -0.005882947723453319 0.9909627935175657 0.1340079579351373 0.005882947723453319 -0.1214837412088746 -0.2566053289175989 0.9588510863491715 0.1214837412088746 0.2566053289175989 -0.9588510863491715 -0.1424467051888185 0.1742469875797838 0.9743443557080939 0.1424467051888185 -0.1742469875797838 -0.9743443557080939 0.4649641777172875 -0.7433751702324944 -0.4808343474851776 -0.4649641777172875 0.7433751702324944 0.4808343474851776 -0.4806947298180828 0.8763132906175912 0.03174261192922667 0.4806947298180828 -0.8763132906175912 -0.03174261192922667 0.8608037503856283 -0.01643322137169287 0.5086716549576807 -0.8608037503856283 0.01643322137169287 -0.5086716549576807 0.7900847555419815 0.2562248601408235 -0.5568796100648529 -0.7900847555419815 -0.2562248601408235 0.5568796100648529 -0.4979955375276722 0.116898192729161 -0.859264369760076 0.4979955375276722 -0.116898192729161 0.859264369760076 -0.1096791654130207 -0.2434487385707459 0.9636924781083518 0.1096791654130207 0.2434487385707459 -0.9636924781083518 -0.1039480623327925 0.2597358875639912 0.9600687834986634 0.1039480623327925 -0.2597358875639912 -0.9600687834986634 0.2255224611613599 -0.904207791908424 0.3626953109206335 -0.2255224611613599 0.904207791908424 -0.3626953109206335 0.2462915013868555 -0.9683106333600775 -0.04141272348462648 -0.2462915013868555 0.9683106333600775 0.04141272348462648 -0.1176960056074974 0.5854780210354769 -0.8020992065501759 0.1176960056074974 -0.5854780210354769 0.8020992065501759 -0.224540275744401 0.8769444447397742 -0.4249118795805522 0.224540275744401 -0.8769444447397742 0.4249118795805522 0.8181774061953669 0.5749098000536865 0.008028312005125892 -0.8181774061953669 -0.5749098000536865 -0.008028312005125892 0.6305000530243112 0.6022946171061921 -0.4896027750546829 -0.6305000530243112 -0.6022946171061921 0.4896027750546829 -0.4949950778106962 -0.03895226334673744 -0.8680222313531776 0.4949950778106962 0.03895226334673744 0.8680222313531776 -0.8451084478559042 -0.5342109596224031 -0.02025739326505952 0.8451084478559042 0.5342109596224031 0.02025739326505952 -0.0538163228126221 -0.3553819643204697 0.9331706504357347 0.0538163228126221 0.3553819643204697 -0.9331706504357347 -0.2549154754785329 0.9663207723906242 0.03524578283909989 0.2549154754785329 -0.9663207723906242 -0.03524578283909989 -0.09422842523274229 0.2772615555168482 0.95616266069667 0.09422842523274229 -0.2772615555168482 -0.95616266069667 0.2548985531969059 -0.8600368136205863 -0.4419993289536457 -0.2548985531969059 0.8600368136205863 0.4419993289536457 0.7992879325211242 0.3271162399258568 0.5041168183098793 -0.7992879325211242 -0.3271162399258568 -0.5041168183098793 -0.4949187544227878 -0.08219062784281732 -0.8650434250460493 0.4949187544227878 0.08219062784281732 0.8650434250460493 -0.8143993150854482 -0.5798944858367074 -0.02182065270639956 0.8143993150854482 0.5798944858367074 0.02182065270639956 -0.05282635912663602 -0.3265000265018341 0.9437198252001096 0.05282635912663602 0.3265000265018341 -0.9437198252001096 -0.03140988032332349 0.8992719256145415 -0.4362607284865198 0.03140988032332349 -0.8992719256145415 0.4362607284865198 -0.03222483287965563 0.3414911777191863 0.9393323882874697 0.03222483287965563 -0.3414911777191863 -0.9393323882874697 0.02592929075766842 -0.9334593989305918 0.3577446329841197 -0.02592929075766842 0.9334593989305918 -0.3577446329841197 0.04047920242278022 -0.998569081342663 -0.03494601490421647 -0.04047920242278022 0.998569081342663 0.03494601490421647 -0.005328154191109313 0.5750362599656316 -0.818110573515374 0.005328154191109313 -0.5750362599656316 0.818110573515374 0.5749242631461603 0.8178528227190813 0.02405934363766486 -0.5749242631461603 -0.8178528227190813 -0.02405934363766486 0.4214741465651992 0.8001850432365848 -0.4266889269217117 -0.4214741465651992 -0.8001850432365848 0.4266889269217117 -0.607500139413018 -0.6169766682208152 -0.5002832912303845 0.607500139413018 0.6169766682208152 0.5002832912303845 -0.6082853638018145 -0.7931728257612001 -0.02942421891039525 0.6082853638018145 0.7931728257612001 0.02942421891039525 0.02732148043861099 -0.411197043048017 0.9111369427782027 -0.02732148043861099 0.411197043048017 -0.9111369427782027 -0.04233230297869504 0.99843938351606 0.03642490313768718 0.04233230297869504 -0.99843938351606 -0.03642490313768718 -0.03222572048387662 0.3507365514660342 0.9359195341507778 0.03222572048387662 -0.3507365514660342 -0.9359195341507778 0.0535986355584465 -0.9051101330327424 -0.4217852929485856 -0.0535986355584465 0.9051101330327424 0.4217852929485856 0.6412311608394218 0.6027462110192511 0.4748890433253478 -0.6412311608394218 -0.6027462110192511 -0.4748890433253478 -0.4461736197689663 -0.2574888449979427 -0.8571047752310586 0.4461736197689663 0.2574888449979427 0.8571047752310586 0.01845899878033352 -0.3828914709383621 0.9236088927932022 -0.01845899878033352 0.3828914709383621 -0.9236088927932022 0.1011375575336253 0.5194380772539559 -0.8485017845325052 -0.1011375575336253 -0.5194380772539559 0.8485017845325052 0.1630062188243885 0.8718097571228917 -0.4619271804190572 -0.1630062188243885 -0.8718097571228917 0.4619271804190572 0.05107088372148411 0.3804430891390565 0.9233931019680829 -0.05107088372148411 -0.3804430891390565 -0.9233931019680829 -0.1789110234207843 -0.9095031086441852 0.375226519671906 0.1789110234207843 0.9095031086441852 -0.375226519671906 -0.164464998711951 -0.9860462985513705 -0.02576744674622084 0.164464998711951 0.9860462985513705 0.02576744674622084 0.3395208403843986 0.9401053719795921 0.03045469618604664 -0.3395208403843986 -0.9401053719795921 -0.03045469618604664 0.2081649944077018 0.9007460282722055 -0.3812137558576403 -0.2081649944077018 -0.9007460282722055 0.3812137558576403 -0.4170652272044756 -0.7630490978978199 -0.4937739062103245 0.4170652272044756 0.7630490978978199 0.4937739062103245 -0.3672005745438822 -0.9296732929524478 -0.02951790008782431 0.3672005745438822 0.9296732929524478 0.02951790008782431 0.1118377840482386 -0.4246172504853856 0.8984389242733257 -0.1118377840482386 0.4246172504853856 -0.8984389242733257 -0.142990897232966 -0.896970561440987 -0.418326923848743 0.142990897232966 0.896970561440987 0.418326923848743 0.1697237926371042 0.9848328332159376 0.03602949947954706 -0.1697237926371042 -0.9848328332159376 -0.03602949947954706 0.04030372198163225 0.3929482365801176 0.9186769254547559 -0.04030372198163225 -0.3929482365801176 -0.9186769254547559 0.4425223119009562 0.7807305174758044 0.4411732795079453 -0.4425223119009562 -0.7807305174758044 -0.4411732795079453 -0.3615543092865395 -0.3924585997017193 -0.8457273372408504 0.3615543092865395 0.3924585997017193 0.8457273372408504 0.1003911431603658 -0.4059716081359349 0.9083549260957843 -0.1003911431603658 0.4059716081359349 -0.9083549260957843 -0.390456001742171 -0.9205063126905769 -0.01456842477125177 0.390456001742171 0.9205063126905769 0.01456842477125177 0.2028030013390004 0.4137140405601716 -0.8875312024324948 -0.2028030013390004 -0.4137140405601716 0.8875312024324948 0.3966129038026112 0.9173788643791272 0.03337998992995159 -0.3966129038026112 -0.9173788643791272 -0.03337998992995159 0.1368380461281864 0.3784294566205597 0.9154597181163616 -0.1368380461281864 -0.3784294566205597 -0.9154597181163616 -0.4037532977559437 -0.8135903237631738 0.4183946218943716 0.4037532977559437 0.8135903237631738 -0.4183946218943716 0.21303956080358 0.9762374115492939 -0.03968200882203873 -0.21303956080358 -0.9762374115492939 0.03968200882203873 0.1082255873183704 0.9240476898198827 -0.366637544706119 -0.1082255873183704 -0.9240476898198827 0.366637544706119 -0.3281825396220066 -0.7677697899706376 -0.5502960751229226 0.3281825396220066 0.7677697899706376 0.5502960751229226 -0.232870310831776 -0.9718855641032611 -0.03478316576733741 0.232870310831776 0.9718855641032611 0.03478316576733741 0.147399415242306 -0.3971111236085312 0.9058565934476583 -0.147399415242306 0.3971111236085312 -0.9058565934476583 -0.3468619440926344 -0.8319654750379002 -0.4330360724988613 0.3468619440926344 0.8319654750379002 0.4330360724988613 0.2233818142720267 0.3809947250783958 -0.8971864825748187 -0.2233818142720267 -0.3809947250783958 0.8971864825748187 0.4038637965610512 0.9142113244796445 0.03334198585069928 -0.4038637965610512 -0.9142113244796445 -0.03334198585069928 0.1223556349422535 0.4012342646726683 0.9077665798268084 -0.1223556349422535 -0.4012342646726683 -0.9077665798268084 0.3151262054911223 0.8509720714544223 0.4201690233909879 -0.3151262054911223 -0.8509720714544223 -0.4201690233909879 -0.3363285040587479 -0.460545695550053 -0.8214504243519037 0.3363285040587479 0.460545695550053 0.8214504243519037 0.1477922431507489 -0.3878572766046277 0.9097934852752637 -0.1477922431507489 0.3878572766046277 -0.9097934852752637 -0.6420223712039709 -0.5915254973598801 0.4877549188340153 0.6420223712039709 0.5915254973598801 -0.4877549188340153 -0.6565371471631942 -0.754292366419499 0.001414339452328107 0.6565371471631942 0.754292366419499 -0.001414339452328107 0.2874131142788096 0.2414302979496353 -0.926879233218927 -0.2874131142788096 -0.2414302979496353 0.926879233218927 0.6582517385598384 0.7522703007461163 0.0281787738962858 -0.6582517385598384 -0.7522703007461163 -0.0281787738962858 0.2201302461169165 0.3383242007378086 0.9149204391309819 -0.2201302461169165 -0.3383242007378086 -0.9149204391309819 0.211674352703625 0.3682913629543855 0.90529301354904 -0.211674352703625 -0.3682913629543855 -0.90529301354904 -0.5633788388508121 -0.6828498403304095 -0.4651025472902132 0.5633788388508121 0.6828498403304095 0.4651025472902132 0.2983727723315879 0.1911953128740891 -0.9351032248185981 -0.2983727723315879 -0.1911953128740891 0.9351032248185981 0.674927701277569 0.7373622019771242 0.02774132555634514 -0.674927701277569 -0.7373622019771242 -0.02774132555634514 0.2878281304533213 0.272313808334655 0.9181504000489368 -0.2878281304533213 -0.272313808334655 -0.9181504000489368 -0.7965447710859634 -0.2533387290974468 0.548940721749535 0.7965447710859634 0.2533387290974468 -0.548940721749535 -0.8952334756083304 -0.4451678348495047 0.01956075064083848 0.8952334756083304 0.4451678348495047 -0.01956075064083848 0.323305146806377 0.02811834809783417 -0.9458769161729004 -0.323305146806377 -0.02811834809783417 0.9458769161729004 0.8886035632950323 0.4583424303461484 0.01749067876778379 -0.8886035632950323 -0.4583424303461484 -0.01749067876778379 0.906754285544305 0.4213211032482745 0.01688767611880801 -0.906754285544305 -0.4213211032482745 -0.01688767611880801 0.2923095969905519 0.2931838782058966 0.910273757211187 -0.2923095969905519 -0.2931838782058966 -0.910273757211187 -0.7420274019922476 -0.4512271064426712 -0.4957715533428774 0.7420274019922476 0.4512271064426712 0.4957715533428774 0.3148774672198147 -0.004859640941630026 -0.9491198894381852 -0.3148774672198147 0.004859640941630026 0.9491198894381852 0.9986401715628105 0.05205829125818463 0.002782454362333355 -0.9986401715628105 -0.05205829125818463 -0.002782454362333355 0.3382231696957797 0.1884624621425752 0.9220016203044864 -0.3382231696957797 -0.1884624621425752 -0.9220016203044864 -0.8102135096867793 0.1385468360586977 0.5695251029929724 0.8102135096867793 -0.1385468360586977 -0.5695251029929724 -0.8502737882648265 -0.1027684743468968 -0.5162103502160649 0.8502737882648265 0.1027684743468968 0.5162103502160649 0.303877800446322 -0.1820341730033242 -0.935158725701098 -0.303877800446322 0.1820341730033242 0.935158725701098 0.2901892237089887 -0.1816512751772797 -0.93957066188214 -0.2901892237089887 0.1816512751772797 0.93957066188214 0.9998125299270766 -0.01936037700034898 0.0002842590771083226 -0.9998125299270766 0.01936037700034898 -0.0002842590771083226 0.3506254054122222 0.1891087030700747 0.9172239222254668 -0.3506254054122222 -0.1891087030700747 -0.9172239222254668 -0.8135822918348952 0.08558692183375054 0.5751162780027209 0.8135822918348952 -0.08558692183375054 -0.5751162780027209 -0.8477088503314019 -0.1457273455941529 -0.5100521991089688 0.8477088503314019 0.1457273455941529 0.5100521991089688 0.233260413971422 -0.3605413853497441 -0.9031054693245791 -0.233260413971422 0.3605413853497441 0.9031054693245791 0.9227544269434004 -0.3850370367752869 -0.01645441787676223 -0.9227544269434004 0.3850370367752869 0.01645441787676223 0.3711224996238446 0.08354633718180803 0.9248178738629855 -0.3711224996238446 -0.08354633718180803 -0.9248178738629855 -0.6915447098790261 0.481439542933741 0.5384996571383163 0.6915447098790261 -0.481439542933741 -0.5384996571383163 -0.8981601842993114 0.4388146585051151 0.02738574118891374 0.8981601842993114 -0.4388146585051151 -0.02738574118891374 -0.8429287075021802 0.2038949616908318 -0.4978936017522199 0.8429287075021802 -0.2038949616908318 0.4978936017522199 0.2290063307694923 -0.3335946999735647 -0.9144783631213158 -0.2290063307694923 0.3335946999735647 0.9144783631213158 0.8927780707210031 -0.4501282400025586 -0.01821768349386265 -0.8927780707210031 0.4501282400025586 0.01821768349386265 0.3806823163284625 0.05861925864707265 0.9228460091209498 -0.3806823163284625 -0.05861925864707265 -0.9228460091209498 -0.6731376809319953 0.739009762831531 0.02739038059574327 0.6731376809319953 -0.739009762831531 -0.02739038059574327 0.1328407661518205 -0.4811534645646102 -0.8665129395373562 -0.1328407661518205 0.4811534645646102 0.8665129395373562 0.51619967388126 -0.6859437923518563 -0.5128537904889018 -0.51619967388126 0.6859437923518563 0.5128537904889018 0.3820894849711712 -0.03801541506118901 0.9233430855820555 -0.3820894849711712 0.03801541506118901 -0.9233430855820555 -0.4982123819319361 0.7158544086919615 0.4892206946215469 0.4982123819319361 -0.7158544086919615 -0.4892206946215469 -0.7240796828342754 0.517304253506521 -0.4561851841200856 0.7240796828342754 -0.517304253506521 0.4561851841200856 0.6700291588090248 -0.7418444177367702 -0.02697751320012681 -0.6700291588090248 0.7418444177367702 0.02697751320012681 0.3799147067183139 -0.07529237210084216 0.9219522082638373 -0.3799147067183139 0.07529237210084216 -0.9219522082638373 -0.2919936616748643 0.8457083057970546 0.446673441171042 0.2919936616748643 -0.8457083057970546 -0.446673441171042 -0.4366467943183944 0.8991718161908844 0.0288031591922864 0.4366467943183944 -0.8991718161908844 -0.0288031591922864 0.02176310891147589 -0.5441273983997713 -0.838720299862358 -0.02176310891147589 0.5441273983997713 0.838720299862358 0.2991033077776762 -0.8171348416011702 -0.4927756709882125 -0.2991033077776762 0.8171348416011702 0.4927756709882125 0.3640512938492289 -0.1638710919855381 0.9168494536499271 -0.3640512938492289 0.1638710919855381 -0.9168494536499271 0.3516823252399595 -0.1960017035970046 0.9153703481656413 -0.3516823252399595 0.1960017035970046 -0.9153703481656413 -0.5385220158761696 0.7373253777364415 -0.4078545399557058 0.5385220158761696 -0.7373253777364415 0.4078545399557058 0.4313161246761184 -0.9015999330060595 -0.03292356903259632 -0.4313161246761184 0.9015999330060595 0.03292356903259632 0.3161408569706932 -0.276318589201155 0.9075808480877718 -0.3161408569706932 0.276318589201155 -0.9075808480877718 -0.09031941409519692 0.9018366056574806 0.4225318214450767 0.09031941409519692 -0.9018366056574806 -0.4225318214450767 -0.2181477144127747 0.9754001696778496 0.03171882231270052 0.2181477144127747 -0.9754001696778496 -0.03171882231270052 -0.0896782978087952 -0.5583215418063012 -0.8247635169290356 0.0896782978087952 0.5583215418063012 0.8247635169290356 0.0960842676760772 -0.8714986070373602 -0.4808929105706309 -0.0960842676760772 0.8714986070373602 0.4808929105706309 0.2086396917803162 -0.9773332616215297 -0.03590507961330022 -0.2086396917803162 0.9773332616215297 0.03590507961330022 0.303755031098276 -0.2967980573531617 0.9053418107178497 -0.303755031098276 0.2967980573531617 -0.9053418107178497 -0.3354200464215088 0.8652481196877145 -0.3726111697674499 0.3354200464215088 -0.8652481196877145 0.3726111697674499 -0.09634588207538014 -0.872989311001495 -0.4781287837855525 0.09634588207538014 0.872989311001495 0.4781287837855525 0.2454546829535896 -0.3778153799396332 0.8927527862164438 -0.2454546829535896 0.3778153799396332 -0.8927527862164438 0.1068701902825446 0.902645124026476 0.4169059156454855 -0.1068701902825446 -0.902645124026476 -0.4169059156454855 -0.01345127660992325 0.9993635619425534 0.03303837494574641 0.01345127660992325 -0.9993635619425534 -0.03303837494574641 -0.197404561831315 -0.5321700194341986 -0.823302198092287 0.197404561831315 0.5321700194341986 0.823302198092287 -0.003023102013275489 -0.9993161130292113 -0.03685331863490642 0.003023102013275489 0.9993161130292113 0.03685331863490642 0.24107826661194 -0.3871069096442774 0.8899603979239974 -0.24107826661194 0.3871069096442774 -0.8899603979239974 -0.1343592170136983 0.9238922681259719 -0.3582885397281262 0.1343592170136983 -0.9238922681259719 0.3582885397281262 -0.2993726317215964 -0.4646029928355155 -0.8333787172854652 0.2993726317215964 0.4646029928355155 0.8333787172854652 -0.2850223760582144 -0.8250074135917964 -0.4879805453752275 0.2850223760582144 0.8250074135917964 0.4879805453752275 0.1571476355888667 -0.4017430088752111 0.9021680416910815 -0.1571476355888667 0.4017430088752111 -0.9021680416910815 0.3048783085344589 0.8512515442137769 0.4271065738885638 -0.3048783085344589 -0.8512515442137769 -0.4271065738885638 0.1916387936300435 0.9809179758786124 0.03277952675417279 -0.1916387936300435 -0.9809179758786124 -0.03277952675417279 0.06722148092182911 0.9289434869574044 -0.3640676730253523 -0.06722148092182911 -0.9289434869574044 0.3640676730253523 -0.2140869666060625 -0.9760638362636109 -0.0382904461684297 0.2140869666060625 0.9760638362636109 0.0382904461684297 0.1633948649649251 -0.4107173382797202 0.8970024448904896 -0.1633948649649251 0.4107173382797202 -0.8970024448904896 0.4114800596926324 0.9109495221915634 0.02924258015822321 -0.4114800596926324 -0.9109495221915634 -0.02924258015822321 -0.3926793406448987 -0.3585905939007256 -0.8468858963264251 0.3926793406448987 0.3585905939007256 0.8468858963264251 -0.4758287826506283 -0.7262057498268171 -0.496197721195585 0.4758287826506283 0.7262057498268171 0.496197721195585 0.07403728528170142 -0.4018813093119968 0.9126937567518423 -0.07403728528170142 0.4018813093119968 -0.9126937567518423 0.5074483663098665 0.7336641542103471 0.4519215245551642 -0.5074483663098665 -0.7336641542103471 -0.4519215245551642 0.2748061558194914 0.877426979723126 -0.3931964801186126 -0.2748061558194914 -0.877426979723126 0.3931964801186126 -0.4416162494800723 -0.8965715608945203 -0.03368270164815051 0.4416162494800723 0.8965715608945203 0.03368270164815051 0.08549772772187718 -0.4236445040367092 0.9017846044116558 -0.08549772772187718 0.4236445040367092 -0.9017846044116558 0.6983955618814588 0.5261174618390851 0.485225777852208 -0.6983955618814588 -0.5261174618390851 -0.485225777852208 0.6529258623062569 0.7571641840513471 0.01975390395564597 -0.6529258623062569 -0.7571641840513471 -0.01975390395564597 -0.4651454729636889 -0.2078396388980428 -0.8604896126532367 0.4651454729636889 0.2078396388980428 0.8604896126532367 -0.6654104129941675 -0.5535469302112676 -0.5008141155484873 0.6654104129941675 0.5535469302112676 0.5008141155484873 -0.00537325195436097 -0.3680234573290827 0.9298009803280397 0.00537325195436097 0.3680234573290827 -0.9298009803280397 0.0008797982458484917 -0.398149274166836 0.9173202175006656 -0.0008797982458484917 0.398149274166836 -0.9173202175006656 0.4894395591614004 0.7496389984441606 -0.4455224909468991 -0.4894395591614004 -0.7496389984441606 0.4455224909468991 -0.6864868232200563 -0.7266462734301518 -0.0268520921961055 0.6864868232200563 0.7266462734301518 0.0268520921961055 -0.07261225421506358 -0.3044534169131987 0.9497555356341361 0.07261225421506358 0.3044534169131987 -0.9497555356341361 0.8316088337424303 0.222704652903695 0.5087527741610846 -0.8316088337424303 -0.222704652903695 -0.5087527741610846 0.8847442103228584 0.4660768166585395 -0.0002885716964004705 -0.8847442103228584 -0.4660768166585395 0.0002885716964004705 -0.5015710315013272 -0.02021660815949402 -0.8648802166272623 0.5015710315013272 0.02021660815949402 0.8648802166272623 -0.8822534233508295 -0.4704253684624868 -0.01813476475380031 0.8822534233508295 0.4704253684624868 0.01813476475380031 -0.9073069238785885 -0.4200745834998159 -0.01820687176395342 0.9073069238785885 0.4200745834998159 0.01820687176395342 -0.07684133681273105 -0.3297787419806832 0.9409258155106971 0.07684133681273105 0.3297787419806832 -0.9409258155106971 0.6901815481734175 0.5152408968621404 -0.508110469053376 -0.6901815481734175 -0.5152408968621404 0.508110469053376 -0.4966996466665293 0.01610676029339463 -0.8677730309673124 0.4966996466665293 -0.01610676029339463 0.8677730309673124 -0.881134842542127 0.07682235708589806 -0.4665830201690023 0.881134842542127 -0.07682235708589806 0.4665830201690023 -0.1213144463156395 -0.2131759170429181 0.9694528526483588 0.1213144463156395 0.2131759170429181 -0.9694528526483588 0.8530908677975752 -0.1294152237489294 0.5054578826592723 -0.8530908677975752 0.1294152237489294 -0.5054578826592723 0.8141298479637934 0.12262180609209 -0.5675883044295085 -0.8141298479637934 -0.12262180609209 0.5675883044295085 -0.4880811785711273 0.1805381361022135 -0.8539219780151801 0.4880811785711273 -0.1805381361022135 0.8539219780151801 -0.9999912747003552 0.003552551677254218 -0.002197703287318499 0.9999912747003552 -0.003552551677254218 0.002197703287318499 -0.1346111642919426 -0.2158289805333895 0.9671078976049597 0.1346111642919426 0.2158289805333895 -0.9671078976049597 0.8525449411428244 -0.09184820878287534 0.514520193845835 -0.8525449411428244 0.09184820878287534 -0.514520193845835 0.8136449843716227 0.1551782125971196 -0.56026918685759 -0.8136449843716227 -0.1551782125971196 0.56026918685759 -0.4241940190863471 0.3566789118496541 -0.8323698625089201 0.4241940190863471 -0.3566789118496541 0.8323698625089201 -0.7885453448267734 0.4251894335191658 -0.4443086593525678 0.7885453448267734 -0.4251894335191658 0.4443086593525678 -0.1578722346533842 -0.1001823560468188 0.982364419684699 0.1578722346533842 0.1001823560468188 -0.982364419684699 0.7547381467760184 -0.4464206061731968 0.4807067423960857 -0.7547381467760184 0.4464206061731968 -0.4807067423960857 0.9002415259777669 -0.4324451958902896 -0.05056033481525889 -0.9002415259777669 0.4324451958902896 0.05056033481525889 0.7844143326772589 -0.2204183251089915 -0.5797498742101094 -0.7844143326772589 0.2204183251089915 0.5797498742101094 -0.9025710500460156 0.4302776851145242 0.01505368098900894 0.9025710500460156 -0.4302776851145242 -0.01505368098900894 -0.169447414312871 -0.07903013995124253 0.982365416106435 0.169447414312871 0.07903013995124253 -0.982365416106435 0.6778264394276815 -0.7334119439036688 -0.05155810850131369 -0.6778264394276815 0.7334119439036688 0.05155810850131369 -0.3277013090801252 0.4836682562942458 -0.8115891016274529 0.3277013090801252 -0.4836682562942458 0.8115891016274529 -0.600818604466476 0.6729818318019348 -0.4314075319132346 0.600818604466476 -0.6729818318019348 0.4314075319132346 -0.168109825006838 0.02892536758904001 0.9853438028657862 0.168109825006838 -0.02892536758904001 -0.9853438028657862 0.5960519533842276 -0.6811383094854105 0.4251736965267298 -0.5960519533842276 0.6811383094854105 -0.4251736965267298 0.6424578954778484 -0.5591256064253487 -0.5240480977712446 -0.6424578954778484 0.5591256064253487 0.5240480977712446 -0.686028380622848 0.7271052101901491 0.02613569004889806 0.686028380622848 -0.7271052101901491 -0.02613569004889806 -0.1672295516339414 0.06358642472089836 0.9838653584975562 0.1672295516339414 -0.06358642472089836 -0.9838653584975562 0.39920329049152 -0.8338682103869164 0.3811830801161882 -0.39920329049152 0.8338682103869164 -0.3811830801161882 0.4366538340830543 -0.8983614567022195 -0.04775062609469216 -0.4366538340830543 0.8983614567022195 0.04775062609469216 -0.2165166026734769 0.5604185162959754 -0.7994070598633424 0.2165166026734769 -0.5604185162959754 0.7994070598633424 -0.3958679694135108 0.8145627101543547 -0.4240001674745147 0.3958679694135108 -0.8145627101543547 0.4240001674745147 -0.1469998294979731 0.1606429776852407 0.9760045511410211 0.1469998294979731 -0.1606429776852407 -0.9760045511410211 -0.136768733660074 0.1896331863226294 0.972282658560846 0.136768733660074 -0.1896331863226294 -0.972282658560846 0.4363462461146563 -0.7642185180490224 -0.4749442179589132 -0.4363462461146563 0.7642185180490224 0.4749442179589132 -0.4488771851408228 0.8930136607671422 0.03218500183811045 0.4488771851408228 -0.8930136607671422 -0.03218500183811045 -0.09539235174078843 0.2729278092741205 0.9572934294949438 0.09539235174078843 -0.2729278092741205 -0.9572934294949438 0.1991290195076902 -0.9116206733236647 0.3595766699312042 -0.1991290195076902 0.9116206733236647 -0.3595766699312042 0.2176395385321581 -0.975181896965417 -0.04066078083903718 -0.2176395385321581 0.975181896965417 0.04066078083903718 -0.1020037401273291 0.5870539910837483 -0.803095790396562 0.1020037401273291 -0.5870539910837483 0.803095790396562 -0.1981029154277355 0.8828490192222377 -0.4258319435615001 0.1981029154277355 -0.8828490192222377 0.4258319435615001 -0.2257163976554845 0.9735640404422717 0.03500238544942357 0.2257163976554845 -0.9735640404422717 -0.03500238544942357 -0.08666637759563388 0.2887481063349514 0.9534744202559556 0.08666637759563388 -0.2887481063349514 -0.9534744202559556 0.2265757343370749 -0.8703830190978558 -0.4371462417495055 -0.2265757343370749 0.8703830190978558 0.4371462417495055 -0.1011016926685244 0.89401217142831 -0.4364867524651776 0.1011016926685244 -0.89401217142831 0.4364867524651776 -0.06443845907698306 0.3425606426245449 0.9372832502058504 0.06443845907698306 -0.3425606426245449 -0.9372832502058504 0.09417392595617523 -0.9293129126988353 0.3570837184207755 -0.09417392595617523 0.9293129126988353 -0.3570837184207755 0.1141220961146377 -0.9931867733030305 -0.02358347969057617 -0.1141220961146377 0.9931867733030305 0.02358347969057617 -0.05548773687691596 0.5705667890661852 -0.8193745482201541 0.05548773687691596 -0.5705667890661852 0.8193745482201541 -0.1183653374329226 0.9923372552916334 0.03544599631351985 0.1183653374329226 -0.9923372552916334 -0.03544599631351985 -0.0684555174915373 0.3516846842717872 0.9336121919585343 0.0684555174915373 -0.3516846842717872 -0.9336121919585343 0.1174881387169572 -0.9006135153905983 -0.4184397604872339 -0.1174881387169572 0.9006135153905983 0.4184397604872339</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1518\" source=\"#ID1700\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1698\">\r\n\t\t\t\t\t<float_array count=\"5340\" id=\"ID1701\">11.7511075700318 0.3583314504512882 11.764113826938 0.2966073494687605 11.64874163027524 0.2666148420055631 11.67922688523208 0.2294239948543417 11.80501203783262 0.2597329687951067 11.70185613652651 0.1685657368748619 12.4858343118004 -1.543659787895465 12.35620128229077 -1.642348030436472 12.37014213645811 -1.572879572693973 9.637226671642088 1.364680350481991 9.61090967342226 1.423722268179847 9.757669766177051 1.458600648579603 -11.25074513113561 3.231416896444896 -11.22220681876862 3.285138753740969 -11.11921110687334 3.22075585534248 12.28376747293778 -1.999560740149355 12.28677901128384 -2.062924884329317 12.18069024183013 -2.088268714019175 11.28139424357001 0.5316017122378138 11.28710312913186 0.4614164684313329 11.17025632694921 0.4372445316544859 12.48109906978448 -1.635202447978954 12.47651913007674 -1.703586392220001 12.35042744299495 -1.733039371291702 -12.58928054554183 0.06216301397643055 -12.56894162462897 0.1114081662110007 -12.44955023869925 0.03574905171129115 9.631860544165843 1.557870607934369 9.497812823158526 1.523720021818169 9.617284226333158 1.618405232764888 -11.18949272428132 3.449144239678994 -11.05810558974406 3.43741573475663 -11.07295892218207 3.376204414341373 -12.55834831527949 0.3756636750632473 -12.41946690482045 0.3466109327424751 -12.42491019409979 0.2885444991789321 12.24844684724029 -2.123312879461341 12.14391992483101 -2.210964781929535 12.13185524271816 -2.148416937708864 11.10362118619226 0.6174771547469791 11.21011850529769 0.6417374482883845 11.0998287403512 0.5467664045441286 -11.78599969953858 1.710751197689483 -11.8855620736632 1.764594262627711 -11.7365061258191 1.75858363054145 -9.551783259955178 4.621116664514966 -9.662840828898695 4.676559090480197 -9.492566268341244 4.660835091232268 11.38554323625563 -3.321557092137592 11.40545417650413 -3.254893710166193 11.53983003230635 -3.221550715986149 -12.59169677899354 -2.122796224044397 -12.43562082373348 -2.164560503438635 -12.44094884273218 -2.216169764530545 7.641202265041214 1.895696582249834 7.619078313030771 1.954798365316707 7.78231669517448 1.993322558346813 -12.27829459142965 -1.703748294304876 -12.28112793941384 -1.632093876578818 -12.13612110978789 -1.658772972090705 -8.529836727396535 5.731344266683108 -8.427594279923671 5.680615208045538 -8.568355625367685 5.676890862560271 -10.5558308832052 -1.514031454146504 -10.72224734746335 -1.553273941902001 -10.72426341194342 -1.481590562917722 9.901866227340285 -4.581370473984669 9.89166102092414 -4.644122839366019 9.780757662061093 -4.663490218918779 8.085695976323192 2.077879605760174 8.100738048913897 2.008102183714081 7.979575249341611 1.990108275138057 -11.53498190250259 -3.316681344740469 -11.66957947655568 -3.328412254481368 -11.65909370702121 -3.26729082813857 -11.86203026914572 1.946394878990668 -11.82506593710753 2.000265651709518 -11.713026213673 1.93963474658876 -9.54517036640582 5.006371453637729 -9.500495426647175 5.052390847586421 -9.37517508163147 4.98887710026371 11.49481847640153 -3.29179345705857 11.34789180389087 -3.326009518851614 11.50257438308278 -3.226382213565422 -8.71465421451237 -1.379804449027914 -8.899460891690383 -1.414986989341083 -8.900828348592878 -1.343305510481923 -12.50063398471393 -2.511359052459845 -12.47993075853214 -2.469142127872076 -12.34275826300758 -2.548703173253112 7.650634743547147 2.080423905513628 7.50097610545313 2.043081385727968 7.641332124451248 2.141381620377886 -12.27910664578102 -1.702197090834061 -12.13693355798749 -1.657220998159356 -12.13393898952275 -1.728875822664083 -10.55417121041747 -1.584826029616713 -10.72258337245052 -1.552396825609317 -10.55616698065188 -1.513154147695452 -8.603671478312631 5.840246622676532 -8.462928433540144 5.844376860225484 -8.48644593388109 5.783986722030788 -8.709550488865627 -1.463861396178413 -8.895653400495181 -1.427348187082769 -8.710846085865644 -1.392167718974344 9.764709467972942 -4.591052007709738 9.642523311769457 -4.672177889576204 9.643657442806868 -4.6097231772181 7.862503877508484 2.168602812129222 7.973630028976386 2.187163073485974 7.868184169538051 2.098889834440856 -11.61166209426751 -3.285533223111407 -11.720650116989 -3.240170193241426 -11.58586587098214 -3.229850551162238 -8.90736420001609 -1.693443132595279 -8.772693913946812 -1.636771872927451 -8.769584837417837 -1.708420563732345 -11.85026428899129 -1.767171044881302 -11.71900528080115 -1.716384959328101 -11.71689193397437 -1.788058345725621 -6.910016250360373 5.946662107887122 -7.044647341963542 6.00422187278154 -6.852260934187974 5.982559747848794 9.84019893164926 -4.025687024838435 9.856494955260382 -3.961254764056166 10.00653083457654 -3.924861096892743 -6.638067216646483 -1.345359288150344 -6.836321842966829 -1.306448341398115 -6.638687654145084 -1.273671399404968 -11.75081178992731 -4.397855854827554 -11.57616745796078 -4.447374111762949 -11.58530307794933 -4.492049290094289 5.37702291505806 2.278329959008511 5.360781901794482 2.338381304480409 5.53452326255626 2.378601581676305 -11.8477921893205 -1.771132958242384 -11.85126880573113 -1.699491605392131 -11.71653327095071 -1.720346729027851 -6.873148465588878 6.401151793126798 -6.83283778030713 6.443462808145918 -6.681166082739154 6.377374685653092 -5.419357012291193 7.116504678474972 -5.305319877557924 7.079502459234016 -5.463162153526112 7.063573211728421 -4.655459356693084 6.995325433674931 -4.626086921802587 7.037947735836165 -4.455317341538341 6.969248692357329 5.655498462954247 -5.744194604771449 5.636338991945853 -5.804809935915466 5.511105391974127 -5.81833438087417 4.283585811329357 2.540206830049731 4.147031272120611 2.527920480424545 4.263197487979614 2.608196705412749 -7.074561868724527 -7.838162061056226 -7.206749484574333 -7.866852398479714 -7.22543730235367 -7.809439463264817 -4.860412953377663 -1.572443924051376 -4.862792608842701 -1.500777945388903 -4.707971743798747 -1.510382878151699 -8.887450137124446 -1.722623963248056 -8.889384558544389 -1.650947450254618 -8.75277785457949 -1.665955639667139 9.92682210424201 -3.958075097241356 9.763342186171791 -3.995528131591063 9.930154544309971 -3.895194613015674 -2.330319142117059 7.376517372491382 -2.313740820499123 7.421629125285861 -2.130277411320018 7.350861169815547 -6.634153617248702 -1.290603569206118 -6.831788439712278 -1.323378146720922 -6.832354045656597 -1.251691206748372 -11.55804340649913 -4.67002850371146 -11.530709130997 -4.634411703614915 -11.38147995351786 -4.715138926864015 5.45307607714408 2.402224524503437 5.293682289993164 2.36314331618803 5.450795908844998 2.463789693471995 -4.662590396667173 6.590241969402697 -4.814359942244378 6.650965200477348 -4.613858225403444 6.626658547327783 -5.448690196724442 7.228036718382651 -5.477468473182723 7.171809039680968 -5.606277686037295 7.210616162132875 -2.333424534969861 6.960100846927293 -2.496289861475915 7.02251322564471 -2.295906294290259 6.998564669389739 5.500119052534039 -5.649457324518996 5.355057718673635 -5.722785370369828 5.363628386658954 -5.661937685694299 4.044262872012264 2.620843011852068 4.034715684694127 2.688257489338354 4.159997221182063 2.701504338703599 -7.37973307514139 -7.626900832922628 -7.380552123611244 -7.681554051268964 -7.512942145240753 -7.652501078363416 -4.860067011239304 -1.5729691477404 -4.707625737843752 -1.510908198846842 -4.705317447933381 -1.582574182751803 -2.59798018382316 7.862746505542849 -2.623622721562295 7.811097138050414 -2.775833724389388 7.83534876715802 7.892172907163152 -4.448153975156407 7.902265876591466 -4.385721714301504 8.062059351078105 -4.347663972675512 0.2319925919531207 7.206532343959895 0.06816130944851562 7.270195072340188 0.2577986262042703 7.248876571234666 -4.43534120218764 -1.285571043633246 -4.635172112616091 -1.246046483930129 -4.435225602062978 -1.213882780525905 -10.54612546316951 -5.990830709765972 -10.35883664835906 -6.046660837012703 -10.37861698032135 -6.085245858175693 3.068068152694514 2.562005730214306 3.059319668505497 2.623211315275878 3.234485811533379 2.664099184091551 -2.472932049716599 7.657072584354313 -2.339166786449916 7.632342579577592 -2.517676201589121 7.607725635676184 7.996780603426274 -4.366274002562983 7.822659858598535 -4.405619625459651 7.992866929057401 -4.305465943855684 1.565689220693328 -5.742197169311714 1.42330873092626 -5.751318637004019 1.585935596180436 -5.683085201673474 0.8043760332373917 2.468542627601334 0.6492970871679638 2.460670291018974 0.7842362549579163 2.534497982085871 -2.002206848136053 -9.254831269223828 -2.148472010363316 -9.29166463676035 -2.177339718573044 -9.241948655833635 -0.9758413610236072 -1.436931287834512 -1.150083786011975 -1.503314959292955 -1.151575058569062 -1.431635573601411 0.2738593675876695 7.772017653651676 0.4278347807192724 7.756084727066048 0.2346794831337724 7.72592419907197 5.907692453773043 -4.674037290780482 5.732105461036365 -4.7138328932742 5.895277582598436 -4.61487214835779 0.2169948912253811 7.583141731566467 0.2217385568439489 7.632372909850894 0.4063657043943875 7.560404402649126 -4.43803618764851 -1.203049876265611 -4.637982349412921 -1.235214921452726 -4.637884718486797 -1.163526013779914 -10.21674864212124 -6.233487484420487 -10.17865369403322 -6.203606866566421 -10.02688022158651 -6.283636451017741 3.11920870580907 2.708073989677151 2.958546819406385 2.668514531492299 3.124488026943278 2.771086794235044 5.829999443512676 -4.78088651738005 5.831702891637843 -4.72001531707514 5.992787959884518 -4.681535576454031 1.308602043108998 -5.629715596612606 1.31659896308892 -5.569811842992579 1.471583570219683 -5.562007864425807 0.5648566816230188 2.546352756926723 0.5571291965500386 2.61136778732703 0.6995080653232744 2.620504899957761 -2.370329924725453 -9.101516649727747 -2.363738140221217 -9.150816033798021 -2.517851275225941 -9.135107000968814 -0.9726322791411207 -1.51136897875968 -1.148399643763717 -1.506060530120493 -0.974156837499241 -1.43967747798365 0.09957568526473282 8.060394533306367 0.08245892179569114 8.013088107374479 -0.09257567520009835 8.026497024254699 3.502873504952592 -5.140317135331382 3.495977393425906 -5.080597239283649 3.649387245675078 -5.043008776893196 3.009193443669416 7.235149636369333 3.180226204520791 7.219042807089095 3.163618156076048 7.171430411620039 -2.026516353178367 -1.225163681072475 -2.216742678481948 -1.186567282184263 -2.025715681231137 -1.15347749930801 -8.885526573798463 -7.365420354994246 -9.043114890063302 -7.272760969419028 -8.853007748615546 -7.331708013177096 0.4057049713076188 2.87232590006109 0.4037260882408361 2.935456226480028 0.5705267224989513 2.975387309320226 -1.717992636299257 -5.327359896265246 -1.873948693069529 -5.33375228873334 -1.702251379332159 -5.268413365094089 -2.14760700104281 2.214573506194116 -2.317503393053847 2.20952979502062 -2.163292701861009 2.278695629013866 1.79960164067864 -9.082815688629138 1.631709543548545 -9.123426758343165 1.607244250217268 -9.077744055211763 2.154039047972187 -1.41612137665319 1.962340231720186 -1.485340371765077 1.961568395405093 -1.413641410927702 2.823096509336607 7.616372447388669 2.992569485321149 7.605674158391179 2.793965568158571 7.572851756385049 0.4150848726677803 3.036069234949429 0.2621382507692666 2.997330172514774 0.4263288971082052 3.101013111112003 3.56247695294758 -5.02893947682269 3.395230171748484 -5.067768839326921 3.542138793106454 -4.970829615629748 3.136739787378199 7.517745302135942 3.134298610467179 7.573288329370655 3.307592227919256 7.500494766055173 -1.983401902069153 -1.305061582832618 -2.174432891914137 -1.338137098609991 -2.174040019480891 -1.266804611055238 -8.592566560726386 -7.458813957527729 -8.54280462143106 -7.43327987065158 -8.399439946335676 -7.511336804765615 -1.970736828585861 -5.204901381841417 -1.968684285651651 -5.144935859453601 -1.798783248688915 -5.139980847887529 -2.383501143674551 2.286889515974018 -2.385444755339911 2.349843312064751 -2.229495494405385 2.356337495586558 1.469176764922531 -8.96021891054359 1.469761844121595 -9.006357142621646 1.300103194212152 -8.997674044870172 2.154739198336298 -1.487743235738178 1.962299481474927 -1.485269955171312 2.153998287116803 -1.416050941875147 2.626583967550852 7.96515046597017 2.621561240056742 7.921349035419765 2.429245197731841 7.927903919207108 -2.821810924508073 3.103279072080304 -2.819929521407584 3.168805828902164 -2.669086534438531 3.206378696803298 0.6994712725026153 -5.584734164094565 0.6856613655126798 -5.525449147132722 0.8242780405826661 -5.489901612203209 6.359847567979582 6.589840271805475 6.511351161794384 6.58228800079966 6.497037649384467 6.52786439367146 1.136118008815114 -1.3541367237635 0.9626827840905849 -1.319201502848362 1.136984378566509 -1.282806822627216 -7.142186791714643 -8.418934448869473 -7.27715216566976 -8.328716936560284 -7.096960415400679 -8.388625975593255 -4.445607926770279 -4.903486594153658 -4.607923164654693 -4.908876254736006 -4.437571541655934 -4.843833397309046 -4.761145117444076 1.930669373578067 -4.937848609126943 1.926672623221713 -4.769968480963281 1.993258031385614 4.672247525821237 -8.396131131384985 4.48536014044886 -8.438484996226077 4.472110237845285 -8.39353720406524 4.832225930426402 -1.429496464971109 4.632054761285418 -1.499775441303044 4.632012267672277 -1.428080786019686 5.292085139575017 7.200117601997333 5.468511597729046 7.190868992203569 5.275278896494793 7.158172579607357 -6.715005820992449 -8.465240445498786 -6.656489422356748 -8.442174378515569 -6.531440210530288 -8.518434485722098 -2.849982679187054 3.255365277084434 -2.988144808445621 3.218739012992571 -2.836218607018078 3.322565869735572 0.734969993620832 -5.47633085997393 0.5837553854295591 -5.512908790872454 0.7089989322123519 -5.418433266106486 6.412198333676442 6.792860814700982 6.407336258415766 6.853478030631758 6.563662556121248 6.78483469898197 1.123935753957899 -1.244013941565833 0.9496351537245562 -1.280411568368693 0.9525784213012262 -1.208792958390632 -4.674657192016141 -4.813979298478399 -4.680878664536808 -4.753124991120459 -4.504130581882922 -4.749220826745997 -4.990010106693942 1.992706002798677 -4.984602815867615 2.054019724902083 -4.822295137886973 2.059548482311019 4.404105797540058 -8.298331951209891 4.392792560769895 -8.34403881793688 4.216194945195725 -8.337784011839139 4.830596591689094 -1.498300723312047 4.630440144446198 -1.496892769522193 4.830610844677027 -1.426612966687759 5.092095789300098 7.585500342429687 5.100437957282588 7.543868787570436 4.900284440353532 7.547980499809358 -4.991638143498378 -9.321723271056177 -5.101360381809151 -9.232957379059158 -4.93769114344884 -9.292567457289668 -6.63641337613953 2.897417884133284 -6.63574941786656 2.965483196330755 -6.503943037327894 2.999314420254909 -2.881302304196173 -5.981597491235704 -2.898033400248121 -5.921628277178476 -2.777076513557294 -5.889035517929381 9.675283058297397 4.884296525830756 9.811434693990076 4.886706320707685 9.793775942725468 4.827578484436574 4.84072609155517 -1.328961652662674 4.837280128415219 -1.40056638481864 4.685938922503548 -1.369739957893678 -6.833094823957079 -4.547716051575298 -6.992881285607754 -4.553794311763161 -6.833728383212693 -4.486667286146808 -7.143331466529048 1.62000307921671 -7.318627382169347 1.615337223185641 -7.144672864113284 1.681455119599937 6.823118365998865 -7.525883711952497 7.020138991313406 -7.5297739747776 6.822650218416566 -7.572447512508213 7.23925462210762 -1.471029974841085 7.041513054906684 -1.540496814225599 7.042216254670835 -1.468811191097894 8.039520787999589 6.281863912698821 7.860993247654495 6.252645319094622 7.866229289366742 6.294589168663884 4.633838008214074 -1.169493925283726 4.786253878579575 -1.200372830625324 4.631471169748868 -1.24116161152163 -4.412441470159707 -9.324613633964388 -4.345425296990303 -9.302104496132902 -4.244962845538747 -9.377270140223084 -6.811545597743727 2.972434633492441 -6.68009424977297 3.075144575806786 -6.690867514628805 3.005660808374025 -2.906764265025755 -5.855044453140191 -3.038861478094021 -5.888319479971751 -2.933955318136298 -5.796234381253612 9.661217020761617 5.06470008623043 9.662991148507999 5.130116127504268 9.79736412588867 5.067263396495124 -7.062642844247717 -4.458264204339328 -7.077225594179336 -4.396084900478645 -6.903280703871185 -4.391445087277297 -7.400489864010549 1.71497372868682 -7.386610048936788 1.775278586424206 -7.226837658517611 1.781581596382792 6.797980664975434 -7.467107702454814 6.774738985824056 -7.513942737987394 6.599563245383362 -7.507026474287089 7.230952417738142 -1.529042443945376 7.033890040178047 -1.526817186432799 7.231629130590562 -1.457345984156113 7.673258851264183 6.724450475222787 7.693037061773406 6.682451958648745 7.496217711227494 6.690087758993939 9.084353693772274 -1.319111524507893 9.08124316964604 -1.390761621698644 8.94644289848916 -1.36539143410556 -2.122078387325774 -10.00208375805769 -2.201213981231016 -9.912604145826347 -2.060998365996196 -9.970823085498482 -10.36145395883319 1.727643073678281 -10.36826270687783 1.797436554639876 -10.25092063156426 1.826111407225745 -7.302788296765607 -5.71292485615856 -7.315508704058836 -5.651150793420963 -7.208225962874972 -5.622316462952615 12.00762164630643 2.130906965942405 12.14333425160431 2.144921389086459 12.11480815354829 2.083458970657563 -9.01147670431353 -4.147318988706797 -9.16031446642654 -4.155694193450678 -9.019956751590648 -4.084443195800464 -9.499784712387529 1.190562468879321 -9.66063584151215 1.182940296825713 -9.494184982983033 1.251689310027092 8.888488434605261 -6.468869195710479 9.071981134836666 -6.477181350394378 8.876257251821579 -6.518217194559831 9.449581017394744 -1.533583026767532 9.263489409902652 -1.600493421685321 9.264909378501219 -1.528803687710612 10.74204251640409 4.236081915180562 10.58298996135551 4.215641454556057 10.58263680816121 4.26042846500789 11.97817099479863 2.388032088762603 12.1001885963614 2.336309752118984 11.96463109449242 2.321395266244683 8.94955662573258 -1.293678761542919 9.084318075882242 -1.319045317964265 8.946407283605279 -1.365325233105614 -1.271938694101185 -9.928031437397038 -1.20341461049748 -9.902784568929347 -1.126905379762219 -9.978419947729694 -10.497825757819 1.730956984221029 -10.38846337788417 1.830231133288248 -10.39039268238785 1.75944282011681 -7.350080799852286 -5.567341679963051 -7.467394613473013 -5.596398825712132 -7.371884119760878 -5.50640797543516 -9.227624357317261 -4.070860691418731 -9.249125598694668 -4.007064973847591 -9.086996006926507 -3.999940703037678 -9.677836213188012 1.1985652706594 -9.660276671109934 1.25868548089124 -9.511474984713074 1.267448410283861 8.904589273219317 -6.471995615186978 8.868608555860567 -6.521578396033776 8.708070364481475 -6.510608542178119 9.466110887185232 -1.638715877420245 9.282416480764914 -1.633893235501636 9.468514529913994 -1.566993928649501 10.48592711437888 4.715293816681878 10.51070203369348 4.668373332705535 10.32799520245106 4.690042235478756 12.80486521953163 -0.8782814391745923 12.76547364041472 -0.9382285777631791 12.65545705626428 -0.9023891281087371 12.12899766129329 -1.401324537281521 12.1256474180299 -1.47296536932822 11.99355444745457 -1.453521176212834 2.450557641251624 -9.960457440974377 2.385112537396675 -9.868195954726444 2.507453081917199 -9.921215071861347 -12.50017367973961 -0.3002120353238359 -12.51736773444045 -0.2307114140535312 -12.4016543712185 -0.208325441626296 -11.31702622516923 -3.882319793084444 -11.31783722991399 -3.819021305481295 -11.21230911780348 -3.795136180876889 -10.97232743341756 -3.524036664092204 -11.10471425181361 -3.536197113836563 -10.98596087060906 -3.458913991657148 -11.51252168042142 0.2167492199166049 -11.65660456383353 0.2048937383174073 -11.50600445487997 0.2782225287412058 10.69986673017178 -5.100742504571175 10.86240712432025 -5.116540712177234 10.67670547056583 -5.154850177388828 11.4721612945527 -1.677785269115702 11.30663328587778 -1.740522549709934 11.30968541096649 -1.668815866040309 12.54453637999385 -0.4881931679631666 12.40354295669747 -0.4884526708754607 12.41427349473641 -0.4383515736005559 -11.41525151366383 -3.757926099376388 -11.30947888679122 -3.671534607656464 -11.30001538574395 -3.73432778173633 12.67982608702496 -0.6526133562864981 12.80520729639552 -0.6906594461761093 12.65623358192334 -0.7163771927821439 11.99779492031956 -1.383174232516103 12.12980745857956 -1.402614824016195 11.99436429876233 -1.45481154969608 3.60717405511408 -9.676036288434755 3.479477180020098 -9.63151417155848 3.540819205812205 -9.598174555880148 -12.43302030043936 -0.3287568177167912 -12.53900283543621 -0.3513625420158977 -12.44142228460851 -0.2588581133065578 -11.15471087317843 -3.472626616724449 -11.17976007256005 -3.406911101337614 -11.03561235820559 -3.395672867062525 -11.70086636038362 0.2141423120066185 -11.68299792789481 0.2751456870041583 -11.55072512587131 0.2880511314757954 10.73356229972205 -5.188328353794971 10.69032941602382 -5.241280019104381 10.54708863732899 -5.224242239066612 11.45383296354241 -1.722063991014747 11.29045016656386 -1.713137945542501 11.45597201205626 -1.650390602830048 12.54463663922744 -0.4076613325349839 12.55082262326936 -0.4628684289043794 12.4036434459555 -0.4079891775768366 -12.65569185398602 -1.169249139555992 -12.64353284420654 -1.106743826280584 -12.52680569774861 -1.088851847172841 12.05871853022702 -3.350578699342806 12.01416131808036 -3.406984902372559 11.88893433846377 -3.382057961237903 12.61119451716407 -1.347722082746238 12.60825385037884 -1.419372881934045 12.46349946185979 -1.405766526284072 9.372753069548914 -6.826669456542838 9.341903634887348 -6.880066072183239 9.246424773456054 -6.793235031655539 -12.41544912202189 -2.11068914694666 -12.43944944405991 -2.043064808079661 -12.31191969123731 -2.027002528104643 -12.36297081163629 -2.367266624861024 -12.47829684347289 -2.38454092736979 -12.37670701094712 -2.299516606085756 -12.66321426546362 -1.702928137463743 -12.53627522414027 -1.622539058675648 -12.53767311767731 -1.685131291994166 12.10574180111742 -3.181281925643665 12.24594327988267 -3.207657439083207 12.07890548625666 -3.240568229280981 12.52595228513887 -1.751084798291482 12.66898298612503 -1.765278581672329 12.52306856073473 -1.822742037189923 9.33534389651027 -6.958645758985928 9.20737179672318 -6.929528861830943 9.248900211368236 -6.884760127191098 -12.2665712719432 -2.162590626953528 -12.38358300437334 -2.179292666433531 -12.28066968680266 -2.095137082537539 -12.65285949788222 -1.109989690573223 -12.52323082400572 -1.030334582109835 -12.52553936775479 -1.092836865914159 11.98844996477916 -3.197436251760613 12.13069697648554 -3.222545336953552 11.96156052567574 -3.256113187209982 12.46693195861506 -1.335262028415724 12.61184729655287 -1.348868363108499 12.46415154922206 -1.406911716927027 9.960651652020729 -6.296388625829933 9.831631619741811 -6.270073037143662 9.869920573776625 -6.224081119200225 -12.50686129074443 -2.314236210271567 -12.53045450004144 -2.2463920063556 -12.40457651968336 -2.229729067781244 -12.65764569784601 -1.770379013887815 -12.64653912048994 -1.707703395993552 -12.53152156450983 -1.689200050655647 12.18052147902099 -3.359975420344078 12.13607137932328 -3.416758660398563 12.01284562633077 -3.390812983687816 12.66876876421716 -1.764878543277706 12.6658756697165 -1.836537275609132 12.52285468214147 -1.822342538278277 8.609688992076844 -7.529370084866654 8.519939622033421 -7.44061825578067 8.644724673637041 -7.477310262533923 -10.97872514983905 -3.176271397022086 -11.00362475730813 -3.110778589707141 -10.85739946068847 -3.100059011764498 -11.5176875760932 0.7092605091613835 -11.49953625105054 0.7701369617804559 -11.36547436901504 0.7825306793890203 10.55314563047167 -5.10071401653749 10.51032641872906 -5.153209647762414 10.36501128457285 -5.136964157061804 11.23519680359556 -1.302906009348238 11.06805100198852 -1.294541538735637 11.23721252493439 -1.23124048414316 12.50186716805469 0.4704908240560266 12.51194722056576 0.4160883379895734 12.35870483601279 0.466270169710504 -12.32799508885498 -0.4553170820301346 -12.43350405564735 -0.4785674476013411 -12.33553343845589 -0.3852304043669551 -11.09877758993566 -4.36067689981097 -10.99487070715988 -4.273731861119688 -10.98399332400003 -4.336432349041786 12.67978119066266 -0.5531317061606933 12.80400957092096 -0.5926070613969773 12.65686981033747 -0.6173361093411353 11.78944218985733 -1.78759904768878 11.92102975599541 -1.807658706785934 11.78611302416578 -1.859246062830769 3.009827715546834 -9.900687031758661 2.880976245831566 -9.855226303338512 2.943696062422529 -9.823047723827436 12.50888391781161 0.3216735036803493 12.36568269077752 0.3183687848415268 12.37404480769698 0.3674486865928813 -10.78304494723833 -3.243630274933168 -10.91720755594061 -3.255330048166043 -10.79627666252484 -3.178730341222819 -11.32346144242302 0.7076562092449756 -11.46952920599622 0.6963336073255722 -11.31686723566741 0.769023699798105 10.50373782542462 -5.04724955652355 10.67018938326244 -5.061853920087253 10.48272699052472 -5.100197873493039 11.26614980478779 -1.280471690910523 11.09697870003657 -1.343756897076463 11.1005080690211 -1.272025839606709 -12.384239433834 -0.432824104206995 -12.40041367429001 -0.3631932039182677 -12.28528561642618 -0.340131141351152 -10.99211139691699 -4.481750717083936 -10.99430616697351 -4.418520052553081 -10.88924686466424 -4.394042004634568 12.81067519578389 -0.7970280096254434 12.77222748151188 -0.8573021509194796 12.66312963038722 -0.8202125189009921 11.9208160002482 -1.807314416007229 11.91743341116261 -1.878950862335088 11.78589926007625 -1.858901758550291 1.848419662804386 -10.12978471306633 1.782984531484846 -10.03776233389912 1.906430436587999 -10.09171290314908 10.20666488269885 5.087294122505678 10.2305678746692 5.041484398560948 10.04685616923963 5.060956776633804 -9.006288800138961 -3.748441605221089 -9.027164882110668 -3.684796899778404 -8.863475201699187 -3.678004356093722 -9.449186803979133 1.625186316632568 -9.432011733925535 1.685272337035473 -9.281715206985069 1.693696897317436 8.685496093523531 -6.331191571803228 8.652209435617502 -6.380089789830738 8.488794948356155 -6.369875881142802 9.254008116316827 -1.244250730827939 9.069836441402108 -1.239744009708454 9.256997305459809 -1.172504485791101 -10.16122891842905 1.564891742858978 -10.04979012739954 1.664673375439497 -10.05283455540317 1.593930036935231 -6.862262658907012 -6.010351054192642 -6.980566207957457 -6.039904793698391 -6.884938134890659 -5.949664134598572 11.75802067617219 2.584466801050537 11.88108250228669 2.53143940402498 11.74646722921003 2.517644949600686 8.522399445709763 -1.689487240978495 8.658334509583158 -1.715454894054223 8.519266185796891 -1.761130704125859 -1.664165435586172 -10.02305670722691 -1.59551122158466 -9.998254150616866 -1.51683436536705 -10.07385749159181 9.242694828956012 -1.147379502241755 9.055538230655557 -1.214626373655277 9.057410761192328 -1.142893633184489 10.46501222902741 4.656623637030224 10.30408920376134 4.634886945094705 10.30364790952062 4.679293071907598 -8.795398834234536 -3.818856806584465 -8.945727459214881 -3.826919169142748 -8.803148251901336 -3.756188675287935 -9.227771109217517 1.578836572124709 -9.391452607341753 1.571746072678496 -9.223697770384634 1.639826471334134 8.693598956660441 -6.353753564243794 8.877594274087761 -6.361531191755919 8.681789113876736 -6.402933013520544 -10.01996557750031 1.550999274153101 -10.02587649754419 1.620706009993815 -9.907379428424823 1.649980627921826 -6.821919025668692 -6.14610654843118 -6.835464545181348 -6.084559739604354 -6.727168781035482 -6.055294668541154 11.80041999329114 2.271527478084729 11.93519378561261 2.28432826873254 11.90848383001835 2.2234872251927 8.611138849341353 -1.625472086113976 8.608466736303766 -1.697078852308228 8.472076281668169 -1.671158740253725 -2.468633823712594 -10.06620892042703 -2.550532120980076 -9.976997130530403 -2.407826778044897 -10.0354007225572 6.995528453012118 -1.140876074560704 6.798107797378934 -1.138785811654543 6.996732712130455 -1.06913446543155 7.382121241746031 6.981366301073618 7.401145999132933 6.93955674245358 7.203274077684113 6.946462103937839 -6.814484289843757 -4.115830522645906 -6.828269915909444 -4.053807534298573 -6.653588964125098 -4.049324897465911 -7.148491861092352 2.081354636374249 -7.136604853594141 2.141708529551244 -6.976160686034473 2.14784048489019 6.563786217306237 -7.311678873906014 6.54097211060618 -7.358399657742611 6.36642046685613 -7.351521303566818 -6.54453223029536 2.667205959665146 -6.412818768082149 2.770179291646056 -6.423520641465728 2.700826753839058 -2.482274595752971 -6.191574042000407 -2.616328001531191 -6.225231121947041 -2.509616234827305 -6.132931656751304 9.345558165255701 5.063449079855373 9.346634810264414 5.127810654644573 9.482585968803866 5.064737479412169 4.317137415221328 -1.484869527486346 4.470612995110384 -1.516221492013397 4.315564814228122 -1.556496458053652 -4.676235300981285 -9.403074500992307 -4.609747957676477 -9.380676349437215 -4.506572053698067 -9.455774414978977 6.596893943548481 -7.392897065063066 6.794277423457221 -7.396564769961881 6.597862369519566 -7.439215602822574 6.985984887813427 -1.0498681657361 6.787363344783888 -1.119525461935276 6.787935461027244 -1.047820539550652 7.755333398450116 6.562274915611136 7.574984539328181 6.532534429843814 7.581235023639417 6.574351236803325 -6.592371493893364 -4.19651823268738 -6.752827919446442 -4.202448375300211 -6.592113131376907 -4.135673155488729 -6.916136912060805 2.017210917283385 -7.090808537580687 2.012586859501398 -6.918270238023179 2.078739436371168 -6.149425158498467 2.478790466936847 -6.149253515248045 2.545970180994254 -6.015504705438904 2.579986852946841 -2.637472509766389 -6.212799151777316 -2.652095706301727 -6.153252163151674 -2.530672372543877 -6.12056296136997 9.351491749881207 4.906144350204793 9.488520477649306 4.90737041187993 9.471780340063642 4.848704335568009 4.507297532295667 -1.604395875697794 4.504944661909446 -1.676066060094372 4.352244615765225 -1.644659557820761 -5.270124677222283 -9.37029322018936 -5.381175090109571 -9.281254103902617 -5.215448961530498 -9.341207795089582 4.122873715004327 -8.146010565467357 4.112877663302318 -8.191663076201058 3.936544639553558 -8.18532608408208 4.561813399212211 -1.080709618089091 4.361900160071912 -1.079267361410594 4.561679228117796 -1.00900336095539 4.833668307301942 7.785733192443573 4.840620800523403 7.743985024605916 4.640833118274078 7.748079011563347 -4.41598624761245 -4.461376315547414 -4.421266357998611 -4.40067284271783 -4.244816876807863 -4.396754015369652 -4.720612583349852 2.389534302170822 -4.715966408932523 2.45097708950702 -4.553951170628647 2.456517917479299 -2.307617779750301 2.768522566204381 -2.449382623557622 2.731811741999078 -2.29496724698255 2.834961220887902 1.034081215329108 -5.73308776835111 0.8809392675790967 -5.769827445210334 1.010450103364412 -5.675359133583689 6.051864446645339 6.700095221426143 6.046697713305678 6.760083624629706 6.204155440353516 6.690419458153252 0.7488717005912665 -1.555686139636162 0.5724847766132585 -1.591709857400316 0.5739976009859282 -1.520025654516796 -6.926171551203142 -8.546557651729312 -6.867067328007344 -8.52344614993936 -6.739700382327774 -8.599876656362721 -4.494967276111895 2.332740730700843 -4.671410304881282 2.32872303384572 -4.504594488378645 2.395468373229717 4.395942794974027 -8.262772761993997 4.210647281638136 -8.305003158130973 4.19605015491683 -8.260093829183644 4.570996180733671 -1.025574562700629 4.371214418330106 -1.095833822139671 4.371148961019417 -1.024147534574344 5.035509217316668 7.422872573621149 5.211643039556949 7.413694765287754 5.017392164864599 7.380850961997692 -4.171122432750728 -4.57572133533232 -4.333144827386039 -4.581131115681554 -4.162191242596482 -4.516156289113875 -2.458669363867656 2.7387128058276 -2.457078264233756 2.8040125505039 -2.304297259137402 2.841902358948021 1.09231448622795 -5.902277782405346 1.078922433964342 -5.843001872384594 1.221041602584383 -5.807148883455373 5.987096467794622 6.478110335887901 6.139444998970969 6.469012359531159 6.126295812886302 6.415883228653295 0.7453169334198506 -1.621146816108716 0.5704435485795745 -1.58549054141068 0.7468302339666205 -1.549466100695817 -7.334485071759142 -8.477131431240766 -7.473649706707226 -8.386514171421744 -7.290506476301554 -8.446548564280741 -2.098847792893515 2.685493026713632 -2.101562623139219 2.748640097582635 -1.946652911427402 2.755352593217332 1.118042483791234 -8.799552045066756 1.11965665155499 -8.845888816318643 0.9512384933315982 -8.83670113599182 1.850926235173381 -1.086204573293112 1.65985189401549 -1.083517053319359 1.850166664877299 -1.014520757574574 2.363827407638545 8.144102598588487 2.357464296021962 8.100013130982363 2.166512633836213 8.107100324117647 -1.654018086113767 -4.883663261199155 -1.651188312030996 -4.823726610454544 -1.482529572603976 -4.818557729567542 0.7130155373425823 2.651006291596271 0.5588685652545239 2.612098167966966 0.7236986818861274 2.71577507161638 3.830562306201437 -5.368670940462613 3.662019833756067 -5.407673145590995 3.810951928235616 -5.310476143973094 2.80437199120271 7.313172771687545 2.801607994156937 7.367255815762408 2.977416671848828 7.295280933654035 -2.224616454200606 -1.562786838772382 -2.417419691672722 -1.595986983696869 -2.416688818738356 -1.524298689023984 -8.774736349927576 -7.528586471202103 -8.726139507055493 -7.502687951927533 -8.58134310482477 -7.580950619557902 -1.408873593820574 -4.997598241305949 -1.563790167595054 -5.004212007633296 -1.392542887173823 -4.938714711342757 -1.859160126505554 2.610188372488169 -2.027849870667152 2.604919982756548 -1.875433482005458 2.674480053033163 1.453679384195578 -8.941070146126073 1.288067980337448 -8.981386222634415 1.262706674973999 -8.935479853824777 1.846865663741822 -1.008850917499873 1.656551738177079 -1.077848656130837 1.655732390862155 -1.006151611841464 2.558181174890236 7.821672832349775 2.726379570216166 7.810596657096884 2.527826511619968 7.777949872365016 0.7132923215439879 2.473263725787787 0.7106770075571484 2.536171621576784 0.8787997701654743 2.576270691666576 3.759510439559334 -5.472440823096785 3.753463703825632 -5.412633011138889 3.908083878822776 -5.374904732296241 2.682091223494191 7.030559168182665 2.855314143943235 7.013768587108697 2.837913257548257 6.966726883859018 -2.223656849002984 -1.640635978902495 -2.415713396574841 -1.602145277088453 -2.222909955188781 -1.56894586500164 -9.050516483925627 -7.410757528668856 -9.209787098441 -7.317949596276657 -9.019348877702974 -7.376634490350832 1.697502317924618 -5.294682633479368 1.705796753595047 -5.23476822870661 1.859022430031686 -5.226539656524509 0.9127695908682582 2.929142619981067 0.9046753539880192 2.994386464476215 1.045306974506275 3.003866316954733 -2.852304508049135 -8.871373931110664 -2.845707726618828 -8.921158489681597 -2.997818615308108 -8.904422345486658 -1.334627950085952 -1.107925416321959 -1.508297041939358 -1.102230561117066 -1.336211244628552 -1.036236293883046 -0.1794628195224153 8.218083610584095 -0.1977017200032567 8.170375742098575 -0.3705828417329244 8.184733908601919 3.375767217196071 2.308153242887666 3.214846562542849 2.26857293635952 3.380259062582235 2.370995505285141 6.136315951452007 -5.017286823936844 5.960464097215232 -5.057110950476266 6.124780395559567 -4.957980398091789 -0.06704880469158514 7.350716944663623 -0.06117980584706029 7.399491795664938 0.1238503664716351 7.327540257551025 -4.67783035036379 -1.621194972144799 -4.878042204659717 -1.653334153169956 -4.878004608082469 -1.581641637668117 -10.37115670773018 -6.274220909050738 -10.33425308430402 -6.243844122877992 -10.18221957071258 -6.323940738275458 -0.004232924985846931 7.95240649886845 0.147873622055682 7.935698045174173 -0.04423009869420236 7.90605158290125 1.962749913697262 -5.415578131163847 1.822118865456829 -5.425063235931637 1.983243981756268 -5.356344002684999 1.156927904468648 2.848123352417505 1.003693724209805 2.839886841481066 1.13654545892024 2.914264281424826 -2.476916208744934 -9.048959457634956 -2.621151646294559 -9.085311566589974 -2.649805299482749 -9.034827409385668 -1.342398382200816 -1.02623461890846 -1.514482776209679 -1.092231150589784 -1.516090294364559 -1.020554580890207 3.336023835185211 2.147935042298134 3.326520467642515 2.208948332319827 3.501964781780644 2.249827246915131 6.052622359824317 -5.11857877159223 6.05522629012431 -5.057565183017478 6.216573657015632 -5.019074926685732 -0.05796615110722797 6.945523440983375 -0.222165372957612 7.009069692564981 -0.03098343685176613 6.987383305072504 -4.679601311064838 -1.686130291904414 -4.879787515265439 -1.646582948976887 -4.679575881593458 -1.614442917434452 -10.69460775802846 -6.000304079270098 -10.50825931221148 -6.055741141412557 -10.52692934012396 -6.094971580192127 -2.898582639239244 7.978473755161456 -2.924810950690469 7.926386604318082 -3.074461073923867 7.951937389010737 5.961235690597919 -5.259702621472934 5.818415232090239 -5.33379957274834 5.826665572644673 -5.27275469343931 4.434896957154498 2.954518283821356 4.425396474250939 3.022163397211926 4.548941619145452 3.035913493232552 -7.928733881473471 -7.161088971257506 -7.931487706704195 -7.216334315697288 -8.061309020115044 -7.185487106032205 -5.290413443198625 -1.170237123120773 -5.140213237867658 -1.108684532559328 -5.137758472341445 -1.180346242909811 5.586707111893005 2.005226148885543 5.423611946354424 1.965816605674983 5.58331964496062 2.066637961064173 8.086766887922842 -4.734242544178417 7.908772394784966 -4.773935602516881 8.084026552988988 -4.673232652652759 -2.528929756813687 7.117309148078553 -2.510768963715936 7.162016021661472 -2.323097951495859 7.090635940766004 -6.755354382104422 -1.693800891803944 -6.957102582424996 -1.726234064856547 -6.957752504053442 -1.654548510803827 -11.63160338534523 -4.730076255950982 -11.60547293920549 -4.69357706720524 -11.4531390611676 -4.776153301574279 -5.283216725116196 -1.181073503757906 -5.285608515755107 -1.109406222731755 -5.133015219781264 -1.119522876372159 -2.782413739378928 7.801418052945049 -2.650849913367678 7.775621166014061 -2.827340303880749 7.751731110995292 6.112393901533349 -5.347056820956262 6.093739862146821 -5.407880871683303 5.970254604697834 -5.421959946138604 4.669320995111029 2.879182415103628 4.534692555436073 2.866343082675042 4.649168409313785 2.947362842856425 -7.648030350845747 -7.387641485502368 -7.779664505991857 -7.41501161470896 -7.796137095031223 -7.356839996860479 5.552914865208011 1.829306659365208 5.535590155000075 1.888883788096568 5.71322432990287 1.929535255277966 7.964633224573237 -4.807871056112734 7.976133678429006 -4.745265185184799 8.139625789198648 -4.70688697786903 -2.528594867949669 6.684583377198657 -2.695417752298258 6.747507376544613 -2.489227998806731 6.722603735316603 -6.751848338029388 -1.776528706288633 -6.954242635055792 -1.737272293869908 -6.752494041217103 -1.704840635693085 -11.83725289052072 -4.401841155863288 -11.66097858024856 -4.452869222440723 -11.66898604983954 -4.498639490704582 -9.53249314499655 -1.308870011824171 -9.397222114022787 -1.25309476580195 -9.394109736128241 -1.324744920637735 -6.07664978592382 7.173193960766203 -6.103338704087622 7.115948318174731 -6.232783871517043 7.157537586842094 10.37648397206477 -3.897710789700178 10.25659062512971 -3.979962745491175 10.25507731374031 -3.917404858724004 8.532377408238872 2.311061616736219 8.642985367837051 2.330600433380355 8.535913937221793 2.241117638589904 -11.91205011993709 -2.320528819902856 -12.02034418655708 -2.273491796878998 -11.88145791361551 -2.266006419408402 7.807834323710092 1.651513842409313 7.656418858796545 1.614125069673707 7.797369590113298 1.71207296755184 10.06320249162475 -4.297709022518156 9.897670607826914 -4.335348400675064 10.06756059465632 -4.234545821510379 -4.867331534120142 6.743138454598218 -4.836175219394534 6.785610561645462 -4.663545020610643 6.716340799978944 -8.86483094254511 -1.810876003588292 -9.051675172817209 -1.846049770724518 -9.053044462274221 -1.774367993559676 -12.53796431191397 -2.482947997677218 -12.51786683559621 -2.439535546338487 -12.38003317543516 -2.520612948411473 -11.85528740434087 -2.327309914645031 -11.99407172913327 -2.335885993386978 -11.9785568191176 -2.27535506048683 -9.533607646370111 -1.30720552973486 -9.536698422091648 -1.235557963230162 -9.398336732194387 -1.251430108413614 -6.055979939673919 7.078045015240623 -5.9424757760723 7.038844661266436 -6.098830498806445 7.024616000014126 10.51473644385175 -3.869709999316458 10.50645336712173 -3.932660177131321 10.39610476477002 -3.953086368156631 8.745997637818071 2.225916445333043 8.759574378182951 2.15593206901716 8.638249174645935 2.136937988450678 7.785192566295808 1.474390119993029 7.761798058242829 1.533332604647699 7.926845051899381 1.571709504981269 9.919531204534646 -4.343346287313191 9.937478950054636 -4.27880301535551 10.08928126454663 -4.242397932228659 -4.877372381696564 6.313616204722505 -5.031078100311892 6.374878601486425 -4.826906612317598 6.349960281804901 -8.864356051845189 -1.879849833307386 -9.052503024976716 -1.84332657968205 -8.86565893110614 -1.808152364153048 -12.60903942234756 -2.121651783403514 -12.45268788305704 -2.163195346911977 -12.45659475734584 -2.215850644018715 -11.51691709922873 2.476461820338925 -11.62084392495891 2.53117823002547 -11.46486178049607 2.522679131101929 -12.13104627836616 -1.364738488656472 -11.9966660992387 -1.315112784977395 -11.99344198376447 -1.386756714956942 -9.18205942245195 5.586919646267766 -9.041947562561358 5.588038733954915 -9.063776573984292 5.527243334453584 12.25338539400007 -1.321155089707019 12.37380760929147 -1.294860363414141 12.26754818949819 -1.383453184652214 11.54664151536995 0.5417516285613228 11.65828698993112 0.5671488483402105 11.54047918918483 0.4711231424537827 10.0927984075173 1.033838649760322 9.961312217475891 0.9999430953316305 10.07861404678267 1.094570872183027 11.78322974669136 -3.367385784440664 11.77558251065819 -3.433180821791243 11.63231947639032 -3.466871295603748 -7.265919129208221 6.081844855271687 -7.224849007093395 6.124892761890315 -7.078729505847892 6.058419459761951 -10.91926882018418 -1.94383192007079 -11.08097045308499 -1.983684067927202 -11.08309483002521 -1.911998750482731 -12.4726821717837 0.496177088471065 -12.45046514123785 0.5459422040659078 -12.3341822002504 0.4714730027772049 11.70574035499175 0.480366920339075 11.70805645885311 0.4102288978730836 11.58722387565817 0.3848824012390528 -11.58016418241329 2.733974862100241 -11.5405552925432 2.786344405078555 -11.42428200007916 2.724407891622082 -12.13068296398171 -1.365352966054599 -12.13400475699386 -1.293704568748746 -11.99630283859884 -1.315727172312938 -9.138252340458594 5.506413496058661 -9.033963990818558 5.452237834898119 -9.174077058409401 5.451216598813812 12.38222238834931 -1.186004868217785 12.38841036225223 -1.249032337624003 12.27715789377621 -1.275475289412604 10.06111268902415 0.8783291807048352 10.03584408975434 0.9377413103906218 10.17918295237725 0.9723636798977079 11.85555814392415 -3.337898767948163 11.70557524831283 -3.438248405328156 11.72376463514016 -3.371047484659703 -7.29985252635149 5.632317092451797 -7.429891834498812 5.690382559485976 -7.242306974483165 5.669003058538641 -10.91599378072267 -2.018252132061735 -11.07986989305261 -1.986435654276152 -10.91816800630008 -1.946584143843258 -12.42227401924783 0.8240756248723802 -12.28453404134056 0.7968687796958828 -12.29319271164968 0.7385693871397112 12.49587540671732 -1.360860892365796 12.36295742521957 -1.460026814667689 12.37772912847813 -1.390834126925765 -9.307203493878756 5.021933024813878 -9.420655215874328 5.078787217490511 -9.24828496381245 5.061495627257565 -12.22005846191051 -1.284455335573171 -12.07570275014442 -1.24035236218049 -12.07287426756643 -1.312013860961375 -11.32541633850511 3.434413206941159 -11.19244566749135 3.419768997132918 -11.20782468994037 3.358986077727649 11.56536228873711 0.7062842546849588 11.69379309139232 0.7374199887769545 11.58840770718205 0.6457244067831381 11.86935030655957 -0.1394753845984964 11.88195605126427 -0.2013348809135664 11.76677739165537 -0.2313483582302403 12.46786528678107 -1.800299450787113 12.46410551101153 -1.868943189312627 12.33805436555191 -1.89841483110699 -9.734687322955081 4.674007459041356 -9.689850086554676 4.720386835041382 -9.566354565900097 4.656403604170048 -12.33255403938178 -2.122855165481417 -12.33545636569393 -2.051203137338621 -12.19156916029628 -2.077743322433938 -10.99941322477048 3.400618047498766 -10.89638257905871 3.336512341496549 -11.0291521818851 3.34678584470159 11.62484226876936 0.8525172438219261 11.63818476646006 0.7909569622150322 11.52037569022122 0.7601733153954268 12.48705474982978 -1.421880788829585 12.48223820570867 -1.490054199808836 12.35337655444479 -1.520412300898939 -9.302703979954591 5.369515914144409 -9.257876882689953 5.414884242836538 -9.130626889992897 5.350503041455451 -12.22308779399504 -1.278472813032307 -12.22631644227562 -1.206661203836048 -12.07873344403525 -1.234367081302732 -11.39281260164922 3.2274297996298 -11.36397060252387 3.280657370285635 -11.25963064459668 3.214026345768237 11.80679329429891 -0.2988756151001704 11.93239133630643 -0.2686005413702315 11.82878013004725 -0.3597496585694814 12.46525608673323 -1.725749216076382 12.33622436346849 -1.824498607881888 12.34972578035463 -1.754914317992754 -9.731010887276227 4.303406183702024 -9.841167973317862 4.359903175765347 -9.672570274553641 4.3439453136875 -12.33327546491873 -2.121491411150122 -12.19229098852439 -2.076378789293232 -12.1893013512536 -2.148028068226123 -10.96772363310613 3.574557208880395 -10.83508641568019 3.563274984844765 -10.85199430642135 3.502250296806055 9.700133063558514 1.743658575729361 9.675027660501458 1.80290205883731 9.821699615209198 1.838203548580862 11.47800853430719 -2.915348728565967 11.49633724071634 -2.848609871224103 11.6312737384087 -2.814856631457098 -6.900726105013796 6.22656702556824 -7.03479990182481 6.285183918536337 -6.844231722584246 6.262991198781813 -10.60144102941807 -1.15106999200425 -10.76904811710645 -1.118375178178658 -10.60377278843672 -1.079236897711498 -12.5682138679312 0.6378465452335149 -12.42839533722483 0.6077877373566288 -12.43660708192508 0.5502878556221654 12.23061907081295 -2.454653074775718 12.23373972650387 -2.517889021226826 12.12705473567593 -2.54302444309913 11.1732183855626 0.2551194588039639 11.17854851734805 0.184854247527237 11.06178346568833 0.1609178037127916 -11.90903053033802 1.636482560800483 -11.87289176243844 1.690784921230413 -11.76074688627157 1.630295798825836 -11.76441272620189 -2.179493610854456 -11.76781658168089 -2.107855769700681 -11.63438572200886 -2.128497280899822 -8.402633560607434 5.627589924418487 -8.30012860573321 5.577389588847734 -8.441540378288249 5.573145862066023 -12.60725249136976 0.2966003197098835 -12.58587124961738 0.3452825968043923 -12.46643685487813 0.2695750413438101 9.733639939633211 1.892563068586766 9.599010494811875 1.858059393910534 9.719859357185387 1.953172052342427 11.56166904672407 -2.88826796474278 11.41467808579627 -2.922752577261916 11.56862950572229 -2.822911710336432 -6.878912733142323 6.618128731079663 -6.839257541258856 6.660587239864112 -6.688718108597476 6.594034362371139 -10.59400251335704 -1.104556747342412 -10.75928011103576 -1.143689097738676 -10.76133003500066 -1.072023560709993 12.1934068264344 -2.567321203650689 12.08853369849534 -2.654732170220955 12.07687120306518 -2.592184588071366 10.99374630875812 0.3422381603101748 11.10082227227301 0.3663227964335915 10.99021769238728 0.2715174848468587 -11.82991125961936 1.389728808555362 -11.92943137613817 1.443405004548001 -11.78110346449207 1.437914064229647 -11.76419542175737 -2.179837089608198 -11.63416842548747 -2.128840747151753 -11.63078088358188 -2.200494548159048 -8.479123357701766 5.740564553119779 -8.33773345156629 5.745237460619619 -8.362680709555193 5.685310528419809 -12.59179923290041 -2.072861140566345 -12.4349141711313 -2.114938646808637 -12.44026222041529 -2.166272588026754 7.548567425267287 2.279468284446137 7.526524652985462 2.338546907745761 7.690229168981393 2.376964419762755 9.7746589063734 -3.67469305729071 9.790776293167403 -3.610345062445346 9.941338832644554 -3.573887342474415 -4.591195833967213 6.845400979153489 -4.743606185013491 6.906131183301143 -4.542844432461727 6.881857920826196 -8.586669441757142 -1.047834359754729 -8.773006016752229 -1.011755662961565 -8.587947467757003 -0.9761577324023332 9.746046869028515 -4.992806913775424 9.735501332799606 -5.055477088158096 9.624048336974289 -5.074617171066822 7.927281236121091 1.761312237896771 7.942498291265432 1.691556805161452 7.820883955473859 1.673793207042376 -11.41804881857539 -3.658784117870152 -11.55217715498363 -3.671312392569379 -11.54298452255754 -3.610126319802523 -8.743632838614316 -2.095042677601923 -8.74674550130467 -2.023381161205844 -8.608535158752799 -2.038142733453908 -5.336533579251965 6.929266462535714 -5.221771325583803 6.893142316736877 -5.381163294285627 6.876885518594103 -8.619091181742117 -0.87639890633865 -8.80414358943211 -0.9120165883444161 -8.805892209435326 -0.8397632979795607 -12.50421079878694 -2.407746354985607 -12.48286082571195 -2.365701460028077 -12.34566498521755 -2.445777045063263 7.584969237805654 2.434355210056633 7.434757668159982 2.39701230982394 7.57581571199032 2.495048626939908 9.876165215659061 -3.610345444401281 9.712135333773281 -3.647931832561251 9.87919985095373 -3.547520875429662 -4.588986709826833 7.227894232869366 -4.560210211050245 7.269418806958203 -4.388571840905032 7.201907492868052 9.603159259007891 -5.002101805391789 9.480072157754329 -5.082896700251764 9.481782508812453 -5.020496251124981 7.709410812740092 1.847629176148989 7.821078118529962 1.865979967641594 7.71531021759553 1.777990101274116 -11.50127362521604 -3.6344410218119 -11.61104781310153 -3.589597096185644 -11.47670646539864 -3.578571318966301 -8.745553419553815 -2.092230822813783 -8.610455985515149 -2.035330517473851 -8.6074108871167 -2.106977013601151 -5.3855096914852 7.078599933089281 -5.413841478065989 7.022448433670304 -5.544603736381786 7.06062766913001 -6.600949100753985 -0.8236757204749829 -6.79963317398951 -0.7841438049040456 -6.601720941284047 -0.7514118877313775 -11.77531102550626 -4.234864030729428 -11.60015286477251 -4.28553059781461 -11.61038530177011 -4.330084620940065 5.345743462367635 2.627743467682134 5.329890919169237 2.687576773212528 5.503917822739783 2.72794410936342 7.838516907312039 -4.095179849693305 7.848261878979759 -4.032779071047673 8.00826451629478 -3.994648510428144 -2.270160659111173 7.20001894211878 -2.433460326974444 7.262189589159905 -2.233506080694227 7.237506189842751 5.464057725378664 -6.102200099321551 5.444556958960229 -6.162700448572736 5.318712027937583 -6.176025420301502 4.121428592918026 2.178185604401238 3.984211037780418 2.16608008914457 4.100937647216597 2.246092148132916 -6.853741323553279 -8.074158982095822 -6.986184644844813 -8.103301490697229 -7.005754887700962 -8.046223382656194 -4.550849325210138 -1.910603855338458 -4.704212806341116 -1.972850122803083 -4.706495407863542 -1.90118608459101 -2.359013430442525 7.477419544385175 -2.224435368890001 7.453097514263935 -2.403540089663022 7.428197641230938 -2.246807954583327 7.630338741567051 -2.23068519837534 7.675640083496553 -2.047249435805684 7.603747231876121 -6.568413983279684 -0.8759097367367454 -6.766331658425485 -0.9086212826675217 -6.766901931486967 -0.8369362468612964 -11.54996257806058 -4.532079969467537 -11.52208236519743 -4.496786257821556 -11.37253871710033 -4.577607325276893 5.37905676770497 2.793456453140291 5.219446945263041 2.754320348810552 5.377040500854911 2.855085741502411 7.921176529983929 -3.997624391234151 7.746797839386731 -4.036994453534243 7.916964795233094 -3.936902801616408 5.325636603495221 -6.018304134052811 5.179705003796807 -6.091410672808749 5.188436436570532 -6.030574151138832 3.879068301748835 2.263007687264583 3.869469825209229 2.330338839324836 3.995357228276211 2.343413182231673 -7.162139612959358 -7.883046208129853 -7.162369274664934 -7.937587050663221 -7.295616511033068 -7.90910761739239 -4.546227946041681 -1.985834548114294 -4.701874465791489 -1.976416175929757 -4.548510541883238 -1.9141705835812 -2.488669022770686 7.706335545333952 -2.513947138538662 7.654801631882929 -2.667096369762327 7.678588884498444 0.3388590175924675 7.468478148370858 0.1753542530736604 7.532235547004794 0.3643194954648885 7.511044788144226 -4.350741773808331 -0.8708743110031407 -4.55040902106364 -0.8313659061705711 -4.350624105358602 -0.7991879312274119 -10.50156934925294 -5.891094912037254 -10.31392445509432 -5.947034203207001 -10.33417810116103 -5.985411559262474 2.980637668983736 2.955487618140717 2.97213560195912 3.016773438136553 3.147162612606374 3.057642527741412 5.750645944714265 -4.410891053863247 5.751996379331511 -4.350088419238669 5.912934270251835 -4.311630330695824 1.430402467901002 -6.097064217224641 1.287408108770822 -6.106025121561802 1.450609292630583 -6.03794080529733 0.6897896699171024 2.091816947294958 0.5340050743466696 2.084108880342424 0.6698063959186185 2.157721231848731 -1.824493103337637 -9.427390383578034 -1.971463972366836 -9.464523559769994 -2.000368815324718 -9.414948386213476 -0.8315657471380117 -1.842015932616758 -1.006557068983648 -1.908536419886093 -1.00801446078247 -1.83685913113244 0.3734857189804404 7.582539429119366 0.5282419085750479 7.566853049270059 0.3347261333977393 7.53647988067295 5.845593956585285 -4.314764894790497 5.670261584038721 -4.354575754623455 5.832863197667823 -4.255632828607601 0.3211095130233227 7.823580412029536 0.3253673410378433 7.872968805648823 0.5098158021235133 7.801006736965309 -4.350447388675633 -0.7998671768929282 -4.550232326016451 -0.8320450687059297 -4.550126945588144 -0.7603573492320419 -10.16213749662214 -6.113909484032706 -10.12369385405249 -6.084293342241298 -9.971867929590029 -6.164062962044499 3.020434695949662 3.110073951201482 2.859935075312371 3.070498640470921 3.025935355585586 3.173180632599592 1.169659927098823 -5.982591344324178 1.177491447400724 -5.922707038717424 1.333222824575716 -5.915046323848436 0.449518148898797 2.172009657669498 0.4420401809669095 2.236966542966661 0.5850323865735413 2.245948688574167 -2.198864159897617 -9.290070489322892 -2.192237066124712 -9.339165662774249 -2.347118453065111 -9.323899370052788 -0.8344320829141361 -1.906597539063247 -1.010895572889722 -1.901435918214815 -0.8359052639922848 -1.834913781935882 0.2086113656110601 7.883570127221148 0.1918706235153801 7.836507170659524 0.01607981075470791 7.849545683073208 3.410838817924859 -4.791637802790042 3.403691788149378 -4.731927768876296 3.556607180013546 -4.694373956769291 3.138622931071409 7.468530569028002 3.30884925679718 7.452680471551964 3.29258229934162 7.404861252907204 -1.833246071438417 -0.8233296533976419 -2.023331156945316 -0.7851396565345657 -1.832431748474177 -0.7516447482476861 -8.824003284140646 -7.258754957404084 -8.981115768265994 -7.166380724353695 -8.791055043966981 -7.2252899709947 0.3286330780608032 3.271599004679685 0.3269160481412842 3.33483944506435 0.494987308283692 3.374890432677392 -1.83260229101412 -5.682836527645144 -1.988981267121588 -5.689168121202413 -1.817111095797469 -5.623882503594423 -2.26424705438166 1.83146793043839 -2.434515194417165 1.826494417771494 -2.279694360297367 1.895548618076223 1.930587139717629 -9.249275243942394 1.761931924789639 -9.289915396855312 1.737703995769082 -9.244371378351325 2.262843051627058 -1.81404939662664 2.070554959718644 -1.883333659576222 2.069857864589424 -1.811642632463284 2.9121120246615 7.415023477624387 3.082066929279716 7.404452637564274 2.883472204797545 7.371655816552622 0.2576687618359552 3.500696085404013 0.1052740801429292 3.461854464771089 0.2706330966904003 3.56613013530968 3.465811524524859 -4.676273949985517 3.29900238339993 -4.715042845334135 3.445181147882065 -4.618160915125926 3.25450671250647 7.714766398356784 3.250875872441331 7.769631186069479 3.424572231780671 7.697881806160378 -1.83490907629404 -0.7428941968907465 -2.025808191936325 -0.7763901379726197 -2.024949654622004 -0.7046982132147882 -8.546364775114862 -7.322344112488144 -8.497877694543982 -7.296563882553099 -8.353408234722659 -7.375106879045785 -2.077991854826696 -5.572405801264205 -2.076257731982353 -5.512399930575265 -1.90588599994255 -5.507505551185946 -2.489563151122448 1.892568456672654 -2.491285634742426 1.955426830915729 -2.334913316264097 1.961859375032874 1.607208980558737 -9.145752172435831 1.607436247025817 -9.191805389838896 1.437395131002299 -9.183287952258565 2.271369091126892 -1.899367917802391 2.078409505047327 -1.896960574181735 2.270699680411801 -1.827679889700657 2.718268589138662 7.785272142096066 2.713774130832634 7.741703455943248 2.52093414050731 7.748064314234124 -3.101005212899266 3.577412279864564 -3.098069028167583 3.643596049513202 -2.949644236272518 3.681106778337159 0.5872056461813613 -5.241360867570392 0.5731554144250173 -5.182045209905461 0.7111112946336134 -5.146607270480946 6.497106443482595 6.774594643572343 6.646745284903194 6.766832542992263 6.633669263900449 6.712865037076929 1.229539747046159 -0.8090004658764198 1.057626280582487 -0.7738704057642062 1.231188679675817 -0.7373170954735064 -7.050928646088233 -8.322147175581945 -7.186739428373274 -8.232048897087489 -7.007125226184665 -8.291616529698787 -4.536023768756633 -5.274692221047742 -4.698445249312494 -5.280085347772605 -4.528317687225148 -5.214977765287023 -4.846572101938646 1.535523696535898 -5.023409164285574 1.531519876429212 -4.855116805167673 1.598036321270712 4.761390014391969 -8.57912216744227 4.573796470920078 -8.621485675739146 4.561099046232635 -8.576528386537017 4.926186251392148 -1.842966286034857 4.725855626782549 -1.91324328406501 4.725875272424887 -1.841553323505028 5.392513718735883 6.995502158967064 5.569041069876899 6.98622865430164 5.376198408111666 6.953716977861921 -6.624834436002091 -8.343266464487936 -6.564440614130068 -8.320389351523742 -6.441889442908324 -8.396190757723769 -2.986489052362143 3.629067475396462 -3.123996584609335 3.592567105804021 -2.972748076744523 3.696363111680439 0.5964536110836771 -5.115716446650194 0.4459197203542348 -5.152162699378244 0.5703589265084541 -5.057842800270785 6.552913385846088 6.967420827783103 6.548146641469678 7.028279956737866 6.702508814518651 6.959157090438652 1.232621748039976 -0.7415414329871886 1.059059182266867 -0.7780942535030593 1.060664802239573 -0.7064232200460062 -4.778045314998035 -5.168841092003929 -4.784558995688505 -5.107980045130107 -4.607708182119671 -5.10407349327342 -5.0793215695751 1.603982904602696 -5.073620795971975 1.665245649891377 -4.911206810490103 1.670776698192297 4.494229071368491 -8.497950518997337 4.48234475284956 -8.543650531964993 4.305612772192483 -8.537403701206808 4.918783662506996 -1.901439839381903 4.718473602689465 -1.90002750382157 4.918802060406136 -1.829746683366773 5.185219116056956 7.412708334574132 5.194079609769208 7.371133515766913 4.993829236448887 7.375259010168215 -4.914632941831193 -9.226011483115627 -5.021526081191493 -9.137175517212191 -4.858730927155893 -9.196914519097552 -6.800828468577338 3.237800398435974 -6.800387640670833 3.305957783600929 -6.669184604952434 3.33960943800739 -3.061235305347609 -5.624933477383353 -3.077961769544193 -5.564953369687144 -2.957551470760736 -5.532501659553968 9.803298403475026 5.020030796012997 9.939035915648196 5.022910612338249 9.921072548902576 4.963596157364883 5.042477062616952 -0.7981019346748194 5.04003739996108 -0.8697584004945983 4.889570338005955 -0.8391293284960959 -6.918251583513504 -4.902663835285465 -7.07769079771071 -4.908793682871439 -6.919207650204099 -4.841592092900788 -7.248962652349006 1.224322803810492 -7.422592943457921 1.219465241070507 -7.250110037170177 1.285742841018201 6.906114095346661 -7.711173731050049 7.102774332146746 -7.715168512703589 6.905097925564351 -7.757813369933015 7.316564191042545 -1.875752496459551 7.119183764639574 -1.945159098079595 7.119906921062253 -1.873468197674101 8.134667475511211 6.082345007988138 7.956888779050511 6.053336779734313 7.961729807695646 6.095319479138744 4.89369177710442 -0.7715354373199275 5.044231163922257 -0.8021706311137055 4.891324249168518 -0.8431975863876242 -4.311885536859164 -9.21044314927207 -4.244741349664362 -9.187908550459007 -4.145175828819955 -9.263078905357359 -6.989608733936294 3.313047149127845 -6.859074814876416 3.415736807845859 -6.86948293468914 3.346144921051305 -3.057136607144227 -5.514821298193825 -3.188446423579788 -5.547963762019459 -3.084210008014707 -5.455917359636779 9.786699342693437 5.187761707039861 9.788839147541859 5.253312413537652 9.922430373158782 5.190824752621799 -7.145525731979204 -4.817805868584787 -7.160457645539334 -4.755598122927399 -6.986837805824555 -4.750904001403897 -7.483295488943362 1.294369059431125 -7.470463793862006 1.354660613111123 -7.31103840698762 1.361009120311428 6.881649825720019 -7.670249048375972 6.856544048754383 -7.717318289784595 6.683044259209378 -7.710132874045667 7.317699265603245 -1.950701463566985 7.120994987223083 -1.948412976077941 7.318376001159224 -1.879007408459161 7.766049575695377 6.552356395311159 7.786194044848958 6.510191777413938 7.589774807722749 6.51813660449934 9.254894854813308 -0.9167324311530829 9.251828858045037 -0.9883781916903132 9.117351816742602 -0.9632363091250851 -1.982309787171781 -9.922074844160122 -2.060492157904909 -9.832445370463676 -1.921207073352141 -9.890653689399986 -10.51056860374297 2.016015618555436 -10.51792275925669 2.085848276703532 -10.40082334930702 2.114317789569848 -7.49314568257528 -5.340838364669041 -7.505417731384425 -5.27895082270685 -7.398593744524085 -5.250266616605737 12.08861960841357 2.223505573629072 12.2246392897392 2.237930092997413 12.19558824656419 2.176469155941045 -9.082413289877996 -4.500351682102474 -9.230723233076891 -4.508845476695185 -9.091222908222381 -4.437425103374943 -9.538971140293358 0.7639018314802899 -9.700426783931356 0.7563121786136131 -9.534228775932153 0.8249186147743608 8.953673465312455 -6.656840922109682 9.136377463864346 -6.66537959219897 8.939657763412649 -6.706680719685711 9.539691719965946 -1.954578911020664 9.355164015014479 -2.021311301104733 9.356565505040091 -1.949623746869203 10.7944562209931 4.052829613292501 10.63479582713684 4.032857501580568 10.63415601126062 4.07789891053692 12.05920402376165 2.471950311626575 12.18110101014687 2.420686182282084 12.04524913194961 2.405314162297308 9.12366088350826 -0.8974698045951367 9.258091254390305 -0.9226224614788939 9.120547968420148 -0.9691258857088608 -1.122937561091825 -9.824524100992694 -1.054521833974184 -9.799080539978482 -0.9788016713196168 -9.874896799058696 -10.63994222865009 2.013344136466253 -10.5313333906328 2.112424293986295 -10.53294434199304 2.041624391548812 -7.658675245157602 -5.219586359468224 -7.563154659508778 -5.129645800995207 -7.541765733577965 -5.190687244740161 -9.25693001115855 -4.476700069364923 -9.280497842167719 -4.412677530949329 -9.117321972355981 -4.405410063963603 -9.75194697604057 0.8050374882700758 -9.734291427957043 0.8651552426396674 -9.586019237741056 0.8740475798645565 8.959458485297599 -6.67860020564394 8.923030466450507 -6.72824937476961 8.761886579848687 -6.71730215270895 9.539899347741693 -2.02944867211821 9.356980925718609 -2.02450977523127 9.541509274825991 -1.957778487452107 10.58652388997379 4.475738711935919 10.60882456347228 4.429640890670481 10.42775883666963 4.451752938820059 12.81878013776671 -0.7652441303818351 12.77911016892721 -0.8251357831316858 12.66864828306061 -0.7897086307946575 12.2174057480242 -0.9947482030301438 12.21415962675243 -1.066400626299469 12.0818955755303 -1.047199080864409 2.680140713861819 -9.854129518448586 2.614587204288861 -9.76177390822841 2.736547990027956 -9.814443502461552 -12.55698078725072 -0.02273720273679344 -12.57443399692328 0.04673022257813429 -12.45856719501374 0.06886924070817679 -11.44604302940786 -3.451446251740729 -11.44625717491325 -3.388128464041027 -11.34062169835765 -3.364461700485352 -11.04851561536026 -3.886396738717834 -11.17940583363626 -3.898760344917689 -11.06362245131458 -3.820811774587051 -11.56489473465991 -0.1930486704129845 -11.70830084627451 -0.2051180758801964 -11.55842790029177 -0.1315574553065221 10.74996414946448 -5.26395477433929 10.91166911937525 -5.280126411087791 10.72650231030536 -5.318228148162276 11.51117713583039 -2.066834505920978 11.34639166853562 -2.12937481160158 11.348761264778 -2.05771767986751 12.52935446170226 -0.7642104022846729 12.38853103925172 -0.7636481978390624 12.40088535149176 -0.7152920271831872 -11.54096219727708 -3.323997394407981 -11.43448276973542 -3.237814100508409 -11.42542642437748 -3.300642255855967 12.69605081552178 -0.557769436970603 12.8218132780685 -0.5952775935331 12.6721201477554 -0.6213527715665864 12.08489271922964 -0.975098983348563 12.21712208686263 -0.9942991072373359 12.08161188898392 -1.046749944485742 3.84491264716146 -9.535431972259664 3.717574312810627 -9.491336030605259 3.778404646834254 -9.457580504182932 -12.48608670189704 -0.05521616486810895 -12.59217633466384 -0.07759047874737915 -12.49468872382924 0.01462665307592227 -11.24777770535109 -3.813626414247613 -11.27347093805358 -3.747607198916761 -11.13148889186723 -3.736144859558363 -11.78274753405902 -0.1901089938064303 -11.76446669890119 -0.1286500032508171 -11.63369688121841 -0.1155216047110243 10.78554273978905 -5.369913416267781 10.74214118692316 -5.422978702459687 10.59961140871281 -5.405636914741278 11.50697981210647 -2.135091010132068 11.34438709461597 -2.125960844131605 11.50917169502004 -2.063419124941607 12.52869414805493 -0.6720658251114389 12.53418964284194 -0.7275289658485421 12.38787205617552 -0.6713255647413392 -12.66812017787089 -0.7377636034755921 -12.6557152856829 -0.6752903732675847 -12.53827364064838 -0.6576259523312927 12.02975326339321 -3.200635946145051 11.98508371934015 -3.256871307150082 11.85918602032538 -3.232351940419628 12.60435450639438 -0.9349079872896567 12.60157650081571 -1.006572103563774 12.45606315085875 -0.9931755094944339 9.646099704192091 -6.540311077321691 9.616778072070421 -6.594137719524099 9.519244071721854 -6.508160679276509 -12.39737880649773 -1.803269368389568 -12.42142226650803 -1.735696711570993 -12.29325113874864 -1.719860038178735 -12.35201737779743 -2.734203352197723 -12.4665514071796 -2.751788587100053 -12.36681915305359 -2.666148389687829 -12.64378379789673 -2.148232168059666 -12.51753427489609 -2.066951456210427 -12.51889655292754 -2.130061439833859 12.13497871476274 -3.30423750600422 12.274323170788 -3.331055450699581 12.10818011923135 -3.36371192408869 12.52820093160765 -2.16348230398198 12.67052707297118 -2.177897199084264 12.52526689361987 -2.235137763657174 9.083727460491037 -7.235691707836772 8.956155993504925 -7.205611650119923 8.99884526827284 -7.161259838071032 -12.24950799258057 -1.850527582120462 -12.36722712375889 -1.867009383604301 -12.26364197454243 -1.783183058732165 -12.66188702262465 -0.6721380147752802 -12.53123560125465 -0.592814061286445 -12.53397521977916 -0.6552606075227748 11.96142489643524 -3.065586715165786 12.10453445883291 -3.090260905828021 11.93462105317904 -3.124079108265068 12.45901845887403 -0.9217868859907208 12.60451088997626 -0.9351777987968065 12.45621938669737 -0.9934450883106137 10.1922942062558 -6.001327089984576 10.06294871829891 -5.976050917545559 10.09993699390079 -5.929644293427442 -12.52213590676956 -2.614090488894461 -12.54626210722259 -2.546362135107309 -12.42097186366522 -2.529495936389581 -12.64475311492307 -2.140105917930304 -12.63265295654619 -2.077613511697214 -12.51840217321106 -2.058922789721463 12.21208464367354 -3.500534444088139 12.1678244191901 -3.557480530298427 12.04531208481726 -3.531140853334366 12.67054540006644 -2.177933302011313 12.66756563078661 -2.249579074857127 12.52528518350265 -2.235173808143825 8.320623204678105 -7.786959163113103 8.232874929095363 -7.697636149700083 8.357082193647491 -7.735438167397502 -10.92430361763545 -2.83306346094682 -10.94912627808307 -2.767660088846366 -10.80220340211371 -2.75712106249809 -11.46365995656451 1.11449201724629 -11.44534506784558 1.175291965449422 -11.3105776325685 1.187499866469894 10.50179575822348 -4.91802020301214 10.45921696766879 -4.970403694988755 10.3130884381685 -4.954416311874142 11.2150058757459 -0.8893648689627063 11.04848006968411 -0.8810920936825015 11.21704215856316 -0.8176907419769754 12.48882793122139 0.8001832150614913 12.50011544374162 0.746133328072065 12.34514220832967 0.7947446575729812 -12.25834708115401 -0.7167472920872547 -12.36460762954684 -0.7402274224586559 -12.26627320370312 -0.6466868541445741 -10.96165087025318 -4.791064051735776 -10.85747041594138 -4.703929326199413 -10.84699529529141 -4.766603113113328 12.66110003515725 -0.6448085608565688 12.78502636494957 -0.6848121031570447 12.63855556857809 -0.7091562363563319 11.69049556089854 -2.192029447741701 11.82201748319881 -2.212313174264094 11.68712959843341 -2.263664635868686 2.786442773881154 -10.03592408610541 2.657202691118821 -9.990154442073933 2.7203563364341 -9.958392385442188 12.50121610250245 0.645933275879893 12.35746638012572 0.641667854665042 12.36503647428866 0.690579099150778 -10.72767626807281 -2.902417657010436 -10.8625393063809 -2.913953713118199 -10.74082400116297 -2.837629898732242 -11.2701753075792 1.113743778931909 -11.41702951810472 1.102607233037831 -11.26352973655104 1.17507062539224 10.47431528209601 -4.874675603876916 10.64014284200808 -4.889237561558042 10.45222726449447 -4.9280861002243 11.21665097345873 -0.817026028592214 11.04808904603521 -0.8804276459384789 11.05014366576572 -0.8087556813547585 -12.32108748035685 -0.7063977391578555 -12.33684084971447 -0.6367128941778316 -12.22194144423427 -0.6133888617183338 -10.8508644666914 -4.910544994711315 -10.85354164840268 -4.847352146849595 -10.74773297143062 -4.822641437402077 12.79415567435181 -0.901735537730742 12.75609267059029 -0.9621013067410971 12.64729378391449 -0.9245750335657489 11.82346278774114 -2.214655706131431 11.82002304445178 -2.286294249986722 11.688574935385 -2.266007220419015 1.613855925203038 -10.23514118395188 1.548410783550392 -10.14313216949229 1.672170999325572 -10.19747212894398 10.10509617256335 5.307495219048317 10.12906687701174 5.261973918342235 9.944409369026371 5.280611820303632 -8.938545594816175 -3.385637841338056 -8.959231894214225 -3.322079906361745 -8.794975086676027 -3.315409192563738 -9.371371790257051 2.01601562795054 -9.354278062269634 2.076078003192116 -9.203496739719563 2.084377204684571 8.620490640664896 -6.142056151301214 8.585891689944674 -6.191186512474318 8.421924834222999 -6.181126961747228 9.171453351342711 -0.7862006098504798 8.985374646398356 -0.7818597160135269 9.172740030121522 -0.7145175685324635 -10.02184885624744 1.27664421782956 -9.909616753078108 1.376620927098016 -9.913116109148708 1.30589626836735 -6.668820369006065 -6.3888858489672 -6.787547417719502 -6.418614984929631 -6.691786442499998 -6.328294035798993 11.72108212861239 2.422488147860282 11.84399648985425 2.368936246423897 11.70933061303161 2.355741298847008 8.348507779772081 -2.090569958369155 8.484904921841803 -2.116752510561905 8.345353592093668 -2.162216634558236 -1.82738260852769 -10.13217269407754 -1.75873619458932 -10.10753064839566 -1.679407571285809 -10.18319392408976 9.172574094289658 -0.7142259494379865 8.985208768195092 -0.7815681961441532 8.986484830219609 -0.7098811786373334 10.3741582950887 4.891032705646279 10.21231675430306 4.868846279788393 10.2120809399966 4.913047224178735 -8.721015915563411 -3.466105233634645 -8.87182758105471 -3.474055929503595 -8.728511102395748 -3.403506917456138 -9.155565803861562 1.976448371447795 -9.319793013159728 1.969497366493955 -9.151669602591923 2.037480184017877 8.619823578614357 -6.181328665513821 8.805739843936904 -6.188827872184205 8.608037714300634 -6.230521110804173 -9.877284333470186 1.256905021379852 -9.882799551871313 1.326569015030331 -9.763898746457855 1.356073012091971 -6.634224302748915 -6.517920402656922 -6.647956918246396 -6.456481116238631 -6.539300411065627 -6.427054274292626 11.75295215948591 2.141939069617363 11.88773990574985 2.154340074702622 11.86086369420799 2.092941713259929 8.486623141134281 -2.120047596972245 8.483579289708688 -2.191693814469742 8.347071658155628 -2.165511429901186 -2.624212925449276 -10.15064480514148 -2.706920319159464 -10.06139568049478 -2.563563972384996 -10.12001192494219 6.905128364991542 -0.7157663462809335 6.706982149809622 -0.7137726112372038 6.905685887765163 -0.6440736422712722 7.291385085460716 7.16053165628489 7.309840309385741 7.118782615639108 7.111855348723685 7.12544493858975 -6.736892803753619 -3.755182909130092 -6.750374055509518 -3.69320837269109 -6.575421187924434 -3.688767774615201 -7.068584075832563 2.475211961078289 -7.05692673767198 2.535628676349578 -6.8962792139153 2.541700844445098 6.490424106918721 -7.108821293216964 6.467713749312748 -7.155583273790948 6.292837673619022 -7.148740808790945 -6.236143753315759 2.348465962161977 -6.101475582455138 2.45147931704271 -6.113000472235257 2.382271665968184 -2.319938076792037 -6.543427589147638 -2.454678179618663 -6.577258530081625 -2.347228569014471 -6.484856323560032 9.21657005487458 4.976425101198499 9.217030817197978 5.041360744536497 9.353995775891198 4.977238798808156 4.276763073580272 -2.009784836798928 4.120242250038147 -2.049900192570037 4.122539147813649 -1.978236748381537 -4.788173852738191 -9.523907708578999 -4.721957171919164 -9.501519083631466 -4.617822128234676 -9.576809867399767 6.514362576025462 -7.204773302166274 6.712475200188893 -7.208267905961661 6.515799130000541 -7.250878757087985 6.90649597847858 -0.6455226806804572 6.707791985152818 -0.7152211991066345 6.708346151468331 -0.6435301315091279 7.667558799678972 6.762320860708827 7.486522609131087 6.732405373730895 7.493166052638109 6.774187271445335 -6.513722224920572 -3.838874349262564 -6.674381637394875 -3.844748639390658 -6.513091796844782 -3.778060726471683 -6.842947048790961 2.420958041906638 -7.01794189797377 2.416364241220615 -6.845456297039751 2.48256248158162 -6.050637277326548 2.254905191196734 -6.049412758603382 2.322619185522681 -5.914926379359914 2.357068195700977 -2.308320482126599 -6.660328640144927 -2.324957880932171 -6.600542708138916 -2.201486606224465 -6.567485658682623 9.221337604460567 4.76580044886155 9.358763786175485 4.766564479856735 9.342243733787802 4.70806709794962 4.274390944644534 -2.081184769515353 4.120134128726166 -2.049636892959227 4.276654940332099 -2.009521508367151 -5.353563659506532 -9.472747231332079 -5.465757103480144 -9.383725404633548 -5.299210596634174 -9.443658526530237 4.01795733860726 -7.946677496125321 4.008440497215478 -7.99218509072781 3.832187822096989 -7.985806230715681 4.473964104932032 -0.6779511285841976 4.27418090413199 -0.67648369913303 4.473830216089857 -0.6062588129077937 4.741689778330031 7.962921652458548 4.748162475832153 7.921123172862993 4.548487343279458 7.9252669919763 -4.321388913700464 -4.105619606925039 -4.326317680033606 -4.044927686173337 -4.150000887048926 -4.040997928507854 -4.640229805035218 2.795979829008918 -4.635943867340972 2.857523599764584 -4.473993895036286 2.863098452121417 -2.332816992403701 2.510511649805565 -2.47346728346775 2.473516439511946 -2.319136483896051 2.577371894397588 1.180434235726424 -6.150961901526562 1.026599371140038 -6.187921333040047 1.155088899660314 -6.093098971734511 6.001738772212597 6.491536344311743 5.997068601180984 6.551347183971659 6.153785360024773 6.481536522915294 0.6140021512227728 -1.966802477791774 0.4368443898826924 -2.002690295403096 0.4382864708787215 -1.93101388333201 -6.992581283815026 -8.683527396401857 -6.933821119214811 -8.660339945850341 -6.805287334771601 -8.736773337055197 -4.39720013907419 2.719632112681811 -4.573564435054072 2.715590763550038 -4.40711974467781 2.782388416036915 4.303566820589536 -8.087105222503734 4.118870596494562 -8.129261142657084 4.103805166534269 -8.084370096625332 4.47403121436948 -0.6066156042287847 4.274381844560351 -0.6768403886719054 4.274295152810143 -0.6051626048469881 4.943522953238395 7.621805236916789 5.119526523107883 7.612654526523374 4.92491740810982 7.579786954825032 -4.086258799484165 -4.207741200740353 -4.248216324410707 -4.213178577697287 -4.077018241495186 -4.148246067965332 -2.286632422320452 2.331957827939785 -2.285160862709941 2.397061826453747 -2.131422429209602 2.434999272540071 1.143597543452929 -6.258630231775132 1.130538154720602 -6.199334636958288 1.271649420195784 -6.163442199649933 5.947954844830404 6.306211203100156 6.100051171157892 6.296690972733831 6.087351659536604 6.243076447623369 0.6363852053372954 -2.11616549622075 0.4621232387497143 -2.080390606912731 0.6392835740040764 -2.044510653228 -7.396000247538519 -8.592289674988017 -7.536228840858669 -8.501629477156589 -7.352252016604588 -8.561606714430482 -1.992251873627624 3.069137594556995 -1.99526290260837 3.132332819027415 -1.840880027947763 3.139099671517681 0.986303489507237 -8.619818257433765 0.9882378254537633 -8.666222437088377 0.8203571460677778 -8.656878952667265 1.73930313475289 -0.6680557020219697 1.548793345031301 -0.6652938532232062 1.738503396454447 -0.5963806467824427 2.275282391915863 8.320437653037011 2.26836478902093 8.276277202155798 2.077987181714787 8.283548893795921 -1.539422638859084 -4.52111182133746 -1.536330157966407 -4.461223639044718 -1.368119422486145 -4.455967101051516 0.8427943360052032 2.234275839124005 0.6882719276239152 2.195363910262767 0.8531371082192651 2.29887979499915 3.926471921077349 -5.724695422071401 3.757475357493761 -5.763730842403976 3.907097816369042 -5.666478387738177 2.694120461954414 7.139504741171798 2.690376907532083 7.193962526998284 2.867880763625536 7.121188405672213 -2.340657171133343 -2.017359950187927 -2.535454440634304 -2.050467478858239 -2.533200376064993 -1.978798301918892 -8.828661937859151 -7.668012617872336 -8.780273985907968 -7.641995380924155 -8.635228694626996 -7.720233015551211 -1.294830378688606 -4.636698978082613 -1.449220140721894 -4.643367878898248 -1.278157903380341 -4.577832460690896 -1.749405044982786 2.991742383849651 -1.91756898316699 2.986413745460856 -1.76596462792328 3.056063568143478 1.325422693043524 -8.779476032537506 1.160677743878615 -8.819717258011629 1.135022182389053 -8.773697838009975 1.741592942901703 -0.601668250011042 1.551882097384761 -0.6705801036120539 1.551023803178467 -0.5988889786872379 2.466267129561606 8.0228018553836 2.634003226567327 8.0115631732706 2.435490355614513 7.978966819008738 0.8237370965992558 2.070639919214244 0.8208815136375675 2.133453983703914 0.9891930140569999 2.173570874291884 3.854445954600101 -5.827005108856018 3.848735286997988 -5.767192321719023 4.003711552841845 -5.729413886187937 2.550374726944825 6.796833780674253 2.724348651612159 6.779818555476862 2.706697415328707 6.732995750532142 -2.351382516112003 -2.052469125242277 -2.545446165170833 -2.01389098677349 -2.350650018235103 -1.980779370948002 -9.100566873162702 -7.52730130613514 -9.260386493312403 -7.434443173150337 -9.069899885370543 -7.492984194590505 2.099363166726732 -4.94203785703949 2.107203094554858 -4.882044099013946 2.259402164738622 -4.873130464253538 1.243529233091322 3.310045858944677 1.235813553299132 3.375391656590128 1.37473014647636 3.385627353047777 -3.351342190965849 -8.626228931742908 -3.346345348927424 -8.676325475586459 -3.497144026037172 -8.658024668066801 -1.677284560510524 -0.70633768106393 -1.851016468452078 -0.7001310367739958 -1.678954119171283 -0.634655407848723 -0.4118333013120634 8.395431052259955 -0.4298418410845212 8.347399916026566 -0.6026516654263514 8.363131482196927 -0.2378507836692079 8.149854355964495 -0.08696647781522904 8.131797445751307 -0.278727906986147 8.103162072266287 2.384782100741672 -5.082399466842356 2.245869039417281 -5.092664783458099 2.405431214540438 -5.023076447958078 1.475431700269857 3.243216126390903 1.323272414485122 3.234281508318627 1.454753953233677 3.309560615052864 -2.948035965690998 -8.846868381591575 -3.0924920136427 -8.882261956682696 -3.120792491386729 -8.831130965139387 -1.684593072115199 -0.625485532760107 -1.856654181201284 -0.6909631785153511 -1.858376963653818 -0.6192761170688331 -3.500683618123513 8.064882940053439 -3.525719444789873 8.011719666304421 -3.673050247634391 8.040856603974447 6.955644786533308 -4.747620095717669 6.81761152413446 -4.823559727099589 6.823492521271798 -4.762227160851196 5.315804866404559 3.314816904079104 5.436521058611903 3.330070906469733 5.323293291429909 3.24676187210137 -9.029669298622906 -6.244294517972814 -9.038908690770507 -6.2995864057601 -9.164955249885221 -6.264990066024588 -6.168696811301597 -0.7901060687980691 -6.02002624362285 -0.7298413413179093 -6.01737032917005 -0.801510764651425 -6.16716278695688 -0.792436855045515 -6.169715512734515 -0.7207820874583649 -6.018491961441754 -0.7321725211963476 -3.399712071176042 7.918858619107905 -3.271454875195229 7.889857442398896 -3.444340954945617 7.868263918577964 7.17276412510656 -4.850090869232007 7.156443691189562 -4.911518846998646 7.03582601934696 -4.927247750974769 5.507385981112565 3.267901631020001 5.52607702653324 3.199214961373389 5.393829927214853 3.184869575963909 -8.780046658568089 -6.508224285157986 -8.91452077770985 -6.531969444126121 -8.925059965119072 -6.472337947996555 -9.922286454553056 -0.9076299356093774 -9.791389594947722 -0.8525954506810992 -9.788224450349521 -0.9242350953684234 -6.370729092607941 7.23003170987289 -6.398506628403295 7.1724565055405 -6.523965758672695 7.215836227131745 10.75180389353382 -3.333018557809622 10.63561920186676 -3.416254407804016 10.63332092034774 -3.353525140831295 8.861705302952519 2.5712636309005 8.96922414584018 2.591466117381528 8.86529907640135 2.501077716399933 -12.10395207533582 -1.484660583795291 -12.20813095702387 -1.435903437710017 -12.0704415276492 -1.430533718292126 -12.05997770552258 -1.469396477281094 -12.19761975125221 -1.475471628350712 -12.17729656161256 -1.415727212050378 -9.936513878679747 -0.8868328377047231 -9.941031714176686 -0.8152174882354868 -9.805618656606432 -0.8317959425747208 -6.350003871811573 7.141549793466944 -6.240040498119259 7.101239011052403 -6.393473694344706 7.088424407995349 10.86068419727297 -3.300221888996849 10.85283791380745 -3.363278468703162 10.74560599350948 -3.384403612544038 9.119938093338734 2.439500074086822 9.133588361276352 2.369530245826872 9.014974260452364 2.349857548717207 -11.34376110431816 3.005857236292954 -11.44515614595066 3.060354317536095 -11.29002185008157 3.050999593139427 -12.25670379789215 -0.9574911001626694 -12.12589329598696 -0.9082455332686441 -12.12130202099527 -0.9798579923255602 -9.368746114816725 5.616394312373524 -9.231590812440061 5.616210041075912 -9.254590353091588 5.555676288744566 12.30270697279117 -0.732113087700826 12.42055141167946 -0.7052916998320605 12.31711944278753 -0.7944483502396152 11.70206617194429 0.7552865135110995 11.81185224631584 0.7810748303386988 11.6965028844164 0.6846329028614195 11.86898635413291 0.6722763530350459 11.87104552223794 0.6023187115769892 11.75269972310422 0.576533515244516 -11.39277574246463 3.269682934449164 -11.35175394290062 3.320805416786018 -11.2377670077281 3.25911837798393 -12.25821608909728 -0.954946958328069 -12.26218871199502 -0.8831442064389639 -12.12740511085889 -0.9057021744526329 -9.333951301784506 5.540363222778258 -9.23292955156092 5.485609947104076 -9.370084887883374 5.485777856076087 12.41957133901145 -0.6324110322915311 12.4263289770214 -0.695343898136144 12.31693024407344 -0.7221315217553045 12.48016826144953 -1.243753167471799 12.34429480398159 -1.343183971445835 12.35994238710784 -1.274298751779843 -9.012147787148093 5.423597290302976 -9.128325238038466 5.480464172696799 -8.952856952283797 5.462060318680178 -12.10973869944608 -0.8469973304044502 -11.96284437797668 -0.8036370920067902 -11.95954120685193 -0.8754608307159759 -11.59627193385536 3.202584298451698 -11.4634983598959 3.186144490736025 -11.47748464315625 3.125592926579735 11.39625966559125 1.193500293933925 11.37247793831953 1.253822805125405 11.50329825389713 1.28557192066328 11.43225516515759 1.35086468307398 11.3123654752576 1.319512047249267 11.41840644118666 1.412295310967418 12.46281297284593 -1.296848130028971 12.45721780484478 -1.364651136073806 12.32617515034154 -1.395628597027183 -8.996283755064813 5.7748702589918 -8.951666168716843 5.819630807753827 -8.821147903244956 5.754601321140991 -12.10471953603337 -0.8572592189670679 -12.10747121001836 -0.7855993752540388 -11.95782322851087 -0.8139031445575967 -11.66785457757601 2.988319697594459 -11.64107809660029 3.041236477413251 -11.53480109354982 2.973345703310676 9.425181677324584 2.212623701020339 9.400153583337911 2.271824722148035 9.54936163552995 2.307611764388428 11.2983943217303 -2.680294155958691 11.3167793430654 -2.613905556663458 11.45398999527297 -2.579713660922916 -6.609979410302995 6.555939244904025 -6.746869313450294 6.614845996702235 -6.554293726341641 6.592222662943728 -10.38122554630156 -0.745612633570873 -10.55178606745953 -0.7123105628725666 -10.38319056391241 -0.6739367703322631 -12.65732301542027 0.3863514875253744 -12.51549067466984 0.3546774704142022 -12.52221478068862 0.2979685253638622 -12.67911423682639 0.08600577763682274 -12.65807679297375 0.1339171034732307 -12.53628126281827 0.0572487219030826 9.470443121160606 2.347147236634991 9.333542009577753 2.312195929114243 9.457104877662456 2.407680697034803 11.38447033618222 -2.643335396576386 11.23490984120818 -2.678319849214413 11.3911261480459 -2.578336467346423 -6.587708889966835 6.935378655373325 -6.549315343445682 6.977721645207256 -6.395511963141001 6.910843381360522 -10.3827479645972 -0.6751291178904675 -10.55134356040148 -0.7135026595921468 -10.55329357905936 -0.6418351223251259 -12.54321914504149 -2.218647066826399 -12.3837820178911 -2.262221731699633 -12.38954532724651 -2.312707613476549 7.279475221502429 2.702294269062388 7.258202288185225 2.761407272932601 7.423784776443614 2.800175566198119 9.545432887655039 -3.368731989611771 9.560826135908778 -3.304656729018584 9.713126490345431 -3.2678948843385 -4.291305521677162 7.150081122961999 -4.445698079219057 7.211038928586153 -4.244354307513261 7.186700167875324 -8.389282297838969 -0.6214431932966419 -8.578232357696681 -0.5844146002130058 -8.390465289713081 -0.5497652814628296 -8.390767151360857 -0.5487576391848469 -8.578534171083605 -0.583407119780339 -8.579698435852466 -0.5117154431111796 -12.43537005342288 -2.541751964905157 -12.41345742118862 -2.500664840718393 -12.27413943234457 -2.581031021514565 7.312801710123706 2.859883214523761 7.160856647368313 2.822222522147044 7.304553402565933 2.920660158772516 9.633311601774835 -3.292529013834861 9.467408900084184 -3.330402415249695 9.635557604886044 -3.23003540851381 -4.278571776868531 7.539863273500846 -4.251362540932578 7.58283139246282 -4.077599424388679 7.513693674238044 -6.29335632842592 -0.5214520223250756 -6.492605814868599 -0.4822880308652268 -6.293803551570187 -0.4497553586592444 -11.64235809494519 -4.319024808846037 -11.46509382688498 -4.370591264740194 -11.47640619199758 -4.414250226930309 5.054816115548261 3.050139743656006 5.039950924368886 3.110133004083711 5.214708111952201 3.151620237850744 7.577664411258514 -3.751820865648637 7.586360150911093 -3.689677659961227 7.747067274487477 -3.651462485883278 -1.917097294782449 7.525945587053175 -2.080846122094815 7.588721053652636 -1.881633387588275 7.565010948047002 -1.921127258480661 7.896927179977313 -1.906710346070583 7.94261089448567 -1.722236273243561 7.871600580651387 -6.292566439838838 -0.4544225744093013 -6.4913688695174 -0.4869546174149007 -6.491854624348844 -0.4152691934974535 -11.30505290103937 -4.673726136626675 -11.27690437572564 -4.638869538785145 -11.1246780624565 -4.718118237880796 5.088688143707718 3.212501917741875 4.928388931467554 3.17324083859975 5.087701423255209 3.275283794461239 7.679669553937385 -3.66347746606246 7.50458309063117 -3.703017469134509 7.67431021886715 -3.60299871434307 0.6996151188652344 7.725383840287953 0.5367390253324689 7.789101629120368 0.7235584372046083 7.768521460429608 -4.0304199872564 -0.4525178958320339 -4.228998470122891 -0.4134755536381191 -4.030212752661576 -0.3808316388062449 -10.07876403360383 -6.0974257405 -9.888916304351143 -6.149508101492421 -9.909146381347247 -6.187613894822916 2.649759067226831 3.377763100537905 2.642120622030253 3.440261576999215 2.81657339720568 3.480132420853204 5.473761289466534 -4.084697247308223 5.473939406137715 -4.024071885298348 5.634230440431742 -3.985641585990616 5.548812606004653 -3.973459956805778 5.374060335745256 -4.013190989162217 5.534912246617022 -3.91452025849031 0.6931165104629631 8.085070269535777 0.6963369416731116 8.134635959577771 0.879665016491066 8.063021733454999 -4.037599337315415 -0.3530293567286862 -4.236384110376655 -0.3856768302963634 -4.236104917286607 -0.3136223144064921 -9.898232527648123 -6.183104866159721 -9.858918028540105 -6.153749138227793 -9.707133812399878 -6.232274538142961 2.691798244858481 3.526463766325558 2.531943503059076 3.486924844189506 2.698247554331419 3.589806674028978 3.082081187941093 -4.465409680165303 3.07377663751358 -4.405821239983794 3.22503623500764 -4.368513175742105 3.58578458189039 7.674340291589815 3.75321249608593 7.658674571967698 3.73754410839752 7.610599105556862 -1.494450632672106 -0.3824210123169178 -1.682781354543124 -0.3441496521552638 -1.49340372038536 -0.3103708684648485 -8.625414143109291 -7.245785380893075 -8.780660692114449 -7.153643309371925 -8.591113416765756 -7.212767687665056 -0.1087167556986124 3.683453210426043 -0.1098028950304958 3.746993228289769 0.05471275126923469 3.786623270121855 -0.08865781898262037 3.82850185208538 -0.2394578044990775 3.790059610255885 -0.07660648582358653 3.893793921393367 3.134864807710613 -4.349260287608189 2.969944694451996 -4.387780244431911 3.113309190185412 -4.291258829799207 3.695737596866848 7.88766705489126 3.691603185322147 7.943354964450992 3.863013199932308 7.871024852929904 -1.488054154630252 -0.3289354281000696 -1.677432443479252 -0.3627119402626852 -1.676464332671698 -0.2910243414762917 -8.327004756704078 -7.284071928224889 -8.275235605677009 -7.259079190765347 -8.134490188075422 -7.336931313708036 -3.446700910458202 3.849860546874504 -3.444540810896324 3.915815413352899 -3.296965250116518 3.952813658761782 0.1476508044566194 -4.935405220347271 0.1329601974875749 -4.876091169627454 0.2685892390158162 -4.841014956222171 6.962508546912947 6.842232653552305 7.109665008093557 6.835797973849037 7.096414218120602 6.780997767936586 1.691057387326594 -0.4026909594992563 1.521995388945184 -0.3681074705290025 1.692832050902842 -0.331012909742998 -6.841311603229078 -8.291401132961235 -6.973176407778905 -8.201224289159466 -6.79401525273343 -8.261420355118384 -6.380805753141919 -8.292039825095348 -6.319222226811345 -8.269338376016222 -6.198141689366169 -8.345324135262887 -3.483386627440059 3.993444753164489 -3.618579957335738 3.957342610922335 -3.469685600219242 4.061048062723969 0.1734090589833454 -4.821658883697502 0.02545944937439482 -4.857715828022043 0.1468645784761846 -4.763697051195838 7.008004022004116 7.015533252580459 7.003667023039261 7.077145827039529 7.155130362017395 7.008685579427924 1.696837374782633 -0.3424533629032008 1.526000253588872 -0.3795466148189169 1.527735688721861 -0.3078637643182571 -4.609566789263434 -9.205519494100448 -4.712196887254752 -9.1166309698513 -4.552586593640797 -9.176311384342677 -7.335926336140776 3.501344658873248 -7.336090136062639 3.569801646769853 -7.207424733829447 3.602826827519697 -3.604855654207896 -5.30422825132537 -3.621458193344325 -5.244019973485324 -3.503427236732714 -5.212022770707214 10.20890948835965 4.912754188318949 10.34385705017712 4.917183668851282 10.32463024713863 4.857359080885999 5.617079606326176 -0.4087090388779297 5.614529778436362 -0.4803768235417171 5.466665880062625 -0.4504418947803532 5.465513998147964 -0.370397045064424 5.61334104460501 -0.400328856764548 5.462927715328628 -0.442062598113118 -3.959927008171782 -9.166617350452173 -3.892221284138974 -9.143924259315345 -3.796210649422447 -9.218964019946055 -7.518705425007282 3.56318260729297 -7.391316800806528 3.66552945671989 -7.400899399851348 3.595688743993093 -3.637354251897245 -5.171346676645626 -3.766315528500788 -5.203961660208352 -3.664166289010515 -5.112249941182268 10.18459634480319 5.068905936576128 10.18817943759912 5.134853659211896 10.31952839317151 5.073618818198497 9.801686196180491 -0.5237914814620348 9.798433179787889 -0.5954402230658886 9.664277113009604 -0.5710552978815334 -1.567008929643396 -9.871758577509121 -1.640781020201906 -9.78296132191822 -1.505544608527762 -9.839916934999756 -10.92318158987221 2.128753694533634 -10.93182117799355 2.198670496554331 -10.8157675181759 2.226307235163676 -8.046811891065453 -4.868776691289468 -8.058273959862701 -4.806679999265388 -7.95429548563077 -4.778681563323726 12.27753300923371 2.043204884569114 12.41587332788536 2.059088809975417 12.38533685313047 1.997607191448191 12.25374165118651 2.273918551406887 12.37622299280005 2.224433316395436 12.23807710365099 2.207534607744957 9.639405531462138 -0.443234258880393 9.770669066873262 -0.4675270877429548 9.633263139090937 -0.5147965807838888 -0.8068622647747287 -9.751157414050727 -0.7390683711478735 -9.72443536438672 -0.6673692466574432 -9.801359563882809 -11.02593410945303 2.116445005509541 -10.91949300436063 2.214656301674535 -10.92171054612782 2.143873712930612 -8.354324784230016 -4.627952817242197 -8.259931023427683 -4.539070976883634 -8.237237441851384 -4.599896794204487 12.79266206233665 -0.9385981505235493 12.75156240082418 -0.9978715662618307 12.640751986495 -0.9642003636433475 12.44014876984172 -0.6018753560009648 12.43391497842397 -0.673432786761746 12.30165062889963 -0.655073567767769 3.433798058562158 -9.646757419633014 3.366576847926532 -9.552636807777409 3.487265769094727 -9.604459259227655 -12.67366436821154 0.06327042355108598 -12.69054057867328 0.1328187313951262 -12.57355088575061 0.1541380154524462 -11.89780025416519 -2.671329031703041 -11.89850957366648 -2.607939973174148 -11.78930411163973 -2.58506654452211 -11.86679791899832 -2.720740160880428 -11.75871842641653 -2.634154602720348 -11.75160264488553 -2.697926282921187 12.67985626588935 -0.7454552885333471 12.80633042858929 -0.78101058651027 12.65491783461317 -0.808375809207925 12.29370488540646 -0.5657502789823955 12.42892083029588 -0.5842030792690948 12.29042011780475 -0.6373971477570675 4.666369350262223 -9.233255228807497 4.539976545409513 -9.19067103849998 4.598673959890117 -9.155226877193503 -12.60671987881273 -0.04008266309577988 -12.71631214269975 -0.06178105213171261 -12.61798780830803 0.03028756614059104 -12.64775302197637 -0.1716394666262745 -12.63376577286065 -0.1085752984250314 -12.51563622508443 -0.09134116209380108 11.8718498564201 -3.236091347128322 11.82706360313676 -3.291792186763279 11.69852394158044 -3.268560825178234 12.50858711201633 -0.5112305291553186 12.50586242915174 -0.5828919323844278 12.35772964751408 -0.5702459644825559 10.50172401220205 -5.605301514386396 10.47832242189326 -5.660524211899692 10.37256237910686 -5.577917520336098 -12.26057633247983 -1.657196858345917 -12.28662152440635 -1.58929437583228 -12.15615173504133 -1.574132887186072 -12.15411772740797 -1.618299883977775 -12.2725565886736 -1.63416595644146 -12.16795183082427 -1.551242387073698 -12.61131799242071 -0.02015374192480997 -12.47725567640437 0.05812361788573152 -12.48101455674324 -0.004117269420730918 11.81173465244481 -3.125727746290349 11.95780249175681 -3.148876677813699 11.78516755658687 -3.183549476282655 12.36031281982692 -0.4983958535245435 12.50847923160441 -0.5110484142038515 12.35762184619329 -0.5700639746462372 10.90620621368105 -5.09363532399637 10.77522502084391 -5.072258795960493 10.8077489459603 -5.024605676155583 -10.68864845065998 -2.55455621740603 -10.71313306542342 -2.489409085121871 -10.56367818363771 -2.479478575841482 -11.22977363661436 1.632251312131652 -11.21132626074843 1.692848965063889 -11.07409588962486 1.704445265413141 10.28908899766099 -4.858082536205109 10.24732473618666 -4.910050967066953 10.09844449383102 -4.895012793962303 10.97958363553207 -0.4640685802303887 10.81015082367626 -0.4564087800025247 10.98149539854754 -0.3923849763066227 12.32997748267721 1.719906435123948 12.34475518666718 1.667083206994886 12.18421600790133 1.710328105714628 12.36982989793857 1.508397449117879 12.22387765480027 1.500827385925978 12.22911457727385 1.549238358852193 -10.49704810409977 -2.615522139965255 -10.63436112072196 -2.626496325150515 -10.50970045751017 -2.551100829927615 -11.03538538335118 1.627905259033432 -11.18489774124952 1.617444806016395 -11.02886196560464 1.689158837988261 10.25924858758659 -4.842472303442993 10.4281027881423 -4.855881371326672 10.23822656986093 -4.895184834627975 10.98192110993328 -0.3931097750537854 10.81057636536067 -0.4571332976911415 10.81251018073159 -0.3854535266787559 9.730367119152808 5.767068993737939 9.754244433565511 5.722260792112578 9.567091049182192 5.738429733970274 -8.677996020170248 -3.048205804642975 -8.697847313106026 -2.984918359828509 -8.531714985668323 -2.978669862747076 -9.089362884542329 2.464115709916181 -9.072850819948432 2.524195731350672 -8.920294631802884 2.532087635379381 8.361553493798574 -6.033342915132951 8.328336447243949 -6.082018146740463 8.162411901259357 -6.072556959675273 8.892462674804984 -0.3668520613015502 8.704221058912331 -0.3629203536274807 8.89363833995432 -0.295162114521727 8.89497573996357 -0.2975159917516584 8.705558006249373 -0.3652734477418679 8.70676284588583 -0.2936022161711446 10.02759348426556 5.363335444688016 9.863049882418745 5.339606479460216 9.863221256372452 5.383311392066778 -8.455858395384974 -3.135704029654332 -8.608441279194427 -3.143269815162752 -8.46241171014479 -3.073407550625284 -8.863331305141637 2.415851805606997 -9.029484091262898 2.409324191094267 -8.860142972476787 2.476874456013834 8.366906520559503 -6.099632004239871 8.555016693227945 -6.10641963081676 8.356756027588144 -6.148305043552335 6.610614497481498 -0.3034504705566268 6.411593821678057 -0.3016433777460381 6.611118434348282 -0.2317740684684547 6.960088796820089 7.439059513171552 6.977086288713464 7.397450087739094 6.778157825414796 7.403377882836645 -6.450722167386379 -3.409408375563931 -6.46311260125781 -3.347663566968103 -6.287376973874669 -3.343401386641197 -6.761471839359336 2.888819790438602 -6.750762285145275 2.949310092292259 -6.589391875422425 2.955214371119521 6.192189404311118 -6.986634573495285 6.171206558458689 -7.033114258629384 5.995623802845925 -7.026531760350306 6.232673197980219 -7.109532399189411 6.431665779435432 -7.112723865213545 6.236069304306408 -7.155467054080994 6.613110217701095 -0.2353333759150206 6.413584994721523 -0.3052016066294995 6.414052518634684 -0.2335142881420584 7.339486247303872 7.068395044593074 7.156050049383133 7.037852634154685 7.164239462889271 7.079546035244175 -6.21273358368919 -3.516292226979891 -6.374114519069684 -3.522015703946565 -6.210986519573698 -3.455677150877848 -6.531647199667637 2.830929523977672 -6.707340474893881 2.82653589756132 -6.535073186614172 2.892629180248644</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2670\" source=\"#ID1701\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1697\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1695\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1696\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"890\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1697\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1698\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 9 8 1 9 0 10 12 11 14 12 15 13 16 14 6 15 2 16 20 17 9 18 8 19 22 20 1 21 24 22 8 23 26 24 27 25 15 26 30 27 1 28 12 29 14 30 16 31 32 32 26 33 15 34 14 35 6 36 20 37 34 38 36 39 9 40 22 41 38 42 39 43 40 44 39 45 44 46 45 47 24 48 1 49 30 50 48 51 27 52 26 53 30 54 12 55 50 56 52 57 53 58 54 59 16 60 58 61 32 62 53 63 60 64 61 65 34 66 20 67 64 68 36 69 22 70 66 71 68 72 38 73 40 74 39 75 45 76 40 77 44 78 52 79 45 80 70 81 24 82 30 83 61 84 72 85 73 86 48 87 76 88 27 89 78 90 30 91 50 92 52 93 54 94 80 95 52 96 60 97 53 98 32 99 58 100 82 101 60 102 72 103 61 104 34 105 64 106 84 107 64 108 36 109 66 110 86 111 38 112 68 113 88 114 89 115 90 116 80 117 94 118 88 119 44 120 96 121 52 122 70 123 30 124 78 125 72 126 98 127 73 128 100 129 76 130 48 131 78 132 50 133 102 134 80 135 54 136 94 137 96 138 60 139 52 140 58 141 104 142 82 143 106 144 72 145 60 146 84 147 64 148 108 149 66 150 110 151 64 152 112 153 86 154 68 155 90 156 89 157 114 158 88 159 94 160 89 161 116 162 70 163 78 164 118 165 98 166 72 167 73 168 98 169 120 170 100 171 122 172 76 173 124 174 78 175 102 176 96 177 106 178 60 179 104 180 126 181 82 182 106 183 118 184 72 185 84 186 108 187 128 188 110 189 108 190 64 191 112 192 130 193 86 194 90 195 114 196 132 197 134 198 135 199 126 200 116 201 78 202 124 203 118 204 138 205 98 206 98 207 140 208 120 209 142 210 122 211 100 212 124 213 102 214 144 215 104 216 134 217 126 218 146 219 116 220 124 221 108 222 148 223 128 224 110 225 150 226 108 227 152 228 130 229 112 230 154 231 132 232 114 233 134 234 156 235 135 236 158 237 146 238 159 239 138 240 140 241 98 242 120 243 140 244 162 245 142 246 164 247 122 248 159 249 124 250 144 251 146 252 124 253 159 254 148 255 166 256 128 257 150 258 148 259 108 260 152 261 168 262 130 263 170 264 132 265 154 266 156 267 172 268 135 269 158 270 159 271 174 272 176 273 140 274 138 275 140 276 178 277 162 278 142 279 180 280 164 281 159 282 144 283 182 284 148 285 184 286 166 287 150 288 186 289 148 290 188 291 168 292 152 293 190 294 170 295 154 296 156 297 192 298 172 299 174 300 159 301 182 302 194 303 158 304 174 305 176 306 178 307 140 308 162 309 178 310 196 311 180 312 198 313 164 314 184 315 200 316 166 317 186 318 184 319 148 320 188 321 202 322 168 323 188 324 170 325 190 326 192 327 204 328 172 329 174 330 182 331 206 332 194 333 174 334 208 335 210 336 178 337 176 338 178 339 212 340 196 341 180 342 214 343 198 344 184 345 216 346 200 347 186 348 218 349 184 350 220 351 202 352 188 353 222 354 188 355 190 356 192 357 224 358 204 359 214 360 226 361 198 362 208 363 174 364 206 365 228 366 194 367 208 368 210 369 212 370 178 371 196 372 212 373 230 374 216 375 232 376 200 377 218 378 216 379 184 380 220 381 234 382 202 383 220 384 188 385 222 386 224 387 236 388 204 389 214 390 238 391 226 392 208 393 206 394 240 395 228 396 208 397 242 398 244 399 212 400 210 401 230 402 212 403 246 404 216 405 248 406 232 407 218 408 250 409 216 410 220 411 252 412 234 413 254 414 220 415 222 416 256 417 236 418 224 419 258 420 230 421 246 422 238 423 260 424 226 425 208 426 240 427 242 428 262 429 228 430 242 431 244 432 264 433 212 434 248 435 266 436 232 437 250 438 248 439 216 440 252 441 268 442 234 443 252 444 220 445 254 446 256 447 270 448 236 449 258 450 246 451 272 452 238 453 274 454 260 455 242 456 240 457 276 458 262 459 242 460 278 461 280 462 264 463 244 464 248 465 282 466 266 467 250 468 284 469 248 470 252 471 286 472 268 473 288 474 252 475 254 476 290 477 270 478 256 479 272 480 264 481 280 482 292 483 258 484 272 485 274 486 294 487 260 488 242 489 276 490 296 491 298 492 262 493 278 494 282 495 300 496 266 497 284 498 282 499 248 500 286 501 302 502 268 503 286 504 252 505 288 506 290 507 304 508 270 509 272 510 280 511 306 512 292 513 272 514 308 515 274 516 310 517 294 518 296 519 276 520 312 521 298 522 278 523 314 524 282 525 316 526 300 527 284 528 318 529 282 530 286 531 320 532 302 533 322 534 286 535 288 536 324 537 304 538 290 539 298 540 314 541 326 542 308 543 272 544 306 545 328 546 292 547 308 548 294 549 310 550 330 551 314 552 296 553 312 554 316 555 332 556 300 557 318 558 316 559 282 560 320 561 334 562 302 563 320 564 286 565 322 566 324 567 336 568 304 569 326 570 314 571 338 572 308 573 306 574 340 575 328 576 308 577 342 578 330 579 310 580 344 581 314 582 312 583 346 584 316 585 348 586 332 587 350 588 316 589 318 590 320 591 352 592 334 593 322 594 354 595 320 596 356 597 336 598 324 599 338 600 314 601 346 602 326 603 338 604 358 605 342 606 308 607 340 608 360 609 328 610 342 611 330 612 344 613 362 614 348 615 364 616 332 617 350 618 366 619 316 620 352 621 368 622 334 623 354 624 352 625 320 626 370 627 336 628 356 629 338 630 346 631 372 632 358 633 338 634 374 635 342 636 340 637 376 638 342 639 378 640 360 641 362 642 344 643 380 644 348 645 382 646 364 647 384 648 366 649 350 650 352 651 386 652 368 653 354 654 388 655 352 656 390 657 370 658 356 659 362 660 380 661 392 662 374 663 338 664 372 665 394 666 358 667 374 668 378 669 342 670 376 671 360 672 378 673 396 674 382 675 398 676 364 677 384 678 400 679 366 680 386 681 402 682 368 683 388 684 386 685 352 686 404 687 370 688 390 689 392 690 380 691 406 692 374 693 372 694 408 695 394 696 374 697 410 698 378 699 376 700 412 701 378 702 414 703 396 704 416 705 398 706 382 707 384 708 418 709 400 710 386 711 420 712 402 713 388 714 422 715 386 716 404 717 390 718 424 719 396 720 414 721 426 722 392 723 406 724 428 725 410 726 374 727 408 728 430 729 394 730 410 731 414 732 378 733 412 734 416 735 432 736 398 737 418 738 416 739 400 740 402 741 420 742 434 743 422 744 420 745 386 746 436 747 404 748 424 749 414 750 438 751 426 752 428 753 406 754 440 755 410 756 408 757 442 758 430 759 410 760 444 761 414 762 412 763 446 764 448 765 432 766 416 767 418 768 450 769 416 770 434 771 420 772 452 773 422 774 454 775 420 776 436 777 424 778 456 779 438 780 414 781 446 782 426 783 438 784 458 785 428 786 440 787 460 788 444 789 410 790 442 791 462 792 430 793 444 794 448 795 464 796 432 797 450 798 448 799 416 800 434 801 452 802 466 803 454 804 452 805 420 806 468 807 436 808 456 809 438 810 446 811 470 812 438 813 472 814 458 815 460 816 440 817 474 818 444 819 442 820 476 821 462 822 444 823 478 824 448 825 480 826 464 827 450 828 482 829 448 830 466 831 452 832 484 833 486 834 452 835 454 836 468 837 456 838 488 839 490 840 462 841 478 842 438 843 470 844 472 845 458 846 472 847 492 848 494 849 460 850 474 851 478 852 444 853 476 854 480 855 496 856 464 857 482 858 480 859 448 860 466 861 484 862 498 863 484 864 452 865 486 866 500 867 468 868 488 869 490 870 478 871 502 872 472 873 470 874 504 875 472 876 506 877 492 878 494 879 474 880 508 881 478 882 476 883 510 884 480 885 512 886 496 887 482 888 514 889 480 890 498 891 484 892 516 893 518 894 484 895 486 896 500 897 488 898 520 899 502 900 478 901 510 902 522 903 490 904 502 905 472 906 504 907 524 908 492 909 506 910 526 911 528 912 494 913 508 914 512 915 530 916 496 917 514 918 512 919 480 920 498 921 516 922 532 923 516 924 484 925 518 926 534 927 500 928 520 929 502 930 510 931 536 932 522 933 502 934 538 935 524 936 504 937 540 938 506 939 542 940 526 941 528 942 508 943 544 944 512 945 546 946 530 947 514 948 548 949 512 950 532 951 516 952 550 953 552 954 516 955 518 956 534 957 520 958 554 959 556 960 528 961 544 962 538 963 502 964 536 965 558 966 522 967 538 968 524 969 540 970 560 971 526 972 542 973 562 974 546 975 564 976 530 977 548 978 546 979 512 980 566 981 532 982 550 983 550 984 516 985 552 986 534 987 554 988 568 989 556 990 544 991 570 992 572 993 538 994 536 995 558 996 538 997 574 998 560 999 540 1000 576 1001 578 1002 562 1003 542 1004 546 1005 580 1006 564 1007 548 1008 582 1009 546 1010 566 1011 550 1012 584 1013 586 1014 550 1015 552 1016 568 1017 554 1018 588 1019 578 1020 590 1021 562 1022 592 1023 556 1024 570 1025 572 1026 574 1027 538 1028 594 1029 558 1030 574 1031 560 1032 576 1033 596 1034 580 1035 598 1036 564 1037 582 1038 580 1039 546 1040 600 1041 566 1042 584 1043 584 1044 550 1045 586 1046 568 1047 588 1048 602 1049 604 1050 590 1051 578 1052 592 1053 570 1054 606 1055 608 1056 574 1057 572 1058 574 1059 610 1060 594 1061 576 1062 612 1063 596 1064 580 1065 614 1066 598 1067 582 1068 616 1069 580 1070 600 1071 584 1072 618 1073 620 1074 584 1075 586 1076 602 1077 588 1078 622 1079 596 1080 612 1081 624 1082 604 1083 626 1084 590 1085 628 1086 592 1087 606 1088 608 1089 630 1090 574 1091 610 1092 632 1093 594 1094 614 1095 634 1096 598 1097 616 1098 614 1099 580 1100 636 1101 600 1102 618 1103 618 1104 584 1105 620 1106 602 1107 622 1108 638 1109 612 1110 640 1111 624 1112 642 1113 626 1114 604 1115 644 1116 628 1117 606 1118 608 1119 646 1120 630 1121 610 1122 648 1123 632 1124 614 1125 650 1126 634 1127 614 1128 616 1129 652 1130 636 1131 618 1132 654 1133 656 1134 618 1135 620 1136 638 1137 622 1138 658 1139 648 1140 660 1141 632 1142 640 1143 662 1144 624 1145 642 1146 664 1147 626 1148 666 1149 628 1150 644 1151 646 1152 668 1153 630 1154 650 1155 670 1156 634 1157 614 1158 652 1159 650 1160 672 1161 636 1162 654 1163 674 1164 618 1165 656 1166 638 1167 658 1168 676 1169 678 1170 660 1171 648 1172 640 1173 680 1174 662 1175 682 1176 664 1177 642 1178 684 1179 666 1180 644 1181 646 1182 686 1183 668 1184 670 1185 650 1186 688 1187 650 1188 652 1189 690 1190 672 1191 654 1192 692 1193 674 1194 656 1195 694 1196 658 1197 696 1198 676 1199 686 1200 678 1201 668 1202 678 1203 698 1204 660 1205 680 1206 682 1207 662 1208 682 1209 700 1210 664 1211 684 1212 702 1213 666 1214 704 1215 670 1216 688 1217 650 1218 690 1219 706 1220 708 1221 672 1222 692 1223 674 1224 694 1225 710 1226 676 1227 696 1228 712 1229 678 1230 686 1231 714 1232 698 1233 678 1234 716 1235 680 1236 718 1237 682 1238 682 1239 720 1240 700 1241 722 1242 702 1243 684 1244 704 1245 688 1246 724 1247 706 1248 690 1249 726 1250 708 1251 692 1252 728 1253 710 1254 694 1255 730 1256 696 1257 732 1258 712 1259 722 1260 734 1261 702 1262 716 1263 678 1264 714 1265 736 1266 698 1267 716 1268 718 1269 720 1270 682 1271 700 1272 720 1273 738 1274 704 1275 724 1276 740 1277 742 1278 706 1279 726 1280 744 1281 708 1282 728 1283 710 1284 730 1285 746 1286 712 1287 732 1288 748 1289 750 1290 734 1291 722 1292 716 1293 714 1294 752 1295 736 1296 716 1297 754 1298 718 1299 756 1300 720 1301 720 1302 758 1303 738 1304 740 1305 724 1306 760 1307 742 1308 726 1309 762 1310 764 1311 744 1312 728 1313 746 1314 730 1315 766 1316 732 1317 768 1318 748 1319 738 1320 758 1321 770 1322 750 1323 772 1324 734 1325 754 1326 716 1327 752 1328 774 1329 736 1330 754 1331 756 1332 758 1333 720 1334 740 1335 760 1336 776 1337 760 1338 742 1339 762 1340 778 1341 744 1342 764 1343 746 1344 766 1345 780 1346 768 1347 782 1348 748 1349 758 1350 784 1351 770 1352 786 1353 772 1354 750 1355 754 1356 752 1357 788 1358 774 1359 754 1360 790 1361 756 1362 792 1363 758 1364 776 1365 760 1366 794 1367 762 1368 796 1369 760 1370 798 1371 778 1372 764 1373 800 1374 780 1375 766 1376 768 1377 802 1378 782 1379 792 1380 784 1381 758 1382 770 1383 784 1384 804 1385 786 1386 806 1387 772 1388 790 1389 754 1390 788 1391 808 1392 774 1393 790 1394 776 1395 794 1396 810 1397 796 1398 794 1399 760 1400 798 1401 812 1402 778 1403 814 1404 780 1405 800 1406 802 1407 816 1408 782 1409 792 1410 818 1411 784 1412 784 1413 820 1414 804 1415 822 1416 806 1417 786 1418 790 1419 788 1420 824 1421 808 1422 790 1423 826 1424 794 1425 828 1426 810 1427 796 1428 830 1429 794 1430 832 1431 812 1432 798 1433 834 1434 814 1435 800 1436 802 1437 836 1438 816 1439 838 1440 808 1441 826 1442 818 1443 820 1444 784 1445 804 1446 820 1447 840 1448 822 1449 842 1450 806 1451 826 1452 790 1453 824 1454 828 1455 844 1456 810 1457 830 1458 828 1459 794 1460 832 1461 846 1462 812 1463 848 1464 814 1465 834 1466 836 1467 850 1468 816 1469 838 1470 826 1471 852 1472 854 1473 820 1474 818 1475 820 1476 856 1477 840 1478 822 1479 858 1480 842 1481 826 1482 824 1483 860 1484 828 1485 862 1486 844 1487 830 1488 864 1489 828 1490 866 1491 846 1492 832 1493 868 1494 848 1495 834 1496 836 1497 870 1498 850 1499 852 1500 826 1501 860 1502 872 1503 838 1504 852 1505 854 1506 856 1507 820 1508 840 1509 856 1510 874 1511 858 1512 876 1513 842 1514 862 1515 878 1516 844 1517 864 1518 862 1519 828 1520 866 1521 880 1522 846 1523 866 1524 848 1525 868 1526 870 1527 882 1528 850 1529 852 1530 860 1531 884 1532 872 1533 852 1534 886 1535 888 1536 856 1537 854 1538 856 1539 890 1540 874 1541 858 1542 892 1543 876 1544 862 1545 894 1546 878 1547 864 1548 896 1549 862 1550 898 1551 880 1552 866 1553 900 1554 866 1555 868 1556 870 1557 902 1558 882 1559 892 1560 904 1561 876 1562 886 1563 852 1564 884 1565 906 1566 872 1567 886 1568 888 1569 890 1570 856 1571 874 1572 890 1573 908 1574 894 1575 910 1576 878 1577 896 1578 894 1579 862 1580 898 1581 912 1582 880 1583 898 1584 866 1585 900 1586 902 1587 914 1588 882 1589 892 1590 916 1591 904 1592 886 1593 884 1594 918 1595 906 1596 886 1597 920 1598 922 1599 890 1600 888 1601 908 1602 890 1603 924 1604 894 1605 926 1606 910 1607 896 1608 928 1609 894 1610 898 1611 930 1612 912 1613 932 1614 898 1615 900 1616 934 1617 914 1618 902 1619 936 1620 908 1621 924 1622 916 1623 938 1624 904 1625 886 1626 918 1627 920 1628 940 1629 906 1630 920 1631 922 1632 942 1633 890 1634 926 1635 944 1636 910 1637 928 1638 926 1639 894 1640 930 1641 946 1642 912 1643 930 1644 898 1645 932 1646 934 1647 948 1648 914 1649 936 1650 924 1651 950 1652 916 1653 952 1654 938 1655 920 1656 918 1657 954 1658 940 1659 920 1660 956 1661 958 1662 942 1663 922 1664 926 1665 960 1666 944 1667 928 1668 962 1669 926 1670 930 1671 964 1672 946 1673 966 1674 930 1675 932 1676 968 1677 948 1678 934 1679 950 1680 942 1681 958 1682 970 1683 936 1684 950 1685 952 1686 972 1687 938 1688 920 1689 954 1690 974 1691 940 1692 956 1693 976 1694 960 1695 978 1696 944 1697 962 1698 960 1699 926 1700 964 1701 980 1702 946 1703 964 1704 930 1705 966 1706 968 1707 982 1708 948 1709 950 1710 958 1711 984 1712 970 1713 950 1714 986 1715 952 1716 988 1717 972 1718 974 1719 954 1720 990 1721 976 1722 956 1723 992 1724 960 1725 994 1726 978 1727 962 1728 996 1729 960 1730 964 1731 998 1732 980 1733 1000 1734 964 1735 966 1736 1002 1737 982 1738 968 1739 976 1740 992 1741 1004 1742 986 1743 950 1744 984 1745 1006 1746 970 1747 986 1748 972 1749 988 1750 1008 1751 992 1752 974 1753 990 1754 994 1755 1010 1756 978 1757 996 1758 994 1759 960 1760 998 1761 1012 1762 980 1763 998 1764 964 1765 1000 1766 1002 1767 1014 1768 982 1769 1004 1770 992 1771 1016 1772 986 1773 984 1774 1018 1775 1006 1776 986 1777 1020 1778 1008 1779 988 1780 1022 1781 992 1782 990 1783 1024 1784 994 1785 1026 1786 1010 1787 1028 1788 994 1789 996 1790 998 1791 1030 1792 1012 1793 1000 1794 1032 1795 998 1796 1034 1797 1014 1798 1002 1799 1016 1800 992 1801 1024 1802 1004 1803 1016 1804 1036 1805 1020 1806 986 1807 1018 1808 1038 1809 1006 1810 1020 1811 1008 1812 1022 1813 1040 1814 1026 1815 1042 1816 1010 1817 1028 1818 1044 1819 994 1820 1030 1821 1046 1822 1012 1823 1032 1824 1030 1825 998 1826 1048 1827 1014 1828 1034 1829 1016 1830 1024 1831 1050 1832 1036 1833 1016 1834 1052 1835 1020 1836 1018 1837 1054 1838 1020 1839 1056 1840 1038 1841 1040 1842 1022 1843 1058 1844 1026 1845 1060 1846 1042 1847 1062 1848 1044 1849 1028 1850 1030 1851 1064 1852 1046 1853 1032 1854 1066 1855 1030 1856 1068 1857 1048 1858 1034 1859 1040 1860 1058 1861 1070 1862 1052 1863 1016 1864 1050 1865 1072 1866 1036 1867 1052 1868 1056 1869 1020 1870 1054 1871 1038 1872 1056 1873 1074 1874 1060 1875 1076 1876 1042 1877 1062 1878 1078 1879 1044 1880 1064 1881 1080 1882 1046 1883 1066 1884 1064 1885 1030 1886 1082 1887 1048 1888 1068 1889 1070 1890 1058 1891 1084 1892 1052 1893 1050 1894 1086 1895 1072 1896 1052 1897 1088 1898 1056 1899 1054 1900 1090 1901 1056 1902 1092 1903 1074 1904 1094 1905 1076 1906 1060 1907 1062 1908 1096 1909 1078 1910 1064 1911 1098 1912 1080 1913 1066 1914 1100 1915 1064 1916 1082 1917 1068 1918 1102 1919 1074 1920 1092 1921 1104 1922 1070 1923 1084 1924 1106 1925 1088 1926 1052 1927 1086 1928 1108 1929 1072 1930 1088 1931 1092 1932 1056 1933 1090 1934 1094 1935 1110 1936 1076 1937 1096 1938 1094 1939 1078 1940 1080 1941 1098 1942 1112 1943 1100 1944 1114 1945 1064 1946 1116 1947 1082 1948 1102 1949 1092 1950 1118 1951 1104 1952 1106 1953 1084 1954 1120 1955 1088 1956 1086 1957 1122 1958 1108 1959 1088 1960 1124 1961 1092 1962 1090 1963 1126 1964 1128 1965 1110 1966 1094 1967 1096 1968 1130 1969 1094 1970 1112 1971 1098 1972 1132 1973 1134 1974 1114 1975 1100 1976 1116 1977 1102 1978 1136 1979 1118 1980 1092 1981 1126 1982 1104 1983 1118 1984 1138 1985 1106 1986 1120 1987 1140 1988 1124 1989 1088 1990 1122 1991 1142 1992 1108 1993 1124 1994 1128 1995 1144 1996 1110 1997 1130 1998 1128 1999 1094 2000 1112 2001 1132 2002 1146 2003 1132 2004 1114 2005 1134 2006 1148 2007 1116 2008 1136 2009 1118 2010 1126 2011 1150 2012 1118 2013 1152 2014 1138 2015 1140 2016 1120 2017 1154 2018 1124 2019 1122 2020 1156 2021 1142 2022 1124 2023 1158 2024 1128 2025 1160 2026 1144 2027 1130 2028 1162 2029 1128 2030 1146 2031 1132 2032 1164 2033 1166 2034 1132 2035 1134 2036 1148 2037 1136 2038 1168 2039 1170 2040 1142 2041 1158 2042 1118 2043 1150 2044 1152 2045 1138 2046 1152 2047 1172 2048 1174 2049 1140 2050 1154 2051 1158 2052 1124 2053 1156 2054 1160 2055 1176 2056 1144 2057 1162 2058 1160 2059 1128 2060 1146 2061 1164 2062 1178 2063 1164 2064 1132 2065 1166 2066 1180 2067 1148 2068 1168 2069 1170 2070 1158 2071 1182 2072 1152 2073 1150 2074 1184 2075 1152 2076 1186 2077 1172 2078 1174 2079 1154 2080 1188 2081 1158 2082 1156 2083 1190 2084 1160 2085 1192 2086 1176 2087 1162 2088 1194 2089 1160 2090 1178 2091 1164 2092 1196 2093 1198 2094 1164 2095 1166 2096 1180 2097 1168 2098 1200 2099 1182 2100 1158 2101 1190 2102 1202 2103 1170 2104 1182 2105 1152 2106 1184 2107 1204 2108 1172 2109 1186 2110 1206 2111 1208 2112 1174 2113 1188 2114 1192 2115 1210 2116 1176 2117 1194 2118 1192 2119 1160 2120 1178 2121 1196 2122 1212 2123 1196 2124 1164 2125 1198 2126 1214 2127 1180 2128 1200 2129 1182 2130 1190 2131 1216 2132 1202 2133 1182 2134 1218 2135 1204 2136 1184 2137 1220 2138 1186 2139 1222 2140 1206 2141 1208 2142 1188 2143 1224 2144 1226 2145 1208 2146 1224 2147 1218 2148 1182 2149 1216 2150 1228 2151 1202 2152 1218 2153 1204 2154 1220 2155 1230 2156 1206 2157 1222 2158 1232 2159 1226 2160 1224 2161 1234 2162 1236 2163 1218 2164 1216 2165 1218 2166 1238 2167 1228 2168 1230 2169 1220 2170 1240 2171 1242 2172 1232 2173 1222 2174 1242 2175 1244 2176 1232 2177 1246 2178 1226 2179 1234 2180 1236 2181 1238 2182 1218 2183 1238 2184 1248 2185 1228 2186 1230 2187 1240 2188 1250 2189 1252 2190 1244 2191 1242 2192 1246 2193 1234 2194 1254 2195 1256 2196 1238 2197 1236 2198 1238 2199 1258 2200 1248 2201 1240 2202 1260 2203 1250 2204 1250 2205 1260 2206 1262 2207 1252 2208 1264 2209 1244 2210 1266 2211 1246 2212 1254 2213 1256 2214 1268 2215 1238 2216 1258 2217 1270 2218 1248 2219 1260 2220 1272 2221 1262 2222 1274 2223 1264 2224 1252 2225 1276 2226 1266 2227 1254 2228 1256 2229 1278 2230 1268 2231 1258 2232 1280 2233 1270 2234 1280 2235 1282 2236 1270 2237 1272 2238 1284 2239 1262 2240 1274 2241 1286 2242 1264 2243 1288 2244 1266 2245 1276 2246 1278 2247 1280 2248 1268 2249 1290 2250 1282 2251 1280 2252 1272 2253 1292 2254 1284 2255 1294 2256 1286 2257 1274 2258 1296 2259 1288 2260 1276 2261 1280 2262 1278 2263 1298 2264 1290 2265 1280 2266 1298 2267 1290 2268 1300 2269 1282 2270 1292 2271 1294 2272 1284 2273 1294 2274 1302 2275 1286 2276 1296 2277 1304 2278 1288 2279 1290 2280 1298 2281 1306 2282 1300 2283 1290 2284 1308 2285 1292 2286 1310 2287 1294 2288 1294 2289 1312 2290 1302 2291 1314 2292 1304 2293 1296 2294 1314 2295 1316 2296 1304 2297 1308 2298 1290 2299 1306 2300 1318 2301 1300 2302 1308 2303 1310 2304 1312 2305 1294 2306 1302 2307 1312 2308 1320 2309 1322 2310 1316 2311 1314 2312 1308 2313 1306 2314 1324 2315 1318 2316 1308 2317 1326 2318 1310 2319 1328 2320 1312 2321 1312 2322 1330 2323 1320 2324 1320 2325 1330 2326 1332 2327 1322 2328 1334 2329 1316 2330 1326 2331 1308 2332 1324 2333 1336 2334 1318 2335 1326 2336 1328 2337 1330 2338 1312 2339 1330 2340 1338 2341 1332 2342 1340 2343 1334 2344 1322 2345 1326 2346 1324 2347 1342 2348 1336 2349 1326 2350 1344 2351 1328 2352 1346 2353 1330 2354 1346 2355 1338 2356 1330 2357 1332 2358 1338 2359 1348 2360 1340 2361 1350 2362 1334 2363 1344 2364 1326 2365 1342 2366 1352 2367 1336 2368 1344 2369 1346 2370 1354 2371 1338 2372 1338 2373 1356 2374 1348 2375 1358 2376 1350 2377 1340 2378 1344 2379 1342 2380 1360 2381 1352 2382 1344 2383 1362 2384 1364 2385 1352 2386 1362 2387 1354 2388 1356 2389 1338 2390 1348 2391 1356 2392 1366 2393 1358 2394 1368 2395 1350 2396 1362 2397 1344 2398 1360 2399 1364 2400 1362 2401 1370 2402 1372 2403 1356 2404 1354 2405 1356 2406 1374 2407 1366 2408 1358 2409 1376 2410 1368 2411 1362 2412 1360 2413 1378 2414 1370 2415 1362 2416 1378 2417 1380 2418 1364 2419 1370 2420 1372 2421 1374 2422 1356 2423 1366 2424 1374 2425 1382 2426 1376 2427 1384 2428 1368 2429 1370 2430 1378 2431 1386 2432 1380 2433 1370 2434 1388 2435 1390 2436 1374 2437 1372 2438 1374 2439 1392 2440 1382 2441 1376 2442 1394 2443 1384 2444 1394 2445 1396 2446 1384 2447 1388 2448 1370 2449 1386 2450 1398 2451 1380 2452 1388 2453 1390 2454 1392 2455 1374 2456 1382 2457 1392 2458 1400 2459 1394 2460 1402 2461 1396 2462 1388 2463 1386 2464 1404 2465 1398 2466 1388 2467 1406 2468 1408 2469 1392 2470 1390 2471 1400 2472 1392 2473 1410 2474 1412 2475 1400 2476 1410 2477 1402 2478 1414 2479 1396 2480 1388 2481 1404 2482 1406 2483 1416 2484 1398 2485 1406 2486 1408 2487 1418 2488 1392 2489 1412 2490 1410 2491 1420 2492 1402 2493 1422 2494 1414 2495 1406 2496 1404 2497 1424 2498 1416 2499 1406 2500 1426 2501 1428 2502 1418 2503 1408 2504 1420 2505 1418 2506 1428 2507 1430 2508 1412 2509 1420 2510 1422 2511 1432 2512 1414 2513 1406 2514 1424 2515 1434 2516 1416 2517 1426 2518 1436 2519 1420 2520 1428 2521 1438 2522 1430 2523 1420 2524 1440 2525 1422 2526 1442 2527 1432 2528 1434 2529 1424 2530 1444 2531 1436 2532 1426 2533 1446 2534 1436 2535 1446 2536 1448 2537 1440 2538 1420 2539 1438 2540 1450 2541 1430 2542 1440 2543 1432 2544 1442 2545 1452 2546 1446 2547 1434 2548 1444 2549 1448 2550 1446 2551 1454 2552 1440 2553 1438 2554 1456 2555 1450 2556 1440 2557 1458 2558 1452 2559 1442 2560 1460 2561 1446 2562 1444 2563 1462 2564 1454 2565 1446 2566 1462 2567 1448 2568 1454 2569 1464 2570 1458 2571 1440 2572 1456 2573 1466 2574 1450 2575 1458 2576 1452 2577 1460 2578 1468 2579 1454 2580 1462 2581 1470 2582 1464 2583 1454 2584 1472 2585 1458 2586 1456 2587 1474 2588 1458 2589 1476 2590 1466 2591 1468 2592 1460 2593 1478 2594 1468 2595 1478 2596 1480 2597 1472 2598 1454 2599 1470 2600 1482 2601 1464 2602 1472 2603 1476 2604 1458 2605 1474 2606 1466 2607 1476 2608 1484 2609 1480 2610 1478 2611 1486 2612 1472 2613 1470 2614 1488 2615 1482 2616 1472 2617 1490 2618 1476 2619 1474 2620 1492 2621 1476 2622 1494 2623 1484 2624 1484 2625 1494 2626 1496 2627 1480 2628 1486 2629 1498 2630 1490 2631 1472 2632 1488 2633 1500 2634 1482 2635 1490 2636 1494 2637 1476 2638 1492 2639 1494 2640 1502 2641 1496 2642 1498 2643 1486 2644 1504 2645 1490 2646 1488 2647 1506 2648 1500 2649 1490 2650 1508 2651 1494 2652 1492 2653 1510 2654 1502 2655 1494 2656 1510 2657 1496 2658 1502 2659 1512 2660 1498 2661 1504 2662 1514 2663 1508 2664 1490 2665 1506 2666 1516 2667 1500 2668 1508 2669</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"890\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1697\" />\r\n\t\t\t\t\t<p>3 4 5 3 5 7 10 11 4 13 5 4 17 18 19 21 3 7 23 11 10 11 25 4 18 28 29 13 4 31 33 17 19 19 18 29 35 21 7 23 10 37 41 42 43 46 47 42 31 4 25 29 28 49 51 13 31 55 56 57 33 59 17 62 63 56 65 21 35 67 23 37 41 43 69 41 46 42 46 57 47 31 25 71 74 75 62 28 77 49 51 31 79 81 55 57 56 63 57 83 59 33 62 75 63 85 65 35 67 37 65 69 43 87 91 92 93 93 95 81 57 97 47 79 31 71 74 99 75 49 77 101 103 51 79 95 55 81 57 63 97 83 105 59 63 75 107 109 65 85 65 111 67 69 87 113 115 92 91 92 95 93 79 71 117 75 99 119 121 99 74 77 123 101 103 79 125 63 107 97 83 127 105 75 119 107 129 109 85 65 109 111 87 131 113 133 115 91 127 136 137 125 79 117 99 139 119 121 141 99 101 123 143 145 103 125 127 137 105 125 117 147 129 149 109 109 151 111 113 131 153 115 133 155 136 157 137 160 147 161 99 141 139 163 141 121 123 165 143 145 125 160 160 125 147 129 167 149 109 149 151 131 169 153 155 133 171 136 173 157 175 160 161 139 141 177 163 179 141 165 181 143 183 145 160 167 185 149 149 187 151 153 169 189 155 171 191 173 193 157 183 160 175 175 161 195 141 179 177 197 179 163 165 199 181 167 201 185 149 185 187 169 203 189 191 171 189 173 205 193 207 183 175 209 175 195 177 179 211 197 213 179 199 215 181 201 217 185 185 219 187 189 203 221 191 189 223 205 225 193 199 227 215 207 175 209 209 195 229 179 213 211 231 213 197 201 233 217 185 217 219 203 235 221 223 189 221 205 237 225 227 239 215 241 207 209 243 209 229 211 213 245 247 213 231 233 249 217 217 251 219 235 253 221 223 221 255 225 237 257 247 231 259 227 261 239 243 241 209 243 229 263 213 265 245 233 267 249 217 249 251 235 269 253 255 221 253 237 271 257 273 247 259 261 275 239 277 241 243 279 243 263 245 265 281 267 283 249 249 285 251 269 287 253 255 253 289 257 271 291 281 265 273 273 259 293 261 295 275 297 277 243 279 263 299 267 301 283 249 283 285 269 303 287 289 253 287 271 305 291 307 281 273 309 273 293 295 311 275 313 277 297 315 279 299 301 317 283 283 319 285 303 321 287 289 287 323 291 305 325 327 315 299 307 273 309 309 293 329 331 311 295 313 297 315 301 333 317 283 317 319 303 335 321 323 287 321 305 337 325 339 315 327 341 307 309 343 309 329 345 311 331 347 313 315 333 349 317 319 317 351 335 353 321 321 355 323 325 337 357 347 315 339 359 339 327 341 309 343 343 329 361 363 345 331 333 365 349 317 367 351 335 369 353 321 353 355 357 337 371 373 347 339 375 339 359 377 341 343 361 379 343 381 345 363 365 383 349 351 367 385 369 387 353 353 389 355 357 371 391 393 381 363 373 339 375 375 359 395 377 343 379 397 379 361 365 399 383 367 401 385 369 403 387 353 387 389 391 371 405 407 381 393 409 373 375 411 375 395 413 377 379 397 415 379 383 399 417 401 419 385 403 421 387 387 423 389 425 391 405 427 415 397 429 407 393 409 375 411 411 395 431 413 379 415 399 433 417 401 417 419 435 421 403 387 421 423 425 405 437 427 439 415 441 407 429 443 409 411 445 411 431 447 413 415 417 433 449 417 451 419 453 421 435 421 455 423 457 425 437 447 415 439 459 439 427 461 441 429 443 411 445 445 431 463 433 465 449 417 449 451 467 453 435 421 453 455 457 437 469 471 447 439 459 473 439 475 441 461 477 443 445 479 445 463 465 481 449 449 483 451 485 453 467 455 453 487 489 457 469 479 463 491 473 471 439 493 473 459 475 461 495 477 445 479 465 497 481 449 481 483 499 485 467 487 453 485 489 469 501 503 479 491 505 471 473 493 507 473 509 475 495 511 477 479 497 513 481 481 515 483 517 485 499 487 485 519 521 489 501 511 479 503 503 491 523 525 505 473 527 507 493 509 495 529 497 531 513 481 513 515 533 517 499 519 485 517 521 501 535 537 511 503 539 503 523 541 505 525 527 543 507 545 509 529 531 547 513 513 549 515 551 517 533 519 517 553 555 521 535 545 529 557 537 503 539 539 523 559 561 541 525 563 543 527 531 565 547 513 547 549 551 533 567 553 517 551 569 555 535 571 545 557 537 539 573 575 539 559 577 541 561 543 563 579 565 581 547 547 583 549 585 551 567 553 551 587 589 555 569 563 591 579 571 557 593 539 575 573 575 559 595 597 577 561 565 599 581 547 581 583 585 567 601 587 551 585 603 589 569 579 591 605 607 571 593 573 575 609 595 611 575 597 613 577 599 615 581 581 617 583 619 585 601 587 585 621 623 589 603 625 613 597 591 627 605 607 593 629 575 631 609 595 633 611 599 635 615 581 615 617 619 601 637 621 585 619 639 623 603 625 641 613 605 627 643 607 629 645 631 647 609 633 649 611 635 651 615 653 617 615 655 619 637 621 619 657 659 623 639 633 661 649 625 663 641 627 665 643 645 629 667 631 669 647 635 671 651 651 653 615 655 637 673 657 619 675 677 659 639 649 661 679 663 681 641 643 665 683 645 667 685 669 687 647 689 651 671 691 653 651 693 655 673 695 657 675 677 697 659 669 679 687 661 699 679 663 683 681 665 701 683 667 703 685 689 671 705 707 691 651 693 673 709 711 695 675 713 697 677 715 687 679 717 679 699 683 719 681 701 721 683 685 703 723 725 689 705 727 691 707 729 693 709 731 695 711 713 733 697 703 735 723 715 679 717 717 699 737 683 721 719 739 721 701 741 725 705 727 707 743 729 709 745 747 731 711 749 733 713 723 735 751 753 715 717 755 717 737 721 757 719 739 759 721 761 725 741 763 727 743 729 745 765 767 731 747 749 769 733 771 759 739 735 773 751 753 717 755 755 737 775 721 759 757 777 761 741 763 743 761 765 745 779 781 767 747 749 783 769 771 785 759 751 773 787 789 753 755 791 755 775 759 793 757 795 761 777 761 797 763 765 779 799 767 781 801 783 803 769 759 785 793 805 785 771 773 807 787 789 755 791 791 775 809 811 795 777 761 795 797 779 813 799 801 781 815 783 817 803 785 819 793 805 821 785 787 807 823 825 789 791 827 791 809 811 829 795 795 831 797 799 813 833 801 815 835 817 837 803 827 809 839 785 821 819 841 821 805 807 843 823 825 791 827 811 845 829 795 829 831 813 847 833 835 815 849 817 851 837 853 827 839 819 821 855 841 857 821 843 859 823 861 825 827 845 863 829 829 865 831 833 847 867 835 849 869 851 871 837 861 827 853 853 839 873 821 857 855 875 857 841 843 877 859 845 879 863 829 863 865 847 881 867 869 849 867 851 883 871 885 861 853 887 853 873 855 857 889 875 891 857 877 893 859 879 895 863 863 897 865 867 881 899 869 867 901 883 903 871 877 905 893 885 853 887 887 873 907 857 891 889 909 891 875 879 911 895 863 895 897 881 913 899 901 867 899 883 915 903 905 917 893 919 885 887 921 887 907 889 891 923 925 891 909 911 927 895 895 929 897 913 931 899 901 899 933 903 915 935 925 909 937 905 939 917 921 919 887 921 907 941 891 943 923 911 945 927 895 927 929 913 947 931 933 899 931 915 949 935 951 925 937 939 953 917 955 919 921 957 921 941 923 943 959 945 961 927 927 963 929 947 965 931 933 931 967 935 949 969 959 943 951 951 937 971 939 973 953 975 955 921 977 957 941 945 979 961 927 961 963 947 981 965 967 931 965 949 983 969 985 959 951 987 951 971 973 989 953 991 955 975 993 957 977 979 995 961 961 997 963 981 999 965 967 965 1001 969 983 1003 1005 993 977 985 951 987 987 971 1007 1009 989 973 991 975 993 979 1011 995 961 995 997 981 1013 999 1001 965 999 983 1015 1003 1017 993 1005 1019 985 987 1021 987 1007 1023 989 1009 1025 991 993 1011 1027 995 997 995 1029 1013 1031 999 999 1033 1001 1003 1015 1035 1025 993 1017 1037 1017 1005 1019 987 1021 1021 1007 1039 1041 1023 1009 1011 1043 1027 995 1045 1029 1013 1047 1031 999 1031 1033 1035 1015 1049 1051 1025 1017 1053 1017 1037 1055 1019 1021 1039 1057 1021 1059 1023 1041 1043 1061 1027 1029 1045 1063 1047 1065 1031 1031 1067 1033 1035 1049 1069 1071 1059 1041 1051 1017 1053 1053 1037 1073 1055 1021 1057 1075 1057 1039 1043 1077 1061 1045 1079 1063 1047 1081 1065 1031 1065 1067 1069 1049 1083 1085 1059 1071 1087 1051 1053 1089 1053 1073 1091 1055 1057 1075 1093 1057 1061 1077 1095 1079 1097 1063 1081 1099 1065 1065 1101 1067 1103 1069 1083 1105 1093 1075 1107 1085 1071 1087 1053 1089 1089 1073 1109 1091 1057 1093 1077 1111 1095 1079 1095 1097 1113 1099 1081 1065 1115 1101 1103 1083 1117 1105 1119 1093 1121 1085 1107 1123 1087 1089 1125 1089 1109 1127 1091 1093 1095 1111 1129 1095 1131 1097 1133 1099 1113 1101 1115 1135 1137 1103 1117 1127 1093 1119 1139 1119 1105 1141 1121 1107 1123 1089 1125 1125 1109 1143 1111 1145 1129 1095 1129 1131 1147 1133 1113 1135 1115 1133 1137 1117 1149 1151 1127 1119 1139 1153 1119 1155 1121 1141 1157 1123 1125 1159 1125 1143 1145 1161 1129 1129 1163 1131 1165 1133 1147 1135 1133 1167 1169 1137 1149 1159 1143 1171 1153 1151 1119 1173 1153 1139 1155 1141 1175 1157 1125 1159 1145 1177 1161 1129 1161 1163 1179 1165 1147 1167 1133 1165 1169 1149 1181 1183 1159 1171 1185 1151 1153 1173 1187 1153 1189 1155 1175 1191 1157 1159 1177 1193 1161 1161 1195 1163 1197 1165 1179 1167 1165 1199 1201 1169 1181 1191 1159 1183 1183 1171 1203 1205 1185 1153 1207 1187 1173 1189 1175 1209 1177 1211 1193 1161 1193 1195 1213 1197 1179 1199 1165 1197 1201 1181 1215 1217 1191 1183 1219 1183 1203 1221 1185 1205 1207 1223 1187 1225 1189 1209 1225 1209 1227 1217 1183 1219 1219 1203 1229 1231 1221 1205 1233 1223 1207 1235 1225 1227 1217 1219 1237 1229 1239 1219 1241 1221 1231 1223 1233 1243 1233 1245 1243 1235 1227 1247 1219 1239 1237 1229 1249 1239 1251 1241 1231 1243 1245 1253 1255 1235 1247 1237 1239 1257 1249 1259 1239 1251 1261 1241 1263 1261 1251 1245 1265 1253 1255 1247 1267 1239 1269 1257 1249 1271 1259 1263 1273 1261 1253 1265 1275 1255 1267 1277 1269 1279 1257 1271 1281 1259 1271 1283 1281 1263 1285 1273 1265 1287 1275 1277 1267 1289 1269 1281 1279 1281 1283 1291 1285 1293 1273 1275 1287 1295 1277 1289 1297 1299 1279 1281 1299 1281 1291 1283 1301 1291 1285 1295 1293 1287 1303 1295 1289 1305 1297 1307 1299 1291 1309 1291 1301 1295 1311 1293 1303 1313 1295 1297 1305 1315 1305 1317 1315 1307 1291 1309 1309 1301 1319 1295 1313 1311 1321 1313 1303 1315 1317 1323 1325 1307 1309 1327 1309 1319 1313 1329 1311 1321 1331 1313 1333 1331 1321 1317 1335 1323 1325 1309 1327 1327 1319 1337 1313 1331 1329 1333 1339 1331 1323 1335 1341 1343 1325 1327 1345 1327 1337 1331 1347 1329 1331 1339 1347 1349 1339 1333 1335 1351 1341 1343 1327 1345 1345 1337 1353 1339 1355 1347 1349 1357 1339 1341 1351 1359 1361 1343 1345 1363 1345 1353 1363 1353 1365 1339 1357 1355 1367 1357 1349 1351 1369 1359 1361 1345 1363 1371 1363 1365 1355 1357 1373 1367 1375 1357 1369 1377 1359 1379 1361 1363 1379 1363 1371 1371 1365 1381 1357 1375 1373 1383 1375 1367 1369 1385 1377 1387 1379 1371 1389 1371 1381 1373 1375 1391 1383 1393 1375 1385 1395 1377 1385 1397 1395 1387 1371 1389 1389 1381 1399 1375 1393 1391 1401 1393 1383 1397 1403 1395 1405 1387 1389 1407 1389 1399 1391 1393 1409 1411 1393 1401 1411 1401 1413 1397 1415 1403 1407 1405 1389 1407 1399 1417 1393 1419 1409 1421 1411 1413 1415 1423 1403 1425 1405 1407 1427 1407 1417 1409 1419 1429 1429 1419 1421 1421 1413 1431 1415 1433 1423 1435 1425 1407 1437 1427 1417 1439 1429 1421 1441 1421 1431 1433 1443 1423 1445 1425 1435 1447 1427 1437 1449 1447 1437 1439 1421 1441 1441 1431 1451 1453 1443 1433 1445 1435 1447 1455 1447 1449 1457 1439 1441 1459 1441 1451 1461 1443 1453 1463 1445 1447 1463 1447 1455 1465 1455 1449 1457 1441 1459 1459 1451 1467 1469 1461 1453 1471 1463 1455 1473 1455 1465 1475 1457 1459 1467 1477 1459 1479 1461 1469 1481 1479 1469 1471 1455 1473 1473 1465 1483 1475 1459 1477 1485 1477 1467 1487 1479 1481 1489 1471 1473 1491 1473 1483 1493 1475 1477 1485 1495 1477 1497 1495 1485 1499 1487 1481 1489 1473 1491 1491 1483 1501 1493 1477 1495 1497 1503 1495 1505 1487 1499 1507 1489 1491 1509 1491 1501 1511 1493 1495 1511 1495 1503 1513 1503 1497 1515 1505 1499 1507 1491 1509 1509 1501 1517</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1702\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1703\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID1706\">0.6481636166572571 1.373394846916199 -0.0007520765066146851 0.6752741932868958 1.396806240081787 0.002683687955141068 0.6674685478210449 1.397706627845764 0.01294291764497757 0.6674685478210449 1.397706627845764 0.01294291764497757 0.6752741932868958 1.396806240081787 0.002683687955141068 0.6481636166572571 1.373394846916199 -0.0007520765066146851 0.6447465419769287 1.377805113792419 0.01006027683615685 0.6447465419769287 1.377805113792419 0.01006027683615685 0.603096067905426 1.37308406829834 -0.006200850009918213 0.603096067905426 1.37308406829834 -0.006200850009918213</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID1706\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1704\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID1707\">-0.2763361914172779 0.8551604172472301 -0.4385646703583597 -0.5409128252787497 0.6957396053703466 -0.4726094761725324 -0.5430237831643805 0.695908146677322 -0.4699329976773058 0.5430237831643805 -0.695908146677322 0.4699329976773058 0.5409128252787497 -0.6957396053703466 0.4726094761725324 0.2763361914172779 -0.8551604172472301 0.4385646703583597 -0.2920676442762112 0.8497403540373408 -0.4389052538845249 0.2920676442762112 -0.8497403540373408 0.4389052538845249 0.03797377695879648 0.9294074683196612 -0.3670963771206708 -0.03797377695879648 -0.9294074683196612 0.3670963771206708</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID1707\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1705\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1703\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1704\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1705\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 2 3 5 7 8 0 6 7 5 9</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1708\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1709\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1712\">0.6704499125480652 1.39844274520874 -0.02658201195299625 0.6457784771919251 1.377284526824951 -0.02970624901354313 0.6441598534584045 1.379136204719544 -0.0151943676173687 0.6441598534584045 1.379136204719544 -0.0151943676173687 0.6457784771919251 1.377284526824951 -0.02970624901354313 0.6704499125480652 1.39844274520874 -0.02658201195299625</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1712\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1710\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1713\">0.6295715759548037 -0.7587738394453171 0.1670385923168571 0.6295715759548037 -0.7587738394453171 0.1670385923168571 0.6295715759548037 -0.7587738394453171 0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1713\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1711\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1709\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1710\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1711\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1714\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1715\">\r\n\t\t\t\t\t<float_array count=\"4554\" id=\"ID1719\">0.5764011144638062 1.390616059303284 -0.139177218079567 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5764011144638062 1.390616059303284 -0.139177218079567 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.572441041469574 1.388842225074768 -0.1325118541717529 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5873357057571411 1.382593750953674 -0.1353528052568436 0.5873357057571411 1.382593750953674 -0.1353528052568436 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5646573305130005 1.41193699836731 -0.152768149971962 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557196855545044 1.412441611289978 -0.1504120379686356 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5659894943237305 1.386791586875916 -0.1443661153316498 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5659894943237305 1.386791586875916 -0.1443661153316498 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5794986486434937 1.376735687255859 -0.1402455270290375 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5794986486434937 1.376735687255859 -0.1402455270290375 0.5733222365379334 1.421713590621948 -0.1470988094806671 0.5733222365379334 1.421713590621948 -0.1470988094806671 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5967265367507935 1.369694590568543 -0.1356068253517151 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967265367507935 1.369694590568543 -0.1356068253517151 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.6013235449790955 1.376871228218079 -0.1310993880033493 0.6013235449790955 1.376871228218079 -0.1310993880033493 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5583849549293518 1.39915668964386 -0.147756814956665 0.557205080986023 1.412230134010315 -0.1413010209798813 0.557205080986023 1.412230134010315 -0.1413010209798813 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.6162846684455872 1.366446971893311 -0.1306639760732651 0.6162846684455872 1.366446971893311 -0.1306639760732651 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.557205080986023 1.412230134010315 -0.1413010209798813 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557205080986023 1.412230134010315 -0.1413010209798813 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5820477604866028 1.430738091468811 -0.1485836952924728 0.5820477604866028 1.430738091468811 -0.1485836952924728 0.578619122505188 1.433083534240723 -0.1561392545700073 0.578619122505188 1.433083534240723 -0.1561392545700073 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6171872019767761 1.374258875846863 -0.1265972405672073 0.6171872019767761 1.374258875846863 -0.1265972405672073 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.573066771030426 1.436009049415588 -0.1444292664527893 0.573066771030426 1.436009049415588 -0.1444292664527893 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.578619122505188 1.433083534240723 -0.1561392545700073 0.578619122505188 1.433083534240723 -0.1561392545700073 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6362500786781311 1.367325901985169 -0.1256429404020309 0.6362500786781311 1.367325901985169 -0.1256429404020309 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.573066771030426 1.436009049415588 -0.1444292664527893 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.573066771030426 1.436009049415588 -0.1444292664527893 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6168361306190491 1.371485948562622 -0.133814811706543 0.594593346118927 1.437490224838257 -0.1496256589889526 0.594593346118927 1.437490224838257 -0.1496256589889526 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6333761215209961 1.374970674514771 -0.1220347285270691 0.6333761215209961 1.374970674514771 -0.1220347285270691 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.6483002901077271 1.378945589065552 -0.1176018267869949 0.6483002901077271 1.378945589065552 -0.1176018267869949 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6546680331230164 1.372084975242615 -0.1207398623228073 0.6546680331230164 1.372084975242615 -0.1207398623228073 0.654680073261261 1.371889233589172 -0.1116740703582764 0.654680073261261 1.371889233589172 -0.1116740703582764 0.650735080242157 1.376069068908691 -0.1101703196763992 0.650735080242157 1.376069068908691 -0.1101703196763992 0.6097114086151123 1.441336512565613 -0.1503738611936569 0.6097114086151123 1.441336512565613 -0.1503738611936569 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6072173118591309 1.449327707290649 -0.1545247584581375 0.6072173118591309 1.449327707290649 -0.1545247584581375 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.654680073261261 1.371889233589172 -0.1116740703582764 0.654680073261261 1.371889233589172 -0.1116740703582764 0.650735080242157 1.376069068908691 -0.1101703196763992 0.650735080242157 1.376069068908691 -0.1101703196763992 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.660498857498169 1.385782361030579 -0.1134771406650543 0.660498857498169 1.385782361030579 -0.1134771406650543 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6697470545768738 1.380654454231262 -0.1162995100021362 0.6697470545768738 1.380654454231262 -0.1162995100021362 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6259343028068543 1.441896080970764 -0.1510118097066879 0.6259343028068543 1.441896080970764 -0.1510118097066879 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6272223591804504 1.449964761734009 -0.1547037810087204 0.6272223591804504 1.449964761734009 -0.1547037810087204 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6272338032722473 1.449633955955505 -0.14559705555439 0.626435399055481 1.444658279418945 -0.1437764018774033 0.626435399055481 1.444658279418945 -0.1437764018774033 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.626435399055481 1.444658279418945 -0.1437764018774033 0.626435399055481 1.444658279418945 -0.1437764018774033 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6687827706336975 1.394805312156677 -0.1098122596740723 0.6687827706336975 1.394805312156677 -0.1098122596740723 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6416727304458618 1.439122557640076 -0.151732012629509 0.6416727304458618 1.439122557640076 -0.151732012629509 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6466220617294312 1.446502447128296 -0.1549863368272781 0.6466220617294312 1.446502447128296 -0.1549863368272781 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6844237446784973 1.404522180557251 -0.1091566681861877 0.6844237446784973 1.404522180557251 -0.1091566681861877 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6553794741630554 1.433307886123657 -0.1527181565761566 0.6553794741630554 1.433307886123657 -0.1527181565761566 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6635121703147888 1.439278960227966 -0.1555992513895035 0.6635121703147888 1.439278960227966 -0.1555992513895035 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.675299882888794 1.416630387306213 -0.1108274012804031 0.675299882888794 1.416630387306213 -0.1108274012804031 0.6825904846191406 1.417605042457581 -0.1066848784685135 0.6825904846191406 1.417605042457581 -0.1066848784685135 0.682598352432251 1.417258620262146 -0.09757854789495468 0.682598352432251 1.417258620262146 -0.09757854789495468 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6708204746246338 1.415700078010559 -0.1042181849479675 0.6708204746246338 1.415700078010559 -0.1042181849479675 0.6657178997993469 1.425013899803162 -0.1541275084018707 0.6657178997993469 1.425013899803162 -0.1541275084018707 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6762241125106812 1.42901611328125 -0.1567336469888687 0.6762241125106812 1.42901611328125 -0.1567336469888687 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.675299882888794 1.416630387306213 -0.1108274012804031 0.675299882888794 1.416630387306213 -0.1108274012804031 0.682598352432251 1.417258620262146 -0.09757854789495468 0.682598352432251 1.417258620262146 -0.09757854789495468 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.664371132850647 1.425509691238403 -0.1023261845111847 0.664371132850647 1.425509691238403 -0.1023261845111847 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6746793389320374 1.429725646972656 -0.104955717921257 0.6746793389320374 1.429725646972656 -0.104955717921257 0.674686074256897 1.429399251937866 -0.09584938734769821 0.674686074256897 1.429399251937866 -0.09584938734769821 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.683535635471344 1.416723370552063 -0.1585377752780914 0.683535635471344 1.416723370552063 -0.1585377752780914 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.674686074256897 1.429399251937866 -0.09584938734769821 0.674686074256897 1.429399251937866 -0.09584938734769821 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.653633177280426 1.433576941490173 -0.1009682565927506 0.653633177280426 1.433576941490173 -0.1009682565927506 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6612877249717712 1.439727663993835 -0.1038927957415581 0.6612877249717712 1.439727663993835 -0.1038927957415581 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6847144961357117 1.403622508049011 -0.1610865443944931 0.6847144961357117 1.403622508049011 -0.1610865443944931 0.684719443321228 1.403284192085266 -0.1519800424575806 0.684719443321228 1.403284192085266 -0.1519800424575806 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.684719443321228 1.403284192085266 -0.1519800424575806 0.684719443321228 1.403284192085266 -0.1519800424575806 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6396493911743164 1.439105153083801 -0.1000177264213562 0.6396493911743164 1.439105153083801 -0.1000177264213562 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6441908478736877 1.44657564163208 -0.1033200994133949 0.6441908478736877 1.44657564163208 -0.1033200994133949 0.6685919761657715 1.39425265789032 -0.1617981195449829 0.6685919761657715 1.39425265789032 -0.1617981195449829 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6795402765274048 1.391004085540772 -0.1643800884485245 0.6795402765274048 1.391004085540772 -0.1643800884485245 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6246870160102844 1.449633955955505 -0.1030546501278877 0.6246870160102844 1.449633955955505 -0.1030546501278877 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6237871050834656 1.441540479660034 -0.09931465238332748 0.6237871050834656 1.441540479660034 -0.09931465238332748 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6600530743598938 1.385418653488159 -0.1655101180076599 0.6600530743598938 1.385418653488159 -0.1655101180076599 0.663275957107544 1.383595705032349 -0.1722719520330429 0.663275957107544 1.383595705032349 -0.1722719520330429 0.6688450574874878 1.38010573387146 -0.1683710515499115 0.6688450574874878 1.38010573387146 -0.1683710515499115 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6632908582687378 1.383078336715698 -0.157962441444397 0.663275957107544 1.383595705032349 -0.1722719520330429 0.663275957107544 1.383595705032349 -0.1722719520330429 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6047239303588867 1.448564052581787 -0.1028712913393974 0.6047239303588867 1.448564052581787 -0.1028712913393974 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6076093316078186 1.440625190734863 -0.09867467731237412 0.6076093316078186 1.440625190734863 -0.09867467731237412 0.6473151445388794 1.37885594367981 -0.1696802973747253 0.6473151445388794 1.37885594367981 -0.1696802973747253 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6533486247062683 1.371997594833374 -0.1729011684656143 0.6533486247062683 1.371997594833374 -0.1729011684656143 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.5926844477653503 1.436460614204407 -0.09790220111608505 0.5926844477653503 1.436460614204407 -0.09790220111608505 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.6321871280670166 1.375200867652893 -0.1741351038217545 0.6321871280670166 1.375200867652893 -0.1741351038217545 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6346774697303772 1.367498278617859 -0.1777908951044083 0.6346774697303772 1.367498278617859 -0.1777908951044083 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5804890394210815 1.429435133934021 -0.09682229161262512 0.5804890394210815 1.429435133934021 -0.09682229161262512 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.6159605383872986 1.374831795692444 -0.1787005662918091 0.6159605383872986 1.374831795692444 -0.1787005662918091 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6146628856658936 1.367056727409363 -0.1828146427869797 0.6146628856658936 1.367056727409363 -0.1828146427869797 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6146710515022278 1.366716861724854 -0.1737080514431 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5722107291221619 1.420226573944092 -0.09528376907110214 0.5722107291221619 1.420226573944092 -0.09528376907110214 0.567931592464447 1.421685934066773 -0.1029479652643204 0.567931592464447 1.421685934066773 -0.1029479652643204 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5997619032859802 1.37767767906189 -0.1832408457994461 0.5997619032859802 1.37767767906189 -0.1832408457994461 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5947365760803223 1.37060809135437 -0.1878018081188202 0.5947365760803223 1.37060809135437 -0.1878018081188202 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.567931592464447 1.421685934066773 -0.1029479652643204 0.567931592464447 1.421685934066773 -0.1029479652643204 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5857048630714417 1.383684992790222 -0.1875032186508179 0.5857048630714417 1.383684992790222 -0.1875032186508179 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5774619579315186 1.378065705299377 -0.1924419403076172 0.5774619579315186 1.378065705299377 -0.1924419403076172 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.559303879737854 1.396423816680908 -0.08659722656011581 0.559303879737854 1.396423816680908 -0.08659722656011581 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5755146741867065 1.392250299453735 -0.1912776529788971 0.5755146741867065 1.392250299453735 -0.1912776529788971 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.559303879737854 1.396423816680908 -0.08659722656011581 0.559303879737854 1.396423816680908 -0.08659722656011581 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5776671171188355 1.388520479202271 -0.08703336119651794 0.5776671171188355 1.388520479202271 -0.08703336119651794 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5674387216567993 1.384496212005615 -0.09220243245363236 0.5674387216567993 1.384496212005615 -0.09220243245363236 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5885612964630127 1.380340695381165 -0.08317101746797562 0.5885612964630127 1.380340695381165 -0.08317101746797562 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5808379054069519 1.374427676200867 -0.08804868161678314 0.5808379054069519 1.374427676200867 -0.08804868161678314 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6026553511619568 1.374741792678833 -0.07890588045120239 0.6026553511619568 1.374741792678833 -0.07890588045120239 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.5981957316398621 1.367648720741272 -0.08346498012542725 0.5981957316398621 1.367648720741272 -0.08346498012542725 0.5731960535049439 1.423600435256958 -0.1991498172283173 0.5731960535049439 1.423600435256958 -0.1991498172283173 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.6178026795387268 1.364426612854004 -0.07844620943069458 0.6178026795387268 1.364426612854004 -0.07844620943069458 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.618276834487915 1.368943214416504 -0.06729701906442642 0.618276834487915 1.368943214416504 -0.06729701906442642 0.6185595989227295 1.372249364852905 -0.07439717650413513 0.6185595989227295 1.372249364852905 -0.07439717650413513 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.5820948481559753 1.432539939880371 -0.2006160467863083 0.5820948481559753 1.432539939880371 -0.2006160467863083 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.618276834487915 1.368943214416504 -0.06729701906442642 0.618276834487915 1.368943214416504 -0.06729701906442642 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6377438306808472 1.36546528339386 -0.07342720776796341 0.6377438306808472 1.36546528339386 -0.07342720776796341 0.637752890586853 1.365134596824646 -0.06432016938924789 0.637752890586853 1.365134596824646 -0.06432016938924789 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6347270011901856 1.373091697692871 -0.06983600556850433 0.6347270011901856 1.373091697692871 -0.06983600556850433 0.5947583317756653 1.439199566841126 -0.2016407698392868 0.5947583317756653 1.439199566841126 -0.2016407698392868 0.592503547668457 1.44215738773346 -0.2090510278940201 0.592503547668457 1.44215738773346 -0.2090510278940201 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.637752890586853 1.365134596824646 -0.06432016938924789 0.637752890586853 1.365134596824646 -0.06432016938924789 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.592503547668457 1.44215738773346 -0.2090510278940201 0.592503547668457 1.44215738773346 -0.2090510278940201 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.6495687365531921 1.377189040184021 -0.06541077047586441 0.6495687365531921 1.377189040184021 -0.06541077047586441 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6560683846473694 1.370518207550049 -0.06857547909021378 0.6560683846473694 1.370518207550049 -0.06857547909021378 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.652233898639679 1.374327898025513 -0.05795620754361153 0.652233898639679 1.374327898025513 -0.05795620754361153 0.6099497675895691 1.442925214767456 -0.2023820877075195 0.6099497675895691 1.442925214767456 -0.2023820877075195 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6075994372367859 1.450924038887024 -0.2065163999795914 0.6075994372367859 1.450924038887024 -0.2065163999795914 0.60760897397995 1.450597167015076 -0.1974090039730072 0.60760897397995 1.450597167015076 -0.1974090039730072 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.652233898639679 1.374327898025513 -0.05795620754361153 0.652233898639679 1.374327898025513 -0.05795620754361153 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.60760897397995 1.450597167015076 -0.1974090039730072 0.60760897397995 1.450597167015076 -0.1974090039730072 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6616408824920654 1.384117484092712 -0.06130355969071388 0.6616408824920654 1.384117484092712 -0.06130355969071388 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6709807515144348 1.379074215888977 -0.06411219388246536 0.6709807515144348 1.379074215888977 -0.06411219388246536 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6261875033378601 1.44335949420929 -0.2030204385519028 0.6261875033378601 1.44335949420929 -0.2030204385519028 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6276242136955261 1.451410889625549 -0.2066955715417862 0.6276242136955261 1.451410889625549 -0.2066955715417862 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.674055278301239 1.391781568527222 -0.04999235644936562 0.674055278301239 1.391781568527222 -0.04999235644936562 0.6697533130645752 1.393221259117127 -0.05765779316425324 0.6697533130645752 1.393221259117127 -0.05765779316425324 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6418677568435669 1.440455317497253 -0.2037471383810043 0.6418677568435669 1.440455317497253 -0.2037471383810043 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6469581127166748 1.447785615921021 -0.2069866359233856 0.6469581127166748 1.447785615921021 -0.2069866359233856 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.674055278301239 1.391781568527222 -0.04999235644936562 0.674055278301239 1.391781568527222 -0.04999235644936562 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6852126121520996 1.403058409690857 -0.05702411383390427 0.6852126121520996 1.403058409690857 -0.05702411383390427 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6554705500602722 1.434533596038818 -0.2047469019889832 0.6554705500602722 1.434533596038818 -0.2047469019889832 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6637067198753357 1.440432906150818 -0.2076139599084854 0.6637067198753357 1.440432906150818 -0.2076139599084854 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.675865113735199 1.415092825889587 -0.05872093886137009 0.675865113735199 1.415092825889587 -0.05872093886137009 0.683136522769928 1.416121363639832 -0.05458316951990128 0.683136522769928 1.416121363639832 -0.05458316951990128 0.68314129114151 1.415789604187012 -0.04547535255551338 0.68314129114151 1.415789604187012 -0.04547535255551338 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6713975071907044 1.414113759994507 -0.05211071670055389 0.6713975071907044 1.414113759994507 -0.05211071670055389 0.6655508279800415 1.426157832145691 -0.2061705887317658 0.6655508279800415 1.426157832145691 -0.2061705887317658 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6762374043464661 1.430071353912354 -0.2087742984294891 0.6762374043464661 1.430071353912354 -0.2087742984294891 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.669693648815155 1.427335619926453 -0.1985236257314682 0.669693648815155 1.427335619926453 -0.1985236257314682 0.675865113735199 1.415092825889587 -0.05872093886137009 0.675865113735199 1.415092825889587 -0.05872093886137009 0.68314129114151 1.415789604187012 -0.04547535255551338 0.68314129114151 1.415789604187012 -0.04547535255551338 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.669693648815155 1.427335619926453 -0.1985236257314682 0.669693648815155 1.427335619926453 -0.1985236257314682 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6647707223892212 1.423890590667725 -0.05024185031652451 0.6647707223892212 1.423890590667725 -0.05024185031652451 0.668663501739502 1.425727844238281 -0.05691695213317871 0.668663501739502 1.425727844238281 -0.05691695213317871 0.6749993562698364 1.428184986114502 -0.05288051813840866 0.6749993562698364 1.428184986114502 -0.05288051813840866 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.675951361656189 1.416974186897278 -0.2147535979747772 0.675951361656189 1.416974186897278 -0.2147535979747772 0.6833136677742004 1.417727947235107 -0.2106049805879593 0.6833136677742004 1.417727947235107 -0.2106049805879593 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.668663501739502 1.425727844238281 -0.05691695213317871 0.668663501739502 1.425727844238281 -0.05691695213317871 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.675951361656189 1.416974186897278 -0.2147535979747772 0.675951361656189 1.416974186897278 -0.2147535979747772 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6538820266723633 1.431869506835938 -0.04890138283371925 0.6538820266723633 1.431869506835938 -0.04890138283371925 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6616003513336182 1.438071250915527 -0.05182943865656853 0.6616003513336182 1.438071250915527 -0.05182943865656853 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6842526197433472 1.404616117477417 -0.2131838649511337 0.6842526197433472 1.404616117477417 -0.2131838649511337 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.639799177646637 1.437276721000671 -0.04796412959694862 0.639799177646637 1.437276721000671 -0.04796412959694862 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6442509293556213 1.444796919822693 -0.05127810314297676 0.6442509293556213 1.444796919822693 -0.05127810314297676 0.6679614782333374 1.395384907722473 -0.2139163911342621 0.6679614782333374 1.395384907722473 -0.2139163911342621 0.672139048576355 1.39431893825531 -0.2205718755722046 0.672139048576355 1.39431893825531 -0.2205718755722046 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.678961455821991 1.391703963279724 -0.2074052393436432 0.678961455821991 1.391703963279724 -0.2074052393436432 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.672139048576355 1.39431893825531 -0.2205718755722046 0.672139048576355 1.39431893825531 -0.2205718755722046 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.678961455821991 1.391703963279724 -0.2074052393436432 0.678961455821991 1.391703963279724 -0.2074052393436432 0.6246472597122192 1.447684526443481 -0.05102457106113434 0.6246472597122192 1.447684526443481 -0.05102457106113434 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6238974332809448 1.43958580493927 -0.04726743698120117 0.6238974332809448 1.43958580493927 -0.04726743698120117 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6590602397918701 1.386616110801697 -0.2176548689603806 0.6590602397918701 1.386616110801697 -0.2176548689603806 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6679444909095764 1.381230473518372 -0.2205207496881485 0.6679444909095764 1.381230473518372 -0.2205207496881485 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6047060489654541 1.446462512016296 -0.05083831399679184 0.6047060489654541 1.446462512016296 -0.05083831399679184 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6077330112457275 1.438551783561707 -0.04662448167800903 0.6077330112457275 1.438551783561707 -0.04662448167800903 0.6463867425918579 1.380146741867065 -0.2218325585126877 0.6463867425918579 1.380146741867065 -0.2218325585126877 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6524507403373718 1.373252987861633 -0.2250670045614243 0.6524507403373718 1.373252987861633 -0.2250670045614243 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.5928953289985657 1.434271335601807 -0.04584556818008423 0.5928953289985657 1.434271335601807 -0.04584556818008423 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.586394190788269 1.440893888473511 -0.0413796678185463 0.586394190788269 1.440893888473511 -0.0413796678185463 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.6311914920806885 1.376619338989258 -0.2262957394123077 0.6311914920806885 1.376619338989258 -0.2262957394123077 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6335372924804688 1.368906021118164 -0.2299681603908539 0.6335372924804688 1.368906021118164 -0.2299681603908539 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.632088840007782 1.37337338924408 -0.2190500944852829 0.632088840007782 1.37337338924408 -0.2190500944852829 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.586394190788269 1.440893888473511 -0.0413796678185463 0.586394190788269 1.440893888473511 -0.0413796678185463 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.632088840007782 1.37337338924408 -0.2190500944852829 0.632088840007782 1.37337338924408 -0.2190500944852829 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5810641050338745 1.426966309547424 -0.04468091204762459 0.5810641050338745 1.426966309547424 -0.04468091204762459 0.577437698841095 1.429154992103577 -0.05226095765829086 0.577437698841095 1.429154992103577 -0.05226095765829086 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.577437698841095 1.429154992103577 -0.05226095765829086 0.577437698841095 1.429154992103577 -0.05226095765829086 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5738012790679932 1.417280197143555 -0.04298178479075432 0.5738012790679932 1.417280197143555 -0.04298178479075432 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5735331177711487 1.395941138267517 -0.03795602545142174 0.5735331177711487 1.395941138267517 -0.03795602545142174 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5807925462722778 1.386182546615601 -0.03454335033893585 0.5807925462722778 1.386182546615601 -0.03454335033893585 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5708434581756592 1.381881356239319 -0.03967851027846336 0.5708434581756592 1.381881356239319 -0.03967851027846336 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5921866893768311 1.378312945365906 -0.0306165087968111 0.5921866893768311 1.378312945365906 -0.0306165087968111 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.584869921207428 1.372178196907044 -0.03544721379876137 0.584869921207428 1.372178196907044 -0.03544721379876137 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6066128611564636 1.373105645179749 -0.02630784548819065 0.6066128611564636 1.373105645179749 -0.02630784548819065 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6026409864425659 1.365755438804627 -0.03074319288134575 0.6026409864425659 1.365755438804627 -0.03074319288134575 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6224052906036377 1.36322546005249 -0.02576779760420322 0.6224052906036377 1.36322546005249 -0.02576779760420322 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6226503849029541 1.371061563491821 -0.02178248576819897 0.6226503849029541 1.371061563491821 -0.02178248576819897 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6421971321105957 1.364853024482727 -0.02080797962844372 0.6421971321105957 1.364853024482727 -0.02080797962844372 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6387244462966919 1.372359037399292 -0.01722737587988377 0.6387244462966919 1.372359037399292 -0.01722737587988377 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6532744765281677 1.376864433288574 -0.01283644884824753 0.6532744765281677 1.376864433288574 -0.01283644884824753 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6602018475532532 1.370380640029907 -0.01594656147062779 0.6602018475532532 1.370380640029907 -0.01594656147062779 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6648701429367065 1.384141802787781 -0.008783668279647827 0.6648701429367065 1.384141802787781 -0.008783668279647827 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6745318174362183 1.379353284835815 -0.0115525983273983 0.6745318174362183 1.379353284835815 -0.0115525983273983 0.674536406993866 1.379023313522339 -0.002444729208946228 0.674536406993866 1.379023313522339 -0.002444729208946228 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.674536406993866 1.379023313522339 -0.002444729208946228 0.674536406993866 1.379023313522339 -0.002444729208946228 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6723722815513611 1.393458366394043 -0.005210716277360916 0.6723722815513611 1.393458366394043 -0.005210716277360916 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6871697902679443 1.403846859931946 -0.004648752510547638 0.6871697902679443 1.403846859931946 -0.004648752510547638 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6842474937438965 1.416748404502869 -0.002315051853656769 0.6842474937438965 1.416748404502869 -0.002315051853656769 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6724337339401245 1.414421319961548 0.0001581460237503052 0.6724337339401245 1.414421319961548 0.0001581460237503052 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6653975248336792 1.423992514610291 0.001962412148714066 0.6653975248336792 1.423992514610291 0.001962412148714066 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6753374934196472 1.428580522537231 -0.0007079318165779114 0.6753374934196472 1.428580522537231 -0.0007079318165779114 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6539998650550842 1.431669116020203 0.003241512924432755 0.6539998650550842 1.431669116020203 0.003241512924432755 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6613119840621948 1.438085556030273 0.0002653300762176514 0.6613119840621948 1.438085556030273 0.0002653300762176514 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6395849585533142 1.4366854429245 0.004135128110647202 0.6395849585533142 1.4366854429245 0.004135128110647202 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6435492634773254 1.444317102432251 0.000764600932598114 0.6435492634773254 1.444317102432251 0.000764600932598114 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6237851977348328 1.446662187576294 0.0009942986071109772 0.6237851977348328 1.446662187576294 0.0009942986071109772 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6235514283180237 1.438539981842041 0.004813771694898605 0.6235514283180237 1.438539981842041 0.004813771694898605 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6236364245414734 1.441838026046753 -0.002309773117303848</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1518\" source=\"#ID1719\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1716\">\r\n\t\t\t\t\t<float_array count=\"4554\" id=\"ID1720\">0.7116505720515308 0.7019729757605577 0.02806073057845515 0.5352317954222186 0.6829027544207439 0.4971627029189433 0.7372453629465509 0.3797436521099645 0.5588058996610492 -0.7372453629465509 -0.3797436521099645 -0.5588058996610492 -0.5352317954222186 -0.6829027544207439 -0.4971627029189433 -0.7116505720515308 -0.7019729757605577 -0.02806073057845515 0.729415059257715 0.4062382325778888 0.5503854737545836 -0.729415059257715 -0.4062382325778888 -0.5503854737545836 0.321802298597238 0.8322073122563755 0.4515243847729088 -0.321802298597238 -0.8322073122563755 -0.4515243847729088 0.855124220806447 0.1136881400387027 -0.505803888680887 0.8413370770380463 0.1893915278736966 -0.506243787093475 -0.8413370770380463 -0.1893915278736966 0.506243787093475 -0.855124220806447 -0.1136881400387027 0.505803888680887 -0.3799838754524652 -0.01450618074628774 0.924879357060304 -0.3750053434817528 0.09080767763385791 0.9225643381590672 -0.3792262621876895 -0.05514944765367602 0.9236590174358977 0.3792262621876895 0.05514944765367602 -0.9236590174358977 0.3750053434817528 -0.09080767763385791 -0.9225643381590672 0.3799838754524652 0.01450618074628774 -0.924879357060304 0.8189219909649463 -0.02915452216736438 0.5731638391866684 -0.8189219909649463 0.02915452216736438 -0.5731638391866684 -0.3666375048501143 -0.1470177247358506 0.9186744410566651 -0.3567132285873039 -0.1796770420002411 0.9167725089294866 0.3567132285873039 0.1796770420002411 -0.9167725089294866 0.3666375048501143 0.1470177247358506 -0.9186744410566651 0.4686564846496857 0.8829194322990098 0.02853726449037389 -0.4686564846496857 -0.8829194322990098 -0.02853726449037389 0.7523942369743223 0.4659132093646853 -0.4656477139504997 -0.7523942369743223 -0.4659132093646853 0.4656477139504997 0.8259663651628073 -0.2402977284833706 -0.5099378053306815 -0.8259663651628073 0.2402977284833706 0.5099378053306815 -0.3628069145608261 0.1115693870564698 0.925161291137225 0.3628069145608261 -0.1115693870564698 -0.925161291137225 0.8229528688625568 0.02578184751549621 0.5675243360152719 -0.8229528688625568 -0.02578184751549621 -0.5675243360152719 0.8318723466231729 -0.2056358004014074 -0.5154632057838153 -0.8318723466231729 0.2056358004014074 0.5154632057838153 -0.328304684287926 -0.2624760880002339 0.9073711134385416 0.328304684287926 0.2624760880002339 -0.9073711134385416 0.1228724497272809 0.8950183205142063 0.4287709960362834 -0.1228724497272809 -0.8950183205142063 -0.4287709960362834 -0.2545492831649428 -0.3210323987497553 -0.912218647799524 -0.247187829008473 -0.2985438407088852 -0.9218295679597535 -0.1524397997750927 -0.466420870746587 -0.8713286858450864 0.1524397997750927 0.466420870746587 0.8713286858450864 0.247187829008473 0.2985438407088852 0.9218295679597535 0.2545492831649428 0.3210323987497553 0.912218647799524 -0.3131323569893013 -0.1234289045201013 -0.9416546248679992 -0.2995191208205662 -0.1347819126211434 -0.944522171414235 0.2995191208205662 0.1347819126211434 0.944522171414235 0.3131323569893013 0.1234289045201013 0.9416546248679992 -0.7112085439326217 -0.7025344977933938 -0.02505367133623061 -0.5589780317367358 -0.6499018215929607 -0.5149477471801155 -0.9359937184041439 -0.3517886004573934 -0.01267042604699992 0.9359937184041439 0.3517886004573934 0.01267042604699992 0.5589780317367358 0.6499018215929607 0.5149477471801155 0.7112085439326217 0.7025344977933938 0.02505367133623061 -0.3329794829029215 0.2202503635923341 0.9168502829269061 0.3329794829029215 -0.2202503635923341 -0.9168502829269061 -0.328986642245139 -0.8033618035689207 -0.4963643840876978 -0.4661179128147164 -0.8841410633583626 -0.03207290814372939 0.4661179128147164 0.8841410633583626 0.03207290814372939 0.328986642245139 0.8033618035689207 0.4963643840876978 0.8306502802298186 -0.5566063174715573 0.01447478168665118 -0.8306502802298186 0.5566063174715573 -0.01447478168665118 0.694557029986885 -0.529069519817447 -0.4875202306529788 -0.694557029986885 0.529069519817447 0.4875202306529788 -0.1306463611173388 -0.8662097764505499 -0.4822988197251642 -0.2464249161348628 -0.9684800694603204 -0.03634715623069741 0.2464249161348628 0.9684800694603204 0.03634715623069741 0.1306463611173388 0.8662097764505499 0.4822988197251642 -0.3138758323648135 -0.2842246126968075 0.9059240207625833 0.3138758323648135 0.2842246126968075 -0.9059240207625833 0.2541085597975535 0.9666060045039202 0.03319144309277439 -0.2541085597975535 -0.9666060045039202 -0.03319144309277439 0.5643084556059977 0.713996570925768 -0.4144452480579535 -0.5643084556059977 -0.713996570925768 0.4144452480579535 -0.3139147437445971 0.05130004323244548 -0.9480642590162933 0.3139147437445971 -0.05130004323244548 0.9480642590162933 -0.9597626381272596 -0.2806419182355923 -0.009787348162296133 0.9597626381272596 0.2806419182355923 0.009787348162296133 -0.3220200489155827 0.2145009277290257 0.9221130300021755 0.3220200489155827 -0.2145009277290257 -0.9221130300021755 0.7616505158844272 -0.3651635953362657 0.5352980854571381 -0.7616505158844272 0.3651635953362657 -0.5352980854571381 -0.31676822712825 0.0926484873080989 -0.9439672388814911 0.31676822712825 -0.0926484873080989 0.9439672388814911 0.06286198971483102 -0.8760278648219967 -0.4781459508398103 -0.06286198971483102 0.8760278648219967 0.4781459508398103 -0.25708857985887 -0.3475523037338947 0.9017277073903252 0.25708857985887 0.3475523037338947 -0.9017277073903252 -0.07305742842861696 0.9059545913829299 0.4170238488427085 0.07305742842861696 -0.9059545913829299 -0.4170238488427085 -0.03945429889179408 -0.5382346721190098 -0.8418710091385134 0.03945429889179408 0.5382346721190098 0.8418710091385134 -0.9931124712854924 0.1171189204173347 0.003282964742422807 -0.9848237659908908 0.1734584932748857 0.00585670985499521 0.9848237659908908 -0.1734584932748857 -0.00585670985499521 0.9931124712854924 -0.1171189204173347 -0.003282964742422807 -0.8474458355869826 0.5305447005891429 0.01891762202437913 -0.8283359302926573 0.5598431464464617 0.0208623575638909 0.8283359302926573 -0.5598431464464617 -0.0208623575638909 0.8474458355869826 -0.5305447005891429 -0.01891762202437913 -0.2699934504075681 0.3208622462244649 0.9078276024030152 0.2699934504075681 -0.3208622462244649 -0.9078276024030152 0.07033313167956884 -0.559557338004145 -0.8258019351356954 -0.07033313167956884 0.559557338004145 0.8258019351356954 0.5872910630796832 -0.8093742823861758 -0.001574242229880643 -0.5872910630796832 0.8093742823861758 0.001574242229880643 0.5099087873610187 -0.729679154476476 -0.4555890254324727 -0.5099087873610187 0.729679154476476 0.4555890254324727 -0.2828697093225621 0.2426624781101927 -0.9279545512928904 0.2828697093225621 -0.2426624781101927 0.9279545512928904 0.1787386710512955 -0.5393006872107224 -0.8229260332769035 -0.1787386710512955 0.5393006872107224 0.8229260332769035 -0.03438297213929174 -0.9987484597462316 -0.03632251892970664 0.03438297213929174 0.9987484597462316 0.03632251892970664 -0.251236181078625 -0.3570388125521918 0.8996686432505855 0.251236181078625 0.3570388125521918 -0.8996686432505855 0.04874403586048696 0.9982741021679448 0.03275417391440571 -0.04874403586048696 -0.9982741021679448 -0.03275417391440571 0.3711175758422611 0.8484642387304381 -0.3773329835788833 -0.3711175758422611 -0.8484642387304381 0.3773329835788833 -0.6057070026736339 0.7951511560146045 0.02921756322420963 0.6057070026736339 -0.7951511560146045 -0.02921756322420963 -0.2698502094419589 0.2961333551369372 0.9162346317616856 0.2698502094419589 -0.2961333551369372 -0.9162346317616856 0.581626210109002 -0.6635696771839857 0.4705169871919397 -0.581626210109002 0.6635696771839857 -0.4705169871919397 -0.2686449183098566 0.2880745197099597 -0.9191534033882303 0.2686449183098566 -0.2880745197099597 0.9191534033882303 -0.5932471661465507 0.8044804555539565 0.02947874642493615 0.5932471661465507 -0.8044804555539565 -0.02947874642493615 0.2823761928648434 -0.4807485748464899 -0.8301472721669484 -0.2823761928648434 0.4807485748464899 0.8301472721669484 0.2505434470073428 -0.8378378761168972 -0.4850316221707672 -0.2505434470073428 0.8378378761168972 0.4850316221707672 -0.1747244569420722 -0.3952885920585754 0.9017861681876959 0.1747244569420722 0.3952885920585754 -0.9017861681876959 -0.2697877181305762 0.8647799818370642 0.4235211566849804 0.2697877181305762 -0.8647799818370642 -0.4235211566849804 -0.2021560468597133 0.3530340854778994 0.9135096426468835 -0.1918736220987687 0.3816584571203039 0.9041688643451774 0.1918736220987687 -0.3816584571203039 -0.9041688643451774 0.2021560468597133 -0.3530340854778994 -0.9135096426468835 0.169306486038657 0.9176716277233639 -0.359463624664296 -0.169306486038657 -0.9176716277233639 0.359463624664296 0.3502002158373024 -0.9365409557929096 -0.01583814856635804 -0.3502002158373024 0.9365409557929096 0.01583814856635804 0.311547543346312 -0.847393191175511 -0.4299568673532981 -0.311547543346312 0.847393191175511 0.4299568673532981 -0.2053896947839419 0.4066607887801326 -0.8901921568657408 0.2053896947839419 -0.4066607887801326 0.8901921568657408 -0.3625233878365697 0.931362345990689 0.03377830283209101 0.3625233878365697 -0.931362345990689 -0.03377830283209101 -0.03194270061975638 0.9318493581013336 -0.3614366302455372 -0.1550206914942187 0.9873724139859552 0.03262363113146507 0.1550206914942187 -0.9873724139859552 -0.03262363113146507 0.03194270061975638 -0.9318493581013336 0.3614366302455372 0.1733344233984457 -0.9842509088958912 -0.03471780526964243 -0.1733344233984457 0.9842509088958912 0.03471780526964243 -0.1804037074195329 -0.4056034152759444 0.896069401255158 0.1804037074195329 0.4056034152759444 -0.896069401255158 -0.1087946025738983 0.4031129492699224 0.9086603791195544 0.1087946025738983 -0.4031129492699224 -0.9086603791195544 0.363123457417921 -0.8365194497559559 0.4103371356005304 -0.363123457417921 0.8365194497559559 -0.4103371356005304 -0.1858304765037381 0.434796503264318 -0.8811464320710353 0.1858304765037381 -0.434796503264318 0.8811464320710353 -0.3566845833797729 0.9336121676703839 0.03382940077809265 0.3566845833797729 -0.9336121676703839 -0.03382940077809265 -0.1232190864579312 0.3821508503608651 0.9158481229444871 0.1232190864579312 -0.3821508503608651 -0.9158481229444871 -0.3718655359727516 0.9277850050789988 0.03051241560840916 0.3718655359727516 -0.9277850050789988 -0.03051241560840916 0.3769009454591373 -0.3789257877162465 -0.8451987486476956 -0.3769009454591373 0.3789257877162465 0.8451987486476956 0.442938843698188 -0.7517372087668981 -0.4885656042934923 -0.442938843698188 0.7517372087668981 0.4885656042934923 -0.08865885186649802 -0.4049120996922912 0.9100471413660363 0.08865885186649802 0.4049120996922912 -0.9100471413660363 -0.4722388218988064 0.759623670618326 0.4471715265174743 0.4722388218988064 -0.759623670618326 -0.4471715265174743 0.134922110185194 -0.9904818529278425 -0.02723459571578625 -0.134922110185194 0.9904818529278425 0.02723459571578625 0.1147983128463747 -0.9010408722441773 -0.4182662954543172 -0.1147983128463747 0.9010408722441773 0.4182662954543172 -0.1350494162392188 0.8787776229646012 -0.4577243106392008 0.1350494162392188 -0.8787776229646012 0.4577243106392008 -0.1391797601044876 0.9896212261704099 0.03576063604344212 0.1391797601044876 -0.9896212261704099 -0.03576063604344212 -0.02950715254320219 0.3883564831861083 0.9210366821772682 0.02950715254320219 -0.3883564831861083 -0.9210366821772682 -0.2379134067521402 0.8910569312600233 -0.3865420496415115 0.2379134067521402 -0.8910569312600233 0.3865420496415115 0.4018521372800273 -0.9154653428515124 -0.02093002152978025 -0.4018521372800273 0.9154653428515124 0.02093002152978025 -0.1000677760783224 -0.4248498934504731 0.899716070894513 0.1000677760783224 0.4248498934504731 -0.899716070894513 0.1492709696764515 -0.916415408590717 0.3713502073641012 -0.1492709696764515 0.916415408590717 -0.3713502073641012 -0.08636545570398857 0.5299273874299503 -0.8436337902862293 0.08636545570398857 -0.5299273874299503 0.8436337902862293 -0.03901069718032842 0.3769273918901466 0.9254209348984906 0.03901069718032842 -0.3769273918901466 -0.9254209348984906 -0.6676185415547608 0.5690876826141089 0.480025720632965 0.6676185415547608 -0.5690876826141089 -0.480025720632965 -0.6097251862143607 0.7923030128011297 0.02216152526601627 0.6097251862143607 -0.7923030128011297 -0.02216152526601627 0.4546240055378977 -0.2370235592359574 -0.8585667393719582 -0.4546240055378977 0.2370235592359574 0.8585667393719582 0.6358744733336068 -0.5907466388294836 -0.4966709805035683 -0.6358744733336068 0.5907466388294836 0.4966709805035683 -0.007510637923550951 -0.3776573962138263 0.92591494285543 0.007510637923550951 0.3776573962138263 -0.92591494285543 -0.06860178126321714 -0.9970229180370155 -0.03520080278158875 0.06860178126321714 0.9970229180370155 0.03520080278158875 -0.08047318131380161 -0.9028415724750428 -0.4223756173123964 0.08047318131380161 0.9028415724750428 0.4223756173123964 0.0590008412788316 0.8987807465515142 -0.4344100256171499 -0.0590008412788316 -0.8987807465515142 0.4344100256171499 0.07260530576763689 0.9967081490525157 0.03607402371091806 -0.07260530576763689 -0.9967081490525157 -0.03607402371091806 0.04179726438317089 0.3418517158216679 0.938823941471384 -0.04179726438317089 -0.3418517158216679 -0.938823941471384 -0.01504580730471367 -0.4057369034090668 0.9138660672629067 0.01504580730471367 0.4057369034090668 -0.9138660672629067 -0.4516677406065686 0.7787878965067607 -0.4352995110839578 0.4516677406065686 -0.7787878965067607 0.4352995110839578 0.6412957468603072 -0.7670420594340883 -0.0196530943617914 -0.6412957468603072 0.7670420594340883 0.0196530943617914 -0.05434906373268483 -0.9322524740024467 0.357703094741572 0.05434906373268483 0.9322524740024467 -0.357703094741572 0.02123446767469484 0.5779589524566412 -0.8157895235033325 -0.02123446767469484 -0.5779589524566412 0.8157895235033325 0.0434949249033366 0.3321800355439101 0.9422126169255535 -0.0434949249033366 -0.3321800355439101 -0.9422126169255535 0.06241270493577751 -0.3162716667464053 0.9466133778243631 -0.06241270493577751 0.3162716667464053 -0.9466133778243631 -0.815174793494416 0.281310116120255 0.5063147979466379 0.815174793494416 -0.281310116120255 -0.5063147979466379 -0.8494983244486053 0.5275732145369764 0.004370361785187775 0.8494983244486053 -0.5275732145369764 -0.004370361785187775 0.498695211023203 -0.05462154790820064 -0.8650546647505205 -0.498695211023203 0.05462154790820064 0.8650546647505205 0.8439563683662466 -0.5361045541552577 -0.01815365825525916 -0.8439563683662466 0.5361045541552577 0.01815365825525916 -0.276946828238538 -0.959819750482844 -0.04523826822132948 0.276946828238538 0.959819750482844 0.04523826822132948 -0.2862314669878527 -0.8448820396627895 -0.4519357104292893 0.2862314669878527 0.8448820396627895 0.4519357104292893 0.2515059717810537 0.8703288037188468 -0.4234058568038338 -0.2515059717810537 -0.8703288037188468 0.4234058568038338 0.2850084136732987 0.9578499598644292 0.03596746478612475 -0.2850084136732987 -0.9578499598644292 -0.03596746478612475 0.1022619630699641 0.2645132927119682 0.9589448414208974 -0.1022619630699641 -0.2645132927119682 -0.9589448414208974 0.8727529271744258 -0.4877959513010229 -0.01890603085794959 -0.8727529271744258 0.4877959513010229 0.01890603085794959 0.06500083458049345 -0.3441838698741389 0.936649537032022 -0.06500083458049345 0.3441838698741389 -0.936649537032022 -0.6576857543347527 0.5643110069948806 -0.4990015390051933 0.6576857543347527 -0.5643110069948806 0.4990015390051933 0.4964686844999146 -0.01406475665816916 -0.8679406822652517 -0.4964686844999146 0.01406475665816916 0.8679406822652517 -0.2544202722548222 -0.8958058011797969 0.3644204874021279 0.2544202722548222 0.8958058011797969 -0.3644204874021279 0.1346324613359429 0.5838208018935096 -0.8006418497874347 -0.1346324613359429 -0.5838208018935096 0.8006418497874347 0.1124337766039404 0.244863621927643 0.9630163303574095 -0.1124337766039404 -0.244863621927643 -0.9630163303574095 0.8819699798401712 0.007572893322439157 -0.4712447410289633 -0.8819699798401712 -0.007572893322439157 0.4712447410289633 0.1171534773762263 -0.2299446824738198 0.9661265474774371 -0.1171534773762263 0.2299446824738198 -0.9661265474774371 -0.8597906522069024 -0.06611795836848429 0.506348150938475 0.8597906522069024 0.06611795836848429 -0.506348150938475 -0.8025477729693723 0.198588850119454 -0.5625651435257376 0.8025477729693723 -0.198588850119454 0.5625651435257376 0.4943729432975408 0.1453021156847469 -0.8570196544495715 -0.4943729432975408 -0.1453021156847469 0.8570196544495715 -0.5010991958103166 -0.8640141958952348 -0.04877566247387134 0.5010991958103166 0.8640141958952348 0.04877566247387134 -0.4953813229015003 -0.7179144481291333 -0.4890768754375954 0.4953813229015003 0.7179144481291333 0.4890768754375954 0.4523458532938655 0.7826955050850751 -0.4275172222583134 -0.4523458532938655 -0.7826955050850751 0.4275172222583134 0.5160018988886697 0.8561791547715092 0.02644419176362373 -0.5160018988886697 -0.8561791547715092 -0.02644419176362373 0.1456705024403001 0.1553393497644045 0.9770618154106537 -0.1456705024403001 -0.1553393497644045 -0.9770618154106537 0.9975805439147285 -0.06942566409681915 -0.00362430234802979 -0.9975805439147285 0.06942566409681915 0.00362430234802979 0.1299134657451305 -0.2399575846401426 0.9620513754429946 -0.1299134657451305 0.2399575846401426 -0.9620513754429946 -0.857450808044697 -0.02494771222355772 0.5139608189719394 0.857450808044697 0.02494771222355772 -0.5139608189719394 -0.7992103629099479 0.2325402380412265 -0.5542452828027311 0.7992103629099479 -0.2325402380412265 0.5542452828027311 -0.454522715867437 -0.800084406340553 0.3915022905311971 0.454522715867437 0.800084406340553 -0.3915022905311971 0.2485703518833973 0.543191774852405 -0.8019697474950399 -0.2485703518833973 -0.543191774852405 0.8019697474950399 0.1547367922380168 0.1222975676550789 0.9803569911381977 -0.1547367922380168 -0.1222975676550789 -0.9803569911381977 0.4386228162840494 0.3279105374597031 -0.8367106455985472 -0.4386228162840494 -0.3279105374597031 0.8367106455985472 0.8139598585992446 0.3699242069509965 -0.447912301350135 -0.8139598585992446 -0.3699242069509965 0.447912301350135 0.1540933681755707 -0.1214356495907311 0.9805654577297659 -0.1540933681755707 0.1214356495907311 -0.9805654577297659 -0.7859810059008962 -0.3952304851253901 0.4754226771942673 0.7859810059008962 0.3952304851253901 -0.4754226771942673 -0.9306655580433257 -0.363171696397784 -0.04436144731026219 0.9306655580433257 0.363171696397784 0.04436144731026219 -0.7418627729000863 -0.6686517066395952 -0.0504432492307107 0.7418627729000863 0.6686517066395952 0.0504432492307107 -0.6931561066715604 -0.4793907719949321 -0.5382556079689531 0.6931561066715604 0.4793907719949321 0.5382556079689531 0.6572411328462384 0.6157850077569763 -0.4345606028124661 -0.6572411328462384 -0.6157850077569763 0.4345606028124661 0.7519849967575999 0.6588078537453647 0.02215347591008901 -0.7519849967575999 -0.6588078537453647 -0.02215347591008901 0.1709523652886035 0.02372562364279051 0.9849935957076027 -0.1709523652886035 -0.02372562364279051 -0.9849935957076027 -0.8070117603267765 -0.1635411683109926 -0.5674383710692758 0.8070117603267765 0.1635411683109926 0.5674383710692758 0.9307878365865234 0.3653327892568364 0.01288240491520963 -0.9307878365865234 -0.3653327892568364 -0.01288240491520963 0.1665431576706366 -0.1041956339718937 0.9805134606390106 -0.1665431576706366 0.1041956339718937 -0.9805134606390106 -0.6462109456116381 -0.627112372541189 0.4349039962767338 0.6462109456116381 0.627112372541189 -0.4349039962767338 0.3568995735915838 0.4535783326864708 -0.8166329594668016 -0.3568995735915838 -0.4535783326864708 0.8166329594668016 0.1683205277786634 -0.008532265206758354 0.9856953892449502 -0.1683205277786634 0.008532265206758354 -0.9856953892449502 -0.7170416727855283 -0.6951668545447707 -0.05093411264821503 0.7170416727855283 0.6951668545447707 0.05093411264821503 0.3464913921873409 0.4660477621064498 -0.8140904117944446 -0.3464913921873409 -0.4660477621064498 0.8140904117944446 0.6355101720935054 0.6397392059991743 -0.4322737205443206 -0.6355101720935054 -0.6397392059991743 0.4322737205443206 0.1685926874597324 0.005759232575638584 0.9856689794120767 -0.1685926874597324 -0.005759232575638584 -0.9856689794120767 -0.6279387722639632 -0.6490552974037456 0.4294416365465298 0.6279387722639632 0.6490552974037456 -0.4294416365465298 -0.797320525724816 -0.3587274569573655 0.4853808719787014 0.797320525724816 0.3587274569573655 -0.4853808719787014 -0.8133861344483948 -0.1226042703071534 -0.5686573565773577 0.8133861344483948 0.1226042703071534 0.5686573565773577 0.8277356009579059 0.3350499721835259 -0.4501058664877332 -0.8277356009579059 -0.3350499721835259 0.4501058664877332 0.9459915190235739 0.323992501916216 0.0113536178173332 -0.9459915190235739 -0.323992501916216 -0.0113536178173332 0.1643003987027399 -0.1191713616969986 0.97918515385876 -0.1643003987027399 0.1191713616969986 -0.97918515385876 -0.6747003574537656 -0.5099656113749023 -0.5335864530390395 0.6747003574537656 0.5099656113749023 0.5335864530390395 0.7259870510036196 0.6873468735703761 0.02229522747355532 -0.7259870510036196 -0.6873468735703761 -0.02229522747355532 0.1700498432580083 0.03943727820313243 0.984646003341229 -0.1700498432580083 -0.03943727820313243 -0.984646003341229 -0.7985694608281411 -0.36356139000931 0.4796977505963002 0.7985694608281411 0.36356139000931 -0.4796977505963002 -0.8005808643764349 -0.1773014997979544 -0.5723936213513181 0.8005808643764349 0.1773014997979544 0.5723936213513181 0.4462266470758223 0.310737547532054 -0.8392401062826026 -0.4462266470758223 -0.310737547532054 0.8392401062826026 0.1512034824032725 -0.1336368500728458 0.979427740679082 -0.1512034824032725 0.1336368500728458 -0.979427740679082 -0.4337063421292695 -0.8129751538608235 0.3885488489261287 0.4337063421292695 0.8129751538608235 -0.3885488489261287 -0.4768871581027608 -0.8776648367457268 -0.04778151082551644 0.4768871581027608 0.8776648367457268 0.04778151082551644 0.2380292631613483 0.5528668412542277 -0.7985488874955861 -0.2380292631613483 -0.5528668412542277 0.7985488874955861 0.4293378445864561 0.7959894105933828 -0.4266964652174365 -0.4293378445864561 -0.7959894105933828 0.4266964652174365 0.1533328329530971 0.1385764181221323 0.9784097396689272 -0.1533328329530971 -0.1385764181221323 -0.9784097396689272 -0.8569140460260113 0.01557632081547185 0.5152239279703386 0.8569140460260113 -0.01557632081547185 -0.5152239279703386 -0.7896054920572532 0.2717657566155899 -0.5501513795712766 0.7896054920572532 -0.2717657566155899 0.5501513795712766 0.8795910895700612 -0.03296154049339731 -0.4745872438206223 -0.8795910895700612 0.03296154049339731 0.4745872438206223 0.9931770743846931 -0.1165152085372383 -0.004848205460349638 -0.9931770743846931 0.1165152085372383 0.004848205460349638 0.1241435371507359 -0.2522091035213024 0.9596764820941924 -0.1241435371507359 0.2522091035213024 -0.9596764820941924 0.1440144604828666 0.16957260713744 0.9749384422005526 -0.1440144604828666 -0.16957260713744 -0.9749384422005526 -0.4731542405155758 -0.7367698918075729 -0.4830064090754759 0.4731542405155758 0.7367698918075729 0.4830064090754759 0.4914178532387069 0.8706231096064739 0.02288874259137876 -0.4914178532387069 -0.8706231096064739 -0.02288874259137876 -0.8609183543153827 -0.02973020345434168 0.5078737069444103 0.8609183543153827 0.02973020345434168 -0.5078737069444103 -0.7938562947689128 0.2406997805955247 -0.5584405061213231 0.7938562947689128 -0.2406997805955247 0.5584405061213231 0.4981430677576512 0.1224428744880163 -0.8584062130087993 -0.4981430677576512 -0.1224428744880163 0.8584062130087993 0.1121471507760574 -0.2398416149881592 0.9643127170646894 -0.1121471507760574 0.2398416149881592 -0.9643127170646894 0.1062963897775544 0.2553827694775809 0.960979041693532 -0.1062963897775544 -0.2553827694775809 -0.960979041693532 -0.2334309899728497 -0.9020887559179942 0.3629681106745063 0.2334309899728497 0.9020887559179942 -0.3629681106745063 -0.2546368489860527 -0.9661353058705178 -0.04174501034776832 0.2546368489860527 0.9661353058705178 0.04174501034776832 0.1225912726360824 0.5856443460283727 -0.8012440825606546 -0.1225912726360824 -0.5856443460283727 0.8012440825606546 0.2322457144925312 0.8745419870190941 -0.4257208487266607 -0.2322457144925312 -0.8745419870190941 0.4257208487266607 -0.8298684604430325 0.5578900253539257 0.008778267056029602 0.8298684604430325 -0.5578900253539257 -0.008778267056029602 -0.6381582281851053 0.592109930329274 -0.4920974560034928 0.6381582281851053 -0.592109930329274 0.4920974560034928 0.7845366827042137 -0.3705960259960854 -0.4971526717290942 -0.7845366827042137 0.3705960259960854 0.4971526717290942 0.8531095620720463 -0.5209766158183181 -0.02806137686810723 -0.8531095620720463 0.5209766158183181 0.02806137686810723 0.05745209060252372 -0.3531345851308873 0.933806844090273 -0.05745209060252372 0.3531345851308873 -0.933806844090273 0.2642023099047379 0.96389792800383 0.03313493369427906 -0.2642023099047379 -0.96389792800383 -0.03313493369427906 0.09617134804706679 0.273507182340263 0.9570500995366439 -0.09617134804706679 -0.273507182340263 -0.9570500995366439 -0.2627828300824376 -0.8573916870731996 -0.4425208234101954 0.2627828300824376 0.8573916870731996 0.4425208234101954 -0.8054325663980541 0.3138328927145027 0.5027795704241488 0.8054325663980541 -0.3138328927145027 -0.5027795704241488 0.5011990702762256 -0.07684442230173266 -0.8619132361875874 -0.5011990702762256 0.07684442230173266 0.8619132361875874 0.05596797787530988 -0.3240722944377901 0.9443753138611656 -0.05596797787530988 0.3240722944377901 -0.9443753138611656 0.03900188409162862 0.8991548421820407 -0.435889232280281 -0.03900188409162862 -0.8991548421820407 0.435889232280281 0.03524069011300303 0.3386802113123089 0.9402413563685705 -0.03524069011300303 -0.3386802113123089 -0.9402413563685705 -0.03378444717273314 -0.9335367144642884 0.356886275830907 0.03378444717273314 0.9335367144642884 -0.356886275830907 -0.0479048455183228 -0.9982543663355565 -0.03454483851260853 0.0479048455183228 0.9982543663355565 0.03454483851260853 0.009899560068351961 0.5749211771574377 -0.8181489098974338 -0.009899560068351961 -0.5749211771574377 0.8181489098974338 -0.5854927501762082 0.8104056044264791 0.02099990012483857 0.5854927501762082 -0.8104056044264791 -0.02099990012483857 -0.4341226606551393 0.7959770683591242 -0.4218507107403244 0.4341226606551393 -0.7959770683591242 0.4218507107403244 0.6153483072657556 -0.6092314275743322 -0.5001834947305943 -0.6153483072657556 0.6092314275743322 0.5001834947305943 0.6198696161494136 -0.7840905370094322 -0.03104333659642618 -0.6198696161494136 0.7840905370094322 0.03104333659642618 -0.02407700961637427 -0.4097001398519071 0.9119024580585694 0.02407700961637427 0.4097001398519071 -0.9119024580585694 0.05033926183616807 0.9980435793235593 0.03708062147278299 -0.05033926183616807 -0.9980435793235593 -0.03708062147278299 0.03481731939135043 0.3480096793275698 0.936844179874499 -0.03481731939135043 -0.3480096793275698 -0.936844179874499 -0.06080258187760262 -0.9051338646646926 -0.4207561444283083 0.06080258187760262 0.9051338646646926 0.4207561444283083 -0.6482226276671629 0.6028910632744456 0.4651126646352332 0.6482226276671629 -0.6028910632744456 -0.4651126646352332 0.4479077752369409 -0.2541629122600133 -0.8571929998044797 -0.4479077752369409 0.2541629122600133 0.8571929998044797 -0.01557210102520522 -0.3810223222922303 0.9244346918980793 0.01557210102520522 0.3810223222922303 -0.9244346918980793 -0.09713865155677696 0.5222654339317011 -0.8472324940025986 0.09713865155677696 -0.5222654339317011 0.8472324940025986 -0.1553642244159123 0.8736924138162414 -0.4610027373146406 0.1553642244159123 -0.8736924138162414 0.4610027373146406 -0.04773883644661871 0.379195553171683 0.9240842688573074 0.04773883644661871 -0.379195553171683 -0.9240842688573074 0.1709478385442632 -0.911260122999803 0.3746756260119262 -0.1709478385442632 0.911260122999803 -0.3746756260119262 0.1565031294805676 -0.9873397968093323 -0.02582433153627022 -0.1565031294805676 0.9873397968093323 0.02582433153627022 -0.3468199483393967 0.9374158955969509 0.03110244549910115 0.3468199483393967 -0.9374158955969509 -0.03110244549910115 -0.2151544640411276 0.8989222404764934 -0.381637736839397 0.2151544640411276 -0.8989222404764934 0.381637736839397 0.422916307869554 -0.7599392226206774 -0.4935931264317454 -0.422916307869554 0.7599392226206774 0.4935931264317454 0.377073827552353 -0.9255320285439551 -0.03472452612103082 -0.377073827552353 0.9255320285439551 0.03472452612103082 -0.108627411872101 -0.4243902982928708 0.898939909062256 0.108627411872101 0.4243902982928708 -0.898939909062256 0.1350124515051911 -0.8980485648208227 -0.4186650369469836 -0.1350124515051911 0.8980485648208227 0.4186650369469836 -0.1612442781859131 0.9862794914739842 0.03539841027678021 0.1612442781859131 -0.9862794914739842 -0.03539841027678021 -0.03729995421693928 0.3914302756617625 0.9194514955726434 0.03729995421693928 -0.3914302756617625 -0.9194514955726434 -0.4512633063408924 0.7735750642969342 0.4449079098513309 0.4512633063408924 -0.7735750642969342 -0.4449079098513309 0.3680151996151649 -0.3928969007208333 -0.8427317712393275 -0.3680151996151649 0.3928969007208333 0.8427317712393275 -0.09727939456517401 -0.4055410823750608 0.9088856638208666 0.09727939456517401 0.4055410823750608 -0.9088856638208666 0.3736595622003403 -0.9274540404004935 -0.0144060584841893 -0.3736595622003403 0.9274540404004935 0.0144060584841893 -0.1954592889357965 0.4220230118545197 -0.8852639402087679 0.1954592889357965 -0.4220230118545197 0.8852639402087679 -0.3804028581403459 0.9242070827686287 0.03368877675067691 0.3804028581403459 -0.9242070827686287 -0.03368877675067691 -0.1318447757518489 0.3806083511958868 0.9152891554623015 0.1318447757518489 -0.3806083511958868 -0.9152891554623015 0.3857726000592082 -0.823667545072599 0.4156335841070069 -0.3857726000592082 0.823667545072599 -0.4156335841070069 -0.1338488499243973 0.9904478287972295 0.03312980236539311 0.1338488499243973 -0.9904478287972295 -0.03312980236539311 -0.01117203391103292 0.9329421369179466 -0.3598529627796139 0.01117203391103292 -0.9329421369179466 0.3598529627796139 0.2325215409716085 -0.8441077524679405 -0.4831312815454108 -0.2325215409716085 0.8441077524679405 0.4831312815454108 0.1544919375863715 -0.9873231370638004 -0.03640417887145344 -0.1544919375863715 0.9873231370638004 0.03640417887145344 -0.1883848952572948 -0.4022478600787148 0.8959396130884005 0.1883848952572948 0.4022478600787148 -0.8959396130884005 0.3323032046149535 -0.8385594970703174 -0.4317320350354011 -0.3323032046149535 0.8385594970703174 0.4317320350354011 -0.2152599790098669 0.391667221357033 -0.8945724840118505 0.2152599790098669 -0.391667221357033 0.8945724840118505 -0.3868227017761055 0.9215332032618456 0.03383419389605583 0.3868227017761055 -0.9215332032618456 -0.03383419389605583 -0.1173923091996779 0.4027715861119354 0.907741204948659 0.1173923091996779 -0.4027715861119354 -0.907741204948659 -0.2489555830704448 0.8717567970615852 0.4219729901723344 0.2489555830704448 -0.8717567970615852 -0.4219729901723344 0.2718613803360442 -0.4882181075164831 -0.8292975758886579 -0.2718613803360442 0.4882181075164831 0.8292975758886579 -0.1836681448407901 -0.3924420882711748 0.9012520290818225 0.1836681448407901 0.3924420882711748 -0.9012520290818225 0.6033379414759521 -0.6384723124391702 0.4778456179815184 -0.6033379414759521 0.6384723124391702 -0.4778456179815184 0.613143127400927 -0.7899716064930814 0.0006051906731352142 -0.613143127400927 0.7899716064930814 -0.0006051906731352142 -0.2753486370013015 0.2694802403432065 -0.922801998353977 0.2753486370013015 -0.2694802403432065 0.922801998353977 -0.6186683494355953 0.7850893088761158 0.02973634972653872 0.6186683494355953 -0.7850893088761158 -0.02973634972653872 -0.2101333340222701 0.3486910560910353 0.9133775393202985 0.2101333340222701 -0.3486910560910353 -0.9133775393202985 0.06458828602664837 0.9973981295291592 0.03202068893503747 -0.06458828602664837 -0.9973981295291592 -0.03202068893503747 0.1834284435450448 0.9148861036748122 -0.3596351253720405 -0.1834284435450448 -0.9148861036748122 0.3596351253720405 0.04707106846818684 -0.8766538121109553 -0.478813542231831 -0.04707106846818684 0.8766538121109553 0.478813542231831 -0.05240544458981807 -0.9979363572904079 -0.03710385660945478 0.05240544458981807 0.9979363572904079 0.03710385660945478 -0.2558849461871275 -0.350471967254376 0.9009396730545607 0.2558849461871275 0.350471967254376 -0.9009396730545607 -0.200694747324343 0.3777292023536014 0.9039039042319322 0.200694747324343 -0.3777292023536014 -0.9039039042319322 0.5305321316869283 -0.7131920018537039 -0.4581406178670804 -0.5305321316869283 0.7131920018537039 0.4581406178670804 -0.2880983715263597 0.2233201421009748 -0.9311967796636004 0.2880983715263597 -0.2233201421009748 0.9311967796636004 -0.6320377423804821 0.7743842637606397 0.02927975830630272 0.6320377423804821 -0.7743842637606397 -0.02927975830630272 -0.05522536770654783 0.9079808958399157 0.4153562947054256 0.05522536770654783 -0.9079808958399157 -0.4153562947054256 0.1693197659775681 -0.5435044501609175 -0.8221518895584806 -0.1693197659775681 0.5435044501609175 0.8221518895584806 -0.2624276747014604 -0.3400571667813387 0.9030464212162258 0.2624276747014604 0.3400571667813387 -0.9030464212162258 -0.2784955639681501 0.2831199724302808 0.9177599370538786 0.2784955639681501 -0.2831199724302808 -0.9177599370538786 0.7799925510025074 -0.312763053598415 0.5420248081816884 -0.7799925510025074 0.312763053598415 -0.5420248081816884 0.861350202599474 -0.5077689173607858 0.01570207133153192 -0.861350202599474 0.5077689173607858 -0.01570207133153192 -0.3203962497789111 0.06509019373873208 -0.9450447131256086 0.3203962497789111 -0.06509019373873208 0.9450447131256086 -0.8570089126585533 0.5149465289946921 0.01912579149010435 0.8570089126585533 -0.5149465289946921 -0.01912579149010435 0.2668998251241754 0.9632065101179255 0.03158642453857888 -0.2668998251241754 -0.9632065101179255 -0.03158642453857888 0.3848457984574989 0.8411597227003285 -0.3799263511739041 -0.3848457984574989 -0.8411597227003285 0.3799263511739041 -0.1463418171331631 -0.8636911306943719 -0.4823087220007961 0.1463418171331631 0.8636911306943719 0.4823087220007961 -0.2614964724511442 -0.9645806651456631 -0.0346948890005161 0.2614964724511442 0.9645806651456631 0.0346948890005161 -0.3127971824230538 -0.2727002758388455 0.9098310185004777 0.3127971824230538 0.2727002758388455 -0.9098310185004777 -0.8772394837810913 0.479727285593503 0.01768105066375627 0.8772394837810913 -0.479727285593503 -0.01768105066375627 -0.2801769327316828 0.3069223400943102 0.9095600934056521 0.2801769327316828 -0.3069223400943102 -0.9095600934056521 0.7175260310791318 -0.4930813406195232 -0.4919625862366797 -0.7175260310791318 0.4930813406195232 0.4919625862366797 -0.3153777635399161 0.02588495228063627 -0.9486131116055638 0.3153777635399161 -0.02588495228063627 0.9486131116055638 0.1393203985443418 0.8940098255258359 0.4258359524660994 -0.1393203985443418 -0.8940098255258359 -0.4258359524660994 0.0613360785267453 -0.5592548813864927 -0.8267235711629013 -0.0613360785267453 0.5592548813864927 0.8267235711629013 -0.3279772485291286 -0.2497890304277758 0.9110633154315971 0.3279772485291286 0.2497890304277758 -0.9110633154315971 -0.9954162509199361 0.09554550661859637 0.004188504446045178 0.9954162509199361 -0.09554550661859637 -0.004188504446045178 -0.3316055780471462 0.1947610534499365 0.9230958090399333 0.3316055780471462 -0.1947610534499365 -0.9230958090399333 0.8175626758962213 0.09714834888191229 0.5675856492996704 -0.8175626758962213 -0.09714834888191229 -0.5675856492996704 0.8458917130539921 -0.1331934717853834 -0.5164559118263038 -0.8458917130539921 0.1331934717853834 0.5164559118263038 -0.3083647246734359 -0.1573739027797761 -0.9381602481990684 0.3083647246734359 0.1573739027797761 0.9381602481990684 0.499020226367712 0.8660112669631548 0.03167489808647932 -0.499020226367712 -0.8660112669631548 -0.03167489808647932 0.5956904132068955 0.6858714953802544 -0.4180110326752776 -0.5956904132068955 -0.6858714953802544 0.4180110326752776 -0.3620808541156949 -0.7880834786357531 -0.4978171208227165 0.3620808541156949 0.7880834786357531 0.4978171208227165 -0.4980593539555487 -0.8665836747455885 -0.03113863519510004 0.4980593539555487 0.8665836747455885 0.03113863519510004 -0.359961397037305 -0.1644696286552123 0.9183558862951599 0.359961397037305 0.1644696286552123 -0.9183558862951599 -0.2943109012349603 -0.1612855244810798 -0.9420021618908996 0.2943109012349603 0.1612855244810798 0.9420021618908996 -0.9995126198422273 0.03115932617757232 0.00190241117719404 0.9995126198422273 -0.03115932617757232 -0.00190241117719404 -0.3430702516935164 0.1961112469923958 0.9186093735674783 0.3430702516935164 -0.1961112469923958 -0.9186093735674783 0.8174448668148598 0.04635657624701822 0.5741384480738861 -0.8174448668148598 -0.04635657624701822 -0.5741384480738861 0.8407726363999902 -0.1769178412982841 -0.5116653704437744 -0.8407726363999902 0.1769178412982841 0.5116653704437744 0.3512955557181288 0.817032719621692 0.4572187305877491 -0.3512955557181288 -0.817032719621692 -0.4572187305877491 -0.05305143425118907 -0.5294281753016813 -0.8466943678332954 0.05305143425118907 0.5294281753016813 0.8466943678332954 -0.3719113724926969 -0.1265488578829416 0.9196017168204513 0.3719113724926969 0.1265488578829416 -0.9196017168204513 -0.2430270571949046 -0.340963009566561 -0.9081200777311875 0.2430270571949046 0.340963009566561 0.9081200777311875 -0.9393207539411168 -0.3428355318660301 -0.01184564500684825 0.9393207539411168 0.3428355318660301 0.01184564500684825 -0.3671383093963134 0.09388633053469656 0.925416024668012 0.3671383093963134 -0.09388633053469656 -0.925416024668012 0.7105979357165625 0.4478711802407899 0.5426435106633837 -0.7105979357165625 -0.4478711802407899 -0.5426435106633837 0.8322464311687771 0.2410873094306051 -0.4992422127969003 -0.8322464311687771 -0.2410873094306051 0.4992422127969003 0.7492443417965902 0.6617502514901101 0.02682388746193632 -0.7492443417965902 -0.6617502514901101 -0.02682388746193632 0.7718029793325206 0.4269070610378765 -0.4712435912874016 -0.7718029793325206 -0.4269070610378765 0.4712435912874016 -0.1704424063753528 -0.418799142778685 -0.8919398321169527 0.1704424063753528 0.418799142778685 0.8919398321169527 -0.7457711985039001 -0.6657934573101565 -0.02333220274738622 0.7457711985039001 0.6657934573101565 0.02333220274738622 -0.3832975258668947 -0.03328638985510561 0.9230249308197105 0.3832975258668947 0.03328638985510561 -0.9230249308197105 0.8487165835841974 0.1691112280510487 -0.5010803860621905 -0.8487165835841974 -0.1691112280510487 0.5010803860621905 -0.2375867641878089 -0.3172653688496944 -0.9180932497363402 0.2375867641878089 0.3172653688496944 0.9180932497363402 -0.9142914964868846 -0.4047864844800893 -0.01479734550599009 0.9142914964868846 0.4047864844800893 0.01479734550599009 -0.3773142060023418 0.07298275794710361 0.9232050189374281 0.3773142060023418 -0.07298275794710361 -0.9232050189374281 0.7162917454464216 0.4292023758780845 0.550192199095849 -0.7162917454464216 -0.4292023758780845 -0.550192199095849 0.5634644328169429 0.6543425034908874 0.5043250153180574 -0.5634644328169429 -0.6543425034908874 -0.5043250153180574 -0.1654534990126832 -0.4499796035445223 -0.8775781993978512 0.1654534990126832 0.4499796035445223 0.8775781993978512 -0.7849750302322432 -0.61914690019648 -0.02170985695435957 0.7849750302322432 0.61914690019648 0.02170985695435957 -0.3812176036166756 0.001932026157005854 0.9244833183825914 0.3812176036166756 -0.001932026157005854 -0.9244833183825914 0.7062555440699734 0.7074483609393937 0.02683138227134638 -0.7062555440699734 -0.7074483609393937 -0.02683138227134638 -0.1468876452683363 -0.4681639048480643 -0.8713475643306384 0.1468876452683363 0.4681639048480643 0.8713475643306384 -0.5453398563016959 -0.6597063117067336 -0.5170996262067338 0.5453398563016959 0.6597063117067336 0.5170996262067338 -0.3801222938534106 -0.01953408970055335 0.9247299395256933 0.3801222938534106 0.01953408970055335 -0.9247299395256933 0.5267605382682085 0.6908734985756165 0.495194047106056 -0.5267605382682085 -0.6908734985756165 -0.495194047106056 0.7478726818795818 0.3581138604152929 0.5589641443569507 -0.7478726818795818 -0.3581138604152929 -0.5589641443569507 0.8574547276395824 0.09217761627415656 -0.5062357920046189 -0.8574547276395824 -0.09217761627415656 0.5062357920046189 -0.2503400554594847 -0.2899497763892844 -0.9237201869637505 0.2503400554594847 0.2899497763892844 0.9237201869637505 -0.945860714581945 -0.3243755591802412 -0.01131393905933793 0.945860714581945 0.3243755591802412 0.01131393905933793 -0.3740548322485346 0.101284626066865 0.9218592121327508 0.3740548322485346 -0.101284626066865 -0.9218592121327508 0.7456205843010635 0.4793489914736001 -0.4628979246440657 -0.7456205843010635 -0.4793489914736001 0.4628979246440657 -0.7019827698805626 -0.7116138038748113 -0.0287399534730753 0.7019827698805626 0.7116138038748113 0.0287399534730753 -0.3797743653667189 -0.05577346448259948 0.9233963136540638 0.3797743653667189 0.05577346448259948 -0.9233963136540638 0.7413117673025702 0.3838791288921039 0.550539442782967 -0.7413117673025702 -0.3838791288921039 -0.550539442782967 0.8464391172416744 0.1647749001367979 -0.5063497339665967 -0.8464391172416744 -0.1647749001367979 0.5063497339665967 -0.2583659647566177 -0.3088681222610339 -0.9153401069036172 0.2583659647566177 0.3088681222610339 0.9153401069036172 -0.9667076871678222 -0.2557261364940597 -0.008966085236136824 0.9667076871678222 0.2557261364940597 0.008966085236136824 -0.3621152032149901 0.1188767380450872 0.9245219850021557 0.3621152032149901 -0.1188767380450872 -0.9245219850021557 0.3198230567882171 0.8329970911554596 0.4514743165155507 -0.3198230567882171 -0.8329970911554596 -0.4514743165155507 0.4674475931014964 0.8835527886872145 0.02876138568748932 -0.4674475931014964 -0.8835527886872145 -0.02876138568748932 -0.03702795736669842 -0.5387038537364716 -0.8416811084625366 0.03702795736669842 0.5387038537364716 0.8416811084625366 -0.3259099937071137 -0.8059159978137687 -0.4942490065439353 0.3259099937071137 0.8059159978137687 0.4942490065439353 -0.3683565981934949 -0.1472084240102136 0.9179559338376464 0.3683565981934949 0.1472084240102136 -0.9179559338376464 0.8188476326458342 -0.04539294783510035 0.5722132773688083 -0.8188476326458342 0.04539294783510035 -0.5722132773688083 0.8222586412210436 -0.2531169247564348 -0.5097279169705816 -0.8222586412210436 0.2531169247564348 0.5097279169705816 -0.300720892527676 -0.1278968835880935 -0.9450975251082884 0.300720892527676 0.1278968835880935 0.9450975251082884 -0.9912217850814648 0.1320979721046645 0.005431256369362665 0.9912217850814648 -0.1320979721046645 -0.005431256369362665 -0.3334782498602851 0.2262070152921916 0.9152172655182589 0.3334782498602851 -0.2262070152921916 -0.9152172655182589 -0.3572490711108234 -0.1813357523302581 0.9162371123880944 0.3572490711108234 0.1813357523302581 -0.9162371123880944 0.5653065393782845 0.7136392668265392 -0.4136997865353904 -0.5653065393782845 -0.7136392668265392 0.4136997865353904 -0.4589846257788459 -0.8877888882835777 -0.0341174902192718 0.4589846257788459 0.8877888882835777 0.0341174902192718 0.8236653039657989 0.01006987565173836 0.5669868293419932 -0.8236653039657989 -0.01006987565173836 -0.5669868293419932 0.8284558720579608 -0.2197536701379031 -0.5151399737096757 -0.8284558720579608 0.2197536701379031 0.5151399737096757 -0.3142935649961468 -0.1151516845652284 -0.942316106486461 0.3142935649961468 0.1151516845652284 0.942316106486461 -0.9814065262557707 0.1917854364560292 0.007718587043729437 0.9814065262557707 -0.1917854364560292 -0.007718587043729437 -0.3228914834170022 0.217939675583032 0.9210012962767916 0.3228914834170022 -0.217939675583032 -0.9210012962767916 -0.3242624972403607 -0.2627833088868958 0.9087347057606524 0.3242624972403607 0.2627833088868958 -0.9087347057606524 0.117420388131938 0.8977396860229416 0.4245891055954867 -0.117420388131938 -0.8977396860229416 -0.4245891055954867 0.2469964941695569 0.9685320094499706 0.03063459708809317 -0.2469964941695569 -0.9685320094499706 -0.03063459708809317 0.07435299732554916 -0.5619690584054785 -0.823809692334077 -0.07435299732554916 0.5619690584054785 0.823809692334077 -0.1220295760348229 -0.8647589480038433 -0.4871352424327843 0.1220295760348229 0.8647589480038433 0.4871352424327843 0.8216169141959743 -0.5698787308324951 0.0135601789010826 -0.8216169141959743 0.5698787308324951 -0.0135601789010826 0.6877979909346258 -0.5387765752819367 -0.4864706831801484 -0.6877979909346258 0.5387765752819367 0.4864706831801484 -0.3136937401979045 0.0587051288605675 -0.9477077319543795 0.3136937401979045 -0.0587051288605675 0.9477077319543795 -0.839258447178844 0.5433306725550696 0.02090548013826136 0.839258447178844 -0.5433306725550696 -0.02090548013826136 -0.2680750835053133 0.3235315035335521 0.9074486849541071 0.2680750835053133 -0.3235315035335521 -0.9074486849541071 -0.2377611366143024 -0.9701765968443886 -0.04719123701827994 0.2377611366143024 0.9701765968443886 0.04719123701827994 -0.3107228677212897 -0.2832733326377546 0.9073078410833657 0.3107228677212897 0.2832733326377546 -0.9073078410833657 0.363472855355222 0.8517560208747094 -0.3773581380116289 -0.363472855355222 -0.8517560208747094 0.3773581380116289 0.7564578035040248 -0.3790964679218641 0.5329704114930146 -0.7564578035040248 0.3790964679218641 -0.5329704114930146 -0.3158059170904769 0.1009810182456142 -0.9434349244567545 0.3158059170904769 -0.1009810182456142 0.9434349244567545 -0.8201689820705466 0.5717011765880734 0.02192271737663839 0.8201689820705466 -0.5717011765880734 -0.02192271737663839 -0.2680299321929722 0.2977177666476841 0.9162554703088794 0.2680299321929722 -0.2977177666476841 -0.9162554703088794 0.06944199672095203 -0.8752639419260931 -0.4786343500579582 -0.06944199672095203 0.8752639419260931 0.4786343500579582 -0.2548536545231394 -0.3498003694604286 0.901492826539151 0.2548536545231394 0.3498003694604286 -0.901492826539151 -0.07991809526843903 0.9055282625218871 0.4166913291907535 0.07991809526843903 -0.9055282625218871 -0.4166913291907535 0.04083183429295593 0.9986126150533274 0.03325065961191508 -0.04083183429295593 -0.9986126150533274 -0.03325065961191508 0.182552286803898 -0.537492532334813 -0.8232717900347233 -0.182552286803898 0.537492532334813 0.8232717900347233 0.577815962223738 -0.8161640474517996 -0.002227430482101782 -0.577815962223738 0.8161640474517996 0.002227430482101782 0.5021654317474508 -0.7356097276283488 -0.4546517433997619 -0.5021654317474508 0.7356097276283488 0.4546517433997619 -0.2804889621707544 0.2496657596863755 -0.9268187258253892 0.2804889621707544 -0.2496657596863755 0.9268187258253892 -0.5958886369564139 0.8025154849665568 0.02975951503501457 0.5958886369564139 -0.8025154849665568 -0.02975951503501457 -0.1886596466353326 0.3826616885909969 0.9044211241540736 0.1886596466353326 -0.3826616885909969 -0.9044211241540736 -0.02642589192626583 -0.9989899562612886 -0.03634198020155225 0.02642589192626583 0.9989899562612886 0.03634198020155225 -0.2495513640690779 -0.3597033579949276 0.8990759761768944 0.2495513640690779 0.3597033579949276 -0.8990759761768944 0.1610749021599849 0.919514136162441 -0.3585367893139996 -0.1610749021599849 -0.919514136162441 0.3585367893139996 0.5735102016805903 -0.6720388064869559 0.4684547909285128 -0.5735102016805903 0.6720388064869559 -0.4684547909285128 -0.2657943292264164 0.2945407621324637 -0.9179319767790568 0.2657943292264164 -0.2945407621324637 0.9179319767790568 -0.5837327705497279 0.8113865891313407 0.03013064161526602 0.5837327705497279 -0.8113865891313407 -0.03013064161526602 -0.1991820465143772 0.3544893614773262 0.9135993678553758 0.1991820465143772 -0.3544893614773262 -0.9135993678553758 0.2861780936521547 -0.4775920835169998 -0.8306671418056151 -0.2861780936521547 0.4775920835169998 0.8306671418056151 0.2596158391162486 -0.8356664422017331 -0.4840053857736125 -0.2596158391162486 0.8356664422017331 0.4840053857736125 -0.1711728639867653 -0.3974243520842621 0.9015285547363282 0.1711728639867653 0.3974243520842621 -0.9015285547363282 -0.2759630649446006 0.862122778991588 0.424957292830943 0.2759630649446006 -0.862122778991588 -0.424957292830943 -0.1627713730068983 0.9861055452496621 0.03318634896031334 0.1627713730068983 -0.9861055452496621 -0.03318634896031334 0.3416996505827609 -0.9396661338264465 -0.01639834538231022 -0.3416996505827609 0.9396661338264465 0.01639834538231022 0.30376142805433 -0.8502671592682022 -0.4298543389293356 -0.30376142805433 0.8502671592682022 0.4298543389293356 -0.201791230256234 0.4122164491855501 -0.8884581579413475 0.201791230256234 -0.4122164491855501 0.8884581579413475 -0.353387402572387 0.9348176637184597 0.03511807658603557 0.353387402572387 -0.9348176637184597 -0.03511807658603557 -0.1058721135997328 0.4040115403614299 0.9086064994356522 0.1058721135997328 -0.4040115403614299 -0.9086064994356522 -0.03914787380005075 0.9310752900203363 -0.3627206201616916 0.03914787380005075 -0.9310752900203363 0.3627206201616916 0.1852695253025228 -0.9820292032140997 -0.0359700851939271 -0.1852695253025228 0.9820292032140997 0.0359700851939271 -0.1773549694629225 -0.4078269871403468 0.8956686682958341 0.1773549694629225 0.4078269871403468 -0.8956686682958341 0.3549316148623257 -0.8408242567767633 0.4087029703672644 -0.3549316148623257 0.8408242567767633 -0.4087029703672644 -0.1822031762745549 0.4397897912365972 -0.8794242105375164 0.1822031762745549 -0.4397897912365972 0.8794242105375164 -0.3477859038141603 0.9369150364712027 0.03514512117396353 0.3477859038141603 -0.9369150364712027 -0.03514512117396353 -0.1202995705451427 0.3836022387659995 0.9156294751373872 0.1202995705451427 -0.3836022387659995 -0.9156294751373872 -0.3816999914060151 0.9236542054752703 0.03417638466097767 0.3816999914060151 -0.9236542054752703 -0.03417638466097767 0.3808467242539962 -0.3762287084416336 -0.8446346734354094 -0.3808467242539962 0.3762287084416336 0.8446346734354094 0.4502607467623525 -0.7431657997486632 -0.4949442938442048 -0.4502607467623525 0.7431657997486632 0.4949442938442048 -0.08541398328283506 -0.4049315133355671 0.9103487908310348 0.08541398328283506 0.4049315133355671 -0.9103487908310348 -0.4839714770711831 0.7462278087800175 0.4570729337697769 0.4839714770711831 -0.7462278087800175 -0.4570729337697769 0.1272741652955169 -0.9915092578234279 -0.02665855395111868 -0.1272741652955169 0.9915092578234279 0.02665855395111868 0.1075205216591178 -0.9023415162816886 -0.4173956461399833 -0.1075205216591178 0.9023415162816886 0.4173956461399833 -0.1273013822530978 0.880511134770289 -0.4566119792799885 0.1273013822530978 -0.880511134770289 0.4566119792799885 -0.1306645420507385 0.9907766458956298 0.03589450373632322 0.1306645420507385 -0.9907766458956298 -0.03589450373632322 -0.02654652668006343 0.3881393566191548 0.9212182812800087 0.02654652668006343 -0.3881393566191548 -0.9212182812800087 -0.2460646216208448 0.8881171003616863 -0.3882012596988072 0.2460646216208448 -0.8881171003616863 0.3882012596988072 0.4101023204955814 -0.9113972187520644 -0.03422274645818363 -0.4101023204955814 0.9113972187520644 0.03422274645818363 -0.09588818099303931 -0.4238328194187011 0.9006504304831264 0.09588818099303931 0.4238328194187011 -0.9006504304831264 0.1414093547059274 -0.9178126143131481 0.3709762787690308 -0.1414093547059274 0.9178126143131481 -0.3709762787690308 -0.08229816627144125 0.5326161550261377 -0.8423461540444828 0.08229816627144125 -0.5326161550261377 0.8423461540444828 -0.03578031954480483 0.3768652501914808 0.9255767671735197 0.03578031954480483 -0.3768652501914808 -0.9255767671735197 -0.674709725386167 0.5584923471442861 0.4825485308760034 0.674709725386167 -0.5584923471442861 -0.4825485308760034 -0.6195040484889329 0.7846770842946554 0.02228468731349538 0.6195040484889329 -0.7846770842946554 -0.02228468731349538 0.4570166420245257 -0.2308322798019402 -0.858983263814881 -0.4570166420245257 0.2308322798019402 0.858983263814881 0.640215112457863 -0.5821380191740587 -0.5012384027712449 -0.640215112457863 0.5821380191740587 0.5012384027712449 -0.00412076982569427 -0.3751321319259711 0.9269621906273845 0.00412076982569427 0.3751321319259711 -0.9269621906273845 -0.0771032196051772 -0.9963834114229999 -0.03570981612359299 0.0771032196051772 0.9963834114229999 0.03570981612359299 -0.08906842643591111 -0.9018910816672023 -0.4226810762518171 0.08906842643591111 0.9018910816672023 0.4226810762518171 0.06620767914974504 0.8988097898575195 -0.4333099408943743 -0.06620767914974504 -0.8988097898575195 0.4333099408943743 0.08025119404980048 0.9960917061574914 0.03689253010893739 -0.08025119404980048 -0.9960917061574914 -0.03689253010893739 0.04437713259752743 0.3394687609676098 0.9395699177972532 -0.04437713259752743 -0.3394687609676098 -0.9395699177972532 -0.01161620341918367 -0.4044218247092673 0.9144987979855144 0.01161620341918367 0.4044218247092673 -0.9144987979855144 -0.4607959922654775 0.7725797385012819 -0.43679240053985 0.4607959922654775 -0.7725797385012819 0.43679240053985 0.6528638896857033 -0.7569444426881054 -0.02835228788029745 -0.6528638896857033 0.7569444426881054 0.02835228788029745 -0.06270523447042294 -0.9322290879753824 0.3563944178892201 0.06270523447042294 0.9322290879753824 -0.3563944178892201 0.02539719024706923 0.5792730047807407 -0.814737852723099 -0.02539719024706923 -0.5792730047807407 0.814737852723099 0.0464879261504257 0.3294715832049027 0.9430203330695938 -0.0464879261504257 -0.3294715832049027 -0.9430203330695938 0.0646969505680893 -0.3132092574365765 0.9474778444075717 -0.0646969505680893 0.3132092574365765 -0.9474778444075717 -0.8190055710734459 0.2677980214914298 0.5074584655279038 0.8190055710734459 -0.2677980214914298 -0.5074584655279038 -0.8580883842627182 0.5134892842226402 0.0036165981140491 0.8580883842627182 -0.5134892842226402 -0.0036165981140491 0.4994180366316639 -0.04699295619315566 -0.8650857106409757 -0.4994180366316639 0.04699295619315566 0.8650857106409757 0.8539293952023838 -0.5200193019209856 -0.01960901932534571 -0.8539293952023838 0.5200193019209856 0.01960901932534571 -0.2852447237175135 -0.9574708992473967 -0.04341571933874513 0.2852447237175135 0.9574708992473967 0.04341571933874513 -0.2924341135507829 -0.8449230634038953 -0.4478697424027935 0.2924341135507829 0.8449230634038953 0.4478697424027935 0.2600125274543552 0.8674470282758773 -0.4241805496509092 -0.2600125274543552 -0.8674470282758773 0.4241805496509092 0.2946201925173138 0.9549773324281696 0.03488891957969222 -0.2946201925173138 -0.9549773324281696 -0.03488891957969222 0.1034170581106673 0.2608524472427958 0.9598233758661949 -0.1034170581106673 -0.2608524472427958 -0.9598233758661949 0.8820135529355918 -0.4708935410121302 -0.01764555102543141 -0.8820135529355918 0.4708935410121302 0.01764555102543141 0.06790459995166641 -0.3406811915226268 0.9377234619268771 -0.06790459995166641 0.3406811915226268 -0.9377234619268771 -0.6641144318958315 0.5539254413356686 -0.5021141571283985 0.6641144318958315 -0.5539254413356686 0.5021141571283985 0.4964651605977263 -0.007173700614587332 -0.8680270055316057 -0.4964651605977263 0.007173700614587332 0.8680270055316057 -0.2614397072830781 -0.8933246091077352 0.3655412729340564 0.2614397072830781 0.8933246091077352 -0.3655412729340564 0.1382379130492395 0.5831724777007232 -0.800499931697805 -0.1382379130492395 -0.5831724777007232 0.800499931697805 0.1141379742883999 0.2414973802642208 0.9636656775826661 -0.1141379742883999 -0.2414973802642208 -0.9636656775826661 0.8822912321948564 0.02220810173169826 -0.4701797335164039 -0.8822912321948564 -0.02220810173169826 0.4701797335164039 0.1188138028336179 -0.2260274947932563 0.9668478948902453 -0.1188138028336179 0.2260274947932563 -0.9668478948902453 -0.8587397158175739 -0.08018506560671994 0.5060992548218168 0.8587397158175739 0.08018506560671994 -0.5060992548218168 -0.8050928716867741 0.1826331764184201 -0.5643319863612742 0.8050928716867741 -0.1826331764184201 0.5643319863612742 0.4925879284688318 0.1528216387529459 -0.8567395633771382 -0.4925879284688318 -0.1528216387529459 0.8567395633771382 -0.5097456504244465 -0.8591344984638351 -0.04524693826826742 0.5097456504244465 0.8591344984638351 0.04524693826826742 -0.503222982218811 -0.7120634997618107 -0.4896245525642766 0.503222982218811 0.7120634997618107 0.4896245525642766 0.4603466958027616 0.7788779087251324 -0.4259461503094539 -0.4603466958027616 -0.7788779087251324 0.4259461503094539 0.523479007550921 0.8515040131017884 0.03017688395200142 -0.523479007550921 -0.8515040131017884 -0.03017688395200142 0.1518593399203167 0.1545205082045166 0.9762490222392971 -0.1518593399203167 -0.1545205082045166 -0.9762490222392971 0.9986610433822905 -0.05168256758209613 -0.002243354344905463 -0.9986610433822905 0.05168256758209613 0.002243354344905463 0.1318246859017485 -0.2349796978402745 0.9630196227438976 -0.1318246859017485 0.2349796978402745 -0.9630196227438976 -0.8570320744351881 -0.04027811833018728 0.5136863795869009 0.8570320744351881 0.04027811833018728 -0.5136863795869009 -0.8020473590133231 0.2179865516430817 -0.5560592569164835 0.8020473590133231 -0.2179865516430817 0.5560592569164835 -0.4615904843755709 -0.7909897607564924 0.4015836439800712 0.4615904843755709 0.7909897607564924 -0.4015836439800712 0.252540347057417 0.5414245503907144 -0.8019244536378299 -0.252540347057417 -0.5414245503907144 0.8019244536378299 0.159799408619329 0.1228134197518831 0.979479970664924 -0.159799408619329 -0.1228134197518831 -0.979479970664924 0.4353324721431299 0.3341380181837748 -0.8359649654752106 -0.4353324721431299 -0.3341380181837748 0.8359649654752106 0.8085299571629004 0.3823119055224868 -0.4473442916433872 -0.8085299571629004 -0.3823119055224868 0.4473442916433872 0.1551669196552751 -0.1168490823491705 0.9809533724896663 -0.1551669196552751 0.1168490823491705 -0.9809533724896663 -0.7805585710254122 -0.4068311902331807 0.4745700157534397 0.7805585710254122 0.4068311902331807 -0.4745700157534397 -0.9244908752825142 -0.378565349547113 -0.04477608336649194 0.9244908752825142 0.378565349547113 0.04477608336649194 -0.7502012696929717 -0.6593563627663559 -0.04946960511844244 0.7502012696929717 0.6593563627663559 0.04946960511844244 -0.6978467183232735 -0.4623279303828837 -0.5470492139774237 0.6978467183232735 0.4623279303828837 0.5470492139774237 0.6649029264142448 0.6072315801009957 -0.4349412679590449 -0.6649029264142448 -0.6072315801009957 0.4349412679590449 0.7604816846369817 0.6489597204662113 0.02277912518327709 -0.7604816846369817 -0.6489597204662113 -0.02277912518327709 0.1719340237016065 0.01941018364806291 0.9849172230520308 -0.1719340237016065 -0.01941018364806291 -0.9849172230520308 -0.8040886315762558 -0.1784821301950049 -0.5670851803484884 0.8040886315762558 0.1784821301950049 0.5670851803484884 0.924659177562477 0.3805625196872114 0.0133256879298732 -0.924659177562477 -0.3805625196872114 -0.0133256879298732 0.1673583694593457 -0.0987386897261418 0.9809392679075876 -0.1673583694593457 0.0987386897261418 -0.9809392679075876 -0.6515862186990911 -0.6172149427356434 0.4410001293256686 0.6515862186990911 0.6172149427356434 -0.4410001293256686 0.3609413422632294 0.4492442334622321 -0.8172520823749242 -0.3609413422632294 -0.4492442334622321 0.8172520823749242 0.1680743216177683 -0.01327794334903362 0.985684898247481 -0.1680743216177683 0.01327794334903362 -0.985684898247481 -0.7077286307855312 -0.7046579404075305 -0.05076782629829895 0.7077286307855312 0.7046579404075305 0.05076782629829895 0.3422907321088052 0.470188875101221 -0.8134860026106574 -0.3422907321088052 -0.470188875101221 0.8134860026106574 0.6285452392550731 0.6463254866285363 -0.4326595053204869 -0.6285452392550731 -0.6463254866285363 0.4326595053204869 0.1684837607857226 0.01078912850309114 0.9856453809852929 -0.1684837607857226 -0.01078912850309114 -0.9856453809852929 -0.6208951602753291 -0.6569286372870615 0.4277078038320531 0.6208951602753291 0.6569286372870615 -0.4277078038320531 -0.8016874851195304 -0.3476970057459101 0.4862139121806895 0.8016874851195304 0.3476970057459101 -0.4862139121806895 -0.8149220097351028 -0.1080548625133485 -0.5694086974542294 0.8149220097351028 0.1080548625133485 0.5694086974542294 0.8324394161889932 0.3218611754601607 -0.4510543227886545 -0.8324394161889932 -0.3218611754601607 0.4510543227886545 0.9513198774933672 0.3080369782319619 0.01018384641117496 -0.9513198774933672 -0.3080369782319619 -0.01018384641117496 0.1634203117995998 -0.1247450298277524 0.978638073663903 -0.1634203117995998 0.1247450298277524 -0.978638073663903 -0.6678589248046758 -0.5214726726196702 -0.5310656346155726 0.6678589248046758 0.5214726726196702 0.5310656346155726 0.7182567574893013 0.6953383336702373 0.02473523902558684 -0.7182567574893013 -0.6953383336702373 -0.02473523902558684 0.1693848817853877 0.04483553595062854 0.9845296016568371 -0.1693848817853877 -0.04483553595062854 -0.9845296016568371 -0.8048692487349177 -0.3506423330122185 0.4787853869330574 0.8048692487349177 0.3506423330122185 -0.4787853869330574 -0.8033529047000452 -0.1701599897853734 -0.570674765857263 0.8033529047000452 0.1701599897853734 0.570674765857263 0.449268697821028 0.3040839242511426 -0.8400539293225307 -0.449268697821028 -0.3040839242511426 0.8400539293225307 0.1500216654325103 -0.1381913113327511 0.9789773548826299 -0.1500216654325103 0.1381913113327511 -0.9789773548826299 -0.4259537348114598 -0.8178821815051697 0.3868231546540531 0.4259537348114598 0.8178821815051697 -0.3868231546540531 -0.4675392286166295 -0.8827060022405983 -0.04729887221687068 0.4675392286166295 0.8827060022405983 0.04729887221687068 0.2320365704896954 0.552483805839267 -0.8005752146055608 -0.2320365704896954 -0.552483805839267 0.8005752146055608 0.4235426764458111 0.8000651237203419 -0.4248616233969279 -0.4235426764458111 -0.8000651237203419 0.4248616233969279 0.1520251206832657 0.143591229580553 0.9778905467734022 -0.1520251206832657 -0.143591229580553 -0.9778905467734022 -0.8563034731243645 0.03075851077944254 0.5155562781402063 0.8563034731243645 -0.03075851077944254 -0.5155562781402063 -0.7854559790425402 0.2863556715033529 -0.5486887408943149 0.7854559790425402 -0.2863556715033529 0.5486887408943149 0.8789201616178662 -0.04563262027587983 -0.4747810163310886 -0.8789201616178662 0.04563262027587983 0.4747810163310886 0.9909649981647042 -0.1339921094394375 -0.005872565061178528 -0.9909649981647042 0.1339921094394375 0.005872565061178528 0.1214868915248658 -0.2566112218047661 0.9588491101479369 -0.1214868915248658 0.2566112218047661 -0.9588491101479369 0.1424597144731626 0.1742609283264101 0.9743399604917387 -0.1424597144731626 -0.1742609283264101 -0.9743399604917387 -0.4649654691684617 -0.7434500776185029 -0.4807172709295918 0.4649654691684617 0.7434500776185029 0.4807172709295918 0.4806825705190683 0.8763220630772676 0.0316845098302365 -0.4806825705190683 -0.8763220630772676 -0.0316845098302365 -0.860794945204459 -0.01643115646217469 0.5086866220058945 0.860794945204459 0.01643115646217469 -0.5086866220058945 -0.7900784413486761 0.2562479078863671 -0.5568779634892249 0.7900784413486761 -0.2562479078863671 0.5568779634892249 0.4980078568234466 0.1169113175851559 -0.859255444185616 -0.4980078568234466 -0.1169113175851559 0.859255444185616 0.1096901023717531 -0.2434510788927682 0.9636906420774363 -0.1096901023717531 0.2434510788927682 -0.9636906420774363 0.1039596989266152 0.2597350418756318 0.9600677523075918 -0.1039596989266152 -0.2597350418756318 -0.9600677523075918 -0.2255086311498324 -0.9042076887875177 0.3627041670762336 0.2255086311498324 0.9042076887875177 -0.3627041670762336 -0.246296801946135 -0.9683103284272793 -0.04138832217136909 0.246296801946135 0.9683103284272793 0.04138832217136909 0.1177179104608849 0.5854651574134203 -0.8021053814877456 -0.1177179104608849 -0.5854651574134203 0.8021053814877456 0.224575277624369 0.8769413923042921 -0.4248996812699999 -0.224575277624369 -0.8769413923042921 0.4248996812699999 -0.818183918190957 0.5749003086151485 0.00804432519857671 0.818183918190957 -0.5749003086151485 -0.00804432519857671 -0.6305737591105755 0.6022648379504871 -0.4895444814208733 0.6305737591105755 -0.6022648379504871 0.4895444814208733 0.4949605839858888 -0.03892198721152086 -0.8680432588367092 -0.4949605839858888 0.03892198721152086 0.8680432588367092 0.8451270122946203 -0.5341853035835791 -0.02015922928309364 -0.8451270122946203 0.5341853035835791 0.02015922928309364 0.05385948697774293 -0.3554499664399606 0.9331422597976823 -0.05385948697774293 0.3554499664399606 -0.9331422597976823 0.2549244586738081 0.9663161203320346 0.03530829868898371 -0.2549244586738081 -0.9663161203320346 -0.03530829868898371 0.09423102464293508 0.2772583329710544 0.9561633389713573 -0.09423102464293508 -0.2772583329710544 -0.9561633389713573 -0.2549214545164238 -0.8600324943657328 -0.4419945256021691 0.2549214545164238 0.8600324943657328 0.4419945256021691 -0.79929641435108 0.3271493463141986 0.5040818854230917 0.79929641435108 -0.3271493463141986 -0.5040818854230917 0.4948857423588071 -0.08216582485000451 -0.865064667661725 -0.4948857423588071 0.08216582485000451 0.865064667661725 0.8144148990748201 -0.5798756477366595 -0.02173948773407881 -0.8144148990748201 0.5798756477366595 0.02173948773407881 0.0528667042807186 -0.3265261401177359 0.9437085309555636 -0.0528667042807186 0.3265261401177359 -0.9437085309555636 0.03142215486202268 0.8992909717703551 -0.4362205821326607 -0.03142215486202268 -0.8992909717703551 0.4362205821326607 0.03222413175603969 0.3414413676946292 0.9393505191138132 -0.03222413175603969 -0.3414413676946292 -0.9393505191138132 -0.0259253419318946 -0.9334636059792216 0.3577339415794692 0.0259253419318946 0.9334636059792216 -0.3577339415794692 -0.04049074313123702 -0.9985674125448957 -0.03498031337870574 0.04049074313123702 0.9985674125448957 0.03498031337870574 0.005328438180618537 0.5750615350973014 -0.8180928056144308 -0.005328438180618537 -0.5750615350973014 0.8180928056144308 -0.5748760152395741 0.8178890218602926 0.02398155588536437 0.5748760152395741 -0.8178890218602926 -0.02398155588536437 -0.4214825828834756 0.8001683134769219 -0.4267119665926568 0.4214825828834756 -0.8001683134769219 0.4267119665926568 0.6074881385080706 -0.6169848063479048 -0.5002878274631893 -0.6074881385080706 0.6169848063479048 0.5002878274631893 0.6082732213363905 -0.7931810654764039 -0.02945310806633874 -0.6082732213363905 0.7931810654764039 0.02945310806633874 -0.02736669832298045 -0.4111055921847794 0.9111768521518208 0.02736669832298045 0.4111055921847794 -0.9111768521518208 0.04235616326970938 0.9984366610053214 0.03647176159187728 -0.04235616326970938 -0.9984366610053214 -0.03647176159187728 0.03221986909040234 0.3506818629235959 0.9359402283544785 -0.03221986909040234 -0.3506818629235959 -0.9359402283544785 -0.05361409784407056 -0.9050905554847667 -0.4218253369401169 0.05361409784407056 0.9050905554847667 0.4218253369401169 -0.6412286961935133 0.6027935398456574 0.4748322940768762 0.6412286961935133 -0.6027935398456574 -0.4748322940768762 0.4462050229884594 -0.2575089267645674 -0.8570823939951334 -0.4462050229884594 0.2575089267645674 0.8570823939951334 -0.01851769985004047 -0.3828132866255579 0.9236401260096934 0.01851769985004047 0.3828132866255579 -0.9236401260096934 -0.1011209062275383 0.5194295024157583 -0.8485090184222199 0.1011209062275383 -0.5194295024157583 0.8485090184222199 -0.1630204955034008 0.8718140737365698 -0.4619139951123722 0.1630204955034008 -0.8718140737365698 0.4619139951123722 -0.05106644626099506 0.3803957682493656 0.9234128424297812 0.05106644626099506 -0.3803957682493656 -0.9234128424297812 0.1789455253017296 -0.9095149566493147 0.3751813462922742 -0.1789455253017296 0.9095149566493147 -0.3751813462922742 0.1644492067246966 -0.9860474719446343 -0.0258232739832422 -0.1644492067246966 0.9860474719446343 0.0258232739832422 -0.3394842626918352 0.9401205712295527 0.03039320541832133 0.3394842626918352 -0.9401205712295527 -0.03039320541832133 -0.2080610788881689 0.9007191526710595 -0.3813339684101321 0.2080610788881689 -0.9007191526710595 0.3813339684101321 0.4170581372161195 -0.7630871662746496 -0.4937210617836206 -0.4170581372161195 0.7630871662746496 0.4937210617836206 0.3671848022390897 -0.9296812715626696 -0.02946276141604014 -0.3671848022390897 0.9296812715626696 0.02946276141604014 -0.1118508727425593 -0.4246135752306774 0.8984390318750346 0.1118508727425593 0.4246135752306774 -0.8984390318750346 0.1429673890552561 -0.8969759915124038 -0.4183233155312562 -0.1429673890552561 0.8969759915124038 0.4183233155312562 -0.1697402903512333 0.9848294799586392 0.03604343540612129 0.1697402903512333 -0.9848294799586392 -0.03604343540612129 -0.04029823831595079 0.3929010957394276 0.9186973282618099 0.04029823831595079 -0.3929010957394276 -0.9186973282618099 -0.4425321364225157 0.7807076339415388 0.4412039194507776 0.4425321364225157 -0.7807076339415388 -0.4412039194507776 0.3615564551111211 -0.3924871464468883 -0.8457131722052452 -0.3615564551111211 0.3924871464468883 0.8457131722052452 -0.1004051002551915 -0.4059873809262091 0.9083463339340465 0.1004051002551915 0.4059873809262091 -0.9083463339340465 0.3904353888787023 -0.9205132079270056 -0.01468472482104409 -0.3904353888787023 0.9205132079270056 0.01468472482104409 -0.2028401600381923 0.4137734346108561 -0.8874950221190066 0.2028401600381923 -0.4137734346108561 0.8874950221190066 -0.3965987545441102 0.9173867728006537 0.03333072133126812 0.3965987545441102 -0.9173867728006537 -0.03333072133126812 -0.1368126594116787 0.3783825735749009 0.9154828912871822 0.1368126594116787 -0.3783825735749009 -0.9154828912871822 0.4037445049495944 -0.8137278701143873 0.4181355379803415 -0.4037445049495944 0.8137278701143873 -0.4181355379803415 -0.2130405425149827 0.9762377946652087 -0.03966731037178552 0.2130405425149827 -0.9762377946652087 0.03966731037178552 -0.1081798850903938 0.9240271948778918 -0.3667026800937292 0.1081798850903938 -0.9240271948778918 0.3667026800937292 0.3281513256345706 -0.7677627424058544 -0.5503245214032494 -0.3281513256345706 0.7677627424058544 0.5503245214032494 0.2328257703503543 -0.9718983197261724 -0.03472487255854357 -0.2328257703503543 0.9718983197261724 0.03472487255854357 -0.1473936565412861 -0.3971635326227748 0.9058345535283955 0.1473936565412861 0.3971635326227748 -0.9058345535283955 0.3468945964669057 -0.8319723515337044 -0.4329967034811476 -0.3468945964669057 0.8319723515337044 0.4329967034811476 -0.2234283793547914 0.3810349301579313 -0.8971578129283787 0.2234283793547914 -0.3810349301579313 0.8971578129283787 -0.4038454249517289 0.9142215620686088 0.03328375270894747 0.4038454249517289 -0.9142215620686088 -0.03328375270894747 -0.122338880712954 0.4011767131602135 0.9077942735465285 0.122338880712954 -0.4011767131602135 -0.9077942735465285 -0.3151385434377004 0.8509345145216276 0.4202358271682778 0.3151385434377004 -0.8509345145216276 -0.4202358271682778 0.3362915756879585 -0.4605074486483383 -0.8214869845960483 -0.3362915756879585 0.4605074486483383 0.8214869845960483 -0.1477861161468464 -0.3879190814924926 0.9097681298486179 0.1477861161468464 0.3879190814924926 -0.9097681298486179 0.642036301964842 -0.5915223220510135 0.4877404324788823 -0.642036301964842 0.5915223220510135 -0.4877404324788823 0.6565729720855437 -0.7542611534141503 0.001429957031396675 -0.6565729720855437 0.7542611534141503 -0.001429957031396675 -0.2873913339372501 0.2414284916307782 -0.9268864572355426 0.2873913339372501 -0.2414284916307782 0.9268864572355426 -0.6582465513805748 0.7522761974698212 0.02814250017192915 0.6582465513805748 -0.7522761974698212 -0.02814250017192915 -0.2200850377465403 0.3382910481576543 0.9149435736134222 0.2200850377465403 -0.3382910481576543 -0.9149435736134222 -0.2116315698671361 0.368248547592389 0.9053204326820795 0.2116315698671361 -0.368248547592389 -0.9053204326820795 0.5633653855986063 -0.6828540426268416 -0.4651126732067326 -0.5633653855986063 0.6828540426268416 0.4651126732067326 -0.2983463149186184 0.191197653796943 -0.935111187804437 0.2983463149186184 -0.191197653796943 0.935111187804437 -0.6749209437416259 0.737369483269181 0.02771217859090166 0.6749209437416259 -0.737369483269181 -0.02771217859090166 -0.2877910840981094 0.2723055930267614 0.9181644492790924 0.2877910840981094 -0.2723055930267614 -0.9181644492790924 0.7965472595788976 -0.253297272604866 0.5489562413783857 -0.7965472595788976 0.253297272604866 -0.5489562413783857 0.8952079640211859 -0.4452204858064359 0.01952998134470383 -0.8952079640211859 0.4452204858064359 -0.01952998134470383 -0.3232893198518779 0.02813167905717699 -0.9458819293670507 0.3232893198518779 -0.02813167905717699 0.9458819293670507 -0.8886272139272777 0.4582966637581069 0.01748835772829509 0.8886272139272777 -0.4582966637581069 -0.01748835772829509 -0.9067641930740167 0.4213005352784029 0.01686882132688834 0.9067641930740167 -0.4213005352784029 -0.01686882132688834 -0.2922750546849938 0.2931621069745766 0.9102918605826984 0.2922750546849938 -0.2931621069745766 -0.9102918605826984 0.7419994697737539 -0.4512518930279872 -0.4957907985170013 -0.7419994697737539 0.4512518930279872 0.4957907985170013 -0.3148742535731208 -0.004869283983756693 -0.9491209061601453 0.3148742535731208 0.004869283983756693 0.9491209061601453 -0.9986404382995738 0.05205556031263065 0.002737450159036555 0.9986404382995738 -0.05205556031263065 -0.002737450159036555 -0.3381879490069393 0.1884767588034562 0.9220116173549136 0.3381879490069393 -0.1884767588034562 -0.9220116173549136 0.8102172987549845 0.138570612457417 0.5695139279783705 -0.8102172987549845 -0.138570612457417 -0.5695139279783705 0.8502888027754763 -0.102763249480544 -0.5161866585169038 -0.8502888027754763 0.102763249480544 0.5161866585169038 -0.3038909547366041 -0.182050698823732 -0.9351512341258317 0.3038909547366041 0.182050698823732 0.9351512341258317 -0.2902066635529607 -0.1816590542969931 -0.939563771343585 0.2902066635529607 0.1816590542969931 0.939563771343585 -0.999813477153811 -0.01931205510930637 0.0002354337719400635 0.999813477153811 0.01931205510930637 -0.0002354337719400635 -0.3505880388990245 0.1891080781604483 0.9172383342160302 0.3505880388990245 -0.1891080781604483 -0.9172383342160302 0.8136186072749757 0.08552528389165728 0.5750740714996462 -0.8136186072749757 -0.08552528389165728 -0.5750740714996462 0.8477488936218549 -0.1456593881118026 -0.5100050548943768 -0.8477488936218549 0.1456593881118026 0.5100050548943768 -0.2332730477494691 -0.3605164174014107 -0.9031121735298034 0.2332730477494691 0.3605164174014107 0.9031121735298034 -0.9227606700250345 -0.3850225608303484 -0.01644303824084896 0.9227606700250345 0.3850225608303484 0.01644303824084896 -0.3710855398209218 0.08356562277686359 0.9248309622983706 0.3710855398209218 -0.08356562277686359 -0.9248309622983706 0.6915941643211421 0.4814387597695081 0.5384368416709047 -0.6915941643211421 -0.4814387597695081 -0.5384368416709047 0.8981451913718017 0.4388467863422945 0.02736262656891868 -0.8981451913718017 -0.4388467863422945 -0.02736262656891868 0.8429373844420663 0.2038831752479156 -0.4978837381967761 -0.8429373844420663 -0.2038831752479156 0.4978837381967761 -0.2290209345500243 -0.3335906107424467 -0.9144761975919957 0.2290209345500243 0.3335906107424467 0.9144761975919957 -0.892787122367921 -0.4501117183451386 -0.01818227550097881 0.892787122367921 0.4501117183451386 0.01818227550097881 -0.3806471395931579 0.05863070036734207 0.9228597922187215 0.3806471395931579 -0.05863070036734207 -0.9228597922187215 0.6731421049907004 0.7390076570403116 0.02733842212853642 -0.6731421049907004 -0.7390076570403116 -0.02733842212853642 -0.1328818881006347 -0.4812003013776529 -0.8664806251549232 0.1328818881006347 0.4812003013776529 0.8664806251549232 -0.5162201884059053 -0.6859853388317428 -0.5127775658022399 0.5162201884059053 0.6859853388317428 0.5127775658022399 -0.3820804274125651 -0.03799906150363985 0.92334750679962 0.3820804274125651 0.03799906150363985 -0.92334750679962 0.4982106593253596 0.7158749775839003 0.4891923501076451 -0.4982106593253596 -0.7158749775839003 -0.4891923501076451 0.7240704694464025 0.5172326219432335 -0.456281020943666 -0.7240704694464025 -0.5172326219432335 0.456281020943666 -0.6700361228712017 -0.7418412287615767 -0.02689210585362026 0.6700361228712017 0.7418412287615767 0.02689210585362026 -0.3799116356427942 -0.07528213549441858 0.921954309702285 0.3799116356427942 0.07528213549441858 -0.921954309702285 0.2919879555706406 0.8457029878555783 0.4466872397257671 -0.2919879555706406 -0.8457029878555783 -0.4466872397257671 0.4366746038435569 0.8991604423174815 0.02873655041064687 -0.4366746038435569 -0.8991604423174815 -0.02873655041064687 -0.02181407774595281 -0.5442229250816213 -0.838656994144625 0.02181407774595281 0.5442229250816213 0.838656994144625 -0.2991359507547488 -0.8171395266061116 -0.492748086778622 0.2991359507547488 0.8171395266061116 0.492748086778622 -0.3640461567431337 -0.1638571415455993 0.9168539866985687 0.3640461567431337 0.1638571415455993 -0.9168539866985687 -0.3516769144494107 -0.1959843911759476 0.9153761337607262 0.3516769144494107 0.1959843911759476 -0.9153761337607262 0.5385155662651773 0.7372771912468562 -0.4079501540105633 -0.5385155662651773 -0.7372771912468562 0.4079501540105633 -0.4313320674869082 -0.9015906437027481 -0.03296905738921509 0.4313320674869082 0.9015906437027481 0.03296905738921509 -0.3161376728583065 -0.2763059264210083 0.9075858123749857 0.3161376728583065 0.2763059264210083 -0.9075858123749857 0.09040000099123229 0.9018629294589402 0.4224583959261835 -0.09040000099123229 -0.9018629294589402 -0.4224583959261835 0.2181949882099804 0.9753917837111359 0.03165146740445621 -0.2181949882099804 -0.9753917837111359 -0.03165146740445621 0.08965774420950276 -0.5583695936821822 -0.8247332209596372 -0.08965774420950276 0.5583695936821822 0.8247332209596372 -0.09610053397935414 -0.8715175067638015 -0.4808554073451709 0.09610053397935414 0.8715175067638015 0.4808554073451709 -0.2086475547426834 -0.97733379468257 -0.0358448276780246 0.2086475547426834 0.97733379468257 0.0358448276780246 -0.3037553178911301 -0.2967919290395361 0.9053437235160189 0.3037553178911301 0.2967919290395361 -0.9053437235160189 0.3354278871728308 0.8652296633188016 -0.372646967276005 -0.3354278871728308 -0.8652296633188016 0.372646967276005 0.09633384992223543 -0.8730059074944812 -0.4781009044531264 -0.09633384992223543 0.8730059074944812 0.4781009044531264 -0.2454762232693019 -0.3778735606343362 0.8927222389875635 0.2454762232693019 0.3778735606343362 -0.8927222389875635 -0.1068794703126247 0.9026211842571167 0.4169553651842997 0.1068794703126247 -0.9026211842571167 -0.4169553651842997 0.01343256556453883 0.9993622853949731 0.03308456909936523 -0.01343256556453883 -0.9993622853949731 -0.03308456909936523 0.1974099225344546 -0.5322015896758886 -0.8232805053148031 -0.1974099225344546 0.5322015896758886 0.8232805053148031 0.003001611511603842 -0.9993164585643894 -0.03684570491468954 -0.003001611511603842 0.9993164585643894 0.03684570491468954 -0.2411038193416134 -0.3871649112769986 0.8899282441718323 0.2411038193416134 0.3871649112769986 -0.8899282441718323 0.1343421246173835 0.9239034350956201 -0.3582661527018712 -0.1343421246173835 -0.9239034350956201 0.3582661527018712 0.2993706784681616 -0.4646143507834411 -0.8333730868702169 -0.2993706784681616 0.4646143507834411 0.8333730868702169 0.2850107885662926 -0.824994532191174 -0.4880090903410367 -0.2850107885662926 0.824994532191174 0.4880090903410367 -0.1571345039047647 -0.4017198641372894 0.902180635150257 0.1571345039047647 0.4017198641372894 -0.902180635150257 -0.3048806322925207 0.8512454486647582 0.4271170637898318 0.3048806322925207 -0.8512454486647582 -0.4271170637898318 -0.1916792900952346 0.9809089376497736 0.03281319532413365 0.1916792900952346 -0.9809089376497736 -0.03281319532413365 -0.06725397877958619 0.9289520816679044 -0.3640397400053766 0.06725397877958619 -0.9289520816679044 0.3640397400053766 0.214093725390382 -0.976059223129979 -0.03837016668415395 -0.214093725390382 0.976059223129979 0.03837016668415395 -0.1633846812171462 -0.4106968979510492 0.8970136587348917 0.1633846812171462 0.4106968979510492 -0.8970136587348917 -0.4114894635731415 0.910944516026596 0.02926619362607543 0.4114894635731415 -0.910944516026596 -0.02926619362607543 0.3926959050834945 -0.3586157917358537 -0.8468675457521808 -0.3926959050834945 0.3586157917358537 0.8468675457521808 0.4758502576596353 -0.7262053017002771 -0.4961777827227537 -0.4758502576596353 0.7262053017002771 0.4961777827227537 -0.07399356110308394 -0.4019361170684739 0.9126731675201163 0.07399356110308394 0.4019361170684739 -0.9126731675201163 -0.5074302324216592 0.7336431167333045 0.4519760353097758 0.5074302324216592 -0.7336431167333045 -0.4519760353097758 -0.2747903286848682 0.8774196655492494 -0.3932238621557767 0.2747903286848682 -0.8774196655492494 0.3932238621557767 0.4416526661926221 -0.8965544611827641 -0.03366037103526774 -0.4416526661926221 0.8965544611827641 0.03366037103526774 -0.08545569125862905 -0.4237162742578753 0.9017548689974093 0.08545569125862905 0.4237162742578753 -0.9017548689974093 -0.6983978619991993 0.5260909548807602 0.4852512066420825 0.6983978619991993 -0.5260909548807602 -0.4852512066420825 -0.6529432889600653 0.7571478064822202 0.01980556843857087 0.6529432889600653 -0.7571478064822202 -0.01980556843857087 0.465149621916081 -0.2078553546390002 -0.8604835737997689 -0.465149621916081 0.2078553546390002 0.8604835737997689 0.6654155175131032 -0.5535483740833016 -0.5008057373897605 -0.6654155175131032 0.5535483740833016 0.5008057373897605 0.005418881696632692 -0.3680761368893017 0.929779862749138 -0.005418881696632692 0.3680761368893017 -0.929779862749138 -0.000848534349117857 -0.3982057122200044 0.9172957487881525 0.000848534349117857 0.3982057122200044 -0.9172957487881525 -0.4894851489717341 0.7496498620475539 -0.4454541202730113 0.4894851489717341 -0.7496498620475539 0.4454541202730113 0.686486074271473 -0.7266466935471828 -0.02685986947637853 -0.686486074271473 0.7266466935471828 0.02685986947637853 0.07257951327708044 -0.3044279122108545 0.9497662136122774 -0.07257951327708044 0.3044279122108545 -0.9497662136122774 -0.8316266309633804 0.2226829365098312 0.5087331878891489 0.8316266309633804 -0.2226829365098312 -0.5087331878891489 -0.8847452800452509 0.4660747751115573 -0.0003056834338768042 0.8847452800452509 -0.4660747751115573 0.0003056834338768042 0.5015933670654268 -0.02022844019930286 -0.8648669864916057 -0.5015933670654268 0.02022844019930286 0.8648669864916057 0.8822466459320009 -0.4704359473785972 -0.01818997404441176 -0.8822466459320009 0.4704359473785972 0.01818997404441176 0.9072991995700066 -0.4200891905185878 -0.0182547108731709 -0.9072991995700066 0.4200891905185878 0.0182547108731709 0.07681250537470345 -0.3297206400568425 0.9409485312909346 -0.07681250537470345 0.3297206400568425 -0.9409485312909346 -0.6901611701879913 0.5152597301695152 -0.5081190506469726 0.6901611701879913 -0.5152597301695152 0.5081190506469726 0.4967189319902256 0.01610794687932466 -0.8677619700412219 -0.4967189319902256 -0.01610794687932466 0.8677619700412219 0.8811371227070259 0.07681584511404151 -0.4665797862391803 -0.8811371227070259 -0.07681584511404151 0.4665797862391803 0.1213463840642501 -0.2131877828435231 0.9694462462255421 -0.1213463840642501 0.2131877828435231 -0.9694462462255421 -0.8530865173759819 -0.1294405738576815 0.5054587339345447 0.8530865173759819 0.1294405738576815 -0.5054587339345447 -0.814130490024759 0.1226249548705555 -0.5675867032049285 0.814130490024759 -0.1226249548705555 0.5675867032049285 0.488075429724192 0.1805200466478967 -0.8539290881904577 -0.488075429724192 -0.1805200466478967 0.8539290881904577 0.9999911938398497 0.003594933677936766 -0.002165339373681499 -0.9999911938398497 -0.003594933677936766 0.002165339373681499 0.134654818811377 -0.215852360007679 0.9670966024394826 -0.134654818811377 0.215852360007679 -0.9670966024394826 -0.8525443020408295 -0.09186364878118959 0.514518496353942 0.8525443020408295 0.09186364878118959 -0.514518496353942 -0.8136384103311264 0.1551976982215682 -0.5602733365961338 0.8136384103311264 -0.1551976982215682 0.5602733365961338 0.42419264210225 0.356669434057175 -0.8323746255116424 -0.42419264210225 -0.356669434057175 0.8323746255116424 0.788540225669898 0.4252466762652501 -0.4442629590972266 -0.788540225669898 -0.4252466762652501 0.4442629590972266 0.1578903340186837 -0.1001732663627726 0.9823624377640269 -0.1578903340186837 0.1001732663627726 -0.9823624377640269 -0.7547544002130159 -0.4464111011651991 0.4806900499444158 0.7547544002130159 0.4464111011651991 -0.4806900499444158 -0.9002546744465021 -0.4324153514752223 -0.05058146840279224 0.9002546744465021 0.4324153514752223 0.05058146840279224 -0.7844078875843706 -0.2203888260673079 -0.5797698088380414 0.7844078875843706 0.2203888260673079 0.5797698088380414 0.9025619957841596 0.4302941233611072 0.01512650544609188 -0.9025619957841596 -0.4302941233611072 -0.01512650544609188 0.1694587852265324 -0.07902581395908963 0.9823638026910659 -0.1694587852265324 0.07902581395908963 -0.9823638026910659 -0.6777997339671049 -0.7334386989157637 -0.05152858980093819 0.6777997339671049 0.7334386989157637 0.05152858980093819 0.3277318451777326 0.4836579036630281 -0.8115829408512009 -0.3277318451777326 -0.4836579036630281 0.8115829408512009 0.6008258209528511 0.672999545050567 -0.4313698473909166 -0.6008258209528511 -0.672999545050567 0.4313698473909166 0.1681259371286808 0.0289271124782179 0.9853410026119259 -0.1681259371286808 -0.0289271124782179 -0.9853410026119259 -0.5960772586658657 -0.6811286002642853 0.4251537740669864 0.5960772586658657 0.6811286002642853 -0.4251537740669864 -0.6424609573471923 -0.5591595895136003 -0.524008083658555 0.6424609573471923 0.5591595895136003 0.524008083658555 0.6860359439303672 0.7270974243426841 0.02615375976422767 -0.6860359439303672 -0.7270974243426841 -0.02615375976422767 0.1672445427505161 0.0635846036810455 0.9838629280010987 -0.1672445427505161 -0.0635846036810455 -0.9838629280010987 -0.3991834821708372 -0.833882662242207 0.381172209340889 0.3991834821708372 0.833882662242207 -0.381172209340889 -0.436673585657375 -0.898346711598448 -0.04784731287528865 0.436673585657375 0.898346711598448 0.04784731287528865 0.2165549899156194 0.5605315718217925 -0.799317392112568 -0.2165549899156194 -0.5605315718217925 0.799317392112568 0.3959079871099898 0.814565510187616 -0.4239574216301738 -0.3959079871099898 -0.814565510187616 0.4239574216301738 0.1469885497273995 0.1606397865739732 0.9760067751908816 -0.1469885497273995 -0.1606397865739732 -0.9760067751908816 0.1367524582859509 0.1896313168118517 0.9722853124659204 -0.1367524582859509 -0.1896313168118517 -0.9722853124659204 -0.4363659032354655 -0.7641091553127701 -0.4751020914084689 0.4363659032354655 0.7641091553127701 0.4751020914084689 0.4489091800247141 0.8929977089497613 0.03218135951162144 -0.4489091800247141 -0.8929977089497613 -0.03218135951162144 0.09538884997893314 0.2729518704836034 0.9572869181698865 -0.09538884997893314 -0.2729518704836034 -0.9572869181698865 -0.19916090518526 -0.9116402327043386 0.3595094156772078 0.19916090518526 0.9116402327043386 -0.3595094156772078 -0.2176624288130749 -0.975174444786605 -0.04071694141668609 0.2176624288130749 0.975174444786605 0.04071694141668609 0.102006332390428 0.5870283498898806 -0.8031142039447549 -0.102006332390428 -0.5870283498898806 0.8031142039447549 0.1981146465912776 0.8828648477660394 -0.4257936676197301 -0.1981146465912776 -0.8828648477660394 0.4257936676197301 0.2256876647724398 0.9735647864648768 0.03516652563392818 -0.2256876647724398 -0.9735647864648768 -0.03516652563392818 0.08666536336345972 0.2887786406560797 0.9534652649645432 -0.08666536336345972 -0.2887786406560797 -0.9534652649645432 -0.2265545473801807 -0.870396171769524 -0.4371310343939431 0.2265545473801807 0.870396171769524 0.4371310343939431 0.1010901885606562 0.8940479215265205 -0.4364161864446363 -0.1010901885606562 -0.8940479215265205 0.4364161864446363 0.06445273455075674 0.3426205379758255 0.9372603757580311 -0.06445273455075674 -0.3426205379758255 -0.9372603757580311 -0.09421883163346889 -0.9293391783437046 0.3570035060907275 0.09421883163346889 0.9293391783437046 -0.3570035060907275 -0.1141545076910417 -0.9931824478120208 -0.02360876387993668 0.1141545076910417 0.9931824478120208 0.02360876387993668 0.05547583050659001 0.5705465277503693 -0.8193894628939288 -0.05547583050659001 -0.5705465277503693 0.8193894628939288 0.1183456576553504 0.9923332101166951 0.03562450580173765 -0.1183456576553504 -0.9923332101166951 -0.03562450580173765 0.06847289401134064 0.3517521245684066 0.9335855106241335 -0.06847289401134064 -0.3517521245684066 -0.9335855106241335 -0.1174996333925605 -0.9006404150700651 -0.4183786310210343 0.1174996333925605 0.9006404150700651 0.4183786310210343</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1518\" source=\"#ID1720\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1718\">\r\n\t\t\t\t\t<float_array count=\"5340\" id=\"ID1721\">6.58124424901909 -6.549378169441382 6.594243626844292 -6.487653200815711 6.696598292678734 -6.579371642699301 6.770497270762599 -6.368002865699669 6.896285173146524 -6.398310764394472 6.873649040572605 -6.459167001603291 1.606994190922951 -6.327084945039047 1.580681158011152 -6.386127925962971 1.460244292213868 -6.292204700666309 10.72765394165891 3.063738383867222 10.5980296473315 3.16242781111746 10.71370408282775 3.133207924124927 -14.24684181700179 2.895012572611291 -14.37836477191033 2.884348767382279 -14.27536856083076 2.948733990007817 12.02661393174706 -5.038767454721178 12.02963450011833 -4.97540399630809 12.13270788791269 -5.064109924764864 -11.43004979394074 6.476324997785461 -11.56978098256344 6.449906638664104 -11.45041031934673 6.525574610328857 1.322449705284458 -6.54656069112223 1.188396506576154 -6.512409706528434 1.202976646830431 -6.451878772249051 10.41699837302386 3.037734408533836 10.41242534415271 3.106118996484697 10.54308769399871 3.008280373024194 14.22298475920952 0.9978649944354868 14.22868687550232 1.068052757424426 14.33983745789674 0.9736936553716453 -14.41406365568179 2.799460727749057 -14.42893286841137 2.860675058135635 -14.29755694176207 2.872406949963704 -11.81071992062438 6.326362348610802 -11.81615211937594 6.384425499993632 -11.67726913981383 6.413480222718076 12.34011881459929 -4.847885141612953 12.23559589959462 -4.760235148769227 12.35218527571307 -4.785337753832025 14.29799052110548 1.032487182046824 14.40449286151205 1.008227913539467 14.4082945708094 0.9375153228838487 -8.646902383256775 8.414878901034605 -8.65225088094765 8.466496378568733 -8.496176125508582 8.508264906098283 -2.062364601803681 -5.946800285642397 -2.084487832753494 -6.005899039236392 -2.225608167016072 -5.908277090569572 5.516731967478028 3.763540693092602 5.536636150405173 3.696875695631897 5.382351354636739 3.796885859379463 -1.825387654953955 -10.97795048330495 -1.884600514269914 -10.93822896745472 -1.714330072727926 -10.92251084273801 -7.748922238916536 -9.954464435558011 -7.79840775236452 -9.906628617639578 -7.649350194663867 -9.900624786233577 -8.784310837788754 -1.241847335524194 -8.787135633251932 -1.313500902922323 -8.92930096333563 -1.268526888976237 -15.04146757417562 -1.00410718230715 -15.18224126549513 -1.000381342150911 -15.08000063047432 -0.9496539115100071 -3.469776790001123 -1.433129586011157 -3.636193457436785 -1.393887389957964 -3.467751959729123 -1.361446586633084 15.0799720754955 -1.84640187481776 15.0697697748768 -1.783649460309469 15.19088475943191 -1.865768703242847 15.14971662900356 -1.555844833387425 15.16475225651432 -1.486064374733959 15.270873582621 -1.573836679302148 0.4616561994130319 -1.476724207459918 0.2768516036628688 -1.441540775337597 0.4630186390810243 -1.405042945112993 -8.005742696899761 8.488515723223257 -8.163621323410542 8.451177554591169 -8.026435765616917 8.530730759872318 -2.293388194544666 -6.138822691979789 -2.4430430920236 -6.101480803180111 -2.433742599554219 -6.04051978575417 5.436284076851978 3.627690075505538 5.289345258562495 3.661908654056093 5.281609980481847 3.727327415661591 -1.664012047294929 -11.17724007252425 -1.538691796081832 -11.11373410611447 -1.494020587394178 -11.15975280909925 -7.708903503541491 -10.06819690293984 -7.596851553771961 -10.00757019272877 -7.559897686881227 -10.06144487523813 -13.80394136830569 -5.347095812217072 -13.67982728250908 -5.297709492546378 -13.66934678039212 -5.358830088359242 -8.934277323360174 -1.278181379060464 -8.792112442899484 -1.323156272549668 -8.937274536217549 -1.349834940823649 -3.469575642851401 -1.432604703644461 -3.637981170684591 -1.465033502026184 -3.635992330231767 -1.393362559933586 -15.04443401340557 -0.9267530124473642 -15.16167715503678 -0.9830096314666004 -15.18518939721181 -0.9226212489814935 0.4667585127219454 -1.460205219356446 0.2806529150071002 -1.496716884230763 0.2819533936378837 -1.425023488397573 15.22694423527607 -1.729820926995538 15.10474829618992 -1.648698741421962 15.22579592759738 -1.667368909268757 15.14836910280534 -1.561230425407777 15.25950455965932 -1.579790115350655 15.25381816116621 -1.649502713802673 -13.70905781169531 -5.465424093013168 -13.57427659965371 -5.475747981522576 -13.68326120159224 -5.521105616346749 3.976310155088747 -1.452420991870312 3.778059476329116 -1.491331965888099 3.778677872700642 -1.419644341839172 -4.915032547644466 9.695300561137652 -4.924158167699285 9.739972307822898 -4.749506986196691 9.789484780731707 -5.450190950101695 -5.452943705251995 -5.466428704797508 -5.512998744586117 -5.62393289877766 -5.412722460397985 1.609465487717938 3.643233308884622 1.625747823712465 3.578792809037639 1.459434081530487 3.679628221354763 2.75177342842676 -10.41501700380149 2.694025937217583 -10.37911533282872 2.886418593863451 -10.35745692824499 -13.56823117634963 -1.117856398906911 -13.43696541817042 -1.168642013176132 -13.57034484446136 -1.189529781926131 -15.31837195499966 -1.126824963332342 -15.18370245135952 -1.183496829452818 -15.32148137519616 -1.198474617651945 -13.43873416972657 -1.105383114401142 -13.44221737402736 -1.177023074673115 -13.57348303464848 -1.126237304357183 2.932885576596509 -10.62556022685836 3.084567787784672 -10.55949770269626 3.124876194543661 -10.60179637146776 -14.27406457440445 -4.188326973727107 -14.23026255961007 -4.241256592905594 -14.3880974431638 -4.225327928343009 6.08159715729758 -9.679589720518795 6.252366066188061 -9.610885962106238 6.281737120175908 -9.653513684822444 14.56990814590382 0.8906379004746501 14.55073954364409 0.9512488337379985 14.69513799916541 0.8771124759701474 13.98836616840125 -3.485795048415157 13.85180981249663 -3.473507760986333 13.87220671244561 -3.405519550538257 -15.09360847281752 1.551480369610484 -15.11229511495358 1.494068204026374 -15.24448506369222 1.522759909581195 8.863141725241569 -8.491093070519487 9.046607585061743 -8.420335876271338 9.063187285970249 -8.465440283949684 3.981652961166122 -1.432534168465369 3.784020116171064 -1.399759617830593 3.982227057989166 -1.360845740458799 -4.243778827518175 9.645692936740909 -4.4203482338053 9.600586872049473 -4.271108337050094 9.681303096710458 -5.567571219398818 -5.577113581380363 -5.726965491124796 -5.538029632220386 -5.724687919201744 -5.476461811269927 1.479190914587885 3.450728201263897 1.315723022024065 3.488181673922985 1.3123895722882 3.551063954407052 -15.18164621719179 -1.112031694332554 -15.183579319497 -1.183708231834246 -15.31825082028332 -1.127039302738265 -14.11644171506379 -1.247840634544451 -14.11882086935693 -1.319507596013285 -14.27127552772448 -1.257445807823585 5.944838963904796 -9.535317829142093 5.896110707495713 -9.498913914865723 6.096612970452268 -9.474621268043999 -14.29865728184889 -4.131559341464129 -14.4274629530263 -4.170368937371987 -14.45623700581568 -4.114137297605507 8.741952678615132 -8.388900269106708 8.704432924425426 -8.35043200610763 8.904819006823733 -8.326480335575504 14.62575748289741 0.8840605137219411 14.48069581852796 0.957391260480141 14.61719612716233 0.9449103110481921 13.93823792192693 -3.50098340353423 13.92868917508662 -3.568394517846725 13.81296019620182 -3.487735170872187 -15.3191072571964 1.089747013738183 -15.18589532225082 1.064147005589764 -15.31828670712011 1.03509219622925 -14.27071625492155 -1.256628862637208 -14.11826140441306 -1.318690358735289 -14.27301155136194 -1.328294431454065 11.2748086613165 -6.962727785305382 11.24900669104789 -6.920389516202464 11.4386430382845 -6.899072111910923 7.079122381810587 -1.366778858084151 6.879283177793899 -1.406303553365385 6.879174206126704 -1.33461375405915 -1.639350098864578 10.24402048753645 -1.659126075293471 10.28259867174746 -1.471834731367073 10.33842240011433 -8.350193722834836 -4.901656702223142 -8.358945052014157 -4.962864643339828 -8.525359415136965 -4.860766572695539 -2.069176509537213 3.326242371998825 -2.059087024761563 3.263807920087086 -2.228970941949152 3.364301695159172 -12.80801298485597 -6.5162044115534 -12.96023646348285 -6.540458830759638 -12.98586871517872 -6.488806855079433 -12.66637355289365 -6.577066818475374 -12.6216360985754 -6.62642051388846 -12.8001472564576 -6.601801802600653 -2.162817219157649 3.161640623475467 -2.336942990057161 3.200987032149872 -2.333023790622471 3.261795962852635 12.39182426109625 2.18561983376668 12.24944285353749 2.19473994396073 12.2292020449856 2.25385443097011 11.75074928358597 -4.598198705337238 11.59566929682486 -4.590326721935167 11.61580633313306 -4.524374147181312 -12.63507355126722 5.894212969916898 -12.66393998906888 5.844494759227446 -12.81020461308719 5.881331443860742 -11.82125205815746 -1.459694082136635 -11.99549709293202 -1.393311873126869 -11.81977059956834 -1.388015243731605 -5.382493030321145 2.890923063486692 -5.558077907378632 2.930721040901064 -5.54565632136752 2.989887599332794 11.55202166175043 -6.97032458325745 11.36265161727129 -6.993059841607922 11.54729574696372 -6.921103971484012 7.075826539499448 -1.379446987442179 6.875878736080901 -1.347280451372693 7.075723304966597 -1.307757750129594 -1.021186987362716 10.00367962972549 -0.8694177686235403 10.08371475068434 -0.8313202435885412 10.05383124676085 -8.467908202763617 -5.025225452961317 -8.628568156351067 -4.985666143780119 -8.633850798947336 -4.922653294167339 -10.63473570750967 -8.396450360756997 -10.59555666323037 -8.442543639426111 -10.78870460040299 -8.412389414882506 -5.264650239876106 3.074501562281626 -5.26295113539274 3.013629195775665 -5.425733287039561 3.112981391539079 12.29289584040521 2.167725345527938 12.30089699380007 2.107827564862799 12.13791688367612 2.175531668263347 11.68650379418733 -4.62218848841794 11.67877838708494 -4.687202969135057 11.54412396994733 -4.613053094229081 -13.08120175598883 5.416493678003377 -12.933679223902 5.382904350925389 -13.08779377845514 5.367197755794929 -11.82027526121955 -1.458146084418443 -11.99604071254451 -1.46345417311277 -11.99452056129688 -1.391764306365459 -10.89760927187156 -8.376099391171923 -11.07263611306153 -8.38951289220214 -11.08975241430197 -8.342204616685828 -8.247975251303757 2.83781775819075 -8.254873181608906 2.778095725210113 -8.401385748341427 2.875408215976926 13.48044384213466 -5.009201686890331 13.46385237761761 -4.961597731074239 13.63487046372841 -4.94549333456956 9.879863373842106 -1.279515954902865 9.689642966495599 -1.318112330245819 9.688833687236995 -1.246425873783559 1.475651917588861 10.37351640629636 1.443130091462908 10.40723131683276 1.633232329972663 10.46618200176879 -11.0667197444089 -4.252035633234956 -11.06869557425599 -4.315166235750052 -11.23351755599443 -4.212103517231708 9.71446549538318 2.682322219812674 9.558501111372419 2.688716318200013 9.542757436781312 2.747656735355469 9.250814699947915 -5.261317889795185 9.080915698983219 -5.256274384238835 9.096599736713905 -5.192152721956323 -9.594212167617888 7.85725022959299 -9.618678131511869 7.811571463428256 -9.78657225631229 7.852181304202899 -9.223157745222073 -1.559513824423473 -9.414858620572524 -1.490297784890158 -9.222389127344098 -1.487816533957632 -8.342676183655009 -9.823142345531542 -8.313551547726426 -9.866667545846497 -8.512151808923482 -9.833839807323299 -11.18493744892392 -4.360578516193835 -11.33788399567242 -4.32183575397238 -11.34911959644303 -4.256885721281595 -8.363931188574018 2.665633741903264 -8.53117261365886 2.704464239519222 -8.51083709197818 2.762578564523907 13.7032700981467 -4.94760926841141 13.53243276553563 -4.964860093100802 13.70571871821602 -4.892064820823818 9.918408740111159 -1.141557346435877 9.727375012814907 -1.108481704397161 9.918011166691752 -1.070223784205219 2.154785353111235 10.01054928985228 2.298149943687731 10.08860311579251 2.347909860452635 10.06307003623583 9.614774569423926 2.62259068597055 9.616830971644632 2.562621381735284 9.444870915217811 2.627544449697741 9.180936640514702 -5.292365405877916 9.178984853297125 -5.355321768348242 9.024979107795028 -5.28586871389258 -10.12264496331629 7.384037398307376 -9.953569129999973 7.346584292382385 -10.12323052915491 7.33790296641511 -9.223302778726774 -1.559758095281766 -9.415745096930356 -1.562230434000202 -9.415003618485226 -1.490541994745479 -8.718101642412567 -9.849470270803952 -8.910416386694324 -9.856028141728599 -8.915439656525455 -9.812228607292562 -13.52757237333776 -3.253838288386617 -13.52570201626261 -3.319370448554848 -13.67841958207174 -3.216263533760802 -11.11903254697048 2.503742481659308 -11.13283943233612 2.444453213863007 -11.2576465884218 2.539291641083163 15.00901797649272 -2.226254217167108 14.99471168600354 -2.171827778478193 15.14620801840819 -2.164273783765453 12.68751385641467 -1.046289002066653 12.5140764173943 -1.081226333038961 12.51320522696011 -1.009895377403657 4.435409511631076 10.18764576954969 4.390186155113673 10.21795412776514 4.57038367166259 10.27786145171617 6.970231778647031 2.933597808515434 6.80792556828419 2.938987088622652 6.799881688192711 2.998643544254029 6.565200070904346 -5.77145126429052 6.38849475190444 -5.767454288873126 6.397328272898307 -5.704863778902204 -6.727716747354233 8.72492284002916 -6.740962662766271 8.67997821747481 -6.927849432471361 8.722326968238191 -6.523860973682957 -1.619966112853497 -6.724023439939218 -1.549689226529727 -6.523816959676118 -1.548275308989991 -5.693633793840718 -10.99750842844916 -5.676828072007357 -11.03945164024491 -5.870057109739038 -11.00675822385091 5.134303576942065 9.744778558550188 5.25934845031599 9.82104916490678 5.317869985164807 9.797981050926577 -13.61661898968192 -3.314964590822164 -13.75477921795586 -3.278338480514989 -13.76854622192811 -3.21113764018096 -11.22516461032156 2.346204936008003 -11.3763808957291 2.382786202714328 -11.35040662033016 2.44068793613538 15.1576814090512 -2.124937608263094 15.00622435634547 -2.132964253521795 15.16255610417226 -2.064324066966547 12.67874468748797 -1.072408870383979 12.50443705789629 -1.036012282277891 12.67579970956057 -1.000791165795485 6.893125891645962 2.88321524964939 6.886905982815804 2.822359023664407 6.716380878520885 2.887120345392944 6.493886671357535 -5.8005416321671 6.499297749395056 -5.861853318658661 6.331588001222222 -5.795013610782488 -7.074127155872859 8.225542020014023 -7.250726533626778 8.219285912978307 -7.262032134221126 8.265004098363175 -6.525749738177368 -1.623253311987273 -6.725901609103392 -1.624662552674014 -6.725911777439533 -1.552975673052246 -6.368320690458104 -11.02654289028165 -6.176516721583457 -11.06407179278063 -6.3766631666886 -11.06817949827535 7.399609504547767 9.619323336809778 7.345657936498037 9.648481918796941 7.50932005389018 9.70810095719639 -15.19835650897502 -1.539034396595866 -15.19769012705485 -1.607100305600387 -15.33016673667251 -1.505202038994014 -13.78005902420712 1.693229909753987 -13.7967899717757 1.633255812143993 -13.90101400375472 1.725824069942405 15.09413895837948 1.382617541727121 15.07649354971018 1.441744718990168 15.21264066966617 1.439333263282441 14.70849752495492 -0.9569903180896706 14.70504936238811 -0.885386513503547 14.85983765837054 -0.9261652935141864 4.088365265100688 3.216347512225592 3.92858025553164 3.222424407256274 3.929212039490774 3.283474997984946 3.628701490527138 -6.25377151257014 3.453414789059227 -6.249107518399225 3.454746509898578 -6.187657172491474 -3.942909749583434 9.179981975510847 -3.942449775668033 9.133408161644695 -4.13993042991791 9.176092671215066 -3.606698048420351 -1.645858167980079 -3.804442724339767 -1.576393226874311 -3.6073962201789 -1.57417339189756 -2.288278526008347 -11.90528913347866 -2.283036671723982 -11.94723758726214 -2.461576433909019 -11.91801663122962 14.68525165683018 -0.932638536655356 14.83767055927219 -0.9017608779535168 14.84003553665523 -0.9734276888092656 8.108960391747763 9.093458524674087 8.209437323079435 9.16861687617568 8.276440918809898 9.146107733000486 -15.36165339124285 -1.424612209270104 -15.23019083421849 -1.527319995424785 -15.35086860629276 -1.494096043713383 -13.88118101999296 1.518439185105724 -14.0132840761721 1.551715355141865 -13.98609403252384 1.610524537993517 15.21737009846128 1.491820278078688 15.08122751550328 1.494385356116551 15.21560360749451 1.557231680141138 3.996955488369488 3.144999336356541 3.982368056858551 3.082821681320523 3.823003933198998 3.149638809828557 3.485286894891789 -6.366196625883084 3.499164945906288 -6.426505097304841 3.325515964445149 -6.359894810592758 -4.278002755312185 8.678262533042021 -4.453169469024997 8.671350563432563 -4.476417866988736 8.718175278555938 -3.618895359002929 -1.667155676863641 -3.815957778124675 -1.669379995571271 -3.816637486098988 -1.597686245786954 -3.063075796199603 -11.98819013303461 -2.886020494107124 -12.02254899848497 -3.082847751041001 -12.03018892198073 15.37347153016832 -0.864475723708804 15.37036629622499 -0.792826398140414 15.50826906708694 -0.8391059119714515 10.52976473615412 8.337246791857679 10.46869773574608 8.368506526357542 10.60892099772934 8.426715961728627 -14.90733358767244 0.9496904440560714 -14.91413508240196 0.8798953576999469 -15.02467306260946 0.9783649043506141 -15.43571461010428 -0.3095391815648549 -15.44843414629052 -0.3713122339563524 -15.54299682496061 -0.28070504552319 13.18902707788397 5.120739521180622 13.08182700855746 5.07329441497193 13.05331052206207 5.134754519941269 0.8602079240670885 3.552651421901498 0.7113710177846816 3.561026601019804 0.7198562776932399 3.623901000220996 -0.06156410505620824 -6.85188633132437 -0.2224226690605397 -6.844260889613422 -0.2280132769841331 -6.783130214567945 -0.9993590702559498 9.425796599405491 -0.9871209358075042 9.376457503167522 -1.182856664340904 9.41748422758206 -0.2787465030115544 -1.650569545981412 -0.4648357632701805 -1.583661053340848 -0.2801691149569641 -1.578882537162648 2.632411735352135 -12.09200642552012 2.632056573613641 -12.13679197222151 2.473012178330985 -12.11634927890616 13.26986832367426 5.181267872325768 13.13430698424003 5.196183559839843 13.25632134653072 5.247906031232003 15.37039704935246 -0.7927718569836021 15.5051591891193 -0.7674044945288573 15.5082998077492 -0.8390513938007211 11.27388404135594 7.614833960107384 11.35039658314674 7.690464620731416 11.41892048281696 7.665219088248803 -14.94597724388745 1.133757219368655 -14.8366103783817 1.034481718979013 -14.94404317265669 1.062966787564549 -15.46170198266474 -0.4837969542149664 -15.57902692257803 -0.4547413647059616 -15.55721730864293 -0.3938102667829985 0.755403771290053 3.479990418793721 0.7339020756767323 3.416193550264083 0.5932810520062515 3.487113670990601 -0.1125383764077592 -6.828888836228406 -0.09497580761364755 -6.889010503667708 -0.2613392188630737 -6.820126058444464 -1.294534063689594 8.981731717269463 -1.45507948850479 8.970757636182825 -1.491061582686062 9.020344992648781 -0.2417048101405872 -1.587089843200602 -0.4254040759247646 -1.591913545599537 -0.4278004564843063 -1.520192343133845 1.850810746548346 -12.28492656885881 2.008734919453221 -12.31017810497672 1.826032096794208 -12.33184142163448 9.503412932212505 7.76058911858186 9.393397281554332 7.724749844334949 9.353995887168807 7.784695466024076 12.96596933288625 -0.8856871073875584 12.96262871075048 -0.8140458065531737 13.09807611669301 -0.8662422109606354 13.94702700974277 5.196158813294375 14.06936201237766 5.249176036053585 14.00392306308978 5.156918052186839 -11.82655752285261 3.222342692885392 -11.84374829503723 3.152839329262184 -11.94226861134993 3.244729081785231 -14.18572255002344 -3.58250145599699 -14.18654326213074 -3.645798698832333 -14.29126050829675 -3.558614725452693 -2.987532571468472 3.888388936992129 -3.119921903641918 3.900550950094525 -3.106293207597168 3.965675456964211 -4.520285822817078 -7.038549392869954 -4.664360227163076 -7.026694423352252 -4.670880235876227 -6.965219336962992 2.299404964523432 9.488670329443528 2.322566263497101 9.434557907495242 2.136871318879284 9.47286930048757 3.955660293461079 -1.479465012608606 3.790134618569108 -1.416730121974065 3.952614200677353 -1.407759067084463 10.05991255277378 -9.604728338859857 10.0706418825885 -9.65482546438237 9.929644119913441 -9.654565405404615 -14.18100759915282 -3.615503449713955 -14.07523677823763 -3.701896778334867 -14.19047154775366 -3.678297315289884 9.68033583573272 7.957884167846678 9.703922871060851 7.894120557176986 9.554940304920466 7.919837247075896 12.96063017669018 -0.8172633530626651 13.09263569321016 -0.7978226973522309 13.09607751920492 -0.8694598593270555 14.50982789799723 4.150502059193211 14.57618626995122 4.22835996152286 14.63751959600602 4.195021685250977 -11.67792821171452 3.314407234664699 -11.78392062031012 3.337014453706298 -11.77550975736867 3.406914815894923 -3.096701153932128 3.833949100290053 -3.121743936100268 3.768231548057704 -3.240851383565672 3.845187083151502 -4.685759871219721 -7.089698368532281 -4.667904566084492 -7.150707082949529 -4.818035071205694 -7.07679070270242 2.006696007070294 9.08105633943431 1.863463391247857 9.06402082020049 1.820227595080348 9.116967683248314 3.907978078413694 -1.557309422787356 3.744601666606605 -1.566236740824238 3.742458447236089 -1.494564664824742 9.921957857946488 -9.687768392533094 10.06295538963597 -9.688096935144522 9.915776023782305 -9.74298291948497 -9.536187034695873 -6.109165075974538 -9.52402517985005 -6.171670783331912 -9.652903998715336 -6.091271755545428 5.394369664548398 9.013073844497422 5.269145413654473 8.98814844654512 5.224592296156702 9.0445549802318 8.172384188754199 -1.050493994714629 8.169435860873902 -0.9788432130047249 8.317123293643281 -1.03688854695364 15.4593568147715 -2.196078899442888 15.585691184698 -2.162655680348026 15.49019509487093 -2.249472481659872 -7.174630313843458 4.191544291445221 -7.198639336027242 4.123919467168141 -7.302161396672466 4.207606734110603 -7.512896872044705 3.880741744689181 -7.628222886151233 3.898016109911356 -7.614488809925017 3.965766902650979 -10.05198077925374 -6.220040294606468 -9.925054496375578 -6.300433664451168 -10.05060016082363 -6.282635650962902 6.0595022497826 9.018524087441488 6.086338965082914 8.959240870642818 5.919293735651714 8.992149632533886 8.71294079027493 -1.357679779673712 8.855963963588343 -1.343488947981518 8.858849349569717 -1.415144910131426 15.46797397531142 -2.244082559516285 15.55442020828451 -2.170200083365358 15.59595209762544 -2.214975631735235 -7.018177647189687 4.27015268442776 -7.135179280475193 4.286855907081375 -7.121080656308553 4.354311102843562 -9.487109587705367 -6.03670439304994 -9.35748853738791 -6.116361583604476 -9.484805617161001 -6.099209318034252 5.646198279373889 9.316156776247158 5.673096166160551 9.257483117041781 5.503966014631532 9.291051008994902 8.176889948354898 -0.9670578814414143 8.321803031755108 -0.9534527271722227 8.324578176343493 -1.025101963257383 15.31787573394606 -2.991383493381594 15.35615939340803 -3.037378882863943 15.22713497432006 -3.063684969347828 -7.683941862686723 3.788286790761991 -7.70753054522451 3.720442539687231 -7.809818624814156 3.80494961202868 -10.10754318578714 -6.280988109041837 -10.09644036543875 -6.343660109105083 -10.22256103855552 -6.262485915253553 5.810030689501506 8.709220836368601 5.686800163988918 8.683274861049368 5.642347912516739 8.740057861146749 8.71221542320505 -1.435026870655446 8.709334777800718 -1.363366330854731 8.855242975404517 -1.420832029632356 15.62328263008404 -1.276134631715449 15.74807445594709 -1.239451794400593 15.65831561462284 -1.328189715669083 -2.683509845591801 4.167315434636141 -2.708407832933077 4.101820517499222 -2.82973441647802 4.178034497450074 -4.160051516571407 -6.742902921349519 -4.14190665745088 -6.803783171280707 -4.294121008134812 -6.730509740119083 1.63891788405939 9.318606882448178 1.493596293917963 9.302360680905546 1.45077567462642 9.354854617899264 3.344966541456234 -1.16079712097281 3.177821464271377 -1.169162107752115 3.175809725731079 -1.097497091901778 8.879219485749545 -10.21799406819434 9.022385226087984 -10.22221713968744 8.869138385987327 -10.27239706324155 -12.11254823881648 2.785161929966629 -12.21806901817422 2.808411330130421 -12.21053926717858 2.878497682522843 -14.51223159584396 -3.612669164517918 -14.408335190759 -3.699608285877914 -14.5231095212086 -3.67536556602917 10.09332858830157 7.542209250891975 10.11624857953252 7.478006039962986 9.969096801405391 7.502732089899697 13.36667546683296 -1.213753528807619 13.49827161106425 -1.193692345027859 13.50158749972813 -1.26534123853821 14.21274096975817 4.554931272144604 14.27888045651739 4.632572000543065 14.34159676935802 4.600398678108447 9.121567351821501 -10.05688027525365 9.129931073619558 -10.10595762203221 8.986726411255365 -10.10265056582533 -2.552825312392804 4.241806767107609 -2.686995605654396 4.25350539908281 -2.67375968987992 4.318405533400918 -3.994881784187046 -6.682837628967281 -4.140955918950187 -6.671513595794013 -4.147545019114344 -6.61014441115455 1.892692983134013 9.677086944403035 1.913713247500035 9.624144397243478 1.726242019814234 9.662483222764452 3.425403473226862 -1.027712244455188 3.25623713927763 -0.964427958447406 3.42188197100568 -0.9559809909929581 -12.2580098996741 2.688038875326533 -12.2741725445931 2.61840847154347 -12.37314363818211 2.71110207228355 -14.50343604627514 -3.568408969071592 -14.50565661871877 -3.631637744385509 -14.60850753513759 -3.543932697348949 9.927167091084403 7.341388397474084 9.818078804243646 7.304301580649085 9.779609336369521 7.364568902136197 13.37042311176466 -1.28478605231886 13.36704899679033 -1.213147962529828 13.50196103823311 -1.264735658426976 13.59514017933157 5.593935722553674 13.71858830810567 5.647895169174232 13.65315003289887 5.555866250203276 1.269933349773281 -12.21505571327907 1.429736907496426 -12.24138994912994 1.246035609969401 -12.26086457700516 1.117691310402366 3.832566543961213 1.096809147173354 3.768922328041411 0.9540052658472764 3.839358444508018 0.290891578879986 -6.4182719458041 0.3080688160055412 -6.478358966394877 0.1406040221887672 -6.409845398332323 -1.627877711662404 9.167993417344203 -1.791289676923391 9.157781848542518 -1.824587824479411 9.206671485326714 -0.5881315195274661 -1.146892661343638 -0.7723047443447428 -1.151399498838604 -0.7752859717544591 -1.079653092062166 -15.12450448487209 0.5082367006157138 -15.01306506971698 0.4084567146726896 -15.12144782084179 0.4374958174156797 -15.40483700265046 -0.5500840574871496 -15.52314926569948 -0.5205329036869346 -15.500459170509 -0.4598507532618971 13.6372217008346 4.552000643296386 13.5025964082012 4.565796961491111 13.62564565899375 4.618821671536798 15.4332221916265 -1.208163755361539 15.5691506200113 -1.182197293887767 15.5722767728024 -1.253842345181188 10.93686109792127 7.70189293965731 11.01554030073302 7.77749597874106 11.08419198164969 7.752694003065106 -0.6158288035618509 -1.194444819456567 -0.8029789501656837 -1.127197834276049 -0.6177048406552255 -1.122711433791591 2.023188275497688 -12.02477396981686 2.022744962719547 -12.06917846409603 1.861827604196317 -12.04744303558953 1.209573519529485 3.891427002171439 1.059253855070687 3.899491351054425 1.067007614216021 3.962160819751297 0.420894258451871 -6.346390196957869 0.2572155089149181 -6.339299772052521 0.253146768666605 -6.278305945086839 -1.29323938510224 9.649788542172328 -1.281424232058489 9.600608416779039 -1.47723624504815 9.642010717377548 -15.07056644321586 0.32951837866518 -15.07648249795538 0.259809567907225 -15.18906507192764 0.3587922130660675 -15.36821020385244 -0.3764479075521434 -15.38176415486199 -0.4379950396759887 -15.47649394105839 -0.3471811079866534 13.55408544381492 4.468656774022928 13.44601181969195 4.420618456722103 13.4193014521924 4.481458325226751 15.44154621644683 -1.270040220367351 15.43887546463735 -1.198432813650995 15.57792429179933 -1.244122241854085 10.20512566656824 8.403341707836011 10.14432019768183 8.434145630052644 10.2870289046954 8.492544086535737 -3.91869385540605 -1.225108016712174 -4.116115399298471 -1.227197461004944 -4.117322721586101 -1.155455181929513 -3.471467888267802 -11.78072429536734 -3.292609903821964 -11.81562808691437 -3.490491370865683 -11.82253249225255 4.317564667636729 3.491936441918928 4.303776139349001 3.429912165714986 4.142883544033628 3.496419642142974 3.819721301533072 -5.889640375170888 3.831603248875901 -5.949998662128328 3.659274989512859 -5.883511144970043 -4.56309856753151 8.881415741794974 -4.737645362532237 8.874537455795485 -4.760466039373007 8.921257796501106 -15.30437239808054 -1.925137475173718 -15.17265218618397 -2.028113769500776 -15.29367516436432 -1.994492812379549 -13.63977731800671 1.281596579032337 -13.77383540457406 1.315252893507354 -13.74648797467401 1.373895152655176 15.30554625251233 0.883233312674941 15.16852919846324 0.8845237794874239 15.30447440325262 0.9475939320276569 14.55150531006319 -1.385893434792753 14.70497460716258 -1.354540221883935 14.70654726679664 -1.426167760578414 7.809899482390562 9.019266457404926 7.913083669094901 9.094354918472561 7.979568694352706 9.071961038863567 -4.221796480428573 9.373952065694544 -4.222767347295527 9.327625268824464 -4.419180856427436 9.370285082541937 -3.934943710298049 -1.25356101857082 -4.133569218365498 -1.183902257835565 -3.935510301573979 -1.181855040535059 -2.70128022653402 -11.6845343638699 -2.695019528428729 -11.72635566158073 -2.87537850023207 -11.69661333401928 4.394521696023961 3.544068214256614 4.234063129625008 3.549995596757794 4.233809223339488 3.610844655154478 3.920277081852706 -5.829542967465618 3.745610314293128 -5.824918717927295 3.747740621135654 -5.763390445962426 -15.08193289730779 -2.127484480091077 -15.08174712600192 -2.194663880642126 -15.21567994234236 -2.093469168983182 -13.63763212200348 1.324530205794836 -13.65226306077004 1.264986309848775 -13.75906765819578 1.357217617136769 15.18372560301041 0.7724757892874185 15.16700258194906 0.8311419315602429 15.30402056265537 0.8299138609692803 14.56812892279312 -1.422897280082927 14.56577507920066 -1.351227689867268 14.72082169562897 -1.391490913011143 7.068418925074433 9.578434342099587 7.013736524031568 9.607519450519252 7.179469623167814 9.667466975923748 -7.364757525197375 8.392612165246591 -7.541092374116214 8.38627149974835 -7.551090634919225 8.431932122824478 -6.80895581292955 -1.224375878368809 -7.008873154588597 -1.225819308579833 -7.008732993357302 -1.154112030053068 -6.648014904057874 -10.76811635857427 -6.455180147617425 -10.80577662083795 -6.654962614866951 -10.80987046417361 7.164970312245638 3.222160895919682 7.159683149105591 3.161453824108722 6.98852420928171 3.226079763481782 6.785490369391764 -5.373434654719696 6.790137438730099 -5.434877087880408 6.623480759659401 -5.36789136083812 -13.2976058089756 -3.815142780842342 -13.43935960981416 -3.778435687170322 -13.45202359186805 -3.711998911620124 -10.96686906604616 1.94467411422947 -11.12000741769106 1.981412675809465 -11.09636944262759 2.039137595600077 15.06275997946819 -2.668645552542825 14.91046052759581 -2.678321142270544 15.06793737631414 -2.608660608269839 12.40361165627005 -1.556904795702498 12.22721588274776 -1.520881642628328 12.40210112607122 -1.485221137171874 4.840345670957236 9.60853603043002 4.967718518286758 9.684953934767201 5.026829930804842 9.661844422024412 6.852543361500072 -5.348088665556715 6.676098353423969 -5.344069393433601 6.685731496818778 -5.281342409296973 -7.016356060791461 8.87659206099765 -7.030952370379245 8.831678311500326 -7.216252762861057 8.873910607339996 -6.797942116762056 -1.205225518883762 -6.99772183470219 -1.134966135554738 -6.797879829875326 -1.133539394580807 -5.982158908094954 -10.7224021075948 -5.964037541056369 -10.76442641326876 -6.158289302214984 -10.73158045372358 7.260035233781455 3.293313681469098 7.098018444234611 3.298725556998873 7.089089793444524 3.358288383369784 -13.30462441089112 -3.749966230417013 -13.30302574846472 -3.815261097718026 -13.45740054944495 -3.712077419898429 -10.77779903674448 2.19365707219338 -10.7911936668646 2.134380368863871 -10.9199066942917 2.229507457165477 14.90675467535563 -2.784820925746171 14.89359153948073 -2.731690706021325 15.04594846248285 -2.722592259857834 12.40266215382955 -1.559795130278744 12.2277740111065 -1.59545177405842 12.22626653963685 -1.523771494388957 4.143254436350755 10.06571708920818 4.09927267677607 10.09630450686961 4.282420137726039 10.1563466515096 9.435616869229413 -4.866506000955534 9.432897596798991 -4.929652859282817 9.280708942696998 -4.859794310336661 -10.41859686279176 7.459863426017556 -10.25179364391773 7.422709347808344 -10.42020891973381 7.413522484191933 -9.490237906461044 -1.142814133138992 -9.681312747559218 -1.145501078235451 -9.680553925598048 -1.073817422628422 -8.952747348601889 -9.552780865647687 -9.143699226774411 -9.559866954031682 -9.150067504131693 -9.515774283021198 9.889666374107684 2.972977660817597 9.892497053443954 2.913043476752998 9.721005228011375 2.978145278554719 -10.92559742287164 -4.813734998559012 -11.07973989590846 -4.774826602266801 -11.09042717486179 -4.71006304648407 -8.064645236820358 2.314896475201184 -8.233189940313375 2.353898140789388 -8.213579112900032 2.412094018744413 13.50788389903918 -5.406127834911042 13.33483920755359 -5.424019232187091 13.5106366864216 -5.352041267498962 9.671533443481678 -1.693736407383557 9.478736923676125 -1.660536261293553 9.670806756414503 -1.622048598075757 1.838311067759377 9.839238762325136 1.983104087847525 9.917511424800731 2.031704780734401 9.89160867737553 9.984298747048996 3.020998695965374 9.829383978294503 3.027611934027926 9.813051806426339 3.086498200934479 9.507223336109265 -4.831511165229551 9.338536488004825 -4.826243837404999 9.354812727931474 -4.761952710567603 -9.89557453061461 7.914866438740829 -9.920935499052261 7.868960947622122 -10.08654778620994 7.909277398932868 -9.492816973104848 -1.147144075054858 -9.683132353837953 -1.078146274811977 -9.491998916595653 -1.075447616452952 -8.588155731518745 -9.510129042457836 -8.557796019122565 -9.553843263302154 -8.756356925636574 -9.521201004372195 -10.79673461355488 -4.700693321613525 -10.79935906835351 -4.763601622987849 -10.96486275762137 -4.660596263860441 -7.95613468336475 2.481711099612882 -7.962177967925487 2.421902294323401 -8.110749165694452 2.519442721548662 13.28335660480808 -5.475056319707314 13.26595833296951 -5.428014034773182 13.43918142063929 -5.411224921898035 9.672936778212982 -1.68869370939979 9.480888525231553 -1.727184133651086 9.480140076488508 -1.655494217076865 1.170179326720959 10.2086367601168 1.139006549215127 10.24276056976623 1.329449867722167 10.30144132619703 12.55687298233113 2.453384130173211 12.56516430339168 2.393466521627998 12.40364063221526 2.461614706417594 11.93640254681426 -4.165032350167974 11.92830484999622 -4.230275828608788 11.79576149654928 -4.155551427142922 -13.37682804325184 5.275712809046858 -13.23131050433421 5.242665521231977 -13.3834254096628 5.225929213983872 -12.0727413853216 -1.041409020725488 -12.24641458179391 -1.047103637845104 -12.24483295440978 -0.9754150875068528 -11.10567366236691 -8.039428313101588 -11.27856220826095 -8.053789475132387 -11.29680376153356 -8.006088254912202 -8.187308503221157 -5.455430342685271 -8.348234059464961 -5.415852699562201 -8.352713368965333 -5.353009241600811 -5.069437534956167 2.531607759242481 -5.245289035871961 2.571431937414694 -5.233757382456509 2.63073961695338 11.31536903728453 -7.370396790031424 11.12447098697703 -7.393572481067205 11.30950136415803 -7.321621856498431 6.775102968090309 -1.786046738243033 6.57489184107579 -1.753906767821389 6.775063105397541 -1.714354410783515 -1.35971484671832 9.794750775461388 -1.207690894320136 9.874847435927755 -1.170781496907739 9.844470840769276 -10.85155818018386 -8.044927051654486 -10.81155848673523 -8.091277161583459 -11.00367125140248 -8.061637611206219 12.65883005106361 2.465021228541604 12.51818957215605 2.474507395170636 12.49769888463863 2.533742024169193 12.00385823044273 -4.135164480222293 11.85062002729697 -4.126928048896102 11.870998185767 -4.060788935018123 -12.94155104552028 5.745711360249714 -12.97020607507349 5.695226271978908 -13.11444422999616 5.731579185363423 -12.07782095363199 -1.049407336215401 -12.24991109127492 -0.9834110930476508 -12.07621148553565 -0.9777292366934768 -8.052138060893382 -5.322984618908614 -8.061635622513139 -5.383991422140615 -8.227574240149934 -5.282106015519593 -4.958719612142856 2.71016070344916 -4.95611050906218 2.649149115916692 -5.120072243836345 2.748647244982946 11.02977013404539 -7.368703720926839 11.00278738463938 -7.326842864677343 11.19396785266242 -7.305155638348523 6.773318783743004 -1.792907828197249 6.573133027084795 -1.832455504155151 6.573107856879306 -1.760767086204102 -1.986585910336417 10.04723581590308 -2.005258580735482 10.08646464865088 -1.818918216905576 10.14191074610979 -12.9824368799928 -6.13026542749434 -13.13207387417355 -6.155811866241038 -13.15830846884235 -6.103729753312876 14.79749500018704 1.037575474863038 14.6546796747225 1.111672259915335 14.78925026464151 1.09862060619865 14.12757377989656 -2.984870955529664 14.11807653859754 -3.052513776518345 14.00402620830166 -2.971121098652886 -15.392748608375 0.622345216007364 -15.2601827431418 0.5979448910657257 -15.38999841171203 0.5670984671098608 -14.4588684489278 -0.8390295158392098 -14.30867123185037 -0.9005837405983335 -14.46132517207005 -0.9106927418999509 -5.374207199175368 -5.971311963748499 -5.537306155160665 -5.931902966958463 -5.533922672640889 -5.870498019420938 -1.988530112486937 2.800941416648781 -2.166523748886377 2.840634739882751 -2.163785971806951 2.901642838078809 8.643917851519563 -8.821016866257615 8.831587244531447 -8.749631988710847 8.849748430824649 -8.794339705558432 3.775534105004804 -1.855066509655424 3.573783730859172 -1.822632506277318 3.776182604672942 -1.783379904182509 -4.4923226799024 9.437572616977786 -4.670782757033908 9.391489061721853 -4.518454541149218 9.474070289086502 -14.3024413167885 -0.8233352346474084 -14.30482208302895 -0.8950027496079376 -14.45502069562761 -0.8334506321733186 -12.85472972588699 -6.175066999908178 -12.8098106925636 -6.224758381265309 -12.98629346718917 -6.200865466139687 14.73494332966793 1.028743831863404 14.71629693507362 1.089567604721711 14.85843091705435 1.014664459358783 14.1723083452901 -2.973089852186121 14.03768551094517 -2.960251355937999 14.05783144772774 -2.892068610091184 -15.19932092100185 1.047629495626219 -15.21580165720414 0.9894633255018345 -15.34742777455008 1.016831532506449 -5.197981117640374 -5.809726276629004 -5.215298583282429 -5.869300439143449 -5.375615878652425 -5.76907938226833 -1.917213544852838 2.947798844589214 -1.905712399589655 2.885196999548293 -2.080709377232819 2.98617664801779 8.520876204190078 -8.729982172960378 8.481503486680115 -8.691956648755397 8.687691766703162 -8.667047494731419 3.779257159929721 -1.840790660751815 3.576861791884026 -1.880047587682836 3.577506404881137 -1.808358123663641 -5.217968868846683 9.496922238237728 -5.22598152734065 9.54269679527966 -5.049712554877388 9.593732958602146 -15.25715993617085 -0.7093137958446033 -15.1218745344357 -0.765088899467119 -15.26025847474393 -0.780964328650635 -14.5457590702421 -3.373773767576465 -14.67521912264848 -3.415366427660079 -14.70189853230447 -3.358117846243254 15.00492688086299 -1.943486452059057 14.88502920112298 -1.861237469285582 15.00644741962897 -1.880930354359693 15.19674240769201 -0.7715770911606594 15.30733985482653 -0.7911160391785539 15.30381319855652 -0.8610614001310909 -12.99017871459692 -6.234651253573509 -12.85129754989019 -6.242134299949896 -12.95959706664945 -6.289173031184649 -2.014586834729775 -6.503057366206366 -2.166003827257392 -6.465672102492812 -2.155547347258185 -6.405116295515027 1.796212019854677 3.106563191014459 1.630678838042845 3.144198271721106 1.626316367433371 3.207357373684283 5.796361977965246 -10.00543536587145 5.968990243056901 -9.936157725172993 6.000150709759714 -9.978635926580598 0.1514986527103879 -1.862095212027491 -0.03535474237399749 -1.826921148443765 0.1528658834350749 -1.790412023070404 -8.314737258932498 8.226237266172515 -8.47266850851215 8.18856861165855 -8.334840412261075 8.269653205146332 -13.07489064427592 -6.19457557832093 -12.95162202328517 -6.142618523725045 -12.93611139342808 -6.203149241443309 -15.11859509679825 -0.6931342189566541 -15.1216870276227 -0.7647820226372734 -15.25697229439602 -0.7090067164322275 -14.53336609872923 -3.422271608821417 -14.49051978775418 -3.47570644070986 -14.64687964830532 -3.461476706126069 14.82567338550247 -2.097881847050104 14.8173737537505 -2.034935585596903 14.93601168846332 -2.118307368852685 15.18625866078246 -0.7719796506945544 15.199840950447 -0.7019953478108855 15.30758953989376 -0.7909747564258224 -1.801059893950435 -6.323064514248448 -1.824456373817766 -6.382009587943262 -1.966107878298611 -6.284687423161257 1.822905289219322 3.211133598263874 1.840849532602253 3.146589528990847 1.671102997744626 3.247539069042812 5.653633162096018 -9.872337703629999 5.603161799860567 -9.835990410277086 5.807335604134617 -9.811070689404623 0.1501522542310374 -1.866498598895359 -0.03799787489346174 -1.903021079445384 -0.0367010079183816 -1.831324098296655 -8.888052569374295 8.149396088940296 -8.891956303007284 8.202055652112406 -8.73560339515349 8.243599652374339 -6.734757200207879 -10.13158124426027 -6.786810424791438 -10.0853636447483 -6.630836250612633 -10.07686599618939 -12.90032347595902 -0.7375519869836984 -12.76594756049218 -0.7871777496406589 -12.90354877816133 -0.8091961519397558 -15.04000533744187 -0.04422049426156183 -15.15826294837974 -0.103902757760789 -15.18009653649932 -0.04310511607338362 11.35871067781245 -4.864247016418996 11.47912188366892 -4.890542169573061 11.46497796310752 -4.952840324507377 13.7737197656346 1.887620605516973 13.88537453493573 1.862224531672379 13.89153042877192 1.791595110932155 2.254970883154677 -6.969718485585292 2.123484856448834 -6.935823256259782 2.137671355224413 -6.875088360074381 6.176292604536211 3.220335926862572 6.168644844224049 3.286131117514658 6.319551235286469 3.18664471334399 2.338569341515941 -10.96875920256962 2.48467897294826 -10.90228239941794 2.525754110047421 -10.94533411803951 -4.36374508062362 -1.824014600507707 -4.525448236964102 -1.784163898616591 -4.361628024967446 -1.752329704582327 -12.0773402268204 5.717787667271676 -12.21582724347558 5.693083986530518 -12.09955626588875 5.767557418050034 13.699196658961 1.836197871744953 13.70150222958474 1.906335181932238 13.82002373716389 1.81085255218158 -6.659017248096523 -10.29176504508441 -6.54275154793371 -10.2298238795108 -6.503143052749836 -10.28219924616156 -12.76355487385812 -0.7170562103522096 -12.76686336531682 -0.7887048109075213 -12.90123924015139 -0.7390789801632326 -15.04027039555182 -0.08201633616855049 -15.18036279514886 -0.08099854106763202 -15.07608817524493 -0.02682146148611495 11.16343325267279 -5.110812322807307 11.16962134544968 -5.04778422020852 11.2746950283071 -5.137254227136583 2.479947814789417 -6.78768472392369 2.454683453377362 -6.847097676410452 2.336615807329974 -6.753060556629261 6.546318104919582 3.332962703623065 6.39633679267543 3.433311080656806 6.528130475113284 3.400163524589315 2.158031868041338 -10.79059507243512 2.100486390351387 -10.75390636746618 2.288066920349387 -10.73253000148005 -4.361135472234766 -1.817507720166309 -4.525005787395 -1.849321940656075 -4.522838881563322 -1.777657653559122 -12.42246536425111 5.574860662951603 -12.4311184891748 5.633162187880132 -12.29339096053061 5.660366857367359 10.31173358783231 3.50709248904955 10.17881589043358 3.60625674687827 10.29695217407422 3.576282953728724 -1.315416691197011 -10.79405863836673 -1.374337776385144 -10.75449092636993 -1.201969068289128 -10.73720172662046 -8.481193369883467 -0.8751223845929151 -8.336821967247346 -0.9192253626530433 -8.484012455104642 -0.9467839349403823 -14.29623749013184 3.174026487722697 -14.31160178725745 3.234807344575829 -14.17862669986153 3.249456603355931 6.312768613149061 -6.033170990114492 6.441202120565928 -6.06430763406615 6.41815344580539 -6.124867381581647 7.059204423391727 -6.845404529037356 7.071801472411372 -6.783544217443566 7.174380981158103 -6.875418737800071 10.86864558100718 2.557520800342852 10.86488997675479 2.626164294471276 10.99470294054498 2.528049588216512 -2.067904797447985 -11.34575704088415 -1.944399097054143 -11.28176731101638 -1.89956631691054 -11.32815146224457 -9.252018368845103 -1.631406599386494 -9.254912747886399 -1.703054987305118 -9.395906475482695 -1.657944437544572 -14.4220460078759 2.344050150627878 -14.55481375449636 2.333781744114034 -14.4517769179506 2.397886861496136 6.091306337619217 -6.23692650976307 6.104642226818945 -6.175365311416068 6.209104584785072 -6.267712608749928 10.04282464961628 3.491584414518825 10.03800841644141 3.559758750590508 10.17168528753373 3.461228039013754 -1.161335543843414 -10.98767214523509 -1.034080322934476 -10.923288414836 -0.9892597495409061 -10.9686628522587 -8.348341047491088 -0.8770647973560771 -8.351571782623044 -0.9488765447003323 -8.495941761685025 -0.9047706828842368 -14.11620357020578 3.305071567235766 -14.24939016562188 3.291664004809009 -14.14504819138272 3.35829672682938 7.295198867324528 -6.630406365574164 7.420801329581828 -6.660681882982992 7.398814955555755 -6.721558199560822 11.12722622557944 2.565077100319093 10.99819483546227 2.66382775340968 11.11372318529046 2.634662239243968 -2.215362712886396 -11.18898920189834 -2.273803416850611 -11.14845037543133 -2.105199998459768 -11.13249064539562 -9.400683733517589 -1.667103217278151 -9.259690412177539 -1.712214552814792 -9.403677260691087 -1.738753439439918 -14.46394955626414 2.334853141709241 -14.57968553762004 2.262552572961713 -14.59658506697729 2.323576660065004 1.664909050401073 -6.00287967448304 1.639810231743594 -6.062124915849631 1.518241520028672 -5.967574587586071 5.680749861989676 4.153278402492804 5.699075827912392 4.086538148343667 5.545804644659049 4.187029601467367 2.808683367924022 -10.21255111475623 2.752195448522044 -10.17611809853025 2.942762782744754 -10.15392209196817 -3.492640684670395 -1.074779166979151 -3.660239649909997 -1.107473712169657 -3.657906653401866 -1.035640446571466 -11.88719037842142 6.390256998960516 -11.89541003141921 6.447754763479655 -11.75558830247717 6.477812762338425 12.23970291299248 -5.252266091517727 12.24282244601419 -5.189028021922632 12.34638557172039 -5.277401643836491 14.32855323949037 0.5444034476031647 14.33388255372585 0.6146697311122106 14.44531795795558 0.5204663205295975 -7.980199888351235 -10.11020522779608 -7.868073156196106 -10.04971666947909 -7.831929224133348 -10.10401673704069 -13.57690584280221 -1.510820735296349 -13.58031336687795 -1.582459512425287 -13.71032858905868 -1.531463769870081 -15.04642135590798 -1.316902416474452 -15.1878365627712 -1.312660695730625 -15.08532463342212 -1.262459068704902 -11.4759982641116 6.572011793410874 -11.6168172755977 6.544988057900756 -11.49738923334903 6.620698187983049 1.45140852786679 -6.181979751141961 1.316770463478165 -6.147477783180293 1.330551672587845 -6.086866345556572 5.525600011172712 3.971522314587363 5.378597415444673 4.006010372832305 5.371647709543538 4.071367372098957 2.968228157289516 -10.4058531221681 3.118770321804135 -10.33931686132888 3.158423717625352 -10.3817644338619 -3.472173205788623 -1.021564694130258 -3.637441362597286 -0.9824316918726268 -3.470119640786549 -0.9498997117940674 12.53023645191604 -5.084142610880516 12.42535699351473 -4.996734953078781 12.54189966260554 -5.02159830274504 14.39810257368164 0.5799431559813545 14.50517670957938 0.5558597482654902 14.50871283840981 0.4851398521851166 -8.013999791690987 -10.01844589470611 -8.062800112241703 -9.970256554226488 -7.914485185262691 -9.964763520878357 -13.71087837139632 -1.532328790528421 -13.58086316046755 -1.583324550836557 -13.71426209255166 -1.603981776548217 -15.05037840738909 -1.226578990515357 -15.16681030518107 -1.281835479256376 -15.19177177565791 -1.2219084160444 -8.470635071338313 8.644904192249507 -8.4759865869722 8.696244322386692 -8.319100610767672 8.73832069133981 -2.243567775053115 -5.534437018777564 -2.265612748196491 -5.59351774178789 -2.407280185898068 -5.496019744451218 1.423017545236261 3.996610332534203 1.439128645182978 3.93226132612275 1.272451799671924 4.033070483120869 6.056441916562583 -9.245974554115962 6.008094240639307 -9.2095285003263 6.208852809025908 -9.185260745575722 0.7209137041357927 -1.052779723797565 0.5345741419856875 -1.088858802466984 0.5358504636167444 -1.01718264642783 15.13340875538687 -2.055935007560684 15.12286934474708 -1.99326738068815 15.24485440192698 -2.075077148352889 15.14364034921273 -2.006947537996704 15.15885183476341 -1.937191908242164 15.26524688620531 -2.024711924237654 -13.98718542760739 -5.20840903344175 -13.86223355265702 -5.159751625865233 -13.85305440939914 -5.22093847933876 -15.19521549496234 -1.524609962244749 -15.19832625412269 -1.596270603183512 -15.33343446079239 -1.539369530202913 -14.25334663286684 -4.434348362253204 -14.20870979211273 -4.486729888709538 -14.36811022770849 -4.470469855010923 0.6717876511060339 -1.210241033241309 0.4867304553226759 -1.174624513960274 0.6735330642507476 -1.137987546591831 -7.870121931303062 8.73528334268237 -8.028669490989495 8.697256081430792 -7.891460751344259 8.77732786333994 -2.431790925661322 -5.701972905379759 -2.582006237078138 -5.664628946943076 -2.572853748577511 -5.603933900151874 1.3207502921861 3.829641580458917 1.156729268659698 3.867226762583225 1.15368059518012 3.930047495072411 6.186704679573904 -9.400783869411178 6.358339432172872 -9.333261558329864 6.387114112661168 -9.37479155409129 15.27570717202477 -1.945184662738022 15.15263594605823 -1.864387888536923 15.27401287760544 -1.882781561923195 15.14069067588906 -2.007565626224175 15.25235058852127 -2.025918782392416 15.24645489701924 -2.095557541616274 -13.89084970786029 -5.359687197478832 -13.75650550368552 -5.370712956410681 -13.86627156168164 -5.415556421484648 -15.33351657482098 -1.539429627282991 -15.19840866140417 -1.596331131169983 -15.33656569668673 -1.611076742562799 -14.28798423533527 -4.346857445713898 -14.4187579133071 -4.385031019497837 -14.44708662125225 -4.328881478679093 4.06716540719898 -1.185981328109016 3.868482075767634 -1.225512234170905 3.869251462265488 -1.153248236953836 -4.888211006974514 9.882382813561552 -4.898432150802738 9.926934781065773 -4.723281330374546 9.97759662542976 -5.52047463344559 -5.022925867041916 -5.536327267936244 -5.082760712744136 -5.694496098422492 -4.982558361088136 -2.198297000100457 3.709198997411894 -2.188541427903398 3.646802682913805 -2.358294975241326 3.747327736722881 8.821063622737404 -8.081068075667204 8.784409520340009 -8.043575398071795 8.984361385125315 -8.018889786579749 14.50328753911145 0.6198714515705496 14.48379981290011 0.6803768562943656 14.62913832682236 0.6065470026754626 13.91378675787656 -3.914028269540955 13.77657450752753 -3.901922352934037 13.79706136945947 -3.83401556996461 -15.05188590832647 1.648192432218593 -15.07145081059646 1.591110733002987 -15.20388890121259 1.620255215971475 -14.05456930404416 -1.737151735978362 -14.20793252154091 -1.674906213234118 -14.0522841221067 -1.66548702378833 -12.59906707432638 -6.847253726117345 -12.55453595350723 -6.896469800282259 -12.73363713770755 -6.871573667032815 8.961147970339669 -8.208885376303655 9.144588694193473 -8.137002183023883 9.160705660750132 -8.182299048462921 4.110749473134306 -1.023114863124318 3.912830110979244 -0.9904020482335455 4.111315907697413 -0.9514279860394631 -4.135678877851921 9.832357946580549 -4.313095418995537 9.786835669990019 -4.163550975226692 9.8676486638513 -5.688966563965556 -5.18195939005831 -5.848570381780682 -5.142821701154065 -5.84655112813323 -5.081188966712225 -2.320973174555494 3.517651151840107 -2.495354982347812 3.557019847334828 -2.491139280843386 3.617743617189456 14.56362394861421 0.6048563275228138 14.41769415905964 0.6779608416638659 14.55488592818863 0.6656911428215733 13.86099265336756 -3.930069096200835 13.85139004525763 -3.997399602647113 13.73509923301644 -3.916996254970738 -15.28854170594447 1.170204696329194 -15.1550692296586 1.144143514501218 -15.28831152002339 1.115665407106844 -14.05277218581297 -1.734523830673545 -14.2084088069347 -1.743942643476776 -14.2061360192512 -1.672279247086287 -12.74803913342135 -6.767554554422609 -12.90118928352313 -6.791348088152562 -12.92646166011155 -6.739806194378869 11.36690190646553 -6.647527372246057 11.34144570473119 -6.604965270711 11.53040684884705 -6.583774012560459 7.200505955828413 -0.9561201650644831 7.00083248135697 -0.9956291300117207 7.00071058884438 -0.9239409321923124 -1.48376548765514 10.41695309290832 -1.504011298276328 10.45532660564309 -1.316359851679797 10.51125927448329 -8.458278291165097 -4.502450701648305 -8.466784136497342 -4.563739723461231 -8.633311313184528 -4.461581020673512 -5.396144750553114 3.431986664955927 -5.394796595711615 3.371181651578052 -5.557079283541865 3.47044449800649 12.30228252097801 1.853547167638241 12.15929059488958 1.862508253046925 12.13908107718586 1.921629941830395 11.67023320637652 -5.003696625825226 11.51444395905367 -4.995988122235938 11.53443058290623 -4.930084753450449 -12.52143663078368 5.848099787347497 -12.55033458989957 5.798523837649225 -12.6973144625812 5.835657809152892 -11.71952687381128 -1.875594575882811 -11.89451678575479 -1.809075920531037 -11.71807569661854 -1.803917970014758 -10.55748009038494 -8.648509015496126 -10.51872443196023 -8.694577588606746 -10.712234833642 -8.664198102426601 -5.494480884714587 3.270060272424678 -5.669810831391525 3.309871727709525 -5.657082681780952 3.368999419505344 11.64054566850829 -6.665546296495399 11.45184500349444 -6.688128302873198 11.63628949028472 -6.616148932217691 7.200773576465188 -0.9550911522696632 7.000978179440799 -0.9229120348217619 7.200661719200683 -0.8834019212933418 -0.8557032800262521 10.18544707034978 -0.7038769885142304 10.26522472303308 -0.6654328843450219 10.23560638817811 -8.585650432987862 -4.632918670687328 -8.746147254760503 -4.593345034377506 -8.751657674730073 -4.53023762838618 12.20098273480808 1.828676920348126 12.20881383689702 1.76879176762304 12.04525236393834 1.836337757097865 11.60436469461252 -5.027910017287828 11.59688794168835 -5.092868710359014 11.46137496749322 -5.01892724370697 -12.97791497108754 5.346344886082515 -12.82965266395783 5.312512659637982 -12.98453843034841 5.297244266613708 -11.72442179487352 -1.883353288694198 -11.90088738895885 -1.888515046128052 -11.89941035243757 -1.816832428474763 -10.81498723580677 -8.613250355299023 -10.99077027464823 -8.626290330607958 -11.00751561178837 -8.57922805217251 -8.363370177573202 3.209764761182695 -8.370518692955651 3.150059513646359 -8.516294869167938 3.24731803677458 13.54984369799262 -4.673283195787599 13.53357639757153 -4.625454875229106 13.70379800090644 -4.609601351086891 10.07042243125469 -0.8539061542767 9.880345559514062 -0.8920967104598228 9.879525033618439 -0.820410331446248 1.62510891954094 10.52198621117121 1.592158870104572 10.55545236423388 1.782215518531985 10.61436410476008 -11.1383843700576 -3.862503535124068 -11.14009275490697 -3.925745369285175 -11.30644976216742 -3.82245429486432 9.610698755017879 2.324128626611853 9.454314006308366 2.330460342617318 9.438822933347161 2.389415212654336 9.138189625836027 -5.667971408323222 8.967920267342286 -5.662998617348173 8.983367912163319 -5.598916235509707 -9.474567731779072 7.714074474025448 -9.498796101957419 7.668525057284711 -9.667458621774603 7.709169115461408 -9.12225308190161 -1.985088050414322 -9.314545110333521 -1.915803486623646 -9.1215549819467 -1.913398119617542 -8.252482998522213 -10.05290980644982 -8.223840858571558 -10.09627688123912 -8.42244222018326 -10.06348162384995 -11.31534736621555 -3.995255402590071 -11.46775127464653 -3.956414046289486 -11.48071270841528 -3.890983548506818 -8.482272016717845 3.03624833154522 -8.649085052330486 3.075014986184076 -8.6284556788702 3.133127620812227 13.76422730937204 -4.623939959236497 13.59416614473529 -4.640825448444363 13.76784949605838 -4.569069750105899 10.06827309870125 -0.8615138757246704 9.877375987311938 -0.8280170433511696 10.06741505966949 -0.7898225502878942 2.271091111122606 10.19415728256979 2.415547241900588 10.27270678874986 2.464042862563142 10.24692458560141 9.516144212168694 2.267401103193738 9.517880949694792 2.20739729690558 9.345768114827873 2.272296326341851 9.081467940191283 -5.680520818604156 9.079743160518373 -5.74337669194364 8.925089831557182 -5.674088414348618 -9.999645313485154 7.231183005294846 -9.829826442748519 7.193636744127632 -9.999868683763399 7.185118553115247 -9.114182815227821 -1.97148860377096 -9.307150193477899 -1.97389654884978 -9.306476851172564 -1.902207488063143 -8.630990068009346 -10.06176448221344 -8.823835164775778 -10.06812178340205 -8.828329729776671 -10.02455321979924 -13.67913772765909 -2.830732235713698 -13.67620375353141 -2.896912202496391 -13.82756469838497 -2.79322083223679 -11.22018086992831 2.856925971685839 -11.2342283920958 2.797610524902253 -11.35813618163683 2.89236313765833 15.03100622608839 -1.874348120142226 15.01792263639419 -1.820376597597022 15.16755491902891 -1.812614555517476 12.75540716373067 -0.722061087033223 12.58348775044281 -0.7571908692744412 12.58183996094098 -0.6855080856889833 4.593107677932338 10.30936002238464 4.549295242453063 10.33989272295918 4.728905366402535 10.39947039205032 6.86437988100155 2.576715238344686 6.701963726339264 2.582108810617294 6.694257525682739 2.641821229414982 6.464443656817044 -6.155975670679551 6.287609383275505 -6.151972402283105 6.296153931751871 -6.089462240014575 -6.624329938761893 8.533852976676048 -6.637024964110001 8.488883771763653 -6.824617810505893 8.531261956100318 -6.412913257535382 -2.028994667122009 -6.613237327159497 -1.958716974691471 -6.412932323392018 -1.957303651022975 -5.564796265154871 -11.20928993583405 -5.548481739430882 -11.2510751859131 -5.741322112603968 -11.21855896244657 5.285980257911756 9.885425521455808 5.408525380227643 9.961235953025645 5.46892365966894 9.938355950589768 -13.68861087468348 -2.895965864588496 -13.82611810332989 -2.859466867849621 -13.83985812534827 -2.792171878820953 -11.34394159639785 2.682014419338178 -11.49446421434188 2.718463431486958 -11.46837421416415 2.77634044904586 15.17886102922789 -1.780273744198264 15.02927206240236 -1.788536319257916 15.18364533126544 -1.719419776198815 12.75616741611904 -0.7198058476779921 12.5826000790097 -0.6832532410347322 12.75455664469998 -0.6481341883792637 6.770193910642797 2.501024411470213 6.763677408283213 2.440163708222017 6.593344899047678 2.504928768543371 6.385529568956861 -6.193711685260926 6.391231729310915 -6.254972883322657 6.223120918041034 -6.188180049412851 -6.974196216236797 8.011890177976609 -7.150925354044279 8.005642783670245 -7.162813575669994 8.051353932162774 -6.422055038869972 -2.044896213624786 -6.622361966138952 -2.046306678514491 -6.622377027394011 -1.974614850260854 -6.253650066278304 -11.22056751519366 -6.062263918488467 -11.25802529588886 -6.262508268761745 -11.26215229661669 7.513916830360159 9.72123158712567 7.458013714381293 9.750335238784267 7.620806111622718 9.81007834498349 -15.21964334306914 -1.09160733074058 -15.21919948515193 -1.15976394569319 -15.35085128702435 -1.057959199088146 -13.87362288763363 1.984717882657217 -13.89034023929204 1.924734211091876 -13.99402307564132 2.017171873273404 15.04117433231818 1.748074132194734 15.02322458630363 1.807386718592298 15.15896140115512 1.804507780168513 14.77524643293838 -0.5853351005877594 14.772800797184 -0.5136780632559065 14.92571529340754 -0.5547072117568329 3.957606332108966 2.83533138147553 3.798161777436263 2.841460443145659 3.799120541649846 2.902532003201392 3.460215097748287 -6.648919328840286 3.286584870039757 -6.644062066923818 3.287729873234553 -6.582643465810596 -3.819952452174871 8.967394774177265 -3.818940041003984 8.920743558057652 -4.016616734605686 8.963394518664789 -3.489630955023968 -2.067264227870786 -3.687017207569616 -1.997859193192548 -3.490353126799364 -1.995574649607955 -2.125700125496511 -12.08008876906986 -2.120851924270657 -12.12208052308349 -2.298630670592987 -12.09306581863448 14.7737117026577 -0.5115215291784254 14.92425910433497 -0.4808877431247166 14.92662648540108 -0.552550016839421 8.235012263289915 9.201105114714387 8.334588440880115 9.276270458577551 8.401724041571454 9.253736194734419 -15.3809503155502 -0.9698529961301408 -15.25040872914482 -1.072538664922959 -15.37052569047138 -1.039441569411177 -13.95736534591686 1.833092083563621 -14.08868650215465 1.866233477321516 -14.06161493235339 1.92513442828187 15.16507765433981 1.84401817109066 15.02934734144551 1.847080945772513 15.16293327162573 1.909577711965771 3.871236082310781 2.768665029093724 3.85630959598321 2.706453044020234 3.697623056409553 2.77335984828569 3.349704516748484 -6.715464184840033 3.362529299714675 -6.775760291148055 3.190273839510919 -6.709115650438946 -4.155033858878427 8.448921081676424 -4.328533583974478 8.441735854343834 -4.353642099815962 8.488804072474393 -3.485637398004029 -2.060304498802561 -3.682345850184142 -2.062595680507013 -3.683024476784764 -1.990900918298791 -2.912226226946173 -12.14534104418116 -2.735951280373921 -12.17956591608216 -2.93237727880698 -12.18751169687754 15.32642256920814 -0.4529784236961152 15.32336384663095 -0.381332349075401 15.46089721245567 -0.4278352766187118 10.66207884899531 8.359119199736881 10.60098055921635 8.390534083262866 10.74026162154941 8.448735495364145 -14.81614436279424 1.417786763070192 -14.823481310544 1.347954763228634 -14.93323669119492 1.446257300034038 -15.44149158927127 -0.07843705736199619 -15.45376981890738 -0.1403205013379318 -15.54832766366031 -0.04975319962293469 13.04342002502042 5.471336640111971 12.93646028603084 5.424291167461346 12.90739958342876 5.485758799795015 0.716734852179709 3.183894949414568 0.5684321441059681 3.19238717322917 0.5772339097696888 3.255317826162595 -0.1556113242363211 -7.155411565930625 -0.3170690253238262 -7.147820651525132 -0.3217991399659581 -7.08679968057369 -0.8716758939431559 9.222402129449115 -0.8576590624700666 9.172562641007175 -1.054376218940464 9.213865326005751 -0.08948956196540125 -2.042294078972125 -0.2740167402925264 -1.975560034632549 -0.09089188420519756 -1.970605816580733 2.781256619513769 -12.20010871020101 2.780613237752307 -12.24515755909033 2.620953700489571 -12.22518160989242 13.13016875913633 5.521573135898037 12.99431564021332 5.536940318496004 13.11620829705866 5.588207545858619 15.32281262371217 -0.3823081009483379 15.4572287773026 -0.3571546060051217 15.46034616490789 -0.4288107075184278 11.40040280313041 7.647811427896074 11.47611460908563 7.723626467739777 11.54452980099268 7.698185007554085 -14.85170577152109 1.596419089464066 -14.74308939734469 1.497336740041453 -14.85009827648429 1.525619159912114 -15.55812841004475 -0.1593977067057546 -15.46260912208212 -0.249338483483126 -15.57951611159096 -0.2204386992599556 0.6905313929261625 3.194079257510125 0.6669604822531472 3.130055013808108 0.5273520439309054 3.20134779086433 -0.2760451676851355 -7.207237208447981 -0.2583847701539371 -7.267351366760307 -0.4243102481488764 -7.198347684540153 -1.185949144975148 8.737591677157642 -1.347094718530441 8.726640169936541 -1.383515371215881 8.776305223823076 -0.08628757273866805 -2.0368449279987 -0.2692022409131012 -2.041782536874973 -0.2708153170317462 -1.970111852134346 2.104603819983416 -12.3555746399003 2.263368095380636 -12.37956326639033 2.08230281117703 -12.40167038066848 9.32386341854952 8.060760162181634 9.213393011722527 8.025333388192625 9.173726796444461 8.085225447582499 12.7899050949888 -0.4858003816846102 12.78665253242415 -0.4141479984494593 12.9221740432598 -0.4665980185557766 14.06694860356962 5.079879634166077 14.18890743457071 5.132551667297761 14.12335059514188 5.040190888040765 -11.63926400797328 3.650124832804263 -11.65672370358244 3.580658438034242 -11.7551336973387 3.672266359464239 -14.040961428408 -3.377372004499843 -14.04116932659438 -3.440689114165275 -14.14658836200364 -3.353706454584627 -3.216169742629988 3.668627800080283 -3.3470595416947 3.680993521193265 -3.331949865724662 3.746580430014112 -4.722760749898429 -7.388507798890246 -4.866157188968598 -7.376439344943446 -4.872637093404352 -7.314951635262013 2.441276897947144 9.256388152744684 2.464733173086069 9.202101817825563 2.27956816312952 9.240210616354544 4.099497544879366 -1.954398815108549 3.934707466174498 -1.891859439378896 4.097124746122517 -1.882741204964311 10.28679665333218 -9.55111078985407 10.29915308041363 -9.599464738469202 10.15833528027843 -9.600033511569006 -14.0313523227092 -3.403712108547272 -13.92487940393833 -3.489896731787537 -14.04042334903859 -3.466542244982329 9.501306724047314 8.245615096325874 9.525237369861188 8.182033322622552 9.375538847682615 8.20810706816202 12.78717640985949 -0.4133075106291555 12.91941349600125 -0.3941083830843282 12.92269794106268 -0.4657574981681045 14.61143798405062 4.032658570032269 14.6779568813945 4.110507649492734 14.7387808575135 4.076745966450638 -11.48897290523528 3.739193253582524 -11.59505371846435 3.76156720255288 -11.58645548537 3.831412768158509 -3.380388628368072 3.567464747418849 -3.406076138657888 3.501446721888508 -3.522365915904623 3.578928451648824 -4.998245329300623 -7.510543101540707 -4.979964728764355 -7.572001250257447 -5.129014831207162 -7.497413351163496 2.149604211795809 8.835494032108198 2.007084013457891 8.818153680452083 1.963670867818541 8.871212808150418 4.094262821413906 -1.96292694577729 3.931665525536867 -1.972058371449767 3.929473477427657 -1.900386371997663 10.17829312647092 -9.599948352422073 10.31910956347468 -9.599199299688607 10.17280112872961 -9.655420190083264 -9.316254472666486 -5.826996924206522 -9.303863301060044 -5.889475149735193 -9.433707180697631 -5.80933284990105 5.219623450817705 9.271351503613806 5.093723253759006 9.246834998724584 5.049052572595961 9.303068030101867 7.951559087364776 -0.6412194389881604 7.948777815341384 -0.5695571443647469 8.09707311484344 -0.6278226057603324 15.35532066057611 -2.511140629279202 15.48218857265067 -2.479001703325898 15.38463234973965 -2.564970037713789 -6.966465094775876 4.581442424054657 -6.99050492619986 4.513866426770374 -7.094633884341501 4.597278060518924 -7.521451032176511 3.61066541576182 -7.635989640963516 3.628250566156945 -7.621197049279221 3.69630427333927 -10.3088504494802 -6.555562620562625 -10.18258930748457 -6.636844638860417 -10.30749043520318 -6.618671772527335 6.233712437734143 8.765770130190903 6.260513104295848 8.706296548122296 6.094369139830206 8.738955245922327 8.92706038664681 -1.760091042702666 9.069393317287368 -1.745678052257445 9.072323760267077 -1.817333720387403 15.54416015800116 -1.990399084550134 15.62904909723136 -1.915963200604998 15.67174406748427 -1.960322227869128 -6.831802715722461 4.640728535202147 -6.949533199087423 4.657208571482958 -6.935394278696251 4.724553239287008 -9.248896727417073 -5.740835104840788 -9.118240815041684 -5.820156485058486 -9.246154449519535 -5.80328029413092 5.473604965021468 9.563889420974039 5.500411311278914 9.505396325850203 5.330494512391879 9.539215823102895 7.950652257154573 -0.5665908250678693 8.096150953942924 -0.55319775817413 8.09894775855579 -0.6248559684586534 15.1925319715638 -3.24759828445453 15.22952910220041 -3.29400364160618 15.10017600109296 -3.319279254873929 -7.891072055714634 3.352935866461872 -7.91519742493267 3.28520456318393 -8.016371012592039 3.36980073736547 -10.17500072316481 -6.570157493960294 -10.16290009309585 -6.632656708079453 -10.28925578316296 -6.55146566332026 5.986657426487017 8.446556385335573 5.86413100785422 8.420215038804495 5.819883106826831 8.47716229727919 8.929776208138149 -1.832160737986664 8.926791529790229 -1.760514515210639 9.072054877428942 -1.81775723369749 15.66701376799944 -0.9783002777776192 15.79123625943135 -0.9405057848538351 15.70346864538021 -1.029823427723467 -2.500719695981619 4.524530029441979 -2.525549445241953 4.459127513282915 -2.647642639313123 4.535068605183699 -3.942146411050595 -6.372980874360702 -3.923832572463375 -6.433779698820954 -4.076910955167456 -6.360771495474762 1.483904184527199 9.561395124151474 1.337785115612684 9.545407266760183 1.295200518390034 9.597789414202421 3.242483397986038 -0.7579559943692092 3.075968938795046 -0.7662279051947981 3.073933304126496 -0.6945538136319028 8.512417092495033 -10.32298658489478 8.656098880124437 -10.32843392218386 8.501133126462786 -10.3770395928027 -12.31062969116331 2.334741279894416 -12.41689114865545 2.358221775631326 -12.40896750067222 2.428285060972218 -14.63816060915118 -3.821195179458037 -14.53399144552333 -3.908335185089237 -14.64863904940625 -3.883875467538479 10.26236423114046 7.249296450689785 10.28489374037232 7.18494974073067 10.13842943789895 7.209296925869164 13.52355896499183 -1.613716376376942 13.6550723100157 -1.593432064768807 13.65844209470788 -1.665067718158606 14.09991308392805 4.639490861823022 14.16599736601803 4.717026136492397 14.22915355038108 4.685266630352737 8.788488237088608 -10.12798354720368 8.796052426932297 -10.17689648932067 8.652306382496375 -10.17262519852349 -2.371567143150093 4.596700363725082 -2.50642734926275 4.608237572051789 -2.493275855896436 4.673022432840953 -3.78430044007796 -6.313732194052271 -3.931145281618049 -6.302595333248764 -3.937799912987282 -6.241273192978645 1.782809933308843 9.953007340646517 1.804905009737884 9.899599284133563 1.616993544966533 9.938447446195459 3.241532559973215 -0.7595219686982793 3.072982608619848 -0.6961195535170441 3.239480465872795 -0.6878514820594498 -12.42530916149478 2.265179665518415 -12.44105980679314 2.19549507720607 -12.54021032369249 2.288506443755372 -14.62358486451729 -3.77115335474277 -14.62627040961729 -3.83434831924801 -14.72939450703828 -3.746442437418204 10.1023471662799 7.040222923220669 9.993554517886814 7.00270132489752 9.95549217949794 7.063067370997599 13.52458410251526 -1.689266327031849 13.52115506067016 -1.617627667156174 13.65603815690644 -1.668979063359222 13.45461774792339 5.697184490404029 13.5783770586753 5.75153144860526 13.51294296292588 5.659525030692673 1.014690950843121 -12.11663124004425 1.17537518814207 -12.14350651064685 0.9907205511797523 -12.16215385674492 1.264075662050836 4.189519476131035 1.243388873257321 4.125964111825926 1.099817803985207 4.196189504428813 0.4673769886640489 -6.020335381620615 0.4844744476427143 -6.080392915198992 0.3166021828830345 -6.012037540659113 -1.761759282282831 9.43015781718068 -1.925728678680547 9.420099661138508 -1.960327547221517 9.469229370014885 -0.7688898965897573 -0.8230996335946782 -0.9549642682426174 -0.8274392837222506 -0.956250766282728 -0.7557577628853899 -15.19330405131315 0.05414267666623342 -15.08107427147584 -0.04583516753619212 -15.18980416421651 -0.0165813374473745 -15.38320571842679 -0.7923613784146872 -15.5019255284498 -0.7626306160302011 -15.47895006537258 -0.7020385691561549 13.68650503500174 4.299702224244425 13.55183587419863 4.312891019934559 13.67473921022667 4.36644752903264 15.45824821487032 -1.620570965753599 15.59464333798052 -1.594387962670079 15.59778762616587 -1.666034706694511 10.79189359370333 7.666814231405859 10.87122864400065 7.742473895766769 10.93987742447064 7.717835743724457 -0.7703004781157707 -0.8255210326760056 -0.9576610888682857 -0.7581787161325122 -0.7715732426255029 -0.7538313547661745 1.778286364410675 -11.90983560336739 1.77804551703557 -11.95403053058855 1.616207682952542 -11.93184872174972 1.365256330563085 4.257472221684335 1.214451253263434 4.265422351228076 1.221941527199604 4.328020805182042 0.5826742952321196 -5.962450017197482 0.4184446197114011 -5.955500000858146 0.4145570142747557 -5.894468312519247 -1.444124018428738 9.875071867116349 -1.432332061488176 9.825878705512288 -1.630036020735471 9.867574516725208 -15.13510898130446 -0.1277036663153544 -15.14062346132247 -0.197368529510042 -15.25401163859221 -0.09820285460529746 -15.34404912632395 -0.622495503643787 -15.35779210162691 -0.6839336990528583 -15.45270346636389 -0.5930684675220791 13.62122321793794 4.218213113484372 13.51332372741659 4.169209210486512 13.48643252066339 4.230609793324678 15.46110504780544 -1.692543462570089 15.45806501082362 -1.620894189637015 15.59760459557591 -1.666357601115251 10.05404981183326 8.378305574643399 9.993399696873748 8.408938045726183 10.13677166563572 8.467544628186102 -4.063059155156619 -0.8353382126857687 -4.261211129912291 -0.8373339753968095 -4.261764153119739 -0.7656386259025787 -3.624446300062396 -11.61153590791261 -3.444921050296364 -11.64661732670519 -3.64290359458888 -11.65327802917651 4.441627694957621 3.865253383168413 4.428151159980009 3.803278440298052 4.266677110372116 3.869693067444076 3.951991687691889 -5.499356229291178 3.963641345931631 -5.559773393117843 3.791340875873948 -5.493283642945681 -4.674848168727623 9.109147391339302 -4.849722149830364 9.102304693643468 -4.872440629189781 9.14906593688756 -15.24272907547402 -2.445600044142842 -15.10806528768003 -2.548614522745822 -15.23120451688002 -2.514808568212807 -13.55021063714692 0.9654728555716822 -13.68495011639433 0.9993002837953395 -13.65765443307141 1.057870411709243 15.34307555176697 0.5470788279153219 15.20563682778075 0.5478966789233634 15.34261026321523 0.6120203932839424 14.63172319940607 -1.807786190902387 14.4751871433517 -1.767668727123996 14.62942616252619 -1.736119794967284 7.672497759405001 8.912051791552361 7.776636352312886 8.987325316822584 7.842855491527995 8.964939803713735 -4.350251040182328 9.565284962967189 -4.351686406488788 9.519179403921218 -4.548369361415071 9.561786976237627 -4.061759511312889 -0.8330609254268785 -4.260464782402377 -0.7633618205088316 -4.062317450691976 -0.7613697078542134 -2.85712913743405 -11.49667385902394 -2.850489882871745 -11.53845650666469 -3.031519617077479 -11.50853971924043 4.518983317144437 3.916321147022446 4.358320612901633 3.92219580262794 4.357690149972163 3.983007222366772 4.039896511612485 -5.45444610526401 3.864903750589893 -5.449852076060785 3.867416205982026 -5.388245530184067 -15.06231066508583 -2.55915116799835 -15.0610756758975 -2.626864915420742 -15.19678432401783 -2.524702503740438 -13.44802876986035 1.137943687362982 -13.46467638624907 1.078157764219027 -13.57149530763278 1.171002601461354 15.22106312277357 0.4087908255897527 15.20453482142578 0.4672828092326593 15.3419740123088 0.4665150475427812 14.63140542723944 -1.80856336333294 14.47713890354123 -1.84010823406923 14.47486945548052 -1.768445696007263 6.950262782480033 9.471133391549175 6.89590785918227 9.500232862250732 7.062444701174898 9.56018068449082 -7.487394148298494 8.573694770096324 -7.663641339526092 8.567316253236985 -7.673160485047404 8.612823631910413 -6.915688696808561 -0.8039597986707788 -7.115474872245784 -0.8054259993671988 -7.115343671823422 -0.7337335125323977 -6.763434381684665 -10.56306221158506 -6.570229433382108 -10.6007149141518 -6.769909414946731 -10.60486080504658 7.279480984661992 3.597118155378024 7.274552072569445 3.5364284491978 7.103164125274994 3.601050046442265 6.887176528697962 -4.99912379211539 6.891461263893964 -5.060669803933004 6.725229310738888 -4.993549452926467 -13.31176386080408 -4.229857291475468 -13.45240909265846 -4.192865096968319 -13.46609882765458 -4.126006151954485 -10.83768232269496 1.66025454855169 -10.99153342130112 1.697217782699805 -10.96617884397112 1.755080016503789 15.05513414312248 -2.929458500129131 14.90307206307761 -2.939457938394155 15.05979524212977 -2.869651091769685 12.3030653004424 -1.969860042021035 12.12591299340717 -1.933973904364396 12.30161950399677 -1.898184292516542 4.723870251785264 9.449370326847333 4.852389123705911 9.525825311495995 4.911154425809104 9.502629712394876 6.975051470990898 -4.942803120829991 6.798692676394218 -4.938761747194716 6.808609952567694 -4.876004934764689 -7.126225316815738 9.058697131945015 -7.141298119213927 9.013805050529358 -7.325989980772993 9.055964245359856 -6.915260094854291 -0.8032137653438117 -7.114915169106806 -0.7329876538033533 -6.915174196420701 -0.731534154526603 -6.103271939598473 -10.49792485793571 -6.084663238990822 -10.53994582455564 -6.27927514707795 -10.50708158800265 7.362923206179658 3.650629986308441 7.200968422508658 3.65606659817725 7.191724514458215 3.715561292281329 -13.2030024352036 -4.164854434851944 -13.20153800437188 -4.229958686246682 -13.35674489267645 -4.126914834292836 -10.72570024469355 1.826637398278902 -10.73875068089943 1.767335768490501 -10.86680474638441 1.862530914501934 14.90143676085357 -3.047577023467554 14.88873976375032 -2.993960090809757 15.04085156516503 -2.984440143430873 12.32127594212159 -1.914098058540295 12.14701072847506 -1.949873121586343 12.14412101543217 -1.878219924701581 4.0291844670488 9.923808407340633 3.985430680084988 9.954490974167777 4.169405307455116 10.01446542940076 9.536794013608152 -4.462194694740108 9.533782355159215 -4.525390179938007 9.382409542147537 -4.455427051376391 -10.53225366042801 7.603431576150599 -10.36631590090824 7.56636959339067 -10.53419542589385 7.55702510536641 -9.594147782496624 -0.738051148323845 -9.784656798212625 -0.7408131756533698 -9.783857074494744 -0.6691362938423919 -9.039279083403454 -9.329099054071826 -9.229658116192191 -9.336367651976783 -9.236574194485234 -9.292203676274113 9.996664325993033 3.323876594503436 9.999758976611977 3.263988597419473 9.828455534869217 3.329133373186584 -10.81236405832315 -5.202405833090098 -10.96689267888937 -5.163493855529669 -10.97723055393982 -5.098889259997633 -7.945846669509219 1.942040842604744 -8.114837104515585 1.981077467667451 -8.095468309942346 2.039300499863573 13.44555377899035 -5.722845149186801 13.2718020442364 -5.741159222974686 13.44930044874594 -5.668385488500316 9.551212845833174 -2.067257292745881 9.356428823815445 -2.03415149923091 9.548965761671711 -1.99558984223392 1.717930116480462 9.657357346156919 1.862977772807285 9.735595855046842 1.911369143311934 9.709577235272551 10.08722773024519 3.363977652367786 9.932836300581196 3.370646339916129 9.916160148038228 3.429504855946295 9.611478999249615 -4.421325090709555 9.443316131774665 -4.415996288949406 9.4598720223863 -4.351676442092369 -10.01126119959499 8.041651574985904 -10.03692103013628 7.995640913818866 -10.20166097511033 8.035874096782276 -9.590491984643556 -0.7319188440720925 -9.780202193639365 -0.663005551772062 -9.589631784520996 -0.6602278110998927 -8.68402935360943 -9.267708074558898 -8.653250377112627 -9.311552877217336 -8.851763232578662 -9.278949345863072 -10.69708102558122 -5.095529890365388 -10.69993902961422 -5.15834467524064 -10.86539459455302 -5.055411373784887 -7.839671958561465 2.10803629031163 -7.845384988757957 2.048220673213373 -7.994654484578808 2.145814607986833 13.20713266403885 -5.808092499641509 13.18948164541695 -5.761266192426767 13.36344654298511 -5.744250423559999 9.541799474717381 -2.101472443337359 9.347741741054378 -2.140052743973339 9.347016585153993 -2.068362526728548 1.048068770617405 10.04590529425994 1.017395681624552 10.08021894117362 1.207892249537637 10.13875127834151 12.83767395401848 2.698986728442435 12.84552576966404 2.639001151082407 12.68547499766774 2.707896515781035 12.19007387417367 -3.690027264313976 12.18236616770497 -3.755371748820067 12.05114756150089 -3.679793077046705 -13.6847447484432 5.059584858768628 -13.53894561278187 5.027794348473811 -13.68975166940985 5.009495630370664 -12.32373667467696 -0.6168744855933682 -12.49746441137699 -0.6230815870010857 -12.49579470706584 -0.5513993937111484 -11.29345915585524 -7.712465629287292 -11.466261119214 -7.728197475164605 -11.484274482541 -7.680157671561071 -11.0488157510744 -7.699846840393462 -11.00794129425475 -7.746544249156349 -11.19970009642913 -7.717901053537395 12.9532236713963 2.710097356456946 12.81430096200746 2.720361768609917 12.79365822014097 2.779685891348705 12.24528567217559 -3.674476110397896 12.0931195139615 -3.665541122783011 12.11378937378306 -3.599196707333899 -13.24668300105622 5.552669176034209 -13.27498439793351 5.501533482188964 -13.41943499051357 5.536929260000039 -12.32821947329562 -0.6239970089056176 -12.50027623685066 -0.5585198536556275 -12.32650008363278 -0.5523110906066112 -13.36310661905929 -5.473252846037762 -13.51044144690146 -5.502397267310456 -13.53546961842194 -5.449228530517056 15.1263722205753 0.8592046569825994 14.98833714938398 0.9351449853558649 15.12049538521006 0.9205372104145613 14.43546145435956 -2.207325359050818 14.55616608435863 -2.222580144035128 14.54868152216749 -2.290633884856736 -15.40432062586234 -0.6540735496541649 -15.26903812716624 -0.6747706332014749 -15.39507862640394 -0.7093698073846665 -14.82851332735466 -0.395930172972622 -14.67983003546081 -0.4561951589922989 -14.8311649902656 -0.4675984998802772 -14.67669144842454 -0.3836741134547166 -14.67923753443616 -0.4553306183272226 -14.82792107333716 -0.3950660094364775 -13.25977947330466 -5.505259539099626 -13.21515893627361 -5.555856328325733 -13.38804138621756 -5.534265000376434 15.06592590381197 0.7949183730560385 15.04958965728272 0.8563438067854571 15.18653205457936 0.7791889501055175 14.44887420594791 -2.221098491344252 14.46757081307544 -2.152410636712895 14.58111664790307 -2.23544433269069 -15.27343877946977 -0.2580655324412888 -15.28399160635668 -0.3176916508017689 -15.41846274708106 -0.2939468882336187 -15.15489713583819 -0.2930545131389879 -15.02400035057708 -0.3480907070138636 -15.1580557308389 -0.3646959281434475 -14.64004338551176 -2.908526691681026 -14.76549146020981 -2.951906082740725 -14.79326258245243 -2.894331131751723 14.78447366758369 -1.983047770355964 14.6682838501449 -1.899810410831432 14.78675948373065 -1.920318165566193 15.18132268652138 -0.1860261308141984 15.28883659560063 -0.206227821846232 15.28524048915518 -0.2764157387729871 -12.27734432771938 -6.829349901605035 -12.13965494240189 -6.834719327394617 -12.24384501612055 -6.883476791472139 -12.33966146130525 -6.851885096165651 -12.22234766411602 -6.798219207906983 -12.20201939532969 -6.857959085798884 -15.01585657326699 -0.2708411029036731 -15.02036425776285 -0.3424568602995842 -15.15125945875786 -0.287418334694042 -14.6342578746901 -2.942791200881442 -14.59079495631652 -2.995922132173253 -14.74421065985963 -2.983107103282456 14.60302270780954 -2.122026055656785 14.59515925615846 -2.058971806229413 14.71025028138717 -2.143148553045156 15.1610746810059 -0.1524841104103744 15.17473354108876 -0.08251764405130165 15.27969938334563 -0.1721547169097974 -6.055555958381284 -10.13689521376172 -6.109293428726534 -10.09175613382068 -5.954165196393753 -10.08240321614815 -12.50712676704969 -0.3609261135720588 -12.37630511964687 -0.4101709921625641 -12.51170521897669 -0.4325390927646903 -15.01286009738145 0.3586968549124524 -15.12701739267614 0.2979730324215424 -15.15000901865558 0.3585104446830472 10.84952558199501 -4.762879802184586 10.96736671779413 -4.789700952631367 10.95296857640354 -4.852037245898382 13.54445832625182 2.423189007954147 13.65426894193496 2.397400250851552 13.65981778591051 2.326748239006758 13.44017808013487 2.375974715736394 13.44222149290781 2.445933175648131 13.55851676484037 2.350190470906875 -5.959989731223443 -10.33633530654006 -5.846006881234751 -10.27464543694393 -5.80498708068003 -10.32577220688333 -12.36535272687875 -0.3269657940999559 -12.36931942813025 -0.3987688918611639 -12.5001415634012 -0.3495248153306038 -15.01275536901793 0.3432054555686024 -15.14990432501753 0.3430355903118844 -15.04889054441675 0.3977934493564489 10.71254331328887 -4.947072107482407 10.71930958092027 -4.884141894327106 10.82196691836965 -4.973859538279792 9.67152506378822 4.020897325168522 9.535652384218324 4.120325989301343 9.655860114538498 4.089780643099239 -0.6889855687148927 -10.54988316887613 -0.7482746903791204 -10.51141412699299 -0.572802348235919 -10.49301115116569 -7.801734852957861 -0.5277913027634515 -7.654831888932751 -0.5711515032322861 -7.805032899902522 -0.5996153304288365 -14.0236079020574 3.849147847560284 -14.03759278502901 3.909702567002443 -13.90483196929648 3.926144344553958 5.733703215387842 -5.75092622637404 5.709913740674724 -5.811244678157066 5.60288730036522 -5.719178957831415 5.475538535691138 -5.970370763176142 5.35566738907929 -5.939017535048345 5.369515924491523 -5.877589052009471 9.393183861526399 3.997550209745355 9.387608254834845 4.065358134287658 9.524234353431588 3.966570448214895 -0.5201254825616619 -10.77382636002158 -0.3895973034986966 -10.70880401546718 -0.3449848269301892 -10.75356217563272 -7.632245257255401 -0.4581488748053558 -7.634983779827445 -0.5298077574305262 -7.781888752192396 -0.4864517679305999 -13.81979254993046 4.004258330611974 -13.95283357076398 3.989283648150336 -13.84656499739853 4.057176476978639 1.046991573693943 -5.595370136162568 1.021968904281189 -5.654570323446632 0.8977851091591166 -5.559583517961907 5.049664706234381 4.52874270417023 5.068037022190874 4.462347923488265 4.912447918256355 4.562935780883287 3.300069892680144 -9.869433582197893 3.244388704195255 -9.833152729621558 3.436962751592062 -9.810535375168353 -2.887294530197833 -0.6252927187659304 -3.057845615112787 -0.6585940112285035 -3.055890342325662 -0.5869192556475147 -11.42281743810625 6.936435609898983 -11.42953743048822 6.993144953376537 -11.28770119512382 7.024820502476782 -11.00683453332838 7.117032035368696 -11.14967134513006 7.088273201472219 -11.02787819605507 7.164941813816665 0.8565613427156482 -5.761645794202346 0.7196533104223468 -5.726695200480043 0.7329961149335273 -5.66616107925037 4.90463205198234 4.350634804338514 4.755074876457686 4.385620809493025 4.748420206168268 4.450623579185506 3.459444348059531 -10.07934664992524 3.61324729743068 -10.01248305421866 3.651640238215035 -10.05481934312903 -2.887167692395809 -0.6249490118808861 -3.055763517245049 -0.5865755833510511 -2.885210157968473 -0.5532809029935275 -7.981571083229049 9.028755434296995 -7.987339464177467 9.07924109308836 -7.827904945542627 9.122818952272414 -2.731511830344187 -5.091509934117188 -2.752790423338037 -5.150622991096434 -2.897095942081317 -5.052740895802208 0.8831633149921303 4.340876154958427 0.8985552531553698 4.276796877166733 0.7308630172796837 4.377640666346864 6.479603226516543 -8.854242445425069 6.432656682515511 -8.817627836163625 6.634004203371501 -8.793294566101821 1.153653190403491 -0.6465280204784539 0.9646992024465306 -0.6835551247009495 0.9658881231462513 -0.611876575258182 1.153661032484155 -0.646501757147482 0.9658959644244591 -0.6118503146181035 1.154823566991007 -0.5748086689895912 -7.346889600048491 9.120113331780186 -7.508118143460947 9.08083200619877 -7.368801167472475 9.161201702913671 -2.919300446813514 -5.261696061418462 -3.071246920081444 -5.224036429610965 -3.062998735828634 -5.163262678543154 0.7582881172155453 4.154095522294827 0.5923837358809814 4.19196963560762 0.5901373538728749 4.254465696925111 6.619498629445356 -9.031308050738627 6.793269565919365 -8.962176649520533 6.820474276857828 -9.005141365953339 4.573192378001205 -0.6125857144513612 4.37394493166598 -0.6517516198939314 4.374391805653159 -0.5800535608648925 -4.386298460503134 10.16145455378166 -4.397610378910208 10.20511443037593 -4.220346270762134 10.25668177506712 -5.953669404898961 -4.578510320922733 -5.96853167702881 -4.63850078354304 -6.128426190224411 -4.53702549069464 -2.683371087115337 4.032857476182938 -2.674673651011776 3.970711939089664 -2.84407538994616 4.071074086936254 9.226955147384821 -7.660881436554149 9.191493256359289 -7.621820635735081 9.390705744112637 -7.598111054756348 9.338603479848972 -7.777732413618265 9.523076059965172 -7.706722186865398 9.537494056868775 -7.752405522686252 4.574667099394521 -0.6070062188160854 4.375866372032322 -0.5744746514511236 4.575156205994778 -0.535321328252991 -3.395417716892807 10.02484254912804 -3.575795402530674 9.980456970048538 -3.423559843750712 10.0596928702885 -6.118492684033487 -4.736181739891753 -6.278788735486867 -4.696918421360685 -6.277799551221619 -4.634136081968771 -2.77972732559265 3.868564866859452 -2.954812525223386 3.908104795001608 -2.949455647898713 3.968584970213615 11.69545908166266 -6.165375805374608 11.67151544575997 -6.122238471044303 11.85833574578004 -6.101659248474226 7.637462989591356 -0.5355783370673395 7.438884692436969 -0.5746213808480272 7.438681293734168 -0.5029356362676966 -0.5582846036325895 10.53883502273829 -0.5785103288784865 10.57693357934863 -0.3886621095636678 10.62900956161593 -8.859353395442366 -4.046293228179557 -8.866995217462531 -4.108791938055727 -9.03380027510906 -4.006420625215727 -5.824580325974829 3.787066497246632 -5.824401130254482 3.726439851574833 -5.984874911116784 3.825496089114379 -5.942767319525971 3.607580836929528 -6.117519171334913 3.647312480138302 -6.103624512072361 3.706251477403339 11.97108734405456 -6.195225668013294 11.78453809437585 -6.217274084336009 11.96786582673064 -6.145659251872847 7.629293246343014 -0.5664444235559801 7.430512536984056 -0.533798005330548 7.629012160527599 -0.4943906564864924 -0.2527148976834848 10.426971256602 -0.1009394200350589 10.50549989700128 -0.0616197760525572 10.47614398638011 -8.98003503097816 -4.174401339799997 -9.139893049866142 -4.134862396061923 -9.14633215593846 -4.07151990249627 -8.770561771941035 3.540886308410352 -8.778858771816418 3.481298733443971 -8.921820672219136 3.578192612107353 13.8205604012978 -4.096182285690041 13.80489155300077 -4.048106118542218 13.97232917348637 -4.032443978879279 10.44162978337981 -0.454062169185013 10.25329748679828 -0.4923326406169787 10.25224640736305 -0.4202832786225502 2.049549289613083 10.67640891533256 2.015247200976578 10.70942968634257 2.204802280708125 10.76855827136951 -11.53884325552663 -3.361979106691222 -11.53994084497939 -3.425517949534014 -11.70336417460099 -3.3223492902048 -11.63956842215784 -3.46330567287018 -11.79036667523766 -3.424862631705987 -11.80240804439404 -3.359567414257415 -8.887154949704883 3.372339220817581 -9.052081955590012 3.410858693299133 -9.030521953711299 3.468861975536915 14.02535964430971 -4.046920049696856 13.8580741391765 -4.063557718650049 14.02948956143378 -3.991233470963821 10.44654033069043 -0.4369218072722863 10.2571562531056 -0.4031453509545165 10.44557797820856 -0.3652357474518481 2.707638549323608 10.35051710495292 2.848398701466685 10.42835952246278 2.900166810352733 10.40336765268271 -13.89772784137746 -2.27334240652978 -13.89557361235264 -2.339299382153396 -14.04530211187303 -2.236344258840307 -11.62090563237156 3.142693003923645 -11.63560262689902 3.083377162266487 -11.75653812075608 3.177770661628187 15.13872884348619 -1.192185087423372 15.1254733683409 -1.137387144853773 15.27263390473562 -1.130954480547717 13.10411268779496 -0.2917334904157112 12.9350456270925 -0.326316947574528 12.93327751803514 -0.2546403847331626 4.966741529943247 10.42277976527329 4.919444935066543 10.45275846755024 5.098615749409144 10.51294560743031 5.678334940376205 9.998461887926403 5.799430404982195 10.07443132639926 5.861008033938964 10.05173705671813 -13.98068115255331 -2.32830077837097 -14.11587787742318 -2.292197086898061 -14.12956947632326 -2.224594367388785 -11.72922315943382 2.98463851391629 -11.87716989060118 3.020694099171451 -11.85063250064586 3.078654831939861 15.27921675181462 -1.108640329116497 15.13208634560243 -1.115486239458057 15.28355613780346 -1.047027107021943 13.10657820200534 -0.2846167827524169 12.93574257665943 -0.2475249755766458 13.1048417397712 -0.2129342117484297 7.924722301249481 9.732726897339406 7.8677461158809 9.761926573472087 8.02736526555074 9.821600983136177 -15.31437027633269 -0.4230223300898341 -15.31455082822898 -0.4914775418484327 -15.44305330662821 -0.3899955236348888 -14.18313452367816 2.150841275867112 -14.19973105728396 2.090634966396744 -14.3011621683106 2.18283567579907 14.87470401516739 2.501900133340608 14.8554805185815 2.561726152960566 14.99041859131321 2.557294767111326 14.98885956911455 -0.1510839771208635 14.98630899121961 -0.07941647313219935 15.13671974235762 -0.1211489381461692 14.98514250518259 -0.08211323242492062 15.13296454395576 -0.05218168754687864 15.13555282015459 -0.1238466702588365 8.664285561140369 9.203189903951314 8.76029235789291 9.278252121737998 8.82799872421109 9.255552621407876 -15.45898467712232 -0.2955347628614812 -15.33159006155596 -0.3978775287379471 -15.44939251441896 -0.3653735813311292 -14.27392021680073 1.982302751646204 -14.40287565241049 2.014917648040245 -14.37606452241652 2.07401491811839 15.0023280162694 2.584079828611297 14.86740545328029 2.588794416056637 14.99875333259749 2.650025172967234 15.16743422483861 -0.03545912243787345 15.1641764795847 0.03618896027725767 15.30158395565982 -0.01107473894987238 11.07174268466244 8.20622935854772 11.01027811487094 8.238076117138485 11.1455013915099 8.295039026640007 -14.53472554868212 2.127210024263323 -14.54335301702772 2.057293376693322 -14.6507686977999 2.154848983675576 -15.47116303379385 -0.1007349528659712 -15.48262111907089 -0.1628323662475132 -15.57514096968452 -0.07273631401580578 12.60731898493821 6.118625135813931 12.49951527187993 6.073027679581337 12.46898561727446 6.134508540228222 12.70625820915137 6.161370650101258 12.56811952074999 6.178270083019855 12.69059355607208 6.227755612237238 15.17563565399611 0.05617942024194091 15.30690519968065 0.08047237589028985 15.31304001235715 0.008910112217603286 11.69878959471147 7.58601203297724 11.7704919551024 7.662925350350643 11.83828156757457 7.63620236135994 -14.56680894469698 2.286669607262608 -14.46036782134315 2.188455181777495 -14.56459089025118 2.215883996012861 -15.56345211267266 -0.2696120734411502 -15.46905507231649 -0.358494914505298 -15.58614161625408 -0.3304375255316758 8.697078951015156 8.540115820692279 8.58627011746384 8.506442857040527 8.545172472107982 8.565718295780178 12.19835884505356 -0.146800505000047 12.19213361164655 -0.07524307380881749 12.33064208256117 -0.1284401721676801 14.47349470592138 4.48647907063768 14.59418708410047 4.538283916644543 14.52695133721591 4.444175897312884 -11.01679911358996 4.269145009458118 -11.03367668443019 4.199593819634335 -11.13378158180757 4.290461772431124 -13.39670242866168 -3.613704573406853 -13.3974098807348 -3.67709239098218 -13.5059011192523 -3.590829072605744 -13.55801168547825 -3.577066294607589 -13.4499401887031 -3.663655054369639 -13.56513458783688 -3.640840594633713 8.898762902518534 8.731761099374541 8.923678733635118 8.668841967120205 8.772269057933174 8.696205070621195 12.22654416361658 -0.01943562022145843 12.36175311937746 -0.0009825789137929406 12.36505519422629 -0.07262859400753216 14.96845522977058 3.35133289154442 15.03615162692535 3.429353310215399 15.09484373679222 3.39390961733253 -10.68882058697654 4.505299613626308 -10.79840624940081 4.526999730518657 -10.78713880123417 4.597366855888582 -8.815494644472278 -5.774511367979984 -8.801509248545763 -5.837578937177788 -8.933635321618514 -5.757277826503307 4.651988984499353 9.594854799842905 4.523448716069428 9.571625854314807 4.478680923413543 9.627328050368947 7.233951611409601 -0.2541372185253958 7.231213088075283 -0.182476503054494 7.382068434324744 -0.241491627183106 14.91065914675177 -3.777910281812579 15.03981940364179 -3.750520227088221 14.93406510884929 -3.833128042733069 -6.265053442983705 5.143606840905864 -6.291094765920943 5.075706706149901 -6.395522489379975 5.158768798898631 -6.345477359525412 5.033386772475333 -6.463927420890339 5.049251737721187 -6.450084556044033 5.116308992652171 -8.474083960861563 -5.557050713172885 -8.340006663472 -5.635324761576602 -8.470310492685124 -5.619290757677044 4.919379370187534 9.892039163892946 4.945944916579555 9.834218944580741 4.773327107086453 9.868892812672822 7.231209888290916 -0.1824815909569086 7.379373083602277 -0.1698281144617169 7.382065234171519 -0.2414967156690114 14.69234096980359 -4.355588845689685 14.72486050333744 -4.403233806382385 14.59387961922222 -4.424614123615205 -1.90937130006707 4.862529816864804 -1.933865719907049 4.797384062894644 -2.05882916208763 4.872460549146258 -3.259884488636204 -5.995842963102504 -3.241426096467497 -6.056438235414486 -3.397107199959195 -5.98424868289719 1.008562531875875 9.818746833712917 0.8596763270423269 9.803705718484709 0.8179236377150179 9.855677732640089 2.620126335769311 -0.3648972911204835 2.450697965148819 -0.3725570392090918 2.448785794034122 -0.3008729346920752 7.297282070817186 -10.79052628969557 7.443048798000977 -10.80009820721206 7.282510597809422 -10.84334156262963 7.685732597629724 -10.53924170281158 7.690973169910333 -10.58765281235062 7.545016025874009 -10.58008674815488 -1.805251932654083 4.913604885475876 -1.942557170917669 4.924577889785635 -1.92990455257835 4.989000459575597 -3.12195266891699 -5.944773106357311 -3.271471099256043 -5.9343096193634 -3.277982172367969 -5.873050550567501 1.295189091977163 10.18834112042268 1.316212385300757 10.13563914392545 1.126338995694618 10.17493482702669 2.621653215864948 -0.362364782113812 2.450312437044271 -0.2983408183330653 2.619721777136519 -0.2906842249844755 0.2212680525864363 -12.01608980644756 0.3845430425278218 -12.04473635384749 0.1973876130544139 -12.06089738910327 1.735043255551679 4.502827643114138 1.715192325704423 4.439538812723861 1.568907206214536 4.50907519563662 1.002064494370128 -5.597568584395066 1.01857272779244 -5.657654025747636 0.8495047426544161 -5.589675080231888 -2.204111497812216 9.633141234618284 -2.370038473919489 9.623684474567677 -2.40325675258017 9.672348096396751 -1.277086089588083 -0.4169438540565115 -1.465326925407342 -0.4208737389001987 -1.466501008696974 -0.3491830297211277 -1.276098617083837 -0.4152397302612619 -1.465513719932773 -0.3474792237757546 -1.277299820395676 -0.3435675080228851 1.008678047437974 -11.80383616959896 1.00884506093083 -11.84753967263648 0.8443012179766773 -11.8238075444289 1.836118446626879 4.571597531119997 1.683531900332494 4.579163743572819 1.69008290622801 4.641457803520121 1.131624861292083 -5.515641120481698 0.9654699582544085 -5.509115040108265 0.9622789187873809 -5.448091689314831 -1.879254076347732 10.07453448642871 -1.869103492317738 10.02585820029304 -2.067363556438311 10.06774942589127 -4.483550424088096 -0.4202673357458706 -4.682577470094148 -0.4220754648921574 -4.683074645727208 -0.3503980807569206 -4.12237157436495 -11.35867777184159 -3.940446281391237 -11.39435600296643 -4.139369964723186 -11.40028547859709 4.849655206940618 4.19179664643818 4.83726873451684 4.130053938276838 4.673925980017696 4.196057977837305 4.403622006344742 -5.045024200443416 4.414330093866282 -5.10551545785776 4.242249595848798 -5.039119404646884 -5.086036520775776 9.288165469182147 -5.261618723685403 9.281580629012616 -5.282606409882941 9.328062374147711 -4.743147968121232 9.748715202730224 -4.746545622892838 9.702780256586332 -4.942146886322691 9.745521824623399 -4.480810009784761 -0.4154533985807034 -4.680334808808471 -0.3455851639672101 -4.481281815855905 -0.3437653901831514 -3.367600287503807 -11.23167592501437 -3.359409878330394 -11.27335911168447 -3.5428410360005 -11.24282287156327 4.94606400392554 4.265197287318761 4.784681055016228 4.27092107274445 4.782938276159995 4.331532646254946 4.494403742435357 -4.991993434953791 4.318710924411826 -4.987598654151317 4.322134653282708 -4.925900717261717</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2670\" source=\"#ID1721\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1717\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1715\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1716\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"890\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1717\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1718\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 3 6 4 2 5 1 6 0 7 8 8 10 9 0 10 11 11 14 12 15 13 16 14 2 15 6 16 20 17 22 18 16 19 23 20 0 21 26 22 8 23 28 24 0 25 10 26 10 27 11 28 30 29 32 30 15 31 14 32 14 33 16 34 22 35 20 36 6 37 34 38 11 39 36 40 30 41 22 42 23 43 38 44 8 45 26 46 40 47 0 48 28 49 26 50 42 51 43 52 44 53 48 54 49 55 42 56 52 57 53 58 54 59 32 60 58 61 15 62 60 63 52 64 61 65 20 66 34 67 64 68 30 69 36 70 66 71 68 72 61 73 69 74 38 75 23 76 72 77 26 78 74 79 40 80 28 81 76 82 26 83 43 84 53 85 44 86 49 87 43 88 42 89 78 90 49 91 48 92 54 93 53 94 80 95 60 96 53 97 52 98 32 99 82 100 58 101 68 102 60 103 61 104 64 105 34 106 84 107 36 108 64 109 66 110 78 111 48 112 86 113 88 114 68 115 69 116 38 117 72 118 90 119 40 120 74 121 92 122 26 123 76 124 74 125 44 126 53 127 94 128 96 129 80 130 97 131 100 132 97 133 101 134 54 135 80 136 96 137 53 138 60 139 94 140 58 141 82 142 104 143 60 144 68 145 106 146 64 147 84 148 108 149 110 150 66 151 64 152 78 153 86 154 112 155 68 156 88 157 114 158 88 159 69 160 116 161 90 162 72 163 118 164 74 165 120 166 92 167 76 168 122 169 74 170 96 171 97 172 100 173 100 174 101 175 124 176 94 177 60 178 106 179 82 180 126 181 104 182 106 183 68 184 114 185 108 186 84 187 128 188 108 189 110 190 64 191 112 192 86 193 130 194 124 195 101 196 132 197 114 198 88 199 134 200 136 201 88 202 116 203 90 204 118 205 138 206 92 207 120 208 140 209 74 210 122 211 120 212 126 213 142 214 143 215 104 216 126 217 143 218 122 219 146 220 120 221 148 222 108 223 128 224 150 225 110 226 108 227 112 228 130 229 152 230 132 231 154 232 124 233 146 234 156 235 157 236 134 237 88 238 136 239 136 240 116 241 160 242 118 243 162 244 138 245 120 246 157 247 140 248 143 249 142 250 164 251 120 252 146 253 157 254 166 255 148 256 128 257 148 258 150 259 108 260 152 261 130 262 168 263 132 264 170 265 154 266 142 267 172 268 164 269 157 270 156 271 174 272 134 273 136 274 176 275 178 276 136 277 160 278 138 279 162 280 180 281 140 282 157 283 182 284 184 285 148 286 166 287 186 288 150 289 148 290 152 291 168 292 188 293 170 294 190 295 154 296 164 297 172 298 192 299 157 300 174 301 182 302 156 303 194 304 174 305 176 306 136 307 178 308 178 309 160 310 196 311 162 312 198 313 180 314 200 315 184 316 166 317 184 318 186 319 148 320 188 321 168 322 202 323 170 324 188 325 190 326 172 327 204 328 192 329 182 330 174 331 206 332 174 333 194 334 208 335 176 336 178 337 210 338 212 339 178 340 196 341 180 342 198 343 214 344 216 345 184 346 200 347 218 348 186 349 184 350 188 351 202 352 220 353 188 354 222 355 190 356 192 357 204 358 224 359 198 360 226 361 214 362 174 363 208 364 206 365 194 366 228 367 208 368 210 369 178 370 212 371 212 372 196 373 230 374 232 375 216 376 200 377 216 378 218 379 184 380 202 381 234 382 220 383 188 384 220 385 222 386 224 387 204 388 236 389 214 390 226 391 238 392 206 393 208 394 240 395 208 396 228 397 242 398 210 399 212 400 244 401 212 402 230 403 246 404 248 405 216 406 232 407 250 408 218 409 216 410 220 411 234 412 252 413 220 414 254 415 222 416 224 417 236 418 256 419 230 420 258 421 246 422 226 423 260 424 238 425 240 426 208 427 242 428 228 429 262 430 242 431 244 432 212 433 264 434 266 435 248 436 232 437 248 438 250 439 216 440 234 441 268 442 252 443 220 444 252 445 254 446 256 447 236 448 270 449 246 450 258 451 272 452 238 453 260 454 274 455 240 456 242 457 276 458 242 459 262 460 278 461 280 462 244 463 264 464 282 465 248 466 266 467 284 468 250 469 248 470 252 471 268 472 286 473 252 474 288 475 254 476 256 477 270 478 290 479 280 480 264 481 272 482 258 483 292 484 272 485 260 486 294 487 274 488 276 489 242 490 296 491 262 492 298 493 278 494 300 495 282 496 266 497 282 498 284 499 248 500 268 501 302 502 286 503 252 504 286 505 288 506 290 507 270 508 304 509 306 510 280 511 272 512 272 513 292 514 308 515 294 516 310 517 274 518 276 519 296 520 312 521 278 522 298 523 314 524 316 525 282 526 300 527 318 528 284 529 282 530 286 531 302 532 320 533 286 534 322 535 288 536 290 537 304 538 324 539 314 540 298 541 326 542 308 543 306 544 272 545 292 546 328 547 308 548 294 549 330 550 310 551 296 552 314 553 312 554 332 555 316 556 300 557 316 558 318 559 282 560 302 561 334 562 320 563 286 564 320 565 322 566 324 567 304 568 336 569 314 570 326 571 338 572 340 573 306 574 308 575 308 576 328 577 342 578 330 579 344 580 310 581 312 582 314 583 346 584 348 585 316 586 332 587 316 588 350 589 318 590 320 591 334 592 352 593 354 594 322 595 320 596 356 597 324 598 336 599 314 600 338 601 346 602 338 603 326 604 358 605 342 606 340 607 308 608 328 609 360 610 342 611 362 612 344 613 330 614 364 615 348 616 332 617 366 618 350 619 316 620 334 621 368 622 352 623 352 624 354 625 320 626 356 627 336 628 370 629 346 630 338 631 372 632 338 633 358 634 374 635 376 636 340 637 342 638 378 639 342 640 360 641 362 642 380 643 344 644 382 645 348 646 364 647 366 648 384 649 350 650 352 651 368 652 386 653 388 654 354 655 352 656 390 657 356 658 370 659 392 660 380 661 362 662 338 663 374 664 372 665 358 666 394 667 374 668 378 669 376 670 342 671 378 672 360 673 396 674 398 675 382 676 364 677 400 678 384 679 366 680 368 681 402 682 386 683 386 684 388 685 352 686 390 687 370 688 404 689 392 690 406 691 380 692 372 693 374 694 408 695 374 696 394 697 410 698 412 699 376 700 378 701 414 702 378 703 396 704 398 705 416 706 382 707 418 708 384 709 400 710 402 711 420 712 386 713 422 714 388 715 386 716 424 717 390 718 404 719 414 720 396 721 426 722 428 723 406 724 392 725 374 726 410 727 408 728 394 729 430 730 410 731 414 732 412 733 378 734 432 735 416 736 398 737 416 738 418 739 400 740 402 741 434 742 420 743 420 744 422 745 386 746 436 747 424 748 404 749 438 750 414 751 426 752 428 753 440 754 406 755 408 756 410 757 442 758 410 759 430 760 444 761 446 762 412 763 414 764 432 765 448 766 416 767 450 768 418 769 416 770 434 771 452 772 420 773 454 774 422 775 420 776 456 777 424 778 436 779 438 780 446 781 414 782 438 783 426 784 458 785 460 786 440 787 428 788 410 789 444 790 442 791 430 792 462 793 444 794 464 795 448 796 432 797 448 798 450 799 416 800 466 801 452 802 434 803 452 804 454 805 420 806 468 807 456 808 436 809 470 810 446 811 438 812 472 813 438 814 458 815 460 816 474 817 440 818 442 819 444 820 476 821 444 822 462 823 478 824 480 825 448 826 464 827 482 828 450 829 448 830 466 831 484 832 452 833 452 834 486 835 454 836 488 837 456 838 468 839 462 840 490 841 478 842 472 843 470 844 438 845 472 846 458 847 492 848 494 849 474 850 460 851 444 852 478 853 476 854 496 855 480 856 464 857 480 858 482 859 448 860 498 861 484 862 466 863 452 864 484 865 486 866 500 867 488 868 468 869 478 870 490 871 502 872 472 873 504 874 470 875 506 876 472 877 492 878 508 879 474 880 494 881 476 882 478 883 510 884 512 885 480 886 496 887 514 888 482 889 480 890 498 891 516 892 484 893 484 894 518 895 486 896 520 897 488 898 500 899 478 900 502 901 510 902 490 903 522 904 502 905 524 906 504 907 472 908 506 909 492 910 526 911 528 912 508 913 494 914 530 915 512 916 496 917 512 918 514 919 480 920 532 921 516 922 498 923 484 924 516 925 518 926 534 927 520 928 500 929 510 930 502 931 536 932 502 933 522 934 538 935 524 936 540 937 504 938 542 939 506 940 526 941 544 942 508 943 528 944 546 945 512 946 530 947 548 948 514 949 512 950 532 951 550 952 516 953 516 954 552 955 518 956 554 957 520 958 534 959 556 960 544 961 528 962 502 963 538 964 536 965 522 966 558 967 538 968 560 969 540 970 524 971 542 972 526 973 562 974 564 975 546 976 530 977 546 978 548 979 512 980 566 981 550 982 532 983 516 984 550 985 552 986 568 987 554 988 534 989 570 990 544 991 556 992 538 993 572 994 536 995 538 996 558 997 574 998 560 999 576 1000 540 1001 562 1002 578 1003 542 1004 580 1005 546 1006 564 1007 582 1008 548 1009 546 1010 584 1011 550 1012 566 1013 550 1014 586 1015 552 1016 568 1017 588 1018 554 1019 590 1020 578 1021 562 1022 592 1023 570 1024 556 1025 574 1026 572 1027 538 1028 558 1029 594 1030 574 1031 596 1032 576 1033 560 1034 598 1035 580 1036 564 1037 580 1038 582 1039 546 1040 600 1041 584 1042 566 1043 550 1044 584 1045 586 1046 602 1047 588 1048 568 1049 590 1050 604 1051 578 1052 606 1053 570 1054 592 1055 574 1056 608 1057 572 1058 610 1059 574 1060 594 1061 596 1062 612 1063 576 1064 614 1065 580 1066 598 1067 616 1068 582 1069 580 1070 618 1071 584 1072 600 1073 584 1074 620 1075 586 1076 602 1077 622 1078 588 1079 596 1080 624 1081 612 1082 626 1083 604 1084 590 1085 628 1086 606 1087 592 1088 630 1089 608 1090 574 1091 632 1092 610 1093 594 1094 634 1095 614 1096 598 1097 614 1098 616 1099 580 1100 636 1101 618 1102 600 1103 584 1104 618 1105 620 1106 638 1107 622 1108 602 1109 612 1110 624 1111 640 1112 626 1113 642 1114 604 1115 644 1116 606 1117 628 1118 646 1119 608 1120 630 1121 648 1122 610 1123 632 1124 650 1125 614 1126 634 1127 616 1128 614 1129 652 1130 654 1131 618 1132 636 1133 618 1134 656 1135 620 1136 638 1137 658 1138 622 1139 660 1140 648 1141 632 1142 624 1143 662 1144 640 1145 664 1146 642 1147 626 1148 644 1149 628 1150 666 1151 668 1152 646 1153 630 1154 670 1155 650 1156 634 1157 652 1158 614 1159 650 1160 672 1161 654 1162 636 1163 618 1164 674 1165 656 1166 676 1167 658 1168 638 1169 660 1170 678 1171 648 1172 640 1173 662 1174 680 1175 664 1176 682 1177 642 1178 644 1179 666 1180 684 1181 686 1182 646 1183 668 1184 650 1185 670 1186 688 1187 652 1188 650 1189 690 1190 692 1191 654 1192 672 1193 656 1194 674 1195 694 1196 676 1197 696 1198 658 1199 678 1200 686 1201 668 1202 698 1203 678 1204 660 1205 662 1206 682 1207 680 1208 700 1209 682 1210 664 1211 684 1212 666 1213 702 1214 670 1215 704 1216 688 1217 690 1218 650 1219 706 1220 708 1221 692 1222 672 1223 694 1224 674 1225 710 1226 676 1227 712 1228 696 1229 686 1230 678 1231 714 1232 678 1233 698 1234 716 1235 680 1236 682 1237 718 1238 720 1239 682 1240 700 1241 684 1242 702 1243 722 1244 688 1245 704 1246 724 1247 690 1248 706 1249 726 1250 728 1251 692 1252 708 1253 694 1254 710 1255 730 1256 712 1257 732 1258 696 1259 722 1260 702 1261 734 1262 678 1263 716 1264 714 1265 698 1266 736 1267 716 1268 682 1269 720 1270 718 1271 720 1272 700 1273 738 1274 724 1275 704 1276 740 1277 706 1278 742 1279 726 1280 744 1281 728 1282 708 1283 730 1284 710 1285 746 1286 712 1287 748 1288 732 1289 722 1290 734 1291 750 1292 714 1293 716 1294 752 1295 716 1296 736 1297 754 1298 718 1299 720 1300 756 1301 758 1302 720 1303 738 1304 724 1305 740 1306 760 1307 726 1308 742 1309 762 1310 764 1311 728 1312 744 1313 730 1314 746 1315 766 1316 732 1317 748 1318 768 1319 758 1320 738 1321 770 1322 750 1323 734 1324 772 1325 716 1326 754 1327 752 1328 736 1329 774 1330 754 1331 720 1332 758 1333 756 1334 760 1335 740 1336 776 1337 742 1338 760 1339 762 1340 764 1341 744 1342 778 1343 766 1344 746 1345 780 1346 748 1347 782 1348 768 1349 784 1350 758 1351 770 1352 750 1353 772 1354 786 1355 752 1356 754 1357 788 1358 754 1359 774 1360 790 1361 756 1362 758 1363 792 1364 760 1365 776 1366 794 1367 796 1368 762 1369 760 1370 764 1371 778 1372 798 1373 780 1374 800 1375 766 1376 768 1377 782 1378 802 1379 758 1380 784 1381 792 1382 784 1383 770 1384 804 1385 786 1386 772 1387 806 1388 754 1389 790 1390 788 1391 774 1392 808 1393 790 1394 794 1395 776 1396 810 1397 794 1398 796 1399 760 1400 798 1401 778 1402 812 1403 780 1404 814 1405 800 1406 782 1407 816 1408 802 1409 792 1410 784 1411 818 1412 820 1413 784 1414 804 1415 786 1416 806 1417 822 1418 788 1419 790 1420 824 1421 790 1422 808 1423 826 1424 828 1425 794 1426 810 1427 830 1428 796 1429 794 1430 798 1431 812 1432 832 1433 814 1434 834 1435 800 1436 802 1437 816 1438 836 1439 808 1440 838 1441 826 1442 818 1443 784 1444 820 1445 820 1446 804 1447 840 1448 806 1449 842 1450 822 1451 790 1452 826 1453 824 1454 844 1455 828 1456 810 1457 828 1458 830 1459 794 1460 832 1461 812 1462 846 1463 814 1464 848 1465 834 1466 816 1467 850 1468 836 1469 826 1470 838 1471 852 1472 818 1473 820 1474 854 1475 856 1476 820 1477 840 1478 822 1479 842 1480 858 1481 824 1482 826 1483 860 1484 862 1485 828 1486 844 1487 864 1488 830 1489 828 1490 832 1491 846 1492 866 1493 848 1494 868 1495 834 1496 836 1497 850 1498 870 1499 826 1500 852 1501 860 1502 838 1503 872 1504 852 1505 854 1506 820 1507 856 1508 856 1509 840 1510 874 1511 842 1512 876 1513 858 1514 878 1515 862 1516 844 1517 862 1518 864 1519 828 1520 866 1521 846 1522 880 1523 848 1524 866 1525 868 1526 850 1527 882 1528 870 1529 860 1530 852 1531 884 1532 852 1533 872 1534 886 1535 854 1536 856 1537 888 1538 890 1539 856 1540 874 1541 858 1542 876 1543 892 1544 894 1545 862 1546 878 1547 896 1548 864 1549 862 1550 866 1551 880 1552 898 1553 866 1554 900 1555 868 1556 870 1557 882 1558 902 1559 876 1560 904 1561 892 1562 852 1563 886 1564 884 1565 872 1566 906 1567 886 1568 888 1569 856 1570 890 1571 890 1572 874 1573 908 1574 910 1575 894 1576 878 1577 894 1578 896 1579 862 1580 880 1581 912 1582 898 1583 866 1584 898 1585 900 1586 902 1587 882 1588 914 1589 892 1590 904 1591 916 1592 884 1593 886 1594 918 1595 886 1596 906 1597 920 1598 888 1599 890 1600 922 1601 890 1602 908 1603 924 1604 926 1605 894 1606 910 1607 928 1608 896 1609 894 1610 898 1611 912 1612 930 1613 898 1614 932 1615 900 1616 902 1617 914 1618 934 1619 908 1620 936 1621 924 1622 904 1623 938 1624 916 1625 918 1626 886 1627 920 1628 906 1629 940 1630 920 1631 922 1632 890 1633 942 1634 944 1635 926 1636 910 1637 926 1638 928 1639 894 1640 912 1641 946 1642 930 1643 898 1644 930 1645 932 1646 934 1647 914 1648 948 1649 924 1650 936 1651 950 1652 916 1653 938 1654 952 1655 918 1656 920 1657 954 1658 920 1659 940 1660 956 1661 958 1662 922 1663 942 1664 960 1665 926 1666 944 1667 962 1668 928 1669 926 1670 930 1671 946 1672 964 1673 930 1674 966 1675 932 1676 934 1677 948 1678 968 1679 958 1680 942 1681 950 1682 936 1683 970 1684 950 1685 938 1686 972 1687 952 1688 954 1689 920 1690 974 1691 956 1692 940 1693 976 1694 978 1695 960 1696 944 1697 960 1698 962 1699 926 1700 946 1701 980 1702 964 1703 930 1704 964 1705 966 1706 968 1707 948 1708 982 1709 984 1710 958 1711 950 1712 950 1713 970 1714 986 1715 972 1716 988 1717 952 1718 954 1719 974 1720 990 1721 956 1722 976 1723 992 1724 994 1725 960 1726 978 1727 996 1728 962 1729 960 1730 964 1731 980 1732 998 1733 964 1734 1000 1735 966 1736 968 1737 982 1738 1002 1739 992 1740 976 1741 1004 1742 986 1743 984 1744 950 1745 970 1746 1006 1747 986 1748 972 1749 1008 1750 988 1751 974 1752 992 1753 990 1754 1010 1755 994 1756 978 1757 994 1758 996 1759 960 1760 980 1761 1012 1762 998 1763 964 1764 998 1765 1000 1766 1002 1767 982 1768 1014 1769 992 1770 1004 1771 1016 1772 1018 1773 984 1774 986 1775 986 1776 1006 1777 1020 1778 1008 1779 1022 1780 988 1781 990 1782 992 1783 1024 1784 1026 1785 994 1786 1010 1787 994 1788 1028 1789 996 1790 998 1791 1012 1792 1030 1793 1032 1794 1000 1795 998 1796 1034 1797 1002 1798 1014 1799 992 1800 1016 1801 1024 1802 1016 1803 1004 1804 1036 1805 1020 1806 1018 1807 986 1808 1006 1809 1038 1810 1020 1811 1040 1812 1022 1813 1008 1814 1042 1815 1026 1816 1010 1817 1044 1818 1028 1819 994 1820 1012 1821 1046 1822 1030 1823 1030 1824 1032 1825 998 1826 1034 1827 1014 1828 1048 1829 1024 1830 1016 1831 1050 1832 1016 1833 1036 1834 1052 1835 1054 1836 1018 1837 1020 1838 1056 1839 1020 1840 1038 1841 1040 1842 1058 1843 1022 1844 1060 1845 1026 1846 1042 1847 1044 1848 1062 1849 1028 1850 1030 1851 1046 1852 1064 1853 1066 1854 1032 1855 1030 1856 1068 1857 1034 1858 1048 1859 1070 1860 1058 1861 1040 1862 1016 1863 1052 1864 1050 1865 1036 1866 1072 1867 1052 1868 1056 1869 1054 1870 1020 1871 1056 1872 1038 1873 1074 1874 1076 1875 1060 1876 1042 1877 1078 1878 1062 1879 1044 1880 1046 1881 1080 1882 1064 1883 1064 1884 1066 1885 1030 1886 1068 1887 1048 1888 1082 1889 1070 1890 1084 1891 1058 1892 1050 1893 1052 1894 1086 1895 1052 1896 1072 1897 1088 1898 1090 1899 1054 1900 1056 1901 1092 1902 1056 1903 1074 1904 1076 1905 1094 1906 1060 1907 1096 1908 1062 1909 1078 1910 1080 1911 1098 1912 1064 1913 1100 1914 1066 1915 1064 1916 1102 1917 1068 1918 1082 1919 1092 1920 1074 1921 1104 1922 1106 1923 1084 1924 1070 1925 1052 1926 1088 1927 1086 1928 1072 1929 1108 1930 1088 1931 1092 1932 1090 1933 1056 1934 1110 1935 1094 1936 1076 1937 1094 1938 1096 1939 1078 1940 1080 1941 1112 1942 1098 1943 1114 1944 1100 1945 1064 1946 1116 1947 1102 1948 1082 1949 1118 1950 1092 1951 1104 1952 1106 1953 1120 1954 1084 1955 1086 1956 1088 1957 1122 1958 1088 1959 1108 1960 1124 1961 1126 1962 1090 1963 1092 1964 1110 1965 1128 1966 1094 1967 1130 1968 1096 1969 1094 1970 1112 1971 1132 1972 1098 1973 1114 1974 1134 1975 1100 1976 1136 1977 1102 1978 1116 1979 1118 1980 1126 1981 1092 1982 1118 1983 1104 1984 1138 1985 1140 1986 1120 1987 1106 1988 1088 1989 1124 1990 1122 1991 1108 1992 1142 1993 1124 1994 1144 1995 1128 1996 1110 1997 1128 1998 1130 1999 1094 2000 1146 2001 1132 2002 1112 2003 1114 2004 1132 2005 1134 2006 1148 2007 1136 2008 1116 2009 1150 2010 1126 2011 1118 2012 1152 2013 1118 2014 1138 2015 1140 2016 1154 2017 1120 2018 1122 2019 1124 2020 1156 2021 1124 2022 1142 2023 1158 2024 1160 2025 1128 2026 1144 2027 1162 2028 1130 2029 1128 2030 1146 2031 1164 2032 1132 2033 1132 2034 1166 2035 1134 2036 1168 2037 1136 2038 1148 2039 1142 2040 1170 2041 1158 2042 1152 2043 1150 2044 1118 2045 1152 2046 1138 2047 1172 2048 1174 2049 1154 2050 1140 2051 1124 2052 1158 2053 1156 2054 1176 2055 1160 2056 1144 2057 1160 2058 1162 2059 1128 2060 1178 2061 1164 2062 1146 2063 1132 2064 1164 2065 1166 2066 1180 2067 1168 2068 1148 2069 1158 2070 1170 2071 1182 2072 1152 2073 1184 2074 1150 2075 1186 2076 1152 2077 1172 2078 1188 2079 1154 2080 1174 2081 1156 2082 1158 2083 1190 2084 1192 2085 1160 2086 1176 2087 1194 2088 1162 2089 1160 2090 1178 2091 1196 2092 1164 2093 1164 2094 1198 2095 1166 2096 1200 2097 1168 2098 1180 2099 1158 2100 1182 2101 1190 2102 1170 2103 1202 2104 1182 2105 1204 2106 1184 2107 1152 2108 1186 2109 1172 2110 1206 2111 1208 2112 1188 2113 1174 2114 1210 2115 1192 2116 1176 2117 1192 2118 1194 2119 1160 2120 1212 2121 1196 2122 1178 2123 1164 2124 1196 2125 1198 2126 1214 2127 1200 2128 1180 2129 1190 2130 1182 2131 1216 2132 1182 2133 1202 2134 1218 2135 1204 2136 1220 2137 1184 2138 1222 2139 1186 2140 1206 2141 1224 2142 1188 2143 1208 2144 1226 2145 1224 2146 1208 2147 1182 2148 1218 2149 1216 2150 1202 2151 1228 2152 1218 2153 1230 2154 1220 2155 1204 2156 1222 2157 1206 2158 1232 2159 1234 2160 1224 2161 1226 2162 1218 2163 1236 2164 1216 2165 1238 2166 1218 2167 1228 2168 1230 2169 1240 2170 1220 2171 1232 2172 1242 2173 1222 2174 1244 2175 1242 2176 1232 2177 1246 2178 1234 2179 1226 2180 1238 2181 1236 2182 1218 2183 1248 2184 1238 2185 1228 2186 1250 2187 1240 2188 1230 2189 1244 2190 1252 2191 1242 2192 1254 2193 1234 2194 1246 2195 1238 2196 1256 2197 1236 2198 1258 2199 1238 2200 1248 2201 1250 2202 1260 2203 1240 2204 1250 2205 1262 2206 1260 2207 1264 2208 1252 2209 1244 2210 1266 2211 1254 2212 1246 2213 1268 2214 1256 2215 1238 2216 1270 2217 1258 2218 1248 2219 1260 2220 1262 2221 1272 2222 1264 2223 1274 2224 1252 2225 1276 2226 1254 2227 1266 2228 1278 2229 1256 2230 1268 2231 1280 2232 1258 2233 1270 2234 1282 2235 1280 2236 1270 2237 1262 2238 1284 2239 1272 2240 1286 2241 1274 2242 1264 2243 1276 2244 1266 2245 1288 2246 1280 2247 1278 2248 1268 2249 1282 2250 1290 2251 1280 2252 1272 2253 1284 2254 1292 2255 1286 2256 1294 2257 1274 2258 1276 2259 1288 2260 1296 2261 1278 2262 1280 2263 1298 2264 1280 2265 1290 2266 1298 2267 1300 2268 1290 2269 1282 2270 1284 2271 1294 2272 1292 2273 1302 2274 1294 2275 1286 2276 1296 2277 1288 2278 1304 2279 1298 2280 1290 2281 1306 2282 1290 2283 1300 2284 1308 2285 1292 2286 1294 2287 1310 2288 1312 2289 1294 2290 1302 2291 1296 2292 1304 2293 1314 2294 1314 2295 1304 2296 1316 2297 1290 2298 1308 2299 1306 2300 1300 2301 1318 2302 1308 2303 1294 2304 1312 2305 1310 2306 1312 2307 1302 2308 1320 2309 1314 2310 1316 2311 1322 2312 1306 2313 1308 2314 1324 2315 1308 2316 1318 2317 1326 2318 1310 2319 1312 2320 1328 2321 1330 2322 1312 2323 1320 2324 1330 2325 1320 2326 1332 2327 1322 2328 1316 2329 1334 2330 1308 2331 1326 2332 1324 2333 1318 2334 1336 2335 1326 2336 1312 2337 1330 2338 1328 2339 1338 2340 1330 2341 1332 2342 1322 2343 1334 2344 1340 2345 1324 2346 1326 2347 1342 2348 1326 2349 1336 2350 1344 2351 1328 2352 1330 2353 1346 2354 1330 2355 1338 2356 1346 2357 1338 2358 1332 2359 1348 2360 1340 2361 1334 2362 1350 2363 1326 2364 1344 2365 1342 2366 1336 2367 1352 2368 1344 2369 1346 2370 1338 2371 1354 2372 1356 2373 1338 2374 1348 2375 1340 2376 1350 2377 1358 2378 1342 2379 1344 2380 1360 2381 1344 2382 1352 2383 1362 2384 1352 2385 1364 2386 1362 2387 1354 2388 1338 2389 1356 2390 1356 2391 1348 2392 1366 2393 1350 2394 1368 2395 1358 2396 1344 2397 1362 2398 1360 2399 1362 2400 1364 2401 1370 2402 1354 2403 1356 2404 1372 2405 1374 2406 1356 2407 1366 2408 1358 2409 1368 2410 1376 2411 1360 2412 1362 2413 1378 2414 1362 2415 1370 2416 1378 2417 1364 2418 1380 2419 1370 2420 1372 2421 1356 2422 1374 2423 1374 2424 1366 2425 1382 2426 1368 2427 1384 2428 1376 2429 1378 2430 1370 2431 1386 2432 1370 2433 1380 2434 1388 2435 1372 2436 1374 2437 1390 2438 1392 2439 1374 2440 1382 2441 1376 2442 1384 2443 1394 2444 1384 2445 1396 2446 1394 2447 1370 2448 1388 2449 1386 2450 1380 2451 1398 2452 1388 2453 1390 2454 1374 2455 1392 2456 1392 2457 1382 2458 1400 2459 1394 2460 1396 2461 1402 2462 1386 2463 1388 2464 1404 2465 1388 2466 1398 2467 1406 2468 1390 2469 1392 2470 1408 2471 1392 2472 1400 2473 1410 2474 1400 2475 1412 2476 1410 2477 1396 2478 1414 2479 1402 2480 1404 2481 1388 2482 1406 2483 1398 2484 1416 2485 1406 2486 1408 2487 1392 2488 1418 2489 1410 2490 1412 2491 1420 2492 1402 2493 1414 2494 1422 2495 1404 2496 1406 2497 1424 2498 1406 2499 1416 2500 1426 2501 1428 2502 1408 2503 1418 2504 1428 2505 1418 2506 1420 2507 1412 2508 1430 2509 1420 2510 1414 2511 1432 2512 1422 2513 1424 2514 1406 2515 1434 2516 1426 2517 1416 2518 1436 2519 1438 2520 1428 2521 1420 2522 1420 2523 1430 2524 1440 2525 1432 2526 1442 2527 1422 2528 1424 2529 1434 2530 1444 2531 1426 2532 1436 2533 1446 2534 1446 2535 1436 2536 1448 2537 1440 2538 1438 2539 1420 2540 1430 2541 1450 2542 1440 2543 1432 2544 1452 2545 1442 2546 1434 2547 1446 2548 1444 2549 1446 2550 1448 2551 1454 2552 1456 2553 1438 2554 1440 2555 1440 2556 1450 2557 1458 2558 1452 2559 1460 2560 1442 2561 1444 2562 1446 2563 1462 2564 1446 2565 1454 2566 1462 2567 1454 2568 1448 2569 1464 2570 1458 2571 1456 2572 1440 2573 1450 2574 1466 2575 1458 2576 1468 2577 1460 2578 1452 2579 1462 2580 1454 2581 1470 2582 1454 2583 1464 2584 1472 2585 1474 2586 1456 2587 1458 2588 1476 2589 1458 2590 1466 2591 1468 2592 1478 2593 1460 2594 1480 2595 1478 2596 1468 2597 1454 2598 1472 2599 1470 2600 1464 2601 1482 2602 1472 2603 1476 2604 1474 2605 1458 2606 1476 2607 1466 2608 1484 2609 1480 2610 1486 2611 1478 2612 1470 2613 1472 2614 1488 2615 1472 2616 1482 2617 1490 2618 1492 2619 1474 2620 1476 2621 1494 2622 1476 2623 1484 2624 1494 2625 1484 2626 1496 2627 1498 2628 1486 2629 1480 2630 1472 2631 1490 2632 1488 2633 1482 2634 1500 2635 1490 2636 1494 2637 1492 2638 1476 2639 1502 2640 1494 2641 1496 2642 1498 2643 1504 2644 1486 2645 1488 2646 1490 2647 1506 2648 1490 2649 1500 2650 1508 2651 1510 2652 1492 2653 1494 2654 1502 2655 1510 2656 1494 2657 1502 2658 1496 2659 1512 2660 1514 2661 1504 2662 1498 2663 1490 2664 1508 2665 1506 2666 1500 2667 1516 2668 1508 2669</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"890\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1717\" />\r\n\t\t\t\t\t<p>3 4 5 3 7 4 9 5 4 12 5 13 17 18 19 21 7 3 24 17 25 9 27 5 13 5 29 31 12 13 19 18 33 25 17 19 35 7 21 31 37 12 39 24 25 41 27 9 27 29 5 45 46 47 47 50 51 55 56 57 18 59 33 62 57 63 65 35 21 67 37 31 70 62 71 73 24 39 41 75 27 27 77 29 45 56 46 47 46 50 51 50 79 81 56 55 57 56 63 59 83 33 62 63 71 85 35 65 67 65 37 87 51 79 70 71 89 91 73 39 93 75 41 75 77 27 95 56 45 98 81 99 102 98 103 99 81 55 95 63 56 105 83 59 107 71 63 109 85 65 65 67 111 113 87 79 115 89 71 117 70 89 119 73 91 93 121 75 75 123 77 103 98 99 125 102 103 107 63 95 105 127 83 115 71 107 129 85 109 65 111 109 131 87 113 133 102 125 135 89 115 117 89 137 139 119 91 141 121 93 121 123 75 144 145 127 144 127 105 121 147 123 129 109 149 109 111 151 153 131 113 125 155 133 158 159 147 137 89 135 161 117 137 139 163 119 141 158 121 165 145 144 158 147 121 129 149 167 109 151 149 169 131 153 155 171 133 165 173 145 175 159 158 177 137 135 161 137 179 181 163 139 183 158 141 167 149 185 149 151 187 189 169 153 155 191 171 193 173 165 183 175 158 175 195 159 179 137 177 197 161 179 181 199 163 167 185 201 149 187 185 203 169 189 191 189 171 193 205 173 207 175 183 209 195 175 211 179 177 197 179 213 215 199 181 201 185 217 185 187 219 221 203 189 191 223 189 225 205 193 215 227 199 207 209 175 209 229 195 213 179 211 231 197 213 201 217 233 185 219 217 221 235 203 223 221 189 237 205 225 239 227 215 241 209 207 243 229 209 245 213 211 247 231 213 233 217 249 217 219 251 253 235 221 223 255 221 257 237 225 247 259 231 239 261 227 243 209 241 243 263 229 265 213 245 233 249 267 217 251 249 253 269 235 255 253 221 271 237 257 273 259 247 275 261 239 277 243 241 279 263 243 265 245 281 267 249 283 249 251 285 287 269 253 255 289 253 291 271 257 273 265 281 273 293 259 275 295 261 297 243 277 279 299 263 267 283 301 249 285 283 287 303 269 289 287 253 305 271 291 273 281 307 309 293 273 275 311 295 313 297 277 315 299 279 301 283 317 283 285 319 321 303 287 289 323 287 325 305 291 327 299 315 273 307 309 309 329 293 311 331 295 313 315 297 301 317 333 283 319 317 321 335 303 323 321 287 337 305 325 339 327 315 309 307 341 343 329 309 311 345 331 347 315 313 333 317 349 319 351 317 353 335 321 321 323 355 337 325 357 347 339 315 359 327 339 309 341 343 343 361 329 331 345 363 333 349 365 317 351 367 353 369 335 321 355 353 371 337 357 373 339 347 375 359 339 343 341 377 361 343 379 345 381 363 365 349 383 351 385 367 387 369 353 353 355 389 371 357 391 363 381 393 373 375 339 375 395 359 343 377 379 397 361 379 365 383 399 367 385 401 387 403 369 353 389 387 405 371 391 381 407 393 409 375 373 411 395 375 379 377 413 397 379 415 383 417 399 401 385 419 387 421 403 387 389 423 405 391 425 427 397 415 393 407 429 409 411 375 411 431 395 379 413 415 399 417 433 401 419 417 421 435 403 387 423 421 405 425 437 427 415 439 407 441 429 443 411 409 445 431 411 415 413 447 417 449 433 417 419 451 421 453 435 421 423 455 437 425 457 415 447 439 459 427 439 429 441 461 443 445 411 445 463 431 433 449 465 417 451 449 435 453 467 421 455 453 437 457 469 439 447 471 459 439 473 441 475 461 477 445 443 479 463 445 465 449 481 449 451 483 453 485 467 455 487 453 469 457 489 479 491 463 439 471 473 493 459 473 461 475 495 477 479 445 465 481 497 449 483 481 467 485 499 487 485 453 469 489 501 503 491 479 471 505 473 493 473 507 495 475 509 511 479 477 497 481 513 481 483 515 485 517 499 487 519 485 501 489 521 511 503 479 503 523 491 473 505 525 527 493 507 495 509 529 497 513 531 481 515 513 499 517 533 519 517 485 501 521 535 537 503 511 539 523 503 505 541 525 527 507 543 529 509 545 531 513 547 513 515 549 517 551 533 519 553 517 535 521 555 529 545 557 537 539 503 539 559 523 525 541 561 563 527 543 531 547 565 513 549 547 533 551 567 553 551 517 535 555 569 557 545 571 537 573 539 575 559 539 541 577 561 543 579 563 565 547 581 547 549 583 567 551 585 553 587 551 555 589 569 563 579 591 557 571 593 539 573 575 575 595 559 561 577 597 565 581 599 547 583 581 567 585 601 587 585 551 569 589 603 579 605 591 593 571 607 573 609 575 595 575 611 577 613 597 599 581 615 581 583 617 601 585 619 587 621 585 589 623 603 613 625 597 591 605 627 593 607 629 575 609 631 595 611 633 599 615 635 581 617 615 601 619 637 621 619 585 603 623 639 641 625 613 605 643 627 629 607 645 631 609 647 633 611 649 635 615 651 653 615 617 637 619 655 621 657 619 623 659 639 633 649 661 641 663 625 627 643 665 667 629 645 631 647 669 635 651 671 651 615 653 637 655 673 657 675 619 639 659 677 649 679 661 681 663 641 643 683 665 685 667 645 669 647 687 689 671 651 691 651 653 673 655 693 695 675 657 659 697 677 669 687 679 661 679 699 681 683 663 665 683 701 703 667 685 689 705 671 707 651 691 673 693 709 711 675 695 697 713 677 715 679 687 717 699 679 719 683 681 701 683 721 723 703 685 725 705 689 727 707 691 709 693 729 731 711 695 697 733 713 735 703 723 715 717 679 717 737 699 719 721 683 739 701 721 741 705 725 727 743 707 709 729 745 747 711 731 733 749 713 751 735 723 753 717 715 755 737 717 757 721 719 739 721 759 761 741 725 763 743 727 745 729 765 767 747 731 769 749 733 771 739 759 773 735 751 753 755 717 755 775 737 757 759 721 777 741 761 763 761 743 779 745 765 781 747 767 769 783 749 771 759 785 787 773 751 789 755 753 791 775 755 793 759 757 795 777 761 761 763 797 799 779 765 767 801 781 803 783 769 793 785 759 805 771 785 807 773 787 789 791 755 791 809 775 811 777 795 761 797 795 813 779 799 801 815 781 803 817 783 819 785 793 805 785 821 823 807 787 825 791 789 827 809 791 811 795 829 795 797 831 833 813 799 801 835 815 837 817 803 827 839 809 821 785 819 841 805 821 823 843 807 825 827 791 811 829 845 795 831 829 847 813 833 835 849 815 837 851 817 853 839 827 855 821 819 841 821 857 859 843 823 861 827 825 845 829 863 829 831 865 867 847 833 835 869 849 871 851 837 861 853 827 853 873 839 857 821 855 875 841 857 859 877 843 845 863 879 829 865 863 881 847 867 869 867 849 871 883 851 885 853 861 887 873 853 889 857 855 875 857 891 893 877 859 879 863 895 863 865 897 899 881 867 869 901 867 903 883 871 893 905 877 885 887 853 887 907 873 891 857 889 909 875 891 879 895 911 863 897 895 899 913 881 901 899 867 915 883 903 917 905 893 919 887 885 921 907 887 923 891 889 925 909 891 911 895 927 895 897 929 931 913 899 901 933 899 935 915 903 925 937 909 917 939 905 921 887 919 921 941 907 943 891 923 911 927 945 895 929 927 931 947 913 933 931 899 949 915 935 951 937 925 953 939 917 955 921 919 957 941 921 943 923 959 945 927 961 927 929 963 965 947 931 933 967 931 969 949 935 951 943 959 951 971 937 953 973 939 975 921 955 977 941 957 945 961 979 927 963 961 965 981 947 967 965 931 983 949 969 951 959 985 987 971 951 953 989 973 991 975 955 993 977 957 979 961 995 961 963 997 999 981 965 967 1001 965 1003 983 969 1005 977 993 951 985 987 987 1007 971 989 1009 973 991 993 975 979 995 1011 961 997 995 999 1013 981 1001 999 965 1015 983 1003 1017 1005 993 987 985 1019 1021 1007 987 989 1023 1009 1025 993 991 1011 995 1027 997 1029 995 1031 1013 999 999 1001 1033 1015 1003 1035 1025 1017 993 1037 1005 1017 987 1019 1021 1021 1039 1007 1009 1023 1041 1011 1027 1043 995 1029 1045 1031 1047 1013 999 1033 1031 1049 1015 1035 1051 1017 1025 1053 1037 1017 1021 1019 1055 1039 1021 1057 1023 1059 1041 1043 1027 1061 1029 1063 1045 1065 1047 1031 1031 1033 1067 1049 1035 1069 1041 1059 1071 1051 1053 1017 1053 1073 1037 1021 1055 1057 1075 1039 1057 1043 1061 1077 1045 1063 1079 1065 1081 1047 1031 1067 1065 1083 1049 1069 1059 1085 1071 1087 1053 1051 1089 1073 1053 1057 1055 1091 1075 1057 1093 1061 1095 1077 1079 1063 1097 1065 1099 1081 1065 1067 1101 1083 1069 1103 1105 1075 1093 1071 1085 1107 1087 1089 1053 1089 1109 1073 1057 1091 1093 1077 1095 1111 1079 1097 1095 1099 1113 1081 1065 1101 1115 1083 1103 1117 1105 1093 1119 1085 1121 1107 1123 1089 1087 1125 1109 1089 1093 1091 1127 1095 1129 1111 1095 1097 1131 1099 1133 1113 1101 1135 1115 1117 1103 1137 1093 1127 1119 1139 1105 1119 1107 1121 1141 1123 1125 1089 1125 1143 1109 1111 1129 1145 1095 1131 1129 1113 1133 1147 1135 1133 1115 1117 1137 1149 1119 1127 1151 1139 1119 1153 1121 1155 1141 1157 1125 1123 1159 1143 1125 1145 1129 1161 1129 1131 1163 1133 1165 1147 1135 1167 1133 1149 1137 1169 1159 1171 1143 1119 1151 1153 1173 1139 1153 1141 1155 1175 1157 1159 1125 1145 1161 1177 1129 1163 1161 1147 1165 1179 1167 1165 1133 1149 1169 1181 1183 1171 1159 1151 1185 1153 1173 1153 1187 1175 1155 1189 1191 1159 1157 1177 1161 1193 1161 1163 1195 1165 1197 1179 1167 1199 1165 1181 1169 1201 1191 1183 1159 1183 1203 1171 1153 1185 1205 1207 1173 1187 1175 1189 1209 1177 1193 1211 1161 1195 1193 1179 1197 1213 1199 1197 1165 1181 1201 1215 1217 1183 1191 1219 1203 1183 1185 1221 1205 1207 1187 1223 1209 1189 1225 1209 1225 1227 1217 1219 1183 1219 1229 1203 1205 1221 1231 1233 1207 1223 1227 1225 1235 1217 1237 1219 1229 1219 1239 1221 1241 1231 1223 1243 1233 1233 1243 1245 1227 1235 1247 1219 1237 1239 1229 1239 1249 1231 1241 1251 1243 1253 1245 1247 1235 1255 1237 1257 1239 1249 1239 1259 1241 1261 1251 1261 1263 1251 1245 1253 1265 1247 1255 1267 1239 1257 1269 1249 1259 1271 1273 1263 1261 1253 1275 1265 1267 1255 1277 1269 1257 1279 1271 1259 1281 1271 1281 1283 1273 1285 1263 1265 1275 1287 1289 1267 1277 1269 1279 1281 1281 1291 1283 1293 1285 1273 1275 1295 1287 1297 1289 1277 1299 1281 1279 1299 1291 1281 1283 1291 1301 1293 1295 1285 1287 1295 1303 1305 1289 1297 1307 1291 1299 1309 1301 1291 1311 1295 1293 1303 1295 1313 1315 1305 1297 1317 1305 1315 1307 1309 1291 1309 1319 1301 1311 1313 1295 1321 1303 1313 1323 1317 1315 1325 1309 1307 1327 1319 1309 1329 1313 1311 1321 1313 1331 1333 1321 1331 1335 1317 1323 1325 1327 1309 1327 1337 1319 1329 1331 1313 1333 1331 1339 1341 1335 1323 1343 1327 1325 1345 1337 1327 1347 1331 1329 1347 1339 1331 1349 1333 1339 1351 1335 1341 1343 1345 1327 1345 1353 1337 1355 1339 1347 1349 1339 1357 1359 1351 1341 1361 1345 1343 1363 1353 1345 1363 1365 1353 1357 1339 1355 1367 1349 1357 1359 1369 1351 1361 1363 1345 1371 1365 1363 1373 1357 1355 1367 1357 1375 1377 1369 1359 1379 1363 1361 1379 1371 1363 1371 1381 1365 1375 1357 1373 1383 1367 1375 1377 1385 1369 1387 1371 1379 1389 1381 1371 1391 1375 1373 1383 1375 1393 1395 1385 1377 1395 1397 1385 1387 1389 1371 1389 1399 1381 1393 1375 1391 1401 1383 1393 1403 1397 1395 1405 1389 1387 1407 1399 1389 1409 1393 1391 1411 1401 1393 1411 1413 1401 1403 1415 1397 1407 1389 1405 1407 1417 1399 1419 1393 1409 1421 1413 1411 1423 1415 1403 1425 1407 1405 1427 1417 1407 1419 1409 1429 1421 1419 1429 1421 1431 1413 1423 1433 1415 1435 1407 1425 1437 1417 1427 1421 1429 1439 1441 1431 1421 1423 1443 1433 1445 1435 1425 1447 1437 1427 1449 1437 1447 1421 1439 1441 1441 1451 1431 1443 1453 1433 1445 1447 1435 1455 1449 1447 1441 1439 1457 1459 1451 1441 1443 1461 1453 1463 1447 1445 1463 1455 1447 1465 1449 1455 1441 1457 1459 1459 1467 1451 1453 1461 1469 1471 1455 1463 1473 1465 1455 1459 1457 1475 1467 1459 1477 1461 1479 1469 1469 1479 1481 1471 1473 1455 1473 1483 1465 1459 1475 1477 1485 1467 1477 1479 1487 1481 1489 1473 1471 1491 1483 1473 1477 1475 1493 1485 1477 1495 1497 1485 1495 1481 1487 1499 1489 1491 1473 1491 1501 1483 1477 1493 1495 1497 1495 1503 1487 1505 1499 1507 1491 1489 1509 1501 1491 1495 1493 1511 1495 1511 1503 1513 1497 1503 1499 1505 1515 1507 1509 1491 1509 1517 1501</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1722\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1723\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID1726\">-0.6839439272880554 1.402427673339844 0.0003010407090187073 -0.6568337678909302 1.379017114639282 -0.003134805709123612 -0.6761385798454285 1.40332818031311 0.01056023687124252 -0.6761385798454285 1.40332818031311 0.01056023687124252 -0.6568337678909302 1.379017114639282 -0.003134805709123612 -0.6839439272880554 1.402427673339844 0.0003010407090187073 -0.653416633605957 1.383425712585449 0.007677655667066574 -0.653416633605957 1.383425712585449 0.007677655667066574 -0.61176598072052 1.378705859184265 -0.008583445101976395 -0.61176598072052 1.378705859184265 -0.008583445101976395</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID1726\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1724\">\r\n\t\t\t\t\t<float_array count=\"30\" id=\"ID1727\">0.5409079490672565 0.6957494617548015 -0.472600547083643 0.2763834199718249 0.8551930591528619 -0.4384712496178597 0.5430304145553483 0.6959188850689713 -0.4699094319889809 -0.5430304145553483 -0.6959188850689713 0.4699094319889809 -0.2763834199718249 -0.8551930591528619 0.4384712496178597 -0.5409079490672565 -0.6957494617548015 0.472600547083643 0.2921036455529176 0.8497824160601982 -0.4387998468659575 -0.2921036455529176 -0.8497824160601982 0.4387998468659575 -0.03794787228475661 0.9294557085636185 -0.3669768995557645 0.03794787228475661 -0.9294557085636185 0.3669768995557645</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"10\" source=\"#ID1727\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1725\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1723\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1724\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"6\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1725\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 1 6 2 3 7 4 1 8 6 7 9 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1728\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1729\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1732\">-0.6544483304023743 1.382906556129456 -0.03208892792463303 -0.6791197061538696 1.404064536094666 -0.02896468713879585 -0.6528294682502747 1.384758353233337 -0.01757699251174927 -0.6528294682502747 1.384758353233337 -0.01757699251174927 -0.6791197061538696 1.404064536094666 -0.02896468713879585 -0.6544483304023743 1.382906556129456 -0.03208892792463303</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1732\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1730\">\r\n\t\t\t\t\t<float_array count=\"18\" id=\"ID1733\">-0.6295653120525944 -0.7587756278652171 0.1670540763281906 -0.6295653120525944 -0.7587756278652171 0.1670540763281906 -0.6295653120525944 -0.7587756278652171 0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"6\" source=\"#ID1733\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1731\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1729\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1730\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1731\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1734\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1735\">\r\n\t\t\t\t\t<float_array count=\"4554\" id=\"ID1739\">-0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5850709080696106 1.396236777305603 -0.1415597796440125 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5850709080696106 1.396236777305603 -0.1415597796440125 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5960053205490112 1.388214826583862 -0.1377354264259338 -0.5960053205490112 1.388214826583862 -0.1377354264259338 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.5746597647666931 1.392412900924683 -0.1467487365007401 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5746597647666931 1.392412900924683 -0.1467487365007401 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5881686210632324 1.382356405258179 -0.1426282227039337 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5881686210632324 1.382356405258179 -0.1426282227039337 -0.5819917321205139 1.427334427833557 -0.1494816094636917 -0.5819917321205139 1.427334427833557 -0.1494816094636917 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.605396568775177 1.375316143035889 -0.1379894018173218 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.605396568775177 1.375316143035889 -0.1379894018173218 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6099938750267029 1.382491946220398 -0.1334818005561829 -0.6099938750267029 1.382491946220398 -0.1334818005561829 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.6249552369117737 1.372067928314209 -0.1330464780330658 -0.6249552369117737 1.372067928314209 -0.1330464780330658 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.5907177329063416 1.436359405517578 -0.1509662568569183 -0.5907177329063416 1.436359405517578 -0.1509662568569183 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6258568167686462 1.37988018989563 -0.1289798319339752 -0.6258568167686462 1.37988018989563 -0.1289798319339752 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6449195742607117 1.372947692871094 -0.1280253380537033 -0.6449195742607117 1.372947692871094 -0.1280253380537033 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.603263258934021 1.443111658096314 -0.1520082503557205 -0.603263258934021 1.443111658096314 -0.1520082503557205 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6420464515686035 1.380591630935669 -0.1244172155857086 -0.6420464515686035 1.380591630935669 -0.1244172155857086 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.6569705605506897 1.384566307067871 -0.119984433054924 -0.6569705605506897 1.384566307067871 -0.119984433054924 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6633379459381104 1.377706408500671 -0.1231223493814468 -0.6633379459381104 1.377706408500671 -0.1231223493814468 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6183810234069824 1.446958065032959 -0.15275639295578 -0.6183810234069824 1.446958065032959 -0.15275639295578 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6158870458602905 1.454949855804443 -0.1569075584411621 -0.6158870458602905 1.454949855804443 -0.1569075584411621 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6691690683364868 1.391404628753662 -0.1158596873283386 -0.6691690683364868 1.391404628753662 -0.1158596873283386 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6784166097640991 1.386274456977844 -0.1186821758747101 -0.6784166097640991 1.386274456977844 -0.1186821758747101 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6346040964126587 1.447518587112427 -0.1533942818641663 -0.6346040964126587 1.447518587112427 -0.1533942818641663 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6358919143676758 1.455586194992065 -0.1570864319801331 -0.6358919143676758 1.455586194992065 -0.1570864319801331 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6774526238441467 1.400427103042603 -0.1121946573257446 -0.6774526238441467 1.400427103042603 -0.1121946573257446 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6503424048423767 1.444744110107422 -0.1541148126125336 -0.6503424048423767 1.444744110107422 -0.1541148126125336 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6552913784980774 1.452123165130615 -0.1573689877986908 -0.6552913784980774 1.452123165130615 -0.1573689877986908 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6930937767028809 1.41014289855957 -0.1115392148494721 -0.6930937767028809 1.41014289855957 -0.1115392148494721 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6640493273735046 1.438929200172424 -0.1551009118556976 -0.6640493273735046 1.438929200172424 -0.1551009118556976 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.672182023525238 1.444900512695313 -0.1579820066690445 -0.672182023525238 1.444900512695313 -0.1579820066690445 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6912596821784973 1.423226833343506 -0.1090674251317978 -0.6912596821784973 1.423226833343506 -0.1090674251317978 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6794900298118591 1.421321630477905 -0.1066007241606712 -0.6794900298118591 1.421321630477905 -0.1066007241606712 -0.6743879318237305 1.430635929107666 -0.1565102338790894 -0.6743879318237305 1.430635929107666 -0.1565102338790894 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6848939657211304 1.434637069702148 -0.1591162979602814 -0.6848939657211304 1.434637069702148 -0.1591162979602814 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6730406284332275 1.431132555007935 -0.1047087833285332 -0.6730406284332275 1.431132555007935 -0.1047087833285332 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6833488345146179 1.435347318649292 -0.1073383688926697 -0.6833488345146179 1.435347318649292 -0.1073383688926697 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6922057271003723 1.422344446182251 -0.1609204709529877 -0.6922057271003723 1.422344446182251 -0.1609204709529877 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6623038053512573 1.439197421073914 -0.1033507362008095 -0.6623038053512573 1.439197421073914 -0.1033507362008095 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.6699572801589966 1.445349335670471 -0.1062754094600678 -0.6699572801589966 1.445349335670471 -0.1062754094600678 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6933844089508057 1.409244656562805 -0.1634690910577774 -0.6933844089508057 1.409244656562805 -0.1634690910577774 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6483189463615418 1.444727420806885 -0.1024002805352211 -0.6483189463615418 1.444727420806885 -0.1024002805352211 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6528607606887817 1.452198028564453 -0.1057026162743568 -0.6528607606887817 1.452198028564453 -0.1057026162743568 -0.6772618293762207 1.39987325668335 -0.1641806960105896 -0.6772618293762207 1.39987325668335 -0.1641806960105896 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6882098317146301 1.396625757217407 -0.1667627543210983 -0.6882098317146301 1.396625757217407 -0.1667627543210983 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6333565711975098 1.45525586605072 -0.1054370924830437 -0.6333565711975098 1.45525586605072 -0.1054370924830437 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6324572563171387 1.447163939476013 -0.1016970723867416 -0.6324572563171387 1.447163939476013 -0.1016970723867416 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6687233448028565 1.391040802001953 -0.1678927093744278 -0.6687233448028565 1.391040802001953 -0.1678927093744278 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6775147318840027 1.385725855827332 -0.1707536578178406 -0.6775147318840027 1.385725855827332 -0.1707536578178406 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6133941411972046 1.454185128211975 -0.1052539274096489 -0.6133941411972046 1.454185128211975 -0.1052539274096489 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6162789463996887 1.446246385574341 -0.1010573506355286 -0.6162789463996887 1.446246385574341 -0.1010573506355286 -0.6559849381446838 1.384477019309998 -0.1720629781484604 -0.6559849381446838 1.384477019309998 -0.1720629781484604 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6620186567306519 1.377620458602905 -0.1752837896347046 -0.6620186567306519 1.377620458602905 -0.1752837896347046 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6013543605804443 1.442081570625305 -0.1002846360206604 -0.6013543605804443 1.442081570625305 -0.1002846360206604 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.6408566832542419 1.380822777748108 -0.1765177100896835 -0.6408566832542419 1.380822777748108 -0.1765177100896835 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6433469653129578 1.373119354248047 -0.1801735311746597 -0.6433469653129578 1.373119354248047 -0.1801735311746597 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5891588926315308 1.435057163238525 -0.09920486062765122 -0.5891588926315308 1.435057163238525 -0.09920486062765122 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.6246308088302612 1.380454540252686 -0.1810832619667053 -0.6246308088302612 1.380454540252686 -0.1810832619667053 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6233323812484741 1.37267804145813 -0.1851973384618759 -0.6233323812484741 1.37267804145813 -0.1851973384618759 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5808806419372559 1.42584764957428 -0.09766633808612824 -0.5808806419372559 1.42584764957428 -0.09766633808612824 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.6084317564964294 1.383298873901367 -0.1856234967708588 -0.6084317564964294 1.383298873901367 -0.1856234967708588 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6034061312675476 1.376229882240295 -0.1901844590902329 -0.6034061312675476 1.376229882240295 -0.1901844590902329 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5943745374679565 1.389306902885437 -0.189885824918747 -0.5943745374679565 1.389306902885437 -0.189885824918747 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5861319303512573 1.383688688278198 -0.1948245465755463 -0.5861319303512573 1.383688688278198 -0.1948245465755463 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5841846466064453 1.397872924804688 -0.1936603933572769 -0.5841846466064453 1.397872924804688 -0.1936603933572769 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.586337149143219 1.394140601158142 -0.08941585570573807 -0.586337149143219 1.394140601158142 -0.08941585570573807 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5761085748672485 1.390118598937988 -0.09458494186401367 -0.5761085748672485 1.390118598937988 -0.09458494186401367 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.597230851650238 1.385961890220642 -0.08555353432893753 -0.597230851650238 1.385961890220642 -0.08555353432893753 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5895075798034668 1.380048990249634 -0.09043119847774506 -0.5895075798034668 1.380048990249634 -0.09043119847774506 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6113255023956299 1.380364418029785 -0.0812884196639061 -0.6113255023956299 1.380364418029785 -0.0812884196639061 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6068654656410217 1.373271226882935 -0.08584757149219513 -0.6068654656410217 1.373271226882935 -0.08584757149219513 -0.5818657279014587 1.429222106933594 -0.2015324234962463 -0.5818657279014587 1.429222106933594 -0.2015324234962463 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.6264719963073731 1.370048642158508 -0.08082878589630127 -0.6264719963073731 1.370048642158508 -0.08082878589630127 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.627228856086731 1.377870798110962 -0.07677979022264481 -0.627228856086731 1.377870798110962 -0.07677979022264481 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.5907652378082275 1.438162326812744 -0.2029987573623657 -0.5907652378082275 1.438162326812744 -0.2029987573623657 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.646413266658783 1.371087551116943 -0.0758097916841507 -0.646413266658783 1.371087551116943 -0.0758097916841507 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6433968544006348 1.378713488578796 -0.07221866399049759 -0.6433968544006348 1.378713488578796 -0.07221866399049759 -0.6034278273582459 1.444821834564209 -0.2040233165025711 -0.6034278273582459 1.444821834564209 -0.2040233165025711 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.6582387089729309 1.382810711860657 -0.06779345870018005 -0.6582387089729309 1.382810711860657 -0.06779345870018005 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6647380590438843 1.376140356063843 -0.07095810770988464 -0.6647380590438843 1.376140356063843 -0.07095810770988464 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6186198592185974 1.448546290397644 -0.2047647386789322 -0.6186198592185974 1.448546290397644 -0.2047647386789322 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6162691712379456 1.45654559135437 -0.2088989764451981 -0.6162691712379456 1.45654559135437 -0.2088989764451981 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.6703106760978699 1.389740109443665 -0.06368611007928848 -0.6703106760978699 1.389740109443665 -0.06368611007928848 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6796504855155945 1.384695649147034 -0.06649493426084518 -0.6796504855155945 1.384695649147034 -0.06649493426084518 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6348575949668884 1.448981881141663 -0.2054028511047363 -0.6348575949668884 1.448981881141663 -0.2054028511047363 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6362943053245544 1.457031488418579 -0.2090783268213272 -0.6362943053245544 1.457031488418579 -0.2090783268213272 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6784234642982483 1.398842453956604 -0.060040432959795 -0.6784234642982483 1.398842453956604 -0.060040432959795 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6505376100540161 1.446078181266785 -0.2061298489570618 -0.6505376100540161 1.446078181266785 -0.2061298489570618 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6556281447410584 1.453407168388367 -0.2093694508075714 -0.6556281447410584 1.453407168388367 -0.2093694508075714 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6938823461532593 1.408680319786072 -0.05940676108002663 -0.6938823461532593 1.408680319786072 -0.05940676108002663 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6641404628753662 1.440156102180481 -0.2071295976638794 -0.6641404628753662 1.440156102180481 -0.2071295976638794 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6723766326904297 1.446055293083191 -0.2099965065717697 -0.6723766326904297 1.446055293083191 -0.2099965065717697 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6918065547943115 1.421743154525757 -0.05696588382124901 -0.6918065547943115 1.421743154525757 -0.05696588382124901 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6800680756568909 1.419736385345459 -0.05449339374899864 -0.6800680756568909 1.419736385345459 -0.05449339374899864 -0.6742206811904907 1.431780219078064 -0.2085531204938889 -0.6742206811904907 1.431780219078064 -0.2085531204938889 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6849071979522705 1.435693502426148 -0.2111567407846451 -0.6849071979522705 1.435693502426148 -0.2111567407846451 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6734410524368286 1.429511189460754 -0.05262438207864761 -0.6734410524368286 1.429511189460754 -0.05262438207864761 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6836695075035095 1.433806657791138 -0.05526319518685341 -0.6836695075035095 1.433806657791138 -0.05526319518685341 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6919834613800049 1.423349499702454 -0.2129876613616943 -0.6919834613800049 1.423349499702454 -0.2129876613616943 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.6625518202781677 1.437491416931152 -0.05128387361764908 -0.6625518202781677 1.437491416931152 -0.05128387361764908 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.670270562171936 1.443693280220032 -0.05421211943030357 -0.670270562171936 1.443693280220032 -0.05421211943030357 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6929225921630859 1.410237550735474 -0.2155666798353195 -0.6929225921630859 1.410237550735474 -0.2155666798353195 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.6484687328338623 1.442898869514465 -0.05034679174423218 -0.6484687328338623 1.442898869514465 -0.05034679174423218 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6529207229614258 1.45041811466217 -0.05366069078445435 -0.6529207229614258 1.45041811466217 -0.05366069078445435 -0.6766313910484314 1.401006579399109 -0.2162990570068359 -0.6766313910484314 1.401006579399109 -0.2162990570068359 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6333166360855103 1.45330548286438 -0.05340726673603058 -0.6333166360855103 1.45330548286438 -0.05340726673603058 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6325675249099731 1.445207118988037 -0.04965006932616234 -0.6325675249099731 1.445207118988037 -0.04965006932616234 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6677297353744507 1.392238020896912 -0.2200373858213425 -0.6677297353744507 1.392238020896912 -0.2200373858213425 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6766144037246704 1.386852860450745 -0.2229033708572388 -0.6766144037246704 1.386852860450745 -0.2229033708572388 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.6133754849433899 1.452083706855774 -0.05322098359465599 -0.6133754849433899 1.452083706855774 -0.05322098359465599 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6164035201072693 1.444173455238342 -0.04900713264942169 -0.6164035201072693 1.444173455238342 -0.04900713264942169 -0.6550570130348206 1.385769128799439 -0.224215105175972 -0.6550570130348206 1.385769128799439 -0.224215105175972 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6611210703849793 1.378874778747559 -0.2274495214223862 -0.6611210703849793 1.378874778747559 -0.2274495214223862 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6015651226043701 1.439891576766968 -0.04822826012969017 -0.6015651226043701 1.439891576766968 -0.04822826012969017 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.6398611068725586 1.382240414619446 -0.228678435087204 -0.6398611068725586 1.382240414619446 -0.228678435087204 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6422072649002075 1.374526381492615 -0.232350692152977 -0.6422072649002075 1.374526381492615 -0.232350692152977 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5897339582443237 1.432587265968323 -0.04706352949142456 -0.5897339582443237 1.432587265968323 -0.04706352949142456 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5824712514877319 1.422901391983032 -0.04536456242203713 -0.5824712514877319 1.422901391983032 -0.04536456242203713 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.5822021961212158 1.401564002037048 -0.0403386652469635 -0.5822021961212158 1.401564002037048 -0.0403386652469635 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.5894622206687927 1.391803979873657 -0.03692591562867165 -0.5894622206687927 1.391803979873657 -0.03692591562867165 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5795128345489502 1.387503027915955 -0.04206120222806931 -0.5795128345489502 1.387503027915955 -0.04206120222806931 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.6008565425872803 1.383934259414673 -0.03299903497099876 -0.6008565425872803 1.383934259414673 -0.03299903497099876 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5935401320457459 1.3777996301651 -0.03782991692423821 -0.5935401320457459 1.3777996301651 -0.03782991692423821 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6152828931808472 1.378727078437805 -0.02869041077792645 -0.6152828931808472 1.378727078437805 -0.02869041077792645 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6113107800483704 1.371376752853394 -0.03312573954463005 -0.6113107800483704 1.371376752853394 -0.03312573954463005 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6310753226280212 1.368846535682678 -0.02815037220716476 -0.6310753226280212 1.368846535682678 -0.02815037220716476 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6313201785087585 1.376682281494141 -0.02416513673961163 -0.6313201785087585 1.376682281494141 -0.02416513673961163 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6508672833442688 1.370474815368652 -0.0231905784457922 -0.6508672833442688 1.370474815368652 -0.0231905784457922 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.6473941802978516 1.377981305122376 -0.01961001008749008 -0.6473941802978516 1.377981305122376 -0.01961001008749008 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.661943793296814 1.382484555244446 -0.01521891355514526 -0.661943793296814 1.382484555244446 -0.01521891355514526 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.668872058391571 1.376001477241516 -0.01832914911210537 -0.668872058391571 1.376001477241516 -0.01832914911210537 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6735398173332214 1.389763116836548 -0.01116631925106049 -0.6735398173332214 1.389763116836548 -0.01116631925106049 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6832011342048645 1.384974122047424 -0.01393519341945648 -0.6832011342048645 1.384974122047424 -0.01393519341945648 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.681041955947876 1.399080157279968 -0.007593415677547455 -0.681041955947876 1.399080157279968 -0.007593415677547455 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6958399415016174 1.409468173980713 -0.007031377404928207 -0.6958399415016174 1.409468173980713 -0.007031377404928207 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6929180026054382 1.422368407249451 -0.00469767302274704 -0.6929180026054382 1.422368407249451 -0.00469767302274704 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.681103527545929 1.420044422149658 -0.002224501222372055 -0.681103527545929 1.420044422149658 -0.002224501222372055 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.674067497253418 1.429614067077637 -0.000420156866312027 -0.674067497253418 1.429614067077637 -0.000420156866312027 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6840076446533203 1.434201598167419 -0.00309058278799057 -0.6840076446533203 1.434201598167419 -0.00309058278799057 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6626696586608887 1.43729043006897 0.0008590742945671082 -0.6626696586608887 1.43729043006897 0.0008590742945671082 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6699816584587097 1.443707466125488 -0.002117268741130829 -0.6699816584587097 1.443707466125488 -0.002117268741130829 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6482548713684082 1.442306041717529 0.001752506941556931 -0.6482548713684082 1.442306041717529 0.001752506941556931 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6522186994552612 1.449938297271729 -0.001617971807718277 -0.6522186994552612 1.449938297271729 -0.001617971807718277 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6324552297592163 1.452283263206482 -0.001388352364301682 -0.6324552297592163 1.452283263206482 -0.001388352364301682 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6322213411331177 1.444160461425781 0.002431094646453857 -0.6322213411331177 1.444160461425781 0.002431094646453857 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6323062181472778 1.447459578514099 -0.004692345857620239</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1518\" source=\"#ID1739\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1736\">\r\n\t\t\t\t\t<float_array count=\"4554\" id=\"ID1740\">-0.5353189689301536 0.6828703396715899 0.4971133680563867 -0.7116816668819402 0.7019417498003985 0.02805325134985364 -0.7372469264351943 0.3797266189146804 0.5588154116964603 0.7372469264351943 -0.3797266189146804 -0.5588154116964603 0.7116816668819402 -0.7019417498003985 -0.02805325134985364 0.5353189689301536 -0.6828703396715899 -0.4971133680563867 -0.7293845581637016 0.4062527308477669 0.5504151932778325 0.7293845581637016 -0.4062527308477669 -0.5504151932778325 -0.8551392002274356 0.1137071511555724 -0.5057742895901941 -0.8413516623732291 0.1893757458970763 -0.5062254508494508 0.8413516623732291 -0.1893757458970763 0.5062254508494508 0.8551392002274356 -0.1137071511555724 0.5057742895901941 -0.3217757869612445 0.832205408561372 0.4515467870405812 0.3217757869612445 -0.832205408561372 -0.4515467870405812 0.3800002390550608 -0.01453535679333304 0.9248721758821527 0.3792474588825147 -0.05516985565409254 0.9236490956842116 0.3750021875470372 0.0907887093952834 0.9225674878193333 -0.3750021875470372 -0.0907887093952834 -0.9225674878193333 -0.3792474588825147 0.05516985565409254 -0.9236490956842116 -0.3800002390550608 0.01453535679333304 -0.9248721758821527 -0.8189126874245672 -0.02916183642036883 0.5731767595355419 0.8189126874245672 0.02916183642036883 -0.5731767595355419 -0.8259665171436808 -0.2403013172063103 -0.5099358680328832 0.8259665171436808 0.2403013172063103 0.5099358680328832 -0.7524198665918472 0.4659225089093442 -0.4655969931706268 0.7524198665918472 -0.4659225089093442 0.4655969931706268 0.3666685901632206 -0.1470439171092801 0.9186578424140705 0.3567386434992287 -0.1797019643206095 0.9167577347661948 -0.3567386434992287 0.1797019643206095 -0.9167577347661948 -0.3666685901632206 0.1470439171092801 -0.9186578424140705 -0.4686152157660842 0.8829385217699244 0.02862422622966481 0.4686152157660842 -0.8829385217699244 -0.02862422622966481 0.3628037800051905 0.1115734467219724 0.9251620307819192 -0.3628037800051905 -0.1115734467219724 -0.9251620307819192 -0.8229383511352589 0.02580793656121492 0.5675442014867508 0.8229383511352589 -0.02580793656121492 -0.5675442014867508 -0.8318585706090238 -0.2056643422248446 -0.5154740505995754 0.8318585706090238 0.2056643422248446 0.5154740505995754 0.3131170613773171 -0.1234346884321168 -0.9416589528943586 0.2544879259100693 -0.3209843162467294 -0.9122526866442273 0.2994944615908431 -0.1347978860984816 -0.9445277112820946 -0.2994944615908431 0.1347978860984816 0.9445277112820946 -0.2544879259100693 0.3209843162467294 0.9122526866442273 -0.3131170613773171 0.1234346884321168 0.9416589528943586 0.1524219605567499 -0.4664428658503491 -0.8713200323861203 0.2471285876267311 -0.2985187141514338 -0.9218535884179179 -0.2471285876267311 0.2985187141514338 0.9218535884179179 -0.1524219605567499 0.4664428658503491 0.8713200323861203 0.3282794195216551 -0.2624290987257349 0.9073938455050947 -0.3282794195216551 0.2624290987257349 -0.9073938455050947 -0.122860978971227 0.8950334705384974 0.4287426576188154 0.122860978971227 -0.8950334705384974 -0.4287426576188154 0.5589821522530445 -0.6499000334403392 -0.5149455310970281 0.711230906598061 -0.7025125433725948 -0.02503445433534567 0.9359990946108151 -0.3517769230944942 -0.01259727216125266 -0.9359990946108151 0.3517769230944942 0.01259727216125266 -0.711230906598061 0.7025125433725948 0.02503445433534567 -0.5589821522530445 0.6499000334403392 0.5149455310970281 0.3329966026074757 0.2202533584349048 0.9168433458067001 -0.3329966026074757 -0.2202533584349048 -0.9168433458067001 0.3289736070380834 -0.8033560225578793 -0.4963823797158163 0.4661256861641913 -0.8841396442277655 -0.03199897190164542 -0.4661256861641913 0.8841396442277655 0.03199897190164542 -0.3289736070380834 0.8033560225578793 0.4963823797158163 -0.830657908451834 -0.5565950976711568 0.01446846138536951 0.830657908451834 0.5565950976711568 -0.01446846138536951 -0.6945189613429058 -0.5290913125569488 -0.4875508130563794 0.6945189613429058 0.5290913125569488 0.4875508130563794 0.3139216253142795 0.05128699424629939 -0.9480626864196382 -0.3139216253142795 -0.05128699424629939 0.9480626864196382 -0.5643116170852814 0.7140481388037558 -0.4143520897660429 0.5643116170852814 -0.7140481388037558 0.4143520897660429 0.1306455717262345 -0.8661952539451892 -0.4823251150740073 0.2464346718766853 -0.9684732639848411 -0.0364621645487298 -0.2464346718766853 0.9684732639848411 0.0364621645487298 -0.1306455717262345 0.8661952539451892 0.4823251150740073 0.3138444079746425 -0.2841739681712777 0.9059507952404677 -0.3138444079746425 0.2841739681712777 -0.9059507952404677 -0.2541056583663925 0.9666073562683737 0.03317428513242991 0.2541056583663925 -0.9666073562683737 -0.03317428513242991 0.959758131596603 -0.2806597881232694 -0.009716592242106387 -0.959758131596603 0.2806597881232694 0.009716592242106387 0.3220489042849751 0.2145040039181532 0.9221022370387829 -0.3220489042849751 -0.2145040039181532 -0.9221022370387829 -0.7616229201923672 -0.3651850671952123 0.5353227009340059 0.7616229201923672 0.3651850671952123 -0.5353227009340059 0.3167666671133447 0.09266765087129925 -0.9439658813155792 -0.3167666671133447 -0.09266765087129925 0.9439658813155792 0.9848212039371086 0.1734733232016412 0.005848282931174579 0.847430815686388 0.5305694661737671 0.01889587757122743 0.8283233395337939 0.5598615346411333 0.02086880956974355 -0.8283233395337939 -0.5598615346411333 -0.02086880956974355 -0.847430815686388 -0.5305694661737671 -0.01889587757122743 -0.9848212039371086 -0.1734733232016412 -0.005848282931174579 0.9931124951697394 0.1171183894367515 0.003294661359817383 -0.9931124951697394 -0.1171183894367515 -0.003294661359817383 0.0394079364567948 -0.5380843959287724 -0.8419692378003992 -0.0394079364567948 0.5380843959287724 0.8419692378003992 -0.06290531134253218 -0.8760067052885424 -0.4781790188772527 0.06290531134253218 0.8760067052885424 0.4781790188772527 0.2570799416314827 -0.3475640482872279 0.9017256433910189 -0.2570799416314827 0.3475640482872279 -0.9017256433910189 0.07303733031478342 0.905984810453543 0.4169617147987892 -0.07303733031478342 -0.905984810453543 -0.4169617147987892 0.2700418578432375 0.3209229036352437 0.9077917629803087 -0.2700418578432375 -0.3209229036352437 -0.9077917629803087 -0.07034752157042788 -0.5595950864454855 -0.8257751300656662 0.07034752157042788 0.5595950864454855 0.8257751300656662 -0.5872928368837237 -0.8093730014725578 -0.001571060906258563 0.5872928368837237 0.8093730014725578 0.001571060906258563 -0.5098775062504932 -0.7296513068775871 -0.4556686284918101 0.5098775062504932 0.7296513068775871 0.4556686284918101 0.2828682148995004 0.2426584319855039 -0.9279560649006541 -0.2828682148995004 -0.2426584319855039 0.9279560649006541 0.6057425454555282 0.795118949920031 0.02935684082329544 -0.6057425454555282 -0.795118949920031 -0.02935684082329544 -0.3711483318994795 0.8484508572864647 -0.377332821919982 0.3711483318994795 -0.8484508572864647 0.377332821919982 -0.1787653455178137 -0.5392253898805517 -0.822969580330928 0.1787653455178137 0.5392253898805517 0.822969580330928 0.03434743098001073 -0.9987511880523433 -0.03628110181770163 -0.03434743098001073 0.9987511880523433 0.03628110181770163 0.2512313522627127 -0.3570620712199921 0.8996607610295883 -0.2512313522627127 0.3570620712199921 -0.8996607610295883 -0.04873633665124259 0.9982743393439536 0.0327584019330816 0.04873633665124259 -0.9982743393439536 -0.0327584019330816 0.2699117572865568 0.2961754200666404 0.916202905380043 -0.2699117572865568 -0.2961754200666404 -0.916202905380043 -0.581601649632432 -0.6635404058683408 0.4705886217546181 0.581601649632432 0.6635404058683408 -0.4705886217546181 0.2686374406810328 0.2880646907886809 -0.9191586693194849 -0.2686374406810328 -0.2880646907886809 0.9191586693194849 0.5932766102188829 0.8044533907604631 0.02962441326314405 -0.5932766102188829 -0.8044533907604631 -0.02962441326314405 0.1919290632645986 0.3817694565981829 0.9041102348071842 0.2022111273747708 0.3531221073613152 0.9134634296229532 -0.2022111273747708 -0.3531221073613152 -0.9134634296229532 -0.1919290632645986 -0.3817694565981829 -0.9041102348071842 -0.2823946957298136 -0.4806677635384306 -0.8301877720845023 0.2823946957298136 0.4806677635384306 0.8301877720845023 -0.2505510817790791 -0.8378345458210682 -0.4850334310623727 0.2505510817790791 0.8378345458210682 0.4850334310623727 0.1747063599861972 -0.3953529339017232 0.9017614681475766 -0.1747063599861972 0.3953529339017232 -0.9017614681475766 0.2697748537168222 0.8648085303379074 0.4234710546859796 -0.2697748537168222 -0.8648085303379074 -0.4234710546859796 -0.1692423110097001 0.9177238739089977 -0.3593604477701434 0.1692423110097001 -0.9177238739089977 0.3593604477701434 -0.3502113437466198 -0.9365369152329918 -0.01583101756233706 0.3502113437466198 0.9365369152329918 0.01583101756233706 -0.3115292871716915 -0.8473652558897481 -0.4300251461777547 0.3115292871716915 0.8473652558897481 0.4300251461777547 0.205388827498093 0.406643352909858 -0.8902003218788382 -0.205388827498093 -0.406643352909858 0.8902003218788382 0.3625328255174533 0.9313572586384038 0.03381726192182619 -0.3625328255174533 -0.9313572586384038 -0.03381726192182619 0.108793985060722 0.4030955877714338 0.9086681550124938 -0.108793985060722 -0.4030955877714338 -0.9086681550124938 0.03205668071441394 0.9319483912854097 -0.3611711023906964 0.1550582238440486 0.9873627922470425 0.03273627505463083 -0.1550582238440486 -0.9873627922470425 -0.03273627505463083 -0.03205668071441394 -0.9319483912854097 0.3611711023906964 -0.1733323927131261 -0.9842540067933552 -0.03464003099837473 0.1733323927131261 0.9842540067933552 0.03464003099837473 0.1803893504148477 -0.4056766443530178 0.8960391411558898 -0.1803893504148477 0.4056766443530178 -0.8960391411558898 -0.3631078081931655 -0.8365023170060291 0.41038590774136 0.3631078081931655 0.8365023170060291 -0.41038590774136 0.1858264884282475 0.4347832369135452 -0.8811538192037793 -0.1858264884282475 -0.4347832369135452 0.8811538192037793 0.3566792268836834 0.933613511936929 0.03384877307158488 -0.3566792268836834 -0.933613511936929 -0.03384877307158488 0.1232315634891896 0.3821018256636007 0.9158668989457766 -0.1232315634891896 -0.3821018256636007 -0.9158668989457766 0.3718843601362071 0.9277760136118621 0.03055636190002758 -0.3718843601362071 -0.9277760136118621 -0.03055636190002758 -0.3768968519524143 -0.3788861319661591 -0.8452183516654629 0.3768968519524143 0.3788861319661591 0.8452183516654629 -0.4429178293437548 -0.7517581318586216 -0.4885524614960525 0.4429178293437548 0.7517581318586216 0.4885524614960525 0.08862115089179973 -0.4049990199475744 0.91001213478509 -0.08862115089179973 0.4049990199475744 -0.91001213478509 0.4722258847312988 0.7596897966544084 0.4470728426654047 -0.4722258847312988 -0.7596897966544084 -0.4470728426654047 -0.134938504780879 -0.9904778400910421 -0.02729923471610317 0.134938504780879 0.9904778400910421 0.02729923471610317 -0.1148107547558477 -0.9010139105177175 -0.4183209576939255 0.1148107547558477 0.9010139105177175 0.4183209576939255 0.1350521351926248 0.8787867419773857 -0.4577060005119932 -0.1350521351926248 -0.8787867419773857 0.4577060005119932 0.1391888030242485 0.9896178014931639 0.03582016304421101 -0.1391888030242485 -0.9896178014931639 -0.03582016304421101 0.02951624900057197 0.3883425462900116 0.9210422671006617 -0.02951624900057197 -0.3883425462900116 -0.9210422671006617 0.2379798019051767 0.8911011038891297 -0.3863993226349491 -0.2379798019051767 -0.8911011038891297 0.3863993226349491 -0.4018013786684738 -0.915489799739539 -0.02083455478219574 0.4018013786684738 0.915489799739539 0.02083455478219574 0.1000383512200405 -0.4249379089738234 0.899677776652358 -0.1000383512200405 0.4249379089738234 -0.899677776652358 -0.1492596146027678 -0.9164518185855611 0.3712649076600842 0.1492596146027678 0.9164518185855611 -0.3712649076600842 0.08635964884196243 0.5299307916689104 -0.8436322463568203 -0.08635964884196243 -0.5299307916689104 0.8436322463568203 0.03901238681598718 0.3769247126752178 0.9254219549209021 -0.03901238681598718 -0.3769247126752178 -0.9254219549209021 0.66763790654427 0.5690493336977597 0.4800442495888477 -0.66763790654427 -0.5690493336977597 -0.4800442495888477 0.6097889567518674 0.7922517439862796 0.02223965768998332 -0.6097889567518674 -0.7922517439862796 -0.02223965768998332 -0.4545744276476597 -0.2369390745980475 -0.8586163081711316 0.4545744276476597 0.2369390745980475 0.8586163081711316 -0.6358506402087751 -0.5907760021941187 -0.4966665668007316 0.6358506402087751 0.5907760021941187 0.4966665668007316 0.00749911142197426 -0.3776641182089101 0.9259122945211211 -0.00749911142197426 0.3776641182089101 -0.9259122945211211 0.06861230926749032 -0.9970217984127046 -0.03521199379300232 -0.06861230926749032 0.9970217984127046 0.03521199379300232 0.08052275145707243 -0.9028239222570414 -0.4224038966418208 -0.08052275145707243 0.9028239222570414 0.4224038966418208 -0.05901818176364425 0.8987960722577277 -0.4343759601029908 0.05901818176364425 -0.8987960722577277 0.4343759601029908 -0.07262520675025015 0.9967081587927398 0.03603367231452105 0.07262520675025015 -0.9967081587927398 -0.03603367231452105 -0.04179386715432833 0.3419093409135336 0.9388031078263212 0.04179386715432833 -0.3419093409135336 -0.9388031078263212 0.01503614499995169 -0.4057302007656598 0.913869202090867 -0.01503614499995169 0.4057302007656598 -0.913869202090867 0.4517132567859688 0.7788055852563449 -0.4352206268288938 -0.4517132567859688 -0.7788055852563449 0.4352206268288938 -0.6412872954209069 -0.7670508228513946 -0.01958672751474826 0.6412872954209069 0.7670508228513946 0.01958672751474826 0.05432148557558725 -0.9322541936396561 0.3577028021222869 -0.05432148557558725 0.9322541936396561 -0.3577028021222869 -0.02124807053412244 0.5780698800169537 -0.8157105695746265 0.02124807053412244 -0.5780698800169537 0.8157105695746265 -0.04350194301247607 0.3322406106058186 0.94219093479953 0.04350194301247607 -0.3322406106058186 -0.94219093479953 -0.06242001613278259 -0.3162789065065942 0.9466104768514747 0.06242001613278259 0.3162789065065942 -0.9466104768514747 0.8151773183089368 0.2813300280037586 0.5062996692257016 -0.8151773183089368 -0.2813300280037586 -0.5062996692257016 0.8494885713735113 0.5275888639950153 0.004376950335583665 -0.8494885713735113 -0.5275888639950153 -0.004376950335583665 -0.4986857171682205 -0.05461584421987939 -0.8650604979147801 0.4986857171682205 0.05461584421987939 0.8650604979147801 -0.843949667442519 -0.5361152936893975 -0.01814802182037343 0.843949667442519 0.5361152936893975 0.01814802182037343 0.2769529753733652 -0.9598229062639651 -0.04513355783489734 -0.2769529753733652 0.9598229062639651 0.04513355783489734 0.2862393451175762 -0.8449469473619248 -0.4518093552046329 -0.2862393451175762 0.8449469473619248 0.4518093552046329 -0.2515009257361038 0.8702961530422076 -0.4234759619551234 0.2515009257361038 -0.8702961530422076 0.4234759619551234 -0.2850039247627784 0.9578553119967536 0.03586034229360154 0.2850039247627784 -0.9578553119967536 -0.03586034229360154 -0.1022808584520593 0.264536745673741 0.9589363566903991 0.1022808584520593 -0.264536745673741 -0.9589363566903991 -0.8727572602942931 -0.4877882954168163 -0.01890353030404927 0.8727572602942931 0.4877882954168163 0.01890353030404927 -0.06500642786178341 -0.3441907809959636 0.9366466092470732 0.06500642786178341 0.3441907809959636 -0.9366466092470732 0.6576526325481181 0.5643559704775162 -0.4989943421411817 -0.6576526325481181 -0.5643559704775162 0.4989943421411817 -0.4964681475591983 -0.01406714647408659 -0.8679409506695802 0.4964681475591983 0.01406714647408659 0.8679409506695802 0.254427399178376 -0.8957836151161926 0.3644700446356216 -0.254427399178376 0.8957836151161926 -0.3644700446356216 -0.1346648842095394 0.5837574737799822 -0.8006825717891233 0.1346648842095394 -0.5837574737799822 0.8006825717891233 -0.1124521561141192 0.2448665363620736 0.9630134432889953 0.1124521561141192 -0.2448665363620736 -0.9630134432889953 -0.8819778059525112 0.007569424246116371 -0.4712301493153602 0.8819778059525112 -0.007569424246116371 0.4712301493153602 -0.1171381695292323 -0.229944623273741 0.9661284176893038 0.1171381695292323 0.229944623273741 -0.9661284176893038 0.859798158835566 -0.06609950503679232 0.5063378136154376 -0.859798158835566 0.06609950503679232 -0.5063378136154376 0.8025644541246544 0.1985618941639249 -0.5625508609553718 -0.8025644541246544 -0.1985618941639249 0.5625508609553718 -0.494378423462553 0.1452899853896314 -0.8570185497176601 0.494378423462553 -0.1452899853896314 0.8570185497176601 0.5011239244892839 -0.8639969818054694 -0.0488265064846754 -0.5011239244892839 0.8639969818054694 0.0488265064846754 0.4954003925555833 -0.7178949844613637 -0.4890861297777648 -0.4954003925555833 0.7178949844613637 0.4890861297777648 -0.4523293940591098 0.7826867124956889 -0.4275507330748126 0.4523293940591098 -0.7826867124956889 0.4275507330748126 -0.5159942670472942 0.8561861757210363 0.02636567614366192 0.5159942670472942 -0.8561861757210363 -0.02636567614366192 -0.1456472171251264 0.1552833927624011 0.9770741814600896 0.1456472171251264 -0.1552833927624011 -0.9770741814600896 -0.9975822073775493 -0.06940109617524032 -0.003636945615651953 0.9975822073775493 0.06940109617524032 0.003636945615651953 -0.129892882441727 -0.2399529132593199 0.9620553198799667 0.129892882441727 0.2399529132593199 -0.9620553198799667 0.8574507231435583 -0.02494746157140876 0.513960972780747 -0.8574507231435583 0.02494746157140876 -0.513960972780747 0.7992126797112316 0.2325406128191567 -0.5542417847640897 -0.7992126797112316 -0.2325406128191567 0.5542417847640897 0.4545739921537308 -0.8001041289772173 0.3914024379727705 -0.4545739921537308 0.8001041289772173 -0.3914024379727705 -0.2485432565694079 0.5432058971079742 -0.8019685797841424 0.2485432565694079 -0.5432058971079742 0.8019685797841424 -0.1547000786466975 0.122265600892958 0.9803667724402889 0.1547000786466975 -0.122265600892958 -0.9803667724402889 -0.43865510712441 0.3279444950865583 -0.8366804080030169 0.43865510712441 -0.3279444950865583 0.8366804080030169 -0.8139420852380522 0.3699313426435741 -0.4479387051910715 0.8139420852380522 -0.3699313426435741 0.4479387051910715 -0.1540751705135024 -0.1214397525775982 0.9805678091417884 0.1540751705135024 0.1214397525775982 -0.9805678091417884 0.7859497821586822 -0.3952523166457131 0.4754561453077631 -0.7859497821586822 0.3952523166457131 -0.4754561453077631 0.9306717204499473 -0.3631548007207968 -0.04437047969285109 -0.9306717204499473 0.3631548007207968 0.04437047969285109 0.7418183026015727 -0.6687046187249083 -0.05039582146663192 -0.7418183026015727 0.6687046187249083 0.05039582146663192 0.6931794090547595 -0.4794791752210309 -0.5381468455652734 -0.6931794090547595 0.4794791752210309 0.5381468455652734 -0.6572340711368572 0.6157650527922096 -0.4345995576351638 0.6572340711368572 -0.6157650527922096 0.4345995576351638 -0.751992946766318 0.6588005018606172 0.02210218907503439 0.751992946766318 -0.6588005018606172 -0.02210218907503439 -0.1709436353647587 0.02372407100715416 0.9849951482028365 0.1709436353647587 -0.02372407100715416 -0.9849951482028365 0.8069895019006633 -0.1634979180636875 -0.5674824883738342 -0.8069895019006633 0.1634979180636875 0.5674824883738342 -0.9307864040379604 0.3653393253321558 0.01280028999389669 0.9307864040379604 -0.3653393253321558 -0.01280028999389669 -0.1665198172244957 -0.1041882674261949 0.9805182075832394 0.1665198172244957 0.1041882674261949 -0.9805182075832394 0.6462009509831134 -0.6271481419195555 0.4348672659966132 -0.6462009509831134 0.6271481419195555 -0.4348672659966132 -0.3568877880871619 0.4535396019386854 -0.8166596207647049 0.3568877880871619 -0.4535396019386854 0.8166596207647049 -0.1683220456462901 -0.008533414432395442 0.9856951200992998 0.1683220456462901 0.008533414432395442 -0.9856951200992998 0.7170105024864666 -0.6952010685266518 -0.05090592935510006 -0.7170105024864666 0.6952010685266518 0.05090592935510006 -0.3464687979461342 0.4660128317092822 -0.8141200235420186 0.3464687979461342 -0.4660128317092822 0.8141200235420186 -0.6354932974717718 0.6397462620713476 -0.4322880856953994 0.6354932974717718 -0.6397462620713476 0.4322880856953994 -0.168577867003286 0.005739587349743737 0.9856716288367425 0.168577867003286 -0.005739587349743737 -0.9856716288367425 0.6279427851002537 -0.6490591178411477 0.4294299945134337 -0.6279427851002537 0.6490591178411477 -0.4294299945134337 0.7973154094603279 -0.3587566901921653 0.4853676699981904 -0.7973154094603279 0.3587566901921653 -0.4853676699981904 0.8133779826593525 -0.1226121451898211 -0.5686673185412999 -0.8133779826593525 0.1226121451898211 0.5686673185412999 -0.8277402359618674 0.3350628304934467 -0.450087770764228 0.8277402359618674 -0.3350628304934467 0.450087770764228 -0.9459898466309302 0.3239974634609624 0.0113513762183776 0.9459898466309302 -0.3239974634609624 -0.0113513762183776 -0.1643183079610741 -0.119171920733218 0.9791820806048104 0.1643183079610741 0.119171920733218 -0.9791820806048104 0.6747170807039695 -0.5099989790625136 -0.533533412600848 -0.6747170807039695 0.5099989790625136 0.533533412600848 -0.725972627130354 0.6873611937007985 0.02232339695622613 0.725972627130354 -0.6873611937007985 -0.02232339695622613 -0.1700308140684207 0.03942891935419392 0.984649624275453 0.1700308140684207 -0.03942891935419392 -0.984649624275453 0.7985834038097226 -0.3635569042956527 0.4796779383071929 -0.7985834038097226 0.3635569042956527 -0.4796779383071929 0.800566496546902 -0.1772960399466202 -0.5724154075720408 -0.800566496546902 0.1772960399466202 0.5724154075720408 -0.446245637034375 0.3107982363495508 -0.8392075355415926 0.446245637034375 -0.3107982363495508 0.8392075355415926 -0.1512172839060151 -0.1336391484561072 0.9794252963080001 0.1512172839060151 0.1336391484561072 -0.9794252963080001 0.4336525392393297 -0.8129875064606352 0.3885830536065618 -0.4336525392393297 0.8129875064606352 -0.3885830536065618 0.4768952456949725 -0.8776622754333116 -0.04774782628302089 -0.4768952456949725 0.8776622754333116 0.04774782628302089 -0.2380118979020678 0.552806908475288 -0.7985955537060361 0.2380118979020678 -0.552806908475288 0.7985955537060361 -0.4293463423448363 0.7959637255735328 -0.4267358268135128 0.4293463423448363 -0.7959637255735328 0.4267358268135128 -0.1533145387346087 0.1385497839304223 0.9784163784327343 0.1533145387346087 -0.1385497839304223 -0.9784163784327343 0.8569334536926627 0.01557625494484925 0.5151916499946968 -0.8569334536926627 -0.01557625494484925 -0.5151916499946968 0.7895676334283633 0.2718021557206546 -0.550187731949685 -0.7895676334283633 -0.2718021557206546 0.550187731949685 -0.8795852430685808 -0.0329580402854965 -0.4745983225386761 0.8795852430685808 0.0329580402854965 0.4745983225386761 -0.9931778911233629 -0.1165080322167977 -0.004853350669279085 0.9931778911233629 0.1165080322167977 0.004853350669279085 -0.1241290899677848 -0.2521934869959305 0.9596824548467078 0.1241290899677848 0.2521934869959305 -0.9596824548467078 -0.1439966388252694 0.1695488524553405 0.9749452059670339 0.1439966388252694 -0.1695488524553405 -0.9749452059670339 0.4731664328371595 -0.736776185545258 -0.4829848644104051 -0.4731664328371595 0.736776185545258 0.4829848644104051 -0.4914489871680581 0.8706058050981024 0.02287848642229128 0.4914489871680581 -0.8706058050981024 -0.02287848642229128 0.8609412706265437 -0.02970954024259701 0.5078360677920839 -0.8609412706265437 0.02970954024259701 -0.5078360677920839 0.7938613775106779 0.2406491885984124 -0.5584550844282598 -0.7938613775106779 -0.2406491885984124 0.5584550844282598 -0.4981259669748733 0.1224026569180195 -0.8584218721612101 0.4981259669748733 -0.1224026569180195 0.8584218721612101 -0.1121252230112493 -0.2398226420513322 0.9643199856500934 0.1121252230112493 0.2398226420513322 -0.9643199856500934 -0.1063043294759756 0.2553976401196332 0.9609742113896634 0.1063043294759756 -0.2553976401196332 -0.9609742113896634 0.2334684884898862 -0.9020954626144305 0.3629273222185187 -0.2334684884898862 0.9020954626144305 -0.3629273222185187 0.2546896491755812 -0.9661216117807919 -0.04173983532435711 -0.2546896491755812 0.9661216117807919 0.04173983532435711 -0.1226026292931632 0.585552722073672 -0.8013093066740932 0.1226026292931632 -0.585552722073672 0.8013093066740932 -0.2322472405560263 0.8745440311703633 -0.4257158169464715 0.2322472405560263 -0.8745440311703633 0.4257158169464715 0.8298662567632869 0.5578930055353653 0.008797173432836682 -0.8298662567632869 -0.5578930055353653 -0.008797173432836682 0.6381703126544575 0.592111941513551 -0.4920793642935712 -0.6381703126544575 -0.592111941513551 0.4920793642935712 -0.7845248083818697 -0.3705894045310878 -0.4971763452565743 0.7845248083818697 0.3705894045310878 0.4971763452565743 -0.8530929822079671 -0.52099985370008 -0.02813389685081899 0.8530929822079671 0.52099985370008 0.02813389685081899 -0.05741992810478202 -0.3531132626594803 0.9338168854708177 0.05741992810478202 0.3531132626594803 -0.9338168854708177 -0.264185815821361 0.9638994062974804 0.03322332400839634 0.264185815821361 -0.9638994062974804 -0.03322332400839634 -0.09618190820093919 0.2735306385631074 0.9570423346446514 0.09618190820093919 -0.2735306385631074 -0.9570423346446514 0.2628326176968178 -0.8574330901829026 -0.4424110203578083 -0.2628326176968178 0.8574330901829026 0.4424110203578083 0.8054401400841557 0.3138185242718401 0.502776406134039 -0.8054401400841557 -0.3138185242718401 -0.502776406134039 -0.501200536774284 -0.07684651976347012 -0.861912196419921 0.501200536774284 0.07684651976347012 0.861912196419921 -0.05593971998397868 -0.3240611364504881 0.9443808170280313 0.05593971998397868 0.3240611364504881 -0.9443808170280313 -0.03897942897021398 0.8991737147912199 -0.4358523084092979 0.03897942897021398 -0.8991737147912199 0.4358523084092979 -0.03524905886950984 0.3387172216289925 0.9402277105152507 0.03524905886950984 -0.3387172216289925 -0.9402277105152507 0.03383327999562884 -0.9336000909487275 0.3567158243549972 -0.03383327999562884 0.9336000909487275 -0.3567158243549972 0.0479021511982165 -0.998254380176327 -0.03454817461690651 -0.0479021511982165 0.998254380176327 0.03454817461690651 -0.009891742364935379 0.5749528165630037 -0.8181267702252841 0.009891742364935379 -0.5749528165630037 0.8181267702252841 0.5854825862187838 0.8104134846393168 0.02097915988127646 -0.5854825862187838 -0.8104134846393168 -0.02097915988127646 0.434067993827172 0.7959996662965257 -0.4218643241501631 -0.434067993827172 -0.7959996662965257 0.4218643241501631 -0.6153609956428084 -0.6092809005341072 -0.5001076177042686 0.6153609956428084 0.6092809005341072 0.5001076177042686 -0.6198781599184149 -0.7840896173444694 -0.03089561180432931 0.6198781599184149 0.7840896173444694 0.03089561180432931 0.02408235691846478 -0.4097166028327391 0.9118949201791022 -0.02408235691846478 0.4097166028327391 -0.9118949201791022 -0.05033591546484884 0.9980440499490416 0.03707249621526213 0.05033591546484884 -0.9980440499490416 -0.03707249621526213 -0.03482879739876794 0.3480452959611305 0.9368305219361102 0.03482879739876794 -0.3480452959611305 -0.9368305219361102 0.06078628308626855 -0.9051840193303721 -0.4206505900833479 -0.06078628308626855 0.9051840193303721 0.4206505900833479 0.648217847914167 0.6029108452383217 0.4650936834010306 -0.648217847914167 -0.6029108452383217 -0.4650936834010306 -0.4478877733719995 -0.2541595320630561 -0.8572044532813398 0.4478877733719995 0.2541595320630561 0.8572044532813398 0.01557869864805954 -0.3810414790504169 0.9244266847032833 -0.01557869864805954 0.3810414790504169 -0.9244266847032833 0.09715697212672433 0.5223084558067829 -0.8472038714264122 -0.09715697212672433 -0.5223084558067829 0.8472038714264122 0.1553565177626282 0.8736758638857383 -0.4610366983789674 -0.1553565177626282 -0.8736758638857383 0.4610366983789674 0.04774289829217883 0.3792087845578838 0.9240786294340948 -0.04774289829217883 -0.3792087845578838 -0.9240786294340948 -0.1710229132487364 -0.9112131171823146 0.3747556780341089 0.1710229132487364 0.9112131171823146 -0.3747556780341089 -0.1565797064201739 -0.9873287205753677 -0.02578358129468785 0.1565797064201739 0.9873287205753677 0.02578358129468785 0.3468281485629135 0.9374124389299637 0.03111518445708742 -0.3468281485629135 -0.9374124389299637 -0.03111518445708742 0.2152227048684301 0.8989314492511036 -0.3815775633556394 -0.2152227048684301 -0.8989314492511036 0.3815775633556394 -0.422906601071092 -0.7599157768747203 -0.4936375379034566 0.422906601071092 0.7599157768747203 0.4936375379034566 -0.377041447076373 -0.9255427595003252 -0.03479004919625452 0.377041447076373 0.9255427595003252 0.03479004919625452 0.1086249523253039 -0.4243391732106769 0.8989643406783191 -0.1086249523253039 0.4243391732106769 -0.8989643406783191 -0.1350243989572021 -0.8980221998058066 -0.4187177334938018 0.1350243989572021 0.8980221998058066 0.4187177334938018 0.1612344870590588 0.9862852115314621 0.03528344792025651 -0.1612344870590588 -0.9862852115314621 -0.03528344792025651 0.03730783496796066 0.3914303137574686 0.9194511596173736 -0.03730783496796066 -0.3914303137574686 -0.9194511596173736 0.4512722265729608 0.7735778610677042 0.4448939990489849 -0.4512722265729608 -0.7735778610677042 -0.4448939990489849 -0.3680378476573901 -0.3929392604520207 -0.8427021302258199 0.3680378476573901 0.3929392604520207 0.8427021302258199 0.09728700059972795 -0.405499946012708 0.9089032034809864 -0.09728700059972795 0.405499946012708 -0.9089032034809864 -0.3736452978695597 -0.9274591404343351 -0.0144476366500685 0.3736452978695597 0.9274591404343351 0.0144476366500685 0.1954704969969504 0.4220554389144019 -0.8852460060833579 -0.1954704969969504 -0.4220554389144019 0.8852460060833579 0.3804125365405834 0.9242038214090115 0.03366895507346956 -0.3804125365405834 -0.9242038214090115 -0.03366895507346956 0.1318310967062573 0.3805434644254365 0.9153181051548757 -0.1318310967062573 -0.3805434644254365 -0.9153181051548757 -0.3857750282049133 -0.8236703394848209 0.4156257925904723 0.3857750282049133 0.8236703394848209 -0.4156257925904723 0.133803156203462 0.9904540603065167 0.03312808192948819 -0.133803156203462 -0.9904540603065167 -0.03312808192948819 0.01112162573014972 0.932918757925959 -0.3599151296500387 -0.01112162573014972 -0.932918757925959 0.3599151296500387 -0.2325374771575537 -0.8441249328219719 -0.4830935929046272 0.2325374771575537 0.8441249328219719 0.4830935929046272 -0.1545310923684629 -0.9873169013180834 -0.03640711280872882 0.1545310923684629 0.9873169013180834 0.03640711280872882 0.1883975201061494 -0.4022503373112764 0.89593584622495 -0.1883975201061494 0.4022503373112764 -0.89593584622495 -0.3322803417933081 -0.8385545505459972 -0.431759238715656 0.3322803417933081 0.8385545505459972 0.431759238715656 0.2152734814352987 0.3916917509483593 -0.8945584946943014 -0.2152734814352987 -0.3916917509483593 0.8945584946943014 0.3868386225116456 0.9215265932979312 0.0338322032685134 -0.3868386225116456 -0.9215265932979312 -0.0338322032685134 0.1173933242861763 0.4026912250949326 0.9077767262078177 -0.1173933242861763 -0.4026912250949326 -0.9077767262078177 0.2489647452821473 0.8717144270282413 0.4220551069675863 -0.2489647452821473 -0.8717144270282413 -0.4220551069675863 -0.2718742560936834 -0.4882450598316793 -0.8292774869869953 0.2718742560936834 0.4882450598316793 0.8292774869869953 0.1836766769243425 -0.3924427081114895 0.901250020362913 -0.1836766769243425 0.3924427081114895 -0.901250020362913 -0.6033486848119686 -0.6385057915997583 0.4777873152661486 0.6033486848119686 0.6385057915997583 -0.4777873152661486 -0.613133194869655 -0.7899793293964897 0.000586920098347499 0.613133194869655 0.7899793293964897 -0.000586920098347499 0.2753573485624073 0.269490624296329 -0.9227963664910346 -0.2753573485624073 -0.269490624296329 0.9227963664910346 0.6186599220804722 0.7850965417642933 0.02972071535362874 -0.6186599220804722 -0.7850965417642933 -0.02972071535362874 0.2101194044082203 0.348677204744304 0.913386031633303 -0.2101194044082203 -0.348677204744304 -0.913386031633303 -0.06459543488668709 0.9973987985734438 0.03198540911181907 0.06459543488668709 -0.9973987985734438 -0.03198540911181907 -0.1834693850567989 0.9148456478580954 -0.3597171462996748 0.1834693850567989 -0.9148456478580954 0.3597171462996748 -0.04704796442226061 -0.8766443618860301 -0.4788331147875603 0.04704796442226061 0.8766443618860301 0.4788331147875603 0.05242499028212754 -0.9979360278861268 -0.03708509998339386 -0.05242499028212754 0.9979360278861268 0.03708509998339386 0.2558833332126828 -0.3504308325034475 0.9009561317927238 -0.2558833332126828 0.3504308325034475 -0.9009561317927238 0.2006801611871336 0.3777280010185098 0.9039076447029677 -0.2006801611871336 -0.3777280010185098 -0.9039076447029677 -0.5305646299865623 -0.7131920398338357 -0.4581029226329765 0.5305646299865623 0.7131920398338357 0.4581029226329765 0.2881041820876135 0.2233323426540353 -0.9311920559091385 -0.2881041820876135 -0.2233323426540353 0.9311920559091385 0.6320379801169027 0.7743845161625741 0.02926794863671614 -0.6320379801169027 -0.7743845161625741 -0.02926794863671614 0.05520749936104614 0.9079850299239638 0.415349632777349 -0.05520749936104614 -0.9079850299239638 -0.415349632777349 -0.1693070499459147 -0.5434446410981264 -0.8221940433379094 0.1693070499459147 0.5434446410981264 0.8221940433379094 0.2624175750312578 -0.3400271074477818 0.9030606748803808 -0.2624175750312578 0.3400271074477818 -0.9030606748803808 0.2784905568168335 0.2831290588019411 0.9177586533646944 -0.2784905568168335 -0.2831290588019411 -0.9177586533646944 -0.7799975549569794 -0.3127583210905691 0.5420203380406886 0.7799975549569794 0.3127583210905691 -0.5420203380406886 -0.8613574413193473 -0.5077569331240402 0.01569251886269644 0.8613574413193473 0.5077569331240402 -0.01569251886269644 0.3204140413190193 0.06508380150322665 -0.9450391213635034 -0.3204140413190193 -0.06508380150322665 0.9450391213635034 0.8570042708707975 0.5149543685538287 0.01912270944559269 -0.8570042708707975 -0.5149543685538287 -0.01912270944559269 -0.2668350307977969 0.9632227108355886 0.03163977986141616 0.2668350307977969 -0.9632227108355886 -0.03163977986141616 -0.3847975276529873 0.8412080114665909 -0.3798683247607947 0.3847975276529873 -0.8412080114665909 0.3798683247607947 0.1463569553225811 -0.8636853266535993 -0.4823145220206099 -0.1463569553225811 0.8636853266535993 0.4823145220206099 0.2615119302468758 -0.9645779176513866 -0.03465474163615081 -0.2615119302468758 0.9645779176513866 0.03465474163615081 0.312813937715214 -0.2727711947504667 0.909803998499405 -0.312813937715214 0.2727711947504667 -0.909803998499405 0.8772392349435124 0.4797279675852498 0.01767489157665823 -0.8772392349435124 -0.4797279675852498 -0.01767489157665823 0.2801739029134954 0.3069287177025624 0.9095588746066304 -0.2801739029134954 -0.3069287177025624 -0.9095588746066304 -0.7175182984891687 -0.493062063844748 -0.4919931834185976 0.7175182984891687 0.493062063844748 0.4919931834185976 0.3153872024323705 0.02589512471056812 -0.9486096958486705 -0.3153872024323705 -0.02589512471056812 0.9486096958486705 -0.1392729079951383 0.8940030201217805 0.4258657735856609 0.1392729079951383 -0.8940030201217805 -0.4258657735856609 -0.06132960783264231 -0.559245999409194 -0.826730059540541 0.06132960783264231 0.559245999409194 0.826730059540541 0.3280053829650535 -0.2498508836382989 0.9110362257841945 -0.3280053829650535 0.2498508836382989 -0.9110362257841945 0.9954166754633305 0.09554236411270736 0.004159190941202639 -0.9954166754633305 -0.09554236411270736 -0.004159190941202639 0.3316023839629258 0.1947600294281073 0.9230971725052932 -0.3316023839629258 -0.1947600294281073 -0.9230971725052932 -0.817567595914628 0.09710393958585177 0.5675861617651391 0.817567595914628 -0.09710393958585177 -0.5675861617651391 -0.845892723795817 -0.1331824473670872 -0.5164570994212462 0.845892723795817 0.1331824473670872 0.5164570994212462 0.3083737805748481 -0.1573865694169123 -0.9381551466687964 -0.3083737805748481 0.1573865694169123 0.9381551466687964 -0.49906066751783 0.8659886361325957 0.03165647210073535 0.49906066751783 -0.8659886361325957 -0.03165647210073535 -0.595683679261985 0.6858494732127083 -0.4180567597285746 0.595683679261985 -0.6858494732127083 0.4180567597285746 0.3620936228730396 -0.7880808320770243 -0.4978120231447428 -0.3620936228730396 0.7880808320770243 0.4978120231447428 0.4980653832134243 -0.8665764896036617 -0.03124198634305158 -0.4980653832134243 0.8665764896036617 0.03124198634305158 0.3599605548031149 -0.1644806461059633 0.9183542432212084 -0.3599605548031149 0.1644806461059633 -0.9183542432212084 0.2943113679946609 -0.1612759056071542 -0.9420036629120419 -0.2943113679946609 0.1612759056071542 0.9420036629120419 0.9995125382383325 0.03116340676367468 0.001878292641629105 -0.9995125382383325 -0.03116340676367468 -0.001878292641629105 0.3430705686096357 0.1961097339489665 0.9186095782237014 -0.3430705686096357 -0.1961097339489665 -0.9186095782237014 -0.817429378877535 0.04638033217416691 0.5741585803027777 0.817429378877535 -0.04638033217416691 -0.5741585803027777 -0.8407811832775961 -0.1768953411198223 -0.5116591053977513 0.8407811832775961 0.1768953411198223 0.5116591053977513 -0.35129808944451 0.817004074140153 0.457267968691257 0.35129808944451 -0.817004074140153 -0.457267968691257 0.05310044443485681 -0.5295514525895975 -0.8466141989484161 -0.05310044443485681 0.5295514525895975 0.8466141989484161 0.371910903977818 -0.1265529056336114 0.9196013492693953 -0.371910903977818 0.1265529056336114 -0.9196013492693953 0.2430188581667099 -0.3409755324468221 -0.9081175699478317 -0.2430188581667099 0.3409755324468221 0.9081175699478317 0.9393103414085213 -0.3428645216659327 -0.01183225700355211 -0.9393103414085213 0.3428645216659327 0.01183225700355211 0.3671618082724976 0.09387191368893687 0.9254081641991531 -0.3671618082724976 -0.09387191368893687 -0.9254081641991531 -0.710551092386904 0.4479071478781239 0.5426751624936063 0.710551092386904 -0.4479071478781239 -0.5426751624936063 -0.8322539404838799 0.2410568820350278 -0.4992443872219347 0.8322539404838799 -0.2410568820350278 0.4992443872219347 -0.7492711674649847 0.6617218743863794 0.02677458803110484 0.7492711674649847 -0.6617218743863794 -0.02677458803110484 -0.7717817241406854 0.4268254570173437 -0.4713523093444719 0.7717817241406854 -0.4268254570173437 0.4713523093444719 0.170483809089675 -0.4188156083364765 -0.8919241879509842 -0.170483809089675 0.4188156083364765 0.8919241879509842 0.7457553687214293 -0.6658114120340799 -0.02332581463421711 -0.7457553687214293 0.6658114120340799 0.02332581463421711 0.3833096998644326 -0.03329288471623132 0.9230196410787314 -0.3833096998644326 0.03329288471623132 -0.9230196410787314 -0.8487259779749151 0.1691092802598101 -0.501065131136196 0.8487259779749151 -0.1691092802598101 0.501065131136196 0.2375776990483421 -0.3172714586584776 -0.9180934911192963 -0.2375776990483421 0.3172714586584776 0.9180934911192963 0.9142794687668824 -0.4048141260264062 -0.01478432821686986 -0.9142794687668824 0.4048141260264062 0.01478432821686986 0.3773359827893207 0.07296130221177047 0.923197814377818 -0.3773359827893207 -0.07296130221177047 -0.923197814377818 -0.71627631917822 0.4292064200544956 0.5502091271221374 0.71627631917822 -0.4292064200544956 -0.5502091271221374 -0.563440059942193 0.6543362690745136 0.5043603333193283 0.563440059942193 -0.6543362690745136 -0.5043603333193283 0.1654907986919666 -0.4499909829468489 -0.8775653313656048 -0.1654907986919666 0.4499909829468489 0.8775653313656048 0.7849570711114606 -0.6191700521832394 -0.02169891682831128 -0.7849570711114606 0.6191700521832394 0.02169891682831128 0.3812310444774221 0.001923529054748386 0.9244777935475949 -0.3812310444774221 -0.001923529054748386 -0.9244777935475949 -0.706244167523754 0.7074598653524543 0.02682749996118028 0.706244167523754 -0.7074598653524543 -0.02682749996118028 0.1468982078016113 -0.4681795663506381 -0.8713373687593129 -0.1468982078016113 0.4681795663506381 0.8713373687593129 0.5453458991786713 -0.6596964530242664 -0.5171058306731888 -0.5453458991786713 0.6596964530242664 0.5171058306731888 0.3801228128996285 -0.0195318704039094 0.9247297730428056 -0.3801228128996285 0.0195318704039094 -0.9247297730428056 -0.5268314951105831 0.6908844891673766 0.4951032199324509 0.5268314951105831 -0.6908844891673766 -0.4951032199324509 -0.7478765392265949 0.3581085305286898 0.5589623980528871 0.7478765392265949 -0.3581085305286898 -0.5589623980528871 -0.8574561927620363 0.09222928633258869 -0.5062238993139449 0.8574561927620363 -0.09222928633258869 0.5062238993139449 0.2503982173729226 -0.2899535615827029 -0.9237032341948189 -0.2503982173729226 0.2899535615827029 0.9237032341948189 0.9458582625252803 -0.3243810247306563 -0.01136213040530748 -0.9458582625252803 0.3243810247306563 0.01136213040530748 0.3740624146983042 0.1012565533149434 0.9218592193609889 -0.3740624146983042 -0.1012565533149434 -0.9218592193609889 -0.745636455100407 0.4794183673176139 -0.462800503353024 0.745636455100407 -0.4794183673176139 0.462800503353024 0.7019971799635735 -0.711598225048078 -0.02877369339544687 -0.7019971799635735 0.711598225048078 0.02877369339544687 0.3797672618496636 -0.05575662695424759 0.9234002519914611 -0.3797672618496636 0.05575662695424759 -0.9234002519914611 -0.7412895916953542 0.3839107668710773 0.5505472407746644 0.7412895916953542 -0.3839107668710773 -0.5505472407746644 -0.8464357023243537 0.1648019192866333 -0.5063466492731238 0.8464357023243537 -0.1648019192866333 0.5063466492731238 0.2584249755419185 -0.308893984350796 -0.9153147209829244 -0.2584249755419185 0.308893984350796 0.9153147209829244 0.9667076585006691 -0.2557249669506977 -0.009002459342761676 -0.9667076585006691 0.2557249669506977 0.009002459342761676 0.3621324315713503 0.1188542361564693 0.9245181299206 -0.3621324315713503 -0.1188542361564693 -0.9245181299206 -0.319828480820247 0.8330315432288135 0.4514069016331435 0.319828480820247 -0.8330315432288135 -0.4514069016331435 -0.467388207130944 0.8835831911143512 0.02879250275856144 0.467388207130944 -0.8835831911143512 -0.02879250275856144 0.03704287157454465 -0.5386864577944474 -0.8416915859472416 -0.03704287157454465 0.5386864577944474 0.8416915859472416 0.3259175095422821 -0.8059100577942621 -0.4942537361718227 -0.3259175095422821 0.8059100577942621 0.4942537361718227 0.3683376420512646 -0.1471633872619588 0.917970761461225 -0.3683376420512646 0.1471633872619588 -0.917970761461225 -0.8187865510945885 -0.04530477039692678 0.5723076633471812 0.8187865510945885 0.04530477039692678 -0.5723076633471812 -0.8222367497664668 -0.2530950633661906 -0.5097740835243987 0.8222367497664668 0.2530950633661906 0.5097740835243987 0.3007567281968733 -0.1278839000026509 -0.9450878787522481 -0.3007567281968733 0.1278839000026509 0.9450878787522481 0.9912244872234244 0.1320756401905205 0.005480985032222161 -0.9912244872234244 -0.1320756401905205 -0.005480985032222161 0.333509771844488 0.2262200175126377 0.9152025654251738 -0.333509771844488 -0.2262200175126377 -0.9152025654251738 0.3572217274096596 -0.1813045293836095 0.9162539522924015 -0.3572217274096596 0.1813045293836095 -0.9162539522924015 -0.565300419429448 0.7136719270249551 -0.4136518057127 0.565300419429448 -0.7136719270249551 0.4136518057127 0.4589697805821287 -0.8877956677493337 -0.03414077969096929 -0.4589697805821287 0.8877956677493337 0.03414077969096929 -0.8236095268115204 0.01010747496905179 0.5670671797018883 0.8236095268115204 -0.01010747496905179 -0.5670671797018883 -0.8284159133026785 -0.2197540306626502 -0.5152040766476993 0.8284159133026785 0.2197540306626502 0.5152040766476993 0.3143300407786073 -0.1151558513428136 -0.9423034306239319 -0.3143300407786073 0.1151558513428136 0.9423034306239319 0.9814083768292785 0.1917744503380455 0.007756164442642895 -0.9814083768292785 -0.1917744503380455 -0.007756164442642895 0.3229203741173248 0.2179533747215781 0.9209879252343119 -0.3229203741173248 -0.2179533747215781 -0.9209879252343119 0.3242541706614489 -0.2627750901835281 0.9087400534738713 -0.3242541706614489 0.2627750901835281 -0.9087400534738713 -0.1173928708922645 0.8977239858185802 0.4246299084493154 0.1173928708922645 -0.8977239858185802 -0.4246299084493154 -0.2470209679738535 0.9685272980215588 0.03058617936779985 0.2470209679738535 -0.9685272980215588 -0.03058617936779985 -0.07434429498979471 -0.5620855008319186 -0.8237310335036563 0.07434429498979471 0.5620855008319186 0.8237310335036563 0.1220193310967036 -0.8647783357873065 -0.4871033902485693 -0.1220193310967036 0.8647783357873065 0.4871033902485693 -0.8216091760256223 -0.5698910467663091 0.01351135396984268 0.8216091760256223 0.5698910467663091 -0.01351135396984268 -0.6877399972820246 -0.5387620609649704 -0.4865687390321107 0.6877399972820246 0.5387620609649704 0.4865687390321107 0.3137535991503929 0.05872408916709184 -0.9476867416882385 -0.3137535991503929 -0.05872408916709184 0.9476867416882385 0.8392336626659065 0.5433720470069278 0.02082493649135057 -0.8392336626659065 -0.5433720470069278 -0.02082493649135057 0.2680747318234752 0.3235036174975843 0.9074587305347547 -0.2680747318234752 -0.3235036174975843 -0.9074587305347547 0.2377472828951252 -0.9701780601104388 -0.04723093431566958 -0.2377472828951252 0.9701780601104388 0.04723093431566958 0.3107193740576593 -0.2832717599607755 0.907309528547971 -0.3107193740576593 0.2832717599607755 -0.907309528547971 -0.3635071034682662 0.851689493842403 -0.3774752863520772 0.3635071034682662 -0.851689493842403 0.3774752863520772 -0.7564394689297171 -0.3791257143731235 0.5329756303494525 0.7564394689297171 0.3791257143731235 -0.5329756303494525 0.3158554290317395 0.1010314995531506 -0.9434129446054985 -0.3158554290317395 -0.1010314995531506 0.9434129446054985 0.8201439144736518 0.5717406329886114 0.02183135684324419 -0.8201439144736518 -0.5717406329886114 -0.02183135684324419 0.2680273659666383 0.2977098905819318 0.9162587801176478 -0.2680273659666383 -0.2977098905819318 -0.9162587801176478 -0.06941768949860945 -0.8752680117319243 -0.4786304336578678 0.06941768949860945 0.8752680117319243 0.4786304336578678 0.2548562942491333 -0.3498302492799214 0.9014804856292495 -0.2548562942491333 0.3498302492799214 -0.9014804856292495 0.07989374694636887 0.905524056762171 0.4167051377459245 -0.07989374694636887 -0.905524056762171 -0.4167051377459245 -0.04083407666331518 0.9986109237387494 0.03329866622998426 0.04083407666331518 -0.9986109237387494 -0.03329866622998426 -0.1825168070008863 -0.5375088204783604 -0.8232690222947557 0.1825168070008863 0.5375088204783604 0.8232690222947557 -0.5778166565947228 -0.8161636802074702 -0.002181392191840661 0.5778166565947228 0.8161636802074702 0.002181392191840661 -0.5021055235161622 -0.7356162437443379 -0.4547073621506819 0.5021055235161622 0.7356162437443379 0.4547073621506819 0.2805007666319367 0.2496917903147441 -0.9268081407542307 -0.2805007666319367 -0.2496917903147441 0.9268081407542307 0.5959037904870111 0.8025039654624023 0.02976672471622715 -0.5959037904870111 -0.8025039654624023 -0.02976672471622715 0.1886906347700052 0.3827643441045949 0.9043712187106974 -0.1886906347700052 -0.3827643441045949 -0.9043712187106974 0.02641701591325398 -0.9989898112601752 -0.03635241764447635 -0.02641701591325398 0.9989898112601752 0.03635241764447635 0.2495514332803363 -0.3597419611084889 0.8990605116261908 -0.2495514332803363 0.3597419611084889 -0.8990605116261908 -0.1610314974983271 0.9195489868697272 -0.3584668988348915 0.1610314974983271 -0.9195489868697272 0.3584668988348915 -0.5735130645200138 -0.6719746140646919 0.4685433628571327 0.5735130645200138 0.6719746140646919 -0.4685433628571327 0.265776222113249 0.2945794855482167 -0.9179247934626001 -0.265776222113249 -0.2945794855482167 0.9179247934626001 0.5837459602281524 0.8113763080652734 0.03015195893601343 -0.5837459602281524 -0.8113763080652734 -0.03015195893601343 0.1992330068427163 0.3545630541910325 0.9135596584718136 -0.1992330068427163 -0.3545630541910325 -0.9135596584718136 -0.286198125250775 -0.4777541886152585 -0.8305670161784163 0.286198125250775 0.4777541886152585 0.8305670161784163 -0.25962599946674 -0.8357038626627454 -0.4839353204008397 0.25962599946674 0.8357038626627454 0.4839353204008397 0.1711466414133597 -0.3975101723518444 0.9014956960572436 -0.1711466414133597 0.3975101723518444 -0.9014956960572436 0.2759882413612637 0.8620904505986943 0.4250065242050496 -0.2759882413612637 -0.8620904505986943 -0.4250065242050496 0.1627409593554778 0.9861125950546078 0.0331259720268841 -0.1627409593554778 -0.9861125950546078 -0.0331259720268841 -0.3416776399149192 -0.9396748590695885 -0.0163569439297154 0.3416776399149192 0.9396748590695885 0.0163569439297154 -0.3037978508011625 -0.8503116366343569 -0.4297406036817975 0.3037978508011625 0.8503116366343569 0.4297406036817975 0.2017729220895513 0.4122219067906814 -0.8884597838243995 -0.2017729220895513 -0.4122219067906814 0.8884597838243995 0.3534036074999896 0.9348125618392212 0.03509080269223711 -0.3534036074999896 -0.9348125618392212 -0.03509080269223711 0.1058950680610089 0.4040213110050124 0.9085994798667593 -0.1058950680610089 -0.4040213110050124 -0.9085994798667593 0.03904623842495032 0.9310187796789678 -0.3628765949326953 -0.03904623842495032 -0.9310187796789678 0.3628765949326953 -0.185280144163769 -0.9820270394990084 -0.03597446137839718 0.185280144163769 0.9820270394990084 0.03597446137839718 0.1773343338050253 -0.407918090695269 0.8956312663911717 -0.1773343338050253 0.407918090695269 -0.8956312663911717 -0.3548846155969388 -0.8408590923146846 0.4086721136612301 0.3548846155969388 0.8408590923146846 -0.4086721136612301 0.1821956052109466 0.439781889757753 -0.8794297304975063 -0.1821956052109466 -0.439781889757753 0.8794297304975063 0.3477969156729294 0.9369126823191033 0.03509887687690649 -0.3477969156729294 -0.9369126823191033 -0.03509887687690649 0.1203147449577395 0.3836090892651766 0.9156246112784954 -0.1203147449577395 -0.3836090892651766 -0.9156246112784954 0.3817361878603577 0.9236387664447153 0.03418935504402063 -0.3817361878603577 -0.9236387664447153 -0.03418935504402063 -0.3808561525487514 -0.3762278222568641 -0.8446308168813282 0.3808561525487514 0.3762278222568641 0.8446308168813282 -0.4502518883566059 -0.7431705871337786 -0.4949451640844119 0.4502518883566059 0.7431705871337786 0.4949451640844119 0.08537821147082986 -0.4050004694324626 0.9103214711109079 -0.08537821147082986 0.4050004694324626 -0.9103214711109079 0.4839402349904592 0.7462603074213654 0.4570529537425049 -0.4839402349904592 -0.7462603074213654 -0.4570529537425049 -0.1272823242317779 -0.9915104149325137 -0.02657643728025157 0.1272823242317779 0.9915104149325137 0.02657643728025157 -0.107485252019738 -0.9023317361563371 -0.4174258718902604 0.107485252019738 0.9023317361563371 0.4174258718902604 0.1272952337579134 0.8804963853411909 -0.4566421343498815 -0.1272952337579134 -0.8804963853411909 0.4566421343498815 0.1306568334550952 0.9907806768235814 0.03581120361693436 -0.1306568334550952 -0.9907806768235814 -0.03581120361693436 0.02655459317774895 0.3881777094386431 0.9212018885543671 -0.02655459317774895 -0.3881777094386431 -0.9212018885543671 0.2461740196361449 0.8881072047840408 -0.3881545373518912 -0.2461740196361449 -0.8881072047840408 0.3881545373518912 -0.4100851868289213 -0.9114063973479533 -0.03418359865072141 0.4100851868289213 0.9114063973479533 0.03418359865072141 0.09585588479500046 -0.4239048722954816 0.9006199579147239 -0.09585588479500046 0.4239048722954816 -0.9006199579147239 -0.1414586116089602 -0.9177243521144169 0.3711758003127884 0.1414586116089602 0.9177243521144169 -0.3711758003127884 0.08229943604642631 0.5326286561408844 -0.8423381253890837 -0.08229943604642631 -0.5326286561408844 0.8423381253890837 0.03579019274096595 0.3769091626890147 0.9255585044634567 -0.03579019274096595 -0.3769091626890147 -0.9255585044634567 0.6746750770627003 0.5584493657598201 0.4826467095846549 -0.6746750770627003 -0.5584493657598201 -0.4826467095846549 0.619528573217243 0.7846549825333663 0.02238091492700978 -0.619528573217243 -0.7846549825333663 -0.02238091492700978 -0.4569814034594899 -0.2308057509950033 -0.8590091397650129 0.4569814034594899 0.2308057509950033 0.8590091397650129 -0.6401975749858474 -0.58216510744509 -0.5012293413754696 0.6401975749858474 0.58216510744509 0.5012293413754696 0.00408306155931046 -0.3751957745293469 0.9269365994412057 -0.00408306155931046 0.3751957745293469 -0.9269365994412057 0.07706466119739523 -0.9963908167601588 -0.03558620899385377 -0.07706466119739523 0.9963908167601588 0.03558620899385377 0.0890429529909573 -0.9019492033324196 -0.4225624061966039 -0.0890429529909573 0.9019492033324196 0.4225624061966039 -0.06621635051689698 0.8987936255464268 -0.4333421438094072 0.06621635051689698 -0.8987936255464268 0.4333421438094072 -0.08027752129711639 0.996092975350629 0.03680086998322935 0.08027752129711639 -0.996092975350629 -0.03680086998322935 -0.04440117795251147 0.3395248659412713 0.9395485090212167 0.04440117795251147 -0.3395248659412713 -0.9395485090212167 0.01158391838349427 -0.4044989765681269 0.91446508451128 -0.01158391838349427 0.4044989765681269 -0.91446508451128 0.4607747597898561 0.7726062491475303 -0.4367679069240149 -0.4607747597898561 -0.7726062491475303 0.4367679069240149 -0.6528365961929814 -0.7569697116279336 -0.02830608325228319 0.6528365961929814 0.7569697116279336 0.02830608325228319 0.06271318085236688 -0.9322264024201509 0.3564000443015705 -0.06271318085236688 0.9322264024201509 -0.3564000443015705 -0.02539505075182641 0.5792832754279267 -0.8147306169567982 0.02539505075182641 -0.5792832754279267 0.8147306169567982 -0.04651188970002081 0.3295206170603162 0.9430020185814672 0.04651188970002081 -0.3295206170603162 -0.9430020185814672 -0.06473643536617336 -0.3132162085453832 0.9474728495532399 0.06473643536617336 0.3132162085453832 -0.9474728495532399 0.8189863945610214 0.267804498993347 0.5074859957110751 -0.8189863945610214 -0.267804498993347 -0.5074859957110751 0.8580747624937155 0.5135118524823926 0.00364408170257575 -0.8580747624937155 -0.5135118524823926 -0.00364408170257575 -0.4994276384374227 -0.04700378027259036 -0.8650795793479956 0.4994276384374227 0.04700378027259036 0.8650795793479956 -0.8539205796523492 -0.5200329319132497 -0.01963143835548998 0.8539205796523492 0.5200329319132497 0.01963143835548998 0.2852468130184876 -0.9574703627261206 -0.04341382457129295 -0.2852468130184876 0.9574703627261206 0.04341382457129295 0.2924335662428017 -0.8450028909434059 -0.4477194697930873 -0.2924335662428017 0.8450028909434059 0.4477194697930873 -0.2599785599269004 0.8674531651416381 -0.4241888195887405 0.2599785599269004 -0.8674531651416381 0.4241888195887405 -0.2945723042932884 0.9549914746939281 0.03490617144945838 0.2945723042932884 -0.9549914746939281 -0.03490617144945838 -0.1034209544155115 0.260833981179355 0.9598279744047434 0.1034209544155115 -0.260833981179355 -0.9598279744047434 -0.8820108241384292 -0.4708976330123468 -0.01767272831279923 0.8820108241384292 0.4708976330123468 0.01767272831279923 -0.06793973200068289 -0.3407081446211087 0.9377111244965142 0.06793973200068289 0.3407081446211087 -0.9377111244965142 0.6640962514205898 0.5539647316542878 -0.5020948565085224 -0.6640962514205898 -0.5539647316542878 0.5020948565085224 -0.4964816572811355 -0.007177603277728776 -0.8680175378381272 0.4964816572811355 0.007177603277728776 0.8680175378381272 0.2615164558810464 -0.8933693306476449 0.3653770413717801 -0.2615164558810464 0.8933693306476449 -0.3653770413717801 -0.1382161165012245 0.5831356619914788 -0.8005305146295673 0.1382161165012245 -0.5831356619914788 0.8005305146295673 -0.1141259954480732 0.2414788498438282 0.9636717398788285 0.1141259954480732 -0.2414788498438282 -0.9636717398788285 -0.8822877168491453 0.02221624459042109 -0.4701859453167663 0.8822877168491453 -0.02221624459042109 0.4701859453167663 -0.1188546313479534 -0.226015175599825 0.9668457565742957 0.1188546313479534 0.226015175599825 -0.9668457565742957 0.8587171771022855 -0.08021848991260513 0.5061321997518272 -0.8587171771022855 0.08021848991260513 -0.5061321997518272 0.80509121276603 0.182684089460753 -0.5643178737066713 -0.80509121276603 -0.182684089460753 0.5643178737066713 -0.4925833391417399 0.1528107137817175 -0.8567441506969837 0.4925833391417399 -0.1528107137817175 0.8567441506969837 0.5097604686917933 -0.8591228422745929 -0.04530128520415593 -0.5097604686917933 0.8591228422745929 0.04530128520415593 0.503262502862575 -0.7120610666436443 -0.4895874697975962 -0.503262502862575 0.7120610666436443 0.4895874697975962 -0.4603535068224687 0.7788744847979318 -0.4259450500792463 0.4603535068224687 -0.7788744847979318 0.4259450500792463 -0.5234978772167905 0.8514922081889411 0.03018264307570166 0.5234978772167905 -0.8514922081889411 -0.03018264307570166 -0.1518393415659207 0.1544949781778873 0.9762561733841388 0.1518393415659207 -0.1544949781778873 -0.9762561733841388 -0.9986618584080447 -0.05166696240940564 -0.002239990262371929 0.9986618584080447 0.05166696240940564 0.002239990262371929 -0.1318587900484524 -0.2349770160994678 0.9630156080728645 0.1318587900484524 0.2349770160994678 -0.9630156080728645 0.857028387459813 -0.04027418967984569 0.5136928388966155 -0.857028387459813 0.04027418967984569 -0.5136928388966155 0.802064657774842 0.2179832984637024 -0.5560355801020377 -0.802064657774842 -0.2179832984637024 0.5560355801020377 0.461629591813155 -0.791022940541534 0.4014733210307315 -0.461629591813155 0.791022940541534 -0.4014733210307315 -0.2525244762890936 0.5414008070120525 -0.8019454813399832 0.2525244762890936 -0.5414008070120525 0.8019454813399832 -0.1597796618615042 0.122807679034642 0.9794839118768351 0.1597796618615042 -0.122807679034642 -0.9794839118768351 -0.4353127671755993 0.3341078671532379 -0.8359872773195993 0.4353127671755993 -0.3341078671532379 0.8359872773195993 -0.8085216629104076 0.3822954044526677 -0.4473733835835125 0.8085216629104076 -0.3822954044526677 0.4473733835835125 -0.1551553136597286 -0.1168551605829648 0.9809544842082534 0.1551553136597286 0.1168551605829648 -0.9809544842082534 0.780633767826844 -0.4067753626586666 0.4744941779014527 -0.780633767826844 0.4067753626586666 -0.4744941779014527 0.9244937614473499 -0.3785567368550198 -0.04478930705659131 -0.9244937614473499 0.3785567368550198 0.04478930705659131 0.7501777083173664 -0.6593857530995007 -0.04943515503271423 -0.7501777083173664 0.6593857530995007 0.04943515503271423 0.6978756724217701 -0.4623606802271916 -0.5469845950497244 -0.6978756724217701 0.4623606802271916 0.5469845950497244 -0.6649137266292722 0.6072454867179655 -0.4349053402760593 0.6649137266292722 -0.6072454867179655 0.4349053402760593 -0.7604909755671593 0.6489453172537542 0.02287905800802799 0.7604909755671593 -0.6489453172537542 -0.02287905800802799 -0.1719481295432023 0.01942719420443318 0.984914425151717 0.1719481295432023 -0.01942719420443318 -0.984914425151717 0.8041236149092155 -0.1784768550586106 -0.567037233480945 -0.8041236149092155 0.1784768550586106 0.567037233480945 -0.9246639437465246 0.3805517200660055 0.01330336385764 0.9246639437465246 -0.3805517200660055 -0.01330336385764 -0.1673398208350277 -0.09875008188294676 0.9809412855472096 0.1673398208350277 0.09875008188294676 -0.9809412855472096 0.6515680064245015 -0.6172448359197024 0.4409851987702768 -0.6515680064245015 0.6172448359197024 -0.4409851987702768 -0.3609331625954829 0.4492091988848745 -0.8172749523728423 0.3609331625954829 -0.4492091988848745 0.8172749523728423 -0.1680954692977072 -0.01327613670707577 0.9856813163470833 0.1680954692977072 0.01327613670707577 -0.9856813163470833 0.7077312487955543 -0.70465695649397 -0.05074498145571148 -0.7077312487955543 0.70465695649397 0.05074498145571148 -0.3422913146461143 0.4701646595185103 -0.8134997534465994 0.3422913146461143 -0.4701646595185103 0.8134997534465994 -0.6285504469312564 0.6463465159876448 -0.432620523014282 0.6285504469312564 -0.6463465159876448 0.432620523014282 -0.1684919533531034 0.01077137011397833 0.9856441747614214 0.1684919533531034 -0.01077137011397833 -0.9856441747614214 0.6208555916692818 -0.6569446747327986 0.4277406090532013 -0.6208555916692818 0.6569446747327986 -0.4277406090532013 0.8016848346520146 -0.3477112372625088 0.4862081050027315 -0.8016848346520146 0.3477112372625088 -0.4862081050027315 0.8149407653504821 -0.1080939743893893 -0.5693744301166648 -0.8149407653504821 0.1080939743893893 0.5693744301166648 -0.8324361114609851 0.3218662650475636 -0.4510567899500528 0.8324361114609851 -0.3218662650475636 0.4510567899500528 -0.9513176264003224 0.3080434766497365 0.01019755821753643 0.9513176264003224 -0.3080434766497365 -0.01019755821753643 -0.1634226488672288 -0.1247288266203847 0.978639748654795 0.1634226488672288 0.1247288266203847 -0.978639748654795 0.6678545272762165 -0.5214214448413437 -0.5311214618674591 -0.6678545272762165 0.5214214448413437 0.5311214618674591 -0.7182512980189613 0.6953403055486193 0.02483812339187629 0.7182512980189613 -0.6953403055486193 -0.02483812339187629 -0.1693919375325174 0.04484508914520848 0.9845279526141134 0.1693919375325174 -0.04484508914520848 -0.9845279526141134 0.8048770154338162 -0.3506427111350812 0.4787720534389954 -0.8048770154338162 0.3506427111350812 -0.4787720534389954 0.8033666650645278 -0.1701831128983491 -0.5706484991194902 -0.8033666650645278 0.1701831128983491 0.5706484991194902 -0.449276662052396 0.3041261528388937 -0.840034382685894 0.449276662052396 -0.3041261528388937 0.840034382685894 -0.1500241186418038 -0.1381877067319115 0.9789774877564473 0.1500241186418038 0.1381877067319115 -0.9789774877564473 0.4259164727472657 -0.8178739305926825 0.3868816251767502 -0.4259164727472657 0.8178739305926825 -0.3868816251767502 0.4675417481522561 -0.8827033205932906 -0.04732400604672524 -0.4675417481522561 0.8827033205932906 0.04732400604672524 -0.2320469253631314 0.5524833462257559 -0.8005725304884679 0.2320469253631314 -0.5524833462257559 0.8005725304884679 -0.423557627267104 0.8000749581641595 -0.4248281978664779 0.423557627267104 -0.8000749581641595 0.4248281978664779 -0.1520261298610904 0.1435922819635595 0.9778902353536191 0.1520261298610904 -0.1435922819635595 -0.9778902353536191 0.8563237254984636 0.03079858925869943 0.5155202460118381 -0.8563237254984636 -0.03079858925869943 -0.5155202460118381 0.7854940101452571 0.2863170703831796 -0.5486544406392022 -0.7854940101452571 -0.2863170703831796 0.5486544406392022 -0.8789082253122669 -0.04564312127338695 -0.4748021029427568 0.8789082253122669 0.04564312127338695 0.4748021029427568 -0.9909634038787927 -0.1340025373020281 -0.005903572611154711 0.9909634038787927 0.1340025373020281 0.005903572611154711 -0.1214750110649079 -0.2566275933410345 0.9588462337740964 0.1214750110649079 0.2566275933410345 -0.9588462337740964 -0.142452558699072 0.1742583355203759 0.9743414704413209 0.142452558699072 -0.1742583355203759 -0.9743414704413209 0.4649669496611292 -0.7434136308494656 -0.4807722009330817 -0.4649669496611292 0.7434136308494656 0.4807722009330817 -0.4807005703786668 0.8763117445965224 0.03169681245525551 0.4807005703786668 -0.8763117445965224 -0.03169681245525551 0.860818501158697 -0.01639334936765001 0.5086479786251046 -0.860818501158697 0.01639334936765001 -0.5086479786251046 0.7900970044825006 0.256243834616507 -0.5568535002393426 -0.7900970044825006 -0.256243834616507 0.5568535002393426 -0.4980016540115691 0.1169037436321664 -0.8592600696683899 0.4980016540115691 -0.1169037436321664 0.8592600696683899 -0.1096713944455775 -0.2434581647668065 0.9636909812013087 0.1096713944455775 0.2434581647668065 -0.9636909812013087 -0.1039331501312693 0.2596929771875718 0.9600820058220267 0.1039331501312693 -0.2596929771875718 -0.9600820058220267 0.2255519598441016 -0.9042487363484568 0.3625748698168476 -0.2255519598441016 0.9042487363484568 -0.3625748698168476 0.2462996175769647 -0.9683051549927454 -0.04149247155709469 -0.2462996175769647 0.9683051549927454 0.04149247155709469 -0.1177075886272675 0.5855797316620933 -0.8020232549284995 0.1177075886272675 -0.5855797316620933 0.8020232549284995 -0.2245596538812725 0.8769503476001817 -0.4248894558501582 0.2245596538812725 -0.8769503476001817 0.4248894558501582 0.8181557879751343 0.574941013221297 0.007996118987057179 -0.8181557879751343 -0.574941013221297 -0.007996118987057179 0.6305745196917911 0.6022609822383443 -0.4895482452105935 -0.6305745196917911 -0.6022609822383443 0.4895482452105935 -0.4949674466025706 -0.03893954632934858 -0.8680385582077539 0.4949674466025706 0.03893954632934858 0.8680385582077539 -0.8451073230742584 -0.5342149830365645 -0.02019812826735253 0.8451073230742584 0.5342149830365645 0.02019812826735253 -0.05381835492117146 -0.3553815859925096 0.9331706773206214 0.05381835492117146 0.3553815859925096 -0.9331706773206214 -0.2549244234810441 0.9663206296739521 0.03518492545671107 0.2549244234810441 -0.9663206296739521 -0.03518492545671107 -0.09421689584469263 0.2772090208169448 0.9561790289036364 0.09421689584469263 -0.2772090208169448 -0.9561790289036364 0.2549044366570637 -0.860011990970127 -0.4420442325832825 -0.2549044366570637 0.860011990970127 0.4420442325832825 0.7993074046846863 0.3271452838378929 0.5040670948185921 -0.7993074046846863 -0.3271452838378929 -0.5040670948185921 -0.4949001898211957 -0.08217580751408803 -0.8650554541613803 0.4949001898211957 0.08217580751408803 0.8650554541613803 -0.8143883665441624 -0.5799121006899042 -0.02176106410434394 0.8143883665441624 0.5799121006899042 0.02176106410434394 -0.0528267853515411 -0.3265124915131391 0.943715488712199 0.0528267853515411 0.3265124915131391 -0.943715488712199 -0.03142267022114505 0.8992661103168952 -0.4362717944489363 0.03142267022114505 -0.8992661103168952 0.4362717944489363 -0.03222591778629572 0.3414505049292814 0.9393471365296059 0.03222591778629572 -0.3414505049292814 -0.9393471365296059 0.02593088187460911 -0.9334529941299953 0.3577612291947694 -0.02593088187460911 0.9334529941299953 -0.3577612291947694 0.04047658744709259 -0.9985690523142606 -0.03494987308757316 -0.04047658744709259 0.9985690523142606 0.03494987308757316 -0.005340848939804973 0.5750843972474491 -0.8180766537282069 0.005340848939804973 -0.5750843972474491 0.8180766537282069 0.5748670573803423 0.8178949423428396 0.02399436660696463 -0.5748670573803423 -0.8178949423428396 -0.02399436660696463 0.4214047194118107 0.8001772768590731 -0.4267720563202931 -0.4214047194118107 -0.8001772768590731 0.4267720563202931 -0.6075070051510968 -0.6169889755584409 -0.500259775248511 0.6075070051510968 0.6169889755584409 0.500259775248511 -0.6082644619063846 -0.7931893218307541 -0.02941163231452664 0.6082644619063846 0.7931893218307541 0.02941163231452664 0.02731427010381074 -0.4112080491155628 0.9111321918312783 -0.02731427010381074 0.4112080491155628 -0.9111321918312783 -0.04234697716265905 0.9984412466868483 0.03635671106684103 0.04234697716265905 -0.9984412466868483 -0.03635671106684103 -0.03223101623502139 0.3507029644867439 0.9359319378526771 0.03223101623502139 -0.3507029644867439 -0.9359319378526771 0.05359354659176144 -0.9050878967654793 -0.4218336531055313 -0.05359354659176144 0.9050878967654793 0.4218336531055313 0.6412413465959838 0.60272082229122 0.4749075128826295 -0.6412413465959838 -0.60272082229122 -0.4749075128826295 -0.4462105565441957 -0.2575226230380935 -0.8570753979972237 0.4462105565441957 0.2575226230380935 0.8570753979972237 0.01844952214499368 -0.3829088407142423 0.9236018811346676 -0.01844952214499368 0.3829088407142423 -0.9236018811346676 0.1011330725469509 0.5194724520743951 -0.8484812744975747 -0.1011330725469509 -0.5194724520743951 0.8484812744975747 0.1630294479068578 0.871814449518784 -0.4619101262425891 -0.1630294479068578 -0.871814449518784 0.4619101262425891 0.0510637975217282 0.3804469862760125 0.9233918882122364 -0.0510637975217282 -0.3804469862760125 -0.9233918882122364 -0.1789348057381016 -0.9094822423736374 0.375265753969754 0.1789348057381016 0.9094822423736374 -0.375265753969754 -0.1644532411474187 -0.9860473726968939 -0.02580136185672202 0.1644532411474187 0.9860473726968939 0.02580136185672202 0.3395373426710984 0.9400998637165698 0.03044074854427659 -0.3395373426710984 -0.9400998637165698 -0.03044074854427659 0.2080958314185695 0.9007190269975417 -0.3813153017527829 -0.2080958314185695 -0.9007190269975417 0.3813153017527829 -0.4170843605138727 -0.763075286070442 -0.4937172713236264 0.4170843605138727 0.763075286070442 0.4937172713236264 -0.3672173125572642 -0.929670628098362 -0.02939334294389833 0.3672173125572642 0.929670628098362 0.02939334294389833 0.111827054596911 -0.424651065403749 0.8984242775613538 -0.111827054596911 0.424651065403749 -0.8984242775613538 -0.1429775543358956 -0.8969391337325153 -0.4183988639268644 0.1429775543358956 0.8969391337325153 0.4183988639268644 0.1697457261997588 0.9848297526555807 0.03601036963520293 -0.1697457261997588 -0.9848297526555807 -0.03601036963520293 0.04028526280218579 0.3929503182275642 0.9186768447097243 -0.04028526280218579 -0.3929503182275642 -0.9186768447097243 0.4425252753879181 0.7806935143644559 0.4412357842153354 -0.4425252753879181 -0.7806935143644559 -0.4412357842153354 -0.3615510851970467 -0.3924085741928782 -0.8457519279864222 0.3615510851970467 0.3924085741928782 0.8457519279864222 0.1003763762971855 -0.405997808450411 0.908344847849598 -0.1003763762971855 0.405997808450411 -0.908344847849598 -0.3904713290394705 -0.9204989061760063 -0.01462548894655272 0.3904713290394705 0.9204989061760063 0.01462548894655272 0.2028376560254069 0.413744952877412 -0.8875088727818932 -0.2028376560254069 -0.413744952877412 0.8875088727818932 0.396608791264394 0.9173863486612863 0.03322279310517088 -0.396608791264394 -0.9173863486612863 -0.03322279310517088 0.1367919978862975 0.3783260601638079 0.915509334477375 -0.1367919978862975 -0.3783260601638079 -0.915509334477375 -0.4037411148157989 -0.8136336634161336 0.4183220935634858 0.4037411148157989 0.8136336634161336 -0.4183220935634858 0.2130963481630372 0.976225375381003 -0.03967320080101625 -0.2130963481630372 -0.976225375381003 0.03967320080101625 0.1082527642888195 0.9240157235623439 -0.3667100784453402 -0.1082527642888195 -0.9240157235623439 0.3667100784453402 -0.3282095679388387 -0.7677571340105247 -0.5502976128326798 0.3282095679388387 0.7677571340105247 0.5502976128326798 -0.2328766928025201 -0.9718884443470868 -0.03465974168917625 0.2328766928025201 0.9718884443470868 0.03465974168917625 0.147376313159506 -0.3971289635474629 0.9058525313930679 -0.147376313159506 0.3971289635474629 -0.9058525313930679 -0.3468889467228274 -0.831933338942228 -0.4330761805940883 0.3468889467228274 0.831933338942228 0.4330761805940883 0.2234161499957088 0.3810200301792597 -0.897167186494965 -0.2234161499957088 -0.3810200301792597 0.897167186494965 0.4038395713122486 0.9142287575762091 0.03315689163658483 -0.4038395713122486 -0.9142287575762091 -0.03315689163658483 0.1223263146597214 0.4011059037466704 0.9078272559916547 -0.1223263146597214 -0.4011059037466704 -0.9078272559916547 0.3151557714650701 0.850933809128837 0.4202243355563129 -0.3151557714650701 -0.850933809128837 -0.4202243355563129 -0.3363397734911338 -0.4604549379996871 -0.8214966870533548 0.3363397734911338 0.4604549379996871 0.8214966870533548 0.147769700001947 -0.3878723864430676 0.9097907053802509 -0.147769700001947 0.3878723864430676 -0.9097907053802509 -0.6420063779804296 -0.5914967439439237 0.4878108368375864 0.6420063779804296 0.5914967439439237 -0.4878108368375864 -0.6565684656533083 -0.7542650483841933 0.00144453994444209 0.6565684656533083 0.7542650483841933 -0.00144453994444209 0.2874140128009826 0.2414414916118539 -0.9268760388390025 -0.2874140128009826 -0.2414414916118539 0.9268760388390025 0.6582611817184929 0.7522680620784041 0.02801748417284312 -0.6582611817184929 -0.7522680620784041 -0.02801748417284312 0.2200941092028078 0.3382586534371596 0.9149533684669958 -0.2200941092028078 -0.3382586534371596 -0.9149533684669958 0.2116410019073268 0.368243600618228 0.9053202399788628 -0.2116410019073268 -0.368243600618228 -0.9053202399788628 -0.5633513745399559 -0.6828443070427693 -0.4651439359415776 0.5633513745399559 0.6828443070427693 0.4651439359415776 0.298370217248233 0.191205473160415 -0.935101962618379 -0.298370217248233 -0.191205473160415 0.935101962618379 0.6749359517078825 0.7373591867748749 0.0276204773830946 -0.6749359517078825 -0.7373591867748749 -0.0276204773830946 0.2878241731108553 0.272326905732818 0.9181477559668931 -0.2878241731108553 -0.272326905732818 -0.9181477559668931 -0.7965386423346083 -0.2532915234743957 0.5489713976190006 0.7965386423346083 0.2532915234743957 -0.5489713976190006 -0.8951956121350305 -0.445246287935769 0.01950792386714897 0.8951956121350305 0.445246287935769 -0.01950792386714897 0.3232983020271709 0.02813755581106068 -0.9458786845358804 -0.3232983020271709 -0.02813755581106068 0.9458786845358804 0.8886201215023675 0.4583095248458386 0.01751168457628765 -0.8886201215023675 -0.4583095248458386 -0.01751168457628765 0.9067694045013615 0.4212875724775627 0.01691237228210239 -0.9067694045013615 -0.4212875724775627 -0.01691237228210239 0.2923017754237066 0.2931792918416378 0.9102777460310586 -0.2923017754237066 -0.2931792918416378 -0.9102777460310586 -0.741970476744986 -0.45126640558974 -0.4958209786051158 0.741970476744986 0.45126640558974 0.4958209786051158 0.3148780279575754 -0.004851247987694989 -0.9491197463452703 -0.3148780279575754 0.004851247987694989 0.9491197463452703 0.9986408233613113 0.05204832849954173 0.002734486541561556 -0.9986408233613113 -0.05204832849954173 -0.002734486541561556 0.338159771584448 0.1884759967616518 0.9220221079381208 -0.338159771584448 -0.1884759967616518 -0.9220221079381208 -0.810222486636613 0.1385864754966381 0.5695026874017393 0.810222486636613 -0.1385864754966381 -0.5695026874017393 -0.8502769913784182 -0.1027726419431457 -0.51620424446191 0.8502769913784182 0.1027726419431457 0.51620424446191 0.3038735326440124 -0.1820268002010055 -0.9351615476306924 -0.3038735326440124 0.1820268002010055 0.9351615476306924 0.2901925836013853 -0.1816704618298906 -0.9395659145165215 -0.2901925836013853 0.1816704618298906 0.9395659145165215 0.9998134129065579 -0.01931572795425492 0.0002050017991617721 -0.9998134129065579 0.01931572795425492 -0.0002050017991617721 0.3505536682700014 0.1890931772732937 0.917254542627692 -0.3505536682700014 -0.1890931772732937 -0.917254542627692 -0.8136363054643536 0.08549797737053264 0.5750530917192472 0.8136363054643536 -0.08549797737053264 -0.5750530917192472 -0.8477387422046507 -0.145690523253534 -0.510013035519082 0.8477387422046507 0.145690523253534 0.510013035519082 0.2332790290379629 -0.3605655833137569 -0.9030910002545234 -0.2332790290379629 0.3605655833137569 0.9030910002545234 0.9227552955186689 -0.3850316805994672 -0.01653086588790668 -0.9227552955186689 0.3850316805994672 0.01653086588790668 0.3710773255409565 0.08356988843990149 0.9248338727660842 -0.3710773255409565 -0.08356988843990149 -0.9248338727660842 -0.6915776048788422 0.481449819457784 0.5384482219992104 0.6915776048788422 -0.481449819457784 -0.5384482219992104 -0.8981508096072901 0.4388332978278862 0.02739452352699584 0.8981508096072901 -0.4388332978278862 -0.02739452352699584 -0.8429540014162222 0.203978418702621 -0.497816588915996 0.8429540014162222 -0.203978418702621 0.497816588915996 0.2290286556424245 -0.3336022894551302 -0.9144700035347902 -0.2290286556424245 0.3336022894551302 0.9144700035347902 0.8927775322530374 -0.4501268218996853 -0.01827900737638643 -0.8927775322530374 0.4501268218996853 0.01827900737638643 0.3806461863454164 0.0586449495950467 0.9228592800138519 -0.3806461863454164 -0.0586449495950467 -0.9228592800138519 -0.6731385750235163 0.7390084312967923 0.02740432972295189 0.6731385750235163 -0.7390084312967923 -0.02740432972295189 0.1328489735460141 -0.4811768208942334 -0.8664987116331387 -0.1328489735460141 0.4811768208942334 0.8664987116331387 0.516198589719263 -0.6859647819407342 -0.5128268069327548 -0.516198589719263 0.6859647819407342 0.5128268069327548 0.3820636629172851 -0.03798957389201383 0.9233548341530087 -0.3820636629172851 0.03798957389201383 -0.9233548341530087 -0.4982064155529421 0.7158489907291226 0.4892346982522662 0.4982064155529421 -0.7158489907291226 -0.4892346982522662 -0.7240797982617366 0.5172808467785057 -0.456211542275461 0.7240797982617366 -0.5172808467785057 0.456211542275461 0.6700114878873773 -0.74186164789632 -0.02694255888922608 -0.6700114878873773 0.74186164789632 0.02694255888922608 0.379894693238227 -0.07528147932801071 0.9219613445907695 -0.379894693238227 0.07528147932801071 -0.9219613445907695 -0.2919623060451244 0.845665083770505 0.4467757580042115 0.2919623060451244 -0.845665083770505 -0.4467757580042115 -0.4366392706915987 0.8991736906649493 0.02885864352118438 0.4366392706915987 -0.8991736906649493 -0.02885864352118438 0.02177713585574996 -0.5441272858997885 -0.8387200087593295 -0.02177713585574996 0.5441272858997885 0.8387200087593295 0.2991010112138623 -0.8171191965929602 -0.4928030069410294 -0.2991010112138623 0.8171191965929602 0.4928030069410294 0.3640632629061393 -0.1638809515800347 0.916842938736705 -0.3640632629061393 0.1638809515800347 -0.916842938736705 0.351699520032644 -0.1960107315629559 0.9153618086423327 -0.351699520032644 0.1960107315629559 -0.9153618086423327 -0.5385204348562104 0.737321150528917 -0.4078642693654254 0.5385204348562104 -0.737321150528917 0.4078642693654254 0.4313254792109038 -0.9015926789875245 -0.03299957847583465 -0.4313254792109038 0.9015926789875245 0.03299957847583465 0.3161388477041972 -0.2763160755931569 0.9075823132592764 -0.3161388477041972 0.2763160755931569 -0.9075823132592764 -0.09028294640818048 0.9018061391263758 0.4226046344064832 0.09028294640818048 -0.9018061391263758 -0.4226046344064832 -0.2181679418180512 0.9753952588071517 0.03173071476353479 0.2181679418180512 -0.9753952588071517 -0.03173071476353479 -0.08967032070999265 -0.5583348527658186 -0.8247553732900068 0.08967032070999265 0.5583348527658186 0.8247553732900068 0.09609590767600762 -0.8714827722638359 -0.4809192803114296 -0.09609590767600762 0.8714827722638359 0.4809192803114296 0.208645464388462 -0.9773301409440586 -0.03595644298856492 -0.208645464388462 0.9773301409440586 0.03595644298856492 0.3037402224766287 -0.2968019404946466 0.9053455060740404 -0.3037402224766287 0.2968019404946466 -0.9053455060740404 -0.3354649239994378 0.8652214844413689 -0.3726326175029842 0.3354649239994378 -0.8652214844413689 0.3726326175029842 -0.09635811980048231 -0.8729912242445731 -0.4781228243249607 0.09635811980048231 0.8729912242445731 0.4781228243249607 0.2454506262031012 -0.377838807823859 0.8927439864814272 -0.2454506262031012 0.377838807823859 -0.8927439864814272 0.1068562574116552 0.9026725963806916 0.4168500017935887 -0.1068562574116552 -0.9026725963806916 -0.4168500017935887 -0.01341961262984234 0.9993629150444336 0.0330708032977326 0.01341961262984234 -0.9993629150444336 -0.0330708032977326 -0.1974089586396487 -0.532140896373992 -0.8233199678467016 0.1974089586396487 0.532140896373992 0.8233199678467016 -0.003042879031513646 -0.9993172156254773 -0.03682177944834953 0.003042879031513646 0.9993172156254773 0.03682177944834953 0.2410763476317336 -0.387128098884963 0.8899517007491239 -0.2410763476317336 0.387128098884963 -0.8899517007491239 -0.1342923521062531 0.9239445732737138 -0.3581787119355711 0.1342923521062531 -0.9239445732737138 0.3581787119355711 -0.2993802353626548 -0.4646202361375466 -0.8333663725191293 0.2993802353626548 0.4646202361375466 0.8333663725191293 -0.2850143040300812 -0.8249952226453783 -0.4880058699550152 0.2850143040300812 0.8249952226453783 0.4880058699550152 0.1571484006186686 -0.4017221510281468 0.9021771963180587 -0.1571484006186686 0.4017221510281468 -0.9021771963180587 0.3048994353963863 0.8512331346139842 0.4271281831373522 -0.3048994353963863 -0.8512331346139842 -0.4271281831373522 0.1916540383574875 0.9809149286690172 0.03278158470122235 -0.1916540383574875 -0.9809149286690172 -0.03278158470122235 0.0671884696021032 0.9289349896042631 -0.3640954471583719 -0.0671884696021032 -0.9289349896042631 0.3640954471583719 -0.2140789725420893 -0.9760632326372259 -0.03835048121069835 0.2140789725420893 0.9760632326372259 0.03835048121069835 0.1633996295092597 -0.4106962735212303 0.897011221775966 -0.1633996295092597 0.4106962735212303 -0.897011221775966 0.4114591536304653 0.9109580158340394 0.02927214172914724 -0.4114591536304653 -0.9109580158340394 -0.02927214172914724 -0.3926689146402455 -0.35857041203632 -0.8468992756446043 0.3926689146402455 0.35857041203632 0.8468992756446043 -0.4758443584816475 -0.7262158686624752 -0.4961679741821269 0.4758443584816475 0.7262158686624752 0.4961679741821269 0.07403530606453394 -0.4018766838318172 0.9126959540001656 -0.07403530606453394 0.4018766838318172 -0.9126959540001656 0.5074146196525977 0.7336990492225338 0.4519027649093994 -0.5074146196525977 -0.7336990492225338 -0.4519027649093994 0.274872235547456 0.8774438918920908 -0.3931125420365075 -0.274872235547456 -0.8774438918920908 0.3931125420365075 -0.4416336979657198 -0.8965662113422417 -0.03359621259223083 0.4416336979657198 0.8965662113422417 0.03359621259223083 0.08549088373456706 -0.4236410853674398 0.9017868592893668 -0.08549088373456706 0.4236410853674398 -0.9017868592893668 0.6984002947064492 0.5260813162216286 0.4852581550849647 -0.6984002947064492 -0.5260813162216286 -0.4852581550849647 0.652959689507299 0.7571332382136453 0.01982179282131184 -0.652959689507299 -0.7571332382136453 -0.01982179282131184 -0.4651746175759606 -0.207852160314994 -0.8604708330997912 0.4651746175759606 0.207852160314994 0.8604708330997912 -0.665423853153388 -0.5535581018224417 -0.5007839090478381 0.665423853153388 0.5535581018224417 0.5007839090478381 -0.005387601560723753 -0.3680435395178345 0.9297929483323731 0.005387601560723753 0.3680435395178345 -0.9297929483323731 0.000868304132819345 -0.3981816825083262 0.9173061614111023 -0.000868304132819345 0.3981816825083262 -0.9173061614111023 0.4895014731041097 0.7496380756810936 -0.4454560172655136 -0.4895014731041097 -0.7496380756810936 0.4454560172655136 -0.6864943599299461 -0.7266385896011196 -0.02686733866368751 0.6864943599299461 0.7266385896011196 0.02686733866368751 -0.07262576442607609 -0.3044614123800715 0.9497519395679382 0.07262576442607609 0.3044614123800715 -0.9497519395679382 0.8316127756564834 0.2226940531091179 0.5087509705885118 -0.8316127756564834 -0.2226940531091179 -0.5087509705885118 0.8847533030430639 0.466059554598581 -0.0002903820942461804 -0.8847533030430639 -0.466059554598581 0.0002903820942461804 -0.5016223448988417 -0.02024006257359567 -0.8648499077673559 0.5016223448988417 0.02024006257359567 0.8648499077673559 -0.8822448680326102 -0.4704388045425635 -0.01820230783956228 0.8822448680326102 0.4704388045425635 0.01820230783956228 -0.9072917110443275 -0.4201047632020399 -0.01826852498738157 0.9072917110443275 0.4201047632020399 0.01826852498738157 -0.07685647797368571 -0.3297862966323041 0.9409219310585922 0.07685647797368571 0.3297862966323041 -0.9409219310585922 0.6901787415728549 0.5152442173959565 -0.5081109141919102 -0.6901787415728549 -0.5152442173959565 0.5081109141919102 -0.4967373698995862 0.01608717979290114 -0.8677518009151883 0.4967373698995862 -0.01608717979290114 0.8677518009151883 -0.8811357659201282 0.0768003594678575 -0.4665848977431188 0.8811357659201282 -0.0768003594678575 0.4665848977431188 -0.1213401419479091 -0.2131789266836514 0.9694489750214126 0.1213401419479091 0.2131789266836514 -0.9694489750214126 0.8530841702615671 -0.129409370341721 0.5054706849233622 -0.8530841702615671 0.129409370341721 -0.5054706849233622 0.8141415650726762 0.1226466323187181 -0.5675661332407798 -0.8141415650726762 -0.1226466323187181 0.5675661332407798 -0.4880841511746171 0.1805356816951876 -0.8539207978536462 0.4880841511746171 -0.1805356816951876 0.8539207978536462 -0.9999912890016439 0.003565470406150566 -0.002170101751911943 0.9999912890016439 -0.003565470406150566 0.002170101751911943 -0.1346341299312233 -0.2158364992083521 0.967103022778414 0.1346341299312233 0.2158364992083521 -0.967103022778414 0.8525399834492935 -0.09184736460572623 0.5145285592027534 -0.8525399834492935 0.09184736460572623 -0.5145285592027534 0.8136691103485404 0.1551681516635968 -0.5602369352103785 -0.8136691103485404 -0.1551681516635968 0.5602369352103785 -0.4242011506809903 0.3566735691717121 -0.8323685174339763 0.4242011506809903 -0.3566735691717121 0.8323685174339763 -0.7885509876220191 0.4252210297831079 -0.4442684050779792 0.7885509876220191 -0.4252210297831079 0.4442684050779792 -0.1578790767136951 -0.1001809033739212 0.9823634682413714 0.1578790767136951 0.1001809033739212 -0.9823634682413714 0.7547715708514621 -0.44639443705225 0.4806785645347849 -0.7547715708514621 0.44639443705225 -0.4806785645347849 0.9002426714264509 -0.4324438669647231 -0.05055130530029929 -0.9002426714264509 0.4324438669647231 0.05055130530029929 0.7844421490554812 -0.2204106761446065 -0.5797151443827353 -0.7844421490554812 0.2204106761446065 0.5797151443827353 -0.9025620350092503 0.4302953214917916 0.01509003851010579 0.9025620350092503 -0.4302953214917916 -0.01509003851010579 -0.169444804962263 -0.07902734954524104 0.9823660906684203 0.169444804962263 0.07902734954524104 -0.9823660906684203 0.6777943647040133 -0.7334431215125454 -0.05153626569141771 -0.6777943647040133 0.7334431215125454 0.05153626569141771 -0.3277576958189358 0.4837068770718885 -0.8115433136344744 0.3277576958189358 -0.4837068770718885 0.8115433136344744 -0.6008360970729323 0.6729522999371917 -0.4314292369130882 0.6008360970729323 -0.6729522999371917 0.4314292369130882 -0.168089397435747 0.02890991779143854 0.9853477412177792 0.168089397435747 -0.02890991779143854 -0.9853477412177792 0.5960603579688953 -0.6811454613724286 0.4251504558503186 -0.5960603579688953 0.6811454613724286 -0.4251504558503186 0.642457615765161 -0.5591213942028391 -0.5240529348167207 -0.642457615765161 0.5591213942028391 0.5240529348167207 -0.6860462605246198 0.7270928103701851 0.026011027049533 0.6860462605246198 -0.7270928103701851 -0.026011027049533 -0.1672078096097679 0.0635631640950807 0.9838705568192014 0.1672078096097679 -0.0635631640950807 -0.9838705568192014 0.3991470387627658 -0.8338683812760162 0.3812416086355626 -0.3991470387627658 0.8338683812760162 -0.3812416086355626 0.4366355637622926 -0.8983679002551223 -0.04779644598908765 -0.4366355637622926 0.8983679002551223 0.04779644598908765 -0.2165491592345843 0.5605205997528345 -0.7993266659429781 0.2165491592345843 -0.5605205997528345 0.7993266659429781 -0.395878753458329 0.8145817266860315 -0.4239535624446186 0.395878753458329 -0.8145817266860315 0.4239535624446186 -0.1470001632110153 0.1606471829413976 0.9760038087164046 0.1470001632110153 -0.1606471829413976 -0.9760038087164046 -0.1367704356193799 0.1896404371318128 0.9722810049285855 0.1367704356193799 -0.1896404371318128 -0.9722810049285855 0.4363268549376191 -0.7641342532907666 -0.4750975885099907 -0.4363268549376191 0.7641342532907666 0.4750975885099907 -0.4488588098000007 0.8930220883870532 0.032207429542781 0.4488588098000007 -0.8930220883870532 -0.032207429542781 -0.09536560608358956 0.2728967479651381 0.9573049493898803 0.09536560608358956 -0.2728967479651381 -0.9573049493898803 0.1991484148306641 -0.9116095558872244 0.3595941135301458 -0.1991484148306641 0.9116095558872244 -0.3595941135301458 0.2176539959285311 -0.9751768928606872 -0.04070338667628007 -0.2176539959285311 0.9751768928606872 0.04070338667628007 -0.1020086360497765 0.5870416815121564 -0.8031041665554002 0.1020086360497765 -0.5870416815121564 0.8031041665554002 -0.1981121207031203 0.8828403326833408 -0.4258456699534237 0.1981121207031203 -0.8828403326833408 0.4258456699534237 -0.2257134547048324 0.973564616878436 0.0350053299877863 0.2257134547048324 -0.973564616878436 -0.0350053299877863 -0.08665208688554509 0.2887112025816377 0.9534868941638603 0.08665208688554509 -0.2887112025816377 -0.9534868941638603 0.2265500462827463 -0.8703548962419158 -0.4372155430871709 -0.2265500462827463 0.8703548962419158 0.4372155430871709 -0.1010732297696643 0.8940250761423974 -0.4364669122081412 0.1010732297696643 -0.8940250761423974 0.4364669122081412 -0.06445738612506215 0.342596166498884 0.9372689646383228 0.06445738612506215 -0.342596166498884 -0.9372689646383228 0.09421242280934485 -0.9292856702354743 0.3571444560446074 -0.09421242280934485 0.9292856702354743 -0.3571444560446074 0.1141520068239995 -0.9931836877053528 -0.02356866169407399 -0.1141520068239995 0.9931836877053528 0.02356866169407399 -0.05548150953601904 0.5705702570479805 -0.8193725549905893 0.05548150953601904 -0.5705702570479805 0.8193725549905893 -0.1183122180816655 0.9923409512272472 0.03551979124373652 0.1183122180816655 -0.9923409512272472 -0.03551979124373652 -0.06848399295769723 0.3517417087860151 0.9335886208651348 0.06848399295769723 -0.3517417087860151 -0.9335886208651348 0.1175068314992904 -0.9005861550453422 -0.4184933952784017 -0.1175068314992904 0.9005861550453422 0.4184933952784017</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"1518\" source=\"#ID1740\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1738\">\r\n\t\t\t\t\t<float_array count=\"5340\" id=\"ID1741\">-6.580618697481437 -6.545009713473284 -6.567617648033625 -6.606732382168279 -6.682986093858498 -6.636723984740837 -6.881886868690907 -6.456583340927664 -6.756099899164711 -6.426275566867586 -6.859254916403135 -6.517442078751968 -10.61693605112678 3.184827725803856 -10.74657196519547 3.086140098357892 -10.73262445343298 3.155608790016468 -1.533092614824339 -6.434690839908924 -1.559405791392609 -6.375650075232074 -1.412648348859682 -6.340772034012076 14.30898493615991 2.947457128116731 14.33751141972596 3.00117761298326 14.44051209027738 2.936797991894637 -12.06110462075435 -5.035157135385706 -12.05809024149011 -5.098522253808291 -12.16418758194686 -5.123866330376003 -14.28814175341842 1.085588573710755 -14.2824434631127 1.015401747004727 -14.39929201747007 0.9912305055100119 -10.42933963478339 3.127297029085289 -10.43391457166809 3.05891381887446 -10.56001487618986 3.029461348607242 11.45762516172873 6.540259670332341 11.47797163129741 6.589504610126216 11.5973584461837 6.513844369553664 -1.137064559277398 -6.562851727461976 -1.271113876150494 -6.597002986620765 -1.151641495433576 -6.502319096981208 14.36063873912256 2.926066127749094 14.49201889613716 2.914338663113008 14.47716685152766 2.853122092708056 11.70748954317793 6.478829872756479 11.84637456995346 6.449777749136851 11.84093961111974 6.391715699527722 -12.26906940977927 -4.818979687707555 -12.37360027290782 -4.906634087921719 -12.38566096444787 -4.844084924398307 -14.46544077452874 1.025991648232917 -14.35893502858219 1.050252502010602 -14.46923482461555 0.9552788433374404 7.739432046823051 -10.03694049230219 7.639865864740337 -9.983099743997331 7.788914935261003 -9.989105445713978 1.776162464053896 -11.05068803421863 1.665101898714817 -10.99523746474838 1.835380771051105 -11.01096062030451 -5.51283250728245 3.713463970245473 -5.492925841198693 3.780127176594322 -5.358548342198889 3.813470732354115 8.498016943087372 8.575624199463169 8.654092498597761 8.533859822440421 8.648754551688274 8.482249557601401 2.154550179828575 -6.049267118074262 2.132428225229554 -5.990166820626622 2.295670935413403 -5.951642658655977 8.789434211505821 -1.333744793888774 8.78660936696904 -1.262091227687889 8.931615188888184 -1.28876984275119 15.16729014396182 -0.9180957161036953 15.26952992075916 -0.9688286178485134 15.12876549151582 -0.9725522853113809 3.599636952745333 -1.413590562477219 3.433219173912354 -1.452833223600031 3.431199227589967 -1.38114939033275 -15.14559909809822 -1.830127624946375 -15.15581010256368 -1.89288024694656 -15.26670342851949 -1.912248653014465 -15.25394005643405 -1.482299422728862 -15.23889520811196 -1.552078610595723 -15.36006185113027 -1.570071821484925 13.85366256063633 -5.420686821229857 13.71907883153179 -5.432419650090949 13.72955096136054 -5.37130008509078 7.549530277180296 -10.14466754688337 7.586489731770421 -10.09078718230263 7.698527486315976 -10.15142284030032 1.443950192576218 -11.23213334560071 1.48862060606892 -11.18611617644985 1.613950649777629 -11.24962180671451 -5.26436046835787 3.677468389356899 -5.411283838790938 3.643250863079274 -5.256608640031511 3.742883125396392 -0.3357938802278748 -1.464238976150553 -0.5205981776007085 -1.499422698088571 -0.5219607647003055 -1.427740732370425 8.00466637656822 8.553374808734567 8.025367063583357 8.595594769838016 8.16254167270783 8.516030499292146 2.513018264421359 -6.144422261422504 2.363355207479492 -6.181765356209835 2.503714277356395 -6.083463704108516 8.793899512558674 -1.342409054410137 8.936080091119722 -1.297433323036027 8.939069665865294 -1.369088249545524 3.601889307207162 -1.485948865938943 3.433482610389947 -1.453520654717407 3.599900363322454 -1.414277925622595 15.13150972544219 -0.8935372586893242 15.27225588363935 -0.8894082489526436 15.248732610583 -0.9497920914519146 -0.3405600250748775 -1.516300042088481 -0.5266630625965385 -1.47978758183525 -0.341858146444467 -1.444605871307476 -15.18190061644777 -1.693846131829051 -15.30408639043193 -1.774969756514498 -15.30295819003457 -1.71251456640385 -15.34925793102598 -1.576142044610847 -15.23814176621759 -1.557580808910237 -15.34359016192504 -1.645854029450044 13.73176474112583 -5.594929424044595 13.6227734567117 -5.549565167589616 13.75754370861559 -5.539241983940605 15.26794181216265 -1.201586369010382 15.4026095543531 -1.144914174005858 15.40571873838469 -1.21656415117917 13.48542759954237 -1.187513996421264 13.61668585883023 -1.136727326662673 13.61880185168607 -1.208401062036025 -2.825915076579227 -10.47298883662777 -2.960545493628167 -10.41543244096379 -2.768166969085556 -10.43709035758611 -1.576757897260338 3.588180983045058 -1.560462817920151 3.652616633508753 -1.410422583172373 3.689011024111676 -3.855155477236379 -1.513649149798202 -4.053412360945431 -1.474737389203775 -3.855770975181954 -1.441960805270113 4.724495152034121 9.853778914633699 4.899144023582807 9.804261874598007 4.890014490506999 9.75958378494558 5.551234798891407 -5.548974550687335 5.534993013697682 -5.488922348098751 5.708732910407464 -5.448701022701108 13.4905068726135 -1.195619266123532 13.48703512130899 -1.123977794312584 13.6217650401156 -1.144832449562632 -3.201129253911908 -10.66053231288505 -3.16082607796162 -10.61822488135849 -3.00915445380823 -10.68430400185338 14.37427292395258 -4.176146895236155 14.48831819664287 -4.213143445949156 14.33046992460895 -4.229073863684964 -6.369583058882933 -9.699417895355477 -6.340211027574866 -9.656796230945387 -6.169441283768498 -9.725494835892333 -14.64957652871657 0.923466453846057 -14.66872736513775 0.8628490103790216 -14.79396394674563 0.8493250318827015 -13.95363701997803 -3.483949602294809 -14.09018366605725 -3.496235699392138 -13.97401382069266 -3.415959253979947 15.33774035154781 1.482968778162605 15.20555793672612 1.454279869603094 15.18685504058227 1.511689594454686 14.21924000644283 -1.337679074555944 14.21686019370335 -1.266011810181029 14.37169429347407 -1.275618970363387 15.26796047500114 -1.202005770447221 15.26602492824712 -1.130328878983037 15.40263019764715 -1.145336487865999 -1.267835338164149 3.498298483228099 -1.431319179278802 3.46084420333183 -1.264503010966737 3.561181434576645 -9.160814424796168 -8.499192251752284 -9.144238663360635 -8.454079626645166 -8.960772650829012 -8.524847766534801 -3.86164844663055 -1.420083168817847 -4.059290449338185 -1.452857450474979 -4.059859140568322 -1.381171091724309 4.214209765097551 9.706760423997796 4.241542992263189 9.742374720772524 4.390780778657863 9.661658774634711 5.81186686549028 -5.573885606192285 5.652480019532534 -5.612966590725296 5.809591946258694 -5.512318845908505 -6.033043384738718 -9.582836337394287 -6.18482113180164 -9.522118487933822 -5.984319102058612 -9.5464225342368 14.55599533754309 -4.100115412335536 14.52721092316535 -4.156341655985824 14.39840191736806 -4.117537457912769 -8.838526383720716 -8.422930952291223 -9.001390688661905 -8.360520461954543 -8.801007145604851 -8.384468629366044 -14.57989631441111 0.930398879062954 -14.72494760888468 0.8570637678566174 -14.7163862676825 0.9179154899456861 -14.0306366128091 -3.579026633172484 -14.04018196318075 -3.51161279617297 -13.91489750526628 -3.498366077317781 15.41082394072371 1.048020730342602 15.41000292946648 0.9933688473472547 15.27762056853224 1.022420357830555 14.21925518578394 -1.337701234835617 14.37170946756895 -1.275641122667588 14.37401384332346 -1.347306285535949 13.0887863053135 -6.493482618447323 13.06315073182448 -6.545122205857973 12.91092616280336 -6.520870100630303 2.127796006892804 3.268686239813019 2.137888030772398 3.331121076362597 2.297674464496027 3.369178892006708 -11.37844683521693 -6.982809433271168 -11.54227904446258 -6.919146089585195 -11.35264213589822 -6.940464393467607 -6.969309814844864 -1.426064401907399 -7.169138685558715 -1.386538944137186 -6.969196157910561 -1.354376702983068 1.42520110639496 10.39663474916311 1.612490304249503 10.34081313466535 1.592711432960707 10.30223042044524 8.453040928387372 -4.992847012691402 8.444295306881864 -4.931639694667493 8.619460029473876 -4.89075152620012 12.76951926405819 -6.58402051542777 12.90328343694316 -6.608753264278488 12.72476870385108 -6.633364448175943 2.407180428441364 3.204189162625434 2.23306101354886 3.164845509836631 2.403265162843157 3.264996539024871 -12.35283524094875 2.180077371835965 -12.49521664307451 2.170956610667029 -12.33259332827868 2.239193604852102 -11.69818573484253 -4.611799464835253 -11.85326884084011 -4.619672060400372 -11.71832234626677 -4.545844331156123 12.91355851458836 5.873539148831609 12.76729556861925 5.836704493622889 12.73843114318628 5.886420206183411 12.09933149555814 -1.413658653592374 11.92509416941972 -1.480043363795554 11.92360826871389 -1.408364807887314 10.73634488754209 -8.418595656168597 10.89032174383181 -8.434532527665484 10.69717051496003 -8.46467865356014 5.643858274455487 2.926661275647715 5.468269400764852 2.886867463753028 5.631447352565838 2.985822581768346 -11.65582502015529 -6.98915157199934 -11.65108099485204 -6.939921509951684 -11.46645447821991 -7.01188800712644 -6.965985707632302 -1.366717202869575 -7.165927874619835 -1.398880831512013 -7.165827256803913 -1.327192503347199 0.7801477962360326 10.10764074744187 0.8182364949793919 10.13751902548013 0.9700146556492773 10.05749671451439 8.723178341362342 -5.015695452878983 8.562511038127378 -5.055254750609865 8.728457801296788 -4.952684578861925 5.345906999601398 3.012691888508398 5.347606173231061 3.073562544472592 5.508696716004757 3.112041933800061 -12.40414412804927 2.093244503543819 -12.39614885820377 2.153142600001177 -12.2411624686734 2.160950347915142 -11.78142239803167 -4.708666933913214 -11.78914349148463 -4.643650716949074 -11.64676366339286 -4.63451476242067 13.18444934977494 5.405790420926806 13.1910463331518 5.356494691067041 13.03692878725645 5.37220248823331 12.09903157083867 -1.482461054462999 11.92326983500567 -1.477153316455752 12.09750765770709 -1.410769412804343 11.19293202676992 -8.361555992246322 11.17581316769602 -8.408864006524265 11.00078907970504 -8.395455855922011 8.349940607121187 2.770164038364921 8.343046405724209 2.829879762215903 8.496457616513332 2.867464522416447 -13.73781930567416 -4.950021043184917 -13.5667927907526 -4.966126671524558 -13.58339781367837 -5.01373858803485 -9.787465578114976 -1.33714349510687 -9.977689162282866 -1.298547919271151 -9.786660593367122 -1.265457920206907 -1.540663983600659 10.42391404241789 -1.698261919738346 10.5165668192658 -1.508151406391066 10.45762366983972 11.17020878208226 -4.338152115199367 11.16822940178264 -4.275023718190871 11.33502815430458 -4.235091375357936 -9.657233538443592 2.681820150366768 -9.813195316583219 2.675426316849174 -9.641494532806298 2.740761166024233 -9.178178231308547 -5.285337157931499 -9.348074900643844 -5.290382256160782 -9.193859608338926 -5.221213654048633 9.885571768328758 7.863936913957202 9.717679502805417 7.823330067871 9.693210009691446 7.869007899782335 9.512450238363343 -1.510120633095816 9.320747298568746 -1.579336947718089 9.319975255294587 -1.507637855880181 8.437421926016747 -9.860048553291033 8.606893690995154 -9.870739657042387 8.408286612285954 -9.903569669546064 11.43900873246514 -4.344292112528978 11.28606236631415 -4.3830315371237 11.45024536052453 -4.279344105490417 8.625209168225046 2.697365357843957 8.457966351327173 2.658536111132082 8.604871386527611 2.755473851257801 -13.80607872821243 -4.950517452724858 -13.8085196224234 -4.894970160690024 -13.63523288702387 -4.967768993194435 -9.825403099073675 -1.1267962098599 -10.0164357063077 -1.15987177837336 -10.01604388857866 -1.088538960955641 -2.416974896300678 10.10841135529833 -2.367217661635781 10.13394259615223 -2.223841672100698 10.05590036790189 -9.714052122718687 2.55395860802712 -9.711995436647182 2.613926362003435 -9.542096120738417 2.618876750620487 -9.276235356357377 -5.384468978016525 -9.278183705883597 -5.32150953395901 -9.12222877247862 -5.315013201765334 10.22243353383894 7.392617643500108 10.22301859722848 7.346483456068675 10.0533596751163 7.35516742620614 9.513631385594843 -1.5825512236796 9.321187330051941 -1.580077940731893 9.512890162017262 -1.510861441294382 9.011320398795435 -9.846726940850362 9.006295466617312 -9.890532321696613 8.813975425696585 -9.88397028792234 13.6283101194571 -3.333011606144537 13.6301839502992 -3.267481406042489 13.78103525783518 -3.229909684064479 11.23578323518249 2.432169448976095 11.22197592125114 2.491453418764042 11.36059798039002 2.527000839227673 -15.24219524522934 -2.147910153808393 -15.09069163087842 -2.155463254795222 -15.10501134657915 -2.209890196813368 -12.61653793888787 -1.099487738837097 -12.78996521975508 -1.064551872379149 -12.61567482503242 -1.028157486989288 -4.514463801464838 10.22908780676873 -4.649449032964846 10.31928223269812 -4.469241791069255 10.259393133881 -6.898059523765879 2.935309156349139 -7.06036786434691 2.929920571296418 -6.89002090736066 2.994964498730822 -6.4768693768259 -5.802689461290159 -6.653575517158874 -5.806687320941736 -6.485699800785439 -5.740095647568451 7.016357742053017 8.746921207086649 6.829475787650675 8.704571097402486 6.8162270405816 8.749514948466191 6.812687123351545 -1.570667613968221 6.612521211682392 -1.640945252495422 6.612478742513698 -1.569253106600074 5.779856660322627 -11.04698341280049 5.956274989550351 -11.05623514011434 5.76305316106203 -11.08893340390857 -5.398781630269481 9.835257217887111 -5.340262316193581 9.858328963978593 -5.215213233226105 9.782059105907912 13.85850269088957 -3.291224874435558 13.72033593265452 -3.327852831506265 13.87226008146309 -3.224021153701466 11.47884612410998 2.370707512678263 11.32763469245847 2.3341287484315 11.4528811563251 2.428607235668462 -15.2535181349102 -2.106908730339627 -15.25836441831756 -2.04628258371339 -15.10205393297601 -2.114936106408872 -12.60691287598073 -1.054252242449673 -12.78120227643468 -1.090649574333243 -12.77826650363888 -1.019032138509699 -6.977266672820781 2.819025713613953 -6.98348601445656 2.879881379179938 -6.806745836905758 2.883787073659976 -6.587756763350166 -5.897017118716976 -6.582343092500292 -5.835702020549165 -6.420042303747156 -5.830174464184631 7.352899858918036 8.284719654169544 7.341596596604858 8.239010029899403 7.164996350990712 8.24526589774629 6.813826939136831 -1.644364765160081 6.613677082927434 -1.642956700035511 6.813842734205907 -1.572678602544766 6.45561059982691 -11.07378386689607 6.46395966180476 -11.11541748444512 6.263811337699195 -11.11130890824892 -7.4896043285356 9.650721743375158 -7.59932281454822 9.739501582872135 -7.435656638661346 9.679884880975632 15.29262319608855 -1.607508324843404 15.29328082124637 -1.539440722165434 15.42508685680786 -1.505608493010264 13.89984302429149 1.612364449169118 13.88311681005951 1.672334928638294 14.00406654530691 1.704928375628051 -15.28946899818318 1.47629385012519 -15.15330884157945 1.478704050245536 -15.17098274107001 1.419570661111087 -14.80515277802571 -0.9036683428333258 -14.8085897588165 -0.9752719773663642 -14.95994028606035 -0.9444455687562027 -4.004611721636414 3.224448327942247 -4.16439719315087 3.218368710771394 -4.00523925739104 3.285498351391439 -3.525613296463322 -6.290315199046522 -3.700902602954646 -6.294977946562653 -3.526950387315453 -6.228861380004147 4.019128095171453 9.21265159326504 4.216147713730148 9.208763189863083 4.018671019552032 9.166086516832904 3.879644224425563 -1.596352886128034 3.681901906438548 -1.665818496212343 3.682604549984756 -1.594134463565752 2.530786356206917 -11.98103156753165 2.352255936779051 -12.01025137141678 2.35749035013115 -11.96830449992463 -14.93783250703113 -0.9199274905746537 -14.78540593368363 -0.9508055480783045 -14.94018901959406 -0.9915931604994908 -8.369275036428196 9.172063195774641 -8.302263925849339 9.194573360537296 -8.201790501962247 9.119416714856088 15.32434054185617 -1.526890769140963 15.45579366934975 -1.424184296665054 15.44501229547651 -1.49366580413421 14.11532223931024 1.531544655849606 13.98322776896051 1.498268720660948 14.08813296315718 1.59035487382117 -15.29430011815301 1.530169201172563 -15.29253058392694 1.595581857050894 -15.1581444831912 1.532732608428125 -4.058883089848411 3.085514390787332 -4.073465714486674 3.14769619433696 -3.899516138725254 3.152336453714596 -3.572284764846403 -6.466569931810668 -3.558406321219816 -6.406267497356507 -3.398634912760937 -6.399963308387198 4.552296166406597 8.749981776186615 4.529059490484951 8.703150495698562 4.353890163085291 8.710061516263082 3.890830433234426 -1.688761907672652 3.693769104214244 -1.686537598712137 3.891508959769352 -1.617067650930654 3.135413932412313 -12.04928645761342 3.155189195964897 -12.09127973286478 2.958368440101325 -12.08364558267659 -15.45179350199093 -0.8108783782093466 -15.45489039400424 -0.8825266134035953 -15.58968420799133 -0.8571572623338638 -10.6288286384174 8.353707500251726 -10.7079782300312 8.443173295059195 -10.56775234872707 8.384966708096389 14.98504350561728 0.8932095856606679 14.97824207983449 0.9630020334364804 15.0955806585724 0.9916757394352925 15.53991589285761 -0.4072276683117909 15.52720097191658 -0.3454532515377727 15.63448253709443 -0.3166197435687619 -13.23516410695105 5.172889418019462 -13.09944546757803 5.186906493985469 -13.12796202377806 5.125445020432204 -0.7714234616223903 3.569497695964973 -0.9202629271224827 3.561122633958776 -0.7799017318880719 3.632376091183371 0.1656356926783598 -6.89096651016542 0.004784692386134992 -6.89859131050403 0.171236231494023 -6.829842298317031 1.061959575325601 9.468422412170185 1.24545871531379 9.460108100923545 1.049723399136092 9.419080201494202 0.5231611971093531 -1.603350003673135 0.3370699779424913 -1.670258122669144 0.3384888140735509 -1.598570567462979 -2.433997532195966 -12.1929427012513 -2.593059003934676 -12.21337891439185 -2.593411621858572 -12.16859762168006 -13.30336674209489 5.301667592890514 -13.18135620361946 5.249945769596239 -13.31691957776318 5.235027842207697 -15.58653943729579 -0.7855254209561395 -15.45178502990319 -0.8108934204931523 -15.5896757392267 -0.8571722984902477 -11.51936289142144 7.675549632771387 -11.45083636673444 7.700794083951917 -11.37432675960208 7.625162732531086 14.90602371303191 1.049369786129195 15.01538811441356 1.14864303110114 15.01345585400729 1.077854229522494 15.66975608881318 -0.4911047002283587 15.55242944620488 -0.520159475879824 15.64794960475148 -0.4301726425674983 -0.7912545568075957 3.421809981775434 -0.812757172466364 3.485604502693287 -0.6506196923301988 3.492728710202487 0.04031753644333835 -6.938102185477932 0.05787497746319148 -6.877980049121938 0.2066783875467149 -6.869217465137623 1.555805246969699 9.059057021365206 1.519814634586167 9.00947316056442 1.359276784555576 9.020446762671895 0.4838123445634712 -1.611748782600903 0.3001114271489069 -1.606924269512813 0.4862089657499891 -1.540027028526313 -1.806813482336177 -12.36058167089581 -1.782046272876322 -12.40751261267392 -1.964752550151362 -12.38583687432793 -9.364868457319943 7.841968717887717 -9.404274314388495 7.782022322527892 -9.514291688348363 7.817861846619273 -13.00588378390801 -0.8330881645659296 -13.00921958271158 -0.9047294657183257 -13.14133814969962 -0.8852845692050879 -14.10662791163087 5.146832549511292 -14.17206869042138 5.239095622041519 -14.04973001711376 5.186073799696009 11.87582082679493 3.174077517464692 11.85862862908628 3.243578971293362 11.97435313651517 3.265965803721697 14.24415916065581 -3.699885454686495 14.2433433916009 -3.636587915769243 14.34888102482089 -3.612702452326936 3.082265902202215 3.913234350788317 2.949879546846864 3.901073276272257 3.06862831925348 3.978355594566274 4.638556061977957 -7.082302383479022 4.494472431598605 -7.094157831914902 4.645067237443768 -7.020827165557492 -2.258038310727093 9.539468265293392 -2.095500805512067 9.523668310217966 -2.281201335801816 9.485355998138813 -3.758985514210841 -1.436225758280148 -3.924511705853747 -1.498961607814649 -3.921467008486363 -1.427255068912489 -9.942859975291702 -9.737197332008847 -10.08385967003032 -9.737458014349842 -10.07311078507561 -9.687351915146522 14.13219270095305 -3.75542860612047 14.23796080910545 -3.669030738188305 14.24742880761821 -3.7318278326521 -9.692573401430575 8.017214571832103 -9.567163615954282 7.979171406292741 -9.716153039117891 7.953456566602755 -13.13636509854378 -0.8161126710265887 -13.00435282828845 -0.835552906974163 -13.13980714664969 -0.8877493877843717 -14.61132809459356 4.133016612116871 -14.73902312735568 4.177542038502442 -14.67768843796868 4.210885943633517 11.81382164778991 3.35991687746054 11.70782989559965 3.33731003177597 11.80542024055859 3.429818317153772 3.084054598257912 3.781063644743033 3.059008768636864 3.8467800671526 3.203147841068263 3.858017235194181 4.640534808377569 -7.205309901937741 4.658401343593503 -7.144308835955269 4.790673709270291 -7.131402974614767 -1.777453462061554 9.165138723842739 -1.820684873074955 9.112184883238179 -1.96392635099604 9.129222911432287 -3.713016996837181 -1.586432416109982 -3.876397154170795 -1.577505932639365 -3.71087700645962 -1.514760215541944 -9.935098212837286 -9.770221769537702 -9.928915609223267 -9.825435982157931 -10.07609767572446 -9.770551036172224 9.535254719845881 -6.232486872110084 9.547416077059241 -6.169977481532637 9.664144208440034 -6.152083811655688 -5.202437761249897 9.098226050134119 -5.246985562162003 9.041825168459443 -5.372201684154333 9.0667502344476 -8.169380333522604 -0.998140020974474 -8.172333180839713 -1.069790248980376 -8.317069662718822 -1.056185649157978 -15.53708250320204 -2.251370365196449 -15.56791830901686 -2.304769315519559 -15.66339926021932 -2.217943928631032 7.190374158714231 4.14387548593698 7.16637335975607 4.211502502977067 7.293903690933179 4.22756430462664 7.623017113961595 3.918334089413627 7.507695615163 3.901060666062974 7.609282664872703 3.986084436598195 9.937161022967274 -6.359847681237002 10.06409273077519 -6.279461156273472 10.06269187858483 -6.342050763081067 -6.042398342483293 9.076543377210122 -5.902190296778123 9.050166540243174 -6.069234815193065 9.017255839469092 -8.860293170789058 -1.363260985078544 -8.717265287849051 -1.37745368279562 -8.863173737785129 -1.434917132087402 -15.54588277960083 -2.300117636965598 -15.67386043491606 -2.271009447778388 -15.63233045989777 -2.226233122461609 7.127076406813334 4.30648851770742 7.010063381235103 4.289786013635767 7.112978878199199 4.373942213029542 9.365989235203019 -6.175965195635077 9.495627012248997 -6.096310096386373 9.493297944669719 -6.158811689884664 -5.626765668099157 9.373422181532749 -5.484536290666949 9.348316109263141 -5.653651189339984 9.314747731718946 -8.320882227736359 -0.9741148604507341 -8.175970906962778 -0.9877206687505513 -8.323660932723731 -1.045765200133378 -15.29985691444622 -3.123406437962885 -15.42886369827114 -3.097095081416124 -15.39058877662906 -3.051099015080164 7.703689925709059 3.739906870570485 7.680092902839074 3.807750538554544 7.80597269273771 3.824412889779136 10.11197049403219 -6.404336089477216 10.12307435948808 -6.341661858037234 10.23808752303897 -6.323159921128914 -5.622323037873064 8.794266442244357 -5.66679086339616 8.737492485458621 -5.790007307260759 8.763434754360988 -8.71332912534854 -1.3836606494726 -8.716209437777366 -1.455319908141439 -8.85923718393571 -1.441124713702576 -15.74112137389917 -1.379939906837552 -15.83089195408338 -1.291204338195767 -15.70609736706944 -1.327881354721675 2.668957752347219 4.11398850238898 2.644058069704343 4.179481329382527 2.790273579329713 4.190200612134772 4.110704377365827 -6.858048905277235 4.128872676387156 -6.797175811182837 4.262918876140688 -6.784782652748659 -1.404548250035355 9.402043598154606 -1.447358125095773 9.349547274608119 -1.592685016488453 9.365794399010678 -3.142255332231726 -1.190604595156031 -3.309399930982235 -1.18223930450561 -3.140241197251263 -1.118938432231013 -8.884739533256173 -10.30055981670408 -8.8746530565973 -10.35495896236701 -9.027896891744119 -10.30477273628952 12.25230914127811 2.830885924238499 12.14678909668437 2.807636870818182 12.24476854587685 2.900972728124928 14.46950347790334 -3.751846905612519 14.57341788799027 -3.664906214825244 14.5842967264192 -3.727604863342996 -10.10915643332227 7.601517383621898 -9.984934002081559 7.562044962447504 -10.13208624570263 7.537317666313326 -13.54652455382239 -1.212685624363464 -13.41493796144714 -1.23274352628007 -13.54984038915993 -1.284333229776651 -14.31552014081287 4.540011722011334 -14.44437455773784 4.585467759621272 -14.38166273281025 4.617646058061919 -8.992810656003718 -10.18550474366308 -9.136006742442406 -10.1888041041313 -9.127637057064113 -10.13972581033172 2.64541488824554 4.267441028695297 2.511268042398294 4.25574119252915 2.632188799017837 4.332340862186194 4.110214696525336 -6.72600436272806 3.964135035991645 -6.737327709543592 4.116794042818764 -6.664636040505522 -1.847994126281742 9.726975441471867 -1.68154386583189 9.712369976900524 -1.869009832302726 9.674030376466263 -3.221745658877027 -0.9840961042457377 -3.390913981113689 -1.047381117225486 -3.387390757737077 -0.9756486725148655 12.31086394288981 2.638894324171158 12.29469950298908 2.708522654783262 12.40982838366794 2.731584851287013 14.56781304329401 -3.684253140151958 14.56561528418519 -3.621025071170431 14.67068615442086 -3.596549445688026 -9.79429850738692 7.422103133151579 -9.832748794853689 7.361829306246924 -9.941855832659382 7.398917779285227 -13.41536406114684 -1.232052822969565 -13.4187394178731 -1.303691732214197 -13.55026649850321 -1.283642510860688 -13.75606080583945 5.54957007316308 -13.8214887016976 5.641594391354468 -13.69804627494504 5.587638493520042 -1.221213860760367 -12.28941609449073 -1.197314620885995 -12.33522616255462 -1.381018567246686 -12.31575286127009 -1.158444741834577 3.776285934969499 -1.179315014711423 3.839930993540694 -1.015625787160668 3.846724503200335 -0.3639596171475557 -6.526495008969826 -0.3467953056654904 -6.466407244800233 -0.1964911856277107 -6.457981244297234 1.889308263414858 9.245364640510919 1.8560148969994 9.196471474896031 1.692605215227949 9.206681508849934 0.8311335920267338 -1.171595201869042 0.6469610273251247 -1.167087605318954 0.8341172451760792 -1.099847614205433 15.08582761132801 0.4219027948256017 15.1972816313386 0.5216801222266934 15.19423004530341 0.4509408901608906 15.61597067828074 -0.5544253552112738 15.49766385890772 -0.5839776656338219 15.59329687845167 -0.4937406854428438 -13.67695675489851 4.671155136831288 -13.55390223659972 4.618128351257922 -13.68851524023786 4.604333191912186 -15.65335930625685 -1.200253474075816 -15.51741693607865 -1.226221228726238 -15.65648638482215 -1.271899355939858 -11.18419981902873 7.765024509756246 -11.11554434043974 7.789825135613168 -11.03686915883918 7.714214129428135 0.8628927635053685 -1.149246746696862 0.6757410017744359 -1.216494412927886 0.6776162145131159 -1.144761328936643 -1.817296954238128 -12.12292682149871 -1.978216785636624 -12.14465921332994 -1.978660335218768 -12.10025498667682 -1.119852415948217 3.905701574361555 -1.270188663992674 3.897638071339116 -1.127604301284266 3.968370140358324 -0.3149882110398894 -6.385162711576555 -0.478664682763138 -6.392250897908245 -0.3109104338240121 -6.324171217182053 1.35602465911457 9.692105094374945 1.540020729240347 9.684324940488828 1.344216351572449 9.642916334152829 15.1503181862958 0.272451662028181 15.14440741345618 0.3421599203781767 15.26291134869998 0.3714343502470228 15.47546960258415 -0.4726056566771423 15.4619154372069 -0.4110595507947483 15.5702187722331 -0.3817935148578727 -13.60440101994327 4.519074513822507 -13.46962933206102 4.531875006477813 -13.49633283110545 4.471036214690025 -15.52339401901288 -1.215887594823921 -15.52607384501523 -1.287495597378499 -15.66245767488744 -1.261576634875901 -10.30287224798799 8.422158584401114 -10.38477487025269 8.511374836302048 -10.24206885150665 8.452964559084938 4.193413526692812 -1.248979369953439 3.995989188438798 -1.246889332118508 4.194617944274724 -1.17723737563748 3.545434574107766 -11.8403693110206 3.564458668862518 -11.88217705283562 3.366580276825393 -11.8752744320007 -4.381486190343945 3.430189749235295 -4.395274028373782 3.49221306336199 -4.22059861230353 3.496696702811534 -3.906132402229603 -5.989536288718155 -3.894246243631405 -5.929180494614697 -3.733804005271036 -5.923050460604896 4.839475801182161 8.951908471804766 4.816660144011579 8.905178595681052 4.64211224373599 8.912059416234641 15.26769483598374 -2.028982905709747 15.39941025645091 -1.926008699285874 15.38870377049515 -1.99536231905134 13.87683702687967 1.295577712842807 13.74277741991184 1.261920781824981 13.84948743201057 1.354218300739058 -15.38503010703776 0.9190988764496163 -15.38396194352577 0.9834567520767894 -15.24800374380212 0.9203888456145569 -14.80542258483778 -1.37304428388984 -14.6519647618678 -1.404397022819082 -14.80700106420073 -1.44467254877207 -8.069483288834693 9.100067508489389 -8.002998633579212 9.122461408995804 -7.899822687477273 9.047370810969055 4.30050980966578 9.40638186612038 4.497896969137264 9.402714164536823 4.30148408259397 9.360057245213058 4.210324558875172 -1.204736203883551 4.011699039759829 -1.274393872179983 4.012268808980655 -1.202689337845282 2.94635723149312 -11.7582358396856 2.766001547649617 -11.78797834450742 2.77226467546402 -11.74615678653372 -4.311075727597036 3.549367622226657 -4.471530230414992 3.543439572157604 -4.310820513849258 3.610212116165647 -3.820722736339858 -5.863601551858727 -3.995390741770848 -5.868226454835453 -3.822853797049344 -5.802076190336565 15.17813959311702 -2.197897267570782 15.17832423091742 -2.130718778289336 15.31206718285843 -2.096704259321336 13.75471368908578 1.245959351470354 13.74009231762092 1.305504866232826 13.86151359312978 1.338192505089929 -15.38346210198331 0.864612924360296 -15.24643481378675 0.8658405848337932 -15.2631686191402 0.8071703815371325 -14.66661126842772 -1.368813502006148 -14.66894932222831 -1.440483344197503 -14.82165237035537 -1.409077592683825 -7.156109762578709 9.611477304658802 -7.267157639433686 9.700499709311567 -7.101428897832124 9.640557950184437 7.642933539818706 8.4514581814478 7.632939746545516 8.405799115909543 7.456600956256732 8.412138919910097 7.09905506333754 -1.246225796623535 6.899143822007092 -1.244783890534279 7.098917666031889 -1.174519942877966 6.735946139475866 -10.81425805978309 6.742890926812308 -10.85601295253187 6.543109301778447 -10.85191920692165 -7.24931483410561 3.155942963884379 -7.254598685486653 3.216645642405485 -7.078148066229574 3.220562898325931 -6.881109201548074 -5.467438362678905 -6.876458184081285 -5.405999012727969 -6.71444189340942 -5.400458307481159 13.54289973800221 -3.793239524561747 13.40113671090732 -3.82994730857532 13.55555848570621 -3.726803055088812 11.22051562797499 1.971360530270614 11.06738780234263 1.934622185809914 11.19688747135034 2.02908810728976 -15.15944887014694 -2.654272722150803 -15.16462187738555 -2.594281710774259 -15.00716591901408 -2.663946858506669 -12.33003012466921 -1.538278183228604 -12.50642232294561 -1.574300370388085 -12.50492198873034 -1.502616647203531 -5.106572456921741 9.699955233492505 -5.047464832849933 9.72306287674154 -4.920092824371729 9.646643338529119 -6.765567956877243 -5.378664041690035 -6.942016859221509 -5.382683167631275 -6.775198665617581 -5.315935967627734 7.306945672480333 8.896659682715963 7.121645675312682 8.854428398166862 7.107055023237226 8.899338094212071 7.086927551773695 -1.153674396152059 6.887150959067983 -1.223933507323446 6.887086393422282 -1.152247544599366 6.068461076715506 -10.7707733757235 6.244596215789673 -10.7799484138813 6.050343053501913 -10.81279782146106 -7.190458301551813 3.296869990709006 -7.352481727994905 3.291459955852127 -7.181533645440522 3.356437144782981 13.4064024040758 -3.830027603750226 13.40800611262621 -3.764734657461192 13.56078239146676 -3.726844646767989 10.89275480103259 2.123704759042569 10.87935612045681 2.182979039270679 11.02147345875079 2.218828959770153 -15.14280266200676 -2.709862584694672 -14.9904621357679 -2.71895847218444 -15.00361624151294 -2.772085289375142 -12.3298287645453 -1.615197089627549 -12.50470098658898 -1.579540202041051 -12.32830907634541 -1.543517142056604 -4.2186634479956 10.10930458407336 -4.35782527381292 10.19994614024944 -4.174686778476256 10.13989285621025 -9.530881584966986 -4.958117123807443 -9.533598214238545 -4.894969342211351 -9.378692555904275 -4.888255413093771 10.51879056657059 7.466617310788993 10.52040027135098 7.420281349626403 10.35198833383415 7.429466775226744 9.779612343487239 -1.163778969753085 9.588536731702755 -1.161090864251027 9.778853876226279 -1.092095472159671 9.247523585465691 -9.548377605199301 9.241160229931531 -9.592469999068552 9.050207409363122 -9.585381227395791 -9.992750973069121 2.905388391185323 -9.989925676611493 2.965326665140856 -9.821266129877113 2.970493660435413 11.18021025093981 -4.798654021224784 11.02606697303592 -4.837560802460762 11.1909052307857 -4.733893111744886 8.327575597729036 2.348001471532391 8.15903106685761 2.309000791232402 8.307962280010665 2.406194939046271 -13.61096713852748 -5.41079182060458 -13.6137236618704 -5.35671007297559 -13.4379115757018 -5.428681550983511 -9.577047105168576 -1.68144576802487 -9.769848619206979 -1.714646780450293 -9.769111940770507 -1.642959206690308 -2.096594429976431 9.939152071445729 -2.047998874030708 9.965056443975168 -1.90320939661126 9.886777065068808 -9.928948534649916 3.019048413742917 -10.08386105505521 3.012433190057662 -9.912618715634523 3.077932273075196 -9.436649522835996 -4.854469034712737 -9.605332920141853 -4.85973619069905 -9.452922106823499 -4.790174331111039 10.18593894936577 7.919327916820009 10.02032773292191 7.879014533263928 9.994964991562728 7.924918970938178 9.782205087217882 -1.097721154188855 9.591888768740418 -1.166717956342206 9.591070573120943 -1.095021381572384 8.685295077323588 -9.545229928016722 8.853494574201475 -9.556302478471219 8.654940067597003 -9.588950585783939 10.90100930951394 -4.788306543495204 10.89838378838198 -4.725395104228611 11.06651389314619 -4.685297939273396 8.053966074678961 2.418914265419263 8.047912445656873 2.478726192902335 8.202526702783448 2.516458755327649 -13.54234860915186 -5.417300237040662 -13.36911470494113 -5.434087852022033 -13.38652101772389 -5.481126557379015 -9.57958417890816 -1.74669364855356 -9.771641843944998 -1.70820312804927 -9.578840097705355 -1.67500295009411 -1.232071204741369 10.26024010353983 -1.39133841086147 10.35304135429066 -1.200900593791367 10.29436270678662 -12.66814228241877 2.377350203719332 -12.65985061475272 2.437265019574824 -12.50661857132272 2.445496128669671 -12.03052410539118 -4.250910352726612 -12.03861942245435 -4.185663731301816 -11.89798321092683 -4.176183785629822 13.47992294829923 5.26206001227856 13.48652202046466 5.212276969555388 13.33440360260036 5.229012466248198 12.34952094851159 -1.06598506396593 12.17584834422437 -1.060290564118863 12.34793933833145 -0.9942963962296096 11.3988586349841 -8.025023599979276 11.38061846961403 -8.072729195697223 11.20772626084921 -8.058368713758338 8.4424042264723 -5.447712519310838 8.281486854483566 -5.487292765584106 8.446886637151334 -5.384866029489158 5.326202948193276 2.572171962007705 5.150342548509622 2.532346473062847 5.314659582432 2.631482032995606 -11.41694591869068 -7.391797075547344 -11.41107163624376 -7.343024311266442 -11.2260390863675 -7.414971645054204 -6.663163940965292 -1.773915639314141 -6.863368980011134 -1.806055580152876 -6.863333402150362 -1.734362497573469 1.123411846022329 9.899235056911641 1.160320994681222 9.929609107955077 1.312352450261986 9.849517003864184 10.95273527705855 -8.066561653166469 11.10484782493345 -8.083273682877548 10.91273131509726 -8.112912976540896 -12.62077190933074 2.457892391418022 -12.76140762630289 2.448407906507579 -12.60027454748111 2.517123744110278 -11.95378822116459 -4.146197175280741 -12.10702978057557 -4.15443346242402 -11.97416850944753 -4.080059809051368 13.21760574024167 5.721157335881676 13.07336636473598 5.684802709083901 13.04471307190146 5.735288867506887 12.35297015807041 -1.002215973513505 12.18088058096877 -1.068212428034827 12.17926693222815 -0.9965353506596878 8.154207475654019 -5.415234497688508 8.144706604398934 -5.354226727625072 8.320146068873566 -5.313348508334474 5.036468451197996 2.650618232763651 5.039082417752474 2.711631749460519 5.2004271591157 2.750120261643422 -11.13145969565566 -7.391439012256403 -11.29566255085978 -7.327883082870408 -11.10447404847891 -7.34957311867031 -6.661353700164007 -1.852639055062037 -6.861539409342557 -1.81309092649848 -6.66133457462573 -1.780950198004933 1.776404712719477 10.20105318224619 1.962748793365945 10.14560132187811 1.944060654455028 10.10636740511557 13.26146385023715 -6.106462768850968 13.23522851803179 -6.158547760548513 13.08559094550833 -6.132999753246461 -14.75266802473825 1.082403605504083 -14.89549335129753 1.008308709708283 -14.88724251443864 1.069351538455833 -14.21983854152778 -3.060925163840504 -14.22933759963834 -2.993283812426771 -14.10578324831537 -2.979534349015542 15.48160399255966 0.5770145181887046 15.47885196503021 0.5217674052181079 15.34902864631813 0.5526157947697609 14.4085589140391 -0.9186814868510287 14.55875325221186 -0.8571281806953498 14.56121365463613 -0.9287903644628499 5.622700034337741 -5.968613656585633 5.459599557046754 -6.008022127867005 5.619306958676546 -5.907207759221429 2.234185883457617 2.846221968502641 2.05619471312794 2.806527840834541 2.231453283260552 2.907232268431428 -8.946607458595071 -8.829138194235512 -8.928442840027005 -8.784425541352926 -8.740777747529357 -8.855817660330374 -3.64931768975727 -1.843105382720829 -3.851067051202477 -1.875538653393438 -3.851721353743065 -1.803851642590221 4.464883826458179 9.499526558368027 4.491027881312752 9.536029190383411 4.643341830391423 9.453439173665121 14.40483075529906 -0.9132789595077125 14.40244610638993 -0.8416120689180313 14.55502645137366 -0.8517277038589923 12.95794062711668 -6.180291355015434 13.08950781508153 -6.206091741606143 12.913023507048 -6.229985096728305 -14.8140162096653 1.059420999466457 -14.83266353466066 0.9985963012948811 -14.95615782680249 0.9845168882099653 -14.13872375661686 -2.969314619296041 -14.27335445897661 -2.982154651695046 -14.15887680713695 -2.90113161730601 15.43783777060533 0.9736996323347391 15.30620218310803 0.9463326193768932 15.28972980437781 1.00449669855066 5.300298042191185 -5.906065881053298 5.282977278655332 -5.84649076619006 5.460606203409836 -5.805843315806659 1.975272582752247 2.888976142369894 1.986781634531835 2.951575167215556 2.150279520351499 2.989951018310447 -8.617044218355225 -8.765436230663473 -8.783856957352235 -8.702500729815426 -8.577669085911051 -8.727410006077253 -3.652464057159661 -1.900252282074727 -3.85485969339872 -1.860995764877565 -3.653109946158304 -1.828563979354239 5.024587562277183 9.658440544008718 5.200860985140309 9.607414922305379 5.192864437241487 9.561645281532233 15.20139571713304 -0.7832599830878805 15.33667675910309 -0.7274851764706164 15.33977922602832 -0.7991350594632984 14.79933303406314 -3.341115508192154 14.77265350496479 -3.39836517498379 14.64320091501064 -3.356774936119895 -14.95610897954592 -1.909208840203968 -15.07599869206904 -1.991458496775166 -15.07751573528091 -1.928901275241892 -15.39326752157513 -0.7843296655218965 -15.28266583431196 -0.7647900852643523 -15.38973642756603 -0.8542764057859086 12.99926510517248 -6.365972724385981 12.89096280979466 -6.318940293998509 13.0298524886994 -6.311456731823297 2.23443586118247 -6.509701919163327 2.083014637381942 -6.547087535680173 2.223981335268463 -6.449144382802151 -1.582237017695348 3.153970070279289 -1.747768390871122 3.116335919057514 -1.577866681390738 3.217126931730753 -6.086444133991895 -10.02632646503929 -6.055284107720793 -9.983846051526383 -5.88265736500265 -10.05312735819156 -0.02282180959464641 -1.847353471482086 -0.2096720101373384 -1.882527368021266 -0.2110394681772509 -1.810845336039839 8.314236475210478 8.29180456189332 8.334324174282287 8.335217906230978 8.47216433976871 8.254142624876106 13.11564997703518 -6.271351032549298 12.97686232071334 -6.279926297514996 12.99238219867244 -6.219393559674243 15.20122131714194 -0.7829757674501733 15.19813309062258 -0.7113288802199134 15.33650224083415 -0.7272007832983679 14.63121237378913 -3.407336470604331 14.74471450841038 -3.446539825899017 14.58836189301911 -3.460772823618976 -14.8866795803959 -2.084725420977736 -14.8949642921855 -2.147673992041696 -15.00530682266275 -2.168100194095186 -15.28508189753491 -0.6949102504479959 -15.2715043214534 -0.7648946804394748 -15.39283394735346 -0.7838889417101314 1.892160919020289 -6.425902585879954 1.868767859027434 -6.366956771317088 2.033817736372647 -6.328577566966812 -1.794666810238712 3.158459666940161 -1.77672709548575 3.223006485215223 -1.624920812525558 3.259412909341735 -5.738308517484776 -9.9196026756715 -5.892018101380105 -9.858350346301181 -5.687844696006196 -9.88326371919716 -0.0195177593414797 -1.925601222013958 -0.2076687309883118 -1.889078926504697 -0.02081872739155832 -1.853904382528707 8.739247614306635 8.311403056835225 8.89559514850038 8.269860595000885 8.891695216677331 8.217201971763647 6.718849235909625 -10.21256745616353 6.614934288656784 -10.15785381161231 6.770911987895387 -10.16635193070093 12.80581362546677 -0.80648554750152 12.94019774484273 -0.756859543847706 12.9434178150733 -0.8285028390757576 15.12326805705956 -0.005724728568732991 15.26336284828557 -0.004608053785640344 15.2415335510137 -0.06540980439345059 -11.50453675627246 -4.949390297011129 -11.3841115316841 -4.923095392646786 -11.49038109852061 -5.011687906892525 -13.93860978541115 1.88165947576014 -13.82696621993622 1.907054775980008 -13.94476584078105 1.811030498634434 -2.078754942071048 -6.987921009483267 -2.210242828918581 -7.021818338598409 -2.092936155250775 -6.92718544558576 -6.151128742657361 3.304125242236099 -6.15877162023911 3.238327767956296 -6.302032922385633 3.204635065414963 -2.596341069426784 -11.00527113169676 -2.555269252944989 -10.96222996201333 -2.409159206372325 -11.02869179128193 4.494748338616994 -1.806386664472731 4.333051896468609 -1.846237497856189 4.330927366861394 -1.774552834468218 12.1120515392074 5.779978294847714 12.13426506364874 5.829747561268214 12.25054356714622 5.755275000657892 -13.75373242564983 1.925344024270304 -13.75142221387348 1.8552081856282 -13.87224284248714 1.82986253059147 6.486184885703263 -10.36384751618531 6.525792680336604 -10.31147456855855 6.642062520857404 -10.37341461552715 12.80655862080864 -0.8077278979498137 12.80324973613752 -0.7360785452619145 12.94094270752326 -0.7581018395624251 15.15939684649568 0.01018895454359727 15.26368926087048 -0.04398609028138865 15.12359326558368 -0.045005003937031 -11.19241568530256 -5.108324762408362 -11.18623690987708 -5.171355351421689 -11.29748715051238 -5.197797271961211 -2.41097718015388 -6.898922099391771 -2.436240357128277 -6.839506268963933 -2.292903159146043 -6.804881631879261 -6.381986106912356 3.453728300457278 -6.531958987267718 3.353370442805959 -6.513780889231478 3.42057673745037 -2.227949932497694 -10.85096291745813 -2.357990225637678 -10.79290016711018 -2.170413558114848 -10.81427691463804 4.493568953358743 -1.869716488258018 4.329708440164693 -1.8379011292138 4.491405204687568 -1.798051105317685 12.33040395020914 5.723885370656501 12.46813695344504 5.696682417251439 12.45948417594871 5.638383849952093 -10.19381424441942 3.628655104702682 -10.3267417310972 3.529490086089372 -10.31196573141311 3.598679870542613 1.263047233919458 -10.86497810175628 1.149601729725166 -10.80812222609864 1.321968911207776 -10.82541457156122 8.33495194681948 -0.9393709846483315 8.479313128830071 -0.8952687873145162 8.482133503898519 -0.9669310694859402 14.24004603569673 3.303754303346462 14.37300884631387 3.289109543227458 14.35765749283158 3.228332671543959 -6.422243354337583 -6.122216021210996 -6.293816491819487 -6.091079264381685 -6.399197657147495 -6.182778468998228 -7.058934942962307 -6.842877791739229 -7.0463371544553 -6.904740474893552 -7.16151167373051 -6.934754810238522 -10.88648996590411 2.64862185474179 -10.89023252981966 2.57997412362618 -11.0162835850136 2.550501913388109 1.853554562682688 -11.40137518247395 1.89837555497093 -11.3549931071721 2.021890098738182 -11.41897718556329 9.260413972355488 -1.722941074899034 9.257523772930266 -1.651291545528555 9.401407576662528 -1.677829723944222 14.51714728365275 2.448061596623807 14.6201775251934 2.383960104401724 14.48741809509194 2.394227534894988 -6.087123770824414 -6.231823276455812 -6.073781202193569 -6.293378880329974 -6.191595657321873 -6.324164106489588 -10.05041992293245 3.580831462101102 -10.0552548504074 3.512660789276433 -10.18411339270548 3.482305749303916 0.9356761749270038 -11.03968848633572 0.9805044406586662 -10.99431749290079 1.107750468641205 -11.05870048010149 8.350072620762127 -0.9697666054076026 8.346837925408174 -0.8979562164649447 8.494432355201985 -0.9256614758650968 14.17664989377583 3.358260377678533 14.20549124667891 3.411489102167506 14.30982380949343 3.344855133454883 -7.410190894200336 -6.718994021734125 -7.284596669721097 -6.688718920687671 -7.388212431718038 -6.77987156751045 -11.01960778418768 2.686646339388251 -11.14862836689238 2.587897482017326 -11.13513444487951 2.657481536116447 2.170761244673912 -11.26174330560949 2.060598415327624 -11.20525307218632 2.229199003757358 -11.22120813922551 9.265735761459213 -1.733143836158397 9.406728916481065 -1.688031616218538 9.409726614996046 -1.759681118882882 14.53016391219004 2.386157286837497 14.66279109864979 2.374881698012832 14.64589534681116 2.313857388509863 -1.592010528313675 -6.110358672654588 -1.617113455819886 -6.051119391115596 -1.470442782662715 -6.015815558400712 -5.675868120392944 4.102737333330855 -5.657527477341786 4.169472186846489 -5.522591507270088 4.203220492284856 -2.881399738377283 -10.27094442238407 -3.015480122053204 -10.21231916761222 -2.824909466322803 -10.23451209583057 3.62459326922874 -1.129226331396547 3.456989302230531 -1.096531799400456 3.62225729422133 -1.057394373402834 11.7882318389257 6.541826169582367 11.9280522850443 6.511764698448218 11.91982790342517 6.454265066894251 -12.27667041523024 -5.248005691055829 -12.27356082976313 -5.311243545222993 -12.38023254958901 -5.336378614898749 -14.3947114078396 0.6318532942106032 -14.38937508335385 0.5615894983034399 -14.50614646384963 0.5376517645847719 7.825441422692121 -10.18630463490646 7.861589823375244 -10.13201110231001 7.973730621424816 -10.19249291082982 13.63024992791607 -1.601611422134419 13.62683556517517 -1.529973458177701 13.76027134916013 -1.550616612102672 15.17341156392762 -1.230085607317037 15.27593408757522 -1.28029106195924 15.13451778086249 -1.284532676661235 11.50588148154212 6.634546521068818 11.52727757931671 6.683237604602827 11.6466988274536 6.607517660109634 -1.266398153327455 -6.19702090032682 -1.401026381253884 -6.231521409648109 -1.280175711516491 -6.136411075446405 -5.355324221922913 4.021786819202103 -5.502326438409484 3.987301835127076 -5.348373572331146 4.087143164817413 -3.232307863926394 -10.44020248185125 -3.192655004137607 -10.39775020088385 -3.042109121301317 -10.46428904576698 3.601572222001094 -1.003612093881301 3.436302030887274 -1.042743772599786 3.434251235682388 -0.9710784511540591 -12.46001996591958 -5.055837435589588 -12.56488972964608 -5.143250858935527 -12.57657385768954 -5.080702991098518 -14.56778065992224 0.5730555138965601 -14.46071794843574 0.5971398635819519 -14.57131938023068 0.5023323048544063 8.008160250368158 -10.10018678908535 7.908633852134024 -10.0465087055165 8.056967300212826 -10.05200162859289 13.63038543231162 -1.601824645575183 13.7604068508368 -1.550829831253393 13.76379106725562 -1.622482571299682 15.13823423222872 -1.192664803811458 15.27962873725492 -1.187995013980668 15.25468513525911 -1.247916035253395 8.320032834994811 8.805923976284776 8.476908639299536 8.763849472740052 8.471560558106781 8.71250335215912 2.335793623000484 -5.635510610887174 2.313753974424717 -5.576430839983729 2.477461437781119 -5.538016445730615 -1.387768377610958 3.941909945668608 -1.371653774586548 4.00625780843145 -1.221087150265096 4.042716217823372 -6.143763369393341 -9.292311573887611 -6.296179211808116 -9.231594788140507 -6.095413776644467 -9.255861970724185 -0.59654329885026 -1.109980878857306 -0.7828790743715841 -1.07390236865711 -0.5978160800109561 -1.038304393877002 -15.19988637368895 -2.039567051502149 -15.2104133528292 -2.102241935128155 -15.32186333026375 -2.121385542184521 -15.2489235624405 -1.933534688701624 -15.23371607094502 -2.003294297435437 -15.3553343954287 -2.021058750420265 14.03986414997043 -5.279907791132423 13.90574350790007 -5.292442028823126 13.91492662070425 -5.231255514286556 15.2836046432 -1.614345238868835 15.28049663115124 -1.542684755638662 15.41870051283549 -1.557444339407133 14.35291432004064 -4.424301511264253 14.46767404925814 -4.460417939230651 14.30828664924902 -4.476675693021341 -0.5482991866424092 -1.197011249585408 -0.7333561165364616 -1.232628729202202 -0.7351003442153165 -1.160376429460887 7.867035186887023 8.800561401308919 7.888370725125638 8.84260897639618 8.02557362790731 8.7625386466067 2.654628259052303 -5.707906477776437 2.504413073575968 -5.745251242350809 2.645470506589455 -5.647210911703112 -1.107727804707062 3.878743020473473 -1.271754052167728 3.841154715274977 -1.104690114787528 3.941568165447574 -6.474519628556968 -9.420163277772423 -6.445742078490899 -9.378641684539636 -6.274102022018866 -9.44614888008285 -15.23122871280863 -1.908193742106417 -15.35430200967466 -1.988989828758354 -15.35259956099925 -1.926587386148011 -15.34296726267979 -2.022400720208078 -15.23130273960793 -2.004047118516191 -15.33708136952566 -2.092044149149024 13.91755290956209 -5.487568927409439 13.807768837111 -5.442732944224471 13.94210294924037 -5.431703757328234 15.28364711295021 -1.614368949648991 15.41874279649783 -1.557467776773037 15.42178839963 -1.629113715372726 14.54640155736297 -4.316358253819901 14.51806974243327 -4.372510095152036 14.38731274245073 -4.334334957351431 -3.945561259909191 -1.247432961482665 -4.144241219602215 -1.207901852260645 -3.946328897595604 -1.175170157205103 4.698119345898045 10.04174579545983 4.873269089505744 9.991083025891768 4.863049793779602 9.946528886118488 5.620742496854408 -5.119726974429264 5.604888190087659 -5.059891377747156 5.778909082300534 -5.019521984430201 2.255254847342431 3.653745439426706 2.265000412056336 3.716146832646577 2.424990328432509 3.754277698767847 -8.917101681407059 -8.1146430470783 -9.080400592411378 -8.052479295692518 -8.880447140686428 -8.077158578998903 -14.58309113522061 0.6528608788794718 -14.60258209094925 0.5923566551232347 -14.72844300025383 0.5790313991206636 -13.8781529907074 -3.913382065177766 -14.01536599989013 -3.925487686114186 -13.89863766316225 -3.845470610647374 15.29800908158372 1.581883090390108 15.16558032337974 1.552750298666116 15.1460034833457 1.609818010593414 14.30881866211792 -1.692632445532497 14.15545791007416 -1.754877769326812 14.15317194537882 -1.683214341573573 12.70320001683093 -6.854170988082087 12.83778415861989 -6.878492687552768 12.65867243096264 -6.903392772628819 -9.257803762624148 -8.215598339111129 -9.241682369780454 -8.170300177861128 -9.058245592027379 -8.242183947451787 -3.990225029160866 -1.011135991860506 -4.188142784922009 -1.043847348048704 -4.188713548611261 -0.972160923671727 4.105970040594284 9.892966958188575 4.133838264938596 9.928255723326144 4.283387189200413 9.847447681103789 5.932770313230748 -5.179347270187138 5.773173490248002 -5.218484296031162 5.930759023218888 -5.117714367413588 2.566288905324989 3.559640027457126 2.391913650836002 3.520273378337419 2.562072709238854 3.620361535147916 -14.51788030950068 0.6511415311768315 -14.66381877539293 0.5780316863240446 -14.65508634971654 0.6388715415331973 -13.953495816722 -4.008506070146007 -13.96310290289799 -3.941174895708128 -13.83719945610775 -3.928100685185102 15.38104342951547 1.130716903359272 15.3808273263972 1.076182356802825 15.24758353691842 1.104658260444447 14.30976407854533 -1.76235145348969 14.15412577445248 -1.75293064072785 14.30748698386486 -1.690686014295796 13.02993856590179 -6.744615836827118 13.00465364406757 -6.796144945084329 12.85150333301094 -6.772359295408605 -11.46806795988844 -6.668713535147372 -11.63157258163808 -6.604958809325613 -11.4426114880492 -6.626149117170876 -7.091008477986005 -1.015978160065062 -7.290683259657538 -0.9764692306588462 -7.090890625410724 -0.9442903895154495 1.268230750697823 10.56912364664678 1.455885385089209 10.51319634304936 1.435646116346202 10.47482423077415 8.561760365605766 -4.594017132148604 8.553260152533577 -4.532727619544389 8.728292994576382 -4.491858061524657 5.479008622761363 3.369754560595218 5.480353569302521 3.430557380024089 5.641294908696153 3.469013249891727 -12.26274549061468 1.848468235279291 -12.40572891545067 1.839508031990456 -12.24253538428687 1.907594473980516 -11.61596664841403 -5.017679400703231 -11.77174917677895 -5.025388663622297 -11.63596240303391 -4.951776659613474 12.8001487679496 5.829148100571635 12.65317416080626 5.792018540894521 12.62426740366962 5.841586059234314 11.99751906690489 -1.828368635046137 11.82252494270866 -1.894888782999132 11.82107046575765 -1.823210091500027 10.65802845375483 -8.671799730436419 10.81277826721054 -8.687484796257966 10.61926089981305 -8.717852064054716 5.750990975317477 3.31136559973065 5.575661432809635 3.271551670185389 5.738255817284522 3.370497837393292 -11.74127109927246 -6.685258370954052 -11.73702922390491 -6.635874988853528 -11.55256894943259 -6.707831543817108 -7.091190853730137 -0.9431360261704894 -7.29098352156178 -0.9753147382708393 -7.290877554208054 -0.9036264341043482 0.6127651770859544 10.28894483561995 0.6512023903603736 10.31855930465727 0.8030406641483201 10.238796073121 8.842100762020555 -4.623888330104501 8.681598202884702 -4.663462788416764 8.847608271360844 -4.560778736174043 -12.31107478204764 1.753873798862986 -12.30324168179712 1.813755915452977 -12.14751688514993 1.821417013215402 -11.69979945966459 -5.113004999379952 -11.70727777050524 -5.048050794785733 -11.56429641792128 -5.039070150895581 13.0805070206411 5.337211616342939 13.08713011415995 5.288110761292079 12.93225127445354 5.303380595568586 12.00351771803758 -1.907218547989442 11.82704899982748 -1.902058087232394 12.00204187342531 -1.835535903356021 11.10929452063571 -8.599960102656215 11.09255170630536 -8.647019929233085 10.91676123488222 -8.63397882214665 8.463770738087579 3.147350521491687 8.456621527355717 3.207061144183714 8.609545807931912 3.244617348842078 -13.8062820408144 -4.61324397110358 -13.63605353607343 -4.629094035547781 -13.652308496306 -4.676909725656401 -9.979086762679119 -0.9118319020731873 -10.16916560811681 -0.8736416729799855 -9.978271983861317 -0.8401464148777312 -1.691145200738942 10.57184081927629 -1.84826347036215 10.66420366060691 -1.658201889270249 10.60530275772313 11.2422689293593 -3.949126275565361 11.24055594957627 -3.885882491929603 11.40862041560554 -3.845831598182718 -9.551511654434053 2.322499571152712 -9.707899358580669 2.316167172924643 -9.53602032789137 2.381451480189401 -9.065592145234403 -5.690193882424489 -9.235863490903935 -5.69516644275171 -9.081037644808127 -5.626115617917052 9.766136736852715 7.721607438938638 9.59747249678175 7.680960875880517 9.573249630871358 7.72651232525906 9.412631202623736 -1.935108157351509 9.220341160553913 -2.004392150565284 9.219643163405078 -1.9327022073625 8.348317994832483 -10.08961773556786 8.5182783225238 -10.10018936119623 8.319681983772494 -10.13298405159051 11.56950513659177 -3.978981277320125 11.41710016845712 -4.017821891039564 11.58246404278411 -3.913550478102852 8.745706457272915 3.068643334189087 8.578885930147454 3.029875765457264 8.725079453870832 3.126753152607873 -13.86692416850899 -4.626230174078959 -13.87054121951037 -4.571360192675914 -13.6968569159072 -4.64311752595167 -9.976255327306809 -0.8472843743890994 -10.16714868373195 -0.8807805770805147 -10.16629217501194 -0.8090897253007084 -2.533344626979457 10.29228061277762 -2.484853677362083 10.31806146223492 -2.340389993372554 10.23952093611932 -9.616884700676433 2.201801032923582 -9.61515097977825 2.261810656067003 -9.444773814499946 2.266706227235113 -9.175409906166889 -5.773230089398138 -9.17713875390521 -5.710372376972855 -9.020757719505559 -5.703938852938419 10.09943425579705 7.240053896620663 10.09965679120681 7.193989782612289 9.929612574154675 7.202508009369316 9.404929318733672 -1.992687653339935 9.211965735149661 -1.990280067643737 9.404257851321997 -1.920999636882653 8.924979711879992 -10.05891894134058 8.920486714005742 -10.10248339065917 8.727643741996864 -10.09612523033034 13.77850389282831 -2.910019633285045 13.78143809692783 -2.843839681106521 13.9298626843523 -2.80633027919083 11.33665266398774 2.78593156790716 11.32260415247666 2.845243600480377 11.46056303825653 2.880680914411926 -15.26293140775587 -1.796101148916797 -15.11329806202435 -1.803862510157038 -15.12638808131952 -1.857832623224716 -12.68632087590331 -0.7758630810570987 -12.85823725814127 -0.740734212245754 -12.68467554174819 -0.7041807476080513 -4.672671231989843 10.35045117739623 -4.808478246220423 10.44054762600533 -4.628862510747769 10.38098144188843 -6.792177553506492 2.582245445252399 -6.954594046043071 2.576853371634834 -6.784470370629784 2.641963576601192 -6.374573240540036 -6.187568733252327 -6.551407360976489 -6.191571608097306 -6.383121211835027 -6.125056941771275 6.912893816468734 8.555956293179982 6.725300584775114 8.513581467421554 6.712602637005921 8.558549812744028 6.700547613092615 -1.977959297731593 6.500219845192263 -2.048236408727563 6.500239259365231 -1.976546447869798 5.649213380515395 -11.25946113552951 5.82574159759708 -11.26872936192003 5.632899024968824 -11.30124203253089 -5.551800941494372 9.974274129334603 -5.491410055673462 9.997149337750599 -5.368852850462249 9.921354873469303 13.92984095638246 -2.872343983031653 13.79233213900375 -2.908847779068738 13.94356398530553 -2.805043860669955 11.59642830635142 2.7069070901034 11.44591128028059 2.670459769131661 11.5703433303029 2.764785082557915 -15.2740524274328 -1.762126047424486 -15.27882762962187 -1.701266132642114 -15.12446246544826 -1.770388747532218 -12.6855267837619 -0.7016557110857535 -12.85908865025668 -0.7382087346658343 -12.85747893362189 -0.666536678107947 -6.852022620543488 2.437853727669991 -6.858536899366711 2.498713277647795 -6.681685596940605 2.502617822574034 -6.479790861557024 -6.288473587179761 -6.474088080872148 -6.227215822866979 -6.311679035328347 -6.221686679518379 7.252266400767371 8.072841323806804 7.240377966717661 8.02713389712147 7.06364894197481 8.033380336635075 6.70970018536817 -2.065598269347671 6.509389914405678 -2.064186401653375 6.70971560786901 -1.993905631379044 6.339797585227679 -11.26859984910191 6.348655884494512 -11.31017592455815 6.148408117669895 -11.30605105569771 -7.604905728673864 9.751676976709444 -7.711809764154808 9.840509215937177 -7.549008303386884 9.780774128464524 15.31342956581983 -1.159996385191196 15.31385734274435 -1.091836756716515 15.44506005980742 -1.058185235361697 13.99248058745683 1.90429339551723 13.97576403205957 1.964276792873518 14.09615622794651 1.996729211303031 -15.23497945323221 1.841607913028883 -15.09924819783357 1.844487547686547 -15.11720579889005 1.785170785042847 -14.87221805652376 -0.531679520155393 -14.87466073377773 -0.603337002607631 -15.02512862964613 -0.5727075492745442 -3.874968577375353 2.844150243789763 -4.034409893278372 2.838018583062885 -3.875926197158899 2.905220518865693 -3.360693470480006 -6.683452321535736 -3.534325837207582 -6.688309731489518 -3.361837750162391 -6.622037101381629 3.89708856379888 9.001318164271137 4.093750487282498 8.997317177626449 3.89607054180398 8.954670637020273 3.761763602072166 -2.017536826766855 3.564385902169928 -2.086942805548035 3.565106551543301 -2.015252408016748 2.365764794796064 -12.15676920708673 2.1879813970502 -12.1857763220583 2.192828326141625 -12.14379308608111 -15.02351923782273 -0.4992513991472314 -14.87297546578908 -0.5298859801427713 -15.02588627862789 -0.5709134563710172 -8.49524937736966 9.278735825274966 -8.428113086530171 9.301266284762386 -8.328530578409394 9.226110260287666 15.34374877225697 -1.071967297237093 15.47427426737303 -0.9692795259564059 15.46385705216017 -1.0388702376328 14.19060461650755 1.845540874017543 14.05929252752984 1.812400823296398 14.16353397493676 1.90444200215758 -15.2412219754005 1.882507909375573 -15.23908262849998 1.948067774145756 -15.10549720994015 1.885571001658158 -3.930704494340847 2.70612638188966 -3.945635065013709 2.768333950593896 -3.772016258706118 2.77302894642654 -3.436389851907229 -6.81557418920629 -3.423558414325446 -6.755284260426986 -3.264130945621227 -6.748933690890019 4.431781809352727 8.520026033747911 4.406673536944801 8.472956880211376 4.233171750787022 8.48014339648196 3.757884909242363 -2.083646128699481 3.561178800323074 -2.081354475691449 3.758557160119626 -2.011949658255776 2.983330606037973 -12.20717948585779 3.00347212370062 -12.24935120400201 2.807053193032321 -12.24140501544334 -15.4035264028204 -0.3993835653760778 -15.40658650987916 -0.4710293799135456 -15.54106757485568 -0.4458871004901172 -10.76348273852581 8.373436725822025 -10.84168260677484 8.463054712708299 -10.70238673733465 8.404852547835649 14.89271804834208 1.362310896943695 14.88536805414721 1.432143494436257 15.00247151614127 1.460613558457811 15.54442831576886 -0.1772025300544178 15.53215565459417 -0.1153184851625176 15.63898173772364 -0.08663501576942562 -13.08798323996053 5.523970908762649 -12.95196251343829 5.538395629649434 -12.98101957240073 5.476926694483 -0.6272731539126153 3.19803476748175 -0.7755778935279711 3.189543266014197 -0.636083871153228 3.260960878875714 0.2617281090394091 -7.19436483523608 0.1002711030644504 -7.201954603348653 0.2664692778492001 -7.133349633543099 0.9329726925144188 9.265565936736246 1.115668704270432 9.257032177211325 0.9189564141891182 9.215725544524082 0.3316474585252793 -1.997065103135946 0.1471248963081939 -2.063800763453142 0.1485215216200342 -1.992110761023125 -2.580866583210967 -12.30237726684135 -2.74053381243914 -12.3223531980944 -2.741168096657231 -12.27730591062638 -13.16180678069201 5.642533833652262 -13.03990629734695 5.591268123566143 -13.17575952501795 5.575897571630211 -15.53731998110256 -0.3753548647507164 -15.40289189900673 -0.4005078232859363 -15.54043326706968 -0.4470109996039769 -11.64771592694504 7.705653340079344 -11.57930451534662 7.731094740011856 -11.50357329573282 7.655281235309178 14.8107764665212 1.513313846791035 14.91938860170879 1.612397884305921 14.91777504032939 1.541596645895389 15.55247350337337 -0.2866621609038716 15.64798935396019 -0.1967217884386764 15.66938335224284 -0.2577625852211226 -0.7257061121927522 3.135624826641909 -0.7492826830192656 3.199645525826849 -0.5861050103982013 3.206912841397215 0.2046698268300501 -7.315777736863169 0.2223359818162479 -7.255666211178008 0.3706030609532812 -7.246777032734928 1.446737205727232 8.81586091648888 1.41032005688943 8.766193914618109 1.249175226116862 8.777145049173717 0.3265215087350981 -2.062757591221067 0.1436112862092576 -2.057822093329615 0.328134466515313 -1.991087490628809 -2.060940502956821 -12.43180914816927 -2.038646191294379 -12.47791345644089 -2.219711610518229 -12.4558014587378 -9.182703170680265 8.142981667147495 -9.222363525422407 8.083086258425697 -9.332830983025458 8.118515293549825 -12.82885888313337 -0.4333106680017894 -12.83210656012083 -0.5049631113588409 -12.96437386323524 -0.4857612753338539 -14.22667272500704 5.027393164206575 -14.29224145579548 5.119741104330275 -14.17026943404672 5.067076696042379 11.68675887388286 3.602706758615832 11.66930486808475 3.672175459232727 11.78517351991617 3.694316614731889 14.09814757657465 -3.494449347467016 14.09792665432916 -3.431131137389283 14.20357449836181 -3.407465746909945 3.311842824457591 3.69480617978706 3.180952569015447 3.682442626085488 3.296724549315826 3.760389661226368 4.841221589877175 -7.431855999181114 4.697824292369404 -7.443925136107564 4.847706590950949 -7.370370172292076 -2.400479053744023 9.30757624764987 -2.238769655885183 9.291399539759695 -2.423927921558295 9.253287604899537 -3.905360039888937 -1.912633707595967 -4.070156549817515 -1.975172376102798 -4.067783527303628 -1.903515356447446 -10.17289669217167 -9.682773219005764 -10.31371533681537 -9.682207133991504 -10.30134664771371 -9.633848868670501 13.97984504926813 -3.543690590935927 14.08633077382004 -3.45750883909293 14.09538737111564 -3.520336337190298 -9.511988152546504 8.305585174373318 -9.386222448783157 8.26807649807159 -9.535912013812602 8.242001299443496 -12.96189303870368 -0.4128193214747257 -12.82966451108063 -0.4320182967679505 -12.96517952201887 -0.484468854796048 -14.71269481696847 4.013498378462776 -14.84004376486605 4.057588390279326 -14.77920814462923 4.091349341689019 11.62583048565259 3.782543859477425 11.51972838591437 3.760171445361742 11.61722827716697 3.852384628676802 3.370585161341922 3.515682000496788 3.344894772389757 3.581699094405173 3.48686275523955 3.593161887339996 4.955591728013779 -7.628168954165989 4.973881571941138 -7.566714195225301 5.104651600287307 -7.553586915436286 -1.92119739166922 8.919516933797494 -1.964602942159007 8.866450198779596 -2.107123554284511 8.883793314033616 -3.901264302188793 -1.994557209596358 -4.063862195684717 -1.985426570730759 -3.899066565719143 -1.922886467266069 -10.19290282709548 -9.682566741176609 -10.18739774005304 -9.73803100462597 -10.33372012348084 -9.68182146362974 9.311076820884212 -5.949331613577347 9.323484570056838 -5.886859372862432 9.440922056310367 -5.869195587661766 -5.026780911688034 9.357246248914594 -5.071445833698491 9.301009797261001 -5.197347146347086 9.325529548587996 -7.947102303290013 -0.5894643933295963 -7.949887549912635 -0.6611270684132946 -8.09539992411437 -0.6477299531407387 -15.43124420531314 -2.567005871622457 -15.46057470326414 -2.620836623976506 -15.55809902521233 -2.534853325241069 6.98240149880651 4.531278791130957 6.958357616329172 4.598849252041651 7.086537431753661 4.614685916919045 7.630287216100353 3.649601229581525 7.51575006665552 3.632015506039547 7.615492771450722 3.71765445620545 10.19784578773473 -6.696913920680565 10.32410489018963 -6.615635440950904 10.32273040499034 -6.678742755244736 -6.218252828831257 8.823750056783792 -6.078905355053932 8.796930614847144 -6.245046099709876 8.764271056133902 -9.074801065170108 -1.766913467321274 -8.932470938382535 -1.781327539503857 -9.077741070611141 -1.838567743463145 -15.62387269144929 -2.045133868235527 -15.75144007862989 -2.01505964539902 -15.70876149207593 -1.970699328397222 6.937165609727131 4.677847019309463 6.819450760308195 4.661365312288654 6.923038988214199 4.745193443225125 9.126273613450488 -5.880017574332839 9.256920704058864 -5.800692167285071 9.254189010252405 -5.863139782920194 -5.45296217489605 9.620680742919076 -5.309853573753243 9.596006380142441 -5.479766393658354 9.562188841765938 -8.093488363116617 -0.5746549751459601 -7.94799687680568 -0.588048802177663 -8.09629459340672 -0.6463142111322279 -15.17091417538628 -3.380255623136744 -15.30025758137425 -3.35497264948756 -15.26327467135561 -3.308565833622692 7.912526008402184 3.30463990496084 7.888398934878699 3.372370813701915 8.013696414966562 3.389236110353795 10.17847454433213 -6.692745542119415 10.19057221808936 -6.630247968358376 10.3048258676164 -6.611555797063267 -5.801968218888781 8.531798935816008 -5.846230111475199 8.474858109547116 -5.968740488989815 8.501196010495569 -8.932934856513818 -1.780596796018044 -8.93592119289028 -1.852242308710759 -9.078205033349054 -1.837836929919548 -15.7881399394003 -1.079236078955304 -15.87590417856727 -0.989918974313639 -15.75169750049168 -1.027709019856362 2.485499947307374 4.472956968423371 2.460685075866149 4.538363142456573 2.60760486618398 4.548901101428431 3.893771875855423 -6.489944943947041 3.912077587770289 -6.429142407816977 4.046854114150587 -6.41693195800528 -1.248765647391035 9.644188906583567 -1.291345768410386 9.591806514279671 -1.437472144776269 9.607794773559277 -3.040185400566218 -0.7887452822798593 -3.20670150097601 -0.7804733697264258 -3.03814380460506 -0.7170700421782971 -8.513804773128053 -10.4062803803854 -8.502502129869862 -10.46032620295482 -8.657480188289187 -10.411727784352 12.45338725151071 2.380162317891126 12.34711374232451 2.35668023675648 12.44546212911098 2.450225481813456 14.59647349106598 -3.96016234246847 14.70064903028807 -3.873024521808449 14.71112753794043 -3.935702814139552 -10.27897970006404 7.308989002682967 -10.15504398845437 7.268988025667653 -10.30152361223623 7.244645151739499 -13.70483722245436 -1.612202720142785 -13.57331890939997 -1.632485741994377 -13.70820827785765 -1.68383766910858 -14.2028553197867 4.626108982969789 -14.33209904411481 4.671881631678597 -14.26895117078108 4.703648871959323 -8.65468903430116 -10.25613977628639 -8.798428666794013 -10.26041203342668 -8.790869198118646 -10.21150150056348 2.466283758066018 4.62206719277332 2.331411514804468 4.610529309645149 2.45313393602676 4.686852483491413 3.899780881918737 -6.35755508248576 3.752928732434449 -6.368692221510917 3.906433381573336 -6.29623014674705 -1.738061956477426 10.0025226433876 -1.57224390367624 9.987962863051735 -1.760158718123047 9.949116364288217 -3.037901029249006 -0.7174698557880698 -3.206458689350344 -0.7808732430068408 -3.204406899013374 -0.709201541547975 12.47944916925332 2.215860560716169 12.46370053507993 2.285545533903941 12.57861381290743 2.308871000587931 14.69020064242352 -3.886202013238754 14.68750845235864 -3.823009847978879 14.79333028128099 -3.79829764480802 -9.970634185330551 7.120645168812637 -10.00870519256849 7.060282258332443 -10.11750423388941 7.097804445309613 -13.57092739168663 -1.63637693552676 -13.57436135615463 -1.708017233436424 -13.7058167275451 -1.687728915632827 -13.61655813152524 5.653729477197946 -13.68199679706545 5.745737994101852 -13.55823324313051 5.691394848970783 -0.9651417306627153 -12.1903128044228 -0.9411700735599637 -12.2358319372882 -1.125829964372461 -12.21718643351928 -1.307272511457143 4.132392262628038 -1.327963409677663 4.195947023325036 -1.163709907130863 4.202618734424284 -0.5424318152963675 -6.128563043848196 -0.5253337200742964 -6.068502914171412 -0.374555827329372 -6.060206327407129 2.025731516931676 9.50697533047069 1.991131215615393 9.457847709200854 1.827162434671363 9.467904827482494 1.016174088466246 -0.8488228054622627 0.8300988427380829 -0.8444824172850816 1.017459078152508 -0.7771400586307555 15.15518710247812 -0.03318400000511543 15.26741700610177 0.06679190440925965 15.2639164584943 -0.003932191538588688 15.5957148926139 -0.7967731904316677 15.47698606049068 -0.8265016514138293 15.57273598886456 -0.7361846880388361 -13.72692273584289 4.418177030246787 -13.60401690940409 4.364623460154547 -13.73869195468838 4.351431872008032 -15.6799312945193 -1.612403890972654 -15.54354137897865 -1.638587615398943 -15.68307901962822 -1.684052325355588 -11.03879089350273 7.731276161976674 -10.97013630155064 7.755912851801601 -10.89081929424308 7.680259539919994 1.017777879283641 -0.7776872549510454 0.8304177020221126 -0.8450297137301469 0.8316850995889413 -0.7733403800626774 -1.569649361279834 -12.00708917035595 -1.731490234092568 -12.02927318578456 -1.731721758177149 -11.98506702141827 -1.27689611786837 4.270249441001878 -1.427704339055886 4.262301296164493 -1.284393612364609 4.332845418309569 -0.4768695860635913 -6.003074595482511 -0.6410985706009481 -6.010024228785104 -0.4729776896325871 -5.942040994595607 1.508792833793395 9.915206756308226 1.69470575196733 9.907709608288483 1.496998334133953 9.866022521605903 15.2158557830502 -0.1856491978260113 15.21035735172968 -0.1159851765296647 15.32924101466242 -0.08648330756052865 15.45202549812743 -0.7170852671353226 15.43828422633217 -0.6556487308512626 15.54693757546256 -0.626222667456477 -13.67256105384179 4.268310473676549 -13.53776430242038 4.280708947193965 -13.56465032673341 4.219309751932072 -15.54334637266879 -1.638933078303796 -15.54638343012961 -1.710580639808732 -15.68288418743848 -1.684397457548985 -10.14971608300705 8.399009003018778 -10.23241816551191 8.488254682885824 -10.08906478873455 8.429643325274901 4.339017509140963 -0.8564796243527708 4.140861753849923 -0.8544847212515481 4.339567555086288 -0.7847846637370757 3.699382311833095 -11.67090225287114 3.71783520399307 -11.7126574429133 3.519850652009076 -11.70599678757342 -4.50537421534081 3.802371597858572 -4.518853551989814 3.864344202425445 -4.343901062936304 3.868783566897275 -4.04058586026891 -5.600772283655673 -4.028928924437079 -5.540353885523346 -3.868284633442033 -5.534280895761829 4.953631353428841 9.176891065890603 4.930912668534059 9.130138878781994 4.756036237288059 9.136981115520211 15.20407379657936 -2.550694552940539 15.33875681649253 -2.447686412556339 15.3272151963297 -2.516891539415384 13.78814693799148 0.9804669907860264 13.65340518493312 0.946638082137786 13.76085437072605 1.039036029627068 -15.4234703497418 0.5823809010124016 -15.42300420394083 0.6473198227317659 -15.28604123406698 0.5831960997448842 -14.57602405337075 -1.786098695150936 -14.73254867342964 -1.826214196813726 -14.73025598991482 -1.754549503807031 -7.932527008532775 8.994218151299025 -7.866309291966403 9.016610778141754 -7.762173894371046 8.94131606693251 4.429163170990766 9.597599347922857 4.627285304991204 9.594102959155697 4.430601934518833 9.551497004255873 4.338241397456769 -0.7824611247578051 4.139535319693241 -0.8521606944085538 4.14009205451134 -0.7804694906427024 3.102421808410494 -11.56980195035978 2.921382189592833 -11.59972090951355 2.928029327262789 -11.5579370367607 -4.437944164640006 3.924238167275824 -4.598600350258493 3.918363123700351 -4.437311998773864 3.985052415290227 -3.942603233965789 -5.48977363460459 -4.117598386900145 -5.494368310684473 -3.945116347766006 -5.428167666829939 15.15822454418859 -2.629161469947828 15.15945046169503 -2.561445222070429 15.29394047582268 -2.526995747627188 13.56743855243598 1.060457367569741 13.55079179298401 1.120246283547247 13.67425917461145 1.153305243339403 -15.42233769553148 0.5002762489799705 -15.28490811606211 0.5010415332033941 -15.3014240543213 0.4425514418021893 -14.57811415605308 -1.85819470982053 -14.73237102080251 -1.826648712043318 -14.57584644803768 -1.786533096182711 -7.04065833549342 9.503037249446964 -7.152861912652641 9.592060152138798 -6.986311416938761 9.532131511434839 7.764461992210457 8.632461813180054 7.754949455702805 8.586956770476412 7.578699845847527 8.593336071204217 7.205277969077836 -0.8241765165558987 7.005492534309306 -0.8227101175508707 7.20514812373491 -0.752484047795964 6.852620308498011 -10.60845354291583 6.859092992628851 -10.6502543614842 6.659410747873375 -10.64610733472859 -7.364742582075103 3.53356537261087 -7.369668791026909 3.594258059515068 -7.193355203094174 3.598188453423781 -6.980332878497021 -5.095051337169447 -6.976051799754297 -5.033505729922132 -6.814108973926651 -5.027931536210256 13.55594233288692 -4.207921895725812 13.41530713738491 -4.244916323561624 13.56962835308064 -4.141060050976737 11.09103565904192 1.68805621484499 10.93719415709646 1.651092925899092 11.06567832801427 1.745920641683279 -15.15206474338726 -2.915050256737084 -15.15673804272043 -2.855247401915437 -15.00001185562436 -2.925048133276372 -12.22895856218775 -1.952535264416888 -12.40610931229432 -1.988422154488813 -12.40466354503639 -1.916747362956051 -4.992868586225648 9.539630381690051 -4.934112127642773 9.562821703270483 -4.805572544266353 9.486385740626805 -6.887431091332368 -4.973288280527533 -7.063792324411773 -4.977330313835136 -6.897359937205413 -4.910530995541072 7.416530844046871 9.078414568490658 7.231841606460934 9.036262582380612 7.216766920685943 9.081147554592967 7.205448569468707 -0.7530069532245003 7.005793049236243 -0.8232331447176947 7.005705301689735 -0.7515529855191754 6.190248227592309 -10.54546233783966 6.366248537770588 -10.55461390390411 6.171630995909871 -10.5874755228118 -7.291638703516363 3.653764989293129 -7.453589085305908 3.648328343063984 -7.282391346204348 3.713261751538656 13.30463094662861 -4.245762442299805 13.30608464422483 -4.180658949544814 13.45982830875285 -4.142717282815737 10.83933951710539 1.757271202450565 10.82629135128724 1.816570756997123 10.96738701545944 1.852463738118953 -15.13800315641078 -2.971053121670076 -14.9859007400069 -2.980573364090908 -14.99860330558335 -3.034195994998006 -12.25010433462629 -1.968286950185916 -12.42436858858694 -1.932512771247769 -12.24721522035828 -1.896633880074123 -4.105850767016604 9.967104081378478 -4.246074555877347 10.05775577346526 -4.062094648224949 9.997781498584489 -9.632840066946871 -4.553709194494421 -9.635857806635888 -4.490512295311388 -9.48146251027967 -4.48374471792433 10.63332914354063 7.609239715614118 10.6352721337107 7.56283977509181 10.46738744838891 7.572182499641626 9.883230595420139 -0.760218351170224 9.692726902676272 -0.7574558857503435 9.882429536870054 -0.6885409287951335 9.332858027012399 -9.324939664483836 9.325926358570776 -9.369096948766666 9.135559451554414 -9.361826718298952 -10.0991445848126 3.256078896068714 -10.09604877633081 3.315969240205699 -9.927833604965425 3.32122584717763 11.06896706631566 -5.187860959001069 10.9144296678064 -5.226775623567064 11.07929079611799 -5.123255878195095 8.209082207550653 1.976001216674127 8.040090831921477 1.936964020328915 8.189719311391089 2.034223034418282 -13.54966811733205 -5.727025044182225 -13.5534041200049 -5.672558516458073 -13.37590536992232 -5.745342831371116 -9.454482909435733 -2.053079866740842 -9.649277344128501 -2.086184998707014 -9.647029179436522 -2.014517710853325 -1.977248898694103 9.756595355171145 -1.928855954581787 9.782608517687971 -1.783809670599348 9.704377825419831 -10.0333991053454 3.363988899440471 -10.18780132907776 3.357319844145383 -10.01672897389133 3.422853694292189 -9.542431112247556 -4.444152523403687 -9.710598987538798 -4.449481041915071 -9.558987616015688 -4.379830578949584 10.30134582005999 8.045749546269994 10.13660435995184 8.005514548127943 10.11095143030446 8.051528451943446 9.878114605291582 -0.6813041883577111 9.688410893525187 -0.750217309641563 9.687556231625864 -0.6785254928230605 8.780219706276258 -9.302858890704133 8.94795983101233 -9.314101490219105 8.749446798971057 -9.346707911095617 10.80095462466428 -5.182673348228666 10.79810187268672 -5.119857639927745 10.96640917501999 -5.079741167183528 7.938821908743909 2.044189248108815 7.933104889987783 2.104004196327593 8.088096645567495 2.14178406981703 -13.46751776715227 -5.750203168081354 -13.29354146707838 -5.767220381946506 -13.31120462339177 -5.814048248190137 -9.445753225813039 -2.159151248452337 -9.639817677750333 -2.120570917459065 -9.445024375553036 -2.087461661946528 -1.109026058521657 10.09816370011107 -1.268849258163866 10.19102216441297 -1.078357276157821 10.13248228479399 -12.94922782176304 2.622952801668769 -12.94138597196129 2.682944310987686 -12.78919005865232 2.691856451936566 -12.28494275339074 -3.77532243712409 -12.29265316698073 -3.70997598941128 -12.15373119559062 -3.699740665607629 13.7874570125565 5.043117162724284 13.79245490789307 4.993026585256168 13.64165279123874 5.011325846234993 12.60135807779593 -0.6410363685417869 12.42762464136455 -0.6348290545653279 12.59969652880776 -0.5693533150350367 11.5870711407825 -7.697376004837497 11.56906769975656 -7.745419553558944 11.39625301990679 -7.729684922609989 11.15080866099431 -7.71977076020801 11.30168962856202 -7.737827728903889 11.10992671920756 -7.766466510300469 -12.91736101618802 2.703545425129174 -13.05627938838025 2.693279914947971 -12.89672430793186 2.762872853923474 -12.19621419338813 -3.684683831107974 -12.34837655016544 -3.693618841669041 -12.21688517931147 -3.618338602904815 13.52284187905048 5.523094335233549 13.37838441657597 5.48770221991789 13.35008403691579 5.538833514885466 12.60409722057998 -0.5763447567548026 12.43202657391812 -0.6418225141774961 12.43030801490067 -0.5701359906933247 13.63883762063815 -5.44721725469206 13.61380770682593 -5.500387588420982 13.46647062975505 -5.471246767751426 -15.08284575239363 0.9023122650785057 -15.2208774698849 0.8263693256048723 -15.21501108736677 0.8877044396126678 -14.65558630309197 -2.228513104774374 -14.53488429669925 -2.213259457727746 -14.64810175579504 -2.296567850615621 15.48587450658961 -0.7072889677386613 15.47663886213827 -0.7625814925174052 15.35059687589667 -0.7279832370859108 14.77712889439435 -0.4739337402526738 14.92580542114912 -0.4136680383010598 14.92845178059544 -0.4853370795224028 14.77695868621397 -0.4736855870769765 14.77440434565205 -0.4020301011265953 14.92563528444638 -0.4134199942503872 13.36315811661996 -5.505850708264952 13.49142853853721 -5.534852926611777 13.31854127327991 -5.55644589682683 -15.14308331136975 0.8222650216642411 -15.15942011753485 0.7608371691472305 -15.28002369432089 0.7451090954453021 -14.56682633686609 -2.158250207633158 -14.54812640721705 -2.226936965939771 -14.68036973337736 -2.241283632392268 15.50191653252 -0.3450732201808038 15.36745057636905 -0.3688165363621706 15.35690532506454 -0.3091914489386688 15.10021536284021 -0.3662279915260838 15.23111772726949 -0.311193799246996 15.23428652672321 -0.3828340980822404 14.88976637221621 -2.875499185090969 14.8619901803013 -2.933069444389281 14.73653897341562 -2.889690282496022 -14.73496300520511 -1.949911756351197 -14.85116097744007 -2.033151742686197 -14.85344805127599 -1.970419707572393 -15.37266981255824 -0.1985636265403373 -15.26515227565445 -0.1783591027017222 -15.36906792625269 -0.2687508349277519 12.27637969665627 -6.961895664635397 12.17219897658405 -6.913142028974974 12.30988240291489 -6.907772124465024 12.37290369012539 -6.930466342006296 12.23526761316119 -6.936541147100408 12.25557413188744 -6.876797102240095 15.09650646155816 -0.3604887175889291 15.09200202514185 -0.2888728323966503 15.22740726568313 -0.3054522286639152 14.73133013411215 -2.925839927156168 14.84129018010756 -2.9661607923514 14.68786685384163 -2.978975091679462 -14.66064124112387 -2.109733152076942 -14.66851274842569 -2.172785016023917 -14.77574424471845 -2.193909326829141 -15.25747024489183 -0.07495710939616335 -15.24382004786392 -0.1449260058766786 -15.36243409627423 -0.1645962231422714 6.03386172741644 -10.21767282582687 5.932457171360901 -10.16317404452643 6.087589634298196 -10.17252724470024 12.41157018994403 -0.4297672803806035 12.54237962024552 -0.3805204047709608 12.54695424854139 -0.45213353650516 15.09487387640644 0.3974383334978142 15.23201612814255 0.397254742927811 15.20902571872694 0.3367131686311351 -10.98712584533499 -4.849561545362082 -10.86929883635138 -4.822741124821027 -10.97273312875936 -4.911896830158986 -13.70457250306834 2.417609427095513 -13.59478112626419 2.443397062640642 -13.71013437721912 2.346956678822359 -13.49038788234305 2.465709305726437 -13.48832815351597 2.395756007580745 -13.60668383318516 2.369972128742379 5.782375216031333 -10.40676227272839 5.823411415695212 -10.35564304221167 5.937382259001554 -10.41732418404963 12.40484663768798 -0.4187945576933733 12.4008708050482 -0.3469914029424408 12.53565653467715 -0.3695484492197242 15.13090356342597 0.4350627298086503 15.23190260217394 0.3803072128496608 15.09476031670884 0.3804744861507038 -10.73780554325371 -4.944639933453256 -10.73104969928929 -5.007569784255614 -10.84045410968247 -5.034355851595636 -9.544941499632319 4.142377734180887 -9.680805060016205 4.042950024687994 -9.665164420806672 4.111831819762289 0.6340271569205269 -10.61879292461714 0.5178530618738975 -10.56192998465888 0.6933256189549752 -10.58033198874102 7.648286092361099 -0.5932042054774838 7.795185560238386 -0.5498439571936551 7.798488689745046 -0.6216682097405024 13.96258039388776 3.981724190343859 14.09535019572185 3.965280020489766 14.08135721185337 3.904723252982765 -5.68787695437435 -5.867931290295552 -5.711654345374643 -5.807610991094385 -5.580829653580337 -5.775862177318796 -5.332142741039728 -5.996186471919412 -5.452028763627292 -6.027541099610095 -5.345984512023594 -5.934756433926544 -9.394812668832024 4.086181564035421 -9.400396586560289 4.018375566797347 -9.531433494290146 3.987398087419543 0.2881168626483132 -10.8232904406098 0.3327333124216058 -10.77852803635801 0.4632568442969797 -10.84355849880215 7.627901409660059 -0.5507444676405745 7.625155506600297 -0.4790841097123246 7.774802930959926 -0.5073885247506258 13.87626745298261 4.058762996429186 13.90304203644856 4.111682936716666 14.00931740778716 4.043785504780377 -0.9698620582504997 -5.703973797750612 -0.9948800152954102 -5.644771743493748 -0.8456732788253712 -5.608985438806956 -5.04138747325854 4.478234045003741 -5.023010081853935 4.544626420326458 -4.885790544153968 4.578818331596664 -3.376904130188155 -9.926194395710335 -3.513791243313864 -9.867290261457155 -3.321215758343276 -9.88991210647607 3.017333138410127 -0.6803795545526759 2.846773855884061 -0.6470782813351531 3.015372274814703 -0.6087032437720168 11.31461462182813 7.090698705791401 11.4564464843799 7.059023992830101 11.44972926712058 7.002312147853783 11.03056301613796 7.181508993779926 11.05159541727096 7.229415296301694 11.1733965499343 7.152754351899574 -0.6658258923951649 -5.77688512985852 -0.8027353016488087 -5.811837926182647 -0.6791679499268127 -5.716349355206121 -4.727218536967268 4.400324955167648 -4.8767743732512 4.365339340919428 -4.720554650599593 4.465324443450634 -3.729793439227283 -10.11161655929486 -3.691401246021242 -10.06927678307762 -3.537596747270898 -10.13615110308193 3.015019654902513 -0.6077477474185807 2.846421200780263 -0.6461226893006792 2.844465769389484 -0.5744543267382288 7.82491077220336 9.18999813771053 7.984347672989259 9.146423658150694 7.978585978662852 9.095943729765835 2.825096377434917 -5.193458104746092 2.8038177485176 -5.134343466934438 2.969403087866285 -5.095571713750636 -0.8454049309525047 4.285268214793661 -0.8300058803818644 4.349343699075141 -0.6777035027097456 4.386105891731725 -6.569442722241135 -8.899328438531347 -6.723836593058756 -8.838369739939827 -6.522497025377552 -8.86270961001396 -1.027675897030994 -0.704612100157213 -1.216626362265736 -0.6675837535635272 -1.028862602917045 -0.6329333098865464 -1.028429339557004 -0.6343843110642063 -1.216193054719459 -0.6690349029146713 -1.217356860704336 -0.5973422587712638 7.340454447088572 9.18473470243754 7.362364140986393 9.225822791546465 7.501683731484558 9.145453024682254 3.145397483662717 -5.267752515487297 2.993451021536473 -5.305415116969103 3.137146591433285 -5.206973925027834 -0.5400141202644004 4.200873842161887 -0.7059185647481259 4.163000414839618 -0.5377639419120495 4.263369951674332 -6.910651649969095 -9.049178393484784 -6.883447650120314 -9.006211694656061 -6.709683305598594 -9.07534805653305 -4.453739812752393 -0.673887341422711 -4.652989865808114 -0.6347214635370874 -4.454185056034181 -0.6021897073338043 4.190344325497041 10.32043007936972 4.367608418376572 10.26886391022222 4.356303897407086 10.2252036951963 6.057360411496986 -4.675126088168224 6.042488942533275 -4.615131902889079 6.217248163624792 -4.573643703816179 2.745187890173904 3.974617698687972 2.753889331227458 4.036763022297162 2.914592259355919 4.074978758843405 -9.325165683557737 -7.693027677857053 -9.488916831716066 -7.63025419934652 -9.289703949787167 -7.65396491464223 -9.63626064291622 -7.783806612308135 -9.621840946052661 -7.738118920868959 -9.437370037509659 -7.809136345732454 -4.456148911123684 -0.5947595445543384 -4.65495392669866 -0.6272905224453702 -4.655444342175763 -0.5556065241597588 3.360497516967772 10.0837563652402 3.388642207661477 10.11861295671525 3.540872736891919 10.0393659888867 6.364273555500626 -4.731065156888241 6.203977729599966 -4.770324712202349 6.363293284226373 -4.668286951436723 3.027149084833707 3.910056709996752 2.852061020894742 3.870518301492106 3.02179588809579 3.970533196939693 -11.79847206291671 -6.183676269876259 -11.9613470528831 -6.119953793488703 -11.774525862427 -6.140534852155146 -7.530723493352798 -0.5944756733336493 -7.729303575854914 -0.5554328541028434 -7.530521995348592 -0.5227908121643355 0.3370638904271806 10.68415226208111 0.5269096477277668 10.63207285568546 0.5066794352907478 10.59396886554546 8.962634518807981 -4.136922198784777 8.955002512906784 -4.074426986196031 9.129446717033083 -4.034557490062549 5.911330168665807 3.724138605218663 5.911513487134059 3.784761362705865 6.071809441965142 3.82318923896752 6.202369586795212 3.646891088741236 6.027616141963214 3.607158535332953 6.188470493961638 3.705831943974747 -12.0739932164062 -6.211992837790632 -12.07077395120753 -6.162428167095074 -11.88744252521079 -6.234040089218626 -7.522291528342579 -0.553886035913332 -7.721072119037555 -0.586531807834816 -7.720791637710336 -0.5144784421199378 0.007504092126482398 10.52882807230201 0.04682647160282105 10.55818404921214 0.1985990434058815 10.47965718881442 9.237830477681218 -4.164036425076068 9.077972098535717 -4.203576236362054 9.244267679995579 -4.100692661614889 8.872217854548568 3.476976523384762 8.863914571162766 3.536566034327765 9.015162431649493 3.57387516861083 -14.07468187064337 -4.033398539612293 -13.90724954969449 -4.049060944033338 -13.92291557286726 -4.09713578804043 -10.35237831463158 -0.5118062827308205 -10.5407083867405 -0.4735357372673448 -10.35132834301624 -0.4397573135773165 -2.114721840026888 10.72574737364265 -2.269963036006161 10.81789606209527 -2.080415184287394 10.75876728321423 11.64221593525102 -3.447685572813448 11.64111947051411 -3.384145571355619 11.80564094646939 -3.344515362532484 11.89115932281014 -3.446110781665308 11.74037045522237 -3.48455247238597 11.90322137684379 -3.380822008952721 9.148618889796934 3.403099226540594 8.983694086315714 3.364581703044573 9.127054287006649 3.461099618686497 -14.12770915990698 -4.046415067460084 -14.13183652635171 -3.99072261790696 -13.96042934922502 -4.063055412625169 -10.35639500277101 -0.4220725563315408 -10.54577576789361 -0.4558484769781266 -10.54480610601822 -0.3841617976162464 -2.967831741841932 10.44882560332407 -2.916065774234811 10.47381856075407 -2.77531516961091 10.39596453232755 13.99776000856275 -2.351036041630497 13.99993335183557 -2.285083495011548 14.14750912604804 -2.248086677132897 11.73893395218349 3.070107912156248 11.72423158084615 3.129421138109455 11.85987446586462 3.164495207897467 -15.36615484406754 -1.11152892677551 -15.21898742551485 -1.1179613835451 -15.23224793414486 -1.172764419650652 -13.03841839753838 -0.344525156737945 -13.20747791172357 -0.3099418533609996 -13.0366446559998 -0.27284799942994 -5.044529322881477 10.46419534326874 -5.176394091894054 10.55437218277403 -4.997235224268471 10.49417510118767 -5.942736660151951 10.0878392685903 -5.881162255682046 10.11053496282436 -5.760072536994693 10.03455869673605 14.21841670250299 -2.303105043589105 14.08321040442646 -2.339207235243235 14.23211411894402 -2.23550179311217 11.97946280401635 3.008192950811849 11.83151071848079 2.972138415474863 11.9529190204441 3.066153331737504 -15.37253476758558 -1.087710750677238 -15.37686103107155 -1.026099469526584 -15.22539739965658 -1.094555426461536 -13.03892074894272 -0.2662782497109539 -13.20975442471094 -0.303370906474995 -13.20802230937834 -0.2316883661006361 -8.01519210529187 9.762768674362446 -8.117828381545795 9.851650911232564 -7.95822034332968 9.791970590795909 15.40644264244356 -0.4896987443385565 15.40626948300709 -0.4212422762021754 15.53493491447027 -0.3882142377729557 14.3019859158781 2.068117515668397 14.28538395745249 2.128324305041223 14.40341528993963 2.160318544062168 -15.06280433743487 2.596781799116851 -14.92785237912183 2.601214141968385 -14.94708383215803 2.54139229198745 -15.08440682962398 -0.09759145962411998 -15.08695336810553 -0.1692589567737261 -15.23482152814353 -0.1393237032180684 -15.2310784703 -0.07032863462336783 -15.08325310146444 -0.1002600127068801 -15.2336673640194 -0.1419932287022291 -8.923501571659722 9.278233095447522 -8.855796036394333 9.300928013876968 -8.759788426160879 9.225884569880648 15.42269730208561 -0.39456208251547 15.55007824759031 -0.2922142497577432 15.54050299736091 -0.3620572786078744 14.50501102834022 1.991793463294441 14.37605372091801 1.959178835531572 14.4781972508869 2.050890668485262 -15.07494915176085 2.625073435839844 -15.07137148952717 2.691017551110971 -14.94001271801862 2.629789213653717 -15.24023466630929 0.01803061193403345 -15.24349337565169 -0.05361706873139931 -15.37764112986811 -0.02923312204259128 -11.17379038783902 8.218058979555096 -11.24756867238939 8.306854805425431 -11.11232677730228 8.249902524780154 14.6081143939815 2.072982524136852 14.59947076634131 2.142900707743456 14.71552135142038 2.170538218250184 15.57040072192249 -0.2015423709642447 15.55893652538407 -0.1394450099388824 15.66290714972646 -0.1114443365707351 -12.64746675036222 6.172275617075066 -12.5091305573086 6.188161280253866 -12.53966240365795 6.126682304290108 -12.73189783878665 6.283132119631011 -12.60942599573926 6.233646763938713 -12.7475672144483 6.216743695442649 -15.38322178452326 0.06278446206338052 -15.25195648521375 0.03849111662281274 -15.38935982458751 -0.008778237746010326 -11.93999354397293 7.643712140944677 -11.87219872278999 7.670434827113372 -11.80049347675016 7.593516752301118 14.52374127858401 2.205489717281069 14.63017203523485 2.303705277816539 14.62795696542006 2.232920814541139 15.55506445802076 -0.398258729183709 15.64945297891789 -0.3093769257399935 15.67214967852244 -0.370203149261651 -8.54839110278726 8.623242911206008 -8.589500730286041 8.563967964495342 -8.700307001582862 8.597641665084741 -12.22809598385107 -0.09508996753259236 -12.23432484395121 -0.16664781085706 -12.36659450222033 -0.1482874482510324 -14.62849232864295 4.428383040986871 -14.69572068029503 4.522497691729503 -14.57502755675156 4.470684822090064 11.0588119608929 4.221626283973954 11.04193421389389 4.291176220129056 11.15893122799804 4.312494179033167 13.44597960504432 -3.733615678859734 13.445262070515 -3.670225596935286 13.55448063631427 -3.647351842270001 13.49857814533701 -3.720427902630387 13.60666369526593 -3.633841888280487 13.61377027345967 -3.697612960420056 -8.903997383667488 8.791884335880527 -8.777518133577825 8.75632742511168 -8.928936755413485 8.728963743272056 -12.39797464456105 -0.02042396311228745 -12.26276181108309 -0.0388765674941793 -12.40126288542828 -0.09206992995855183 -15.06807793567746 3.327135604180729 -15.19446933123039 3.369718094183054 -15.13578257508136 3.405165420796467 10.82084241768013 4.550793100853755 10.71123706296746 4.529094472234048 10.80957153275353 4.621160583629894 8.805237495214664 -5.898225281103608 8.819235838540205 -5.835163893416791 8.937363221363 -5.81793122585713 -4.453527643237622 9.680031307379561 -4.498312116988717 9.624329240474673 -4.626853244536841 9.647559187348119 -7.224473656264715 -0.2024561136401654 -7.227198864023237 -0.2741167013485265 -7.375326410588214 -0.2614713567053737 -14.97807478769535 -3.841003856061851 -15.00147562983513 -3.896221771046057 -15.10724005825326 -3.813608743486643 6.276395569442173 5.09478813808756 6.250346440124336 5.162687143151492 6.380813558265123 5.177848294284729 6.448964633867097 5.068582522850016 6.330528176182517 5.052716917275782 6.435123530158036 5.135638856122859 8.342396197105265 -5.694778516819682 8.476463380671603 -5.616501348129942 8.472700910110687 -5.678743244827615 -4.895891510749848 9.947554121826881 -4.749827945594436 9.92440957229512 -4.922464054724919 9.889738886876938 -7.373465903498186 -0.1885022018947242 -7.225290927097896 -0.2011567483559721 -7.376143774493156 -0.2601718441936091 -14.65676718015812 -4.490675852808604 -14.7877524968433 -4.469287118161665 -14.75521375002407 -4.421639961685035 1.890563509546316 4.809123824166695 1.866074027419942 4.874269546670157 2.01553007700042 4.884200158116475 3.205939475569675 -6.111452539562135 3.224393110308801 -6.050854891290597 3.361615865019676 -6.039258929326409 -0.7676884958980825 9.900145880226742 -0.8094506093732026 9.848181883736482 -0.9583344481684544 9.863219009824517 -2.410832530329938 -0.3910235908288219 -2.580269533082864 -0.3833634786129642 -2.408929256897106 -0.3193386298986475 -7.288700934033111 -10.87408448590869 -7.273930193533063 -10.92690918877539 -7.434462179179099 -10.88366059278024 -7.538791827017521 -10.66346199697339 -7.684743928740911 -10.67102819840123 -7.679508861739828 -10.62262207251408 1.897682384418705 4.937667855919856 1.760377070360397 4.926693325757354 1.885030845884099 5.002090771446181 3.234235649934867 -5.987639309513234 3.084720048396567 -5.998101243428897 3.240747746919706 -5.926378505588351 -1.247557829743616 10.23691422319599 -1.078699202127026 10.22350670569535 -1.268577676296933 10.18420882195949 -2.408527616989741 -0.3200047225100269 -2.579867831331792 -0.3840296736449853 -2.577933338039743 -0.3123496115177421 -0.1685220150025957 -12.08770164830406 -0.1446461954825252 -12.13250497194081 -0.3318065003090365 -12.11634038522847 -1.780495169689983 4.445768895739395 -1.800346714957548 4.509057825016537 -1.634216421094819 4.515306213592063 -1.080275376123639 -5.703996468393416 -1.063767000879461 -5.64390921346938 -0.911210693614315 -5.636017390377594 2.471362890751208 9.709100619462886 2.438145264634871 9.660433934430397 2.272222755839425 9.669892737749537 1.529057938430958 -0.4425775669875655 1.34081722078492 -0.4386474684998436 1.530233880554405 -0.3708873206268546 1.527581115267748 -0.3663096835725314 1.338163965121219 -0.4340689831274146 1.33936191560301 -0.3623967585573739 -0.7939552681231509 -11.89726344824159 -0.9585061737584809 -11.92099627409395 -0.9583251256377255 -11.877285930713 -1.74951115256183 4.58606532944532 -1.902094216453603 4.578500389517765 -1.756065214724875 4.64836179546472 -1.026835607588378 -5.555860976960113 -1.192986144613087 -5.562388518878315 -1.023645774281973 -5.494835425090695 1.946084829015014 10.11428880389738 2.134194195256248 10.10750369521477 1.935938164111682 10.06561476524944 4.762085798310935 -0.4406358202106993 4.563064811535311 -0.4388283180180524 4.762582902347806 -0.3689584671257234 4.19983081160802 -11.41623606602867 4.216821345354481 -11.45785297941772 4.017903272249143 -11.45192303901008 -4.917063727231247 4.131394648990662 -4.929452754842037 4.193139668179431 -4.753712636422665 4.197401429665823 -4.492741562457353 -5.146055132008041 -4.482032521215455 -5.085561798002201 -4.320660257068589 -5.079657241423282 5.364420454192764 9.355961710715812 5.343439849295003 9.309480870318586 5.167854397829749 9.316065540823772 4.823660435379992 9.77986002874316 5.0226533164348 9.776667890444797 4.827055427473608 9.733928360193522 4.760280236867404 -0.3649140410248083 4.56076166476567 -0.4347830413995857 4.561232822824662 -0.3630946259172963 3.616651290194356 -11.30236390770575 3.433215122456619 -11.33290002050897 3.441399704503314 -11.29121597308221 -4.865623919993504 4.273635316650265 -5.027006713256696 4.267911615617678 -4.863874081670242 4.334251898799096 -4.397171470467212 -5.028050408533186 -4.572867515688794 -5.032445412914375 -4.400598281005675 -4.966349783325662</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"2670\" source=\"#ID1741\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1737\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1735\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1736\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"890\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1737\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1738\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 9 8 1 9 0 10 12 11 14 12 15 13 16 14 6 15 2 16 20 17 9 18 8 19 22 20 1 21 24 22 8 23 26 24 27 25 15 26 30 27 1 28 12 29 14 30 16 31 32 32 26 33 15 34 14 35 6 36 20 37 34 38 36 39 9 40 22 41 38 42 39 43 40 44 39 45 44 46 45 47 24 48 1 49 30 50 48 51 27 52 26 53 30 54 12 55 50 56 52 57 53 58 54 59 16 60 58 61 32 62 53 63 60 64 61 65 34 66 20 67 64 68 36 69 22 70 66 71 68 72 38 73 40 74 39 75 45 76 40 77 44 78 52 79 45 80 70 81 24 82 30 83 61 84 72 85 73 86 48 87 76 88 27 89 78 90 30 91 50 92 52 93 54 94 80 95 52 96 60 97 53 98 32 99 58 100 82 101 60 102 72 103 61 104 34 105 64 106 84 107 64 108 36 109 66 110 86 111 38 112 68 113 88 114 89 115 90 116 80 117 94 118 88 119 44 120 96 121 52 122 70 123 30 124 78 125 72 126 98 127 73 128 100 129 76 130 48 131 78 132 50 133 102 134 80 135 54 136 94 137 96 138 60 139 52 140 58 141 104 142 82 143 106 144 72 145 60 146 84 147 64 148 108 149 66 150 110 151 64 152 112 153 86 154 68 155 90 156 89 157 114 158 88 159 94 160 89 161 116 162 70 163 78 164 118 165 98 166 72 167 73 168 98 169 120 170 100 171 122 172 76 173 124 174 78 175 102 176 96 177 106 178 60 179 104 180 126 181 82 182 106 183 118 184 72 185 84 186 108 187 128 188 110 189 108 190 64 191 112 192 130 193 86 194 90 195 114 196 132 197 134 198 135 199 126 200 116 201 78 202 124 203 118 204 138 205 98 206 98 207 140 208 120 209 142 210 122 211 100 212 124 213 102 214 144 215 104 216 134 217 126 218 146 219 116 220 124 221 108 222 148 223 128 224 110 225 150 226 108 227 152 228 130 229 112 230 154 231 132 232 114 233 134 234 156 235 135 236 158 237 146 238 159 239 138 240 140 241 98 242 120 243 140 244 162 245 142 246 164 247 122 248 159 249 124 250 144 251 146 252 124 253 159 254 148 255 166 256 128 257 150 258 148 259 108 260 152 261 168 262 130 263 170 264 132 265 154 266 156 267 172 268 135 269 158 270 159 271 174 272 176 273 140 274 138 275 140 276 178 277 162 278 142 279 180 280 164 281 159 282 144 283 182 284 148 285 184 286 166 287 150 288 186 289 148 290 188 291 168 292 152 293 190 294 170 295 154 296 156 297 192 298 172 299 174 300 159 301 182 302 194 303 158 304 174 305 176 306 178 307 140 308 162 309 178 310 196 311 180 312 198 313 164 314 184 315 200 316 166 317 186 318 184 319 148 320 188 321 202 322 168 323 188 324 170 325 190 326 192 327 204 328 172 329 174 330 182 331 206 332 194 333 174 334 208 335 210 336 178 337 176 338 178 339 212 340 196 341 180 342 214 343 198 344 184 345 216 346 200 347 186 348 218 349 184 350 220 351 202 352 188 353 222 354 188 355 190 356 192 357 224 358 204 359 214 360 226 361 198 362 208 363 174 364 206 365 228 366 194 367 208 368 210 369 212 370 178 371 196 372 212 373 230 374 216 375 232 376 200 377 218 378 216 379 184 380 220 381 234 382 202 383 220 384 188 385 222 386 224 387 236 388 204 389 214 390 238 391 226 392 208 393 206 394 240 395 228 396 208 397 242 398 244 399 212 400 210 401 230 402 212 403 246 404 216 405 248 406 232 407 218 408 250 409 216 410 220 411 252 412 234 413 254 414 220 415 222 416 256 417 236 418 224 419 258 420 230 421 246 422 238 423 260 424 226 425 208 426 240 427 242 428 262 429 228 430 242 431 244 432 264 433 212 434 248 435 266 436 232 437 250 438 248 439 216 440 252 441 268 442 234 443 252 444 220 445 254 446 256 447 270 448 236 449 258 450 246 451 272 452 238 453 274 454 260 455 242 456 240 457 276 458 262 459 242 460 278 461 280 462 264 463 244 464 248 465 282 466 266 467 250 468 284 469 248 470 252 471 286 472 268 473 288 474 252 475 254 476 290 477 270 478 256 479 272 480 264 481 280 482 292 483 258 484 272 485 274 486 294 487 260 488 242 489 276 490 296 491 298 492 262 493 278 494 282 495 300 496 266 497 284 498 282 499 248 500 286 501 302 502 268 503 286 504 252 505 288 506 290 507 304 508 270 509 272 510 280 511 306 512 292 513 272 514 308 515 274 516 310 517 294 518 296 519 276 520 312 521 298 522 278 523 314 524 282 525 316 526 300 527 284 528 318 529 282 530 286 531 320 532 302 533 322 534 286 535 288 536 324 537 304 538 290 539 298 540 314 541 326 542 308 543 272 544 306 545 328 546 292 547 308 548 294 549 310 550 330 551 314 552 296 553 312 554 316 555 332 556 300 557 318 558 316 559 282 560 320 561 334 562 302 563 320 564 286 565 322 566 324 567 336 568 304 569 326 570 314 571 338 572 308 573 306 574 340 575 328 576 308 577 342 578 330 579 310 580 344 581 314 582 312 583 346 584 316 585 348 586 332 587 350 588 316 589 318 590 320 591 352 592 334 593 322 594 354 595 320 596 356 597 336 598 324 599 338 600 314 601 346 602 326 603 338 604 358 605 342 606 308 607 340 608 360 609 328 610 342 611 330 612 344 613 362 614 348 615 364 616 332 617 350 618 366 619 316 620 352 621 368 622 334 623 354 624 352 625 320 626 370 627 336 628 356 629 338 630 346 631 372 632 358 633 338 634 374 635 342 636 340 637 376 638 342 639 378 640 360 641 362 642 344 643 380 644 348 645 382 646 364 647 384 648 366 649 350 650 352 651 386 652 368 653 354 654 388 655 352 656 390 657 370 658 356 659 362 660 380 661 392 662 374 663 338 664 372 665 394 666 358 667 374 668 378 669 342 670 376 671 360 672 378 673 396 674 382 675 398 676 364 677 384 678 400 679 366 680 386 681 402 682 368 683 388 684 386 685 352 686 404 687 370 688 390 689 392 690 380 691 406 692 374 693 372 694 408 695 394 696 374 697 410 698 378 699 376 700 412 701 378 702 414 703 396 704 416 705 398 706 382 707 384 708 418 709 400 710 386 711 420 712 402 713 388 714 422 715 386 716 404 717 390 718 424 719 396 720 414 721 426 722 392 723 406 724 428 725 410 726 374 727 408 728 430 729 394 730 410 731 414 732 378 733 412 734 416 735 432 736 398 737 418 738 416 739 400 740 402 741 420 742 434 743 422 744 420 745 386 746 436 747 404 748 424 749 414 750 438 751 426 752 428 753 406 754 440 755 410 756 408 757 442 758 430 759 410 760 444 761 414 762 412 763 446 764 448 765 432 766 416 767 418 768 450 769 416 770 434 771 420 772 452 773 422 774 454 775 420 776 436 777 424 778 456 779 438 780 414 781 446 782 426 783 438 784 458 785 428 786 440 787 460 788 444 789 410 790 442 791 462 792 430 793 444 794 448 795 464 796 432 797 450 798 448 799 416 800 434 801 452 802 466 803 454 804 452 805 420 806 468 807 436 808 456 809 438 810 446 811 470 812 438 813 472 814 458 815 460 816 440 817 474 818 444 819 442 820 476 821 462 822 444 823 478 824 448 825 480 826 464 827 450 828 482 829 448 830 466 831 452 832 484 833 486 834 452 835 454 836 468 837 456 838 488 839 490 840 462 841 478 842 438 843 470 844 472 845 458 846 472 847 492 848 494 849 460 850 474 851 478 852 444 853 476 854 480 855 496 856 464 857 482 858 480 859 448 860 466 861 484 862 498 863 484 864 452 865 486 866 500 867 468 868 488 869 490 870 478 871 502 872 472 873 470 874 504 875 472 876 506 877 492 878 494 879 474 880 508 881 478 882 476 883 510 884 480 885 512 886 496 887 482 888 514 889 480 890 498 891 484 892 516 893 518 894 484 895 486 896 500 897 488 898 520 899 502 900 478 901 510 902 522 903 490 904 502 905 472 906 504 907 524 908 492 909 506 910 526 911 528 912 494 913 508 914 512 915 530 916 496 917 514 918 512 919 480 920 498 921 516 922 532 923 516 924 484 925 518 926 534 927 500 928 520 929 502 930 510 931 536 932 522 933 502 934 538 935 524 936 504 937 540 938 506 939 542 940 526 941 528 942 508 943 544 944 512 945 546 946 530 947 514 948 548 949 512 950 532 951 516 952 550 953 552 954 516 955 518 956 534 957 520 958 554 959 556 960 528 961 544 962 538 963 502 964 536 965 558 966 522 967 538 968 524 969 540 970 560 971 526 972 542 973 562 974 546 975 564 976 530 977 548 978 546 979 512 980 566 981 532 982 550 983 550 984 516 985 552 986 534 987 554 988 568 989 556 990 544 991 570 992 572 993 538 994 536 995 558 996 538 997 574 998 560 999 540 1000 576 1001 578 1002 562 1003 542 1004 546 1005 580 1006 564 1007 548 1008 582 1009 546 1010 566 1011 550 1012 584 1013 586 1014 550 1015 552 1016 568 1017 554 1018 588 1019 578 1020 590 1021 562 1022 592 1023 556 1024 570 1025 572 1026 574 1027 538 1028 594 1029 558 1030 574 1031 560 1032 576 1033 596 1034 580 1035 598 1036 564 1037 582 1038 580 1039 546 1040 600 1041 566 1042 584 1043 584 1044 550 1045 586 1046 568 1047 588 1048 602 1049 604 1050 590 1051 578 1052 592 1053 570 1054 606 1055 608 1056 574 1057 572 1058 574 1059 610 1060 594 1061 576 1062 612 1063 596 1064 580 1065 614 1066 598 1067 582 1068 616 1069 580 1070 600 1071 584 1072 618 1073 620 1074 584 1075 586 1076 602 1077 588 1078 622 1079 596 1080 612 1081 624 1082 604 1083 626 1084 590 1085 628 1086 592 1087 606 1088 608 1089 630 1090 574 1091 610 1092 632 1093 594 1094 614 1095 634 1096 598 1097 616 1098 614 1099 580 1100 636 1101 600 1102 618 1103 618 1104 584 1105 620 1106 602 1107 622 1108 638 1109 612 1110 640 1111 624 1112 642 1113 626 1114 604 1115 644 1116 628 1117 606 1118 608 1119 646 1120 630 1121 610 1122 648 1123 632 1124 614 1125 650 1126 634 1127 614 1128 616 1129 652 1130 636 1131 618 1132 654 1133 656 1134 618 1135 620 1136 638 1137 622 1138 658 1139 648 1140 660 1141 632 1142 640 1143 662 1144 624 1145 642 1146 664 1147 626 1148 666 1149 628 1150 644 1151 646 1152 668 1153 630 1154 650 1155 670 1156 634 1157 614 1158 652 1159 650 1160 672 1161 636 1162 654 1163 674 1164 618 1165 656 1166 638 1167 658 1168 676 1169 678 1170 660 1171 648 1172 640 1173 680 1174 662 1175 682 1176 664 1177 642 1178 684 1179 666 1180 644 1181 646 1182 686 1183 668 1184 670 1185 650 1186 688 1187 650 1188 652 1189 690 1190 672 1191 654 1192 692 1193 674 1194 656 1195 694 1196 658 1197 696 1198 676 1199 686 1200 678 1201 668 1202 678 1203 698 1204 660 1205 680 1206 682 1207 662 1208 682 1209 700 1210 664 1211 684 1212 702 1213 666 1214 704 1215 670 1216 688 1217 650 1218 690 1219 706 1220 708 1221 672 1222 692 1223 674 1224 694 1225 710 1226 676 1227 696 1228 712 1229 678 1230 686 1231 714 1232 698 1233 678 1234 716 1235 680 1236 718 1237 682 1238 682 1239 720 1240 700 1241 722 1242 702 1243 684 1244 704 1245 688 1246 724 1247 706 1248 690 1249 726 1250 708 1251 692 1252 728 1253 710 1254 694 1255 730 1256 696 1257 732 1258 712 1259 722 1260 734 1261 702 1262 716 1263 678 1264 714 1265 736 1266 698 1267 716 1268 718 1269 720 1270 682 1271 700 1272 720 1273 738 1274 704 1275 724 1276 740 1277 742 1278 706 1279 726 1280 744 1281 708 1282 728 1283 710 1284 730 1285 746 1286 712 1287 732 1288 748 1289 750 1290 734 1291 722 1292 716 1293 714 1294 752 1295 736 1296 716 1297 754 1298 718 1299 756 1300 720 1301 720 1302 758 1303 738 1304 740 1305 724 1306 760 1307 742 1308 726 1309 762 1310 764 1311 744 1312 728 1313 746 1314 730 1315 766 1316 732 1317 768 1318 748 1319 738 1320 758 1321 770 1322 750 1323 772 1324 734 1325 754 1326 716 1327 752 1328 774 1329 736 1330 754 1331 756 1332 758 1333 720 1334 740 1335 760 1336 776 1337 760 1338 742 1339 762 1340 778 1341 744 1342 764 1343 746 1344 766 1345 780 1346 768 1347 782 1348 748 1349 758 1350 784 1351 770 1352 786 1353 772 1354 750 1355 754 1356 752 1357 788 1358 774 1359 754 1360 790 1361 756 1362 792 1363 758 1364 776 1365 760 1366 794 1367 762 1368 796 1369 760 1370 798 1371 778 1372 764 1373 800 1374 780 1375 766 1376 768 1377 802 1378 782 1379 792 1380 784 1381 758 1382 770 1383 784 1384 804 1385 786 1386 806 1387 772 1388 790 1389 754 1390 788 1391 808 1392 774 1393 790 1394 776 1395 794 1396 810 1397 796 1398 794 1399 760 1400 798 1401 812 1402 778 1403 814 1404 780 1405 800 1406 802 1407 816 1408 782 1409 792 1410 818 1411 784 1412 784 1413 820 1414 804 1415 822 1416 806 1417 786 1418 790 1419 788 1420 824 1421 808 1422 790 1423 826 1424 794 1425 828 1426 810 1427 796 1428 830 1429 794 1430 832 1431 812 1432 798 1433 834 1434 814 1435 800 1436 802 1437 836 1438 816 1439 838 1440 808 1441 826 1442 818 1443 820 1444 784 1445 804 1446 820 1447 840 1448 822 1449 842 1450 806 1451 826 1452 790 1453 824 1454 828 1455 844 1456 810 1457 830 1458 828 1459 794 1460 832 1461 846 1462 812 1463 848 1464 814 1465 834 1466 836 1467 850 1468 816 1469 838 1470 826 1471 852 1472 854 1473 820 1474 818 1475 820 1476 856 1477 840 1478 822 1479 858 1480 842 1481 826 1482 824 1483 860 1484 828 1485 862 1486 844 1487 830 1488 864 1489 828 1490 866 1491 846 1492 832 1493 868 1494 848 1495 834 1496 836 1497 870 1498 850 1499 852 1500 826 1501 860 1502 872 1503 838 1504 852 1505 854 1506 856 1507 820 1508 840 1509 856 1510 874 1511 858 1512 876 1513 842 1514 862 1515 878 1516 844 1517 864 1518 862 1519 828 1520 866 1521 880 1522 846 1523 866 1524 848 1525 868 1526 870 1527 882 1528 850 1529 852 1530 860 1531 884 1532 872 1533 852 1534 886 1535 888 1536 856 1537 854 1538 856 1539 890 1540 874 1541 858 1542 892 1543 876 1544 862 1545 894 1546 878 1547 864 1548 896 1549 862 1550 898 1551 880 1552 866 1553 900 1554 866 1555 868 1556 870 1557 902 1558 882 1559 892 1560 904 1561 876 1562 886 1563 852 1564 884 1565 906 1566 872 1567 886 1568 888 1569 890 1570 856 1571 874 1572 890 1573 908 1574 894 1575 910 1576 878 1577 896 1578 894 1579 862 1580 898 1581 912 1582 880 1583 898 1584 866 1585 900 1586 902 1587 914 1588 882 1589 892 1590 916 1591 904 1592 886 1593 884 1594 918 1595 906 1596 886 1597 920 1598 922 1599 890 1600 888 1601 908 1602 890 1603 924 1604 894 1605 926 1606 910 1607 896 1608 928 1609 894 1610 898 1611 930 1612 912 1613 932 1614 898 1615 900 1616 934 1617 914 1618 902 1619 936 1620 908 1621 924 1622 916 1623 938 1624 904 1625 886 1626 918 1627 920 1628 940 1629 906 1630 920 1631 922 1632 942 1633 890 1634 926 1635 944 1636 910 1637 928 1638 926 1639 894 1640 930 1641 946 1642 912 1643 930 1644 898 1645 932 1646 934 1647 948 1648 914 1649 936 1650 924 1651 950 1652 916 1653 952 1654 938 1655 920 1656 918 1657 954 1658 940 1659 920 1660 956 1661 958 1662 942 1663 922 1664 926 1665 960 1666 944 1667 928 1668 962 1669 926 1670 930 1671 964 1672 946 1673 966 1674 930 1675 932 1676 968 1677 948 1678 934 1679 950 1680 942 1681 958 1682 970 1683 936 1684 950 1685 952 1686 972 1687 938 1688 920 1689 954 1690 974 1691 940 1692 956 1693 976 1694 960 1695 978 1696 944 1697 962 1698 960 1699 926 1700 964 1701 980 1702 946 1703 964 1704 930 1705 966 1706 968 1707 982 1708 948 1709 950 1710 958 1711 984 1712 970 1713 950 1714 986 1715 952 1716 988 1717 972 1718 974 1719 954 1720 990 1721 976 1722 956 1723 992 1724 960 1725 994 1726 978 1727 962 1728 996 1729 960 1730 964 1731 998 1732 980 1733 1000 1734 964 1735 966 1736 1002 1737 982 1738 968 1739 976 1740 992 1741 1004 1742 986 1743 950 1744 984 1745 1006 1746 970 1747 986 1748 972 1749 988 1750 1008 1751 992 1752 974 1753 990 1754 994 1755 1010 1756 978 1757 996 1758 994 1759 960 1760 998 1761 1012 1762 980 1763 998 1764 964 1765 1000 1766 1002 1767 1014 1768 982 1769 1004 1770 992 1771 1016 1772 986 1773 984 1774 1018 1775 1006 1776 986 1777 1020 1778 1008 1779 988 1780 1022 1781 992 1782 990 1783 1024 1784 994 1785 1026 1786 1010 1787 1028 1788 994 1789 996 1790 998 1791 1030 1792 1012 1793 1000 1794 1032 1795 998 1796 1034 1797 1014 1798 1002 1799 1016 1800 992 1801 1024 1802 1004 1803 1016 1804 1036 1805 1020 1806 986 1807 1018 1808 1038 1809 1006 1810 1020 1811 1008 1812 1022 1813 1040 1814 1026 1815 1042 1816 1010 1817 1028 1818 1044 1819 994 1820 1030 1821 1046 1822 1012 1823 1032 1824 1030 1825 998 1826 1048 1827 1014 1828 1034 1829 1016 1830 1024 1831 1050 1832 1036 1833 1016 1834 1052 1835 1020 1836 1018 1837 1054 1838 1020 1839 1056 1840 1038 1841 1040 1842 1022 1843 1058 1844 1026 1845 1060 1846 1042 1847 1062 1848 1044 1849 1028 1850 1030 1851 1064 1852 1046 1853 1032 1854 1066 1855 1030 1856 1068 1857 1048 1858 1034 1859 1040 1860 1058 1861 1070 1862 1052 1863 1016 1864 1050 1865 1072 1866 1036 1867 1052 1868 1056 1869 1020 1870 1054 1871 1038 1872 1056 1873 1074 1874 1060 1875 1076 1876 1042 1877 1062 1878 1078 1879 1044 1880 1064 1881 1080 1882 1046 1883 1066 1884 1064 1885 1030 1886 1082 1887 1048 1888 1068 1889 1070 1890 1058 1891 1084 1892 1052 1893 1050 1894 1086 1895 1072 1896 1052 1897 1088 1898 1056 1899 1054 1900 1090 1901 1056 1902 1092 1903 1074 1904 1094 1905 1076 1906 1060 1907 1062 1908 1096 1909 1078 1910 1064 1911 1098 1912 1080 1913 1066 1914 1100 1915 1064 1916 1082 1917 1068 1918 1102 1919 1074 1920 1092 1921 1104 1922 1070 1923 1084 1924 1106 1925 1088 1926 1052 1927 1086 1928 1108 1929 1072 1930 1088 1931 1092 1932 1056 1933 1090 1934 1094 1935 1110 1936 1076 1937 1096 1938 1094 1939 1078 1940 1080 1941 1098 1942 1112 1943 1100 1944 1114 1945 1064 1946 1116 1947 1082 1948 1102 1949 1092 1950 1118 1951 1104 1952 1106 1953 1084 1954 1120 1955 1088 1956 1086 1957 1122 1958 1108 1959 1088 1960 1124 1961 1092 1962 1090 1963 1126 1964 1128 1965 1110 1966 1094 1967 1096 1968 1130 1969 1094 1970 1112 1971 1098 1972 1132 1973 1134 1974 1114 1975 1100 1976 1116 1977 1102 1978 1136 1979 1118 1980 1092 1981 1126 1982 1104 1983 1118 1984 1138 1985 1106 1986 1120 1987 1140 1988 1124 1989 1088 1990 1122 1991 1142 1992 1108 1993 1124 1994 1128 1995 1144 1996 1110 1997 1130 1998 1128 1999 1094 2000 1112 2001 1132 2002 1146 2003 1132 2004 1114 2005 1134 2006 1148 2007 1116 2008 1136 2009 1118 2010 1126 2011 1150 2012 1118 2013 1152 2014 1138 2015 1140 2016 1120 2017 1154 2018 1124 2019 1122 2020 1156 2021 1142 2022 1124 2023 1158 2024 1128 2025 1160 2026 1144 2027 1130 2028 1162 2029 1128 2030 1146 2031 1132 2032 1164 2033 1166 2034 1132 2035 1134 2036 1148 2037 1136 2038 1168 2039 1170 2040 1142 2041 1158 2042 1118 2043 1150 2044 1152 2045 1138 2046 1152 2047 1172 2048 1174 2049 1140 2050 1154 2051 1158 2052 1124 2053 1156 2054 1160 2055 1176 2056 1144 2057 1162 2058 1160 2059 1128 2060 1146 2061 1164 2062 1178 2063 1164 2064 1132 2065 1166 2066 1180 2067 1148 2068 1168 2069 1170 2070 1158 2071 1182 2072 1152 2073 1150 2074 1184 2075 1152 2076 1186 2077 1172 2078 1174 2079 1154 2080 1188 2081 1158 2082 1156 2083 1190 2084 1160 2085 1192 2086 1176 2087 1162 2088 1194 2089 1160 2090 1178 2091 1164 2092 1196 2093 1198 2094 1164 2095 1166 2096 1180 2097 1168 2098 1200 2099 1182 2100 1158 2101 1190 2102 1202 2103 1170 2104 1182 2105 1152 2106 1184 2107 1204 2108 1172 2109 1186 2110 1206 2111 1208 2112 1174 2113 1188 2114 1192 2115 1210 2116 1176 2117 1194 2118 1192 2119 1160 2120 1178 2121 1196 2122 1212 2123 1196 2124 1164 2125 1198 2126 1214 2127 1180 2128 1200 2129 1182 2130 1190 2131 1216 2132 1202 2133 1182 2134 1218 2135 1204 2136 1184 2137 1220 2138 1186 2139 1222 2140 1206 2141 1208 2142 1188 2143 1224 2144 1226 2145 1208 2146 1224 2147 1218 2148 1182 2149 1216 2150 1228 2151 1202 2152 1218 2153 1204 2154 1220 2155 1230 2156 1206 2157 1222 2158 1232 2159 1226 2160 1224 2161 1234 2162 1236 2163 1218 2164 1216 2165 1218 2166 1238 2167 1228 2168 1230 2169 1220 2170 1240 2171 1242 2172 1232 2173 1222 2174 1242 2175 1244 2176 1232 2177 1246 2178 1226 2179 1234 2180 1236 2181 1238 2182 1218 2183 1238 2184 1248 2185 1228 2186 1230 2187 1240 2188 1250 2189 1252 2190 1244 2191 1242 2192 1246 2193 1234 2194 1254 2195 1256 2196 1238 2197 1236 2198 1238 2199 1258 2200 1248 2201 1240 2202 1260 2203 1250 2204 1250 2205 1260 2206 1262 2207 1252 2208 1264 2209 1244 2210 1266 2211 1246 2212 1254 2213 1256 2214 1268 2215 1238 2216 1258 2217 1270 2218 1248 2219 1260 2220 1272 2221 1262 2222 1274 2223 1264 2224 1252 2225 1276 2226 1266 2227 1254 2228 1256 2229 1278 2230 1268 2231 1258 2232 1280 2233 1270 2234 1280 2235 1282 2236 1270 2237 1272 2238 1284 2239 1262 2240 1274 2241 1286 2242 1264 2243 1288 2244 1266 2245 1276 2246 1278 2247 1280 2248 1268 2249 1290 2250 1282 2251 1280 2252 1272 2253 1292 2254 1284 2255 1294 2256 1286 2257 1274 2258 1296 2259 1288 2260 1276 2261 1280 2262 1278 2263 1298 2264 1290 2265 1280 2266 1298 2267 1290 2268 1300 2269 1282 2270 1292 2271 1294 2272 1284 2273 1294 2274 1302 2275 1286 2276 1296 2277 1304 2278 1288 2279 1290 2280 1298 2281 1306 2282 1300 2283 1290 2284 1308 2285 1292 2286 1310 2287 1294 2288 1294 2289 1312 2290 1302 2291 1314 2292 1304 2293 1296 2294 1314 2295 1316 2296 1304 2297 1308 2298 1290 2299 1306 2300 1318 2301 1300 2302 1308 2303 1310 2304 1312 2305 1294 2306 1302 2307 1312 2308 1320 2309 1322 2310 1316 2311 1314 2312 1308 2313 1306 2314 1324 2315 1318 2316 1308 2317 1326 2318 1310 2319 1328 2320 1312 2321 1312 2322 1330 2323 1320 2324 1320 2325 1330 2326 1332 2327 1322 2328 1334 2329 1316 2330 1326 2331 1308 2332 1324 2333 1336 2334 1318 2335 1326 2336 1328 2337 1330 2338 1312 2339 1330 2340 1338 2341 1332 2342 1340 2343 1334 2344 1322 2345 1326 2346 1324 2347 1342 2348 1336 2349 1326 2350 1344 2351 1328 2352 1346 2353 1330 2354 1346 2355 1338 2356 1330 2357 1332 2358 1338 2359 1348 2360 1340 2361 1350 2362 1334 2363 1344 2364 1326 2365 1342 2366 1352 2367 1336 2368 1344 2369 1346 2370 1354 2371 1338 2372 1338 2373 1356 2374 1348 2375 1358 2376 1350 2377 1340 2378 1344 2379 1342 2380 1360 2381 1352 2382 1344 2383 1362 2384 1364 2385 1352 2386 1362 2387 1354 2388 1356 2389 1338 2390 1348 2391 1356 2392 1366 2393 1358 2394 1368 2395 1350 2396 1362 2397 1344 2398 1360 2399 1364 2400 1362 2401 1370 2402 1372 2403 1356 2404 1354 2405 1356 2406 1374 2407 1366 2408 1358 2409 1376 2410 1368 2411 1362 2412 1360 2413 1378 2414 1370 2415 1362 2416 1378 2417 1380 2418 1364 2419 1370 2420 1372 2421 1374 2422 1356 2423 1366 2424 1374 2425 1382 2426 1376 2427 1384 2428 1368 2429 1370 2430 1378 2431 1386 2432 1380 2433 1370 2434 1388 2435 1390 2436 1374 2437 1372 2438 1374 2439 1392 2440 1382 2441 1376 2442 1394 2443 1384 2444 1394 2445 1396 2446 1384 2447 1388 2448 1370 2449 1386 2450 1398 2451 1380 2452 1388 2453 1390 2454 1392 2455 1374 2456 1382 2457 1392 2458 1400 2459 1394 2460 1402 2461 1396 2462 1388 2463 1386 2464 1404 2465 1398 2466 1388 2467 1406 2468 1408 2469 1392 2470 1390 2471 1400 2472 1392 2473 1410 2474 1412 2475 1400 2476 1410 2477 1402 2478 1414 2479 1396 2480 1388 2481 1404 2482 1406 2483 1416 2484 1398 2485 1406 2486 1408 2487 1418 2488 1392 2489 1412 2490 1410 2491 1420 2492 1402 2493 1422 2494 1414 2495 1406 2496 1404 2497 1424 2498 1416 2499 1406 2500 1426 2501 1428 2502 1418 2503 1408 2504 1420 2505 1418 2506 1428 2507 1430 2508 1412 2509 1420 2510 1422 2511 1432 2512 1414 2513 1406 2514 1424 2515 1434 2516 1416 2517 1426 2518 1436 2519 1420 2520 1428 2521 1438 2522 1430 2523 1420 2524 1440 2525 1422 2526 1442 2527 1432 2528 1434 2529 1424 2530 1444 2531 1436 2532 1426 2533 1446 2534 1436 2535 1446 2536 1448 2537 1440 2538 1420 2539 1438 2540 1450 2541 1430 2542 1440 2543 1432 2544 1442 2545 1452 2546 1446 2547 1434 2548 1444 2549 1448 2550 1446 2551 1454 2552 1440 2553 1438 2554 1456 2555 1450 2556 1440 2557 1458 2558 1452 2559 1442 2560 1460 2561 1446 2562 1444 2563 1462 2564 1454 2565 1446 2566 1462 2567 1448 2568 1454 2569 1464 2570 1458 2571 1440 2572 1456 2573 1466 2574 1450 2575 1458 2576 1452 2577 1460 2578 1468 2579 1454 2580 1462 2581 1470 2582 1464 2583 1454 2584 1472 2585 1458 2586 1456 2587 1474 2588 1458 2589 1476 2590 1466 2591 1468 2592 1460 2593 1478 2594 1468 2595 1478 2596 1480 2597 1472 2598 1454 2599 1470 2600 1482 2601 1464 2602 1472 2603 1476 2604 1458 2605 1474 2606 1466 2607 1476 2608 1484 2609 1480 2610 1478 2611 1486 2612 1472 2613 1470 2614 1488 2615 1482 2616 1472 2617 1490 2618 1476 2619 1474 2620 1492 2621 1476 2622 1494 2623 1484 2624 1484 2625 1494 2626 1496 2627 1480 2628 1486 2629 1498 2630 1490 2631 1472 2632 1488 2633 1500 2634 1482 2635 1490 2636 1494 2637 1476 2638 1492 2639 1494 2640 1502 2641 1496 2642 1498 2643 1486 2644 1504 2645 1490 2646 1488 2647 1506 2648 1500 2649 1490 2650 1508 2651 1494 2652 1492 2653 1510 2654 1502 2655 1494 2656 1510 2657 1496 2658 1502 2659 1512 2660 1498 2661 1504 2662 1514 2663 1508 2664 1490 2665 1506 2666 1516 2667 1500 2668 1508 2669</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"890\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1737\" />\r\n\t\t\t\t\t<p>3 4 5 3 5 7 10 11 4 13 5 4 17 18 19 21 3 7 23 11 10 11 25 4 18 28 29 13 4 31 33 17 19 19 18 29 35 21 7 23 10 37 41 42 43 46 47 42 31 4 25 29 28 49 51 13 31 55 56 57 33 59 17 62 63 56 65 21 35 67 23 37 41 43 69 41 46 42 46 57 47 31 25 71 74 75 62 28 77 49 51 31 79 81 55 57 56 63 57 83 59 33 62 75 63 85 65 35 67 37 65 69 43 87 91 92 93 93 95 81 57 97 47 79 31 71 74 99 75 49 77 101 103 51 79 95 55 81 57 63 97 83 105 59 63 75 107 109 65 85 65 111 67 69 87 113 115 92 91 92 95 93 79 71 117 75 99 119 121 99 74 77 123 101 103 79 125 63 107 97 83 127 105 75 119 107 129 109 85 65 109 111 87 131 113 133 115 91 127 136 137 125 79 117 99 139 119 121 141 99 101 123 143 145 103 125 127 137 105 125 117 147 129 149 109 109 151 111 113 131 153 115 133 155 136 157 137 160 147 161 99 141 139 163 141 121 123 165 143 145 125 160 160 125 147 129 167 149 109 149 151 131 169 153 155 133 171 136 173 157 175 160 161 139 141 177 163 179 141 165 181 143 183 145 160 167 185 149 149 187 151 153 169 189 155 171 191 173 193 157 183 160 175 175 161 195 141 179 177 197 179 163 165 199 181 167 201 185 149 185 187 169 203 189 191 171 189 173 205 193 207 183 175 209 175 195 177 179 211 197 213 179 199 215 181 201 217 185 185 219 187 189 203 221 191 189 223 205 225 193 199 227 215 207 175 209 209 195 229 179 213 211 231 213 197 201 233 217 185 217 219 203 235 221 223 189 221 205 237 225 227 239 215 241 207 209 243 209 229 211 213 245 247 213 231 233 249 217 217 251 219 235 253 221 223 221 255 225 237 257 247 231 259 227 261 239 243 241 209 243 229 263 213 265 245 233 267 249 217 249 251 235 269 253 255 221 253 237 271 257 273 247 259 261 275 239 277 241 243 279 243 263 245 265 281 267 283 249 249 285 251 269 287 253 255 253 289 257 271 291 281 265 273 273 259 293 261 295 275 297 277 243 279 263 299 267 301 283 249 283 285 269 303 287 289 253 287 271 305 291 307 281 273 309 273 293 295 311 275 313 277 297 315 279 299 301 317 283 283 319 285 303 321 287 289 287 323 291 305 325 327 315 299 307 273 309 309 293 329 331 311 295 313 297 315 301 333 317 283 317 319 303 335 321 323 287 321 305 337 325 339 315 327 341 307 309 343 309 329 345 311 331 347 313 315 333 349 317 319 317 351 335 353 321 321 355 323 325 337 357 347 315 339 359 339 327 341 309 343 343 329 361 363 345 331 333 365 349 317 367 351 335 369 353 321 353 355 357 337 371 373 347 339 375 339 359 377 341 343 361 379 343 381 345 363 365 383 349 351 367 385 369 387 353 353 389 355 357 371 391 393 381 363 373 339 375 375 359 395 377 343 379 397 379 361 365 399 383 367 401 385 369 403 387 353 387 389 391 371 405 407 381 393 409 373 375 411 375 395 413 377 379 397 415 379 383 399 417 401 419 385 403 421 387 387 423 389 425 391 405 427 415 397 429 407 393 409 375 411 411 395 431 413 379 415 399 433 417 401 417 419 435 421 403 387 421 423 425 405 437 427 439 415 441 407 429 443 409 411 445 411 431 447 413 415 417 433 449 417 451 419 453 421 435 421 455 423 457 425 437 447 415 439 459 439 427 461 441 429 443 411 445 445 431 463 433 465 449 417 449 451 467 453 435 421 453 455 457 437 469 471 447 439 459 473 439 475 441 461 477 443 445 479 445 463 465 481 449 449 483 451 485 453 467 455 453 487 489 457 469 479 463 491 473 471 439 493 473 459 475 461 495 477 445 479 465 497 481 449 481 483 499 485 467 487 453 485 489 469 501 503 479 491 505 471 473 493 507 473 509 475 495 511 477 479 497 513 481 481 515 483 517 485 499 487 485 519 521 489 501 511 479 503 503 491 523 525 505 473 527 507 493 509 495 529 497 531 513 481 513 515 533 517 499 519 485 517 521 501 535 537 511 503 539 503 523 541 505 525 527 543 507 545 509 529 531 547 513 513 549 515 551 517 533 519 517 553 555 521 535 545 529 557 537 503 539 539 523 559 561 541 525 563 543 527 531 565 547 513 547 549 551 533 567 553 517 551 569 555 535 571 545 557 537 539 573 575 539 559 577 541 561 543 563 579 565 581 547 547 583 549 585 551 567 553 551 587 589 555 569 563 591 579 571 557 593 539 575 573 575 559 595 597 577 561 565 599 581 547 581 583 585 567 601 587 551 585 603 589 569 579 591 605 607 571 593 573 575 609 595 611 575 597 613 577 599 615 581 581 617 583 619 585 601 587 585 621 623 589 603 625 613 597 591 627 605 607 593 629 575 631 609 595 633 611 599 635 615 581 615 617 619 601 637 621 585 619 639 623 603 625 641 613 605 627 643 607 629 645 631 647 609 633 649 611 635 651 615 653 617 615 655 619 637 621 619 657 659 623 639 633 661 649 625 663 641 627 665 643 645 629 667 631 669 647 635 671 651 651 653 615 655 637 673 657 619 675 677 659 639 649 661 679 663 681 641 643 665 683 645 667 685 669 687 647 689 651 671 691 653 651 693 655 673 695 657 675 677 697 659 669 679 687 661 699 679 663 683 681 665 701 683 667 703 685 689 671 705 707 691 651 693 673 709 711 695 675 713 697 677 715 687 679 717 679 699 683 719 681 701 721 683 685 703 723 725 689 705 727 691 707 729 693 709 731 695 711 713 733 697 703 735 723 715 679 717 717 699 737 683 721 719 739 721 701 741 725 705 727 707 743 729 709 745 747 731 711 749 733 713 723 735 751 753 715 717 755 717 737 721 757 719 739 759 721 761 725 741 763 727 743 729 745 765 767 731 747 749 769 733 771 759 739 735 773 751 753 717 755 755 737 775 721 759 757 777 761 741 763 743 761 765 745 779 781 767 747 749 783 769 771 785 759 751 773 787 789 753 755 791 755 775 759 793 757 795 761 777 761 797 763 765 779 799 767 781 801 783 803 769 759 785 793 805 785 771 773 807 787 789 755 791 791 775 809 811 795 777 761 795 797 779 813 799 801 781 815 783 817 803 785 819 793 805 821 785 787 807 823 825 789 791 827 791 809 811 829 795 795 831 797 799 813 833 801 815 835 817 837 803 827 809 839 785 821 819 841 821 805 807 843 823 825 791 827 811 845 829 795 829 831 813 847 833 835 815 849 817 851 837 853 827 839 819 821 855 841 857 821 843 859 823 861 825 827 845 863 829 829 865 831 833 847 867 835 849 869 851 871 837 861 827 853 853 839 873 821 857 855 875 857 841 843 877 859 845 879 863 829 863 865 847 881 867 869 849 867 851 883 871 885 861 853 887 853 873 855 857 889 875 891 857 877 893 859 879 895 863 863 897 865 867 881 899 869 867 901 883 903 871 877 905 893 885 853 887 887 873 907 857 891 889 909 891 875 879 911 895 863 895 897 881 913 899 901 867 899 883 915 903 905 917 893 919 885 887 921 887 907 889 891 923 925 891 909 911 927 895 895 929 897 913 931 899 901 899 933 903 915 935 925 909 937 905 939 917 921 919 887 921 907 941 891 943 923 911 945 927 895 927 929 913 947 931 933 899 931 915 949 935 951 925 937 939 953 917 955 919 921 957 921 941 923 943 959 945 961 927 927 963 929 947 965 931 933 931 967 935 949 969 959 943 951 951 937 971 939 973 953 975 955 921 977 957 941 945 979 961 927 961 963 947 981 965 967 931 965 949 983 969 985 959 951 987 951 971 973 989 953 991 955 975 993 957 977 979 995 961 961 997 963 981 999 965 967 965 1001 969 983 1003 1005 993 977 985 951 987 987 971 1007 1009 989 973 991 975 993 979 1011 995 961 995 997 981 1013 999 1001 965 999 983 1015 1003 1017 993 1005 1019 985 987 1021 987 1007 1023 989 1009 1025 991 993 1011 1027 995 997 995 1029 1013 1031 999 999 1033 1001 1003 1015 1035 1025 993 1017 1037 1017 1005 1019 987 1021 1021 1007 1039 1041 1023 1009 1011 1043 1027 995 1045 1029 1013 1047 1031 999 1031 1033 1035 1015 1049 1051 1025 1017 1053 1017 1037 1055 1019 1021 1039 1057 1021 1059 1023 1041 1043 1061 1027 1029 1045 1063 1047 1065 1031 1031 1067 1033 1035 1049 1069 1071 1059 1041 1051 1017 1053 1053 1037 1073 1055 1021 1057 1075 1057 1039 1043 1077 1061 1045 1079 1063 1047 1081 1065 1031 1065 1067 1069 1049 1083 1085 1059 1071 1087 1051 1053 1089 1053 1073 1091 1055 1057 1075 1093 1057 1061 1077 1095 1079 1097 1063 1081 1099 1065 1065 1101 1067 1103 1069 1083 1105 1093 1075 1107 1085 1071 1087 1053 1089 1089 1073 1109 1091 1057 1093 1077 1111 1095 1079 1095 1097 1113 1099 1081 1065 1115 1101 1103 1083 1117 1105 1119 1093 1121 1085 1107 1123 1087 1089 1125 1089 1109 1127 1091 1093 1095 1111 1129 1095 1131 1097 1133 1099 1113 1101 1115 1135 1137 1103 1117 1127 1093 1119 1139 1119 1105 1141 1121 1107 1123 1089 1125 1125 1109 1143 1111 1145 1129 1095 1129 1131 1147 1133 1113 1135 1115 1133 1137 1117 1149 1151 1127 1119 1139 1153 1119 1155 1121 1141 1157 1123 1125 1159 1125 1143 1145 1161 1129 1129 1163 1131 1165 1133 1147 1135 1133 1167 1169 1137 1149 1159 1143 1171 1153 1151 1119 1173 1153 1139 1155 1141 1175 1157 1125 1159 1145 1177 1161 1129 1161 1163 1179 1165 1147 1167 1133 1165 1169 1149 1181 1183 1159 1171 1185 1151 1153 1173 1187 1153 1189 1155 1175 1191 1157 1159 1177 1193 1161 1161 1195 1163 1197 1165 1179 1167 1165 1199 1201 1169 1181 1191 1159 1183 1183 1171 1203 1205 1185 1153 1207 1187 1173 1189 1175 1209 1177 1211 1193 1161 1193 1195 1213 1197 1179 1199 1165 1197 1201 1181 1215 1217 1191 1183 1219 1183 1203 1221 1185 1205 1207 1223 1187 1225 1189 1209 1225 1209 1227 1217 1183 1219 1219 1203 1229 1231 1221 1205 1233 1223 1207 1235 1225 1227 1217 1219 1237 1229 1239 1219 1241 1221 1231 1223 1233 1243 1233 1245 1243 1235 1227 1247 1219 1239 1237 1229 1249 1239 1251 1241 1231 1243 1245 1253 1255 1235 1247 1237 1239 1257 1249 1259 1239 1251 1261 1241 1263 1261 1251 1245 1265 1253 1255 1247 1267 1239 1269 1257 1249 1271 1259 1263 1273 1261 1253 1265 1275 1255 1267 1277 1269 1279 1257 1271 1281 1259 1271 1283 1281 1263 1285 1273 1265 1287 1275 1277 1267 1289 1269 1281 1279 1281 1283 1291 1285 1293 1273 1275 1287 1295 1277 1289 1297 1299 1279 1281 1299 1281 1291 1283 1301 1291 1285 1295 1293 1287 1303 1295 1289 1305 1297 1307 1299 1291 1309 1291 1301 1295 1311 1293 1303 1313 1295 1297 1305 1315 1305 1317 1315 1307 1291 1309 1309 1301 1319 1295 1313 1311 1321 1313 1303 1315 1317 1323 1325 1307 1309 1327 1309 1319 1313 1329 1311 1321 1331 1313 1333 1331 1321 1317 1335 1323 1325 1309 1327 1327 1319 1337 1313 1331 1329 1333 1339 1331 1323 1335 1341 1343 1325 1327 1345 1327 1337 1331 1347 1329 1331 1339 1347 1349 1339 1333 1335 1351 1341 1343 1327 1345 1345 1337 1353 1339 1355 1347 1349 1357 1339 1341 1351 1359 1361 1343 1345 1363 1345 1353 1363 1353 1365 1339 1357 1355 1367 1357 1349 1351 1369 1359 1361 1345 1363 1371 1363 1365 1355 1357 1373 1367 1375 1357 1369 1377 1359 1379 1361 1363 1379 1363 1371 1371 1365 1381 1357 1375 1373 1383 1375 1367 1369 1385 1377 1387 1379 1371 1389 1371 1381 1373 1375 1391 1383 1393 1375 1385 1395 1377 1385 1397 1395 1387 1371 1389 1389 1381 1399 1375 1393 1391 1401 1393 1383 1397 1403 1395 1405 1387 1389 1407 1389 1399 1391 1393 1409 1411 1393 1401 1411 1401 1413 1397 1415 1403 1407 1405 1389 1407 1399 1417 1393 1419 1409 1421 1411 1413 1415 1423 1403 1425 1405 1407 1427 1407 1417 1409 1419 1429 1429 1419 1421 1421 1413 1431 1415 1433 1423 1435 1425 1407 1437 1427 1417 1439 1429 1421 1441 1421 1431 1433 1443 1423 1445 1425 1435 1447 1427 1437 1449 1447 1437 1439 1421 1441 1441 1431 1451 1453 1443 1433 1445 1435 1447 1455 1447 1449 1457 1439 1441 1459 1441 1451 1461 1443 1453 1463 1445 1447 1463 1447 1455 1465 1455 1449 1457 1441 1459 1459 1451 1467 1469 1461 1453 1471 1463 1455 1473 1455 1465 1475 1457 1459 1467 1477 1459 1479 1461 1469 1481 1479 1469 1471 1455 1473 1473 1465 1483 1475 1459 1477 1485 1477 1467 1487 1479 1481 1489 1471 1473 1491 1473 1483 1493 1475 1477 1485 1495 1477 1497 1495 1485 1499 1487 1481 1489 1473 1491 1491 1483 1501 1493 1477 1495 1497 1503 1495 1505 1487 1499 1507 1489 1491 1509 1491 1501 1511 1493 1495 1511 1495 1503 1513 1503 1497 1515 1505 1499 1507 1491 1509 1509 1501 1517</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1742\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1743\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1746\">-0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6343077421188355 1.414041757583618 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1746\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1744\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1747\">0.9999999997435105 2.264904028305049e-005 -2.209455120321467e-018 0.9999999997435105 2.264904028312894e-005 -6.051660786087425e-018 0.6234634960262413 0.7818524599454407 -1.526749119931941e-019 -0.6234634960262413 -0.7818524599454407 1.526749119931941e-019 -0.9999999997435105 -2.264904028312894e-005 6.051660786087425e-018 -0.9999999997435105 -2.264904028305049e-005 2.209455120321467e-018 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234634960262414 0.7818524599454408 -1.040780674003078e-018 -0.6234634960262414 -0.7818524599454408 1.040780674003078e-018 0.6234652837365569 -0.7818510343890929 -5.707467413603938e-018 -0.6234652837365569 0.7818510343890929 5.707467413603938e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.2225354781476582 0.9749245924509203 4.145506498485379e-018 0.2225354781476582 -0.9749245924509203 -4.145506498485379e-018 0 0 1 -0 -0 -1 0.623465283736557 -0.7818510343890928 7.994120291056104e-019 -0.623465283736557 0.7818510343890928 -7.994120291056104e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225354781476585 0.9749245924509202 1.043018590684045e-018 0.2225354781476585 -0.9749245924509202 -1.043018590684045e-018 0 0 1 -0 -0 -1 -0.2225553300349599 -0.9749200608629561 -4.056770881837861e-018 0.2225553300349599 0.9749200608629561 4.056770881837861e-018 0 0 -1 -0 -0 1 -0.9009553760018496 0.4339117542235586 2.214555474022641e-018 0.9009553760018496 -0.4339117542235586 -2.214555474022641e-018 -0.2225553300349603 -0.974920060862956 8.21790817236331e-019 0.2225553300349603 0.974920060862956 -8.21790817236331e-019 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009553760018496 0.4339117542235587 0 -0.9009553760018496 -0.4339117542235587 0 0.9009553760018496 0.4339117542235587 -0 0.9009553760018496 -0.4339117542235587 -0 -0.9009553760018495 -0.4339117542235588 -2.21455547402264e-018 0.9009553760018495 0.4339117542235588 2.21455547402264e-018</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1747\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1745\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1743\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1744\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"56\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1745\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1748\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1749\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1752\">-0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6348807811737061 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6348807811737061 1.413632392883301 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6348807811737061 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6348807811737061 1.413632392883301 0.01115624234080315 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1752\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1750\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1753\">0.9999999999692774 7.838719476032881e-006 4.376233027348433e-018 0.9999999999692772 7.838719476072105e-006 4.376233027348431e-018 0.6234822154226067 0.7818375323887425 4.376154661136589e-018 -0.6234822154226067 -0.7818375323887425 -4.376154661136589e-018 -0.9999999999692772 -7.838719476072105e-006 -4.376233027348431e-018 -0.9999999999692774 -7.838719476032881e-006 -4.376233027348433e-018 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.623482215422607 0.7818375323887425 6.250799169781779e-018 -0.623482215422607 -0.7818375323887425 -6.250799169781779e-018 0.6234828356507187 -0.7818370377827716 2.022204829232494e-018 -0.6234828356507187 0.7818370377827716 -2.022204829232494e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.2225136552712602 0.9749295734656032 -2.373810475256616e-018 0.2225136552712602 -0.9749295734656032 2.373810475256616e-018 0 0 1 -0 -0 -1 0.6234828356507183 -0.7818370377827718 2.022204829232495e-018 -0.6234828356507183 0.7818370377827718 -2.022204829232495e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225136552712601 0.9749295734656031 -4.991495804369193e-019 0.2225136552712601 -0.9749295734656031 4.991495804369193e-019 0 0 1 -0 -0 -1 -0.2225315399609898 -0.9749254913697715 7.064833780320975e-018 0.2225315399609898 0.9749254913697715 -7.064833780320975e-018 0 0 -1 -0 -0 1 -0.9009673547404414 0.4338868812167653 -2.521354725908289e-018 0.9009673547404414 -0.4338868812167653 2.521354725908289e-018 -0.2225315399609899 -0.9749254913697715 7.064833780320978e-018 0.2225315399609899 0.9749254913697715 -7.064833780320978e-018 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009673547404414 0.4338868812167655 -2.521354725908289e-018 -0.9009722572624185 -0.4338767009686765 5.042591135187332e-018 0.9009722572624185 0.4338767009686765 -5.042591135187332e-018 0.9009673547404414 -0.4338868812167655 2.521354725908289e-018 -0.9009722572624185 -0.4338767009686765 5.042591135187332e-018 0.9009722572624185 0.4338767009686765 -5.042591135187332e-018</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1753\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1751\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1749\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1750\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"56\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1751\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1754\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1755\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1758\">0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6307075619697571 1.414041757583618 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1758\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1756\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1759\">0.999999999835843 1.81194371653217e-005 0 0.9999999998358429 1.811943716606694e-005 0 0.6234886533956409 0.7818323983354045 0 -0.6234886533956409 -0.7818323983354045 -0 -0.9999999998358429 -1.811943716606694e-005 -0 -0.999999999835843 -1.81194371653217e-005 -0 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234886533956403 0.7818323983354046 8.883269865254059e-019 -0.6234886533956403 -0.7818323983354046 -8.883269865254059e-019 0.6234670018001388 -0.7818496643641576 0 -0.6234670018001388 0.7818496643641576 -0 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.22253105986498 0.9749256009539236 -2.281655084337777e-018 0.22253105986498 -0.9749256009539236 2.281655084337777e-018 0 0 1 -0 -0 -1 0.6234670018001383 -0.7818496643641582 8.883738370841776e-019 -0.6234670018001383 0.7818496643641582 -8.883738370841776e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.22253105986498 0.9749256009539233 -1.393350726446899e-018 0.22253105986498 -0.9749256009539233 1.393350726446899e-018 0 0 1 -0 -0 -1 -0.2225717438300778 -0.9749163137666937 -2.281615407694076e-018 0.2225717438300778 0.9749163137666937 2.281615407694076e-018 0 0 -1 -0 -0 1 -0.9009663507201748 0.4338889660615616 -2.326067923860243e-018 0.9009663507201748 -0.4338889660615616 2.326067923860243e-018 -0.2225717438300776 -0.9749163137666936 5.25262819099682e-018 0.2225717438300776 0.9749163137666936 -5.25262819099682e-018 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009663507201748 0.4338889660615616 -2.326067923860243e-018 -0.900964579576922 -0.4338926438046397 4.652175280298288e-018 0.900964579576922 0.4338926438046397 -4.652175280298288e-018 0.9009663507201748 -0.4338889660615616 2.326067923860243e-018 -0.9009645795769223 -0.4338926438046395 -1.994027489437981e-018 0.9009645795769223 0.4338926438046395 1.994027489437981e-018</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1759\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1757\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1755\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1756\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"56\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1757\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1760\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1761\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1764\">0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.630134642124176 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.630134642124176 1.413632392883301 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.630134642124176 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.630134642124176 1.413632392883301 0.01352904364466667 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1764\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1762\">\r\n\t\t\t\t\t<float_array count=\"180\" id=\"ID1765\">0.9999999999889406 4.703048739066014e-006 -3.194773570613557e-019 0.9999999999889407 4.703048739026789e-006 -4.377776668071451e-018 0.6234969919307719 0.7818257485228271 0 -0.6234969919307719 -0.7818257485228271 -0 -0.9999999999889407 -4.703048739026789e-006 4.377776668071451e-018 -0.9999999999889406 -4.703048739066014e-006 3.194773570613557e-019 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234969919307718 0.7818257485228271 0 -0.6234969919307718 -0.7818257485228271 -0 0.6234896527204427 -0.7818316014018247 -2.035488031807518e-018 -0.6234896527204427 0.7818316014018247 2.035488031807518e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.222513294333848 0.9749296558443067 0 0.222513294333848 -0.9749296558443067 -0 0 0 1 -0 -0 -1 0.623489652720443 -0.7818316014018245 1.476226992554694e-019 -0.623489652720443 0.7818316014018245 -1.476226992554694e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225132943338478 0.9749296558443067 0 0.2225132943338478 -0.9749296558443067 -0 0 0 1 -0 -0 -1 -0.2225325393559867 -0.9749252632524076 1.875220685418097e-018 0.2225325393559867 0.9749252632524076 -1.875220685418097e-018 0 0 -1 -0 -0 1 -0.9009683321664772 0.4338848515829476 0 0.9009683321664772 -0.4338848515829476 -0 -0.2225325393559866 -0.9749252632524076 0 0.2225325393559866 0.9749252632524076 -0 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009683321664771 0.4338848515829476 0 -0.9009707834575071 -0.4338797614039701 0 0.9009707834575071 0.4338797614039701 -0 0.9009683321664771 -0.4338848515829476 -0 -0.9009707834575071 -0.4338797614039701 0 0.9009707834575071 0.4338797614039701 -0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"60\" source=\"#ID1765\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1763\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1761\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1762\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"56\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1763\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1766\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1767\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1770\">-0.1994215846061707 1.409376740455627 -0.3330435454845429 -0.193339616060257 1.374477028846741 -0.3185877501964569 0.6995053887367249 1.409376740455627 -0.3330435454845429 0.6995053887367249 1.409376740455627 -0.3330435454845429 -0.193339616060257 1.374477028846741 -0.3185877501964569 -0.1994215846061707 1.409376740455627 -0.3330435454845429 0.6995053887367249 1.444277167320252 -0.3185878992080689 0.6995053887367249 1.444277167320252 -0.3185878992080689 0.6995051503181458 1.374477028846741 -0.3185877501964569 0.6995051503181458 1.374477028846741 -0.3185877501964569 -0.193339616060257 1.444277167320252 -0.3185877501964569 -0.193339616060257 1.444277167320252 -0.3185877501964569 -0.1788957566022873 1.360021471977234 -0.2836892902851105 -0.1788957566022873 1.360021471977234 -0.2836892902851105 0.7010865807533264 1.458731651306152 -0.2836892902851105 0.7010865807533264 1.458731651306152 -0.2836892902851105 0.6995053887367249 1.360021471977234 -0.2836892902851105 0.6995053887367249 1.360021471977234 -0.2836892902851105 -0.1788957566022873 1.458731651306152 -0.2836892902851105 -0.1788957566022873 1.458731651306152 -0.2836892902851105 -0.1937200576066971 1.374477028846741 -0.2487903386354446 -0.1937200576066971 1.374477028846741 -0.2487903386354446 0.7010863423347473 1.444277167320252 -0.2487903386354446 0.7010863423347473 1.444277167320252 -0.2487903386354446 0.6995053887367249 1.374477028846741 -0.2487903386354446 0.6995053887367249 1.374477028846741 -0.2487903386354446 -0.193339616060257 1.444277167320252 -0.2487903386354446 -0.193339616060257 1.444277167320252 -0.2487903386354446 -0.1994215846061707 1.409376740455627 -0.234334796667099 -0.1994215846061707 1.409376740455627 -0.234334796667099 0.6995053887367249 1.409376740455627 -0.234334796667099 0.6995053887367249 1.409376740455627 -0.234334796667099</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1770\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1768\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1771\">-8.096430529381678e-008 -3.262168771017521e-006 -0.9999999999946758 -5.358906807957343e-019 -0.6529572867494989 -0.7573947330690468 -6.454358988662185e-019 -4.612929654933531e-006 -0.9999999999893605 6.454358988662185e-019 4.612929654933531e-006 0.9999999999893605 5.358906807957343e-019 0.6529572867494989 0.7573947330690468 8.096430529381678e-008 3.262168771017521e-006 0.9999999999946758 -3.721890660944332e-008 0.710949073141372 -0.7032434965212425 3.721890660944332e-008 -0.710949073141372 0.7032434965212425 -6.754312247816869e-019 -0.707104359561471 -0.7071092028033309 6.754312247816869e-019 0.707104359561471 0.7071092028033309 -9.908881861986481e-008 0.6529616761953019 -0.7573909488634067 9.908881861986481e-008 -0.6529616761953019 0.7573909488634067 -1.33086602427526e-018 -0.9999995659069757 0.0009317649168456204 1.33086602427526e-018 0.9999995659069757 -0.0009317649168456204 -3.315459573728493e-008 0.9999843910927442 0.005587268641536886 3.315459573728493e-008 -0.9999843910927442 -0.005587268641536886 -5.804664278375616e-020 -0.9999999999986244 -1.658672334207115e-006 5.804664278375616e-020 0.9999999999986244 1.658672334207115e-006 1.492557576426979e-020 0.999999999995737 -2.919923129949256e-006 -1.492557576426979e-020 -0.999999999995737 2.919923129949256e-006 2.542821332172197e-019 -0.6527159455234829 0.7576027286509636 -2.542821332172197e-019 0.6527159455234829 -0.7576027286509636 2.088161681493532e-020 0.7110525047396676 0.7031389162202907 -2.088161681493532e-020 -0.7110525047396676 -0.7031389162202907 6.71234797742628e-019 -0.7071039303900618 0.7071096319715401 -6.71234797742628e-019 0.7071039303900618 -0.7071096319715401 -7.589358461867882e-019 0.6529607501764125 0.7573917472015763 7.589358461867882e-019 -0.6529607501764125 -0.7573917472015763 -6.588288910052687e-021 -0.001441131677589446 0.9999989615692048 6.588288910052687e-021 0.001441131677589446 -0.9999989615692048 -6.60329578561079e-019 0.005438410613650082 0.9999852117356524 6.60329578561079e-019 -0.005438410613650082 -0.9999852117356524</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1771\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1769\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1767\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1768\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1769\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 0 6 7 5 11 8 1 12 13 4 9 10 6 14 15 7 11 16 8 12 13 9 17 18 10 14 15 11 19 16 12 20 21 13 17 18 14 22 23 15 19 24 16 20 21 17 25 26 18 22 23 19 27 20 28 24 25 29 21 30 26 22 23 27 31 24 28 30 31 29 25 28 26 30 31 27 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1772\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1773\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1776\">-0.6978123784065247 1.409376740455627 -0.3330435454845429 -0.1487381309270859 1.374477028846741 -0.3185877501964569 -0.1426564902067184 1.409376740455627 -0.3330435454845429 -0.1426564902067184 1.409376740455627 -0.3330435454845429 -0.1487381309270859 1.374477028846741 -0.3185877501964569 -0.6978123784065247 1.409376740455627 -0.3330435454845429 -0.6978123784065247 1.374477028846741 -0.3185877501964569 -0.6978123784065247 1.374477028846741 -0.3185877501964569 -0.6965032815933228 1.444277167320252 -0.3185878992080689 -0.6965032815933228 1.444277167320252 -0.3185878992080689 -0.1631820350885391 1.360021471977234 -0.2836892902851105 -0.1631820350885391 1.360021471977234 -0.2836892902851105 -0.1487381309270859 1.444277167320252 -0.3185877501964569 -0.1487381309270859 1.444277167320252 -0.3185877501964569 -0.6978123784065247 1.360021471977234 -0.2836892902851105 -0.6978123784065247 1.360021471977234 -0.2836892902851105 -0.6980850100517273 1.458731651306152 -0.2836892902851105 -0.6980850100517273 1.458731651306152 -0.2836892902851105 -0.148358017206192 1.374477028846741 -0.2487903386354446 -0.148358017206192 1.374477028846741 -0.2487903386354446 -0.1631820350885391 1.458731651306152 -0.2836892902851105 -0.1631820350885391 1.458731651306152 -0.2836892902851105 -0.6978126168251038 1.374477028846741 -0.2487903386354446 -0.6978126168251038 1.374477028846741 -0.2487903386354446 -0.6958645582199097 1.444277167320252 -0.2487903386354446 -0.6958645582199097 1.444277167320252 -0.2487903386354446 -0.1426564902067184 1.409376740455627 -0.234334796667099 -0.1426564902067184 1.409376740455627 -0.234334796667099 -0.1487381309270859 1.444277167320252 -0.2487903386354446 -0.1487381309270859 1.444277167320252 -0.2487903386354446 -0.6978123784065247 1.409376740455627 -0.234334796667099 -0.6978123784065247 1.409376740455627 -0.234334796667099</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1776\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1774\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1777\">0 -0.004623503802832999 -0.999989311549171 1.416990788477893e-018 -0.6529578956657299 -0.7573942081160786 1.294541359425236e-007 -3.2886846322709e-006 -0.9999999999945839 -1.294541359425236e-007 3.2886846322709e-006 0.9999999999945839 -1.416990788477893e-018 0.6529578956657299 0.7573942081160786 -0 0.004623503802832999 0.999989311549171 1.8206542497657e-018 -0.7071043595420349 -0.7071092028227668 -1.8206542497657e-018 0.7071043595420349 0.7071092028227668 6.222058690068734e-008 0.7077661876840558 -0.7064467591907929 -6.222058690068734e-008 -0.7077661876840558 0.7064467591907929 3.55867895444724e-018 -0.9999995666540326 0.0009309628065998062 -3.55867895444724e-018 0.9999995666540326 -0.0009309628065998062 1.625244536583127e-007 0.6529623179344262 -0.7573903956069651 -1.625244536583127e-007 -0.6529623179344262 0.7573903956069651 1.904648892250437e-018 -0.9999999999986244 -1.658685686398783e-006 -1.904648892250437e-018 0.9999999999986244 1.658685686398783e-006 5.410515884143392e-008 0.9999973576755113 -0.002298834920714152 -5.410515884143392e-008 -0.9999973576755113 0.002298834920714152 1.407486538539841e-018 -0.6527167650363455 0.7576020225952993 -1.407486538539841e-018 0.6527167650363455 -0.7576020225952993 0 0.999999999995737 -2.919923890702951e-006 -0 -0.999999999995737 2.919923890702951e-006 0 -0.7071039303792133 0.7071096319823883 -0 0.7071039303792133 -0.7071096319823883 0 0.7077587064059777 0.7064542543622602 -0 -0.7077587064059777 -0.7064542543622602 -1.686404762606598e-018 -0.001439890283937835 0.9999989633574479 1.686404762606598e-018 0.001439890283937835 -0.9999989633574479 -1.910403059081659e-018 0.6529613591191861 0.7573912222208713 1.910403059081659e-018 -0.6529613591191861 -0.7573912222208713 -7.52346634838247e-020 -0.006909725138064178 0.9999761275643115 7.52346634838247e-020 0.006909725138064178 -0.9999761275643115</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1777\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1775\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1773\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1774\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1775\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 1 6 10 11 7 4 12 8 2 3 9 13 10 6 14 15 7 11 8 12 16 17 13 9 10 14 18 19 15 11 16 12 20 21 13 17 18 14 22 23 15 19 16 20 24 25 21 17 18 22 26 27 23 19 24 20 28 29 21 25 22 30 26 27 31 23 30 24 28 29 25 31 30 28 26 27 29 31</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1778\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1779\">\r\n\t\t\t\t\t<float_array count=\"312\" id=\"ID1782\">0.0416390672326088 -0.9620028138160706 -0.3203812837600708 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 -0.001550662331283093 -0.9620028138160706 -0.3203812837600708 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 -0.001550662331283093 -0.9620028138160706 -0.3203812837600708 0.05974317342042923 -1.127685785293579 -0.254153698682785 0.05974317342042923 -1.127685785293579 -0.254153698682785 0.05999584496021271 -1.127685785293579 -0.3760610222816467 0.05999584496021271 -1.127685785293579 -0.3760610222816467 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.08528012782335281 -1.201554536819458 -0.3151014745235443 0.08528012782335281 -1.201554536819458 -0.3151014745235443 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 0.0599658340215683 -1.201554536819458 -0.3762143552303314 0.0599658340215683 -1.201554536819458 -0.3762143552303314 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 0.05996581166982651 -1.201554536819458 -0.2539876401424408 0.05996581166982651 -1.201554536819458 -0.2539876401424408 -0.001166453585028648 -1.127685785293579 -0.2285331338644028 -0.001166453585028648 -1.127685785293579 -0.2285331338644028 -0.0011480413377285 -1.201554536819458 -0.4015282690525055 -0.0011480413377285 -1.201554536819458 -0.4015282690525055 -0.001084049232304096 -1.127685785293579 -0.4012084305286408 -0.001084049232304096 -1.127685785293579 -0.4012084305286408 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.0599658340215683 -1.260503172874451 -0.3762143552303314 0.0599658340215683 -1.260503172874451 -0.3762143552303314 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.06201579421758652 -1.127685785293579 -0.2540891170501709 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.06201579421758652 -1.127685785293579 -0.2540891170501709 -0.06228426843881607 -1.127685785293579 -0.3760357797145844 -0.06228426843881607 -1.127685785293579 -0.3760357797145844 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 0.05996581166982651 -1.255197525024414 -0.2539876401424408 0.05996581166982651 -1.255197525024414 -0.2539876401424408 -0.0011480413377285 -1.201554536819458 -0.2286733090877533 -0.0011480413377285 -1.201554536819458 -0.2286733090877533 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.3762143552303314 -0.08734796196222305 -1.127685785293579 -0.3150011897087097 -0.08734796196222305 -1.127685785293579 -0.3150011897087097 0.08528012782335281 -1.272850155830383 -0.3151014745235443 -0.0011480413377285 -1.272850155830383 -0.3151014745235443 0.05996581166982651 -1.255197525024414 -0.2539876401424408 0.05996581166982651 -1.255197525024414 -0.2539876401424408 -0.0011480413377285 -1.272850155830383 -0.3151014745235443 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.0599658340215683 -1.260503172874451 -0.3762143552303314 0.0599658340215683 -1.260503172874451 -0.3762143552303314 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.2539876401424408 -0.06226229667663574 -1.201554536819458 -0.2539876401424408 -0.08757650107145309 -1.201554536819458 -0.3151014745235443 -0.08757650107145309 -1.201554536819458 -0.3151014745235443 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"104\" source=\"#ID1782\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1780\">\r\n\t\t\t\t\t<float_array count=\"312\" id=\"ID1783\">0.9588055248038134 0.2673775352725806 -0.09592298596918099 0.9927188762608409 0.1204370590336892 0.002036547747779517 0.7267388695696598 0.2673148040119704 0.6327664743115384 -0.7267388695696598 -0.2673148040119704 -0.6327664743115384 -0.9927188762608409 -0.1204370590336892 -0.002036547747779517 -0.9588055248038134 -0.2673775352725806 0.09592298596918099 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0.7014198014966242 0.1227309440114259 0.7021021132645168 -0.7014198014966242 -0.1227309440114259 -0.7021021132645168 0.7021847014273169 0.1188769731776902 -0.7020006483825644 -0.7021847014273169 -0.1188769731776902 0.7020006483825644 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.9999979850203875 1.252127069247626e-005 0.002007435773011593 -0.9999979850203875 -1.252127069247626e-005 -0.002007435773011593 -0.02735841910897286 0.2599523734912984 0.965233795730391 0.02735841910897286 -0.2599523734912984 -0.965233795730391 0.7069516630176301 1.861547685198636e-017 -0.7072618653346207 -0.7069516630176301 -1.861547685198636e-017 0.7072618653346207 0.6128719715456383 0.2606762782951462 -0.7459462610858466 -0.6128719715456383 -0.2606762782951462 0.7459462610858466 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.7071967559861893 4.940692391890928e-005 0.7070167932104344 -0.7071967559861893 -4.940692391890928e-005 -0.7070167932104344 -0.002129131927144091 0.127389319086275 0.9918505069716767 0.002129131927144091 -0.127389319086275 -0.9918505069716767 -0.0001044805771491545 1.056216625318663e-017 -0.9999999945419046 0.0001044805771491545 -1.056216625318663e-017 0.9999999945419046 -0.0007385280053009249 0.1199347071867176 -0.9927815069734235 0.0007385280053009249 -0.1199347071867176 0.9927815069734235 0 1 0 -0 -1 -0 -0.7317481826565028 0.245393817043592 0.6358667090952959 0.7317481826565028 -0.245393817043592 -0.6358667090952959 -0.01585223753510582 0.24114725236149 -0.9703590620196394 0.01585223753510582 -0.24114725236149 0.9703590620196394 0 1 0 -0 -1 -0 0.9999950606089046 -0.0001299568922094801 -0.003140361284808484 0.9999403015474239 -0.0002181347411306611 -0.01092454843376879 -0.9999950606089046 0.0001299568922094801 0.003140361284808484 -0.9999403015474239 0.0002181347411306611 0.01092454843376879 0.7303355718171639 -0.0001769559157017471 -0.6830885163908848 -0.7303355718171639 0.0001769559157017471 0.6830885163908848 0.0001564439772790366 1.585409395917139e-017 -0.9999999877626409 -0.0001564439772790366 -1.585409395917139e-017 0.9999999877626409 -0.7007551070965294 0.1294143228606862 0.7015655442769705 -0.9685914825527583 0.2389457120624006 -0.06881487203535318 0.9685914825527583 -0.2389457120624006 0.06881487203535318 0.7007551070965294 -0.1294143228606862 -0.7015655442769705 -0.7025685150389799 0.1222251163648164 -0.7010410134974484 0.7025685150389799 -0.1222251163648164 0.7010410134974484 -0.6354681256002953 0.2306381677411489 -0.736876039050703 0.6354681256002953 -0.2306381677411489 0.736876039050703 0.7389951719709527 0 0.6737107211582891 -0.7389951719709527 -0 -0.6737107211582891 3.151945290005802e-005 0 0.9999999995032621 -3.151945290005802e-005 -0 -0.9999999995032621 -0.7297614892512843 0 -0.6837018127851847 0.7297614892512843 -0 0.6837018127851847 -0.7064864909428557 -0.0005189046843104191 -0.7077263375438129 0.7064864909428557 0.0005189046843104191 0.7077263375438129 -0.9921320911846666 0.1251728336561139 0.002382300577020578 0.9921320911846666 -0.1251728336561139 -0.002382300577020578 2.783101748555154e-018 -0.9991332874558135 0.04162539967061679 -0.001976815644048048 -0.999186020482851 0.04029129771493174 0.001227976782420993 -0.9610505558098917 0.276369899320675 -0.001227976782420993 0.9610505558098917 -0.276369899320675 0.001976815644048048 0.999186020482851 -0.04029129771493174 -2.783101748555154e-018 0.9991332874558135 -0.04162539967061679 -0.0003929350606584693 -0.9801186500829385 -0.1984118881560179 0.0003929350606584693 0.9801186500829385 0.1984118881560179 -0.0006595177768321808 -0.9800442170581398 -0.198778514048173 0.0006595177768321808 0.9800442170581398 0.198778514048173 -0.003153641731496768 -0.9805446087454121 -0.1962710493275461 0.003153641731496768 0.9805446087454121 0.1962710493275461 -0.7072261597750277 1.014303739521108e-017 0.7069873824403566 0.7072261597750277 -1.014303739521108e-017 -0.7069873824403566 -0.999998337373055 -0.001428955693152681 0.00113284454026866 0.999998337373055 0.001428955693152681 -0.00113284454026866 -0.001177557507855119 -0.9613578838764064 0.2752991690270668 0.001177557507855119 0.9613578838764064 -0.2752991690270668 0.0002775081825241019 0 0.9999999614946036 -0.0002775081825241019 -0 -0.9999999614946036 -0.005946185829815228 -0.9990893998823336 0.04224942504739838 0.005946185829815228 0.9990893998823336 -0.04224942504739838 -0.999931651654992 -0.002552479234430599 -0.01140950780173313 0.999931651654992 0.002552479234430599 0.01140950780173313 -0.9999837153562079 -0.003484709543799063 -0.004519493532456611 0.9999837153562079 0.003484709543799063 0.004519493532456611 -0.00521796392204423 -0.9614714839872087 0.2748551588235937 0.00521796392204423 0.9614714839872087 -0.2748551588235937 -0.7381117946964493 -0.0008439160915865995 0.6746778982118927 0.7381117946964493 0.0008439160915865995 -0.6746778982118927</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"104\" source=\"#ID1783\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1781\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1779\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1780\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"136\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1781\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 6 8 16 17 9 11 6 18 7 10 19 11 1 20 12 13 21 4 22 2 12 13 3 23 14 24 1 4 25 15 26 14 0 5 15 27 28 6 16 17 11 29 30 18 6 11 19 31 20 32 12 13 33 21 24 20 1 4 21 25 34 22 12 13 23 35 36 24 14 15 25 37 26 38 14 15 39 27 40 6 28 29 11 41 42 22 34 35 23 43 44 38 26 27 39 45 46 30 6 11 31 47 20 48 32 49 32 48 50 33 51 33 50 21 34 12 32 33 13 35 24 52 20 21 53 25 36 54 24 25 55 37 38 36 14 15 37 39 40 46 6 11 47 41 42 56 57 58 59 43 56 42 34 35 43 59 44 60 38 39 61 45 62 60 44 45 61 63 49 64 32 33 65 51 20 52 48 49 48 52 53 50 51 50 53 21 66 34 32 33 35 67 24 54 52 53 55 25 36 68 54 55 69 37 70 36 38 39 37 71 57 72 62 63 73 58 56 72 57 58 73 59 56 34 66 67 35 59 60 70 38 39 71 61 72 60 62 63 61 73 74 75 76 77 78 79 64 66 32 33 67 65 74 80 75 78 81 79 80 82 75 78 83 81 82 84 75 78 85 83 70 68 36 37 69 71 56 86 72 73 87 59 86 56 66 67 59 87 88 70 60 61 71 89 72 88 60 61 89 73 76 75 90 91 78 77 92 66 64 65 67 93 75 84 94 95 85 78 96 68 70 71 69 97 86 88 72 73 89 87 92 86 66 67 87 93 88 98 70 96 70 98 99 71 97 71 99 89 75 100 90 91 101 78 75 94 100 101 95 78 86 102 88 89 103 87 102 86 92 93 87 103 88 102 98 96 98 102 103 99 97 99 103 89</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1784\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1785\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1788\">0.07268758118152618 -1.139533400535584 -0.3458027541637421 0.06737570464611054 -1.170013546943665 -0.3584281504154205 0.5328076481819153 -1.170013546943665 -0.3584281504154205 0.5328076481819153 -1.170013546943665 -0.3584281504154205 0.06737570464611054 -1.170013546943665 -0.3584281504154205 0.07268758118152618 -1.139533400535584 -0.3458027541637421 0.5328074097633362 -1.139533400535584 -0.3458027541637421 0.5328074097633362 -1.139533400535584 -0.3458027541637421 0.5328076481819153 -1.200496077537537 -0.3458027541637421 0.5328076481819153 -1.200496077537537 -0.3458027541637421 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.07268758118152618 -1.200496077537537 -0.3458027541637421 0.07268758118152618 -1.200496077537537 -0.3458027541637421 0.5328076481819153 -1.126907825469971 -0.3153224587440491 0.5328076481819153 -1.126907825469971 -0.3153224587440491 0.534188449382782 -1.213120579719544 -0.3153224587440491 0.534188449382782 -1.213120579719544 -0.3153224587440491 0.07235550135374069 -1.139533400535584 -0.2848415970802307 0.07235550135374069 -1.139533400535584 -0.2848415970802307 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.5328076481819153 -1.139533400535584 -0.2848415970802307 0.5328076481819153 -1.139533400535584 -0.2848415970802307 0.5341882705688477 -1.200496077537537 -0.2848415970802307 0.5341882705688477 -1.200496077537537 -0.2848415970802307 0.06737570464611054 -1.170013546943665 -0.272216260433197 0.06737570464611054 -1.170013546943665 -0.272216260433197 0.07268758118152618 -1.200496077537537 -0.2848415970802307 0.07268758118152618 -1.200496077537537 -0.2848415970802307 0.5328076481819153 -1.170013546943665 -0.272216260433197 0.5328076481819153 -1.170013546943665 -0.272216260433197</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1788\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1786\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1789\">-4.800243990006268e-018 0.6532257470633736 -0.7571632078842036 -3.15653781780934e-018 1.228913601519482e-005 -0.9999999999244885 1.397492513338611e-018 1.287400279910259e-005 -0.99999999991713 -1.397492513338611e-018 -1.287400279910259e-005 0.99999999991713 3.15653781780934e-018 -1.228913601519482e-005 0.9999999999244885 4.800243990006268e-018 -0.6532257470633736 0.7571632078842036 3.166570582828221e-018 0.7071056219034221 -0.7071079404677721 -3.166570582828221e-018 -0.7071056219034221 0.7071079404677721 0 -0.7109447180994457 -0.7032478992549495 -0 0.7109447180994457 0.7032478992549495 1.946404600427405e-018 0.9999984994589262 0.001732362518675635 -1.946404600427405e-018 -0.9999984994589262 -0.001732362518675635 -2.614800096576075e-018 -0.6529553154274723 -0.7573964325602611 2.614800096576075e-018 0.6529553154274723 0.7573964325602611 1.860628050482077e-018 0.999999984286978 -0.0001772739229532261 -1.860628050482077e-018 -0.999999984286978 0.0001772739229532261 -1.875828047693226e-018 -0.9999844037696157 0.005584999330916269 1.875828047693226e-018 0.9999844037696157 -0.005584999330916269 2.620721983057941e-018 0.65220608506156 0.7580417024205681 -2.620721983057941e-018 -0.65220608506156 -0.7580417024205681 -5.00221309808669e-018 -0.9999999999925899 -3.849693032704404e-006 5.00221309808669e-018 0.9999999999925899 3.849693032704404e-006 1.507180131247409e-018 0.7071073539430651 0.7071062084295658 -1.507180131247409e-018 -0.7071073539430651 -0.7071062084295658 -1.715282097682279e-018 -0.7110494810907638 0.7031419738861814 1.715282097682279e-018 0.7110494810907638 -0.7031419738861814 7.88705997477675e-020 0.001449403516777924 0.999998949614171 -7.88705997477675e-020 -0.001449403516777924 -0.999998949614171 -1.314688606444315e-018 -0.6529571740461475 0.7573948302316759 1.314688606444315e-018 0.6529571740461475 -0.7573948302316759 1.557517845199634e-018 -0.005427442056589383 0.9999852713278943 -1.557517845199634e-018 0.005427442056589383 -0.9999852713278943</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1789\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1787\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1785\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1786\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1787\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 0 2 3 5 7 2 1 8 9 4 3 0 6 10 11 7 5 1 12 8 9 13 4 6 14 10 11 15 7 8 12 16 17 13 9 10 14 18 19 15 11 16 12 20 21 13 17 18 14 22 23 15 19 16 20 24 25 21 17 26 18 22 23 19 27 24 20 28 29 21 25 30 26 22 23 27 31 28 30 24 25 31 29 28 26 30 31 27 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1790\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1791\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1794\">-0.0755949392914772 -1.139533400535584 -0.3458027541637421 -0.556448757648468 -1.170013546943665 -0.3584281504154205 -0.07028322666883469 -1.170013546943665 -0.3584281504154205 -0.07028322666883469 -1.170013546943665 -0.3584281504154205 -0.556448757648468 -1.170013546943665 -0.3584281504154205 -0.0755949392914772 -1.139533400535584 -0.3458027541637421 -0.5553047060966492 -1.200496077537537 -0.3458027541637421 -0.5553047060966492 -1.200496077537537 -0.3458027541637421 -0.556448757648468 -1.139533400535584 -0.3458027541637421 -0.556448757648468 -1.139533400535584 -0.3458027541637421 -0.0755949392914772 -1.200496077537537 -0.3458027541637421 -0.0755949392914772 -1.200496077537537 -0.3458027541637421 -0.08821037411689758 -1.126907825469971 -0.3153224587440491 -0.08821037411689758 -1.126907825469971 -0.3153224587440491 -0.5566866397857666 -1.213120579719544 -0.3153224587440491 -0.5566866397857666 -1.213120579719544 -0.3153224587440491 -0.556448757648468 -1.126907825469971 -0.3153224587440491 -0.556448757648468 -1.126907825469971 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.07526279240846634 -1.139533400535584 -0.2848415970802307 -0.07526279240846634 -1.139533400535584 -0.2848415970802307 -0.5547472238540649 -1.200496077537537 -0.2848415970802307 -0.5547472238540649 -1.200496077537537 -0.2848415970802307 -0.5564488768577576 -1.139533400535584 -0.2848415970802307 -0.5564488768577576 -1.139533400535584 -0.2848415970802307 -0.0755949392914772 -1.200496077537537 -0.2848415970802307 -0.0755949392914772 -1.200496077537537 -0.2848415970802307 -0.07028322666883469 -1.170013546943665 -0.272216260433197 -0.07028322666883469 -1.170013546943665 -0.272216260433197 -0.556448757648468 -1.170013546943665 -0.272216260433197 -0.556448757648468 -1.170013546943665 -0.272216260433197</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1794\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1792\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1795\">3.128676832243398e-018 0.6529590142748708 -0.7573932437493676 -2.732303166435686e-018 0.00463460391985898 -0.999989260165581 2.893044017440788e-018 1.228918634285302e-005 -0.9999999999244879 -2.893044017440788e-018 -1.228918634285302e-005 0.9999999999244879 2.732303166435686e-018 -0.00463460391985898 0.999989260165581 -3.128676832243398e-018 -0.6529590142748708 0.7573932437493676 0 -0.7077617258416615 -0.7064512293383264 -0 0.7077617258416615 0.7064512293383264 -4.446897604623978e-018 0.7071056219076308 -0.7071079404635636 4.446897604623978e-018 -0.7071056219076308 0.7071079404635636 0 -0.6529557627629424 -0.7573960469098476 -0 0.6529557627629424 0.7573960469098476 -3.182260625065258e-018 0.9999995671155167 0.0009304669684801947 3.182260625065258e-018 -0.9999995671155167 -0.0009304669684801947 1.549129489225603e-018 -0.9999973578805378 -0.002298745732710514 -1.549129489225603e-018 0.9999973578805378 0.002298745732710514 -1.695318849550394e-018 0.9999999999960586 -2.807632896495617e-006 1.695318849550394e-018 -0.9999999999960586 2.807632896495617e-006 5.680541635093363e-020 -0.9999999999925899 -3.849692841830614e-006 -5.680541635093363e-020 0.9999999999925899 3.849692841830614e-006 -2.405777604426924e-018 0.6527205424928446 0.7575987680875982 2.405777604426924e-018 -0.6527205424928446 -0.7575987680875982 7.907717898537523e-021 -0.7077556757223815 0.7064572906289207 -7.907717898537523e-021 0.7077556757223815 -0.7064572906289207 0 0.7071073539507441 0.7071062084218869 -0 -0.7071073539507441 -0.7071062084218869 3.196556846155714e-018 -0.6529576213860789 0.7573944445755024 -3.196556846155714e-018 0.6529576213860789 -0.7573944445755024 2.882604743371304e-018 0.001449690439264127 0.9999989491982629 -2.882604743371304e-018 -0.001449690439264127 -0.9999989491982629 -1.269824525755839e-018 0.006920767023478588 0.999976051205131 1.269824525755839e-018 -0.006920767023478588 -0.999976051205131</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1795\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1793\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1791\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1792\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"32\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1793\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 1 6 2 3 7 4 8 1 0 5 4 9 6 10 2 3 11 7 8 0 12 13 5 9 10 6 14 15 7 11 16 8 12 13 9 17 18 10 14 15 11 19 16 12 20 21 13 17 18 14 22 23 15 19 24 16 20 21 17 25 26 18 22 23 19 27 24 20 28 29 21 25 22 30 26 27 31 23 30 24 28 29 25 31 26 30 28 29 31 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1796\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1797\">\r\n\t\t\t\t\t<float_array count=\"420\" id=\"ID1800\">0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"140\" source=\"#ID1800\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1798\">\r\n\t\t\t\t\t<float_array count=\"420\" id=\"ID1801\">-0.9999999710445691 -0.0001104833632839914 0.0002137856110456591 -0.9999999700643614 -7.663589426042924e-005 0.0002323751623919958 -0.9999999802680193 -8.573050672086329e-005 0.0001792044679426364 0.9999999802680193 8.573050672086329e-005 -0.0001792044679426364 0.9999999700643614 7.663589426042924e-005 -0.0002323751623919958 0.9999999710445691 0.0001104833632839914 -0.0002137856110456591 0.004961922813059091 -0.7979285849641429 -0.6027315759267288 -0.0001763919522577015 -0.7969131936155863 -0.6040938095422647 0.03049636748995247 -0.9865933133747843 -0.160323440501015 -0.03049636748995247 0.9865933133747843 0.160323440501015 0.0001763919522577015 0.7969131936155863 0.6040938095422647 -0.004961922813059091 0.7979285849641429 0.6027315759267288 -0.9999999695818748 -0.0001704942869253314 0.0001782356517235991 0.9999999695818748 0.0001704942869253314 -0.0001782356517235991 -0.0003464089528092289 -0.1304839459037725 -0.9914503617742135 -0.0003356659977346473 -0.1305078226455562 -0.991447222779233 0.0003356659977346473 0.1305078226455562 0.991447222779233 0.0003464089528092289 0.1304839459037725 0.9914503617742135 0.03947983509217013 -0.9868227730252783 -0.1569144902798821 -0.03947983509217013 0.9868227730252783 0.1569144902798821 -0.04410908481141456 0.8317655093958543 0.5533719599117346 0.00972661921211627 0.8422186636899086 0.5390483423692974 -0.03041555429328463 0.8346805984310199 0.5498938012560851 0.03041555429328463 -0.8346805984310199 -0.5498938012560851 -0.00972661921211627 -0.8422186636899086 -0.5390483423692974 0.04410908481141456 -0.8317655093958543 -0.5533719599117346 -0.9999998385693959 -0.0001250412032718077 0.0005542796040042547 0.9999998385693959 0.0001250412032718077 -0.0005542796040042547 -0.0003673869990641776 0.3426475969726668 -0.939463937208688 0.0003673869990641776 -0.3426475969726668 0.939463937208688 0.9999999781995033 4.699620345741876e-005 -0.0002034511002851032 0.9999999794693828 7.698928926646006e-005 -0.0001874403455906109 0.9999999855371815 6.872156045996573e-005 -0.0001555730832890062 -0.9999999855371815 -6.872156045996573e-005 0.0001555730832890062 -0.9999999794693828 -7.698928926646006e-005 0.0001874403455906109 -0.9999999781995033 -4.699620345741876e-005 0.0002034511002851032 0.02360047584532965 0.8444748722209845 0.5350749552419978 -0.02360047584532965 -0.8444748722209845 -0.5350749552419978 -0.9999997268103815 -4.676815955930713e-005 0.0007376936366238248 0.9999997268103815 4.676815955930713e-005 -0.0007376936366238248 0.001908403844572751 0.3420016409162702 -0.939697417047288 -0.001908403844572751 -0.3420016409162702 0.939697417047288 0.9999999777905969 0.0001522573889000832 -0.0001457274619571062 0.9999998982721315 9.728089302000219e-005 -0.0004404454047939104 -0.9999998982721315 -9.728089302000219e-005 0.0004404454047939104 -0.9999999777905969 -0.0001522573889000832 0.0001457274619571062 -0.008392300707209957 -0.1223304537586148 0.9924539431994067 -0.0009271782674676281 -0.3551960317513965 0.9347913774573027 -0.005955223996627054 -0.1212198217342457 0.9926078229219573 0.005955223996627054 0.1212198217342457 -0.9926078229219573 0.0009271782674676281 0.3551960317513965 -0.9347913774573027 0.008392300707209957 0.1223304537586148 -0.9924539431994067 -0.9999999647802734 -5.986156320317399e-005 0.0002585653599272689 0.9999999647802734 5.986156320317399e-005 -0.0002585653599272689 0.02138638165005725 0.5168164865779673 -0.855829037764625 -0.02138638165005725 -0.5168164865779673 0.855829037764625 0.9999998319739059 4.59237093275836e-005 -0.0005778781644368841 -0.9999998319739059 -4.59237093275836e-005 0.0005778781644368841 0.0003049958327635592 -0.3546827300580774 0.9349866672718339 -0.0003049958327635592 0.3546827300580774 -0.9349866672718339 -0.9999999738512297 -2.953591568042569e-005 0.0002267711839617163 0.9999999738512297 2.953591568042569e-005 -0.0002267711839617163 0.02250528561464173 0.5156341578366951 -0.8565132383048412 -0.02250528561464173 -0.5156341578366951 0.8565132383048412 0.9999999405841482 9.905564214886539e-005 -0.0003301812833618662 -0.9999999405841482 -9.905564214886539e-005 0.0003301812833618662 0.0002835536457019438 -0.534567467405807 0.845125755369384 -0.0002835536457019438 0.534567467405807 -0.845125755369384 -0.9999999421572299 -0.0001359886900621858 0.0003117572988199132 0.9999999421572299 0.0001359886900621858 -0.0003117572988199132 0.00088649570702846 0.2602505468779262 -0.9655407122307697 -0.00088649570702846 -0.2602505468779262 0.9655407122307697 0.9999999476742829 8.742145870394942e-005 -0.0003114625499332963 -0.9999999476742829 -8.742145870394942e-005 0.0003114625499332963 0.0002751967351688296 -0.5345688612684229 0.8451248764702993 -0.0002751967351688296 0.5345688612684229 -0.8451248764702993 0.0002284427270975212 -0.337955662273133 0.9411620042008967 -0.0002284427270975212 0.337955662273133 -0.9411620042008967 -0.9999999344292633 -0.000156901232732886 0.0003263793381189007 0.9999999344292633 0.000156901232732886 -0.0003263793381189007 -0.0003169333868864173 0.2604400519765147 -0.9654899682957348 0.0003169333868864173 -0.2604400519765147 0.9654899682957348 0.9999999114917834 0.0001894836831243463 -0.0003756492506452966 0.9999999038277406 0.0002058925015349785 -0.0003872373785017013 -0.9999999038277406 -0.0002058925015349785 0.0003872373785017013 -0.9999999114917834 -0.0001894836831243463 0.0003756492506452966 0.000222128065331292 -0.3379435563570671 0.9411663526581582 -0.000222128065331292 0.3379435563570671 -0.9411663526581582 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.000297981301382343 0.2505951925739997 -0.9680919174675223 0.000297981301382343 -0.2505951925739997 0.9680919174675223 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.0002747071523925597 -0.2217236845486482 0.9751094975674023 -0.0002747071523925597 0.2217236845486482 -0.9751094975674023 -0.9999996997481733 4.424631410726776e-005 0.0007736574350763412 -0.9999996243670856 6.513592050351822e-005 0.0008643049230435587 -0.9999999477055301 -8.378372903372794e-005 0.0003123607271175583 0.9999999477055301 8.378372903372794e-005 -0.0003123607271175583 0.9999996243670856 -6.513592050351822e-005 -0.0008643049230435587 0.9999996997481733 -4.424631410726776e-005 -0.0007736574350763412 -0.0003063365191113349 0.2505969935595491 -0.9680914486642531 0.0003063365191113349 -0.2505969935595491 0.9680914486642531 0.9999995691084593 -7.809505908810414e-005 -0.0009250319224987596 0.9999996638854315 -5.346291194945224e-005 -0.0008181508057818759 0.9999999657621683 6.410373996497947e-005 -0.0002537052871345287 -0.9999999657621683 -6.410373996497947e-005 0.0002537052871345287 -0.9999996638854315 5.346291194945224e-005 0.0008181508057818759 -0.9999995691084593 7.809505908810414e-005 0.0009250319224987596 0.0002833451553801525 -0.2217220549394402 0.9751098656402543 -0.0002833451553801525 0.2217220549394402 -0.9751098656402543 -0.9999999418829865 -0.0001503792467214633 0.000305974028555818 0.9999999418829865 0.0001503792467214633 -0.000305974028555818 -0.0003202536291034038 0.5310569474512576 -0.8473360702822497 0.0003202536291034038 -0.5310569474512576 0.8473360702822497 0.9999999820584712 4.249982566400346e-005 -0.000184599085539308 -0.9999999820584712 -4.249982566400346e-005 0.000184599085539308 0.0003009137736632499 -0.06276316217133647 0.9980284038669217 -0.0003009137736632499 0.06276316217133647 -0.9980284038669217 -0.999999931634918 -0.0001789863694918537 0.0003235645826783615 0.999999931634918 0.0001789863694918537 -0.0003235645826783615 -0.0003366867603659674 0.5310630500708145 -0.8473322391432472 0.0003366867603659674 -0.5310630500708145 0.8473322391432472 0.9999999844430778 2.601700140070584e-005 -0.000174461915128319 -0.9999999844430778 -2.601700140070584e-005 0.000174461915128319 0.0003135305943188504 -0.06272726288933955 0.9980306569384418 -0.0003135305943188504 0.06272726288933955 -0.9980306569384418 0.0002752074406906135 0.1530052876970384 0.988225331691923 -0.0002752074406906135 -0.1530052876970384 -0.988225331691923 0.0002878377690457768 0.1530166634393099 0.9882235667394902 -0.0002878377690457768 -0.1530166634393099 -0.9882235667394902</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"140\" source=\"#ID1801\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1799\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1797\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1798\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"104\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1799\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 14 7 15 16 10 17 6 8 18 19 9 11 15 7 6 11 10 16 20 21 22 23 24 25 12 2 26 27 3 13 28 14 15 16 17 29 30 31 32 33 34 35 21 36 22 23 37 24 38 12 26 27 13 39 40 14 28 29 17 41 32 42 43 44 45 33 31 42 32 33 45 34 46 47 48 49 50 51 38 26 52 53 27 39 40 28 54 55 29 41 42 56 43 44 57 45 48 47 58 59 50 49 60 38 52 53 39 61 62 40 54 55 41 63 43 56 64 65 57 44 47 66 58 59 67 50 60 52 68 69 53 61 62 54 70 71 55 63 56 72 64 65 73 57 58 66 74 75 67 59 66 76 74 75 77 67 68 52 78 79 53 69 80 62 70 71 63 81 64 82 83 84 85 65 64 72 82 85 73 65 74 76 86 87 77 75 88 89 90 91 92 93 80 70 94 95 71 81 96 97 98 99 100 101 76 102 86 87 103 77 104 105 106 107 108 109 110 80 94 95 81 111 112 113 114 115 116 117 86 102 118 119 103 87 104 106 120 121 107 109 110 94 122 123 95 111 114 113 124 125 116 115 102 126 118 119 127 103 120 106 128 129 107 121 130 110 122 123 111 131 114 124 132 133 125 115 126 134 118 119 135 127 126 136 134 135 137 127 136 138 134 135 139 137</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1802\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1803\">\r\n\t\t\t\t\t<float_array count=\"420\" id=\"ID1806\">-0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"140\" source=\"#ID1806\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1804\">\r\n\t\t\t\t\t<float_array count=\"420\" id=\"ID1807\">-0.9999999796474213 -7.372837380031436e-005 0.0001878011821307511 -0.9999999794114374 -6.685496042745983e-005 0.0001915921166301781 -0.9999999814053816 -6.625935140178148e-005 0.0001811047625334675 0.9999999814053816 6.625935140178148e-005 -0.0001811047625334675 0.9999999794114374 6.685496042745983e-005 -0.0001915921166301781 0.9999999796474213 7.372837380031436e-005 -0.0001878011821307511 0.004952013066311905 -0.796870136383622 -0.6041303363567656 -0.0001945461549902302 -0.7958507196312642 -0.6054928523229591 0.03051534998570993 -0.9863101208755875 -0.162052950832849 -0.03051534998570993 0.9863101208755875 0.162052950832849 0.0001945461549902302 0.7958507196312642 0.6054928523229591 -0.004952013066311905 0.796870136383622 0.6041303363567656 -0.9999999775545849 -8.380028082577559e-005 0.0001945978994759896 0.9999999775545849 8.380028082577559e-005 -0.0001945978994759896 -0.0003263719987045853 -0.1287268519209083 -0.9916800346260133 -0.0003127148091308122 -0.1287912989425779 -0.9916716712330405 0.0003127148091308122 0.1287912989425779 0.9916716712330405 0.0003263719987045853 0.1287268519209083 0.9916800346260133 0.03951270650674746 -0.9865457996395824 -0.158638366223334 -0.03951270650674746 0.9865457996395824 0.158638366223334 -0.04412298859978101 0.8307933462406718 0.5548293230528203 0.009702529785641144 0.8412708268827518 0.5405268325918423 -0.03043120518351949 0.8337144134479427 0.5513567071871268 0.03043120518351949 -0.8337144134479427 -0.5513567071871268 -0.009702529785641144 -0.8412708268827518 -0.5405268325918423 0.04412298859978101 -0.8307933462406718 -0.5548293230528203 -0.9999998879205081 -0.0001067768407130082 0.0004612566285053172 0.9999998879205081 0.0001067768407130082 -0.0004612566285053172 -0.0003259821602667881 0.3442855023723608 -0.9388649458744545 0.0003259821602667881 -0.3442855023723608 0.9388649458744545 0.9999999796040053 8.467560949920889e-005 -0.0001833631096726923 0.9999999796560025 8.967387180890078e-005 -0.0001806836774636798 0.9999999816423528 6.897477977519543e-005 -0.0001787673738543972 -0.9999999816423528 -6.897477977519543e-005 0.0001787673738543972 -0.9999999796560025 -8.967387180890078e-005 0.0001806836774636798 -0.9999999796040053 -8.467560949920889e-005 0.0001833631096726923 0.023576545125666 0.8435343970522004 0.5365574223787406 -0.023576545125666 -0.8435343970522004 -0.5365574223787406 -0.9999998253700634 -5.479900386395953e-005 0.0005884359877822771 0.9999998253700634 5.479900386395953e-005 -0.0005884359877822771 0.001943192923113494 0.3436563931974262 -0.9390934497779226 -0.001943192923113494 -0.3436563931974262 0.9390934497779226 0.9999999774256322 9.036082572671157e-005 -0.0001923113531821971 0.9999998844095683 0.0001075835678604766 -0.000468622050062329 -0.9999998844095683 -0.0001075835678604766 0.000468622050062329 -0.9999999774256322 -9.036082572671157e-005 0.0001923113531821971 -0.008396031932909377 -0.1240281200667111 0.9922431819269403 -0.001015849563375322 -0.3568515298151736 0.9341605609948617 -0.005979590096272994 -0.1229270838485122 0.9923976907262438 0.005979590096272994 0.1229270838485122 -0.9923976907262438 0.001015849563375322 0.3568515298151736 -0.9341605609948617 0.008396031932909377 0.1240281200667111 -0.9922431819269403 -0.9999999543077748 -7.676893325396516e-005 0.0002923884051408668 0.9999999543077748 7.676893325396516e-005 -0.0002923884051408668 0.02139729440545909 0.5182176088367644 -0.8549810908339625 -0.02139729440545909 -0.5182176088367644 0.8549810908339625 0.9999998149178142 5.103504527862209e-005 -0.0006062670709983245 -0.9999998149178142 -5.103504527862209e-005 0.0006062670709983245 0.0002154623307682091 -0.3563155275693334 0.9343656663153733 -0.0002154623307682091 0.3563155275693334 -0.9343656663153733 -0.9999999638778768 -4.413850467589816e-005 0.0002651339993739532 0.9999999638778768 4.413850467589816e-005 -0.0002651339993739532 0.02251288538210824 0.5170403867847911 -0.8556648925982681 -0.02251288538210824 -0.5170403867847911 0.8556648925982681 0.9999999568998583 7.114767680534288e-005 -0.000284847836186255 -0.9999999568998583 -7.114767680534288e-005 0.000284847836186255 0.0002932292485633025 -0.536041123254263 0.8441918195510521 -0.0002932292485633025 0.536041123254263 -0.8441918195510521 -0.9999999118959498 -0.0001881429300790426 0.0003752470261725238 0.9999999118959498 0.0001881429300790426 -0.0003752470261725238 0.0009032151263764276 0.2618195655509092 -0.9651164174840093 -0.0009032151263764276 -0.2618195655509092 0.9651164174840093 0.9999999668096723 3.431042508831439e-005 -0.0002553496607921055 -0.9999999668096723 -3.431042508831439e-005 0.0002553496607921055 0.0002960012507453714 -0.5360422065958079 0.8441911306873324 -0.0002960012507453714 0.5360422065958079 -0.8441911306873324 0.0002720308578548875 -0.3395970168755311 0.9405709926042013 -0.0002720308578548875 0.3395970168755311 -0.9405709926042013 -0.9999998990046093 -0.0002155761766725763 0.0003943573040884083 0.9999998990046093 0.0002155761766725763 -0.0003943573040884083 -0.0002998260502447587 0.2620009282912986 -0.9650675746696897 0.0002998260502447587 -0.2620009282912986 0.9650675746696897 0.9999999102642094 0.0001904143557393747 -0.0003784361855243776 0.9999998959825797 0.0002202313195086972 -0.0003994158180963879 -0.9999998959825797 -0.0002202313195086972 0.0003994158180963879 -0.9999999102642094 -0.0001904143557393747 0.0003784361855243776 0.0002659471541952785 -0.3395951480894923 0.9405716690748168 -0.0002659471541952785 0.3395951480894923 -0.9405716690748168 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.0002934433779523444 0.2522218127606528 -0.9676694017373464 0.0002934433779523444 -0.2522218127606528 0.9676694017373464 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.0002920699888821517 -0.2234143247973296 0.9747235270426559 -0.0002920699888821517 0.2234143247973296 -0.9747235270426559 -0.9999997276497483 4.385392790234016e-005 0.0007367341868116179 -0.9999996583977281 6.382463746765831e-005 0.0008240939525973544 -0.9999999589200279 -5.960901760188783e-005 0.0002803688776326599 0.9999999589200279 5.960901760188783e-005 -0.0002803688776326599 0.9999996583977281 -6.382463746765831e-005 -0.0008240939525973544 0.9999997276497483 -4.385392790234016e-005 -0.0007367341868116179 -0.0003043815696399995 0.2522203005924734 -0.9676697925020199 0.0003043815696399995 -0.2522203005924734 0.9676697925020199 0.9999995691343151 -6.720279912305352e-005 -0.0009258590432243916 0.999999655350043 -4.506394947157887e-005 -0.0008290169092028616 0.9999999456349861 6.865112386163782e-005 -0.000322516740449088 -0.9999999456349861 -6.865112386163782e-005 0.000322516740449088 -0.999999655350043 4.506394947157887e-005 0.0008290169092028616 -0.9999995691343151 6.720279912305352e-005 0.0009258590432243916 0.0002943637441851266 -0.223413529751691 0.9747237085830406 -0.0002943637441851266 0.223413529751691 -0.9747237085830406 -0.9999999692246961 -6.646992415419717e-005 0.0002390237561556552 0.9999999692246961 6.646992415419717e-005 -0.0002390237561556552 -0.0003262085661851687 0.5324510706906751 -0.8464607202394717 0.0003262085661851687 -0.5324510706906751 0.8464607202394717 0.9999999595324278 7.331680825462007e-005 -0.0002748814082542198 -0.9999999595324278 -7.331680825462007e-005 0.0002748814082542198 0.0002994691661593511 -0.06449091226997794 0.997918249433692 -0.0002994691661593511 0.06449091226997794 -0.997918249433692 -0.9999999694663382 -6.533110756353835e-005 0.0002383257626904562 0.9999999694663382 6.533110756353835e-005 -0.0002383257626904562 -0.0003465867334712809 0.5324586302942831 -0.8464559568594058 0.0003465867334712809 -0.5324586302942831 0.8464559568594058 0.9999999601888447 7.058082113336549e-005 -0.0002732044230723244 -0.9999999601888447 -7.058082113336549e-005 0.0002732044230723244 0.0003177401799641748 -0.06447600574064884 0.997919207012727 -0.0003177401799641748 0.06447600574064884 -0.997919207012727 0.000319944634965314 0.1512712693546003 0.9884922360359129 -0.000319944634965314 -0.1512712693546003 -0.9884922360359129 0.0003531671350192214 0.1513012009785921 0.9884876437545442 -0.0003531671350192214 -0.1513012009785921 -0.9884876437545442</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"140\" source=\"#ID1807\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1805\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1803\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1804\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"104\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1805\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 14 7 15 16 10 17 6 8 18 19 9 11 15 7 6 11 10 16 20 21 22 23 24 25 12 2 26 27 3 13 28 14 15 16 17 29 30 31 32 33 34 35 21 36 22 23 37 24 38 12 26 27 13 39 40 14 28 29 17 41 32 42 43 44 45 33 31 42 32 33 45 34 46 47 48 49 50 51 38 26 52 53 27 39 40 28 54 55 29 41 42 56 43 44 57 45 48 47 58 59 50 49 60 38 52 53 39 61 62 40 54 55 41 63 43 56 64 65 57 44 47 66 58 59 67 50 60 52 68 69 53 61 62 54 70 71 55 63 56 72 64 65 73 57 58 66 74 75 67 59 66 76 74 75 77 67 68 52 78 79 53 69 80 62 70 71 63 81 64 82 83 84 85 65 64 72 82 85 73 65 74 76 86 87 77 75 88 89 90 91 92 93 80 70 94 95 71 81 96 97 98 99 100 101 76 102 86 87 103 77 104 105 106 107 108 109 110 80 94 95 81 111 112 113 114 115 116 117 86 102 118 119 103 87 104 106 120 121 107 109 110 94 122 123 95 111 114 113 124 125 116 115 102 126 118 119 127 103 120 106 128 129 107 121 130 110 122 123 111 131 114 124 132 133 125 115 118 126 134 135 127 119 126 136 134 135 137 127 136 138 134 135 139 137</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1808\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1809\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1812\">-0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1812\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1810\">\r\n\t\t\t\t\t<float_array count=\"300\" id=\"ID1813\">-0.999999984411443 3.080246314798667e-005 0.0001738629406479815 -0.9999999823747726 3.054551147014028e-005 0.0001852496326182806 -0.9999999829039918 3.417859454922746e-005 0.0001817246268044369 0.9999999829039918 -3.417859454922746e-005 -0.0001817246268044369 0.9999999823747726 -3.054551147014028e-005 -0.0001852496326182806 0.999999984411443 -3.080246314798667e-005 -0.0001738629406479815 -1.769463302100483e-005 0.68708007618282 -0.7265817012556195 0.007141960610142448 0.6885656521728911 -0.7251388384622385 0.04815605561094433 0.9347644673763428 -0.3519891828431915 -0.04815605561094433 -0.9347644673763428 0.3519891828431915 -0.007141960610142448 -0.6885656521728911 0.7251388384622385 1.769463302100483e-005 -0.68708007618282 0.7265817012556195 -0.0002616104941960659 0.1282516270709203 -0.9917416254819653 -0.0002578241739765837 0.1282135302883974 -0.9917465523901162 0.0002578241739765837 -0.1282135302883974 0.9917465523901162 0.0002616104941960659 -0.1282516270709203 0.9917416254819653 -0.9999999828490539 4.21748978558922e-005 0.0001803418140285232 0.9999999828490539 -4.21748978558922e-005 -0.0001803418140285232 0.06106622712373427 0.9356753701782472 -0.347537792976063 -0.06106622712373427 -0.9356753701782472 0.347537792976063 -0.0003717950278579427 -0.1797419237099666 -0.9837137300198152 0.0003717950278579427 0.1797419237099666 0.9837137300198152 -0.9999998988493954 4.503593342057304e-005 0.0004475186744983042 0.9999998988493954 -4.503593342057304e-005 -0.0004475186744983042 0.003688797389667888 -0.3374031293935553 0.9413530267913594 -0.05461194083058513 -0.658038213705086 0.7510014948204405 -0.04202449406539048 -0.6607579488210175 0.7494216936867983 0.04202449406539048 0.6607579488210175 -0.7494216936867983 0.05461194083058513 0.658038213705086 -0.7510014948204405 -0.003688797389667888 0.3374031293935553 -0.9413530267913594 0.999999983663352 -4.17648800326373e-005 -0.0001758664004577456 0.9999999846999328 -3.155013974575054e-005 -0.0001720602310259234 0.999999983985305 -4.439629059590873e-005 -0.0001733734677599167 -0.999999983985305 4.439629059590873e-005 0.0001733734677599167 -0.9999999846999328 3.155013974575054e-005 0.0001720602310259234 -0.999999983663352 4.17648800326373e-005 0.0001758664004577456 0.9999998958878661 -4.558295482759263e-005 -0.0004540335354482252 0.9999999832112049 -4.683516868800383e-005 -0.0001771554595090167 -0.9999999832112049 4.683516868800383e-005 0.0001771554595090167 -0.9999998958878661 4.558295482759263e-005 0.0004540335354482252 0.00144405316009299 -0.1793549727249666 -0.9837833646028464 -0.00144405316009299 0.1793549727249666 0.9837833646028464 -0.9999998195145633 -2.455150091527985e-006 0.0006008034730474542 0.9999998195145633 2.455150091527985e-006 -0.0006008034730474542 0.01266054751111889 -0.3617188438700049 0.9322012596677101 -0.01266054751111889 0.3617188438700049 -0.9322012596677101 0.9999998074597568 6.109781507060899e-006 -0.000620518428385647 -0.9999998074597568 -6.109781507060899e-006 0.000620518428385647 0.0269870394274772 -0.2306017678121405 -0.9726739044432391 -0.0269870394274772 0.2306017678121405 0.9726739044432391 -0.999999963093016 1.797775736911185e-005 0.0002710918056143681 0.999999963093016 -1.797775736911185e-005 -0.0002710918056143681 0.9999999649068889 -1.437273717084181e-005 -0.0002645366617785483 -0.9999999649068889 1.437273717084181e-005 0.0002645366617785483 0.02771718101855024 -0.2312164877542377 -0.9725074260215083 -0.02771718101855024 0.2312164877542377 0.9725074260215083 -0.9999999664707235 1.5466008783727e-005 0.0002584943998064539 0.9999999664707235 -1.5466008783727e-005 -0.0002584943998064539 0.9999999689300021 -1.08382129044566e-005 -0.0002490432252599668 -0.9999999689300021 1.08382129044566e-005 0.0002490432252599668 0.0007309652795617584 -0.1440840201039932 -0.9895651877670476 -0.0007309652795617584 0.1440840201039932 0.9895651877670476 -0.9999999607022785 2.060547431277325e-005 0.0002795905151389421 0.9999999607022785 -2.060547431277325e-005 -0.0002795905151389421 0.9999999601351655 -2.072338356797332e-005 -0.0002816029281138686 -0.9999999601351655 2.072338356797332e-005 0.0002816029281138686 0.9999999506935324 -2.16022513446366e-005 -0.0003132830601111448 -0.9999999506935324 2.16022513446366e-005 0.0003132830601111448 -0.000339041137228352 -0.1442078179617186 -0.9895473663700121 0.000339041137228352 0.1442078179617186 0.9895473663700121 -0.9999999558190014 2.135714131397518e-005 0.0002964892372467364 0.9999999558190014 -2.135714131397518e-005 -0.0002964892372467364 0.9999999449633971 -2.495140936292704e-005 -0.0003308332364104989 -0.9999999449633971 2.495140936292704e-005 0.0003308332364104989 -0.0001499912736990772 0.3702509537358272 -0.9289317567832032 0.0001499912736990772 -0.3702509537358272 0.9289317567832032 -0.9999999562731093 2.02279099250094e-005 0.0002950332374563406 0.9999999562731093 -2.02279099250094e-005 -0.0002950332374563406 0.9999999675719412 5.01596575947656e-005 -0.0002496800460373278 0.9999999449833134 -2.541309867504692e-005 -0.0003307378790345847 -0.9999999449833134 2.541309867504692e-005 0.0003307378790345847 -0.9999999675719412 -5.01596575947656e-005 0.0002496800460373278 -0.0001644005810996404 0.3700142651591096 -0.9290260580582297 0.0001644005810996404 -0.3700142651591096 0.9290260580582297 -0.9999999563847567 2.019219442861884e-005 0.0002946570214695821 -0.9999999756782813 -4.311763024688826e-005 0.0002162968025300171 0.9999999756782813 4.311763024688826e-005 -0.0002162968025300171 0.9999999563847567 -2.019219442861884e-005 -0.0002946570214695821 0.9999999787959655 0.0001109095879281376 -0.0001735140691197846 -0.9999999787959655 -0.0001109095879281376 0.0001735140691197846 -0.0001242106906019887 0.7647709191762052 -0.6443022782468542 0.0001242106906019887 -0.7647709191762052 0.6443022782468542 -0.9999999841897669 -9.517416516503213e-005 0.0001502076704646804 0.9999999841897669 9.517416516503213e-005 -0.0001502076704646804 0.9999999805261771 0.0001738433233134982 -9.341383556635226e-005 -0.9999999805261771 -0.0001738433233134982 9.341383556635226e-005 -0.0001507559291783691 0.7647673683511757 -0.6443064873007778 0.0001507559291783691 -0.7647673683511757 0.6443064873007778 -0.9999999855523141 -0.0001492205700541566 8.14161725338505e-005 0.9999999855523141 0.0001492205700541566 -8.14161725338505e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"100\" source=\"#ID1813\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1811\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1809\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1810\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"80\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1811\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 6 12 13 14 15 11 16 0 2 3 5 17 8 7 18 19 10 9 6 13 7 10 14 11 12 20 13 14 21 15 22 0 16 17 5 23 24 25 26 27 28 29 30 31 32 33 34 35 31 36 37 38 39 34 12 40 20 21 41 15 42 22 16 17 23 43 44 24 26 27 29 45 31 37 32 33 38 34 36 46 37 38 47 39 20 40 48 49 41 21 50 22 42 43 23 51 36 52 46 47 53 39 40 54 48 49 55 41 56 50 42 43 51 57 52 58 46 47 59 53 48 54 60 61 55 49 62 50 56 57 51 63 52 64 58 59 65 53 66 64 52 53 65 67 54 68 60 61 69 55 62 70 50 51 71 63 66 72 64 65 73 67 60 68 74 75 69 61 76 70 62 63 71 77 78 79 66 67 80 81 68 82 74 75 83 69 84 85 70 71 86 87 78 88 72 73 89 81 90 74 82 83 75 91 92 85 76 77 86 93 94 88 78 81 89 95 96 90 82 83 91 97 92 98 85 86 99 93</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1814\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1815\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID1818\">-0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID1818\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1816\">\r\n\t\t\t\t\t<float_array count=\"102\" id=\"ID1819\">-0.0004538475399847224 0.1966213553393696 0.9804793912402851 0.003688797389667888 -0.3374031293935553 0.9413530267913594 0.01266054751111889 -0.3617188438700049 0.9322012596677101 -0.01266054751111889 0.3617188438700049 -0.9322012596677101 -0.003688797389667888 0.3374031293935553 -0.9413530267913594 0.0004538475399847224 -0.1966213553393696 -0.9804793912402851 0.0003336166368011087 0.1964552482294163 0.9805127353293572 -0.0003336166368011087 -0.1964552482294163 -0.9805127353293572 0.0003352725620566191 0.3318817225163497 0.9433209474255778 -0.0003352725620566191 -0.3318817225163497 -0.9433209474255778 0.0003284351731852359 0.3318825095467581 0.9433206729353932 -0.0003284351731852359 -0.3318825095467581 -0.9433206729353932 0.0002910058735337027 0.1928548670595222 0.9812272497067311 -0.0002910058735337027 -0.1928548670595222 -0.9812272497067311 0.0002860690277062792 0.1928586257396166 0.9812265124028894 -0.0002860690277062792 -0.1928586257396166 -0.9812265124028894 0.000310031474760802 0.07588661516819907 0.9971164051999135 -0.000310031474760802 -0.07588661516819907 -0.9971164051999135 0.0003107550880094139 0.07588637661018609 0.9971164231303444 -0.0003107550880094139 -0.07588637661018609 -0.9971164231303444 0.0003132233325970984 0.06673756753526176 0.9977705141818034 -0.0003132233325970984 -0.06673756753526176 -0.9977705141818034 0.000313622874468566 0.06673748783363555 0.9977705193872728 0.000313622874468566 0.06673748783363555 0.9977705193872728 -0.000313622874468566 -0.06673748783363555 -0.9977705193872728 -0.000313622874468566 -0.06673748783363555 -0.9977705193872728 -9.50595624338689e-005 -0.932277960717291 0.3617427192418518 1.239626849636202e-005 -0.9322856835495533 0.3617228277215512 -0.0001129214045189766 -0.9322766759051838 0.3617460252883749 0.0001129214045189766 0.9322766759051838 -0.3617460252883749 -1.239626849636202e-005 0.9322856835495533 -0.3617228277215512 9.50595624338689e-005 0.932277960717291 -0.3617427192418518 3.02581460467479e-005 -0.9322869661950879 0.3617195208268472 -3.02581460467479e-005 0.9322869661950879 -0.3617195208268472</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"34\" source=\"#ID1819\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1817\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1815\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1816\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1817\" />\r\n\t\t\t\t\t<p>0 1 2 0 2 6 8 0 6 8 6 10 12 8 10 12 10 14 16 12 14 16 14 18 20 16 18 22 23 18 26 27 28 32 27 26</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1817\" />\r\n\t\t\t\t\t<p>3 4 5 7 3 5 7 5 9 11 7 9 11 9 13 15 11 13 15 13 17 19 15 17 19 17 21 19 24 25 29 30 31 31 30 33</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1820\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1821\">\r\n\t\t\t\t\t<float_array count=\"312\" id=\"ID1824\">0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.555822491645813 1.421113967895508 -0.3582329750061035 0.555822491645813 1.421113967895508 -0.3582329750061035 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.555822491645813 1.421113967895508 -0.3582329750061035 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555822491645813 1.421113967895508 -0.3582329750061035 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.555831253528595 1.172155499458313 -0.3127322494983673 0.555831253528595 1.172155499458313 -0.3127322494983673 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.555831253528595 1.172155499458313 -0.3127322494983673 0.555831253528595 1.172155499458313 -0.3127322494983673 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299354195594788 0.6068390607833862 -0.3397958278656006</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"104\" source=\"#ID1824\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1822\">\r\n\t\t\t\t\t<float_array count=\"312\" id=\"ID1825\">-0.9999999848904151 3.528278127642576e-005 0.0001702183750348007 -0.9999999821275435 4.077827133365155e-005 0.0001846132324601768 -0.9999999828207767 4.598721379066316e-005 0.0001795650924393674 0.9999999828207767 -4.598721379066316e-005 -0.0001795650924393674 0.9999999821275435 -4.077827133365155e-005 -0.0001846132324601768 0.9999999848904151 -3.528278127642576e-005 -0.0001702183750348007 -0.0001570206413457278 0.6874668076573934 -0.7262157831621885 0.007030060403267907 0.6890189558672211 -0.7247092221756054 0.04815427865322053 0.9349903218087026 -0.351389048735795 -0.04815427865322053 -0.9349903218087026 0.351389048735795 -0.007030060403267907 -0.6890189558672211 0.7247092221756054 0.0001570206413457278 -0.6874668076573934 0.7262157831621885 -0.0003006440224052878 0.1288144224115145 -0.9916686715793536 -0.0003007162018480404 0.1287931075008599 -0.9916714400596791 0.0003007162018480404 -0.1287931075008599 0.9916714400596791 0.0003006440224052878 -0.1288144224115145 0.9916686715793536 -0.9999999832730073 5.485520590614737e-005 0.000174484646019524 0.9999999832730073 -5.485520590614737e-005 -0.000174484646019524 0.06111545261249659 0.9359016075152975 -0.3469194178800774 -0.06111545261249659 -0.9359016075152975 0.3469194178800774 -0.000347024791685719 -0.1791548186261827 -0.9838208325385338 0.000347024791685719 0.1791548186261827 0.9838208325385338 -0.9999998851838614 4.645765363971029e-005 0.0004769422924880472 0.9999998851838614 -4.645765363971029e-005 -0.0004769422924880472 0.003744679559962774 -0.3379545967345152 0.9411549648814507 -0.05464788827610732 -0.6584735395667153 0.7506172166939976 -0.04204452399270275 -0.6611961254129715 0.7490340057307822 0.04204452399270275 0.6611961254129715 -0.7490340057307822 0.05464788827610732 0.6584735395667153 -0.7506172166939976 -0.003744679559962774 0.3379545967345152 -0.9411549648814507 0.9999999821001934 -3.099181584322151e-005 -0.0001866524055217305 0.9999999871170857 -3.304050953679614e-005 -0.0001570800856432446 0.9999999834183203 -4.065045476826068e-005 -0.0001775130975463934 -0.9999999834183203 4.065045476826068e-005 0.0001775130975463934 -0.9999999871170857 3.304050953679614e-005 0.0001570800856432446 -0.9999999821001934 3.099181584322151e-005 0.0001866524055217305 0.9999999066122413 -4.146598711928248e-005 -0.0004301814508853706 0.9999999864921676 -7.054760133948506e-005 -0.0001484543718766534 -0.9999999864921676 7.054760133948506e-005 0.0001484543718766534 -0.9999999066122413 4.146598711928248e-005 0.0004301814508853706 0.001461077543801844 -0.1787827834529962 -0.98388748421413 -0.001461077543801844 0.1787827834529962 0.98388748421413 -0.9999997899934668 -6.887446674136239e-006 0.0006480475176959769 0.9999997899934668 6.887446674136239e-006 -0.0006480475176959769 0.01272641420307216 -0.3622788561835054 0.9319828693403665 -0.01272641420307216 0.3622788561835054 -0.9319828693403665 0.9999998255747505 7.504722018172481e-006 -0.0005905879676731446 -0.9999998255747505 -7.504722018172481e-006 0.0005905879676731446 0.02687724453678354 -0.2300407755504435 -0.9728097734450761 -0.02687724453678354 0.2300407755504435 0.9728097734450761 -0.9999999628618436 1.707942303663736e-005 0.0002720011119534417 0.9999999628618436 -1.707942303663736e-005 -0.0002720011119534417 0.9999999625126778 -1.855958253013337e-005 -0.0002731852579091885 -0.9999999625126778 1.855958253013337e-005 0.0002731852579091885 0.02759868326011885 -0.2306650373348312 -0.9726417394054341 -0.02759868326011885 0.2306650373348312 0.9726417394054341 -0.9999999667524542 1.376135579283297e-005 0.0002574989626878153 0.9999999667524542 -1.376135579283297e-005 -0.0002574989626878153 0.9999999654584074 -1.64977949172472e-005 -0.000262318521738804 -0.9999999654584074 1.64977949172472e-005 0.000262318521738804 0.0006684749033927384 -0.1435045057193308 -0.989649437922113 -0.0006684749033927384 0.1435045057193308 0.989649437922113 -0.9999999599982802 2.18659309668192e-005 0.0002820023393009842 0.9999999599982802 -2.18659309668192e-005 -0.0002820023393009842 0.9999999604701944 -2.058008749922922e-005 -0.0002804212366822801 -0.9999999604701944 2.058008749922922e-005 0.0002804212366822801 0.9999999523663518 -1.982392295917662e-005 -0.0003080167310226706 -0.9999999523663518 1.982392295917662e-005 0.0003080167310226706 -0.0003975532815431017 -0.1436292508536076 -0.9896314870953833 0.0003975532815431017 0.1436292508536076 0.9896314870953833 -0.9999999522757483 2.199274651290159e-005 0.0003081636260085259 0.9999999522757483 -2.199274651290159e-005 -0.0003081636260085259 0.9999999468635423 -2.330866435320481e-005 -0.0003251609124248027 -0.9999999468635423 2.330866435320481e-005 0.0003251609124248027 -0.0002588876947958197 0.3705342992523084 -0.9288187476869545 0.0002588876947958197 -0.3705342992523084 0.9288187476869545 -0.9999999528133073 2.047393718783433e-005 0.000306519495778921 0.9999999528133073 -2.047393718783433e-005 -0.000306519495778921 0.9999999691223772 4.803574051412936e-005 -0.0002438192210273459 0.9999999467611762 -2.370677477091507e-005 -0.0003254468214559952 -0.9999999467611762 2.370677477091507e-005 0.0003254468214559952 -0.9999999691223772 -4.803574051412936e-005 0.0002438192210273459 -0.0002554135440773512 0.3704180693355161 -0.9288651078997802 0.0002554135440773512 -0.3704180693355161 0.9288651078997802 -0.9999999529147998 2.039539899707468e-005 0.0003061934457488081 -0.9999999739713007 -4.46492633153544e-005 0.0002237495055216183 0.9999999739713007 4.46492633153544e-005 -0.0002237495055216183 0.9999999529147998 -2.039539899707468e-005 -0.0003061934457488081 0.999999979842059 0.0001062569116814978 -0.0001703682780391255 -0.999999979842059 -0.0001062569116814978 0.0001703682780391255 -0.0001347276003381009 0.7648908936276634 -0.6441598425033559 0.0001347276003381009 -0.7648908936276634 0.6441598425033559 -0.9999999830989202 -9.836897367025223e-005 0.0001553245127247652 -0.9999999527965546 2.032403094106207e-005 0.0003065841196284575 0.9999999527965546 -2.032403094106207e-005 -0.0003065841196284575 0.9999999830989202 9.836897367025223e-005 -0.0001553245127247652 0.9999999817559017 0.0001665683458724161 -9.350498646018241e-005 -0.9999999817559017 -0.0001665683458724161 9.350498646018241e-005 -0.0001339321159678741 0.7648909999718571 -0.6441597163935671 -0.0001339321159678741 0.7648909999718571 -0.6441597163935671 0.0001339321159678741 -0.7648909999718571 0.6441597163935671 0.0001339321159678741 -0.7648909999718571 0.6441597163935671 -0.9999999845720291 -0.0001541243402943206 8.427116555330488e-005 0.9999999845720291 0.0001541243402943206 -8.427116555330488e-005</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"104\" source=\"#ID1825\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1823\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1821\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1822\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"80\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1823\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 6 12 13 14 15 11 16 0 2 3 5 17 8 7 18 19 10 9 6 13 7 10 14 11 12 20 13 14 21 15 22 0 16 17 5 23 24 25 26 27 28 29 30 31 32 33 34 35 31 36 37 38 39 34 12 40 20 21 41 15 42 22 16 17 23 43 44 24 26 27 29 45 31 37 32 33 38 34 36 46 37 38 47 39 20 40 48 49 41 21 50 22 42 43 23 51 36 52 46 47 53 39 40 54 48 49 55 41 56 50 42 43 51 57 52 58 46 47 59 53 48 54 60 61 55 49 62 50 56 57 51 63 52 64 58 59 65 53 66 64 52 53 65 67 54 68 60 61 69 55 62 70 50 51 71 63 66 72 64 65 73 67 60 68 74 75 69 61 76 70 62 63 71 77 78 79 66 67 80 81 68 82 74 75 83 69 84 85 70 71 86 87 78 88 72 73 89 81 90 74 82 83 75 91 92 85 93 94 86 95 96 88 78 81 89 97 98 99 82 83 100 101 92 102 85 86 103 95</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1826\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1827\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1830\">0.5299191474914551 1.336438298225403 -0.337350994348526 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1830\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1828\">\r\n\t\t\t\t\t<float_array count=\"96\" id=\"ID1831\">-0.0004200498066727247 0.1960606869999712 0.9805916737211566 0.003744679559962774 -0.3379545967345152 0.9411549648814507 0.01272641420307216 -0.3622788561835054 0.9319828693403665 -0.01272641420307216 0.3622788561835054 -0.9319828693403665 -0.003744679559962774 0.3379545967345152 -0.9411549648814507 0.0004200498066727247 -0.1960606869999712 -0.9805916737211566 0.0003692586280801227 0.195873020390035 0.9806291977762801 -0.0003692586280801227 -0.195873020390035 -0.9806291977762801 0.0003828121807958291 0.331324506299434 0.9435167857437781 -0.0003828121807958291 -0.331324506299434 -0.9435167857437781 0.0003733136420398944 0.3313237310209041 0.9435170617955525 -0.0003733136420398944 -0.3313237310209041 -0.9435170617955525 0.0002729107498873451 0.1922976988738959 0.9813365989952312 -0.0002729107498873451 -0.1922976988738959 -0.9813365989952312 0.0002652170170330006 0.1922754556501566 0.981340959511249 -0.0002652170170330006 -0.1922754556501566 -0.981340959511249 0.0003329080878166919 0.0752994296670667 0.9971609123225897 -0.0003329080878166919 -0.0752994296670667 -0.9971609123225897 0.000334031071719432 0.0752984514242747 0.9971609858174103 -0.000334031071719432 -0.0752984514242747 -0.9971609858174103 0.000318167767874384 0.06614990713798376 0.9978096454509285 -0.000318167767874384 -0.06614990713798376 -0.9978096454509285 0.0003158363779133048 0.06615037220994488 0.9978096153594974 -0.0003158363779133048 -0.06615037220994488 -0.9978096153594974 -1.105960625052409e-005 -0.9323222872788488 0.361628473050479 1.388113031852923e-006 -0.9323231810389382 0.3616261689860238 -1.312822105434077e-005 -0.9323221387354551 0.3616288559440424 1.312822105434077e-005 0.9323221387354551 -0.3616288559440424 -1.388113031852923e-006 0.9323231810389382 -0.3616261689860238 1.105960625052409e-005 0.9323222872788488 -0.361628473050479 3.456675991517009e-006 -0.93232332954951 0.3616257860907698 -3.456675991517009e-006 0.93232332954951 -0.3616257860907698</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"32\" source=\"#ID1831\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1829\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1827\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1828\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1829\" />\r\n\t\t\t\t\t<p>0 1 2 0 2 6 8 0 6 8 6 10 12 8 10 12 10 14 16 12 14 16 14 18 20 16 18 22 20 18 24 25 26 30 25 24</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1829\" />\r\n\t\t\t\t\t<p>3 4 5 7 3 5 7 5 9 11 7 9 11 9 13 15 11 13 15 13 17 19 15 17 19 17 21 19 21 23 27 28 29 29 28 31</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1832\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1833\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1836\">0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 -0.002306933514773846 -0.9634888768196106 -0.3111290037631989 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 -0.002306933514773846 -0.9634888768196106 -0.3111290037631989 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 -0.005092551000416279 -0.0468074306845665 -0.3878971040248871 -0.005092551000416279 -0.0468074306845665 -0.3878971040248871 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1836\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1834\">\r\n\t\t\t\t\t<float_array count=\"174\" id=\"ID1837\">0.8471696031554058 0.04689773012802803 0.5292487755284382 0.4401502978273895 0.07678570680066062 0.8946349370293916 0.8592402655707703 0.04433593462399087 0.5096474182441124 -0.8592402655707703 -0.04433593462399087 -0.5096474182441124 -0.4401502978273895 -0.07678570680066062 -0.8946349370293916 -0.8471696031554058 -0.04689773012802803 -0.5292487755284382 0.02213461350851198 -0.9838296001132999 -0.1777340058225582 0.02214728878768746 -0.9838135953026865 -0.1778209979078871 0.02212201164671536 -0.9827055370523353 -0.1838489707542149 -0.02212201164671536 0.9827055370523353 0.1838489707542149 -0.02214728878768746 0.9838135953026865 0.1778209979078871 -0.02213461350851198 0.9838296001132999 0.1777340058225582 0.8581777584640484 -0.0400658295849563 -0.511786737007995 0.8557850237502858 -0.04058963644497733 -0.5157368268196364 0.4572619699902916 -0.07040587592748571 -0.8865407511420336 -0.4572619699902916 0.07040587592748571 0.8865407511420336 -0.8557850237502858 0.04058963644497733 0.5157368268196364 -0.8581777584640484 0.0400658295849563 0.511786737007995 0.5333584259121058 0.07204941364349686 0.8428153246721306 -0.5333584259121058 -0.07204941364349686 -0.8428153246721306 0.02213103454147481 -0.9827021412438243 -0.1838660352129422 -0.02213103454147481 0.9827021412438243 0.1838660352129422 0.02216710073291421 -0.9848868105875184 -0.1717748234632854 -0.02216710073291421 0.9848868105875184 0.1717748234632854 -0.02205767583973393 0.9816602697034845 0.1893583212384166 -0.02208675936962806 0.9816633185654566 0.1893391244397288 -0.0220711862311958 0.981660700387417 0.1893545142140372 0.0220711862311958 -0.981660700387417 -0.1893545142140372 0.02208675936962806 -0.9816633185654566 -0.1893391244397288 0.02205767583973393 -0.9816602697034845 -0.1893583212384166 0.5203171375320179 -0.06743066470191132 -0.8513067495611353 -0.5203171375320179 0.06743066470191132 0.8513067495611353 -0.02208499222937724 0.9816640967406718 0.189335295939636 0.02208499222937724 -0.9816640967406718 -0.189335295939636 -0.4744560974523423 0.07357336721613098 0.8771991628055591 0.4744560974523423 -0.07357336721613098 -0.8771991628055591 0.02215434434420591 -0.9838320356359597 -0.1777180651568155 -0.02215434434420591 0.9838320356359597 0.1777180651568155 0.02216599408817481 -0.9848867473709602 -0.1717753287266057 0.02217588882505957 -0.9848855426448274 -0.1717809589099522 -0.02217588882505957 0.9848855426448274 0.1717809589099522 -0.02216599408817481 0.9848867473709602 0.1717753287266057 -0.02204966620218046 0.9816549723349188 0.1893867141868779 0.02204966620218046 -0.9816549723349188 -0.1893867141868779 -0.4488827510890986 -0.07142531229437267 -0.8907315535773579 0.4488827510890986 0.07142531229437267 0.8907315535773579 -0.02207713179279975 0.9816638088999858 0.1893377050346172 0.02207713179279975 -0.9816638088999858 -0.1893377050346172 -0.5213050402861289 0.0701336647363395 0.8504835824652514 0.5213050402861289 -0.0701336647363395 -0.8504835824652514 -0.9946912270840029 0.006756099022091487 0.1026826075249562 0.9946912270840029 -0.006756099022091487 -0.1026826075249562 -0.5731013847754379 -0.06790698381044293 -0.8166660543442733 0.5731013847754379 0.06790698381044293 0.8166660543442733 -0.02207088802970789 0.981657733885077 0.1893699274045254 0.02207088802970789 -0.981657733885077 -0.1893699274045254 -0.9964745463580103 -0.007490646736988896 -0.08356056888305249 0.9964745463580103 0.007490646736988896 0.08356056888305249</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"58\" source=\"#ID1837\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1835\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1833\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1834\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"48\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1835\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 18 2 3 19 4 8 7 20 21 10 9 6 22 7 10 23 11 24 25 26 27 28 29 30 12 14 15 17 31 26 25 32 33 28 27 34 18 1 4 19 35 7 36 20 21 37 10 38 39 7 10 40 41 42 24 26 27 29 43 14 44 30 31 45 15 26 32 46 47 33 27 34 48 18 19 49 35 7 39 36 37 40 10 34 50 48 49 51 35 44 52 30 31 53 45 42 26 54 55 27 43 54 26 46 47 27 55 50 52 56 57 53 51 48 50 56 57 51 49 56 52 44 45 53 57</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1838\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1839\">\r\n\t\t\t\t\t<float_array count=\"450\" id=\"ID1842\">0.05343644320964813 0.1741137206554413 -0.30791175365448 0.03954382240772247 0.173693522810936 -0.3557284474372864 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.1620966047048569 0.173693522810936 -0.3075017929077148 0.1620966047048569 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 0.03954382240772247 0.173693522810936 -0.3557284474372864 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 0.05343644320964813 -0.0231819823384285 -0.30791175365448 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 0.05343644320964813 -0.0231819823384285 -0.30791175365448 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.4001826941967011 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.4001826941967011 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 0.004646843299269676 0.1741137206554413 -0.4509885311126709 0.004646843299269676 0.1741137206554413 -0.4509885311126709 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 0.004646843299269676 0.1741137206554413 -0.4509885311126709 0.004646843299269676 0.1741137206554413 -0.4509885311126709 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.04882822185754776 -0.08871229737997055 -0.4001826941967011 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"150\" source=\"#ID1842\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1840\">\r\n\t\t\t\t\t<float_array count=\"450\" id=\"ID1843\">-0.0008524021846609801 -0.9999934579831282 0.003515309582559555 -0.000674593647413681 -0.9999959026174352 0.00278202655478913 -0.0008524021846609801 -0.9999934579831282 0.003515309582559555 -0.0002018871823877642 -0.9999996330231196 0.0008325834443114648 0.0002018871823877642 0.9999996330231196 -0.0008325834443114648 0.0008524021846609801 0.9999934579831282 -0.003515309582559555 0.000674593647413681 0.9999959026174352 -0.00278202655478913 0.0008524021846609801 0.9999934579831282 -0.003515309582559555 -0.002064684151654042 0.9999612923901422 0.008552824141210507 -9.923755920933442e-005 0.99999991058037 0.0004110853427341175 -0.002064684151654042 0.9999612923901422 0.008552824141210507 0.00152764242395126 0.999998774964976 0.0003411409852822999 9.923755920933442e-005 -0.99999991058037 -0.0004110853427341175 0.002064684151654042 -0.9999612923901422 -0.008552824141210507 -0.00152764242395126 -0.999998774964976 -0.0003411409852822999 0.002064684151654042 -0.9999612923901422 -0.008552824141210507 0 -1 0 -0 1 -0 0 1 0 -0 -1 -0 -0.3872695190778213 -0.0002125953994443339 0.9219665256376879 -0.680525551593799 0.001113914692902286 0.7327235036642488 -0.3903344446072451 -0.002071356399789515 0.9206708048134352 0.3903344446072451 0.002071356399789515 -0.9206708048134352 0.680525551593799 -0.001113914692902286 -0.7327235036642488 0.3872695190778213 0.0002125953994443339 -0.9219665256376879 0 1 0 -0 -1 -0 -0.6902235729625602 -3.497933862440305e-006 0.723596171434428 -0.993564706888407 0.001753445859980048 0.1132523670983072 0.993564706888407 -0.001753445859980048 -0.1132523670983072 0.6902235729625602 3.497933862440305e-006 -0.723596171434428 -0.3854140957586625 0.0009109952854830883 0.9227432713805733 -0.3854140957586625 0.0009109952854830883 0.9227432713805733 0.3854140957586625 -0.0009109952854830883 -0.9227432713805733 0.3854140957586625 -0.0009109952854830883 -0.9227432713805733 0 1 0 -0 -1 -0 -0.9950096440210436 -0.000943752455602703 0.09977433355537235 -0.7394914584646463 0.0002843368189138564 -0.673165880010569 0.7394914584646463 -0.0002843368189138564 0.673165880010569 0.9950096440210436 0.000943752455602703 -0.09977433355537235 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.0009595663710950525 -0.9999994004879673 0.0005274998439833328 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.0002623361050891516 -0.9999998535440419 0.0004733832091642585 0.0009595663710950525 0.9999994004879673 -0.0005274998439833328 0.00578959802049866 0.99992866491342 -0.01044727903459306 0.0002623361050891516 0.9999998535440419 -0.0004733832091642585 0.00578959802049866 0.99992866491342 -0.01044727903459306 0.00578959802049866 0.99992866491342 -0.01044727903459306 -3.911876577611277e-008 -1.861256100673479e-017 0.9999999999999991 -0.707106372870083 -9.672022582894041e-018 0.7071071895027762 -3.911876573786155e-008 -4.242689383461759e-017 0.9999999999999992 3.911876573786155e-008 4.242689383461759e-017 -0.9999999999999992 0.707106372870083 9.672022582894041e-018 -0.7071071895027762 3.911876577611277e-008 1.861256100673479e-017 -0.9999999999999991 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0.0008523534733143322 0.999999594506523 -0.0002906550293067631 -0.0008523534733143322 -0.999999594506523 0.0002906550293067631 -0.7405281290730719 0.001610344907837274 -0.6720234347407936 -0.06779187227960655 0.001877425022851561 -0.9976977184138035 0.06779187227960655 -0.001877425022851561 0.9976977184138035 0.7405281290730719 -0.001610344907837274 0.6720234347407936 0 -1 0 -0 1 -0 -0.707106372870083 1.41422847206689e-017 0.7071071895027762 0.707106372870083 -1.41422847206689e-017 -0.7071071895027762 0.7071061114800435 -1.414227721279664e-017 0.7071074508924174 -0.7071061114800435 1.414227721279664e-017 -0.7071074508924174 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.003294124417085093 0.9999939434455599 -0.001123306068390831 -0.003294124417085093 -0.9999939434455599 0.001123306068390831 -0.07063814495457572 0.002857620332911681 -0.9974979130220821 0.3466598206120948 0.002001151010611005 -0.9379887868028183 -0.3466598206120948 -0.002001151010611005 0.9379887868028183 0.07063814495457572 -0.002857620332911681 0.9974979130220821 0 -1 0 -0 1 -0 0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 -0.9999999999993621 1.414238529049367e-017 -1.129588202910892e-006 0.9999999999993621 -1.414238529049367e-017 1.129588202910892e-006 0 -1 0 -0 1 -0 0.7071061114800435 -1.414227721279663e-017 0.7071074508924172 -0.7071061114800435 1.414227721279663e-017 -0.7071074508924172 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.3501992826352902 0.0007580898147801481 -0.9366749103832989 0.4835462335726444 0.0008799597322555606 -0.8753183796017191 -0.4835462335726444 -0.0008799597322555606 0.8753183796017191 -0.3501992826352902 -0.0007580898147801481 0.9366749103832989 0.001901451832417029 -0.9999977322604323 -0.0009591428056673119 -0.001901451832417029 0.9999977322604323 0.0009591428056673119 0 -1 0 -0 1 -0 -0.999999999999362 -1.733948662692664e-018 -1.129588202930018e-006 0.999999999999362 1.733948662692664e-018 1.129588202930018e-006 0 -1 0 -0 1 -0 0.9999999999998042 0 -6.259043495723284e-007 -0.9999999999998042 -0 6.259043495723284e-007 0 1 0 -0 -1 -0 -0.7071048312562522 -1.240838486938628e-017 -0.7071087311114657 0.7071048312562522 1.240838486938628e-017 0.7071087311114657 0.9999999999998041 0 -6.259043496297053e-007 -0.9999999999998041 -0 6.259043496297053e-007 0 1 0 -0 -1 -0 0.4843937839313932 0 -0.8748500797786023 -0.4843937839313932 -0 0.8748500797786023 0.002267514730237025 -0.9999957149613051 -0.001851603622948137 0.004312416916715417 -0.9999874718538377 -0.002541494778023185 -0.004312416916715417 0.9999874718538377 0.002541494778023185 -0.002267514730237025 0.9999957149613051 0.001851603622948137 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 -0.7071048312562522 -2.828468600615452e-017 -0.7071087311114657 -2.477511845108208e-007 -1.414233203803552e-017 -0.9999999999999691 2.477511845108208e-007 1.414233203803552e-017 0.9999999999999691 0.7071048312562522 2.828468600615452e-017 0.7071087311114657 0.7071047784991345 0 -0.7071087838682884 -0.7071047784991345 -0 0.7071087838682884 0.7071047784991347 0 -0.7071087838682884 -0.7071047784991347 -0 0.7071087838682884 -0.001955581172541138 -0.9999979967544046 -0.0004268365677167187 0.001955581172541138 0.9999979967544046 0.0004268365677167187 0 -1 0 -0 1 -0 -2.477511845299464e-007 -1.414233203803551e-017 -0.9999999999999691 2.477511845299464e-007 1.414233203803551e-017 0.9999999999999691</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"150\" source=\"#ID1843\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1841\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1839\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1840\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"132\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1841\" />\r\n\t\t\t\t\t<p>0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 11 10 9 12 13 14 13 12 15 16 1 3 4 6 17 9 18 11 14 19 12 20 21 22 23 24 25 18 26 11 14 27 19 21 28 29 30 31 24 20 32 21 32 33 21 28 21 33 34 24 31 24 34 35 24 35 25 26 36 11 14 37 27 29 38 39 40 41 30 28 38 29 30 41 31 42 43 44 44 43 45 46 45 43 47 48 49 48 47 50 50 47 51 52 53 54 55 56 57 58 59 60 61 62 63 36 64 11 14 65 37 39 66 67 68 69 40 38 66 39 40 69 41 70 46 43 47 49 71 72 53 52 57 56 73 52 54 74 75 55 57 76 59 58 63 62 77 59 78 60 61 79 62 64 80 11 14 81 65 67 82 83 84 85 68 66 82 67 68 85 69 86 70 43 47 71 87 88 89 90 91 92 93 53 72 94 95 73 56 96 88 90 91 93 97 74 54 98 99 55 75 76 100 59 62 101 77 59 102 78 79 103 62 83 104 105 106 107 84 83 82 104 107 85 84 108 86 43 47 87 109 88 110 89 92 111 93 72 112 94 95 113 73 114 88 96 97 93 115 116 74 98 99 75 117 100 118 59 62 119 101 94 112 120 121 113 95 122 116 98 99 117 123 59 124 102 103 125 62 105 104 126 127 107 106 128 129 43 108 43 129 130 47 109 47 130 131 88 132 110 111 133 93 114 134 88 93 135 115 118 124 59 62 125 119 120 136 137 138 139 121 112 136 120 121 139 113 140 116 122 123 117 141 142 140 122 123 141 143 43 144 128 129 128 144 145 131 130 131 145 47 146 132 88 93 133 147 134 146 88 93 147 135 137 148 142 143 149 138 137 136 148 149 139 138 142 148 140 141 149 143</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1844\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1845\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID1848\">0.001038577407598496 0.171336904168129 -0.3997860848903656 -0.04898601025342941 0.171336904168129 -0.3997860848903656 -0.02397382631897926 0.171336904168129 -0.3564637303352356 -0.02397382631897926 0.171336904168129 -0.3564637303352356 -0.04898601025342941 0.171336904168129 -0.3997860848903656 0.001038577407598496 0.171336904168129 -0.3997860848903656 -0.02397382631897926 0.171336904168129 -0.4431087970733643 -0.02397382631897926 0.171336904168129 -0.4431087970733643 -0.07399865239858627 0.171336904168129 -0.3564637303352356 -0.07399865239858627 0.171336904168129 -0.3564637303352356 -0.07399865239858627 0.171336904168129 -0.4431087970733643 -0.07399865239858627 0.171336904168129 -0.4431087970733643 -0.09901061654090881 0.171336904168129 -0.3997860848903656 -0.09901061654090881 0.171336904168129 -0.3997860848903656</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID1848\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1846\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID1849\">0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"14\" source=\"#ID1849\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1847\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1845\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1846\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"12\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1847\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 0 6 1 4 7 5 2 1 8 9 4 3 6 10 1 4 11 7 1 12 8 9 13 4 1 10 12 13 11 4</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1850\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1851\">\r\n\t\t\t\t\t<float_array count=\"396\" id=\"ID1854\">-0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.170267701148987 -0.3140725195407867 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.5808534622192383 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"132\" source=\"#ID1854\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1852\">\r\n\t\t\t\t\t<float_array count=\"396\" id=\"ID1855\">-1.130159922583212e-006 1.949100471316308e-006 -0.9999999999974618 -4.267889876472928e-006 -0.3826802897704246 -0.9238808342004986 -1.1301334122519e-006 1.949057629495692e-006 -0.999999999997462 1.1301334122519e-006 -1.949057629495692e-006 0.999999999997462 4.267889876472928e-006 0.3826802897704246 0.9238808342004986 1.130159922583212e-006 -1.949100471316308e-006 0.9999999999974618 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 -4.267853575409275e-006 0.382683418680344 -0.9238795381698363 4.267853575409275e-006 -0.382683418680344 0.9238795381698363 -4.439926465004716e-006 -0.3826796682521984 -0.9238810916382445 4.439926465004716e-006 0.3826796682521984 0.9238810916382445 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -4.439913468692071e-006 0.3826840402307754 -0.9238792807141728 4.439913468692071e-006 -0.3826840402307754 0.9238792807141728 1 0 0 -1 -0 -0 -9.580972100645668e-007 -0.7071018257267022 -0.7071117366110157 9.580972100645668e-007 0.7071018257267022 0.7071117366110157 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -9.580991023527817e-007 0.7071043423311452 -0.7071092200328891 9.580991023527817e-007 -0.7071043423311452 0.7071092200328891 1 0 0 -1 -0 -0 -1.121026176803332e-017 -0.7071022878340889 -0.7071112745104529 1.121026176803332e-017 0.7071022878340889 0.7071112745104529 -1 0 0 1 -0 -0 -5.484074183472452e-018 -0.923881106935747 -0.3826796313460895 5.484074183472452e-018 0.923881106935747 0.3826796313460895 -1 0 0 1 -0 -0 -2.89782612884685e-017 0.7071038802247908 -0.7071096821364028 2.89782612884685e-017 -0.7071038802247908 0.7071096821364028 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -2.144655999698515e-017 -0.9238811069357469 -0.3826796313460895 4.752124784497387e-018 -0.9999999999982547 -1.868370662626244e-006 -4.752124784497387e-018 0.9999999999982547 1.868370662626244e-006 2.144655999698515e-017 0.9238811069357469 0.3826796313460895 -1 0 0 1 -0 -0 -4.879379169258916e-017 0.9238800887855799 -0.3826820893973862 -5.354591770247694e-017 0.9238800887855798 -0.3826820893973862 5.354591770247694e-017 -0.9238800887855798 0.3826820893973862 4.879379169258916e-017 -0.9238800887855799 0.3826820893973862 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -9.503747639056373e-018 -0.9999999999982547 -1.868370662680292e-006 -1.506300306250552e-017 -0.9238824081403895 0.3826764899085318 1.506300306250552e-017 0.9238824081403895 -0.3826764899085318 9.503747639056373e-018 0.9999999999982547 1.868370662680292e-006 -1 0 0 1 -0 -0 -1.784295402865374e-017 0.9999999999982544 -1.868514494595799e-006 -4.160251598163036e-017 0.9999999999982544 -1.868514494577784e-006 4.160251598163036e-017 -0.9999999999982544 1.868514494577784e-006 1.784295402865374e-017 -0.9999999999982544 1.868514494595799e-006 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -2.456683227551504e-017 -0.9238824081403895 0.3826764899085318 0 -0.7071031150808818 0.707110447273206 -0 0.7071031150808818 -0.707110447273206 2.456683227551504e-017 0.9238824081403895 -0.3826764899085318 -1 0 0 1 -0 -0 2.456669184427625e-017 0.9238812049271341 0.3826793947711148 5.559188559376211e-018 0.9238812049271341 0.382679394771115 -5.559188559376211e-018 -0.9238812049271341 -0.382679394771115 -2.456669184427625e-017 -0.9238812049271341 -0.3826793947711148 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0 -0.3826838347087458 0.9238793658549851 0 -0.7071031150808818 0.707110447273206 -0 0.7071031150808818 -0.707110447273206 -0 0.3826838347087458 -0.9238793658549851 -1 0 0 1 -0 -0 1.121040847797749e-017 0.7071060718481682 0.7071074905242151 0 0.7071060718481682 0.7071074905242151 -0 -0.7071060718481682 -0.7071074905242151 -1.121040847797749e-017 -0.7071060718481682 -0.7071074905242151 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1.228357465642283e-017 3.170942685220934e-006 0.9999999999949726 0 -0.3826838347087458 0.9238793658549851 -0 0.3826838347087458 -0.9238793658549851 -1.228357465642283e-017 -3.170942685220934e-006 -0.9999999999949726 4.126187744361914e-017 0.3826861683731713 0.9238783992148861 3.005147520923364e-017 0.3826861683731713 0.9238783992148861 -3.005147520923364e-017 -0.3826861683731713 -0.9238783992148861 -4.126187744361914e-017 -0.3826861683731713 -0.9238783992148861 1 0 0 -1 -0 -0 1.228357465642284e-017 3.170942685292997e-006 0.9999999999949726 -1.228357465642284e-017 -3.170942685292997e-006 -0.9999999999949726</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"132\" source=\"#ID1855\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1853\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1851\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1852\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"128\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1853\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 16 7 6 11 10 17 6 8 18 19 9 11 20 21 22 23 24 25 26 0 12 13 5 27 20 28 21 24 29 25 1 30 14 15 31 4 32 16 6 11 17 33 6 18 34 35 19 11 22 21 36 37 24 23 38 26 12 13 27 39 28 40 21 24 41 29 14 30 42 43 31 15 44 32 6 11 33 45 42 30 46 47 31 43 6 34 48 49 35 11 50 26 38 39 27 51 36 21 52 53 24 37 40 54 21 24 55 41 56 44 6 11 45 57 58 46 59 60 47 61 58 42 46 47 43 61 6 48 62 63 49 11 64 50 65 66 51 67 50 38 65 66 39 51 52 21 68 69 24 53 54 70 21 24 71 55 72 56 6 11 57 73 74 59 75 76 60 77 74 58 59 60 61 77 78 6 62 63 11 79 80 64 81 82 67 83 64 65 81 82 66 67 21 84 68 69 85 24 70 86 21 24 87 71 88 72 6 11 73 89 90 75 91 92 76 93 90 74 75 76 77 93 94 6 78 79 11 95 96 80 97 98 83 99 80 81 97 98 82 83 21 100 84 85 101 24 86 102 21 24 103 87 104 88 6 11 89 105 91 106 107 108 109 92 107 90 91 92 93 108 110 6 94 95 11 111 112 96 113 114 99 115 96 97 113 114 98 99 21 116 100 101 117 24 102 118 21 24 119 103 104 6 110 111 11 105 106 120 121 122 123 109 107 106 121 122 109 108 124 112 125 126 115 127 125 112 113 114 115 126 21 128 116 117 129 24 21 118 128 129 119 24 120 124 130 131 127 123 121 120 130 131 123 122 130 124 125 126 127 131</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1856\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1857\">\r\n\t\t\t\t\t<float_array count=\"402\" id=\"ID1860\">-0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6596336960792542 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"134\" source=\"#ID1860\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1858\">\r\n\t\t\t\t\t<float_array count=\"402\" id=\"ID1861\">-1.2916044995839e-006 -1.622831494590891e-006 -0.9999999999978491 -4.877612574350995e-006 -0.3826880997193461 -0.9238775992031654 -1.291606467001254e-006 -1.622828384775344e-006 -0.9999999999978491 1.291606467001254e-006 1.622828384775344e-006 0.9999999999978491 4.877612574350995e-006 0.3826880997193461 0.9238775992031654 1.2916044995839e-006 1.622831494590891e-006 0.9999999999978491 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 -4.877617766074997e-006 0.3826857653536466 -0.923878566139459 4.877617766074997e-006 -0.3826857653536466 0.923878566139459 -5.074247172752549e-006 -0.3826873893609037 -0.9238778934460917 5.074247172752549e-006 0.3826873893609037 0.9238778934460917 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -5.07425111606672e-006 0.3826864757063207 -0.9238782718982666 5.07425111606672e-006 -0.3826864757063207 0.9238782718982666 1 0 0 -1 -0 -0 -1.094970217341462e-006 -0.7071035322409311 -0.7071100301163883 1.094970217341462e-006 0.7071035322409311 0.7071100301163883 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -1.094968152871253e-006 0.7071038429309827 -0.7071097194290553 1.094968152871253e-006 -0.7071038429309827 0.7071097194290553 1 0 0 -1 -0 -0 -2.897845197819312e-017 -0.7071040603653174 -0.7071095019973086 2.897845197819312e-017 0.7071040603653174 0.7071095019973086 -1 0 0 1 -0 -0 -4.126238201343536e-017 -0.9238751717500278 -0.3826939600044098 4.126238201343536e-017 0.9238751717500278 0.3826939600044098 -1 0 0 1 -0 -0 -3.553734694154178e-017 0.7071033148137366 -0.7071102475423658 3.553734694154178e-017 -0.7071033148137366 0.7071102475423658 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -3.175837688221498e-017 -0.9238751717500278 -0.3826939600044099 2.734678571659092e-017 -0.9999999999996858 -7.92724898079175e-007 -2.734678571659092e-017 0.9999999999996858 7.92724898079175e-007 3.175837688221498e-017 0.9238751717500278 0.3826939600044099 -1 0 0 1 -0 -0 3.453826897195781e-017 0.9238801307652029 -0.3826819880491786 3.112559068021542e-017 0.9238801307652028 -0.3826819880491787 -3.112559068021542e-017 -0.9238801307652028 0.3826819880491787 -3.453826897195781e-017 -0.9238801307652029 0.3826819880491786 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 2.259511444695752e-017 -0.9999999999996858 -7.92724898061159e-007 -2.700651582927052e-017 -0.923875444265542 0.3826933021143006 2.700651582927052e-017 0.923875444265542 -0.3826933021143006 -2.259511444695752e-017 0.9999999999996858 7.92724898061159e-007 -1 0 0 1 -0 -0 -2.456744429449738e-017 0.9999999999996858 -7.926638801005441e-007 -5.559435115472413e-018 0.9999999999996858 -7.926638801185601e-007 5.559435115472413e-018 -0.9999999999996858 7.926638801185601e-007 2.456744429449738e-017 -0.9999999999996858 7.926638801005441e-007 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -0.9999999999992996 1.093614454009465e-006 4.529891701655164e-007 0.9999999999992996 -1.093614454009465e-006 -4.529891701655164e-007 -3.005190997543079e-017 -0.9238754442655419 0.3826933021143006 -4.019040723039297e-017 -0.7071021262401992 0.7071114361022521 4.019040723039297e-017 0.7071021262401992 -0.7071114361022521 3.005190997543079e-017 0.9238754442655419 -0.3826933021143006 -1 0 0 1 -0 -0 0 0.923880341541087 0.3826814791885339 0 0.923880341541087 0.3826814791885339 -0 -0.923880341541087 -0.3826814791885339 -0 -0.923880341541087 -0.3826814791885339 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -0.9999999999995898 2.228600270075891e-012 9.059735365126267e-007 -0.9999999999999937 3.226053236698175e-014 1.132466397375109e-007 0.9999999999999937 -3.226053236698175e-014 -1.132466397375109e-007 0.9999999999995898 -2.228600270075891e-012 -9.059735365126267e-007 -2.898031124377796e-017 -0.3826897469708954 0.9238769168906387 -2.898017534171995e-017 -0.7071021262401992 0.7071114361022521 2.898017534171995e-017 0.7071021262401992 -0.7071114361022521 2.898031124377796e-017 0.3826897469708954 -0.9238769168906387 -0.9999999999992995 -1.093607939434975e-006 4.529875441586822e-007 0.9999999999992995 1.093607939434975e-006 -4.529875441586822e-007 6.557847939278634e-018 0.7071028024874713 0.7071107598632367 2.897940419550977e-017 0.7071028024874714 0.7071107598632367 -2.897940419550977e-017 -0.7071028024874714 -0.7071107598632367 -6.557847939278634e-018 -0.7071028024874713 -0.7071107598632367 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 0 -2.264975746200799e-007 0.9999999999999745 -2.898028982454418e-017 -0.3826896111443652 0.9238769731529056 2.898028982454418e-017 0.3826896111443652 -0.9238769731529056 -0 2.264975746200799e-007 -0.9999999999999745 -2.144780083289451e-017 0.3826859622291119 0.9238784846032399 5.725712895478056e-018 0.3826858264052466 0.9238785408637508 -5.725712895478056e-018 -0.3826858264052466 -0.9238785408637508 2.144780083289451e-017 -0.3826859622291119 -0.9238784846032399 1 0 0 -1 -0 -0 4.751911402923225e-018 -2.264972398285469e-007 0.9999999999999744 -4.751911402923225e-018 2.264972398285469e-007 -0.9999999999999744</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"134\" source=\"#ID1861\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1859\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1857\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1858\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"128\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1859\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 16 7 6 11 10 17 6 8 18 19 9 11 20 21 22 23 24 25 26 0 12 13 5 27 20 28 21 24 29 25 1 30 14 15 31 4 32 16 6 11 17 33 6 18 34 35 19 11 22 21 36 37 24 23 38 26 12 13 27 39 28 40 21 24 41 29 14 30 42 43 31 15 44 32 6 11 33 45 42 30 46 47 31 43 6 34 48 49 35 11 50 26 38 39 27 51 36 21 52 53 24 37 40 54 21 24 55 41 56 44 6 11 45 57 58 46 59 60 47 61 58 42 46 47 43 61 6 48 62 63 49 11 64 50 65 66 51 67 50 38 65 66 39 51 52 21 68 69 24 53 54 70 21 24 71 55 72 56 6 11 57 73 74 59 75 76 60 77 74 58 59 60 61 77 78 6 62 63 11 79 80 64 81 82 67 83 64 65 81 82 66 67 21 84 68 69 85 24 70 86 21 24 87 71 88 72 6 11 73 89 90 75 91 92 76 93 90 74 75 76 77 93 94 6 78 79 11 95 96 80 97 98 83 99 80 81 97 98 82 83 21 100 84 85 101 24 86 102 21 24 103 87 104 88 105 106 89 107 91 108 109 110 111 92 109 90 91 92 93 110 112 6 94 95 11 113 114 96 115 116 99 117 96 97 115 116 98 99 21 118 100 101 119 24 102 120 21 24 121 103 104 105 112 113 106 107 108 122 123 124 125 111 109 108 123 124 111 110 126 114 127 128 117 129 127 114 115 116 117 128 21 130 118 119 131 24 21 120 130 131 121 24 122 126 132 133 129 125 123 122 132 133 125 124 132 126 127 128 129 133</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1862\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1863\">\r\n\t\t\t\t\t<float_array count=\"954\" id=\"ID1867\">0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4049413502216339 0.5701420903205872 -0.4031210839748383 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4049413502216339 0.5701420903205872 -0.4031210839748383 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4317043721675873 1.190332651138306 -0.07991550862789154 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4317043721675873 1.190332651138306 -0.07991550862789154 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4085270166397095 0.5722740888595581 -0.4163314998149872 0.4085270166397095 0.5722740888595581 -0.4163314998149872 0.4085270166397095 0.568010151386261 -0.3899107277393341 0.4085270166397095 0.568010151386261 -0.3899107277393341 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4183229506015778 0.5738347768783569 -0.4260024130344391 0.4183229506015778 0.5738347768783569 -0.4260024130344391 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4183229506015778 0.5664496421813965 -0.3802396655082703 0.4183229506015778 0.5664496421813965 -0.3802396655082703 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4317043721675873 0.5658783912658691 -0.3766999244689941 0.445085734128952 1.182167768478394 -0.05822398141026497 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 0.5658783912658691 -0.3766999244689941 0.445085734128952 1.198497414588928 -0.1016071438789368 0.445085734128952 1.198497414588928 -0.1016071438789368 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 0.5744060277938843 -0.42954221367836 0.4317043721675873 0.5744060277938843 -0.42954221367836 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.445085734128952 0.5664496421813965 -0.3802396655082703 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.445085734128952 0.5664496421813965 -0.3802396655082703 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.445085734128952 1.198497414588928 -0.1016071438789368 0.445085734128952 0.5738347768783569 -0.4260024130344391 0.445085734128952 0.5738347768783569 -0.4260024130344391 0.445085734128952 1.198497414588928 -0.1016071438789368 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4548816978931427 0.568010151386261 -0.3899107277393341 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4548816978931427 0.568010151386261 -0.3899107277393341 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4548816978931427 0.5722740888595581 -0.4163314998149872 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 0.5722740888595581 -0.4163314998149872 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.4584673047065735 0.5701420903205872 -0.4031210839748383 0.4584673047065735 0.5701420903205872 -0.4031210839748383 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4317043721675873 -2.021480560302734 -0.340120404958725 0.4317043721675873 -2.021480560302734 -0.340120404958725 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.445085734128952 -2.021480560302734 -0.3169430494308472</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"318\" source=\"#ID1867\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1864\">\r\n\t\t\t\t\t<float_array count=\"954\" id=\"ID1868\">-0.8556685834497534 -0.239464828911311 0.4587895716028961 -0.9991689723260824 0.01267121750300655 -0.03874022441638811 -0.9998015493569296 -0.009297490012715751 0.01761869980862258 0.9998015493569296 0.009297490012715751 -0.01761869980862258 0.9991689723260824 -0.01267121750300655 0.03874022441638811 0.8556685834497534 0.239464828911311 -0.4587895716028961 2.067409586496516e-017 0.935896621035304 0.3522747716409744 5.921428077004473e-013 0.9358968013032771 0.3522742927184643 -1.587002344317823e-006 0.9358946522337397 0.3522800021542084 1.587002344317823e-006 -0.9358946522337397 -0.3522800021542084 -5.921428077004473e-013 -0.9358968013032771 -0.3522742927184643 -2.067409586496516e-017 -0.935896621035304 -0.3522747716409744 -0.8480525375658584 0.1265398159716716 -0.514581935654531 0.8480525375658584 -0.1265398159716716 0.514581935654531 -0.8829612559730874 -0.1097985247969643 0.4564249165008834 0.8829612559730874 0.1097985247969643 -0.4564249165008834 -1.682874098589758e-006 0.9358953173048604 0.3522782352686621 1.682874098589758e-006 -0.9358953173048604 -0.3522782352686621 -2.838051631940314e-006 0.9358978264604545 0.352271569131746 2.838051631940314e-006 -0.9358978264604545 -0.352271569131746 -0.8666306184148966 -0.00442290063085205 -0.4989306656999783 0.8666306184148966 0.00442290063085205 0.4989306656999783 -0.8730063918053552 0.2248510712722504 -0.4327838208791034 0.8730063918053552 -0.2248510712722504 0.4327838208791034 -0.9999988486572118 5.052889436661559e-005 0.001516618304645341 0.9999988486572118 -5.052889436661559e-005 -0.001516618304645341 -0.4886371618025431 -0.4041532626989209 0.7732359693879821 0.4886371618025431 0.4041532626989209 -0.7732359693879821 -1.917342724171167e-007 0.9358950140260669 0.3522790409903935 1.917342724171167e-007 -0.9358950140260669 -0.3522790409903935 5.980649598987417e-006 0.9358984655541968 0.3522698711748308 -5.980649598987417e-006 -0.9358984655541968 -0.3522698711748308 -0.5005661618020015 -0.007509959021396832 -0.8656657080965546 0.5005661618020015 0.007509959021396832 0.8656657080965546 -0.4827533759849262 0.2035025572784121 -0.8517839439413629 0.4827533759849262 -0.2035025572784121 0.8517839439413629 -0.8653247216990916 0.004756257951794971 0.5011890900914403 0.8653247216990916 -0.004756257951794971 -0.5011890900914403 -0.5171218611954367 -0.202882400749179 0.8315189186903789 0.5171218611954367 0.202882400749179 -0.8315189186903789 1.68287208713074e-006 0.9358953173029266 0.3522782352737994 1.917351264601493e-007 0.9358950140260669 0.3522790409903935 -1.917351264601493e-007 -0.9358950140260669 -0.3522790409903935 -1.68287208713074e-006 -0.9358953173029266 -0.3522782352737994 6.836166544110813e-005 -0.4635403853521201 0.8860757904797371 -6.836166544110813e-005 0.4635403853521201 -0.8860757904797371 -3.177932804283919e-011 0.9359008363333675 0.3522635725568331 3.177932804283919e-011 -0.9359008363333675 -0.3522635725568331 -0.5059370200118128 0.3974419379304228 -0.7655505455263398 0.5059370200118128 -0.3974419379304228 0.7655505455263398 -0.09003842888364019 0.9737652901199937 -0.2089838297134265 -0.09509752941100279 0.9689853039308536 -0.2280875723619209 -0.1403416273619077 0.9842110206774678 -0.1078558964842833 0.1403416273619077 -0.9842110206774678 0.1078558964842833 0.09509752941100279 -0.9689853039308536 0.2280875723619209 0.09003842888364019 -0.9737652901199937 0.2089838297134265 -0.126852229460708 0.9869510620438351 -0.09917717989232054 -0.1395093049752446 0.9902123892279267 -0.004071614525624451 0.1395093049752446 -0.9902123892279267 0.004071614525624451 0.126852229460708 -0.9869510620438351 0.09917717989232054 -0.1371433043003548 0.9905509185681858 -0.0007692914296476124 -0.1287262632701252 0.9876956149108226 0.08880834099589038 0.1287262632701252 -0.9876956149108226 -0.08880834099589038 0.1371433043003548 -0.9905509185681858 0.0007692914296476124 1.587004143046497e-006 0.935894652233592 0.3522800021546005 -1.587004143046497e-006 -0.935894652233592 -0.3522800021546005 2.786697723764069e-005 -0.2371628431086368 0.9714699095041799 0.4886794166797998 -0.4044362861970698 0.7730612641444482 -0.4886794166797998 0.4044362861970698 -0.7730612641444482 -2.786697723764069e-005 0.2371628431086368 -0.9714699095041799 -5.980705087972674e-006 0.935898465560064 0.3522698711592422 5.980705087972674e-006 -0.935898465560064 -0.3522698711592422 -6.919749986476737e-005 0.4607735675319257 -0.8875177264007791 -2.030936765399969e-005 0.2302497252968681 -0.9731315756814423 2.030936765399969e-005 -0.2302497252968681 0.9731315756814423 6.919749986476737e-005 -0.4607735675319257 0.8875177264007791 -0.002416077874502486 0.9596332719212614 -0.2812439261377904 0.002416077874502486 -0.9596332719212614 0.2812439261377904 2.100185833579053e-005 -0.008554339815961683 -0.9999634107452307 -2.100185833579053e-005 0.008554339815961683 0.9999634107452307 -0.1312303575950728 0.9861239462733067 0.1016767221729236 0.1312303575950728 -0.9861239462733067 -0.1016767221729236 -0.4992870124823224 0.008307555237405912 0.8663968280715567 0.4992870124823224 -0.008307555237405912 -0.8663968280715567 -5.168604428006794e-018 0.9358966210353041 0.3522747716409743 5.168604428006794e-018 -0.9358966210353041 -0.3522747716409743 0.5171535886277142 -0.2026337189272053 0.8315598245004428 0.8556154675465553 -0.2398097110614041 0.4587084849615663 -0.8556154675465553 0.2398097110614041 -0.4587084849615663 -0.5171535886277142 0.2026337189272053 -0.8315598245004428 2.838054848582697e-006 0.9358978264607185 0.3522715691310447 -2.838054848582697e-006 -0.9358978264607185 -0.3522715691310447 0.5058589369169176 0.3977581476772782 -0.7654379085841166 0.4827393731108922 0.2033075991014512 -0.8518384340918802 -0.4827393731108922 -0.2033075991014512 0.8518384340918802 -0.5058589369169176 -0.3977581476772782 0.7654379085841166 -1.881051239773034e-006 -7.640001222029348e-019 -0.9999999999982308 -0.3319732451570799 0 -0.9432888022763108 -1.881051239737275e-006 8.774096407935407e-019 -0.9999999999982309 1.881051239737275e-006 -8.774096407935407e-019 0.9999999999982309 0.3319732451570799 -0 0.9432888022763108 1.881051239773034e-006 7.640001222029348e-019 0.9999999999982308 -0.01115576265166628 0.9608317846152155 -0.2769076211172235 0.01115576265166628 -0.9608317846152155 0.2769076211172235 -0.7377515990043749 -1.25323332689929e-018 -0.6750722762538011 -0.33197324515708 0 -0.9432888022763108 0.33197324515708 -0 0.9432888022763108 0.7377515990043749 1.25323332689929e-018 0.6750722762538011 -0.9999999999997967 -2.527537940891982e-018 6.374458576434603e-007 -0.7377515990043749 1.151169250985365e-018 -0.6750722762538011 0.7377515990043749 -1.151169250985365e-018 0.6750722762538011 0.9999999999997967 2.527537940891982e-018 -6.374458576434603e-007 -0.7377531673073663 2.340989451153134e-019 0.6750705623325232 -0.9999999999997968 -8.014181208772256e-024 6.374458577993136e-007 0.9999999999997968 8.014181208772256e-024 -6.374458577993136e-007 0.7377531673073663 -2.340989451153134e-019 -0.6750705623325232 -0.08760462976196862 0.9740271832325209 0.208797689566694 0.08760462976196862 -0.9740271832325209 -0.208797689566694 0.8829571124029861 -0.1095877801416802 0.4564835770327334 0.9997987427153047 -0.009377883076055511 0.01773497600528058 -0.9997987427153047 0.009377883076055511 -0.01773497600528058 -0.8829571124029861 0.1095877801416802 -0.4564835770327334 -2.237914300538736e-005 0.009583330192389836 0.9999540785864107 2.237914300538736e-005 -0.009583330192389836 -0.9999540785864107 0.8480717938194996 0.1262944581961821 -0.5146104763378888 0.873024571469934 0.2251232287911784 -0.4326056281052904 -0.873024571469934 -0.2251232287911784 0.4326056281052904 -0.8480717938194996 -0.1262944581961821 0.5146104763378888 0.5005854389560404 -0.007401400196843076 -0.8656554958990987 -0.5005854389560404 0.007401400196843076 0.8656554958990987 0.3319731982955007 -6.745699210829516e-019 -0.9432888187683854 -0.3319731982955007 6.745699210829516e-019 0.9432888187683854 0.09263129721724944 0.9711531077667437 -0.2197295702695592 -0.09263129721724944 -0.9711531077667437 0.2197295702695592 -0.7377531673073663 -1.172867571393463e-018 0.6750705623325233 0.7377531673073663 1.172867571393463e-018 -0.6750705623325233 -0.09263146804003425 0.9711531171285674 0.2197294568787146 0.09263146804003425 -0.9711531171285674 -0.2197294568787146 0.9991711718222368 0.01261032889182782 -0.03870334616823358 -0.9991711718222368 -0.01261032889182782 0.03870334616823358 0.4992676227779674 0.008197452986455137 0.8664090503971966 -0.4992676227779674 -0.008197452986455137 -0.8664090503971966 0.01115519159442941 0.9608316972177918 0.2769079473797549 -0.01115519159442941 -0.9608316972177918 -0.2769079473797549 0.86662126022728 -0.004314606107473825 -0.4989478685155576 -0.86662126022728 0.004314606107473825 0.4989478685155576 0.08760487199195768 0.9740272570283463 -0.2087972436817805 -0.08760487199195768 -0.9740272570283463 0.2087972436817805 0.09003726007103659 -0.9737660595087934 -0.2089807482703076 0.00241508734230594 -0.9596341737255689 -0.281240857577937 0.09509584820952806 -0.9689861245568474 -0.2280847870192401 -0.09509584820952806 0.9689861245568474 0.2280847870192401 -0.00241508734230594 0.9596341737255689 0.281240857577937 -0.09003726007103659 0.9737660595087934 0.2089807482703076 0.3319731982955007 -2.324859276687647e-018 -0.9432888187683854 -0.3319731982955007 2.324859276687647e-018 0.9432888187683854 -0.09263044473430689 -0.9711535481634911 -0.2197279831923698 0.01115459616213048 -0.9608326541598842 -0.2769046508900355 -0.01115459616213048 0.9608326541598842 0.2769046508900355 0.09263044473430689 0.9711535481634911 0.2197279831923698 -0.1312286864881223 -0.9861242709384043 -0.1016757301857369 -0.08760434262081819 -0.974027721213559 -0.208795300381727 0.08760434262081819 0.974027721213559 0.208795300381727 0.1312286864881223 0.9861242709384043 0.1016757301857369 -0.1287246115928297 -0.9876958999286996 -0.088807565186258 -0.1371417064276759 -0.9905511396965514 0.0007694179413118097 0.1371417064276759 0.9905511396965514 -0.0007694179413118097 0.1287246115928297 0.9876958999286996 0.088807565186258 -0.1395077150076342 -0.9902126133369116 0.004071589595286874 -0.1268509467525985 -0.9869513608391595 0.09917584708839622 0.1268509467525985 0.9869513608391595 -0.09917584708839622 0.1395077150076342 0.9902126133369116 -0.004071589595286874 -0.331973819900527 1.364743535802257e-018 0.9432886000056675 0.331973819900527 -1.364743535802257e-018 -0.9432886000056675 0.8653372986924505 0.004645889019576963 0.5011684100248843 -0.8653372986924505 -0.004645889019576963 -0.5011684100248843 0.09509666920911056 0.968985414375468 0.2280874618056319 0.002415579229262457 0.9596332152764271 0.2812441236989915 -0.002415579229262457 -0.9596332152764271 -0.2812441236989915 -0.09509666920911056 -0.968985414375468 -0.2280874618056319 0.9999989165626203 4.94714478615198e-005 0.001471198885774526 -0.9999989165626203 -4.94714478615198e-005 -0.001471198885774526 0.1312301110781591 0.9861239705929389 -0.1016768044759023 0.1287260017345746 0.9876956692818676 -0.08880811539084656 -0.1287260017345746 -0.9876956692818676 0.08880811539084656 -0.1312301110781591 -0.9861239705929389 0.1016768044759023 0.1403399956962591 -0.9842114735813607 -0.1078538867115155 -0.1403399956962591 0.9842114735813607 0.1078538867115155 0.7377521402481055 -1.487338798067641e-018 -0.6750716847560261 -0.7377521402481055 1.487338798067641e-018 0.6750716847560261 -0.1403401479142629 -0.9842114215621126 0.1078541633414679 0.1403401479142629 0.9842114215621126 -0.1078541633414679 -0.3319738199005269 0 0.9432886000056675 0.3319738199005269 -0 -0.9432886000056675 0.1403416649897658 0.9842111004808136 0.1078551192954987 0.090038403757831 0.9737654687449453 0.2089830082295663 -0.090038403757831 -0.9737654687449453 -0.2089830082295663 -0.1403416649897658 -0.9842111004808136 -0.1078551192954987 -1.787972108189189e-017 -8.774093855961984e-019 1 1.787972108189189e-017 8.774093855961984e-019 -1 0.1395091761623891 0.9902124067922382 0.004071756526886208 0.1371430596439661 0.9905509523182452 0.0007694497444450702 -0.1371430596439661 -0.9905509523182452 -0.0007694497444450702 -0.1395091761623891 -0.9902124067922382 -0.004071756526886208 0.7377521402481055 -2.851397952395639e-019 -0.6750716847560262 -0.7377521402481055 2.851397952395639e-019 0.6750716847560262 0.4964416914178915 -0.03905842806366463 -0.8671909168224369 0.8690189797524137 -0.02226235366205126 -0.4942776552095997 0.8625898747785986 -0.02276290866836874 -0.5053914897566019 -0.8625898747785986 0.02276290866836874 0.5053914897566019 -0.8690189797524137 0.02226235366205126 0.4942776552095997 -0.4964416914178915 0.03905842806366463 0.8671909168224369 0.1268506497066003 -0.9869513978373604 -0.09917585883618071 -0.1268506497066003 0.9869513978373604 0.09917585883618071 -1.52281652602719e-006 -0.04499460000659483 -0.9989872301325615 0.5028583418923243 -0.0388919326887635 -0.8634934311047393 -0.5028583418923243 0.0388919326887635 0.8634934311047393 1.52281652602719e-006 0.04499460000659483 0.9989872301325615 -0.4964423698710854 -0.03905845126508915 -0.867190527382278 -1.545680386762055e-006 -0.04499460000420967 -0.9989872301326338 1.545680386762055e-006 0.04499460000420967 0.9989872301326338 0.4964423698710854 0.03905845126508915 0.867190527382278 -0.8625884526310785 -0.02276303227608779 -0.5053939114681928 -0.50285897280859 -0.03889187568526324 -0.8634930662556427 0.50285897280859 0.03889187568526324 0.8634930662556427 0.8625884526310785 0.02276303227608779 0.5053939114681928 -0.999972444272022 -0.0003340209379775213 -0.007416139605689701 -0.8690175476164547 -0.0222624533144969 -0.4942801686362734 0.8690175476164547 0.0222624533144969 0.4942801686362734 0.999972444272022 0.0003340209379775213 0.007416139605689701 -0.869018890990955 0.02226238096317084 0.4942778100367258 -0.9999724485762634 0.0003340077636549147 0.007415559803963278 0.9999724485762634 -0.0003340077636549147 -0.007415559803963278 0.869018890990955 -0.02226238096317084 -0.4942778100367258 -0.09003745435493794 -0.9737660522810231 0.2089806982434363 0.09003745435493794 0.9737660522810231 -0.2089806982434363 0.1268522136644417 0.9869510788455127 0.0991770328962782 -0.1268522136644417 -0.9869510788455127 -0.0991770328962782 3.575944216378378e-017 -5.670473461277961e-020 1 0.3319736856030877 -2.267846863054493e-018 0.9432886472692769 -0.3319736856030877 2.267846863054493e-018 -0.9432886472692769 -3.575944216378378e-017 5.670473461277961e-020 -1 0.9999999999997968 5.364539505124322e-020 6.374480754040954e-007 0.9999999999997968 1.317410307255766e-018 6.374480752092781e-007 -0.9999999999997968 -1.317410307255766e-018 -6.374480752092781e-007 -0.9999999999997968 -5.364539505124322e-020 -6.374480754040954e-007 0.9999724494907532 0.0003339955886191514 0.007415437034315195 -0.9999724494907532 -0.0003339955886191514 -0.007415437034315195 0.1395075400449987 -0.9902126375751152 -0.004071689713896718 -0.1395075400449987 0.9902126375751152 0.004071689713896718 -0.8625884776429428 0.02276303416273365 0.5053938686938501 0.8625884776429428 -0.02276303416273365 -0.5053938686938501 -0.09509564702997102 -0.9689861231902501 0.2280848767031266 0.09509564702997102 0.9689861231902501 -0.2280848767031266 0.3319736856030877 2.651523838246855e-018 0.9432886472692769 0.7377523761315967 -1.246220707811482e-018 0.675071426970645 -0.7377523761315967 1.246220707811482e-018 -0.675071426970645 -0.3319736856030877 -2.651523838246855e-018 -0.9432886472692769 -0.002415539982883647 -0.9596341030532715 0.2812410948345463 0.002415539982883647 0.9596341030532715 -0.2812410948345463 0.7377523761315968 2.974672679722514e-018 0.6750714269706449 -0.7377523761315968 -2.974672679722514e-018 -0.6750714269706449 0.1371414842093252 -0.9905511705498352 -0.0007693056707454696 -0.1371414842093252 0.9905511705498352 0.0007693056707454696 0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0.9999724450707984 -0.0003340101651128226 -0.007416032385219119 -0.9999724450707984 0.0003340101651128226 0.007416032385219119 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 -0.5028607391297926 0.03889185254060898 0.8634920386707676 0.5028607391297926 -0.03889185254060898 -0.8634920386707676 0.0926303973702594 -0.9711537878116366 0.2197269439603129 -0.0111548222395139 -0.9608325919480819 0.2769048576517494 0.0111548222395139 0.9608325919480819 -0.2769048576517494 -0.0926303973702594 0.9711537878116366 -0.2197269439603129 0.1287245943318308 -0.9876959332292812 0.08880721984413723 0.1312287128889473 -0.9861242716440033 0.1016756892678608 -0.1312287128889473 0.9861242716440033 -0.1016756892678608 -0.1287245943318308 0.9876959332292812 -0.08880721984413723 0 -1 0 -0 1 -0 0.8625890965858487 0.02276300383816705 0.505392813668213 -0.8625890965858487 -0.02276300383816705 -0.505392813668213 0 -1 0 -0 1 -0 -0.4964399158161878 0.03905848206527661 0.8671919308683476 0.4964399158161878 -0.03905848206527661 -0.8671919308683476 0.08760369597439988 -0.9740277899170934 0.2087952511932388 -0.08760369597439988 0.9740277899170934 -0.2087952511932388 5.530634213415967e-007 0.04499456454482068 0.9989872317307745 -5.530634213415967e-007 -0.04499456454482068 -0.9989872317307745 0.8690195690259515 0.02226231191655951 0.4942766210514911 -0.8690195690259515 -0.02226231191655951 -0.4942766210514911 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 5.449766517714774e-007 0.04499456454602577 0.9989872317307246 0.5028605664170018 0.0388918425240569 0.8634921397024157 -0.5028605664170018 -0.0388918425240569 -0.8634921397024157 -5.449766517714774e-007 -0.04499456454602577 -0.9989872317307246 0.496439775365582 0.03905849917252066 0.8671920105013425 -0.496439775365582 -0.03905849917252066 -0.8671920105013425</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"318\" source=\"#ID1868\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1866\">\r\n\t\t\t\t\t<float_array count=\"932\" id=\"ID1869\">-11.25932805518937 0.4879479208894881 -5.156333825802362 -2.226597808822293 -11.31054402336369 0.3866887779356041 -4.049413502216338 -3.887123517758756 -4.317043721675872 -3.887123517758756 -4.085270166397094 -3.781856993454377 -6.177416765474117 -3.699072506932177 -6.203196720386824 -3.806149211170691 -12.3271952343616 -1.079337578188712 -5.102641539361006 -2.069736751696081 -5.128428871588065 -2.176811828073098 -11.22662195928344 0.5444030103276085 -4.085310375791861 -3.781806192112567 -4.317084090941696 -3.887072498583008 -4.183269598376145 -3.704744458619817 -4.049413502216339 -3.886981074854326 -4.085270166397095 -3.992246938446414 -4.317043721675873 -3.886981074854326 -5.691727905781828 -3.898548109315947 1.213232401357073 -3.956600576821714 -5.712962145088035 -4.006240615044608 -12.31249712833532 -1.074900243098617 -6.183715396076771 -3.795053293626222 -12.36370455952466 -1.176161371079548 -5.690152164672538 -2.119796852854564 1.19349024601802 -2.176455698956791 -5.711383122707162 -2.227489233440087 -8.946129821920774 3.992730203131711 -3.421382997099307 0.6360191868382803 -9.018805069777802 3.899948727227846 -4.183231927890725 -3.704762860955324 -4.317046160277991 -3.887091019087 -4.317046140963053 -3.67655585860222 -4.085342644956503 -3.992324055119378 -4.183302193873223 -4.069386657642355 -4.317115914344315 -3.887057801982695 1.239341430844225 -4.548491456372043 1.240202612821271 -4.657470718763132 -5.686605238373446 -4.616233736127349 1.213307491042461 -3.839496262162217 1.213394600898758 -3.948476423527015 -5.691566469847769 -3.890480190500433 -6.932807065752982 -3.100785743552962 -6.989664092101249 -3.200166193023483 -12.53403592490533 0.2276052443095399 1.193242306620966 -2.081487505141862 1.193332072744563 -2.190467665172695 -5.690311070112399 -2.133863893882101 -3.253442528050039 0.8671135758711629 -3.310462406844037 0.7677901596581189 -8.785764873295038 4.174268162888379 -4.317041283062712 -3.887091509280536 -4.450854919403604 -3.70476335114886 -4.317041302377735 -3.676556348795756 0.8086484589963355 3.167786974002858 -2.256126201329711 8.073424631186649 -2.133779487386396 8.124547093341629 -4.183003643697426 -4.069300554675565 -4.316817621357123 -4.097506379542639 -4.316819398015708 -3.886972622755279 -12.55968530201353 0.09185059392995383 -6.966178530172553 -3.286159003938216 -12.63222926681517 -0.0009953749343425782 -3.454986706984768 -3.788184490826589 -3.954554745392738 -3.480431070579061 -3.857710392536873 -3.40250224046097 -5.701675118576261 -4.724124724152334 -5.686922497683787 -4.615762644769067 1.239882489387081 -4.657296288159409 -3.015430911568257 -3.45549861995946 -3.866061732078935 -3.279657853897043 -3.830588484267588 -3.174311014602082 -2.869703246413577 -3.070216614262001 -3.848985722099194 -3.070216614262001 -3.88451166256943 -2.964880763915582 1.164702397532125 0.1770946387850281 -5.718563410058719 0.1050305212584034 -5.70388740067092 0.213399701844485 -4.317003352372439 -3.88708061339941 -4.548776769499002 -3.781814306928624 -4.450817248891459 -3.704752573435621 6.560394906950577 0.3286585774584608 9.620672185692577 5.229913621577116 9.74302937016806 5.178807635345643 1.065295834394154 3.235331682227785 0.9452107955214961 3.180992217859886 -1.891195156386079 8.175852241738964 -4.317269821468539 -4.09746128944816 -4.451083203080727 -4.069255464581087 -4.31726804480204 -3.8869275326608 -9.738500023425573 5.129012709894578 -9.616306594751213 5.180360521298965 -6.611051826073217 0.1623460613082861 -9.454700111799376 5.323132414276861 -6.435619234164136 0.321223851333408 -6.555527445260597 0.2666430333145937 -3.63515919421932 -3.793903989688869 -4.253489030695904 -3.872230866086532 -4.125696002155108 -3.477287832190934 -3.0825751920921 -3.587025621783866 -3.533045564090324 -3.79624728320938 -3.932232694741615 -3.408296458879248 -5.60134158197208 -4.184464320313635 1.336914105341033 -4.00328014102398 1.341202412833731 -4.112208839164714 -2.869703246413577 -3.201819735854989 -3.034018435132346 -3.483348470546936 -3.848985722099194 -3.201819735854989 -2.863179646514935 -3.026580096309139 -3.877962833675873 -2.921093940708686 -3.027409744579753 -2.74502157313123 1.163488109067834 0.2544732377842759 1.164423167756218 0.1454940206030179 -5.704168854698622 0.1815377279855652 -4.317043721675873 -3.887123517758756 -4.584673047065735 -3.887123517758756 -4.548816978931427 -3.781856993454378 7.015589282693689 -3.135250642444145 12.59462165360195 0.1229826177130727 12.66733284910373 0.03021837817334129 6.626458302856106 0.3769634224572723 6.506386650646912 0.4313202821127311 9.587445864106229 5.321890509821727 1.051594831123396 2.461417897561974 -5.811893690170207 2.259574663057269 -5.811018120800472 2.368553090480205 -4.450784653294967 -4.069401169118899 -4.548744500234847 -3.992338566596373 -4.316971528870174 -3.887072313460307 2.137071460503123 8.09309811398556 2.259275193355469 8.041766441740156 -0.9858725881521666 3.130809355669199 2.021936242369472 8.097526591115551 -1.001649242573136 3.091217127777414 -1.121544259135674 3.145814976261 -5.601937532846225 -4.285877158378675 -5.600540831480743 -4.176901973356207 1.341986773373886 -4.103678421953079 1.336172223091126 -3.919127434132936 1.336172223091126 -3.426441934360624 7.48434841632843 -3.919127434132936 -4.197406435494571 -3.906323168964242 -4.207936052303553 -3.539831343929594 -4.074543774712506 -3.510413099263281 1.336172223091126 -4.323366513692371 1.336172223091126 -3.911842736837371 7.48434841632843 -4.323366513692371 1.336172223091125 -3.851737772472658 7.484348416328429 -4.161523032657492 1.336172223091125 -4.161523032657492 1.336172223091126 -1.501688990757509 7.48434841632843 -1.811473400382779 1.336172223091126 -1.811473400382779 -3.904849011048787 -2.829543218396435 -4.002054740016886 -2.751892858936738 -3.054622934974881 -2.652496146602985 -4.317043721675873 -3.886981074854326 -4.548816978931427 -3.992246938446414 -4.584673047065735 -3.886981074854326 6.200269010085168 -3.676611865574002 12.32869786298523 -1.068931443338561 12.37991994486331 -1.170188541916581 7.099454365084103 -3.157335906409499 7.042478665492553 -3.0579966201888 12.65024069585977 0.1555142783734717 -1.359823511635173 -3.991770761742349 5.497885797001669 -4.195025570283538 5.498723478042611 -4.304003729090315 1.047798218522696 2.556907610501718 1.052599619174476 2.447992343471312 -5.810040288314465 2.356368562112011 3.272678277624529 0.6929156207975984 8.920339665811422 3.972390455149541 8.992918972889115 3.879561386303931 3.219001459711274 0.7306060224236908 3.162187818934207 0.8300020072767896 8.838692483510227 4.064684875963754 5.879996342784142 2.385105372291689 5.881356040750983 2.276130350597654 -1.05815630851208 2.568714925286193 5.878332357443201 2.264896201096839 -1.065693258161062 2.444689632603452 -1.061441379121859 2.553618639921662 -1.336172223091126 2.793267631778692 -7.48434841632843 2.793267631778692 -7.48434841632843 3.285952844951019 7.48434841632843 -3.426441934360624 7.48434841632843 -3.919127434132937 -4.373805526414469 -3.786082117950414 -4.992093348699553 -3.707552063028582 -4.367716810338519 -3.419527989936349 1.336172223091126 -3.911842736837372 7.48434841632843 -3.911842736837372 7.48434841632843 -4.323366513692371 7.484348416328429 -3.851737772472658 7.48434841632843 -1.50168899075751 7.48434841632843 -1.811473400382779 1.336172223091126 -1.50168899075751 -3.071376953586833 -2.528029870351948 -4.01861156644576 -2.628582916074811 -3.521514195545894 -2.318362213566327 5.090084218558638 -2.130050174670152 11.24429520147112 0.4832352675482442 11.29550869958536 0.3819761689427624 6.246664052589845 -3.799673615981539 6.22088480913609 -3.692597457778136 12.39644358099423 -1.179940226426094 -1.246517528801427 -4.550546713363268 5.621130304306502 -4.624012347117448 5.635786058304162 -4.732383390786898 -1.361171579666276 -4.108489238448604 -1.356407496565788 -3.999573410498429 5.502444219199675 -4.307636108092342 -4.090766564433891 -2.557312620769638 -4.224265238009214 -2.528195260713025 -3.597677451377235 -2.243158152309802 5.087383672399941 -2.18337100296408 5.061611741987281 -2.07629322683374 11.26295794793213 0.4419579085109923 5.763077703654339 0.2202165617892674 5.77781040199036 0.1118526383413461 -1.162861216860616 0.2884473437345334 -1.165190709042337 0.1448846668801672 -1.164349115898163 0.2538645213187106 5.77637430400276 0.07853427013600932 -4.389463072911469 -3.404813019702051 -5.016050916463099 -3.689849823559386 -4.522961146031338 -3.375695424019953 4.598967770056982 -1.79833966492206 3.980637888849862 -1.876664520023774 4.108430616914907 -1.481722326957809 -1.336172223091126 3.285952844951019 4.655911190883181 -1.902843944830234 4.037623385678563 -1.8243120086256 4.661999914893328 -1.53629016742144 4.527828169528757 -2.470008229966375 4.07769082770391 -2.260343465780514 5.024925214163027 -2.159788998055654 5.105821210832828 -2.86663478637923 4.255268363443153 -3.042708082620281 4.091038227155185 -2.761148637412749 5.044209145774468 -3.461507701973369 4.064926882103503 -3.461507701973369 4.229242106396518 -3.179979916059498 7.48434841632843 0.7910374011194875 1.336172223091126 0.7910374011194875 1.336172223091126 1.20256258411519 -1.215021998055715 -3.849100321047893 5.668530750543769 -3.901527771948362 5.689759008936475 -4.009220359061231 -1.245917132711283 -4.65707195273612 -1.245001968579687 -4.548092465262331 5.637357416913735 -4.728617467005762 -4.398925360414483 -2.600159325581975 -4.532317060479 -2.629576838601912 -4.409454769913681 -2.233667721657282 -3.632900943290331 -2.189733141137928 -4.25727745510186 -2.477757474604675 -4.25118877281414 -2.11120357100095 -1.192171369996044 -2.066029100906539 5.712701999614013 -2.117062561299272 5.733933557029467 -2.224755271440215 -1.192754216500659 -2.190516302592015 -1.192669748549435 -2.081536261301629 5.73344088719767 -2.240108200678426 -4.5656090608546 -3.341432354019074 -5.513041748663499 -3.440830012428862 -4.662815089009785 -3.26378199367109 -5.056196599029924 -3.656721323771787 -5.506334157822702 -3.447054609347743 -4.55909866668642 -3.346500601184748 3.753809016424408 -2.615614101766433 3.254240738201578 -2.307859367455506 3.35108541456917 -2.229930090628913 3.709564931190559 -1.789345549227117 3.699035689224811 -1.422854068111199 3.832427392771667 -1.393436340067068 -1.336172223091126 1.559534496414023 -7.48434841632843 1.559534496414023 -7.48434841632843 1.971059413755167 4.829653773475252 -1.802847712215602 4.203066030624735 -2.087882385388729 4.696155106397431 -1.773729652384058 5.094043006545995 -2.598784550747651 4.146611422267142 -2.698182668655443 4.996837256437833 -2.521134673002487 5.044209145774468 -2.920156948337632 5.079735093936073 -3.025492797078757 4.064926882103503 -2.920156948337632 5.152507738915643 -3.227597421005711 5.117034482475075 -3.332944258502495 4.301877161004605 -3.051757596440364 7.48434841632843 1.202562584115189 7.48434841632843 0.7910374011194871 1.336172223091126 1.202562584115189 -1.214607660721589 -3.948469926420947 -1.21452055376132 -3.839489886416141 5.690266300846059 -3.999453797983608 -4.581257623197647 -2.846054034152716 -4.678102273719453 -2.923983330856098 -5.080826238882672 -2.538299221345286 -4.499882057339431 -2.607496069431633 -4.990419312283299 -2.290878423264997 -4.372089439082432 -2.21255397974204 7.48434841632843 2.472321861005408 1.336172223091126 2.472321861005408 1.336172223091126 2.965007002528828 -4.705464220787445 -3.136219238946584 -4.669938869463472 -3.241555086694751 -5.684748763393963 -3.136219238946584 -4.672057829454055 -3.248859832323046 -5.522611505920555 -3.424933140104601 -5.686842493943526 -3.143373676442608 -1.336172223091126 1.971059413755167 -7.409068430673221 0.3249145827098133 -19.98966233534827 1.064766094517656 -7.404660809672519 0.4338412765039134 4.553338623446104 -2.190003492843049 4.102867905139561 -2.39922693608906 3.703680739113433 -2.011274437576131 -6.773888439565022 3.424174211924911 -6.796069614361738 3.316599855601481 -19.19736891434987 5.126473979874669 8.227265295491549 -3.147241571366506 8.205084261732841 -3.039666615267271 20.65074956555781 -1.444958821421544 7.793145823602609 -4.361621890856246 20.38255487059625 -3.839621650024103 7.797553449196779 -4.470548086950229 7.665359653794686 -3.821278902456142 20.26263494218131 -3.468155153201388 7.665792375382231 -3.930258553720039 7.567189501579987 -2.063511180631772 20.16446478923026 -1.710387188664076 7.567622223394784 -2.17249083189511 4.880381975831446 -3.993377869666359 4.030724667132458 -3.814649776983288 4.481195069289785 -3.605425389978992 -4.675700925023747 -2.998210361679813 -4.711173582560055 -3.103557198429646 -5.52633233621239 -2.822370538361239 -4.651826560390079 -2.863763786398194 -5.501484679215371 -2.685035624024081 -5.051014038527462 -2.475811155437392 -7.48434841632843 -3.747377295356638 -1.336172223091126 -3.747377295356638 -1.336172223091126 -4.240062436880058 7.48434841632843 2.965007002528828 -4.705464220787446 -3.087597849971966 -5.684748763393964 -3.087597849971966 -5.520432682364712 -2.806070047567281 -1.336172223091126 -1.301030195544497 -7.48434841632843 -0.9912446391528237 -1.336172223091126 -0.9912446391528237 -7.48434841632843 -1.301030195544497 -20.15843905855736 -1.71041840842217 -20.1580063523185 -1.601438652025392 -7.561596457176316 -2.172521225557526 -7.409066894753678 0.3249310810472088 -19.99406823863991 0.9558584747962992 -19.98966058625407 1.064784836080833 4.23988799867491 -3.14874530170004 3.3892568309797 -2.972904543073474 3.424729497680645 -2.867557708233359 -6.796053666512249 3.316632542204058 -19.21952810808441 5.018959681046655 -19.19734655203097 5.126533865774118 8.205091549186252 -3.039640111859205 20.62857050345016 -1.337333476700804 20.65075187313587 -1.444908266987489 7.793146669529714 -4.361620302146933 20.37814796266671 -3.730692613673115 20.38255561040468 -3.839618477489444 20.26220214244573 -3.359174136038071 20.26263486329693 -3.468154013760685 7.66535957252434 -3.821277710341584 20.16403233412861 -1.601413715692121 20.16446505373437 -1.710394046331714 7.567189758926244 -2.063517880278766 5.281576370006603 -3.714577262213224 5.184731992727119 -3.792506537220064 4.782008663444936 -3.406822535088784 -7.48434841632843 -4.680337721352934 -1.336172223091126 -4.680337721352934 -1.336172223091126 -5.091863107409017 -7.48434841632843 -4.240062436880058 4.517147758492656 -4.436747328136954 4.02661122550878 -4.120129960750964 4.644941112825926 -4.041805586192385 -1.336172223091126 -4.67196897260322 -7.48434841632843 -4.362184266770298 -1.336172223091126 -4.362184266770298 -7.48434841632843 -4.671968972603219 -7.48434841632843 -4.362184266770297 -1.336172223091126 -4.671968972603219 4.489529502429271 -2.712320343277041 4.32521338582573 -2.993849068761489 3.510245171836957 -2.712320343277041 4.584673047065735 -2.67561385234197 4.548816978931427 -2.780880566438039 4.317043721675873 -2.67561385234197 -7.561596303053825 -2.172518746637224 -20.15800619195587 -1.601436087927794 -7.561163595624159 -2.063539216700533 4.45085734128952 -2.857942148049673 4.317043721675873 -2.886148687203725 4.183229506015778 -2.8579416791598 4.085270166397095 -2.780880566438039 4.049413502216339 -2.67561385234197 4.085270166397095 -2.570346669356028 7.421110337296863 0.4342469318247725 20.01051949040724 0.9562455888556181 7.425517940747502 0.3253204034521427 -7.48434841632843 -5.091863107409017 4.587381043742893 -4.250297109005382 3.963004660012281 -4.538321168202035 3.969093198871385 -4.171767613647894 4.907821426619737 -4.411092705981898 4.774429118744769 -4.440510191280975 4.897292311241881 -4.04460144741143 4.45898714546114 -3.530783843134048 3.444202684978536 -3.425297690768829 4.294756120613209 -3.249225328591466 4.489529502429272 -3.353068421083288 3.510245171836957 -3.353068421083288 3.474719812821777 -3.247732574940354 4.548816978931427 -2.570346669356028 -20.2686605899131 -3.468131277202411 -20.26822788537411 -3.359151067887034 -7.67181798132415 -3.930234199200581 4.183229506015778 -2.493285322189331 20.00611015981752 1.065196324778427 20.01051779648356 0.9562702948233963 7.421108802549014 0.4342692620815847 4.500018497887991 -4.01532093159186 3.55278321095577 -4.115873932433938 4.049880885509911 -3.805653368389173 3.91758195470852 -4.390624369043138 3.784083870261765 -4.361507032611902 4.410671495546644 -4.076470155483391 19.24171640300716 5.0217752023098 6.818240106739196 3.319456624246194 6.796058569085949 3.427031331626517 3.570827690233118 -3.778814896990638 3.473621646181085 -3.701164548957879 4.42105411993872 -3.601767851251229 -7.671818428944595 -3.930238394956164 -20.26822831427421 -3.35915500811207 -7.671385720833205 -3.821258865021147 4.45085734128952 -2.493285322189331 4.317043721675873 -2.465078314145406 -20.65075244470812 -1.334488134425936 -8.22727480719437 -3.036800716469167 -8.249456161287556 -3.14437498844048 19.21954454934701 5.129323310270896 19.24172591903273 5.021748519984212 6.79606559508311 3.427016675112495 -7.814002178949348 -4.470136603468768 -20.39459606793192 -3.730284760667527 -7.809594555638277 -4.361209909732523 -20.39900543977191 -3.839206439762744 -20.39459776938297 -3.730280244790479 -7.814004200164126 -4.470135452444637 -20.67293229873431 -1.442089613319826 -20.65075113526788 -1.33451525555063 -8.249451644654457 -3.14438851003459</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"466\" source=\"#ID1869\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1865\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1863\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1864\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"168\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1865\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1866\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 7 4 8 5 1 6 12 7 2 8 14 9 1 10 0 11 8 12 7 13 16 14 6 15 18 16 7 17 1 18 20 19 12 20 2 21 12 22 22 23 14 24 24 25 1 26 26 27 14 28 0 29 16 30 7 31 28 32 18 33 30 34 7 35 20 36 32 37 12 38 24 39 20 40 1 41 12 42 34 43 22 44 36 45 24 46 14 47 38 48 14 49 26 50 7 51 40 52 41 53 38 54 26 55 44 56 30 57 46 58 7 59 22 60 34 61 48 62 50 63 51 64 52 65 34 66 12 67 32 68 56 69 52 70 57 71 60 72 57 73 61 74 36 75 14 76 38 77 7 78 64 79 40 80 66 81 44 82 67 83 66 84 38 85 44 86 46 87 70 88 7 89 72 90 48 91 73 92 48 93 34 94 73 95 50 96 76 97 51 98 56 99 50 100 52 101 34 102 32 103 78 104 60 105 56 106 57 107 60 108 61 109 80 110 82 111 36 112 38 113 7 114 84 115 64 116 86 117 67 118 87 119 86 120 66 121 67 122 82 123 38 124 66 125 70 126 90 127 7 128 92 129 72 130 93 131 72 132 73 133 93 134 73 135 34 136 78 137 96 138 97 139 98 140 76 141 102 142 51 143 97 144 104 145 105 146 108 147 109 148 104 149 112 150 113 151 108 152 61 153 116 154 80 155 7 156 90 157 84 158 118 159 87 160 119 161 118 162 86 163 87 164 122 165 66 166 86 167 122 168 82 169 66 170 124 171 125 172 92 173 93 174 124 175 92 176 93 177 73 178 128 179 73 180 78 181 128 182 96 183 98 184 130 185 97 139 105 186 98 187 76 188 132 189 102 190 104 191 109 192 105 193 113 194 109 148 108 147 134 195 113 196 112 197 80 198 116 199 136 200 138 201 119 202 125 203 138 204 118 205 119 206 140 207 86 208 118 209 140 210 122 211 86 212 116 213 142 214 136 215 124 216 138 217 125 218 124 219 93 220 144 221 128 222 144 223 93 224 102 225 132 226 146 227 148 228 149 229 150 230 154 231 96 183 130 185 149 232 156 233 157 234 156 235 160 236 161 237 164 238 160 239 165 240 168 241 165 242 169 243 134 244 112 245 172 246 174 247 118 248 138 249 174 250 140 251 118 252 142 253 176 254 177 255 136 256 142 257 177 258 180 259 138 260 124 261 144 262 180 263 124 264 146 265 182 266 183 267 132 268 182 269 146 270 148 271 150 272 186 273 149 274 157 275 150 276 154 277 130 278 188 279 157 280 156 281 161 282 161 283 160 284 164 285 168 286 164 287 165 288 190 289 168 290 169 291 192 292 134 293 172 294 180 295 174 296 138 297 176 298 194 299 195 300 176 301 195 302 177 303 192 304 172 305 198 306 200 307 183 308 201 309 183 310 182 311 201 312 204 313 154 277 188 279 206 314 207 315 208 316 212 317 148 318 186 319 206 320 214 321 215 322 214 323 218 324 219 325 222 326 223 327 218 328 226 329 227 330 222 331 230 332 231 333 226 334 190 335 169 336 234 337 194 338 200 339 236 340 194 341 236 342 195 343 238 344 198 345 239 346 238 347 192 304 198 306 200 348 201 349 236 350 204 351 242 352 243 353 188 354 242 352 204 351 207 355 246 356 208 357 206 358 215 359 207 360 212 361 186 362 248 363 214 364 219 365 215 366 218 367 223 368 219 369 222 370 227 371 223 372 231 373 227 374 226 375 250 376 231 377 230 378 252 379 190 380 234 381 254 382 239 383 255 384 254 385 238 344 239 346 252 386 234 387 258 388 243 389 260 390 255 391 242 392 260 393 243 394 262 395 212 396 248 397 264 398 265 399 266 400 208 401 246 402 270 403 265 399 272 404 266 400 272 404 274 405 266 400 274 405 276 406 266 400 276 406 278 407 266 400 266 400 278 407 280 408 266 400 280 408 282 409 284 410 250 411 230 412 260 413 254 382 255 384 286 414 287 415 258 416 287 417 252 418 258 419 262 420 290 421 291 422 262 423 248 424 290 425 264 398 266 400 294 426 246 427 296 428 270 429 266 400 282 409 298 430 300 431 250 432 284 433 291 434 302 435 286 436 302 437 287 438 286 439 300 440 284 441 304 442 290 443 302 444 291 445 270 446 296 447 306 448 294 426 266 400 308 449 266 400 298 430 310 450 312 451 304 452 313 453 312 454 300 455 304 456 306 457 316 458 313 459 296 460 316 461 306 462 308 449 266 400 310 450 316 463 312 464 313 465</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"168\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1865\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 3 13 4 5 4 15 17 10 9 10 19 11 13 21 4 23 13 3 4 25 15 5 15 27 29 10 17 10 31 19 13 33 21 4 21 25 23 35 13 15 25 37 27 15 39 42 43 10 45 27 39 10 47 31 49 35 23 53 54 55 33 13 35 58 53 59 62 58 63 39 15 37 43 65 10 68 45 69 45 39 69 10 71 47 74 49 75 74 35 49 54 77 55 53 55 59 79 33 35 58 59 63 81 62 63 39 37 83 65 85 10 88 68 89 68 69 89 69 39 83 10 91 71 94 75 95 94 74 75 79 35 74 99 100 101 54 103 77 106 107 100 107 110 111 111 114 115 81 117 62 85 91 10 120 88 121 88 89 121 89 69 123 69 83 123 95 126 127 95 127 94 129 74 94 129 79 74 131 99 101 99 106 100 103 133 77 106 110 107 111 110 114 115 114 135 137 117 81 126 120 139 120 121 139 121 89 141 89 123 141 137 143 117 126 139 127 145 94 127 94 145 129 147 133 103 151 152 153 131 101 155 158 159 152 162 163 159 166 163 167 170 166 171 173 115 135 139 121 175 121 141 175 178 179 143 178 143 137 127 139 181 127 181 145 184 185 147 147 185 133 187 151 153 151 158 152 189 131 155 162 159 158 167 163 162 166 167 171 170 171 191 173 135 193 139 175 181 196 197 179 178 196 179 199 173 193 202 184 203 202 185 184 189 155 205 209 210 211 187 153 213 216 217 211 220 221 217 221 224 225 225 228 229 229 232 233 235 170 191 237 203 197 196 237 197 240 199 241 199 193 241 237 202 203 244 245 205 205 245 189 209 247 210 210 216 211 249 187 213 216 220 217 220 224 221 224 228 225 229 228 232 233 232 251 235 191 253 256 240 257 240 241 257 259 235 253 256 261 244 244 261 245 249 213 263 267 268 269 271 247 209 267 273 268 267 275 273 267 277 275 267 279 277 281 279 267 283 281 267 233 251 285 256 257 261 259 288 289 259 253 288 292 293 263 293 249 263 295 267 269 271 297 247 299 283 267 285 251 301 289 303 292 289 288 303 305 285 301 292 303 293 307 297 271 309 267 295 311 299 267 314 305 315 305 301 315 314 317 307 307 317 297 311 267 309 314 315 317</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1870\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1871\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID1875\">0.4059732258319855 0.3273707330226898 0.4861110150814056 0.001826941967010498 0.36569744348526 0.4825262129306793 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.001826941967010498 0.36569744348526 0.4825262129306793 0.4059732258319855 0.3273707330226898 0.4861110150814056 -0.002457162365317345 0.3667368292808533 0.4761049449443817 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.4000329077243805 0.333241194486618 0.4851138293743134 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4000329077243805 0.333241194486618 0.4851138293743134 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.001826941967010498 0.36569744348526 0.4825262129306793 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.001826941967010498 0.36569744348526 0.4825262129306793 -0.002457162365317345 0.3667368292808533 0.4761049449443817 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4000329077243805 0.333241194486618 0.4851138293743134 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4059732258319855 0.3273707330226898 0.4861110150814056 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4000329077243805 0.333241194486618 0.4851138293743134 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.002138050273060799 0.3725078105926514 0.4755116403102875</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID1875\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1872\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID1876\">-0.08952341132944511 -0.9665019931361217 -0.2405399261824177 -0.09307031415484783 -0.9906940182325136 -0.09931404161262442 -0.08943517782608092 -0.96582685467682 -0.2432690604090423 0.08943517782608092 0.96582685467682 0.2432690604090423 0.09307031415484783 0.9906940182325136 0.09931404161262442 0.08952341132944511 0.9665019931361217 0.2405399261824177 -0.09308928585367543 -0.9907963814413132 -0.09826960558612438 0.09308928585367543 0.9907963814413132 0.09826960558612438 0.2301586543286202 0.693333295190555 0.6828732939702983 0.2287261533222507 0.6936103530025589 0.6830732208146296 0.5000460578009219 0.6103526617752574 0.6143480840220922 -0.5000460578009219 -0.6103526617752574 -0.6143480840220922 -0.2287261533222507 -0.6936103530025589 -0.6830732208146296 -0.2301586543286202 -0.693333295190555 -0.6828732939702983 -0.1956589388659544 0.7079285700643496 0.6786418196136265 -0.2198282281697055 0.704780168735802 0.6745075713856016 0.2198282281697055 -0.704780168735802 -0.6745075713856016 0.1956589388659544 -0.7079285700643496 -0.6786418196136265 -0.6416528063592415 0.5643263746532536 0.5194395238735935 0.6416528063592415 -0.5643263746532536 -0.5194395238735935 0.00891550759678178 -0.1584192619794581 -0.9873316824442412 0.01283181494370217 -0.113021758016135 -0.993509651055385 0.008890355094381066 -0.1587090432062825 -0.9872853696833769 -0.008890355094381066 0.1587090432062825 0.9872853696833769 -0.01283181494370217 0.113021758016135 0.993509651055385 -0.00891550759678178 0.1584192619794581 0.9873316824442412 0.01288447646505487 -0.1124075253154992 -0.9935786524068777 -0.01288447646505487 0.1124075253154992 0.9935786524068777</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID1876\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1874\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID1877\">3.740585338318493 3.013731988598182 -0.3190001965646728 2.984658132854389 3.679196662021946 3.062556130331506 -0.3675170164644492 3.445144035647753 -0.3238915542370874 3.495903695925194 3.73570239328401 3.524241298361504 -1.023265483343171 0.6100779464911402 -0.9825317248039001 0.540116630602465 -1.065686325361761 0.5500585549780868 0.2558773499497036 0.7229336923277917 0.2578794837875551 0.6460002533954288 -3.741303136691545 0.8282759892767549 -2.758101724615067 2.262331227225474 -2.737613796339283 2.203216483757234 -2.811295632258756 2.19775447044182 4.180446050558359 -1.803728767205834 0.1805791100523501 -2.249569534563329 4.236472959786632 -1.754379034249905 0.2579904479145674 0.6477436715358349 -3.739199756091682 0.7530193926241987 -3.74119699173816 0.8299539626872152 0.4454430976743594 -2.467499234909472 0.393218062595942 -2.426247833057311 4.353792175678316 -1.799876336016639</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID1877\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1873\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1871\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1872\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1873\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1874\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 1 4 0 5 8 6 9 7 10 8 14 9 15 10 8 11 14 12 18 13 15 14 20 15 21 16 22 17 15 18 9 19 8 20 26 21 21 22 20 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1873\" />\r\n\t\t\t\t\t<p>3 4 5 5 4 7 11 12 13 13 16 17 16 19 17 23 24 25 13 12 16 25 24 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1878\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1879\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID1883\">0.4527354836463928 0.3918493390083313 0.4402284026145935 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.278479278087616 0.3278618454933167 0.4869411289691925 0.278479278087616 0.3278618454933167 0.4869411289691925 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.2781703174114227 0.328160971403122 0.4818757474422455 0.2781703174114227 0.328160971403122 0.4818757474422455 0.278479278087616 0.3278618454933167 0.4869411289691925 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.278479278087616 0.3278618454933167 0.4869411289691925 0.278479278087616 0.3278618454933167 0.4869411289691925 0.2781703174114227 0.328160971403122 0.4818757474422455 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2781703174114227 0.328160971403122 0.4818757474422455 0.278479278087616 0.3278618454933167 0.4869411289691925 0.450115442276001 0.4019450545310974 0.4316630661487579 0.2781703174114227 0.328160971403122 0.4818757474422455 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.2781703174114227 0.328160971403122 0.4818757474422455 0.450115442276001 0.4019450545310974 0.4316630661487579 0.450115442276001 0.4019450545310974 0.4316630661487579 0.450115442276001 0.4019450545310974 0.4316630661487579 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2769213914871216 0.3349538445472717 0.4808885753154755</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID1883\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1880\">\r\n\t\t\t\t\t<float_array count=\"90\" id=\"ID1884\">0.3753432908168096 -0.9152399140173331 0.1464694979453154 0.3743393837305015 -0.9162770354900349 0.1425005965666867 0.3140457485376386 -0.9472657429590871 -0.06374072514180626 -0.3140457485376386 0.9472657429590871 0.06374072514180626 -0.3743393837305015 0.9162770354900349 -0.1425005965666867 -0.3753432908168096 0.9152399140173331 -0.1464694979453154 0.3103356675491998 -0.9476724175128053 -0.0748916719817901 -0.3103356675491998 0.9476724175128053 0.0748916719817901 -0.0320246630172527 0.6447511012904932 0.7637214402799806 -0.03197120955853455 0.6446490719368806 0.7638098034264045 -0.0306315124552247 0.6420879074995785 0.7660188179721946 0.0306315124552247 -0.6420879074995785 -0.7660188179721946 0.03197120955853455 -0.6446490719368806 -0.7638098034264045 0.0320246630172527 -0.6447511012904932 -0.7637214402799806 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 -0.3734428630561606 0.2653397858601099 -0.8888955090853641 -0.214729926251855 -0.1557520238905489 -0.9641744478183761 -0.3765001999056426 0.2754405094322084 -0.8845225408290831 0.3765001999056426 -0.2754405094322084 0.8845225408290831 0.214729926251855 0.1557520238905489 0.9641744478183761 0.3734428630561606 -0.2653397858601099 0.8888955090853641 -0.0305931151776909 0.6420143877261446 0.7660819716298956 0.0305931151776909 -0.6420143877261446 -0.7660819716298956 -0.2048984381399542 -0.1775537005661291 -0.9625441877976724 0.2048984381399542 0.1775537005661291 0.9625441877976724</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"30\" source=\"#ID1884\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1882\">\r\n\t\t\t\t\t<float_array count=\"42\" id=\"ID1885\">5.675606409170287 3.645582267663513 5.659946265937674 3.540001426781414 3.820565024918846 4.017062055030105 5.507814679000523 3.214093020966341 3.664835962078402 3.64737777577287 3.666841234253838 3.687337664122705 -2.944011794455307 0.5884805452487562 -2.931970355226452 0.5147237154584141 -4.716171622766688 0.01923609011483403 -2.744649910765467 3.95546743810215 -2.74813267594593 3.915570386156207 -2.817198242306778 3.907795007853151 -5.901691802031239 0.7076990140758661 -4.290956863184142 1.55444838564906 -5.812055584839532 0.6282526547049071 -2.925505739982495 0.4946091484498839 -4.687369548932571 -0.1078723146314636 -4.70873493322951 -0.003039342193471217 -0.7178649052072967 -2.219952427122569 -0.658349870247449 -2.191309704240082 -0.08993094495510154 -3.648226767105204</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"21\" source=\"#ID1885\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1881\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1879\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1880\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1881\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1882\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 1 3 6 4 2 5 8 6 9 7 10 8 14 9 15 10 16 11 20 12 21 13 22 14 9 15 26 16 10 17 28 18 21 19 20 20</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"7\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1881\" />\r\n\t\t\t\t\t<p>3 4 5 3 7 4 11 12 13 17 18 19 23 24 25 11 27 12 25 24 29</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1886\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1887\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID1891\">-0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4857785105705261 0.3487239181995392 0.4755116403102875</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID1891\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1888\">\r\n\t\t\t\t\t<float_array count=\"84\" id=\"ID1892\">0.06643847930277297 -0.9938912340263244 -0.08812572492504646 0.06633104125145112 -0.97728997819365 -0.2012572768591321 0.06643161212964106 -0.9940951924153975 -0.08579970469908901 -0.06643161212964106 0.9940951924153975 0.08579970469908901 -0.06633104125145112 0.97728997819365 0.2012572768591321 -0.06643847930277297 0.9938912340263244 0.08812572492504646 0.06632714945836096 -0.9771252259347203 -0.2020569278365634 -0.06632714945836096 0.9771252259347203 0.2020569278365634 0.1483616996249534 0.7064948699628552 0.6919926334872094 0.1667432826893118 0.7039832970799793 0.6903652620970971 0.5000246418360753 0.6103909512396994 0.6143274730967185 -0.5000246418360753 -0.6103909512396994 -0.6143274730967185 -0.1667432826893118 -0.7039832970799793 -0.6903652620970971 -0.1483616996249534 -0.7064948699628552 -0.6919926334872094 -0.2829318543527633 0.6944133696561045 0.6616189521434231 -0.2819434410746255 0.6946029234445578 0.6618418804950871 0.2819434410746255 -0.6946029234445578 -0.6618418804950871 0.2829318543527633 -0.6944133696561045 -0.6616189521434231 -0.6417297630809646 0.5643090885482262 0.5193632291161162 0.6417297630809646 -0.5643090885482262 -0.5193632291161162 0.03243382116071587 -0.1353354646732991 -0.9902688318060792 0.03183450279756919 -0.1273658168435666 -0.9913448003249942 0.0324374153669634 -0.1353833180656773 -0.9902621729995744 -0.0324374153669634 0.1353833180656773 0.9902621729995744 -0.03183450279756919 0.1273658168435666 0.9913448003249942 -0.03243382116071587 0.1353354646732991 0.9902688318060792 0.0318232705334067 -0.1272166352544075 -0.9913643160650402 -0.0318232705334067 0.1272166352544075 0.9913643160650402</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"28\" source=\"#ID1892\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1890\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID1893\">-0.514299458387062 3.558040160755181 -4.622104547076903 3.529735340488684 -0.5773041346071366 3.60557285021357 -4.660232738055397 3.07144481308713 -4.618183617302604 3.123022643673471 -0.5103840265403392 3.151817006159239 2.970250233962921 1.931303125244438 3.010987332162051 1.861343232198031 2.927827369906226 1.871284954379196 4.543290583036389 0.6429759251745825 4.534230771580503 0.5663574870330614 0.4995400012906756 0.7478869024359247 0.6423111745411636 0.8299071247853209 0.6628200850528088 0.7707955892611047 0.5891112246848734 0.7653338723494632 0.0746122667299122 -2.457676676137602 -3.969698889945972 -2.966744434585249 0.1187093862438805 -2.40132840165215 4.534342051249654 0.5681553693967262 0.4905992050906123 0.6730013937242312 0.4996467130933653 0.7496219451777118 -3.866319101991072 -3.067124713239394 -3.924921539642796 -3.031533338845224 0.1128090865029688 -2.491105099802389</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID1893\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1889\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1887\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1888\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1889\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1890\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 1 4 0 5 8 6 9 7 10 8 14 9 15 10 8 11 14 12 18 13 15 14 20 15 21 16 22 17 15 18 9 19 8 20 26 21 21 22 20 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1889\" />\r\n\t\t\t\t\t<p>3 4 5 5 4 7 11 12 13 13 16 17 16 19 17 23 24 25 13 12 16 25 24 27</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1894\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1895\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID1899\">-0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2036990523338318 0.3694864809513092 0.4869411289691925</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID1899\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1896\">\r\n\t\t\t\t\t<float_array count=\"108\" id=\"ID1900\">0.9795936295032293 0.18214670401301 -0.08496410567932189 0.9795936295032293 0.18214670401301 -0.08496410567932189 0.9795936295032293 0.18214670401301 -0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 0.1912466287913627 -0.9673905650834347 0.1660729404914957 0.1901391011590887 -0.9683589746445472 0.1616416358361136 0.1323020193661333 -0.9897186121510229 -0.05434376167967066 -0.1323020193661333 0.9897186121510229 0.05434376167967066 -0.1901391011590887 0.9683589746445472 -0.1616416358361136 -0.1912466287913627 0.9673905650834347 -0.1660729404914957 -0.2737980892231487 0.2910412612865604 -0.9166949277521288 -0.1877574692592857 -0.1524536115158973 -0.9703118205366297 -0.27525050122197 0.3015517299802667 -0.9128547067978357 0.27525050122197 -0.3015517299802667 0.9128547067978357 0.1877574692592857 0.1524536115158973 0.9703118205366297 0.2737980892231487 -0.2910412612865604 0.9166949277521288 0.04849407853223773 0.6545005993707064 0.7545046651749046 0.04873458354262738 0.6535903151767286 0.7552778563377263 0.04872646369884298 0.6536210681566902 0.7552517666295874 -0.04872646369884298 -0.6536210681566902 -0.7552517666295874 -0.04873458354262738 -0.6535903151767286 -0.7552778563377263 -0.04849407853223773 -0.6545005993707064 -0.7545046651749046 0.1288838023786896 -0.9894411854224582 -0.06629559619018259 -0.1288838023786896 0.9894411854224582 0.06629559619018259 0.04848283384157669 0.654543128816357 0.754468493273234 -0.04848283384157669 -0.654543128816357 -0.754468493273234 -0.1823608443937586 -0.1741080918962435 -0.9676935954982056 0.1823608443937586 0.1741080918962435 0.9676935954982056 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"36\" source=\"#ID1900\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1898\">\r\n\t\t\t\t\t<float_array count=\"48\" id=\"ID1901\">3.942270540375164 3.460901661789526 3.964759705040326 3.565723571073764 4.068781433212398 3.498097921829887 0.4826561900046933 4.017302936508278 0.4710806939569447 3.911389289020603 -1.281733807990918 4.302568195073747 -2.513045940023659 3.740222789853266 -0.9861907509344283 4.496649532908113 -2.44286319332222 3.649448456932891 2.326884740212548 0.3388181497531386 0.6230291713841536 -0.1205493134629069 0.5893996542737505 -0.01774090714535293 0.2117883897707467 3.230774675204582 -1.545347190268103 3.577436442692035 -1.542667919918237 3.61737196778006 2.304360962456652 0.4165031666429619 2.325117488597726 0.3439589166597305 0.5874647138896388 -0.01209407751420741 -4.141120206364048 0.1043282782762547 -4.083379394414218 0.1351289780370625 -3.171607438855324 -1.08978836902274 -3.992289723655305 3.772382147634574 -3.99577208095218 3.732484980792526 -4.064832195748746 3.724709580097823</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"24\" source=\"#ID1901\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1897\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1895\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1896\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1897\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1898\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 6 3 7 4 8 5 12 6 13 7 14 8 18 9 19 10 20 11 7 12 24 13 8 14 26 15 18 16 20 17 28 18 13 19 12 20 30 21 31 22 32 23</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"8\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1897\" />\r\n\t\t\t\t\t<p>3 4 5 9 10 11 15 16 17 21 22 23 9 25 10 21 23 27 17 16 29 33 34 35</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1902\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1903\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID1906\">0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID1906\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1904\">\r\n\t\t\t\t\t<float_array count=\"132\" id=\"ID1907\">0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.9997871805147028 0.02062992192086592 0 -0.9997871805147028 0.02062992192086592 0 -0.9997871805147028 0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 0 0 -1 -0 -0 1 1 0 0 -1 -0 -0 0 -0.9997871805147028 0.02062992192086593 0 -0.9997871805147028 0.02062992192086593 0 -0.9997871805147028 0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.2374728579818554 0.971394174226884 0 0.2374728579818554 0.971394174226884 0 0.2374728579818554 0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 0 0.2374728579818554 0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -1 0 0 1 -0 -0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"44\" source=\"#ID1907\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1905\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1903\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1904\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"20\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1905\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 0 5 4 19 7 20 8 9 21 10 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 35 34 39 38 41 42 28 30 31 33 43</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1908\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1909\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1913\">-0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1913\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1910\">\r\n\t\t\t\t\t<float_array count=\"24\" id=\"ID1914\">0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 -0 -1 -0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"8\" source=\"#ID1914\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1912\">\r\n\t\t\t\t\t<float_array count=\"8\" id=\"ID1915\">4.980598986148834 -5.075943398475648 -4.980599880218506 -5.075943398475648 4.980598986148834 1.353845890363058 -4.980599880218506 1.353845890363058</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"4\" source=\"#ID1915\" stride=\"2\">\r\n\t\t\t\t\t\t\t<param name=\"S\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"T\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1911\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1909\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1910\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material3\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1911\" />\r\n\t\t\t\t\t<input offset=\"1\" semantic=\"TEXCOORD\" source=\"#ID1912\" />\r\n\t\t\t\t\t<p>0 0 1 1 2 2 2 2 1 1 6 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles count=\"2\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1911\" />\r\n\t\t\t\t\t<p>3 4 5 7 4 3</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1916\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1917\">\r\n\t\t\t\t\t<float_array count=\"900\" id=\"ID1920\">0.2478943765163422 1.814255595207214 0.000725477933883667 0.2448281943798065 1.616339206695557 0.007112216204404831 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.616339206695557 0.007112216204404831 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2851106524467468 1.814255595207214 -0.01469011977314949 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2851106524467468 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2478943765163422 1.616339206695557 -0.00830315425992012 0.2478943765163422 1.616339206695557 -0.00830315425992012 0.2478943765163422 1.616339206695557 0.02252786979079247 0.2478943765163422 1.616339206695557 0.02252786979079247 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2695431709289551 1.453958511352539 0.0193280465900898 0.2695431709289551 1.453958511352539 0.0193280465900898 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2664770185947418 1.453958511352539 0.03474375978112221 0.2664770185947418 1.453958511352539 0.03474375978112221 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2566267848014832 1.814255595207214 0.01379405707120895 0.269695371389389 1.814255595207214 0.0225263275206089 0.269695371389389 1.814255595207214 0.0225263275206089 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2782755792140961 1.453958511352539 0.006259582936763763 0.2782755792140961 1.453958511352539 0.006259582936763763 0.2566267848014832 1.616339206695557 -0.02137184515595436 0.2566267848014832 1.616339206695557 -0.02137184515595436 0.2695431709289551 1.453958511352539 0.05015917494893074 0.2695431709289551 1.453958511352539 0.05015917494893074 0.2566267848014832 1.616339206695557 0.0355965681374073 0.2566267848014832 1.616339206695557 0.0355965681374073 0.2851106524467468 1.814255595207214 0.02559248730540276 0.2851106524467468 1.814255595207214 0.02559248730540276 0.269695371389389 1.814255595207214 0.0225263275206089 0.269695371389389 1.814255595207214 0.0225263275206089 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2782755792140961 1.312108874320984 0.05416208878159523 0.2782755792140961 1.312108874320984 0.05416208878159523 0.2695431709289551 1.312108874320984 0.06723077595233917 0.2695431709289551 1.312108874320984 0.06723077595233917 0.2664770185947418 1.312108874320984 0.08264619112014771 0.2664770185947418 1.312108874320984 0.08264619112014771 0.3005262613296509 1.814255595207214 0.0225263275206089 0.3005262613296509 1.814255595207214 0.0225263275206089 0.269695371389389 1.616339206695557 0.04432866349816322 0.2851106524467468 1.814255595207214 0.02559248730540276 0.2851106524467468 1.814255595207214 0.02559248730540276 0.269695371389389 1.616339206695557 0.04432866349816322 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2696953117847443 1.616339206695557 -0.03010406345129013 0.2696953117847443 1.616339206695557 -0.03010406345129013 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2913441359996796 1.312108874320984 0.0454297699034214 0.2913441359996796 1.312108874320984 0.0454297699034214 0.2913441359996796 1.453958511352539 -0.002472575753927231 0.2913441359996796 1.453958511352539 -0.002472575753927231 0.2695431709289551 1.312108874320984 0.09806185960769653 0.2695431709289551 1.312108874320984 0.09806185960769653 0.2782755792140961 1.453958511352539 0.06322780251502991 0.2782755792140961 1.453958511352539 0.06322780251502991 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3135948479175568 1.814255595207214 0.01379405707120895 0.2851106524467468 1.616339206695557 0.04739503934979439 0.3005262613296509 1.814255595207214 0.0225263275206089 0.3005262613296509 1.814255595207214 0.0225263275206089 0.2851106524467468 1.616339206695557 0.04739503934979439 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2851106524467468 1.616339206695557 -0.03317039087414742 0.2851106524467468 1.616339206695557 -0.03317039087414742 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2696953117847443 1.160151720046997 0.1071765571832657 0.2696953117847443 1.160151720046997 0.1071765571832657 0.2566267848014832 1.160151720046997 0.1159086525440216 0.2566267848014832 1.160151720046997 0.1159086525440216 0.2478943765163422 1.160151720046997 0.1289774775505066 0.2478943765163422 1.160151720046997 0.1289774775505066 0.2448281943798065 1.160151720046997 0.1443928182125092 0.2448281943798065 1.160151720046997 0.1443928182125092 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3005262613296509 1.616339206695557 0.04432866349816322 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3005262613296509 1.616339206695557 0.04432866349816322 0.2913441956043243 1.453958511352539 0.07196013629436493 0.2913441956043243 1.453958511352539 0.07196013629436493 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3005262613296509 1.616339206695557 -0.03010406345129013 0.3005262613296509 1.616339206695557 -0.03010406345129013 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3067594766616821 1.453958511352539 -0.005538847297430039 0.3067594766616821 1.453958511352539 -0.005538847297430039 0.2851106524467468 1.160151720046997 0.1041101217269898 0.2851106524467468 1.160151720046997 0.1041101217269898 0.3067594766616821 1.312108874320984 0.04236360266804695 0.3067594766616821 1.312108874320984 0.04236360266804695 0.2478943765163422 1.160151720046997 0.1598084419965744 0.2478943765163422 1.160151720046997 0.1598084419965744 0.2782755792140961 1.312108874320984 0.1111303716897965 0.2782755792140961 1.312108874320984 0.1111303716897965 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3135948479175568 1.616339206695557 0.0355965681374073 0.3135948479175568 1.616339206695557 0.0355965681374073 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3067594766616821 1.453958511352539 0.07502646744251251 0.3067594766616821 1.453958511352539 0.07502646744251251 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3135948479175568 1.616339206695557 -0.02137184515595436 0.3135948479175568 1.616339206695557 -0.02137184515595436 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3221750557422638 1.453958511352539 -0.002472575753927231 0.3221750557422638 1.453958511352539 -0.002472575753927231 0.2688740491867065 1.048043012619019 0.1517271846532822 0.2688740491867065 1.048043012619019 0.1517271846532822 0.2534586787223816 1.048043012619019 0.1547933518886566 0.2534586787223816 1.048043012619019 0.1547933518886566 0.2403901517391205 1.048043012619019 0.1635255962610245 0.2403901517391205 1.048043012619019 0.1635255962610245 0.2316577583551407 1.048043012619019 0.1765943020582199 0.2316577583551407 1.048043012619019 0.1765943020582199 0.228591576218605 1.048043012619019 0.1920096725225449 0.228591576218605 1.048043012619019 0.1920096725225449 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3223271369934082 1.616339206695557 0.02252786979079247 0.3223271369934082 1.616339206695557 0.02252786979079247 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3221750557422638 1.453958511352539 0.07196013629436493 0.3221750557422638 1.453958511352539 0.07196013629436493 0.2913441956043243 1.312108874320984 0.1198627650737763 0.2913441956043243 1.312108874320984 0.1198627650737763 0.3223271369934082 1.616339206695557 -0.00830315425992012 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.616339206695557 -0.00830315425992012 0.3352437019348145 1.453958511352539 0.006259582936763763 0.3352437019348145 1.453958511352539 0.006259582936763763 0.3221750557422638 1.312108874320984 0.0454297699034214 0.3221750557422638 1.312108874320984 0.0454297699034214 0.2842896282672882 1.048043012619019 0.1547933518886566 0.2842896282672882 1.048043012619019 0.1547933518886566 0.3005262613296509 1.160151720046997 0.1071765571832657 0.3005262613296509 1.160151720046997 0.1071765571832657 0.2316577583551407 1.048043012619019 0.207425132393837 0.2316577583551407 1.048043012619019 0.207425132393837 0.2566267848014832 1.160151720046997 0.1728769987821579 0.2566267848014832 1.160151720046997 0.1728769987821579 0.3253934681415558 1.616339206695557 0.007112216204404831 0.3253934681415558 1.616339206695557 0.007112216204404831 0.3352437019348145 1.453958511352539 0.06322780251502991 0.3352437019348145 1.453958511352539 0.06322780251502991 0.3067594766616821 1.312108874320984 0.1229289472103119 0.3067594766616821 1.312108874320984 0.1229289472103119 0.3439759612083435 1.453958511352539 0.0193280465900898 0.3439759612083435 1.453958511352539 0.0193280465900898 0.3352437019348145 1.312108874320984 0.05416208878159523 0.3352437019348145 1.312108874320984 0.05416208878159523 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.3439759612083435 1.453958511352539 0.05015917494893074 0.3439759612083435 1.453958511352539 0.05015917494893074 0.3221750557422638 1.312108874320984 0.1198627650737763 0.3221750557422638 1.312108874320984 0.1198627650737763 0.269695371389389 1.160151720046997 0.1816091537475586 0.269695371389389 1.160151720046997 0.1816091537475586 0.3470422923564911 1.453958511352539 0.03474375978112221 0.3470422923564911 1.453958511352539 0.03474375978112221 0.3439759612083435 1.312108874320984 0.06723077595233917 0.3439759612083435 1.312108874320984 0.06723077595233917 0.3135948479175568 1.160151720046997 0.1159086525440216 0.3135948479175568 1.160151720046997 0.1159086525440216 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2973582744598389 1.048043012619019 0.1635255962610245 0.2973582744598389 1.048043012619019 0.1635255962610245 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2403901517391205 1.048043012619019 0.220493957400322 0.2403901517391205 1.048043012619019 0.220493957400322 0.3352437019348145 1.312108874320984 0.1111303716897965 0.3352437019348145 1.312108874320984 0.1111303716897965 0.2851106524467468 1.160151720046997 0.1846755594015122 0.2851106524467468 1.160151720046997 0.1846755594015122 0.3470422923564911 1.312108874320984 0.08264619112014771 0.3470422923564911 1.312108874320984 0.08264619112014771 0.3223271369934082 1.160151720046997 0.1289774775505066 0.3223271369934082 1.160151720046997 0.1289774775505066 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9449533820152283 0.2128610759973526 0.2634618580341339 0.9449533820152283 0.2128610759973526 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2349779903888702 0.9415437579154968 0.184581384062767 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.3439759612083435 1.312108874320984 0.09806185960769653 0.3439759612083435 1.312108874320984 0.09806185960769653 0.3005262613296509 1.160151720046997 0.1816091537475586 0.3005262613296509 1.160151720046997 0.1816091537475586 0.2534587383270264 1.048043012619019 0.229226216673851 0.2534587383270264 1.048043012619019 0.229226216673851 0.3253934681415558 1.160151720046997 0.1443928182125092 0.3253934681415558 1.160151720046997 0.1443928182125092 0.3060905337333679 1.048043012619019 0.1765943020582199 0.3060905337333679 1.048043012619019 0.1765943020582199 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.3135948479175568 1.160151720046997 0.1728769987821579 0.3135948479175568 1.160151720046997 0.1728769987821579 0.2688740491867065 1.048043012619019 0.2322925180196762 0.2688740491867065 1.048043012619019 0.2322925180196762 0.3223271369934082 1.160151720046997 0.1598084419965744 0.3223271369934082 1.160151720046997 0.1598084419965744 0.3091568052768707 1.048043012619019 0.1920096725225449 0.3091568052768707 1.048043012619019 0.1920096725225449 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2842896282672882 1.048043012619019 0.229226216673851 0.2842896282672882 1.048043012619019 0.229226216673851 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.3060905337333679 1.048043012619019 0.2074250131845474 0.3060905337333679 1.048043012619019 0.2074250131845474 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2973582744598389 1.048043012619019 0.220493957400322 0.2973582744598389 1.048043012619019 0.220493957400322 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"300\" source=\"#ID1920\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1918\">\r\n\t\t\t\t\t<float_array count=\"900\" id=\"ID1921\">-0.9278834584867581 0.04082824076895225 0.3706283073678604 -0.9977752429982424 -0.06659565527506635 -0.003095667663508074 -0.9999060571191866 -0.0015009125374733 -0.01362439715793088 0.9999060571191866 0.0015009125374733 0.01362439715793088 0.9977752429982424 0.06659565527506635 0.003095667663508074 0.9278834584867581 -0.04082824076895225 -0.3706283073678604 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0.9181195771732412 -0.1128555365036274 -0.3798948142469269 0.9181195771732412 0.1128555365036274 0.3798948142469269 -0.9262328309242459 -0.009838731266650419 0.376823489561253 0.9262328309242459 0.009838731266650419 -0.376823489561253 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 -0.9074324623206211 -0.16194011862512 -0.3877392478282493 0.9074324623206211 0.16194011862512 0.3877392478282493 -0.9181627939907852 -0.04338327862263842 -0.3938209934310071 0.9181627939907852 0.04338327862263842 0.3938209934310071 -0.9973766201166378 -0.07177404651176834 -0.009400207021054655 0.9973766201166378 0.07177404651176834 0.009400207021054655 -0.7118594156381571 0.07690255944710663 0.6980989677100129 0.7118594156381571 -0.07690255944710663 -0.6980989677100129 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 -0.6812443792921055 -0.2235944870704588 -0.6970735980042656 0.6812443792921055 0.2235944870704588 0.6970735980042656 -0.7023525969223536 -0.1425518319043876 -0.6974093524015353 0.7023525969223536 0.1425518319043876 0.6974093524015353 -0.9257640070876061 0.03240469828584276 0.3767106830315573 0.9257640070876061 -0.03240469828584276 -0.3767106830315573 -0.7122707414796282 0.04923594247854864 0.7001758441993767 0.7122707414796282 -0.04923594247854864 -0.7001758441993767 0 1 0 -0 -1 -0 -0.3855939466651815 0.1010297577800753 0.9171206552782838 0.3855939466651815 -0.1010297577800753 -0.9171206552782838 0 1 0 -0 -1 -0 -0.698206287333844 -0.07838876277499718 -0.7115920054343605 0.698206287333844 0.07838876277499718 0.7115920054343605 -0.6865612058071743 -0.2129815016822076 -0.6951780999296444 0.6865612058071743 0.2129815016822076 0.6951780999296444 -0.918631782408507 -0.08137942273024804 -0.3866432954352902 0.918631782408507 0.08137942273024804 0.3866432954352902 -0.9976578949460037 0.06826378471123371 -0.004333629980390467 0.9976578949460037 -0.06826378471123371 0.004333629980390467 0 1 0 -0 -1 -0 -0.3892810171184926 0.1013539679360428 0.9155258941694722 -2.393178270834055e-006 0.1094975151487385 0.9939870694181712 2.393178270834055e-006 -0.1094975151487385 -0.9939870694181712 0.3892810171184926 -0.1013539679360428 -0.9155258941694722 0 1 0 -0 -1 -0 -0.3760075129696564 -0.1014619271283846 -0.9210449649901834 -0.3837485045026092 -0.151865364150826 -0.9108644226575917 0.3837485045026092 0.151865364150826 0.9108644226575917 0.3760075129696564 0.1014619271283846 0.9210449649901834 -0.3586501388646112 -0.3043385606965022 -0.8824670636151676 0.3586501388646112 0.3043385606965022 0.8824670636151676 -0.3608812211348434 -0.2502658350465012 -0.8984051179956075 0.3608812211348434 0.2502658350465012 0.8984051179956075 -0.9051185998244229 0.2040136890513151 0.373013049277836 0.9051185998244229 -0.2040136890513151 -0.373013049277836 -0.7023014897468005 0.1308985885008609 0.6997415072924479 0.7023014897468005 -0.1308985885008609 -0.6997415072924479 0 1 0 -0 -1 -0 -0.008401330541124052 0.1380870073671109 0.9903844688006441 0.3855926321539393 0.101029953574417 0.9171211863812481 -0.3855926321539393 -0.101029953574417 -0.9171211863812481 0.008401330541124052 -0.1380870073671109 -0.9903844688006441 0 1 0 -0 -1 -0 -1.638231529636708e-006 -0.1094972025388148 -0.99398710385673 -0.007631153113921558 -0.1391706131257301 -0.9902390145537391 0.007631153113921558 0.1391706131257301 0.9902390145537391 1.638231529636708e-006 0.1094972025388148 0.99398710385673 -0.3662193663722516 -0.3115596822211134 -0.8768203579457914 0.3662193663722516 0.3115596822211134 0.8768203579457914 -0.6959225224503867 -0.1881870782373219 -0.6930205381738634 0.6959225224503867 0.1881870782373219 0.6930205381738634 -0.9233610041195496 -0.02695596401956038 -0.3829854201860868 0.9233610041195496 0.02695596401956038 0.3829854201860868 -0.9900751925700994 0.1405038325815632 -0.003128272234421052 0.9900751925700994 -0.1405038325815632 0.003128272234421052 0 1 0 -0 -1 -0 0.372444873648539 0.1536379776875442 0.9152487027606241 0.7118615315130566 0.07690215948648875 0.6980968541815671 -0.7118615315130566 -0.07690215948648875 -0.6980968541815671 -0.372444873648539 -0.1536379776875442 -0.9152487027606241 -0.3716544858453784 0.2062193195996614 0.9051776264219417 0.3716544858453784 -0.2062193195996614 -0.9051776264219417 0 1 0 -0 -1 -0 0.3760050988688112 -0.1014621485315936 -0.9210459261296412 0.3727923870498216 -0.1053407161597084 -0.9219160317928394 -0.3727923870498216 0.1053407161597084 0.9219160317928394 -0.3760050988688112 0.1014621485315936 0.9210459261296412 0.008524709455946767 -0.2412434067665272 -0.9704271987224861 -0.008524709455946767 0.2412434067665272 0.9704271987224861 -0.001769691265078404 -0.3831527280308419 -0.9236833089297164 0.001769691265078404 0.3831527280308419 0.9236833089297164 0.006757712597036472 -0.3479646493279616 -0.937483299125123 -0.006757712597036472 0.3479646493279616 0.937483299125123 -0.8887837245303268 0.2787263987682289 0.3638338709352034 0.8887837245303268 -0.2787263987682289 -0.3638338709352034 -0.6731366259941853 0.3011140907802258 0.6754386627065128 0.6731366259941853 -0.3011140907802258 -0.6754386627065128 0 1 0 -0 -1 -0 0.92788273378111 0.04082861569481912 0.3706300803919435 0.69743660672445 0.1455764279823549 0.7017048405252619 -0.69743660672445 -0.1455764279823549 -0.7017048405252619 -0.92788273378111 -0.04082861569481912 -0.3706300803919435 0.007541491712564928 0.2479115095044231 0.96875332740486 -0.007541491712564928 -0.2479115095044231 -0.96875332740486 0 1 0 -0 -1 -0 0.6982075685403409 -0.07838876150760024 -0.7115907484659211 0.7003338033897056 -0.05443976690440847 -0.7117365211994555 -0.7003338033897056 0.05443976690440847 0.7117365211994555 -0.6982075685403409 0.07838876150760024 0.7115907484659211 0.3798630473314066 -0.1989567823800468 -0.9033937480506915 -0.3798630473314066 0.1989567823800468 0.9033937480506915 -0.005635586040699611 -0.2960074815373276 -0.9551689960650454 0.005635586040699611 0.2960074815373276 0.9551689960650454 -0.3816071479147141 -0.2387551755530475 -0.8929568583123325 0.3816071479147141 0.2387551755530475 0.8929568583123325 -0.7098304672308439 -0.1417542192581981 -0.6899611939184266 0.7098304672308439 0.1417542192581981 0.6899611939184266 -0.9289611800626436 -0.01936517639756433 -0.369670279951894 0.9289611800626436 0.01936517639756433 0.369670279951894 -0.9944649258713336 0.1045181174147558 0.01074589892926797 0.9944649258713336 -0.1045181174147558 -0.01074589892926797 0.9999060487122554 -0.001500897788054666 -0.01362501576053045 0.9179646390316492 0.1148282162395459 0.3796780244401015 -0.9179646390316492 -0.1148282162395459 -0.3796780244401015 -0.9999060487122554 0.001500897788054666 0.01362501576053045 0.3806523626443638 0.2518291433121385 0.8897673074416356 -0.3806523626443638 -0.2518291433121385 -0.8897673074416356 -0.3537134707814479 0.3497158032888347 0.8675169378852421 0.3537134707814479 -0.3497158032888347 -0.8675169378852421 0.921345206780097 0.005934785861217529 -0.3887001263958144 0.9181623827624436 -0.04338333562204136 -0.3938219458972514 -0.9181623827624436 0.04338333562204136 0.3938219458972514 -0.921345206780097 -0.005934785861217529 0.3887001263958144 0.7015290843239972 -0.1283687549116059 -0.7009838847006245 -0.7015290843239972 0.1283687549116059 0.7009838847006245 0.3657233985650752 -0.3438852352404744 -0.8648637700387356 -0.3657233985650752 0.3438852352404744 0.8648637700387356 0.3642088029488595 -0.3089946523204002 -0.8785637442394 -0.3642088029488595 0.3089946523204002 0.8785637442394 0.3505759552465831 -0.4015174329235807 -0.8460970692901636 -0.3505759552465831 0.4015174329235807 0.8460970692901636 -0.9013961822165807 0.20734820052424 0.3801205682737156 0.9013961822165807 -0.20734820052424 -0.3801205682737156 -0.6596514643945155 0.3673948200588811 0.6556531031849642 0.6596514643945155 -0.3673948200588811 -0.6556531031849642 0.9978309586316174 0.06571395092330679 -0.00388003226236238 -0.9978309586316174 -0.06571395092330679 0.00388003226236238 0.6994711189498942 0.2180208117223518 0.6805931820191191 -0.6994711189498942 -0.2180208117223518 -0.6805931820191191 0.008464885077093781 0.348522777411564 0.93726208679641 -0.008464885077093781 -0.348522777411564 -0.93726208679641 0.9211619882759639 -0.03774266290814756 -0.3873449144523199 -0.9211619882759639 0.03774266290814756 0.3873449144523199 0.6801456499297029 -0.2935333652825748 -0.671744042286635 -0.6801456499297029 0.2935333652825748 0.671744042286635 0.3790810955637079 -0.19642576246323 -0.9042756453797469 -0.3790810955637079 0.19642576246323 0.9042756453797469 -0.006044309831385856 -0.1921480039205631 -0.9813473446787359 0.006044309831385856 0.1921480039205631 0.9813473446787359 -0.3905063998979781 -0.158817254297096 -0.9067975691278908 0.3905063998979781 0.158817254297096 0.9067975691278908 -0.7146296876788553 -0.1007834488547026 -0.6922045260795203 0.7146296876788553 0.1007834488547026 0.6922045260795203 -0.9280009073201813 -0.02617730560519464 -0.3716571870476507 0.9280009073201813 0.02617730560519464 0.3716571870476507 -0.9985404266470882 0.05387682925104136 0.003782012864173349 0.9985404266470882 -0.05387682925104136 -0.003782012864173349 0.9183014699405613 0.1508524255126332 0.3660136008701858 -0.9183014699405613 -0.1508524255126332 -0.3660136008701858 0.3751679501491385 0.2980710925467551 0.8777258301821118 -0.3751679501491385 -0.2980710925467551 -0.8777258301821118 -0.3509058671403431 0.4021828481140018 0.8456441503903361 0.3509058671403431 -0.4021828481140018 -0.8456441503903361 0.998110783889415 0.06055026068505935 -0.01041772598165128 -0.998110783889415 -0.06055026068505935 0.01041772598165128 0.9063208563190007 -0.1999380076574004 -0.3723000114090551 -0.9063208563190007 0.1999380076574004 0.3723000114090551 0.6590070579046725 -0.3672064245772851 -0.6564062304556487 -0.6590070579046725 0.3672064245772851 0.6564062304556487 0.7056660067207059 -0.1711741214844488 -0.6875572027787068 -0.7056660067207059 0.1711741214844488 0.6875572027787068 0.683689509659014 -0.2771341735831983 -0.675103921048141 -0.683689509659014 0.2771341735831983 0.675103921048141 -0.9179897149819096 0.1269594088680677 0.3757342035100124 0.9179897149819096 -0.1269594088680677 -0.3757342035100124 -0.6780154320216124 0.2762585796519279 0.6811580368088197 0.6780154320216124 -0.2762585796519279 -0.6811580368088197 0.7001825816432064 0.2013928833579944 0.6849709912808045 -0.7001825816432064 -0.2013928833579944 -0.6849709912808045 0.00182622600025505 0.3838176269837862 0.9234071117958379 -0.00182622600025505 -0.3838176269837862 -0.9234071117958379 0.9973814967216617 -0.07228423368496069 -0.002267059292581186 -0.9973814967216617 0.07228423368496069 0.002267059292581186 0.8880252344353042 -0.2794186648003958 -0.3651525609485538 -0.8880252344353042 0.2794186648003958 0.3651525609485538 2.767822979625016e-006 -0.9928096497302067 0.119703798581848 6.988246788429636e-006 -0.9928091445060229 0.119707988607209 1.022978707970098e-012 -0.9928086747316344 0.1197118848636839 -1.022978707970098e-012 0.9928086747316344 -0.1197118848636839 -6.988246788429636e-006 0.9928091445060229 -0.119707988607209 -2.767822979625016e-006 0.9928096497302067 -0.119703798581848 7.7044375863041e-006 -0.9928091089888651 0.1197082831276827 -4.487500212477783e-011 -0.992809109018331 0.1197082831312356 4.487500212477783e-011 0.992809109018331 -0.1197082831312356 -7.7044375863041e-006 0.9928091089888651 -0.1197082831276827 -7.704541850535809e-006 -0.9928091089888644 0.1197082831276827 7.704541850535809e-006 0.9928091089888644 -0.1197082831276827 -6.988304734759506e-006 -0.9928091445078384 0.1197079885921475 -2.767862602807982e-006 -0.99280964972893 0.1197037985924347 2.767862602807982e-006 0.99280964972893 -0.1197037985924347 6.988304734759506e-006 0.9928091445078384 -0.1197079885921475 7.263087261654657e-007 -0.9928099450407807 0.119701349314009 -7.263087261654657e-007 0.9928099450407807 -0.119701349314009 -1.620367296495998e-018 -0.9928091383418375 0.1197080399344108 1.620367296495998e-018 0.9928091383418375 -0.1197080399344108 1.864050476297287e-006 -0.9928080027483553 0.1197174576882873 -1.864050476297287e-006 0.9928080027483553 -0.1197174576882873 0.9244950035235966 0.07025899496707923 0.3746633983806281 -0.9244950035235966 -0.07025899496707923 -0.3746633983806281 0.366829762646364 0.3116869016756962 0.8765199373434794 -0.366829762646364 -0.3116869016756962 -0.8765199373434794 -0.3650183505487395 0.306446614185513 0.8791200580221754 0.3650183505487395 -0.306446614185513 -0.8791200580221754 0.989853531960413 -0.142085927353355 0.001254796251494292 -0.989853531960413 0.142085927353355 -0.001254796251494292 0.9089907206869328 -0.2017201479115875 -0.3647531379324622 -0.9089907206869328 0.2017201479115875 0.3647531379324622 -7.263066999167067e-007 -0.9928099450412038 0.1197013493105016 7.263066999167067e-007 0.9928099450412038 -0.1197013493105016 0.9235320681947282 -0.1196443897616437 -0.364381309913848 -0.9235320681947282 0.1196443897616437 0.364381309913848 3.72812004797981e-006 -0.9928074639693836 0.1197219256142426 -3.72812004797981e-006 0.9928074639693836 -0.1197219256142426 -0.7014909392805421 0.1815654435095798 0.6891621375485398 0.7014909392805421 -0.1815654435095798 -0.6891621375485398 0.6969906333227904 0.1873181938119533 0.6921820218174717 -0.6969906333227904 -0.1873181938119533 -0.6921820218174717 -0.003396875497569148 0.2964495907894091 0.9550424604998702 0.003396875497569148 -0.2964495907894091 -0.9550424604998702 0.9240998232652282 0.02525655702831663 0.3813156474212005 -0.9240998232652282 -0.02525655702831663 -0.3813156474212005 0.9958207025834769 -0.09034340820677622 0.01338644462634576 -0.9958207025834769 0.09034340820677622 -0.01338644462634576 1.53915816714803e-022 -0.9928091383418375 0.11970803993441 -1.53915816714803e-022 0.9928091383418375 -0.11970803993441 4.737953150718969e-006 -0.9928073430655861 0.1197229281825484 -9.319458481162999e-007 -0.9928076242494585 0.1197205965207222 9.319458481162999e-007 0.9928076242494585 -0.1197205965207222 -4.737953150718969e-006 0.9928073430655861 -0.1197229281825484 0.3650778311907859 0.2458346860527413 0.8979328952134352 -0.3650778311907859 -0.2458346860527413 -0.8979328952134352 -0.3825054217257609 0.2090597695823078 0.8999908972276278 0.3825054217257609 -0.2090597695823078 -0.8999908972276278 0.9182591755738117 0.03778298693575775 0.3941732263519633 -0.9182591755738117 -0.03778298693575775 -0.3941732263519633 0.9986935520278727 -0.04870062046963348 0.01547380702423765 -0.9986935520278727 0.04870062046963348 -0.01547380702423765 -1.864045275509994e-006 -0.99280800274727 0.1197174576972886 1.864045275509994e-006 0.99280800274727 -0.1197174576972886 -4.943669760534657e-011 -0.992807905415018 0.1197182648781908 4.943669760534657e-011 0.992807905415018 -0.1197182648781908 0.6914121802415991 0.1565791227048186 0.7052887177224286 -0.6914121802415991 -0.1565791227048186 -0.7052887177224286 -0.00671355415309078 0.2049424367028966 0.9787510029772194 0.00671355415309078 -0.2049424367028966 -0.9787510029772194 0.9191827796336586 0.0314685300227289 0.3925719669603901 -0.9191827796336586 -0.0314685300227289 -0.3925719669603901 -3.728117051116277e-006 -0.9928074639650725 0.1197219256499936 3.728117051116277e-006 0.9928074639650725 -0.1197219256499936 9.318671640651015e-007 -0.9928076242463607 0.119720596546412 -9.318671640651015e-007 0.9928076242463607 -0.119720596546412 0.3723992922150309 0.1695607732054095 0.9124515939751148 -0.3723992922150309 -0.1695607732054095 -0.9124515939751148 0.6982521995652733 0.108409624641729 0.7075953780850305 -0.6982521995652733 -0.108409624641729 -0.7075953780850305 -4.737926818070232e-006 -0.9928073430628038 0.119722928205621 4.737926818070232e-006 0.9928073430628038 -0.119722928205621</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"300\" source=\"#ID1921\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1919\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1917\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1918\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"448\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1919\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 8 7 16 17 10 9 6 18 7 10 19 11 1 20 12 13 21 4 2 12 22 23 13 3 14 24 1 4 25 15 26 14 0 5 15 27 16 7 28 29 10 17 18 30 7 10 31 19 20 32 12 13 33 21 24 20 1 4 21 25 12 34 22 23 35 13 36 24 14 15 25 37 38 14 26 27 15 39 28 7 40 41 10 29 38 26 42 43 27 39 30 44 7 10 45 31 22 34 46 47 35 23 20 48 32 33 49 21 12 32 34 35 33 13 24 50 20 21 51 25 36 52 24 25 53 37 38 36 14 15 37 39 7 54 40 41 55 10 56 42 57 58 43 59 56 38 42 43 39 59 44 60 7 10 61 45 62 46 63 64 47 65 46 34 63 64 35 47 32 48 66 67 49 33 50 48 20 21 49 51 34 32 68 69 33 35 52 50 24 25 51 53 70 52 36 37 53 71 72 36 38 39 37 73 7 74 54 55 75 10 76 57 77 78 58 79 76 56 57 58 59 79 38 56 72 73 59 39 60 80 7 10 81 61 82 62 83 84 65 85 62 63 83 84 64 65 63 34 68 69 35 64 48 86 66 67 87 49 68 32 66 67 33 69 50 88 48 49 89 51 52 90 50 51 91 53 70 92 52 53 93 71 72 70 36 37 71 73 7 94 74 75 95 10 96 77 97 98 78 99 96 76 77 78 79 99 56 76 100 101 79 59 72 56 100 101 59 73 80 102 7 10 103 81 104 82 105 106 85 107 82 83 105 106 84 85 83 63 108 109 64 84 63 68 108 109 69 64 86 110 66 67 111 87 88 86 48 49 87 89 68 66 112 113 67 69 90 88 50 51 89 91 92 90 52 53 91 93 114 92 70 71 93 115 116 70 72 73 71 117 7 118 94 95 119 10 120 121 97 98 122 123 121 96 97 98 99 122 76 96 124 125 99 79 100 76 124 125 79 101 116 72 100 101 73 117 102 126 7 10 127 103 128 104 129 130 107 131 104 105 129 130 106 107 105 83 132 133 84 106 83 108 132 133 109 84 108 68 112 113 69 109 86 134 110 111 135 87 66 110 112 113 111 67 88 136 86 87 137 89 90 138 88 89 139 91 92 140 90 91 141 93 114 142 92 93 143 115 116 114 70 71 115 117 7 126 118 119 127 10 144 145 120 123 146 147 145 121 120 123 122 146 96 121 148 149 122 99 124 96 148 149 99 125 150 100 124 125 101 151 150 116 100 101 117 151 128 152 153 154 155 131 129 152 128 131 155 130 129 105 156 157 106 130 105 132 156 157 133 106 132 108 158 159 109 133 108 112 158 159 113 109 134 160 110 111 161 135 136 134 86 87 135 137 110 162 112 113 163 111 138 136 88 89 137 139 140 138 90 91 139 141 142 140 92 93 141 143 164 142 114 115 143 165 166 114 116 117 115 167 153 168 144 147 169 154 168 145 144 147 146 169 145 170 121 122 171 146 148 121 170 171 122 149 172 124 148 149 125 173 172 150 124 125 151 173 166 116 150 151 117 167 152 168 153 154 169 155 129 174 152 155 175 130 156 174 129 130 175 157 156 132 176 177 133 157 132 158 176 177 159 133 112 162 158 159 163 113 134 178 160 161 179 135 110 160 162 163 161 111 136 180 134 135 181 137 138 182 136 137 183 139 140 184 138 139 185 141 142 186 140 141 187 143 164 188 142 143 189 165 166 164 114 115 165 167 168 190 145 146 191 169 190 170 145 146 171 191 192 148 170 171 149 193 192 172 148 149 173 193 194 150 172 173 151 195 194 166 150 151 167 195 152 196 168 169 197 155 174 196 152 155 197 175 156 198 174 175 199 157 176 198 156 157 199 177 158 200 176 177 201 159 162 200 158 159 201 163 160 178 202 203 179 161 134 180 178 179 181 135 160 204 162 163 205 161 136 182 180 181 183 137 138 184 182 183 185 139 186 184 140 141 185 187 188 186 142 143 187 189 206 188 164 165 189 207 208 164 166 167 165 209 196 190 168 169 191 197 190 210 170 171 211 191 210 192 170 171 193 211 212 172 192 193 173 213 212 194 172 173 195 213 208 166 194 195 167 209 174 214 196 197 215 175 198 214 174 175 215 199 176 216 198 199 217 177 200 216 176 177 217 201 162 204 200 201 205 163 218 219 220 221 222 223 160 202 204 205 203 161 224 225 220 221 226 227 225 228 220 221 229 226 230 231 220 221 232 233 231 234 220 221 235 232 220 234 236 237 235 221 220 236 238 239 237 221 208 206 164 165 207 209 196 240 190 191 241 197 240 210 190 191 211 241 242 192 210 211 193 243 242 212 192 193 213 243 244 194 212 213 195 245 244 208 194 195 209 245 214 240 196 197 241 215 198 246 214 215 247 199 216 246 198 199 247 217 200 248 216 217 249 201 204 248 200 201 249 205 250 218 220 221 223 251 202 252 204 205 253 203 220 238 254 255 239 221 256 206 208 209 207 257 240 258 210 211 259 241 258 242 210 211 243 259 260 212 242 243 213 261 260 244 212 213 245 261 256 208 244 245 209 257 214 262 240 241 263 215 246 262 214 215 263 247 216 264 246 247 265 217 248 264 216 217 265 249 204 252 248 249 253 205 266 250 220 221 251 267 220 268 269 270 271 221 262 258 240 241 259 263 272 242 258 259 243 273 272 260 242 243 261 273 274 244 260 261 245 275 274 256 244 245 257 275 246 276 262 263 277 247 264 276 246 247 277 265 248 278 264 265 279 249 252 278 248 249 279 253 266 220 280 281 221 267 220 269 282 283 270 221 262 284 258 259 285 263 284 272 258 259 273 285 286 260 272 273 261 287 286 274 260 261 275 287 276 284 262 263 285 277 264 288 276 277 289 265 278 288 264 265 289 279 280 220 290 291 221 281 292 220 282 283 221 293 294 272 284 285 273 295 294 286 272 273 287 295 276 296 284 285 297 277 288 296 276 277 297 289 298 220 292 293 221 299 296 294 284 285 295 297</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry id=\"ID1922\">\r\n\t\t\t<mesh>\r\n\t\t\t\t<source id=\"ID1923\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID1926\">0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID1926\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source id=\"ID1924\">\r\n\t\t\t\t\t<float_array count=\"168\" id=\"ID1927\">-0.01178446120591827 -0.9735588360470699 -0.2281322406604561 -0.01077676797450188 -0.8903022429431368 -0.4552425479702483 -0.01178204009587801 -0.9733659401803182 -0.2289539910725835 0.01178204009587801 0.9733659401803182 0.2289539910725835 0.01077676797450188 0.8903022429431368 0.4552425479702483 0.01178446120591827 0.9735588360470699 0.2281322406604561 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0.01210293299673509 -0.999860850551699 0.01148035482507463 0.01210293299673509 0.999860850551699 -0.01148035482507463 -0.01077629623372305 -0.8903027469965876 -0.455241573375953 -0.01077629623372305 -0.8903027469965876 -0.455241573375953 0.01077629623372305 0.8903027469965876 0.455241573375953 0.01077629623372305 0.8903027469965876 0.455241573375953 0.0119993417301939 0.991302854576546 -0.1310521510942627 0.0119993417301939 0.991302854576546 -0.1310521510942627 0.0119993417301939 0.991302854576546 -0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 1 0 0 -1 -0 -0 -0.01210266464271436 -0.9998608479078918 0.01148086797494273 -0.01210266464271436 -0.9998608479078918 0.01148086797494273 0.01210266464271436 0.9998608479078918 -0.01148086797494273 0.01210266464271436 0.9998608479078918 -0.01148086797494273 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.01199880883641628 0.991302784932601 -0.1310527266842495 0.01199880883641628 0.991302784932601 -0.1310527266842495 0.01199880883641628 0.991302784932601 -0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -1 0 0 1 -0 -0</float_array>\r\n\t\t\t\t\t<technique_common>\r\n\t\t\t\t\t\t<accessor count=\"56\" source=\"#ID1927\" stride=\"3\">\r\n\t\t\t\t\t\t\t<param name=\"X\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Y\" type=\"float\" />\r\n\t\t\t\t\t\t\t<param name=\"Z\" type=\"float\" />\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices id=\"ID1925\">\r\n\t\t\t\t\t<input semantic=\"POSITION\" source=\"#ID1923\" />\r\n\t\t\t\t\t<input semantic=\"NORMAL\" source=\"#ID1924\" />\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles count=\"24\" material=\"Material2\">\r\n\t\t\t\t\t<input offset=\"0\" semantic=\"VERTEX\" source=\"#ID1925\" />\r\n\t\t\t\t\t<p>0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 15 2 3 16 17 18 19 20 21 22 23 7 24 8 9 25 10 26 0 27 28 5 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 30 32 54 55 33 35</p>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<library_materials>\r\n\t\t<material id=\"ID7\" name=\"material_0\">\r\n\t\t\t<instance_effect url=\"#ID8\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID20\" name=\"material_1\">\r\n\t\t\t<instance_effect url=\"#ID21\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID38\" name=\"material_2\">\r\n\t\t\t<instance_effect url=\"#ID39\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID48\" name=\"material_3\">\r\n\t\t\t<instance_effect url=\"#ID49\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID145\" name=\"material_4\">\r\n\t\t\t<instance_effect url=\"#ID146\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID150\" name=\"material_5\">\r\n\t\t\t<instance_effect url=\"#ID151\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID189\" name=\"material_6\">\r\n\t\t\t<instance_effect url=\"#ID190\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID200\" name=\"material_7\">\r\n\t\t\t<instance_effect url=\"#ID201\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID347\" name=\"material_8\">\r\n\t\t\t<instance_effect url=\"#ID348\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID384\" name=\"material_9\">\r\n\t\t\t<instance_effect url=\"#ID385\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID626\" name=\"material_10\">\r\n\t\t\t<instance_effect url=\"#ID627\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID692\" name=\"edge_color167167167255\">\r\n\t\t\t<instance_effect url=\"#ID693\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID754\" name=\"edge_color222222255\">\r\n\t\t\t<instance_effect url=\"#ID755\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID1223\" name=\"material_11\">\r\n\t\t\t<instance_effect url=\"#ID1224\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID1304\" name=\"material_12\">\r\n\t\t\t<instance_effect url=\"#ID1305\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID1538\" name=\"material_13\">\r\n\t\t\t<instance_effect url=\"#ID1539\" />\r\n\t\t</material>\r\n\t\t<material id=\"ID1551\" name=\"material_14\">\r\n\t\t\t<instance_effect url=\"#ID1552\" />\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<library_effects>\r\n\t\t<effect id=\"ID8\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID11\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID9\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID11\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID21\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.5019607843137255 0.5019607843137255 0.5019607843137255 0.5019607843137255</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"RGB_ZERO\">\r\n\t\t\t\t\t\t\t<color>0.4980392156862745 0.4980392156862745 0.4980392156862745 0.4980392156862745</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID39\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0 0.392156862745098 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID49\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>1 0.9215686274509803 0.803921568627451 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID146\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.1372549019607843 0.1372549019607843 0.1372549019607843 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID151\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID154\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID152\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID154\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID190\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>1 0.5490196078431373 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID201\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID204\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID202\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID204\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID348\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID351\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID349\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID351\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID385\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.9607843137254902 0.9607843137254902 0.9607843137254902 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID627\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.4313725490196079 0.4549019607843137 0.5294117647058824 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID693\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<constant>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>0.6549019607843137 0.6549019607843137 0.6549019607843137 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</constant>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID755\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<constant>\r\n\t\t\t\t\t\t<transparent opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color>0.08627450980392157 0.08627450980392157 0.08627450980392157 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</constant>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID1224\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID1227\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID1225\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID1227\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID1305\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.7215686274509804 0.5254901960784314 0.04313725490196078 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID1539\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<newparam sid=\"ID1542\">\r\n\t\t\t\t\t<sampler2D>\r\n\t\t\t\t\t\t<instance_image url=\"#ID1540\" />\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t</newparam>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<texture texcoord=\"UVSET0\" texture=\"ID1542\" />\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparent opaque=\"RGB_ZERO\">\r\n\t\t\t\t\t\t\t<color>0.1399999856948853 0.1399999856948853 0.1399999856948853 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<transparency>\r\n\t\t\t\t\t\t\t<float>1</float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect id=\"ID1552\">\r\n\t\t\t<profile_COMMON>\r\n\t\t\t\t<technique sid=\"COMMON\">\r\n\t\t\t\t\t<lambert>\r\n\t\t\t\t\t\t<diffuse>\r\n\t\t\t\t\t\t\t<color>0.5450980392156862 0 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_images>\r\n\t\t<image id=\"ID9\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>mg midget/texture0_fix.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID152\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>mg midget/texture1_fix.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID202\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>mg midget/texture2_fix.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID349\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>mg midget/texture3_fix.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID1225\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>mg midget/texture4.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image id=\"ID1540\">\r\n\t\t\t<init_from>\r\n\t\t\t\t<ref>mg midget/texture5.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t</library_images>\r\n\t<scene>\r\n\t\t<instance_visual_scene url=\"#ID1\" />\r\n\t</scene>\r\n</COLLADA>\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/cube.dae",
    "content": "<COLLADA base=\"\" version=\"1.5\">\r\n\t<asset xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t<modified xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">2006-06-21T21:25:37Z</modified>\r\n\t\t<up_axis xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Y_UP</up_axis>\r\n\t\t<subject xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></subject>\r\n\t\t<created xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">2006-06-21T21:25:37Z</created>\r\n\t\t<revision xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></revision>\r\n\t\t<keywords xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></keywords>\r\n\t\t<title xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></title>\r\n\t\t<unit xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" meter=\"0.01\" name=\"centimeter\"></unit>\r\n\t\t<contributor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t<author_website xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></author_website>\r\n\t\t\t<author xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">alorino</author>\r\n\t\t\t<source_data xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></source_data>\r\n\t\t\t<comments xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=0;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<author_email xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></author_email>\r\n\t\t\t<authoring_tool xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Maya 7.0 | ColladaMaya v2.01 Jun  9 2006 at 16:08:19 | FCollada v1.11</authoring_tool>\r\n\t\t\t<copyright xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Copyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&#34;License&#34;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &#34;AS IS&#34; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.</copyright>\r\n\t\t</contributor>\r\n\t</asset>\r\n\t<library_cameras xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"cl_unnamed_1\" id=\"cl_unnamed_1\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t\t<camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"testCameraShape\" id=\"testCameraShape\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n\t<library_materials xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"Blue\" name=\"Blue\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#Blue-fx\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"Red\" name=\"Red\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#Red-fx\"></instance_effect>\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<library_geometries xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"box\" id=\"box-lib\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"position\" id=\"box-lib-positions\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"box-lib-positions-array\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">-50 50 50 50 50 50 -50 -50 50 50 -50 50 -50 50 -50 50 50 -50 -50 -50 -50 50 -50 -50</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#box-lib-positions-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"normal\" id=\"box-lib-normals\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"box-lib-normals-array\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"72\">0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"24\" source=\"#box-lib-normals-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"box-lib-vertices\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#box-lib-positions\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<polylist xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" count=\"5\" material=\"BlueSG\">\r\n\t\t\t\t\t<vcount xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4 4 4 4 4</vcount>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#box-lib-vertices\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#box-lib-normals\" offset=\"1\" semantic=\"NORMAL\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 5 2 4 3 6 4 7 5 3 6 2 7 0 8 4 9 6 10 2 11 3 12 7 13 5 14 1 15 5 16 7 17 6 18 4 19</p>\r\n\t\t\t\t</polylist>\r\n\t\t\t\t<polylist xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" count=\"1\" material=\"RedSG\">\r\n\t\t\t\t\t<vcount xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4</vcount>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#box-lib-vertices\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#box-lib-normals\" offset=\"1\" semantic=\"NORMAL\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 20 2 21 3 22 1 23</p>\r\n\t\t\t\t</polylist>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<library_lights xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"Lt_Light\" id=\"Lt_Light-lib\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<point xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<quadratic_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></quadratic_attenuation>\r\n\t\t\t\t\t<constant_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></constant_attenuation>\r\n\t\t\t\t\t<linear_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></linear_attenuation>\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t\t<light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"pointLightShape1\" id=\"pointLightShape1-lib\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<point xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<quadratic_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></quadratic_attenuation>\r\n\t\t\t\t\t<constant_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></constant_attenuation>\r\n\t\t\t\t\t<linear_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></linear_attenuation>\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_effects xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"Blue-fx\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"common\" id=\"\">\r\n\t\t\t\t\t<phong xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.137255 0.403922 0.870588 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.5 0.5 0.5 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"Red-fx\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"common\" id=\"\">\r\n\t\t\t\t\t<phong xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.658824 0.101961 0.109804 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.368627 0.368627 0.368627 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_visual_scenes xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<visual_scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"untitled\" id=\"VisualSceneNode\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"Camera\" layer=\"\" type=\"\" id=\"Camera\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#cl_unnamed_1\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"Light\" layer=\"\" type=\"\" id=\"Light\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#Lt_Light-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"Box\" layer=\"\" type=\"\" id=\"Box\" sid=\"\">\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#box-lib\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"BlueSG\" target=\"#Blue\" name=\"\"></instance_material>\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"RedSG\" target=\"#Red\" name=\"\"></instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"testCamera\" layer=\"\" type=\"\" id=\"testCamera\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#testCameraShape\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"pointLight1\" layer=\"\" type=\"\" id=\"pointLight1\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#pointLightShape1-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t<instance_visual_scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#VisualSceneNode\" sid=\"\" name=\"\"></instance_visual_scene>\r\n\t</scene>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/cube_triangulate.dae",
    "content": "<COLLADA base=\"\" version=\"1.5\">\r\n\t<asset xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t<modified xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">2006-06-21T21:25:37Z</modified>\r\n\t\t<up_axis xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Y_UP</up_axis>\r\n\t\t<subject xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></subject>\r\n\t\t<created xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">2006-06-21T21:25:37Z</created>\r\n\t\t<revision xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></revision>\r\n\t\t<keywords xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></keywords>\r\n\t\t<title xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></title>\r\n\t\t<unit xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" meter=\"0.01\" name=\"centimeter\"></unit>\r\n\t\t<contributor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t<author_website xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></author_website>\r\n\t\t\t<author xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">alorino</author>\r\n\t\t\t<source_data xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></source_data>\r\n\t\t\t<comments xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=0;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<author_email xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></author_email>\r\n\t\t\t<authoring_tool xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Maya 7.0 | ColladaMaya v2.01 Jun  9 2006 at 16:08:19 | FCollada v1.11</authoring_tool>\r\n\t\t\t<copyright xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Copyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&#34;License&#34;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &#34;AS IS&#34; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.</copyright>\r\n\t\t</contributor>\r\n\t</asset>\r\n\t<library_cameras xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"cl_unnamed_1\" id=\"cl_unnamed_1\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t\t<camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"testCameraShape\" id=\"testCameraShape\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n\t<library_materials xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"Blue\" name=\"Blue\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#Blue-fx\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"Red\" name=\"Red\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#Red-fx\"></instance_effect>\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<library_geometries xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"box\" id=\"box-lib\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"position\" id=\"box-lib-positions\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"box-lib-positions-array\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">-50 50 50 50 50 50 -50 -50 50 50 -50 50 -50 50 -50 50 50 -50 -50 -50 -50 50 -50 -50</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#box-lib-positions-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"normal\" id=\"box-lib-normals\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"box-lib-normals-array\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"72\">0 1 0 0 1 0 0 1 0 0 1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"24\" source=\"#box-lib-normals-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"box-lib-vertices\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#box-lib-positions\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"BlueSG\" count=\"10\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 5 2 0 0 5 2 4 3 6 4 7 5 3 6 6 4 3 6 2 7 0 8 4 9 6 10 0 8 6 10 2 11 3 12 7 13 5 14 3 12 5 14 1 15 5 16 7 17 6 18 5 16 6 18 4 19</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#box-lib-vertices\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#box-lib-normals\" offset=\"1\" semantic=\"NORMAL\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"RedSG\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 20 2 21 3 22 0 20 3 22 1 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#box-lib-vertices\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#box-lib-normals\" offset=\"1\" semantic=\"NORMAL\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<library_lights xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"Lt_Light\" id=\"Lt_Light-lib\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<point xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<quadratic_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></quadratic_attenuation>\r\n\t\t\t\t\t<constant_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></constant_attenuation>\r\n\t\t\t\t\t<linear_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></linear_attenuation>\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t\t<light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"pointLightShape1\" id=\"pointLightShape1-lib\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<point xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<quadratic_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></quadratic_attenuation>\r\n\t\t\t\t\t<constant_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></constant_attenuation>\r\n\t\t\t\t\t<linear_attenuation xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></linear_attenuation>\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t</point>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_effects xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"Blue-fx\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"common\" id=\"\">\r\n\t\t\t\t\t<phong xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.137255 0.403922 0.870588 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.5 0.5 0.5 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"Red-fx\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"common\" id=\"\">\r\n\t\t\t\t\t<phong xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.658824 0.101961 0.109804 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.368627 0.368627 0.368627 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t</phong>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_visual_scenes xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<visual_scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"untitled\" id=\"VisualSceneNode\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"Camera\" layer=\"\" type=\"\" id=\"Camera\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#cl_unnamed_1\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"Light\" layer=\"\" type=\"\" id=\"Light\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#Lt_Light-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"Box\" layer=\"\" type=\"\" id=\"Box\" sid=\"\">\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#box-lib\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"BlueSG\" target=\"#Blue\" name=\"\"></instance_material>\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"RedSG\" target=\"#Red\" name=\"\"></instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"testCamera\" layer=\"\" type=\"\" id=\"testCamera\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#testCameraShape\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"pointLight1\" layer=\"\" type=\"\" id=\"pointLight1\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#pointLightShape1-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t<instance_visual_scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#VisualSceneNode\" sid=\"\" name=\"\"></instance_visual_scene>\r\n\t</scene>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/duck.dae",
    "content": "<COLLADA base=\"\" version=\"1.5\">\r\n\t<asset xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t<modified xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">2007-02-21T22:47:42Z</modified>\r\n\t\t<up_axis xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Y_UP</up_axis>\r\n\t\t<subject xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></subject>\r\n\t\t<created xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">2006-08-23T22:29:59Z</created>\r\n\t\t<revision xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></revision>\r\n\t\t<keywords xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></keywords>\r\n\t\t<title xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></title>\r\n\t\t<unit xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" meter=\"0.01\" name=\"centimeter\"></unit>\r\n\t\t<contributor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t<author_website xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></author_website>\r\n\t\t\t<author xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">gcorson</author>\r\n\t\t\t<source_data xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">file:///C:/vs2005/sample_data/Complete_Packages/SCEA_Private/Maya_MoonLander/Moonlander/untitled</source_data>\r\n\t\t\t<comments xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=0;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=1;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<author_email xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></author_email>\r\n\t\t\t<authoring_tool xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Maya 8.0 | ColladaMaya v3.02 | FCollada v3.2</authoring_tool>\r\n\t\t\t<copyright xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Copyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&#34;License&#34;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &#34;AS IS&#34; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.</copyright>\r\n\t\t</contributor>\r\n\t</asset>\r\n\t<library_cameras xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"cameraShape1\" id=\"cameraShape1\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n\t<library_materials xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"blinn3\" name=\"blinn3\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#blinn3-fx\"></instance_effect>\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<library_geometries xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"LOD3spShape\" id=\"LOD3spShape-lib\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"position\" id=\"LOD3spShape-lib-positions\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"LOD3spShape-lib-positions-array\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6324\">35.0226 89.3874 23.3732 19.5676 89.7173 22.4879 9.22909 91.5427 17.1037 4.33048 88.7008 4.57726 45.0571 89.4178 19.824 -30.5196 11.6272 25.1326 -15.6992 11.4278 34.2321 51.8411 17.7055 36.5602 65.7206 18.372 27.0862 56.0117 11.4345 22.6963 -23.2343 18.1488 41.0429 -40.9218 18.6322 29.6382 62.4487 11.3989 12.9806 60.2326 28.1944 39.5949 71.2984 29.0359 29.3335 -32.9737 29.6914 43.477 -48.95 28.9358 31.4102 73.8118 41.7425 29.8584 65.2513 41.3955 39.884 72.6597 55.003 29.2468 64.6263 55.4849 38.2648 66.5829 66.4165 27.9218 55.5179 67.734 35.7358 43.4971 75.6992 31.8699 56.934 75.0037 25.7495 14.7601 73.8701 35.1574 -12.1248 73.9991 28.9191 14.7016 78.8465 28.8886 -3.37962 78.0576 23.1953 -24.7824 78.2304 7.65121 4.94216 81.4267 15.8195 -54.7257 89.9761 8.84491 -53.6566 74.7375 26.9735 -44.1714 77.8938 26.1268 -64.7587 73.8997 7.15297 -61.5691 65.6958 25.2253 -42.9296 61.2502 39.4496 -64.9663 57.2673 21.7398 -48.9596 49.2561 39.8218 -58.3698 43.9468 28.036 -31.7993 70.8398 33.4366 -33.1153 82.3349 8.62471 48.2452 81.0789 22.327 34.1225 80.5718 26.6473 15.5527 81.3807 24.423 0.65596 81.0723 3.99376 15.1798 11.41 36.4164 17.2973 17.3674 43.2976 43.8649 67.7941 39.8677 55.9835 56.1625 42.7808 56.4187 41.7648 44.4371 46.9566 29.0085 44.2399 18.041 21.337 45.4158 -24.2634 29.7596 46.4694 -37.1346 44.6474 44.4312 -35.8668 57.8953 42.7333 -24.1626 66.8013 39.6298 -14.2645 43.4767 51.8892 10.1522 43.8267 53.9252 -10.3735 36.316 51.8336 -14.5047 52.2745 51.0455 9.35439 52.1796 53.5056 24.5685 36.9247 52.4691 11.2191 35.6243 52.5988 27.0248 44.5585 52.8835 25.4374 55.0852 52.0724 9.23132 59.258 51.2115 21.2751 61.6417 50.3945 -11.0645 57.3325 50.3033 -22.8339 53.8174 48.6047 -22.3883 43.3299 49.8488 -13.3437 34.4469 50.7719 -15.0193 59.7488 48.0109 12.3031 31.6369 51.4681 28.2 34.9703 51.4911 34.9314 44.1559 51.2583 33.7281 55.8993 50.0475 24.8495 63.37 48.6114 9.96162 62.8873 48.4038 6.73344 84.5266 2.83788 10.2211 84.9641 13.1445 19.05 85.0093 20.4734 35.2584 84.9759 22.0089 44.8651 85.199 18.7578 54.1484 90.1992 13.1393 25.84 89.3162 23.5593 14.5318 90.4728 20.5795 5.99276 89.5698 10.1098 59.1034 90.0324 3.37689 -23.9364 11.5353 30.6125 -11.459 10.0413 29.8243 -24.5326 10.1147 22.2069 -35.1528 11.6836 17.7191 61.5472 14.2726 25.2082 43.6854 11.43 30.0164 47.7677 14.1162 33.6212 -19.459 14.309 37.9267 -36.067 14.5054 27.6816 -32.9292 18.5574 36.7248 -46.1733 18.6604 20.5246 73.3418 18.3468 14.9194 68.8732 23.4107 28.4208 55.7803 22.4988 38.5465 -27.0171 23.4671 43.0366 -45.2302 23.6628 30.9246 -41.0731 29.3325 39.4763 79.4615 29.1894 16.0672 76.9844 23.4678 15.5749 72.8865 35.1223 29.8369 63.2406 34.5574 39.8307 81.8608 42.114 16.7292 80.9318 35.3877 16.409 66.0817 48.5555 39.2449 73.9987 48.5347 29.6857 80.1688 55.1853 16.948 81.5894 48.8387 16.9628 61.1927 62.0057 37.295 70.17 61.0152 28.6395 74.8647 66.3268 16.601 77.7874 61.0196 16.7611 61.7637 71.037 26.8557 67.1835 75.4493 16.6366 71.6321 71.1772 16.667 -7.40039 76.1581 26.3759 14.8335 76.3145 32.0471 -20.947 75.0059 21.3995 -9.30957 78.0917 17.6635 2.33308 81.2658 10.7014 -55.3055 81.4823 20.1865 -44.1025 82.8784 21.08 -48.3998 77.2606 26.9595 -63.8341 69.8359 17.705 -58.2579 70.6396 26.4175 -58.1459 60.4109 31.5845 -50.1918 68.7831 33.097 -53.5557 46.1592 34.9928 -63.069 52.729 24.0553 -63.6495 60.7883 23.3658 -54.4261 28.5392 21.6382 -12.4228 39.2454 51.9419 -52.1766 34.1006 30.9987 -39.3582 37.1753 42.8245 -63.2047 33.3562 7.77354 -14.9689 48.0973 51.5712 -13.2184 68.1588 38.5488 -20.841 71.9312 31.5875 -34.0814 73.6573 23.1685 39.0864 77.6536 29.4959 52.286 78.2905 24.2985 28.6752 75.0467 34.74 24.5284 79.4248 29.0977 58.2456 81.6454 14.9372 62.5867 78.8584 16.1198 -40.058 73.3058 29.0169 -62.4832 42.7738 19.6053 -66.2542 57.7677 16.0138 -46.3972 55.562 40.3341 46.1403 83.2928 20.059 52.8472 87.516 12.3304 24.3957 81.2413 26.4145 17.5457 83.2299 21.6568 35.0308 86.9496 21.9178 5.66061 83.0193 2.97282 39.2717 10.0042 25.9897 49.7414 9.99683 19.7068 14.6156 10.0124 31.7958 28.2119 11.4278 34.5791 55.179 10.0309 11.4214 16.1259 13.9798 40.2177 33.0793 17.7336 41.3765 18.9195 36.2041 52.5892 10.6044 39.6524 53.4314 18.2523 44.3116 53.7955 25.9535 39.9994 52.7745 9.73549 48.0914 53.8815 16.9236 53.6009 53.2898 26.8721 49.8693 52.6952 9.12603 55.8675 52.7181 15.9783 60.8706 50.8542 23.2428 59.2083 51.1997 15.2006 70.9348 38.4909 -38.0814 66.6122 37.6368 -31.4745 63.2943 41.295 -12.9337 55.4359 50.6592 -29.8093 42.9681 46.5354 -18.6612 31.1764 47.8255 -30.266 55.8423 44.7033 36.2897 31.2217 48.0605 46.511 42.7776 47.7899 45.6636 56.4673 46.2574 32.8524 66.1703 44.2955 12.3579 67.2602 43.2175 -19.149 38.1518 50.4005 -23.6628 48.8825 49.2194 21.1045 32.7401 51.4785 32.4268 38.9651 51.46 35.2465 50.0413 50.7771 17.9201 63.7837 48.4371 30.018 60.597 49.2453 -20.4236 57.6424 48.1257 -7.11345 60.5511 48.2081 -5.54756 57.4675 50.6459 -6.2067 51.4293 52.475 -5.95461 43.3855 53.166 -4.66971 35.7333 52.2177 -5.70251 32.445 51.1085 -8.3205 17.8723 43.3717 -2.69678 11.3425 36.4653 -27.2981 42.8866 48.0687 -27.8897 55.043 46.5161 -16.4436 32.2248 49.3054 -18.5848 62.3861 45.599 13.6265 28.0639 49.9986 41.3922 43.4352 49.4685 32.3868 32.7171 49.8711 40.4699 56.3449 48.0345 28.9733 65.0389 46.3945 11.0523 65.6624 45.6909 -37.9272 11.78 6.99728 -50.2675 18.389 7.36354 75.8256 18.3928 2.93945 64.2756 11.6576 2.65993 82.8128 29.1368 2.93945 85.8726 42.1384 2.93945 84.9147 55.2091 3.25752 79.936 66.2007 3.25752 72.9207 75.6569 3.11665 -13.2799 78.2816 6.78078 -42.4217 91.5301 9.02211 -66.2519 42.375 7.59116 -67.9758 58.5114 6.99802 8.76422 81.5601 20.2429 8.65004 83.1534 13.7124 6.16626 86.3527 3.3376 10.3479 87.4003 13.9949 7.91973 84.7475 8.18356 19.5238 87.0994 20.6484 13.8638 85.0248 17.2846 35.1961 83.043 23.5111 26.055 84.941 22.3278 44.4291 87.1742 18.6599 55.1672 83.7325 13.2216 53.3737 85.5572 12.3674 -18.7264 10.108 26.6814 -28.5504 10.1785 15.7995 -28.6467 14.412 33.9793 -40.9463 14.6426 19.2219 68.6182 14.2022 14.0757 -36.9819 23.7436 38.5844 48.5084 72.1529 33.9029 -14.7042 76.6096 19.7209 -49.515 83.8778 20.7678 -60.3339 76.3635 19.0618 -54.5522 64.8765 32.9243 -60.8158 55.9957 28.5728 -50.6442 23.4975 21.2438 -45.1383 35.1824 39.0803 -57.747 33.5446 21.51 -27.5531 73.6877 22.8942 26.6207 76.9559 31.9144 -39.393 77.9086 22.2647 -65.5928 51.6658 17.2594 -44.8336 71.3336 32.1213 -65.569 63.5509 16.5565 25.3055 83.1594 23.781 12.1192 83.2358 18.075 25.9631 10.0257 30.0393 30.5288 14.0969 38.2233 18.4628 39.992 53.2994 17.691 48.9863 53.8221 16.1429 57.6002 52.3171 32.2615 71.41 37.9727 51.4408 62.676 41.4618 57.6406 48.9151 43.8433 52.9177 35.0586 44.5773 36.217 23.1483 43.9056 -31.7681 36.6178 45.7769 -37.83 51.5724 43.6927 -25.9576 36.5644 47.2776 -31.2662 49.6491 45.6583 26.7542 27.5116 48.1161 23.2102 67.8126 43.5534 -9.81152 64.5785 42.5347 -5.73514 54.6841 51.8166 -6.34459 47.5345 53.0926 -5.18279 39.3551 52.8687 -13.0679 23.5531 45.6457 -5.21985 14.0791 40.2548 -0.679352 10.0168 31.8299 -28.752 49.271 47.2864 -23.8534 36.6519 48.7626 -24.6964 59.5316 45.8889 -7.15942 29.3978 49.7079 38.1551 37.5127 49.7814 23.9612 29.5453 49.9126 42.2701 49.9123 48.8776 35.8278 61.6884 47.1419 20.5055 66.243 45.9037 -8.95663 63.2617 45.5834 -31.1142 10.1703 6.38486 -44.1714 14.6552 7.27827 70.6407 14.3913 2.92833 79.9353 23.413 2.93945 84.5803 35.3544 2.93945 85.9631 48.8595 3.25752 82.8254 61.0226 3.25826 76.7546 71.3433 3.2553 -19.2017 77.8115 7.33611 -48.5489 92.2656 9.06511 -60.1596 84.4057 8.28143 -55.757 23.043 7.73055 -29.2013 79.6561 8.08569 -37.1064 88.1752 8.91461 -68.0046 51.5783 7.15372 -66.9147 65.618 7.07735 57.0756 10.1525 2.28551 6.64003 83.0734 8.64102 7.67061 86.759 8.63805 14.3983 87.2706 17.8748 26.21 86.9437 22.1654 62.3057 92.5874 2.9313 1.3848 69.2606 38.5873 1.56273 65.4519 43.0262 1.32251 64.1537 45.6605 4.95551 9.99831 32.3904 4.63076 11.3477 37.0599 4.48174 13.922 40.9628 4.08211 17.3859 43.9419 3.02928 21.4474 45.8963 3.07525 28.2293 49.9356 3.11009 31.6361 51.3265 3.03002 35.4574 52.4675 2.61333 39.4033 53.3009 2.11362 43.4389 53.8266 1.75772 47.519 53.7873 1.63762 51.3863 53.3032 1.70287 54.8295 52.4802 1.76736 58.0161 51.0099 1.52196 61.5001 48.3586 1.93642 72.8387 33.8763 3.64763 75.9142 30.548 5.31806 78.4269 26.9639 58.5778 87.5953 2.23361 59.1501 85.8263 2.11721 61.5583 84.2063 2.51758 64.9644 82.1214 2.892 69.0133 79.1475 3.00989 32.7991 89.7151 -30.4233 18.3501 89.4171 -27.9721 8.67525 89.5668 -20.9938 2.39314 90.3705 -9.85685 41.3633 90.1718 -28.7054 -31.106 11.4775 -32.9686 -16.1893 11.413 -41.8242 -37.8441 11.7199 -17.9362 51.1145 17.827 -43.7764 65.4167 18.372 -34.6672 55.5386 11.4663 -30.2365 -22.7101 18.3816 -48.1723 -41.2258 18.6322 -37.22 -49.9064 18.1281 -19.4546 62.0944 11.4196 -20.5393 59.314 28.4606 -46.5397 70.9277 29.0352 -36.8544 -33.1991 29.873 -50.7109 -49.3615 28.878 -39.0246 73.4812 41.7559 -37.3453 64.6226 41.5905 -46.5931 72.9066 55.0971 -37.0309 63.9264 55.2231 -45.5736 67.308 66.4328 -36.116 55.8026 66.7664 -44.1694 43.9561 74.6649 -39.815 57.8297 75.238 -34.1393 15.5401 73.1894 -42.5115 -12.2174 73.8819 -36.4385 15.3978 78.7998 -35.5147 -2.0421 78.412 -29.475 -24.7876 76.5792 -19.7267 -12.534 78.2897 -17.6678 4.34457 81.1227 -24.1642 -55.8163 87.2424 -22.0756 -43.7036 88.3494 -22.3158 -54.1303 74.7924 -34.6324 -44.4888 77.8752 -33.6648 -65.5053 72.5896 -18.5049 -61.9613 65.7536 -32.9553 -43.4634 60.448 -47.4894 -65.1954 57.0723 -29.5143 -59.2654 27.9119 -20.2361 -49.2087 49.1998 -47.3723 -58.9689 43.7199 -35.5858 -66.3446 42.1948 -19.4391 15.5861 70.0443 -46.0785 -33.1287 69.3852 -41.4713 -34.4892 80.0254 -21.5618 48.699 81.1865 -30.8689 34.2382 80.5703 -34.2498 16.5759 81.1153 -31.895 0.727875 81.1872 -12.4148 -68.018 58.2133 -17.8183 14.7802 11.3848 -44.0174 16.9221 17.4452 -50.8066 -13.0864 43.3447 -58.8481 10.4495 43.9097 -61.0858 -9.32663 36.6667 -59.0505 -14.22 51.903 -58.0496 9.45597 51.998 -60.0277 24.246 37.0634 -60.5519 11.3896 35.7436 -60.2776 26.5918 44.6467 -61.0071 25.4626 54.4929 -59.5273 9.00666 58.9948 -57.2808 21.3366 60.5555 -57.2059 -11.1972 57.2725 -56.9708 -22.2438 53.1256 -56.0203 -20.3457 43.0689 -57.3067 -12.1122 35.0371 -58.1689 -14.9222 59.3774 -55.2218 12.2904 31.7184 -59.1973 27.7581 35.2002 -59.4961 33.8971 44.4969 -59.5273 32.7486 55.5991 -57.9969 24.5692 62.5262 -55.8246 9.69026 62.3164 -55.2589 6.31009 84.6215 -9.59067 9.94086 84.9232 -20.0693 19.0219 85.0345 -27.4843 34.7653 85.0426 -29.4209 44.1941 85.119 -26.7866 50.8728 90.6708 -23.6459 25.0482 89.5646 -29.954 12.9607 89.423 -24.9078 5.25504 89.8204 -16.202 3.24726 88.5844 -2.72431 56.928 89.7848 -10.5352 -24.3405 11.4359 -38.3603 -12.0514 9.99387 -37.4698 -25.119 9.92937 -30.186 -35.4745 11.6324 -25.6774 -30.9667 10.1577 -16.9998 61 14.303 -32.6913 42.9826 11.5093 -37.4209 46.9722 14.2133 -40.7944 -19.5197 14.3549 -45.3897 -36.488 14.4595 -35.3605 -33.1887 18.5722 -44.2309 -44.1233 14.4447 -18.6976 -46.6619 18.3928 -28.2843 73.0378 18.3468 -22.5011 68.5692 23.4107 -36.0025 54.8395 22.7093 -45.7182 -26.8814 23.6917 -50.1401 -45.535 23.6628 -38.5063 -41.3718 29.3444 -46.7703 79.1575 29.1894 -23.6481 76.6804 23.4678 -23.1566 72.5633 35.1268 -37.3883 62.517 34.8109 -46.6606 81.5568 42.114 -24.311 80.6278 35.3877 -23.9899 65.2083 48.5511 -46.1149 73.84 48.5629 -37.3 80.6871 55.3477 -24.807 81.674 48.8988 -24.6283 60.7961 61.4452 -45.0316 70.7794 61.119 -36.7907 75.5475 66.5218 -24.6246 78.6126 61.265 -24.804 62.9885 71.049 -35.1951 66.8647 75.4648 -24.4251 71.4756 71.2009 -24.4489 -6.85692 76.1307 -33.2993 15.3904 76.124 -38.9186 -20.6749 74.9933 -28.8188 -18.659 77.1776 -18.9697 -8.319 78.3549 -24.2702 1.96458 81.2562 -18.3514 -55.843 81.314 -28.5504 -49.6254 89.3466 -22.4648 -44.4451 82.6048 -28.9686 -48.6808 77.2324 -34.5316 -64.3131 69.6573 -25.8984 -61.7107 81.899 -20.9783 -58.7835 70.7123 -34.1097 -58.4469 60.3879 -39.1736 -50.5077 68.7809 -40.6817 -54.183 45.9931 -42.2824 -63.8549 52.5711 -32.0063 -63.9335 60.729 -31.1655 -54.957 22.8131 -19.9766 -55.152 28.2115 -29.5499 -11.2032 39.4137 -59.029 -53.076 34.2815 -38.5249 -39.7533 37.3377 -50.1979 -63.1283 33.463 -20.1464 -14.2141 47.7244 -58.4915 -30.0695 77.3155 -20.5683 -21.5757 71.2928 -39.3886 -34.2579 73.9026 -30.84 39.2161 77.6454 -37.0836 52.7939 78.4766 -32.8685 29.7051 73.7336 -42.0511 25.218 79.3136 -35.8083 57.9394 81.7173 -23.2211 62.3879 78.9177 -24.2442 -40.3947 73.317 -36.5831 -38.6256 84.6334 -22.1512 -63.1328 42.5522 -27.8513 -68.0395 51.255 -18.387 -66.6864 57.5891 -24.6884 -46.719 55.3544 -48.0974 -67.0838 65.1042 -17.911 46.0958 83.2499 -28.6417 50.9529 87.3143 -20.6038 25.2513 81.0708 -33.3601 17.9216 83.2039 -29.0153 34.0372 87.1164 -29.0287 5.17719 83.0067 -10.4967 38.7965 10.0502 -33.6129 49.3922 10.0272 -27.3241 14.187 9.93604 -39.5629 27.7425 11.4278 -42.1534 55.0359 10.0176 -19.0023 15.6372 13.9546 -47.8631 32.7953 17.7996 -48.8099 18.8513 36.2745 -60.5645 10.861 39.7903 -60.8997 18.3879 44.3219 -61.3282 25.5709 40.1514 -60.9249 9.98461 48.0417 -60.7803 17.172 53.0256 -60.1664 26.7053 49.7018 -60.6231 9.02446 55.628 -58.8755 15.9709 59.969 -57.3289 23.2776 58.2326 -58.209 44.1377 66.4765 -47.442 32.9162 70.0487 -45.5996 -39.1943 64.8054 -45.7138 55.5401 55.5242 -49.7715 51.248 61.6595 -48.7462 56.0065 41.9561 -51.2803 57.0734 48.8091 -50.5693 46.5132 29.225 -51.505 52.5663 35.3329 -51.6029 17.5056 21.4015 -53.1414 35.7529 23.258 -51.4249 -24.8654 30.3579 -52.8774 -37.595 44.6801 -51.7631 -32.3879 37.056 -52.6379 -36.3175 56.5451 -50.6094 -38.0947 50.8613 -51.419 -25.0582 65.9138 -47.2878 -13.0315 55.2283 -57.5699 -29.5994 42.7331 -54.0504 -17.7196 32.1054 -55.3997 -31.0452 54.9518 -52.1567 14.4814 25.6447 -55.9766 35.6595 31.6265 -55.6473 45.0786 43.2372 -55.4835 44.2682 56.1306 -54.0718 32.613 65.3459 -51.8098 12.2638 66.6664 -50.3239 -16.8788 38.5536 -57.7812 -22.2779 48.1633 -56.692 20.9614 32.7638 -59.3975 31.7892 39.2914 -59.6303 34.2463 50.1711 -58.9927 17.7651 63.1379 -55.4049 29.3959 59.9275 -56.7944 -19.9928 57.0804 -55.4805 -7.23875 60.3598 -55.204 -5.65804 57.5512 -57.0761 -6.0065 51.3551 -59.049 -5.22208 43.4715 -59.8809 -3.96387 36.0409 -59.508 -5.15608 32.8988 -58.5686 -13.5854 23.9342 -52.6112 -9.06415 18.1577 -50.5723 -3.25877 11.387 -43.9714 -26.2193 42.6871 -55.6006 -28.5919 54.4558 -53.8865 -15.0875 33.3422 -56.7928 -18.825 61.9909 -52.8915 13.3618 27.7844 -57.7174 39.8055 43.952 -57.5439 31.8122 33.1212 -57.6826 38.9151 56.1492 -56.0878 28.5307 64.3375 -53.8731 10.8825 65.2576 -52.8604 -38.7872 11.7814 -10.3899 -51.3804 18.2081 -11.1306 75.9308 18.2734 -10.619 64.3713 11.5264 -10.1319 82.6956 29.1294 -10.748 85.6139 42.137 -11.5317 84.7924 55.3455 -12.4133 79.6343 66.3979 -12.9219 71.6684 75.6332 -12.7061 -25.2621 79.1542 -11.2952 -14.3624 78.3676 -10.5812 -55.4174 91.1379 -15.1558 -43.1913 92.0224 -14.9719 -65.5402 74.7902 -11.1558 -61.0434 28.0454 -11.3123 -32.6111 84.6875 -12.5304 -67.2833 42.4839 -10.9141 -68.8802 58.6841 -10.4374 0.543259 81.1205 -6.22162 9.52418 81.0708 -28.7966 8.37571 83.1824 -21.1125 5.53085 86.6678 -9.24443 6.35532 84.3783 -3.72153 9.91936 86.9399 -19.9543 7.46301 84.8157 -15.1358 19.1716 86.9829 -27.1848 13.7244 84.9789 -24.2465 35.0315 83.0667 -31.2656 26.1633 85.0641 -29.3275 42.8321 87.2394 -26.5835 54.4673 83.6613 -21.5529 52.1903 85.3592 -20.4029 -19.1772 9.97014 -34.5627 -29.0093 10.0524 -23.9684 -28.9966 14.3787 -41.6404 -41.4341 14.4313 -27.1351 68.2653 14.2141 -21.6559 -37.1724 23.751 -45.8917 49.1935 70.9503 -42.3484 -14.5648 76.6133 -27.0075 -49.8916 83.6109 -28.9872 -61.1227 76.1114 -27.2671 -55.0601 65.0337 -40.5186 -61.3029 55.8348 -36.2984 -51.2017 23.1727 -29.0783 -45.8464 35.4359 -46.3143 -58.6945 33.6906 -29.4149 -27.3062 73.8878 -30.3291 27.1279 76.7275 -38.8845 -39.6428 78.0687 -29.8339 -66.1326 51.3373 -25.8257 -45.1368 71.2869 -39.6934 -65.8464 63.4174 -25.0094 25.8474 83.1357 -30.877 12.1451 83.2039 -25.5855 25.4849 9.93826 -37.9992 30.078 14.1043 -45.7664 18.448 40.0625 -61.2347 17.9876 48.7616 -61.0605 16.2348 56.7727 -58.8674 -32.2767 62.0154 -49.2051 -13.9368 67.8282 -45.9206 -24.8684 37.0434 -54.8511 -31.525 48.8313 -53.174 26.4258 27.5071 -55.6637 23.2554 67.017 -50.8845 -10.1563 64.4547 -50.0444 -5.75739 54.7064 -58.2557 -5.8419 47.5145 -59.5984 -4.37907 39.5768 -59.8409 -5.9761 14.2111 -47.5917 -0.926239 9.96272 -39.5747 -28.5177 48.5533 -54.7769 -21.6936 37.4949 -56.2842 -25.4638 59.1765 -53.191 -6.8028 30.1029 -57.2111 37.0326 38.1125 -57.7227 23.7499 29.4563 -57.6722 40.6137 50.1599 -57.0286 34.858 61.1842 -54.92 20.4387 65.7863 -53.1414 -9.18353 63.1068 -52.8225 -31.7926 10.1666 -9.9777 -45.2866 14.5017 -10.8326 70.7816 14.2259 -10.5137 79.9368 23.3648 -10.642 84.3683 35.367 -11.0661 85.8037 48.9262 -12.0255 82.7112 61.2146 -12.6921 76.0168 71.4278 -13.3949 -20.2604 77.9924 -11.2248 -49.3845 92.9811 -15.3182 -60.8729 85.6046 -14.2238 -56.4851 22.8762 -11.2211 -64.3531 34.2467 -11.1677 -29.1309 81.0871 -11.445 -37.3177 89.3021 -14.5323 -69.0093 51.6317 -10.622 -67.6547 66.1837 -10.4878 5.71547 83.0356 -4.42811 57.0919 10.0917 -9.5929 6.03725 83.0742 -16.133 5.45968 86.1214 -3.26036 7.12048 86.8962 -15.0149 13.8867 86.9385 -24.0596 25.9809 87.0964 -28.959 -11.6043 122.781 8.68477 -11.2981 122.692 9.69681 -10.977 122.366 10.6888 -10.6656 121.82 11.586 -10.3765 121.078 12.3445 -10.1237 120.175 12.9302 -9.91827 119.156 13.3142 -9.77222 118.067 13.4803 -9.68768 116.96 13.4188 -9.67062 115.887 13.1341 -9.72327 114.899 12.6358 -9.85822 114.021 11.8907 -10.7227 112.914 8.71887 -11.1023 127.944 8.41562 -10.4921 127.767 10.4464 -9.85971 127.122 12.423 -9.24655 126.037 14.2114 -8.68082 124.561 15.7276 -8.18628 122.764 16.8946 -7.78964 120.733 17.6635 -7.49306 118.563 17.9719 -7.3344 116.363 17.8451 -7.30846 114.233 17.2735 -7.41818 112.273 16.2733 -7.69992 110.534 14.786 -8.2775 109.033 12.4727 -9.35776 108.08 8.5424 -9.95609 132.998 7.96262 -9.04932 132.737 10.981 -8.11142 131.781 13.9103 -7.20317 130.173 16.5602 -6.3661 127.988 18.8075 -5.64024 125.328 20.5468 -5.05821 122.318 21.6961 -4.64821 119.099 22.2025 -4.42282 115.824 22.0238 -4.39761 112.65 21.1845 -4.56294 109.746 19.6875 -4.97073 107.211 17.3891 -7.42485 103.383 8.21767 -8.20483 137.879 7.33685 -7.0141 137.537 11.2983 -5.78555 136.284 15.1374 -4.59557 134.176 18.611 -3.49826 131.313 21.5559 -2.54626 127.827 23.8351 -1.78407 123.883 25.3417 -1.24654 119.664 26.006 -0.958862 115.367 25.7954 -0.932175 111.202 24.7018 -1.15683 107.411 22.6977 -1.71957 104.094 19.6809 -4.90993 99.0215 7.7476 -5.87453 142.516 6.54797 -4.41762 142.098 11.3954 -2.91623 140.566 16.0879 -1.46082 137.989 20.3341 -0.119568 134.489 23.9337 1.04373 130.229 26.72 1.97571 125.407 28.5617 2.63261 120.249 29.3728 2.98405 114.998 29.1163 3.01297 109.897 27.8025 2.72233 105.248 25.381 2.00388 101.315 21.4907 -1.90344 95.1527 7.08847 -2.99854 146.84 5.6071 -1.29695 146.353 11.2694 0.45578 144.564 16.7478 2.15439 141.556 21.7035 3.72029 137.47 25.9059 5.07858 132.497 29.1585 6.16626 126.869 31.3079 6.93364 120.848 32.2555 7.3429 114.718 31.9552 7.37701 108.764 30.4219 7.02557 103.335 27.5927 6.15958 98.8146 22.9217 1.31064 91.5316 5.92221 0.38089 150.789 4.52833 2.30194 150.239 10.9231 4.28081 148.22 17.1066 6.19814 144.825 22.7007 7.96496 140.213 27.4444 9.49823 134.6 31.1152 10.7268 128.246 33.5419 11.592 121.45 34.611 12.0547 114.531 34.2722 12.0932 107.81 32.5417 11.6995 101.628 29.4492 10.7461 96.4739 24.1724 4.21408 154.305 3.32648 6.32714 153.7 10.3604 8.50323 151.481 17.1593 10.6111 147.749 23.3102 12.5537 142.677 28.5254 14.2397 136.505 32.5617 15.5905 129.519 35.2301 16.5418 122.048 36.4053 17.0504 114.439 36.0331 17.0919 107.05 34.1306 16.6589 100.258 30.74 15.7233 94.7279 25.791 8.4454 157.338 2.02082 10.7201 156.687 9.59079 13.0608 154.299 16.9057 15.3288 150.283 23.5229 17.4189 144.827 29.1348 19.2332 138.186 33.4774 20.6856 130.67 36.3481 21.7103 122.631 37.6123 22.2575 114.445 37.2119 22.3019 106.495 35.1648 21.8259 99.2209 31.4888 20.825 93.3985 26.5962 13.0133 159.842 0.628418 15.4163 159.154 8.62471 17.8875 156.633 16.3489 20.283 152.392 23.3369 22.4903 146.631 29.2623 24.4054 139.618 33.8481 25.9394 131.682 36.879 27.0211 123.193 38.2151 27.5987 114.549 37.7917 27.6461 106.153 35.6297 27.1561 98.4202 31.8069 26.2026 92.3353 26.7949 17.8512 161.781 -0.829224 20.3468 161.067 7.47549 22.9136 158.449 15.497 25.4011 154.045 22.7534 27.6929 148.063 28.9072 29.6814 140.78 33.6686 31.2747 132.539 36.8168 32.3972 123.724 38.2032 33.0378 114.732 37.7776 33.1394 106.004 35.5511 32.5863 97.9694 31.5919 31.965 91.3737 26.2299 28.0317 162.761 5.43213 30.6652 160.074 13.6627 33.218 155.556 21.1096 35.5698 149.416 27.4236 37.6109 141.943 32.3103 39.2458 133.487 35.5408 40.3779 124.44 36.8931 41.0778 115.182 36.3645 41.3685 106.251 34.3441 40.5714 98.0124 30.0964 39.483 90.8428 24.5869 25.47 163.494 -3.09354 33.2647 163.97 -5.38011 35.8181 163.241 3.11665 38.442 160.564 11.3176 40.9852 156.062 18.737 45.5605 150.164 24.1539 46.9596 143.512 28.5313 48.7731 136.143 30.9839 48.1273 125.112 34.1698 49.5294 116.289 34.2469 49.9179 107.113 32.426 48.6893 98.8206 27.8254 47.2243 91.628 22.178 38.4532 163.455 -6.88224 40.9503 162.742 1.42916 43.5171 160.123 9.45065 47.7967 155.173 17.3906 53.1913 129.392 30.4605 57.4434 120.187 30.353 57.7555 108.881 29.1971 56.501 100.349 24.8901 54.4406 93.4897 18.651 43.5401 162.322 -8.34137 45.9453 161.636 -0.335434 50.4154 158.124 9.95186 48.4521 160.589 -9.73451 50.7305 159.939 -2.15119 54.3182 157.614 6.23138 63.8033 119.565 25.3861 63.9101 110.06 24.7226 62.901 102.219 20.9027 60.7679 96.0876 14.7059 53.1171 158.28 -11.0416 55.2347 157.675 -3.99215 58.19 155.872 2.80748 67.2969 119.573 21.0355 67.7537 111.25 20.0049 67.3733 103.92 17.1459 65.043 98.1407 11.5222 57.4671 155.429 -12.245 59.394 154.879 -5.83163 62.1915 152.982 0.103493 69.6977 119.848 16.5973 70.8076 112.269 15.649 70.4413 106.039 12.8968 68.5447 100.725 8.19913 61.4382 152.077 -13.326 63.1457 151.59 -7.6422 65.78 149.427 -2.04368 72.9933 113.56 10.1899 72.6093 109.123 7.23009 71.4208 102.692 -5.93692 66.1158 146.314 -14.556 67.6306 145.656 -8.87371 68.937 144.641 -4.73136 71.1249 140.238 -3.87204 72.9303 135.432 -3.25369 73.955 129.872 0.956131 73.8222 124.051 6.88754 69.9913 140.169 -15.5436 71.876 138.749 -9.69077 -11.3759 117.634 8.77818 63.3644 132.244 19.7795 58.7861 144.777 19.4836 67.0122 129.764 16.8798 70.6155 138.855 5.83472 63.4756 148.383 9.49515 62.8195 133.184 17.464 65.3848 131.323 15.0306 58.8061 141.77 16.8434 60.1659 137.06 18.4575 67.3103 131.311 12.1873 59.8997 144.627 13.2097 68.6945 133.697 9.63008 62.6779 144.573 10.0134 68.5944 137.783 7.94185 66.1373 141.972 8.0323 63.5846 133.449 17.7798 66.1373 131.523 15.497 59.6002 142.393 17.3936 68.0977 131.472 12.4801 69.5345 133.885 9.64862 63.3399 145.241 10.1906 69.4233 138.273 7.76169 66.8358 142.631 7.99524 70.3049 128.194 12.73 72.5233 132.983 6.70811 70.8876 139.701 3.88477 57.3232 138.168 24.4749 62.3546 131.157 22.7541 67.3926 146.279 4.41341 62.6852 151.575 8.16354 58.5355 152.152 14.7897 56.0087 147.327 21.699 67.4163 128.203 18.5732 61.7689 138.738 16.9517 60.1192 142.066 15.9826 64.1066 135.62 16.4201 65.946 133.39 14.7222 67.2903 132.939 12.8657 68.2793 135.009 11.4955 67.7633 138.355 10.7993 65.6517 141.685 10.9157 62.861 143.967 11.7343 60.6115 144.197 13.6175 60.9733 137.35 18.8824 60.8999 145.33 13.6701 65.4233 132.097 14.9091 64.194 132.052 16.3667 63.0381 133.984 17.1452 60.5626 137.576 18.0038 59.2072 139.485 18.0623 59.179 141.815 16.5439 61.4122 134.887 18.1943 67.2154 132.019 12.4453 66.4087 131.047 13.613 59.0411 143.572 15.1678 60.1096 144.464 13.3409 68.5151 134.306 10.3248 68.0821 132.189 10.829 61.149 144.974 11.4258 62.7831 144.363 10.5976 68.2882 138.059 8.96576 68.9548 135.624 8.61655 64.3898 143.534 8.86493 66.015 141.892 9.0614 67.5801 139.948 7.72906 62.5229 143.343 13.2497 61.0674 143.946 13.8533 64.8184 141.126 13.1519 66.8854 138.187 12.9695 67.3889 133.651 13.1986 66.7994 134.635 14.1328 65.5909 137.242 14.9847 63.4504 140.109 15.2998 61.4471 142.587 14.915 69.5049 129.705 12.5735 72.1177 136.32 4.77299 71.5801 133.393 8.20432 59.2932 134.201 23.8217 59.9546 137.579 21.2023 65.0801 149.359 5.97188 67.3192 144.395 6.27661 56.9459 150.409 18.5398 60.5959 148.729 14.5628 56.1303 142.947 23.7928 65.2135 129.283 20.9902 68.9562 127.783 15.7988 69.2988 142.988 3.69571 60.547 152.61 11.1863 71.7477 130.025 9.56706 72.9533 131.626 4.33482 71.3592 125.34 12.6099 70.8958 140.288 0.80043 60.4142 128.485 25.3476 53.3566 137.368 28.099 60.1785 154.454 5.65604 66.8521 148.152 1.54631 50.4599 149.321 23.457 54.4777 155.19 14.0957 66.8083 125.61 19.6379 60.7657 140.445 16.6648 62.9418 137.1 16.8738 65.1157 134.361 15.6497 66.6044 132.832 13.8036 67.9094 133.728 12.0538 68.246 136.622 11.0736 66.8721 140.078 10.7355 64.2593 143.015 11.2634 61.6205 144.401 12.4393 60.0361 143.345 14.9402 62.2167 135.13 18.5205 60.0235 144.253 15.7061 59.9835 139.927 18.519 64.9258 132.28 16.7923 67.1776 131.236 14.0179 68.9044 132.335 10.9928 69.7696 135.952 8.50682 68.3794 140.573 7.55853 64.9874 144.212 8.9287 61.9957 145.611 11.7513 64.3364 132.866 16.125 59.6128 139.75 17.5893 61.7458 135.583 17.8214 66.3694 131.791 13.6738 59.3318 143.457 15.0788 67.9657 132.894 11.3154 61.3218 144.772 11.7684 68.6738 136.094 9.51442 64.4194 143.374 9.69681 67.3615 140.039 8.78485 61.7844 144.005 13.1407 63.6091 142.365 13.2305 65.9438 139.693 13.0347 67.4912 136.673 12.9257 66.9492 133.714 13.8169 66.3464 135.861 14.5969 64.5685 138.672 15.2167 62.3546 141.447 15.1878 60.8028 143.341 14.6881 70.7571 131.099 10.3129 71.4393 136.084 6.66586 61.5272 134.531 20.6551 65.2209 146.715 7.63861 59.5052 147.331 17.3142 58.8328 141.204 20.8056 65.3699 130.706 18.6303 68.3045 129.387 14.7556 69.1838 141.704 5.63008 61.9527 149.098 11.8158 72.6026 127.566 8.47568 72.3965 136.097 1.70497 56.5247 132.614 27.6949 63.6929 151.685 3.08774 52.022 153.009 18.9305 51.1249 144.226 26.8356 63.9865 126.508 22.5154 69.2202 125.238 16.535 69.0541 144.317 0.692924 57.2187 155.661 9.56113 67.741 135.282 12.8723 67.7907 134.283 12.7419 71.6609 136.111 -15.9358 72.3201 105.969 -15.2641 74.0417 117.157 -16.1597 75.2065 106.525 -16.2769 79.8634 107.308 -17.6552 91.3867 109.457 -21.1013 88.3001 106.164 -20.0804 79.2991 114.295 -17.6596 83.595 107.064 -18.7273 84.1132 113.461 -18.9875 85.3967 106.488 -19.2404 74.3568 135.883 -16.7173 78.9611 134.305 -18.0244 82.9529 133.126 -19.1618 84.9244 134.248 -19.7638 86.99 136.683 -20.4237 90.4947 139.433 -21.5114 93.7133 139.447 -22.4507 94.9967 133.968 -22.6969 95.4994 138.023 -22.9393 92.0955 130.536 -21.7701 88.3638 126.832 -20.5942 85.6599 124.96 -19.7608 81.4537 123.062 -18.4885 74.8654 115.813 -16.3999 75.0456 119.162 -16.437 77.3477 106.901 -16.9108 90.4702 107.067 -20.7351 76.8324 114.944 -16.9597 81.866 106.977 -18.232 81.8267 113.709 -18.3173 87.5994 113.172 -20.0641 72.8517 136.463 -16.4526 76.6211 135.168 -17.3616 81.0749 133.56 -18.6235 84.1259 133.478 -19.5125 85.7941 135.222 -20.0404 95.5972 136.005 -22.9201 93.7963 132.209 -22.3054 90.1255 128.604 -21.1495 87.0197 125.694 -20.1745 83.7714 124.169 -19.1907 77.8207 121.529 -17.3927 90.9181 111.196 -21.0087 72.5032 108.223 -2.09484 75.2258 128.38 -2.75545 73.0089 134.723 -11.6266 74.987 120.808 6.20024 75.9205 117.527 -9.42607 74.9633 116.553 -9.73895 78.1707 127.11 -4.45851 76.4373 109.876 3.38505 75.8359 108.157 -4.45555 81.7666 127.621 -5.91393 76.6804 114.045 7.19746 76.6345 120.205 6.07716 82.3917 119.936 3.28125 80.7256 108.785 -7.12913 83.5075 117.685 2.46864 82.9974 115.277 1.76725 92.4261 111.042 -14.8022 90.3783 110.634 -9.15768 95.4037 129.402 -7.5814 96.0984 136.789 -17.4832 82.3405 119.579 -9.26593 80.8413 115.369 -9.65369 85.2625 124.587 -1.81087 84.8272 129.21 -7.48057 85.7451 117.806 -3.52579 86.8232 121.414 -9.52765 85.9097 118.886 0.325172 87.199 131.776 -9.16064 88.7516 134.416 -11.1099 90.1003 121.341 -5.78863 94.2515 126.991 -9.62626 89.9564 123.624 -10.2795 92.7753 126.838 -11.8772 90.8128 122.536 -2.9371 84.8317 108.856 -9.63812 86.0135 114.746 -2.76731 86.5792 108.162 -11.0609 90.7371 125.097 -2.53673 73.043 106.875 -10.3143 75.0849 116.366 -9.04127 75.9716 116.037 -9.92357 74.6763 117.226 -13.3023 76.6107 127.495 -3.81347 75.8715 107.338 -10.9986 74.2945 131.787 -6.83849 77.6673 130.92 -7.97213 79.9509 127.383 -5.12654 76.4239 117.364 7.49699 79.6098 120.36 4.88643 79.5468 114.305 5.90663 78.3479 108.471 -5.80049 80.1169 108.117 -13.6233 81.3351 130.611 -9.06203 83.483 116.149 2.62879 83.0011 114.026 3.50368 91.761 108.672 -14.126 92.1266 109.889 -18.0081 93.8845 131.645 -7.45462 96.1799 134.037 -11.4887 81.9698 117.706 -6.57603 78.9833 118.659 -9.33636 78.2737 115.773 -9.7916 81.6235 116.026 -5.37269 79.8693 114.493 -14.8934 83.5372 128.01 -6.78511 83.5372 116.896 -3.09725 86.2686 119.313 -6.65833 84.7701 120.477 -9.37344 85.7155 117.814 -1.09836 82.8336 116.065 -0.2435 84.0376 118.31 1.24899 82.4806 122.05 -11.5955 87.1182 124.405 -12.0018 88.0999 133.229 -10.2009 92.2897 123.818 -7.20253 93.4241 126.82 -10.8934 91.5661 125.3 -11.0513 89.9394 122.25 -7.90022 90.4806 121.459 -4.05592 93.4426 125.358 -4.55564 95.0537 127.861 -8.4207 86.6067 133.598 -11.5288 88.5707 135.852 -12.9256 89.8207 126.465 -12.6372 92.9117 128.817 -13.9117 95.0404 130.344 -13.2941 82.9299 109.011 -8.36213 85.6702 113.376 -2.09262 83.9642 114.927 -0.734322 83.2265 115.122 -10.3417 85.751 115.129 -7.31301 84.1511 107.994 -14.6242 84.6693 113.83 -16.0203 88.6597 113.95 -5.64331 88.16 112.314 -5.20661 87.6284 114.616 -8.44739 91.1709 112.257 -10.1186 89.261 107.896 -12.7825 84.4929 131.425 -10.2884 88.4714 122.412 -9.79086 88.4424 120.148 -1.065 85.9995 121.323 0.560211 86.1099 130.434 -8.26055 87.8345 118.872 -4.42515 91.1968 133.419 -9.01013 88.8191 128.275 -4.56676 81.5976 122.873 0.828606 76.9644 122.205 2.94316 81.4612 110.902 -0.296883 85.7392 110.723 -3.63627 75.9894 134.176 -12.4407 80.1251 132.842 -13.5803 83.9442 132.485 -14.6398 85.946 134.022 -15.3694 88.0213 136.327 -16.4059 91.3103 138.582 -16.933 94.3976 138.399 -17.1755 95.3962 132.764 -17.8798 92.8436 130.018 -17.5358 89.2928 126.974 -16.3569 86.4413 124.91 -15.6051 82.4754 123.01 -14.5108 91.896 112.486 -14.9156 82.8751 115.658 -0.544518 86.2805 115.188 -4.50003 76.1644 116.572 -8.83145 75.4185 115.882 -13.8516 76.0488 119.438 -12.6624 75.6543 131.457 -7.41829 79.4986 117.656 6.72963 79.0322 110.008 1.65974 78.0128 107.635 -12.0211 79.5268 130.758 -8.47779 82.1877 117.111 4.66623 91.3177 107.267 -17.6789 94.3523 135.804 -11.3701 79.199 116.397 -7.74822 77.416 115.064 -14.3959 84.1318 118.571 -6.36101 83.3881 117.034 -0.32283 85.0712 123.225 -11.8706 91.807 124.332 -9.03386 92.9703 124.047 -5.59067 87.5542 134.782 -12.3095 91.394 127.808 -13.2948 94.0891 129.464 -13.8324 83.6906 111.07 -2.07482 83.6929 113.909 0.096817 83.6402 115.586 -6.22978 82.2292 108.145 -14.0185 82.2626 114.108 -15.3812 85.9475 107.439 -15.3597 88.2578 113.456 -17.1125 88.2163 114.084 -11.2463 88.9763 106.666 -16.7455 83.1168 130.614 -9.81607 88.5233 125.332 -12.2287 88.5596 122.718 -0.990116 88.1236 120.568 -7.14322 91.5424 136.545 -12.2591 90.1959 130.708 -6.46555 83.1835 123.375 -0.566017 79.5957 122.783 1.99635 74.3672 117.295 7.88031 87.5631 110.072 -6.37584 74.1744 134.769 -11.9588 77.8467 133.564 -12.9456 82.0565 132.388 -14.1586 85.1416 133.114 -14.9897 86.8728 135.108 -15.8513 96.088 134.721 -17.6366 94.3716 131.254 -17.9443 90.9752 128.478 -16.8885 87.8886 125.817 -15.9581 84.6456 124.017 -15.1551 78.798 121.528 -13.6567 91.6357 111.58 -17.9377 84.2971 115.519 -2.50114 83.7426 120.625 1.77541 88.5833 114.451 -6.97195 88.0828 118.976 -2.26166 92.4098 128.085 -4.46593 90.9233 113.198 -10.8133 95.8359 131.912 -12.44 88.8584 109.104 -9.27186 75.6269 121.857 3.65715 78.5266 120.452 -11.3783 85.7325 132.479 -10.7807 87.2109 126.227 -3.03349 82.3865 115.792 -3.39975 85.5323 114.683 -10.7629 88.5351 113.906 -14.361 85.1809 114.135 -13.5766 82.7372 114.618 -13.0324 80.3171 114.815 -12.4815 77.8096 115.265 -12.0804 75.7054 115.895 -11.7089 74.7512 116.96 -11.2522 75.744 118.732 -10.8711 69.843 141.836 -9.30819 67.9679 143.189 -15.0231 72.8213 119.941 10.9157 71.6506 104.986 0.684029 69.456 100.727 -14.47 73.995 114.29 6.9995 73.1142 110.85 3.56299 72.9748 136.288 -10.6843 71.3295 137.732 -15.8765 71.3963 104.177 -15.1099 74.1581 133.103 -5.27631 75.2109 128.825 -1.40012 75.073 122.123 6.21136 74.2901 118.616 8.83824 74.0083 114.133 7.99301 73.4597 110.347 4.91832 72.8198 106.93 -0.967873 82.4554 113.29 2.18171 79.572 111.521 3.2642 80.1607 112.304 4.14649 -10.1429 113.254 10.7089 72.7842 105.382 -7.25814 -5.83078 104.99 14.0223 -2.85619 101.143 15.3198 0.690811 97.9167 16.3207 4.67302 94.8688 16.9057 66.3361 95.2358 0.153168 -11.892 122.645 7.67271 -12.1529 122.274 6.67995 -12.3643 121.685 5.78059 -12.534 120.909 5.0184 -12.626 119.978 4.42898 -12.646 118.938 4.04047 -12.5956 117.84 3.87142 -12.4777 116.734 3.92851 -12.2953 115.674 4.20803 -12.0595 114.707 4.70033 -11.7659 113.862 5.43361 -11.6777 127.672 6.3856 -12.1989 126.934 4.40896 -12.6304 125.765 2.6199 -12.9514 124.219 1.10294 -13.1465 122.369 -0.071487 -13.2072 120.301 -0.848503 -13.1242 118.113 -1.18808 -12.8996 115.91 -1.07389 -12.5437 113.798 -0.511894 -12.0803 111.876 0.468269 -11.5131 110.201 1.90664 -10.7279 108.684 4.35558 -10.8109 132.596 4.94501 -11.5843 131.502 2.01563 -12.2226 129.769 -0.634972 -12.6979 127.479 -2.88298 -12.987 124.738 -4.62311 -13.0768 121.674 -5.77454 -12.9633 118.431 -6.28242 -12.6504 115.16 -6.12376 -12.1492 112.018 -5.30077 -11.4627 109.168 -3.83942 -10.636 106.694 -1.7434 -9.32736 137.352 3.37615 -10.3401 135.919 -0.462959 -11.1772 133.648 -3.93729 -11.8 130.646 -6.88298 -12.1796 127.054 -9.1636 -12.2968 123.039 -10.6717 -12.1477 118.789 -11.3375 -11.7385 114.502 -11.1299 -11.0883 110.379 -10.0578 -10.1881 106.649 -8.12857 -9.11383 103.415 -5.39493 -7.24765 141.871 1.70126 -8.48584 140.119 -2.99197 -9.509 137.344 -7.23812 -10.2704 133.674 -10.8392 -10.7339 129.283 -13.627 -10.8777 124.375 -15.4702 -10.6953 119.179 -16.2843 -10.1948 113.94 -16.03 -9.38 108.916 -14.6924 -8.24042 104.41 -12.2576 -6.81169 100.55 -8.6587 -4.60298 146.087 -0.054435 -6.04802 144.042 -5.53284 -7.24321 140.802 -10.4893 -8.13144 136.519 -14.6932 -8.67267 131.393 -17.9473 -8.84024 125.664 -20.0997 -8.62744 119.599 -21.0494 -8.04318 113.482 -20.7529 -7.08603 107.625 -19.1759 -5.77963 102.353 -16.3577 -4.12698 97.8226 -12.2769 -1.43115 149.939 -1.86574 -3.0623 147.631 -8.04924 -4.41095 143.974 -13.6441 -5.41411 139.139 -18.3892 -6.02504 133.353 -22.0622 -6.21411 126.886 -24.4919 -5.97388 120.04 -25.564 -5.31401 113.136 -25.2289 -4.25377 106.509 -23.4776 -2.81467 100.514 -20.3577 -0.857285 95.3878 -15.9247 2.22112 153.371 -3.70596 0.427597 150.832 -10.5049 -1.05525 146.812 -16.6565 -2.15849 141.496 -21.8739 -2.82948 135.134 -25.9124 -3.03783 128.024 -28.5838 -2.77313 120.497 -29.7627 -2.04877 112.906 -29.3942 -0.897324 105.606 -27.4954 0.658188 98.9955 -24.1115 2.66969 93.7269 -19.7623 6.30045 156.332 -5.54841 4.37052 153.602 -12.8633 2.77497 149.275 -19.4821 1.58868 143.556 -25.0954 0.866531 136.711 -29.4409 0.642624 129.061 -32.3147 0.926575 120.963 -33.5833 1.70657 112.796 -33.1866 2.9455 104.941 -31.144 4.64336 97.9398 -27.491 6.69341 92.8958 -23.465 10.7483 158.78 -7.36639 8.71009 155.896 -15.0906 7.02557 151.328 -22.08 5.77182 145.289 -28.0077 5.00963 138.061 -32.5957 4.77312 129.983 -35.6311 5.07339 121.431 -36.9701 5.89712 112.807 -36.5512 7.20499 104.513 -34.3944 9.05486 97.2925 -30.556 11.2406 92.5807 -26.9734 15.4979 160.678 -9.13321 13.3818 157.684 -17.1547 11.6321 152.94 -24.4125 10.3309 146.669 -30.5671 9.53901 139.163 -35.3323 9.29359 130.775 -38.4834 9.60574 121.895 -39.8743 10.4606 112.939 -39.4398 11.8189 104.326 -37.2 14.0588 96.9514 -33.3467 16.6434 92.4725 -29.9718 23.0545 162.362 -11.6177 20.8829 159.289 -19.8483 19.0871 154.421 -27.2967 17.7525 147.986 -33.6129 16.9392 140.284 -38.5019 16.6871 131.675 -41.736 17.0074 122.563 -43.1632 17.8853 113.373 -42.7169 19.2791 104.535 -40.4185 21.2106 97.0107 -36.2628 23.42 92.7149 -32.4103 30.8573 162.843 -13.8754 28.6938 159.781 -22.0763 26.9055 154.931 -29.4973 27.9242 148.749 -36.2635 26.8335 141.896 -40.4148 27.1308 134.403 -43.1558 24.8332 123.19 -45.306 25.7073 114.033 -44.8611 27.096 105.227 -42.5709 28.977 97.7766 -38.3173 31.01 93.1798 -33.7501 36.0984 162.352 -15.1936 33.9816 159.358 -23.2144 33.3826 154.015 -31.9877 31.2043 127.797 -45.1888 41.2721 161.261 -16.3458 39.5527 157.252 -27.2589 34.1114 118.081 -46.7154 35.274 106.958 -44.7195 36.8836 99.3018 -39.4702 38.9366 94.263 -33.7738 46.3034 159.583 -17.3163 44.8502 156.854 -26.2038 42.5748 117.521 -46.6924 42.9789 108.591 -45.2964 44.501 100.951 -40.6187 47.291 94.8665 -33.4268 51.1197 157.345 -18.0904 49.9772 155.213 -25.3275 48.2059 117.708 -45.7612 48.7168 109.961 -44.0908 50.3568 102.509 -40.027 53.4827 96.7468 -32.9174 55.6498 154.578 -18.6568 54.8409 152.392 -25.0769 52.7864 118.209 -43.2581 53.6228 111.351 -41.2941 55.2413 104.656 -38.0407 58.7364 99.47 -31.8202 59.8286 151.323 -19.0083 59.0656 148.888 -25.0487 58.6371 112.647 -37.2162 60.0213 108.358 -34.3455 66.7364 101.215 -23.2055 64.3461 145.393 -20.1264 63.2939 144.171 -24.2324 64.6093 139.563 -25.8976 66.0209 134.24 -27.224 64.8265 128.137 -31.0498 61.4092 121.344 -36.0211 68.4454 138.292 -21.5291 45.453 130.809 -41.5454 41.6524 143.401 -39.21 50.101 128.433 -40.9145 59.0129 137.957 -33.7931 50.9314 147.376 -33.4765 46.2433 131.854 -39.2708 49.7303 130.061 -38.4737 43.1271 140.511 -36.8678 43.4601 135.718 -38.774 52.9147 130.138 -37.0872 45.9668 143.509 -34.5197 55.443 132.636 -35.7653 50.0284 143.557 -33.3201 56.2208 136.784 -34.4582 54.0432 141.001 -33.4001 46.726 132.091 -39.9847 50.1181 130.245 -39.3182 43.4927 141.099 -37.7857 53.4219 130.291 -37.7879 56.1362 132.807 -36.2509 50.4828 144.208 -33.8546 57.0422 137.29 -34.817 54.643 141.653 -33.7723 55.0842 126.961 -39.0439 60.0643 131.807 -35.2485 60.3282 138.873 -32.42 37.8104 136.599 -42.3736 42.95 129.62 -43.6504 57.0126 145.449 -31.2322 50.941 150.632 -32.0693 43.8723 150.975 -35.442 38.0876 145.889 -39.6926 49.5108 126.802 -42.685 45.605 137.439 -38.4211 44.6923 140.828 -36.8618 47.893 134.316 -39.1277 50.3776 132.134 -38.6198 52.5225 131.75 -37.7278 54.0743 133.869 -37.1666 53.9713 137.248 -36.4482 52.0865 140.596 -35.554 49.2647 142.875 -34.8407 46.3531 143.052 -35.2278 43.9086 135.978 -39.5785 46.5533 144.179 -35.4761 49.8356 130.846 -38.4441 47.9983 130.76 -39.0142 46.6052 132.656 -39.1566 44.0339 136.249 -38.6168 42.8387 138.17 -38.0111 43.6017 140.564 -36.8188 44.6634 133.535 -39.1929 52.6931 130.851 -37.3023 51.3763 129.845 -37.8198 44.2029 142.382 -35.6615 46.0758 143.337 -34.7362 54.9106 133.214 -36.2776 54.299 131.078 -36.3859 47.9753 143.917 -33.7041 49.8059 143.321 -33.8591 55.4037 137.025 -35.1736 56.1837 134.599 -35.1328 52.1021 142.547 -33.2281 53.387 140.878 -34.1972 55.4482 138.973 -33.8331 48.1733 142.19 -35.9091 46.6141 142.785 -35.6607 50.1892 139.952 -36.9649 52.0658 136.997 -37.7961 52.4194 132.447 -38.0845 51.4089 133.398 -38.5931 49.903 135.983 -38.7555 47.893 138.861 -37.994 46.3798 141.377 -36.6995 54.5637 128.486 -38.5583 60.8235 135.305 -33.5811 58.5718 132.382 -36.0552 39.8159 132.627 -42.8845 41.7955 136.119 -41.0087 54.1663 148.483 -31.4153 55.9539 143.477 -32.6654 40.5373 149.092 -37.6693 45.7748 147.539 -36.2109 37.1201 141.421 -41.3319 46.3145 127.804 -43.6823 52.3171 126.477 -40.9857 59.1168 142.133 -31.5495 47.4993 151.562 -33.5084 58.2159 128.907 -37.3334 61.9319 130.28 -33.5996 55.9843 124.214 -39.8068 61.9357 139.512 -29.8517 40.0547 127.159 -44.8752 32.5262 135.693 -43.2641 50.1396 153.648 -28.7343 58.0699 147.457 -28.6001 32.4395 147.874 -38.275 40.7865 154.09 -32.8062 48.5485 123.891 -44.2502 44.8917 139.171 -37.7145 46.6541 135.791 -38.9245 49.1683 133.076 -38.9875 51.4356 131.609 -38.169 53.4767 132.569 -37.389 54.253 135.498 -36.8633 53.2321 138.983 -35.9892 50.709 141.926 -35.1558 47.8345 143.294 -34.7866 45.1675 142.152 -35.9951 45.1713 133.754 -39.9113 44.7331 143.025 -36.6728 43.2421 138.583 -38.8326 48.3979 130.967 -39.812 51.8085 130.009 -38.6079 54.898 131.214 -36.9842 56.9414 134.926 -35.5317 56.2052 139.595 -34.146 52.5633 143.214 -33.6329 48.5055 144.528 -34.4611 48.2504 131.567 -38.9341 43.4311 138.451 -37.8428 45.1446 134.246 -39.058 51.3088 130.573 -37.8872 44.498 142.267 -35.7379 53.9312 131.767 -36.7632 47.939 143.698 -34.0771 55.4586 135.033 -35.7586 51.6817 142.351 -33.9384 54.6942 139.021 -34.6087 47.6009 142.867 -35.4487 49.1112 141.201 -36.4341 51.2183 138.511 -37.4098 52.6196 135.479 -38.0192 51.7129 132.488 -38.381 50.7646 134.609 -38.7822 48.8984 137.414 -38.4633 47.013 140.215 -37.3683 45.949 142.148 -36.1946 56.8747 130.003 -37.3653 59.271 135.122 -34.8148 43.4222 133.063 -41.3875 53.4219 145.768 -32.7803 43.3933 146.037 -37.8806 41.0259 139.775 -40.1938 47.7811 129.312 -41.5937 52.3542 128.12 -39.7631 57.9468 140.752 -33.0391 48.3905 148.009 -34.6435 59.466 126.101 -36.8574 62.769 134.918 -31.1499 35.337 130.917 -44.7544 54.5184 150.949 -28.3414 36.1436 151.734 -35.4628 31.2473 142.63 -41.2578 44.4825 124.75 -45.068 52.223 123.767 -42.08 60.3461 143.735 -29.0309 45.5294 154.723 -30.4826 52.8762 134.088 -38.0496 52.9993 133.095 -37.9288 65.4323 107.528 -26.9171 67.9487 126.833 -28.5074 70.5081 134.319 -20.2732 62.6749 119.616 -35.7438 72.6589 117.278 -23.098 72.2444 116.442 -22.3254 71.3889 125.795 -28.3703 65.5901 109.029 -33.5959 69.3603 107.637 -26.6398 75.0515 126.757 -29.2103 63.5342 113.12 -36.9642 64.2148 119.206 -36.4696 70.5985 118.958 -37.1681 74.9121 108.319 -27.0453 71.9998 116.742 -36.9872 71.9612 114.391 -36.0381 88.8094 110.578 -26.9527 84.1169 110.131 -30.6072 87.2695 128.749 -35.4465 93.0867 136.547 -27.8016 77.576 118.913 -26.6205 76.2215 114.981 -25.3972 75.678 123.817 -34.645 78.3012 128.686 -29.8368 77.0845 117.097 -33.174 81.2906 120.822 -28.8656 75.1464 118.021 -36.546 81.172 131.293 -29.8079 83.4949 133.994 -29.1154 81.9364 120.685 -33.7567 87.4282 126.444 -33.002 84.2007 123.162 -29.9962 87.3956 126.405 -30.3062 80.9881 121.747 -36.5927 79.7217 108.446 -27.144 76.8458 113.737 -33.7746 81.9683 107.792 -26.8548 80.6767 124.289 -36.9998 70.1714 106.645 -20.1493 72.022 116.241 -22.9037 72.8888 115.884 -22.6383 73.3892 117.141 -19.0068 69.7533 125.895 -28.1175 72.9185 107.101 -21.1147 69.1965 130.484 -24.8144 72.6997 129.897 -25.4795 73.1742 126.294 -28.81 63.1531 116.358 -37.3542 67.3688 119.359 -37.0517 66.7935 113.286 -37.5877 72.197 107.977 -26.8719 77.8994 107.939 -21.2215 76.3201 129.88 -26.4826 71.9026 115.225 -37.0598 71.0463 113.066 -37.4483 87.9791 108.369 -27.0824 90.3568 109.787 -24.1197 85.8919 131.003 -34.834 89.9668 133.538 -32.7744 75.3807 117.261 -28.6335 74.2589 118.273 -24.8974 74.5081 115.555 -23.9173 74.7186 115.201 -29.2771 78.273 114.414 -20.2702 76.9377 127.337 -29.5447 74.9877 116.19 -32.3036 79.228 118.61 -30.8741 79.7455 119.59 -27.752 75.7618 117.015 -35.1966 72.8947 115.268 -34.2906 73.0867 117.445 -36.2917 78.8617 122.15 -25.111 82.7305 124.079 -27.0743 82.4725 132.777 -29.4795 84.5114 123.193 -33.8509 87.4141 126.338 -31.4821 85.952 124.849 -30.2847 82.9247 121.687 -31.9314 81.3232 120.724 -35.4257 84.0399 124.603 -36.7655 87.4445 127.25 -34.4856 81.9223 133.222 -27.574 84.3016 135.509 -27.551 85.3181 126.104 -28.0604 88.5803 128.469 -28.7521 90.0231 129.941 -30.4819 77.43 108.57 -27.2025 76.3149 112.625 -34.143 74.121 114.113 -34.4307 78.5236 114.752 -26.0741 79.2235 114.861 -29.7308 81.84 107.809 -22.5419 82.8432 113.477 -21.7471 80.6945 113.198 -32.7484 80.1006 111.667 -32.8137 81.4167 114.445 -29.7768 85.2891 111.653 -30.1957 85.1586 107.567 -26.8363 79.5016 131.024 -27.3879 82.7149 121.901 -29.5647 78.0128 119.311 -36.7914 75.0649 120.445 -36.8974 79.7863 129.926 -29.9221 79.3229 118.187 -33.5803 84.4402 132.877 -32.1553 80.111 127.576 -34.3959 71.2569 121.989 -34.7844 66.2834 120.958 -33.9154 71.8315 110.129 -33.2852 77.2358 110.04 -32.7655 73.4782 133.884 -21.131 77.6228 132.464 -22.2276 81.3655 132.277 -23.4746 83.426 133.82 -24.0033 85.7036 136.141 -24.3458 88.7308 138.375 -25.7679 91.4667 138.163 -27.2159 92.7583 132.552 -26.9171 90.4562 129.827 -25.7152 86.8669 126.78 -24.6669 84.0844 124.721 -23.6771 80.1888 122.834 -22.3988 88.4224 111.98 -26.642 73.0971 114.872 -34.0422 78.0365 114.257 -32.4652 72.6559 116.366 -23.6348 74.0565 115.738 -18.8756 74.3546 119.371 -20.3332 70.6786 130.252 -24.9797 66.3234 116.559 -38.424 68.7427 109.182 -33.5877 75.2695 107.415 -21.4172 74.5162 129.923 -26.0103 69.7229 116.044 -38.0771 89.5331 107.124 -23.792 88.3401 135.32 -31.9677 74.1388 115.95 -26.0645 75.9612 114.948 -19.4391 77.1416 118.114 -30.0044 73.3922 116.231 -34.5642 80.9955 123.121 -26.1556 85.0815 123.793 -32.0715 84.2148 123.344 -35.5836 83.1264 134.427 -27.4776 86.9811 127.454 -28.4118 89.522 129.098 -29.4795 74.6652 110.346 -32.9938 73.4634 113.087 -34.946 76.8228 114.888 -29.5521 79.8915 107.956 -22.0252 80.6122 114.073 -21.0487 83.7573 107.262 -22.8645 86.4999 113.195 -22.8837 83.3651 113.698 -27.6845 87.0649 106.513 -23.293 78.1729 130.027 -26.8719 84.0191 124.97 -27.6585 78.0395 121.874 -37.0279 80.9955 119.953 -31.531 86.4391 136.135 -29.7404 82.2626 130.071 -33.6418 73.3188 122.63 -34.5204 68.9993 121.598 -34.5597 61.1201 116.288 -36.4563 80.2549 109.485 -31.4116 71.6743 134.356 -20.764 75.3384 133.298 -21.6337 79.5527 132.054 -22.774 82.5547 132.906 -23.8513 84.4528 134.914 -24.1434 93.1861 134.488 -27.5777 91.9487 131.059 -26.2461 88.5515 128.283 -25.1888 85.4827 125.624 -24.1983 82.3397 123.833 -23.052 76.6708 121.456 -21.1288 89.869 111.457 -23.9848 75.2791 114.471 -33.131 72.5418 119.712 -36.6595 81.3907 113.876 -31.5584 78.3679 118.196 -35.5399 83.0864 127.336 -36.4037 85.4308 112.541 -29.518 90.2145 131.46 -31.6971 82.9166 108.627 -29.6277 64.7835 120.521 -33.7531 75.2428 120.861 -23.2937 80.7976 132.083 -27.6852 77.9572 125.484 -34.7339 74.1796 115.013 -31.4161 80.9021 114.638 -26.7177 85.1483 113.312 -25.263 82.0676 114.019 -24.0982 79.6802 114.358 -23.3746 77.3173 114.669 -22.6413 75.2124 115.161 -21.7041 73.588 115.837 -21.0027 72.7523 116.861 -20.956 73.4137 118.581 -21.8902 66.4762 141.604 -20.8641 58.3546 118.743 -38.2809 63.6573 103.164 -29.6181 61.2017 113.464 -35.2759 62.603 110.079 -31.8602 69.9438 135.891 -21.1621 68.2393 131.67 -26.2038 67.4378 127.136 -29.5202 62.8091 120.687 -35.9907 60.5767 117.653 -37.3935 60.7761 113.247 -36.1998 62.0921 109.556 -33.1525 65.2417 105.935 -28.1842 71.3073 112.394 -36.0092 68.3164 110.617 -35.2945 68.3445 111.331 -36.3747 -11.3552 113.133 6.63324 68.4684 104.805 -22.5375 -9.45044 104.401 1.95409 -7.56053 100.492 -0.627556 -5.0686 97.2087 -3.46945 -1.8849 93.9531 -6.38548 56.808 93.3547 -23.3279 61.9223 96.6682 -23.3508 59.4081 140.566 19.6623 60.4639 137.464 20.042 61.8763 134.831 19.5882 63.4845 132.857 18.7674 59.1931 143.585 18.4382 65.1653 131.503 17.6961 59.7648 145.792 16.5098 66.574 130.654 16.1776 60.7479 147.03 14.1165 67.7426 130.322 14.3856 61.9742 147.354 11.7839 68.7983 130.581 12.5261 63.4081 146.812 9.84286 69.823 131.736 10.6896 65.1046 145.464 8.28365 70.6207 133.636 8.99838 67.079 143.51 7.13741 70.6489 135.976 7.7083 68.7916 141.109 6.6273 70.0306 138.529 6.87865 46.0899 131.451 -40.7647 44.2964 133.408 -40.6498 42.8521 136.048 -40.2939 42.1344 139.179 -39.5132 48.0895 130.139 -40.7032 42.5725 142.25 -38.4974 50.1107 129.339 -40.116 44.0636 144.531 -37.2763 52.0814 129.065 -39.1855 46.164 145.859 -35.8431 53.992 129.384 -38.172 48.4484 146.268 -34.5523 55.8478 130.62 -37.1918 50.7075 145.792 -33.6656 57.2832 132.639 -36.2405 52.9926 144.492 -33.2066 58.0113 135.002 -35.2811 55.2984 142.565 -33.2185 57.9772 137.569 -34.3714 57.0771 140.172 -33.5929 1.38182 68.9774 -45.9569 1.47894 65.0285 -50.2728 1.09637 63.909 -52.87 4.59888 9.97681 -40.0908 4.56625 11.4122 -44.5415 4.27933 14.0176 -48.351 3.6239 17.5846 -51.2515 2.5518 21.6054 -53.3934 2.81797 25.9316 -56.0077 3.01964 28.3271 -57.5284 3.3214 31.8267 -58.9081 3.45486 35.6754 -59.9047 3.14198 39.6169 -60.4303 2.63558 43.6332 -60.5215 2.15143 47.625 -60.2798 1.8074 51.4352 -59.6459 1.64281 54.9177 -58.6553 1.54494 58.1214 -57.1999 1.24614 61.2169 -55.2299 2.20258 72.8765 -41.2252 4.0999 75.8378 -37.4454 6.18702 78.5203 -33.435 56.4936 87.4619 -10.08 57.7629 85.6098 -10.3506 59.9983 84.0135 -10.7406 63.4852 82.0057 -11.5406 67.5801 79.1089 -12.265 -10.1652 108.262 6.21582 -11.0734 112.965 7.57632 -0.481384 91.8178 -0.502998 -8.62003 103.705 4.73889 -6.45135 99.499 2.95057 -3.73181 95.6969 0.985786 -60.1092 28.2359 7.92776 -8.84988 108.395 10.4182 -10.438 113.006 9.67531 2.73864 92.5778 10.975 -6.7205 103.892 10.9765 -4.01207 99.6658 11.3213 -0.806137 95.8341 11.3643 64.3527 94.8043 -12.5052 60.0369 91.4033 -11.0824 -11.539 10.151 19.9241 -5.49863 10.1436 21.8177 -15.9268 10.1577 16.38 -19.33 10.1651 11.6357 -22.5381 10.1681 4.40154 32.719 10.1303 18.5309 40.266 10.1244 13.6679 14.2263 10.1377 23.0462 22.7994 10.1333 21.7028 2.70157 10.137 23.1159 44.4157 10.1281 7.56966 6.82094 10.137 23.6438 46.5807 10.1555 0.804138 -22.7316 10.1651 -8.79883 46.5392 10.1481 -8.35619 -6.5737 10.1422 -30.0845 -12.5993 10.151 -28.2717 -18.4966 10.1644 -25.6115 -21.6988 10.1659 -20.5282 -21.6462 10.1607 -14.2928 40.6619 10.1362 -21.951 32.9614 10.1496 -27.1618 22.9625 10.1599 -31.832 13.8408 10.1637 -33.647 2.11658 10.1488 -32.443 44.7679 10.1347 -15.5147 6.04318 10.1488 -32.526 12.5907 10.1733 -3.80531 59.1887 91.8044 8.95242 -37.1383 88.9529 -2.97714 -31.8022 10.0858 -1.97102 -25.1531 10.1622 -2.2068 -48.967 94.3801 -3.43312 -42.7435 92.7505 -3.24479 -45.2458 14.541 -1.9814 -38.8006 11.688 -1.94433 -51.5643 18.2037 -2.1067 -56.8395 22.9229 -2.04294 -61.3273 28.167 -2.00068 -64.683 34.1592 -1.92802 -67.7244 42.676 -1.88947 -69.2985 52.0358 -1.98363 -69.0782 59.0674 -1.98585 -68.0128 66.587 -1.96361 -66.3149 75.4782 -2.11857 -61.6254 86.6775 -2.9586 -55.4464 92.4777 -3.38715 -32.8632 83.5116 -1.95249 -29.1664 80.3716 -1.67964 -25.0219 78.6923 -1.82199 -19.731 77.9019 -1.94433 -13.8211 78.3245 -1.89985 0.599609 81.0967 -1.11393 5.68803 83.0274 -0.72765 6.50954 84.4391 -0.967133 5.72511 86.2104 -0.331726 3.73808 88.5303 1.10886 0.442429 91.5093 2.82008 -2.82133 95.1602 4.04714 -5.66766 99.1208 5.2742 -8.03503 103.465 6.34038 -9.79816 108.128 7.22415 -10.9333 112.931 8.02786 -26.7479 60.7542 43.6698 -20.1774 63.8423 42.5992 -8.42801 27.4619 48.2347 14.9477 25.7121 48.3904 3.09452 25.896 48.4757 42.6645 36.5214 48.0598 47.7344 49.638 47.1827 40.5551 62.2549 45.2372 -20.4769 63.1994 -50.3046 -27.628 60.1306 -51.1217 -8.33606 28.1588 -55.7549 41.6947 37.0493 -55.6696 46.1069 49.7648 -54.9594 39.661 61.5616 -52.9449 -28.2701 61.5994 42.6785 -21.096 64.5792 41.7131 -10.6093 65.5757 41.2676 1.58052 66.8139 41.2357 -20.6037 30.6107 47.064 -27.9498 36.4747 46.6355 -32.0076 43.3195 45.7562 -33.3289 50.1288 44.8568 -9.84192 26.1273 47.153 -32.1367 56.4888 43.8329 40.1118 30.266 46.5139 29.9349 25.9004 46.5236 16.4046 23.9305 47.0581 3.12344 24.0639 47.2805 46.8217 35.817 46.5762 50.7757 42.2756 46.3478 52.0569 49.3051 45.7651 50.1277 56.399 44.7582 45.0638 62.5551 43.5645 13.7088 68.7742 41.1082 26.4851 69.2584 41.2994 37.1171 66.9377 42.3456 1.53827 66.2289 -48.7276 -11.1349 65.489 -48.6957 -21.7418 64.0098 -49.2903 -29.2399 60.7943 -50.2557 -33.7448 49.2984 -52.3954 -32.2894 43.1438 -53.1362 -27.8334 36.8602 -53.862 -20.3917 31.2343 -54.2831 -10.0503 26.5855 -54.5085 -32.8298 55.3737 -51.4331 2.729 24.1781 -54.8289 15.8893 23.9164 -54.731 29.5034 26.0458 -54.0829 39.6795 30.5618 -53.8806 46.253 36.21 -53.7901 50.0128 42.5536 -53.5439 51.139 49.2547 -52.9597 49.321 55.8341 -52.0848 44.6241 61.6202 -51.0127 37.1431 65.7944 -49.8316 26.732 68.0261 -48.7847 13.6339 67.8667 -48.6371</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2108\" source=\"#LOD3spShape-lib-positions-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"normal\" id=\"LOD3spShape-lib-normals\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"LOD3spShape-lib-normals-array\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6870\">-0.192109 -0.934569 0.299458 -0.06315 -0.993623 0.093407 -0.038767 -0.993005 0.111528 -0.11695 -0.921313 0.370816 -0.085264 -0.993927 0.06957 -0.25821 -0.942076 0.214058 -0.305238 -0.944237 0.123473 -0.103012 -0.993873 0.04007 -0.109849 -0.993698 0.02232 -0.319871 -0.945464 0.061492 0.322015 -0.653105 0.68539 0.238016 -0.809438 0.536805 0.39559 -0.829362 0.394547 0.547107 -0.665777 0.50736 0.149283 -0.925897 0.34703 0.227375 -0.943129 0.242504 -0.182106 -0.7902 0.585167 -0.310544 -0.820667 0.479654 -0.418246 -0.841388 0.342252 -0.407245 -0.671943 0.618582 -0.544891 -0.711903 0.443045 -0.234371 -0.618101 0.750347 -0.474249 -0.857348 0.200104 -0.472515 -0.875412 0.101901 -0.601129 -0.750567 0.274396 -0.593419 -0.791427 0.146617 0.282256 -0.953514 0.105559 0.497204 -0.845385 0.195227 0.680184 -0.678639 0.277127 0.475425 -0.378716 0.794069 0.394699 -0.508097 0.765539 0.651796 -0.507567 0.563506 0.728714 -0.35445 0.585953 -0.280085 -0.456993 0.844222 -0.472084 -0.52749 0.706322 -0.629949 -0.5896 0.505505 -0.525528 -0.402813 0.749375 -0.688269 -0.483465 0.540877 -0.345696 -0.333643 0.877027 0.797494 -0.502759 0.333521 0.868857 -0.332163 0.36709 0.779236 -0.208323 0.591094 0.556733 -0.232343 0.797537 0.611419 -0.086952 0.786515 0.805975 -0.07802 0.586786 0.901017 -0.198547 0.385677 0.912954 -0.073233 0.401437 0.587309 0.31693 0.74473 0.626298 0.112282 0.771455 0.807598 0.10215 0.580819 0.767563 0.296279 0.568389 0.905959 0.097128 0.412074 0.868972 0.273148 0.412646 0.369046 0.664292 0.650016 0.498279 0.502362 0.706648 0.692864 0.459155 0.555982 0.584348 0.597963 0.548615 0.813067 0.415121 0.408163 0.751114 0.515121 0.41289 0.19627 0.766932 0.610977 0.270011 0.7156 0.644213 0.477417 0.672112 0.565984 0.38089 0.730939 0.56626 0.665617 0.613839 0.424448 0.5601 0.712938 0.42191 -0.142237 0.892596 0.427833 -0.115435 0.801937 0.586149 -0.145778 0.823148 0.548795 -0.183731 0.901347 0.392196 -0.170598 0.892172 0.418242 -0.198923 0.94046 0.275618 -0.083913 0.784617 0.614276 -0.104776 0.836925 0.537195 -0.07128 0.762805 0.642687 -0.083732 0.95816 0.273711 -0.152017 0.963903 0.218593 -0.043758 0.995476 0.084341 0.11433 0.983142 0.142691 -0.188565 0.971095 0.146345 -0.153667 0.986837 0.050398 -0.277878 0.955105 0.102752 -0.278528 0.959779 0.035299 -0.266228 0.943946 0.195163 -0.494465 0.642119 0.585822 -0.123678 0.744163 0.656449 -0.094312 0.919596 0.381378 -0.521981 0.776809 0.352284 0.287464 0.72515 0.625717 0.35104 0.866307 0.355363 -0.085399 0.659129 0.747166 0.224013 0.689809 0.688464 -0.41145 0.564912 0.715251 -0.896437 0.304297 0.322186 -0.755967 0.475931 0.449448 -0.804069 0.52634 0.276477 -0.929837 0.307416 0.202235 -0.651421 0.428251 0.626301 -0.812838 0.261118 0.520685 -0.700828 0.14352 0.698743 -0.528973 0.340042 0.777534 -0.323564 0.505566 0.799819 -0.384671 0.217738 0.897005 -0.26768 0.410295 0.871783 -0.51729 -0.021456 0.855541 -0.703157 -0.1848 0.686599 -0.802326 -0.033833 0.595927 -0.877917 -0.14451 0.456484 -0.806047 -0.267053 0.528176 -0.89323 0.116397 0.434273 -0.92976 -0.00252 0.368157 -0.693473 -0.636086 0.338364 -0.705373 -0.68381 0.186692 -0.75587 -0.532488 0.380943 -0.796546 -0.566484 0.211211 -0.077417 -0.240522 0.967551 -0.089798 -0.134723 0.986806 -0.168487 -0.121841 0.978145 -0.138523 -0.221426 0.965289 -0.113525 -0.038943 0.992772 -0.195995 -0.017488 0.980449 -0.602195 -0.290799 0.743503 -0.742439 -0.374894 0.555193 -0.432918 -0.200289 0.878901 -0.818103 -0.413906 0.399236 -0.879805 -0.419705 0.22314 -0.8832 -0.285146 0.372357 -0.940384 -0.263381 0.215195 -0.205308 0.092751 0.974293 -0.12459 0.080228 0.988959 -0.122228 0.178941 0.976238 -0.196017 0.189929 0.962031 -0.04789 0.778827 0.625407 -0.065661 0.712179 0.698921 -0.086279 0.666075 0.740878 -0.054107 0.736647 0.674109 0.32735 0.918436 0.222077 0.038245 0.947019 0.318892 -0.067436 0.912058 0.404479 0.299059 0.868082 0.396229 0.020777 0.864061 0.502958 0.601008 0.74983 0.276665 0.10013 0.787789 0.607752 0.137884 0.80072 0.582954 0.293157 0.782715 0.549014 0.251535 0.793724 0.553834 0.033793 0.760625 0.648311 0.012829 0.792843 0.609291 -0.001462 0.805911 0.592035 0.470195 0.782277 0.408607 0.406592 0.824118 0.394351 -0.228092 0.919665 0.319673 -0.149194 0.877198 0.45636 0.221981 0.775644 0.590848 0.477153 0.718896 0.505483 0.642223 0.702693 0.306223 -0.941954 -0.151996 0.299365 -0.977272 -0.097629 0.18817 -0.969667 0.027366 0.242894 -0.984274 0.065087 0.16422 -0.081923 0.660823 0.746057 -0.143863 0.635643 0.75846 -0.950758 0.179022 0.253002 -0.969441 0.180582 0.166057 0.433741 0.791171 0.431182 0.286611 0.730746 0.619568 0.635928 0.49935 0.588427 0.410194 0.41588 0.811655 -0.030936 0.832088 0.553781 -0.063268 0.738092 0.671727 -0.236437 0.785277 0.572222 -0.098454 0.365739 0.925495 -0.356861 0.365039 0.859882 0.116456 0.704283 0.700303 0.160354 0.369389 0.915335 -0.380395 0.81813 0.431235 -0.491132 0.823545 0.283836 -0.59916 0.341103 0.724332 -0.798743 0.301719 0.520552 0.047573 -0.992573 0.111966 0.069354 -0.994739 0.075398 0.015592 -0.990695 0.135202 0.028503 -0.991144 0.129693 0.0864 -0.911356 0.402449 0.046371 -0.905885 0.420977 -0.018844 -0.991895 0.125654 -0.057065 -0.909815 0.411073 0.087743 -0.99576 0.027619 0.126144 -0.779499 0.613571 0.067151 -0.760559 0.645787 0.153713 -0.607983 0.778928 0.075394 -0.57677 0.81342 -0.085238 -0.760064 0.644234 -0.102578 -0.566247 0.817827 0.045094 -0.227711 0.972684 0.047131 -0.133922 0.98987 0.005657 -0.158915 0.987276 0.006376 -0.238835 0.971039 0.058631 -0.040878 0.997442 0.002975 -0.056704 0.998387 0.127635 -0.116289 0.98498 0.152279 -0.014755 0.988227 0.100619 -0.20516 0.973543 0.059288 0.068169 0.995911 -0.006745 0.055506 0.998436 0.05032 0.180626 0.982264 -0.021925 0.163036 0.986376 0.163736 0.099069 0.981517 0.156175 0.220652 0.962768 0.020684 0.317842 0.947918 -0.050294 0.316731 0.947181 -0.025411 0.533931 0.845146 -0.086911 0.5228 0.848014 0.127716 0.356862 0.925385 0.071441 0.516034 0.853584 -0.061054 0.766638 0.63917 0.078289 0.741306 0.666586 0.208508 0.671416 0.711144 0.313289 0.499706 0.807554 0.378689 0.310587 0.871855 0.400342 0.118619 0.908656 0.381543 -0.070384 0.921668 0.331083 -0.22771 0.915714 0.260306 -0.364971 0.893889 0.178111 -0.473128 0.862802 0.071351 -0.485088 0.87155 -0.127917 -0.411323 0.902469 -0.217134 -0.272275 0.9374 -0.28612 -0.114565 0.95132 -0.297833 0.014133 0.954513 -0.259212 0.153056 0.953616 -0.214461 0.319798 0.922895 -0.151901 0.528641 0.835144 -0.103669 0.295387 0.949736 -0.165776 0.313209 0.935104 -0.083675 0.492895 0.866056 -0.119834 0.470121 0.874429 -0.087588 0.774585 0.626376 -0.256922 -0.123444 0.958516 -0.282852 0.013185 0.959073 -0.378724 -0.276752 0.883163 -0.438423 -0.070607 0.895991 -0.437651 -0.063548 0.896897 -0.390678 -0.27619 0.878117 -0.251518 -0.431278 0.866451 -0.276371 -0.456203 0.845871 -0.19905 -0.303218 0.9319 -0.274611 0.135247 0.951996 -0.249887 0.293965 0.922573 -0.442099 0.099565 0.891423 -0.416837 0.295755 0.859521 -0.412837 0.32408 0.851198 -0.438351 0.113033 0.891668 0.156401 -0.497394 0.85331 0.061408 -0.535686 0.842181 0.119454 -0.452018 0.883974 0.032667 -0.468626 0.882793 0.050048 -0.559259 0.827481 0.150699 -0.524664 0.837865 0.208739 -0.361482 0.908713 0.238743 -0.413555 0.878621 0.232419 -0.391651 0.890276 -0.125806 -0.451337 0.883441 -0.128663 -0.465603 0.875591 -0.150994 -0.530967 0.833832 0.284031 -0.235212 0.929517 0.269401 -0.199777 0.942079 0.293517 -0.238502 0.925724 0.286186 -0.032306 0.957629 0.310905 -0.056264 0.948774 0.312743 -0.062252 0.947795 0.322676 0.120164 0.938851 0.286685 0.125421 0.94978 0.312932 0.123775 0.941676 0.279716 0.294166 0.913907 0.303905 0.313656 0.89959 0.309104 0.311381 0.898608 0.037576 0.808415 0.587412 0.169817 0.698638 0.69503 -0.000992 0.780213 0.625514 0.138259 0.681294 0.718834 0.161529 0.715447 0.679738 0.018778 0.826522 0.562592 -0.09996 0.801388 0.589733 -0.098648 0.85295 0.512587 -0.076807 0.814801 0.574631 0.262922 0.511395 0.818137 0.242579 0.49202 0.836105 0.262895 0.521513 0.811733 -0.185749 0.495789 0.848346 -0.322481 0.52883 0.785076 -0.160242 0.722224 0.672841 -0.146317 0.772841 0.617501 -0.312096 0.577251 0.754571 -0.076559 0.797941 0.597853 -0.071594 0.840171 0.537576 -0.107376 0.806238 0.581766 -0.112987 0.848782 0.51653 -0.287568 -0.01818 0.957588 -0.246849 -0.15606 0.956405 -0.173556 -0.290795 0.940913 -0.283237 0.22681 0.931844 -0.297529 0.100463 0.949412 0.014537 -0.330354 0.943745 0.072188 -0.329168 0.941508 0.150177 -0.268878 0.951394 -0.091484 -0.341365 0.935468 0.211928 -0.141481 0.96699 0.233591 -0.009434 0.972289 0.24083 0.120366 0.963075 0.233787 0.260424 0.936762 0.102888 0.613185 0.78321 -0.030399 0.694019 0.719314 -0.098708 0.675427 0.730791 0.204918 0.428836 0.879834 -0.132475 0.557408 0.819602 -0.232943 0.388015 0.89173 -0.075386 0.634728 0.769049 -0.09685 0.652599 0.751489 -0.092397 0.509504 0.855493 -0.081276 0.316551 0.945087 -0.068265 0.172012 0.982727 -0.054553 0.065325 0.996372 -0.043341 -0.055449 0.99752 -0.033383 -0.160096 0.986537 -0.028874 -0.24536 0.969002 -0.033304 -0.336054 0.941254 -0.042357 -0.467717 0.882863 -0.046567 -0.556118 0.829798 -0.037674 -0.519487 0.853647 -0.022566 -0.457423 0.888963 -0.012961 -0.556886 0.830488 -0.007732 -0.753873 0.656974 -0.003792 -0.90729 0.420489 -0.001149 -0.991208 0.132304 0.512335 -0.857386 0.049017 0.70555 -0.704425 0.077354 0.297092 -0.954566 0.023258 0.84286 -0.528889 0.09931 0.930258 -0.348816 0.113782 0.968103 -0.21837 0.122848 0.986591 -0.093131 0.134031 0.985676 0.081564 0.147617 0.95281 0.259757 0.157095 0.894834 0.417704 0.157465 0.844113 0.514896 0.149516 0.774064 0.618654 0.134508 0.673761 0.729252 0.119321 0.59429 0.795832 0.116061 0.5205 0.84585 0.116695 0.525074 0.841884 0.124616 0.765546 0.621669 0.16573 0.097097 -0.995263 0.004896 -0.565407 0.809464 0.158374 -0.611313 0.789337 0.056957 -0.920895 0.236324 0.310006 -0.979363 0.144989 0.140806 -0.738247 -0.362498 0.568846 -0.830423 -0.418752 0.367485 -0.844491 -0.498578 0.195588 -0.637358 -0.672695 0.37584 -0.668066 -0.709833 0.223216 -0.553902 -0.635855 0.537476 -0.346188 -0.291036 0.891881 -0.564224 -0.330618 0.756534 -0.436173 -0.617389 0.654663 -0.266348 -0.628612 0.730688 -0.097978 -0.251576 0.962865 -0.086895 -0.643915 0.760146 0.176816 -0.222898 0.958672 0.120695 -0.699248 0.704617 0.465192 -0.190422 0.864486 0.373032 -0.681742 0.629345 0.749171 -0.141411 0.647105 0.57208 -0.682024 0.455597 0.984143 0.023025 0.175875 0.738366 -0.656556 0.154109 -0.095635 0.76965 0.631263 -0.315057 -0.948903 0.017974 -0.110306 -0.993886 0.004918 -0.457702 -0.888528 0.032039 -0.589111 -0.807168 0.037792 0.510058 -0.858624 -0.051043 0.70623 -0.703125 -0.082786 0.294439 -0.955391 -0.023102 0.843862 -0.525198 -0.109834 0.928966 -0.346434 -0.130403 0.964683 -0.219414 -0.145751 0.981881 -0.104853 -0.157847 0.98501 0.058597 -0.162241 0.95819 0.238399 -0.158234 0.897823 0.414043 -0.149942 0.829346 0.538002 -0.150797 0.747675 0.644543 -0.159833 0.659153 0.734437 -0.161615 0.265044 0.963485 0.038059 0.039034 0.999086 0.017437 0.018622 0.997848 -0.062875 0.244836 0.962544 -0.116463 -0.130658 0.991351 0.012349 -0.138096 0.990164 -0.022449 -0.273293 0.96189 0.008822 -0.274255 0.961657 0.000421 -0.053579 0.998129 0.029453 -0.515915 0.855204 0.049583 0.344116 0.89883 -0.271457 -0.055876 0.956544 -0.286182 0.365283 0.930753 0.01632 -0.828131 0.557888 0.054409 -0.952772 0.299578 0.049783 -0.711727 -0.701459 0.037422 -0.905755 -0.418034 -0.069676 -0.8121 -0.578723 -0.074656 -0.818385 -0.573492 0.036778 -0.910268 -0.412077 0.040054 0.709552 0.701423 0.067393 0.515618 0.854187 0.067105 0.52626 0.835416 -0.158524 0.711562 0.67733 -0.186822 0.587221 0.793907 -0.157743 0.504751 0.849895 -0.151344 0.655685 0.754174 0.036026 0.627882 0.742251 -0.234154 -0.995755 -0.076042 0.051857 -0.966252 -0.253074 0.048064 -0.995208 0.084624 0.048994 -0.98245 0.180559 0.046801 0.500696 0.849415 -0.166726 0.699452 0.674292 -0.236847 -0.644888 0.764208 0.010314 -0.658085 0.75262 0.022063 -0.996997 0.052783 0.056672 -0.999004 0.031144 0.031952 0.095211 -0.995451 -0.003478 -0.828476 -0.551185 0.099113 -0.83354 -0.552229 0.015914 -0.680841 -0.722996 0.117184 -0.70438 -0.709823 0.000289 0.942473 0.130036 -0.307954 0.760792 -0.603232 -0.239387 -0.191598 -0.926128 -0.324926 -0.11404 -0.910397 -0.397707 -0.034523 -0.992382 -0.118262 -0.056307 -0.993628 -0.097639 -0.08229 -0.99447 -0.065257 -0.263919 -0.93806 -0.224478 -0.301453 -0.945273 -0.124839 -0.10268 -0.994176 -0.032728 -0.109842 -0.993816 -0.016268 -0.306215 -0.95011 -0.059356 0.319117 -0.647606 -0.691933 0.534285 -0.666968 -0.519319 0.385251 -0.83007 -0.403195 0.239592 -0.805165 -0.542499 0.228594 -0.939199 -0.256224 0.158278 -0.918607 -0.362089 -0.178484 -0.75672 -0.628902 -0.309497 -0.797477 -0.51792 -0.420841 -0.831771 -0.362009 -0.538657 -0.700909 -0.467519 -0.394197 -0.64598 -0.653696 -0.222745 -0.580396 -0.783278 -0.463953 -0.858375 -0.218951 -0.461429 -0.880375 -0.109649 -0.599801 -0.782405 -0.167575 -0.59309 -0.744341 -0.306921 0.280118 -0.952342 -0.120743 0.489162 -0.845976 -0.212238 0.674722 -0.67782 -0.292079 0.467443 -0.364911 -0.805194 0.712309 -0.345361 -0.611018 0.641575 -0.494023 -0.586791 0.39121 -0.489528 -0.779305 -0.257887 -0.431057 -0.864687 -0.450347 -0.520374 -0.725533 -0.610796 -0.588414 -0.529809 -0.665056 -0.488467 -0.56489 -0.505193 -0.408993 -0.759938 -0.312897 -0.314982 -0.896037 0.796286 -0.495922 -0.346396 0.865739 -0.328626 -0.377493 0.760432 -0.204661 -0.616326 0.545204 -0.224716 -0.807623 0.593644 -0.079984 -0.800743 0.783915 -0.086134 -0.614865 0.896384 -0.199742 -0.395726 0.906271 -0.095045 -0.411874 0.551478 0.253954 -0.794594 0.749758 0.226635 -0.62169 0.783116 0.056593 -0.619295 0.5969 0.085909 -0.797703 0.90526 0.04554 -0.42241 0.880719 0.218398 -0.420282 0.336343 0.599609 -0.726183 0.572035 0.582293 -0.577677 0.679985 0.408785 -0.6087 0.461982 0.425407 -0.778204 0.822759 0.398489 -0.405308 0.73865 0.550111 -0.389581 0.158279 0.713924 -0.6821 0.37644 0.723509 -0.578643 0.467127 0.676077 -0.569835 0.228363 0.685665 -0.691168 0.648361 0.657528 -0.383777 0.564637 0.73282 -0.379684 -0.132948 0.895471 -0.424801 -0.16783 0.911023 -0.376656 -0.12755 0.841928 -0.524298 -0.095044 0.810733 -0.577649 -0.191234 0.937857 -0.289574 -0.161097 0.88789 -0.430929 -0.099619 0.831047 -0.547207 -0.068866 0.782563 -0.618751 -0.042804 0.75673 -0.652324 -0.106611 0.95728 -0.268792 0.061832 0.967519 -0.24512 -0.090989 0.984179 -0.152028 -0.171442 0.958937 -0.225938 -0.170146 0.982001 -0.081999 -0.195635 0.967138 -0.16239 -0.282706 0.95847 -0.037576 -0.282545 0.952356 -0.114834 -0.262642 0.936921 -0.230646 -0.457702 0.605028 -0.651498 -0.494691 0.715297 -0.493589 -0.076223 0.822259 -0.563986 -0.087936 0.702019 -0.706709 0.319664 0.765998 -0.557729 0.294833 0.694844 -0.655946 0.224172 0.682804 -0.695361 -0.063717 0.649517 -0.757673 -0.387084 0.558006 -0.734027 -0.896043 0.261582 -0.358722 -0.944002 0.274393 -0.183216 -0.810194 0.488173 -0.324457 -0.742944 0.435424 -0.508371 -0.645648 0.412332 -0.642745 -0.811086 0.243382 -0.531887 -0.699157 0.136155 -0.701885 -0.530892 0.331786 -0.77979 -0.30426 0.511436 -0.803654 -0.248492 0.408629 -0.878222 -0.387347 0.198969 -0.900208 -0.511763 -0.033699 -0.858465 -0.688173 -0.178311 -0.703294 -0.790784 -0.260454 -0.553917 -0.872048 -0.112083 -0.476413 -0.794394 -0.013341 -0.607256 -0.920109 0.042291 -0.389372 -0.884532 0.127633 -0.44868 -0.676964 -0.636735 -0.369174 -0.702442 -0.678564 -0.214769 -0.78028 -0.57775 -0.239514 -0.733839 -0.540713 -0.41123 -0.092147 -0.181509 -0.979062 -0.144369 -0.166467 -0.975421 -0.159435 -0.079334 -0.984015 -0.094565 -0.065989 -0.993329 -0.168501 -0.000101 -0.985701 -0.104493 0.01153 -0.994459 -0.726284 -0.369697 -0.579514 -0.588438 -0.292192 -0.753899 -0.407291 -0.20071 -0.890971 -0.869486 -0.42871 -0.245363 -0.799739 -0.41079 -0.4378 -0.938755 -0.260153 -0.225963 -0.869609 -0.274794 -0.410206 -0.170534 0.079532 -0.982137 -0.161151 0.169743 -0.972223 -0.090409 0.181448 -0.979236 -0.10396 0.092065 -0.990311 -0.061474 0.779505 -0.623373 -0.054952 0.743789 -0.666152 -0.103099 0.66864 -0.736404 -0.089248 0.714186 -0.694242 0.313646 0.879357 -0.358269 0.027421 0.941997 -0.334499 -0.080622 0.891857 -0.445073 0.022338 0.831019 -0.555795 0.289168 0.850636 -0.43909 0.556005 0.699289 -0.449281 0.050624 0.773712 -0.631511 0.231632 0.808083 -0.541616 0.288863 0.771715 -0.566581 0.103245 0.744807 -0.659244 0.031939 0.724546 -0.688486 0.003268 0.749951 -0.661485 -0.026171 0.792703 -0.609046 0.482137 0.794981 -0.36817 0.398207 0.851469 -0.34122 -0.221077 0.901734 -0.371484 -0.143622 0.850839 -0.505417 0.234374 0.743588 -0.626216 0.46128 0.703836 -0.540218 0.562017 0.649813 -0.511741 -0.977474 -0.09123 -0.19032 -0.936551 -0.12725 -0.326619 -0.984003 0.070682 -0.163533 -0.961337 0.050417 -0.270718 -0.12138 0.620783 -0.774529 -0.05521 0.647511 -0.760053 -0.944461 0.162933 -0.285388 -0.972855 0.171501 -0.15537 0.237565 0.800499 -0.55024 0.395586 0.847721 -0.353385 0.35269 0.570432 -0.741766 0.568049 0.652016 -0.502191 -0.054488 0.806873 -0.588206 -0.221404 0.774347 -0.592762 -0.082141 0.728443 -0.680164 -0.34248 0.449493 -0.825023 -0.1184 0.432945 -0.893611 0.102358 0.477975 -0.872389 0.062161 0.735187 -0.675008 -0.351621 0.822971 -0.446186 -0.453177 0.839825 -0.298872 -0.753559 0.408132 -0.515341 -0.56556 0.457673 -0.686059 0.070662 -0.994095 -0.082354 0.053046 -0.991548 -0.1184 0.013209 -0.990078 -0.139895 0.042006 -0.899343 -0.435221 0.096965 -0.90473 -0.414802 0.032991 -0.99044 -0.133938 -0.056118 -0.897897 -0.436614 -0.016738 -0.990736 -0.134764 0.086464 -0.995644 -0.034877 0.061043 -0.750045 -0.658564 0.137198 -0.774505 -0.61751 0.069229 -0.578014 -0.813085 0.165722 -0.607498 -0.776841 -0.08926 -0.735213 -0.671934 -0.114239 -0.544747 -0.830783 0.019911 -0.230638 -0.972836 -0.030593 -0.214954 -0.976145 -0.045955 -0.097756 -0.994149 0.002659 -0.095509 -0.995425 -0.052141 0.011297 -0.998576 0.002127 0.01818 -0.999832 0.120697 0.01473 -0.99258 0.113372 -0.110702 -0.987366 0.096736 -0.223211 -0.969958 -0.055442 0.119889 -0.991238 -0.003618 0.136061 -0.990694 -0.057352 0.236947 -0.969828 -0.01353 0.263616 -0.964533 0.087309 0.294367 -0.951696 0.113304 0.153076 -0.981697 -0.061332 0.359879 -0.930981 -0.028754 0.371752 -0.927887 -0.069217 0.479884 -0.874597 -0.04309 0.485197 -0.873342 0.017067 0.479437 -0.87741 0.052641 0.398131 -0.915817 -0.034654 0.760876 -0.647972 0.07156 0.732098 -0.67743 0.191934 0.634425 -0.748777 0.303753 0.458556 -0.835141 0.384402 0.282027 -0.879031 0.419845 0.110042 -0.9009 0.406427 -0.062856 -0.911518 0.353955 -0.220425 -0.908916 0.281504 -0.354287 -0.89176 0.067511 -0.500136 -0.863311 0.193668 -0.469971 -0.861174 -0.14958 -0.414815 -0.897527 -0.228363 -0.298833 -0.926579 -0.288297 -0.161724 -0.943785 -0.298702 -0.022525 -0.954081 -0.190826 0.301532 -0.934165 -0.246409 0.126265 -0.960906 -0.15017 0.520238 -0.840715 -0.129702 0.309072 -0.942153 -0.066417 0.305119 -0.949995 -0.055085 0.462192 -0.885067 -0.090042 0.449004 -0.888981 -0.071733 0.766958 -0.637675 -0.283007 -0.028509 -0.958694 -0.281863 -0.191917 -0.940065 -0.351312 -0.084797 -0.932411 -0.309888 -0.241843 -0.919501 -0.329877 -0.256795 -0.908426 -0.371873 -0.083592 -0.924512 -0.244245 -0.370528 -0.896133 -0.261882 -0.399787 -0.878401 -0.239012 -0.350966 -0.905371 -0.228514 0.26963 -0.935457 -0.253264 0.114721 -0.960571 -0.387754 0.261515 -0.883887 -0.38213 0.068912 -0.921536 -0.395833 0.087229 -0.914171 -0.400411 0.295266 -0.867461 0.059717 -0.537384 -0.841221 0.170799 -0.490618 -0.854471 0.023673 -0.491984 -0.870282 0.138029 -0.482666 -0.864859 0.172547 -0.546798 -0.819292 0.048051 -0.585369 -0.809342 0.24535 -0.391127 -0.88703 0.271557 -0.425603 -0.863203 0.253362 -0.383231 -0.888224 -0.16392 -0.464478 -0.870282 -0.156074 -0.43633 -0.886147 -0.174103 -0.495914 -0.85074 0.311338 -0.234144 -0.921002 0.314452 -0.22765 -0.921573 0.331844 -0.253055 -0.908759 0.334948 -0.047443 -0.941041 0.358791 -0.06942 -0.930833 0.352034 -0.064094 -0.93379 0.370008 0.120956 -0.921121 0.325861 0.13785 -0.935314 0.365501 0.126808 -0.922133 0.293842 0.331419 -0.896559 0.345775 0.339247 -0.874843 0.349666 0.318511 -0.88107 0.181191 0.722006 -0.667741 0.050427 0.826013 -0.561391 0.124911 0.682336 -0.720288 -8.3e-005 0.771418 -0.636329 0.029371 0.862647 -0.504953 0.172441 0.753171 -0.634821 -0.088449 0.796983 -0.597491 -0.084759 0.878493 -0.470177 -0.056365 0.816918 -0.573992 0.28721 0.527283 -0.799677 0.229314 0.522426 -0.821271 0.28443 0.557632 -0.779838 -0.184783 0.47937 -0.857939 -0.159072 0.705689 -0.690434 -0.306838 0.513915 -0.801088 -0.313651 0.56677 -0.761837 -0.157757 0.765176 -0.624195 -0.073978 0.778021 -0.623867 -0.070331 0.835642 -0.544753 -0.087799 0.795672 -0.599331 -0.090591 0.859197 -0.503561 -0.232887 -0.144487 -0.961711 -0.244705 -0.029472 -0.96915 -0.189644 -0.261806 -0.946305 -0.251478 0.075314 -0.964928 -0.245154 0.195506 -0.949567 0.069738 -0.345456 -0.93584 -0.006898 -0.32309 -0.946343 0.169707 -0.300933 -0.938424 -0.116208 -0.315517 -0.941778 0.239122 -0.166926 -0.956533 0.255866 -0.011563 -0.966643 0.242809 0.152646 -0.957989 0.202267 0.315072 -0.927264 -0.032641 0.607102 -0.793953 0.060458 0.564272 -0.823372 -0.076278 0.598808 -0.797252 0.144831 0.45396 -0.879173 -0.202967 0.364176 -0.908945 -0.116061 0.523868 -0.843856 -0.061288 0.585836 -0.808109 -0.069247 0.590821 -0.803825 -0.06147 0.471147 -0.87991 -0.062087 0.339494 -0.938557 -0.069753 0.213116 -0.974534 -0.075711 0.106988 -0.991373 -0.074759 0.010224 -0.997149 -0.065915 -0.084862 -0.99421 -0.056359 -0.195476 -0.979088 -0.058264 -0.312594 -0.948098 -0.069962 -0.465689 -0.882179 -0.071195 -0.557949 -0.826815 -0.045754 -0.47841 -0.876944 -0.060646 -0.52652 -0.847997 -0.029989 -0.553187 -0.832517 -0.018388 -0.737572 -0.675018 -0.009087 -0.897441 -0.441041 -0.00158 -0.989993 -0.141109 -0.308322 -0.951065 -0.020322 -0.110713 -0.99381 -0.009215 -0.455221 -0.889796 -0.032191 -0.596471 -0.800898 -0.052761 -0.511407 0.823202 -0.246578 -0.952243 0.291325 -0.09145 -0.828387 0.538442 -0.154449 -0.712918 -0.697663 -0.070811 -0.964192 -0.256036 -0.069136 -0.99426 -0.077609 -0.073642 -0.993521 0.085088 -0.075342 -0.980403 0.180699 -0.07847 -0.618484 0.785248 -0.029371 -0.985065 0.143698 -0.094851 -0.540296 0.826158 -0.159823 -0.899944 0.302263 -0.314224 -0.858864 -0.489238 -0.15165 -0.711588 -0.680949 -0.173063 -0.767866 -0.270651 -0.580629 -0.848883 -0.383401 -0.36387 -0.671939 -0.656576 -0.342645 -0.602072 -0.614193 -0.510173 -0.382168 -0.137855 -0.913752 -0.607476 -0.181274 -0.773377 -0.492091 -0.563373 -0.66367 -0.327921 -0.53701 -0.777231 -0.13782 -0.132667 -0.981532 -0.138241 -0.548212 -0.824835 0.069946 -0.573914 -0.815923 0.11889 -0.117351 -0.985948 0.269629 -0.627654 -0.730309 0.418909 -0.085153 -0.904027 0.751138 0.018205 -0.659894 0.495888 -0.698066 -0.516526 -0.95931 0.034968 0.280182 -0.952229 0.032635 0.303636 -0.93144 0.167086 0.323268 -0.946666 0.171861 0.272557 -0.944846 0.025037 0.326557 -0.91551 0.150958 0.372899 -0.937578 0.012119 0.347564 -0.899986 0.12397 0.417919 -0.930687 -0.005661 0.365772 -0.885622 0.08696 0.456193 -0.924746 -0.02703 0.379623 -0.873384 0.042333 0.485189 -0.919713 -0.051956 0.389139 -0.863691 -0.010116 0.503919 -0.915891 -0.078133 0.39375 -0.857075 -0.064545 0.511132 -0.913924 -0.104134 0.392301 -0.854193 -0.116994 0.506623 -0.913686 -0.130204 0.385001 -0.854276 -0.170718 0.490986 -0.915221 -0.154787 0.372036 -0.856986 -0.224754 0.463745 -0.918574 -0.175545 0.354127 -0.862661 -0.271395 0.426803 -0.924357 -0.190998 0.330279 -0.874699 -0.302741 0.378484 -0.93489 -0.202027 0.291831 -0.900162 -0.32556 0.289342 -0.890596 -0.319641 0.323525 -0.930807 -0.199874 0.306022 -0.896 0.289458 0.336747 -0.918721 0.296141 0.261252 -0.872107 0.26593 0.410745 -0.848724 0.226438 0.477905 -0.827137 0.172709 0.534805 -0.80861 0.10747 0.578446 -0.794368 0.032855 0.606547 -0.785336 -0.046853 0.617294 -0.781515 -0.12666 0.610894 -0.781913 -0.208771 0.58739 -0.785856 -0.293485 0.544332 -0.793937 -0.361184 0.489091 -0.811021 -0.403504 0.423592 -0.835242 -0.430573 0.342022 -0.847345 0.403795 0.3449 -0.876998 0.412515 0.246384 -0.816114 0.373023 0.441375 -0.785473 0.321444 0.528872 -0.757102 0.251755 0.60284 -0.732492 0.167285 0.659903 -0.71285 0.071993 0.697612 -0.699448 -0.030237 0.714044 -0.693366 -0.135002 0.707826 -0.694705 -0.244186 0.676579 -0.700161 -0.36004 0.616559 -0.706167 -0.453566 0.543697 -0.723583 -0.510419 0.464651 -0.757493 -0.546167 0.357639 -0.786239 0.510828 0.347683 -0.822283 0.521471 0.227858 -0.748188 0.473296 0.464978 -0.710816 0.41044 0.571208 -0.676265 0.32557 0.66081 -0.646313 0.222825 0.729815 -0.622397 0.107069 0.775344 -0.605751 -0.016281 0.795488 -0.597541 -0.142104 0.789146 -0.599072 -0.273389 0.752576 -0.605625 -0.422009 0.67463 -0.607323 -0.542234 0.580639 -0.62045 -0.60942 0.493609 -0.663091 -0.648882 0.373178 -0.713977 0.609147 0.34522 -0.755821 0.6215 0.206088 -0.669772 0.565403 0.481378 -0.626414 0.492206 0.604433 -0.58635 0.393512 0.708055 -0.551603 0.274208 0.787746 -0.523909 0.140003 0.84019 -0.504656 -0.002861 0.863316 -0.494725 -0.148092 0.856339 -0.496885 -0.296649 0.81554 -0.511217 -0.470298 0.719359 -0.523448 -0.603062 0.601929 -0.54514 -0.6692 0.504969 -0.589688 -0.712391 0.380483 -0.632092 0.697412 0.337752 -0.679083 0.71125 0.181575 -0.582478 0.648166 0.490511 -0.533908 0.565768 0.62837 -0.489063 0.454778 0.744308 -0.450216 0.320826 0.833293 -0.419311 0.170384 0.891711 -0.397828 0.010371 0.917402 -0.386738 -0.152189 0.909545 -0.388906 -0.314579 0.865905 -0.416834 -0.497637 0.760662 -0.460989 -0.625959 0.629018 -0.542107 0.774681 0.32556 -0.593506 0.78981 0.15476 -0.487909 0.720672 0.492521 -0.434921 0.630341 0.64305 -0.3861 0.508756 0.769476 -0.343913 0.362223 0.866325 -0.310381 0.197869 0.929791 -0.287052 0.023243 0.957633 -0.274984 -0.154056 0.949026 -0.274153 -0.330443 0.903132 -0.301736 -0.514601 0.802584 -0.360883 -0.638403 0.679857 -0.445437 0.840329 0.308923 -0.50045 0.856542 0.126038 -0.387543 0.782319 0.487634 -0.331043 0.685354 0.648614 -0.279115 0.554987 0.783636 -0.234323 0.398047 0.886934 -0.198766 0.222238 0.954517 -0.174032 0.035606 0.984096 -0.161146 -0.153806 0.974872 -0.161623 -0.341915 0.925728 -0.183322 -0.527132 0.829774 -0.220903 -0.657095 0.720714 -0.343523 0.893833 0.288192 -0.401399 0.910874 0.095845 -0.282773 0.832684 0.476106 -0.223681 0.730476 0.645269 -0.169508 0.593188 0.787016 -0.122852 0.428085 0.895349 -0.085869 0.24334 0.966133 -0.060478 0.047525 0.997037 -0.048298 -0.151042 0.987347 -0.051169 -0.346801 0.936542 -0.071334 -0.536879 0.840638 -0.087789 -0.68823 0.720162 -0.21986 0.940431 0.259327 -0.28005 0.958152 0.059303 -0.156918 0.876718 0.454689 -0.095926 0.770248 0.630489 -0.040164 0.627316 0.777728 0.007734 0.455603 0.890149 0.046891 0.262808 0.963708 0.076503 0.059129 0.995315 0.087975 -0.141662 0.985998 0.082632 -0.346525 0.934394 0.066735 -0.543112 0.837004 0.044893 -0.70688 0.705907 -0.074449 0.972485 0.220751 -0.13589 0.990587 0.016451 -0.0105 0.907325 0.420298 0.052421 0.798072 0.600278 0.112271 0.651463 0.750327 0.17284 0.475296 0.862682 0.224622 0.286559 0.931359 0.237263 0.088989 0.967361 0.218281 -0.113 0.969322 0.208533 -0.342413 0.916116 0.208343 -0.548433 0.809824 0.177566 -0.726111 0.664254 0.072457 0.981536 0.17702 0.011184 0.999581 -0.026697 0.13045 0.91774 0.375149 0.17379 0.810665 0.559124 0.202259 0.677497 0.70717 0.281823 0.466274 0.838549 0.389486 0.279956 0.877454 0.38011 0.146887 0.913204 0.357385 -0.040932 0.93306 0.345941 -0.321259 0.881543 0.34413 -0.559385 0.754098 0.331752 -0.740685 0.584232 0.196145 0.971318 0.134422 0.140044 0.988072 -0.064045 0.22226 0.915547 0.335221 0.215212 0.826522 0.520139 0.485045 0.203691 0.850436 0.549186 0.085396 0.831326 0.51886 -0.274121 0.809717 0.494351 -0.559544 0.665228 0.486216 -0.716967 0.499552 0.288962 0.953069 0.090338 0.249176 0.963756 -0.09532 0.279421 0.910567 0.304618 0.388152 0.921065 0.031265 0.355698 0.926134 -0.125519 0.404067 0.903782 0.141097 0.68549 -0.217008 0.69499 0.702569 0.095581 0.705167 0.629523 -0.529053 0.569037 0.593718 -0.693079 0.408828 0.496683 0.867503 -0.027267 0.458279 0.875316 -0.154276 0.528047 0.848543 0.03378 0.806768 -0.152023 0.570977 0.808457 0.086821 0.582116 0.751952 -0.463847 0.468417 0.679141 -0.659907 0.321388 0.597185 0.799146 -0.068811 0.555473 0.811556 -0.181181 0.641605 0.76683 -0.017718 0.890943 -0.106367 0.441483 0.8665 0.068021 0.494522 0.874776 -0.373384 0.30879 0.812876 -0.546789 0.200637 0.713003 0.692155 -0.112017 0.675208 0.706006 -0.213658 0.760001 0.64795 -0.050575 0.881663 0.086627 0.463859 0.915057 -0.143088 0.377089 0.91943 -0.337729 0.201463 0.893271 -0.433495 0.118948 0.740476 -0.66906 0.063675 0.859379 -0.511092 0.015908 0.647012 -0.745143 -0.161672 0.622061 -0.770384 0.139818 0.519697 -0.840964 -0.150645 0.82048 0.555122 -0.136569 0.782459 0.574043 -0.241314 0.857424 0.511442 -0.057009 0.806681 0.536729 -0.247364 0.862468 0.496193 -0.099707 0.878972 0.473396 -0.057475 0.818208 0.516312 -0.252897 -0.95504 -0.087036 0.283414 0.458007 0.336509 0.822795 0.548647 0.436829 0.712858 0.498793 0.508214 0.702085 0.40895 0.438856 0.800103 0.458788 0.419381 0.783347 0.488579 0.295919 0.820806 0.338496 0.547557 0.765246 0.40128 0.540787 0.739273 0.447903 0.573978 0.685516 0.572577 0.090453 0.814846 0.659971 0.242585 0.711049 0.600793 0.356629 0.715446 0.507798 0.222804 0.832165 0.525407 0.175386 0.832579 0.592642 0.076696 0.801806 0.696495 -0.160757 0.699323 0.747071 -0.060562 0.66198 0.716368 0.089686 0.691935 0.643654 -0.044528 0.76402 0.679875 -0.004061 0.733317 0.751902 -0.071444 0.655392 0.836517 -0.293072 0.462977 0.828132 -0.230473 0.510959 0.762807 -0.199352 0.61513 0.753672 -0.259258 0.603957 0.803598 -0.130297 0.580735 0.857252 -0.175255 0.484153 0.916775 -0.199713 0.345889 0.913851 -0.163134 0.371839 0.958882 -0.051876 0.279022 0.954667 -0.015331 0.297282 0.878559 0.023718 0.477045 0.887732 -0.142315 0.437811 0.881622 0.374121 0.287709 0.786275 0.361357 0.501191 0.845764 0.203036 0.493417 0.938392 0.191581 0.287606 0.964699 0.141352 0.222208 0.919874 0.344658 0.187198 0.735833 0.601185 0.31165 0.66518 0.53777 0.518014 0.724119 0.464664 0.509645 0.811286 0.503396 0.297333 0.847399 0.503007 0.169996 0.757311 0.630422 0.170435 0.55095 0.766953 0.328993 0.550236 0.662384 0.508417 0.604139 0.603421 0.520479 0.650213 0.6874 0.32358 0.647232 0.739853 0.183595 0.52066 0.823219 0.226328 0.232539 0.84106 0.48841 0.333081 0.772484 0.540672 0.4542 0.75815 0.467879 0.390892 0.846896 0.360515 0.372475 0.869089 0.325495 0.285053 0.827495 0.483733 0.339781 0.673393 0.656575 0.238562 0.704887 0.668 0.320797 0.691569 0.647164 0.829927 0.324203 0.453996 0.78816 0.413058 0.456275 0.818961 0.437724 0.37108 0.868606 0.367447 0.332424 0.594766 0.761672 -0.257117 0.732865 0.586033 -0.345649 0.753901 0.533838 0.38295 0.862991 0.204761 0.461865 0.867214 0.193679 0.458725 0.940858 -0.000486 0.3388 0.908483 -0.022324 0.417326 0.966409 -0.169051 -0.193584 0.923393 -0.383468 0.01723 0.951149 0.102662 0.291162 0.867316 0.198019 0.456675 0.856872 0.261318 0.444391 0.920131 0.262219 0.290862 0.845974 0.375555 -0.378531 0.934245 0.115443 -0.337429 0.724297 0.540152 0.42852 0.705159 0.593618 0.387773 0.719293 0.595991 0.356949 0.405662 0.913937 -0.012545 0.486535 0.862055 -0.141935 0.71787 0.605721 0.343167 0.730039 0.584407 0.354276 0.725686 0.562032 0.396862 0.693853 0.591752 0.410363 0.217331 0.868422 0.445659 0.312452 0.932842 0.179389 0.629841 0.545507 0.552922 0.214362 0.527633 0.821981 0.173015 0.7023 0.690536 0.57713 0.459556 0.675077 0.602476 0.389152 0.696838 0.688167 0.493994 0.531411 0.689409 0.382203 0.615335 0.751692 0.33439 0.568456 0.797599 0.361585 0.482797 0.671211 0.364963 0.645196 0.411128 0.319273 0.853838 0.313319 0.402291 0.860228 0.718031 0.380064 0.58308 0.802641 0.402836 0.439876 0.786668 0.41629 0.455912 0.7261 0.396288 0.561903 0.493842 0.121551 0.861014 0.469657 0.240907 0.849345 0.710366 0.36318 0.602894 0.767343 0.380847 0.515888 0.773688 0.31236 0.551215 0.718919 0.257235 0.645744 0.615801 -0.251493 0.746687 0.530844 -0.044491 0.846301 0.775459 0.113009 0.621203 0.81328 0.246247 0.527199 0.846491 0.212923 0.487972 0.849483 0.012404 0.52747 0.842402 -0.47405 0.256193 0.735809 -0.426295 0.526173 0.762121 0.060604 0.644592 0.762121 0.060604 0.644592 0.670388 0.105094 0.734531 0.670388 0.105094 0.734531 0.53593 0.35712 0.765013 0.53593 0.35712 0.765013 0.519593 0.470857 0.712963 0.519593 0.470857 0.712963 0.592721 0.147272 0.791829 0.592721 0.147272 0.791829 0.539402 0.227876 0.810628 0.539402 0.227876 0.810628 0.838046 -0.041961 0.543984 0.838046 -0.041961 0.543984 0.805134 0.024108 0.592603 0.805134 0.024108 0.592603 0.458987 0.56981 0.681651 0.458987 0.56981 0.681651 0.36131 0.737053 0.571146 0.36131 0.737053 0.571146 0.930114 -0.106536 0.351481 0.930114 -0.106536 0.351481 0.880661 -0.11099 0.460561 0.880661 -0.11099 0.460561 0.320732 0.857422 0.402441 0.320732 0.857422 0.402441 0.44726 0.859353 0.247932 0.44726 0.859353 0.247932 0.95182 0.231775 0.200795 0.95182 0.231775 0.200795 0.964167 0.021103 0.264456 0.964167 0.021103 0.264456 0.579093 0.8006 0.153919 0.579093 0.8006 0.153919 0.697437 0.705567 0.12553 0.697437 0.705567 0.12553 0.814036 0.566095 0.129927 0.814036 0.566095 0.129927 0.890074 0.43096 0.148464 0.890074 0.43096 0.148464 0.029208 0.881474 -0.471328 0.029208 0.881474 -0.471328 0.096449 0.728365 -0.678368 0.096449 0.728365 -0.678368 0.4685 0.04873 -0.882118 0.4685 0.04873 -0.882118 0.638087 -0.253445 -0.727056 0.638087 -0.253445 -0.727056 0.178322 0.511529 -0.840559 0.178322 0.511529 -0.840559 0.316697 0.307225 -0.897394 0.316697 0.307225 -0.897394 -0.229597 0.97301 0.023188 -0.229597 0.97301 0.023188 -0.099111 0.961282 -0.257125 -0.099111 0.961282 -0.257125 0.690989 -0.552351 -0.466307 0.690989 -0.552351 -0.466307 0.614728 -0.774975 -0.146708 0.614728 -0.774975 -0.146708 -0.213285 0.674612 0.706689 -0.213285 0.674612 0.706689 -0.277125 0.880387 0.384865 -0.277125 0.880387 0.384865 0.522099 -0.831492 0.189823 0.522099 -0.831492 0.189823 0.41303 -0.701304 0.581016 0.41303 -0.701304 0.581016 0.016451 0.304495 0.952372 0.016451 0.304495 0.952372 -0.102423 0.482133 0.87009 -0.102423 0.482133 0.87009 0.321342 -0.449506 0.833477 0.321342 -0.449506 0.833477 0.240502 -0.251619 0.937468 0.240502 -0.251619 0.937468 0.177609 -0.048219 0.982919 0.177609 -0.048219 0.982919 0.113264 0.143803 0.983103 0.113264 0.143803 0.983103 0.856752 0.237426 0.457827 0.923385 0.210649 0.320917 0.807841 0.342573 0.479622 0.926355 0.306361 0.219111 0.893024 0.401372 0.203491 0.707489 0.350542 0.613661 0.690028 0.404138 0.600445 0.701459 0.296818 0.647962 0.79174 0.518629 0.322757 0.756722 0.567339 0.324806 0.829456 0.472735 0.297531 0.598529 0.538416 0.593188 0.611969 0.432342 0.662249 0.636119 0.597396 0.488334 0.661695 0.3349 0.670821 0.723255 0.374582 0.580165 0.790325 0.34767 0.504491 0.811959 0.371822 0.449969 0.863778 0.442517 0.24097 0.701135 0.600411 0.384599 0.932766 0.160597 0.322732 0.970845 0.170441 0.168552 0.883636 0.175716 0.433947 0.958137 0.275993 0.076165 0.918477 0.391142 0.058382 0.596042 0.268924 0.756581 0.631692 0.23949 0.737299 0.526233 0.296752 0.79688 0.713347 0.696389 0.078601 0.607873 0.785114 0.118686 0.815341 0.574919 0.068466 0.317442 0.747572 0.583409 0.328784 0.607429 0.72314 0.382484 0.824581 0.416859 0.421264 0.422347 0.802596 0.694449 0.183029 0.695875 0.790988 0.142639 0.594973 0.851498 0.154648 0.501034 0.88206 0.467139 0.061249 0.494106 0.834447 0.244044 0.898388 0.239427 0.368203 0.928433 0.290662 0.231361 0.927907 0.362185 0.088373 0.90613 0.422899 -0.009252 0.502343 -0.531378 -0.68212 0.481433 0.034979 -0.875785 0.821621 0.007587 -0.569984 0.601173 0.059321 -0.796914 0.288385 0.93379 -0.211824 0.988457 0.045901 -0.144378 0.606647 0.786641 -0.114787 0.631147 0.75431 -0.180748 0.972584 0.01879 -0.231792 0.50542 0.85821 -0.089584 0.979429 0.125423 -0.158074 0.681238 -0.704485 -0.199036 0.649817 -0.670326 -0.358331 0.486326 -0.865845 -0.117473 0.446328 -0.866561 -0.223303 0.749936 -0.639396 -0.169616 0.164446 0.814374 0.556554 0.230868 0.7458 0.624886 0.513037 0.656869 0.552553 0.434017 0.729299 0.528916 0.753221 0.48407 0.445347 0.753221 0.48407 0.445347 0.124146 -0.973254 0.193296 0.136691 -0.979344 0.149 0.136691 -0.979344 0.149 0.184839 -0.973906 0.131688 0.16227 -0.986484 -0.022769 0.212195 -0.968006 0.133929 0.212195 -0.968006 0.133929 0.404326 0.749489 0.524201 0.579587 0.654669 0.485269 0.579587 0.654669 0.485269 0.267339 0.835446 0.480167 0.245983 0.889628 0.38478 0.267339 0.835446 0.480167 0.316456 0.757992 0.570354 0.349573 0.870764 0.345787 0.299173 0.736411 0.60679 0.210334 0.763548 0.610536 0.173912 0.765408 0.619601 0.197207 0.7873 0.584182 0.208134 0.150701 0.966421 0.45413 0.145812 0.878922 0.34138 0.606573 0.718004 0.193961 0.656473 0.728987 0.702212 0.014831 0.711813 0.629702 0.408791 0.660579 0.464374 -0.299888 0.833321 0.195845 -0.470873 0.860188 0.247334 -0.957018 0.151467 0.40013 -0.846054 0.352263 0.156142 -0.842984 0.51478 0.487382 -0.796965 0.356799 0.24234 -0.955279 0.169453 0.220077 -0.968074 0.119991 0.144759 -0.978459 0.147185 0.183204 -0.982603 -0.03045 0.067622 -0.997704 0.003667 0.333609 0.885237 0.324131 0.26257 0.786829 0.558531 0.249027 0.818022 0.518484 0.310909 0.905688 0.288211 0.981618 -0.064667 0.179569 0.953472 -0.110057 0.280676 0.829047 -0.397145 0.393645 0.92859 0.156172 0.336647 0.777747 -0.421784 0.466056 0.769156 -0.579058 0.270354 0.995933 0.044395 0.078399 0.452986 -0.772336 0.445309 0.25562 -0.911562 0.322045 0.985612 -0.013881 -0.168452 0.7241 -0.689125 0.028032 0.669094 -0.721471 -0.178308 0.959852 -0.03757 -0.277979 0.142983 -0.970854 0.192352 0.080246 -0.996775 0.00032 0.399717 0.880195 0.255896 0.376418 0.74386 0.552252 0.932941 0.251988 0.257146 0.923519 0.376658 0.072404 0.341071 0.563945 0.752088 0.901143 0.06264 0.428972 0.473307 -0.704975 -0.528197 0.53861 0.034196 -0.841861 0.284747 -0.650038 -0.704536 0.28859 -0.717857 -0.633559 0.66476 -0.69131 -0.283167 0.687122 0.601648 -0.407288 0.19454 0.943367 -0.268726 0.142669 0.967481 -0.20887 0.158097 0.977372 -0.140534 0.267227 0.956959 -0.113221 0.206618 0.964826 -0.16254 0.111176 0.975912 -0.187714 0.29006 0.951394 -0.103509 0.197728 0.977642 -0.071559 0.133329 0.730763 0.669484 -0.021072 0.776457 0.629818 -0.048861 0.692427 0.719831 -0.267381 0.736738 0.621067 0.502201 -0.841758 -0.198082 0.347489 -0.823244 -0.44891 0.323269 -0.832159 -0.450565 0.365532 -0.909977 -0.195774 0.278989 -0.744812 -0.606152 0.310543 -0.724294 -0.615598 0.470573 -0.845704 0.251686 0.639991 -0.751749 0.159014 0.847528 -0.526779 -0.064814 0.931762 0.360605 -0.042234 0.731131 -0.37377 0.57074 0.545828 -0.440059 0.713036 0.28654 -0.807827 -0.515083 0.336227 -0.798398 -0.499512 0.390344 -0.778946 -0.490791 0.394888 -0.900382 -0.182694 0.453746 -0.877199 -0.156959 0.356802 -0.910855 -0.207449 -0.344161 0.695104 0.631176 -0.149439 0.640429 0.753338 -0.149043 0.665502 0.731364 -0.349826 0.693839 0.629452 -0.136209 0.702366 0.698663 -0.323407 0.705435 0.63069 0.682989 -0.682468 -0.260315 0.59895 -0.703991 -0.381648 0.629914 -0.656157 -0.415531 0.77097 -0.571238 -0.281588 0.426971 -0.693708 -0.580055 0.470882 -0.685627 -0.555145 0.547183 -0.735019 -0.400422 0.403878 -0.692278 -0.598025 0.639219 -0.729933 -0.242067 0.756317 -0.646196 0.102054 0.818345 -0.573567 0.036491 0.814869 -0.159464 0.557279 0.753505 -0.300809 0.584589 0.916322 -0.395282 -0.064085 -0.552229 0.717565 0.424433 -0.549898 0.723485 0.417351 -0.689114 0.695621 0.20306 -0.692124 0.693865 0.198787 -0.449937 0.772191 0.44864 -0.582332 0.776773 0.23982 0.4591 -0.736156 -0.497294 0.428557 -0.75507 -0.496193 0.470093 -0.756298 -0.455001 0.604445 -0.773438 -0.190894 0.573109 -0.784752 -0.236031 0.620477 -0.767507 -0.161065 -0.154659 0.830449 0.535196 -0.208047 0.933434 0.292262 0.839948 -0.488026 -0.237313 0.649751 -0.668884 -0.361136 0.686328 -0.685198 -0.243841 0.870409 -0.456272 -0.184943 0.113928 -0.971144 0.209524 0.420169 -0.778433 0.466369 0.36716 -0.763202 0.531711 -0.02591 -0.968892 0.246125 0.735247 0.502746 0.454597 0.760736 -0.231899 0.60622 0.709739 -0.164748 0.68493 0.677088 0.518341 0.522374 0.150157 0.985896 -0.073902 0.110758 0.979195 -0.170028 0.14924 0.977328 -0.150193 0.102024 0.980668 -0.166976 0.092901 0.976521 -0.194362 0.035026 -0.981694 0.187218 -0.094184 -0.972517 0.212932 -0.040179 -0.998571 0.035247 -0.134425 -0.988935 0.062742 0.104938 0.981244 -0.161707 0.151335 0.986059 -0.069173 0.069929 0.986197 -0.150086 0.095076 0.992657 -0.074781 -0.031932 -0.959846 0.278703 0.3959 -0.771292 0.498369 0.753955 -0.269659 0.599029 0.811465 0.345679 0.471202 0.245701 0.963498 -0.106314 0.226774 0.963215 -0.144187 -0.201856 -0.975954 0.082263 -0.144695 -0.963786 0.22401 0.238399 0.953876 -0.182445 0.263237 0.957272 -0.119739 0.137189 0.954008 0.266548 0.004047 0.860303 0.509766 -0.324412 0.82325 0.46585 -0.221133 0.946632 0.234497 0.552688 -0.819889 -0.14939 0.435697 -0.752668 -0.493618 0.365249 -0.701895 -0.611504 0.358271 0.298744 0.88453 0.369064 0.261778 0.891776 0.680582 -0.368671 0.633159 0.35026 0.27383 0.895732 -0.101362 0.652868 0.750659 -0.31403 0.712829 0.627104 0.528306 -0.819128 -0.223433 0.448996 -0.780542 -0.434921 0.341896 0.423686 0.838807 0.504935 0.340193 0.79329 0.181522 0.411952 0.892942 0.181522 0.411952 0.892942 0.465736 -0.606641 0.644264 -0.0363 0.939717 0.340021 0.06455 0.996125 -0.059741 -0.0363 0.939717 0.340021 0.286421 0.951044 -0.116095 0.288616 0.950349 -0.116354 0.275757 0.953921 -0.118292 0.150003 0.985457 -0.079833 -0.160278 0.98687 0.019962 -0.557805 0.804225 0.205125 -0.528811 0.837981 0.134713 -0.689987 0.699784 0.184985 -0.704052 0.684413 0.189445 -0.639015 0.750411 0.168948 -0.301208 0.951297 0.065638 0.321965 0.939617 -0.116016 0.978366 -0.179418 -0.103002 0.950511 -0.146462 -0.274005 0.864752 0.428163 -0.262451 0.86448 -0.440579 -0.242001 0.720676 -0.665351 -0.194768 0.631835 -0.756962 -0.166709 0.640249 -0.749264 -0.169365 0.627443 -0.760901 -0.165364 0.541996 -0.828837 -0.138816 0.434754 -0.894291 -0.105989 0.396475 -0.913174 -0.094449 0.3782 -0.921198 -0.091428 0.733887 0.635327 -0.240355 0.720343 0.687761 -0.089944 0.744559 0.62451 -0.235838 0.345736 0.9286 0.13479 0.993133 0.093733 0.070012 0.356159 0.925036 0.132136 0.187307 0.978163 -0.09007 0.502357 0.858922 0.099456 0.251333 0.962401 -0.103033 0.65335 -0.735934 0.17758 0.65112 0.755621 0.071276 0.96166 -0.25776 -0.093651 0.209729 0.846026 0.490157 0.369985 -0.806261 -0.461579 -0.486759 0.759504 0.431532 0.951681 0.185976 -0.24437 0.902737 0.332183 -0.273352 0.941165 0.315326 -0.121568 0.951681 0.185976 -0.24437 0.956675 0.290442 0.020395 0.999368 -0.03479 -0.007251 0.964422 0.229761 0.130768 0.952504 0.13236 0.274258 0.999368 -0.03479 -0.007251 0.940577 -0.003262 0.339566 0.985356 -0.047323 -0.163812 0.973149 -0.138935 0.183517 0.98634 -0.163979 0.015638 0.985356 -0.047323 -0.163812 0.800077 -0.569905 -0.187309 0.874318 -0.431977 -0.221278 0.945305 -0.32607 -0.008707 0.031586 -0.183913 0.982435 0.031586 -0.183913 0.982435 -0.030751 -0.950601 0.30889 -0.030751 -0.950601 0.30889 0.985137 -0.170059 0.024169 -0.138803 -0.672288 0.727161 -0.138803 -0.672288 0.727161 0.909257 -0.407951 -0.082632 0.909257 -0.407951 -0.082632 0.975975 0.172973 -0.132486 0.975975 0.172973 -0.132486 0.980139 0.18814 -0.062699 0.980139 0.18814 -0.062699 0.977763 -0.075286 0.195733 0.977763 -0.075286 0.195733 0.989301 -0.108793 0.097195 0.989301 -0.108793 0.097195 0.977445 0.124096 -0.170885 0.977445 0.124096 -0.170885 0.998153 0.056019 0.023506 0.998153 0.056019 0.023506 0.796335 -0.523715 0.302611 0.474101 -0.734714 0.485204 -0.961031 0.165053 0.221757 -0.966015 0.031778 0.256527 -0.974186 0.146597 0.171671 -0.972365 0.022683 0.232362 -0.984794 0.118521 0.127015 -0.97678 0.011602 0.213931 -0.992779 0.080892 0.088578 -0.980405 -0.006081 0.1969 -0.997692 0.034776 0.058321 -0.983084 -0.030932 0.180525 -0.999084 -0.01652 0.039467 -0.983546 -0.055798 0.171824 -0.996955 -0.071034 0.03217 -0.982323 -0.081459 0.168542 -0.991355 -0.12588 0.037019 -0.979425 -0.107879 0.170556 -0.982538 -0.178319 0.053122 -0.975168 -0.132497 0.177459 -0.97118 -0.224992 0.078667 -0.9699 -0.153567 0.188972 -0.957807 -0.263848 0.113978 -0.963903 -0.170188 0.204763 -0.939615 -0.29636 0.171153 -0.955655 -0.183417 0.230396 -0.916192 -0.318352 0.243403 -0.943673 -0.194814 0.26745 -0.940074 0.285894 0.18581 -0.959445 0.258862 0.111609 -0.975323 0.216319 0.04416 -0.986978 0.160325 -0.013014 -0.993968 0.093475 -0.057363 -0.996059 0.018754 -0.086686 -0.993227 -0.06055 -0.099163 -0.985628 -0.140582 -0.09367 -0.972899 -0.220345 -0.070116 -0.955697 -0.29262 -0.031897 -0.933885 -0.356815 0.023271 -0.904554 -0.412768 0.106793 -0.874187 -0.443341 0.198105 -0.904883 0.399162 0.14784 -0.930066 0.363832 0.051015 -0.950616 0.308169 -0.036885 -0.965592 0.235032 -0.111317 -0.974471 0.147814 -0.168987 -0.976979 0.05078 -0.207202 -0.973161 -0.05162 -0.224262 -0.963025 -0.155851 -0.219756 -0.94516 -0.263631 -0.192798 -0.918341 -0.367435 -0.147108 -0.884469 -0.46033 -0.076225 -0.846414 -0.531736 0.028979 -0.81683 -0.561478 0.132408 -0.856198 0.505244 0.107954 -0.886734 0.462178 -0.009715 -0.911564 0.394322 -0.116455 -0.92955 0.305236 -0.206801 -0.940103 0.199203 -0.276631 -0.942966 0.081326 -0.322801 -0.938215 -0.042948 -0.343377 -0.925514 -0.170798 -0.338011 -0.90304 -0.303133 -0.304351 -0.869126 -0.43109 -0.242446 -0.825613 -0.542663 -0.154533 -0.78679 -0.615366 -0.04782 -0.763783 -0.641746 0.069265 -0.795208 0.602633 0.06691 -0.830597 0.552504 -0.069627 -0.85928 0.473551 -0.193358 -0.879991 0.369951 -0.297914 -0.892055 0.246859 -0.378547 -0.895219 0.110198 -0.431786 -0.889617 -0.03377 -0.455457 -0.87547 -0.181874 -0.447743 -0.852671 -0.3311 -0.404135 -0.819795 -0.473097 -0.322669 -0.773161 -0.597383 -0.21297 -0.732323 -0.672114 -0.109388 -0.703802 -0.710148 0.018793 -0.723285 0.690084 0.025367 -0.762965 0.633675 -0.127835 -0.79508 0.544841 -0.266451 -0.818228 0.428382 -0.383395 -0.831653 0.290204 -0.47343 -0.835118 0.137002 -0.532737 -0.828804 -0.024239 -0.559013 -0.813771 -0.188224 -0.549862 -0.79107 -0.350428 -0.501406 -0.757687 -0.507139 -0.410755 -0.712161 -0.640658 -0.287028 -0.672656 -0.725938 0.143347 -0.641851 0.766661 -0.016075 -0.68527 0.704796 -0.183489 -0.720395 0.607414 -0.334782 -0.745674 0.479891 -0.46225 -0.760327 0.328783 -0.560182 -0.764125 0.161453 -0.624537 -0.757252 -0.014499 -0.652962 -0.740618 -0.191819 -0.643964 -0.713493 -0.368156 -0.596145 -0.67319 -0.539525 -0.505696 -0.633594 -0.66652 -0.392824 -0.552217 0.831757 -0.056883 -0.598779 0.765354 -0.236001 -0.636491 0.660838 -0.397708 -0.663675 0.524103 -0.533716 -0.679467 0.362301 -0.638015 -0.683616 0.18334 -0.706439 -0.676308 -0.004709 -0.736604 -0.658096 -0.193709 -0.72759 -0.624976 -0.385418 -0.678866 -0.57331 -0.567527 -0.590956 -0.539712 -0.669892 -0.509859 -0.455829 0.884817 -0.096532 -0.504906 0.814845 -0.284776 -0.544771 0.704701 -0.454557 -0.573584 0.560728 -0.597148 -0.59041 0.390539 -0.706325 -0.594941 0.202476 -0.777849 -0.58738 0.005005 -0.809296 -0.568315 -0.193377 -0.799765 -0.531724 -0.399254 -0.746904 -0.472063 -0.588647 -0.65624 -0.438252 -0.663694 -0.606173 -0.336649 0.931055 -0.140727 -0.387856 0.858178 -0.336301 -0.429627 0.743452 -0.512543 -0.459974 0.593597 -0.660353 -0.477869 0.416607 -0.773356 -0.482921 0.221168 -0.847273 -0.475295 0.016124 -0.879678 -0.455543 -0.189817 -0.869741 -0.417917 -0.406061 -0.812687 -0.353552 -0.60422 -0.714086 -0.307968 -0.666598 -0.678825 -0.193714 0.962913 -0.187815 -0.246267 0.8884 -0.387424 -0.288613 0.77069 -0.568101 -0.317008 0.616998 -0.720292 -0.324374 0.435579 -0.839674 -0.320365 0.248902 -0.91401 -0.326185 0.041175 -0.944409 -0.317893 -0.181748 -0.930544 -0.279515 -0.404386 -0.870829 -0.213288 -0.614544 -0.759503 -0.156721 -0.682515 -0.713871 -0.046463 0.971992 -0.230375 -0.103325 0.898972 -0.425645 -0.164362 0.783516 -0.59924 -0.218293 0.643744 -0.733446 -0.220032 0.426957 -0.877094 -0.163378 0.257767 -0.952294 -0.189104 0.091231 -0.97771 -0.196106 -0.137994 -0.970824 -0.15848 -0.395997 -0.904473 -0.068774 -0.626707 -0.776214 0.011498 -0.702817 -0.711278 0.080842 0.962059 -0.260588 -0.004368 0.897342 -0.441313 -0.108637 0.80053 -0.589364 -0.077282 0.160772 -0.983961 -0.047366 -0.005136 -0.998864 -0.055321 -0.376835 -0.924627 0.024205 -0.64051 -0.767568 0.122657 -0.746286 -0.654227 0.182989 0.944565 -0.272601 0.060296 0.892968 -0.446064 0.298773 0.913904 -0.274797 0.253313 0.891687 -0.375137 0.114854 -0.338324 -0.933994 0.102232 0.013353 -0.994671 0.151765 -0.614693 -0.774028 0.247572 -0.789545 -0.561539 0.422501 0.861523 -0.281553 0.416333 0.839555 -0.34902 0.37199 -0.274879 -0.886603 0.353485 0.017625 -0.935274 0.378321 -0.507369 -0.774242 0.386435 -0.730111 -0.563565 0.530382 0.793788 -0.297652 0.540498 0.759214 -0.362568 0.588887 -0.200332 -0.782994 0.56861 0.014756 -0.822475 0.582449 -0.344028 -0.736476 0.575726 -0.569224 -0.586961 0.65241 0.687716 -0.318445 0.658927 0.642592 -0.391012 0.527988 0.032741 -0.848621 0.572271 -0.222348 -0.789346 0.647447 -0.270239 -0.712589 0.71954 -0.352064 -0.598592 0.761452 -0.51329 -0.395884 0.588683 -0.724004 -0.359542 0.425419 -0.825843 -0.370137 0.75829 0.548346 -0.35258 0.752446 0.495489 -0.433954 0.762878 0.455469 -0.458873 0.774527 0.480972 -0.410821 -0.059483 0.299655 -0.952191 -0.090596 0.399221 -0.912368 0.036545 0.471124 -0.881309 0.07364 0.399264 -0.913874 -0.030114 0.266255 -0.963432 -0.038844 0.381241 -0.923659 -0.13284 0.509742 -0.85001 -0.066453 0.503298 -0.861554 0.001768 0.538105 -0.842876 0.050754 0.065758 -0.996544 -0.019181 0.193572 -0.980899 0.117727 0.320417 -0.939933 0.173089 0.209675 -0.962329 0.073986 0.047418 -0.996131 -0.002861 0.154045 -0.98806 0.22268 -0.189591 -0.956279 0.142047 -0.070696 -0.987332 0.235945 0.061061 -0.969846 0.284019 -0.085242 -0.955022 0.284187 -0.119522 -0.95129 0.18495 -0.046926 -0.981627 0.469944 -0.314762 -0.824668 0.324898 -0.286474 -0.901318 0.327435 -0.220891 -0.918691 0.436096 -0.251459 -0.864054 0.473624 -0.209127 -0.855538 0.371679 -0.174482 -0.911817 0.593781 -0.220328 -0.773873 0.64569 -0.038921 -0.762607 0.659388 -0.074842 -0.748068 0.577338 -0.188497 -0.794449 0.520053 -0.164818 -0.838081 0.486574 -0.003404 -0.873633 0.583694 0.350278 -0.732535 0.633952 0.167061 -0.755112 0.445809 0.172583 -0.878333 0.388775 0.329865 -0.860258 0.670839 0.324639 -0.666772 0.692093 0.11947 -0.711852 0.445222 0.577844 -0.684013 0.517686 0.479897 -0.708308 0.330597 0.433029 -0.838565 0.275479 0.50654 -0.817024 0.53871 0.612813 -0.578145 0.616696 0.484403 -0.620516 0.278003 0.744964 -0.606418 0.365453 0.664551 -0.651779 0.221829 0.57283 -0.789087 0.182217 0.632878 -0.752504 0.306851 0.80584 -0.506422 0.437533 0.722967 -0.534681 -0.077112 0.816166 -0.572649 0.125172 0.825515 -0.550324 0.121846 0.731498 -0.670868 -0.019603 0.743964 -0.667932 -0.030227 0.802231 -0.596248 0.128031 0.849287 -0.512171 -0.166759 0.672289 -0.721262 -0.074919 0.639876 -0.764817 -0.086363 0.65898 -0.747185 0.419268 0.406688 -0.811677 0.45283 0.31045 -0.835802 0.550354 0.354523 -0.755926 0.488995 0.426269 -0.761038 0.798505 0.589542 -0.121777 0.629664 0.764854 -0.136094 0.428097 0.516657 -0.741484 0.481992 0.162651 -0.860946 0.476625 0.173666 -0.861782 0.541781 -0.051837 -0.83892 0.610962 -0.026965 -0.7912 0.77405 -0.395398 -0.494477 0.920958 -0.172543 -0.349378 0.643893 0.078074 -0.761122 0.480736 0.233816 -0.845117 0.483133 0.167149 -0.859444 0.616661 0.240115 -0.749715 0.967736 0.117908 -0.222674 0.913198 0.379905 -0.147451 0.390578 0.591083 -0.705741 0.382839 0.535126 -0.753044 0.414139 0.577573 -0.70349 0.47634 0.860797 -0.179246 0.340392 0.907818 -0.24495 0.421549 0.584377 -0.693397 0.405414 0.540989 -0.736865 0.431518 0.576007 -0.694268 0.364935 0.56563 -0.739517 0.160295 0.921034 -0.354968 -0.063838 0.850342 -0.522343 0.231853 0.516573 -0.824255 -0.234963 0.674542 -0.699847 -0.263787 0.488611 -0.831671 0.143761 0.349005 -0.926028 0.121957 0.430188 -0.894463 0.244238 0.368175 -0.897104 0.286839 0.465666 -0.837185 0.431825 0.308888 -0.847417 0.349106 0.306214 -0.88564 0.242828 0.317447 -0.916658 -0.193183 0.358321 -0.913393 -0.108882 0.280328 -0.953709 0.308743 0.342271 -0.887428 0.400235 0.380025 -0.833902 0.437071 0.358464 -0.824907 0.306876 0.362809 -0.879885 -0.062544 0.201463 -0.977497 -0.04802 0.0781 -0.995788 0.266858 0.326827 -0.906626 0.350138 0.278047 -0.894479 0.354862 0.347322 -0.868009 0.255429 0.219947 -0.941477 -0.006971 -0.087812 -0.996113 0.120653 -0.291438 -0.94895 0.318338 0.07641 -0.944893 0.448609 0.180967 -0.875215 0.399034 0.212972 -0.89186 0.432397 -0.02109 -0.901437 0.342686 -0.457883 -0.820311 0.578434 -0.49519 -0.648229 0.296419 -0.000702 -0.955058 0.296419 -0.000702 -0.955058 0.172523 0.052896 -0.983584 0.172523 0.052896 -0.983584 0.039158 0.322577 -0.945733 0.039158 0.322577 -0.945733 0.047516 0.433082 -0.900101 0.047516 0.433082 -0.900101 0.073663 0.121903 -0.989805 0.073663 0.121903 -0.989805 0.020637 0.212144 -0.977021 0.020637 0.212144 -0.977021 0.424054 -0.091556 -0.900997 0.424054 -0.091556 -0.900997 0.357272 -0.03225 -0.933444 0.357272 -0.03225 -0.933444 0.012525 0.534209 -0.84526 0.012525 0.534209 -0.84526 -0.011494 0.7071 -0.707021 -0.011494 0.7071 -0.707021 0.597526 -0.131026 -0.791072 0.597526 -0.131026 -0.791072 0.505826 -0.146625 -0.850083 0.505826 -0.146625 -0.850083 0.043082 0.835064 -0.548463 0.043082 0.835064 -0.548463 0.232892 0.841802 -0.486962 0.232892 0.841802 -0.486962 0.692441 0.211038 -0.689919 0.692441 0.211038 -0.689919 0.670034 -0.002279 -0.742327 0.670034 -0.002279 -0.742327 0.395537 0.785831 -0.475416 0.395537 0.785831 -0.475416 0.511415 0.69064 -0.511342 0.511415 0.69064 -0.511342 0.608864 0.549501 -0.572131 0.608864 0.549501 -0.572131 0.665886 0.412472 -0.621662 0.665886 0.412472 -0.621662 0.267718 0.900516 0.342634 0.267718 0.900516 0.342634 0.434491 0.763425 0.477912 0.434491 0.763425 0.477912 0.869912 0.076138 0.487294 0.869912 0.076138 0.487294 0.932155 -0.229683 0.279881 0.932155 -0.229683 0.279881 0.602872 0.538559 0.588642 0.602872 0.538559 0.588642 0.752279 0.323048 0.574209 0.752279 0.323048 0.574209 -0.213672 0.974192 0.072768 -0.213672 0.974192 0.072768 0.039021 0.973056 0.227243 0.039021 0.973056 0.227243 0.840289 -0.540248 0.045233 0.840289 -0.540248 0.045233 0.606818 -0.775669 -0.17352 0.606818 -0.775669 -0.17352 -0.573632 0.648601 -0.500262 -0.573632 0.648601 -0.500262 -0.459052 0.865899 -0.198721 -0.459052 0.865899 -0.198721 0.348772 -0.845309 -0.404736 0.348772 -0.845309 -0.404736 0.044107 -0.731158 -0.680781 0.044107 -0.731158 -0.680781 -0.526631 0.262875 -0.808429 -0.526631 0.262875 -0.808429 -0.572583 0.444835 -0.688673 -0.572583 0.444835 -0.688673 -0.171813 -0.489749 -0.854767 -0.171813 -0.489749 -0.854767 -0.298216 -0.294897 -0.907801 -0.298216 -0.294897 -0.907801 -0.378075 -0.092709 -0.921121 -0.378075 -0.092709 -0.921121 -0.44719 0.096281 -0.889242 -0.44719 0.096281 -0.889242 0.612429 0.206829 -0.762989 0.464886 0.248405 -0.849809 0.407407 0.351958 -0.842701 0.648197 0.357749 -0.672202 0.671753 0.259933 -0.693674 0.260779 0.444292 -0.857088 0.266283 0.359019 -0.894538 0.239549 0.282383 -0.928911 0.456076 0.54318 -0.704947 0.484975 0.494828 -0.721072 0.523431 0.452679 -0.721874 0.154432 0.395601 -0.905345 0.17883 0.504716 -0.84456 0.266157 0.567731 -0.779001 0.193307 0.300033 -0.934138 0.427534 0.439385 -0.790035 0.307666 0.464115 -0.830626 0.465664 0.419078 -0.779442 0.586011 0.418412 -0.693919 0.376686 0.574397 -0.726757 0.72401 0.167928 -0.669036 0.615211 0.144276 -0.775048 0.538442 0.194451 -0.81992 0.755996 0.352652 -0.551458 0.765047 0.251817 -0.592698 0.104303 0.251884 -0.96212 0.084593 0.265317 -0.960443 0.005837 0.281933 -0.959416 0.438714 0.77153 -0.460728 0.549094 0.684577 -0.479427 0.639111 0.567102 -0.51955 -0.119349 0.571474 -0.811895 -0.055497 0.717664 -0.694175 0.087893 0.80095 -0.592244 -0.082255 0.383999 -0.919662 0.371981 0.25099 -0.893663 0.168173 0.254214 -0.952414 0.515832 0.244885 -0.820943 0.711746 0.448691 -0.540457 0.274747 0.816832 -0.507247 0.645705 0.281916 -0.70964 0.539281 0.220414 -0.812769 0.769022 0.394085 -0.503292 0.726749 0.338639 -0.597628 0.910687 0.132665 0.391214 0.999599 0.019627 0.020427 0.95412 0.024299 0.298438 0.445708 0.894704 -0.029136 0.965917 0.00636 -0.258774 0.63813 0.749781 -0.174984 0.564478 0.808758 -0.165152 0.955888 0.074409 -0.28415 0.833027 -0.550995 -0.049699 0.747769 -0.638876 -0.180774 0.496269 -0.862279 -0.100952 -0.207933 0.848115 -0.487303 0.067624 0.763984 -0.641681 0.12728 0.626188 -0.769213 -0.218784 0.728379 -0.649305 0.477035 0.407812 -0.778542 0.477035 0.407812 -0.778542 0.017333 -0.981177 -0.192329 0.100697 -0.980826 -0.166857 0.066985 -0.985016 -0.158922 0.066985 -0.985016 -0.158922 0.113176 -0.977596 -0.177477 0.113176 -0.977596 -0.177477 0.260639 0.584649 -0.768279 0.260639 0.584649 -0.768279 0.016554 0.67435 -0.738226 -0.106362 0.750404 -0.652366 -0.106362 0.750404 -0.652366 -0.052394 0.836039 -0.546163 0.073173 0.824552 -0.561034 -0.11046 0.686583 -0.718611 -0.155032 0.743111 -0.650962 -0.209657 0.806439 -0.552901 -0.277141 0.74834 -0.602644 -0.254322 0.755762 -0.603444 -0.358109 0.092557 -0.929081 -0.250923 0.673348 -0.695442 -0.112663 0.603179 -0.789609 -0.09202 0.089713 -0.991708 0.154625 0.382352 -0.910988 0.205405 -0.026468 -0.978319 -0.072607 -0.353019 -0.932795 -0.315135 -0.516218 -0.796372 0.137801 -0.96591 -0.219155 -0.147037 -0.862058 -0.485012 0.15353 -0.866566 -0.474859 0.229098 -0.817711 -0.528075 0.125194 -0.964684 -0.231758 0.055128 -0.985656 -0.159509 0.133227 -0.975043 -0.1776 0.08158 0.845691 -0.5274 0.078804 0.875247 -0.477213 -0.135909 0.78308 -0.606889 -0.14307 0.731129 -0.667069 0.652262 -0.134271 -0.746006 0.728452 -0.084587 -0.679855 0.489926 -0.423017 -0.762253 0.604152 0.140091 -0.784458 0.789901 0.036981 -0.612119 0.511155 -0.597093 -0.618224 0.41548 -0.442463 -0.794735 0.053874 -0.927755 -0.369281 0.152238 -0.796477 -0.58519 0.917433 -0.01634 -0.397554 0.60325 -0.699086 -0.383887 0.029478 -0.980033 -0.196639 0.188278 0.863211 -0.468421 0.734878 0.361526 -0.573806 0.645074 0.228829 -0.729052 0.011092 0.714503 -0.699544 0.528285 0.032629 -0.84844 -0.123905 0.526586 -0.841044 0.709036 -0.679127 0.189881 0.54884 -0.680148 0.485977 0.696633 -0.536154 0.476698 0.937025 0.142119 0.319041 0.883729 -0.390989 0.257199 0.771856 0.621298 -0.135006 0.80244 -0.582305 -0.130427 0.360455 0.931906 0.040288 0.246781 0.968966 0.014261 0.199409 0.979909 0.003657 0.20259 0.97835 0.042279 0.297397 0.954751 0.002279 0.296878 0.953346 -0.054732 -0.448272 0.750301 -0.485901 -0.299256 0.711329 -0.635969 -0.449932 0.662013 -0.599417 -0.604373 0.702658 -0.375506 0.543677 -0.837776 -0.05046 0.41825 -0.908309 0.006481 0.525642 -0.828016 0.195167 0.513327 -0.837473 0.187441 0.632445 -0.690176 0.351668 0.562937 -0.723503 0.399556 0.270888 -0.860723 -0.431018 0.466072 -0.760826 -0.451575 0.785817 -0.470274 -0.401664 0.806986 0.379916 -0.452147 0.311722 -0.406116 -0.859011 0.08011 -0.476468 -0.875534 0.492226 -0.783275 0.379728 0.564196 -0.75938 0.324076 0.615425 -0.747397 0.250297 0.467281 -0.880804 -0.076373 0.423525 -0.905139 -0.036738 0.388235 -0.921287 -0.022439 -0.638353 0.671458 -0.376365 -0.642083 0.670375 -0.371923 -0.527289 0.635121 -0.564436 -0.53912 0.609156 -0.581618 -0.499354 0.673213 -0.545371 -0.620665 0.681581 -0.387585 0.724403 -0.679107 -0.118553 0.808578 -0.568186 -0.152862 0.76273 -0.645516 0.039393 0.719046 -0.694329 0.029644 0.704086 -0.666952 0.243799 0.68063 -0.673335 0.288725 0.675478 -0.668555 0.311069 0.688796 -0.721756 0.068031 0.678689 -0.726051 -0.110594 0.590821 -0.659388 -0.464906 0.324614 -0.335183 -0.884465 0.389368 -0.193616 -0.900503 0.677507 -0.584788 -0.446103 0.811911 -0.403641 -0.421752 -0.702864 0.705439 -0.091315 -0.699069 0.693346 0.174852 -0.698884 0.694843 0.169571 -0.697074 0.711711 -0.08692 -0.629707 0.772938 0.077689 -0.630257 0.757744 -0.169115 0.665495 -0.718329 0.202779 0.637554 -0.7383 0.220087 0.650398 -0.741869 0.163133 0.619906 -0.781037 -0.075482 0.62189 -0.772088 -0.130895 0.619404 -0.767547 -0.164959 -0.428525 0.808484 -0.403384 -0.344282 0.922494 -0.174568 0.841854 -0.487833 -0.230867 0.838993 -0.458769 -0.292613 0.718357 -0.682624 -0.134116 0.750372 -0.66081 -0.016469 -0.004385 -0.980634 -0.195802 0.11327 -0.803082 -0.585003 0.033162 -0.790045 -0.612151 -0.142029 -0.978203 -0.151482 0.398848 0.500353 -0.768484 0.284867 0.522124 -0.803889 0.240759 -0.182234 -0.953324 0.326055 -0.256882 -0.90978 0.106126 0.992625 0.058596 0.101925 0.991712 -0.078227 0.185058 0.981762 0.043548 0.161241 0.98316 0.086007 0.203627 0.976108 0.075821 -0.181266 -0.979622 -0.086502 -0.058418 -0.989239 -0.134139 0.18691 0.981774 0.034418 0.16088 0.98655 0.028917 -0.164751 -0.970502 -0.176023 0.075477 -0.797038 -0.599194 0.41959 0.332341 -0.844685 0.322606 -0.288805 -0.901397 0.338129 0.937695 -0.079978 0.299596 0.953203 -0.040569 -0.230271 -0.970692 -0.068787 0.273756 0.960659 -0.046809 -0.093554 0.935084 -0.341855 -0.357811 0.927392 -0.109158 -0.580229 0.784645 -0.218327 -0.370232 0.823908 -0.429073 0.555442 -0.82035 -0.136052 0.648256 -0.730721 0.214037 0.665073 -0.670138 0.329534 -0.177345 0.255741 -0.950339 0.237945 -0.404121 -0.883215 -0.171659 0.218398 -0.960643 -0.191232 0.22974 -0.95428 -0.611039 0.688951 -0.389844 -0.497376 0.621066 -0.605717 0.578572 -0.812132 -0.075471 0.636769 -0.760919 0.124606 -0.168096 0.382717 -0.908445 -0.01579 0.29859 -0.954251 -0.354497 0.372019 -0.857866 -0.354497 0.372019 -0.857866 0.030753 -0.642052 -0.766044 -0.28865 0.899627 -0.327645 -0.28865 0.899627 -0.327645 -0.590748 0.801531 0.092551 0.882451 -0.187177 -0.431561 0.631213 0.690214 -0.3538 0.716773 0.651128 -0.249539 0.810085 0.079366 -0.580916 0.218435 0.918014 -0.330963 0.140919 0.983259 -0.115515 0.178425 0.905077 -0.386006 0.364259 0.817074 -0.446884 0.299785 0.939825 -0.163886 0.464631 -0.750462 -0.470027 0.536199 0.720631 -0.439525 0.864301 -0.265631 -0.427112 -0.127859 0.902899 -0.410396 0.648779 -0.746777 0.14632 -0.65206 0.746179 -0.134292 0.932257 0.179954 -0.313868 0.932257 0.179954 -0.313868 0.85443 0.301563 -0.423095 0.797829 0.26596 -0.541049 0.873116 -0.177098 -0.454207 0.873116 -0.177098 -0.454207 0.649289 0.072699 -0.757059 0.753442 0.191783 -0.628923 0.6043 -0.0704 -0.793641 0.921298 -0.001363 -0.388856 0.921298 -0.001363 -0.388856 0.805464 -0.09727 -0.584608 0.710857 -0.181827 -0.679427 0.859553 -0.250977 -0.445172 -0.504833 -0.252405 -0.825491 -0.504833 -0.252405 -0.825491 -0.176988 -0.95937 -0.219738 -0.176988 -0.95937 -0.219738 0.838581 -0.043777 -0.543014 -0.50884 -0.695521 -0.507279 -0.50884 -0.695521 -0.507279 0.843621 -0.371969 -0.387224 0.843621 -0.371969 -0.387224 0.897769 0.154532 -0.41247 0.897769 0.154532 -0.41247 0.883068 0.157461 -0.442037 0.883068 0.157461 -0.442037 0.71598 -0.20424 -0.667576 0.71598 -0.20424 -0.667576 0.84052 -0.139279 -0.523572 0.84052 -0.139279 -0.523572 0.889164 0.201883 -0.410647 0.889164 0.201883 -0.410647 0.844759 0.094819 -0.526679 0.844759 0.094819 -0.526679 0.516769 -0.546521 -0.658988 0.137687 -0.761356 -0.633545 -0.073521 0.769689 -0.634171 -0.902895 -0.325759 0.280467 -0.936415 -0.200727 0.287811 -0.858832 -0.448083 0.248252 -0.80054 -0.564124 0.202238 -0.740856 -0.649577 0.170825 -0.640499 -0.727822 0.245023 -0.852262 -0.443442 0.277505 -0.785146 -0.561254 0.261802 -0.709343 -0.657204 0.254784 0.578683 -0.759785 0.2964 -0.000115 -0.99999 -0.004589 -0.00051 -0.999977 -0.006811 -3.4e-005 -0.999995 -0.003095 -0.0006 -0.999998 -0.001658 0.001309 -0.999998 0.001288 -0.003465 -0.999976 -0.006061 -0.004195 -0.999979 -0.004981 -0.000633 -0.99997 -0.007748 -0.001948 -0.999974 -0.00693 -6e-006 -0.999971 -0.007673 -0.00264 -0.99998 -0.005704 -6.6e-005 -0.999967 -0.008151 -0.00142 -0.999996 -0.002481 0.003645 -0.999993 4.6e-005 -0.002686 -0.999991 0.003221 0.002724 -0.999944 0.010221 0.004946 -0.999932 0.010546 0.006765 -0.99992 0.010688 0.004595 -0.999966 0.006817 0.001146 -0.999997 0.002298 -0.004822 -0.999982 0.003527 -0.003588 -0.999964 0.00771 -0.00298 -0.999888 0.014663 -0.001243 -0.999863 0.016531 0.001848 -0.999933 0.011451 -0.004415 -0.999984 0.003674 0.001118 -0.999907 0.013595 0.001334 -0.999999 -0.000699 -0.00033 -1 -0.000292</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2290\" source=\"#LOD3spShape-lib-normals-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"map1\" id=\"LOD3spShape-lib-map1\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"LOD3spShape-lib-map1-array\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"4554\">0.245158 0.423975 0.25011 0.468112 0.150442 0.543685 0.148569 0.498875 0.302841 0.416173 0.345064 0.636086 0.339502 0.673242 0.260986 0.672117 0.283208 0.642063 0.331126 0.714598 0.241009 0.71553 0.233372 0.762934 0.302959 0.373132 0.224027 0.289653 0.23558 0.359702 0.143764 0.429085 0.134156 0.320572 0.298228 0.319321 0.288073 0.263566 0.326898 0.757163 0.328393 0.797118 0.23841 0.805793 0.60087 0.640918 0.866606 0.398924 0.510699 0.676291 0.517366 0.634965 0.871384 0.397619 0.505796 0.719121 0.878048 0.397558 0.87416 0.398826 0.86606 0.397625 0.86057 0.399008 0.501279 0.762876 0.856321 0.39906 0.497144 0.804816 0.862375 0.397683 0.860024 0.397676 0.853776 0.399148 0.494669 0.842655 0.936097 0.40457 0.495808 0.877438 0.932361 0.401286 0.944998 0.401429 0.333511 0.830512 0.255441 0.838224 0.335539 0.859065 0.275714 0.857682 0.13703 0.645509 0.099669 0.709478 0.072436 0.710311 0.114209 0.64461 0.217381 0.600094 0.193334 0.589335 0.083907 0.774978 0.093256 0.834193 0.067488 0.842396 0.056643 0.778851 0.948825 0.405179 0.543475 0.557405 0.5578 0.533271 0.685834 0.551732 0.928618 0.398828 0.939922 0.398832 0.318062 0.571086 0.304302 0.551225 0.870712 0.401462 0.862287 0.401557 0.855482 0.401642 0.85836 0.405349 0.85103 0.405417 0.86725 0.404976 0.851008 0.401767 0.84805 0.401779 0.618068 0.949096 0.595914 0.442419 0.701364 0.36472 0.704143 0.312403 0.595493 0.387203 0.757075 0.288915 0.749567 0.262372 0.79867 0.019963 0.720188 0.090411 0.342229 0.232442 0.353643 0.285267 0.846214 0.405443 0.84246 0.405195 0.945825 0.3988 0.51556 0.94314 0.529717 0.959537 0.951482 0.401365 0.955814 0.405156 0.355112 0.336459 0.416748 0.23909 0.409212 0.301844 0.412385 0.174765 0.722678 0.141004 0.371257 0.129527 0.316583 0.183819 0.278107 0.146712 0.815355 0.094326 0.586596 0.164171 0.31201 0.090946 0.272238 0.213152 0.591566 0.221736 0.775513 0.183818 0.258385 0.177707 0.714664 0.225413 0.594393 0.311859 0.803506 0.201004 0.853165 0.100422 0.240207 0.064107 0.220228 0.127313 0.134162 0.116701 0.137886 0.045291 0.20962 0.176711 0.132836 0.176022 0.393776 0.367451 0.346805 0.380154 0.21424 0.228892 0.133514 0.241035 0.127886 0.880246 0.194162 0.909528 0.176891 0.924466 0.105635 0.892789 0.298575 0.918513 0.289302 0.932026 0.41004 0.927663 0.412647 0.940987 0.152917 0.714025 0.188039 0.660899 0.251002 0.622891 0.148083 0.821618 0.139091 0.770988 0.529124 0.59406 0.624566 0.605374 0.943792 0.414167 0.33386 0.602351 0.939709 0.408955 0.951716 0.40979 0.95394 0.414936 0.863781 0.409841 0.854643 0.410095 0.847079 0.410021 0.50373 0.914675 0.043999 0.560029 0.039161 0.51728 0.035514 0.442488 0.02836 0.327681 0.57657 0.399149 0.579657 0.45714 0.483058 0.467543 0.484696 0.402538 0.027211 0.11532 0.026409 0.041836 0.027231 0.176259 0.027041 0.244825 0.496033 0.232082 0.498386 0.171519 0.545104 0.178866 0.55478 0.242428 0.486973 0.320445 0.572701 0.32584 0.253473 0.42034 0.198325 0.471074 0.201641 0.514357 0.257191 0.464291 0.304409 0.414784 0.305266 0.371658 0.230885 0.286168 0.167912 0.306331 0.188981 0.401339 0.242536 0.354324 0.300813 0.31779 0.290984 0.262458 0.644363 0.422582 0.643061 0.366324 0.70337 0.314326 0.703499 0.366966 0.745969 0.26707 0.75382 0.293297 0.343946 0.231017 0.355397 0.284532 0.356783 0.335152 0.414764 0.29281 0.419941 0.236001 0.413771 0.173263 0.370421 0.125545 0.313385 0.086563 0.282902 0.142155 0.319456 0.18046 0.261679 0.175104 0.275739 0.211488 0.247515 0.05956 0.175872 0.043369 0.166908 0.113803 0.230266 0.122298 0.162066 0.173298 0.220575 0.173418 0.399643 0.347472 0.348371 0.378515 0.850892 0.415208 0.23283 0.882474 0.174218 0.860862 0.318561 0.890705 0.412205 0.900441 0.414872 0.864697 0.414169 0.832004 0.413463 0.796679 0.414763 0.757 0.418623 0.715141 0.424042 0.67374 0.797949 0.022112 0.816816 0.093012 0.720595 0.147032 0.715991 0.092651 0.636546 0.210325 0.627672 0.148444 0.772502 0.189202 0.711355 0.231084 0.641706 0.289174 0.223314 0.226619 0.162858 0.235961 0.139391 0.505963 0.140772 0.546375 0.105327 0.324975 0.131454 0.436403 0.855305 0.0942 0.800674 0.205793 0.103269 0.042003 0.100779 0.11305 0.099208 0.173793 0.099637 0.242841 0.428561 0.633258 0.429426 0.594048 0.429051 0.559095 0.429259 0.535162 0.35272 0.639241 0.294558 0.645659 0.274212 0.673847 0.348213 0.675519 0.253789 0.714174 0.339072 0.715472 0.241562 0.759109 0.241492 0.801977 0.330569 0.796358 0.332348 0.756954 0.843668 0.414845 0.519216 0.636196 0.513483 0.677706 0.858319 0.415536 0.509018 0.719971 0.595108 0.724198 0.959154 0.409842 0.961426 0.415077 0.955396 0.420505 0.503982 0.762367 0.946551 0.419988 0.498249 0.80295 0.581926 0.813498 0.948394 0.426244 0.956245 0.426562 0.493564 0.840197 0.962774 0.420748 0.49337 0.874734 0.5689 0.884732 0.963626 0.426902 0.947821 0.439136 0.254385 0.836095 0.333265 0.830744 0.334347 0.859927 0.274272 0.857068 0.111374 0.707428 0.160452 0.654158 0.126019 0.649524 0.074711 0.707898 0.232092 0.611555 0.203545 0.598866 0.085639 0.828171 0.086444 0.767612 0.053832 0.770468 0.05904 0.833261 0.5406 0.554531 0.653253 0.57169 0.949156 0.432796 0.552741 0.532581 0.956416 0.432776 0.955188 0.438695 0.321928 0.578317 0.3053 0.558373 0.963377 0.433055 0.962074 0.438861 0.939469 0.450342 0.944673 0.445101 0.952905 0.444195 0.949616 0.449137 0.959891 0.444199 0.95721 0.449055 0.928445 0.45763 0.933041 0.454385 0.647892 0.957038 0.945196 0.453364 0.513713 0.938992 0.528694 0.953445 0.940767 0.456994 0.954246 0.453493 0.191556 0.905473 0.119561 0.876603 0.09609 0.886393 0.173642 0.917872 0.296111 0.916924 0.285563 0.930752 0.407594 0.925155 0.699705 0.808301 0.767751 0.813767 0.770203 0.857847 0.710393 0.859091 0.67046 0.86001 0.652167 0.800156 0.732575 0.902022 0.706983 0.910753 0.776574 0.894725 0.709069 0.706824 0.772884 0.721001 0.769128 0.766819 0.69961 0.756109 0.650715 0.739559 0.665169 0.685443 0.747389 0.629544 0.781976 0.645207 0.777571 0.679447 0.726035 0.663915 0.69251 0.641696 0.7256 0.608173 0.800842 0.598447 0.800844 0.613722 0.782354 0.62203 0.77064 0.606739 0.761516 0.586356 0.801211 0.57812 0.833474 0.606525 0.843418 0.585771 0.884582 0.608278 0.861681 0.62927 0.826927 0.645008 0.821482 0.621769 0.901508 0.709495 0.841154 0.721344 0.835351 0.679466 0.88519 0.664947 0.920582 0.64464 0.946246 0.692573 0.905321 0.811872 0.840491 0.814502 0.842749 0.767471 0.908491 0.759591 0.957769 0.748636 0.953229 0.808266 0.87648 0.901039 0.832824 0.894364 0.83647 0.858222 0.893987 0.860506 0.934495 0.863509 0.904941 0.908789 0.811165 0.93926 0.808557 0.928096 0.833115 0.918674 0.850764 0.928355 0.866017 0.939324 0.815782 0.955298 0.781351 0.919619 0.767445 0.930389 0.756778 0.947206 0.874321 0.260529 0.87457 0.258357 0.870642 0.262514 0.870232 0.260129 0.875205 0.262091 0.87418 0.274349 0.878088 0.275377 0.879128 0.284194 0.875282 0.284248 0.876451 0.268146 0.87176 0.26763 0.879196 0.270887 0.875496 0.265391 0.893101 0.28442 0.892287 0.271326 0.879947 0.284131 0.862255 0.219399 0.877309 0.242158 0.869772 0.241647 0.855575 0.218438 0.862432 0.239621 0.84944 0.210845 0.867315 0.244511 0.849901 0.240235 0.863194 0.266321 0.876212 0.265675 0.880423 0.283451 0.866718 0.283089 0.870498 0.254293 0.863904 0.253791 0.870234 0.270504 0.864805 0.270607 0.879852 0.25405 0.878645 0.27023 0.884908 0.221559 0.894641 0.243235 0.885819 0.242521 0.87478 0.219802 0.853855 0.205189 0.868038 0.204565 0.870975 0.210424 0.856654 0.209577 0.882303 0.208527 0.885027 0.21281 0.869343 0.207181 0.855354 0.205901 0.879862 0.246326 0.872817 0.221463 0.859409 0.2185 0.885826 0.225344 0.891813 0.248223 0.886742 0.266822 0.897889 0.269881 0.890434 0.283337 0.902191 0.283202 0.887267 0.269985 0.888486 0.253806 0.897003 0.253871 0.897865 0.269734 0.890567 0.21382 0.890889 0.214313 0.887336 0.211472 0.940502 0.247339 0.935827 0.245027 0.948386 0.259727 0.952135 0.261243 0.929477 0.246937 0.935892 0.257903 0.955141 0.271935 0.951237 0.271687 0.951697 0.282445 0.956107 0.282705 0.939971 0.271031 0.941535 0.28252 0.963745 0.266939 0.955791 0.248173 0.96377 0.246708 0.971434 0.266214 0.948554 0.235961 0.955224 0.234835 0.896396 0.245174 0.886107 0.251776 0.887306 0.25714 0.901578 0.253513 0.893935 0.234459 0.893306 0.241625 0.88488 0.259333 0.895682 0.256287 0.898524 0.274248 0.887363 0.275119 0.885952 0.26722 0.897217 0.265981 0.888292 0.284017 0.899782 0.283788 0.893557 0.224473 0.903384 0.244263 0.904117 0.226402 0.909834 0.245212 0.898452 0.232315 0.90536 0.242289 0.914901 0.24109 0.908475 0.23147 0.912117 0.251402 0.92111 0.249824 0.905103 0.223634 0.894105 0.223477 0.891627 0.223783 0.892209 0.224715 0.894785 0.217728 0.904032 0.218825 0.905292 0.26092 0.916745 0.259188 0.925679 0.257542 0.919312 0.270264 0.927598 0.269904 0.909165 0.270372 0.922229 0.248254 0.923018 0.231732 0.931448 0.236491 0.927474 0.250713 0.939132 0.243721 0.931475 0.252998 0.941395 0.236759 0.941774 0.24318 0.951181 0.24757 0.953028 0.242625 0.943442 0.249961 0.949719 0.251412 0.932269 0.241398 0.935522 0.24909 0.930136 0.234395 0.929446 0.228394 0.942151 0.230847 0.942787 0.227016 0.929372 0.224433 0.954848 0.237908 0.922857 0.256527 0.927955 0.258098 0.929776 0.270263 0.925166 0.269641 0.93313 0.259066 0.935431 0.270899 0.938091 0.256867 0.945703 0.257403 0.953024 0.257866 0.948714 0.269472 0.957575 0.269677 0.940805 0.269454 0.944953 0.253898 0.950208 0.269278 0.961307 0.253711 0.957956 0.256418 0.964661 0.269455 0.96896 0.268209 0.902892 0.249987 0.897745 0.228849 0.908596 0.231834 0.912735 0.252197 0.897122 0.224227 0.89485 0.22181 0.90624 0.226903 0.908607 0.228742 0.903082 0.242361 0.906809 0.256103 0.917237 0.255133 0.919494 0.264606 0.908311 0.265315 0.907454 0.269025 0.916487 0.269043 0.911531 0.283044 0.919593 0.2829 0.909419 0.273405 0.911476 0.28336 0.920571 0.273041 0.922157 0.283218 0.922114 0.255039 0.920062 0.238863 0.921052 0.234472 0.923775 0.23538 0.929369 0.253983 0.934895 0.263753 0.927988 0.282737 0.92516 0.269608 0.937386 0.272947 0.938515 0.283177 0.906903 0.269654 0.905634 0.25451 0.912156 0.254648 0.915624 0.269303 0.934262 0.269581 0.931993 0.256855 0.928513 0.24901 0.928512 0.223212 0.917128 0.220406 0.916725 0.220767 0.9041 0.217973 0.914088 0.228391 0.916363 0.246441 0.918617 0.23227 0.923487 0.240784 0.938248 0.22777 0.892821 0.216321 0.844542 0.206031 0.874322 0.212263 0.870581 0.286403 0.864795 0.285932 0.877377 0.285736 0.887924 0.285532 0.898823 0.285311 0.908672 0.285115 0.917425 0.284957 0.921216 0.269224 0.922914 0.284906 0.926665 0.284912 0.930758 0.284928 0.936388 0.28496 0.952837 0.284936 0.967867 0.284724 0.971593 0.266723 0.976556 0.284338 0.976161 0.284497 0.973686 0.284223 0.968029 0.284169 0.960033 0.284154 0.950775 0.284138 0.942494 0.284121 0.936182 0.284123 0.929809 0.284158 0.920968 0.284223 0.910111 0.284292 0.952943 0.272204 0.950019 0.262148 0.953976 0.282879 0.900909 0.229617 0.889642 0.217102 0.912068 0.234085 0.913562 0.243735 0.925227 0.239763 0.92311 0.245509 0.916786 0.225007 0.940372 0.24984 0.963568 0.250138 0.888081 0.264217 0.918118 0.254988 0.844126 0.209259 0.844951 0.221286 0.886769 0.216308 0.872985 0.215718 0.879346 0.309871 0.875833 0.306046 0.875654 0.308144 0.879007 0.306407 0.876295 0.294136 0.878977 0.293033 0.879812 0.300399 0.876175 0.301094 0.880254 0.30345 0.882198 0.297454 0.893175 0.297687 0.865817 0.349629 0.859181 0.350621 0.872916 0.327332 0.880252 0.326495 0.865713 0.330422 0.852822 0.359205 0.869257 0.322943 0.877097 0.301439 0.864055 0.301093 0.852819 0.327816 0.866118 0.317194 0.872679 0.31623 0.865658 0.301152 0.871305 0.301562 0.879516 0.300927 0.881998 0.315802 0.888262 0.347411 0.878301 0.348969 0.888479 0.326114 0.897047 0.325511 0.857019 0.363938 0.860381 0.359999 0.874655 0.358691 0.872015 0.364197 0.888629 0.3558 0.886097 0.359632 0.872907 0.361011 0.858128 0.36229 0.881706 0.320824 0.862423 0.349295 0.875903 0.346079 0.888714 0.341972 0.893556 0.318638 0.898554 0.296744 0.887564 0.300041 0.888147 0.300674 0.898715 0.300283 0.89883 0.31539 0.89048 0.315686 0.894383 0.353795 0.894065 0.354129 0.890921 0.356254 0.942171 0.318343 0.9529 0.304272 0.949521 0.305533 0.937705 0.320863 0.937122 0.30759 0.931259 0.318903 0.955735 0.293528 0.951772 0.293299 0.940544 0.294181 0.964624 0.302435 0.972337 0.302695 0.965634 0.321964 0.957594 0.320997 0.957663 0.333351 0.950951 0.332759 0.897685 0.323309 0.904388 0.314564 0.887892 0.312338 0.888936 0.316243 0.699423 0.809253 0.710111 0.860044 0.769921 0.8588 0.767468 0.81472 0.651885 0.801109 0.669688 0.860514 0.732293 0.902975 0.706453 0.911484 0.776292 0.895678 0.708787 0.707777 0.699329 0.757062 0.768846 0.767772 0.772602 0.721954 0.664887 0.686395 0.650433 0.740512 0.747107 0.630497 0.725753 0.664868 0.777288 0.6804 0.781693 0.64616 0.725318 0.609127 0.692228 0.642648 0.80056 0.5994 0.770358 0.607692 0.782072 0.622983 0.800562 0.614675 0.800928 0.579073 0.761234 0.587309 0.833192 0.607478 0.861399 0.630223 0.8843 0.609231 0.843136 0.586725 0.8212 0.622722 0.826645 0.645961 0.901226 0.710448 0.884907 0.6659 0.835069 0.680418 0.840872 0.722297 0.945964 0.693526 0.920299 0.645594 0.905039 0.812825 0.908209 0.760544 0.842467 0.768423 0.840209 0.815454 0.952947 0.809219 0.957487 0.749588 0.876198 0.901993 0.893705 0.861459 0.836187 0.859175 0.832541 0.895317 0.904659 0.909742 0.934213 0.864462 0.810883 0.940213 0.850482 0.929308 0.832833 0.919627 0.808275 0.929049 0.815494 0.955807 0.865735 0.940277 0.767163 0.931342 0.781069 0.920572 0.878641 0.308129 0.757688 0.947696 0.89571 0.326063 0.896265 0.333541 0.887647 0.308911 0.896958 0.311973 0.898883 0.293285 0.897963 0.301935 0.887703 0.301029 0.887878 0.29293 0.905567 0.324686 0.896731 0.344468 0.906991 0.342485 0.911791 0.324251 0.900908 0.335596 0.911043 0.336295 0.917143 0.326675 0.907054 0.325968 0.923285 0.31808 0.915184 0.316034 0.908088 0.344187 0.897103 0.344536 0.894607 0.344154 0.895142 0.343144 0.898106 0.350443 0.90726 0.349181 0.907871 0.308374 0.918398 0.309598 0.927049 0.310818 0.928305 0.298442 0.920004 0.298182 0.909927 0.298243 0.924036 0.321254 0.929162 0.318872 0.933826 0.332572 0.925629 0.337191 0.941158 0.32555 0.933051 0.316658 0.943727 0.330971 0.955075 0.325269 0.952983 0.320359 0.943791 0.324629 0.951332 0.316568 0.945126 0.31796 0.937248 0.318798 0.934373 0.326359 0.932584 0.333273 0.932192 0.3393 0.932318 0.343421 0.945607 0.340893 0.944776 0.336887 0.957129 0.33006 0.924262 0.313255 0.925922 0.300164 0.930502 0.299579 0.929283 0.311724 0.936126 0.298969 0.93441 0.310774 0.939442 0.311396 0.947027 0.310849 0.954323 0.310334 0.958291 0.298597 0.94944 0.298819 0.941532 0.298832 0.946483 0.315703 0.950981 0.300512 0.962811 0.314479 0.969751 0.300159 0.965388 0.298807 0.959326 0.311738 0.904541 0.316598 0.900452 0.33816 0.911146 0.334819 0.914268 0.314088 0.900043 0.343367 0.910827 0.338483 0.909045 0.340214 0.897918 0.345703 0.907714 0.311836 0.905082 0.324826 0.918749 0.311513 0.909052 0.30192 0.920236 0.301846 0.91718 0.297035 0.908155 0.297332 0.909931 0.29344 0.92041 0.293444 0.923496 0.310879 0.922253 0.327378 0.925923 0.331262 0.923469 0.332076 0.930583 0.312153 0.934974 0.302503 0.925817 0.29614 0.93758 0.293425 0.907706 0.300101 0.916398 0.300537 0.913653 0.315103 0.907277 0.314776 0.934984 0.298714 0.933344 0.311407 0.930312 0.318902 0.931529 0.345055 0.919853 0.347075 0.920283 0.347817 0.907379 0.350402 0.918259 0.323025 0.916863 0.340467 0.921166 0.335346 0.925584 0.327014 0.941044 0.340685 0.896265 0.352186 0.847118 0.363087 0.877923 0.355511 0.921992 0.300554 0.972463 0.301867 0.950828 0.303658 0.953466 0.293583 0.892951 0.350759 0.90326 0.337983 0.915596 0.322974 0.91417 0.333036 0.927312 0.326701 0.92504 0.320904 0.919699 0.342662 0.941871 0.316003 0.965254 0.318221 0.889956 0.306147 0.919598 0.314755 0.845891 0.359181 0.847322 0.346695 0.890112 0.35133 0.87636 0.352039 0.950166 0.457401 0.877438 0.456074 0.890333 0.455013 0.891902 0.457826 0.881771 0.45805 0.893433 0.460126 0.885457 0.459788 0.90216 0.458193 0.902038 0.46051 0.902093 0.455956 0.869348 0.456995 0.875073 0.458463 0.870949 0.459563 0.865831 0.459946 0.88002 0.459819 0.876379 0.459992 0.890696 0.462723 0.889158 0.462546 0.893089 0.46287 0.842115 0.409869 0.837426 0.409453 0.838646 0.414482 0.833434 0.414204 0.847163 0.42056 0.840709 0.41957 0.839445 0.430603 0.83503 0.428579 0.852464 0.422383 0.843659 0.433436 0.835601 0.419062 0.830596 0.418889 0.831257 0.427506 0.827802 0.427141 0.876435 0.450731 0.866399 0.449489 0.869211 0.447456 0.878828 0.448367 0.861778 0.461251 0.86329 0.45579 0.869445 0.454182 0.919848 0.462088 0.9244 0.459418 0.936505 0.460001 0.932799 0.462552 0.914853 0.457033 0.912969 0.45878 0.983064 0.742705 0.970242 0.681277 0.978343 0.807461 0.961861 0.871181 0.925 0.920764 0.93957 0.629718 0.896636 0.591965 0.87816 0.953598 0.820182 0.969676 0.849136 0.56846 0.801508 0.561342 0.753635 0.961316 0.693916 0.922274 0.756457 0.570463 0.715065 0.59271 0.62759 0.729278 0.628526 0.797321 0.647916 0.672373 0.648988 0.865355 0.678001 0.627321 0.970524 0.680324 0.983346 0.741752 0.978626 0.806509 0.962143 0.870229 0.925282 0.919811 0.896919 0.591012 0.939853 0.628765 0.878442 0.952645 0.819304 0.969461 0.80179 0.560389 0.849419 0.567507 0.753465 0.960832 0.694447 0.921544 0.715348 0.591757 0.756739 0.569509 0.628808 0.796368 0.627873 0.728326 0.648199 0.671421 0.648584 0.866073 0.678283 0.626368 0.411737 0.936637 0.212659 0.665019 0.175067 0.711347 0.264355 0.628942 0.154113 0.763611 0.154483 0.81452 0.911051 0.461039 0.528987 0.594894 0.945951 0.460521 0.339791 0.607004 0.94197 0.46307 0.896594 0.462992 0.902819 0.462828 0.939147 0.46498 0.588358 0.917245 0.930869 0.464578 0.500784 0.908814 0.937502 0.466649 0.178893 0.855096 0.23388 0.878659 0.317203 0.888741 0.409219 0.897533 0.412456 0.865776 0.413517 0.832907 0.415303 0.797177 0.41903 0.758087 0.424284 0.717135 0.429773 0.675932 0.433166 0.635493 0.431719 0.596003 0.42845 0.560105 0.426262 0.535529 0.166927 0.932027 0.089131 0.90146 0.412839 0.954955 0.280654 0.94225 0.092604 0.643694 0.172265 0.583534 0.034269 0.783775 0.048602 0.713913 0.288973 0.53753 0.047197 0.849027 0.9297 0.466322 0.910929 0.462701 0.429574 0.516361 0.573602 0.514995 0.911763 0.464455 0.904647 0.46452 0.91245 0.466086 0.906026 0.466148 0.920833 0.464349 0.682918 0.980037 0.544365 0.975068 0.92089 0.466118 0.274953 0.94136 0.412382 0.948959 0.078614 0.893197 0.159929 0.926191 0.045546 0.712112 0.029763 0.775258 0.174568 0.589926 0.093871 0.647648 0.286715 0.542233 0.039682 0.837587 0.568016 0.514851 0.425296 0.517534 0.89967 0.464526 0.715649 0.536695 0.89649 0.46445 0.90127 0.466162 0.89793 0.466107 0.92457 0.397524 0.934172 0.397517 0.90196 0.397532 0.543555 0.96576 0.912366 0.397543 0.914428 0.398827 0.902477 0.39881 0.887934 0.397535 0.886084 0.398748 0.939158 0.397548 0.916553 0.401268 0.903345 0.401161 0.918892 0.404595 0.904419 0.40426 0.88377 0.401252 0.880927 0.404722 0.905294 0.428912 0.905488 0.424961 0.912357 0.424967 0.91334 0.429138 0.905906 0.421495 0.911087 0.422154 0.904076 0.437412 0.90478 0.43319 0.913199 0.433998 0.911884 0.43877 0.90321 0.444063 0.903361 0.441071 0.909872 0.442542 0.908067 0.444769 0.902496 0.453271 0.918142 0.453706 0.928783 0.450398 0.93573 0.445715 0.939896 0.439756 0.941415 0.433124 0.940295 0.426582 0.937084 0.420446 0.931618 0.414911 0.921769 0.409549 0.905101 0.407893 0.876573 0.40992 0.866307 0.415598 0.859425 0.421874 0.854503 0.429219 0.846009 0.439206 0.853866 0.435555 0.855666 0.44134 0.849189 0.44441 0.859693 0.44628 0.853635 0.449316 0.859396 0.453185 0.889827 0.45174 0.862926 0.421743 0.859205 0.428005 0.869662 0.416377 0.857993 0.434235 0.859086 0.440054 0.916008 0.412068 0.903601 0.410265 0.918257 0.418305 0.91053 0.415402 0.913091 0.413541 0.921836 0.416936 0.92534 0.416062 0.879532 0.412275 0.931494 0.42114 0.923547 0.422692 0.927682 0.421785 0.926515 0.428111 0.931209 0.427509 0.93512 0.42705 0.936295 0.433481 0.92732 0.434037 0.932331 0.433786 0.925669 0.439922 0.930432 0.440034 0.934525 0.439972 0.912845 0.451737 0.922595 0.449614 0.907361 0.448978 0.915126 0.447877 0.918684 0.448912 0.909842 0.450414 0.901128 0.451294 0.929882 0.445604 0.921412 0.444811 0.925747 0.445329 0.862632 0.44473 0.90791 0.418325 0.914417 0.420366 0.918293 0.424021 0.92059 0.42877 0.920879 0.434155 0.919487 0.439514 0.911345 0.446349 0.90499 0.446728 0.916084 0.443813 0.891421 0.410387 0.891335 0.407994 0.8923 0.404278 0.892667 0.401108 0.892803 0.398753 0.893101 0.397518 0.953337 0.401538 0.958091 0.405199 0.9475 0.399036 0.96186 0.409791 0.964499 0.415028 0.96612 0.420717 0.967305 0.426924 0.967388 0.433074 0.966427 0.438883 0.96451 0.444202 0.961861 0.44894 0.958944 0.453645 0.955428 0.457592 0.951844 0.460785 0.948132 0.463506 0.945008 0.465414 0.9428 0.466896 0.940897 0.39766 0.894646 0.464377 0.893748 0.464327 0.895819 0.465909 0.894732 0.465707 0.898046 0.468336 0.895591 0.467749 0.894211 0.467377 0.894053 0.470321 0.892528 0.469525 0.89702 0.472125 0.906461 0.46806 0.901761 0.468217 0.901883 0.471147 0.906501 0.470456 0.912592 0.467918 0.912253 0.470089 0.920682 0.467923 0.920674 0.470154 0.9293 0.468129 0.929876 0.470181 0.93702 0.468441 0.938213 0.470896 0.942275 0.468514 0.942757 0.470744 0.890006 0.4495 0.852976 0.399065 0.859393 0.397599 0.847065 0.401675 0.84127 0.405026 0.953466 0.401386 0.958188 0.405089 0.947588 0.398916 0.961862 0.409747 0.964391 0.415022 0.965926 0.420729 0.967068 0.426923 0.967242 0.433135 0.966314 0.439008 0.964406 0.444378 0.961584 0.44912 0.958267 0.453722 0.954279 0.457569 0.865611 0.460368 0.870463 0.459645 0.869977 0.459728 0.865391 0.460791 0.875883 0.460032 0.875386 0.460071 0.889107 0.462568 0.889055 0.46259 0.836433 0.409343 0.829542 0.419704 0.832578 0.41403 0.832317 0.414141 0.82924 0.419624 0.86181 0.461905 0.861843 0.46256 0.95053 0.46075 0.946775 0.4634 0.943577 0.465237 0.941527 0.466697 0.893773 0.464335 0.893798 0.464342 0.894526 0.465626 0.894385 0.465571 0.940912 0.397604 0.893807 0.467247 0.893563 0.467166 0.891985 0.469369 0.891535 0.469419 0.940364 0.468392 0.940762 0.470517 0.866236 0.398834 0.873711 0.398813 0.877506 0.397514 0.870971 0.397493 0.865522 0.397455 0.860032 0.398872 0.856026 0.399014 0.861954 0.397568 0.860159 0.397664 0.853853 0.399094 0.935431 0.404681 0.948546 0.405179 0.944496 0.401457 0.931632 0.401375 0.939488 0.398861 0.927974 0.398901 0.870657 0.401504 0.861966 0.401526 0.855096 0.4016 0.850751 0.405417 0.858121 0.405363 0.867731 0.405188 0.850561 0.401575 0.848094 0.401586 0.842791 0.404957 0.845766 0.405198 0.9455 0.398818 0.951158 0.401375 0.955535 0.405156 0.94295 0.41441 0.9536 0.414936 0.951437 0.40979 0.938847 0.409148 0.863906 0.410047 0.854469 0.410101 0.8468 0.410021 0.843291 0.414792 0.850618 0.415218 0.858112 0.415702 0.958875 0.409842 0.961147 0.415077 0.9551 0.420509 0.945887 0.42022 0.947818 0.426423 0.955942 0.426574 0.962495 0.420748 0.963347 0.426902 0.947179 0.438896 0.955415 0.438781 0.95627 0.432802 0.948355 0.432791 0.963455 0.433109 0.96255 0.43901 0.93973 0.449457 0.950281 0.449152 0.953464 0.44429 0.944309 0.444589 0.960647 0.444424 0.957836 0.449233 0.928866 0.456683 0.941589 0.457208 0.946319 0.453375 0.933669 0.453285 0.954103 0.453514 0.949874 0.457416 0.877353 0.455968 0.882269 0.458025 0.892317 0.457757 0.890577 0.455047 0.886684 0.460112 0.89423 0.460211 0.902677 0.460467 0.90267 0.458019 0.902808 0.455334 0.869597 0.456984 0.865825 0.458435 0.871446 0.458982 0.8752 0.458466 0.877063 0.46 0.880928 0.46006 0.889224 0.462652 0.890358 0.462714 0.892541 0.462593 0.841603 0.409572 0.838159 0.409243 0.834209 0.413908 0.837981 0.414182 0.839885 0.419736 0.846514 0.420792 0.834481 0.428371 0.838869 0.430451 0.84343 0.433385 0.852102 0.422532 0.830666 0.418987 0.834732 0.419195 0.827717 0.426976 0.830662 0.427303 0.875777 0.450429 0.878346 0.448288 0.868619 0.446935 0.865577 0.448677 0.860982 0.459109 0.863516 0.455972 0.868771 0.453598 0.919955 0.462087 0.933215 0.46265 0.936971 0.460171 0.92452 0.45941 0.915797 0.455832 0.913434 0.458571 0.911682 0.460937 0.945768 0.460575 0.941689 0.463136 0.897291 0.462545 0.903757 0.462585 0.930828 0.464538 0.938505 0.464915 0.929084 0.466249 0.936418 0.466469 0.911714 0.462545 0.904992 0.464496 0.91226 0.464434 0.906001 0.466171 0.912549 0.466198 0.920438 0.466178 0.920682 0.464371 0.899694 0.464496 0.896238 0.464476 0.897673 0.46607 0.901142 0.46612 0.933851 0.397545 0.924135 0.397565 0.901567 0.397461 0.902111 0.398787 0.913998 0.398826 0.911927 0.397463 0.885568 0.398789 0.887707 0.397486 0.939027 0.397536 0.902897 0.401138 0.916139 0.401275 0.904075 0.404332 0.918631 0.404656 0.883077 0.401373 0.880245 0.404983 0.905419 0.428922 0.912942 0.429219 0.912006 0.425106 0.905474 0.425025 0.910791 0.422281 0.905844 0.421559 0.904305 0.436885 0.911907 0.438227 0.913047 0.433844 0.905052 0.432984 0.903203 0.443238 0.908124 0.443775 0.909903 0.441649 0.903445 0.440313 0.90285 0.452456 0.918742 0.45246 0.929033 0.449192 0.935553 0.444785 0.939489 0.439171 0.940895 0.433027 0.939916 0.426757 0.936762 0.420698 0.931211 0.415109 0.90461 0.407951 0.921344 0.40965 0.876099 0.410269 0.865754 0.416146 0.858856 0.422274 0.85408 0.42925 0.845714 0.439016 0.8487 0.443676 0.855252 0.440105 0.853622 0.434905 0.852614 0.447663 0.858958 0.44511 0.858176 0.451853 0.889824 0.45148 0.858947 0.427844 0.863033 0.422095 0.869857 0.416948 0.858451 0.439034 0.857612 0.433475 0.903128 0.410252 0.915613 0.4122 0.910336 0.415321 0.91773 0.418674 0.921258 0.417307 0.91279 0.413538 0.924944 0.416332 0.879341 0.412694 0.930972 0.4215 0.922517 0.423241 0.926792 0.422268 0.92506 0.428584 0.929895 0.42793 0.93442 0.427304 0.935453 0.433435 0.925801 0.434263 0.930838 0.433902 0.924243 0.439743 0.929152 0.439726 0.933786 0.439455 0.922618 0.448568 0.913071 0.450609 0.91472 0.447235 0.9073 0.44856 0.909883 0.449686 0.918464 0.448158 0.90106 0.450464 0.929479 0.444749 0.920523 0.44435 0.924927 0.444695 0.861743 0.443993 0.907779 0.418347 0.914012 0.420577 0.917709 0.42432 0.919641 0.429082 0.919962 0.434273 0.918588 0.43924 0.904848 0.446138 0.911088 0.445577 0.915514 0.4432 0.890897 0.408138 0.891059 0.410492 0.89188 0.404459 0.892481 0.401195 0.892744 0.398811 0.892774 0.397499 0.852987 0.39915 0.859402 0.397672 0.847027 0.401638 0.84144 0.40503 0.836758 0.409301 0.826856 0.427241 0.893304 0.464316 0.894343 0.465793 0.894093 0.464377 0.895401 0.465971 0.893628 0.467665 0.890751 0.471053 0.897653 0.467915 0.895086 0.467874 0.893376 0.47055 0.896513 0.470318 0.906138 0.467954 0.901291 0.467913 0.900442 0.470186 0.905385 0.470181 0.912382 0.468058 0.911527 0.470316 0.918635 0.470453 0.91977 0.468076 0.926488 0.470872 0.927835 0.468189 0.935282 0.468257 0.935209 0.471328 0.877915 0.500707 0.878197 0.500625 0.878935 0.505269 0.878376 0.50543 0.87849 0.500327 0.879515 0.504678 0.878776 0.499827 0.880077 0.503685 0.879041 0.499148 0.880596 0.502336 0.879273 0.498323 0.88105 0.500691 0.879461 0.49739 0.881414 0.498833 0.879595 0.496393 0.881685 0.496848 0.879673 0.495381 0.881831 0.494834 0.879688 0.4944 0.881855 0.492886 0.879641 0.493495 0.881754 0.491093 0.879517 0.492692 0.881496 0.489502 0.879256 0.49199 0.880966 0.488128 0.878724 0.491679 0.879976 0.487255 0.880441 0.487544 0.878985 0.491764 0.880259 0.509816 0.879427 0.510054 0.881118 0.508941 0.881951 0.507469 0.882719 0.50547 0.883385 0.503037 0.883918 0.500283 0.884295 0.497337 0.884501 0.494341 0.884524 0.491438 0.884373 0.488781 0.883999 0.486461 0.88321 0.484429 0.882394 0.483424 0.882124 0.514208 0.881033 0.51452 0.883251 0.513061 0.884343 0.511133 0.885349 0.508513 0.886222 0.505324 0.886921 0.501715 0.887414 0.497854 0.887677 0.493924 0.887702 0.490113 0.887496 0.486645 0.88698 0.48361 0.885938 0.48091 0.884878 0.479558 0.884506 0.51838 0.88317 0.518762 0.885883 0.516979 0.887217 0.514621 0.888447 0.511419 0.889514 0.507521 0.890369 0.503109 0.890971 0.49839 0.891293 0.493586 0.89132 0.488919 0.891054 0.484665 0.890395 0.481066 0.88919 0.477958 0.887817 0.476052 0.887367 0.522273 0.885807 0.522719 0.888975 0.520637 0.890533 0.517885 0.891968 0.514147 0.893214 0.509596 0.894212 0.504446 0.894915 0.498938 0.895291 0.493329 0.895322 0.487882 0.895 0.482915 0.894205 0.478779 0.892842 0.475169 0.891068 0.473073 0.890668 0.525829 0.888906 0.526332 0.892483 0.523982 0.894241 0.520876 0.895861 0.516656 0.897267 0.51152 0.898394 0.505707 0.899187 0.499489 0.899612 0.493158 0.899646 0.487009 0.899286 0.481354 0.898411 0.476638 0.894359 0.528996 0.892421 0.529549 0.896354 0.526965 0.898288 0.52355 0.900069 0.518911 0.901615 0.513263 0.902854 0.506872 0.903726 0.500036 0.904193 0.493075 0.904231 0.486314 0.903834 0.4801 0.902975 0.47504 0.898388 0.531728 0.896302 0.532323 0.900534 0.529543 0.902614 0.525869 0.904531 0.520877 0.906194 0.514801 0.907527 0.507925 0.908466 0.50057 0.908967 0.493081 0.909009 0.485806 0.908572 0.479151 0.907654 0.473824 0.902694 0.533986 0.900491 0.534614 0.90496 0.531679 0.907157 0.527799 0.909181 0.522528 0.910937 0.516111 0.912345 0.50885 0.913336 0.501084 0.913866 0.493175 0.913909 0.485494 0.91346 0.478418 0.912585 0.472851 0.907215 0.535736 0.904927 0.536388 0.909569 0.53334 0.91185 0.529311 0.913952 0.523838 0.915776 0.517175 0.917237 0.509635 0.918266 0.50157 0.918854 0.493342 0.918947 0.485357 0.91844 0.478006 0.91787 0.471971 0.914263 0.537286 0.911914 0.537955 0.916678 0.534827 0.919019 0.530693 0.921175 0.525076 0.923047 0.518239 0.924546 0.510502 0.925585 0.502224 0.926227 0.493754 0.926493 0.485583 0.925762 0.478045 0.924764 0.471485 0.921403 0.537724 0.919062 0.538392 0.92381 0.535275 0.926142 0.531156 0.930338 0.525761 0.93162 0.519674 0.933283 0.512932 0.932692 0.502839 0.933977 0.494768 0.934333 0.486371 0.933206 0.478784 0.931863 0.472204 0.92611 0.537268 0.92382 0.53792 0.928464 0.534872 0.932388 0.530343 0.937335 0.506755 0.941235 0.498334 0.941521 0.487989 0.940371 0.480184 0.938481 0.473907 0.930691 0.536256 0.928485 0.536884 0.934789 0.533043 0.935078 0.534703 0.932989 0.535298 0.938368 0.532576 0.947164 0.489068 0.947066 0.497764 0.946239 0.481893 0.944283 0.476284 0.939209 0.532632 0.937267 0.533185 0.941919 0.530982 0.950689 0.490156 0.950271 0.497772 0.95034 0.48345 0.948203 0.478162 0.943023 0.530074 0.941256 0.530577 0.945589 0.528338 0.95349 0.491089 0.952472 0.498024 0.953154 0.485389 0.951415 0.480527 0.946464 0.527065 0.944898 0.52751 0.948879 0.525086 0.955336 0.498108 0.955494 0.49227 0.955142 0.488211 0.954263 0.484425 0.949389 0.475505 0.954052 0.482326 0.94757 0.475109 0.945693 0.473082 0.943613 0.471998 0.950577 0.521636 0.949187 0.522238 0.951775 0.520708 0.950886 0.519379 0.952605 0.518141 0.95447 0.515316 0.952742 0.516616 0.878125 0.495997 0.943537 0.514246 0.944979 0.511457 0.945299 0.511731 0.944004 0.514141 0.946866 0.510467 0.945612 0.512005 0.946775 0.509925 0.944125 0.524447 0.943125 0.523168 0.943363 0.52176 0.944265 0.522893 0.943213 0.51865 0.9436 0.520352 0.942839 0.519741 0.942465 0.520831 0.942508 0.517563 0.943036 0.516979 0.944472 0.514036 0.943564 0.516394 0.946664 0.509365 0.948503 0.507957 0.948316 0.508687 0.949207 0.508705 0.948096 0.509397 0.949608 0.50791 0.950009 0.507096 0.951195 0.506751 0.950679 0.507606 0.951005 0.508659 0.950161 0.508443 0.951647 0.507843 0.952323 0.510866 0.951744 0.509448 0.952587 0.5089 0.953318 0.510638 0.952296 0.507042 0.953444 0.508317 0.954198 0.510416 0.954069 0.512878 0.953344 0.512779 0.95222 0.51488 0.952538 0.512757 0.952777 0.515115 0.953314 0.515413 0.952001 0.51802 0.951641 0.517475 0.949848 0.518868 0.951263 0.516984 0.950071 0.519673 0.950291 0.520481 0.948367 0.522605 0.94826 0.52146 0.946642 0.521256 0.948152 0.520315 0.946704 0.522693 0.946766 0.524131 0.94537 0.524785 0.945389 0.52319 0.944404 0.521338 0.945409 0.521595 0.948517 0.508521 0.947425 0.509189 0.946164 0.510225 0.943731 0.513771 0.942852 0.515989 0.942484 0.51808 0.944874 0.511783 0.950283 0.508511 0.949456 0.508269 0.942699 0.51973 0.943487 0.520694 0.951552 0.510694 0.95099 0.509314 0.944633 0.521012 0.946034 0.520645 0.951461 0.514432 0.951791 0.512457 0.947604 0.519694 0.949207 0.518265 0.95053 0.516413 0.954352 0.507334 0.955064 0.51004 0.953029 0.50566 0.954691 0.513093 0.953563 0.516187 0.942931 0.511155 0.945738 0.50837 0.941124 0.514785 0.948237 0.525023 0.946042 0.527051 0.950358 0.522206 0.940778 0.525984 0.939919 0.523165 0.942236 0.527579 0.940031 0.519157 0.94836 0.506655 0.95038 0.505668 0.951792 0.505283 0.952106 0.519194 0.94408 0.527997 0.955136 0.505085 0.955458 0.508799 0.953996 0.503048 0.954947 0.51289 0.953571 0.516724 0.940392 0.509704 0.943959 0.505926 0.937487 0.514053 0.946965 0.527152 0.943743 0.529685 0.949863 0.52392 0.936263 0.528363 0.934831 0.524989 0.938515 0.530358 0.93544 0.520327 0.947235 0.504116 0.949823 0.503295 0.952034 0.502955 0.951882 0.52041 0.941028 0.53079 0.956255 0.501869 0.956376 0.507194 0.955436 0.512282 0.95378 0.516679 0.954272 0.512902 0.953969 0.514386 0.955477 0.513065 0.955509 0.511632 0.956562 0.510151 0.957541 0.50583 0.957528 0.506237 0.957401 0.500104 0.957323 0.498901 0.956684 0.496896 0.956413 0.492938 0.956425 0.492794 0.955922 0.48933 0.955605 0.489791 0.952251 0.480529 0.95403 0.483685 0.955302 0.484788 0.955335 0.486204 0.955539 0.486154 0.954877 0.485325 0.956687 0.508947 0.956754 0.495687 0.955045 0.487387 0.877848 0.505182 0.877652 0.500582 0.87737 0.504506 0.877412 0.500243 0.876974 0.503437 0.877218 0.499703 0.87668 0.502023 0.877063 0.498994 0.876501 0.50033 0.876979 0.498142 0.876446 0.498438 0.87696 0.497191 0.876522 0.496436 0.877006 0.496186 0.876728 0.49442 0.877115 0.495174 0.877054 0.492488 0.877281 0.494204 0.877479 0.49073 0.877498 0.49332 0.877999 0.489197 0.877767 0.492546 0.878719 0.487808 0.878144 0.491879 0.879235 0.487423 0.878402 0.491725 0.878643 0.509686 0.877934 0.508686 0.877348 0.507101 0.876912 0.505005 0.876647 0.502497 0.876565 0.499694 0.876669 0.496727 0.876956 0.493734 0.877416 0.490859 0.878045 0.488251 0.878803 0.485988 0.879891 0.48389 0.880652 0.483253 0.880004 0.514038 0.879075 0.512727 0.878307 0.510649 0.877736 0.507903 0.877388 0.504616 0.87728 0.500942 0.877417 0.497054 0.877793 0.493132 0.878389 0.48936 0.879214 0.485947 0.880199 0.482989 0.881623 0.480314 0.882641 0.479405 0.881911 0.518172 0.880775 0.516569 0.879836 0.51403 0.879138 0.510673 0.878713 0.506655 0.878582 0.502165 0.878749 0.497412 0.879208 0.492618 0.879955 0.488021 0.881001 0.483899 0.88231 0.480367 0.883909 0.47731 0.885135 0.475926 0.884336 0.52203 0.883011 0.520159 0.881915 0.517195 0.8811 0.513276 0.880604 0.508586 0.88045 0.503344 0.880646 0.497795 0.881181 0.492199 0.882059 0.48684 0.883257 0.482017 0.884772 0.477872 0.886828 0.474331 0.888116 0.472377 0.887245 0.525554 0.885749 0.523442 0.884512 0.520096 0.883592 0.515673 0.883032 0.510379 0.882858 0.504462 0.883079 0.498199 0.883683 0.491882 0.884656 0.485819 0.885976 0.480334 0.887771 0.475644 0.888962 0.472096 0.890594 0.528694 0.888949 0.526372 0.887589 0.522693 0.886578 0.51783 0.885962 0.512009 0.885771 0.505504 0.886014 0.498617 0.886678 0.491672 0.887734 0.484992 0.889161 0.478945 0.891005 0.474124 0.894335 0.531403 0.892565 0.528905 0.891102 0.524947 0.890014 0.519714 0.889351 0.513452 0.889146 0.506453 0.889407 0.499043 0.890122 0.491571 0.891258 0.484384 0.892815 0.477978 0.894695 0.473363 0.898413 0.533643 0.896544 0.531004 0.894999 0.526825 0.89385 0.5213 0.893151 0.514687 0.892934 0.507295 0.893209 0.499472 0.893965 0.491581 0.895164 0.483992 0.89686 0.477387 0.898865 0.473076 0.902769 0.53538 0.900829 0.53264 0.899224 0.5283 0.898031 0.522562 0.897305 0.515695 0.897079 0.50802 0.897366 0.499895 0.89815 0.491701 0.899396 0.483821 0.901449 0.477074 0.903819 0.472976 0.909699 0.53692 0.907707 0.534109 0.906061 0.529655 0.904836 0.523767 0.904091 0.516721 0.90386 0.508844 0.904153 0.500507 0.904958 0.492099 0.906237 0.484012 0.908008 0.477129 0.910034 0.473198 0.916854 0.53736 0.91487 0.534559 0.91323 0.530122 0.914164 0.524465 0.913164 0.518196 0.913437 0.51134 0.91133 0.50108 0.912131 0.492703 0.913405 0.484646 0.91513 0.47783 0.916994 0.473623 0.92166 0.536911 0.919719 0.534172 0.91917 0.529284 0.917172 0.505296 0.919838 0.496406 0.920904 0.486229 0.92238 0.479225 0.924263 0.474614 0.926405 0.535913 0.924828 0.532245 0.931019 0.534378 0.929686 0.53188 0.92797 0.487724 0.927599 0.495894 0.929366 0.480734 0.931925 0.475167 0.935435 0.53233 0.934387 0.530379 0.933232 0.488977 0.932764 0.496065 0.934736 0.482159 0.937602 0.476887 0.93959 0.529799 0.938848 0.527798 0.937731 0.490249 0.936964 0.496523 0.939215 0.484123 0.942421 0.479379 0.943421 0.526821 0.942722 0.524593 0.94207 0.497013 0.942329 0.491435 0.943599 0.487511 0.946933 0.482758 0.949756 0.480976 0.945342 0.476815 0.940652 0.473783 0.947564 0.521395 0.9466 0.520277 0.951324 0.514898 0.949518 0.517928 0.928377 0.510114 0.926885 0.51291 0.927854 0.512845 0.929178 0.51043 0.92998 0.510746 0.931406 0.509225 0.930823 0.508639 0.92835 0.521984 0.930534 0.523359 0.930891 0.521821 0.928964 0.520607 0.929579 0.519229 0.928441 0.517467 0.927597 0.51852 0.926179 0.516255 0.926753 0.519573 0.927195 0.51571 0.928211 0.515165 0.928823 0.512781 0.932374 0.506682 0.930239 0.508053 0.932657 0.507439 0.93294 0.508196 0.934517 0.507536 0.93451 0.506707 0.936567 0.505592 0.934502 0.505878 0.936317 0.506456 0.936067 0.50732 0.937546 0.507578 0.93807 0.506748 0.938901 0.508422 0.940036 0.50988 0.941088 0.509726 0.939772 0.507879 0.940713 0.507314 0.938594 0.505926 0.942911 0.511998 0.942269 0.509491 0.941755 0.511888 0.940774 0.511818 0.940867 0.513981 0.941724 0.514237 0.941696 0.517149 0.942674 0.514592 0.940898 0.516619 0.940099 0.51609 0.938667 0.517973 0.939267 0.518807 0.937547 0.521739 0.939868 0.519641 0.937153 0.52057 0.936759 0.519402 0.934851 0.520311 0.935057 0.52176 0.932933 0.523788 0.935263 0.523209 0.932985 0.522196 0.933038 0.520604 0.931248 0.520284 0.932573 0.508007 0.934161 0.507367 0.930964 0.509008 0.927841 0.514787 0.928411 0.512543 0.928106 0.516928 0.929515 0.510546 0.935671 0.507169 0.937081 0.507438 0.929093 0.51864 0.93071 0.519671 0.938351 0.508298 0.9394 0.509723 0.932552 0.520045 0.934434 0.519715 0.940079 0.511519 0.940113 0.513519 0.936336 0.518792 0.938116 0.517377 0.939405 0.515521 0.943638 0.508965 0.941943 0.506311 0.939071 0.504531 0.94388 0.51543 0.944335 0.512165 0.927944 0.506963 0.925069 0.509715 0.923231 0.513349 0.935271 0.526189 0.938229 0.524222 0.940839 0.521447 0.923484 0.521848 0.925731 0.524779 0.928789 0.526502 0.922597 0.517761 0.93396 0.504385 0.931029 0.505302 0.936534 0.504088 0.942769 0.518413 0.932116 0.527039 0.945351 0.507568 0.943089 0.503744 0.939896 0.502018 0.945354 0.516015 0.946118 0.511811 0.925289 0.504712 0.920962 0.50815 0.918385 0.51252 0.934537 0.528948 0.938552 0.526478 0.941809 0.523283 0.918305 0.523665 0.921702 0.527196 0.925959 0.529352 0.917212 0.518867 0.933078 0.501722 0.929349 0.502508 0.936447 0.501609 0.943896 0.519878 0.930309 0.529931 0.948005 0.505607 0.944871 0.499392 0.947806 0.516062 0.9491 0.511191 0.953215 0.511264 0.952698 0.512701 0.951135 0.50884 0.950868 0.504414 0.946032 0.497811 0.946155 0.49879 0.9504 0.504692 0.944108 0.496015 0.944681 0.492183 0.945966 0.489086 0.945497 0.488606 0.944291 0.491984 0.951345 0.48426 0.948386 0.485293 0.952907 0.485943 0.952013 0.507755 0.944606 0.494766 0.94856 0.486751 0.889967 0.448966 0.879572 0.4873 0.878531 0.491695 0.881189 0.483034 0.883359 0.479059 0.88597 0.475436 0.826451 0.427416 0.889758 0.472115 0.881748 0.482959 0.884054 0.478968 0.886811 0.475429 0.942835 0.472365 0.877975 0.397658 0.883515 0.397651 0.873951 0.397664 0.870831 0.397671 0.867889 0.397674 0.918562 0.397639 0.925482 0.397634 0.901603 0.397646 0.909465 0.397642 0.891034 0.397645 0.929288 0.397637 0.894812 0.397645 0.931273 0.397662 0.86549 0.397668 0.931235 0.397655 0.882529 0.39765 0.877003 0.397658 0.871595 0.397671 0.868659 0.397671 0.868707 0.397667 0.925845 0.397644 0.918784 0.397657 0.909614 0.397666 0.901249 0.39767 0.890498 0.397656 0.92961 0.397643 0.894099 0.397656 0.867711 0.397671 0.900103 0.397679 0.595916 0.679782 0.593633 0.724091 0.587548 0.772055 0.579229 0.819401 0.570764 0.860428 0.56898 0.893979 0.055194 0.327681 0.056512 0.244825 0.056323 0.176259 0.056343 0.11532 0.057144 0.041836 0.468306 0.320445 0.459246 0.232082 0.470583 0.402538 0.456894 0.171519 0.044392 0.51728 0.04804 0.442488 0.039555 0.560029 0.472222 0.467543 0.655545 0.572596 0.685594 0.967391 0.590033 0.92387 0.595756 0.680499 0.590769 0.76975 0.682275 0.551691 0.647404 0.965201 0.571758 0.851938 0.600135 0.64164 0.623018 0.605621 0.617347 0.944413 0.720327 0.535205</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2277\" source=\"#LOD3spShape-lib-map1-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"LOD3spShape-lib-vertices\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#LOD3spShape-lib-positions\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<polylist xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" count=\"2144\" material=\"blinn3SG\">\r\n\t\t\t\t\t<vcount xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 4 4 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 4 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 3</vcount>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#LOD3spShape-lib-vertices\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#LOD3spShape-lib-normals\" offset=\"1\" semantic=\"NORMAL\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#LOD3spShape-lib-map1\" offset=\"2\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">89 0 23 243 1 26 90 2 28 6 3 29 91 4 30 243 1 26 89 0 23 5 5 31 92 6 33 244 7 35 91 4 30 5 5 31 299 8 36 244 7 35 92 6 33 218 9 37 7 10 39 95 11 41 93 12 42 8 13 57 93 12 42 95 11 41 94 14 61 9 15 62 96 16 65 245 17 66 89 0 23 6 3 29 89 0 23 245 17 66 97 18 67 5 5 31 97 18 67 245 17 66 98 19 68 11 20 69 98 19 68 245 17 66 96 16 65 10 21 70 97 18 67 246 22 71 92 6 33 5 5 31 92 6 33 246 22 71 300 23 72 218 9 37 300 23 72 246 22 71 99 24 84 219 25 85 99 24 84 246 22 71 97 18 67 11 20 69 12 26 86 247 27 89 93 12 42 9 15 62 93 12 42 247 27 89 100 28 90 8 13 57 13 29 135 102 30 137 101 31 138 14 32 139 101 31 138 102 30 137 7 10 39 8 13 57 103 33 140 248 34 141 98 19 68 10 21 70 98 19 68 248 34 141 104 35 142 11 20 69 104 35 142 248 34 141 105 36 200 16 37 246 105 36 200 248 34 141 103 33 140 15 38 249 100 28 90 107 39 252 101 31 138 8 13 57 101 31 138 107 39 252 106 40 253 14 32 139 108 41 254 109 42 256 13 29 135 14 32 139 18 43 259 109 42 256 108 41 254 17 44 260 106 40 253 111 45 262 108 41 254 14 32 139 108 41 254 111 45 262 110 46 265 17 44 260 20 47 266 112 48 283 113 49 285 19 50 286 113 49 285 112 48 283 18 43 259 17 44 260 110 46 265 115 51 289 113 49 285 17 44 260 113 49 285 115 51 289 114 52 290 19 50 286 22 53 291 116 54 292 117 55 293 21 56 294 117 55 293 116 54 292 20 47 266 19 50 286 114 52 290 119 57 295 117 55 293 19 50 286 117 55 293 119 57 295 118 58 296 21 56 294 23 59 297 249 60 298 120 61 300 24 62 303 120 61 300 249 60 298 22 53 291 21 56 294 118 58 296 122 63 304 120 61 300 21 56 294 120 61 300 122 63 304 121 64 884 24 62 303 26 65 885 339 66 886 340 67 887 123 68 888 123 68 888 340 67 887 341 69 889 28 70 890 341 69 889 340 67 887 124 71 891 27 72 892 124 71 891 340 67 887 339 66 886 25 73 893 125 74 894 250 75 895 307 76 896 29 77 897 307 76 896 250 75 895 126 78 898 227 79 899 126 78 898 250 75 895 123 68 888 28 70 890 123 68 888 250 75 895 125 74 894 26 65 885 126 78 898 127 80 900 45 81 901 227 79 899 126 78 898 28 70 890 30 82 902 127 80 900 128 83 0 251 84 1 308 85 2 31 86 3 308 85 74 251 84 75 129 87 76 228 88 77 129 87 76 251 84 75 130 89 78 33 90 79 130 89 4 251 84 1 128 83 0 32 91 12 131 92 13 252 93 14 309 94 15 34 95 16 309 94 15 252 93 14 128 83 0 31 86 3 128 83 0 252 93 14 132 96 17 32 91 12 132 96 17 252 93 14 131 92 13 35 97 18 133 98 82 253 99 83 132 96 17 35 97 18 132 96 17 253 99 83 134 100 91 32 91 12 134 100 91 253 99 83 156 101 92 36 102 93 156 101 92 253 99 83 133 98 82 38 103 94 135 104 96 254 105 97 136 106 98 39 107 101 136 106 98 254 105 97 137 108 102 37 109 105 137 108 102 254 105 97 133 98 82 35 97 18 133 98 82 254 105 97 135 104 96 38 103 94 104 35 142 255 110 903 99 24 84 11 20 69 99 24 84 255 110 903 310 111 904 219 25 85 310 111 904 255 110 903 138 112 905 1978 113 906 138 112 905 255 110 903 104 35 142 16 37 246 204 114 5 285 115 6 139 116 7 59 117 8 139 116 7 285 115 6 203 118 9 57 119 10 105 36 200 256 120 907 140 121 908 16 37 246 140 121 908 256 120 907 135 104 909 39 107 910 135 104 909 256 120 907 141 122 911 38 103 912 141 122 911 256 120 907 105 36 200 15 38 249 138 112 905 257 123 913 142 124 914 1978 113 906 142 124 914 257 123 913 154 125 915 229 126 916 154 125 915 257 123 913 140 121 908 39 107 910 140 121 908 257 123 913 138 112 905 16 37 246 143 127 11 284 128 19 202 129 20 60 130 21 203 118 9 284 128 19 143 127 11 57 119 10 144 131 917 56 132 918 2065 133 919 2066 134 920 311 135 921 258 136 922 125 74 894 29 77 897 125 74 894 258 136 922 145 137 923 26 65 885 145 137 80 258 136 81 146 138 95 40 139 99 146 138 95 258 136 81 311 135 100 41 140 103 43 141 924 147 142 925 148 143 926 42 144 927 148 143 926 147 142 925 23 59 297 24 62 303 149 145 928 259 146 929 124 71 891 25 73 893 124 71 891 259 146 929 150 147 976 27 72 892 150 147 976 259 146 929 147 142 925 43 141 924 147 142 925 259 146 929 149 145 928 23 59 297 121 64 884 152 148 978 148 143 926 24 62 303 148 143 926 152 148 978 151 149 980 42 144 927 231 150 981 30 82 902 28 70 890 341 69 889 231 150 981 341 69 889 27 72 892 44 151 982 153 152 104 260 153 106 129 87 76 33 90 79 129 87 76 260 153 106 312 154 107 228 88 77 312 154 107 260 153 106 146 138 95 41 140 103 146 138 95 260 153 106 153 152 104 40 139 99 154 125 110 261 155 111 313 156 112 229 126 113 313 156 112 261 155 111 155 157 114 230 158 115 155 157 114 261 155 111 136 106 98 37 109 105 136 106 98 261 155 111 154 125 110 39 107 101 153 152 104 262 159 108 181 160 109 40 139 99 181 160 116 262 159 117 134 100 91 36 102 93 134 100 91 262 159 117 130 89 4 32 91 12 130 89 78 262 159 108 153 152 104 33 90 79 137 108 102 263 161 118 155 157 114 37 109 105 155 157 114 263 161 118 314 162 119 230 158 115 314 162 119 263 161 118 131 92 13 34 95 16 131 92 13 263 161 118 137 108 102 35 97 18 151 149 980 241 163 983 157 164 985 42 144 927 157 164 985 241 163 983 242 165 987 83 166 1012 159 167 1013 264 168 1016 160 169 1017 44 151 982 160 169 1017 264 168 1016 239 170 1018 81 171 1019 239 170 1018 264 168 1016 238 172 1020 82 173 1023 238 172 1020 264 168 1016 159 167 1013 43 141 924 82 173 1023 238 172 1020 157 164 985 83 166 1012 157 164 985 238 172 1020 43 141 924 42 144 927 160 169 1017 265 174 1036 231 150 981 44 151 982 231 150 981 265 174 1036 232 175 1038 30 82 902 232 175 1038 265 174 1036 237 176 1039 80 177 1040 237 176 1039 265 174 1036 160 169 1017 81 171 1019 94 14 61 163 178 1041 164 179 1042 9 15 62 165 180 1043 266 181 1045 166 182 1046 46 183 1047 166 182 1046 266 181 1045 163 178 1041 94 14 61 90 2 28 288 184 1048 207 185 1049 6 3 29 164 179 1042 167 186 1050 12 26 86 9 15 62 166 182 1046 267 187 1051 168 188 1052 46 183 1047 168 188 1052 267 187 1051 169 189 1053 47 190 1054 169 189 1053 267 187 1051 95 11 41 7 10 39 95 11 41 267 187 1051 166 182 1046 94 14 61 207 185 1049 287 191 1055 96 16 65 6 3 29 96 16 65 287 191 1055 206 192 1056 10 21 70 170 193 22 268 194 2246 171 195 24 63 196 25 171 195 24 268 194 2246 172 197 2247 58 198 27 172 197 1057 268 194 1058 173 199 1059 64 200 1060 173 199 1059 268 194 1058 170 193 1061 62 201 1062 172 197 2247 269 202 2248 174 203 32 58 198 27 174 203 32 269 202 2248 175 204 2249 61 205 34 175 204 1063 269 202 1064 176 206 1065 65 207 1066 176 206 1065 269 202 1064 172 197 1057 64 200 1060 175 204 2249 270 208 2250 177 209 38 61 205 34 177 209 38 270 208 2250 178 210 2251 66 211 40 178 210 1067 270 208 1068 179 212 1069 67 213 1070 179 212 1069 270 208 1068 175 204 1063 65 207 1066 180 214 1071 271 215 1072 149 145 928 25 73 893 149 145 928 271 215 1072 249 60 298 23 59 297 249 60 298 271 215 1072 48 216 1073 22 53 291 150 147 976 159 167 1013 44 151 982 27 72 892 159 167 1013 150 147 976 43 141 924 48 216 1073 272 217 1074 116 54 292 22 53 291 116 54 292 272 217 1074 49 218 1075 20 47 266 49 218 1075 273 219 1076 112 48 283 20 47 266 112 48 283 273 219 1076 50 220 1077 18 43 259 50 220 1077 274 221 1078 109 42 256 18 43 259 109 42 256 274 221 1078 51 222 1079 13 29 135 169 189 1053 275 223 1080 52 224 1081 47 190 1054 51 222 1079 275 223 1080 102 30 137 13 29 135 102 30 137 275 223 1080 169 189 1053 7 10 39 206 192 1056 286 225 1082 103 33 140 10 21 70 103 33 140 286 225 1082 53 226 1083 15 38 249 53 226 1083 276 227 1084 141 122 911 15 38 249 141 122 911 276 227 1084 54 228 1085 38 103 912 156 101 1086 277 229 1087 55 230 1088 36 102 1089 54 228 1085 277 229 1087 156 101 1086 38 103 912 55 230 1088 182 231 1090 181 160 1091 36 102 1089 181 160 1091 182 231 1090 56 132 918 40 139 1092 202 129 20 283 232 43 183 233 44 60 130 21 201 234 45 68 235 46 183 233 44 283 232 43 56 132 918 144 131 917 145 137 923 40 139 1092 144 131 917 321 236 1093 339 66 886 26 65 885 145 137 923 276 227 1084 2069 237 1094 2070 238 1095 54 228 1085 290 239 47 208 240 48 184 241 49 278 242 50 210 243 51 290 239 47 278 242 50 185 244 52 2068 245 1096 2069 237 1094 276 227 1084 53 226 1083 277 229 1087 2071 246 1097 2073 247 1098 55 230 1088 289 248 53 209 249 54 186 250 55 279 251 56 208 240 48 289 248 53 279 251 56 184 241 49 2070 238 1095 2071 246 1097 277 229 1087 54 228 1085 275 223 1080 2075 252 1099 2076 253 1100 52 224 1081 294 254 2265 212 255 58 2053 256 59 280 257 60 214 258 1101 294 254 1102 280 257 1103 187 259 1104 2074 260 1105 2075 252 1099 275 223 1080 51 222 1079 286 225 1082 2072 261 1106 2068 245 1096 53 226 1083 292 262 63 210 243 51 185 244 52 2052 263 64 274 221 1078 2078 264 1107 2074 260 1105 51 222 1079 293 265 1108 214 258 1101 187 259 1104 2055 266 1109 213 267 1110 293 265 1108 2055 266 1109 188 268 1111 2079 269 1112 2078 264 1107 274 221 1078 50 220 1077 273 219 1076 2080 270 1113 2079 269 1112 50 220 1077 295 271 1114 213 267 1110 188 268 1111 2056 272 1115 215 273 1116 295 271 1114 2056 272 1115 189 274 1117 2081 275 1118 2080 270 1113 273 219 1076 49 218 1075 271 215 1072 2084 276 1119 2085 277 1120 48 216 1073 297 278 1121 216 279 1122 190 280 1123 281 281 1124 217 282 87 297 278 73 281 281 2271 191 283 88 2083 284 1125 2084 276 1119 271 215 1072 180 214 1071 272 217 1074 2082 285 1126 2081 275 1118 49 218 1075 296 286 1127 215 273 1116 189 274 1117 2057 287 1128 216 279 1122 296 286 1127 2057 287 1128 190 280 1123 2085 277 1120 2082 285 1126 272 217 1074 48 216 1073 182 231 1090 2064 288 1129 2065 133 919 56 132 918 291 289 120 211 290 121 2051 291 122 2050 292 123 209 249 54 291 289 120 2050 292 123 186 250 55 2073 247 1098 2064 288 1129 182 231 1090 55 230 1088 211 290 121 298 293 124 282 294 125 2051 291 122 298 293 124 323 295 126 322 296 127 282 294 125 70 297 128 192 298 129 139 116 7 57 119 10 59 117 8 139 116 7 192 298 129 71 299 130 69 300 131 193 301 132 143 127 11 60 130 21 70 297 128 57 119 10 143 127 11 193 301 132 73 302 133 194 303 134 170 193 22 63 196 25 62 201 1062 170 193 1061 194 303 1130 74 304 1131 59 117 8 71 299 130 205 305 136 204 114 5 62 201 1062 74 304 1131 195 306 1132 173 199 1059 64 200 1060 173 199 1059 195 306 1132 75 307 1133 64 200 1060 75 307 1133 196 308 1134 176 206 1065 65 207 1066 176 206 1065 196 308 1134 76 309 1135 77 310 1136 197 311 1137 178 210 1067 67 213 1070 66 211 40 178 210 2251 197 311 2267 78 312 143 65 207 1066 76 309 1135 198 313 1138 179 212 1069 77 310 1136 67 213 1070 179 212 1069 198 313 1138 72 314 201 199 315 202 183 233 44 68 235 46 69 300 131 60 130 21 183 233 44 199 315 202 200 316 203 72 314 201 68 235 46 201 234 45 338 317 204 200 316 203 201 234 45 337 318 205 338 317 204 337 318 205 66 211 40 78 312 143 283 232 43 336 319 206 337 318 205 201 234 45 177 209 38 336 319 206 335 320 207 61 205 34 284 128 19 334 321 208 335 320 207 202 129 20 174 203 32 334 321 208 333 322 209 58 198 27 285 115 6 332 323 210 333 322 209 203 118 9 171 195 24 332 323 210 331 324 232 63 196 25 331 324 232 204 114 5 205 305 136 330 325 233 331 324 232 330 325 233 73 302 133 63 196 25 329 326 234 292 262 63 2052 263 64 2054 327 235 2076 253 1100 2077 328 1139 328 329 1140 52 224 1081 52 224 1081 328 329 1140 327 330 1141 47 190 1054 287 191 1055 326 331 1142 327 330 1141 206 192 1056 168 188 1052 326 331 1142 325 332 1143 46 183 1047 288 184 1048 324 333 1144 325 332 1143 207 185 1049 193 301 132 289 248 53 208 240 48 70 297 128 209 249 54 289 248 53 193 301 132 69 300 131 210 243 51 292 262 63 205 305 136 71 299 130 208 240 48 290 239 47 192 298 129 70 297 128 192 298 129 290 239 47 210 243 51 71 299 130 199 315 202 291 289 120 209 249 54 69 300 131 211 290 121 291 289 120 199 315 202 72 314 201 292 262 63 329 326 234 330 325 233 205 305 136 2053 256 59 212 255 58 329 326 234 2054 327 235 195 306 1132 293 265 1108 213 267 1110 75 307 1133 214 258 1101 293 265 1108 195 306 1132 74 304 1131 212 255 58 294 254 2265 194 303 134 73 302 133 194 303 1130 294 254 1102 214 258 1101 74 304 1131 213 267 1110 295 271 1114 196 308 1134 75 307 1133 196 308 1134 295 271 1114 215 273 1116 76 309 1135 215 273 1116 296 286 1127 198 313 1138 76 309 1135 198 313 1138 296 286 1127 216 279 1122 77 310 1136 323 295 126 217 282 87 191 283 88 322 296 127 217 282 87 323 295 126 338 317 204 78 312 143 216 279 1122 297 278 1121 197 311 1137 77 310 1136 197 311 2267 297 278 73 217 282 87 78 312 143 200 316 203 298 293 124 211 290 121 72 314 201 247 27 89 301 334 1145 220 335 1146 100 28 90 221 336 1147 301 334 1145 247 27 89 12 26 86 107 39 252 302 337 1148 222 338 1149 106 40 253 220 335 1146 302 337 1148 107 39 252 100 28 90 111 45 262 303 339 1150 223 340 1151 110 46 265 222 338 1149 303 339 1150 111 45 262 106 40 253 115 51 289 304 341 1152 224 342 1153 114 52 290 223 340 1151 304 341 1152 115 51 289 110 46 265 119 57 295 305 343 1154 225 344 1155 118 58 296 224 342 1153 305 343 1154 119 57 295 114 52 290 122 63 304 306 345 1156 226 346 1157 121 64 884 225 344 1155 306 345 1156 122 63 304 118 58 296 152 148 978 346 347 1158 345 348 1159 151 149 980 152 148 978 121 64 884 226 346 1157 346 347 1158 241 163 983 344 349 1160 343 350 1161 242 165 987 241 163 983 151 149 980 345 348 1159 344 349 1160 167 186 1050 315 351 1162 221 336 1147 12 26 86 232 175 1038 316 352 1163 127 80 900 30 82 902 127 80 900 316 352 1163 162 353 1164 45 81 901 162 353 1164 316 352 1163 235 354 1165 79 355 1166 235 354 1165 316 352 1163 232 175 1038 80 177 1040 234 356 1167 317 357 1168 235 354 1165 80 177 1040 235 354 1165 317 357 1168 233 358 1169 79 355 1166 233 358 1169 317 357 1168 87 359 1170 3 360 1171 87 359 1170 317 357 1168 234 356 1167 2 361 1172 236 362 1173 318 363 1174 237 176 1039 81 171 1019 237 176 1039 318 363 1174 234 356 1167 80 177 1040 234 356 1167 318 363 1174 86 364 1175 2 361 1172 86 364 1175 318 363 1174 236 362 1173 1 365 1176 239 170 1018 319 366 1177 236 362 1173 81 171 1019 236 362 1173 319 366 1177 85 367 1178 1 365 1176 85 367 1178 319 366 1177 161 368 1179 0 369 1180 161 368 1179 319 366 1177 239 170 1018 82 173 1023 0 369 1180 161 368 1179 240 370 1181 4 371 1182 240 370 1181 161 368 1179 82 173 1023 83 166 1012 242 165 987 158 372 1183 240 370 1181 83 166 1012 240 370 1181 158 372 1183 84 373 1184 4 371 1182 343 350 1161 342 374 1185 158 372 1183 242 165 987 158 372 1183 342 374 1185 88 375 1186 84 373 1184 144 131 917 2066 134 920 2067 376 1187 321 236 1093 339 66 886 321 236 1093 180 214 1071 25 73 893 2067 376 1187 2083 284 1125 180 214 1071 321 236 1093 46 183 1047 325 332 1143 324 333 1144 165 180 1043 207 185 1049 325 332 1143 326 331 1142 287 191 1055 47 190 1054 327 330 1141 326 331 1142 168 188 1052 206 192 1056 327 330 1141 328 329 1140 286 225 1082 286 225 1082 328 329 1140 2077 328 1139 2072 261 1106 73 302 133 330 325 233 329 326 234 212 255 58 204 114 5 331 324 232 332 323 210 285 115 6 58 198 27 333 322 209 332 323 210 171 195 24 203 118 9 333 322 209 334 321 208 284 128 19 61 205 34 335 320 207 334 321 208 174 203 32 202 129 20 335 320 207 336 319 206 283 232 43 66 211 40 337 318 205 336 319 206 177 209 38 200 316 203 338 317 204 323 295 126 298 293 124 299 8 36 218 9 37 2022 377 1188 2017 378 1189 218 9 37 300 23 72 2021 379 1190 2022 377 1188 300 23 72 219 25 85 2023 380 1191 2021 379 1190 220 335 1146 301 334 1145 674 381 1192 592 382 1193 301 334 1145 221 336 1147 593 383 1194 674 381 1192 222 338 1149 302 337 1148 675 384 1195 594 385 1196 302 337 1148 220 335 1146 592 382 1193 675 384 1195 223 340 1151 303 339 1150 676 386 1197 595 387 1198 303 339 1150 222 338 1149 594 385 1196 676 386 1197 224 342 1153 304 341 1152 677 388 1199 596 389 1200 304 341 1152 223 340 1151 595 387 1198 677 388 1199 225 344 1155 305 343 1154 678 390 1201 597 391 1202 305 343 1154 224 342 1153 596 389 1200 678 390 1201 226 346 1157 306 345 1156 679 392 1203 598 393 1204 306 345 1156 225 344 1155 597 391 1202 679 392 1203 2036 394 1205 2037 395 1206 680 396 1207 599 397 1208 2037 395 1206 2038 398 1209 600 399 1210 680 396 1207 2038 398 1209 2039 400 1211 608 401 1212 600 399 1210 31 86 3 308 85 2 2019 402 144 2033 403 2261 602 404 148 681 405 149 2019 402 2264 2020 406 2259 34 95 16 309 94 15 2032 407 2262 2031 408 2252 309 94 15 31 86 3 2033 403 2261 2032 407 2262 219 25 85 310 111 904 2024 409 1213 2023 380 1191 684 410 1214 604 411 1215 2025 412 1216 2026 413 1217 2034 414 2258 2035 415 2260 685 416 158 605 417 159 2035 415 1218 2036 394 1205 599 397 1208 685 416 1219 345 348 1159 346 347 1158 1971 418 1220 1970 419 1221 346 347 1158 226 346 1157 598 393 1204 1971 418 1220 2020 406 2259 2016 420 2257 686 421 161 602 404 148 2016 420 2257 2034 414 2258 605 417 159 686 421 161 229 126 113 313 156 112 2028 422 2255 2027 423 2256 313 156 112 230 158 115 2029 424 2254 2028 422 2255 230 158 115 314 162 119 2030 425 2253 2029 424 2254 314 162 119 34 95 16 2031 408 2252 2030 425 2253 343 350 1161 344 349 1160 1969 426 1222 1968 427 1223 344 349 1160 345 348 1159 1970 419 1221 1969 426 1222 2039 400 1211 2040 428 1224 689 429 1225 608 401 1212 2040 428 1224 2041 430 1226 612 431 1227 689 429 1225 221 336 1147 315 351 1162 690 432 1228 593 383 1194 2041 430 1226 2042 433 1229 692 434 1230 612 431 1227 2042 433 1229 2043 435 1231 434 436 1232 692 434 1230 88 375 1186 342 374 1185 1967 437 1233 435 438 1234 342 374 1185 343 350 1161 1968 427 1223 1967 437 1233 436 439 1235 353 440 1236 437 441 1237 622 442 1238 438 443 1239 352 444 1240 436 439 1235 622 442 1238 439 445 1241 352 444 1240 438 443 1239 623 446 1242 440 447 1243 354 448 1244 439 445 1241 623 446 1242 355 449 1245 356 450 1246 441 451 1247 443 452 1248 441 451 1247 357 453 1249 442 454 1250 443 452 1248 444 455 1251 353 440 1236 436 439 1235 624 456 1252 436 439 1235 352 444 1240 445 457 1253 624 456 1252 445 457 1253 359 458 1254 446 459 1255 624 456 1252 446 459 1255 358 460 1256 444 455 1251 624 456 1252 445 457 1253 352 444 1240 439 445 1241 625 461 1257 439 445 1241 354 448 1244 447 462 1258 625 461 1257 447 462 1258 360 463 1259 448 464 1260 625 461 1257 448 464 1260 359 458 1254 445 457 1253 625 461 1257 361 465 1261 357 453 1249 441 451 1247 626 466 1262 441 451 1247 356 450 1246 449 467 1263 626 466 1262 362 468 1264 363 469 1265 450 470 1266 451 471 1267 450 470 1266 356 450 1246 355 449 1245 451 471 1267 452 472 1268 358 460 1256 446 459 1255 627 473 1269 446 459 1255 359 458 1254 453 474 1270 627 473 1269 453 474 1270 365 475 1271 454 476 1272 627 473 1269 454 476 1272 364 477 1273 452 472 1268 627 473 1269 449 467 1263 356 450 1246 450 470 1266 456 478 1274 450 470 1266 363 469 1265 455 479 1275 456 478 1274 457 480 1276 363 469 1265 362 468 1264 458 481 1277 367 482 1278 366 483 1279 457 480 1276 458 481 1277 455 479 1275 363 469 1265 457 480 1276 460 484 1280 457 480 1276 366 483 1279 459 485 1281 460 484 1280 369 486 1282 368 487 1283 462 488 1284 461 489 1285 462 488 1284 366 483 1279 367 482 1278 461 489 1285 459 485 1281 366 483 1279 462 488 1284 464 490 1286 462 488 1284 368 487 1283 463 491 1287 464 490 1286 371 492 1288 370 493 1289 466 494 1290 465 495 1291 466 494 1290 368 487 1283 369 486 1282 465 495 1291 463 491 1287 368 487 1283 466 494 1290 468 496 1292 466 494 1290 370 493 1289 467 497 1293 468 496 1292 372 498 1294 373 499 1295 469 500 1296 628 501 1297 469 500 1296 370 493 1289 371 492 1288 628 501 1297 467 497 1293 370 493 1289 469 500 1296 471 502 1298 469 500 1296 373 499 1295 470 503 1299 471 502 1298 375 504 1300 472 505 1301 1965 506 1302 1964 507 1303 472 505 1301 377 508 1304 1966 509 1305 1965 506 1302 1966 509 1305 376 510 1306 473 511 1307 1965 506 1302 473 511 1307 374 512 1308 1964 507 1303 1965 506 1302 474 513 1309 378 514 1310 475 515 1311 629 516 1312 475 515 1311 379 517 1313 476 518 1314 629 516 1312 476 518 1314 377 508 1304 472 505 1301 629 516 1312 472 505 1301 375 504 1300 474 513 1309 629 516 1312 476 518 1314 379 517 1313 399 519 1315 477 520 1316 476 518 1314 477 520 1316 380 521 1317 377 508 1304 478 522 162 381 523 163 479 524 164 630 525 165 479 524 174 382 526 175 480 527 176 630 525 177 480 527 176 384 528 178 481 529 179 630 525 177 481 529 166 383 530 167 478 522 162 630 525 165 482 531 168 385 532 169 483 533 170 631 534 171 483 533 170 381 523 163 478 522 162 631 534 171 478 522 162 383 530 167 484 535 172 631 534 171 484 535 172 386 536 173 482 531 168 631 534 171 485 537 180 386 536 173 484 535 172 632 538 181 484 535 172 383 530 167 486 539 182 632 538 181 486 539 182 387 540 183 511 541 184 632 538 181 511 541 184 390 542 185 485 537 180 632 538 181 487 543 186 391 544 187 488 545 188 633 546 189 488 545 188 388 547 190 489 548 191 633 546 189 489 548 191 386 536 173 485 537 180 633 546 189 485 537 180 390 542 185 487 543 186 633 546 189 453 474 1270 359 458 1254 448 464 1260 634 549 1318 448 464 1260 360 463 1259 490 550 1319 634 549 1318 490 550 1319 389 551 1320 491 552 1321 634 549 1318 491 552 1321 365 475 1271 453 474 1270 634 549 1318 575 553 236 405 554 237 492 555 238 659 556 239 492 555 238 403 557 240 574 558 241 659 556 239 454 476 1272 365 475 1271 493 559 1322 635 560 1323 493 559 1322 391 544 1324 487 543 1325 635 560 1323 487 543 1325 390 542 1326 494 561 1327 635 560 1323 494 561 1327 364 477 1273 454 476 1272 635 560 1323 491 552 1321 389 551 1320 495 562 1328 636 563 1329 495 562 1328 392 564 1330 508 565 1331 636 563 1329 508 565 1331 391 544 1324 493 559 1322 636 563 1329 493 559 1322 365 475 1271 491 552 1321 636 563 1329 496 566 242 406 567 243 573 568 244 658 569 245 574 558 241 403 557 240 496 566 242 658 569 245 651 570 1332 2087 571 1333 2088 572 1334 552 573 1335 497 574 1336 378 514 1310 474 513 1309 637 575 1337 474 513 1309 375 504 1300 498 576 1338 637 575 1337 498 576 211 394 577 212 499 578 213 637 575 214 499 578 213 395 579 215 497 574 216 637 575 214 397 580 1339 396 581 1340 501 582 1341 500 583 1342 501 582 1341 373 499 1295 372 498 1294 500 583 1342 502 584 1343 374 512 1308 473 511 1307 638 585 1344 473 511 1307 376 510 1306 503 586 1345 638 585 1344 503 586 1345 397 580 1339 500 583 1342 638 585 1344 500 583 1342 372 498 1294 502 584 1343 638 585 1344 470 503 1299 373 499 1295 501 582 1341 505 587 1346 501 582 1341 396 581 1340 504 588 1347 505 587 1346 609 589 1348 1966 509 1305 377 508 1304 380 521 1317 609 589 1348 398 590 1349 376 510 1306 1966 509 1305 506 591 217 384 528 178 480 527 176 639 592 218 480 527 176 382 526 175 507 593 219 639 592 218 507 593 219 395 579 215 499 578 213 639 592 218 499 578 213 394 577 212 506 591 217 639 592 218 508 565 192 392 564 193 509 594 194 640 595 195 509 594 194 400 596 196 510 597 197 640 595 195 510 597 197 388 547 190 488 545 188 640 595 195 488 545 188 391 544 187 508 565 192 640 595 195 506 591 217 394 577 212 538 598 226 641 599 227 538 598 198 387 540 183 486 539 182 641 599 199 486 539 182 383 530 167 481 529 166 641 599 199 481 529 179 384 528 178 506 591 217 641 599 227 489 548 191 388 547 190 510 597 197 642 600 220 510 597 197 400 596 196 512 601 221 642 600 220 512 601 221 385 532 169 482 531 168 642 600 220 482 531 168 386 536 173 489 548 191 642 600 220 504 588 1347 396 581 1340 513 602 1350 620 603 1351 513 602 1350 429 604 1352 621 605 1353 620 603 1351 515 606 1354 398 590 1349 516 607 1355 643 608 1356 516 607 1355 427 609 1357 618 610 1358 643 608 1356 618 610 1358 428 611 1359 617 612 1360 643 608 1356 617 612 1360 397 580 1339 515 606 1354 643 608 1356 428 611 1359 429 604 1352 513 602 1350 617 612 1360 513 602 1350 396 581 1340 397 580 1339 617 612 1360 516 607 1355 398 590 1349 609 589 1348 644 613 1361 609 589 1348 380 521 1317 610 614 1362 644 613 1361 610 614 1362 426 615 1363 616 616 1364 644 613 1361 616 616 1364 427 609 1357 516 607 1355 644 613 1361 442 454 1250 357 453 1249 520 617 1365 519 618 1366 521 619 1367 401 620 1368 522 621 1369 645 622 1370 522 621 1369 442 454 1250 519 618 1366 645 622 1370 437 441 1237 353 440 1236 579 623 1371 661 624 1372 520 617 1365 357 453 1249 361 465 1261 523 625 1373 522 621 1369 401 620 1368 524 626 1374 646 627 1375 524 626 1374 402 628 1376 525 629 1377 646 627 1375 525 629 1377 355 449 1245 443 452 1248 646 627 1375 443 452 1248 442 454 1250 522 621 1369 646 627 1375 579 623 1371 353 440 1236 444 455 1251 660 630 1378 444 455 1251 358 460 1256 578 631 1379 660 630 1378 526 632 2273 409 633 247 527 634 248 647 635 2268 527 634 248 404 636 250 528 637 251 647 635 2268 528 637 1380 410 638 1381 529 639 1382 647 635 1383 529 639 1382 408 640 1384 526 632 1385 647 635 1383 528 637 251 404 636 250 530 641 255 648 642 2269 530 641 255 407 643 257 531 644 258 648 642 2269 531 644 1386 411 645 1387 532 646 1388 648 642 1389 532 646 1388 410 638 1381 528 637 1380 648 642 1389 531 644 258 407 643 257 533 647 261 649 648 2272 533 647 261 412 649 263 534 650 264 649 648 2272 534 650 1390 413 651 1391 535 652 1392 649 648 1393 535 652 1392 411 645 1387 531 644 1386 649 648 1393 393 653 1394 374 512 1308 502 584 1343 537 654 1395 502 584 1343 372 498 1294 628 501 1297 537 654 1395 628 501 1297 371 492 1288 536 655 1396 537 654 1395 503 586 1345 376 510 1306 398 590 1349 515 606 1354 515 606 1354 397 580 1339 503 586 1345 536 655 1396 371 492 1288 465 495 1291 540 656 1397 465 495 1291 369 486 1282 539 657 1398 540 656 1397 539 657 1398 369 486 1282 461 489 1285 542 658 1399 461 489 1285 367 482 1278 541 659 1400 542 658 1399 541 659 1400 367 482 1278 458 481 1277 544 660 1401 458 481 1277 362 468 1264 543 661 1402 544 660 1401 525 629 1377 402 628 1376 545 662 1403 546 663 1404 543 661 1402 362 468 1264 451 471 1267 546 663 1404 451 471 1267 355 449 1245 525 629 1377 546 663 1404 578 631 1379 358 460 1256 452 472 1268 577 664 1405 452 472 1268 364 477 1273 547 665 1406 577 664 1405 547 665 1406 364 477 1273 494 561 1327 549 666 1407 494 561 1327 390 542 1326 548 667 1408 549 666 1407 511 541 1409 387 540 1410 550 668 1411 551 669 1412 548 667 1408 390 542 1326 511 541 1409 551 669 1412 550 668 1411 387 540 1410 538 598 1413 650 670 1414 538 598 1413 394 577 1415 552 573 1335 650 670 1414 573 568 244 406 567 243 553 671 267 657 672 268 572 673 269 657 672 268 553 671 267 414 674 270 552 573 1335 394 577 1415 498 576 1338 651 570 1332 651 570 1332 498 576 1338 375 504 1300 1964 507 1303 1945 675 1416 549 666 1407 548 667 1408 2091 676 1417 2092 677 1418 580 678 271 663 679 272 652 680 273 554 681 274 663 679 272 582 682 275 555 683 276 652 680 273 2093 684 1419 547 665 1406 549 666 1407 2092 677 1418 551 669 1412 550 668 1411 2095 685 1420 2090 686 1421 581 687 277 662 688 278 653 689 279 556 690 280 662 688 278 580 678 271 554 681 274 653 689 279 2091 676 1417 548 667 1408 551 669 1412 2090 686 1421 546 663 1404 545 662 1403 2097 691 1422 2098 692 1423 584 693 281 667 694 282 654 695 2270 557 696 284 667 694 1424 586 697 1425 558 698 1426 654 695 1427 2099 699 1428 543 661 1402 546 663 1404 2098 692 1423 577 664 1405 547 665 1406 2093 684 1419 2094 700 1429 582 682 275 665 701 287 2060 702 288 555 683 276 544 660 1401 543 661 1402 2099 699 1428 2100 703 1430 586 697 1425 666 704 1431 2061 705 1432 558 698 1426 666 704 1431 585 706 1433 559 707 1434 2061 705 1432 2101 708 1435 541 659 1400 544 660 1401 2100 703 1430 542 658 1399 541 659 1400 2101 708 1435 2102 709 1436 585 706 1433 668 710 1437 2062 711 1438 559 707 1434 668 710 1437 587 712 1439 560 713 1440 2062 711 1438 2103 714 1441 539 657 1398 542 658 1399 2102 709 1436 537 654 1395 536 655 1396 2105 715 1442 2106 716 1443 588 717 1444 670 718 1445 655 719 1446 561 720 1447 670 718 2275 589 721 301 562 722 302 655 719 299 2107 723 1448 393 653 1394 537 654 1395 2106 716 1443 540 656 1397 539 657 1398 2103 714 1441 2104 724 1449 587 712 1439 669 725 1450 2063 726 1451 560 713 1440 669 725 1450 588 717 1444 561 720 1447 2063 726 1451 2105 715 1442 536 655 1396 540 656 1397 2104 724 1449 650 670 1414 552 573 1335 2088 572 1334 2089 727 1452 583 728 305 664 729 306 2059 730 307 2058 731 308 664 729 306 581 687 277 556 690 280 2059 730 307 2095 685 1420 550 668 1411 650 670 1414 2089 727 1452 671 732 309 583 728 305 2058 731 308 656 733 310 1947 734 311 671 732 309 656 733 310 1946 735 970 563 736 971 416 737 972 403 557 240 492 555 238 563 736 971 492 555 238 405 554 237 417 738 973 564 739 974 415 740 975 406 567 243 496 566 242 564 739 974 496 566 242 403 557 240 416 737 972 565 741 2274 419 742 977 409 633 247 526 632 2273 565 741 1453 526 632 1385 408 640 1384 420 743 1454 576 744 979 417 738 973 405 554 237 575 553 236 566 745 1455 420 743 1454 408 640 1384 529 639 1382 566 745 1455 529 639 1382 410 638 1381 421 746 1456 567 747 1457 421 746 1456 410 638 1381 532 646 1388 567 747 1457 532 646 1388 411 645 1387 422 748 1458 568 749 1459 423 750 1460 413 651 1391 534 650 1390 568 749 984 534 650 264 412 649 263 424 751 986 569 752 1461 422 748 1458 411 645 1387 535 652 1392 569 752 1461 535 652 1392 413 651 1391 423 750 1460 570 753 988 418 754 989 414 674 270 553 671 267 570 753 988 553 671 267 406 567 243 415 740 975 414 674 270 418 754 989 571 755 990 572 673 269 572 673 269 571 755 990 1963 756 991 1962 757 992 424 751 986 412 649 263 1962 757 992 1963 756 991 657 672 268 572 673 269 1962 757 992 1961 758 993 533 647 261 407 643 257 1960 759 994 1961 758 993 658 569 245 573 568 244 1960 759 994 1959 760 995 530 641 255 404 636 250 1958 761 996 1959 760 995 659 556 239 574 558 241 1958 761 996 1957 762 997 527 634 248 409 633 247 1956 763 998 1957 762 997 576 744 979 575 553 236 1956 763 998 1955 764 999 409 633 247 419 742 977 1955 764 999 1956 763 998 2060 702 288 665 701 287 1954 765 1000 1953 766 1001 2097 691 1422 545 662 1403 1952 767 1462 2096 768 1463 545 662 1403 402 628 1376 1951 769 1464 1952 767 1462 660 630 1378 578 631 1379 1951 769 1464 1950 770 1465 524 626 1374 401 620 1368 1949 771 1466 1950 770 1465 661 624 1372 579 623 1371 1949 771 1466 1948 772 1467 564 739 974 416 737 972 580 678 271 662 688 278 581 687 277 415 740 975 564 739 974 662 688 278 582 682 275 417 738 973 576 744 979 665 701 287 580 678 271 416 737 972 563 736 971 663 679 272 563 736 971 417 738 973 582 682 275 663 679 272 570 753 988 415 740 975 581 687 277 664 729 306 583 728 305 418 754 989 570 753 988 664 729 306 665 701 287 576 744 979 1955 764 999 1954 765 1000 1954 765 1000 584 693 281 557 696 284 1953 766 1001 566 745 1455 421 746 1456 585 706 1433 666 704 1431 586 697 1425 420 743 1454 566 745 1455 666 704 1431 584 693 281 419 742 977 565 741 2274 667 694 282 565 741 1453 420 743 1454 586 697 1425 667 694 1424 585 706 1433 421 746 1456 567 747 1457 668 710 1437 567 747 1457 422 748 1458 587 712 1439 668 710 1437 587 712 1439 422 748 1458 569 752 1461 669 725 1450 569 752 1461 423 750 1460 588 717 1444 669 725 1450 589 721 301 1947 734 311 1946 735 970 562 722 302 589 721 301 424 751 986 1963 756 991 1947 734 311 588 717 1444 423 750 1460 568 749 1459 670 718 1445 568 749 984 424 751 986 589 721 301 670 718 2275 571 755 990 418 754 989 583 728 305 671 732 309 590 773 1468 354 448 1244 440 447 1243 672 774 1469 447 462 1258 354 448 1244 590 773 1468 673 775 1470 591 776 1471 360 463 1259 447 462 1258 673 775 1470 626 466 1262 449 467 1263 592 382 1193 674 381 1192 593 383 1194 361 465 1261 626 466 1262 674 381 1192 456 478 1274 455 479 1275 594 385 1196 675 384 1195 592 382 1193 449 467 1263 456 478 1274 675 384 1195 460 484 1280 459 485 1281 595 387 1198 676 386 1197 594 385 1196 455 479 1275 460 484 1280 676 386 1197 464 490 1286 463 491 1287 596 389 1200 677 388 1199 595 387 1198 459 485 1281 464 490 1286 677 388 1199 468 496 1292 467 497 1293 597 391 1202 678 390 1201 596 389 1200 463 491 1287 468 496 1292 678 390 1201 471 502 1298 470 503 1299 598 393 1204 679 392 1203 597 391 1202 467 497 1293 471 502 1298 679 392 1203 475 515 1311 378 514 1310 599 397 1208 680 396 1207 600 399 1210 379 517 1313 475 515 1311 680 396 1207 399 519 1315 379 517 1313 600 399 1210 608 401 1212 479 524 164 381 523 163 601 777 222 681 405 223 602 404 148 382 526 175 479 524 174 681 405 149 483 533 170 385 532 169 603 778 224 682 779 225 601 777 222 381 523 163 483 533 170 682 779 225 490 550 1319 360 463 1259 591 776 1471 683 780 1472 604 411 1215 389 551 1320 490 550 1319 683 780 1472 495 562 1328 389 551 1320 604 411 1215 684 410 1214 606 781 1473 392 564 1330 495 562 1328 684 410 1214 497 574 216 395 579 215 605 417 159 685 416 158 599 397 1208 378 514 1310 497 574 1336 685 416 1219 505 587 1346 504 588 1347 1970 419 1221 1971 418 1220 505 587 1346 1971 418 1220 598 393 1204 470 503 1299 507 593 219 382 526 175 602 404 148 686 421 161 605 417 159 395 579 215 507 593 219 686 421 161 509 594 194 392 564 193 606 781 228 687 782 229 607 783 230 400 596 196 509 594 194 687 782 229 512 601 221 400 596 196 607 783 230 688 784 231 603 778 224 385 532 169 512 601 221 688 784 231 620 603 1351 621 605 1353 1968 427 1223 1969 426 1222 620 603 1351 1969 426 1222 1970 419 1221 504 588 1347 518 785 1474 399 519 1315 608 401 1212 689 429 1225 612 431 1227 425 786 1475 518 785 1474 689 429 1225 523 625 1373 361 465 1261 593 383 1194 690 432 1228 610 614 1362 380 521 1317 477 520 1316 691 787 1476 477 520 1316 399 519 1315 518 785 1474 691 787 1476 518 785 1474 425 786 1475 614 788 1477 691 787 1476 614 788 1477 426 615 1363 610 614 1362 691 787 1476 611 789 1478 425 786 1475 612 431 1227 692 434 1230 434 436 1232 350 790 1479 611 789 1478 692 434 1230 613 791 1480 426 615 1363 614 788 1477 693 792 1481 614 788 1477 425 786 1475 611 789 1478 693 792 1481 611 789 1478 350 790 1479 433 793 1482 693 792 1481 433 793 1482 349 794 1483 613 791 1480 693 792 1481 615 795 1484 427 609 1357 616 616 1364 694 796 1485 616 616 1364 426 615 1363 613 791 1480 694 796 1485 613 791 1480 349 794 1483 432 797 1486 694 796 1485 432 797 1486 348 798 1487 615 795 1484 694 796 1485 618 610 1358 427 609 1357 615 795 1484 695 799 1488 615 795 1484 348 798 1487 431 800 1489 695 799 1488 431 800 1489 347 801 1490 517 802 1491 695 799 1488 517 802 1491 428 611 1359 618 610 1358 695 799 1488 347 801 1490 351 803 1492 619 804 1493 517 802 1491 619 804 1493 429 604 1352 428 611 1359 517 802 1491 621 605 1353 429 604 1352 619 804 1493 514 805 1494 619 804 1493 351 803 1492 430 806 1495 514 805 1494 1968 427 1223 621 605 1353 514 805 1494 1967 437 1233 514 805 1494 430 806 1495 435 438 1234 1967 437 1233 696 807 1496 697 808 1497 710 809 1498 709 810 1499 697 808 1497 698 811 1500 711 812 1501 710 809 1498 698 811 1500 699 813 1502 712 814 1503 711 812 1501 699 813 1502 700 815 1504 713 816 1505 712 814 1503 700 815 1504 701 817 1506 714 818 1507 713 816 1505 701 817 1506 702 819 1508 715 820 1509 714 818 1507 702 819 1508 703 821 1510 716 822 1511 715 820 1509 703 821 1510 704 823 1512 717 824 1513 716 822 1511 704 823 1512 705 825 1514 718 826 1515 717 824 1513 705 825 1514 706 827 1516 719 828 1517 718 826 1515 706 827 1516 707 829 1518 720 830 1519 719 828 1517 707 829 1518 1331 831 1520 721 832 1521 720 830 1519 708 833 1522 722 834 1523 1979 835 1524 1980 836 1525 709 810 1499 710 809 1498 724 837 1526 723 838 1527 710 809 1498 711 812 1501 725 839 1528 724 837 1526 711 812 1501 712 814 1503 726 840 1529 725 839 1528 712 814 1503 713 816 1505 727 841 1530 726 840 1529 713 816 1505 714 818 1507 728 842 1531 727 841 1530 714 818 1507 715 820 1509 729 843 1532 728 842 1531 715 820 1509 716 822 1511 730 844 1533 729 843 1532 716 822 1511 717 824 1513 731 845 1534 730 844 1533 717 824 1513 718 826 1515 732 846 1535 731 845 1534 718 826 1515 719 828 1517 733 847 1536 732 846 1535 719 828 1517 720 830 1519 734 848 1537 733 847 1536 1333 849 1538 721 832 1521 1979 835 1524 1982 850 1539 723 838 1527 724 837 1526 737 851 1540 736 852 1541 724 837 1526 725 839 1528 738 853 1542 737 851 1540 725 839 1528 726 840 1529 739 854 1543 738 853 1542 726 840 1529 727 841 1530 740 855 1544 739 854 1543 727 841 1530 728 842 1531 741 856 1545 740 855 1544 728 842 1531 729 843 1532 742 857 1546 741 856 1545 729 843 1532 730 844 1533 743 858 1547 742 857 1546 730 844 1533 731 845 1534 744 859 1548 743 858 1547 731 845 1534 732 846 1535 745 860 1549 744 859 1548 732 846 1535 733 847 1536 746 861 1550 745 860 1549 733 847 1536 734 848 1537 747 862 1551 746 861 1550 1334 863 1552 1333 849 1538 1982 850 1539 1983 864 1553 736 852 1541 737 851 1540 750 865 1554 749 866 1555 737 851 1540 738 853 1542 751 867 1556 750 865 1554 738 853 1542 739 854 1543 752 868 1557 751 867 1556 739 854 1543 740 855 1544 753 869 1558 752 868 1557 740 855 1544 741 856 1545 754 870 1559 753 869 1558 741 856 1545 742 857 1546 755 871 1560 754 870 1559 742 857 1546 743 858 1547 756 872 1561 755 871 1560 743 858 1547 744 859 1548 757 873 1562 756 872 1561 744 859 1548 745 860 1549 758 874 1563 757 873 1562 745 860 1549 746 861 1550 759 875 1564 758 874 1563 746 861 1550 747 862 1551 760 876 1565 759 875 1564 1335 877 1566 1334 863 1552 1983 864 1553 1984 878 1567 749 866 1555 750 865 1554 763 879 1568 762 880 1569 750 865 1554 751 867 1556 764 881 1570 763 879 1568 751 867 1556 752 868 1557 765 882 1571 764 881 1570 752 868 1557 753 869 1558 766 883 1572 765 882 1571 753 869 1558 754 870 1559 767 884 1573 766 883 1572 754 870 1559 755 871 1560 768 885 1574 767 884 1573 755 871 1560 756 872 1561 769 886 1575 768 885 1574 756 872 1561 757 873 1562 770 887 1576 769 886 1575 757 873 1562 758 874 1563 771 888 1577 770 887 1576 758 874 1563 759 875 1564 772 889 1578 771 888 1577 759 875 1564 760 876 1565 773 890 1579 772 889 1578 1336 891 1580 1335 877 1566 1984 878 1567 1981 892 1581 762 880 1569 763 879 1568 776 893 1582 775 894 1583 763 879 1568 764 881 1570 777 895 1584 776 893 1582 764 881 1570 765 882 1571 778 896 1585 777 895 1584 765 882 1571 766 883 1572 779 897 1586 778 896 1585 766 883 1572 767 884 1573 780 898 1587 779 897 1586 767 884 1573 768 885 1574 781 899 1588 780 898 1587 768 885 1574 769 886 1575 782 900 1589 781 899 1588 769 886 1575 770 887 1576 783 901 1590 782 900 1589 770 887 1576 771 888 1577 784 902 1591 783 901 1590 771 888 1577 772 889 1578 785 903 1592 784 902 1591 772 889 1578 773 890 1579 786 904 1593 785 903 1592 2 361 1172 1336 891 1580 1981 892 1581 87 359 1170 775 894 1583 776 893 1582 788 905 1594 787 906 1595 776 893 1582 777 895 1584 789 907 1596 788 905 1594 777 895 1584 778 896 1585 790 908 1597 789 907 1596 778 896 1585 779 897 1586 791 909 1598 790 908 1597 779 897 1586 780 898 1587 792 910 1599 791 909 1598 780 898 1587 781 899 1588 793 911 1600 792 910 1599 781 899 1588 782 900 1589 794 912 1601 793 911 1600 782 900 1589 783 901 1590 795 913 1602 794 912 1601 783 901 1590 784 902 1591 796 914 1603 795 913 1602 784 902 1591 785 903 1592 797 915 1604 796 914 1603 785 903 1592 786 904 1593 798 916 1605 797 915 1604 787 906 1595 788 905 1594 800 917 1606 799 918 1607 788 905 1594 789 907 1596 801 919 1608 800 917 1606 789 907 1596 790 908 1597 802 920 1609 801 919 1608 790 908 1597 791 909 1598 803 921 1610 802 920 1609 791 909 1598 792 910 1599 804 922 1611 803 921 1610 792 910 1599 793 911 1600 805 923 1612 804 922 1611 793 911 1600 794 912 1601 806 924 1613 805 923 1612 794 912 1601 795 913 1602 807 925 1614 806 924 1613 795 913 1602 796 914 1603 808 926 1615 807 925 1614 796 914 1603 797 915 1604 809 927 1616 808 926 1615 797 915 1604 798 916 1605 810 928 1617 809 927 1616 799 918 1607 800 917 1606 812 929 1618 811 930 1619 800 917 1606 801 919 1608 813 931 1620 812 929 1618 801 919 1608 802 920 1609 814 932 1621 813 931 1620 802 920 1609 803 921 1610 815 933 1622 814 932 1621 803 921 1610 804 922 1611 816 934 1623 815 933 1622 804 922 1611 805 923 1612 817 935 1624 816 934 1623 805 923 1612 806 924 1613 818 936 1625 817 935 1624 806 924 1613 807 925 1614 819 937 1626 818 936 1625 807 925 1614 808 926 1615 820 938 1627 819 937 1626 808 926 1615 809 927 1616 821 939 1628 820 938 1627 809 927 1616 810 928 1617 822 940 1629 821 939 1628 811 930 1619 812 929 1618 824 941 1630 823 942 1631 812 929 1618 813 931 1620 825 943 1632 824 941 1630 813 931 1620 814 932 1621 826 944 1633 825 943 1632 814 932 1621 815 933 1622 827 945 1634 826 944 1633 815 933 1622 816 934 1623 828 946 1635 827 945 1634 816 934 1623 817 935 1624 829 947 1636 828 946 1635 817 935 1624 818 936 1625 830 948 1637 829 947 1636 818 936 1625 819 937 1626 831 949 1638 830 948 1637 819 937 1626 820 938 1627 832 950 1639 831 949 1638 820 938 1627 821 939 1628 833 951 1640 832 950 1639 821 939 1628 822 940 1629 834 952 1641 833 951 1640 823 942 1631 824 941 1630 835 953 1642 846 954 1643 824 941 1630 825 943 1632 836 955 1644 835 953 1642 825 943 1632 826 944 1633 837 956 1645 836 955 1644 826 944 1633 827 945 1634 838 957 1646 837 956 1645 827 945 1634 828 946 1635 839 958 1647 838 957 1646 828 946 1635 829 947 1636 840 959 1648 839 958 1647 829 947 1636 830 948 1637 841 960 1649 840 959 1648 830 948 1637 831 949 1638 842 961 1650 841 960 1649 831 949 1638 832 950 1639 843 962 1651 842 961 1650 832 950 1639 833 951 1640 844 963 1652 843 962 1651 833 951 1640 834 952 1641 845 964 1653 844 963 1652 846 954 1643 835 953 1642 848 965 1654 847 966 1655 835 953 1642 836 955 1644 849 967 1656 848 965 1654 836 955 1644 837 956 1645 850 968 1657 849 967 1656 837 956 1645 838 957 1646 851 969 1658 850 968 1657 838 957 1646 839 958 1647 852 970 1659 851 969 1658 839 958 1647 840 959 1648 853 971 1660 852 970 1659 840 959 1648 841 960 1649 854 972 1661 853 971 1660 841 960 1649 842 961 1650 855 973 1662 854 972 1661 842 961 1650 843 962 1651 856 974 1663 855 973 1662 843 962 1651 844 963 1652 857 975 1664 856 974 1663 844 963 1652 845 964 1653 858 976 1665 857 975 1664 847 966 1655 848 965 1654 860 977 1666 859 978 1667 848 965 1654 849 967 1656 861 979 1668 860 977 1666 849 967 1656 850 968 1657 862 980 1669 861 979 1668 853 971 1660 854 972 1661 863 981 1670 854 972 1661 855 973 1662 864 982 1671 863 981 1670 855 973 1662 856 974 1663 865 983 1672 864 982 1671 856 974 1663 857 975 1664 866 984 1673 865 983 1672 857 975 1664 858 976 1665 867 985 1674 866 984 1673 859 978 1667 860 977 1666 869 986 1675 868 987 1676 860 977 1666 861 979 1668 870 988 1677 869 986 1675 868 987 1676 869 986 1675 872 989 1678 871 990 1679 869 986 1675 870 988 1677 873 991 1680 872 989 1678 875 992 1681 874 993 1682 864 982 1671 865 983 1672 865 983 1672 866 984 1673 876 994 1683 875 992 1681 866 984 1673 867 985 1674 877 995 1684 876 994 1683 871 990 1679 872 989 1678 879 996 1685 878 997 1686 872 989 1678 873 991 1680 880 998 1687 879 996 1685 882 999 1688 881 1000 1689 874 993 1682 875 992 1681 875 992 1681 876 994 1683 883 1001 1690 882 999 1688 876 994 1683 877 995 1684 884 1002 1691 883 1001 1690 878 997 1686 879 996 1685 886 1003 1692 885 1004 1693 879 996 1685 880 998 1687 887 1005 1694 886 1003 1692 889 1006 1695 888 1007 1696 881 1000 1689 882 999 1688 882 999 1688 883 1001 1690 890 1008 1697 889 1006 1695 883 1001 1690 884 1002 1691 891 1009 1698 890 1008 1697 885 1004 1693 886 1003 1692 893 1010 1699 892 1011 1700 886 1003 1692 887 1005 1694 894 1012 1701 893 1010 1699 1313 1013 1702 888 1007 1696 889 1006 1695 895 1014 1703 889 1006 1695 890 1008 1697 896 1015 1704 895 1014 1703 890 1008 1697 891 1009 1698 1314 1016 1705 896 1015 1704 891 1009 1698 1337 1017 1706 897 1018 1707 1314 1016 1705 1985 1019 1708 1337 1017 1706 320 1020 1709 1986 1021 1710 892 1011 1700 893 1010 1699 899 1022 1711 898 1023 1712 893 1010 1699 894 1012 1701 900 1024 1713 899 1022 1711 1312 1025 1714 1311 1026 1715 906 1027 1716 905 1028 1717 697 808 1497 696 807 1496 907 1029 1718 698 811 1500 697 808 1497 907 1029 1718 699 813 1502 698 811 1500 907 1029 1718 700 815 1504 699 813 1502 907 1029 1718 701 817 1506 700 815 1504 907 1029 1718 702 819 1508 701 817 1506 907 1029 1718 703 821 1510 702 819 1508 907 1029 1718 704 823 1512 703 821 1510 907 1029 1718 705 825 1514 704 823 1512 907 1029 1718 706 827 1516 705 825 1514 907 1029 1718 707 829 1518 706 827 1516 907 1029 1718 707 829 1518 907 1029 1718 1331 831 1520 708 833 1522 1980 836 1525 907 1029 1718 941 1030 312 980 1031 313 1044 1032 314 1007 1033 315 1007 1033 315 1028 1034 316 956 1035 317 941 1030 312 942 1036 318 958 1037 319 1028 1034 316 1007 1033 315 1007 1033 315 1044 1032 314 981 1038 320 942 1036 318 943 1039 321 979 1040 322 1043 1041 323 1008 1042 324 1008 1042 324 1029 1043 325 955 1044 326 943 1039 321 941 1030 312 956 1035 317 1029 1043 325 1008 1042 324 1008 1042 324 1043 1041 323 980 1031 313 941 1030 312 944 1045 327 978 1046 328 1042 1047 329 1009 1048 330 1009 1048 330 1027 1049 331 953 1050 332 944 1045 327 943 1039 321 955 1044 326 1027 1049 331 1009 1048 330 1009 1048 330 1042 1047 329 979 1040 322 943 1039 321 945 1051 333 977 1052 334 1041 1053 335 1010 1054 336 1010 1054 336 1030 1055 337 960 1056 338 945 1051 333 944 1045 327 953 1050 332 1030 1055 337 1010 1054 336 1010 1054 336 1041 1053 335 978 1046 328 944 1045 327 1011 1057 339 1032 1058 340 964 1059 341 946 1060 342 945 1051 333 960 1056 338 1032 1058 340 1011 1057 339 1011 1057 339 946 1060 342 1066 1061 343 1067 1062 344 947 1063 345 976 1064 346 1040 1065 347 1012 1066 348 1012 1066 348 1034 1067 349 968 1068 350 947 1063 345 946 1060 342 964 1059 341 1034 1067 349 1012 1066 348 1012 1066 348 1040 1065 347 1066 1061 343 946 1060 342 948 1069 351 975 1070 352 1039 1071 353 1013 1072 354 1013 1072 354 1036 1073 355 971 1074 356 948 1069 351 947 1063 345 968 1068 350 1036 1073 355 1013 1072 354 1013 1072 354 1039 1071 353 976 1064 346 947 1063 345 949 1075 357 973 1076 358 1038 1077 359 1014 1078 360 1014 1078 360 1035 1079 361 967 1080 362 949 1075 357 948 1069 351 971 1074 356 1035 1079 361 1014 1078 360 1014 1078 360 1038 1077 359 975 1070 352 948 1069 351 950 1081 363 974 1082 364 1037 1083 365 1015 1084 366 1015 1084 366 1033 1085 367 963 1086 368 950 1081 363 949 1075 357 967 1080 362 1033 1085 367 1015 1084 366 1015 1084 366 1037 1083 365 973 1076 358 949 1075 357 942 1036 318 981 1038 320 1045 1087 369 1016 1088 370 1016 1088 370 1031 1089 371 958 1037 319 942 1036 318 950 1081 363 963 1086 368 1031 1089 371 1016 1088 370 1016 1088 370 1045 1087 369 974 1082 364 950 1081 363 1044 1032 314 1038 1077 359 973 1076 358 981 1038 320 986 1090 1719 1048 1091 1720 1907 1092 1721 1906 1093 1722 923 1094 1723 1017 1095 1724 1907 1092 1721 1908 1096 1725 990 1097 1726 1050 1098 1727 1911 1099 1728 1913 1100 1729 925 1101 1730 1018 1102 1731 1911 1099 1728 1909 1103 1732 909 1104 1733 1051 1105 1734 1905 1106 1735 1909 1103 1732 951 1107 1736 1019 1108 1737 1905 1106 1735 1906 1093 1722 908 1109 1738 1052 1110 1739 1910 1111 1740 1908 1096 1725 924 1112 1741 1020 1113 1742 1910 1111 1740 1912 1114 1743 910 1115 1744 1053 1116 1745 1914 1117 1746 1912 1114 1743 926 1118 1747 1021 1119 1748 1914 1117 1746 1916 1120 1749 927 1121 1750 1022 1122 1751 1918 1123 1752 1920 1124 1753 982 1125 1754 1046 1126 1755 1918 1123 1752 1916 1120 1749 984 1127 1756 1047 1128 1757 1922 1129 1758 1920 1124 1753 929 1130 1759 1023 1131 1760 1922 1129 1758 1924 1132 1761 911 1133 1762 1054 1134 1763 1923 1135 1764 1924 1132 1761 930 1136 1765 1024 1137 1766 1923 1135 1764 1921 1138 1767 988 1139 1768 1049 1140 1769 1919 1141 1770 1921 1138 1767 928 1142 1771 1025 1143 1772 1919 1141 1770 1917 1144 1773 912 1145 1774 1055 1146 1775 1915 1147 1776 1917 1144 1773 952 1148 1777 1026 1149 1778 1915 1147 1776 1913 1100 1729 953 1050 332 1027 1049 331 954 1150 969 914 1151 963 954 1152 969 1027 1049 331 955 1044 326 913 1153 967 956 1035 317 1028 1034 316 957 1154 968 916 1155 965 957 1156 968 1028 1034 316 958 1037 319 915 1157 962 955 1044 326 1029 1043 325 959 1158 966 913 1159 967 959 1160 966 1029 1043 325 956 1035 317 916 1161 965 960 1056 338 1030 1055 337 961 1162 964 917 1163 959 961 1164 964 1030 1055 337 953 1050 332 914 1165 963 958 1037 319 1031 1089 371 962 1166 961 915 1167 962 962 1168 961 1031 1089 371 963 1086 368 918 1169 958 964 1059 341 1032 1058 340 965 1170 960 919 1171 955 965 1172 960 1032 1058 340 960 1056 338 917 1173 959 963 1086 368 1033 1085 367 966 1174 957 918 1175 958 966 1176 957 1033 1085 367 967 1080 362 920 1177 954 968 1068 350 1034 1067 349 969 1178 956 921 1179 950 969 1180 956 1034 1067 349 964 1059 341 919 1181 955 967 1080 362 1035 1079 361 970 1182 953 920 1183 954 970 1184 953 1035 1079 361 971 1074 356 922 1185 952 971 1074 356 1036 1073 355 972 1186 951 922 1187 952 972 1188 951 1036 1073 355 968 1068 350 921 1189 950 914 1190 1779 954 1191 1780 1020 1113 1742 924 1112 1741 923 1094 1723 1020 1113 1742 954 1192 1780 913 1193 1781 916 1194 1782 957 1195 1783 1019 1108 1737 951 1107 1736 925 1101 1730 1019 1108 1737 957 1196 1783 915 1197 1784 923 1094 1723 913 1198 1781 959 1199 1785 1017 1095 1724 916 1200 1782 951 1107 1736 1017 1095 1724 959 1201 1785 917 1202 1786 961 1203 1787 1021 1119 1748 926 1118 1747 914 1204 1779 924 1112 1741 1021 1119 1748 961 1205 1787 925 1101 1730 915 1206 1784 962 1207 1788 1018 1102 1731 952 1148 1777 1018 1102 1731 962 1208 1788 918 1209 1789 919 1210 1790 965 1211 1791 1022 1122 1751 927 1121 1750 917 1212 1786 926 1118 1747 1022 1122 1751 965 1213 1791 952 1148 1777 918 1214 1789 966 1215 1792 1026 1149 1778 928 1142 1771 1026 1149 1778 966 1216 1792 920 1217 1793 921 1218 1794 969 1219 1795 1023 1131 1760 929 1130 1759 919 1220 1790 927 1121 1750 1023 1131 1760 969 1221 1795 928 1142 1771 920 1222 1793 970 1223 1796 1025 1143 1772 930 1136 1765 1025 1143 1772 970 1224 1796 922 1225 1797 930 1136 1765 922 1226 1797 972 1227 1798 1024 1137 1766 921 1228 1794 929 1130 1759 1024 1137 1766 972 1229 1798 984 1127 1756 1046 1126 1755 996 1230 1799 932 1231 1800 996 1230 1799 1046 1126 1755 982 1125 1754 931 1232 1801 911 1133 1762 1047 1128 1757 983 1233 1802 933 1234 1803 983 1233 1802 1047 1128 1757 984 1127 1756 932 1231 1800 908 1109 1738 1048 1091 1720 985 1235 1804 935 1236 1805 985 1235 1804 1048 1091 1720 986 1090 1719 934 1237 1806 912 1145 1774 1049 1140 1769 987 1238 1807 937 1239 1808 987 1238 1807 1049 1140 1769 988 1139 1768 936 1240 1809 909 1104 1733 1050 1098 1727 989 1241 1810 939 1242 1811 989 1241 1810 1050 1098 1727 990 1097 1726 938 1243 1812 986 1090 1719 1051 1105 1734 991 1244 1813 934 1237 1806 991 1244 1813 1051 1105 1734 909 1104 1733 939 1242 1811 910 1115 1744 1052 1110 1739 992 1245 1814 940 1246 1815 992 1245 1814 1052 1110 1739 908 1109 1738 935 1236 1805 982 1125 1754 1053 1116 1745 993 1247 1816 931 1232 1801 993 1247 1816 1053 1116 1745 910 1115 1744 940 1246 1815 988 1139 1768 1054 1134 1763 994 1248 1817 936 1240 1809 994 1248 1817 1054 1134 1763 911 1133 1762 933 1234 1803 990 1097 1726 1055 1146 1775 995 1249 1818 938 1243 1812 995 1249 1818 1055 1146 1775 912 1145 1774 937 1239 1808 996 1230 1799 1056 1250 1819 997 1251 1820 932 1231 1800 998 1252 1821 1056 1250 1819 996 1230 1799 931 1232 1801 983 1233 1802 1057 1253 1822 999 1254 1823 933 1234 1803 997 1251 1820 1057 1253 1822 983 1233 1802 932 1231 1800 985 1235 1804 1058 1255 1824 1000 1256 1825 935 1236 1805 1001 1257 1826 1058 1255 1824 985 1235 1804 934 1237 1806 987 1238 1807 1059 1258 1827 1002 1259 1828 937 1239 1808 1003 1260 1829 1059 1258 1827 987 1238 1807 936 1240 1809 989 1241 1810 1060 1261 1830 1004 1262 1831 939 1242 1811 1005 1263 1832 1060 1261 1830 989 1241 1810 938 1243 1812 991 1244 1813 1061 1264 1833 1001 1257 1826 934 1237 1806 1004 1262 1831 1061 1264 1833 991 1244 1813 939 1242 1811 992 1245 1814 1062 1265 1834 1006 1266 1835 940 1246 1815 1000 1256 1825 1062 1265 1834 992 1245 1814 935 1236 1805 993 1247 1816 1063 1267 1836 998 1252 1821 931 1232 1801 1006 1266 1835 1063 1267 1836 993 1247 1816 940 1246 1815 994 1248 1817 1064 1268 1837 1003 1260 1829 936 1240 1809 999 1254 1823 1064 1268 1837 994 1248 1817 933 1234 1803 995 1249 1818 1065 1269 1838 1005 1263 1832 938 1243 1812 1002 1259 1828 1065 1269 1838 995 1249 1818 937 1239 1808 973 1076 358 1037 1083 365 974 1082 364 1045 1087 369 981 1038 320 980 1031 313 1043 1041 323 1039 1071 353 975 1070 352 1044 1032 314 980 1031 313 975 1070 352 1038 1077 359 1043 1041 323 979 1040 322 976 1064 346 1039 1071 353 978 1046 328 1041 1053 335 977 1052 334 1067 1062 344 1066 1061 343 979 1040 322 1042 1047 329 1040 1065 347 976 1064 346 1011 1057 339 1067 1062 344 977 1052 334 945 1051 333 978 1046 328 1066 1061 343 1040 1065 347 1042 1047 329 997 1251 1820 1056 1250 1819 904 1270 1839 903 1271 1840 1056 1250 1819 998 1252 1821 1313 1013 1702 904 1270 1839 999 1254 1823 1057 1253 1822 902 1272 1841 901 1273 1842 1000 1256 1825 1058 1255 1824 863 981 1670 864 982 1671 1058 1255 1824 1001 1257 1826 853 971 1660 863 981 1670 1002 1259 1828 1059 1258 1827 887 1005 1694 880 998 1687 1059 1258 1827 1003 1260 1829 894 1012 1701 887 1005 1694 1004 1262 1831 1060 1261 1830 862 980 1669 851 969 1658 1060 1261 1830 1005 1263 1832 870 988 1677 862 980 1669 1001 1257 1826 1061 1264 1833 852 970 1659 853 971 1660 1061 1264 1833 1004 1262 1831 851 969 1658 852 970 1659 1006 1266 1835 1062 1265 1834 874 993 1682 881 1000 1689 1062 1265 1834 1000 1256 1825 864 982 1671 874 993 1682 1063 1267 1836 1006 1266 1835 881 1000 1689 888 1007 1696 1003 1260 1829 1064 1268 1837 900 1024 1713 894 1012 1701 1064 1268 1837 999 1254 1823 901 1273 1842 900 1024 1713 1005 1263 1832 1065 1269 1838 873 991 1680 870 988 1677 1065 1269 1838 1002 1259 1828 880 998 1687 873 991 1680 1057 1253 1822 997 1251 1820 903 1271 1840 902 1272 1841 870 988 1677 861 979 1668 862 980 1669 862 980 1669 850 968 1657 851 969 1658 1063 1267 1836 888 1007 1696 1313 1013 1702 998 1252 1821 1116 1274 372 1237 1275 373 1117 1276 374 1151 1277 375 1237 1275 373 1152 1278 376 1117 1276 374 1153 1279 377 1238 1280 378 1092 1281 379 1070 1282 380 1308 1283 381 1238 1280 378 1153 1279 377 1309 1284 382 1153 1279 377 1239 1285 383 1310 1286 384 1309 1284 382 1110 1287 385 1287 1288 386 1239 1285 383 1093 1289 387 1093 1289 387 1239 1285 383 1153 1279 377 1070 1282 380 1219 1290 388 1118 1291 389 1154 1292 390 1297 1293 391 1113 1294 392 1115 1295 393 1297 1293 391 1154 1292 390 1120 1296 394 1112 1297 395 1150 1298 396 1155 1299 397 1071 1300 398 1155 1299 397 1150 1301 396 1069 1302 399 1154 1292 390 1240 1303 400 1156 1304 401 1113 1305 392 1156 1306 401 1240 1303 400 1277 1307 402 1114 1308 403 1277 1307 402 1240 1303 400 1157 1309 404 1222 1310 405 1157 1309 404 1240 1303 400 1154 1292 390 1118 1291 389 1218 1311 406 1121 1312 407 1158 1313 408 1274 1314 409 1219 1290 388 1274 1314 409 1158 1313 408 1118 1291 389 1159 1315 410 1241 1316 411 1160 1317 412 1123 1318 413 1160 1317 412 1241 1316 411 1245 1319 414 1124 1320 415 1245 1319 414 1241 1316 411 1161 1321 416 1161 1321 416 1241 1316 411 1159 1315 410 1122 1322 417 1162 1323 418 1242 1324 419 1119 1325 420 1120 1296 394 1220 1326 421 1242 1324 419 1162 1323 418 1125 1327 422 1162 1323 418 1243 1328 423 1163 1329 424 1125 1327 422 1163 1329 424 1243 1328 423 1094 1330 425 1072 1331 426 1094 1330 425 1243 1328 423 1155 1299 397 1071 1300 398 1155 1299 397 1243 1328 423 1162 1323 418 1120 1296 394 1278 1332 427 1244 1333 428 1164 1334 429 1223 1335 430 1164 1334 429 1244 1333 428 1158 1313 408 1121 1312 407 1158 1313 408 1244 1333 428 1157 1309 404 1118 1291 389 1157 1309 404 1244 1333 428 1278 1332 427 1222 1310 405 1124 1320 415 1245 1319 414 1165 1336 431 1126 1337 432 1165 1336 431 1245 1319 414 1166 1338 433 1208 1339 434 1129 1340 435 1167 1341 436 1128 1342 437 1167 1341 436 1129 1340 435 1296 1343 438 1209 1344 439 1168 1345 440 1246 1346 441 1095 1347 442 1073 1348 443 1095 1347 442 1246 1346 441 1266 1349 444 1074 1350 445 1266 1349 444 1246 1346 441 1167 1341 436 1209 1344 439 1167 1341 436 1246 1346 441 1168 1345 440 1128 1342 437 1228 1351 446 1247 1352 447 1170 1353 448 1131 1354 449 1170 1353 448 1247 1352 447 1169 1355 450 1130 1356 451 1171 1357 452 1248 1358 453 1172 1359 454 1132 1360 455 1172 1359 454 1248 1358 453 1237 1275 373 1116 1274 372 1171 1357 452 1301 1361 456 1174 1362 457 1248 1358 453 1237 1275 373 1248 1358 453 1173 1363 458 1152 1278 376 1173 1363 458 1248 1358 453 1174 1362 457 1133 1364 459 1175 1365 460 1249 1366 461 1307 1367 462 1306 1368 463 1307 1367 462 1249 1366 461 1238 1280 378 1308 1283 381 1238 1280 378 1249 1366 461 1096 1369 464 1092 1281 379 1096 1369 464 1249 1366 461 1175 1365 460 1075 1370 465 1218 1311 406 1273 1371 466 1176 1372 467 1121 1312 407 1134 1373 468 1135 1374 469 1176 1372 467 1273 1371 466 1177 1375 470 1250 1376 471 1178 1377 472 1136 1378 473 1178 1377 472 1250 1376 471 1179 1379 474 1137 1380 475 1179 1379 474 1250 1376 471 1171 1357 452 1132 1360 455 1180 1381 476 1251 1382 477 1177 1375 470 1136 1378 473 1181 1383 478 1235 1384 479 1174 1362 457 1301 1361 456 1181 1383 478 1251 1382 477 1182 1385 480 1126 1337 432 1182 1385 480 1251 1382 477 1180 1381 476 1138 1386 481 1183 1387 482 1252 1388 483 1179 1379 474 1132 1360 455 1179 1379 474 1252 1388 483 1184 1389 484 1137 1380 475 1184 1389 484 1252 1388 483 1286 1390 485 1232 1391 486 1286 1390 485 1252 1388 483 1183 1387 482 1233 1392 487 1139 1393 488 1217 1394 489 1272 1395 490 1185 1396 491 1216 1397 492 1140 1398 493 1185 1396 491 1272 1395 490 1186 1399 494 1253 1400 495 1187 1401 496 1142 1402 497 1187 1401 496 1253 1400 495 1188 1403 498 1144 1404 499 1188 1403 498 1253 1400 495 1189 1405 500 1143 1406 501 1189 1405 500 1253 1400 495 1186 1399 494 1141 1407 502 1190 1408 503 1254 1409 504 1191 1410 505 1145 1411 506 1191 1410 505 1254 1409 504 1192 1412 507 1130 1356 451 1192 1412 507 1254 1409 504 1186 1399 494 1142 1402 497 1186 1399 494 1254 1409 504 1190 1408 503 1141 1407 502 1193 1413 508 1255 1414 509 1281 1415 510 1225 1416 511 1281 1415 510 1255 1414 509 1194 1417 512 1226 1418 513 1194 1417 512 1255 1414 509 1185 1396 491 1140 1398 493 1185 1396 491 1255 1414 509 1193 1413 508 1139 1393 488 1195 1419 514 1256 1420 515 1188 1403 498 1143 1406 501 1188 1403 498 1256 1420 515 1196 1421 516 1144 1404 499 1196 1421 516 1256 1420 515 1284 1422 517 1230 1423 518 1284 1422 517 1256 1420 515 1195 1419 514 1231 1424 519 1216 1397 492 1271 1425 520 1194 1417 512 1140 1398 493 1227 1426 521 1226 1418 513 1194 1417 512 1271 1425 520 1197 1427 522 1257 1428 523 1283 1429 524 1229 1430 525 1283 1429 524 1257 1428 523 1196 1421 516 1230 1423 518 1196 1421 516 1257 1428 523 1187 1401 496 1144 1404 499 1187 1401 496 1257 1428 523 1197 1427 522 1142 1402 497 1198 1431 526 1258 1432 527 1220 1326 421 1125 1327 422 1221 1433 528 1258 1432 527 1198 1431 526 1146 1434 529 1200 1435 530 1259 1436 531 1199 1437 532 1147 1438 533 1174 1362 457 1260 1439 534 1201 1440 535 1133 1364 459 1302 1441 536 1304 1442 537 1305 1443 538 1201 1440 535 1198 1431 526 1261 1444 539 1203 1445 540 1146 1434 529 1203 1445 540 1261 1444 539 1097 1446 541 1076 1447 542 1097 1446 541 1261 1444 539 1163 1329 424 1072 1331 426 1163 1329 424 1261 1444 539 1198 1431 526 1125 1327 422 1305 1443 538 1262 1448 543 1175 1365 460 1306 1368 463 1175 1365 460 1262 1448 543 1098 1449 544 1075 1370 465 1098 1449 544 1262 1448 543 1204 1450 545 1077 1451 546 1204 1450 545 1262 1448 543 1305 1443 538 1304 1442 537 1148 1452 547 1276 1453 548 1221 1433 528 1146 1434 529 1199 1437 532 1206 1454 549 1205 1455 550 1147 1438 533 1265 1456 551 1303 1457 552 1304 1442 537 1302 1441 536 1078 1458 553 1263 1459 554 1203 1445 540 1076 1447 542 1203 1445 540 1263 1459 554 1148 1452 547 1146 1434 529 1204 1450 545 1264 1460 555 1099 1461 556 1077 1451 546 1303 1457 552 1264 1460 555 1204 1450 545 1304 1442 537 1206 1454 549 1129 1340 435 1208 1339 434 1205 1455 550 1074 1350 445 1266 1349 444 1263 1459 554 1078 1458 553 1263 1459 554 1266 1349 444 1209 1344 439 1148 1452 547 1279 1462 557 1267 1463 558 1210 1464 559 1224 1465 560 1210 1464 559 1267 1463 558 1176 1372 467 1135 1374 469 1176 1372 467 1267 1463 558 1164 1334 429 1121 1312 407 1164 1334 429 1267 1463 558 1279 1462 557 1223 1335 430 1285 1466 561 1268 1467 562 1184 1389 484 1232 1391 486 1184 1389 484 1268 1467 562 1211 1468 563 1137 1380 475 1211 1468 563 1268 1467 562 1195 1419 514 1143 1406 501 1195 1419 514 1268 1467 562 1285 1466 561 1231 1424 519 1149 1469 564 1269 1470 565 1212 1471 566 1145 1411 506 1212 1471 566 1269 1470 565 1213 1472 567 1138 1386 481 1134 1373 468 1300 1473 568 1214 1474 569 1135 1374 469 1139 1393 488 1214 1474 569 1300 1473 568 1217 1394 489 1215 1475 570 1270 1476 571 1189 1405 500 1141 1407 502 1189 1405 500 1270 1476 571 1211 1468 563 1143 1406 501 1211 1468 563 1270 1476 571 1178 1377 472 1137 1380 475 1178 1377 472 1270 1476 571 1215 1475 570 1136 1378 473 1227 1426 521 1271 1425 520 1247 1352 447 1228 1351 446 1247 1352 447 1271 1425 520 1216 1397 492 1169 1355 450 1216 1397 492 1272 1395 490 1293 1477 572 1169 1355 450 1293 1477 572 1272 1395 490 1217 1394 489 1149 1469 564 1134 1373 468 1273 1371 466 1290 1478 573 1213 1472 567 1290 1478 573 1273 1371 466 1218 1311 406 1124 1320 415 1218 1311 406 1274 1314 409 1160 1317 412 1124 1320 415 1160 1317 412 1274 1314 409 1219 1290 388 1123 1318 413 1115 1479 393 1275 1480 574 1159 1315 410 1123 1318 413 1330 1481 575 1161 1321 416 1122 1322 417 1259 1436 531 1258 1432 527 1221 1433 528 1199 1437 532 1221 1433 528 1276 1453 548 1206 1454 549 1199 1437 532 1276 1453 548 1296 1343 438 1129 1340 435 1206 1454 549 1114 1482 403 1277 1307 402 1100 1483 576 1068 1484 577 1100 1483 576 1277 1307 402 1222 1310 405 1079 1485 578 1222 1310 405 1278 1332 427 1101 1486 579 1079 1485 578 1101 1486 579 1278 1332 427 1223 1335 430 1080 1487 580 1223 1335 430 1279 1462 557 1102 1488 581 1080 1487 580 1102 1488 581 1279 1462 557 1224 1465 560 1081 1489 582 1224 1465 560 1280 1490 583 1103 1491 584 1081 1489 582 1103 1491 584 1280 1490 583 1225 1416 511 1082 1492 585 1225 1416 511 1281 1415 510 1104 1493 586 1082 1492 585 1104 1493 586 1281 1415 510 1226 1418 513 1083 1494 587 1083 1494 587 1226 1418 513 1227 1426 521 1084 1495 588 1084 1495 588 1227 1426 521 1228 1351 446 1085 1496 589 1131 1354 449 1282 1497 590 1105 1498 591 1087 1499 592 1105 1498 591 1282 1497 590 1229 1430 525 1086 1500 593 1106 1501 594 1283 1429 524 1230 1423 518 1088 1502 595 1229 1430 525 1283 1429 524 1106 1501 594 1086 1500 593 1230 1423 518 1284 1422 517 1107 1503 596 1088 1502 595 1107 1503 596 1284 1422 517 1231 1424 519 1089 1504 597 1108 1505 598 1285 1466 561 1232 1391 486 1090 1506 599 1231 1424 519 1285 1466 561 1108 1505 598 1089 1504 597 1232 1391 486 1286 1390 485 1109 1507 600 1090 1506 599 1109 1507 600 1286 1390 485 1233 1392 487 1091 1508 601 1233 1392 487 1287 1288 386 1110 1287 385 1091 1508 601 1168 1345 440 1288 1509 602 1234 1510 603 1128 1342 437 1234 1510 603 1288 1509 602 1264 1460 555 1303 1457 552 1264 1460 555 1288 1509 602 1111 1511 604 1099 1461 556 1111 1511 604 1288 1509 602 1168 1345 440 1073 1348 443 1085 1496 589 1228 1351 446 1131 1354 449 1087 1499 592 1200 1435 530 1289 1512 605 1235 1384 479 1127 1513 606 1235 1384 479 1289 1512 605 1260 1439 534 1174 1362 457 1260 1439 534 1289 1512 605 1236 1514 607 1202 1515 608 1236 1514 607 1289 1512 605 1200 1435 530 1147 1438 533 1213 1472 567 1290 1478 573 1182 1385 480 1138 1386 481 1126 1337 432 1182 1385 480 1290 1478 573 1124 1320 415 1205 1455 550 1291 1516 609 1236 1514 607 1147 1438 533 1236 1514 607 1291 1516 609 1207 1517 610 1202 1515 608 1215 1475 570 1292 1518 611 1180 1381 476 1136 1378 473 1180 1381 476 1292 1518 611 1212 1471 566 1138 1386 481 1212 1471 566 1292 1518 611 1190 1408 503 1145 1411 506 1190 1408 503 1292 1518 611 1215 1475 570 1141 1407 502 1208 1339 434 1294 1519 612 1291 1516 609 1205 1455 550 1291 1516 609 1294 1519 612 1265 1456 551 1207 1517 610 1169 1355 450 1293 1477 572 1191 1410 505 1130 1356 451 1191 1410 505 1293 1477 572 1149 1469 564 1145 1411 506 1234 1510 603 1294 1519 612 1208 1339 434 1128 1342 437 1282 1497 590 1295 1520 613 1197 1427 522 1229 1430 525 1197 1427 522 1295 1520 613 1192 1412 507 1142 1402 497 1192 1412 507 1295 1520 613 1170 1353 448 1130 1356 451 1170 1353 448 1295 1520 613 1282 1497 590 1131 1354 449 1209 1344 439 1296 1343 438 1276 1453 548 1148 1452 547 1219 1290 388 1297 1293 391 1115 1521 393 1123 1318 413 1235 1384 479 1181 1383 478 1126 1337 432 1165 1336 431 1127 1513 606 1183 1387 482 1298 1522 614 1287 1288 386 1233 1392 487 1287 1288 386 1298 1522 614 1239 1285 383 1239 1285 383 1298 1522 614 1310 1286 384 1172 1359 454 1298 1522 614 1183 1387 482 1132 1360 455 1210 1464 559 1299 1523 615 1280 1490 583 1224 1465 560 1280 1490 583 1299 1523 615 1193 1413 508 1225 1416 511 1193 1413 508 1299 1523 615 1214 1474 569 1139 1393 488 1214 1474 569 1299 1523 615 1210 1464 559 1135 1374 469 1217 1394 489 1300 1473 568 1269 1470 565 1149 1469 564 1269 1470 565 1300 1473 568 1134 1373 468 1213 1472 567 1301 1361 456 1177 1375 470 1251 1382 477 1181 1383 478 1171 1357 452 1250 1376 471 1177 1375 470 1301 1361 456 1202 1515 608 1207 1517 610 1265 1456 551 1302 1441 536 1201 1440 535 1260 1439 534 1202 1515 608 1302 1441 536 1265 1456 551 1294 1519 612 1234 1510 603 1303 1457 552 1201 1440 535 1305 1443 538 1306 1368 463 1133 1364 459 1307 1367 462 1173 1363 458 1133 1364 459 1306 1368 463 1173 1363 458 1307 1367 462 1308 1283 381 1152 1278 376 1152 1278 376 1308 1283 381 1309 1284 382 1117 1276 374 1310 1286 384 1116 1274 372 1117 1276 374 1309 1284 382 1298 1522 614 1172 1359 454 1116 1274 372 1310 1286 384 1068 1524 1843 1319 1525 1844 1318 1526 1845 1114 1527 1846 902 1272 1841 1321 1528 1847 1318 1526 1845 906 1027 1716 902 1272 1841 906 1027 1716 1311 1026 1715 901 1273 1842 1311 1026 1715 899 1022 1711 900 1024 1713 901 1273 1842 898 1023 1712 899 1022 1711 1311 1026 1715 1312 1025 1714 1113 1529 1848 1322 1530 1849 1323 1531 1850 1115 1532 1851 1313 1013 1702 1324 1533 1852 1323 1531 1850 904 1270 1839 1316 1534 1853 1325 1535 1854 1326 1536 1855 1317 1537 1856 1315 1538 1857 1320 1539 1858 1332 1540 1859 897 1018 1707 903 1271 1840 1322 1530 1849 1321 1528 1847 902 1272 1841 895 1014 1703 1325 1535 1854 1324 1533 1852 1313 1013 1702 1159 1315 410 1275 1541 574 1316 1542 616 1122 1322 417 1120 1296 394 1119 1325 420 1317 1543 617 1112 1544 395 1314 1016 1705 1327 1545 1860 1326 1536 1855 896 1015 1704 1317 1546 617 1119 1325 420 1122 1322 417 1316 1547 616 906 1027 1716 1318 1526 1845 1319 1525 1844 905 1028 1717 1150 1548 1861 1332 1540 1859 1320 1539 1858 1069 1549 1862 1114 1550 1846 1318 1526 1845 1321 1528 1847 1156 1551 1863 1156 1552 1863 1321 1528 1847 1322 1530 1849 1113 1553 1848 904 1270 1839 1323 1531 1850 1322 1530 1849 903 1271 1840 1115 1554 1851 1323 1531 1850 1324 1533 1852 1275 1555 1864 1275 1556 1864 1324 1533 1852 1325 1535 1854 1316 1557 1853 896 1015 1704 1326 1536 1855 1325 1535 1854 895 1014 1703 1317 1558 1856 1326 1536 1855 1327 1545 1860 1112 1559 1865 1112 1560 1865 1327 1545 1860 1332 1540 1859 1150 1561 1861 1328 1562 618 1259 1436 531 1200 1435 530 1127 1513 606 1220 1326 421 1258 1432 527 1259 1436 531 1328 1562 618 1329 1563 619 1242 1324 419 1220 1326 421 1328 1562 618 1166 1338 433 1328 1562 618 1127 1513 606 1165 1336 431 1330 1481 575 1329 1563 619 1328 1562 618 1166 1338 433 1119 1325 420 1329 1563 619 1330 1481 575 1122 1322 417 1119 1325 420 1242 1324 419 1329 1563 619 1161 1321 416 1330 1481 575 1166 1338 433 1245 1319 414 1314 1016 1705 897 1018 1707 1332 1540 1859 1327 1545 1860 720 830 1519 721 832 1521 1333 849 1538 734 848 1537 734 848 1537 1333 849 1538 1334 863 1552 747 862 1551 747 862 1551 1334 863 1552 1335 877 1566 760 876 1565 760 876 1565 1335 877 1566 1336 891 1580 773 890 1579 773 890 1579 1336 891 1580 2 361 1172 786 904 1593 786 904 1593 2 361 1172 86 364 1175 798 916 1605 884 1002 1691 320 1020 1709 1337 1017 1706 891 1009 1698 696 807 1496 709 810 1499 1349 1564 1866 1338 1565 1867 1338 1565 1867 1349 1564 1866 1350 1566 1868 1339 1567 1869 1339 1567 1869 1350 1566 1868 1351 1568 1870 1340 1569 1871 1340 1569 1871 1351 1568 1870 1352 1570 1872 1341 1571 1873 1341 1571 1873 1352 1570 1872 1353 1572 1874 1342 1573 1875 1342 1573 1875 1353 1572 1874 1354 1574 1876 1343 1575 1877 1343 1575 1877 1354 1574 1876 1355 1576 1878 1344 1577 1879 1344 1577 1879 1355 1576 1878 1356 1578 1880 1345 1579 1881 1345 1579 1881 1356 1578 1880 1357 1580 1882 1346 1581 1883 1346 1581 1883 1357 1580 1882 1358 1582 1884 1347 1583 1885 1347 1583 1885 1358 1582 1884 1359 1584 1886 1348 1585 1887 1348 1585 1887 1359 1584 1886 1360 1586 1888 1897 1587 1889 1897 1587 1889 1360 1586 1888 1972 1588 1890 1973 1589 1891 709 810 1499 723 838 1527 1361 1590 1892 1349 1564 1866 1349 1564 1866 1361 1590 1892 1362 1591 1893 1350 1566 1868 1350 1566 1868 1362 1591 1893 1363 1592 1894 1351 1568 1870 1351 1568 1870 1363 1592 1894 1364 1593 1895 1352 1570 1872 1352 1570 1872 1364 1593 1895 1365 1594 1896 1353 1572 1874 1353 1572 1874 1365 1594 1896 1366 1595 1897 1354 1574 1876 1354 1574 1876 1366 1595 1897 1367 1596 1898 1355 1576 1878 1355 1576 1878 1367 1596 1898 1368 1597 1899 1356 1578 1880 1356 1578 1880 1368 1597 1899 1369 1598 1900 1357 1580 1882 1357 1580 1882 1369 1598 1900 1370 1599 1901 1358 1582 1884 1358 1582 1884 1370 1599 1901 1371 1600 1902 1359 1584 1886 1360 1586 1888 1899 1601 1903 1975 1602 1904 1972 1588 1890 723 838 1527 736 852 1541 1372 1603 1905 1361 1590 1892 1361 1590 1892 1372 1603 1905 1373 1604 1906 1362 1591 1893 1362 1591 1893 1373 1604 1906 1374 1605 1907 1363 1592 1894 1363 1592 1894 1374 1605 1907 1375 1606 1908 1364 1593 1895 1364 1593 1895 1375 1606 1908 1376 1607 1909 1365 1594 1896 1365 1594 1896 1376 1607 1909 1377 1608 1910 1366 1595 1897 1366 1595 1897 1377 1608 1910 1378 1609 1911 1367 1596 1898 1367 1596 1898 1378 1609 1911 1379 1610 1912 1368 1597 1899 1368 1597 1899 1379 1610 1912 1380 1611 1913 1369 1598 1900 1369 1598 1900 1380 1611 1913 1381 1612 1914 1370 1599 1901 1370 1599 1901 1381 1612 1914 1382 1613 1915 1371 1600 1902 1899 1601 1903 1900 1614 1916 1976 1615 1917 1975 1602 1904 736 852 1541 749 866 1555 1383 1616 1918 1372 1603 1905 1372 1603 1905 1383 1616 1918 1384 1617 1919 1373 1604 1906 1373 1604 1906 1384 1617 1919 1385 1618 1920 1374 1605 1907 1374 1605 1907 1385 1618 1920 1386 1619 1921 1375 1606 1908 1375 1606 1908 1386 1619 1921 1387 1620 1922 1376 1607 1909 1376 1607 1909 1387 1620 1922 1388 1621 1923 1377 1608 1910 1377 1608 1910 1388 1621 1923 1389 1622 1924 1378 1609 1911 1378 1609 1911 1389 1622 1924 1390 1623 1925 1379 1610 1912 1379 1610 1912 1390 1623 1925 1391 1624 1926 1380 1611 1913 1380 1611 1913 1391 1624 1926 1392 1625 1927 1381 1612 1914 1381 1612 1914 1392 1625 1927 1393 1626 1928 1382 1613 1915 1900 1614 1916 1901 1627 1929 1977 1628 1930 1976 1615 1917 749 866 1555 762 880 1569 1394 1629 1931 1383 1616 1918 1383 1616 1918 1394 1629 1931 1395 1630 1932 1384 1617 1919 1384 1617 1919 1395 1630 1932 1396 1631 1933 1385 1618 1920 1385 1618 1920 1396 1631 1933 1397 1632 1934 1386 1619 1921 1386 1619 1921 1397 1632 1934 1398 1633 1935 1387 1620 1922 1387 1620 1922 1398 1633 1935 1399 1634 1936 1388 1621 1923 1388 1621 1923 1399 1634 1936 1400 1635 1937 1389 1622 1924 1389 1622 1924 1400 1635 1937 1401 1636 1938 1390 1623 1925 1390 1623 1925 1401 1636 1938 1402 1637 1939 1391 1624 1926 1391 1624 1926 1402 1637 1939 1403 1638 1940 1392 1625 1927 1392 1625 1927 1403 1638 1940 1404 1639 1941 1393 1626 1928 1901 1627 1929 1902 1640 1942 1974 1641 1943 1977 1628 1930 762 880 1569 775 894 1583 1405 1642 1944 1394 1629 1931 1394 1629 1931 1405 1642 1944 1406 1643 1945 1395 1630 1932 1395 1630 1932 1406 1643 1945 1407 1644 1946 1396 1631 1933 1396 1631 1933 1407 1644 1946 1408 1645 1947 1397 1632 1934 1397 1632 1934 1408 1645 1947 1409 1646 1948 1398 1633 1935 1398 1633 1935 1409 1646 1948 1410 1647 1949 1399 1634 1936 1399 1634 1936 1410 1647 1949 1411 1648 1950 1400 1635 1937 1400 1635 1937 1411 1648 1950 1412 1649 1951 1401 1636 1938 1401 1636 1938 1412 1649 1951 1413 1650 1952 1402 1637 1939 1402 1637 1939 1413 1650 1952 1414 1651 1953 1403 1638 1940 1403 1638 1940 1414 1651 1953 1415 1652 1954 1404 1639 1941 2043 435 1231 2044 1653 1955 1974 1641 1943 434 436 1232 775 894 1583 787 906 1595 1416 1654 1956 1405 1642 1944 1405 1642 1944 1416 1654 1956 1417 1655 1957 1406 1643 1945 1406 1643 1945 1417 1655 1957 1418 1656 1958 1407 1644 1946 1407 1644 1946 1418 1656 1958 1419 1657 1959 1408 1645 1947 1408 1645 1947 1419 1657 1959 1420 1658 1960 1409 1646 1948 1409 1646 1948 1420 1658 1960 1421 1659 1961 1410 1647 1949 1410 1647 1949 1421 1659 1961 1422 1660 1962 1411 1648 1950 1411 1648 1950 1422 1660 1962 1423 1661 1963 1412 1649 1951 1412 1649 1951 1423 1661 1963 1424 1662 1964 1413 1650 1952 1413 1650 1952 1424 1662 1964 1425 1663 1965 1414 1651 1953 1414 1651 1953 1425 1663 1965 1426 1664 1966 1415 1652 1954 787 906 1595 799 918 1607 1427 1665 1967 1416 1654 1956 1416 1654 1956 1427 1665 1967 1428 1666 1968 1417 1655 1957 1417 1655 1957 1428 1666 1968 1429 1667 1969 1418 1656 1958 1418 1656 1958 1429 1667 1969 1430 1668 1970 1419 1657 1959 1419 1657 1959 1430 1668 1970 1431 1669 1971 1420 1658 1960 1420 1658 1960 1431 1669 1971 1432 1670 1972 1421 1659 1961 1421 1659 1961 1432 1670 1972 1433 1671 1973 1422 1660 1962 1422 1660 1962 1433 1671 1973 1434 1672 1974 1423 1661 1963 1423 1661 1963 1434 1672 1974 1435 1673 1975 1424 1662 1964 1424 1662 1964 1435 1673 1975 1436 1674 1976 1425 1663 1965 1425 1663 1965 1436 1674 1976 1437 1675 1977 1426 1664 1966 799 918 1607 811 930 1619 1438 1676 1978 1427 1665 1967 1427 1665 1967 1438 1676 1978 1439 1677 1979 1428 1666 1968 1428 1666 1968 1439 1677 1979 1440 1678 1980 1429 1667 1969 1429 1667 1969 1440 1678 1980 1441 1679 1981 1430 1668 1970 1430 1668 1970 1441 1679 1981 1442 1680 1982 1431 1669 1971 1431 1669 1971 1442 1680 1982 1443 1681 1983 1432 1670 1972 1432 1670 1972 1443 1681 1983 1444 1682 1984 1433 1671 1973 1433 1671 1973 1444 1682 1984 1445 1683 1985 1434 1672 1974 1434 1672 1974 1445 1683 1985 1446 1684 1986 1435 1673 1975 1435 1673 1975 1446 1684 1986 1447 1685 1987 1436 1674 1976 1436 1674 1976 1447 1685 1987 1448 1686 1988 1437 1675 1977 811 930 1619 823 942 1631 1449 1687 1989 1438 1676 1978 1438 1676 1978 1449 1687 1989 1450 1688 1990 1439 1677 1979 1439 1677 1979 1450 1688 1990 1451 1689 1991 1440 1678 1980 1440 1678 1980 1451 1689 1991 1452 1690 1992 1441 1679 1981 1441 1679 1981 1452 1690 1992 1453 1691 1993 1442 1680 1982 1442 1680 1982 1453 1691 1993 1454 1692 1994 1443 1681 1983 1443 1681 1983 1454 1692 1994 1455 1693 1995 1444 1682 1984 1444 1682 1984 1455 1693 1995 1456 1694 1996 1445 1683 1985 1445 1683 1985 1456 1694 1996 1457 1695 1997 1446 1684 1986 1446 1684 1986 1457 1695 1997 1458 1696 1998 1447 1685 1987 1447 1685 1987 1458 1696 1998 1459 1697 1999 1448 1686 1988 823 942 1631 846 954 1643 1460 1698 2000 1449 1687 1989 1449 1687 1989 1460 1698 2000 1461 1699 2001 1450 1688 1990 1450 1688 1990 1461 1699 2001 1462 1700 2002 1451 1689 1991 1451 1689 1991 1462 1700 2002 1463 1701 2003 1452 1690 1992 1452 1690 1992 1463 1701 2003 1464 1702 2004 1453 1691 1993 1453 1691 1993 1464 1702 2004 1465 1703 2005 1454 1692 1994 1454 1692 1994 1465 1703 2005 1466 1704 2006 1455 1693 1995 1455 1693 1995 1466 1704 2006 1467 1705 2007 1456 1694 1996 1456 1694 1996 1467 1705 2007 1468 1706 2008 1457 1695 1997 1457 1695 1997 1468 1706 2008 1469 1707 2009 1458 1696 1998 1458 1696 1998 1469 1707 2009 1470 1708 2010 1459 1697 1999 846 954 1643 847 966 1655 1471 1709 2011 1460 1698 2000 1460 1698 2000 1471 1709 2011 1472 1710 2012 1461 1699 2001 1461 1699 2001 1472 1710 2012 1473 1711 2013 1462 1700 2002 1462 1700 2002 1473 1711 2013 1474 1712 2014 1463 1701 2003 1463 1701 2003 1474 1712 2014 1475 1713 2015 1464 1702 2004 1464 1702 2004 1475 1713 2015 1476 1714 2016 1465 1703 2005 1465 1703 2005 1476 1714 2016 1477 1715 2017 1466 1704 2006 1466 1704 2006 1477 1715 2017 1478 1716 2018 1467 1705 2007 1467 1705 2007 1478 1716 2018 1479 1717 2019 1468 1706 2008 1468 1706 2008 1479 1717 2019 1480 1718 2020 1469 1707 2009 1469 1707 2009 1480 1718 2020 1481 1719 2021 1470 1708 2010 847 966 1655 859 978 1667 1482 1720 2022 1471 1709 2011 1471 1709 2011 1482 1720 2022 1483 1721 2023 1472 1710 2012 1472 1710 2012 1483 1721 2023 1484 1722 2024 1473 1711 2013 1476 1714 2016 1485 1723 2025 1477 1715 2017 1477 1715 2017 1485 1723 2025 1488 1724 2026 1478 1716 2018 1478 1716 2018 1488 1724 2026 1489 1725 2027 1479 1717 2019 1479 1717 2019 1489 1725 2027 1490 1726 2028 1480 1718 2020 1480 1718 2020 1490 1726 2028 1491 1727 2029 1481 1719 2021 859 978 1667 868 987 1676 1486 1728 2030 1482 1720 2022 1482 1720 2022 1486 1728 2030 1487 1729 2031 1483 1721 2023 868 987 1676 871 990 1679 1492 1730 2032 1486 1728 2030 1486 1728 2030 1492 1730 2032 1493 1731 2033 1487 1729 2031 1495 1732 2034 1489 1725 2027 1488 1724 2026 1494 1733 2035 1489 1725 2027 1495 1732 2034 1496 1734 2036 1490 1726 2028 1490 1726 2028 1496 1734 2036 1497 1735 2037 1491 1727 2029 871 990 1679 878 997 1686 1498 1736 2038 1492 1730 2032 1492 1730 2032 1498 1736 2038 1499 1737 2039 1493 1731 2033 1501 1738 2040 1495 1732 2034 1494 1733 2035 1500 1739 2041 1495 1732 2034 1501 1738 2040 1502 1740 2042 1496 1734 2036 1496 1734 2036 1502 1740 2042 1503 1741 2043 1497 1735 2037 878 997 1686 885 1004 1693 1504 1742 2044 1498 1736 2038 1498 1736 2038 1504 1742 2044 1505 1743 2045 1499 1737 2039 1507 1744 2046 1501 1738 2040 1500 1739 2041 1506 1745 2047 1501 1738 2040 1507 1744 2046 1508 1746 2048 1502 1740 2042 1502 1740 2042 1508 1746 2048 1509 1747 2049 1503 1741 2043 885 1004 1693 892 1011 1700 1510 1748 2050 1504 1742 2044 1504 1742 2044 1510 1748 2050 1511 1749 2051 1505 1743 2045 1882 1750 2052 1512 1751 2053 1507 1744 2046 1506 1745 2047 1507 1744 2046 1512 1751 2053 1513 1752 2054 1508 1746 2048 1508 1746 2048 1513 1752 2054 1883 1753 2055 1509 1747 2049 1509 1747 2049 1883 1753 2055 1514 1754 2056 1904 1755 2057 1904 1755 2057 1985 1019 1708 1986 1021 1710 1903 1756 2058 892 1011 1700 898 1023 1712 1515 1757 2059 1510 1748 2050 1510 1748 2050 1515 1757 2059 1516 1758 2060 1511 1749 2051 1312 1025 1714 905 1028 1717 1521 1759 2061 1881 1760 2062 1338 1565 1867 907 1029 1718 696 807 1496 1339 1567 1869 907 1029 1718 1338 1565 1867 1340 1569 1871 907 1029 1718 1339 1567 1869 1341 1571 1873 907 1029 1718 1340 1569 1871 1342 1573 1875 907 1029 1718 1341 1571 1873 1343 1575 1877 907 1029 1718 1342 1573 1875 1344 1577 1879 907 1029 1718 1343 1575 1877 1345 1579 1881 907 1029 1718 1344 1577 1879 1346 1581 1883 907 1029 1718 1345 1579 1881 1347 1583 1885 907 1029 1718 1346 1581 1883 1348 1585 1887 907 1029 1718 1347 1583 1885 1348 1585 1887 1897 1587 1889 907 1029 1718 1973 1589 1891 907 1029 1718 1897 1587 1889 1555 1761 692 1621 1762 693 1658 1763 694 1594 1764 695 1621 1762 693 1555 1761 692 1570 1765 696 1642 1766 697 1556 1767 698 1621 1762 693 1642 1766 697 1572 1768 699 1621 1762 693 1556 1767 698 1595 1769 700 1658 1763 694 1557 1770 701 1622 1771 702 1657 1772 703 1593 1773 704 1622 1771 702 1557 1770 701 1569 1774 705 1643 1775 706 1555 1761 692 1622 1771 702 1643 1775 706 1570 1765 696 1622 1771 702 1555 1761 692 1594 1764 695 1657 1772 703 1558 1776 707 1623 1777 708 1656 1778 709 1592 1779 710 1623 1777 708 1558 1776 707 1567 1780 711 1641 1781 712 1557 1770 701 1623 1777 708 1641 1781 712 1569 1774 705 1623 1777 708 1557 1770 701 1593 1773 704 1656 1778 709 1559 1782 713 1624 1783 714 1655 1784 715 1591 1785 716 1624 1783 714 1559 1782 713 1574 1786 717 1644 1787 718 1558 1776 707 1624 1783 714 1644 1787 718 1567 1780 711 1624 1783 714 1558 1776 707 1592 1779 710 1655 1784 715 1625 1788 719 1560 1789 720 1578 1790 721 1646 1791 722 1559 1782 713 1625 1788 719 1646 1791 722 1574 1786 717 1625 1788 719 1681 1792 723 1680 1793 724 1560 1789 720 1561 1794 725 1626 1795 726 1654 1796 727 1590 1797 728 1626 1795 726 1561 1794 725 1582 1798 729 1648 1799 730 1560 1789 720 1626 1795 726 1648 1799 730 1578 1790 721 1626 1795 726 1560 1789 720 1680 1793 724 1654 1796 727 1562 1800 731 1627 1801 732 1653 1802 733 1589 1803 734 1627 1801 732 1562 1800 731 1585 1804 735 1650 1805 736 1561 1794 725 1627 1801 732 1650 1805 736 1582 1798 729 1627 1801 732 1561 1794 725 1590 1797 728 1653 1802 733 1563 1806 737 1628 1807 738 1652 1808 739 1587 1809 740 1628 1807 738 1563 1806 737 1581 1810 741 1649 1811 742 1562 1800 731 1628 1807 738 1649 1811 742 1585 1804 735 1628 1807 738 1562 1800 731 1589 1803 734 1652 1808 739 1564 1812 743 1629 1813 744 1651 1814 745 1588 1815 746 1629 1813 744 1564 1812 743 1577 1816 747 1647 1817 748 1563 1806 737 1629 1813 744 1647 1817 748 1581 1810 741 1629 1813 744 1563 1806 737 1587 1809 740 1651 1814 745 1556 1767 698 1630 1818 749 1659 1819 750 1595 1769 700 1630 1818 749 1556 1767 698 1572 1768 699 1645 1820 752 1564 1812 743 1630 1818 749 1645 1820 752 1577 1816 747 1630 1818 749 1564 1812 743 1588 1815 746 1659 1819 750 1658 1763 694 1595 1769 700 1587 1809 740 1652 1808 739 1662 1821 2063 1600 1822 2064 1927 1823 2065 1926 1824 2066 1631 1825 2067 1537 1826 2068 1925 1827 2069 1926 1824 2066 1664 1828 2070 1604 1829 2071 1934 1830 2072 1932 1831 2073 1632 1832 2074 1539 1833 2075 1930 1834 2076 1932 1831 2073 1665 1835 2077 1523 1836 2078 1930 1834 2076 1928 1837 2079 1633 1838 2080 1565 1839 2081 1927 1823 2065 1928 1837 2079 1666 1840 2082 1522 1841 2083 1925 1827 2069 1929 1842 2084 1634 1843 2085 1538 1844 2086 1931 1845 2087 1929 1842 2084 1667 1846 2088 1524 1847 2089 1931 1845 2087 1933 1848 2090 1635 1849 2091 1540 1850 2092 1935 1851 2093 1933 1848 2090 1636 1852 2094 1541 1853 2095 1939 1854 2096 1937 1855 2097 1660 1856 2098 1596 1857 2099 1935 1851 2093 1937 1855 2097 1661 1858 2100 1598 1859 2101 1939 1854 2096 1941 1860 2102 1637 1861 2103 1543 1862 2104 1943 1863 2105 1941 1860 2102 1668 1864 2106 1525 1865 2107 1943 1863 2105 1944 1866 2108 1638 1867 2109 1544 1868 2110 1942 1869 2111 1944 1866 2108 1663 1870 2112 1602 1871 2113 1942 1869 2111 1940 1872 2114 1639 1873 2115 1542 1874 2116 1938 1875 2117 1940 1872 2114 1669 1876 2118 1526 1877 2119 1938 1875 2117 1936 1878 2120 1640 1879 2121 1566 1880 2122 1934 1830 2072 1936 1878 2120 1567 1780 711 1528 1881 944 1568 1882 949 1641 1781 712 1568 1883 949 1527 1884 947 1569 1774 705 1641 1781 712 1570 1765 696 1530 1885 946 1571 1886 948 1642 1766 697 1571 1887 948 1529 1888 942 1572 1768 699 1642 1766 697 1569 1774 705 1527 1889 947 1573 1890 945 1643 1775 706 1573 1891 945 1530 1892 946 1570 1765 696 1643 1775 706 1574 1786 717 1531 1893 940 1575 1894 943 1644 1787 718 1575 1895 943 1528 1896 944 1567 1780 711 1644 1787 718 1572 1768 699 1529 1897 942 1576 1898 941 1645 1820 752 1576 1899 941 1532 1900 938 1577 1816 747 1645 1820 752 1578 1790 721 1533 1901 936 1579 1902 939 1646 1791 722 1579 1903 939 1531 1904 940 1574 1786 717 1646 1791 722 1577 1816 747 1532 1905 938 1580 1906 937 1647 1817 748 1580 1907 937 1534 1908 934 1581 1810 741 1647 1817 748 1582 1798 729 1535 1909 931 1583 1910 935 1648 1799 730 1583 1911 935 1533 1912 936 1578 1790 721 1648 1799 730 1581 1810 741 1534 1913 934 1584 1914 933 1649 1811 742 1584 1915 933 1536 1916 932 1585 1804 735 1649 1811 742 1585 1804 735 1536 1917 932 1586 1918 930 1650 1805 736 1586 1919 930 1535 1920 931 1582 1798 729 1650 1805 736 1568 1921 2123 1528 1922 2124 1538 1844 2086 1634 1843 2085 1568 1923 2123 1634 1843 2085 1537 1826 2068 1527 1924 2125 1571 1925 2126 1530 1926 2127 1565 1839 2081 1633 1838 2080 1571 1927 2126 1633 1838 2080 1539 1833 2075 1529 1928 2128 1573 1929 2129 1527 1930 2125 1537 1826 2068 1631 1825 2067 1573 1931 2129 1631 1825 2067 1565 1839 2081 1530 1932 2127 1575 1933 2130 1531 1934 2131 1540 1850 2092 1635 1849 2091 1575 1935 2130 1635 1849 2091 1538 1844 2086 1528 1936 2124 1576 1937 2132 1529 1938 2128 1539 1833 2075 1632 1832 2074 1576 1939 2132 1632 1832 2074 1566 1880 2122 1532 1940 2133 1579 1941 2134 1533 1942 2135 1541 1853 2095 1636 1852 2094 1579 1943 2134 1636 1852 2094 1540 1850 2092 1531 1944 2131 1580 1945 2136 1532 1946 2133 1566 1880 2122 1640 1879 2121 1580 1947 2136 1640 1879 2121 1542 1874 2116 1534 1948 2137 1583 1949 2138 1535 1950 2139 1543 1862 2104 1637 1861 2103 1583 1951 2138 1637 1861 2103 1541 1853 2095 1533 1952 2135 1584 1953 2140 1534 1954 2137 1542 1874 2116 1639 1873 2115 1584 1955 2140 1639 1873 2115 1544 1868 2110 1536 1956 2141 1586 1957 2142 1536 1958 2141 1544 1868 2110 1638 1867 2109 1586 1959 2142 1638 1867 2109 1543 1862 2104 1535 1960 2139 1598 1859 2101 1546 1961 2143 1610 1962 2144 1660 1856 2098 1610 1962 2144 1545 1963 2145 1596 1857 2099 1660 1856 2098 1525 1865 2107 1547 1964 2146 1597 1965 2147 1661 1858 2100 1597 1965 2147 1546 1961 2143 1598 1859 2101 1661 1858 2100 1522 1841 2083 1549 1966 2148 1599 1967 2149 1662 1821 2063 1599 1967 2149 1548 1968 2150 1600 1822 2064 1662 1821 2063 1526 1877 2119 1551 1969 2151 1601 1970 2152 1663 1870 2112 1601 1970 2152 1550 1971 2153 1602 1871 2113 1663 1870 2112 1523 1836 2078 1553 1972 2154 1603 1973 2155 1664 1828 2070 1603 1973 2155 1552 1974 2156 1604 1829 2071 1664 1828 2070 1600 1822 2064 1548 1968 2150 1605 1975 2157 1665 1835 2077 1605 1975 2157 1553 1972 2154 1523 1836 2078 1665 1835 2077 1524 1847 2089 1554 1976 2158 1606 1977 2159 1666 1840 2082 1606 1977 2159 1549 1966 2148 1522 1841 2083 1666 1840 2082 1596 1857 2099 1545 1963 2145 1607 1978 2160 1667 1846 2088 1607 1978 2160 1554 1976 2158 1524 1847 2089 1667 1846 2088 1602 1871 2113 1550 1971 2153 1608 1979 2161 1668 1864 2106 1608 1979 2161 1547 1964 2146 1525 1865 2107 1668 1864 2106 1604 1829 2071 1552 1974 2156 1609 1980 2162 1669 1876 2118 1609 1980 2162 1551 1969 2151 1526 1877 2119 1669 1876 2118 1610 1962 2144 1546 1961 2143 1611 1981 2163 1670 1982 2164 1612 1983 2165 1545 1963 2145 1610 1962 2144 1670 1982 2164 1597 1965 2147 1547 1964 2146 1613 1984 2166 1671 1985 2167 1611 1981 2163 1546 1961 2143 1597 1965 2147 1671 1985 2167 1599 1967 2149 1549 1966 2148 1614 1986 2168 1672 1987 2169 1615 1988 2170 1548 1968 2150 1599 1967 2149 1672 1987 2169 1601 1970 2152 1551 1969 2151 1616 1989 2171 1673 1990 2172 1617 1991 2173 1550 1971 2153 1601 1970 2152 1673 1990 2172 1603 1973 2155 1553 1972 2154 1618 1992 2174 1674 1993 2175 1619 1994 2176 1552 1974 2156 1603 1973 2155 1674 1993 2175 1605 1975 2157 1548 1968 2150 1615 1988 2170 1675 1995 2177 1618 1992 2174 1553 1972 2154 1605 1975 2157 1675 1995 2177 1606 1977 2159 1554 1976 2158 1620 1996 2178 1676 1997 2179 1614 1986 2168 1549 1966 2148 1606 1977 2159 1676 1997 2179 1607 1978 2160 1545 1963 2145 1612 1983 2165 1677 1998 2180 1620 1996 2178 1554 1976 2158 1607 1978 2160 1677 1998 2180 1608 1979 2161 1550 1971 2153 1617 1991 2173 1678 1999 2181 1613 1984 2166 1547 1964 2146 1608 1979 2161 1678 1999 2181 1609 1980 2162 1552 1974 2156 1619 1994 2176 1679 2000 2182 1616 1989 2171 1551 1969 2151 1609 1980 2162 1679 2000 2182 1587 1809 740 1595 1769 700 1659 1819 750 1588 1815 746 1651 1814 745 1594 1764 695 1589 1803 734 1653 1802 733 1657 1772 703 1658 1763 694 1652 1808 739 1589 1803 734 1594 1764 695 1657 1772 703 1653 1802 733 1590 1797 728 1593 1773 704 1592 1779 710 1680 1793 724 1681 1792 723 1591 1785 716 1655 1784 715 1593 1773 704 1590 1797 728 1654 1796 727 1656 1778 709 1625 1788 719 1559 1782 713 1591 1785 716 1681 1792 723 1592 1779 710 1656 1778 709 1654 1796 727 1680 1793 724 1611 1981 2163 1519 2001 2183 1520 2002 2184 1670 1982 2164 1670 1982 2164 1520 2002 2184 1882 1750 2052 1612 1983 2165 1613 1984 2166 1517 2003 2185 1518 2004 2186 1671 1985 2167 1614 1986 2168 1488 1724 2026 1485 1723 2025 1672 1987 2169 1672 1987 2169 1485 1723 2025 1476 1714 2016 1615 1988 2170 1616 1989 2171 1499 1737 2039 1505 1743 2045 1673 1990 2172 1673 1990 2172 1505 1743 2045 1511 1749 2051 1617 1991 2173 1618 1992 2174 1474 1712 2014 1484 1722 2024 1674 1993 2175 1674 1993 2175 1484 1722 2024 1487 1729 2031 1619 1994 2176 1615 1988 2170 1476 1714 2016 1475 1713 2015 1675 1995 2177 1675 1995 2177 1475 1713 2015 1474 1712 2014 1618 1992 2174 1620 1996 2178 1500 1739 2041 1494 1733 2035 1676 1997 2179 1676 1997 2179 1494 1733 2035 1488 1724 2026 1614 1986 2168 1677 1998 2180 1506 1745 2047 1500 1739 2041 1620 1996 2178 1617 1991 2173 1511 1749 2051 1516 1758 2060 1678 1999 2181 1678 1999 2181 1516 1758 2060 1517 2003 2185 1613 1984 2166 1619 1994 2176 1487 1729 2031 1493 1731 2033 1679 2000 2182 1679 2000 2182 1493 1731 2033 1499 1737 2039 1616 1989 2171 1671 1985 2167 1518 2004 2186 1519 2001 2183 1611 1981 2163 1487 1729 2031 1484 1722 2024 1483 1721 2023 1484 1722 2024 1474 1712 2014 1473 1711 2013 1677 1998 2180 1612 1983 2165 1882 1750 2052 1506 1745 2047 1807 2005 620 1687 2006 621 1721 2007 622 1721 2007 622 1687 2006 621 1722 2008 623 1807 2005 620 1723 2009 624 1070 1282 380 1092 1281 379 1808 2010 625 1878 2011 626 1879 2012 627 1723 2009 624 1808 2010 625 1723 2009 624 1879 2012 627 1880 2013 628 1809 2014 629 1110 1287 385 1093 1289 387 1809 2014 629 1857 2015 630 1093 1289 387 1070 1282 380 1723 2009 624 1809 2014 629 1789 2016 631 1867 2017 632 1724 2018 633 1688 2019 634 1683 2020 635 1724 2018 633 1867 2017 632 1685 2021 636 1690 2022 637 1725 2023 638 1720 2024 639 1682 2025 640 1071 1300 398 1069 2026 399 1720 2027 639 1725 2023 638 1724 2018 633 1683 2028 635 1726 2029 641 1810 2030 642 1726 2031 641 1684 2032 643 1847 2033 644 1810 2030 642 1847 2033 644 1792 2034 645 1727 2035 646 1810 2030 642 1727 2035 646 1688 2019 634 1724 2018 633 1810 2030 642 1788 2036 647 1844 2037 648 1728 2038 649 1691 2039 650 1789 2016 631 1688 2019 634 1728 2038 649 1844 2037 648 1729 2040 651 1693 2041 652 1730 2042 653 1811 2043 654 1730 2042 653 1694 2044 655 1815 2045 656 1811 2043 654 1815 2045 656 1731 2046 657 1811 2043 654 1731 2046 657 1692 2047 658 1729 2040 651 1811 2043 654 1732 2048 659 1690 2022 637 1689 2049 660 1812 2050 661 1790 2051 662 1695 2052 663 1732 2048 659 1812 2050 661 1732 2048 659 1695 2052 663 1733 2053 664 1813 2054 665 1733 2053 664 1072 1331 426 1094 1330 425 1813 2054 665 1094 1330 425 1071 1300 398 1725 2023 638 1813 2054 665 1725 2023 638 1690 2022 637 1732 2048 659 1813 2054 665 1848 2055 666 1793 2056 667 1734 2057 668 1814 2058 669 1734 2057 668 1691 2039 650 1728 2038 649 1814 2058 669 1728 2038 649 1688 2019 634 1727 2035 646 1814 2058 669 1727 2035 646 1792 2034 645 1848 2055 666 1814 2058 669 1694 2044 655 1696 2059 670 1735 2060 671 1815 2045 656 1735 2060 671 1736 2061 672 1815 2045 656 1778 2062 673 1698 2063 674 1737 2064 675 1699 2065 676 1737 2064 675 1779 2066 677 1866 2067 678 1699 2065 676 1738 2068 679 1073 1348 443 1095 1347 442 1816 2069 680 1095 1347 442 1074 1350 445 1836 2070 681 1816 2069 680 1836 2070 681 1779 2066 677 1737 2064 675 1816 2069 680 1737 2064 675 1698 2063 674 1738 2068 679 1816 2069 680 1798 2071 682 1701 2072 683 1740 2073 684 1817 2074 685 1740 2073 684 1700 2075 686 1739 2076 687 1817 2074 685 1741 2077 688 1702 2078 689 1742 2079 690 1818 2080 691 1742 2079 690 1686 2081 751 1807 2005 620 1818 2080 691 1741 2077 688 1818 2080 691 1744 2082 753 1871 2083 754 1807 2005 620 1722 2008 623 1743 2084 755 1818 2080 691 1743 2084 755 1703 2085 756 1744 2082 753 1818 2080 691 1745 2086 757 1876 2087 758 1877 2088 759 1819 2089 760 1877 2088 759 1878 2011 626 1808 2010 625 1819 2089 760 1808 2010 625 1092 1281 379 1096 1369 464 1819 2089 760 1096 1369 464 1075 1370 465 1745 2086 757 1819 2089 760 1788 2036 647 1691 2039 650 1746 2090 761 1843 2091 762 1704 2092 763 1843 2091 762 1746 2090 761 1705 2093 764 1747 2094 765 1706 2095 766 1748 2096 767 1820 2097 768 1748 2096 767 1707 2098 769 1749 2099 770 1820 2097 768 1749 2099 770 1702 2078 689 1741 2077 688 1820 2097 768 1750 2100 771 1706 2095 766 1747 2094 765 1821 2101 772 1751 2102 773 1871 2083 754 1744 2082 753 1805 2103 774 1751 2102 773 1696 2059 670 1752 2104 775 1821 2101 772 1752 2104 775 1708 2105 776 1750 2100 771 1821 2101 772 1753 2106 777 1702 2078 689 1749 2099 770 1822 2107 778 1749 2099 770 1707 2098 769 1754 2108 779 1822 2107 778 1754 2108 779 1802 2109 780 1856 2110 781 1822 2107 778 1856 2110 781 1803 2111 782 1753 2106 777 1822 2107 778 1709 2112 783 1755 2113 784 1842 2114 785 1787 2115 786 1786 2116 787 1842 2114 785 1755 2113 784 1710 2117 788 1756 2118 789 1712 2119 790 1757 2120 791 1823 2121 792 1757 2120 791 1714 2122 793 1758 2123 794 1823 2121 792 1758 2123 794 1713 2124 795 1759 2125 796 1823 2121 792 1759 2125 796 1711 2126 797 1756 2118 789 1823 2121 792 1760 2127 798 1715 2128 799 1761 2129 800 1824 2130 801 1761 2129 800 1700 2075 686 1762 2131 802 1824 2130 801 1762 2131 802 1712 2119 790 1756 2118 789 1824 2130 801 1756 2118 789 1711 2126 797 1760 2127 798 1824 2130 801 1763 2132 803 1795 2133 804 1851 2134 805 1825 2135 806 1851 2134 805 1796 2136 807 1764 2137 808 1825 2135 806 1764 2137 808 1710 2117 788 1755 2113 784 1825 2135 806 1755 2113 784 1709 2112 783 1763 2132 803 1825 2135 806 1765 2138 809 1713 2124 795 1758 2123 794 1826 2139 810 1758 2123 794 1714 2122 793 1766 2140 811 1826 2139 810 1766 2140 811 1800 2141 812 1854 2142 813 1826 2139 810 1854 2142 813 1801 2143 814 1765 2138 809 1826 2139 810 1786 2116 787 1710 2117 788 1764 2137 808 1841 2144 815 1797 2145 816 1841 2144 815 1764 2137 808 1796 2136 807 1767 2146 817 1799 2147 818 1853 2148 819 1827 2149 820 1853 2148 819 1800 2141 812 1766 2140 811 1827 2149 820 1766 2140 811 1714 2122 793 1757 2120 791 1827 2149 820 1757 2120 791 1712 2119 790 1767 2146 817 1827 2149 820 1768 2150 821 1695 2052 663 1790 2051 662 1828 2151 822 1791 2152 823 1716 2153 824 1768 2150 821 1828 2151 822 1770 2154 825 1717 2155 826 1769 2156 827 1829 2157 828 1744 2082 753 1703 2085 756 1771 2158 829 1830 2159 830 1872 2160 831 1771 2158 829 1875 2161 832 1874 2162 833 1768 2150 821 1716 2153 824 1773 2163 834 1831 2164 835 1773 2163 834 1076 1447 542 1097 1446 541 1831 2164 835 1097 1446 541 1072 1331 426 1733 2053 664 1831 2164 835 1733 2053 664 1695 2052 663 1768 2150 821 1831 2164 835 1875 2161 832 1876 2087 758 1745 2086 757 1832 2165 836 1745 2086 757 1075 1370 465 1098 1449 544 1832 2165 836 1098 1449 544 1077 1451 546 1774 2166 837 1832 2165 836 1774 2166 837 1874 2162 833 1875 2161 832 1832 2165 836 1718 2167 838 1716 2153 824 1791 2152 823 1846 2168 839 1769 2156 827 1717 2155 826 1775 2169 840 1776 2170 841 1835 2171 842 1872 2160 831 1874 2162 833 1873 2172 843 1078 1458 553 1076 1447 542 1773 2163 834 1833 2173 844 1773 2163 834 1716 2153 824 1718 2167 838 1833 2173 844 1774 2166 837 1077 1451 546 1099 1461 556 1834 2174 845 1873 2172 843 1874 2162 833 1774 2166 837 1834 2174 845 1776 2170 841 1775 2169 840 1778 2062 673 1699 2065 676 1074 1350 445 1078 1458 553 1833 2173 844 1836 2070 681 1833 2173 844 1718 2167 838 1779 2066 677 1836 2070 681 1849 2175 846 1794 2176 847 1780 2177 848 1837 2178 849 1780 2177 848 1705 2093 764 1746 2090 761 1837 2178 849 1746 2090 761 1691 2039 650 1734 2057 668 1837 2178 849 1734 2057 668 1793 2056 667 1849 2175 846 1837 2178 849 1855 2179 850 1802 2109 780 1754 2108 779 1838 2180 851 1754 2108 779 1707 2098 769 1781 2181 852 1838 2180 851 1781 2181 852 1713 2124 795 1765 2138 809 1838 2180 851 1765 2138 809 1801 2143 814 1855 2179 850 1838 2180 851 1719 2182 853 1715 2128 799 1782 2183 854 1839 2184 855 1782 2183 854 1708 2105 776 1783 2185 856 1839 2184 855 1704 2092 763 1705 2093 764 1784 2186 857 1870 2187 858 1709 2112 783 1787 2115 786 1870 2187 858 1784 2186 857 1785 2188 859 1711 2126 797 1759 2125 796 1840 2189 860 1759 2125 796 1713 2124 795 1781 2181 852 1840 2189 860 1781 2181 852 1707 2098 769 1748 2096 767 1840 2189 860 1748 2096 767 1706 2095 766 1785 2188 859 1840 2189 860 1797 2145 816 1798 2071 682 1817 2074 685 1841 2144 815 1817 2074 685 1739 2076 687 1786 2116 787 1841 2144 815 1786 2116 787 1739 2076 687 1863 2190 861 1842 2114 785 1863 2190 861 1719 2182 853 1787 2115 786 1842 2114 785 1704 2092 763 1783 2185 856 1860 2191 862 1843 2091 762 1860 2191 862 1694 2044 655 1788 2036 647 1843 2091 762 1788 2036 647 1694 2044 655 1730 2042 653 1844 2037 648 1730 2042 653 1693 2041 652 1789 2016 631 1844 2037 648 1685 2192 636 1693 2041 652 1729 2040 651 1845 2193 863 1896 2194 864 1692 2047 658 1731 2046 657 1829 2157 828 1769 2156 827 1791 2152 823 1828 2151 822 1791 2152 823 1769 2156 827 1776 2170 841 1846 2168 839 1846 2168 839 1776 2170 841 1699 2065 676 1866 2067 678 1684 2195 643 1068 2196 577 1100 1483 576 1847 2033 644 1100 1483 576 1079 1485 578 1792 2034 645 1847 2033 644 1792 2034 645 1079 1485 578 1101 1486 579 1848 2055 666 1101 1486 579 1080 1487 580 1793 2056 667 1848 2055 666 1793 2056 667 1080 1487 580 1102 1488 581 1849 2175 846 1102 1488 581 1081 1489 582 1794 2176 847 1849 2175 846 1794 2176 847 1081 1489 582 1103 1491 584 1850 2197 865 1103 1491 584 1082 1492 585 1795 2133 804 1850 2197 865 1795 2133 804 1082 1492 585 1104 1493 586 1851 2134 805 1104 1493 586 1083 1494 587 1796 2136 807 1851 2134 805 1083 1494 587 1084 1495 588 1797 2145 816 1796 2136 807 1084 1495 588 1085 1496 589 1798 2071 682 1797 2145 816 1701 2072 683 1087 1499 592 1105 1498 591 1852 2198 866 1105 1498 591 1086 1500 593 1799 2147 818 1852 2198 866 1106 1501 594 1088 1502 595 1800 2141 812 1853 2148 819 1799 2147 818 1086 1500 593 1106 1501 594 1853 2148 819 1800 2141 812 1088 1502 595 1107 1503 596 1854 2142 813 1107 1503 596 1089 1504 597 1801 2143 814 1854 2142 813 1108 1505 598 1090 1506 599 1802 2109 780 1855 2179 850 1801 2143 814 1089 1504 597 1108 1505 598 1855 2179 850 1802 2109 780 1090 1506 599 1109 1507 600 1856 2110 781 1109 1507 600 1091 1508 601 1803 2111 782 1856 2110 781 1803 2111 782 1091 1508 601 1110 1287 385 1857 2015 630 1738 2068 679 1698 2063 674 1804 2199 867 1858 2200 868 1804 2199 867 1873 2172 843 1834 2174 845 1858 2200 868 1834 2174 845 1099 1461 556 1111 1511 604 1858 2200 868 1111 1511 604 1073 1348 443 1738 2068 679 1858 2200 868 1085 1496 589 1087 1499 592 1701 2072 683 1798 2071 682 1770 2154 825 1697 2201 869 1805 2103 774 1859 2202 870 1805 2103 774 1744 2082 753 1830 2159 830 1859 2202 870 1830 2159 830 1772 2203 871 1806 2204 872 1859 2202 870 1806 2204 872 1717 2155 826 1770 2154 825 1859 2202 870 1783 2185 856 1708 2105 776 1752 2104 775 1860 2191 862 1696 2059 670 1694 2044 655 1860 2191 862 1752 2104 775 1775 2169 840 1717 2155 826 1806 2204 872 1861 2205 873 1806 2204 872 1772 2203 871 1777 2206 874 1861 2205 873 1785 2188 859 1706 2095 766 1750 2100 771 1862 2207 875 1750 2100 771 1708 2105 776 1782 2183 854 1862 2207 875 1782 2183 854 1715 2128 799 1760 2127 798 1862 2207 875 1760 2127 798 1711 2126 797 1785 2188 859 1862 2207 875 1778 2062 673 1775 2169 840 1861 2205 873 1864 2208 876 1861 2205 873 1777 2206 874 1835 2171 842 1864 2208 876 1739 2076 687 1700 2075 686 1761 2129 800 1863 2190 861 1761 2129 800 1715 2128 799 1719 2182 853 1863 2190 861 1804 2199 867 1698 2063 674 1778 2062 673 1864 2208 876 1852 2198 866 1799 2147 818 1767 2146 817 1865 2209 877 1767 2146 817 1712 2119 790 1762 2131 802 1865 2209 877 1762 2131 802 1700 2075 686 1740 2073 684 1865 2209 877 1740 2073 684 1701 2072 683 1852 2198 866 1865 2209 877 1779 2066 677 1718 2167 838 1846 2168 839 1866 2067 678 1789 2016 631 1693 2041 652 1685 2210 636 1867 2017 632 1805 2103 774 1697 2201 869 1735 2060 671 1696 2059 670 1751 2102 773 1753 2106 777 1803 2111 782 1857 2015 630 1868 2211 878 1857 2015 630 1809 2014 629 1868 2211 878 1809 2014 629 1880 2013 628 1868 2211 878 1742 2079 690 1702 2078 689 1753 2106 777 1868 2211 878 1780 2177 848 1794 2176 847 1850 2197 865 1869 2212 879 1850 2197 865 1795 2133 804 1763 2132 803 1869 2212 879 1763 2132 803 1709 2112 783 1784 2186 857 1869 2212 879 1784 2186 857 1705 2093 764 1780 2177 848 1869 2212 879 1787 2115 786 1719 2182 853 1839 2184 855 1870 2187 858 1839 2184 855 1783 2185 856 1704 2092 763 1870 2187 858 1871 2083 754 1751 2102 773 1821 2101 772 1747 2094 765 1741 2077 688 1871 2083 754 1747 2094 765 1820 2097 768 1772 2203 871 1872 2160 831 1835 2171 842 1777 2206 874 1771 2158 829 1872 2160 831 1772 2203 871 1830 2159 830 1835 2171 842 1873 2172 843 1804 2199 867 1864 2208 876 1771 2158 829 1703 2085 756 1876 2087 758 1875 2161 832 1877 2088 759 1876 2087 758 1703 2085 756 1743 2084 755 1743 2084 755 1722 2008 623 1878 2011 626 1877 2088 759 1722 2008 623 1687 2006 621 1879 2012 627 1878 2011 626 1880 2013 628 1879 2012 627 1687 2006 621 1686 2081 751 1868 2211 878 1880 2013 628 1686 2081 751 1742 2079 690 1068 2213 1843 1684 2214 2187 1886 2215 2188 1319 1525 1844 1518 2004 2186 1521 1759 2061 1886 2215 2188 1887 2216 2189 1518 2004 2186 1517 2003 2185 1881 1760 2062 1521 1759 2061 1881 1760 2062 1517 2003 2185 1516 1758 2060 1515 1757 2059 898 1023 1712 1312 1025 1714 1881 1760 2062 1515 1757 2059 1683 2217 2190 1685 2218 2191 1889 2219 2192 1888 2220 2193 1882 1750 2052 1520 2002 2184 1889 2219 2192 1890 2221 2194 1884 2222 2195 1885 2223 2196 1892 2224 2197 1891 2225 2198 1315 1538 1857 1514 1754 2056 1898 2226 2199 1320 1539 1858 1519 2001 2183 1518 2004 2186 1887 2216 2189 1888 2220 2193 1512 1751 2053 1882 1750 2052 1890 2221 2194 1891 2225 2198 1729 2040 651 1692 2047 658 1884 2227 880 1845 2228 863 1690 2022 637 1682 2229 640 1885 2230 881 1689 2049 660 1883 1753 2055 1513 1752 2054 1892 2224 2197 1893 2231 2200 1885 2232 881 1884 2233 880 1692 2047 658 1689 2049 660 1521 1759 2061 905 1028 1717 1319 1525 1844 1886 2215 2188 1720 2234 2201 1069 2235 1862 1320 1539 1858 1898 2226 2199 1684 2236 2187 1726 2237 2202 1887 2216 2189 1886 2215 2188 1726 2238 2202 1683 2239 2190 1888 2220 2193 1887 2216 2189 1520 2002 2184 1519 2001 2183 1888 2220 2193 1889 2219 2192 1685 2240 2191 1845 2241 2203 1890 2221 2194 1889 2219 2192 1845 2242 2203 1884 2243 2195 1891 2225 2198 1890 2221 2194 1513 1752 2054 1512 1751 2053 1891 2225 2198 1892 2224 2197 1885 2244 2196 1682 2245 2204 1893 2231 2200 1892 2224 2197 1682 2246 2204 1720 2247 2201 1898 2226 2199 1893 2231 2200 1894 2248 882 1697 2201 869 1770 2154 825 1829 2157 828 1790 2051 662 1894 2248 882 1829 2157 828 1828 2151 822 1895 2249 883 1894 2248 882 1790 2051 662 1812 2050 661 1736 2061 672 1735 2060 671 1697 2201 869 1894 2248 882 1896 2194 864 1736 2061 672 1894 2248 882 1895 2249 883 1689 2049 660 1692 2047 658 1896 2194 864 1895 2249 883 1689 2049 660 1895 2249 883 1812 2050 661 1731 2046 657 1815 2045 656 1736 2061 672 1896 2194 864 1883 1753 2055 1893 2231 2200 1898 2226 2199 1514 1754 2056 1359 1584 1886 1371 1600 1902 1899 1601 1903 1360 1586 1888 1371 1600 1902 1382 1613 1915 1900 1614 1916 1899 1601 1903 1382 1613 1915 1393 1626 1928 1901 1627 1929 1900 1614 1916 1393 1626 1928 1404 1639 1941 1902 1640 1942 1901 1627 1929 1404 1639 1941 1415 1652 1954 350 790 1479 1902 1640 1942 1415 1652 1954 1426 1664 1966 433 793 1482 350 790 1479 1497 1735 2037 1903 1756 2058 430 806 1495 1503 1741 2043 1509 1747 2049 1904 1755 2057 1903 1756 2058 1051 1105 1734 986 1090 1719 1906 1093 1722 1905 1106 1735 1048 1091 1720 908 1109 1738 1908 1096 1725 1907 1092 1721 1017 1095 1724 951 1107 1736 1906 1093 1722 1907 1092 1721 1019 1108 1737 925 1101 1730 1909 1103 1732 1905 1106 1735 1020 1113 1742 923 1094 1723 1908 1096 1725 1910 1111 1740 1050 1098 1727 909 1104 1733 1909 1103 1732 1911 1099 1728 1052 1110 1739 910 1115 1744 1912 1114 1743 1910 1111 1740 1018 1102 1731 952 1148 1777 1913 1100 1729 1911 1099 1728 1021 1119 1748 924 1112 1741 1912 1114 1743 1914 1117 1746 1055 1146 1775 990 1097 1726 1913 1100 1729 1915 1147 1776 1053 1116 1745 982 1125 1754 1916 1120 1749 1914 1117 1746 1026 1149 1778 928 1142 1771 1917 1144 1773 1915 1147 1776 1022 1122 1751 926 1118 1747 1916 1120 1749 1918 1123 1752 1049 1140 1769 912 1145 1774 1917 1144 1773 1919 1141 1770 1046 1126 1755 984 1127 1756 1920 1124 1753 1918 1123 1752 1025 1143 1772 930 1136 1765 1921 1138 1767 1919 1141 1770 1023 1131 1760 927 1121 1750 1920 1124 1753 1922 1129 1758 1054 1134 1763 988 1139 1768 1921 1138 1767 1923 1135 1764 1047 1128 1757 911 1133 1762 1924 1132 1761 1922 1129 1758 1024 1137 1766 929 1130 1759 1924 1132 1761 1923 1135 1764 1522 1841 2083 1662 1821 2063 1926 1824 2066 1925 1827 2069 1600 1822 2064 1665 1835 2077 1928 1837 2079 1927 1823 2065 1565 1839 2081 1631 1825 2067 1926 1824 2066 1927 1823 2065 1537 1826 2068 1634 1843 2085 1929 1842 2084 1925 1827 2069 1539 1833 2075 1633 1838 2080 1928 1837 2079 1930 1834 2076 1524 1847 2089 1666 1840 2082 1929 1842 2084 1931 1845 2087 1523 1836 2078 1664 1828 2070 1932 1831 2073 1930 1834 2076 1538 1844 2086 1635 1849 2091 1933 1848 2090 1931 1845 2087 1566 1880 2122 1632 1832 2074 1932 1831 2073 1934 1830 2072 1596 1857 2099 1667 1846 2088 1933 1848 2090 1935 1851 2093 1604 1829 2071 1669 1876 2118 1936 1878 2120 1934 1830 2072 1540 1850 2092 1636 1852 2094 1937 1855 2097 1935 1851 2093 1542 1874 2116 1640 1879 2121 1936 1878 2120 1938 1875 2117 1598 1859 2101 1660 1856 2098 1937 1855 2097 1939 1854 2096 1526 1877 2119 1663 1870 2112 1940 1872 2114 1938 1875 2117 1541 1853 2095 1637 1861 2103 1941 1860 2102 1939 1854 2096 1544 1868 2110 1639 1873 2115 1940 1872 2114 1942 1869 2111 1525 1865 2107 1661 1858 2100 1941 1860 2102 1943 1863 2105 1602 1871 2113 1668 1864 2106 1944 1866 2108 1942 1869 2111 1543 1862 2104 1638 1867 2109 1944 1866 2108 1943 1863 2105 651 570 1332 1945 675 1416 2086 2250 2205 2087 571 1333 1964 507 1303 374 512 1308 393 653 1394 1945 675 1416 2086 2250 2205 1945 675 1416 393 653 1394 2107 723 1448 401 620 1368 521 619 1367 1948 772 1467 1949 771 1466 579 623 1371 660 630 1378 1950 770 1465 1949 771 1466 402 628 1376 524 626 1374 1950 770 1465 1951 769 1464 578 631 1379 577 664 1405 1952 767 1462 1951 769 1464 577 664 1405 2094 700 1429 2096 768 1463 1952 767 1462 419 742 977 584 693 281 1954 765 1000 1955 764 999 575 553 236 659 556 239 1957 762 997 1956 763 998 404 636 250 527 634 248 1957 762 997 1958 761 996 574 558 241 658 569 245 1959 760 995 1958 761 996 407 643 257 530 641 255 1959 760 995 1960 759 994 573 568 244 657 672 268 1961 758 993 1960 759 994 412 649 263 533 647 261 1961 758 993 1962 757 992 571 755 990 671 732 309 1947 734 311 1963 756 991 1470 1708 2010 1481 1719 2021 347 801 1490 431 800 1489 1459 1697 1999 1470 1708 2010 431 800 1489 348 798 1487 1448 1686 1988 1459 1697 1999 348 798 1487 432 797 1486 1437 1675 1977 1448 1686 1988 432 797 1486 349 794 1483 1491 1727 2029 351 803 1492 347 801 1490 1481 1719 2021 1497 1735 2037 430 806 1495 351 803 1492 1491 1727 2029 435 438 1234 430 806 1495 1903 1756 2058 1986 1021 1710 435 438 1234 1986 1021 1710 320 1020 1709 88 375 1186 433 793 1482 1426 1664 1966 1437 1675 1977 349 794 1483 2048 2251 2206 2049 2252 2207 1973 1589 1891 1972 1588 1890 1902 1640 1942 350 790 1479 434 436 1232 1974 1641 1943 2047 2253 2208 2048 2251 2206 1972 1588 1890 1975 1602 1904 2046 2254 2209 2047 2253 2208 1975 1602 1904 1976 1615 1917 2045 2255 2210 2046 2254 2209 1976 1615 1917 1977 1628 1930 2044 1653 1955 2045 2255 2210 1977 1628 1930 1974 1641 1943 606 781 1473 684 410 1214 2026 413 1217 2027 423 2211 310 111 904 1978 113 906 2025 412 1216 2024 409 1213 867 985 1674 858 976 1665 4 371 1182 84 373 1184 858 976 1665 845 964 1653 0 369 1180 4 371 1182 721 832 1521 1331 831 1520 1980 836 1525 1979 835 1524 774 2256 2212 3 360 1171 87 359 1170 1981 892 1581 722 834 1523 735 2257 2213 1982 850 1539 1979 835 1524 735 2257 2213 748 2258 2214 1983 864 1553 1982 850 1539 748 2258 2214 761 2259 2215 1984 878 1567 1983 864 1553 761 2259 2215 774 2256 2212 1981 892 1581 1984 878 1567 810 928 1617 798 916 1605 86 364 1175 1 365 1176 1 365 1176 85 367 1178 822 940 1629 810 928 1617 834 952 1641 822 940 1629 85 367 1178 0 369 1180 845 964 1653 834 952 1641 0 369 1180 88 375 1186 320 1020 1709 2015 2260 2216 2015 2260 2216 84 373 1184 88 375 1186 1904 1755 2057 1514 1754 2056 1315 1538 1857 1985 1019 1708 1337 1017 1706 1985 1019 1708 1315 1538 1857 897 1018 1707 90 2 28 243 1 26 1987 2261 2217 1988 2262 2218 243 1 26 91 4 30 1989 2263 2219 1987 2261 2217 91 4 30 244 7 35 1990 2264 2220 1989 2263 2219 244 7 35 299 8 36 1991 2265 2221 1990 2264 2220 164 179 1042 163 178 1041 1992 2266 2222 1993 2267 2223 266 181 1045 165 180 1043 1994 2268 2224 1995 2269 2225 163 178 1041 266 181 1045 1995 2269 2225 1992 2266 2222 288 184 1048 90 2 28 1988 2262 2218 1996 2270 2226 167 186 1050 164 179 1042 1993 2267 2223 1997 2271 2227 324 333 1144 288 184 1048 1996 2270 2226 1998 2272 2228 315 351 1162 167 186 1050 1997 2271 2227 1999 2273 2229 165 180 1043 324 333 1144 1998 2272 2228 1994 2268 2224 1991 2265 2221 299 8 36 2017 378 1189 2018 2274 2230 690 432 1228 315 351 1162 1999 2273 2229 2001 2275 2231 622 442 1238 437 441 1237 2002 2276 2232 2003 2277 2233 438 443 1239 622 442 1238 2003 2277 2233 2004 2278 2234 623 446 1242 438 443 1239 2004 2278 2234 2005 2279 2235 440 447 1243 623 446 1242 2005 2279 2235 2006 2280 2236 519 618 1366 520 617 1365 2007 2281 2237 2008 2282 2238 521 619 1367 645 622 1370 2009 2283 2239 2010 2284 2240 645 622 1370 519 618 1366 2008 2282 2238 2009 2283 2239 437 441 1237 661 624 1372 2011 2285 2241 2002 2276 2232 520 617 1365 523 625 1373 2012 2286 2242 2007 2281 2237 661 624 1372 1948 772 1467 2013 2287 2243 2011 2285 2241 672 774 1469 440 447 1243 2006 2280 2236 2000 2288 2244 523 625 1373 690 432 1228 2001 2275 2231 2012 2286 2242 1948 772 1467 521 619 1367 2010 2284 2240 2013 2287 2243 1988 2262 2218 1987 2261 2217 2014 2289 2245 1987 2261 2217 1989 2263 2219 2014 2289 2245 1989 2263 2219 1990 2264 2220 2014 2289 2245 1990 2264 2220 1991 2265 2221 2014 2289 2245 1993 2267 2223 1992 2266 2222 2014 2289 2245 1995 2269 2225 1994 2268 2224 2014 2289 2245 1992 2266 2222 1995 2269 2225 2014 2289 2245 1996 2270 2226 1988 2262 2218 2014 2289 2245 1997 2271 2227 1993 2267 2223 2014 2289 2245 1998 2272 2228 1996 2270 2226 2014 2289 2245 1999 2273 2229 1997 2271 2227 2014 2289 2245 1994 2268 2224 1998 2272 2228 2014 2289 2245 1991 2265 2221 2018 2274 2230 2000 2288 2244 2014 2289 2245 2001 2275 2231 1999 2273 2229 2014 2289 2245 2003 2277 2233 2002 2276 2232 2014 2289 2245 2004 2278 2234 2003 2277 2233 2014 2289 2245 2005 2279 2235 2004 2278 2234 2014 2289 2245 2006 2280 2236 2005 2279 2235 2014 2289 2245 2008 2282 2238 2007 2281 2237 2014 2289 2245 2010 2284 2240 2009 2283 2239 2014 2289 2245 2009 2283 2239 2008 2282 2238 2014 2289 2245 2002 2276 2232 2011 2285 2241 2014 2289 2245 2007 2281 2237 2012 2286 2242 2014 2289 2245 2011 2285 2241 2013 2287 2243 2014 2289 2245 2000 2288 2244 2006 2280 2236 2014 2289 2245 2012 2286 2242 2001 2275 2231 2014 2289 2245 2013 2287 2243 2010 2284 2240 2014 2289 2245 2015 2260 2216 320 1020 1709 884 1002 1691 877 995 1684 877 995 1684 867 985 1674 84 373 1184 2015 2260 2216 1497 1735 2037 1503 1741 2043 1903 1756 2058 672 774 1469 2000 2288 2244 2018 2274 2230 2017 378 1189 308 85 74 228 88 77 2020 406 151 2019 402 150 673 775 1470 590 773 1468 2022 377 1188 2021 379 1190 590 773 1468 672 774 1469 2017 378 1189 2022 377 1188 591 776 1471 673 775 1470 2021 379 1190 2023 380 1191 683 780 1472 591 776 1471 2023 380 1191 2024 409 1213 604 411 1215 683 780 1472 2024 409 1213 2025 412 1216 1978 113 906 142 124 914 2026 413 1217 2025 412 1216 142 124 914 229 126 916 2027 423 2211 2026 413 1217 687 782 229 606 781 228 2027 423 153 2028 422 152 607 783 230 687 782 229 2028 422 152 2029 424 154 688 784 231 607 783 230 2029 424 154 2030 425 155 603 778 224 688 784 231 2030 425 155 2031 408 147 682 779 225 603 778 224 2031 408 147 2032 407 146 601 777 222 682 779 225 2032 407 146 2033 403 145 681 405 223 601 777 222 2033 403 145 2019 402 2263 2020 406 151 228 88 77 312 154 107 2016 420 160 312 154 107 41 140 103 2034 414 156 2016 420 160 41 140 103 311 135 100 2035 415 157 2034 414 156 311 135 921 29 77 897 2036 394 1205 2035 415 1218 29 77 897 307 76 896 2037 395 1206 2036 394 1205 307 76 896 227 79 899 2038 398 1209 2037 395 1206 227 79 899 45 81 901 2039 400 1211 2038 398 1209 45 81 901 162 353 1164 2040 428 1224 2039 400 1211 162 353 1164 79 355 1166 2041 430 1226 2040 428 1224 79 355 1166 233 358 1169 2042 433 1229 2041 430 1226 233 358 1169 3 360 1171 2043 435 1231 2042 433 1229 3 360 1171 774 2256 2212 2044 1653 1955 2043 435 1231 774 2256 2212 761 2259 2215 2045 2255 2210 2044 1653 1955 761 2259 2215 748 2258 2214 2046 2254 2209 2045 2255 2210 748 2258 2214 735 2257 2213 2047 2253 2208 2046 2254 2209 735 2257 2213 722 834 1523 2048 2251 2206 2047 2253 2208 722 834 1523 708 833 1522 2049 2252 2207 2048 2251 2206 907 1029 1718 2049 2252 2207 708 833 1522 1973 1589 1891 2049 2252 2207 907 1029 1718 907 1029 1718 1980 836 1525 1331 831 1520 2050 292 123 2051 291 122 2065 133 1002 2064 288 1003 282 294 125 322 296 127 2067 376 1004 2066 134 1005 2051 291 122 282 294 125 2066 134 1005 2065 133 1002 185 244 52 278 242 50 2069 237 1006 2068 245 1007 184 241 49 279 251 56 2071 246 1008 2070 238 1009 278 242 50 184 241 49 2070 238 1009 2069 237 1006 2052 263 64 185 244 52 2068 245 1007 2072 261 1010 186 250 55 2050 292 123 2064 288 1003 2073 247 1011 279 251 56 186 250 55 2073 247 1011 2071 246 1008 187 259 1104 280 257 1103 2075 252 1099 2074 260 1105 2053 256 59 2054 327 235 2077 328 1014 2076 253 1015 280 257 60 2053 256 59 2076 253 1015 2075 252 2276 2055 266 1109 187 259 1104 2074 260 1105 2078 264 1107 2054 327 235 2052 263 64 2072 261 1010 2077 328 1014 188 268 1111 2055 266 1109 2078 264 1107 2079 269 1112 2056 272 1115 188 268 1111 2079 269 1112 2080 270 1113 189 274 1117 2056 272 1115 2080 270 1113 2081 275 1118 2057 287 1128 189 274 1117 2081 275 1118 2082 285 1126 191 283 88 281 281 2271 2084 276 1021 2083 284 1022 190 280 1123 2057 287 1128 2082 285 1126 2085 277 1120 281 281 1124 190 280 1123 2085 277 1120 2084 276 1119 322 296 127 191 283 88 2083 284 1022 2067 376 1004 1946 735 970 656 733 310 2087 571 1024 2086 2250 1025 2058 731 308 2059 730 307 2089 727 1026 2088 572 1027 656 733 310 2058 731 308 2088 572 1027 2087 571 1024 653 689 279 554 681 274 2091 676 1028 2090 686 1029 652 680 273 555 683 276 2093 684 1030 2092 677 1031 554 681 274 652 680 273 2092 677 1031 2091 676 1028 555 683 276 2060 702 288 2094 700 1032 2093 684 1030 2059 730 307 556 690 280 2095 685 1033 2089 727 1026 556 690 280 653 689 279 2090 686 1029 2095 685 1033 1953 766 1001 557 696 284 2097 691 1034 2096 768 1035 654 695 1427 558 698 1426 2099 699 1428 2098 692 1423 557 696 284 654 695 2270 2098 692 1037 2097 691 1034 558 698 1426 2061 705 1432 2100 703 1430 2099 699 1428 2060 702 288 1953 766 1001 2096 768 1035 2094 700 1032 2061 705 1432 559 707 1434 2101 708 1435 2100 703 1430 559 707 1434 2062 711 1438 2102 709 1436 2101 708 1435 2062 711 1438 560 713 1440 2103 714 1441 2102 709 1436 560 713 1440 2063 726 1451 2104 724 1449 2103 714 1441 2063 726 1451 561 720 1447 2105 715 1442 2104 724 1449 655 719 299 562 722 302 2107 723 1044 2106 716 2266 561 720 1447 655 719 1446 2106 716 1443 2105 715 1442 562 722 302 1946 735 970 2086 2250 1025 2107 723 1044 1686 2081 751 1687 2006 621 1807 2005 620 1117 1276 374 1237 1275 373 1151 1277 375</p>\r\n\t\t\t\t</polylist>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<library_images xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"file2\" id=\"file2\" sid=\"\">\r\n\t\t\t<create_2d xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<init_from xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" mip_index=\"0\" array_index=\"0\">\r\n\t\t\t\t\t<ref xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">./duckCM_fix.jpg</ref>\r\n\t\t\t\t</init_from>\r\n\t\t\t\t<format xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<exact xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">A8R8G8B8</exact>\r\n\t\t\t\t</format>\r\n\t\t\t\t<unnormalized xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></unnormalized>\r\n\t\t\t</create_2d>\r\n\t\t</image>\r\n\t</library_images>\r\n\t<library_lights xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"directionalLightShape1\" id=\"directionalLightShape1-lib\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<directional xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t</directional>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_effects xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"blinn3-fx\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"common\" id=\"\">\r\n\t\t\t\t\t<blinn xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" texture=\"file2-sampler\" texcoord=\"TEX0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t</blinn>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"file2-sampler\">\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float3>\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float2>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#file2\" sid=\"\" name=\"\"></instance_image>\r\n\t\t\t\t\t\t<mip_min_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_min_level>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">LINEAR</magfilter>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<mip_bias xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_bias>\r\n\t\t\t\t\t\t<max_anisotropy xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</max_anisotropy>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">LINEAR</minfilter>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">LINEAR</mipfilter>\r\n\t\t\t\t\t\t<wrap_p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_p>\r\n\t\t\t\t\t\t<mip_max_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_max_level>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float4>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_visual_scenes xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<visual_scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"untitled\" id=\"VisualSceneNode\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"LOD3sp\" layer=\"\" type=\"\" id=\"LOD3sp\" sid=\"\">\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#LOD3spShape-lib\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"blinn3SG\" target=\"#blinn3\" name=\"\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"TEX0\"></bind_vertex_input>\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"camera1\" layer=\"\" type=\"\" id=\"camera1\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#cameraShape1\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"directionalLight1\" layer=\"\" type=\"\" id=\"directionalLight1\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#directionalLightShape1-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t<instance_visual_scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#VisualSceneNode\" sid=\"\" name=\"\"></instance_visual_scene>\r\n\t</scene>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/duck_triangulate.dae",
    "content": "<COLLADA base=\"\" version=\"1.5\">\r\n\t<asset xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t<modified xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">2007-02-21T22:52:44Z</modified>\r\n\t\t<up_axis xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Y_UP</up_axis>\r\n\t\t<subject xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></subject>\r\n\t\t<created xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">2006-08-23T22:29:59Z</created>\r\n\t\t<revision xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></revision>\r\n\t\t<keywords xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></keywords>\r\n\t\t<title xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></title>\r\n\t\t<unit xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" meter=\"0.01\" name=\"centimeter\"></unit>\r\n\t\t<contributor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t<author_website xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></author_website>\r\n\t\t\t<author xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">gcorson</author>\r\n\t\t\t<source_data xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">file:///C:/vs2005/sample_data/Complete_Packages/SCEA_Private/Maya_MoonLander/Moonlander/untitled</source_data>\r\n\t\t\t<comments xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Collada Maya Export Options: bakeTransforms=0;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;\r\ncurveConstrainSampling=0;exportCameraAsLookat=0;\r\nexportLights=1;exportCameras=1;exportJointsAndSkin=1;\r\nexportAnimations=1;exportTriangles=1;exportInvisibleNodes=0;\r\nexportNormals=1;exportTexCoords=1;exportVertexColors=1;exportTangents=0;\r\nexportTexTangents=0;exportConstraints=1;exportPhysics=0;exportXRefs=1;\r\ndereferenceXRefs=0;cameraXFov=0;cameraYFov=1</comments>\r\n\t\t\t<author_email xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></author_email>\r\n\t\t\t<authoring_tool xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Maya 8.0 | ColladaMaya v3.02 | FCollada v3.2</authoring_tool>\r\n\t\t\t<copyright xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Copyright 2006 Sony Computer Entertainment Inc.\r\nLicensed under the SCEA Shared Source License, Version 1.0 (the\r\n&#34;License&#34;); you may not use this file except in compliance with the\r\nLicense. You may obtain a copy of the License at:\r\nhttp://research.scea.com/scea_shared_source_license.html \r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an &#34;AS IS&#34; BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.</copyright>\r\n\t\t</contributor>\r\n\t</asset>\r\n\t<library_cameras xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"cameraShape1\" id=\"cameraShape1\">\r\n\t\t\t<optics xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<perspective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<zfar xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></zfar>\r\n\t\t\t\t\t\t<aspect_ratio xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></aspect_ratio>\r\n\t\t\t\t\t\t<yfov xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></yfov>\r\n\t\t\t\t\t\t<znear xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></znear>\r\n\t\t\t\t\t</perspective>\r\n\t\t\t\t</technique_common>\r\n\t\t\t</optics>\r\n\t\t</camera>\r\n\t</library_cameras>\r\n\t<library_materials xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"blinn3\" name=\"blinn3\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#blinn3-fx\"></instance_effect>\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<library_geometries xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"LOD3spShape\" id=\"LOD3spShape-lib\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"position\" id=\"LOD3spShape-lib-positions\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"LOD3spShape-lib-positions-array\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6324\">35.0226 89.3874 23.3732 19.5676 89.7173 22.4879 9.22909 91.5427 17.1037 4.33048 88.7008 4.57726 45.0571 89.4178 19.824 -30.5196 11.6272 25.1326 -15.6992 11.4278 34.2321 51.8411 17.7055 36.5602 65.7206 18.372 27.0862 56.0117 11.4345 22.6963 -23.2343 18.1488 41.0429 -40.9218 18.6322 29.6382 62.4487 11.3989 12.9806 60.2326 28.1944 39.5949 71.2984 29.0359 29.3335 -32.9737 29.6914 43.477 -48.95 28.9358 31.4102 73.8118 41.7425 29.8584 65.2513 41.3955 39.884 72.6597 55.003 29.2468 64.6263 55.4849 38.2648 66.5829 66.4165 27.9218 55.5179 67.734 35.7358 43.4971 75.6992 31.8699 56.934 75.0037 25.7495 14.7601 73.8701 35.1574 -12.1248 73.9991 28.9191 14.7016 78.8465 28.8886 -3.37962 78.0576 23.1953 -24.7824 78.2304 7.65121 4.94216 81.4267 15.8195 -54.7257 89.9761 8.84491 -53.6566 74.7375 26.9735 -44.1714 77.8938 26.1268 -64.7587 73.8997 7.15297 -61.5691 65.6958 25.2253 -42.9296 61.2502 39.4496 -64.9663 57.2673 21.7398 -48.9596 49.2561 39.8218 -58.3698 43.9468 28.036 -31.7993 70.8398 33.4366 -33.1153 82.3349 8.62471 48.2452 81.0789 22.327 34.1225 80.5718 26.6473 15.5527 81.3807 24.423 0.65596 81.0723 3.99376 15.1798 11.41 36.4164 17.2973 17.3674 43.2976 43.8649 67.7941 39.8677 55.9835 56.1625 42.7808 56.4187 41.7648 44.4371 46.9566 29.0085 44.2399 18.041 21.337 45.4158 -24.2634 29.7596 46.4694 -37.1346 44.6474 44.4312 -35.8668 57.8953 42.7333 -24.1626 66.8013 39.6298 -14.2645 43.4767 51.8892 10.1522 43.8267 53.9252 -10.3735 36.316 51.8336 -14.5047 52.2745 51.0455 9.35439 52.1796 53.5056 24.5685 36.9247 52.4691 11.2191 35.6243 52.5988 27.0248 44.5585 52.8835 25.4374 55.0852 52.0724 9.23132 59.258 51.2115 21.2751 61.6417 50.3945 -11.0645 57.3325 50.3033 -22.8339 53.8174 48.6047 -22.3883 43.3299 49.8488 -13.3437 34.4469 50.7719 -15.0193 59.7488 48.0109 12.3031 31.6369 51.4681 28.2 34.9703 51.4911 34.9314 44.1559 51.2583 33.7281 55.8993 50.0475 24.8495 63.37 48.6114 9.96162 62.8873 48.4038 6.73344 84.5266 2.83788 10.2211 84.9641 13.1445 19.05 85.0093 20.4734 35.2584 84.9759 22.0089 44.8651 85.199 18.7578 54.1484 90.1992 13.1393 25.84 89.3162 23.5593 14.5318 90.4728 20.5795 5.99276 89.5698 10.1098 59.1034 90.0324 3.37689 -23.9364 11.5353 30.6125 -11.459 10.0413 29.8243 -24.5326 10.1147 22.2069 -35.1528 11.6836 17.7191 61.5472 14.2726 25.2082 43.6854 11.43 30.0164 47.7677 14.1162 33.6212 -19.459 14.309 37.9267 -36.067 14.5054 27.6816 -32.9292 18.5574 36.7248 -46.1733 18.6604 20.5246 73.3418 18.3468 14.9194 68.8732 23.4107 28.4208 55.7803 22.4988 38.5465 -27.0171 23.4671 43.0366 -45.2302 23.6628 30.9246 -41.0731 29.3325 39.4763 79.4615 29.1894 16.0672 76.9844 23.4678 15.5749 72.8865 35.1223 29.8369 63.2406 34.5574 39.8307 81.8608 42.114 16.7292 80.9318 35.3877 16.409 66.0817 48.5555 39.2449 73.9987 48.5347 29.6857 80.1688 55.1853 16.948 81.5894 48.8387 16.9628 61.1927 62.0057 37.295 70.17 61.0152 28.6395 74.8647 66.3268 16.601 77.7874 61.0196 16.7611 61.7637 71.037 26.8557 67.1835 75.4493 16.6366 71.6321 71.1772 16.667 -7.40039 76.1581 26.3759 14.8335 76.3145 32.0471 -20.947 75.0059 21.3995 -9.30957 78.0917 17.6635 2.33308 81.2658 10.7014 -55.3055 81.4823 20.1865 -44.1025 82.8784 21.08 -48.3998 77.2606 26.9595 -63.8341 69.8359 17.705 -58.2579 70.6396 26.4175 -58.1459 60.4109 31.5845 -50.1918 68.7831 33.097 -53.5557 46.1592 34.9928 -63.069 52.729 24.0553 -63.6495 60.7883 23.3658 -54.4261 28.5392 21.6382 -12.4228 39.2454 51.9419 -52.1766 34.1006 30.9987 -39.3582 37.1753 42.8245 -63.2047 33.3562 7.77354 -14.9689 48.0973 51.5712 -13.2184 68.1588 38.5488 -20.841 71.9312 31.5875 -34.0814 73.6573 23.1685 39.0864 77.6536 29.4959 52.286 78.2905 24.2985 28.6752 75.0467 34.74 24.5284 79.4248 29.0977 58.2456 81.6454 14.9372 62.5867 78.8584 16.1198 -40.058 73.3058 29.0169 -62.4832 42.7738 19.6053 -66.2542 57.7677 16.0138 -46.3972 55.562 40.3341 46.1403 83.2928 20.059 52.8472 87.516 12.3304 24.3957 81.2413 26.4145 17.5457 83.2299 21.6568 35.0308 86.9496 21.9178 5.66061 83.0193 2.97282 39.2717 10.0042 25.9897 49.7414 9.99683 19.7068 14.6156 10.0124 31.7958 28.2119 11.4278 34.5791 55.179 10.0309 11.4214 16.1259 13.9798 40.2177 33.0793 17.7336 41.3765 18.9195 36.2041 52.5892 10.6044 39.6524 53.4314 18.2523 44.3116 53.7955 25.9535 39.9994 52.7745 9.73549 48.0914 53.8815 16.9236 53.6009 53.2898 26.8721 49.8693 52.6952 9.12603 55.8675 52.7181 15.9783 60.8706 50.8542 23.2428 59.2083 51.1997 15.2006 70.9348 38.4909 -38.0814 66.6122 37.6368 -31.4745 63.2943 41.295 -12.9337 55.4359 50.6592 -29.8093 42.9681 46.5354 -18.6612 31.1764 47.8255 -30.266 55.8423 44.7033 36.2897 31.2217 48.0605 46.511 42.7776 47.7899 45.6636 56.4673 46.2574 32.8524 66.1703 44.2955 12.3579 67.2602 43.2175 -19.149 38.1518 50.4005 -23.6628 48.8825 49.2194 21.1045 32.7401 51.4785 32.4268 38.9651 51.46 35.2465 50.0413 50.7771 17.9201 63.7837 48.4371 30.018 60.597 49.2453 -20.4236 57.6424 48.1257 -7.11345 60.5511 48.2081 -5.54756 57.4675 50.6459 -6.2067 51.4293 52.475 -5.95461 43.3855 53.166 -4.66971 35.7333 52.2177 -5.70251 32.445 51.1085 -8.3205 17.8723 43.3717 -2.69678 11.3425 36.4653 -27.2981 42.8866 48.0687 -27.8897 55.043 46.5161 -16.4436 32.2248 49.3054 -18.5848 62.3861 45.599 13.6265 28.0639 49.9986 41.3922 43.4352 49.4685 32.3868 32.7171 49.8711 40.4699 56.3449 48.0345 28.9733 65.0389 46.3945 11.0523 65.6624 45.6909 -37.9272 11.78 6.99728 -50.2675 18.389 7.36354 75.8256 18.3928 2.93945 64.2756 11.6576 2.65993 82.8128 29.1368 2.93945 85.8726 42.1384 2.93945 84.9147 55.2091 3.25752 79.936 66.2007 3.25752 72.9207 75.6569 3.11665 -13.2799 78.2816 6.78078 -42.4217 91.5301 9.02211 -66.2519 42.375 7.59116 -67.9758 58.5114 6.99802 8.76422 81.5601 20.2429 8.65004 83.1534 13.7124 6.16626 86.3527 3.3376 10.3479 87.4003 13.9949 7.91973 84.7475 8.18356 19.5238 87.0994 20.6484 13.8638 85.0248 17.2846 35.1961 83.043 23.5111 26.055 84.941 22.3278 44.4291 87.1742 18.6599 55.1672 83.7325 13.2216 53.3737 85.5572 12.3674 -18.7264 10.108 26.6814 -28.5504 10.1785 15.7995 -28.6467 14.412 33.9793 -40.9463 14.6426 19.2219 68.6182 14.2022 14.0757 -36.9819 23.7436 38.5844 48.5084 72.1529 33.9029 -14.7042 76.6096 19.7209 -49.515 83.8778 20.7678 -60.3339 76.3635 19.0618 -54.5522 64.8765 32.9243 -60.8158 55.9957 28.5728 -50.6442 23.4975 21.2438 -45.1383 35.1824 39.0803 -57.747 33.5446 21.51 -27.5531 73.6877 22.8942 26.6207 76.9559 31.9144 -39.393 77.9086 22.2647 -65.5928 51.6658 17.2594 -44.8336 71.3336 32.1213 -65.569 63.5509 16.5565 25.3055 83.1594 23.781 12.1192 83.2358 18.075 25.9631 10.0257 30.0393 30.5288 14.0969 38.2233 18.4628 39.992 53.2994 17.691 48.9863 53.8221 16.1429 57.6002 52.3171 32.2615 71.41 37.9727 51.4408 62.676 41.4618 57.6406 48.9151 43.8433 52.9177 35.0586 44.5773 36.217 23.1483 43.9056 -31.7681 36.6178 45.7769 -37.83 51.5724 43.6927 -25.9576 36.5644 47.2776 -31.2662 49.6491 45.6583 26.7542 27.5116 48.1161 23.2102 67.8126 43.5534 -9.81152 64.5785 42.5347 -5.73514 54.6841 51.8166 -6.34459 47.5345 53.0926 -5.18279 39.3551 52.8687 -13.0679 23.5531 45.6457 -5.21985 14.0791 40.2548 -0.679352 10.0168 31.8299 -28.752 49.271 47.2864 -23.8534 36.6519 48.7626 -24.6964 59.5316 45.8889 -7.15942 29.3978 49.7079 38.1551 37.5127 49.7814 23.9612 29.5453 49.9126 42.2701 49.9123 48.8776 35.8278 61.6884 47.1419 20.5055 66.243 45.9037 -8.95663 63.2617 45.5834 -31.1142 10.1703 6.38486 -44.1714 14.6552 7.27827 70.6407 14.3913 2.92833 79.9353 23.413 2.93945 84.5803 35.3544 2.93945 85.9631 48.8595 3.25752 82.8254 61.0226 3.25826 76.7546 71.3433 3.2553 -19.2017 77.8115 7.33611 -48.5489 92.2656 9.06511 -60.1596 84.4057 8.28143 -55.757 23.043 7.73055 -29.2013 79.6561 8.08569 -37.1064 88.1752 8.91461 -68.0046 51.5783 7.15372 -66.9147 65.618 7.07735 57.0756 10.1525 2.28551 6.64003 83.0734 8.64102 7.67061 86.759 8.63805 14.3983 87.2706 17.8748 26.21 86.9437 22.1654 62.3057 92.5874 2.9313 1.3848 69.2606 38.5873 1.56273 65.4519 43.0262 1.32251 64.1537 45.6605 4.95551 9.99831 32.3904 4.63076 11.3477 37.0599 4.48174 13.922 40.9628 4.08211 17.3859 43.9419 3.02928 21.4474 45.8963 3.07525 28.2293 49.9356 3.11009 31.6361 51.3265 3.03002 35.4574 52.4675 2.61333 39.4033 53.3009 2.11362 43.4389 53.8266 1.75772 47.519 53.7873 1.63762 51.3863 53.3032 1.70287 54.8295 52.4802 1.76736 58.0161 51.0099 1.52196 61.5001 48.3586 1.93642 72.8387 33.8763 3.64763 75.9142 30.548 5.31806 78.4269 26.9639 58.5778 87.5953 2.23361 59.1501 85.8263 2.11721 61.5583 84.2063 2.51758 64.9644 82.1214 2.892 69.0133 79.1475 3.00989 32.7991 89.7151 -30.4233 18.3501 89.4171 -27.9721 8.67525 89.5668 -20.9938 2.39314 90.3705 -9.85685 41.3633 90.1718 -28.7054 -31.106 11.4775 -32.9686 -16.1893 11.413 -41.8242 -37.8441 11.7199 -17.9362 51.1145 17.827 -43.7764 65.4167 18.372 -34.6672 55.5386 11.4663 -30.2365 -22.7101 18.3816 -48.1723 -41.2258 18.6322 -37.22 -49.9064 18.1281 -19.4546 62.0944 11.4196 -20.5393 59.314 28.4606 -46.5397 70.9277 29.0352 -36.8544 -33.1991 29.873 -50.7109 -49.3615 28.878 -39.0246 73.4812 41.7559 -37.3453 64.6226 41.5905 -46.5931 72.9066 55.0971 -37.0309 63.9264 55.2231 -45.5736 67.308 66.4328 -36.116 55.8026 66.7664 -44.1694 43.9561 74.6649 -39.815 57.8297 75.238 -34.1393 15.5401 73.1894 -42.5115 -12.2174 73.8819 -36.4385 15.3978 78.7998 -35.5147 -2.0421 78.412 -29.475 -24.7876 76.5792 -19.7267 -12.534 78.2897 -17.6678 4.34457 81.1227 -24.1642 -55.8163 87.2424 -22.0756 -43.7036 88.3494 -22.3158 -54.1303 74.7924 -34.6324 -44.4888 77.8752 -33.6648 -65.5053 72.5896 -18.5049 -61.9613 65.7536 -32.9553 -43.4634 60.448 -47.4894 -65.1954 57.0723 -29.5143 -59.2654 27.9119 -20.2361 -49.2087 49.1998 -47.3723 -58.9689 43.7199 -35.5858 -66.3446 42.1948 -19.4391 15.5861 70.0443 -46.0785 -33.1287 69.3852 -41.4713 -34.4892 80.0254 -21.5618 48.699 81.1865 -30.8689 34.2382 80.5703 -34.2498 16.5759 81.1153 -31.895 0.727875 81.1872 -12.4148 -68.018 58.2133 -17.8183 14.7802 11.3848 -44.0174 16.9221 17.4452 -50.8066 -13.0864 43.3447 -58.8481 10.4495 43.9097 -61.0858 -9.32663 36.6667 -59.0505 -14.22 51.903 -58.0496 9.45597 51.998 -60.0277 24.246 37.0634 -60.5519 11.3896 35.7436 -60.2776 26.5918 44.6467 -61.0071 25.4626 54.4929 -59.5273 9.00666 58.9948 -57.2808 21.3366 60.5555 -57.2059 -11.1972 57.2725 -56.9708 -22.2438 53.1256 -56.0203 -20.3457 43.0689 -57.3067 -12.1122 35.0371 -58.1689 -14.9222 59.3774 -55.2218 12.2904 31.7184 -59.1973 27.7581 35.2002 -59.4961 33.8971 44.4969 -59.5273 32.7486 55.5991 -57.9969 24.5692 62.5262 -55.8246 9.69026 62.3164 -55.2589 6.31009 84.6215 -9.59067 9.94086 84.9232 -20.0693 19.0219 85.0345 -27.4843 34.7653 85.0426 -29.4209 44.1941 85.119 -26.7866 50.8728 90.6708 -23.6459 25.0482 89.5646 -29.954 12.9607 89.423 -24.9078 5.25504 89.8204 -16.202 3.24726 88.5844 -2.72431 56.928 89.7848 -10.5352 -24.3405 11.4359 -38.3603 -12.0514 9.99387 -37.4698 -25.119 9.92937 -30.186 -35.4745 11.6324 -25.6774 -30.9667 10.1577 -16.9998 61 14.303 -32.6913 42.9826 11.5093 -37.4209 46.9722 14.2133 -40.7944 -19.5197 14.3549 -45.3897 -36.488 14.4595 -35.3605 -33.1887 18.5722 -44.2309 -44.1233 14.4447 -18.6976 -46.6619 18.3928 -28.2843 73.0378 18.3468 -22.5011 68.5692 23.4107 -36.0025 54.8395 22.7093 -45.7182 -26.8814 23.6917 -50.1401 -45.535 23.6628 -38.5063 -41.3718 29.3444 -46.7703 79.1575 29.1894 -23.6481 76.6804 23.4678 -23.1566 72.5633 35.1268 -37.3883 62.517 34.8109 -46.6606 81.5568 42.114 -24.311 80.6278 35.3877 -23.9899 65.2083 48.5511 -46.1149 73.84 48.5629 -37.3 80.6871 55.3477 -24.807 81.674 48.8988 -24.6283 60.7961 61.4452 -45.0316 70.7794 61.119 -36.7907 75.5475 66.5218 -24.6246 78.6126 61.265 -24.804 62.9885 71.049 -35.1951 66.8647 75.4648 -24.4251 71.4756 71.2009 -24.4489 -6.85692 76.1307 -33.2993 15.3904 76.124 -38.9186 -20.6749 74.9933 -28.8188 -18.659 77.1776 -18.9697 -8.319 78.3549 -24.2702 1.96458 81.2562 -18.3514 -55.843 81.314 -28.5504 -49.6254 89.3466 -22.4648 -44.4451 82.6048 -28.9686 -48.6808 77.2324 -34.5316 -64.3131 69.6573 -25.8984 -61.7107 81.899 -20.9783 -58.7835 70.7123 -34.1097 -58.4469 60.3879 -39.1736 -50.5077 68.7809 -40.6817 -54.183 45.9931 -42.2824 -63.8549 52.5711 -32.0063 -63.9335 60.729 -31.1655 -54.957 22.8131 -19.9766 -55.152 28.2115 -29.5499 -11.2032 39.4137 -59.029 -53.076 34.2815 -38.5249 -39.7533 37.3377 -50.1979 -63.1283 33.463 -20.1464 -14.2141 47.7244 -58.4915 -30.0695 77.3155 -20.5683 -21.5757 71.2928 -39.3886 -34.2579 73.9026 -30.84 39.2161 77.6454 -37.0836 52.7939 78.4766 -32.8685 29.7051 73.7336 -42.0511 25.218 79.3136 -35.8083 57.9394 81.7173 -23.2211 62.3879 78.9177 -24.2442 -40.3947 73.317 -36.5831 -38.6256 84.6334 -22.1512 -63.1328 42.5522 -27.8513 -68.0395 51.255 -18.387 -66.6864 57.5891 -24.6884 -46.719 55.3544 -48.0974 -67.0838 65.1042 -17.911 46.0958 83.2499 -28.6417 50.9529 87.3143 -20.6038 25.2513 81.0708 -33.3601 17.9216 83.2039 -29.0153 34.0372 87.1164 -29.0287 5.17719 83.0067 -10.4967 38.7965 10.0502 -33.6129 49.3922 10.0272 -27.3241 14.187 9.93604 -39.5629 27.7425 11.4278 -42.1534 55.0359 10.0176 -19.0023 15.6372 13.9546 -47.8631 32.7953 17.7996 -48.8099 18.8513 36.2745 -60.5645 10.861 39.7903 -60.8997 18.3879 44.3219 -61.3282 25.5709 40.1514 -60.9249 9.98461 48.0417 -60.7803 17.172 53.0256 -60.1664 26.7053 49.7018 -60.6231 9.02446 55.628 -58.8755 15.9709 59.969 -57.3289 23.2776 58.2326 -58.209 44.1377 66.4765 -47.442 32.9162 70.0487 -45.5996 -39.1943 64.8054 -45.7138 55.5401 55.5242 -49.7715 51.248 61.6595 -48.7462 56.0065 41.9561 -51.2803 57.0734 48.8091 -50.5693 46.5132 29.225 -51.505 52.5663 35.3329 -51.6029 17.5056 21.4015 -53.1414 35.7529 23.258 -51.4249 -24.8654 30.3579 -52.8774 -37.595 44.6801 -51.7631 -32.3879 37.056 -52.6379 -36.3175 56.5451 -50.6094 -38.0947 50.8613 -51.419 -25.0582 65.9138 -47.2878 -13.0315 55.2283 -57.5699 -29.5994 42.7331 -54.0504 -17.7196 32.1054 -55.3997 -31.0452 54.9518 -52.1567 14.4814 25.6447 -55.9766 35.6595 31.6265 -55.6473 45.0786 43.2372 -55.4835 44.2682 56.1306 -54.0718 32.613 65.3459 -51.8098 12.2638 66.6664 -50.3239 -16.8788 38.5536 -57.7812 -22.2779 48.1633 -56.692 20.9614 32.7638 -59.3975 31.7892 39.2914 -59.6303 34.2463 50.1711 -58.9927 17.7651 63.1379 -55.4049 29.3959 59.9275 -56.7944 -19.9928 57.0804 -55.4805 -7.23875 60.3598 -55.204 -5.65804 57.5512 -57.0761 -6.0065 51.3551 -59.049 -5.22208 43.4715 -59.8809 -3.96387 36.0409 -59.508 -5.15608 32.8988 -58.5686 -13.5854 23.9342 -52.6112 -9.06415 18.1577 -50.5723 -3.25877 11.387 -43.9714 -26.2193 42.6871 -55.6006 -28.5919 54.4558 -53.8865 -15.0875 33.3422 -56.7928 -18.825 61.9909 -52.8915 13.3618 27.7844 -57.7174 39.8055 43.952 -57.5439 31.8122 33.1212 -57.6826 38.9151 56.1492 -56.0878 28.5307 64.3375 -53.8731 10.8825 65.2576 -52.8604 -38.7872 11.7814 -10.3899 -51.3804 18.2081 -11.1306 75.9308 18.2734 -10.619 64.3713 11.5264 -10.1319 82.6956 29.1294 -10.748 85.6139 42.137 -11.5317 84.7924 55.3455 -12.4133 79.6343 66.3979 -12.9219 71.6684 75.6332 -12.7061 -25.2621 79.1542 -11.2952 -14.3624 78.3676 -10.5812 -55.4174 91.1379 -15.1558 -43.1913 92.0224 -14.9719 -65.5402 74.7902 -11.1558 -61.0434 28.0454 -11.3123 -32.6111 84.6875 -12.5304 -67.2833 42.4839 -10.9141 -68.8802 58.6841 -10.4374 0.543259 81.1205 -6.22162 9.52418 81.0708 -28.7966 8.37571 83.1824 -21.1125 5.53085 86.6678 -9.24443 6.35532 84.3783 -3.72153 9.91936 86.9399 -19.9543 7.46301 84.8157 -15.1358 19.1716 86.9829 -27.1848 13.7244 84.9789 -24.2465 35.0315 83.0667 -31.2656 26.1633 85.0641 -29.3275 42.8321 87.2394 -26.5835 54.4673 83.6613 -21.5529 52.1903 85.3592 -20.4029 -19.1772 9.97014 -34.5627 -29.0093 10.0524 -23.9684 -28.9966 14.3787 -41.6404 -41.4341 14.4313 -27.1351 68.2653 14.2141 -21.6559 -37.1724 23.751 -45.8917 49.1935 70.9503 -42.3484 -14.5648 76.6133 -27.0075 -49.8916 83.6109 -28.9872 -61.1227 76.1114 -27.2671 -55.0601 65.0337 -40.5186 -61.3029 55.8348 -36.2984 -51.2017 23.1727 -29.0783 -45.8464 35.4359 -46.3143 -58.6945 33.6906 -29.4149 -27.3062 73.8878 -30.3291 27.1279 76.7275 -38.8845 -39.6428 78.0687 -29.8339 -66.1326 51.3373 -25.8257 -45.1368 71.2869 -39.6934 -65.8464 63.4174 -25.0094 25.8474 83.1357 -30.877 12.1451 83.2039 -25.5855 25.4849 9.93826 -37.9992 30.078 14.1043 -45.7664 18.448 40.0625 -61.2347 17.9876 48.7616 -61.0605 16.2348 56.7727 -58.8674 -32.2767 62.0154 -49.2051 -13.9368 67.8282 -45.9206 -24.8684 37.0434 -54.8511 -31.525 48.8313 -53.174 26.4258 27.5071 -55.6637 23.2554 67.017 -50.8845 -10.1563 64.4547 -50.0444 -5.75739 54.7064 -58.2557 -5.8419 47.5145 -59.5984 -4.37907 39.5768 -59.8409 -5.9761 14.2111 -47.5917 -0.926239 9.96272 -39.5747 -28.5177 48.5533 -54.7769 -21.6936 37.4949 -56.2842 -25.4638 59.1765 -53.191 -6.8028 30.1029 -57.2111 37.0326 38.1125 -57.7227 23.7499 29.4563 -57.6722 40.6137 50.1599 -57.0286 34.858 61.1842 -54.92 20.4387 65.7863 -53.1414 -9.18353 63.1068 -52.8225 -31.7926 10.1666 -9.9777 -45.2866 14.5017 -10.8326 70.7816 14.2259 -10.5137 79.9368 23.3648 -10.642 84.3683 35.367 -11.0661 85.8037 48.9262 -12.0255 82.7112 61.2146 -12.6921 76.0168 71.4278 -13.3949 -20.2604 77.9924 -11.2248 -49.3845 92.9811 -15.3182 -60.8729 85.6046 -14.2238 -56.4851 22.8762 -11.2211 -64.3531 34.2467 -11.1677 -29.1309 81.0871 -11.445 -37.3177 89.3021 -14.5323 -69.0093 51.6317 -10.622 -67.6547 66.1837 -10.4878 5.71547 83.0356 -4.42811 57.0919 10.0917 -9.5929 6.03725 83.0742 -16.133 5.45968 86.1214 -3.26036 7.12048 86.8962 -15.0149 13.8867 86.9385 -24.0596 25.9809 87.0964 -28.959 -11.6043 122.781 8.68477 -11.2981 122.692 9.69681 -10.977 122.366 10.6888 -10.6656 121.82 11.586 -10.3765 121.078 12.3445 -10.1237 120.175 12.9302 -9.91827 119.156 13.3142 -9.77222 118.067 13.4803 -9.68768 116.96 13.4188 -9.67062 115.887 13.1341 -9.72327 114.899 12.6358 -9.85822 114.021 11.8907 -10.7227 112.914 8.71887 -11.1023 127.944 8.41562 -10.4921 127.767 10.4464 -9.85971 127.122 12.423 -9.24655 126.037 14.2114 -8.68082 124.561 15.7276 -8.18628 122.764 16.8946 -7.78964 120.733 17.6635 -7.49306 118.563 17.9719 -7.3344 116.363 17.8451 -7.30846 114.233 17.2735 -7.41818 112.273 16.2733 -7.69992 110.534 14.786 -8.2775 109.033 12.4727 -9.35776 108.08 8.5424 -9.95609 132.998 7.96262 -9.04932 132.737 10.981 -8.11142 131.781 13.9103 -7.20317 130.173 16.5602 -6.3661 127.988 18.8075 -5.64024 125.328 20.5468 -5.05821 122.318 21.6961 -4.64821 119.099 22.2025 -4.42282 115.824 22.0238 -4.39761 112.65 21.1845 -4.56294 109.746 19.6875 -4.97073 107.211 17.3891 -7.42485 103.383 8.21767 -8.20483 137.879 7.33685 -7.0141 137.537 11.2983 -5.78555 136.284 15.1374 -4.59557 134.176 18.611 -3.49826 131.313 21.5559 -2.54626 127.827 23.8351 -1.78407 123.883 25.3417 -1.24654 119.664 26.006 -0.958862 115.367 25.7954 -0.932175 111.202 24.7018 -1.15683 107.411 22.6977 -1.71957 104.094 19.6809 -4.90993 99.0215 7.7476 -5.87453 142.516 6.54797 -4.41762 142.098 11.3954 -2.91623 140.566 16.0879 -1.46082 137.989 20.3341 -0.119568 134.489 23.9337 1.04373 130.229 26.72 1.97571 125.407 28.5617 2.63261 120.249 29.3728 2.98405 114.998 29.1163 3.01297 109.897 27.8025 2.72233 105.248 25.381 2.00388 101.315 21.4907 -1.90344 95.1527 7.08847 -2.99854 146.84 5.6071 -1.29695 146.353 11.2694 0.45578 144.564 16.7478 2.15439 141.556 21.7035 3.72029 137.47 25.9059 5.07858 132.497 29.1585 6.16626 126.869 31.3079 6.93364 120.848 32.2555 7.3429 114.718 31.9552 7.37701 108.764 30.4219 7.02557 103.335 27.5927 6.15958 98.8146 22.9217 1.31064 91.5316 5.92221 0.38089 150.789 4.52833 2.30194 150.239 10.9231 4.28081 148.22 17.1066 6.19814 144.825 22.7007 7.96496 140.213 27.4444 9.49823 134.6 31.1152 10.7268 128.246 33.5419 11.592 121.45 34.611 12.0547 114.531 34.2722 12.0932 107.81 32.5417 11.6995 101.628 29.4492 10.7461 96.4739 24.1724 4.21408 154.305 3.32648 6.32714 153.7 10.3604 8.50323 151.481 17.1593 10.6111 147.749 23.3102 12.5537 142.677 28.5254 14.2397 136.505 32.5617 15.5905 129.519 35.2301 16.5418 122.048 36.4053 17.0504 114.439 36.0331 17.0919 107.05 34.1306 16.6589 100.258 30.74 15.7233 94.7279 25.791 8.4454 157.338 2.02082 10.7201 156.687 9.59079 13.0608 154.299 16.9057 15.3288 150.283 23.5229 17.4189 144.827 29.1348 19.2332 138.186 33.4774 20.6856 130.67 36.3481 21.7103 122.631 37.6123 22.2575 114.445 37.2119 22.3019 106.495 35.1648 21.8259 99.2209 31.4888 20.825 93.3985 26.5962 13.0133 159.842 0.628418 15.4163 159.154 8.62471 17.8875 156.633 16.3489 20.283 152.392 23.3369 22.4903 146.631 29.2623 24.4054 139.618 33.8481 25.9394 131.682 36.879 27.0211 123.193 38.2151 27.5987 114.549 37.7917 27.6461 106.153 35.6297 27.1561 98.4202 31.8069 26.2026 92.3353 26.7949 17.8512 161.781 -0.829224 20.3468 161.067 7.47549 22.9136 158.449 15.497 25.4011 154.045 22.7534 27.6929 148.063 28.9072 29.6814 140.78 33.6686 31.2747 132.539 36.8168 32.3972 123.724 38.2032 33.0378 114.732 37.7776 33.1394 106.004 35.5511 32.5863 97.9694 31.5919 31.965 91.3737 26.2299 28.0317 162.761 5.43213 30.6652 160.074 13.6627 33.218 155.556 21.1096 35.5698 149.416 27.4236 37.6109 141.943 32.3103 39.2458 133.487 35.5408 40.3779 124.44 36.8931 41.0778 115.182 36.3645 41.3685 106.251 34.3441 40.5714 98.0124 30.0964 39.483 90.8428 24.5869 25.47 163.494 -3.09354 33.2647 163.97 -5.38011 35.8181 163.241 3.11665 38.442 160.564 11.3176 40.9852 156.062 18.737 45.5605 150.164 24.1539 46.9596 143.512 28.5313 48.7731 136.143 30.9839 48.1273 125.112 34.1698 49.5294 116.289 34.2469 49.9179 107.113 32.426 48.6893 98.8206 27.8254 47.2243 91.628 22.178 38.4532 163.455 -6.88224 40.9503 162.742 1.42916 43.5171 160.123 9.45065 47.7967 155.173 17.3906 53.1913 129.392 30.4605 57.4434 120.187 30.353 57.7555 108.881 29.1971 56.501 100.349 24.8901 54.4406 93.4897 18.651 43.5401 162.322 -8.34137 45.9453 161.636 -0.335434 50.4154 158.124 9.95186 48.4521 160.589 -9.73451 50.7305 159.939 -2.15119 54.3182 157.614 6.23138 63.8033 119.565 25.3861 63.9101 110.06 24.7226 62.901 102.219 20.9027 60.7679 96.0876 14.7059 53.1171 158.28 -11.0416 55.2347 157.675 -3.99215 58.19 155.872 2.80748 67.2969 119.573 21.0355 67.7537 111.25 20.0049 67.3733 103.92 17.1459 65.043 98.1407 11.5222 57.4671 155.429 -12.245 59.394 154.879 -5.83163 62.1915 152.982 0.103493 69.6977 119.848 16.5973 70.8076 112.269 15.649 70.4413 106.039 12.8968 68.5447 100.725 8.19913 61.4382 152.077 -13.326 63.1457 151.59 -7.6422 65.78 149.427 -2.04368 72.9933 113.56 10.1899 72.6093 109.123 7.23009 71.4208 102.692 -5.93692 66.1158 146.314 -14.556 67.6306 145.656 -8.87371 68.937 144.641 -4.73136 71.1249 140.238 -3.87204 72.9303 135.432 -3.25369 73.955 129.872 0.956131 73.8222 124.051 6.88754 69.9913 140.169 -15.5436 71.876 138.749 -9.69077 -11.3759 117.634 8.77818 63.3644 132.244 19.7795 58.7861 144.777 19.4836 67.0122 129.764 16.8798 70.6155 138.855 5.83472 63.4756 148.383 9.49515 62.8195 133.184 17.464 65.3848 131.323 15.0306 58.8061 141.77 16.8434 60.1659 137.06 18.4575 67.3103 131.311 12.1873 59.8997 144.627 13.2097 68.6945 133.697 9.63008 62.6779 144.573 10.0134 68.5944 137.783 7.94185 66.1373 141.972 8.0323 63.5846 133.449 17.7798 66.1373 131.523 15.497 59.6002 142.393 17.3936 68.0977 131.472 12.4801 69.5345 133.885 9.64862 63.3399 145.241 10.1906 69.4233 138.273 7.76169 66.8358 142.631 7.99524 70.3049 128.194 12.73 72.5233 132.983 6.70811 70.8876 139.701 3.88477 57.3232 138.168 24.4749 62.3546 131.157 22.7541 67.3926 146.279 4.41341 62.6852 151.575 8.16354 58.5355 152.152 14.7897 56.0087 147.327 21.699 67.4163 128.203 18.5732 61.7689 138.738 16.9517 60.1192 142.066 15.9826 64.1066 135.62 16.4201 65.946 133.39 14.7222 67.2903 132.939 12.8657 68.2793 135.009 11.4955 67.7633 138.355 10.7993 65.6517 141.685 10.9157 62.861 143.967 11.7343 60.6115 144.197 13.6175 60.9733 137.35 18.8824 60.8999 145.33 13.6701 65.4233 132.097 14.9091 64.194 132.052 16.3667 63.0381 133.984 17.1452 60.5626 137.576 18.0038 59.2072 139.485 18.0623 59.179 141.815 16.5439 61.4122 134.887 18.1943 67.2154 132.019 12.4453 66.4087 131.047 13.613 59.0411 143.572 15.1678 60.1096 144.464 13.3409 68.5151 134.306 10.3248 68.0821 132.189 10.829 61.149 144.974 11.4258 62.7831 144.363 10.5976 68.2882 138.059 8.96576 68.9548 135.624 8.61655 64.3898 143.534 8.86493 66.015 141.892 9.0614 67.5801 139.948 7.72906 62.5229 143.343 13.2497 61.0674 143.946 13.8533 64.8184 141.126 13.1519 66.8854 138.187 12.9695 67.3889 133.651 13.1986 66.7994 134.635 14.1328 65.5909 137.242 14.9847 63.4504 140.109 15.2998 61.4471 142.587 14.915 69.5049 129.705 12.5735 72.1177 136.32 4.77299 71.5801 133.393 8.20432 59.2932 134.201 23.8217 59.9546 137.579 21.2023 65.0801 149.359 5.97188 67.3192 144.395 6.27661 56.9459 150.409 18.5398 60.5959 148.729 14.5628 56.1303 142.947 23.7928 65.2135 129.283 20.9902 68.9562 127.783 15.7988 69.2988 142.988 3.69571 60.547 152.61 11.1863 71.7477 130.025 9.56706 72.9533 131.626 4.33482 71.3592 125.34 12.6099 70.8958 140.288 0.80043 60.4142 128.485 25.3476 53.3566 137.368 28.099 60.1785 154.454 5.65604 66.8521 148.152 1.54631 50.4599 149.321 23.457 54.4777 155.19 14.0957 66.8083 125.61 19.6379 60.7657 140.445 16.6648 62.9418 137.1 16.8738 65.1157 134.361 15.6497 66.6044 132.832 13.8036 67.9094 133.728 12.0538 68.246 136.622 11.0736 66.8721 140.078 10.7355 64.2593 143.015 11.2634 61.6205 144.401 12.4393 60.0361 143.345 14.9402 62.2167 135.13 18.5205 60.0235 144.253 15.7061 59.9835 139.927 18.519 64.9258 132.28 16.7923 67.1776 131.236 14.0179 68.9044 132.335 10.9928 69.7696 135.952 8.50682 68.3794 140.573 7.55853 64.9874 144.212 8.9287 61.9957 145.611 11.7513 64.3364 132.866 16.125 59.6128 139.75 17.5893 61.7458 135.583 17.8214 66.3694 131.791 13.6738 59.3318 143.457 15.0788 67.9657 132.894 11.3154 61.3218 144.772 11.7684 68.6738 136.094 9.51442 64.4194 143.374 9.69681 67.3615 140.039 8.78485 61.7844 144.005 13.1407 63.6091 142.365 13.2305 65.9438 139.693 13.0347 67.4912 136.673 12.9257 66.9492 133.714 13.8169 66.3464 135.861 14.5969 64.5685 138.672 15.2167 62.3546 141.447 15.1878 60.8028 143.341 14.6881 70.7571 131.099 10.3129 71.4393 136.084 6.66586 61.5272 134.531 20.6551 65.2209 146.715 7.63861 59.5052 147.331 17.3142 58.8328 141.204 20.8056 65.3699 130.706 18.6303 68.3045 129.387 14.7556 69.1838 141.704 5.63008 61.9527 149.098 11.8158 72.6026 127.566 8.47568 72.3965 136.097 1.70497 56.5247 132.614 27.6949 63.6929 151.685 3.08774 52.022 153.009 18.9305 51.1249 144.226 26.8356 63.9865 126.508 22.5154 69.2202 125.238 16.535 69.0541 144.317 0.692924 57.2187 155.661 9.56113 67.741 135.282 12.8723 67.7907 134.283 12.7419 71.6609 136.111 -15.9358 72.3201 105.969 -15.2641 74.0417 117.157 -16.1597 75.2065 106.525 -16.2769 79.8634 107.308 -17.6552 91.3867 109.457 -21.1013 88.3001 106.164 -20.0804 79.2991 114.295 -17.6596 83.595 107.064 -18.7273 84.1132 113.461 -18.9875 85.3967 106.488 -19.2404 74.3568 135.883 -16.7173 78.9611 134.305 -18.0244 82.9529 133.126 -19.1618 84.9244 134.248 -19.7638 86.99 136.683 -20.4237 90.4947 139.433 -21.5114 93.7133 139.447 -22.4507 94.9967 133.968 -22.6969 95.4994 138.023 -22.9393 92.0955 130.536 -21.7701 88.3638 126.832 -20.5942 85.6599 124.96 -19.7608 81.4537 123.062 -18.4885 74.8654 115.813 -16.3999 75.0456 119.162 -16.437 77.3477 106.901 -16.9108 90.4702 107.067 -20.7351 76.8324 114.944 -16.9597 81.866 106.977 -18.232 81.8267 113.709 -18.3173 87.5994 113.172 -20.0641 72.8517 136.463 -16.4526 76.6211 135.168 -17.3616 81.0749 133.56 -18.6235 84.1259 133.478 -19.5125 85.7941 135.222 -20.0404 95.5972 136.005 -22.9201 93.7963 132.209 -22.3054 90.1255 128.604 -21.1495 87.0197 125.694 -20.1745 83.7714 124.169 -19.1907 77.8207 121.529 -17.3927 90.9181 111.196 -21.0087 72.5032 108.223 -2.09484 75.2258 128.38 -2.75545 73.0089 134.723 -11.6266 74.987 120.808 6.20024 75.9205 117.527 -9.42607 74.9633 116.553 -9.73895 78.1707 127.11 -4.45851 76.4373 109.876 3.38505 75.8359 108.157 -4.45555 81.7666 127.621 -5.91393 76.6804 114.045 7.19746 76.6345 120.205 6.07716 82.3917 119.936 3.28125 80.7256 108.785 -7.12913 83.5075 117.685 2.46864 82.9974 115.277 1.76725 92.4261 111.042 -14.8022 90.3783 110.634 -9.15768 95.4037 129.402 -7.5814 96.0984 136.789 -17.4832 82.3405 119.579 -9.26593 80.8413 115.369 -9.65369 85.2625 124.587 -1.81087 84.8272 129.21 -7.48057 85.7451 117.806 -3.52579 86.8232 121.414 -9.52765 85.9097 118.886 0.325172 87.199 131.776 -9.16064 88.7516 134.416 -11.1099 90.1003 121.341 -5.78863 94.2515 126.991 -9.62626 89.9564 123.624 -10.2795 92.7753 126.838 -11.8772 90.8128 122.536 -2.9371 84.8317 108.856 -9.63812 86.0135 114.746 -2.76731 86.5792 108.162 -11.0609 90.7371 125.097 -2.53673 73.043 106.875 -10.3143 75.0849 116.366 -9.04127 75.9716 116.037 -9.92357 74.6763 117.226 -13.3023 76.6107 127.495 -3.81347 75.8715 107.338 -10.9986 74.2945 131.787 -6.83849 77.6673 130.92 -7.97213 79.9509 127.383 -5.12654 76.4239 117.364 7.49699 79.6098 120.36 4.88643 79.5468 114.305 5.90663 78.3479 108.471 -5.80049 80.1169 108.117 -13.6233 81.3351 130.611 -9.06203 83.483 116.149 2.62879 83.0011 114.026 3.50368 91.761 108.672 -14.126 92.1266 109.889 -18.0081 93.8845 131.645 -7.45462 96.1799 134.037 -11.4887 81.9698 117.706 -6.57603 78.9833 118.659 -9.33636 78.2737 115.773 -9.7916 81.6235 116.026 -5.37269 79.8693 114.493 -14.8934 83.5372 128.01 -6.78511 83.5372 116.896 -3.09725 86.2686 119.313 -6.65833 84.7701 120.477 -9.37344 85.7155 117.814 -1.09836 82.8336 116.065 -0.2435 84.0376 118.31 1.24899 82.4806 122.05 -11.5955 87.1182 124.405 -12.0018 88.0999 133.229 -10.2009 92.2897 123.818 -7.20253 93.4241 126.82 -10.8934 91.5661 125.3 -11.0513 89.9394 122.25 -7.90022 90.4806 121.459 -4.05592 93.4426 125.358 -4.55564 95.0537 127.861 -8.4207 86.6067 133.598 -11.5288 88.5707 135.852 -12.9256 89.8207 126.465 -12.6372 92.9117 128.817 -13.9117 95.0404 130.344 -13.2941 82.9299 109.011 -8.36213 85.6702 113.376 -2.09262 83.9642 114.927 -0.734322 83.2265 115.122 -10.3417 85.751 115.129 -7.31301 84.1511 107.994 -14.6242 84.6693 113.83 -16.0203 88.6597 113.95 -5.64331 88.16 112.314 -5.20661 87.6284 114.616 -8.44739 91.1709 112.257 -10.1186 89.261 107.896 -12.7825 84.4929 131.425 -10.2884 88.4714 122.412 -9.79086 88.4424 120.148 -1.065 85.9995 121.323 0.560211 86.1099 130.434 -8.26055 87.8345 118.872 -4.42515 91.1968 133.419 -9.01013 88.8191 128.275 -4.56676 81.5976 122.873 0.828606 76.9644 122.205 2.94316 81.4612 110.902 -0.296883 85.7392 110.723 -3.63627 75.9894 134.176 -12.4407 80.1251 132.842 -13.5803 83.9442 132.485 -14.6398 85.946 134.022 -15.3694 88.0213 136.327 -16.4059 91.3103 138.582 -16.933 94.3976 138.399 -17.1755 95.3962 132.764 -17.8798 92.8436 130.018 -17.5358 89.2928 126.974 -16.3569 86.4413 124.91 -15.6051 82.4754 123.01 -14.5108 91.896 112.486 -14.9156 82.8751 115.658 -0.544518 86.2805 115.188 -4.50003 76.1644 116.572 -8.83145 75.4185 115.882 -13.8516 76.0488 119.438 -12.6624 75.6543 131.457 -7.41829 79.4986 117.656 6.72963 79.0322 110.008 1.65974 78.0128 107.635 -12.0211 79.5268 130.758 -8.47779 82.1877 117.111 4.66623 91.3177 107.267 -17.6789 94.3523 135.804 -11.3701 79.199 116.397 -7.74822 77.416 115.064 -14.3959 84.1318 118.571 -6.36101 83.3881 117.034 -0.32283 85.0712 123.225 -11.8706 91.807 124.332 -9.03386 92.9703 124.047 -5.59067 87.5542 134.782 -12.3095 91.394 127.808 -13.2948 94.0891 129.464 -13.8324 83.6906 111.07 -2.07482 83.6929 113.909 0.096817 83.6402 115.586 -6.22978 82.2292 108.145 -14.0185 82.2626 114.108 -15.3812 85.9475 107.439 -15.3597 88.2578 113.456 -17.1125 88.2163 114.084 -11.2463 88.9763 106.666 -16.7455 83.1168 130.614 -9.81607 88.5233 125.332 -12.2287 88.5596 122.718 -0.990116 88.1236 120.568 -7.14322 91.5424 136.545 -12.2591 90.1959 130.708 -6.46555 83.1835 123.375 -0.566017 79.5957 122.783 1.99635 74.3672 117.295 7.88031 87.5631 110.072 -6.37584 74.1744 134.769 -11.9588 77.8467 133.564 -12.9456 82.0565 132.388 -14.1586 85.1416 133.114 -14.9897 86.8728 135.108 -15.8513 96.088 134.721 -17.6366 94.3716 131.254 -17.9443 90.9752 128.478 -16.8885 87.8886 125.817 -15.9581 84.6456 124.017 -15.1551 78.798 121.528 -13.6567 91.6357 111.58 -17.9377 84.2971 115.519 -2.50114 83.7426 120.625 1.77541 88.5833 114.451 -6.97195 88.0828 118.976 -2.26166 92.4098 128.085 -4.46593 90.9233 113.198 -10.8133 95.8359 131.912 -12.44 88.8584 109.104 -9.27186 75.6269 121.857 3.65715 78.5266 120.452 -11.3783 85.7325 132.479 -10.7807 87.2109 126.227 -3.03349 82.3865 115.792 -3.39975 85.5323 114.683 -10.7629 88.5351 113.906 -14.361 85.1809 114.135 -13.5766 82.7372 114.618 -13.0324 80.3171 114.815 -12.4815 77.8096 115.265 -12.0804 75.7054 115.895 -11.7089 74.7512 116.96 -11.2522 75.744 118.732 -10.8711 69.843 141.836 -9.30819 67.9679 143.189 -15.0231 72.8213 119.941 10.9157 71.6506 104.986 0.684029 69.456 100.727 -14.47 73.995 114.29 6.9995 73.1142 110.85 3.56299 72.9748 136.288 -10.6843 71.3295 137.732 -15.8765 71.3963 104.177 -15.1099 74.1581 133.103 -5.27631 75.2109 128.825 -1.40012 75.073 122.123 6.21136 74.2901 118.616 8.83824 74.0083 114.133 7.99301 73.4597 110.347 4.91832 72.8198 106.93 -0.967873 82.4554 113.29 2.18171 79.572 111.521 3.2642 80.1607 112.304 4.14649 -10.1429 113.254 10.7089 72.7842 105.382 -7.25814 -5.83078 104.99 14.0223 -2.85619 101.143 15.3198 0.690811 97.9167 16.3207 4.67302 94.8688 16.9057 66.3361 95.2358 0.153168 -11.892 122.645 7.67271 -12.1529 122.274 6.67995 -12.3643 121.685 5.78059 -12.534 120.909 5.0184 -12.626 119.978 4.42898 -12.646 118.938 4.04047 -12.5956 117.84 3.87142 -12.4777 116.734 3.92851 -12.2953 115.674 4.20803 -12.0595 114.707 4.70033 -11.7659 113.862 5.43361 -11.6777 127.672 6.3856 -12.1989 126.934 4.40896 -12.6304 125.765 2.6199 -12.9514 124.219 1.10294 -13.1465 122.369 -0.071487 -13.2072 120.301 -0.848503 -13.1242 118.113 -1.18808 -12.8996 115.91 -1.07389 -12.5437 113.798 -0.511894 -12.0803 111.876 0.468269 -11.5131 110.201 1.90664 -10.7279 108.684 4.35558 -10.8109 132.596 4.94501 -11.5843 131.502 2.01563 -12.2226 129.769 -0.634972 -12.6979 127.479 -2.88298 -12.987 124.738 -4.62311 -13.0768 121.674 -5.77454 -12.9633 118.431 -6.28242 -12.6504 115.16 -6.12376 -12.1492 112.018 -5.30077 -11.4627 109.168 -3.83942 -10.636 106.694 -1.7434 -9.32736 137.352 3.37615 -10.3401 135.919 -0.462959 -11.1772 133.648 -3.93729 -11.8 130.646 -6.88298 -12.1796 127.054 -9.1636 -12.2968 123.039 -10.6717 -12.1477 118.789 -11.3375 -11.7385 114.502 -11.1299 -11.0883 110.379 -10.0578 -10.1881 106.649 -8.12857 -9.11383 103.415 -5.39493 -7.24765 141.871 1.70126 -8.48584 140.119 -2.99197 -9.509 137.344 -7.23812 -10.2704 133.674 -10.8392 -10.7339 129.283 -13.627 -10.8777 124.375 -15.4702 -10.6953 119.179 -16.2843 -10.1948 113.94 -16.03 -9.38 108.916 -14.6924 -8.24042 104.41 -12.2576 -6.81169 100.55 -8.6587 -4.60298 146.087 -0.054435 -6.04802 144.042 -5.53284 -7.24321 140.802 -10.4893 -8.13144 136.519 -14.6932 -8.67267 131.393 -17.9473 -8.84024 125.664 -20.0997 -8.62744 119.599 -21.0494 -8.04318 113.482 -20.7529 -7.08603 107.625 -19.1759 -5.77963 102.353 -16.3577 -4.12698 97.8226 -12.2769 -1.43115 149.939 -1.86574 -3.0623 147.631 -8.04924 -4.41095 143.974 -13.6441 -5.41411 139.139 -18.3892 -6.02504 133.353 -22.0622 -6.21411 126.886 -24.4919 -5.97388 120.04 -25.564 -5.31401 113.136 -25.2289 -4.25377 106.509 -23.4776 -2.81467 100.514 -20.3577 -0.857285 95.3878 -15.9247 2.22112 153.371 -3.70596 0.427597 150.832 -10.5049 -1.05525 146.812 -16.6565 -2.15849 141.496 -21.8739 -2.82948 135.134 -25.9124 -3.03783 128.024 -28.5838 -2.77313 120.497 -29.7627 -2.04877 112.906 -29.3942 -0.897324 105.606 -27.4954 0.658188 98.9955 -24.1115 2.66969 93.7269 -19.7623 6.30045 156.332 -5.54841 4.37052 153.602 -12.8633 2.77497 149.275 -19.4821 1.58868 143.556 -25.0954 0.866531 136.711 -29.4409 0.642624 129.061 -32.3147 0.926575 120.963 -33.5833 1.70657 112.796 -33.1866 2.9455 104.941 -31.144 4.64336 97.9398 -27.491 6.69341 92.8958 -23.465 10.7483 158.78 -7.36639 8.71009 155.896 -15.0906 7.02557 151.328 -22.08 5.77182 145.289 -28.0077 5.00963 138.061 -32.5957 4.77312 129.983 -35.6311 5.07339 121.431 -36.9701 5.89712 112.807 -36.5512 7.20499 104.513 -34.3944 9.05486 97.2925 -30.556 11.2406 92.5807 -26.9734 15.4979 160.678 -9.13321 13.3818 157.684 -17.1547 11.6321 152.94 -24.4125 10.3309 146.669 -30.5671 9.53901 139.163 -35.3323 9.29359 130.775 -38.4834 9.60574 121.895 -39.8743 10.4606 112.939 -39.4398 11.8189 104.326 -37.2 14.0588 96.9514 -33.3467 16.6434 92.4725 -29.9718 23.0545 162.362 -11.6177 20.8829 159.289 -19.8483 19.0871 154.421 -27.2967 17.7525 147.986 -33.6129 16.9392 140.284 -38.5019 16.6871 131.675 -41.736 17.0074 122.563 -43.1632 17.8853 113.373 -42.7169 19.2791 104.535 -40.4185 21.2106 97.0107 -36.2628 23.42 92.7149 -32.4103 30.8573 162.843 -13.8754 28.6938 159.781 -22.0763 26.9055 154.931 -29.4973 27.9242 148.749 -36.2635 26.8335 141.896 -40.4148 27.1308 134.403 -43.1558 24.8332 123.19 -45.306 25.7073 114.033 -44.8611 27.096 105.227 -42.5709 28.977 97.7766 -38.3173 31.01 93.1798 -33.7501 36.0984 162.352 -15.1936 33.9816 159.358 -23.2144 33.3826 154.015 -31.9877 31.2043 127.797 -45.1888 41.2721 161.261 -16.3458 39.5527 157.252 -27.2589 34.1114 118.081 -46.7154 35.274 106.958 -44.7195 36.8836 99.3018 -39.4702 38.9366 94.263 -33.7738 46.3034 159.583 -17.3163 44.8502 156.854 -26.2038 42.5748 117.521 -46.6924 42.9789 108.591 -45.2964 44.501 100.951 -40.6187 47.291 94.8665 -33.4268 51.1197 157.345 -18.0904 49.9772 155.213 -25.3275 48.2059 117.708 -45.7612 48.7168 109.961 -44.0908 50.3568 102.509 -40.027 53.4827 96.7468 -32.9174 55.6498 154.578 -18.6568 54.8409 152.392 -25.0769 52.7864 118.209 -43.2581 53.6228 111.351 -41.2941 55.2413 104.656 -38.0407 58.7364 99.47 -31.8202 59.8286 151.323 -19.0083 59.0656 148.888 -25.0487 58.6371 112.647 -37.2162 60.0213 108.358 -34.3455 66.7364 101.215 -23.2055 64.3461 145.393 -20.1264 63.2939 144.171 -24.2324 64.6093 139.563 -25.8976 66.0209 134.24 -27.224 64.8265 128.137 -31.0498 61.4092 121.344 -36.0211 68.4454 138.292 -21.5291 45.453 130.809 -41.5454 41.6524 143.401 -39.21 50.101 128.433 -40.9145 59.0129 137.957 -33.7931 50.9314 147.376 -33.4765 46.2433 131.854 -39.2708 49.7303 130.061 -38.4737 43.1271 140.511 -36.8678 43.4601 135.718 -38.774 52.9147 130.138 -37.0872 45.9668 143.509 -34.5197 55.443 132.636 -35.7653 50.0284 143.557 -33.3201 56.2208 136.784 -34.4582 54.0432 141.001 -33.4001 46.726 132.091 -39.9847 50.1181 130.245 -39.3182 43.4927 141.099 -37.7857 53.4219 130.291 -37.7879 56.1362 132.807 -36.2509 50.4828 144.208 -33.8546 57.0422 137.29 -34.817 54.643 141.653 -33.7723 55.0842 126.961 -39.0439 60.0643 131.807 -35.2485 60.3282 138.873 -32.42 37.8104 136.599 -42.3736 42.95 129.62 -43.6504 57.0126 145.449 -31.2322 50.941 150.632 -32.0693 43.8723 150.975 -35.442 38.0876 145.889 -39.6926 49.5108 126.802 -42.685 45.605 137.439 -38.4211 44.6923 140.828 -36.8618 47.893 134.316 -39.1277 50.3776 132.134 -38.6198 52.5225 131.75 -37.7278 54.0743 133.869 -37.1666 53.9713 137.248 -36.4482 52.0865 140.596 -35.554 49.2647 142.875 -34.8407 46.3531 143.052 -35.2278 43.9086 135.978 -39.5785 46.5533 144.179 -35.4761 49.8356 130.846 -38.4441 47.9983 130.76 -39.0142 46.6052 132.656 -39.1566 44.0339 136.249 -38.6168 42.8387 138.17 -38.0111 43.6017 140.564 -36.8188 44.6634 133.535 -39.1929 52.6931 130.851 -37.3023 51.3763 129.845 -37.8198 44.2029 142.382 -35.6615 46.0758 143.337 -34.7362 54.9106 133.214 -36.2776 54.299 131.078 -36.3859 47.9753 143.917 -33.7041 49.8059 143.321 -33.8591 55.4037 137.025 -35.1736 56.1837 134.599 -35.1328 52.1021 142.547 -33.2281 53.387 140.878 -34.1972 55.4482 138.973 -33.8331 48.1733 142.19 -35.9091 46.6141 142.785 -35.6607 50.1892 139.952 -36.9649 52.0658 136.997 -37.7961 52.4194 132.447 -38.0845 51.4089 133.398 -38.5931 49.903 135.983 -38.7555 47.893 138.861 -37.994 46.3798 141.377 -36.6995 54.5637 128.486 -38.5583 60.8235 135.305 -33.5811 58.5718 132.382 -36.0552 39.8159 132.627 -42.8845 41.7955 136.119 -41.0087 54.1663 148.483 -31.4153 55.9539 143.477 -32.6654 40.5373 149.092 -37.6693 45.7748 147.539 -36.2109 37.1201 141.421 -41.3319 46.3145 127.804 -43.6823 52.3171 126.477 -40.9857 59.1168 142.133 -31.5495 47.4993 151.562 -33.5084 58.2159 128.907 -37.3334 61.9319 130.28 -33.5996 55.9843 124.214 -39.8068 61.9357 139.512 -29.8517 40.0547 127.159 -44.8752 32.5262 135.693 -43.2641 50.1396 153.648 -28.7343 58.0699 147.457 -28.6001 32.4395 147.874 -38.275 40.7865 154.09 -32.8062 48.5485 123.891 -44.2502 44.8917 139.171 -37.7145 46.6541 135.791 -38.9245 49.1683 133.076 -38.9875 51.4356 131.609 -38.169 53.4767 132.569 -37.389 54.253 135.498 -36.8633 53.2321 138.983 -35.9892 50.709 141.926 -35.1558 47.8345 143.294 -34.7866 45.1675 142.152 -35.9951 45.1713 133.754 -39.9113 44.7331 143.025 -36.6728 43.2421 138.583 -38.8326 48.3979 130.967 -39.812 51.8085 130.009 -38.6079 54.898 131.214 -36.9842 56.9414 134.926 -35.5317 56.2052 139.595 -34.146 52.5633 143.214 -33.6329 48.5055 144.528 -34.4611 48.2504 131.567 -38.9341 43.4311 138.451 -37.8428 45.1446 134.246 -39.058 51.3088 130.573 -37.8872 44.498 142.267 -35.7379 53.9312 131.767 -36.7632 47.939 143.698 -34.0771 55.4586 135.033 -35.7586 51.6817 142.351 -33.9384 54.6942 139.021 -34.6087 47.6009 142.867 -35.4487 49.1112 141.201 -36.4341 51.2183 138.511 -37.4098 52.6196 135.479 -38.0192 51.7129 132.488 -38.381 50.7646 134.609 -38.7822 48.8984 137.414 -38.4633 47.013 140.215 -37.3683 45.949 142.148 -36.1946 56.8747 130.003 -37.3653 59.271 135.122 -34.8148 43.4222 133.063 -41.3875 53.4219 145.768 -32.7803 43.3933 146.037 -37.8806 41.0259 139.775 -40.1938 47.7811 129.312 -41.5937 52.3542 128.12 -39.7631 57.9468 140.752 -33.0391 48.3905 148.009 -34.6435 59.466 126.101 -36.8574 62.769 134.918 -31.1499 35.337 130.917 -44.7544 54.5184 150.949 -28.3414 36.1436 151.734 -35.4628 31.2473 142.63 -41.2578 44.4825 124.75 -45.068 52.223 123.767 -42.08 60.3461 143.735 -29.0309 45.5294 154.723 -30.4826 52.8762 134.088 -38.0496 52.9993 133.095 -37.9288 65.4323 107.528 -26.9171 67.9487 126.833 -28.5074 70.5081 134.319 -20.2732 62.6749 119.616 -35.7438 72.6589 117.278 -23.098 72.2444 116.442 -22.3254 71.3889 125.795 -28.3703 65.5901 109.029 -33.5959 69.3603 107.637 -26.6398 75.0515 126.757 -29.2103 63.5342 113.12 -36.9642 64.2148 119.206 -36.4696 70.5985 118.958 -37.1681 74.9121 108.319 -27.0453 71.9998 116.742 -36.9872 71.9612 114.391 -36.0381 88.8094 110.578 -26.9527 84.1169 110.131 -30.6072 87.2695 128.749 -35.4465 93.0867 136.547 -27.8016 77.576 118.913 -26.6205 76.2215 114.981 -25.3972 75.678 123.817 -34.645 78.3012 128.686 -29.8368 77.0845 117.097 -33.174 81.2906 120.822 -28.8656 75.1464 118.021 -36.546 81.172 131.293 -29.8079 83.4949 133.994 -29.1154 81.9364 120.685 -33.7567 87.4282 126.444 -33.002 84.2007 123.162 -29.9962 87.3956 126.405 -30.3062 80.9881 121.747 -36.5927 79.7217 108.446 -27.144 76.8458 113.737 -33.7746 81.9683 107.792 -26.8548 80.6767 124.289 -36.9998 70.1714 106.645 -20.1493 72.022 116.241 -22.9037 72.8888 115.884 -22.6383 73.3892 117.141 -19.0068 69.7533 125.895 -28.1175 72.9185 107.101 -21.1147 69.1965 130.484 -24.8144 72.6997 129.897 -25.4795 73.1742 126.294 -28.81 63.1531 116.358 -37.3542 67.3688 119.359 -37.0517 66.7935 113.286 -37.5877 72.197 107.977 -26.8719 77.8994 107.939 -21.2215 76.3201 129.88 -26.4826 71.9026 115.225 -37.0598 71.0463 113.066 -37.4483 87.9791 108.369 -27.0824 90.3568 109.787 -24.1197 85.8919 131.003 -34.834 89.9668 133.538 -32.7744 75.3807 117.261 -28.6335 74.2589 118.273 -24.8974 74.5081 115.555 -23.9173 74.7186 115.201 -29.2771 78.273 114.414 -20.2702 76.9377 127.337 -29.5447 74.9877 116.19 -32.3036 79.228 118.61 -30.8741 79.7455 119.59 -27.752 75.7618 117.015 -35.1966 72.8947 115.268 -34.2906 73.0867 117.445 -36.2917 78.8617 122.15 -25.111 82.7305 124.079 -27.0743 82.4725 132.777 -29.4795 84.5114 123.193 -33.8509 87.4141 126.338 -31.4821 85.952 124.849 -30.2847 82.9247 121.687 -31.9314 81.3232 120.724 -35.4257 84.0399 124.603 -36.7655 87.4445 127.25 -34.4856 81.9223 133.222 -27.574 84.3016 135.509 -27.551 85.3181 126.104 -28.0604 88.5803 128.469 -28.7521 90.0231 129.941 -30.4819 77.43 108.57 -27.2025 76.3149 112.625 -34.143 74.121 114.113 -34.4307 78.5236 114.752 -26.0741 79.2235 114.861 -29.7308 81.84 107.809 -22.5419 82.8432 113.477 -21.7471 80.6945 113.198 -32.7484 80.1006 111.667 -32.8137 81.4167 114.445 -29.7768 85.2891 111.653 -30.1957 85.1586 107.567 -26.8363 79.5016 131.024 -27.3879 82.7149 121.901 -29.5647 78.0128 119.311 -36.7914 75.0649 120.445 -36.8974 79.7863 129.926 -29.9221 79.3229 118.187 -33.5803 84.4402 132.877 -32.1553 80.111 127.576 -34.3959 71.2569 121.989 -34.7844 66.2834 120.958 -33.9154 71.8315 110.129 -33.2852 77.2358 110.04 -32.7655 73.4782 133.884 -21.131 77.6228 132.464 -22.2276 81.3655 132.277 -23.4746 83.426 133.82 -24.0033 85.7036 136.141 -24.3458 88.7308 138.375 -25.7679 91.4667 138.163 -27.2159 92.7583 132.552 -26.9171 90.4562 129.827 -25.7152 86.8669 126.78 -24.6669 84.0844 124.721 -23.6771 80.1888 122.834 -22.3988 88.4224 111.98 -26.642 73.0971 114.872 -34.0422 78.0365 114.257 -32.4652 72.6559 116.366 -23.6348 74.0565 115.738 -18.8756 74.3546 119.371 -20.3332 70.6786 130.252 -24.9797 66.3234 116.559 -38.424 68.7427 109.182 -33.5877 75.2695 107.415 -21.4172 74.5162 129.923 -26.0103 69.7229 116.044 -38.0771 89.5331 107.124 -23.792 88.3401 135.32 -31.9677 74.1388 115.95 -26.0645 75.9612 114.948 -19.4391 77.1416 118.114 -30.0044 73.3922 116.231 -34.5642 80.9955 123.121 -26.1556 85.0815 123.793 -32.0715 84.2148 123.344 -35.5836 83.1264 134.427 -27.4776 86.9811 127.454 -28.4118 89.522 129.098 -29.4795 74.6652 110.346 -32.9938 73.4634 113.087 -34.946 76.8228 114.888 -29.5521 79.8915 107.956 -22.0252 80.6122 114.073 -21.0487 83.7573 107.262 -22.8645 86.4999 113.195 -22.8837 83.3651 113.698 -27.6845 87.0649 106.513 -23.293 78.1729 130.027 -26.8719 84.0191 124.97 -27.6585 78.0395 121.874 -37.0279 80.9955 119.953 -31.531 86.4391 136.135 -29.7404 82.2626 130.071 -33.6418 73.3188 122.63 -34.5204 68.9993 121.598 -34.5597 61.1201 116.288 -36.4563 80.2549 109.485 -31.4116 71.6743 134.356 -20.764 75.3384 133.298 -21.6337 79.5527 132.054 -22.774 82.5547 132.906 -23.8513 84.4528 134.914 -24.1434 93.1861 134.488 -27.5777 91.9487 131.059 -26.2461 88.5515 128.283 -25.1888 85.4827 125.624 -24.1983 82.3397 123.833 -23.052 76.6708 121.456 -21.1288 89.869 111.457 -23.9848 75.2791 114.471 -33.131 72.5418 119.712 -36.6595 81.3907 113.876 -31.5584 78.3679 118.196 -35.5399 83.0864 127.336 -36.4037 85.4308 112.541 -29.518 90.2145 131.46 -31.6971 82.9166 108.627 -29.6277 64.7835 120.521 -33.7531 75.2428 120.861 -23.2937 80.7976 132.083 -27.6852 77.9572 125.484 -34.7339 74.1796 115.013 -31.4161 80.9021 114.638 -26.7177 85.1483 113.312 -25.263 82.0676 114.019 -24.0982 79.6802 114.358 -23.3746 77.3173 114.669 -22.6413 75.2124 115.161 -21.7041 73.588 115.837 -21.0027 72.7523 116.861 -20.956 73.4137 118.581 -21.8902 66.4762 141.604 -20.8641 58.3546 118.743 -38.2809 63.6573 103.164 -29.6181 61.2017 113.464 -35.2759 62.603 110.079 -31.8602 69.9438 135.891 -21.1621 68.2393 131.67 -26.2038 67.4378 127.136 -29.5202 62.8091 120.687 -35.9907 60.5767 117.653 -37.3935 60.7761 113.247 -36.1998 62.0921 109.556 -33.1525 65.2417 105.935 -28.1842 71.3073 112.394 -36.0092 68.3164 110.617 -35.2945 68.3445 111.331 -36.3747 -11.3552 113.133 6.63324 68.4684 104.805 -22.5375 -9.45044 104.401 1.95409 -7.56053 100.492 -0.627556 -5.0686 97.2087 -3.46945 -1.8849 93.9531 -6.38548 56.808 93.3547 -23.3279 61.9223 96.6682 -23.3508 59.4081 140.566 19.6623 60.4639 137.464 20.042 61.8763 134.831 19.5882 63.4845 132.857 18.7674 59.1931 143.585 18.4382 65.1653 131.503 17.6961 59.7648 145.792 16.5098 66.574 130.654 16.1776 60.7479 147.03 14.1165 67.7426 130.322 14.3856 61.9742 147.354 11.7839 68.7983 130.581 12.5261 63.4081 146.812 9.84286 69.823 131.736 10.6896 65.1046 145.464 8.28365 70.6207 133.636 8.99838 67.079 143.51 7.13741 70.6489 135.976 7.7083 68.7916 141.109 6.6273 70.0306 138.529 6.87865 46.0899 131.451 -40.7647 44.2964 133.408 -40.6498 42.8521 136.048 -40.2939 42.1344 139.179 -39.5132 48.0895 130.139 -40.7032 42.5725 142.25 -38.4974 50.1107 129.339 -40.116 44.0636 144.531 -37.2763 52.0814 129.065 -39.1855 46.164 145.859 -35.8431 53.992 129.384 -38.172 48.4484 146.268 -34.5523 55.8478 130.62 -37.1918 50.7075 145.792 -33.6656 57.2832 132.639 -36.2405 52.9926 144.492 -33.2066 58.0113 135.002 -35.2811 55.2984 142.565 -33.2185 57.9772 137.569 -34.3714 57.0771 140.172 -33.5929 1.38182 68.9774 -45.9569 1.47894 65.0285 -50.2728 1.09637 63.909 -52.87 4.59888 9.97681 -40.0908 4.56625 11.4122 -44.5415 4.27933 14.0176 -48.351 3.6239 17.5846 -51.2515 2.5518 21.6054 -53.3934 2.81797 25.9316 -56.0077 3.01964 28.3271 -57.5284 3.3214 31.8267 -58.9081 3.45486 35.6754 -59.9047 3.14198 39.6169 -60.4303 2.63558 43.6332 -60.5215 2.15143 47.625 -60.2798 1.8074 51.4352 -59.6459 1.64281 54.9177 -58.6553 1.54494 58.1214 -57.1999 1.24614 61.2169 -55.2299 2.20258 72.8765 -41.2252 4.0999 75.8378 -37.4454 6.18702 78.5203 -33.435 56.4936 87.4619 -10.08 57.7629 85.6098 -10.3506 59.9983 84.0135 -10.7406 63.4852 82.0057 -11.5406 67.5801 79.1089 -12.265 -10.1652 108.262 6.21582 -11.0734 112.965 7.57632 -0.481384 91.8178 -0.502998 -8.62003 103.705 4.73889 -6.45135 99.499 2.95057 -3.73181 95.6969 0.985786 -60.1092 28.2359 7.92776 -8.84988 108.395 10.4182 -10.438 113.006 9.67531 2.73864 92.5778 10.975 -6.7205 103.892 10.9765 -4.01207 99.6658 11.3213 -0.806137 95.8341 11.3643 64.3527 94.8043 -12.5052 60.0369 91.4033 -11.0824 -11.539 10.151 19.9241 -5.49863 10.1436 21.8177 -15.9268 10.1577 16.38 -19.33 10.1651 11.6357 -22.5381 10.1681 4.40154 32.719 10.1303 18.5309 40.266 10.1244 13.6679 14.2263 10.1377 23.0462 22.7994 10.1333 21.7028 2.70157 10.137 23.1159 44.4157 10.1281 7.56966 6.82094 10.137 23.6438 46.5807 10.1555 0.804138 -22.7316 10.1651 -8.79883 46.5392 10.1481 -8.35619 -6.5737 10.1422 -30.0845 -12.5993 10.151 -28.2717 -18.4966 10.1644 -25.6115 -21.6988 10.1659 -20.5282 -21.6462 10.1607 -14.2928 40.6619 10.1362 -21.951 32.9614 10.1496 -27.1618 22.9625 10.1599 -31.832 13.8408 10.1637 -33.647 2.11658 10.1488 -32.443 44.7679 10.1347 -15.5147 6.04318 10.1488 -32.526 12.5907 10.1733 -3.80531 59.1887 91.8044 8.95242 -37.1383 88.9529 -2.97714 -31.8022 10.0858 -1.97102 -25.1531 10.1622 -2.2068 -48.967 94.3801 -3.43312 -42.7435 92.7505 -3.24479 -45.2458 14.541 -1.9814 -38.8006 11.688 -1.94433 -51.5643 18.2037 -2.1067 -56.8395 22.9229 -2.04294 -61.3273 28.167 -2.00068 -64.683 34.1592 -1.92802 -67.7244 42.676 -1.88947 -69.2985 52.0358 -1.98363 -69.0782 59.0674 -1.98585 -68.0128 66.587 -1.96361 -66.3149 75.4782 -2.11857 -61.6254 86.6775 -2.9586 -55.4464 92.4777 -3.38715 -32.8632 83.5116 -1.95249 -29.1664 80.3716 -1.67964 -25.0219 78.6923 -1.82199 -19.731 77.9019 -1.94433 -13.8211 78.3245 -1.89985 0.599609 81.0967 -1.11393 5.68803 83.0274 -0.72765 6.50954 84.4391 -0.967133 5.72511 86.2104 -0.331726 3.73808 88.5303 1.10886 0.442429 91.5093 2.82008 -2.82133 95.1602 4.04714 -5.66766 99.1208 5.2742 -8.03503 103.465 6.34038 -9.79816 108.128 7.22415 -10.9333 112.931 8.02786 -26.7479 60.7542 43.6698 -20.1774 63.8423 42.5992 -8.42801 27.4619 48.2347 14.9477 25.7121 48.3904 3.09452 25.896 48.4757 42.6645 36.5214 48.0598 47.7344 49.638 47.1827 40.5551 62.2549 45.2372 -20.4769 63.1994 -50.3046 -27.628 60.1306 -51.1217 -8.33606 28.1588 -55.7549 41.6947 37.0493 -55.6696 46.1069 49.7648 -54.9594 39.661 61.5616 -52.9449 -28.2701 61.5994 42.6785 -21.096 64.5792 41.7131 -10.6093 65.5757 41.2676 1.58052 66.8139 41.2357 -20.6037 30.6107 47.064 -27.9498 36.4747 46.6355 -32.0076 43.3195 45.7562 -33.3289 50.1288 44.8568 -9.84192 26.1273 47.153 -32.1367 56.4888 43.8329 40.1118 30.266 46.5139 29.9349 25.9004 46.5236 16.4046 23.9305 47.0581 3.12344 24.0639 47.2805 46.8217 35.817 46.5762 50.7757 42.2756 46.3478 52.0569 49.3051 45.7651 50.1277 56.399 44.7582 45.0638 62.5551 43.5645 13.7088 68.7742 41.1082 26.4851 69.2584 41.2994 37.1171 66.9377 42.3456 1.53827 66.2289 -48.7276 -11.1349 65.489 -48.6957 -21.7418 64.0098 -49.2903 -29.2399 60.7943 -50.2557 -33.7448 49.2984 -52.3954 -32.2894 43.1438 -53.1362 -27.8334 36.8602 -53.862 -20.3917 31.2343 -54.2831 -10.0503 26.5855 -54.5085 -32.8298 55.3737 -51.4331 2.729 24.1781 -54.8289 15.8893 23.9164 -54.731 29.5034 26.0458 -54.0829 39.6795 30.5618 -53.8806 46.253 36.21 -53.7901 50.0128 42.5536 -53.5439 51.139 49.2547 -52.9597 49.321 55.8341 -52.0848 44.6241 61.6202 -51.0127 37.1431 65.7944 -49.8316 26.732 68.0261 -48.7847 13.6339 67.8667 -48.6371</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2108\" source=\"#LOD3spShape-lib-positions-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"normal\" id=\"LOD3spShape-lib-normals\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"LOD3spShape-lib-normals-array\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6870\">-0.192109 -0.934569 0.299458 -0.06315 -0.993623 0.093407 -0.038767 -0.993005 0.111528 -0.11695 -0.921313 0.370816 -0.085264 -0.993927 0.06957 -0.25821 -0.942076 0.214058 -0.305238 -0.944237 0.123473 -0.103012 -0.993873 0.04007 -0.109849 -0.993698 0.02232 -0.319871 -0.945464 0.061492 0.322015 -0.653105 0.68539 0.238016 -0.809438 0.536805 0.39559 -0.829362 0.394547 0.547107 -0.665777 0.50736 0.149283 -0.925897 0.34703 0.227375 -0.943129 0.242504 -0.182106 -0.7902 0.585167 -0.310544 -0.820667 0.479654 -0.418246 -0.841388 0.342252 -0.407245 -0.671943 0.618582 -0.544891 -0.711903 0.443045 -0.234371 -0.618101 0.750347 -0.474249 -0.857348 0.200104 -0.472515 -0.875412 0.101901 -0.601129 -0.750567 0.274396 -0.593419 -0.791427 0.146617 0.282256 -0.953514 0.105559 0.497204 -0.845385 0.195227 0.680184 -0.678639 0.277127 0.475425 -0.378716 0.794069 0.394699 -0.508097 0.765539 0.651796 -0.507567 0.563506 0.728714 -0.35445 0.585953 -0.280085 -0.456993 0.844222 -0.472084 -0.52749 0.706322 -0.629949 -0.5896 0.505505 -0.525528 -0.402813 0.749375 -0.688269 -0.483465 0.540877 -0.345696 -0.333643 0.877027 0.797494 -0.502759 0.333521 0.868857 -0.332163 0.36709 0.779236 -0.208323 0.591094 0.556733 -0.232343 0.797537 0.611419 -0.086952 0.786515 0.805975 -0.07802 0.586786 0.901017 -0.198547 0.385677 0.912954 -0.073233 0.401437 0.587309 0.31693 0.74473 0.626298 0.112282 0.771455 0.807598 0.10215 0.580819 0.767563 0.296279 0.568389 0.905959 0.097128 0.412074 0.868972 0.273148 0.412646 0.369046 0.664292 0.650016 0.498279 0.502362 0.706648 0.692864 0.459155 0.555982 0.584348 0.597963 0.548615 0.813067 0.415121 0.408163 0.751114 0.515121 0.41289 0.19627 0.766932 0.610977 0.270011 0.7156 0.644213 0.477417 0.672112 0.565984 0.38089 0.730939 0.56626 0.665617 0.613839 0.424448 0.5601 0.712938 0.42191 -0.142237 0.892596 0.427833 -0.115435 0.801937 0.586149 -0.145778 0.823148 0.548795 -0.183731 0.901347 0.392196 -0.170598 0.892172 0.418242 -0.198923 0.94046 0.275618 -0.083913 0.784617 0.614276 -0.104776 0.836925 0.537195 -0.07128 0.762805 0.642687 -0.083732 0.95816 0.273711 -0.152017 0.963903 0.218593 -0.043758 0.995476 0.084341 0.11433 0.983142 0.142691 -0.188565 0.971095 0.146345 -0.153667 0.986837 0.050398 -0.277878 0.955105 0.102752 -0.278528 0.959779 0.035299 -0.266228 0.943946 0.195163 -0.494465 0.642119 0.585822 -0.123678 0.744163 0.656449 -0.094312 0.919596 0.381378 -0.521981 0.776809 0.352284 0.287464 0.72515 0.625717 0.35104 0.866307 0.355363 -0.085399 0.659129 0.747166 0.224013 0.689809 0.688464 -0.41145 0.564912 0.715251 -0.896437 0.304297 0.322186 -0.755967 0.475931 0.449448 -0.804069 0.52634 0.276477 -0.929837 0.307416 0.202235 -0.651421 0.428251 0.626301 -0.812838 0.261118 0.520685 -0.700828 0.14352 0.698743 -0.528973 0.340042 0.777534 -0.323564 0.505566 0.799819 -0.384671 0.217738 0.897005 -0.26768 0.410295 0.871783 -0.51729 -0.021456 0.855541 -0.703157 -0.1848 0.686599 -0.802326 -0.033833 0.595927 -0.877917 -0.14451 0.456484 -0.806047 -0.267053 0.528176 -0.89323 0.116397 0.434273 -0.92976 -0.00252 0.368157 -0.693473 -0.636086 0.338364 -0.705373 -0.68381 0.186692 -0.75587 -0.532488 0.380943 -0.796546 -0.566484 0.211211 -0.077417 -0.240522 0.967551 -0.089798 -0.134723 0.986806 -0.168487 -0.121841 0.978145 -0.138523 -0.221426 0.965289 -0.113525 -0.038943 0.992772 -0.195995 -0.017488 0.980449 -0.602195 -0.290799 0.743503 -0.742439 -0.374894 0.555193 -0.432918 -0.200289 0.878901 -0.818103 -0.413906 0.399236 -0.879805 -0.419705 0.22314 -0.8832 -0.285146 0.372357 -0.940384 -0.263381 0.215195 -0.205308 0.092751 0.974293 -0.12459 0.080228 0.988959 -0.122228 0.178941 0.976238 -0.196017 0.189929 0.962031 -0.04789 0.778827 0.625407 -0.065661 0.712179 0.698921 -0.086279 0.666075 0.740878 -0.054107 0.736647 0.674109 0.32735 0.918436 0.222077 0.038245 0.947019 0.318892 -0.067436 0.912058 0.404479 0.299059 0.868082 0.396229 0.020777 0.864061 0.502958 0.601008 0.74983 0.276665 0.10013 0.787789 0.607752 0.137884 0.80072 0.582954 0.293157 0.782715 0.549014 0.251535 0.793724 0.553834 0.033793 0.760625 0.648311 0.012829 0.792843 0.609291 -0.001462 0.805911 0.592035 0.470195 0.782277 0.408607 0.406592 0.824118 0.394351 -0.228092 0.919665 0.319673 -0.149194 0.877198 0.45636 0.221981 0.775644 0.590848 0.477153 0.718896 0.505483 0.642223 0.702693 0.306223 -0.941954 -0.151996 0.299365 -0.977272 -0.097629 0.18817 -0.969667 0.027366 0.242894 -0.984274 0.065087 0.16422 -0.081923 0.660823 0.746057 -0.143863 0.635643 0.75846 -0.950758 0.179022 0.253002 -0.969441 0.180582 0.166057 0.433741 0.791171 0.431182 0.286611 0.730746 0.619568 0.635928 0.49935 0.588427 0.410194 0.41588 0.811655 -0.030936 0.832088 0.553781 -0.063268 0.738092 0.671727 -0.236437 0.785277 0.572222 -0.098454 0.365739 0.925495 -0.356861 0.365039 0.859882 0.116456 0.704283 0.700303 0.160354 0.369389 0.915335 -0.380395 0.81813 0.431235 -0.491132 0.823545 0.283836 -0.59916 0.341103 0.724332 -0.798743 0.301719 0.520552 0.047573 -0.992573 0.111966 0.069354 -0.994739 0.075398 0.015592 -0.990695 0.135202 0.028503 -0.991144 0.129693 0.0864 -0.911356 0.402449 0.046371 -0.905885 0.420977 -0.018844 -0.991895 0.125654 -0.057065 -0.909815 0.411073 0.087743 -0.99576 0.027619 0.126144 -0.779499 0.613571 0.067151 -0.760559 0.645787 0.153713 -0.607983 0.778928 0.075394 -0.57677 0.81342 -0.085238 -0.760064 0.644234 -0.102578 -0.566247 0.817827 0.045094 -0.227711 0.972684 0.047131 -0.133922 0.98987 0.005657 -0.158915 0.987276 0.006376 -0.238835 0.971039 0.058631 -0.040878 0.997442 0.002975 -0.056704 0.998387 0.127635 -0.116289 0.98498 0.152279 -0.014755 0.988227 0.100619 -0.20516 0.973543 0.059288 0.068169 0.995911 -0.006745 0.055506 0.998436 0.05032 0.180626 0.982264 -0.021925 0.163036 0.986376 0.163736 0.099069 0.981517 0.156175 0.220652 0.962768 0.020684 0.317842 0.947918 -0.050294 0.316731 0.947181 -0.025411 0.533931 0.845146 -0.086911 0.5228 0.848014 0.127716 0.356862 0.925385 0.071441 0.516034 0.853584 -0.061054 0.766638 0.63917 0.078289 0.741306 0.666586 0.208508 0.671416 0.711144 0.313289 0.499706 0.807554 0.378689 0.310587 0.871855 0.400342 0.118619 0.908656 0.381543 -0.070384 0.921668 0.331083 -0.22771 0.915714 0.260306 -0.364971 0.893889 0.178111 -0.473128 0.862802 0.071351 -0.485088 0.87155 -0.127917 -0.411323 0.902469 -0.217134 -0.272275 0.9374 -0.28612 -0.114565 0.95132 -0.297833 0.014133 0.954513 -0.259212 0.153056 0.953616 -0.214461 0.319798 0.922895 -0.151901 0.528641 0.835144 -0.103669 0.295387 0.949736 -0.165776 0.313209 0.935104 -0.083675 0.492895 0.866056 -0.119834 0.470121 0.874429 -0.087588 0.774585 0.626376 -0.256922 -0.123444 0.958516 -0.282852 0.013185 0.959073 -0.378724 -0.276752 0.883163 -0.438423 -0.070607 0.895991 -0.437651 -0.063548 0.896897 -0.390678 -0.27619 0.878117 -0.251518 -0.431278 0.866451 -0.276371 -0.456203 0.845871 -0.19905 -0.303218 0.9319 -0.274611 0.135247 0.951996 -0.249887 0.293965 0.922573 -0.442099 0.099565 0.891423 -0.416837 0.295755 0.859521 -0.412837 0.32408 0.851198 -0.438351 0.113033 0.891668 0.156401 -0.497394 0.85331 0.061408 -0.535686 0.842181 0.119454 -0.452018 0.883974 0.032667 -0.468626 0.882793 0.050048 -0.559259 0.827481 0.150699 -0.524664 0.837865 0.208739 -0.361482 0.908713 0.238743 -0.413555 0.878621 0.232419 -0.391651 0.890276 -0.125806 -0.451337 0.883441 -0.128663 -0.465603 0.875591 -0.150994 -0.530967 0.833832 0.284031 -0.235212 0.929517 0.269401 -0.199777 0.942079 0.293517 -0.238502 0.925724 0.286186 -0.032306 0.957629 0.310905 -0.056264 0.948774 0.312743 -0.062252 0.947795 0.322676 0.120164 0.938851 0.286685 0.125421 0.94978 0.312932 0.123775 0.941676 0.279716 0.294166 0.913907 0.303905 0.313656 0.89959 0.309104 0.311381 0.898608 0.037576 0.808415 0.587412 0.169817 0.698638 0.69503 -0.000992 0.780213 0.625514 0.138259 0.681294 0.718834 0.161529 0.715447 0.679738 0.018778 0.826522 0.562592 -0.09996 0.801388 0.589733 -0.098648 0.85295 0.512587 -0.076807 0.814801 0.574631 0.262922 0.511395 0.818137 0.242579 0.49202 0.836105 0.262895 0.521513 0.811733 -0.185749 0.495789 0.848346 -0.322481 0.52883 0.785076 -0.160242 0.722224 0.672841 -0.146317 0.772841 0.617501 -0.312096 0.577251 0.754571 -0.076559 0.797941 0.597853 -0.071594 0.840171 0.537576 -0.107376 0.806238 0.581766 -0.112987 0.848782 0.51653 -0.287568 -0.01818 0.957588 -0.246849 -0.15606 0.956405 -0.173556 -0.290795 0.940913 -0.283237 0.22681 0.931844 -0.297529 0.100463 0.949412 0.014537 -0.330354 0.943745 0.072188 -0.329168 0.941508 0.150177 -0.268878 0.951394 -0.091484 -0.341365 0.935468 0.211928 -0.141481 0.96699 0.233591 -0.009434 0.972289 0.24083 0.120366 0.963075 0.233787 0.260424 0.936762 0.102888 0.613185 0.78321 -0.030399 0.694019 0.719314 -0.098708 0.675427 0.730791 0.204918 0.428836 0.879834 -0.132475 0.557408 0.819602 -0.232943 0.388015 0.89173 -0.075386 0.634728 0.769049 -0.09685 0.652599 0.751489 -0.092397 0.509504 0.855493 -0.081276 0.316551 0.945087 -0.068265 0.172012 0.982727 -0.054553 0.065325 0.996372 -0.043341 -0.055449 0.99752 -0.033383 -0.160096 0.986537 -0.028874 -0.24536 0.969002 -0.033304 -0.336054 0.941254 -0.042357 -0.467717 0.882863 -0.046567 -0.556118 0.829798 -0.037674 -0.519487 0.853647 -0.022566 -0.457423 0.888963 -0.012961 -0.556886 0.830488 -0.007732 -0.753873 0.656974 -0.003792 -0.90729 0.420489 -0.001149 -0.991208 0.132304 0.512335 -0.857386 0.049017 0.70555 -0.704425 0.077354 0.297092 -0.954566 0.023258 0.84286 -0.528889 0.09931 0.930258 -0.348816 0.113782 0.968103 -0.21837 0.122848 0.986591 -0.093131 0.134031 0.985676 0.081564 0.147617 0.95281 0.259757 0.157095 0.894834 0.417704 0.157465 0.844113 0.514896 0.149516 0.774064 0.618654 0.134508 0.673761 0.729252 0.119321 0.59429 0.795832 0.116061 0.5205 0.84585 0.116695 0.525074 0.841884 0.124616 0.765546 0.621669 0.16573 0.097097 -0.995263 0.004896 -0.565407 0.809464 0.158374 -0.611313 0.789337 0.056957 -0.920895 0.236324 0.310006 -0.979363 0.144989 0.140806 -0.738247 -0.362498 0.568846 -0.830423 -0.418752 0.367485 -0.844491 -0.498578 0.195588 -0.637358 -0.672695 0.37584 -0.668066 -0.709833 0.223216 -0.553902 -0.635855 0.537476 -0.346188 -0.291036 0.891881 -0.564224 -0.330618 0.756534 -0.436173 -0.617389 0.654663 -0.266348 -0.628612 0.730688 -0.097978 -0.251576 0.962865 -0.086895 -0.643915 0.760146 0.176816 -0.222898 0.958672 0.120695 -0.699248 0.704617 0.465192 -0.190422 0.864486 0.373032 -0.681742 0.629345 0.749171 -0.141411 0.647105 0.57208 -0.682024 0.455597 0.984143 0.023025 0.175875 0.738366 -0.656556 0.154109 -0.095635 0.76965 0.631263 -0.315057 -0.948903 0.017974 -0.110306 -0.993886 0.004918 -0.457702 -0.888528 0.032039 -0.589111 -0.807168 0.037792 0.510058 -0.858624 -0.051043 0.70623 -0.703125 -0.082786 0.294439 -0.955391 -0.023102 0.843862 -0.525198 -0.109834 0.928966 -0.346434 -0.130403 0.964683 -0.219414 -0.145751 0.981881 -0.104853 -0.157847 0.98501 0.058597 -0.162241 0.95819 0.238399 -0.158234 0.897823 0.414043 -0.149942 0.829346 0.538002 -0.150797 0.747675 0.644543 -0.159833 0.659153 0.734437 -0.161615 0.265044 0.963485 0.038059 0.039034 0.999086 0.017437 0.018622 0.997848 -0.062875 0.244836 0.962544 -0.116463 -0.130658 0.991351 0.012349 -0.138096 0.990164 -0.022449 -0.273293 0.96189 0.008822 -0.274255 0.961657 0.000421 -0.053579 0.998129 0.029453 -0.515915 0.855204 0.049583 0.344116 0.89883 -0.271457 -0.055876 0.956544 -0.286182 0.365283 0.930753 0.01632 -0.828131 0.557888 0.054409 -0.952772 0.299578 0.049783 -0.711727 -0.701459 0.037422 -0.905755 -0.418034 -0.069676 -0.8121 -0.578723 -0.074656 -0.818385 -0.573492 0.036778 -0.910268 -0.412077 0.040054 0.709552 0.701423 0.067393 0.515618 0.854187 0.067105 0.52626 0.835416 -0.158524 0.711562 0.67733 -0.186822 0.587221 0.793907 -0.157743 0.504751 0.849895 -0.151344 0.655685 0.754174 0.036026 0.627882 0.742251 -0.234154 -0.995755 -0.076042 0.051857 -0.966252 -0.253074 0.048064 -0.995208 0.084624 0.048994 -0.98245 0.180559 0.046801 0.500696 0.849415 -0.166726 0.699452 0.674292 -0.236847 -0.644888 0.764208 0.010314 -0.658085 0.75262 0.022063 -0.996997 0.052783 0.056672 -0.999004 0.031144 0.031952 0.095211 -0.995451 -0.003478 -0.828476 -0.551185 0.099113 -0.83354 -0.552229 0.015914 -0.680841 -0.722996 0.117184 -0.70438 -0.709823 0.000289 0.942473 0.130036 -0.307954 0.760792 -0.603232 -0.239387 -0.191598 -0.926128 -0.324926 -0.11404 -0.910397 -0.397707 -0.034523 -0.992382 -0.118262 -0.056307 -0.993628 -0.097639 -0.08229 -0.99447 -0.065257 -0.263919 -0.93806 -0.224478 -0.301453 -0.945273 -0.124839 -0.10268 -0.994176 -0.032728 -0.109842 -0.993816 -0.016268 -0.306215 -0.95011 -0.059356 0.319117 -0.647606 -0.691933 0.534285 -0.666968 -0.519319 0.385251 -0.83007 -0.403195 0.239592 -0.805165 -0.542499 0.228594 -0.939199 -0.256224 0.158278 -0.918607 -0.362089 -0.178484 -0.75672 -0.628902 -0.309497 -0.797477 -0.51792 -0.420841 -0.831771 -0.362009 -0.538657 -0.700909 -0.467519 -0.394197 -0.64598 -0.653696 -0.222745 -0.580396 -0.783278 -0.463953 -0.858375 -0.218951 -0.461429 -0.880375 -0.109649 -0.599801 -0.782405 -0.167575 -0.59309 -0.744341 -0.306921 0.280118 -0.952342 -0.120743 0.489162 -0.845976 -0.212238 0.674722 -0.67782 -0.292079 0.467443 -0.364911 -0.805194 0.712309 -0.345361 -0.611018 0.641575 -0.494023 -0.586791 0.39121 -0.489528 -0.779305 -0.257887 -0.431057 -0.864687 -0.450347 -0.520374 -0.725533 -0.610796 -0.588414 -0.529809 -0.665056 -0.488467 -0.56489 -0.505193 -0.408993 -0.759938 -0.312897 -0.314982 -0.896037 0.796286 -0.495922 -0.346396 0.865739 -0.328626 -0.377493 0.760432 -0.204661 -0.616326 0.545204 -0.224716 -0.807623 0.593644 -0.079984 -0.800743 0.783915 -0.086134 -0.614865 0.896384 -0.199742 -0.395726 0.906271 -0.095045 -0.411874 0.551478 0.253954 -0.794594 0.749758 0.226635 -0.62169 0.783116 0.056593 -0.619295 0.5969 0.085909 -0.797703 0.90526 0.04554 -0.42241 0.880719 0.218398 -0.420282 0.336343 0.599609 -0.726183 0.572035 0.582293 -0.577677 0.679985 0.408785 -0.6087 0.461982 0.425407 -0.778204 0.822759 0.398489 -0.405308 0.73865 0.550111 -0.389581 0.158279 0.713924 -0.6821 0.37644 0.723509 -0.578643 0.467127 0.676077 -0.569835 0.228363 0.685665 -0.691168 0.648361 0.657528 -0.383777 0.564637 0.73282 -0.379684 -0.132948 0.895471 -0.424801 -0.16783 0.911023 -0.376656 -0.12755 0.841928 -0.524298 -0.095044 0.810733 -0.577649 -0.191234 0.937857 -0.289574 -0.161097 0.88789 -0.430929 -0.099619 0.831047 -0.547207 -0.068866 0.782563 -0.618751 -0.042804 0.75673 -0.652324 -0.106611 0.95728 -0.268792 0.061832 0.967519 -0.24512 -0.090989 0.984179 -0.152028 -0.171442 0.958937 -0.225938 -0.170146 0.982001 -0.081999 -0.195635 0.967138 -0.16239 -0.282706 0.95847 -0.037576 -0.282545 0.952356 -0.114834 -0.262642 0.936921 -0.230646 -0.457702 0.605028 -0.651498 -0.494691 0.715297 -0.493589 -0.076223 0.822259 -0.563986 -0.087936 0.702019 -0.706709 0.319664 0.765998 -0.557729 0.294833 0.694844 -0.655946 0.224172 0.682804 -0.695361 -0.063717 0.649517 -0.757673 -0.387084 0.558006 -0.734027 -0.896043 0.261582 -0.358722 -0.944002 0.274393 -0.183216 -0.810194 0.488173 -0.324457 -0.742944 0.435424 -0.508371 -0.645648 0.412332 -0.642745 -0.811086 0.243382 -0.531887 -0.699157 0.136155 -0.701885 -0.530892 0.331786 -0.77979 -0.30426 0.511436 -0.803654 -0.248492 0.408629 -0.878222 -0.387347 0.198969 -0.900208 -0.511763 -0.033699 -0.858465 -0.688173 -0.178311 -0.703294 -0.790784 -0.260454 -0.553917 -0.872048 -0.112083 -0.476413 -0.794394 -0.013341 -0.607256 -0.920109 0.042291 -0.389372 -0.884532 0.127633 -0.44868 -0.676964 -0.636735 -0.369174 -0.702442 -0.678564 -0.214769 -0.78028 -0.57775 -0.239514 -0.733839 -0.540713 -0.41123 -0.092147 -0.181509 -0.979062 -0.144369 -0.166467 -0.975421 -0.159435 -0.079334 -0.984015 -0.094565 -0.065989 -0.993329 -0.168501 -0.000101 -0.985701 -0.104493 0.01153 -0.994459 -0.726284 -0.369697 -0.579514 -0.588438 -0.292192 -0.753899 -0.407291 -0.20071 -0.890971 -0.869486 -0.42871 -0.245363 -0.799739 -0.41079 -0.4378 -0.938755 -0.260153 -0.225963 -0.869609 -0.274794 -0.410206 -0.170534 0.079532 -0.982137 -0.161151 0.169743 -0.972223 -0.090409 0.181448 -0.979236 -0.10396 0.092065 -0.990311 -0.061474 0.779505 -0.623373 -0.054952 0.743789 -0.666152 -0.103099 0.66864 -0.736404 -0.089248 0.714186 -0.694242 0.313646 0.879357 -0.358269 0.027421 0.941997 -0.334499 -0.080622 0.891857 -0.445073 0.022338 0.831019 -0.555795 0.289168 0.850636 -0.43909 0.556005 0.699289 -0.449281 0.050624 0.773712 -0.631511 0.231632 0.808083 -0.541616 0.288863 0.771715 -0.566581 0.103245 0.744807 -0.659244 0.031939 0.724546 -0.688486 0.003268 0.749951 -0.661485 -0.026171 0.792703 -0.609046 0.482137 0.794981 -0.36817 0.398207 0.851469 -0.34122 -0.221077 0.901734 -0.371484 -0.143622 0.850839 -0.505417 0.234374 0.743588 -0.626216 0.46128 0.703836 -0.540218 0.562017 0.649813 -0.511741 -0.977474 -0.09123 -0.19032 -0.936551 -0.12725 -0.326619 -0.984003 0.070682 -0.163533 -0.961337 0.050417 -0.270718 -0.12138 0.620783 -0.774529 -0.05521 0.647511 -0.760053 -0.944461 0.162933 -0.285388 -0.972855 0.171501 -0.15537 0.237565 0.800499 -0.55024 0.395586 0.847721 -0.353385 0.35269 0.570432 -0.741766 0.568049 0.652016 -0.502191 -0.054488 0.806873 -0.588206 -0.221404 0.774347 -0.592762 -0.082141 0.728443 -0.680164 -0.34248 0.449493 -0.825023 -0.1184 0.432945 -0.893611 0.102358 0.477975 -0.872389 0.062161 0.735187 -0.675008 -0.351621 0.822971 -0.446186 -0.453177 0.839825 -0.298872 -0.753559 0.408132 -0.515341 -0.56556 0.457673 -0.686059 0.070662 -0.994095 -0.082354 0.053046 -0.991548 -0.1184 0.013209 -0.990078 -0.139895 0.042006 -0.899343 -0.435221 0.096965 -0.90473 -0.414802 0.032991 -0.99044 -0.133938 -0.056118 -0.897897 -0.436614 -0.016738 -0.990736 -0.134764 0.086464 -0.995644 -0.034877 0.061043 -0.750045 -0.658564 0.137198 -0.774505 -0.61751 0.069229 -0.578014 -0.813085 0.165722 -0.607498 -0.776841 -0.08926 -0.735213 -0.671934 -0.114239 -0.544747 -0.830783 0.019911 -0.230638 -0.972836 -0.030593 -0.214954 -0.976145 -0.045955 -0.097756 -0.994149 0.002659 -0.095509 -0.995425 -0.052141 0.011297 -0.998576 0.002127 0.01818 -0.999832 0.120697 0.01473 -0.99258 0.113372 -0.110702 -0.987366 0.096736 -0.223211 -0.969958 -0.055442 0.119889 -0.991238 -0.003618 0.136061 -0.990694 -0.057352 0.236947 -0.969828 -0.01353 0.263616 -0.964533 0.087309 0.294367 -0.951696 0.113304 0.153076 -0.981697 -0.061332 0.359879 -0.930981 -0.028754 0.371752 -0.927887 -0.069217 0.479884 -0.874597 -0.04309 0.485197 -0.873342 0.017067 0.479437 -0.87741 0.052641 0.398131 -0.915817 -0.034654 0.760876 -0.647972 0.07156 0.732098 -0.67743 0.191934 0.634425 -0.748777 0.303753 0.458556 -0.835141 0.384402 0.282027 -0.879031 0.419845 0.110042 -0.9009 0.406427 -0.062856 -0.911518 0.353955 -0.220425 -0.908916 0.281504 -0.354287 -0.89176 0.067511 -0.500136 -0.863311 0.193668 -0.469971 -0.861174 -0.14958 -0.414815 -0.897527 -0.228363 -0.298833 -0.926579 -0.288297 -0.161724 -0.943785 -0.298702 -0.022525 -0.954081 -0.190826 0.301532 -0.934165 -0.246409 0.126265 -0.960906 -0.15017 0.520238 -0.840715 -0.129702 0.309072 -0.942153 -0.066417 0.305119 -0.949995 -0.055085 0.462192 -0.885067 -0.090042 0.449004 -0.888981 -0.071733 0.766958 -0.637675 -0.283007 -0.028509 -0.958694 -0.281863 -0.191917 -0.940065 -0.351312 -0.084797 -0.932411 -0.309888 -0.241843 -0.919501 -0.329877 -0.256795 -0.908426 -0.371873 -0.083592 -0.924512 -0.244245 -0.370528 -0.896133 -0.261882 -0.399787 -0.878401 -0.239012 -0.350966 -0.905371 -0.228514 0.26963 -0.935457 -0.253264 0.114721 -0.960571 -0.387754 0.261515 -0.883887 -0.38213 0.068912 -0.921536 -0.395833 0.087229 -0.914171 -0.400411 0.295266 -0.867461 0.059717 -0.537384 -0.841221 0.170799 -0.490618 -0.854471 0.023673 -0.491984 -0.870282 0.138029 -0.482666 -0.864859 0.172547 -0.546798 -0.819292 0.048051 -0.585369 -0.809342 0.24535 -0.391127 -0.88703 0.271557 -0.425603 -0.863203 0.253362 -0.383231 -0.888224 -0.16392 -0.464478 -0.870282 -0.156074 -0.43633 -0.886147 -0.174103 -0.495914 -0.85074 0.311338 -0.234144 -0.921002 0.314452 -0.22765 -0.921573 0.331844 -0.253055 -0.908759 0.334948 -0.047443 -0.941041 0.358791 -0.06942 -0.930833 0.352034 -0.064094 -0.93379 0.370008 0.120956 -0.921121 0.325861 0.13785 -0.935314 0.365501 0.126808 -0.922133 0.293842 0.331419 -0.896559 0.345775 0.339247 -0.874843 0.349666 0.318511 -0.88107 0.181191 0.722006 -0.667741 0.050427 0.826013 -0.561391 0.124911 0.682336 -0.720288 -8.3e-005 0.771418 -0.636329 0.029371 0.862647 -0.504953 0.172441 0.753171 -0.634821 -0.088449 0.796983 -0.597491 -0.084759 0.878493 -0.470177 -0.056365 0.816918 -0.573992 0.28721 0.527283 -0.799677 0.229314 0.522426 -0.821271 0.28443 0.557632 -0.779838 -0.184783 0.47937 -0.857939 -0.159072 0.705689 -0.690434 -0.306838 0.513915 -0.801088 -0.313651 0.56677 -0.761837 -0.157757 0.765176 -0.624195 -0.073978 0.778021 -0.623867 -0.070331 0.835642 -0.544753 -0.087799 0.795672 -0.599331 -0.090591 0.859197 -0.503561 -0.232887 -0.144487 -0.961711 -0.244705 -0.029472 -0.96915 -0.189644 -0.261806 -0.946305 -0.251478 0.075314 -0.964928 -0.245154 0.195506 -0.949567 0.069738 -0.345456 -0.93584 -0.006898 -0.32309 -0.946343 0.169707 -0.300933 -0.938424 -0.116208 -0.315517 -0.941778 0.239122 -0.166926 -0.956533 0.255866 -0.011563 -0.966643 0.242809 0.152646 -0.957989 0.202267 0.315072 -0.927264 -0.032641 0.607102 -0.793953 0.060458 0.564272 -0.823372 -0.076278 0.598808 -0.797252 0.144831 0.45396 -0.879173 -0.202967 0.364176 -0.908945 -0.116061 0.523868 -0.843856 -0.061288 0.585836 -0.808109 -0.069247 0.590821 -0.803825 -0.06147 0.471147 -0.87991 -0.062087 0.339494 -0.938557 -0.069753 0.213116 -0.974534 -0.075711 0.106988 -0.991373 -0.074759 0.010224 -0.997149 -0.065915 -0.084862 -0.99421 -0.056359 -0.195476 -0.979088 -0.058264 -0.312594 -0.948098 -0.069962 -0.465689 -0.882179 -0.071195 -0.557949 -0.826815 -0.045754 -0.47841 -0.876944 -0.060646 -0.52652 -0.847997 -0.029989 -0.553187 -0.832517 -0.018388 -0.737572 -0.675018 -0.009087 -0.897441 -0.441041 -0.00158 -0.989993 -0.141109 -0.308322 -0.951065 -0.020322 -0.110713 -0.99381 -0.009215 -0.455221 -0.889796 -0.032191 -0.596471 -0.800898 -0.052761 -0.511407 0.823202 -0.246578 -0.952243 0.291325 -0.09145 -0.828387 0.538442 -0.154449 -0.712918 -0.697663 -0.070811 -0.964192 -0.256036 -0.069136 -0.99426 -0.077609 -0.073642 -0.993521 0.085088 -0.075342 -0.980403 0.180699 -0.07847 -0.618484 0.785248 -0.029371 -0.985065 0.143698 -0.094851 -0.540296 0.826158 -0.159823 -0.899944 0.302263 -0.314224 -0.858864 -0.489238 -0.15165 -0.711588 -0.680949 -0.173063 -0.767866 -0.270651 -0.580629 -0.848883 -0.383401 -0.36387 -0.671939 -0.656576 -0.342645 -0.602072 -0.614193 -0.510173 -0.382168 -0.137855 -0.913752 -0.607476 -0.181274 -0.773377 -0.492091 -0.563373 -0.66367 -0.327921 -0.53701 -0.777231 -0.13782 -0.132667 -0.981532 -0.138241 -0.548212 -0.824835 0.069946 -0.573914 -0.815923 0.11889 -0.117351 -0.985948 0.269629 -0.627654 -0.730309 0.418909 -0.085153 -0.904027 0.751138 0.018205 -0.659894 0.495888 -0.698066 -0.516526 -0.95931 0.034968 0.280182 -0.952229 0.032635 0.303636 -0.93144 0.167086 0.323268 -0.946666 0.171861 0.272557 -0.944846 0.025037 0.326557 -0.91551 0.150958 0.372899 -0.937578 0.012119 0.347564 -0.899986 0.12397 0.417919 -0.930687 -0.005661 0.365772 -0.885622 0.08696 0.456193 -0.924746 -0.02703 0.379623 -0.873384 0.042333 0.485189 -0.919713 -0.051956 0.389139 -0.863691 -0.010116 0.503919 -0.915891 -0.078133 0.39375 -0.857075 -0.064545 0.511132 -0.913924 -0.104134 0.392301 -0.854193 -0.116994 0.506623 -0.913686 -0.130204 0.385001 -0.854276 -0.170718 0.490986 -0.915221 -0.154787 0.372036 -0.856986 -0.224754 0.463745 -0.918574 -0.175545 0.354127 -0.862661 -0.271395 0.426803 -0.924357 -0.190998 0.330279 -0.874699 -0.302741 0.378484 -0.93489 -0.202027 0.291831 -0.900162 -0.32556 0.289342 -0.890596 -0.319641 0.323525 -0.930807 -0.199874 0.306022 -0.896 0.289458 0.336747 -0.918721 0.296141 0.261252 -0.872107 0.26593 0.410745 -0.848724 0.226438 0.477905 -0.827137 0.172709 0.534805 -0.80861 0.10747 0.578446 -0.794368 0.032855 0.606547 -0.785336 -0.046853 0.617294 -0.781515 -0.12666 0.610894 -0.781913 -0.208771 0.58739 -0.785856 -0.293485 0.544332 -0.793937 -0.361184 0.489091 -0.811021 -0.403504 0.423592 -0.835242 -0.430573 0.342022 -0.847345 0.403795 0.3449 -0.876998 0.412515 0.246384 -0.816114 0.373023 0.441375 -0.785473 0.321444 0.528872 -0.757102 0.251755 0.60284 -0.732492 0.167285 0.659903 -0.71285 0.071993 0.697612 -0.699448 -0.030237 0.714044 -0.693366 -0.135002 0.707826 -0.694705 -0.244186 0.676579 -0.700161 -0.36004 0.616559 -0.706167 -0.453566 0.543697 -0.723583 -0.510419 0.464651 -0.757493 -0.546167 0.357639 -0.786239 0.510828 0.347683 -0.822283 0.521471 0.227858 -0.748188 0.473296 0.464978 -0.710816 0.41044 0.571208 -0.676265 0.32557 0.66081 -0.646313 0.222825 0.729815 -0.622397 0.107069 0.775344 -0.605751 -0.016281 0.795488 -0.597541 -0.142104 0.789146 -0.599072 -0.273389 0.752576 -0.605625 -0.422009 0.67463 -0.607323 -0.542234 0.580639 -0.62045 -0.60942 0.493609 -0.663091 -0.648882 0.373178 -0.713977 0.609147 0.34522 -0.755821 0.6215 0.206088 -0.669772 0.565403 0.481378 -0.626414 0.492206 0.604433 -0.58635 0.393512 0.708055 -0.551603 0.274208 0.787746 -0.523909 0.140003 0.84019 -0.504656 -0.002861 0.863316 -0.494725 -0.148092 0.856339 -0.496885 -0.296649 0.81554 -0.511217 -0.470298 0.719359 -0.523448 -0.603062 0.601929 -0.54514 -0.6692 0.504969 -0.589688 -0.712391 0.380483 -0.632092 0.697412 0.337752 -0.679083 0.71125 0.181575 -0.582478 0.648166 0.490511 -0.533908 0.565768 0.62837 -0.489063 0.454778 0.744308 -0.450216 0.320826 0.833293 -0.419311 0.170384 0.891711 -0.397828 0.010371 0.917402 -0.386738 -0.152189 0.909545 -0.388906 -0.314579 0.865905 -0.416834 -0.497637 0.760662 -0.460989 -0.625959 0.629018 -0.542107 0.774681 0.32556 -0.593506 0.78981 0.15476 -0.487909 0.720672 0.492521 -0.434921 0.630341 0.64305 -0.3861 0.508756 0.769476 -0.343913 0.362223 0.866325 -0.310381 0.197869 0.929791 -0.287052 0.023243 0.957633 -0.274984 -0.154056 0.949026 -0.274153 -0.330443 0.903132 -0.301736 -0.514601 0.802584 -0.360883 -0.638403 0.679857 -0.445437 0.840329 0.308923 -0.50045 0.856542 0.126038 -0.387543 0.782319 0.487634 -0.331043 0.685354 0.648614 -0.279115 0.554987 0.783636 -0.234323 0.398047 0.886934 -0.198766 0.222238 0.954517 -0.174032 0.035606 0.984096 -0.161146 -0.153806 0.974872 -0.161623 -0.341915 0.925728 -0.183322 -0.527132 0.829774 -0.220903 -0.657095 0.720714 -0.343523 0.893833 0.288192 -0.401399 0.910874 0.095845 -0.282773 0.832684 0.476106 -0.223681 0.730476 0.645269 -0.169508 0.593188 0.787016 -0.122852 0.428085 0.895349 -0.085869 0.24334 0.966133 -0.060478 0.047525 0.997037 -0.048298 -0.151042 0.987347 -0.051169 -0.346801 0.936542 -0.071334 -0.536879 0.840638 -0.087789 -0.68823 0.720162 -0.21986 0.940431 0.259327 -0.28005 0.958152 0.059303 -0.156918 0.876718 0.454689 -0.095926 0.770248 0.630489 -0.040164 0.627316 0.777728 0.007734 0.455603 0.890149 0.046891 0.262808 0.963708 0.076503 0.059129 0.995315 0.087975 -0.141662 0.985998 0.082632 -0.346525 0.934394 0.066735 -0.543112 0.837004 0.044893 -0.70688 0.705907 -0.074449 0.972485 0.220751 -0.13589 0.990587 0.016451 -0.0105 0.907325 0.420298 0.052421 0.798072 0.600278 0.112271 0.651463 0.750327 0.17284 0.475296 0.862682 0.224622 0.286559 0.931359 0.237263 0.088989 0.967361 0.218281 -0.113 0.969322 0.208533 -0.342413 0.916116 0.208343 -0.548433 0.809824 0.177566 -0.726111 0.664254 0.072457 0.981536 0.17702 0.011184 0.999581 -0.026697 0.13045 0.91774 0.375149 0.17379 0.810665 0.559124 0.202259 0.677497 0.70717 0.281823 0.466274 0.838549 0.389486 0.279956 0.877454 0.38011 0.146887 0.913204 0.357385 -0.040932 0.93306 0.345941 -0.321259 0.881543 0.34413 -0.559385 0.754098 0.331752 -0.740685 0.584232 0.196145 0.971318 0.134422 0.140044 0.988072 -0.064045 0.22226 0.915547 0.335221 0.215212 0.826522 0.520139 0.485045 0.203691 0.850436 0.549186 0.085396 0.831326 0.51886 -0.274121 0.809717 0.494351 -0.559544 0.665228 0.486216 -0.716967 0.499552 0.288962 0.953069 0.090338 0.249176 0.963756 -0.09532 0.279421 0.910567 0.304618 0.388152 0.921065 0.031265 0.355698 0.926134 -0.125519 0.404067 0.903782 0.141097 0.68549 -0.217008 0.69499 0.702569 0.095581 0.705167 0.629523 -0.529053 0.569037 0.593718 -0.693079 0.408828 0.496683 0.867503 -0.027267 0.458279 0.875316 -0.154276 0.528047 0.848543 0.03378 0.806768 -0.152023 0.570977 0.808457 0.086821 0.582116 0.751952 -0.463847 0.468417 0.679141 -0.659907 0.321388 0.597185 0.799146 -0.068811 0.555473 0.811556 -0.181181 0.641605 0.76683 -0.017718 0.890943 -0.106367 0.441483 0.8665 0.068021 0.494522 0.874776 -0.373384 0.30879 0.812876 -0.546789 0.200637 0.713003 0.692155 -0.112017 0.675208 0.706006 -0.213658 0.760001 0.64795 -0.050575 0.881663 0.086627 0.463859 0.915057 -0.143088 0.377089 0.91943 -0.337729 0.201463 0.893271 -0.433495 0.118948 0.740476 -0.66906 0.063675 0.859379 -0.511092 0.015908 0.647012 -0.745143 -0.161672 0.622061 -0.770384 0.139818 0.519697 -0.840964 -0.150645 0.82048 0.555122 -0.136569 0.782459 0.574043 -0.241314 0.857424 0.511442 -0.057009 0.806681 0.536729 -0.247364 0.862468 0.496193 -0.099707 0.878972 0.473396 -0.057475 0.818208 0.516312 -0.252897 -0.95504 -0.087036 0.283414 0.458007 0.336509 0.822795 0.548647 0.436829 0.712858 0.498793 0.508214 0.702085 0.40895 0.438856 0.800103 0.458788 0.419381 0.783347 0.488579 0.295919 0.820806 0.338496 0.547557 0.765246 0.40128 0.540787 0.739273 0.447903 0.573978 0.685516 0.572577 0.090453 0.814846 0.659971 0.242585 0.711049 0.600793 0.356629 0.715446 0.507798 0.222804 0.832165 0.525407 0.175386 0.832579 0.592642 0.076696 0.801806 0.696495 -0.160757 0.699323 0.747071 -0.060562 0.66198 0.716368 0.089686 0.691935 0.643654 -0.044528 0.76402 0.679875 -0.004061 0.733317 0.751902 -0.071444 0.655392 0.836517 -0.293072 0.462977 0.828132 -0.230473 0.510959 0.762807 -0.199352 0.61513 0.753672 -0.259258 0.603957 0.803598 -0.130297 0.580735 0.857252 -0.175255 0.484153 0.916775 -0.199713 0.345889 0.913851 -0.163134 0.371839 0.958882 -0.051876 0.279022 0.954667 -0.015331 0.297282 0.878559 0.023718 0.477045 0.887732 -0.142315 0.437811 0.881622 0.374121 0.287709 0.786275 0.361357 0.501191 0.845764 0.203036 0.493417 0.938392 0.191581 0.287606 0.964699 0.141352 0.222208 0.919874 0.344658 0.187198 0.735833 0.601185 0.31165 0.66518 0.53777 0.518014 0.724119 0.464664 0.509645 0.811286 0.503396 0.297333 0.847399 0.503007 0.169996 0.757311 0.630422 0.170435 0.55095 0.766953 0.328993 0.550236 0.662384 0.508417 0.604139 0.603421 0.520479 0.650213 0.6874 0.32358 0.647232 0.739853 0.183595 0.52066 0.823219 0.226328 0.232539 0.84106 0.48841 0.333081 0.772484 0.540672 0.4542 0.75815 0.467879 0.390892 0.846896 0.360515 0.372475 0.869089 0.325495 0.285053 0.827495 0.483733 0.339781 0.673393 0.656575 0.238562 0.704887 0.668 0.320797 0.691569 0.647164 0.829927 0.324203 0.453996 0.78816 0.413058 0.456275 0.818961 0.437724 0.37108 0.868606 0.367447 0.332424 0.594766 0.761672 -0.257117 0.732865 0.586033 -0.345649 0.753901 0.533838 0.38295 0.862991 0.204761 0.461865 0.867214 0.193679 0.458725 0.940858 -0.000486 0.3388 0.908483 -0.022324 0.417326 0.966409 -0.169051 -0.193584 0.923393 -0.383468 0.01723 0.951149 0.102662 0.291162 0.867316 0.198019 0.456675 0.856872 0.261318 0.444391 0.920131 0.262219 0.290862 0.845974 0.375555 -0.378531 0.934245 0.115443 -0.337429 0.724297 0.540152 0.42852 0.705159 0.593618 0.387773 0.719293 0.595991 0.356949 0.405662 0.913937 -0.012545 0.486535 0.862055 -0.141935 0.71787 0.605721 0.343167 0.730039 0.584407 0.354276 0.725686 0.562032 0.396862 0.693853 0.591752 0.410363 0.217331 0.868422 0.445659 0.312452 0.932842 0.179389 0.629841 0.545507 0.552922 0.214362 0.527633 0.821981 0.173015 0.7023 0.690536 0.57713 0.459556 0.675077 0.602476 0.389152 0.696838 0.688167 0.493994 0.531411 0.689409 0.382203 0.615335 0.751692 0.33439 0.568456 0.797599 0.361585 0.482797 0.671211 0.364963 0.645196 0.411128 0.319273 0.853838 0.313319 0.402291 0.860228 0.718031 0.380064 0.58308 0.802641 0.402836 0.439876 0.786668 0.41629 0.455912 0.7261 0.396288 0.561903 0.493842 0.121551 0.861014 0.469657 0.240907 0.849345 0.710366 0.36318 0.602894 0.767343 0.380847 0.515888 0.773688 0.31236 0.551215 0.718919 0.257235 0.645744 0.615801 -0.251493 0.746687 0.530844 -0.044491 0.846301 0.775459 0.113009 0.621203 0.81328 0.246247 0.527199 0.846491 0.212923 0.487972 0.849483 0.012404 0.52747 0.842402 -0.47405 0.256193 0.735809 -0.426295 0.526173 0.762121 0.060604 0.644592 0.762121 0.060604 0.644592 0.670388 0.105094 0.734531 0.670388 0.105094 0.734531 0.53593 0.35712 0.765013 0.53593 0.35712 0.765013 0.519593 0.470857 0.712963 0.519593 0.470857 0.712963 0.592721 0.147272 0.791829 0.592721 0.147272 0.791829 0.539402 0.227876 0.810628 0.539402 0.227876 0.810628 0.838046 -0.041961 0.543984 0.838046 -0.041961 0.543984 0.805134 0.024108 0.592603 0.805134 0.024108 0.592603 0.458987 0.56981 0.681651 0.458987 0.56981 0.681651 0.36131 0.737053 0.571146 0.36131 0.737053 0.571146 0.930114 -0.106536 0.351481 0.930114 -0.106536 0.351481 0.880661 -0.11099 0.460561 0.880661 -0.11099 0.460561 0.320732 0.857422 0.402441 0.320732 0.857422 0.402441 0.44726 0.859353 0.247932 0.44726 0.859353 0.247932 0.95182 0.231775 0.200795 0.95182 0.231775 0.200795 0.964167 0.021103 0.264456 0.964167 0.021103 0.264456 0.579093 0.8006 0.153919 0.579093 0.8006 0.153919 0.697437 0.705567 0.12553 0.697437 0.705567 0.12553 0.814036 0.566095 0.129927 0.814036 0.566095 0.129927 0.890074 0.43096 0.148464 0.890074 0.43096 0.148464 0.029208 0.881474 -0.471328 0.029208 0.881474 -0.471328 0.096449 0.728365 -0.678368 0.096449 0.728365 -0.678368 0.4685 0.04873 -0.882118 0.4685 0.04873 -0.882118 0.638087 -0.253445 -0.727056 0.638087 -0.253445 -0.727056 0.178322 0.511529 -0.840559 0.178322 0.511529 -0.840559 0.316697 0.307225 -0.897394 0.316697 0.307225 -0.897394 -0.229597 0.97301 0.023188 -0.229597 0.97301 0.023188 -0.099111 0.961282 -0.257125 -0.099111 0.961282 -0.257125 0.690989 -0.552351 -0.466307 0.690989 -0.552351 -0.466307 0.614728 -0.774975 -0.146708 0.614728 -0.774975 -0.146708 -0.213285 0.674612 0.706689 -0.213285 0.674612 0.706689 -0.277125 0.880387 0.384865 -0.277125 0.880387 0.384865 0.522099 -0.831492 0.189823 0.522099 -0.831492 0.189823 0.41303 -0.701304 0.581016 0.41303 -0.701304 0.581016 0.016451 0.304495 0.952372 0.016451 0.304495 0.952372 -0.102423 0.482133 0.87009 -0.102423 0.482133 0.87009 0.321342 -0.449506 0.833477 0.321342 -0.449506 0.833477 0.240502 -0.251619 0.937468 0.240502 -0.251619 0.937468 0.177609 -0.048219 0.982919 0.177609 -0.048219 0.982919 0.113264 0.143803 0.983103 0.113264 0.143803 0.983103 0.856752 0.237426 0.457827 0.923385 0.210649 0.320917 0.807841 0.342573 0.479622 0.926355 0.306361 0.219111 0.893024 0.401372 0.203491 0.707489 0.350542 0.613661 0.690028 0.404138 0.600445 0.701459 0.296818 0.647962 0.79174 0.518629 0.322757 0.756722 0.567339 0.324806 0.829456 0.472735 0.297531 0.598529 0.538416 0.593188 0.611969 0.432342 0.662249 0.636119 0.597396 0.488334 0.661695 0.3349 0.670821 0.723255 0.374582 0.580165 0.790325 0.34767 0.504491 0.811959 0.371822 0.449969 0.863778 0.442517 0.24097 0.701135 0.600411 0.384599 0.932766 0.160597 0.322732 0.970845 0.170441 0.168552 0.883636 0.175716 0.433947 0.958137 0.275993 0.076165 0.918477 0.391142 0.058382 0.596042 0.268924 0.756581 0.631692 0.23949 0.737299 0.526233 0.296752 0.79688 0.713347 0.696389 0.078601 0.607873 0.785114 0.118686 0.815341 0.574919 0.068466 0.317442 0.747572 0.583409 0.328784 0.607429 0.72314 0.382484 0.824581 0.416859 0.421264 0.422347 0.802596 0.694449 0.183029 0.695875 0.790988 0.142639 0.594973 0.851498 0.154648 0.501034 0.88206 0.467139 0.061249 0.494106 0.834447 0.244044 0.898388 0.239427 0.368203 0.928433 0.290662 0.231361 0.927907 0.362185 0.088373 0.90613 0.422899 -0.009252 0.502343 -0.531378 -0.68212 0.481433 0.034979 -0.875785 0.821621 0.007587 -0.569984 0.601173 0.059321 -0.796914 0.288385 0.93379 -0.211824 0.988457 0.045901 -0.144378 0.606647 0.786641 -0.114787 0.631147 0.75431 -0.180748 0.972584 0.01879 -0.231792 0.50542 0.85821 -0.089584 0.979429 0.125423 -0.158074 0.681238 -0.704485 -0.199036 0.649817 -0.670326 -0.358331 0.486326 -0.865845 -0.117473 0.446328 -0.866561 -0.223303 0.749936 -0.639396 -0.169616 0.164446 0.814374 0.556554 0.230868 0.7458 0.624886 0.513037 0.656869 0.552553 0.434017 0.729299 0.528916 0.753221 0.48407 0.445347 0.753221 0.48407 0.445347 0.124146 -0.973254 0.193296 0.136691 -0.979344 0.149 0.136691 -0.979344 0.149 0.184839 -0.973906 0.131688 0.16227 -0.986484 -0.022769 0.212195 -0.968006 0.133929 0.212195 -0.968006 0.133929 0.404326 0.749489 0.524201 0.579587 0.654669 0.485269 0.579587 0.654669 0.485269 0.267339 0.835446 0.480167 0.245983 0.889628 0.38478 0.267339 0.835446 0.480167 0.316456 0.757992 0.570354 0.349573 0.870764 0.345787 0.299173 0.736411 0.60679 0.210334 0.763548 0.610536 0.173912 0.765408 0.619601 0.197207 0.7873 0.584182 0.208134 0.150701 0.966421 0.45413 0.145812 0.878922 0.34138 0.606573 0.718004 0.193961 0.656473 0.728987 0.702212 0.014831 0.711813 0.629702 0.408791 0.660579 0.464374 -0.299888 0.833321 0.195845 -0.470873 0.860188 0.247334 -0.957018 0.151467 0.40013 -0.846054 0.352263 0.156142 -0.842984 0.51478 0.487382 -0.796965 0.356799 0.24234 -0.955279 0.169453 0.220077 -0.968074 0.119991 0.144759 -0.978459 0.147185 0.183204 -0.982603 -0.03045 0.067622 -0.997704 0.003667 0.333609 0.885237 0.324131 0.26257 0.786829 0.558531 0.249027 0.818022 0.518484 0.310909 0.905688 0.288211 0.981618 -0.064667 0.179569 0.953472 -0.110057 0.280676 0.829047 -0.397145 0.393645 0.92859 0.156172 0.336647 0.777747 -0.421784 0.466056 0.769156 -0.579058 0.270354 0.995933 0.044395 0.078399 0.452986 -0.772336 0.445309 0.25562 -0.911562 0.322045 0.985612 -0.013881 -0.168452 0.7241 -0.689125 0.028032 0.669094 -0.721471 -0.178308 0.959852 -0.03757 -0.277979 0.142983 -0.970854 0.192352 0.080246 -0.996775 0.00032 0.399717 0.880195 0.255896 0.376418 0.74386 0.552252 0.932941 0.251988 0.257146 0.923519 0.376658 0.072404 0.341071 0.563945 0.752088 0.901143 0.06264 0.428972 0.473307 -0.704975 -0.528197 0.53861 0.034196 -0.841861 0.284747 -0.650038 -0.704536 0.28859 -0.717857 -0.633559 0.66476 -0.69131 -0.283167 0.687122 0.601648 -0.407288 0.19454 0.943367 -0.268726 0.142669 0.967481 -0.20887 0.158097 0.977372 -0.140534 0.267227 0.956959 -0.113221 0.206618 0.964826 -0.16254 0.111176 0.975912 -0.187714 0.29006 0.951394 -0.103509 0.197728 0.977642 -0.071559 0.133329 0.730763 0.669484 -0.021072 0.776457 0.629818 -0.048861 0.692427 0.719831 -0.267381 0.736738 0.621067 0.502201 -0.841758 -0.198082 0.347489 -0.823244 -0.44891 0.323269 -0.832159 -0.450565 0.365532 -0.909977 -0.195774 0.278989 -0.744812 -0.606152 0.310543 -0.724294 -0.615598 0.470573 -0.845704 0.251686 0.639991 -0.751749 0.159014 0.847528 -0.526779 -0.064814 0.931762 0.360605 -0.042234 0.731131 -0.37377 0.57074 0.545828 -0.440059 0.713036 0.28654 -0.807827 -0.515083 0.336227 -0.798398 -0.499512 0.390344 -0.778946 -0.490791 0.394888 -0.900382 -0.182694 0.453746 -0.877199 -0.156959 0.356802 -0.910855 -0.207449 -0.344161 0.695104 0.631176 -0.149439 0.640429 0.753338 -0.149043 0.665502 0.731364 -0.349826 0.693839 0.629452 -0.136209 0.702366 0.698663 -0.323407 0.705435 0.63069 0.682989 -0.682468 -0.260315 0.59895 -0.703991 -0.381648 0.629914 -0.656157 -0.415531 0.77097 -0.571238 -0.281588 0.426971 -0.693708 -0.580055 0.470882 -0.685627 -0.555145 0.547183 -0.735019 -0.400422 0.403878 -0.692278 -0.598025 0.639219 -0.729933 -0.242067 0.756317 -0.646196 0.102054 0.818345 -0.573567 0.036491 0.814869 -0.159464 0.557279 0.753505 -0.300809 0.584589 0.916322 -0.395282 -0.064085 -0.552229 0.717565 0.424433 -0.549898 0.723485 0.417351 -0.689114 0.695621 0.20306 -0.692124 0.693865 0.198787 -0.449937 0.772191 0.44864 -0.582332 0.776773 0.23982 0.4591 -0.736156 -0.497294 0.428557 -0.75507 -0.496193 0.470093 -0.756298 -0.455001 0.604445 -0.773438 -0.190894 0.573109 -0.784752 -0.236031 0.620477 -0.767507 -0.161065 -0.154659 0.830449 0.535196 -0.208047 0.933434 0.292262 0.839948 -0.488026 -0.237313 0.649751 -0.668884 -0.361136 0.686328 -0.685198 -0.243841 0.870409 -0.456272 -0.184943 0.113928 -0.971144 0.209524 0.420169 -0.778433 0.466369 0.36716 -0.763202 0.531711 -0.02591 -0.968892 0.246125 0.735247 0.502746 0.454597 0.760736 -0.231899 0.60622 0.709739 -0.164748 0.68493 0.677088 0.518341 0.522374 0.150157 0.985896 -0.073902 0.110758 0.979195 -0.170028 0.14924 0.977328 -0.150193 0.102024 0.980668 -0.166976 0.092901 0.976521 -0.194362 0.035026 -0.981694 0.187218 -0.094184 -0.972517 0.212932 -0.040179 -0.998571 0.035247 -0.134425 -0.988935 0.062742 0.104938 0.981244 -0.161707 0.151335 0.986059 -0.069173 0.069929 0.986197 -0.150086 0.095076 0.992657 -0.074781 -0.031932 -0.959846 0.278703 0.3959 -0.771292 0.498369 0.753955 -0.269659 0.599029 0.811465 0.345679 0.471202 0.245701 0.963498 -0.106314 0.226774 0.963215 -0.144187 -0.201856 -0.975954 0.082263 -0.144695 -0.963786 0.22401 0.238399 0.953876 -0.182445 0.263237 0.957272 -0.119739 0.137189 0.954008 0.266548 0.004047 0.860303 0.509766 -0.324412 0.82325 0.46585 -0.221133 0.946632 0.234497 0.552688 -0.819889 -0.14939 0.435697 -0.752668 -0.493618 0.365249 -0.701895 -0.611504 0.358271 0.298744 0.88453 0.369064 0.261778 0.891776 0.680582 -0.368671 0.633159 0.35026 0.27383 0.895732 -0.101362 0.652868 0.750659 -0.31403 0.712829 0.627104 0.528306 -0.819128 -0.223433 0.448996 -0.780542 -0.434921 0.341896 0.423686 0.838807 0.504935 0.340193 0.79329 0.181522 0.411952 0.892942 0.181522 0.411952 0.892942 0.465736 -0.606641 0.644264 -0.0363 0.939717 0.340021 0.06455 0.996125 -0.059741 -0.0363 0.939717 0.340021 0.286421 0.951044 -0.116095 0.288616 0.950349 -0.116354 0.275757 0.953921 -0.118292 0.150003 0.985457 -0.079833 -0.160278 0.98687 0.019962 -0.557805 0.804225 0.205125 -0.528811 0.837981 0.134713 -0.689987 0.699784 0.184985 -0.704052 0.684413 0.189445 -0.639015 0.750411 0.168948 -0.301208 0.951297 0.065638 0.321965 0.939617 -0.116016 0.978366 -0.179418 -0.103002 0.950511 -0.146462 -0.274005 0.864752 0.428163 -0.262451 0.86448 -0.440579 -0.242001 0.720676 -0.665351 -0.194768 0.631835 -0.756962 -0.166709 0.640249 -0.749264 -0.169365 0.627443 -0.760901 -0.165364 0.541996 -0.828837 -0.138816 0.434754 -0.894291 -0.105989 0.396475 -0.913174 -0.094449 0.3782 -0.921198 -0.091428 0.733887 0.635327 -0.240355 0.720343 0.687761 -0.089944 0.744559 0.62451 -0.235838 0.345736 0.9286 0.13479 0.993133 0.093733 0.070012 0.356159 0.925036 0.132136 0.187307 0.978163 -0.09007 0.502357 0.858922 0.099456 0.251333 0.962401 -0.103033 0.65335 -0.735934 0.17758 0.65112 0.755621 0.071276 0.96166 -0.25776 -0.093651 0.209729 0.846026 0.490157 0.369985 -0.806261 -0.461579 -0.486759 0.759504 0.431532 0.951681 0.185976 -0.24437 0.902737 0.332183 -0.273352 0.941165 0.315326 -0.121568 0.951681 0.185976 -0.24437 0.956675 0.290442 0.020395 0.999368 -0.03479 -0.007251 0.964422 0.229761 0.130768 0.952504 0.13236 0.274258 0.999368 -0.03479 -0.007251 0.940577 -0.003262 0.339566 0.985356 -0.047323 -0.163812 0.973149 -0.138935 0.183517 0.98634 -0.163979 0.015638 0.985356 -0.047323 -0.163812 0.800077 -0.569905 -0.187309 0.874318 -0.431977 -0.221278 0.945305 -0.32607 -0.008707 0.031586 -0.183913 0.982435 0.031586 -0.183913 0.982435 -0.030751 -0.950601 0.30889 -0.030751 -0.950601 0.30889 0.985137 -0.170059 0.024169 -0.138803 -0.672288 0.727161 -0.138803 -0.672288 0.727161 0.909257 -0.407951 -0.082632 0.909257 -0.407951 -0.082632 0.975975 0.172973 -0.132486 0.975975 0.172973 -0.132486 0.980139 0.18814 -0.062699 0.980139 0.18814 -0.062699 0.977763 -0.075286 0.195733 0.977763 -0.075286 0.195733 0.989301 -0.108793 0.097195 0.989301 -0.108793 0.097195 0.977445 0.124096 -0.170885 0.977445 0.124096 -0.170885 0.998153 0.056019 0.023506 0.998153 0.056019 0.023506 0.796335 -0.523715 0.302611 0.474101 -0.734714 0.485204 -0.961031 0.165053 0.221757 -0.966015 0.031778 0.256527 -0.974186 0.146597 0.171671 -0.972365 0.022683 0.232362 -0.984794 0.118521 0.127015 -0.97678 0.011602 0.213931 -0.992779 0.080892 0.088578 -0.980405 -0.006081 0.1969 -0.997692 0.034776 0.058321 -0.983084 -0.030932 0.180525 -0.999084 -0.01652 0.039467 -0.983546 -0.055798 0.171824 -0.996955 -0.071034 0.03217 -0.982323 -0.081459 0.168542 -0.991355 -0.12588 0.037019 -0.979425 -0.107879 0.170556 -0.982538 -0.178319 0.053122 -0.975168 -0.132497 0.177459 -0.97118 -0.224992 0.078667 -0.9699 -0.153567 0.188972 -0.957807 -0.263848 0.113978 -0.963903 -0.170188 0.204763 -0.939615 -0.29636 0.171153 -0.955655 -0.183417 0.230396 -0.916192 -0.318352 0.243403 -0.943673 -0.194814 0.26745 -0.940074 0.285894 0.18581 -0.959445 0.258862 0.111609 -0.975323 0.216319 0.04416 -0.986978 0.160325 -0.013014 -0.993968 0.093475 -0.057363 -0.996059 0.018754 -0.086686 -0.993227 -0.06055 -0.099163 -0.985628 -0.140582 -0.09367 -0.972899 -0.220345 -0.070116 -0.955697 -0.29262 -0.031897 -0.933885 -0.356815 0.023271 -0.904554 -0.412768 0.106793 -0.874187 -0.443341 0.198105 -0.904883 0.399162 0.14784 -0.930066 0.363832 0.051015 -0.950616 0.308169 -0.036885 -0.965592 0.235032 -0.111317 -0.974471 0.147814 -0.168987 -0.976979 0.05078 -0.207202 -0.973161 -0.05162 -0.224262 -0.963025 -0.155851 -0.219756 -0.94516 -0.263631 -0.192798 -0.918341 -0.367435 -0.147108 -0.884469 -0.46033 -0.076225 -0.846414 -0.531736 0.028979 -0.81683 -0.561478 0.132408 -0.856198 0.505244 0.107954 -0.886734 0.462178 -0.009715 -0.911564 0.394322 -0.116455 -0.92955 0.305236 -0.206801 -0.940103 0.199203 -0.276631 -0.942966 0.081326 -0.322801 -0.938215 -0.042948 -0.343377 -0.925514 -0.170798 -0.338011 -0.90304 -0.303133 -0.304351 -0.869126 -0.43109 -0.242446 -0.825613 -0.542663 -0.154533 -0.78679 -0.615366 -0.04782 -0.763783 -0.641746 0.069265 -0.795208 0.602633 0.06691 -0.830597 0.552504 -0.069627 -0.85928 0.473551 -0.193358 -0.879991 0.369951 -0.297914 -0.892055 0.246859 -0.378547 -0.895219 0.110198 -0.431786 -0.889617 -0.03377 -0.455457 -0.87547 -0.181874 -0.447743 -0.852671 -0.3311 -0.404135 -0.819795 -0.473097 -0.322669 -0.773161 -0.597383 -0.21297 -0.732323 -0.672114 -0.109388 -0.703802 -0.710148 0.018793 -0.723285 0.690084 0.025367 -0.762965 0.633675 -0.127835 -0.79508 0.544841 -0.266451 -0.818228 0.428382 -0.383395 -0.831653 0.290204 -0.47343 -0.835118 0.137002 -0.532737 -0.828804 -0.024239 -0.559013 -0.813771 -0.188224 -0.549862 -0.79107 -0.350428 -0.501406 -0.757687 -0.507139 -0.410755 -0.712161 -0.640658 -0.287028 -0.672656 -0.725938 0.143347 -0.641851 0.766661 -0.016075 -0.68527 0.704796 -0.183489 -0.720395 0.607414 -0.334782 -0.745674 0.479891 -0.46225 -0.760327 0.328783 -0.560182 -0.764125 0.161453 -0.624537 -0.757252 -0.014499 -0.652962 -0.740618 -0.191819 -0.643964 -0.713493 -0.368156 -0.596145 -0.67319 -0.539525 -0.505696 -0.633594 -0.66652 -0.392824 -0.552217 0.831757 -0.056883 -0.598779 0.765354 -0.236001 -0.636491 0.660838 -0.397708 -0.663675 0.524103 -0.533716 -0.679467 0.362301 -0.638015 -0.683616 0.18334 -0.706439 -0.676308 -0.004709 -0.736604 -0.658096 -0.193709 -0.72759 -0.624976 -0.385418 -0.678866 -0.57331 -0.567527 -0.590956 -0.539712 -0.669892 -0.509859 -0.455829 0.884817 -0.096532 -0.504906 0.814845 -0.284776 -0.544771 0.704701 -0.454557 -0.573584 0.560728 -0.597148 -0.59041 0.390539 -0.706325 -0.594941 0.202476 -0.777849 -0.58738 0.005005 -0.809296 -0.568315 -0.193377 -0.799765 -0.531724 -0.399254 -0.746904 -0.472063 -0.588647 -0.65624 -0.438252 -0.663694 -0.606173 -0.336649 0.931055 -0.140727 -0.387856 0.858178 -0.336301 -0.429627 0.743452 -0.512543 -0.459974 0.593597 -0.660353 -0.477869 0.416607 -0.773356 -0.482921 0.221168 -0.847273 -0.475295 0.016124 -0.879678 -0.455543 -0.189817 -0.869741 -0.417917 -0.406061 -0.812687 -0.353552 -0.60422 -0.714086 -0.307968 -0.666598 -0.678825 -0.193714 0.962913 -0.187815 -0.246267 0.8884 -0.387424 -0.288613 0.77069 -0.568101 -0.317008 0.616998 -0.720292 -0.324374 0.435579 -0.839674 -0.320365 0.248902 -0.91401 -0.326185 0.041175 -0.944409 -0.317893 -0.181748 -0.930544 -0.279515 -0.404386 -0.870829 -0.213288 -0.614544 -0.759503 -0.156721 -0.682515 -0.713871 -0.046463 0.971992 -0.230375 -0.103325 0.898972 -0.425645 -0.164362 0.783516 -0.59924 -0.218293 0.643744 -0.733446 -0.220032 0.426957 -0.877094 -0.163378 0.257767 -0.952294 -0.189104 0.091231 -0.97771 -0.196106 -0.137994 -0.970824 -0.15848 -0.395997 -0.904473 -0.068774 -0.626707 -0.776214 0.011498 -0.702817 -0.711278 0.080842 0.962059 -0.260588 -0.004368 0.897342 -0.441313 -0.108637 0.80053 -0.589364 -0.077282 0.160772 -0.983961 -0.047366 -0.005136 -0.998864 -0.055321 -0.376835 -0.924627 0.024205 -0.64051 -0.767568 0.122657 -0.746286 -0.654227 0.182989 0.944565 -0.272601 0.060296 0.892968 -0.446064 0.298773 0.913904 -0.274797 0.253313 0.891687 -0.375137 0.114854 -0.338324 -0.933994 0.102232 0.013353 -0.994671 0.151765 -0.614693 -0.774028 0.247572 -0.789545 -0.561539 0.422501 0.861523 -0.281553 0.416333 0.839555 -0.34902 0.37199 -0.274879 -0.886603 0.353485 0.017625 -0.935274 0.378321 -0.507369 -0.774242 0.386435 -0.730111 -0.563565 0.530382 0.793788 -0.297652 0.540498 0.759214 -0.362568 0.588887 -0.200332 -0.782994 0.56861 0.014756 -0.822475 0.582449 -0.344028 -0.736476 0.575726 -0.569224 -0.586961 0.65241 0.687716 -0.318445 0.658927 0.642592 -0.391012 0.527988 0.032741 -0.848621 0.572271 -0.222348 -0.789346 0.647447 -0.270239 -0.712589 0.71954 -0.352064 -0.598592 0.761452 -0.51329 -0.395884 0.588683 -0.724004 -0.359542 0.425419 -0.825843 -0.370137 0.75829 0.548346 -0.35258 0.752446 0.495489 -0.433954 0.762878 0.455469 -0.458873 0.774527 0.480972 -0.410821 -0.059483 0.299655 -0.952191 -0.090596 0.399221 -0.912368 0.036545 0.471124 -0.881309 0.07364 0.399264 -0.913874 -0.030114 0.266255 -0.963432 -0.038844 0.381241 -0.923659 -0.13284 0.509742 -0.85001 -0.066453 0.503298 -0.861554 0.001768 0.538105 -0.842876 0.050754 0.065758 -0.996544 -0.019181 0.193572 -0.980899 0.117727 0.320417 -0.939933 0.173089 0.209675 -0.962329 0.073986 0.047418 -0.996131 -0.002861 0.154045 -0.98806 0.22268 -0.189591 -0.956279 0.142047 -0.070696 -0.987332 0.235945 0.061061 -0.969846 0.284019 -0.085242 -0.955022 0.284187 -0.119522 -0.95129 0.18495 -0.046926 -0.981627 0.469944 -0.314762 -0.824668 0.324898 -0.286474 -0.901318 0.327435 -0.220891 -0.918691 0.436096 -0.251459 -0.864054 0.473624 -0.209127 -0.855538 0.371679 -0.174482 -0.911817 0.593781 -0.220328 -0.773873 0.64569 -0.038921 -0.762607 0.659388 -0.074842 -0.748068 0.577338 -0.188497 -0.794449 0.520053 -0.164818 -0.838081 0.486574 -0.003404 -0.873633 0.583694 0.350278 -0.732535 0.633952 0.167061 -0.755112 0.445809 0.172583 -0.878333 0.388775 0.329865 -0.860258 0.670839 0.324639 -0.666772 0.692093 0.11947 -0.711852 0.445222 0.577844 -0.684013 0.517686 0.479897 -0.708308 0.330597 0.433029 -0.838565 0.275479 0.50654 -0.817024 0.53871 0.612813 -0.578145 0.616696 0.484403 -0.620516 0.278003 0.744964 -0.606418 0.365453 0.664551 -0.651779 0.221829 0.57283 -0.789087 0.182217 0.632878 -0.752504 0.306851 0.80584 -0.506422 0.437533 0.722967 -0.534681 -0.077112 0.816166 -0.572649 0.125172 0.825515 -0.550324 0.121846 0.731498 -0.670868 -0.019603 0.743964 -0.667932 -0.030227 0.802231 -0.596248 0.128031 0.849287 -0.512171 -0.166759 0.672289 -0.721262 -0.074919 0.639876 -0.764817 -0.086363 0.65898 -0.747185 0.419268 0.406688 -0.811677 0.45283 0.31045 -0.835802 0.550354 0.354523 -0.755926 0.488995 0.426269 -0.761038 0.798505 0.589542 -0.121777 0.629664 0.764854 -0.136094 0.428097 0.516657 -0.741484 0.481992 0.162651 -0.860946 0.476625 0.173666 -0.861782 0.541781 -0.051837 -0.83892 0.610962 -0.026965 -0.7912 0.77405 -0.395398 -0.494477 0.920958 -0.172543 -0.349378 0.643893 0.078074 -0.761122 0.480736 0.233816 -0.845117 0.483133 0.167149 -0.859444 0.616661 0.240115 -0.749715 0.967736 0.117908 -0.222674 0.913198 0.379905 -0.147451 0.390578 0.591083 -0.705741 0.382839 0.535126 -0.753044 0.414139 0.577573 -0.70349 0.47634 0.860797 -0.179246 0.340392 0.907818 -0.24495 0.421549 0.584377 -0.693397 0.405414 0.540989 -0.736865 0.431518 0.576007 -0.694268 0.364935 0.56563 -0.739517 0.160295 0.921034 -0.354968 -0.063838 0.850342 -0.522343 0.231853 0.516573 -0.824255 -0.234963 0.674542 -0.699847 -0.263787 0.488611 -0.831671 0.143761 0.349005 -0.926028 0.121957 0.430188 -0.894463 0.244238 0.368175 -0.897104 0.286839 0.465666 -0.837185 0.431825 0.308888 -0.847417 0.349106 0.306214 -0.88564 0.242828 0.317447 -0.916658 -0.193183 0.358321 -0.913393 -0.108882 0.280328 -0.953709 0.308743 0.342271 -0.887428 0.400235 0.380025 -0.833902 0.437071 0.358464 -0.824907 0.306876 0.362809 -0.879885 -0.062544 0.201463 -0.977497 -0.04802 0.0781 -0.995788 0.266858 0.326827 -0.906626 0.350138 0.278047 -0.894479 0.354862 0.347322 -0.868009 0.255429 0.219947 -0.941477 -0.006971 -0.087812 -0.996113 0.120653 -0.291438 -0.94895 0.318338 0.07641 -0.944893 0.448609 0.180967 -0.875215 0.399034 0.212972 -0.89186 0.432397 -0.02109 -0.901437 0.342686 -0.457883 -0.820311 0.578434 -0.49519 -0.648229 0.296419 -0.000702 -0.955058 0.296419 -0.000702 -0.955058 0.172523 0.052896 -0.983584 0.172523 0.052896 -0.983584 0.039158 0.322577 -0.945733 0.039158 0.322577 -0.945733 0.047516 0.433082 -0.900101 0.047516 0.433082 -0.900101 0.073663 0.121903 -0.989805 0.073663 0.121903 -0.989805 0.020637 0.212144 -0.977021 0.020637 0.212144 -0.977021 0.424054 -0.091556 -0.900997 0.424054 -0.091556 -0.900997 0.357272 -0.03225 -0.933444 0.357272 -0.03225 -0.933444 0.012525 0.534209 -0.84526 0.012525 0.534209 -0.84526 -0.011494 0.7071 -0.707021 -0.011494 0.7071 -0.707021 0.597526 -0.131026 -0.791072 0.597526 -0.131026 -0.791072 0.505826 -0.146625 -0.850083 0.505826 -0.146625 -0.850083 0.043082 0.835064 -0.548463 0.043082 0.835064 -0.548463 0.232892 0.841802 -0.486962 0.232892 0.841802 -0.486962 0.692441 0.211038 -0.689919 0.692441 0.211038 -0.689919 0.670034 -0.002279 -0.742327 0.670034 -0.002279 -0.742327 0.395537 0.785831 -0.475416 0.395537 0.785831 -0.475416 0.511415 0.69064 -0.511342 0.511415 0.69064 -0.511342 0.608864 0.549501 -0.572131 0.608864 0.549501 -0.572131 0.665886 0.412472 -0.621662 0.665886 0.412472 -0.621662 0.267718 0.900516 0.342634 0.267718 0.900516 0.342634 0.434491 0.763425 0.477912 0.434491 0.763425 0.477912 0.869912 0.076138 0.487294 0.869912 0.076138 0.487294 0.932155 -0.229683 0.279881 0.932155 -0.229683 0.279881 0.602872 0.538559 0.588642 0.602872 0.538559 0.588642 0.752279 0.323048 0.574209 0.752279 0.323048 0.574209 -0.213672 0.974192 0.072768 -0.213672 0.974192 0.072768 0.039021 0.973056 0.227243 0.039021 0.973056 0.227243 0.840289 -0.540248 0.045233 0.840289 -0.540248 0.045233 0.606818 -0.775669 -0.17352 0.606818 -0.775669 -0.17352 -0.573632 0.648601 -0.500262 -0.573632 0.648601 -0.500262 -0.459052 0.865899 -0.198721 -0.459052 0.865899 -0.198721 0.348772 -0.845309 -0.404736 0.348772 -0.845309 -0.404736 0.044107 -0.731158 -0.680781 0.044107 -0.731158 -0.680781 -0.526631 0.262875 -0.808429 -0.526631 0.262875 -0.808429 -0.572583 0.444835 -0.688673 -0.572583 0.444835 -0.688673 -0.171813 -0.489749 -0.854767 -0.171813 -0.489749 -0.854767 -0.298216 -0.294897 -0.907801 -0.298216 -0.294897 -0.907801 -0.378075 -0.092709 -0.921121 -0.378075 -0.092709 -0.921121 -0.44719 0.096281 -0.889242 -0.44719 0.096281 -0.889242 0.612429 0.206829 -0.762989 0.464886 0.248405 -0.849809 0.407407 0.351958 -0.842701 0.648197 0.357749 -0.672202 0.671753 0.259933 -0.693674 0.260779 0.444292 -0.857088 0.266283 0.359019 -0.894538 0.239549 0.282383 -0.928911 0.456076 0.54318 -0.704947 0.484975 0.494828 -0.721072 0.523431 0.452679 -0.721874 0.154432 0.395601 -0.905345 0.17883 0.504716 -0.84456 0.266157 0.567731 -0.779001 0.193307 0.300033 -0.934138 0.427534 0.439385 -0.790035 0.307666 0.464115 -0.830626 0.465664 0.419078 -0.779442 0.586011 0.418412 -0.693919 0.376686 0.574397 -0.726757 0.72401 0.167928 -0.669036 0.615211 0.144276 -0.775048 0.538442 0.194451 -0.81992 0.755996 0.352652 -0.551458 0.765047 0.251817 -0.592698 0.104303 0.251884 -0.96212 0.084593 0.265317 -0.960443 0.005837 0.281933 -0.959416 0.438714 0.77153 -0.460728 0.549094 0.684577 -0.479427 0.639111 0.567102 -0.51955 -0.119349 0.571474 -0.811895 -0.055497 0.717664 -0.694175 0.087893 0.80095 -0.592244 -0.082255 0.383999 -0.919662 0.371981 0.25099 -0.893663 0.168173 0.254214 -0.952414 0.515832 0.244885 -0.820943 0.711746 0.448691 -0.540457 0.274747 0.816832 -0.507247 0.645705 0.281916 -0.70964 0.539281 0.220414 -0.812769 0.769022 0.394085 -0.503292 0.726749 0.338639 -0.597628 0.910687 0.132665 0.391214 0.999599 0.019627 0.020427 0.95412 0.024299 0.298438 0.445708 0.894704 -0.029136 0.965917 0.00636 -0.258774 0.63813 0.749781 -0.174984 0.564478 0.808758 -0.165152 0.955888 0.074409 -0.28415 0.833027 -0.550995 -0.049699 0.747769 -0.638876 -0.180774 0.496269 -0.862279 -0.100952 -0.207933 0.848115 -0.487303 0.067624 0.763984 -0.641681 0.12728 0.626188 -0.769213 -0.218784 0.728379 -0.649305 0.477035 0.407812 -0.778542 0.477035 0.407812 -0.778542 0.017333 -0.981177 -0.192329 0.100697 -0.980826 -0.166857 0.066985 -0.985016 -0.158922 0.066985 -0.985016 -0.158922 0.113176 -0.977596 -0.177477 0.113176 -0.977596 -0.177477 0.260639 0.584649 -0.768279 0.260639 0.584649 -0.768279 0.016554 0.67435 -0.738226 -0.106362 0.750404 -0.652366 -0.106362 0.750404 -0.652366 -0.052394 0.836039 -0.546163 0.073173 0.824552 -0.561034 -0.11046 0.686583 -0.718611 -0.155032 0.743111 -0.650962 -0.209657 0.806439 -0.552901 -0.277141 0.74834 -0.602644 -0.254322 0.755762 -0.603444 -0.358109 0.092557 -0.929081 -0.250923 0.673348 -0.695442 -0.112663 0.603179 -0.789609 -0.09202 0.089713 -0.991708 0.154625 0.382352 -0.910988 0.205405 -0.026468 -0.978319 -0.072607 -0.353019 -0.932795 -0.315135 -0.516218 -0.796372 0.137801 -0.96591 -0.219155 -0.147037 -0.862058 -0.485012 0.15353 -0.866566 -0.474859 0.229098 -0.817711 -0.528075 0.125194 -0.964684 -0.231758 0.055128 -0.985656 -0.159509 0.133227 -0.975043 -0.1776 0.08158 0.845691 -0.5274 0.078804 0.875247 -0.477213 -0.135909 0.78308 -0.606889 -0.14307 0.731129 -0.667069 0.652262 -0.134271 -0.746006 0.728452 -0.084587 -0.679855 0.489926 -0.423017 -0.762253 0.604152 0.140091 -0.784458 0.789901 0.036981 -0.612119 0.511155 -0.597093 -0.618224 0.41548 -0.442463 -0.794735 0.053874 -0.927755 -0.369281 0.152238 -0.796477 -0.58519 0.917433 -0.01634 -0.397554 0.60325 -0.699086 -0.383887 0.029478 -0.980033 -0.196639 0.188278 0.863211 -0.468421 0.734878 0.361526 -0.573806 0.645074 0.228829 -0.729052 0.011092 0.714503 -0.699544 0.528285 0.032629 -0.84844 -0.123905 0.526586 -0.841044 0.709036 -0.679127 0.189881 0.54884 -0.680148 0.485977 0.696633 -0.536154 0.476698 0.937025 0.142119 0.319041 0.883729 -0.390989 0.257199 0.771856 0.621298 -0.135006 0.80244 -0.582305 -0.130427 0.360455 0.931906 0.040288 0.246781 0.968966 0.014261 0.199409 0.979909 0.003657 0.20259 0.97835 0.042279 0.297397 0.954751 0.002279 0.296878 0.953346 -0.054732 -0.448272 0.750301 -0.485901 -0.299256 0.711329 -0.635969 -0.449932 0.662013 -0.599417 -0.604373 0.702658 -0.375506 0.543677 -0.837776 -0.05046 0.41825 -0.908309 0.006481 0.525642 -0.828016 0.195167 0.513327 -0.837473 0.187441 0.632445 -0.690176 0.351668 0.562937 -0.723503 0.399556 0.270888 -0.860723 -0.431018 0.466072 -0.760826 -0.451575 0.785817 -0.470274 -0.401664 0.806986 0.379916 -0.452147 0.311722 -0.406116 -0.859011 0.08011 -0.476468 -0.875534 0.492226 -0.783275 0.379728 0.564196 -0.75938 0.324076 0.615425 -0.747397 0.250297 0.467281 -0.880804 -0.076373 0.423525 -0.905139 -0.036738 0.388235 -0.921287 -0.022439 -0.638353 0.671458 -0.376365 -0.642083 0.670375 -0.371923 -0.527289 0.635121 -0.564436 -0.53912 0.609156 -0.581618 -0.499354 0.673213 -0.545371 -0.620665 0.681581 -0.387585 0.724403 -0.679107 -0.118553 0.808578 -0.568186 -0.152862 0.76273 -0.645516 0.039393 0.719046 -0.694329 0.029644 0.704086 -0.666952 0.243799 0.68063 -0.673335 0.288725 0.675478 -0.668555 0.311069 0.688796 -0.721756 0.068031 0.678689 -0.726051 -0.110594 0.590821 -0.659388 -0.464906 0.324614 -0.335183 -0.884465 0.389368 -0.193616 -0.900503 0.677507 -0.584788 -0.446103 0.811911 -0.403641 -0.421752 -0.702864 0.705439 -0.091315 -0.699069 0.693346 0.174852 -0.698884 0.694843 0.169571 -0.697074 0.711711 -0.08692 -0.629707 0.772938 0.077689 -0.630257 0.757744 -0.169115 0.665495 -0.718329 0.202779 0.637554 -0.7383 0.220087 0.650398 -0.741869 0.163133 0.619906 -0.781037 -0.075482 0.62189 -0.772088 -0.130895 0.619404 -0.767547 -0.164959 -0.428525 0.808484 -0.403384 -0.344282 0.922494 -0.174568 0.841854 -0.487833 -0.230867 0.838993 -0.458769 -0.292613 0.718357 -0.682624 -0.134116 0.750372 -0.66081 -0.016469 -0.004385 -0.980634 -0.195802 0.11327 -0.803082 -0.585003 0.033162 -0.790045 -0.612151 -0.142029 -0.978203 -0.151482 0.398848 0.500353 -0.768484 0.284867 0.522124 -0.803889 0.240759 -0.182234 -0.953324 0.326055 -0.256882 -0.90978 0.106126 0.992625 0.058596 0.101925 0.991712 -0.078227 0.185058 0.981762 0.043548 0.161241 0.98316 0.086007 0.203627 0.976108 0.075821 -0.181266 -0.979622 -0.086502 -0.058418 -0.989239 -0.134139 0.18691 0.981774 0.034418 0.16088 0.98655 0.028917 -0.164751 -0.970502 -0.176023 0.075477 -0.797038 -0.599194 0.41959 0.332341 -0.844685 0.322606 -0.288805 -0.901397 0.338129 0.937695 -0.079978 0.299596 0.953203 -0.040569 -0.230271 -0.970692 -0.068787 0.273756 0.960659 -0.046809 -0.093554 0.935084 -0.341855 -0.357811 0.927392 -0.109158 -0.580229 0.784645 -0.218327 -0.370232 0.823908 -0.429073 0.555442 -0.82035 -0.136052 0.648256 -0.730721 0.214037 0.665073 -0.670138 0.329534 -0.177345 0.255741 -0.950339 0.237945 -0.404121 -0.883215 -0.171659 0.218398 -0.960643 -0.191232 0.22974 -0.95428 -0.611039 0.688951 -0.389844 -0.497376 0.621066 -0.605717 0.578572 -0.812132 -0.075471 0.636769 -0.760919 0.124606 -0.168096 0.382717 -0.908445 -0.01579 0.29859 -0.954251 -0.354497 0.372019 -0.857866 -0.354497 0.372019 -0.857866 0.030753 -0.642052 -0.766044 -0.28865 0.899627 -0.327645 -0.28865 0.899627 -0.327645 -0.590748 0.801531 0.092551 0.882451 -0.187177 -0.431561 0.631213 0.690214 -0.3538 0.716773 0.651128 -0.249539 0.810085 0.079366 -0.580916 0.218435 0.918014 -0.330963 0.140919 0.983259 -0.115515 0.178425 0.905077 -0.386006 0.364259 0.817074 -0.446884 0.299785 0.939825 -0.163886 0.464631 -0.750462 -0.470027 0.536199 0.720631 -0.439525 0.864301 -0.265631 -0.427112 -0.127859 0.902899 -0.410396 0.648779 -0.746777 0.14632 -0.65206 0.746179 -0.134292 0.932257 0.179954 -0.313868 0.932257 0.179954 -0.313868 0.85443 0.301563 -0.423095 0.797829 0.26596 -0.541049 0.873116 -0.177098 -0.454207 0.873116 -0.177098 -0.454207 0.649289 0.072699 -0.757059 0.753442 0.191783 -0.628923 0.6043 -0.0704 -0.793641 0.921298 -0.001363 -0.388856 0.921298 -0.001363 -0.388856 0.805464 -0.09727 -0.584608 0.710857 -0.181827 -0.679427 0.859553 -0.250977 -0.445172 -0.504833 -0.252405 -0.825491 -0.504833 -0.252405 -0.825491 -0.176988 -0.95937 -0.219738 -0.176988 -0.95937 -0.219738 0.838581 -0.043777 -0.543014 -0.50884 -0.695521 -0.507279 -0.50884 -0.695521 -0.507279 0.843621 -0.371969 -0.387224 0.843621 -0.371969 -0.387224 0.897769 0.154532 -0.41247 0.897769 0.154532 -0.41247 0.883068 0.157461 -0.442037 0.883068 0.157461 -0.442037 0.71598 -0.20424 -0.667576 0.71598 -0.20424 -0.667576 0.84052 -0.139279 -0.523572 0.84052 -0.139279 -0.523572 0.889164 0.201883 -0.410647 0.889164 0.201883 -0.410647 0.844759 0.094819 -0.526679 0.844759 0.094819 -0.526679 0.516769 -0.546521 -0.658988 0.137687 -0.761356 -0.633545 -0.073521 0.769689 -0.634171 -0.902895 -0.325759 0.280467 -0.936415 -0.200727 0.287811 -0.858832 -0.448083 0.248252 -0.80054 -0.564124 0.202238 -0.740856 -0.649577 0.170825 -0.640499 -0.727822 0.245023 -0.852262 -0.443442 0.277505 -0.785146 -0.561254 0.261802 -0.709343 -0.657204 0.254784 0.578683 -0.759785 0.2964 -0.000115 -0.99999 -0.004589 -0.00051 -0.999977 -0.006811 -3.4e-005 -0.999995 -0.003095 -0.0006 -0.999998 -0.001658 0.001309 -0.999998 0.001288 -0.003465 -0.999976 -0.006061 -0.004195 -0.999979 -0.004981 -0.000633 -0.99997 -0.007748 -0.001948 -0.999974 -0.00693 -6e-006 -0.999971 -0.007673 -0.00264 -0.99998 -0.005704 -6.6e-005 -0.999967 -0.008151 -0.00142 -0.999996 -0.002481 0.003645 -0.999993 4.6e-005 -0.002686 -0.999991 0.003221 0.002724 -0.999944 0.010221 0.004946 -0.999932 0.010546 0.006765 -0.99992 0.010688 0.004595 -0.999966 0.006817 0.001146 -0.999997 0.002298 -0.004822 -0.999982 0.003527 -0.003588 -0.999964 0.00771 -0.00298 -0.999888 0.014663 -0.001243 -0.999863 0.016531 0.001848 -0.999933 0.011451 -0.004415 -0.999984 0.003674 0.001118 -0.999907 0.013595 0.001334 -0.999999 -0.000699 -0.00033 -1 -0.000292</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2290\" source=\"#LOD3spShape-lib-normals-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"map1\" id=\"LOD3spShape-lib-map1\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"LOD3spShape-lib-map1-array\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"4554\">0.245158 0.423975 0.25011 0.468112 0.150442 0.543685 0.148569 0.498875 0.302841 0.416173 0.345064 0.636086 0.339502 0.673242 0.260986 0.672117 0.283208 0.642063 0.331126 0.714598 0.241009 0.71553 0.233372 0.762934 0.302959 0.373132 0.224027 0.289653 0.23558 0.359702 0.143764 0.429085 0.134156 0.320572 0.298228 0.319321 0.288073 0.263566 0.326898 0.757163 0.328393 0.797118 0.23841 0.805793 0.60087 0.640918 0.866606 0.398924 0.510699 0.676291 0.517366 0.634965 0.871384 0.397619 0.505796 0.719121 0.878048 0.397558 0.87416 0.398826 0.86606 0.397625 0.86057 0.399008 0.501279 0.762876 0.856321 0.39906 0.497144 0.804816 0.862375 0.397683 0.860024 0.397676 0.853776 0.399148 0.494669 0.842655 0.936097 0.40457 0.495808 0.877438 0.932361 0.401286 0.944998 0.401429 0.333511 0.830512 0.255441 0.838224 0.335539 0.859065 0.275714 0.857682 0.13703 0.645509 0.099669 0.709478 0.072436 0.710311 0.114209 0.64461 0.217381 0.600094 0.193334 0.589335 0.083907 0.774978 0.093256 0.834193 0.067488 0.842396 0.056643 0.778851 0.948825 0.405179 0.543475 0.557405 0.5578 0.533271 0.685834 0.551732 0.928618 0.398828 0.939922 0.398832 0.318062 0.571086 0.304302 0.551225 0.870712 0.401462 0.862287 0.401557 0.855482 0.401642 0.85836 0.405349 0.85103 0.405417 0.86725 0.404976 0.851008 0.401767 0.84805 0.401779 0.618068 0.949096 0.595914 0.442419 0.701364 0.36472 0.704143 0.312403 0.595493 0.387203 0.757075 0.288915 0.749567 0.262372 0.79867 0.019963 0.720188 0.090411 0.342229 0.232442 0.353643 0.285267 0.846214 0.405443 0.84246 0.405195 0.945825 0.3988 0.51556 0.94314 0.529717 0.959537 0.951482 0.401365 0.955814 0.405156 0.355112 0.336459 0.416748 0.23909 0.409212 0.301844 0.412385 0.174765 0.722678 0.141004 0.371257 0.129527 0.316583 0.183819 0.278107 0.146712 0.815355 0.094326 0.586596 0.164171 0.31201 0.090946 0.272238 0.213152 0.591566 0.221736 0.775513 0.183818 0.258385 0.177707 0.714664 0.225413 0.594393 0.311859 0.803506 0.201004 0.853165 0.100422 0.240207 0.064107 0.220228 0.127313 0.134162 0.116701 0.137886 0.045291 0.20962 0.176711 0.132836 0.176022 0.393776 0.367451 0.346805 0.380154 0.21424 0.228892 0.133514 0.241035 0.127886 0.880246 0.194162 0.909528 0.176891 0.924466 0.105635 0.892789 0.298575 0.918513 0.289302 0.932026 0.41004 0.927663 0.412647 0.940987 0.152917 0.714025 0.188039 0.660899 0.251002 0.622891 0.148083 0.821618 0.139091 0.770988 0.529124 0.59406 0.624566 0.605374 0.943792 0.414167 0.33386 0.602351 0.939709 0.408955 0.951716 0.40979 0.95394 0.414936 0.863781 0.409841 0.854643 0.410095 0.847079 0.410021 0.50373 0.914675 0.043999 0.560029 0.039161 0.51728 0.035514 0.442488 0.02836 0.327681 0.57657 0.399149 0.579657 0.45714 0.483058 0.467543 0.484696 0.402538 0.027211 0.11532 0.026409 0.041836 0.027231 0.176259 0.027041 0.244825 0.496033 0.232082 0.498386 0.171519 0.545104 0.178866 0.55478 0.242428 0.486973 0.320445 0.572701 0.32584 0.253473 0.42034 0.198325 0.471074 0.201641 0.514357 0.257191 0.464291 0.304409 0.414784 0.305266 0.371658 0.230885 0.286168 0.167912 0.306331 0.188981 0.401339 0.242536 0.354324 0.300813 0.31779 0.290984 0.262458 0.644363 0.422582 0.643061 0.366324 0.70337 0.314326 0.703499 0.366966 0.745969 0.26707 0.75382 0.293297 0.343946 0.231017 0.355397 0.284532 0.356783 0.335152 0.414764 0.29281 0.419941 0.236001 0.413771 0.173263 0.370421 0.125545 0.313385 0.086563 0.282902 0.142155 0.319456 0.18046 0.261679 0.175104 0.275739 0.211488 0.247515 0.05956 0.175872 0.043369 0.166908 0.113803 0.230266 0.122298 0.162066 0.173298 0.220575 0.173418 0.399643 0.347472 0.348371 0.378515 0.850892 0.415208 0.23283 0.882474 0.174218 0.860862 0.318561 0.890705 0.412205 0.900441 0.414872 0.864697 0.414169 0.832004 0.413463 0.796679 0.414763 0.757 0.418623 0.715141 0.424042 0.67374 0.797949 0.022112 0.816816 0.093012 0.720595 0.147032 0.715991 0.092651 0.636546 0.210325 0.627672 0.148444 0.772502 0.189202 0.711355 0.231084 0.641706 0.289174 0.223314 0.226619 0.162858 0.235961 0.139391 0.505963 0.140772 0.546375 0.105327 0.324975 0.131454 0.436403 0.855305 0.0942 0.800674 0.205793 0.103269 0.042003 0.100779 0.11305 0.099208 0.173793 0.099637 0.242841 0.428561 0.633258 0.429426 0.594048 0.429051 0.559095 0.429259 0.535162 0.35272 0.639241 0.294558 0.645659 0.274212 0.673847 0.348213 0.675519 0.253789 0.714174 0.339072 0.715472 0.241562 0.759109 0.241492 0.801977 0.330569 0.796358 0.332348 0.756954 0.843668 0.414845 0.519216 0.636196 0.513483 0.677706 0.858319 0.415536 0.509018 0.719971 0.595108 0.724198 0.959154 0.409842 0.961426 0.415077 0.955396 0.420505 0.503982 0.762367 0.946551 0.419988 0.498249 0.80295 0.581926 0.813498 0.948394 0.426244 0.956245 0.426562 0.493564 0.840197 0.962774 0.420748 0.49337 0.874734 0.5689 0.884732 0.963626 0.426902 0.947821 0.439136 0.254385 0.836095 0.333265 0.830744 0.334347 0.859927 0.274272 0.857068 0.111374 0.707428 0.160452 0.654158 0.126019 0.649524 0.074711 0.707898 0.232092 0.611555 0.203545 0.598866 0.085639 0.828171 0.086444 0.767612 0.053832 0.770468 0.05904 0.833261 0.5406 0.554531 0.653253 0.57169 0.949156 0.432796 0.552741 0.532581 0.956416 0.432776 0.955188 0.438695 0.321928 0.578317 0.3053 0.558373 0.963377 0.433055 0.962074 0.438861 0.939469 0.450342 0.944673 0.445101 0.952905 0.444195 0.949616 0.449137 0.959891 0.444199 0.95721 0.449055 0.928445 0.45763 0.933041 0.454385 0.647892 0.957038 0.945196 0.453364 0.513713 0.938992 0.528694 0.953445 0.940767 0.456994 0.954246 0.453493 0.191556 0.905473 0.119561 0.876603 0.09609 0.886393 0.173642 0.917872 0.296111 0.916924 0.285563 0.930752 0.407594 0.925155 0.699705 0.808301 0.767751 0.813767 0.770203 0.857847 0.710393 0.859091 0.67046 0.86001 0.652167 0.800156 0.732575 0.902022 0.706983 0.910753 0.776574 0.894725 0.709069 0.706824 0.772884 0.721001 0.769128 0.766819 0.69961 0.756109 0.650715 0.739559 0.665169 0.685443 0.747389 0.629544 0.781976 0.645207 0.777571 0.679447 0.726035 0.663915 0.69251 0.641696 0.7256 0.608173 0.800842 0.598447 0.800844 0.613722 0.782354 0.62203 0.77064 0.606739 0.761516 0.586356 0.801211 0.57812 0.833474 0.606525 0.843418 0.585771 0.884582 0.608278 0.861681 0.62927 0.826927 0.645008 0.821482 0.621769 0.901508 0.709495 0.841154 0.721344 0.835351 0.679466 0.88519 0.664947 0.920582 0.64464 0.946246 0.692573 0.905321 0.811872 0.840491 0.814502 0.842749 0.767471 0.908491 0.759591 0.957769 0.748636 0.953229 0.808266 0.87648 0.901039 0.832824 0.894364 0.83647 0.858222 0.893987 0.860506 0.934495 0.863509 0.904941 0.908789 0.811165 0.93926 0.808557 0.928096 0.833115 0.918674 0.850764 0.928355 0.866017 0.939324 0.815782 0.955298 0.781351 0.919619 0.767445 0.930389 0.756778 0.947206 0.874321 0.260529 0.87457 0.258357 0.870642 0.262514 0.870232 0.260129 0.875205 0.262091 0.87418 0.274349 0.878088 0.275377 0.879128 0.284194 0.875282 0.284248 0.876451 0.268146 0.87176 0.26763 0.879196 0.270887 0.875496 0.265391 0.893101 0.28442 0.892287 0.271326 0.879947 0.284131 0.862255 0.219399 0.877309 0.242158 0.869772 0.241647 0.855575 0.218438 0.862432 0.239621 0.84944 0.210845 0.867315 0.244511 0.849901 0.240235 0.863194 0.266321 0.876212 0.265675 0.880423 0.283451 0.866718 0.283089 0.870498 0.254293 0.863904 0.253791 0.870234 0.270504 0.864805 0.270607 0.879852 0.25405 0.878645 0.27023 0.884908 0.221559 0.894641 0.243235 0.885819 0.242521 0.87478 0.219802 0.853855 0.205189 0.868038 0.204565 0.870975 0.210424 0.856654 0.209577 0.882303 0.208527 0.885027 0.21281 0.869343 0.207181 0.855354 0.205901 0.879862 0.246326 0.872817 0.221463 0.859409 0.2185 0.885826 0.225344 0.891813 0.248223 0.886742 0.266822 0.897889 0.269881 0.890434 0.283337 0.902191 0.283202 0.887267 0.269985 0.888486 0.253806 0.897003 0.253871 0.897865 0.269734 0.890567 0.21382 0.890889 0.214313 0.887336 0.211472 0.940502 0.247339 0.935827 0.245027 0.948386 0.259727 0.952135 0.261243 0.929477 0.246937 0.935892 0.257903 0.955141 0.271935 0.951237 0.271687 0.951697 0.282445 0.956107 0.282705 0.939971 0.271031 0.941535 0.28252 0.963745 0.266939 0.955791 0.248173 0.96377 0.246708 0.971434 0.266214 0.948554 0.235961 0.955224 0.234835 0.896396 0.245174 0.886107 0.251776 0.887306 0.25714 0.901578 0.253513 0.893935 0.234459 0.893306 0.241625 0.88488 0.259333 0.895682 0.256287 0.898524 0.274248 0.887363 0.275119 0.885952 0.26722 0.897217 0.265981 0.888292 0.284017 0.899782 0.283788 0.893557 0.224473 0.903384 0.244263 0.904117 0.226402 0.909834 0.245212 0.898452 0.232315 0.90536 0.242289 0.914901 0.24109 0.908475 0.23147 0.912117 0.251402 0.92111 0.249824 0.905103 0.223634 0.894105 0.223477 0.891627 0.223783 0.892209 0.224715 0.894785 0.217728 0.904032 0.218825 0.905292 0.26092 0.916745 0.259188 0.925679 0.257542 0.919312 0.270264 0.927598 0.269904 0.909165 0.270372 0.922229 0.248254 0.923018 0.231732 0.931448 0.236491 0.927474 0.250713 0.939132 0.243721 0.931475 0.252998 0.941395 0.236759 0.941774 0.24318 0.951181 0.24757 0.953028 0.242625 0.943442 0.249961 0.949719 0.251412 0.932269 0.241398 0.935522 0.24909 0.930136 0.234395 0.929446 0.228394 0.942151 0.230847 0.942787 0.227016 0.929372 0.224433 0.954848 0.237908 0.922857 0.256527 0.927955 0.258098 0.929776 0.270263 0.925166 0.269641 0.93313 0.259066 0.935431 0.270899 0.938091 0.256867 0.945703 0.257403 0.953024 0.257866 0.948714 0.269472 0.957575 0.269677 0.940805 0.269454 0.944953 0.253898 0.950208 0.269278 0.961307 0.253711 0.957956 0.256418 0.964661 0.269455 0.96896 0.268209 0.902892 0.249987 0.897745 0.228849 0.908596 0.231834 0.912735 0.252197 0.897122 0.224227 0.89485 0.22181 0.90624 0.226903 0.908607 0.228742 0.903082 0.242361 0.906809 0.256103 0.917237 0.255133 0.919494 0.264606 0.908311 0.265315 0.907454 0.269025 0.916487 0.269043 0.911531 0.283044 0.919593 0.2829 0.909419 0.273405 0.911476 0.28336 0.920571 0.273041 0.922157 0.283218 0.922114 0.255039 0.920062 0.238863 0.921052 0.234472 0.923775 0.23538 0.929369 0.253983 0.934895 0.263753 0.927988 0.282737 0.92516 0.269608 0.937386 0.272947 0.938515 0.283177 0.906903 0.269654 0.905634 0.25451 0.912156 0.254648 0.915624 0.269303 0.934262 0.269581 0.931993 0.256855 0.928513 0.24901 0.928512 0.223212 0.917128 0.220406 0.916725 0.220767 0.9041 0.217973 0.914088 0.228391 0.916363 0.246441 0.918617 0.23227 0.923487 0.240784 0.938248 0.22777 0.892821 0.216321 0.844542 0.206031 0.874322 0.212263 0.870581 0.286403 0.864795 0.285932 0.877377 0.285736 0.887924 0.285532 0.898823 0.285311 0.908672 0.285115 0.917425 0.284957 0.921216 0.269224 0.922914 0.284906 0.926665 0.284912 0.930758 0.284928 0.936388 0.28496 0.952837 0.284936 0.967867 0.284724 0.971593 0.266723 0.976556 0.284338 0.976161 0.284497 0.973686 0.284223 0.968029 0.284169 0.960033 0.284154 0.950775 0.284138 0.942494 0.284121 0.936182 0.284123 0.929809 0.284158 0.920968 0.284223 0.910111 0.284292 0.952943 0.272204 0.950019 0.262148 0.953976 0.282879 0.900909 0.229617 0.889642 0.217102 0.912068 0.234085 0.913562 0.243735 0.925227 0.239763 0.92311 0.245509 0.916786 0.225007 0.940372 0.24984 0.963568 0.250138 0.888081 0.264217 0.918118 0.254988 0.844126 0.209259 0.844951 0.221286 0.886769 0.216308 0.872985 0.215718 0.879346 0.309871 0.875833 0.306046 0.875654 0.308144 0.879007 0.306407 0.876295 0.294136 0.878977 0.293033 0.879812 0.300399 0.876175 0.301094 0.880254 0.30345 0.882198 0.297454 0.893175 0.297687 0.865817 0.349629 0.859181 0.350621 0.872916 0.327332 0.880252 0.326495 0.865713 0.330422 0.852822 0.359205 0.869257 0.322943 0.877097 0.301439 0.864055 0.301093 0.852819 0.327816 0.866118 0.317194 0.872679 0.31623 0.865658 0.301152 0.871305 0.301562 0.879516 0.300927 0.881998 0.315802 0.888262 0.347411 0.878301 0.348969 0.888479 0.326114 0.897047 0.325511 0.857019 0.363938 0.860381 0.359999 0.874655 0.358691 0.872015 0.364197 0.888629 0.3558 0.886097 0.359632 0.872907 0.361011 0.858128 0.36229 0.881706 0.320824 0.862423 0.349295 0.875903 0.346079 0.888714 0.341972 0.893556 0.318638 0.898554 0.296744 0.887564 0.300041 0.888147 0.300674 0.898715 0.300283 0.89883 0.31539 0.89048 0.315686 0.894383 0.353795 0.894065 0.354129 0.890921 0.356254 0.942171 0.318343 0.9529 0.304272 0.949521 0.305533 0.937705 0.320863 0.937122 0.30759 0.931259 0.318903 0.955735 0.293528 0.951772 0.293299 0.940544 0.294181 0.964624 0.302435 0.972337 0.302695 0.965634 0.321964 0.957594 0.320997 0.957663 0.333351 0.950951 0.332759 0.897685 0.323309 0.904388 0.314564 0.887892 0.312338 0.888936 0.316243 0.699423 0.809253 0.710111 0.860044 0.769921 0.8588 0.767468 0.81472 0.651885 0.801109 0.669688 0.860514 0.732293 0.902975 0.706453 0.911484 0.776292 0.895678 0.708787 0.707777 0.699329 0.757062 0.768846 0.767772 0.772602 0.721954 0.664887 0.686395 0.650433 0.740512 0.747107 0.630497 0.725753 0.664868 0.777288 0.6804 0.781693 0.64616 0.725318 0.609127 0.692228 0.642648 0.80056 0.5994 0.770358 0.607692 0.782072 0.622983 0.800562 0.614675 0.800928 0.579073 0.761234 0.587309 0.833192 0.607478 0.861399 0.630223 0.8843 0.609231 0.843136 0.586725 0.8212 0.622722 0.826645 0.645961 0.901226 0.710448 0.884907 0.6659 0.835069 0.680418 0.840872 0.722297 0.945964 0.693526 0.920299 0.645594 0.905039 0.812825 0.908209 0.760544 0.842467 0.768423 0.840209 0.815454 0.952947 0.809219 0.957487 0.749588 0.876198 0.901993 0.893705 0.861459 0.836187 0.859175 0.832541 0.895317 0.904659 0.909742 0.934213 0.864462 0.810883 0.940213 0.850482 0.929308 0.832833 0.919627 0.808275 0.929049 0.815494 0.955807 0.865735 0.940277 0.767163 0.931342 0.781069 0.920572 0.878641 0.308129 0.757688 0.947696 0.89571 0.326063 0.896265 0.333541 0.887647 0.308911 0.896958 0.311973 0.898883 0.293285 0.897963 0.301935 0.887703 0.301029 0.887878 0.29293 0.905567 0.324686 0.896731 0.344468 0.906991 0.342485 0.911791 0.324251 0.900908 0.335596 0.911043 0.336295 0.917143 0.326675 0.907054 0.325968 0.923285 0.31808 0.915184 0.316034 0.908088 0.344187 0.897103 0.344536 0.894607 0.344154 0.895142 0.343144 0.898106 0.350443 0.90726 0.349181 0.907871 0.308374 0.918398 0.309598 0.927049 0.310818 0.928305 0.298442 0.920004 0.298182 0.909927 0.298243 0.924036 0.321254 0.929162 0.318872 0.933826 0.332572 0.925629 0.337191 0.941158 0.32555 0.933051 0.316658 0.943727 0.330971 0.955075 0.325269 0.952983 0.320359 0.943791 0.324629 0.951332 0.316568 0.945126 0.31796 0.937248 0.318798 0.934373 0.326359 0.932584 0.333273 0.932192 0.3393 0.932318 0.343421 0.945607 0.340893 0.944776 0.336887 0.957129 0.33006 0.924262 0.313255 0.925922 0.300164 0.930502 0.299579 0.929283 0.311724 0.936126 0.298969 0.93441 0.310774 0.939442 0.311396 0.947027 0.310849 0.954323 0.310334 0.958291 0.298597 0.94944 0.298819 0.941532 0.298832 0.946483 0.315703 0.950981 0.300512 0.962811 0.314479 0.969751 0.300159 0.965388 0.298807 0.959326 0.311738 0.904541 0.316598 0.900452 0.33816 0.911146 0.334819 0.914268 0.314088 0.900043 0.343367 0.910827 0.338483 0.909045 0.340214 0.897918 0.345703 0.907714 0.311836 0.905082 0.324826 0.918749 0.311513 0.909052 0.30192 0.920236 0.301846 0.91718 0.297035 0.908155 0.297332 0.909931 0.29344 0.92041 0.293444 0.923496 0.310879 0.922253 0.327378 0.925923 0.331262 0.923469 0.332076 0.930583 0.312153 0.934974 0.302503 0.925817 0.29614 0.93758 0.293425 0.907706 0.300101 0.916398 0.300537 0.913653 0.315103 0.907277 0.314776 0.934984 0.298714 0.933344 0.311407 0.930312 0.318902 0.931529 0.345055 0.919853 0.347075 0.920283 0.347817 0.907379 0.350402 0.918259 0.323025 0.916863 0.340467 0.921166 0.335346 0.925584 0.327014 0.941044 0.340685 0.896265 0.352186 0.847118 0.363087 0.877923 0.355511 0.921992 0.300554 0.972463 0.301867 0.950828 0.303658 0.953466 0.293583 0.892951 0.350759 0.90326 0.337983 0.915596 0.322974 0.91417 0.333036 0.927312 0.326701 0.92504 0.320904 0.919699 0.342662 0.941871 0.316003 0.965254 0.318221 0.889956 0.306147 0.919598 0.314755 0.845891 0.359181 0.847322 0.346695 0.890112 0.35133 0.87636 0.352039 0.950166 0.457401 0.877438 0.456074 0.890333 0.455013 0.891902 0.457826 0.881771 0.45805 0.893433 0.460126 0.885457 0.459788 0.90216 0.458193 0.902038 0.46051 0.902093 0.455956 0.869348 0.456995 0.875073 0.458463 0.870949 0.459563 0.865831 0.459946 0.88002 0.459819 0.876379 0.459992 0.890696 0.462723 0.889158 0.462546 0.893089 0.46287 0.842115 0.409869 0.837426 0.409453 0.838646 0.414482 0.833434 0.414204 0.847163 0.42056 0.840709 0.41957 0.839445 0.430603 0.83503 0.428579 0.852464 0.422383 0.843659 0.433436 0.835601 0.419062 0.830596 0.418889 0.831257 0.427506 0.827802 0.427141 0.876435 0.450731 0.866399 0.449489 0.869211 0.447456 0.878828 0.448367 0.861778 0.461251 0.86329 0.45579 0.869445 0.454182 0.919848 0.462088 0.9244 0.459418 0.936505 0.460001 0.932799 0.462552 0.914853 0.457033 0.912969 0.45878 0.983064 0.742705 0.970242 0.681277 0.978343 0.807461 0.961861 0.871181 0.925 0.920764 0.93957 0.629718 0.896636 0.591965 0.87816 0.953598 0.820182 0.969676 0.849136 0.56846 0.801508 0.561342 0.753635 0.961316 0.693916 0.922274 0.756457 0.570463 0.715065 0.59271 0.62759 0.729278 0.628526 0.797321 0.647916 0.672373 0.648988 0.865355 0.678001 0.627321 0.970524 0.680324 0.983346 0.741752 0.978626 0.806509 0.962143 0.870229 0.925282 0.919811 0.896919 0.591012 0.939853 0.628765 0.878442 0.952645 0.819304 0.969461 0.80179 0.560389 0.849419 0.567507 0.753465 0.960832 0.694447 0.921544 0.715348 0.591757 0.756739 0.569509 0.628808 0.796368 0.627873 0.728326 0.648199 0.671421 0.648584 0.866073 0.678283 0.626368 0.411737 0.936637 0.212659 0.665019 0.175067 0.711347 0.264355 0.628942 0.154113 0.763611 0.154483 0.81452 0.911051 0.461039 0.528987 0.594894 0.945951 0.460521 0.339791 0.607004 0.94197 0.46307 0.896594 0.462992 0.902819 0.462828 0.939147 0.46498 0.588358 0.917245 0.930869 0.464578 0.500784 0.908814 0.937502 0.466649 0.178893 0.855096 0.23388 0.878659 0.317203 0.888741 0.409219 0.897533 0.412456 0.865776 0.413517 0.832907 0.415303 0.797177 0.41903 0.758087 0.424284 0.717135 0.429773 0.675932 0.433166 0.635493 0.431719 0.596003 0.42845 0.560105 0.426262 0.535529 0.166927 0.932027 0.089131 0.90146 0.412839 0.954955 0.280654 0.94225 0.092604 0.643694 0.172265 0.583534 0.034269 0.783775 0.048602 0.713913 0.288973 0.53753 0.047197 0.849027 0.9297 0.466322 0.910929 0.462701 0.429574 0.516361 0.573602 0.514995 0.911763 0.464455 0.904647 0.46452 0.91245 0.466086 0.906026 0.466148 0.920833 0.464349 0.682918 0.980037 0.544365 0.975068 0.92089 0.466118 0.274953 0.94136 0.412382 0.948959 0.078614 0.893197 0.159929 0.926191 0.045546 0.712112 0.029763 0.775258 0.174568 0.589926 0.093871 0.647648 0.286715 0.542233 0.039682 0.837587 0.568016 0.514851 0.425296 0.517534 0.89967 0.464526 0.715649 0.536695 0.89649 0.46445 0.90127 0.466162 0.89793 0.466107 0.92457 0.397524 0.934172 0.397517 0.90196 0.397532 0.543555 0.96576 0.912366 0.397543 0.914428 0.398827 0.902477 0.39881 0.887934 0.397535 0.886084 0.398748 0.939158 0.397548 0.916553 0.401268 0.903345 0.401161 0.918892 0.404595 0.904419 0.40426 0.88377 0.401252 0.880927 0.404722 0.905294 0.428912 0.905488 0.424961 0.912357 0.424967 0.91334 0.429138 0.905906 0.421495 0.911087 0.422154 0.904076 0.437412 0.90478 0.43319 0.913199 0.433998 0.911884 0.43877 0.90321 0.444063 0.903361 0.441071 0.909872 0.442542 0.908067 0.444769 0.902496 0.453271 0.918142 0.453706 0.928783 0.450398 0.93573 0.445715 0.939896 0.439756 0.941415 0.433124 0.940295 0.426582 0.937084 0.420446 0.931618 0.414911 0.921769 0.409549 0.905101 0.407893 0.876573 0.40992 0.866307 0.415598 0.859425 0.421874 0.854503 0.429219 0.846009 0.439206 0.853866 0.435555 0.855666 0.44134 0.849189 0.44441 0.859693 0.44628 0.853635 0.449316 0.859396 0.453185 0.889827 0.45174 0.862926 0.421743 0.859205 0.428005 0.869662 0.416377 0.857993 0.434235 0.859086 0.440054 0.916008 0.412068 0.903601 0.410265 0.918257 0.418305 0.91053 0.415402 0.913091 0.413541 0.921836 0.416936 0.92534 0.416062 0.879532 0.412275 0.931494 0.42114 0.923547 0.422692 0.927682 0.421785 0.926515 0.428111 0.931209 0.427509 0.93512 0.42705 0.936295 0.433481 0.92732 0.434037 0.932331 0.433786 0.925669 0.439922 0.930432 0.440034 0.934525 0.439972 0.912845 0.451737 0.922595 0.449614 0.907361 0.448978 0.915126 0.447877 0.918684 0.448912 0.909842 0.450414 0.901128 0.451294 0.929882 0.445604 0.921412 0.444811 0.925747 0.445329 0.862632 0.44473 0.90791 0.418325 0.914417 0.420366 0.918293 0.424021 0.92059 0.42877 0.920879 0.434155 0.919487 0.439514 0.911345 0.446349 0.90499 0.446728 0.916084 0.443813 0.891421 0.410387 0.891335 0.407994 0.8923 0.404278 0.892667 0.401108 0.892803 0.398753 0.893101 0.397518 0.953337 0.401538 0.958091 0.405199 0.9475 0.399036 0.96186 0.409791 0.964499 0.415028 0.96612 0.420717 0.967305 0.426924 0.967388 0.433074 0.966427 0.438883 0.96451 0.444202 0.961861 0.44894 0.958944 0.453645 0.955428 0.457592 0.951844 0.460785 0.948132 0.463506 0.945008 0.465414 0.9428 0.466896 0.940897 0.39766 0.894646 0.464377 0.893748 0.464327 0.895819 0.465909 0.894732 0.465707 0.898046 0.468336 0.895591 0.467749 0.894211 0.467377 0.894053 0.470321 0.892528 0.469525 0.89702 0.472125 0.906461 0.46806 0.901761 0.468217 0.901883 0.471147 0.906501 0.470456 0.912592 0.467918 0.912253 0.470089 0.920682 0.467923 0.920674 0.470154 0.9293 0.468129 0.929876 0.470181 0.93702 0.468441 0.938213 0.470896 0.942275 0.468514 0.942757 0.470744 0.890006 0.4495 0.852976 0.399065 0.859393 0.397599 0.847065 0.401675 0.84127 0.405026 0.953466 0.401386 0.958188 0.405089 0.947588 0.398916 0.961862 0.409747 0.964391 0.415022 0.965926 0.420729 0.967068 0.426923 0.967242 0.433135 0.966314 0.439008 0.964406 0.444378 0.961584 0.44912 0.958267 0.453722 0.954279 0.457569 0.865611 0.460368 0.870463 0.459645 0.869977 0.459728 0.865391 0.460791 0.875883 0.460032 0.875386 0.460071 0.889107 0.462568 0.889055 0.46259 0.836433 0.409343 0.829542 0.419704 0.832578 0.41403 0.832317 0.414141 0.82924 0.419624 0.86181 0.461905 0.861843 0.46256 0.95053 0.46075 0.946775 0.4634 0.943577 0.465237 0.941527 0.466697 0.893773 0.464335 0.893798 0.464342 0.894526 0.465626 0.894385 0.465571 0.940912 0.397604 0.893807 0.467247 0.893563 0.467166 0.891985 0.469369 0.891535 0.469419 0.940364 0.468392 0.940762 0.470517 0.866236 0.398834 0.873711 0.398813 0.877506 0.397514 0.870971 0.397493 0.865522 0.397455 0.860032 0.398872 0.856026 0.399014 0.861954 0.397568 0.860159 0.397664 0.853853 0.399094 0.935431 0.404681 0.948546 0.405179 0.944496 0.401457 0.931632 0.401375 0.939488 0.398861 0.927974 0.398901 0.870657 0.401504 0.861966 0.401526 0.855096 0.4016 0.850751 0.405417 0.858121 0.405363 0.867731 0.405188 0.850561 0.401575 0.848094 0.401586 0.842791 0.404957 0.845766 0.405198 0.9455 0.398818 0.951158 0.401375 0.955535 0.405156 0.94295 0.41441 0.9536 0.414936 0.951437 0.40979 0.938847 0.409148 0.863906 0.410047 0.854469 0.410101 0.8468 0.410021 0.843291 0.414792 0.850618 0.415218 0.858112 0.415702 0.958875 0.409842 0.961147 0.415077 0.9551 0.420509 0.945887 0.42022 0.947818 0.426423 0.955942 0.426574 0.962495 0.420748 0.963347 0.426902 0.947179 0.438896 0.955415 0.438781 0.95627 0.432802 0.948355 0.432791 0.963455 0.433109 0.96255 0.43901 0.93973 0.449457 0.950281 0.449152 0.953464 0.44429 0.944309 0.444589 0.960647 0.444424 0.957836 0.449233 0.928866 0.456683 0.941589 0.457208 0.946319 0.453375 0.933669 0.453285 0.954103 0.453514 0.949874 0.457416 0.877353 0.455968 0.882269 0.458025 0.892317 0.457757 0.890577 0.455047 0.886684 0.460112 0.89423 0.460211 0.902677 0.460467 0.90267 0.458019 0.902808 0.455334 0.869597 0.456984 0.865825 0.458435 0.871446 0.458982 0.8752 0.458466 0.877063 0.46 0.880928 0.46006 0.889224 0.462652 0.890358 0.462714 0.892541 0.462593 0.841603 0.409572 0.838159 0.409243 0.834209 0.413908 0.837981 0.414182 0.839885 0.419736 0.846514 0.420792 0.834481 0.428371 0.838869 0.430451 0.84343 0.433385 0.852102 0.422532 0.830666 0.418987 0.834732 0.419195 0.827717 0.426976 0.830662 0.427303 0.875777 0.450429 0.878346 0.448288 0.868619 0.446935 0.865577 0.448677 0.860982 0.459109 0.863516 0.455972 0.868771 0.453598 0.919955 0.462087 0.933215 0.46265 0.936971 0.460171 0.92452 0.45941 0.915797 0.455832 0.913434 0.458571 0.911682 0.460937 0.945768 0.460575 0.941689 0.463136 0.897291 0.462545 0.903757 0.462585 0.930828 0.464538 0.938505 0.464915 0.929084 0.466249 0.936418 0.466469 0.911714 0.462545 0.904992 0.464496 0.91226 0.464434 0.906001 0.466171 0.912549 0.466198 0.920438 0.466178 0.920682 0.464371 0.899694 0.464496 0.896238 0.464476 0.897673 0.46607 0.901142 0.46612 0.933851 0.397545 0.924135 0.397565 0.901567 0.397461 0.902111 0.398787 0.913998 0.398826 0.911927 0.397463 0.885568 0.398789 0.887707 0.397486 0.939027 0.397536 0.902897 0.401138 0.916139 0.401275 0.904075 0.404332 0.918631 0.404656 0.883077 0.401373 0.880245 0.404983 0.905419 0.428922 0.912942 0.429219 0.912006 0.425106 0.905474 0.425025 0.910791 0.422281 0.905844 0.421559 0.904305 0.436885 0.911907 0.438227 0.913047 0.433844 0.905052 0.432984 0.903203 0.443238 0.908124 0.443775 0.909903 0.441649 0.903445 0.440313 0.90285 0.452456 0.918742 0.45246 0.929033 0.449192 0.935553 0.444785 0.939489 0.439171 0.940895 0.433027 0.939916 0.426757 0.936762 0.420698 0.931211 0.415109 0.90461 0.407951 0.921344 0.40965 0.876099 0.410269 0.865754 0.416146 0.858856 0.422274 0.85408 0.42925 0.845714 0.439016 0.8487 0.443676 0.855252 0.440105 0.853622 0.434905 0.852614 0.447663 0.858958 0.44511 0.858176 0.451853 0.889824 0.45148 0.858947 0.427844 0.863033 0.422095 0.869857 0.416948 0.858451 0.439034 0.857612 0.433475 0.903128 0.410252 0.915613 0.4122 0.910336 0.415321 0.91773 0.418674 0.921258 0.417307 0.91279 0.413538 0.924944 0.416332 0.879341 0.412694 0.930972 0.4215 0.922517 0.423241 0.926792 0.422268 0.92506 0.428584 0.929895 0.42793 0.93442 0.427304 0.935453 0.433435 0.925801 0.434263 0.930838 0.433902 0.924243 0.439743 0.929152 0.439726 0.933786 0.439455 0.922618 0.448568 0.913071 0.450609 0.91472 0.447235 0.9073 0.44856 0.909883 0.449686 0.918464 0.448158 0.90106 0.450464 0.929479 0.444749 0.920523 0.44435 0.924927 0.444695 0.861743 0.443993 0.907779 0.418347 0.914012 0.420577 0.917709 0.42432 0.919641 0.429082 0.919962 0.434273 0.918588 0.43924 0.904848 0.446138 0.911088 0.445577 0.915514 0.4432 0.890897 0.408138 0.891059 0.410492 0.89188 0.404459 0.892481 0.401195 0.892744 0.398811 0.892774 0.397499 0.852987 0.39915 0.859402 0.397672 0.847027 0.401638 0.84144 0.40503 0.836758 0.409301 0.826856 0.427241 0.893304 0.464316 0.894343 0.465793 0.894093 0.464377 0.895401 0.465971 0.893628 0.467665 0.890751 0.471053 0.897653 0.467915 0.895086 0.467874 0.893376 0.47055 0.896513 0.470318 0.906138 0.467954 0.901291 0.467913 0.900442 0.470186 0.905385 0.470181 0.912382 0.468058 0.911527 0.470316 0.918635 0.470453 0.91977 0.468076 0.926488 0.470872 0.927835 0.468189 0.935282 0.468257 0.935209 0.471328 0.877915 0.500707 0.878197 0.500625 0.878935 0.505269 0.878376 0.50543 0.87849 0.500327 0.879515 0.504678 0.878776 0.499827 0.880077 0.503685 0.879041 0.499148 0.880596 0.502336 0.879273 0.498323 0.88105 0.500691 0.879461 0.49739 0.881414 0.498833 0.879595 0.496393 0.881685 0.496848 0.879673 0.495381 0.881831 0.494834 0.879688 0.4944 0.881855 0.492886 0.879641 0.493495 0.881754 0.491093 0.879517 0.492692 0.881496 0.489502 0.879256 0.49199 0.880966 0.488128 0.878724 0.491679 0.879976 0.487255 0.880441 0.487544 0.878985 0.491764 0.880259 0.509816 0.879427 0.510054 0.881118 0.508941 0.881951 0.507469 0.882719 0.50547 0.883385 0.503037 0.883918 0.500283 0.884295 0.497337 0.884501 0.494341 0.884524 0.491438 0.884373 0.488781 0.883999 0.486461 0.88321 0.484429 0.882394 0.483424 0.882124 0.514208 0.881033 0.51452 0.883251 0.513061 0.884343 0.511133 0.885349 0.508513 0.886222 0.505324 0.886921 0.501715 0.887414 0.497854 0.887677 0.493924 0.887702 0.490113 0.887496 0.486645 0.88698 0.48361 0.885938 0.48091 0.884878 0.479558 0.884506 0.51838 0.88317 0.518762 0.885883 0.516979 0.887217 0.514621 0.888447 0.511419 0.889514 0.507521 0.890369 0.503109 0.890971 0.49839 0.891293 0.493586 0.89132 0.488919 0.891054 0.484665 0.890395 0.481066 0.88919 0.477958 0.887817 0.476052 0.887367 0.522273 0.885807 0.522719 0.888975 0.520637 0.890533 0.517885 0.891968 0.514147 0.893214 0.509596 0.894212 0.504446 0.894915 0.498938 0.895291 0.493329 0.895322 0.487882 0.895 0.482915 0.894205 0.478779 0.892842 0.475169 0.891068 0.473073 0.890668 0.525829 0.888906 0.526332 0.892483 0.523982 0.894241 0.520876 0.895861 0.516656 0.897267 0.51152 0.898394 0.505707 0.899187 0.499489 0.899612 0.493158 0.899646 0.487009 0.899286 0.481354 0.898411 0.476638 0.894359 0.528996 0.892421 0.529549 0.896354 0.526965 0.898288 0.52355 0.900069 0.518911 0.901615 0.513263 0.902854 0.506872 0.903726 0.500036 0.904193 0.493075 0.904231 0.486314 0.903834 0.4801 0.902975 0.47504 0.898388 0.531728 0.896302 0.532323 0.900534 0.529543 0.902614 0.525869 0.904531 0.520877 0.906194 0.514801 0.907527 0.507925 0.908466 0.50057 0.908967 0.493081 0.909009 0.485806 0.908572 0.479151 0.907654 0.473824 0.902694 0.533986 0.900491 0.534614 0.90496 0.531679 0.907157 0.527799 0.909181 0.522528 0.910937 0.516111 0.912345 0.50885 0.913336 0.501084 0.913866 0.493175 0.913909 0.485494 0.91346 0.478418 0.912585 0.472851 0.907215 0.535736 0.904927 0.536388 0.909569 0.53334 0.91185 0.529311 0.913952 0.523838 0.915776 0.517175 0.917237 0.509635 0.918266 0.50157 0.918854 0.493342 0.918947 0.485357 0.91844 0.478006 0.91787 0.471971 0.914263 0.537286 0.911914 0.537955 0.916678 0.534827 0.919019 0.530693 0.921175 0.525076 0.923047 0.518239 0.924546 0.510502 0.925585 0.502224 0.926227 0.493754 0.926493 0.485583 0.925762 0.478045 0.924764 0.471485 0.921403 0.537724 0.919062 0.538392 0.92381 0.535275 0.926142 0.531156 0.930338 0.525761 0.93162 0.519674 0.933283 0.512932 0.932692 0.502839 0.933977 0.494768 0.934333 0.486371 0.933206 0.478784 0.931863 0.472204 0.92611 0.537268 0.92382 0.53792 0.928464 0.534872 0.932388 0.530343 0.937335 0.506755 0.941235 0.498334 0.941521 0.487989 0.940371 0.480184 0.938481 0.473907 0.930691 0.536256 0.928485 0.536884 0.934789 0.533043 0.935078 0.534703 0.932989 0.535298 0.938368 0.532576 0.947164 0.489068 0.947066 0.497764 0.946239 0.481893 0.944283 0.476284 0.939209 0.532632 0.937267 0.533185 0.941919 0.530982 0.950689 0.490156 0.950271 0.497772 0.95034 0.48345 0.948203 0.478162 0.943023 0.530074 0.941256 0.530577 0.945589 0.528338 0.95349 0.491089 0.952472 0.498024 0.953154 0.485389 0.951415 0.480527 0.946464 0.527065 0.944898 0.52751 0.948879 0.525086 0.955336 0.498108 0.955494 0.49227 0.955142 0.488211 0.954263 0.484425 0.949389 0.475505 0.954052 0.482326 0.94757 0.475109 0.945693 0.473082 0.943613 0.471998 0.950577 0.521636 0.949187 0.522238 0.951775 0.520708 0.950886 0.519379 0.952605 0.518141 0.95447 0.515316 0.952742 0.516616 0.878125 0.495997 0.943537 0.514246 0.944979 0.511457 0.945299 0.511731 0.944004 0.514141 0.946866 0.510467 0.945612 0.512005 0.946775 0.509925 0.944125 0.524447 0.943125 0.523168 0.943363 0.52176 0.944265 0.522893 0.943213 0.51865 0.9436 0.520352 0.942839 0.519741 0.942465 0.520831 0.942508 0.517563 0.943036 0.516979 0.944472 0.514036 0.943564 0.516394 0.946664 0.509365 0.948503 0.507957 0.948316 0.508687 0.949207 0.508705 0.948096 0.509397 0.949608 0.50791 0.950009 0.507096 0.951195 0.506751 0.950679 0.507606 0.951005 0.508659 0.950161 0.508443 0.951647 0.507843 0.952323 0.510866 0.951744 0.509448 0.952587 0.5089 0.953318 0.510638 0.952296 0.507042 0.953444 0.508317 0.954198 0.510416 0.954069 0.512878 0.953344 0.512779 0.95222 0.51488 0.952538 0.512757 0.952777 0.515115 0.953314 0.515413 0.952001 0.51802 0.951641 0.517475 0.949848 0.518868 0.951263 0.516984 0.950071 0.519673 0.950291 0.520481 0.948367 0.522605 0.94826 0.52146 0.946642 0.521256 0.948152 0.520315 0.946704 0.522693 0.946766 0.524131 0.94537 0.524785 0.945389 0.52319 0.944404 0.521338 0.945409 0.521595 0.948517 0.508521 0.947425 0.509189 0.946164 0.510225 0.943731 0.513771 0.942852 0.515989 0.942484 0.51808 0.944874 0.511783 0.950283 0.508511 0.949456 0.508269 0.942699 0.51973 0.943487 0.520694 0.951552 0.510694 0.95099 0.509314 0.944633 0.521012 0.946034 0.520645 0.951461 0.514432 0.951791 0.512457 0.947604 0.519694 0.949207 0.518265 0.95053 0.516413 0.954352 0.507334 0.955064 0.51004 0.953029 0.50566 0.954691 0.513093 0.953563 0.516187 0.942931 0.511155 0.945738 0.50837 0.941124 0.514785 0.948237 0.525023 0.946042 0.527051 0.950358 0.522206 0.940778 0.525984 0.939919 0.523165 0.942236 0.527579 0.940031 0.519157 0.94836 0.506655 0.95038 0.505668 0.951792 0.505283 0.952106 0.519194 0.94408 0.527997 0.955136 0.505085 0.955458 0.508799 0.953996 0.503048 0.954947 0.51289 0.953571 0.516724 0.940392 0.509704 0.943959 0.505926 0.937487 0.514053 0.946965 0.527152 0.943743 0.529685 0.949863 0.52392 0.936263 0.528363 0.934831 0.524989 0.938515 0.530358 0.93544 0.520327 0.947235 0.504116 0.949823 0.503295 0.952034 0.502955 0.951882 0.52041 0.941028 0.53079 0.956255 0.501869 0.956376 0.507194 0.955436 0.512282 0.95378 0.516679 0.954272 0.512902 0.953969 0.514386 0.955477 0.513065 0.955509 0.511632 0.956562 0.510151 0.957541 0.50583 0.957528 0.506237 0.957401 0.500104 0.957323 0.498901 0.956684 0.496896 0.956413 0.492938 0.956425 0.492794 0.955922 0.48933 0.955605 0.489791 0.952251 0.480529 0.95403 0.483685 0.955302 0.484788 0.955335 0.486204 0.955539 0.486154 0.954877 0.485325 0.956687 0.508947 0.956754 0.495687 0.955045 0.487387 0.877848 0.505182 0.877652 0.500582 0.87737 0.504506 0.877412 0.500243 0.876974 0.503437 0.877218 0.499703 0.87668 0.502023 0.877063 0.498994 0.876501 0.50033 0.876979 0.498142 0.876446 0.498438 0.87696 0.497191 0.876522 0.496436 0.877006 0.496186 0.876728 0.49442 0.877115 0.495174 0.877054 0.492488 0.877281 0.494204 0.877479 0.49073 0.877498 0.49332 0.877999 0.489197 0.877767 0.492546 0.878719 0.487808 0.878144 0.491879 0.879235 0.487423 0.878402 0.491725 0.878643 0.509686 0.877934 0.508686 0.877348 0.507101 0.876912 0.505005 0.876647 0.502497 0.876565 0.499694 0.876669 0.496727 0.876956 0.493734 0.877416 0.490859 0.878045 0.488251 0.878803 0.485988 0.879891 0.48389 0.880652 0.483253 0.880004 0.514038 0.879075 0.512727 0.878307 0.510649 0.877736 0.507903 0.877388 0.504616 0.87728 0.500942 0.877417 0.497054 0.877793 0.493132 0.878389 0.48936 0.879214 0.485947 0.880199 0.482989 0.881623 0.480314 0.882641 0.479405 0.881911 0.518172 0.880775 0.516569 0.879836 0.51403 0.879138 0.510673 0.878713 0.506655 0.878582 0.502165 0.878749 0.497412 0.879208 0.492618 0.879955 0.488021 0.881001 0.483899 0.88231 0.480367 0.883909 0.47731 0.885135 0.475926 0.884336 0.52203 0.883011 0.520159 0.881915 0.517195 0.8811 0.513276 0.880604 0.508586 0.88045 0.503344 0.880646 0.497795 0.881181 0.492199 0.882059 0.48684 0.883257 0.482017 0.884772 0.477872 0.886828 0.474331 0.888116 0.472377 0.887245 0.525554 0.885749 0.523442 0.884512 0.520096 0.883592 0.515673 0.883032 0.510379 0.882858 0.504462 0.883079 0.498199 0.883683 0.491882 0.884656 0.485819 0.885976 0.480334 0.887771 0.475644 0.888962 0.472096 0.890594 0.528694 0.888949 0.526372 0.887589 0.522693 0.886578 0.51783 0.885962 0.512009 0.885771 0.505504 0.886014 0.498617 0.886678 0.491672 0.887734 0.484992 0.889161 0.478945 0.891005 0.474124 0.894335 0.531403 0.892565 0.528905 0.891102 0.524947 0.890014 0.519714 0.889351 0.513452 0.889146 0.506453 0.889407 0.499043 0.890122 0.491571 0.891258 0.484384 0.892815 0.477978 0.894695 0.473363 0.898413 0.533643 0.896544 0.531004 0.894999 0.526825 0.89385 0.5213 0.893151 0.514687 0.892934 0.507295 0.893209 0.499472 0.893965 0.491581 0.895164 0.483992 0.89686 0.477387 0.898865 0.473076 0.902769 0.53538 0.900829 0.53264 0.899224 0.5283 0.898031 0.522562 0.897305 0.515695 0.897079 0.50802 0.897366 0.499895 0.89815 0.491701 0.899396 0.483821 0.901449 0.477074 0.903819 0.472976 0.909699 0.53692 0.907707 0.534109 0.906061 0.529655 0.904836 0.523767 0.904091 0.516721 0.90386 0.508844 0.904153 0.500507 0.904958 0.492099 0.906237 0.484012 0.908008 0.477129 0.910034 0.473198 0.916854 0.53736 0.91487 0.534559 0.91323 0.530122 0.914164 0.524465 0.913164 0.518196 0.913437 0.51134 0.91133 0.50108 0.912131 0.492703 0.913405 0.484646 0.91513 0.47783 0.916994 0.473623 0.92166 0.536911 0.919719 0.534172 0.91917 0.529284 0.917172 0.505296 0.919838 0.496406 0.920904 0.486229 0.92238 0.479225 0.924263 0.474614 0.926405 0.535913 0.924828 0.532245 0.931019 0.534378 0.929686 0.53188 0.92797 0.487724 0.927599 0.495894 0.929366 0.480734 0.931925 0.475167 0.935435 0.53233 0.934387 0.530379 0.933232 0.488977 0.932764 0.496065 0.934736 0.482159 0.937602 0.476887 0.93959 0.529799 0.938848 0.527798 0.937731 0.490249 0.936964 0.496523 0.939215 0.484123 0.942421 0.479379 0.943421 0.526821 0.942722 0.524593 0.94207 0.497013 0.942329 0.491435 0.943599 0.487511 0.946933 0.482758 0.949756 0.480976 0.945342 0.476815 0.940652 0.473783 0.947564 0.521395 0.9466 0.520277 0.951324 0.514898 0.949518 0.517928 0.928377 0.510114 0.926885 0.51291 0.927854 0.512845 0.929178 0.51043 0.92998 0.510746 0.931406 0.509225 0.930823 0.508639 0.92835 0.521984 0.930534 0.523359 0.930891 0.521821 0.928964 0.520607 0.929579 0.519229 0.928441 0.517467 0.927597 0.51852 0.926179 0.516255 0.926753 0.519573 0.927195 0.51571 0.928211 0.515165 0.928823 0.512781 0.932374 0.506682 0.930239 0.508053 0.932657 0.507439 0.93294 0.508196 0.934517 0.507536 0.93451 0.506707 0.936567 0.505592 0.934502 0.505878 0.936317 0.506456 0.936067 0.50732 0.937546 0.507578 0.93807 0.506748 0.938901 0.508422 0.940036 0.50988 0.941088 0.509726 0.939772 0.507879 0.940713 0.507314 0.938594 0.505926 0.942911 0.511998 0.942269 0.509491 0.941755 0.511888 0.940774 0.511818 0.940867 0.513981 0.941724 0.514237 0.941696 0.517149 0.942674 0.514592 0.940898 0.516619 0.940099 0.51609 0.938667 0.517973 0.939267 0.518807 0.937547 0.521739 0.939868 0.519641 0.937153 0.52057 0.936759 0.519402 0.934851 0.520311 0.935057 0.52176 0.932933 0.523788 0.935263 0.523209 0.932985 0.522196 0.933038 0.520604 0.931248 0.520284 0.932573 0.508007 0.934161 0.507367 0.930964 0.509008 0.927841 0.514787 0.928411 0.512543 0.928106 0.516928 0.929515 0.510546 0.935671 0.507169 0.937081 0.507438 0.929093 0.51864 0.93071 0.519671 0.938351 0.508298 0.9394 0.509723 0.932552 0.520045 0.934434 0.519715 0.940079 0.511519 0.940113 0.513519 0.936336 0.518792 0.938116 0.517377 0.939405 0.515521 0.943638 0.508965 0.941943 0.506311 0.939071 0.504531 0.94388 0.51543 0.944335 0.512165 0.927944 0.506963 0.925069 0.509715 0.923231 0.513349 0.935271 0.526189 0.938229 0.524222 0.940839 0.521447 0.923484 0.521848 0.925731 0.524779 0.928789 0.526502 0.922597 0.517761 0.93396 0.504385 0.931029 0.505302 0.936534 0.504088 0.942769 0.518413 0.932116 0.527039 0.945351 0.507568 0.943089 0.503744 0.939896 0.502018 0.945354 0.516015 0.946118 0.511811 0.925289 0.504712 0.920962 0.50815 0.918385 0.51252 0.934537 0.528948 0.938552 0.526478 0.941809 0.523283 0.918305 0.523665 0.921702 0.527196 0.925959 0.529352 0.917212 0.518867 0.933078 0.501722 0.929349 0.502508 0.936447 0.501609 0.943896 0.519878 0.930309 0.529931 0.948005 0.505607 0.944871 0.499392 0.947806 0.516062 0.9491 0.511191 0.953215 0.511264 0.952698 0.512701 0.951135 0.50884 0.950868 0.504414 0.946032 0.497811 0.946155 0.49879 0.9504 0.504692 0.944108 0.496015 0.944681 0.492183 0.945966 0.489086 0.945497 0.488606 0.944291 0.491984 0.951345 0.48426 0.948386 0.485293 0.952907 0.485943 0.952013 0.507755 0.944606 0.494766 0.94856 0.486751 0.889967 0.448966 0.879572 0.4873 0.878531 0.491695 0.881189 0.483034 0.883359 0.479059 0.88597 0.475436 0.826451 0.427416 0.889758 0.472115 0.881748 0.482959 0.884054 0.478968 0.886811 0.475429 0.942835 0.472365 0.877975 0.397658 0.883515 0.397651 0.873951 0.397664 0.870831 0.397671 0.867889 0.397674 0.918562 0.397639 0.925482 0.397634 0.901603 0.397646 0.909465 0.397642 0.891034 0.397645 0.929288 0.397637 0.894812 0.397645 0.931273 0.397662 0.86549 0.397668 0.931235 0.397655 0.882529 0.39765 0.877003 0.397658 0.871595 0.397671 0.868659 0.397671 0.868707 0.397667 0.925845 0.397644 0.918784 0.397657 0.909614 0.397666 0.901249 0.39767 0.890498 0.397656 0.92961 0.397643 0.894099 0.397656 0.867711 0.397671 0.900103 0.397679 0.595916 0.679782 0.593633 0.724091 0.587548 0.772055 0.579229 0.819401 0.570764 0.860428 0.56898 0.893979 0.055194 0.327681 0.056512 0.244825 0.056323 0.176259 0.056343 0.11532 0.057144 0.041836 0.468306 0.320445 0.459246 0.232082 0.470583 0.402538 0.456894 0.171519 0.044392 0.51728 0.04804 0.442488 0.039555 0.560029 0.472222 0.467543 0.655545 0.572596 0.685594 0.967391 0.590033 0.92387 0.595756 0.680499 0.590769 0.76975 0.682275 0.551691 0.647404 0.965201 0.571758 0.851938 0.600135 0.64164 0.623018 0.605621 0.617347 0.944413 0.720327 0.535205</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2277\" source=\"#LOD3spShape-lib-map1-array\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"LOD3spShape-lib-vertices\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#LOD3spShape-lib-positions\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"blinn3SG\" count=\"4212\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">89 0 23 243 1 26 6 3 29 6 3 29 243 1 26 90 2 28 243 1 26 89 0 23 91 4 30 91 4 30 89 0 23 5 5 31 92 6 33 244 7 35 5 5 31 5 5 31 244 7 35 91 4 30 244 7 35 92 6 33 299 8 36 299 8 36 92 6 33 218 9 37 95 11 41 93 12 42 7 10 39 7 10 39 93 12 42 8 13 57 93 12 42 95 11 41 9 15 62 9 15 62 95 11 41 94 14 61 245 17 66 89 0 23 96 16 65 96 16 65 89 0 23 6 3 29 89 0 23 245 17 66 5 5 31 5 5 31 245 17 66 97 18 67 245 17 66 98 19 68 97 18 67 97 18 67 98 19 68 11 20 69 98 19 68 245 17 66 10 21 70 10 21 70 245 17 66 96 16 65 246 22 71 92 6 33 97 18 67 97 18 67 92 6 33 5 5 31 92 6 33 246 22 71 218 9 37 218 9 37 246 22 71 300 23 72 246 22 71 99 24 84 300 23 72 300 23 72 99 24 84 219 25 85 99 24 84 246 22 71 11 20 69 11 20 69 246 22 71 97 18 67 247 27 89 93 12 42 12 26 86 12 26 86 93 12 42 9 15 62 93 12 42 247 27 89 8 13 57 8 13 57 247 27 89 100 28 90 102 30 137 101 31 138 13 29 135 13 29 135 101 31 138 14 32 139 101 31 138 102 30 137 8 13 57 8 13 57 102 30 137 7 10 39 248 34 141 98 19 68 103 33 140 103 33 140 98 19 68 10 21 70 98 19 68 248 34 141 11 20 69 11 20 69 248 34 141 104 35 142 248 34 141 105 36 200 104 35 142 104 35 142 105 36 200 16 37 246 105 36 200 248 34 141 15 38 249 15 38 249 248 34 141 103 33 140 107 39 252 101 31 138 100 28 90 100 28 90 101 31 138 8 13 57 101 31 138 107 39 252 14 32 139 14 32 139 107 39 252 106 40 253 108 41 254 109 42 256 14 32 139 14 32 139 109 42 256 13 29 135 109 42 256 108 41 254 18 43 259 18 43 259 108 41 254 17 44 260 111 45 262 108 41 254 106 40 253 106 40 253 108 41 254 14 32 139 108 41 254 111 45 262 17 44 260 17 44 260 111 45 262 110 46 265 20 47 266 112 48 283 19 50 286 19 50 286 112 48 283 113 49 285 113 49 285 112 48 283 17 44 260 17 44 260 112 48 283 18 43 259 115 51 289 113 49 285 110 46 265 110 46 265 113 49 285 17 44 260 115 51 289 114 52 290 113 49 285 113 49 285 114 52 290 19 50 286 22 53 291 116 54 292 21 56 294 21 56 294 116 54 292 117 55 293 116 54 292 20 47 266 117 55 293 117 55 293 20 47 266 19 50 286 114 52 290 119 57 295 19 50 286 19 50 286 119 57 295 117 55 293 119 57 295 118 58 296 117 55 293 117 55 293 118 58 296 21 56 294 23 59 297 249 60 298 24 62 303 24 62 303 249 60 298 120 61 300 249 60 298 22 53 291 120 61 300 120 61 300 22 53 291 21 56 294 118 58 296 122 63 304 21 56 294 21 56 294 122 63 304 120 61 300 122 63 304 121 64 884 120 61 300 120 61 300 121 64 884 24 62 303 26 65 885 339 66 886 123 68 888 123 68 888 339 66 886 340 67 887 123 68 888 340 67 887 28 70 890 28 70 890 340 67 887 341 69 889 340 67 887 124 71 891 341 69 889 341 69 889 124 71 891 27 72 892 124 71 891 340 67 887 25 73 893 25 73 893 340 67 887 339 66 886 250 75 895 307 76 896 125 74 894 125 74 894 307 76 896 29 77 897 307 76 896 250 75 895 227 79 899 227 79 899 250 75 895 126 78 898 250 75 895 123 68 888 126 78 898 126 78 898 123 68 888 28 70 890 123 68 888 250 75 895 26 65 885 26 65 885 250 75 895 125 74 894 126 78 898 127 80 900 227 79 899 227 79 899 127 80 900 45 81 901 126 78 898 28 70 890 127 80 900 127 80 900 28 70 890 30 82 902 128 83 0 251 84 1 31 86 3 31 86 3 251 84 1 308 85 2 308 85 74 251 84 75 228 88 77 228 88 77 251 84 75 129 87 76 251 84 75 130 89 78 129 87 76 129 87 76 130 89 78 33 90 79 251 84 1 128 83 0 130 89 4 130 89 4 128 83 0 32 91 12 131 92 13 252 93 14 34 95 16 34 95 16 252 93 14 309 94 15 252 93 14 128 83 0 309 94 15 309 94 15 128 83 0 31 86 3 128 83 0 252 93 14 32 91 12 32 91 12 252 93 14 132 96 17 252 93 14 131 92 13 132 96 17 132 96 17 131 92 13 35 97 18 133 98 82 253 99 83 35 97 18 35 97 18 253 99 83 132 96 17 253 99 83 134 100 91 132 96 17 132 96 17 134 100 91 32 91 12 134 100 91 253 99 83 36 102 93 36 102 93 253 99 83 156 101 92 253 99 83 133 98 82 156 101 92 156 101 92 133 98 82 38 103 94 135 104 96 254 105 97 39 107 101 39 107 101 254 105 97 136 106 98 136 106 98 254 105 97 37 109 105 37 109 105 254 105 97 137 108 102 254 105 97 133 98 82 137 108 102 137 108 102 133 98 82 35 97 18 254 105 97 135 104 96 133 98 82 133 98 82 135 104 96 38 103 94 255 110 903 99 24 84 104 35 142 104 35 142 99 24 84 11 20 69 99 24 84 255 110 903 219 25 85 219 25 85 255 110 903 310 111 904 255 110 903 138 112 905 310 111 904 310 111 904 138 112 905 1978 113 906 138 112 905 255 110 903 16 37 246 16 37 246 255 110 903 104 35 142 204 114 5 285 115 6 59 117 8 59 117 8 285 115 6 139 116 7 285 115 6 203 118 9 139 116 7 139 116 7 203 118 9 57 119 10 105 36 200 256 120 907 16 37 246 16 37 246 256 120 907 140 121 908 256 120 907 135 104 909 140 121 908 140 121 908 135 104 909 39 107 910 135 104 909 256 120 907 38 103 912 38 103 912 256 120 907 141 122 911 256 120 907 105 36 200 141 122 911 141 122 911 105 36 200 15 38 249 138 112 905 257 123 913 1978 113 906 1978 113 906 257 123 913 142 124 914 257 123 913 154 125 915 142 124 914 142 124 914 154 125 915 229 126 916 154 125 915 257 123 913 39 107 910 39 107 910 257 123 913 140 121 908 257 123 913 138 112 905 140 121 908 140 121 908 138 112 905 16 37 246 284 128 19 202 129 20 143 127 11 143 127 11 202 129 20 60 130 21 203 118 9 284 128 19 57 119 10 57 119 10 284 128 19 143 127 11 56 132 918 2065 133 919 144 131 917 144 131 917 2065 133 919 2066 134 920 311 135 921 258 136 922 29 77 897 29 77 897 258 136 922 125 74 894 258 136 922 145 137 923 125 74 894 125 74 894 145 137 923 26 65 885 145 137 80 258 136 81 40 139 99 40 139 99 258 136 81 146 138 95 258 136 81 311 135 100 146 138 95 146 138 95 311 135 100 41 140 103 43 141 924 147 142 925 42 144 927 42 144 927 147 142 925 148 143 926 147 142 925 23 59 297 148 143 926 148 143 926 23 59 297 24 62 303 149 145 928 259 146 929 25 73 893 25 73 893 259 146 929 124 71 891 259 146 929 150 147 976 124 71 891 124 71 891 150 147 976 27 72 892 150 147 976 259 146 929 43 141 924 43 141 924 259 146 929 147 142 925 259 146 929 149 145 928 147 142 925 147 142 925 149 145 928 23 59 297 121 64 884 152 148 978 24 62 303 24 62 303 152 148 978 148 143 926 152 148 978 151 149 980 148 143 926 148 143 926 151 149 980 42 144 927 231 150 981 30 82 902 341 69 889 341 69 889 30 82 902 28 70 890 341 69 889 27 72 892 231 150 981 231 150 981 27 72 892 44 151 982 153 152 104 260 153 106 33 90 79 33 90 79 260 153 106 129 87 76 260 153 106 312 154 107 129 87 76 129 87 76 312 154 107 228 88 77 312 154 107 260 153 106 41 140 103 41 140 103 260 153 106 146 138 95 260 153 106 153 152 104 146 138 95 146 138 95 153 152 104 40 139 99 154 125 110 261 155 111 229 126 113 229 126 113 261 155 111 313 156 112 261 155 111 155 157 114 313 156 112 313 156 112 155 157 114 230 158 115 155 157 114 261 155 111 37 109 105 37 109 105 261 155 111 136 106 98 261 155 111 154 125 110 136 106 98 136 106 98 154 125 110 39 107 101 262 159 108 181 160 109 153 152 104 153 152 104 181 160 109 40 139 99 181 160 116 262 159 117 36 102 93 36 102 93 262 159 117 134 100 91 262 159 117 130 89 4 134 100 91 134 100 91 130 89 4 32 91 12 130 89 78 262 159 108 33 90 79 33 90 79 262 159 108 153 152 104 137 108 102 263 161 118 37 109 105 37 109 105 263 161 118 155 157 114 155 157 114 263 161 118 230 158 115 230 158 115 263 161 118 314 162 119 263 161 118 131 92 13 314 162 119 314 162 119 131 92 13 34 95 16 131 92 13 263 161 118 35 97 18 35 97 18 263 161 118 137 108 102 151 149 980 241 163 983 42 144 927 42 144 927 241 163 983 157 164 985 241 163 983 242 165 987 157 164 985 157 164 985 242 165 987 83 166 1012 264 168 1016 160 169 1017 159 167 1013 159 167 1013 160 169 1017 44 151 982 160 169 1017 264 168 1016 81 171 1019 81 171 1019 264 168 1016 239 170 1018 264 168 1016 238 172 1020 239 170 1018 239 170 1018 238 172 1020 82 173 1023 238 172 1020 264 168 1016 43 141 924 43 141 924 264 168 1016 159 167 1013 82 173 1023 238 172 1020 83 166 1012 83 166 1012 238 172 1020 157 164 985 157 164 985 238 172 1020 42 144 927 42 144 927 238 172 1020 43 141 924 160 169 1017 265 174 1036 44 151 982 44 151 982 265 174 1036 231 150 981 265 174 1036 232 175 1038 231 150 981 231 150 981 232 175 1038 30 82 902 232 175 1038 265 174 1036 80 177 1040 80 177 1040 265 174 1036 237 176 1039 265 174 1036 160 169 1017 237 176 1039 237 176 1039 160 169 1017 81 171 1019 163 178 1041 164 179 1042 94 14 61 94 14 61 164 179 1042 9 15 62 165 180 1043 266 181 1045 46 183 1047 46 183 1047 266 181 1045 166 182 1046 266 181 1045 163 178 1041 166 182 1046 166 182 1046 163 178 1041 94 14 61 288 184 1048 207 185 1049 90 2 28 90 2 28 207 185 1049 6 3 29 164 179 1042 167 186 1050 9 15 62 9 15 62 167 186 1050 12 26 86 267 187 1051 168 188 1052 166 182 1046 166 182 1046 168 188 1052 46 183 1047 168 188 1052 267 187 1051 47 190 1054 47 190 1054 267 187 1051 169 189 1053 267 187 1051 95 11 41 169 189 1053 169 189 1053 95 11 41 7 10 39 95 11 41 267 187 1051 94 14 61 94 14 61 267 187 1051 166 182 1046 207 185 1049 287 191 1055 6 3 29 6 3 29 287 191 1055 96 16 65 287 191 1055 206 192 1056 96 16 65 96 16 65 206 192 1056 10 21 70 170 193 22 268 194 2246 63 196 25 63 196 25 268 194 2246 171 195 24 268 194 2246 172 197 2247 171 195 24 171 195 24 172 197 2247 58 198 27 268 194 1058 173 199 1059 172 197 1057 172 197 1057 173 199 1059 64 200 1060 173 199 1059 268 194 1058 62 201 1062 62 201 1062 268 194 1058 170 193 1061 172 197 2247 269 202 2248 58 198 27 58 198 27 269 202 2248 174 203 32 174 203 32 269 202 2248 61 205 34 61 205 34 269 202 2248 175 204 2249 175 204 1063 269 202 1064 65 207 1066 65 207 1066 269 202 1064 176 206 1065 269 202 1064 172 197 1057 176 206 1065 176 206 1065 172 197 1057 64 200 1060 270 208 2250 177 209 38 175 204 2249 175 204 2249 177 209 38 61 205 34 177 209 38 270 208 2250 66 211 40 66 211 40 270 208 2250 178 210 2251 178 210 1067 270 208 1068 67 213 1070 67 213 1070 270 208 1068 179 212 1069 270 208 1068 175 204 1063 179 212 1069 179 212 1069 175 204 1063 65 207 1066 271 215 1072 149 145 928 180 214 1071 180 214 1071 149 145 928 25 73 893 149 145 928 271 215 1072 23 59 297 23 59 297 271 215 1072 249 60 298 271 215 1072 48 216 1073 249 60 298 249 60 298 48 216 1073 22 53 291 150 147 976 159 167 1013 27 72 892 27 72 892 159 167 1013 44 151 982 159 167 1013 150 147 976 43 141 924 48 216 1073 272 217 1074 22 53 291 22 53 291 272 217 1074 116 54 292 272 217 1074 49 218 1075 116 54 292 116 54 292 49 218 1075 20 47 266 49 218 1075 273 219 1076 20 47 266 20 47 266 273 219 1076 112 48 283 112 48 283 273 219 1076 18 43 259 18 43 259 273 219 1076 50 220 1077 274 221 1078 109 42 256 50 220 1077 50 220 1077 109 42 256 18 43 259 109 42 256 274 221 1078 13 29 135 13 29 135 274 221 1078 51 222 1079 275 223 1080 52 224 1081 169 189 1053 169 189 1053 52 224 1081 47 190 1054 275 223 1080 102 30 137 51 222 1079 51 222 1079 102 30 137 13 29 135 102 30 137 275 223 1080 7 10 39 7 10 39 275 223 1080 169 189 1053 206 192 1056 286 225 1082 10 21 70 10 21 70 286 225 1082 103 33 140 286 225 1082 53 226 1083 103 33 140 103 33 140 53 226 1083 15 38 249 53 226 1083 276 227 1084 15 38 249 15 38 249 276 227 1084 141 122 911 276 227 1084 54 228 1085 141 122 911 141 122 911 54 228 1085 38 103 912 277 229 1087 55 230 1088 156 101 1086 156 101 1086 55 230 1088 36 102 1089 54 228 1085 277 229 1087 38 103 912 38 103 912 277 229 1087 156 101 1086 182 231 1090 181 160 1091 55 230 1088 55 230 1088 181 160 1091 36 102 1089 181 160 1091 182 231 1090 40 139 1092 40 139 1092 182 231 1090 56 132 918 283 232 43 183 233 44 202 129 20 202 129 20 183 233 44 60 130 21 201 234 45 68 235 46 283 232 43 283 232 43 68 235 46 183 233 44 144 131 917 145 137 923 56 132 918 56 132 918 145 137 923 40 139 1092 321 236 1093 339 66 886 144 131 917 339 66 886 26 65 885 144 131 917 144 131 917 26 65 885 145 137 923 2069 237 1094 2070 238 1095 276 227 1084 276 227 1084 2070 238 1095 54 228 1085 290 239 47 208 240 48 278 242 50 278 242 50 208 240 48 184 241 49 210 243 51 290 239 47 185 244 52 185 244 52 290 239 47 278 242 50 2068 245 1096 2069 237 1094 53 226 1083 53 226 1083 2069 237 1094 276 227 1084 2071 246 1097 2073 247 1098 277 229 1087 277 229 1087 2073 247 1098 55 230 1088 289 248 53 209 249 54 279 251 56 279 251 56 209 249 54 186 250 55 208 240 48 289 248 53 184 241 49 184 241 49 289 248 53 279 251 56 2070 238 1095 2071 246 1097 54 228 1085 54 228 1085 2071 246 1097 277 229 1087 275 223 1080 2075 252 1099 52 224 1081 52 224 1081 2075 252 1099 2076 253 1100 212 255 58 2053 256 59 294 254 2265 294 254 2265 2053 256 59 280 257 60 294 254 1102 280 257 1103 214 258 1101 214 258 1101 280 257 1103 187 259 1104 2075 252 1099 275 223 1080 2074 260 1105 2074 260 1105 275 223 1080 51 222 1079 2072 261 1106 2068 245 1096 286 225 1082 286 225 1082 2068 245 1096 53 226 1083 292 262 63 210 243 51 2052 263 64 2052 263 64 210 243 51 185 244 52 274 221 1078 2078 264 1107 51 222 1079 51 222 1079 2078 264 1107 2074 260 1105 214 258 1101 187 259 1104 293 265 1108 293 265 1108 187 259 1104 2055 266 1109 293 265 1108 2055 266 1109 213 267 1110 213 267 1110 2055 266 1109 188 268 1111 2078 264 1107 274 221 1078 2079 269 1112 2079 269 1112 274 221 1078 50 220 1077 273 219 1076 2080 270 1113 50 220 1077 50 220 1077 2080 270 1113 2079 269 1112 213 267 1110 188 268 1111 295 271 1114 295 271 1114 188 268 1111 2056 272 1115 215 273 1116 295 271 1114 189 274 1117 189 274 1117 295 271 1114 2056 272 1115 2081 275 1118 2080 270 1113 49 218 1075 49 218 1075 2080 270 1113 273 219 1076 2084 276 1119 2085 277 1120 271 215 1072 271 215 1072 2085 277 1120 48 216 1073 297 278 1121 216 279 1122 281 281 1124 281 281 1124 216 279 1122 190 280 1123 217 282 87 297 278 73 191 283 88 191 283 88 297 278 73 281 281 2271 2083 284 1125 2084 276 1119 180 214 1071 180 214 1071 2084 276 1119 271 215 1072 2082 285 1126 2081 275 1118 272 217 1074 272 217 1074 2081 275 1118 49 218 1075 296 286 1127 215 273 1116 2057 287 1128 2057 287 1128 215 273 1116 189 274 1117 216 279 1122 296 286 1127 190 280 1123 190 280 1123 296 286 1127 2057 287 1128 2085 277 1120 2082 285 1126 48 216 1073 48 216 1073 2082 285 1126 272 217 1074 182 231 1090 2064 288 1129 56 132 918 56 132 918 2064 288 1129 2065 133 919 211 290 121 2051 291 122 291 289 120 291 289 120 2051 291 122 2050 292 123 291 289 120 2050 292 123 209 249 54 209 249 54 2050 292 123 186 250 55 2064 288 1129 182 231 1090 2073 247 1098 2073 247 1098 182 231 1090 55 230 1088 298 293 124 282 294 125 211 290 121 211 290 121 282 294 125 2051 291 122 323 295 126 322 296 127 298 293 124 298 293 124 322 296 127 282 294 125 70 297 128 192 298 129 57 119 10 57 119 10 192 298 129 139 116 7 59 117 8 139 116 7 71 299 130 71 299 130 139 116 7 192 298 129 69 300 131 193 301 132 60 130 21 60 130 21 193 301 132 143 127 11 57 119 10 143 127 11 70 297 128 70 297 128 143 127 11 193 301 132 194 303 134 170 193 22 73 302 133 73 302 133 170 193 22 63 196 25 170 193 1061 194 303 1130 62 201 1062 62 201 1062 194 303 1130 74 304 1131 71 299 130 205 305 136 59 117 8 59 117 8 205 305 136 204 114 5 62 201 1062 74 304 1131 173 199 1059 173 199 1059 74 304 1131 195 306 1132 173 199 1059 195 306 1132 64 200 1060 64 200 1060 195 306 1132 75 307 1133 64 200 1060 75 307 1133 176 206 1065 176 206 1065 75 307 1133 196 308 1134 65 207 1066 176 206 1065 76 309 1135 76 309 1135 176 206 1065 196 308 1134 77 310 1136 197 311 1137 67 213 1070 67 213 1070 197 311 1137 178 210 1067 66 211 40 178 210 2251 78 312 143 78 312 143 178 210 2251 197 311 2267 76 309 1135 198 313 1138 65 207 1066 65 207 1066 198 313 1138 179 212 1069 67 213 1070 179 212 1069 77 310 1136 77 310 1136 179 212 1069 198 313 1138 199 315 202 183 233 44 72 314 201 72 314 201 183 233 44 68 235 46 69 300 131 60 130 21 199 315 202 199 315 202 60 130 21 183 233 44 72 314 201 68 235 46 200 316 203 200 316 203 68 235 46 201 234 45 200 316 203 201 234 45 338 317 204 338 317 204 201 234 45 337 318 205 337 318 205 66 211 40 338 317 204 338 317 204 66 211 40 78 312 143 283 232 43 336 319 206 201 234 45 201 234 45 336 319 206 337 318 205 177 209 38 336 319 206 61 205 34 61 205 34 336 319 206 335 320 207 334 321 208 335 320 207 284 128 19 284 128 19 335 320 207 202 129 20 334 321 208 333 322 209 174 203 32 174 203 32 333 322 209 58 198 27 332 323 210 333 322 209 285 115 6 285 115 6 333 322 209 203 118 9 332 323 210 331 324 232 171 195 24 171 195 24 331 324 232 63 196 25 331 324 232 204 114 5 330 325 233 330 325 233 204 114 5 205 305 136 331 324 232 330 325 233 63 196 25 63 196 25 330 325 233 73 302 133 329 326 234 292 262 63 2054 327 235 2054 327 235 292 262 63 2052 263 64 2077 328 1139 328 329 1140 2076 253 1100 2076 253 1100 328 329 1140 52 224 1081 328 329 1140 327 330 1141 52 224 1081 52 224 1081 327 330 1141 47 190 1054 326 331 1142 327 330 1141 287 191 1055 287 191 1055 327 330 1141 206 192 1056 168 188 1052 326 331 1142 46 183 1047 46 183 1047 326 331 1142 325 332 1143 324 333 1144 325 332 1143 288 184 1048 288 184 1048 325 332 1143 207 185 1049 289 248 53 208 240 48 193 301 132 193 301 132 208 240 48 70 297 128 209 249 54 289 248 53 69 300 131 69 300 131 289 248 53 193 301 132 210 243 51 292 262 63 71 299 130 71 299 130 292 262 63 205 305 136 208 240 48 290 239 47 70 297 128 70 297 128 290 239 47 192 298 129 290 239 47 210 243 51 192 298 129 192 298 129 210 243 51 71 299 130 199 315 202 291 289 120 69 300 131 69 300 131 291 289 120 209 249 54 291 289 120 199 315 202 211 290 121 211 290 121 199 315 202 72 314 201 292 262 63 329 326 234 205 305 136 205 305 136 329 326 234 330 325 233 2053 256 59 212 255 58 2054 327 235 2054 327 235 212 255 58 329 326 234 195 306 1132 293 265 1108 75 307 1133 75 307 1133 293 265 1108 213 267 1110 293 265 1108 195 306 1132 214 258 1101 214 258 1101 195 306 1132 74 304 1131 294 254 2265 194 303 134 212 255 58 212 255 58 194 303 134 73 302 133 194 303 1130 294 254 1102 74 304 1131 74 304 1131 294 254 1102 214 258 1101 295 271 1114 196 308 1134 213 267 1110 213 267 1110 196 308 1134 75 307 1133 295 271 1114 215 273 1116 196 308 1134 196 308 1134 215 273 1116 76 309 1135 215 273 1116 296 286 1127 76 309 1135 76 309 1135 296 286 1127 198 313 1138 296 286 1127 216 279 1122 198 313 1138 198 313 1138 216 279 1122 77 310 1136 323 295 126 217 282 87 322 296 127 322 296 127 217 282 87 191 283 88 217 282 87 323 295 126 78 312 143 78 312 143 323 295 126 338 317 204 216 279 1122 297 278 1121 77 310 1136 77 310 1136 297 278 1121 197 311 1137 297 278 73 217 282 87 197 311 2267 197 311 2267 217 282 87 78 312 143 200 316 203 298 293 124 72 314 201 72 314 201 298 293 124 211 290 121 247 27 89 301 334 1145 100 28 90 100 28 90 301 334 1145 220 335 1146 301 334 1145 247 27 89 221 336 1147 221 336 1147 247 27 89 12 26 86 107 39 252 302 337 1148 106 40 253 106 40 253 302 337 1148 222 338 1149 302 337 1148 107 39 252 220 335 1146 220 335 1146 107 39 252 100 28 90 111 45 262 303 339 1150 110 46 265 110 46 265 303 339 1150 223 340 1151 303 339 1150 111 45 262 222 338 1149 222 338 1149 111 45 262 106 40 253 304 341 1152 224 342 1153 115 51 289 115 51 289 224 342 1153 114 52 290 223 340 1151 304 341 1152 110 46 265 110 46 265 304 341 1152 115 51 289 305 343 1154 225 344 1155 119 57 295 119 57 295 225 344 1155 118 58 296 224 342 1153 305 343 1154 114 52 290 114 52 290 305 343 1154 119 57 295 306 345 1156 226 346 1157 122 63 304 122 63 304 226 346 1157 121 64 884 225 344 1155 306 345 1156 118 58 296 118 58 296 306 345 1156 122 63 304 346 347 1158 345 348 1159 152 148 978 152 148 978 345 348 1159 151 149 980 152 148 978 121 64 884 346 347 1158 346 347 1158 121 64 884 226 346 1157 344 349 1160 343 350 1161 241 163 983 241 163 983 343 350 1161 242 165 987 241 163 983 151 149 980 344 349 1160 344 349 1160 151 149 980 345 348 1159 167 186 1050 315 351 1162 12 26 86 12 26 86 315 351 1162 221 336 1147 316 352 1163 127 80 900 232 175 1038 232 175 1038 127 80 900 30 82 902 127 80 900 316 352 1163 45 81 901 45 81 901 316 352 1163 162 353 1164 316 352 1163 235 354 1165 162 353 1164 162 353 1164 235 354 1165 79 355 1166 316 352 1163 232 175 1038 235 354 1165 235 354 1165 232 175 1038 80 177 1040 234 356 1167 317 357 1168 80 177 1040 80 177 1040 317 357 1168 235 354 1165 317 357 1168 233 358 1169 235 354 1165 235 354 1165 233 358 1169 79 355 1166 233 358 1169 317 357 1168 3 360 1171 3 360 1171 317 357 1168 87 359 1170 317 357 1168 234 356 1167 87 359 1170 87 359 1170 234 356 1167 2 361 1172 236 362 1173 318 363 1174 81 171 1019 81 171 1019 318 363 1174 237 176 1039 318 363 1174 234 356 1167 237 176 1039 237 176 1039 234 356 1167 80 177 1040 234 356 1167 318 363 1174 2 361 1172 2 361 1172 318 363 1174 86 364 1175 318 363 1174 236 362 1173 86 364 1175 86 364 1175 236 362 1173 1 365 1176 319 366 1177 236 362 1173 239 170 1018 239 170 1018 236 362 1173 81 171 1019 236 362 1173 319 366 1177 1 365 1176 1 365 1176 319 366 1177 85 367 1178 85 367 1178 319 366 1177 0 369 1180 0 369 1180 319 366 1177 161 368 1179 319 366 1177 239 170 1018 161 368 1179 161 368 1179 239 170 1018 82 173 1023 0 369 1180 161 368 1179 4 371 1182 4 371 1182 161 368 1179 240 370 1181 161 368 1179 82 173 1023 240 370 1181 240 370 1181 82 173 1023 83 166 1012 242 165 987 158 372 1183 83 166 1012 83 166 1012 158 372 1183 240 370 1181 240 370 1181 158 372 1183 4 371 1182 4 371 1182 158 372 1183 84 373 1184 343 350 1161 342 374 1185 242 165 987 242 165 987 342 374 1185 158 372 1183 342 374 1185 88 375 1186 158 372 1183 158 372 1183 88 375 1186 84 373 1184 144 131 917 2066 134 920 321 236 1093 321 236 1093 2066 134 920 2067 376 1187 321 236 1093 180 214 1071 339 66 886 339 66 886 180 214 1071 25 73 893 2067 376 1187 2083 284 1125 321 236 1093 321 236 1093 2083 284 1125 180 214 1071 325 332 1143 324 333 1144 46 183 1047 46 183 1047 324 333 1144 165 180 1043 325 332 1143 326 331 1142 207 185 1049 207 185 1049 326 331 1142 287 191 1055 47 190 1054 327 330 1141 168 188 1052 168 188 1052 327 330 1141 326 331 1142 327 330 1141 328 329 1140 206 192 1056 206 192 1056 328 329 1140 286 225 1082 286 225 1082 328 329 1140 2072 261 1106 2072 261 1106 328 329 1140 2077 328 1139 330 325 233 329 326 234 73 302 133 73 302 133 329 326 234 212 255 58 331 324 232 332 323 210 204 114 5 204 114 5 332 323 210 285 115 6 333 322 209 332 323 210 58 198 27 58 198 27 332 323 210 171 195 24 333 322 209 334 321 208 203 118 9 203 118 9 334 321 208 284 128 19 61 205 34 335 320 207 174 203 32 174 203 32 335 320 207 334 321 208 202 129 20 335 320 207 283 232 43 283 232 43 335 320 207 336 319 206 66 211 40 337 318 205 177 209 38 177 209 38 337 318 205 336 319 206 338 317 204 323 295 126 200 316 203 200 316 203 323 295 126 298 293 124 299 8 36 218 9 37 2017 378 1189 2017 378 1189 218 9 37 2022 377 1188 218 9 37 300 23 72 2022 377 1188 2022 377 1188 300 23 72 2021 379 1190 300 23 72 219 25 85 2021 379 1190 2021 379 1190 219 25 85 2023 380 1191 301 334 1145 674 381 1192 220 335 1146 220 335 1146 674 381 1192 592 382 1193 221 336 1147 593 383 1194 301 334 1145 301 334 1145 593 383 1194 674 381 1192 302 337 1148 675 384 1195 222 338 1149 222 338 1149 675 384 1195 594 385 1196 302 337 1148 220 335 1146 675 384 1195 675 384 1195 220 335 1146 592 382 1193 303 339 1150 676 386 1197 223 340 1151 223 340 1151 676 386 1197 595 387 1198 222 338 1149 594 385 1196 303 339 1150 303 339 1150 594 385 1196 676 386 1197 304 341 1152 677 388 1199 224 342 1153 224 342 1153 677 388 1199 596 389 1200 223 340 1151 595 387 1198 304 341 1152 304 341 1152 595 387 1198 677 388 1199 305 343 1154 678 390 1201 225 344 1155 225 344 1155 678 390 1201 597 391 1202 224 342 1153 596 389 1200 305 343 1154 305 343 1154 596 389 1200 678 390 1201 226 346 1157 306 345 1156 598 393 1204 598 393 1204 306 345 1156 679 392 1203 225 344 1155 597 391 1202 306 345 1156 306 345 1156 597 391 1202 679 392 1203 2037 395 1206 680 396 1207 2036 394 1205 2036 394 1205 680 396 1207 599 397 1208 2038 398 1209 600 399 1210 2037 395 1206 2037 395 1206 600 399 1210 680 396 1207 2039 400 1211 608 401 1212 2038 398 1209 2038 398 1209 608 401 1212 600 399 1210 31 86 3 308 85 2 2033 403 2261 2033 403 2261 308 85 2 2019 402 144 681 405 149 2019 402 2264 602 404 148 602 404 148 2019 402 2264 2020 406 2259 34 95 16 309 94 15 2031 408 2252 2031 408 2252 309 94 15 2032 407 2262 309 94 15 31 86 3 2032 407 2262 2032 407 2262 31 86 3 2033 403 2261 219 25 85 310 111 904 2023 380 1191 2023 380 1191 310 111 904 2024 409 1213 604 411 1215 2025 412 1216 684 410 1214 684 410 1214 2025 412 1216 2026 413 1217 2035 415 2260 685 416 158 2034 414 2258 2034 414 2258 685 416 158 605 417 159 2036 394 1205 599 397 1208 2035 415 1218 2035 415 1218 599 397 1208 685 416 1219 346 347 1158 1971 418 1220 345 348 1159 345 348 1159 1971 418 1220 1970 419 1221 226 346 1157 598 393 1204 346 347 1158 346 347 1158 598 393 1204 1971 418 1220 2016 420 2257 686 421 161 2020 406 2259 2020 406 2259 686 421 161 602 404 148 2034 414 2258 605 417 159 2016 420 2257 2016 420 2257 605 417 159 686 421 161 229 126 113 313 156 112 2027 423 2256 2027 423 2256 313 156 112 2028 422 2255 313 156 112 230 158 115 2028 422 2255 2028 422 2255 230 158 115 2029 424 2254 230 158 115 314 162 119 2029 424 2254 2029 424 2254 314 162 119 2030 425 2253 314 162 119 34 95 16 2030 425 2253 2030 425 2253 34 95 16 2031 408 2252 344 349 1160 1969 426 1222 343 350 1161 343 350 1161 1969 426 1222 1968 427 1223 345 348 1159 1970 419 1221 344 349 1160 344 349 1160 1970 419 1221 1969 426 1222 2040 428 1224 689 429 1225 2039 400 1211 2039 400 1211 689 429 1225 608 401 1212 2041 430 1226 612 431 1227 2040 428 1224 2040 428 1224 612 431 1227 689 429 1225 315 351 1162 690 432 1228 221 336 1147 221 336 1147 690 432 1228 593 383 1194 2042 433 1229 692 434 1230 2041 430 1226 2041 430 1226 692 434 1230 612 431 1227 2043 435 1231 434 436 1232 2042 433 1229 2042 433 1229 434 436 1232 692 434 1230 88 375 1186 342 374 1185 435 438 1234 435 438 1234 342 374 1185 1967 437 1233 342 374 1185 343 350 1161 1967 437 1233 1967 437 1233 343 350 1161 1968 427 1223 436 439 1235 353 440 1236 622 442 1238 622 442 1238 353 440 1236 437 441 1237 352 444 1240 436 439 1235 438 443 1239 438 443 1239 436 439 1235 622 442 1238 439 445 1241 352 444 1240 623 446 1242 623 446 1242 352 444 1240 438 443 1239 354 448 1244 439 445 1241 440 447 1243 440 447 1243 439 445 1241 623 446 1242 356 450 1246 441 451 1247 355 449 1245 355 449 1245 441 451 1247 443 452 1248 441 451 1247 357 453 1249 443 452 1248 443 452 1248 357 453 1249 442 454 1250 353 440 1236 436 439 1235 444 455 1251 444 455 1251 436 439 1235 624 456 1252 436 439 1235 352 444 1240 624 456 1252 624 456 1252 352 444 1240 445 457 1253 359 458 1254 446 459 1255 445 457 1253 445 457 1253 446 459 1255 624 456 1252 446 459 1255 358 460 1256 624 456 1252 624 456 1252 358 460 1256 444 455 1251 352 444 1240 439 445 1241 445 457 1253 445 457 1253 439 445 1241 625 461 1257 439 445 1241 354 448 1244 625 461 1257 625 461 1257 354 448 1244 447 462 1258 360 463 1259 448 464 1260 447 462 1258 447 462 1258 448 464 1260 625 461 1257 448 464 1260 359 458 1254 625 461 1257 625 461 1257 359 458 1254 445 457 1253 357 453 1249 441 451 1247 361 465 1261 361 465 1261 441 451 1247 626 466 1262 441 451 1247 356 450 1246 626 466 1262 626 466 1262 356 450 1246 449 467 1263 363 469 1265 450 470 1266 362 468 1264 362 468 1264 450 470 1266 451 471 1267 450 470 1266 356 450 1246 451 471 1267 451 471 1267 356 450 1246 355 449 1245 358 460 1256 446 459 1255 452 472 1268 452 472 1268 446 459 1255 627 473 1269 446 459 1255 359 458 1254 627 473 1269 627 473 1269 359 458 1254 453 474 1270 365 475 1271 454 476 1272 453 474 1270 453 474 1270 454 476 1272 627 473 1269 454 476 1272 364 477 1273 627 473 1269 627 473 1269 364 477 1273 452 472 1268 356 450 1246 450 470 1266 449 467 1263 449 467 1263 450 470 1266 456 478 1274 450 470 1266 363 469 1265 456 478 1274 456 478 1274 363 469 1265 455 479 1275 457 480 1276 363 469 1265 458 481 1277 458 481 1277 363 469 1265 362 468 1264 366 483 1279 457 480 1276 367 482 1278 367 482 1278 457 480 1276 458 481 1277 363 469 1265 457 480 1276 455 479 1275 455 479 1275 457 480 1276 460 484 1280 457 480 1276 366 483 1279 460 484 1280 460 484 1280 366 483 1279 459 485 1281 369 486 1282 368 487 1283 461 489 1285 461 489 1285 368 487 1283 462 488 1284 462 488 1284 366 483 1279 461 489 1285 461 489 1285 366 483 1279 367 482 1278 366 483 1279 462 488 1284 459 485 1281 459 485 1281 462 488 1284 464 490 1286 368 487 1283 463 491 1287 462 488 1284 462 488 1284 463 491 1287 464 490 1286 371 492 1288 370 493 1289 465 495 1291 465 495 1291 370 493 1289 466 494 1290 368 487 1283 369 486 1282 466 494 1290 466 494 1290 369 486 1282 465 495 1291 463 491 1287 368 487 1283 468 496 1292 468 496 1292 368 487 1283 466 494 1290 370 493 1289 467 497 1293 466 494 1290 466 494 1290 467 497 1293 468 496 1292 372 498 1294 373 499 1295 628 501 1297 628 501 1297 373 499 1295 469 500 1296 370 493 1289 371 492 1288 469 500 1296 469 500 1296 371 492 1288 628 501 1297 467 497 1293 370 493 1289 471 502 1298 471 502 1298 370 493 1289 469 500 1296 373 499 1295 470 503 1299 469 500 1296 469 500 1296 470 503 1299 471 502 1298 375 504 1300 472 505 1301 1964 507 1303 1964 507 1303 472 505 1301 1965 506 1302 472 505 1301 377 508 1304 1965 506 1302 1965 506 1302 377 508 1304 1966 509 1305 376 510 1306 473 511 1307 1966 509 1305 1966 509 1305 473 511 1307 1965 506 1302 473 511 1307 374 512 1308 1965 506 1302 1965 506 1302 374 512 1308 1964 507 1303 378 514 1310 475 515 1311 474 513 1309 474 513 1309 475 515 1311 629 516 1312 475 515 1311 379 517 1313 629 516 1312 629 516 1312 379 517 1313 476 518 1314 377 508 1304 472 505 1301 476 518 1314 476 518 1314 472 505 1301 629 516 1312 472 505 1301 375 504 1300 629 516 1312 629 516 1312 375 504 1300 474 513 1309 476 518 1314 379 517 1313 477 520 1316 477 520 1316 379 517 1313 399 519 1315 476 518 1314 477 520 1316 377 508 1304 377 508 1304 477 520 1316 380 521 1317 478 522 162 381 523 163 630 525 165 630 525 165 381 523 163 479 524 164 479 524 174 382 526 175 630 525 177 630 525 177 382 526 175 480 527 176 384 528 178 481 529 179 480 527 176 480 527 176 481 529 179 630 525 177 383 530 167 478 522 162 481 529 166 481 529 166 478 522 162 630 525 165 482 531 168 385 532 169 631 534 171 631 534 171 385 532 169 483 533 170 381 523 163 478 522 162 483 533 170 483 533 170 478 522 162 631 534 171 478 522 162 383 530 167 631 534 171 631 534 171 383 530 167 484 535 172 386 536 173 482 531 168 484 535 172 484 535 172 482 531 168 631 534 171 485 537 180 386 536 173 632 538 181 632 538 181 386 536 173 484 535 172 383 530 167 486 539 182 484 535 172 484 535 172 486 539 182 632 538 181 486 539 182 387 540 183 632 538 181 632 538 181 387 540 183 511 541 184 390 542 185 485 537 180 511 541 184 511 541 184 485 537 180 632 538 181 487 543 186 391 544 187 633 546 189 633 546 189 391 544 187 488 545 188 488 545 188 388 547 190 633 546 189 633 546 189 388 547 190 489 548 191 386 536 173 485 537 180 489 548 191 489 548 191 485 537 180 633 546 189 390 542 185 487 543 186 485 537 180 485 537 180 487 543 186 633 546 189 359 458 1254 448 464 1260 453 474 1270 453 474 1270 448 464 1260 634 549 1318 448 464 1260 360 463 1259 634 549 1318 634 549 1318 360 463 1259 490 550 1319 389 551 1320 491 552 1321 490 550 1319 490 550 1319 491 552 1321 634 549 1318 491 552 1321 365 475 1271 634 549 1318 634 549 1318 365 475 1271 453 474 1270 575 553 236 405 554 237 659 556 239 659 556 239 405 554 237 492 555 238 403 557 240 574 558 241 492 555 238 492 555 238 574 558 241 659 556 239 454 476 1272 365 475 1271 635 560 1323 635 560 1323 365 475 1271 493 559 1322 391 544 1324 487 543 1325 493 559 1322 493 559 1322 487 543 1325 635 560 1323 487 543 1325 390 542 1326 635 560 1323 635 560 1323 390 542 1326 494 561 1327 364 477 1273 454 476 1272 494 561 1327 494 561 1327 454 476 1272 635 560 1323 491 552 1321 389 551 1320 636 563 1329 636 563 1329 389 551 1320 495 562 1328 392 564 1330 508 565 1331 495 562 1328 495 562 1328 508 565 1331 636 563 1329 508 565 1331 391 544 1324 636 563 1329 636 563 1329 391 544 1324 493 559 1322 365 475 1271 491 552 1321 493 559 1322 493 559 1322 491 552 1321 636 563 1329 406 567 243 573 568 244 496 566 242 496 566 242 573 568 244 658 569 245 574 558 241 403 557 240 658 569 245 658 569 245 403 557 240 496 566 242 2087 571 1333 2088 572 1334 651 570 1332 651 570 1332 2088 572 1334 552 573 1335 497 574 1336 378 514 1310 637 575 1337 637 575 1337 378 514 1310 474 513 1309 375 504 1300 498 576 1338 474 513 1309 474 513 1309 498 576 1338 637 575 1337 498 576 211 394 577 212 637 575 214 637 575 214 394 577 212 499 578 213 395 579 215 497 574 216 499 578 213 499 578 213 497 574 216 637 575 214 397 580 1339 396 581 1340 500 583 1342 500 583 1342 396 581 1340 501 582 1341 373 499 1295 372 498 1294 501 582 1341 501 582 1341 372 498 1294 500 583 1342 502 584 1343 374 512 1308 638 585 1344 638 585 1344 374 512 1308 473 511 1307 376 510 1306 503 586 1345 473 511 1307 473 511 1307 503 586 1345 638 585 1344 503 586 1345 397 580 1339 638 585 1344 638 585 1344 397 580 1339 500 583 1342 372 498 1294 502 584 1343 500 583 1342 500 583 1342 502 584 1343 638 585 1344 470 503 1299 373 499 1295 505 587 1346 505 587 1346 373 499 1295 501 582 1341 396 581 1340 504 588 1347 501 582 1341 501 582 1341 504 588 1347 505 587 1346 609 589 1348 1966 509 1305 380 521 1317 380 521 1317 1966 509 1305 377 508 1304 398 590 1349 376 510 1306 609 589 1348 609 589 1348 376 510 1306 1966 509 1305 506 591 217 384 528 178 639 592 218 639 592 218 384 528 178 480 527 176 382 526 175 507 593 219 480 527 176 480 527 176 507 593 219 639 592 218 507 593 219 395 579 215 639 592 218 639 592 218 395 579 215 499 578 213 394 577 212 506 591 217 499 578 213 499 578 213 506 591 217 639 592 218 508 565 192 392 564 193 640 595 195 640 595 195 392 564 193 509 594 194 400 596 196 510 597 197 509 594 194 509 594 194 510 597 197 640 595 195 510 597 197 388 547 190 640 595 195 640 595 195 388 547 190 488 545 188 391 544 187 508 565 192 488 545 188 488 545 188 508 565 192 640 595 195 506 591 217 394 577 212 641 599 227 641 599 227 394 577 212 538 598 226 387 540 183 486 539 182 538 598 198 538 598 198 486 539 182 641 599 199 383 530 167 481 529 166 486 539 182 486 539 182 481 529 166 641 599 199 481 529 179 384 528 178 641 599 227 641 599 227 384 528 178 506 591 217 388 547 190 510 597 197 489 548 191 489 548 191 510 597 197 642 600 220 510 597 197 400 596 196 642 600 220 642 600 220 400 596 196 512 601 221 385 532 169 482 531 168 512 601 221 512 601 221 482 531 168 642 600 220 482 531 168 386 536 173 642 600 220 642 600 220 386 536 173 489 548 191 504 588 1347 396 581 1340 620 603 1351 620 603 1351 396 581 1340 513 602 1350 429 604 1352 621 605 1353 513 602 1350 513 602 1350 621 605 1353 620 603 1351 398 590 1349 516 607 1355 515 606 1354 515 606 1354 516 607 1355 643 608 1356 516 607 1355 427 609 1357 643 608 1356 643 608 1356 427 609 1357 618 610 1358 618 610 1358 428 611 1359 643 608 1356 643 608 1356 428 611 1359 617 612 1360 617 612 1360 397 580 1339 643 608 1356 643 608 1356 397 580 1339 515 606 1354 428 611 1359 429 604 1352 617 612 1360 617 612 1360 429 604 1352 513 602 1350 396 581 1340 397 580 1339 513 602 1350 513 602 1350 397 580 1339 617 612 1360 516 607 1355 398 590 1349 644 613 1361 644 613 1361 398 590 1349 609 589 1348 380 521 1317 610 614 1362 609 589 1348 609 589 1348 610 614 1362 644 613 1361 610 614 1362 426 615 1363 644 613 1361 644 613 1361 426 615 1363 616 616 1364 427 609 1357 516 607 1355 616 616 1364 616 616 1364 516 607 1355 644 613 1361 357 453 1249 520 617 1365 442 454 1250 442 454 1250 520 617 1365 519 618 1366 521 619 1367 401 620 1368 645 622 1370 645 622 1370 401 620 1368 522 621 1369 442 454 1250 519 618 1366 522 621 1369 522 621 1369 519 618 1366 645 622 1370 353 440 1236 579 623 1371 437 441 1237 437 441 1237 579 623 1371 661 624 1372 520 617 1365 357 453 1249 523 625 1373 523 625 1373 357 453 1249 361 465 1261 401 620 1368 524 626 1374 522 621 1369 522 621 1369 524 626 1374 646 627 1375 524 626 1374 402 628 1376 646 627 1375 646 627 1375 402 628 1376 525 629 1377 355 449 1245 443 452 1248 525 629 1377 525 629 1377 443 452 1248 646 627 1375 443 452 1248 442 454 1250 646 627 1375 646 627 1375 442 454 1250 522 621 1369 579 623 1371 353 440 1236 660 630 1378 660 630 1378 353 440 1236 444 455 1251 358 460 1256 578 631 1379 444 455 1251 444 455 1251 578 631 1379 660 630 1378 526 632 2273 409 633 247 647 635 2268 647 635 2268 409 633 247 527 634 248 404 636 250 528 637 251 527 634 248 527 634 248 528 637 251 647 635 2268 410 638 1381 529 639 1382 528 637 1380 528 637 1380 529 639 1382 647 635 1383 529 639 1382 408 640 1384 647 635 1383 647 635 1383 408 640 1384 526 632 1385 528 637 251 404 636 250 648 642 2269 648 642 2269 404 636 250 530 641 255 407 643 257 531 644 258 530 641 255 530 641 255 531 644 258 648 642 2269 531 644 1386 411 645 1387 648 642 1389 648 642 1389 411 645 1387 532 646 1388 532 646 1388 410 638 1381 648 642 1389 648 642 1389 410 638 1381 528 637 1380 531 644 258 407 643 257 649 648 2272 649 648 2272 407 643 257 533 647 261 533 647 261 412 649 263 649 648 2272 649 648 2272 412 649 263 534 650 264 534 650 1390 413 651 1391 649 648 1393 649 648 1393 413 651 1391 535 652 1392 411 645 1387 531 644 1386 535 652 1392 535 652 1392 531 644 1386 649 648 1393 374 512 1308 502 584 1343 393 653 1394 393 653 1394 502 584 1343 537 654 1395 502 584 1343 372 498 1294 537 654 1395 537 654 1395 372 498 1294 628 501 1297 371 492 1288 536 655 1396 628 501 1297 628 501 1297 536 655 1396 537 654 1395 376 510 1306 398 590 1349 503 586 1345 503 586 1345 398 590 1349 515 606 1354 515 606 1354 397 580 1339 503 586 1345 536 655 1396 371 492 1288 540 656 1397 540 656 1397 371 492 1288 465 495 1291 369 486 1282 539 657 1398 465 495 1291 465 495 1291 539 657 1398 540 656 1397 539 657 1398 369 486 1282 542 658 1399 542 658 1399 369 486 1282 461 489 1285 461 489 1285 367 482 1278 542 658 1399 542 658 1399 367 482 1278 541 659 1400 367 482 1278 458 481 1277 541 659 1400 541 659 1400 458 481 1277 544 660 1401 458 481 1277 362 468 1264 544 660 1401 544 660 1401 362 468 1264 543 661 1402 402 628 1376 545 662 1403 525 629 1377 525 629 1377 545 662 1403 546 663 1404 362 468 1264 451 471 1267 543 661 1402 543 661 1402 451 471 1267 546 663 1404 451 471 1267 355 449 1245 546 663 1404 546 663 1404 355 449 1245 525 629 1377 578 631 1379 358 460 1256 577 664 1405 577 664 1405 358 460 1256 452 472 1268 364 477 1273 547 665 1406 452 472 1268 452 472 1268 547 665 1406 577 664 1405 547 665 1406 364 477 1273 549 666 1407 549 666 1407 364 477 1273 494 561 1327 390 542 1326 548 667 1408 494 561 1327 494 561 1327 548 667 1408 549 666 1407 387 540 1410 550 668 1411 511 541 1409 511 541 1409 550 668 1411 551 669 1412 548 667 1408 390 542 1326 551 669 1412 551 669 1412 390 542 1326 511 541 1409 387 540 1410 538 598 1413 550 668 1411 550 668 1411 538 598 1413 650 670 1414 538 598 1413 394 577 1415 650 670 1414 650 670 1414 394 577 1415 552 573 1335 406 567 243 553 671 267 573 568 244 573 568 244 553 671 267 657 672 268 572 673 269 657 672 268 414 674 270 414 674 270 657 672 268 553 671 267 394 577 1415 498 576 1338 552 573 1335 552 573 1335 498 576 1338 651 570 1332 1945 675 1416 651 570 1332 1964 507 1303 651 570 1332 498 576 1338 1964 507 1303 498 576 1338 375 504 1300 1964 507 1303 548 667 1408 2091 676 1417 549 666 1407 549 666 1407 2091 676 1417 2092 677 1418 663 679 272 652 680 273 580 678 271 580 678 271 652 680 273 554 681 274 582 682 275 555 683 276 663 679 272 663 679 272 555 683 276 652 680 273 2093 684 1419 547 665 1406 2092 677 1418 2092 677 1418 547 665 1406 549 666 1407 550 668 1411 2095 685 1420 551 669 1412 551 669 1412 2095 685 1420 2090 686 1421 662 688 278 653 689 279 581 687 277 581 687 277 653 689 279 556 690 280 580 678 271 554 681 274 662 688 278 662 688 278 554 681 274 653 689 279 2091 676 1417 548 667 1408 2090 686 1421 2090 686 1421 548 667 1408 551 669 1412 546 663 1404 545 662 1403 2098 692 1423 2098 692 1423 545 662 1403 2097 691 1422 584 693 281 667 694 282 557 696 284 557 696 284 667 694 282 654 695 2270 667 694 1424 586 697 1425 654 695 1427 654 695 1427 586 697 1425 558 698 1426 543 661 1402 546 663 1404 2099 699 1428 2099 699 1428 546 663 1404 2098 692 1423 547 665 1406 2093 684 1419 577 664 1405 577 664 1405 2093 684 1419 2094 700 1429 665 701 287 2060 702 288 582 682 275 582 682 275 2060 702 288 555 683 276 544 660 1401 543 661 1402 2100 703 1430 2100 703 1430 543 661 1402 2099 699 1428 586 697 1425 666 704 1431 558 698 1426 558 698 1426 666 704 1431 2061 705 1432 666 704 1431 585 706 1433 2061 705 1432 2061 705 1432 585 706 1433 559 707 1434 541 659 1400 544 660 1401 2101 708 1435 2101 708 1435 544 660 1401 2100 703 1430 542 658 1399 541 659 1400 2102 709 1436 2102 709 1436 541 659 1400 2101 708 1435 585 706 1433 668 710 1437 559 707 1434 559 707 1434 668 710 1437 2062 711 1438 587 712 1439 560 713 1440 668 710 1437 668 710 1437 560 713 1440 2062 711 1438 2103 714 1441 539 657 1398 2102 709 1436 2102 709 1436 539 657 1398 542 658 1399 536 655 1396 2105 715 1442 537 654 1395 537 654 1395 2105 715 1442 2106 716 1443 670 718 1445 655 719 1446 588 717 1444 588 717 1444 655 719 1446 561 720 1447 589 721 301 562 722 302 670 718 2275 670 718 2275 562 722 302 655 719 299 2107 723 1448 393 653 1394 2106 716 1443 2106 716 1443 393 653 1394 537 654 1395 539 657 1398 2103 714 1441 540 656 1397 540 656 1397 2103 714 1441 2104 724 1449 669 725 1450 2063 726 1451 587 712 1439 587 712 1439 2063 726 1451 560 713 1440 588 717 1444 561 720 1447 669 725 1450 669 725 1450 561 720 1447 2063 726 1451 2105 715 1442 536 655 1396 2104 724 1449 2104 724 1449 536 655 1396 540 656 1397 650 670 1414 552 573 1335 2089 727 1452 2089 727 1452 552 573 1335 2088 572 1334 583 728 305 664 729 306 2058 731 308 2058 731 308 664 729 306 2059 730 307 664 729 306 581 687 277 2059 730 307 2059 730 307 581 687 277 556 690 280 550 668 1411 650 670 1414 2095 685 1420 2095 685 1420 650 670 1414 2089 727 1452 671 732 309 583 728 305 656 733 310 656 733 310 583 728 305 2058 731 308 1947 734 311 671 732 309 1946 735 970 1946 735 970 671 732 309 656 733 310 416 737 972 403 557 240 563 736 971 563 736 971 403 557 240 492 555 238 563 736 971 492 555 238 417 738 973 417 738 973 492 555 238 405 554 237 415 740 975 406 567 243 564 739 974 564 739 974 406 567 243 496 566 242 564 739 974 496 566 242 416 737 972 416 737 972 496 566 242 403 557 240 565 741 2274 419 742 977 526 632 2273 526 632 2273 419 742 977 409 633 247 526 632 1385 408 640 1384 565 741 1453 565 741 1453 408 640 1384 420 743 1454 417 738 973 405 554 237 576 744 979 576 744 979 405 554 237 575 553 236 566 745 1455 420 743 1454 529 639 1382 529 639 1382 420 743 1454 408 640 1384 529 639 1382 410 638 1381 566 745 1455 566 745 1455 410 638 1381 421 746 1456 567 747 1457 421 746 1456 532 646 1388 532 646 1388 421 746 1456 410 638 1381 567 747 1457 532 646 1388 422 748 1458 422 748 1458 532 646 1388 411 645 1387 423 750 1460 413 651 1391 568 749 1459 568 749 1459 413 651 1391 534 650 1390 568 749 984 534 650 264 424 751 986 424 751 986 534 650 264 412 649 263 422 748 1458 411 645 1387 569 752 1461 569 752 1461 411 645 1387 535 652 1392 569 752 1461 535 652 1392 423 750 1460 423 750 1460 535 652 1392 413 651 1391 570 753 988 418 754 989 553 671 267 553 671 267 418 754 989 414 674 270 553 671 267 406 567 243 570 753 988 570 753 988 406 567 243 415 740 975 418 754 989 571 755 990 414 674 270 414 674 270 571 755 990 572 673 269 571 755 990 1963 756 991 572 673 269 572 673 269 1963 756 991 1962 757 992 424 751 986 412 649 263 1963 756 991 1963 756 991 412 649 263 1962 757 992 657 672 268 572 673 269 1961 758 993 1961 758 993 572 673 269 1962 757 992 407 643 257 1960 759 994 533 647 261 533 647 261 1960 759 994 1961 758 993 573 568 244 1960 759 994 658 569 245 658 569 245 1960 759 994 1959 760 995 404 636 250 1958 761 996 530 641 255 530 641 255 1958 761 996 1959 760 995 574 558 241 1958 761 996 659 556 239 659 556 239 1958 761 996 1957 762 997 409 633 247 1956 763 998 527 634 248 527 634 248 1956 763 998 1957 762 997 576 744 979 575 553 236 1955 764 999 1955 764 999 575 553 236 1956 763 998 419 742 977 1955 764 999 409 633 247 409 633 247 1955 764 999 1956 763 998 2060 702 288 665 701 287 1953 766 1001 1953 766 1001 665 701 287 1954 765 1000 545 662 1403 1952 767 1462 2097 691 1422 2097 691 1422 1952 767 1462 2096 768 1463 402 628 1376 1951 769 1464 545 662 1403 545 662 1403 1951 769 1464 1952 767 1462 578 631 1379 1951 769 1464 660 630 1378 660 630 1378 1951 769 1464 1950 770 1465 524 626 1374 401 620 1368 1950 770 1465 1950 770 1465 401 620 1368 1949 771 1466 579 623 1371 1949 771 1466 661 624 1372 661 624 1372 1949 771 1466 1948 772 1467 416 737 972 580 678 271 564 739 974 564 739 974 580 678 271 662 688 278 581 687 277 415 740 975 662 688 278 662 688 278 415 740 975 564 739 974 582 682 275 417 738 973 665 701 287 665 701 287 417 738 973 576 744 979 580 678 271 416 737 972 663 679 272 663 679 272 416 737 972 563 736 971 417 738 973 582 682 275 563 736 971 563 736 971 582 682 275 663 679 272 570 753 988 415 740 975 664 729 306 664 729 306 415 740 975 581 687 277 418 754 989 570 753 988 583 728 305 583 728 305 570 753 988 664 729 306 665 701 287 576 744 979 1954 765 1000 1954 765 1000 576 744 979 1955 764 999 1954 765 1000 584 693 281 1953 766 1001 1953 766 1001 584 693 281 557 696 284 566 745 1455 421 746 1456 666 704 1431 666 704 1431 421 746 1456 585 706 1433 420 743 1454 566 745 1455 586 697 1425 586 697 1425 566 745 1455 666 704 1431 419 742 977 565 741 2274 584 693 281 584 693 281 565 741 2274 667 694 282 565 741 1453 420 743 1454 667 694 1424 667 694 1424 420 743 1454 586 697 1425 421 746 1456 567 747 1457 585 706 1433 585 706 1433 567 747 1457 668 710 1437 422 748 1458 587 712 1439 567 747 1457 567 747 1457 587 712 1439 668 710 1437 587 712 1439 422 748 1458 669 725 1450 669 725 1450 422 748 1458 569 752 1461 423 750 1460 588 717 1444 569 752 1461 569 752 1461 588 717 1444 669 725 1450 1947 734 311 1946 735 970 589 721 301 589 721 301 1946 735 970 562 722 302 589 721 301 424 751 986 1947 734 311 1947 734 311 424 751 986 1963 756 991 588 717 1444 423 750 1460 670 718 1445 670 718 1445 423 750 1460 568 749 1459 424 751 986 589 721 301 568 749 984 568 749 984 589 721 301 670 718 2275 571 755 990 418 754 989 671 732 309 671 732 309 418 754 989 583 728 305 590 773 1468 354 448 1244 672 774 1469 672 774 1469 354 448 1244 440 447 1243 354 448 1244 590 773 1468 447 462 1258 447 462 1258 590 773 1468 673 775 1470 591 776 1471 360 463 1259 673 775 1470 673 775 1470 360 463 1259 447 462 1258 626 466 1262 449 467 1263 674 381 1192 674 381 1192 449 467 1263 592 382 1193 361 465 1261 626 466 1262 593 383 1194 593 383 1194 626 466 1262 674 381 1192 456 478 1274 455 479 1275 675 384 1195 675 384 1195 455 479 1275 594 385 1196 449 467 1263 456 478 1274 592 382 1193 592 382 1193 456 478 1274 675 384 1195 459 485 1281 595 387 1198 460 484 1280 460 484 1280 595 387 1198 676 386 1197 455 479 1275 460 484 1280 594 385 1196 594 385 1196 460 484 1280 676 386 1197 463 491 1287 596 389 1200 464 490 1286 464 490 1286 596 389 1200 677 388 1199 595 387 1198 459 485 1281 677 388 1199 677 388 1199 459 485 1281 464 490 1286 467 497 1293 597 391 1202 468 496 1292 468 496 1292 597 391 1202 678 390 1201 596 389 1200 463 491 1287 678 390 1201 678 390 1201 463 491 1287 468 496 1292 470 503 1299 598 393 1204 471 502 1298 471 502 1298 598 393 1204 679 392 1203 597 391 1202 467 497 1293 679 392 1203 679 392 1203 467 497 1293 471 502 1298 475 515 1311 378 514 1310 680 396 1207 680 396 1207 378 514 1310 599 397 1208 379 517 1313 475 515 1311 600 399 1210 600 399 1210 475 515 1311 680 396 1207 379 517 1313 600 399 1210 399 519 1315 399 519 1315 600 399 1210 608 401 1212 381 523 163 601 777 222 479 524 164 479 524 164 601 777 222 681 405 223 602 404 148 382 526 175 681 405 149 681 405 149 382 526 175 479 524 174 385 532 169 603 778 224 483 533 170 483 533 170 603 778 224 682 779 225 601 777 222 381 523 163 682 779 225 682 779 225 381 523 163 483 533 170 360 463 1259 591 776 1471 490 550 1319 490 550 1319 591 776 1471 683 780 1472 604 411 1215 389 551 1320 683 780 1472 683 780 1472 389 551 1320 490 550 1319 389 551 1320 604 411 1215 495 562 1328 495 562 1328 604 411 1215 684 410 1214 606 781 1473 392 564 1330 684 410 1214 684 410 1214 392 564 1330 495 562 1328 395 579 215 605 417 159 497 574 216 497 574 216 605 417 159 685 416 158 599 397 1208 378 514 1310 685 416 1219 685 416 1219 378 514 1310 497 574 1336 504 588 1347 1970 419 1221 505 587 1346 505 587 1346 1970 419 1221 1971 418 1220 505 587 1346 1971 418 1220 470 503 1299 470 503 1299 1971 418 1220 598 393 1204 507 593 219 382 526 175 686 421 161 686 421 161 382 526 175 602 404 148 395 579 215 507 593 219 605 417 159 605 417 159 507 593 219 686 421 161 392 564 193 606 781 228 509 594 194 509 594 194 606 781 228 687 782 229 607 783 230 400 596 196 687 782 229 687 782 229 400 596 196 509 594 194 400 596 196 607 783 230 512 601 221 512 601 221 607 783 230 688 784 231 603 778 224 385 532 169 688 784 231 688 784 231 385 532 169 512 601 221 621 605 1353 1968 427 1223 620 603 1351 620 603 1351 1968 427 1223 1969 426 1222 620 603 1351 1969 426 1222 504 588 1347 504 588 1347 1969 426 1222 1970 419 1221 399 519 1315 608 401 1212 518 785 1474 518 785 1474 608 401 1212 689 429 1225 612 431 1227 425 786 1475 689 429 1225 689 429 1225 425 786 1475 518 785 1474 523 625 1373 361 465 1261 690 432 1228 690 432 1228 361 465 1261 593 383 1194 380 521 1317 477 520 1316 610 614 1362 610 614 1362 477 520 1316 691 787 1476 477 520 1316 399 519 1315 691 787 1476 691 787 1476 399 519 1315 518 785 1474 425 786 1475 614 788 1477 518 785 1474 518 785 1474 614 788 1477 691 787 1476 614 788 1477 426 615 1363 691 787 1476 691 787 1476 426 615 1363 610 614 1362 425 786 1475 612 431 1227 611 789 1478 611 789 1478 612 431 1227 692 434 1230 350 790 1479 611 789 1478 434 436 1232 434 436 1232 611 789 1478 692 434 1230 426 615 1363 614 788 1477 613 791 1480 613 791 1480 614 788 1477 693 792 1481 614 788 1477 425 786 1475 693 792 1481 693 792 1481 425 786 1475 611 789 1478 350 790 1479 433 793 1482 611 789 1478 611 789 1478 433 793 1482 693 792 1481 349 794 1483 613 791 1480 433 793 1482 433 793 1482 613 791 1480 693 792 1481 615 795 1484 427 609 1357 694 796 1485 694 796 1485 427 609 1357 616 616 1364 616 616 1364 426 615 1363 694 796 1485 694 796 1485 426 615 1363 613 791 1480 349 794 1483 432 797 1486 613 791 1480 613 791 1480 432 797 1486 694 796 1485 432 797 1486 348 798 1487 694 796 1485 694 796 1485 348 798 1487 615 795 1484 618 610 1358 427 609 1357 695 799 1488 695 799 1488 427 609 1357 615 795 1484 348 798 1487 431 800 1489 615 795 1484 615 795 1484 431 800 1489 695 799 1488 431 800 1489 347 801 1490 695 799 1488 695 799 1488 347 801 1490 517 802 1491 428 611 1359 618 610 1358 517 802 1491 517 802 1491 618 610 1358 695 799 1488 347 801 1490 351 803 1492 517 802 1491 517 802 1491 351 803 1492 619 804 1493 429 604 1352 428 611 1359 619 804 1493 619 804 1493 428 611 1359 517 802 1491 621 605 1353 429 604 1352 514 805 1494 514 805 1494 429 604 1352 619 804 1493 351 803 1492 430 806 1495 619 804 1493 619 804 1493 430 806 1495 514 805 1494 1968 427 1223 621 605 1353 1967 437 1233 1967 437 1233 621 605 1353 514 805 1494 430 806 1495 435 438 1234 514 805 1494 514 805 1494 435 438 1234 1967 437 1233 697 808 1497 710 809 1498 696 807 1496 696 807 1496 710 809 1498 709 810 1499 698 811 1500 711 812 1501 697 808 1497 697 808 1497 711 812 1501 710 809 1498 699 813 1502 712 814 1503 698 811 1500 698 811 1500 712 814 1503 711 812 1501 700 815 1504 713 816 1505 699 813 1502 699 813 1502 713 816 1505 712 814 1503 701 817 1506 714 818 1507 700 815 1504 700 815 1504 714 818 1507 713 816 1505 702 819 1508 715 820 1509 701 817 1506 701 817 1506 715 820 1509 714 818 1507 703 821 1510 716 822 1511 702 819 1508 702 819 1508 716 822 1511 715 820 1509 704 823 1512 717 824 1513 703 821 1510 703 821 1510 717 824 1513 716 822 1511 704 823 1512 705 825 1514 717 824 1513 717 824 1513 705 825 1514 718 826 1515 705 825 1514 706 827 1516 718 826 1515 718 826 1515 706 827 1516 719 828 1517 707 829 1518 720 830 1519 706 827 1516 706 827 1516 720 830 1519 719 828 1517 1331 831 1520 721 832 1521 707 829 1518 707 829 1518 721 832 1521 720 830 1519 708 833 1522 722 834 1523 1980 836 1525 1980 836 1525 722 834 1523 1979 835 1524 710 809 1498 724 837 1526 709 810 1499 709 810 1499 724 837 1526 723 838 1527 711 812 1501 725 839 1528 710 809 1498 710 809 1498 725 839 1528 724 837 1526 712 814 1503 726 840 1529 711 812 1501 711 812 1501 726 840 1529 725 839 1528 713 816 1505 727 841 1530 712 814 1503 712 814 1503 727 841 1530 726 840 1529 714 818 1507 728 842 1531 713 816 1505 713 816 1505 728 842 1531 727 841 1530 715 820 1509 729 843 1532 714 818 1507 714 818 1507 729 843 1532 728 842 1531 716 822 1511 730 844 1533 715 820 1509 715 820 1509 730 844 1533 729 843 1532 717 824 1513 731 845 1534 716 822 1511 716 822 1511 731 845 1534 730 844 1533 717 824 1513 718 826 1515 731 845 1534 731 845 1534 718 826 1515 732 846 1535 718 826 1515 719 828 1517 732 846 1535 732 846 1535 719 828 1517 733 847 1536 720 830 1519 734 848 1537 719 828 1517 719 828 1517 734 848 1537 733 847 1536 1333 849 1538 721 832 1521 1982 850 1539 1982 850 1539 721 832 1521 1979 835 1524 724 837 1526 737 851 1540 723 838 1527 723 838 1527 737 851 1540 736 852 1541 725 839 1528 738 853 1542 724 837 1526 724 837 1526 738 853 1542 737 851 1540 726 840 1529 739 854 1543 725 839 1528 725 839 1528 739 854 1543 738 853 1542 727 841 1530 740 855 1544 726 840 1529 726 840 1529 740 855 1544 739 854 1543 728 842 1531 741 856 1545 727 841 1530 727 841 1530 741 856 1545 740 855 1544 729 843 1532 742 857 1546 728 842 1531 728 842 1531 742 857 1546 741 856 1545 730 844 1533 743 858 1547 729 843 1532 729 843 1532 743 858 1547 742 857 1546 731 845 1534 744 859 1548 730 844 1533 730 844 1533 744 859 1548 743 858 1547 731 845 1534 732 846 1535 744 859 1548 744 859 1548 732 846 1535 745 860 1549 733 847 1536 746 861 1550 732 846 1535 732 846 1535 746 861 1550 745 860 1549 734 848 1537 747 862 1551 733 847 1536 733 847 1536 747 862 1551 746 861 1550 1334 863 1552 1333 849 1538 1983 864 1553 1983 864 1553 1333 849 1538 1982 850 1539 736 852 1541 737 851 1540 749 866 1555 749 866 1555 737 851 1540 750 865 1554 738 853 1542 751 867 1556 737 851 1540 737 851 1540 751 867 1556 750 865 1554 739 854 1543 752 868 1557 738 853 1542 738 853 1542 752 868 1557 751 867 1556 740 855 1544 753 869 1558 739 854 1543 739 854 1543 753 869 1558 752 868 1557 741 856 1545 754 870 1559 740 855 1544 740 855 1544 754 870 1559 753 869 1558 742 857 1546 755 871 1560 741 856 1545 741 856 1545 755 871 1560 754 870 1559 743 858 1547 756 872 1561 742 857 1546 742 857 1546 756 872 1561 755 871 1560 744 859 1548 757 873 1562 743 858 1547 743 858 1547 757 873 1562 756 872 1561 744 859 1548 745 860 1549 757 873 1562 757 873 1562 745 860 1549 758 874 1563 746 861 1550 759 875 1564 745 860 1549 745 860 1549 759 875 1564 758 874 1563 747 862 1551 760 876 1565 746 861 1550 746 861 1550 760 876 1565 759 875 1564 1335 877 1566 1334 863 1552 1984 878 1567 1984 878 1567 1334 863 1552 1983 864 1553 749 866 1555 750 865 1554 762 880 1569 762 880 1569 750 865 1554 763 879 1568 751 867 1556 764 881 1570 750 865 1554 750 865 1554 764 881 1570 763 879 1568 752 868 1557 765 882 1571 751 867 1556 751 867 1556 765 882 1571 764 881 1570 753 869 1558 766 883 1572 752 868 1557 752 868 1557 766 883 1572 765 882 1571 754 870 1559 767 884 1573 753 869 1558 753 869 1558 767 884 1573 766 883 1572 755 871 1560 768 885 1574 754 870 1559 754 870 1559 768 885 1574 767 884 1573 756 872 1561 769 886 1575 755 871 1560 755 871 1560 769 886 1575 768 885 1574 757 873 1562 770 887 1576 756 872 1561 756 872 1561 770 887 1576 769 886 1575 757 873 1562 758 874 1563 770 887 1576 770 887 1576 758 874 1563 771 888 1577 759 875 1564 772 889 1578 758 874 1563 758 874 1563 772 889 1578 771 888 1577 760 876 1565 773 890 1579 759 875 1564 759 875 1564 773 890 1579 772 889 1578 1336 891 1580 1335 877 1566 1981 892 1581 1981 892 1581 1335 877 1566 1984 878 1567 762 880 1569 763 879 1568 775 894 1583 775 894 1583 763 879 1568 776 893 1582 764 881 1570 777 895 1584 763 879 1568 763 879 1568 777 895 1584 776 893 1582 765 882 1571 778 896 1585 764 881 1570 764 881 1570 778 896 1585 777 895 1584 766 883 1572 779 897 1586 765 882 1571 765 882 1571 779 897 1586 778 896 1585 767 884 1573 780 898 1587 766 883 1572 766 883 1572 780 898 1587 779 897 1586 768 885 1574 781 899 1588 767 884 1573 767 884 1573 781 899 1588 780 898 1587 769 886 1575 782 900 1589 768 885 1574 768 885 1574 782 900 1589 781 899 1588 770 887 1576 783 901 1590 769 886 1575 769 886 1575 783 901 1590 782 900 1589 770 887 1576 771 888 1577 783 901 1590 783 901 1590 771 888 1577 784 902 1591 771 888 1577 772 889 1578 784 902 1591 784 902 1591 772 889 1578 785 903 1592 773 890 1579 786 904 1593 772 889 1578 772 889 1578 786 904 1593 785 903 1592 2 361 1172 1336 891 1580 87 359 1170 87 359 1170 1336 891 1580 1981 892 1581 775 894 1583 776 893 1582 787 906 1595 787 906 1595 776 893 1582 788 905 1594 777 895 1584 789 907 1596 776 893 1582 776 893 1582 789 907 1596 788 905 1594 778 896 1585 790 908 1597 777 895 1584 777 895 1584 790 908 1597 789 907 1596 779 897 1586 791 909 1598 778 896 1585 778 896 1585 791 909 1598 790 908 1597 780 898 1587 792 910 1599 779 897 1586 779 897 1586 792 910 1599 791 909 1598 781 899 1588 793 911 1600 780 898 1587 780 898 1587 793 911 1600 792 910 1599 782 900 1589 794 912 1601 781 899 1588 781 899 1588 794 912 1601 793 911 1600 783 901 1590 795 913 1602 782 900 1589 782 900 1589 795 913 1602 794 912 1601 783 901 1590 784 902 1591 795 913 1602 795 913 1602 784 902 1591 796 914 1603 784 902 1591 785 903 1592 796 914 1603 796 914 1603 785 903 1592 797 915 1604 786 904 1593 798 916 1605 785 903 1592 785 903 1592 798 916 1605 797 915 1604 787 906 1595 788 905 1594 799 918 1607 799 918 1607 788 905 1594 800 917 1606 789 907 1596 801 919 1608 788 905 1594 788 905 1594 801 919 1608 800 917 1606 790 908 1597 802 920 1609 789 907 1596 789 907 1596 802 920 1609 801 919 1608 791 909 1598 803 921 1610 790 908 1597 790 908 1597 803 921 1610 802 920 1609 792 910 1599 804 922 1611 791 909 1598 791 909 1598 804 922 1611 803 921 1610 793 911 1600 805 923 1612 792 910 1599 792 910 1599 805 923 1612 804 922 1611 794 912 1601 806 924 1613 793 911 1600 793 911 1600 806 924 1613 805 923 1612 795 913 1602 807 925 1614 794 912 1601 794 912 1601 807 925 1614 806 924 1613 795 913 1602 796 914 1603 807 925 1614 807 925 1614 796 914 1603 808 926 1615 796 914 1603 797 915 1604 808 926 1615 808 926 1615 797 915 1604 809 927 1616 798 916 1605 810 928 1617 797 915 1604 797 915 1604 810 928 1617 809 927 1616 799 918 1607 800 917 1606 811 930 1619 811 930 1619 800 917 1606 812 929 1618 801 919 1608 813 931 1620 800 917 1606 800 917 1606 813 931 1620 812 929 1618 802 920 1609 814 932 1621 801 919 1608 801 919 1608 814 932 1621 813 931 1620 803 921 1610 815 933 1622 802 920 1609 802 920 1609 815 933 1622 814 932 1621 804 922 1611 816 934 1623 803 921 1610 803 921 1610 816 934 1623 815 933 1622 805 923 1612 817 935 1624 804 922 1611 804 922 1611 817 935 1624 816 934 1623 806 924 1613 818 936 1625 805 923 1612 805 923 1612 818 936 1625 817 935 1624 807 925 1614 819 937 1626 806 924 1613 806 924 1613 819 937 1626 818 936 1625 807 925 1614 808 926 1615 819 937 1626 819 937 1626 808 926 1615 820 938 1627 808 926 1615 809 927 1616 820 938 1627 820 938 1627 809 927 1616 821 939 1628 810 928 1617 822 940 1629 809 927 1616 809 927 1616 822 940 1629 821 939 1628 811 930 1619 812 929 1618 823 942 1631 823 942 1631 812 929 1618 824 941 1630 813 931 1620 825 943 1632 812 929 1618 812 929 1618 825 943 1632 824 941 1630 814 932 1621 826 944 1633 813 931 1620 813 931 1620 826 944 1633 825 943 1632 815 933 1622 827 945 1634 814 932 1621 814 932 1621 827 945 1634 826 944 1633 816 934 1623 828 946 1635 815 933 1622 815 933 1622 828 946 1635 827 945 1634 817 935 1624 829 947 1636 816 934 1623 816 934 1623 829 947 1636 828 946 1635 818 936 1625 830 948 1637 817 935 1624 817 935 1624 830 948 1637 829 947 1636 818 936 1625 819 937 1626 830 948 1637 830 948 1637 819 937 1626 831 949 1638 819 937 1626 820 938 1627 831 949 1638 831 949 1638 820 938 1627 832 950 1639 820 938 1627 821 939 1628 832 950 1639 832 950 1639 821 939 1628 833 951 1640 821 939 1628 822 940 1629 833 951 1640 833 951 1640 822 940 1629 834 952 1641 823 942 1631 824 941 1630 846 954 1643 846 954 1643 824 941 1630 835 953 1642 825 943 1632 836 955 1644 824 941 1630 824 941 1630 836 955 1644 835 953 1642 826 944 1633 837 956 1645 825 943 1632 825 943 1632 837 956 1645 836 955 1644 827 945 1634 838 957 1646 826 944 1633 826 944 1633 838 957 1646 837 956 1645 828 946 1635 839 958 1647 827 945 1634 827 945 1634 839 958 1647 838 957 1646 829 947 1636 840 959 1648 828 946 1635 828 946 1635 840 959 1648 839 958 1647 830 948 1637 841 960 1649 829 947 1636 829 947 1636 841 960 1649 840 959 1648 830 948 1637 831 949 1638 841 960 1649 841 960 1649 831 949 1638 842 961 1650 831 949 1638 832 950 1639 842 961 1650 842 961 1650 832 950 1639 843 962 1651 833 951 1640 844 963 1652 832 950 1639 832 950 1639 844 963 1652 843 962 1651 833 951 1640 834 952 1641 844 963 1652 844 963 1652 834 952 1641 845 964 1653 846 954 1643 835 953 1642 847 966 1655 847 966 1655 835 953 1642 848 965 1654 835 953 1642 836 955 1644 848 965 1654 848 965 1654 836 955 1644 849 967 1656 836 955 1644 837 956 1645 849 967 1656 849 967 1656 837 956 1645 850 968 1657 837 956 1645 838 957 1646 850 968 1657 850 968 1657 838 957 1646 851 969 1658 839 958 1647 852 970 1659 838 957 1646 838 957 1646 852 970 1659 851 969 1658 840 959 1648 853 971 1660 839 958 1647 839 958 1647 853 971 1660 852 970 1659 841 960 1649 854 972 1661 840 959 1648 840 959 1648 854 972 1661 853 971 1660 841 960 1649 842 961 1650 854 972 1661 854 972 1661 842 961 1650 855 973 1662 843 962 1651 856 974 1663 842 961 1650 842 961 1650 856 974 1663 855 973 1662 844 963 1652 857 975 1664 843 962 1651 843 962 1651 857 975 1664 856 974 1663 845 964 1653 858 976 1665 844 963 1652 844 963 1652 858 976 1665 857 975 1664 847 966 1655 848 965 1654 859 978 1667 859 978 1667 848 965 1654 860 977 1666 848 965 1654 849 967 1656 860 977 1666 860 977 1666 849 967 1656 861 979 1668 849 967 1656 850 968 1657 861 979 1668 861 979 1668 850 968 1657 862 980 1669 853 971 1660 854 972 1661 863 981 1670 855 973 1662 864 982 1671 854 972 1661 854 972 1661 864 982 1671 863 981 1670 856 974 1663 865 983 1672 855 973 1662 855 973 1662 865 983 1672 864 982 1671 857 975 1664 866 984 1673 856 974 1663 856 974 1663 866 984 1673 865 983 1672 858 976 1665 867 985 1674 857 975 1664 857 975 1664 867 985 1674 866 984 1673 859 978 1667 860 977 1666 868 987 1676 868 987 1676 860 977 1666 869 986 1675 860 977 1666 861 979 1668 869 986 1675 869 986 1675 861 979 1668 870 988 1677 868 987 1676 869 986 1675 871 990 1679 871 990 1679 869 986 1675 872 989 1678 870 988 1677 873 991 1680 869 986 1675 869 986 1675 873 991 1680 872 989 1678 875 992 1681 874 993 1682 865 983 1672 865 983 1672 874 993 1682 864 982 1671 866 984 1673 876 994 1683 865 983 1672 865 983 1672 876 994 1683 875 992 1681 867 985 1674 877 995 1684 866 984 1673 866 984 1673 877 995 1684 876 994 1683 871 990 1679 872 989 1678 878 997 1686 878 997 1686 872 989 1678 879 996 1685 873 991 1680 880 998 1687 872 989 1678 872 989 1678 880 998 1687 879 996 1685 881 1000 1689 874 993 1682 882 999 1688 882 999 1688 874 993 1682 875 992 1681 875 992 1681 876 994 1683 882 999 1688 882 999 1688 876 994 1683 883 1001 1690 877 995 1684 884 1002 1691 876 994 1683 876 994 1683 884 1002 1691 883 1001 1690 878 997 1686 879 996 1685 885 1004 1693 885 1004 1693 879 996 1685 886 1003 1692 879 996 1685 880 998 1687 886 1003 1692 886 1003 1692 880 998 1687 887 1005 1694 889 1006 1695 888 1007 1696 882 999 1688 882 999 1688 888 1007 1696 881 1000 1689 882 999 1688 883 1001 1690 889 1006 1695 889 1006 1695 883 1001 1690 890 1008 1697 884 1002 1691 891 1009 1698 883 1001 1690 883 1001 1690 891 1009 1698 890 1008 1697 885 1004 1693 886 1003 1692 892 1011 1700 892 1011 1700 886 1003 1692 893 1010 1699 886 1003 1692 887 1005 1694 893 1010 1699 893 1010 1699 887 1005 1694 894 1012 1701 888 1007 1696 889 1006 1695 1313 1013 1702 1313 1013 1702 889 1006 1695 895 1014 1703 889 1006 1695 890 1008 1697 895 1014 1703 895 1014 1703 890 1008 1697 896 1015 1704 890 1008 1697 891 1009 1698 896 1015 1704 896 1015 1704 891 1009 1698 1314 1016 1705 891 1009 1698 1337 1017 1706 1314 1016 1705 1314 1016 1705 1337 1017 1706 897 1018 1707 1985 1019 1708 1337 1017 1706 1986 1021 1710 1986 1021 1710 1337 1017 1706 320 1020 1709 892 1011 1700 893 1010 1699 898 1023 1712 898 1023 1712 893 1010 1699 899 1022 1711 893 1010 1699 894 1012 1701 899 1022 1711 899 1022 1711 894 1012 1701 900 1024 1713 1312 1025 1714 1311 1026 1715 905 1028 1717 905 1028 1717 1311 1026 1715 906 1027 1716 697 808 1497 696 807 1496 907 1029 1718 698 811 1500 697 808 1497 907 1029 1718 699 813 1502 698 811 1500 907 1029 1718 700 815 1504 699 813 1502 907 1029 1718 701 817 1506 700 815 1504 907 1029 1718 702 819 1508 701 817 1506 907 1029 1718 703 821 1510 702 819 1508 907 1029 1718 704 823 1512 703 821 1510 907 1029 1718 705 825 1514 704 823 1512 907 1029 1718 706 827 1516 705 825 1514 907 1029 1718 707 829 1518 706 827 1516 907 1029 1718 707 829 1518 907 1029 1718 1331 831 1520 708 833 1522 1980 836 1525 907 1029 1718 941 1030 312 980 1031 313 1007 1033 315 1007 1033 315 980 1031 313 1044 1032 314 1007 1033 315 1028 1034 316 941 1030 312 941 1030 312 1028 1034 316 956 1035 317 942 1036 318 958 1037 319 1007 1033 315 1007 1033 315 958 1037 319 1028 1034 316 1007 1033 315 1044 1032 314 942 1036 318 942 1036 318 1044 1032 314 981 1038 320 943 1039 321 979 1040 322 1008 1042 324 1008 1042 324 979 1040 322 1043 1041 323 1008 1042 324 1029 1043 325 943 1039 321 943 1039 321 1029 1043 325 955 1044 326 941 1030 312 956 1035 317 1008 1042 324 1008 1042 324 956 1035 317 1029 1043 325 1008 1042 324 1043 1041 323 941 1030 312 941 1030 312 1043 1041 323 980 1031 313 944 1045 327 978 1046 328 1009 1048 330 1009 1048 330 978 1046 328 1042 1047 329 1009 1048 330 1027 1049 331 944 1045 327 944 1045 327 1027 1049 331 953 1050 332 943 1039 321 955 1044 326 1009 1048 330 1009 1048 330 955 1044 326 1027 1049 331 1009 1048 330 1042 1047 329 943 1039 321 943 1039 321 1042 1047 329 979 1040 322 977 1052 334 1041 1053 335 945 1051 333 945 1051 333 1041 1053 335 1010 1054 336 1010 1054 336 1030 1055 337 945 1051 333 945 1051 333 1030 1055 337 960 1056 338 944 1045 327 953 1050 332 1010 1054 336 1010 1054 336 953 1050 332 1030 1055 337 1010 1054 336 1041 1053 335 944 1045 327 944 1045 327 1041 1053 335 978 1046 328 1032 1058 340 964 1059 341 1011 1057 339 1011 1057 339 964 1059 341 946 1060 342 960 1056 338 1032 1058 340 945 1051 333 945 1051 333 1032 1058 340 1011 1057 339 1011 1057 339 946 1060 342 1067 1062 344 1067 1062 344 946 1060 342 1066 1061 343 976 1064 346 1040 1065 347 947 1063 345 947 1063 345 1040 1065 347 1012 1066 348 1034 1067 349 968 1068 350 1012 1066 348 1012 1066 348 968 1068 350 947 1063 345 964 1059 341 1034 1067 349 946 1060 342 946 1060 342 1034 1067 349 1012 1066 348 1040 1065 347 1066 1061 343 1012 1066 348 1012 1066 348 1066 1061 343 946 1060 342 975 1070 352 1039 1071 353 948 1069 351 948 1069 351 1039 1071 353 1013 1072 354 1036 1073 355 971 1074 356 1013 1072 354 1013 1072 354 971 1074 356 948 1069 351 968 1068 350 1036 1073 355 947 1063 345 947 1063 345 1036 1073 355 1013 1072 354 1039 1071 353 976 1064 346 1013 1072 354 1013 1072 354 976 1064 346 947 1063 345 973 1076 358 1038 1077 359 949 1075 357 949 1075 357 1038 1077 359 1014 1078 360 1035 1079 361 967 1080 362 1014 1078 360 1014 1078 360 967 1080 362 949 1075 357 971 1074 356 1035 1079 361 948 1069 351 948 1069 351 1035 1079 361 1014 1078 360 1038 1077 359 975 1070 352 1014 1078 360 1014 1078 360 975 1070 352 948 1069 351 974 1082 364 1037 1083 365 950 1081 363 950 1081 363 1037 1083 365 1015 1084 366 1033 1085 367 963 1086 368 1015 1084 366 1015 1084 366 963 1086 368 950 1081 363 967 1080 362 1033 1085 367 949 1075 357 949 1075 357 1033 1085 367 1015 1084 366 1037 1083 365 973 1076 358 1015 1084 366 1015 1084 366 973 1076 358 949 1075 357 942 1036 318 981 1038 320 1016 1088 370 1016 1088 370 981 1038 320 1045 1087 369 1016 1088 370 1031 1089 371 942 1036 318 942 1036 318 1031 1089 371 958 1037 319 950 1081 363 963 1086 368 1016 1088 370 1016 1088 370 963 1086 368 1031 1089 371 1016 1088 370 1045 1087 369 950 1081 363 950 1081 363 1045 1087 369 974 1082 364 1038 1077 359 973 1076 358 1044 1032 314 1044 1032 314 973 1076 358 981 1038 320 986 1090 1719 1048 1091 1720 1906 1093 1722 1906 1093 1722 1048 1091 1720 1907 1092 1721 923 1094 1723 1017 1095 1724 1908 1096 1725 1908 1096 1725 1017 1095 1724 1907 1092 1721 990 1097 1726 1050 1098 1727 1913 1100 1729 1913 1100 1729 1050 1098 1727 1911 1099 1728 925 1101 1730 1018 1102 1731 1909 1103 1732 1909 1103 1732 1018 1102 1731 1911 1099 1728 909 1104 1733 1051 1105 1734 1909 1103 1732 1909 1103 1732 1051 1105 1734 1905 1106 1735 951 1107 1736 1019 1108 1737 1906 1093 1722 1906 1093 1722 1019 1108 1737 1905 1106 1735 1052 1110 1739 1910 1111 1740 908 1109 1738 908 1109 1738 1910 1111 1740 1908 1096 1725 924 1112 1741 1020 1113 1742 1912 1114 1743 1912 1114 1743 1020 1113 1742 1910 1111 1740 910 1115 1744 1053 1116 1745 1912 1114 1743 1912 1114 1743 1053 1116 1745 1914 1117 1746 1021 1119 1748 1914 1117 1746 926 1118 1747 926 1118 1747 1914 1117 1746 1916 1120 1749 1022 1122 1751 1918 1123 1752 927 1121 1750 927 1121 1750 1918 1123 1752 1920 1124 1753 1046 1126 1755 1918 1123 1752 982 1125 1754 982 1125 1754 1918 1123 1752 1916 1120 1749 1047 1128 1757 1922 1129 1758 984 1127 1756 984 1127 1756 1922 1129 1758 1920 1124 1753 1023 1131 1760 1922 1129 1758 929 1130 1759 929 1130 1759 1922 1129 1758 1924 1132 1761 1054 1134 1763 1923 1135 1764 911 1133 1762 911 1133 1762 1923 1135 1764 1924 1132 1761 1024 1137 1766 1923 1135 1764 930 1136 1765 930 1136 1765 1923 1135 1764 1921 1138 1767 1049 1140 1769 1919 1141 1770 988 1139 1768 988 1139 1768 1919 1141 1770 1921 1138 1767 1025 1143 1772 1919 1141 1770 928 1142 1771 928 1142 1771 1919 1141 1770 1917 1144 1773 1055 1146 1775 1915 1147 1776 912 1145 1774 912 1145 1774 1915 1147 1776 1917 1144 1773 1026 1149 1778 1915 1147 1776 952 1148 1777 952 1148 1777 1915 1147 1776 1913 1100 1729 1027 1049 331 954 1150 969 953 1050 332 953 1050 332 954 1150 969 914 1151 963 954 1152 969 1027 1049 331 913 1153 967 913 1153 967 1027 1049 331 955 1044 326 1028 1034 316 957 1154 968 956 1035 317 956 1035 317 957 1154 968 916 1155 965 957 1156 968 1028 1034 316 915 1157 962 915 1157 962 1028 1034 316 958 1037 319 1029 1043 325 959 1158 966 955 1044 326 955 1044 326 959 1158 966 913 1159 967 959 1160 966 1029 1043 325 916 1161 965 916 1161 965 1029 1043 325 956 1035 317 1030 1055 337 961 1162 964 960 1056 338 960 1056 338 961 1162 964 917 1163 959 961 1164 964 1030 1055 337 914 1165 963 914 1165 963 1030 1055 337 953 1050 332 1031 1089 371 962 1166 961 958 1037 319 958 1037 319 962 1166 961 915 1167 962 962 1168 961 1031 1089 371 918 1169 958 918 1169 958 1031 1089 371 963 1086 368 964 1059 341 1032 1058 340 919 1171 955 919 1171 955 1032 1058 340 965 1170 960 1032 1058 340 960 1056 338 965 1172 960 965 1172 960 960 1056 338 917 1173 959 963 1086 368 1033 1085 367 918 1175 958 918 1175 958 1033 1085 367 966 1174 957 1033 1085 367 967 1080 362 966 1176 957 966 1176 957 967 1080 362 920 1177 954 968 1068 350 1034 1067 349 921 1179 950 921 1179 950 1034 1067 349 969 1178 956 1034 1067 349 964 1059 341 969 1180 956 969 1180 956 964 1059 341 919 1181 955 967 1080 362 1035 1079 361 920 1183 954 920 1183 954 1035 1079 361 970 1182 953 1035 1079 361 971 1074 356 970 1184 953 970 1184 953 971 1074 356 922 1185 952 971 1074 356 1036 1073 355 922 1187 952 922 1187 952 1036 1073 355 972 1186 951 1036 1073 355 968 1068 350 972 1188 951 972 1188 951 968 1068 350 921 1189 950 954 1191 1780 1020 1113 1742 914 1190 1779 914 1190 1779 1020 1113 1742 924 1112 1741 1020 1113 1742 954 1192 1780 923 1094 1723 923 1094 1723 954 1192 1780 913 1193 1781 957 1195 1783 1019 1108 1737 916 1194 1782 916 1194 1782 1019 1108 1737 951 1107 1736 925 1101 1730 1019 1108 1737 915 1197 1784 915 1197 1784 1019 1108 1737 957 1196 1783 923 1094 1723 913 1198 1781 1017 1095 1724 1017 1095 1724 913 1198 1781 959 1199 1785 916 1200 1782 951 1107 1736 959 1201 1785 959 1201 1785 951 1107 1736 1017 1095 1724 961 1203 1787 1021 1119 1748 917 1202 1786 917 1202 1786 1021 1119 1748 926 1118 1747 914 1204 1779 924 1112 1741 961 1205 1787 961 1205 1787 924 1112 1741 1021 1119 1748 915 1206 1784 962 1207 1788 925 1101 1730 925 1101 1730 962 1207 1788 1018 1102 1731 952 1148 1777 1018 1102 1731 918 1209 1789 918 1209 1789 1018 1102 1731 962 1208 1788 965 1211 1791 1022 1122 1751 919 1210 1790 919 1210 1790 1022 1122 1751 927 1121 1750 917 1212 1786 926 1118 1747 965 1213 1791 965 1213 1791 926 1118 1747 1022 1122 1751 918 1214 1789 966 1215 1792 952 1148 1777 952 1148 1777 966 1215 1792 1026 1149 1778 928 1142 1771 1026 1149 1778 920 1217 1793 920 1217 1793 1026 1149 1778 966 1216 1792 969 1219 1795 1023 1131 1760 921 1218 1794 921 1218 1794 1023 1131 1760 929 1130 1759 919 1220 1790 927 1121 1750 969 1221 1795 969 1221 1795 927 1121 1750 1023 1131 1760 920 1222 1793 970 1223 1796 928 1142 1771 928 1142 1771 970 1223 1796 1025 1143 1772 930 1136 1765 1025 1143 1772 922 1225 1797 922 1225 1797 1025 1143 1772 970 1224 1796 930 1136 1765 922 1226 1797 1024 1137 1766 1024 1137 1766 922 1226 1797 972 1227 1798 921 1228 1794 929 1130 1759 972 1229 1798 972 1229 1798 929 1130 1759 1024 1137 1766 1046 1126 1755 996 1230 1799 984 1127 1756 984 1127 1756 996 1230 1799 932 1231 1800 1046 1126 1755 982 1125 1754 996 1230 1799 996 1230 1799 982 1125 1754 931 1232 1801 1047 1128 1757 983 1233 1802 911 1133 1762 911 1133 1762 983 1233 1802 933 1234 1803 983 1233 1802 1047 1128 1757 932 1231 1800 932 1231 1800 1047 1128 1757 984 1127 1756 908 1109 1738 1048 1091 1720 935 1236 1805 935 1236 1805 1048 1091 1720 985 1235 1804 1048 1091 1720 986 1090 1719 985 1235 1804 985 1235 1804 986 1090 1719 934 1237 1806 1049 1140 1769 987 1238 1807 912 1145 1774 912 1145 1774 987 1238 1807 937 1239 1808 987 1238 1807 1049 1140 1769 936 1240 1809 936 1240 1809 1049 1140 1769 988 1139 1768 909 1104 1733 1050 1098 1727 939 1242 1811 939 1242 1811 1050 1098 1727 989 1241 1810 989 1241 1810 1050 1098 1727 938 1243 1812 938 1243 1812 1050 1098 1727 990 1097 1726 986 1090 1719 1051 1105 1734 934 1237 1806 934 1237 1806 1051 1105 1734 991 1244 1813 1051 1105 1734 909 1104 1733 991 1244 1813 991 1244 1813 909 1104 1733 939 1242 1811 910 1115 1744 1052 1110 1739 940 1246 1815 940 1246 1815 1052 1110 1739 992 1245 1814 1052 1110 1739 908 1109 1738 992 1245 1814 992 1245 1814 908 1109 1738 935 1236 1805 982 1125 1754 1053 1116 1745 931 1232 1801 931 1232 1801 1053 1116 1745 993 1247 1816 1053 1116 1745 910 1115 1744 993 1247 1816 993 1247 1816 910 1115 1744 940 1246 1815 1054 1134 1763 994 1248 1817 988 1139 1768 988 1139 1768 994 1248 1817 936 1240 1809 994 1248 1817 1054 1134 1763 933 1234 1803 933 1234 1803 1054 1134 1763 911 1133 1762 1055 1146 1775 995 1249 1818 990 1097 1726 990 1097 1726 995 1249 1818 938 1243 1812 995 1249 1818 1055 1146 1775 937 1239 1808 937 1239 1808 1055 1146 1775 912 1145 1774 1056 1250 1819 997 1251 1820 996 1230 1799 996 1230 1799 997 1251 1820 932 1231 1800 998 1252 1821 1056 1250 1819 931 1232 1801 931 1232 1801 1056 1250 1819 996 1230 1799 983 1233 1802 1057 1253 1822 933 1234 1803 933 1234 1803 1057 1253 1822 999 1254 1823 1057 1253 1822 983 1233 1802 997 1251 1820 997 1251 1820 983 1233 1802 932 1231 1800 1058 1255 1824 1000 1256 1825 985 1235 1804 985 1235 1804 1000 1256 1825 935 1236 1805 1001 1257 1826 1058 1255 1824 934 1237 1806 934 1237 1806 1058 1255 1824 985 1235 1804 987 1238 1807 1059 1258 1827 937 1239 1808 937 1239 1808 1059 1258 1827 1002 1259 1828 1059 1258 1827 987 1238 1807 1003 1260 1829 1003 1260 1829 987 1238 1807 936 1240 1809 989 1241 1810 1060 1261 1830 939 1242 1811 939 1242 1811 1060 1261 1830 1004 1262 1831 1060 1261 1830 989 1241 1810 1005 1263 1832 1005 1263 1832 989 1241 1810 938 1243 1812 1061 1264 1833 1001 1257 1826 991 1244 1813 991 1244 1813 1001 1257 1826 934 1237 1806 1004 1262 1831 1061 1264 1833 939 1242 1811 939 1242 1811 1061 1264 1833 991 1244 1813 1062 1265 1834 1006 1266 1835 992 1245 1814 992 1245 1814 1006 1266 1835 940 1246 1815 1000 1256 1825 1062 1265 1834 935 1236 1805 935 1236 1805 1062 1265 1834 992 1245 1814 1063 1267 1836 998 1252 1821 993 1247 1816 993 1247 1816 998 1252 1821 931 1232 1801 1006 1266 1835 1063 1267 1836 940 1246 1815 940 1246 1815 1063 1267 1836 993 1247 1816 994 1248 1817 1064 1268 1837 936 1240 1809 936 1240 1809 1064 1268 1837 1003 1260 1829 1064 1268 1837 994 1248 1817 999 1254 1823 999 1254 1823 994 1248 1817 933 1234 1803 995 1249 1818 1065 1269 1838 938 1243 1812 938 1243 1812 1065 1269 1838 1005 1263 1832 1065 1269 1838 995 1249 1818 1002 1259 1828 1002 1259 1828 995 1249 1818 937 1239 1808 1037 1083 365 974 1082 364 973 1076 358 973 1076 358 974 1082 364 981 1038 320 974 1082 364 1045 1087 369 981 1038 320 980 1031 313 1043 1041 323 975 1070 352 975 1070 352 1043 1041 323 1039 1071 353 1044 1032 314 980 1031 313 1038 1077 359 1038 1077 359 980 1031 313 975 1070 352 1043 1041 323 979 1040 322 1039 1071 353 1039 1071 353 979 1040 322 976 1064 346 1041 1053 335 977 1052 334 978 1046 328 1066 1061 343 978 1046 328 1067 1062 344 978 1046 328 977 1052 334 1067 1062 344 1042 1047 329 1040 1065 347 979 1040 322 979 1040 322 1040 1065 347 976 1064 346 1067 1062 344 977 1052 334 1011 1057 339 1011 1057 339 977 1052 334 945 1051 333 978 1046 328 1066 1061 343 1042 1047 329 1042 1047 329 1066 1061 343 1040 1065 347 997 1251 1820 1056 1250 1819 903 1271 1840 903 1271 1840 1056 1250 1819 904 1270 1839 1056 1250 1819 998 1252 1821 904 1270 1839 904 1270 1839 998 1252 1821 1313 1013 1702 1057 1253 1822 902 1272 1841 999 1254 1823 999 1254 1823 902 1272 1841 901 1273 1842 1058 1255 1824 863 981 1670 1000 1256 1825 1000 1256 1825 863 981 1670 864 982 1671 1058 1255 1824 1001 1257 1826 863 981 1670 863 981 1670 1001 1257 1826 853 971 1660 1059 1258 1827 887 1005 1694 1002 1259 1828 1002 1259 1828 887 1005 1694 880 998 1687 1003 1260 1829 894 1012 1701 1059 1258 1827 1059 1258 1827 894 1012 1701 887 1005 1694 1004 1262 1831 1060 1261 1830 851 969 1658 851 969 1658 1060 1261 1830 862 980 1669 1060 1261 1830 1005 1263 1832 862 980 1669 862 980 1669 1005 1263 1832 870 988 1677 1061 1264 1833 852 970 1659 1001 1257 1826 1001 1257 1826 852 970 1659 853 971 1660 1061 1264 1833 1004 1262 1831 852 970 1659 852 970 1659 1004 1262 1831 851 969 1658 1006 1266 1835 1062 1265 1834 881 1000 1689 881 1000 1689 1062 1265 1834 874 993 1682 1062 1265 1834 1000 1256 1825 874 993 1682 874 993 1682 1000 1256 1825 864 982 1671 1063 1267 1836 1006 1266 1835 888 1007 1696 888 1007 1696 1006 1266 1835 881 1000 1689 1003 1260 1829 1064 1268 1837 894 1012 1701 894 1012 1701 1064 1268 1837 900 1024 1713 999 1254 1823 901 1273 1842 1064 1268 1837 1064 1268 1837 901 1273 1842 900 1024 1713 1005 1263 1832 1065 1269 1838 870 988 1677 870 988 1677 1065 1269 1838 873 991 1680 1065 1269 1838 1002 1259 1828 873 991 1680 873 991 1680 1002 1259 1828 880 998 1687 997 1251 1820 903 1271 1840 1057 1253 1822 1057 1253 1822 903 1271 1840 902 1272 1841 870 988 1677 861 979 1668 862 980 1669 862 980 1669 850 968 1657 851 969 1658 1063 1267 1836 888 1007 1696 998 1252 1821 998 1252 1821 888 1007 1696 1313 1013 1702 1116 1274 372 1237 1275 373 1117 1276 374 1237 1275 373 1152 1278 376 1151 1277 375 1151 1277 375 1152 1278 376 1117 1276 374 1153 1279 377 1238 1280 378 1070 1282 380 1070 1282 380 1238 1280 378 1092 1281 379 1238 1280 378 1153 1279 377 1308 1283 381 1308 1283 381 1153 1279 377 1309 1284 382 1239 1285 383 1310 1286 384 1153 1279 377 1153 1279 377 1310 1286 384 1309 1284 382 1110 1287 385 1287 1288 386 1093 1289 387 1093 1289 387 1287 1288 386 1239 1285 383 1239 1285 383 1153 1279 377 1093 1289 387 1093 1289 387 1153 1279 377 1070 1282 380 1118 1291 389 1154 1292 390 1219 1290 388 1219 1290 388 1154 1292 390 1297 1293 391 1115 1295 393 1297 1293 391 1113 1294 392 1113 1294 392 1297 1293 391 1154 1292 390 1112 1297 395 1150 1298 396 1120 1296 394 1120 1296 394 1150 1298 396 1155 1299 397 1071 1300 398 1155 1299 397 1069 1302 399 1069 1302 399 1155 1299 397 1150 1301 396 1154 1292 390 1240 1303 400 1113 1305 392 1113 1305 392 1240 1303 400 1156 1304 401 1240 1303 400 1277 1307 402 1156 1306 401 1156 1306 401 1277 1307 402 1114 1308 403 1277 1307 402 1240 1303 400 1222 1310 405 1222 1310 405 1240 1303 400 1157 1309 404 1240 1303 400 1154 1292 390 1157 1309 404 1157 1309 404 1154 1292 390 1118 1291 389 1121 1312 407 1158 1313 408 1218 1311 406 1218 1311 406 1158 1313 408 1274 1314 409 1219 1290 388 1274 1314 409 1118 1291 389 1118 1291 389 1274 1314 409 1158 1313 408 1159 1315 410 1241 1316 411 1123 1318 413 1123 1318 413 1241 1316 411 1160 1317 412 1241 1316 411 1245 1319 414 1160 1317 412 1160 1317 412 1245 1319 414 1124 1320 415 1245 1319 414 1241 1316 411 1161 1321 416 1161 1321 416 1241 1316 411 1122 1322 417 1122 1322 417 1241 1316 411 1159 1315 410 1162 1323 418 1242 1324 419 1120 1296 394 1120 1296 394 1242 1324 419 1119 1325 420 1242 1324 419 1162 1323 418 1220 1326 421 1220 1326 421 1162 1323 418 1125 1327 422 1162 1323 418 1243 1328 423 1125 1327 422 1125 1327 422 1243 1328 423 1163 1329 424 1243 1328 423 1094 1330 425 1163 1329 424 1163 1329 424 1094 1330 425 1072 1331 426 1094 1330 425 1243 1328 423 1071 1300 398 1071 1300 398 1243 1328 423 1155 1299 397 1243 1328 423 1162 1323 418 1155 1299 397 1155 1299 397 1162 1323 418 1120 1296 394 1278 1332 427 1244 1333 428 1223 1335 430 1223 1335 430 1244 1333 428 1164 1334 429 1164 1334 429 1244 1333 428 1121 1312 407 1121 1312 407 1244 1333 428 1158 1313 408 1244 1333 428 1157 1309 404 1158 1313 408 1158 1313 408 1157 1309 404 1118 1291 389 1244 1333 428 1278 1332 427 1157 1309 404 1157 1309 404 1278 1332 427 1222 1310 405 1124 1320 415 1245 1319 414 1126 1337 432 1126 1337 432 1245 1319 414 1165 1336 431 1165 1336 431 1245 1319 414 1166 1338 433 1129 1340 435 1167 1341 436 1208 1339 434 1208 1339 434 1167 1341 436 1128 1342 437 1167 1341 436 1129 1340 435 1209 1344 439 1209 1344 439 1129 1340 435 1296 1343 438 1168 1345 440 1246 1346 441 1073 1348 443 1073 1348 443 1246 1346 441 1095 1347 442 1095 1347 442 1246 1346 441 1074 1350 445 1074 1350 445 1246 1346 441 1266 1349 444 1246 1346 441 1167 1341 436 1266 1349 444 1266 1349 444 1167 1341 436 1209 1344 439 1246 1346 441 1168 1345 440 1167 1341 436 1167 1341 436 1168 1345 440 1128 1342 437 1228 1351 446 1247 1352 447 1131 1354 449 1131 1354 449 1247 1352 447 1170 1353 448 1247 1352 447 1169 1355 450 1170 1353 448 1170 1353 448 1169 1355 450 1130 1356 451 1248 1358 453 1172 1359 454 1171 1357 452 1171 1357 452 1172 1359 454 1132 1360 455 1248 1358 453 1237 1275 373 1172 1359 454 1172 1359 454 1237 1275 373 1116 1274 372 1301 1361 456 1174 1362 457 1171 1357 452 1171 1357 452 1174 1362 457 1248 1358 453 1248 1358 453 1173 1363 458 1237 1275 373 1237 1275 373 1173 1363 458 1152 1278 376 1173 1363 458 1248 1358 453 1133 1364 459 1133 1364 459 1248 1358 453 1174 1362 457 1175 1365 460 1249 1366 461 1306 1368 463 1306 1368 463 1249 1366 461 1307 1367 462 1249 1366 461 1238 1280 378 1307 1367 462 1307 1367 462 1238 1280 378 1308 1283 381 1238 1280 378 1249 1366 461 1092 1281 379 1092 1281 379 1249 1366 461 1096 1369 464 1249 1366 461 1175 1365 460 1096 1369 464 1096 1369 464 1175 1365 460 1075 1370 465 1218 1311 406 1273 1371 466 1121 1312 407 1121 1312 407 1273 1371 466 1176 1372 467 1135 1374 469 1176 1372 467 1134 1373 468 1134 1373 468 1176 1372 467 1273 1371 466 1177 1375 470 1250 1376 471 1136 1378 473 1136 1378 473 1250 1376 471 1178 1377 472 1250 1376 471 1179 1379 474 1178 1377 472 1178 1377 472 1179 1379 474 1137 1380 475 1179 1379 474 1250 1376 471 1132 1360 455 1132 1360 455 1250 1376 471 1171 1357 452 1251 1382 477 1177 1375 470 1180 1381 476 1180 1381 476 1177 1375 470 1136 1378 473 1174 1362 457 1301 1361 456 1235 1384 479 1181 1383 478 1235 1384 479 1301 1361 456 1181 1383 478 1251 1382 477 1126 1337 432 1126 1337 432 1251 1382 477 1182 1385 480 1251 1382 477 1180 1381 476 1182 1385 480 1182 1385 480 1180 1381 476 1138 1386 481 1252 1388 483 1179 1379 474 1183 1387 482 1183 1387 482 1179 1379 474 1132 1360 455 1179 1379 474 1252 1388 483 1137 1380 475 1137 1380 475 1252 1388 483 1184 1389 484 1252 1388 483 1286 1390 485 1184 1389 484 1184 1389 484 1286 1390 485 1232 1391 486 1286 1390 485 1252 1388 483 1233 1392 487 1233 1392 487 1252 1388 483 1183 1387 482 1217 1394 489 1272 1395 490 1139 1393 488 1139 1393 488 1272 1395 490 1185 1396 491 1140 1398 493 1185 1396 491 1216 1397 492 1216 1397 492 1185 1396 491 1272 1395 490 1186 1399 494 1253 1400 495 1142 1402 497 1142 1402 497 1253 1400 495 1187 1401 496 1253 1400 495 1188 1403 498 1187 1401 496 1187 1401 496 1188 1403 498 1144 1404 499 1188 1403 498 1253 1400 495 1143 1406 501 1143 1406 501 1253 1400 495 1189 1405 500 1253 1400 495 1186 1399 494 1189 1405 500 1189 1405 500 1186 1399 494 1141 1407 502 1190 1408 503 1254 1409 504 1145 1411 506 1145 1411 506 1254 1409 504 1191 1410 505 1254 1409 504 1192 1412 507 1191 1410 505 1191 1410 505 1192 1412 507 1130 1356 451 1254 1409 504 1186 1399 494 1192 1412 507 1192 1412 507 1186 1399 494 1142 1402 497 1186 1399 494 1254 1409 504 1141 1407 502 1141 1407 502 1254 1409 504 1190 1408 503 1193 1413 508 1255 1414 509 1225 1416 511 1225 1416 511 1255 1414 509 1281 1415 510 1255 1414 509 1194 1417 512 1281 1415 510 1281 1415 510 1194 1417 512 1226 1418 513 1194 1417 512 1255 1414 509 1140 1398 493 1140 1398 493 1255 1414 509 1185 1396 491 1255 1414 509 1193 1413 508 1185 1396 491 1185 1396 491 1193 1413 508 1139 1393 488 1256 1420 515 1188 1403 498 1195 1419 514 1195 1419 514 1188 1403 498 1143 1406 501 1188 1403 498 1256 1420 515 1144 1404 499 1144 1404 499 1256 1420 515 1196 1421 516 1256 1420 515 1284 1422 517 1196 1421 516 1196 1421 516 1284 1422 517 1230 1423 518 1284 1422 517 1256 1420 515 1231 1424 519 1231 1424 519 1256 1420 515 1195 1419 514 1216 1397 492 1271 1425 520 1140 1398 493 1140 1398 493 1271 1425 520 1194 1417 512 1227 1426 521 1226 1418 513 1271 1425 520 1271 1425 520 1226 1418 513 1194 1417 512 1257 1428 523 1283 1429 524 1197 1427 522 1197 1427 522 1283 1429 524 1229 1430 525 1283 1429 524 1257 1428 523 1230 1423 518 1230 1423 518 1257 1428 523 1196 1421 516 1196 1421 516 1257 1428 523 1144 1404 499 1144 1404 499 1257 1428 523 1187 1401 496 1257 1428 523 1197 1427 522 1187 1401 496 1187 1401 496 1197 1427 522 1142 1402 497 1198 1431 526 1258 1432 527 1125 1327 422 1125 1327 422 1258 1432 527 1220 1326 421 1258 1432 527 1198 1431 526 1221 1433 528 1221 1433 528 1198 1431 526 1146 1434 529 1259 1436 531 1199 1437 532 1200 1435 530 1200 1435 530 1199 1437 532 1147 1438 533 1174 1362 457 1260 1439 534 1133 1364 459 1133 1364 459 1260 1439 534 1201 1440 535 1304 1442 537 1305 1443 538 1302 1441 536 1302 1441 536 1305 1443 538 1201 1440 535 1198 1431 526 1261 1444 539 1146 1434 529 1146 1434 529 1261 1444 539 1203 1445 540 1261 1444 539 1097 1446 541 1203 1445 540 1203 1445 540 1097 1446 541 1076 1447 542 1097 1446 541 1261 1444 539 1072 1331 426 1072 1331 426 1261 1444 539 1163 1329 424 1261 1444 539 1198 1431 526 1163 1329 424 1163 1329 424 1198 1431 526 1125 1327 422 1262 1448 543 1175 1365 460 1305 1443 538 1305 1443 538 1175 1365 460 1306 1368 463 1175 1365 460 1262 1448 543 1075 1370 465 1075 1370 465 1262 1448 543 1098 1449 544 1262 1448 543 1204 1450 545 1098 1449 544 1098 1449 544 1204 1450 545 1077 1451 546 1204 1450 545 1262 1448 543 1304 1442 537 1304 1442 537 1262 1448 543 1305 1443 538 1148 1452 547 1276 1453 548 1146 1434 529 1146 1434 529 1276 1453 548 1221 1433 528 1199 1437 532 1206 1454 549 1147 1438 533 1147 1438 533 1206 1454 549 1205 1455 550 1303 1457 552 1304 1442 537 1265 1456 551 1265 1456 551 1304 1442 537 1302 1441 536 1078 1458 553 1263 1459 554 1076 1447 542 1076 1447 542 1263 1459 554 1203 1445 540 1263 1459 554 1148 1452 547 1203 1445 540 1203 1445 540 1148 1452 547 1146 1434 529 1204 1450 545 1264 1460 555 1077 1451 546 1077 1451 546 1264 1460 555 1099 1461 556 1264 1460 555 1204 1450 545 1303 1457 552 1303 1457 552 1204 1450 545 1304 1442 537 1206 1454 549 1129 1340 435 1205 1455 550 1205 1455 550 1129 1340 435 1208 1339 434 1074 1350 445 1266 1349 444 1078 1458 553 1078 1458 553 1266 1349 444 1263 1459 554 1266 1349 444 1209 1344 439 1263 1459 554 1263 1459 554 1209 1344 439 1148 1452 547 1267 1463 558 1210 1464 559 1279 1462 557 1279 1462 557 1210 1464 559 1224 1465 560 1210 1464 559 1267 1463 558 1135 1374 469 1135 1374 469 1267 1463 558 1176 1372 467 1267 1463 558 1164 1334 429 1176 1372 467 1176 1372 467 1164 1334 429 1121 1312 407 1164 1334 429 1267 1463 558 1223 1335 430 1223 1335 430 1267 1463 558 1279 1462 557 1285 1466 561 1268 1467 562 1232 1391 486 1232 1391 486 1268 1467 562 1184 1389 484 1268 1467 562 1211 1468 563 1184 1389 484 1184 1389 484 1211 1468 563 1137 1380 475 1211 1468 563 1268 1467 562 1143 1406 501 1143 1406 501 1268 1467 562 1195 1419 514 1268 1467 562 1285 1466 561 1195 1419 514 1195 1419 514 1285 1466 561 1231 1424 519 1149 1469 564 1269 1470 565 1145 1411 506 1145 1411 506 1269 1470 565 1212 1471 566 1269 1470 565 1213 1472 567 1212 1471 566 1212 1471 566 1213 1472 567 1138 1386 481 1134 1373 468 1300 1473 568 1135 1374 469 1135 1374 469 1300 1473 568 1214 1474 569 1139 1393 488 1214 1474 569 1217 1394 489 1217 1394 489 1214 1474 569 1300 1473 568 1215 1475 570 1270 1476 571 1141 1407 502 1141 1407 502 1270 1476 571 1189 1405 500 1270 1476 571 1211 1468 563 1189 1405 500 1189 1405 500 1211 1468 563 1143 1406 501 1211 1468 563 1270 1476 571 1137 1380 475 1137 1380 475 1270 1476 571 1178 1377 472 1270 1476 571 1215 1475 570 1178 1377 472 1178 1377 472 1215 1475 570 1136 1378 473 1227 1426 521 1271 1425 520 1228 1351 446 1228 1351 446 1271 1425 520 1247 1352 447 1271 1425 520 1216 1397 492 1247 1352 447 1247 1352 447 1216 1397 492 1169 1355 450 1216 1397 492 1272 1395 490 1169 1355 450 1169 1355 450 1272 1395 490 1293 1477 572 1272 1395 490 1217 1394 489 1293 1477 572 1293 1477 572 1217 1394 489 1149 1469 564 1134 1373 468 1273 1371 466 1213 1472 567 1213 1472 567 1273 1371 466 1290 1478 573 1273 1371 466 1218 1311 406 1290 1478 573 1290 1478 573 1218 1311 406 1124 1320 415 1218 1311 406 1274 1314 409 1124 1320 415 1124 1320 415 1274 1314 409 1160 1317 412 1274 1314 409 1219 1290 388 1160 1317 412 1160 1317 412 1219 1290 388 1123 1318 413 1275 1480 574 1159 1315 410 1115 1479 393 1115 1479 393 1159 1315 410 1123 1318 413 1330 1481 575 1161 1321 416 1122 1322 417 1259 1436 531 1258 1432 527 1199 1437 532 1199 1437 532 1258 1432 527 1221 1433 528 1276 1453 548 1206 1454 549 1221 1433 528 1221 1433 528 1206 1454 549 1199 1437 532 1296 1343 438 1129 1340 435 1276 1453 548 1276 1453 548 1129 1340 435 1206 1454 549 1114 1482 403 1277 1307 402 1068 1484 577 1068 1484 577 1277 1307 402 1100 1483 576 1100 1483 576 1277 1307 402 1079 1485 578 1079 1485 578 1277 1307 402 1222 1310 405 1278 1332 427 1101 1486 579 1222 1310 405 1222 1310 405 1101 1486 579 1079 1485 578 1101 1486 579 1278 1332 427 1080 1487 580 1080 1487 580 1278 1332 427 1223 1335 430 1279 1462 557 1102 1488 581 1223 1335 430 1223 1335 430 1102 1488 581 1080 1487 580 1279 1462 557 1224 1465 560 1102 1488 581 1102 1488 581 1224 1465 560 1081 1489 582 1224 1465 560 1280 1490 583 1081 1489 582 1081 1489 582 1280 1490 583 1103 1491 584 1280 1490 583 1225 1416 511 1103 1491 584 1103 1491 584 1225 1416 511 1082 1492 585 1225 1416 511 1281 1415 510 1082 1492 585 1082 1492 585 1281 1415 510 1104 1493 586 1281 1415 510 1226 1418 513 1104 1493 586 1104 1493 586 1226 1418 513 1083 1494 587 1226 1418 513 1227 1426 521 1083 1494 587 1083 1494 587 1227 1426 521 1084 1495 588 1227 1426 521 1228 1351 446 1084 1495 588 1084 1495 588 1228 1351 446 1085 1496 589 1282 1497 590 1105 1498 591 1131 1354 449 1131 1354 449 1105 1498 591 1087 1499 592 1105 1498 591 1282 1497 590 1086 1500 593 1086 1500 593 1282 1497 590 1229 1430 525 1106 1501 594 1283 1429 524 1088 1502 595 1088 1502 595 1283 1429 524 1230 1423 518 1283 1429 524 1106 1501 594 1229 1430 525 1229 1430 525 1106 1501 594 1086 1500 593 1284 1422 517 1107 1503 596 1230 1423 518 1230 1423 518 1107 1503 596 1088 1502 595 1107 1503 596 1284 1422 517 1089 1504 597 1089 1504 597 1284 1422 517 1231 1424 519 1108 1505 598 1285 1466 561 1090 1506 599 1090 1506 599 1285 1466 561 1232 1391 486 1285 1466 561 1108 1505 598 1231 1424 519 1231 1424 519 1108 1505 598 1089 1504 597 1286 1390 485 1109 1507 600 1232 1391 486 1232 1391 486 1109 1507 600 1090 1506 599 1109 1507 600 1286 1390 485 1091 1508 601 1091 1508 601 1286 1390 485 1233 1392 487 1287 1288 386 1110 1287 385 1233 1392 487 1233 1392 487 1110 1287 385 1091 1508 601 1168 1345 440 1288 1509 602 1128 1342 437 1128 1342 437 1288 1509 602 1234 1510 603 1288 1509 602 1264 1460 555 1234 1510 603 1234 1510 603 1264 1460 555 1303 1457 552 1264 1460 555 1288 1509 602 1099 1461 556 1099 1461 556 1288 1509 602 1111 1511 604 1288 1509 602 1168 1345 440 1111 1511 604 1111 1511 604 1168 1345 440 1073 1348 443 1085 1496 589 1228 1351 446 1087 1499 592 1087 1499 592 1228 1351 446 1131 1354 449 1289 1512 605 1235 1384 479 1200 1435 530 1200 1435 530 1235 1384 479 1127 1513 606 1235 1384 479 1289 1512 605 1174 1362 457 1174 1362 457 1289 1512 605 1260 1439 534 1289 1512 605 1236 1514 607 1260 1439 534 1260 1439 534 1236 1514 607 1202 1515 608 1236 1514 607 1289 1512 605 1147 1438 533 1147 1438 533 1289 1512 605 1200 1435 530 1213 1472 567 1290 1478 573 1138 1386 481 1138 1386 481 1290 1478 573 1182 1385 480 1182 1385 480 1290 1478 573 1126 1337 432 1126 1337 432 1290 1478 573 1124 1320 415 1291 1516 609 1236 1514 607 1205 1455 550 1205 1455 550 1236 1514 607 1147 1438 533 1236 1514 607 1291 1516 609 1202 1515 608 1202 1515 608 1291 1516 609 1207 1517 610 1215 1475 570 1292 1518 611 1136 1378 473 1136 1378 473 1292 1518 611 1180 1381 476 1180 1381 476 1292 1518 611 1138 1386 481 1138 1386 481 1292 1518 611 1212 1471 566 1292 1518 611 1190 1408 503 1212 1471 566 1212 1471 566 1190 1408 503 1145 1411 506 1292 1518 611 1215 1475 570 1190 1408 503 1190 1408 503 1215 1475 570 1141 1407 502 1294 1519 612 1291 1516 609 1208 1339 434 1208 1339 434 1291 1516 609 1205 1455 550 1291 1516 609 1294 1519 612 1207 1517 610 1207 1517 610 1294 1519 612 1265 1456 551 1169 1355 450 1293 1477 572 1130 1356 451 1130 1356 451 1293 1477 572 1191 1410 505 1293 1477 572 1149 1469 564 1191 1410 505 1191 1410 505 1149 1469 564 1145 1411 506 1234 1510 603 1294 1519 612 1128 1342 437 1128 1342 437 1294 1519 612 1208 1339 434 1282 1497 590 1295 1520 613 1229 1430 525 1229 1430 525 1295 1520 613 1197 1427 522 1295 1520 613 1192 1412 507 1197 1427 522 1197 1427 522 1192 1412 507 1142 1402 497 1192 1412 507 1295 1520 613 1130 1356 451 1130 1356 451 1295 1520 613 1170 1353 448 1295 1520 613 1282 1497 590 1170 1353 448 1170 1353 448 1282 1497 590 1131 1354 449 1209 1344 439 1296 1343 438 1148 1452 547 1148 1452 547 1296 1343 438 1276 1453 548 1219 1290 388 1297 1293 391 1123 1318 413 1123 1318 413 1297 1293 391 1115 1521 393 1126 1337 432 1165 1336 431 1181 1383 478 1165 1336 431 1127 1513 606 1181 1383 478 1235 1384 479 1181 1383 478 1127 1513 606 1298 1522 614 1287 1288 386 1183 1387 482 1183 1387 482 1287 1288 386 1233 1392 487 1287 1288 386 1298 1522 614 1239 1285 383 1239 1285 383 1298 1522 614 1310 1286 384 1172 1359 454 1298 1522 614 1132 1360 455 1132 1360 455 1298 1522 614 1183 1387 482 1210 1464 559 1299 1523 615 1224 1465 560 1224 1465 560 1299 1523 615 1280 1490 583 1299 1523 615 1193 1413 508 1280 1490 583 1280 1490 583 1193 1413 508 1225 1416 511 1193 1413 508 1299 1523 615 1139 1393 488 1139 1393 488 1299 1523 615 1214 1474 569 1299 1523 615 1210 1464 559 1214 1474 569 1214 1474 569 1210 1464 559 1135 1374 469 1217 1394 489 1300 1473 568 1149 1469 564 1149 1469 564 1300 1473 568 1269 1470 565 1300 1473 568 1134 1373 468 1269 1470 565 1269 1470 565 1134 1373 468 1213 1472 567 1301 1361 456 1177 1375 470 1181 1383 478 1181 1383 478 1177 1375 470 1251 1382 477 1250 1376 471 1177 1375 470 1171 1357 452 1171 1357 452 1177 1375 470 1301 1361 456 1202 1515 608 1207 1517 610 1302 1441 536 1302 1441 536 1207 1517 610 1265 1456 551 1260 1439 534 1202 1515 608 1201 1440 535 1201 1440 535 1202 1515 608 1302 1441 536 1265 1456 551 1294 1519 612 1303 1457 552 1303 1457 552 1294 1519 612 1234 1510 603 1305 1443 538 1306 1368 463 1201 1440 535 1201 1440 535 1306 1368 463 1133 1364 459 1307 1367 462 1173 1363 458 1306 1368 463 1306 1368 463 1173 1363 458 1133 1364 459 1173 1363 458 1307 1367 462 1152 1278 376 1152 1278 376 1307 1367 462 1308 1283 381 1308 1283 381 1309 1284 382 1152 1278 376 1152 1278 376 1309 1284 382 1117 1276 374 1310 1286 384 1116 1274 372 1309 1284 382 1309 1284 382 1116 1274 372 1117 1276 374 1298 1522 614 1172 1359 454 1310 1286 384 1310 1286 384 1172 1359 454 1116 1274 372 1319 1525 1844 1318 1526 1845 1068 1524 1843 1068 1524 1843 1318 1526 1845 1114 1527 1846 1321 1528 1847 1318 1526 1845 902 1272 1841 902 1272 1841 1318 1526 1845 906 1027 1716 902 1272 1841 906 1027 1716 901 1273 1842 901 1273 1842 906 1027 1716 1311 1026 1715 899 1022 1711 900 1024 1713 1311 1026 1715 1311 1026 1715 900 1024 1713 901 1273 1842 898 1023 1712 899 1022 1711 1312 1025 1714 1312 1025 1714 899 1022 1711 1311 1026 1715 1322 1530 1849 1323 1531 1850 1113 1529 1848 1113 1529 1848 1323 1531 1850 1115 1532 1851 1324 1533 1852 1323 1531 1850 1313 1013 1702 1313 1013 1702 1323 1531 1850 904 1270 1839 1325 1535 1854 1326 1536 1855 1316 1534 1853 1316 1534 1853 1326 1536 1855 1317 1537 1856 1320 1539 1858 1332 1540 1859 1315 1538 1857 1315 1538 1857 1332 1540 1859 897 1018 1707 1322 1530 1849 1321 1528 1847 903 1271 1840 903 1271 1840 1321 1528 1847 902 1272 1841 1325 1535 1854 1324 1533 1852 895 1014 1703 895 1014 1703 1324 1533 1852 1313 1013 1702 1275 1541 574 1316 1542 616 1159 1315 410 1159 1315 410 1316 1542 616 1122 1322 417 1120 1296 394 1119 1325 420 1112 1544 395 1112 1544 395 1119 1325 420 1317 1543 617 1327 1545 1860 1326 1536 1855 1314 1016 1705 1314 1016 1705 1326 1536 1855 896 1015 1704 1119 1325 420 1122 1322 417 1317 1546 617 1317 1546 617 1122 1322 417 1316 1547 616 1318 1526 1845 1319 1525 1844 906 1027 1716 906 1027 1716 1319 1525 1844 905 1028 1717 1332 1540 1859 1320 1539 1858 1150 1548 1861 1150 1548 1861 1320 1539 1858 1069 1549 1862 1114 1550 1846 1318 1526 1845 1156 1551 1863 1156 1551 1863 1318 1526 1845 1321 1528 1847 1156 1552 1863 1321 1528 1847 1113 1553 1848 1113 1553 1848 1321 1528 1847 1322 1530 1849 904 1270 1839 1323 1531 1850 903 1271 1840 903 1271 1840 1323 1531 1850 1322 1530 1849 1323 1531 1850 1324 1533 1852 1115 1554 1851 1115 1554 1851 1324 1533 1852 1275 1555 1864 1324 1533 1852 1325 1535 1854 1275 1556 1864 1275 1556 1864 1325 1535 1854 1316 1557 1853 1326 1536 1855 1325 1535 1854 896 1015 1704 896 1015 1704 1325 1535 1854 895 1014 1703 1326 1536 1855 1327 1545 1860 1317 1558 1856 1317 1558 1856 1327 1545 1860 1112 1559 1865 1327 1545 1860 1332 1540 1859 1112 1560 1865 1112 1560 1865 1332 1540 1859 1150 1561 1861 1328 1562 618 1259 1436 531 1127 1513 606 1127 1513 606 1259 1436 531 1200 1435 530 1258 1432 527 1259 1436 531 1220 1326 421 1220 1326 421 1259 1436 531 1328 1562 618 1242 1324 419 1220 1326 421 1329 1563 619 1329 1563 619 1220 1326 421 1328 1562 618 1328 1562 618 1127 1513 606 1166 1338 433 1166 1338 433 1127 1513 606 1165 1336 431 1329 1563 619 1328 1562 618 1330 1481 575 1330 1481 575 1328 1562 618 1166 1338 433 1329 1563 619 1330 1481 575 1119 1325 420 1119 1325 420 1330 1481 575 1122 1322 417 1119 1325 420 1242 1324 419 1329 1563 619 1330 1481 575 1166 1338 433 1161 1321 416 1161 1321 416 1166 1338 433 1245 1319 414 1314 1016 1705 897 1018 1707 1327 1545 1860 1327 1545 1860 897 1018 1707 1332 1540 1859 721 832 1521 1333 849 1538 720 830 1519 720 830 1519 1333 849 1538 734 848 1537 1333 849 1538 1334 863 1552 734 848 1537 734 848 1537 1334 863 1552 747 862 1551 1334 863 1552 1335 877 1566 747 862 1551 747 862 1551 1335 877 1566 760 876 1565 1335 877 1566 1336 891 1580 760 876 1565 760 876 1565 1336 891 1580 773 890 1579 773 890 1579 1336 891 1580 786 904 1593 786 904 1593 1336 891 1580 2 361 1172 2 361 1172 86 364 1175 786 904 1593 786 904 1593 86 364 1175 798 916 1605 884 1002 1691 320 1020 1709 891 1009 1698 891 1009 1698 320 1020 1709 1337 1017 1706 709 810 1499 1349 1564 1866 696 807 1496 696 807 1496 1349 1564 1866 1338 1565 1867 1349 1564 1866 1350 1566 1868 1338 1565 1867 1338 1565 1867 1350 1566 1868 1339 1567 1869 1350 1566 1868 1351 1568 1870 1339 1567 1869 1339 1567 1869 1351 1568 1870 1340 1569 1871 1351 1568 1870 1352 1570 1872 1340 1569 1871 1340 1569 1871 1352 1570 1872 1341 1571 1873 1352 1570 1872 1353 1572 1874 1341 1571 1873 1341 1571 1873 1353 1572 1874 1342 1573 1875 1353 1572 1874 1354 1574 1876 1342 1573 1875 1342 1573 1875 1354 1574 1876 1343 1575 1877 1354 1574 1876 1355 1576 1878 1343 1575 1877 1343 1575 1877 1355 1576 1878 1344 1577 1879 1355 1576 1878 1356 1578 1880 1344 1577 1879 1344 1577 1879 1356 1578 1880 1345 1579 1881 1345 1579 1881 1356 1578 1880 1346 1581 1883 1346 1581 1883 1356 1578 1880 1357 1580 1882 1346 1581 1883 1357 1580 1882 1347 1583 1885 1347 1583 1885 1357 1580 1882 1358 1582 1884 1358 1582 1884 1359 1584 1886 1347 1583 1885 1347 1583 1885 1359 1584 1886 1348 1585 1887 1359 1584 1886 1360 1586 1888 1348 1585 1887 1348 1585 1887 1360 1586 1888 1897 1587 1889 1360 1586 1888 1972 1588 1890 1897 1587 1889 1897 1587 1889 1972 1588 1890 1973 1589 1891 723 838 1527 1361 1590 1892 709 810 1499 709 810 1499 1361 1590 1892 1349 1564 1866 1361 1590 1892 1362 1591 1893 1349 1564 1866 1349 1564 1866 1362 1591 1893 1350 1566 1868 1362 1591 1893 1363 1592 1894 1350 1566 1868 1350 1566 1868 1363 1592 1894 1351 1568 1870 1363 1592 1894 1364 1593 1895 1351 1568 1870 1351 1568 1870 1364 1593 1895 1352 1570 1872 1364 1593 1895 1365 1594 1896 1352 1570 1872 1352 1570 1872 1365 1594 1896 1353 1572 1874 1365 1594 1896 1366 1595 1897 1353 1572 1874 1353 1572 1874 1366 1595 1897 1354 1574 1876 1366 1595 1897 1367 1596 1898 1354 1574 1876 1354 1574 1876 1367 1596 1898 1355 1576 1878 1367 1596 1898 1368 1597 1899 1355 1576 1878 1355 1576 1878 1368 1597 1899 1356 1578 1880 1356 1578 1880 1368 1597 1899 1357 1580 1882 1357 1580 1882 1368 1597 1899 1369 1598 1900 1357 1580 1882 1369 1598 1900 1358 1582 1884 1358 1582 1884 1369 1598 1900 1370 1599 1901 1370 1599 1901 1371 1600 1902 1358 1582 1884 1358 1582 1884 1371 1600 1902 1359 1584 1886 1899 1601 1903 1975 1602 1904 1360 1586 1888 1360 1586 1888 1975 1602 1904 1972 1588 1890 736 852 1541 1372 1603 1905 723 838 1527 723 838 1527 1372 1603 1905 1361 1590 1892 1372 1603 1905 1373 1604 1906 1361 1590 1892 1361 1590 1892 1373 1604 1906 1362 1591 1893 1373 1604 1906 1374 1605 1907 1362 1591 1893 1362 1591 1893 1374 1605 1907 1363 1592 1894 1374 1605 1907 1375 1606 1908 1363 1592 1894 1363 1592 1894 1375 1606 1908 1364 1593 1895 1375 1606 1908 1376 1607 1909 1364 1593 1895 1364 1593 1895 1376 1607 1909 1365 1594 1896 1376 1607 1909 1377 1608 1910 1365 1594 1896 1365 1594 1896 1377 1608 1910 1366 1595 1897 1377 1608 1910 1378 1609 1911 1366 1595 1897 1366 1595 1897 1378 1609 1911 1367 1596 1898 1378 1609 1911 1379 1610 1912 1367 1596 1898 1367 1596 1898 1379 1610 1912 1368 1597 1899 1368 1597 1899 1379 1610 1912 1369 1598 1900 1369 1598 1900 1379 1610 1912 1380 1611 1913 1369 1598 1900 1380 1611 1913 1370 1599 1901 1370 1599 1901 1380 1611 1913 1381 1612 1914 1370 1599 1901 1381 1612 1914 1371 1600 1902 1371 1600 1902 1381 1612 1914 1382 1613 1915 1900 1614 1916 1976 1615 1917 1899 1601 1903 1899 1601 1903 1976 1615 1917 1975 1602 1904 736 852 1541 749 866 1555 1372 1603 1905 1372 1603 1905 749 866 1555 1383 1616 1918 1383 1616 1918 1384 1617 1919 1372 1603 1905 1372 1603 1905 1384 1617 1919 1373 1604 1906 1384 1617 1919 1385 1618 1920 1373 1604 1906 1373 1604 1906 1385 1618 1920 1374 1605 1907 1385 1618 1920 1386 1619 1921 1374 1605 1907 1374 1605 1907 1386 1619 1921 1375 1606 1908 1386 1619 1921 1387 1620 1922 1375 1606 1908 1375 1606 1908 1387 1620 1922 1376 1607 1909 1387 1620 1922 1388 1621 1923 1376 1607 1909 1376 1607 1909 1388 1621 1923 1377 1608 1910 1388 1621 1923 1389 1622 1924 1377 1608 1910 1377 1608 1910 1389 1622 1924 1378 1609 1911 1389 1622 1924 1390 1623 1925 1378 1609 1911 1378 1609 1911 1390 1623 1925 1379 1610 1912 1379 1610 1912 1390 1623 1925 1380 1611 1913 1380 1611 1913 1390 1623 1925 1391 1624 1926 1391 1624 1926 1392 1625 1927 1380 1611 1913 1380 1611 1913 1392 1625 1927 1381 1612 1914 1381 1612 1914 1392 1625 1927 1382 1613 1915 1382 1613 1915 1392 1625 1927 1393 1626 1928 1901 1627 1929 1977 1628 1930 1900 1614 1916 1900 1614 1916 1977 1628 1930 1976 1615 1917 749 866 1555 762 880 1569 1383 1616 1918 1383 1616 1918 762 880 1569 1394 1629 1931 1394 1629 1931 1395 1630 1932 1383 1616 1918 1383 1616 1918 1395 1630 1932 1384 1617 1919 1395 1630 1932 1396 1631 1933 1384 1617 1919 1384 1617 1919 1396 1631 1933 1385 1618 1920 1396 1631 1933 1397 1632 1934 1385 1618 1920 1385 1618 1920 1397 1632 1934 1386 1619 1921 1397 1632 1934 1398 1633 1935 1386 1619 1921 1386 1619 1921 1398 1633 1935 1387 1620 1922 1398 1633 1935 1399 1634 1936 1387 1620 1922 1387 1620 1922 1399 1634 1936 1388 1621 1923 1399 1634 1936 1400 1635 1937 1388 1621 1923 1388 1621 1923 1400 1635 1937 1389 1622 1924 1400 1635 1937 1401 1636 1938 1389 1622 1924 1389 1622 1924 1401 1636 1938 1390 1623 1925 1390 1623 1925 1401 1636 1938 1391 1624 1926 1391 1624 1926 1401 1636 1938 1402 1637 1939 1402 1637 1939 1403 1638 1940 1391 1624 1926 1391 1624 1926 1403 1638 1940 1392 1625 1927 1403 1638 1940 1404 1639 1941 1392 1625 1927 1392 1625 1927 1404 1639 1941 1393 1626 1928 1902 1640 1942 1974 1641 1943 1901 1627 1929 1901 1627 1929 1974 1641 1943 1977 1628 1930 762 880 1569 775 894 1583 1394 1629 1931 1394 1629 1931 775 894 1583 1405 1642 1944 1405 1642 1944 1406 1643 1945 1394 1629 1931 1394 1629 1931 1406 1643 1945 1395 1630 1932 1406 1643 1945 1407 1644 1946 1395 1630 1932 1395 1630 1932 1407 1644 1946 1396 1631 1933 1407 1644 1946 1408 1645 1947 1396 1631 1933 1396 1631 1933 1408 1645 1947 1397 1632 1934 1408 1645 1947 1409 1646 1948 1397 1632 1934 1397 1632 1934 1409 1646 1948 1398 1633 1935 1409 1646 1948 1410 1647 1949 1398 1633 1935 1398 1633 1935 1410 1647 1949 1399 1634 1936 1410 1647 1949 1411 1648 1950 1399 1634 1936 1399 1634 1936 1411 1648 1950 1400 1635 1937 1411 1648 1950 1412 1649 1951 1400 1635 1937 1400 1635 1937 1412 1649 1951 1401 1636 1938 1401 1636 1938 1412 1649 1951 1402 1637 1939 1402 1637 1939 1412 1649 1951 1413 1650 1952 1413 1650 1952 1414 1651 1953 1402 1637 1939 1402 1637 1939 1414 1651 1953 1403 1638 1940 1414 1651 1953 1415 1652 1954 1403 1638 1940 1403 1638 1940 1415 1652 1954 1404 1639 1941 2044 1653 1955 1974 1641 1943 2043 435 1231 2043 435 1231 1974 1641 1943 434 436 1232 775 894 1583 787 906 1595 1405 1642 1944 1405 1642 1944 787 906 1595 1416 1654 1956 1416 1654 1956 1417 1655 1957 1405 1642 1944 1405 1642 1944 1417 1655 1957 1406 1643 1945 1417 1655 1957 1418 1656 1958 1406 1643 1945 1406 1643 1945 1418 1656 1958 1407 1644 1946 1418 1656 1958 1419 1657 1959 1407 1644 1946 1407 1644 1946 1419 1657 1959 1408 1645 1947 1419 1657 1959 1420 1658 1960 1408 1645 1947 1408 1645 1947 1420 1658 1960 1409 1646 1948 1420 1658 1960 1421 1659 1961 1409 1646 1948 1409 1646 1948 1421 1659 1961 1410 1647 1949 1421 1659 1961 1422 1660 1962 1410 1647 1949 1410 1647 1949 1422 1660 1962 1411 1648 1950 1422 1660 1962 1423 1661 1963 1411 1648 1950 1411 1648 1950 1423 1661 1963 1412 1649 1951 1412 1649 1951 1423 1661 1963 1413 1650 1952 1413 1650 1952 1423 1661 1963 1424 1662 1964 1413 1650 1952 1424 1662 1964 1414 1651 1953 1414 1651 1953 1424 1662 1964 1425 1663 1965 1425 1663 1965 1426 1664 1966 1414 1651 1953 1414 1651 1953 1426 1664 1966 1415 1652 1954 787 906 1595 799 918 1607 1416 1654 1956 1416 1654 1956 799 918 1607 1427 1665 1967 1427 1665 1967 1428 1666 1968 1416 1654 1956 1416 1654 1956 1428 1666 1968 1417 1655 1957 1428 1666 1968 1429 1667 1969 1417 1655 1957 1417 1655 1957 1429 1667 1969 1418 1656 1958 1429 1667 1969 1430 1668 1970 1418 1656 1958 1418 1656 1958 1430 1668 1970 1419 1657 1959 1430 1668 1970 1431 1669 1971 1419 1657 1959 1419 1657 1959 1431 1669 1971 1420 1658 1960 1431 1669 1971 1432 1670 1972 1420 1658 1960 1420 1658 1960 1432 1670 1972 1421 1659 1961 1432 1670 1972 1433 1671 1973 1421 1659 1961 1421 1659 1961 1433 1671 1973 1422 1660 1962 1433 1671 1973 1434 1672 1974 1422 1660 1962 1422 1660 1962 1434 1672 1974 1423 1661 1963 1423 1661 1963 1434 1672 1974 1424 1662 1964 1424 1662 1964 1434 1672 1974 1435 1673 1975 1435 1673 1975 1436 1674 1976 1424 1662 1964 1424 1662 1964 1436 1674 1976 1425 1663 1965 1436 1674 1976 1437 1675 1977 1425 1663 1965 1425 1663 1965 1437 1675 1977 1426 1664 1966 799 918 1607 811 930 1619 1427 1665 1967 1427 1665 1967 811 930 1619 1438 1676 1978 1438 1676 1978 1439 1677 1979 1427 1665 1967 1427 1665 1967 1439 1677 1979 1428 1666 1968 1439 1677 1979 1440 1678 1980 1428 1666 1968 1428 1666 1968 1440 1678 1980 1429 1667 1969 1440 1678 1980 1441 1679 1981 1429 1667 1969 1429 1667 1969 1441 1679 1981 1430 1668 1970 1441 1679 1981 1442 1680 1982 1430 1668 1970 1430 1668 1970 1442 1680 1982 1431 1669 1971 1442 1680 1982 1443 1681 1983 1431 1669 1971 1431 1669 1971 1443 1681 1983 1432 1670 1972 1443 1681 1983 1444 1682 1984 1432 1670 1972 1432 1670 1972 1444 1682 1984 1433 1671 1973 1444 1682 1984 1445 1683 1985 1433 1671 1973 1433 1671 1973 1445 1683 1985 1434 1672 1974 1434 1672 1974 1445 1683 1985 1435 1673 1975 1435 1673 1975 1445 1683 1985 1446 1684 1986 1446 1684 1986 1447 1685 1987 1435 1673 1975 1435 1673 1975 1447 1685 1987 1436 1674 1976 1447 1685 1987 1448 1686 1988 1436 1674 1976 1436 1674 1976 1448 1686 1988 1437 1675 1977 811 930 1619 823 942 1631 1438 1676 1978 1438 1676 1978 823 942 1631 1449 1687 1989 1449 1687 1989 1450 1688 1990 1438 1676 1978 1438 1676 1978 1450 1688 1990 1439 1677 1979 1450 1688 1990 1451 1689 1991 1439 1677 1979 1439 1677 1979 1451 1689 1991 1440 1678 1980 1451 1689 1991 1452 1690 1992 1440 1678 1980 1440 1678 1980 1452 1690 1992 1441 1679 1981 1452 1690 1992 1453 1691 1993 1441 1679 1981 1441 1679 1981 1453 1691 1993 1442 1680 1982 1453 1691 1993 1454 1692 1994 1442 1680 1982 1442 1680 1982 1454 1692 1994 1443 1681 1983 1454 1692 1994 1455 1693 1995 1443 1681 1983 1443 1681 1983 1455 1693 1995 1444 1682 1984 1455 1693 1995 1456 1694 1996 1444 1682 1984 1444 1682 1984 1456 1694 1996 1445 1683 1985 1445 1683 1985 1456 1694 1996 1446 1684 1986 1446 1684 1986 1456 1694 1996 1457 1695 1997 1446 1684 1986 1457 1695 1997 1447 1685 1987 1447 1685 1987 1457 1695 1997 1458 1696 1998 1447 1685 1987 1458 1696 1998 1448 1686 1988 1448 1686 1988 1458 1696 1998 1459 1697 1999 823 942 1631 846 954 1643 1449 1687 1989 1449 1687 1989 846 954 1643 1460 1698 2000 1460 1698 2000 1461 1699 2001 1449 1687 1989 1449 1687 1989 1461 1699 2001 1450 1688 1990 1461 1699 2001 1462 1700 2002 1450 1688 1990 1450 1688 1990 1462 1700 2002 1451 1689 1991 1462 1700 2002 1463 1701 2003 1451 1689 1991 1451 1689 1991 1463 1701 2003 1452 1690 1992 1463 1701 2003 1464 1702 2004 1452 1690 1992 1452 1690 1992 1464 1702 2004 1453 1691 1993 1464 1702 2004 1465 1703 2005 1453 1691 1993 1453 1691 1993 1465 1703 2005 1454 1692 1994 1465 1703 2005 1466 1704 2006 1454 1692 1994 1454 1692 1994 1466 1704 2006 1455 1693 1995 1455 1693 1995 1466 1704 2006 1456 1694 1996 1456 1694 1996 1466 1704 2006 1467 1705 2007 1456 1694 1996 1467 1705 2007 1457 1695 1997 1457 1695 1997 1467 1705 2007 1468 1706 2008 1457 1695 1997 1468 1706 2008 1458 1696 1998 1458 1696 1998 1468 1706 2008 1469 1707 2009 1458 1696 1998 1469 1707 2009 1459 1697 1999 1459 1697 1999 1469 1707 2009 1470 1708 2010 846 954 1643 847 966 1655 1460 1698 2000 1460 1698 2000 847 966 1655 1471 1709 2011 1460 1698 2000 1471 1709 2011 1461 1699 2001 1461 1699 2001 1471 1709 2011 1472 1710 2012 1461 1699 2001 1472 1710 2012 1462 1700 2002 1462 1700 2002 1472 1710 2012 1473 1711 2013 1462 1700 2002 1473 1711 2013 1463 1701 2003 1463 1701 2003 1473 1711 2013 1474 1712 2014 1474 1712 2014 1475 1713 2015 1463 1701 2003 1463 1701 2003 1475 1713 2015 1464 1702 2004 1475 1713 2015 1476 1714 2016 1464 1702 2004 1464 1702 2004 1476 1714 2016 1465 1703 2005 1476 1714 2016 1477 1715 2017 1465 1703 2005 1465 1703 2005 1477 1715 2017 1466 1704 2006 1466 1704 2006 1477 1715 2017 1467 1705 2007 1467 1705 2007 1477 1715 2017 1478 1716 2018 1467 1705 2007 1478 1716 2018 1468 1706 2008 1468 1706 2008 1478 1716 2018 1479 1717 2019 1468 1706 2008 1479 1717 2019 1469 1707 2009 1469 1707 2009 1479 1717 2019 1480 1718 2020 1469 1707 2009 1480 1718 2020 1470 1708 2010 1470 1708 2010 1480 1718 2020 1481 1719 2021 847 966 1655 859 978 1667 1471 1709 2011 1471 1709 2011 859 978 1667 1482 1720 2022 1471 1709 2011 1482 1720 2022 1472 1710 2012 1472 1710 2012 1482 1720 2022 1483 1721 2023 1472 1710 2012 1483 1721 2023 1473 1711 2013 1473 1711 2013 1483 1721 2023 1484 1722 2024 1476 1714 2016 1485 1723 2025 1477 1715 2017 1485 1723 2025 1488 1724 2026 1477 1715 2017 1477 1715 2017 1488 1724 2026 1478 1716 2018 1488 1724 2026 1489 1725 2027 1478 1716 2018 1478 1716 2018 1489 1725 2027 1479 1717 2019 1489 1725 2027 1490 1726 2028 1479 1717 2019 1479 1717 2019 1490 1726 2028 1480 1718 2020 1480 1718 2020 1490 1726 2028 1481 1719 2021 1481 1719 2021 1490 1726 2028 1491 1727 2029 859 978 1667 868 987 1676 1482 1720 2022 1482 1720 2022 868 987 1676 1486 1728 2030 1482 1720 2022 1486 1728 2030 1483 1721 2023 1483 1721 2023 1486 1728 2030 1487 1729 2031 868 987 1676 871 990 1679 1486 1728 2030 1486 1728 2030 871 990 1679 1492 1730 2032 1492 1730 2032 1493 1731 2033 1486 1728 2030 1486 1728 2030 1493 1731 2033 1487 1729 2031 1495 1732 2034 1489 1725 2027 1494 1733 2035 1494 1733 2035 1489 1725 2027 1488 1724 2026 1495 1732 2034 1496 1734 2036 1489 1725 2027 1489 1725 2027 1496 1734 2036 1490 1726 2028 1490 1726 2028 1496 1734 2036 1491 1727 2029 1491 1727 2029 1496 1734 2036 1497 1735 2037 871 990 1679 878 997 1686 1492 1730 2032 1492 1730 2032 878 997 1686 1498 1736 2038 1498 1736 2038 1499 1737 2039 1492 1730 2032 1492 1730 2032 1499 1737 2039 1493 1731 2033 1495 1732 2034 1494 1733 2035 1501 1738 2040 1501 1738 2040 1494 1733 2035 1500 1739 2041 1495 1732 2034 1501 1738 2040 1496 1734 2036 1496 1734 2036 1501 1738 2040 1502 1740 2042 1496 1734 2036 1502 1740 2042 1497 1735 2037 1497 1735 2037 1502 1740 2042 1503 1741 2043 878 997 1686 885 1004 1693 1498 1736 2038 1498 1736 2038 885 1004 1693 1504 1742 2044 1498 1736 2038 1504 1742 2044 1499 1737 2039 1499 1737 2039 1504 1742 2044 1505 1743 2045 1507 1744 2046 1501 1738 2040 1506 1745 2047 1506 1745 2047 1501 1738 2040 1500 1739 2041 1501 1738 2040 1507 1744 2046 1502 1740 2042 1502 1740 2042 1507 1744 2046 1508 1746 2048 1502 1740 2042 1508 1746 2048 1503 1741 2043 1503 1741 2043 1508 1746 2048 1509 1747 2049 885 1004 1693 892 1011 1700 1504 1742 2044 1504 1742 2044 892 1011 1700 1510 1748 2050 1504 1742 2044 1510 1748 2050 1505 1743 2045 1505 1743 2045 1510 1748 2050 1511 1749 2051 1512 1751 2053 1507 1744 2046 1882 1750 2052 1882 1750 2052 1507 1744 2046 1506 1745 2047 1507 1744 2046 1512 1751 2053 1508 1746 2048 1508 1746 2048 1512 1751 2053 1513 1752 2054 1508 1746 2048 1513 1752 2054 1509 1747 2049 1509 1747 2049 1513 1752 2054 1883 1753 2055 1509 1747 2049 1883 1753 2055 1904 1755 2057 1904 1755 2057 1883 1753 2055 1514 1754 2056 1904 1755 2057 1985 1019 1708 1903 1756 2058 1903 1756 2058 1985 1019 1708 1986 1021 1710 892 1011 1700 898 1023 1712 1510 1748 2050 1510 1748 2050 898 1023 1712 1515 1757 2059 1510 1748 2050 1515 1757 2059 1511 1749 2051 1511 1749 2051 1515 1757 2059 1516 1758 2060 1312 1025 1714 905 1028 1717 1881 1760 2062 1881 1760 2062 905 1028 1717 1521 1759 2061 1338 1565 1867 907 1029 1718 696 807 1496 1339 1567 1869 907 1029 1718 1338 1565 1867 1340 1569 1871 907 1029 1718 1339 1567 1869 1341 1571 1873 907 1029 1718 1340 1569 1871 1342 1573 1875 907 1029 1718 1341 1571 1873 1343 1575 1877 907 1029 1718 1342 1573 1875 1344 1577 1879 907 1029 1718 1343 1575 1877 1345 1579 1881 907 1029 1718 1344 1577 1879 1346 1581 1883 907 1029 1718 1345 1579 1881 1347 1583 1885 907 1029 1718 1346 1581 1883 1348 1585 1887 907 1029 1718 1347 1583 1885 1348 1585 1887 1897 1587 1889 907 1029 1718 1973 1589 1891 907 1029 1718 1897 1587 1889 1555 1761 692 1621 1762 693 1594 1764 695 1594 1764 695 1621 1762 693 1658 1763 694 1621 1762 693 1555 1761 692 1642 1766 697 1642 1766 697 1555 1761 692 1570 1765 696 1556 1767 698 1621 1762 693 1572 1768 699 1572 1768 699 1621 1762 693 1642 1766 697 1621 1762 693 1556 1767 698 1658 1763 694 1658 1763 694 1556 1767 698 1595 1769 700 1557 1770 701 1622 1771 702 1593 1773 704 1593 1773 704 1622 1771 702 1657 1772 703 1622 1771 702 1557 1770 701 1643 1775 706 1643 1775 706 1557 1770 701 1569 1774 705 1555 1761 692 1622 1771 702 1570 1765 696 1570 1765 696 1622 1771 702 1643 1775 706 1622 1771 702 1555 1761 692 1657 1772 703 1657 1772 703 1555 1761 692 1594 1764 695 1558 1776 707 1623 1777 708 1592 1779 710 1592 1779 710 1623 1777 708 1656 1778 709 1623 1777 708 1558 1776 707 1641 1781 712 1641 1781 712 1558 1776 707 1567 1780 711 1557 1770 701 1623 1777 708 1569 1774 705 1569 1774 705 1623 1777 708 1641 1781 712 1623 1777 708 1557 1770 701 1656 1778 709 1656 1778 709 1557 1770 701 1593 1773 704 1624 1783 714 1655 1784 715 1559 1782 713 1559 1782 713 1655 1784 715 1591 1785 716 1624 1783 714 1559 1782 713 1644 1787 718 1644 1787 718 1559 1782 713 1574 1786 717 1558 1776 707 1624 1783 714 1567 1780 711 1567 1780 711 1624 1783 714 1644 1787 718 1624 1783 714 1558 1776 707 1655 1784 715 1655 1784 715 1558 1776 707 1592 1779 710 1560 1789 720 1578 1790 721 1625 1788 719 1625 1788 719 1578 1790 721 1646 1791 722 1625 1788 719 1646 1791 722 1559 1782 713 1559 1782 713 1646 1791 722 1574 1786 717 1625 1788 719 1681 1792 723 1560 1789 720 1560 1789 720 1681 1792 723 1680 1793 724 1626 1795 726 1654 1796 727 1561 1794 725 1561 1794 725 1654 1796 727 1590 1797 728 1561 1794 725 1582 1798 729 1626 1795 726 1626 1795 726 1582 1798 729 1648 1799 730 1626 1795 726 1648 1799 730 1560 1789 720 1560 1789 720 1648 1799 730 1578 1790 721 1560 1789 720 1680 1793 724 1626 1795 726 1626 1795 726 1680 1793 724 1654 1796 727 1627 1801 732 1653 1802 733 1562 1800 731 1562 1800 731 1653 1802 733 1589 1803 734 1562 1800 731 1585 1804 735 1627 1801 732 1627 1801 732 1585 1804 735 1650 1805 736 1627 1801 732 1650 1805 736 1561 1794 725 1561 1794 725 1650 1805 736 1582 1798 729 1561 1794 725 1590 1797 728 1627 1801 732 1627 1801 732 1590 1797 728 1653 1802 733 1628 1807 738 1652 1808 739 1563 1806 737 1563 1806 737 1652 1808 739 1587 1809 740 1563 1806 737 1581 1810 741 1628 1807 738 1628 1807 738 1581 1810 741 1649 1811 742 1628 1807 738 1649 1811 742 1562 1800 731 1562 1800 731 1649 1811 742 1585 1804 735 1562 1800 731 1589 1803 734 1628 1807 738 1628 1807 738 1589 1803 734 1652 1808 739 1629 1813 744 1651 1814 745 1564 1812 743 1564 1812 743 1651 1814 745 1588 1815 746 1564 1812 743 1577 1816 747 1629 1813 744 1629 1813 744 1577 1816 747 1647 1817 748 1629 1813 744 1647 1817 748 1563 1806 737 1563 1806 737 1647 1817 748 1581 1810 741 1563 1806 737 1587 1809 740 1629 1813 744 1629 1813 744 1587 1809 740 1651 1814 745 1556 1767 698 1630 1818 749 1595 1769 700 1595 1769 700 1630 1818 749 1659 1819 750 1630 1818 749 1556 1767 698 1645 1820 752 1645 1820 752 1556 1767 698 1572 1768 699 1564 1812 743 1630 1818 749 1577 1816 747 1577 1816 747 1630 1818 749 1645 1820 752 1630 1818 749 1564 1812 743 1659 1819 750 1659 1819 750 1564 1812 743 1588 1815 746 1595 1769 700 1587 1809 740 1658 1763 694 1658 1763 694 1587 1809 740 1652 1808 739 1600 1822 2064 1927 1823 2065 1662 1821 2063 1662 1821 2063 1927 1823 2065 1926 1824 2066 1537 1826 2068 1925 1827 2069 1631 1825 2067 1631 1825 2067 1925 1827 2069 1926 1824 2066 1604 1829 2071 1934 1830 2072 1664 1828 2070 1664 1828 2070 1934 1830 2072 1932 1831 2073 1539 1833 2075 1930 1834 2076 1632 1832 2074 1632 1832 2074 1930 1834 2076 1932 1831 2073 1523 1836 2078 1930 1834 2076 1665 1835 2077 1665 1835 2077 1930 1834 2076 1928 1837 2079 1565 1839 2081 1927 1823 2065 1633 1838 2080 1633 1838 2080 1927 1823 2065 1928 1837 2079 1666 1840 2082 1522 1841 2083 1929 1842 2084 1929 1842 2084 1522 1841 2083 1925 1827 2069 1538 1844 2086 1931 1845 2087 1634 1843 2085 1634 1843 2085 1931 1845 2087 1929 1842 2084 1524 1847 2089 1931 1845 2087 1667 1846 2088 1667 1846 2088 1931 1845 2087 1933 1848 2090 1635 1849 2091 1540 1850 2092 1933 1848 2090 1933 1848 2090 1540 1850 2092 1935 1851 2093 1636 1852 2094 1541 1853 2095 1937 1855 2097 1937 1855 2097 1541 1853 2095 1939 1854 2096 1660 1856 2098 1596 1857 2099 1937 1855 2097 1937 1855 2097 1596 1857 2099 1935 1851 2093 1661 1858 2100 1598 1859 2101 1941 1860 2102 1941 1860 2102 1598 1859 2101 1939 1854 2096 1637 1861 2103 1543 1862 2104 1941 1860 2102 1941 1860 2102 1543 1862 2104 1943 1863 2105 1668 1864 2106 1525 1865 2107 1944 1866 2108 1944 1866 2108 1525 1865 2107 1943 1863 2105 1638 1867 2109 1544 1868 2110 1944 1866 2108 1944 1866 2108 1544 1868 2110 1942 1869 2111 1663 1870 2112 1602 1871 2113 1940 1872 2114 1940 1872 2114 1602 1871 2113 1942 1869 2111 1639 1873 2115 1542 1874 2116 1940 1872 2114 1940 1872 2114 1542 1874 2116 1938 1875 2117 1669 1876 2118 1526 1877 2119 1936 1878 2120 1936 1878 2120 1526 1877 2119 1938 1875 2117 1640 1879 2121 1566 1880 2122 1936 1878 2120 1936 1878 2120 1566 1880 2122 1934 1830 2072 1528 1881 944 1568 1882 949 1567 1780 711 1567 1780 711 1568 1882 949 1641 1781 712 1568 1883 949 1527 1884 947 1641 1781 712 1641 1781 712 1527 1884 947 1569 1774 705 1530 1885 946 1571 1886 948 1570 1765 696 1570 1765 696 1571 1886 948 1642 1766 697 1571 1887 948 1529 1888 942 1642 1766 697 1642 1766 697 1529 1888 942 1572 1768 699 1527 1889 947 1573 1890 945 1569 1774 705 1569 1774 705 1573 1890 945 1643 1775 706 1573 1891 945 1530 1892 946 1643 1775 706 1643 1775 706 1530 1892 946 1570 1765 696 1531 1893 940 1575 1894 943 1574 1786 717 1574 1786 717 1575 1894 943 1644 1787 718 1575 1895 943 1528 1896 944 1644 1787 718 1644 1787 718 1528 1896 944 1567 1780 711 1529 1897 942 1576 1898 941 1572 1768 699 1572 1768 699 1576 1898 941 1645 1820 752 1576 1899 941 1532 1900 938 1645 1820 752 1645 1820 752 1532 1900 938 1577 1816 747 1578 1790 721 1533 1901 936 1646 1791 722 1646 1791 722 1533 1901 936 1579 1902 939 1531 1904 940 1574 1786 717 1579 1903 939 1579 1903 939 1574 1786 717 1646 1791 722 1577 1816 747 1532 1905 938 1647 1817 748 1647 1817 748 1532 1905 938 1580 1906 937 1534 1908 934 1581 1810 741 1580 1907 937 1580 1907 937 1581 1810 741 1647 1817 748 1582 1798 729 1535 1909 931 1648 1799 730 1648 1799 730 1535 1909 931 1583 1910 935 1533 1912 936 1578 1790 721 1583 1911 935 1583 1911 935 1578 1790 721 1648 1799 730 1581 1810 741 1534 1913 934 1649 1811 742 1649 1811 742 1534 1913 934 1584 1914 933 1536 1916 932 1585 1804 735 1584 1915 933 1584 1915 933 1585 1804 735 1649 1811 742 1585 1804 735 1536 1917 932 1650 1805 736 1650 1805 736 1536 1917 932 1586 1918 930 1535 1920 931 1582 1798 729 1586 1919 930 1586 1919 930 1582 1798 729 1650 1805 736 1568 1921 2123 1528 1922 2124 1634 1843 2085 1634 1843 2085 1528 1922 2124 1538 1844 2086 1634 1843 2085 1537 1826 2068 1568 1923 2123 1568 1923 2123 1537 1826 2068 1527 1924 2125 1571 1925 2126 1530 1926 2127 1633 1838 2080 1633 1838 2080 1530 1926 2127 1565 1839 2081 1571 1927 2126 1633 1838 2080 1529 1928 2128 1529 1928 2128 1633 1838 2080 1539 1833 2075 1573 1929 2129 1527 1930 2125 1631 1825 2067 1631 1825 2067 1527 1930 2125 1537 1826 2068 1631 1825 2067 1565 1839 2081 1573 1931 2129 1573 1931 2129 1565 1839 2081 1530 1932 2127 1575 1933 2130 1531 1934 2131 1635 1849 2091 1635 1849 2091 1531 1934 2131 1540 1850 2092 1635 1849 2091 1538 1844 2086 1575 1935 2130 1575 1935 2130 1538 1844 2086 1528 1936 2124 1529 1938 2128 1539 1833 2075 1576 1937 2132 1576 1937 2132 1539 1833 2075 1632 1832 2074 1576 1939 2132 1632 1832 2074 1532 1940 2133 1532 1940 2133 1632 1832 2074 1566 1880 2122 1579 1941 2134 1533 1942 2135 1636 1852 2094 1636 1852 2094 1533 1942 2135 1541 1853 2095 1636 1852 2094 1540 1850 2092 1579 1943 2134 1579 1943 2134 1540 1850 2092 1531 1944 2131 1532 1946 2133 1566 1880 2122 1580 1945 2136 1580 1945 2136 1566 1880 2122 1640 1879 2121 1580 1947 2136 1640 1879 2121 1534 1948 2137 1534 1948 2137 1640 1879 2121 1542 1874 2116 1583 1949 2138 1535 1950 2139 1637 1861 2103 1637 1861 2103 1535 1950 2139 1543 1862 2104 1637 1861 2103 1541 1853 2095 1583 1951 2138 1583 1951 2138 1541 1853 2095 1533 1952 2135 1534 1954 2137 1542 1874 2116 1584 1953 2140 1584 1953 2140 1542 1874 2116 1639 1873 2115 1584 1955 2140 1639 1873 2115 1536 1956 2141 1536 1956 2141 1639 1873 2115 1544 1868 2110 1586 1957 2142 1536 1958 2141 1638 1867 2109 1638 1867 2109 1536 1958 2141 1544 1868 2110 1638 1867 2109 1543 1862 2104 1586 1959 2142 1586 1959 2142 1543 1862 2104 1535 1960 2139 1546 1961 2143 1610 1962 2144 1598 1859 2101 1598 1859 2101 1610 1962 2144 1660 1856 2098 1545 1963 2145 1596 1857 2099 1610 1962 2144 1610 1962 2144 1596 1857 2099 1660 1856 2098 1547 1964 2146 1597 1965 2147 1525 1865 2107 1525 1865 2107 1597 1965 2147 1661 1858 2100 1597 1965 2147 1546 1961 2143 1661 1858 2100 1661 1858 2100 1546 1961 2143 1598 1859 2101 1522 1841 2083 1549 1966 2148 1662 1821 2063 1662 1821 2063 1549 1966 2148 1599 1967 2149 1548 1968 2150 1600 1822 2064 1599 1967 2149 1599 1967 2149 1600 1822 2064 1662 1821 2063 1551 1969 2151 1601 1970 2152 1526 1877 2119 1526 1877 2119 1601 1970 2152 1663 1870 2112 1601 1970 2152 1550 1971 2153 1663 1870 2112 1663 1870 2112 1550 1971 2153 1602 1871 2113 1523 1836 2078 1553 1972 2154 1664 1828 2070 1664 1828 2070 1553 1972 2154 1603 1973 2155 1603 1973 2155 1552 1974 2156 1664 1828 2070 1664 1828 2070 1552 1974 2156 1604 1829 2071 1600 1822 2064 1548 1968 2150 1665 1835 2077 1665 1835 2077 1548 1968 2150 1605 1975 2157 1553 1972 2154 1523 1836 2078 1605 1975 2157 1605 1975 2157 1523 1836 2078 1665 1835 2077 1524 1847 2089 1554 1976 2158 1666 1840 2082 1666 1840 2082 1554 1976 2158 1606 1977 2159 1549 1966 2148 1522 1841 2083 1606 1977 2159 1606 1977 2159 1522 1841 2083 1666 1840 2082 1596 1857 2099 1545 1963 2145 1667 1846 2088 1667 1846 2088 1545 1963 2145 1607 1978 2160 1554 1976 2158 1524 1847 2089 1607 1978 2160 1607 1978 2160 1524 1847 2089 1667 1846 2088 1550 1971 2153 1608 1979 2161 1602 1871 2113 1602 1871 2113 1608 1979 2161 1668 1864 2106 1608 1979 2161 1547 1964 2146 1668 1864 2106 1668 1864 2106 1547 1964 2146 1525 1865 2107 1552 1974 2156 1609 1980 2162 1604 1829 2071 1604 1829 2071 1609 1980 2162 1669 1876 2118 1609 1980 2162 1551 1969 2151 1669 1876 2118 1669 1876 2118 1551 1969 2151 1526 1877 2119 1546 1961 2143 1611 1981 2163 1610 1962 2144 1610 1962 2144 1611 1981 2163 1670 1982 2164 1612 1983 2165 1545 1963 2145 1670 1982 2164 1670 1982 2164 1545 1963 2145 1610 1962 2144 1597 1965 2147 1547 1964 2146 1671 1985 2167 1671 1985 2167 1547 1964 2146 1613 1984 2166 1546 1961 2143 1597 1965 2147 1611 1981 2163 1611 1981 2163 1597 1965 2147 1671 1985 2167 1549 1966 2148 1614 1986 2168 1599 1967 2149 1599 1967 2149 1614 1986 2168 1672 1987 2169 1615 1988 2170 1548 1968 2150 1672 1987 2169 1672 1987 2169 1548 1968 2150 1599 1967 2149 1601 1970 2152 1551 1969 2151 1673 1990 2172 1673 1990 2172 1551 1969 2151 1616 1989 2171 1550 1971 2153 1601 1970 2152 1617 1991 2173 1617 1991 2173 1601 1970 2152 1673 1990 2172 1603 1973 2155 1553 1972 2154 1674 1993 2175 1674 1993 2175 1553 1972 2154 1618 1992 2174 1552 1974 2156 1603 1973 2155 1619 1994 2176 1619 1994 2176 1603 1973 2155 1674 1993 2175 1548 1968 2150 1615 1988 2170 1605 1975 2157 1605 1975 2157 1615 1988 2170 1675 1995 2177 1618 1992 2174 1553 1972 2154 1675 1995 2177 1675 1995 2177 1553 1972 2154 1605 1975 2157 1554 1976 2158 1620 1996 2178 1606 1977 2159 1606 1977 2159 1620 1996 2178 1676 1997 2179 1614 1986 2168 1549 1966 2148 1676 1997 2179 1676 1997 2179 1549 1966 2148 1606 1977 2159 1545 1963 2145 1612 1983 2165 1607 1978 2160 1607 1978 2160 1612 1983 2165 1677 1998 2180 1620 1996 2178 1554 1976 2158 1677 1998 2180 1677 1998 2180 1554 1976 2158 1607 1978 2160 1608 1979 2161 1550 1971 2153 1678 1999 2181 1678 1999 2181 1550 1971 2153 1617 1991 2173 1547 1964 2146 1608 1979 2161 1613 1984 2166 1613 1984 2166 1608 1979 2161 1678 1999 2181 1609 1980 2162 1552 1974 2156 1679 2000 2182 1679 2000 2182 1552 1974 2156 1619 1994 2176 1551 1969 2151 1609 1980 2162 1616 1989 2171 1616 1989 2171 1609 1980 2162 1679 2000 2182 1651 1814 745 1587 1809 740 1588 1815 746 1587 1809 740 1595 1769 700 1588 1815 746 1595 1769 700 1659 1819 750 1588 1815 746 1594 1764 695 1589 1803 734 1657 1772 703 1657 1772 703 1589 1803 734 1653 1802 733 1658 1763 694 1652 1808 739 1594 1764 695 1594 1764 695 1652 1808 739 1589 1803 734 1657 1772 703 1653 1802 733 1593 1773 704 1593 1773 704 1653 1802 733 1590 1797 728 1655 1784 715 1592 1779 710 1591 1785 716 1680 1793 724 1681 1792 723 1592 1779 710 1592 1779 710 1681 1792 723 1591 1785 716 1590 1797 728 1654 1796 727 1593 1773 704 1593 1773 704 1654 1796 727 1656 1778 709 1559 1782 713 1591 1785 716 1625 1788 719 1625 1788 719 1591 1785 716 1681 1792 723 1592 1779 710 1656 1778 709 1680 1793 724 1680 1793 724 1656 1778 709 1654 1796 727 1611 1981 2163 1519 2001 2183 1670 1982 2164 1670 1982 2164 1519 2001 2183 1520 2002 2184 1670 1982 2164 1520 2002 2184 1612 1983 2165 1612 1983 2165 1520 2002 2184 1882 1750 2052 1517 2003 2185 1518 2004 2186 1613 1984 2166 1613 1984 2166 1518 2004 2186 1671 1985 2167 1488 1724 2026 1485 1723 2025 1614 1986 2168 1614 1986 2168 1485 1723 2025 1672 1987 2169 1672 1987 2169 1485 1723 2025 1615 1988 2170 1615 1988 2170 1485 1723 2025 1476 1714 2016 1499 1737 2039 1505 1743 2045 1616 1989 2171 1616 1989 2171 1505 1743 2045 1673 1990 2172 1505 1743 2045 1511 1749 2051 1673 1990 2172 1673 1990 2172 1511 1749 2051 1617 1991 2173 1618 1992 2174 1474 1712 2014 1674 1993 2175 1674 1993 2175 1474 1712 2014 1484 1722 2024 1674 1993 2175 1484 1722 2024 1619 1994 2176 1619 1994 2176 1484 1722 2024 1487 1729 2031 1476 1714 2016 1475 1713 2015 1615 1988 2170 1615 1988 2170 1475 1713 2015 1675 1995 2177 1675 1995 2177 1475 1713 2015 1618 1992 2174 1618 1992 2174 1475 1713 2015 1474 1712 2014 1620 1996 2178 1500 1739 2041 1676 1997 2179 1676 1997 2179 1500 1739 2041 1494 1733 2035 1676 1997 2179 1494 1733 2035 1614 1986 2168 1614 1986 2168 1494 1733 2035 1488 1724 2026 1677 1998 2180 1506 1745 2047 1620 1996 2178 1620 1996 2178 1506 1745 2047 1500 1739 2041 1617 1991 2173 1511 1749 2051 1678 1999 2181 1678 1999 2181 1511 1749 2051 1516 1758 2060 1516 1758 2060 1517 2003 2185 1678 1999 2181 1678 1999 2181 1517 2003 2185 1613 1984 2166 1619 1994 2176 1487 1729 2031 1679 2000 2182 1679 2000 2182 1487 1729 2031 1493 1731 2033 1679 2000 2182 1493 1731 2033 1616 1989 2171 1616 1989 2171 1493 1731 2033 1499 1737 2039 1518 2004 2186 1519 2001 2183 1671 1985 2167 1671 1985 2167 1519 2001 2183 1611 1981 2163 1487 1729 2031 1484 1722 2024 1483 1721 2023 1484 1722 2024 1474 1712 2014 1473 1711 2013 1677 1998 2180 1612 1983 2165 1506 1745 2047 1506 1745 2047 1612 1983 2165 1882 1750 2052 1807 2005 620 1687 2006 621 1721 2007 622 1687 2006 621 1722 2008 623 1721 2007 622 1721 2007 622 1722 2008 623 1807 2005 620 1723 2009 624 1070 1282 380 1808 2010 625 1808 2010 625 1070 1282 380 1092 1281 379 1879 2012 627 1723 2009 624 1878 2011 626 1878 2011 626 1723 2009 624 1808 2010 625 1723 2009 624 1879 2012 627 1809 2014 629 1809 2014 629 1879 2012 627 1880 2013 628 1093 1289 387 1809 2014 629 1110 1287 385 1110 1287 385 1809 2014 629 1857 2015 630 1070 1282 380 1723 2009 624 1093 1289 387 1093 1289 387 1723 2009 624 1809 2014 629 1867 2017 632 1724 2018 633 1789 2016 631 1789 2016 631 1724 2018 633 1688 2019 634 1724 2018 633 1867 2017 632 1683 2020 635 1683 2020 635 1867 2017 632 1685 2021 636 1725 2023 638 1720 2024 639 1690 2022 637 1690 2022 637 1720 2024 639 1682 2025 640 1071 1300 398 1069 2026 399 1725 2023 638 1725 2023 638 1069 2026 399 1720 2027 639 1724 2018 633 1683 2028 635 1810 2030 642 1810 2030 642 1683 2028 635 1726 2029 641 1684 2032 643 1847 2033 644 1726 2031 641 1726 2031 641 1847 2033 644 1810 2030 642 1847 2033 644 1792 2034 645 1810 2030 642 1810 2030 642 1792 2034 645 1727 2035 646 1688 2019 634 1724 2018 633 1727 2035 646 1727 2035 646 1724 2018 633 1810 2030 642 1844 2037 648 1728 2038 649 1788 2036 647 1788 2036 647 1728 2038 649 1691 2039 650 1789 2016 631 1688 2019 634 1844 2037 648 1844 2037 648 1688 2019 634 1728 2038 649 1729 2040 651 1693 2041 652 1811 2043 654 1811 2043 654 1693 2041 652 1730 2042 653 1694 2044 655 1815 2045 656 1730 2042 653 1730 2042 653 1815 2045 656 1811 2043 654 1815 2045 656 1731 2046 657 1811 2043 654 1731 2046 657 1692 2047 658 1811 2043 654 1811 2043 654 1692 2047 658 1729 2040 651 1732 2048 659 1690 2022 637 1812 2050 661 1812 2050 661 1690 2022 637 1689 2049 660 1695 2052 663 1732 2048 659 1790 2051 662 1790 2051 662 1732 2048 659 1812 2050 661 1732 2048 659 1695 2052 663 1813 2054 665 1813 2054 665 1695 2052 663 1733 2053 664 1072 1331 426 1094 1330 425 1733 2053 664 1733 2053 664 1094 1330 425 1813 2054 665 1094 1330 425 1071 1300 398 1813 2054 665 1813 2054 665 1071 1300 398 1725 2023 638 1690 2022 637 1732 2048 659 1725 2023 638 1725 2023 638 1732 2048 659 1813 2054 665 1848 2055 666 1793 2056 667 1814 2058 669 1814 2058 669 1793 2056 667 1734 2057 668 1734 2057 668 1691 2039 650 1814 2058 669 1814 2058 669 1691 2039 650 1728 2038 649 1688 2019 634 1727 2035 646 1728 2038 649 1728 2038 649 1727 2035 646 1814 2058 669 1792 2034 645 1848 2055 666 1727 2035 646 1727 2035 646 1848 2055 666 1814 2058 669 1694 2044 655 1696 2059 670 1815 2045 656 1815 2045 656 1696 2059 670 1735 2060 671 1735 2060 671 1736 2061 672 1815 2045 656 1698 2063 674 1737 2064 675 1778 2062 673 1778 2062 673 1737 2064 675 1699 2065 676 1737 2064 675 1779 2066 677 1699 2065 676 1699 2065 676 1779 2066 677 1866 2067 678 1738 2068 679 1073 1348 443 1816 2069 680 1816 2069 680 1073 1348 443 1095 1347 442 1095 1347 442 1074 1350 445 1816 2069 680 1816 2069 680 1074 1350 445 1836 2070 681 1779 2066 677 1737 2064 675 1836 2070 681 1836 2070 681 1737 2064 675 1816 2069 680 1698 2063 674 1738 2068 679 1737 2064 675 1737 2064 675 1738 2068 679 1816 2069 680 1798 2071 682 1701 2072 683 1817 2074 685 1817 2074 685 1701 2072 683 1740 2073 684 1700 2075 686 1739 2076 687 1740 2073 684 1740 2073 684 1739 2076 687 1817 2074 685 1702 2078 689 1742 2079 690 1741 2077 688 1741 2077 688 1742 2079 690 1818 2080 691 1686 2081 751 1807 2005 620 1742 2079 690 1742 2079 690 1807 2005 620 1818 2080 691 1818 2080 691 1744 2082 753 1741 2077 688 1741 2077 688 1744 2082 753 1871 2083 754 1722 2008 623 1743 2084 755 1807 2005 620 1807 2005 620 1743 2084 755 1818 2080 691 1743 2084 755 1703 2085 756 1818 2080 691 1818 2080 691 1703 2085 756 1744 2082 753 1876 2087 758 1877 2088 759 1745 2086 757 1745 2086 757 1877 2088 759 1819 2089 760 1877 2088 759 1878 2011 626 1819 2089 760 1819 2089 760 1878 2011 626 1808 2010 625 1808 2010 625 1092 1281 379 1819 2089 760 1819 2089 760 1092 1281 379 1096 1369 464 1075 1370 465 1745 2086 757 1096 1369 464 1096 1369 464 1745 2086 757 1819 2089 760 1788 2036 647 1691 2039 650 1843 2091 762 1843 2091 762 1691 2039 650 1746 2090 761 1843 2091 762 1746 2090 761 1704 2092 763 1704 2092 763 1746 2090 761 1705 2093 764 1747 2094 765 1706 2095 766 1820 2097 768 1820 2097 768 1706 2095 766 1748 2096 767 1707 2098 769 1749 2099 770 1748 2096 767 1748 2096 767 1749 2099 770 1820 2097 768 1749 2099 770 1702 2078 689 1820 2097 768 1820 2097 768 1702 2078 689 1741 2077 688 1706 2095 766 1747 2094 765 1750 2100 771 1750 2100 771 1747 2094 765 1821 2101 772 1744 2082 753 1805 2103 774 1871 2083 754 1751 2102 773 1871 2083 754 1805 2103 774 1751 2102 773 1696 2059 670 1821 2101 772 1821 2101 772 1696 2059 670 1752 2104 775 1708 2105 776 1750 2100 771 1752 2104 775 1752 2104 775 1750 2100 771 1821 2101 772 1702 2078 689 1749 2099 770 1753 2106 777 1753 2106 777 1749 2099 770 1822 2107 778 1749 2099 770 1707 2098 769 1822 2107 778 1822 2107 778 1707 2098 769 1754 2108 779 1802 2109 780 1856 2110 781 1754 2108 779 1754 2108 779 1856 2110 781 1822 2107 778 1856 2110 781 1803 2111 782 1822 2107 778 1822 2107 778 1803 2111 782 1753 2106 777 1755 2113 784 1842 2114 785 1709 2112 783 1709 2112 783 1842 2114 785 1787 2115 786 1842 2114 785 1755 2113 784 1786 2116 787 1786 2116 787 1755 2113 784 1710 2117 788 1756 2118 789 1712 2119 790 1823 2121 792 1823 2121 792 1712 2119 790 1757 2120 791 1714 2122 793 1758 2123 794 1757 2120 791 1757 2120 791 1758 2123 794 1823 2121 792 1758 2123 794 1713 2124 795 1823 2121 792 1823 2121 792 1713 2124 795 1759 2125 796 1711 2126 797 1756 2118 789 1759 2125 796 1759 2125 796 1756 2118 789 1823 2121 792 1760 2127 798 1715 2128 799 1824 2130 801 1824 2130 801 1715 2128 799 1761 2129 800 1700 2075 686 1762 2131 802 1761 2129 800 1761 2129 800 1762 2131 802 1824 2130 801 1712 2119 790 1756 2118 789 1762 2131 802 1762 2131 802 1756 2118 789 1824 2130 801 1756 2118 789 1711 2126 797 1824 2130 801 1824 2130 801 1711 2126 797 1760 2127 798 1763 2132 803 1795 2133 804 1825 2135 806 1825 2135 806 1795 2133 804 1851 2134 805 1796 2136 807 1764 2137 808 1851 2134 805 1851 2134 805 1764 2137 808 1825 2135 806 1764 2137 808 1710 2117 788 1825 2135 806 1825 2135 806 1710 2117 788 1755 2113 784 1709 2112 783 1763 2132 803 1755 2113 784 1755 2113 784 1763 2132 803 1825 2135 806 1713 2124 795 1758 2123 794 1765 2138 809 1765 2138 809 1758 2123 794 1826 2139 810 1758 2123 794 1714 2122 793 1826 2139 810 1826 2139 810 1714 2122 793 1766 2140 811 1800 2141 812 1854 2142 813 1766 2140 811 1766 2140 811 1854 2142 813 1826 2139 810 1854 2142 813 1801 2143 814 1826 2139 810 1826 2139 810 1801 2143 814 1765 2138 809 1786 2116 787 1710 2117 788 1841 2144 815 1841 2144 815 1710 2117 788 1764 2137 808 1797 2145 816 1841 2144 815 1796 2136 807 1796 2136 807 1841 2144 815 1764 2137 808 1799 2147 818 1853 2148 819 1767 2146 817 1767 2146 817 1853 2148 819 1827 2149 820 1853 2148 819 1800 2141 812 1827 2149 820 1827 2149 820 1800 2141 812 1766 2140 811 1766 2140 811 1714 2122 793 1827 2149 820 1827 2149 820 1714 2122 793 1757 2120 791 1712 2119 790 1767 2146 817 1757 2120 791 1757 2120 791 1767 2146 817 1827 2149 820 1768 2150 821 1695 2052 663 1828 2151 822 1828 2151 822 1695 2052 663 1790 2051 662 1716 2153 824 1768 2150 821 1791 2152 823 1791 2152 823 1768 2150 821 1828 2151 822 1717 2155 826 1769 2156 827 1770 2154 825 1770 2154 825 1769 2156 827 1829 2157 828 1744 2082 753 1703 2085 756 1830 2159 830 1830 2159 830 1703 2085 756 1771 2158 829 1771 2158 829 1875 2161 832 1872 2160 831 1872 2160 831 1875 2161 832 1874 2162 833 1768 2150 821 1716 2153 824 1831 2164 835 1831 2164 835 1716 2153 824 1773 2163 834 1076 1447 542 1097 1446 541 1773 2163 834 1773 2163 834 1097 1446 541 1831 2164 835 1097 1446 541 1072 1331 426 1831 2164 835 1831 2164 835 1072 1331 426 1733 2053 664 1695 2052 663 1768 2150 821 1733 2053 664 1733 2053 664 1768 2150 821 1831 2164 835 1876 2087 758 1745 2086 757 1875 2161 832 1875 2161 832 1745 2086 757 1832 2165 836 1745 2086 757 1075 1370 465 1832 2165 836 1832 2165 836 1075 1370 465 1098 1449 544 1077 1451 546 1774 2166 837 1098 1449 544 1098 1449 544 1774 2166 837 1832 2165 836 1774 2166 837 1874 2162 833 1832 2165 836 1832 2165 836 1874 2162 833 1875 2161 832 1718 2167 838 1716 2153 824 1846 2168 839 1846 2168 839 1716 2153 824 1791 2152 823 1769 2156 827 1717 2155 826 1776 2170 841 1776 2170 841 1717 2155 826 1775 2169 840 1872 2160 831 1874 2162 833 1835 2171 842 1835 2171 842 1874 2162 833 1873 2172 843 1078 1458 553 1076 1447 542 1833 2173 844 1833 2173 844 1076 1447 542 1773 2163 834 1716 2153 824 1718 2167 838 1773 2163 834 1773 2163 834 1718 2167 838 1833 2173 844 1774 2166 837 1077 1451 546 1834 2174 845 1834 2174 845 1077 1451 546 1099 1461 556 1874 2162 833 1774 2166 837 1873 2172 843 1873 2172 843 1774 2166 837 1834 2174 845 1776 2170 841 1775 2169 840 1699 2065 676 1699 2065 676 1775 2169 840 1778 2062 673 1074 1350 445 1078 1458 553 1836 2070 681 1836 2070 681 1078 1458 553 1833 2173 844 1718 2167 838 1779 2066 677 1833 2173 844 1833 2173 844 1779 2066 677 1836 2070 681 1794 2176 847 1780 2177 848 1849 2175 846 1849 2175 846 1780 2177 848 1837 2178 849 1780 2177 848 1705 2093 764 1837 2178 849 1837 2178 849 1705 2093 764 1746 2090 761 1691 2039 650 1734 2057 668 1746 2090 761 1746 2090 761 1734 2057 668 1837 2178 849 1734 2057 668 1793 2056 667 1837 2178 849 1837 2178 849 1793 2056 667 1849 2175 846 1855 2179 850 1802 2109 780 1838 2180 851 1838 2180 851 1802 2109 780 1754 2108 779 1707 2098 769 1781 2181 852 1754 2108 779 1754 2108 779 1781 2181 852 1838 2180 851 1781 2181 852 1713 2124 795 1838 2180 851 1838 2180 851 1713 2124 795 1765 2138 809 1801 2143 814 1855 2179 850 1765 2138 809 1765 2138 809 1855 2179 850 1838 2180 851 1719 2182 853 1715 2128 799 1839 2184 855 1839 2184 855 1715 2128 799 1782 2183 854 1708 2105 776 1783 2185 856 1782 2183 854 1782 2183 854 1783 2185 856 1839 2184 855 1704 2092 763 1705 2093 764 1870 2187 858 1870 2187 858 1705 2093 764 1784 2186 857 1709 2112 783 1787 2115 786 1784 2186 857 1784 2186 857 1787 2115 786 1870 2187 858 1785 2188 859 1711 2126 797 1840 2189 860 1840 2189 860 1711 2126 797 1759 2125 796 1713 2124 795 1781 2181 852 1759 2125 796 1759 2125 796 1781 2181 852 1840 2189 860 1781 2181 852 1707 2098 769 1840 2189 860 1840 2189 860 1707 2098 769 1748 2096 767 1706 2095 766 1785 2188 859 1748 2096 767 1748 2096 767 1785 2188 859 1840 2189 860 1797 2145 816 1798 2071 682 1841 2144 815 1841 2144 815 1798 2071 682 1817 2074 685 1739 2076 687 1786 2116 787 1817 2074 685 1817 2074 685 1786 2116 787 1841 2144 815 1786 2116 787 1739 2076 687 1842 2114 785 1842 2114 785 1739 2076 687 1863 2190 861 1719 2182 853 1787 2115 786 1863 2190 861 1863 2190 861 1787 2115 786 1842 2114 785 1704 2092 763 1783 2185 856 1843 2091 762 1843 2091 762 1783 2185 856 1860 2191 862 1694 2044 655 1788 2036 647 1860 2191 862 1860 2191 862 1788 2036 647 1843 2091 762 1788 2036 647 1694 2044 655 1844 2037 648 1844 2037 648 1694 2044 655 1730 2042 653 1693 2041 652 1789 2016 631 1730 2042 653 1730 2042 653 1789 2016 631 1844 2037 648 1693 2041 652 1729 2040 651 1685 2192 636 1685 2192 636 1729 2040 651 1845 2193 863 1896 2194 864 1692 2047 658 1731 2046 657 1829 2157 828 1769 2156 827 1828 2151 822 1828 2151 822 1769 2156 827 1791 2152 823 1769 2156 827 1776 2170 841 1791 2152 823 1791 2152 823 1776 2170 841 1846 2168 839 1776 2170 841 1699 2065 676 1846 2168 839 1846 2168 839 1699 2065 676 1866 2067 678 1068 2196 577 1100 1483 576 1684 2195 643 1684 2195 643 1100 1483 576 1847 2033 644 1100 1483 576 1079 1485 578 1847 2033 644 1847 2033 644 1079 1485 578 1792 2034 645 1079 1485 578 1101 1486 579 1792 2034 645 1792 2034 645 1101 1486 579 1848 2055 666 1101 1486 579 1080 1487 580 1848 2055 666 1848 2055 666 1080 1487 580 1793 2056 667 1080 1487 580 1102 1488 581 1793 2056 667 1793 2056 667 1102 1488 581 1849 2175 846 1081 1489 582 1794 2176 847 1102 1488 581 1102 1488 581 1794 2176 847 1849 2175 846 1794 2176 847 1081 1489 582 1850 2197 865 1850 2197 865 1081 1489 582 1103 1491 584 1082 1492 585 1795 2133 804 1103 1491 584 1103 1491 584 1795 2133 804 1850 2197 865 1795 2133 804 1082 1492 585 1851 2134 805 1851 2134 805 1082 1492 585 1104 1493 586 1083 1494 587 1796 2136 807 1104 1493 586 1104 1493 586 1796 2136 807 1851 2134 805 1084 1495 588 1797 2145 816 1083 1494 587 1083 1494 587 1797 2145 816 1796 2136 807 1085 1496 589 1798 2071 682 1084 1495 588 1084 1495 588 1798 2071 682 1797 2145 816 1087 1499 592 1105 1498 591 1701 2072 683 1701 2072 683 1105 1498 591 1852 2198 866 1105 1498 591 1086 1500 593 1852 2198 866 1852 2198 866 1086 1500 593 1799 2147 818 1106 1501 594 1088 1502 595 1853 2148 819 1853 2148 819 1088 1502 595 1800 2141 812 1086 1500 593 1106 1501 594 1799 2147 818 1799 2147 818 1106 1501 594 1853 2148 819 1088 1502 595 1107 1503 596 1800 2141 812 1800 2141 812 1107 1503 596 1854 2142 813 1107 1503 596 1089 1504 597 1854 2142 813 1854 2142 813 1089 1504 597 1801 2143 814 1108 1505 598 1090 1506 599 1855 2179 850 1855 2179 850 1090 1506 599 1802 2109 780 1089 1504 597 1108 1505 598 1801 2143 814 1801 2143 814 1108 1505 598 1855 2179 850 1090 1506 599 1109 1507 600 1802 2109 780 1802 2109 780 1109 1507 600 1856 2110 781 1109 1507 600 1091 1508 601 1856 2110 781 1856 2110 781 1091 1508 601 1803 2111 782 1091 1508 601 1110 1287 385 1803 2111 782 1803 2111 782 1110 1287 385 1857 2015 630 1738 2068 679 1698 2063 674 1858 2200 868 1858 2200 868 1698 2063 674 1804 2199 867 1873 2172 843 1834 2174 845 1804 2199 867 1804 2199 867 1834 2174 845 1858 2200 868 1834 2174 845 1099 1461 556 1858 2200 868 1858 2200 868 1099 1461 556 1111 1511 604 1073 1348 443 1738 2068 679 1111 1511 604 1111 1511 604 1738 2068 679 1858 2200 868 1085 1496 589 1087 1499 592 1798 2071 682 1798 2071 682 1087 1499 592 1701 2072 683 1697 2201 869 1805 2103 774 1770 2154 825 1770 2154 825 1805 2103 774 1859 2202 870 1805 2103 774 1744 2082 753 1859 2202 870 1859 2202 870 1744 2082 753 1830 2159 830 1772 2203 871 1806 2204 872 1830 2159 830 1830 2159 830 1806 2204 872 1859 2202 870 1806 2204 872 1717 2155 826 1859 2202 870 1859 2202 870 1717 2155 826 1770 2154 825 1783 2185 856 1708 2105 776 1860 2191 862 1860 2191 862 1708 2105 776 1752 2104 775 1694 2044 655 1860 2191 862 1696 2059 670 1696 2059 670 1860 2191 862 1752 2104 775 1717 2155 826 1806 2204 872 1775 2169 840 1775 2169 840 1806 2204 872 1861 2205 873 1806 2204 872 1772 2203 871 1861 2205 873 1861 2205 873 1772 2203 871 1777 2206 874 1785 2188 859 1706 2095 766 1862 2207 875 1862 2207 875 1706 2095 766 1750 2100 771 1750 2100 771 1708 2105 776 1862 2207 875 1862 2207 875 1708 2105 776 1782 2183 854 1715 2128 799 1760 2127 798 1782 2183 854 1782 2183 854 1760 2127 798 1862 2207 875 1711 2126 797 1785 2188 859 1760 2127 798 1760 2127 798 1785 2188 859 1862 2207 875 1775 2169 840 1861 2205 873 1778 2062 673 1778 2062 673 1861 2205 873 1864 2208 876 1777 2206 874 1835 2171 842 1861 2205 873 1861 2205 873 1835 2171 842 1864 2208 876 1739 2076 687 1700 2075 686 1863 2190 861 1863 2190 861 1700 2075 686 1761 2129 800 1715 2128 799 1719 2182 853 1761 2129 800 1761 2129 800 1719 2182 853 1863 2190 861 1804 2199 867 1698 2063 674 1864 2208 876 1864 2208 876 1698 2063 674 1778 2062 673 1852 2198 866 1799 2147 818 1865 2209 877 1865 2209 877 1799 2147 818 1767 2146 817 1712 2119 790 1762 2131 802 1767 2146 817 1767 2146 817 1762 2131 802 1865 2209 877 1762 2131 802 1700 2075 686 1865 2209 877 1865 2209 877 1700 2075 686 1740 2073 684 1701 2072 683 1852 2198 866 1740 2073 684 1740 2073 684 1852 2198 866 1865 2209 877 1779 2066 677 1718 2167 838 1866 2067 678 1866 2067 678 1718 2167 838 1846 2168 839 1789 2016 631 1693 2041 652 1867 2017 632 1867 2017 632 1693 2041 652 1685 2210 636 1696 2059 670 1751 2102 773 1735 2060 671 1735 2060 671 1751 2102 773 1697 2201 869 1805 2103 774 1697 2201 869 1751 2102 773 1803 2111 782 1857 2015 630 1753 2106 777 1753 2106 777 1857 2015 630 1868 2211 878 1857 2015 630 1809 2014 629 1868 2211 878 1809 2014 629 1880 2013 628 1868 2211 878 1742 2079 690 1702 2078 689 1868 2211 878 1868 2211 878 1702 2078 689 1753 2106 777 1780 2177 848 1794 2176 847 1869 2212 879 1869 2212 879 1794 2176 847 1850 2197 865 1795 2133 804 1763 2132 803 1850 2197 865 1850 2197 865 1763 2132 803 1869 2212 879 1763 2132 803 1709 2112 783 1869 2212 879 1869 2212 879 1709 2112 783 1784 2186 857 1705 2093 764 1780 2177 848 1784 2186 857 1784 2186 857 1780 2177 848 1869 2212 879 1787 2115 786 1719 2182 853 1870 2187 858 1870 2187 858 1719 2182 853 1839 2184 855 1783 2185 856 1704 2092 763 1839 2184 855 1839 2184 855 1704 2092 763 1870 2187 858 1871 2083 754 1751 2102 773 1747 2094 765 1747 2094 765 1751 2102 773 1821 2101 772 1871 2083 754 1747 2094 765 1741 2077 688 1741 2077 688 1747 2094 765 1820 2097 768 1772 2203 871 1872 2160 831 1777 2206 874 1777 2206 874 1872 2160 831 1835 2171 842 1872 2160 831 1772 2203 871 1771 2158 829 1771 2158 829 1772 2203 871 1830 2159 830 1835 2171 842 1873 2172 843 1864 2208 876 1864 2208 876 1873 2172 843 1804 2199 867 1703 2085 756 1876 2087 758 1771 2158 829 1771 2158 829 1876 2087 758 1875 2161 832 1877 2088 759 1876 2087 758 1743 2084 755 1743 2084 755 1876 2087 758 1703 2085 756 1743 2084 755 1722 2008 623 1877 2088 759 1877 2088 759 1722 2008 623 1878 2011 626 1687 2006 621 1879 2012 627 1722 2008 623 1722 2008 623 1879 2012 627 1878 2011 626 1880 2013 628 1879 2012 627 1686 2081 751 1686 2081 751 1879 2012 627 1687 2006 621 1868 2211 878 1880 2013 628 1742 2079 690 1742 2079 690 1880 2013 628 1686 2081 751 1684 2214 2187 1886 2215 2188 1068 2213 1843 1068 2213 1843 1886 2215 2188 1319 1525 1844 1521 1759 2061 1886 2215 2188 1518 2004 2186 1518 2004 2186 1886 2215 2188 1887 2216 2189 1518 2004 2186 1517 2003 2185 1521 1759 2061 1521 1759 2061 1517 2003 2185 1881 1760 2062 1517 2003 2185 1516 1758 2060 1881 1760 2062 1881 1760 2062 1516 1758 2060 1515 1757 2059 898 1023 1712 1312 1025 1714 1515 1757 2059 1515 1757 2059 1312 1025 1714 1881 1760 2062 1683 2217 2190 1685 2218 2191 1888 2220 2193 1888 2220 2193 1685 2218 2191 1889 2219 2192 1882 1750 2052 1520 2002 2184 1890 2221 2194 1890 2221 2194 1520 2002 2184 1889 2219 2192 1885 2223 2196 1892 2224 2197 1884 2222 2195 1884 2222 2195 1892 2224 2197 1891 2225 2198 1514 1754 2056 1898 2226 2199 1315 1538 1857 1315 1538 1857 1898 2226 2199 1320 1539 1858 1518 2004 2186 1887 2216 2189 1519 2001 2183 1519 2001 2183 1887 2216 2189 1888 2220 2193 1882 1750 2052 1890 2221 2194 1512 1751 2053 1512 1751 2053 1890 2221 2194 1891 2225 2198 1729 2040 651 1692 2047 658 1845 2228 863 1845 2228 863 1692 2047 658 1884 2227 880 1690 2022 637 1682 2229 640 1689 2049 660 1689 2049 660 1682 2229 640 1885 2230 881 1513 1752 2054 1892 2224 2197 1883 1753 2055 1883 1753 2055 1892 2224 2197 1893 2231 2200 1884 2233 880 1692 2047 658 1885 2232 881 1885 2232 881 1692 2047 658 1689 2049 660 905 1028 1717 1319 1525 1844 1521 1759 2061 1521 1759 2061 1319 1525 1844 1886 2215 2188 1069 2235 1862 1320 1539 1858 1720 2234 2201 1720 2234 2201 1320 1539 1858 1898 2226 2199 1684 2236 2187 1726 2237 2202 1886 2215 2188 1886 2215 2188 1726 2237 2202 1887 2216 2189 1726 2238 2202 1683 2239 2190 1887 2216 2189 1887 2216 2189 1683 2239 2190 1888 2220 2193 1520 2002 2184 1519 2001 2183 1889 2219 2192 1889 2219 2192 1519 2001 2183 1888 2220 2193 1845 2241 2203 1890 2221 2194 1685 2240 2191 1685 2240 2191 1890 2221 2194 1889 2219 2192 1884 2243 2195 1891 2225 2198 1845 2242 2203 1845 2242 2203 1891 2225 2198 1890 2221 2194 1512 1751 2053 1891 2225 2198 1513 1752 2054 1513 1752 2054 1891 2225 2198 1892 2224 2197 1682 2245 2204 1893 2231 2200 1885 2244 2196 1885 2244 2196 1893 2231 2200 1892 2224 2197 1720 2247 2201 1898 2226 2199 1682 2246 2204 1682 2246 2204 1898 2226 2199 1893 2231 2200 1894 2248 882 1697 2201 869 1829 2157 828 1829 2157 828 1697 2201 869 1770 2154 825 1894 2248 882 1829 2157 828 1790 2051 662 1790 2051 662 1829 2157 828 1828 2151 822 1894 2248 882 1790 2051 662 1895 2249 883 1895 2249 883 1790 2051 662 1812 2050 661 1735 2060 671 1697 2201 869 1736 2061 672 1736 2061 672 1697 2201 869 1894 2248 882 1736 2061 672 1894 2248 882 1896 2194 864 1896 2194 864 1894 2248 882 1895 2249 883 1692 2047 658 1896 2194 864 1689 2049 660 1689 2049 660 1896 2194 864 1895 2249 883 1689 2049 660 1895 2249 883 1812 2050 661 1815 2045 656 1736 2061 672 1731 2046 657 1731 2046 657 1736 2061 672 1896 2194 864 1883 1753 2055 1893 2231 2200 1514 1754 2056 1514 1754 2056 1893 2231 2200 1898 2226 2199 1371 1600 1902 1899 1601 1903 1359 1584 1886 1359 1584 1886 1899 1601 1903 1360 1586 1888 1382 1613 1915 1900 1614 1916 1371 1600 1902 1371 1600 1902 1900 1614 1916 1899 1601 1903 1393 1626 1928 1901 1627 1929 1382 1613 1915 1382 1613 1915 1901 1627 1929 1900 1614 1916 1404 1639 1941 1902 1640 1942 1393 1626 1928 1393 1626 1928 1902 1640 1942 1901 1627 1929 1404 1639 1941 1415 1652 1954 1902 1640 1942 1902 1640 1942 1415 1652 1954 350 790 1479 1426 1664 1966 433 793 1482 1415 1652 1954 1415 1652 1954 433 793 1482 350 790 1479 1497 1735 2037 1903 1756 2058 430 806 1495 1503 1741 2043 1509 1747 2049 1903 1756 2058 1903 1756 2058 1509 1747 2049 1904 1755 2057 1051 1105 1734 986 1090 1719 1905 1106 1735 1905 1106 1735 986 1090 1719 1906 1093 1722 1048 1091 1720 908 1109 1738 1907 1092 1721 1907 1092 1721 908 1109 1738 1908 1096 1725 1017 1095 1724 951 1107 1736 1907 1092 1721 1907 1092 1721 951 1107 1736 1906 1093 1722 1019 1108 1737 925 1101 1730 1905 1106 1735 1905 1106 1735 925 1101 1730 1909 1103 1732 1020 1113 1742 923 1094 1723 1910 1111 1740 1910 1111 1740 923 1094 1723 1908 1096 1725 1050 1098 1727 909 1104 1733 1911 1099 1728 1911 1099 1728 909 1104 1733 1909 1103 1732 1052 1110 1739 910 1115 1744 1910 1111 1740 1910 1111 1740 910 1115 1744 1912 1114 1743 1018 1102 1731 952 1148 1777 1911 1099 1728 1911 1099 1728 952 1148 1777 1913 1100 1729 1021 1119 1748 924 1112 1741 1914 1117 1746 1914 1117 1746 924 1112 1741 1912 1114 1743 990 1097 1726 1913 1100 1729 1055 1146 1775 1055 1146 1775 1913 1100 1729 1915 1147 1776 982 1125 1754 1916 1120 1749 1053 1116 1745 1053 1116 1745 1916 1120 1749 1914 1117 1746 928 1142 1771 1917 1144 1773 1026 1149 1778 1026 1149 1778 1917 1144 1773 1915 1147 1776 926 1118 1747 1916 1120 1749 1022 1122 1751 1022 1122 1751 1916 1120 1749 1918 1123 1752 912 1145 1774 1917 1144 1773 1049 1140 1769 1049 1140 1769 1917 1144 1773 1919 1141 1770 984 1127 1756 1920 1124 1753 1046 1126 1755 1046 1126 1755 1920 1124 1753 1918 1123 1752 930 1136 1765 1921 1138 1767 1025 1143 1772 1025 1143 1772 1921 1138 1767 1919 1141 1770 927 1121 1750 1920 1124 1753 1023 1131 1760 1023 1131 1760 1920 1124 1753 1922 1129 1758 988 1139 1768 1921 1138 1767 1054 1134 1763 1054 1134 1763 1921 1138 1767 1923 1135 1764 911 1133 1762 1924 1132 1761 1047 1128 1757 1047 1128 1757 1924 1132 1761 1922 1129 1758 929 1130 1759 1924 1132 1761 1024 1137 1766 1024 1137 1766 1924 1132 1761 1923 1135 1764 1662 1821 2063 1926 1824 2066 1522 1841 2083 1522 1841 2083 1926 1824 2066 1925 1827 2069 1665 1835 2077 1928 1837 2079 1600 1822 2064 1600 1822 2064 1928 1837 2079 1927 1823 2065 1631 1825 2067 1926 1824 2066 1565 1839 2081 1565 1839 2081 1926 1824 2066 1927 1823 2065 1634 1843 2085 1929 1842 2084 1537 1826 2068 1537 1826 2068 1929 1842 2084 1925 1827 2069 1633 1838 2080 1928 1837 2079 1539 1833 2075 1539 1833 2075 1928 1837 2079 1930 1834 2076 1666 1840 2082 1929 1842 2084 1524 1847 2089 1524 1847 2089 1929 1842 2084 1931 1845 2087 1664 1828 2070 1932 1831 2073 1523 1836 2078 1523 1836 2078 1932 1831 2073 1930 1834 2076 1635 1849 2091 1933 1848 2090 1538 1844 2086 1538 1844 2086 1933 1848 2090 1931 1845 2087 1632 1832 2074 1932 1831 2073 1566 1880 2122 1566 1880 2122 1932 1831 2073 1934 1830 2072 1596 1857 2099 1667 1846 2088 1935 1851 2093 1935 1851 2093 1667 1846 2088 1933 1848 2090 1604 1829 2071 1669 1876 2118 1934 1830 2072 1934 1830 2072 1669 1876 2118 1936 1878 2120 1540 1850 2092 1636 1852 2094 1935 1851 2093 1935 1851 2093 1636 1852 2094 1937 1855 2097 1542 1874 2116 1640 1879 2121 1938 1875 2117 1938 1875 2117 1640 1879 2121 1936 1878 2120 1598 1859 2101 1660 1856 2098 1939 1854 2096 1939 1854 2096 1660 1856 2098 1937 1855 2097 1526 1877 2119 1663 1870 2112 1938 1875 2117 1938 1875 2117 1663 1870 2112 1940 1872 2114 1541 1853 2095 1637 1861 2103 1939 1854 2096 1939 1854 2096 1637 1861 2103 1941 1860 2102 1544 1868 2110 1639 1873 2115 1942 1869 2111 1942 1869 2111 1639 1873 2115 1940 1872 2114 1525 1865 2107 1661 1858 2100 1943 1863 2105 1943 1863 2105 1661 1858 2100 1941 1860 2102 1602 1871 2113 1668 1864 2106 1942 1869 2111 1942 1869 2111 1668 1864 2106 1944 1866 2108 1543 1862 2104 1638 1867 2109 1943 1863 2105 1943 1863 2105 1638 1867 2109 1944 1866 2108 651 570 1332 1945 675 1416 2087 571 1333 2087 571 1333 1945 675 1416 2086 2250 2205 374 512 1308 393 653 1394 1964 507 1303 1964 507 1303 393 653 1394 1945 675 1416 2086 2250 2205 1945 675 1416 2107 723 1448 2107 723 1448 1945 675 1416 393 653 1394 401 620 1368 521 619 1367 1949 771 1466 1949 771 1466 521 619 1367 1948 772 1467 660 630 1378 1950 770 1465 579 623 1371 579 623 1371 1950 770 1465 1949 771 1466 402 628 1376 524 626 1374 1951 769 1464 1951 769 1464 524 626 1374 1950 770 1465 577 664 1405 1952 767 1462 578 631 1379 578 631 1379 1952 767 1462 1951 769 1464 577 664 1405 2094 700 1429 1952 767 1462 1952 767 1462 2094 700 1429 2096 768 1463 584 693 281 1954 765 1000 419 742 977 419 742 977 1954 765 1000 1955 764 999 659 556 239 1957 762 997 575 553 236 575 553 236 1957 762 997 1956 763 998 527 634 248 1957 762 997 404 636 250 404 636 250 1957 762 997 1958 761 996 658 569 245 1959 760 995 574 558 241 574 558 241 1959 760 995 1958 761 996 530 641 255 1959 760 995 407 643 257 407 643 257 1959 760 995 1960 759 994 573 568 244 657 672 268 1960 759 994 1960 759 994 657 672 268 1961 758 993 412 649 263 533 647 261 1962 757 992 1962 757 992 533 647 261 1961 758 993 671 732 309 1947 734 311 571 755 990 571 755 990 1947 734 311 1963 756 991 1470 1708 2010 1481 1719 2021 431 800 1489 431 800 1489 1481 1719 2021 347 801 1490 1459 1697 1999 1470 1708 2010 348 798 1487 348 798 1487 1470 1708 2010 431 800 1489 1448 1686 1988 1459 1697 1999 432 797 1486 432 797 1486 1459 1697 1999 348 798 1487 1437 1675 1977 1448 1686 1988 349 794 1483 349 794 1483 1448 1686 1988 432 797 1486 351 803 1492 347 801 1490 1491 1727 2029 1491 1727 2029 347 801 1490 1481 1719 2021 430 806 1495 351 803 1492 1497 1735 2037 1497 1735 2037 351 803 1492 1491 1727 2029 430 806 1495 1903 1756 2058 435 438 1234 435 438 1234 1903 1756 2058 1986 1021 1710 435 438 1234 1986 1021 1710 88 375 1186 88 375 1186 1986 1021 1710 320 1020 1709 433 793 1482 1426 1664 1966 349 794 1483 349 794 1483 1426 1664 1966 1437 1675 1977 2049 2252 2207 1973 1589 1891 2048 2251 2206 2048 2251 2206 1973 1589 1891 1972 1588 1890 350 790 1479 434 436 1232 1902 1640 1942 1902 1640 1942 434 436 1232 1974 1641 1943 2047 2253 2208 2048 2251 2206 1975 1602 1904 1975 1602 1904 2048 2251 2206 1972 1588 1890 2046 2254 2209 2047 2253 2208 1976 1615 1917 1976 1615 1917 2047 2253 2208 1975 1602 1904 2046 2254 2209 1976 1615 1917 2045 2255 2210 2045 2255 2210 1976 1615 1917 1977 1628 1930 2044 1653 1955 2045 2255 2210 1974 1641 1943 1974 1641 1943 2045 2255 2210 1977 1628 1930 684 410 1214 2026 413 1217 606 781 1473 606 781 1473 2026 413 1217 2027 423 2211 310 111 904 1978 113 906 2024 409 1213 2024 409 1213 1978 113 906 2025 412 1216 858 976 1665 4 371 1182 867 985 1674 867 985 1674 4 371 1182 84 373 1184 858 976 1665 845 964 1653 4 371 1182 4 371 1182 845 964 1653 0 369 1180 721 832 1521 1331 831 1520 1979 835 1524 1979 835 1524 1331 831 1520 1980 836 1525 3 360 1171 87 359 1170 774 2256 2212 774 2256 2212 87 359 1170 1981 892 1581 735 2257 2213 1982 850 1539 722 834 1523 722 834 1523 1982 850 1539 1979 835 1524 748 2258 2214 1983 864 1553 735 2257 2213 735 2257 2213 1983 864 1553 1982 850 1539 761 2259 2215 1984 878 1567 748 2258 2214 748 2258 2214 1984 878 1567 1983 864 1553 774 2256 2212 1981 892 1581 761 2259 2215 761 2259 2215 1981 892 1581 1984 878 1567 810 928 1617 798 916 1605 1 365 1176 1 365 1176 798 916 1605 86 364 1175 1 365 1176 85 367 1178 810 928 1617 810 928 1617 85 367 1178 822 940 1629 822 940 1629 85 367 1178 834 952 1641 834 952 1641 85 367 1178 0 369 1180 845 964 1653 834 952 1641 0 369 1180 88 375 1186 320 1020 1709 2015 2260 2216 2015 2260 2216 84 373 1184 88 375 1186 1514 1754 2056 1315 1538 1857 1904 1755 2057 1904 1755 2057 1315 1538 1857 1985 1019 1708 1337 1017 1706 1985 1019 1708 897 1018 1707 897 1018 1707 1985 1019 1708 1315 1538 1857 243 1 26 1987 2261 2217 90 2 28 90 2 28 1987 2261 2217 1988 2262 2218 91 4 30 1989 2263 2219 243 1 26 243 1 26 1989 2263 2219 1987 2261 2217 244 7 35 1990 2264 2220 91 4 30 91 4 30 1990 2264 2220 1989 2263 2219 299 8 36 1991 2265 2221 244 7 35 244 7 35 1991 2265 2221 1990 2264 2220 164 179 1042 163 178 1041 1993 2267 2223 1993 2267 2223 163 178 1041 1992 2266 2222 266 181 1045 165 180 1043 1995 2269 2225 1995 2269 2225 165 180 1043 1994 2268 2224 163 178 1041 266 181 1045 1992 2266 2222 1992 2266 2222 266 181 1045 1995 2269 2225 90 2 28 1988 2262 2218 288 184 1048 288 184 1048 1988 2262 2218 1996 2270 2226 167 186 1050 164 179 1042 1997 2271 2227 1997 2271 2227 164 179 1042 1993 2267 2223 288 184 1048 1996 2270 2226 324 333 1144 324 333 1144 1996 2270 2226 1998 2272 2228 315 351 1162 167 186 1050 1999 2273 2229 1999 2273 2229 167 186 1050 1997 2271 2227 324 333 1144 1998 2272 2228 165 180 1043 165 180 1043 1998 2272 2228 1994 2268 2224 1991 2265 2221 299 8 36 2018 2274 2230 2018 2274 2230 299 8 36 2017 378 1189 315 351 1162 1999 2273 2229 690 432 1228 690 432 1228 1999 2273 2229 2001 2275 2231 622 442 1238 437 441 1237 2003 2277 2233 2003 2277 2233 437 441 1237 2002 2276 2232 438 443 1239 622 442 1238 2004 2278 2234 2004 2278 2234 622 442 1238 2003 2277 2233 623 446 1242 438 443 1239 2005 2279 2235 2005 2279 2235 438 443 1239 2004 2278 2234 623 446 1242 2005 2279 2235 440 447 1243 440 447 1243 2005 2279 2235 2006 2280 2236 520 617 1365 2007 2281 2237 519 618 1366 519 618 1366 2007 2281 2237 2008 2282 2238 645 622 1370 2009 2283 2239 521 619 1367 521 619 1367 2009 2283 2239 2010 2284 2240 519 618 1366 2008 2282 2238 645 622 1370 645 622 1370 2008 2282 2238 2009 2283 2239 437 441 1237 661 624 1372 2002 2276 2232 2002 2276 2232 661 624 1372 2011 2285 2241 523 625 1373 2012 2286 2242 520 617 1365 520 617 1365 2012 2286 2242 2007 2281 2237 661 624 1372 1948 772 1467 2011 2285 2241 2011 2285 2241 1948 772 1467 2013 2287 2243 440 447 1243 2006 2280 2236 672 774 1469 672 774 1469 2006 2280 2236 2000 2288 2244 690 432 1228 2001 2275 2231 523 625 1373 523 625 1373 2001 2275 2231 2012 2286 2242 1948 772 1467 521 619 1367 2013 2287 2243 2013 2287 2243 521 619 1367 2010 2284 2240 1988 2262 2218 1987 2261 2217 2014 2289 2245 1987 2261 2217 1989 2263 2219 2014 2289 2245 1989 2263 2219 1990 2264 2220 2014 2289 2245 1990 2264 2220 1991 2265 2221 2014 2289 2245 1993 2267 2223 1992 2266 2222 2014 2289 2245 1995 2269 2225 1994 2268 2224 2014 2289 2245 1992 2266 2222 1995 2269 2225 2014 2289 2245 1996 2270 2226 1988 2262 2218 2014 2289 2245 1997 2271 2227 1993 2267 2223 2014 2289 2245 1998 2272 2228 1996 2270 2226 2014 2289 2245 1999 2273 2229 1997 2271 2227 2014 2289 2245 1994 2268 2224 1998 2272 2228 2014 2289 2245 1991 2265 2221 2018 2274 2230 2014 2289 2245 2018 2274 2230 2000 2288 2244 2014 2289 2245 2001 2275 2231 1999 2273 2229 2014 2289 2245 2003 2277 2233 2002 2276 2232 2014 2289 2245 2004 2278 2234 2003 2277 2233 2014 2289 2245 2005 2279 2235 2004 2278 2234 2014 2289 2245 2006 2280 2236 2005 2279 2235 2014 2289 2245 2008 2282 2238 2007 2281 2237 2014 2289 2245 2010 2284 2240 2009 2283 2239 2014 2289 2245 2009 2283 2239 2008 2282 2238 2014 2289 2245 2002 2276 2232 2011 2285 2241 2014 2289 2245 2007 2281 2237 2012 2286 2242 2014 2289 2245 2011 2285 2241 2013 2287 2243 2014 2289 2245 2000 2288 2244 2006 2280 2236 2014 2289 2245 2012 2286 2242 2001 2275 2231 2014 2289 2245 2013 2287 2243 2010 2284 2240 2014 2289 2245 320 1020 1709 884 1002 1691 2015 2260 2216 2015 2260 2216 884 1002 1691 877 995 1684 867 985 1674 84 373 1184 877 995 1684 877 995 1684 84 373 1184 2015 2260 2216 1497 1735 2037 1503 1741 2043 1903 1756 2058 2000 2288 2244 2018 2274 2230 672 774 1469 672 774 1469 2018 2274 2230 2017 378 1189 228 88 77 2020 406 151 308 85 74 308 85 74 2020 406 151 2019 402 150 673 775 1470 590 773 1468 2021 379 1190 2021 379 1190 590 773 1468 2022 377 1188 590 773 1468 672 774 1469 2022 377 1188 2022 377 1188 672 774 1469 2017 378 1189 591 776 1471 673 775 1470 2023 380 1191 2023 380 1191 673 775 1470 2021 379 1190 591 776 1471 2023 380 1191 683 780 1472 683 780 1472 2023 380 1191 2024 409 1213 683 780 1472 2024 409 1213 604 411 1215 604 411 1215 2024 409 1213 2025 412 1216 1978 113 906 142 124 914 2025 412 1216 2025 412 1216 142 124 914 2026 413 1217 142 124 914 229 126 916 2026 413 1217 2026 413 1217 229 126 916 2027 423 2211 606 781 228 2027 423 153 687 782 229 687 782 229 2027 423 153 2028 422 152 687 782 229 2028 422 152 607 783 230 607 783 230 2028 422 152 2029 424 154 607 783 230 2029 424 154 688 784 231 688 784 231 2029 424 154 2030 425 155 688 784 231 2030 425 155 603 778 224 603 778 224 2030 425 155 2031 408 147 682 779 225 603 778 224 2032 407 146 2032 407 146 603 778 224 2031 408 147 601 777 222 682 779 225 2033 403 145 2033 403 145 682 779 225 2032 407 146 601 777 222 2033 403 145 681 405 223 681 405 223 2033 403 145 2019 402 2263 2020 406 151 228 88 77 2016 420 160 2016 420 160 228 88 77 312 154 107 41 140 103 2034 414 156 312 154 107 312 154 107 2034 414 156 2016 420 160 311 135 100 2035 415 157 41 140 103 41 140 103 2035 415 157 2034 414 156 311 135 921 29 77 897 2035 415 1218 2035 415 1218 29 77 897 2036 394 1205 307 76 896 2037 395 1206 29 77 897 29 77 897 2037 395 1206 2036 394 1205 227 79 899 2038 398 1209 307 76 896 307 76 896 2038 398 1209 2037 395 1206 227 79 899 45 81 901 2038 398 1209 2038 398 1209 45 81 901 2039 400 1211 45 81 901 162 353 1164 2039 400 1211 2039 400 1211 162 353 1164 2040 428 1224 162 353 1164 79 355 1166 2040 428 1224 2040 428 1224 79 355 1166 2041 430 1226 233 358 1169 2042 433 1229 79 355 1166 79 355 1166 2042 433 1229 2041 430 1226 3 360 1171 2043 435 1231 233 358 1169 233 358 1169 2043 435 1231 2042 433 1229 774 2256 2212 2044 1653 1955 3 360 1171 3 360 1171 2044 1653 1955 2043 435 1231 761 2259 2215 2045 2255 2210 774 2256 2212 774 2256 2212 2045 2255 2210 2044 1653 1955 761 2259 2215 748 2258 2214 2045 2255 2210 2045 2255 2210 748 2258 2214 2046 2254 2209 748 2258 2214 735 2257 2213 2046 2254 2209 2046 2254 2209 735 2257 2213 2047 2253 2208 735 2257 2213 722 834 1523 2047 2253 2208 2047 2253 2208 722 834 1523 2048 2251 2206 722 834 1523 708 833 1522 2048 2251 2206 2048 2251 2206 708 833 1522 2049 2252 2207 907 1029 1718 2049 2252 2207 708 833 1522 1973 1589 1891 2049 2252 2207 907 1029 1718 907 1029 1718 1980 836 1525 1331 831 1520 2051 291 122 2065 133 1002 2050 292 123 2050 292 123 2065 133 1002 2064 288 1003 322 296 127 2067 376 1004 282 294 125 282 294 125 2067 376 1004 2066 134 1005 282 294 125 2066 134 1005 2051 291 122 2051 291 122 2066 134 1005 2065 133 1002 185 244 52 278 242 50 2068 245 1007 2068 245 1007 278 242 50 2069 237 1006 184 241 49 279 251 56 2070 238 1009 2070 238 1009 279 251 56 2071 246 1008 278 242 50 184 241 49 2069 237 1006 2069 237 1006 184 241 49 2070 238 1009 2052 263 64 185 244 52 2072 261 1010 2072 261 1010 185 244 52 2068 245 1007 2050 292 123 2064 288 1003 186 250 55 186 250 55 2064 288 1003 2073 247 1011 279 251 56 186 250 55 2071 246 1008 2071 246 1008 186 250 55 2073 247 1011 280 257 1103 2075 252 1099 187 259 1104 187 259 1104 2075 252 1099 2074 260 1105 2054 327 235 2077 328 1014 2053 256 59 2053 256 59 2077 328 1014 2076 253 1015 2053 256 59 2076 253 1015 280 257 60 280 257 60 2076 253 1015 2075 252 2276 187 259 1104 2074 260 1105 2055 266 1109 2055 266 1109 2074 260 1105 2078 264 1107 2054 327 235 2052 263 64 2077 328 1014 2077 328 1014 2052 263 64 2072 261 1010 2055 266 1109 2078 264 1107 188 268 1111 188 268 1111 2078 264 1107 2079 269 1112 188 268 1111 2079 269 1112 2056 272 1115 2056 272 1115 2079 269 1112 2080 270 1113 189 274 1117 2056 272 1115 2081 275 1118 2081 275 1118 2056 272 1115 2080 270 1113 2057 287 1128 189 274 1117 2082 285 1126 2082 285 1126 189 274 1117 2081 275 1118 191 283 88 281 281 2271 2083 284 1022 2083 284 1022 281 281 2271 2084 276 1021 190 280 1123 2057 287 1128 2085 277 1120 2085 277 1120 2057 287 1128 2082 285 1126 281 281 1124 190 280 1123 2084 276 1119 2084 276 1119 190 280 1123 2085 277 1120 322 296 127 191 283 88 2067 376 1004 2067 376 1004 191 283 88 2083 284 1022 1946 735 970 656 733 310 2086 2250 1025 2086 2250 1025 656 733 310 2087 571 1024 2058 731 308 2059 730 307 2088 572 1027 2088 572 1027 2059 730 307 2089 727 1026 656 733 310 2058 731 308 2087 571 1024 2087 571 1024 2058 731 308 2088 572 1027 554 681 274 2091 676 1028 653 689 279 653 689 279 2091 676 1028 2090 686 1029 555 683 276 2093 684 1030 652 680 273 652 680 273 2093 684 1030 2092 677 1031 652 680 273 2092 677 1031 554 681 274 554 681 274 2092 677 1031 2091 676 1028 2060 702 288 2094 700 1032 555 683 276 555 683 276 2094 700 1032 2093 684 1030 2059 730 307 556 690 280 2089 727 1026 2089 727 1026 556 690 280 2095 685 1033 653 689 279 2090 686 1029 556 690 280 556 690 280 2090 686 1029 2095 685 1033 1953 766 1001 557 696 284 2096 768 1035 2096 768 1035 557 696 284 2097 691 1034 654 695 1427 558 698 1426 2098 692 1423 2098 692 1423 558 698 1426 2099 699 1428 557 696 284 654 695 2270 2097 691 1034 2097 691 1034 654 695 2270 2098 692 1037 558 698 1426 2061 705 1432 2099 699 1428 2099 699 1428 2061 705 1432 2100 703 1430 1953 766 1001 2096 768 1035 2060 702 288 2060 702 288 2096 768 1035 2094 700 1032 2061 705 1432 559 707 1434 2100 703 1430 2100 703 1430 559 707 1434 2101 708 1435 559 707 1434 2062 711 1438 2101 708 1435 2101 708 1435 2062 711 1438 2102 709 1436 560 713 1440 2103 714 1441 2062 711 1438 2062 711 1438 2103 714 1441 2102 709 1436 2063 726 1451 2104 724 1449 560 713 1440 560 713 1440 2104 724 1449 2103 714 1441 561 720 1447 2105 715 1442 2063 726 1451 2063 726 1451 2105 715 1442 2104 724 1449 562 722 302 2107 723 1044 655 719 299 655 719 299 2107 723 1044 2106 716 2266 655 719 1446 2106 716 1443 561 720 1447 561 720 1447 2106 716 1443 2105 715 1442 1946 735 970 2086 2250 1025 562 722 302 562 722 302 2086 2250 1025 2107 723 1044 1686 2081 751 1687 2006 621 1807 2005 620 1117 1276 374 1237 1275 373 1151 1277 375</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#LOD3spShape-lib-vertices\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#LOD3spShape-lib-normals\" offset=\"1\" semantic=\"NORMAL\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#LOD3spShape-lib-map1\" offset=\"2\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<library_images xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"file2\" id=\"file2\" sid=\"\">\r\n\t\t\t<create_2d xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<init_from xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" mip_index=\"0\" array_index=\"0\">\r\n\t\t\t\t\t<ref xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">./duckCM_fix.jpg</ref>\r\n\t\t\t\t</init_from>\r\n\t\t\t\t<format xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<exact xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">A8R8G8B8</exact>\r\n\t\t\t\t</format>\r\n\t\t\t\t<unnormalized xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></unnormalized>\r\n\t\t\t</create_2d>\r\n\t\t</image>\r\n\t</library_images>\r\n\t<library_lights xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"directionalLightShape1\" id=\"directionalLightShape1-lib\">\r\n\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<directional xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 1 1</color>\r\n\t\t\t\t</directional>\r\n\t\t\t</technique_common>\r\n\t\t</light>\r\n\t</library_lights>\r\n\t<library_effects xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"blinn3-fx\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"common\" id=\"\">\r\n\t\t\t\t\t<blinn xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<index_of_refraction xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</index_of_refraction>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t\t<ambient xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</ambient>\r\n\t\t\t\t\t\t<reflective xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</reflective>\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" texture=\"file2-sampler\" texcoord=\"TEX0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<emission xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</emission>\r\n\t\t\t\t\t\t<specular xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0 0 1</color>\r\n\t\t\t\t\t\t</specular>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<shininess xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</shininess>\r\n\t\t\t\t\t\t<reflectivity xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</reflectivity>\r\n\t\t\t\t\t</blinn>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"file2-sampler\">\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float3>\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float2>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#file2\" sid=\"\" name=\"\"></instance_image>\r\n\t\t\t\t\t\t<mip_min_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_min_level>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">LINEAR</magfilter>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<mip_bias xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_bias>\r\n\t\t\t\t\t\t<max_anisotropy xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</max_anisotropy>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">LINEAR</minfilter>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">LINEAR</mipfilter>\r\n\t\t\t\t\t\t<wrap_p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_p>\r\n\t\t\t\t\t\t<mip_max_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_max_level>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float4>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_visual_scenes xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<visual_scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"untitled\" id=\"VisualSceneNode\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"LOD3sp\" layer=\"\" type=\"\" id=\"LOD3sp\" sid=\"\">\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#LOD3spShape-lib\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"blinn3SG\" target=\"#blinn3\" name=\"\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"TEX0\"></bind_vertex_input>\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"camera1\" layer=\"\" type=\"\" id=\"camera1\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_camera xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#cameraShape1\" sid=\"\" name=\"\"></instance_camera>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"directionalLight1\" layer=\"\" type=\"\" id=\"directionalLight1\" sid=\"\">\r\n\t\t\t\t<translate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></translate>\r\n\t\t\t\t<instance_light xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#directionalLightShape1-lib\" sid=\"\" name=\"\"></instance_light>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t\t<rotate xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></rotate>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t<instance_visual_scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#VisualSceneNode\" sid=\"\" name=\"\"></instance_visual_scene>\r\n\t</scene>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/1.5/outfiles/mgmidget.dae",
    "content": "<COLLADA base=\"\" version=\"1.5\">\r\n\t<asset xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t<modified xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">2011-10-20T03:44:52Z</modified>\r\n\t\t<up_axis xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Z_UP</up_axis>\r\n\t\t<subject xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></subject>\r\n\t\t<created xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">2011-10-20T03:44:52Z</created>\r\n\t\t<revision xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></revision>\r\n\t\t<keywords xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></keywords>\r\n\t\t<title xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></title>\r\n\t\t<unit xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" meter=\"0.02539999969303608\" name=\"inch\"></unit>\r\n\t\t<contributor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t<author_website xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></author_website>\r\n\t\t\t<author xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></author>\r\n\t\t\t<source_data xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></source_data>\r\n\t\t\t<comments xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></comments>\r\n\t\t\t<author_email xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></author_email>\r\n\t\t\t<authoring_tool xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">Google SketchUp 8.0.4811</authoring_tool>\r\n\t\t\t<copyright xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></copyright>\r\n\t\t</contributor>\r\n\t</asset>\r\n\t<library_nodes xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"skp7C95\" layer=\"\" type=\"\" id=\"ID3\" sid=\"\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_1\" layer=\"\" type=\"\" id=\"ID4\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID5\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_2\" layer=\"\" type=\"\" id=\"ID35\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID36\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_3\" layer=\"\" type=\"\" id=\"ID89\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID90\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_4\" layer=\"\" type=\"\" id=\"ID139\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID140\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_5\" layer=\"\" type=\"\" id=\"ID209\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID210\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_6\" layer=\"\" type=\"\" id=\"ID225\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID226\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_7\" layer=\"\" type=\"\" id=\"ID243\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID244\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_8\" layer=\"\" type=\"\" id=\"ID251\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID252\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_9\" layer=\"\" type=\"\" id=\"ID267\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID268\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_10\" layer=\"\" type=\"\" id=\"ID323\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID324\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"_3D_Object1_1\" layer=\"\" type=\"\" id=\"ID5\" sid=\"\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID6\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID19\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID20\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID27\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"_3D_Object1_3\" layer=\"\" type=\"\" id=\"ID36\" sid=\"\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID37\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID47\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID57\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID65\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID73\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID81\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"_3D_Object1_5\" layer=\"\" type=\"\" id=\"ID90\" sid=\"\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID91\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID99\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID107\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID115\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID123\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID131\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"_3D_Object1_7\" layer=\"\" type=\"\" id=\"ID140\" sid=\"\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID141\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID149\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID162\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID20\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID168\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID174\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID180\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID188\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID189\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID196\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID200\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"_3D_Object1_9\" layer=\"\" type=\"\" id=\"ID210\" sid=\"\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID211\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID217\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"_3D_Object1_10\" layer=\"\" type=\"\" id=\"ID226\" sid=\"\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID227\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID235\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"_3D_Object2_2\" layer=\"\" type=\"\" id=\"ID244\" sid=\"\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID245\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"_3D_Object2_4\" layer=\"\" type=\"\" id=\"ID252\" sid=\"\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID253\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID261\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"_3D_Object8\" layer=\"\" type=\"\" id=\"ID268\" sid=\"\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID269\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID275\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID283\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID20\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID289\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID295\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID301\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID309\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID189\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID315\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID200\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"_3D_Object2\" layer=\"\" type=\"\" id=\"ID324\" sid=\"\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_11\" layer=\"\" type=\"\" id=\"ID325\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID326\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.2391837984 0 0 2.38950825377015 0 0.2391837984 0 0.9452262937899669 0 0 0.2391837984 0.2410314998464498 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_13\" layer=\"\" type=\"\" id=\"ID779\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID780\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">-0.2391837984 0 0 -2.366056800203434 0 0.2391837984 0 3.471970791224086 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_14\" layer=\"\" type=\"\" id=\"ID1220\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID326\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.2391837984 0 0 2.38950825377015 0 0.2391837984 0 3.471970791224085 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_15\" layer=\"\" type=\"\" id=\"ID1221\" sid=\"\">\r\n\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID780\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">-0.2391837984 0 0 -2.366056800203434 0 0.2391837984 0 0.942551212767317 0 0 0.2391837984 0.2410314998464499 0 0 0 1</matrix>\r\n\t\t\t</node>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1222\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1223\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1235\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1243\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1249\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1255\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1261\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1267\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1273\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1279\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1287\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1295\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1303\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1304\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1311\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1304\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1317\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1323\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1329\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1335\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1341\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1347\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1353\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1359\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1365\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1371\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1377\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1383\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1389\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1395\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1401\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1407\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1413\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1419\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1425\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1431\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1437\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1443\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1449\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1455\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1223\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1463\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1469\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1475\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1481\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1487\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1493\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1499\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1505\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1511\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1517\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1523\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1529\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1537\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID1538\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1550\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1551\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1558\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID189\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1564\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1572\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1578\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1584\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1590\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1596\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1602\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1608\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1614\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1620\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID38\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1626\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID1551\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1632\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID189\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1638\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1646\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1654\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1662\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1668\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1674\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1682\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1688\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1694\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1702\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1708\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1714\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1722\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1728\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1734\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1742\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1748\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1754\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1760\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1766\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1772\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1778\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1784\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1790\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1796\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1802\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1808\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1814\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1820\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1826\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID48\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1832\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1838\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1844\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1850\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1856\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1862\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1870\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1878\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1886\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1894\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID150\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1902\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1908\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1916\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1922\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"wheel3\" layer=\"\" type=\"\" id=\"ID326\" sid=\"\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"group_0\" layer=\"\" type=\"\" id=\"ID327\" sid=\"\">\r\n\t\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_12\" layer=\"\" type=\"\" id=\"ID328\" sid=\"\">\r\n\t\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID329\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.7999999999999998 1.040834085586084e-017 1.929980390148138e-023 0.6785531540121249 -7.806255641895632e-018 0.8000000000000003 4.135903062765138e-025 1.538230777312308 1.172997038562746e-023 0 0.8000000000000006 1.538231618346253 0 0 0 1</matrix>\r\n\t\t\t\t</node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">-0.9999576712051372 -0.009200858546759075 3.597306985714045e-008 -6.593666714136403 -0.00920085854675907 0.9999576712051379 3.309891276924002e-010 -10.27499661274406 3.597459254459032e-008 8.009926719458926e-015 0.9999999999999993 -3.583475360434295 0 0 0 1</matrix>\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID775\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"wheel_rb\" layer=\"\" type=\"\" id=\"ID329\" sid=\"\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID330\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID338\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID346\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID359\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID367\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID375\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID383\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID384\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID393\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID384\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID401\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID409\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID417\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID425\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID433\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID441\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID449\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID457\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID465\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID473\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID481\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID489\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID497\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID505\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID513\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID521\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID529\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID537\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID545\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID553\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID561\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID569\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID577\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID585\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID593\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID601\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID609\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID617\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID625\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID626\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID635\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID643\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID651\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID659\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID667\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID675\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID683\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID691\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID697\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID701\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID705\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID709\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID713\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID717\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID721\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID725\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID729\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID733\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID737\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID741\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID745\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID749\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID753\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID754\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID759\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID763\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID767\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID771\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"wheel3\" layer=\"\" type=\"\" id=\"ID780\" sid=\"\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"group_0\" layer=\"\" type=\"\" id=\"ID781\" sid=\"\">\r\n\t\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_12\" layer=\"\" type=\"\" id=\"ID782\" sid=\"\">\r\n\t\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID783\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.7999999999999998 1.040834085586084e-017 1.929980390148138e-023 0.6785531540121249 -7.806255641895632e-018 0.8000000000000003 4.135903062765138e-025 1.538230777312308 1.172997038562746e-023 0 0.8000000000000006 1.538231618346253 0 0 0 1</matrix>\r\n\t\t\t\t</node>\r\n\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">-0.9999576712051372 -0.009200858546759075 3.597306985714045e-008 -6.593666714136403 -0.00920085854675907 0.9999576712051379 3.309891276924002e-010 -10.27499661274406 3.597459254459032e-008 8.009926719458926e-015 0.9999999999999993 -3.583475360434295 0 0 0 1</matrix>\r\n\t\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1216\">\r\n\t\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t</technique_common>\r\n\t\t\t\t\t</bind_material>\r\n\t\t\t\t</instance_geometry>\r\n\t\t\t</node>\r\n\t\t</node>\r\n\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"wheel_rb\" layer=\"\" type=\"\" id=\"ID783\" sid=\"\">\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID784\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID792\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID800\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID808\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID816\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID824\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID832\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID384\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID840\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID384\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID848\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID145\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID856\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID864\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID872\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID880\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID888\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID896\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID904\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID912\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID920\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID928\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID936\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID944\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID952\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID960\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID968\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID976\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID984\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID992\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1000\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1008\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1016\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1024\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1032\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1040\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1048\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1056\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1064\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1072\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID626\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1080\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1088\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1096\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1104\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1112\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1120\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material3\" target=\"#ID347\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1128\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID7\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1136\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1140\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1144\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1148\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1152\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1156\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1160\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1164\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1168\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1172\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1176\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1180\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1184\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1188\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1192\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1196\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID754\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1200\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1204\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1208\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t\t<instance_geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1212\">\r\n\t\t\t\t<bind_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" symbol=\"Material2\" target=\"#ID692\" name=\"\">\r\n\t\t\t\t\t\t\t<bind_vertex_input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" input_semantic=\"TEXCOORD\" input_set=\"0\" semantic=\"UVSET0\"></bind_vertex_input>\r\n\t\t\t\t\t\t</instance_material>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</bind_material>\r\n\t\t\t</instance_geometry>\r\n\t\t</node>\r\n\t</library_nodes>\r\n\t<library_materials xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID7\" name=\"material_0\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID8\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID20\" name=\"material_1\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID21\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID38\" name=\"material_2\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID39\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID48\" name=\"material_3\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID49\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID145\" name=\"material_4\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID146\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID150\" name=\"material_5\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID151\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID189\" name=\"material_6\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID190\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID200\" name=\"material_7\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID201\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID347\" name=\"material_8\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID348\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID384\" name=\"material_9\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID385\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID626\" name=\"material_10\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID627\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID692\" name=\"edge_color167167167255\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID693\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID754\" name=\"edge_color222222255\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID755\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1223\" name=\"material_11\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1224\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1304\" name=\"material_12\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1305\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1538\" name=\"material_13\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1539\"></instance_effect>\r\n\t\t</material>\r\n\t\t<material xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1551\" name=\"material_14\">\r\n\t\t\t<instance_effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\" name=\"\" url=\"#ID1552\"></instance_effect>\r\n\t\t</material>\r\n\t</library_materials>\r\n\t<library_geometries xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID6\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID12\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID16\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1098\">-0.3512492775917053 0.3640900552272797 0.4558710157871246 0.0003733329358510673 0.3764632046222687 0.4582751095294952 0.0003733329358510673 0.3664841055870056 0.4716075956821442 0.0003733329358510673 0.3664841055870056 0.4716075956821442 0.0003733329358510673 0.3764632046222687 0.4582751095294952 -0.3512492775917053 0.3640900552272797 0.4558710157871246 -0.3512492775917053 0.3444961309432983 0.4558710157871246 -0.3512492775917053 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3640900552272797 0.4558710157871246 0.3519960343837738 0.3640900552272797 0.4558710157871246 -0.3512492775917053 0.3748391568660736 0.4410378038883209 -0.3512492775917053 0.3748391568660736 0.4410378038883209 0.0003733329358510673 0.3465428054332733 0.4716075956821442 0.0003733329358510673 0.3465428054332733 0.4716075956821442 -0.5576297044754028 0.3417671024799347 0.4339523613452911 -0.5576297044754028 0.3417671024799347 0.4339523613452911 0.3519960343837738 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3444961309432983 0.4558710157871246 0.3519960343837738 0.3748391568660736 0.4410378038883209 0.3519960343837738 0.3748391568660736 0.4410378038883209 -0.5576297044754028 0.3615391850471497 0.4339523613452911 -0.5576297044754028 0.3615391850471497 0.4339523613452911 0.0003733329358510673 0.3311522305011749 0.4595692157745361 0.0003733329358510673 0.3311522305011749 0.4595692157745361 -0.3512492775917053 0.3287160694599152 0.4410378038883209 -0.3512492775917053 0.3287160694599152 0.4410378038883209 0.5583760738372803 0.3417671024799347 0.4339523613452911 0.5583760738372803 0.3417671024799347 0.4339523613452911 0.5583760738372803 0.3615391850471497 0.4339523613452911 0.5583760738372803 0.3615391850471497 0.4339523613452911 -0.5604491829872131 0.3724029362201691 0.4215744733810425 -0.5604491829872131 0.3724029362201691 0.4215744733810425 -0.6428633332252502 0.3404026031494141 0.4038339257240295 -0.6428633332252502 0.3404026031494141 0.4038339257240295 -0.5604491829872131 0.3270919919013977 0.4215744733810425 -0.5604491829872131 0.3270919919013977 0.4215744733810425 0.3519960343837738 0.3287160694599152 0.4410378038883209 0.3519960343837738 0.3287160694599152 0.4410378038883209 0.5611954927444458 0.3724029362201691 0.4215744733810425 0.5611954927444458 0.3724029362201691 0.4215744733810425 -0.6428633332252502 0.3609992563724518 0.4038339257240295 -0.6428633332252502 0.3609992563724518 0.4038339257240295 0.5611954927444458 0.3270919919013977 0.4215744733810425 0.5611954927444458 0.3270919919013977 0.4215744733810425 0.6436101794242859 0.3404026031494141 0.4038339257240295 0.6436101794242859 0.3404026031494141 0.4038339257240295 0.6436101794242859 0.3609992563724518 0.4038339257240295 0.6436101794242859 0.3609992563724518 0.4038339257240295 -0.6441342830657959 0.3715909421443939 0.392346978187561 -0.6441342830657959 0.3715909421443939 0.392346978187561 -0.6848444938659668 0.3385834991931915 0.3807705938816071 -0.6848444938659668 0.3385834991931915 0.3807705938816071 -0.6441342830657959 0.3246558606624603 0.392346978187561 -0.6441342830657959 0.3246558606624603 0.392346978187561 0.6448808908462524 0.3715909421443939 0.392346978187561 0.6448808908462524 0.3715909421443939 0.392346978187561 -0.6848444938659668 0.3617342412471771 0.3807705938816071 -0.6848444938659668 0.3617342412471771 0.3807705938816071 0.6448808908462524 0.3246558606624603 0.392346978187561 0.6448808908462524 0.3246558606624603 0.392346978187561 0.685590922832489 0.3385834991931915 0.3807705938816071 0.685590922832489 0.3385834991931915 0.3807705938816071 0.685590922832489 0.3617342412471771 0.3807705938816071 0.685590922832489 0.3617342412471771 0.3807705938816071 -0.6924977898597717 0.3738462924957275 0.3587177395820618 -0.6924977898597717 0.3738462924957275 0.3587177395820618 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.6924977898597717 0.3230318427085877 0.3587177395820618 -0.6924977898597717 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3738462924957275 0.3587177395820618 0.693244218826294 0.3738462924957275 0.3587177395820618 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 0.693244218826294 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3230318427085877 0.3587177395820618 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.381706178188324 0.3493618071079254 -0.7020096182823181 0.381706178188324 0.3493618071079254 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7020096182823181 0.372292160987854 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7255671620368958 0.3380583226680756 0.3681576550006867 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.381706178188324 0.3493618071079254 0.7027556896209717 0.381706178188324 0.3493618071079254 -0.7146109938621521 0.3731479644775391 0.3700889348983765 -0.7146109938621521 0.3731479644775391 0.3700889348983765 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7050372362136841 0.337659627199173 0.3678650856018066 -0.7002362012863159 0.3263640701770783 0.4294959008693695 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7255671620368958 0.3380583226680756 0.3681576550006867 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7027556896209717 0.372292160987854 0.3678650856018066 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7153576016426086 0.3731479644775391 0.3700889348983765 0.7153576016426086 0.3731479644775391 0.3700889348983765 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6971959471702576 0.3512220680713654 0.42958864569664 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7255671620368958 0.3380583226680756 0.3681576550006867 -0.7177720069885254 0.3258920609951019 0.4299785196781158 -0.7264339923858643 0.3679208159446716 0.3674047589302063 -0.7264339923858643 0.3679208159446716 0.3674047589302063 -0.7177720069885254 0.3258920609951019 0.4299785196781158 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7057839035987854 0.337659627199173 0.3678650856018066 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.6979426145553589 0.3512220680713654 0.42958864569664 0.6979426145553589 0.3512220680713654 0.42958864569664 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.7009827494621277 0.3263640701770783 0.4294959008693695 0.6979426145553589 0.3512220680713654 0.42958864569664 0.6979426145553589 0.3512220680713654 0.42958864569664 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7159313559532166 0.3825618922710419 0.3357574045658112 -0.7172813415527344 0.3512220680713654 0.42958864569664 -0.7172813415527344 0.3512220680713654 0.42958864569664 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6755837202072144 0.277787446975708 0.5516139268875122 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.6922335028648377 0.2774576246738434 0.5516502857208252 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7129587531089783 0.3286864161491394 0.3360092341899872 -0.7337726354598999 0.3325676321983337 0.3172257244586945 -0.7129587531089783 0.3825618922710419 0.3357224464416504 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.693244218826294 0.3230318427085877 0.3587177395820618 0.693244218826294 0.3230318427085877 0.3587177395820618 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7263134121894836 0.3380583226680756 0.3681576550006867 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.7271807193756104 0.3679208159446716 0.3674047589302063 0.7271807193756104 0.3679208159446716 0.3674047589302063 0.7185184359550476 0.3258920609951019 0.4299785196781158 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.7180280089378357 0.3512220680713654 0.42958864569664 0.7180280089378357 0.3512220680713654 0.42958864569664 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.7337726354598999 0.3770958185195923 0.3170499801635742 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6760110855102539 0.2916669249534607 0.551818311214447 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6917747259140015 0.2917623221874237 0.5514896512031555 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7159313559532166 0.3825618922710419 0.3357574045658112 0.7272381186485291 0.3325676321983337 0.3170648515224457 0.7159313559532166 0.3286864161491394 0.3360441625118256 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.7272381186485291 0.3770958185195923 0.3168890476226807 0.6788990497589111 0.277787446975708 0.5516139268875122 0.6788990497589111 0.277787446975708 0.5516139268875122 0.679326593875885 0.2916669249534607 0.551818311214447 0.679326593875885 0.2916669249534607 0.551818311214447 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.6955490708351135 0.2774576246738434 0.5516502857208252 0.679326593875885 0.2916669249534607 0.551818311214447 0.679326593875885 0.2916669249534607 0.551818311214447 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6917747259140015 0.2917623221874237 0.5514896512031555 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6527526378631592 0.2215321063995361 0.6735020279884338 -0.6692409515380859 0.2158858478069305 0.6860935091972351 -0.6692409515380859 0.2158858478069305 0.6860935091972351 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 0.6950904130935669 0.2917623221874237 0.5514896512031555 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6541863083839417 0.2389404475688934 0.6745759248733521 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6217139959335327 0.2161325663328171 0.7070355415344238 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6695502996444702 0.2332195788621903 0.6872068643569946 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6555184125900269 0.2215321063995361 0.6790869235992432 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6720065474510193 0.2158858478069305 0.6916782259941101 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 0.6569519639015198 0.2389404475688934 0.6801608800888062 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6695502996444702 0.2332195788621903 0.6872068643569946 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 -0.6218901872634888 0.2091421782970429 0.7264079451560974 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6232638955116272 0.2161325663328171 0.7113056778907776 0.6723158359527588 0.2332195788621903 0.692791759967804 0.6723158359527588 0.2332195788621903 0.692791759967804 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.6218504309654236 0.2337631434202194 0.7078388929367065 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.6218504309654236 0.2261438220739365 0.7275896668434143 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623440146446228 0.2091421782970429 0.7306779623031616 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 0.623400092124939 0.2337631434202194 0.7121090888977051 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.6218504309654236 0.2261438220739365 0.7275896668434143 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4379231929779053 0.2250510305166245 0.728861391544342 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4370510876178742 0.2081174999475479 0.7276865839958191 -0.4369176328182221 0.2008772045373917 0.7486920356750488 -0.4369176328182221 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.623400092124939 0.2261438220739365 0.7318599224090576 0.623400092124939 0.2261438220739365 0.7318599224090576 0.4386698305606842 0.2250510305166245 0.728861391544342 0.4386698305606842 0.2250510305166245 0.728861391544342 0.623400092124939 0.2261438220739365 0.7318599224090576 0.623400092124939 0.2261438220739365 0.7318599224090576 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.4379231929779053 0.2172611206769943 0.749642550945282 -0.4379231929779053 0.2172611206769943 0.749642550945282 0.437664121389389 0.2008772045373917 0.7486920356750488 0.437664121389389 0.2008772045373917 0.7486920356750488 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4377978146076202 0.2081174999475479 0.7276865839958191 0.4386698305606842 0.2250510305166245 0.728861391544342 0.4386698305606842 0.2250510305166245 0.728861391544342 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197292685508728 0.2163393646478653 0.7522953152656555 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.197196364402771 0.1998487859964371 0.7512588500976563 -0.1970987468957901 0.1926998645067215 0.7719690799713135 -0.1970987468957901 0.1926998645067215 0.7719690799713135 0.4386698305606842 0.2172611206769943 0.749642550945282 0.4386698305606842 0.2172611206769943 0.749642550945282 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.4386698305606842 0.2172611206769943 0.749642550945282 0.4386698305606842 0.2172611206769943 0.749642550945282 -0.1976823061704636 0.2099207788705826 0.7732192873954773 -0.1976823061704636 0.2099207788705826 0.7732192873954773 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.0003733063931576908 0.1899106204509735 0.7792853713035584 -0.1976823061704636 0.2099207788705826 0.7732192873954773 -0.1976823061704636 0.2099207788705826 0.7732192873954773 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.1978453695774078 0.1926998645067215 0.7719690799713135 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.197942927479744 0.1998487859964371 0.7512588500976563 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.1980392932891846 0.2163393646478653 0.7522953152656555 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.1976785510778427 0.7579975128173828 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.2138753980398178 0.7591250538825989 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.0003733063931576908 0.1899106204509735 0.7792853713035584 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.1984288990497589 0.2099207788705826 0.7732192873954773 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161 0.0003733063931576908 0.2074642926454544 0.7806645631790161</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"366\" source=\"#ID16\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID13\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID17\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1098\">-0.071125187092009 0.4507200585843386 0.8898273071505825 -4.263967884275383e-009 0.8008832375061619 0.5988205406310382 -5.504344485312176e-009 0.444157913898005 0.8959485183434214 5.504344485312176e-009 -0.444157913898005 -0.8959485183434214 4.263967884275383e-009 -0.8008832375061619 -0.5988205406310382 0.071125187092009 -0.4507200585843386 -0.8898273071505825 -0.06762980948302125 -0.3639052502035215 0.9289774904396784 0.06762980948302125 0.3639052502035215 -0.9289774904396784 0.07112527238031438 0.4507200476058207 0.8898273058942577 -0.07112527238031438 -0.4507200476058207 -0.8898273058942577 -0.05295591724079173 0.8070734904910732 0.588071468255128 0.05295591724079173 -0.8070734904910732 -0.588071468255128 -5.194259043014777e-009 -0.3219438234562064 0.9467587731510065 5.194259043014777e-009 0.3219438234562064 -0.9467587731510065 -0.1952435862872257 -0.3225981683293698 0.9261805244142408 0.1952435862872257 0.3225981683293698 -0.9261805244142408 0.0676298903270364 -0.3639052384125159 0.92897748917306 -0.0676298903270364 0.3639052384125159 -0.92897748917306 0.05295598363639042 0.8070734879396393 0.5880714657777973 -0.05295598363639042 -0.8070734879396393 -0.5880714657777973 -0.1964190692480931 0.3872593094726631 0.9008050712903812 0.1964190692480931 -0.3872593094726631 -0.9008050712903812 -4.206846264984871e-009 -0.6188292458269113 0.7855255339639164 4.206846264984871e-009 0.6188292458269113 -0.7855255339639164 -0.05146910879328837 -0.682661196124296 0.728920175428126 0.05146910879328837 0.682661196124296 -0.728920175428126 0.1952430020004395 -0.3225984771781914 0.926180540009435 -0.1952430020004395 0.3225984771781914 -0.926180540009435 0.1964185076893298 0.3872596420709859 0.9008050507519085 -0.1964185076893298 -0.3872596420709859 -0.9008050507519085 -0.1731628035249205 0.720259607377219 0.6717445507454481 0.1731628035249205 -0.720259607377219 -0.6717445507454481 -0.3781976423062447 -0.2788958561989671 0.8827137954903859 0.3781976423062447 0.2788958561989671 -0.8827137954903859 -0.1812838656160409 -0.611012699337296 0.7705839612370974 0.1812838656160409 0.611012699337296 -0.7705839612370974 0.05146917124753067 -0.6826611952120336 0.7289201718725927 -0.05146917124753067 0.6826611952120336 -0.7289201718725927 0.1731617213854804 0.7202604007202256 0.6717439790583591 -0.1731617213854804 -0.7202604007202256 -0.6717439790583591 -0.3735418711200219 0.3628600994103804 0.8536972641258971 0.3735418711200219 -0.3628600994103804 -0.8536972641258971 0.181282778263941 -0.6110135191637968 0.7705835669828285 -0.181282778263941 0.6110135191637968 -0.7705835669828285 0.3781986476610136 -0.2788973044064862 0.8827129071800052 -0.3781986476610136 0.2788973044064862 -0.8827129071800052 0.3735427701649122 0.3628616634215295 0.8536962059635056 -0.3735427701649122 -0.3628616634215295 -0.8536962059635056 -0.3084756592757642 0.6952683570081935 0.6491877073524343 0.3084756592757642 -0.6952683570081935 -0.6491877073524343 -0.4842349374434831 -0.3512828890327633 0.8013219435607023 0.4842349374434831 0.3512828890327633 -0.8013219435607023 -0.3447848531328449 -0.5593445309787422 0.7538282965731213 0.3447848531328449 0.5593445309787422 -0.7538282965731213 0.3084753303407854 0.6952712068050755 0.6491848115590485 -0.3084753303407854 -0.6952712068050755 -0.6491848115590485 -0.4498228601286283 0.3998238053715448 0.7986240161452179 0.4498228601286283 -0.3998238053715448 -0.7986240161452179 0.3447848974915967 -0.55934731735585 0.7538262087699811 -0.3447848974915967 0.55934731735585 -0.7538262087699811 0.4842345611858018 -0.3512835657741214 0.8013218742616555 -0.4842345611858018 0.3512835657741214 -0.8013218742616555 0.4498247367326896 0.3998245059083885 0.7986226084318424 -0.4498247367326896 -0.3998245059083885 -0.7986226084318424 0.1390934429420212 0.8757229171530553 0.4623444457365932 -0.1390934429420212 -0.8757229171530553 -0.4623444457365932 -0.2805014547971665 -0.4481261184840369 0.8488238426134741 0.2805014547971665 0.4481261184840369 -0.8488238426134741 -0.3373790400527729 -0.7856801756880902 0.5185383735692095 0.3373790400527729 0.7856801756880902 -0.5185383735692095 -0.1391012332027621 0.8757221718317327 0.4623435137252217 0.1391012332027621 -0.8757221718317327 -0.4623435137252217 0.1832509294236752 0.8986260316191347 0.3986105269079149 -0.1832509294236752 -0.8986260316191347 -0.3986105269079149 -0.5800566743481957 0.05070925503692379 0.8129962029417551 0.5800566743481957 -0.05070925503692379 -0.8129962029417551 0.3525503091742624 -0.7876181241922912 0.505337481238972 -0.3525503091742624 0.7876181241922912 -0.505337481238972 0.2804983942557796 -0.44812624773872 0.8488247857523628 -0.2804983942557796 0.44812624773872 -0.8488247857523628 -0.1832512338339642 0.898626112386407 0.3986102048814386 0.1832512338339642 -0.898626112386407 -0.3986102048814386 -0.05990506789815193 0.9413055895298192 0.3321974863842852 0.05990506789815193 -0.9413055895298192 -0.3321974863842852 0.9918683419023885 -0.08671032838144153 -0.09315852770299216 0.9759562146826556 -0.1138931241787893 -0.1858435451854526 0.9904882410233603 -0.09514272493502067 -0.09940274788147702 -0.9904882410233603 0.09514272493502067 0.09940274788147702 -0.9759562146826556 0.1138931241787893 0.1858435451854526 -0.9918683419023885 0.08671032838144153 0.09315852770299216 -0.3004923551871483 -0.8848925945410495 0.3559065054203003 0.3004923551871483 0.8848925945410495 -0.3559065054203003 0.5800601094850288 0.05071953851926407 0.8129931105468295 -0.5800601094850288 -0.05071953851926407 -0.8129931105468295 0.03941810041296814 0.9385169908126403 0.3429753217300331 -0.03941810041296814 -0.9385169908126403 -0.3429753217300331 -0.1948504716201211 0.9292746675562946 0.31381823711753 0.1948504716201211 -0.9292746675562946 -0.31381823711753 0.980004878619731 -0.1148416960155928 -0.1624863770837066 -0.980004878619731 0.1148416960155928 0.1624863770837066 0.01808784460961578 -0.9585720035182385 -0.284275471942988 -0.01450490163885446 -0.9818714578108111 -0.1889921907511515 0.01390591190561859 -0.9622823983029412 -0.2716969111536106 -0.01390591190561859 0.9622823983029412 0.2716969111536106 0.01450490163885446 0.9818714578108111 0.1889921907511515 -0.01808784460961578 0.9585720035182385 0.284275471942988 -0.3340438595180452 -0.93522254807589 0.1173604937307616 0.3340438595180452 0.93522254807589 -0.1173604937307616 -0.02177368027010158 -0.981464076286009 -0.1904052882867142 0.02177368027010158 0.981464076286009 0.1904052882867142 0.3098855746507412 -0.8907823498961794 0.3323819124694065 -0.3098855746507412 0.8907823498961794 -0.3323819124694065 -0.9779787607639027 -0.1141885828737194 -0.1746954808688327 -0.9918664072211452 -0.08672722985843478 -0.09316339317188697 -0.9904870505903934 -0.09515421425005848 -0.09940361222409007 0.9904870505903934 0.09515421425005848 0.09940361222409007 0.9918664072211452 0.08672722985843478 0.09316339317188697 0.9779787607639027 0.1141885828737194 0.1746954808688327 0.1912503182808568 0.9273764772990287 0.321552771889646 -0.1912503182808568 -0.9273764772990287 -0.321552771889646 -0.3811288433792529 0.8957550736264501 0.2288310573695485 0.3811288433792529 -0.8957550736264501 -0.2288310573695485 0.007248706169782307 0.9191592767960465 0.3938193496244603 -0.007248706169782307 -0.9191592767960465 -0.3938193496244603 0.9853759184996108 0.02508948516799318 -0.1685372866016697 -0.9853759184996108 -0.02508948516799318 0.1685372866016697 0.01723171841286865 -0.919196357530028 -0.3934223229356319 -0.01723171841286865 0.919196357530028 0.3934223229356319 0.1845544456475155 -0.9017691296340797 -0.3908351230771521 -0.1845544456475155 0.9017691296340797 0.3908351230771521 -0.9908221950411159 -0.0198614659408184 0.1337045249218829 -0.9872800348044978 0.000627502331247067 0.158989745321055 -0.9882708773498506 -0.008080873138596571 0.1524971228301519 0.9882708773498506 0.008080873138596571 -0.1524971228301519 0.9872800348044978 -0.000627502331247067 -0.158989745321055 0.9908221950411159 0.0198614659408184 -0.1337045249218829 -0.9826945450324243 0.01630357907460154 0.1845145643922866 -0.8325865012073505 0.5049181106934321 0.2277222419990581 0.8325865012073505 -0.5049181106934321 -0.2277222419990581 0.9826945450324243 -0.01630357907460154 -0.1845145643922866 0.3862723911918118 -0.9163355120307432 0.1054650140772564 -0.3862723911918118 0.9163355120307432 -0.1054650140772564 0.02177412265120054 -0.9814640654872793 -0.1904052933611679 0.01450529868995076 -0.9818714473737441 -0.1889922145012973 -0.013916141499668 -0.9621402750830043 -0.2721992506767098 0.013916141499668 0.9621402750830043 0.2721992506767098 -0.01450529868995076 0.9818714473737441 0.1889922145012973 -0.02177412265120054 0.9814640654872793 0.1904052933611679 -0.9812022224608331 -0.1149914710388205 -0.1549811608752812 0.9812022224608331 0.1149914710388205 0.1549811608752812 -0.01811265111712815 -0.9587713810518664 -0.2836007241623442 0.01811265111712815 0.9587713810518664 0.2836007241623442 -0.007290548039703533 0.9192696015801237 0.3935609832287768 0.007290548039703533 -0.9192696015801237 -0.3935609832287768 0.5044979341430722 0.8431073902036704 0.1861498402613552 -0.5044979341430722 -0.8431073902036704 -0.1861498402613552 -0.6634249520533542 0.6453035303078039 0.3787488439128096 0.6634249520533542 -0.6453035303078039 -0.3787488439128096 0.9866206869680558 0.03480237759473551 -0.1592746513430026 -0.9866206869680558 -0.03480237759473551 0.1592746513430026 0.016290647704942 -0.9171381502189657 -0.3982363973951743 -0.016290647704942 0.9171381502189657 0.3982363973951743 -0.9798578929557653 0.033049689096777 0.1969421937089524 0.9798578929557653 -0.033049689096777 -0.1969421937089524 0.6687046635203147 -0.003313254786347099 -0.7435207430387558 0.6691533453686369 -0.003650025003637705 -0.7431153865312135 0.6695577595913523 -0.003953773836092823 -0.7427494693659914 -0.6695577595913523 0.003953773836092823 0.7427494693659914 -0.6691533453686369 0.003650025003637705 0.7431153865312135 -0.6687046635203147 0.003313254786347099 0.7435207430387558 0.6682020981908339 -0.002936324147361365 -0.7439740143135841 -0.6682020981908339 0.002936324147361365 0.7439740143135841 -0.109182585023408 0.9846313083799815 0.1363097563842444 -0.109182585023408 0.9846313083799815 0.1363097563842444 -0.109182585023408 0.9846313083799815 0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.109182585023408 -0.9846313083799815 -0.1363097563842444 0.9998363974575332 7.141383765963521e-005 0.01808793020788936 0.9976328688181551 -0.02100972016673701 0.06547710067018192 0.9597396774909109 0.2745786746262134 0.0592140430147635 -0.9597396774909109 -0.2745786746262134 -0.0592140430147635 -0.9976328688181551 0.02100972016673701 -0.06547710067018192 -0.9998363974575332 -7.141383765963521e-005 -0.01808793020788936 0.9848361978242306 0.01615844898842442 0.1727326488577111 0.856672094315397 0.4840166217746973 0.178439997385904 -0.856672094315397 -0.4840166217746973 -0.178439997385904 -0.9848361978242306 -0.01615844898842442 -0.1727326488577111 -0.98696211613235 0.02493391055134607 -0.1590096897178627 0.98696211613235 -0.02493391055134607 0.1590096897178627 -0.01729793627663625 -0.9218896674301311 -0.3870661732651561 0.01729793627663625 0.9218896674301311 0.3870661732651561 0.6630244607310728 0.6479169333248619 0.3749696147465508 -0.6630244607310728 -0.6479169333248619 -0.3749696147465508 -0.4291444056645902 0.8755119012486158 0.2220675344547685 0.4291444056645902 -0.8755119012486158 -0.2220675344547685 -0.002972792712082139 0.9099971813227669 0.4146037777060294 0.002972792712082139 -0.9099971813227669 -0.4146037777060294 0.8775711867427927 0.09931257888195555 -0.4690477842125063 -0.8775711867427927 -0.09931257888195555 0.4690477842125063 0.07264632224497998 -0.9370277162915097 -0.3416161160803113 -0.07264632224497998 0.9370277162915097 0.3416161160803113 -0.9780693798260903 0.03167860608980022 0.2058561491984491 0.9780693798260903 -0.03167860608980022 -0.2058561491984491 -0.8588543264598119 -0.002726306327623486 -0.5122126640127819 -0.8586600694715521 -0.002560320177594947 -0.5125391008066581 -0.8582920509860762 -0.00224620446095228 -0.513156613305952 0.8582920509860762 0.00224620446095228 0.513156613305952 0.8586600694715521 0.002560320177594947 0.5125391008066581 0.8588543264598119 0.002726306327623486 0.5122126640127819 -0.8580357563130109 -0.002027713692026421 -0.513585951195652 0.8580357563130109 0.002027713692026421 0.513585951195652 -0.01688581023481479 -0.9205500229754365 -0.3902595605653204 0.01688581023481479 0.9205500229754365 0.3902595605653204 -0.988737448764744 0.03460807652772169 -0.1456040468161406 0.988737448764744 -0.03460807652772169 0.1456040468161406 0.9817236992713015 0.03298316703888651 0.1874318248888274 -0.9817236992713015 -0.03298316703888651 -0.1874318248888274 0.002785596797246988 0.9135642906878028 0.4066848008354569 -0.002785596797246988 -0.9135642906878028 -0.4066848008354569 -0.003715581427239436 0.9075670778700513 0.4198906924677824 0.003715581427239436 -0.9075670778700513 -0.4198906924677824 0.9185793612217119 0.09230724313175556 -0.3843062971158896 -0.9185793612217119 -0.09230724313175556 0.3843062971158896 0.04949783681109286 -0.9339419638453096 -0.3539807513407877 -0.04949783681109286 0.9339419638453096 0.3539807513407877 -0.8448040745229659 -0.04735681112537662 0.5329759920572695 0.8448040745229659 0.04735681112537662 -0.5329759920572695 -0.07206498059894695 -0.9376465112780928 -0.3400377309348109 0.07206498059894695 0.9376465112780928 0.3400377309348109 -0.8675974172743418 0.0996611272755185 -0.4871779769746009 0.8675974172743418 -0.0996611272755185 0.4871779769746009 0.980870754914267 0.03167188993408591 0.1920662738273411 -0.980870754914267 -0.03167188993408591 -0.1920662738273411 0.003995682630986656 0.9105358541074029 0.4134108040499359 -0.003995682630986656 -0.9105358541074029 -0.4134108040499359 -0.06377025308336654 0.9361062702478691 0.3458878512239293 0.06377025308336654 -0.9361062702478691 -0.3458878512239293 0.4323102883021924 0.0530645150617952 -0.9001621919794964 -0.4323102883021924 -0.0530645150617952 0.9001621919794964 0.09068971629220776 -0.9398373191312726 -0.3293648264872576 -0.09068971629220776 0.9398373191312726 0.3293648264872576 -0.89587439590845 -0.04364692810303722 0.4421583567262277 0.89587439590845 0.04364692810303722 -0.4421583567262277 -0.05394774551138133 -0.9356041443768313 -0.3489047517290886 0.05394774551138133 0.9356041443768313 0.3489047517290886 0.8373436273772882 -0.04802482564338885 0.5445633717140435 -0.8373436273772882 0.04802482564338885 -0.5445633717140435 -0.9121098089249937 0.09277933971432061 -0.3993090164083277 0.9121098089249937 -0.09277933971432061 0.3993090164083277 0.06730152409430609 0.9373980523815594 0.341694887649556 -0.06730152409430609 -0.9373980523815594 -0.341694887649556 -0.08738201937403496 0.9375900260780157 0.3365847971747116 0.08738201937403496 -0.9375900260780157 -0.3365847971747116 0.4568272935323279 0.04401882866045551 -0.8884656248878117 -0.4568272935323279 -0.04401882866045551 0.8884656248878117 0.05151497838900335 -0.9395351067219221 -0.3385557417008417 -0.05151497838900335 0.9395351067219221 0.3385557417008417 -0.394969106281068 -0.06359206783930438 0.9164908368289645 0.394969106281068 0.06359206783930438 -0.9164908368289645 -0.07952270090936106 -0.9403691550093645 -0.330729485149199 0.07952270090936106 0.9403691550093645 0.330729485149199 0.8903356679666751 -0.0442926671645055 0.4531451842200123 -0.8903356679666751 0.0442926671645055 -0.4531451842200123 -0.4042455124259617 0.0532011627306395 -0.9131019669059858 0.4042455124259617 -0.0532011627306395 0.9131019669059858 0.08651024889737816 0.9378939396687426 0.3359626984776119 -0.08651024889737816 -0.9378939396687426 -0.3359626984776119 -0.0970566982023139 0.931924377921838 0.3494237415646799 0.0970566982023139 -0.931924377921838 -0.3494237415646799 0.1071191013945236 0.07343949725049899 -0.9915302004276136 -0.1071191013945236 -0.07343949725049899 0.9915302004276136 -0.002326866966603946 -0.9452538076808833 -0.3263277872859 0.002326866966603946 0.9452538076808833 0.3263277872859 -0.4120552709137233 -0.06211659127437492 0.9090390436063076 0.4120552709137233 0.06211659127437492 -0.9090390436063076 -0.04353053250813483 -0.9398686495221501 -0.3387506669882254 0.04353053250813483 0.9398686495221501 0.3387506669882254 0.370955215819271 -0.0642954861431061 0.9264223217939536 -0.370955215819271 0.0642954861431061 -0.9264223217939536 -0.4290446271268197 0.04442644661450344 -0.9021901123237922 0.4290446271268197 -0.04442644661450344 0.9021901123237922 0.08511499803969619 0.9325962146665485 0.3507416962642554 -0.08511499803969619 -0.9325962146665485 -0.3507416962642554 -0.05399603319120466 0.9317823507949836 0.35897921826561 0.05399603319120466 -0.9317823507949836 -0.35897921826561 0.001546450211013052 0.9362515579885762 0.3513269540694375 -0.001546450211013052 -0.9362515579885762 -0.3513269540694375 0.1062957171113633 0.07402617534980542 -0.9915751841826522 -0.1062957171113633 -0.07402617534980542 0.9915751841826522 -0.002747462488095163 -0.9454117597753844 -0.3258666229123312 0.002747462488095163 0.9454117597753844 0.3258666229123312 -0.1095480449216852 -0.06437227185794837 0.9918948716823186 0.1095480449216852 0.06437227185794837 -0.9918948716823186 0.005833135918347435 -0.9452465444315101 -0.3263049873441214 -0.005833135918347435 0.9452465444315101 0.3263049873441214 0.3885602999908704 -0.06284595774554791 0.9192775853168886 -0.3885602999908704 0.06284595774554791 -0.9192775853168886 -0.09492198545918304 0.07293069024446487 -0.9928096147282984 0.09492198545918304 -0.07293069024446487 0.9928096147282984 0.04552759092394652 0.9321757341004116 0.3591317853087088 -0.04552759092394652 -0.9321757341004116 -0.3591317853087088 0.001320964449476984 0.9369949929397182 0.3493402900594502 -0.001320964449476984 -0.9369949929397182 -0.3493402900594502 0.06781079953703786 0.06339096066314931 -0.9956823196041751 -0.06781079953703786 -0.06339096066314931 0.9956823196041751 -0.0009121108150353565 -0.9452731957874374 -0.3262786437688901 0.0009121108150353565 0.9452731957874374 0.3262786437688901 -0.1109486858899821 -0.0646082375357192 0.9917238349166637 0.1109486858899821 0.0646082375357192 -0.9917238349166637 0.09862599401148636 -0.06381484593375146 0.9930763207043544 -0.09862599401148636 0.06381484593375146 -0.9930763207043544 0.006731919778519307 -0.9454016983288083 -0.3258378585325845 -0.006731919778519307 0.9454016983288083 0.3258378585325845 -0.09533962166136091 0.07354105201997502 -0.9927245691576611 0.09533962166136091 -0.07354105201997502 0.9927245691576611 -0.00585674817653786 0.9362360349332584 0.3513229075839591 0.00585674817653786 -0.9362360349332584 -0.3513229075839591 0.001063618126260402 0.9555103601597252 0.2949556243639264 -0.001063618126260402 -0.9555103601597252 -0.2949556243639264 0.06676637174755735 0.06297665332872211 -0.9957791887457687 -0.06676637174755735 -0.06297665332872211 0.9957791887457687 -0.0007808558058856688 -0.945066558494442 -0.3268770262341513 0.0007808558058856688 0.945066558494442 0.3268770262341513 -0.06778356439968603 -0.07427319914588644 0.9949315957822976 0.06778356439968603 0.07427319914588644 -0.9949315957822976 0.09863785519546375 -0.06393136056138422 0.9930676485815096 -0.09863785519546375 0.06393136056138422 -0.9930676485815096 0.0009121098624746426 -0.945273195049111 -0.3262786459105843 -0.0009121098624746426 0.945273195049111 0.3262786459105843 -0.06781082967194811 0.06339112364419754 -0.9956823071755007 0.06781082967194811 -0.06339112364419754 0.9956823071755007 -0.005113872727019609 0.936979243186678 0.3493476007403689 0.005113872727019609 -0.936979243186678 -0.3493476007403689 0.0011066045999455 0.9561138177226354 0.2929934179910984 -0.0011066045999455 -0.9561138177226354 -0.2929934179910984 -6.527460857175112e-010 0.06909947499341243 -0.9976097746892993 6.527460857175112e-010 -0.06909947499341243 0.9976097746892993 -1.347770541733307e-010 -0.9398412832334818 -0.341611420081417 1.347770541733307e-010 0.9398412832334818 0.341611420081417 -0.06984418121300744 -0.07471473347307646 0.9947559997068285 0.06984418121300744 0.07471473347307646 -0.9947559997068285 0.06778358821749267 -0.07427310619908654 0.9949316010982366 -0.06778358821749267 0.07427310619908654 -0.9949316010982366 0.0007808560536009646 -0.9450665577020792 -0.326877028524438 -0.0007808560536009646 0.9450665577020792 0.326877028524438 -0.06676629092695928 0.06297683347455915 -0.9957791827716497 0.06676629092695928 -0.06297683347455915 0.9957791827716497 -0.001063617863931956 0.9555103604376601 0.2949556234645008 0.001063617863931956 -0.9555103604376601 -0.2949556234645008 -5.947595930751025e-011 0.9582811076798368 0.2858274281168708 5.947595930751025e-011 -0.9582811076798368 -0.2858274281168708 -1.765349996060053e-010 -0.9394117153834616 -0.3427909406625296 1.765349996060053e-010 0.9394117153834616 0.3427909406625296 -4.496929153027535e-010 0.069446775553659 -0.9975856581593381 4.496929153027535e-010 -0.069446775553659 0.9975856581593381 1.754160081432712e-009 -0.07807047071678244 0.9969478429697614 -1.754160081432712e-009 0.07807047071678244 -0.9969478429697614 0.0698441349091514 -0.07471461379667607 0.9947560119466511 -0.0698441349091514 0.07471461379667607 -0.9947560119466511 -0.001106604917078725 0.9561138179412515 0.2929934172764991 0.001106604917078725 -0.9561138179412515 -0.2929934172764991 -5.696815383325837e-011 0.9584455434264317 0.2852755515041763 5.696815383325837e-011 -0.9584455434264317 -0.2852755515041763 1.940881415368471e-009 -0.07832859275901773 0.9969275959448569 -1.940881415368471e-009 0.07832859275901773 -0.9969275959448569</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"366\" source=\"#ID17\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID15\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID18\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1150\">3.363011324314395 1.091241105173762 -0.1553451444614712 1.114857243519861 -0.1513262137275674 1.245826278515947 -3.444961309432992 -2.600061641399552 -3.640900552272805 -2.600061641399551 -3.664841055870056 0.1688050011259317 0.1478845043465195 1.114715565585078 -3.370472873082449 1.091099427235427 0.1438655746501197 1.245684600600866 3.363625686805526 1.161250500904157 3.35931410957973 1.017184906139791 -0.1547336583624773 1.184599941148575 -3.465428054332733 0.1688050011259248 -3.444961309432983 -2.600061641399559 -3.664841055870056 0.1688050011259248 -3.444961309432983 -2.368966857590021 -3.417671024799347 -4.001623507588316 -3.640900552272796 -2.368966857590021 3.444961309432983 -2.605930296681317 3.664841055870056 0.1629370603691651 3.640900552272797 -2.605930296681317 -3.366775708089421 1.017046728066655 -3.37108728420215 1.161112322851636 0.1472729696182163 1.184461763099396 5.232526333403246 0.8816716290727438 3.165073438187141 0.9504132468772458 3.17463679401719 1.09432225142684 3.465428054332733 0.1629370603691713 3.664841055870056 0.1629370603691717 3.444961309432992 -2.605930296681311 -0.1662453203201013 4.277515370301163 -3.68468566869181 4.230333896089076 -0.174144990518452 4.431100496335322 -3.615391850471496 -4.001623507588316 -3.821454854119473 4.053629022659217 -5.888020909411589 3.972460822033052 -3.8371194779215 4.223552794113253 3.444961309432983 -2.374807730589978 3.640900552272797 -2.374807730589978 3.417671024799347 -4.007461349848854 -3.172510719572426 0.9501071519867526 -5.239959747342773 0.881365534532131 -3.18207409321333 1.094016155803878 5.208064585780865 0.3770924323198692 5.225823365227359 0.2463947041263298 3.140952443675589 0.4519073964150835 0.1737020930346429 4.277278018298897 0.1816017611957285 4.430863144397903 3.6921433500374 4.230096544066889 -3.669590958958236 4.159879707953389 -3.67733568214817 4.33014074777308 -0.1587979356318518 4.372590041939007 -3.417671024799347 -2.998679591619311 -3.404026031494141 -3.709814581504416 -3.615391850471497 -2.998679591619311 -5.914787297700372 3.734759990333489 -5.90203603357741 3.887075903499135 -3.83586637216516 3.974265709566328 3.828886079136073 4.053204712999882 3.844550732054981 4.223128482792832 5.895448265354315 3.972036513167178 3.615391850471497 -4.007461349848854 -5.233252095411015 0.2460237755530919 -5.21549392738442 0.3767214755863982 -3.148385652438477 0.4515364235619232 4.903843566619047 -0.5478823292112369 4.087453864717281 -0.3597486232310047 4.09614884437698 -0.2284844717547298 3.677049488222819 4.159669778718533 0.1662555542926239 4.372380112774407 3.684794209414996 4.32993081859446 -3.404026031494141 -3.709814581504415 -3.609992563724518 -3.709814581504415 -3.615391850471497 -2.99867959161931 -6.446086437282949 2.59450650613355 -7.254357430308779 2.378929468700127 -6.479162616098119 2.74491834620776 3.843293815772286 3.973794870688992 5.909459608730573 3.886605085336919 5.922210253430289 3.734289208359481 3.417671024799347 -3.004223796660122 3.615391850471497 -3.004223796660122 3.404026031494141 -3.71536232334646 -4.094523750266317 -0.3610205477337822 -4.910918916159961 -0.5491541230999865 -4.10321902030303 -0.2297564873891819 4.899423414798795 -0.5607994889403913 4.876887840851143 -0.6828394993164713 4.083162689502553 -0.3723197720037885 -3.404026031494141 -2.90273125672229 -3.385834991931915 -3.279538441558008 -3.609992563724518 -2.90273125672229 -7.210147450728702 2.023822809671743 -7.265351044455665 2.1712154290896 -6.46243976460627 2.39884994911966 6.452919864954517 2.592722858712204 6.485996164623874 2.743134613197453 7.261196380597501 2.377145943948744 3.609992563724518 -3.71536232334646 -4.883965008323234 -0.6841003794997391 -4.906502474509111 -0.5620607390081219 -4.090236119856233 -0.3735815933244923 4.403677843243818 -1.026441190329094 3.997071167592487 -0.9057965266926231 4.03471507245138 -0.7860839389691612 -3.385834991931914 -3.279538441558009 -3.61734241247177 -3.279538441558009 -3.609992563724517 -2.90273125672229 -7.096346584687105 1.244142846791853 -7.505107656952137 1.104643774466029 -7.18114537945805 1.382564177912367 6.469197397685358 2.396908097022826 7.272114523214139 2.169274317877348 7.21690940863351 2.021882178179872 3.40402603149414 -2.907858650929879 3.609992563724517 -2.907858650929879 3.385834991931914 -3.284662959066703 -4.003697306288606 -0.9075436612659009 -4.410302460156304 -1.028187764826076 -4.04134326209841 -0.7878316292916993 4.80194303154706 -0.06451616791528596 4.82298860351823 -0.2707329905389797 4.389737888171332 0.04373490727972126 -3.385834991931916 -2.926414100524648 -3.37659627199173 -3.11493511735112 -3.617342412471772 -2.926414100524648 -7.598894664383375 1.83150963898636 -7.613542486464217 2.051861945039554 -7.192935074670702 2.167533274606519 7.102304068018194 1.241478919057735 7.187104664978349 1.379899431477534 7.51106381440397 1.101980671806985 3.609992563724517 -2.907858650929878 3.61734241247177 -3.284662959066703 -4.829804761306388 -0.2720205152737582 -4.808759444673219 -0.06580367652390529 -4.396556070892201 0.04244740713633755 7.753569650717056 2.101478480347231 7.665921350776067 2.022913398972865 7.560145750653939 2.212321811953085 -2.749756741017578 -2.995041979031922 -3.097402950109877 -2.995041979031922 -3.007173842046506 -2.820683849110998 -7.634176840463143 2.057940251353917 -7.812935549860432 2.149456661263454 -7.638073995685398 2.27857233954607 7.619935867675237 2.049986764597122 7.605287673675827 1.82963447384389 7.199330183036197 2.165658086132554 3.385834991931914 -2.931390908339032 3.61734241247177 -2.931390908339032 3.376596271991729 -3.119913505532187 -7.673133942537746 2.023559513672274 -7.760778505345099 2.102124495667099 -7.567357649153838 2.2129676870636 7.857324712467795 1.975956969339328 7.742533688840616 2.05771596092277 7.828155208389795 2.137652171269155 2.749756741017579 2.345015600238243 2.641411517930605 2.831962270825535 3.097402950109877 2.345015600238243 -7.24401352842452 3.805631189619558 -7.038729180681206 3.801281165128669 -6.913838049817935 3.665275214523943 7.819560736063652 2.147804905442341 7.640800358253213 2.056288490652131 7.644696436889007 2.276920590610841 3.006401748700101 -2.825442076668657 3.096628090548786 -2.999798913666478 2.748981362314569 -2.999798913666477 -7.749646201003721 2.058540805548088 -7.864434325683387 1.976781869931928 -7.835263830146105 2.138476961174959 7.529002737015872 1.51002548539833 7.514338012453531 1.672932830928272 7.640146586551808 1.692512138772697 2.392642648721047 2.673959912250578 2.643074891691783 2.674694627417805 2.846405821837372 2.185726809895583 -6.929479702051268 2.833735851230139 -6.975013846286685 2.340685757225951 -7.104899002091787 2.837596829670674 -7.631157006578849 2.835462057561212 -8.04951721951365 2.504886153103752 -7.994073785055845 2.910671915849256 -7.12352902858604 2.358711998373981 -7.328866212847088 2.361056434433184 -7.248235429212962 2.856443391906117 6.921302059429526 3.665292614646768 7.046195563824993 3.801298576766062 7.251475738927507 3.805648601625234 -2.640637228004281 2.831384584102829 -2.748981362314569 2.34443769086393 -3.096628090548786 2.34443769086393 -7.521690731583161 1.673324681034132 -7.53635484704045 1.510417301573095 -7.647504677822431 1.692903992956625 5.998012096748293 1.506793739965519 5.893806799275831 1.617504467530705 6.036726345161062 1.785746620089322 7.55767871259555 2.076052129409543 7.431586630695063 2.057635994534083 7.357404331345999 2.568780976099774 2.396168678405192 1.886606019114077 1.94364443756023 2.876446011354756 2.646600839669345 1.887357771677554 -6.949694831687917 2.14685190845241 -7.12510570764405 2.150942886529585 -6.877438122051456 3.182308673505118 -6.325785041756646 1.003471480149776 -6.521915314652772 0.8429392495671604 -6.136667914984765 1.197548469803839 -3.375970934403905 1.951585475714651 -3.32101188788706 1.545758936930594 -3.766293661159237 1.544358603225574 -3.444215953129659 2.68830891261291 -3.567861822787906 2.198441108781526 -3.866611150578393 2.192475169183561 7.993135689125607 2.500216041865653 7.64284985184452 2.829723084090582 8.005942721469616 2.904400225420917 7.336328329478214 2.361081705673661 7.130995316771696 2.358737269612108 7.255699279495952 2.856468663643245 -2.642206135259483 2.674075866950639 -2.39177403700181 2.673341152740492 -2.845538129572966 2.185108686384703 6.982478224044516 2.340662135674304 6.936942904734958 2.833712234356156 7.11236101309747 2.837573212833319 -7.438974329536338 2.057851876040162 -7.565071770183033 2.076268020829575 -7.364798961763082 2.56899713277036 -6.033216610603887 1.57111708506123 -6.159986794465825 1.460226825256347 -6.174789043226012 1.740065083959159 4.85798692031304 1.698477941097572 4.672048310971199 1.443086095910852 4.728856764969501 1.720115144933764 7.172813415527344 2.215624450361127 7.146109938621521 1.716790903165772 6.971959471702576 2.215624450361127 2.999888949933708 3.473632195112481 3.138749138258804 3.475259739310611 3.740984071097564 2.501925893528688 -6.702044348579214 3.175256915664935 -6.93932991602912 2.140044201120406 -6.868574775876112 3.175565134916088 -2.616479399103249 3.064540991371932 -3.094892377718396 2.084727567279685 -3.348238529858119 2.08158794193209 3.783452369573576 -2.410573954978049 3.282289435742107 -2.627889051920066 3.24470700120309 -2.40720453052603 -3.862978237507477 2.074314600976639 -3.564229409625427 2.080296012234676 -3.956567065386774 1.674269159886016 3.738677437160806 -2.637534584050092 3.293399873181828 -2.635465586596091 3.79425227612451 -2.417707902547568 -3.355590941516178 2.478382701804081 -3.102244054118723 2.481485393674201 -3.520550970233599 1.98351141238814 -7.594606175405855 2.202466850080047 -7.47794979832137 2.35317745592341 -7.246228508829629 2.533223430132042 3.325156879871405 2.390352099686712 3.38006444490519 2.792347920228598 3.770438741948165 2.388968882714275 3.568171165915268 2.197777784379399 3.444524138274316 2.687645231246857 3.866920632239829 2.191811849128781 -1.939136937806618 2.996857556485883 -2.394736093995948 2.011654222883672 -2.645168127583657 2.012402454049706 7.132537761470795 2.151957450803447 6.95712805949004 2.147866943964651 6.910562859290539 3.183204435103502 -6.979426145553589 2.215624450361126 -7.153576016426086 1.716790903165771 -7.180280089378357 2.215624450361126 -4.659333070171257 1.282465330407035 -4.825829750865863 1.539219265082906 -4.696736382727083 1.560995895547962 4.9290532598241 1.276143286731304 4.718100678503693 1.426794932530108 4.903539531627329 1.682411541928784 4.745156419409949 1.239670733106283 4.616148262563794 1.261753702561913 4.741063915256745 1.751263448479428 7.172813415527344 1.827794836268678 6.971959471702576 1.827794836268678 6.760110855102539 2.897398463765879 3.001333178159676 3.389455477460454 2.431488071920004 4.362362003789879 3.140193293588899 3.391086865953328 -6.702422187397375 2.983882575984508 -6.86895259429575 2.984197541863131 -6.650642565982718 4.148839642526224 -2.676590297209839 3.015327403606043 -2.53347023241928 3.016622927711519 -3.262009120200233 2.032190694220815 -3.264121531577342 -0.6185343306447173 -3.302574581835824 -0.7923742430616737 -3.802873578432089 -0.6211608736339703 3.59076536853066 2.919562560720977 3.889516220689897 2.913639727148494 3.981244018816276 2.516246032851238 -3.308480961832819 -0.8012053494908562 -3.753761581660225 -0.8028171550667607 -3.808689367685841 -0.629828256812915 3.102150346193101 2.480610382783226 3.355497187440614 2.477507691629174 3.520458100523353 1.982636516424233 6.946792029182502 2.141282976391568 6.735189966000142 3.176353257888278 6.90172277714292 3.1766614347321 -3.13787716514938 3.590355447087952 -2.999016829737287 3.588732769932899 -3.739213164752058 2.619932279714279 3.097163209888682 2.211457492722142 2.618085232636954 3.187125497516952 3.350509581303376 2.208331150580494 -6.979426145553592 1.827794836268678 -7.180280089378361 1.827794836268678 -6.793265938758852 2.897398463765879 -4.622798642746512 1.260962125007225 -4.751807891381726 1.238879152986148 -4.747714062753222 1.750471927792585 -3.255359593263395 1.784445893554394 -3.377998912594182 1.634497298505222 -3.434335941777626 2.035950374748347 6.905620994244752 2.880413598497575 7.158225753153406 1.813100505230981 6.747989884040035 2.883291205058956 2.797228129713849 4.570021020669109 2.971894593907851 4.578549266746009 3.51675404507292 3.60368179874324 -6.546684035612724 4.104305580285383 -6.77991456089315 3.048920602753996 -6.711066182568706 4.213330661426279 -1.929066760568944 4.330132436477025 -2.536573929178348 3.254264834924483 -2.679694140598081 3.252979374275868 6.90198706610201 3.042738196867563 6.735454268915141 3.042425387819891 6.678202909160588 4.247452502940356 -2.432187037378961 4.420404853308839 -3.002207798147593 3.403459163418558 -3.141067985031883 3.405089687260619 2.534057263812353 3.139163502602719 2.677177372647691 3.137873614003794 3.263546273745768 2.159013531616769 -7.165698991808533 1.813376139786578 -6.938783096555175 2.880652392949351 -6.781150195221142 2.88352990018531 6.90921543989634 3.072505921917002 6.751582485250123 3.075320308184777 6.534872179003074 4.126520120381919 3.087366207216764 0.7150470426967408 2.991422126483569 1.069046709694413 3.261774413532147 0.7263837354393467 -6.191689921848177 4.467119016759341 -6.362427615455451 4.56992179024694 -5.890724466119536 4.740902389830819 -2.516033550490085 4.562246692240131 -2.342676875381855 4.553387972531977 -3.107369740252683 3.482374972634118 6.775677381336893 3.074666827339538 6.544554124886941 4.171114881393614 6.709702635397148 4.279417889599178 2.535780028834959 3.270835456004771 1.928448359359963 4.390686350372738 2.678900213827625 3.269550807327317 -2.973697806718678 4.62850459838636 -2.799031287025279 4.619977831494026 -3.519035698294822 3.609518095869491 -6.785886084602273 3.136879251431091 -6.943521368422148 3.134083679893112 -6.56347069178487 4.228557034944899 6.871315886065541 3.032678645942017 6.503730840512504 4.08816378816996 6.658245864851171 4.196476182069274 2.479245290902088 0.6799391594704114 2.655386600500139 0.6887119106616295 2.723775693035722 0.325473928040234 -5.786815964834077 4.41743193651017 -6.256253125735997 4.242634564742138 -5.799836684864317 4.57912805001892 -2.764790416968209 -0.3099461404066007 -2.93767842662447 -0.2965708418704494 -2.654121206895844 0.1743715649900948 6.410496587940926 4.588502606663502 6.240007306484755 4.485448140664476 5.926333253693103 4.749144969994971 2.342550010904686 4.605539762404322 2.51590689397195 4.614397225654048 3.107366593594489 3.490427715015902 -3.019751154199075 0.813696567399304 -3.118750605215249 0.4610497625235205 -3.293114010547314 0.4728046342728451 -6.499981634076516 4.153969748633226 -6.866414130243568 3.0566261660537 -6.655163170917687 4.261689361615773 6.320661604646921 4.506123984109544 6.160719536389932 4.402801809377919 5.847271939966228 4.674895757954358 4.475126514475689 -3.139489052202338 4.310861229382351 -3.190270440552815 3.712788380835582 -1.81061645316503 -6.219749017878388 4.656698261009725 -6.221426397937465 4.818713106940197 -4.371602260915684 5.005078906591893 -2.573507219184859 0.123166923536211 -2.850978286353149 -0.3500135887976733 -2.742966987028473 0.1374310117205718 6.326034469667299 4.30186700299907 5.843622117431883 4.465736879078405 5.855722307044476 4.627476358188781 2.796081378531468 -0.5021796092870459 2.682180257178022 -0.01753821345826981 2.968910683649469 -0.4883419603594429 -2.677514768040854 0.4272692987426954 -2.501401708623118 0.4181522080289449 -2.747693030851121 0.06472171681886078 -6.211937926494723 4.420431923506698 -6.371608914610234 4.524011695051512 -5.885738513333545 4.682423819668592 6.182316541170235 4.084370033139755 5.711766468973696 4.257986463479243 5.725137688084235 4.424187225022235 6.225875089733087 4.705598514825299 6.226124551745001 4.539065342408841 4.386576789189246 4.716321352820723 4.280851344301558 -1.114383093943481 5.212464066453744 -2.374424283921286 4.134375191175259 -1.182206610588335 -4.380574847206741 4.884036770681126 -6.227571691308472 4.712204003581481 -4.37888839880877 5.058818498672211 -4.863920587890178 -2.628537670686931 -5.012055977869064 -2.562245890919636 -3.887823801815627 -1.378453122986953 6.253968750578897 4.863936472538404 6.252869723395892 4.701919438002648 4.395507797000101 5.01459432400774 2.603744200918126 -0.0675143808171938 2.773135743585333 -0.05275609087205359 2.88441538098767 -0.5405722752387457 -3.970997117430519 -1.694725850269888 -4.714607482699267 -3.03282589780904 -4.873007805014202 -2.971589748269491 -5.775253029903046 4.308120282781093 -6.258880676701894 4.145516521376522 -5.787544273760879 4.474373072257086 6.226044261950792 4.740855154327086 4.386745596272524 4.751539162644003 4.386484668088556 4.926125753368285 4.420595087537521 -0.9824866923526269 4.279573029886118 -1.057121830978527 2.913500309799356 0.5062628034162329 -4.371847724656409 4.879211601165759 -4.37046663728801 5.053994987432245 -1.972225710654404 5.247679973906447 -4.919860463928752 -2.657000446341697 -3.976616174530816 -1.400859471856824 -3.827291160728394 -1.455001196462917 4.143155088372027 -1.20519707237488 5.408309180123485 -2.301275976026724 5.268764062628875 -2.378243230022588 6.259748007929074 4.756894376780651 4.404214438903148 4.893193152894964 4.401952434286432 5.067970868929011 -4.509290824377787 -0.8869529922811061 -4.372188638714785 -0.9659787194513991 -5.601427948645435 -2.067872402622526 -4.413776507097539 4.727517860431248 -6.262003003190792 4.586268298636127 -6.261075233875922 4.752800424840699 4.378575836076083 4.921700353745099 4.378552318954246 4.747113643335689 1.972273653746801 4.943986761700014 2.882609416811939 0.2974335323744031 4.093205774324514 -1.343324673699387 2.742661400572453 0.2283284366643733 -1.97306245640906 5.073745614681402 -4.371654801356737 4.877573717286324 -1.972046964483193 5.246099221765742 -4.058011030152646 -1.324667796130753 -4.201092367989796 -1.260940684376005 -2.688106748254699 0.2359371195845208 4.061017289485063 -1.330326344986218 4.204131887652479 -1.266645323033161 5.280453381301022 -2.458015933965689 4.377931523600408 5.053996240945879 4.37931499523145 4.879212855072634 1.979691937985324 5.247681226984314 -2.917958641228029 0.5015790382689307 -4.28402565300467 -1.061809814189349 -4.425047483154843 -0.9871744741953735 -4.413387164833381 4.762143724781832 -6.260687912101217 4.787334763896554 -4.412452425655175 4.93672888762891 4.380206407626598 5.137082954250202 1.973897438993191 5.158911206979114 1.977764843012009 5.331083965876196 2.772666770969397 1.163276922930621 2.692141335111127 1.049773363124517 0.9519103176151644 1.787726003152057 -1.974631578162743 5.074155862236125 -1.973559904608792 5.246509258805685 0.001196126629127586 5.307396446881216 -4.3747741012958 -0.9656669121644274 -2.866779137099168 0.5182987753131525 -2.725923580872883 0.4396082863386507 4.062077012743613 -1.329543916370038 2.692161523327219 0.2310536357480181 4.205158671723249 -1.265817105306885 4.379122069019729 4.877574765997092 1.980528084987827 5.073746663488098 1.979513189146325 5.24610027065672 -2.886596839790157 0.2925076435209275 -2.746648776952617 0.2234026023531332 -4.097198394391896 -1.348249267559785 -4.386018694525992 4.747113020988515 -4.386042211644917 4.921699731397924 -1.979739731292052 4.94398613935284 1.976958240847883 5.159477248897645 0.0002558056373687623 5.215676113176325 1.980734731456215 5.33165125669606 0.006621650679452279 5.068569953189448 -1.969041235255684 5.012140162207792 0.006508141286023687 5.246835204736376 0.9665412120711872 1.961348275235311 2.739451801271774 1.271389977423975 0.8930927937344544 1.847441088196134 -2.634893744918189 1.13779737732554 -2.718992970340795 1.25651282003048 -0.8669201300834908 1.832527505845364 2.730427803217191 0.434958167162637 2.871283277958421 0.5136487327236128 4.379276657673796 -0.9703183990415918 1.98102612436018 5.246511807061357 1.982097201853244 5.074158410287361 0.006269994174613433 5.307398995209108 -0.958446106655611 1.784896237836819 -2.698677170116475 1.046944488479108 -2.779202923349742 1.160447911292415 -1.981363515933531 5.158911980882619 -4.387672782589707 5.137083728155668 -1.985230770944093 5.331084739764228 1.979370095927085 5.359339000532783 -0.001136560109975048 5.243657279146571 -0.001214392540318872 5.420447844660266 1.976506857319015 5.012137220215808 0.0008444684858135076 5.068567011197461 0.0009579779078014775 5.246832262744378 -0.9731955653287988 1.958692946536143 -0.8997471455144981 1.844785760086569 -2.746106100963762 1.268734652296151 -0.8334575878217123 1.871810990948354 -2.699549169916647 1.324511915116575 -0.9108048461715025 1.996245543828041 2.641530225683527 1.135114165178643 0.8735568164435165 1.82984479154096 2.725629236375278 1.253829692954878 -0.007721920714548686 5.21567933006274 -1.984424305868512 5.159480465804964 -1.988200647459517 5.331654473539335 -0.006329562512153622 5.243659313274075 -1.986836019474041 5.359341034660285 -0.006251730073986694 5.420449878787768 0.8401599042857876 1.869232838044573 0.9175071689004798 1.993667388514356 2.70625128012307 1.321933772812247</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"575\" source=\"#ID18\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID14\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID12\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID13\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"388\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 1 6 8 7 2 8 3 8 9 7 4 6 0 9 10 10 1 11 4 11 11 10 5 9 12 12 6 13 2 14 3 14 7 13 13 12 6 15 14 16 0 17 5 17 15 16 7 15 16 18 2 19 8 20 9 20 3 19 17 18 18 21 8 22 1 23 4 23 9 22 19 21 20 24 10 25 0 26 5 26 11 25 21 24 12 27 2 28 16 29 17 29 3 28 13 27 22 30 6 31 12 32 13 32 7 31 23 30 14 16 20 33 0 17 5 17 21 33 15 16 24 34 14 35 6 36 7 36 15 35 25 34 16 37 8 38 26 39 27 39 9 38 17 37 18 40 28 41 8 42 9 42 29 41 19 40 20 43 30 44 10 45 11 45 31 44 21 43 22 46 12 47 16 48 17 48 13 47 23 46 24 49 6 50 22 51 23 51 7 50 25 49 14 52 32 53 20 54 21 54 33 53 15 52 34 55 14 56 24 57 25 57 15 56 35 55 36 58 16 59 26 60 27 60 17 59 37 58 26 39 8 38 28 61 29 61 9 38 27 39 38 62 28 63 18 64 19 64 29 63 39 62 40 65 30 66 20 67 21 67 31 66 41 65 36 68 22 69 16 70 17 70 23 69 37 68 32 71 40 72 20 73 21 73 41 72 33 71 34 74 32 75 14 76 15 76 33 75 35 74 36 77 26 78 42 79 43 79 27 78 37 77 26 80 28 81 44 82 45 82 29 81 27 80 38 83 46 84 28 85 29 85 47 84 39 83 40 86 48 87 30 88 31 88 49 87 41 86 32 89 50 90 40 91 41 91 51 90 33 89 52 92 32 93 34 94 35 94 33 93 53 92 42 95 26 96 44 97 45 97 27 96 43 95 44 82 28 81 46 98 47 98 29 81 45 82 54 99 46 100 38 101 39 101 47 100 55 99 56 102 48 103 40 104 41 104 49 103 57 102 50 105 56 106 40 107 41 107 57 106 51 105 52 108 50 109 32 110 33 110 51 109 53 108 42 111 44 112 58 113 59 113 45 112 43 111 44 114 46 115 60 116 61 116 47 115 45 114 54 117 62 118 46 119 47 119 63 118 55 117 56 120 64 121 48 122 49 122 65 121 57 120 50 123 66 124 56 125 57 125 67 124 51 123 68 126 50 127 52 128 53 128 51 127 69 126 58 129 44 130 60 131 61 131 45 130 59 129 60 116 46 132 62 133 63 133 47 132 61 116 70 134 62 135 54 136 55 136 63 135 71 134 72 137 64 138 56 139 57 139 65 138 73 137 66 140 74 141 56 142 57 142 75 141 67 140 68 143 66 144 50 145 51 145 67 144 69 143 60 146 76 147 58 148 59 148 77 147 61 146 60 149 62 150 78 151 79 151 63 150 61 149 70 152 80 153 62 154 63 154 81 153 71 152 82 155 64 156 72 157 73 157 65 156 83 155 84 158 85 159 86 160 87 160 88 159 89 158 90 161 66 162 68 163 69 163 67 162 91 161 78 164 76 165 60 166 61 166 77 165 79 164 62 167 92 168 78 169 79 169 93 168 63 167 70 170 94 171 80 172 81 172 95 171 71 170 82 173 72 174 96 175 97 175 73 174 83 173 85 176 98 177 86 178 87 178 99 177 88 176 100 179 101 180 102 181 103 181 104 180 105 179 68 182 106 183 90 184 91 184 107 183 69 182 101 185 108 186 102 187 103 187 109 186 104 185 76 188 78 189 110 190 111 190 79 189 77 188 112 191 113 192 114 193 115 193 116 192 117 191 80 194 94 195 118 196 119 196 95 195 81 194 120 197 82 198 96 199 97 199 83 198 121 197 96 200 72 201 122 202 123 202 73 201 97 200 85 203 124 204 98 205 99 205 125 204 88 203 100 206 102 207 126 208 127 208 103 207 105 206 128 209 106 210 68 211 69 211 107 210 129 209 130 212 131 213 132 214 133 214 134 213 135 212 136 215 130 216 137 217 138 217 135 216 139 215 140 218 76 219 110 220 111 220 77 219 141 218 142 221 143 222 144 223 145 223 146 222 147 221 148 224 112 225 114 226 115 226 117 225 149 224 143 227 150 228 144 229 145 229 151 228 146 227 80 230 118 231 152 232 153 232 119 231 81 230 94 233 154 234 118 235 119 235 155 234 95 233 137 236 120 237 96 238 97 238 121 237 138 236 156 239 96 240 122 241 123 241 97 240 157 239 124 242 158 243 98 244 99 244 159 243 125 242 160 245 100 246 126 247 127 247 105 246 161 245 162 248 136 249 156 250 157 250 139 249 163 248 164 251 165 252 166 253 167 253 168 252 169 251 137 254 130 255 132 256 133 256 135 255 138 254 170 257 165 258 164 259 169 259 168 258 171 257 156 260 136 261 137 262 138 262 139 261 157 260 172 263 173 264 174 265 175 265 176 264 177 263 178 266 179 267 180 268 181 268 182 267 183 266 179 269 184 270 185 271 186 271 187 270 182 269 188 272 112 273 148 274 149 274 117 273 189 272 144 275 150 276 190 277 191 277 151 276 145 275 152 278 118 279 192 280 193 280 119 279 153 278 154 281 185 282 118 283 119 283 186 282 155 281 194 284 120 285 137 286 138 286 121 285 195 284 137 287 96 288 156 289 157 289 97 288 138 287 156 290 122 291 196 292 197 292 123 291 157 290 124 293 198 294 158 295 159 295 199 294 125 293 160 296 126 297 200 298 201 298 127 297 161 296 202 299 162 300 156 301 157 301 163 300 203 299 204 302 205 303 206 304 207 304 208 303 209 302 179 305 185 306 180 307 181 307 186 306 182 305 205 308 210 309 206 310 207 310 211 309 208 308 184 311 192 312 185 313 186 313 193 312 187 311 150 314 212 315 190 316 191 316 213 315 151 314 214 317 188 318 148 319 149 319 189 318 215 317 184 320 216 321 192 322 193 322 217 321 187 320 152 323 192 324 218 325 219 325 193 324 153 323 118 326 185 327 192 328 193 328 186 327 119 326 154 329 180 330 185 331 186 331 181 330 155 329 220 332 156 333 196 334 197 334 157 333 221 332 198 335 222 336 158 337 159 337 223 336 199 335 224 338 160 339 200 340 201 340 161 339 225 338 226 341 162 342 202 343 203 343 163 342 227 341 190 344 212 345 228 346 229 346 213 345 191 344 230 347 188 348 214 349 215 349 189 348 231 347 216 350 232 351 192 352 193 352 233 351 217 350 192 353 234 354 218 355 219 355 235 354 193 353 220 356 196 357 236 358 237 358 197 357 221 356 198 359 238 360 222 361 223 361 239 360 199 359 224 362 200 363 240 364 241 364 201 363 225 362 242 365 226 366 202 367 203 367 227 366 243 365 212 368 244 369 228 370 229 370 245 369 213 368 216 371 246 372 232 373 233 373 247 372 217 371 248 374 230 375 214 376 215 376 231 375 249 374 218 377 234 378 250 379 251 379 235 378 219 377 220 380 236 381 252 382 253 382 237 381 221 380 238 383 254 384 222 385 223 385 255 384 239 383 240 386 200 387 256 388 257 388 201 387 241 386 226 389 242 390 258 391 259 391 243 390 227 389 228 392 244 393 260 394 261 394 245 393 229 392 246 395 262 396 232 397 233 397 263 396 247 395 264 398 230 399 248 400 249 400 231 399 265 398 250 401 234 402 266 403 267 403 235 402 251 401 252 404 236 405 268 406 269 406 237 405 253 404 254 407 238 408 270 409 271 409 239 408 255 407 240 410 256 411 272 412 273 412 257 411 241 410 258 413 242 414 274 415 275 415 243 414 259 413 228 416 260 417 276 418 277 418 261 417 229 416 246 419 278 420 262 421 263 421 279 420 247 419 280 422 264 423 248 424 249 424 265 423 281 422 250 425 266 426 282 427 283 427 267 426 251 425 252 428 268 429 284 430 285 430 269 429 253 428 284 431 268 432 286 433 287 433 269 432 285 431 270 434 238 435 288 436 289 436 239 435 271 434 290 437 240 438 272 439 273 439 241 438 291 437 258 440 274 441 292 442 293 442 275 441 259 440 276 443 260 444 294 445 295 445 261 444 277 443 278 446 296 447 262 448 263 448 297 447 279 446 298 449 264 450 280 451 281 451 265 450 299 449 282 452 266 453 300 454 301 454 267 453 283 452 284 455 286 456 302 457 303 457 287 456 285 455 270 458 288 459 304 460 305 460 289 459 271 458 290 461 272 462 306 463 307 463 273 462 291 461 274 464 308 465 292 466 293 466 309 465 275 464 310 467 296 468 278 469 279 469 297 468 311 467 260 470 312 471 294 472 295 472 313 471 261 470 298 473 314 474 264 475 265 475 315 474 299 473 316 476 282 477 300 478 301 478 283 477 317 476 302 479 286 480 318 481 319 481 287 480 303 479 304 482 288 483 320 484 321 484 289 483 305 482 322 485 290 486 306 487 307 487 291 486 323 485 292 488 308 489 324 490 325 490 309 489 293 488 310 491 326 492 296 493 297 493 327 492 311 491 294 494 312 495 328 496 329 496 313 495 295 494 330 497 314 498 298 499 299 499 315 498 331 497 316 500 300 501 332 502 333 502 301 501 317 500 302 503 318 504 334 505 335 505 319 504 303 503 304 506 320 507 336 508 337 508 321 507 305 506 322 509 306 510 338 511 339 511 307 510 323 509 308 512 340 513 324 514 325 514 341 513 309 512 310 515 342 516 326 517 327 517 343 516 311 515 312 518 344 519 328 520 329 520 345 519 313 518 330 521 346 522 314 523 315 523 347 522 331 521 316 524 332 525 348 526 349 526 333 525 317 524 318 527 350 528 334 529 335 529 351 528 319 527 352 530 322 531 338 532 339 532 323 531 353 530 354 533 304 534 336 535 337 535 305 534 355 533 324 536 340 537 356 538 357 538 341 537 325 536 342 539 358 540 326 541 327 541 359 540 343 539 328 542 344 543 338 544 339 544 345 543 329 542 336 545 346 546 330 547 331 547 347 546 337 545 348 548 332 549 360 550 361 550 333 549 349 548 334 551 350 552 362 553 363 553 351 552 335 551 344 554 352 555 338 556 339 556 353 555 345 554 354 557 336 558 330 559 331 559 337 558 355 557 356 560 340 561 364 562 365 562 341 561 357 560 342 563 356 564 358 565 359 565 357 564 343 563 350 566 348 567 360 568 361 568 349 567 351 566 350 569 360 570 362 571 363 571 361 570 351 569 356 572 364 573 358 574 359 574 365 573 357 572</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID14\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID15\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID19\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID22\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID25\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"162\">0.1924440562725067 0.2711399495601654 0.6115583777427673 0.1957686692476273 0.2042710781097412 0.7609833478927612 0.002700587967410684 0.2004776000976563 0.7722446918487549 0.002700587967410684 0.2004776000976563 0.7722446918487549 0.1957686692476273 0.2042710781097412 0.7609833478927612 0.1924440562725067 0.2711399495601654 0.6115583777427673 0.4444983303546906 0.2680619955062866 0.586967945098877 0.4444983303546906 0.2680619955062866 0.586967945098877 0.002700587967410684 0.2720804810523987 0.6240522265434265 0.002700587967410684 0.2720804810523987 0.6240522265434265 0.4397116601467133 0.2113500535488129 0.7385702729225159 0.4397116601467133 0.2113500535488129 0.7385702729225159 0.352396547794342 0.3509823083877564 0.4470842778682709 0.352396547794342 0.3509823083877564 0.4470842778682709 0.002700587967410684 0.3516040444374085 0.4641821682453156 0.002700587967410684 0.3516040444374085 0.4641821682453156 -0.1870429217815399 0.2711399495601654 0.6115583777427673 -0.1870429217815399 0.2711399495601654 0.6115583777427673 0.6850299835205078 0.2828713655471802 0.5538220405578613 0.6850299835205078 0.2828713655471802 0.5538220405578613 0.5602087378501892 0.3492371141910553 0.4287796020507813 0.5602087378501892 0.3492371141910553 0.4287796020507813 -0.1903675049543381 0.2042710781097412 0.7609833478927612 -0.1903675049543381 0.2042710781097412 0.7609833478927612 0.6636645793914795 0.2286375910043716 0.6840465664863586 0.6636645793914795 0.2286375910043716 0.6840465664863586 0.709339439868927 0.3376691043376923 0.4316198825836182 0.709339439868927 0.3376691043376923 0.4316198825836182 -0.3469953238964081 0.3509823083877564 0.4470842778682709 -0.3469953238964081 0.3509823083877564 0.4470842778682709 -0.4390972852706909 0.2680619955062866 0.586967945098877 -0.4390972852706909 0.2680619955062866 0.586967945098877 0.6231700778007507 0.2220461815595627 0.7204016447067261 0.6231700778007507 0.2220461815595627 0.7204016447067261 0.643763542175293 0.3510677814483643 0.3979833722114563 0.643763542175293 0.3510677814483643 0.3979833722114563 -0.4343104958534241 0.2113500535488129 0.7385702729225159 -0.4343104958534241 0.2113500535488129 0.7385702729225159 0.7126624584197998 0.357633650302887 0.3590758442878723 0.7126624584197998 0.357633650302887 0.3590758442878723 -0.5548076629638672 0.3492371141910553 0.4287796020507813 -0.5548076629638672 0.3492371141910553 0.4287796020507813 -0.6796286106109619 0.2828713655471802 0.5538220405578613 -0.6796286106109619 0.2828713655471802 0.5538220405578613 -0.7039383053779602 0.3376691043376923 0.4316198825836182 -0.7039383053779602 0.3376691043376923 0.4316198825836182 -0.6572906970977783 0.2286375910043716 0.6784615516662598 -0.6572906970977783 0.2286375910043716 0.6784615516662598 -0.6383625268936157 0.3510677814483643 0.3979833722114563 -0.6383625268936157 0.3510677814483643 0.3979833722114563 -0.616965651512146 0.2220461815595627 0.7161311507225037 -0.616965651512146 0.2220461815595627 0.7161311507225037 -0.7072612643241882 0.357633650302887 0.3590758442878723 -0.7072612643241882 0.357633650302887 0.3590758442878723</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID25\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID23\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID26\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"162\">0.03485320284872272 0.899138437978854 0.4362743673425384 0.01951910867172393 0.9171748765335216 0.3980065957397955 1.051160530737447e-009 0.9061375626667 0.4229831173042872 -1.051160530737447e-009 -0.9061375626667 -0.4229831173042872 -0.01951910867172393 -0.9171748765335216 -0.3980065957397955 -0.03485320284872272 -0.899138437978854 -0.4362743673425384 0.0257166868780685 0.908666212219352 0.4167305685775294 -0.0257166868780685 -0.908666212219352 -0.4167305685775294 3.645488823785591e-009 0.8979822765258833 0.4400316250514187 -3.645488823785591e-009 -0.8979822765258833 -0.4400316250514187 0.001300593575580135 0.938226845998182 0.3460183433066159 -0.001300593575580135 -0.938226845998182 -0.3460183433066159 0.04630452055562252 0.8783656303933205 0.4757412224307018 -0.04630452055562252 -0.8783656303933205 -0.4757412224307018 8.738997922719271e-010 0.8929615435048699 0.4501329601588852 -8.738997922719271e-010 -0.8929615435048699 -0.4501329601588852 -0.03485319651907277 0.89913844009921 0.4362743634782617 0.03485319651907277 -0.89913844009921 -0.4362743634782617 0.003983352877028968 0.9189265915012781 0.3944084841020794 -0.003983352877028968 -0.9189265915012781 -0.3944084841020794 0.05753510116414596 0.8849008725822695 0.4622122432791778 -0.05753510116414596 -0.8849008725822695 -0.4622122432791778 -0.01951910407534057 0.9171748731339707 0.3980066037992096 0.01951910407534057 -0.9171748731339707 -0.3980066037992096 0.009659538208278065 0.9410757749378406 0.3380578044458462 -0.009659538208278065 -0.9410757749378406 -0.3380578044458462 0.04496678695988145 0.935419526232216 0.3506683590146127 -0.04496678695988145 -0.935419526232216 -0.3506683590146127 -0.0463044972456431 0.8783656491122684 0.475741190138516 0.0463044972456431 -0.8783656491122684 -0.475741190138516 -0.02571666601298755 0.908666221566183 0.4167305494846911 0.02571666601298755 -0.908666221566183 -0.4167305494846911 -0.04492138787749118 0.9905538335691692 0.1295575999800209 0.04492138787749118 -0.9905538335691692 -0.1295575999800209 0.06688683703105594 0.9649000494973166 0.2539567788267463 -0.06688683703105594 -0.9649000494973166 -0.2539567788267463 -0.003213236844278409 0.9375383555841581 0.3478670822563341 0.003213236844278409 -0.9375383555841581 -0.3478670822563341 0.05934913700066501 0.9617562798550992 0.2673995850717735 -0.05934913700066501 -0.9617562798550992 -0.2673995850717735 -0.05753510569380399 0.8849008584507783 0.4622122697699384 0.05753510569380399 -0.8849008584507783 -0.4622122697699384 -0.007363809001137122 0.9171999091885652 0.3983592610966668 0.007363809001137122 -0.9171999091885652 -0.3983592610966668 -0.04496687070698219 0.9354195212454681 0.3506683615778889 0.04496687070698219 -0.9354195212454681 -0.3506683615778889 -0.02259546634892213 0.9354078084312736 0.3528479514270653 0.02259546634892213 -0.9354078084312736 -0.3528479514270653 -0.06688688639620655 0.964900012856177 0.2539569050417224 0.06688688639620655 -0.964900012856177 -0.2539569050417224 0.04228500258832065 0.990857597467327 0.1281140121039941 -0.04228500258832065 -0.990857597467327 -0.1281140121039941 -0.05934926707443611 0.9617562834541745 0.2673995432571656 0.05934926707443611 -0.9617562834541745 -0.2673995432571656</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID26\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID24\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID22\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID23\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"60\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 6 10 1 4 11 7 12 6 0 5 7 13 14 0 8 9 5 15 16 8 2 3 9 17 6 18 10 11 19 7 12 20 6 7 21 13 14 12 0 5 13 15 16 14 8 9 15 17 22 16 2 3 17 23 18 24 10 11 25 19 26 18 6 7 19 27 20 26 6 7 27 21 28 14 16 17 15 29 30 16 22 23 17 31 24 32 10 11 33 25 20 34 26 27 35 21 30 28 16 17 29 31 36 30 22 23 31 37 34 38 26 27 39 35 40 28 30 31 29 41 42 30 36 37 31 43 44 40 30 31 41 45 42 44 30 31 45 43 46 42 36 37 43 47 48 40 44 45 41 49 50 46 36 37 47 51 52 48 44 45 49 53</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID24\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID27\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID28\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID32\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.07851788401603699 0.1782157123088837 0.750410795211792 -0.07483669370412827 0.1782276183366776 0.7286940813064575 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.07483669370412827 0.1782276183366776 0.7286940813064575 -0.07851788401603699 0.1782157123088837 0.750410795211792 0.000409614498494193 0.1782157123088837 0.750410795211792 0.000409614498494193 0.1782157123088837 0.750410795211792 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.07149340957403183 0.1782367527484894 0.7254133224487305 -0.07149340957403183 0.1782367527484894 0.7254133224487305 -0.07443798333406448 0.1782035082578659 0.7693319320678711 -0.07443798333406448 0.1782035082578659 0.7693319320678711 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.07443798333406448 0.1968002468347549 0.7693800926208496 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.09219180792570114 0.1896190941333771 0.7736449837684631 -0.07443798333406448 0.1968002468347549 0.7693800926208496 -0.09700775891542435 0.1896311044692993 0.7504352331161499 -0.09266245365142822 0.1896431148052216 0.724322497844696 -0.07851788401603699 0.1968121081590653 0.7504593729972839 -0.07851788401603699 0.1968121081590653 0.7504593729972839 -0.09266245365142822 0.1896431148052216 0.724322497844696 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.000409614498494193 0.1782397478818893 0.7226461172103882 -0.07120383530855179 0.1781944781541824 0.7728844285011292 -0.07120383530855179 0.1781944781541824 0.7728844285011292 -0.07120383530855179 0.1967910826206207 0.772932767868042 -0.07120383530855179 0.1967910826206207 0.772932767868042 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.07483669370412827 0.1968243420124054 0.7287421822547913 -0.07483669370412827 0.1968243420124054 0.7287421822547913 -0.08871600776910782 0.1896520107984543 0.7204501032829285 -0.08871600776910782 0.1896520107984543 0.7204501032829285 0.07204876095056534 0.1782367527484894 0.7255136966705322 0.07204876095056534 0.1782367527484894 0.7255136966705322 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.000409614498494193 0.1782397478818893 0.7226461172103882 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.000409614498494193 0.1968121081590653 0.7504593729972839 0.000409614498494193 0.1968121081590653 0.7504593729972839 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08837417513132095 0.189610093832016 0.7778384685516357 -0.08871600776910782 0.1896520107984543 0.7204501032829285 -0.08871600776910782 0.1896520107984543 0.7204501032829285 0.07520543038845062 0.1782276183366776 0.7287005186080933 0.07520543038845062 0.1782276183366776 0.7287005186080933 -0.003841559402644634 0.1896552294492722 0.7171844244003296 -0.003841559402644634 0.1896552294492722 0.7171844244003296 0.07189667224884033 0.1781944781541824 0.7727674245834351 0.07189667224884033 0.1781944781541824 0.7727674245834351 -0.003841564524918795 0.1896068900823593 0.7814804315567017 0.0004096109187230468 0.1781909167766571 0.7759701609611511 0.0004096109187230468 0.1781909167766571 0.7759701609611511 -0.003841564524918795 0.1896068900823593 0.7814804315567017 0.0004096109187230468 0.1967881321907044 0.7760187983512878 0.0004096109187230468 0.1967881321907044 0.7760187983512878 -0.07149340957403183 0.1968333870172501 0.7254616618156433 -0.07149340957403183 0.1968333870172501 0.7254616618156433 0.07795095443725586 0.1782157123088837 0.750410795211792 0.07795095443725586 0.1782157123088837 0.750410795211792 0.08072145283222199 0.1896520107984543 0.7205688953399658 0.08072145283222199 0.1896520107984543 0.7205688953399658 0.07507967203855515 0.1782035082578659 0.7693222761154175 0.07507967203855515 0.1782035082578659 0.7693222761154175 0.08054187148809433 0.189610093832016 0.7777007222175598 0.08054187148809433 0.189610093832016 0.7777007222175598 0.07189667224884033 0.1967910826206207 0.7728157639503479 0.07189667224884033 0.1967910826206207 0.7728157639503479 0.000409614498494193 0.1968369483947754 0.7226946949958801 0.000409614498494193 0.1968369483947754 0.7226946949958801 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.07507967203855515 0.1968002468347549 0.7693703770637512 0.07507967203855515 0.1968002468347549 0.7693703770637512 0.07204876095056534 0.1968333870172501 0.7255620956420898 0.07204876095056534 0.1968333870172501 0.7255620956420898 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08444754034280777 0.1896431148052216 0.724330484867096 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.08429913967847824 0.1896190941333771 0.7736337780952454 0.07795095443725586 0.1968121081590653 0.7504593729972839 0.07795095443725586 0.1968121081590653 0.7504593729972839 0.07520543038845062 0.1968243420124054 0.7287487387657166 0.07520543038845062 0.1968243420124054 0.7287487387657166 0.0876883789896965 0.1896311044692993 0.7504352331161499 0.0876883789896965 0.1896311044692993 0.7504352331161499</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID32\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID29\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID33\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.3024878347369789 -0.9531330521014052 0.006204420036904032 -0.2878136372143352 -0.9422455791864398 -0.1712792419911581 -0.5249396037438788 -0.8510941690515425 0.008782245025272984 0.5249396037438788 0.8510941690515425 -0.008782245025272984 0.2878136372143352 0.9422455791864398 0.1712792419911581 0.3024878347369789 0.9531330521014052 -0.006204420036904032 -1.030157873869469e-007 -0.9999995857409991 -0.0009102295422166482 1.030157873869469e-007 0.9999995857409991 0.0009102295422166482 -0.4867280914656857 -0.8423232723404854 0.2314892434904643 0.4867280914656857 0.8423232723404854 -0.2314892434904643 -0.4832427607286494 -0.8438939856208405 -0.2330651737954984 0.4832427607286494 0.8438939856208405 0.2330651737954984 -0.1065158443663067 -0.8465930701179467 -0.5214734399058137 0.1065158443663067 0.8465930701179467 0.5214734399058137 -0.2843076200453105 -0.9452226107733496 0.1603851404182587 0.2843076200453105 0.9452226107733496 -0.1603851404182587 -0.3613522282898117 0.9323990584512384 0.007520831684874476 -0.1943492098146326 0.9744131186208097 0.1129046451838712 -0.3367738535342633 0.9278463575668894 0.1602638709302215 0.3367738535342633 -0.9278463575668894 -0.1602638709302215 0.1943492098146326 -0.9744131186208097 -0.1129046451838712 0.3613522282898117 -0.9323990584512384 -0.007520831684874476 -0.3350021281728092 0.9286763000072572 -0.1591662775983643 -0.2053667260317607 0.9786667518408502 0.005991383836474488 0.2053667260317607 -0.9786667518408502 -0.005991383836474488 0.3350021281728092 -0.9286763000072572 0.1591662775983643 5.950004055100147e-007 -0.9999996252914151 -0.0008656885557298904 -5.950004055100147e-007 0.9999996252914151 0.0008656885557298904 -0.1163281839727694 -0.8491927267221577 0.5151111205320502 0.1163281839727694 0.8491927267221577 -0.5151111205320502 -0.07782172999912324 0.8997020137288794 0.4295114257294478 0.07782172999912324 -0.8997020137288794 -0.4295114257294478 -0.3506576699523518 -0.7630938270209297 0.5428876584212787 0.3506576699523518 0.7630938270209297 -0.5428876584212787 -0.1969912460712346 0.9734167353974789 -0.116851650477932 0.1969912460712346 -0.9734167353974789 0.116851650477932 -0.3367741236817105 -0.753563594148795 -0.5645574365748503 0.3367741236817105 0.753563594148795 0.5645574365748503 0.1647585956680902 -0.8280508909958978 -0.5358976834008324 -0.1647585956680902 0.8280508909958978 0.5358976834008324 0.0081277610919186 -0.4291142777136779 -0.903213638162036 -0.0081277610919186 0.4291142777136779 0.903213638162036 -7.908903987158142e-007 -0.9999995294381545 -0.0009701148614059022 7.908903987158142e-007 0.9999995294381545 0.0009701148614059022 9.367606006905798e-008 0.9999995870292008 0.0009088131925657172 -9.367606006905798e-008 -0.9999995870292008 -0.0009088131925657172 -0.2576590149372369 0.8834340835300767 0.3913515709422234 0.2576590149372369 -0.8834340835300767 -0.3913515709422234 -0.2494900682113803 0.8802092095288722 -0.4037158076226872 0.2494900682113803 -0.8802092095288722 0.4037158076226872 0.4250998540304424 -0.8806347916119481 -0.2092187322059793 -0.4250998540304424 0.8806347916119481 0.2092187322059793 -0.00845229221265386 0.1033426982612746 -0.9946098961263311 0.00845229221265386 -0.1033426982612746 0.9946098961263311 0.1749601512800255 -0.8291922921760373 0.5308757746026089 -0.1749601512800255 0.8291922921760373 -0.5308757746026089 -0.009459542753938796 0.09949545053255485 0.994993051420064 0.009079193768697695 -0.4319341657279547 0.9018594373389937 -0.009079193768697695 0.4319341657279547 -0.9018594373389937 0.009459542753938796 -0.09949545053255485 -0.994993051420064 0.006149349385183222 0.8895686355997782 0.4567601428094272 -0.006149349385183222 -0.8895686355997782 -0.4567601428094272 -0.07191839607807007 0.9008443571287098 -0.4281438876533442 0.07191839607807007 -0.9008443571287098 0.4281438876533442 0.448138374237927 -0.8939458912537754 0.005721979192628416 -0.448138374237927 0.8939458912537754 -0.005721979192628416 0.4770528154286843 0.1031595313166823 -0.8727993597557735 -0.4770528154286843 -0.1031595313166823 0.8727993597557735 0.4238771647515925 -0.8828044000927632 0.202446388900883 -0.4238771647515925 0.8828044000927632 -0.202446388900883 0.4945456462922296 0.09947495807119577 0.8634404070056803 -0.4945456462922296 -0.09947495807119577 -0.8634404070056803 0.1258013806332151 0.8860187556699122 0.4462564030150351 -0.1258013806332151 -0.8860187556699122 -0.4462564030150351 0.005435422936699622 0.891631961359924 -0.4527282867890564 -0.005435422936699622 -0.891631961359924 0.4527282867890564 0.6702508690679085 -0.6667194785354795 -0.3259584474363129 -0.6702508690679085 0.6667194785354795 0.3259584474363129 0.6742346164452745 -0.6654584480574296 0.3202697861114761 -0.6742346164452745 0.6654584480574296 -0.3202697861114761 0.3173293102426028 0.9355575519583267 0.1550295966410821 -0.3173293102426028 -0.9355575519583267 -0.1550295966410821 0.1190699982263196 0.8884420729247442 -0.4432753304432444 -0.1190699982263196 -0.8884420729247442 0.4432753304432444 0.760030288705589 -0.6498302846838061 0.008634891884813508 -0.760030288705589 0.6498302846838061 -0.008634891884813508 0.5170322868802112 0.8188151053051141 -0.2494382441559307 -0.5170322868802112 -0.8188151053051141 0.2494382441559307 0.521322000416191 0.8159351570852588 0.2499463768777512 -0.521322000416191 -0.8159351570852588 -0.2499463768777512 0.3362759406245169 0.9417533539071984 0.004371745834244416 -0.3362759406245169 -0.9417533539071984 -0.004371745834244416 0.3202772260176232 0.9345677672437676 -0.1549373645169405 -0.3202772260176232 -0.9345677672437676 0.1549373645169405 0.5932164723436803 0.8050212461442146 0.005916941484898163 -0.5932164723436803 -0.8050212461442146 -0.005916941484898163</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID33\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID31\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID34\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"432\">-1.604442099772253 5.802283499279104 -1.573183456353962 5.630762032501461 -1.821740661015552 5.802476513066489 0.00409614498494193 5.902462085770645 -0.7483669370412827 5.731623910707608 -0.7851788401603699 5.902462085770645 -1.604196182515231 5.962490747251832 -1.82149474324102 5.962684121255307 -1.780449779026585 6.146339901946291 -1.571268598756017 5.633255221851461 -1.78291091091704 5.598733785620715 -1.819858586623598 5.804940331456764 -0.7140452025127804 5.703378050300267 -0.7474780852070422 5.729186753498295 0.004984843891686928 5.900025345398822 0.00409614498494193 5.902326100828895 -0.7851788401603699 5.902326100828895 -0.7443798333406448 6.051172408391516 0.2236734658732968 5.762133091532981 -0.01270952242478987 5.911585246007205 0.1787754005984815 5.945230107319095 -1.564428723748529 6.113601345021629 -1.599305025680767 5.963826210519477 -1.775445545748399 6.147742417172025 0.2179063692350927 5.992400588104799 0.1773562749568012 5.786613389957505 0.01955257277450474 5.992590827788637 -1.448469807025108 4.751486045042294 -1.688880764353528 4.742016143994216 -1.478189593478927 4.779967674105643 0.004111008280331676 5.683600164398651 -0.7149192326696907 5.705368853763854 0.004111006276021026 5.902015713185169 0.003401430125809488 5.900151354700049 -0.7450744437582559 6.04899798727062 -0.7127329307595376 6.076944359379837 0.0875151803162183 5.355915491467289 0.05684437206541895 5.38500547820929 0.2786303277646169 5.390837238688121 0.21754929076373 5.754514713295354 0.01919549468686374 5.754705200410626 -0.01879160302071026 5.90400806068337 -1.489320372067448 5.95132655585069 -1.699604226711574 5.988160124114627 -1.665788431435642 6.023972587944718 0.180187554914348 5.787662053882029 -0.01197278655136753 5.822494054807282 0.02240503837869619 5.993649535119075 -1.653813246305865 4.709468520215458 -1.688903054480486 4.743081386304116 -1.448492007543037 4.752549879443639 0.7204748535710164 5.70615846456132 0.004083388854297861 5.683600164355402 0.004083390574457986 5.902015713141923 -1.032044798157092 1.226779649424081 -0.8514584171371413 1.314888120954353 -0.1346106482705932 1.265763910272534 0.004082013310828176 5.901868745412714 -0.7120524830533479 6.07866141048066 0.004081979479286662 6.102935850588785 -1.46081457044848 5.981914842209305 -1.489466745456678 5.951579120552236 -1.665939082746371 6.024218721431586 0.7451694618322063 6.049014422414442 -0.003306408641074359 5.900171063165603 0.7128279474080883 6.076962202870619 0.2786041034267978 5.392014972887837 0.05681812193419247 5.386183819490798 0.2423942948771818 5.426348456631136 0.7851788401603699 5.902641979286039 -0.00409614498494193 5.902641979286039 0.7443798333406448 6.051485002905634 0.7851788401603699 5.902740625578002 0.7483669370412827 5.731898697963258 -0.00409614498494193 5.902740625578002 0.3006698490501311 5.929101459942056 0.2630781014933425 5.897206458866669 0.1089805479442876 5.965504217141602 0.7511228658279991 5.72913454369326 0.7195561280267626 5.704064808637644 0.003164871263548281 5.899922524039425 0.1248118584738087 1.029936007830623 0.157349922380298 1.131786871995296 0.8710852770113151 1.185262132547967 -0.185866128285687 1.168551250859002 -1.03203501974185 1.22652955858015 -0.1346011083247205 1.265517216529196 0.7189780480699066 6.077740979275789 0.004107471930473988 5.901868745460156 0.004107434556820421 6.102935850636226 -0.862861704234138 3.927370724705898 -0.2015707945288319 4.078433926945395 -0.1493850533623736 3.981598326028479 -0.8628045199244163 3.927639570001535 -1.043698269554101 4.014691222259664 -0.2015078816790155 4.078687252534298 0.7120398805439631 6.078949583813254 -0.004094617363084419 5.902158799714556 -0.004094581751470315 6.103226367629099 0.7787125549174547 2.585036605096612 0.6033385655026737 2.522650066138377 -0.1117223255655186 2.561895583422623 0.7474038480014797 5.729259531857909 0.7139709664477956 5.703452705248894 -0.005059084104673388 5.900101868103782 0.2627588158035044 5.897246571368882 0.07680789880434155 5.938520967984054 0.1086573100596666 5.96553881100149 0.7795095443725586 5.902461857342622 0.7520543038845062 5.731674322378174 0.00409614498494193 5.902461857342622 1.837982949551064 4.380493162626602 1.698151380191647 4.426663247286263 1.722261911843289 4.456418909610435 0.1247907685741417 1.030037050628625 0.8710661817052536 1.185357244751118 0.9672866956702858 1.093149008827759 0.6182835712551754 4.775255339961362 0.793800767381204 4.711713847427201 -0.05393935509880506 4.670308342735786 0.7515192965588562 6.048837954527257 0.004818832041163543 5.90006726269816 0.7196892646605601 6.075939857527496 0.8862475378018822 3.792571274053156 0.1746565630062018 3.851984305430153 0.9832304820207426 3.884087444153092 0.1746380817817648 3.851553385651503 0.1432486616462902 3.953791929426786 0.9832116155855102 3.883662527970578 -0.06534121213406159 2.63105822182879 0.7787179296387801 2.584739777075194 -0.1117168868593094 2.561597231824915 -0.004094653617984109 5.902158799714615 -0.7189652312805638 6.07802915258916 -0.004094618001953375 6.103226367629159 0.7149043705724325 5.705577453965008 -0.004125870608663351 5.683810639604747 -0.004125866857378252 5.902226193962813 0.7795095443725586 5.902325637871498 0.00409614498494193 5.902325637871498 0.7507967203855515 6.051095985290626 1.8422754717584 5.661531884254806 1.860065481229638 5.833109873402369 1.989092693654606 5.626995170813783 1.866608484664902 4.416370659075843 1.838140690497932 4.381252172648102 1.722410861650169 4.457169627042735 0.1017818923490949 4.635730454846145 0.1403692834330186 4.563151008605013 -0.7040384761248265 4.607730130874681 0.6182300880543712 4.774973129686113 -0.0539900413699956 4.670015046265992 -0.09994876018071668 4.739887083494891 1.733899547804191 5.531120571691932 1.709772779716068 5.562763359799611 1.878316678975313 5.570720590338454 1.878304677869654 5.570236401650518 1.709760849657511 5.562278239889182 1.849835545272472 5.607594591763997 0.1537407156268212 2.444674604463092 -0.5978653068071427 2.329634598343816 -0.6885274476433928 2.39449174630185 0.1537883138861346 2.444229771370457 0.1157277970935313 2.371708602168431 -0.5978147418473687 2.329177771002359 -0.00491720082529457 5.900077058146425 -0.7516176617662564 6.048844008260367 -0.7197876284078544 6.075947788539828 -0.004068778744300874 5.683810639521082 -0.7204602436909137 5.706367533632258 -0.004068782197838758 5.902226193879148 1.861658167768242 5.915239599347373 1.842927300380627 6.064991691688345 2.01170103070488 5.915433112871178 1.861850771719819 5.83510277999676 2.011893635504649 5.835295886105167 1.990956558256295 5.629018528131723 0.1719779002507082 5.824603213096284 0.1389888997947077 5.857181682759085 0.2822048289751989 5.867848448492063 -0.613562480917102 4.673788626475852 0.1017936545345657 4.636024285106233 -0.7040268847461585 4.608027003318812 1.839764149855081 6.066881609824319 1.986422966154651 6.101004404133319 2.008651870081057 5.917402684293361 0.2825884533466772 4.865079334453994 0.1672701472499133 4.901776309015174 0.2002177616702845 4.936782292242141 0.3100472870646619 4.89401534558154 0.2821395270143702 4.864357040165081 0.1997767932944579 4.936065654880399 -0.00409614498494193 5.90264147944936 -0.7795095443725586 5.90264147944936 -0.7507967203855515 6.051408074034807 -0.7194780291125233 5.70413058581879 -0.7510447657283905 5.729198913126174 -0.003086767938886549 5.899989699497139 0.557955278772954 5.834059593021777 0.4409585274078356 5.799210002360261 0.4147576104431627 6.005114826228685 0.2822718771330113 5.868125037355849 0.1390557649232501 5.857459792492024 0.2543176606559016 5.895720061609569 0.5411198927479399 5.741546306500214 0.4201305351659356 5.74135568632237 0.4473328967749751 5.924542618564806 0.5506819982486841 5.885009179554949 0.5275336326060752 5.735643569586635 0.4338826583204476 5.918682986264019 -0.00409614498494193 5.902740361620345 -0.7520543038845062 5.731950011883361 -0.7795095443725586 5.902740361620345 0.5626309017891711 5.835755551708061 0.4194700893104356 6.00682987497948 0.5404594473816824 6.00702030289107</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"216\" source=\"#ID34\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID30\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID28\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID29\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"144\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 0 6 2 7 8 8 9 8 3 7 5 6 1 9 10 10 2 11 3 11 11 10 4 9 12 12 1 13 6 14 7 14 4 13 13 12 6 15 0 16 14 17 15 17 5 16 7 15 16 18 17 19 18 20 19 20 20 19 21 18 14 21 0 22 8 23 9 23 5 22 15 21 16 24 22 25 23 26 24 26 25 25 21 24 12 27 10 28 1 29 4 29 11 28 13 27 26 30 12 31 6 32 7 32 13 31 27 30 6 33 14 34 28 35 29 35 15 34 7 33 17 36 30 37 18 38 19 38 31 37 20 36 16 39 23 40 17 41 20 41 24 40 21 39 14 42 8 43 32 44 33 44 9 43 15 42 22 45 34 46 23 47 24 47 35 46 25 45 36 48 10 49 12 50 13 50 11 49 37 48 38 51 26 52 6 53 7 53 27 52 39 51 36 54 12 55 40 56 41 56 13 55 37 54 6 57 28 58 42 59 43 59 29 58 7 57 28 60 14 61 32 62 33 62 15 61 29 60 17 63 44 64 30 65 31 65 45 64 20 63 18 66 30 67 46 68 47 68 31 67 19 66 23 69 44 70 17 71 20 71 45 70 24 69 23 72 34 73 44 74 45 74 35 73 24 72 22 75 48 76 34 77 35 77 49 76 25 75 50 78 38 79 6 80 7 80 39 79 51 78 52 81 40 82 38 83 39 83 41 82 53 81 52 84 36 85 40 86 41 86 37 85 53 84 54 87 6 88 42 89 43 89 7 88 55 87 28 90 56 91 57 92 58 92 59 91 29 90 28 93 32 94 56 95 59 95 33 94 29 93 30 96 44 97 60 98 61 98 45 97 31 96 46 99 30 100 60 101 61 101 31 100 47 99 34 102 62 103 44 104 45 104 63 103 35 102 48 105 62 106 34 107 35 107 63 106 49 105 64 108 50 109 6 110 7 110 51 109 65 108 66 111 38 112 50 113 51 113 39 112 67 111 52 114 38 115 66 116 67 116 39 115 53 114 62 117 48 118 52 119 53 119 49 118 63 117 68 120 6 121 54 122 55 122 7 121 69 120 54 123 57 124 70 125 71 125 58 124 55 123 57 126 56 127 70 128 71 128 59 127 58 126 56 129 46 130 60 131 61 131 47 130 59 129 44 132 72 133 60 134 61 134 73 133 45 132 62 135 74 136 44 137 45 137 75 136 63 135 64 138 6 139 68 140 69 140 7 139 65 138 50 141 64 142 76 143 77 143 65 142 51 141 76 144 66 145 50 146 51 146 67 145 77 144 74 147 52 148 66 149 67 149 53 148 75 147 62 150 52 151 74 152 75 152 53 151 63 150 68 153 54 154 78 155 79 155 55 154 69 153 78 156 54 157 70 158 71 158 55 157 79 156 56 159 72 160 70 161 71 161 73 160 59 159 56 162 60 163 72 164 73 164 61 163 59 162 44 165 80 166 72 167 73 167 81 166 45 165 74 168 82 169 44 170 45 170 83 169 75 168 64 171 68 172 84 173 85 173 69 172 65 171 64 174 84 175 76 176 77 176 85 175 65 174 66 177 86 178 82 179 83 179 87 178 67 177 82 180 74 181 66 182 67 182 75 181 83 180 68 183 78 184 84 185 85 185 79 184 69 183 80 186 88 187 70 188 71 188 89 187 81 186 72 189 80 190 70 191 71 191 81 190 73 189 44 192 90 193 80 194 81 194 91 193 45 192 82 195 92 196 44 197 45 197 93 196 83 195 92 198 86 199 94 200 95 200 87 199 93 198 82 201 86 202 92 203 93 203 87 202 83 201 90 204 94 205 88 206 89 206 95 205 91 204 80 207 90 208 88 209 89 209 91 208 81 207 44 210 92 211 90 212 91 212 93 211 45 210 92 213 94 214 90 215 91 215 95 214 93 213</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID30\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID31\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID37\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID40\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID44\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"114\">0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6998841166496277 0.270549088716507 0.3540823757648468 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6998841166496277 0.270549088716507 0.3540823757648468 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID44\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID41\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID45\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"114\">0.9884127945771787 0 -0.1517898136112303 0.9969899233375046 0 -0.07753123734003652 0.9884127945771787 0 -0.1517898136112303 -0.9884127945771787 -0 0.1517898136112303 -0.9969899233375046 -0 0.07753123734003652 -0.9884127945771787 -0 0.1517898136112303 0.9884127945771787 0 -0.1517898136112303 0.9983209373992593 0 -0.05792500280762848 -0.9983209373992593 -0 0.05792500280762848 -0.9884127945771787 -0 0.1517898136112303 0.9993509731965242 7.18492665555945e-019 0.03602266468710872 -0.9993509731965242 -7.18492665555945e-019 -0.03602266468710872 0.9990304983920447 0.0002615411009320761 0.04402266324060325 -0.9990304983920447 -0.0002615411009320761 -0.04402266324060325 0.9888373930540065 0.000243802279811211 0.1489984921353378 -0.9888373930540065 -0.000243802279811211 -0.1489984921353378 0.9861057339238535 0.0001949415399641176 0.1661187632999196 -0.9861057339238535 -0.0001949415399641176 -0.1661187632999196 0.9624191563697438 0.0002416039797533959 0.2715682401903204 -0.9624191563697438 -0.0002416039797533959 -0.2715682401903204 0.9573306222604454 0 0.2889949475032887 -0.9573306222604454 -0 -0.2889949475032887 0.8839944246690079 -2.34346267069095e-018 0.4674974407995293 -0.8839944246690079 2.34346267069095e-018 -0.4674974407995293 0.9134632872758963 0.008433748235240745 0.4068337433028604 -0.9134632872758963 -0.008433748235240745 -0.4068337433028604 0.7766929828863236 0.0006653471482944537 0.6298790103252504 -0.7766929828863236 -0.0006653471482944537 -0.6298790103252504 0.8876641481112757 0.01683615633685049 0.4601835546797433 -0.8876641481112757 -0.01683615633685049 -0.4601835546797433 4.474170745649866e-005 -0.002559499189329098 0.9999967234756721 0.0001348128492229062 -0.002562698209801924 0.9999967071962693 4.239615786161625e-005 -0.002559415883111041 0.9999967237910848 -4.239615786161625e-005 0.002559415883111041 -0.9999967237910848 -0.0001348128492229062 0.002562698209801924 -0.9999967071962693 -4.474170745649866e-005 0.002559499189329098 -0.9999967234756721 0.0001382935307154935 -0.002562821831347933 0.9999967064041562 -0.0001382935307154935 0.002562821831347933 -0.9999967064041562</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID45\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID43\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID46\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"76\">3.217366635799408 -1.014987970353258 3.174309134483337 0.02936904625421927 -4.606521725654602 -1.014987970353258 3.174309134483337 0.02936904625421971 -5.109987258911133 0.02936904625421971 -4.606521725654602 -1.014987970353258 3.174309134483337 -0.9347596834103267 3.138594627380371 0.1405233934521675 -5.109987258911133 -0.9347596834103267 -5.681315660476685 0.1405233934521675 3.138594627380371 -0.3197488620574284 3.102889358997345 0.73392555109761 -5.681315660476685 -0.3197488620574284 3.099300357882584 0.7525232592401354 -6.220526077713789 0.7525232592401354 -5.684948389092591 -0.3009255327867159 3.119290230740525 0.4236586082511997 -6.220526077713787 -0.2306158695550169 3.099300357882584 -0.2306158695550167 3.122794330120087 0.3925020501514792 -6.405144929885864 0.3925020501514792 -6.216936111450195 -0.2625305373007132 3.122794330120087 -0.3032706499672477 2.803181707859039 0.2349233739714925 -6.405144929885864 -0.3032706499672477 -6.521115899085999 0.2349233739714925 2.803181707859039 -1.936911851088256 2.70549088716507 -1.354481735846471 -6.521115899085999 -1.936911851088256 2.572282569008688 -0.07878836915218171 -6.647628083256216 -0.09970009621027236 -6.661598736798799 -0.5848708598991235 7.077063234366902 -5.209014241747745 7.042690862107612 2.043961881576643 6.562209069469692 -5.209197418525998 7.134453694649073 1.835703753249987 6.782620276737968 1.835703753249987 6.310054666937787 -5.398285491289607</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"38\" source=\"#ID46\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID42\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID40\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID41\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"14\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 6 7 1 7 10 1 7 12 10 12 14 10 12 16 14 14 16 18 16 20 18 20 22 18 20 24 22 24 26 22 24 28 26 30 31 32 30 36 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID42\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"14\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 0 4 1 5 2 4 3 8 4 9 5 4 6 11 7 8 8 11 7 13 9 8 8 11 10 15 11 13 12 15 13 17 14 13 15 19 16 17 17 15 18 19 19 21 20 17 21 19 22 23 23 21 24 23 23 25 25 21 24 23 26 27 27 25 28 27 29 29 30 25 31 33 32 34 33 35 34 34 35 37 36 35 37</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID42\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID43\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID47\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID50\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID54\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6671133041381836 -0.6521289944648743 0.3517222404479981</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID54\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID51\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID55\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">-0.9969900277453814 9.626555252388103e-019 0.0775298947262491 -0.9884131832184093 1.906393035707814e-018 0.1517872828666863 -0.9884131832184093 1.906393035707814e-018 0.1517872828666863 0.9884131832184093 -1.906393035707814e-018 -0.1517872828666863 0.9884131832184093 -1.906393035707814e-018 -0.1517872828666863 0.9969900277453814 -9.626555252388103e-019 -0.0775298947262491 -0.9983209916237562 6.4888899971745e-019 0.05792406825629513 -0.9884131832184093 1.700382951580574e-018 0.1517872828666863 0.9884131832184093 -1.700382951580574e-018 -0.1517872828666863 0.9983209916237562 -6.4888899971745e-019 -0.05792406825629513 -0.9993510188497022 0 -0.03602139814140998 0.9993510188497022 -0 0.03602139814140998 -0.9990305921481414 -0.0002616147124452107 -0.04402053509302527 0.9990305921481414 0.0002616147124452107 0.04402053509302527 -0.9943779220620549 -0.0002469081820434832 -0.1058890322549958 0.9943779220620549 0.0002469081820434832 0.1058890322549958 -0.9934290682451136 -0.0001942857728718545 -0.1144493277336469 0.9934290682451136 0.0001942857728718545 0.1144493277336469 -0.9959830180574033 -0.0002479755067153577 -0.0895419803746499 0.9959830180574033 0.0002479755067153577 0.0895419803746499 -0.9972497351322402 -9.175001186096695e-020 -0.07411454498731458 0.9972497351322402 9.175001186096695e-020 0.07411454498731458 -0.9997397171438488 2.749353240624562e-019 0.02281442449717623 0.9997397171438488 -2.749353240624562e-019 -0.02281442449717623 -0.9982766421434597 -0.001456496946020338 0.05866535917749741 0.9982766421434597 0.001456496946020338 -0.05866535917749741 -0.9962136581104646 -9.87810436129017e-005 0.08693870045308721 0.9962136581104646 9.87810436129017e-005 -0.08693870045308721 -0.9913228737516919 -0.002879171972723066 0.1314179224666044 0.9913228737516919 0.002879171972723066 -0.1314179224666044</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID55\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID53\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID56\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"60\">-3.201837241649628 -1.153543505140703 4.622048735618591 -1.153543505140703 -3.158780634403229 -0.1091876107511638 5.125510692596436 -0.1091876107511638 -3.158780634403229 -0.9347603867451351 5.125510692596436 -0.9347603867451351 -3.123067617416382 0.1405233934521675 5.696841478347778 0.1405233934521675 -3.123067617416382 -0.2528983824522879 5.696841478347778 -0.2528983824522879 -3.087365627288818 0.8007758246933258 -3.084303793502754 0.8166679514527762 5.699947050034061 -0.2367805808048564 6.235524132752182 0.8166679514527762 -3.104264639119321 1.089387370119314 -3.084303793502755 0.4455548184328019 6.235524132752184 0.4455548184328018 -3.107274770736694 1.061742395136762 6.232461333274841 0.417437203216338 6.420673131942749 1.061742395136762 -3.107274770736694 1.723373104067945 6.420673131942749 1.723373104067945 -2.787659466266632 2.230640169182266 6.53664231300354 2.230640169182266 -2.787659466266632 2.770680346987941 6.53664231300354 2.770680346987941 -2.686533033847809 3.221638161564211 -2.667214906130042 3.449328196154371 6.555779429903087 2.996085165249665 6.540637820919023 3.430599364195978</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"30\" source=\"#ID56\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID52\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID50\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID51\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 6 7 0 10 6 0 12 6 10 14 12 10 16 12 14 16 14 18 20 16 18 22 20 18 24 20 22 26 24 22 28 24 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID52\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 0 4 1 5 2 5 2 8 1 9 3 5 4 9 5 11 6 11 6 9 5 13 7 11 8 13 9 15 10 15 11 13 12 17 13 19 14 15 15 17 16 19 17 17 18 21 19 19 20 21 21 23 22 23 22 21 21 25 23 23 24 25 25 27 26 27 27 25 28 29 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID52\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID53\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID57\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID58\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID62\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"198\">0.6598588824272156 -0.653664231300354 0.2969664335250855 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.7185912728309631 -0.6512529850006104 0.3517223000526428 0.6671133041381836 -0.6521289944648743 0.3517222404479981 0.6598588824272156 -0.653664231300354 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.7469941377639771 -0.6521115899085999 0.2969664335250855 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.6611634492874146 -0.6420673131942749 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.7698889970779419 -0.6405144929885864 0.2324965298175812 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.6729455590248108 -0.6232461333274841 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.7889691591262817 -0.6216936111450195 0.151445209980011 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.6823291182518005 -0.5696841478347778 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.7983531951904297 -0.5681315660476685 0.01786314323544502 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.6823291182518005 -0.5125510692596436 -0.1188254728913307 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.7983531951904297 -0.5109987258911133 -0.1188253834843636 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.7782019972801209 -0.4606521725654602 -0.2500443458557129 0.6621782779693604 -0.4622048735618591 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7983531951904297 0.3174309134483337 -0.1188253834843636 0.7782019972801209 0.3217366635799408 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6621782779693604 0.3201837241649628 -0.2500443458557129 0.6823291182518005 0.3158780634403229 -0.1188254728913307 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.7983531951904297 0.3138594627380371 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.6823291182518005 0.3123067617416382 0.01786314323544502 0.7885450124740601 0.3102889358997345 0.151445209980011 0.7885450124740601 0.3102889358997345 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.6725212931632996 0.3087365627288818 0.151445209980011 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.7698889970779419 0.3122794330120087 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.6611634492874146 0.3107274770736694 0.2324965298175812 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.7469941377639771 0.2803181707859039 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6598588824272156 0.2787659466266632 0.2969664335250855 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6998841166496277 0.270549088716507 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468 0.6647518873214722 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID62\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID59\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID63\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"198\">0.01757355631798894 -0.996658244590752 -0.07977163410397985 0.01700902801069171 -0.9995231595339412 0.02577104036353611 0.01751695589509933 -0.9995282799576263 0.02522645082286458 -0.01751695589509933 0.9995282799576263 -0.02522645082286458 -0.01700902801069171 0.9995231595339412 -0.02577104036353611 -0.01757355631798894 0.996658244590752 0.07977163410397985 0.01625839579783936 -0.9946609971594649 -0.1019076311952124 -0.01625839579783936 0.9946609971594649 0.1019076311952124 0.01508160133426316 -0.9800364416240054 -0.1982450967619426 -0.01508160133426316 0.9800364416240054 0.1982450967619426 0.01366831664102421 -0.9791246266498208 -0.2028007460737008 -0.01366831664102421 0.9791246266498208 0.2028007460737008 0.01306527961609271 -0.9558446256026917 -0.2935819309409272 -0.01306527961609271 0.9558446256026917 0.2935819309409272 0.01273971076296427 -0.9520607276259343 -0.3056436989078172 -0.01273971076296427 0.9520607276259343 0.3056436989078172 0.01238562344223381 -0.9255817632390216 -0.3783450751513635 -0.01238562344223381 0.9255817632390216 0.3783450751513635 0.01238350552953238 -0.9254423735519356 -0.3786859675580281 -0.01238350552953238 0.9254423735519356 0.3786859675580281 0.01241741070313897 -0.9280470570654398 -0.3722559170565407 -0.01241741070313897 0.9280470570654398 0.3722559170565407 0.01241179030027248 -0.92760980977564 -0.3733443293657248 -0.01241179030027248 0.92760980977564 0.3733443293657248 0.01248377637649902 -0.932921716390152 -0.359862788316651 -0.01248377637649902 0.932921716390152 0.359862788316651 0.0124849284269848 -0.9329212995850048 -0.3598638288892045 -0.0124849284269848 0.9329212995850048 0.3598638288892045 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0 0 -1 -0 -0 1 -0.01337534588875929 0.999303232382507 0.03484465342387041 -0.01337534588875929 0.999303232382507 0.03484465342387041 -0.0133767273996353 0.9994525532114903 0.03025982556309336 0.0133767273996353 -0.9994525532114903 -0.03025982556309336 0.01337534588875929 -0.999303232382507 -0.03484465342387041 0.01337534588875929 -0.999303232382507 -0.03484465342387041 -0.01337610627739966 0.9994397139226007 0.03068123229542974 -0.01337456197828937 0.9993032712123542 0.03484384072081131 0.01337456197828937 -0.9993032712123542 -0.03484384072081131 0.01337610627739966 -0.9994397139226007 -0.03068123229542974 -0.01337717699255372 0.9995742348990625 0.02593067800238563 0.01337717699255372 -0.9995742348990625 -0.02593067800238563 -0.01337623645414197 0.9995744997605131 0.02592095150342658 0.01337623645414197 -0.9995744997605131 -0.02592095150342658 -0.01337926781303881 0.9999090010156541 0.001727680718123866 0.01337926781303881 -0.9999090010156541 -0.001727680718123866 -0.01366164874581822 0.9999038562712569 -0.002374356210722729 0.01366164874581822 -0.9999038562712569 0.002374356210722729 -0.01373271164826091 0.985340622057855 0.1700449092252551 0.01373271164826091 -0.985340622057855 -0.1700449092252551 -0.01486615069782372 0.9737391817984691 0.2271805524112425 0.01486615069782372 -0.9737391817984691 -0.2271805524112425 -0.0152885886490525 0.9353144770558194 0.353487040875503 0.0152885886490525 -0.9353144770558194 -0.353487040875503 -0.02312573667733494 0.9506753367844222 0.3093244321629897 0.02312573667733494 -0.9506753367844222 -0.3093244321629897 -0.03283908092088732 0.9857753155064591 0.1648290693488631 0.03283908092088732 -0.9857753155064591 -0.1648290693488631 -0.05301767165236267 0.9825105025154766 0.1784999690177787 0.05301767165236267 -0.9825105025154766 -0.1784999690177787</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID63\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID61\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID64\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"152\">6.486414740553204 2.200584320257102 6.559209671773116 2.63147311179554 7.074063889325645 2.631473580841196 7.352576081397806 2.205026862540071 6.48108520835931 2.205026862540071 7.068745480385288 2.635906735090988 7.352576081397806 3.224042151981169 6.496194904353771 2.708773932450279 6.48108520835931 3.224042151981169 7.606635830927045 2.684044270212909 6.519269471646906 2.684044270212909 7.376054453682446 3.198896900317751 7.606635830927044 2.931616529341707 6.639766324665787 2.27734928889875 6.519269471646906 2.931616529341706 7.805803415294651 2.271617827094184 6.645463546737465 2.271617827094184 7.612500660756662 2.925731755297332 7.805803415294649 2.953149377663582 6.746457275010557 1.821357505336036 6.645463546737464 2.953149377663581 7.906799264988455 1.821359718478698 6.746454620511368 1.821359718478698 7.8058005157308 2.953151732755598 7.906799264988455 1.885349226639128 6.754099226591073 0.7199301840054732 6.746454620511367 1.885349226639128 7.914452876516921 0.7199222391663144 6.754108263938685 0.7199214768751236 7.906809292079772 1.885339913695565 6.559353637864163 -0.5018143597871121 6.754108393519553 0.6045616013489867 7.914453006097798 0.6045623551865789 7.719681411874956 -0.5017985319122876 6.559340327405119 -0.5017985319122876 7.914438265428908 0.6045792671104565 -6.621782779693604 2.518778630097707 -6.621782779693604 -3.636011672019959 -7.782019972801209 -3.623797090848287 -7.782019972801209 2.530995086828868 -6.664041417716023 -2.051149898773439 -7.824382534092096 -2.051149898773439 -8.025300206329026 -1.018266833586361 -6.864953118724609 -1.018265775553878 -6.664038974574384 -2.051148107694036 -8.025297799093693 -1.018265071791724 -6.864953098071562 -0.997458293041149 -8.025297778440647 -0.9974575894663439 -8.024819822562574 0.07819240295993857 -6.864471208429597 0.07819482848281474 -6.864949097792568 -0.9974558364394162 -8.024815868857917 0.07819482848281474 -6.864471208429595 0.07910333492510922 -8.024815868857916 0.07910333492510922 -7.926265037739377 1.130297099530577 -6.765915653925095 1.130301932393614 -6.864462769493923 0.07910822762635848 -7.926256694531853 1.130301932393614 -6.765915653925095 1.256046983758888 -7.926256694531853 1.256046983758888 -7.73997953774591 1.893894132554812 -6.655309974446317 1.891253165835361 -6.768592688689693 1.253424576120478 -7.742676210338567 1.891253165835361 -6.655309974446317 0.5981015604815404 -7.742676210338567 0.5981015604815404 -7.509189229834411 1.163019357512824 -6.647193467686876 1.16124259311054 -6.665929778665064 0.5952743692480706 -7.518684266401535 1.16124259311054 -6.647193467686875 1.98374502410431 -7.518684266401534 1.98374502410431 -7.045918801752059 2.438513755918931 -6.782620276737963 2.414315454238441 -6.739210310102997 1.957669605233432 -7.134453694649066 2.414315454238441</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"76\" source=\"#ID64\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID60\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID58\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID59\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"52\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 6 6 8 7 0 8 5 8 9 7 7 6 10 9 8 10 6 11 7 11 9 10 11 9 10 12 12 13 8 14 9 14 13 13 11 12 14 15 12 16 10 17 11 17 13 16 15 15 14 18 16 19 12 20 13 20 17 19 15 18 18 21 16 22 14 23 15 23 17 22 19 21 18 24 20 25 16 26 17 26 21 25 19 24 22 27 20 28 18 29 19 29 21 28 23 27 24 30 20 31 22 32 23 32 21 31 25 30 26 33 24 34 22 35 23 35 25 34 27 33 28 36 29 37 30 38 31 38 32 37 33 36 34 39 28 36 30 38 31 38 33 36 35 39 36 40 37 41 38 42 39 42 40 41 41 40 42 43 43 44 38 45 39 45 44 44 45 43 42 46 38 47 46 48 47 48 39 47 45 46 48 49 42 50 46 51 47 51 45 50 49 49 48 52 46 53 50 54 51 54 47 53 49 52 52 55 48 56 50 57 51 57 49 56 53 55 52 58 50 59 54 60 55 60 51 59 53 58 56 61 52 62 54 63 55 63 53 62 57 61 56 64 54 65 58 66 59 66 55 65 57 64 60 67 56 68 58 69 59 69 57 68 61 67 60 70 58 71 62 72 63 72 59 71 61 70 64 73 60 74 62 75 63 75 61 74 65 73</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID60\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID61\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID65\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID66\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID70\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"792\">0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.645243763923645 -0.5195940136909485 0.2845224440097809 0.645243763923645 -0.5195940136909485 0.2845224440097809 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607192754745483 -0.5262042284011841 0.2845224440097809 0.6607192754745483 -0.5262042284011841 0.2845224440097809 0.6607146263122559 -0.5349977612495422 0.2888893783092499 0.6607141494750977 -0.5357221961021423 0.2845224440097809 0.6454480886459351 -0.5189134478569031 0.2888893783092499 0.6454480886459351 -0.5189134478569031 0.2888893783092499 0.6454480886459351 -0.5189134478569031 0.2801555991172791 0.6454480886459351 -0.5189134478569031 0.2801555991172791 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6320086717605591 -0.4944190382957459 0.2845224440097809 0.6320086717605591 -0.4944190382957459 0.2845224440097809 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6607155799865723 -0.5329346060752869 0.2925914824008942 0.6325429677963257 -0.4940980672836304 0.2801555991172791 0.6325429677963257 -0.4940980672836304 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607146263122559 -0.5349977612495422 0.2801555991172791 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6325429677963257 -0.4940980672836304 0.2888893783092499 0.6325429677963257 -0.4940980672836304 0.2888893783092499 0.6460316181182861 -0.516976535320282 0.2925914824008942 0.6460316181182861 -0.516976535320282 0.2925914824008942 0.6340638399124146 -0.4931805729866028 0.2764533758163452 0.6340638399124146 -0.4931805729866028 0.2764533758163452 0.6460316181182861 -0.516976535320282 0.2764533758163452 0.6460316181182861 -0.516976535320282 0.2764533758163452 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607175469398499 -0.5298455357551575 0.2950650453567505 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607155799865723 -0.5329346060752869 0.2764533758163452 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6284593343734741 -0.4669303297996521 0.2845224440097809 0.6284593343734741 -0.4669303297996521 0.2845224440097809 0.6290544867515564 -0.4669303297996521 0.2801555991172791 0.6290544867515564 -0.4669303297996521 0.2801555991172791 0.6307517290115356 -0.4669303297996521 0.2764533758163452 0.6307517290115356 -0.4669303297996521 0.2764533758163452 0.6607219576835632 -0.5225614309310913 0.2950650453567505 0.6607219576835632 -0.5225614309310913 0.2950650453567505 0.6469043493270874 -0.5140765309333801 0.2950650453567505 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6607192754745483 -0.5262042284011841 0.2959337532520294 0.6469043493270874 -0.5140765309333801 0.2950650453567505 0.6469043493270874 -0.5140765309333801 0.2739797532558441 0.6469043493270874 -0.5140765309333801 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607175469398499 -0.5298455357551575 0.2739797532558441 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6290544867515564 -0.4669303297996521 0.2888893783092499 0.6290544867515564 -0.4669303297996521 0.2888893783092499 0.6340638399124146 -0.4931805729866028 0.2925914824008942 0.6340638399124146 -0.4931805729866028 0.2925914824008942 0.6332915425300598 -0.4669303297996521 0.2739797532558441 0.6332915425300598 -0.4669303297996521 0.2739797532558441 0.6363397836685181 -0.4918103218078613 0.2739797532558441 0.6363397836685181 -0.4918103218078613 0.2739797532558441 0.6607241034507752 -0.5194733142852783 0.2925914824008942 0.6607241034507752 -0.5194733142852783 0.2925914824008942 0.6479336619377136 -0.5106549263000488 0.2959337532520294 0.6479336619377136 -0.5106549263000488 0.2959337532520294 0.6479336619377136 -0.5106549263000488 0.2731113433837891 0.6479336619377136 -0.5106549263000488 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607192754745483 -0.5262042284011841 0.2731113433837891 0.6607219576835632 -0.5225614309310913 0.2739797532558441 0.6607219576835632 -0.5225614309310913 0.2739797532558441 0.630005955696106 -0.438325822353363 0.2845224440097809 0.630005955696106 -0.438325822353363 0.2845224440097809 0.6305613517761231 -0.4385876655578613 0.2801555991172791 0.6305613517761231 -0.4385876655578613 0.2801555991172791 0.6321433782577515 -0.439333975315094 0.2764533758163452 0.6321433782577515 -0.439333975315094 0.2764533758163452 0.6345111727714539 -0.44045090675354 0.2739797532558441 0.6345111727714539 -0.44045090675354 0.2739797532558441 0.6607251763343811 -0.5174095630645752 0.2888893783092499 0.6607251763343811 -0.5174095630645752 0.2888893783092499 0.6489629149436951 -0.5072347521781921 0.2950650453567505 0.6489629149436951 -0.5072347521781921 0.2950650453567505 0.6363397836685181 -0.4918103218078613 0.2950650453567505 0.6363397836685181 -0.4918103218078613 0.2950650453567505 0.6390239000320435 -0.4901936650276184 0.2731113433837891 0.6390239000320435 -0.4901936650276184 0.2731113433837891 0.6489629149436951 -0.5072347521781921 0.2739797532558441 0.6489629149436951 -0.5072347521781921 0.2739797532558441 0.6607241034507752 -0.5194733142852783 0.2764533758163452 0.6607241034507752 -0.5194733142852783 0.2764533758163452 0.6305613517761231 -0.4385876655578613 0.2888893783092499 0.6305613517761231 -0.4385876655578613 0.2888893783092499 0.6307517290115356 -0.4669303297996521 0.2925914824008942 0.6307517290115356 -0.4669303297996521 0.2925914824008942 0.637304425239563 -0.4417674541473389 0.2731113433837891 0.637304425239563 -0.4417674541473389 0.2731113433837891 0.6362877488136292 -0.4669303297996521 0.2731113433837891 0.6362877488136292 -0.4669303297996521 0.2731113433837891 0.6607257723808289 -0.5166845917701721 0.2845224440097809 0.6607257723808289 -0.5166845917701721 0.2845224440097809 0.6498355865478516 -0.5043348670005798 0.2925914824008942 0.6498355865478516 -0.5043348670005798 0.2925914824008942 0.6390239000320435 -0.4901936650276184 0.2959337532520294 0.6390239000320435 -0.4901936650276184 0.2959337532520294 0.6417081952095032 -0.4885762333869934 0.2739797532558441 0.6417081952095032 -0.4885762333869934 0.2739797532558441 0.6498355865478516 -0.5043348670005798 0.2764533758163452 0.6498355865478516 -0.5043348670005798 0.2764533758163452 0.6607251763343811 -0.5174095630645752 0.2801555991172791 0.6607251763343811 -0.5174095630645752 0.2801555991172791 0.6454863548278809 -0.4090263247489929 0.2845224440097809 0.6454863548278809 -0.4090263247489929 0.2845224440097809 0.645751953125 -0.4096751809120178 0.2801555991172791 0.645751953125 -0.4096751809120178 0.2801555991172791 0.646506130695343 -0.4115235209465027 0.2764533758163452 0.646506130695343 -0.4115235209465027 0.2764533758163452 0.6476355791091919 -0.4142892956733704 0.2739797532558441 0.6476355791091919 -0.4142892956733704 0.2739797532558441 0.6489681005477905 -0.4175517559051514 0.2731113433837891 0.6489681005477905 -0.4175517559051514 0.2731113433837891 0.6504192352294922 -0.5023968815803528 0.2888893783092499 0.6504192352294922 -0.5023968815803528 0.2888893783092499 0.6417081952095032 -0.4885762333869934 0.2950650453567505 0.6417081952095032 -0.4885762333869934 0.2950650453567505 0.6332915425300598 -0.4669303297996521 0.2950650453567505 0.6332915425300598 -0.4669303297996521 0.2950650453567505 0.6392834782600403 -0.4669303297996521 0.2739797532558441 0.6392834782600403 -0.4669303297996521 0.2739797532558441 0.6439837217330933 -0.4872047901153565 0.2764533758163452 0.6439837217330933 -0.4872047901153565 0.2764533758163452 0.6504192352294922 -0.5023968815803528 0.2801555991172791 0.6504192352294922 -0.5023968815803528 0.2801555991172791 0.645751953125 -0.4096751809120178 0.2888893783092499 0.645751953125 -0.4096751809120178 0.2888893783092499 0.6321433782577515 -0.439333975315094 0.2925914824008942 0.6321433782577515 -0.439333975315094 0.2925914824008942 0.6502998471260071 -0.4208146929740906 0.2739797532558441 0.6502998471260071 -0.4208146929740906 0.2739797532558441 0.6400973200798035 -0.4430851340293884 0.2739797532558441 0.6400973200798035 -0.4430851340293884 0.2739797532558441 0.6506238579750061 -0.5017167925834656 0.2845224440097809 0.6506238579750061 -0.5017167925834656 0.2845224440097809 0.6439837217330933 -0.4872047901153565 0.2925914824008942 0.6439837217330933 -0.4872047901153565 0.2925914824008942 0.6362877488136292 -0.4669303297996521 0.2959337532520294 0.6362877488136292 -0.4669303297996521 0.2959337532520294 0.6418229341506958 -0.4669303297996521 0.2764533758163452 0.6418229341506958 -0.4669303297996521 0.2764533758163452 0.6455046534538269 -0.4862898588180542 0.2801555991172791 0.6455046534538269 -0.4862898588180542 0.2801555991172791 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602405309677124 -0.4085699319839478 0.2739797532558441 0.6602405309677124 -0.4085699319839478 0.2739797532558441 0.6455046534538269 -0.4862898588180542 0.2888893783092499 0.6455046534538269 -0.4862898588180542 0.2888893783092499 0.6392834782600403 -0.4669303297996521 0.2950650453567505 0.6392834782600403 -0.4669303297996521 0.2950650453567505 0.6345111727714539 -0.44045090675354 0.2950650453567505 0.6345111727714539 -0.44045090675354 0.2950650453567505 0.6424651741981506 -0.444201648235321 0.2764533758163452 0.6424651741981506 -0.444201648235321 0.2764533758163452 0.6435200572013855 -0.4669303297996521 0.2801555991172791 0.6435200572013855 -0.4669303297996521 0.2801555991172791 0.6460384726524353 -0.4859673380851746 0.2845224440097809 0.6460384726524353 -0.4859673380851746 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.646506130695343 -0.4115235209465027 0.2925914824008942 0.646506130695343 -0.4115235209465027 0.2925914824008942 0.66024249792099 -0.4116581082344055 0.2764533758163452 0.66024249792099 -0.4116581082344055 0.2764533758163452 0.6514291167259216 -0.4235804677009583 0.2764533758163452 0.6514291167259216 -0.4235804677009583 0.2764533758163452 0.6418229341506958 -0.4669303297996521 0.2925914824008942 0.6418229341506958 -0.4669303297996521 0.2925914824008942 0.637304425239563 -0.4417674541473389 0.2959337532520294 0.637304425239563 -0.4417674541473389 0.2959337532520294 0.644047737121582 -0.4449477791786194 0.2801555991172791 0.644047737121582 -0.4449477791786194 0.2801555991172791 0.6441159844398499 -0.4669303297996521 0.2845224440097809 0.6441159844398499 -0.4669303297996521 0.2845224440097809 0.6602380871772766 -0.404927670955658 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602315306663513 -0.3954094052314758 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2888893783092499 0.6602380871772766 -0.404927670955658 0.2845224440097809 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602317690849304 -0.3961331844329834 0.2801555991172791 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602334976196289 -0.3981969952583313 0.2764533758163452 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602354645729065 -0.4012849926948547 0.2739797532558441 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6602380871772766 -0.404927670955658 0.2731113433837891 0.6435200572013855 -0.4669303297996521 0.2888893783092499 0.6435200572013855 -0.4669303297996521 0.2888893783092499 0.6400973200798035 -0.4430851340293884 0.2950650453567505 0.6400973200798035 -0.4430851340293884 0.2950650453567505 0.6476355791091919 -0.4142892956733704 0.2950650453567505 0.6476355791091919 -0.4142892956733704 0.2950650453567505 0.6521837711334229 -0.4254279732704163 0.2801555991172791 0.6521837711334229 -0.4254279732704163 0.2801555991172791 0.6446030139923096 -0.4452097415924072 0.2845224440097809 0.6446030139923096 -0.4452097415924072 0.2845224440097809 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602334976196289 -0.3981969952583313 0.2925914824008942 0.6602438688278198 -0.4137213826179504 0.2801555991172791 0.6602438688278198 -0.4137213826179504 0.2801555991172791 0.6424651741981506 -0.444201648235321 0.2925914824008942 0.6424651741981506 -0.444201648235321 0.2925914824008942 0.6489681005477905 -0.4175517559051514 0.2959337532520294 0.6489681005477905 -0.4175517559051514 0.2959337532520294 0.6524484753608704 -0.4260773062705994 0.2845224440097809 0.6524484753608704 -0.4260773062705994 0.2845224440097809 0.644047737121582 -0.4449477791786194 0.2888893783092499 0.644047737121582 -0.4449477791786194 0.2888893783092499 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602442264556885 -0.4144457578659058 0.2845224440097809 0.6602442264556885 -0.4144457578659058 0.2845224440097809 0.6502998471260071 -0.4208146929740906 0.2950650453567505 0.6502998471260071 -0.4208146929740906 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6602354645729065 -0.4012849926948547 0.2950650453567505 0.6521837711334229 -0.4254279732704163 0.2888893783092499 0.6521837711334229 -0.4254279732704163 0.2888893783092499 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602438688278198 -0.4137213826179504 0.2888893783092499 0.6602438688278198 -0.4137213826179504 0.2888893783092499 0.6514291167259216 -0.4235804677009583 0.2925914824008942 0.6514291167259216 -0.4235804677009583 0.2925914824008942 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602380871772766 -0.404927670955658 0.2959337532520294 0.6602405309677124 -0.4085699319839478 0.2950650453567505 0.6602405309677124 -0.4085699319839478 0.2950650453567505 0.66024249792099 -0.4116581082344055 0.2925914824008942 0.66024249792099 -0.4116581082344055 0.2925914824008942</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"264\" source=\"#ID70\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID67\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID71\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"792\">-0.705751612624297 -0.6736031467969834 0.2194845368207189 -0.723249639387585 -0.6905851167376961 -0.001468218686374701 -0.8075908669576146 -0.5897411418470161 -0.001541823474401379 0.8075908669576146 0.5897411418470161 0.001541823474401379 0.723249639387585 0.6905851167376961 0.001468218686374701 0.705751612624297 0.6736031467969834 -0.2194845368207189 0.9999998549764383 -0.0005385602124681323 1.798811497296893e-010 0.9999998619819208 -0.0005253479946148091 6.754579145190894e-006 0.999999813854024 -0.0006101572892038408 -2.340183956586328e-011 -0.999999813854024 0.0006101572892038408 2.340183956586328e-011 -0.9999998619819208 0.0005253479946148091 -6.754579145190894e-006 -0.9999998549764383 0.0005385602124681323 -1.798811497296893e-010 -0.7832090569802331 -0.563885812854759 0.2619472525629185 0.7832090569802331 0.563885812854759 -0.2619472525629185 -0.7817598749353603 -0.5645085171358366 -0.26491816098967 0.7817598749353603 0.5645085171358366 0.26491816098967 0.9999998411775229 -0.0005634720393395381 -1.200790474749005e-005 -0.9999998411775229 0.0005634720393395381 1.200790474749005e-005 0.9999998619817377 -0.0005253483505001034 -6.754000790909341e-006 -0.9999998619817377 0.0005253483505001034 6.754000790909341e-006 -0.9527376244220858 -0.303793227155968 -0.0008331534811120218 0.9527376244220858 0.303793227155968 0.0008331534811120218 -0.6459756364898233 -0.6063525859232831 0.4637370144874305 0.6459756364898233 0.6063525859232831 -0.4637370144874305 -0.9154121483802826 -0.2904213362317121 -0.2787042268412563 0.9154121483802826 0.2904213362317121 0.2787042268412563 -0.7111187578705497 -0.6677746268057927 -0.2199708162439523 0.7111187578705497 0.6677746268057927 0.2199708162439523 0.9999998580605745 -0.0005324296017061601 -1.993866258511989e-005 -0.9999998580605745 0.0005324296017061601 1.993866258511989e-005 0.9999998411772466 -0.0005634725222285433 1.200826317338047e-005 -0.9999998411772466 0.0005634725222285433 -1.200826317338047e-005 -0.9168306842379277 -0.2874967770350575 0.277068763367991 0.9168306842379277 0.2874967770350575 -0.277068763367991 -0.6899817838723537 -0.4765390401152086 0.544826285315237 0.6899817838723537 0.4765390401152086 -0.544826285315237 -0.7842961867475975 -0.2413048357223482 -0.5715343101776026 0.7842961867475975 0.2413048357223482 0.5715343101776026 -0.6884771646026739 -0.4767686045504761 -0.5465262038874754 0.6884771646026739 0.4767686045504761 0.5465262038874754 0.9999998166802554 -0.0006055076015476713 5.482529811520003e-021 -0.9999998166802554 0.0006055076015476713 -5.482529811520003e-021 -0.4938391524225622 -0.4499982720094807 0.7440594376278327 0.4938391524225622 0.4499982720094807 -0.7440594376278327 -0.6578123227561983 -0.5980467967039984 -0.4578460188558833 0.6578123227561983 0.5980467967039984 0.4578460188558833 0.9999998580600193 -0.0005324306374811512 1.993885123911218e-005 -0.9999998580600193 0.0005324306374811512 -1.993885123911218e-005 -0.9993172590390673 -0.03694610674034449 3.135883035788179e-005 0.9993172590390673 0.03694610674034449 -3.135883035788179e-005 -0.960465965536488 -0.03630975369366535 -0.2760194392298613 0.960465965536488 0.03630975369366535 0.2760194392298613 -0.8205875269300812 -0.03194355955907711 -0.5706274788769542 0.8205875269300812 0.03194355955907711 0.5706274788769542 0.7939095379223065 0.1969112463909028 0.5752682910093089 -0.7939095379223065 -0.1969112463909028 -0.5752682910093089 -0.4651506096546429 -0.2948383542682578 0.8346887175410359 -0.1387519338525277 -0.1243833632592113 0.9824849514351408 0.1387519338525277 0.1243833632592113 -0.9824849514351408 0.4651506096546429 0.2948383542682578 -0.8346887175410359 -0.4688103618416526 -0.2943564121356371 -0.8328091901897661 0.4688103618416526 0.2943564121356371 0.8328091901897661 -0.5129314289867056 -0.4461939983816099 -0.7333568469482561 0.5129314289867056 0.4461939983816099 0.7333568469482561 0.9999998166802563 -0.0006055075999022886 -1.096546068823298e-020 -0.9999998166802563 0.0006055075999022886 1.096546068823298e-020 -0.9604972668016695 -0.03495668559621632 0.276085187213385 0.9604972668016695 0.03495668559621632 -0.276085187213385 -0.7866645316355505 -0.2363439708880585 0.570351156824885 0.7866645316355505 0.2363439708880585 -0.570351156824885 -0.5130348197170416 -0.02081339521567967 -0.8581154213376535 0.5130348197170416 0.02081339521567967 0.8581154213376535 -0.4995435721539706 -0.1430177528752383 -0.8544016279725641 0.4995435721539706 0.1430177528752383 0.8544016279725641 0.9000285742012102 0.3063376208368318 0.3100093993435784 -0.9000285742012102 -0.3063376208368318 -0.3100093993435784 -0.03636807467283153 -0.006606222029889989 0.999316626988205 0.03636807467283153 0.006606222029889989 -0.999316626988205 -0.04812466771604267 -0.007954144418886417 -0.9988096655238093 0.04812466771604267 0.007954144418886417 0.9988096655238093 -0.1526086015993849 -0.1285731755270082 -0.9798875207148938 0.1526086015993849 0.1285731755270082 0.9798875207148938 0.7996254711754621 0.1929644709936232 -0.5686508760052793 -0.7996254711754621 -0.1929644709936232 0.5686508760052793 -0.9631114801070717 0.2691022468341752 0.0005075773480541925 0.9631114801070717 -0.2691022468341752 -0.0005075773480541925 -0.9262260303536134 0.2559807553453563 -0.2767294591983437 0.9262260303536134 -0.2559807553453563 0.2767294591983437 -0.7941112433644082 0.2126601577859673 -0.5693531333475573 0.7941112433644082 -0.2126601577859673 0.5693531333475573 -0.5072819859800244 0.1267210860462836 -0.8524123139956467 0.5072819859800244 -0.1267210860462836 0.8524123139956467 0.937110602165385 0.3235995292060994 0.1307939754224954 -0.937110602165385 -0.3235995292060994 -0.1307939754224954 0.4683145507705584 0.2666103025462021 0.8423778416558645 -0.4683145507705584 -0.2666103025462021 -0.8423778416558645 -0.5006817121148732 -0.1383947502935547 0.854496761986202 0.5006817121148732 0.1383947502935547 -0.854496761986202 -0.02916676532904535 -0.002607048449104029 -0.9995711595972666 0.02916676532904535 0.002607048449104029 0.9995711595972666 0.4686365287356026 0.2634175385470021 -0.8432028251378688 -0.4686365287356026 -0.2634175385470021 0.8432028251378688 0.9063167055109044 0.2979834863464362 -0.2996595921653166 -0.9063167055109044 -0.2979834863464362 0.2996595921653166 -0.9256385792573044 0.2571014635508372 0.2776545660178067 0.9256385792573044 -0.2571014635508372 -0.2776545660178067 -0.8206331206288936 -0.02964916322471281 0.5706857352755176 0.8206331206288936 0.02964916322471281 -0.5706857352755176 -0.03606796853137018 0.003069262570959986 -0.9993446258790261 0.03606796853137018 -0.003069262570959986 0.9993446258790261 -0.01386625369199847 -0.001056049480266805 -0.9999033012086941 0.01386625369199847 0.001056049480266805 0.9999033012086941 0.9469315112745416 0.3214314072292765 0.001601062746909136 -0.9469315112745416 -0.3214314072292765 -0.001601062746909136 0.7641065348004036 0.3901442817233559 0.5137398591835036 -0.7641065348004036 -0.3901442817233559 -0.5137398591835036 -0.0253409147764243 -0.002224590617548376 0.9996763922564534 0.0253409147764243 0.002224590617548376 -0.9996763922564534 0.4738172194062332 0.1197701700090635 -0.8724404558307378 -0.4738172194062332 -0.1197701700090635 0.8724404558307378 0.7711373476771701 0.3842751232355434 -0.5076217299128626 -0.7711373476771701 -0.3842751232355434 0.5076217299128626 0.940058892599263 0.3172032298953741 -0.1251854200336039 -0.940058892599263 -0.3172032298953741 0.1251854200336039 -0.7886999360348029 0.6147767214633088 0.001411965128137241 0.7886999360348029 -0.6147767214633088 -0.001411965128137241 -0.7623290759492826 0.5848091274625029 -0.2772231310674836 0.7623290759492826 -0.5848091274625029 0.2772231310674836 -0.6631486409280196 0.4874613557369795 -0.5679923473942115 0.6631486409280196 -0.4874613557369795 0.5679923473942115 -0.4363268446364034 0.2955463160935649 -0.8498654362269137 0.4363268446364034 -0.2955463160935649 0.8498654362269137 -0.0295904739926534 0.007287631111918657 -0.9995355392789527 0.0295904739926534 -0.007287631111918657 0.9995355392789527 0.8781779081951024 0.4175185727202028 0.2334133736351856 -0.8781779081951024 -0.4175185727202028 -0.2334133736351856 0.4800981526433935 0.1133023647646291 0.8698668507117304 -0.4800981526433935 -0.1133023647646291 -0.8698668507117304 -0.5131310993602707 -0.0187526802328627 0.8581053617437688 0.5131310993602707 0.0187526802328627 -0.8581053617437688 0.4952743046220077 0.02034728321867889 -0.8684983311709963 -0.4952743046220077 -0.02034728321867889 0.8684983311709963 0.7972622849144865 0.1792769318503911 -0.5763962445742011 -0.7972622849144865 -0.1792769318503911 0.5763962445742011 0.8823867396385429 0.41265543867549 -0.2260732859972651 -0.8823867396385429 -0.41265543867549 0.2260732859972651 -0.7595042982554835 0.5870603968540626 0.280202268686383 0.7595042982554835 -0.5870603968540626 -0.280202268686383 -0.7932577613415092 0.2145816981708134 0.5698217430754876 0.7932577613415092 -0.2145816981708134 -0.5698217430754876 0.4353447705095689 -0.2671658094731063 -0.8597077183779092 -0.4353447705095689 0.2671658094731063 0.8597077183779092 0.4665169607832366 -0.1084626786762199 -0.8778369852290067 -0.4665169607832366 0.1084626786762199 0.8778369852290067 0.9085269655623637 0.4178115441467183 0.003502345468202378 -0.9085269655623637 -0.4178115441467183 -0.003502345468202378 0.8008465080303187 0.1689211539185453 0.5745524469832773 -0.8008465080303187 -0.1689211539185453 -0.5745524469832773 -0.01394041370417603 -0.0009874344792977709 0.9999023401507297 0.01394041370417603 0.0009874344792977709 -0.9999023401507297 0.81484435028947 0.03368710526116375 -0.5787001501126944 -0.81484435028947 -0.03368710526116375 0.5787001501126944 0.9422159256443544 0.1931516140816549 -0.2737181094480306 -0.9422159256443544 -0.1931516140816549 0.2737181094480306 -0.6804146158758695 0.7328252533849206 0.00176025674830374 0.6804146158758695 -0.7328252533849206 -0.00176025674830374 -0.6618880202834722 0.7123564045500399 -0.2333508120872217 0.6618880202834722 -0.7123564045500399 0.2333508120872217 -0.6005935287410511 0.633267848924303 -0.4881180643585715 0.6005935287410511 -0.633267848924303 0.4881180643585715 -0.4501576861779418 0.4575811199314518 -0.7667969589514554 0.4501576861779418 -0.4575811199314518 0.7667969589514554 -0.1180449525871773 0.1181456463689562 -0.9859548647949118 0.1180449525871773 -0.1181456463689562 0.9859548647949118 0.7873239455630373 -0.2010483539872131 -0.5828383687628018 -0.7873239455630373 0.2010483539872131 0.5828383687628018 0.9431346571913443 0.1855647482284393 0.2757947472659363 -0.9431346571913443 -0.1855647482284393 -0.2757947472659363 0.4953154525289081 0.01781029697467817 0.8685305957810332 -0.4953154525289081 -0.01781029697467817 -0.8685305957810332 -0.5073106571574744 0.1285893059795506 0.8521154191317917 0.5073106571574744 -0.1285893059795506 -0.8521154191317917 0.7913989160805892 -0.1706694853308344 -0.5869920633223047 -0.7913989160805892 0.1706694853308344 0.5869920633223047 0.9593414664545559 0.03890179671757865 -0.2795542898132069 -0.9593414664545559 -0.03890179671757865 0.2795542898132069 0.9816075400361064 0.1908982818473136 0.00211738801526375 -0.9816075400361064 -0.1908982818473136 -0.00211738801526375 -0.668592732933499 0.7058284386373456 0.2340725799389628 0.668592732933499 -0.7058284386373456 -0.2340725799389628 -0.658648055556712 0.4905608607123966 0.5705548009161566 0.658648055556712 -0.4905608607123966 -0.5705548009161566 0.8945237521063432 -0.3128950493248178 -0.319255297568591 -0.8945237521063432 0.3128950493248178 0.319255297568591 0.7273308374623275 -0.4107140561815599 -0.5498216228298409 -0.7273308374623275 0.4107140561815599 0.5498216228298409 0.8149356869034029 0.03016825800147217 0.5787656714253494 -0.8149356869034029 -0.03016825800147217 -0.5787656714253494 -0.03815079619648202 0.003415148224166548 0.9992661574936786 0.03815079619648202 -0.003415148224166548 -0.9992661574936786 0.9388012737182524 -0.1951675219529285 -0.2838341185265438 -0.9388012737182524 0.1951675219529285 0.2838341185265438 0.9992277367336863 0.03929287538264983 -9.286468785953477e-006 -0.9992277367336863 -0.03929287538264983 9.286468785953477e-006 0.9999997700670603 0.0006781340773516428 1.091712874520978e-011 0.999999741515791 0.0007190041331446171 -1.186517879136609e-006 0.9999997627535195 0.0006888344536469859 -5.398966828881975e-010 -0.9999997627535195 -0.0006888344536469859 5.398966828881975e-010 -0.999999741515791 -0.0007190041331446171 1.186517879136609e-006 -0.9999997700670603 -0.0006781340773516428 -1.091712874520978e-011 0.9999997415162626 0.0007190034793928838 1.185225566045566e-006 -0.9999997415162626 -0.0007190034793928838 -1.185225566045566e-006 0.9999997591493971 0.0006939736981349089 1.008237387055068e-005 -0.9999997591493971 -0.0006939736981349089 -1.008237387055068e-005 0.9999997616215287 0.0006904002692460185 -1.021538954553776e-005 -0.9999997616215287 -0.0006904002692460185 1.021538954553776e-005 0.9999997581675503 0.0006954601648648084 -1.095769135979897e-020 -0.9999997581675503 -0.0006954601648648084 1.095769135979897e-020 0.9594300725529456 0.03651680147267897 0.279571921142404 -0.9594300725529456 -0.03651680147267897 -0.279571921142404 0.4640834765258798 -0.1107483895265082 0.8788408963133987 -0.4640834765258798 0.1107483895265082 -0.8788408963133987 -0.4349383883559403 0.298045747182913 0.8497042608581626 0.4349383883559403 -0.298045747182913 -0.8497042608581626 0.8509522788102882 -0.4576708245757746 -0.2577161918073987 -0.8509522788102882 0.4576708245757746 0.2577161918073987 0.9793566160984792 -0.2021367815241144 -0.001157609264210023 -0.9793566160984792 0.2021367815241144 0.001157609264210023 0.9999997591488229 0.0006939745151300152 -1.008309259434636e-005 -0.9999997591488229 -0.0006939745151300152 1.008309259434636e-005 -0.6150886461380279 0.6241615889410819 0.481755402961536 0.6150886461380279 -0.6241615889410819 -0.481755402961536 0.9355903546303108 -0.3265017138224018 -0.134414728336458 -0.9355903546303108 0.3265017138224018 0.134414728336458 0.7902373545678373 -0.1746497282835001 0.5873860705329383 -0.7902373545678373 0.1746497282835001 -0.5873860705329383 -0.03727582289811701 0.00904632410419585 0.9992640677255787 0.03727582289811701 -0.00904632410419585 -0.9992640677255787 0.8837575014651523 -0.467937238920978 -0.002723790572529869 -0.8837575014651523 0.467937238920978 0.002723790572529869 0.9385893356447606 -0.1982001301868833 0.2824301106607252 -0.9385893356447606 0.1982001301868833 -0.2824301106607252 0.9999997616211637 0.0006904007994159351 1.021529299323952e-005 -0.9999997616211637 -0.0006904007994159351 -1.021529299323952e-005 0.9471939711829661 -0.3206513593284936 -0.002507332333696746 -0.9471939711829661 0.3206513593284936 0.002507332333696746 0.4270453468344068 -0.2684592106674866 0.8634592775312981 -0.4270453468344068 0.2684592106674866 -0.8634592775312981 -0.4729763080059392 0.4540909037883582 0.7550462655769797 0.4729763080059392 -0.4540909037883582 -0.7550462655769797 0.8504098207762262 -0.4605667194708368 0.2543254482807772 -0.8504098207762262 0.4605667194708368 -0.2543254482807772 0.9999997581675503 0.0006954601649510948 2.191458151038304e-020 -0.9999997581675503 -0.0006954601649510948 -2.191458151038304e-020 0.9399882881102288 -0.3171041366911378 0.1259642199553888 -0.9399882881102288 0.3171041366911378 -0.1259642199553888 0.7241574605236903 -0.4145294511506577 0.5511454494927945 -0.7241574605236903 0.4145294511506577 -0.5511454494927945 -0.1340835029535357 0.124013334904789 0.983179692122199 0.1340835029535357 -0.124013334904789 -0.983179692122199 0.7948251512710979 -0.1957764209566542 0.5743906091713888 -0.7948251512710979 0.1957764209566542 -0.5743906091713888 0.9035807440994651 -0.3012260155692836 0.3046386817804174 -0.9035807440994651 0.3012260155692836 -0.3046386817804174</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"264\" source=\"#ID71\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID69\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID72\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1336\">8.434630368164704 2.353360081779203 8.439855099803374 2.318780785786409 8.216371074199902 2.318780785786409 -5.353662840570794 2.238346445495049 -5.34641849052734 2.272699661990973 -5.258483149757913 2.238346445495049 8.428908305771554 2.372275948504826 8.210678454353849 2.337581846710967 8.207148906956121 2.372275948504826 8.216371074199902 2.099201542017305 8.439855099803374 2.099201542017305 8.212874042292729 2.064506099013996 -5.346578877313325 2.272445596198183 -5.325947323394589 2.301568815064706 -5.258643536548753 2.238092379694571 -5.34641849052734 2.203787490769093 -5.353662840570794 2.238140003930209 -5.258483149757913 2.238140003930209 7.596583364577615 2.55171847021232 7.601656486858115 2.517142999896679 7.317236541932582 2.517142999896679 8.413950709713538 2.465525301638435 8.428908305771554 2.434330334682621 8.207148906956121 2.434330334682621 7.586893672412469 1.929008386505678 7.581798412101595 1.894435629635499 7.302094057981144 1.894435629635499 8.43415938311553 2.12514351646369 8.428908305771554 2.090567388980215 8.207148906956121 2.090567388980215 -5.325369974300813 2.30194764879499 -5.294479264856308 2.321406344066429 -5.258066187507247 2.238471213390559 -5.325947319466017 2.174917397892478 -5.346578873384753 2.204041554538746 -5.258643532620178 2.238394067707548 7.581798412101595 2.619588947825986 7.302476555747747 2.584888879834124 7.302094057981145 2.619588947825986 7.317236541932579 1.850354270639173 7.601656486858113 1.850354270639173 7.316881791826323 1.815654716533251 8.3955569580953 2.50250886325613 8.18899985985553 2.470326219360448 8.178697842914264 2.50250886325613 7.302094057981146 0.855743874384147 7.581798412101595 0.855743874384147 7.300971110964643 0.8234534403100693 8.207148906956121 1.617093440555834 8.428908305771554 1.617093440555834 8.197117569523337 1.584857075977602 -5.258905246021844 2.238243226210277 -5.29531832366427 2.321178356806438 -5.258905246021844 2.328012192249299 8.395556958095302 2.393997464238216 8.178697842914264 2.393997464238216 8.372838650853405 2.41948796271577 8.410732696733057 1.717467499264168 8.3955569580953 1.686336924306703 8.178697842914264 1.686336924306703 -5.294479267695164 2.155079403421889 -5.325369977139668 2.1745385675832 -5.258066190346099 2.238015237432566 5.710314858466266 2.828716964504237 5.712813940303199 2.794071325224616 5.43564487805588 2.794071325224616 7.567306430558848 3.088475496532702 7.581798412101595 3.057307671632219 7.302094057981145 3.057307671632219 5.708851787152099 1.644395658947628 5.706348692416967 1.609750896345491 5.432440777234132 1.609750896345491 5.693943675180602 0.2308084042307124 5.686744761844247 0.1990061827887031 5.422161061289249 0.1990061827887031 7.535905530802523 1.112286182196852 7.521223456598177 1.081172584512499 7.254863636322893 1.081172584512499 -5.257175951646648 2.238243226210277 -5.257175951646648 2.328012192249299 -5.220747967071105 2.321178356806438 8.33916397760588 1.883711615823397 8.129529547857697 1.883711615823397 8.311784926989073 1.903794973188536 8.145593213807361 2.42019245782121 8.129529547857695 2.448237742633388 8.339163977605878 2.448237742633388 8.163266938210644 0.7538489312785419 8.178697842914264 0.7821135543431498 8.3955569580953 0.7821135543431498 8.129529547857697 0.9243288884928269 8.362387450447192 0.949536456620966 8.33916397760588 0.9243288884928271 -5.258905246021844 2.148475901285807 -5.29531832366427 2.155307392279307 5.432440777234132 2.846946774123885 5.706348692416967 2.846946774123885 5.431682793373643 2.812281116825409 5.435644878055882 1.624304963908791 5.712813940303199 1.624304963908791 5.436407010946693 1.589640059902782 7.521223456598179 3.247101335524373 7.256226904838707 3.214817473372052 7.254863636322895 3.247101335524373 5.432440777234131 0.1682208939942272 5.706348692416967 0.168220893994227 5.434602378679044 0.1362272820838394 5.425340449899831 -1.689216044294241 5.422161061289249 -1.661438381831966 5.686744761844248 -1.661438381831966 7.252848146393001 -0.5270631398770428 7.254863636322892 -0.4985518232093718 7.521223456598176 -0.4985518232093723 -5.257390617861971 2.23830157544322 -5.220962633305634 2.321236706044601 -5.190081459393857 2.30177801079064 -8.260842066902697 -0.4796763149142531 -8.059533172577172 -0.4796763149142531 -8.232721767073175 -0.4991327960577887 8.079424579263606 1.959442771916687 8.05953317257717 1.983772065631482 8.260842066902697 1.983772065631481 7.499236753965093 3.533515822434401 7.521223456598177 3.508078316264925 7.254863636322893 3.508078316264925 7.439999196691409 -0.1271001322564012 7.417539771395165 -0.1522811294232672 7.171086101027779 -0.1522811294232672 8.110574073075688 -0.5489996162952336 8.129529547857697 -0.5242128766259669 8.339163977605882 -0.5242128766259669 8.05953317257717 -0.5424206148045283 8.288956913940631 -0.5229773532910994 8.260842066902697 -0.5424206148045279 -5.257175951646648 2.148475901285807 -5.220747967071105 2.155307392279307 4.322864625052438 2.944894745205068 4.32318594951872 2.910224881472888 4.036723057722867 2.910224881472888 5.699185441715321 3.897729522860127 5.706348692416967 3.865923177062649 5.432440777234131 3.865923177062649 4.329062854421077 1.525740662158354 4.32874688218239 1.491071464894376 4.044919952782598 1.491071464894376 4.346555817097767 -0.1306287692369947 4.345701005524085 -0.1626604812616511 4.069386787927182 -0.1626604812616511 4.374144530264028 -2.151847645849272 4.372975942564231 -2.179722527662006 4.107900982830067 -2.179722527662006 5.666277883087392 -1.583331166730941 5.655444809482778 -1.61058523539394 5.404784526157568 -1.61058523539394 -5.257824474759958 2.238586261658011 -5.190515316496215 2.302062697139542 -5.169877801644873 2.27293947822191 -8.143361574613978 0.8413655801904392 -8.167849371996281 0.8658136570680978 -7.974670137151378 0.865813657068098 -7.995540330570239 -0.8630370076530344 -7.974670137151378 -0.8868406056614312 -8.167849371996281 -0.8868406056614312 7.417539771395168 3.483727300830921 7.171086101027782 3.483727300830921 7.39103908120253 3.503781361879716 7.173709694356354 3.648842704203838 7.171086101027782 3.677323068379556 7.417539771395168 3.677323068379556 7.167986007454825 -2.20633963742961 7.171086101027779 -2.180877764144669 7.417539771395165 -2.180877764144669 7.045549963493105 -2.116993011529345 7.295981151505877 -2.097581142588419 7.26871964559047 -2.116993011529345 -8.039652436742212 1.957654011907818 -8.059533172577169 1.933332583847781 -8.260842066902695 1.933332583847781 -7.974670137151378 2.295338343142578 -8.196734695214555 2.276589091912657 -8.167849371996281 2.295338343142578 -5.220962632578972 2.155249043451731 -5.257390617135311 2.23818487738792 -5.190081458667196 2.174708207595564 4.044919952782597 2.916697151235225 4.328746882182389 2.916697151235225 4.042600078796272 2.882054041348514 4.323185949518719 1.556336739814635 4.039037810754717 1.521694115390833 4.036723057722867 1.556336739814635 5.422161061289248 3.943015595733636 5.686744761844247 3.943015595733636 5.420036419983333 3.911021305348012 4.32874688218239 -0.03934716925420752 4.051532611608242 -0.07113567801260858 4.044919952782598 -0.03934716925420708 4.345701005524084 -2.041487688672124 4.079349393796518 -2.068716198387755 4.069386787927182 -2.041487688672124 4.107900982830065 -4.294279042810013 4.372975942564231 -4.294279042810013 4.119767316885249 -4.317723284416905 5.408428166518827 -3.738151290697665 5.404784526157568 -3.713779059006903 5.655444809482778 -3.713779059006903 -5.257531821098262 2.23812262282773 -5.169585147941832 2.272475839326124 -5.162335432618291 2.23812262282773 -8.058467359513546 1.590060425611151 -8.07521500203085 1.620689764464635 -7.888739162701234 1.620689764464635 -7.907185337553728 0.4013047780946442 -7.88873916270123 0.3741826951527294 -8.075215002030847 0.3741826951527294 -7.268719645590471 -2.053150487784164 -7.045549963493105 -2.053150487784164 -7.241471017322947 -2.072558574438991 7.049656255600592 3.557643136187863 7.045549963493103 3.583017370243692 7.268719645590469 3.583017370243692 5.675999108017063 4.796796616406089 5.686744761844247 4.769521473815643 5.422161061289248 4.769521473815644 5.380593695362149 -3.720189074757867 5.627751146083146 -3.696716872328327 5.614830603089938 -3.720189074757867 -7.041437280987505 3.559881852951684 -7.045549963493105 3.534504664393194 -7.268719645590471 3.534504664393194 -6.879131975953596 3.872325978238262 -7.107471800469083 3.853729175174603 -7.07932470356956 3.872325978238261 -7.956974743609803 2.699247075170101 -7.974670137151378 2.671816843440934 -8.167849371996281 2.671816843440934 -8.100272364420025 2.813405133895433 -8.075215002030847 2.837493791448359 -7.88873916270123 2.837493791448359 -5.190515307563639 2.174423518224927 -5.257824465827388 2.237900188151389 -5.169877792712301 2.203547674922303 0.9321896995554874 3.084759604088484 0.9324691034587712 3.050069154998214 0.6010926834848163 3.050069154998214 4.32784579960887 4.236534059576869 4.32874688218239 4.204503985072105 4.044919952782598 4.204503985072104 0.950062449921591 1.383032588066094 0.949797214608149 1.34834276664203 0.6231956013640261 1.34834276664203 1.003416473405784 -0.564888771331991 1.002788032144056 -0.5970963054434877 0.689784832516474 -0.5970963054434877 1.092339209865707 -2.862877208302275 1.091705377008492 -2.891206797268985 0.799014424632421 -2.891206797268985 1.21477090199698 -5.192994789713625 1.214511035774509 -5.218228300925035 0.9457283423114732 -5.218228300925036 4.409831302193775 -4.322735542825156 4.408621707159075 -4.347257289987124 4.156787646307723 -4.347257289987124 -5.169585147941832 2.204011317694693 -5.257531821098262 2.238363830858279 -5.162335432618291 2.238363830858279 -7.999157219777652 2.042518948965083 -8.005130751859149 2.077023827768453 -7.823033792135997 2.077023827768453 -8.00513075185915 1.31362032127005 -7.835707978970907 1.345278800213265 -7.823033792135998 1.31362032127005 -7.05545941398606 -0.164176067462128 -7.079324703569558 -0.1398098589040872 -6.879131975953596 -0.1398098589040872 -6.884479357744759 -2.534560429404811 -6.879131975953596 -2.559795433399359 -7.07932470356956 -2.559795433399359 5.655444809482778 4.978600663649545 5.404784526157568 4.978600663649546 5.642662340147106 5.002120284121173 5.401695898015736 4.808656846371256 5.404784526157568 4.836440516700103 5.655444809482777 4.836440516700103 -5.380593695362148 4.962171502045569 -5.614830603089938 4.962171502045569 -5.384093045167586 4.986553189531894 -5.351938677244748 5.017996387150544 -5.582837128882106 4.994576258487117 -5.56975153141031 5.017996387150543 -6.874595950601089 3.916023019294676 -6.879131975953595 3.887689986660023 -7.079324703569558 3.887689986660023 -6.897904037561943 3.810508318163908 -6.873283332082826 3.834405261392366 -6.692262931049166 3.834405261392366 -7.888739162701233 2.724661003134386 -8.075215002030848 2.724661003134386 -7.876414230061255 2.756405562862807 -8.022138934044577 2.667683772496266 -8.00513075185915 2.698225030675403 -7.823033792135997 2.698225030675403 0.6231956013640233 2.987301201786206 0.9497972146081468 2.987301201786206 0.6186869138979473 2.952689308328709 0.9324691034587718 1.488731301058679 0.6055889575248274 1.454119106364988 0.6010926834848163 1.488731301058679 4.069386787927182 4.167419738683337 4.345701005524084 4.167419738683337 4.062729945287959 4.135637796654536 0.949797214608149 -0.2493085088309403 0.6360503119188737 -0.2808136654129828 0.6231956013640255 -0.2493085088309403 0.689784832516474 -2.4607913856797 1.002788032144056 -2.4607913856797 0.7091761562947707 -2.487216522236849 0.7990144246324216 -5.04666531159668 1.091705377008492 -5.04666531159668 0.8222001987001021 -5.068632328092367 -0.9457283423114715 6.394951207259644 -1.214511035774507 6.394951207259644 -0.9693463955966802 6.41663285742608 -4.156787646307723 5.552627698955143 -4.408621707159075 5.552627698955144 -4.168826186517451 5.576018849749032 -7.984960319107533 2.382495153753913 -7.978954487231514 2.416995862268491 -7.798376612851471 2.416995862268491 -7.978954487231514 1.966439049599448 -7.802869053634529 2.001063721989028 -7.798376612851471 1.966439049599448 -6.856830818500603 1.084050530930478 -6.873283332082827 1.114614485837111 -6.692262931049166 1.114614485837111 -6.697884869256301 -0.9582713887241099 -6.692262931049166 -0.9864833759891449 -6.873283332082827 -0.9864833759891449 -5.614830603089938 -3.667689435313882 -5.380593695362148 -3.667689435313881 -5.601902573413683 -3.691164337909785 5.377093788557139 4.98813735430019 5.380593695362149 5.012523274922119 5.614830603089938 5.01252327492212 4.345701005524084 5.287360168805004 4.069386787927182 5.287360168805004 4.344421835165308 5.315231718444743 -4.449546056620505 5.523364437354302 -4.448524202508265 5.547887865422255 -4.209933402218356 5.547887865422255 -5.351938677244748 4.785846990777218 -5.56975153141031 4.785846990777218 -5.354765627823066 4.813646201701512 -5.538309584632483 4.761696983986634 -5.527083909871697 4.788854112455638 -5.323191108608555 4.788854112455638 -6.692262931049166 3.477831458554068 -6.873283332082827 3.477831458554069 -6.688521608741516 3.509995270680501 -6.720266959877879 3.164917477131315 -6.703434061204358 3.195353879732647 -6.535032963733198 3.195353879732646 -7.823033792135997 2.435604219488475 -8.005130751859149 2.435604219488475 -7.818584992145309 2.470231680986677 -1.96709306637855 3.077400285787161 -2.167801986871375 3.077400285787161 -1.964642189484361 3.112139973866311 0.9490457595910196 4.646912491789276 0.9497972146081496 4.614707436536613 0.6231956013640266 4.614707436536613 -1.918008717777247 1.315220598284153 -2.116263790567739 1.315220598284153 -1.920500958376179 1.349957769617933 -1.772230843885125 -0.6784430312662949 -1.963551749588468 -0.6784430312662946 -1.779694261781554 -0.6458798048266266 -1.543216962057551 -2.921635989955523 -1.531212837937363 -2.950650003716382 -1.712284373429763 -2.950650003716381 -1.222507394185468 -5.188411095530244 -1.207044158877362 -5.214242382180978 -1.376271851481387 -5.214242382180978 0.8485782902677852 6.390061095284668 0.8316396263229159 6.415314516155797 0.9893581626293579 6.415314516155797 -1.361941693243071 6.362733172750426 -1.362288982534341 6.387967241494827 -1.117326923650519 6.387967241494827 -6.697526395585393 1.892624381144682 -6.703434061204357 1.927117271470286 -6.535032963733198 1.927117271470286 -6.703434061204357 0.4832986325845745 -6.539345332253292 0.5154173203434307 -6.535032963733198 0.4832986325845745 -5.558655482375348 -1.571083272452359 -5.56975153141031 -1.543893531995541 -5.351938677244748 -1.543893531995541 -5.348603797862836 -3.730569693276149 -5.351938677244746 -3.754966297982173 -5.56975153141031 -3.754966297982173 4.372975942564231 5.588690154963504 4.107900982830067 5.588690154963505 4.371597365049192 5.613207036215486 4.107900982830066 5.25623854649248 4.372975942564231 5.25623854649248 4.097832937811947 5.229034383492466 -4.448524202508266 5.136112743423935 -4.220284363397968 5.163250715910081 -4.209933402218357 5.136112743423935 -4.486871269309131 5.178815212013592 -4.48615398637004 5.206697524035649 -4.258776450555414 5.206697524035649 -5.323191108608555 3.899793911100535 -5.527083909871697 3.899793911100535 -5.324989662746323 3.931801033582214 -5.503371109474338 3.845397623584101 -5.495820513932753 3.877144935837415 -5.301210651361618 3.877144935837415 -6.535032963733196 2.696133322235575 -6.703434061204355 2.696133322235575 -6.533506043351181 2.730813638015173 -6.641860146900234 2.531084909783068 -6.635902379084699 2.565571766215482 -6.471868518083324 2.565571766215482 -1.918008717777247 2.956182252046366 -2.121205890158615 2.921578102403865 -2.11626379056774 2.956182252046366 -1.967093066378549 1.51948075221779 -2.162893322330048 1.484874355808419 -2.167801986871373 1.519480752217791 0.6897848325164744 4.407826049212817 1.002788032144057 4.407826049212817 0.6768229489005453 4.376348946068332 -1.918008717777245 -0.1565365247956884 -2.102179364039371 -0.1879855502119529 -2.116263790567738 -0.1565365247956884 -1.963551749588464 -2.295202401859097 -1.772230843885123 -2.295202401859097 -1.942056306671609 -2.321333474487419 -1.712284373429763 -4.909224007543397 -1.531212837937362 -4.909224007543397 -1.686141419975853 -4.930315929223952 1.376271851481388 6.369227335455214 1.207044158877364 6.369227335455214 1.349117506683136 6.389508423958248 0.9893581626293585 5.441362297022207 0.8316396263229164 5.441362297022207 0.9653949506273185 5.466130793660186 -1.362288982534343 5.602639499088345 -1.137768301233448 5.628569766402831 -1.11732692365052 5.602639499088347 -6.635902379084699 1.696209365236964 -6.473472917853572 1.730888213057201 -6.471868518083324 1.696209365236964 -5.519597952639094 0.2327923851607379 -5.527083909871697 0.2645483088620941 -5.323191108608554 0.2645483088620941 -5.320499878353941 -1.669964106105268 -5.323191108608555 -1.697771323703456 -5.527083909871697 -1.697771323703455 -4.408621707159075 -4.296747015947841 -4.156787646307723 -4.296747015947841 -4.407412304627763 -4.32126581679264 4.408621707159075 5.605109209534284 4.144760566125584 5.581715029474692 4.156787646307723 5.605109209534284 1.001846931342163 5.972661113159814 1.002788032144055 5.944337132374494 0.6897848325164729 5.944337132374495 -1.511722885307478 5.846256149112257 -1.512522758452065 5.874582428309672 -1.287670506457124 5.874582428309672 -4.486153986370041 4.042309874632021 -4.265787779652355 4.074046865503883 -4.258776450555414 4.042309874632021 -4.513936661932269 4.116634488435327 -4.513529393516768 4.148671265418692 -4.293640562989966 4.148671265418692 -5.30121065136162 2.810912441373487 -5.495820513932754 2.810912441373487 -5.301818367203231 2.845580057199926 -5.486866123566071 2.783186271251781 -5.484193596745347 2.817823636846223 -5.292855245808954 2.817823636846223 -4.053823696300509 2.237933945389781 -3.965878808417176 2.272287161939893 -3.958641016476932 2.237933945389781 -1.918008717777246 4.649794177545886 -2.116263790567739 4.649794177545886 -1.910891693420302 4.682404522695187 -3.965878808417176 2.204199992204413 -4.053823696300509 2.238552505419718 -3.958641016476932 2.238552505419718 -3.98688258012103 2.174496531652604 -4.054189352611236 2.237973201526826 -3.966244464718757 2.203620688326012 -4.017173339631032 2.155424003666398 -4.053600131603027 2.238359837618288 -3.986293359006373 2.174883167813916 -4.054029148368965 2.148475901285807 -4.054029148368965 2.238243226210277 -4.017602356320005 2.155307392279307 -4.053705692468588 2.148475901285807 -4.090128310949842 2.155307392279307 -4.053705692468588 2.238243226210277 -4.089952433315315 2.155259592545581 -4.120834202083113 2.174718756689015 -4.053529814846994 2.238195426480065 0.4817370153810024 5.867033550067902 0.4662092569933485 5.894993387095167 0.6144719776412866 5.894993387095167 -5.493156499972884 1.622250154706118 -5.495820513932754 1.656888623668823 -5.30121065136162 1.656888623668823 -5.30121065136162 0.1336222520571034 -5.495820513932754 0.1336222520571034 -5.299479955906707 0.16563083642983 -4.448524202508266 -2.069012009645138 -4.209933402218357 -2.069012009645138 -4.447657984950528 -2.096891377077753 -4.448524202508265 -4.245748750520807 -4.197716937838588 -4.222414069935461 -4.209933402218356 -4.245748750520807 1.090947998110311 6.444314700437957 1.091705377008491 6.419086760900848 0.7990144246324199 6.419086760900847 1.091705377008496 5.764461288009136 0.7793575878386156 5.738158179036597 0.7990144246324239 5.764461288009136 -1.512522758452064 4.199124051242464 -1.301605464577787 4.230341346563795 -1.287670506457123 4.199124051242464 -1.628375530324133 4.532137312614295 -1.629173990339626 4.564343890560317 -1.417698726505826 4.564343890560318 -4.513529393516767 2.842460905715748 -4.296126179723646 2.877096140892943 -4.293640562989966 2.842460905715748 -4.523873026935287 2.878948457209516 -4.52373943882028 2.913619209927827 -4.306478961546185 2.913619209927827 -5.292855245808954 1.589284403419701 -5.484193596745347 1.589284403419701 -5.292256482891902 1.623952812594009 -4.054189359642654 2.238513250449592 -3.986882587152454 2.301989685878881 -3.966244471750178 2.272866466985217 -1.772230843885124 4.316668158091233 -1.97791489492716 4.285298111276199 -1.963551749588466 4.316668158091233 -4.120931077310953 2.174782322711644 -4.141563825700471 2.203906479345791 -4.053626690071178 2.238258992500297 0.4662092569933474 3.984640728124225 0.5978885664865269 4.015324222717966 0.6144719776412849 3.984640728124225 -4.485674624860247 -0.08526153762548347 -4.48615398637004 -0.05322623054405954 -4.258776450555414 -0.0532262305440591 -4.258776450555414 -1.933085990116117 -4.48615398637004 -1.933085990116117 -4.248284576315554 -1.905981862401339 -1.214262924493798 -5.194566694637977 -1.214511035774507 -5.169331267036565 -0.9457283423114715 -5.169331267036566 1.214511035774506 6.451534252752131 0.9221179475047064 6.429848196719905 0.9457283423114704 6.451534252752131 -1.761069588366373 5.937702646020404 -1.772230843885125 5.908481456554886 -1.963551749588467 5.908481456554886 0.2053747464016292 4.494206613498784 0.1944372944454104 4.526154345813759 0.3365673192634006 4.526154345813759 -1.629173990339625 2.867167703373754 -1.422673876480833 2.901739456795183 -1.417698726505825 2.867167703373754 -1.673273684142616 3.018941404769386 -1.673590716300032 3.053630894775492 -1.466805478570464 3.053630894775492 -4.306478961546185 1.564023796208383 -4.52373943882028 1.564023796208383 -4.303984471274499 1.598659334192533 -4.513386385417228 1.521059658472058 -4.513529393516768 1.55573108481662 -4.293640562989966 1.55573108481662 -4.053600130150717 2.238126612289381 -4.017173338178724 2.321061742906462 -3.986293357554064 2.301603047648817 -4.141471615561583 2.203760403806036 -4.148715368841032 2.238112916971204 -4.05353447993902 2.238112916971204 -4.293640562989966 0.04335369123050295 -4.513529393516768 0.04335369123050295 -4.28656117905012 0.0750804706277098 -1.362577667292276 -2.816696003244873 -1.362288982534341 -2.788363968266435 -1.117326923650519 -2.788363968266436 -1.362288982534339 -4.96872170244727 -1.093208957200034 -4.947382584107978 -1.117326923650517 -4.96872170244727 -1.517054674570912 6.352714651674939 -1.531212837937361 6.326423764830597 -1.712284373429761 6.326423764830597 -1.531212837937358 5.640120267067013 -1.734448249583062 5.614337428574716 -1.712284373429759 5.640120267067013 0.1944372944454098 2.768116755041422 0.3306030045439118 2.802621145461516 0.3365673192634 2.768116755041422 0.09703799021453519 2.992970025448294 0.09311781389960916 3.02762566825247 0.2331416166700978 3.02762566825247 -1.466805478570464 1.551162662776399 -1.673590716300032 1.551162662776399 -1.461801932402765 1.585732578944526 -1.629455680006471 1.378103798768278 -1.629173990339626 1.41279417401793 -1.417698726505825 1.41279417401793 -4.054029148368965 2.328012192249299 -4.017602356320005 2.321178356806438 -4.148715368841032 2.238373531371506 -4.141471615561583 2.272726747871482 -4.05353447993902 2.238373531371506 -1.5130564857246 -0.5257943792033832 -1.512522758452064 -0.4935852610863161 -1.287670506457123 -0.4935852610863157 -1.287670506457123 -2.200920589208218 -1.512522758452064 -2.200920589208219 -1.266807547891256 -2.175199304236262 1.191572206143222 -5.192175383810728 1.207044158877364 -5.1663454530928 1.376271851481389 -5.1663454530928 -1.207044158877361 6.429711904418062 -1.403428117920235 6.409426980035437 -1.376271851481385 6.429711904418062 0.2331416166700967 1.664649718651807 0.09311781389960805 1.664649718651807 0.2391568923698373 1.699149334331037 0.1905901596095888 1.402942822274038 0.1944372944454098 1.437604227236455 0.3365673192634 1.437604227236455 -1.417698726505827 -0.01600042466492939 -1.629173990339627 -0.01600042466492939 -1.40354905450114 0.01515616649882865 -4.090128310949842 2.321178356806438 -4.053705692468588 2.328012192249299 -4.141563826111081 2.272580676061272 -4.120931077721562 2.301703894915674 -4.053626690481788 2.238227459571957 0.817284599356215 -2.839893539460173 0.8316396263229142 -2.811548851757165 0.9893581626293563 -2.811548851757165 0.8316396263229164 -4.845690357464556 1.017620105613927 -4.826367558809764 0.9893581626293585 -4.845690357464556 0.3365673192634 0.3196989763957595 0.1944372944454098 0.3196989763957595 0.3535537786690163 0.3502448284896839 0.4558387683873832 -0.4939535826444508 0.466209256993349 -0.4618899096476089 0.6144719776412871 -0.4618899096476089 -4.120834201487819 2.301767461664036 -4.08995243272002 2.321226156917597 -4.053529814251699 2.238291026317921 0.6144719776412871 -1.790580230231597 0.4662092569933496 -1.790580230231597 0.6392934645829623 -1.766340825597774</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"668\" source=\"#ID72\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID68\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID66\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID67\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"448\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 7 12 16 13 8 14 9 14 17 13 10 12 18 15 6 16 8 17 9 17 11 16 19 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 16 30 28 31 8 32 9 32 29 31 17 30 30 33 18 34 8 35 9 35 19 34 31 33 12 36 20 37 32 38 33 38 21 37 13 36 20 39 2 40 24 41 25 41 3 40 21 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 8 51 28 52 40 53 41 53 29 52 9 51 22 54 34 55 42 56 43 56 35 55 23 54 26 57 44 58 38 59 39 59 45 58 27 57 46 60 30 61 8 62 9 62 31 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 8 78 40 79 54 80 55 80 41 79 9 78 42 81 56 82 57 83 58 83 59 82 43 81 34 84 56 85 42 86 43 86 59 85 35 84 60 87 38 88 44 89 45 89 39 88 61 87 60 90 44 91 62 92 63 92 45 91 61 90 64 93 46 94 8 51 9 51 47 94 65 93 66 95 32 96 48 97 49 97 33 96 67 95 48 98 20 99 50 100 51 100 21 99 49 98 34 101 32 102 68 103 69 103 33 102 35 101 50 104 24 105 52 106 53 106 25 105 51 104 70 107 52 108 36 109 37 109 53 108 71 107 72 110 36 111 38 112 39 112 37 111 73 110 8 113 54 114 74 115 75 115 55 114 9 113 57 116 76 117 54 118 55 118 77 117 58 116 56 119 76 120 57 121 58 121 77 120 59 119 56 122 34 123 68 124 69 124 35 123 59 122 38 125 60 126 72 127 73 127 61 126 39 125 78 128 60 129 62 130 63 130 61 129 79 128 78 131 62 132 80 133 81 133 63 132 79 131 64 134 8 78 82 135 83 135 9 78 65 134 66 136 48 137 84 138 85 138 49 137 67 136 68 139 32 140 66 141 67 141 33 140 69 139 48 142 50 143 86 144 87 144 51 143 49 142 50 145 52 146 88 147 89 147 53 146 51 145 52 148 70 149 90 150 91 150 71 149 53 148 36 151 72 152 70 153 71 153 73 152 37 151 8 154 74 155 92 156 93 156 75 155 9 154 74 157 54 158 94 159 95 159 55 158 75 157 76 160 94 161 54 162 55 162 95 161 77 160 56 163 96 164 76 165 77 165 97 164 59 163 68 166 96 167 56 168 59 168 97 167 69 166 98 169 72 170 60 171 61 171 73 170 99 169 98 172 60 173 78 174 79 174 61 173 99 172 100 175 78 176 80 177 81 177 79 176 101 175 100 178 80 179 82 180 83 180 81 179 101 178 82 181 8 182 102 183 103 183 9 182 83 181 104 184 66 185 84 186 85 186 67 185 105 184 48 187 86 188 84 189 85 189 87 188 49 187 106 190 68 191 66 192 67 192 69 191 107 190 50 193 88 194 86 195 87 195 89 194 51 193 52 196 90 197 88 198 89 198 91 197 53 196 90 199 70 200 108 201 109 201 71 200 91 199 110 202 70 203 72 204 73 204 71 203 111 202 8 205 92 206 112 207 113 207 93 206 9 205 92 208 74 209 114 210 115 210 75 209 93 208 94 211 114 212 74 213 75 213 115 212 95 211 76 214 116 215 94 216 95 216 117 215 77 214 96 217 116 218 76 219 77 219 117 218 97 217 96 220 68 221 106 222 107 222 69 221 97 220 110 223 72 224 98 225 99 225 73 224 111 223 118 226 98 227 78 228 79 228 99 227 119 226 118 229 78 230 100 231 101 231 79 230 119 229 120 232 100 233 82 234 83 234 101 233 121 232 82 235 102 236 120 237 121 237 103 236 83 235 102 238 8 239 122 240 123 240 9 239 103 238 104 241 84 242 124 243 125 243 85 242 105 241 106 244 66 245 104 246 105 246 67 245 107 244 84 247 86 248 126 249 127 249 87 248 85 247 86 250 88 251 128 252 129 252 89 251 87 250 88 253 90 254 130 255 131 255 91 254 89 253 90 256 108 257 132 258 133 258 109 257 91 256 70 259 110 260 108 261 109 261 111 260 71 259 122 262 8 263 112 264 113 264 9 263 123 262 112 265 92 266 134 267 135 267 93 266 113 265 92 268 114 269 134 270 135 270 115 269 93 268 114 271 94 272 136 273 137 273 95 272 115 271 116 274 136 275 94 276 95 276 137 275 117 274 96 277 138 278 116 279 117 279 139 278 97 277 106 280 138 281 96 282 97 282 139 281 107 280 110 283 98 284 140 285 141 285 99 284 111 283 140 286 98 287 118 288 119 288 99 287 141 286 142 289 118 290 100 291 101 291 119 290 143 289 100 292 120 293 142 294 143 294 121 293 101 292 120 295 102 296 144 297 145 297 103 296 121 295 102 298 122 299 144 300 145 300 123 299 103 298 146 301 104 302 124 303 125 303 105 302 147 301 84 304 126 305 124 306 125 306 127 305 85 304 148 307 106 308 104 309 105 309 107 308 149 307 86 310 128 311 126 312 127 312 129 311 87 310 128 313 88 314 130 315 131 315 89 314 129 313 130 316 90 317 132 318 133 318 91 317 131 316 132 319 108 320 150 321 151 321 109 320 133 319 108 322 110 323 152 324 153 324 111 323 109 322 122 325 112 326 154 327 155 327 113 326 123 325 112 328 134 329 154 330 155 330 135 329 113 328 134 331 114 332 156 333 157 333 115 332 135 331 136 334 156 335 114 336 115 336 157 335 137 334 116 337 158 338 136 339 137 339 159 338 117 337 138 340 158 341 116 342 117 342 159 341 139 340 106 343 148 344 138 345 139 345 149 344 107 343 110 346 140 347 152 348 153 348 141 347 111 346 140 349 118 350 160 351 161 351 119 350 141 349 118 352 142 353 160 354 161 354 143 353 119 352 142 355 120 356 162 357 163 357 121 356 143 355 120 358 144 359 162 360 163 360 145 359 121 358 144 361 122 362 154 363 155 363 123 362 145 361 124 364 164 365 146 366 147 366 165 365 125 364 148 367 104 368 146 369 147 369 105 368 149 367 126 370 166 371 124 372 125 372 167 371 127 370 128 373 168 374 126 375 127 375 169 374 129 373 128 376 130 377 170 378 171 378 131 377 129 376 130 379 132 380 172 381 173 381 133 380 131 379 132 382 150 383 174 384 175 384 151 383 133 382 108 385 152 386 150 387 151 387 153 386 109 385 154 388 134 389 176 390 177 390 135 389 155 388 134 391 156 392 176 393 177 393 157 392 135 391 156 394 136 395 178 396 179 396 137 395 157 394 158 397 178 398 136 399 137 399 179 398 159 397 138 400 180 401 158 402 159 402 181 401 139 400 180 403 138 404 148 405 149 405 139 404 181 403 140 406 182 407 152 408 153 408 183 407 141 406 140 409 160 410 182 411 183 411 161 410 141 409 160 412 142 413 184 414 185 414 143 413 161 412 142 415 162 416 184 417 185 417 163 416 143 415 162 418 144 419 186 420 187 420 145 419 163 418 144 421 154 422 186 423 187 423 155 422 145 421 146 424 164 425 188 426 189 426 165 425 147 424 124 427 166 428 164 429 165 429 167 428 125 427 190 430 148 431 146 432 147 432 149 431 191 430 126 433 168 434 166 435 167 435 169 434 127 433 168 436 128 437 170 438 171 438 129 437 169 436 170 439 130 440 172 441 173 441 131 440 171 439 172 442 132 443 174 444 175 444 133 443 173 442 174 445 150 446 192 447 193 447 151 446 175 445 152 448 194 449 150 450 151 450 195 449 153 448 154 451 176 452 186 453 187 453 177 452 155 451 176 454 156 455 196 456 197 456 157 455 177 454 178 457 196 458 156 459 157 459 197 458 179 457 158 460 198 461 178 462 179 462 199 461 159 460 158 463 180 464 198 465 199 465 181 464 159 463 180 466 148 467 190 468 191 468 149 467 181 466 152 469 182 470 194 471 195 471 183 470 153 469 160 472 200 473 182 474 183 474 201 473 161 472 160 475 184 476 200 477 201 477 185 476 161 475 184 478 162 479 202 480 203 480 163 479 185 478 162 481 186 482 202 483 203 483 187 482 163 481 204 484 205 485 206 486 207 486 208 485 209 484 146 487 188 488 190 489 191 489 189 488 147 487 210 490 204 491 206 492 207 492 209 491 211 490 212 493 204 494 210 495 211 495 209 494 213 493 214 496 204 497 212 498 213 498 209 497 215 496 216 499 204 500 214 501 215 501 209 500 217 499 216 502 174 503 204 504 209 504 175 503 217 502 174 505 192 506 204 507 209 507 193 506 175 505 150 508 194 509 192 510 193 510 195 509 151 508 186 511 176 512 218 513 219 513 177 512 187 511 218 514 176 515 196 516 197 516 177 515 219 514 178 517 220 518 196 519 197 519 221 518 179 517 178 520 198 521 220 522 221 522 199 521 179 520 198 523 180 524 222 525 223 525 181 524 199 523 180 526 190 527 222 528 223 528 191 527 181 526 182 529 224 530 194 531 195 531 225 530 183 529 182 532 200 533 224 534 225 534 201 533 183 532 184 535 226 536 200 537 201 537 227 536 185 535 184 538 202 539 226 540 227 540 203 539 185 538 202 541 186 542 218 543 219 543 187 542 203 541 204 544 228 545 205 546 208 546 229 545 209 544 190 547 188 548 230 549 231 549 189 548 191 547 192 550 232 551 204 552 209 552 233 551 193 550 194 553 232 554 192 555 193 555 233 554 195 553 218 556 196 557 234 558 235 558 197 557 219 556 234 559 196 560 220 561 221 561 197 560 235 559 220 562 198 563 236 564 237 564 199 563 221 562 198 565 222 566 236 567 237 567 223 566 199 565 222 568 190 569 230 570 231 570 191 569 223 568 194 571 224 572 232 573 233 573 225 572 195 571 200 574 238 575 224 576 225 576 239 575 201 574 200 577 226 578 238 579 239 579 227 578 201 577 226 580 202 581 240 582 241 582 203 581 227 580 202 583 218 584 240 585 241 585 219 584 203 583 204 586 242 587 228 588 229 588 243 587 209 586 232 589 244 590 204 591 209 591 245 590 233 589 240 592 218 593 234 594 235 594 219 593 241 592 234 595 220 596 246 597 247 597 221 596 235 595 220 598 236 599 246 600 247 600 237 599 221 598 236 601 222 602 248 603 249 603 223 602 237 601 222 604 230 605 248 606 249 606 231 605 223 604 224 607 244 608 232 609 233 609 245 608 225 607 224 610 238 611 244 612 245 612 239 611 225 610 238 613 226 614 250 615 251 615 227 614 239 613 226 616 240 617 250 618 251 618 241 617 227 616 204 500 252 619 242 620 243 620 253 619 209 500 244 621 254 622 204 623 209 623 255 622 245 621 240 624 234 625 256 626 257 626 235 625 241 624 256 627 234 628 246 629 247 629 235 628 257 627 246 630 236 631 258 632 259 632 237 631 247 630 236 633 248 634 258 635 259 635 249 634 237 633 244 636 238 637 254 638 255 638 239 637 245 636 238 639 250 640 254 641 255 641 251 640 239 639 250 642 240 643 256 644 257 644 241 643 251 642 204 504 260 645 252 646 253 646 261 645 209 504 254 647 262 648 204 649 209 649 263 648 255 647 256 650 246 651 260 652 261 652 247 651 257 650 246 653 258 654 260 655 261 655 259 654 247 653 254 656 250 657 262 658 263 658 251 657 255 656 250 659 256 660 262 661 263 661 257 660 251 659 262 662 260 663 204 664 209 664 261 663 263 662 262 665 256 666 260 667 261 667 257 666 263 665</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID68\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID69\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID73\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID74\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID78\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"798\">0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7675102353096008 -0.5612731575965881 0.2852768898010254 0.7675102353096008 -0.5612731575965881 0.2852768898010254 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7529726028442383 -0.5678825974464417 0.2799702882766724 0.7529726028442383 -0.5678825974464417 0.2799702882766724 0.7529776096343994 -0.5774014592170715 0.2799721658229828 0.7514801025390625 -0.5766767859458923 0.2840741574764252 0.7688149809837341 -0.5605922937393189 0.281104177236557 0.7688149809837341 -0.5605922937393189 0.281104177236557 0.7658206224441528 -0.5605922937393189 0.2893087267875671 0.7658206224441528 -0.5605922937393189 0.2893087267875671 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.7809376120567322 -0.5357759594917297 0.2855293154716492 0.7809376120567322 -0.5357759594917297 0.2855293154716492 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.754474937915802 -0.5766767859458923 0.2758695781230927 0.7799424529075623 -0.5360983014106751 0.2898147404193878 0.7799424529075623 -0.5360983014106751 0.2898147404193878 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.750209391117096 -0.5746138691902161 0.2875512540340424 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7807786464691162 -0.5348604321479797 0.2815302610397339 0.7807786464691162 -0.5348604321479797 0.2815302610397339 0.7695367932319641 -0.5586550235748291 0.2774266302585602 0.7695367932319641 -0.5586550235748291 0.2774266302585602 0.7779433131217957 -0.5357759594917297 0.2937338352203369 0.7779433131217957 -0.5357759594917297 0.2937338352203369 0.7640029788017273 -0.5586550235748291 0.2925863564014435 0.7640029788017273 -0.5586550235748291 0.2925863564014435 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7493597865104675 -0.5715253949165344 0.2898746728897095 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.7557430863380432 -0.5746138691902161 0.2723914682865143 0.783890426158905 -0.5086091160774231 0.2826657593250275 0.783890426158905 -0.5086091160774231 0.2826657593250275 0.7842149138450623 -0.5086091160774231 0.2867254912853241 0.7842149138450623 -0.5086091160774231 0.2867254912853241 0.7832766175270081 -0.5086091160774231 0.2910321354866028 0.7832766175270081 -0.5086091160774231 0.2910321354866028 0.7493549585342407 -0.5642405152320862 0.2898727059364319 0.7493549585342407 -0.5642405152320862 0.2898727059364319 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7623351216316223 -0.5557551980018616 0.2946110367774963 0.7623351216316223 -0.5557551980018616 0.2946110367774963 0.749059796333313 -0.5678825974464417 0.2906895875930786 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7695651054382324 -0.5557551980018616 0.2748038470745087 0.7695651054382324 -0.5557551980018616 0.2748038470745087 0.7565900087356567 -0.5715253949165344 0.2700673639774323 0.7823523879051209 -0.5086091160774231 0.27947136759758 0.7823523879051209 -0.5086091160774231 0.27947136759758 0.7794895172119141 -0.5334889888763428 0.2784262001514435 0.7794895172119141 -0.5334889888763428 0.2784262001514435 0.7812198996543884 -0.5086091160774231 0.2949300408363342 0.7812198996543884 -0.5086091160774231 0.2949300408363342 0.7752450704574585 -0.5348604321479797 0.296690046787262 0.7752450704574585 -0.5348604321479797 0.296690046787262 0.7502013444900513 -0.561151921749115 0.2875483632087708 0.7502013444900513 -0.561151921749115 0.2875483632087708 0.7610700726509094 -0.5523343682289124 0.2950736284255981 0.7610700726509094 -0.5523343682289124 0.2950736284255981 0.7565851211547852 -0.5642405152320862 0.2700657248497009 0.7565851211547852 -0.5642405152320862 0.2700657248497009 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7688960433006287 -0.5523343682289124 0.2736347615718842 0.7688960433006287 -0.5523343682289124 0.2736347615718842 0.7568849921226502 -0.5678825974464417 0.2692505121231079 0.7812067866325378 -0.4821297526359558 0.2790530025959015 0.7812067866325378 -0.4821297526359558 0.2790530025959015 0.7825827598571777 -0.4810132384300232 0.2821890711784363 0.7825827598571777 -0.4810132384300232 0.2821890711784363 0.7827998399734497 -0.4802669882774353 0.286208987236023 0.7827998399734497 -0.4802669882774353 0.286208987236023 0.7818241715431213 -0.4800053238868713 0.290501743555069 0.7818241715431213 -0.4800053238868713 0.290501743555069 0.7514697909355164 -0.5590887665748596 0.2840702533721924 0.7514697909355164 -0.5590887665748596 0.2840702533721924 0.7604013085365295 -0.548913836479187 0.2939048111438751 0.7604013085365295 -0.548913836479187 0.2939048111438751 0.7722594738006592 -0.5334889888763428 0.2982333302497864 0.7722594738006592 -0.5334889888763428 0.2982333302497864 0.755734920501709 -0.561151921749115 0.2723884582519531 0.755734920501709 -0.561151921749115 0.2723884582519531 0.7676315307617188 -0.548913836479187 0.2740978002548218 0.7676315307617188 -0.548913836479187 0.2740978002548218 0.7772659063339233 -0.5318727493286133 0.2766901254653931 0.7772659063339233 -0.5318727493286133 0.2766901254653931 0.7788809537887573 -0.4834471940994263 0.2772795259952545 0.7788809537887573 -0.4834471940994263 0.2772795259952545 0.7798362970352173 -0.5086091160774231 0.2776279151439667 0.7798362970352173 -0.5086091160774231 0.2776279151439667 0.7798051834106445 -0.4802669882774353 0.2944135665893555 0.7798051834106445 -0.4802669882774353 0.2944135665893555 0.7783564925193787 -0.5086091160774231 0.297825813293457 0.7783564925193787 -0.5086091160774231 0.297825813293457 0.7529666423797607 -0.5583648681640625 0.2799681127071381 0.7529666423797607 -0.5583648681640625 0.2799681127071381 0.7604292035102844 -0.546014130115509 0.2912820279598236 0.7604292035102844 -0.546014130115509 0.2912820279598236 0.7694398760795593 -0.5318727493286133 0.2981289625167847 0.7694398760795593 -0.5318727493286133 0.2981289625167847 0.7544642090797424 -0.5590887665748596 0.2758658826351166 0.7544642090797424 -0.5590887665748596 0.2758658826351166 0.7659631371498108 -0.546014130115509 0.2761222422122955 0.7659631371498108 -0.546014130115509 0.2761222422122955 0.774446427822113 -0.530255138874054 0.2765855491161346 0.774446427822113 -0.530255138874054 0.2765855491161346 0.7679250836372376 -0.4592308402061462 0.2732801735401154 0.7679250836372376 -0.4592308402061462 0.2732801735401154 0.7688785791397095 -0.4559683799743652 0.2745532691478729 0.7688785791397095 -0.4559683799743652 0.2745532691478729 0.7690914273262024 -0.4532025456428528 0.2772639095783234 0.7690914273262024 -0.4532025456428528 0.2772639095783234 0.7685301899909973 -0.4513538479804993 0.2810003161430359 0.7685301899909973 -0.4513538479804993 0.2810003161430359 0.7672816514968872 -0.4507051110267639 0.2851933538913727 0.7672816514968872 -0.4507051110267639 0.2851933538913727 0.7611505389213562 -0.5440757274627686 0.2876043915748596 0.7611505389213562 -0.5440757274627686 0.2876043915748596 0.7672161459922791 -0.530255138874054 0.2963924407958984 0.7672161459922791 -0.530255138874054 0.2963924407958984 0.775122344493866 -0.5086091160774231 0.2992783784866333 0.775122344493866 -0.5086091160774231 0.2992783784866333 0.7641456723213196 -0.5440757274627686 0.2793997526168823 0.7641456723213196 -0.5440757274627686 0.2793997526168823 0.7714604139328003 -0.5288839936256409 0.2781288921833038 0.7714604139328003 -0.5288839936256409 0.2781288921833038 0.776724100112915 -0.5086091160774231 0.2774169743061066 0.776724100112915 -0.5086091160774231 0.2774169743061066 0.766375720500946 -0.4624937176704407 0.2736393809318543 0.766375720500946 -0.4624937176704407 0.2736393809318543 0.7759590744972229 -0.4847645163536072 0.2771378755569458 0.7759590744972229 -0.4847645163536072 0.2771378755569458 0.7655348181724548 -0.4513538479804993 0.2892045080661774 0.7655348181724548 -0.4513538479804993 0.2892045080661774 0.7770491242408752 -0.4810132384300232 0.2973486185073853 0.7770491242408752 -0.4810132384300232 0.2973486185073853 0.7624562382698059 -0.5433959364891052 0.2834318280220032 0.7624562382698059 -0.5433959364891052 0.2834318280220032 0.7659268379211426 -0.5288839936256409 0.2932883203029633 0.7659268379211426 -0.5288839936256409 0.2932883203029633 0.7720103859901428 -0.5086091160774231 0.299067348241806 0.7720103859901428 -0.5086091160774231 0.299067348241806 0.7687625288963318 -0.5279688835144043 0.2810851335525513 0.7687625288963318 -0.5279688835144043 0.2810851335525513 0.7734904885292053 -0.5086091160774231 0.2788696885108948 0.7734904885292053 -0.5086091160774231 0.2788696885108948 0.7570374608039856 -0.4502493739128113 0.270230770111084 0.7570374608039856 -0.4502493739128113 0.270230770111084 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7657673954963684 -0.5279688835144043 0.2892895638942719 0.7657673954963684 -0.5279688835144043 0.2892895638942719 0.7694941163063049 -0.5086091160774231 0.2972239553928375 0.7694941163063049 -0.5086091160774231 0.2972239553928375 0.7739768028259277 -0.4821297526359558 0.298860102891922 0.7739768028259277 -0.4821297526359558 0.298860102891922 0.7667633295059204 -0.5276470184326172 0.2850039303302765 0.7667633295059204 -0.5276470184326172 0.2850039303302765 0.7706266045570374 -0.5086091160774231 0.2817656397819519 0.7706266045570374 -0.5086091160774231 0.2817656397819519 0.7728867530822754 -0.4858811497688294 0.2786497473716736 0.7728867530822754 -0.4858811497688294 0.2786497473716736 0.7561874985694885 -0.4533376097679138 0.272553950548172 0.7561874985694885 -0.4533376097679138 0.272553950548172 0.7644664645195007 -0.4652591943740845 0.2755759060382843 0.7644664645195007 -0.4652591943740845 0.2755759060382843 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7635570168495178 -0.4532025456428528 0.2924236953258514 0.7635570168495178 -0.4532025456428528 0.2924236953258514 0.7679563164710999 -0.5086091160774231 0.2940293550491333 0.7679563164710999 -0.5086091160774231 0.2940293550491333 0.7710549831390381 -0.4834471940994263 0.2987184822559357 0.7710549831390381 -0.4834471940994263 0.2987184822559357 0.7685694098472595 -0.5086091160774231 0.285663366317749 0.7685694098472595 -0.5086091160774231 0.285663366317749 0.7701312303543091 -0.4866270422935486 0.2815848290920258 0.7701312303543091 -0.4866270422935486 0.2815848290920258 0.7534245252609253 -0.4466072916984558 0.2801350057125092 0.7534245252609253 -0.4466072916984558 0.2801350057125092 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7573378086090088 -0.4466072916984558 0.2694154679775238 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7570418119430542 -0.4429642558097839 0.2702324688434601 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7561957836151123 -0.4398764371871948 0.2725569307804108 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7549281120300293 -0.4378125071525574 0.2760350406169891 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7534309029579163 -0.4370884299278259 0.2801374793052673 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.7519332766532898 -0.4378125071525574 0.2842392921447754 0.767632007598877 -0.5086091160774231 0.2899697721004486 0.767632007598877 -0.5086091160774231 0.2899697721004486 0.768729567527771 -0.4847645163536072 0.2969449162483215 0.768729567527771 -0.4847645163536072 0.2969449162483215 0.7616479992866516 -0.4559683799743652 0.2943599820137024 0.7616479992866516 -0.4559683799743652 0.2943599820137024 0.7681118845939636 -0.4868890047073364 0.285496324300766 0.7681118845939636 -0.4868890047073364 0.285496324300766 0.7624879479408264 -0.4671074748039246 0.2787948548793793 0.7624879479408264 -0.4671074748039246 0.2787948548793793 0.7549169063568115 -0.455400288105011 0.2760307788848877 0.7549169063568115 -0.455400288105011 0.2760307788848877 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7673535346984863 -0.4858811497688294 0.2938092648983002 0.7673535346984863 -0.4858811497688294 0.2938092648983002 0.760098934173584 -0.4592308402061462 0.2947191298007965 0.760098934173584 -0.4592308402061462 0.2947191298007965 0.7671361565589905 -0.4866270422935486 0.2897888720035553 0.7671361565589905 -0.4866270422935486 0.2897888720035553 0.7607418298721314 -0.4677572846412659 0.2828062176704407 0.7607418298721314 -0.4677572846412659 0.2828062176704407 0.7534193992614746 -0.4561249613761902 0.2801329493522644 0.7534193992614746 -0.4561249613761902 0.2801329493522644 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7506623268127441 -0.4398764371871948 0.2877164781093597 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.759145975112915 -0.4624937176704407 0.29344642162323 0.759145975112915 -0.4624937176704407 0.29344642162323 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.7498118877410889 -0.4429642558097839 0.290039449930191 0.759493887424469 -0.4671074748039246 0.2869994938373566 0.759493887424469 -0.4671074748039246 0.2869994938373566 0.7519221901893616 -0.455400288105011 0.2842352688312531 0.7519221901893616 -0.455400288105011 0.2842352688312531 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7589325904846191 -0.4652591943740845 0.2907354831695557 0.7589325904846191 -0.4652591943740845 0.2907354831695557 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7495119571685791 -0.4466072916984558 0.2908545732498169 0.7506538033485413 -0.4533376097679138 0.2877134084701538 0.7506538033485413 -0.4533376097679138 0.2877134084701538 0.7498074173927307 -0.4502493739128113 0.2900377213954926 0.7498074173927307 -0.4502493739128113 0.2900377213954926</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"266\" source=\"#ID78\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID75\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID79\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"798\">0.6799178236397709 -0.69057367228955 0.2466166179264536 0.5877019751617741 -0.6735925825448549 0.4481957397516203 0.7591808928247313 -0.5897284098617264 0.2754356087578434 -0.7591808928247313 0.5897284098617264 -0.2754356087578434 -0.5877019751617741 0.6735925825448549 -0.4481957397516203 -0.6799178236397709 0.69057367228955 -0.2466166179264536 -0.9393751266512928 -0.0005868521936232807 -0.3428906925440976 -0.9393751425070286 -0.0005617318017703885 -0.3428906911791024 -0.939376177593132 -0.0006342400068577415 -0.3428877290165553 0.939376177593132 0.0006342400068577415 0.3428877290165553 0.9393751425070286 0.0005617318017703885 0.3428906911791024 0.9393751266512928 0.0005868521936232807 0.3428906925440976 0.8252148226182395 -0.5644944296083407 0.01914511614750935 -0.8252148226182395 0.5644944296083407 -0.01914511614750935 0.6458766624700151 -0.5638591779577424 0.5146903577000577 -0.6458766624700151 0.5638591779577424 -0.5146903577000577 -0.9393782460668849 -0.0005463059712546547 -0.3428822135458314 0.9393782460668849 0.0005463059712546547 0.3428822135458314 -0.9393725144611836 -0.0005830620076450874 -0.3428978552186772 0.9393725144611836 0.0005830620076450874 0.3428978552186772 0.9554902810441462 -0.2903868445625364 0.05209417755557585 -0.9554902810441462 0.2903868445625364 -0.05209417755557585 0.7434540010848137 -0.6677509343219258 0.03721341133485457 -0.7434540010848137 0.6677509343219258 -0.03721341133485457 0.8952730943270777 -0.3038198768900282 0.325852066098326 -0.8952730943270777 0.3038198768900282 -0.325852066098326 0.4478529470750022 -0.6063564480372432 0.6570841618239579 -0.4478529470750022 0.6063564480372432 -0.6570841618239579 -0.9393820145822192 -0.000581914026689231 -0.342871830361605 0.9393820145822192 0.000581914026689231 0.342871830361605 -0.9393664157576216 -0.0005364266369218085 -0.3429146383477124 0.9393664157576216 0.0005364266369218085 0.3429146383477124 0.9327407545336943 -0.2413581365757324 -0.2678449826683425 -0.9327407545336943 0.2413581365757324 0.2678449826683425 0.8341508868389282 -0.476763425058057 -0.2772885401756445 -0.8341508868389282 0.476763425058057 0.2772885401756445 0.7662683213594329 -0.287461068881913 0.5746294402119204 -0.7662683213594329 0.287461068881913 -0.5746294402119204 0.4613755936650907 -0.476538718404578 0.7483604822754253 -0.4613755936650907 0.476538718404578 -0.7483604822754253 -0.9393736916148986 -0.0007151470546898659 -0.3428943803366973 0.9393736916148986 0.0007151470546898659 0.3428943803366973 0.2088634488026968 -0.4500435417004254 0.8682377959568338 -0.2088634488026968 0.4500435417004254 -0.8682377959568338 -0.9393729573431053 -0.0006630127486160339 -0.3428964966670899 0.9393729573431053 0.0006630127486160339 0.3428964966670899 0.7749461224564865 -0.5980366748323877 -0.2044765092744824 -0.7749461224564865 0.5980366748323877 0.2044765092744824 0.9665019143844036 -0.03194751190439447 -0.2546633188631643 -0.9665019143844036 0.03194751190439447 0.2546633188631643 0.9968801234772516 -0.03631507232101158 0.07008020361199754 -0.9968801234772516 0.03631507232101158 -0.07008020361199754 0.9387135282855428 -0.03695080590496688 0.3427120507899905 -0.9387135282855428 0.03695080590496688 -0.3427120507899905 -0.943038533385406 0.196902834547097 0.2681559216158034 0.943038533385406 -0.196902834547097 -0.2681559216158034 -0.2067253711329811 -0.1242152919064481 0.9704819329521427 0.1507433781956068 -0.2948336904584761 0.9435833449679005 -0.1507433781956068 0.2948336904584761 -0.9435833449679005 0.2067253711329811 0.1242152919064481 -0.9704819329521427 -0.9393903858135525 -0.0007073923093318052 -0.3428486585028234 0.9393903858135525 0.0007073923093318052 0.3428486585028234 0.7333521400211251 -0.4462197364600544 -0.51291576844542 0.7259902234974308 -0.2943867505606677 -0.621509964908433 -0.7259902234974308 0.2943867505606677 0.621509964908433 -0.7333521400211251 0.4462197364600544 0.51291576844542 0.7761996123257705 -0.02081418239622952 -0.6301435801755819 -0.7761996123257705 0.02081418239622952 0.6301435801755819 0.762265959676282 -0.1430140804791905 -0.6312666469119754 -0.762265959676282 0.1430140804791905 0.6312666469119754 0.8075999694332556 -0.03496358636113148 0.5886933301814896 -0.8075999694332556 0.03496358636113148 -0.5886933301814896 0.5434396503299688 -0.2363915090035321 0.8054765055048313 -0.5434396503299688 0.2363915090035321 -0.8054765055048313 -0.9517535263931729 0.3063699007265154 -0.01739853232272874 0.9517535263931729 -0.3063699007265154 0.01739853232272874 -0.3085419422614615 -0.006578297159407321 0.9511879918670166 0.3085419422614615 0.006578297159407321 -0.9511879918670166 -0.5562186803025871 0.1930351131557664 -0.8083057743028863 0.5562186803025871 -0.1930351131557664 0.8083057743028863 0.4791735318885444 -0.1284248272304346 -0.8682740293756868 0.3877633052703881 -0.007981794208910882 -0.9217244219651503 -0.3877633052703881 0.007981794208910882 0.9217244219651503 -0.4791735318885444 0.1284248272304346 0.8682740293756868 0.7688467764772459 0.1267459813893369 -0.6267456346096091 -0.7688467764772459 -0.1267459813893369 0.6267456346096091 0.9411963276024344 0.212650316218457 -0.2625439314093566 -0.9411963276024344 -0.212650316218457 0.2625439314093566 0.9649683650122823 0.2559650058373194 0.05760182559800928 -0.9649683650122823 -0.2559650058373194 -0.05760182559800928 0.9045559699959583 0.2690886836502407 0.3307110180747711 -0.9045559699959583 -0.2690886836502407 -0.3307110180747711 -0.9251274501786493 0.3236103327476385 -0.1985335071591531 0.9251274501786493 -0.3236103327476385 0.1985335071591531 -0.7287461481921549 0.2665806127222086 0.6307644793548138 0.7287461481921549 -0.2665806127222086 -0.6307644793548138 0.1773436221600157 -0.1383801625069031 0.9743716797525103 -0.1773436221600157 0.1383801625069031 -0.9743716797525103 -0.7485752064243595 0.2979840073279869 -0.5923180663321707 0.7485752064243595 -0.2979840073279869 0.5923180663321707 -0.1511142449962449 0.2634252964934358 -0.9527704855454751 0.1511142449962449 -0.2634252964934358 0.9527704855454751 0.3701288015582322 -0.002611640970967592 -0.9289767755915674 -0.3701288015582322 0.002611640970967592 0.9289767755915674 0.3765260039300674 0.003050065597743506 -0.9264010284236004 -0.3765260039300674 -0.003050065597743506 0.9264010284236004 0.355911543415152 -0.001054782258333201 -0.9345190531488546 -0.355911543415152 0.001054782258333201 0.9345190531488546 0.7743024048645378 0.2570963877903078 0.5782363125973403 -0.7743024048645378 -0.2570963877903078 -0.5782363125973403 0.5752066770048471 -0.02965150030983746 0.8174705299020983 -0.5752066770048471 0.02965150030983746 -0.8174705299020983 -0.8901001040455957 0.3213871804143389 -0.3231595349720336 0.8901001040455957 -0.3213871804143389 0.3231595349720336 -0.8939305696985269 0.3901322278047513 0.2206467343664276 0.8939305696985269 -0.3901322278047513 -0.2206467343664276 -0.3189771771136281 -0.002228556801782159 0.9477597765336964 0.3189771771136281 0.002228556801782159 -0.9477597765336964 -0.8401802938848788 0.3172011463304369 -0.4398641910114704 0.8401802938848788 -0.3172011463304369 0.4398641910114704 -0.5502837979551655 0.3842861951266458 -0.7412906730447405 0.5502837979551655 -0.3842861951266458 0.7412906730447405 -0.1459412265344615 0.1197706494857031 -0.9820163694762882 0.1459412265344615 -0.1197706494857031 0.9820163694762882 0.37059784119191 0.007332092256201738 -0.9287644914223642 -0.37059784119191 -0.007332092256201738 0.9287644914223642 0.701316740430611 0.2955786602452652 -0.6486818058180739 -0.701316740430611 -0.2955786602452652 0.6486818058180739 0.8176991911943827 0.4874539738108439 -0.3061970870796612 -0.8176991911943827 -0.4874539738108439 0.3061970870796612 0.8111534106397504 0.5848325082018011 0.001040075906144079 -0.8111534106397504 -0.5848325082018011 -0.001040075906144079 0.7403772452589184 0.6147858898666835 0.2718084699262435 -0.7403772452589184 -0.6147858898666835 -0.2718084699262435 -0.9049687909099836 0.4175173690044793 -0.08191907017599744 0.9049687909099836 -0.4175173690044793 0.08191907017599744 -0.7492797496892516 0.1133132693665334 0.6524875168852504 0.7492797496892516 -0.1133132693665334 -0.6524875168852504 0.1877929087199124 -0.0187485058154597 0.9820296925063937 -0.1877929087199124 0.0187485058154597 -0.9820296925063937 -0.7513841927851167 0.4126586489627937 -0.5149122588061585 0.7513841927851167 -0.4126586489627937 0.5149122588061585 -0.5512846542936887 0.1792841408636472 -0.8148266237519931 0.5512846542936887 -0.1792841408636472 0.8148266237519931 -0.1675135795287171 0.02034497022041111 -0.9856598210641473 0.1675135795287171 -0.02034497022041111 0.9856598210641473 -0.1141953612150234 -0.2671837295399576 -0.956855409216089 0.1141953612150234 0.2671837295399576 0.956855409216089 -0.1373079995524726 -0.1084823874345631 -0.9845699999875051 0.1373079995524726 0.1084823874345631 0.9845699999875051 0.6173715680651242 0.5870686058801959 0.5236437710263469 -0.6173715680651242 -0.5870686058801959 -0.5236437710263469 0.5497245629401343 0.2145754652830064 0.8073167126963617 -0.5497245629401343 -0.2145754652830064 -0.8073167126963617 -0.854643214054378 0.4178076248024445 -0.3082560061503141 0.854643214054378 -0.4178076248024445 0.3082560061503141 -0.9493035167847738 0.1689353223568427 0.265110712496214 0.9493035167847738 -0.1689353223568427 -0.265110712496214 -0.3297320128049064 -0.0009892053169032501 0.9440740549366167 0.3297320128049064 0.0009892053169032501 -0.9440740549366167 -0.7912297299100904 0.1931499717911882 -0.5802142732676165 0.7912297299100904 -0.1931499717911882 0.5802142732676165 -0.5669909487172499 0.0336906701803891 -0.8230347518881016 0.5669909487172499 -0.0336906701803891 0.8230347518881016 -0.5397868028907887 -0.2010953174264371 -0.817429434712319 0.5397868028907887 0.2010953174264371 0.817429434712319 0.4490318189794837 0.1182232051121184 -0.885660035971475 -0.4490318189794837 -0.1182232051121184 0.885660035971475 0.6857865836606216 0.4576104799293926 -0.565941172145908 -0.6857865836606216 -0.4576104799293926 0.565941172145908 0.7315345787125549 0.633264681644932 -0.2526519406792432 -0.7315345787125549 -0.633264681644932 0.2526519406792432 0.7017768175496579 0.7123551285934313 0.007711622171104857 -0.7017768175496579 -0.7123551285934313 -0.007711622171104857 0.6385570036227747 0.7328260708349735 0.2349700045301061 -0.6385570036227747 -0.7328260708349735 -0.2349700045301061 -0.9805264826708569 0.1855593302681447 -0.06430825554744492 0.9805264826708569 -0.1855593302681447 0.06430825554744492 -0.7630835367065815 0.01780607266966092 0.6460545331343619 0.7630835367065815 -0.01780607266966092 -0.6460545331343619 0.184362495251173 0.12859871721751 0.9744089697220424 -0.184362495251173 -0.12859871721751 -0.9744089697220424 -0.9228079037311781 0.1909135490947522 -0.3346305269746243 0.9228079037311781 -0.1909135490947522 0.3346305269746243 -0.8053162660872498 0.03890319056273035 -0.5915676236402138 0.8053162660872498 -0.03890319056273035 0.5915676236402138 -0.5421984100238716 -0.1706823745167251 -0.8227322840371089 0.5421984100238716 0.1706823745167251 0.8227322840371089 -0.7308172781272795 -0.3129338373834094 -0.60661233041468 0.7308172781272795 0.3129338373834094 0.60661233041468 -0.4946782400134846 -0.4107007204322739 -0.7659101494911609 0.4946782400134846 0.4107007204322739 0.7659101494911609 0.5477687006081097 0.705830777747373 0.4491685249643411 -0.5477687006081097 -0.705830777747373 -0.4491685249643411 0.4230660660035778 0.4905603113941648 0.7618173565108086 -0.4230660660035778 -0.4905603113941648 -0.7618173565108086 -0.9639875372890381 0.03017184867160515 0.2642303682379318 0.9639875372890381 -0.03017184867160515 -0.2642303682379318 -0.3068048893822191 0.003413062047218768 0.951766311054676 0.3068048893822191 -0.003413062047218768 -0.951766311054676 -0.9386491960233321 0.03928995933307447 -0.3426280576665571 0.9386491960233321 -0.03928995933307447 0.3426280576665571 -0.7845604671848272 -0.1951769569427006 -0.5885327763254251 0.7845604671848272 0.1951769569427006 0.5885327763254251 -0.9393739826382334 0.0006643069749497271 -0.3428936853291808 0.9393739826382334 -0.0006643069749497271 0.3428936853291808 -0.9393627354388413 0.0006410171626454632 -0.3429245403377464 0.9393627354388413 -0.0006410171626454632 0.3429245403377464 -0.9393707871345157 0.0006503156483142318 -0.3429024662609445 0.9393707871345157 -0.0006503156483142318 0.3429024662609445 -0.9393858151819967 0.0007508352660037245 -0.3428610891910293 0.9393858151819967 -0.0007508352660037245 0.3428610891910293 -0.9393749440430065 0.0007494343761093713 -0.3428908760120547 0.9393749440430065 -0.0007494343761093713 0.3428908760120547 -0.9393706349601151 0.0007184916840570121 -0.3429027470644266 0.9393706349601151 -0.0007184916840570121 0.3429027470644266 -0.9393774967244869 0.0007332103915556257 -0.3428839177479142 0.9393774967244869 -0.0007332103915556257 0.3428839177479142 -0.9971242869243636 0.03652602847978859 -0.0664003438927319 0.9971242869243636 -0.03652602847978859 0.0664003438927319 -0.7373166601176144 -0.1107468138559625 0.6664077475043031 0.7373166601176144 0.1107468138559625 -0.6664077475043031 0.117200890801949 0.2980435715410924 0.9473299217581271 -0.117200890801949 -0.2980435715410924 -0.9473299217581271 -0.9195739989367627 -0.2021364701998765 -0.3369339815076314 0.9195739989367627 0.2021364701998765 0.3369339815076314 -0.710960969287894 -0.4576456895764533 -0.5339428086989381 0.710960969287894 0.4576456895764533 0.5339428086989381 -0.8327848895967537 -0.3265070939497657 -0.4470597781726753 0.8327848895967537 0.3265070939497657 0.4470597781726753 -0.9393686625186729 0.0007466450868659529 -0.3429080903084584 0.9393686625186729 -0.0007466450868659529 0.3429080903084584 0.4125985842833128 0.6241671444098168 0.663458954334555 -0.4125985842833128 -0.6241671444098168 -0.663458954334555 -0.9437441686078724 -0.1746371064618844 0.2808003298880828 0.9437441686078724 0.1746371064618844 -0.2808003298880828 -0.3076367097576911 0.009034419447857814 0.9514609997654672 0.3076367097576911 -0.009034419447857814 -0.9514609997654672 -0.9785309184006823 -0.1982016884260379 -0.05650957829417122 0.9785309184006823 0.1982016884260379 0.05650957829417122 -0.8292727824263236 -0.4679301182566809 -0.3055291422355518 0.8292727824263236 0.4679301182566809 0.3055291422355518 -0.8889076873737911 -0.3206636371950923 -0.3271359887089659 0.8889076873737911 0.3206636371950923 0.3271359887089659 -0.9393765001578003 0.0006796477173609782 -0.3428867583186357 -0.9393684132680966 0.0007475143312173088 -0.3429087712154695 0.9393684132680966 -0.0007475143312173088 0.3429087712154695 0.9393765001578003 -0.0006796477173609782 0.3428867583186357 -0.6972138643777165 -0.2684413314761774 0.664704504930415 0.6972138643777165 0.2684413314761774 -0.664704504930415 0.1853846871193252 0.454094635493599 0.8714531426287965 -0.1853846871193252 -0.454094635493599 -0.8714531426287965 -0.8860715267852453 -0.4605499260129334 -0.05264043189360979 0.8860715267852453 0.4605499260129334 0.05264043189360979 -0.9261804971935849 -0.3171068437321693 -0.2040415062590594 0.9261804971935849 0.3171068437321693 0.2040415062590594 -0.9393832217065231 0.0006577869272402029 -0.3428683859626487 0.9393832217065231 -0.0006577869272402029 0.3428683859626487 -0.8692191199475498 -0.4145367328698739 0.2694761930471368 0.8692191199475498 0.4145367328698739 -0.2694761930471368 -0.2112153012424403 0.1239840947019398 0.9695442438496582 0.2112153012424403 -0.1239840947019398 -0.9695442438496582 -0.9532471886245345 -0.3012622693908256 -0.02368211183384631 0.9532471886245345 0.3012622693908256 0.02368211183384631 -0.9435863980596823 -0.1957734034073722 0.2670533353378111 0.9435863980596823 0.1957734034073722 -0.2670533353378111</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"266\" source=\"#ID79\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID77\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID80\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1344\">1.619940663751411 -0.5362174691976966 1.613846557947723 -0.5017271521305829 1.836114619655016 -0.4916143526109842 5.771260477422451 0.0734402400975003 5.778516163528459 0.03908932103959196 5.683327532901288 0.0390735980818707 1.013713383320064 1.348938574794434 1.230728295956212 1.3909385420679 1.244657916080953 1.357901235720828 1.851542131741161 -0.6933212301949294 1.629281880835274 -0.7035397143174436 1.843711701956062 -0.6590665075198411 5.750992150815773 0.1020487929024041 5.771629536923543 0.07292988606899389 5.683697328424739 0.03856207864578082 5.778516333721045 0.0384503001934367 5.771278556264129 0.004093121027264076 5.683327703094029 0.03843457665509981 -1.36129387662527 0.7146292361098703 -1.373412434552412 0.7481054592727344 -1.085245988633699 0.7501305827269096 1.042264173133666 1.105680513481854 1.026680915775881 1.138277373706746 1.25762345915204 1.147271701316672 -0.9533113756527406 -0.9874977370150897 -0.9559962434775798 -0.9527577037205379 -0.6732718861217429 -0.9483976736708046 2.273858580643569 -2.276982527023954 2.2768013411733 -2.243724166483653 2.486285836560912 -2.226913973983119 5.719229934352534 0.1219010763660958 5.750119181521162 0.1024442784082792 5.68282113769674 0.03895967738315521 5.771592897026315 0.004656349823180232 5.750971845768776 -0.02447029179827442 5.683641419902921 0.03899681652744076 -1.860588190318298 3.154229687137683 -1.584460234643399 3.189343581926385 -1.576818068449811 3.157610702835063 -1.375882141952869 0.970829533683324 -1.095215580807107 1.007040408900814 -1.087715573356463 0.9728438253005183 0.299672488534154 3.464290623319485 0.5149517431601536 3.506137428848698 0.5345265100463381 3.476738120539312 -0.6674394257889194 -1.16710067635655 -0.9501623321362684 -1.17151854966625 -0.6747949134391407 -1.132884079746303 2.365664167113472 -2.760604537145424 2.57264895253524 -2.709699814011214 2.575020887356716 -2.742836544082699 5.684019527455241 0.1286430516699855 5.720449573903224 0.1218186530629061 5.684046663755639 0.03887565512981509 3.524288174154021 -4.153586329718942 3.532725286339523 -4.123172807589194 3.724314143050513 -4.087676906240269 5.750051068639311 -0.02526298293343521 5.719170715305216 -0.04472634600013511 5.682724014993886 0.03820633920893721 0.3769189552788338 2.847514955246447 0.3529358568563651 2.875002380782882 0.5878019828602177 2.887307729561664 -4.416007428413155 2.642239149393477 -4.424919397124604 2.673766394861575 -4.151657435624867 2.651191048843345 -1.827583867839416 2.501154979313117 -1.848194911464509 2.530112679597738 -1.564424291873586 2.533467744031272 -4.302746967210638 0.7640969585229374 -4.307230387189139 0.798619081474214 -4.029121585587762 0.7737329990590853 -4.191219685300024 -1.038349402467703 -4.190886611113217 -1.00364798615899 -3.914384642568414 -1.027570042644774 -0.4828936110712395 -2.827271504267202 -0.4766757241225178 -2.794444705642271 -0.2089133383215913 -2.782952236830445 5.685034350648311 0.1288511212866728 5.685066791064555 0.03908372583573953 5.648615988162037 0.1220102507647917 9.003925651227013 -1.582225864756775 8.988558356441066 -1.555360862926255 9.071398748130621 -1.42608384892452 3.928184648118962 -4.583338050699777 4.116833436486531 -4.511407321671815 4.117925898085868 -4.542155959012292 5.685319396431342 0.03944268274648118 5.721778563210672 -0.04348661136288807 5.685353146744804 -0.05032711075721768 -0.5611049140248847 4.911213825145168 -0.591503150633188 4.93114132602554 -0.3579215445064632 4.951825716237154 -0.7436788908035641 5.625439958852236 -0.5348362375169496 5.671412143014889 -0.5102955062754649 5.647465530726081 -4.301157819088672 4.797794894030605 -4.563957141887809 4.815755131679201 -4.299662100001466 4.825660364575621 -4.13972959611697 2.738187058951259 -4.412988596937202 2.760784571725561 -4.139352146361913 2.77022409267287 -2.54932334401649 5.358571036064803 -2.287104079908336 5.395311154017087 -2.278751543403887 5.367520261208195 -4.024892946958188 0.8033939850798529 -4.30300512909942 0.8282566773702877 -4.026111142228624 0.8380544365145123 -3.919065677488451 -1.057819433587963 -4.195559897560815 -1.033842018004807 -3.921993983162364 -1.023225768234507 -0.4185409081226615 -3.385515222052097 -0.1581648865923863 -3.341398190278865 -0.1508391842109891 -3.373179164807823 5.647657503310684 0.1215527002061922 5.684103679856141 0.03862491692143853 5.616777510095222 0.1020874951803267 2.589733919600477 7.003077785279044 2.554705917251536 6.992672442845839 2.401366746613284 7.058921181604996 9.393827081815365 0.2391323439353595 9.40266179659629 0.3973351886024577 9.432684295061447 0.3806420697550928 0.5025310397084046 -4.988877140356379 0.5144515645830259 -4.959580721650704 0.7579586323948353 -4.929498172098796 5.683669481526682 0.03910621148369183 5.683694654134307 -0.05066358376212161 5.647271910136958 -0.04383681065607089 -2.561959380242889 6.944335344099695 -2.596993967154515 6.954742003856614 -2.373592417839188 7.000190505670715 -2.702137029903522 7.132034911443729 -2.923756901269518 7.081475652123408 -2.732270563775011 7.148603879586429 -2.467435100021785 4.592509301004865 -2.494649281086138 4.614595820596708 -2.224049902225317 4.623013222445562 -5.36164484362815 4.586123819740367 -5.362192908928294 4.614010788500421 -5.096611154048744 4.582471502577178 -4.56688003112652 4.689727902756597 -4.57930200711115 4.716561020899873 -4.316484865191646 4.698762874224935 -5.440969886436216 2.692233501350221 -5.441119011272154 2.724271696265192 -5.164701718585753 2.688471620540477 -5.500788962026832 0.9402364799944278 -5.500283964943947 0.9749079010736622 -5.21701686762737 0.9360782703663532 -5.550290642101149 -0.7277531729571569 -5.549047328610682 -0.693096692605817 -5.26389781890407 -0.7324689153635181 -4.036256128223102 -2.954209003928445 -4.031561564195668 -2.922121583880448 -3.762855291998268 -2.941225105044576 5.616582470712541 0.1019192748789323 5.683907920827861 0.03845622416289126 5.595959486822548 0.07279163191781758 0.9485481630149456 4.719783956197679 0.9177410871016201 4.700247380171296 0.7602327978503798 4.75367462515718 3.072706013482189 7.028682182293315 2.892949862118324 7.084343539764074 2.923456550359094 7.100478524638944 8.667863687869488 -2.549622785560057 8.647926724476196 -2.525323072178259 8.715137888319841 -2.359345478300862 0.9112050698282426 -5.608788139435831 1.143556302597768 -5.544144004815419 1.153142210698788 -5.571685733466637 5.684599104662434 0.03904258699742706 5.64820599884873 -0.04390164775393446 5.617313552627433 -0.0244502760703929 -8.580844810615245 -2.52905113808391 -8.591414311221001 -2.557307821283608 -8.656712686176773 -2.389292430150153 -9.43662006136109 0.4074293301469209 -9.457663243961537 0.2325184534252773 -9.466623837960949 0.3907209150934053 -3.699148926196413 6.645872898822612 -3.731051530223564 6.660247001561825 -3.481143517260459 6.683439111398497 -3.64004296827223 6.855839769674712 -3.88949658934957 6.829795703199483 -3.65138347528706 6.87980995602046 -4.994125480006238 6.160863198340516 -5.006778514780404 6.137674035888735 -5.259108604376683 6.166333546234884 -5.126363043889109 4.469682957820198 -5.392010603201445 4.500877403808089 -5.11575059352798 4.496761427074305 -4.628176790071787 6.415622447031654 -4.876761810265183 6.426236510537431 -4.626726637297842 6.440133143373526 -5.185703839608864 2.590417465035719 -5.462130097249499 2.626174678216572 -5.178355964517593 2.622103462375783 -5.224788700592726 0.9007578834621121 -5.50804485453766 0.9396368862139409 -5.22164086321596 0.9353614403237647 -5.540320307336977 -0.6583556220892282 -5.256558835524158 -0.6629335021782893 -5.255143829357484 -0.6976067833444801 -3.777112743499354 -3.023051129941048 -4.04579065902626 -3.003702364183223 -3.781672648037275 -2.99121622453559 5.596219326529494 0.0732574920260865 5.684168278331471 0.03892290506316366 5.588990967175316 0.03890468605894603 0.4998097920681904 2.453886604604937 0.4756079876757702 2.426516097881019 0.3171209089754962 2.483268165560494 1.267798329451585 5.383283569880579 1.423771492851449 5.327138408258841 1.242077378110208 5.360117080156955 3.716323320198441 6.707602605352751 3.684422999876136 6.693231963591493 3.498317961081459 6.745168025005574 9.344200343447417 1.16030958054039 9.26796239366251 1.325311722897352 9.299679747214773 1.330948062172947 -3.638589467194065 -5.144094677951412 -3.631313215788357 -5.116118827494002 -3.375292523768128 -5.123506085704157 5.684333159636095 0.03916320953088037 5.617046629634652 -0.02432901216832 5.596405786960629 0.004791846405160305 -1.979998524869254 -4.292231232359522 -1.966019939634636 -4.321352069247738 -2.156718727576579 -4.245419612231467 -3.356419095637832 -4.784552375798672 -3.177423250337188 -4.876439142279571 -3.354261724503482 -4.815266301684429 -7.561216541310131 -4.115292821471752 -7.573151951854512 -4.142644503106019 -7.633207647570638 -3.96834156804957 -9.293052612876728 1.341556749601224 -9.401161974604914 1.182243650014989 -9.32477316452411 1.347202829535455 -4.869964308023862 6.377934111765112 -4.8848413574723 6.400675942944742 -4.636245593820659 6.390218752929163 -6.07286041884511 5.470690714683427 -6.332373990554641 5.525748821587173 -6.324262199234997 5.550163840109545 -4.982097524888515 6.172184478721647 -5.233853154708968 6.176821155594962 -5.234332882127718 6.201355482769962 -7.247121350747163 4.027842168054396 -7.241468022229128 4.055827198921337 -6.958920755375172 3.987688333365518 -7.64215543430428 2.706222353546021 -7.636284749546447 2.738098460390365 -7.333114764115316 2.667168061082732 -7.904473707186456 1.593705962947574 -7.897600379347402 1.627974058318311 -7.582171699315598 1.552126328674518 -8.129314786199577 0.6211338347343134 -8.121211181959145 0.6552342303022353 -7.803191481485429 0.574859198644154 -5.603895166475303 -2.464050242442858 -5.601954388676592 -2.432050278125148 -5.320166773080404 -2.469757582269813 5.684168133723978 0.03939144153358901 5.596240432571903 0.005020598424682573 5.58899082256767 0.0393732230226368 0.2609407075899523 0.7662683350253778 0.2464178553673385 0.7333756776812409 0.08244092777695111 0.7946065141369463 0.6692709134033237 3.073392454663266 0.8275744370277732 3.016324231663723 0.6489799187466167 3.044290578172518 2.914087841273369 4.373778203064759 2.886381843409347 4.352074408209947 2.715611208776685 4.394363588837614 4.112391869781885 6.752711646038292 3.916918130189838 6.78670937210445 3.929066245460942 6.81044191996446 8.597573059976908 3.1134257125061 8.569003321645953 3.101210943013873 8.400959997930153 3.23573385271581 -3.645573854009589 -5.205905116017523 -3.396171407572772 -5.186190643465025 -3.389567453954982 -5.21359278206677 -0.6237742695409254 -2.262293632617847 -0.6162776662729164 -2.29510980438105 -0.8008728259144898 -2.228944788320345 -1.324403197915005 -2.887697376925141 -1.142707894193754 -2.958656093541742 -1.322884421832762 -2.920867847297965 1.44619367991595 -4.643821647288538 1.46463209016117 -4.670947905366278 1.268428130761601 -4.616933790719322 -0.1346704162189716 -5.69497690456166 0.05098800274990267 -5.768526732673512 -0.1407112346029149 -5.723136177364614 -8.30779216894544 3.394367136317387 -8.48326313202746 3.292850927761829 -8.511445552161902 3.305619598484514 -7.962904352894063 3.90877979757036 -8.174643574304826 3.83263813770047 -7.976468699194655 3.930877081942786 5.244229109527849 5.959529036035123 5.217118252744867 5.978516796625582 5.249348931055446 6.170935451051902 -6.213938937078119 5.334279439823904 -6.243474750498419 5.317684818608774 -6.496968739352367 5.392932828999133 -3.053093782863408 6.909506753450412 -3.07222231678322 6.889245278357064 -3.296820632536994 6.95933983652242 -7.08483066240791 3.732139032860339 -7.368235455741166 3.798037197539121 -7.059931435450571 3.755532283334331 -7.405682702620627 2.478921781926116 -7.708984472013555 2.549502668052206 -7.386582836601299 2.508403793861222 -7.606157635594927 1.49141616921262 -7.921497907093262 1.567491054517074 -7.594546020387012 1.524988479135021 -8.096383167409147 0.7057872019862346 -7.774834056208714 0.6607276196604602 -7.778112136670967 0.6260301919090223 -5.572052791773422 -2.344558996903286 -5.295821959913587 -2.34974542234395 -5.290132020227484 -2.381645242672343 -0.04493796829425523 -0.6804333687833346 -0.04812183143536819 -0.7151659775523823 -0.2216357719088419 -0.6511069129760208 0.2146031608462551 1.019503007775851 0.378776636687172 0.9585989727452969 0.2016363736440807 0.9862242392562028 2.851193736355579 2.121199178873979 2.830530186218446 2.092259984246353 2.671287314240473 2.136986624537561 3.210433857256208 5.217882736047205 3.380004084656394 5.172703069927436 3.200391430161433 5.190440114097691 4.874548435766551 6.429839837451818 4.8596573276466 6.407094835190613 4.640829891298521 6.442130835704692 8.140814775315286 3.78974305685948 7.942648003681906 3.887992661778128 7.956213016474014 3.910087667730711 -5.73064914030279 -4.258906631492967 -5.457350933574708 -4.295846322779151 -5.733416338800293 -4.286711804356949 -0.1979483730046061 -0.9529180326137299 -0.3759270801434889 -0.9226072555480928 -0.3709597723457686 -0.8880232614150131 2.471740617996483 -2.39641028024239 2.483667763629212 -2.428248508037898 2.304631391555998 -2.380038236975361 1.706465342929101 -3.398810757327853 1.882755430859778 -3.45292282266539 1.703883154092827 -3.43104364641585 3.663826807537205 -5.058099271887226 3.867017257693361 -5.071442611882878 3.875328351798353 -5.099241550009557 3.546949641461736 -5.204786830846116 3.757786403330053 -5.247989096006686 3.540891660310312 -5.232263500799691 -3.719983169175907 6.709259388348319 -3.955041191334191 6.741412177170066 -3.950707790311418 6.76571302493091 3.207237620922375 6.760309367766829 3.205697714796032 6.884373949705359 3.237968071284741 6.87129973348397 2.71836963588698 6.955938591004199 2.643738667999106 7.139481731582862 2.67439868026482 7.146913204001043 -6.673875480347463 4.929980155275759 -6.827551760709345 4.985726092375737 -6.799759036566416 5.004089692531792 -8.041638509701523 3.462054168216795 -8.019730434175074 3.487231284284867 -7.867897563958934 3.421921478705819 -8.465434558910218 2.594488712837228 -8.447798478652601 2.62452979293724 -8.280260285826683 2.556644135527951 -8.489853494364654 2.015456063645019 -8.681731702440303 2.054683786781513 -8.668209328905455 2.087810513189702 -8.615883842455308 1.675419869276102 -8.809070055157438 1.71822637717244 -8.799456048663686 1.752187564289123 -8.383413956562865 -0.208860780062662 -8.074128844644719 -0.2957553748595546 -8.393006850053908 -0.2401766799348658 2.910415331761248 0.5002001580095155 2.90001779392691 0.4663678523011883 2.742913490552973 0.5138640038345921 3.061575968768659 2.979150420011122 3.220724728902601 2.934216961777545 3.053178380804451 2.947538842408506 4.611258982889346 4.752849140734649 4.598727642118561 4.72604749443345 4.393635926502052 4.760028617231185 4.890639490138161 6.416107688973201 4.67327925239847 6.427166271375205 4.671952480520878 6.451682150945595 3.558310174515268 6.858448376779172 3.294490571738939 6.834771662509112 3.552510865243352 6.88255749581085 -5.660762004745068 -4.187828860526787 -5.395863931408391 -4.195431560943416 -5.387067279186301 -4.222904746339228 2.845925978076525 -0.8490627157231938 2.847239824624465 -0.8838514188327487 2.682807024405622 -0.8354986339624942 2.667455759507103 -1.251624583802213 2.500120987715268 -1.236746312810481 2.503562196626869 -1.202151807089803 4.246404101003895 -2.878698216903488 4.252006989534803 -2.910692879271482 4.052017385987604 -2.871333267858569 3.999075742993286 -2.998898309632048 4.198842363777092 -3.038952548225522 3.995209126676578 -3.030793600690773 5.224559176740601 -4.471932540129242 5.451866419099465 -4.467714518620189 5.45342011706218 -4.495574607842248 5.276578896826958 -4.346573707344106 5.285998818079652 -4.319227069055942 5.515077591108759 -4.341525387462998 8.76992928250457 0.7931378170681543 8.781246852195157 0.822964758607844 8.91750916719236 0.8369004254560353 5.454819931525203 5.774979439755891 5.438892046984051 5.801636547383986 5.508081672766806 5.901339801016119 8.307666585764583 -1.123804771503647 8.318244655158576 -1.094450092419963 8.543170996483735 -1.070773087765305 -6.99445915595618 4.617630292792419 -7.029238702488101 4.606699740324029 -7.159954343912172 4.675437740008153 -8.077557467285487 3.107186595085773 -8.231674759177464 3.169096597927384 -8.047749834980579 3.127652876541906 -8.377298220836005 2.39661395425165 -8.545373207110847 2.463673439697669 -8.353563822226445 2.424237975417156 -8.49958007699728 2.012770143201586 -8.515489481780616 1.980273254157807 -8.693719349471335 2.052819540140382 -8.589192053205473 1.720319789859238 -8.596166837426104 1.685934658432313 -8.780249100694144 1.761942752364017 -8.298043634641619 -0.1220147028500511 -7.991646190182824 -0.1723444802677662 -7.987133271535171 -0.2052426539596612 2.901507908494777 0.8562299904322406 3.058848826558489 0.8092210452807116 2.895607012733823 0.8218373312986727 4.518024461486122 2.698701214804513 4.509072063129959 2.667183999331559 4.314262999384527 2.704541868593081 4.43615323997166 4.859893217004145 4.641148657717239 4.825554387755506 4.437417693647018 4.83201999369583 5.231687984906028 6.202493182026287 4.980411586168624 6.222385037355247 5.23216710628925 6.227028374247662 3.31070475680292 6.909450371292843 3.066999198626133 6.859552613209947 3.047861030092218 6.879808391990907 -8.852141192071063 -0.4721833525155892 -8.572104589030143 -0.584149427709649 -8.865553288376802 -0.4984767425031667 4.383277596557019 -0.9703164350082597 4.384233889511629 -1.00500854075006 4.192074091795119 -0.9644786168449441 4.176033042626822 -1.01111114523631 4.368146312940617 -1.05177733749157 4.173686020948338 -1.045732735005197 5.319938273639886 -2.597084929179837 5.320816204336861 -2.629117487317422 5.10006898952085 -2.599084903763264 5.13820867252681 -2.461632476964901 5.359088894745606 -2.491053648364738 5.131738605725835 -2.493436923101918 8.407159244259502 -1.21726296456864 8.620821399399713 -1.162140338743266 8.63127955419581 -1.189252455245153 4.528587017767162 -0.02641170334488021 4.497699283455415 -0.04586685038860851 4.46130134568214 0.03707477433640671 8.803758288345591 0.7456149804471391 8.939097696542799 0.7932262656363351 8.939436819185779 0.7627160713532108 4.460459536095858 0.03671129283708071 4.49685343594146 -0.04623142840983539 4.460430386658008 -0.05305915144846824 4.461401517562886 0.03686151698430007 4.461377258793934 -0.05290892820156359 4.424948741815012 -0.04606697911144887 4.460201965536864 0.03699704956974839 4.423743437030018 -0.04592988149532395 4.392871851205832 -0.02646411253551594 4.459853063353561 0.03717094384205769 4.392521668794053 -0.02628937768656717 4.371892838109163 0.002837012659116112 4.46030882180899 0.03651959677391967 4.372349501451534 0.002184231002592093 4.365120183165604 0.03654031200201141 4.372372628472493 0.07151854504854761 4.460309042390368 0.03714823679994782 4.365120403746716 0.03716895127662532 -8.692847217974084 1.545343360804858 -8.88046059017552 1.595736369065635 -8.873804038316852 1.628408569577701 4.457594078254536 0.8211222757485189 4.453360548884101 0.7865779258220966 4.263106471524915 0.8266050940870721 4.349027318188401 2.812213945169185 4.543822040409512 2.774809825120358 4.349329252298876 2.780177696524552 5.287626271073044 4.684981160200084 5.287219963686873 4.657092025211705 5.049061512377468 4.682545124536409 5.212927123046342 6.185565883910937 4.974387162667712 6.181924996350574 4.961601159714077 6.205066389024376 -2.769837363284249 7.106560558728847 -2.875320188287005 6.890935407414553 -2.800658644767653 7.113566861210577 -8.40635272720972 -0.7404675769389774 -8.397635060647142 -0.7701983909791447 -8.685551039872424 -0.6713702382917143 4.277606690294204 0.8717851468593341 4.467880180442919 0.8318151239353879 4.276651714627878 0.8371229192208669 5.277518695450643 -0.7861156721666167 5.2780353752537 -0.8207840754168208 5.060271186983167 -0.7876014305827878 5.072896601442999 -0.7361859931783535 5.290693392453745 -0.7692359557974751 5.070818838281209 -0.7708377493860409 7.752320879486677 -0.815634093393138 7.960279861130616 -0.7854237819541431 7.966929169676278 -0.8172053419659937 7.756268297219876 -0.5106367060453658 7.970877719783358 -0.5121091333148329 7.749542183438701 -0.5432998544074876 4.54896506610784 0.002494817847126293 4.52832980994388 -0.02662167391076578 4.461045078771744 0.03686542088697709 8.471142945786282 0.7317644909466251 8.608364977868966 0.727454718084664 8.464646331275617 0.6988226688018977 4.392805397245467 0.1002596017002513 4.460091999127723 0.03676921779013002 4.372156016577284 0.07114020902000419 -8.661765550226443 1.490152638466672 -8.660010180941812 1.456837393641249 -8.844288917909376 1.535252928071866 5.282073843692743 2.77826056913915 5.281990368352663 2.74622350729675 5.054714328947004 2.77652368092618 5.25524872040469 4.538789907910283 5.027891262692011 4.536893693824378 5.017033020420198 4.563909288279159 6.324735945896386 5.547955898162823 6.057108866597945 5.517318246759454 6.316625784021564 5.572368795969156 -5.171992694385841 5.96078681863121 -5.199100239339689 5.941802143399436 -5.177102212115647 6.172193961391411 -8.734637861296427 2.253355305893985 -8.57512569154439 2.150988707709166 -8.742758106069079 2.223519983419607 5.271435059783841 0.9659776987075038 5.271663234763903 0.9313077956459605 5.051558756737666 0.9645213127699988 5.259973374209189 0.8804458520093909 5.042724405532344 0.8790986888390493 5.039883034129148 0.9137172972381544 7.642158445271394 0.2861765293495928 7.648252285721511 0.2518190687301 7.437572311646674 0.2625473983699317 7.447216269288958 0.3897562336038156 7.657907695074914 0.379167991525558 7.448679477244231 0.3549816491299752 8.457255599261766 0.4005989649232058 8.594723473570284 0.429011511997523 8.594458268094895 0.3959232265597514 4.55659693984642 0.03750324897989772 4.549340962523218 0.003151046568942362 4.461420229561208 0.03752046925485183 4.423674434264032 0.1197001367480126 4.460076033603965 0.03675617630689763 4.392789490340109 0.1002465986616575 5.254291552091464 2.622599776821264 5.034414921811282 2.621174292000391 5.027005795765879 2.652854811490564 7.075637084872096 4.166225394866737 7.08174621608214 4.138302128714233 6.833895663818552 4.135070975690361 6.165886087263003 5.39481491611344 6.136112467866505 5.411145787013433 6.404110533357063 5.439706168541727 -2.762575856170686 7.000904422486411 -2.790781249043742 6.846675808502423 -2.795603585611011 6.989067957824188 -8.702669161745337 1.568940343562624 -8.695452768587304 1.538337791588719 -8.868656310130136 1.625858514697937 7.458692868491122 1.49558732789169 7.464888725195936 1.46124074692423 7.24913406967041 1.473268274111121 7.454405578342742 1.335080218524416 7.249464990515346 1.313435234817762 7.238656992412899 1.347174936169087 8.322582891898371 0.9974536615701256 8.327949185315202 0.9629170762017794 8.185646700759257 0.9744376532228073 8.200077318221679 1.114587443871882 8.342404957382749 1.103260797492331 8.203418269607138 1.079863562102585 4.549359237757692 0.07112002494902815 4.556596724507694 0.03676511143898095 4.461420014222696 0.03678233244741672 4.461100903142934 0.1269562658758845 4.461074953590937 0.03718753011993907 4.424668563021831 0.120130189205036 7.312622210591013 2.790872194196395 7.318783500968848 2.759026713980688 7.089901216091215 2.766524808805758 7.092058531659565 3.821989058166489 6.869658853247844 3.795887237322841 6.844204893344118 3.818907879671726 6.829884711987325 5.010664637021248 6.648412208270865 4.973277014582632 6.802085706819893 5.029023555430791 -5.377629787839329 5.7964764533189 -5.393577288687887 5.769819168261567 -5.430793614409249 5.922860502356951 7.300968871997586 2.438955546683173 7.09134858737015 2.416996713956953 7.072084155091899 2.446407557494349 8.162200133225813 1.793737807869269 8.174643604179328 1.760348669530641 8.022843958062268 1.771727549671615 8.159494923662852 1.617996035113387 8.022148715622286 1.596545134562194 8.007705996141191 1.629463060000011 4.528643064032052 0.1003865767564764 4.549261847374723 0.07125912380428487 4.461322430038266 0.03692173845406211 4.460546063433141 0.1268673404645122 4.496964697452659 0.1200267885895665 4.460517218740209 0.03709860525537007 7.799694177759466 3.677299978200762 7.822581943645002 3.652668286093621 7.646968487033075 3.646328395507186 6.896875631760279 4.734159474761321 6.861827229868409 4.744522600559201 7.044703940237076 4.777404512500175 8.039431588244 2.692269467299187 8.057984007583832 2.662576694149323 7.894354637798699 2.668250721389529 8.036198704186658 2.299836424912813 7.896775844967872 2.278089078509356 7.872566136927246 2.305453098225462 4.497544049806503 0.1199618105192656 4.528420815506976 0.1004971687639112 4.461099362781186 0.03703286791730859 7.859066668103008 3.266107975803739 7.714332995525491 3.240840086120174 7.683424882464392 3.260273915005729</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"672\" source=\"#ID80\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID76\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID74\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID75\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"448\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 16 12 6 13 8 14 9 14 11 13 17 12 7 15 18 16 8 17 9 17 19 16 10 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 28 30 16 31 8 32 9 32 17 31 29 30 18 33 30 34 8 35 9 35 31 34 19 33 12 36 20 37 32 38 33 38 21 37 13 36 2 39 24 40 20 41 21 41 25 40 3 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 26 48 38 49 14 50 15 50 39 49 27 48 40 51 28 52 8 53 9 53 29 52 41 51 26 54 42 55 38 56 39 56 43 55 27 54 30 57 44 58 8 59 9 59 45 58 31 57 46 60 22 61 34 62 35 62 23 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 40 78 8 79 54 80 55 80 9 79 41 78 42 81 56 82 57 83 58 83 59 82 43 81 42 84 57 85 38 86 39 86 58 85 43 84 8 87 44 88 60 89 61 89 45 88 9 87 62 90 46 91 63 92 64 92 47 91 65 90 46 93 34 94 63 95 64 95 35 94 47 93 66 96 32 97 48 98 49 98 33 97 67 96 48 99 20 100 50 101 51 101 21 100 49 99 34 102 32 103 68 104 69 104 33 103 35 102 50 105 24 106 52 107 53 107 25 106 51 105 52 108 36 109 70 110 71 110 37 109 53 108 38 111 72 112 36 113 37 113 73 112 39 111 54 114 8 115 74 116 75 116 9 115 55 114 56 117 54 118 76 119 77 119 55 118 59 117 56 120 76 121 57 122 58 122 77 121 59 120 38 123 57 124 72 125 73 125 58 124 39 123 8 126 60 127 78 128 79 128 61 127 9 126 80 129 62 130 81 131 82 131 65 130 83 129 81 132 62 133 63 134 64 134 65 133 82 132 63 135 34 136 68 137 69 137 35 136 64 135 66 138 48 139 84 140 85 140 49 139 67 138 68 141 32 142 66 143 67 143 33 142 69 141 48 144 50 145 86 146 87 146 51 145 49 144 50 147 52 148 88 149 89 149 53 148 51 147 52 150 70 151 90 152 91 152 71 151 53 150 36 153 72 154 70 155 71 155 73 154 37 153 74 156 8 157 92 158 93 158 9 157 75 156 54 159 74 160 94 161 95 161 75 160 55 159 54 162 94 163 76 164 77 164 95 163 55 162 57 165 76 166 96 167 97 167 77 166 58 165 57 168 96 169 72 170 73 170 97 169 58 168 8 171 78 172 98 173 99 173 79 172 9 171 78 174 80 175 100 176 101 176 83 175 79 174 100 177 80 178 81 179 82 179 83 178 101 177 81 180 63 181 102 182 103 182 64 181 82 180 102 183 63 184 68 185 69 185 64 184 103 183 84 186 104 187 66 188 67 188 105 187 85 186 84 189 48 190 86 191 87 191 49 190 85 189 106 192 68 193 66 194 67 194 69 193 107 192 86 195 50 196 88 197 89 197 51 196 87 195 88 198 52 199 90 200 91 200 53 199 89 198 70 201 108 202 90 203 91 203 109 202 71 201 70 204 72 205 110 206 111 206 73 205 71 204 92 207 8 208 112 209 113 209 9 208 93 207 74 210 92 211 114 212 115 212 93 211 75 210 94 213 74 214 114 215 115 215 75 214 95 213 76 216 94 217 116 218 117 218 95 217 77 216 76 219 116 220 96 221 97 221 117 220 77 219 72 222 96 223 110 224 111 224 97 223 73 222 8 225 98 226 118 227 119 227 99 226 9 225 98 228 78 229 120 230 121 230 79 229 99 228 120 231 78 232 100 233 101 233 79 232 121 231 100 234 81 235 122 236 123 236 82 235 101 234 122 237 81 238 102 239 103 239 82 238 123 237 102 240 68 241 106 242 107 242 69 241 103 240 124 243 104 244 84 245 85 245 105 244 125 243 104 246 106 247 66 248 67 248 107 247 105 246 84 249 86 250 126 251 127 251 87 250 85 249 86 252 88 253 128 254 129 254 89 253 87 252 88 255 90 256 130 257 131 257 91 256 89 255 90 258 108 259 132 260 133 260 109 259 91 258 70 261 110 262 108 263 109 263 111 262 71 261 8 264 118 265 112 266 113 266 119 265 9 264 92 267 112 268 134 269 135 269 113 268 93 267 114 270 92 271 134 272 135 272 93 271 115 270 94 273 114 274 136 275 137 275 115 274 95 273 94 276 136 277 116 278 117 278 137 277 95 276 96 279 116 280 138 281 139 281 117 280 97 279 96 282 138 283 110 284 111 284 139 283 97 282 118 285 98 286 140 287 141 287 99 286 119 285 140 288 98 289 120 290 121 290 99 289 141 288 120 291 100 292 142 293 143 293 101 292 121 291 142 294 100 295 122 296 123 296 101 295 143 294 144 297 122 298 102 299 103 299 123 298 145 297 144 300 102 301 106 302 107 302 103 301 145 300 124 303 146 304 104 305 105 305 147 304 125 303 126 306 124 307 84 308 85 308 125 307 127 306 104 309 148 310 106 311 107 311 149 310 105 309 126 312 86 313 128 314 129 314 87 313 127 312 128 315 88 316 130 317 131 317 89 316 129 315 130 318 90 319 132 320 133 320 91 319 131 318 108 321 150 322 132 323 133 323 151 322 109 321 110 324 152 325 108 326 109 326 153 325 111 324 112 327 118 328 154 329 155 329 119 328 113 327 134 330 112 331 154 332 155 332 113 331 135 330 114 333 134 334 156 335 157 335 135 334 115 333 136 336 114 337 156 338 157 338 115 337 137 336 116 339 136 340 158 341 159 341 137 340 117 339 116 342 158 343 138 344 139 344 159 343 117 342 138 345 152 346 110 347 111 347 153 346 139 345 118 348 140 349 154 350 155 350 141 349 119 348 140 351 120 352 160 353 161 353 121 352 141 351 160 354 120 355 142 356 143 356 121 355 161 354 162 357 142 358 122 359 123 359 143 358 163 357 162 360 122 361 144 362 145 362 123 361 163 360 148 363 144 364 106 365 107 365 145 364 149 363 164 366 146 367 124 368 125 368 147 367 165 366 146 369 148 370 104 371 105 371 149 370 147 369 166 372 124 373 126 374 127 374 125 373 167 372 126 375 128 376 168 377 169 377 129 376 127 375 128 378 130 379 170 380 171 380 131 379 129 378 172 381 130 382 132 383 133 383 131 382 173 381 174 384 132 385 150 386 151 386 133 385 175 384 152 387 150 388 108 389 109 389 151 388 153 387 134 390 154 391 176 392 177 392 155 391 135 390 156 393 134 394 176 395 177 395 135 394 157 393 136 396 156 397 178 398 179 398 157 397 137 396 136 399 178 400 158 401 159 401 179 400 137 399 158 402 180 403 138 404 139 404 181 403 159 402 138 405 180 406 152 407 153 407 181 406 139 405 154 408 140 409 182 410 183 410 141 409 155 408 140 411 160 412 182 413 183 413 161 412 141 411 160 414 142 415 184 416 185 416 143 415 161 414 184 417 142 418 162 419 163 419 143 418 185 417 186 420 162 421 144 422 145 422 163 421 187 420 148 423 186 424 144 425 145 425 187 424 149 423 164 426 188 427 146 428 147 428 189 427 165 426 166 429 164 430 124 431 125 431 165 430 167 429 146 432 190 433 148 434 149 434 191 433 147 432 168 435 166 436 126 437 127 437 167 436 169 435 168 438 128 439 170 440 171 440 129 439 169 438 170 441 130 442 172 443 173 443 131 442 171 441 174 444 172 445 132 446 133 446 173 445 175 444 192 447 174 448 150 449 151 449 175 448 193 447 152 450 194 451 150 452 151 452 195 451 153 450 176 453 154 454 182 455 183 455 155 454 177 453 156 456 176 457 196 458 197 458 177 457 157 456 178 459 156 460 196 461 197 461 157 460 179 459 178 462 198 463 158 464 159 464 199 463 179 462 158 465 198 466 180 467 181 467 199 466 159 465 180 468 194 469 152 470 153 470 195 469 181 468 182 471 160 472 200 473 201 473 161 472 183 471 200 474 160 475 184 476 185 476 161 475 201 474 184 477 162 478 202 479 203 479 163 478 185 477 202 480 162 481 186 482 187 482 163 481 203 480 190 483 186 484 148 485 149 485 187 484 191 483 188 486 164 487 204 488 205 488 165 487 189 486 188 489 190 490 146 491 147 491 191 490 189 489 204 492 164 493 206 494 207 494 165 493 205 492 204 495 206 496 208 497 209 497 207 496 205 495 204 498 208 499 210 500 211 500 209 499 205 498 204 501 210 502 212 503 213 503 211 502 205 501 204 504 212 505 214 506 215 506 213 505 205 504 216 507 204 508 214 509 215 509 205 508 217 507 192 510 150 511 194 512 195 512 151 511 193 510 176 513 182 514 218 515 219 515 183 514 177 513 196 516 176 517 218 518 219 518 177 517 197 516 178 519 196 520 220 521 221 521 197 520 179 519 178 522 220 523 198 524 199 524 221 523 179 522 198 525 222 526 180 527 181 527 223 526 199 525 222 528 194 529 180 530 181 530 195 529 223 528 218 531 182 532 200 533 201 533 183 532 219 531 200 534 184 535 224 536 225 536 185 535 201 534 224 537 184 538 202 539 203 539 185 538 225 537 226 540 202 541 186 542 187 542 203 541 227 540 226 543 186 544 190 545 191 545 187 544 227 543 228 546 188 547 204 548 205 548 189 547 229 546 228 549 190 550 188 551 189 551 191 550 229 549 230 552 204 553 216 554 217 554 205 553 231 552 232 555 192 556 194 557 195 557 193 556 233 555 196 558 218 559 234 560 235 560 219 559 197 558 196 561 234 562 220 563 221 563 235 562 197 561 220 564 236 565 198 566 199 566 237 565 221 564 236 567 222 568 198 569 199 569 223 568 237 567 222 570 232 571 194 572 195 572 233 571 223 570 218 573 200 574 238 575 239 575 201 574 219 573 200 576 224 577 238 578 239 578 225 577 201 576 224 579 202 580 240 581 241 581 203 580 225 579 240 582 202 583 226 584 227 584 203 583 241 582 228 585 226 586 190 587 191 587 227 586 229 585 242 588 228 589 204 590 205 590 229 589 243 588 244 591 204 592 245 593 246 593 205 592 247 591 218 594 238 595 234 596 235 596 239 595 219 594 220 597 234 598 248 599 249 599 235 598 221 597 248 600 236 601 220 602 221 602 237 601 249 600 236 603 250 604 222 605 223 605 251 604 237 603 250 606 232 607 222 608 223 608 233 607 251 606 238 609 224 610 252 611 253 611 225 610 239 609 224 612 240 613 252 614 253 614 241 613 225 612 240 615 226 616 242 617 243 617 227 616 241 615 242 618 226 619 228 620 229 620 227 619 243 618 254 621 242 622 204 623 205 623 243 622 255 621 256 624 204 625 244 626 247 626 205 625 257 624 234 627 238 628 258 629 259 629 239 628 235 627 234 630 258 631 248 632 249 632 259 631 235 630 248 633 260 634 236 635 237 635 261 634 249 633 260 636 250 637 236 638 237 638 251 637 261 636 238 639 252 640 258 641 259 641 253 640 239 639 252 642 240 643 254 644 255 644 241 643 253 642 240 645 242 646 254 647 255 647 243 646 241 645 262 648 254 649 204 650 205 650 255 649 263 648 256 651 264 652 204 653 205 653 265 652 257 651 248 654 258 655 264 656 265 656 259 655 249 654 264 657 260 658 248 659 249 659 261 658 265 657 258 660 252 661 262 662 263 662 253 661 259 660 252 663 254 664 262 665 263 665 255 664 253 663 264 666 262 667 204 668 205 668 263 667 265 666 258 669 262 670 264 671 265 671 263 670 259 669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID76\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID77\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID81\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID82\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID86\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7651680707931519 -0.5068138837814331 0.2471411228179932 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7676184773445129 -0.5025306940078735 0.2398613393306732 0.7681378126144409 -0.5068138837814331 0.2387912273406982 0.7651680707931519 -0.5068138837814331 0.2471411228179932 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.766562283039093 -0.4993950724601746 0.243329256772995 0.766562283039093 -0.4993950724601746 0.243329256772995 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.7745932340621948 -0.5068138837814331 0.251851499080658 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7779510021209717 -0.5025306940078735 0.244934618473053 0.7745932340621948 -0.5068138837814331 0.251851499080658 0.7784707546234131 -0.5068138837814331 0.2438645660877228 0.766562283039093 -0.4993950724601746 0.243329256772995 0.766562283039093 -0.4993950724601746 0.243329256772995 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7779510021209717 -0.511097252368927 0.244934618473053 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7676184773445129 -0.511097252368927 0.2398613393306732 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.766562283039093 -0.5142327547073364 0.243329256772995 0.766562283039093 -0.5142327547073364 0.243329256772995 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.4993950724601746 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7765321731567383 -0.5142327547073364 0.2478581666946411 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.7651680707931519 -0.4982473850250244 0.2471411228179932 0.766562283039093 -0.5142327547073364 0.243329256772995 0.766562283039093 -0.5142327547073364 0.243329256772995 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7745932340621948 -0.4982473850250244 0.251851499080658 0.7637738585472107 -0.4993950724601746 0.251316100358963 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7745932340621948 -0.5153806209564209 0.251851499080658 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7651680707931519 -0.5153806209564209 0.2471411228179932 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7726544141769409 -0.4993950724601746 0.2558450102806091 0.7627177834510803 -0.5025306940078735 0.2542395889759064 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7726544141769409 -0.5142327547073364 0.2558450102806091 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7637738585472107 -0.5142327547073364 0.251316100358963 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7712353467941284 -0.5025306940078735 0.2587684094905853 0.7621981501579285 -0.5068138837814331 0.2553094029426575 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7712353467941284 -0.511097252368927 0.2587684094905853 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7627177834510803 -0.511097252368927 0.2542395889759064 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603 0.7707160115242004 -0.5068138837814331 0.2598385214805603</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID86\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID83\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID87\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">0.375978209953221 0.5217944735711745 -0.7657485964668513 0.4407333323315916 2.066001226809362e-006 -0.897638083955679 0.4407333331654882 2.066979567289028e-006 -0.8976380835462399 -0.4407333331654882 -2.066979567289028e-006 0.8976380835462399 -0.4407333323315916 -2.066001226809362e-006 0.897638083955679 -0.375978209953221 -0.5217944735711745 0.7657485964668513 -0.9443384505283671 4.81767848970578e-008 -0.3289755171037514 -0.9421829832111356 -5.11061567637383e-007 -0.335098830417392 -0.9466350234875653 -0.006131783125161065 -0.3222491792734352 0.9466350234875653 0.006131783125161065 0.3222491792734352 0.9421829832111356 5.11061567637383e-007 0.335098830417392 0.9443384505283671 -4.81767848970578e-008 0.3289755171037514 0.3699653038975272 0.5173306518499654 -0.771683011714331 -0.3699653038975272 -0.5173306518499654 0.771683011714331 0.378595662181366 -0.5119595283111984 -0.7710789622009072 -0.378595662181366 0.5119595283111984 0.7710789622009072 -0.9453780427562016 0.01025717885261708 -0.3258145892320336 0.9453780427562016 -0.01025717885261708 0.3258145892320336 -0.9466351612062506 0.006130792814932401 -0.3222487935547259 0.9466351612062506 -0.006130792814932401 0.3222487935547259 0.8995898946121159 9.144688632883362e-010 0.4367356425937349 0.8995954425367289 -2.754916782337308e-011 0.4367242147707715 0.8996049235230686 -7.124082212569685e-006 0.4367046845664716 -0.8996049235230686 7.124082212569685e-006 -0.4367046845664716 -0.8995954425367289 2.754916782337308e-011 -0.4367242147707715 -0.8995898946121159 -9.144688632883362e-010 -0.4367356425937349 0.2115276328007368 0.8697883303021156 -0.4457850614724262 -0.2115276328007368 -0.8697883303021156 0.4457850614724262 0.8996049241110151 7.126201571800092e-006 0.4367046833552761 -0.8996049241110151 -7.126201571800092e-006 -0.4367046833552761 0.3705540966906015 -0.5174542913667095 -0.7713175207215178 -0.3705540966906015 0.5174542913667095 0.7713175207215178 -0.9439623282584713 0 -0.3300532121171466 0.9439623282584713 -0 0.3300532121171466 -0.9453780682239803 -0.0102571385473218 -0.3258145166040277 0.9453780682239803 0.0102571385473218 0.3258145166040277 0.8995950455855233 -3.663571547317351e-005 0.4367250309013729 -0.8995950455855233 3.663571547317351e-005 -0.4367250309013729 0.2075772187704324 0.8694421042859699 -0.4483103005088291 -0.2075772187704324 -0.8694421042859699 0.4483103005088291 0.8995950457664682 3.663566904712296e-005 0.4367250305286541 -0.8995950457664682 -3.663566904712296e-005 -0.4367250305286541 0.208460698835653 -0.8739288926851656 -0.4390813450501301 -0.208460698835653 0.8739288926851656 0.4390813450501301 -0.9460346356416761 0.004563946282964946 -0.3240333911198774 0.9460346356416761 -0.004563946282964946 0.3240333911198774 0.008590673261842052 0.9996059528861063 -0.02672338465777645 -0.008590673261842052 -0.9996059528861063 0.02672338465777645 0.2038573469755026 -0.8745269342451815 -0.4400509326928348 -0.2038573469755026 0.8745269342451815 0.4400509326928348 -0.9439623343035419 0 -0.3300531948280579 0.9439623343035419 -0 0.3300531948280579 0.8995774230538666 4.826647817647466e-022 0.436761330627798 -0.8995774230538666 -4.826647817647466e-022 -0.436761330627798 0.8995774230538701 0 0.4367613306277909 -0.8995774230538701 -0 -0.4367613306277909 -0.9415278151062586 0.01889825686992318 -0.3364048591630528 0.9415278151062586 -0.01889825686992318 0.3364048591630528 -0.2190448495887265 0.8751592745761597 0.431411170453411 -0.001785345109949788 0.9999967123999728 0.001840579279618263 0.001785345109949788 -0.9999967123999728 -0.001840579279618263 0.2190448495887265 -0.8751592745761597 -0.431411170453411 -0.002843379399834357 -0.9999928917927541 -0.002476198205651264 0.002843379399834357 0.9999928917927541 0.002476198205651264 0.01363581427139172 -0.9994901796294989 -0.0288694543306301 -0.01363581427139172 0.9994901796294989 0.0288694543306301 -0.9460346179128348 -0.004563942108385799 -0.3240334429390699 0.9460346179128348 0.004563942108385799 0.3240334429390699 0.8995952008205769 1.186622883298446e-005 0.4367247125132474 -0.8995952008205769 -1.186622883298446e-005 -0.4367247125132474 0.8995952008791872 -1.186621380169817e-005 0.4367247123925184 -0.8995952008791872 1.186621380169817e-005 -0.4367247123925184 -0.9398068381235053 4.800570693624863e-007 -0.3417061705852986 0.9398068381235053 -4.800570693624863e-007 0.3417061705852986 -0.3993398374938099 0.5109025352181355 0.7612531075129344 -0.2284849364604937 0.8694177509828229 0.4380723776804629 0.2284849364604937 -0.8694177509828229 -0.4380723776804629 0.3993398374938099 -0.5109025352181355 -0.7612531075129344 -0.222572432077619 -0.8709186855360013 0.438134860132468 0.222572432077619 0.8709186855360013 -0.438134860132468 -0.2226310751864621 -0.8762556962653183 0.4273305033857309 0.2226310751864621 0.8762556962653183 -0.4273305033857309 -0.9415278025606702 -0.0188975949309247 -0.3364049314607355 0.9415278025606702 0.0188975949309247 0.3364049314607355 0.8996042616570016 2.640372423429032e-005 0.4367060472576542 -0.8996042616570016 -2.640372423429032e-005 -0.4367060472576542 0.8996042617889712 -2.640316438136232e-005 0.4367060469858336 -0.8996042617889712 2.640316438136232e-005 -0.4367060469858336 -0.469474849302696 9.118013130299431e-006 0.8829458453320185 -0.4041982700684288 0.5086681365402612 0.7601845074337856 0.4041982700684288 -0.5086681365402612 -0.7601845074337856 0.469474849302696 -9.118013130299431e-006 -0.8829458453320185 -0.4010681788190585 -0.5057171122936732 0.7638026697204665 0.4010681788190585 0.5057171122936732 -0.7638026697204665 -0.40456666931246 -0.5073368437200908 0.76087787264814 0.40456666931246 0.5073368437200908 -0.76087787264814 0.8996050028853476 4.9278183417775e-010 0.43670452113947 -0.8996050028853476 -4.9278183417775e-010 -0.43670452113947 -0.4694748563753538 8.980243316135359e-006 0.8829458415727979 0.4694748563753538 -8.980243316135359e-006 -0.8829458415727979</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID87\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID85\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID88\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-8.343844565602536 3.543118263434617 -8.382851173200937 3.526346557651889 -8.437936047592569 3.605860239956482 5.313198148759145 -0.1399620452823762 5.314159574535079 -0.2096745960193521 5.271181998423044 -0.2007403241355626 -8.399079464883094 3.622409275093206 -8.343993404509398 3.542899692012902 -8.438087577498109 3.605639171055174 -0.1926900638404377 7.20294571541573 -0.1766122939953679 7.299228780151535 -0.1376025136248288 7.282458250509552 4.902738990445891 -0.03114646266338814 4.859391015364293 -0.0913431629190689 4.828268720275609 -0.06266687231914832 4.817776875026402 -0.2264247686498599 4.859794847519937 -0.2872030478013722 4.816815489344182 -0.2961373197290152 -5.068611761747508 -0.9486757717377763 -5.068609406092489 -0.8788322353679069 -5.025779548333094 -0.9393184573896304 -8.950026130758724 0.6605307602452011 -8.971175442494232 0.6266938625873333 -9.067562318135598 0.6761944720988358 -5.067665914919799 -0.9488873331219097 -5.110499916460379 -0.9395300187737632 -5.067668270476479 -0.8790437967520385 -0.1932408678788178 7.202945780829676 -0.2322495278464481 7.219717358683649 -0.1771694353701919 7.29922950031786 5.068138837814331 -0.2417616733835548 4.993950724601746 -0.2736911840805733 4.982473850250244 -0.2417616733835548 5.305675535343083 -0.009926139123586465 5.274554433657209 -0.03860242458546571 5.231204667521974 0.02159426488454008 -5.024686968751198 -0.9391142004259667 -5.06752154218299 -0.8786300449575993 -4.993331884049916 -0.9135494472973115 -8.970827455956204 0.5896146450140907 -9.08822349081407 0.6059158153191752 -9.0634209709409 0.635602120563353 -5.111592468299554 -0.9388367054217398 -5.142946360897971 -0.9132719523181463 -5.068756106704823 -0.878352550012667 5.158889385222121 5.305634292436024 5.063804966929708 5.254598621125737 5.133562050212204 5.335044313432179 4.993950724601746 -0.02792316078328727 5.068138837814331 -0.06254924404119872 4.982473850250244 -0.06254924404119872 -8.179974031342647 1.090452894609735 -8.19515812353618 1.05949601654638 -8.294178322284875 1.096276142224795 5.485995607753845 5.00183953062288 5.465419112284291 5.035893612869341 5.559200633392363 5.080366375996972 5.153806209564209 -0.2417616733835557 5.142327547073364 -0.2736911840805741 5.068138837814331 -0.2417616733835557 -4.993950724601746 -0.9141731902504215 -5.068138837814331 -0.8792517567371023 -4.982473850250244 -0.8792517567371023 -5.142327547073364 -0.9141731902504207 -5.153806209564209 -0.8792517567371014 -5.068138837814331 -0.8792517567371014 4.952025870323596 -0.1121746920996578 4.994621123114127 -0.1713549770475362 4.920569945696441 -0.1365479701492706 -7.001419027427395 2.973917863672661 -7.016607472064904 2.94018778095906 -7.110212585110727 2.978243406263085 -8.173166530997587 1.177725768140519 -8.287373741612189 1.183513471797853 -8.266794802308175 1.21574612199988 7.174263755035262 2.9637055771487 7.075130506956731 2.927114391874874 7.153763361781501 2.995969580567783 6.955257057845609 3.024932840630291 6.9399776139736 3.055861081990014 7.03347546040006 3.0940795430343 5.142327547073364 -0.02792316078328618 5.153806209564209 -0.06254924404119762 5.068138837814331 -0.06254924404119762 -5.068138837814331 -0.8789867754968088 -4.993950724601746 -0.8440644861611898 -4.982473850250244 -0.8789867754968088 -5.153806209564209 -0.8789867754968075 -5.142327547073364 -0.8440644861611885 -5.068138837814331 -0.8789867754968075 4.833383986635733 -0.2009420908461514 4.832478441355254 -0.269311086124223 4.79041356430487 -0.209896498007136 -4.817001152561604 5.422121169557888 -4.839736998741243 5.392347092862829 -4.92035794411898 5.438471476782302 -7.002911586619617 2.953729967921219 -7.111705460258842 2.958050589909358 -7.091110626255508 2.990277884449331 8.286530932096811 1.18568334353603 8.192902823453633 1.147662741779765 8.265952833762935 1.217917647225526 8.210438277911528 1.141555618151195 8.195229667675156 1.175280453895014 8.283404632472832 1.211864301761794 5.183789348550204 -0.08688609419973015 5.215244082052956 -0.1112593744938168 5.14119230992116 -0.1460663845973721 -5.068338773715833 -0.8786955365358936 -5.025506009258447 -0.8182099678317926 -4.994150160080813 -0.8437739050935431 -5.142128106458063 -0.8438637850184855 -5.110773449376557 -0.8182998477648531 -5.067938896772182 -0.8787854164497464 5.298171380705109 -0.1178998379364343 5.341143585397443 -0.1268542451379624 5.299076888217746 -0.186268833524066 0.4846525411324921 7.173005203558017 0.4451360141056099 7.156989867586018 0.4017957098467573 7.224787245778542 -4.871987383799793 5.307274327778187 -4.975435306639563 5.323263998490778 -4.949564627279097 5.352380461933763 9.141146669114521 0.7992565543632813 9.059815007171272 0.7539109006504693 9.115559867904937 0.8285270522387842 9.109081201946891 0.8693466249542297 9.086023387126863 0.89896629850475 9.162859674176625 0.944850583614073 -5.068392404893438 -0.8786614576419535 -5.068391135651106 -0.8088183124045556 -5.025559407947352 -0.8181759908226125 -5.067885275889797 -0.8787754489378705 -5.110720060929337 -0.8182899821185287 -5.067886545079142 -0.808932303700472 8.280710457527816 3.705126732858316 8.241191888595893 3.721141910399398 8.284531581773541 3.788943079334775 0.4409911514236909 7.240768284153922 0.484335515399475 7.172968962999835 0.4014767417204491 7.224749081770063 8.280933073751957 3.704815650635557 8.28475928709571 3.788631853439325 8.324275367051978 3.772612241933037</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"144\" source=\"#ID88\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID84\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID82\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID83\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 12 6 0 7 2 8 3 8 5 7 13 6 1 9 14 10 2 11 3 11 15 10 4 9 6 12 8 13 16 14 17 14 9 13 11 12 6 15 18 16 7 17 10 17 19 16 11 15 20 18 21 19 22 20 23 20 24 19 25 18 26 21 0 22 12 23 13 23 5 22 27 21 20 24 28 25 21 26 24 26 29 25 25 24 1 27 30 28 14 29 15 29 31 28 4 27 6 30 16 31 32 32 33 32 17 31 11 30 34 33 18 34 6 35 11 35 19 34 35 33 22 36 21 37 36 38 37 38 24 37 23 36 26 39 12 40 38 41 39 41 13 40 27 39 28 42 40 43 21 44 24 44 41 43 29 42 14 45 30 46 42 47 43 47 31 46 15 45 44 48 6 49 32 50 33 50 11 49 45 48 46 51 26 52 38 53 39 53 27 52 47 51 30 54 48 55 42 56 43 56 49 55 31 54 50 57 34 58 6 59 11 59 35 58 51 57 36 60 21 61 52 62 53 62 24 61 37 60 40 63 54 64 21 65 24 65 55 64 41 63 56 66 6 67 44 68 45 68 11 67 57 66 58 69 46 70 59 71 60 71 47 70 61 69 46 72 38 73 59 74 60 74 39 73 47 72 42 75 48 76 62 77 63 77 49 76 43 75 48 78 64 79 62 80 63 80 65 79 49 78 66 81 50 82 6 83 11 83 51 82 67 81 21 84 68 85 52 86 53 86 69 85 24 84 54 87 70 88 21 89 24 89 71 88 55 87 72 90 6 91 56 92 57 92 11 91 73 90 74 93 58 94 75 95 76 95 61 94 77 93 58 96 59 97 75 98 76 98 60 97 61 96 62 99 64 100 78 101 79 101 65 100 63 99 64 102 80 103 78 104 79 104 81 103 65 102 82 105 66 106 6 107 11 107 67 106 83 105 21 108 84 109 68 110 69 110 85 109 24 108 70 111 86 112 21 113 24 113 87 112 71 111 72 114 82 115 6 116 11 116 83 115 73 114 88 117 74 118 89 119 90 119 77 118 91 117 74 120 75 121 89 122 90 122 76 121 77 120 78 123 80 124 92 125 93 125 81 124 79 123 80 126 94 127 92 128 93 128 95 127 81 126 21 129 96 130 84 131 85 131 97 130 24 129 21 132 86 133 96 134 97 134 87 133 24 132 94 135 88 136 98 137 99 137 91 136 95 135 98 138 88 139 89 140 90 140 91 139 99 138 94 141 98 142 92 143 93 143 99 142 95 141</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID84\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID85\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID91\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID92\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID96\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"108\">-0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID96\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID93\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID97\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"108\">-0.9969899583790898 0 -0.07753078673185826 -0.9884129292970471 0 -0.1517889363505488 -0.9884129292970471 0 -0.1517889363505488 0.9884129292970471 -0 0.1517889363505488 0.9884129292970471 -0 0.1517889363505488 0.9969899583790898 -0 0.07753078673185826 -0.998320957347389 0 -0.0579246590062718 0.998320957347389 -0 0.0579246590062718 -0.9993510989424169 7.184929433669925e-019 0.03601917603976783 0.9993510989424169 -7.184929433669925e-019 -0.03601917603976783 -0.9990306614844523 0.0002614309546962441 0.04401896259333652 0.9990306614844523 -0.0002614309546962441 -0.04401896259333652 -0.9888379135974273 0.0002436995254544094 0.1489950376449768 0.9888379135974273 -0.0002436995254544094 -0.1489950376449768 -0.9861063237501272 0.0001948595204020617 0.1661152620615472 0.9861063237501272 -0.0001948595204020617 -0.1661152620615472 -0.9624184146477172 0.0002415020656172742 0.2715708688790593 0.9624184146477172 -0.0002415020656172742 -0.2715708688790593 -0.9573298297691951 2.022174489453926e-020 0.2889975727131348 0.9573298297691951 -2.022174489453926e-020 -0.2889975727131348 -0.8839922438205549 -5.787082397949427e-020 0.4675015645589871 0.8839922438205549 5.787082397949427e-020 -0.4675015645589871 -0.9134613059251451 0.008433697485858586 0.4068381930500694 0.9134613059251451 -0.008433697485858586 -0.4068381930500694 -0.7766917816344079 0.0006653446873563806 0.6298804915680564 0.7766917816344079 -0.0006653446873563806 -0.6298804915680564 -0.887662577311735 0.0168360614725487 0.4601865881078896 0.887662577311735 -0.0168360614725487 -0.4601865881078896 -4.240544352349684e-005 -0.002559416028395586 0.9999967237903193 -0.0001348136590898401 -0.002562698012055371 0.9999967071966669 -4.475077414611043e-005 -0.002559499325770485 0.9999967234749172 4.475077414611043e-005 0.002559499325770485 -0.9999967234749172 0.0001348136590898401 0.002562698012055371 -0.9999967071966669 4.240544352349684e-005 0.002559416028395586 -0.9999967237903193 -0.0001382939885384298 -0.002562821619516241 0.9999967064046358 0.0001382939885384298 0.002562821619516241 -0.9999967064046358</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID97\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID95\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID98\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"76\">-3.217366635799408 -1.011662528891078 4.606521427631378 -1.011662528891078 -3.174309134483337 0.03269434537139772 5.109987258911133 0.03269434537139772 -3.174309134483337 -0.9347596834103267 5.109987258911133 -0.9347596834103267 -3.138594627380371 0.1405233934521675 5.681315660476685 0.1405233934521675 -3.138594627380371 -0.3213110935675059 5.681315660476685 -0.3213110935675059 -3.102889358997345 0.7323627702456695 -3.09928917724737 0.7510178070110662 5.684959547332459 -0.3024305511224223 6.220538449628159 0.7510178070110662 -3.119279014302022 0.4187348569376954 -3.09928917724737 -0.2355396215454666 6.220538449628159 -0.2355396215454666 -3.122794330120087 0.3874851047394469 6.216937303543091 -0.2675471603832269 6.405143737792969 0.3874851047394469 -3.122794330120087 -0.3106585169242548 6.405143737792969 -0.3106585169242548 -2.803181707859039 0.2275367623352473 -2.803181707859039 0.2275367623352468 6.405143737792969 -0.3106585169242556 6.521115303039551 0.2275367623352468 -2.803181707859039 -1.950888725490773 6.521115303039551 -1.950888725490773 -2.70549088716507 -1.368457715187601 -2.57175403627721 -0.08890733546632032 6.662126685805698 -0.5949907224755842 6.648155411909684 -0.1098190995586758 -6.590083908601013 -5.20958023311017 -7.070594972351801 2.04357821955581 -7.104933336244505 -5.209397056353318 -6.810479911718501 1.83452016452179 -7.162312139268526 1.834520164521791 -6.33791556685284 -5.399469606680877</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"38\" source=\"#ID98\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID94\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID92\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID93\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"14\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 6 1 0 8 6 0 10 6 8 12 10 8 14 10 12 14 12 16 18 14 16 20 18 16 22 18 20 24 22 20 26 22 24 28 29 30 30 29 34</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID94\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"14\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 0 4 1 5 2 5 2 4 1 7 3 5 4 7 5 9 6 9 6 7 5 11 7 9 8 11 9 13 10 13 11 11 12 15 13 17 14 13 15 15 16 17 17 15 18 19 19 17 20 19 21 21 22 21 23 19 24 23 25 21 26 23 27 25 28 25 29 23 30 27 31 31 32 32 33 33 34 35 35 32 36 31 37</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID94\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID95\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID99\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID100\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID104\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">-0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID104\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID101\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID105\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">0.988412913780544 0 0.1517890373902383 0.9969899576627774 0 0.07753079594311511 0.988412913780544 0 0.1517890373902383 -0.988412913780544 -0 -0.1517890373902383 -0.9969899576627774 -0 -0.07753079594311511 -0.988412913780544 -0 -0.1517890373902383 0.988412913780544 0 0.1517890373902383 0.9983209527432319 0 0.05792473835802717 -0.9983209527432319 -0 -0.05792473835802717 -0.988412913780544 -0 -0.1517890373902383 0.9993509166757276 0 -0.03602423266889734 -0.9993509166757276 -0 0.03602423266889734 0.9990305393801646 -0.0002619822270462396 -0.04402173044179333 -0.9990305393801646 0.0002619822270462396 0.04402173044179333 0.994377943186845 -0.0002472551933162214 -0.105888833067369 -0.994377943186845 0.0002472551933162214 0.105888833067369 0.9934289228239549 -0.0001945588048795497 -0.1144505895297539 -0.9934289228239549 0.0001945588048795497 0.1144505895297539 0.995983160148023 -0.000248323998790207 -0.08954039890881241 -0.995983160148023 0.000248323998790207 0.08954039890881241 0.9972495302272323 -7.346303986892779e-019 -0.07411730203916211 -0.9972495302272323 7.346303986892779e-019 0.07411730203916211 0.9997397286185086 0 0.02281392166618968 -0.9997397286185086 -0 -0.02281392166618968 0.9982764498562651 -0.001456672185643534 0.05866862678225434 -0.9982764498562651 0.001456672185643534 -0.05866862678225434 0.9962132812992509 -9.879291414691034e-005 0.08694301813797259 -0.9962132812992509 9.879291414691034e-005 -0.08694301813797259 0.9913216074311079 -0.002879513856937434 0.1314274668406588 -0.9913216074311079 0.002879513856937434 -0.1314274668406588</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID105\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID103\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID106\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"64\">3.201837241649628 -1.150202329427836 3.158780634403229 -0.1058461503505726 -4.622048437595367 -1.150202329427836 3.158780634403229 -0.1058461503505723 -5.125510692596436 -0.1058461503505723 -4.622048437595367 -1.150202329427836 3.158780634403229 -0.9347603867451351 3.123067617416382 0.1405233934521675 -5.125510692596436 -0.9347603867451351 -5.696841478347778 0.1405233934521675 3.123067617416382 -0.2545367445365298 3.087365627288818 0.7991379089722803 -5.696841478347778 -0.2545367445365298 3.084286775264742 0.8151176357230101 -6.235541749751866 0.8151176357230101 -5.699964131968046 -0.2383310143047544 3.104247691337136 1.086372973785097 -6.235541749751866 0.44254094400415 3.084286775264742 0.44254094400415 3.107274770736694 1.058577291180575 -6.420671939849854 1.058577291180575 -6.232461929321289 0.4142719643560417 3.107274770736694 1.722909634361432 2.787659466266632 2.23017673742393 -6.420671939849854 1.722909634361432 -6.536641120910645 2.23017673742393 2.787659466266632 2.772574243860051 2.686533033847809 3.223532218529132 -6.536641120910645 2.772574243860051 2.667131545541148 3.452259268550261 -6.540721785117357 3.4335304126865 -6.55586156508433 2.999015659128898</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"32\" source=\"#ID106\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID102\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID100\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID101\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 6 7 1 7 10 1 7 12 10 12 14 10 12 16 14 14 16 18 16 20 18 20 22 18 20 24 22 24 26 22 24 28 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID102\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 0 4 1 5 2 4 3 8 4 9 5 4 6 11 7 8 8 11 7 13 9 8 8 11 10 15 11 13 12 15 13 17 14 13 15 19 16 17 17 15 18 19 19 21 20 17 21 19 22 23 23 21 24 23 23 25 25 21 24 23 26 27 27 25 28 27 29 29 30 25 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID102\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID103\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID107\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID108\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID112\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"198\">-0.669903576374054 -0.652129054069519 0.3517222404479981 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.7213810682296753 -0.6512528657913208 0.3517223000526428 -0.662648618221283 -0.6536641120910645 0.2969664335250855 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.663953423500061 -0.6420671939849854 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.7726795077323914 -0.6405143737792969 0.2324965298175812 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.7917594909667969 -0.6216937303543091 0.151445209980011 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.6851193904876709 -0.5696841478347778 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.8011427521705627 -0.5681315660476685 0.01786314323544502 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.6851193904876709 -0.5125510692596436 -0.1188254728913307 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.8011427521705627 -0.5109987258911133 -0.1188253834843636 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606521427631378 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.8011427521705627 0.3174309134483337 -0.1188253834843636 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6851193904876709 0.3158780634403229 -0.1188254728913307 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.8011427521705627 0.3138594627380371 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.6851193904876709 0.3123067617416382 0.01786314323544502 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.7913355231285095 0.3102889358997345 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.6753107905387878 0.3087365627288818 0.151445209980011 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.7726795077323914 0.3122794330120087 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.663953423500061 0.3107274770736694 0.2324965298175812 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.7497841715812683 0.2803181707859039 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.662648618221283 0.2787659466266632 0.2969664335250855 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.7026739716529846 0.270549088716507 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468 -0.6675418615341187 0.2686533033847809 0.3540823757648468</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID112\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID109\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID113\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"198\">-0.01701265821172461 -0.9995231985732976 0.02576712972714528 -0.01757382759865987 -0.9966581675845644 -0.07977253644275587 -0.01751781381950524 -0.9995282886182213 0.02522551190591106 0.01751781381950524 0.9995282886182213 -0.02522551190591106 0.01757382759865987 0.9966581675845644 0.07977253644275587 0.01701265821172461 0.9995231985732976 -0.02576712972714528 -0.01625792747926485 -0.9946609696459937 -0.1019079744522989 0.01625792747926485 0.9946609696459937 0.1019079744522989 -0.0150813316095251 -0.9800366184397777 -0.1982442431799954 0.0150813316095251 0.9800366184397777 0.1982442431799954 -0.01366808468970709 -0.9791248445876004 -0.2027997094973813 0.01366808468970709 0.9791248445876004 0.2027997094973813 -0.01306491161032782 -0.9558449561319398 -0.293580871178189 0.01306491161032782 0.9558449561319398 0.293580871178189 -0.01273933707335443 -0.9520610552478258 -0.3056426939603298 0.01273933707335443 0.9520610552478258 0.3056426939603298 -0.01238557086853103 -0.9255816397548481 -0.3783453789634373 0.01238557086853103 0.9255816397548481 0.3783453789634373 -0.01238357987591431 -0.9254422243120635 -0.3786863298427829 0.01238357987591431 0.9254422243120635 0.3786863298427829 -0.01241748667662049 -0.9280470140680498 -0.3722560217162554 0.01241748667662049 0.9280470140680498 0.3722560217162554 -0.01241185824118758 -0.9276097725235235 -0.373344419663476 0.01241185824118758 0.9276097725235235 0.373344419663476 -0.0124838307381665 -0.9329216405473417 -0.3598629830484896 0.0124838307381665 0.9329216405473417 0.3598629830484896 -0.01248496597669147 -0.9329212298258305 -0.3598640084321035 0.01248496597669147 0.9329212298258305 0.3598640084321035 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0 0 -1 -0 -0 1 0.0133753871119692 0.9993032320341038 0.03484464759183624 0.0133753871119692 0.9993032320341038 0.03484464759183624 0.01337680086005785 0.999452551939183 0.03025983511199893 -0.01337680086005785 -0.999452551939183 -0.03025983511199893 -0.0133753871119692 -0.9993032320341038 -0.03484464759183624 -0.0133753871119692 -0.9993032320341038 -0.03484464759183624 0.01337464439725718 0.9993032688233439 0.03484387760033019 0.01337618871559839 0.9994397121588509 0.03068125380876897 -0.01337618871559839 -0.9994397121588509 -0.03068125380876897 -0.01337464439725718 -0.9993032688233439 -0.03484387760033019 0.01337725942786449 0.9995742326768236 0.02593072113804774 -0.01337725942786449 -0.9995742326768236 -0.02593072113804774 0.01337627272410458 0.9995744990501909 0.02592096017840197 -0.01337627272410458 -0.9995744990501909 -0.02592096017840197 0.01337920066408224 0.9999090019891376 0.001727637310686036 -0.01337920066408224 -0.9999090019891376 -0.001727637310686036 0.01366154746104537 0.9999038576502615 -0.002374358249118602 -0.01366154746104537 -0.9999038576502615 0.002374358249118602 0.01373262422128222 0.9853407192912542 0.1700443528571015 -0.01373262422128222 -0.9853407192912542 -0.1700443528571015 0.01486608652804611 0.9737392342553481 0.227180331770048 -0.01486608652804611 -0.9737392342553481 -0.227180331770048 0.01528852077539887 0.9353143715544456 0.3534873229639399 -0.01528852077539887 -0.9353143715544456 -0.3534873229639399 0.02312570321348094 0.9506753226411848 0.3093244781325283 -0.02312570321348094 -0.9506753226411848 -0.3093244781325283 0.03283908891765636 0.9857753031401179 0.1648291417136772 -0.03283908891765636 -0.9857753031401179 -0.1648291417136772 0.05301784880448666 0.9825104516283633 0.1785001964961789 -0.05301784880448666 -0.9825104516283633 -0.1785001964961789</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID113\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID111\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID114\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"152\">-6.587084260695764 2.631483678724743 -6.514283945022775 2.200594930637337 -7.101933740995046 2.631484147770351 -6.508983115107352 2.205013116963651 -7.3804769572862 2.205013116963651 -7.096643972922929 2.635892997883588 -6.508983115107352 3.224110165411892 -6.52409510872766 2.708841950220179 -7.3804769572862 3.224110165411892 -6.547166844772381 2.684101889976966 -7.63453856792353 2.684101889976966 -7.403952422220897 3.198954593785766 -6.547166844772382 2.931676874432807 -6.66766485108719 2.277409950911386 -7.63453856792353 2.931676874432807 -6.673365396615662 2.271670746973251 -7.833707641170352 2.271670746973251 -7.640406806964966 2.925784279055681 -6.673365396615662 2.953259250368061 -6.774360631709381 1.821467194941181 -7.833707641170353 2.953259250368061 -6.774354367603451 1.821472426221418 -7.934691860163473 1.821472426221418 -7.833700798795213 2.953264816600614 -6.774354367603451 1.885462650761757 -6.781999020801852 0.7200436083193725 -7.934691860163473 1.885462650761757 -6.782008058852917 0.7200348861669447 -7.94234551951389 0.7200356484581351 -7.934701887964341 1.885453322796166 -6.782008188442811 0.6046683932719337 -6.587251094540574 -0.5017076658009313 -7.942345649103793 0.6046691471095926 -6.58723797722436 -0.501692046192276 -7.747575485735714 -0.501692046192276 -7.942331122441789 0.6046858349492025 6.649683117866516 2.518778630097707 7.809916734695435 -3.623796856403351 6.649683117866516 -3.636011437575023 7.809916734695435 2.530995086828868 7.852276925867837 -2.051139641918057 6.691939385450148 -2.051139641918057 8.053193404231466 -1.018256576941133 6.691937070977494 -2.051137945764325 6.892853595325956 -1.018255612295274 8.053191123778195 -1.018254908533119 8.053191103127452 -0.9974499057607017 6.892853574675213 -0.9974506093355069 8.052713144303427 0.07820008666477071 8.052709191062137 0.07820251111365614 6.892849574859298 -0.9974481538077652 6.892371682550782 0.07820251111365616 8.052709191062137 0.0791106921925258 6.892371682550782 0.0791106921925258 7.954167892996237 1.130304459217047 7.954158953536085 1.130309635740629 6.892362640508396 0.0791159328388503 6.793807781046568 1.130309635740629 7.954158953536085 1.256038828458484 6.793807781046567 1.256038828458484 7.767881794133284 1.893885976781469 7.77057826240271 1.891244640745734 6.796484610512178 1.253416052618986 6.683206662638841 1.891244640745734 7.77057826240271 0.5982395666867535 6.683206662638841 0.5982395666867535 7.537086536284932 1.163157345832559 7.546580016143097 1.161416096352253 6.693824913004702 0.5954478869186282 6.675086237668953 1.161416096352253 7.546580016143097 1.983805357481187 6.675086237668955 1.983805357481187 7.073812769076112 2.438574088924843 7.162312139268527 2.414526194755044 6.76706758327844 1.957880326597733 6.810479911718502 2.414526194755044</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"76\" source=\"#ID114\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID110\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID108\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID109\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"52\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 1 6 8 7 6 8 7 8 9 7 4 6 8 9 10 10 6 11 7 11 11 10 9 9 8 12 12 13 10 14 11 14 13 13 9 12 12 15 14 16 10 17 11 17 15 16 13 15 12 18 16 19 14 20 15 20 17 19 13 18 16 21 18 22 14 23 15 23 19 22 17 21 16 24 20 25 18 26 19 26 21 25 17 24 20 27 22 28 18 29 19 29 23 28 21 27 20 30 24 31 22 32 23 32 25 31 21 30 24 33 26 34 22 35 23 35 27 34 25 33 28 36 29 37 30 38 31 38 32 37 33 36 34 39 29 37 28 36 33 36 32 37 35 39 36 40 37 41 38 42 39 42 40 41 41 40 42 43 43 44 38 45 39 45 44 44 45 43 38 46 43 47 46 48 47 48 44 47 39 46 46 49 43 50 48 51 49 51 44 50 47 49 46 52 48 53 50 54 51 54 49 53 47 52 50 55 48 56 52 57 53 57 49 56 51 55 50 58 52 59 54 60 55 60 53 59 51 58 54 61 52 62 56 63 57 63 53 62 55 61 54 64 56 65 58 66 59 66 57 65 55 64 58 67 56 68 60 69 61 69 57 68 59 67 58 70 60 71 62 72 63 72 61 71 59 70 62 73 60 74 64 75 65 75 61 74 63 73</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID110\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID111\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID115\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID116\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID120\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"792\">-0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6480334997177124 -0.5195937156677246 0.2845224440097809 -0.6480334997177124 -0.5195937156677246 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635096669197083 -0.526203989982605 0.2845224440097809 -0.6635096669197083 -0.526203989982605 0.2845224440097809 -0.6635036468505859 -0.5357221364974976 0.2845224440097809 -0.6635042428970337 -0.5349977016448975 0.2888893783092499 -0.6482381224632263 -0.5189133882522583 0.2801555991172791 -0.6482381224632263 -0.5189133882522583 0.2801555991172791 -0.6482381224632263 -0.5189133882522583 0.2888893783092499 -0.6482381224632263 -0.5189133882522583 0.2888893783092499 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6353332996368408 -0.4940980970859528 0.2801555991172791 -0.6353332996368408 -0.4940980970859528 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6635042428970337 -0.5349977016448975 0.2801555991172791 -0.6347987651824951 -0.4944190084934235 0.2845224440097809 -0.6347987651824951 -0.4944190084934235 0.2845224440097809 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635051369667053 -0.5329345464706421 0.2925914824008942 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6368538737297058 -0.4931806027889252 0.2764533758163452 -0.6368538737297058 -0.4931806027889252 0.2764533758163452 -0.6488213539123535 -0.5169762372970581 0.2764533758163452 -0.6488213539123535 -0.5169762372970581 0.2764533758163452 -0.6353332996368408 -0.4940980970859528 0.2888893783092499 -0.6353332996368408 -0.4940980970859528 0.2888893783092499 -0.6488213539123535 -0.5169762372970581 0.2925914824008942 -0.6488213539123535 -0.5169762372970581 0.2925914824008942 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2950650453567505 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6635051369667053 -0.5329345464706421 0.2764533758163452 -0.6335422992706299 -0.4669302999973297 0.2764533758163452 -0.6335422992706299 -0.4669302999973297 0.2764533758163452 -0.6318445205688477 -0.4669302999973297 0.2801555991172791 -0.6318445205688477 -0.4669302999973297 0.2801555991172791 -0.6312496066093445 -0.4669302999973297 0.2845224440097809 -0.6312496066093445 -0.4669302999973297 0.2845224440097809 -0.6635122895240784 -0.5225611925125122 0.2950650453567505 -0.6635122895240784 -0.5225611925125122 0.2950650453567505 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.64969402551651 -0.5140764713287354 0.2950650453567505 -0.64969402551651 -0.5140764713287354 0.2950650453567505 -0.6635096669197083 -0.526203989982605 0.2959337532520294 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.64969402551651 -0.5140764713287354 0.2739797532558441 -0.64969402551651 -0.5140764713287354 0.2739797532558441 -0.6635072827339172 -0.5298454761505127 0.2739797532558441 -0.6360813975334168 -0.4669302999973297 0.2739797532558441 -0.6360813975334168 -0.4669302999973297 0.2739797532558441 -0.6391298174858093 -0.4918101131916046 0.2739797532558441 -0.6391298174858093 -0.4918101131916046 0.2739797532558441 -0.6318445205688477 -0.4669302999973297 0.2888893783092499 -0.6318445205688477 -0.4669302999973297 0.2888893783092499 -0.6368538737297058 -0.4931806027889252 0.2925914824008942 -0.6368538737297058 -0.4931806027889252 0.2925914824008942 -0.6635141968727112 -0.5194733142852783 0.2925914824008942 -0.6635141968727112 -0.5194733142852783 0.2925914824008942 -0.650723934173584 -0.5106549263000488 0.2959337532520294 -0.650723934173584 -0.5106549263000488 0.2959337532520294 -0.6635122895240784 -0.5225611925125122 0.2739797532558441 -0.6635122895240784 -0.5225611925125122 0.2739797532558441 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.650723934173584 -0.5106549263000488 0.2731113433837891 -0.650723934173584 -0.5106549263000488 0.2731113433837891 -0.6635096669197083 -0.526203989982605 0.2731113433837891 -0.637301504611969 -0.4404509365558624 0.2739797532558441 -0.637301504611969 -0.4404509365558624 0.2739797532558441 -0.6349334716796875 -0.4393340051174164 0.2764533758163452 -0.6349334716796875 -0.4393340051174164 0.2764533758163452 -0.6333513855934143 -0.4385876953601837 0.2801555991172791 -0.6333513855934143 -0.4385876953601837 0.2801555991172791 -0.6327959895133972 -0.4383257925510407 0.2845224440097809 -0.6327959895133972 -0.4383257925510407 0.2845224440097809 -0.6635154485702515 -0.5174095630645752 0.2888893783092499 -0.6635154485702515 -0.5174095630645752 0.2888893783092499 -0.6517528891563416 -0.5072346925735474 0.2950650453567505 -0.6517528891563416 -0.5072346925735474 0.2950650453567505 -0.6391298174858093 -0.4918101131916046 0.2950650453567505 -0.6391298174858093 -0.4918101131916046 0.2950650453567505 -0.6635141968727112 -0.5194733142852783 0.2764533758163452 -0.6635141968727112 -0.5194733142852783 0.2764533758163452 -0.6517528891563416 -0.5072346925735474 0.2739797532558441 -0.6517528891563416 -0.5072346925735474 0.2739797532558441 -0.6418135762214661 -0.4901936948299408 0.2731113433837891 -0.6418135762214661 -0.4901936948299408 0.2731113433837891 -0.6400948166847229 -0.4417674839496613 0.2731113433837891 -0.6400948166847229 -0.4417674839496613 0.2731113433837891 -0.6390777230262756 -0.4669302999973297 0.2731113433837891 -0.6390777230262756 -0.4669302999973297 0.2731113433837891 -0.6333513855934143 -0.4385876953601837 0.2888893783092499 -0.6333513855934143 -0.4385876953601837 0.2888893783092499 -0.6335422992706299 -0.4669302999973297 0.2925914824008942 -0.6335422992706299 -0.4669302999973297 0.2925914824008942 -0.6635158658027649 -0.5166845321655273 0.2845224440097809 -0.6635158658027649 -0.5166845321655273 0.2845224440097809 -0.6526256799697876 -0.5043348073959351 0.2925914824008942 -0.6526256799697876 -0.5043348073959351 0.2925914824008942 -0.6418135762214661 -0.4901936948299408 0.2959337532520294 -0.6418135762214661 -0.4901936948299408 0.2959337532520294 -0.6635154485702515 -0.5174095630645752 0.2801555991172791 -0.6635154485702515 -0.5174095630645752 0.2801555991172791 -0.6526256799697876 -0.5043348073959351 0.2764533758163452 -0.6526256799697876 -0.5043348073959351 0.2764533758163452 -0.6444981694221497 -0.4885759055614471 0.2739797532558441 -0.6444981694221497 -0.4885759055614471 0.2739797532558441 -0.6517580151557922 -0.4175517857074738 0.2731113433837891 -0.6517580151557922 -0.4175517857074738 0.2731113433837891 -0.6504251956939697 -0.4142893254756928 0.2739797532558441 -0.6504251956939697 -0.4142893254756928 0.2739797532558441 -0.6492962241172791 -0.4115234911441803 0.2764533758163452 -0.6492962241172791 -0.4115234911441803 0.2764533758163452 -0.6485416889190674 -0.4096752107143402 0.2801555991172791 -0.6485416889190674 -0.4096752107143402 0.2801555991172791 -0.6482764482498169 -0.4090263545513153 0.2845224440097809 -0.6482764482498169 -0.4090263545513153 0.2845224440097809 -0.6532091498374939 -0.502396821975708 0.2888893783092499 -0.6532091498374939 -0.502396821975708 0.2888893783092499 -0.6444981694221497 -0.4885759055614471 0.2950650453567505 -0.6444981694221497 -0.4885759055614471 0.2950650453567505 -0.6360813975334168 -0.4669302999973297 0.2950650453567505 -0.6360813975334168 -0.4669302999973297 0.2950650453567505 -0.6532091498374939 -0.502396821975708 0.2801555991172791 -0.6532091498374939 -0.502396821975708 0.2801555991172791 -0.6467736959457398 -0.4872048199176788 0.2764533758163452 -0.6467736959457398 -0.4872048199176788 0.2764533758163452 -0.6420736312866211 -0.4669302999973297 0.2739797532558441 -0.6420736312866211 -0.4669302999973297 0.2739797532558441 -0.6530901193618774 -0.4208144843578339 0.2739797532558441 -0.6530901193618774 -0.4208144843578339 0.2739797532558441 -0.6428875923156738 -0.4430851638317108 0.2739797532558441 -0.6428875923156738 -0.4430851638317108 0.2739797532558441 -0.6485416889190674 -0.4096752107143402 0.2888893783092499 -0.6485416889190674 -0.4096752107143402 0.2888893783092499 -0.6349334716796875 -0.4393340051174164 0.2925914824008942 -0.6349334716796875 -0.4393340051174164 0.2925914824008942 -0.6534140110015869 -0.5017167329788208 0.2845224440097809 -0.6534140110015869 -0.5017167329788208 0.2845224440097809 -0.6467736959457398 -0.4872048199176788 0.2925914824008942 -0.6467736959457398 -0.4872048199176788 0.2925914824008942 -0.6390777230262756 -0.4669302999973297 0.2959337532520294 -0.6390777230262756 -0.4669302999973297 0.2959337532520294 -0.6482942700386047 -0.4862898886203766 0.2801555991172791 -0.6482942700386047 -0.4862898886203766 0.2801555991172791 -0.6446129679679871 -0.4669302999973297 0.2764533758163452 -0.6446129679679871 -0.4669302999973297 0.2764533758163452 -0.6630308032035828 -0.4085699617862701 0.2739797532558441 -0.6630308032035828 -0.4085699617862701 0.2739797532558441 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6482942700386047 -0.4862898886203766 0.2888893783092499 -0.6482942700386047 -0.4862898886203766 0.2888893783092499 -0.6420736312866211 -0.4669302999973297 0.2950650453567505 -0.6420736312866211 -0.4669302999973297 0.2950650453567505 -0.637301504611969 -0.4404509365558624 0.2950650453567505 -0.637301504611969 -0.4404509365558624 0.2950650453567505 -0.6488281488418579 -0.4859673082828522 0.2845224440097809 -0.6488281488418579 -0.4859673082828522 0.2845224440097809 -0.6463103890419006 -0.4669302999973297 0.2801555991172791 -0.6463103890419006 -0.4669302999973297 0.2801555991172791 -0.6452553868293762 -0.4442016780376434 0.2764533758163452 -0.6452553868293762 -0.4442016780376434 0.2764533758163452 -0.6630327105522156 -0.4116580784320831 0.2764533758163452 -0.6630327105522156 -0.4116580784320831 0.2764533758163452 -0.6542187929153442 -0.4235804378986359 0.2764533758163452 -0.6542187929153442 -0.4235804378986359 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6492962241172791 -0.4115234911441803 0.2925914824008942 -0.6492962241172791 -0.4115234911441803 0.2925914824008942 -0.6446129679679871 -0.4669302999973297 0.2925914824008942 -0.6446129679679871 -0.4669302999973297 0.2925914824008942 -0.6400948166847229 -0.4417674839496613 0.2959337532520294 -0.6400948166847229 -0.4417674839496613 0.2959337532520294 -0.646905779838562 -0.4669302999973297 0.2845224440097809 -0.646905779838562 -0.4669302999973297 0.2845224440097809 -0.6468372344970703 -0.444947749376297 0.2801555991172791 -0.6468372344970703 -0.444947749376297 0.2801555991172791 -0.6630285978317261 -0.4049277007579804 0.2845224440097809 -0.6630285978317261 -0.4049277007579804 0.2845224440097809 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630285978317261 -0.4049277007579804 0.2731113433837891 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630259156227112 -0.4012849628925324 0.2739797532558441 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630234122276306 -0.3981969654560089 0.2764533758163452 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630219221115112 -0.3961332142353058 0.2801555991172791 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630217432975769 -0.3954093754291534 0.2845224440097809 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6630219221115112 -0.3961332142353058 0.2888893783092499 -0.6463103890419006 -0.4669302999973297 0.2888893783092499 -0.6463103890419006 -0.4669302999973297 0.2888893783092499 -0.6428875923156738 -0.4430851638317108 0.2950650453567505 -0.6428875923156738 -0.4430851638317108 0.2950650453567505 -0.6504251956939697 -0.4142893254756928 0.2950650453567505 -0.6504251956939697 -0.4142893254756928 0.2950650453567505 -0.6473929882049561 -0.4452097713947296 0.2845224440097809 -0.6473929882049561 -0.4452097713947296 0.2845224440097809 -0.6549736261367798 -0.4254280030727387 0.2801555991172791 -0.6549736261367798 -0.4254280030727387 0.2801555991172791 -0.6630337834358215 -0.4137214124202728 0.2801555991172791 -0.6630337834358215 -0.4137214124202728 0.2801555991172791 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6630234122276306 -0.3981969654560089 0.2925914824008942 -0.6452553868293762 -0.4442016780376434 0.2925914824008942 -0.6452553868293762 -0.4442016780376434 0.2925914824008942 -0.6517580151557922 -0.4175517857074738 0.2959337532520294 -0.6517580151557922 -0.4175517857074738 0.2959337532520294 -0.6468372344970703 -0.444947749376297 0.2888893783092499 -0.6468372344970703 -0.444947749376297 0.2888893783092499 -0.6552384495735169 -0.426077276468277 0.2845224440097809 -0.6552384495735169 -0.426077276468277 0.2845224440097809 -0.663034200668335 -0.4144457876682282 0.2845224440097809 -0.663034200668335 -0.4144457876682282 0.2845224440097809 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6530901193618774 -0.4208144843578339 0.2950650453567505 -0.6530901193618774 -0.4208144843578339 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6630259156227112 -0.4012849628925324 0.2950650453567505 -0.6549736261367798 -0.4254280030727387 0.2888893783092499 -0.6549736261367798 -0.4254280030727387 0.2888893783092499 -0.6630337834358215 -0.4137214124202728 0.2888893783092499 -0.6630337834358215 -0.4137214124202728 0.2888893783092499 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6542187929153442 -0.4235804378986359 0.2925914824008942 -0.6542187929153442 -0.4235804378986359 0.2925914824008942 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630285978317261 -0.4049277007579804 0.2959337532520294 -0.6630327105522156 -0.4116580784320831 0.2925914824008942 -0.6630327105522156 -0.4116580784320831 0.2925914824008942 -0.6630308032035828 -0.4085699617862701 0.2950650453567505 -0.6630308032035828 -0.4085699617862701 0.2950650453567505</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"264\" source=\"#ID120\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID117\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID121\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"792\">0.7232596242239593 -0.6905746602767982 -0.001467838888265382 0.7057607724956698 -0.6735924503473242 0.2194879104675313 0.8076016226056172 -0.5897264131612695 -0.00154168243093702 -0.8076016226056172 0.5897264131612695 0.00154168243093702 -0.7057607724956698 0.6735924503473242 -0.2194879104675313 -0.7232596242239593 0.6905746602767982 0.001467838888265382 -0.9999998181937388 -0.0006022943216548701 2.922395420187849e-005 -0.9999997999824708 -0.0006324832160101544 2.860604413076798e-010 -0.9999997897974863 -0.0006483864460522037 -2.491010877726737e-011 0.9999997897974863 0.0006483864460522037 2.491010877726737e-011 0.9999997999824708 0.0006324832160101544 -2.860604413076798e-010 0.9999998181937388 0.0006022943216548701 -2.922395420187849e-005 0.7817612866731201 -0.5645061459265469 -0.2649190477680753 -0.7817612866731201 0.5645061459265469 0.2649190477680753 0.7832106863400417 -0.5638831090884926 0.2619482011533125 -0.7832106863400417 0.5638831090884926 -0.2619482011533125 -0.9999997958179734 -0.0006383792109791188 2.891357388609432e-005 0.9999997958179734 0.0006383792109791188 -2.891357388609432e-005 -0.9999998181931959 -0.0006022952886622905 -2.922260522741146e-005 0.9999998181931959 0.0006022952886622905 2.922260522741146e-005 0.9154130318517745 -0.2904204377266433 -0.2787022613230957 -0.9154130318517745 0.2904204377266433 0.2787022613230957 0.711127203597459 -0.6677643370207396 -0.2199747497030292 -0.711127203597459 0.6677643370207396 0.2199747497030292 0.952739552757128 -0.3037871859535902 -0.0008308204056597102 -0.952739552757128 0.3037871859535902 0.0008308204056597102 0.645984127761978 -0.6063440422865414 0.463736357279881 -0.645984127761978 0.6063440422865414 -0.463736357279881 -0.999999776244766 -0.0006689441745444033 -4.910144988000729e-006 0.999999776244766 0.0006689441745444033 4.910144988000729e-006 -0.9999997958172164 -0.0006383804483021269 -2.891243502256493e-005 0.9999997958172164 0.0006383804483021269 2.891243502256493e-005 0.7843147677524072 -0.2413030462060462 -0.5715095668290867 -0.7843147677524072 0.2413030462060462 0.5715095668290867 0.6885006209850318 -0.4767691864279585 -0.5464961461676083 -0.6885006209850318 0.4767691864279585 0.5464961461676083 0.9168326109734188 -0.2874979990120987 0.2770611196463751 -0.9168326109734188 0.2874979990120987 -0.2770611196463751 0.6900022504499387 -0.4765417725743317 0.5447979748179445 -0.6900022504499387 0.4765417725743317 -0.5447979748179445 -0.9999997637842953 -0.000687336419680339 0 0.9999997637842953 0.000687336419680339 -0 0.4938122844858366 -0.4499642787109471 0.744097826616243 -0.4938122844858366 0.4499642787109471 -0.744097826616243 -0.9999997762445951 -0.000668944429587437 4.910191440555164e-006 0.9999997762445951 0.000668944429587437 -4.910191440555164e-006 0.6578188065603675 -0.5980410579776557 -0.4578441991643669 -0.6578188065603675 0.5980410579776557 0.4578441991643669 0.8205908215871317 -0.03194403562537936 -0.5706227143348928 -0.8205908215871317 0.03194403562537936 0.5706227143348928 0.960457130199687 -0.0363137738537825 -0.2760496529196837 -0.960457130199687 0.0363137738537825 0.2760496529196837 0.9993171501328293 -0.03694905120123387 3.264550519562491e-005 -0.9993171501328293 0.03694905120123387 -3.264550519562491e-005 -0.793910982057031 0.1969421269369894 0.5752557267918115 0.793910982057031 -0.1969421269369894 -0.5752557267918115 0.1386984645759476 -0.1243363006127545 0.982498458153604 0.4651519897602477 -0.2948357761580864 0.8346888591081955 -0.4651519897602477 0.2948357761580864 -0.8346888591081955 -0.1386984645759476 0.1243363006127545 -0.982498458153604 -0.9999997637842955 -0.0006873364193195035 -1.096442815385977e-020 0.9999997637842955 0.0006873364193195035 1.096442815385977e-020 0.5128913528758033 -0.4461619504614353 -0.7334043728433013 0.4688183208013235 -0.2943521348334288 -0.8328062216386418 -0.4688183208013235 0.2943521348334288 0.8328062216386418 -0.5128913528758033 0.4461619504614353 0.7334043728433013 0.5130920796549894 -0.02080795852300087 -0.8580813170425183 -0.5130920796549894 0.02080795852300087 0.8580813170425183 0.499551869261499 -0.1430168053203858 -0.8543969354540623 -0.499551869261499 0.1430168053203858 0.8543969354540623 0.9604894321225267 -0.03495709229521331 0.2761123910280198 -0.9604894321225267 0.03495709229521331 -0.2761123910280198 0.786679117859316 -0.2363443375900022 0.5703308860768734 -0.786679117859316 0.2363443375900022 -0.5703308860768734 -0.9000246676130381 0.3063624940737907 0.3099961611261122 0.9000246676130381 -0.3063624940737907 -0.3099961611261122 0.03633634782028813 -0.006584840887365813 0.9993179222337458 -0.03633634782028813 0.006584840887365813 -0.9993179222337458 -0.799626186182979 0.1929925127090643 -0.568640354185935 0.799626186182979 -0.1929925127090643 0.568640354185935 0.1525444722947879 -0.1285229675501668 -0.9799040926460118 0.04807963178047214 -0.007935340825018506 -0.9988119839959095 -0.04807963178047214 0.007935340825018506 0.9988119839959095 -0.1525444722947879 0.1285229675501668 0.9799040926460118 0.5072631551753162 0.1267094788403512 -0.8524252456219195 -0.5072631551753162 -0.1267094788403512 0.8524252456219195 0.7940988277295695 0.212649686279568 -0.5693743607888617 -0.7940988277295695 -0.212649686279568 0.5693743607888617 0.9262255379225123 0.2559747769389783 -0.2767366373850652 -0.9262255379225123 -0.2559747769389783 0.2767366373850652 0.9631119231717006 0.2691006602835732 0.0005080152095792424 -0.9631119231717006 -0.2691006602835732 -0.0005080152095792424 -0.9371087965896104 0.3236025621236881 0.1307994080313711 0.9371087965896104 -0.3236025621236881 -0.1307994080313711 -0.4683157211142002 0.2666126435683628 0.8423764500784526 0.4683157211142002 -0.2666126435683628 -0.8423764500784526 0.500693008818584 -0.1383898050868787 0.8544909436431782 -0.500693008818584 0.1383898050868787 -0.8544909436431782 -0.9063167357382785 0.2980070758240811 -0.2996360413559952 0.9063167357382785 -0.2980070758240811 0.2996360413559952 -0.4686403143303254 0.2634205410351238 -0.8431997831742701 0.4686403143303254 -0.2634205410351238 0.8431997831742701 0.02920398259114767 -0.0026130516583192 -0.9995700572555417 -0.02920398259114767 0.0026130516583192 0.9995700572555417 0.03605850256194776 0.003067083053787333 -0.9993449741678452 -0.03605850256194776 -0.003067083053787333 0.9993449741678452 0.01386902869683676 -0.001056629619223589 -0.9999032621093174 -0.01386902869683676 0.001056629619223589 0.9999032621093174 0.9256378545608276 0.2570954480242819 0.277662552046944 -0.9256378545608276 -0.2570954480242819 -0.277662552046944 0.8206358178234287 -0.02964836110656165 0.5706818984241283 -0.8206358178234287 0.02964836110656165 -0.5706818984241283 -0.9469246469125361 0.3214516112137361 0.001604592677941127 0.9469246469125361 -0.3214516112137361 -0.001604592677941127 -0.7641051893798622 0.3901493579511544 0.5137380052644216 0.7641051893798622 -0.3901493579511544 -0.5137380052644216 0.02537449276774779 -0.002236188127699197 0.9996755146443453 -0.02537449276774779 0.002236188127699197 -0.9996755146443453 -0.9400560163134932 0.3172067396078798 -0.1251981251462831 0.9400560163134932 -0.3172067396078798 0.1251981251462831 -0.7711342244953958 0.3842843387634247 -0.5076194980426203 0.7711342244953958 -0.3842843387634247 0.5076194980426203 -0.4738115753659977 0.1197652890400627 -0.872444191103558 0.4738115753659977 -0.1197652890400627 0.872444191103558 0.02958654968916754 0.007286484206468705 -0.9995356638086503 -0.02958654968916754 -0.007286484206468705 0.9995356638086503 0.4363488436236744 0.2955605560399648 -0.8498491891986655 -0.4363488436236744 -0.2955605560399648 0.8498491891986655 0.6631409982889462 0.4874660914062892 -0.5679972060824027 -0.6631409982889462 -0.4874660914062892 0.5679972060824027 0.7623336718204757 0.5848074391059263 -0.2772140544328147 -0.7623336718204757 -0.5848074391059263 0.2772140544328147 0.7886950662680942 0.6147829703463104 0.001411317304633245 -0.7886950662680942 -0.6147829703463104 -0.001411317304633245 -0.8781743790133187 0.4175251680829177 0.23341485398728 0.8781743790133187 -0.4175251680829177 -0.23341485398728 -0.4800902307928689 0.113296584546636 0.8698719757684558 0.4800902307928689 -0.113296584546636 -0.8698719757684558 0.5131883005520358 -0.01875718759237305 0.8580710553853554 -0.5131883005520358 0.01875718759237305 -0.8580710553853554 -0.8823796484183437 0.4126666692035347 -0.2260804639626802 0.8823796484183437 -0.4126666692035347 0.2260804639626802 -0.7972849488781376 0.1792800600182346 -0.5763639218169749 0.7972849488781376 -0.1792800600182346 0.5763639218169749 -0.4952765194930661 0.02034356393238864 -0.8684971552315893 0.4952765194930661 -0.02034356393238864 0.8684971552315893 -0.435356577143355 -0.2671834708247518 -0.8596962508095875 0.435356577143355 0.2671834708247518 0.8596962508095875 -0.4665287049009216 -0.1084638747966296 -0.8778305960534585 0.4665287049009216 0.1084638747966296 0.8778305960534585 0.75950835167557 0.5870581609984589 0.280195965959837 -0.75950835167557 -0.5870581609984589 -0.280195965959837 0.7932463932521849 0.2145728539145977 0.5698408988089085 -0.7932463932521849 -0.2145728539145977 -0.5698408988089085 -0.9085196475422841 0.41782745437537 0.003502627562550796 0.9085196475422841 -0.41782745437537 -0.003502627562550796 -0.800869417060235 0.1689324330988504 0.5745171971881278 0.800869417060235 -0.1689324330988504 -0.5745171971881278 0.0139431092792251 -0.0009866306018833713 0.9999023033595247 -0.0139431092792251 0.0009866306018833713 -0.9999023033595247 -0.9422268574159193 0.1931477037499293 -0.273683236059958 0.9422268574159193 -0.1931477037499293 0.273683236059958 -0.814835838977536 0.03369062831624135 -0.5787119292717505 0.814835838977536 -0.03369062831624135 0.5787119292717505 -0.7873146849475823 -0.2010835114851383 -0.5828387498053776 0.7873146849475823 0.2010835114851383 0.5828387498053776 0.1180304988758481 0.1181393092581005 -0.9859573545256091 -0.1180304988758481 -0.1181393092581005 0.9859573545256091 0.4501212254398852 0.4575449027803883 -0.7668399731027207 -0.4501212254398852 -0.4575449027803883 0.7668399731027207 0.6005852136669773 0.6332674469621952 -0.4881288167508398 -0.6005852136669773 -0.6332674469621952 0.4881288167508398 0.6618861883828568 0.7123657780164507 -0.2333273921746658 -0.6618861883828568 -0.7123657780164507 0.2333273921746658 0.6804093504380189 0.7328301506810396 0.001756726876281748 -0.6804093504380189 -0.7328301506810396 -0.001756726876281748 -0.9431414902949492 0.1855658782828246 0.2757706186332155 0.9431414902949492 -0.1855658782828246 -0.2757706186332155 -0.4953182918781093 0.01780718095942004 0.8685290404109873 0.4953182918781093 -0.01780718095942004 -0.8685290404109873 0.5072865408438301 0.1285882324951642 0.8521299384146005 -0.5072865408438301 -0.1285882324951642 -0.8521299384146005 -0.9816073418028719 0.1908993751890319 0.002110703943471509 0.9816073418028719 -0.1908993751890319 -0.002110703943471509 -0.9593484895959843 0.0388996844240557 -0.279530481453477 0.9593484895959843 -0.0388996844240557 0.279530481453477 -0.7914424681559653 -0.1706815775771435 -0.5869298243188631 0.7914424681559653 0.1706815775771435 0.5869298243188631 -0.894520193110629 -0.312927838115438 -0.3192331315037981 0.894520193110629 0.312927838115438 0.3192331315037981 -0.7273473914158 -0.4107184345321895 -0.5497964530042537 0.7273473914158 0.4107184345321895 0.5497964530042537 0.6685900741135386 0.7058359896190666 0.2340574044018388 -0.6685900741135386 -0.7058359896190666 -0.2340574044018388 0.658643651050992 0.4905658629674176 0.5705555845149989 -0.658643651050992 -0.4905658629674176 -0.5705555845149989 -0.814926590417651 0.03015739503281149 0.5787790457118306 0.814926590417651 -0.03015739503281149 -0.5787790457118306 0.03814091694684892 0.003413426189993021 0.9992665405066354 -0.03814091694684892 -0.003413426189993021 -0.9992665405066354 -0.9992278934255273 0.03928889095366263 -6.929232985555457e-006 0.9992278934255273 -0.03928889095366263 6.929232985555457e-006 -0.938809669902001 -0.1951630115952412 -0.2838094476996348 0.938809669902001 0.1951630115952412 0.2838094476996348 -0.9999997743790419 0.0006717453873031948 -2.186125590766863e-011 0.9999997743790419 -0.0006717453873031948 2.186125590766863e-011 -0.9999997749421429 0.0006709065984553252 -1.09573478369303e-020 0.9999997749421429 -0.0006709065984553252 1.09573478369303e-020 -0.9999997090200168 0.0007628080343569275 9.153401029092946e-006 0.9999997090200168 -0.0007628080343569275 -9.153401029092946e-006 -0.9999996992523692 0.000775549469651193 4.265134099829579e-006 0.9999996992523692 -0.000775549469651193 -4.265134099829579e-006 -0.9999997274454909 0.0007369711162139045 -4.452547571276294e-005 0.9999997274454909 -0.0007369711162139045 4.452547571276294e-005 -0.9999997406987353 0.0007201405851322528 -7.10704149141186e-010 0.9999997406987353 -0.0007201405851322528 7.10704149141186e-010 -0.9999997274456218 0.0007369709769112005 4.452484465423866e-005 0.9999997274456218 -0.0007369709769112005 -4.452484465423866e-005 -0.9594382249524349 0.03651452657942052 0.2795442395199753 0.9594382249524349 -0.03651452657942052 -0.2795442395199753 -0.4640933731506169 -0.1107502342990451 0.8788354377244861 0.4640933731506169 0.1107502342990451 -0.8788354377244861 0.4349693534041575 0.2980530013238956 0.8496858654826425 -0.4349693534041575 -0.2980530013238956 -0.8496858654826425 -0.979356998294315 -0.2021349591101914 -0.001152474498922521 0.979356998294315 0.2021349591101914 0.001152474498922521 -0.8509474623195337 -0.4576673394521972 -0.2577382834789834 0.8509474623195337 0.4576673394521972 0.2577382834789834 -0.9355765566034081 -0.3265447567807907 -0.1344062072714054 0.9355765566034081 0.3265447567807907 0.1344062072714054 -0.9999996992525759 0.0007755492042714741 -4.264928487867499e-006 0.9999996992525759 -0.0007755492042714741 4.264928487867499e-006 0.6150877754416196 0.6241638324603201 0.481753607927045 -0.6150877754416196 -0.6241638324603201 -0.481753607927045 -0.7902842389987238 -0.1746512333911817 0.5873225419351337 0.7902842389987238 0.1746512333911817 -0.5873225419351337 0.03727133908825687 0.009044912639848819 0.9992642477532686 -0.03727133908825687 -0.009044912639848819 -0.9992642477532686 -0.9386010172620667 -0.1981899545211005 0.2823984283269608 0.9386010172620667 0.1981899545211005 -0.2823984283269608 -0.8837544363354132 -0.467943007525534 -0.002727263359898528 0.8837544363354132 0.467943007525534 0.002727263359898528 -0.9471856471481824 -0.3206759458915923 -0.002507501348223877 0.9471856471481824 0.3206759458915923 0.002507501348223877 -0.9999997090203798 0.000762807559321599 -9.153314517965673e-006 0.9999997090203798 -0.000762807559321599 9.153314517965673e-006 -0.4270570059187908 -0.2684750778700419 0.8634485776572645 0.4270570059187908 0.2684750778700419 -0.8634485776572645 0.472911004094651 0.4540552020476878 0.7551086383426046 -0.472911004094651 -0.4540552020476878 -0.7551086383426046 -0.8503974480748343 -0.4605720304353962 0.2543571997967144 0.8503974480748343 0.4605720304353962 -0.2543571997967144 -0.9399779765243473 -0.3171413384034758 0.1259475094031056 0.9399779765243473 0.3171413384034758 -0.1259475094031056 -0.9999997749421428 0.0006709065987186352 3.287346944984957e-020 0.9999997749421428 -0.0006709065987186352 -3.287346944984957e-020 -0.7241743640535807 -0.4145373799428673 0.5511172752488299 0.7241743640535807 0.4145373799428673 -0.5511172752488299 0.1340688008837682 0.1240082058184067 0.9831823439826858 -0.1340688008837682 -0.1240082058184067 -0.9831823439826858 -0.9035746812554419 -0.301257729151216 0.3046253043014963 0.9035746812554419 0.301257729151216 -0.3046253043014963 -0.7948187846833775 -0.1958141005338769 0.5743865750054989 0.7948187846833775 0.1958141005338769 -0.5743865750054989</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"264\" source=\"#ID121\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID119\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID122\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1336\">-8.459148306365966 2.320610608435393 -8.453924324230584 2.355189974618953 -8.235664210561588 2.320610608435393 5.345779393385952 2.272761294528312 5.35302374423285 2.23840807802204 5.257842260045958 2.23840807802204 -8.459148306365965 2.096954745877603 -8.235664210561586 2.096954745877603 -8.232170868965739 2.06225925348499 -8.229866286368056 2.339826235524017 -8.448096962230043 2.374520389255541 -8.226340435739356 2.374520389255541 5.325515883125656 2.301301490633831 5.34614743659245 2.272178271686187 5.258210303311181 2.237825055086888 5.35302374423285 2.238078368792828 5.345779393385952 2.203725855621364 5.257842260045958 2.238078368792828 -7.594643879022609 1.892138130946195 -7.599735688577622 1.926711021119759 -7.314941693144679 1.892138130946195 -8.448096962230043 2.088729449784985 -8.453347287020552 2.123305648105701 -8.226340435739356 2.088729449784985 -7.614613133164902 2.519425711850718 -7.609543474466718 2.55400131525583 -7.33019722651946 2.519425711850718 -8.448096962230043 2.440066517344678 -8.433138761923601 2.471261304889587 -8.226340435739356 2.440066517344678 5.293901944627884 2.321234741744345 5.324792655280616 2.301776046490474 5.257487075161621 2.23829961114335 5.346147425702103 2.204308861027132 5.325515872235314 2.175184704299745 5.25821029242083 2.238661374291615 -7.59464387902261 0.847508270273163 -7.31494169314468 0.847508270273163 -7.313817229690283 0.8152187374453735 -7.614613133164902 1.847488849611038 -7.330197226519459 1.847488849611038 -7.329844071479497 1.812789092317539 -8.448096962230043 1.610256536976383 -8.226340435739356 1.610256536976383 -8.216305077654839 1.578020394015013 -7.315322611721951 2.58773636338952 -7.594643879022609 2.622436635247417 -7.314941693144679 2.622436635247417 -8.207874315730333 2.477237724286042 -8.414427950004418 2.509420127842605 -8.197568291130997 2.509420127842605 5.257694584180658 2.328012192249299 5.294109453664709 2.321178356806438 5.257694584180658 2.238243226210277 -8.414427950004418 2.404469505689812 -8.391710570707931 2.429960516845966 -8.197568291130997 2.404469505689812 5.324792655982698 2.174710171893183 5.293901945329966 2.15525100774944 5.257487075863704 2.238186841685243 -8.414427950004418 1.680627594748813 -8.429604281088645 1.711757990864516 -8.197568291130997 1.680627594748813 -5.690121388297848 0.1905733787220271 -5.697321005850073 0.2223746195841103 -5.425537767858401 0.1905733787220271 -7.533739806625457 1.074394969231607 -7.548425411989435 1.105508108359522 -7.267384254108391 1.074394969231607 -5.70996238626119 1.606689537717041 -5.71246452611048 1.641334536429509 -5.436053500309336 1.606689537717041 -5.716350316942823 2.797108435003465 -5.713852095007093 2.831754306080557 -5.439181483673173 2.797108435003465 -7.594643879022609 3.064196424748586 -7.580148294606151 3.095363784577919 -7.314941693144679 3.064196424748586 5.257261649911184 2.328012192249299 5.257261649911184 2.238243226210277 5.220833665769637 2.321178356806438 -8.357548818346192 1.899075206820555 -8.33017279422689 1.919163127378879 -8.147913995851576 1.899075206820555 -8.357548818346194 2.460148851109297 -8.147913995851576 2.460148851109297 -8.163976206223536 2.432104690786913 5.294109453664709 2.155307392279307 5.257694584180658 2.148475901285807 -8.357548818346192 0.9137672563702848 -8.38077106938216 0.9389755219671715 -8.147913995851576 0.9137672563702848 -8.182138385212012 0.742171433417169 -8.414427950004418 0.7704347662281051 -8.197568291130997 0.7704347662281051 -5.428715747259455 -1.704161865476215 -5.690121388297847 -1.676388150076523 -5.4255377678584 -1.676388150076524 -5.438215962025859 0.1266433971109121 -5.709962386261191 0.1586387343795093 -5.436053500309336 0.1586387343795093 -7.265366515898596 -0.5414825644176899 -7.533739806625457 -0.5129706370093234 -7.267384254108391 -0.5129706370093239 -5.439943273501687 1.586970821745632 -5.716350316942821 1.621635477153723 -5.439181483673172 1.621635477153723 -5.435295758054295 2.814971835455708 -5.709962386261191 2.849637242763926 -5.436053500309336 2.849637242763926 -7.268748940745635 3.223204487094314 -7.533739806625457 3.255487443403001 -7.267384254108392 3.255487443403001 5.221365332197959 2.321322867834767 5.257793316222684 2.238387737206852 5.190486544042464 2.30186417257458 8.278584240919347 -0.4954740699094379 8.250463842632156 -0.5149304624881447 8.077276431021296 -0.4954740699094379 -8.278584240919347 1.99989558902176 -8.077276431021296 1.99989558902176 -8.097163232592376 1.975562923541217 -7.533739806625457 3.520699317831119 -7.51175487315617 3.546135961707067 -7.267384254108391 3.520699317831119 5.257261649911184 2.148475901285807 5.220833665769637 2.155307392279307 -8.278584240919347 -0.5584549503005105 -8.306696024953093 -0.5390068718870841 -8.077276431021296 -0.5584549503005101 -8.128962961671316 -0.5649448027075027 -8.357548818346194 -0.5401549389140391 -8.147913995851578 -0.5401549389140395 -7.42943998662339 -0.1647572133505751 -7.451897832370662 -0.1395771713629692 -7.182986502978527 -0.1647572133505749 -4.106498705344571 -2.194737263876049 -4.371573289103265 -2.194737263876049 -4.372742006118543 -2.166866418174485 -5.658881325239604 -1.625850436882716 -5.669716572530494 -1.598596161089331 -5.408222599321642 -1.625850436882716 -4.344407637896152 -0.1724349091188175 -4.345262429244977 -0.1404014375225808 -4.068094255706499 -0.1724349091188171 -4.327264597134145 1.488405310062259 -4.327580443456421 1.523074254803126 -4.043438262940182 1.488405310062259 -4.321733655741939 2.912919540576105 -4.321412509367989 2.947589152101175 -4.035270892659064 2.912919540576105 -5.709962386261191 3.874449404872737 -5.70279892686596 3.906254839774855 -5.436053500309336 3.874449404872737 5.19044319722537 2.301835729927616 5.257749969418736 2.238359294568514 5.169805681238873 2.272712511066155 8.184874888882753 0.8555462819586317 8.160387914107073 0.8310995600623022 7.991694895770678 0.8555462819586317 8.184874888882753 -0.9033583255625841 7.991694895770677 -0.9033583255625837 8.012566787185671 -0.8795559162780426 -7.429439986623393 3.502378420519628 -7.402942013570105 3.522435967625112 -7.18298650297853 3.502378420519628 -7.42943998662339 3.691872979870877 -7.182986502978527 3.691872979870877 -7.185612665447719 3.663392052305356 5.257793314422883 2.238098715214484 5.221365330398156 2.155162881251762 5.190486542242661 2.17462204540182 8.184874888882753 2.311433348499024 8.213760123864551 2.292684013666642 7.991694895770677 2.311433348499024 8.057393700875089 1.973876432916301 8.278584240919347 1.949556275431979 8.077276431021295 1.949556275431979 -7.279957710792657 -2.13595743916171 -7.30721571253933 -2.116541219188251 -7.056785922228732 -2.13595743916171 -7.179886540892554 -2.225423302269734 -7.429439986623391 -2.199964688915634 -7.182986502978528 -2.199964688915634 -4.106498705344571 -4.315338944522543 -4.118364496719114 -4.338783795582042 -4.371573289103265 -4.315338944522543 -4.078057156177957 -2.084249906790512 -4.344407637896152 -2.057020180700147 -4.068094255706499 -2.057020180700147 -5.411866621041948 -3.759065283276399 -5.658881325239604 -3.734692179949262 -5.408222599321642 -3.734692179949263 -4.050050888315531 -0.07999528710715549 -4.327264597134145 -0.04820659046825556 -4.043438262940183 -0.04820659046825556 -4.037586288133102 1.518865553538542 -4.32173365574194 1.553508179276814 -4.035270892659065 1.553508179276813 -4.327264597134145 2.919530116198718 -4.043438262940183 2.919530116198718 -4.041117794381885 2.884887003072012 -5.423412798604202 3.92044888372028 -5.690121388297848 3.95244492192354 -5.425537767858401 3.95244492192354 5.169773852910238 2.272662087988296 5.257718141093744 2.238308871496426 5.162523542740018 2.238308871496426 8.091502253624396 1.615081577113413 8.074755632710328 1.584451892168086 7.905025930413123 1.615081577113413 8.091502253624396 0.3617049907004171 7.905025930413125 0.3617049907004173 7.923471454017586 0.3888275851167384 7.279957710792657 -2.071767945251741 7.252707923918537 -2.091174697282529 7.056785922228733 -2.071767945251742 -7.279957710792657 3.60230930383809 -7.056785922228732 3.60230930383809 -7.060890679069933 3.576938197173214 -5.690121388297848 4.784846942203251 -5.679372873464557 4.81212212846314 -5.425537767858401 4.784846942203251 5.257749966396306 2.238127159158331 5.19044319420294 2.174650489354293 5.169805678216441 2.203774645995499 8.091502253624395 2.847984580969486 8.116559106319665 2.823897488017409 7.905025930413123 2.847984580969486 7.974000727324746 2.711421312809561 8.184874888882751 2.683990357308276 7.991694895770676 2.683990357308276 7.089414076980404 3.891409795122575 7.117562916148956 3.87281496631796 6.889218849468708 3.891409795122575 7.052671928082037 3.579085085218491 7.279957710792657 3.553704666771124 7.056785922228732 3.553704666771123 -5.618014521290714 -3.740963454464607 -5.630933483310515 -3.717494260488303 -5.383777369702075 -3.740963454464607 -0.9337447459037462 -5.237268806807606 -1.202525370192819 -5.237268806807607 -1.202785001514176 -5.212034885784941 -4.155551980529968 -4.368411102527899 -4.407385614296162 -4.368411102527899 -4.408595755932867 -4.343888470665049 -0.7866734789045558 -2.905686300756087 -1.079361224108526 -2.905686300756086 -1.079995554315324 -2.877355485465953 -0.9899921090106084 -0.6054973022645677 -0.9906208085041063 -0.5732895900857723 -0.6769883797933513 -0.6054973022645677 -0.9368824927316599 1.345601344553227 -0.9371471508370505 1.380291196550636 -0.6102822656157736 1.345601344553227 -0.9194164943493827 3.052803907308949 -0.9191376025459386 3.087494386794017 -0.5880403229384407 3.052803907308949 -4.327264597134145 4.214075276869146 -4.326363227868169 4.246107105709727 -4.043438262940183 4.214075276869145 5.257718141093744 2.238177579226426 5.169773852910238 2.203825066069364 5.162523542740018 2.238177579226426 8.020958995273697 2.075390039611 8.014984018665016 2.040885238245398 7.838859520104162 2.075390039611 7.851534492708137 1.338298761784583 8.020958995273695 1.306640681498651 7.83885952010416 1.306640681498651 7.089414076980401 -0.1522422350910452 7.065549128877333 -0.1766089148531753 6.889218849468707 -0.1522422350910452 7.089414076980402 -2.579620428781995 6.889218849468708 -2.579620428781995 6.894568634402707 -2.554382359578488 -5.658881325239604 4.999445459736856 -5.646101014844469 5.022962266460473 -5.408222599321642 4.999445459736856 -5.658881325239605 4.851752253498015 -5.408222599321643 4.851752253498015 -5.405134640673079 4.823972583106356 8.020958995273697 2.703698637209602 8.037965997820322 2.6731569720878 7.838859520104162 2.703698637209602 8.091502253624396 2.731726712195991 7.905025930413123 2.731726712195991 7.892699923699313 2.763470810421477 6.882337915206716 3.846495242284363 6.906958097270341 3.822597695924058 6.701317974862309 3.846495242284363 6.884686030210803 3.930892229955167 7.089414076980401 3.902559950926199 6.889218849468707 3.902559950926199 5.355005519845296 5.038864350061447 5.57281521324942 5.038864350061446 5.585904221985749 5.015441758617409 5.387276543565392 5.00751871024453 5.618014521290716 4.983135647496873 5.383777369702076 4.983135647496874 0.9337447459037446 6.413703438449323 0.9573595173927529 6.435386439937327 1.202525370192817 6.413703438449323 -0.7866734789045521 -5.06538932238841 -0.809858496376345 -5.087357951888587 -1.079361224108522 -5.06538932238841 4.155551980529967 5.573661995742216 4.167590095393595 5.597052401176532 4.407385614296162 5.573661995742215 -0.6769883797933518 -2.47346946447306 -0.6963824410752739 -2.499892482786617 -0.989992109010609 -2.47346946447306 -0.6231349085514287 -0.2886335442522294 -0.9368824927316583 -0.2571275521303555 -0.6102822656157725 -0.2571275521303555 -0.5925382545852054 1.452190109230196 -0.9194164943493816 1.486802000928491 -0.588040322938439 1.486802000928491 -0.9368824927316583 2.989260231790058 -0.6102822656157725 2.989260231790058 -0.6057718714373334 2.95464864565857 -4.344407637896152 4.176216277967253 -4.068094255706499 4.176216277967253 -4.061437166037296 4.144434184346377 7.994555236402969 2.418633329209624 8.000562573761977 2.384132705547334 7.813977695463445 2.418633329209624 7.818468817536674 1.998685546094638 7.994555236402969 1.964060680592401 7.813977695463445 1.964060680592401 6.882337915206716 1.108482911829678 6.865884915840715 1.077919330033254 6.701317974862309 1.108482911829678 6.882337915206716 -1.001403397725176 6.701317974862309 -1.001403397725177 6.706936325541064 -0.97319204391688 5.618014521290714 -3.688706682456192 5.60508291867447 -3.71218400114565 5.383777369702075 -3.688706682456193 -5.618014521290715 5.033489398688582 -5.383777369702075 5.033489398688582 -5.380277708517728 5.009102549842747 -4.34312926208276 5.330608004661404 -4.068094255706499 5.302740465696545 -4.344407637896151 5.302740465696545 8.020958995273697 2.437946820433476 7.838859520104161 2.437946820433476 7.834412148872458 2.472574482747183 6.711663862443613 3.201320591517932 6.728497075353185 3.170884508632846 6.543262750347934 3.201320591517932 6.882337915206716 3.486455530030453 6.701317974862309 3.486455530030453 6.697575632248265 3.51861822226603 5.530021900809667 4.804071587326873 5.54124409688892 4.776914686637295 5.326128570022592 4.804071587326872 5.357832170269662 4.829204193083857 5.572815213249419 4.801405637170106 5.355005519845295 4.801405637170106 4.208948529117996 5.568963007813125 4.44753877437411 5.568963007813125 4.448560841545348 5.544438233461815 -1.007018039784137 6.431708172088143 -0.8493013544758682 6.431708172088143 -0.8662356188876785 6.406453664322858 1.10573487894831 6.407177696861663 1.350699105388963 6.407177696861663 1.350351194428278 6.381944449917796 1.395056283149452 -5.230085027013481 1.225824621021148 -5.230085027013481 1.241285039505927 -5.204251745528667 1.731934685679073 -2.962044495702981 1.55085691539324 -2.962044495702981 1.562863942988197 -2.933032022317872 1.983521061971769 -0.6855567854979721 1.792201439262944 -0.6855567854979721 1.799661996535315 -0.6529928500682611 2.136748522003975 1.313328052295595 1.938490401881309 1.313328052295595 1.940985160294814 1.348064942679381 2.188314297829721 3.079320608771617 1.987604097177415 3.079320608771617 1.985150605086615 3.114060013520255 -0.936882492731661 4.623051910599274 -0.9361309016619213 4.655257145087229 -0.6102822656157747 4.623051910599274 6.711663862443615 1.925024402047909 6.70575696549514 1.890531342677316 6.543262750347935 1.925024402047909 6.547575844512357 0.5069292619910031 6.711663862443615 0.4748116824340639 6.543262750347935 0.4748116824340637 5.572815213249419 -1.559100047478916 5.561722558084639 -1.586289528753696 5.355005519845295 -1.559100047478916 5.572815213249418 -3.775989891247839 5.355005519845295 -3.775989891247839 5.351670638961791 -3.751591927864505 -4.370194115780932 5.634314081380831 -4.106498705344571 5.609796319296637 -4.371573289103265 5.609796319296637 -4.371573289103265 5.271712918633719 -4.106498705344571 5.271712918633719 -4.096431206840382 5.244507346248376 6.643839798432421 2.567619195287584 6.649796789849342 2.533132168263443 6.47980489056156 2.567619195287584 6.711663862443613 2.699058771651552 6.543262750347934 2.699058771651552 6.541735545556305 2.733739170767791 5.498446087312136 3.885599378014982 5.505997639730058 3.853853266771846 5.303836361074548 3.885599378014983 5.327927385702473 3.941081011540729 5.530021900809665 3.909072920174765 5.326128570022592 3.909072920174765 4.257936460904844 5.222382075887188 4.48531345142495 5.222382075887188 4.486030902111493 5.194500438426589 4.219299388511197 5.178528147736031 4.44753877437411 5.151390473061319 4.208948529117997 5.151390473061319 -1.00701803978414 5.45184854982558 -0.9830551004479032 5.476616749527783 -0.8493013544758715 5.45184854982558 -1.395056283149454 6.384619143505996 -1.367900988315397 6.404899443116974 -1.22582462102115 6.384619143505996 1.126180452989459 5.641416503633121 1.350699105388962 5.615488709512939 1.105734878948308 5.615488709512939 1.731934685679073 -4.924178516475186 1.705792500385768 -4.945271664832444 1.550856915393241 -4.924178516475187 1.983521061971769 -2.3058824449882 1.962029323693447 -2.332015406115985 1.792201439262944 -2.3058824449882 2.136748522003976 -0.1619157663335245 2.122662978108879 -0.1933642392432385 1.93849040188131 -0.1619157663335245 2.188314297829719 1.517674831104229 2.183404800846037 1.483068430645079 1.987604097177413 1.517674831104229 2.136748522003975 2.95799400297503 2.141691388046876 2.923389843946922 1.93849040188131 2.95799400297503 -0.9899921090106101 4.415539712514128 -0.6769883797933529 4.415539712514128 -0.6640286535419743 4.384061745863043 6.481409524701137 1.72795506612671 6.643839798432421 1.693276133926626 6.47980489056156 1.693276133926626 5.530021900809665 0.2562638933463456 5.522535512819788 0.2245090923624617 5.326128570022592 0.2562638933463454 5.530021900809667 -1.71325762960622 5.326128570022592 -1.71325762960622 5.323437547324017 -1.685451073282144 4.406175641169333 -4.342441555283165 4.155551980529967 -4.317921419826119 4.407385614296161 -4.31792141982612 -4.407385614296161 5.62613219503817 -4.155551980529967 5.62613219503817 -4.14352539796433 5.602737416250526 -0.989049937042964 5.986932463028932 -0.6769883797933529 5.958607270824244 -0.9899921090106101 5.958607270824243 5.486959261738098 2.820684156459011 5.489632356636179 2.786046726792639 5.295621030574568 2.820684156459011 5.304443311461843 2.848018489033896 5.498446087312138 2.813351435311252 5.30383636107455 2.813351435311252 4.513108861298631 4.158010227951072 4.513515557441372 4.125972469394512 4.293220230864972 4.158010227951072 4.26494726907729 4.08214504933332 4.48531345142495 4.050410280721512 4.257936460904844 4.050410280721513 1.276725279204792 5.889163354326482 1.501575939317806 5.889163354326482 1.500775228390917 5.860837398112774 4.120657713958259 2.174783692688514 4.089776541609949 2.1553245285458 4.053353924651989 2.238260362477218 -0.631284774629305 5.907484127101301 -0.4830188650751356 5.907484127101301 -0.4985508620873287 5.879526141804989 4.053290871418724 2.238243226210277 4.089713488378332 2.155307392279307 4.053290871418724 2.148475901285807 4.054157899394946 2.238243226210277 4.054157899394946 2.148475901285807 4.01773051086569 2.155307392279307 4.054543914286919 2.238138304462622 4.018116525819456 2.155202470514856 3.987236541310906 2.174661634661405 4.054255546355624 2.23832752867375 3.986948173372667 2.174850858877091 3.966310655794683 2.203975015514911 4.054050695621173 2.238652068903375 3.966105805124072 2.204299555643396 3.95886741765176 2.238652068903375 3.966105805124072 2.272187594718053 4.054050695621173 2.237834378123268 3.95886741765176 2.237834378123268 2.136748522003975 4.656719431448113 1.93849040188131 4.656719431448113 1.931376664778171 4.68933052335335 5.498446087312137 1.654010558828326 5.495781333232114 1.61937203389967 5.303836361074549 1.654010558828326 5.302105984347215 0.1561552233427898 5.498446087312137 0.1241456503715618 5.303836361074548 0.1241456503715618 4.446672468588617 -2.112488711766805 4.208948529117997 -2.084610017992233 4.44753877437411 -2.084610017992233 4.44753877437411 -4.266698714593822 4.208948529117997 -4.266698714593822 4.196732168112794 -4.243364883480098 -1.078604252253852 6.463181153954725 -0.7866734789045543 6.437952798452399 -1.079361224108524 6.437952798452399 -0.7866734789045549 5.77736591715584 -0.767013479870341 5.751065149833229 -1.079361224108526 5.77736591715584 5.295022843372047 1.621605019435101 5.486959261738098 1.586937174499785 5.295621030574568 1.586937174499785 4.523059274737537 2.916007856548877 4.523192791943769 2.881337674012432 4.305799353268193 2.916007856548877 4.295706542211787 2.88038939282568 4.513108861298631 2.845753687310846 4.293220230864972 2.845753687310846 1.618313505717711 4.572318658344436 1.617513135747064 4.540114369776875 1.406837416130729 4.572318658344435 1.290660398817509 4.237757019502931 1.501575939317806 4.20653928295437 1.276725279204791 4.20653928295437 4.141023112258878 2.203732033367162 4.120389769618377 2.174607876719661 4.053085980356384 2.238084546537417 -0.6146994697045521 4.020679997856751 -0.4830188650751344 3.989996889396601 -0.6312847746293043 3.989996889396601 3.986948171177394 2.301635356761356 4.05425554416035 2.238158921409632 3.96631065359941 2.272512137903279 1.98352106197177 4.322119444130752 1.997885599264552 4.29075003516839 1.792201439262946 4.322119444130752 4.48531345142495 -0.06275353672841606 4.484833871098414 -0.09478981890238702 4.257936460904843 -0.06275353672841606 4.48531345142495 -1.948321272137886 4.257936460904844 -1.948321272137886 4.247444760144271 -1.921217425104833 1.202278269767634 -5.213554036127535 0.9337447459037468 -5.18831941884492 1.20252537019282 -5.18831941884492 -0.9337447459037468 6.470280942389443 -0.9101352261482021 6.44859316348806 -1.20252537019282 6.470280942389442 1.7810361668454 5.948996361269827 1.983521061971767 5.91977691270677 1.792201439262943 5.91977691270677 4.513108861298631 1.553437099301205 4.512966207749581 1.51876624239257 4.293220230864972 1.553437099301205 4.523059274737538 1.560638837012923 4.305799353268195 1.560638837012923 4.303304420538273 1.595274856461392 1.663014187917965 3.057044881378341 1.662698406695706 3.022354883904754 1.456228398706928 3.057044881378341 1.411811474799222 2.904143609495244 1.618313505717711 2.869571771675831 1.406837416130728 2.869571771675831 -0.2102850955705954 4.533779046459811 -0.2212219667555027 4.501830716375358 -0.3524154584033468 4.533779046459811 4.148360119053441 2.238232274855406 4.141116365372862 2.203879761700982 4.053179233460373 2.238232274855406 4.018116527126163 2.321283278909248 4.054543915593625 2.238348148296289 3.987236542617612 2.30182458365257 4.51310886129863 0.03565696069686471 4.293220230864971 0.03565696069686471 4.286140664411874 0.06738142067043182 1.350988144508157 -2.831136704223236 1.105734878948305 -2.80280497975379 1.350699105388959 -2.802804979753791 1.105734878948308 -4.987727928423084 1.081620465374786 -4.966387199934666 1.350699105388962 -4.987727928423085 1.536701820058918 6.367885355987457 1.73193468567907 6.341592512008873 1.550856915393238 6.341592512008873 1.731934685679077 5.650744780346956 1.754094166479398 5.624959601068585 1.550856915393245 5.650744780346956 1.618313505717711 1.409318260218672 1.618593808566288 1.374627377623547 1.406837416130728 1.409318260218672 1.663014187917964 1.548769447821672 1.456228398706927 1.548769447821672 1.451225850928825 1.583339440626227 -0.1086696165038081 3.030118861325131 -0.1125886202209725 2.995463149197006 -0.2486929241486502 3.030118861325131 -0.3464514958988113 2.804383934901902 -0.2102850955705932 2.769879506764597 -0.3524154584033451 2.769879506764597 4.141116365372862 2.272607393820292 4.148360119053441 2.23825417733106 4.053179233460373 2.23825417733106 4.054157899394946 2.328012192249299 4.01773051086569 2.321178356806438 1.501575939317805 -0.5012014929778504 1.502112372354255 -0.5334083234158705 1.276725279204791 -0.5012014929778509 1.501575939317806 -2.213331115450854 1.276725279204791 -2.213331115450854 1.255857814214288 -2.187612521976157 -1.210357660518652 -5.207987081071356 -1.395056283149451 -5.182156022682914 -1.225824621021147 -5.182156022682913 1.395056283149452 6.445100058395354 1.42221195935433 6.424813982187559 1.225824621021148 6.445100058395354 1.618313505717711 -0.02352780711635812 1.406837416130728 -0.02352780711635768 1.39268811687711 0.007629375589039378 -0.2102850955705948 1.435104646698213 -0.2064391479506883 1.400443172948768 -0.3524154584033462 1.435104646698212 -0.1086696165038081 1.662898754661748 -0.2486929241486496 1.662898754661748 -0.2547078584367069 1.69739840721977 4.120389765485858 2.301878342480607 4.141023108126361 2.272755123612851 4.053085976223867 2.238401907107786 4.053290871418724 2.328012192249299 4.089713488378332 2.321178356806438 -0.8349414320856191 -2.851902013096587 -1.007018039784136 -2.823559249374875 -0.8493013544758671 -2.823559249374875 -1.007018039784137 -4.861525074475524 -1.03528126658282 -4.842203439682592 -0.8493013544758686 -4.861525074475524 -0.4830188650751377 -0.4695719101567735 -0.472649456256577 -0.5016362722773671 -0.6312847746293077 -0.4695719101567735 -0.2102850955705954 0.3145772758262392 -0.3524154584033462 0.3145772758262392 -0.3694040583669178 0.3451226396423521 4.089776541823367 2.321161220312439 4.120657714171677 2.301702525059598 4.053353924865407 2.23822608971583 -0.4830188650751338 -1.801078081036106 -0.6312847746293038 -1.801078081036107 -0.6561056020352341 -1.776838728686103</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"668\" source=\"#ID122\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID118\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID116\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID117\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"448\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 16 12 6 13 8 14 9 14 11 13 17 12 7 15 18 16 8 17 9 17 19 16 10 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 28 30 16 31 8 32 9 32 17 31 29 30 18 33 30 34 8 35 9 35 31 34 19 33 12 36 20 37 32 38 33 38 21 37 13 36 2 39 24 40 20 41 21 41 25 40 3 39 22 42 12 43 34 44 35 44 13 43 23 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 40 51 28 52 8 53 9 53 29 52 41 51 26 54 42 55 38 56 39 56 43 55 27 54 30 57 44 58 8 59 9 59 45 58 31 57 46 60 22 61 34 62 35 62 23 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 40 78 8 79 54 80 55 80 9 79 41 78 42 81 56 82 57 83 58 83 59 82 43 81 42 84 57 85 38 86 39 86 58 85 43 84 8 53 44 87 60 88 61 88 45 87 9 53 62 89 46 90 63 91 64 91 47 90 65 89 63 92 46 93 34 94 35 94 47 93 64 92 66 95 32 96 48 97 49 97 33 96 67 95 48 98 20 99 50 100 51 100 21 99 49 98 68 101 34 102 32 103 33 103 35 102 69 101 50 104 24 105 52 106 53 106 25 105 51 104 52 107 36 108 70 109 71 109 37 108 53 107 36 110 38 111 72 112 73 112 39 111 37 110 54 113 8 114 74 115 75 115 9 114 55 113 56 116 54 117 76 118 77 118 55 117 59 116 56 119 76 120 57 121 58 121 77 120 59 119 38 122 57 123 72 124 73 124 58 123 39 122 8 79 60 125 78 126 79 126 61 125 9 79 80 127 62 128 81 129 82 129 65 128 83 127 81 130 62 131 63 132 64 132 65 131 82 130 63 133 34 134 68 135 69 135 35 134 64 133 84 136 66 137 48 138 49 138 67 137 85 136 68 139 32 140 66 141 67 141 33 140 69 139 48 142 50 143 86 144 87 144 51 143 49 142 50 145 52 146 88 147 89 147 53 146 51 145 52 148 70 149 90 150 91 150 71 149 53 148 36 151 72 152 70 153 71 153 73 152 37 151 74 154 8 155 92 156 93 156 9 155 75 154 54 157 74 158 94 159 95 159 75 158 55 157 54 160 94 161 76 162 77 162 95 161 55 160 57 163 76 164 96 165 97 165 77 164 58 163 57 166 96 167 72 168 73 168 97 167 58 166 8 169 78 170 98 171 99 171 79 170 9 169 78 172 80 173 100 174 101 174 83 173 79 172 100 175 80 176 81 177 82 177 83 176 101 175 81 178 63 179 102 180 103 180 64 179 82 178 102 181 63 182 68 183 69 183 64 182 103 181 84 184 104 185 66 186 67 186 105 185 85 184 84 187 48 188 86 189 87 189 49 188 85 187 106 190 68 191 66 192 67 192 69 191 107 190 86 193 50 194 88 195 89 195 51 194 87 193 88 196 52 197 90 198 91 198 53 197 89 196 70 199 108 200 90 201 91 201 109 200 71 199 70 202 72 203 110 204 111 204 73 203 71 202 92 205 8 206 112 207 113 207 9 206 93 205 74 208 92 209 114 210 115 210 93 209 75 208 74 211 114 212 94 213 95 213 115 212 75 211 76 214 94 215 116 216 117 216 95 215 77 214 76 217 116 218 96 219 97 219 117 218 77 217 72 220 96 221 110 222 111 222 97 221 73 220 8 223 98 224 118 225 119 225 99 224 9 223 98 226 78 227 120 228 121 228 79 227 99 226 120 229 78 230 100 231 101 231 79 230 121 229 100 232 81 233 122 234 123 234 82 233 101 232 122 235 81 236 102 237 103 237 82 236 123 235 102 238 68 239 106 240 107 240 69 239 103 238 124 241 104 242 84 243 85 243 105 242 125 241 104 244 106 245 66 246 67 246 107 245 105 244 126 247 84 248 86 249 87 249 85 248 127 247 86 250 88 251 128 252 129 252 89 251 87 250 88 253 90 254 130 255 131 255 91 254 89 253 90 256 108 257 132 258 133 258 109 257 91 256 70 259 110 260 108 261 109 261 111 260 71 259 8 262 118 263 112 264 113 264 119 263 9 262 92 265 112 266 134 267 135 267 113 266 93 265 114 268 92 269 134 270 135 270 93 269 115 268 94 271 114 272 136 273 137 273 115 272 95 271 94 274 136 275 116 276 117 276 137 275 95 274 96 277 116 278 138 279 139 279 117 278 97 277 96 280 138 281 110 282 111 282 139 281 97 280 118 283 98 284 140 285 141 285 99 284 119 283 98 286 120 287 140 288 141 288 121 287 99 286 120 289 100 290 142 291 143 291 101 290 121 289 142 292 100 293 122 294 123 294 101 293 143 292 144 295 122 296 102 297 103 297 123 296 145 295 144 298 102 299 106 300 107 300 103 299 145 298 124 301 146 302 104 303 105 303 147 302 125 301 126 304 124 305 84 306 85 306 125 305 127 304 104 307 148 308 106 309 107 309 149 308 105 307 128 310 126 311 86 312 87 312 127 311 129 310 128 313 88 314 130 315 131 315 89 314 129 313 130 316 90 317 132 318 133 318 91 317 131 316 108 319 150 320 132 321 133 321 151 320 109 319 110 322 152 323 108 324 109 324 153 323 111 322 112 325 118 326 154 327 155 327 119 326 113 325 134 328 112 329 154 330 155 330 113 329 135 328 114 331 134 332 156 333 157 333 135 332 115 331 114 334 156 335 136 336 137 336 157 335 115 334 116 337 136 338 158 339 159 339 137 338 117 337 116 340 158 341 138 342 139 342 159 341 117 340 138 343 152 344 110 345 111 345 153 344 139 343 118 346 140 347 154 348 155 348 141 347 119 346 140 349 120 350 160 351 161 351 121 350 141 349 120 352 142 353 160 354 161 354 143 353 121 352 142 355 122 356 162 357 163 357 123 356 143 355 162 358 122 359 144 360 145 360 123 359 163 358 148 361 144 362 106 363 107 363 145 362 149 361 164 364 146 365 124 366 125 366 147 365 165 364 146 367 148 368 104 369 105 369 149 368 147 367 166 370 124 371 126 372 127 372 125 371 167 370 168 373 126 374 128 375 129 375 127 374 169 373 170 376 128 377 130 378 131 378 129 377 171 376 172 379 130 380 132 381 133 381 131 380 173 379 174 382 132 383 150 384 151 384 133 383 175 382 108 385 152 386 150 387 151 387 153 386 109 385 134 388 154 389 176 390 177 390 155 389 135 388 156 391 134 392 176 393 177 393 135 392 157 391 136 394 156 395 178 396 179 396 157 395 137 394 136 397 178 398 158 399 159 399 179 398 137 397 158 400 180 401 138 402 139 402 181 401 159 400 138 403 180 404 152 405 153 405 181 404 139 403 154 406 140 407 182 408 183 408 141 407 155 406 140 409 160 410 182 411 183 411 161 410 141 409 160 412 142 413 184 414 185 414 143 413 161 412 184 415 142 416 162 417 163 417 143 416 185 415 186 418 162 419 144 420 145 420 163 419 187 418 186 421 144 422 148 423 149 423 145 422 187 421 164 424 188 425 146 426 147 426 189 425 165 424 166 427 164 428 124 429 125 429 165 428 167 427 190 430 148 431 146 432 147 432 149 431 191 430 168 433 166 434 126 435 127 435 167 434 169 433 170 436 168 437 128 438 129 438 169 437 171 436 172 439 170 440 130 441 131 441 171 440 173 439 174 442 172 443 132 444 133 444 173 443 175 442 192 445 174 446 150 447 151 447 175 446 193 445 152 448 194 449 150 450 151 450 195 449 153 448 176 451 154 452 182 453 183 453 155 452 177 451 156 454 176 455 196 456 197 456 177 455 157 454 156 457 196 458 178 459 179 459 197 458 157 457 178 460 198 461 158 462 159 462 199 461 179 460 158 463 198 464 180 465 181 465 199 464 159 463 180 466 194 467 152 468 153 468 195 467 181 466 182 469 160 470 200 471 201 471 161 470 183 469 200 472 160 473 184 474 185 474 161 473 201 472 184 475 162 476 202 477 203 477 163 476 185 475 202 478 162 479 186 480 187 480 163 479 203 478 190 481 186 482 148 483 149 483 187 482 191 481 188 484 164 485 204 486 205 486 165 485 189 484 188 487 190 488 146 489 147 489 191 488 189 487 204 490 164 491 206 492 207 492 165 491 205 490 204 493 206 494 208 495 209 495 207 494 205 493 204 496 208 497 210 498 211 498 209 497 205 496 204 499 210 500 212 501 213 501 211 500 205 499 204 502 212 503 214 504 215 504 213 503 205 502 216 505 204 506 214 507 215 507 205 506 217 505 192 508 150 509 194 510 195 510 151 509 193 508 176 511 182 512 218 513 219 513 183 512 177 511 196 514 176 515 218 516 219 516 177 515 197 514 196 517 220 518 178 519 179 519 221 518 197 517 178 520 220 521 198 522 199 522 221 521 179 520 198 523 222 524 180 525 181 525 223 524 199 523 222 526 194 527 180 528 181 528 195 527 223 526 218 529 182 530 200 531 201 531 183 530 219 529 200 532 184 533 224 534 225 534 185 533 201 532 224 535 184 536 202 537 203 537 185 536 225 535 202 538 186 539 226 540 227 540 187 539 203 538 226 541 186 542 190 543 191 543 187 542 227 541 228 544 188 545 204 546 205 546 189 545 229 544 228 547 190 548 188 549 189 549 191 548 229 547 230 550 204 551 216 552 217 552 205 551 231 550 232 553 192 554 194 555 195 555 193 554 233 553 196 556 218 557 234 558 235 558 219 557 197 556 196 559 234 560 220 561 221 561 235 560 197 559 220 562 236 563 198 564 199 564 237 563 221 562 236 565 222 566 198 567 199 567 223 566 237 565 222 568 232 569 194 570 195 570 233 569 223 568 218 571 200 572 238 573 239 573 201 572 219 571 200 574 224 575 238 576 239 576 225 575 201 574 224 577 202 578 240 579 241 579 203 578 225 577 240 580 202 581 226 582 227 582 203 581 241 580 226 583 190 584 228 585 229 585 191 584 227 583 242 586 228 587 204 588 205 588 229 587 243 586 244 589 204 590 230 591 231 591 205 590 245 589 218 592 238 593 234 594 235 594 239 593 219 592 234 595 246 596 220 597 221 597 247 596 235 595 246 598 236 599 220 600 221 600 237 599 247 598 236 601 248 602 222 603 223 603 249 602 237 601 248 604 232 605 222 606 223 606 233 605 249 604 238 607 224 608 250 609 251 609 225 608 239 607 224 610 240 611 250 612 251 612 241 611 225 610 240 613 226 614 242 615 243 615 227 614 241 613 242 616 226 617 228 618 229 618 227 617 243 616 252 619 242 620 204 621 205 621 243 620 253 619 254 622 204 493 244 623 245 623 205 493 255 622 234 624 238 625 256 626 257 626 239 625 235 624 234 627 256 628 246 629 247 629 257 628 235 627 246 630 258 631 236 632 237 632 259 631 247 630 258 633 248 634 236 635 237 635 249 634 259 633 238 636 250 637 256 638 257 638 251 637 239 636 250 639 240 640 252 641 253 641 241 640 251 639 240 642 242 643 252 644 253 644 243 643 241 642 260 645 252 646 204 647 205 647 253 646 261 645 254 648 262 649 204 490 205 490 263 649 255 648 256 650 262 651 246 652 247 652 263 651 257 650 262 653 258 654 246 655 247 655 259 654 263 653 256 656 250 657 260 658 261 658 251 657 257 656 250 659 252 660 260 661 261 661 253 660 251 659 262 662 260 663 204 664 205 664 261 663 263 662 256 665 260 666 262 667 263 667 261 666 257 665</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID118\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID119\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID123\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID124\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID128\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"804\">-0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7703003287315369 -0.5612730979919434 0.2852768898010254 -0.7703003287315369 -0.5612730979919434 0.2852768898010254 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557626962661743 -0.5678825378417969 0.2799702882766724 -0.7557626962661743 -0.5678825378417969 0.2799702882766724 -0.7542703151702881 -0.5766767263412476 0.2840741574764252 -0.7557674050331116 -0.5774013996124268 0.2799721658229828 -0.7686104774475098 -0.5605920553207398 0.2893087267875671 -0.7686104774475098 -0.5605920553207398 0.2893087267875671 -0.7716054916381836 -0.5605920553207398 0.281104177236557 -0.7716054916381836 -0.5605920553207398 0.281104177236557 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7827324271202087 -0.5360980033874512 0.2898147404193878 -0.7827324271202087 -0.5360980033874512 0.2898147404193878 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7529988884925842 -0.5746138095855713 0.2875512540340424 -0.7837280631065369 -0.535775899887085 0.2855293154716492 -0.7837280631065369 -0.535775899887085 0.2855293154716492 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7572651505470276 -0.5766767263412476 0.2758695781230927 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7807338237762451 -0.535775899887085 0.2937338352203369 -0.7807338237762451 -0.535775899887085 0.2937338352203369 -0.7667932510375977 -0.5586550235748291 0.2925863564014435 -0.7667932510375977 -0.5586550235748291 0.2925863564014435 -0.7835687398910523 -0.534860372543335 0.2815302610397339 -0.7835687398910523 -0.534860372543335 0.2815302610397339 -0.772327184677124 -0.5586550235748291 0.2774266302585602 -0.772327184677124 -0.5586550235748291 0.2774266302585602 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7521495223045349 -0.5715253353118897 0.2898746728897095 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7585333585739136 -0.5746138095855713 0.2723914682865143 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7860668897628784 -0.5086090564727783 0.2910321354866028 -0.7860668897628784 -0.5086090564727783 0.2910321354866028 -0.7870047688484192 -0.5086090564727783 0.2867254912853241 -0.7870047688484192 -0.5086090564727783 0.2867254912853241 -0.7866801619529724 -0.5086090564727783 0.2826657593250275 -0.7866801619529724 -0.5086090564727783 0.2826657593250275 -0.7521452307701111 -0.5642404556274414 0.2898727059364319 -0.7521452307701111 -0.5642404556274414 0.2898727059364319 -0.7651250958442688 -0.5557551383972168 0.2946110367774963 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7518503069877625 -0.5678825378417969 0.2906895875930786 -0.7651250958442688 -0.5557551383972168 0.2946110367774963 -0.7723551988601685 -0.5557551383972168 0.2748038470745087 -0.7723551988601685 -0.5557551383972168 0.2748038470745087 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7593801021575928 -0.5715253353118897 0.2700673639774323 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7840102910995483 -0.5086090564727783 0.2949300408363342 -0.7840102910995483 -0.5086090564727783 0.2949300408363342 -0.7780358195304871 -0.534860372543335 0.296690046787262 -0.7780358195304871 -0.534860372543335 0.296690046787262 -0.7851429581642151 -0.5086090564727783 0.27947136759758 -0.7851429581642151 -0.5086090564727783 0.27947136759758 -0.782279908657074 -0.5334889888763428 0.2784262001514435 -0.782279908657074 -0.5334889888763428 0.2784262001514435 -0.7529913187026978 -0.5611518621444702 0.2875483632087708 -0.7529913187026978 -0.5611518621444702 0.2875483632087708 -0.7638605833053589 -0.5523343086242676 0.2950736284255981 -0.7638605833053589 -0.5523343086242676 0.2950736284255981 -0.7716865539550781 -0.5523343086242676 0.2736347615718842 -0.7716865539550781 -0.5523343086242676 0.2736347615718842 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7593755125999451 -0.5642404556274414 0.2700657248497009 -0.7593755125999451 -0.5642404556274414 0.2700657248497009 -0.7596756815910339 -0.5678825378417969 0.2692505121231079 -0.7846143841743469 -0.4800049960613251 0.290501743555069 -0.7846143841743469 -0.4800049960613251 0.290501743555069 -0.7855896949768066 -0.4802669584751129 0.286208987236023 -0.7855896949768066 -0.4802669584751129 0.286208987236023 -0.7853732705116272 -0.4810132682323456 0.2821890711784363 -0.7853732705116272 -0.4810132682323456 0.2821890711784363 -0.7839964628219605 -0.4821297228336334 0.2790530025959015 -0.7839964628219605 -0.4821297228336334 0.2790530025959015 -0.7542600035667419 -0.5590887069702148 0.2840702533721924 -0.7542600035667419 -0.5590887069702148 0.2840702533721924 -0.763191282749176 -0.548913836479187 0.2939048111438751 -0.763191282749176 -0.548913836479187 0.2939048111438751 -0.7750492691993713 -0.5334889888763428 0.2982333302497864 -0.7750492691993713 -0.5334889888763428 0.2982333302497864 -0.7800555229187012 -0.5318727493286133 0.2766901254653931 -0.7800555229187012 -0.5318727493286133 0.2766901254653931 -0.7704221606254578 -0.548913836479187 0.2740978002548218 -0.7704221606254578 -0.548913836479187 0.2740978002548218 -0.7585252523422241 -0.5611518621444702 0.2723884582519531 -0.7585252523422241 -0.5611518621444702 0.2723884582519531 -0.7825949788093567 -0.4802669584751129 0.2944135665893555 -0.7825949788093567 -0.4802669584751129 0.2944135665893555 -0.7811463475227356 -0.5086090564727783 0.297825813293457 -0.7811463475227356 -0.5086090564727783 0.297825813293457 -0.7816710472106934 -0.4834472239017487 0.2772795259952545 -0.7816710472106934 -0.4834472239017487 0.2772795259952545 -0.7826264500617981 -0.5086090564727783 0.2776279151439667 -0.7826264500617981 -0.5086090564727783 0.2776279151439667 -0.7557573914527893 -0.5583648681640625 0.2799681127071381 -0.7557573914527893 -0.5583648681640625 0.2799681127071381 -0.7632195949554443 -0.5460140705108643 0.2912820279598236 -0.7632195949554443 -0.5460140705108643 0.2912820279598236 -0.7722298502922058 -0.5318727493286133 0.2981289625167847 -0.7722298502922058 -0.5318727493286133 0.2981289625167847 -0.7772368788719177 -0.5302550792694092 0.2765855491161346 -0.7772368788719177 -0.5302550792694092 0.2765855491161346 -0.7687534689903259 -0.5460140705108643 0.2761222422122955 -0.7687534689903259 -0.5460140705108643 0.2761222422122955 -0.7572545409202576 -0.5590887069702148 0.2758658826351166 -0.7572545409202576 -0.5590887069702148 0.2758658826351166 -0.7700717449188232 -0.4507050812244415 0.2851933538913727 -0.7700717449188232 -0.4507050812244415 0.2851933538913727 -0.7713201642036438 -0.4513538777828217 0.2810003161430359 -0.7713201642036438 -0.4513538777828217 0.2810003161430359 -0.7718814015388489 -0.4532025158405304 0.2772639095783234 -0.7718814015388489 -0.4532025158405304 0.2772639095783234 -0.7716686725616455 -0.4559684097766876 0.2745532691478729 -0.7716686725616455 -0.4559684097766876 0.2745532691478729 -0.7707153558731079 -0.4592308700084686 0.2732801735401154 -0.7707153558731079 -0.4592308700084686 0.2732801735401154 -0.7639413475990295 -0.5440757274627686 0.2876043915748596 -0.7639413475990295 -0.5440757274627686 0.2876043915748596 -0.7700060606002808 -0.5302550792694092 0.2963924407958984 -0.7700060606002808 -0.5302550792694092 0.2963924407958984 -0.7779124975204468 -0.5086090564727783 0.2992783784866333 -0.7779124975204468 -0.5086090564727783 0.2992783784866333 -0.7795143723487854 -0.5086090564727783 0.2774169743061066 -0.7795143723487854 -0.5086090564727783 0.2774169743061066 -0.774250328540802 -0.5288839340209961 0.2781288921833038 -0.774250328540802 -0.5288839340209961 0.2781288921833038 -0.7669360041618347 -0.5440757274627686 0.2793997526168823 -0.7669360041618347 -0.5440757274627686 0.2793997526168823 -0.7683249115943909 -0.4513538777828217 0.2892045080661774 -0.7683249115943909 -0.4513538777828217 0.2892045080661774 -0.7798391580581665 -0.4810132682323456 0.2973486185073853 -0.7798391580581665 -0.4810132682323456 0.2973486185073853 -0.7691658139228821 -0.462493509054184 0.2736393809318543 -0.7691658139228821 -0.462493509054184 0.2736393809318543 -0.7787491083145142 -0.4847645461559296 0.2771378755569458 -0.7787491083145142 -0.4847645461559296 0.2771378755569458 -0.7652463316917419 -0.5433958768844605 0.2834318280220032 -0.7652463316917419 -0.5433958768844605 0.2834318280220032 -0.7687168121337891 -0.5288839340209961 0.2932883203029633 -0.7687168121337891 -0.5288839340209961 0.2932883203029633 -0.7748002409934998 -0.5086090564727783 0.299067348241806 -0.7748002409934998 -0.5086090564727783 0.299067348241806 -0.7762805819511414 -0.5086090564727783 0.2788696885108948 -0.7762805819511414 -0.5086090564727783 0.2788696885108948 -0.771552324295044 -0.5279688835144043 0.2810851335525513 -0.771552324295044 -0.5279688835144043 0.2810851335525513 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.7598279118537903 -0.4502493441104889 0.270230770111084 -0.7598279118537903 -0.4502493441104889 0.270230770111084 -0.7685574293136597 -0.5279688835144043 0.2892895638942719 -0.7685574293136597 -0.5279688835144043 0.2892895638942719 -0.7722839117050171 -0.5086090564727783 0.2972239553928375 -0.7722839117050171 -0.5086090564727783 0.2972239553928375 -0.7767665386199951 -0.4821297228336334 0.298860102891922 -0.7767665386199951 -0.4821297228336334 0.298860102891922 -0.7756767272949219 -0.4858811795711517 0.2786497473716736 -0.7756767272949219 -0.4858811795711517 0.2786497473716736 -0.7734167575836182 -0.5086090564727783 0.2817656397819519 -0.7734167575836182 -0.5086090564727783 0.2817656397819519 -0.7695537805557251 -0.5276470184326172 0.2850039303302765 -0.7695537805557251 -0.5276470184326172 0.2850039303302765 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.766347348690033 -0.4532025158405304 0.2924236953258514 -0.766347348690033 -0.4532025158405304 0.2924236953258514 -0.7589777112007141 -0.4533375799655914 0.272553950548172 -0.7589777112007141 -0.4533375799655914 0.272553950548172 -0.7672565579414368 -0.4652592241764069 0.2755759060382843 -0.7672565579414368 -0.4652592241764069 0.2755759060382843 -0.7707462310791016 -0.5086090564727783 0.2940293550491333 -0.7707462310791016 -0.5086090564727783 0.2940293550491333 -0.7738451957702637 -0.4834472239017487 0.2987184822559357 -0.7738451957702637 -0.4834472239017487 0.2987184822559357 -0.7729213237762451 -0.4866270124912262 0.2815848290920258 -0.7729213237762451 -0.4866270124912262 0.2815848290920258 -0.7713596820831299 -0.5086090564727783 0.285663366317749 -0.7713596820831299 -0.5086090564727783 0.285663366317749 -0.7562143206596375 -0.4466072618961334 0.2801350057125092 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7562205791473389 -0.4370884597301483 0.2801374793052673 -0.7547230124473572 -0.437812477350235 0.2842392921447754 -0.7562143206596375 -0.4466072618961334 0.2801350057125092 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7577182054519653 -0.437812477350235 0.2760350406169891 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7589862942695618 -0.4398764669895172 0.2725569307804108 -0.7598323822021484 -0.4429642260074616 0.2702324688434601 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.760127604007721 -0.4466072618961334 0.2694154679775238 -0.7704225182533264 -0.5086090564727783 0.2899697721004486 -0.7704225182533264 -0.5086090564727783 0.2899697721004486 -0.7715195417404175 -0.4847645461559296 0.2969449162483215 -0.7715195417404175 -0.4847645461559296 0.2969449162483215 -0.7644380927085877 -0.4559684097766876 0.2943599820137024 -0.7644380927085877 -0.4559684097766876 0.2943599820137024 -0.7652781009674072 -0.4671074450016022 0.2787948548793793 -0.7652781009674072 -0.4671074450016022 0.2787948548793793 -0.7709025144577026 -0.4868890345096588 0.285496324300766 -0.7709025144577026 -0.4868890345096588 0.285496324300766 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7534523010253906 -0.4398764669895172 0.2877164781093597 -0.7577064633369446 -0.4554002583026886 0.2760307788848877 -0.7577064633369446 -0.4554002583026886 0.2760307788848877 -0.770143449306488 -0.4858811795711517 0.2938092648983002 -0.770143449306488 -0.4858811795711517 0.2938092648983002 -0.7628887891769409 -0.4592308700084686 0.2947191298007965 -0.7628887891769409 -0.4592308700084686 0.2947191298007965 -0.7635319828987122 -0.4677572548389435 0.2828062176704407 -0.7635319828987122 -0.4677572548389435 0.2828062176704407 -0.7699267864227295 -0.4866270124912262 0.2897888720035553 -0.7699267864227295 -0.4866270124912262 0.2897888720035553 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7562091946601868 -0.4561249315738678 0.2801329493522644 -0.7562091946601868 -0.4561249315738678 0.2801329493522644 -0.7619361281394959 -0.462493509054184 0.29344642162323 -0.7619361281394959 -0.462493509054184 0.29344642162323 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7526018619537354 -0.4429642260074616 0.290039449930191 -0.7622835040092468 -0.4671074450016022 0.2869994938373566 -0.7622835040092468 -0.4671074450016022 0.2869994938373566 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7547121644020081 -0.4554002583026886 0.2842352688312531 -0.7547121644020081 -0.4554002583026886 0.2842352688312531 -0.7617230415344238 -0.4652592241764069 0.2907354831695557 -0.7617230415344238 -0.4652592241764069 0.2907354831695557 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7523016929626465 -0.4466072618961334 0.2908545732498169 -0.7525970935821533 -0.4502493441104889 0.2900377213954926 -0.7525970935821533 -0.4502493441104889 0.2900377213954926 -0.7534435987472534 -0.4533375799655914 0.2877134084701538 -0.7534435987472534 -0.4533375799655914 0.2877134084701538</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"268\" source=\"#ID128\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID125\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID129\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"804\">-0.5876968925040732 -0.6735887911657533 0.4482081022883399 -0.6799127012575088 -0.6905785237255421 0.2466171551976235 -0.759162307953137 -0.5897294263540077 0.2754846527039925 0.759162307953137 0.5897294263540077 -0.2754846527039925 0.6799127012575088 0.6905785237255421 -0.2466171551976235 0.5876968925040732 0.6735887911657533 -0.4482081022883399 0.9393751607873966 -0.0005323211920775615 -0.3428906880185009 0.9393628637960561 -0.0006173183939990839 -0.3429242322129957 0.9393707373678011 -0.000612502356919651 -0.3429026722233822 -0.9393707373678011 0.000612502356919651 0.3429026722233822 -0.9393628637960561 0.0006173183939990839 0.3429242322129957 -0.9393751607873966 0.0005323211920775615 0.3428906880185009 -0.6458786781853358 -0.5638637250233121 0.5146828466817196 0.6458786781853358 0.5638637250233121 -0.5146828466817196 -0.8252130452855564 -0.5644959910024429 0.01917566251028928 0.8252130452855564 0.5644959910024429 -0.01917566251028928 0.9393567538817786 -0.0005382712193212191 -0.342941101649805 -0.9393567538817786 0.0005382712193212191 0.342941101649805 0.939356016129181 -0.0005718943339125305 -0.3429430680138977 -0.939356016129181 0.0005718943339125305 0.3429430680138977 -0.8952735511995463 -0.3038189711323704 0.325851655362714 0.8952735511995463 0.3038189711323704 -0.325851655362714 -0.4478259900236246 -0.6063394693870341 0.6571182013327666 0.4478259900236246 0.6063394693870341 -0.6571182013327666 -0.9554916368303205 -0.2903786264833388 0.05211511516790984 0.9554916368303205 0.2903786264833388 -0.05211511516790984 -0.7434422345913258 -0.6677615857521629 0.03725732705942159 0.7434422345913258 0.6677615857521629 -0.03725732705942159 0.9393876703993481 -0.0004425158333556151 -0.3428565427134553 -0.9393876703993481 0.0004425158333556151 0.3428565427134553 0.9393666363447232 -0.0005621982148279082 -0.3429139927963977 -0.9393666363447232 0.0005621982148279082 0.3429139927963977 -0.7663098117138697 -0.287478801867799 0.5745652364594542 0.7663098117138697 0.287478801867799 -0.5745652364594542 -0.4613914722004991 -0.4765550593873655 0.7483402867365623 0.4613914722004991 0.4765550593873655 -0.7483402867365623 -0.932740769324679 -0.2413542623399678 -0.267848422227826 0.932740769324679 0.2413542623399678 0.267848422227826 -0.8341463287975626 -0.4767548134915079 -0.2773170567531434 0.8341463287975626 0.4767548134915079 0.2773170567531434 0.9393855128217374 -0.0006459763529616571 -0.3428621312061057 -0.9393855128217374 0.0006459763529616571 0.3428621312061057 -0.2088796630572912 -0.4500651899447348 0.8682226737197561 0.2088796630572912 0.4500651899447348 -0.8682226737197561 -0.7749432179757205 -0.5980364207514185 -0.204488259732111 0.7749432179757205 0.5980364207514185 0.204488259732111 0.939366114960446 -0.0006049700991971296 -0.3429153482644036 -0.939366114960446 0.0006049700991971296 0.3429153482644036 -0.9387340067703677 -0.03695263064359954 0.3426557567316931 0.9387340067703677 0.03695263064359954 -0.3426557567316931 -0.9968836200001532 -0.03631772943364059 0.07002907042203974 0.9968836200001532 0.03631772943364059 -0.07002907042203974 -0.9665215557356135 -0.03194205032447853 -0.2545894493483146 0.9665215557356135 0.03194205032447853 0.2545894493483146 0.9430367189335424 0.1968518836966687 0.268199706614553 -0.9430367189335424 -0.1968518836966687 -0.268199706614553 -0.1507118301187419 -0.2948238051524016 0.943591473137458 0.2067286901584398 -0.1242111749235226 0.9704817528884784 -0.2067286901584398 0.1242111749235226 -0.9704817528884784 0.1507118301187419 0.2948238051524016 -0.943591473137458 -0.7259792496024214 -0.2943875774327934 -0.6215223917124435 0.7259792496024214 0.2943875774327934 0.6215223917124435 -0.7333575458056554 -0.4462259760542575 -0.5129026109353815 0.7333575458056554 0.4462259760542575 0.5129026109353815 0.9393735877531112 -0.0006683619107217434 -0.3428947592545039 -0.9393735877531112 0.0006683619107217434 0.3428947592545039 -0.8075809994209117 -0.03495251137658172 0.5887200109753288 0.8075809994209117 0.03495251137658172 -0.5887200109753288 -0.5434233473847485 -0.236380861998622 0.8054906291186406 0.5434233473847485 0.236380861998622 -0.8054906291186406 -0.77624666820467 -0.0208055834280788 -0.6300858971595587 0.77624666820467 0.0208055834280788 0.6300858971595587 -0.7622511894948567 -0.1430085582808667 -0.6312857327487325 0.7622511894948567 0.1430085582808667 0.6312857327487325 0.9517583666008596 0.3063554853541103 -0.01738758748968628 -0.9517583666008596 -0.3063554853541103 0.01738758748968628 0.3085135604110648 -0.006603051996354107 0.9511970262499887 -0.3085135604110648 0.006603051996354107 -0.9511970262499887 -0.3878239877414278 -0.008000950448255184 -0.9216987248142754 0.3878239877414278 0.008000950448255184 0.9216987248142754 -0.4792453524202446 -0.1284890568692437 -0.8682248870243514 0.4792453524202446 0.1284890568692437 0.8682248870243514 0.9393735869902281 -0.0006695758963013816 -0.3428947589760324 0.5562171680627579 0.1930149375026731 -0.8083116328824455 -0.5562171680627579 -0.1930149375026731 0.8083116328824455 -0.9393735869902281 0.0006695758963013816 0.3428947589760324 -0.9045527953872581 0.2690997388246127 0.3307107057862241 0.9045527953872581 -0.2690997388246127 -0.3307107057862241 -0.9649660436318769 0.2559692579079254 0.05762181569083463 0.9649660436318769 -0.2559692579079254 -0.05762181569083463 -0.9411968749283585 0.212637547222373 -0.2625523112378656 0.9411968749283585 -0.212637547222373 0.2625523112378656 -0.7688041742506049 0.1267303267397051 -0.6268010577043508 0.7688041742506049 -0.1267303267397051 0.6268010577043508 0.9251000585648488 0.3236474129631007 -0.1986006891367833 -0.9251000585648488 -0.3236474129631007 0.1986006891367833 0.7287341594235066 0.266575449730096 0.6307805121359665 -0.7287341594235066 -0.266575449730096 -0.6307805121359665 -0.1772913704638064 -0.1383692191083977 0.9743827426439765 0.1772913704638064 0.1383692191083977 -0.9743827426439765 -0.3700636271278899 -0.0026001605183503 -0.9290027723544364 0.3700636271278899 0.0026001605183503 0.9290027723544364 0.1511001016898652 0.2634154647907756 -0.9527754468805187 -0.1511001016898652 -0.2634154647907756 0.9527754468805187 0.7485679692683575 0.2979864513267261 -0.5923259830626647 -0.7485679692683575 -0.2979864513267261 0.5923259830626647 -0.7742812385345269 0.2570974118672391 0.5782641995356501 0.7742812385345269 -0.2570974118672391 -0.5782641995356501 -0.5751797832589399 -0.02964236575501923 0.8174897840845747 0.5751797832589399 0.02964236575501923 -0.8174897840845747 -0.3765588901945572 0.00306265901278567 -0.9263876199168547 0.3765588901945572 -0.00306265901278567 0.9263876199168547 -0.3558744091625368 -0.00105431210854561 -0.9345331954131929 0.3558744091625368 0.00105431210854561 0.9345331954131929 0.8900901419288182 0.3214159272263259 -0.3231583837166805 -0.8900901419288182 -0.3214159272263259 0.3231583837166805 0.8939422885008184 0.3901586756435967 0.2205524714210979 -0.8939422885008184 -0.3901586756435967 -0.2205524714210979 0.3189739854704907 -0.002230760464651021 0.9477608455200186 -0.3189739854704907 0.002230760464651021 -0.9477608455200186 0.1459070766059959 0.1197596578183602 -0.9820227845399114 -0.1459070766059959 -0.1197596578183602 0.9820227845399114 0.5502710975079951 0.3842764948060142 -0.7413051293407796 -0.5502710975079951 -0.3842764948060142 0.7413051293407796 0.8401899553323845 0.3172136215311651 -0.4398367393404606 -0.8401899553323845 -0.3172136215311651 0.4398367393404606 -0.7403767789009327 0.6147888203117427 0.2718031119836112 0.7403767789009327 -0.6147888203117427 -0.2718031119836112 -0.8111574230182659 0.5848269571315641 0.001032131097179552 0.8111574230182659 -0.5848269571315641 -0.001032131097179552 -0.8177054620361993 0.4874545794882314 -0.3061793760071327 0.8177054620361993 -0.4874545794882314 0.3061793760071327 -0.7013225750134465 0.2955872987883978 -0.6486715614018295 0.7013225750134465 -0.2955872987883978 0.6486715614018295 -0.3706111819145363 0.007338079827218162 -0.9287591207758661 0.3706111819145363 -0.007338079827218162 0.9287591207758661 0.9049787698564504 0.4174971728340059 -0.08191176218784334 -0.9049787698564504 -0.4174971728340059 0.08191176218784334 0.7492842702768336 0.1133073061078705 0.6524833612424842 -0.7492842702768336 -0.1133073061078705 -0.6524833612424842 -0.1878140547977587 -0.01875155572929557 0.9820255902868089 0.1878140547977587 0.01875155572929557 -0.9820255902868089 0.167502222222814 0.02034291975031596 -0.9856617935004132 -0.167502222222814 -0.02034291975031596 0.9856617935004132 0.5512543512531241 0.1792794820842699 -0.8148481499813896 -0.5512543512531241 -0.1792794820842699 0.8148481499813896 0.7513795791219324 0.4126530258060037 -0.5149234975913383 -0.7513795791219324 -0.4126530258060037 0.5149234975913383 -0.6173781056117399 0.5870733562910818 0.5236307372990856 0.6173781056117399 -0.5870733562910818 -0.5236307372990856 -0.5497328960254407 0.2145702959604168 0.8073124123404403 0.5497328960254407 -0.2145702959604168 -0.8073124123404403 0.1141922235456532 -0.2671827699782004 -0.9568560516130291 -0.1141922235456532 0.2671827699782004 0.9568560516130291 0.1373067547012777 -0.1084821594943567 -0.984570198708474 -0.1373067547012777 0.1084821594943567 0.984570198708474 0.8546613199521403 0.4177995435425294 -0.3082167574829752 -0.8546613199521403 -0.4177995435425294 0.3082167574829752 0.949312841698599 0.1689206995761342 0.2650866383672328 -0.949312841698599 -0.1689206995761342 -0.2650866383672328 0.3297255915197676 -0.0009885026706106888 0.9440762983781605 -0.3297255915197676 0.0009885026706106888 -0.9440762983781605 0.5669851340101569 0.03369013539364726 -0.8230387795168842 -0.5669851340101569 -0.03369013539364726 0.8230387795168842 0.7912620993234708 0.1931464842356832 -0.5801712900528676 -0.7912620993234708 -0.1931464842356832 0.5801712900528676 -0.638537056043159 0.7328347537142009 0.2349971314896894 0.638537056043159 -0.7328347537142009 -0.2349971314896894 -0.7017607547321368 0.712370248672392 0.007776369603867601 0.7017607547321368 -0.712370248672392 -0.007776369603867601 -0.7315432666606591 0.6332764970439743 -0.2525971640679395 0.7315432666606591 -0.6332764970439743 0.2525971640679395 -0.6857894462902499 0.4575811258932667 -0.5659614373640338 0.6857894462902499 -0.4575811258932667 0.5659614373640338 -0.448989411502799 0.118161168088927 -0.8856898140513023 0.448989411502799 -0.118161168088927 0.8856898140513023 0.5397359834793658 -0.2011374880223855 -0.8174526157824724 -0.5397359834793658 0.2011374880223855 0.8174526157824724 0.9805230520615818 0.1855606155572991 -0.06435683592157802 -0.9805230520615818 -0.1855606155572991 0.06435683592157802 0.7630889204272282 0.01780855155038437 0.64604810580396 -0.7630889204272282 -0.01780855155038437 -0.64604810580396 -0.1843376772474672 0.1285988927317919 0.9744136419073606 0.1843376772474672 -0.1285988927317919 -0.9744136419073606 0.5422038749671823 -0.1706845476378058 -0.822728231658699 -0.5422038749671823 0.1706845476378058 0.822728231658699 0.805326769638433 0.03891174302325975 -0.591552762108857 -0.805326769638433 -0.03891174302325975 0.591552762108857 0.9228136040141001 0.1909154029804643 -0.334613749196465 -0.9228136040141001 -0.1909154029804643 0.334613749196465 -0.5477717468215713 0.7058405800431359 0.4491494060425926 0.5477717468215713 -0.7058405800431359 -0.4491494060425926 -0.4230759410465558 0.4905613902451703 0.7618111777260144 0.4230759410465558 -0.4905613902451703 -0.7618111777260144 0.7307814415269979 -0.3129023787814385 -0.6066717284270301 -0.7307814415269979 0.3129023787814385 0.6066717284270301 0.4946705607433165 -0.4106995055208651 -0.765915760706626 -0.4946705607433165 0.4106995055208651 0.765915760706626 0.9640089799779689 0.03017944270324709 0.2641512592435581 -0.9640089799779689 -0.03017944270324709 -0.2641512592435581 0.3067914316709257 0.003415327227728099 0.9517706409599064 -0.3067914316709257 -0.003415327227728099 -0.9517706409599064 0.7845936255858756 -0.1951876263780493 -0.5884850322641299 -0.7845936255858756 0.1951876263780493 0.5884850322641299 0.9386630805879255 0.0392960783194796 -0.3425893159015547 -0.9386630805879255 -0.0392960783194796 0.3425893159015547 0.9393670562484972 0.0006709258275012985 -0.3429126470306497 0.939387535505722 0.000712326964459923 -0.342856457904444 0.9393574540791952 0.0007067326414839689 -0.3429388779284527 -0.9393574540791952 -0.0007067326414839689 0.3429388779284527 -0.939387535505722 -0.000712326964459923 0.342856457904444 -0.9393670562484972 -0.0006709258275012985 0.3429126470306497 0.9393431617020412 0.0007352327346118228 -0.342977964301555 -0.9393431617020412 -0.0007352327346118228 0.342977964301555 0.9393599141774945 0.0007601345231298448 -0.3429320250894583 -0.9393599141774945 -0.0007601345231298448 0.3429320250894583 0.9393615077663579 0.0007724940961668289 -0.3429276322779873 0.9393601490072554 0.0007609575084204824 -0.3429313800175442 -0.9393601490072554 -0.0007609575084204824 0.3429313800175442 -0.9393615077663579 -0.0007724940961668289 0.3429276322779873 0.9393627260853724 0.0006563668888109732 -0.3429245369231614 -0.9393627260853724 -0.0006563668888109732 0.3429245369231614 0.9971204370427232 0.03653306278942292 -0.06645426513740364 -0.9971204370427232 -0.03653306278942292 0.06645426513740364 0.7372987661546131 -0.1107401548197216 0.6664286514979597 -0.7372987661546131 0.1107401548197216 -0.6664286514979597 -0.1171929909311837 0.2980396873264142 0.9473321210932186 0.1171929909311837 -0.2980396873264142 -0.9473321210932186 0.7109610084331069 -0.4576545015958977 -0.533935203612564 -0.7109610084331069 0.4576545015958977 0.533935203612564 0.9195885397944029 -0.2021437811372046 -0.3368899066851834 -0.9195885397944029 0.2021437811372046 0.3368899066851834 0.9393777598906878 0.0007398185943266229 -0.342883182572725 -0.9393777598906878 -0.0007398185943266229 0.342883182572725 -0.4126002273746283 0.6241763898905763 0.6634492344358925 0.4126002273746283 -0.6241763898905763 -0.6634492344358925 0.8327769633305351 -0.326481564813242 -0.4470931862409326 -0.8327769633305351 0.326481564813242 0.4470931862409326 0.9437654754795771 -0.1746400651050991 0.2807268689543169 -0.9437654754795771 0.1746400651050991 -0.2807268689543169 0.3076547733687897 0.009019681811754757 0.9514552988782045 -0.3076547733687897 -0.009019681811754757 -0.9514552988782045 0.8292553411957173 -0.4679345914479724 -0.305569627457955 -0.8292553411957173 0.4679345914479724 0.305569627457955 0.978525240877293 -0.198207437447245 -0.05658767274444375 -0.978525240877293 0.198207437447245 0.05658767274444375 0.9393775037110876 0.0007170786854222044 -0.3428839327231367 -0.9393775037110876 -0.0007170786854222044 0.3428839327231367 0.8889169327109634 -0.3206772464545694 -0.327097524212654 -0.8889169327109634 0.3206772464545694 0.327097524212654 0.6972377163543299 -0.2684672569085393 0.6646690145185071 -0.6972377163543299 0.2684672569085393 -0.6646690145185071 -0.1853855410059012 0.4540945488152194 0.8714530061467753 0.1853855410059012 -0.4540945488152194 -0.8714530061467753 0.8860657673843491 -0.460566397903878 -0.05259324092914863 -0.8860657673843491 0.460566397903878 0.05259324092914863 0.9393815149114341 0.0006962135971441197 -0.3428729862927766 -0.9393815149114341 -0.0006962135971441197 0.3428729862927766 0.9261755368606386 -0.3171137330902705 -0.2040533146176769 -0.9261755368606386 0.3171137330902705 0.2040533146176769 0.8692075955050879 -0.4145285925430947 0.2695258835075111 -0.8692075955050879 0.4145285925430947 -0.2695258835075111 0.2112090076613408 0.1239828002257577 0.9695457804203428 -0.2112090076613408 -0.1239828002257577 -0.9695457804203428 0.9435827415100812 -0.1957791465876297 0.2670620446370821 -0.9435827415100812 0.1957791465876297 -0.2670620446370821 0.9532398032915065 -0.3012849232039792 -0.02369118972829772 -0.9532398032915065 0.3012849232039792 0.02369118972829772</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"268\" source=\"#ID129\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID127\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID130\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1344\">-1.634288126785523 -0.5065289085493202 -1.640379052581864 -0.5410184523209991 -1.856555345418121 -0.4964163357652918 -5.778295590805511 0.03205422185374644 -5.771040376065449 0.06640407704827979 -5.683106961699117 0.03203849938297348 -1.649825872907014 -0.7096271427484812 -1.872085244757289 -0.6994083991017083 -1.864254265075438 -0.6651528064412706 -1.250153234433578 1.388867994416182 -1.033136379969898 1.346867854706073 -1.2640871169191 1.355830552429904 -5.772293785269364 0.06467080810115421 -5.751655304927285 0.09379116709534083 -5.684362861601302 0.03030128675433246 -5.771057804517495 -0.004020829118176509 -5.77829604825178 0.03033741467521566 -5.683107419145802 0.03032169064965274 0.941829984151723 -0.9609511652732851 0.9391453810392414 -0.9956921457641622 0.6591045179291777 -0.9565910163461631 -2.298736174314402 -2.252131831131854 -2.295799360350946 -2.285392208547589 -2.508224399502738 -2.235320619216542 1.360259115359714 0.7438133206830114 1.348136929739905 0.7103366787325215 1.072091003311855 0.7458384694714858 -1.046144858699138 1.135555738755742 -1.061731116339241 1.102958580026134 -1.277093603441204 1.144550148730938 -5.749518098518074 0.09476023152207522 -5.718629545671879 0.1142170674418765 -5.682217795954116 0.0312755066327144 -5.751022146412669 -0.03209973361856562 -5.771643141950839 -0.002972906983269175 -5.683691598819914 0.03136777785330124 0.9360188500432026 -1.178793874431138 0.653294825374241 -1.174376258026063 0.6606496470022805 -1.140161651151889 1.082062536854703 1.002869853268189 1.362730555809482 0.9666582456482398 1.074562321257126 0.9686725780065689 -2.59692189371452 -2.750766795198185 -2.594551974413581 -2.71763225463656 -2.387561148125512 -2.768533614240544 1.572856767537705 3.192495854687331 1.848982780508274 3.157381599884053 1.565216039789851 3.160762650246198 -0.5326693457661397 3.509086516653532 -0.3173867435926214 3.467239795083357 -0.5522414566524753 3.479687267329237 -5.682524326379558 0.03125426468534857 -5.718934609416646 0.1141962239470702 -5.682505174354105 0.1210205370941643 -3.548374177992213 -4.162400898866058 -3.748405835024245 -4.096493015933778 -3.556813030258006 -4.131988087612529 -0.3707686409634659 2.876568066983024 -0.3947520919379999 2.849080661628393 -0.6056354571054812 2.88887340672698 -5.719528767814164 -0.05209044814793297 -5.750408737360305 -0.03262718972382478 -5.683080428078381 0.0308417911828481 4.186850590640463 -1.012832654639289 4.187181959525086 -1.047532031750883 3.910348885434423 -1.036753305367215 0.461361770471615 -2.805143628904236 0.4675799557079119 -2.837968092285334 0.1935975774084048 -2.79365197764752 4.303757616769216 0.7931495987261827 4.299276099205702 0.7586266097905626 4.025651445178969 0.768262892045919 4.421855965558771 2.675739898522337 4.412944362757875 2.644212477329875 4.148594793655522 2.653164426675216 1.836544132993338 2.530954269068594 1.815935736747094 2.501996573645861 1.552776893868374 2.534309332938826 -5.685517809967489 0.03186237080762425 -5.685483153435268 0.1216286403407125 -5.649064958060038 0.1147878556212348 -9.030374649917681 -1.574259264673119 -9.097831914049516 -1.418111789352376 -9.01501151996856 -1.547393323510752 -4.142805915330388 -4.551035293948126 -4.141710119170721 -4.520285381727755 -3.953061528514277 -4.592219093100567 0.5198919438131561 5.681147397240062 0.7287342649248896 5.635173346240597 0.4953520758126662 5.657199812528079 0.5761398701293136 4.938653610753637 0.5457425097262514 4.918725752989903 0.3425593751247935 4.959338371403813 -5.684229012748609 -0.05839674360224198 -5.720654875189503 -0.05155612160551183 -5.684201171964915 0.03137465884716622 3.918068169370771 -1.033112221647365 4.191633949144947 -1.043728341387933 3.915140147795424 -1.067705463291403 4.022424033973914 0.834096151218422 4.299316023905623 0.8242985867211519 4.021206310122105 0.7994363883648149 0.1353488577012257 -3.385379955262383 0.1426733292801519 -3.353600057806711 0.4030523637027622 -3.397715594431443 4.136299052245296 2.77213048139999 4.409934787789173 2.762690938571992 4.136676566775521 2.740093373416944 4.296967691609879 4.834050616884352 4.561262373190898 4.824146386953786 4.298462563975828 4.806187967889898 2.277332738046936 5.404742304676548 2.539551599375477 5.368003662027922 2.268979779556783 5.376952527814152 -5.684613092909862 0.03143214119235111 -5.648164570525363 0.1143588037099876 -5.61728512605813 0.09489386175592705 -2.391575643019016 7.075109157083599 -2.54491357482462 7.008856034877449 -2.579941045850445 7.019262065795718 -9.455522670358189 0.3936826177966736 -9.425502495920142 0.4103758079060491 -9.416687345118106 0.2521722878796683 -0.5205322597230766 -5.003410972697667 -0.7759609292150033 -4.944027806037942 -0.5324501778737423 -4.974112482582693 2.484791692757342 4.622491555313475 2.457577970450815 4.600404225150341 2.214192329424671 4.630909266079464 2.692538484590985 7.149239896415337 2.722672491989346 7.165807289230103 2.914162444762996 7.098685444118171 2.551196454191369 6.960176066700288 2.362825959432703 7.016021475754335 2.586232415527616 6.970580909416076 -5.684238825075605 -0.05839476020257792 -5.68421093372304 0.03137664223711616 -5.647815872610838 -0.05156786487336856 5.550740669980429 -0.7031542345021993 5.551983930813544 -0.7378102782263556 5.265588396921515 -0.7425259612204131 4.027137664664973 -2.936758650661695 4.03183283263711 -2.968844775350604 3.75843209905359 -2.955861400622662 5.501772203953999 0.9708295837415617 5.502276960522053 0.9361588591065313 5.218505161799626 0.9320007330043373 5.442184087406976 2.726196003257531 5.442034999802737 2.694157733504288 5.165768091873196 2.690395843907137 5.363477376190491 4.622498711143918 5.36292902625928 4.594614593321119 5.097895239508742 4.59096264954118 4.57655003485986 4.72524694323863 4.564128520102458 4.698414767445477 4.313732538969919 4.707449421615377 -5.683656828523747 0.03060907923229341 -5.616332364152895 0.09407309923417973 -5.595708929043085 0.06494501139983984 -0.9035559238162105 4.707243960448621 -0.9343616981914327 4.726781007681586 -0.7460488040164265 4.760672494056906 -2.915516686883468 7.11768381176926 -2.8850110492991 7.101547003124586 -3.064761712741705 7.045879354138607 -8.695254082798334 -2.544458748004903 -8.742514541794581 -2.354180337085872 -8.675320800472102 -2.520158893678196 -1.172230252181666 -5.586780348943091 -1.162635729891915 -5.559234261855116 -0.9302904315922256 -5.623888626311721 3.634837123849704 6.87366660110001 3.646177290930252 6.897641335596261 3.884287868500393 6.847617592972168 3.474955179495547 6.699536004914985 3.724861717189847 6.676347654042879 3.692958291840227 6.661975881050432 9.459460031363795 0.4198141392265857 9.489462694564887 0.4031058003115101 9.480505502558653 0.2449040595548825 8.68391044850973 -2.384958581035534 8.618607649062048 -2.552972255618855 8.608036055581655 -2.524715861107074 -5.64820700494384 -0.05159523905633234 -5.684600202790996 0.03134977399356694 -5.617314580384186 -0.03214368485288174 5.258386200642894 -0.6735411257000341 5.542147666558238 -0.6689630362439691 5.256968935414906 -0.7082159926309967 5.509574308368847 0.9353771847827545 5.226318222653589 0.8964989021024413 5.223167606128538 0.9311018180773975 3.777445589727428 -3.006914210559496 4.041562458501941 -3.019401516651943 3.772885548595255 -3.038752089955421 5.463511540082831 2.626612245948628 5.187086486360211 2.590855394880787 5.179737704047764 2.62254107133701 5.392865583126181 4.510938742625006 5.127218825968604 4.479741317634885 5.11660684268122 4.506822372824333 4.995032972003899 6.178128541047359 5.260016203490196 6.183598342080376 5.007685823580591 6.154941696776611 4.626587954251779 6.433440369273826 4.625137622580454 6.457953709657695 4.87517345875307 6.444055577750325 -5.683667357941976 0.03062793658874029 -5.595719437593925 0.06496383567925987 -5.588490646712567 0.03060971688826645 -0.4598590419423732 2.426713798117077 -0.4840621461310818 2.45408427740843 -0.3013709194714104 2.483465808915808 -1.410286566773439 5.335568849888774 -1.254312662185517 5.391711933229681 -1.228589745297435 5.368546301041597 -3.710722171227237 6.724208019360445 -3.492720817658558 6.761778418468669 -3.678822751719198 6.709835472709786 -9.320234484257593 1.345829623827133 -9.288518671217004 1.34019345550243 -9.364766633716425 1.175196317681586 3.632911908128812 -5.163997491092875 3.369616624503415 -5.143404123956382 3.625637957812055 -5.13601515249943 4.634626410958905 6.408092318440026 4.883222584391303 6.418551766529748 4.868346083145752 6.395805024591026 9.313410450463893 1.357480959732312 9.345124038670903 1.363126520220501 9.421554401144784 1.198182517139952 7.66094701079778 -3.968962028724445 7.600885510735214 -4.143263608647695 7.58895228403194 -4.115912139661436 3.379968156452582 -4.795022626127295 3.377814115820344 -4.825738046801772 3.200976333159742 -4.886913864563443 2.177731559297771 -4.256733539454348 1.987033527300132 -4.332666715782128 2.001011546405866 -4.303545603030939 -5.616905480062753 -0.03195764700595825 -5.684192595908041 0.03153483241750948 -5.596264906875802 -0.002836670226629316 8.135632481055744 0.6467846298274449 8.143736191055005 0.6126825793533866 7.817615547244568 0.5664056975362209 5.604026208031266 -2.447892704043489 5.605968045621975 -2.479895599273528 5.322239669658892 -2.485603461842086 7.910548891879452 1.62505911682075 7.917423041942325 1.590791612619515 7.595121947029427 1.549212695649579 7.648140393909088 2.740076383101864 7.654014175277737 2.708200818831211 7.344970491059966 2.669147191123872 7.250938896262698 4.066194749260766 7.25658957949578 4.038206995229646 6.968392189669932 3.99804925325602 6.330169403804309 5.567600197966375 6.33828197781904 5.543187600931597 6.078767289008784 5.488134954704552 5.234858943685333 6.219206489446688 5.234379154250187 6.194669514983062 4.982624410286215 6.190032337805749 -5.595738121885606 -0.002107843882471494 -5.683666853373951 0.03226200839890913 -5.588490142144011 0.03224379041315121 -0.2299324533387503 0.729168882831263 -0.2444582929433015 0.7620621536471894 -0.06595591735775286 0.790400861286243 -0.8125319772006873 3.017794677503951 -0.6542271561514512 3.074862410578888 -0.6339346682586394 3.045760783924645 -2.877774435399899 4.357863286120309 -2.9054821625964 4.379566241016444 -2.707005040896449 4.400150830114178 -3.924376744820628 6.828128521863997 -3.912227949632494 6.804395592346775 -4.107701896713467 6.770397319542972 -8.612090387140565 3.132318144885416 -8.415472723842832 3.25462297604561 -8.583522185231189 3.120103705864056 3.383826387321667 -5.232956294477321 3.390429891860372 -5.205556265624473 3.639833537315615 -5.225269220317825 7.988444796116241 3.950818076507967 8.186622618935166 3.852581069993151 7.974882037621727 3.928721227996451 8.321249129370793 3.414263150884053 8.524916106107225 3.325534200360769 8.496739733872749 3.312768203912115 0.1510206007186302 -5.711405996685896 0.1570653586876661 -5.739568266727456 -0.03463197449445815 -5.784963653351625 -1.255966484601831 -4.6331030134885 -1.452168057014411 -4.687120724204308 -1.433730305993322 -4.659992660156179 1.343610033826532 -2.897651272480716 1.34209162004531 -2.930821537567856 1.161915013148988 -2.968609549947419 0.6343652317238041 -2.304351929952293 0.6418617825255241 -2.271535750771943 0.8189598313239338 -2.2381868989369 7.788972773850396 0.6528216140289085 8.110519995554304 0.6978813329106642 7.792250235363141 0.6181240811246688 7.934673018451014 1.564016031454092 7.619334815426091 1.487941597001828 7.607723219364737 1.521513707960413 5.297544050171814 -2.364631221469998 5.573773910602987 -2.359445006498093 5.291853149384379 -2.396529747281462 7.721009017518952 2.551012032566287 7.417707771404205 2.480431187695184 7.398608439320649 2.509913182397862 7.378678430317099 3.806337644516013 7.095271469613857 3.740439878517878 7.07037146757814 3.763832987463858 6.220427645271243 5.351223384974789 6.503456244691065 5.409873293788387 6.249963775453848 5.334629748447567 -5.270613878297841 5.967673255825852 -5.275759361667078 6.179078711813066 -5.243504771459213 5.986660930279739 3.047084099028744 6.93091981268171 3.290809721156963 6.980753888153003 3.066212852775847 6.910657934091883 0.0643922459230406 -0.7210905818866035 0.06121120103332323 -0.6863590033394218 0.2379062217880146 -0.6570334173992765 -0.3636197155227572 0.9565918268743122 -0.199445161929524 1.017494559671196 -0.1864823122444165 0.9842165027092117 -2.822010068346362 2.090920108388004 -2.842674329173911 2.119859385685524 -2.662769188401859 2.135646876448718 -3.373182456892068 5.182275375164926 -3.203613940797268 5.22745458337398 -3.193571050743304 5.20001223956443 -4.873020602859887 6.447361349656247 -4.639301611593265 6.459652528907108 -4.858128783869598 6.424616012450758 -7.968610523694299 3.929467018207868 -7.955042831342867 3.907370432748207 -8.153204520808952 3.809113804253872 5.735731686947555 -4.306531837517649 5.459667223056172 -4.315665662678008 5.732965055269636 -4.278728774919856 3.946955635540269 6.787352992197897 3.95128838443904 6.763053017269658 3.716230936367765 6.730901383304845 -3.535693014794845 -5.251964487442733 -3.752587484793535 -5.267690810281319 -3.541751222657247 -5.224486546129128 -3.658791357557014 -5.077930099078674 -3.870291265138999 -5.119078097898604 -3.861981789478717 -5.091275294421588 -1.695311036086562 -3.412789638260236 -1.692728327425731 -3.44502301433671 -1.871599256619585 -3.466902521146339 -2.474335010279066 -2.440217038035144 -2.462407665813163 -2.408379080905731 -2.295299899327754 -2.392007176822233 0.3931295553270386 -0.9298718341588198 0.215151516310107 -0.9601832120140615 0.3881610346771586 -0.8952871545367428 8.83090808195661 1.713201502329808 8.637719336656275 1.670394886309324 8.82129416290114 1.74716277522841 8.399275799018552 -0.2210039491789647 8.40886644422185 -0.2523190646442885 8.089989920867051 -0.3078963674227854 8.701943789392425 2.053326377471591 8.510065975193324 2.014098746774247 8.688421921503766 2.086453025817476 8.466054264147338 2.627943768646528 8.483690014899814 2.597902795826956 8.298519861909124 2.560058353665381 8.035041820668011 3.496982364922802 8.056951315095304 3.471805670084362 7.883212921189479 3.431673652019552 6.809007439602639 5.021311928093619 6.836799964349999 5.002948715705256 6.683119219274349 4.947203955742285 -3.260660911194111 6.884266610850335 -3.228391922141995 6.897340545099304 -3.229921085116142 6.77327863886917 -2.695475850007717 7.161187854283521 -2.664815296173824 7.153756314305748 -2.739445982257249 6.970211505134532 -2.89218958151452 0.4623860832525094 -2.902584925186209 0.4962171725199305 -2.735085154802271 0.5098805270612874 -3.213671931998484 2.936118438852268 -3.054525052387994 2.981051777272747 -3.046127714352541 2.949440283961018 -4.596324846387193 4.734967347678038 -4.608856304640121 4.761768782547184 -4.391233370012669 4.768948202406476 -4.670534738712671 6.469354259775886 -4.671861372891332 6.444837997000658 -4.889221471490005 6.433779241743252 -3.547254578740973 6.90407687877277 -3.28923575130753 6.856286549768203 -3.553054643055344 6.879965491549306 5.663023208727047 -4.20765976635011 5.389330048648437 -4.242738453200204 5.398125280990574 -4.215263073891824 -5.278229585263992 -4.366305533453391 -5.516727459048768 -4.361257122533217 -5.287649137072221 -4.338958402008602 -5.454810054422477 -4.51563512383377 -5.453256057030798 -4.487773760575872 -5.225949682751572 -4.491991974974134 -3.991375186117491 -3.045963509967441 -4.19500860715473 -3.054122370011437 -3.995241946709423 -3.014068560931149 -4.2482546304477 -2.925821019825826 -4.242653025179007 -2.893825701827686 -4.048265382796182 -2.886460601861261 -2.491483608156819 -1.245228830975674 -2.658817033256372 -1.26010617416459 -2.494921775182919 -1.210636482554042 -2.838468018587474 -0.8928382005394318 -2.837154840158582 -0.8580486931832319 -2.674035559756206 -0.8444842978475415 8.617727186099021 1.681164327663043 8.610752423905051 1.715549223531451 8.8018125402254 1.757171900894283 8.536043491754262 1.97843696443914 8.520131262130361 2.010934105155868 8.714272989901735 2.050983812258195 8.006952711457062 -0.183947639801174 8.313349876694996 -0.1336197163075516 8.002438408217408 -0.2168446016713619 8.564453439037457 2.465756910542675 8.396381986438255 2.398698050210063 8.37264435659068 2.426321813870671 8.248327187524744 3.176968576735512 8.094213786232071 3.115059759357864 8.064406167390686 3.135525648921928 7.170002022230695 4.692479944407302 7.039293280764523 4.623730227025391 7.004515339233874 4.634662642814085 -5.480364303745048 5.782939931988822 -5.533619467239355 5.909304849834479 -5.464440254357934 5.809598000878715 -8.79249040936396 0.7829281715672438 -8.94006588098264 0.8266921709825369 -8.803805732043497 0.8127560611786968 -8.324479147978348 -1.138831000213761 -8.559984921300103 -1.085797531574062 -8.335059020080189 -1.109475333131905 -3.050694840966592 0.8044191868086035 -2.893355025099158 0.8514289446161969 -2.887452685790644 0.8170356909276371 -4.506374521597316 2.668429524590553 -4.515326390466558 2.699946707382018 -4.31156498745022 2.705787355114174 -4.435135774640633 4.841335461204134 -4.638866684136944 4.834869948878139 -4.433871442972754 4.869208280941132 -5.23258612624856 6.244795780432598 -4.980831637565121 6.240152371133828 -5.232107360543298 6.220260205619157 -3.304957886754006 6.930798896815192 -3.042113658866823 6.901161805012654 -3.061250670041988 6.880909366093234 8.871608282726093 -0.4862232848804858 8.885023154138871 -0.5125177972378905 8.59157698546651 -0.5981941395017913 -8.648698606186477 -1.204677381859101 -8.638240077235158 -1.177564936682886 -8.424578670472791 -1.232688230747936 -5.360122562265048 -2.506000423400825 -5.139242509498001 -2.476579842706702 -5.132773134567029 -2.508383650287633 -5.321690545371856 -2.64447189277278 -5.320812559055614 -2.612439665357678 -5.100943559160501 -2.614439619292221 -4.170363168307121 -1.055717432248732 -4.364824400472052 -1.061761956683289 -4.172710397766799 -1.0210962895362 -4.381232302345145 -1.014093437284773 -4.380274962914606 -0.9794036872903147 -4.189071014015481 -0.9735662655406596 -4.460382141882528 0.02970777035881239 -4.372445540844122 0.0640779423795097 -4.365194100076415 0.02972848475338779 8.903937635865709 1.58826874419468 8.716320660161918 1.537877073571023 8.897282944693579 1.620940077452542 -4.372422565099564 -0.005885461720779861 -4.460381700691149 0.02845100466999386 -4.365193658885561 0.0284717205621112 -4.39263004781457 -0.03440953332577173 -4.459960374557958 0.0290530312392545 -4.372000405281639 -0.005282113493438264 -4.423485553331526 -0.05386812311555181 -4.459945209472826 0.02906059301675808 -4.39261482727612 -0.03440193513979781 -4.459742214446557 -0.06069050670352177 -4.459774796619139 0.02907993685161893 -4.42331432621714 -0.05384855773769362 -4.4617782224255 -0.06036869844406919 -4.498200731610488 -0.05354097531077903 -4.461800327138134 0.02940174708602667 -4.497518157848608 -0.05383473939555101 -4.528406075737823 -0.0343791280378902 -4.461121000383781 0.02910886480316722 -8.962561667557381 0.7521034163714 -8.962223404290473 0.7826149539410692 -8.82688539192873 0.735001572547627 -4.450244072811719 0.7811894457271972 -4.454478296616852 0.8157344875429972 -4.25998964435588 0.8212174156970132 -4.346492488049074 2.781015738243396 -4.540986329433369 2.775647928898338 -4.346191014603219 2.813051616509951 -5.287903821982955 4.666486086019012 -5.28830999091003 4.694374815491331 -5.04974618255413 4.691938815248318 -5.213320699298114 6.203183542332868 -4.961995522428713 6.222685247830399 -4.974781695470389 6.199542430651975 2.790248284699574 7.12077861696805 2.821065395156717 7.127784662287296 2.895758311766352 6.905161380056465 8.703643680961973 -0.6857681323355882 8.415732719445984 -0.7846014422278069 8.424448948040244 -0.7548690767279352 -7.984223954740257 -0.5242400425061006 -7.769614876977303 -0.5227676346305572 -7.762888778350972 -0.5554303527733849 -7.980254135178361 -0.8303874715674979 -7.973605106139527 -0.7986066015443341 -7.765646189602546 -0.828816257106993 -5.29145251916307 -0.778641511633843 -5.073656718285485 -0.7455933924010927 -5.071578248459449 -0.7802432158811737 -5.278609421455686 -0.8309054962920214 -5.278093112686092 -0.796237527368122 -5.060846573179293 -0.7977232671706889 -4.273902826376768 0.8328644975095786 -4.465131719415578 0.827556762403614 -4.274857451847524 0.8675263321494672 -4.460299321942095 0.02956324701069983 -4.393012474292192 0.09305259727493652 -4.372362884887002 0.06393367866869167 8.682649388063927 1.449574090444589 8.684406860003334 1.482888932367785 8.866932536835083 1.527988676546785 -4.527626259026713 -0.03501501430149527 -4.548262664483186 -0.005897255585183629 -4.460344026620005 0.02847484303748904 -8.627378400833218 0.7182839025649992 -8.49015222166312 0.7225939591655773 -8.483660553379961 0.689649968259905 -5.282719558101339 2.74713054383379 -5.282802884947855 2.779167232862019 -5.055444263708266 2.777430364861157 -5.028509912437525 4.545913170466169 -5.255866476205934 4.547809397946735 -5.017651682042155 4.572928955756335 -6.33043148512515 5.565650525958854 -6.32232165199879 5.590064896786578 -6.062804363370425 5.535011025945936 5.203030191317635 6.180601572742147 5.225015908561341 5.950208726369962 5.19790709698616 5.969193486342004 8.760705685204632 2.246849101893711 8.768828859097201 2.217012986800187 8.601195514666992 2.144479784189916 -8.613371641486925 0.3856663313216517 -8.613636085671026 0.418754193932143 -8.476164807288635 0.3903420099349643 -7.669649440992814 0.370797313781492 -7.458958280863248 0.3813855562383646 -7.460421441063718 0.3466109705210539 -7.659978798590958 0.2433949552906475 -7.65388766586991 0.2777507902337484 -7.44929904838637 0.2541227773029685 -5.04323660385484 0.8742446272987433 -5.260484603369598 0.8755917906909654 -5.040394795149055 0.9088632413996086 -5.272297497100485 0.9269699262082453 -5.272069434888858 0.9616394308490045 -5.052193456491585 0.9601830616480456 -4.459972957087579 0.02929694111498971 -4.423571741378723 0.1122405237850691 -4.392687303188897 0.0927870743005024 -4.549323536238968 -0.004046641435744432 -4.55657951190216 0.03030491805240184 -4.461402801616853 0.03032213800506731 -5.035000859264302 2.621410000960689 -5.254877164871539 2.622835471023548 -5.027592162108842 2.653090192463134 -7.09070919251049 4.148100935280669 -7.084600047297619 4.176024381311477 -6.842857180446632 4.1448697614421 -6.410326072650934 5.45643678272326 -6.142327106375758 5.427879402861199 -6.172098680432305 5.411550248318663 2.784134457998289 7.014706338812497 2.817163269323979 7.002869811273473 2.812331700326085 6.860476905546576 8.893197122900897 1.617459917330398 8.719991987867189 1.529940219776617 8.727208287935637 1.560542413154153 -8.359434015351081 1.097015203865124 -8.217104073433312 1.1083416630811 -8.220443975466068 1.073618355095572 -8.34486625889067 0.955869012209253 -8.339499603550593 0.9904055627753068 -8.202561493724595 0.9673895776210707 -7.260406241916179 1.308754244623648 -7.465349018230898 1.330399713359927 -7.24959586265464 1.342494702027965 -7.475927176314872 1.457638003769571 -7.469730426762375 1.491984513193227 -7.260167924464421 1.469665505903167 -4.460570457190625 0.02955451479688858 -4.460598919078507 0.1193234108502796 -4.424166386291351 0.1124973219903019 -4.556579272021503 0.0294829913682542 -4.549341784026376 0.06383742248671029 -4.461402561736435 0.029500212134882 -7.328918198328824 2.760749862715633 -7.322754872744688 2.792594711171613 -7.10003582112016 2.768247808791357 -6.878680160919599 3.803484329922073 -7.101077956048729 3.829585371192688 -6.853222855664148 3.826504284722295 -6.839182910418581 5.027825199280951 -6.811386171103502 5.046182661432376 -6.657708769743121 4.990440542487015 5.457087838578618 5.930387946640559 5.419865410911841 5.777347634718608 5.403916980590292 5.804004741730131 -8.037972299862767 1.593119991335581 -8.175320457195674 1.614570723034023 -8.023530479656374 1.6260376576569 -8.190515196564247 1.757231245667825 -8.178068675362454 1.790620921476749 -8.038714533708697 1.768610308976451 -7.101479624950173 2.418650985727016 -7.311103574176353 2.440609994461795 -7.082218775957254 2.448062065003728 -4.460363105683712 0.02952158193390643 -4.496811221884622 0.1124499136576728 -4.460392639932004 0.119290477772927 -4.549506022156817 0.06360286560401821 -4.528886799177706 0.09273060786823638 -4.461567125481633 0.02926513919347144 -7.836686215026396 3.662041520968044 -7.813795479195937 3.686673002089047 -7.661068219381618 3.655701684686811 -6.906954385481576 4.750220969010126 -7.054783145916974 4.793468289904231 -6.871906295255305 4.760584641937258 -7.911818009785852 2.278192344210657 -8.051238930753467 2.299939675135196 -7.887607329289605 2.305556344450116 -8.073196141579601 2.66566353395958 -8.054648766368899 2.695357052149128 -7.909567745808319 2.671337703570303 -4.528576493109429 0.09288510001082233 -4.497699531881085 0.1123498706279721 -4.461255680420941 0.02942037901142184 -7.728634309529307 3.247181413039645 -7.873372214707917 3.272449333841338 -7.697725894321536 3.266615265858516</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"672\" source=\"#ID130\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID126\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID124\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID125\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"448\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 2 7 12 8 13 8 3 7 5 6 2 9 1 10 14 11 15 11 4 10 3 9 7 12 16 13 8 14 9 14 17 13 10 12 18 15 6 16 8 17 9 17 11 16 19 15 12 18 2 19 20 20 21 20 3 19 13 18 22 21 0 22 12 23 13 23 5 22 23 21 2 24 14 25 24 26 25 26 15 25 3 24 1 27 26 28 14 29 15 29 27 28 4 27 16 30 28 31 8 32 9 32 29 31 17 30 30 33 18 34 8 35 9 35 19 34 31 33 12 36 20 37 32 38 33 38 21 37 13 36 20 39 2 40 24 41 25 41 3 40 21 39 12 42 34 43 22 44 23 44 35 43 13 42 24 45 14 46 36 47 37 47 15 46 25 45 14 48 26 49 38 50 39 50 27 49 15 48 8 51 28 52 40 53 41 53 29 52 9 51 22 54 34 55 42 56 43 56 35 55 23 54 26 57 44 58 38 59 39 59 45 58 27 57 46 60 30 61 8 62 9 62 31 61 47 60 32 63 20 64 48 65 49 65 21 64 33 63 34 66 12 67 32 68 33 68 13 67 35 66 20 69 24 70 50 71 51 71 25 70 21 69 24 72 36 73 52 74 53 74 37 73 25 72 14 75 38 76 36 77 37 77 39 76 15 75 8 78 40 79 54 80 55 80 41 79 9 78 42 81 56 82 57 83 58 83 59 82 43 81 34 84 56 85 42 86 43 86 59 85 35 84 38 87 44 88 60 89 61 89 45 88 39 87 44 90 62 91 60 92 61 92 63 91 45 90 64 93 46 94 8 95 9 95 47 94 65 93 66 96 32 97 48 98 49 98 33 97 67 96 48 99 20 100 50 101 51 101 21 100 49 99 32 102 68 103 34 104 35 104 69 103 33 102 50 105 24 106 52 107 53 107 25 106 51 105 52 108 36 109 70 110 71 110 37 109 53 108 36 111 38 112 72 113 73 113 39 112 37 111 8 114 54 115 74 116 75 116 55 115 9 114 76 117 54 118 57 119 58 119 55 118 77 117 56 120 76 121 57 122 58 122 77 121 59 120 34 123 68 124 56 125 59 125 69 124 35 123 38 126 60 127 72 128 73 128 61 127 39 126 78 129 60 130 62 131 63 131 61 130 79 129 80 132 78 133 62 134 63 134 79 133 81 132 82 135 8 136 83 137 84 137 9 136 85 135 66 138 48 139 86 140 87 140 49 139 67 138 68 141 32 142 66 143 67 143 33 142 69 141 48 144 50 145 88 146 89 146 51 145 49 144 50 147 52 148 90 149 91 149 53 148 51 147 52 150 70 151 92 152 93 152 71 151 53 150 36 153 72 154 70 155 71 155 73 154 37 153 8 156 74 157 94 158 95 158 75 157 9 156 74 159 54 160 96 161 97 161 55 160 75 159 76 162 96 163 54 164 55 164 97 163 77 162 56 165 98 166 76 167 77 167 99 166 59 165 68 168 98 169 56 170 59 170 99 169 69 168 100 171 72 172 60 173 61 173 73 172 101 171 100 174 60 175 78 176 79 176 61 175 101 174 102 177 78 178 80 179 81 179 79 178 103 177 102 180 80 181 83 182 84 182 81 181 103 180 83 183 8 184 104 185 105 185 9 184 84 183 106 186 66 187 86 188 87 188 67 187 107 186 48 189 88 190 86 191 87 191 89 190 49 189 108 192 68 193 66 194 67 194 69 193 109 192 50 195 90 196 88 197 89 197 91 196 51 195 52 198 92 199 90 200 91 200 93 199 53 198 92 201 70 202 110 203 111 203 71 202 93 201 112 204 70 205 72 206 73 206 71 205 113 204 8 207 94 208 114 209 115 209 95 208 9 207 94 210 74 211 116 212 117 212 75 211 95 210 74 213 96 214 116 215 117 215 97 214 75 213 76 216 118 217 96 218 97 218 119 217 77 216 98 219 118 220 76 221 77 221 119 220 99 219 68 222 108 223 98 224 99 224 109 223 69 222 112 225 72 226 100 227 101 227 73 226 113 225 120 228 100 229 78 230 79 230 101 229 121 228 120 231 78 232 102 233 103 233 79 232 121 231 122 234 102 235 83 236 84 236 103 235 123 234 122 237 83 238 104 239 105 239 84 238 123 237 104 240 8 241 124 242 125 242 9 241 105 240 106 243 86 244 126 245 127 245 87 244 107 243 108 246 66 247 106 248 107 248 67 247 109 246 86 249 88 250 128 251 129 251 89 250 87 249 88 252 90 253 130 254 131 254 91 253 89 252 90 255 92 256 132 257 133 257 93 256 91 255 92 258 110 259 134 260 135 260 111 259 93 258 70 261 112 262 110 263 111 263 113 262 71 261 124 264 8 265 114 266 115 266 9 265 125 264 114 267 94 268 136 269 137 269 95 268 115 267 94 270 116 271 136 272 137 272 117 271 95 270 116 273 96 274 138 275 139 275 97 274 117 273 118 276 138 277 96 278 97 278 139 277 119 276 98 279 140 280 118 281 119 281 141 280 99 279 108 282 140 283 98 284 99 284 141 283 109 282 112 285 100 286 142 287 143 287 101 286 113 285 142 288 100 289 120 290 121 290 101 289 143 288 144 291 120 292 102 293 103 293 121 292 145 291 144 294 102 295 122 296 123 296 103 295 145 294 146 297 122 298 104 299 105 299 123 298 147 297 104 300 124 301 146 302 147 302 125 301 105 300 148 303 106 304 126 305 127 305 107 304 149 303 86 306 128 307 126 308 127 308 129 307 87 306 150 309 108 310 106 311 107 311 109 310 151 309 88 312 130 313 128 314 129 314 131 313 89 312 90 315 132 316 130 317 131 317 133 316 91 315 132 318 92 319 134 320 135 320 93 319 133 318 134 321 110 322 152 323 153 323 111 322 135 321 110 324 112 325 154 326 155 326 113 325 111 324 124 327 114 328 156 329 157 329 115 328 125 327 114 330 136 331 156 332 157 332 137 331 115 330 136 333 116 334 158 335 159 335 117 334 137 333 116 336 138 337 158 338 159 338 139 337 117 336 118 339 160 340 138 341 139 341 161 340 119 339 140 342 160 343 118 344 119 344 161 343 141 342 108 345 150 346 140 347 141 347 151 346 109 345 112 348 142 349 154 350 155 350 143 349 113 348 142 351 120 352 162 353 163 353 121 352 143 351 162 354 120 355 144 356 145 356 121 355 163 354 164 357 144 358 122 359 123 359 145 358 165 357 122 360 146 361 164 362 165 362 147 361 123 360 146 363 124 364 156 365 157 365 125 364 147 363 126 366 166 367 148 368 149 368 167 367 127 366 150 369 106 370 148 371 149 371 107 370 151 369 128 372 168 373 126 374 127 374 169 373 129 372 128 375 130 376 170 377 171 377 131 376 129 375 130 378 132 379 172 380 173 380 133 379 131 378 132 381 134 382 174 383 175 383 135 382 133 381 134 384 152 385 176 386 177 386 153 385 135 384 110 387 154 388 152 389 153 389 155 388 111 387 156 390 136 391 178 392 179 392 137 391 157 390 136 393 158 394 178 395 179 395 159 394 137 393 158 396 138 397 180 398 181 398 139 397 159 396 160 399 180 400 138 401 139 401 181 400 161 399 140 402 182 403 160 404 161 404 183 403 141 402 140 405 150 406 182 407 183 407 151 406 141 405 154 408 142 409 184 410 185 410 143 409 155 408 142 411 162 412 184 413 185 413 163 412 143 411 162 414 144 415 186 416 187 416 145 415 163 414 144 417 164 418 186 419 187 419 165 418 145 417 164 420 146 421 188 422 189 422 147 421 165 420 146 423 156 424 188 425 189 425 157 424 147 423 166 426 190 427 148 428 149 428 191 427 167 426 168 429 166 430 126 431 127 431 167 430 169 429 192 432 150 433 148 434 149 434 151 433 193 432 128 435 170 436 168 437 169 437 171 436 129 435 130 438 172 439 170 440 171 440 173 439 131 438 132 441 174 442 172 443 173 443 175 442 133 441 174 444 134 445 176 446 177 446 135 445 175 444 176 447 152 448 194 449 195 449 153 448 177 447 152 450 154 451 196 452 197 452 155 451 153 450 156 453 178 454 188 455 189 455 179 454 157 453 178 456 158 457 198 458 199 458 159 457 179 456 198 459 158 460 180 461 181 461 159 460 199 459 160 462 200 463 180 464 181 464 201 463 161 462 160 465 182 466 200 467 201 467 183 466 161 465 182 468 150 469 192 470 193 470 151 469 183 468 154 471 184 472 196 473 197 473 185 472 155 471 162 474 202 475 184 476 185 476 203 475 163 474 162 477 186 478 202 479 203 479 187 478 163 477 186 480 164 481 204 482 205 482 165 481 187 480 164 483 188 484 204 485 205 485 189 484 165 483 206 486 207 487 208 488 209 488 210 487 211 486 148 489 190 490 192 491 193 491 191 490 149 489 212 492 206 493 208 494 209 494 211 493 213 492 214 495 206 496 212 497 213 497 211 496 215 495 216 498 206 499 217 500 218 500 211 499 219 498 220 501 206 502 216 503 219 503 211 502 221 501 220 504 176 505 206 506 211 506 177 505 221 504 176 507 194 508 206 509 211 509 195 508 177 507 152 510 196 511 194 512 195 512 197 511 153 510 188 513 178 514 222 515 223 515 179 514 189 513 222 516 178 517 198 518 199 518 179 517 223 516 198 519 180 520 224 521 225 521 181 520 199 519 180 522 200 523 224 524 225 524 201 523 181 522 200 525 182 526 226 527 227 527 183 526 201 525 182 528 192 529 226 530 227 530 193 529 183 528 184 531 228 532 196 533 197 533 229 532 185 531 184 534 202 535 228 536 229 536 203 535 185 534 186 537 230 538 202 539 203 539 231 538 187 537 186 540 204 541 230 542 231 542 205 541 187 540 204 543 188 544 222 545 223 545 189 544 205 543 206 546 232 547 207 548 210 548 233 547 211 546 190 549 234 550 192 551 193 551 235 550 191 549 194 552 236 553 206 554 211 554 237 553 195 552 196 555 236 556 194 557 195 557 237 556 197 555 222 558 198 559 238 560 239 560 199 559 223 558 238 561 198 562 224 563 225 563 199 562 239 561 224 564 200 565 240 566 241 566 201 565 225 564 200 567 226 568 240 569 241 569 227 568 201 567 226 570 192 571 234 572 235 572 193 571 227 570 196 573 228 574 236 575 237 575 229 574 197 573 202 576 242 577 228 578 229 578 243 577 203 576 202 579 230 580 242 581 243 581 231 580 203 579 230 582 204 583 244 584 245 584 205 583 231 582 204 585 222 586 244 587 245 587 223 586 205 585 206 588 246 589 232 590 233 590 247 589 211 588 236 591 248 592 206 593 211 593 249 592 237 591 244 594 222 595 238 596 239 596 223 595 245 594 238 597 224 598 250 599 251 599 225 598 239 597 224 600 240 601 250 602 251 602 241 601 225 600 240 603 226 604 252 605 253 605 227 604 241 603 226 606 234 607 252 608 253 608 235 607 227 606 228 609 248 610 236 611 237 611 249 610 229 609 228 612 242 613 248 614 249 614 243 613 229 612 242 615 230 616 254 617 255 617 231 616 243 615 230 618 244 619 254 620 255 620 245 619 231 618 206 621 256 622 246 623 247 623 257 622 211 621 248 624 258 625 206 626 211 626 259 625 249 624 244 627 238 628 260 629 261 629 239 628 245 627 260 630 238 631 250 632 251 632 239 631 261 630 250 633 240 634 262 635 263 635 241 634 251 633 240 636 252 637 262 638 263 638 253 637 241 636 248 639 242 640 258 641 259 641 243 640 249 639 242 642 254 643 258 644 259 644 255 643 243 642 254 645 244 646 260 647 261 647 245 646 255 645 206 648 264 649 256 650 257 650 265 649 211 648 258 651 266 652 206 653 211 653 267 652 259 651 260 654 250 655 264 656 265 656 251 655 261 654 264 657 250 658 262 659 263 659 251 658 265 657 258 660 254 661 266 662 267 662 255 661 259 660 254 663 260 664 266 665 267 665 261 664 255 663 266 666 264 667 206 668 211 668 265 667 267 666 266 669 260 670 264 671 265 671 261 670 267 669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID126\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID127\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID131\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID132\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID136\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7668684720993042 -0.5068138837814331 0.2471411228179932 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7693189978599548 -0.5025306940078735 0.2398613393306732 -0.7668684720993042 -0.5068138837814331 0.2471411228179932 -0.7698383927345276 -0.5068138837814331 0.2387912273406982 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7764356732368469 -0.5068138837814331 0.2506216466426849 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7803130149841309 -0.5068138837814331 0.2426347136497498 -0.7797934412956238 -0.5110971927642822 0.2437047362327576 -0.7764356732368469 -0.5068138837814331 0.2506216466426849 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7693189978599548 -0.5110971927642822 0.2398613393306732 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7797934412956238 -0.5025306940078735 0.2437047362327576 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7682626843452454 -0.499395102262497 0.243329256772995 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.5142327547073364 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.7783743739128113 -0.499395102262497 0.2466283142566681 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.4982474148273468 0.2471411228179932 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7682626843452454 -0.5142327547073364 0.243329256772995 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.765474259853363 -0.499395102262497 0.251316100358963 -0.7764356732368469 -0.4982474148273468 0.2506216466426849 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7764356732368469 -0.5153806209564209 0.2506216466426849 -0.7668684720993042 -0.5153806209564209 0.2471411228179932 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7744967341423035 -0.499395102262497 0.2546151876449585 -0.7644181847572327 -0.5025306940078735 0.2542395889759064 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.7744967341423035 -0.5142327547073364 0.2546151876449585 -0.765474259853363 -0.5142327547073364 0.251316100358963 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7638986110687256 -0.5068138837814331 0.2553094029426575 -0.7730776071548462 -0.5025306940078735 0.2575385272502899 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7730776071548462 -0.5110971927642822 0.2575385272502899 -0.7644181847572327 -0.5110971927642822 0.2542395889759064 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321 -0.7725582122802734 -0.5068138837814331 0.2586087286472321</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID136\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID133\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID137\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.3444744669286572 4.079759914057629e-006 -0.9387956868337078 -0.3444744635857354 4.23225667410034e-006 -0.9387956880596586 -0.2915421061266723 0.5326437071235343 -0.7945400440612941 0.2915421061266723 -0.5326437071235343 0.7945400440612941 0.3444744635857354 -4.23225667410034e-006 0.9387956880596586 0.3444744669286572 -4.079759914057629e-006 0.9387956868337078 0.942176612727427 -3.407978116043969e-007 -0.3351167414937004 0.9443365522823279 4.38158657145187e-008 -0.3289809660505061 0.9466284736151717 -0.006141568091176871 -0.322268233126369 -0.9466284736151717 0.006141568091176871 0.322268233126369 -0.9443365522823279 -4.38158657145187e-008 0.3289809660505061 -0.942176612727427 3.407978116043969e-007 0.3351167414937004 -0.2978240011526128 -0.502502490113407 -0.8116600962023906 0.2978240011526128 0.502502490113407 0.8116600962023906 -0.2879580904145521 0.5083478614726341 -0.8115803040371324 0.2879580904145521 -0.5083478614726341 0.8115803040371324 0.9453746644987464 0.01025145618060543 -0.3258245714645534 -0.9453746644987464 -0.01025145618060543 0.3258245714645534 0.946628563072084 0.00614092036701929 -0.3222679826993792 -0.946628563072084 -0.00614092036701929 0.3222679826993792 -0.8995939852382286 1.012405620589444e-011 0.4367272166046006 -0.8996043510403685 1.73211945004724e-006 0.4367058639247215 -0.8995978073140609 2.80740707445072e-010 0.4367193436015103 0.8995978073140609 -2.80740707445072e-010 -0.4367193436015103 0.8996043510403685 -1.73211945004724e-006 -0.4367058639247215 0.8995939852382286 -1.012405620589444e-011 -0.4367272166046006 -0.2841901110213427 -0.5268225958571753 -0.8010580086934929 0.2841901110213427 0.5268225958571753 0.8010580086934929 -0.8996043508901038 -1.73154997735763e-006 0.4367058642342657 0.8996043508901038 1.73154997735763e-006 -0.4367058642342657 -0.1575289664995284 0.8773623204698655 -0.4532328136105368 0.1575289664995284 -0.8773623204698655 0.4532328136105368 0.9439623282584713 0 -0.3300532121171466 -0.9439623282584713 -0 0.3300532121171466 0.9453746045541199 -0.0102512283230372 -0.32582475256188 -0.9453746045541199 0.0102512283230372 0.32582475256188 -0.8996005388610735 1.525096691196571e-005 0.436713716579036 0.8996005388610735 -1.525096691196571e-005 -0.436713716579036 -0.1652276555493636 -0.8656258515265084 -0.4726433190162198 0.1652276555493636 0.8656258515265084 0.4726433190162198 -0.8996005389579996 -1.525128351529844e-005 0.4367137163793637 0.8996005389579996 1.525128351529844e-005 -0.4367137163793637 -0.1610828583957122 0.8600686632090739 -0.4840807859198952 0.1610828583957122 -0.8600686632090739 0.4840807859198952 0.9460346225478317 0.004563988258263347 -0.3240334287569112 -0.9460346225478317 -0.004563988258263347 0.3240334287569112 5.715509850104025e-005 0.9999481864272838 -0.01017944959614463 -5.715509850104025e-005 -0.9999481864272838 0.01017944959614463 0.9439623343035419 0 -0.3300531948280579 -0.9439623343035419 -0 0.3300531948280579 -0.1493475103630262 -0.8821789182458041 -0.4466046096392519 0.1493475103630262 0.8821789182458041 0.4466046096392519 -0.8995833389788723 7.450330753906704e-018 0.436749145656432 0.8995833389788723 -7.450330753906704e-018 -0.436749145656432 -0.8995833389788784 7.451586262374615e-018 0.4367491456564195 0.8995833389788784 -7.451586262374615e-018 -0.4367491456564195 0.9415289990586808 0.01889261324753735 -0.3364018625041152 -0.9415289990586808 -0.01889261324753735 0.3364018625041152 -0.005477675187488539 0.9998653062196856 -0.01547140888073127 0.1704063428817634 0.8679535442270318 0.466495791373724 -0.1704063428817634 -0.8679535442270318 -0.466495791373724 0.005477675187488539 -0.9998653062196856 0.01547140888073127 0.946034644772299 -0.004563893317774229 -0.3240333652084827 -0.946034644772299 0.004563893317774229 0.3240333652084827 -0.004107270407317365 -0.9999227077040288 -0.01173494557484708 -0.003331995468411167 -0.9998028471998554 -0.01957458907005007 0.003331995468411167 0.9998028471998554 0.01957458907005007 0.004107270407317365 0.9999227077040288 0.01173494557484708 -0.8995854663270582 -1.122920923692321e-005 0.4367447637316722 0.8995854663270582 1.122920923692321e-005 -0.4367447637316722 -0.8995854663984171 1.122944233857225e-005 0.4367447635846849 0.8995854663984171 -1.122944233857225e-005 -0.4367447635846849 0.9398090404245463 3.199174541821317e-007 -0.341700113456509 -0.9398090404245463 -3.199174541821317e-007 0.341700113456509 0.3043241533703555 0.5032296839336767 0.8087933573437832 0.1678101137099761 0.8774056885098098 0.4494430147496695 -0.1678101137099761 -0.8774056885098098 -0.4494430147496695 -0.3043241533703555 -0.5032296839336767 -0.8087933573437832 0.9415290064490484 -0.01889209698707879 -0.3364018708130184 -0.9415290064490484 0.01889209698707879 0.3364018708130184 0.1730385331033649 -0.869260509229306 0.4630808062917779 0.1639094801891984 -0.8784978536901976 0.4487484856418159 -0.1639094801891984 0.8784978536901976 -0.4487484856418159 -0.1730385331033649 0.869260509229306 -0.4630808062917779 -0.8995945474336173 -2.706734065570341e-005 0.4367260577239058 0.8995945474336173 2.706734065570341e-005 -0.4367260577239058 -0.8995945473837314 2.70678889917239e-005 0.43672605782663 0.8995945473837314 -2.70678889917239e-005 -0.43672605782663 0.3048050421784275 0.5167260829904283 0.8000550239952098 0.3560251099978775 1.252025733392218e-005 0.9344763886231917 -0.3560251099978775 -1.252025733392218e-005 -0.9344763886231917 -0.3048050421784275 -0.5167260829904283 -0.8000550239952098 0.3081635667612611 -0.5007642538332132 0.8088698153620538 0.3019606338086662 -0.5141080316243367 0.8028154877985467 -0.3019606338086662 0.5141080316243367 -0.8028154877985467 -0.3081635667612611 0.5007642538332132 -0.8088698153620538 -0.8995957333211336 3.563160380080513e-010 0.4367236157919696 0.8995957333211336 -3.563160380080513e-010 -0.4367236157919696 0.3560250660667217 1.305518283296992e-005 0.934476405353152 -0.3560250660667217 -1.305518283296992e-005 -0.934476405353152</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID137\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID135\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID138\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"284\">8.835954899761456 2.887915538562082 8.770413372543002 2.816882901193681 8.733752412056139 2.836659965768741 -5.314774554701073 -0.2142585737425105 -5.313812817044318 -0.1445455542540637 -5.271796926739802 -0.2053242417841283 -0.9289416574248566 7.402765972782708 -0.8922781296017029 7.422541681094712 -0.863401992858196 7.3317322718534 8.799273287538805 2.907729616097122 8.835935518109764 2.887954017289928 8.73373342233003 2.836697960878422 -4.859119072430346 -0.09558662079202554 -4.902466791769723 -0.0353895062623624 -4.827996966860698 -0.06691013284173455 -4.816194187557621 -0.3007492821543235 -4.859173003559876 -0.2918149501666864 -4.817155898476206 -0.2310362624376061 5.067921635991438 -0.8939049498631768 5.110753786502324 -0.9543909004864848 5.067920551345233 -0.963747871921122 -0.8635100636443788 7.331723311569516 -0.8923874305780094 7.422532478723641 -0.826847922579062 7.351500619539451 5.068356041716164 -0.8938075335386285 5.068357126392557 -0.963650455596574 5.025525083324317 -0.9542934841619367 8.808957078028893 0.2235436860803819 8.789868649741981 0.2581306419745067 8.909327708334688 0.2618754518582341 -4.99395102262497 -0.2782860152253181 -5.068138837814331 -0.2463565045282997 -4.982474148273468 -0.2463565045282997 -5.274826460679561 -0.0428739002739665 -5.305948269550634 -0.01419741471706724 -5.231477552158321 0.01732320923153562 5.142585770829897 -0.9285234784541353 5.111230622193833 -0.9540887604745603 5.06839641844553 -0.8936037096588904 -5.677523129966245 5.173624890263669 -5.77687127388714 5.213571083110868 -5.753477191572667 5.243957175029614 5.067881250533171 -0.8937192322685431 5.025048238873127 -0.9542042830957674 4.993692792215798 -0.9286390010704587 8.917975008069023 0.1012065005595706 8.798526468680523 0.09725949789170468 8.89532322039822 0.1319388614386109 -5.068138837814331 -0.06678624390902521 -4.99395102262497 -0.03216016065111377 -4.982474148273468 -0.06678624390902521 8.190529426662092 0.9996672152945153 8.08979968190903 0.9727990861225769 8.074907594095551 1.00384362226358 -5.142327547073364 -0.2782860152253181 -5.153806209564209 -0.2463565045282997 -6.087457908013803 4.90321883025728 -6.105786276791672 4.868378548045608 -6.185120077832808 4.936362668216338 5.153806209564209 -0.8939784871425019 5.142327547073364 -0.9288991014895013 5.068138837814331 -0.8939784871425019 4.99395102262497 -0.9288991014895013 4.982474148273468 -0.8939784871425019 -4.994457814787069 -0.1757846438723037 -4.951862563447768 -0.1166043582780247 -4.920406936232481 -0.1409776365938563 7.291121875868974 2.969945835853808 7.19582799620366 2.941761479730215 7.18092159339962 2.975569337325649 8.195220010186123 1.088186045874139 8.079596744289182 1.092337823660826 8.174893249620968 1.120516685308637 -5.153806209564209 -0.06678624390902369 -5.142327547073364 -0.03216016065111223 -5.068138837814331 -0.06678624390902369 -7.137106535112019 3.060024521581374 -7.152088610920599 3.029006382100205 -7.232334484981479 3.088346443754763 -7.242612385084303 2.943389676118223 -7.343399522378902 2.970124280639696 -7.323149468945029 3.002485087503869 5.142327547073364 -0.859232200450826 5.153806209564209 -0.8941551102661389 5.068138837814331 -0.8941551102661389 4.99395102262497 -0.859232200450826 5.068138837814331 -0.8941551102661394 4.982474148273468 -0.8941551102661394 -4.832054457100766 -0.2738214624777934 -4.832959625552252 -0.2054526243414892 -4.78998926836575 -0.2144070109213413 5.598317121471339 5.263711799162454 5.578074224668392 5.294579086722642 5.683571160579093 5.298544798118836 7.290745375798657 2.966191282101151 7.180544980643493 2.971813416852751 7.270412587505954 2.99852205537594 -5.215406421209959 -0.1156881818831501 -5.183951092391164 -0.09131490251471087 -5.141354648074129 -0.1504951906648063 -8.083079912414807 1.092796300949026 -8.097990711575598 1.058989267437694 -8.172944713511527 1.119510781048612 -8.094798269883858 1.060530406342207 -8.190094705824908 1.088709413212966 -8.169765332536054 1.1210419082654 5.110783088494092 -0.8334782524305988 5.142138361268883 -0.8590419577254941 5.067949178412453 -0.8939642449202555 5.025495776989243 -0.8333931899840764 5.0683284949814 -0.8938791824822415 4.994140206192672 -0.8589568952825682 -5.299507771761791 -0.1908129161324697 -5.341574173907995 -0.131398464396818 -5.298602628478756 -0.1224440777899588 0.7746483127185083 7.390196991462098 0.7215207055259842 7.330470823398197 0.6845096625040692 7.349839445500478 5.693758894249335 5.227986497685446 5.588257337641396 5.224097600900424 5.670120622312615 5.258254352524729 -8.921870194509085 0.3337149091498159 -8.942408415393054 0.3029687755400236 -9.003367095494639 0.3684096216131407 -8.887500700048713 0.2305031088110326 -8.973102047573454 0.2648049438611277 -8.949729391207098 0.2951999908073414 5.067864535606823 -0.8241038597953553 5.110697440995674 -0.8334624164704209 5.06786315890317 -0.893948245928211 5.068413141266897 -0.8239802152392052 5.068414518008867 -0.89382460137206 5.025581427976076 -0.8333387719142708 -8.7257462002488 2.924610743178769 -8.741858115725387 3.003708982049239 -8.688733039413137 2.943978492221996 0.7383976461187897 7.40944198674381 0.7754057636934864 7.390068878114348 0.6852633045720957 7.349716597241113 -8.779349897822261 2.983342955922296 -8.742341417663866 3.002717266921394 -8.726214869462636 2.923620873445715</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"142\" source=\"#ID138\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID134\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID132\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID133\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 0 6 12 7 1 8 4 8 13 7 5 6 14 9 0 10 2 11 3 11 5 10 15 9 8 12 7 13 16 14 17 14 10 13 9 12 6 15 18 16 7 17 10 17 19 16 11 15 20 18 21 19 22 20 23 20 24 19 25 18 1 21 12 22 26 23 27 23 13 22 4 21 20 24 22 25 28 26 29 26 23 25 25 24 2 27 30 28 14 29 15 29 31 28 3 27 16 30 7 31 32 32 33 32 10 31 17 30 18 33 34 34 7 35 10 35 35 34 19 33 36 36 21 37 20 38 25 38 24 37 37 36 26 39 12 40 38 41 39 41 13 40 27 39 20 42 28 43 40 44 41 44 29 43 25 42 14 45 30 46 42 47 43 47 31 46 15 45 7 48 44 49 32 50 33 50 45 49 10 48 42 51 30 52 46 53 47 53 31 52 43 51 34 54 48 55 7 31 10 31 49 55 35 54 50 56 26 57 38 58 39 58 27 57 51 56 52 59 36 60 20 61 25 61 37 60 53 59 20 61 40 62 54 63 55 63 41 62 25 61 7 64 56 65 44 66 45 66 57 65 10 64 58 67 46 68 59 69 60 69 47 68 61 67 42 70 46 71 58 72 61 72 47 71 43 70 48 73 62 74 7 75 10 75 63 74 49 73 64 76 50 77 65 78 66 78 51 77 67 76 50 79 38 80 65 81 66 81 39 80 51 79 68 82 52 83 20 84 25 84 53 83 69 82 70 85 20 86 54 87 55 87 25 86 71 85 7 88 72 89 56 90 57 90 73 89 10 88 59 91 74 92 75 93 76 93 77 92 60 91 58 94 59 95 75 96 76 96 60 95 61 94 62 97 78 98 7 99 10 99 79 98 63 97 80 100 64 101 81 102 82 102 67 101 83 100 64 103 65 104 81 105 82 105 66 104 67 103 84 106 68 107 20 108 25 108 69 107 85 106 86 109 20 110 70 111 71 111 25 110 87 109 7 112 78 113 72 114 73 114 79 113 10 112 88 115 74 116 89 117 90 117 77 116 91 115 75 118 74 119 88 120 91 120 77 119 76 118 92 121 80 122 93 123 94 123 83 122 95 121 80 124 81 125 93 126 94 126 82 125 83 124 96 127 84 128 20 129 25 129 85 128 97 127 96 130 20 131 86 132 87 132 25 131 97 130 92 133 98 134 89 135 90 135 99 134 95 133 98 136 88 137 89 138 90 138 91 137 99 136 93 139 98 140 92 141 95 141 99 140 94 139</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID134\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID135\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID141\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID142\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID147\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1134\">0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7976231575012207 0.6196871995925903 -0.1194272115826607 0.7976231575012207 0.6196871995925903 -0.1194272115826607 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7976231575012207 0.6200764179229736 0.01818196848034859 0.7976231575012207 0.6200764179229736 0.01818196848034859 0.7976231575012207 0.7611286044120789 -0.118915356695652 0.7976231575012207 0.7611286044120789 -0.118915356695652 0.7976231575012207 0.7639247179031372 0.02084463648498058 0.7976231575012207 0.7639247179031372 0.02084463648498058 0.798487663269043 0.4255831241607666 0.01916016265749931 0.798487663269043 0.4255831241607666 0.01916016265749931 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7976231575012207 0.7669853568077087 0.1513165235519409 0.7976231575012207 0.7669853568077087 0.1513165235519409 0.7976231575012207 0.6231358647346497 0.1513165235519409 0.7976231575012207 0.6231358647346497 0.1513165235519409 0.7976231575012207 0.872636616230011 -0.118915356695652 0.7976231575012207 0.872636616230011 -0.118915356695652 0.7976231575012207 0.8771676421165466 0.02084463648498058 0.7976231575012207 0.8771676421165466 0.02084463648498058 0.7976231575012207 0.8771676421165466 0.1513165235519409 0.7976231575012207 0.8771676421165466 0.1513165235519409 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7687971591949463 0.7642374038696289 0.234848827123642 0.7687971591949463 0.7642374038696289 0.234848827123642 0.7687971591949463 0.8763352632522583 0.234848827123642 0.7687971591949463 0.8763352632522583 0.234848827123642 0.7698178291320801 0.6222134828567505 0.2340750992298126 0.7698178291320801 0.6222134828567505 0.2340750992298126 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7687971591949463 1.068503022193909 0.234848827123642 0.7687971591949463 1.068503022193909 0.234848827123642 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 1.067611813545227 0.1501588523387909 0.7976231575012207 1.067611813545227 0.1501588523387909 0.7461556792259216 0.7716558575630188 0.29511559009552 0.7461556792259216 0.7716558575630188 0.29511559009552 0.7460806965827942 0.8783665895462036 0.29511559009552 0.7460806965827942 0.8783665895462036 0.29511559009552 0.7444993853569031 1.070043087005615 0.292364776134491 0.7444993853569031 1.070043087005615 0.292364776134491 0.7471287846565247 0.6197603940963745 0.2984656691551209 0.7471287846565247 0.6197603940963745 0.2984656691551209 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7687971591949463 1.22945249080658 0.2351814955472946 0.7687971591949463 1.22945249080658 0.2351814955472946 0.7424870729446411 1.229051828384399 0.2896876931190491 0.7424870729446411 1.229051828384399 0.2896876931190491 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7976231575012207 1.226557493209839 0.1501588523387909 0.7976231575012207 1.226557493209839 0.1501588523387909 0.6736209392547607 0.8758261203765869 0.358364999294281 0.6736209392547607 0.8758261203765869 0.358364999294281 0.6739693880081177 0.7716558575630188 0.3602698147296906 0.6739693880081177 0.7716558575630188 0.3602698147296906 0.6727290749549866 1.070043087005615 0.342584639787674 0.6727290749549866 1.070043087005615 0.342584639787674 0.6714252829551697 1.229051828384399 0.3374882340431213 0.6714252829551697 1.229051828384399 0.3374882340431213 0.674491286277771 0.6242926120758057 0.356035441160202 0.674491286277771 0.6242926120758057 0.356035441160202 0.7687971591949463 1.336279630661011 0.2374546378850937 0.7687971591949463 1.336279630661011 0.2374546378850937 0.7405544519424439 1.33383572101593 0.2877088189125061 0.7405544519424439 1.33383572101593 0.2877088189125061 0.6702165007591248 1.338770151138306 0.3299798667430878 0.6702165007591248 1.338770151138306 0.3299798667430878 0.688839852809906 0.4193950891494751 0.3588072657585144 0.688839852809906 0.4193950891494751 0.3588072657585144 0.6524490714073181 0.770412027835846 0.3768142461776733 0.6524490714073181 0.770412027835846 0.3768142461776733 0.6521070003509522 0.8788958787918091 0.36956787109375 0.6521070003509522 0.8788958787918091 0.36956787109375 0.6511565446853638 0.6258586049079895 0.3818635642528534 0.6511565446853638 0.6258586049079895 0.3818635642528534 0.6503376960754395 1.071277260780335 0.3560464382171631 0.6503376960754395 1.071277260780335 0.3560464382171631 0.7946488857269287 1.336279630661011 0.1839811652898789 0.7946488857269287 1.336279630661011 0.1839811652898789 0.6476884484291077 1.231573462486267 0.3451077938079834 0.6476884484291077 1.231573462486267 0.3451077938079834 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.7687971591949463 1.430078029632568 0.2376271635293961 0.7687971591949463 1.430078029632568 0.2376271635293961 0.7387611269950867 1.431114196777344 0.2848821878433228 0.7387611269950867 1.431114196777344 0.2848821878433228 0.668738603591919 1.432783603668213 0.3242798447608948 0.668738603591919 1.432783603668213 0.3242798447608948 0.6441174149513245 1.337924003601074 0.3337158262729645 0.6441174149513245 1.337924003601074 0.3337158262729645 0.6322492361068726 0.7708060741424561 0.3701403439044952 0.6322492361068726 0.7708060741424561 0.3701403439044952 0.6230122447013855 0.8783389925956726 0.3555973768234253 0.6230122447013855 0.8783389925956726 0.3555973768234253 0.6149778366088867 1.073966383934021 0.34251469373703 0.6149778366088867 1.073966383934021 0.34251469373703 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6076487898826599 1.231997966766357 0.325863778591156 0.6076487898826599 1.231997966766357 0.325863778591156 0.7952814698219299 1.430078029632568 0.1879792362451553 0.7952814698219299 1.430078029632568 0.1879792362451553 0.6022510528564453 1.338981509208679 0.3172231614589691 0.6022510528564453 1.338981509208679 0.3172231614589691 0.7687971591949463 1.527541875839233 0.2388848811388016 0.7687971591949463 1.527541875839233 0.2388848811388016 0.7354865670204163 1.524521231651306 0.2817167937755585 0.7354865670204163 1.524521231651306 0.2817167937755585 0.6677529215812683 1.524521231651306 0.3170008361339569 0.6677529215812683 1.524521231651306 0.3170008361339569 0.6405463814735413 1.43192446231842 0.3254314661026001 0.6405463814735413 1.43192446231842 0.3254314661026001 0.5962012410163879 1.422707080841065 0.303942084312439 0.5962012410163879 1.422707080841065 0.303942084312439 0.6069484949111939 0.8772760033607483 0.3508152365684509 0.6069484949111939 0.8772760033607483 0.3508152365684509 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.5943053960800171 1.076266169548035 0.3287610411643982 0.5943053960800171 1.076266169548035 0.3287610411643982 0.5860564708709717 1.234852313995361 0.3147788345813751 0.5860564708709717 1.234852313995361 0.3147788345813751 0.7969198822975159 1.529133081436157 0.1681521981954575 0.7969198822975159 1.529133081436157 0.1681521981954575 0.5783446431159973 1.340795755386353 0.2962920665740967 0.5783446431159973 1.340795755386353 0.2962920665740967 0.7629945874214172 1.629548072814941 0.2351733148097992 0.7629945874214172 1.629548072814941 0.2351733148097992 0.7300229668617249 1.627527952194214 0.2751796841621399 0.7300229668617249 1.627527952194214 0.2751796841621399 0.6662258505821228 1.630582451820374 0.3066250681877136 0.6662258505821228 1.630582451820374 0.3066250681877136 0.6369754076004028 1.523992538452148 0.3161111772060394 0.6369754076004028 1.523992538452148 0.3161111772060394 0.5925832986831665 1.534539937973023 0.2910608053207398 0.5925832986831665 1.534539937973023 0.2910608053207398 0.5729466080665588 1.432812809944153 0.2799475789070129 0.5729466080665588 1.432812809944153 0.2799475789070129 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5641165971755981 1.231308460235596 0.2951163649559021 0.5641165971755981 1.231308460235596 0.2951163649559021 0.7976231575012207 1.629548072814941 0.1532912850379944 0.7976231575012207 1.629548072814941 0.1532912850379944 0.5558203458786011 1.338033199310303 0.2760796546936035 0.5558203458786011 1.338033199310303 0.2760796546936035 0.7910681962966919 1.631798982620239 0.123851403594017 0.7910681962966919 1.631798982620239 0.123851403594017 0.7581207752227783 1.731385946273804 0.2290779650211334 0.7581207752227783 1.731385946273804 0.2290779650211334 0.7230180501937866 1.735270857810974 0.2675617933273315 0.7230180501937866 1.735270857810974 0.2675617933273315 0.6637653708457947 1.735270857810974 0.2955930531024933 0.6637653708457947 1.735270857810974 0.2955930531024933 0.6328089237213135 1.630808830261231 0.3067907989025116 0.6328089237213135 1.630808830261231 0.3067907989025116 0.5831363201141357 1.635170221328735 0.2697256505489349 0.5831363201141357 1.635170221328735 0.2697256505489349 0.5668072104454041 1.539629101753235 0.2627097368240356 0.5668072104454041 1.539629101753235 0.2627097368240356 0.5483854413032532 1.437644124031067 0.2575764954090118 0.5483854413032532 1.437644124031067 0.2575764954090118 0.7976231575012207 1.731245756149292 0.1508422940969467 0.7976231575012207 1.731245756149292 0.1508422940969467 0.7774713039398193 1.770382642745972 0.08878238499164581 0.7774713039398193 1.770382642745972 0.08878238499164581 0.7529417276382446 1.832421541213989 0.2219224870204926 0.7529417276382446 1.832421541213989 0.2219224870204926 0.7168887853622437 1.830480456352234 0.2584208846092224 0.7168887853622437 1.830480456352234 0.2584208846092224 0.6609818935394287 1.828536510467529 0.2839697897434235 0.6609818935394287 1.828536510467529 0.2839697897434235 0.6256666779518127 1.734643340110779 0.2933281362056732 0.6256666779518127 1.734643340110779 0.2933281362056732 0.5772106051445007 1.733703374862671 0.2523872554302216 0.5772106051445007 1.733703374862671 0.2523872554302216 0.5580869913101196 1.635875701904297 0.243652269244194 0.5580869913101196 1.635875701904297 0.243652269244194 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5391620993614197 1.536199450492859 0.2382145375013351 0.7868422269821167 1.832582235336304 0.1508422940969467 0.7868422269821167 1.832582235336304 0.1508422940969467 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7774713039398193 1.831223368644714 0.08806630969047546 0.7774713039398193 1.831223368644714 0.08806630969047546 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7089943289756775 1.906256556510925 0.2465686351060867 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6161291599273682 1.828536510467529 0.2750792801380158 0.6161291599273682 1.828536510467529 0.2750792801380158 0.569970428943634 1.82999062538147 0.2332505583763123 0.569970428943634 1.82999062538147 0.2332505583763123 0.5455059409141541 1.737459182739258 0.2144985496997833 0.5455059409141541 1.737459182739258 0.2144985496997833 0.5255792737007141 1.631603479385376 0.2142343670129776 0.5255792737007141 1.631603479385376 0.2142343670129776 0.7709382176399231 1.897327780723572 0.1462340503931046 0.7709382176399231 1.897327780723572 0.1462340503931046 0.758520245552063 1.848836660385132 0.05843546241521835 0.758520245552063 1.848836660385132 0.05843546241521835 0.7762541174888611 1.794281721115112 0.06106704473495483 0.7762541174888611 1.794281721115112 0.06106704473495483 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7930033206939697 1.725906729698181 0.03279396891593933 0.7930033206939697 1.725906729698181 0.03279396891593933 0.6045059561729431 1.912085294723511 0.2496029883623123 0.6045059561729431 1.912085294723511 0.2496029883623123 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5392844080924988 1.786986827850342 0.1989490985870361 0.5392844080924988 1.786986827850342 0.1989490985870361 0.5107629299163818 1.737711548805237 0.1886539459228516 0.5107629299163818 1.737711548805237 0.1886539459228516 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7667569518089294 1.816561579704285 0.03192228823900223 0.7667569518089294 1.816561579704285 0.03192228823900223 0.5368551015853882 1.831621766090393 0.1790818572044373 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5368551015853882 1.831621766090393 0.1790818572044373 0.7158539295196533 1.866551876068115 0.03108330257236958 0.7158539295196533 1.866551876068115 0.03108330257236958 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6598671674728394 1.913674473762512 0.02759447880089283 0.7762541174888611 1.840326070785523 -0.01964796893298626 0.7762541174888611 1.840326070785523 -0.01964796893298626 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4955552816390991 1.831614017486572 0.16129469871521 0.4955552816390991 1.831614017486572 0.16129469871521 0.7189935445785523 1.884884715080261 -0.0176821406930685 0.7189935445785523 1.884884715080261 -0.0176821406930685 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.6611202955245972 1.907618165016174 -0.01770789735019207 0.6611202955245972 1.907618165016174 -0.01770789735019207 0.7738800644874573 1.862605094909668 -0.08081070333719254 0.7738800644874573 1.862605094909668 -0.08081070333719254 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5996825695037842 1.907618165016174 0.02810462191700935 0.5996825695037842 1.907618165016174 0.02810462191700935 0.725027859210968 1.896474838256836 -0.07735307514667511 0.725027859210968 1.896474838256836 -0.07735307514667511 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.4961572587490082 1.913546085357666 0.03562422469258308 0.4961572587490082 1.913546085357666 0.03562422469258308 0.5986562371253967 1.918723344802856 -0.0167639497667551 0.5986562371253967 1.918723344802856 -0.0167639497667551 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6611202955245972 1.918723344802856 -0.0708390548825264 0.6611202955245972 1.918723344802856 -0.0708390548825264 0.7738800644874573 1.868109583854675 -0.1344994306564331 0.7738800644874573 1.868109583854675 -0.1344994306564331 0.518811047077179 1.913546085357666 0.007866731844842434 0.518811047077179 1.913546085357666 0.007866731844842434 0.7228279709815979 1.896474838256836 -0.1368977874517441 0.7228279709815979 1.896474838256836 -0.1368977874517441 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5986562371253967 1.918723344802856 -0.06880220025777817 0.5986562371253967 1.918723344802856 -0.06880220025777817 0.6611202955245972 1.923628926277161 -0.1305911093950272 0.6611202955245972 1.923628926277161 -0.1305911093950272 0.7654834985733032 1.864772439002991 -0.1993826925754547 0.7654834985733032 1.864772439002991 -0.1993826925754547 0.7074308395385742 1.889798879623413 -0.1963488012552261 0.7074308395385742 1.889798879623413 -0.1963488012552261 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5967269539833069 1.918723344802856 -0.1292334944009781 0.5967269539833069 1.918723344802856 -0.1292334944009781 0.6610304117202759 1.908910393714905 -0.1960339546203613 0.6610304117202759 1.908910393714905 -0.1960339546203613 0.7544460296630859 1.854760766029358 -0.2666657269001007 0.7544460296630859 1.854760766029358 -0.2666657269001007 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.6866759657859802 1.878122568130493 -0.2706334590911865 0.6866759657859802 1.878122568130493 -0.2706334590911865 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.5986562371253967 1.913129925727844 -0.1947008222341538 0.5986562371253967 1.913129925727844 -0.1947008222341538 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.6520506143569946 1.899369478225708 -0.2707102298736572 0.6520506143569946 1.899369478225708 -0.2707102298736572 0.7397289276123047 1.849756956100464 -0.2961414754390717 0.7397289276123047 1.849756956100464 -0.2961414754390717 0.674824595451355 1.873115420341492 -0.2989807724952698 0.674824595451355 1.873115420341492 -0.2989807724952698 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.5926526784896851 1.902366518974304 -0.2694905698299408 0.5926526784896851 1.902366518974304 -0.2694905698299408 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.642670750617981 1.887944936752319 -0.2983261346817017 0.642670750617981 1.887944936752319 -0.2983261346817017 0.7001771926879883 1.811398148536682 -0.3453316688537598 0.7001771926879883 1.811398148536682 -0.3453316688537598 0.5936500430107117 1.890616059303284 -0.2966291010379791 0.5936500430107117 1.890616059303284 -0.2966291010379791 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.6569415926933289 1.831865787506104 -0.3451592326164246 0.6569415926933289 1.831865787506104 -0.3451592326164246 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.6276070475578308 1.831865787506104 -0.3451592326164246 0.6276070475578308 1.831865787506104 -0.3451592326164246 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.424839973449707 1.892464518547058 -0.2987582087516785 0.424839973449707 1.892464518547058 -0.2987582087516785 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.5814452171325684 1.831865787506104 -0.3430174887180328 0.5814452171325684 1.831865787506104 -0.3430174887180328 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"378\" source=\"#ID147\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID143\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID148\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1134\">0.9900552956686062 -0.002352708047164541 -0.1406590782118 0.997169978879332 0.0005626500067133648 -0.07517789998904474 0.9976197425330905 -0.001196871580965296 -0.0689450274249644 -0.9976197425330905 0.001196871580965296 0.0689450274249644 -0.997169978879332 -0.0005626500067133648 0.07517789998904474 -0.9900552956686062 0.002352708047164541 0.1406590782118 0.9907502151915427 -0.003272368041776708 -0.1356587730495558 -0.9907502151915427 0.003272368041776708 0.1356587730495558 0.9999987715484215 0.001298132680655167 -0.0008784948441743609 -0.9999987715484215 -0.001298132680655167 0.0008784948441743609 0.9977882280381223 -0.0004295143788617648 -0.06647155411107901 -0.9977882280381223 0.0004295143788617648 0.06647155411107901 1 0 0 -1 -0 -0 0.9996866781643978 -0.01287970789148096 0.02146295937799879 -0.9996866781643978 0.01287970789148096 -0.02146295937799879 0.9916288815365839 -0.004292839331706357 -0.1290493426289959 -0.9916288815365839 0.004292839331706357 0.1290493426289959 0.9862294564733497 -1.023521613759804e-018 0.1653827656809535 -0.9862294564733497 1.023521613759804e-018 -0.1653827656809535 0.9855234036645701 -0.0150094328749683 0.1688737331682242 -0.9855234036645701 0.0150094328749683 -0.1688737331682242 0.9984170139917291 -0.005688295605190683 -0.05595631747128758 -0.9984170139917291 0.005688295605190683 0.05595631747128758 1 0 0 -1 -0 -0 0.9862261923033275 0.0001385673981601088 0.1654021717328899 -0.9862261923033275 -0.0001385673981601088 -0.1654021717328899 0.9857490260995654 -0.03215838325426263 0.1651202468815681 -0.9857490260995654 0.03215838325426263 -0.1651202468815681 0.993558929430381 -0.01612267807413861 -0.1121637775793633 -0.993558929430381 0.01612267807413861 0.1121637775793633 0.9410463363002816 0.001842553401757326 0.3382726680250405 -0.9410463363002816 -0.001842553401757326 -0.3382726680250405 0.9399697361499318 0.002496753562366073 0.341248679622173 -0.9399697361499318 -0.002496753562366073 -0.341248679622173 0.9472756568605438 -0.00553628734223512 0.320371939223599 -0.9472756568605438 0.00553628734223512 -0.320371939223599 1 0 0 -1 -0 -0 0.9986371166879656 -0.003641535286201516 -0.05206388761805772 -0.9986371166879656 0.003641535286201516 0.05206388761805772 1 0 0 -1 -0 -0 0.9334242866530585 0.003566205222945827 0.358756718775463 -0.9334242866530585 -0.003566205222945827 -0.358756718775463 0.9613972024972641 -0.002189232112902448 0.2751556401260756 -0.9613972024972641 0.002189232112902448 -0.2751556401260756 0.9999088897289408 2.49493391549871e-019 -0.01349860144745444 -0.9999088897289408 -2.49493391549871e-019 0.01349860144745444 0.9866434192671509 0.0003843271064437876 0.1628944919556831 -0.9866434192671509 -0.0003843271064437876 -0.1628944919556831 0.8268208571787928 0.009421202414397688 0.5623864428301889 -0.8268208571787928 -0.009421202414397688 -0.5623864428301889 0.8167992916288501 0.01709412357318276 0.5766686293998258 -0.8167992916288501 -0.01709412357318276 -0.5766686293998258 0.7779744640104565 0.01700624928527182 0.6280656978635992 -0.7779744640104565 -0.01700624928527182 -0.6280656978635992 0.8163231400853481 -8.704477407084645e-005 0.5775954669008445 -0.8163231400853481 8.704477407084645e-005 -0.5775954669008445 1 0 0 -1 -0 -0 0.9237450876980882 0.001311220861844423 0.383005605250763 -0.9237450876980882 -0.001311220861844423 -0.383005605250763 0.7541917009803472 0.02513245543842398 0.6561731767270028 -0.7541917009803472 -0.02513245543842398 -0.6561731767270028 0.8419595543963964 0.02106488778245558 0.5391292788036411 -0.8419595543963964 -0.02106488778245558 -0.5391292788036411 0.9579580307156499 -0.0150347799141805 0.2865141650605185 -0.9579580307156499 0.0150347799141805 -0.2865141650605185 0.5722866440581146 0.04950480248095534 0.8185580441019579 -0.5722866440581146 -0.04950480248095534 -0.8185580441019579 0.6404287661317567 0.01381415417394053 0.7678933289561866 -0.6404287661317567 -0.01381415417394053 -0.7678933289561866 0.5511062456143986 0.03972205931053413 0.8334890905398419 -0.5511062456143986 -0.03972205931053413 -0.8334890905398419 0.4447699353356177 0.05578200889076308 0.8939060756621251 -0.4447699353356177 -0.05578200889076308 -0.8939060756621251 0.6923543389926927 0.01264347006466835 0.7214468878183032 -0.6923543389926927 -0.01264347006466835 -0.7214468878183032 0.890213441644624 -0.01369295778836025 0.4553378209881536 -0.890213441644624 0.01369295778836025 -0.4553378209881536 0.7186762426794346 0.02684668868725016 0.6948263909169687 -0.7186762426794346 -0.02684668868725016 -0.6948263909169687 0.3458403087416392 0.06829456209539139 0.9358046450182251 -0.3458403087416392 -0.06829456209539139 -0.9358046450182251 0.75368530727801 0.06163089589583062 0.6543394304673444 -0.75368530727801 -0.06163089589583062 -0.6543394304673444 0.157066604294048 0.04904476334098479 0.9863694505632075 -0.157066604294048 -0.04904476334098479 -0.9863694505632075 0.02443806644282753 0.06659572866917021 0.9974807215337839 -0.02443806644282753 -0.06659572866917021 -0.9974807215337839 0.2630441307697239 0.04030051035594109 0.9639417275606712 -0.2630441307697239 -0.04030051035594109 -0.9639417275606712 0.08335440127704034 0.06610197704781352 0.9943251844432567 -0.08335440127704034 -0.06610197704781352 -0.9943251844432567 0.8957315970327513 -0.06402836860577338 0.4399605369698968 -0.8957315970327513 0.06402836860577338 -0.4399605369698968 -0.06492613846004917 0.06947997884781025 0.9954682963731061 0.06492613846004917 -0.06947997884781025 -0.9954682963731061 0.7783133842626236 0.06431532705604588 0.6245733060124612 -0.7783133842626236 -0.06431532705604588 -0.6245733060124612 0.8617517623012343 0.001114692778924215 0.5073289442075288 -0.8617517623012343 -0.001114692778924215 -0.5073289442075288 0.6891552101990586 0.03963287346438789 0.7235290813757573 -0.6891552101990586 -0.03963287346438789 -0.7235290813757573 0.278777090103203 0.07301736481532682 0.9575760014061632 -0.278777090103203 -0.07301736481532682 -0.9575760014061632 -0.1276463389581969 0.09421586330362655 0.9873346865437888 0.1276463389581969 -0.09421586330362655 -0.9873346865437888 -0.2920792382219204 0.0721269134737136 0.9536705022975484 0.2920792382219204 -0.0721269134737136 -0.9536705022975484 -0.3571230440059741 0.06599960238081828 0.9317226969036875 0.3571230440059741 -0.06599960238081828 -0.9317226969036875 -0.4506036016147756 0.06628064034319742 0.8902602265222728 0.4506036016147756 -0.06628064034319742 -0.8902602265222728 -0.2698068405574629 0.03894401619505566 0.9621266197289207 -0.2693199515713319 0.03468941093848316 0.9624257937391103 0.2693199515713319 -0.03468941093848316 -0.9624257937391103 0.2698068405574629 -0.03894401619505566 -0.9621266197289207 -0.4411119244105691 0.05372970429490571 0.8958422790978254 0.4411119244105691 -0.05372970429490571 -0.8958422790978254 0.8931455316935644 -0.001744440434512021 0.4497644007070713 -0.8931455316935644 0.001744440434512021 -0.4497644007070713 -0.5089425449950996 0.08994888652575087 0.8560880116592503 0.5089425449950996 -0.08994888652575087 -0.8560880116592503 0.8603328292912356 0.04401005563554806 0.5078292408346468 -0.8603328292912356 -0.04401005563554806 -0.5078292408346468 0.6433431650210305 0.05695677214154844 0.7634562843594509 -0.6433431650210305 -0.05695677214154844 -0.7634562843594509 0.2291499131194153 0.08885161135973935 0.9693274516261995 -0.2291499131194153 -0.08885161135973935 -0.9693274516261995 -0.2166937839321052 0.08239336651058744 0.9727564634379143 0.2166937839321052 -0.08239336651058744 -0.9727564634379143 -0.5746463005236908 0.07940848382555334 0.8145403133000618 0.5746463005236908 -0.07940848382555334 -0.8145403133000618 -0.2550544664270329 0.09062866748743163 0.962670070057792 0.2550544664270329 -0.09062866748743163 -0.962670070057792 -0.268208641338077 0.08039316393004066 0.9600005541169757 0.268208641338077 -0.08039316393004066 -0.9600005541169757 -0.5040571034588977 0.06903428738336181 0.8609069076375783 0.5040571034588977 -0.06903428738336181 -0.8609069076375783 -0.5691109628437332 0.06388130761124124 0.8197755122647643 0.5691109628437332 -0.06388130761124124 -0.8197755122647643 0.9418618395814504 0.05197652566664391 0.3319558945400289 -0.9418618395814504 -0.05197652566664391 -0.3319558945400289 -0.6651250306610507 0.08194918217676402 0.7422216819311438 0.6651250306610507 -0.08194918217676402 -0.7422216819311438 0.8512879043211205 0.07117862593348728 0.5198485425263549 -0.8512879043211205 -0.07117862593348728 -0.5198485425263549 0.619245477230669 0.08797079891542996 0.7802539185851883 -0.619245477230669 -0.08797079891542996 -0.7802539185851883 0.2313078287806651 0.09844277603067 0.9678872393993784 -0.2313078287806651 -0.09844277603067 -0.9678872393993784 -0.2676693105422716 0.09407514478910847 0.9589071943242126 0.2676693105422716 -0.09407514478910847 -0.9589071943242126 -0.6004211577830194 0.09502269862054737 0.7940183373407487 0.6004211577830194 -0.09502269862054737 -0.7940183373407487 -0.6841191930593298 0.07792027847086325 0.7251960837531285 0.6841191930593298 -0.07792027847086325 -0.7251960837531285 -0.2193006907917859 0.09994973342337506 0.9705242180424153 0.2193006907917859 -0.09994973342337506 -0.9705242180424153 -0.895673926454469 0.000862505034626854 0.4447105503073879 0.895673926454469 -0.000862505034626854 -0.4447105503073879 -0.9606480777099047 0.006747156029087368 0.277686417884966 0.9606480777099047 -0.006747156029087368 -0.277686417884966 0.9963145726077562 0.01035982162450304 0.08514661769754983 -0.9963145726077562 -0.01035982162450304 -0.08514661769754983 -0.6701351984268618 0.08537696750274057 0.7373124095316902 0.6701351984268618 -0.08537696750274057 -0.7373124095316902 0.983777930475698 0.007551106240307528 -0.1792315940438523 -0.983777930475698 -0.007551106240307528 0.1792315940438523 0.8252223957521297 0.07354185068204758 0.5599996372743245 -0.8252223957521297 -0.07354185068204758 -0.5599996372743245 0.5945268041904479 0.1033653995277004 0.7974042094694331 -0.5945268041904479 -0.1033653995277004 -0.7974042094694331 0.1932005350996065 0.1192242477747035 0.9738886650843524 -0.1932005350996065 -0.1192242477747035 -0.9738886650843524 -0.3142248385532922 0.08615462943965131 0.9454311876928294 0.3142248385532922 -0.08615462943965131 -0.9454311876928294 -0.6518420645040525 0.08411285033915791 0.7536756274093763 0.6518420645040525 -0.08411285033915791 -0.7536756274093763 -0.699313003458432 0.07803047773575904 0.7105438534941222 0.699313003458432 -0.07803047773575904 -0.7105438534941222 -0.6622814848387056 0.08497993225021311 0.7444203422493159 0.6622814848387056 -0.08497993225021311 -0.7444203422493159 0.9949544543089252 0.04854030718942921 0.08780360145680287 -0.9949544543089252 -0.04854030718942921 -0.08780360145680287 0.9901379325004186 0.1122611193768768 -0.08381119078051108 -0.9901379325004186 -0.1122611193768768 0.08381119078051108 0.8032877158295905 0.1034007057999469 0.5865467923681383 -0.8032877158295905 -0.1034007057999469 -0.5865467923681383 0.5551052080391238 0.1581470010154239 0.8166074540914189 -0.5551052080391238 -0.1581470010154239 -0.8166074540914189 0.1213402806397459 0.2048808402222884 0.971236519908553 -0.1213402806397459 -0.2048808402222884 -0.971236519908553 -0.3781550379003967 0.1064664390502687 0.9195997306798786 0.3781550379003967 -0.1064664390502687 -0.9195997306798786 -0.6975916079972683 0.08525585232582549 0.711405220739898 0.6975916079972683 -0.08525585232582549 -0.711405220739898 -0.7002539934369103 0.09092200289402992 0.7080801748851593 0.7002539934369103 -0.09092200289402992 -0.7080801748851593 -0.6677750823147534 0.08506158820664575 0.7394869611097193 0.6677750823147534 -0.08506158820664575 -0.7394869611097193 0.9833538533676359 0.1393665663939898 0.1165854160629505 -0.9833538533676359 -0.1393665663939898 -0.1165854160629505 0.9757539082018429 0.141577994889696 0.1669130971249493 -0.9757539082018429 -0.141577994889696 -0.1669130971249493 0.935136779511798 0.1146530242704431 -0.3352221466877514 -0.935136779511798 -0.1146530242704431 0.3352221466877514 0.9788947884377451 0.1472326476577278 0.1417305211770475 -0.9788947884377451 -0.1472326476577278 -0.1417305211770475 0.7476957669442501 0.4263151891498764 0.509123167410161 -0.7476957669442501 -0.4263151891498764 -0.509123167410161 0.4351652976529689 0.4515882744243441 0.7789089767880753 -0.4351652976529689 -0.4515882744243441 -0.7789089767880753 0.05563331340804202 0.5289120472471837 0.8468512152179009 -0.05563331340804202 -0.5289120472471837 -0.8468512152179009 -0.4461974740070724 0.1722475743624215 0.8782019057801969 0.4461974740070724 -0.1722475743624215 -0.8782019057801969 -0.7419998352307358 0.139150102798354 0.655799888234794 0.7419998352307358 -0.139150102798354 -0.655799888234794 -0.6897695245368228 0.1108441646533761 0.7154939372087931 0.6897695245368228 -0.1108441646533761 -0.7154939372087931 -0.6647898545472454 0.1067289742039228 0.7393668746680708 0.6647898545472454 -0.1067289742039228 -0.7393668746680708 0.8950740664183305 0.4457805184040029 0.01105192457504562 -0.8950740664183305 -0.4457805184040029 -0.01105192457504562 0.8045230737725263 0.3681127863915901 -0.466085400181797 -0.8045230737725263 -0.3681127863915901 0.466085400181797 0.9598099745488073 0.2719552409484544 0.06931925906474978 -0.9598099745488073 -0.2719552409484544 -0.06931925906474978 0.7666598717558816 0.5088704772459741 -0.3915143400013715 -0.7666598717558816 -0.5088704772459741 0.3915143400013715 0.9651938739578729 0.2074084999712526 0.1593188620781253 -0.9651938739578729 -0.2074084999712526 -0.1593188620781253 -0.4503169078687535 0.4919917453143936 0.7450897966218713 0.4503169078687535 -0.4919917453143936 -0.7450897966218713 -0.6459866396208748 0.5996255363186426 0.4723880583015519 0.6459866396208748 -0.5996255363186426 -0.4723880583015519 -0.7457846745836115 0.1824622396899441 0.6407126893105413 0.7457846745836115 -0.1824622396899441 -0.6407126893105413 -0.576804386229287 0.1625954175684261 0.8005369636765092 0.576804386229287 -0.1625954175684261 -0.8005369636765092 0.5180576795043453 0.5370752177731986 -0.665707481676783 -0.5180576795043453 -0.5370752177731986 0.665707481676783 0.9061217896403585 0.4189367839184288 0.05861120557570541 -0.9061217896403585 -0.4189367839184288 -0.05861120557570541 -0.672019975146843 0.2478991248329869 0.697807406746787 -0.9156362960112678 0.1723120788930026 0.3632061685796893 0.9156362960112678 -0.1723120788930026 -0.3632061685796893 0.672019975146843 -0.2478991248329869 -0.697807406746787 0.6923885252186227 0.6725875489072316 -0.2611974716580217 -0.6923885252186227 -0.6725875489072316 0.2611974716580217 0.9606405710798401 0.2313040970548623 0.1538444275267501 -0.9606405710798401 -0.2313040970548623 -0.1538444275267501 -0.6184247596515268 0.7458918534232262 0.2473785755614576 0.6184247596515268 -0.7458918534232262 -0.2473785755614576 0.1488281615604248 0.9155662927981008 -0.3736154999708747 -0.1488281615604248 -0.9155662927981008 0.3736154999708747 0.8374542785258724 0.4900457070242865 0.2419205167111248 -0.8374542785258724 -0.4900457070242865 -0.2419205167111248 -0.3069818865505185 0.7901164331145026 0.530545137997042 0.3069818865505185 -0.7901164331145026 -0.530545137997042 -0.3746978090516431 0.3208310715897286 0.8698672171052803 0.3746978090516431 -0.3208310715897286 -0.8698672171052803 0.5180267390122302 0.8233124476276885 0.2319588568036569 -0.5180267390122302 -0.8233124476276885 -0.2319588568036569 0.9752261389276453 0.2198272850358889 0.02469701816064608 -0.9752261389276453 -0.2198272850358889 -0.02469701816064608 -0.02013490161526211 0.9948608097377648 0.0992298089530694 0.02013490161526211 -0.9948608097377648 -0.0992298089530694 0.2346198895705985 0.9689521708126289 0.07800767972048685 -0.2346198895705985 -0.9689521708126289 -0.07800767972048685 0.8194747684724745 0.5635680518478359 0.1041736760099196 -0.8194747684724745 -0.5635680518478359 -0.1041736760099196 -0.2427140865183295 0.9516308537911111 -0.1883841562296938 0.2427140865183295 -0.9516308537911111 0.1883841562296938 0.02236502878686735 0.9851014286376449 0.1705138727008254 -0.02236502878686735 -0.9851014286376449 -0.1705138727008254 0.4496571382552055 0.8867051493015056 0.1075287692588997 -0.4496571382552055 -0.8867051493015056 -0.1075287692588997 0.9776491467217603 0.2082435558818598 -0.02892693118691978 -0.9776491467217603 -0.2082435558818598 0.02892693118691978 0.05451745702686445 0.9941628502168685 0.09310249259819294 -0.05451745702686445 -0.9941628502168685 -0.09310249259819294 0.0438127723127856 0.9905954583831333 0.129618975512762 -0.0438127723127856 -0.9905954583831333 -0.129618975512762 -0.1956981726428444 0.9610455400549627 -0.1951760619664117 0.1956981726428444 -0.9610455400549627 0.1951760619664117 0.2045468584743975 0.9728343517018995 0.1084154363409551 -0.2045468584743975 -0.9728343517018995 -0.1084154363409551 0.8061690114442743 0.5903126513353483 -0.04028025149366901 -0.8061690114442743 -0.5903126513353483 0.04028025149366901 0.01476157945201542 0.9980629163706004 0.06043600531052539 -0.01476157945201542 -0.9980629163706004 -0.06043600531052539 0.4193902735346606 0.9034891719639234 -0.0884257576075347 -0.4193902735346606 -0.9034891719639234 0.0884257576075347 0.9604116108431715 0.2414805364948089 -0.1389125201405691 -0.9604116108431715 -0.2414805364948089 0.1389125201405691 -0.06838177615090631 0.9976586436301028 -0.001078647574916805 0.06838177615090631 -0.9976586436301028 0.001078647574916805 -0.04222907014205805 0.9990297916010928 0.01249724483293236 0.04222907014205805 -0.9990297916010928 -0.01249724483293236 0.170351442830629 0.9826231251431248 -0.0737033232594172 -0.170351442830629 -0.9826231251431248 0.0737033232594172 0.74333074519562 0.6421569410365217 -0.1873335696706328 -0.74333074519562 -0.6421569410365217 0.1873335696706328 0.3686962453234184 0.9044387136279826 -0.2146012394544205 -0.3686962453234184 -0.9044387136279826 0.2146012394544205 0.8917877003818316 0.2447790213962437 -0.3805232294249349 -0.8917877003818316 -0.2447790213962437 0.3805232294249349 -0.06630977119137992 0.9976983596115199 0.01417735775908853 0.06630977119137992 -0.9976983596115199 -0.01417735775908853 -0.04403949477506977 0.9976014876445216 -0.05340219798279838 0.04403949477506977 -0.9976014876445216 0.05340219798279838 0.2225619983841981 0.9576447485763068 -0.1827093112007543 -0.2225619983841981 -0.9576447485763068 0.1827093112007543 0.7124873634880191 0.619288682816256 -0.3299140557866522 -0.7124873634880191 -0.619288682816256 0.3299140557866522 -0.05913011988548577 0.9980266575742054 0.02112864627910984 0.05913011988548577 -0.9980266575742054 -0.02112864627910984 0.4033109953577375 0.8742862054507831 -0.2701182555511977 -0.4033109953577375 -0.8742862054507831 0.2701182555511977 0.813417733126717 0.2117233690580949 -0.5417792967894609 -0.813417733126717 -0.2117233690580949 0.5417792967894609 0.02580062929879584 0.9936985544649175 -0.1090757094046117 -0.02580062929879584 -0.9936985544649175 0.1090757094046117 -0.0165775742272396 0.9998193966169232 -0.009292910271388092 0.0165775742272396 -0.9998193966169232 0.009292910271388092 0.273496974185514 0.9192953144788657 -0.2830115366704539 -0.273496974185514 -0.9192953144788657 0.2830115366704539 0.5880277526648068 0.59155477570931 -0.5516215273459555 -0.5880277526648068 -0.59155477570931 0.5516215273459555 0.3472037532448569 0.7613954729584919 -0.5474728189517716 -0.3472037532448569 -0.7613954729584919 0.5474728189517716 0.6116929260147036 0.2894547948434446 -0.7362388783579076 -0.6116929260147036 -0.2894547948434446 0.7362388783579076 0.01557971421225727 0.9619313535424179 -0.272846740088857 -0.01557971421225727 -0.9619313535424179 0.272846740088857 -0.002326710954896456 0.991508710784031 -0.1300194710630725 0.002326710954896456 -0.991508710784031 0.1300194710630725 0.153468283798909 0.7918642236388596 -0.5910994308816781 -0.153468283798909 -0.7918642236388596 0.5910994308816781 0.3471621632704636 0.4496794813653836 -0.8229622083864676 -0.3471621632704636 -0.4496794813653836 0.8229622083864676 0.009566350025912693 0.8013399447302031 -0.5981327427310573 -0.009566350025912693 -0.8013399447302031 0.5981327427310573 -0.009548376057996846 0.9875451697264027 -0.1570457457707962 0.009548376057996846 -0.9875451697264027 0.1570457457707962 0.1286514942738617 0.5174470521760602 -0.845988972277658 -0.1286514942738617 -0.5174470521760602 0.845988972277658 0.2579558093757095 0.3380193053285395 -0.905097646463924 -0.2579558093757095 -0.3380193053285395 0.905097646463924 -0.001015192158410591 0.9767277832484703 -0.2144803180140568 0.001015192158410591 -0.9767277832484703 0.2144803180140568 -0.01572330387130821 0.4801689581634223 -0.8770350901370048 0.01572330387130821 -0.4801689581634223 0.8770350901370048 0.08149151905122982 0.3325274144394839 -0.9395662036114937 -0.08149151905122982 -0.3325274144394839 0.9395662036114937 0.03162526171808766 0.8553544880402206 -0.5170769213673285 -0.03162526171808766 -0.8553544880402206 0.5170769213673285 0 0.3078858683395855 -0.9514232980523336 -0 -0.3078858683395855 0.9514232980523336 -0.006817813475423355 0.4762750478533392 -0.8792699222717185 0.006817813475423355 -0.4762750478533392 0.8792699222717185 0 0.3078858683395854 -0.9514232980523336 -0 -0.3078858683395854 0.9514232980523336 -0.02307224561617772 0.3132163572532846 -0.9494014877970277 -2.964317095709304e-017 0.3078858683395854 -0.9514232980523336 2.964317095709304e-017 -0.3078858683395854 0.9514232980523336 0.02307224561617772 -0.3132163572532846 0.9494014877970277 0.0292968079231985 0.4931382590738291 -0.8694575058524391 -0.0292968079231985 -0.4931382590738291 0.8694575058524391 -0.010011755192711 0.3023485122323238 -0.9531448693188572 0.010011755192711 -0.3023485122323238 0.9531448693188572 -0.01611343067033426 0.2259029615688404 -0.9740165344112284 0.01611343067033426 -0.2259029615688404 0.9740165344112284</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"378\" source=\"#ID148\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID144\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID142\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID143\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"297\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 6 0 2 2 1 8 6 2 10 2 8 12 1 14 8 16 6 10 10 2 12 12 8 18 8 14 20 16 10 22 10 12 24 8 20 18 12 18 26 14 28 20 22 10 24 30 16 22 24 12 26 20 32 18 18 34 26 28 36 20 22 24 38 30 22 40 24 26 42 20 36 32 18 32 34 26 34 44 28 46 36 48 22 38 38 24 42 40 22 48 42 26 50 32 36 52 34 32 54 50 26 44 44 34 56 46 58 36 42 50 60 32 52 54 36 58 52 34 54 56 50 44 62 44 56 64 46 66 58 60 50 68 70 54 52 72 52 58 74 56 54 68 50 62 44 64 62 76 64 56 66 78 58 72 70 52 70 74 54 78 72 58 74 76 56 68 62 80 62 64 82 76 84 64 66 86 78 88 70 72 90 74 70 78 92 72 94 76 74 96 68 80 62 82 80 84 82 64 98 84 76 86 100 78 92 88 72 88 90 70 90 94 74 78 100 92 94 98 76 96 80 102 80 82 104 84 106 82 98 108 84 92 110 88 112 90 88 114 94 90 116 92 117 120 98 94 122 96 102 102 80 104 106 104 82 108 106 84 124 108 98 110 112 88 116 110 92 112 114 90 114 120 94 120 124 98 122 102 126 102 104 128 106 130 104 108 132 106 124 134 108 136 112 110 116 138 110 136 114 112 140 120 114 142 124 120 122 126 144 102 128 126 130 128 104 132 130 106 134 132 108 146 134 124 138 136 110 136 140 114 140 142 120 142 146 124 144 126 148 126 128 150 130 152 128 132 154 130 134 156 132 146 158 134 138 160 136 160 140 136 162 142 140 164 146 142 166 144 148 126 150 148 152 150 128 154 152 130 156 154 132 158 156 134 168 158 146 160 162 140 162 164 142 164 168 146 144 166 170 166 148 172 148 150 174 152 176 150 154 178 152 156 180 154 156 158 182 168 184 158 170 166 186 186 166 172 172 148 174 176 174 150 178 176 152 180 178 154 156 182 180 184 182 158 170 186 188 186 172 190 172 174 192 176 194 174 178 196 176 180 198 178 180 182 200 184 202 182 188 186 204 206 170 188 186 190 204 172 192 190 194 192 174 196 194 176 198 196 178 180 200 198 202 200 182 208 188 204 210 206 188 204 190 212 192 214 190 194 216 192 196 218 194 198 220 196 198 200 222 202 224 200 208 204 226 188 208 228 210 188 230 226 204 212 214 212 190 216 214 192 218 216 194 220 218 196 198 222 220 224 222 200 208 226 232 228 208 232 230 188 228 234 210 230 218 236 216 220 238 218 222 240 220 224 242 222 228 232 244 246 230 228 234 230 246 236 218 238 220 248 249 220 240 248 242 240 222 244 252 228 252 246 228 254 234 246 249 248 256 240 242 248 258 252 244 252 260 246 254 246 260 248 262 256 242 264 248 258 266 252 266 260 252 268 254 260 262 270 256 264 262 248 272 266 258 274 260 266 268 260 274 270 276 256 272 258 278 272 280 266 280 274 266 282 268 274 270 284 276 286 272 278 278 258 288 290 280 272 292 274 280 282 274 292 284 288 276 294 286 278 290 272 286 284 278 288 296 280 290 296 292 280 298 282 292 294 278 284 300 286 294 302 290 286 304 296 290 296 306 292 306 298 292 300 302 286 304 290 302 308 296 304 308 306 296 310 298 306 312 302 300 314 304 302 316 308 304 318 306 308 318 310 306 312 320 302 316 304 314 320 314 302 322 308 316 322 318 308 324 310 318 326 316 314 328 314 320 330 322 316 322 332 318 332 324 318 330 316 326 328 326 314 330 334 322 334 332 322 336 324 332 338 330 326 340 326 328 342 334 330 334 344 332 344 336 332 346 330 338 348 338 326 348 326 340 342 350 334 346 342 330 334 350 344 344 352 336 346 338 354 354 338 348 342 356 350 346 356 342 350 358 344 358 352 344 360 346 354 356 362 350 346 364 356 350 366 358 360 364 346 356 368 369 364 368 356 360 372 364 364 374 368 372 374 364 372 376 374</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID144\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"297\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 5 7 9 4 3 11 3 7 13 9 3 9 15 4 11 7 17 13 3 11 19 9 13 21 15 9 23 11 17 25 13 11 19 21 9 27 19 13 21 29 15 25 11 23 23 17 31 27 13 25 19 33 21 27 35 19 21 37 29 39 25 23 41 23 31 43 27 25 33 37 21 35 33 19 45 35 27 37 47 29 39 23 49 43 25 39 49 23 41 51 27 43 53 37 33 55 33 35 45 27 51 57 35 45 37 59 47 61 51 43 55 53 33 53 59 37 57 55 35 63 45 51 65 57 45 59 67 47 69 51 61 53 55 71 59 53 73 55 57 75 63 51 69 63 65 45 57 65 77 59 79 67 53 71 73 55 75 71 59 73 79 57 77 75 81 63 69 83 65 63 65 85 77 79 87 67 73 71 89 71 75 91 73 93 79 75 77 95 81 69 97 81 83 63 65 83 85 77 85 99 79 101 87 73 89 93 71 91 89 75 95 91 93 101 79 77 99 95 103 81 97 105 83 81 83 107 85 85 109 99 89 111 93 89 91 113 91 95 115 118 93 119 95 99 121 103 97 123 105 81 103 83 105 107 85 107 109 99 109 125 89 113 111 93 111 119 91 115 113 95 121 115 99 125 121 127 103 123 129 105 103 105 131 107 107 133 109 109 135 125 111 113 137 111 139 119 113 115 137 115 121 141 121 125 143 145 127 123 127 129 103 105 129 131 107 131 133 109 133 135 125 135 147 111 137 139 115 141 137 121 143 141 125 147 143 149 127 145 151 129 127 129 153 131 131 155 133 133 157 135 135 159 147 137 161 139 137 141 161 141 143 163 143 147 165 149 145 167 149 151 127 129 151 153 131 153 155 133 155 157 135 157 159 147 159 169 141 163 161 143 165 163 147 169 165 171 167 145 173 149 167 175 151 149 151 177 153 153 179 155 155 181 157 183 159 157 159 185 169 187 167 171 173 167 187 175 149 173 151 175 177 153 177 179 155 179 181 181 183 157 159 183 185 189 187 171 191 173 187 193 175 173 175 195 177 177 197 179 179 199 181 201 183 181 183 203 185 205 187 189 189 171 207 205 191 187 191 193 173 175 193 195 177 195 197 179 197 199 199 201 181 183 201 203 205 189 209 189 207 211 213 191 205 191 215 193 193 217 195 195 219 197 197 221 199 223 201 199 201 225 203 227 205 209 229 209 189 231 189 211 213 205 227 191 213 215 193 215 217 195 217 219 197 219 221 221 223 199 201 223 225 233 227 209 233 209 229 229 189 231 231 211 235 217 237 219 219 239 221 221 241 223 223 243 225 245 233 229 229 231 247 247 231 235 239 219 237 250 251 221 251 241 221 223 241 243 229 253 245 229 247 253 247 235 255 257 251 250 251 243 241 245 253 259 247 261 253 261 247 255 257 263 251 251 265 243 253 267 259 253 261 267 261 255 269 257 271 263 251 263 265 259 267 273 267 261 275 275 261 269 257 277 271 279 259 273 267 281 273 267 275 281 275 269 283 277 285 271 279 273 287 289 259 279 273 281 291 281 275 293 293 275 283 277 289 285 279 287 295 287 273 291 289 279 285 291 281 297 281 293 297 293 283 299 285 279 295 295 287 301 287 291 303 291 297 305 293 307 297 293 299 307 287 303 301 303 291 305 305 297 309 297 307 309 307 299 311 301 303 313 303 305 315 305 309 317 309 307 319 307 311 319 303 321 313 315 305 317 303 315 321 317 309 323 309 319 323 319 311 325 315 317 327 321 315 329 317 323 331 319 333 323 319 325 333 327 317 331 315 327 329 323 335 331 323 333 335 333 325 337 327 331 339 329 327 341 331 335 343 333 345 335 333 337 345 339 331 347 327 339 349 341 327 349 335 351 343 331 343 347 345 351 335 337 353 345 355 339 347 349 339 355 351 357 343 343 357 347 345 359 351 345 353 359 355 347 361 351 363 357 357 365 347 359 367 351 347 365 361 370 371 357 357 371 365 365 373 361 371 375 365 365 375 373 375 377 373</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID144\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID149\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID155\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID159\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">0.6581289172172546 1.925639629364014 0.2436227351427078 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6566852927207947 1.912085294723511 0.2607377767562866 0.6566852927207947 1.912085294723511 0.2607377767562866 0.7089943289756775 1.906256556510925 0.2465686351060867 0.6581289172172546 1.925639629364014 0.2436227351427078 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.6045059561729431 1.912085294723511 0.2496029883623123 0.6045059561729431 1.912085294723511 0.2496029883623123 0.7500623464584351 1.90237021446228 0.2152038067579269 0.7500623464584351 1.90237021446228 0.2152038067579269 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6072992086410523 1.926056265830994 0.2301047742366791 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5611516833305359 1.912085294723511 0.2021596431732178 0.5611516833305359 1.912085294723511 0.2021596431732178 0.7709382176399231 1.897327780723572 0.1462340503931046 0.7709382176399231 1.897327780723572 0.1462340503931046 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.7521055936813355 1.90048885345459 0.08241678774356842 0.7521055936813355 1.90048885345459 0.08241678774356842 0.5564971566200256 1.905122637748718 0.08657681941986084 0.5564971566200256 1.905122637748718 0.08657681941986084 0.7218274474143982 1.905122637748718 0.05090289935469627 0.7218274474143982 1.905122637748718 0.05090289935469627 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7044316530227661 1.922605037689209 0.06054756790399551 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6037890911102295 1.905122637748718 0.04070135205984116 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6598671674728394 1.913674473762512 0.02759447880089283 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6581888198852539 1.925890922546387 0.04520654678344727</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID159\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID156\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID160\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">0.06368183923200262 0.7816359070732991 0.620475569322218 0.4351652976529689 0.4515882744243441 0.7789089767880753 0.05563331340804202 0.5289120472471837 0.8468512152179009 -0.05563331340804202 -0.5289120472471837 -0.8468512152179009 -0.4351652976529689 -0.4515882744243441 -0.7789089767880753 -0.06368183923200262 -0.7816359070732991 -0.620475569322218 0.35795738869433 0.7264570419027571 0.5866231108207655 -0.35795738869433 -0.7264570419027571 -0.5866231108207655 -0.4503169078687535 0.4919917453143936 0.7450897966218713 0.4503169078687535 -0.4919917453143936 -0.7450897966218713 0.7476957669442501 0.4263151891498764 0.509123167410161 -0.7476957669442501 -0.4263151891498764 -0.509123167410161 -0.3587997901179157 0.7857770301638292 0.5038027088834004 0.3587997901179157 -0.7857770301638292 -0.5038027088834004 0.6026311348964107 0.7116602076906679 0.3610754270829568 -0.6026311348964107 -0.7116602076906679 -0.3610754270829568 -0.6459866396208748 0.5996255363186426 0.4723880583015519 0.6459866396208748 -0.5996255363186426 -0.4723880583015519 0.8950740664183305 0.4457805184040029 0.01105192457504562 -0.8950740664183305 -0.4457805184040029 -0.01105192457504562 -0.5614119746978663 0.7664293163683451 0.3120940526139411 0.5614119746978663 -0.7664293163683451 -0.3120940526139411 0.7799010414554628 0.6257727049031696 -0.01276273226448814 -0.7799010414554628 -0.6257727049031696 0.01276273226448814 -0.7167971047649803 0.6972385239267886 0.007768613321232372 0.7167971047649803 -0.6972385239267886 -0.007768613321232372 0.6469230332364384 0.6898812497274981 -0.3248914439356497 -0.6469230332364384 -0.6898812497274981 0.3248914439356497 -0.6184247596515268 0.7458918534232262 0.2473785755614576 0.6184247596515268 -0.7458918534232262 -0.2473785755614576 0.7666598717558816 0.5088704772459741 -0.3915143400013715 -0.7666598717558816 -0.5088704772459741 0.3915143400013715 -0.2427140865183295 0.9516308537911111 -0.1883841562296938 0.2427140865183295 -0.9516308537911111 0.1883841562296938 0.5180576795043453 0.5370752177731986 -0.665707481676783 -0.5180576795043453 -0.5370752177731986 0.665707481676783 -0.693515309669331 0.6221333811688795 -0.3632995613672408 0.693515309669331 -0.6221333811688795 0.3632995613672408 0.3920329437243987 0.7299265527327969 -0.5599262439378937 -0.3920329437243987 -0.7299265527327969 0.5599262439378937 -0.1956981726428444 0.9610455400549627 -0.1951760619664117 0.1956981726428444 -0.9610455400549627 0.1951760619664117 0.1488281615604248 0.9155662927981008 -0.3736154999708747 -0.1488281615604248 -0.9155662927981008 0.3736154999708747 -0.4360106190602546 0.6523043197237375 -0.619995011702873 0.4360106190602546 -0.6523043197237375 0.619995011702873 0.03258612750319111 0.8226944407409194 -0.5675491181107868 -0.03258612750319111 -0.8226944407409194 0.5675491181107868</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID160\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID158\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID161\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">-0.14982045556514 -8.316798414086907 -0.6936716701330531 -8.287437175619747 -0.1790159423250831 -8.146215969184315 -0.2073074579882039 -8.749814709742097 -0.6387413596695191 -8.882757905347074 -0.7510917595116751 -8.719696277367525 -9.094852670127247 -7.002258959439575 -9.646040306013674 -7.061560931524517 -9.609601124940296 -6.891843081338203 4.721085827244991 -6.687977590734072 4.213867949560833 -6.83050779919227 4.578082471218702 -6.540515107334523 -9.313835603103531 -6.437850264840334 -9.813745990075313 -6.309196186018193 -9.262151981743834 -6.252280503657532 4.406837534938787 -6.898071876106249 4.199902154201657 -6.807940392341079 4.707186346096488 -6.665556309650214 -15.37345076151881 -3.135519892390655 -15.83382916344027 -2.888472771458424 -15.73231838591345 -2.716100072539287 8.062583101023312 -1.257353546819625 8.245269708836297 -0.7075691333339041 8.460145540014123 -0.7853569518880319 -14.92308371222783 -2.85581785835925 -15.1091631203076 -2.94715270933599 -15.38816787693552 -2.614286891640673 10.13229269872748 -2.030806223790802 9.867238671037802 -2.025538394937177 10.25339902581849 -1.547719574735519 -16.57918381797935 -0.8764531836845783 -16.66529393175382 -0.4999924201245851 -16.47462369575802 -0.414718120843968 10.0743158013063 4.409280263795306 10.33936934927102 4.403997518620375 10.47576653108455 3.978464122402 -17.77818355776621 0.1483719851793338 -17.66289384405605 -0.3364642109844385 -17.89867654398276 -0.310953882398821 8.827508930937732 3.245245550925936 8.676315342582571 3.755592063598506 9.086442611058098 3.329863466668702 -17.0822909434011 2.974866944420178 -17.12311202182214 2.528078589498817 -17.31803530042676 3.000595632608795 6.61052696030081 7.141648360596713 6.347926612480678 7.418860344056025 6.602126373538136 7.511937981641268 -18.55725727894121 1.672754872058794 -18.83697110777229 1.769865113222594 -18.77313520414998 2.139600909810604 4.897367782508628 7.375062005046844 4.655422672765788 7.290374409774107 4.626054596276275 7.660001697508108 -16.62922440995447 5.315904305007655 -16.98813222125273 4.881244282551317 -16.897735133379 5.430931382444905 2.470188841201698 10.31134153396707 1.875921553309959 10.55046187739263 2.108960131118924 10.64940622458298 -17.51227183145602 4.518021817074613 -17.68407501047069 4.693145375765543 -17.44223810768192 5.069544815263329 -0.9209516549029151 8.913201958803468 -0.9712984538805081 8.748772552573735 -1.374058429762926 9.056428466690454 -12.77253371674224 8.934130110648971 -12.65971399906374 8.731503734435394 -13.21232760142227 8.587336096869878 -10.11081142365707 8.082359692722404 -10.11751936113235 8.251409480792749 -9.621150051683159 8.384986354872035</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"72\" source=\"#ID161\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID157\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID155\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID156\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 6 9 10 10 1 11 12 12 0 13 8 14 14 15 10 16 6 17 16 18 12 19 8 20 18 21 10 22 14 23 16 24 20 25 12 26 22 27 18 28 14 29 24 30 20 31 16 32 18 33 22 34 26 35 16 36 28 37 24 38 30 39 18 40 26 41 28 42 32 43 24 44 34 45 30 46 26 47 32 48 36 49 24 50 38 51 34 52 26 53 32 54 40 55 36 56 42 57 34 58 38 59 40 60 44 61 36 62 46 63 42 64 38 65 44 66 40 67 42 68 42 69 46 70 44 71</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID157\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID158\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 4 7 5 3 5 9 4 11 7 9 5 13 7 11 15 9 13 17 15 11 19 13 21 17 15 19 23 17 21 25 27 23 19 25 29 17 27 19 31 25 33 29 27 31 35 25 37 33 27 35 39 37 41 33 39 35 43 37 45 41 39 43 47 43 41 45 45 47 43</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID157\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID162\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID163\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID166\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">0.6581888198852539 1.925890922546387 0.04520654678344727 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6591432690620422 1.944134831428528 0.1425205767154694 0.6591432690620422 1.944134831428528 0.1425205767154694 0.7044316530227661 1.922605037689209 0.06054756790399551 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6581289172172546 1.925639629364014 0.2436227351427078</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID166\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID164\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID167\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">0.03936908541704142 0.982044718226688 -0.1844945704255019 0.1654102896355377 0.972487807810053 -0.1640332275591905 0.05154924676621023 0.9986704535612888 -1.848042230411276e-005 -0.05154924676621023 -0.9986704535612888 1.848042230411276e-005 -0.1654102896355377 -0.972487807810053 0.1640332275591905 -0.03936908541704142 -0.982044718226688 0.1844945704255019 -0.07133888125878626 0.9829625270788537 -0.169397267922179 0.07133888125878626 -0.9829625270788537 0.169397267922179 0.2344210378311746 0.9677133534895852 -0.09261556294757618 -0.2344210378311746 -0.9677133534895852 0.09261556294757618 -0.1253412291305374 0.9875267950369973 -0.09529116099619422 0.1253412291305374 -0.9875267950369973 0.09529116099619422 0.2642768599222439 0.9643251834938845 0.01531932730653969 -0.2642768599222439 -0.9643251834938845 -0.01531932730653969 -0.1531152101238801 0.9876602560594644 0.03290822130218187 0.1531152101238801 -0.9876602560594644 -0.03290822130218187 0.2333223649560231 0.9667716409934942 0.1044665888314273 -0.2333223649560231 -0.9667716409934942 -0.1044665888314273 -0.1453187436904175 0.983128098322856 0.1110927766343233 0.1453187436904175 -0.983128098322856 -0.1110927766343233 0.1663135392735206 0.9732003198707487 0.1588110325443019 -0.1663135392735206 -0.9732003198707487 -0.1588110325443019 -0.08898286512452604 0.9845880526293398 0.1505603411718863 0.08898286512452604 -0.9845880526293398 -0.1505603411718863 0.04190944451044767 0.9827370906126011 0.1801982497004504 -0.04190944451044767 -0.9827370906126011 -0.1801982497004504</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID167\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID165\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID163\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID164\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 6 2 3 7 11 2 8 12 13 9 3 10 2 14 15 3 11 2 12 16 17 13 3 14 2 18 19 3 15 2 16 20 21 17 3 18 2 22 23 3 19 2 20 24 25 21 3 22 2 24 25 3 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID165\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID168\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID169\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID172\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">0.5611516833305359 1.912085294723511 0.2021596431732178 0.569970428943634 1.82999062538147 0.2332505583763123 0.5443132519721985 1.912085294723511 0.1417621821165085 0.5443132519721985 1.912085294723511 0.1417621821165085 0.569970428943634 1.82999062538147 0.2332505583763123 0.5611516833305359 1.912085294723511 0.2021596431732178</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID172\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID170\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID173\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.9632636129987122 -0.001769357604049535 0.2685518222733488 -0.9632636129987122 -0.001769357604049535 0.2685518222733488 -0.9632636129987122 -0.001769357604049535 0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488 0.9632636129987122 0.001769357604049535 -0.2685518222733488</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID173\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID171\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID169\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID170\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID171\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID174\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID175\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID178\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"612\">0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7976231575012207 0.9965742826461792 -0.118915356695652 0.7968589067459106 0.9900846481323242 -0.1417891830205917 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.7906813025474548 0.872636616230011 -0.1804070621728897 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6072611808776856 0.9984251260757446 -0.1172629222273827 0.6043292880058289 0.9917877912521362 -0.1390951871871948 0.5888342261314392 0.8816207051277161 0.3464677929878235 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7976231575012207 1.020599007606506 -0.05044753849506378 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.7852427959442139 0.7611286044120789 -0.212054580450058 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6045845746994019 0.8743020296096802 -0.1780563443899155 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6085654497146606 1.020322561264038 -0.05074839293956757 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6026480197906494 0.7718126773834229 0.3616744577884674 0.6078575253486633 1.062604069709778 0.02048102393746376 0.6078575253486633 1.062604069709778 0.02048102393746376 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7976231575012207 1.065373659133911 0.02161485888063908 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.7816165685653687 0.6196871995925903 -0.2356189638376236 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6045845746994019 0.7641450166702271 -0.2099666148424149 0.6078575253486633 1.062604069709778 0.02048102393746376 0.6078575253486633 1.062604069709778 0.02048102393746376 0.5737410187721252 1.083053588867188 0.3171393871307373 0.5737410187721252 1.083053588867188 0.3171393871307373 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.6263902187347412 0.6240295767784119 0.3749990165233612 0.7976231575012207 1.134773850440979 0.09562528133392334 0.7976231575012207 1.134773850440979 0.09562528133392334 0.6100444793701172 1.132825136184692 0.09579920023679733 0.6100444793701172 1.132825136184692 0.09579920023679733 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6185794472694397 0.621590256690979 -0.2350388020277023 0.6100444793701172 1.132825136184692 0.09579920023679733 0.6100444793701172 1.132825136184692 0.09579920023679733 0.5641165971755981 1.231308460235596 0.2951163649559021 0.5641165971755981 1.231308460235596 0.2951163649559021 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7976231575012207 1.226557493209839 0.1501588523387909 0.7976231575012207 1.226557493209839 0.1501588523387909 0.6150623559951782 1.227490305900574 0.1535092145204544 0.6150623559951782 1.227490305900574 0.1535092145204544 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.7972875833511353 0.4232206344604492 -0.1205965802073479 0.6710672974586487 0.4225216507911682 -0.2487141937017441 0.7783369421958923 0.4214315414428711 -0.2518607676029205 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6150623559951782 1.227490305900574 0.1535092145204544 0.6150623559951782 1.227490305900574 0.1535092145204544 0.5558203458786011 1.338033199310303 0.2760796546936035 0.5558203458786011 1.338033199310303 0.2760796546936035 0.798487663269043 0.4255831241607666 0.01916016265749931 0.798487663269043 0.4255831241607666 0.01916016265749931 0.688839852809906 0.4193950891494751 0.3588072657585144 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.6621549129486084 0.4212585687637329 0.3923158347606659 0.688839852809906 0.4193950891494751 0.3588072657585144 0.7946488857269287 1.336279630661011 0.1839811652898789 0.7946488857269287 1.336279630661011 0.1839811652898789 0.6001907587051392 1.335630416870117 0.1818975508213043 0.6001907587051392 1.335630416870117 0.1818975508213043 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7873175144195557 0.4261996150016785 0.1531498581171036 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.7471287846565247 0.4189915657043457 0.2971207797527313 0.5483854413032532 1.437644124031067 0.2575764954090118 0.5483854413032532 1.437644124031067 0.2575764954090118 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7698178291320801 0.4233014583587647 0.2322525233030319 0.7952814698219299 1.430078029632568 0.1879792362451553 0.7952814698219299 1.430078029632568 0.1879792362451553 0.6001907587051392 1.430773377418518 0.1891794055700302 0.6001907587051392 1.430773377418518 0.1891794055700302 0.6024033427238464 1.530340790748596 0.1673334091901779 0.6024033427238464 1.530340790748596 0.1673334091901779 0.7969198822975159 1.529133081436157 0.1681521981954575 0.7969198822975159 1.529133081436157 0.1681521981954575 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5391620993614197 1.536199450492859 0.2382145375013351 0.5255792737007141 1.631603479385376 0.2142343670129776 0.5255792737007141 1.631603479385376 0.2142343670129776 0.7910681962966919 1.631798982620239 0.123851403594017 0.7910681962966919 1.631798982620239 0.123851403594017 0.5982099771499634 1.63359522819519 0.123851403594017 0.5982099771499634 1.63359522819519 0.123851403594017 0.5107629299163818 1.737711548805237 0.1886539459228516 0.5107629299163818 1.737711548805237 0.1886539459228516 0.7916035652160645 1.673280954360962 0.08852987736463547 0.7916035652160645 1.673280954360962 0.08852987736463547 0.600138247013092 1.674088478088379 0.08723254501819611 0.600138247013092 1.674088478088379 0.08723254501819611 0.600138247013092 1.703011274337769 0.06053215265274048 0.600138247013092 1.703011274337769 0.06053215265274048 0.7907845973968506 1.703024983406067 0.0606619194149971 0.7907845973968506 1.703024983406067 0.0606619194149971 0.6017862558364868 1.727086067199707 0.03279396891593933 0.6017862558364868 1.727086067199707 0.03279396891593933 0.4955552816390991 1.831614017486572 0.16129469871521 0.4955552816390991 1.831614017486572 0.16129469871521 0.7930033206939697 1.725906729698181 0.03279396891593933 0.7930033206939697 1.725906729698181 0.03279396891593933 0.6035350561141968 1.760315418243408 -0.0219960268586874 0.6035350561141968 1.760315418243408 -0.0219960268586874 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.7930259108543396 1.760987401008606 -0.02161367051303387 0.4784936010837555 1.90060830116272 0.1212251707911491 0.4784936010837555 1.90060830116272 0.1212251707911491 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.7941920757293701 1.775644421577454 -0.08081070333719254 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.601814329624176 1.775644421577454 -0.07519237697124481 0.601814329624176 1.775644421577454 -0.07519237697124481 0.4961572587490082 1.913546085357666 0.03562422469258308 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4525564014911652 1.913546085357666 0.05328220129013062 0.4961572587490082 1.913546085357666 0.03562422469258308 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.5269108414649963 1.913546085357666 -0.03441489487886429 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.7898848056793213 1.78863799571991 -0.1344994306564331 0.518811047077179 1.913546085357666 0.007866731844842434 0.518811047077179 1.913546085357666 0.007866731844842434 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.5183994174003601 1.913546085357666 -0.07983867824077606 0.601814329624176 1.788490056991577 -0.1259496361017227 0.601814329624176 1.788490056991577 -0.1259496361017227 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.7857073545455933 1.79233717918396 -0.1969264596700668 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.5085954070091248 1.913546085357666 -0.1223205998539925 0.601814329624176 1.792240262031555 -0.1946214735507965 0.601814329624176 1.792240262031555 -0.1946214735507965 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.7731755375862122 1.78669011592865 -0.2666657269001007 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.4902810752391815 1.913546085357666 -0.1572986245155335 0.6047999858856201 1.788490056991577 -0.264063835144043 0.6047999858856201 1.788490056991577 -0.264063835144043 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4612970650196075 1.913546085357666 -0.1890691965818405 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.4235773682594299 1.900443315505981 -0.2682575881481171 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.7621726393699646 1.761277794837952 -0.2961414754390717 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.4235773682594299 1.912193655967712 -0.1961420923471451 0.424839973449707 1.892464518547058 -0.2987582087516785 0.424839973449707 1.892464518547058 -0.2987582087516785 0.602636456489563 1.761277794837952 -0.2947392761707306 0.602636456489563 1.761277794837952 -0.2947392761707306 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.4258355796337128 1.845904350280762 -0.3425243198871613 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.7204130291938782 1.778220176696777 -0.3468544185161591 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.5888708233833313 1.761277794837952 -0.3425095975399017 0.5888708233833313 1.761277794837952 -0.3425095975399017 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.4258355796337128 1.778753638267517 -0.3580985367298126 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6959677934646606 1.778753638267517 -0.3587228357791901 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6699360609054565 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6168317794799805 1.778753638267517 -0.3623466193675995 0.6428631544113159 1.778753638267517 -0.3623466193675995 0.5730990171432495 1.778753638267517 -0.3605347573757172 0.5730990171432495 1.778753638267517 -0.3605347573757172</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"204\" source=\"#ID178\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID176\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID179\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"612\">-0.002031866627481819 0.7041738060751083 -0.7100247336225014 -0.003154768045807751 0.7279228439330888 -0.6856517926170259 0.005578171167189729 0.952967993764047 -0.3030196146584522 -0.005578171167189729 -0.952967993764047 0.3030196146584522 0.003154768045807751 -0.7279228439330888 0.6856517926170259 0.002031866627481819 -0.7041738060751083 0.7100247336225014 -0.009873866414612846 0.2940160093358328 -0.9557494928150671 0.009873866414612846 -0.2940160093358328 0.9557494928150671 0.003893238134685696 0.9526977033105609 -0.3038946014716437 -0.003893238134685696 -0.9526977033105609 0.3038946014716437 -0.008412856373111871 0.2958381366472996 -0.9552010368255988 0.008412856373111871 -0.2958381366472996 0.9552010368255988 -0.9948075727464791 -0.08790104295397494 -0.05129619726512105 -0.9967250369421153 0.07969187169170205 -0.01372611813341505 -0.9641576495820019 0.2638333602880564 0.02814222364388343 0.9641576495820019 -0.2638333602880564 -0.02814222364388343 0.9967250369421153 -0.07969187169170205 0.01372611813341505 0.9948075727464791 0.08790104295397494 0.05129619726512105 0.002151779979543105 0.9027479757737718 -0.4301644593400033 -0.002151779979543105 -0.9027479757737718 0.4301644593400033 -0.008621931941022816 0.2207983455641449 -0.9752813711364228 0.008621931941022816 -0.2207983455641449 0.9752813711364228 -0.9998659129083529 -0.004779808995791442 -0.01566236348415073 0.9998659129083529 0.004779808995791442 0.01566236348415073 -0.9960924026966632 0.08616161503151285 -0.0193933335233983 0.9960924026966632 -0.08616161503151285 0.0193933335233983 -0.003991031751673676 0.9093357713540832 -0.4160438998488402 0.003991031751673676 -0.9093357713540832 0.4160438998488402 -0.005673303817165464 0.2264395815461192 -0.9740086906865957 0.005673303817165464 -0.2264395815461192 0.9740086906865957 -0.9905917461751002 -0.136308881204913 -0.01216064613541545 0.9905917461751002 0.136308881204913 0.01216064613541545 -0.9968271004583693 0.04460997381382314 -0.06592178720340064 0.9968271004583693 -0.04460997381382314 0.06592178720340064 -0.004720641850529348 0.794362249212256 -0.6074259893739855 0.004720641850529348 -0.794362249212256 0.6074259893739855 -0.004096609442663096 0.1253146842323055 -0.9921085866510944 0.004096609442663096 -0.1253146842323055 0.9921085866510944 -0.9980320214358647 -0.06250647920590244 0.005002424004814591 0.9980320214358647 0.06250647920590244 -0.005002424004814591 -0.008661296070234087 0.8008066651523571 -0.598860306747696 0.008661296070234087 -0.8008066651523571 0.598860306747696 -0.895673926454469 0.000862505034626854 0.4447105503073879 0.895673926454469 -0.000862505034626854 -0.4447105503073879 -0.005601653918102343 0.1304529245089368 -0.9914386798791176 0.005601653918102343 -0.1304529245089368 0.9914386798791176 -0.9852520874831436 -0.1710602304784259 -0.004089212488466666 0.9852520874831436 0.1710602304784259 0.004089212488466666 -0.006660261559601748 0.6261558675591958 -0.7796694622961377 0.006660261559601748 -0.6261558675591958 0.7796694622961377 -0.9759873012105041 0.1309215835370071 -0.1740928684352089 0.9759873012105041 -0.1309215835370071 0.1740928684352089 -0.01726204262242443 0.07004637810473909 -0.9973943687423293 0.01726204262242443 -0.07004637810473909 0.9973943687423293 -0.9827040135866452 -0.1847034824060137 0.01332085837286729 0.9827040135866452 0.1847034824060137 -0.01332085837286729 -0.009504067604324451 0.6333563698512222 -0.773801900661826 0.009504067604324451 -0.6333563698512222 0.773801900661826 -0.9606480777099047 0.006747156029087368 0.277686417884966 0.9606480777099047 -0.006747156029087368 -0.277686417884966 -0.02864687218974323 0.06098751536159313 -0.9977273573896649 0.02864687218974323 -0.06098751536159313 0.9977273573896649 -0.9710427981079228 -0.2387850133832192 0.007589573526315395 0.9710427981079228 0.2387850133832192 -0.007589573526315395 -0.01226787875901361 0.4089424243897999 -0.9124777217471924 0.01226787875901361 -0.4089424243897999 0.9124777217471924 -0.9258013446998226 0.1301689880839249 -0.3548913984491697 0.9258013446998226 -0.1301689880839249 0.3548913984491697 -0.009719797712985413 -0.9998397877975792 0.01503077740206486 0.0003328631328224821 -0.9999540640432325 0.009579092105094415 -0.01129806292066895 -0.9997986181160402 0.01658544504970744 0.01129806292066895 0.9997986181160402 -0.01658544504970744 -0.0003328631328224821 0.9999540640432325 -0.009579092105094415 0.009719797712985413 0.9998397877975792 -0.01503077740206486 -0.9844962349256925 -0.1748435336383345 -0.01403218308020972 0.9844962349256925 0.1748435336383345 0.01403218308020972 -0.005829761127499755 0.3941442088955652 -0.9190301172863082 0.005829761127499755 -0.3941442088955652 0.9190301172863082 -0.9125354682186676 -0.113071856984082 -0.3930569607590082 0.9125354682186676 0.113071856984082 0.3930569607590082 0.008795837783968767 -0.9999350760969271 0.007244089225746932 -0.008795837783968767 0.9999350760969271 -0.007244089225746932 -0.05844106786614663 -0.9982849747213407 -0.00342794869806715 -0.07339287618189742 -0.9972986376699625 -0.002985469374419037 0.07339287618189742 0.9972986376699625 0.002985469374419037 0.05844106786614663 0.9982849747213407 0.00342794869806715 0.001709746850782575 0.1630913484666589 -0.9866094915522722 -0.001709746850782575 -0.1630913484666589 0.9866094915522722 -0.5477059616495917 0.06663800159267526 -0.8340129233514493 0.5477059616495917 -0.06663800159267526 0.8340129233514493 0.07999201948807029 -0.9966969330856842 -0.01401785988699024 -0.07999201948807029 0.9966969330856842 0.01401785988699024 0.01146984438351619 -0.999901694502409 -0.008064986114630322 -0.01146984438351619 0.999901694502409 0.008064986114630322 -0.8175794994995225 -0.1036249520646039 -0.5664147167118089 0.8175794994995225 0.1036249520646039 0.5664147167118089 0.1171617741696312 -0.9928591628594425 -0.02244552069949391 -0.1171617741696312 0.9928591628594425 0.02244552069949391 -0.0005074472560596779 -0.07314127026300465 -0.9973214612558964 0.0005074472560596779 0.07314127026300465 0.9973214612558964 -0.4671844489454682 -0.05409992846637629 -0.8825031945570806 0.4671844489454682 0.05409992846637629 0.8825031945570806 -0.4157906930759787 -0.2893035753226083 -0.8622189634060209 0.4157906930759787 0.2893035753226083 0.8622189634060209 -0.001251635271873887 -0.2989057631075787 -0.9542818127734711 0.001251635271873887 0.2989057631075787 0.9542818127734711 -0.7357190838004971 -0.2286602149856994 -0.6375201454185199 0.7357190838004971 0.2286602149856994 0.6375201454185199 -0.7444348412862022 -0.2640622869040579 -0.6132600392282103 0.7444348412862022 0.2640622869040579 0.6132600392282103 -0.003126673932310979 -0.5245017008971007 -0.851403658475913 0.003126673932310979 0.5245017008971007 0.851403658475913 -0.4536446921904907 -0.4631745362896014 -0.7613644608072456 0.4536446921904907 0.4631745362896014 0.7613644608072456 -0.8074366296485683 -0.3017917233898638 -0.5069199589630861 0.8074366296485683 0.3017917233898638 0.5069199589630861 -0.001292295406336159 -0.6679956481798597 -0.7441640571710996 0.001292295406336159 0.6679956481798597 0.7441640571710996 -0.4413671517616215 -0.6003898332880783 -0.6668786137147805 0.4413671517616215 0.6003898332880783 0.6668786137147805 -0.4526042059574229 -0.6352574959571411 -0.6257773937910457 0.4526042059574229 0.6352574959571411 0.6257773937910457 0.001171496973536925 -0.7300813933283943 -0.683359193038706 -0.001171496973536925 0.7300813933283943 0.683359193038706 -0.4748306978382566 -0.694060433707126 -0.5411246831855952 0.4748306978382566 0.694060433707126 0.5411246831855952 -0.8464327417927822 -0.3623231382338141 -0.3902224456916258 0.8464327417927822 0.3623231382338141 0.3902224456916258 -0.002717372553585746 -0.8075922943265442 -0.5897349421823276 0.002717372553585746 0.8075922943265442 0.5897349421823276 -0.5001653078149472 -0.78536585523471 -0.3647398227364699 0.5001653078149472 0.78536585523471 0.3647398227364699 0.0003509594575061786 -0.9195500935760502 -0.3929726481979843 -0.0003509594575061786 0.9195500935760502 0.3929726481979843 -0.795359980458199 -0.595955913272563 -0.110630244151401 0.795359980458199 0.595955913272563 0.110630244151401 -0.00256579025065002 -0.970557316593617 -0.2408566210985008 0.00256579025065002 0.970557316593617 0.2408566210985008 -0.6770060329921882 -0.7260985289165722 0.120182185024945 0.6770060329921882 0.7260985289165722 -0.120182185024945 -0.5130701491301604 -0.8343894420681041 -0.2013784522654617 0.5130701491301604 0.8343894420681041 0.2013784522654617 -0.5045067427627233 -0.02904912283269602 -0.8629189388173135 -0.3740113601256721 0.08517896410713484 -0.9235042211980302 0.3740113601256721 -0.08517896410713484 0.9235042211980302 0.5045067427627233 0.02904912283269602 0.8629189388173135 -0.8761959573560605 -0.4814021187707525 -0.02307908914855814 0.8761959573560605 0.4814021187707525 0.02307908914855814 -0.004738763320069978 -0.9886901052970992 -0.1498980313740208 0.004738763320069978 0.9886901052970992 0.1498980313740208 -0.8175577526278948 -0.3652868797157938 -0.4451570696119803 0.8175577526278948 0.3652868797157938 0.4451570696119803 -0.8246365967014818 -0.5481839684026157 0.1395307140630971 0.8246365967014818 0.5481839684026157 -0.1395307140630971 -0.4805225420358854 -0.8689360124465977 -0.1185254945941055 0.4805225420358854 0.8689360124465977 0.1185254945941055 -0.0001018243583388035 -0.9999807029784149 0.00621154591027403 0.0001018243583388035 0.9999807029784149 -0.00621154591027403 -0.7326244611747069 -0.6427575554192596 0.223884175054709 0.7326244611747069 0.6427575554192596 -0.223884175054709 -0.3573930893115141 -0.9320420580026236 0.05973091181797268 0.3573930893115141 0.9320420580026236 -0.05973091181797268 0.000312141434426454 -0.9401959467122115 0.3406339448053481 -0.000312141434426454 0.9401959467122115 -0.3406339448053481 -0.5938783159957045 -0.6788810746920075 0.431774283874261 0.5938783159957045 0.6788810746920075 -0.431774283874261 -0.2810885037071276 -0.8836044828356823 0.3744761287403708 0.2810885037071276 0.8836044828356823 -0.3744761287403708 -0.306646385949856 -0.3948509445278647 0.8660604630101439 0.306646385949856 0.3948509445278647 -0.8660604630101439 -0.535498682530136 -0.8308301576049837 0.151533528377606 0.535498682530136 0.8308301576049837 -0.151533528377606 0.0008582238826964657 -0.9269981380297792 0.3750649484303885 -0.0008582238826964657 0.9269981380297792 -0.3750649484303885 -0.1704952431820977 -0.2412252931725145 0.9553751776062177 0.1704952431820977 0.2412252931725145 -0.9553751776062177 -0.5540921946255204 -0.8216202647571059 0.1338730009954866 0.5540921946255204 0.8216202647571059 -0.1338730009954866 -0.5143604385851316 -0.7538249196936183 0.4088781354724427 0.5143604385851316 0.7538249196936183 -0.4088781354724427 -0.1380026630778748 -0.9128747444940201 0.3842069310259667 0.1380026630778748 0.9128747444940201 -0.3842069310259667 -0.435850001315338 -0.4621906220367008 0.772278839056689 0.435850001315338 0.4621906220367008 -0.772278839056689 0.03773339099784692 -0.9621256170329681 -0.2699823850786089 -0.03773339099784692 0.9621256170329681 0.2699823850786089 -0.3481885838874076 -0.2117944700509886 0.913185530166955 0.3481885838874076 0.2117944700509886 -0.913185530166955 -0.01286325317847039 -0.9648904002076516 -0.2623376684824051 0.01286325317847039 0.9648904002076516 0.2623376684824051 -0.1095095532543335 -0.9934846951634816 0.0315565876159114 0.1095095532543335 0.9934846951634816 -0.0315565876159114 0.1087422852010516 -0.9469574157884161 -0.3024016668151454 -0.1087422852010516 0.9469574157884161 0.3024016668151454 0.06106025898700137 -0.8594251928277874 -0.5076021894213622 -0.06106025898700137 0.8594251928277874 0.5076021894213622 2.065922027485135e-016 -0.7503520187156011 -0.6610384618230791 -2.065922027485135e-016 0.7503520187156011 0.6610384618230791 -2.234546919098456e-016 -0.7503520187156002 -0.6610384618230801 -0.006610675482426474 -0.7456954604641577 -0.6662541401093234 0.006610675482426474 0.7456954604641577 0.6662541401093234 2.234546919098456e-016 0.7503520187156002 0.6610384618230801 -0.02829408732694985 -0.7299337508869919 -0.6829320346406237 0.02829408732694985 0.7299337508869919 0.6829320346406237</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"204\" source=\"#ID179\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID177\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID175\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID176\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"212\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 0 2 8 9 3 5 0 10 6 7 11 5 12 13 14 15 16 17 8 2 18 19 3 9 10 20 6 7 21 11 12 22 13 16 23 17 12 14 24 25 15 17 26 8 18 19 9 27 10 28 20 21 29 11 30 22 12 17 23 31 12 24 32 33 25 17 26 18 34 35 19 27 28 36 20 21 37 29 30 38 22 23 39 31 40 26 34 35 27 41 12 32 42 43 33 17 28 44 36 37 45 29 46 38 30 31 39 47 40 34 48 49 35 41 42 32 50 51 33 43 44 52 36 37 53 45 46 54 38 39 55 47 40 48 56 57 49 41 42 50 58 59 51 43 44 60 52 53 61 45 62 54 46 47 55 63 64 56 48 49 57 65 50 66 58 59 67 51 68 69 70 71 72 73 74 62 46 47 63 75 76 56 64 65 57 77 58 66 78 79 67 59 70 69 80 81 72 71 82 69 83 84 72 85 86 76 64 65 77 87 66 88 78 79 89 67 80 69 90 91 72 81 92 69 82 85 72 93 88 76 86 87 77 89 78 88 94 95 89 79 90 69 96 97 72 91 96 69 92 93 72 97 88 86 98 99 87 89 88 100 94 95 101 89 100 88 98 99 89 101 94 100 102 103 101 95 100 98 104 105 99 101 94 102 106 107 103 95 102 100 104 105 101 103 106 102 108 109 103 107 110 102 104 105 103 111 108 102 112 113 103 109 112 102 110 111 103 113 108 112 114 115 113 109 112 110 116 117 111 113 112 118 114 115 119 113 118 112 116 117 113 119 118 120 114 115 121 119 122 118 116 117 119 123 120 124 114 115 125 121 120 118 122 123 119 121 114 124 126 127 125 115 128 124 120 121 125 129 128 120 122 123 121 129 124 130 126 127 131 125 128 132 124 125 133 129 132 130 124 125 131 133 126 130 134 135 131 127 136 130 132 133 131 137 130 138 134 135 139 131 136 140 130 131 141 137 142 143 130 131 144 145 130 140 146 147 141 131 136 148 140 141 149 137 142 130 150 151 131 145 150 130 146 147 131 151 146 140 152 153 141 147 148 154 140 141 155 149 140 154 152 153 155 141 148 156 154 155 157 149 152 154 158 159 155 153 156 160 154 155 161 157 154 160 158 159 161 155 156 162 160 161 163 157 160 164 158 159 165 161 162 166 160 161 167 163 160 168 164 165 169 161 166 170 160 161 171 167 162 172 166 167 173 163 174 168 160 161 169 175 170 176 160 161 177 171 178 170 166 167 171 179 172 180 166 167 181 173 182 178 166 167 179 183 180 182 166 167 183 181 172 184 180 181 185 173 186 182 180 181 183 187 184 188 180 181 189 185 188 190 180 181 191 189 184 192 188 189 193 185 192 194 188 189 195 193 194 196 188 189 197 195 198 199 188 189 200 201 199 202 188 189 203 200</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID177\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID180\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID181\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID185\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"306\">0.5822945237159729 1.93234646320343 -0.1336532384157181 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.5886632204055786 1.934478163719177 -0.148460179567337 0.5886632204055786 1.934478163719177 -0.148460179567337 0.5886632204055786 1.934720396995544 -0.1188463941216469 0.5886632204055786 1.934720396995544 -0.1188463941216469 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.5886632204055786 1.918007493019104 -0.148460179567337 0.5886632204055786 1.918007493019104 -0.148460179567337 0.5822945237159729 1.93234646320343 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1147843822836876 0.62096107006073 1.943698525428772 -0.1147843822836876 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.6060627698898315 1.933767676353455 -0.1592995822429657 0.6060627698898315 1.933767676353455 -0.1592995822429657 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.6060627698898315 1.933767676353455 -0.1080069318413734 0.6060627698898315 1.933767676353455 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.5886632204055786 1.918007493019104 -0.148460179567337 0.6624386310577393 1.923469066619873 -0.1336532384157181 0.6624386310577393 1.923469066619873 -0.1336532384157181 0.5886632204055786 1.918007493019104 -0.148460179567337 0.6060627698898315 1.919373035430908 -0.1592995822429657 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.5822945237159729 1.918007493019104 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1525221467018127 0.62096107006073 1.943698525428772 -0.1525221467018127 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.5886632204055786 1.918007493019104 -0.1188463941216469 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.923469066619873 -0.1632670909166336 0.6624386310577393 1.930925488471985 -0.1632670909166336 0.6624386310577393 1.930925488471985 -0.1632670909166336 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6060627698898315 1.919373035430908 -0.1080069318413734 0.6624386310577393 1.930925488471985 -0.1040394529700279 0.6624386310577393 1.930925488471985 -0.1040394529700279 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.70525062084198 1.934461951255798 -0.1147843822836876 0.70525062084198 1.934461951255798 -0.1147843822836876 0.738028347492218 1.888520956039429 -0.148460179567337 0.738028347492218 1.888520956039429 -0.148460179567337 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1592995822429657 0.7206282615661621 1.920978307723999 -0.1592995822429657 0.7206282615661621 1.920978307723999 -0.1592995822429657 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.6624386310577393 1.923469066619873 -0.1040395125746727 0.7206282615661621 1.920978307723999 -0.1080069318413734 0.7206282615661621 1.920978307723999 -0.1080069318413734 0.744395911693573 1.885544061660767 -0.1336532384157181 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.888520956039429 -0.148460179567337 0.738028347492218 1.888520956039429 -0.148460179567337 0.70525062084198 1.934461951255798 -0.1525222510099411 0.70525062084198 1.934461951255798 -0.1525222510099411 0.738028347492218 1.888520956039429 -0.1188463941216469 0.738028347492218 1.888520956039429 -0.1188463941216469 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7206282615661621 1.898195147514343 -0.1080069318413734 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.920978307723999 -0.148460179567337 0.738028347492218 1.920978307723999 -0.148460179567337 0.744395911693573 1.885544061660767 -0.1336532384157181 0.738028347492218 1.888520956039429 -0.1188463941216469 0.738028347492218 1.920978307723999 -0.1188463941216469 0.738028347492218 1.920978307723999 -0.1188463941216469 0.738028347492218 1.888520956039429 -0.1188463941216469 0.744395911693573 1.920978307723999 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181 0.744395911693573 1.920978307723999 -0.1336532384157181</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"102\" source=\"#ID185\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID182\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID186\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"306\">-0.4525870160939107 0.8917055352646315 0.005121644426094273 -0.268503656107856 0.9630575363932906 0.02063899834778602 -0.1975743797487748 0.9600174138981226 0.1983202699656487 0.1975743797487748 -0.9600174138981226 -0.1983202699656487 0.268503656107856 -0.9630575363932906 -0.02063899834778602 0.4525870160939107 -0.8917055352646315 -0.005121644426094273 -0.6836914411438895 0.4960175374375364 -0.5352874142561113 0.6836914411438895 -0.4960175374375364 0.5352874142561113 -0.6826789355655409 0.5175040650256956 0.5158866286472065 0.6826789355655409 -0.5175040650256956 -0.5158866286472065 -0.9999982786554844 -2.453531840315205e-017 0.00185544767322905 -0.7628108367871563 -5.107898362146584e-017 -0.6466217033784732 0.7628108367871563 5.107898362146584e-017 0.6466217033784732 0.9999982786554844 2.453531840315205e-017 -0.00185544767322905 -0.188685970994036 0.9568090513440232 -0.2211651953092718 0.188685970994036 -0.9568090513440232 0.2211651953092718 -0.9999999999992952 3.715457857115628e-018 1.187155444384655e-006 0.9999999999992952 -3.715457857115628e-018 -1.187155444384655e-006 -0.04316329546441134 0.9022464711878826 0.4290550490947117 0.04316329546441134 -0.9022464711878826 -0.4290550490947117 -0.3190221129661848 -5.169595915164021e-017 -0.9477472719235812 0.3190221129661848 5.169595915164021e-017 0.9477472719235812 -0.3015180340726529 0.4026939942020862 -0.8642478939300533 0.3015180340726529 -0.4026939942020862 0.8642478939300533 -0.7628108229850096 -4.387034181854362e-018 0.6466217196606778 0.7628108229850096 4.387034181854362e-018 -0.6466217196606778 -0.2966889948970395 0.3930087617907217 0.8703561072702991 0.2966889948970395 -0.3930087617907217 -0.8703561072702991 0.07444731930745059 -0.9972153159559796 -0.004382952286991633 0.07003499471041809 -0.9973648724161474 0.01893174017975829 -0.1719345689301247 -0.9851083717067944 1.534270210203556e-009 0.1719345689301247 0.9851083717067944 -1.534270210203556e-009 -0.07003499471041809 0.9973648724161474 -0.01893174017975829 -0.07444731930745059 0.9972153159559796 0.004382952286991633 0.06798922594315633 -0.9976860554080358 -6.586151547304128e-008 -0.06798922594315633 0.9976860554080358 6.586151547304128e-008 -0.05077244356092967 0.9044995626227409 -0.4234414955931014 0.05077244356092967 -0.9044995626227409 0.4234414955931014 0.0700349909810802 -0.9973648699915734 -0.01893188170710432 -0.0700349909810802 0.9973648699915734 0.01893188170710432 0.09074013728241166 0.8894532731297745 0.447927563792071 -0.09074013728241166 -0.8894532731297745 -0.447927563792071 -0.1684282001120586 -0.9857139247301988 3.261984415863724e-017 0.1684282001120586 0.9857139247301988 -3.261984415863724e-017 0.005344218692808919 4.599723035563907e-016 -0.9999857195613163 -0.005344218692808919 -4.599723035563907e-016 0.9999857195613163 0.03778722120653656 0.3316848252043232 -0.9426331750170188 -0.03778722120653656 -0.3316848252043232 0.9426331750170188 0.07444731259877206 -0.9972153164940292 0.004382943820520862 -0.07444731259877206 0.9972153164940292 -0.004382943820520862 -0.3190230296533958 -3.387307016387933e-007 0.947746963356071 0.3190230296533958 3.387307016387933e-007 -0.947746963356071 0.03242818957297756 0.331514159442729 0.9428927694123016 -0.03242818957297756 -0.331514159442729 -0.9428927694123016 -0.428391047419486 -0.8995381360362913 -0.08551170859707016 0.428391047419486 0.8995381360362913 0.08551170859707016 0.096620987895277 0.8889263129942582 -0.4477436708258138 -0.096620987895277 -0.8889263129942582 0.4477436708258138 -0.1684281857940404 -0.985713927176708 7.297025297092771e-018 0.1684281857940404 0.985713927176708 -7.297025297092771e-018 0.2484753200447397 0.8848239865712221 0.3941402391495622 -0.2484753200447397 -0.8848239865712221 -0.3941402391495622 -0.4241534822457019 -0.9051263251428462 -0.02898549692952567 0.4241534822457019 0.9051263251428462 0.02898549692952567 0.3702863131757861 2.794849320865508e-017 -0.9289176746486653 -0.3702863131757861 -2.794849320865508e-017 0.9289176746486653 0.3291556278174122 0.3380571823925383 -0.8816881047790899 -0.3291556278174122 -0.3380571823925383 0.8816881047790899 -0.4283909470720873 -0.8995381996175712 0.08551154246918034 0.4283909470720873 0.8995381996175712 -0.08551154246918034 0.00534420647697881 -7.185503873166344e-006 0.9999857196007852 -0.00534420647697881 7.185503873166344e-006 -0.9999857196007852 0.3421972052650621 0.3781976168594891 0.860155587850584 -0.3421972052650621 -0.3781976168594891 -0.860155587850584 -0.4199577750881749 -0.9075436447592974 3.995179379812722e-009 0.4199577750881749 0.9075436447592974 -3.995179379812722e-009 0.8007728670257135 -7.155639727126521e-018 -0.598968125558797 -0.8007728670257135 7.155639727126521e-018 0.598968125558797 0.2265426645478447 0.8870897369980587 -0.4021818241197354 -0.2265426645478447 -0.8870897369980587 0.4021818241197354 -0.4241534419131434 -0.9051263461530197 0.02898543104591447 0.4241534419131434 0.9051263461530197 -0.02898543104591447 0.370287246724113 2.791847602566496e-017 0.9289173025159322 -0.370287246724113 -2.791847602566496e-017 -0.9289173025159322 0.3251771624720898 0.9178173352138632 0.2277523922761804 -0.3251771624720898 -0.9178173352138632 -0.2277523922761804 0.9999999999994651 -1.021213629580521e-017 1.034288983214875e-006 0.6891861070879743 0.4665571033273914 -0.5543888338807671 -0.6891861070879743 -0.4665571033273914 0.5543888338807671 -0.9999999999994651 1.021213629580521e-017 -1.034288983214875e-006 0.8007725555961954 1.082289136176546e-017 0.5989685419151311 0.6796603680121492 0.4735256808583966 0.5602099728862223 -0.6796603680121492 -0.4735256808583966 -0.5602099728862223 -0.8007725555961954 -1.082289136176546e-017 -0.5989685419151311 0.9999999999992956 -9.014564059030779e-018 1.187010242994903e-006 -0.9999999999992956 9.014564059030779e-018 -1.187010242994903e-006 0.313686535197523 0.9395316905111851 -0.1374080061749221 -0.313686535197523 -0.9395316905111851 0.1374080061749221 0.3230550412313637 0.9463801774828378 -1.598246447941602e-006 -0.3230550412313637 -0.9463801774828378 1.598246447941602e-006 0.4168035059478051 0.908996610240611 -8.345898481386191e-007 -0.4168035059478051 -0.908996610240611 8.345898481386191e-007</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"102\" source=\"#ID186\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID184\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID187\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"352\">-14.26092285976243 -3.267336504556862 -14.50122065856141 -3.267336504556862 -14.54251926898909 -3.17988706781201 -14.26092285976243 -0.1936368490969575 -14.32712549384918 -0.3104567334225453 -14.50122065856142 -0.1936368490969575 -13.28435324929342 -1.428885536193822 -13.5667973286864 -1.343144519761906 -13.35215909967177 -1.312346726885018 -19.3234646320343 -2.775774186125142 -19.18007493019104 -2.902572994601767 -19.34478163719177 -2.902572994601767 -13.11902751273521 0.8971882525866644 -13.33458909656133 0.9284211431238822 -13.29162681686096 1.015373793926696 -19.18007493019104 0.8440785969051348 -19.3234646320343 0.8440785969051348 -19.34720396995544 0.9708767054351376 -11.92267352558833 -6.826298116710207 -12.13631873394668 -6.86110752723275 -12.25721177027786 -6.790163260846058 -19.34478163719177 -4.548037813701737 -19.18007493019104 -4.548037813701737 -19.19373035430908 -4.709301980786576 -19.18007493019104 -2.775774186125141 -19.18007493019104 -2.902572994601766 -19.3234646320343 -2.775774186125141 -11.91381290526125 5.517748780580218 -12.07582188985228 5.418781031966613 -12.12824349977981 5.553476189529911 -19.18007493019104 0.9708767054351369 -19.18007493019104 0.8440785969051341 -19.34720396995544 0.9708767054351369 -12.12265048181766 -7.572720107513859 -12.4568996842455 -7.534966229714509 -12.2830045508424 -7.471974036191307 7.481279052890341 -1.332361574105782 7.306749509412366 -1.247090367960376 8.046522017319962 -1.130607405835401 -19.33767676353455 -4.709301980786575 -19.34478163719177 -4.548037813701736 -19.19373035430908 -4.709301980786575 7.916809577349874 -0.6200375446511065 7.177049311337771 -0.7365686098342905 7.113509712554342 -0.6200375446511065 -12.60728008267938 5.152993841333039 -12.78200409385244 5.214550165207798 -12.66254653544607 5.286983389437513 7.916809577349874 -1.481877666592482 7.113509712554342 -1.481877666592482 7.177049311337772 -1.365347363029752 -19.18007493019104 3.436148046595554 -19.34720396995544 3.436148046595554 -19.33767676353455 3.597412461610878 -6.637237714247711 -12.74746105825016 -6.789128990141371 -12.83913569252778 -7.202867050126867 -12.79965041751035 8.000807655241598 -1.284367781877518 7.435563000784418 -1.253156713644663 8.000807655241598 -1.051405475536982 -19.33767676353454 -4.84390537779191 -19.19373035430908 -4.84390537779191 -19.23469066619873 -5.288492384512499 -7.089418961990558 11.42791153601595 -6.936062752823792 11.33775889249149 -7.497939059796469 11.28498356280143 8.046521833787153 -0.9721732080846033 7.306749325871717 -0.855691007925414 7.481278869343953 -0.7704193328896771 -19.19373035430908 3.597412461610879 -19.18007493019104 3.436148046595555 -19.33767676353455 3.597412461610879 -7.369825158474165 -12.2661650838376 -6.807597071843823 -12.3165685238239 -7.373684867622481 -12.36558529324536 -0.9523345474047307 -1.253156713644663 -1.586747984026279 -1.284367781877517 -1.586747984026279 -1.051405475536982 -19.30925488471985 -5.288492384512495 -19.33767676353455 -4.843905377791907 -19.23469066619873 -5.288492384512495 -7.026502570918128 11.14659193631369 -6.612407509575389 11.18368896840311 -7.024437646714015 11.04713849317582 7.435563000784419 -0.8496545304854709 8.000807655241598 -0.8184441655874251 -19.19373035430908 4.696283635055127 -19.33767676353455 4.696283635055127 -19.30925488471985 5.140870625317183 -2.014115649206309 -12.93522160548694 -1.991314094578658 -13.03305745380377 -2.422679319116055 -13.06955143368769 -1.596487895227738 -2.789542415683737 -1.795261294877364 -2.875262727568388 -2.429125493778011 -2.672445961980781 19.30925488471977 5.111744556259069 19.23469066619865 5.111744556259068 18.98195147514334 5.570565771945749 -1.575875569072168 11.70481331340891 -1.600637823938743 11.60727270824166 -2.188957930681452 11.65672342128608 -0.9523345474047285 -0.8496545304854711 -1.586747984026277 -1.051405475536982 -1.586747984026277 -0.8184441655874253 -19.23393808117686 5.142587001218538 -19.19304180662768 4.697996395662434 -19.30850229921694 5.142593680539108 -1.447328158709876 -13.32921368835843 -1.852035486588968 -13.47058325486161 -2.03526438040989 -13.38141326564552 -1.162771101234705 -1.081029775445771 -1.233061224869425 -1.197511247511588 -2.0658382000911 -1.081029775445771 19.20978307723999 4.149075244325578 18.98195147514343 4.149075244325578 18.88520956039429 4.310342993249799 19.20978307723999 5.570565771945566 19.30925488471985 5.111744556258882 18.98195147514343 5.570565771945566 -2.211275104051926 12.3639478654558 -1.780305455998344 12.32466851538065 -2.392882900506015 12.27274921558506 -1.596484536613035 0.6977740394742718 -2.429122137695238 0.5806783548559564 -1.795257934409154 0.7834948204452205 18.98195147514343 -5.713607677473338 19.23469066619873 -5.254786509630095 19.20978307723999 -5.713607677473338 19.23546720119447 -5.25301637823222 19.31003141920311 -5.253009485083976 19.21062783605071 -5.711839834884016 4.322774348413157 -7.633655863766362 4.195476574851193 -7.703165834573777 4.120827068660837 -7.574583915238395 -1.162771101234708 -1.021777341054808 -2.065838200091101 -1.021777341054808 -1.233061224869426 -0.9052966309337139 18.88520956039429 1.220751038278707 18.85544061660767 1.347546326955163 19.20978307723999 1.220751038278707 19.20978307723999 4.310342993249799 2.563221074984186 8.536311706901527 2.364832289113026 8.470198192077113 2.21004758401401 8.575937602597728 18.88520956039429 -5.422194446223683 18.98195147514343 -5.260926449374481 19.20978307723999 -5.422194446223683 18.98195147514343 -5.26092644937448 19.20978307723999 -5.26092644937448 19.20978307723999 -5.422194446223682 0.1146304451731955 -8.842369097665188 -0.1073383621633756 -8.806969540874464 0.05541078008391931 -8.708909056030961 18.85544061660767 -3.279318302324934 18.88520956039429 -3.152523713614531 19.20978307723999 -3.279318302324934 19.20978307723999 1.220751038278706 18.85544061660767 1.347546326955161 19.20978307723999 1.347546326955161 1.414737226473141 2.681464436820052 1.060449668087176 2.714365251456016 1.283321707504077 2.746058902699369 19.20978307723999 -3.279318302324935 19.20978307723999 -3.152523713614531 1.520888431116687 -3.802192102175359 1.478300328370118 -3.889256168860493 1.29792042368622 -3.770919075514688 1.520936551287351 1.732151967067352 1.297968527428662 1.700878897507549 1.240087476461425 1.819216476633805 1.47847632952945 -3.889095433125303 1.24021531170752 -3.889095433125303 1.298096197691254 -3.770758554053941 1.47847632952945 1.819465532770021 1.521064265145528 1.732400780884212 1.24021531170752 1.819465532770021</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"176\" source=\"#ID187\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID183\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID181\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID182\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"60\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 0 3 6 4 1 5 0 6 2 7 8 8 10 9 11 10 6 11 6 12 14 13 1 14 16 15 10 16 8 17 8 18 2 19 18 20 6 21 11 22 20 23 16 24 11 25 10 26 6 27 22 28 14 29 24 30 16 31 8 32 8 33 18 34 26 35 28 36 29 37 30 38 22 39 6 40 20 41 30 42 29 43 34 44 22 45 36 46 14 47 30 48 34 49 38 50 24 51 8 52 26 53 26 54 18 55 40 56 42 57 28 58 30 59 22 60 20 61 44 62 36 63 22 64 46 65 30 66 38 67 48 68 50 69 24 70 26 71 52 72 26 73 40 74 54 75 42 76 30 77 46 78 22 79 44 80 56 81 36 82 46 83 30 59 48 84 58 85 50 86 26 87 52 88 52 89 40 90 60 91 62 92 54 93 30 94 46 95 44 96 64 97 56 98 46 99 66 100 68 101 30 102 58 103 70 104 50 105 52 106 52 107 60 108 72 109 74 110 62 111 30 112 66 113 64 114 76 115 66 116 46 117 64 118 78 119 56 120 66 121 80 122 30 123 68 124 82 125 70 126 72 127 70 128 52 129 72 130 60 131 84 132 72 133 74 134 30 135 80 136 76 137 86 138 87 139 87 140 66 113 76 115 78 141 66 142 87 143 90 144 82 145 91 146 82 147 72 148 91 149 84 150 91 151 72 152 86 153 90 154 94 155 87 156 86 157 94 158 78 159 87 160 96 161 94 162 90 154 91 163 84 164 98 165 91 166 96 167 87 168 100 169 98 170 100 171 91 172 98 173 96 174 100 175</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID183\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID184\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"60\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 4 7 5 9 3 5 7 12 13 4 15 7 9 13 17 19 3 9 21 12 7 13 12 17 15 23 7 9 17 25 27 19 9 31 32 33 21 7 23 35 32 31 15 37 23 39 35 31 27 9 25 41 19 27 31 33 43 45 21 23 47 23 37 49 39 31 27 25 51 41 27 53 31 43 55 45 23 47 47 37 57 59 49 31 53 27 51 61 41 53 31 55 63 65 45 47 67 47 57 59 31 69 53 51 71 73 61 53 31 63 75 77 65 67 65 47 67 67 57 79 69 31 81 73 71 83 73 53 71 73 85 61 81 31 75 88 89 77 77 67 88 88 67 79 92 83 93 92 73 83 73 92 85 95 93 89 95 89 88 97 88 79 92 93 95 92 99 85 101 88 97 92 101 99 101 97 99</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID183\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID188\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID191\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID194\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">0.6034737825393677 1.943698525428772 -0.1336532384157181 0.6624386310577393 1.940856695175171 -0.1336532384157181 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6081594824790955 1.943698525428772 -0.1227594092488289 0.6624386310577393 1.940856695175171 -0.1336532384157181 0.6034737825393677 1.943698525428772 -0.1336532384157181 0.62096107006073 1.943698525428772 -0.1147843822836876 0.62096107006073 1.943698525428772 -0.1147843822836876 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6081594824790955 1.943698525428772 -0.1445471495389938 0.6624386310577393 1.940856695175171 -0.111865259706974 0.6624386310577393 1.940856695175171 -0.111865259706974 0.62096107006073 1.943698525428772 -0.1525221467018127 0.62096107006073 1.943698525428772 -0.1525221467018127 0.70525062084198 1.934461951255798 -0.1147843822836876 0.70525062084198 1.934461951255798 -0.1147843822836876 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.6624386310577393 1.940856695175171 -0.1554412543773651 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.7180529236793518 1.930909156799316 -0.1227594092488289 0.70525062084198 1.934461951255798 -0.1525222510099411 0.70525062084198 1.934461951255798 -0.1525222510099411 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7227380871772766 1.930909156799316 -0.1336532384157181 0.7180529236793518 1.930909156799316 -0.1445471495389938 0.7180529236793518 1.930909156799316 -0.1445471495389938</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID194\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID192\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID195\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">-0.268503656107856 0.9630575363932906 0.02063899834778602 0.1092906628252984 0.9940098344680534 -7.69523253476409e-009 -0.1975743797487748 0.9600174138981226 0.1983202699656487 0.1975743797487748 -0.9600174138981226 -0.1983202699656487 -0.1092906628252984 -0.9940098344680534 7.69523253476409e-009 0.268503656107856 -0.9630575363932906 -0.02063899834778602 -0.04316329546441134 0.9022464711878826 0.4290550490947117 0.04316329546441134 -0.9022464711878826 -0.4290550490947117 -0.188685970994036 0.9568090513440232 -0.2211651953092718 0.188685970994036 -0.9568090513440232 0.2211651953092718 0.09074013728241166 0.8894532731297745 0.447927563792071 -0.09074013728241166 -0.8894532731297745 -0.447927563792071 -0.05077244356092967 0.9044995626227409 -0.4234414955931014 0.05077244356092967 -0.9044995626227409 0.4234414955931014 0.2484753200447397 0.8848239865712221 0.3941402391495622 -0.2484753200447397 -0.8848239865712221 -0.3941402391495622 0.096620987895277 0.8889263129942582 -0.4477436708258138 -0.096620987895277 -0.8889263129942582 0.4477436708258138 0.3251771624720898 0.9178173352138632 0.2277523922761804 -0.3251771624720898 -0.9178173352138632 -0.2277523922761804 0.2265426645478447 0.8870897369980587 -0.4021818241197354 -0.2265426645478447 -0.8870897369980587 0.4021818241197354 0.3230550412313637 0.9463801774828378 -1.598246447941602e-006 -0.3230550412313637 -0.9463801774828378 1.598246447941602e-006 0.313686535197523 0.9395316905111851 -0.1374080061749221 -0.313686535197523 -0.9395316905111851 0.1374080061749221</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID195\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID193\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID191\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID192\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 2 1 6 0 8 1 6 1 10 8 12 1 1 14 10 12 16 1 1 18 14 16 20 1 1 22 18 20 24 1 1 24 22</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID193\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 7 4 3 4 9 5 11 4 7 4 13 9 11 15 4 4 17 13 15 19 4 4 21 17 19 23 4 4 25 21 23 25 4</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID193\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID196\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID197\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID206\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">0.6591432690620422 1.832582235336304 0.1425205767154694 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6581289172172546 1.925639629364014 0.2436227351427078 0.6072992086410523 1.926056265830994 0.2301047742366791 0.6591432690620422 1.832582235336304 0.1425205767154694 0.5743500590324402 1.926056265830994 0.191592201590538 0.5743500590324402 1.926056265830994 0.191592201590538 0.7024804353713989 1.922352433204651 0.230619490146637 0.7024804353713989 1.922352433204651 0.230619490146637 0.5609275102615356 1.928828001022339 0.1449400782585144 0.5609275102615356 1.928828001022339 0.1449400782585144 0.7360828518867493 1.918766617774963 0.2054454237222672 0.7360828518867493 1.918766617774963 0.2054454237222672 0.5715680122375488 1.928792595863342 0.09871716052293778 0.5715680122375488 1.928792595863342 0.09871716052293778 0.7543437480926514 1.917996168136597 0.1455812603235245 0.7543437480926514 1.917996168136597 0.1455812603235245 0.6076075434684753 1.926022410392761 0.05912294983863831 0.6076075434684753 1.926022410392761 0.05912294983863831 0.7359241247177124 1.920795679092407 0.09299799799919128 0.7359241247177124 1.920795679092407 0.09299799799919128 0.6581888198852539 1.925890922546387 0.04520654678344727 0.6581888198852539 1.925890922546387 0.04520654678344727 0.7044316530227661 1.922605037689209 0.06054756790399551 0.7044316530227661 1.922605037689209 0.06054756790399551</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID206\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID198\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID207\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">0.07889354688882974 -0.9052810488935695 -0.4174230836614798 -0.3613255746133597 -0.7363735528321385 0.5720120801344139 -0.02555645774528356 -0.7356610195326022 0.6768675880907327 0.02555645774528356 0.7356610195326022 -0.6768675880907327 0.3613255746133597 0.7363735528321385 -0.5720120801344139 -0.07889354688882974 0.9052810488935695 0.4174230836614798 -0.617978362244385 -0.7228716127692982 0.3091267947785527 0.617978362244385 0.7228716127692982 -0.3091267947785527 0.245498465440001 -0.7367781301705658 0.6299908653059739 -0.245498465440001 0.7367781301705658 -0.6299908653059739 -0.6981146516868598 -0.7101009198138653 -0.09161122627515073 0.6981146516868598 0.7101009198138653 0.09161122627515073 0.4229439574322713 -0.7494576529893595 0.5093443189505603 -0.4229439574322713 0.7494576529893595 -0.5093443189505603 0.6309107859638151 0.7132731859136506 0.3052751912801168 -0.6309107859638151 -0.7132731859136506 -0.3052751912801168 -0.668049406363227 0.7436903212606503 0.02519318798744152 0.668049406363227 -0.7436903212606503 -0.02519318798744152 0.3801733720381798 0.7237166802557863 0.5759360849197276 -0.3801733720381798 -0.7237166802557863 -0.5759360849197276 -0.5707129137868127 0.7192086630024464 0.3962646452803979 0.5707129137868127 -0.7192086630024464 -0.3962646452803979 0.0133747525654576 0.7218060729221357 0.6919661184527297 -0.0133747525654576 -0.7218060729221357 -0.6919661184527297 -0.327398087392843 0.7209079855479794 0.6108208974361165 0.327398087392843 -0.7209079855479794 -0.6108208974361165</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID207\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID205\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID208\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"72\">1.670397217954203 12.03873704482643 1.176526164090342 11.89637820790931 1.90788936543112 10.97402130969709 -6.542116642659369 8.418421955571644 -6.807315665933135 8.078643921026838 -5.570119367677798 7.645708411753829 10.16757882423856 10.72667158569806 9.998266154211549 9.653925714034958 10.59645423422299 10.58870047207641 -9.328879077613392 3.677675743203012 -9.444353010918027 3.306112027999903 -8.069237158150896 3.286841758651705 14.64976446746045 7.966015200863561 13.87068795816023 7.117704896956166 14.93720437652424 7.723612438930211 9.467765211356864 -1.453302206882614 8.168684772799315 -1.104275795865729 9.543800436155987 -1.084997163890837 -17.0972853500271 2.619394381338049 -18.3762790715688 2.644007760555567 -18.24485641557415 3.125422876902387 7.343712022776949 -5.939154573314194 7.042372400553623 -6.287974280806098 6.061597792196416 -5.55325232752239 -17.204848032999 -0.8227041725542247 -18.36637267839059 -1.22674786200653 -18.48383053894326 -0.7977327367101881 -0.9267127151734594 -10.43011461864739 -1.415903210216094 -10.57918238555594 -1.664725312902166 -9.536787660905636 -16.67259260139242 -4.36693626276425 -16.92224900716855 -4.069997286398384 -15.7903887940536 -3.616838921844481 -11.0216266886206 -8.922337946536512 -11.46257013647479 -8.757281792566458 -10.80642236134923 -7.875322928325505</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"36\" source=\"#ID208\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID199\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID197\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID198\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 0 6 1 8 0 2 0 10 6 12 0 8 10 0 15 12 17 0 0 19 15 17 21 0 0 23 19 0 21 25 0 25 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID199\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 0 4 1 5 2 4 3 7 4 5 5 3 6 5 7 9 8 7 9 11 10 5 11 9 12 5 13 13 14 14 15 5 16 11 17 5 18 16 19 13 20 14 21 18 22 5 23 5 24 20 25 16 26 18 27 22 28 5 29 24 30 20 31 5 32 22 33 24 34 5 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID199\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID205\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID211\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID212\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID215\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"234\">-0.1970338225364685 -1.931188106536865 0.1519460678100586 -0.1967810839414597 -1.975753784179688 0.06137931346893311 -0.479192852973938 -1.931188106536865 0.1536669880151749 -0.479192852973938 -1.931188106536865 0.1536669880151749 -0.1967810839414597 -1.975753784179688 0.06137931346893311 -0.1970338225364685 -1.931188106536865 0.1519460678100586 -0.4238884449005127 -1.952622652053833 0.111620157957077 -0.4238884449005127 -1.952622652053833 0.111620157957077 0.003534962190315127 -1.975753784179688 0.06137931346893311 0.003534962190315127 -1.975753784179688 0.06137931346893311 -0.5108060836791992 -1.828675627708435 0.2087062001228333 -0.5108060836791992 -1.828675627708435 0.2087062001228333 -0.3540624976158142 -1.968288421630859 0.07805071771144867 -0.3540624976158142 -1.968288421630859 0.07805071771144867 0.003534962190315127 -1.931188106536865 0.1527040004730225 0.003534962190315127 -1.931188106536865 0.1527040004730225 -0.1976474672555924 -1.828675627708435 0.2088393121957779 -0.1976474672555924 -1.828675627708435 0.2088393121957779 0.2041033208370209 -1.931188106536865 0.1519460678100586 0.2041033208370209 -1.931188106536865 0.1519460678100586 -0.5159977078437805 -1.740602254867554 0.2356471866369247 -0.5159977078437805 -1.740602254867554 0.2356471866369247 0.2038507014513016 -1.975753784179688 0.06137931346893311 0.2038507014513016 -1.975753784179688 0.06137931346893311 0.2047170847654343 -1.828675627708435 0.2088393121957779 0.2047170847654343 -1.828675627708435 0.2088393121957779 0.003534962190315127 -1.828675627708435 0.2087676078081131 0.003534962190315127 -1.828675627708435 0.2087676078081131 -0.1991988271474838 -1.740602254867554 0.2356471866369247 -0.1991988271474838 -1.740602254867554 0.2356471866369247 0.4862626791000366 -1.931188106536865 0.1536669880151749 0.4862626791000366 -1.931188106536865 0.1536669880151749 0.5178753733634949 -1.828675627708435 0.2087062001228333 0.5178753733634949 -1.828675627708435 0.2087062001228333 -0.5156968235969544 -1.602517247200012 0.2691195011138916 -0.5156968235969544 -1.602517247200012 0.2691195011138916 0.4309577345848084 -1.952622652053833 0.111620157957077 0.4309577345848084 -1.952622652053833 0.111620157957077 0.5230674743652344 -1.740602254867554 0.2356471866369247 0.5230674743652344 -1.740602254867554 0.2356471866369247 0.2062683254480362 -1.740602254867554 0.2356471866369247 0.2062683254480362 -1.740602254867554 0.2356471866369247 0.003534962190315127 -1.742378234863281 0.2356471866369247 0.003534962190315127 -1.742378234863281 0.2356471866369247 -0.2001994103193283 -1.602517247200012 0.2691195011138916 -0.2001994103193283 -1.602517247200012 0.2691195011138916 0.3611322641372681 -1.968288421630859 0.07805071771144867 0.3611322641372681 -1.968288421630859 0.07805071771144867 -0.5085935592651367 -1.473212003707886 0.2946602702140808 -0.5085935592651367 -1.473212003707886 0.2946602702140808 0.5227663516998291 -1.602517247200012 0.2691195011138916 0.5227663516998291 -1.602517247200012 0.2691195011138916 0.2072690576314926 -1.602517247200012 0.2691195011138916 0.2072690576314926 -1.602517247200012 0.2691195011138916 0.003534962190315127 -1.602517247200012 0.2691195011138916 0.003534962190315127 -1.602517247200012 0.2691195011138916 -0.2037112414836884 -1.473212003707886 0.2946602702140808 -0.2037112414836884 -1.473212003707886 0.2946602702140808 -0.4516721367835999 -1.365588307380676 0.3139455020427704 -0.4516721367835999 -1.365588307380676 0.3139455020427704 0.5156629085540772 -1.473212003707886 0.2946602702140808 0.5156629085540772 -1.473212003707886 0.2946602702140808 0.2107809633016586 -1.473212003707886 0.2946602702140808 0.2107809633016586 -1.473212003707886 0.2946602702140808 0.003534962190315127 -1.473212003707886 0.2946602702140808 0.003534962190315127 -1.473212003707886 0.2946602702140808 -0.3896275460720062 -1.332627534866333 0.3204693794250488 -0.3896275460720062 -1.332627534866333 0.3204693794250488 -0.2025128901004791 -1.305356502532959 0.3259882032871246 -0.2025128901004791 -1.305356502532959 0.3259882032871246 0.4587418138980866 -1.365588307380676 0.3139455020427704 0.4587418138980866 -1.365588307380676 0.3139455020427704 0.2095824927091599 -1.305356502532959 0.3259882032871246 0.2095824927091599 -1.305356502532959 0.3259882032871246 0.003534962190315127 -1.301196455955505 0.3259882032871246 0.003534962190315127 -1.301196455955505 0.3259882032871246 0.3966972529888153 -1.332627534866333 0.3204693794250488 0.3966972529888153 -1.332627534866333 0.3204693794250488</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"78\" source=\"#ID215\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID213\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID216\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"234\">-4.515878047999203e-005 -0.7243893371074355 0.6893910981770325 0.00167219103053643 -0.897063476184309 0.4418985443212967 0.006410489730464489 -0.6094093748595211 0.792829817460685 -0.006410489730464489 0.6094093748595211 -0.792829817460685 -0.00167219103053643 0.897063476184309 -0.4418985443212967 4.515878047999203e-005 0.7243893371074355 -0.6893910981770325 0.01264943619488881 -0.8853302774953902 0.4647905888826568 -0.01264943619488881 0.8853302774953902 -0.4647905888826568 7.878145810645445e-010 -0.8982732127961225 0.4394374075712401 -7.878145810645445e-010 0.8982732127961225 -0.4394374075712401 0.001474960385020964 -0.375806674823649 0.9266969125069181 -0.001474960385020964 0.375806674823649 -0.9266969125069181 0.002320778656645531 -0.9043218214667207 0.4268450037256373 -0.002320778656645531 0.9043218214667207 -0.4268450037256373 1.857749683900308e-009 -0.7236993566282646 0.6901153825381927 -1.857749683900308e-009 0.7236993566282646 -0.6901153825381927 -0.0005486435031754847 -0.3899735549035239 0.9208258931341008 0.0005486435031754847 0.3899735549035239 -0.9208258931341008 4.516323083206616e-005 -0.7243893393134647 0.6893910958587183 -4.516323083206616e-005 0.7243893393134647 -0.6893910958587183 -0.0001626197986828542 -0.2635487516562606 0.9646460641371153 0.0001626197986828542 0.2635487516562606 -0.9646460641371153 -0.001672191344845518 -0.8970634771177262 0.4418985424252507 0.001672191344845518 0.8970634771177262 -0.4418985424252507 0.0005486438164148678 -0.3899735550538463 0.9208258930702521 -0.0005486438164148678 0.3899735550538463 -0.9208258930702521 4.740422479309856e-010 -0.3897250116678094 0.9209312760898751 -4.740422479309856e-010 0.3897250116678094 -0.9209312760898751 -0.0006334395315461648 -0.2638390090469637 0.964566522360939 0.0006334395315461648 0.2638390090469637 -0.964566522360939 -0.006410483636061917 -0.6094089467559926 0.7928301465719526 0.006410483636061917 0.6094089467559926 -0.7928301465719526 -0.001474960054633009 -0.3758066845522592 0.9266969085621664 0.001474960054633009 0.3758066845522592 -0.9266969085621664 -1.421866300011938e-018 -0.2151078777409298 0.9765902932825993 1.421866300011938e-018 0.2151078777409298 -0.9765902932825993 -0.01264950172687415 -0.8853301863937345 0.464790760629014 0.01264950172687415 0.8853301863937345 -0.464790760629014 0.0001626196653223157 -0.2635487189581836 0.9646460730705043 -0.0001626196653223157 0.2635487189581836 -0.9646460730705043 0.0006334415469292542 -0.2638390102706938 0.9645665220248874 -0.0006334415469292542 0.2638390102706938 -0.9645665220248874 2.009365864777678e-009 -0.2659351138115117 0.9639909310994883 -2.009365864777678e-009 0.2659351138115117 -0.9639909310994883 -0.0003118220590012659 -0.2144534401416348 0.9767341627988764 0.0003118220590012659 0.2144534401416348 -0.9767341627988764 -0.002320771401198793 -0.9043218400706571 0.4268449643504352 0.002320771401198793 0.9043218400706571 -0.4268449643504352 -1.908724997150857e-018 -0.1867975922323924 0.9823984219939387 1.908724997150857e-018 0.1867975922323924 -0.9823984219939387 -3.846534772188975e-018 -0.2151078982051234 0.9765902887750698 3.846534772188975e-018 0.2151078982051234 -0.9765902887750698 0.0003118221621229709 -0.2144534401719119 0.9767341627921956 -0.0003118221621229709 0.2144534401719119 -0.9767341627921956 -3.415587396278465e-018 -0.2133083393301314 0.9769849294498977 3.415587396278465e-018 0.2133083393301314 -0.9769849294498977 -0.0004993295652226545 -0.188260279239131 0.9821190446838864 0.0004993295652226545 0.188260279239131 -0.9821190446838864 -0.001573872363585238 -0.1798939088582221 0.9836847586912652 0.001573872363585238 0.1798939088582221 -0.9836847586912652 1.950937990684165e-018 -0.1867975866733153 0.9823984230509664 -1.950937990684165e-018 0.1867975866733153 -0.9823984230509664 0.0004993296850496009 -0.1882602789748251 0.9821190447344897 -0.0004993296850496009 0.1882602789748251 -0.9821190447344897 -3.48401965557127e-010 -0.1874269755801675 0.9822785393282657 3.48401965557127e-010 0.1874269755801675 -0.9822785393282657 -0.003781893832025225 -0.1854015646517295 0.9826555638186424 0.003781893832025225 0.1854015646517295 -0.9826555638186424 -0.0002058559345083983 -0.1824473280205556 0.9832156071388891 0.0002058559345083983 0.1824473280205556 -0.9832156071388891 0.001573874654780835 -0.1798939133359203 0.9836847578687288 -0.001573874654780835 0.1798939133359203 -0.9836847578687288 0.0002058526909813292 -0.182447326200633 0.9832156074772764 -0.0002058526909813292 0.182447326200633 -0.9832156074772764 -2.788418118671642e-009 -0.1791754175536094 0.9838171424327236 2.788418118671642e-009 0.1791754175536094 -0.9838171424327236 0.003781894494418022 -0.1854015651104945 0.9826555637295359 -0.003781894494418022 0.1854015651104945 -0.9826555637295359</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"78\" source=\"#ID216\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID214\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID212\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID213\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"52\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 1 6 2 8 1 0 2 10 0 1 12 6 8 0 14 10 16 0 18 8 14 0 16 14 10 20 16 22 8 18 18 14 24 14 16 26 20 28 16 22 18 30 18 24 32 14 26 24 16 28 26 20 34 28 36 22 30 30 18 32 32 24 38 24 26 40 26 28 42 34 44 28 46 22 36 24 40 38 26 42 40 28 44 42 34 48 44 40 50 38 40 42 52 42 44 54 48 56 44 40 52 50 42 54 52 44 56 54 48 58 56 52 60 50 52 54 62 54 56 64 58 66 56 52 62 60 54 64 62 56 68 64 56 66 68 62 70 60 64 72 62 64 68 74 62 76 70 62 72 76 64 74 72</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID214\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"52\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 7 4 5 4 9 5 11 3 7 13 4 15 5 9 5 17 11 15 9 19 15 17 5 17 21 11 19 9 23 25 15 19 27 17 15 17 29 21 31 19 23 33 25 19 25 27 15 27 29 17 29 35 21 31 23 37 33 19 31 39 25 33 41 27 25 43 29 27 29 45 35 37 23 47 39 41 25 41 43 27 43 45 29 45 49 35 39 51 41 53 43 41 55 45 43 45 57 49 51 53 41 53 55 43 55 57 45 57 59 49 51 61 53 63 55 53 65 57 55 57 67 59 61 63 53 63 65 55 65 69 57 69 67 57 61 71 63 63 73 65 75 69 65 71 77 63 77 73 63 73 75 65</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID214\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID217\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID218\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID222\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"486\">-0.06212541833519936 -1.890682101249695 0.185465544462204 -0.004580865148454905 -1.885924220085144 0.1778659224510193 -0.003423498477786779 -1.882099986076355 0.1798757761716843 -0.003423498477786779 -1.882099986076355 0.1798757761716843 -0.004580865148454905 -1.885924220085144 0.1778659224510193 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362602695822716 -1.877979755401611 0.1924054622650147 -0.05362602695822716 -1.877979755401611 0.1924054622650147 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.06212541833519936 -1.890682101249695 0.185465544462204 -0.05362604185938835 -1.903384566307068 0.1785260140895844 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.003423502203077078 -1.889748334884644 0.1758555620908737 -0.003423502203077078 -1.889748334884644 0.1758555620908737 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.000261504203081131 -1.879300594329834 0.18134805560112 -0.000261504203081131 -1.879300594329834 0.18134805560112 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.01774921268224716 -1.872801303863525 0.1951804459095001 -0.01774921268224716 -1.872801303863525 0.1951804459095001 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.004193538334220648 -1.907847166061401 0.190097764134407 -0.004193538334220648 -1.907847166061401 0.190097764134407 -0.05362604185938835 -1.90771222114563 0.1864459067583084 -0.01802638359367847 -1.912828922271729 0.1837056577205658 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.01802638359367847 -1.908501267433167 0.1757853031158447 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.01031874679028988 -1.903075337409973 0.1926834881305695 -0.01031874679028988 -1.903075337409973 0.1926834881305695 -0.06212541833519936 -1.895007610321045 0.1933857649564743 -0.000261504203081131 -1.892548799514771 0.1743834316730499 -0.000261504203081131 -1.892548799514771 0.1743834316730499 -0.05362602695822716 -1.882304906845093 0.2003258913755417 -0.01256070844829083 -1.896557927131653 0.1962146610021591 -0.01256070844829083 -1.896557927131653 0.1962146610021591 -0.05362602695822716 -1.882304906845093 0.2003258913755417 0.004057842772454023 -1.878275752067566 0.1818866580724716 0.004057842772454023 -1.878275752067566 0.1818866580724716 0.004173615481704474 -1.909591317176819 0.189151793718338 0.004173615481704474 -1.909591317176819 0.189151793718338 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.916087865829468 0.1715866476297379 0.00344362435862422 -1.916087865829468 0.1715866476297379 -0.01031874306499958 -1.890042185783386 0.1997462660074234 -0.01031874306499958 -1.890042185783386 0.1997462660074234 -0.01774921268224716 -1.877128958702087 0.2031001746654511 -0.01774921268224716 -1.877128958702087 0.2031001746654511 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004173615481704474 -1.905439138412476 0.1941477060317993 0.004173615481704474 -1.905439138412476 0.1941477060317993 0.00344362435862422 -1.920415163040161 0.1795060932636261 0.00344362435862422 -1.920415163040161 0.1795060932636261 -0.0002153222449123859 -1.904404282569885 0.194709837436676 -0.0002153222449123859 -1.904404282569885 0.194709837436676 0.00344362435862422 -1.916087865829468 0.1715866476297379 0.00344362435862422 -1.916087865829468 0.1715866476297379 -0.003428266383707523 -1.901579737663269 0.1962397992610931 -0.003428266383707523 -1.901579737663269 0.1962397992610931 0.004057839047163725 -1.893572092056274 0.1738448441028595 0.004057839047163725 -1.893572092056274 0.1738448441028595 -0.004604290705174208 -1.897721648216248 0.198330745100975 -0.004604290705174208 -1.897721648216248 0.198330745100975 -0.01774921268224716 -1.877128958702087 0.2031001746654511 -0.01774921268224716 -1.877128958702087 0.2031001746654511 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.004114157520234585 -1.865072250366211 0.1994593888521195 0.0083771962672472 -1.879300594329834 0.18134805560112 0.0083771962672472 -1.879300594329834 0.18134805560112 0.008562571369111538 -1.904404282569885 0.194709837436676 0.008562571369111538 -1.904404282569885 0.194709837436676 0.01254078187048435 -1.907847166061401 0.190097764134407 0.01254078187048435 -1.907847166061401 0.190097764134407 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.0252343937754631 -1.909103035926819 0.1754486709833145 -0.003428266383707523 -1.893861889839172 0.200422078371048 -0.003428266383707523 -1.893861889839172 0.200422078371048 -0.004193538334220648 -1.885270476341248 0.2023317068815231 -0.004193538334220648 -1.885270476341248 0.2023317068815231 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.02461381815373898 -1.873335719108582 0.1948819309473038 0.02461381815373898 -1.873335719108582 0.1948819309473038 0.004173621535301209 -1.898949146270752 0.2003982812166214 0.004173621535301209 -1.898949146270752 0.2003982812166214 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.913429737091065 0.1833693385124207 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.0252343937754631 -1.909103035926819 0.1754486709833145 0.008377193473279476 -1.892548799514771 0.1743834316730499 0.008377193473279476 -1.892548799514771 0.1743834316730499 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.004114157520234585 -1.869397878646851 0.2073792219161987 0.01153918355703354 -1.882099986076355 0.1798757761716843 0.01153918355703354 -1.882099986076355 0.1798757761716843 0.01177550666034222 -1.901579737663269 0.1962397992610931 0.01177550666034222 -1.901579737663269 0.1962397992610931 0.0186659786850214 -1.903075337409973 0.1926834881305695 0.0186659786850214 -1.903075337409973 0.1926834881305695 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.05625637620687485 -1.903384566307068 0.1785260140895844 -0.0002153187524527311 -1.89103627204895 0.2019526362419128 -0.0002153187524527311 -1.89103627204895 0.2019526362419128 0.004173621535301209 -1.883522987365723 0.2032789885997772 0.004173621535301209 -1.883522987365723 0.2032789885997772 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.05625637620687485 -1.877979755401611 0.1924054622650147 0.05625637620687485 -1.877979755401611 0.1924054622650147 0.01295152120292187 -1.897721648216248 0.198330745100975 0.01295152120292187 -1.897721648216248 0.198330745100975 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.90771222114563 0.1864459067583084 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.05625637620687485 -1.903384566307068 0.1785260140895844 0.01153918355703354 -1.889748334884644 0.1758555620908737 0.01153918355703354 -1.889748334884644 0.1758555620908737 0.004173621535301209 -1.890002012252808 0.2025137692689896 0.004173621535301209 -1.890002012252808 0.2025137692689896 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.02461381815373898 -1.87766432762146 0.2028007805347443 0.01269654557108879 -1.885924220085144 0.1778659224510193 0.01269654557108879 -1.885924220085144 0.1778659224510193 0.01177550666034222 -1.893861889839172 0.200422078371048 0.01177550666034222 -1.893861889839172 0.200422078371048 0.02090794593095779 -1.896557927131653 0.1962146610021591 0.02090794593095779 -1.896557927131653 0.1962146610021591 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.890682101249695 0.185465544462204 0.064755879342556 -1.890682101249695 0.185465544462204 0.008562571369111538 -1.89103627204895 0.2019526362419128 0.008562571369111538 -1.89103627204895 0.2019526362419128 0.01254078559577465 -1.885270476341248 0.2023317068815231 0.01254078559577465 -1.885270476341248 0.2023317068815231 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.895007610321045 0.1933857649564743 0.064755879342556 -1.890682101249695 0.185465544462204 0.064755879342556 -1.890682101249695 0.185465544462204 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.05625637620687485 -1.882304906845093 0.2003258913755417 0.0186659786850214 -1.890042185783386 0.1997462660074234 0.0186659786850214 -1.890042185783386 0.1997462660074234</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"162\" source=\"#ID222\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID219\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID223\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"486\">-0.1559367835908594 0.4724906605952762 -0.8674308590161968 -0.1571837693401717 0.456705339978458 -0.875621776277393 -0.1522451649855252 0.5550067500675552 -0.8177951559638763 0.1522451649855252 -0.5550067500675552 0.8177951559638763 0.1571837693401717 -0.456705339978458 0.875621776277393 0.1559367835908594 -0.4724906605952762 0.8674308590161968 -0.1390503382858027 0.3378735749610511 -0.9308632825316738 0.1390503382858027 -0.3378735749610511 0.9308632825316738 -0.4869393082831401 0.8579505478323806 -0.1637405494153943 0.4869393082831401 -0.8579505478323806 0.1637405494153943 -0.5650701725602941 -0.7240143539059234 -0.3955994380947325 -0.5654194957188525 -0.7237957918031766 -0.3955002473185714 -0.9999999993758014 -1.504630552647389e-005 -3.196882694804338e-005 0.9999999993758014 1.504630552647389e-005 3.196882694804338e-005 0.5654194957188525 0.7237957918031766 0.3955002473185714 0.5650701725602941 0.7240143539059234 0.3955994380947325 -0.1873666787595777 0.2714871219833654 -0.9440277910569129 0.1873666787595777 -0.2714871219833654 0.9440277910569129 -0.9999999976347745 6.227543176424389e-005 2.919282880435985e-005 0.9999999976347745 -6.227543176424389e-005 -2.919282880435985e-005 -0.1284827264643132 0.7799780092813398 -0.6124757089369463 0.1284827264643132 -0.7799780092813398 0.6124757089369463 -0.2693333263803373 -0.8451188910684884 -0.4617722590845744 0.2693333263803373 0.8451188910684884 0.4617722590845744 -0.1085841614822981 0.07656549866794069 -0.9911343018425484 0.1085841614822981 -0.07656549866794069 0.9911343018425484 -0.5656655764677463 0.7237428511543926 0.3952451656912744 0.5656655764677463 -0.7237428511543926 -0.3952451656912744 -0.215460344750203 0.9745977197732217 -0.06112384520758304 0.215460344750203 -0.9745977197732217 0.06112384520758304 -0.06024289250176393 -0.7152519924570895 0.6962653094828037 -0.06680914302018613 -0.535661734201317 0.8417856288398764 -0.1098236036290324 -0.6959721181523937 0.7096207345056963 0.1098236036290324 0.6959721181523937 -0.7096207345056963 0.06680914302018613 0.535661734201317 -0.8417856288398764 0.06024289250176393 0.7152519924570895 -0.6962653094828037 -0.2693810262618333 -0.8451073808799046 -0.4617655005221041 0.2693810262618333 0.8451073808799046 0.4617655005221041 -0.06641723789961297 -0.4778104061893048 0.8759486093641555 -0.1492248560790995 -0.5551857009119028 0.8182302731084516 0.1492248560790995 0.5551857009119028 -0.8182302731084516 0.06641723789961297 0.4778104061893048 -0.8759486093641555 -0.1801642414375255 0.140548577976789 -0.9735434984303185 0.1801642414375255 -0.140548577976789 0.9735434984303185 -0.06109943537755055 -0.4210572589614811 0.9049738359048778 -0.1598490402081354 -0.4688447286817832 0.8686960945761431 0.1598490402081354 0.4688447286817832 -0.8686960945761431 0.06109943537755055 0.4210572589614811 -0.9049738359048778 -0.01706439951246839 0.8069219832866875 -0.5904114829150576 0.01706439951246839 -0.8069219832866875 0.5904114829150576 -0.005922541934862095 -0.7145168845725065 0.6995931282951752 0.005922541934862095 0.7145168845725065 -0.6995931282951752 -0.01638072440113115 -0.8774243488918827 -0.4794352759651192 0.01638072440113115 0.8774243488918827 0.4794352759651192 -0.004892287435146141 0.09504341174650677 -0.9954611069284605 0.004892287435146141 -0.09504341174650677 0.9954611069284605 -0.1608853655267507 -0.3451121954708132 0.9246693850758978 0.1608853655267507 0.3451121954708132 -0.9246693850758978 -0.2697758473313772 0.8450062910095768 0.4617200021126179 0.2697758473313772 -0.8450062910095768 -0.4617200021126179 0.005163321228154287 0.80314369678722 -0.5957629918221281 -0.005163321228154287 -0.80314369678722 0.5957629918221281 0.002344292070657979 -0.7372617171674439 0.6756031858228611 -0.002344292070657979 0.7372617171674439 -0.6756031858228611 -0.008157238007564552 -0.6687361967973861 0.7434550144837653 0.008157238007564552 0.6687361967973861 -0.7434550144837653 -0.1482697422189595 -0.6939824270870997 0.704559773501597 0.1482697422189595 0.6939824270870997 -0.704559773501597 -0.01631095801948851 -0.8774315909803663 -0.4794244005035099 0.01631095801948851 0.8774315909803663 0.4794244005035099 -0.247634545874316 -0.587407097508461 0.7704739018852661 0.247634545874316 0.587407097508461 -0.7704739018852661 0.01672740120278551 0.08830494052585623 -0.9959530267676915 -0.01672740120278551 -0.08830494052585623 0.9959530267676915 -0.2806604926472587 -0.455709256550181 0.8447240740984473 0.2806604926472587 0.455709256550181 -0.8447240740984473 -0.06931151722567759 -0.2749132873875356 0.9589674645146482 0.06931151722567759 0.2749132873875356 -0.9589674645146482 0.02391697579585033 0.8773665534004429 0.4792242786451961 -0.02391697579585033 -0.8773665534004429 -0.4792242786451961 0.2101921749737974 0.7555228558127222 -0.6204872794218858 -0.2101921749737974 -0.7555228558127222 0.6204872794218858 0.1514833837771899 -0.6960574425040083 0.701823924623685 -0.1514833837771899 0.6960574425040083 -0.701823924623685 0.1295182429994306 -0.6780618820468425 0.7235033578674217 -0.1295182429994306 0.6780618820468425 -0.7235033578674217 0.2751035091169459 -0.8437311463046369 -0.460907595974514 -0.2751035091169459 0.8437311463046369 0.460907595974514 0.1086831171316301 0.05008127305961377 -0.9928141045227352 -0.1086831171316301 -0.05008127305961377 0.9928141045227352 -0.2488725265091385 -0.3207670673426812 0.9138768812358338 0.2488725265091385 0.3207670673426812 -0.9138768812358338 -0.1296109157726461 -0.2425424417003133 0.9614437968423459 0.1296109157726461 0.2425424417003133 -0.9614437968423459 0.02382489002837564 0.8773602369114034 0.4792404295360543 -0.02382489002837564 -0.8773602369114034 -0.4792404295360543 0.2436673669795205 0.9657019217466152 -0.08969956858403495 -0.2436673669795205 -0.9657019217466152 0.08969956858403495 6.120173975055664e-008 -0.478955974542849 0.8778389228381857 -6.120173975055664e-008 0.478955974542849 -0.8778389228381857 0.0739072039953195 -0.6532948377034049 0.7534876111972089 -0.0739072039953195 0.6532948377034049 -0.7534876111972089 0.2751232148782023 -0.8437271877663316 -0.4609030801144639 -0.2751232148782023 0.8437271877663316 0.4609030801144639 0.1207740632168708 0.1185580458727601 -0.9855747639894804 -0.1207740632168708 -0.1185580458727601 0.9855747639894804 0.00894902137950491 -0.2714223354616189 0.9624187398575059 -0.00894902137950491 0.2714223354616189 -0.9624187398575059 0.2194923653377241 0.6465152519741085 -0.7306443255944074 -0.2194923653377241 -0.6465152519741085 0.7306443255944074 0.2502420019123516 -0.5907866162909732 0.7670398389199618 -0.2502420019123516 0.5907866162909732 -0.7670398389199618 0.165115532820197 -0.5861941213740701 0.7931666362675529 -0.165115532820197 0.5861941213740701 -0.7931666362675529 0.5834070092154735 -0.7127232439408671 -0.3894378501695283 -0.5834070092154735 0.7127232439408671 0.3894378501695283 0.1583039384910361 0.3225371996795222 -0.9332253842888749 -0.1583039384910361 -0.3225371996795222 0.9332253842888749 -0.1502315126915595 -0.2102981436898203 0.9660254568876648 0.1502315126915595 0.2102981436898203 -0.9660254568876648 0.01196630073376463 -0.2032111379676907 0.9790618167677796 -0.01196630073376463 0.2032111379676907 -0.9790618167677796 0.2939800854361898 0.8387086624576868 0.4584141019704441 -0.2939800854361898 -0.8387086624576868 -0.4584141019704441 0.4885737109371212 0.8578263993909789 -0.1594666030522976 -0.4885737109371212 -0.8578263993909789 0.1594666030522976 0.2806670705106129 -0.4587400994911635 0.8430797807146296 -0.2806670705106129 0.4587400994911635 -0.8430797807146296 0.06935806896058236 -0.53855939403882 0.8397280734634266 -0.06935806896058236 0.53855939403882 -0.8397280734634266 0.5837254403942573 -0.7125257971522856 -0.3893219729594392 -0.5837254403942573 0.7125257971522856 0.3893219729594392 0.1600135354637308 0.3583929788715838 -0.9197554790073013 -0.1600135354637308 -0.3583929788715838 0.9197554790073013 -0.002334717766163528 -0.1667584603142579 0.9859950126682033 0.002334717766163528 0.1667584603142579 -0.9859950126682033 0.06637512762902212 -0.1772777037866704 0.9819200365469464 -0.06637512762902212 0.1772777037866704 -0.9819200365469464 0.1780098328934645 0.4656460746403963 -0.8668830558761842 -0.1780098328934645 -0.4656460746403963 0.8668830558761842 0.2462724472171071 -0.3254193099052178 0.9129360078792538 -0.2462724472171071 0.3254193099052178 -0.9129360078792538 0.1656993367893799 -0.4721240936589514 0.8658190168703118 -0.1656993367893799 0.4721240936589514 -0.8658190168703118 0.9999999988634817 4.762279000706527e-005 2.259778687422832e-006 -0.9999999988634817 -4.762279000706527e-005 -2.259778687422832e-006 0.17090859929879 0.4725818099566265 -0.8645557723963474 -0.17090859929879 -0.4725818099566265 0.8645557723963474 0.147042743150684 -0.2137060265846958 0.9657681739879935 -0.147042743150684 0.2137060265846958 -0.9657681739879935 0.1124707744108558 -0.2039467248969374 0.9724999014433038 -0.1124707744108558 0.2039467248969374 -0.9724999014433038 0.5666903137006596 0.7231345214766569 0.3948905572517206 -0.5666903137006596 -0.7231345214766569 -0.3948905572517206 0.07468321548360864 -0.4785813686036864 0.87486129812128 -0.07468321548360864 0.4785813686036864 -0.87486129812128 0.9999999985165108 -4.563442049767177e-005 -2.974017410650329e-005 -0.9999999985165108 4.563442049767177e-005 2.974017410650329e-005 0.07423592034048399 -0.4103243047544882 0.9089130833357759 -0.07423592034048399 0.4103243047544882 -0.9089130833357759 0.1529426208812376 -0.3797523998761752 0.9123577530257875 -0.1529426208812376 0.3797523998761752 -0.9123577530257875</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"162\" source=\"#ID223\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID221\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID224\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"648\">6.197624366416148 -11.259997112316 5.633936893191923 -11.37516565359185 5.611547707344592 -11.34470730699959 7.403462601312935 -11.80058060332358 7.370045423987567 -11.92998237377035 6.849633993693515 -11.94229113561747 5.696372318742883 -10.64788532287058 5.813110766776234 -10.74276692755852 5.2251960094395 -10.81918947322953 16.71249903445029 3.182932220119489 16.67402942061986 3.118707169152669 16.52218241039167 3.174982135305599 6.812389486930464 -11.72106037525777 7.332829805861207 -11.70953224809925 6.815314067625983 -11.75617018200611 17.12937086962881 3.027794399053971 17.09092129546603 2.963568365523682 16.93907443053135 3.019845005021688 5.16879640366618 -10.37793354192443 4.692598847528177 -10.54041821852935 4.655032869492355 -10.52132573327616 3.316817011957314 8.28696009640405 2.949558494481474 8.240705668572732 2.957463557755681 8.31143063151924 16.56069853453455 3.238318904064413 16.71256449570688 3.182043106992403 16.5222478542219 3.174093280345051 14.96649859022233 -9.098557704937159 14.77792841397065 -9.340442122292201 14.5403783674566 -9.334241340304722 16.97753256443189 3.083914057716583 17.12938258331342 3.027636097162986 16.93908614068197 3.019686755483996 2.372312219509824 -6.160143645757917 1.842523888909761 -6.261200890510088 2.010197727062115 -6.134782165451713 1.189729957394605 -9.184726024294891 0.8309835809387123 -9.155254213398603 1.324136612107796 -9.115977910943537 3.308996198885484 8.215921292460237 2.949642810671755 8.240395628414737 3.316901452868017 8.286649443415252 1.985797509472134 -12.01678366973451 1.884782301468045 -11.91130946186546 2.408964688164641 -11.92198289204256 14.83251544451584 -8.240996096947621 15.0701866687631 -8.242673229859516 14.83482692331507 -8.276136922348439 2.121944780594908 -12.55728524347131 2.187703029390534 -12.43579115089712 2.614634971188297 -12.50776249167922 3.971608883595491 8.165892040130983 3.609428938861981 8.190668385583734 3.979541742940867 8.236609317390048 2.869269205423273 -6.832168742372222 2.825017921672816 -6.827098607389249 3.032185739816667 -6.701957520309583 1.879250671449631 -9.424508502786869 1.66139680828244 -9.484614874094675 1.794288992707469 -9.414068284419628 1.709624855619829 -11.78135322142818 2.134246416472771 -11.69066613969296 2.200682386268879 -11.72825951914409 8.059933387038802 7.361380735710531 7.815088261159154 7.328703211547769 7.833180823061438 7.398263054670808 1.861071224581285 -12.12614345670638 2.354492329090669 -12.08134989583227 2.385238608147247 -12.13726351175387 16.42051106116374 -7.022789241080307 16.64725711412552 -6.962930322031732 16.60630317097705 -7.14220994153427 2.738133534395794 -12.38043226462098 2.310673250895076 -12.31042854559361 2.750462775923929 -12.32029808043496 3.978612217185231 8.240070602782543 3.60850080853052 8.194122714515283 3.616436110895134 8.264844445876936 3.962904818935796 -7.292312993777429 3.76042015277968 -7.422111002188075 3.733155102936037 -7.250534211171334 2.213533841257794 -8.35294398979698 2.12842144698438 -8.343293319300081 2.208810937015485 -8.301976324477195 2.545346670331956 -10.24091808674377 2.322570049726805 -10.19125554829339 2.538430238934704 -10.12685150326239 6.103085514188759 -8.910222896259375 6.029731124295621 -8.881678893032651 6.129663986048146 -8.859309869417674 8.041798655680426 7.291989983945062 7.815044544248284 7.328864562562806 8.059889623759394 7.361542301729187 9.132084732071418 -9.510007126989109 9.08088999905916 -9.464296984695222 9.185110438468982 -9.463971576272957 13.20224478425976 -10.36343232802376 13.3398771322845 -10.51803003989664 13.17843005962019 -10.39320381009214 11.43645710193289 -9.737400761577282 11.41461912072993 -9.678962200227657 11.50668825496226 -9.702385262888926 1.913463414545358 -13.7492248509189 2.26246784942114 -13.66915782100476 2.352917667962758 -13.76595309271632 7.994241014777865 7.299007569651417 7.763322305743026 7.336586921587116 8.012341495641103 7.368561727803613 -2.708505363225937 -7.581342807761608 -2.752716735287881 -7.586624351503083 -2.690305482984234 -7.409024351745314 -2.408038090459215 -8.330172446087151 -2.402712097948566 -8.279241586279305 -2.357857689482753 -8.27351093410228 2.427733195625073 -8.455374829297051 2.347736176994048 -8.497160574895521 2.382893340703943 -8.449574973281287 -1.540654535043063 -10.25350487592474 -1.524502340440594 -10.14001771049218 -1.439682122421367 -10.12888782919359 6.238839170943551 -9.153274357170988 6.298833285700818 -9.112877702812414 6.338533754401055 -9.130256761262144 -7.349453083953662 7.472791483684338 -7.366122874349985 7.542563229943737 -7.138123085184278 7.57659911827452 9.082276873057205 -9.578298123958279 9.157511467552011 -9.550447235340323 9.18649728474279 -9.577967266196051 -15.84106025971079 -7.802581354588299 -16.02577925248045 -7.905519240484162 -16.08720237835226 -7.729472326927488 11.61928007962442 -9.563403606333257 11.52701752301233 -9.540456369846153 11.60485452531269 -9.529500667208096 7.477425664162507 -12.21359236987914 7.357611013346843 -12.13910516746961 7.514430752388228 -12.1561721246241 8.012955099589016 7.36622824461213 7.763935256677664 7.334256585784075 7.782028681595612 7.403804813469619 -4.472627024158272 -7.140105044838997 -4.616561152049331 -7.009602977725914 -4.397930765304884 -6.965464273665069 -1.907041218627021 -9.652654549627787 -1.90040429998779 -9.581964242946295 -1.862323480858624 -9.646297176069183 -2.018224417106208 -8.444456047060598 -2.103325621452177 -8.454168264145315 -2.053887850389722 -8.397104188734629 1.990083414864688 -9.647830565521002 1.945365855454683 -9.641473191466572 1.983446591116788 -9.577140253326217 -2.441442317070226 -9.962434291685895 -2.335028471376848 -9.840651469745062 -2.216347901821768 -9.918014774313466 5.619407371413129 -9.769189997372809 5.580372030501779 -9.750902291957752 5.645238539763041 -9.701195762185026 -7.120154071111422 7.505763881131445 -7.348152995148785 7.471740560249816 -7.136818631874857 7.575542696086022 8.571682981362905 -9.941388359690892 8.543741861368087 -9.913207592295294 8.627578642942691 -9.885342329960086 -17.30873164025513 -5.807842919854194 -17.30042791571163 -5.84240661150004 -17.52869218706355 -5.739481514788718 10.44002827943813 -10.22387272263708 10.42852130822453 -10.18928591467931 10.51999094326319 -10.18967947586913 13.00007191924083 -9.728127183555126 13.01129475757121 -9.664357513014636 13.07625308512217 -9.711458331365444 6.75421226631954 -12.88691426647534 6.598425021674292 -12.86475524284705 6.774513419890265 -12.74136749502083 -8.706701726069261 7.061200937314908 -8.926615639431279 7.0212023372878 -8.726810540056269 7.130405775807971 -7.592880588982362 -7.886585728392562 -7.633057415635026 -7.902042458245666 -7.717839839828695 -7.744500298881613 -5.539662779684833 -9.783784531621299 -5.565493975714329 -9.715790278759508 -5.500627515195189 -9.765496821452649 -6.546767267113827 -8.86477506768734 -6.506817002793847 -8.84775404024936 -6.521452258115116 -8.916084992530603 -4.307539566629169 -10.46302344215784 -4.236882415719203 -10.43054065850127 -4.197033327748333 -10.54754831571461 -4.183166013910026 8.095177530899505 -4.193202844330219 8.165736723659775 -3.87818205344835 8.193143526319274 -17.99768512551199 -4.44821867621306 -18.20772947711836 -4.362708196412636 -18.25068134367565 -4.115679117601889 10.39364211255814 -11.12909175208168 10.404918891182 -11.09446224364395 10.48511055506974 -11.1296301725986 13.75946256675644 -9.10711749848984 13.69168837461222 -9.062539591759453 13.76093359521591 -9.071388525216449 3.314176340585103 -13.55179243198169 3.367676503565271 -13.41155116498354 3.393401801089565 -13.52547294854093 -8.930111430721901 7.023576888020984 -8.950242232747243 7.092782337603858 -8.730319162413187 7.132794853398441 -1.887520876410273 -6.965628159730111 -2.328824417541305 -6.847337843858353 -2.009431466254339 -6.823957987372525 -8.497255295655442 -9.965506187960209 -8.553150880097793 -9.909460134073417 -8.469314236614467 -9.937325408418628 -5.874101238397566 -9.083629668760038 -5.861678596705763 -9.015028149574606 -5.800960042567156 -9.054749242212123 -1.069468892170816 -10.43148323287195 -1.12784662685244 -10.31939180273221 -0.7560415793383726 -10.39445817435967 -3.869230301757583 8.124053248754537 -4.184252351615299 8.096637706176612 -3.87927179928428 8.194610267316962 -8.283416306050794 -12.0090750480539 -8.267032979264023 -12.04181760167526 -8.745552588827549 -11.94967989073469 5.581058484167266 -13.48312572992086 5.515989391869519 -13.43217272378933 5.554950723307702 -13.41377833247973 10.7540593980047 -11.85583002706053 10.68854426789727 -11.83609738632692 10.74742395131375 -11.78678634013501 -6.455515058226985 -12.82829110315036 -6.40736757203113 -12.71896075360123 -6.243447410381162 -12.84104224457879 -3.730550544774442 8.184213897068409 -4.050089217144411 8.162100559980363 -3.738611724340771 8.254924337111099 -6.789357545558712 -10.89796702217291 -6.813753411785932 -10.92745619740967 -7.192776391768387 -10.71412771831276 -10.45039944883282 -10.22156671107636 -10.35892983701128 -10.2211731503276 -10.3704368965475 -10.25575991952401 -9.31243785406706 -9.479580890652926 -9.283118771410861 -9.45228023310394 -9.259975742136748 -9.526014246534382 -2.922748154376651 -12.02158136272815 -2.889989145479664 -11.96637960618612 -2.559457503250584 -12.11909158407499 -16.66245416592098 3.122852859843346 -16.70092479697012 3.187077533745165 -16.54905902340839 3.243354827939089 -7.816380735472926 -11.71470824484129 -8.280273560523812 -11.66449702498086 -8.306038928107515 -11.53401638521053 -5.501207800824206 -13.50172963510977 -5.475100091914485 -13.43238222556532 -5.436138655390553 -13.45077662008532 12.24605122471798 -10.94799925093522 12.21924215364737 -10.97686048198976 12.20418030919195 -10.9086410758723 -7.120645559002742 -13.16877513383195 -7.191200289378312 -13.13009160936637 -6.979967747121975 -13.149619879602 -4.046915306220754 8.157532044061622 -4.054962696160851 8.228241312738671 -3.735428159960213 8.25033577252891 -6.003717679093289 -10.49976845512194 -5.610095722923115 -10.69605544639521 -6.122001358535752 -10.59345887466921 -10.41541767711593 -11.16350779648839 -10.33522592600749 -11.12833991688703 -10.32394925781765 -11.16296937672707 -11.27447212688236 -9.76393293959965 -11.26074218892122 -9.729851739696969 -11.20381765168273 -9.798417488865258 -8.944366430493115 -9.607239634683738 -8.968917873877935 -9.533788053713632 -8.89348850031559 -9.561311101334495 -2.129279084614208 -11.97511880962241 -2.463535233103457 -11.82750889987764 -2.027241597610338 -11.87025468706373 -16.66146154028098 3.122677811701418 -16.54806239403512 3.24317744817157 -16.50961297116488 3.178951358590919 -7.166230498382989 -11.61830630362956 -7.169787853271556 -11.65337994249353 -7.66688026064009 -11.48571992597951 -11.07860540252045 -11.64028442056426 -11.10796073898341 -11.6129993474125 -11.01248111088695 -11.62185212441992 -11.30391686197207 -11.55531934197853 -11.26505197444156 -11.51409731109688 -11.20858812876708 -11.56512696321413 -6.459410281560207 -13.50393031460893 -6.319730071361994 -13.48069229262466 -6.039372967742235 -13.60329889884792 -17.10284554313597 2.959046935256939 -16.98944398312366 3.079550740424591 -16.95099789614945 3.015323313437506 -12.78181866068961 -9.811849976624592 -12.78619287012304 -9.77626833855374 -12.70530928752901 -9.827560921884508 -11.59334749276988 -9.603998235513227 -11.51555518208066 -9.615148469281399 -11.53811771297429 -9.673416449426592 -2.807864160330112 -12.37859176931993 -2.81964309402998 -12.31838935422885 -2.372494295509015 -12.42681527498888 -17.1030221698742 2.959066855560852 -17.14147186864163 3.02329284292782 -16.98962142196237 3.079571133669681 -13.5651865570709 -9.324125563345955 -13.49605717866754 -9.31473296910154 -13.48795982698588 -9.378794899876009 -3.003948839719733 -12.73790184325345 -3.056274745672789 -12.68840325281481 -2.620380130903866 -12.72680484274118 -3.061828660353814 -12.44218577334851 -2.678221898967927 -12.43193504188406 -2.616303497280888 -12.55467185804887</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"324\" source=\"#ID224\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID220\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID218\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID219\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"108\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 10 9 11 10 12 11 1 12 6 13 16 14 18 15 12 16 8 17 8 18 2 19 20 20 22 21 11 22 10 23 18 24 10 25 12 26 6 27 24 28 16 29 26 30 18 31 8 32 8 33 20 34 28 35 30 36 31 37 32 38 36 39 11 40 22 41 31 42 38 43 39 44 16 45 24 46 42 47 38 48 44 49 45 50 8 51 28 52 26 53 20 54 48 55 28 56 50 57 30 58 32 59 31 60 39 61 32 62 52 63 36 64 22 65 38 66 45 67 39 68 42 69 24 70 54 71 45 72 44 73 56 74 26 75 28 76 58 77 28 78 48 79 60 80 50 81 32 82 62 83 64 84 30 85 50 86 32 87 39 88 66 89 68 90 36 91 52 92 39 93 45 94 70 95 42 96 54 97 72 98 45 99 56 100 74 101 44 102 76 103 56 104 28 105 78 106 58 107 48 108 80 109 60 110 50 111 62 112 82 113 62 114 32 115 66 116 64 117 50 118 84 119 39 120 70 121 66 122 68 123 52 124 86 125 45 126 74 127 70 128 72 129 54 130 88 131 74 132 56 133 90 134 56 135 76 136 92 137 58 138 78 139 94 140 80 141 96 142 60 143 62 144 98 145 82 146 84 147 50 148 82 149 62 150 66 151 98 152 64 153 84 154 100 155 66 156 70 157 98 158 102 159 68 160 86 161 70 162 74 163 98 164 104 165 72 166 88 167 74 168 90 169 98 170 56 171 92 172 90 173 92 174 76 175 106 176 78 177 96 178 94 179 80 180 108 181 96 182 82 183 98 184 110 185 82 186 110 187 84 188 84 189 112 190 100 191 102 192 86 193 114 194 104 195 88 196 116 197 90 198 118 199 98 200 90 201 92 202 118 203 92 204 106 205 120 206 96 207 122 208 94 209 108 210 124 211 96 212 110 213 98 214 126 215 84 216 110 217 112 218 100 219 112 220 128 221 130 222 102 223 114 224 132 225 104 226 116 227 98 228 118 229 134 230 118 231 92 232 120 233 120 234 106 235 136 236 96 237 124 238 122 239 108 240 138 241 124 242 98 243 140 244 126 245 110 246 126 247 112 248 112 249 142 250 128 251 130 252 114 253 144 254 132 255 116 256 146 257 98 258 134 259 148 260 134 261 118 262 120 263 150 264 120 265 136 266 124 267 152 268 122 269 124 270 138 271 146 272 98 273 148 274 140 275 126 276 140 277 142 278 112 279 126 280 142 281 128 282 142 283 154 284 130 285 144 286 156 287 138 288 132 289 146 290 148 291 134 292 150 293 134 294 120 295 150 296 150 297 136 298 158 299 156 300 152 301 124 302 140 303 148 304 160 305 140 306 160 307 142 308 142 309 160 310 154 311 156 312 144 313 152 314 148 315 150 316 160 317 160 318 150 319 158 320 160 321 158 322 154 323</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID220\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID221\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"108\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 4 7 5 3 5 9 13 14 15 17 7 4 9 13 19 21 3 9 15 14 23 13 15 19 17 25 7 9 19 27 29 21 9 33 34 35 23 14 37 40 41 34 43 25 17 46 47 41 27 29 9 29 49 21 33 35 51 33 40 34 23 37 53 40 46 41 55 25 43 57 47 46 59 29 27 61 49 29 63 33 51 51 35 65 67 40 33 53 37 69 71 46 40 73 55 43 75 57 46 57 77 47 59 79 29 61 81 49 83 63 51 67 33 63 85 51 65 67 71 40 87 53 69 71 75 46 89 55 73 91 57 75 93 77 57 95 79 59 61 97 81 83 99 63 83 51 85 99 67 63 101 85 65 99 71 67 87 69 103 99 75 71 89 73 105 99 91 75 91 93 57 107 77 93 95 97 79 97 109 81 111 99 83 85 111 83 101 113 85 115 87 103 117 89 105 99 119 91 119 93 91 121 107 93 95 123 97 97 125 109 127 99 111 113 111 85 129 113 101 115 103 131 117 105 133 135 119 99 121 93 119 137 107 121 123 125 97 125 139 109 127 141 99 113 127 111 129 143 113 145 115 131 147 117 133 149 135 99 121 119 135 137 121 151 123 153 125 147 139 125 141 149 99 143 141 127 143 127 113 155 143 129 157 145 131 147 133 139 151 135 149 151 121 135 159 137 151 125 153 157 161 149 141 143 161 141 155 161 143 153 145 157 161 151 149 159 151 161 155 159 161</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID220\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID227\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID228\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID232\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"2448\">-0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1615252941846848 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.022738456726074 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.1571999192237854 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.030722618103027 -0.1571999192237854 0.1615252941846848 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.1706530898809433 -2.021323442459106 -0.1601379364728928 -0.1706530898809433 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1706530898809433 -2.011924266815186 -0.1571999192237854 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.00537109375 -0.1488334387540817 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 -0.004563856404274702 -2.032135009765625 -0.1571999192237854 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1615252941846848 -2.011924266815186 -0.1571999192237854 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1615252941846848 -2.021323442459106 -0.1601379364728928 0.1615252941846848 -2.030722618103027 -0.1571999192237854 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1615252941846848 -2.030722618103027 -0.1571999192237854 -0.1801174134016037 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.04564905166626 -0.1687948554754257 -0.1706530898809433 -2.038688659667969 -0.1488334983587265 -0.1706530898809433 -2.038688659667969 -0.1488334983587265 -0.1801174134016037 -2.008158206939697 -0.1905468553304672 -0.1801174134016037 -2.008158206939697 -0.1905468553304672 -0.1706530898809433 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 0.1615252941846848 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 -0.004563856404274702 -2.000047206878662 -0.1363121122121811 0.1615252941846848 -2.003956317901611 -0.1488334983587265 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 0.1615252941846848 -2.038688659667969 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 -0.004563856404274702 -2.040102958679199 -0.1488334983587265 0.1615252941846848 -2.038688659667969 -0.1488334983587265 0.1709899455308914 -2.008158206939697 -0.1905468553304672 0.1709899455308914 -2.008158206939697 -0.1905468553304672 0.1709899455308914 -2.04564905166626 -0.1687948554754257 0.1709899455308914 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.2164027541875839 -2.04564905166626 -0.1687948554754257 -0.2164027541875839 -2.04564905166626 -0.1687948554754257 -0.1801174134016037 -2.034487009048462 -0.1905468553304672 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.034487009048462 -0.1905468553304672 -0.2164027541875839 -2.034487009048462 -0.1905468553304672 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.1801174134016037 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.1706530898809433 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.1706530898809433 -1.998634099960327 -0.1363122016191483 0.1615252941846848 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 -0.004563856404274702 -1.998179435729981 -0.1215425282716751 0.1615252941846848 -1.998634099960327 -0.1363122016191483 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.1706530898809433 -2.044009208679199 -0.1363122016191483 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.1706530898809433 -2.044009208679199 -0.1363122016191483 0.1615252941846848 -2.044009208679199 -0.1363122016191483 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 -0.004563856404274702 -2.045424699783325 -0.1363121122121811 0.1615252941846848 -2.044009208679199 -0.1363122016191483 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.2072749584913254 -2.034487009048462 -0.1905468553304672 0.2072749584913254 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.034487009048462 -0.1905468553304672 0.1709899455308914 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.04564905166626 -0.1687948554754257 0.2072749584913254 -2.04564905166626 -0.1687948554754257 -0.2164027541875839 -2.053104400634766 -0.1409582644701004 -0.2164027541875839 -2.053104400634766 -0.1409582644701004 -0.1801174134016037 -2.053104400634766 -0.1409582644701004 -0.1801174134016037 -2.053104400634766 -0.1409582644701004 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.008158206939697 -0.1905468553304672 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.008158206939697 -0.1905468553304672 -0.1801174134016037 -2.001414299011231 -0.1687948554754257 -0.1801174134016037 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.1706530898809433 -1.996765375137329 -0.1215425506234169 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.1706530898809433 -1.996765375137329 -0.1215425506234169 0.1615252941846848 -1.996765375137329 -0.1215425506234169 -0.004563856404274702 -2.000047206878662 -0.106772854924202 -0.004563856404274702 -2.000047206878662 -0.106772854924202 0.1615252941846848 -1.996765375137329 -0.1215425506234169 0.1709899455308914 -2.001414299011231 -0.1687948554754257 0.1709899455308914 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.1706530898809433 -2.045880794525147 -0.1215425506234169 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.1706530898809433 -2.045880794525147 -0.1215425506234169 0.1615252941846848 -2.045880794525147 -0.1215425506234169 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 -0.004563856404274702 -2.047295093536377 -0.1215425282716751 0.1615252941846848 -2.045880794525147 -0.1215425506234169 0.1709899455308914 -2.053104400634766 -0.1409582644701004 0.1709899455308914 -2.053104400634766 -0.1409582644701004 0.2072749584913254 -2.008158206939697 -0.1905468553304672 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.008158206939697 -0.1905468553304672 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2072749584913254 -2.053104400634766 -0.1409582644701004 0.2072749584913254 -2.053104400634766 -0.1409582644701004 -0.2258673459291458 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.038688659667969 -0.1488334983587265 -0.2258673459291458 -2.038688659667969 -0.1488334983587265 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2164027541875839 -2.021323442459106 -0.1987807750701904 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -1.998634099960327 -0.1067729070782661 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.1706530898809433 -1.998634099960327 -0.1067729070782661 0.1615252941846848 -1.998634099960327 -0.1067729070782661 -0.004563856404274702 -2.00537109375 -0.09425176680088043 -0.004563856404274702 -2.00537109375 -0.09425176680088043 0.1615252941846848 -1.998634099960327 -0.1067729070782661 -0.1801174134016037 -1.996166825294495 -0.1409582644701004 -0.1801174134016037 -1.996166825294495 -0.1409582644701004 0.1709899455308914 -1.996166825294495 -0.1409582644701004 0.1709899455308914 -1.996166825294495 -0.1409582644701004 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.1706530898809433 -2.044009208679199 -0.1067729070782661 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.1706530898809433 -2.044009208679199 -0.1067729070782661 0.1615252941846848 -2.044009208679199 -0.1067729070782661 -0.004563856404274702 -2.045424699783325 -0.106772854924202 -0.004563856404274702 -2.045424699783325 -0.106772854924202 0.1615252941846848 -2.044009208679199 -0.1067729070782661 -0.1801174134016037 -2.055723428726196 -0.1202674210071564 -0.1801174134016037 -2.055723428726196 -0.1202674210071564 0.1709899455308914 -2.055723428726196 -0.1202674210071564 0.1709899455308914 -2.055723428726196 -0.1202674210071564 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2072749584913254 -2.021323442459106 -0.1987807750701904 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.2167398035526276 -2.038688659667969 -0.1488334983587265 0.2167398035526276 -2.038688659667969 -0.1488334983587265 0.2167398035526276 -2.044009208679199 -0.1363122016191483 0.2167398035526276 -2.044009208679199 -0.1363122016191483 -0.2258673459291458 -2.045880794525147 -0.1215425506234169 -0.2258673459291458 -2.045880794525147 -0.1215425506234169 -0.2164027541875839 -2.055723428726196 -0.1202674210071564 -0.2164027541875839 -2.055723428726196 -0.1202674210071564 -0.2258673459291458 -2.011924266815186 -0.1571999192237854 -0.2258673459291458 -2.011924266815186 -0.1571999192237854 -0.2164027541875839 -2.001414299011231 -0.1687948554754257 -0.2164027541875839 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.003956317901611 -0.09425179660320282 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.1706530898809433 -2.003956317901611 -0.09425179660320282 0.1615252941846848 -2.003956317901611 -0.09425179660320282 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 -0.004563856404274702 -2.013338327407837 -0.08588512986898422 0.1615252941846848 -2.003956317901611 -0.09425179660320282 -0.1801174134016037 -1.993547916412354 -0.1202674210071564 -0.1801174134016037 -1.993547916412354 -0.1202674210071564 0.1709899455308914 -1.993547916412354 -0.1202674210071564 0.1709899455308914 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -2.001414299011231 -0.1687948554754257 0.2072749584913254 -2.001414299011231 -0.1687948554754257 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 0.1615252941846848 -2.038688659667969 -0.09425181150436401 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 -0.004563856404274702 -2.040102958679199 -0.09425179660320282 0.1615252941846848 -2.038688659667969 -0.09425181150436401 -0.1801174134016037 -2.054501533508301 -0.0963137224316597 -0.1801174134016037 -2.054501533508301 -0.0963137224316597 0.1709899455308914 -2.054501533508301 -0.0963137224316597 0.1709899455308914 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.055723428726196 -0.1202674210071564 0.2072749584913254 -2.055723428726196 -0.1202674210071564 0.2167398035526276 -2.011924266815186 -0.1571999192237854 0.2167398035526276 -2.011924266815186 -0.1571999192237854 0.2167398035526276 -2.045880794525147 -0.1215425506234169 0.2167398035526276 -2.045880794525147 -0.1215425506234169 -0.6118695139884949 -2.033908367156982 -0.1215425282716751 -0.6118695139884949 -2.033908367156982 -0.1215425282716751 -0.6130750775337219 -2.032478094100952 -0.1363121122121811 -0.6130750775337219 -2.032478094100952 -0.1363121122121811 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.6165025234222412 -2.028409481048584 -0.1488334983587265 -0.6165025234222412 -2.028409481048584 -0.1488334983587265 -0.2258673459291458 -2.030722618103027 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.6216357350349426 -2.022314310073853 -0.1571999192237854 -0.6216357350349426 -2.022314310073853 -0.1571999192237854 -0.2258673459291458 -2.021323442459106 -0.1601379364728928 -0.6276903748512268 -2.015124082565308 -0.1601379364728928 -0.6276903748512268 -2.015124082565308 -0.1601379364728928 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.004563856404274702 -2.022738456726074 -0.102244958281517 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.004563856404274702 -2.022738456726074 -0.102244958281517 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.011924266815186 -0.08588515222072601 -0.1801174134016037 -1.996166825294495 -0.09957704693078995 -0.1801174134016037 -1.996166825294495 -0.09957704693078995 0.1709899455308914 -1.996166825294495 -0.09957704693078995 0.1709899455308914 -1.996166825294495 -0.09957704693078995 -0.2164027541875839 -1.996166825294495 -0.1409582644701004 -0.2164027541875839 -1.996166825294495 -0.1409582644701004 0.2072749584913254 -1.996166825294495 -0.1409582644701004 0.2072749584913254 -1.996166825294495 -0.1409582644701004 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 0.1615252941846848 -2.030722618103027 -0.08588515222072601 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 -0.004563856404274702 -2.032135009765625 -0.08588512986898422 0.1615252941846848 -2.030722618103027 -0.08588515222072601 -0.1801174134016037 -2.050714015960693 -0.06386412680149078 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.1706530898809433 -2.038688659667969 -0.09425181150436401 -0.1801174134016037 -2.050714015960693 -0.06386412680149078 0.1709899455308914 -2.050714015960693 -0.06386412680149078 0.1615252941846848 -2.038688659667969 -0.09425181150436401 0.1615252941846848 -2.038688659667969 -0.09425181150436401 0.1709899455308914 -2.050714015960693 -0.06386412680149078 -0.2164027541875839 -2.054501533508301 -0.0963137224316597 -0.2164027541875839 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.054501533508301 -0.0963137224316597 0.2072749584913254 -2.054501533508301 -0.0963137224316597 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.6185629963874817 -2.015124082565308 -0.1601379364728928 0.6185629963874817 -2.015124082565308 -0.1601379364728928 0.2167398035526276 -2.021323442459106 -0.1601379364728928 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.6125085949897766 -2.022314310073853 -0.1571999192237854 0.6125085949897766 -2.022314310073853 -0.1571999192237854 0.2167398035526276 -2.030722618103027 -0.1571999192237854 0.607374906539917 -2.028409481048584 -0.1488334983587265 0.607374906539917 -2.028409481048584 -0.1488334983587265 0.603947639465332 -2.032478094100952 -0.1363121122121811 0.603947639465332 -2.032478094100952 -0.1363121122121811 0.6027420163154602 -2.033908367156982 -0.1215425282716751 0.6027420163154602 -2.033908367156982 -0.1215425282716751 -0.6130750775337219 -2.032478094100952 -0.106772854924202 -0.6130750775337219 -2.032478094100952 -0.106772854924202 -0.2258673459291458 -2.044009208679199 -0.1067729070782661 -0.2258673459291458 -2.044009208679199 -0.1067729070782661 -0.6337444186210632 -2.007936954498291 -0.1571999192237854 -0.6337444186210632 -2.007936954498291 -0.1571999192237854 -0.2258673459291458 -2.003956317901611 -0.1488334983587265 -0.2258673459291458 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1801174134016037 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -1.999191641807556 -0.06404808163642883 -0.1706530898809433 -2.011924266815186 -0.08588515222072601 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1615252941846848 -2.011924266815186 -0.08588515222072601 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1709899455308914 -1.999191641807556 -0.06404808163642883 0.1709899455308914 -1.999191641807556 -0.06404808163642883 -0.2164027541875839 -1.993547916412354 -0.1202674210071564 -0.2164027541875839 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -1.993547916412354 -0.1202674210071564 0.2072749584913254 -1.993547916412354 -0.1202674210071564 0.2167398035526276 -2.003956317901611 -0.1488334983587265 0.2167398035526276 -2.003956317901611 -0.1488334983587265 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 -0.1706530898809433 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 0.1615252941846848 -2.021323442459106 -0.08294738829135895 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.1706530898809433 -2.030722618103027 -0.08588515222072601 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.1615252941846848 -2.030722618103027 -0.08588515222072601 0.1615252941846848 -2.030722618103027 -0.08588515222072601 0.1709899455308914 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.050714015960693 -0.06386412680149078 -0.2164027541875839 -2.050714015960693 -0.06386412680149078 0.2072749584913254 -2.050714015960693 -0.06386412680149078 0.2072749584913254 -2.050714015960693 -0.06386412680149078 0.2167398035526276 -2.044009208679199 -0.1067729070782661 0.2167398035526276 -2.044009208679199 -0.1067729070782661 0.6246169209480286 -2.007936954498291 -0.1571999192237854 0.6246169209480286 -2.007936954498291 -0.1571999192237854 0.603947639465332 -2.032478094100952 -0.106772854924202 0.603947639465332 -2.032478094100952 -0.106772854924202 -0.6553853750228882 -2.078316926956177 -0.106772854924202 -0.6553853750228882 -2.078316926956177 -0.106772854924202 -0.6546038389205933 -2.079557180404663 -0.1215425282716751 -0.6546038389205933 -2.079557180404663 -0.1215425282716751 -0.6553853750228882 -2.078316926956177 -0.1363121122121811 -0.6553853750228882 -2.078316926956177 -0.1363121122121811 -0.657609224319458 -2.074785947799683 -0.1488334983587265 -0.657609224319458 -2.074785947799683 -0.1488334983587265 -0.6609358191490173 -2.069501638412476 -0.1571999192237854 -0.6609358191490173 -2.069501638412476 -0.1571999192237854 -0.6648588180541992 -2.063269138336182 -0.1601379364728928 -0.6648588180541992 -2.063269138336182 -0.1601379364728928 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -1.996166825294495 -0.09957704693078995 -0.2164027541875839 -1.996166825294495 -0.09957704693078995 0.2072749584913254 -1.996166825294495 -0.09957704693078995 0.2072749584913254 -1.996166825294495 -0.09957704693078995 -0.2258673459291458 -1.998634099960327 -0.1363122016191483 -0.2258673459291458 -1.998634099960327 -0.1363122016191483 0.2167398035526276 -1.998634099960327 -0.1363122016191483 0.2167398035526276 -1.998634099960327 -0.1363122016191483 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.1801174134016037 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.1709899455308914 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 -0.2258673459291458 -2.038688659667969 -0.09425181150436401 -0.2258673459291458 -2.038688659667969 -0.09425181150436401 0.2167398035526276 -2.038688659667969 -0.09425181150436401 0.2167398035526276 -2.038688659667969 -0.09425181150436401 0.6557315587997437 -2.063269138336182 -0.1601379364728928 0.6557315587997437 -2.063269138336182 -0.1601379364728928 0.6518086194992065 -2.069501638412476 -0.1571999192237854 0.6518086194992065 -2.069501638412476 -0.1571999192237854 0.6484818458557129 -2.074785947799683 -0.1488334983587265 0.6484818458557129 -2.074785947799683 -0.1488334983587265 0.6462578773498535 -2.078316926956177 -0.1363121122121811 0.6462578773498535 -2.078316926956177 -0.1363121122121811 0.6454765200614929 -2.079557180404663 -0.1215425282716751 0.6454765200614929 -2.079557180404663 -0.1215425282716751 0.6462578773498535 -2.078316926956177 -0.106772854924202 0.6462578773498535 -2.078316926956177 -0.106772854924202 -0.657609224319458 -2.074785947799683 -0.09425179660320282 -0.657609224319458 -2.074785947799683 -0.09425179660320282 -0.6165025234222412 -2.028409481048584 -0.09425179660320282 -0.6165025234222412 -2.028409481048584 -0.09425179660320282 -0.6687852740287781 -2.057035684585571 -0.1571999192237854 -0.6687852740287781 -2.057035684585571 -0.1571999192237854 -0.6388782262802124 -2.00184178352356 -0.1488334387540817 -0.6388782262802124 -2.00184178352356 -0.1488334387540817 -0.2164027541875839 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.006489753723145 -0.04094164818525314 -0.2164027541875839 -1.999191641807556 -0.06404808163642883 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.006489753723145 -0.04094164818525314 -0.2164027541875839 -2.006489753723145 -0.04094164818525314 -0.1801174134016037 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.2072749584913254 -2.006489753723145 -0.04094164818525314 0.2072749584913254 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.006489753723145 -0.04094164818525314 0.1709899455308914 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -1.999191641807556 -0.06404808163642883 0.2072749584913254 -1.999191641807556 -0.06404808163642883 -0.2258673459291458 -1.996765375137329 -0.1215425506234169 -0.2258673459291458 -1.996765375137329 -0.1215425506234169 0.2167398035526276 -1.996765375137329 -0.1215425506234169 0.2167398035526276 -1.996765375137329 -0.1215425506234169 0.6297513246536255 -2.00184178352356 -0.1488334387540817 0.6297513246536255 -2.00184178352356 -0.1488334387540817 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.2164027541875839 -2.041045665740967 -0.04270092397928238 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.2072749584913254 -2.041045665740967 -0.04270092397928238 0.607374906539917 -2.028409481048584 -0.09425179660320282 0.607374906539917 -2.028409481048584 -0.09425179660320282 0.6596575975418091 -2.057035684585571 -0.1571999192237854 0.6596575975418091 -2.057035684585571 -0.1571999192237854 0.6484818458557129 -2.074785947799683 -0.09425179660320282 0.6484818458557129 -2.074785947799683 -0.09425179660320282 -0.7177013754844666 -2.096775054931641 -0.09390366077423096 -0.7177013754844666 -2.096775054931641 -0.09390366077423096 -0.7165237665176392 -2.098670482635498 -0.1065675467252731 -0.7165237665176392 -2.098670482635498 -0.1065675467252731 -0.7165124416351318 -2.100502252578735 -0.1215060725808144 -0.7165124416351318 -2.100502252578735 -0.1215060725808144 -0.7165237665176392 -2.098670482635498 -0.1364448219537735 -0.7165237665176392 -2.098670482635498 -0.1364448219537735 -0.7177013754844666 -2.096775054931641 -0.1491094380617142 -0.7177013754844666 -2.096775054931641 -0.1491094380617142 -0.7177552580833435 -2.088963031768799 -0.1575712114572525 -0.7177552580833435 -2.088963031768799 -0.1575712114572525 -0.7180059552192688 -2.080292224884033 -0.160543292760849 -0.7180059552192688 -2.080292224884033 -0.160543292760849 -0.2258673459291458 -1.998634099960327 -0.1067729070782661 -0.2258673459291458 -1.998634099960327 -0.1067729070782661 0.2167398035526276 -1.998634099960327 -0.1067729070782661 0.2167398035526276 -1.998634099960327 -0.1067729070782661 -0.6423077583312988 -1.997771978378296 -0.1363121122121811 -0.6423077583312988 -1.997771978378296 -0.1363121122121811 0.6331802010536194 -1.997771978378296 -0.1363121122121811 0.6331802010536194 -1.997771978378296 -0.1363121122121811 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2164027541875839 -2.025967359542847 -0.03255007416009903 0.2072749584913254 -2.025967359542847 -0.03255007416009903 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.2072749584913254 -2.025967359542847 -0.03255007416009903 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 -0.6216357350349426 -2.022314310073853 -0.08588512986898422 -0.6216357350349426 -2.022314310073853 -0.08588512986898422 -0.2258673459291458 -2.030722618103027 -0.08588515222072601 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.6125085949897766 -2.022314310073853 -0.08588512986898422 0.6125085949897766 -2.022314310073853 -0.08588512986898422 0.2167398035526276 -2.030722618103027 -0.08588515222072601 0.708878755569458 -2.080292224884033 -0.160543292760849 0.708878755569458 -2.080292224884033 -0.160543292760849 0.7086280584335327 -2.088963031768799 -0.1575712114572525 0.7086280584335327 -2.088963031768799 -0.1575712114572525 0.7085741758346558 -2.096775054931641 -0.1491094380617142 0.7085741758346558 -2.096775054931641 -0.1491094380617142 0.707396388053894 -2.098670482635498 -0.1364448219537735 0.707396388053894 -2.098670482635498 -0.1364448219537735 0.7073850035667419 -2.100502252578735 -0.1215060725808144 0.7073850035667419 -2.100502252578735 -0.1215060725808144 0.707396388053894 -2.098670482635498 -0.1065675467252731 0.707396388053894 -2.098670482635498 -0.1065675467252731 0.7085741758346558 -2.096775054931641 -0.09390366077423096 0.7085741758346558 -2.096775054931641 -0.09390366077423096 -0.7177552580833435 -2.088963031768799 -0.08544092625379562 -0.7177552580833435 -2.088963031768799 -0.08544092625379562 -0.6609358191490173 -2.069501638412476 -0.08588512986898422 -0.6609358191490173 -2.069501638412476 -0.08588512986898422 -0.7180686593055725 -2.071079969406128 -0.1575712114572525 -0.7180686593055725 -2.071079969406128 -0.1575712114572525 -0.6721116900444031 -2.051751613616943 -0.1488334387540817 -0.6721116900444031 -2.051751613616943 -0.1488334387540817 -0.2258673459291458 -2.003956317901611 -0.09425179660320282 -0.2258673459291458 -2.003956317901611 -0.09425179660320282 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.2167398035526276 -2.003956317901611 -0.09425179660320282 0.2167398035526276 -2.003956317901611 -0.09425179660320282 -0.6435112357139587 -1.996342778205872 -0.1215425282716751 -0.6435112357139587 -1.996342778205872 -0.1215425282716751 0.6343837380409241 -1.996342778205872 -0.1215425282716751 0.6343837380409241 -1.996342778205872 -0.1215425282716751 0.6629846692085266 -2.051751613616943 -0.1488334387540817 0.6629846692085266 -2.051751613616943 -0.1488334387540817 -0.6276903748512268 -2.015124082565308 -0.08294735848903656 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.2258673459291458 -2.021323442459106 -0.08294738829135895 -0.6276903748512268 -2.015124082565308 -0.08294735848903656 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.6185629963874817 -2.015124082565308 -0.08294735848903656 0.6185629963874817 -2.015124082565308 -0.08294735848903656 0.2167398035526276 -2.021323442459106 -0.08294738829135895 0.6518086194992065 -2.069501638412476 -0.08588512986898422 0.6518086194992065 -2.069501638412476 -0.08588512986898422 0.7089411616325378 -2.071079969406128 -0.1575712114572525 0.7089411616325378 -2.071079969406128 -0.1575712114572525 0.7086280584335327 -2.088963031768799 -0.08544092625379562 0.7086280584335327 -2.088963031768799 -0.08544092625379562 -0.7801192998886108 -2.044661283493042 -0.08544092625379562 -0.7801192998886108 -2.044661283493042 -0.08544092625379562 -0.7858226895332336 -2.048605442047119 -0.09390366077423096 -0.7858226895332336 -2.048605442047119 -0.09390366077423096 -0.7880875468254089 -2.050557851791382 -0.1065675467252731 -0.7880875468254089 -2.050557851791382 -0.1065675467252731 -0.789569079875946 -2.051625490188599 -0.1215060725808144 -0.789569079875946 -2.051625490188599 -0.1215060725808144 -0.7880875468254089 -2.050557851791382 -0.1364448219537735 -0.7880875468254089 -2.050557851791382 -0.1364448219537735 -0.7858226895332336 -2.048605442047119 -0.1491094380617142 -0.7858226895332336 -2.048605442047119 -0.1491094380617142 -0.7801192998886108 -2.044661283493042 -0.1575712114572525 -0.7801192998886108 -2.044661283493042 -0.1575712114572525 -0.7726680636405945 -2.039297103881836 -0.160543292760849 -0.7726680636405945 -2.039297103881836 -0.160543292760849 -0.6423077583312988 -1.997771978378296 -0.106772854924202 -0.6423077583312988 -1.997771978378296 -0.106772854924202 0.6331802010536194 -1.997771978378296 -0.106772854924202 0.6331802010536194 -1.997771978378296 -0.106772854924202 -0.6743361949920654 -2.048221349716187 -0.1363121122121811 -0.6743361949920654 -2.048221349716187 -0.1363121122121811 0.6652085781097412 -2.048221349716187 -0.1363121122121811 0.6652085781097412 -2.048221349716187 -0.1363121122121811 -0.6337444186210632 -2.007936954498291 -0.08588512986898422 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.2258673459291458 -2.011924266815186 -0.08588515222072601 -0.6337444186210632 -2.007936954498291 -0.08588512986898422 0.2167398035526276 -2.011924266815186 -0.08588515222072601 0.6246169209480286 -2.007936954498291 -0.08588512986898422 0.6246169209480286 -2.007936954498291 -0.08588512986898422 0.2167398035526276 -2.011924266815186 -0.08588515222072601 -0.6648588180541992 -2.063269138336182 -0.08294735848903656 -0.6648588180541992 -2.063269138336182 -0.08294735848903656 0.6557315587997437 -2.063269138336182 -0.08294735848903656 0.6557315587997437 -2.063269138336182 -0.08294735848903656 0.7635407447814941 -2.039297103881836 -0.160543292760849 0.7635407447814941 -2.039297103881836 -0.160543292760849 0.770991861820221 -2.044661283493042 -0.1575712114572525 0.770991861820221 -2.044661283493042 -0.1575712114572525 0.7766953706741333 -2.048605442047119 -0.1491094380617142 0.7766953706741333 -2.048605442047119 -0.1491094380617142 0.7789598703384399 -2.050557851791382 -0.1364448219537735 0.7789598703384399 -2.050557851791382 -0.1364448219537735 0.7804414033889771 -2.051625490188599 -0.1215060725808144 0.7804414033889771 -2.051625490188599 -0.1215060725808144 0.7789598703384399 -2.050557851791382 -0.1065675467252731 0.7789598703384399 -2.050557851791382 -0.1065675467252731 0.7766953706741333 -2.048605442047119 -0.09390366077423096 0.7766953706741333 -2.048605442047119 -0.09390366077423096 0.770991861820221 -2.044661283493042 -0.08544092625379562 0.770991861820221 -2.044661283493042 -0.08544092625379562 -0.7726680636405945 -2.039297103881836 -0.08246933668851852 -0.7726680636405945 -2.039297103881836 -0.08246933668851852 -0.7180059552192688 -2.080292224884033 -0.08246933668851852 -0.7180059552192688 -2.080292224884033 -0.08246933668851852 -0.7639322280883789 -2.032893419265747 -0.1575712114572525 -0.7639322280883789 -2.032893419265747 -0.1575712114572525 -0.7181222438812256 -2.063268184661865 -0.1491094380617142 -0.7181222438812256 -2.063268184661865 -0.1491094380617142 -0.6388782262802124 -2.00184178352356 -0.09425176680088043 -0.6388782262802124 -2.00184178352356 -0.09425176680088043 0.6297513246536255 -2.00184178352356 -0.09425176680088043 0.6297513246536255 -2.00184178352356 -0.09425176680088043 -0.6748786568641663 -2.047461271286011 -0.1215425282716751 -0.6748786568641663 -2.047461271286011 -0.1215425282716751 0.6657513976097107 -2.047461271286011 -0.1215425282716751 0.6657513976097107 -2.047461271286011 -0.1215425282716751 0.70899498462677 -2.063268184661865 -0.1491094380617142 0.70899498462677 -2.063268184661865 -0.1491094380617142 -0.6687852740287781 -2.057035684585571 -0.08588512986898422 -0.6687852740287781 -2.057035684585571 -0.08588512986898422 0.6596575975418091 -2.057035684585571 -0.08588512986898422 0.6596575975418091 -2.057035684585571 -0.08588512986898422 0.708878755569458 -2.080292224884033 -0.08246933668851852 0.708878755569458 -2.080292224884033 -0.08246933668851852 0.7548051476478577 -2.032893419265747 -0.1575712114572525 0.7548051476478577 -2.032893419265747 -0.1575712114572525 0.7635407447814941 -2.039297103881836 -0.08246933668851852 0.7635407447814941 -2.039297103881836 -0.08246933668851852 -0.7931804656982422 -1.947999954223633 -0.1005254313349724 -0.7931804656982422 -1.947999954223633 -0.1005254313349724 -0.799446702003479 -1.950582027435303 -0.1023855954408646 -0.799446702003479 -1.950582027435303 -0.1023855954408646 -0.8047597408294678 -1.952769994735718 -0.1076830625534058 -0.8047597408294678 -1.952769994735718 -0.1076830625534058 -0.8083102107048035 -1.954230546951294 -0.1156112402677536 -0.8083102107048035 -1.954230546951294 -0.1156112402677536 -0.8095563650131226 -1.954744100570679 -0.1249629184603691 -0.8095563650131226 -1.954744100570679 -0.1249629184603691 -0.8083102107048035 -1.954230546951294 -0.1343148648738861 -0.8083102107048035 -1.954230546951294 -0.1343148648738861 -0.8047597408294678 -1.952769994735718 -0.1422431319952011 -0.8047597408294678 -1.952769994735718 -0.1422431319952011 -0.799446702003479 -1.950582027435303 -0.1475403010845184 -0.799446702003479 -1.950582027435303 -0.1475403010845184 -0.7931804656982422 -1.947999954223633 -0.1494005620479584 -0.7931804656982422 -1.947999954223633 -0.1494005620479584 -0.6743361949920654 -2.048221349716187 -0.106772854924202 -0.6743361949920654 -2.048221349716187 -0.106772854924202 0.6652085781097412 -2.048221349716187 -0.106772854924202 0.6652085781097412 -2.048221349716187 -0.106772854924202 -0.7181578874588013 -2.058051824569702 -0.1364448219537735 -0.7181578874588013 -2.058051824569702 -0.1364448219537735 0.7090305685997009 -2.058051824569702 -0.1364448219537735 0.7090305685997009 -2.058051824569702 -0.1364448219537735 -0.6721116900444031 -2.051751613616943 -0.09425176680088043 -0.6721116900444031 -2.051751613616943 -0.09425176680088043 0.6629846692085266 -2.051751613616943 -0.09425176680088043 0.6629846692085266 -2.051751613616943 -0.09425176680088043 -0.7180686593055725 -2.071079969406128 -0.08544092625379562 -0.7180686593055725 -2.071079969406128 -0.08544092625379562 0.7089411616325378 -2.071079969406128 -0.08544092625379562 0.7089411616325378 -2.071079969406128 -0.08544092625379562 0.7840532064437866 -1.947999954223633 -0.1494005620479584 0.7840532064437866 -1.947999954223633 -0.1494005620479584 0.7903189063072205 -1.950582027435303 -0.1475403010845184 0.7903189063072205 -1.950582027435303 -0.1475403010845184 0.7956326007843018 -1.952769994735718 -0.1422431319952011 0.7956326007843018 -1.952769994735718 -0.1422431319952011 0.7991833090782166 -1.954230546951294 -0.1343148648738861 0.7991833090782166 -1.954230546951294 -0.1343148648738861 0.8004284501075745 -1.954744100570679 -0.1249629184603691 0.8004284501075745 -1.954744100570679 -0.1249629184603691 0.7991833090782166 -1.954230546951294 -0.1156112402677536 0.7991833090782166 -1.954230546951294 -0.1156112402677536 0.7956326007843018 -1.952769994735718 -0.1076830625534058 0.7956326007843018 -1.952769994735718 -0.1076830625534058 0.7903189063072205 -1.950582027435303 -0.1023855954408646 0.7903189063072205 -1.950582027435303 -0.1023855954408646 0.7840532064437866 -1.947999954223633 -0.1005254313349724 0.7840532064437866 -1.947999954223633 -0.1005254313349724 -0.7869135737419128 -1.945419311523438 -0.1023855954408646 -0.7869135737419128 -1.945419311523438 -0.1023855954408646 -0.7639322280883789 -2.032893419265747 -0.08544092625379562 -0.7639322280883789 -2.032893419265747 -0.08544092625379562 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7591820955276489 -2.029483556747437 -0.1491094380617142 -0.7591820955276489 -2.029483556747437 -0.1491094380617142 -0.7181704640388489 -2.056217908859253 -0.1215060725808144 -0.7181704640388489 -2.056217908859253 -0.1215060725808144 0.7090427279472351 -2.056217908859253 -0.1215060725808144 0.7090427279472351 -2.056217908859253 -0.1215060725808144 0.7500547170639038 -2.029483556747437 -0.1491094380617142 0.7500547170639038 -2.029483556747437 -0.1491094380617142 -0.7181222438812256 -2.063268184661865 -0.093903549015522 -0.7181222438812256 -2.063268184661865 -0.093903549015522 0.70899498462677 -2.063268184661865 -0.093903549015522 0.70899498462677 -2.063268184661865 -0.093903549015522 0.7548051476478577 -2.032893419265747 -0.08544092625379562 0.7548051476478577 -2.032893419265747 -0.08544092625379562 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7777858972549439 -1.945419311523438 -0.1023855954408646 0.7777858972549439 -1.945419311523438 -0.1023855954408646 -0.7966580986976624 -1.939646244049072 -0.1261951923370361 -0.7966580986976624 -1.939646244049072 -0.1261951923370361 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7869135737419128 -1.945419311523438 -0.1475403010845184 -0.7181578874588013 -2.058051824569702 -0.1065675467252731 -0.7181578874588013 -2.058051824569702 -0.1065675467252731 0.7090305685997009 -2.058051824569702 -0.1065675467252731 0.7090305685997009 -2.058051824569702 -0.1065675467252731 -0.7549589276313782 -2.026442289352417 -0.1364448219537735 -0.7549589276313782 -2.026442289352417 -0.1364448219537735 0.7458319067955017 -2.026442289352417 -0.1364448219537735 0.7458319067955017 -2.026442289352417 -0.1364448219537735 -0.7591820955276489 -2.029483556747437 -0.093903549015522 -0.7591820955276489 -2.029483556747437 -0.093903549015522 0.7500547170639038 -2.029483556747437 -0.093903549015522 0.7500547170639038 -2.029483556747437 -0.093903549015522 0.7777858972549439 -1.945419311523438 -0.1475403010845184 0.7875306010246277 -1.939646244049072 -0.1261951923370361 0.7875306010246277 -1.939646244049072 -0.1261951923370361 0.7777858972549439 -1.945419311523438 -0.1475403010845184 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1076830625534058 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.781600832939148 -1.943228840827942 -0.1422431319952011 -0.7534772753715515 -2.025376796722412 -0.1215060725808144 -0.7534772753715515 -2.025376796722412 -0.1215060725808144 0.7443500757217407 -2.025376796722412 -0.1215060725808144 0.7443500757217407 -2.025376796722412 -0.1215060725808144 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1422431319952011 -0.7549589276313782 -2.026442289352417 -0.1065675467252731 -0.7549589276313782 -2.026442289352417 -0.1065675467252731 0.7458319067955017 -2.026442289352417 -0.1065675467252731 0.7458319067955017 -2.026442289352417 -0.1065675467252731 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1422431319952011 0.7724730968475342 -1.943228840827942 -0.1076830625534058 0.7724730968475342 -1.943228840827942 -0.1076830625534058 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 -0.7780513763427734 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1343148648738861 0.7689233422279358 -1.941768288612366 -0.1156112402677536 0.7689233422279358 -1.941768288612366 -0.1156112402677536 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 -0.7768046259880066 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691 0.7676771879196167 -1.941254854202271 -0.1249629184603691</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"816\" source=\"#ID232\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID229\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID233\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"2448\">0.004488788996345108 0.5271326193254718 -0.8497711765036595 1.291284191913415e-005 0.001617569529035767 -0.9999986916501827 -1.184745062262114e-005 -0.001670929507781155 -0.9999986039261345 1.184745062262114e-005 0.001670929507781155 0.9999986039261345 -1.291284191913415e-005 -0.001617569529035767 0.9999986916501827 -0.004488788996345108 -0.5271326193254718 0.8497711765036595 1 -0 -0 1 -0 -0 1 -0 -0 -1 0 0 -1 0 0 -1 0 0 -0.004488791232266994 0.5271326188299925 -0.8497711767992057 1.184746344884554e-005 -0.001670930314586899 -0.9999986039247862 -1.291285525506731e-005 0.001617570336250907 -0.9999986916488768 1.291285525506731e-005 -0.001617570336250907 0.9999986916488768 -1.184746344884554e-005 0.001670930314586899 0.9999986039247862 0.004488791232266994 -0.5271326188299925 0.8497711767992057 -0.004485367141985272 -0.527177061858388 -0.8497436242373103 0.004485367141985272 0.527177061858388 0.8497436242373103 0.00450622159746319 0.5290845697262511 -0.8485571354036818 -0.00450622159746319 -0.5290845697262511 0.8485571354036818 1 -0 -0 -1 0 0 1 -0 -0 -1 0 0 -0.004506223850392898 0.529084570208921 -0.8485571350907679 0.004506223850392898 -0.529084570208921 0.8485571350907679 0.004485369376187172 -0.5271770613638911 -0.8497436245323006 -0.004485369376187172 0.5271770613638911 0.8497436245323006 0.9507847764805869 -0.2039779657307184 -0.2332408590044168 0.9283498084308596 -0.2517515811088936 -0.273473535457379 0.9686109501656518 -0.01105674204799939 -0.2483356109672492 -0.9686109501656518 0.01105674204799939 0.2483356109672492 -0.9283498084308596 0.2517515811088936 0.273473535457379 -0.9507847764805869 0.2039779657307184 0.2332408590044168 -0.004503646784154841 -0.5291183014219199 -0.8485361160646174 0.004503646784154841 0.5291183014219199 0.8485361160646174 0.969486083937551 -0.003329945691308154 -0.245123733067863 0.9518157133827669 0.1909252690972961 -0.2399883109190519 -0.9518157133827669 -0.1909252690972961 0.2399883109190519 -0.969486083937551 0.003329945691308154 0.245123733067863 0.007114028034887915 0.8353288408671091 -0.5497045735854221 -0.007114028034887915 -0.8353288408671091 0.5497045735854221 1 -0 -0 -1 0 0 -0.007114031583790776 0.8353288406995403 -0.5497045737941306 0.007114031583790776 -0.8353288406995403 0.5497045737941306 1 -0 -0 -1 0 0 0.004503649035743961 -0.5291183019045855 -0.8485361157516932 -0.004503649035743961 0.5291183019045855 0.8485361157516932 -0.9686088766577514 -0.01105706906332083 -0.2483436838003697 -0.9694840650325932 -0.003330049845388831 -0.2451317164626107 -0.9518126386933298 0.190931131146001 -0.2399958415951187 0.9518126386933298 -0.190931131146001 0.2399958415951187 0.9694840650325932 0.003330049845388831 0.2451317164626107 0.9686088766577514 0.01105706906332083 0.2483436838003697 -0.9283454604112509 -0.2517587064041628 -0.2734817359231238 -0.9507815996920912 -0.2039844377888872 -0.2332481486033696 0.9507815996920912 0.2039844377888872 0.2332481486033696 0.9283454604112509 0.2517587064041628 0.2734817359231238 0.4905464884192308 -0.8041624847744235 -0.3356886068680113 -0.4905464884192308 0.8041624847744235 0.3356886068680113 0.4815280316392164 -0.7597623620804733 -0.4369117850454046 -0.4815280316392164 0.7597623620804733 0.4369117850454046 0.519680435363879 0.6575142275990822 -0.5455339454193402 -0.519680435363879 -0.6575142275990822 0.5455339454193402 0.4571189376483561 0.7721023227499775 -0.4414751182652633 -0.4571189376483561 -0.7721023227499775 0.4414751182652633 1 -0 -0 -1 0 0 0.008217380333334407 0.9652946846739656 -0.2610338031762294 -0.008217380333334407 -0.9652946846739656 0.2610338031762294 -0.4571111868059822 0.7721059895862967 -0.4414767306912019 -0.008217384433657467 0.9652946846164316 -0.2610338032599099 0.008217384433657467 -0.9652946846164316 0.2610338032599099 0.4571111868059822 -0.7721059895862967 0.4414767306912019 1 -0 -0 -1 0 0 -0.00712138017653666 -0.8359415949672389 -0.5487722075214908 0.00712138017653666 0.8359415949672389 0.5487722075214908 -0.4815203449022732 -0.7597661310854951 -0.4369137025781796 0.007121383731482815 -0.8359415950919007 -0.5487722072854615 -0.007121383731482815 0.8359415950919007 0.5487722072854615 0.4815203449022732 0.7597661310854951 0.4369137025781796 -0.5196764354100114 0.6575156548129167 -0.5455360356158752 0.5196764354100114 -0.6575156548129167 0.5455360356158752 -0.4905403092732229 -0.8041655748678753 -0.3356902339591523 0.4905403092732229 0.8041655748678753 0.3356902339591523 -2.426986289955367e-017 -0.7364613431137198 -0.6764796302174486 -0.4608133353180124 -0.8211656453082652 -0.3366571742270609 0.4608133353180124 0.8211656453082652 0.3366571742270609 2.426986289955367e-017 0.7364613431137198 0.6764796302174486 -1.844326444024408e-017 -0.5303087739567048 -0.8478045790537678 -0.5361227053423503 -0.6069014056672079 -0.586722360759812 0.5361227053423503 0.6069014056672079 0.586722360759812 1.844326444024408e-017 0.5303087739567048 0.8478045790537678 -1.84392460472661e-017 0.5302604510494343 -0.8478348035159034 -1.84392460472661e-017 0.5302604510494343 -0.8478348035159034 1.84392460472661e-017 -0.5302604510494343 0.8478348035159034 1.84392460472661e-017 -0.5302604510494343 0.8478348035159034 1 -0 -0 -1 0 0 0.1971558893645083 0.9573518568225626 -0.2112036399479925 0.008510868807066028 0.9999637818978656 -2.160247128884518e-006 -0.008510868807066028 -0.9999637818978656 2.160247128884518e-006 -0.1971558893645083 -0.9573518568225626 0.2112036399479925 -0.197150763684683 0.957352793676903 -0.2112041780305861 -0.008510873054234794 0.9999637818617173 -2.160248014874601e-006 0.008510873054234794 -0.9999637818617173 2.160248014874601e-006 0.197150763684683 -0.957352793676903 0.2112041780305861 1 -0 -0 -1 0 0 0.4037720748323315 -0.884629716808151 -0.2332345937581405 -0.00822400988133839 -0.9653911586344171 -0.2606765744979195 0.00822400988133839 0.9653911586344171 0.2606765744979195 -0.4037720748323315 0.884629716808151 0.2332345937581405 -0.4037636373369974 -0.8846333061352755 -0.2332355865655364 0.008224013985609841 -0.9653911586268107 -0.2606765743966046 -0.008224013985609841 0.9653911586268107 0.2606765743966046 0.4037636373369974 0.8846333061352755 0.2332355865655364 0 0.5302604510494342 -0.8478348035159036 0 0.5302604510494342 -0.8478348035159036 -0 -0.5302604510494342 0.8478348035159036 -0 -0.5302604510494342 0.8478348035159036 0 -0.530308773956705 -0.8478045790537678 0 -0.73646134311372 -0.6764796302174486 0.5361196403178399 -0.6069025460851478 -0.5867239818013534 -0.5361196403178399 0.6069025460851478 0.5867239818013534 -0 0.73646134311372 0.6764796302174486 -0 0.530308773956705 0.8478045790537678 0.4608080865995052 -0.8211681029947009 -0.3366583638476655 -0.4608080865995052 0.8211681029947009 0.3366583638476655 -0.385742073903384 -0.904729134348099 -0.1807435915391077 0.385742073903384 0.904729134348099 0.1807435915391077 0.3995130760539953 -0.8964009062419867 -0.1919758249114185 -0.3995130760539953 0.8964009062419867 0.1919758249114185 -1.844326444024408e-017 -0.5303087739567048 -0.8478045790537678 1.844326444024408e-017 0.5303087739567048 0.8478045790537678 -0.5296020992421222 0.6561021605196902 -0.5376351657394927 1.84392460472661e-017 0.5302604510494341 -0.8478348035159036 -1.84392460472661e-017 -0.5302604510494341 0.8478348035159036 0.5296020992421222 -0.6561021605196902 0.5376351657394927 0.3363076841507985 0.9088032483512361 -0.2469287293276507 -0.3363076841507985 -0.9088032483512361 0.2469287293276507 1 -0 -0 -1 0 0 0.1687919888662012 0.9856383382082573 -0.005131349594128028 0.008215461209643943 0.9652926464581436 0.2610414007220816 -0.008215461209643943 -0.9652926464581436 -0.2610414007220816 -0.1687919888662012 -0.9856383382082573 0.005131349594128028 -0.1687866907192891 0.985639246299354 -0.005131197761984126 -0.008215465309037044 0.9652926463999988 0.2610414008080769 0.008215465309037044 -0.9652926463999988 -0.2610414008080769 0.1687866907192891 -0.985639246299354 0.005131197761984126 -0.3362995806041703 0.9088060116563134 -0.2469295957612287 0.3362995806041703 -0.9088060116563134 0.2469295957612287 1 -0 -0 -1 0 0 0.4054173713524426 -0.9140433536476199 -0.01270836961564649 -0.0085183821524327 -0.9999637179227549 1.898996257460486e-006 0.0085183821524327 0.9999637179227549 -1.898996257460486e-006 -0.4054173713524426 0.9140433536476199 0.01270836961564649 -0.4054090877927001 -0.9140470268562219 -0.01270843146859746 0.008518386403168153 -0.9999637178865443 1.898997386052117e-006 -0.008518386403168153 0.9999637178865443 -1.898997386052117e-006 0.4054090877927001 0.9140470268562219 0.01270843146859746 -0.3995054948484711 -0.8964041377589346 -0.1919765126116719 0.3995054948484711 0.8964041377589346 0.1919765126116719 0.5295992578884425 0.6561032421321235 -0.5376366446846116 -1.843957923624534e-017 0.530260451049434 -0.8478348035159036 1.843957923624534e-017 -0.530260451049434 0.8478348035159036 -0.5295992578884425 -0.6561032421321235 0.5376366446846116 0 -0.530308773956705 -0.8478045790537678 -0 0.530308773956705 0.8478045790537678 0.3857360849191797 -0.9047315918850344 -0.1807440716493763 -0.3857360849191797 0.9047315918850344 0.1807440716493763 -0.4309198326745419 -0.8770224328284038 -0.2124611732140556 0.4309198326745419 0.8770224328284038 0.2124611732140556 -0.5327637842338816 -0.7277249795655932 -0.4319480342877498 0.5327637842338816 0.7277249795655932 0.4319480342877498 -0.9518042055811592 -0.190973276116534 -0.2399957542277287 -0.9694840947041866 0.00331998404263018 -0.2451317356475093 0.9694840947041866 -0.00331998404263018 0.2451317356475093 0.9518042055811592 0.190973276116534 0.2399957542277287 -0.9686097296440215 0.01105536758733848 -0.2483404326452789 0.9686097296440215 -0.01105536758733848 0.2483404326452789 1 -0 -0 -1 0 0 0.2033484727129228 0.9512258883415256 0.2319885945347255 0.007110930513536101 0.8353317410655891 0.5497002065085688 -0.007110930513536101 -0.8353317410655891 -0.5497002065085688 -0.2033484727129228 -0.9512258883415256 -0.2319885945347255 -0.2033426129463571 0.9512269403845534 0.2319894171008448 -0.007110934060996255 0.8353317408991332 0.5497002067156275 0.007110934060996255 -0.8353317408991332 -0.5497002067156275 0.2033426129463571 -0.9512269403845534 -0.2319894171008448 0.1614152367059206 0.9743133093652557 -0.1570308777052931 -0.1614152367059206 -0.9743133093652557 0.1570308777052931 -0.1614100521526407 0.9743141614547412 -0.1570309200534283 0.1614100521526407 -0.9743141614547412 0.1570309200534283 1 -0 -0 -1 0 0 0.4682095373053083 -0.861961179723896 0.1944293028978371 -0.008224404365587646 -0.9653911472719587 0.2606766041319447 0.008224404365587646 0.9653911472719587 -0.2606766041319447 -0.4682095373053083 0.861961179723896 -0.1944293028978371 -0.4682019899704703 -0.8619651573705387 0.1944298435602781 0.008224408470051839 -0.9653911472649058 0.2606766040285682 -0.008224408470051839 0.9653911472649058 -0.2606766040285682 0.4682019899704703 0.8619651573705387 -0.1944298435602781 0.3830001893543202 -0.9231847577728879 -0.03226078068443357 -0.3830001893543202 0.9231847577728879 0.03226078068443357 -0.3829925019228482 -0.9231879427444888 -0.03226090268538033 0.3829925019228482 0.9231879427444888 0.03226090268538033 0.969482534593383 0.003320064267726581 -0.2451379046407311 0.9686081273789292 0.011055620241521 -0.2483466706774216 -0.9686081273789292 -0.011055620241521 0.2483466706774216 -0.969482534593383 -0.003320064267726581 0.2451379046407311 0.9518018292501137 -0.1909778067330918 -0.2400015732689168 -0.9518018292501137 0.1909778067330918 0.2400015732689168 0.5327584513434122 -0.7277280272118245 -0.4319494772916799 -0.5327584513434122 0.7277280272118245 0.4319494772916799 0.4309135647672034 -0.8770253533943997 -0.2124618299908239 -0.4309135647672034 0.8770253533943997 0.2124618299908239 -0.4170594428444811 -0.9088731196315648 -0.003327693711584223 0.4170594428444811 0.9088731196315648 0.003327693711584223 -0.389889799865892 -0.920520092443446 -0.02507395797325029 0.389889799865892 0.920520092443446 0.02507395797325029 -0.5808401353985782 0.4821791438864718 -0.6558414521140539 0.5808401353985782 -0.4821791438864718 0.6558414521140539 -0.4351576601727508 0.8653660605412787 -0.2485546057836074 0.4351576601727508 -0.8653660605412787 0.2485546057836074 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 -0.007381905498101515 -0.8670377328832372 0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381905498101515 0.8670377328832372 -0.4981877931341889 0.007381909181881517 -0.8670377328596581 0.4981877931206408 0.007381909181881517 -0.8670377328596581 0.4981877931206408 0.007381909181881517 -0.8670377328596581 0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 -0.007381909181881517 0.8670377328596581 -0.4981877931206408 0.3983226025615785 0.8257120510117484 0.3994229751811265 0.006168303546718681 0.724165675140333 0.6895984534349694 -0.006168303546718681 -0.724165675140333 -0.6895984534349694 -0.3983226025615785 -0.8257120510117484 -0.3994229751811265 -0.3983149935338047 0.82571494562648 0.3994245792327065 -0.006168306624853458 0.7241656751259054 0.6895984534225869 0.006168306624853458 -0.7241656751259054 -0.6895984534225869 0.3983149935338047 -0.82571494562648 -0.3994245792327065 0.1616139654679756 0.9868432281948369 0.00462267581696379 -0.1616139654679756 -0.9868432281948369 -0.00462267581696379 -0.1616088560296658 0.9868440655201934 0.004622553445772205 0.1616088560296658 -0.9868440655201934 -0.004622553445772205 0.4351517892962836 0.8653687240638655 -0.248555610848599 -0.4351517892962836 -0.8653687240638655 0.248555610848599 1 -0 -0 -1 0 0 -0.00711704432119061 -0.8354119817383284 0.5495781731911931 -0.007114343072514042 -0.8359433818649293 0.5487695768160543 0.007114343072514042 0.8359433818649293 -0.5487695768160543 0.00711704432119061 0.8354119817383284 -0.5495781731911931 0.007117047871469148 -0.8354119815705081 0.5495781734003199 0.007114346624128299 -0.8359433819897826 0.548769576579821 -0.007114346624128299 0.8359433819897826 -0.548769576579821 -0.007117047871469148 0.8354119815705081 -0.5495781734003199 0.4205973650660567 -0.9033844932356513 0.08363201468849163 -0.4205973650660567 0.9033844932356513 -0.08363201468849163 -0.4205896914261071 -0.9033880303471145 0.08363239857646454 0.4205896914261071 0.9033880303471145 -0.08363239857646454 0.3898839349670044 -0.9205225746850979 -0.02507402540007215 -0.3898839349670044 0.9205225746850979 0.02507402540007215 0.5808354696970706 0.4821816265219495 -0.6558437589749793 -0.5808354696970706 -0.4821816265219495 0.6558437589749793 0.4170529949296572 -0.9088760784289615 -0.003327683848527164 -0.4170529949296572 0.9088760784289615 0.003327683848527164 0.375636554559482 -0.9267659594296408 -0.001426646816343268 -0.375636554559482 0.9267659594296408 0.001426646816343268 0.3615379352414891 -0.8963778338843952 -0.2565094546055576 -0.3615379352414891 0.8963778338843952 0.2565094546055576 -0.01317855971440936 -0.5315374133761069 -0.8469322899413455 0.3116445996116282 -0.7750366101410903 -0.5497234727332603 -0.3116445996116282 0.7750366101410903 0.5497234727332603 0.01317855971440936 0.5315374133761069 0.8469322899413455 -0.0009604106469768857 -0.003481589405118227 -0.9999934780520339 0.1909697935805264 -0.4542111818604366 -0.8701854631127529 -0.1909697935805264 0.4542111818604366 0.8701854631127529 0.0009604106469768857 0.003481589405118227 0.9999934780520339 -0.0164933863787913 0.09664605067485214 -0.9951821487017912 0.0164933863787913 -0.09664605067485214 0.9951821487017912 0.006165103925877515 0.7241364373548521 0.6896291841189768 -0.006165103925877515 -0.7241364373548521 -0.6896291841189768 0.1113597444880326 0.3410123073759261 0.9334396678552434 0.1127160108475753 0.2964221010645066 0.9483823273865414 0.06760990946514464 0.8518280438394437 0.5194399713833947 -0.06760990946514464 -0.8518280438394437 -0.5194399713833947 -0.1127160108475753 -0.2964221010645066 -0.9483823273865414 -0.1113597444880326 -0.3410123073759261 -0.9334396678552434 -0.1113597986625791 0.3410123265116291 0.9334396544013737 -0.0676099442996163 0.8518280349382184 0.5194399814464574 -0.1127160663844531 0.2964220991850565 0.9483823213733691 0.1127160663844531 -0.2964220991850565 -0.9483823213733691 0.0676099442996163 -0.8518280349382184 -0.5194399814464574 0.1113597986625791 -0.3410123265116291 -0.9334396544013737 -0.006165107002489781 0.7241364373411164 0.6896291841058957 0.006165107002489781 -0.7241364373411164 -0.6896291841058957 0.2520097343969997 0.9561807716861601 0.1490282712333903 -0.2520097343969997 -0.9561807716861601 -0.1490282712333903 -0.2520026543425559 0.9561827210020266 0.1490277365508405 0.2520026543425559 -0.9561827210020266 -0.1490277365508405 -0.2089810829856228 0.9593342405053436 -0.1897491026281595 0.2089810829856228 -0.9593342405053436 0.1897491026281595 0.2089764398195915 0.9593353216206724 -0.1897487504340671 -0.2089764398195915 -0.9593353216206724 0.1897487504340671 0.06511765981521719 0.8653027985546354 0.4970017677973647 -0.06511765981521719 -0.8653027985546354 -0.4970017677973647 -0.06511769217474663 0.8653027967235247 0.4970017667456341 0.06511769217474663 -0.8653027967235247 -0.4970017667456341 -0.004487133044256028 -0.5271690917589494 0.8497485594757354 -0.006053605977966533 -0.7118585486726083 0.7022967752570072 0.006053605977966533 0.7118585486726083 -0.7022967752570072 0.004487133044256028 0.5271690917589494 -0.8497485594757354 0.004487135279260867 -0.527169091262663 0.8497485597718208 0.006053608948403288 -0.711858542716506 0.7022967812685976 -0.006053608948403288 0.711858542716506 -0.7022967812685976 -0.004487135279260867 0.527169091262663 -0.8497485597718208 0.5230269111733532 -0.814656438621079 0.2505548586670826 0.9380631612546022 -0.3098704059889023 0.1549768917913092 -0.9380631612546022 0.3098704059889023 -0.1549768917913092 -0.5230269111733532 0.814656438621079 -0.2505548586670826 -0.5230218643211199 -0.8146592720761156 0.2505561810502257 -0.9380593085260298 -0.3098796964138935 0.1549816358092144 0.9380593085260298 0.3098796964138935 -0.1549816358092144 0.5230218643211199 0.8146592720761156 -0.2505561810502257 -0.4590575121611554 -0.8828407405763209 0.09928961328892443 0.4590575121611554 0.8828407405763209 -0.09928961328892443 0.4590519990438607 -0.8828435600932946 0.09929003260968643 -0.4590519990438607 0.8828435600932946 -0.09929003260968643 0.0009604082012670587 -0.003481586759837493 -0.9999934780635926 0.01649402129472259 0.09664494668425393 -0.9951822453912284 -0.01649402129472259 -0.09664494668425393 0.9951822453912284 -0.0009604082012670587 0.003481586759837493 0.9999934780635926 0.01317855819193988 -0.5315374160970591 -0.8469322882573572 -0.1909713844454057 -0.4542065493211052 -0.8701875320164152 0.1909713844454057 0.4542065493211052 0.8701875320164152 -0.01317855819193988 0.5315374160970591 0.8469322882573572 -0.3116373339559766 -0.775037729972948 -0.549726012849302 0.3116373339559766 0.775037729972948 0.549726012849302 -0.3615400346458993 -0.8963775113842584 -0.2565076225627719 0.3615400346458993 0.8963775113842584 0.2565076225627719 -0.3756351912458759 -0.9267665112885345 -0.001427113083451963 0.3756351912458759 0.9267665112885345 0.001427113083451963 0.3660163128328314 -0.8951196799710379 0.2545443326196945 -0.3660163128328314 0.8951196799710379 -0.2545443326196945 -0.4604682813638613 -0.8639448175538647 0.2038830892438882 0.4604682813638613 0.8639448175538647 -0.2038830892438882 -0.2452495829276179 0.537978731336872 -0.8064933519273415 0.2452495829276179 -0.537978731336872 0.8064933519273415 -0.3420778914638995 0.8352557333912953 -0.4305003786393016 0.3420778914638995 -0.8352557333912953 0.4305003786393016 0.9533547772720478 0.2073353234407452 0.2193780579417316 0.4929498273097556 0.8475452044592331 0.1966407743918826 -0.4929498273097556 -0.8475452044592331 -0.1966407743918826 -0.9533547772720478 -0.2073353234407452 -0.2193780579417316 0.9819633613475416 0.008174349160209676 0.1888945128553083 0.9712395268594098 0.1527028035397002 0.1826899976928819 -0.9712395268594098 -0.1527028035397002 -0.1826899976928819 -0.9819633613475416 -0.008174349160209676 -0.1888945128553083 -0.9819621457066552 0.008174608269845507 0.1889008210114933 -0.9533518229372173 0.2073416252522031 0.2193849405498462 -0.9712376137677075 0.1527078377669839 0.1826959602381562 0.9712376137677075 -0.1527078377669839 -0.1826959602381562 0.9533518229372173 -0.2073416252522031 -0.2193849405498462 0.9819621457066552 -0.008174608269845507 -0.1889008210114933 -0.4929436839516181 0.8475484893400156 0.1966420165418993 0.4929436839516181 -0.8475484893400156 -0.1966420165418993 -0.1616126467929127 0.9868433789549992 0.004636573009163386 0.1616126467929127 -0.9868433789549992 -0.004636573009163386 0.1616086986990226 0.9868440259602455 0.004636478338450456 -0.1616086986990226 -0.9868440259602455 -0.004636478338450456 0.3420719352007187 0.8352574249071307 -0.4305018295960471 -0.3420719352007187 -0.8352574249071307 0.4305018295960471 -0.002537005133132722 -0.2983222820992422 0.9544618272136685 0.002537005133132722 0.2983222820992422 -0.9544618272136685 0.002537006399231014 -0.2983222820982839 0.9544618272106026 -0.002537006399231014 0.2983222820982839 -0.9544618272106026 0.9692117246097193 -0.1700508427884214 0.1780767917107711 0.9755244633565797 -0.1339045376042436 0.1744178781027079 -0.9755244633565797 0.1339045376042436 -0.1744178781027079 -0.9692117246097193 0.1700508427884214 -0.1780767917107711 -0.969209682975027 -0.1700564158979245 0.1780825815159918 -0.975522834811217 -0.1339089090479584 0.1744236303929958 0.975522834811217 0.1339089090479584 -0.1744236303929958 0.969209682975027 0.1700564158979245 -0.1780825815159918 -0.5420085214821976 -0.8034774453955865 0.2462737448070021 0.5420085214821976 0.8034774453955865 -0.2462737448070021 0.5420050527543967 -0.8034794852516837 0.2462747237708181 -0.5420050527543967 0.8034794852516837 -0.2462747237708181 0.4604621041029297 -0.8639479349109633 0.203883830766897 -0.4604621041029297 0.8639479349109633 -0.203883830766897 0.2452400623599147 0.537977272359414 -0.8064972202298221 -0.2452400623599147 -0.537977272359414 0.8064972202298221 -0.3660181200272975 -0.8951191958143714 0.2545434365610635 0.3660181200272975 0.8951191958143714 -0.2545434365610635 0.5349298534122274 -0.820438879235361 0.201816989788763 -0.5349298534122274 0.820438879235361 -0.201816989788763 0.5418619307912237 -0.8404674244212702 -0.0003955324055206845 -0.5418619307912237 0.8404674244212702 0.0003955324055206845 0.5346032101380197 -0.8189075422524407 -0.2087818118328113 -0.5346032101380197 0.8189075422524407 0.2087818118328113 0.5007885610287516 -0.7381352419440627 -0.452069885905855 -0.5007885610287516 0.7381352419440627 0.452069885905855 0.3684123294857594 -0.516149390177032 -0.7732154696478559 -0.3684123294857594 0.516149390177032 0.7732154696478559 0.0478582816317733 -0.0550397329247885 -0.9973365593814466 -0.0478582816317733 0.0550397329247885 0.9973365593814466 0.9820117227801273 -0.01516361406153519 0.1882100983767855 -0.9820117227801273 0.01516361406153519 -0.1882100983767855 -0.9820105098488078 -0.01516412257358528 0.188216385931347 0.9820105098488078 0.01516412257358528 -0.188216385931347 -0.1605722101379926 0.9819392217079419 0.1000596332343944 0.1605722101379926 -0.9819392217079419 -0.1000596332343944 0.1605682782363152 0.9819398513304203 0.100059764108343 -0.1605682782363152 -0.9819398513304203 -0.100059764108343 -0.1756091928408706 0.9545543256001183 -0.2408058364489564 0.1756091928408706 -0.9545543256001183 0.2408058364489564 0.1756049463341025 0.9545549760381938 -0.2408063548657312 -0.1756049463341025 -0.9545549760381938 0.2408063548657312 -4.224825819991032e-018 -0.7626436742213498 0.6468188511246096 -1.429016437196659e-017 -0.7626436742213498 0.6468188511246096 1.429016437196659e-017 0.7626436742213498 -0.6468188511246096 4.224825819991032e-018 0.7626436742213498 -0.6468188511246096 -1.013364126958988e-017 -0.7626436742213497 0.6468188511246096 0 -0.7626436742213497 0.6468188511246096 -0 0.7626436742213497 -0.6468188511246096 1.013364126958988e-017 0.7626436742213497 -0.6468188511246096 -0.5591105295910246 -0.7248419592501981 0.4024916766975165 0.5591105295910246 0.7248419592501981 -0.4024916766975165 0.5591056566767783 -0.7248450914082306 0.4024928050703792 -0.5591056566767783 0.7248450914082306 -0.4024928050703792 -0.04785727603751437 -0.05503628285538993 -0.9973367980274921 0.04785727603751437 0.05503628285538993 0.9973367980274921 -0.3684095361632931 -0.5161481207247707 -0.773217647972571 0.3684095361632931 0.5161481207247707 0.773217647972571 -0.500786033776766 -0.7381333534427802 -0.4520757689917162 0.500786033776766 0.7381333534427802 0.4520757689917162 -0.5346042318944263 -0.8189072324190625 -0.2087804107964212 0.5346042318944263 0.8189072324190625 0.2087804107964212 -0.5418602855356823 -0.8404684850344925 -0.0003957562555456968 0.5418602855356823 0.8404684850344925 0.0003957562555456968 -0.534930478721305 -0.8204385991749377 0.2018164708809996 0.534930478721305 0.8204385991749377 -0.2018164708809996 0.4951674708618757 -0.7385095350908808 0.4576164795766258 -0.4951674708618757 0.7385095350908808 -0.4576164795766258 0.3183395078452557 -0.7721101324745773 0.5500053645874112 -0.3183395078452557 0.7721101324745773 -0.5500053645874112 -0.3312334875777305 0.4585333926876312 -0.8246402273097425 0.3312334875777305 -0.4585333926876312 0.8246402273097425 -0.3953916543466458 0.760631889798606 -0.5148830623495241 0.3953916543466458 -0.760631889798606 0.5148830623495241 -0.4339903309879185 0.8776667121096652 0.2033556860862441 0 0.7418548498667967 0.6705604981872348 -0 -0.7418548498667967 -0.6705604981872348 0.4339903309879185 -0.8776667121096652 -0.2033556860862441 -3.5007466452076e-018 -0.0927257244181379 0.995691689244784 -0.545325893063524 0.6066233389940663 0.5784702195810603 0.545325893063524 -0.6066233389940663 -0.5784702195810603 3.5007466452076e-018 0.0927257244181379 -0.995691689244784 3.500835953124784e-018 -0.09272572441813787 0.995691689244784 0 0.7418548498667967 0.6705604981872347 0.5453237625103464 0.6066240261518271 0.5784715074546947 -0.5453237625103464 -0.6066240261518271 -0.5784715074546947 -0 -0.7418548498667967 -0.6705604981872347 -3.500835953124784e-018 0.09272572441813787 -0.995691689244784 0.433984687094243 0.8776692990887326 0.2033565656791167 -0.433984687094243 -0.8776692990887326 -0.2033565656791167 -0.1638429889992566 0.9864740220782488 -0.004947597452530763 0.1638429889992566 -0.9864740220782488 0.004947597452530763 0.1638388899380074 0.9864747034689766 -0.004947480133999534 -0.1638388899380074 -0.9864747034689766 0.004947480133999534 0.3954027592399868 0.7606273271792183 -0.5148812747941054 -0.3954027592399868 -0.7606273271792183 0.5148812747941054 -2.143303475908384e-017 -0.09272572441813802 0.995691689244784 2.143303475908384e-017 0.09272572441813802 -0.995691689244784 1.039644819016881e-017 -0.09272572441813794 0.995691689244784 -1.039644819016881e-017 0.09272572441813794 -0.995691689244784 -0.9729811604997007 -0.1604862499171054 0.1659874239218137 -0.9663649709820766 -0.1661986424099368 0.1962568575105194 0.9663649709820766 0.1661986424099368 -0.1962568575105194 0.9729811604997007 0.1604862499171054 -0.1659874239218137 0.9729797693100141 -0.1604903406621652 0.1659916234861693 0.9663632722055722 -0.166202713767299 0.1962617743436668 -0.9663632722055722 0.166202713767299 -0.1962617743436668 -0.9729797693100141 0.1604903406621652 -0.1659916234861693 -0.3183322774902897 -0.7721117779715709 0.550007239430014 0.3183322774902897 0.7721117779715709 -0.550007239430014 0.3312363991329317 0.4585259669551954 -0.8246431867888391 -0.3312363991329317 -0.4585259669551954 0.8246431867888391 -0.4951656625047575 -0.7385078120898534 0.4576212169015796 0.4951656625047575 0.7385078120898534 -0.4576212169015796 -0.1400766977702307 -0.9073438454459583 0.3963655697372422 0.1400766977702307 0.9073438454459583 -0.3963655697372422 -0.1256096743341652 -0.9833223113472117 0.1315273421020968 0.1256096743341652 0.9833223113472117 -0.1315273421020968 -0.128283290812836 -0.9917368882248544 0.001158374858148637 0.128283290812836 0.9917368882248544 -0.001158374858148637 -0.1153943029065925 -0.984098587901963 -0.1350337889050886 0.1153943029065925 0.984098587901963 0.1350337889050886 -0.1284831242963187 -0.9099543801398161 -0.3943033259248769 0.1284831242963187 0.9099543801398161 0.3943033259248769 -0.09849816820575726 -0.5903422102445749 -0.8011205812258603 0.09849816820575726 0.5903422102445749 0.8011205812258603 -0.03202782867604653 -0.1016115259451568 -0.9943084611856596 0.03202782867604653 0.1016115259451568 0.9943084611856596 -0.2141261850158152 0.9569679736873127 0.1958628965051106 0.2141261850158152 -0.9569679736873127 -0.1958628965051106 0.2141220647380355 0.9569688389538172 0.1958631733218463 -0.2141220647380355 -0.9569688389538172 -0.1958631733218463 -0.4672212444973646 0.8499038758801577 -0.2436549003287628 0.4672212444973646 -0.8499038758801577 0.2436549003287628 0.4672182636243016 0.8499080224456675 -0.243646152274948 -0.4672182636243016 -0.8499080224456675 0.243646152274948 -0.9826264533111563 -0.01797811170136815 0.1847215221699718 -0.9813579875627883 -0.003808794214706564 0.1921509649555376 0.9813579875627883 0.003808794214706564 -0.1921509649555376 0.9826264533111563 0.01797811170136815 -0.1847215221699718 0.9826255473396359 -0.01797857586882106 0.1847262962472046 0.9813570169983672 -0.00380888767080053 0.1921559199264434 -0.9813570169983672 0.00380888767080053 -0.1921559199264434 -0.9826255473396359 0.01797857586882106 -0.1847262962472046 -0.01040655362327202 -0.5310321088401302 0.8472877923247155 0.1945992146603698 -0.4494178078959073 0.8718685563773961 -0.1945992146603698 0.4494178078959073 -0.8718685563773961 0.01040655362327202 0.5310321088401302 -0.8472877923247155 0.01040654437201029 -0.5310321051968826 0.8472877947217229 -0.1946008373504995 -0.4494125680682662 0.8718708951242554 0.1946008373504995 0.4494125680682662 -0.8718708951242554 -0.01040654437201029 0.5310321051968826 -0.8472877947217229 0.03202750470163987 -0.101612159488225 -0.9943084068772254 -0.03202750470163987 0.101612159488225 0.9943084068772254 0.09849856501704039 -0.5903421861833855 -0.8011205501682033 -0.09849856501704039 0.5903421861833855 0.8011205501682033 0.1284865616602314 -0.9099544824154301 -0.3943019698210983 -0.1284865616602314 0.9099544824154301 0.3943019698210983 0.1153943190618475 -0.9840986892549881 -0.1350330364572579 -0.1153943190618475 0.9840986892549881 0.1350330364572579 0.1282830091798698 -0.9917369243417012 0.001158642749103654 -0.1282830091798698 0.9917369243417012 -0.001158642749103654 0.1256092611713195 -0.9833225359147746 0.1315260577609322 -0.1256092611713195 0.9833225359147746 -0.1315260577609322 0.1400799493552314 -0.9073439561764587 0.3963641671224688 -0.1400799493552314 0.9073439561764587 -0.3963641671224688 -0.09434577775386129 -0.5908641402970412 0.8012355720579669 0.09434577775386129 0.5908641402970412 -0.8012355720579669 0.3558044851785133 -0.5242703878370199 0.7736560791230648 -0.3558044851785133 0.5242703878370199 -0.7736560791230648 0.11044162975056 0.4763486881935899 -0.872292711006051 -0.11044162975056 -0.4763486881935899 0.872292711006051 -0.5138841473982002 0.7078534076519844 -0.4846304120959586 0.5138841473982002 -0.7078534076519844 0.4846304120959586 -0.5487656345747323 0.7204383497653253 0.424057616954591 0.5487656345747323 -0.7204383497653253 -0.424057616954591 -0.97240301549141 0.1423704772866765 0.1848324177745257 0.97240301549141 -0.1423704772866765 -0.1848324177745257 0.9724016040933897 0.1423740406102053 0.184837098324243 -0.9724016040933897 -0.1423740406102053 -0.184837098324243 0.5487607209511846 0.7204413695144796 0.4240588452482003 -0.5487607209511846 -0.7204413695144796 -0.4240588452482003 -0.4910713099762163 0.8711148161495533 0.002818794595687712 0.4910713099762163 -0.8711148161495533 -0.002818794595687712 0.4910715149506781 0.8711147029436044 0.002818070176919228 -0.4910715149506781 -0.8711147029436044 -0.002818070176919228 0.5138751071222991 0.7078565388566401 -0.4846354244975739 -0.5138751071222991 -0.7078565388566401 0.4846354244975739 -0.01952915716753109 0.09936770376786923 0.9948591214178152 -0.000901511437009039 -0.00239284428340388 0.9999967307813382 0.000901511437009039 0.00239284428340388 -0.9999967307813382 0.01952915716753109 -0.09936770376786923 -0.9948591214178152 0.0009015106142754519 -0.002392843584613443 0.9999967307837522 0.019530305448713 0.0993663276712274 0.9948592363215081 -0.019530305448713 -0.0993663276712274 -0.9948592363215081 -0.0009015106142754519 0.002392843584613443 -0.9999967307837522 -0.3558010816934756 -0.5242689737071172 0.7736586026625948 0.3558010816934756 0.5242689737071172 -0.7736586026625948 -0.1104368687109324 0.4763487936985649 -0.8722932561766407 0.1104368687109324 -0.4763487936985649 0.8722932561766407 0.09434667403723156 -0.5908640941187042 0.8012355005735802 -0.09434667403723156 0.5908640941187042 -0.8012355005735802 -0.5365507891276882 -0.2724842322812369 0.798664882065413 0.5365507891276882 0.2724842322812369 -0.798664882065413 -0.7718989017929135 -0.4700275721864217 0.4280726186004335 0.7718989017929135 0.4700275721864217 -0.4280726186004335 -0.8212626267043875 -0.5423479117822164 0.1771621871734457 0.8212626267043875 0.5423479117822164 -0.1771621871734457 -0.8298217026360002 -0.5580246638853392 0.002101506589023479 0.8298217026360002 0.5580246638853392 -0.002101506589023479 -0.8191525367658278 -0.5478711966426224 -0.1697830185839858 0.8191525367658278 0.5478711966426224 0.1697830185839858 -0.7636381136186676 -0.4827390762580249 -0.4287421319190264 0.7636381136186676 0.4827390762580249 0.4287421319190264 -0.5233844415973248 -0.2983440031957737 -0.7981601230649003 0.5233844415973248 0.2983440031957737 0.7981601230649003 -0.1044290352053733 0.005254070376865984 -0.9945184620461048 0.1044290352053733 -0.005254070376865984 0.9945184620461048 -0.472644591359042 0.8465163181847629 0.2449841082722667 0.472644591359042 -0.8465163181847629 -0.2449841082722667 0.4726405629488491 0.8465209651874089 0.2449758227939498 -0.4726405629488491 -0.8465209651874089 -0.2449758227939498 -0.5716476152068997 0.7948786592261468 -0.2034377573979513 0.5716476152068997 -0.7948786592261468 0.2034377573979513 0.5716538709212509 0.7948759531259698 -0.2034307523528113 -0.5716538709212509 -0.7948759531259698 0.2034307523528113 -0.2522332325838068 0.5353992599326737 0.8060558472239181 0.003454990292217633 0.5278882118816235 0.8493068343057785 -0.003454990292217633 -0.5278882118816235 -0.8493068343057785 0.2522332325838068 -0.5353992599326737 -0.8060558472239181 -0.00345498716885455 0.5278882133577253 0.8493068334010104 0.2522230714425461 0.5353976955645072 0.8060600658860997 -0.2522230714425461 -0.5353976955645072 -0.8060600658860997 0.00345498716885455 -0.5278882133577253 -0.8493068334010104 0.0449767607063262 -0.05522849264763451 0.9974602270748624 -0.0449767607063262 0.05522849264763451 -0.9974602270748624 -0.04497635205074753 -0.05522480061078004 0.9974604499195479 0.04497635205074753 0.05522480061078004 -0.9974604499195479 0.1044306828384715 0.005254899200190294 -0.9945182846565902 -0.1044306828384715 -0.005254899200190294 0.9945182846565902 0.5233819800666606 -0.2983432050961097 -0.7981620355006134 -0.5233819800666606 0.2983432050961097 0.7981620355006134 0.7636412175008654 -0.4827403031888474 -0.428735222032125 -0.7636412175008654 0.4827403031888474 0.428735222032125 0.8191529989231559 -0.5478741956857312 -0.1697711107842366 -0.8191529989231559 0.5478741956857312 0.1697711107842366 0.8298214721963223 -0.5580250124644846 0.002099939508719763 -0.8298214721963223 0.5580250124644846 -0.002099939508719763 0.8212619114047657 -0.5423522706732846 0.1771521588107895 -0.8212619114047657 0.5423522706732846 -0.1771521588107895 0.7719029417189524 -0.4700267448051407 0.4280662422260262 -0.7719029417189524 0.4700267448051407 -0.4280662422260262 0.5365496146771743 -0.27248320120415 0.7986660228476696 -0.5365496146771743 0.27248320120415 -0.7986660228476696 -0.1289437060681589 0.03485601270080709 0.9910391410252217 0.1289437060681589 -0.03485601270080709 -0.9910391410252217 -0.03479614492933991 -0.107556492015506 0.9935898697769491 0.03479614492933991 0.107556492015506 -0.9935898697769491 0.4117216244618857 0.3251528563313931 -0.8513289164418195 -0.4117216244618857 -0.3251528563313931 0.8513289164418195 0.2090209499597313 0.8118881659929046 -0.5451126933016783 -0.2090209499597313 -0.8118881659929046 0.5451126933016783 -0.40193394204585 0.7563622353385511 0.5161058759451913 0.40193394204585 -0.7563622353385511 -0.5161058759451913 0.4019449905548627 0.7563576842291382 0.5161039411546733 -0.4019449905548627 -0.7563576842291382 -0.5161039411546733 -0.5735166984635115 0.819193332634773 -0.0009382698162191664 0.5735166984635115 -0.819193332634773 0.0009382698162191664 0.5735121937818867 0.8191964859873223 -0.0009385784519762406 -0.5735121937818867 -0.8191964859873223 0.0009385784519762406 -0.2090240299687819 0.8118886554685469 -0.5451107832515193 0.2090240299687819 -0.8118886554685469 0.5451107832515193 -0.3159127438450883 0.468385233172462 0.825114786937094 0.3159127438450883 -0.468385233172462 -0.825114786937094 0.3159155219903057 0.4683779667290617 0.825117848097072 -0.3159155219903057 -0.4683779667290617 -0.825117848097072 0.03479582160481239 -0.1075568870946448 0.9935898383323755 -0.03479582160481239 0.1075568870946448 -0.9935898383323755 -0.4117181736895207 0.3251486966248509 -0.85133217402899 0.4117181736895207 -0.3251486966248509 0.85133217402899 0.1289448168390606 0.03485611312543633 0.9910389929705732 -0.1289448168390606 -0.03485611312543633 -0.9910389929705732 -0.2179986478772222 0.5715816519244338 0.7910568909421361 0.2179986478772222 -0.5715816519244338 -0.7910568909421361 -0.5815808283735376 0.4410522115439132 0.6835471357269907 0.5815808283735376 -0.4410522115439132 -0.6835471357269907 -0.8189788016617627 0.3296810862412729 0.4696638199855696 0.8189788016617627 -0.3296810862412729 -0.4696638199855696 -0.9368855294290948 0.2565188594263468 0.2375785754334149 0.9368855294290948 -0.2565188594263468 -0.2375785754334149 -0.9736690702705535 0.2279660041882405 0.0002062351157356025 0.9736690702705535 -0.2279660041882405 -0.0002062351157356025 -0.9397567116348682 0.2472500300875843 -0.236060893751819 0.9397567116348682 -0.2472500300875843 0.236060893751819 -0.8191797350546107 0.3112627907725366 -0.481726101385787 0.8191797350546107 -0.3112627907725366 0.481726101385787 -0.5762477640027265 0.4098641495958019 -0.707071349552482 0.5762477640027265 -0.4098641495958019 0.707071349552482 -0.2011847824327154 0.5359189442834044 -0.8199485157469719 0.2011847824327154 -0.5359189442834044 0.8199485157469719 -0.5570993725849827 0.8049566860049144 0.2041691032487639 0.5570993725849827 -0.8049566860049144 -0.2041691032487639 0.5571067054878111 0.8049534204623468 0.2041619690012957 -0.5571067054878111 -0.8049534204623468 -0.2041619690012957 0.244554282108253 0.935479489453685 -0.2550908228729328 -0.244554282108253 -0.935479489453685 0.2550908228729328 -0.2445560468036773 0.9354781423299914 -0.2550940712650647 0.2445560468036773 -0.9354781423299914 0.2550940712650647 -0.4948898272186186 0.7206569593878724 0.4855281719955623 0.4948898272186186 -0.7206569593878724 -0.4855281719955623 0.4948809605575952 0.7206596462753181 0.4855332214256047 -0.4948809605575952 -0.7206596462753181 -0.4855332214256047 0.113544970438825 0.4778958828496498 0.8710471082802582 -0.113544970438825 -0.4778958828496498 -0.8710471082802582 -0.1135390829164887 0.4778950769826455 0.8710483178597122 0.1135390829164887 -0.4778950769826455 -0.8710483178597122 0.201201418721007 0.5359196099292964 -0.8199439985742226 -0.201201418721007 -0.5359196099292964 0.8199439985742226 0.5762381845786991 0.4098643448626707 -0.7070790432785707 -0.5762381845786991 -0.4098643448626707 0.7070790432785707 0.8191556178229759 0.3112796801530513 -0.4817561982090866 -0.8191556178229759 -0.3112796801530513 0.4817561982090866 0.9397661340326265 0.2472489376023817 -0.2360245245305342 -0.9397661340326265 -0.2472489376023817 0.2360245245305342 0.9736700099245995 0.2279619934839536 0.0002032246345537654 -0.9736700099245995 -0.2279619934839536 -0.0002032246345537654 0.936894120427421 0.2565174721216962 0.2375461925706741 -0.936894120427421 -0.2565174721216962 -0.2375461925706741 0.8189551107340638 0.3296966683503205 0.4696941914493472 -0.8189551107340638 -0.3296966683503205 -0.4696941914493472 0.5815727234851986 0.4410522309737556 0.6835540189707624 -0.5815727234851986 -0.4410522309737556 -0.6835540189707624 0.2180149968763851 0.5715826008495109 0.7910516996651348 -0.2180149968763851 -0.5715826008495109 -0.7910516996651348 0.1615929276070497 0.6847314780545727 0.7106549997773765 -0.1615929276070497 -0.6847314780545727 -0.7106549997773765 0.3857982856502868 0.3539777102712661 0.851973863108729 -0.3857982856502868 -0.3539777102712661 -0.851973863108729 0.4710470348251843 0.2073320250443136 -0.8573961292036638 -0.4710470348251843 -0.2073320250443136 0.8573961292036638 0.7240439167329056 0.4871179768674159 -0.4883405402530791 -0.7240439167329056 -0.4871179768674159 0.4883405402530791 0.2596762166444364 0.9656824066951043 -0.005074633857011698 -0.2596762166444364 -0.9656824066951043 0.005074633857011698 -0.2596650624206113 0.96568541228746 -0.005073445899835583 0.2596650624206113 -0.96568541228746 0.005073445899835583 -0.724042314234301 0.4871179111181395 -0.4883429817926515 0.724042314234301 -0.4871179111181395 0.4883429817926515 0.2001431516069512 0.8113013914184546 0.5493020764090706 -0.2001431516069512 -0.8113013914184546 -0.5493020764090706 -0.200147528953493 0.811302209449807 0.549299273252452 0.200147528953493 -0.811302209449807 -0.549299273252452 -0.385793900643739 0.3539738078666538 0.8519774701073204 0.385793900643739 -0.3539738078666538 -0.8519774701073204 -0.4710390211828121 0.2073282544056938 -0.8574014435771766 0.4710390211828121 -0.2073282544056938 0.8574014435771766 -0.1615964627129738 0.6847282314695419 0.7106573240790866 0.1615964627129738 -0.6847282314695419 -0.7106573240790866 -0.3815297487970356 0.9242033489235089 -0.01682915985550096 0.3815297487970356 -0.9242033489235089 0.01682915985550096 -0.1893524600258164 0.9226379770853586 -0.3359833464950444 0.1893524600258164 -0.9226379770853586 0.3359833464950444 0.2430371049992868 0.9365806957721924 0.2524867638123671 -0.2430371049992868 -0.9365806957721924 -0.2524867638123671 -0.2430370270984135 0.9365799912233536 0.2524894522534115 0.2430370270984135 -0.9365799912233536 -0.2524894522534115 0.8151017431464896 0.5177508511940201 -0.2598907547555734 -0.8151017431464896 -0.5177508511940201 0.2598907547555734 -0.8151046069588269 0.5177485751983484 -0.2598863070547895 0.8151046069588269 -0.5177485751983484 0.2598863070547895 0.7143689442105867 0.4976941657223021 0.4919121150708055 -0.7143689442105867 -0.4976941657223021 -0.4919121150708055 -0.7143671097740584 0.4976943659632153 0.4919145764881657 0.7143671097740584 -0.4976943659632153 -0.4919145764881657 0.1893424248662611 0.9226408447753204 -0.3359811269968113 0.3815261748862386 0.9242048271015135 -0.01682900588081726 -0.3815261748862386 -0.9242048271015135 0.01682900588081726 -0.1893424248662611 -0.9226408447753204 0.3359811269968113 -0.06791426900456359 0.967764305676533 0.2425281441894815 0.06791426900456359 -0.967764305676533 -0.2425281441894815 0.7646667205034805 0.3007454141879074 0.5699447362678212 -0.7646667205034805 -0.3007454141879074 -0.5699447362678212 -0.04338468686296027 0.9656293038630097 -0.2562768356033023 0.04338468686296027 -0.9656293038630097 0.2562768356033023 0.7794250940536733 0.242256527445879 -0.5777614539490208 -0.7794250940536733 -0.242256527445879 0.5777614539490208 0.8458046245742587 0.533492675425588 -0.0003198687944614629 -0.8458046245742587 -0.533492675425588 0.0003198687944614629 -0.8458039896858844 0.53349368320006 -0.0003178318336505332 0.8458039896858844 -0.53349368320006 0.0003178318336505332 -0.7794180332466006 0.2422483115643041 -0.5777744239703283 0.7794180332466006 -0.2422483115643041 0.5777744239703283 0.8072299147687196 0.5296170535344539 0.2605487311578569 -0.8072299147687196 -0.5296170535344539 -0.2605487311578569 -0.8072346006267613 0.529613178217676 0.2605420906669885 0.8072346006267613 -0.529613178217676 -0.2605420906669885 -0.7646564644093824 0.3007414749600063 0.5699605746679528 0.7646564644093824 -0.3007414749600063 -0.5699605746679528 0.04338315991997069 0.9656295661029632 -0.2562761059934406 -0.04338315991997069 -0.9656295661029632 0.2562761059934406 0.06791218362178518 0.9677646416119429 0.2425273876522583 -0.06791218362178518 -0.9677646416119429 -0.2425273876522583 0.03596881937183998 0.9901531491874407 0.1352885257041033 -0.03596881937183998 -0.9901531491874407 -0.1352885257041033 0.05336704274176079 0.9892374608611649 -0.1362395125430002 -0.05336704274176079 -0.9892374608611649 0.1362395125430002 0.9238445835961621 0.2567454882110192 -0.2838889565363886 -0.9238445835961621 -0.2567454882110192 0.2838889565363886 -0.9238498592351629 0.256741474720856 -0.2838754176559315 0.9238498592351629 -0.256741474720856 0.2838754176559315 0.9180233515898573 0.2848647456352883 0.2758354629663632 -0.9180233515898573 -0.2848647456352883 -0.2758354629663632 -0.9180321739839776 0.2848572832830602 0.2758138062005712 0.9180321739839776 -0.2848572832830602 -0.2758138062005712 -0.0533662582375591 0.9892377314270605 -0.1362378552486978 0.0533662582375591 -0.9892377314270605 0.1362378552486978 -0.03596860507902677 0.9901533491104316 0.1352871194684281 0.03596860507902677 -0.9901533491104316 -0.1352871194684281 0.08061863977779155 0.9967424115525362 0.002280336118426854 -0.08061863977779155 -0.9967424115525362 -0.002280336118426854 0.9631149707435038 0.26904404532459 -0.004985459368985176 -0.9631149707435038 -0.26904404532459 0.004985459368985176 -0.9631170908148206 0.2690365543304014 -0.004980142008200281 0.9631170908148206 -0.2690365543304014 0.004980142008200281 -0.08061888242522709 0.9967423920075657 0.002280300757270798 0.08061888242522709 -0.9967423920075657 -0.002280300757270798</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"816\" source=\"#ID233\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID231\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID234\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"3654\">-0.1258852921180548 -15.48570502078738 1.534266493751242 -15.56317789494367 -0.1266861167179144 -15.56317789494367 -20.22738456726074 -1.25975176692009 -20.22738456726074 -0.804327005147934 -20.13338327407837 -1.236639364560445 0.2171591933625222 -15.48512115102699 0.2179600183620088 -15.56259402518073 -1.442991763260136 -15.56259402518073 20.22738456726074 -0.804327005147934 20.22738456726074 -1.25975176692009 20.13338327407837 -1.236639364560445 -1.534266493751242 14.81136512443701 -1.533465750397696 14.88883083827612 0.1266861167179146 14.81136512443701 1.535182831453892 -15.48560319931241 1.534382627736602 -15.56306891660233 -0.125769697796328 -15.48560319931241 -20.0537109375 -1.17082305153211 20.0537109375 -1.17082305153211 -20.32135009765625 -1.236639364560445 20.32135009765625 -1.236639364560445 -1.443908096956845 -15.48501972830002 0.2170436034463229 -15.48501972830002 -1.443107892840238 -15.56248544558737 1.442991763260136 14.81078125992196 -0.217960018362009 14.81078125992196 1.442191019507003 14.88824697375851 -20.42436417053202 -1.457934297741718 -20.37877720569773 -1.185995510641885 -20.28512865274249 -1.209954558772863 0.1263667481455355 14.8108939296594 -1.533786602762934 14.888339962441 0.1271657844858969 14.88833996244099 -20.01676861989358 -2.142210274540014 -20.02399308552023 -1.829286924592993 -19.93027556611291 -1.805495344233855 1.535182831453892 -11.81749829109407 -0.125769697796328 -11.81749829109406 -0.1250914032063509 -11.72661523658976 -20.00047206878662 -1.072321949402491 20.00047206878662 -1.072321949402491 0.2170436034463227 -11.81707672674592 -1.443908096956845 -11.81707672674592 0.2163653085178635 -11.72619367224318 -20.40102958679199 -1.170823520421982 20.40102958679199 -1.170823520421982 -0.2176406618968502 14.81031116168222 -0.2184396986359462 14.88775719446127 1.442511859765762 14.88775719446127 20.03095235338139 -1.812328709790346 20.02372738872175 -2.125252666203983 19.93723485288939 -1.788537083321516 20.37098365259558 -1.167128669961374 20.41657116571465 -1.439068106254421 20.27733512328646 -1.191087775289236 -19.27332397693066 -0.3641417240250766 -19.37498517074159 -0.1892271894203401 -19.19996052172735 -0.09598873356603006 -20.25288498192033 -1.282814483491743 -20.38300259367404 -1.216169844625221 -20.23855301829428 -0.9700426683051181 0.1271657844858967 10.12746505475762 -1.533786602762934 10.12746505475762 -1.533109210034726 10.21834130689198 -19.64642004864075 -2.524566304484259 -19.56917411608184 -2.186462850662363 -19.51654064930535 -2.457614418915185 1.53576798095259 -11.72712909143676 1.53508925514035 -11.81801568481086 -0.1251846092066019 -11.7271284439361 -19.98179435729981 -0.9561345557371775 19.98179435729981 -0.9561345557371775 1.535771774619323 -7.24993936660568 -0.1251808155399471 -7.24993885709483 -0.1247273262878519 -7.142904384136094 0.2164547174303251 -7.249699541016292 -1.444497043881923 -7.249700050527142 0.2160012279519299 -7.142665068058149 -1.443814524209448 -11.81759386889674 -1.444493250360386 -11.72670727552421 0.216458510951785 -11.72670662802354 -20.45424699783325 -1.072321949402491 20.45424699783325 -1.072321949402491 0.1280776013716562 10.21983633715882 0.1273991315217464 10.12894974260203 -1.532874948178165 10.21983633715882 1.44160021364496 10.21941468027686 -0.2186730368693393 10.12852808572163 -0.2193515070578187 10.21941468027685 1.442511859765762 10.12704401933711 -0.2184396986359461 10.12704401933711 1.441834466699521 10.21792027146991 19.58407642658773 -2.168589865662105 19.6613212151512 -2.506694049127253 19.53144193617117 -2.439742019072841 20.22472307134249 -0.9533116094784729 20.36917352486233 -1.199439246983046 20.23905601646291 -1.266084010725955 19.33720802203883 -0.1755983867431848 19.23554742857724 -0.3505131372780738 19.16218169939295 -0.08235981578698171 -1.801174134016037 6.165596324617181 -1.801174134016037 5.973266267907271 -2.164027541875839 6.165596324617181 -19.83645144563483 0.03318917964926284 -19.7386458323571 0.1983548763961393 -19.66380185096627 0.1291288351316886 -1.801174134016036 12.65174037172843 -2.164027541875838 12.77388336677867 -1.801174134016036 12.77388336677867 1.801174134016038 -14.18852359140346 2.16402754187584 -14.31067771740757 1.801174134016038 -14.31067771740757 -18.94105633498291 -2.750284032160559 -19.00181212506624 -2.48018548161269 -18.92481819325029 -2.412420390939995 -20.00047206878662 -0.8399464587370555 20.00047206878662 -0.8399464587370555 1.536427766611958 -3.037719784628627 -0.1245246814740755 -3.037719075692561 -0.1243657737671471 -2.920606382194752 0.2157985909101244 -3.037642433196023 -1.445153028328816 -3.03764314213209 0.215639683123898 -2.920529739698281 1.536424552133933 -7.141330885511757 1.535971735724498 -7.248360007971451 -0.1245278959520605 -7.141330121281866 -1.444696997338603 -7.248121035000783 -1.445149813974002 -7.141091912541681 0.2158018052648988 -7.141091148311789 19.02525222840553 -2.463730370768209 18.96449488988946 -2.733829416651876 18.94825847333672 -2.395965155820597 -20.47295093536377 -0.9561345557371775 20.47295093536377 -0.9561345557371775 0.1282193479991071 5.199645944215716 -1.532279787764698 5.306673480603418 0.1286728633344158 5.306674244821984 1.441005058336967 5.306434136946083 -0.2194932483535334 5.199406600558972 -0.2199467639151551 5.306434901164647 0.1280776013716559 5.198457694805845 -1.532874948178165 5.198457694805845 -1.532421904097657 5.305481681525087 1.44160021364496 5.198218590203622 -0.2193515070578185 5.198218590203623 1.441147169338374 5.30524257692227 19.7073272718307 0.2193619714884788 19.80513473309581 0.05419578943741742 19.63248359445579 0.1501357268180654 -1.709899455308914 -14.18852359140347 -1.709899455308914 -14.31067771740758 -2.072749584913254 -14.31067771740758 1.709899455308914 12.65174037172843 1.709899455308914 12.77388336677867 2.072749584913254 12.77388336677867 2.072749584913254 6.165596324617179 1.709899455308914 5.973266267907269 1.709899455308914 6.165596324617179 -1.801174134016037 2.880588778750365 -2.164027541875839 2.880588778750365 -2.164027541875839 3.10728777221482 -2.164027541875839 5.973266267907271 -17.31377201656435 0.08931789896481847 -17.37287013460527 0.3111986444837677 -17.20090103287147 0.2484264908816917 -2.164027541875838 12.65174037172843 2.164027541875838 -14.18852359140347 2.164027541875838 -14.31067771740758 1.801174134016036 -14.18852359140347 -12.24665345080589 -4.079363818946902 -12.29238037915529 -4.254866361738525 -12.33345400916902 -3.918308791597755 -20.0537109375 -0.7414472321669261 20.0537109375 -0.7414472321669261 1.536473731628583 1.023433804708911 -0.1244787976216367 1.02343398194291 -0.1246378109740279 1.140547373129819 0.2157527026406713 1.023357288952173 -1.445198997762496 1.023357111718174 0.2159117160724131 1.140470680139015 1.536473051392666 -2.92158106874024 1.536313956212724 -3.038695226888168 -0.1244794778575538 -2.921580891504811 -1.445039222293361 -3.038618494935111 -1.445198317552694 -2.921504336787248 0.2157533828504729 -2.92150415955182 -14.01397623552149 -4.302495126678767 -14.09490695303824 -4.139559529647563 -14.05452101996732 -4.037353805460541 14.15411215206861 -4.125126939414474 14.07317835339905 -4.288062767769929 14.11372681239765 -4.022921070123109 12.35919406675291 -4.244127343717848 12.31346799409292 -4.068624662957061 12.40027174729932 -3.907569508996484 -20.45424699783325 -0.8399464587370555 20.45424699783325 -0.8399464587370555 0.1285303983974092 0.9576156398572594 -1.532262887677826 1.074730746022038 0.1286896618719946 1.074730923259974 1.440988152825947 1.074653933634526 -0.2198043043227711 0.957538827469815 -0.2199635678768321 1.074654110872463 0.1286761474507288 0.9588850272414258 -1.532276503648425 0.9588843182825991 -1.532117005308048 1.076001303352002 1.441001774343951 0.9588073937422039 -0.2199500479082111 0.9588081027010309 1.440842275923982 1.07592437881154 -16.7753448735345 1.438180721989944 -16.64471179919583 1.476097594512997 -16.60427237279912 1.373910338866937 16.58518842739789 1.490732201329241 16.71582385163008 1.452815275052713 16.54474959254172 1.388544800815744 17.31704049764172 0.3204375904302545 17.25794314035383 0.09855671951743608 17.14506961262196 0.2576654013530714 -2.072749584913253 -14.18852359140347 -1.709899455308913 -14.18852359140347 -2.072749584913253 -14.31067771740758 2.072749584913254 12.65174037172843 2.072749584913254 5.973266267907269 2.072749584913254 2.880588778750366 1.709899455308914 2.880588778750366 2.072749584913254 3.107287772214821 13.68307907495966 1.072909917580273 13.62808642009628 0.8503769331383377 13.55208476113084 1.110051758401565 -1.801174134016037 3.10728777221482 16.77343157614949 1.093430361463871 16.8800370767962 0.9316686619756909 16.7822397986052 0.7553960546951699 19.66415887355527 -0.09164776415532905 19.71677879137577 -0.3628001049675953 19.58691646811338 -0.4297521812945988 20.32217697599747 -1.37764651333131 20.30784598460897 -1.690418858362025 20.17771158229746 -1.623774106597644 2.164027541875839 -6.109858504127848 1.801174134016037 -6.109858504127848 1.801174134016037 -5.930707404381179 -20.13338327407837 -0.6756296883026759 20.13338327407837 -0.6756296883026759 1.536431798160886 5.383194369809282 -0.1245206499251362 5.383194815632582 -0.1249735890401167 5.49022756400574 0.2157945595157108 5.382955785992272 -1.445157059723218 5.38295534016897 0.2162474988567167 5.489988534364836 1.536429922569505 1.141549740347531 1.53658890939953 1.024435640256233 -0.1245225255165305 1.141550153896868 -1.44531417111309 1.024358960517863 -1.445155184203727 1.141473060609095 0.2157964350352158 1.141473474158432 -4.418039454811175 -2.939394436690957 -4.515685712402823 -2.90258142229704 -4.509945086823084 -2.78555429801103 4.60235245800409 -2.899954755245872 4.504703024020952 -2.936767771359333 4.596612012498335 -2.782927625493501 -4.950180467880308 -3.765557817145136 -4.967657919060676 -3.987971337740143 -5.047637576747289 -3.72843591542275 5.053509723754392 -3.983803519776202 5.036032810786674 -3.761389973008671 5.133493100570709 -3.724268066917963 -1.709899455308914 -6.109858504127848 -2.072749584913253 -6.109858504127848 -1.709899455308914 -5.930707404381179 -20.40102958679199 -0.7414474666118622 20.40102958679199 -0.7414474666118622 0.1288377546512114 -2.971837188091958 -1.532274295216435 -2.854721620595885 0.1286783558827203 -2.854721207040741 1.440999565994849 -2.85464474342017 -0.2201116551053502 -2.971760310916177 -0.2199522562573161 -2.854644329865026 0.1286903598530311 -2.97310100861579 -1.532262189696789 -2.973101185855498 -1.532421555315797 -2.855984258820569 1.44098745487106 -2.973024325283773 -0.2199642658317187 -2.973024148044064 1.441146820569594 -2.855907398248911 -15.95889351019889 -0.03429134901812657 -15.82235116921501 -0.04436164856562209 -15.80896810424477 -0.1610045434072966 15.75831500296562 -0.03979592193297119 15.89485961610109 -0.02972562099683371 15.74493216452814 -0.1564388328590915 -15.94167276809853 -0.1989282114728265 -15.96040264678348 -0.03552441633350978 -15.81047560219309 -0.162236410886687 15.89637631539405 -0.03096368756243825 15.87764675367161 -0.1943675051849753 15.74644722515451 -0.1576756995503003 1.709899455308914 3.107287772214821 -20.29402090607722 -1.707137542595449 -20.30835265581908 -1.394364744684893 -20.16388658362278 -1.64049269433256 -19.73168774939586 -0.3806781729236828 -19.67906704044389 -0.1095253799235279 -19.601825519152 -0.4476303609034865 -16.92390303656202 0.9166428058467701 -16.81729575673723 1.078404696955189 -16.82610636654618 0.7403699897566273 -13.68951357730702 0.8410080554524878 -13.7445055611347 1.063541142515051 -13.61350942485764 1.100683000464225 13.0525877799319 0.1521790341023219 13.17040191568972 -0.001155844393756667 13.03920295411153 0.03553626429518431 16.24700292835964 1.102935238654555 16.31044231884614 0.841181457112277 16.20163974646863 1.002035331094687 -1.801174134016037 0.9281126122259156 -2.164027541875839 0.9281126122259156 -2.164027541875839 1.092179354949206 19.11775920122815 0.2551224137991908 19.10153141628488 -0.08274181684235182 19.04078517653014 0.1873572049067138 19.98183783074891 -0.5155219419165721 20.07555533468009 -0.491730323831432 19.989062704674 -0.828445788062113 20.23862187101954 -1.082531508487775 20.33227041494376 -1.106490578463651 20.19301794631684 -1.354470543530482 2.164027541875839 -5.930707404381178 2.164027541875839 -6.109858504127846 1.801174134016037 -5.930707404381178 0.1265715466658575 -8.624540498687608 -1.535181274761152 -8.476112729121779 0.1257712544890636 -8.476112526330917 1.443906540323413 -8.475808177192903 -0.2178454526559046 -8.6242359467574 -0.2170451600797494 -8.47580797440204 1.535778260544824 10.34166195767494 -0.125174329614441 10.34166228140747 -0.1258529536602815 10.43254622574892 0.2164482317530474 10.34124051642223 -1.444503529559196 10.34124019268969 0.2171268561375344 10.43212446076212 1.535776363654405 5.48854535393289 1.536229698567882 5.381517581354886 -0.1251762265048792 5.488545608676763 -1.444954967881073 5.381278331737467 -1.444501632741374 5.488306104314879 0.2164501285708891 5.488306359058752 -5.006386172853704 0.8644759555906119 -5.10633734776779 0.8543739725296139 -5.112620370191539 0.971383794125354 5.192089220564711 0.8515297083164171 5.092134941572865 0.8616316919311688 5.198372049964359 0.9685395363262117 -4.4198076004139 -2.939995586543617 -4.511711117659859 -2.786154666037582 -4.41176019428805 -2.776051142907861 4.598375461573348 -2.783526339728882 4.506468587809408 -2.937367267429926 4.498421434102714 -2.773422816126627 2.164027541875839 -4.221487111498896 1.801174134016037 -4.221487111498896 1.801174134016037 -3.99864903761605 -1.709899455308914 -4.221487111498896 -2.072749584913254 -4.221487111498896 -1.709899455308914 -3.99864903761605 -1.709899455308914 -5.930707404381178 -2.072749584913254 -6.109858504127846 -2.072749584913254 -5.930707404381178 -20.32135009765625 -0.6756296883026759 20.32135009765625 -0.6756296883026759 0.1285315268532095 -7.06673312404176 -1.532874170312753 -6.9597073232761 0.128078379237067 -6.959707195905827 1.441599435808795 -6.95946816837863 -0.2198054327362544 -7.066493969143699 -0.2193522848939825 -6.959468041008358 0.1286802715887128 -7.065549315582399 -1.53227237951043 -7.065549761362867 -1.532725812526302 -6.958527232137923 1.440997650360744 -7.065310448255558 -0.2199541718914076 -7.065310002475089 1.441451083602888 -6.958287919031208 -17.03570139470239 -1.664839179020459 -17.16215171293897 -1.465750723148897 -17.02109289708171 -1.548287371507728 17.10490101519861 -1.470209160463029 16.97844830994291 -1.669297642531781 16.96384001004768 -1.552745819682501 -16.10909598759142 -1.302788866770341 -16.10026045620292 -1.114236167078391 -15.97254971372975 -1.312826111367258 16.03698900342898 -1.116078629847719 16.04582438879647 -1.304631333774081 15.90927584270994 -1.314668578596409 -1.801174134016037 1.092179354949206 -1.801174134016037 0.9281126122259151 -2.16402754187584 1.092179354949206 2.072749584913254 1.092179354949206 1.709899455308914 0.9281126122259151 1.709899455308914 1.092179354949206 2.072749584913253 0.928112612225916 1.709899455308914 0.928112612225916 2.072749584913253 1.092179354949207 -20.32447832993505 -1.12534613712419 -20.23082980428274 -1.101387022951018 -20.18522545590466 -1.373326559639653 -19.99602312897831 -0.8454042666628082 -20.08251535874198 -0.508688298157286 -19.98879786942752 -0.5324799518734432 -19.12498771854559 -0.09920621455344565 -19.14121417005104 0.2386584948735982 -19.06424028196456 0.1708931899514246 -16.35799184967967 0.8279845533070835 -16.29455027534648 1.089738574145822 -16.24918742499983 0.9888385743428132 -13.23398984080131 -0.005659109431052334 -13.11617370435128 0.1476757854030664 -13.10278905354915 0.03103300316748309 -1.623332509725665 1.079694577807148 -1.623912730830739 0.9625784149731788 -5.485210456574892 1.07969475504561 13.18691021924062 0.1613203273318695 13.16818254401781 -0.00208362409851555 13.05036600887522 0.1512501135072835 -1.649230744145912 5.316901489714334 -1.65081451611082 5.209884161761756 -5.523024672812959 5.316902253860008 -1.721616743470018 10.23734429079699 -1.723712203225943 10.14648142792378 -5.629320716497547 10.23734429079698 -1.828819947018093 14.83327669988015 -5.785400478102014 14.91072905303895 -1.826823493132404 14.91072905303895 1.948040242702229 -15.49952216750314 5.965298784462179 -15.57698204488604 1.946590302434547 -15.57698204488604 17.9651228853713 -2.46866666317547 17.88111367877141 -2.734881495695522 17.82511370084852 -2.561231209508487 1.535185411592541 10.43307626874063 1.535863756865278 10.34218840029443 -0.1257671176576649 10.43307651155031 -5.589209059185219 14.34121049446882 -5.555801936241187 14.26833670692095 -7.146681740765876 13.86251749888974 5.674530193615789 14.31700556182349 7.232002004761192 13.83831259338827 5.641123056105888 14.24413177840787 -1.444589022608439 10.34176682675407 -1.443910676997195 10.43265469519871 0.2170410234059594 10.43265493800838 -8.509568598196866 4.183771607807824 -8.60374072404613 4.123470965439186 -8.630576273599415 4.228396712930236 8.682293648491479 4.111069268365709 8.588118293225817 4.171369973786545 8.709128504848385 4.215995125570333 -5.005124119188297 0.8652771805034814 -5.111357269189332 0.9721856630876584 -5.013927802630328 1.029193903125683 5.19711097734882 0.9693407154298069 5.090874916270149 0.862432226982461 5.099678329236927 1.026348958594327 2.164027541875839 -3.071965378997481 1.801174134016037 -3.071965378997481 1.801174134016037 -2.907898754035186 -1.709899455308914 -3.071965378997482 -2.072749584913253 -3.071965378997482 -1.709899455308914 -2.907898754035186 2.164027541875839 -3.99864903761605 -2.072749584913254 -3.99864903761605 -17.83013640463499 -2.745083098271195 -17.91414773614437 -2.478868123378903 -17.7741368920588 -2.571432719215629 -1.472393506701663 7.189482014100863 -1.47944486800743 7.337793609484673 0.1848775878461846 7.364425987845634 1.570465385352345 7.335115541791618 1.563414020547373 7.186803946510763 -0.09385624333294915 7.361747920134089 0.1278459538366897 -11.60445230359342 -1.533783998542705 -11.51356454702308 0.1271683887061131 -11.51356430421371 1.442509255643703 -11.51314345890218 -0.2191198682266861 -11.60403121547096 -0.2184423027579913 -11.51314321609281 0.1280793439095862 -11.60312746727764 -1.532873205640229 -11.60312762913219 -1.533551519883644 -11.51225002289478 1.441598471172542 -11.60270602728622 -0.2193532495302308 -11.60270586543168 1.442276785754449 -11.51182842105037 -19.71564877991073 -1.494040472876068 -19.81191580095041 -1.152676274233754 -19.6659051662743 -1.394427905724576 19.77946428884835 -1.162730732326592 19.68319536119753 -1.504095160702185 19.63345196448953 -1.404482526512843 -17.11234276679926 -1.418144715217714 -17.08288268909941 -1.162188648336637 -16.97124931523291 -1.500644719083383 17.02532203902382 -1.166305031655054 17.05478171365591 -1.422261127245591 16.91368607181041 -1.504761140364921 -1.801174134016037 -1.580052705958203 -1.801174134016037 -1.768733472471541 -2.164027541875839 -1.580052705958203 2.072749584913254 -1.580052705958203 1.709899455308914 -1.768733472471541 1.709899455308914 -1.580052705958203 -1.801174134016037 -1.768733472471541 -2.164027541875839 -1.768733472471541 -2.164027541875839 -1.580052705958203 2.072749584913254 -1.768733472471541 2.072749584913254 -1.580052705958202 -13.23177955480132 -0.00658200255963195 -13.25050698507355 0.1568219662438976 -13.11396101893223 0.1467517513486443 -1.85677580673647 -15.49846495925416 -1.855325867060111 -15.57592483664391 -5.874035988020432 -15.57592483664391 1.737565553146629 14.83182100552171 1.735569101289583 14.90927335871286 5.694150108665018 14.90927335871286 5.538076029825277 10.23604209361662 1.632468261753308 10.14517923074912 1.630372801597992 10.23604209361662 1.559579703773065 5.209048591982027 1.557995932234425 5.316065919938509 5.431790903520531 5.316066684084182 1.532681253467128 0.9622987077137645 1.532101032429185 1.079414870547939 5.393979426098372 1.079415047786401 -1.623332772088225 -2.466732283477933 -5.485210718937451 -2.466732106864797 -5.497703966683182 -2.350028972639862 -1.649232307100429 0.447377576352172 -5.523026235767493 0.4473782828116477 -5.510550193190154 0.564081855834275 13.44611496587061 -2.014045157192618 13.30957060914802 -2.024114142851768 13.29597490498195 -1.907486525431189 -1.721616743470019 3.751470101692875 -5.629320716497547 3.751470101692875 -5.593987872893266 3.854820861283677 -1.826823493132404 8.308347630418078 -5.785400478102014 8.308347630418076 -5.732785283958959 8.389268976536879 -5.965298784462179 14.23324356338103 -5.90365040839472 14.29366077080401 -1.946590302434547 14.23324356338103 6.140859473718176 -15.11938777954019 6.079619365090169 -15.18003497983019 2.061893856221012 -15.11938777954019 19.25650095716715 -2.778314433863801 19.32945595815604 -2.848790673537433 19.19517112251402 -2.946462966080575 -18.82236779398378 0.6784072465355927 -18.89905086944287 0.7463918189142581 -18.75080234157753 0.9238325989700599 -19.97088696162336 -0.1974415343765166 -20.06469025362492 -0.1738620178566139 -19.91066038848814 0.1632906828289227 20.07046133359917 -0.1880625399512464 19.97665805461466 -0.2116420885173906 19.91643107483787 0.149090618948812 18.92378358334661 0.7291600778045483 18.84710070390738 0.6611753685995382 18.77553365329143 0.9066012149792155 -10.80569009633248 0.1099605378774972 -10.92821405895882 0.1519472391902269 -10.82422126623122 0.3900870975693102 11.00007461399909 0.1490151236111422 10.87754812043968 0.1070284198381223 10.89607888937612 0.3871549959444814 2.164027541875839 1.030713255234531 1.801174134016037 1.030713255234531 1.801174134016037 1.194776216917491 -1.709899455308914 1.030713255234531 -2.072749584913254 1.030713255234531 -1.709899455308914 1.194776216917491 2.16402754187584 -2.907898754035186 2.16402754187584 -3.071965378997481 1.801174134016037 -2.907898754035186 -1.709899455308914 -2.907898754035186 -2.072749584913254 -3.071965378997482 -2.072749584913254 -2.907898754035186 12.98986872044777 -3.037455366848272 12.89700698097519 -3.196405471095785 12.86791455317681 -2.974745740430965 -12.82084986506411 -3.202609789768635 -12.91371409952405 -3.043659654109695 -12.79175797658145 -2.980950015299825 -19.29269603840264 -2.872384688597455 -19.21974135309156 -2.801908246698138 -19.15840974671375 -2.970057261403088 -1.533777853801287 -15.45945260546777 -1.534577153620485 -15.38198747693904 0.1271745334473898 -15.45945201608054 1.442503111133931 -15.45886978904782 -0.2184484472676229 -15.45886919966059 1.443302411351995 -15.38140466052163 -20.35913839763453 -0.9992405881392164 -20.39944525362752 -0.5877322188676134 -20.28079302324131 -0.932453177032359 20.38291650820884 -0.599747286199168 20.34260851149802 -1.011256052922561 20.26426322596364 -0.9444685773096617 -19.88015526090114 -1.147477682376389 -19.78934155726489 -0.9789607440089759 -19.73472769094323 -1.389446709145283 19.75796237056699 -0.9894516927722035 19.8487757038444 -1.157968754652141 19.70334647721835 -1.399937958769411 -1.801174134016037 -2.3692739281999 -1.801174134016037 -2.626277042775172 -2.164027541875839 -2.3692739281999 2.072749584913254 -2.3692739281999 1.709899455308914 -2.626277042775172 1.709899455308914 -2.3692739281999 -2.164027541875839 -2.626277042775172 2.072749584913254 -2.626277042775172 14.17973260486218 -1.149716057020562 14.18900416428264 -1.338255799942257 14.03847163581126 -1.232040378595642 -14.24825931667381 -1.336457444313252 -14.23898786253076 -1.147917698187767 -14.09772519752328 -1.230242021161755 -13.37209015912777 -2.019615903618303 -13.50863627162445 -2.00954691688874 -13.3584946268269 -1.902988273799286 -1.970622815117818 -15.11873913070546 -5.988349963112748 -15.17938633951847 -6.049588879628458 -15.11873913070546 1.855325867060111 14.23222149466546 5.812389996301541 14.29263872910246 5.874035988020432 14.23222149466546 5.694150108665017 8.307449396982861 1.735569101289583 8.307449396982861 5.641530148518164 8.388370697265708 5.538076029825278 3.750903665915818 1.630372801597992 3.750903665915819 5.502744973542115 3.854254436665682 5.431792466268043 0.4471755655462812 1.557997494981921 0.4471748590868135 5.419315828020097 0.5638791372650112 5.393979688424572 -2.46652122830907 1.532101294755384 -2.466521404922204 5.406473531880293 -2.349818095444993 -19.09568861490444 -1.860737775573822 -19.71716312893302 -1.743635927404361 -19.0933554765953 -1.743635927404361 -1.649233103102599 -2.859567199326331 -1.648675988840149 -2.976683373446285 -5.523027031769663 -2.85956678576967 -19.65501490689303 -0.02263704786605328 -19.0297120460069 -0.02263704786605328 -19.02750970147574 -0.139739765654591 -19.71716312893302 1.847660563006503 -19.0933554765953 1.847660563006503 -19.0867053147492 1.740765367513165 -19.25725339646276 3.827431524102865 -19.88853787551105 3.917867663004274 -19.26881717011474 3.917867663004274 -19.50128008188347 5.671749433882255 -20.13187847699102 5.748127731735295 -19.51778234712939 5.748127731735294 19.7667812749501 -5.811840188322443 20.39490611426976 -5.88769550952377 19.786675930432 -5.88769550952377 6.140859473718175 -11.82192118735633 2.061893856221012 -11.82192118735633 2.062672747337603 -11.73103509104769 -17.38165993209769 0.429103221833177 -17.29160418754188 0.7859695532530753 -17.22586501560617 0.6024968064149385 -19.99860051972076 -0.129264626879026 -20.03692995984601 0.274651531291131 -19.84284155047692 0.2073961150121447 20.0445830652846 0.2609923657732687 20.00625418497915 -0.1429243006399641 19.85049470330193 0.1937368648675621 17.33110558440374 0.7772354161435705 17.42116358810667 0.4203688994892632 17.26536684195997 0.5937625740723932 2.164027541875839 0.5515809805773705 1.801174134016037 0.5515809805773705 1.801174134016037 0.83208660130879 -1.709899455308914 0.5515809805773707 -2.072749584913254 0.5515809805773707 -1.709899455308914 0.8320866013087902 2.164027541875839 1.19477621691749 2.164027541875839 1.03071325523453 1.801174134016037 1.19477621691749 -1.709899455308914 1.19477621691749 -2.072749584913254 1.03071325523453 -2.072749584913254 1.19477621691749 8.289403965375485 -2.788661418358525 8.191755230015026 -2.825474632941424 8.183709745059858 -2.661530130953802 -8.104747585472685 -2.828122870696716 -8.202398775323518 -2.791309654783989 -8.096702295527615 -2.664178362786818 10.55889685108461 -5.946475750744878 10.44012297903797 -5.880095964417052 10.53628430554413 -5.840934631093697 -10.35731628797262 -5.89110171479426 -10.47609214127761 -5.957481542480854 -10.45348009169989 -5.851940357070943 -1.970622815117817 -11.82143713216541 -6.049588879628457 -11.82143713216541 -1.97140170614905 -11.73055103585631 -20.37146078337978 -0.5875260487930961 -20.32937631025639 -0.1610463816450941 -20.27762162786924 -0.5640350063438532 20.32417836561852 -0.1739015931347521 20.36626246054495 -0.6003817335958721 20.27242331558046 -0.5768906650759407 -20.36033972231744 -0.7896780462460825 -20.47467865286477 -0.4440562104675164 -20.32509873553122 -0.3628146208389277 20.46316738269153 -0.4571844655618593 20.34882768846971 -0.8028067005413702 20.31358754771352 -0.3759427820974189 -1.801174134016037 -6.977500372299702 -1.801174134016037 -7.160534927336461 -2.164027541875839 -6.977500372299702 2.072749584913254 -6.977500372299704 1.709899455308914 -7.160534927336463 1.709899455308914 -6.977500372299704 -1.801174134016037 -7.160534927336462 -2.164027541875839 -7.160534927336462 -2.164027541875839 -6.977500372299703 2.072749584913254 -7.160534927336462 1.709899455308915 -7.160534927336462 2.072749584913254 -6.977500372299703 16.40028087842734 -1.096514751653602 16.43264684739913 -1.35225353776757 16.24836178246479 -1.336003393894237 -16.47990704049319 -1.348561334813969 -16.44754130520498 -1.092822530397934 -16.29562067470131 -1.332311189777687 16.19609020845928 -2.976192540915188 16.05680323653849 -3.060572695513196 16.01186058132998 -2.959557939969597 -16.10550301620983 -3.047195266568088 -16.24479163187337 -2.96281503271374 -16.06056070560901 -2.946180416143652 1.557441176765298 -2.976414794792929 1.557998290877803 -2.859298620672535 5.431793262163925 -2.859298207115874 -19.71099252619484 -5.865995296541705 -19.73088776767315 -5.941849933856844 -20.33911867998974 -5.941849933856844 19.44287400693677 5.724306708224998 19.45937786699727 5.800683623232993 20.07347361540942 5.800683623232993 19.19668673045452 3.864446538353782 19.20824711419368 3.954884620453327 19.8279694010471 3.954884620453327 19.03145439579096 1.868086594865004 19.65526164385514 1.868086594865004 19.02480298406573 1.761191802296992 18.96731324907351 -0.01606998787516269 19.59261733200767 -0.01606998787516269 18.96511135067093 -0.1331727488302648 19.65526164385513 -1.75023393902643 19.03378714285789 -1.867335829994521 19.03145439579096 -1.75023393902643 -19.71716312893301 -3.035852820181699 -19.70630012688311 -2.932379932769402 -19.09335547659529 -3.035852820181699 -19.65501490689303 -1.661030144640715 -19.65130187729402 -1.544307681117579 -19.0297120460069 -1.661030144640715 -1.649233627418467 -5.66861509053434 -5.523027556085529 -5.668614660178287 -5.558497928304542 -5.565295516326459 -19.71716312893302 -0.3709380187175263 -19.72097596217537 -0.2542182464687891 -19.0933554765953 -0.3709380187175263 -19.88853787551104 1.004335023182328 -19.90021075152527 1.107755774515915 -19.26881717011473 1.004335023182328 -20.13187847699102 2.709321514746258 -20.15119418013812 2.790029141600843 -19.51778234712939 2.709321514746258 -20.39490611426976 4.825675277952427 -20.42026695723209 4.884771801353764 -19.786675930432 4.825675277952427 20.62862864475278 -5.189494413296692 20.6565575668751 -5.24789067845684 20.02542496075474 -5.189494413296694 6.234562162653291 -10.29060420000016 2.156048683565865 -10.20929661415252 6.286211616719921 -10.20929603489529 2.164027541875839 4.256228387112969 1.801174134016037 4.256228387112969 1.801174134016037 4.446850187936754 1.801174134016037 14.53565253497429 2.164027541875839 14.36881323059433 1.801174134016037 14.36881323059433 -1.709899455308914 14.5356525349743 -1.709899455308914 14.36881323059433 -2.072749584913253 14.36881323059433 -1.709899455308914 4.256228387112969 -2.072749584913254 4.256228387112969 -1.709899455308914 4.446850187936753 2.164027541875839 0.83208660130879 -2.072749584913254 0.8320866013087902 8.840650698761181 0.7309651901980898 8.740696993498888 0.741067230969132 8.749502213520943 0.90498390251546 -8.65457962069206 0.7439368182846401 -8.75453572456612 0.7338347770853647 -8.663384631687885 0.9078534967795184 8.285031415308975 -2.670887680950639 8.290773607553 -2.787914757671433 8.185077943099925 -2.660784213273968 -8.203770488478375 -2.790562541754825 -8.198028435409483 -2.673535460808032 -8.098072564572732 -2.663431992766513 6.286210747687413 -7.247709244640746 2.156047814533343 -7.247709754129139 2.156320294775668 -7.140680253534097 -2.064773746241611 -7.247565948528585 -6.194943086811017 -7.247565439040191 -2.065046226061218 -7.140536447932877 -2.064774615251489 -10.20907791273233 -6.143288541849903 -10.29038548467444 -6.194943955820882 -10.2090773334752 -1.801174134016037 -13.50682571730549 -2.164027541875839 -13.36383510451845 -1.801174134016037 -13.36383510451845 1.709899455308914 -13.5068257173055 1.709899455308914 -13.36383510451845 2.072749584913254 -13.36383510451845 -2.164027541875838 -13.50682571730549 -2.164027541875838 -13.36383510451845 -1.801174134016036 -13.50682571730549 2.072749584913254 -13.50682571730549 1.709899455308914 -13.50682571730549 2.072749584913254 -13.36383510451845 18.8177069592771 -1.209340377535111 18.90992502597356 -1.377384683742904 18.69081283492763 -1.552240444926474 -18.93728235548932 -1.368108922980885 -18.84506451152456 -1.200064541132465 -18.71816917170635 -1.542964762871077 19.49338849225603 -1.600214965321107 19.35491319362604 -1.844695599665951 19.27729808140946 -1.777382601357212 -19.37542426648113 -1.83007648905537 -19.51390051793135 -1.585595581796428 -19.29780925957031 -1.762763415605031 -1.721617074545594 -6.968771324576598 -1.720217509984122 -7.075788784910571 -5.629321047573122 -6.968771197216782 1.628973567806513 -7.075050332908721 1.63037313263474 -6.968032872576905 5.538076360862024 -6.96803274521709 5.43179378641133 -5.667975308354976 1.55799881512521 -5.667975738711083 5.467262370965596 -5.564656151795372 -19.97241806420399 -5.243115459453888 -20.60355221981268 -5.301509222468676 -20.5756207094513 -5.243115459453886 19.73088776767315 4.877998344572728 20.36447977992893 4.937094554868735 20.33911867998974 4.877998344572728 20.09278821849486 2.822020037372321 20.07347361540942 2.741311791476443 19.45937786699727 2.741311791476443 19.83964137098812 1.124191389438626 19.8279694010471 1.020770416184978 19.20824711419368 1.020770416184977 19.65907569985622 -0.249251298510735 19.65526164385514 -0.3659709719504866 19.03145439579096 -0.3659709719504865 19.5889031099648 -1.549256831414366 19.59261733200767 -1.66597919737478 18.96731324907351 -1.66597919737478 19.64439942206315 -2.948580675760438 19.65526164385514 -3.052053772418875 19.03145439579096 -3.052053772418875 -13.33592262243147 -4.898779877281784 -13.32724461429281 -5.002380365810703 -13.9758112521686 -4.895899366622762 -19.27652982269344 -3.485648979579537 -19.88853787551105 -3.378800343703154 -19.26881717011474 -3.378800343703154 -12.78843572517963 -2.167939608558373 -12.78494239059626 -2.284666268952871 -13.43280904490074 -2.166317031007146 -12.86434947522666 0.3783191994140578 -12.86777865046281 0.2615920617598282 -13.51790675091619 0.3786073164295759 -12.80469908872295 3.150110555665507 -13.43915250706015 3.252547179441606 -12.79477930015034 3.253644499076614 -13.3724603603717 6.944633294311597 -13.99945800299225 7.023442643684843 -13.35957153980648 7.026130571389397 -13.23684863189478 12.02525215553542 -13.82154769380664 12.07864571751451 -13.22101723269816 12.08636941785606 12.33377592710247 -13.38925882167366 12.87212983008434 -13.45805102097961 12.31414740306657 -13.44971053785923 20.00563527017167 -4.289910144599922 20.62862864475278 -4.379461966831193 20.02542496075474 -4.379461966831193 2.164027541875839 4.446850187936754 2.16402754187584 14.5356525349743 2.16402754187584 14.36881323059433 1.801174134016037 14.5356525349743 -2.072749584913254 14.5356525349743 -1.709899455308915 14.5356525349743 -2.072749584913254 14.36881323059433 -2.072749584913254 4.446850187936753 8.332421442733166 0.3248724105630031 8.23478612014728 0.3816650488759661 8.244146163658927 0.6620740110073597 -8.14784378851318 0.3834650845206253 -8.245481565846042 0.3266724452599342 -8.157203605496989 0.6638740513313505 8.845018977540157 0.8474460458601429 8.838737870248515 0.7304361606346531 8.747586610073936 0.9044539734638741 -8.752619675533401 0.7333038493751959 -8.758900633707189 0.8503137395542709 -8.661465807769917 0.9073216695714188 6.381706256974224 -3.037854604489748 2.217293209073027 -3.037855313431844 2.217331895121768 -2.920741092364239 -2.126017979415087 -3.037836654842383 -6.29043087830499 -3.037835945900288 -2.126056665465213 -2.920722433774778 6.347327608743012 -5.977014465299771 2.217294058606035 -5.873458934281515 6.381707106507224 -5.873458194850908 -2.126018828940561 -5.87341449389307 -6.256058786560113 -5.976970028205966 -6.290431727830457 -5.87341375446244 -19.95263164985139 -4.329606636135661 -19.97241806420398 -4.419161021052664 -20.57562070945129 -4.419161021052665 19.86182033568163 -0.8703749569180225 20.01154621865167 -0.951449981342862 19.80451876606578 -1.27289923290686 -20.02232204506392 -0.9391425865699135 -19.87259621809162 -0.8580674981478026 -19.81529407100559 -1.260592091872657 20.23146596873297 -0.8716685261312739 20.12242406551535 -1.218348519731488 20.02862266206194 -1.194764354361259 -20.12822428633522 -1.204076335472272 -20.23726650002452 -0.8573959743186155 -20.03442289304061 -1.180492145097886 -1.826824586943753 -11.52725328202993 -1.825132545534608 -11.61812270646902 -5.785401571913356 -11.52725303926997 1.733878155305792 -11.6170711371541 1.735570194995614 -11.52620171269521 5.694151202371042 -11.52620146993524 -1.721617298496609 -9.930784784932458 -5.629321271524137 -9.93078464102506 -5.682238952383604 -9.849983874159859 5.538076584785603 -9.929676401114678 1.630373356558319 -9.929676545021975 5.590999032665459 -9.848875691607359 19.8279694010471 -3.399585845859671 19.21596080132521 -3.506434080563812 19.20824711419368 -3.399585845859672 -12.24637376714517 -13.40836023289157 -12.22674923757046 -13.46881107464228 -12.78473223522918 -13.47715143711746 13.15095731194658 12.04773369815918 13.13512647058755 12.10885081313781 13.73565693208303 12.10112713141661 13.913827371448 7.038180209726914 13.28682978420098 6.959370587725284 13.27393922907185 7.040868146729923 13.35256059130704 3.259584294556714 12.71810719620634 3.157147581717787 12.70818625333717 3.26068161514578 12.78132664426309 0.2637482655984293 12.77789917124408 0.3804753601100623 13.43145531771669 0.3807634770190918 12.69834033445918 -2.286792600824052 12.70183198112379 -2.170065983258001 13.34620643190982 -2.168443406302117 13.24156751753326 -5.010104758862823 13.25024668311079 -4.906504171975626 13.89013699207585 -4.903623658581844 -13.38655077693436 -9.407329466025793 -14.02643328442225 -9.403703719747682 -13.99974726314679 -9.315566488136867 -12.79265236282773 -3.17249119754468 -13.43702561684884 -3.170852553021684 -13.4421999530635 -3.069777157777844 -19.88853787551105 -4.653437878976164 -19.87105866931539 -4.572470025680754 -19.26881717011474 -4.653437878976163 -12.8664396327831 -2.550426284173941 -13.51999690804204 -2.550137563341048 -13.51423263529951 -2.431827814564653 -12.78725258424518 0.5421897651681046 -13.4316259157876 0.5411387125132219 -13.43730858216449 0.6594526508923403 -13.31820626962136 1.148622773729654 -13.95809572863937 1.14641997789693 -13.95356646660478 1.247520193935313 -13.05263182037547 8.058491633593386 -13.65322229626781 8.054612698573468 -13.67842590892999 8.143013872085891 -13.53753473976309 12.42088103693054 -13.56327857532572 12.49011286933152 -12.97958068716272 12.4303234295584 12.18807699161649 -13.99050758966505 12.21078310288069 -14.06453253642737 11.67574409871494 -13.98125989923936 20.80300052005983 -3.525848058974709 20.82854644668942 -3.605475864612836 20.20337945190793 -3.525848058974708 17.92773440791897 0.934404939424109 17.95883205212984 0.5087100955931938 17.86686999530537 0.7498942998668615 20.37068608345732 -0.3150210748115584 20.2389061130269 -0.7428518873839999 20.1766302477866 -0.3823346340016746 -20.2310649963513 -0.7288551156814925 -20.3628445054506 -0.301023868366783 -20.16878870812031 -0.3683374959578851 -17.90835210279895 0.5190444716235586 -17.87725191635645 0.9447395490675353 -17.81638799976208 0.7602288082544331 18.63292876559278 0.6798426208756718 18.71971455788247 0.4374742982094129 18.67283844015406 0.3369992226401191 -18.67640575487218 0.4500103576947548 -18.58961808424568 0.6923788763163904 -18.62952991850636 0.3495352008911188 6.414908754167234 1.023368008062789 2.238467718276084 1.023367830827259 2.238448809289845 1.14048199675667 -2.147192343400981 1.023358710823203 -6.323633826326739 1.023358888058733 -2.147173434416766 1.140472876752615 6.402859763642525 -2.580249934277293 2.238467956833238 -2.463520932997877 6.414908992724389 -2.463520756344259 -2.147192581957001 -2.463513878309864 -6.311584239756299 -2.58024287954372 -6.323634064882758 -2.463513701656246 20.80300052005983 -2.801340922762518 20.20337945190793 -2.801340922762517 20.188512053329 -2.694952224273715 -20.15280409823782 -2.823769506265871 -20.75242450568366 -2.823769506265871 -20.13793298121631 -2.717382437237145 -20.77796689271467 -3.639240388894365 -20.75242450568366 -3.559610185451681 -20.15280409823781 -3.559610185451681 20.35332457234593 -0.3912425455085675 20.31267981979008 -0.795018995246536 20.2188592612982 -0.8185559616507105 -20.30717484434662 -0.7814338473596483 -20.34781928729178 -0.3776570108690364 -20.21335429499406 -0.8049708363084362 -1.945145187511359 -15.47335699436489 -5.965303587510771 -15.39589692551435 -1.946595105483251 -15.39589771130469 1.853880752392238 -15.47229979428692 1.855330669772816 -15.39484051121988 5.874040790733024 -15.39483972542954 -5.785403239548952 -15.04013907866404 -5.847463225359407 -14.97998396035569 -1.826826254579378 -15.04013953634829 5.6941528698481 -15.03873239205965 1.735571862472703 -15.03873284974418 5.756210470486538 -14.97857723599753 -20.13187847699103 -4.886548309996081 -19.51778234712939 -4.886548309996081 -19.53176699574289 -4.976773996913344 19.4733595225263 -5.014604668516155 19.45937786699727 -4.924377015635736 20.07347361540942 -4.924377015635736 19.81049155353127 -4.60384828740536 19.8279694010471 -4.684816776859036 19.20824711419368 -4.684816776859035 -11.58742557215873 -13.99849849022211 -12.12246911885658 -14.08177050757356 -12.09976018715222 -14.00774611181299 12.89323353164304 12.45224083362812 13.47693195902317 12.51203027906792 13.45118815197472 12.44279844010534 13.56703584054666 8.070163337369181 12.96644536465432 8.074042272389097 13.59223945320884 8.158564510881602 13.87238915572219 1.150688780284061 13.23249801746846 1.152891577898662 13.86785819432984 1.251789078104015 13.34502163273091 0.543784993079222 12.70064717012643 0.5448360458892348 13.35070372348434 0.6620989489209274 13.43354892563288 -2.552814681976314 12.77999277959097 -2.553103402850863 13.42778520730833 -2.434504916130313 13.35043036383278 -3.174749920172591 12.70605597875404 -3.176388565908164 13.35560640873016 -3.07367445013428 13.94085189954146 -9.420090180270188 13.30096771279472 -9.423715927097835 13.91416594955969 -9.331952935300919 6.246267764111797 -10.52846786661774 6.291948354259946 -10.61163952638504 5.481289423857795 -10.52846786661774 -13.05222448821012 -8.58187421502493 -13.03820336607494 -8.663257287449984 -13.65281504003895 -8.57755341964312 6.245847800149925 -1.880433942362893 6.266406242435597 -1.980290088833311 5.411532210389346 -1.880433942362893 5.762895432627286 -2.532489777285673 5.773209501044816 -2.650608049472909 4.900561396497381 -2.532489777285673 5.724733741118499 0.7522634488976678 5.714453933394056 0.6341415790908785 4.845745101101401 0.7522634488976678 5.762895432627284 0.1446212800522538 5.74254738240009 0.04473273972453876 4.90056139649738 0.1446212800522538 6.24584780014993 9.099169542499173 6.200304759878094 9.015957262895716 5.411532210389351 9.099169542499173 6.194009239969899 14.76720583912763 5.481289423857793 14.82647764875103 6.246267764111794 14.82647764875103 -6.681573585152865 -15.68616414123209 -6.05407990356233 -15.74840312665198 -6.737347497045993 -15.74840312665198 12.48855316705312 -9.252799388235788 11.97610575784352 -9.249208305926727 11.99392520395582 -9.168288972593787 20.10612483648646 -0.06994634711913117 20.17767637959077 -0.4293966130357051 20.0994877879545 -0.4963115679919771 -20.16009323139969 -0.416667326695615 -20.08854078378872 -0.05721675942178185 -20.0819047173461 -0.4835823377522973 6.381704649756711 5.37887575203954 2.21729160185552 5.378875306235432 2.217181417853976 5.485903637859425 -2.126016372212715 5.378817155681943 -6.290429271102615 5.378817601486052 -2.125906188207228 5.485845487305934 6.393769807776276 0.5592844259689304 2.217292424198623 0.6760129261795581 6.381705472099821 0.6760133383679016 -2.126017194548094 0.6759985033494707 -6.302495025160681 0.559270003232243 -6.290430093437998 0.6759989155378136 20.9060612931202 -1.562612468000731 20.30848620802033 -1.562612468000731 20.30287072104166 -1.44558241718986 -20.25956944162511 -1.569885710493683 -20.85714420726013 -1.569885710493683 -20.25395425910502 -1.45285561270979 20.9060612931202 -2.225438164502922 20.92394225591409 -2.32830743226695 20.30848620802033 -2.225438164502923 -20.87502839644772 -2.345641707276582 -20.85714420726013 -2.242773584147423 -20.25956944162511 -2.242773584147423 -11.88817560536505 -9.260603524094993 -12.40062473387321 -9.264194641840197 -11.906001431415 -9.179683392264884 2.06097151102202 14.99813896867651 6.140855942856528 14.92067524972966 2.061890325359427 14.92067466034867 -1.969700470176329 14.99746901968832 -1.970619284413044 14.92000471135974 -6.049585348923622 14.92000530074073 5.965295159525155 14.4647058947663 6.026937110409433 14.40431189296153 1.946586677497587 14.46470528209729 -5.874032363336034 14.46368315038819 -1.855322242375778 14.46368253771903 -5.935673121822985 14.40328913493601 -20.39490611426975 -5.70279024415907 -19.78667593043199 -5.70279024415907 -19.80659147745628 -5.778662702814096 19.75080462913672 -5.832812341942816 19.73088776767315 -5.756941274204897 20.33911867998974 -5.756941274204898 -20.13187847699103 -6.184768002291844 -20.10909363375337 -6.125026385394213 -19.51778234712939 -6.184768002291844 20.07347361540942 -6.235629099221573 19.45937786699727 -6.235629099221573 20.05068833849255 -6.175887826897446 12.95201542659176 -8.677205228103345 12.96603823407813 -8.595821883043008 13.56662878573868 -8.591501073186427 6.754616299660663 -15.6462745323125 6.810387904093108 -15.70851477878647 6.127121264295615 -15.70851477878647 -6.268455780373956 14.72898408943928 -6.320714429482843 14.78825583087804 -5.555738032909589 14.78825583087804 -5.486073660803411 9.074287849891656 -6.274845184594558 8.991075588023234 -6.320388277228336 9.074287849891652 -4.976351778539248 0.1415936677974302 -5.818333789585228 0.04170518630734208 -5.838683341421687 0.14159366779743 -4.921641526579893 0.7481925475422897 -5.790347859003281 0.6300707052936024 -5.800628184995603 0.7481925475422897 -4.97635177853925 -2.528411035207693 -5.848997933678714 -2.646529279441869 -5.838683341421689 -2.528411035207693 -5.486073660803408 -1.877463045824859 -6.340948186675116 -1.977319135869942 -6.320388277228332 -1.877463045824859 -5.555738032909594 -10.50352967720198 -6.366395134018609 -10.58670129809006 -6.320714429482849 -10.50352967720198 5.481289423857795 -15.98753793244891 5.510969567998247 -15.91530300543795 6.246267764111796 -15.98753793244891 6.24584780014993 -10.78771876483377 5.411532210389351 -10.78771876483377 5.435328218621169 -10.7037108618419 -13.91353734314843 -12.92171871146923 -13.8861213111479 -12.85288663792676 -13.31306410991564 -12.93200797088304 5.762895432627289 -4.557917422079658 4.900561396497384 -4.557917422079658 4.908463923540076 -4.455744293400096 5.724733741118496 -2.869284616338203 4.845745101101398 -2.869284616338203 4.852122102271112 -2.750999744964681 5.762895432627284 0.8523079849774781 4.900561396497379 0.8523079849774783 4.894223108620866 0.9705958909207604 6.245847800149928 2.592472923930502 5.41153221038935 2.592472923930502 5.404312132754207 2.694682901092746 6.246267764111791 9.189171306058729 5.48128942385779 9.189171306058727 5.457634726556623 9.273197912901006 6.054079903562323 15.20192656145848 6.026653593107932 15.27471197250861 6.737347497045986 15.20192656145848 -7.136840617307224 -15.86362293600253 -7.110680685708544 -15.94955050630191 -7.733638703188792 -15.86362293600253 11.88051109584065 -10.51035110463789 11.89856222168681 -10.59982731610746 11.40621783062836 -10.5074326416561 6.286208139886638 10.34096985642506 2.156045206732569 10.34096953267527 2.155637263309643 10.43185840111712 -2.064771138505662 10.34071600012359 -6.194940479075068 10.34071632387338 -2.064363195715607 10.4316048685672 6.320712284776231 4.047761473604088 2.156046116358797 4.151290242535098 6.286209049512875 4.151290488951789 -2.064772048108888 4.151180774574902 -6.229438067194808 4.047651997446768 -6.194941388678302 4.151181020991611 20.38689106185467 -0.3675360882013236 20.98075509356929 -0.4845585734268668 20.38100385810589 -0.4845585734268669 -20.93300181444927 -0.4772426378975562 -20.33913616396483 -0.3602201031614308 -20.33324933203611 -0.4772426378975562 20.98075509356928 -1.181125789820407 20.98439634225405 -1.297509928046471 20.38100385810589 -1.181125789820407 -20.93664116356928 -1.301150725698631 -20.93300181444927 -1.184766447515376 -20.33324933203611 -1.184766447515376 11.9425107601879 -5.460110390939859 11.46821182019071 -5.457833078615106 11.48129222873351 -5.354517706193568 -11.3796557633655 -5.462912767894873 -11.85395239058167 -5.465190072791427 -11.39273033654533 -5.359597732470252 -11.80992550383406 -10.61126265504318 -11.79187660583792 -10.52178615659516 -11.31758565358503 -10.51886768425294 6.19279012385028 8.64965783282023 2.061893058865427 8.730855545814588 6.140858676362587 8.730855762737491 -1.970622017798412 8.730438441473964 -6.10152548991167 8.649240755296395 -6.04958808230905 8.730438658396796 20.62862864475278 4.663095231786883 20.02542496075475 4.663095231786882 20.04875704449826 4.73834140769583 -19.99575106009266 4.793917561647061 -19.97241806420399 4.718672154314169 -20.5756207094513 4.71867215431417 20.39490611426976 5.063741524841502 20.36955884826999 5.00462172494337 19.786675930432 5.063741524841501 -20.33911867998975 5.116027931513679 -19.73088776767315 5.116027931513679 -20.31376897162592 5.056910494480397 -13.54894758620648 -12.869464876199 -12.99100108768251 -12.87938192315538 -12.9741469154952 -12.94032896927434 12.88781872262451 -12.96191251164105 12.90467236016845 -12.90096561145163 13.46261942713789 -12.89104858824029 13.82781376212289 -12.94490572427047 13.2273405288901 -12.95519498368427 13.80039773012236 -12.876073650728 7.206890183415421 -15.8194261028975 7.80369147570937 -15.8194261028975 7.180731613869257 -15.90535242980736 -6.127121264295615 15.16110947286534 -6.810387904093107 15.16110947286534 -6.099695999247533 15.23389437246668 -5.555738032909594 9.16386601240076 -6.320714429482849 9.163866012400758 -5.532082481422274 9.247892971168845 -5.48607366080341 2.582958482464122 -6.320388277228336 2.582958482464122 -5.478856527112153 2.685168097921368 -4.97635177853925 0.847745541607958 -5.838683341421689 0.847745541607958 -4.970013523685966 0.9660334486462843 -4.921641526579892 -2.864741126722707 -5.800628184995603 -2.864741126722707 -4.928018501940538 -2.746456254488112 -4.976351778539248 -4.548779407090365 -5.838683341421688 -4.548779407090365 -4.984251282078246 -4.446606624270848 -5.486073660803407 -10.7624996933367 -6.320388277228332 -10.7624996933367 -5.509870588640021 -10.67849145069768 -6.320714429482852 -15.94817489215379 -5.585417048391617 -15.87594043913541 -5.555738032909598 -15.94817489215379 21.57906557726768 -2.876514824472174 20.65680101162844 -3.153062524123012 21.51185973897987 -2.822035989789736 6.054079903562315 -15.35735574199614 6.737347497045978 -15.35735574199614 6.79137675512484 -15.41563520193747 19.78228867112949 -4.802496146611683 19.81720279778365 -4.884064396474167 18.82936954318858 -4.965817707361395 18.89928919099147 -2.459749490640927 18.91478716833286 -2.561382932191457 17.92280045984089 -2.570335453807294 18.56983972151805 -1.853871095590934 18.57741461973798 -1.972112239387514 17.58561952867072 -1.92545357159622 18.45123474670648 0.09423992229320444 18.44383717760304 -0.02400991670020455 17.46202567084532 0.06687675697882396 18.50194631647845 0.8301131190783623 18.48737543229769 0.7283892171674928 17.5176845152422 0.8472212211496896 19.1518036754584 4.037028737242856 19.12092319045545 3.954465979097988 18.17621860774099 4.104024287775686 19.89386684210612 4.621830500182345 20.82338060881069 4.415922753373301 20.76594985327408 4.35491387762656 -10.35094543297784 -14.20067283139461 -11.19410078352241 -14.53172579100197 -11.19811047518582 -14.44342460728844 -7.136840617307227 -10.31360030017205 -7.733638703188795 -10.31360030017205 -7.683242648508167 -10.23213913867737 20.32446354097022 0.8900140395694282 20.9060612931202 0.78372669717952 20.30848620802033 0.7837266971795198 -20.85714420726013 0.8063377358356672 -20.2755503314351 0.9126234382160128 -20.25956944162511 0.8063377358356674 20.9060612931202 -0.595340636213596 20.90255189760133 -0.7117279831918816 20.30848620802033 -0.595340636213596 -20.85363672124219 -0.7080966544917728 -20.85714420726013 -0.5917091687065901 -20.25956944162511 -0.5917091687065901 11.50908564424262 -1.918365067201044 11.05997776113018 -1.917319314272627 11.06360858494781 -1.800934974495052 -10.9708844374187 -1.918309278534524 -11.4199952284914 -1.919355031782282 -10.97451876354575 -1.801924903216777 11.49024261449513 -6.437900897545949 11.50125220196862 -6.545300943881646 11.04113504256883 -6.436775475956003 -11.41214246865376 -6.551134297138825 -11.40113237296818 -6.443734284266868 -10.95202189307697 -6.442608863027584 7.80369147570937 -10.28700547585288 7.206890183415421 -10.28700547585288 7.75329385580454 -10.20554490388711 20.80300052005983 2.519946469598104 20.20337945190793 2.519946469598103 20.22565931231011 2.609136494481905 -20.17508078172761 2.649577058616104 -20.15280409823781 2.560384419397016 -20.75242450568366 2.560384419397017 20.62862864475278 2.352086369464359 20.60494166879231 2.27210270209862 20.02542496075475 2.352086369464359 -20.55193740283809 2.305486034160472 -20.5756207094513 2.385472061529084 -19.97241806420399 2.385472061529084 12.2068980965008 12.9550050083438 11.69455395108866 12.94594609188215 11.67241457017144 13.00585786343107 -11.58412638900755 13.0226593553717 -11.60626177456227 12.96274836233339 -12.11860764338409 12.97180716108091 12.72918432577834 13.18306093999296 12.70393517905035 13.10954874643071 12.17129791733646 13.17123547407489 -12.64157854467537 13.20214947501818 -12.08369156497823 13.19032410925815 -12.61632654269563 13.12863790408146 -6.864417233210737 -15.3761661782524 -6.810387904093118 -15.317886759067 -6.127121264295628 -15.317886759067 11.25489979803197 -14.38906050582082 11.25089241115764 -14.47736029460588 10.40773359752547 -14.14631256477208 -20.7612177207908 4.288671046468957 -20.81864838608558 4.349679073782933 -19.88913433797749 4.555583957092581 -19.13396671245228 3.912501603394154 -19.16484697658038 3.995064922279535 -18.18926161225843 4.06206092782526 -18.50563229836227 0.713973065757318 -18.52020368526477 0.8156964303875511 -17.53594028943154 0.8328044420980906 -18.46265677827362 -0.03181936797406507 -18.4700543868238 0.08643046949219194 -17.48084579267644 0.05906730453119619 -18.59516460013114 -1.964343308648128 -18.58758982961047 -1.846102159788938 -17.60336804499703 -1.917684638859098 -18.92986105151579 -2.547164824102136 -18.91436262528865 -2.445531918067848 -17.93787344073092 -2.556117298546288 -19.82431353319132 -4.842691482695914 -19.78939915044415 -4.761122784839052 -18.83648099627789 -4.924445242593923 -21.56115409333136 -2.81300687974492 -21.49394886930313 -2.758528585126467 -20.63888794608658 -3.08955183790076 -6.151187897777986 14.86793685246231 -6.183484001710157 14.8188325427136 -6.88676893606024 15.3445787044166 21.01588486134403 -1.493580908638953 20.97214619359315 -1.450305432604273 21.85257272911928 -1.099374492657775 -6.054079903562326 15.66394356841404 -6.085546252392573 15.57912534756473 -6.737347497045989 15.66394356841404 19.09784261631689 -5.665367083744897 19.07866516452079 -5.605766508192128 20.06451467253897 -5.510338225733223 18.94861090759784 -4.489328350193258 17.96526477264077 -4.567994219834461 17.95663560601861 -4.499031578449101 18.55626228192083 -2.245196215778663 17.56705774949353 -2.272660838106723 17.56448057618941 -2.198361804061612 17.50361834533681 0.3376192558547082 18.48537907942182 0.2463938007939507 17.50111210259477 0.263316631053256 17.98349004384679 2.778780388780819 18.95114781123171 2.650100072375254 17.97479970152297 2.709821865356972 18.66871701664516 4.739838390008994 18.68550973270752 4.799881018867224 19.62350378177931 4.626139503213997 20.48585895366501 3.208972020292398 20.5212234669863 3.256749896532715 21.3551482091582 2.922788511933866 -10.59260645905891 -14.02473504976397 -10.57474531747618 -14.07820756627867 -11.42549649788359 -14.3130698754175 -7.032480610264812 -9.929920506486791 -7.017465549157525 -10.009966694629 -7.564205398152559 -9.929920506486791 20.80300052005983 0.6130911782242035 20.78594527094802 0.5101369711179855 20.20337945190793 0.613091178224203 -20.73536589002804 0.5273515224651979 -20.75242450568366 0.6303045875238176 -20.15280409823781 0.6303045875238178 11.11481591308222 -0.1051635201005277 10.67313058780968 -0.1054507822121825 10.66932013353808 0.0109307059469806 -10.58370889753562 -0.1045602024869996 -11.02538954908752 -0.1042729402951162 -10.57989495614908 0.01182131817607818 11.12108527513962 -2.82985394616313 10.6758855991421 -2.711774660640677 11.1175709227317 -2.711485801621931 -10.58646658533347 -2.713396171815666 -11.03166571549463 -2.831475378943757 -11.0281472352027 -2.713107312988698 -7.032480610264807 -5.980251993563511 -7.564205398152554 -5.980251993563511 -7.530786548996639 -5.875759681946785 7.63471531577972 -5.966528150141411 7.102991448426993 -5.966528150141411 7.601296869834521 -5.862035759979094 7.634715315779718 -9.904777725263328 7.087974166484131 -9.98482475006748 7.102991448426991 -9.904777725263328 11.88104301060168 7.730744070698312 11.40674967366338 7.727387722639384 11.38700320447991 7.808030776517882 -11.31811627320468 7.737400235818781 -11.79240729693525 7.740756613765377 -11.29836349812367 7.818044007809075 12.42236784211999 8.855473325503414 11.93024021143789 8.93997306177841 12.44267920541723 8.944654170067947 -11.84224949512063 8.952765702106669 -12.33438121839557 8.868265640508742 -12.35469020856201 8.957446828418414 -7.13684061730723 14.6035380207491 -7.733638703188799 14.6035380207491 -7.793065852383537 14.66364680158483 7.863116019706955 14.62142281774234 7.803691475709366 14.56131246222641 7.206890183415417 14.56131246222641 6.810387904093108 15.62250881395056 6.158585597260383 15.53769164992117 6.127121264295615 15.62250881395056 10.64812188910312 -13.97020986349114 11.48100331908877 -14.25855713810598 10.63025727708445 -14.02368468870126 -20.47134883064427 3.141884624800533 -21.34064834484623 2.855720136661591 -20.50671077110817 3.189659325645795 -18.67744677331908 4.688548675580548 -19.63223152325436 4.574843078576825 -18.69423976044573 4.748594847996532 -18.96586603948137 2.620070198242451 -17.99820761879756 2.748751986681923 -17.98951765047572 2.679792674409498 -18.50374101007454 0.2355873519280551 -17.52198059616986 0.3268114671119724 -17.51947243429134 0.2525099336327405 -17.58504291080237 -2.261868284593515 -18.57424697963804 -2.234404066597924 -17.58246375705508 -2.187570344374183 -17.98007130213197 -4.537979718092 -18.96341891204808 -4.459312931132367 -17.97144271064198 -4.469016272537027 -20.06924100169798 -5.459150753230877 -19.08339303448883 -5.554584673331036 -19.10257096872654 -5.614188769922377 -21.82463515913867 -1.035607285027535 -20.94419451317123 -1.386516728459617 -20.98792973384786 -1.429789553625454 6.957030406515772 15.30147402807357 6.253764026412599 14.77571310684173 6.221463213333099 14.82481879511972 13.24902279558214 3.294787470836895 13.17250605793369 3.493275937324095 13.23996567473463 3.508783176795775 -5.365113282948636 15.79065007294183 -4.710040908357168 15.22767842466411 -5.39995510525978 15.70665233539627 16.19794462004861 2.754856657617638 16.1220949461399 2.556352607012657 16.13048607222746 2.770365114624273 18.34801597482679 1.481637412947112 18.20345860114789 1.329992227552638 18.29265451660103 1.525032494539118 19.53355452758557 0.3371112082606094 19.56892365470986 0.2736465125813908 19.38331637588949 0.1889224661028608 20.0821404801278 -0.5686390283897488 20.09416422805195 -0.6423614134252477 19.89559330751496 -0.6520758376530369 20.14746044991227 -1.316385372481673 20.13548672438661 -1.390114901023454 19.9488895817624 -1.326100459367725 19.73236464710091 -2.196742952686596 19.69731556752489 -2.260318123429297 19.54638105014318 -2.131632940623904 18.58278942852822 -3.435201583282729 18.52779480529105 -3.478882128864334 18.43703879388979 -3.302870002411925 16.33447133570581 -4.872926882947694 16.26708276076318 -4.888623179742998 16.25777471784159 -4.692823570233458 13.07313341024983 -5.779812798939578 13.00574360763224 -5.764118123836169 13.0831053701237 -5.584033418828343 -16.75140205280221 -7.033609355633292 -16.73455669734293 -6.95378890099922 -15.84941523673392 -6.938987130608046 11.485704578568 3.564039440242556 11.03659715100993 3.562346679198259 11.02256251450557 3.665582742433701 -10.94748000297495 3.566890853070066 -11.39659033852839 3.568583609031864 -10.9334511294356 3.67012660634021 11.49823570533242 0.784514190463575 11.0530095748095 0.9012468114319752 11.50211739701468 0.9028734869298769 -10.96390958408971 0.9030289786852718 -11.40913457640902 0.786296441410674 -11.41302031426358 0.9046556530168958 -7.476732188075237 -2.540275438685691 -7.96185890084587 -2.540275438685691 -7.949814201404601 -2.422254753791453 8.031016493912214 -2.536254287616334 7.545887520374816 -2.536254287616334 8.018975014907184 -2.418233402063202 -7.476732188075234 -6.917994599196333 -7.464511891600614 -7.025276898338348 -7.961858900845867 -6.917994599196333 8.03101649391221 -6.900416800026115 7.533669734336611 -7.007698404937827 7.545887520374811 -6.900416800026115 16.76420119447324 -6.91647899188791 16.78104572894176 -6.996300651314189 15.87906067360353 -6.901676998082103 11.91022314828462 4.561712338596312 11.44809652452617 4.666079386483428 11.92239421787382 4.669030272460829 -11.35951521528867 4.672466824850459 -11.82163888593369 4.568099821856783 -11.83381059580436 4.675417709558539 -7.032480610264804 8.72071542154522 -7.564205398152551 8.720715421545219 -7.614253547443564 8.802314661677276 7.634715315779717 8.694160543473812 7.102991448426989 8.694160543473812 7.684765391583088 8.775759062067047 -7.136840617307227 8.411319751399541 -7.151526848290986 8.331230264692637 -7.733638703188795 8.411319751399541 7.803691475709369 8.386000156298877 7.221578957882544 8.305909864359006 7.206890183415419 8.386000156298877 5.440152179921578 15.75103547255551 5.474990754676886 15.66703843587469 4.785074059763954 15.18806852163023 -12.91785455589404 -5.771413657964802 -12.98524824569778 -5.787108314123944 -12.99521938835092 -5.591329170328322 -16.18736023591789 -4.90079620378512 -16.254743835362 -4.885099940633942 -16.17804683615611 -4.704997013960973 -18.45660410930849 -3.492893670088006 -18.5116046017812 -3.449212762133619 -18.36585358986387 -3.316880083443126 -19.6342150670084 -2.270541307850118 -19.66926621938151 -2.206966020290432 -19.48327895573629 -2.141855888590541 -20.07656025567824 -1.393310997677839 -20.08852736323156 -1.31958186362021 -19.88995920110071 -1.329296898526438 -20.0347334368345 -0.6392674188977939 -20.02271642856252 -0.5655454133313304 -19.83616522247241 -0.6489817931228171 -19.50444059046417 0.2832174139911288 -19.46906936833976 0.3466822125640264 -19.31882967102436 0.1984932301516812 -18.13094297193036 1.342681974469279 -18.27550057868637 1.494328204769843 -18.22013320684589 1.537723585374211 -16.04192664748013 2.567288158049044 -16.1177766731274 2.765791866404721 -16.05032309836031 2.781300296672564 -13.08487286704176 3.500189080775882 -13.16139273782458 3.301700818487659 -13.15233636581025 3.515696304294178 10.24085731453228 3.054641142801304 10.09568434174807 3.206266583057336 10.15105999396724 3.249656014342071 -13.92169498924238 8.525583904608956 -13.92571437982139 8.464181066648459 -14.80733845710934 8.721989234606134 9.729376143567727 -5.485682896584646 9.674365302733431 -5.442009467930161 9.820724959866462 -5.309699448012958 -15.7431166168421 -8.744679841109498 -15.74617360574825 -8.806115397923687 -16.63121274020343 -8.824313949317142 -7.649723849017653 0.503208117632882 -8.118524992821746 0.5032081176328818 -8.130684527790425 0.6212197641389228 8.187117002699868 0.4991882500390427 7.718311818779396 0.4991882500390429 8.199273291994922 0.6172001007674531 -7.649723849017653 -2.827342530455175 -7.645574661377543 -2.94568937160102 -8.118524992821746 -2.827342530455175 8.187117002699868 -2.821886003920568 7.714161150644998 -2.940232951486718 7.718311818779396 -2.821886003920568 -17.35285518253659 -4.781519281615425 -17.33550081610619 -4.674675810283945 -16.46204657156678 -4.723592537597446 17.36116383204319 -4.649529544745183 17.37851949569528 -4.756372010921651 16.48771172748784 -4.698445811863101 15.77341221322411 -8.69490455544441 16.66150737375114 -8.774539078152111 15.77646917625345 -8.756340432034165 -7.476732188075231 3.934684559417278 -7.961858900845864 3.934684559417278 -7.996117669615851 4.039003763958955 8.03101649391221 3.92087212163712 7.545887520374811 3.92087212163712 8.065274653067206 4.025191448810749 -7.03248061026481 5.26692659629437 -7.04576841658478 5.159727383726821 -7.564205398152557 5.266926596294369 7.634715315779718 5.249844130181354 7.116276421466857 5.14264557215134 7.102991448426991 5.249844130181354 -16.35401105570545 5.589322087643444 -16.36932733869319 5.669338509553549 -15.46755489395689 5.45903300351341 16.40125262962586 5.632256087627205 16.38593746804693 5.552238438000799 15.49948268553142 5.421947354805714 14.84800931200649 8.674772106184451 13.96638717917902 8.416962603943121 13.96236775505396 8.478365759693405 -9.583499015840868 -5.444112271117455 -9.638510428180183 -5.487785702994803 -9.729861111525326 -5.311802241436492 -10.00503999929794 3.208677945844417 -10.15021542408105 3.057052493225586 -10.06041621888513 3.252067380666915 7.823263378063171 1.844995796719567 7.637044660860614 1.929707460771202 7.672430506030068 1.993162881079528 7.266002671424891 -4.081227628148306 7.230933229169728 -4.017662908855122 7.41752398173393 -3.952563600562411 -7.476732188075232 1.049556411670443 -7.481029337041679 0.9312145841113194 -7.961858900845867 1.049556411670443 8.031016493912208 1.044163919605646 7.550186096798842 0.9258219855750245 7.54588752037481 1.044163919605646 -17.52887280798863 -2.200391799271471 -17.52253928407527 -2.082104840340035 -16.65121182350999 -2.183526522309906 17.54693523901445 -2.074315040848438 17.55326847356357 -2.192602147985348 16.67561015576078 -2.175736849892744 -16.54224332996499 -5.38969046182404 -17.41554103145738 -5.339073624759178 -16.53793646737794 -5.32047998459549 17.44071208892617 -5.309329019913351 16.56741663537295 -5.359946560773709 16.56311019988906 -5.290735121216711 -17.04231749954915 3.027321072225742 -17.05857124665137 3.134267081755523 -16.16536354207718 2.950948116548893 17.08629494565541 3.10905467310819 17.07003942855553 3.002109703978317 16.19308803469502 2.925737491278382 -16.75249666411863 4.038603306935936 -15.86378180945119 3.918212494690579 -15.86143047294218 3.848944464869951 15.89325589887734 3.888945814367085 16.78196948360307 4.009338306784329 15.89090559118726 3.819676817843149 -7.139709940404122 -4.017280058561446 -7.174782378316723 -4.080844784922408 -7.326306038254803 -3.952180743030327 -7.545772553450412 1.92961163723237 -7.731996629065305 1.844899970947288 -7.581161383160362 1.993067059213717 6.454357718850154 0.02693688988193563 6.255173985870023 0.03665121777820374 6.267210639867439 0.1103728717575611 6.292475976014345 -2.027041327424431 6.10527931616058 -2.091055105081219 6.093292294909722 -2.017326341309507 -17.44600370363494 0.1948067163721705 -17.45223396575996 0.3130953221069958 -16.57304843904786 0.1674341708287272 17.47705044806883 0.3053220131582382 17.47082063427238 0.1870332541952688 16.59786600858757 0.1596606731941048 -16.70405113014801 -2.448568659391437 -17.57530955068302 -2.346780597106894 -16.70235926504646 -2.374251231000029 17.5992031813698 -2.336390013497714 16.72794694877144 -2.43817719827735 16.72625352080001 -2.363860410569207 -17.37580324632672 0.6068323270448055 -16.49823457562174 0.5349616993424446 -16.49675925541783 0.4606435041695667 16.52377211140471 0.5245348956779676 17.40133819795266 0.5964049026787099 16.52229490464012 0.4502173423448165 -6.014329621213945 -2.090569549442515 -6.201531625714024 -2.026555794576184 -6.002348538441281 -2.01684081192003 -6.164158314101604 0.03621855138512806 -6.363341453216346 0.02650422652073411 -6.176189022008093 0.1099401823557091</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"1827\" source=\"#ID234\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID230\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID228\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID229\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"1272\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 7 4 8 5 9 5 10 4 11 3 12 6 13 7 14 8 15 8 16 7 17 6 10 9 11 10 9 11 8 11 6 10 7 9 1 12 18 13 2 14 3 14 19 13 4 12 20 15 1 16 0 17 5 17 4 16 21 15 8 5 7 4 22 18 23 18 10 4 9 5 10 9 9 11 23 19 22 19 8 11 7 9 6 3 24 20 7 4 10 4 25 20 11 3 10 9 25 21 11 10 6 10 24 21 7 9 26 22 12 23 14 24 15 24 17 23 27 22 14 25 13 26 28 27 29 27 16 26 15 25 30 28 31 29 32 30 33 30 34 29 35 28 2 31 18 32 36 33 37 33 19 32 3 31 38 34 32 35 39 36 40 36 33 35 41 34 20 37 0 38 42 39 43 39 5 38 21 37 22 18 7 4 44 40 45 40 10 4 23 18 10 9 23 19 45 41 44 41 22 19 7 9 12 42 26 43 46 44 47 44 27 43 17 42 24 20 48 45 7 4 10 4 49 45 25 20 49 46 25 21 10 9 7 9 24 21 48 46 13 47 50 48 28 49 29 49 51 48 16 47 52 50 53 51 54 52 55 52 56 51 57 50 58 53 59 54 52 55 57 55 60 54 61 53 30 56 62 57 31 58 34 58 63 57 35 56 38 59 30 60 32 61 33 61 35 60 41 59 36 62 18 63 64 64 65 64 19 63 37 62 38 65 39 66 66 67 67 67 40 66 41 65 68 68 20 69 42 70 43 70 21 69 69 68 44 40 7 4 70 71 71 71 10 4 45 40 10 9 45 41 71 72 70 72 44 41 7 9 68 73 42 74 72 75 73 75 43 74 69 73 46 76 74 77 75 78 76 78 77 77 47 76 26 79 74 80 46 81 47 81 77 80 27 79 48 45 78 82 7 4 10 4 79 82 49 45 79 83 49 46 10 9 7 9 48 46 78 83 80 84 36 85 64 86 65 86 37 85 81 84 82 87 50 88 83 89 84 89 51 88 85 87 28 90 50 91 82 92 85 92 51 91 29 90 54 93 53 94 86 95 87 95 56 94 55 93 52 96 59 97 53 98 56 98 60 97 57 96 88 99 59 100 58 101 61 101 60 100 89 99 62 102 90 103 91 104 92 104 93 103 63 102 62 105 64 106 31 107 34 107 65 106 63 105 94 108 95 109 90 110 93 110 96 109 97 108 66 111 98 112 99 113 100 113 101 112 67 111 66 114 39 115 68 116 69 116 40 115 67 114 7 4 102 117 70 71 71 71 103 117 10 4 103 118 10 9 71 72 70 72 7 9 102 118 104 119 72 120 105 121 106 121 73 120 107 119 75 122 108 123 109 124 110 124 111 123 76 122 104 125 68 126 72 127 73 127 69 126 107 125 74 128 108 129 75 130 76 130 111 129 77 128 54 131 86 132 74 133 77 133 87 132 55 131 78 82 112 134 7 4 10 4 113 134 79 82 113 135 79 83 10 9 7 9 78 83 112 135 80 136 114 137 115 138 116 138 117 137 81 136 118 139 83 140 119 141 120 141 84 140 121 139 80 142 64 143 114 144 117 144 65 143 81 142 82 145 83 146 118 147 121 147 84 146 85 145 82 148 88 149 58 150 61 150 89 149 85 148 86 151 122 152 123 153 124 153 125 152 87 151 126 154 127 155 128 156 129 156 130 155 131 154 132 157 127 158 88 159 89 159 130 158 133 157 62 160 91 161 134 162 135 162 92 161 63 160 90 103 95 163 91 104 92 104 96 163 93 103 62 164 136 165 64 166 65 166 137 165 63 164 138 167 95 109 94 108 97 108 96 109 139 167 140 168 141 169 66 170 67 170 142 169 143 168 144 171 66 172 68 173 69 173 67 172 145 171 7 4 146 174 102 117 103 117 147 174 10 4 147 175 10 9 103 118 102 118 7 9 146 175 148 176 105 177 149 178 150 178 106 177 151 176 109 179 152 180 153 181 154 181 155 180 110 179 148 182 104 183 105 184 106 184 107 183 151 182 108 185 152 186 109 187 110 187 155 186 111 185 144 188 68 189 104 190 107 190 69 189 145 188 74 191 156 192 108 193 111 193 157 192 77 191 86 194 156 195 74 196 77 196 157 195 87 194 112 134 158 197 7 4 10 4 159 197 113 134 159 198 113 135 10 9 7 9 112 135 158 198 115 199 160 200 161 201 162 201 163 200 116 199 164 202 119 203 165 204 166 204 120 203 167 202 115 205 114 206 160 207 163 207 117 206 116 205 118 208 119 209 164 210 167 210 120 209 121 208 136 211 114 212 64 213 65 213 117 212 137 211 118 214 168 215 82 216 85 216 169 215 121 214 168 217 88 218 82 219 85 219 89 218 169 217 170 220 86 221 171 222 172 222 87 221 173 220 174 223 126 154 128 156 129 156 131 154 175 223 128 224 127 158 132 157 133 157 130 158 129 224 132 225 88 226 176 227 177 227 89 226 133 225 134 228 91 229 178 230 179 230 92 229 135 228 136 231 62 160 134 162 135 162 63 160 137 231 180 232 91 233 95 234 96 234 92 233 181 232 182 235 95 236 183 237 184 237 96 236 185 235 186 238 183 239 140 240 143 240 184 239 187 238 140 241 66 242 144 243 145 243 67 242 143 241 7 4 188 244 146 174 147 174 189 244 10 4 189 245 10 9 147 175 146 175 7 9 188 245 190 246 149 247 191 248 192 248 150 247 193 246 153 249 194 250 195 251 196 251 197 250 154 249 190 252 148 253 149 254 150 254 151 253 193 252 152 255 194 256 153 257 154 257 197 256 155 255 198 258 104 259 148 260 151 260 107 259 199 258 108 261 200 262 152 263 155 263 201 262 111 261 198 264 144 265 104 266 107 266 145 265 199 264 156 267 200 268 108 269 111 269 201 268 157 267 86 270 170 271 156 272 157 272 173 271 87 270 158 197 202 273 7 4 10 4 203 273 159 197 203 274 159 198 10 9 7 9 158 198 202 274 161 275 204 276 205 277 206 277 207 276 162 275 208 278 165 279 209 280 210 280 166 279 211 278 161 281 160 282 204 283 207 283 163 282 162 281 164 284 165 285 208 286 211 286 166 285 167 284 212 287 160 288 114 289 117 289 163 288 213 287 164 290 214 291 118 292 121 292 215 291 167 290 136 293 212 294 114 295 117 295 213 294 137 293 214 296 168 297 118 298 121 298 169 297 215 296 176 227 88 226 168 299 169 299 89 226 177 227 216 300 217 301 170 302 173 302 218 301 219 300 128 303 220 304 216 305 219 305 221 304 129 303 132 306 222 307 128 308 129 308 223 307 133 306 132 309 176 310 224 311 225 311 177 310 133 309 226 312 134 313 178 314 179 314 135 313 227 312 178 315 91 316 180 317 181 317 92 316 179 315 136 318 134 319 228 320 229 320 135 319 137 318 180 321 95 322 182 323 185 323 96 322 181 321 186 324 182 325 183 326 184 326 185 325 187 324 230 327 186 328 140 329 143 329 187 328 231 327 232 330 140 331 144 332 145 332 143 331 233 330 234 333 235 334 236 335 237 335 238 334 239 333 240 336 241 337 242 338 243 338 244 337 245 336 246 339 191 340 247 341 248 341 192 340 249 339 195 342 250 343 251 344 252 344 253 343 196 342 246 345 190 346 191 347 192 347 193 346 249 345 194 348 250 349 195 350 196 350 253 349 197 348 254 351 148 352 190 353 193 353 151 352 255 351 152 354 256 355 194 356 197 356 257 355 155 354 198 357 148 358 254 359 255 359 151 358 199 357 152 360 200 361 256 362 257 362 201 361 155 360 232 363 144 364 198 365 199 365 145 364 233 363 156 366 258 367 200 368 201 368 259 367 157 366 156 369 170 370 258 371 259 371 173 370 157 369 202 273 260 372 7 4 10 4 261 372 203 273 261 373 203 274 10 9 7 9 202 274 260 373 205 374 262 375 263 376 264 376 265 375 206 374 266 377 209 378 267 379 268 379 210 378 269 377 205 380 204 381 262 382 265 382 207 381 206 380 208 383 209 384 266 385 269 385 210 384 211 383 160 386 270 387 204 388 207 388 271 387 163 386 272 389 164 390 208 391 211 391 167 390 273 389 212 392 270 393 160 394 163 394 271 393 213 392 272 395 214 396 164 397 167 397 215 396 273 395 212 398 136 399 228 400 229 400 137 399 213 398 274 401 168 402 214 403 215 403 169 402 275 401 176 404 168 405 274 406 275 406 169 405 177 404 217 407 276 408 170 409 173 409 277 408 218 407 216 410 220 411 217 412 218 412 221 411 219 410 128 413 222 414 220 415 221 415 223 414 129 413 132 416 224 417 222 418 223 418 225 417 133 416 176 419 278 420 224 421 225 421 279 420 177 419 226 422 178 423 280 424 281 424 179 423 227 422 228 425 134 426 226 427 227 427 135 426 229 425 178 428 180 429 282 430 283 430 181 429 179 428 180 431 284 432 285 433 286 433 287 432 181 431 288 434 289 435 284 436 287 436 290 435 291 434 230 437 292 438 288 439 291 439 293 438 231 437 230 440 140 441 232 442 233 442 143 441 231 440 294 443 246 444 247 445 248 445 249 444 295 443 296 446 297 447 298 448 299 448 300 447 301 446 302 449 303 450 304 451 305 451 306 450 307 449 250 452 308 453 251 454 252 454 309 453 253 452 310 455 190 456 246 457 249 457 193 456 311 455 194 458 312 459 250 460 253 460 313 459 197 458 254 461 190 462 310 463 311 463 193 462 255 461 194 464 256 465 312 466 313 466 257 465 197 464 314 467 198 468 254 469 255 469 199 468 315 467 200 470 316 471 256 472 257 472 317 471 201 470 314 473 232 363 198 365 199 365 233 363 315 473 200 368 258 367 316 474 317 474 259 367 201 368 170 475 276 476 258 477 259 477 277 476 173 475 298 478 318 479 296 480 301 480 319 479 299 478 320 481 303 482 302 483 307 483 306 482 321 481 263 484 322 485 323 486 324 486 325 485 264 484 326 487 267 488 327 489 328 489 268 488 329 487 263 490 262 491 322 492 325 492 265 491 264 490 266 493 267 494 326 495 329 495 268 494 269 493 204 496 330 497 331 498 332 498 333 497 207 496 334 499 208 500 335 501 336 501 211 500 337 499 270 502 330 503 204 504 207 504 333 503 271 502 334 505 272 506 208 507 211 507 273 506 337 505 270 508 212 509 338 510 339 510 213 509 271 508 340 511 214 512 272 513 273 513 215 512 341 511 212 514 228 515 338 516 339 516 229 515 213 514 274 517 214 512 340 518 341 518 215 512 275 517 176 519 274 520 278 521 279 521 275 520 177 519 276 522 342 523 343 524 344 524 345 523 277 522 342 525 346 526 347 527 348 527 349 526 345 525 350 528 346 529 222 530 223 530 349 529 351 528 222 531 224 532 352 533 353 533 225 532 223 531 224 534 278 535 354 536 355 536 279 535 225 534 226 537 280 538 356 539 357 539 281 538 227 537 178 540 282 541 280 542 281 542 283 541 179 540 228 543 226 544 358 545 359 545 227 544 229 543 180 546 285 547 282 548 283 548 286 547 181 546 284 549 289 550 285 551 286 551 290 550 287 549 292 552 289 553 288 554 291 554 290 553 293 552 360 555 292 556 230 557 231 557 293 556 361 555 362 558 230 559 232 560 233 560 231 559 363 558 246 561 364 562 365 563 366 563 367 562 249 561 364 564 368 565 369 566 370 566 371 565 367 564 372 567 373 568 374 569 375 569 376 568 377 567 373 570 250 571 378 572 379 572 253 571 376 570 310 573 246 574 365 575 366 575 249 574 311 573 250 576 312 577 378 578 379 578 313 577 253 576 380 579 254 580 310 581 311 581 255 580 381 579 256 582 382 583 312 584 313 584 383 583 257 582 380 585 314 586 254 587 255 587 315 586 381 585 256 588 316 589 382 590 383 590 317 589 257 588 362 591 232 592 314 593 315 593 233 592 363 591 258 594 384 595 316 596 317 596 385 595 259 594 276 597 384 598 258 599 259 599 385 598 277 597 322 600 386 601 323 602 324 602 387 601 325 600 326 603 327 604 388 605 389 605 328 604 329 603 331 606 390 607 391 608 392 608 393 607 332 606 394 609 335 610 395 611 396 611 336 610 397 609 330 612 390 613 331 614 332 614 393 613 333 612 394 615 334 616 335 617 336 617 337 616 397 615 330 618 270 619 398 620 399 620 271 619 333 618 400 621 272 622 334 623 337 623 273 622 401 621 270 619 338 624 398 620 399 620 339 624 271 619 340 625 272 622 400 621 401 621 273 622 341 625 338 626 228 627 358 628 359 628 229 627 339 626 274 629 340 630 402 631 403 631 341 630 275 629 278 632 274 633 402 634 403 634 275 633 279 632 276 635 343 636 404 637 405 637 344 636 277 635 342 638 347 639 343 640 344 640 348 639 345 638 347 641 346 642 350 643 351 643 349 642 348 641 350 644 222 645 352 646 353 646 223 645 351 644 352 647 224 648 354 649 355 649 225 648 353 647 354 650 278 651 406 652 407 652 279 651 355 650 280 653 408 654 356 655 357 655 409 654 281 653 358 656 226 657 356 658 357 658 227 657 359 656 410 659 280 660 282 661 283 661 281 660 411 659 412 662 282 663 285 664 286 664 283 663 413 662 289 665 414 666 285 667 286 667 415 666 290 665 292 668 416 669 289 670 290 670 417 669 293 668 360 671 418 672 292 673 293 673 419 672 361 671 360 674 230 675 362 676 363 676 231 675 361 674 364 677 369 678 365 679 366 679 370 678 367 677 368 680 420 681 369 682 370 682 421 681 371 680 422 683 372 684 374 685 375 685 377 684 423 683 374 686 373 687 378 688 379 688 376 687 375 686 424 689 310 690 365 691 366 691 311 690 425 689 312 692 426 693 378 694 379 694 427 693 313 692 424 695 380 696 310 697 311 697 381 696 425 695 312 698 382 699 426 700 427 700 383 699 313 698 428 701 314 702 380 703 381 703 315 702 429 701 316 704 430 705 382 706 383 706 431 705 317 704 362 707 314 708 428 709 429 709 315 708 363 707 316 710 384 711 430 712 431 712 385 711 317 710 276 713 404 714 384 715 385 715 405 714 277 713 391 716 420 717 368 718 371 718 421 717 392 716 422 719 395 720 372 721 377 721 396 720 423 719 391 722 390 723 420 724 421 724 393 723 392 722 394 725 395 726 422 727 423 727 396 726 397 725 432 728 330 729 433 730 434 730 333 729 435 728 436 731 334 732 437 733 438 733 337 732 439 731 330 734 398 735 433 736 434 736 399 735 333 734 400 737 334 738 436 739 439 739 337 738 401 737 398 740 338 741 440 742 441 742 339 741 399 740 340 743 400 744 442 745 443 745 401 744 341 743 338 746 358 747 440 748 441 748 359 747 339 746 402 749 340 750 442 751 443 751 341 750 403 749 278 752 402 753 406 754 407 754 403 753 279 752 404 755 343 756 444 757 445 757 344 756 405 755 343 758 347 759 446 760 447 760 348 759 344 758 347 761 350 762 448 763 449 763 351 762 348 761 352 764 450 765 350 766 351 766 451 765 353 764 354 767 452 768 352 769 353 769 453 768 355 767 454 770 354 771 406 772 407 772 355 771 455 770 408 773 456 774 356 775 357 775 457 774 409 773 410 776 408 777 280 778 281 778 409 777 411 776 358 779 356 780 458 781 459 781 357 780 359 779 412 782 410 783 282 784 283 784 411 783 413 782 414 785 412 786 285 787 286 787 413 786 415 785 416 788 414 789 289 790 290 790 415 789 417 788 418 791 416 792 292 793 293 793 417 792 419 791 460 794 418 795 360 796 361 796 419 795 461 794 360 797 362 798 462 799 463 799 363 798 361 797 464 800 365 801 465 802 466 802 366 801 467 800 468 803 469 804 465 805 466 805 470 804 471 803 472 806 473 807 474 808 475 808 476 807 477 806 378 809 478 810 473 811 476 811 479 810 379 809 464 812 424 689 365 691 366 691 425 689 467 812 378 694 426 693 478 813 479 813 427 693 379 694 480 814 380 815 424 816 425 816 381 815 481 814 382 817 482 818 426 819 427 819 483 818 383 817 480 820 428 821 380 822 381 822 429 821 481 820 430 823 482 824 382 825 383 825 483 824 431 823 462 826 362 827 428 828 429 828 363 827 463 826 384 829 484 830 430 831 431 831 485 830 385 829 384 832 404 833 484 834 485 834 405 833 385 832 432 835 486 836 468 837 471 837 487 836 435 835 437 838 472 839 488 840 489 840 477 839 438 838 433 841 486 842 432 843 435 843 487 842 434 841 436 844 437 845 488 846 489 846 438 845 439 844 490 847 398 848 491 849 492 849 399 848 493 847 400 850 494 851 495 852 496 852 497 851 401 850 398 853 440 854 491 855 492 855 441 854 399 853 442 856 400 857 495 858 496 858 401 857 443 856 440 859 358 860 458 861 459 861 359 860 441 859 402 862 442 863 498 864 499 864 443 863 403 862 406 865 402 866 498 867 499 867 403 866 407 865 404 868 444 869 500 870 501 870 445 869 405 868 343 871 446 872 444 873 445 873 447 872 344 871 448 874 446 875 347 876 348 876 447 875 449 874 450 877 448 878 350 879 351 879 449 878 451 877 452 880 450 881 352 882 353 882 451 881 453 880 454 883 452 884 354 885 355 885 453 884 455 883 502 886 454 887 406 888 407 888 455 887 503 886 456 889 408 890 504 891 505 891 409 890 457 889 356 892 456 893 458 894 459 894 457 893 357 892 408 895 410 896 506 897 507 897 411 896 409 895 410 898 412 899 508 900 509 900 413 899 411 898 414 901 510 902 412 903 413 903 511 902 415 901 416 904 512 905 414 906 415 906 513 905 417 904 418 907 514 908 416 909 417 909 515 908 419 907 460 910 516 911 418 912 419 912 517 911 461 910 462 913 460 914 360 915 361 915 461 914 463 913 469 916 464 800 465 802 466 802 467 800 470 916 486 917 469 918 468 919 471 919 470 918 487 917 488 920 472 921 474 922 475 922 477 921 489 920 473 811 478 810 474 923 475 923 479 810 476 811 518 924 424 925 464 926 467 926 425 925 519 924 426 927 520 928 478 929 479 929 521 928 427 927 518 930 480 931 424 932 425 932 481 931 519 930 482 933 520 934 426 935 427 935 521 934 483 933 522 936 428 937 480 938 481 938 429 937 523 936 430 939 524 940 482 941 483 941 525 940 431 939 462 942 428 943 522 944 523 944 429 943 463 942 430 945 484 946 524 947 525 947 485 946 431 945 484 948 404 949 500 950 501 950 405 949 485 948 526 951 490 952 527 953 528 953 493 952 529 951 494 954 530 955 531 956 532 956 533 955 497 954 490 957 491 958 527 959 528 959 492 958 493 957 495 960 494 961 531 962 532 962 497 961 496 960 534 963 440 964 535 965 536 965 441 964 537 963 442 966 538 967 539 968 540 968 541 967 443 966 440 969 458 970 535 971 536 971 459 970 441 969 498 972 442 973 539 974 540 974 443 973 499 972 502 975 406 976 498 977 499 977 407 976 503 975 500 978 444 979 542 980 543 980 445 979 501 978 444 981 446 982 544 983 545 983 447 982 445 981 546 984 446 985 448 986 449 986 447 985 547 984 548 987 448 988 450 989 451 989 449 988 549 987 450 990 452 991 550 992 551 992 453 991 451 990 452 993 454 994 552 995 553 995 455 994 453 993 454 996 502 997 554 998 555 998 503 997 455 996 456 999 504 1000 556 1001 557 1001 505 1000 457 999 408 1002 506 1003 504 1004 505 1004 507 1003 409 1002 456 1005 558 1006 458 1007 459 1007 559 1006 457 1005 410 1008 508 1009 506 1010 507 1010 509 1009 411 1008 412 1011 510 1012 508 1013 509 1013 511 1012 413 1011 414 1014 512 1015 510 1016 511 1016 513 1015 415 1014 416 1017 514 1018 512 1019 513 1019 515 1018 417 1017 516 1020 514 1021 418 1022 419 1022 515 1021 517 1020 560 1023 516 1024 460 1025 461 1025 517 1024 561 1023 562 1026 460 1027 462 1028 463 1028 461 1027 563 1026 469 1029 564 1030 464 1031 467 1031 565 1030 470 1029 526 1032 566 1033 469 1034 470 1034 567 1033 529 1032 568 1035 530 1036 474 1037 475 1037 533 1036 569 1035 570 1038 474 1039 478 1040 479 1040 475 1039 571 1038 464 1041 564 1042 518 1043 519 1043 565 1042 467 1041 570 1044 478 1045 520 1046 521 1046 479 1045 571 1044 572 1047 480 1048 518 1049 519 1049 481 1048 573 1047 482 1050 574 1051 520 1052 521 1052 575 1051 483 1050 522 1053 480 1054 572 1055 573 1055 481 1054 523 1053 482 1056 524 1057 574 1058 575 1058 525 1057 483 1056 562 1059 462 1060 522 1061 523 1061 463 1060 563 1059 484 1062 576 1063 524 1064 525 1064 577 1063 485 1062 500 1065 576 1066 484 1067 485 1067 577 1066 501 1065 526 1068 527 1069 566 1070 567 1070 528 1069 529 1068 531 1071 530 1072 568 1073 569 1073 533 1072 532 1071 534 1074 578 1075 579 1076 580 1076 581 1075 537 1074 538 1077 582 1078 583 1079 584 1079 585 1078 541 1077 535 1080 578 1081 534 1082 537 1082 581 1081 536 1080 539 1083 538 1084 583 1085 584 1085 541 1084 540 1083 558 1086 535 1087 458 1088 459 1088 536 1087 559 1086 498 1089 539 1090 586 1091 587 1091 540 1090 499 1089 586 1092 502 1093 498 1094 499 1094 503 1093 587 1092 500 1095 542 1096 588 1097 589 1097 543 1096 501 1095 444 1098 544 1099 542 1100 543 1100 545 1099 445 1098 544 1101 446 1102 546 1103 547 1103 447 1102 545 1101 546 1104 448 1105 548 1106 549 1106 449 1105 547 1104 548 1107 450 1108 550 1109 551 1109 451 1108 549 1107 550 1110 452 1111 552 1112 553 1112 453 1111 551 1110 552 1113 454 1114 554 1115 555 1115 455 1114 553 1113 554 1116 502 1117 590 1118 591 1118 503 1117 555 1116 556 1119 504 1120 592 1121 593 1121 505 1120 557 1119 558 1122 456 1123 556 1124 557 1124 457 1123 559 1122 504 1125 506 1126 594 1127 595 1127 507 1126 505 1125 506 1128 508 1129 596 1130 597 1130 509 1129 507 1128 508 1131 510 1132 598 1133 599 1133 511 1132 509 1131 510 1134 512 1135 600 1136 601 1136 513 1135 511 1134 512 1137 514 1138 602 1139 603 1139 515 1138 513 1137 516 1140 604 1141 514 1142 515 1142 605 1141 517 1140 560 1143 606 1144 516 1145 517 1145 607 1144 561 1143 560 1146 460 1147 562 1148 563 1148 461 1147 561 1146 469 1149 566 1150 564 1151 565 1151 567 1150 470 1149 568 1152 474 1153 570 1154 571 1154 475 1153 569 1152 608 1155 518 1156 564 1157 565 1157 519 1156 609 1155 520 1158 610 1159 570 1160 571 1160 611 1159 521 1158 572 1161 518 1162 608 1163 609 1163 519 1162 573 1161 520 1164 574 1165 610 1166 611 1166 575 1165 521 1164 612 1167 522 1168 572 1169 573 1169 523 1168 613 1167 524 1170 614 1171 574 1172 575 1172 615 1171 525 1170 612 1173 562 1174 522 1175 523 1175 563 1174 613 1173 576 1176 614 1177 524 1178 525 1178 615 1177 577 1176 500 1179 588 1180 576 1181 577 1181 589 1180 501 1179 579 1182 616 1183 617 1184 618 1184 619 1183 580 1182 582 1185 620 1186 621 1187 622 1187 623 1186 585 1185 578 1188 616 1189 579 1190 580 1190 619 1189 581 1188 583 1191 582 1192 621 1193 622 1193 585 1192 584 1191 624 1194 578 1195 535 1196 536 1196 581 1195 625 1194 539 1197 583 1198 626 1199 627 1199 584 1198 540 1197 558 1200 624 1201 535 1202 536 1202 625 1201 559 1200 586 1203 539 1204 626 1205 627 1205 540 1204 587 1203 502 1206 586 1207 590 1208 591 1208 587 1207 503 1206 588 1209 542 1210 628 1211 629 1211 543 1210 589 1209 542 1212 544 1213 630 1214 631 1214 545 1213 543 1212 632 1215 544 1216 546 1217 547 1217 545 1216 633 1215 634 1218 546 1219 548 1220 549 1220 547 1219 635 1218 636 1221 548 1222 550 1223 551 1223 549 1222 637 1221 638 1224 550 1225 552 1226 553 1226 551 1225 639 1224 640 1227 552 1228 554 1229 555 1229 553 1228 641 1227 642 1230 554 1231 590 1232 591 1232 555 1231 643 1230 592 1233 644 1234 556 1235 557 1235 645 1234 593 1233 504 1236 594 1237 592 1238 593 1238 595 1237 505 1236 556 1239 646 1240 558 1241 559 1241 647 1240 557 1239 506 1242 596 1243 594 1244 595 1244 597 1243 507 1242 508 1245 598 1246 596 1247 597 1247 599 1246 509 1245 510 1248 600 1249 598 1250 599 1250 601 1249 511 1248 512 1251 602 1252 600 1253 601 1253 603 1252 513 1251 514 1254 604 1255 602 1256 603 1256 605 1255 515 1254 606 1257 604 1258 516 1259 517 1259 605 1258 607 1257 648 1260 606 1261 560 1262 561 1262 607 1261 649 1260 650 1263 560 1264 562 1265 563 1265 561 1264 651 1263 652 1266 564 1267 617 1268 618 1268 565 1267 653 1266 570 1269 654 1270 620 1271 623 1271 655 1270 571 1269 608 1272 564 1273 652 1274 653 1274 565 1273 609 1272 570 1275 610 1276 654 1277 655 1277 611 1276 571 1275 608 1278 656 1279 572 1280 573 1280 657 1279 609 1278 658 1281 610 1282 574 1283 575 1283 611 1282 659 1281 656 1284 612 1285 572 1286 573 1286 613 1285 657 1284 614 1287 658 1288 574 1289 575 1289 659 1288 615 1287 650 1290 562 1291 612 1292 613 1292 563 1291 651 1290 576 1293 660 1294 614 1295 615 1295 661 1294 577 1293 588 1296 660 1297 576 1298 577 1298 661 1297 589 1296 652 1299 617 1300 616 1301 619 1301 618 1300 653 1299 620 1302 654 1303 621 1304 622 1304 655 1303 623 1302 662 1305 616 1306 578 1307 581 1307 619 1306 663 1305 583 1308 621 1309 664 1310 665 1310 622 1309 584 1308 624 1311 662 1312 578 1313 581 1313 663 1312 625 1311 626 1314 583 1315 664 1316 665 1316 584 1315 627 1314 646 1317 624 1318 558 1319 559 1319 625 1318 647 1317 586 1320 626 1321 666 1322 667 1322 627 1321 587 1320 590 1323 586 1324 666 1325 667 1325 587 1324 591 1323 668 1326 588 1327 628 1328 629 1328 589 1327 669 1326 628 1329 542 1330 630 1331 631 1331 543 1330 629 1329 630 1332 544 1333 632 1334 633 1334 545 1333 631 1332 632 1335 546 1336 634 1337 635 1337 547 1336 633 1335 634 1338 548 1339 636 1340 637 1340 549 1339 635 1338 636 1341 550 1342 638 1343 639 1343 551 1342 637 1341 638 1344 552 1345 640 1346 641 1346 553 1345 639 1344 640 1347 554 1348 642 1349 643 1349 555 1348 641 1347 590 1350 670 1351 642 1352 643 1352 671 1351 591 1350 592 1353 672 1354 644 1355 645 1355 673 1354 593 1353 644 1356 646 1357 556 1358 557 1358 647 1357 645 1356 592 1359 594 1360 674 1361 675 1361 595 1360 593 1359 594 1362 596 1363 676 1364 677 1364 597 1363 595 1362 596 1365 598 1366 678 1367 679 1367 599 1366 597 1365 598 1368 600 1369 680 1370 681 1370 601 1369 599 1368 600 1371 602 1372 682 1373 683 1373 603 1372 601 1371 602 1374 604 1375 684 1376 685 1376 605 1375 603 1374 686 1377 604 1378 606 1379 607 1379 605 1378 687 1377 688 1380 606 1381 648 1382 649 1382 607 1381 689 1380 648 1383 560 1384 650 1385 651 1385 561 1384 649 1383 652 1386 690 1387 608 1388 609 1388 691 1387 653 1386 692 1389 654 1390 610 1391 611 1391 655 1390 693 1389 690 1392 656 1393 608 1394 609 1394 657 1393 691 1392 658 1395 692 1396 610 1397 611 1397 693 1396 659 1395 694 1398 612 1399 656 1400 657 1400 613 1399 695 1398 614 1401 696 1402 658 1403 659 1403 697 1402 615 1401 694 1404 650 1405 612 1406 613 1406 651 1405 695 1404 660 1407 696 1408 614 1409 615 1409 697 1408 661 1407 588 1410 668 1411 660 1412 661 1412 669 1411 589 1410 698 1413 652 1414 616 1415 619 1415 653 1414 699 1413 621 1416 654 1417 700 1418 701 1418 655 1417 622 1416 662 1419 698 1420 616 1421 619 1421 699 1420 663 1419 700 1422 664 1423 621 1424 622 1424 665 1423 701 1422 702 1425 662 1426 624 1427 625 1427 663 1426 703 1425 626 1428 664 1429 704 1430 705 1430 665 1429 627 1428 646 1431 702 1432 624 1433 625 1433 703 1432 647 1431 666 1434 626 1435 704 1436 705 1436 627 1435 667 1434 590 1437 666 1438 670 1439 671 1439 667 1438 591 1437 668 1440 628 1441 706 1442 707 1442 629 1441 669 1440 628 1443 630 1444 708 1445 709 1445 631 1444 629 1443 630 1446 632 1447 710 1448 711 1448 633 1447 631 1446 632 1449 634 1450 712 1451 713 1451 635 1450 633 1449 634 1452 636 1453 714 1454 715 1454 637 1453 635 1452 636 1455 638 1456 716 1457 717 1457 639 1456 637 1455 638 1458 640 1459 718 1460 719 1460 641 1459 639 1458 640 1461 642 1462 720 1463 721 1463 643 1462 641 1461 642 1464 670 1465 722 1466 723 1466 671 1465 643 1464 672 1467 724 1468 644 1469 645 1469 725 1468 673 1467 674 1470 672 1471 592 1472 593 1472 673 1471 675 1470 644 1473 726 1474 646 1475 647 1475 727 1474 645 1473 676 1476 674 1477 594 1478 595 1478 675 1477 677 1476 596 1479 678 1480 676 1481 677 1481 679 1480 597 1479 598 1482 680 1483 678 1484 679 1484 681 1483 599 1482 680 1485 600 1486 682 1487 683 1487 601 1486 681 1485 682 1488 602 1489 684 1490 685 1490 603 1489 683 1488 686 1491 684 1492 604 1493 605 1493 685 1492 687 1491 688 1494 686 1495 606 1496 607 1496 687 1495 689 1494 728 1497 688 1498 648 1499 649 1499 689 1498 729 1497 730 1500 648 1501 650 1502 651 1502 649 1501 731 1500 698 1503 690 1504 652 1505 653 1505 691 1504 699 1503 692 1506 700 1507 654 1508 655 1508 701 1507 693 1506 732 1509 656 1510 690 1511 691 1511 657 1510 733 1509 658 1512 734 1513 692 1514 693 1514 735 1513 659 1512 694 1515 656 1516 732 1517 733 1517 657 1516 695 1515 658 1518 696 1519 734 1520 735 1520 697 1519 659 1518 730 1521 650 1522 694 1523 695 1523 651 1522 731 1521 660 1524 736 1525 696 1526 697 1526 737 1525 661 1524 660 1527 668 1528 736 1529 737 1529 669 1528 661 1527 738 1530 698 1531 662 1532 663 1532 699 1531 739 1530 700 1533 740 1534 664 1535 665 1535 741 1534 701 1533 738 1536 662 1537 702 1538 703 1538 663 1537 739 1536 664 1539 740 1540 704 1541 705 1541 741 1540 665 1539 726 1542 702 1543 646 1544 647 1544 703 1543 727 1542 666 1545 704 1546 742 1547 743 1547 705 1546 667 1545 666 1548 742 1549 670 1550 671 1550 743 1549 667 1548 744 1551 668 1552 706 1553 707 1553 669 1552 745 1551 706 1554 628 1555 708 1556 709 1556 629 1555 707 1554 708 1557 630 1558 710 1559 711 1559 631 1558 709 1557 632 1560 712 1561 710 1562 711 1562 713 1561 633 1560 634 1563 714 1564 712 1565 713 1565 715 1564 635 1563 714 1566 636 1567 716 1568 717 1568 637 1567 715 1566 716 1569 638 1570 718 1571 719 1571 639 1570 717 1569 640 1572 720 1573 718 1574 719 1574 721 1573 641 1572 642 1575 722 1576 720 1577 721 1577 723 1576 643 1575 670 1578 746 1579 722 1580 723 1580 747 1579 671 1578 748 1581 724 1582 672 1583 673 1583 725 1582 749 1581 644 1584 724 1585 726 1586 727 1586 725 1585 645 1584 674 1587 748 1588 672 1589 673 1589 749 1588 675 1587 676 1590 748 1591 674 1592 675 1592 749 1591 677 1590 676 1593 678 1594 748 1595 749 1595 679 1594 677 1593 678 1596 680 1597 748 1598 749 1598 681 1597 679 1596 680 1599 682 1600 748 1601 749 1601 683 1600 681 1599 682 1602 684 1603 748 1604 749 1604 685 1603 683 1602 684 1605 686 1606 748 1607 749 1607 687 1606 685 1605 686 1608 688 1609 748 1610 749 1610 689 1609 687 1608 688 1611 750 1612 748 1613 749 1613 751 1612 689 1611 648 1614 730 1615 728 1616 729 1616 731 1615 649 1614 752 1617 690 1618 698 1619 699 1619 691 1618 753 1617 692 1620 754 1621 700 1622 701 1622 755 1621 693 1620 732 1623 690 1624 752 1625 753 1625 691 1624 733 1623 692 1626 734 1627 754 1628 755 1628 735 1627 693 1626 756 1629 694 1630 732 1631 733 1631 695 1630 757 1629 696 1632 758 1633 734 1634 735 1634 759 1633 697 1632 756 1635 730 1636 694 1637 695 1637 731 1636 757 1635 696 1638 736 1639 758 1640 759 1640 737 1639 697 1638 736 1641 668 1642 744 1643 745 1643 669 1642 737 1641 752 1644 698 1645 738 1646 739 1646 699 1645 753 1644 700 1647 754 1648 740 1649 741 1649 755 1648 701 1647 760 1650 738 1651 702 1652 703 1652 739 1651 761 1650 740 1653 762 1654 704 1655 705 1655 763 1654 741 1653 726 1656 760 1657 702 1658 703 1658 761 1657 727 1656 704 1659 762 1660 742 1661 743 1661 763 1660 705 1659 670 1662 742 1663 746 1664 747 1664 743 1663 671 1662 764 1665 706 1666 765 1667 766 1667 707 1666 767 1665 706 1668 708 1669 765 1670 766 1670 709 1669 707 1668 708 1671 710 1672 765 1673 766 1673 711 1672 709 1671 710 1674 712 1675 765 1676 766 1676 713 1675 711 1674 712 1677 714 1678 765 1679 766 1679 715 1678 713 1677 714 1680 716 1681 765 1682 766 1682 717 1681 715 1680 716 1683 718 1684 765 1685 766 1685 719 1684 717 1683 765 1686 718 1687 720 1688 721 1688 719 1687 766 1686 765 1689 720 1690 722 1691 723 1691 721 1690 766 1689 746 1692 765 1693 722 1694 723 1694 766 1693 747 1692 748 1695 768 1696 724 1697 725 1697 769 1696 749 1695 724 1698 770 1699 726 1700 727 1700 771 1699 725 1698 750 1701 772 1702 748 1703 749 1703 773 1702 751 1701 774 1704 728 1705 730 1706 731 1706 729 1705 775 1704 776 1707 732 1708 752 1709 753 1709 733 1708 777 1707 734 1710 778 1711 754 1712 755 1712 779 1711 735 1710 776 1713 756 1714 732 1715 733 1715 757 1714 777 1713 734 1716 758 1717 778 1718 779 1718 759 1717 735 1716 730 1719 756 1720 774 1721 775 1721 757 1720 731 1719 758 1722 736 1723 780 1724 781 1724 737 1723 759 1722 780 1725 736 1726 744 1727 745 1727 737 1726 781 1725 782 1728 752 1729 738 1730 739 1730 753 1729 783 1728 754 1731 784 1732 740 1733 741 1733 785 1732 755 1731 760 1734 782 1735 738 1736 739 1736 783 1735 761 1734 740 1737 784 1738 762 1739 763 1739 785 1738 741 1737 760 1740 726 1741 770 1742 771 1742 727 1741 761 1740 742 1743 762 1744 786 1745 787 1745 763 1744 743 1743 742 1746 786 1747 746 1748 747 1748 787 1747 743 1746 788 1749 764 1750 765 1751 766 1751 767 1750 789 1749 790 1752 765 1753 746 1754 747 1754 766 1753 791 1752 748 1755 792 1756 768 1757 769 1757 793 1756 749 1755 772 1758 794 1759 748 1760 749 1760 795 1759 773 1758 782 1761 776 1762 752 1763 753 1763 777 1762 783 1761 754 1764 778 1765 784 1766 785 1766 779 1765 755 1764 756 1767 776 1768 796 1769 797 1769 777 1768 757 1767 778 1770 758 1771 798 1772 799 1772 759 1771 779 1770 774 1773 756 1774 796 1775 797 1775 757 1774 775 1773 758 1776 780 1777 798 1778 799 1778 781 1777 759 1776 782 1779 760 1780 800 1781 801 1781 761 1780 783 1779 762 1782 784 1783 802 1784 803 1784 785 1783 763 1782 760 1785 770 1786 800 1787 801 1787 771 1786 761 1785 786 1788 762 1789 802 1790 803 1790 763 1789 787 1788 804 1791 788 1792 765 1793 766 1793 789 1792 805 1791 806 1794 765 1795 790 1796 791 1796 766 1795 807 1794 748 1797 808 1798 792 1799 793 1799 809 1798 749 1797 748 1800 794 1801 808 1802 809 1802 795 1801 749 1800 776 1803 782 1804 810 1805 811 1805 783 1804 777 1803 784 1806 778 1807 812 1808 813 1808 779 1807 785 1806 796 1809 776 1810 810 1811 811 1811 777 1810 797 1809 778 1812 798 1813 812 1814 813 1814 799 1813 779 1812 782 1815 800 1816 810 1817 811 1817 801 1816 783 1815 802 1818 784 1819 812 1820 813 1820 785 1819 803 1818 804 1821 765 1822 814 1823 815 1823 766 1822 805 1821 814 1824 765 1825 806 1826 807 1826 766 1825 815 1824</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID230\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID231\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID235\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID236\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID240\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">-0.04908180236816406 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.004162006080150604 -0.1397031098604202 -2.050858497619629 -0.07640528678894043 -0.04908180236816406 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.07640528678894043 -0.04908180236816406 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.1648990213871002 -0.1397031098604202 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.004162006080150604 0.04153963923454285 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.1648990213871002 -0.04908180236816406 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.07640528678894043 0.04153963923454285 -2.050858497619629 -0.07640528678894043 -0.1397031098604202 -2.050858497619629 -0.2324993163347244 -0.1397031098604202 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.004162006080150604 0.1321610063314438 -2.050858497619629 -0.004162006080150604 -0.04908180236816406 -2.050858497619629 -0.2324993163347244 -0.04908180236816406 -2.050858497619629 -0.2324993163347244 0.04153963923454285 -2.050858497619629 -0.1648990213871002 0.04153963923454285 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.07640528678894043 0.1321610063314438 -2.050858497619629 -0.07640528678894043 0.04153963923454285 -2.050858497619629 -0.2324993163347244 0.04153963923454285 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.1648990213871002 0.1321610063314438 -2.050858497619629 -0.2324993163347244 0.1321610063314438 -2.050858497619629 -0.2324993163347244</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID240\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID237\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID241\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID241\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID239\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID242\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"32\">-0.4908180236816406 -0.03274111449718475 -1.397031098604202 -0.6010549227396648 -1.397031098604202 -0.03274111449718475 -0.4908180236816406 -0.6010549227396648 -1.397031098604202 -1.297205634911855 0.4153963923454285 -0.03274111449718475 -0.4908180236816406 -1.297205634911855 0.4153963923454285 -0.6010549227396648 -1.397031098604202 -1.828994621833166 1.321610063314438 -0.03274111449718475 -0.4908180236816406 -1.828994621833166 0.4153963923454285 -1.297205634911855 1.321610063314438 -0.6010549227396648 0.4153963923454285 -1.828994621833166 1.321610063314438 -1.297205634911855 1.321610063314438 -1.828994621833166</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"16\" source=\"#ID242\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID238\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID236\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID237\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"36\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 1 0 0 5 0 4 1 7 3 6 3 8 4 1 1 4 1 9 4 7 3 10 5 6 3 0 0 5 0 7 3 11 5 12 6 8 4 6 3 7 3 9 4 13 6 14 7 6 3 10 5 11 5 7 3 15 7 12 6 16 8 8 4 9 4 17 8 13 6 14 7 12 6 6 3 7 3 13 6 15 7 18 9 14 7 10 5 11 5 15 7 19 9 20 10 16 8 12 6 13 6 17 8 21 10 22 11 12 6 14 7 15 7 13 6 23 11 24 12 14 7 18 9 19 9 15 7 25 12 22 11 20 10 12 6 13 6 21 10 23 11 24 12 22 11 14 7 15 7 23 11 25 12 26 13 20 10 22 11 23 11 21 10 27 13 28 14 22 11 24 12 25 12 23 11 29 14 28 14 26 13 22 11 23 11 27 13 29 14 30 15 26 13 28 14 29 14 27 13 31 15</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID238\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID239\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID245\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID246\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID249\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"462\">-0.3924421966075897 1.913545966148377 0.0538654625415802 -0.003499784041196108 1.913545966148377 0.05373930931091309 -0.003499784041196108 1.89157509803772 0.1127162873744965 -0.003499784041196108 1.89157509803772 0.1127162873744965 -0.003499784041196108 1.913545966148377 0.05373930931091309 -0.3924421966075897 1.913545966148377 0.0538654625415802 -0.3849683403968811 1.89157509803772 0.1122315526008606 -0.3849683403968811 1.89157509803772 0.1122315526008606 0.3854426443576813 1.913545966148377 0.0538654625415802 0.3854426443576813 1.913545966148377 0.0538654625415802 -0.4555876851081848 1.913545966148377 0.0538654625415802 -0.4555876851081848 1.913545966148377 0.0538654625415802 -0.3927546739578247 1.832278966903687 0.1609024703502655 -0.3927546739578247 1.832278966903687 0.1609024703502655 0.3779688477516174 1.89157509803772 0.1122315526008606 0.3779688477516174 1.89157509803772 0.1122315526008606 -0.4815247356891632 1.90060830116272 0.1218081116676331 -0.4815247356891632 1.90060830116272 0.1218081116676331 -0.4985863864421845 1.831613898277283 0.1618779003620148 -0.4985863864421845 1.831613898277283 0.1618779003620148 -0.003499784041196108 1.83673882484436 0.1572884917259216 -0.003499784041196108 1.83673882484436 0.1572884917259216 0.3857554793357849 1.832278966903687 0.1609024703502655 0.3857554793357849 1.832278966903687 0.1609024703502655 0.4525613486766815 1.913545966148377 0.05351218581199646 0.4525613486766815 1.913545966148377 0.05351218581199646 -0.4057326018810272 1.748755574226379 0.202934205532074 -0.4057326018810272 1.748755574226379 0.202934205532074 -0.1956372708082199 1.746377825737 0.2039957940578461 -0.1956372708082199 1.746377825737 0.2039957940578461 0.4956434965133667 1.831613898277283 0.1613763868808746 0.4956434965133667 1.831613898277283 0.1613763868808746 0.4785308539867401 1.90060830116272 0.1212298572063446 0.4785308539867401 1.90060830116272 0.1212298572063446 -0.5137938857078552 1.737711429595947 0.1892369687557221 -0.5137938857078552 1.737711429595947 0.1892369687557221 -0.003499784041196108 1.757756352424622 0.208108589053154 -0.003499784041196108 1.757756352424622 0.208108589053154 0.1886377781629562 1.746377825737 0.2039957940578461 0.1886377781629562 1.746377825737 0.2039957940578461 0.3987329006195068 1.748755574226379 0.202934205532074 0.3987329006195068 1.748755574226379 0.202934205532074 -0.4230424761772156 1.650818824768066 0.2358699589967728 -0.4230424761772156 1.650818824768066 0.2358699589967728 -0.5286108255386353 1.631603360176086 0.214817613363266 -0.5286108255386353 1.631603360176086 0.214817613363266 -0.2041698843240738 1.663896322250366 0.2470194548368454 -0.2041698843240738 1.663896322250366 0.2470194548368454 0.5108861327171326 1.737711429595947 0.1888849139213562 0.5108861327171326 1.737711429595947 0.1888849139213562 0.1971705108880997 1.663896322250366 0.2470194548368454 0.1971705108880997 1.663896322250366 0.2470194548368454 -0.003499784041196108 1.663896322250366 0.2506212294101715 -0.003499784041196108 1.663896322250366 0.2506212294101715 0.4160428643226624 1.650818824768066 0.2358699589967728 0.4160428643226624 1.650818824768066 0.2358699589967728 0.525602400302887 1.631603360176086 0.2142856419086456 0.525602400302887 1.631603360176086 0.2142856419086456 -0.4412959218025208 1.501774668693543 0.2760804295539856 -0.4412959218025208 1.501774668693543 0.2760804295539856 -0.2256496995687485 1.501774907112122 0.2899670302867889 -0.2256496995687485 1.501774907112122 0.2899670302867889 -0.5421937704086304 1.536199450492859 0.2387980967760086 -0.5421937704086304 1.536199450492859 0.2387980967760086 0.2186503261327744 1.501774907112122 0.2899670302867889 0.2186503261327744 1.501774907112122 0.2899670302867889 0.4342963695526123 1.501774668693543 0.2760804295539856 0.4342963695526123 1.501774668693543 0.2760804295539856 -0.003499784041196108 1.501774907112122 0.2931338846683502 -0.003499784041196108 1.501774907112122 0.2931338846683502 -0.5514172911643982 1.437644124031067 0.2581594586372376 -0.5514172911643982 1.437644124031067 0.2581594586372376 -0.4633875489234924 1.329277634620667 0.3124249279499054 -0.4633875489234924 1.329277634620667 0.3124249279499054 -0.2482648938894272 1.33567476272583 0.3311053514480591 -0.2482648938894272 1.33567476272583 0.3311053514480591 0.5393254160881043 1.536199450492859 0.2381628751754761 0.5393254160881043 1.536199450492859 0.2381628751754761 -0.5588521361351013 1.338033318519592 0.2766626179218292 -0.5588521361351013 1.338033318519592 0.2766626179218292 0.2412653863430023 1.33567476272583 0.3311053514480591 0.2412653863430023 1.33567476272583 0.3311053514480591 0.4563882350921631 1.329277634620667 0.3124249279499054 0.4563882350921631 1.329277634620667 0.3124249279499054 -0.003499784041196108 1.326353907585144 0.3321035206317902 -0.003499784041196108 1.326353907585144 0.3321035206317902 0.5483801960945129 1.437644124031067 0.2574158906936646 0.5483801960945129 1.437644124031067 0.2574158906936646 -0.4844794273376465 1.123080253601074 0.3444932699203491 -0.4844794273376465 1.123080253601074 0.3444932699203491 -0.567148745059967 1.231308460235596 0.295699417591095 -0.567148745059967 1.231308460235596 0.295699417591095 0.5556744933128357 1.338033318519592 0.276308536529541 0.5556744933128357 1.338033318519592 0.276308536529541 -0.2700301110744476 1.131339311599731 0.3596623241901398 -0.2700301110744476 1.131339311599731 0.3596623241901398 0.2630306780338287 1.131339311599731 0.3596623241901398 0.2630306780338287 1.131339311599731 0.3596623241901398 0.4774796962738037 1.123080253601074 0.3444932699203491 0.4774796962738037 1.123080253601074 0.3444932699203491 0.5641939043998718 1.231308460235596 0.2950709462165833 0.5641939043998718 1.231308460235596 0.2950709462165833 -0.003499784041196108 1.128503799438477 0.3657594621181488 -0.003499784041196108 1.128503799438477 0.3657594621181488 -0.5044852495193481 0.8832650184631348 0.3699729144573212 -0.5044852495193481 0.8832650184631348 0.3699729144573212 -0.5767728090286255 1.083053588867188 0.3177225887775421 -0.5767728090286255 1.083053588867188 0.3177225887775421 -0.299287348985672 0.8913923501968384 0.3904069364070892 -0.299287348985672 0.8913923501968384 0.3904069364070892 0.2922879457473755 0.8913923501968384 0.3904069364070892 0.2922879457473755 0.8913923501968384 0.3904069364070892 0.4974865317344666 0.8832650184631348 0.3699729144573212 0.4974865317344666 0.8832650184631348 0.3699729144573212 0.573678731918335 1.083053588867188 0.3170293569564819 0.573678731918335 1.083053588867188 0.3170293569564819 -0.003499784041196108 0.8878175616264343 0.3964553773403168 -0.003499784041196108 0.8878175616264343 0.3964553773403168 -0.5283554196357727 0.6259345412254334 0.397999107837677 -0.5283554196357727 0.6259345412254334 0.397999107837677 -0.5918655395507813 0.8816207051277161 0.3470511138439179 -0.5918655395507813 0.8816207051277161 0.3470511138439179 -0.3311246931552887 0.6259345412254334 0.4213344156742096 -0.3311246931552887 0.6259345412254334 0.4213344156742096 -0.6050222516059876 0.7718126773834229 0.3615998923778534 -0.6050222516059876 0.7718126773834229 0.3615998923778534 0.324125200510025 0.6259345412254334 0.4213344156742096 0.324125200510025 0.6259345412254334 0.4213344156742096 0.5213552117347717 0.6259345412254334 0.397999107837677 0.5213552117347717 0.6259345412254334 0.397999107837677 0.5888693928718567 0.8816207051277161 0.3465395271778107 0.5888693928718567 0.8816207051277161 0.3465395271778107 -0.003499784041196108 0.6259345412254334 0.4376304149627686 -0.003499784041196108 0.6259345412254334 0.4376304149627686 -0.5606250166893005 0.4234864413738251 0.4212178885936737 -0.5606250166893005 0.4234864413738251 0.4212178885936737 -0.629096269607544 0.6240295767784119 0.3749243021011353 -0.629096269607544 0.6240295767784119 0.3749243021011353 0.602715015411377 0.7718126773834229 0.3617312014102936 0.602715015411377 0.7718126773834229 0.3617312014102936 -0.3552756011486054 0.4234864413738251 0.4407898485660553 -0.3552756011486054 0.4234864413738251 0.4407898485660553 -0.6648309230804443 0.4212585687637329 0.3920857310295105 -0.6648309230804443 0.4212585687637329 0.3920857310295105 0.3482760787010193 0.4234864413738251 0.4407898485660553 0.3482760787010193 0.4234864413738251 0.4407898485660553 0.553625762462616 0.4234864413738251 0.4212178885936737 0.553625762462616 0.4234864413738251 0.4212178885936737 0.6264829635620117 0.6240295767784119 0.3751082420349121 0.6264829635620117 0.6240295767784119 0.3751082420349121 -0.003499784041196108 0.4255315363407135 0.4577548205852509 -0.003499784041196108 0.4255315363407135 0.4577548205852509 0.6621518731117249 0.4212585687637329 0.3921840190887451 0.6621518731117249 0.4212585687637329 0.3921840190887451</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"154\" source=\"#ID249\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID247\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID250\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"462\">-0.0001782469314118506 0.9359415269660365 0.3521554008225851 2.304130455219981e-012 0.937087038524494 0.349095806662574 -4.17327692578534e-011 0.8124286249016133 0.5830606567420528 4.17327692578534e-011 -0.8124286249016133 -0.5830606567420528 -2.304130455219981e-012 -0.937087038524494 -0.349095806662574 0.0001782469314118506 -0.9359415269660365 -0.3521554008225851 0.02815726933504569 0.8124234393539105 0.5823876057849761 -0.02815726933504569 -0.8124234393539105 -0.5823876057849761 0.001177355043848136 0.9358986257314065 0.3522674781883302 -0.001177355043848136 -0.9358986257314065 -0.3522674781883302 0.07111601620125621 0.9588412546148962 0.2748926348380301 -0.07111601620125621 -0.9588412546148962 -0.2748926348380301 0.002224004402349778 0.5451763948437488 0.8383184074739092 -0.002224004402349778 -0.5451763948437488 -0.8383184074739092 -0.0247490152834155 0.8123773450419 0.5826066730695548 0.0247490152834155 -0.8123773450419 -0.5826066730695548 0.1347837926354865 0.7274531243527497 0.6727891802877163 -0.1347837926354865 -0.7274531243527497 -0.6727891802877163 -0.01188990300743283 0.45042272341769 0.8927362434871036 0.01188990300743283 -0.45042272341769 -0.8927362434871036 -1.812531033613134e-009 0.5749698906834061 0.8181745686633825 1.812531033613134e-009 -0.5749698906834061 -0.8181745686633825 -0.0002663419220773194 0.5452890246601579 0.8382480591371233 0.0002663419220773194 -0.5452890246601579 -0.8382480591371233 -0.06831730452083262 0.9597751257338697 0.2723315147491064 0.06831730452083262 -0.9597751257338697 -0.2723315147491064 -0.06167175424223675 0.3636344597811704 0.9294980227995868 0.06167175424223675 -0.3636344597811704 -0.9294980227995868 -0.02751725272444099 0.4567496534542082 0.889169587239667 0.02751725272444099 -0.4567496534542082 -0.889169587239667 0.01579638502248365 0.4498412523778214 0.8929688246962347 -0.01579638502248365 -0.4498412523778214 -0.8929688246962347 -0.1256799507987488 0.7307929084495699 0.6709294112848553 0.1256799507987488 -0.7307929084495699 -0.6709294112848553 -0.1483123354811652 0.2719284164026189 0.950819850180299 0.1483123354811652 -0.2719284164026189 -0.950819850180299 -1.076934935744015e-008 0.4868752681084012 0.8734715068646328 1.076934935744015e-008 -0.4868752681084012 -0.8734715068646328 0.02751725298650883 0.456749677241571 0.8891695750124365 -0.02751725298650883 -0.456749677241571 -0.8891695750124365 0.06101109977296807 0.3642945231045185 0.9292831356161287 -0.06101109977296807 -0.3642945231045185 -0.9292831356161287 -0.145248349693507 0.3159010042398395 0.9376083790322982 0.145248349693507 -0.3159010042398395 -0.9376083790322982 -0.2222891114857754 0.2854551366133628 0.9322568937239943 0.2222891114857754 -0.2854551366133628 -0.9322568937239943 -0.0474367284323688 0.3634452253373133 0.9304070748737584 0.0474367284323688 -0.3634452253373133 -0.9304070748737584 0.1459011091775654 0.2714276469420584 0.9513358496431497 -0.1459011091775654 -0.2714276469420584 -0.9513358496431497 0.04743676327859917 0.3634452669479714 0.9304070568427392 -0.04743676327859917 -0.3634452669479714 -0.9304070568427392 -7.726431084607996e-009 0.3349265681058958 0.9422442326577578 7.726431084607996e-009 -0.3349265681058958 -0.9422442326577578 0.1431094636710336 0.3156371553435537 0.9380260484519704 -0.1431094636710336 -0.3156371553435537 -0.9380260484519704 0.2182979891680393 0.2842321390783597 0.9335727497309091 -0.2182979891680393 -0.2842321390783597 -0.9335727497309091 -0.1665751974634712 0.2398908308754316 0.9564021606269512 0.1665751974634712 -0.2398908308754316 -0.9564021606269512 -0.04219572394290461 0.2493759021386717 0.9674870440028941 0.04219572394290461 -0.2493759021386717 -0.9674870440028941 -0.2613867269618275 0.2450048606994376 0.9336217634576822 0.2613867269618275 -0.2450048606994376 -0.9336217634576822 0.04219573575736518 0.2493759010541719 0.9674870437671579 -0.04219573575736518 -0.2493759010541719 -0.9674870437671579 0.1644228359734293 0.2399124235060672 0.9567691257863102 -0.1644228359734293 -0.2399124235060672 -0.9567691257863102 -4.360533668269902e-009 0.2401766670986377 0.9707291942562508 4.360533668269902e-009 -0.2401766670986377 -0.9707291942562508 -0.2697549245147201 0.1999895753758608 0.94193229610256 0.2697549245147201 -0.1999895753758608 -0.94193229610256 -0.205165955596271 0.2026383263809331 0.9575200464459233 0.205165955596271 -0.2026383263809331 -0.9575200464459233 -0.04510107884947809 0.1949068748297897 0.9797842634124606 0.04510107884947809 -0.1949068748297897 -0.9797842634124606 0.2577041694106427 0.2436241867406072 0.9350057843154495 -0.2577041694106427 -0.2436241867406072 -0.9350057843154495 -0.3155416212866312 0.206553169256247 0.926158341487029 0.3155416212866312 -0.206553169256247 -0.926158341487029 0.04510104543534891 0.1949068346227504 0.9797842729488866 -0.04510104543534891 -0.1949068346227504 -0.9797842729488866 0.2011697807349986 0.2021535428046418 0.9584699601190244 -0.2011697807349986 -0.2021535428046418 -0.9584699601190244 -4.296743762838351e-010 0.1854674230964988 0.9826504134075068 4.296743762838351e-010 -0.1854674230964988 -0.9826504134075068 0.2675210635041206 0.2016813846098287 0.9422086285337693 -0.2675210635041206 -0.2016813846098287 -0.9422086285337693 -0.2058173284334745 0.1429031004056697 0.9681001658975966 0.2058173284334745 -0.1429031004056697 -0.9681001658975966 -0.3252481571229391 0.1766447668061257 0.9289834566062741 0.3252481571229391 -0.1766447668061257 -0.9289834566062741 0.3084472488844051 0.2058706115497009 0.9286967136561829 -0.3084472488844051 -0.2058706115497009 -0.9286967136561829 -0.04796545790210148 0.137895058325429 0.9892847253130254 0.04796545790210148 -0.137895058325429 -0.9892847253130254 0.04796547033123873 0.1378951115528392 0.9892847172911007 -0.04796547033123873 -0.1378951115528392 -0.9892847172911007 0.2024207883500881 0.1425877581726434 0.9688625060673101 -0.2024207883500881 -0.1425877581726434 -0.9688625060673101 0.318558960484321 0.1757972678665487 0.9314588070901503 -0.318558960484321 -0.1757972678665487 -0.9314588070901503 -5.391486020732135e-009 0.1476432149403069 0.9890406872733246 5.391486020732135e-009 -0.1476432149403069 -0.9890406872733246 -0.1773289548747459 0.1343572735873728 0.9749372106947186 0.1773289548747459 -0.1343572735873728 -0.9749372106947186 -0.3212173299977274 0.1431746513568026 0.9361198887524979 0.3212173299977274 -0.1431746513568026 -0.9361198887524979 -0.06274409473882742 0.1270693842706143 0.9899073442279798 0.06274409473882742 -0.1270693842706143 -0.9899073442279798 0.06274399125447423 0.1270692920287318 0.9899073626278246 -0.06274399125447423 -0.1270692920287318 -0.9899073626278246 0.1739226856060093 0.1350214639577931 0.9754589195359729 -0.1739226856060093 -0.1350214639577931 -0.9754589195359729 0.3147030443890779 0.1431671105088732 0.9383310568881254 -0.3147030443890779 -0.1431671105088732 -0.9383310568881254 -4.80197978026056e-009 0.1328495772137584 0.9911362115441681 4.80197978026056e-009 -0.1328495772137584 -0.9911362115441681 -0.1709425518226716 0.1279235197490857 0.9769412556911282 0.1709425518226716 -0.1279235197490857 -0.9769412556911282 -0.2533455977826842 0.1573595136377819 0.9544914832264431 0.2533455977826842 -0.1573595136377819 -0.9544914832264431 -0.0766108992186908 0.1207361439996178 0.9897239785177517 0.0766108992186908 -0.1207361439996178 -0.9897239785177517 -0.22749638196544 0.1315879079765795 0.9648471478254894 0.22749638196544 -0.1315879079765795 -0.9648471478254894 0.07661103214427249 0.1207362064017146 0.9897239606160457 -0.07661103214427249 -0.1207362064017146 -0.9897239606160457 0.1656929408753884 0.1271979898621564 0.9779399371735934 -0.1656929408753884 -0.1271979898621564 -0.9779399371735934 0.2478673874826266 0.1611480776092019 0.9552973648583963 -0.2478673874826266 -0.1611480776092019 -0.9552973648583963 -4.814492874022326e-009 0.1278209019418282 0.9917972660916029 4.814492874022326e-009 -0.1278209019418282 -0.9917972660916029 -0.1953528286554639 0.1373444081517152 0.9710683734350346 0.1953528286554639 -0.1373444081517152 -0.9710683734350346 -0.2237895774661974 0.1223335681965512 0.966929533683712 0.2237895774661974 -0.1223335681965512 -0.966929533683712 0.217589038094111 0.132316565109581 0.9670301634896823 -0.217589038094111 -0.132316565109581 -0.9670301634896823 -0.07338413420345472 0.1038272878729786 0.9918844000891187 0.07338413420345472 -0.1038272878729786 -0.9918844000891187 -0.255451770674433 0.1427053145778973 0.9562319729283896 0.255451770674433 -0.1427053145778973 -0.9562319729283896 0.07338406236200086 0.1038272705222477 0.9918844072204937 -0.07338406236200086 -0.1038272705222477 -0.9918844072204937 0.189399515785567 0.1365482538004697 0.9723591917620952 -0.189399515785567 -0.1365482538004697 -0.9723591917620952 0.2132922457168499 0.1204664420331665 0.9695330083400631 -0.2132922457168499 -0.1204664420331665 -0.9695330083400631 -3.144688608621132e-009 0.09991715580283653 0.9949957597780363 3.144688608621132e-009 -0.09991715580283653 -0.9949957597780363 0.2443217657506773 0.1408108584240575 0.9594160603879589 -0.2443217657506773 -0.1408108584240575 -0.9594160603879589</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"154\" source=\"#ID250\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID248\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID246\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID247\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"232\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 0 6 7 5 11 12 6 2 3 7 13 8 14 2 3 15 9 10 6 16 17 7 11 12 18 6 7 19 13 20 12 2 3 13 21 2 14 22 23 15 3 8 24 14 15 25 9 18 16 6 7 17 19 26 18 12 13 19 27 28 12 20 21 13 29 20 2 22 23 3 21 22 14 30 31 15 23 14 24 32 33 25 15 26 12 28 29 13 27 34 18 26 27 19 35 36 28 20 21 29 37 38 20 22 23 21 39 14 32 30 31 33 15 40 22 30 31 23 41 42 26 28 29 27 43 44 34 26 27 35 45 36 20 38 39 21 37 46 28 36 37 29 47 38 22 40 41 23 39 40 30 48 49 31 41 42 44 26 27 45 43 46 42 28 29 43 47 36 38 50 51 39 37 52 46 36 37 47 53 38 40 54 55 41 39 40 48 56 57 49 41 58 44 42 43 45 59 58 42 46 47 43 59 52 36 50 51 37 53 50 38 54 55 39 51 60 46 52 53 47 61 54 40 56 57 41 55 62 44 58 59 45 63 60 58 46 47 59 61 52 50 64 65 51 53 50 54 66 67 55 51 68 60 52 53 61 69 66 54 56 57 55 67 70 62 58 59 63 71 72 58 60 61 59 73 68 52 64 65 53 69 64 50 66 67 51 65 74 60 68 69 61 75 66 56 76 77 57 67 78 70 58 59 71 79 74 72 60 61 73 75 72 78 58 59 79 73 68 64 80 81 65 69 64 66 82 83 67 65 84 74 68 69 75 85 66 76 86 87 77 67 88 72 74 75 73 89 90 78 72 73 79 91 84 68 80 81 69 85 80 64 82 83 65 81 82 66 92 93 67 83 94 74 84 85 75 95 66 86 92 93 87 67 94 88 74 75 89 95 88 90 72 73 91 89 84 80 96 97 81 85 80 82 98 99 83 81 82 92 100 101 93 83 102 94 84 85 95 103 104 88 94 95 89 105 106 90 88 89 91 107 102 84 96 97 85 103 96 80 98 99 81 97 98 82 100 101 83 99 108 94 102 103 95 109 108 104 94 95 105 109 104 106 88 89 107 105 102 96 110 111 97 103 96 98 112 113 99 97 98 100 114 115 101 99 116 108 102 103 109 117 118 104 108 109 105 119 120 106 104 105 107 121 116 102 110 111 103 117 110 96 112 113 97 111 112 98 114 115 99 113 122 108 116 117 109 123 122 118 108 109 119 123 118 124 104 105 125 119 124 120 104 105 121 125 116 110 126 127 111 117 110 112 128 129 113 111 112 114 130 131 115 113 132 122 116 117 123 133 134 118 122 123 119 135 136 124 118 119 125 137 132 116 126 127 117 133 126 110 128 129 111 127 128 112 138 139 113 129 112 130 138 139 131 113 140 122 132 133 123 141 140 134 122 123 135 141 134 142 118 119 143 135 142 136 118 119 137 143 132 126 144 145 127 133 126 128 146 147 129 127 128 138 148 149 139 129 150 140 132 133 141 151 150 132 144 145 133 151 144 126 146 147 127 145 146 128 152 153 129 147 128 148 152 153 149 129</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID248\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID253\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID254\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID258\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"2964\">-0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.942444920539856 -0.2903493940830231 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.951842546463013 -0.2739895284175873 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.94102954864502 -0.2903494238853455 0.4591898620128632 1.94102954864502 -0.2903494238853455 -0.003745505819097161 1.942444920539856 -0.2903493940830231 0.4591898620128632 1.950429439544678 -0.2932872772216797 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.950429439544678 -0.2932872772216797 -0.4666804373264313 1.94102954864502 -0.2903494238853455 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.4666804373264313 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.4666804373264313 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.934477210044861 -0.281982958316803 -0.003745505819097161 1.934477210044861 -0.281982958316803 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4591898620128632 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.951842546463013 -0.2739895284175873 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.94102954864502 -0.2903494238853455 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.4591898620128632 1.94102954864502 -0.2903494238853455 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.4666804373264313 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.4666804373264313 1.927737951278687 -0.2694617509841919 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.4666804373264313 1.927737951278687 -0.2694617509841919 0.4591898620128632 1.933063864707947 -0.2819830179214478 -0.003745505819097161 1.929153442382813 -0.2694616913795471 -0.003745505819097161 1.929153442382813 -0.2694616913795471 0.4591898620128632 1.933063864707947 -0.2819830179214478 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.974754452705383 -0.2916486263275147 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.961243033409119 -0.2903493940830231 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2903494238853455 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.959829092025757 -0.2903494238853455 -0.003745505819097161 1.961243033409119 -0.2903493940830231 0.4686544239521027 1.937264442443848 -0.303368866443634 0.4686544239521027 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.4761454164981842 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.950429439544678 -0.3074844181537628 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.4761454164981842 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.4761454164981842 1.974754452705383 -0.2916486263275147 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.4666804373264313 1.967794060707092 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.4666804373264313 1.925872087478638 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.4666804373264313 1.925872087478638 -0.2546918988227844 0.4591898620128632 1.927737951278687 -0.2694617509841919 -0.003745505819097161 1.927285671234131 -0.2546918988227844 -0.003745505819097161 1.927285671234131 -0.2546918988227844 0.4591898620128632 1.927737951278687 -0.2694617509841919 -0.4761454164981842 1.930520176887512 -0.2916485071182251 -0.4761454164981842 1.930520176887512 -0.2916485071182251 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.963594079017639 -0.303368866443634 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.963594079017639 -0.303368866443634 0.4686544239521027 1.974754452705383 -0.2916486263275147 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4591898620128632 1.967794060707092 -0.2819830179214478 0.4686544239521027 1.950429439544678 -0.3074844181537628 0.5049393773078919 1.963594079017639 -0.303368866443634 0.5049393773078919 1.963594079017639 -0.303368866443634 0.4686544239521027 1.950429439544678 -0.3074844181537628 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.969209432601929 -0.2819830179214478 -0.003745505819097161 1.969209432601929 -0.2819830179214478 0.4686544239521027 1.937264442443848 -0.303368866443634 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.4686544239521027 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.4666804373264313 1.927737951278687 -0.2399222552776337 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.4666804373264313 1.927737951278687 -0.2399222552776337 0.4591898620128632 1.925872087478638 -0.2546918988227844 -0.003745505819097161 1.929153442382813 -0.2399222552776337 -0.003745505819097161 1.929153442382813 -0.2399222552776337 0.4591898620128632 1.925872087478638 -0.2546918988227844 -0.4761454164981842 1.92527174949646 -0.2741076946258545 -0.4761454164981842 1.92527174949646 -0.2741076946258545 0.4686544239521027 1.930520176887512 -0.2916485071182251 0.4686544239521027 1.930520176887512 -0.2916485071182251 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.937264442443848 -0.303368866443634 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.4591898620128632 1.973116874694824 -0.2694617509841919 -0.003745505819097161 1.974531054496765 -0.2694616913795471 -0.003745505819097161 1.974531054496765 -0.2694616913795471 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.950429439544678 -0.3074844181537628 -0.5124302506446838 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5124302506446838 1.963594079017639 -0.303368866443634 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.5124302506446838 1.974754452705383 -0.2916486263275147 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5124302506446838 1.982213020324707 -0.2741076946258545 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4761454164981842 1.982213020324707 -0.2741076946258545 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.973116874694824 -0.2694617509841919 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.4666804373264313 1.933063864707947 -0.2274011671543121 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.4666804373264313 1.933063864707947 -0.2274011671543121 0.4591898620128632 1.927737951278687 -0.2399222552776337 -0.003745505819097161 1.934477210044861 -0.2274011671543121 -0.003745505819097161 1.934477210044861 -0.2274011671543121 0.4591898620128632 1.927737951278687 -0.2399222552776337 -0.4761454164981842 1.922653794288635 -0.2534168660640717 -0.4761454164981842 1.922653794288635 -0.2534168660640717 0.4686544239521027 1.92527174949646 -0.2741076946258545 0.4686544239521027 1.92527174949646 -0.2741076946258545 -0.5124302506446838 1.930520176887512 -0.2916485071182251 -0.5124302506446838 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.514404296875 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.982213020324707 -0.2741076946258545 0.514404296875 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.974754452705383 -0.2916486263275147 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.4686544239521027 1.982213020324707 -0.2741076946258545 0.5049393773078919 1.963594079017639 -0.303368866443634 0.514404296875 1.967794060707092 -0.2819830179214478 0.514404296875 1.967794060707092 -0.2819830179214478 0.5049393773078919 1.963594079017639 -0.303368866443634 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.4591898620128632 1.973116874694824 -0.2694617509841919 0.5049393773078919 1.950429439544678 -0.3074844181537628 0.514404296875 1.959829092025757 -0.2903494238853455 0.514404296875 1.959829092025757 -0.2903494238853455 0.5049393773078919 1.950429439544678 -0.3074844181537628 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 -0.003745505819097161 1.976400971412659 -0.2546918988227844 0.5049393773078919 1.937264442443848 -0.303368866443634 0.514404296875 1.950429439544678 -0.2932872772216797 0.514404296875 1.950429439544678 -0.2932872772216797 0.5049393773078919 1.937264442443848 -0.303368866443634 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.974986433982849 -0.2546918988227844 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4666804373264313 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.933063864707947 -0.2274011671543121 -0.003745505819097161 1.942444920539856 -0.2190346866846085 -0.003745505819097161 1.942444920539856 -0.2190346866846085 0.4591898620128632 1.933063864707947 -0.2274011671543121 -0.4761454164981842 1.92527174949646 -0.2327264100313187 -0.4761454164981842 1.92527174949646 -0.2327264100313187 0.4686544239521027 1.922653794288635 -0.2534168660640717 0.4686544239521027 1.922653794288635 -0.2534168660640717 -0.5124302506446838 1.92527174949646 -0.2741076946258545 -0.5124302506446838 1.92527174949646 -0.2741076946258545 0.5049393773078919 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.930520176887512 -0.2916485071182251 0.5049393773078919 1.937264442443848 -0.303368866443634 0.5049393773078919 1.937264442443848 -0.303368866443634 0.514404296875 1.974986433982849 -0.2546918988227844 0.514404296875 1.974986433982849 -0.2546918988227844 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.974531054496765 -0.2399222552776337 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.4591898620128632 1.973116874694824 -0.2399222552776337 -0.003745505819097161 1.974531054496765 -0.2399222552776337 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.4591898620128632 1.974986433982849 -0.2546918988227844 0.514404296875 1.94102954864502 -0.2903494238853455 0.514404296875 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.6682524085044861 1.94563889503479 -0.2932872772216797 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.5218953490257263 1.94102954864502 -0.2903494238853455 -0.6682524085044861 1.94563889503479 -0.2932872772216797 -0.5218953490257263 1.950429439544678 -0.2932872772216797 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.6697498559951782 1.954917311668396 -0.2903493940830231 -0.6697498559951782 1.954917311668396 -0.2903493940830231 -0.5218953490257263 1.959829092025757 -0.2903494238853455 -0.6710188984870911 1.9627845287323 -0.2819830179214478 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.5218953490257263 1.967794060707092 -0.2819830179214478 -0.6710188984870911 1.9627845287323 -0.2819830179214478 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.6718668341636658 1.968037009239197 -0.2694616913795471 -0.6718668341636658 1.968037009239197 -0.2694616913795471 -0.5218953490257263 1.973116874694824 -0.2694617509841919 -0.6721646189689636 1.969884276390076 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.5218953490257263 1.974986433982849 -0.2546918988227844 -0.6721646189689636 1.969884276390076 -0.2546918988227844 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.5124302506446838 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.984832048416138 -0.2534168660640717 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.973116874694824 -0.2399222552776337 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.951842546463013 -0.216096967458725 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.94102954864502 -0.2190346866846085 -0.003745505819097161 1.951842546463013 -0.216096967458725 -0.4761454164981842 1.928295969963074 -0.1971973478794098 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.4666804373264313 1.94102954864502 -0.2190346866846085 -0.4761454164981842 1.928295969963074 -0.1971973478794098 0.4686544239521027 1.92527174949646 -0.2327264100313187 0.4686544239521027 1.92527174949646 -0.2327264100313187 -0.5124302506446838 1.922653794288635 -0.2534168660640717 -0.5124302506446838 1.922653794288635 -0.2534168660640717 0.5049393773078919 1.92527174949646 -0.2741076946258545 0.5049393773078919 1.92527174949646 -0.2741076946258545 -0.5218953490257263 1.933063864707947 -0.2819830179214478 -0.5218953490257263 1.933063864707947 -0.2819830179214478 0.514404296875 1.974986433982849 -0.2546918988227844 0.514404296875 1.973116874694824 -0.2694617509841919 0.6646738648414612 1.969884276390076 -0.2546918988227844 0.6646738648414612 1.969884276390076 -0.2546918988227844 0.514404296875 1.973116874694824 -0.2694617509841919 0.514404296875 1.974986433982849 -0.2546918988227844 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.5049393773078919 1.984832048416138 -0.2534168660640717 0.514404296875 1.967794060707092 -0.2819830179214478 0.6643763184547424 1.968037009239197 -0.2694616913795471 0.6643763184547424 1.968037009239197 -0.2694616913795471 0.514404296875 1.967794060707092 -0.2819830179214478 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.4686544239521027 1.984832048416138 -0.2534168660640717 0.514404296875 1.959829092025757 -0.2903494238853455 0.6635281443595886 1.9627845287323 -0.2819830179214478 0.6635281443595886 1.9627845287323 -0.2819830179214478 0.514404296875 1.959829092025757 -0.2903494238853455 0.514404296875 1.950429439544678 -0.2932872772216797 0.6622587442398071 1.954917311668396 -0.2903493940830231 0.6622587442398071 1.954917311668396 -0.2903493940830231 0.514404296875 1.950429439544678 -0.2932872772216797 0.4591898620128632 1.967794060707092 -0.2274012565612793 -0.003745505819097161 1.969209432601929 -0.2274011671543121 -0.003745505819097161 1.969209432601929 -0.2274011671543121 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4591898620128632 1.973116874694824 -0.2399222552776337 0.514404296875 1.94102954864502 -0.2903494238853455 0.6607614159584045 1.94563889503479 -0.2932872772216797 0.6607614159584045 1.94563889503479 -0.2932872772216797 0.514404296875 1.94102954864502 -0.2903494238853455 -0.6667550802230835 1.936360359191895 -0.2903493940830231 -0.6667550802230835 1.936360359191895 -0.2903493940830231 -0.6718668341636658 1.968037009239197 -0.2399222552776337 -0.6718668341636658 1.968037009239197 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.983609795570374 -0.229463130235672 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.967794060707092 -0.2274012565612793 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.003745505819097161 1.961243033409119 -0.2190346866846085 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4591898620128632 1.950429439544678 -0.216096967458725 -0.003745505819097161 1.961243033409119 -0.2190346866846085 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.4666804373264313 1.950429439544678 -0.216096967458725 -0.4761454164981842 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.928295969963074 -0.1971973478794098 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4591898620128632 1.94102954864502 -0.2190346866846085 0.4686544239521027 1.928295969963074 -0.1971973478794098 -0.5124302506446838 1.92527174949646 -0.2327264100313187 -0.5124302506446838 1.92527174949646 -0.2327264100313187 0.5049393773078919 1.922653794288635 -0.2534168660640717 0.5049393773078919 1.922653794288635 -0.2534168660640717 -0.5218953490257263 1.927737951278687 -0.2694617509841919 -0.5218953490257263 1.927737951278687 -0.2694617509841919 0.514404296875 1.933063864707947 -0.2819830179214478 0.514404296875 1.933063864707947 -0.2819830179214478 0.6643763184547424 1.968037009239197 -0.2399222552776337 0.6643763184547424 1.968037009239197 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.5049393773078919 1.983609795570374 -0.229463130235672 0.5049393773078919 1.983609795570374 -0.229463130235672 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.4591898620128632 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.983609795570374 -0.229463130235672 0.4686544239521027 1.983609795570374 -0.229463130235672 0.659264087677002 1.936360359191895 -0.2903493940830231 0.659264087677002 1.936360359191895 -0.2903493940830231 -0.7710930705070496 1.897564053535461 -0.2932872772216797 -0.7710930705070496 1.897564053535461 -0.2932872772216797 -0.7768009901046753 1.905940294265747 -0.2903493940830231 -0.7768009901046753 1.905940294265747 -0.2903493940830231 -0.7816405296325684 1.913044810295105 -0.2819830179214478 -0.7816405296325684 1.913044810295105 -0.2819830179214478 -0.7848740220069885 1.917791366577148 -0.2694616913795471 -0.7848740220069885 1.917791366577148 -0.2694616913795471 -0.7860094308853149 1.919457793235779 -0.2546918988227844 -0.7860094308853149 1.919457793235779 -0.2546918988227844 -0.7848740220069885 1.917791366577148 -0.2399222552776337 -0.7848740220069885 1.917791366577148 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5218953490257263 1.973116874694824 -0.2399222552776337 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.983609795570374 -0.229463130235672 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.97982120513916 -0.1970134824514389 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4666804373264313 1.959829092025757 -0.2190346866846085 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4591898620128632 1.950429439544678 -0.216096967458725 0.4686544239521027 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 0.5049393773078919 1.92527174949646 -0.2327264100313187 0.5049393773078919 1.92527174949646 -0.2327264100313187 -0.5218953490257263 1.925872087478638 -0.2546918988227844 -0.5218953490257263 1.925872087478638 -0.2546918988227844 0.514404296875 1.927737951278687 -0.2694617509841919 0.514404296875 1.927737951278687 -0.2694617509841919 -0.6654856204986572 1.928493976593018 -0.281982958316803 -0.6654856204986572 1.928493976593018 -0.281982958316803 0.7773829102516174 1.917791366577148 -0.2399222552776337 0.7773829102516174 1.917791366577148 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.514404296875 1.973116874694824 -0.2399222552776337 0.7785183787345886 1.919457793235779 -0.2546918988227844 0.7785183787345886 1.919457793235779 -0.2546918988227844 0.5049393773078919 1.983609795570374 -0.229463130235672 0.5049393773078919 1.983609795570374 -0.229463130235672 0.7773829102516174 1.917791366577148 -0.2694616913795471 0.7773829102516174 1.917791366577148 -0.2694616913795471 0.7741499543190002 1.913044810295105 -0.2819830179214478 0.7741499543190002 1.913044810295105 -0.2819830179214478 0.7693102359771729 1.905940294265747 -0.2903493940830231 0.7693102359771729 1.905940294265747 -0.2903493940830231 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.4591898620128632 1.959829092025757 -0.2190346866846085 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.4686544239521027 1.97982120513916 -0.1970134824514389 0.7636018991470337 1.897564053535461 -0.2932872772216797 0.7636018991470337 1.897564053535461 -0.2932872772216797 -0.7653849124908447 1.889186143875122 -0.2903493940830231 -0.7653849124908447 1.889186143875122 -0.2903493940830231 -0.7816405296325684 1.913044810295105 -0.2274011671543121 -0.7816405296325684 1.913044810295105 -0.2274011671543121 -0.6710188984870911 1.9627845287323 -0.2274011671543121 -0.6710188984870911 1.9627845287323 -0.2274011671543121 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.97982120513916 -0.1970134824514389 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 -0.4761454164981842 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.4761454164981842 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 0.514404296875 1.925872087478638 -0.2546918988227844 0.514404296875 1.925872087478638 -0.2546918988227844 -0.6646373271942139 1.923238515853882 -0.2694616913795471 -0.6646373271942139 1.923238515853882 -0.2694616913795471 0.6579948663711548 1.928493976593018 -0.281982958316803 0.6579948663711548 1.928493976593018 -0.281982958316803 0.7741499543190002 1.913044810295105 -0.2274011671543121 0.7741499543190002 1.913044810295105 -0.2274011671543121 0.6635281443595886 1.9627845287323 -0.2274011671543121 0.6635281443595886 1.9627845287323 -0.2274011671543121 0.514404296875 1.967794060707092 -0.2274012565612793 0.514404296875 1.967794060707092 -0.2274012565612793 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.4686544239521027 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.5049393773078919 1.97982120513916 -0.1970134824514389 0.7578940391540527 1.889186143875122 -0.2903493940830231 0.7578940391540527 1.889186143875122 -0.2903493940830231 -0.7926220297813416 1.87386691570282 -0.2936926782131195 -0.7926220297813416 1.87386691570282 -0.2936926782131195 -0.8007404804229736 1.876919627189636 -0.2907206118106842 -0.8007404804229736 1.876919627189636 -0.2907206118106842 -0.8081105947494507 1.879507780075073 -0.2822587192058563 -0.8081105947494507 1.879507780075073 -0.2822587192058563 -0.8095204830169678 1.881236433982849 -0.2695942223072052 -0.8095204830169678 1.881236433982849 -0.2695942223072052 -0.8112494945526123 1.881843686103821 -0.2546553909778595 -0.8112494945526123 1.881843686103821 -0.2546553909778595 -0.8095204830169678 1.881236433982849 -0.239716961979866 -0.8095204830169678 1.881236433982849 -0.239716961979866 -0.8081105947494507 1.879507780075073 -0.2270529717206955 -0.8081105947494507 1.879507780075073 -0.2270529717206955 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.967794060707092 -0.2274012565612793 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.970152854919434 -0.1758503466844559 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.4761454164981842 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.928295969963074 -0.1971973478794098 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5124302506446838 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5124302506446838 1.928295969963074 -0.1971973478794098 0.514404296875 1.927737951278687 -0.2399222552776337 0.514404296875 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.5218953490257263 1.927737951278687 -0.2399222552776337 -0.6643399000167847 1.921393752098084 -0.2546918988227844 -0.6643399000167847 1.921393752098084 -0.2546918988227844 0.6571467518806458 1.923238515853882 -0.2694616913795471 0.6571467518806458 1.923238515853882 -0.2694616913795471 -0.7605457901954651 1.882081866264343 -0.281982958316803 -0.7605457901954651 1.882081866264343 -0.281982958316803 0.80061936378479 1.879507780075073 -0.2270529717206955 0.80061936378479 1.879507780075073 -0.2270529717206955 0.8020292520523071 1.881236433982849 -0.239716961979866 0.8020292520523071 1.881236433982849 -0.239716961979866 0.514404296875 1.967794060707092 -0.2274012565612793 0.514404296875 1.967794060707092 -0.2274012565612793 0.8037582039833069 1.881843686103821 -0.2546553909778595 0.8037582039833069 1.881843686103821 -0.2546553909778595 0.8020292520523071 1.881236433982849 -0.2695942223072052 0.8020292520523071 1.881236433982849 -0.2695942223072052 0.80061936378479 1.879507780075073 -0.2822587192058563 0.80061936378479 1.879507780075073 -0.2822587192058563 0.7932494282722473 1.876919627189636 -0.2907206118106842 0.7932494282722473 1.876919627189636 -0.2907206118106842 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.514404296875 1.959829092025757 -0.2190346866846085 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.5049393773078919 1.970152854919434 -0.1758503466844559 0.514404296875 1.959829092025757 -0.2190346866846085 0.785130500793457 1.87386691570282 -0.2936926782131195 0.785130500793457 1.87386691570282 -0.2936926782131195 -0.7839280962944031 1.870815515518189 -0.2907206118106842 -0.7839280962944031 1.870815515518189 -0.2907206118106842 -0.8007404804229736 1.876919627189636 -0.2185902446508408 -0.8007404804229736 1.876919627189636 -0.2185902446508408 -0.7768009901046753 1.905940294265747 -0.2190346866846085 -0.7768009901046753 1.905940294265747 -0.2190346866846085 -0.6697498559951782 1.954917311668396 -0.2190346866846085 -0.6697498559951782 1.954917311668396 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.959829092025757 -0.2190346866846085 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5124302506446838 1.955073595046997 -0.1656994223594666 -0.5124302506446838 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.4686544239521027 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.935595273971558 -0.1740910559892654 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.5218953490257263 1.94102954864502 -0.2190346866846085 0.514404296875 1.933063864707947 -0.2274011671543121 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.935595273971558 -0.1740910559892654 0.5049393773078919 1.928295969963074 -0.1971973478794098 0.514404296875 1.933063864707947 -0.2274011671543121 0.514404296875 1.927737951278687 -0.2399222552776337 0.514404296875 1.927737951278687 -0.2399222552776337 -0.6646373271942139 1.923238515853882 -0.2399222552776337 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.5218953490257263 1.933063864707947 -0.2274011671543121 -0.6646373271942139 1.923238515853882 -0.2399222552776337 0.6568490266799927 1.921393752098084 -0.2546918988227844 0.6568490266799927 1.921393752098084 -0.2546918988227844 -0.757311999797821 1.877334475517273 -0.2694616913795471 -0.757311999797821 1.877334475517273 -0.2694616913795471 0.7530544996261597 1.882081866264343 -0.281982958316803 0.7530544996261597 1.882081866264343 -0.281982958316803 0.7932494282722473 1.876919627189636 -0.2185902446508408 0.7932494282722473 1.876919627189636 -0.2185902446508408 0.7693102359771729 1.905940294265747 -0.2190346866846085 0.7693102359771729 1.905940294265747 -0.2190346866846085 0.6622587442398071 1.954917311668396 -0.2190346866846085 0.6622587442398071 1.954917311668396 -0.2190346866846085 0.514404296875 1.950429439544678 -0.216096967458725 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.5049393773078919 1.955073595046997 -0.1656994223594666 0.514404296875 1.950429439544678 -0.216096967458725 0.514404296875 1.959829092025757 -0.2190346866846085 0.514404296875 1.959829092025757 -0.2190346866846085 0.776436984539032 1.870815515518189 -0.2907206118106842 0.776436984539032 1.870815515518189 -0.2907206118106842 -0.802080512046814 1.844061851501465 -0.2936926782131195 -0.802080512046814 1.844061851501465 -0.2936926782131195 -0.8102076053619385 1.848336219787598 -0.2907206118106842 -0.8102076053619385 1.848336219787598 -0.2907206118106842 -0.8164049386978149 1.851444840431213 -0.2822587192058563 -0.8164049386978149 1.851444840431213 -0.2822587192058563 -0.8189199566841126 1.853061437606812 -0.2695942223072052 -0.8189199566841126 1.853061437606812 -0.2695942223072052 -0.8205373883247376 1.853911638259888 -0.2546553909778595 -0.8205373883247376 1.853911638259888 -0.2546553909778595 -0.8189199566841126 1.853061437606812 -0.239716961979866 -0.8189199566841126 1.853061437606812 -0.239716961979866 -0.8164049386978149 1.851444840431213 -0.2270529717206955 -0.8164049386978149 1.851444840431213 -0.2270529717206955 -0.8102076053619385 1.848336219787598 -0.2185902446508408 -0.8102076053619385 1.848336219787598 -0.2185902446508408 -0.6682524085044861 1.94563889503479 -0.216096967458725 -0.6682524085044861 1.94563889503479 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 -0.5218953490257263 1.950429439544678 -0.216096967458725 0.514404296875 1.94102954864502 -0.2190346866846085 0.514404296875 1.94102954864502 -0.2190346866846085 -0.6654856204986572 1.928493976593018 -0.2274011671543121 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.5218953490257263 1.94102954864502 -0.2190346866846085 -0.6654856204986572 1.928493976593018 -0.2274011671543121 0.6571467518806458 1.923238515853882 -0.2399222552776337 0.514404296875 1.933063864707947 -0.2274011671543121 0.514404296875 1.933063864707947 -0.2274011671543121 0.6571467518806458 1.923238515853882 -0.2399222552776337 -0.7566525936126709 1.876231789588928 -0.2546918988227844 -0.7566525936126709 1.876231789588928 -0.2546918988227844 0.7498206496238709 1.877334475517273 -0.2694616913795471 0.7498206496238709 1.877334475517273 -0.2694616913795471 -0.7765578627586365 1.868226766586304 -0.2822587192058563 -0.7765578627586365 1.868226766586304 -0.2822587192058563 0.802716851234436 1.848336219787598 -0.2185902446508408 0.802716851234436 1.848336219787598 -0.2185902446508408 0.8089143037796021 1.851444840431213 -0.2270529717206955 0.8089143037796021 1.851444840431213 -0.2270529717206955 0.8114292621612549 1.853061437606812 -0.239716961979866 0.8114292621612549 1.853061437606812 -0.239716961979866 0.8130461573600769 1.853911638259888 -0.2546553909778595 0.8130461573600769 1.853911638259888 -0.2546553909778595 0.8114292621612549 1.853061437606812 -0.2695942223072052 0.8114292621612549 1.853061437606812 -0.2695942223072052 0.8089143037796021 1.851444840431213 -0.2822587192058563 0.8089143037796021 1.851444840431213 -0.2822587192058563 0.802716851234436 1.848336219787598 -0.2907206118106842 0.802716851234436 1.848336219787598 -0.2907206118106842 0.514404296875 1.950429439544678 -0.216096967458725 0.6607614159584045 1.94563889503479 -0.216096967458725 0.6607614159584045 1.94563889503479 -0.216096967458725 0.514404296875 1.950429439544678 -0.216096967458725 0.7945891618728638 1.844061851501465 -0.2936926782131195 0.7945891618728638 1.844061851501465 -0.2936926782131195 -0.792536735534668 1.838940620422363 -0.2907206118106842 -0.792536735534668 1.838940620422363 -0.2907206118106842 -0.802080512046814 1.844061851501465 -0.2156186848878861 -0.802080512046814 1.844061851501465 -0.2156186848878861 -0.7926220297813416 1.87386691570282 -0.2156186848878861 -0.7926220297813416 1.87386691570282 -0.2156186848878861 -0.7710930705070496 1.897564053535461 -0.216096967458725 -0.7710930705070496 1.897564053535461 -0.216096967458725 -0.6667550802230835 1.936360359191895 -0.2190346866846085 -0.6667550802230835 1.936360359191895 -0.2190346866846085 0.6579948663711548 1.928493976593018 -0.2274011671543121 0.514404296875 1.94102954864502 -0.2190346866846085 0.514404296875 1.94102954864502 -0.2190346866846085 0.6579948663711548 1.928493976593018 -0.2274011671543121 -0.757311999797821 1.877334475517273 -0.2399222552776337 -0.757311999797821 1.877334475517273 -0.2399222552776337 0.7491613626480103 1.876231789588928 -0.2546918988227844 0.7491613626480103 1.876231789588928 -0.2546918988227844 -0.7716328501701355 1.866497397422791 -0.2695942223072052 -0.7716328501701355 1.866497397422791 -0.2695942223072052 0.7690663933753967 1.868226766586304 -0.2822587192058563 0.7690663933753967 1.868226766586304 -0.2822587192058563 0.7945891618728638 1.844061851501465 -0.2156186848878861 0.7945891618728638 1.844061851501465 -0.2156186848878861 0.785130500793457 1.87386691570282 -0.2156186848878861 0.785130500793457 1.87386691570282 -0.2156186848878861 0.7636018991470337 1.897564053535461 -0.216096967458725 0.7636018991470337 1.897564053535461 -0.216096967458725 0.659264087677002 1.936360359191895 -0.2190346866846085 0.659264087677002 1.936360359191895 -0.2190346866846085 0.7850460410118103 1.838940620422363 -0.2907206118106842 0.7850460410118103 1.838940620422363 -0.2907206118106842 -0.8062112331390381 1.823601245880127 -0.2790639102458954 -0.8062112331390381 1.823601245880127 -0.2790639102458954 -0.8124768733978272 1.826184034347534 -0.2772038877010346 -0.8124768733978272 1.826184034347534 -0.2772038877010346 -0.8177905082702637 1.828371405601502 -0.2719063758850098 -0.8177905082702637 1.828371405601502 -0.2719063758850098 -0.8213410377502441 1.829832553863525 -0.2639782726764679 -0.8213410377502441 1.829832553863525 -0.2639782726764679 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8177905082702637 1.828371405601502 -0.2373465597629547 -0.8177905082702637 1.828371405601502 -0.2373465597629547 -0.8124768733978272 1.826184034347534 -0.2320491224527359 -0.8124768733978272 1.826184034347534 -0.2320491224527359 -0.8062112331390381 1.823601245880127 -0.2301888763904572 -0.8062112331390381 1.823601245880127 -0.2301888763904572 -0.7653849124908447 1.889186143875122 -0.2190346866846085 -0.7653849124908447 1.889186143875122 -0.2190346866846085 -0.7605457901954651 1.882081866264343 -0.2274011671543121 -0.7605457901954651 1.882081866264343 -0.2274011671543121 0.7498206496238709 1.877334475517273 -0.2399222552776337 0.7498206496238709 1.877334475517273 -0.2399222552776337 -0.769903838634491 1.865890741348267 -0.2546553909778595 -0.769903838634491 1.865890741348267 -0.2546553909778595 0.7641419172286987 1.866497397422791 -0.2695942223072052 0.7641419172286987 1.866497397422791 -0.2695942223072052 -0.7873572707176209 1.836227893829346 -0.2822587192058563 -0.7873572707176209 1.836227893829346 -0.2822587192058563 0.7987200021743774 1.823601245880127 -0.2301888763904572 0.7987200021743774 1.823601245880127 -0.2301888763904572 0.8049858808517456 1.826184034347534 -0.2320491224527359 0.8049858808517456 1.826184034347534 -0.2320491224527359 0.8102995157241821 1.828371405601502 -0.2373465597629547 0.8102995157241821 1.828371405601502 -0.2373465597629547 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8138501644134522 1.829832553863525 -0.2639782726764679 0.8138501644134522 1.829832553863525 -0.2639782726764679 0.8102995157241821 1.828371405601502 -0.2719063758850098 0.8102995157241821 1.828371405601502 -0.2719063758850098 0.8049858808517456 1.826184034347534 -0.2772038877010346 0.8049858808517456 1.826184034347534 -0.2772038877010346 0.7578940391540527 1.889186143875122 -0.2190346866846085 0.7578940391540527 1.889186143875122 -0.2190346866846085 0.7987200021743774 1.823601245880127 -0.2790639102458954 0.7987200021743774 1.823601245880127 -0.2790639102458954 -0.7999439239501953 1.821020245552063 -0.2772038877010346 -0.7999439239501953 1.821020245552063 -0.2772038877010346 -0.7999439239501953 1.821020245552063 -0.2320491224527359 -0.7999439239501953 1.821020245552063 -0.2320491224527359 -0.792536735534668 1.838940620422363 -0.2185902446508408 -0.792536735534668 1.838940620422363 -0.2185902446508408 -0.7839280962944031 1.870815515518189 -0.2185902446508408 -0.7839280962944031 1.870815515518189 -0.2185902446508408 0.7530544996261597 1.882081866264343 -0.2274011671543121 0.7530544996261597 1.882081866264343 -0.2274011671543121 -0.7716328501701355 1.866497397422791 -0.239716961979866 -0.7716328501701355 1.866497397422791 -0.239716961979866 0.762412965297699 1.865890741348267 -0.2546553909778595 0.762412965297699 1.865890741348267 -0.2546553909778595 -0.7827526926994324 1.833805084228516 -0.2695942223072052 -0.7827526926994324 1.833805084228516 -0.2695942223072052 0.7798661589622498 1.836227893829346 -0.2822587192058563 0.7798661589622498 1.836227893829346 -0.2822587192058563 0.7924529314041138 1.821020245552063 -0.2320491224527359 0.7924529314041138 1.821020245552063 -0.2320491224527359 0.7850460410118103 1.838940620422363 -0.2185902446508408 0.7850460410118103 1.838940620422363 -0.2185902446508408 0.776436984539032 1.870815515518189 -0.2185902446508408 0.776436984539032 1.870815515518189 -0.2185902446508408 0.7924529314041138 1.821020245552063 -0.2772038877010346 0.7924529314041138 1.821020245552063 -0.2772038877010346 -0.8096880912780762 1.815246343612671 -0.2558586299419403 -0.8096880912780762 1.815246343612671 -0.2558586299419403 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8225869536399841 1.830343842506409 -0.2546263933181763 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.8213410377502441 1.829832553863525 -0.2452745586633682 -0.7765578627586365 1.868226766586304 -0.2270528525114059 -0.7765578627586365 1.868226766586304 -0.2270528525114059 0.7641419172286987 1.866497397422791 -0.239716961979866 0.7641419172286987 1.866497397422791 -0.239716961979866 -0.7811350226402283 1.832955837249756 -0.2546553909778595 -0.7811350226402283 1.832955837249756 -0.2546553909778595 0.7752613425254822 1.833805084228516 -0.2695942223072052 0.7752613425254822 1.833805084228516 -0.2695942223072052 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2719063758850098 0.8021973371505737 1.815246343612671 -0.2558586299419403 0.8021973371505737 1.815246343612671 -0.2558586299419403 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8138501644134522 1.829832553863525 -0.2452745586633682 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.8150954246520996 1.830343842506409 -0.2546263933181763 0.7690663933753967 1.868226766586304 -0.2270528525114059 0.7690663933753967 1.868226766586304 -0.2270528525114059 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2719063758850098 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7946309447288513 1.818830251693726 -0.2373465597629547 -0.7873572707176209 1.836227893829346 -0.2270528525114059 -0.7873572707176209 1.836227893829346 -0.2270528525114059 -0.7827526926994324 1.833805084228516 -0.239716961979866 -0.7827526926994324 1.833805084228516 -0.239716961979866 0.7736440300941467 1.832955837249756 -0.2546553909778595 0.7736440300941467 1.832955837249756 -0.2546553909778595 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2639782726764679 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7871397137641907 1.818830251693726 -0.2373465597629547 0.7798661589622498 1.836227893829346 -0.2270528525114059 0.7798661589622498 1.836227893829346 -0.2270528525114059 0.7871397137641907 1.818830251693726 -0.2719063758850098 0.7871397137641907 1.818830251693726 -0.2719063758850098 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2639782726764679 -0.7910812497138977 1.81736946105957 -0.2452745586633682 -0.7910812497138977 1.81736946105957 -0.2452745586633682 0.7752613425254822 1.833805084228516 -0.239716961979866 0.7752613425254822 1.833805084228516 -0.239716961979866 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7898352742195129 1.816856741905212 -0.2546263933181763 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2639782726764679 0.7835900783538818 1.81736946105957 -0.2639782726764679 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7898352742195129 1.816856741905212 -0.2546263933181763 -0.7910812497138977 1.81736946105957 -0.2452745586633682 -0.7910812497138977 1.81736946105957 -0.2452745586633682 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7823440432548523 1.816856741905212 -0.2546263933181763 0.7835900783538818 1.81736946105957 -0.2452745586633682 0.7835900783538818 1.81736946105957 -0.2452745586633682</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"988\" source=\"#ID258\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID255\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID259\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"2964\">0.01811380957266693 0.866976891652594 -0.4980190350209233 0.01811380957266693 0.866976891652594 -0.4980190350209233 0.01811380957266693 0.866976891652594 -0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 -0.01811380957266693 -0.866976891652594 0.4980190350209233 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0.01811379250568842 0.866976891920706 -0.4980190351749354 -0.01811379250568842 0.866976891920706 -0.4980190351749354 -0.01811379250568842 0.866976891920706 -0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.01811379250568842 -0.866976891920706 0.4980190351749354 0.0009121131494288234 -0.298310708672215 -0.9544683803778329 0.001614307504300969 -0.5285047862956617 -0.8489287866917099 0.002200289293744457 -0.7196483725656897 -0.6943352062156852 -0.002200289293744457 0.7196483725656897 0.6943352062156852 -0.001614307504300969 0.5285047862956617 0.8489287866917099 -0.0009121131494288234 0.298310708672215 0.9544683803778329 0.03884761246150546 0.2980925397878077 -0.9537461406102229 0.03884761246150546 0.2980925397878077 -0.9537461406102229 0.03884761246150546 0.2980925397878077 -0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 -0.03884761246150546 -0.2980925397878077 0.9537461406102229 1 0 0 -1 -0 -0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.002552514391934026 -0.8355289377748245 -0.5494405143517835 -0.002552514391934026 0.8355289377748245 0.5494405143517835 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 -0.03884757590221215 0.2980925402118107 -0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 0.03884757590221215 -0.2980925402118107 0.9537461419668193 -0.0009121122897470495 -0.298310708672449 -0.9544683803785813 -0.002200287232821748 -0.719648376781204 -0.694335201853018 -0.001614305981759535 -0.5285047859663513 -0.8489287868996188 0.001614305981759535 0.5285047859663513 0.8489287868996188 0.002200287232821748 0.719648376781204 0.694335201853018 0.0009121122897470495 0.298310708672449 0.9544683803785813 0.8320403846287647 6.728158019358152e-006 -0.5547150604603675 0.8055737206021635 -0.334860110908844 -0.4887941149372647 0.8320394359021639 1.297833282873577e-005 -0.5547164833815306 -0.8320394359021639 -1.297833282873577e-005 0.5547164833815306 -0.8055737206021635 0.334860110908844 0.4887941149372647 -0.8320403846287647 -6.728158019358152e-006 0.5547150604603675 0.8055816010006706 0.3348440792358995 -0.4887921099300389 0.8116067224060802 0.2934437497667821 -0.5051586818694401 -0.8116067224060802 -0.2934437497667821 0.5051586818694401 -0.8055816010006706 -0.3348440792358995 0.4887921099300389 0.002648263323064338 -0.867050619351959 -0.4982130168740636 0.002648263323064338 -0.867050619351959 -0.4982130168740636 0.002648263323064338 -0.867050619351959 -0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 -0.002648263323064338 0.867050619351959 0.4982130168740636 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.3338427968763195 -0.8115972051705556 -0.4794360891017068 0.002949635041474276 -0.9653555796487164 -0.2609212611003802 -0.002949635041474276 0.9653555796487164 0.2609212611003802 -0.3338427968763195 0.8115972051705556 0.4794360891017068 -0.002552511986482694 -0.835528937878214 -0.5494405142057348 0.002552511986482694 0.835528937878214 0.5494405142057348 -0.8055939915198626 0.3348349516607002 -0.4887779413736592 -0.8320507220387324 1.297809478051873e-005 -0.5546995545215382 -0.8116189586545295 0.2934350227654479 -0.505144091687885 0.8116189586545295 -0.2934350227654479 0.505144091687885 0.8320507220387324 -1.297809478051873e-005 0.5546995545215382 0.8055939915198626 -0.3348349516607002 0.4887779413736592 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 -0.002648260827047659 -0.8670506193576903 -0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 0.002648260827047659 0.8670506193576903 0.4982130168773568 -0.8055861114285355 -0.334850983396517 -0.4887799463887985 -0.8320516707037028 6.727990467320525e-006 -0.5546981316300886 0.8320516707037028 -6.727990467320525e-006 0.5546981316300886 0.8055861114285355 0.334850983396517 0.4887799463887985 0.5466316485213796 -0.6118596425677951 -0.5716831453100651 -0.5466316485213796 0.6118596425677951 0.5716831453100651 0.7649780016593277 0.5278720251009558 -0.368998349715981 -0.7649780016593277 -0.5278720251009558 0.368998349715981 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -0.002212084448621615 0.7242674441303389 -0.6895156097256238 -0.002214140911835727 0.7242053730320672 -0.6895807967537286 -0.002553587655163572 0.8355923275804911 -0.5493441009774335 0.002553587655163572 -0.8355923275804911 0.5493441009774335 0.002214140911835727 -0.7242053730320672 0.6895807967537286 0.002212084448621615 -0.7242674441303389 0.6895156097256238 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.1864812486088931 -0.9557434151656247 -0.2275505840133497 0.003055537417817281 -0.9999953318327775 1.934294798560031e-006 -0.003055537417817281 0.9999953318327775 -1.934294798560031e-006 -0.1864812486088931 0.9557434151656247 0.2275505840133497 -0.3338527455496996 -0.8115943561974748 -0.4794339842745131 -0.002949632261432901 -0.9653555796741683 -0.2609212610376411 0.002949632261432901 0.9653555796741683 0.2609212610376411 0.3338527455496996 0.8115943561974748 0.4794339842745131 -0.7649920390725676 0.5278581958797434 -0.3689890312708192 0.7649920390725676 -0.5278581958797434 0.3689890312708192 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 0.002214138825010872 0.7242053730344722 -0.6895807967579033 0.002212082363703796 0.7242674441336792 -0.6895156097288039 0.002553585248665742 0.8355923276848613 -0.5493441008298652 -0.002553585248665742 -0.8355923276848613 0.5493441008298652 -0.002212082363703796 -0.7242674441336792 0.6895156097288039 -0.002214138825010872 -0.7242053730344722 0.6895807967579033 -0.5466429642130603 -0.6118560606134371 -0.5716761589982258 0.5466429642130603 0.6118560606134371 0.5716761589982258 0 3.868158711756917e-006 -0.9999999999925187 0 3.868158711701378e-006 -0.9999999999925188 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 -0 -3.868158711701378e-006 0.9999999999925188 -0 -3.868158711756917e-006 0.9999999999925187 0 0.5281572825815556 -0.8491465626475012 0 0.5281572825815556 -0.8491465626475013 -0 -0.5281572825815556 0.8491465626475013 -0 -0.5281572825815556 0.8491465626475012 0 0.8356446321585987 -0.5492704695726142 0 0.8356446321585989 -0.5492704695726142 -0 -0.8356446321585989 0.5492704695726142 -0 -0.8356446321585987 0.5492704695726142 0.7568791977856552 0.5590129755901407 -0.3385828895281033 -0.7568791977856552 -0.5590129755901407 0.3385828895281033 -0.002554155191691176 0.8357993912333664 -0.5490290100761444 0.002554155191691176 -0.8357993912333664 0.5490290100761444 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.1661060322011099 -0.9860944486220339 -0.005150190599470763 0.002949694936965429 -0.9653554352628204 0.2609217946211268 -0.002949694936965429 0.9653554352628204 -0.2609217946211268 -0.1661060322011099 0.9860944486220339 0.005150190599470763 -0.1864880322547073 -0.9557422919471569 -0.2275497422748767 -0.003055534537986922 -0.999995331841577 1.934293567479863e-006 0.003055534537986922 0.999995331841577 -1.934293567479863e-006 0.1864880322547073 0.9557422919471569 0.2275497422748767 0.2862877336281036 -0.8697972039015308 -0.401860868534326 -0.2862877336281036 0.8697972039015308 0.401860868534326 -2.019804105832881e-017 0.835644632158599 -0.5492704695726142 -1.504631385858392e-017 0.5281572825815555 -0.8491465626475012 -5.394652787860109e-018 0.8356446321585987 -0.5492704695726142 5.394652787860109e-018 -0.8356446321585987 0.5492704695726142 1.504631385858392e-017 -0.5281572825815555 0.8491465626475012 2.019804105832881e-017 -0.835644632158599 0.5492704695726142 -0.7568933467921767 0.5589992110197796 -0.3385739855053869 0.7568933467921767 -0.5589992110197796 0.3385739855053869 0 3.86815871177543e-006 -0.9999999999925187 0 0.5281572825815556 -0.8491465626475012 -0 -0.5281572825815556 0.8491465626475012 -0 -3.86815871177543e-006 0.9999999999925187 -1 0 0 1 -0 -0 0.002554152784050285 0.8357993911402223 -0.5490290102291404 -0.002554152784050285 -0.8357993911402223 0.5490290102291404 0 -0.2983734121066879 -0.9544492165368531 0 3.868158711756917e-006 -0.9999999999925187 -0 -3.868158711756917e-006 0.9999999999925187 -0 0.2983734121066879 0.9544492165368531 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 0 0.965359471880244 -0.2609235329576394 -0 -0.965359471880244 0.2609235329576394 0.7268825143436041 0.6607398573687157 -0.1872555772891412 -0.7268825143436041 -0.6607398573687157 0.1872555772891412 -0.002950127160059584 0.9653490900268844 -0.2609452646322702 0.002950127160059584 -0.9653490900268844 0.2609452646322702 -0.002949448796250568 0.9653929382102103 -0.26078300482519 0.002949448796250568 -0.9653929382102103 0.26078300482519 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.2007501489671204 -0.951725343973551 0.232203030402501 0.002552997604157791 -0.8355269595520708 0.5494435203593774 -0.002552997604157791 0.8355269595520708 -0.5494435203593774 -0.2007501489671204 0.951725343973551 -0.232203030402501 -0.1661127803645202 -0.9860933108704654 -0.005150384072321964 -0.002949692156861799 -0.9653554352876221 0.2609217945607945 0.002949692156861799 0.9653554352876221 -0.2609217945607945 0.1661127803645202 0.9860933108704654 0.005150384072321964 0.1724465557830786 -0.9617809931350786 -0.2126958077693477 -0.1724465557830786 0.9617809931350786 0.2126958077693477 -0.2862975662683983 -0.8697944662238237 -0.4018597890747538 0.2862975662683983 0.8697944662238237 0.4018597890747538 0 -0.8667445901319661 -0.4987522586184146 -0 0.8667445901319661 0.4987522586184146 4.409748279020684e-018 0.965359471880244 -0.2609235329576394 -4.409748279020684e-018 -0.965359471880244 0.2609235329576394 -0.7268976426489947 0.6607244087997335 -0.1872513624184803 0.7268976426489947 -0.6607244087997335 0.1872513624184803 -1 0 0 1 -0 -0 0.002950124379610544 0.965349090051797 -0.2609452645715427 0.002949446016322907 0.9653929382009268 -0.2607830048909988 -0.002949446016322907 -0.9653929382009268 0.2607830048909988 -0.002950124379610544 -0.965349090051797 0.2609452645715427 0 -0.2983734121066879 -0.9544492165368531 -0 0.2983734121066879 0.9544492165368531 -0.8320362498070469 -8.063598776771518e-006 -0.5547212623849964 -0.803978066699777 -0.3441521864512067 -0.4849521015796744 -0.8320371287516315 -3.026124632421247e-006 -0.5547199440885313 0.8320371287516315 3.026124632421247e-006 0.5547199440885313 0.803978066699777 0.3441521864512067 0.4849521015796744 0.8320362498070469 8.063598776771518e-006 0.5547212623849964 -0.8055654191382256 0.3348837302659184 -0.4887916147928875 -0.8116036193285674 0.2934593149064727 -0.5051546254241303 0.8116036193285674 -0.2934593149064727 0.5051546254241303 0.8055654191382256 -0.3348837302659184 0.4887916147928875 -0.7568503463297163 0.5590451464084897 -0.3385942668411544 -0.7649953272105627 0.5278527817531871 -0.3689899594046245 0.7649953272105627 -0.5278527817531871 0.3689899594046245 0.7568503463297163 -0.5590451464084897 0.3385942668411544 -0.7249140961405115 0.6675523157258524 -0.1699219202629169 -0.7268914757574545 0.6607266118067573 -0.1872675276750152 0.7268914757574545 -0.6607266118067573 0.1872675276750152 0.7249140961405115 -0.6675523157258524 0.1699219202629169 0 0.965359471880244 -0.2609235329576393 -0 -0.965359471880244 0.2609235329576393 0.7249272079121237 0.667543496065336 -0.169900630044745 -0.7249272079121237 -0.667543496065336 0.169900630044745 -0.003055185258789919 0.9999953329104274 6.309564516309169e-007 0.003055185258789919 -0.9999953329104274 -6.309564516309169e-007 -0.003055193244397305 0.9999953328861547 3.846450991081987e-007 0.003055193244397305 -0.9999953328861547 -3.846450991081987e-007 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.396242401047364 -0.8263973975146813 0.400074119374375 0.00161200203617746 -0.5277742081911482 0.8493831800887288 -0.00161200203617746 0.5277742081911482 -0.8493831800887288 -0.396242401047364 0.8263973975146813 -0.400074119374375 -0.2007576106584453 -0.951724024483904 0.2322019874653813 -0.002552995198272918 -0.8355269596566859 0.5494435202114703 0.002552995198272918 0.8355269596566859 -0.5494435202114703 0.2007576106584453 0.951724024483904 -0.2322019874653813 0.1616196621128437 -0.9868424115335599 0.00459778393993502 -0.1616196621128437 0.9868424115335599 -0.00459778393993502 -0.1724535429730829 -0.9617797362109177 -0.2126958263109286 0.1724535429730829 0.9617797362109177 0.2126958263109286 -0.3357453554640401 -0.8484485168976997 -0.4091578796240137 0.3357453554640401 0.8484485168976997 0.4091578796240137 2.37852513665284e-017 -0.8667445901319661 -0.4987522586184147 -2.37852513665284e-017 0.8667445901319661 0.4987522586184147 0.7650013428316465 0.5278468550956063 -0.3689859659004064 0.7249205833962374 0.6675457238996612 -0.1699201408654548 0.7268979590519979 0.6607199911880276 -0.1872657212907171 -0.7268979590519979 -0.6607199911880276 0.1872657212907171 -0.7249205833962374 -0.6675457238996612 0.1699201408654548 -0.7650013428316465 -0.5278468550956063 0.3689859659004064 1.464501951309081e-018 0.965359471880244 -0.2609235329576394 -1.464501951309081e-018 -0.965359471880244 0.2609235329576394 0.8116088634042136 0.2934555747505147 -0.5051483727495967 0.7568564105892773 0.5590392475553451 -0.3385904509029589 -0.7568564105892773 -0.5590392475553451 0.3385904509029589 -0.8116088634042136 -0.2934555747505147 0.5051483727495967 -0.7249423445682703 0.6675281145621809 -0.1698964782475471 0.7249423445682703 -0.6675281145621809 0.1698964782475471 0.8320419656509712 -3.026103993012759e-006 -0.554712689044077 0.8055707295559194 0.3348798184281762 -0.4887855428429281 -0.8055707295559194 -0.3348798184281762 0.4887855428429281 -0.8320419656509712 3.026103993012759e-006 0.554712689044077 -1 0 0 1 -0 -0 0.003055190364844028 0.9999953328949524 3.846453285500369e-007 0.003055182379244019 0.9999953329192248 6.309566859035713e-007 -0.003055182379244019 -0.9999953329192248 -6.309566859035713e-007 -0.003055190364844028 -0.9999953328949524 -3.846453285500369e-007 0.8039834668812202 -0.344147818365849 -0.4849462486664688 0.8320410867311748 -8.063554250222519e-006 -0.554714007328267 -0.8320410867311748 8.063554250222519e-006 0.554714007328267 -0.8039834668812202 0.344147818365849 0.4849462486664688 -0.7664487854284114 -0.4050337947265615 -0.4985016393601074 0.7664487854284114 0.4050337947265615 0.4985016393601074 -0.7205240482818297 0.6934070339913934 -0.00563746918592094 0.7205240482818297 -0.6934070339913934 0.00563746918592094 0 0.9992983021790191 -0.03745535024705565 -0 -0.9992983021790191 0.03745535024705565 0.7193380553647977 0.6943244888794296 -0.02159319907541268 -0.7193380553647977 -0.6943244888794296 0.02159319907541268 0.7289093500560232 0.684238699561087 -0.02255130647786537 -0.7289093500560232 -0.684238699561087 0.02255130647786537 -0.002949335473584697 0.9653475938150504 0.2609508086512788 0.002949335473584697 -0.9653475938150504 -0.2609508086512788 -0.002950301896304013 0.9653916081025115 0.2607879190529493 0.002950301896304013 -0.9653916081025115 -0.2607879190529493 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0.001615094735668822 -0.5285024120461672 0.8489302632904412 -8.857905654529529e-007 0.000536850303038527 0.9999998558954735 8.857905654529529e-007 -0.000536850303038527 -0.9999998558954735 -0.001615094735668822 0.5285024120461672 -0.8489302632904412 -0.3962520963852381 -0.8263937323002769 0.4000720876606143 -0.001612000517827052 -0.5277742085236129 0.8493831798850298 0.001612000517827052 0.5277742085236129 -0.8493831798850298 0.3962520963852381 0.8263937323002769 -0.4000720876606143 0.2520181699357093 -0.9561763662848922 0.1490422711195572 -0.2520181699357093 0.9561763662848922 -0.1490422711195572 -0.1616261657716915 -0.9868413456543232 0.004597939223866884 0.1616261657716915 0.9868413456543232 -0.004597939223866884 -0.1962426981760692 -0.9534546635626248 -0.2289388738140783 0.1962426981760692 0.9534546635626248 0.2289388738140783 0.3357496371242677 -0.8484470727281261 -0.4091573608649813 -0.3357496371242677 0.8484470727281261 0.4091573608649813 2.37852513665284e-017 -0.8667445901319661 -0.4987522586184147 -2.37852513665284e-017 0.8667445901319661 0.4987522586184147 0.7205305897862324 0.6934002366019171 -0.005637469530682406 -0.7205305897862324 -0.6934002366019171 0.005637469530682406 4.575417561731639e-018 0.9992983021790192 -0.03745535024705565 -4.575417561731639e-018 -0.9992983021790192 0.03745535024705565 -0.7193533642005128 0.6943086462472908 -0.0215926181751677 0.7193533642005128 -0.6943086462472908 0.0215926181751677 -1 0 0 1 -0 -0 0.002950299115588007 0.9653916080934859 0.2607879191178184 0.002949332693869268 0.9653475938402066 0.2609508085896353 -0.002949332693869268 -0.9653475938402066 -0.2609508085896353 -0.002950299115588007 -0.9653916080934859 -0.2607879191178184 -0.7289242112690209 0.6842228763809267 -0.02255104571515598 0.7289242112690209 -0.6842228763809267 0.02255104571515598 0.7664546770341747 -0.4050299076951926 -0.49849573912408 -0.7664546770341747 0.4050299076951926 0.49849573912408 -0.0002797592049493041 0.006263672890302613 -0.9999803438751738 -0.01106566094474254 0.03668599928103868 -0.9992655746119784 0.01697730248933885 -0.524390261730718 -0.8513087715994557 -0.01697730248933885 0.524390261730718 0.8513087715994557 0.01106566094474254 -0.03668599928103868 0.9992655746119784 0.0002797592049493041 -0.006263672890302613 0.9999803438751738 -0.01780721153823865 0.5319665183544828 -0.8465781278576965 -0.1264676245001224 0.5355571030882171 -0.8349757656872761 0.1264676245001224 -0.5355571030882171 0.8349757656872761 0.01780721153823865 -0.5319665183544828 0.8465781278576965 -0.1893315825615171 0.8206660561074328 -0.5391296469290327 -0.02822700821874184 0.8365546736574295 -0.547155840678806 0.02822700821874184 -0.8365546736574295 0.547155840678806 0.1893315825615171 -0.8206660561074328 0.5391296469290327 -0.03272715821418405 0.9650613597744062 -0.2599721234778792 -0.2155343565998912 0.9421998252081087 -0.2565237425714823 0.2155343565998912 -0.9421998252081087 0.2565237425714823 0.03272715821418405 -0.9650613597744062 0.2599721234778792 -0.2228877374193605 0.9748440975020174 0.0002051183931693147 -0.03389589443880784 0.9994253687680178 -2.455819977344632e-005 0.03389589443880784 -0.9994253687680178 2.455819977344632e-005 0.2228877374193605 -0.9748440975020174 -0.0002051183931693147 -0.7301198465623731 0.6832725967623803 -0.007972964902108899 0.7301198465623731 -0.6832725967623803 0.007972964902108899 2.068868811079841e-018 0.9992983021790191 -0.03745535024705565 -2.068868811079841e-018 -0.9992983021790191 0.03745535024705565 0.7678778063303926 0.6369896413553908 0.06788130339905686 -0.7678778063303926 -0.6369896413553908 -0.06788130339905686 0.8092178749763873 0.5804623039637544 0.09071904152816923 -0.8092178749763873 -0.5804623039637544 -0.09071904152816923 -0.002553622612297775 0.8355937385993449 0.549341954546641 0.002553622612297775 -0.8355937385993449 -0.549341954546641 -0.002554286917194058 0.8358000414649245 0.5490280195997059 0.002554286917194058 -0.8358000414649245 -0.5490280195997059 -1 0 0 1 -0 -0 1.481633289449374e-006 -0.0005762421340112978 0.9999998339713901 -0.001613847109763359 0.5284751012949722 0.848947267389898 0.001613847109763359 -0.5284751012949722 -0.848947267389898 -1.481633289449374e-006 0.0005762421340112978 -0.9999998339713901 8.857880502895044e-007 0.0005368497562072896 0.999999855895767 -0.001615093212392778 -0.5285024117156749 0.8489302634990876 0.001615093212392778 0.5285024117156749 -0.8489302634990876 -8.857880502895044e-007 -0.0005368497562072896 -0.999999855895767 0.4929489107293522 -0.8475429605278416 0.1966527433585581 0.9533497854571083 -0.2073605654130637 0.2193758931160399 -0.9533497854571083 0.2073605654130637 -0.2193758931160399 -0.4929489107293522 0.8475429605278416 -0.1966527433585581 -0.2520271808283023 -0.9561738850512725 0.149042952432157 0.2520271808283023 0.9561738850512725 -0.149042952432157 -0.1616277778155193 -0.9868408232939524 0.004653054795648724 0.1616277778155193 0.9868408232939524 -0.004653054795648724 0.1962459009082128 -0.9534539725555282 -0.2289390062763575 -0.1962459009082128 0.9534539725555282 0.2289390062763575 -0.2777561620133268 -0.830283889877445 -0.4831978649307193 0.2777561620133268 0.830283889877445 0.4831978649307193 0.03389580203817755 0.9994253719014018 -2.457505460847512e-005 0.03272706690551168 0.965061366334949 -0.2599721106185886 0.2228865655285466 0.9748443654123843 0.0002052574352880103 -0.2228865655285466 -0.9748443654123843 -0.0002052574352880103 -0.03272706690551168 -0.965061366334949 0.2599721106185886 -0.03389580203817755 -0.9994253719014018 2.457505460847512e-005 0.730126241693922 0.6832657653076124 -0.007972775458476284 -0.730126241693922 -0.6832657653076124 0.007972775458476284 0.02822692769022931 0.8365546646967691 -0.5471558585332399 0.2155368156360248 0.9421992683628976 -0.2565237217138076 -0.2155368156360248 -0.9421992683628976 0.2565237217138076 -0.02822692769022931 -0.8365546646967691 0.5471558585332399 6.123228085551975e-019 0.9992983021790191 -0.03745535024705565 -6.123228085551975e-019 -0.9992983021790191 0.03745535024705565 0.01780718905203821 0.5319665044789665 -0.846578137049673 0.1893315178785763 0.8206639692342971 -0.5391328462803978 -0.1893315178785763 -0.8206639692342971 0.5391328462803978 -0.01780718905203821 -0.5319665044789665 0.846578137049673 0.0002797632041481558 0.00626367289098501 -0.9999803438740506 0.126465024024466 0.5355555057194289 -0.8349771841146907 -0.126465024024466 -0.5355555057194289 0.8349771841146907 -0.0002797632041481558 -0.00626367289098501 0.9999803438740506 0.00255362020575763 0.8355937387029213 0.5493419544002797 0.002554284509427913 0.8358000413710054 0.5490280197538832 -0.002554284509427913 -0.8358000413710054 -0.5490280197538832 -0.00255362020575763 -0.8355937387029213 -0.5493419544002797 -0.8092297345050434 0.5804462092470282 0.09071623318707789 -0.7678918164356939 0.6369729306543241 0.06787962775923269 0.7678918164356939 -0.6369729306543241 -0.06787962775923269 0.8092297345050434 -0.5804462092470282 -0.09071623318707789 -0.01697729557675344 -0.5243902633278786 -0.8513087707534898 0.01106592119690006 0.03668641810883589 -0.9992655563534688 -0.01106592119690006 -0.03668641810883589 0.9992655563534688 0.01697729557675344 0.5243902633278786 0.8513087707534898 0.1184825435448558 -0.4899915571089545 -0.8636377486174882 -0.1184825435448558 0.4899915571089545 0.8636377486174882 -0.2167209968464306 0.9418398285204125 0.256845764883382 0.2167209968464306 -0.9418398285204125 -0.256845764883382 -0.7802832047922998 0.6145788157087936 0.1159784445534376 0.7802832047922998 -0.6145788157087936 -0.1159784445534376 8.335971109177908e-018 0.9965072187388201 0.08350666441321454 -8.335971109177908e-018 -0.9965072187388201 -0.08350666441321454 6.602877351672787e-018 0.9965072187388201 0.08350666441321454 -6.602877351672787e-018 -0.9965072187388201 -0.08350666441321454 0.91484729386902 0.3766843762805661 0.1454761477584959 -0.91484729386902 -0.3766843762805661 -0.1454761477584959 0.9380738936174975 0.3098261895273916 0.1550003303101148 -0.9380738936174975 -0.3098261895273916 -0.1550003303101148 -0.001613329526401327 0.5278221017331963 0.8493534164820853 0.001613329526401327 -0.5278221017331963 -0.8493534164820853 0.001613845587672781 0.5284751009650505 0.84894726759817 -1.481630220660002e-006 -0.0005762415874944916 0.9999998339717051 1.481630220660002e-006 0.0005762415874944916 -0.9999998339717051 -0.001613845587672781 -0.5284751009650505 -0.84894726759817 0.9712365635796946 -0.1527066280144715 0.1827025542414654 0.9819609856057684 -0.008174300589236617 0.1889068647721009 -0.9819609856057684 0.008174300589236617 -0.1889068647721009 -0.9712365635796946 0.1527066280144715 -0.1827025542414654 -0.4929567288601705 -0.8475387800870704 0.1966511625188134 -0.9533535455219041 -0.2073525445156425 0.2193671341010386 0.9533535455219041 0.2073525445156425 -0.2193671341010386 0.4929567288601705 0.8475387800870704 -0.1966511625188134 -0.1605110079563473 -0.9819532101403307 0.1000205449892033 0.1605110079563473 0.9819532101403307 -0.1000205449892033 0.1616305651411281 -0.9868403664580093 0.004653121659863324 -0.1616305651411281 0.9868403664580093 -0.004653121659863324 -0.1621884459272584 -0.9565899097374314 -0.2421376728149378 0.1621884459272584 0.9565899097374314 0.2421376728149378 0.2777603923494519 -0.830283070778745 -0.4831968406561615 -0.2777603923494519 0.830283070778745 0.4831968406561615 0.2167232423485981 0.9418394466154173 0.2568452705912165 -0.2167232423485981 -0.9418394466154173 -0.2568452705912165 0.7802889215868538 0.6145718648083991 0.1159768159364256 -0.7802889215868538 -0.6145718648083991 -0.1159768159364256 1.030934398677886e-018 0.9965072187388201 0.08350666441321455 -1.030934398677886e-018 -0.9965072187388201 -0.08350666441321455 0.001613328006849522 0.5278221020668691 0.849353416277614 -0.001613328006849522 -0.5278221020668691 -0.849353416277614 -0.9380787959196464 0.3098143672477748 0.1549942918071744 -0.9148539408133669 0.3766702869387026 0.1454708284013264 0.9148539408133669 -0.3766702869387026 -0.1454708284013264 0.9380787959196464 -0.3098143672477748 -0.1549942918071744 0 0.9965072187388201 0.08350666441321455 -0 -0.9965072187388201 -0.08350666441321455 -0.1184820905555187 -0.4899930899273966 -0.8636369411048811 0.1184820905555187 0.4899930899273966 0.8636369411048811 -0.02157256374809401 0.0304730294347691 -0.999302766417867 0.02157256374809401 -0.0304730294347691 0.999302766417867 -0.3265606669319467 0.4195619864804518 -0.8469509255638955 0.3265606669319467 -0.4195619864804518 0.8469509255638955 -0.5261526271735196 0.6463451952757038 -0.5526312527014876 0.5261526271735196 -0.6463451952757038 0.5526312527014876 -0.6183152130251024 0.7380156723353358 -0.2702205853171522 0.6183152130251024 -0.7380156723353358 0.2702205853171522 -0.6410526923499644 0.7674968419890563 -0.0002077683496633954 0.6410526923499644 -0.7674968419890563 0.0002077683496633954 -0.6090258531602395 0.7488508500734324 0.261361654660243 0.6090258531602395 -0.7488508500734324 -0.261361654660243 -0.0325679263279658 0.9650796482741636 0.2599242248458434 0.0325679263279658 -0.9650796482741636 -0.2599242248458434 -0.8206302163431705 0.5639156656873579 0.09254820374780565 0.8206302163431705 -0.5639156656873579 -0.09254820374780565 3.839672104174279e-018 0.9631331640241506 0.2690251072982375 -3.839672104174279e-018 -0.9631331640241506 -0.2690251072982375 9.873498882604889e-018 0.9631331640241506 0.2690251072982374 -9.873498882604889e-018 -0.9631331640241506 -0.2690251072982374 0.9692092068417504 0.1700562954552146 0.1780852878517311 -0.9692092068417504 -0.1700562954552146 -0.1780852878517311 0.9755210414545454 0.1339201871436595 0.1744250015188364 -0.9755210414545454 -0.1339201871436595 -0.1744250015188364 0.9820094607551504 0.01516355419712978 0.1882219052381767 -0.9820094607551504 -0.01516355419712978 -0.1882219052381767 -0.9712389984143933 -0.1527002210970489 0.1826949655461758 -0.9819625328217502 -0.008173970839654855 0.1888988362457681 0.9819625328217502 0.008173970839654855 -0.1888988362457681 0.9712389984143933 0.1527002210970489 -0.1826949655461758 -0.02117067087250909 -0.9821148502766945 0.187088811960507 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 0.02117067087250909 0.9821148502766945 -0.187088811960507 0.1605137823074094 -0.981952766035434 0.1000204527320781 -0.1605137823074094 0.981952766035434 -0.1000204527320781 -0.1490552496970033 -0.9888158434479187 -0.00507545900829777 0.1490552496970033 0.9888158434479187 0.00507545900829777 0.1621914928617083 -0.956589485234327 -0.2421373089435325 -0.1621914928617083 0.956589485234327 0.2421373089435325 0.1992955053068566 -0.8041073521826736 -0.5600827329334965 -0.1992955053068566 0.8041073521826736 0.5600827329334965 0.6090279241513155 0.7488517591937228 0.2613542239115452 -0.6090279241513155 -0.7488517591937228 -0.2613542239115452 0.03256783281309811 0.9650796464246926 0.2599242434299818 -0.03256783281309811 -0.9650796464246926 -0.2599242434299818 0.6410549470182567 0.7674949587243872 -0.0002079328529572579 -0.6410549470182567 -0.7674949587243872 0.0002079328529572579 0.8206353015347579 0.5639084200000258 0.0925472621314709 -0.8206353015347579 -0.5639084200000258 -0.0925472621314709 0.6183164625215473 0.7380178490005961 -0.2702117812593917 -0.6183164625215473 -0.7380178490005961 0.2702117812593917 0.5261603498804544 0.64634501550577 -0.5526241101730215 -0.5261603498804544 -0.64634501550577 0.5526241101730215 0.3265598441620871 0.4195571632132496 -0.8469536321294596 -0.3265598441620871 -0.4195571632132496 0.8469536321294596 -0.9755231142129951 0.1339146232400715 0.1744176806365959 -0.969211805223159 0.1700492026605481 0.1780779191550072 0.969211805223159 -0.1700492026605481 -0.1780779191550072 0.9755231142129951 -0.1339146232400715 -0.1744176806365959 9.873448737266604e-018 0.9631331640241506 0.2690251072982374 0 0.9631331640241506 0.2690251072982374 -0 -0.9631331640241506 -0.2690251072982374 -9.873448737266604e-018 -0.9631331640241506 -0.2690251072982374 0.0215690849119027 0.03046902354634635 -0.9993029636602681 -0.0215690849119027 -0.03046902354634635 0.9993029636602681 0.2891880719699376 -0.3913850132782499 -0.8736063360641876 -0.2891880719699376 0.3913850132782499 0.8736063360641876 -0.5050167113002247 0.6564889884265315 0.5603394769086103 0.5050167113002247 -0.6564889884265315 -0.5603394769086103 -0.1913791141245951 0.8201616641672003 0.5391742569034372 0.1913791141245951 -0.8201616641672003 -0.5391742569034372 -0.889292257498726 0.4269801621608256 0.1638512187136083 0.889292257498726 -0.4269801621608256 -0.1638512187136083 -0.9335688285797957 0.3336606029531335 0.1308428230400855 0.9335688285797957 -0.3336606029531335 -0.1308428230400855 -8.514388587547155e-018 0.7626349109729054 0.6468291834521296 8.514388587547155e-018 -0.7626349109729054 -0.6468291834521296 2.174811445937475e-017 0.7626349109729054 0.6468291834521296 -2.174811445937475e-017 -0.7626349109729054 -0.6468291834521296 -0.9820110045135057 0.01516290704785058 0.188213902951492 0.9820110045135057 -0.01516290704785058 -0.188213902951492 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 0.02117070859153276 -0.9821148264214962 0.1870889329190988 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.02117070859153276 0.9821148264214962 -0.1870889329190988 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.1446250046914288 -0.9707689276932437 0.1915497247278472 0.1446250046914288 0.9707689276932437 -0.1915497247278472 0.1490581853501327 -0.9888154004405476 -0.005075552356619214 -0.1490581853501327 0.9888154004405476 0.005075552356619214 0.2347772550107806 -0.9350487801729239 -0.2656377594144512 -0.2347772550107806 0.9350487801729239 0.2656377594144512 -0.1992967459393751 -0.8041087791459054 -0.5600802427853153 0.1992967459393751 0.8041087791459054 0.5600802427853153 0.5050262873067521 0.656488399991662 0.5603315356157868 -0.5050262873067521 -0.656488399991662 -0.5603315356157868 0.1913782600183198 0.8201595563084797 0.5391777664075532 -0.1913782600183198 -0.8201595563084797 -0.5391777664075532 0.88929565445638 0.4269740989418542 0.163848581921817 -0.88929565445638 -0.4269740989418542 -0.163848581921817 2.43577377835986e-017 0.7626349109729054 0.6468291834521296 3.435253496846114e-017 0.7626349109729055 0.6468291834521296 -3.435253496846114e-017 -0.7626349109729055 -0.6468291834521296 -2.43577377835986e-017 -0.7626349109729054 -0.6468291834521296 0.9335711130046454 0.3336550455237233 0.1308406953506054 -0.9335711130046454 -0.3336550455237233 -0.1308406953506054 -0.289189093827899 -0.3913801532758218 -0.8736081751178803 0.289189093827899 0.3913801532758218 0.8736081751178803 -0.04141091907858467 0.03946780910082173 -0.9983623730018315 0.04141091907858467 -0.03946780910082173 0.9983623730018315 -0.4971166425574662 0.2809862863339101 -0.8209273722959116 0.4971166425574662 -0.2809862863339101 0.8209273722959116 -0.8001393427670355 0.4181600269938953 -0.4300223528850576 0.8001393427670355 -0.4181600269938953 0.4300223528850576 -0.8780942256849145 0.4536487713185636 -0.1521621605392353 0.8780942256849145 -0.4536487713185636 0.1521621605392353 -0.8980461688117551 0.4399009207699547 -0.000508515756603526 0.8980461688117551 -0.4399009207699547 0.000508515756603526 -0.8887363119851522 0.4350413154743655 0.1445227372746709 0.8887363119851522 -0.4350413154743655 -0.1445227372746709 -0.8107133045140261 0.3990345337987951 0.4283869497544556 0.8107133045140261 -0.3990345337987951 -0.4283869497544556 -0.02797389227719448 0.8365633045521014 0.5471556440609309 0.02797389227719448 -0.8365633045521014 -0.5471556440609309 -0.966362969318562 0.1662080634581257 0.1962587352739023 0.966362969318562 -0.1662080634581257 -0.1962587352739023 -0.9729795164130922 0.1604889476513607 0.1659944526853352 0.9729795164130922 -0.1604889476513607 -0.1659944526853352 -2.750518736971893e-017 0.558430223714857 0.8295514964375477 2.750518736971893e-017 -0.558430223714857 -0.8295514964375477 2.750518736971894e-017 0.558430223714857 0.8295514964375479 2.750518736971894e-017 0.558430223714857 0.8295514964375479 -2.750518736971894e-017 -0.558430223714857 -0.8295514964375479 -2.750518736971894e-017 -0.558430223714857 -0.8295514964375479 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 5.474905567463528e-017 -0.3956625616827893 0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -5.474905567463528e-017 0.3956625616827893 -0.9183959588775491 -1.824980513919718e-017 -0.3956625616827893 0.9183959588775491 1.824980513919718e-017 0.3956625616827893 -0.9183959588775491 0 -0.9535520834967369 0.3012281926696639 0 -0.9535520834967369 0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0 0.9535520834967369 -0.3012281926696639 -0.8246482123398324 -0.5384016893806141 0.1734328306775256 -0.8890262365898423 -0.4149202519035402 0.1935808234696932 -0.9686414897692759 -0.1553131039194101 0.1939368558280669 0.9686414897692759 0.1553131039194101 -0.1939368558280669 0.8890262365898423 0.4149202519035402 -0.1935808234696932 0.8246482123398324 0.5384016893806141 -0.1734328306775256 0.1446279629508149 -0.9707684895702872 0.1915497115375567 -0.1446279629508149 0.9707684895702872 -0.1915497115375567 -0.8635611351890751 -0.4640120862153424 0.1973700829331586 0.8635611351890751 0.4640120862153424 -0.1973700829331586 0.2433418509003679 -0.9699402281087456 0.0008351627014749256 -0.2433418509003679 0.9699402281087456 -0.0008351627014749256 -0.2347805683958469 -0.9350476959945108 -0.265638647261802 0.2347805683958469 0.9350476959945108 0.265638647261802 0.4628863340488015 -0.673449561625458 -0.5763696120523182 -0.4628863340488015 0.673449561625458 0.5763696120523182 0.8107124498491226 0.3990398452309895 0.4283836196420935 -0.8107124498491226 -0.3990398452309895 -0.4283836196420935 0.8887334496212473 0.435047673495858 0.1445212002100697 -0.8887334496212473 -0.435047673495858 -0.1445212002100697 0.02797386354473429 0.8365632928830925 0.5471556633710173 -0.02797386354473429 -0.8365632928830925 -0.5471556633710173 0.8980452761152394 0.4399027401971485 -0.0005110911300991234 -0.8980452761152394 -0.4399027401971485 0.0005110911300991234 0.8780938863150243 0.4536512439230808 -0.152156747149835 -0.8780938863150243 -0.4536512439230808 0.152156747149835 0.8001385740484556 0.4181646564270302 -0.4300192814688292 -0.8001385740484556 -0.4181646564270302 0.4300192814688292 0.4971137439881398 0.2809865126027326 -0.8209290500849927 -0.4971137439881398 -0.2809865126027326 0.8209290500849927 0 0.558430223714857 0.8295514964375477 0 0.558430223714857 0.8295514964375477 -0 -0.558430223714857 -0.8295514964375477 -0 -0.558430223714857 -0.8295514964375477 5.501001328179156e-017 0.5584302237148572 0.8295514964375478 -5.501001328179156e-017 -0.5584302237148572 -0.8295514964375478 0.9663641684364211 0.1662051895494593 0.1962552647166763 0.9729804984150213 0.1604860601719533 0.1659914883195547 -0.9729804984150213 -0.1604860601719533 -0.1659914883195547 -0.9663641684364211 -0.1662051895494593 -0.1962552647166763 0.04139812811194069 0.03946047028410003 -0.9983631935692467 -0.04139812811194069 -0.03946047028410003 0.9983631935692467 0.4352840504712 -0.2573443154483981 -0.8627292151722816 -0.4352840504712 0.2573443154483981 0.8627292151722816 -0.4947758603815167 0.2766781834040977 0.8237997516459558 0.4947758603815167 -0.2766781834040977 -0.8237997516459558 -0.3182902998221029 0.4253874815852181 0.8471934699640583 0.3182902998221029 -0.4253874815852181 -0.8471934699640583 -0.1285214720385949 0.5354504412796926 0.8347305290681628 0.1285214720385949 -0.5354504412796926 -0.8347305290681628 -0.01760029184088905 0.5319340583806397 0.8466028509648533 0.01760029184088905 -0.5319340583806397 -0.8466028509648533 -0.9813562345527125 0.003809967870390602 0.1921598944872417 0.9813562345527125 -0.003809967870390602 -0.1921598944872417 -0.9826247484202688 0.01797822488136286 0.1847305800946843 0.9826247484202688 -0.01797822488136286 -0.1847305800946843 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 3.649937044975685e-017 -0.3956625616827893 0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -3.649937044975685e-017 0.3956625616827893 -0.9183959588775492 -0.9723970600012454 -0.1424041971710985 0.1848377730037599 0.9723970600012454 0.1424041971710985 -0.1848377730037599 0.8890296576422765 -0.4149142640270552 0.1935779464178291 0.8246531840080079 -0.5383947946004558 0.1734305949150483 0.9686426244423733 -0.1553103197147293 0.1939334182225955 -0.9686426244423733 0.1553103197147293 -0.1939334182225955 -0.8246531840080079 0.5383947946004558 -0.1734305949150483 -0.8890296576422765 0.4149142640270552 -0.1935779464178291 0.8635652832973482 -0.4640055489693796 0.1973673022797745 -0.8635652832973482 0.4640055489693796 -0.1973673022797745 0.2352902165018025 -0.9353796256116568 0.2640141473654995 0.02641988367814303 -0.8342914698166311 0.5506902333777483 -0.02641988367814303 0.8342914698166311 -0.5506902333777483 -0.2352902165018025 0.9353796256116568 -0.2640141473654995 -0.2433403836998066 -0.9699405959747506 0.000835428618573482 0.2433403836998066 0.9699405959747506 -0.000835428618573482 0.5174644567329831 -0.8184376411384442 -0.2497806309259746 -0.5174644567329831 0.8184376411384442 0.2497806309259746 -0.4628855797423996 -0.6734441282042899 -0.576376566364132 0.4628855797423996 0.6734441282042899 0.576376566364132 0.4947740454005835 0.2766758231917733 0.8238016344115227 -0.4947740454005835 -0.2766758231917733 -0.8238016344115227 0.3182882874077929 0.4253827693621513 0.847196592078132 -0.3182882874077929 -0.4253827693621513 -0.847196592078132 0.128518737747317 0.5354487075508035 0.8347320621792425 -0.128518737747317 -0.5354487075508035 -0.8347320621792425 0.9813569196690418 0.003809901884023064 0.192156396888899 0.9826253879433582 0.01797789724989331 0.1847272101766201 -0.9826253879433582 -0.01797789724989331 -0.1847272101766201 -0.9813569196690418 -0.003809901884023064 -0.192156396888899 0.01760029521255894 0.5319340620057762 0.8466028486170276 -0.01760029521255894 -0.5319340620057762 -0.8466028486170276 -0.4352838388394464 -0.2573442088715797 -0.8627293537404738 0.4352838388394464 0.2573442088715797 0.8627293537404738 -0.1460518413338239 -0.2495440035223013 -0.9572860857387729 0.1460518413338239 0.2495440035223013 0.9572860857387729 -0.6112310483565564 -0.06322878937391613 -0.7889225093247461 0.6112310483565564 0.06322878937391613 0.7889225093247461 -0.8915441330874293 0.08765989438287093 -0.4443701178906702 0.8915441330874293 -0.08765989438287093 0.4443701178906702 -0.9686701625701264 0.1863682952031955 -0.1641492451685955 0.9686701625701264 -0.1863682952031955 0.1641492451685955 -0.979113170918322 0.2033125117858606 0.001192092946436506 0.979113170918322 -0.2033125117858606 -0.001192092946436506 -0.9687439140355221 0.1712184293976954 0.1794978508331603 0.9687439140355221 -0.1712184293976954 -0.1794978508331603 -0.9005329413542803 0.06961919280870038 0.4291778064258139 0.9005329413542803 -0.06961919280870038 -0.4291778064258139 -0.6132342788519511 -0.07787746425893305 0.7860526825865594 0.6132342788519511 0.07787746425893305 -0.7860526825865594 -0.01160717805864078 0.03735978391852368 0.9992344669611213 0.01160717805864078 -0.03735978391852368 -0.9992344669611213 -0.0002750990191358153 0.006169802339054176 0.9999809287479571 0.0002750990191358153 -0.006169802339054176 -0.9999809287479571 0.9723980564127662 -0.1424016814601213 0.1848344691933977 -0.9723980564127662 0.1424016814601213 -0.1848344691933977 0.2021749486814607 -0.8035469111942198 0.5598550273382186 0.01676180795212049 -0.5244277201954837 0.8512899670997793 -0.01676180795212049 0.5244277201954837 -0.8512899670997793 -0.2021749486814607 0.8035469111942198 -0.5598550273382186 -0.2352934458797688 -0.935378697436839 0.2640145577565506 -0.0264198118204032 -0.8342914800161936 0.5506902213729273 0.0264198118204032 0.8342914800161936 -0.5506902213729273 0.2352934458797688 0.935378697436839 -0.2640145577565506 0.5295609180573445 -0.8482711081585763 -0.001166674626152061 -0.5295609180573445 0.8482711081585763 0.001166674626152061 -0.5174623672663363 -0.8184399911235302 -0.2497772595590622 0.5174623672663363 0.8184399911235302 0.2497772595590622 0.6977626942542141 -0.4698759106643299 -0.5406883123246394 -0.6977626942542141 0.4698759106643299 0.5406883123246394 0.6132240363791013 -0.07788204483911553 0.7860602192571512 -0.6132240363791013 0.07788204483911553 -0.7860602192571512 0.9005318544569916 0.06962168370321398 0.4291796829610897 -0.9005318544569916 -0.06962168370321398 -0.4291796829610897 0.9687461451792536 0.1712215384825853 0.1794828430797579 -0.9687461451792536 -0.1712215384825853 -0.1794828430797579 0.9791130567332587 0.2033130864589525 0.001187858993839574 -0.9791130567332587 -0.2033130864589525 -0.001187858993839574 0.9686723019472787 0.1863743052274754 -0.1641297955617317 -0.9686723019472787 -0.1863743052274754 0.1641297955617317 0.8915434616907393 0.08766106977177895 -0.4443712330506563 -0.8915434616907393 -0.08766106977177895 0.4443712330506563 0.6112206164766446 -0.06323622661557089 -0.788929995397142 -0.6112206164766446 0.06323622661557089 0.788929995397142 0.0002750988464171122 0.006169799816833397 0.9999809287635664 0.01160772079517966 0.03736020406176591 0.9992344449479333 -0.01160772079517966 -0.03736020406176591 -0.9992344449479333 -0.0002750988464171122 -0.006169799816833397 -0.9999809287635664 0.1460352483029513 -0.2495452139578195 -0.9572883016332339 -0.1460352483029513 0.2495452139578195 0.9572883016332339 0.4035889713133622 -0.4176632165417596 -0.8140475291911482 -0.4035889713133622 0.4176632165417596 0.8140475291911482 -0.1539794761670579 -0.2560725467089957 0.9543150275151743 0.1539794761670579 0.2560725467089957 -0.9543150275151743 -0.04016355133499785 0.03656675640650078 0.9985237911387334 0.04016355133499785 -0.03656675640650078 -0.9985237911387334 -0.01581688188725655 0.02996803041905136 0.9994257067937403 0.01581688188725655 -0.02996803041905136 -0.9994257067937403 0.1204495300448903 -0.4892020510285962 0.8638132112797188 -0.1204495300448903 0.4892020510285962 -0.8638132112797188 -0.2021770285378366 -0.8035482787212227 0.5598523134682673 -0.01676178295521105 -0.5244277323202428 0.8512899601226424 0.01676178295521105 0.5244277323202428 -0.8512899601226424 0.2021770285378366 0.8035482787212227 -0.5598523134682673 0.5094076716102441 -0.8208413594926837 0.2583085106047273 -0.5094076716102441 0.8208413594926837 -0.2583085106047273 -0.5295565658978195 -0.8482738252862873 -0.001166554189821187 0.5295565658978195 0.8482738252862873 0.001166554189821187 0.7825480196691753 -0.5713196341361541 -0.2474115449254199 -0.7825480196691753 0.5713196341361541 0.2474115449254199 -0.6977594807071145 -0.469882079092307 -0.5406870988207769 0.6977594807071145 0.469882079092307 0.5406870988207769 0.1539618074981693 -0.256072749908537 0.9543178236762513 -0.1539618074981693 0.256072749908537 -0.9543178236762513 0.04015046190472683 0.03655948831891245 0.9985245836846964 -0.04015046190472683 -0.03655948831891245 -0.9985245836846964 0.01581380495359327 0.029964143765137 0.9994258720191867 -0.01581380495359327 -0.029964143765137 -0.9994258720191867 -0.1204492571903401 -0.4892032475319197 0.8638125717113167 0.1204492571903401 0.4892032475319197 -0.8638125717113167 -0.4035754572775538 -0.4176660774932453 -0.8140527611860422 0.4035754572775538 0.4176660774932453 0.8140527611860422 -0.2840023630893594 -0.7144389413139534 -0.6394682610527728 0.2840023630893594 0.7144389413139534 0.6394682610527728 -0.5848906347871803 -0.5854977094664804 -0.5613335706580842 0.5848906347871803 0.5854977094664804 0.5613335706580842 -0.7969858988165718 -0.4526946244706833 -0.399851289935256 0.7969858988165718 0.4526946244706833 0.399851289935256 -0.9231956656843949 -0.3296026792501743 -0.1976659725209516 0.9231956656843949 0.3296026792501743 0.1976659725209516 -0.9966489268663521 0.08166372880846787 0.00468529329347788 0.9966489268663521 -0.08166372880846787 -0.00468529329347788 -0.964893075726331 0.04428042273650343 0.2588833648144611 0.964893075726331 -0.04428042273650343 -0.2588833648144611 -0.8090326429841972 -0.4292081262383663 0.401555185443987 0.8090326429841972 0.4292081262383663 -0.401555185443987 -0.5898902060140966 -0.5786579984570285 0.5631913224387896 0.5898902060140966 0.5786579984570285 -0.5631913224387896 -0.2853859383363251 -0.7146722102624251 0.6385910256795935 0.2853859383363251 0.7146722102624251 -0.6385910256795935 0.281985638696346 -0.4007104282647744 0.8717311811842428 -0.281985638696346 0.4007104282647744 -0.8717311811842428 0.446211320909524 -0.6853561749786278 0.5754844659161896 -0.446211320909524 0.6853561749786278 -0.5754844659161896 -0.5094030941587701 -0.8208446185389465 0.258307181234132 0.5094030941587701 0.8208446185389465 -0.258307181234132 0.8099979478262502 -0.5864296355143889 -0.001899238722307423 -0.8099979478262502 0.5864296355143889 0.001899238722307423 -0.7825487427006799 -0.5713246622280038 -0.2473976467706242 0.7825487427006799 0.5713246622280038 0.2473976467706242 0.7405771949884781 -0.4517623278846433 -0.497449713405532 -0.7405771949884781 0.4517623278846433 0.497449713405532 0.2853792354347278 -0.7146718252325069 0.6385944520597773 -0.2853792354347278 0.7146718252325069 -0.6385944520597773 0.5898824331376763 -0.5786633709007107 0.563193943729335 -0.5898824331376763 0.5786633709007107 -0.563193943729335 0.8090291310112718 -0.4292122029973183 0.4015579036369908 -0.8090291310112718 0.4292122029973183 -0.4015579036369908 0.9649001816587276 0.04427200365486803 0.2588583186365426 -0.9649001816587276 -0.04427200365486803 -0.2588583186365426 0.9966494201427686 0.08165806893666418 0.004679007011975113 -0.9966494201427686 -0.08165806893666418 -0.004679007011975113 0.9232036126395943 -0.3295966235877274 -0.1976389519522193 -0.9232036126395943 0.3295966235877274 0.1976389519522193 0.796980877440989 -0.4526998857070485 -0.3998553419353262 -0.796980877440989 0.4526998857070485 0.3998553419353262 0.5848829390569337 -0.5855014917679562 -0.561337644147995 -0.5848829390569337 0.5855014917679562 0.561337644147995 -0.2819860956836727 -0.4007056494994016 0.871733230008092 0.2819860956836727 0.4007056494994016 -0.871733230008092 0.2839962715560833 -0.714437751660903 -0.6394722955249566 -0.2839962715560833 0.714437751660903 0.6394722955249566 0.06967649649256183 -0.8034909282982834 -0.5912254341441046 -0.06967649649256183 0.8034909282982834 0.5912254341441046 0.03136787686568475 -0.8139973840788715 0.5800209608399454 -0.03136787686568475 0.8139973840788715 -0.5800209608399454 0.4112395355653548 -0.4067898810838509 0.8157230148989163 -0.4112395355653548 0.4067898810838509 -0.8157230148989163 0.4480839719870259 -0.2555058724445752 0.8567015251501929 -0.4480839719870259 0.2555058724445752 -0.8567015251501929 -0.4462089635647924 -0.6853539770439056 0.5754889112611429 0.4462089635647924 0.6853539770439056 -0.5754889112611429 0.7861148917546521 -0.5602688451774001 0.2610022951721959 -0.7861148917546521 0.5602688451774001 -0.2610022951721959 -0.8099959449369538 -0.5864324054839372 -0.001898152790002464 0.8099959449369538 0.5864324054839372 0.001898152790002464 0.8679852392884114 -0.4186456692010427 -0.267090673810694 -0.8679852392884114 0.4186456692010427 0.267090673810694 -0.7405681044240781 -0.4517599181591552 -0.4974654350349996 0.7405681044240781 0.4517599181591552 0.4974654350349996 -0.03136265652006765 -0.8139970210045682 0.5800217526711331 0.03136265652006765 0.8139970210045682 -0.5800217526711331 -0.4112244960213013 -0.4067936091788324 0.8157287376348134 0.4112244960213013 0.4067936091788324 -0.8157287376348134 -0.4480832331455037 -0.2555053323577675 0.8567020726662327 0.4480832331455037 0.2555053323577675 -0.8567020726662327 -0.06967019624810501 -0.8034906672085651 -0.5912265314272404 0.06967019624810501 0.8034906672085651 0.5912265314272404 -0.3815030890092033 -0.924214326544346 -0.01683067695064405 0.3815030890092033 0.924214326544346 0.01683067695064405 -0.7602024055534215 -0.6496822491888411 0.002297320117012182 0.7602024055534215 0.6496822491888411 -0.002297320117012182 -0.7235978029626576 -0.6767074108252281 0.1359165173252718 0.7235978029626576 0.6767074108252281 -0.1359165173252718 0.6996929648346212 -0.457255608955431 0.5489508748874855 -0.6996929648346212 0.457255608955431 -0.5489508748874855 -0.7861194615018242 -0.5602692741775224 0.260987610166985 0.7861194615018242 0.5602692741775224 -0.260987610166985 0.9154288715728126 -0.4024769486616665 -0.001512245655052878 -0.9154288715728126 0.4024769486616665 0.001512245655052878 -0.8679872702806583 -0.418643144329402 -0.2670880310622752 0.8679872702806583 0.418643144329402 0.2670880310622752 0.6401239958287761 -0.5616460253274669 -0.5242089394488227 -0.6401239958287761 0.5616460253274669 0.5242089394488227 0.3815100567366204 -0.9242114501319144 -0.01683068786129064 -0.3815100567366204 0.9242114501319144 0.01683068786129064 0.7236074502295418 -0.676699720026526 0.1359034469331913 -0.7236074502295418 0.676699720026526 -0.1359034469331913 0.7602217437119161 -0.6496596261772683 0.002295757571221962 -0.7602217437119161 0.6496596261772683 -0.002295757571221962 -0.6996930785508547 -0.4572560764512379 0.5489503405376914 0.6996930785508547 0.4572560764512379 -0.5489503405376914 -0.04331297926586832 -0.9656287363035919 -0.2562911029510049 0.04331297926586832 0.9656287363035919 0.2562911029510049 -0.06784976146030096 -0.9677646947856123 0.24254464619177 0.06784976146030096 0.9677646947856123 -0.24254464619177 0.6240702080260744 -0.5918291363616083 0.5101711955880744 -0.6240702080260744 0.5918291363616083 -0.5101711955880744 0.7594261707433901 -0.4193338100716575 0.4974244132738343 -0.7594261707433901 0.4193338100716575 -0.4974244132738343 0.8724739609286245 -0.410869274275227 0.26452906637658 -0.8724739609286245 0.410869274275227 -0.26452906637658 -0.9154312545832757 -0.4024715253698982 -0.001513075846592315 0.9154312545832757 0.4024715253698982 0.001513075846592315 0.8256770590776061 -0.5007123384848367 -0.2598933400493392 -0.8256770590776061 0.5007123384848367 0.2598933400493392 -0.6401183454754561 -0.5616481155677299 -0.5242135996566498 0.6401183454754561 0.5616481155677299 0.5242135996566498 0.06784620197388161 -0.9677652070871987 0.2425435977905633 -0.06784620197388161 0.9677652070871987 -0.2425435977905633 -0.6240708460233705 -0.5918260188339922 0.5101740316546712 0.6240708460233705 0.5918260188339922 -0.5101740316546712 -0.7594127775507094 -0.4193365193935109 0.4974425763800812 0.7594127775507094 0.4193365193935109 -0.4974425763800812 0.04331015943856095 -0.9656291961824468 -0.256289846793524 -0.04331015943856095 0.9656291961824468 0.256289846793524 0.05342527282932921 -0.9892348271926069 -0.1362358135452093 -0.05342527282932921 0.9892348271926069 0.1362358135452093 0.03602488255749498 -0.990151181161496 0.1352880123337349 -0.03602488255749498 0.990151181161496 -0.1352880123337349 -0.8724749547026995 -0.4108695217241122 0.2645254043276785 0.8724749547026995 0.4108695217241122 -0.2645254043276785 0.8774502952952402 -0.4796473008575407 -0.004409769423848663 -0.8774502952952402 0.4796473008575407 0.004409769423848663 -0.8256786698183741 -0.5007121985949208 -0.2598884922138749 0.8256786698183741 0.5007121985949208 0.2598884922138749 -0.03602431648454466 -0.990151257720754 0.1352876027425672 0.03602431648454466 0.990151257720754 -0.1352876027425672 -0.05342430309089553 -0.9892349472673335 -0.1362353219405603 0.05342430309089553 0.9892349472673335 0.1362353219405603 0.08071066687826572 -0.9967349708365165 0.002277314996621204 -0.08071066687826572 0.9967349708365165 -0.002277314996621204 0.8194403105675971 -0.5130260276504044 0.2555814397997763 -0.8194403105675971 0.5130260276504044 -0.2555814397997763 -0.8774528301994429 -0.4796426101341143 -0.004415576827767885 0.8774528301994429 0.4796426101341143 0.004415576827767885 -0.08070874464632695 -0.9967351266216002 0.00227725629573557 0.08070874464632695 0.9967351266216002 -0.00227725629573557 -0.8194362584182509 -0.5130304918091215 0.2555854707599559 0.8194362584182509 0.5130304918091215 -0.2555854707599559</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"988\" source=\"#ID259\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID257\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID260\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"3640\">5.073201819573185 5.600716181436744 0.4431947293248177 5.627367762284371 0.445157753558425 5.77577947978994 19.42444920539856 -2.284081900119782 19.34477210044861 -2.21826593875885 19.51842546463013 -2.155384290218354 -0.3683005752163459 5.627980801831711 -4.998312028091073 5.601329220981368 -0.3702635976005759 5.776392519352418 -4.607146616344261 -15.34367856238688 -4.607434025537637 -15.26620563161423 0.02193692619318748 -15.26620484570936 7.160318775454673 13.4418102735027 7.148171802192096 13.3649303743631 2.559466077564319 13.86992800761164 19.29153442382813 -2.119765305519104 -19.34477210044861 -2.21826593875885 -19.42444920539856 -2.284081900119782 -19.51842546463013 -2.155384290218354 0.02193411607899051 -12.19211046583441 -4.607436835651924 -12.19211078958473 0.02169050847536717 -12.101223714757 -7.086038837485496 13.44907359354734 -2.485181750245635 13.87719133378585 -7.073891875480463 13.37219369330701 4.532241269596551 -15.34350658550807 -0.09684663643765332 -15.26603286882992 4.532528678519042 -15.2660336547348 18.12293612293303 -5.740417639581398 18.05022071995145 -5.579453161455872 18.14224321801971 -5.607051071422144 20.0461661021292 -2.185631356216326 20.13818591144634 -2.158032923472155 20.19435282629705 -2.280338623817249 0.02244777560490949 -9.667085073012048 -4.606923132412025 -9.667085343404384 0.02216065455198159 -9.518654281630893 19.27285671234131 -2.003576270739238 -19.29153442382813 -2.119765305519104 0.02160569789400608 -7.995839269942864 -4.607765191921811 -7.995839779454807 0.02144316053642897 -7.888805077286571 4.532531488597545 -12.19198653582923 -0.09684382635923963 -12.19198621207891 -0.09660021898521853 -12.10109946100112 -4.607520677691383 -12.1909112318562 -4.607763879512159 -12.1000356436168 0.02160701030363091 -12.10003499619338 -20.12290056046157 -2.126596506239412 -20.03088058233253 -2.154194590658596 -20.17906587605502 -2.24890066294136 4.532017785128885 -9.666995670709737 -0.09735748611396007 -9.666995400317401 -0.09707036533164624 -9.518564608935924 -18.15759742904709 -5.575369671827158 -18.06557476219196 -5.547772110150985 -18.13829200069284 -5.708734556878697 17.99357612869964 -5.702260793229072 18.04974735518383 -5.579956091177736 18.12245655089196 -5.740922304536536 20.06549735998501 -2.318743424592642 20.04618550119356 -2.18537728325909 20.19437439105596 -2.280082453791246 19.35041664390355 -0.1672801767393221 19.27009759898836 -0.05361967781094949 19.44672188351816 -0.06496179150935104 19.61243033409119 -2.284081900119782 19.69209432601929 -2.218266407648723 4.606925059893758 8.983872029657613 -0.02244584812317223 8.983872353355501 4.606681792005382 9.074743737995473 19.29153442382813 -1.887388408184052 -19.27285671234131 -2.003576270739238 0.02153183676538729 -4.006987150812811 -4.607839118610364 -4.006987623436984 0.02147472689993803 -3.889872771067557 4.532859843554559 -7.995769383157321 -0.09651540948718468 -7.995768873645379 -0.09635287228280043 -7.888734680988943 -4.607675526484326 -7.997752646212891 -4.607838376214422 -7.890711847908215 0.02153257916132211 -7.89071133836483 4.532858531161661 -12.099911581594 4.532615329570105 -12.19078716983378 -0.09651672188005642 -12.09991093417058 14.31034454902532 -6.891321912716821 14.3219313136851 -6.704624404125912 14.39066722400534 -6.77766275692727 -19.23235905354456 -0.03176419670807103 -19.31267478578086 -0.1454239941680635 -19.40898110949886 -0.04310624040735855 -20.03089757299971 -2.153942386636512 -20.05020776466498 -2.287306844929085 -20.17908503223773 -2.248646362017625 -19.61243033409119 -2.284081900119782 -19.69209432601929 -2.218266407648723 0.09735555865652508 8.983748252347926 -4.532019712586315 8.983747928650038 -4.531776444927222 9.074619636988276 -18.06510549529732 -5.548274579009042 -18.00893586832819 -5.670577737512788 -18.13781652703782 -5.709238760892301 -4.761454164981842 -15.36620406725101 -5.124302506446838 -15.36620406725101 -4.761454164981842 -15.25769683390061 4.761454164981842 14.03119791667768 5.124302506446838 14.03119791667768 4.761454164981842 13.92269336851347 5.124302506446838 9.051208503106006 4.761454164981842 8.923895314410608 4.761454164981842 9.051208503106006 19.27005375162924 -0.05399533286574425 19.338784861109 0.01904098857144973 19.44667808279935 -0.06533699708664376 4.606619735267406 9.075917602756913 -0.02250765383615134 8.985038304927638 -0.02275121646351726 9.075917602756913 19.74531054496765 -2.119765305519104 19.34477210044861 -1.788889181613922 -19.29153442382813 -1.887388408184052 0.02139500721034665 -0.08559919136399398 -4.607975889885002 -0.0855991913639942 0.02145203981830667 0.0315140254419601 4.532933771225495 -4.006965017630068 -0.09644154737612184 -4.006964545005895 -0.09638443756449916 -3.889850165260626 0.02139500721034668 -3.887985410722442 -4.607918915518152 -4.00509837419036 -4.607975889885002 -3.887985410722442 4.532933028839068 -7.890641320673163 4.532770179262458 -7.997682118977982 -0.09644228976254241 -7.890640811129774 7.300735343715204 -6.876981630525356 7.208677959532405 -6.957488130201455 7.270102437898879 -6.772688577984919 -14.36005071717713 -6.682371106887645 -14.34846803919266 -6.869067463427804 -14.4287874013639 -6.755409008992634 8.984437848452524 -7.798264015179135 8.940569602336625 -7.697642087810905 9.029006040665307 -7.61466168380332 -4.686544239521028 9.051208503106002 -4.686544239521028 8.923895314410604 -5.049393773078919 9.051208503106002 -19.301046610831 0.04089217765845121 -19.23231472762878 -0.03214369318521712 -19.40893683022086 -0.04348528743434973 -4.686544239521027 14.03119791667768 -4.686544239521027 13.92269336851347 -5.049393773078919 14.03119791667768 -19.74531054496765 -2.119765305519104 0.0976609259876836 9.075793361768964 0.09741736358987754 8.984914063939309 -4.531714388969109 9.075793361768964 4.686544239521027 -15.36620406725101 4.686544239521027 -15.25769683390061 5.049393773078919 -15.36620406725101 -5.124302506446838 -15.25769683390061 5.124302506446838 13.92269336851347 5.124302506446838 8.923895314410608 5.124302506446838 3.967442294660724 4.761454164981842 3.967442294660724 5.124302506446838 4.117387341176849 18.10363545293048 -0.2809333171421746 17.98922406407012 -0.20204778396656 18.16032542044089 -0.1377736016281496 4.606619735267406 4.018951594910801 -0.02275121646351722 4.018951594910799 4.60645699692999 4.125982852127443 4.606508922688092 4.124733668805059 -0.02269943066667871 4.017706157806399 -0.02286199261143391 4.124734178285195 19.76400971412659 -2.003576270739238 19.42444920539856 -1.723072868585587 -19.34477210044861 -1.788889181613922 0.02153152266195754 4.201206879020086 -4.607839432713795 4.201206879020086 0.02169430386568268 4.30823977692898 4.533070541424439 -0.08562176681403434 -0.09630471889683018 -0.08562176681403434 -0.09636175145103647 0.03149144999193612 0.02153152266195751 0.02957013340985924 -4.607896483955441 -0.08754120186105191 -4.607839432713794 0.02957013340985924 4.533070541424439 -3.887962858276884 4.533013567111289 -4.005075821744817 -0.09630471889683018 -3.887962858276884 1.476583962944563 -3.961951133663058 1.378933579597579 -3.998762427310236 1.470855877273663 -3.844924883029417 -7.270340430197083 -6.946251903039824 -7.362393703741029 -6.865745530157424 -7.331759894273065 -6.761452641873312 2.874643384624575 -6.344012562412311 2.854840250265239 -6.200825300641612 2.951799341928625 -6.162900036422522 -8.997852944453967 -7.682148384603612 -9.041722306212098 -7.782770010969236 -9.086285293693118 -7.599168228825396 -4.761454164981842 -9.669378941447398 -5.124302506446838 -9.669378941447398 -4.761454164981842 -9.563003705794053 -4.686544239521027 3.967442294660724 -5.049393773078919 3.967442294660724 -5.049393773078919 4.117387341176849 -4.686544239521027 8.923895314410608 -5.049393773078919 8.923895314410608 -5.049393773078919 9.051208503106006 -17.94074922257743 -0.190250879566312 -18.05515731857771 -0.2691362702345684 -18.11184834142092 -0.1259768133397359 -5.049393773078919 13.92269336851347 -19.76400971412659 -2.003576270739238 0.09760914084168518 4.017635746807368 -4.531603575892205 4.124663257806173 0.09777170263322435 4.124663767286307 0.09766092598768356 4.018881109642489 -4.531714388969109 4.018881109642489 -4.531551650785075 4.125912366859277 5.049393773078919 -15.25769683390061 -20.15883989174207 -1.446384394925267 -20.01064744910403 -1.541089938928572 -20.13952805939735 -1.579751062190041 -18.12105498306678 2.003518467207123 -18.04834926118542 1.842551710623711 -18.17722596699716 1.881213352405044 -14.34379104229491 2.928736016400822 -14.35537490132199 2.742038852078833 -14.4516825406131 2.844355839528841 -11.60635441085664 1.474098297344885 -11.68030642612911 1.293021679652002 -11.73699900134571 1.436180756113591 4.761454164981842 4.117387341176849 17.98957291257794 -0.2027690231414206 18.03003106852359 -0.1005792818805556 18.16067509038074 -0.1384961940455248 4.606508164012554 -0.1524014195865267 -0.02286275128697907 -0.1524009469552575 4.606451053037286 -0.03528480902880758 4.606435462909619 -0.034902986115325 -0.0228783266660047 -0.1520194848137105 -0.02293546331610938 -0.034902986115325 19.74531054496765 -1.887388408184052 19.51842546463013 -1.699962810675303 -19.42444920539856 -1.723072868585587 0.02160463890589585 9.199395637636078 -4.607766250909928 9.19939563763608 0.02184789283266063 9.290282643961225 4.532934085324899 4.201136376263897 -0.09644123327671748 4.201136376263896 -0.09660401432701996 4.308169274172933 0.0216046389058958 4.310373838309889 -4.607928850863339 4.20333433420841 -4.607766250909929 4.310373838309889 4.532934085324899 0.02954755022149495 4.532991136512775 -0.08756378504943213 -0.09644123327671744 0.02954755022149517 2.080673221082074 -0.1580516116257338 1.980713114162307 -0.1479506138575482 2.086947185949026 -0.04104431478021404 -1.450480747367893 -3.996593703793443 -1.548127087929501 -3.959782412325525 -1.542398773543374 -3.842756168619942 1.478128977262679 -3.84748367689357 1.386215277362713 -4.001324400253703 1.378169148335766 -3.837380976808661 -2.924515073702726 -6.194855306154077 -2.944318956763954 -6.338042503843924 -3.021470103146817 -6.156930058907749 -4.761454164981842 -6.551386285397905 -5.124302506446838 -6.551386285397905 -4.761454164981842 -6.407354064951116 5.049393773078919 -9.669378941447398 4.686544239521028 -9.669378941447398 4.686544239521028 -9.563003705794051 -5.124302506446838 -9.563003705794053 11.72913812660912 1.281032594197831 11.65518784529848 1.462109071704529 11.78583115406787 1.424191559828298 -4.686544239521027 4.117387341176849 14.3933440379706 2.719888654750523 14.38176193015808 2.906585325303857 14.48965214181703 2.82220537159695 -17.98155911242234 -0.08878543203838715 -17.94110020337961 -0.190974988782554 -18.11220014362858 -0.126702275739503 18.0636678162378 1.810931733780058 18.13637432502825 1.971897619722236 18.19254462341883 1.849593166447284 -19.74531054496765 -1.887388408184052 0.09784517307933045 -0.03492560211400781 0.09778803648307755 -0.1520421008124095 -4.53153011637229 -0.03492560211400803 0.09777246129926198 -0.1524235527697383 -4.531602817226173 -0.1524240254010073 -4.531545706304733 -0.03530741484327198 20.1242406419332 -1.61126473379213 19.99535993028215 -1.572603819630105 20.14355175979657 -1.477898787843594 -20.06678079509166 -1.418435288422712 -20.01061269560492 -1.540741450105125 -20.15880298935821 -1.44603382526822 -18.0295444399364 1.975363959042047 -18.04885248059514 1.84199695203714 -18.12156445860097 2.002961959819854 -14.2732883668018 2.856238288911769 -14.35361304282905 2.742579638298572 -14.34201654549573 2.929276317082448 -11.60456866809315 1.473918969118328 -11.564113636159 1.371728462482041 -11.67852720339388 1.292843999359143 -10.47625515972126 -0.7799536673345897 -10.46288497898667 -0.896597041693023 -10.59409434988142 -0.9332878993617697 5.124302506446838 -0.1810681453366635 4.761454164981842 -0.1810681453366635 5.124302506446838 -0.01700151890789119 17.50400202822861 -1.423449115347078 17.37279351621073 -1.386758260035087 17.52273216033082 -1.260045454950131 17.37279144816011 -1.386756484877176 17.38616170783077 -1.270113116118066 17.52273008947194 -1.260043677735799 4.606435462909618 -3.94017376343256 -0.02293546331610935 -3.94017376343256 4.606492588632147 -3.823058781002435 4.606507842214324 -3.823420031241192 -0.02292019528997866 -3.940535367002381 -0.02286307308520944 -3.823420031241192 19.69209432601929 -1.788889181613922 19.61243033409119 -1.723072868585587 -19.51842546463013 -1.699962810675303 0.02193292519788623 14.07047703510907 -4.607438026533037 14.07047703510907 0.02222024578093109 14.14793264486438 4.532860902529158 9.199271564634241 -0.09651435051259227 9.199271564634238 -0.09675760421008815 9.290158570959765 0.02193292519788632 9.288725747574326 -4.607681567292359 9.197849735409813 -4.607438026533037 9.288725747574327 4.532860902529158 4.310303418401068 4.533023502329318 4.203263914299446 -0.0965143505125923 4.310303418401068 5.690845502269881 3.381911180032327 5.596674513402085 3.442216463478121 5.717702102938485 3.486845033176731 -2.051536016508506 -0.1503033752320826 -2.151492172878935 -0.1604043722975538 -2.157766383052216 -0.0433970835920991 2.081993036838842 -0.03794822347858934 1.975763000973912 -0.1448570043827798 1.984559679438029 0.01905964840697018 -1.457754229520732 -3.999150084251062 -1.549663657648365 -3.845309370045329 -1.449707779298342 -3.835206670561589 -4.761454164981842 -4.040416392011158 -5.124302506446838 -4.040416392011158 -4.761454164981842 -3.876350825242172 5.049393773078919 -6.551386285397908 4.686544239521027 -6.551386285397908 4.686544239521027 -6.407354064951118 -5.124302506446838 -6.407354064951116 5.049393773078919 -9.563003705794051 -18.07388425457883 -4.474188075370972 -18.12550441956021 -4.572507413312393 -18.21523613450942 -4.463290371653764 10.51541013065442 -0.9003298494342281 10.52878043479375 -0.7836864838295137 10.64661821288263 -0.9370207043494412 11.61295282063542 1.35974183626907 11.65340817536358 1.461932263824594 11.72736497661217 1.280857434191407 -4.686544239521027 -0.181068145336663 -5.049393773078919 -0.181068145336663 -5.049393773078919 -0.01700151890789076 14.39159014935171 2.720431276678623 14.31126689317316 2.834089626742285 14.37999540352754 2.907127461777244 -17.32066854671092 -1.383087478227263 -17.45187405187674 -1.419778327114212 -17.47060458735927 -1.256374695331356 18.06416692096803 1.810377423968519 18.04485959465632 1.943743709634421 18.13687968566132 1.971341561143569 -19.69209432601929 -1.788889181613922 0.09777278309345966 -3.823397420735158 0.09782990524439074 -3.940512756496364 -4.531602495431977 -3.823397420735158 0.09784517307933047 -3.940151151465963 -4.53153011637229 -3.940151151465963 -4.531587242040977 -3.823036169035822 -17.33403701575904 -1.266442347839805 -17.32066646814052 -1.383085696173078 -17.47060250598066 -1.256372911220834 19.99532756972705 -1.572257179571142 20.05149498381842 -1.449951679461248 20.14351725043284 -1.477550067022098 -4.578089119545712 -15.45302547447942 -6.042443522549657 -15.45302547447942 -4.581164235491041 -15.37558999088647 4.565359965689587 14.15486206179388 6.044720666041248 14.15486284728921 4.568480903247499 14.07742950375024 6.047416248517195 9.152503540541604 4.55801373756888 9.061655984129738 4.555339560991968 9.152503540541604 4.549805518930956 4.062372985938772 4.548003588686205 4.169394932529762 6.048578524753239 4.16939544198341 6.049316921622414 -0.02143661639989597 4.546392706834692 -0.1385521722146575 4.545758292856145 -0.02143661639989597 -10.47625096160975 -0.7799554999894198 -10.59409015588215 -0.9332897300608669 -10.61282016940071 -0.7698860612522147 4.761454164981842 -0.01700151890789119 17.50589387807564 -2.286747502342873 17.63362708011275 -2.088157985538652 17.6424661795315 -2.276711018057561 18.33222329356584 -2.53750280138788 18.31763141763591 -2.420951718121649 18.45869955379253 -2.338416052996688 4.606507842214324 -7.813859075424752 -0.02286307308520943 -7.813859075424753 4.606670443487124 -7.706829759908492 4.606618118893985 -7.705705445333536 -0.02291553909568638 -7.812730975322972 -0.02275283283692284 -7.705704681111107 -19.61243033409119 -1.723072868585587 -0.02212474982177109 -15.16260858599943 4.607246132715756 -15.16260858599943 -0.02241169795092981 -15.24008567857359 -0.09684263549329919 14.07030507281433 -0.09712995580554193 14.14776068257027 4.532532679463495 14.07030507281434 -4.607533062650705 14.07088580756522 -4.607246132715755 14.14835842472385 0.02212474982177103 14.14835842472385 4.532532679463494 9.288601513246206 4.532776219993277 9.197725501081312 -0.0968426354932992 9.288601513246205 17.33542141828752 0.1877632006411207 17.26381917608259 0.4331881399150761 17.41208157884864 0.2557460918948759 -5.661727513750998 3.431888070435921 -5.755894392243127 3.371582867353965 -5.782751875781377 3.476516580661745 8.15684694074397 -0.8273037683524903 8.034301206339869 -0.8692903517736603 8.052832203414228 -0.589163423036165 -2.046592066139235 -0.147211950632897 -2.152818396643546 -0.04030317718012921 -2.055389088607163 0.01670469073204583 -4.761454164981842 -0.07917014712386801 -5.124302506446838 -0.07917014712386801 -4.761454164981842 0.08489251226380006 5.049393773078919 -4.040416392011159 4.686544239521027 -4.040416392011159 4.686544239521027 -3.876350825242173 -5.124302506446838 -3.876350825242172 5.049393773078919 -6.407354064951118 5.049393773078919 -6.551386285397907 -14.05781573420595 -5.024120918143106 -14.15256219722485 -4.945567930657166 -14.03167809162006 -4.881563909785387 18.07737601006223 -4.58810494037262 18.02575544117672 -4.489785733663947 18.16710612556526 -4.478888044492561 -18.32662568061224 -5.158126311317372 -18.2474307438047 -5.246695942853649 -18.38865139039027 -5.234791804229245 -4.47089225317745 -0.02168761765281581 -4.471526665899239 -0.1388031734717903 -5.974453860459585 -0.02168761765281603 10.64661403173349 -0.9370225280908811 10.52877624953241 -0.7836883095266434 10.66534421812733 -0.7736188715451156 -4.473138411666099 4.168614706137857 -4.47494033547283 4.061592759479787 -5.97371870907645 4.168615215591504 -4.686544239521027 -0.01700151890789119 -4.686544239521027 -0.1810681453366635 -5.049393773078919 -0.01700151890789119 -4.480472602474462 9.151139574630145 -4.48314677371307 9.060292018121034 -5.972552268551757 9.151139574630147 -4.490490482628745 14.15299466769471 -4.493611421443417 14.07556210968241 -5.969850587262583 14.15299545319003 0.09782524844617796 -7.812660500675886 -4.531712772616011 -7.705634970686305 0.09766254234076646 -7.705634206463876 0.09777278309345971 -7.81378864823879 -4.531602495431977 -7.813788648238789 -4.531765096551524 -7.706759332722385 -18.27099170851211 -2.424541269168228 -18.28558383583374 -2.541092332957057 -18.41205705831794 -2.342005617836192 -17.58211691113504 -2.08964165825829 -17.45438678647546 -2.288231169383394 -17.59095619641875 -2.278194685385098 4.503218956355878 -15.4511854490245 4.506294071050191 -15.3737499654008 5.967573955087233 -15.4511854490245 -6.052265975289288 -15.44533751292056 -6.040289554249846 -15.36844913382241 -4.590939939674025 -15.36844991378953 6.054374605847429 14.13759094877424 6.042443522549659 14.06069895433972 4.578089119545712 14.06069895433972 6.044729634492048 9.015892673164469 4.565368934140106 9.015892350621446 6.054800970515214 9.10643985359448 6.047416248517195 4.018835421644788 4.555339560991967 4.018835421644788 6.054127345178423 4.125729724018402 6.048580889190117 -0.1514151321723878 4.548005953123063 -0.1514156047510027 6.050931677955227 -0.03431204161438601 6.049316921622414 -3.941649049601756 4.545758292856146 -3.941649049601756 6.046967637963183 -3.824547103426327 -10.74851442354966 -3.063015151465335 -10.76209685333605 -3.17964171456935 -10.8986662170669 -3.169573584757068 5.124302506446838 -2.786634471021795 4.761454164981842 -2.786634471021795 5.124302506446838 -2.597953268488039 4.761454164981842 -2.786634471021796 4.761454164981842 -2.597953268488039 18.28037174991929 -2.387247902897864 18.39200537588947 -2.048791391975406 18.42147391942475 -2.304748247562976 20.10342244761315 -2.175557580146113 20.05365622757925 -2.075945265886892 20.19968243591717 -1.834191666765926 4.606616114702037 -11.97692069766911 -0.02275483702880937 -11.97691972658449 4.606859648237528 -11.88604805585828 4.606923857897373 -11.88698878740255 -0.02269036658132474 -11.9778686798956 -0.02244705011956558 -11.88698878740255 0.09703446105603143 -15.16243689422908 0.09732140891473909 -15.23991398680386 -4.532340784707429 -15.16243689422908 4.607210949986045 -15.16254006450116 4.606923857897373 -15.24001089111221 -0.02244705011956553 -15.24001089111221 4.532627714371946 14.07071411677103 -0.09703446105603136 14.14818673393028 4.532340784707429 14.14818673393028 19.07599919846098 -0.7697091863383988 19.01577470375694 -0.4089749355334092 19.16980963613103 -0.7461299621495905 -17.28428507404853 0.4188681793839473 -17.35588528201159 0.173443868592124 -17.43254569204425 0.2414265857558596 15.30183050588967 -0.1829166560228486 15.36758095112323 0.0005554223524328328 15.4576363544048 -0.3563128009267357 -8.093886708506606 -0.8717388436542277 -8.216429222122992 -0.8297522633635218 -8.112418215758909 -0.5916119358026275 -4.761454164981842 -0.5396528051985078 -5.124302506446838 -0.5396528051985078 -4.761454164981842 -0.2591468229856518 5.049393773078919 -0.07917014712386801 4.686544239521027 -0.07917014712386801 4.686544239521027 0.08489251226380006 -4.761454164981842 0.08489251226379962 -5.124302506446838 -0.07917014712386845 -5.124302506446838 0.08489251226379962 5.049393773078919 -3.876350825242173 -10.78873572164456 -3.716033258499089 -10.88638676771986 -3.679221155967225 -10.7806966594359 -3.552089620514495 14.08771776632497 -4.952904215484902 13.99297305853906 -5.031457179754451 13.96683504462481 -4.88890021352956 -12.81873064085446 -6.323475727819551 -12.9375202801542 -6.389862228958428 -12.91489197283081 -6.28431188256751 18.20050519762579 -5.270138353211265 18.27969847953496 -5.181568988507997 18.34172465062959 -5.258234250450363 -4.590931001276149 -12.26650784736685 -6.040280615852252 -12.26650752373431 -4.593497191052654 -12.17565448283994 -4.470892253177451 -3.941391387470278 -5.974453860459587 -3.941391387470278 -5.972106958364483 -3.824289449247038 -4.473140775797431 -0.1516729526775121 -5.9737210732078 -0.151672480098929 -5.976069481400151 -0.03456939748639857 10.81373574963085 -3.175913325044117 10.80015319868049 -3.059286770672568 10.95030387416685 -3.165845195985691 -4.480472602474462 4.018075057372399 -5.972552268551757 4.018075057372399 -5.979265751594065 4.12496938406762 -4.686544239521027 -2.786634471021795 -5.049393773078919 -2.786634471021795 -5.049393773078919 -2.597953268488039 -4.490499449948416 9.014558288891497 -5.969859554582534 9.014558611434746 -5.979934463855106 9.105105856089267 -4.503218956355878 14.05885938239087 -5.967573955087233 14.05885938239087 -5.979503848171558 14.13575134744592 0.09735676063776333 -11.88686467278167 0.09760007687019463 -11.9777445652751 -4.532018510605086 -11.88686467278167 0.09766454650745335 -11.97679549132519 -4.531710768449262 -11.9767964624098 -4.531954301755221 -11.88592382059859 -20.02712261024925 -2.084116209692205 -20.07688910636322 -2.183728438594344 -20.17314666844703 -1.842362817728177 -18.34511534970802 -2.052109752869381 -18.23348502442543 -2.390566215450448 -18.3745844063478 -2.3080665718989 -4.686544239521027 -2.597953268488039 4.516068559031519 -15.36663923555123 5.965418769344401 -15.36663845558411 5.977395191618864 -15.44352683456322 2.185710194233277 -16.01687443923805 1.05048369056491 -16.01687443923805 2.159981592288677 -15.94210187928404 -2.042807883044052 14.68327279064717 -0.8655783579390752 14.68327279064717 -2.017823314231195 14.60834501656992 -1.929195131025891 9.366593011213197 -0.7162983972724596 9.366593011213197 -1.90850667468732 9.277168800803024 -0.6197144075065175 4.230907494019563 -1.842862539746875 4.12441831375727 -1.85645403696691 4.230907494019562 -0.5869599132875225 -0.005214870768700249 -1.827330744080122 -0.1222727230226611 -1.83208928020407 -0.005214870768700249 -0.6197144075065186 -3.854197644495329 -1.86123801091954 -3.971253691573725 -1.856454036966911 -3.854197644495329 6.048581882468827 -3.836912484706731 4.547374048342753 -3.954026417459464 4.548006946401772 -3.836912484706731 -11.7137872856193 -2.243317102395549 -11.57251851853729 -2.32564098050423 -11.72306161508688 -2.431857197353134 5.124302506446838 -3.602498390950017 4.761454164981843 -3.602498390950017 5.124302506446838 -3.345493890250985 4.761454164981842 -3.602498390950017 4.761454164981842 -3.345493890250985 20.08457897251528 -2.055865244857796 20.13921180576704 -1.64537909675398 20.23002554166368 -1.813895503225645 20.19759135237859 -1.625547247119456 20.11925692071081 -1.558760504617163 20.23791939035629 -1.214038421584816 -4.532305602423171 -15.16236827270183 0.09735676063776333 -15.23983909931349 -4.532018510605086 -15.23983909931349 19.73845055727641 -1.17193752314016 19.79020798968127 -0.76894620653525 19.83229447363586 -1.195428257387685 -19.02053244237188 -0.4206978926875721 -19.08075641956122 -0.7814315195013426 -19.17456687379724 -0.7578523360994263 19.04361459444834 -0.7224069564248532 18.88785007816897 -0.3857440386864083 19.08194556589112 -0.3184879843938077 -15.40033074449994 -0.006736022598707869 -15.33457975263204 -0.1902079797442773 -15.49038327259916 -0.3636040100761548 -4.761454164981842 3.090177455198686 -5.124302506446838 3.090177455198686 -4.761454164981842 3.280801018765249 5.049393773078919 -0.5396528051985071 4.686544239521027 -0.5396528051985071 4.686544239521027 -0.2591468229856512 -4.761454164981842 -0.2591468229856516 -5.124302506446838 -0.5396528051985076 -5.124302506446838 -0.2591468229856516 5.049393773078919 0.08489251226380006 4.686544239521026 0.08489251226380006 -11.29117332810071 -0.454513021491851 -11.39113452772774 -0.4646142400789053 -11.29997668616337 -0.2905965906201609 10.81518807001345 -3.681376184324148 10.71753875656982 -3.718188285918735 10.70949955680639 -3.554244652108326 -10.89147854209262 -3.676377657350613 -10.88574355741903 -3.559351615817855 -10.78578256268175 -3.54924914255366 12.86981854023901 -6.398820626364874 12.75103029931516 -6.332434154458914 12.84718988258773 -6.293270326452451 -4.601412393244298 -8.039100679945284 -6.038042127694073 -8.039100170441028 -4.603106545398308 -7.9320681020255 5.96540983205286 -12.2651987737772 4.516059621739696 -12.26519909740974 4.518625810461399 -12.17434573286439 -4.601416592951921 -12.13911900106356 -6.048232252107009 -12.22965381964346 -6.038046327401609 -12.13911835606558 1.924939184056606 -3.851183110382057 1.929725371978757 -3.968239063933166 0.6882050009732821 -3.851183110382057 -4.473141768941632 -3.836662058552371 -4.472508873143861 -3.953775991312667 -5.973722066352004 -3.836662058552371 1.900598898150354 -0.008223471781617087 1.895838164574524 -0.1252812312231929 0.6554722561226023 -0.008223471781616651 11.62146684899884 -2.32414813217465 11.76273441895258 -2.241824255053962 11.77200882275109 -2.430364347748823 1.924939184056609 4.221911285269113 1.911349764665274 4.115421823402338 0.6882050009732854 4.221911285269113 1.997501705891769 9.350362567447537 1.976816557807729 9.260937569313592 0.7846033412747 9.350362567447537 2.110902209731034 14.65994240190167 2.085916671400111 14.58501497532099 0.9336694325431627 14.65994240190167 -20.10569296408427 -1.568586693562604 -20.18402750885082 -1.63537335397261 -20.2243540948804 -1.223865034252437 -20.11354165442537 -1.653906723464462 -20.05891140086225 -2.064392488687762 -20.20435586164081 -1.822422972752629 -4.686544239521027 -3.345493890250986 -4.686544239521027 -3.602498390950018 -5.049393773078919 -3.345493890250986 -4.686544239521027 -3.602498390950018 -5.049393773078919 -3.602498390950018 -5.049393773078919 -3.345493890250986 -2.25358504465243 -15.99313969485531 -2.227856382409962 -15.91836714774108 -1.118360160867006 -15.99313969485531 1.231427929331768 -16.0832287152018 1.246773391632617 -16.00107993467809 2.340082606993026 -16.00107993467809 -1.034247302142608 14.87185567604342 -1.050483690564911 14.78982451832558 -2.185710194233279 14.78982451832558 -0.8511274640230193 10.0002774869243 -0.8655783579390763 9.906600297514103 -2.042807883044055 9.906600297514103 -0.7162983972724579 4.665798678485239 -1.929195131025889 4.665798678485239 -0.7062726610036019 4.773879846168242 -0.6197144075065142 0.06833696570131506 -1.856454036966908 0.06833696570131506 -0.616109874675348 0.1855695620024668 -0.5869599132875247 -4.15662371771603 -1.832089280204071 -4.15662371771603 -0.5905923369997634 -4.039392815958605 -0.6197144075065186 -8.422888053040696 -1.856454036966911 -8.422888053040696 -0.6299763984947571 -8.31482231769256 6.048581882468826 -7.819029137943104 4.548006946401772 -7.819029137943104 6.041885497235486 -7.712135992901121 -13.82931939188191 -4.351686699235466 -13.87428264295881 -4.452702424119747 -14.01357613905352 -4.36832128794176 -14.25778268796201 -2.245020409864408 -14.10584671119727 -2.484509922961849 -14.29015892645264 -2.500759784520114 5.124302506446838 -7.881537941745776 4.761454164981842 -7.881537941745776 5.124302506446838 -7.6985038665113 5.124302506446839 -7.6985038665113 4.761454164981843 -7.881537941745776 4.761454164981843 -7.6985038665113 20.03028076532722 -1.381016395343589 19.99503835597511 -0.9541505383688793 20.14462771188116 -1.03539290335758 -19.78593216233073 -0.7795111928942626 -19.73417519782671 -1.182501940266683 -19.8280191276076 -1.205992641333124 -18.89416258523788 -0.3970288842616265 -19.04992644933156 -0.7336912628382923 -19.08825813327001 -0.3297729376788208 -4.761454164981843 13.44225764041227 -5.124302506446838 13.44225764041227 -4.761454164981843 13.60910229782351 5.049393773078919 3.090177455198686 4.686544239521027 3.090177455198686 4.686544239521027 3.280801018765249 -5.124302506446838 3.280801018765249 5.049393773078919 -0.2591468229856516 5.049393773078919 -0.5396528051985076 4.686544239521027 -0.2591468229856516 -10.82821208961962 -0.7633832521201768 -10.92584966841327 -0.8201757145988158 -10.83756654817415 -0.4829738130488148 11.32068449710185 -0.4622790885886125 11.22072499057226 -0.4521778703036782 11.2295284961436 -0.2882614443346122 -11.38443577435428 -0.4663621754053626 -11.39070290132402 -0.3493546517843862 -11.29326723914596 -0.292347992818163 10.81455182094506 -3.561505136271076 10.82028690372956 -3.678531174828386 10.71459251931607 -3.55140266326374 -4.609014189964251 -4.018059215745196 -6.037142939433112 -4.018058743132294 -4.609602044500985 -3.900947156736948 5.963173779386009 -8.038366688508372 4.526541066212165 -8.038367198012628 4.528235214853508 -7.931334620058437 -4.609016585596063 -7.892475152040531 -6.043968290687342 -7.999373371679192 -6.037145335064903 -7.892474643173437 5.973361525504735 -12.22836178285181 4.526545265390071 -12.13782700560199 5.963177978563827 -12.1378263606043 2.34008260699303 -12.48192391564776 1.246773391632622 -12.48192391564776 2.317592736484473 -12.39277309291505 1.924939184056607 -8.412837673600276 0.6882050009732832 -8.412837673600276 0.6984619795776459 -8.304772637004039 1.900598898150355 -4.153472972138632 0.6554722561226023 -4.153472972138633 0.6591052055856272 -4.036242044737321 -4.473141768941632 -7.8182614765414 -5.973722066352004 -7.8182614765414 -5.967023291911748 -7.711368307083891 1.924939184056606 0.06517660569296027 0.6882050009732821 0.06517660569295983 0.6845999623521182 0.1824092280948905 13.91450185915773 -4.441606057501248 13.86953836477013 -4.34059039963825 14.05379419500759 -4.357224977307931 1.997501705891766 4.655622716512228 0.7846033412746978 4.655622716512228 0.7745824634076259 4.763703169927634 2.110902209731027 9.889210826905524 0.9336694325431572 9.88921082690552 0.9192168054866379 9.982888422541976 2.253585044652428 14.76591122104986 1.118360160867005 14.76591122104986 1.102120059458066 14.84794372060561 -19.98558194520679 -0.9649112159111604 -20.02082543129274 -1.391776445368014 -20.13517140592633 -1.046153461468818 -4.686544239521026 -7.6985038665113 -4.686544239521026 -7.881537941745776 -5.049393773078918 -7.6985038665113 -4.686544239521027 -7.881537941745776 -5.049393773078919 -7.881537941745776 -5.049393773078919 -7.6985038665113 14.14487273506835 -2.48144691508517 14.29680762871678 -2.241957414090741 14.32918403217292 -2.497696775822221 -2.40765094405234 -15.97667295900939 -1.314340653278554 -15.97667295900938 -1.298997832366708 -16.05882076335761 9.628086702292622 -14.28270449167188 9.308205458503469 -14.2937589850914 9.600338603232551 -14.20259415521653 -9.15638467590645 13.23755857289141 -8.780384903449992 13.22736880096883 -9.131317806245944 13.15691490507223 -10.05972714560176 8.367771173881465 -9.63248910550479 8.364731285713532 -10.03446332221797 8.275523334134968 -11.05057981166086 3.367901329390489 -11.47024375638755 3.261958444741649 -11.49145484452039 3.369034668676927 -11.10781426203081 -0.2846352700330709 -11.55327831969917 -0.4020426143794527 -11.5607912865993 -0.2849247609257422 -11.50336225993952 -3.578563639963122 -11.06248694205577 -3.576935725768492 -11.51082094881473 -3.695682477442028 -10.10964567584324 -7.327846505399825 -9.682401778561495 -7.324856078319797 -10.12667529700769 -7.435382094268694 -0.7162983972724568 -7.823109787084589 -1.943001489737283 -7.929580125903267 -1.929195131025889 -7.823109787084589 4.553557532492785 -7.857251946035247 4.555344612540982 -7.75023178734587 6.047421300066162 -7.750231023161794 -17.9198669236586 -3.250838765086589 -17.99747120723871 -3.318150945145977 -18.13596643191458 -3.073669950827252 -17.25217988680722 -2.5263192365622 -17.12527697766129 -2.869220361091524 -17.34439773755976 -2.694363093502924 5.124302506446838 -13.48634422972656 5.124302506446838 -13.62934139326121 4.761454164981841 -13.62934139326121 4.761454164981843 -13.48634422972656 5.124302506446839 -13.48634422972656 4.761454164981843 -13.62934139326121 4.686544239521028 13.44225764041227 4.686544239521028 13.60910229782351 5.049393773078919 13.44225764041227 -5.124302506446838 13.60910229782351 5.049393773078919 3.28080101876525 5.049393773078919 3.090177455198687 4.686544239521027 3.28080101876525 -18.90994524114691 -0.6686511851179914 -19.00192999132849 -0.9098360090245988 -18.97082490968914 -0.4841418391330651 10.85470589029763 -0.818710814368558 10.75707004431758 -0.7619183525581621 10.76642466268993 -0.4815089167862112 -19.4115973855404 -0.8045165649583449 -19.45148232814367 -1.147363289893205 -19.4983977167788 -1.046887611486468 11.32024261235959 -0.3470254471665981 11.31397538034749 -0.4640329673057708 11.22280868561172 -0.290018789896727 -4.611197369125708 -0.07464421162137877 -6.036346680419965 -0.07464421162137877 -4.610611047130893 0.04246622395491267 5.962276415639592 -4.017826119827646 4.534142900166311 -4.017826592440547 4.534730752741241 -3.900714533426205 -4.611197369125708 -3.889258412346493 -6.038739791771512 -4.006358473932219 -6.036346680419965 -3.889258412346493 5.969099984893216 -7.998646739658097 4.534145295495415 -7.891748537457251 5.962278810968677 -7.891748028590238 2.480903371497711 -8.058358052523531 1.423050836975676 -8.058358052523531 2.465468505781433 -7.952015602886137 -2.407650944052344 -12.46470553348781 -2.38515895868009 -12.37555525100804 -1.314340653278559 -12.46470553348781 1.410735011654689 -13.00671822027868 1.423050836975677 -12.91285457345404 2.480903371497713 -12.91285457345404 9.729244274646593 -7.30594838406494 10.15648411028464 -7.308938772449786 10.17351774453513 -7.416472969842089 1.997501705891766 -7.814032465549865 2.011305859053121 -7.92050309886547 0.7846033412746967 -7.814032465549865 11.10444042445242 -3.570828956788975 11.54531507591204 -3.572456871640502 11.55277347298887 -3.689575756379318 -4.480477653373026 -7.749458032316293 -4.478690576892274 -7.856478191042537 -5.972557319450274 -7.749457268132219 11.59508770646414 -0.4081566416561464 11.14962472704136 -0.2907492515030213 11.60260042313606 -0.2910387425086379 11.5122384283163 3.242405769474073 11.09257827984395 3.348347282653135 11.53345264634378 3.349480607268078 10.10672084692224 8.335535333180506 10.08145716235882 8.243286889359673 9.679486869191189 8.332495425106218 9.206022378799732 13.19523610707479 9.180957784235043 13.11459017406516 8.830024516351578 13.18504604893292 -4.686544239521027 -13.48634422972656 -4.686544239521027 -13.62934139326121 -5.049393773078919 -13.48634422972656 -5.049393773078917 -13.48634422972655 -4.686544239521025 -13.62934139326121 -5.049393773078917 -13.62934139326121 17.14783892261312 -2.861549196694088 17.27474097378587 -2.518648181113935 17.36695898175682 -2.686691984662478 18.01437777808899 -3.306078968835501 17.93677342017773 -3.238766841808939 18.15287233016291 -3.061598167134486 -9.676220626684239 -14.23931561735597 -9.64846988615342 -14.15920716125022 -9.356341775336516 -14.25036985130444 8.314302669057607 -14.54647509631868 8.351208741690044 -14.47606596013724 8.612018580897297 -14.46727170186682 -7.874674711645378 13.0703121279486 -7.909382922154723 13.00355435605076 -8.229363370231875 13.01266036622991 -9.200888312076378 7.716063763747422 -9.228446260163334 7.62810248980347 -9.604637102843647 7.63196129370947 -9.731521732947766 0.3128026427261059 -9.726711675644653 0.2117124118050615 -10.15395803252766 0.2139131077134052 -11.06188080428233 -0.3900423914164883 -11.06651790623856 -0.5083858982375872 -11.50739327296986 -0.507336005217475 -11.10900066089257 -3.468773843369492 -11.10440731392674 -3.587115263248207 -11.55738433878191 -3.587404476404805 -11.05269642612473 -4.013668789078606 -11.05913092582625 -4.114699164534456 -11.50000618465159 -4.116336946823259 -9.644629174803402 -10.5877045246411 -9.61875971287736 -10.67598751597022 -10.04599557022101 -10.67961988343205 -0.7313022409280223 -12.71903327725996 -0.7162983972724635 -12.81265723100193 -1.929195131025896 -12.81265723100193 6.047427482856627 -12.02048803427564 4.555350795331638 -12.02048900192059 6.037385524928208 -11.9299382382272 6.044733395853727 -11.96373588251265 4.562728162852848 -12.05458491008635 4.565372695501758 -11.96373588251265 -19.13281915548478 -2.677617379175354 -19.22662532336866 -2.70120123346108 -19.33567460291308 -2.354519640129916 -18.80792778166735 -2.290597024990281 -18.7506233124425 -2.69312374254919 -18.95766314796141 -2.371672764704971 5.049393773078919 13.44225764041227 4.686544239521028 13.60910229782351 5.049393773078919 13.60910229782351 -19.72465195860826 -1.872689394452899 -19.78692607458605 -2.233208412698209 -19.91871488476029 -1.805375217318498 18.96065782700875 -0.9014312385492096 18.86867452091106 -0.6602465080778366 18.92955453951317 -0.4757372335720102 -19.98049274172801 -1.531577379917239 -19.97388192775903 -1.95794251587571 -20.05204745036232 -1.89102883843251 19.41606164962303 -1.137152569665585 19.37617823093496 -0.7943060405164421 19.46297723682424 -1.036676948636391 -4.609013165908317 4.244034893684437 -6.03714191537718 4.244034893684436 -4.607335193697341 4.35106633479906 5.961475705594768 -0.07487620678720416 4.536324607044228 -0.07487620678720394 4.53573828578471 0.04223422879136592 -4.609013165908317 0.03046803522357362 -6.034750327903938 -0.08663088252388675 -6.03714191537718 0.03046803522357362 5.961475705594768 -3.889037147989022 5.963871796437454 -4.006137218737282 4.53632460704423 -3.889037147989022 2.580668397781054 -4.009650183868443 1.546464556103274 -4.009650183868443 2.575145488151038 -3.892615606872484 -1.490413644686014 -8.048534463857896 -2.548261358666484 -8.048534463857896 -2.532824772750701 -7.942192257001909 2.580668397781056 -8.498388385117684 1.53855837293821 -8.606580699121144 1.546464556103276 -8.498388385117684 -2.548261358666482 -12.89452278500166 -1.490413644686011 -12.89452278500166 -1.478094259329754 -12.98838747392245 8.127325805352195 -12.04608252682808 7.866329681399593 -12.05022794831653 8.110494136636552 -11.9526537920919 9.69167276843638 -10.55736549001929 10.09303711034639 -10.64928026616558 9.665805314844198 -10.64564792172906 11.10109676368728 -4.106572517366085 11.09466221611444 -4.005542143797015 11.54197135609249 -4.1082102996243 0.7996088669677953 -12.70189029515711 1.997501705891756 -12.79551465409046 0.7846033412746861 -12.79551465409046 11.14623008516814 -3.581298962871853 11.15082302239242 -3.462957587042447 11.59920578154974 -3.5815881759208 -4.480483835384518 -12.01913765601633 -5.972563501461573 -12.01913668837068 -5.962517963969264 -11.92858682781568 11.10845729119374 -0.5141889211814835 11.10382056253397 -0.3958454591988279 11.54933199150644 -0.5131390285591592 9.773404801169409 0.2038562044241398 9.778215120696375 0.3049464276235968 10.20064709599586 0.2060569001643874 9.652907369034246 7.602326676393322 9.276718422415952 7.598467899525356 9.249162077638447 7.686428557138511 8.28170625625744 12.97315601374789 7.961728231203193 12.96404963741902 7.92701721011836 13.03081009362518 18.75949479111181 -2.68298020751688 18.81679885272213 -2.280453714248502 18.96653425854302 -2.361529408787258 19.23139801201328 -2.689451701497159 19.13759183695888 -2.665867864861596 19.34044707240945 -2.342770367622618 -4.490503210843826 -11.96238721875293 -4.487858677129998 -12.05323624630745 -5.969863315477971 -11.96238721875293 -8.663158878813899 -14.42652604764428 -8.402350720291743 -14.43532004108953 -8.365447939979076 -14.50572705701122 15.46335916394793 -10.60892281156017 15.15066046890538 -10.60892281156017 15.4605718920975 -10.53279436171911 -15.29970092633747 9.305762693544153 -14.99859668636053 9.305762693544153 -15.29624746796896 9.23368831106178 -15.44113742569023 5.340529677294571 -15.72983750475899 5.24998906567549 -15.73376769121119 5.34052967729457 -14.98663259470132 -0.5193083408391356 -15.27171154115017 -0.6200326321203501 -15.2836478343792 -0.5193083408391356 -15.00300206834774 -0.6824902856178123 -15.29705297699152 -0.8008897544279089 -15.29735971942515 -0.6824902856178123 -15.2836478343792 -3.177385094368122 -14.98663259470132 -3.177385094368122 -15.28393654950007 -3.295781449767732 -15.73376769121119 -3.248296663348741 -15.44113742569023 -3.248296663348741 -15.74634910072259 -3.348968410168124 -15.29970092633748 -8.467577620774065 -14.99859668636054 -8.467577620774065 -15.30109726509389 -8.558169169191881 -9.170686243752215 -11.31038111380704 -9.569906803357572 -11.40790835860952 -9.546865027032169 -11.31530059948072 -0.8655783579390791 -12.20994719597754 -2.063998346223663 -12.29929923647023 -2.042807883044057 -12.20994719597754 6.032847801229052 -15.26743859805111 6.044733395853726 -15.34433456450821 4.565372695501758 -15.34433456450821 4.578089119545712 -15.27181098915321 6.042443522549657 -15.27181098915321 4.575014081597541 -15.34924436875584 -19.68978159165452 -2.293963292161629 -19.78360930459403 -2.270426643519187 -19.82425638726421 -1.866647650281283 19.78048424304985 -2.221722100294466 19.71821042565488 -1.861203340651838 19.91227337887101 -1.793889211802343 19.95944976798924 -1.947520684372979 19.96606127535994 -1.521155800721344 20.03761534536724 -1.880607046526774 -4.601408956055971 9.271815676683524 -6.038038690505769 9.271815676683522 -4.598875089223176 9.362670027227752 5.962275391711477 4.24330835415043 4.534141876238193 4.243308354150429 4.532463909626989 4.35033979531938 -4.601408956055971 4.30787130089876 -6.031231801022802 4.200973234703139 -6.038038690505768 4.30787130089876 5.962275391711476 0.03024645439678193 5.959880823535986 -0.08685247252196932 4.534141876238193 0.03024645439678193 2.476153838318579 -0.08152662073299774 1.448475082256825 -0.08152662073299774 2.481589082294483 0.0355093323322735 -1.613661316306823 -4.00664585757511 -2.647858214491436 -4.00664585757511 -2.642337916068863 -3.889611157446968 2.476153838318576 -3.366939655412789 1.447397692994427 -3.483564387562972 1.448475082256822 -3.366939655412789 -1.613661316306821 -8.487591882161246 -1.605754788234128 -8.595784290817457 -2.647858214491436 -8.487591882161246 6.6776721177237 -8.26850753411134 6.465933012836835 -8.270891193067653 6.670723983068755 -8.160274527676586 -8.179911047886003 -12.01633978017662 -8.16308171009161 -11.92290944819252 -7.918916619656993 -12.02048527253476 6.515334858398953 -11.26382444313159 6.553415841722168 -11.17832569057235 6.765147003713963 -11.17553940940338 15.02202243247326 -8.429644127596799 15.32312760948885 -8.429644127596799 15.32452377666325 -8.520234777394641 9.595311194915702 -11.28366783139316 9.618352304145599 -11.37627627152644 9.219134308971217 -11.27874830954333 15.46211492777181 -3.240215589930534 15.7547468827891 -3.240215589930534 15.76732793248971 -3.340887364577219 2.110902209731041 -12.19347232815999 2.132089323736721 -12.28282517451938 0.9336694325431699 -12.19347232815999 15.0101056246541 -3.170566056938317 15.30712256202268 -3.170566056938317 15.30741115185396 -3.288962358661077 15.32066409723172 -0.8077351146625333 15.02661315338168 -0.6893356999620466 15.3209709925307 -0.6893356999620466 15.29518659165885 -0.6282128187308306 15.01010562465411 -0.5274885037723215 15.30712256202268 -0.5274885037723215 15.75081771334134 5.211752358278227 15.46211492777181 5.302292096450603 15.75474688278911 5.302292096450603 15.32312760948885 9.253044120185663 15.31967646468605 9.180966345238184 15.02202243247326 9.253044120185663 19.77908576945749 -2.259271994055478 19.68525805006725 -2.282808626784016 19.81973307066181 -1.855493273825868 -4.503218956355878 -15.26997096044538 -4.500143919658692 -15.34740434007876 -5.967573955087234 -15.26997096044538 -5.95797891353612 -15.2655721743769 -4.490503210843827 -15.34246811125649 -5.969863315477973 -15.34246811125649 -15.48594779083108 -10.55551571529595 -15.48315975889287 -10.47939023135501 -15.17324855490909 -10.55551571529595 15.7114721802048 -10.13036465378344 15.68691514941947 -10.04414893753694 16.01708444038077 -10.04414893753694 -15.1668191078759 9.234871470267324 -15.15066046890538 9.160017322859506 -15.46335916394793 9.160017322859506 -15.00862113548088 4.998656138367536 -14.99859668636054 4.912960297695726 -15.29970092633747 4.912960297695726 -15.44951183108844 0.2103160872656308 -15.44113742569023 0.1081623766247779 -15.73376769121119 0.1081623766247779 -14.98957904088851 -0.7018823012797399 -14.98663259470132 -0.820254278292991 -15.2836478343792 -0.820254278292991 -15.00003788106573 -3.155892365437515 -15.00300206834774 -3.274260926143993 -15.29735971942515 -3.274260926143993 -14.97925661821838 -4.127858398099161 -14.98663259470132 -4.23005584520005 -15.2836478343792 -4.23005584520005 -15.42889186415092 -7.762435691660009 -15.44113742569023 -7.847957855214205 -15.73376769121119 -7.847957855214205 -14.98357338336505 -10.55388201517499 -14.99859668636054 -10.62888111751612 -15.29970092633747 -10.62888111751612 -8.824823626942271 -14.12489571325095 -8.794080268872612 -14.19284427826379 -9.170089165605129 -14.20300702134653 -0.8826350129102212 -15.92375036724437 -0.8655783579390697 -16.00567808604854 -2.042807883044047 -16.00567808604854 -1.050483690564914 -15.82923519957291 -2.211437211425421 -15.90400693072866 -2.185710194233281 -15.82923519957291 -6.030513669705284 14.16644362764167 -6.042443522549659 14.24333609920092 -4.578089119545712 14.24333609920092 -4.590927172236486 14.17802120568929 -6.040276786812616 14.17802120568929 -4.58789892625582 14.25545751748922 5.96317034262518 9.270523289539652 4.526537629451313 9.270523289539652 4.524003767872253 9.361377640174554 -4.590927172236486 9.318216910614718 -6.030122993531732 9.227678957809356 -6.040276786812616 9.318216910614718 5.963170342625178 4.307137113572084 5.956365236892629 4.200239064899323 4.526537629451314 4.307137113572084 2.580668397781054 4.226768642287551 1.546464556103275 4.226768642287551 2.596393690121083 4.33308345358001 -1.515796929642288 -0.08450018169509035 -2.543472473262476 -0.08450018169509035 -2.548905067545308 0.03253589439603184 2.580668397781052 -0.5085529354970522 1.547479105901426 -0.6251768485774619 1.546464556103273 -0.5085529354970519 -1.515796929642288 -3.364648213406738 -1.514720630772632 -3.481272910079917 -2.543472473262476 -3.364648213406738 5.301970907146547 -3.435856086462512 5.122380014925482 -3.436902553364898 5.300567009919858 -3.319233503802847 -6.522399165103879 -8.254818544593391 -6.734136917726277 -8.252434883096971 -6.727188912143367 -8.144201761325455 5.130792201892552 -7.109309396465209 5.159518850826261 -7.003947812433165 5.339109200491081 -7.00284522868404 -6.821393137669627 -11.15121937687499 -6.60966332883516 -11.15400569981857 -6.571580074568978 -11.23950573425742 15.68691514941947 -8.313956844572193 16.01130909436 -8.223475798903641 16.01708444038077 -8.313956844572193 15.00700185472502 -10.50086241382568 15.32312760948885 -10.57586585104739 15.02202243247326 -10.57586585104739 15.46211492777181 -7.812702149595211 15.44987103714391 -7.727179303403415 15.75474688278911 -7.812702149595211 8.874415679096611 -14.0833870487067 9.219676513622714 -14.16150151219486 8.843669532248601 -14.15133835857689 15.01010562465411 -4.21760143079724 15.00272995593065 -4.115404060723963 15.30712256202268 -4.217601430797241 0.9507300078925474 -15.90024312151012 2.110902209731035 -15.98217213411584 0.9336694325431638 -15.98217213411584 15.02661315338167 -3.267215297547446 15.0236473080955 -3.148847216089724 15.3209709925307 -3.267215297547446 15.01010562465411 -0.8272897564913471 15.01305345961021 -0.7089182544098032 15.30712256202268 -0.8272897564913471 15.46211492777181 0.09569302719149637 15.47048894150539 0.1978466668897259 15.75474688278911 0.09569302719149637 15.02202243247326 4.877885897656243 15.03204586218669 4.963582345625581 15.32312760948885 4.877885897656243 15.48594779083108 9.106820843174218 15.17324855490909 9.106820843174218 15.18940489824317 9.181679302055864 4.516055793173837 14.17620921522614 4.513027548437893 14.25364552705619 5.965406003487029 14.17620921522614 5.955644101001473 14.1646048661961 4.503218956355878 14.24149733763617 5.967573955087234 14.24149733763617 2.253585044652437 -15.80549481303079 2.279313202063853 -15.8802661536584 1.118360160867012 -15.80549481303079 -16.03646536591912 -9.98953066762771 -15.70629498706582 -9.98953066762771 -15.73085244048429 -10.0757418179448 -9.691790315408117 -12.66057836863902 -9.713998895841865 -12.46082576638666 -9.592025503009758 -12.61999545698963 -19.38355668723695 -4.849280978589558 -19.22797954663386 -4.68492067644751 -19.29867559749668 -4.885420632541788 -19.65355374764422 -0.1876257909771591 -19.83106337048672 -0.3626433077867314 -19.87527749914726 -0.2839274121714716 -17.82394544450362 -0.5795170116679241 -18.04243545583606 -0.7263208742847903 -18.05720797763103 -0.624616735940446 -17.52329737790185 -1.128318286865405 -17.75279379070075 -1.246811770317144 -17.75986485325772 -1.128547848127118 -17.84463983667688 -2.716384265512863 -17.61117615647032 -2.760379019697464 -17.85187049601123 -2.834639070439923 -18.72812638482233 -2.907042865882481 -18.49785025410326 -2.989545482403961 -18.74496551268442 -3.008544142958534 -19.98336525213728 -2.619792609283633 -19.77616602255682 -2.743600817854579 -20.03000983968968 -2.697641230362282 -19.07521880107368 2.222549238425893 -19.28863543162263 2.360351055835429 -19.20319018112049 2.395655766345168 -15.15066046890538 -10.38957659428272 -15.4678996499368 -10.46161236820582 -15.46335916394793 -10.38957659428272 -7.592980592543337 -14.72278805579691 -7.931323689259743 -14.81781382894436 -7.912733424243109 -14.73609284126878 1.066715171206866 14.87922337145254 1.050483690564915 14.9612663398651 2.185710194233282 14.9612663398651 1.246773391632629 14.68378374546087 2.366609997996232 14.75838297211304 2.340082606993036 14.68378374546087 5.965406003487029 9.316907204223755 5.955254592107321 9.22636929298281 4.516055793173837 9.316907204223753 1.423050836975679 9.408630203324389 2.504008705394735 9.497683835261139 2.480903371497714 9.408630203324389 -1.613661316306823 4.216833965123685 -2.647858214491436 4.216833965123685 -2.66358527831016 4.323148525969196 2.480903371497709 4.956565244715231 1.431281496542692 4.848389187239793 1.423050836975673 4.95656524471523 -1.613661316306823 -0.5108695198862523 -1.614674755282457 -0.6274933972356864 -2.647858214491436 -0.5108695198862521 5.581476603007155 -0.6805588062504455 5.41338949362268 -0.6802705431518155 5.583064466256579 -0.5639388517518161 -5.181810821326999 -3.433770564486227 -5.361405040645122 -3.432724098009614 -5.36000037290997 -3.31610156279985 5.573471488986977 -3.563565990905814 5.395482428849181 -3.681420280371785 5.405384380871043 -3.56327727041682 -5.218859508223209 -6.99200057020482 -5.190136506454993 -7.097361217876384 -5.398453185088338 -6.990897996254484 14.88039625808592 -6.049177235414322 15.21748049650793 -5.941420586126752 15.21811730717534 -6.049177235414322 -16.03069190279564 -8.185171423605269 -15.70629498706582 -8.275654346415315 -16.03646536591912 -8.275654346415315 14.8895366535659 -7.82661596848238 14.88039625808593 -7.746024320254646 15.21811730717534 -7.746024320254646 19.02606839773496 2.256506534682424 19.15403259842444 2.429616522993429 19.2394830470427 2.394311106744111 15.48594779083108 -10.33653502102502 15.49048636236317 -10.40857419527562 15.17324855490909 -10.33653502102502 19.75600973124104 -2.714071717270739 19.9632084087255 -2.590263207330954 20.00985406907348 -2.668112017905508 7.965972928466415 -14.69621602469888 7.98456087767152 -14.77793914185571 7.646222527975709 -14.6829108925316 18.49592406243902 -2.978197317817065 18.72620003535318 -2.895694800358196 18.74303946008466 -2.997195955559551 17.61693882169307 -2.753566207606559 17.85040236961077 -2.70957162793011 17.8576334275191 -2.827825963791534 17.75939437792321 -1.253691370720623 17.5298988979745 -1.135198367111765 17.76646611515011 -1.135427927443862 18.04657186683278 -0.7382075998340181 17.82808222336632 -0.5914038944870823 18.06134458600063 -0.6365035704445915 19.81430039918641 -0.3934265245109556 19.63679235280653 -0.2184086574765198 19.85851574560294 -0.3147104713785267 19.33533831004069 -4.884288843118547 19.25045193748908 -4.92042911361338 19.17976630410968 -4.719925736989262 -2.407650944052344 14.65960892399736 -2.434178292636242 14.73420815998433 -1.31434065327856 14.65960892399736 -1.134588874954071 14.85525742460412 -2.253585044652435 14.93729944855732 -1.118360160867011 14.93729944855732 9.617296553904486 -12.66500159933754 9.517538033774816 -12.6244186570386 9.639505159001477 -12.46524884622546 -8.348870233178907 -12.71452028932761 -8.285797666476661 -12.69012230195108 -8.214562814956576 -12.86742169281624 -18.26962030106745 -6.321678590382891 -18.20580946819558 -6.344842556523926 -18.31228988078171 -6.527023297727342 -20.0176928318019 -1.364111028346354 -19.97740045059154 -1.416793138344588 -20.17402113757889 -1.551212762328492 -19.20516685026805 -0.1514455281133151 -19.18609610962371 -0.2190984511117832 -19.41311367953923 -0.3074381544577679 -17.67416945040313 -0.971600351689575 -17.66995277574447 -1.045853337287439 -17.90337358244077 -1.090443414968429 -17.51628493294478 -2.958314624085006 -17.52029699570496 -3.032574277155831 -17.75686446996305 -3.032804537444579 -18.30652781387649 -4.314869983319435 -18.32123859860547 -4.38319247403253 -18.55345877405838 -4.335297809494179 -19.88292975625511 -2.43110911045672 -19.92024185688072 -2.485132106889783 -20.13522941088246 -2.380158619234217 -18.46166333929716 3.682637282770554 -18.59763165040474 3.857152589259791 -18.39842742323149 3.706758269414646 -7.978014589064561 10.65448200121277 -7.935765208984162 10.85195564554562 -7.915461067359663 10.62926959620017 15.15066046890538 9.563056658643538 15.46335916394792 9.563056658643538 15.13071507699757 9.476108580649944 9.365389491392346 12.82429154073632 9.333231225800933 12.89612594592658 9.65309354528778 12.88456395601899 8.658719233181996 13.33630972377719 8.943388862302919 13.4049215920979 8.919316626974984 13.32407923516827 1.259774571595104 10.10164871144983 1.246773391632616 10.19545538944987 2.340082606993024 10.19545538944987 -2.548261358666484 9.391118389780145 -2.571369004689898 9.480171440153075 -1.490413644686015 9.391118389780145 -1.490413644686015 4.945903461583451 -1.498644713387319 4.837727313105533 -2.548261358666485 4.945903461583451 5.39174599264131 4.676365261466075 5.212157525850023 4.67814160123558 5.394906863333667 4.784706386250813 -5.472181395963654 -0.6834580342270553 -5.640271324742957 -0.6837462972064924 -5.64185996059949 -0.5671263909287087 5.312351299946323 -0.3136682266879932 5.142869273387641 -0.4301738445479654 5.132760493972358 -0.3120448232940665 -5.454294017722256 -3.677656071289764 -5.632285628908424 -3.559801821789036 -5.464195701397696 -3.55951310139795 14.84063769401802 -3.380259162047009 15.18577900417103 -3.26185971708987 15.18595468460332 -3.380259162047009 -15.24130194941138 -5.919889781147626 -14.90421775913593 -6.027644908858769 -15.24193995183978 -6.027644908858769 14.84874765343728 -6.011659752450758 14.84063769401802 -5.904141119940886 15.18595468460332 -5.904141119940886 -14.90421775913593 -7.714855940669859 -14.91335624095274 -7.795449382657618 -15.24193995183978 -7.714855940669859 6.07413098284888 -9.966587740241058 6.052751336910597 -10.0457322227141 5.87941875266081 -9.919309661669212 7.840549175481191 10.6290490144039 7.860849705980102 10.85173505516317 7.903100309075954 10.65426141844438 18.34389530544001 3.739275975397719 18.54309953293489 3.889671079150379 18.40713350634971 3.715154863026652 -15.15330176001074 9.422006758451859 -15.48594779083108 9.508950183664904 -15.17324855490909 9.508950183664904 19.8969724458157 -2.449373366132012 19.85965982852327 -2.395350590533483 20.11196010793283 -2.344400307585765 -9.413435376015551 12.78134491258663 -9.701140325193906 12.84161546867074 -9.381280391948785 12.85317710193036 18.3211164608359 -4.35912086594477 18.30640528909486 -4.290798043421902 18.55333637234671 -4.311225968804862 17.52692274457307 -3.024050899505027 17.52290995029941 -2.949791951472361 17.76348996065288 -3.024281157607632 17.67517820574421 -1.05432127111724 17.67939522910824 -0.9800689784134583 17.90859895542022 -1.09891093270451 19.17654482217115 -0.2418173010313325 19.19561638993978 -0.1741641351521039 19.40356197441698 -0.3301573215256888 19.94916318742726 -1.450260333309652 19.9894558707789 -1.397578366317186 20.14578400235407 -1.584679592411025 18.25653184107658 -6.55787781846958 18.15005578636333 -6.375695333792005 18.2138688302574 -6.352531145971249 -1.327345637163402 10.083661662458 -2.407650944052354 10.17746934616758 -1.314340653278568 10.17746934616759 -8.969535605905968 13.28203736354265 -8.993610370704918 13.3628779521194 -8.708939888320259 13.29426758462078 8.139676247078629 -12.86816259583665 8.210908009611323 -12.69086320744336 8.273978207441394 -12.71526119447974 -12.78274387722732 -6.365614854307423 -12.85013894276203 -6.381307745137489 -12.86009693609806 -6.18552628458628 -15.78946505816563 -5.510541726443739 -15.85685088002671 -5.494847306285777 -15.78013292210458 -5.314741186294477 -17.8416253924724 -4.205936875219305 -17.89662173176317 -4.162252455235499 -17.75085943067127 -4.029919296213584 -18.73492209816997 -2.986942577111664 -18.88587297080539 -3.115625688304565 -18.92092603351418 -3.052052087977587 -19.08382523072946 -2.297553636979063 -19.27044217847237 -2.36156841028472 -19.2823972448122 -2.287838757801712 -19.22438961449992 -1.632404227412163 -19.03782283819056 -1.715842692447699 -19.23639490486517 -1.706128478536877 -18.74223579387762 -0.8065263520552668 -18.59198109796248 -0.9547140616795583 -18.77760881278337 -0.869989378480578 -17.54122458466774 0.1184337390716796 -17.68579234691721 0.2700819306560698 -17.6304287660604 0.3134777680939756 -15.65646630459152 1.291234755797375 -15.7323386476556 1.48973944020916 -15.66488296606815 1.505248688255905 -12.9367457267672 2.211256775862102 -13.0132550779171 2.012766795441328 -13.00421049433906 2.226764875080322 -9.843270666827925 9.942780775254487 -9.888396610315738 10.1631985964147 -9.788166085982898 10.12333448897309 15.68691514941947 8.786710331342688 16.0238749337508 8.86268155512165 16.01708444038077 8.786710331342688 7.897678810089994 8.027416426002192 7.864543301827258 8.114184752327695 8.125539781929545 8.109627824716947 6.673049848220581 9.469715966396223 6.896084339222137 9.559746333869635 6.884762958644726 9.465804985259812 -5.271379763675692 4.6632943912561 -5.450971557570048 4.661518049302336 -5.454131147372023 4.769859307307832 6.677170504544652 3.410883337648484 6.491090664057091 3.307947080044089 6.465431366870718 3.413794575316653 -5.202275551431507 -0.4338439809994849 -5.371761164807856 -0.3173384028208116 -5.192167031731167 -0.3157149999798093 15.1753449570544 -0.7137339373397769 14.82737263025975 -0.7137339373397769 15.17550626670093 -0.5953376211913491 -15.21005229255512 -3.255013659375607 -14.86491272747025 -3.373413050099153 -15.21022837451268 -3.373413050099153 14.83018938232627 -3.363247504567183 14.82737263025975 -3.244873795772628 15.1753449570544 -3.244873795772628 -14.86491272747025 -5.883240749762564 -14.87302250707226 -5.990760022550326 -15.21022837451268 -5.883240749762564 10.16320062559679 -7.037031182269035 10.35410713240962 -7.017393499742548 10.34700273135151 -7.12495615122071 -6.10914123146968 -10.02512542648012 -6.130524663523904 -9.945979887175954 -5.935811910440053 -9.898701177291059 4.439032976970478 -11.98340202401183 4.468619694421044 -11.92649294888146 4.630761698629476 -12.03770408049976 12.941697311043 2.018454057509577 12.86518640303935 2.216944390881896 12.93264894552412 2.232452517676358 9.768878972063599 9.947686821193569 9.713778591995073 10.12824057167612 9.814002868135006 10.16810468723477 15.6659813934412 1.499018471902721 15.59011232929354 1.300513219207083 15.59852351378556 1.514527764349704 -15.70629498706582 8.732666998645161 -16.03646536591912 8.732666998645161 -16.04325582618906 8.808635269477087 17.62672952931197 0.2801970374289753 17.48216341514532 0.128548661864497 17.57136601513961 0.323592927514855 18.53923678922872 -0.9469091429666696 18.68948976418842 -0.7987211602002733 18.72486364052563 -0.8621843036017132 18.9891225781716 -1.713194037408865 19.17568880158024 -1.629755837601254 19.18768961402955 -1.703479854376856 19.22216787145841 -2.364303168194035 19.03555155082161 -2.300288606453789 19.23411853418363 -2.290573759383596 18.8342591331913 -3.123954853184598 18.68330990625126 -2.995271476320575 18.86931301872998 -3.06038112160753 17.83863199804143 -4.173434737613167 17.78363573912622 -4.217119220216832 17.69287130051369 -4.041101388896995 15.79085600446988 -5.505157165192947 15.72346798640699 -5.520851640241356 15.71414130288766 -5.325050415289506 -6.94070064484745 9.437924505789244 -6.952019441919244 9.531867377155223 -6.728988888700038 9.441835550321279 -7.95027424563846 8.000646900380163 -8.17813151795796 8.082859631654044 -7.917136733841961 8.087416633127729 12.77835483883574 -6.387302547985668 12.71096200259839 -6.371609624830847 12.78831666929671 -6.191520684157089 -9.68092843336105 -6.120881596644153 -9.735939489592669 -6.16455774489523 -9.827290752882114 -5.988573495171885 -10.07394446695215 1.952842852432265 -10.21911948003686 1.801217886282871 -10.12932053946803 1.996232043650448 2.413905613590869 8.735847419225193 2.379310964445952 8.790980780609035 2.53426046563354 8.93105476926039 15.67423082878306 3.968712718113738 15.68691514941947 4.049011524292988 16.01708444038077 4.049011524292988 15.21811730717534 5.80085919864991 14.88039625808593 5.800859198649909 15.2190775342545 5.891455222201265 -6.547544681720589 3.294471620129648 -6.733627439126202 3.397406998346797 -6.521889653117752 3.400318211144182 15.18595468460332 2.248110681458929 14.84063769401802 2.248110681458929 15.18646775344484 2.355864921485728 -14.85159354600209 -0.720568210412048 -15.19956548803766 -0.720568210412048 -15.19972704947418 -0.6021719483419815 14.83780678440374 -0.7339876700204291 14.84063769401802 -0.6156173123829684 15.18595468460332 -0.6156173123829684 -14.85159354600209 -3.237951948498318 -14.85441151087351 -3.356325337016881 -15.19956548803767 -3.237951948498318 12.05741482513919 -3.563240662441386 12.24195836344508 -3.489354483544652 12.24154061641983 -3.607748473706828 -10.39766087355002 -6.999490266505816 -10.20675364225036 -7.019128052741568 -10.39055491731616 -7.107053486036927 10.2975001942721 -7.633555202672231 10.30599075633745 -7.564584601157192 10.48832644754952 -7.613440602891981 -4.690710747276611 -12.01390608707657 -4.528570604954117 -11.90269375807636 -4.498981510604737 -11.95960344593224 10.14467526126418 1.803192736996237 9.999495264955684 1.954817680861395 10.05487363302272 1.998206865702695 -2.478268632430267 8.716361066160564 -2.598617818886321 8.911570221728214 -2.443671634953325 8.771494937489718 -15.70629498706582 4.017592829726342 -15.69361245066309 3.937292183630611 -16.03646536591912 4.017592829726342 -14.90421775913593 5.763260575988522 -15.24193995183978 5.763260575988522 -15.24289825157169 5.853858412660615 9.661321327434161 -6.166279363329495 9.606307960399429 -6.122603221429672 9.752675213521918 -5.990295139197252 -7.395537909747889 -4.830922892375976 -7.430609113530139 -4.894486908002942 -7.582130724041725 -4.765823197772249 -7.775983267541528 0.7476408337632816 -7.962203837859102 0.6629274849558876 -7.811371043444507 0.8110953701622439 7.766607095408951 6.515231945749315 7.590830213999094 6.418063621011885 7.750224525147358 6.595115452111634 14.87216447635101 2.179947425949198 14.88039625808592 2.287457504881583 15.21811730717534 2.287457504881584 -14.86491272747025 2.226444157171185 -15.21022837451267 2.226444157171185 -15.21074376780526 2.334196873085406 -14.86491272747025 -0.6225643843096979 -14.86208045979548 -0.7409344194215524 -15.21022837451268 -0.6225643843096981 12.41469233972847 -0.5002694550396616 12.23169637368569 -0.5000396405644378 12.41447618763021 -0.3818782724980979 -12.27825252498836 -3.482855020088215 -12.09370982983083 -3.556741012596679 -12.277836473803 -3.601248711584913 12.22372091515855 -3.796425702544841 12.22513709523424 -3.722106338661855 12.40813305999706 -3.722336782997072 -10.34901622437447 -7.543969645772952 -10.34052578346923 -7.612940066679143 -10.53135278775586 -7.592825519571694 7.887300302356735 0.6628454520420777 7.701075561955177 0.747558799260738 7.736462743421062 0.8110133344696594 -7.642527278143381 6.394943276232301 -7.81830235691293 6.492113066751919 -7.801916090519243 6.571997778155295 -14.90421775913592 2.266675886894497 -14.89598725529453 2.159165115481537 -15.24193995183978 2.266675886894497 7.355734855273431 -4.894160274590968 7.320664240262901 -4.830596263918473 7.507261218016874 -4.765496574388916 -6.338988225187498 -3.044192736994829 -6.526187453215318 -2.980179495076612 -6.327008858612708 -2.970464848302552 -6.478766604773241 -1.044994264491359 -6.677945251180706 -1.054708253937041 -6.490795495926419 -0.9712717169038074 9.610606299620715 4.026767889582137 9.600603974387786 4.095612210845925 9.782930967972504 4.184999620950642 10.84047123466893 3.232022608900226 10.65762112611577 3.184796505463652 10.83485398750863 3.33963684896644 -12.26747683539415 -0.5066035206759694 -12.45047166792699 -0.5068333345684198 -12.45025742428145 -0.3884424522482105 11.96646711559798 -0.2245792295362926 11.96483023268117 -0.1502630192217587 12.14891252852914 -0.1060984740581887 -12.26094568485028 -3.714805528299638 -12.25952937471671 -3.789124952490278 -12.4439405161016 -3.715035972821853 6.603293950145228 -1.054998462077994 6.404110550950738 -1.045284472474634 6.416140047648382 -0.9715619236904124 -9.646317743629719 4.075727575063625 -9.656319410185724 4.006883384766423 -9.828644396363487 4.165114815121433 -10.69924566447718 3.16651825694732 -10.88209648364179 3.21374460925405 -10.8764772486745 3.321359416421312 6.451588298678992 -2.979853689228417 6.264384924186519 -3.043866932336237 6.252404951289926 -2.970139042273824 -12.0013834934214 -0.1574555205813113 -12.00302080340579 -0.2317717869179218 -12.18546658538891 -0.1132909421250119</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"1820\" source=\"#ID260\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID256\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID254\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID255\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"636\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 12 6 13 7 14 8 18 9 19 10 20 11 24 12 25 13 26 14 7 4 30 15 8 5 32 16 33 17 34 18 20 19 19 20 38 21 40 22 41 23 42 24 46 25 47 26 48 27 52 28 53 29 54 30 54 31 58 32 59 33 62 34 63 35 64 36 30 15 68 37 8 5 70 38 32 16 34 18 38 39 72 40 73 41 48 42 47 43 76 44 19 45 72 46 38 47 78 48 79 49 80 50 84 51 85 52 86 53 79 54 90 55 91 56 94 57 53 58 52 59 52 60 54 61 59 62 59 63 58 64 96 65 98 66 8 5 99 67 102 68 103 69 104 70 68 37 108 71 8 5 110 72 70 38 34 18 73 73 112 74 113 75 116 76 76 77 117 78 72 79 112 80 73 81 116 82 48 83 76 84 94 85 72 86 53 87 78 88 80 89 120 90 79 91 91 92 80 93 34 18 122 94 123 95 126 96 127 97 128 98 90 99 132 100 91 101 134 102 135 103 136 104 140 105 141 106 134 107 144 108 140 109 145 110 58 111 148 112 96 113 104 114 103 115 150 116 99 67 8 5 152 117 108 71 154 118 8 5 156 119 110 72 34 18 113 120 158 121 159 122 162 123 117 124 163 125 113 126 112 127 158 128 162 129 116 130 117 131 72 132 166 133 112 134 116 135 132 136 90 137 94 138 166 139 72 140 168 141 169 142 170 143 174 144 78 145 120 146 169 147 176 148 177 149 34 18 123 95 180 150 182 151 126 152 128 153 176 154 184 155 185 156 135 103 188 157 136 104 141 106 135 158 134 107 141 159 140 109 144 108 144 160 145 161 190 162 96 163 148 164 192 165 104 166 150 167 194 168 194 169 150 170 196 171 152 117 8 5 198 172 154 118 200 173 8 5 202 174 156 119 34 18 159 175 204 176 205 177 208 178 163 179 209 180 159 181 158 182 204 183 208 184 162 185 163 186 112 187 212 188 158 189 214 190 116 191 162 192 166 193 212 194 112 195 214 196 132 197 116 198 94 199 216 200 166 201 168 202 170 203 218 204 169 205 177 206 170 207 174 208 120 209 220 210 177 149 176 148 185 211 34 18 180 150 222 212 182 213 224 214 225 215 182 216 128 217 224 218 185 156 184 155 228 219 230 220 231 221 232 222 236 223 232 224 237 225 240 226 237 227 241 228 244 229 241 230 245 231 190 162 145 161 248 232 148 233 250 234 192 235 194 236 196 237 252 238 252 239 196 240 254 241 8 5 256 242 198 172 8 5 200 173 258 243 260 244 202 174 34 18 205 245 262 246 263 247 266 248 209 249 267 250 205 251 204 252 262 253 266 254 208 255 209 256 158 257 270 258 204 259 272 260 162 261 208 262 158 263 212 264 270 265 272 266 214 267 162 268 166 269 274 270 212 271 276 272 132 273 214 274 166 201 216 200 274 275 278 276 279 277 280 278 284 279 168 202 218 204 286 280 287 281 278 282 290 283 174 284 220 285 292 286 293 287 286 288 296 289 34 18 222 212 298 290 225 291 299 292 225 293 224 294 299 295 292 296 302 297 303 298 306 299 231 300 230 301 230 302 232 303 236 304 236 305 237 306 240 307 244 308 240 309 241 310 308 311 244 312 245 313 190 314 248 315 310 316 192 317 250 318 312 319 250 320 314 321 312 322 252 323 254 324 316 325 316 326 254 327 318 328 8 5 320 329 256 242 8 5 258 243 322 330 324 331 260 244 34 18 263 332 326 333 327 334 330 335 267 336 331 337 263 338 262 339 326 340 330 341 266 342 267 343 204 344 334 345 262 346 336 347 208 348 266 349 204 350 270 351 334 352 272 353 208 354 336 355 212 356 338 357 270 358 340 359 214 360 272 361 212 271 274 270 338 362 340 363 342 272 214 274 274 364 231 365 306 366 279 367 344 368 280 369 287 370 279 371 278 372 284 373 218 374 346 375 286 376 293 377 287 378 290 379 220 380 348 381 292 382 303 383 293 384 350 385 34 18 296 289 352 386 298 387 353 388 298 389 299 390 353 391 356 392 290 393 348 394 302 395 358 396 303 397 360 398 361 399 362 400 366 401 367 402 360 403 370 404 366 405 371 406 371 407 374 408 375 409 378 410 374 411 379 412 308 413 245 414 382 415 310 316 248 315 384 416 314 417 386 418 312 419 314 420 388 421 386 422 316 423 318 424 390 425 390 426 318 427 392 428 8 5 322 330 320 329 324 331 34 18 394 429 327 430 396 431 397 432 331 433 400 434 401 435 326 436 396 437 327 438 401 439 330 440 331 441 262 442 404 443 405 444 408 445 266 446 330 447 262 448 334 449 404 450 336 451 266 452 408 453 270 454 410 455 334 456 412 457 272 458 336 459 270 358 338 357 410 460 412 461 340 462 272 361 274 463 414 464 338 465 302 466 340 467 358 468 414 469 274 470 306 471 416 472 417 473 418 474 280 475 344 476 422 477 417 478 424 479 425 480 428 481 284 482 346 483 424 484 430 485 431 486 430 487 434 488 435 489 394 429 34 18 350 385 352 490 438 491 439 492 352 493 353 494 438 495 442 496 356 497 443 498 443 499 356 500 348 501 434 502 446 503 447 504 361 505 450 506 362 507 367 508 361 509 360 510 367 511 366 512 370 513 370 514 371 515 375 516 375 517 374 518 378 519 378 520 379 521 452 522 454 523 308 524 382 525 310 526 384 527 456 528 456 528 384 529 458 530 388 531 460 532 386 533 388 534 462 535 460 536 390 537 392 538 464 539 464 540 392 541 397 542 400 543 466 544 467 545 396 546 464 547 397 548 401 549 400 550 467 551 405 552 470 553 471 554 474 555 330 556 475 557 404 558 470 559 405 560 408 561 330 562 474 563 334 564 478 565 404 566 480 567 336 568 408 569 334 570 410 571 478 572 480 573 412 457 336 459 338 574 482 575 410 576 484 577 340 578 412 579 338 580 414 581 482 582 340 583 484 584 358 585 362 586 450 587 414 588 416 589 418 590 486 591 417 592 425 593 418 594 344 595 488 596 422 597 424 598 431 599 425 600 428 601 346 602 490 603 430 604 435 605 431 606 434 607 447 608 435 609 466 610 439 611 492 612 439 613 438 614 492 615 494 616 442 617 495 618 495 619 442 620 443 621 498 622 428 601 490 603 446 623 500 624 447 625 361 626 502 627 450 628 367 629 504 630 361 631 370 632 506 633 367 634 508 635 370 636 375 637 510 638 375 639 378 640 512 641 378 642 452 643 452 644 379 645 514 646 516 647 454 648 382 649 456 650 458 651 518 652 518 652 458 653 520 654 462 655 522 656 460 657 462 658 524 659 522 660 467 661 466 662 492 663 471 664 526 665 524 666 528 667 475 668 529 669 471 670 470 671 526 672 528 673 474 674 475 675 404 676 532 677 533 678 536 679 408 680 474 681 404 682 478 683 532 684 536 685 480 567 408 686 410 687 538 688 478 689 540 690 412 691 480 692 482 693 538 694 410 695 484 696 412 697 540 698 414 699 542 700 482 701 500 702 446 703 484 704 414 705 450 706 542 707 486 708 418 709 544 710 546 711 416 712 486 713 418 714 425 715 548 716 488 717 550 718 422 719 425 720 431 721 552 722 431 723 435 724 554 725 435 726 447 727 556 728 558 729 494 730 559 731 559 732 494 733 495 734 562 735 498 736 563 737 498 738 490 739 563 740 447 741 500 742 566 743 502 744 568 745 450 746 504 747 502 748 361 749 506 750 504 751 367 752 506 753 370 754 508 755 508 756 375 757 510 758 510 759 378 760 512 761 512 762 452 763 570 764 452 765 514 766 572 767 574 768 454 769 516 770 576 771 574 772 516 773 518 774 520 775 578 776 578 777 520 778 580 779 524 780 526 781 522 782 582 783 529 784 558 785 528 786 529 787 582 788 584 789 585 790 586 791 590 792 474 793 591 794 533 678 532 677 594 795 590 796 536 797 474 798 478 799 596 800 532 801 598 802 480 803 536 804 538 805 596 806 478 807 598 808 540 809 480 810 482 811 600 812 538 813 602 814 484 815 540 816 482 817 542 818 600 819 500 820 484 821 602 822 450 823 568 824 542 825 486 826 544 827 604 828 418 829 548 830 544 831 546 832 486 833 606 834 425 835 552 836 548 837 488 838 608 839 550 840 431 841 554 842 552 843 435 844 556 845 554 846 447 847 566 848 556 849 582 850 558 851 559 852 610 853 562 854 611 855 562 856 563 857 611 858 608 859 614 860 550 861 500 862 616 863 566 864 502 865 618 866 568 867 504 868 620 869 502 870 506 871 622 872 504 873 624 874 506 875 508 876 626 877 508 878 510 879 512 880 628 881 510 882 570 883 630 884 512 885 570 886 452 887 572 888 514 889 632 890 572 891 634 892 574 893 576 894 636 895 634 896 576 897 638 898 578 899 580 900 640 901 641 902 580 903 644 904 645 905 646 906 585 790 650 907 586 791 652 908 590 909 653 910 656 911 657 912 658 913 662 914 536 915 590 916 656 917 664 918 657 919 662 920 598 921 536 922 538 923 666 924 596 925 668 926 540 927 598 928 538 929 600 930 666 931 602 932 540 933 668 934 542 935 670 936 600 937 500 938 602 939 616 940 568 941 670 942 542 943 672 944 604 945 544 946 606 947 486 948 604 949 674 950 544 951 548 952 676 953 546 954 606 955 552 956 678 957 548 958 554 959 680 960 552 961 554 962 556 963 682 964 556 965 566 966 684 967 686 968 610 969 687 970 690 971 610 972 611 973 692 974 693 975 614 976 608 977 692 978 614 979 566 980 616 981 696 982 618 983 698 984 568 985 620 986 618 987 502 988 622 989 620 990 504 991 624 992 622 993 506 994 626 995 624 996 508 997 628 998 626 999 510 1000 630 1001 628 1002 512 1003 700 1004 630 1005 570 1006 702 1007 570 1008 572 1009 572 1010 632 1011 704 1012 704 1013 632 1014 706 1015 708 1016 634 1017 636 1018 710 1019 708 1020 636 1021 712 1022 713 1023 714 1024 658 1025 718 1026 710 1027 720 1028 721 1029 722 1030 658 1031 657 1032 718 1033 726 1034 721 1035 720 1036 596 1037 728 1038 729 1039 732 1040 598 1041 662 1042 596 1043 666 1044 728 1045 732 1046 668 1047 598 1048 600 1049 734 1050 666 1051 736 1052 602 1053 668 1054 600 1055 670 1056 734 1057 602 1058 736 1059 616 1060 568 1061 698 1062 670 1063 738 1064 604 1065 672 1066 674 1067 672 1068 544 1069 740 1070 606 1071 604 1072 678 1073 674 1074 548 1075 676 1076 606 1077 742 1078 680 1079 678 1080 552 1081 682 1082 680 1083 554 1084 556 1085 684 1086 682 1087 566 1088 696 1089 684 1090 744 1091 745 1092 693 1093 692 1094 744 1095 693 1096 748 1097 676 1098 742 1099 616 1100 750 1101 696 1102 618 1103 752 1104 698 1105 620 1106 754 1107 618 1108 756 1109 620 1110 622 1111 758 1112 622 1113 624 1114 760 1115 624 1116 626 1117 628 1118 762 1119 626 1120 630 1121 764 1122 628 1123 700 1124 766 1125 630 1126 700 1127 570 1128 702 1129 702 1130 572 1131 704 1132 768 1133 704 1134 706 1135 770 1136 768 1137 706 1138 718 1139 708 1140 710 1141 772 1142 722 1143 745 1144 720 1145 722 1146 772 1147 729 1148 774 1149 775 1150 778 1151 662 1152 779 1153 729 1154 728 1155 774 1156 778 1157 732 1158 662 1159 666 1160 782 1161 728 1162 784 1163 668 1164 732 1165 666 1166 734 1167 782 1168 784 1169 736 1170 668 1171 670 1172 786 1173 734 1174 616 1175 736 1176 750 1177 698 1178 786 1179 670 1180 788 1181 738 1182 672 1183 740 1184 604 1185 738 1186 790 1187 672 1188 674 1189 742 1190 606 1191 740 1192 792 1193 674 1194 678 1195 680 1196 794 1197 678 1198 682 1199 796 1200 680 1201 684 1202 798 1203 682 1204 684 1205 696 1206 800 1207 744 1208 772 1209 745 1210 802 1211 748 1212 803 1213 803 1214 748 1215 742 1216 696 1217 750 1218 806 1219 752 1220 808 1221 698 1222 754 1223 752 1224 618 1225 756 1226 754 1227 620 1228 758 1229 756 1230 622 1231 760 1232 758 1233 624 1234 762 1235 760 1236 626 1237 764 1238 762 1239 628 1240 766 1241 764 1242 630 1243 810 1244 766 1245 700 1246 812 1247 700 1248 702 1249 814 1250 702 1251 704 1252 814 1253 704 1254 768 1255 816 1256 768 1257 770 1258 775 1259 816 1260 770 1261 818 1262 779 1263 819 1264 775 1265 774 1266 816 1267 818 1268 778 1269 779 1270 728 1271 822 1272 774 1273 824 1274 732 1275 778 1276 728 1277 782 1278 822 1279 824 1280 784 1281 732 1282 734 1283 826 1284 782 1285 828 1286 736 1287 784 1288 786 1289 826 1290 734 1291 736 1292 828 1293 750 1294 808 1295 786 1296 698 1297 830 1298 738 1299 788 1300 790 1301 788 1302 672 1303 832 1304 740 1305 738 1306 792 1307 790 1308 674 1309 834 1310 742 1311 740 1312 794 1313 792 1314 678 1315 796 1316 794 1317 680 1318 798 1319 796 1320 682 1321 800 1322 798 1323 684 1324 696 1325 806 1326 800 1327 819 1328 802 1329 836 1330 836 1331 802 1332 803 1333 803 1334 742 1335 834 1336 750 1337 838 1338 806 1339 752 1340 840 1341 808 1342 754 1343 842 1344 752 1345 844 1346 754 1347 756 1348 846 1349 756 1350 758 1351 848 1352 758 1353 760 1354 762 1355 850 1356 760 1357 764 1358 852 1359 762 1360 766 1361 854 1362 764 1363 856 1364 766 1365 810 1366 810 1367 700 1368 812 1369 812 1370 702 1371 814 1372 858 1373 814 1374 768 1375 858 1376 768 1377 816 1378 836 1379 818 1380 819 1381 860 1382 816 1383 774 1384 862 1385 778 1386 818 1387 774 1388 822 1389 860 1390 862 1391 824 1392 778 1393 782 1394 864 1395 822 1396 866 1397 784 1398 824 1399 782 1400 826 1401 864 1402 866 1403 828 1404 784 1405 868 1406 826 1407 786 1408 828 1409 838 1410 750 1411 808 1412 868 1413 786 1414 870 1415 830 1416 788 1417 832 1418 738 1419 830 1420 872 1421 788 1422 790 1423 834 1424 740 1425 832 1426 874 1427 790 1428 792 1429 876 1430 792 1431 794 1432 796 1433 878 1434 794 1435 798 1436 880 1437 796 1438 800 1439 882 1440 798 1441 800 1442 806 1443 884 1444 836 1445 803 1446 886 1447 886 1448 803 1449 834 1450 806 1451 838 1452 888 1453 840 1454 890 1455 808 1456 842 1457 840 1458 752 1459 844 1460 842 1461 754 1462 846 1463 844 1464 756 1465 848 1466 846 1467 758 1468 850 1469 848 1470 760 1471 852 1472 850 1473 762 1474 854 1475 852 1476 764 1477 854 1478 766 1479 856 1480 856 1481 810 1482 892 1483 810 1484 812 1485 894 1486 896 1487 812 1488 814 1489 896 1490 814 1491 858 1492 860 1493 858 1494 816 1495 818 1496 836 1497 898 1498 898 1499 862 1500 818 1501 822 1502 900 1503 860 1504 902 1505 824 1506 862 1507 822 1508 864 1509 900 1510 866 1511 824 1512 902 1513 904 1514 864 1515 826 1516 866 1517 906 1518 828 1519 868 1520 904 1521 826 1522 906 1523 838 1524 828 1525 868 1526 808 1527 890 1528 908 1529 830 1530 870 1531 870 1532 788 1533 872 1534 910 1535 832 1536 830 1537 874 1538 872 1539 790 1540 912 1541 834 1542 832 1543 876 1544 874 1545 792 1546 878 1547 876 1548 794 1549 880 1550 878 1551 796 1552 882 1553 880 1554 798 1555 884 1556 882 1557 800 1558 806 1559 888 1560 884 1561 898 1562 836 1563 886 1564 886 1565 834 1566 912 1567 838 1568 914 1569 888 1570 890 1571 840 1572 916 1573 840 1574 842 1575 916 1576 842 1577 844 1578 916 1579 916 1580 844 1581 846 1582 916 1583 846 1584 918 1585 920 1586 916 1587 918 1588 852 1589 916 1590 920 1591 916 1592 852 1593 854 1594 916 1595 854 1596 856 1597 892 1598 916 1599 856 1600 892 1601 810 1602 894 1603 894 1604 812 1605 896 1606 922 1607 896 1608 858 1609 922 1610 858 1611 860 1612 924 1613 862 1614 898 1615 860 1616 900 1617 922 1618 902 1619 862 1620 924 1621 864 1622 926 1623 900 1624 902 1625 928 1626 866 1627 904 1628 926 1629 864 1630 928 1631 906 1632 866 1633 930 1634 904 1635 868 1636 838 1637 906 1638 914 1639 890 1640 930 1641 868 1642 932 1643 908 1644 870 1645 908 1646 910 1647 830 1648 872 1649 932 1650 870 1651 910 1652 912 1653 832 1654 874 1655 932 1656 872 1657 932 1658 874 1659 934 1660 932 1661 934 1662 936 1663 880 1664 932 1665 936 1666 882 1667 932 1668 880 1669 882 1670 884 1671 932 1672 884 1673 888 1674 932 1675 898 1676 886 1677 938 1678 938 1679 886 1680 912 1681 888 1682 914 1683 932 1684 940 1685 890 1686 916 1687 942 1688 916 1689 892 1690 944 1691 892 1692 894 1693 946 1694 894 1695 896 1696 922 1697 946 1698 896 1699 924 1700 898 1701 938 1702 900 1703 948 1704 922 1705 950 1706 902 1707 924 1708 926 1709 948 1710 900 1711 950 1712 928 1713 902 1714 952 1715 926 1716 904 1717 928 1718 954 1719 906 1720 930 1721 952 1722 904 1723 906 1724 954 1725 914 1726 932 1727 956 1728 908 1729 958 1730 910 1731 908 1732 910 1733 960 1734 912 1735 960 1736 938 1737 912 1738 914 1739 962 1740 932 1741 964 1742 940 1743 916 1744 966 1745 916 1746 942 1747 946 1748 944 1749 894 1750 948 1751 946 1752 922 1753 968 1754 924 1755 938 1756 968 1757 950 1758 924 1759 926 1760 970 1761 948 1762 950 1763 972 1764 928 1765 952 1766 970 1767 926 1768 972 1769 954 1770 928 1771 932 1772 974 1773 956 1774 958 1775 960 1776 910 1777 960 1778 968 1779 938 1780 962 1781 976 1782 932 1783 964 1784 916 1785 978 1786 978 1787 916 1788 966 1789 980 1790 944 1791 946 1792 948 1793 980 1794 946 1795 982 1796 950 1797 968 1798 970 1799 980 1800 948 1801 982 1802 972 1803 950 1804 932 1805 984 1806 974 1807 958 1808 986 1809 960 1810 986 1811 968 1812 960 1813 932 1814 976 1815 984 1816 986 1817 982 1818 968 1819</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID256\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID257\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"636\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 9 10 11 15 16 17 21 22 23 27 28 29 9 31 10 35 36 37 39 22 21 43 44 45 49 50 51 55 56 57 60 61 55 65 66 67 9 69 31 35 37 71 74 75 39 77 50 49 39 75 22 81 82 83 87 88 89 92 93 82 57 56 95 60 55 57 97 61 60 100 9 101 105 106 107 9 109 69 35 71 111 114 115 74 118 77 119 74 115 75 77 49 119 56 75 95 121 81 83 81 92 82 124 125 35 129 130 131 92 133 93 137 138 139 139 142 143 146 143 147 97 149 61 151 106 105 153 9 100 9 155 109 35 111 157 160 161 114 164 118 165 161 115 114 118 119 165 115 167 75 93 133 119 75 167 95 171 172 173 121 83 175 178 179 172 181 124 35 129 131 183 186 187 179 137 189 138 139 138 142 147 143 142 191 146 147 193 149 97 195 151 105 197 151 195 199 9 153 9 201 155 35 157 203 206 207 160 210 164 211 207 161 160 164 165 211 161 213 115 165 119 215 115 213 167 119 133 215 167 217 95 219 171 173 171 178 172 221 121 175 186 179 178 223 181 35 226 227 183 227 129 183 229 187 186 233 234 235 238 233 239 242 238 243 246 242 247 249 146 191 193 251 149 253 197 195 255 197 253 199 257 9 259 201 9 35 203 261 264 265 206 268 210 269 265 207 206 210 211 269 207 271 161 211 165 273 271 213 161 165 215 273 213 275 167 215 133 277 275 217 167 281 282 283 219 173 285 283 288 289 221 175 291 289 294 295 223 35 297 300 226 301 300 227 226 304 305 295 235 234 307 239 233 235 243 238 239 242 243 247 246 247 309 311 249 191 313 251 193 313 315 251 317 255 253 319 255 317 257 321 9 323 259 9 35 261 325 328 329 264 332 268 333 329 265 264 268 269 333 265 335 207 269 211 337 335 271 207 337 211 273 271 339 213 273 215 341 339 275 213 215 343 341 307 234 275 281 345 282 283 282 288 347 219 285 288 294 289 349 221 291 294 304 295 297 35 351 354 301 355 354 300 301 349 291 357 304 359 305 363 364 365 365 368 369 372 369 373 376 377 372 380 377 381 383 246 309 385 249 311 313 387 315 387 389 315 391 319 317 393 319 391 321 323 9 395 35 325 398 399 328 402 403 332 328 399 329 332 333 402 406 407 265 333 269 409 407 335 265 409 269 337 335 411 271 337 273 413 411 339 271 273 341 413 339 415 275 359 341 305 307 275 415 419 420 421 423 345 281 426 427 420 347 285 429 432 433 427 436 437 433 351 35 395 440 441 355 441 354 355 444 357 445 349 357 444 448 449 437 363 451 364 365 364 368 373 369 368 376 372 373 381 377 376 453 380 381 383 309 455 457 385 311 459 385 457 387 461 389 461 463 389 465 393 391 398 393 465 468 469 403 398 465 399 468 403 402 472 473 406 476 333 477 406 473 407 477 333 409 407 479 335 409 337 481 479 411 335 337 413 481 411 483 339 413 341 485 483 415 339 359 485 341 415 451 363 487 419 421 419 426 420 423 489 345 426 432 427 491 347 429 432 436 433 436 448 437 493 440 469 493 441 440 496 445 497 444 445 496 491 429 499 448 501 449 451 503 364 364 505 368 368 507 373 376 373 509 381 376 511 453 381 513 515 380 453 383 455 517 519 459 457 521 459 519 461 523 463 523 525 463 493 469 468 525 527 472 530 476 531 527 473 472 476 477 531 534 535 407 477 409 537 535 479 407 409 481 537 479 539 411 481 413 541 411 539 483 541 413 485 483 543 415 485 449 501 543 451 415 545 419 487 487 421 547 549 426 419 423 551 489 553 432 426 555 436 432 557 448 436 560 497 561 496 497 560 564 499 565 564 491 499 567 501 448 451 569 503 364 503 505 368 505 507 509 373 507 511 376 509 513 381 511 571 453 513 573 515 453 517 455 575 517 575 577 579 521 519 581 521 579 523 527 525 561 530 583 583 530 531 587 588 589 592 477 593 595 535 534 477 537 593 535 597 479 537 481 599 479 597 539 481 541 599 539 601 483 541 485 603 601 543 483 603 485 501 543 569 451 605 545 487 545 549 419 607 487 547 549 553 426 551 609 489 553 555 432 555 557 436 557 567 448 560 561 583 612 565 613 612 564 565 551 615 609 567 617 501 569 619 503 503 621 505 505 623 507 509 507 625 511 509 627 511 629 513 513 631 571 573 453 571 573 633 515 577 575 635 577 635 637 581 579 639 581 642 643 647 648 649 587 651 588 654 593 655 659 660 661 593 537 663 660 665 661 537 599 663 597 667 539 599 541 669 667 601 539 669 541 603 601 671 543 617 603 501 543 671 569 545 605 673 605 487 607 549 545 675 607 547 677 549 679 553 553 681 555 683 557 555 685 567 557 688 613 689 612 613 691 615 694 695 615 695 609 697 617 567 569 699 619 503 619 621 505 621 623 507 623 625 509 625 627 511 627 629 513 629 631 571 631 701 573 571 703 705 633 573 707 633 705 637 635 709 637 709 711 715 716 717 711 719 659 723 724 725 719 660 659 725 724 727 730 731 597 663 599 733 731 667 597 599 669 733 667 735 601 669 603 737 735 671 601 617 737 603 671 699 569 673 605 739 545 673 675 605 607 741 549 675 679 743 607 677 553 679 681 555 681 683 683 685 557 685 697 567 694 746 747 694 747 695 743 677 749 697 751 617 699 753 619 619 755 621 623 621 757 625 623 759 627 625 761 627 763 629 629 765 631 631 767 701 703 571 701 705 573 703 707 705 769 707 769 771 711 709 719 746 723 773 773 723 725 776 777 730 780 663 781 777 731 730 663 733 781 731 783 667 733 669 785 783 735 667 669 737 785 735 787 671 751 737 617 671 787 699 673 739 789 739 605 741 675 673 791 741 607 743 679 675 793 679 795 681 681 797 683 683 799 685 801 697 685 746 773 747 804 749 805 743 749 804 807 751 697 699 809 753 619 753 755 621 755 757 623 757 759 625 759 761 627 761 763 629 763 765 631 765 767 701 767 811 703 701 813 705 703 815 769 705 815 771 769 817 771 817 776 820 780 821 817 777 776 780 781 821 777 823 731 781 733 825 823 783 731 733 785 825 783 827 735 785 737 829 735 827 787 751 829 737 699 787 809 789 739 831 673 789 791 739 741 833 675 791 793 741 743 835 679 793 795 681 795 797 683 797 799 685 799 801 801 807 697 837 805 820 804 805 837 835 743 804 807 839 751 809 841 753 753 843 755 757 755 845 759 757 847 761 759 849 761 851 763 763 853 765 765 855 767 811 767 857 813 701 811 815 703 813 769 815 859 817 769 859 820 821 837 777 817 861 821 781 863 861 823 777 781 825 863 823 865 783 825 785 867 865 827 783 785 829 867 787 827 869 751 839 829 787 869 809 789 831 871 831 739 833 791 789 873 833 741 835 793 791 875 795 793 877 795 879 797 797 881 799 799 883 801 885 807 801 887 804 837 835 804 887 889 839 807 809 891 841 753 841 843 755 843 845 757 845 847 759 847 849 761 849 851 763 851 853 765 853 855 857 767 855 893 811 857 895 813 811 815 813 897 859 815 897 817 859 861 899 837 821 821 863 899 861 901 823 863 825 903 901 865 823 903 825 867 827 865 905 829 907 867 827 905 869 829 839 907 891 809 869 871 831 909 873 789 871 831 833 911 791 873 875 833 835 913 793 875 877 795 877 879 797 879 881 799 881 883 801 883 885 885 889 807 887 837 899 913 835 887 889 915 839 917 841 891 917 843 841 917 845 843 847 845 917 919 847 917 919 917 921 921 917 853 855 853 917 857 855 917 857 917 893 895 811 893 897 813 895 859 897 923 861 859 923 899 863 925 923 901 861 925 863 903 901 927 865 867 929 903 865 927 905 867 907 929 869 905 931 915 907 839 869 931 891 871 909 933 831 911 909 871 933 873 833 913 911 873 933 875 935 875 933 937 935 933 937 933 881 881 933 883 933 885 883 933 889 885 939 887 899 913 887 939 933 915 889 917 891 941 893 917 943 895 893 945 897 895 947 897 947 923 939 899 925 923 949 901 925 903 951 901 949 927 903 929 951 905 927 953 907 955 929 905 953 931 915 955 907 909 957 933 909 911 959 913 961 911 913 939 961 933 963 915 917 941 965 943 917 967 895 945 947 923 947 949 939 925 969 925 951 969 949 971 927 929 973 951 927 971 953 929 955 973 957 975 933 911 961 959 939 969 961 933 977 963 979 917 965 967 917 979 947 945 981 947 981 949 969 951 983 949 981 971 951 973 983 975 985 933 961 987 959 961 969 987 985 977 933 969 983 987</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID256\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID261\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID262\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID265\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">0.09004729241132736 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.1927204430103302 0.2706232964992523 1.979883551597595 -0.2292656004428864 0.09004729241132736 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.2292656004428864 0.09004729241132736 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.2658107578754425 0.2706232964992523 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.1927204430103302 -0.09052873402833939 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.2658107578754425 0.09004729241132736 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.2292656004428864 -0.09052873402833939 1.979883551597595 -0.2292656004428864 0.2706232964992523 1.979883551597595 -0.3023560345172882 0.2706232964992523 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.1927204430103302 -0.2711048126220703 1.979883551597595 -0.1927204430103302 0.09004729241132736 1.979883551597595 -0.3023560345172882 0.09004729241132736 1.979883551597595 -0.3023560345172882 -0.09052873402833939 1.979883551597595 -0.2658107578754425 -0.09052873402833939 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.2292656004428864 -0.2711048126220703 1.979883551597595 -0.2292656004428864 -0.09052873402833939 1.979883551597595 -0.3023560345172882 -0.09052873402833939 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.2658107578754425 -0.2711048126220703 1.979883551597595 -0.3023560345172882 -0.2711048126220703 1.979883551597595 -0.3023560345172882</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID265\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID263\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID266\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID266\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID264\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID262\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID263\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"36\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 1 0 5 4 7 6 8 1 4 9 7 10 6 0 5 7 11 12 8 6 7 9 13 14 6 10 11 7 15 12 16 8 9 17 13 14 12 6 7 13 15 18 14 10 11 15 19 20 16 12 13 17 21 22 12 14 15 13 23 24 14 18 19 15 25 22 20 12 13 21 23 24 22 14 15 23 25 26 20 22 23 21 27 28 22 24 25 23 29 28 26 22 23 27 29 30 26 28 29 27 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID264\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID269\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID270\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID273\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1134\">-0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.8002784848213196 0.6196871995925903 -0.1194272115826607 -0.8002784848213196 0.6196871995925903 -0.1194272115826607 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.8002784848213196 0.6200764179229736 0.01818196848034859 -0.8002784848213196 0.6200764179229736 0.01818196848034859 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8002784848213196 0.7639247179031372 0.02084463648498058 -0.8002784848213196 0.7639247179031372 0.02084463648498058 -0.8002784848213196 0.7611286044120789 -0.118915356695652 -0.8002784848213196 0.7611286044120789 -0.118915356695652 -0.8002784848213196 0.6231358647346497 0.1513165235519409 -0.8002784848213196 0.6231358647346497 0.1513165235519409 -0.8002784848213196 0.7669853568077087 0.1513165235519409 -0.8002784848213196 0.7669853568077087 0.1513165235519409 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.8002784848213196 0.8771676421165466 0.02084463648498058 -0.8002784848213196 0.8771676421165466 0.02084463648498058 -0.8002784848213196 0.8771676421165466 0.1513165235519409 -0.8002784848213196 0.8771676421165466 0.1513165235519409 -0.8002784848213196 0.872636616230011 -0.118915356695652 -0.8002784848213196 0.872636616230011 -0.118915356695652 -0.7714517116546631 0.7642374038696289 0.234848827123642 -0.7714517116546631 0.7642374038696289 0.234848827123642 -0.7724733352661133 0.6222134828567505 0.2340750992298126 -0.7724733352661133 0.6222134828567505 0.2340750992298126 -0.7714517116546631 0.8763352632522583 0.234848827123642 -0.7714517116546631 0.8763352632522583 0.234848827123642 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.7714517116546631 1.068503022193909 0.234848827123642 -0.7714517116546631 1.068503022193909 0.234848827123642 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.748810887336731 0.7716558575630188 0.29511559009552 -0.748810887336731 0.7716558575630188 0.29511559009552 -0.7487359046936035 0.8783665895462036 0.29511559009552 -0.7487359046936035 0.8783665895462036 0.29511559009552 -0.7497841715812683 0.6197603940963745 0.2984656691551209 -0.7497841715812683 0.6197603940963745 0.2984656691551209 -0.8002784848213196 1.067611813545227 0.1501588523387909 -0.8002784848213196 1.067611813545227 0.1501588523387909 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.7471549510955811 1.070043087005615 0.292364776134491 -0.7471549510955811 1.070043087005615 0.292364776134491 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.7451425790786743 1.229051828384399 0.2896876931190491 -0.7451425790786743 1.229051828384399 0.2896876931190491 -0.7714517116546631 1.22945249080658 0.2351814955472946 -0.7714517116546631 1.22945249080658 0.2351814955472946 -0.6762760281562805 0.8758261203765869 0.358364999294281 -0.6762760281562805 0.8758261203765869 0.358364999294281 -0.6766242980957031 0.7716558575630188 0.3602698147296906 -0.6766242980957031 0.7716558575630188 0.3602698147296906 -0.6753841638565064 1.070043087005615 0.342584639787674 -0.6753841638565064 1.070043087005615 0.342584639787674 -0.6771467328071594 0.6242926120758057 0.356035441160202 -0.6771467328071594 0.6242926120758057 0.356035441160202 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.6740805506706238 1.229051828384399 0.3374882340431213 -0.6740805506706238 1.229051828384399 0.3374882340431213 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6728717684745789 1.338770151138306 0.3299798667430878 -0.6728717684745789 1.338770151138306 0.3299798667430878 -0.7432098388671875 1.33383572101593 0.2877088189125061 -0.7432098388671875 1.33383572101593 0.2877088189125061 -0.7714517116546631 1.336279630661011 0.2374546378850937 -0.7714517116546631 1.336279630661011 0.2374546378850937 -0.6551044583320618 0.770412027835846 0.3768142461776733 -0.6551044583320618 0.770412027835846 0.3768142461776733 -0.6547621488571167 0.8788958787918091 0.36956787109375 -0.6547621488571167 0.8788958787918091 0.36956787109375 -0.6538115739822388 0.6258586049079895 0.3818635642528534 -0.6538115739822388 0.6258586049079895 0.3818635642528534 -0.652993381023407 1.071277260780335 0.3560464382171631 -0.652993381023407 1.071277260780335 0.3560464382171631 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6503435969352722 1.231573462486267 0.3451077938079834 -0.6503435969352722 1.231573462486267 0.3451077938079834 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.6467726230621338 1.337924003601074 0.3337158262729645 -0.6467726230621338 1.337924003601074 0.3337158262729645 -0.6713939309120178 1.432783603668213 0.3242798447608948 -0.6713939309120178 1.432783603668213 0.3242798447608948 -0.7414166927337647 1.431114196777344 0.2848821878433228 -0.7414166927337647 1.431114196777344 0.2848821878433228 -0.7714517116546631 1.430078029632568 0.2376271635293961 -0.7714517116546631 1.430078029632568 0.2376271635293961 -0.6349050998687744 0.7708060741424561 0.3701403439044952 -0.6349050998687744 0.7708060741424561 0.3701403439044952 -0.6256678700447083 0.8783389925956726 0.3555973768234253 -0.6256678700447083 0.8783389925956726 0.3555973768234253 -0.6176331639289856 1.073966383934021 0.34251469373703 -0.6176331639289856 1.073966383934021 0.34251469373703 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6103045344352722 1.231997966766357 0.325863778591156 -0.6103045344352722 1.231997966766357 0.325863778591156 -0.6049067378044128 1.338981509208679 0.3172231614589691 -0.6049067378044128 1.338981509208679 0.3172231614589691 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.5988566875457764 1.422707080841065 0.303942084312439 -0.5988566875457764 1.422707080841065 0.303942084312439 -0.6432016491889954 1.43192446231842 0.3254314661026001 -0.6432016491889954 1.43192446231842 0.3254314661026001 -0.6704087257385254 1.524521231651306 0.3170008361339569 -0.6704087257385254 1.524521231651306 0.3170008361339569 -0.7381420135498047 1.524521231651306 0.2817167937755585 -0.7381420135498047 1.524521231651306 0.2817167937755585 -0.7714517116546631 1.527541875839233 0.2388848811388016 -0.7714517116546631 1.527541875839233 0.2388848811388016 -0.6096035838127136 0.8772760033607483 0.3508152365684509 -0.6096035838127136 0.8772760033607483 0.3508152365684509 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.5969606637954712 1.076266169548035 0.3287610411643982 -0.5969606637954712 1.076266169548035 0.3287610411643982 -0.5887119770050049 1.234852313995361 0.3147788345813751 -0.5887119770050049 1.234852313995361 0.3147788345813751 -0.581000566482544 1.340795755386353 0.2962920665740967 -0.581000566482544 1.340795755386353 0.2962920665740967 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.5952385663986206 1.534539937973023 0.2910608053207398 -0.5952385663986206 1.534539937973023 0.2910608053207398 -0.5756016969680786 1.432812809944153 0.2799475789070129 -0.5756016969680786 1.432812809944153 0.2799475789070129 -0.6396305561065674 1.523992538452148 0.3161111772060394 -0.6396305561065674 1.523992538452148 0.3161111772060394 -0.6688806414604187 1.630582451820374 0.3066250681877136 -0.6688806414604187 1.630582451820374 0.3066250681877136 -0.7326781153678894 1.627527952194214 0.2751796841621399 -0.7326781153678894 1.627527952194214 0.2751796841621399 -0.7656499743461609 1.629548072814941 0.2351733148097992 -0.7656499743461609 1.629548072814941 0.2351733148097992 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.8002784848213196 1.629548072814941 0.1532912850379944 -0.8002784848213196 1.629548072814941 0.1532912850379944 -0.5857915282249451 1.635170221328735 0.2697256505489349 -0.5857915282249451 1.635170221328735 0.2697256505489349 -0.5694620013237 1.539629101753235 0.2627097368240356 -0.5694620013237 1.539629101753235 0.2627097368240356 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.635464072227478 1.630808830261231 0.3067907989025116 -0.635464072227478 1.630808830261231 0.3067907989025116 -0.6664205193519592 1.735270857810974 0.2955930531024933 -0.6664205193519592 1.735270857810974 0.2955930531024933 -0.725673258304596 1.735270857810974 0.2675617933273315 -0.725673258304596 1.735270857810974 0.2675617933273315 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7607758045196533 1.731385946273804 0.2290779650211334 -0.7607758045196533 1.731385946273804 0.2290779650211334 -0.8002784848213196 1.731245756149292 0.1508422940969467 -0.8002784848213196 1.731245756149292 0.1508422940969467 -0.5798652172088623 1.733703374862671 0.2523872554302216 -0.5798652172088623 1.733703374862671 0.2523872554302216 -0.5607426762580872 1.635875701904297 0.243652269244194 -0.5607426762580872 1.635875701904297 0.243652269244194 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.6283220648765564 1.734643340110779 0.2933281362056732 -0.6283220648765564 1.734643340110779 0.2933281362056732 -0.6636370420455933 1.828536510467529 0.2839697897434235 -0.6636370420455933 1.828536510467529 0.2839697897434235 -0.7195442318916321 1.830480456352234 0.2584208846092224 -0.7195442318916321 1.830480456352234 0.2584208846092224 -0.780127227306366 1.770382642745972 0.08878238499164581 -0.780127227306366 1.770382642745972 0.08878238499164581 -0.7555970549583435 1.832421541213989 0.2219224870204926 -0.7555970549583435 1.832421541213989 0.2219224870204926 -0.789497435092926 1.832582235336304 0.1508422940969467 -0.789497435092926 1.832582235336304 0.1508422940969467 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.5481609702110291 1.737459182739258 0.2144985496997833 -0.5481609702110291 1.737459182739258 0.2144985496997833 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.6187847852706909 1.828536510467529 0.2750792801380158 -0.6187847852706909 1.828536510467529 0.2750792801380158 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.780127227306366 1.831223368644714 0.08806630969047546 -0.780127227306366 1.831223368644714 0.08806630969047546 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7611757516860962 1.848836660385132 0.05843546241521835 -0.7611757516860962 1.848836660385132 0.05843546241521835 -0.7789089679718018 1.794281721115112 0.06106704473495483 -0.7789089679718018 1.794281721115112 0.06106704473495483 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5419393181800842 1.786986827850342 0.1989490985870361 -0.5419393181800842 1.786986827850342 0.1989490985870361 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.5395102500915527 1.831621766090393 0.1790818572044373 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5395102500915527 1.831621766090393 0.1790818572044373 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7694121599197388 1.816561579704285 0.03192228823900223 -0.7694121599197388 1.816561579704285 0.03192228823900223 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.7185090184211731 1.866551876068115 0.03108330257236958 -0.7185090184211731 1.866551876068115 0.03108330257236958 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.7789088487625122 1.840326070785523 -0.01964796893298626 -0.7789088487625122 1.840326070785523 -0.01964796893298626 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.721648633480072 1.884884715080261 -0.0176821406930685 -0.721648633480072 1.884884715080261 -0.0176821406930685 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.6637756824493408 1.907618165016174 -0.01770789735019207 -0.6637756824493408 1.907618165016174 -0.01770789735019207 -0.7765349745750427 1.862605094909668 -0.08081070333719254 -0.7765349745750427 1.862605094909668 -0.08081070333719254 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.6023380160331726 1.907618165016174 0.02810462191700935 -0.6023380160331726 1.907618165016174 0.02810462191700935 -0.7276830077171326 1.896474838256836 -0.07735307514667511 -0.7276830077171326 1.896474838256836 -0.07735307514667511 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6013118028640747 1.918723344802856 -0.0167639497667551 -0.6013118028640747 1.918723344802856 -0.0167639497667551 -0.6637756824493408 1.918723344802856 -0.0708390548825264 -0.6637756824493408 1.918723344802856 -0.0708390548825264 -0.7765349745750427 1.868109583854675 -0.1344994306564331 -0.7765349745750427 1.868109583854675 -0.1344994306564331 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.7254838347434998 1.896474838256836 -0.1368977874517441 -0.7254838347434998 1.896474838256836 -0.1368977874517441 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.6013118028640747 1.918723344802856 -0.06880220025777817 -0.6013118028640747 1.918723344802856 -0.06880220025777817 -0.6637756824493408 1.923628926277161 -0.1305911093950272 -0.6637756824493408 1.923628926277161 -0.1305911093950272 -0.7681390643119812 1.864772439002991 -0.1993826925754547 -0.7681390643119812 1.864772439002991 -0.1993826925754547 -0.7100864052772522 1.889798879623413 -0.1963487863540649 -0.7100864052772522 1.889798879623413 -0.1963487863540649 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5993821024894714 1.918723344802856 -0.1292334944009781 -0.5993821024894714 1.918723344802856 -0.1292334944009781 -0.6636860370635986 1.908910393714905 -0.1960339397192001 -0.6636860370635986 1.908910393714905 -0.1960339397192001 -0.7571017146110535 1.854760766029358 -0.2666657269001007 -0.7571017146110535 1.854760766029358 -0.2666657269001007 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.6893312931060791 1.878122568130493 -0.2706334590911865 -0.6893312931060791 1.878122568130493 -0.2706334590911865 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.6013118028640747 1.913129925727844 -0.1947008073329926 -0.6013118028640747 1.913129925727844 -0.1947008073329926 -0.6547057628631592 1.899369478225708 -0.2707102298736572 -0.6547057628631592 1.899369478225708 -0.2707102298736572 -0.742384135723114 1.849756956100464 -0.2961414754390717 -0.742384135723114 1.849756956100464 -0.2961414754390717 -0.6774798035621643 1.873115420341492 -0.2989807724952698 -0.6774798035621643 1.873115420341492 -0.2989807724952698 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.5953081846237183 1.902366518974304 -0.2694905698299408 -0.5953081846237183 1.902366518974304 -0.2694905698299408 -0.6453258395195007 1.887944936752319 -0.2983261346817017 -0.6453258395195007 1.887944936752319 -0.2983261346817017 -0.7028328776359558 1.811398148536682 -0.3453316688537598 -0.7028328776359558 1.811398148536682 -0.3453316688537598 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.5963053107261658 1.890616059303284 -0.2966291010379791 -0.5963053107261658 1.890616059303284 -0.2966291010379791 -0.6595970392227173 1.831865787506104 -0.3451592326164246 -0.6595970392227173 1.831865787506104 -0.3451592326164246 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.6302624344825745 1.831865787506104 -0.3451592326164246 -0.6302624344825745 1.831865787506104 -0.3451592326164246 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.5841007232666016 1.831865787506104 -0.3430174887180328 -0.5841007232666016 1.831865787506104 -0.3430174887180328 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"378\" source=\"#ID273\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID271\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID274\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1134\">-0.9971698257805797 0.0005629392510087631 -0.07517992851904062 -0.9900549072726571 -0.002353833251243577 -0.1406617931577565 -0.9976197890163987 -0.001197338959292204 -0.06894434670292125 0.9976197890163987 0.001197338959292204 0.06894434670292125 0.9900549072726571 0.002353833251243577 0.1406617931577565 0.9971698257805797 -0.0005629392510087631 0.07517992851904062 -0.999998772192228 0.001297841649654843 -0.000878191943182305 0.999998772192228 -0.001297841649654843 0.000878191943182305 -0.9907504747950866 -0.003274201081718127 -0.1356568328562443 0.9907504747950866 0.003274201081718127 0.1356568328562443 -0.9996866423995363 -0.01288064492216578 0.02146406285703578 0.9996866423995363 0.01288064492216578 -0.02146406285703578 -1 0 0 1 -0 -0 -0.9977881690244589 -0.0004287993236961485 -0.06647244456131977 0.9977881690244589 0.0004287993236961485 0.06647244456131977 -0.9855234423644645 -0.01500868463078184 0.1688735738229934 0.9855234423644645 0.01500868463078184 -0.1688735738229934 -0.9862287710324551 -8.267499692004867e-018 0.1653868531286971 0.9862287710324551 8.267499692004867e-018 -0.1653868531286971 -0.9916285418780479 -0.004290259579512917 -0.1290520383626579 0.9916285418780479 0.004290259579512917 0.1290520383626579 -0.985749350796998 -0.03215857008479352 0.1651182720761036 0.985749350796998 0.03215857008479352 -0.1651182720761036 -1 0 0 1 -0 -0 -0.9862255066865959 0.0001385711715906435 0.1654062597328094 0.9862255066865959 -0.0001385711715906435 -0.1654062597328094 -0.9984170026492772 -0.005688992607919956 -0.05595644899330283 0.9984170026492772 0.005688992607919956 0.05595644899330283 -0.9410469154779283 0.001844830909214399 0.3382710443836322 0.9410469154779283 -0.001844830909214399 -0.3382710443836322 -0.9472759744194746 -0.005534136034595238 0.3203710374331382 0.9472759744194746 0.005534136034595238 -0.3203710374331382 -0.9399700399246553 0.002496395944578447 0.3412478454896523 0.9399700399246553 -0.002496395944578447 -0.3412478454896523 -0.9935588885764284 -0.01612484945244063 -0.1121638273281921 0.9935588885764284 0.01612484945244063 0.1121638273281921 -0.9613973563932222 -0.002189225636765583 0.2751551024626563 0.9613973563932222 0.002189225636765583 -0.2751551024626563 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 -0.9334254836337974 0.003566250945204206 0.3587536039640679 0.9334254836337974 -0.003566250945204206 -0.3587536039640679 -0.9986374256045345 -0.003641894733685418 -0.05205793680791224 0.9986374256045345 0.003641894733685418 0.05205793680791224 -0.8268226581498774 0.009422437119762919 0.5623837743469269 0.8268226581498774 -0.009422437119762919 -0.5623837743469269 -0.8168016371698678 0.01709359352879232 0.5766653228493074 0.8168016371698678 -0.01709359352879232 -0.5766653228493074 -0.8163226983969137 -8.631410377862732e-005 0.5775960912539633 0.8163226983969137 8.631410377862732e-005 -0.5775960912539633 -0.9866427530423128 0.0003843367440036173 0.1628985271706077 0.9866427530423128 -0.0003843367440036173 -0.1628985271706077 -0.9999089323302191 2.494934331033375e-019 -0.01349544538876384 0.9999089323302191 -2.494934331033375e-019 0.01349544538876384 -0.7779781572466521 0.0170058673868699 0.6280611334269329 0.7779781572466521 -0.0170058673868699 -0.6280611334269329 -0.8419596631426931 0.02106523826798618 0.5391290952799299 0.8419596631426931 -0.02106523826798618 -0.5391290952799299 -1 0 0 1 -0 -0 -0.7541959415760483 0.0251328646306682 0.6561682869704039 0.7541959415760483 -0.0251328646306682 -0.6561682869704039 -0.9237461769474246 0.001311369236523803 0.3830029776460528 0.9237461769474246 -0.001311369236523803 -0.3830029776460528 -0.5722869724216011 0.04950486075750642 0.8185578110053667 0.5722869724216011 -0.04950486075750642 -0.8185578110053667 -0.6404317868099004 0.01381361012202974 0.7678908194651599 0.6404317868099004 -0.01381361012202974 -0.7678908194651599 -0.5511097648203741 0.03972113168969944 0.8334868078241682 0.5511097648203741 -0.03972113168969944 -0.8334868078241682 -0.6923513999901381 0.01264498783236419 0.7214496816926425 0.6923513999901381 -0.01264498783236419 -0.7214496816926425 -0.9579561741255267 -0.01503452474447218 0.2865203858724391 0.9579561741255267 0.01503452474447218 -0.2865203858724391 -0.4447687272850421 0.0557822628515867 0.8939066608882611 0.4447687272850421 -0.0557822628515867 -0.8939066608882611 -0.7536840750669706 0.06163170476199874 0.6543407735718255 0.7536840750669706 -0.06163170476199874 -0.6543407735718255 -0.3458396898734605 0.06829452254788901 0.9358048766159453 0.3458396898734605 -0.06829452254788901 -0.9358048766159453 -0.718680268982603 0.02684640343212302 0.6948222374088595 0.718680268982603 -0.02684640343212302 -0.6948222374088595 -0.8902152677398911 -0.01369281234898472 0.455334255215627 0.8902152677398911 0.01369281234898472 -0.455334255215627 -0.1570689378202707 0.04904402033157927 0.9863691159204689 0.1570689378202707 -0.04904402033157927 -0.9863691159204689 -0.02443527989440703 0.06659550801904349 0.9974808045311787 0.02443527989440703 -0.06659550801904349 -0.9974808045311787 -0.2630385832787527 0.04030153307416526 0.9639431986059028 0.2630385832787527 -0.04030153307416526 -0.9639431986059028 -0.08336213897397456 0.06610197637446741 0.9943245358056257 0.08336213897397456 -0.06610197637446741 -0.9943245358056257 -0.7783090938606397 0.06431607241494514 0.6245785757156144 0.7783090938606397 -0.06431607241494514 -0.6245785757156144 0.06493009687762971 0.06947966491896254 0.9954680601014834 -0.06493009687762971 -0.06947966491896254 -0.9954680601014834 -0.8957292464329562 -0.06402755354882821 0.4399654412237403 0.8957292464329562 0.06402755354882821 -0.4399654412237403 0.1276482232535163 0.09421563455280727 0.9873344647615783 -0.1276482232535163 -0.09421563455280727 -0.9873344647615783 -0.2787761319735821 0.07301649224843831 0.9575763468787132 0.2787761319735821 -0.07301649224843831 -0.9575763468787132 -0.6891604595520967 0.03963249604408594 0.72352410205 0.6891604595520967 -0.03963249604408594 -0.72352410205 -0.8617532152450977 0.001114275120065018 0.507326477138433 0.8617532152450977 -0.001114275120065018 -0.507326477138433 0.2920834002159803 0.07212648049786291 0.953669260346197 -0.2920834002159803 -0.07212648049786291 -0.953669260346197 0.3571216532956693 0.06599922729284308 0.9317232565220831 -0.3571216532956693 -0.06599922729284308 -0.9317232565220831 0.4506015337891731 0.06628168920434097 0.8902611950562956 -0.4506015337891731 -0.06628168920434097 -0.8902611950562956 0.2693223248807161 0.03468885815107804 0.9624251495264555 0.2698092361900396 0.03894437952874851 0.9621259332175119 -0.2698092361900396 -0.03894437952874851 -0.9621259332175119 -0.2693223248807161 -0.03468885815107804 -0.9624251495264555 0.4411122495725708 0.0537295665045241 0.8958421272524874 -0.4411122495725708 -0.0537295665045241 -0.8958421272524874 0.5089459389656588 0.08994830854849475 0.8560860546695225 -0.5089459389656588 -0.08994830854849475 -0.8560860546695225 -0.893140624757341 -0.001746560783355491 0.4497741365769009 0.893140624757341 0.001746560783355491 -0.4497741365769009 0.5746451336020118 0.0794064839342916 0.8145413315091624 -0.5746451336020118 -0.0794064839342916 -0.8145413315091624 0.2166944550745142 0.08239317814647433 0.9727563298868236 -0.2166944550745142 -0.08239317814647433 -0.9727563298868236 -0.2291519337417415 0.08885238018855346 0.9693269034733584 0.2291519337417415 -0.08885238018855346 -0.9693269034733584 -0.6433487104130216 0.05695835373892637 0.7634514933833408 0.6433487104130216 -0.05695835373892637 -0.7634514933833408 -0.8603321617051047 0.04400776713950057 0.5078305701385226 0.8603321617051047 -0.04400776713950057 -0.5078305701385226 0.2550527083687899 0.09062810501618281 0.962670588797082 -0.2550527083687899 -0.09062810501618281 -0.962670588797082 0.2682109604760207 0.08039226475316619 0.9599999814835348 -0.2682109604760207 -0.08039226475316619 -0.9599999814835348 0.5040590655039837 0.06903469085750864 0.8609057265121769 -0.5040590655039837 -0.06903469085750864 -0.8609057265121769 0.5691070498781491 0.06388243088221356 0.8197781412086864 -0.5691070498781491 -0.06388243088221356 -0.8197781412086864 0.6651248264792729 0.08194838488496878 0.7422219529329904 -0.6651248264792729 -0.08194838488496878 -0.7422219529329904 -0.941859161629607 0.05197455383669319 0.3319638013516687 0.941859161629607 -0.05197455383669319 -0.3319638013516687 0.6004182426841933 0.09502246409311689 0.7940205697396621 -0.6004182426841933 -0.09502246409311689 -0.7940205697396621 0.6841206473431174 0.07791754646142467 0.7251950053828735 -0.6841206473431174 -0.07791754646142467 -0.7251950053828735 0.267669686032973 0.09407481440231033 0.9589071219227546 -0.267669686032973 -0.09407481440231033 -0.9589071219227546 -0.2313062834227052 0.09844300790988127 0.9678875851269249 0.2313062834227052 -0.09844300790988127 -0.9678875851269249 -0.619244317071901 0.08796980742174308 0.7802549511258077 0.619244317071901 -0.08796980742174308 -0.7802549511258077 -0.8512868441637578 0.07117766962833931 0.519850409541042 0.8512868441637578 -0.07117766962833931 -0.519850409541042 0.2193054435540003 0.09994882204899158 0.9705232379487894 -0.2193054435540003 -0.09994882204899158 -0.9705232379487894 0.8956747356556694 0.0008618938289220829 0.4447089217085428 -0.8956747356556694 -0.0008618938289220829 -0.4447089217085428 0.960647311568589 0.006749071895014515 0.2776890217574298 -0.960647311568589 -0.006749071895014515 -0.2776890217574298 0.6701335758696255 0.08537633870501175 0.7373139570640962 -0.6701335758696255 -0.08537633870501175 -0.7373139570640962 -0.9963151381735486 0.0103614777137824 0.08513979813113079 0.9963151381735486 -0.0103614777137824 -0.08513979813113079 0.6518451327680904 0.08411166198014565 0.7536731063302501 -0.6518451327680904 -0.08411166198014565 -0.7536731063302501 0.6993131868940091 0.07803092851825916 0.7105436234537067 -0.6993131868940091 -0.07803092851825916 -0.7105436234537067 0.6622904416225062 0.08497656868953818 0.7444127576212123 -0.6622904416225062 -0.08497656868953818 -0.7444127576212123 0.3142247324526497 0.08615424789633501 0.9454312577255299 -0.3142247324526497 -0.08615424789633501 -0.9454312577255299 -0.193200246653653 0.1192240843693557 0.9738887423105661 0.193200246653653 -0.1192240843693557 -0.9738887423105661 -0.594527126720041 0.1033651737012722 0.7974039982717156 0.594527126720041 -0.1033651737012722 -0.7974039982717156 -0.9837759202990764 0.00754899880848756 -0.1792427160492016 0.9837759202990764 -0.00754899880848756 0.1792427160492016 -0.8252223923057854 0.07354181259994058 0.5599996473540243 0.8252223923057854 -0.07354181259994058 -0.5599996473540243 -0.9949542336215003 0.04853849320883647 0.08780710492704381 0.9949542336215003 -0.04853849320883647 -0.08780710492704381 0.6975918817599495 0.08525706534140216 0.7114048069221802 -0.6975918817599495 -0.08525706534140216 -0.7114048069221802 0.7002563485426032 0.09092126520727779 0.7080779405255386 -0.7002563485426032 -0.09092126520727779 -0.7080779405255386 0.6677794435755355 0.08506167003832711 0.739483013346648 -0.6677794435755355 -0.08506167003832711 -0.739483013346648 0.3781520398090869 0.1064682548120612 0.9196007533193418 -0.3781520398090869 -0.1064682548120612 -0.9196007533193418 -0.1213382593086127 0.2048805149604576 0.971236841052425 0.1213382593086127 -0.2048805149604576 -0.971236841052425 -0.5551054568074277 0.1581458233571667 0.8166075130546502 0.5551054568074277 -0.1581458233571667 -0.8166075130546502 -0.9901371474068906 0.112258842923586 -0.08382351406617986 0.9901371474068906 -0.112258842923586 0.08382351406617986 -0.803288234902613 0.1033987854605901 0.5865464200149202 0.803288234902613 -0.1033987854605901 -0.5865464200149202 -0.9833532129007401 0.1393681738100481 0.1165888965838687 0.9833532129007401 -0.1393681738100481 -0.1165888965838687 -0.9757579836748939 0.1415666458278183 0.1668988977907482 0.9757579836748939 -0.1415666458278183 -0.1668988977907482 0.7419975155705617 0.1391518965907396 0.655802132172742 -0.7419975155705617 -0.1391518965907396 -0.655802132172742 0.6897713813801563 0.1108430655201028 0.7154923173976208 -0.6897713813801563 -0.1108430655201028 -0.7154923173976208 0.6647871628790784 0.1067286098731158 0.7393693474209881 -0.6647871628790784 -0.1067286098731158 -0.7393693474209881 0.4461970877580111 0.1722484814124183 0.8782019241196101 -0.4461970877580111 -0.1722484814124183 -0.8782019241196101 -0.05563229514765632 0.5289117773130566 0.8468514507020388 0.05563229514765632 -0.5289117773130566 -0.8468514507020388 -0.435165702110851 0.4515896568508939 0.7789079493314098 0.435165702110851 -0.4515896568508939 -0.7789079493314098 -0.9351368442133152 0.1146554042918252 -0.3352211521688928 0.9351368442133152 -0.1146554042918252 0.3352211521688928 -0.978895673913228 0.147226222079519 0.1417310803111279 0.978895673913228 -0.147226222079519 -0.1417310803111279 -0.7476966889115523 0.4263167318637315 0.5091205216093028 0.7476966889115523 -0.4263167318637315 -0.5091205216093028 -0.8950751141167099 0.4457783992915338 0.01105254785271177 0.8950751141167099 -0.4457783992915338 -0.01105254785271177 -0.8045196442390664 0.3681117434220877 -0.4660921436671046 0.8045196442390664 -0.3681117434220877 0.4660921436671046 -0.959812087916502 0.2719516153311274 0.0693042192666197 0.959812087916502 -0.2719516153311274 -0.0693042192666197 0.6459848051780541 0.5996263944146406 0.4723894776562762 -0.6459848051780541 -0.5996263944146406 -0.4723894776562762 0.7457844295604762 0.1824636226309696 0.640712580679932 -0.7457844295604762 -0.1824636226309696 -0.640712580679932 0.5768067994535729 0.1625941184643131 0.8005354887479621 -0.5768067994535729 -0.1625941184643131 -0.8005354887479621 0.4503136938074429 0.4919927923707287 0.7450910477416499 -0.4503136938074429 -0.4919927923707287 -0.7450910477416499 -0.7666597499316146 0.508869338847824 -0.3915160581832792 0.7666597499316146 -0.508869338847824 0.3915160581832792 -0.965191148852219 0.2074110258106779 0.1593320826120586 0.965191148852219 -0.2074110258106779 -0.1593320826120586 0.6720191798213647 0.2479001060540849 0.6978078240967164 0.915635216907809 0.1723123688035635 0.3632087514302132 -0.915635216907809 -0.1723123688035635 -0.3632087514302132 -0.6720191798213647 -0.2479001060540849 -0.6978078240967164 -0.5180563146018837 0.5370719857658701 -0.6657111513311301 0.5180563146018837 -0.5370719857658701 0.6657111513311301 -0.9061218933420621 0.4189367196019224 0.05861006206597097 0.9061218933420621 -0.4189367196019224 -0.05861006206597097 0.6184195938279667 0.7458954947469703 0.2473805103192755 -0.6184195938279667 -0.7458954947469703 -0.2473805103192755 -0.6923879750287439 0.6725876114897066 -0.2611987689598995 0.6923879750287439 -0.6725876114897066 0.2611987689598995 -0.9606390840088881 0.2313098313454677 0.1538450915612705 0.9606390840088881 -0.2313098313454677 -0.1538450915612705 0.3069822403524479 0.7901164364290533 0.5305449283452308 -0.3069822403524479 -0.7901164364290533 -0.5305449283452308 0.3746982762224805 0.3208309892232409 0.8698670462489877 -0.3746982762224805 -0.3208309892232409 -0.8698670462489877 -0.1488282554927515 0.9155661090944683 -0.3736159127293701 0.1488282554927515 -0.9155661090944683 0.3736159127293701 -0.8374524352939948 0.4900488263066086 0.241920578818076 0.8374524352939948 -0.4900488263066086 -0.241920578818076 0.02013432366244061 0.9948608492919433 0.09922952966113069 -0.02013432366244061 -0.9948608492919433 -0.09922952966113069 -0.5180285247407579 0.8233112786731716 0.2319590178554426 0.5180285247407579 -0.8233112786731716 -0.2319590178554426 -0.975224393760161 0.2198350414258225 0.02469689001540941 0.975224393760161 -0.2198350414258225 -0.02469689001540941 0.2427050512818961 0.9516342080442651 -0.1883788527468427 -0.2427050512818961 -0.9516342080442651 0.1883788527468427 -0.2346210444548571 0.9689518614398232 0.07800804901555697 0.2346210444548571 -0.9689518614398232 -0.07800804901555697 -0.819474038561389 0.5635690772945599 0.1041738702422332 0.819474038561389 -0.5635690772945599 -0.1041738702422332 -0.05451759974655495 0.9941628349827284 0.0931025716990618 0.05451759974655495 -0.9941628349827284 -0.0931025716990618 -0.02236446271528624 0.9851014015947033 0.1705141031809617 0.02236446271528624 -0.9851014015947033 -0.1705141031809617 -0.4496591405956503 0.886703902231043 0.1075306795617989 0.4496591405956503 -0.886703902231043 -0.1075306795617989 -0.9776483495819677 0.2082474605589881 -0.02892576239941774 0.9776483495819677 -0.2082474605589881 0.02892576239941774 0.1956975435479542 0.9610457712487652 -0.195175554345729 -0.1956975435479542 -0.9610457712487652 0.195175554345729 -0.04381310747323911 0.9905954208196149 0.1296191492980425 0.04381310747323911 -0.9905954208196149 -0.1296191492980425 -0.2045470172969875 0.9728342701465432 0.1084158685034084 0.2045470172969875 -0.9728342701465432 -0.1084158685034084 -0.8061701085817001 0.590311466549336 -0.04027565629188418 0.8061701085817001 -0.590311466549336 0.04027565629188418 -0.01476168874444083 0.9980629191000056 0.06043593354113075 0.01476168874444083 -0.9980629191000056 -0.06043593354113075 -0.419392606116148 0.903488272462289 -0.08842388511151307 0.419392606116148 -0.903488272462289 0.08842388511151307 -0.9604116408479968 0.2414820489055198 -0.1389096835359247 0.9604116408479968 -0.2414820489055198 0.1389096835359247 0.06838160924233415 0.9976586547835161 -0.001078912866593481 -0.06838160924233415 -0.9976586547835161 0.001078912866593481 0.04222899237231256 0.999029792746431 0.0124974160626191 -0.04222899237231256 -0.999029792746431 -0.0124974160626191 -0.1703502280819691 0.9826233292457884 -0.07370340978777087 0.1703502280819691 -0.9826233292457884 0.07370340978777087 -0.743332148657051 0.6421560784117094 -0.1873309577506773 0.743332148657051 -0.6421560784117094 0.1873309577506773 -0.3686957111908107 0.9044387687211277 -0.2146019249301191 0.3686957111908107 -0.9044387687211277 0.2146019249301191 -0.8917894335220302 0.2447762468689626 -0.3805209524155026 0.8917894335220302 -0.2447762468689626 0.3805209524155026 0.06630971025854703 0.9976983597810961 0.01417763081541426 -0.06630971025854703 -0.9976983597810961 -0.01417763081541426 0.04403933478065045 0.9976015098838473 -0.05340191447453794 -0.04403933478065045 -0.9976015098838473 0.05340191447453794 -0.2225625318643727 0.9576445604125241 -0.1827096475898951 0.2225625318643727 -0.9576445604125241 0.1827096475898951 -0.7124877891680587 0.6192867656417471 -0.3299167352339004 0.7124877891680587 -0.6192867656417471 0.3299167352339004 0.05913006371641766 0.998026649424209 0.02112918843636627 -0.05913006371641766 -0.998026649424209 -0.02112918843636627 -0.4033096759206618 0.8742863152187486 -0.2701198702983436 0.4033096759206618 -0.8742863152187486 0.2701198702983436 -0.8134171882056506 0.211723434582368 -0.5417800893169285 0.8134171882056506 -0.211723434582368 0.5417800893169285 0.01657746807843397 0.9998193993815981 -0.009292802178504271 -0.01657746807843397 -0.9998193993815981 0.009292802178504271 -0.02580076011921999 0.9936985509212223 -0.1090757107441127 0.02580076011921999 -0.9936985509212223 0.1090757107441127 -0.2734955781683317 0.9192954085383365 -0.2830125802198605 0.2734955781683317 -0.9192954085383365 0.2830125802198605 -0.5880241288714962 0.5915554449308768 -0.5516246726149496 0.5880241288714962 -0.5915554449308768 0.5516246726149496 -0.3472030503156433 0.7613958998613115 -0.5474726710310721 0.3472030503156433 -0.7613958998613115 0.5474726710310721 -0.6116960464249118 0.289453862162385 -0.7362366524884584 0.6116960464249118 -0.289453862162385 0.7362366524884584 0.002326696679450597 0.9915085948100195 -0.1300203557156428 -0.002326696679450597 -0.9915085948100195 0.1300203557156428 -0.01557989416257686 0.9619313418665531 -0.2728467709772202 0.01557989416257686 -0.9619313418665531 0.2728467709772202 -0.1534675911282402 0.7918643444445248 -0.5910994488838054 0.1534675911282402 -0.7918643444445248 0.5910994488838054 -0.3471650544122291 0.4496793716837986 -0.8229610486997658 0.3471650544122291 -0.4496793716837986 0.8229610486997658 0.009548372349849251 0.9875451512375372 -0.1570458622590819 -0.009548372349849251 -0.9875451512375372 0.1570458622590819 -0.009566344304074151 0.8013399289201441 -0.5981327640038742 0.009566344304074151 -0.8013399289201441 0.5981327640038742 -0.1286511849964354 0.5174474660113633 -0.8459887661886724 0.1286511849964354 -0.5174474660113633 0.8459887661886724 -0.2579593021808977 0.3380197859589668 -0.905096471498259 0.2579593021808977 -0.3380197859589668 0.905096471498259 0.00101513059537807 0.9767277244806438 -0.2144805859296778 -0.00101513059537807 -0.9767277244806438 0.2144805859296778 0.01572335456579693 0.4801689348661454 -0.8770351019832158 -0.01572335456579693 -0.4801689348661454 0.8770351019832158 -0.08149115589158218 0.3325277535703116 -0.939566115085541 0.08149115589158218 -0.3325277535703116 0.939566115085541 -0.0316252922276885 0.8553539284748959 -0.5170778451394682 0.0316252922276885 -0.8553539284748959 0.5170778451394682 0.006817937470603061 0.4762750335139073 -0.8792699290775122 -0.006817937470603061 -0.4762750335139073 0.8792699290775122 5.835773135693002e-018 0.3078858683395854 -0.9514232980523336 -5.835773135693002e-018 -0.3078858683395854 0.9514232980523336 0 0.3078858683395855 -0.9514232980523336 -0 -0.3078858683395855 0.9514232980523336 0.02307212455675351 0.3132164083073376 -0.9494014738957851 -0.02307212455675351 -0.3132164083073376 0.9494014738957851 -9.880966486775119e-018 0.3078858683395854 -0.9514232980523336 9.880966486775119e-018 -0.3078858683395854 0.9514232980523336 -0.02929681047929539 0.4931386002173482 -0.8694573122766952 0.02929681047929539 -0.4931386002173482 0.8694573122766952 0.01001146315705132 0.3023485085216996 -0.9531448735633838 -0.01001146315705132 -0.3023485085216996 0.9531448735633838 0.01611345675114597 0.2259029614738796 -0.97401653400179 -0.01611345675114597 -0.2259029614738796 0.97401653400179</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"378\" source=\"#ID274\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID272\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID270\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID271\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"297\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 0 2 6 2 1 8 10 0 6 6 2 12 2 8 14 10 6 16 2 14 12 6 12 18 14 8 20 16 6 18 22 10 16 12 14 24 18 12 26 14 20 28 30 16 18 32 22 16 26 12 24 14 28 24 34 18 26 28 20 36 32 16 30 30 18 34 38 22 32 26 24 40 24 28 42 34 26 44 28 36 46 32 30 48 30 34 50 52 38 32 24 42 40 26 40 54 28 56 42 34 44 58 26 54 44 28 46 56 48 30 50 52 32 48 50 34 58 60 38 52 54 40 62 58 44 64 44 54 66 48 50 68 52 48 70 50 58 72 60 52 74 54 62 76 58 64 78 64 44 66 54 76 66 70 48 68 68 50 72 74 52 70 72 58 78 80 60 74 78 64 82 64 66 84 66 76 86 70 68 88 68 72 90 92 74 70 72 78 94 96 80 74 78 82 98 64 84 82 84 66 86 86 76 100 70 88 92 88 68 90 90 72 94 96 74 92 94 78 98 98 82 102 82 84 104 84 86 106 86 100 108 92 88 110 88 90 112 90 94 114 116 92 117 94 98 120 98 102 122 82 104 102 84 106 104 86 108 106 108 100 124 110 88 112 92 110 117 112 90 114 114 94 120 120 98 122 122 102 126 102 104 128 104 106 130 106 108 132 108 124 134 110 112 136 117 110 138 112 114 136 114 120 140 120 122 142 102 128 126 122 126 144 104 130 128 106 132 130 132 108 134 134 124 146 110 136 138 136 114 140 140 120 142 142 122 144 126 128 148 144 126 150 128 130 152 130 132 154 132 134 156 134 146 158 138 136 160 136 140 160 140 142 162 142 144 164 128 152 148 126 148 150 144 150 166 130 154 152 132 156 154 156 134 158 158 146 168 160 140 162 162 142 164 164 144 166 148 152 170 150 148 172 166 150 174 152 154 176 154 156 178 156 158 180 168 146 182 158 168 184 152 176 170 172 148 170 150 172 174 154 178 176 156 180 178 158 184 180 168 182 186 168 186 184 170 176 188 172 170 190 174 172 192 176 178 194 178 180 196 180 184 198 186 182 200 184 186 202 176 194 188 190 170 188 172 190 192 178 196 194 180 198 196 198 184 202 186 200 204 182 206 200 202 186 204 188 194 208 190 188 210 192 190 212 194 196 214 196 198 216 198 202 218 200 220 204 206 222 200 202 204 224 194 214 208 210 188 208 190 210 212 196 216 214 198 218 216 202 224 218 204 220 226 220 200 228 200 222 230 204 226 224 208 214 232 234 210 208 212 210 236 214 216 238 226 220 240 220 228 240 200 230 228 222 242 230 232 214 238 244 208 245 234 208 244 210 234 236 240 228 248 230 250 228 230 242 250 252 244 245 236 234 244 248 228 254 250 254 228 242 256 250 244 252 258 236 244 260 248 254 262 264 254 250 250 256 264 266 258 252 260 244 258 268 262 254 264 268 254 256 270 264 272 266 252 268 274 262 264 276 268 264 270 276 278 266 272 262 274 280 282 274 268 276 282 268 270 284 276 286 278 272 262 280 286 274 288 280 282 290 274 276 292 282 276 284 292 280 278 286 288 294 280 274 290 288 282 296 290 292 296 282 284 298 292 280 294 278 288 300 294 290 302 288 296 304 290 306 296 292 298 306 292 302 300 288 290 304 302 296 308 304 306 308 296 298 310 306 302 312 300 304 314 302 308 316 304 306 318 308 310 318 306 320 312 302 314 320 302 304 316 314 308 322 316 318 322 308 310 324 318 314 326 320 316 328 314 322 330 316 332 322 318 324 332 318 328 326 314 316 330 328 334 330 322 332 334 322 324 336 332 328 338 326 330 340 328 334 342 330 332 344 334 332 336 344 328 346 338 340 346 328 330 348 340 342 348 330 334 350 342 334 344 350 344 336 352 340 354 346 340 348 354 342 356 348 342 350 356 344 358 350 344 352 358 348 360 354 348 356 362 350 364 356 350 358 366 348 362 360 356 368 362 356 370 368 362 372 360 362 368 374 362 374 372 372 374 376</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID272\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"297\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 7 3 5 9 4 3 7 5 11 13 3 7 15 9 3 17 7 11 13 15 3 19 13 7 21 9 15 19 7 17 17 11 23 25 15 13 27 13 19 29 21 15 19 17 31 17 23 33 25 13 27 25 29 15 27 19 35 37 21 29 31 17 33 35 19 31 33 23 39 41 25 27 43 29 25 45 27 35 47 37 29 49 31 33 51 35 31 33 39 53 41 43 25 55 41 27 43 57 29 59 45 35 45 55 27 57 47 29 51 31 49 49 33 53 59 35 51 53 39 61 63 41 55 65 45 59 67 55 45 69 51 49 71 49 53 73 59 51 75 53 61 77 63 55 79 65 59 67 45 65 67 77 55 69 49 71 73 51 69 71 53 75 79 59 73 75 61 81 83 65 79 85 67 65 87 77 67 89 69 71 91 73 69 71 75 93 95 79 73 75 81 97 99 83 79 83 85 65 87 67 85 101 77 87 93 89 71 91 69 89 95 73 91 93 75 97 99 79 95 103 83 99 105 85 83 107 87 85 109 101 87 111 89 93 113 91 89 115 95 91 118 93 119 121 99 95 123 103 99 103 105 83 105 107 85 107 109 87 125 101 109 113 89 111 118 111 93 115 91 113 121 95 115 123 99 121 127 103 123 129 105 103 131 107 105 133 109 107 135 125 109 137 113 111 139 111 118 137 115 113 141 121 115 143 123 121 127 129 103 145 127 123 129 131 105 131 133 107 135 109 133 147 125 135 139 137 111 141 115 137 143 121 141 145 123 143 149 129 127 151 127 145 153 131 129 155 133 131 157 135 133 159 147 135 161 137 139 161 141 137 163 143 141 165 145 143 149 153 129 151 149 127 167 151 145 153 155 131 155 157 133 159 135 157 169 147 159 163 141 161 165 143 163 167 145 165 171 153 149 173 149 151 175 151 167 177 155 153 179 157 155 181 159 157 183 147 169 185 169 159 171 177 153 171 149 173 175 173 151 177 179 155 179 181 157 181 185 159 187 183 169 185 187 169 189 177 171 191 171 173 193 173 175 195 179 177 197 181 179 199 185 181 201 183 187 203 187 185 189 195 177 189 171 191 193 191 173 195 197 179 197 199 181 203 185 199 205 201 187 201 207 183 205 187 203 209 195 189 211 189 191 213 191 193 215 197 195 217 199 197 219 203 199 205 221 201 201 223 207 225 205 203 209 215 195 209 189 211 213 211 191 215 217 197 217 219 199 219 225 203 227 221 205 229 201 221 231 223 201 225 227 205 233 215 209 209 211 235 237 211 213 239 217 215 241 221 227 241 229 221 229 231 201 231 243 223 239 215 233 246 209 247 247 209 235 237 235 211 249 229 241 229 251 231 251 243 231 246 247 253 247 235 237 255 229 249 229 255 251 251 257 243 259 253 247 261 247 237 263 255 249 251 255 265 265 257 251 253 259 267 259 247 261 255 263 269 255 269 265 265 271 257 253 267 273 263 275 269 269 277 265 277 271 265 273 267 279 281 275 263 269 275 283 269 283 277 277 285 271 273 279 287 287 281 263 281 289 275 275 291 283 283 293 277 293 285 277 287 279 281 281 295 289 289 291 275 291 297 283 283 297 293 293 299 285 279 295 281 295 301 289 289 303 291 291 305 297 293 297 307 293 307 299 289 301 303 303 305 291 305 309 297 297 309 307 307 311 299 301 313 303 303 315 305 305 317 309 309 319 307 307 319 311 303 313 321 303 321 315 315 317 305 317 323 309 309 323 319 319 325 311 321 327 315 315 329 317 317 331 323 319 323 333 319 333 325 315 327 329 329 331 317 323 331 335 323 335 333 333 337 325 327 339 329 329 341 331 331 343 335 335 345 333 345 337 333 339 347 329 329 347 341 341 349 331 331 349 343 343 351 335 351 345 335 353 337 345 347 355 341 355 349 341 349 357 343 357 351 343 351 359 345 359 353 345 355 361 349 363 357 349 357 365 351 367 359 351 361 363 349 363 369 357 369 371 357 361 373 363 375 369 363 373 375 363 377 375 373</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID272\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID275\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID276\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID280\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">-0.7116498351097107 1.906256556510925 0.2465686351060867 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6593407988548279 1.912085294723511 0.2607377767562866 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.7116498351097107 1.906256556510925 0.2465686351060867 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.607161819934845 1.912085294723511 0.2496029883623123 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.7527179718017578 1.90237021446228 0.2152038067579269 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.7735931277275085 1.897327780723572 0.1462340503931046 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.546968400478363 1.912085294723511 0.1417621821165085 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.5591517090797424 1.905122637748718 0.08657681941986084 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.7547610402107239 1.90048885345459 0.08241678774356842 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.7244824171066284 1.905122637748718 0.05090289935469627 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.6064443588256836 1.905122637748718 0.04070135205984116 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6625224351882935 1.913674473762512 0.02759447880089283 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6608441472053528 1.925890922546387 0.04520654678344727</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID280\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID277\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID281\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">-0.435165702110851 0.4515896568508939 0.7789079493314098 -0.06368333310271433 0.7816356971273526 0.620475680475203 -0.05563229514765632 0.5289117773130566 0.8468514507020388 0.05563229514765632 -0.5289117773130566 -0.8468514507020388 0.06368333310271433 -0.7816356971273526 -0.620475680475203 0.435165702110851 -0.4515896568508939 -0.7789079493314098 0.4503136938074429 0.4919927923707287 0.7450910477416499 -0.4503136938074429 -0.4919927923707287 -0.7450910477416499 -0.357955641606925 0.726460486063723 0.5866199117229437 0.357955641606925 -0.726460486063723 -0.5866199117229437 0.3587988135093599 0.7857758001028901 0.5038053229144552 -0.3587988135093599 -0.7857758001028901 -0.5038053229144552 -0.7476966889115523 0.4263167318637315 0.5091205216093028 0.7476966889115523 -0.4263167318637315 -0.5091205216093028 0.6459848051780541 0.5996263944146406 0.4723894776562762 -0.6459848051780541 -0.5996263944146406 -0.4723894776562762 -0.6026294861515171 0.7116628314326922 0.3610730075455128 0.6026294861515171 -0.7116628314326922 -0.3610730075455128 0.5614139557093099 0.7664281898127975 0.3120932556065631 -0.5614139557093099 -0.7664281898127975 -0.3120932556065631 -0.8950751141167099 0.4457783992915338 0.01105254785271177 0.8950751141167099 -0.4457783992915338 -0.01105254785271177 0.7167870052363519 0.6972488856121056 0.007770497859147317 -0.7167870052363519 -0.6972488856121056 -0.007770497859147317 -0.7799109052037205 0.6257604651572392 -0.01276010150857372 0.7799109052037205 -0.6257604651572392 0.01276010150857372 0.6184195938279667 0.7458954947469703 0.2473805103192755 -0.6184195938279667 -0.7458954947469703 -0.2473805103192755 -0.6469293907248533 0.6898739395188838 -0.3248943074125266 0.6469293907248533 -0.6898739395188838 0.3248943074125266 0.2427050512818961 0.9516342080442651 -0.1883788527468427 -0.2427050512818961 -0.9516342080442651 0.1883788527468427 -0.7666597499316146 0.508869338847824 -0.3915160581832792 0.7666597499316146 -0.508869338847824 0.3915160581832792 0.6935024192222105 0.6221495312494236 -0.3632965115426569 -0.6935024192222105 -0.6221495312494236 0.3632965115426569 -0.5180563146018837 0.5370719857658701 -0.6657111513311301 0.5180563146018837 -0.5370719857658701 0.6657111513311301 0.1956975435479542 0.9610457712487652 -0.195175554345729 -0.1956975435479542 -0.9610457712487652 0.195175554345729 -0.3920370787496035 0.7299200010228979 -0.5599318896010566 0.3920370787496035 -0.7299200010228979 0.5599318896010566 0.436009300540624 0.6523065459228311 -0.6199935967316932 -0.436009300540624 -0.6523065459228311 0.6199935967316932 -0.1488282554927515 0.9155661090944683 -0.3736159127293701 0.1488282554927515 -0.9155661090944683 0.3736159127293701 -0.03258556170756263 0.82269437928504 -0.5675492396796997 0.03258556170756263 -0.82269437928504 0.5675492396796997</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID281\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID279\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID282\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">0.7188386542691355 -8.291532658220529 0.1749896748126473 -8.320893956598498 0.2041830542323292 -8.150311163627059 9.672250224643861 -7.059456281068957 9.121063736486267 -7.00015437808274 9.635808610670308 -6.88973862863807 0.6639147781687854 -8.886877481008773 0.2324867331287822 -8.753934829114037 0.7762688155175496 -8.723816519917641 9.839906616466639 -6.307174060427218 9.339995661571731 -6.435828230921108 9.288313773784795 -6.250258337511604 -4.191559614331788 -6.836501395105861 -4.69878214040593 -6.693971572480447 -4.555776490174386 -6.546509488265469 15.85579309369449 -2.88317807879961 15.3954110245283 -3.130225793674685 15.7542839453301 -2.710804965467504 -4.177611420914334 -6.813955883605757 -4.384548454898964 -6.904087306834577 -4.684900128791502 -6.671571896546428 15.13162762342031 -2.942603618617635 14.94554878944722 -2.851268576834669 15.4106366706707 -2.609737105537482 -8.226513411480296 -0.7098504223906802 -8.043831377542412 -1.259634095720322 -8.44139085504138 -0.7876381362217108 16.68586566671936 -0.4969757365175341 16.59975977698542 -0.8734360458787314 16.49519576895906 -0.4117015401201064 -9.850781302299073 -2.029177671362245 -10.11583197132906 -2.034445504716346 -10.23693653686281 -1.551358442944537 17.68092000924953 -0.333467071248151 17.79621260351479 0.1513689572324142 17.91670649074802 -0.307956751485418 -10.32315030913376 4.40779187417157 -10.0581001196428 4.41307461787261 -10.45954325990876 3.982258596677514 17.1422727178355 2.524676465625354 17.10145403098541 2.971463949908351 17.33720217749696 2.997192587960516 -8.658483753761287 3.758285282074407 -8.809672350536607 3.247939079297819 -9.068603822892037 3.332556943658334 18.85280106037276 1.76687791656905 18.57308203040395 1.669767787113157 18.78896415663697 2.136613287842372 -6.327562815075143 7.424957543166874 -6.590166251534956 7.147744147272575 -6.581760019008222 7.518035654996087 17.00806838718614 4.873788786955079 16.64914884213192 5.308447629415089 16.91766513457668 5.423474394581779 -4.633608847655582 7.295671634646289 -4.875549018316793 7.380359627722972 -4.604236027962772 7.665300658634502 17.70326608388892 4.685070745077654 17.53146206826799 4.509947453012988 17.46142862806131 5.061469611505912 -1.852210723918644 10.55642798035522 -2.446473941138867 10.31730615529452 -2.085243986845924 10.65537294062357 12.79719115790005 8.928718448525228 13.23698361062379 8.581924978490923 12.68436991297344 8.726092390013315 0.9968152046229961 8.751937142296828 0.946469134028074 8.916366648893565 1.39957890577551 9.0595932442054 10.14359480581646 8.249131720626881 10.13688624953656 8.080081984372791 9.647226693335407 8.382708553762887</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"72\" source=\"#ID282\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID278\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID276\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID277\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 3 6 4 2 5 8 6 1 7 0 8 1 9 10 10 6 11 12 12 8 13 0 14 10 15 14 16 6 17 12 18 16 19 8 20 18 21 14 22 10 23 12 24 20 25 16 26 18 27 22 28 14 29 20 30 24 31 16 32 26 33 14 34 22 35 24 36 20 37 28 38 30 39 26 40 22 41 20 42 32 43 28 44 34 45 30 46 22 47 32 48 36 49 28 50 38 51 30 52 34 53 36 54 40 55 28 56 42 57 38 58 34 59 36 60 44 61 40 62 42 63 44 64 38 65 44 66 46 67 40 68 46 69 44 70 42 71</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID278\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID279\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 7 4 5 4 9 7 11 4 5 9 13 7 15 11 9 17 13 11 15 19 17 21 13 15 23 19 17 25 21 23 15 27 29 21 25 23 27 31 29 33 21 23 31 35 29 37 33 35 31 39 29 41 37 35 39 43 41 45 37 39 45 43 41 47 45 43 45 47</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID278\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID283\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID284\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID287\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">-0.7070872783660889 1.922605037689209 0.06054756790399551 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6617981791496277 1.944134831428528 0.1425205767154694 -0.6617981791496277 1.944134831428528 0.1425205767154694 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID287\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID285\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID288\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">-0.165409139121686 0.9724881256473652 -0.1640325033945932 -0.03936888359639548 0.9820447570333709 -0.1844944069278004 -0.05154784640370621 0.9986705258475552 -1.828954190066948e-005 0.05154784640370621 -0.9986705258475552 1.828954190066948e-005 0.03936888359639548 -0.9820447570333709 0.1844944069278004 0.165409139121686 -0.9724881256473652 0.1640325033945932 -0.2344195103292229 0.9677138782286453 -0.09261394636166778 0.2344195103292229 -0.9677138782286453 0.09261394636166778 0.07133911037849994 0.9829624583428812 -0.1693975702863634 -0.07133911037849994 -0.9829624583428812 0.1693975702863634 -0.2642754452526631 0.9643255572820237 0.01532020264946916 0.2642754452526631 -0.9643255572820237 -0.01532020264946916 0.1253419610089993 0.9875266825606484 -0.09529136393807591 -0.1253419610089993 -0.9875266825606484 0.09529136393807591 -0.2333211288655121 0.9667719534384546 0.1044664581084193 0.2333211288655121 -0.9667719534384546 -0.1044664581084193 0.1531163977687427 0.9876600812654266 0.03290794142900599 -0.1531163977687427 -0.9876600812654266 -0.03290794142900599 -0.1663136067224484 0.9732003845942406 0.1588105652801244 0.1663136067224484 -0.9732003845942406 -0.1588105652801244 0.1453191391419066 0.9831280205923531 0.1110929472343633 -0.1453191391419066 -0.9831280205923531 -0.1110929472343633 -0.04191050783459503 0.9827371062147273 0.1801979173069162 0.04191050783459503 -0.9827371062147273 -0.1801979173069162 0.08898259893596822 0.9845879358947005 0.1505612618744073 -0.08898259893596822 -0.9845879358947005 -0.1505612618744073</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID288\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID286\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID284\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID285\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 6 2 10 11 3 7 8 12 2 3 13 9 10 2 14 15 3 11 2 12 16 17 13 3 14 2 18 19 3 15 2 16 20 21 17 3 18 2 22 23 3 19 2 20 24 25 21 3 2 24 22 23 25 3</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID286\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID289\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID290\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID293\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.546968400478363 1.912085294723511 0.1417621821165085 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.56380695104599 1.912085294723511 0.2021596431732178 -0.5726258754730225 1.82999062538147 0.2332505583763123 -0.546968400478363 1.912085294723511 0.1417621821165085</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID293\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID291\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID294\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">0.9632631188235522 -0.001770734784068651 0.2685535857378334 0.9632631188235522 -0.001770734784068651 0.2685535857378334 0.9632631188235522 -0.001770734784068651 0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334 -0.9632631188235522 0.001770734784068651 -0.2685535857378334</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID294\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID292\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID290\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID291\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID292\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID295\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID296\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID299\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"612\">-0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.8002784848213196 0.9965742826461792 -0.118915356695652 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.7995144128799439 0.9900846481323242 -0.1417891830205917 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.7933366298675537 0.872636616230011 -0.1804070323705673 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.8002784848213196 1.020599007606506 -0.05044753849506378 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.6099169254302979 0.9984251260757446 -0.1172629222273827 -0.5914897322654724 0.8816207051277161 0.3464677929878235 -0.6069841980934143 0.9917877912521362 -0.1390951871871948 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.6072397828102112 0.8743020296096802 -0.1780563592910767 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.7878978252410889 0.7611286044120789 -0.212054580450058 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6112203598022461 1.020322561264038 -0.05074839293956757 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6053041219711304 0.7718126773834229 0.3616744577884674 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.8002784848213196 1.065373659133911 0.02161485888063908 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.6072397828102112 0.7641450166702271 -0.2099666148424149 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.7842722535133362 0.6196871995925903 -0.2356189638376236 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.6105127334594727 1.062604069709778 0.02048102393746376 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.5763965845108032 1.083053588867188 0.3171393871307373 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6290454864501953 0.6240295767784119 0.3749990165233612 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.8002784848213196 1.134773850440979 0.09562528133392334 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.6212342977523804 0.621590256690979 -0.2350388020277023 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.6126996278762817 1.132825136184692 0.09579920023679733 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.5667718052864075 1.231308460235596 0.2951163649559021 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.8002784848213196 1.226557493209839 0.1501588523387909 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7999430894851685 0.4232206344604492 -0.1205965802073479 -0.7809916734695435 0.4214315414428711 -0.2518607676029205 -0.6737225651741028 0.4225216507911682 -0.2487141937017441 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.6177177429199219 1.227490305900574 0.1535092145204544 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.5584760904312134 1.338033199310303 0.2760796546936035 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6648102402687073 0.4212585687637329 0.3923158347606659 -0.6914955377578735 0.4193950891494751 0.3588072657585144 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.8011427521705627 0.4255831241607666 0.01916016265749931 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.7973037362098694 1.336279630661011 0.1839811652898789 -0.6028463840484619 1.335630416870117 0.1818975508213043 -0.6028463840484619 1.335630416870117 0.1818975508213043 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7497841715812683 0.4189915657043457 0.2971207797527313 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.7899727821350098 0.4261996150016785 0.1531498581171036 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.5510411262512207 1.437644124031067 0.2575764954090118 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7724733352661133 0.4233014583587647 0.2322525233030319 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.7979366779327393 1.430078029632568 0.1879792362451553 -0.6028463840484619 1.430773377418518 0.1891794055700302 -0.6028463840484619 1.430773377418518 0.1891794055700302 -0.6050586104393005 1.530340790748596 0.1673334091901779 -0.6050586104393005 1.530340790748596 0.1673334091901779 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.7995755672454834 1.529133081436157 0.1681521981954575 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.541817307472229 1.536199450492859 0.2382145375013351 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.7937231063842773 1.631798982620239 0.123851403594017 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.5282346606254578 1.631603479385376 0.2142343670129776 -0.6008648872375488 1.63359522819519 0.123851403594017 -0.6008648872375488 1.63359522819519 0.123851403594017 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.7942582964897156 1.673280954360962 0.08852987736463547 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.5134181380271912 1.737711548805237 0.1886539459228516 -0.6027937531471252 1.674088478088379 0.08723254501819611 -0.6027937531471252 1.674088478088379 0.08723254501819611 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.7934396266937256 1.703024983406067 0.0606619194149971 -0.6027937531471252 1.703011274337769 0.06053215265274048 -0.6027937531471252 1.703011274337769 0.06053215265274048 -0.6044416427612305 1.727086067199707 0.03279396891593933 -0.6044416427612305 1.727086067199707 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.7956589460372925 1.725906729698181 0.03279396891593933 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.4982104897499085 1.831614017486572 0.16129469871521 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.7956812381744385 1.760987401008606 -0.02161367051303387 -0.60619056224823 1.760315418243408 -0.0219960268586874 -0.60619056224823 1.760315418243408 -0.0219960268586874 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.4811488389968872 1.90060830116272 0.1212251707911491 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.7968477606773377 1.775644421577454 -0.08081070333719254 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.6044694781303406 1.775644421577454 -0.07519237697124481 -0.6044694781303406 1.775644421577454 -0.07519237697124481 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4552118182182312 1.913546085357666 0.05328220129013062 -0.4988121390342712 1.913546085357666 0.03562422469258308 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.7925398349761963 1.78863799571991 -0.1344994306564331 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5295662879943848 1.913546085357666 -0.03441489487886429 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.5214661359786987 1.913546085357666 0.007866730913519859 -0.6044694781303406 1.788490056991577 -0.1259496361017227 -0.6044694781303406 1.788490056991577 -0.1259496361017227 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.5210548639297485 1.913546085357666 -0.07983867824077606 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.7883630394935608 1.79233717918396 -0.1969264596700668 -0.6044694781303406 1.792240262031555 -0.1946214586496353 -0.6044694781303406 1.792240262031555 -0.1946214586496353 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.5112505555152893 1.913546085357666 -0.1223205998539925 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.775830864906311 1.78669011592865 -0.2666657269001007 -0.6074553728103638 1.788490056991577 -0.264063835144043 -0.6074553728103638 1.788490056991577 -0.264063835144043 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.4929358661174774 1.913546085357666 -0.1572986245155335 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.764828085899353 1.761277794837952 -0.2961414754390717 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4262329339981079 1.900443315505981 -0.2682575881481171 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.4639521241188049 1.913546085357666 -0.1890692263841629 -0.6052919626235962 1.761277794837952 -0.2947392761707306 -0.6052919626235962 1.761277794837952 -0.2947392761707306 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4274950623512268 1.892464518547058 -0.2987582087516785 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.4262329339981079 1.912193655967712 -0.1961420774459839 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.7230682969093323 1.778220176696777 -0.3468544185161591 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.4284909069538117 1.845904350280762 -0.3425243198871613 -0.5915260314941406 1.761277794837952 -0.3425095975399017 -0.5915260314941406 1.761277794837952 -0.3425095975399017 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.6986236572265625 1.778753638267517 -0.3587228357791901 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.4284909069538117 1.778753638267517 -0.3580985367298126 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6725916862487793 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6455187797546387 1.778753638267517 -0.3623466193675995 -0.6194872856140137 1.778753638267517 -0.3623466193675995 -0.5757541060447693 1.778753638267517 -0.3605347573757172 -0.5757541060447693 1.778753638267517 -0.3605347573757172</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"204\" source=\"#ID299\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID297\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID300\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"612\">0.003154775786052327 0.7279221052632761 -0.6856525767900384 0.00203187706716806 0.704169472516569 -0.7100290314144352 -0.005578169835515358 0.9529680193264487 -0.3030195342916218 0.005578169835515358 -0.9529680193264487 0.3030195342916218 -0.00203187706716806 -0.704169472516569 0.7100290314144352 -0.003154775786052327 -0.7279221052632761 0.6856525767900384 0.009873696533179039 0.2940161067184299 -0.9557494646124096 -0.009873696533179039 -0.2940161067184299 0.9557494646124096 -0.003893262529684494 0.9526976940201263 -0.3038946302842631 0.003893262529684494 -0.9526976940201263 0.3038946302842631 0.008412698300353367 0.295838201885185 -0.9552010180127784 -0.008412698300353367 -0.295838201885185 0.9552010180127784 -0.002151784389725178 0.9027479772971301 -0.4301644561210053 0.002151784389725178 -0.9027479772971301 0.4301644561210053 0.9967239721974597 0.07970595424672489 -0.01372166551612808 0.994807368507486 -0.08790384280203133 -0.05129536025652839 0.9641445631344157 0.263879925291912 0.02815397674009587 -0.9641445631344157 -0.263879925291912 -0.02815397674009587 -0.994807368507486 0.08790384280203133 0.05129536025652839 -0.9967239721974597 -0.07970595424672489 0.01372166551612808 0.9998659225120776 -0.004781490074433051 -0.01566123723529287 -0.9998659225120776 0.004781490074433051 0.01566123723529287 0.00862185958196769 0.2207983508858853 -0.9752813705712944 -0.00862185958196769 -0.2207983508858853 0.9752813705712944 0.003991036288046091 0.9093356525074643 -0.4160441595650297 -0.003991036288046091 -0.9093356525074643 0.4160441595650297 0.9960935768753003 0.08614723225758705 -0.01939691939787533 -0.9960935768753003 -0.08614723225758705 0.01939691939787533 0.9905918755147362 -0.1363080438040944 -0.01215949663836422 -0.9905918755147362 0.1363080438040944 0.01215949663836422 0.005673301987295233 0.2264394723743121 -0.9740087160777382 -0.005673301987295233 -0.2264394723743121 0.9740087160777382 0.004720636310207403 0.7943622490834562 -0.6074259895854802 -0.004720636310207403 -0.7943622490834562 0.6074259895854802 0.9968271721108338 0.04461136360658059 -0.06591976318737446 -0.9968271721108338 -0.04461136360658059 0.06591976318737446 0.9980321071246151 -0.06250502152018732 0.005003542061573886 -0.9980321071246151 0.06250502152018732 -0.005003542061573886 0.004096602433148256 0.1253146873242252 -0.9921085862894931 -0.004096602433148256 -0.1253146873242252 0.9921085862894931 0.008661291044890985 0.800806736223715 -0.5988602117824801 -0.008661291044890985 -0.800806736223715 0.5988602117824801 0.8956747356556694 0.0008618938289220829 0.4447089217085428 -0.8956747356556694 -0.0008618938289220829 -0.4447089217085428 0.9852524477210616 -0.1710581732994747 -0.004088472465827907 -0.9852524477210616 0.1710581732994747 0.004088472465827907 0.005601650806890374 0.1304529279567728 -0.9914386794430319 -0.005601650806890374 -0.1304529279567728 0.9914386794430319 0.006660255799076443 0.62615586728002 -0.7796694625695538 -0.006660255799076443 -0.62615586728002 0.7796694625695538 0.9759876233675472 0.1309203157675931 -0.1740920157637353 -0.9759876233675472 -0.1309203157675931 0.1740920157637353 0.9827040068018349 -0.1847034700396569 0.01332153035235797 -0.9827040068018349 0.1847034700396569 -0.01332153035235797 0.01726207897819288 0.07004635942544597 -0.9973943694249492 -0.01726207897819288 -0.07004635942544597 0.9973943694249492 0.009504062429951832 0.6333564301194223 -0.7738018513958912 -0.009504062429951832 -0.6333564301194223 0.7738018513958912 0.960647311568589 0.006749071895014515 0.2776890217574298 -0.960647311568589 -0.006749071895014515 -0.2776890217574298 0.9710424030277641 -0.2387866027887111 0.007590115327941624 -0.9710424030277641 0.2387866027887111 -0.007590115327941624 0.02864701649948257 0.06098741739664127 -0.9977273592344587 -0.02864701649948257 -0.06098741739664127 0.9977273592344587 0.0122678743552204 0.408942547431161 -0.9124776666633092 -0.0122678743552204 -0.408942547431161 0.9124776666633092 0.9258007050101661 0.1301718437275705 -0.3548920197795999 -0.9258007050101661 -0.1301718437275705 0.3548920197795999 0.9844961877060547 -0.1748438068751519 -0.01403209142106429 -0.9844961877060547 0.1748438068751519 0.01403209142106429 -0.0003328446250290773 -0.9999540637905197 0.009579119128647748 0.009719844425970807 -0.9998397863798134 0.01503084150353108 0.01129802889254054 -0.9997986187078636 0.01658543255363933 -0.01129802889254054 0.9997986187078636 -0.01658543255363933 -0.009719844425970807 0.9998397863798134 -0.01503084150353108 0.0003328446250290773 0.9999540637905197 -0.009579119128647748 0.005829775791856834 0.3941443923859961 -0.9190300384997712 -0.005829775791856834 -0.3941443923859961 0.9190300384997712 0.9125357698546387 -0.1130702210936151 -0.3930567310677209 -0.9125357698546387 0.1130702210936151 0.3930567310677209 0.0584403134379483 -0.9982850189476406 -0.003427930860333971 0.07339187183949321 -0.9972987116424856 -0.002985448732408235 -0.07339187183949321 0.9972987116424856 0.002985448732408235 -0.0584403134379483 0.9982850189476406 0.003427930860333971 -0.008795869253130913 -0.9999350758860359 0.007244080125832215 0.008795869253130913 0.9999350758860359 -0.007244080125832215 -0.001709771075087474 0.1630913164699768 -0.9866094967994991 0.001709771075087474 -0.1630913164699768 0.9866094967994991 0.5477061066700305 0.06663861518257813 -0.8340127790884894 -0.5477061066700305 -0.06663861518257813 0.8340127790884894 -0.01146976780842381 -0.9999016954466101 -0.008064977955058951 0.01146976780842381 0.9999016954466101 0.008064977955058951 -0.07999252346564843 -0.9966968905818605 -0.01401800606535597 0.07999252346564843 0.9966968905818605 0.01401800606535597 0.8175796316467974 -0.1036266295353065 -0.5664142190724379 -0.8175796316467974 0.1036266295353065 0.5664142190724379 -0.1171614320668039 -0.9928592035054589 -0.02244550847189105 0.1171614320668039 0.9928592035054589 0.02244550847189105 0.0005074685993279611 -0.07314158556779575 -0.9973214381212556 -0.0005074685993279611 0.07314158556779575 0.9973214381212556 0.4671843293411222 -0.05410079983313199 -0.8825032044562227 -0.4671843293411222 0.05410079983313199 0.8825032044562227 0.4157909467608663 -0.2893045046693474 -0.8622185292428631 -0.4157909467608663 0.2893045046693474 0.8622185292428631 0.00125164063339767 -0.2989056791747194 -0.9542818390563789 -0.00125164063339767 0.2989056791747194 0.9542818390563789 0.7357186249502042 -0.2286613752319258 -0.6375202587984362 -0.7357186249502042 0.2286613752319258 0.6375202587984362 0.003126663485774014 -0.5245013036690988 -0.8514039032238826 -0.003126663485774014 0.5245013036690988 0.8514039032238826 0.7444360956075482 -0.2640628572513944 -0.6132582710219399 -0.7444360956075482 0.2640628572513944 0.6132582710219399 0.453646658642683 -0.4631728809210656 -0.7613642961694551 -0.453646658642683 0.4631728809210656 0.7613642961694551 0.001292287114555989 -0.6679956796251377 -0.7441640289587799 -0.001292287114555989 0.6679956796251377 0.7441640289587799 0.8074365638431011 -0.3017915337183512 -0.5069201766996171 -0.8074365638431011 0.3017915337183512 0.5069201766996171 0.4413654101371363 -0.6003888253962572 -0.6668806737893819 -0.4413654101371363 0.6003888253962572 0.6668806737893819 -0.001171495476863823 -0.7300817285972934 -0.6833588348494045 0.001171495476863823 0.7300817285972934 0.6833588348494045 0.4526027224778333 -0.635258761474257 -0.6257771820511247 -0.4526027224778333 0.635258761474257 0.6257771820511247 0.4748307092488027 -0.6940603301408 -0.5411248060097805 -0.4748307092488027 0.6940603301408 0.5411248060097805 0.002717381677525309 -0.8075924325322345 -0.5897347528791967 -0.002717381677525309 0.8075924325322345 0.5897347528791967 0.8464322837763881 -0.3623231834195628 -0.3902233972198512 -0.8464322837763881 0.3623231834195628 0.3902233972198512 -0.0003509631312579686 -0.919550123560017 -0.3929725780326637 0.0003509631312579686 0.919550123560017 0.3929725780326637 0.5001644196760581 -0.7853667004844724 -0.3647392206224129 -0.5001644196760581 0.7853667004844724 0.3647392206224129 0.7953598593833767 -0.5959557967894432 -0.1106317420757499 -0.7953598593833767 0.5959557967894432 0.1106317420757499 0.00256577070308407 -0.9705573239926624 -0.2408565914914959 -0.00256577070308407 0.9705573239926624 0.2408565914914959 0.6770063870684798 -0.7260984694438274 0.1201805497566687 -0.6770063870684798 0.7260984694438274 -0.1201805497566687 0.5130715501709678 -0.8343890419510267 -0.2013765405334188 -0.5130715501709678 0.8343890419510267 0.2013765405334188 0.5045078836468269 -0.02905227361918602 -0.8629181657235846 0.3740154694987343 0.08517409969750246 -0.9235030055805781 -0.3740154694987343 -0.08517409969750246 0.9235030055805781 -0.5045078836468269 0.02905227361918602 0.8629181657235846 0.004738754576579228 -0.9886901059625701 -0.1498980272611502 -0.004738754576579228 0.9886901059625701 0.1498980272611502 0.8761960434976746 -0.4814018184795852 -0.0230820823057494 -0.8761960434976746 0.4814018184795852 0.0230820823057494 0.8175550262034389 -0.3652865767667861 -0.4451623254089426 -0.8175550262034389 0.3652865767667861 0.4451623254089426 0.4805228882716853 -0.8689358673983149 -0.1185251542744236 -0.4805228882716853 0.8689358673983149 0.1185251542744236 0.8246367447315011 -0.5481831095965644 0.1395332132206313 -0.8246367447315011 0.5481831095965644 -0.1395332132206313 0.00010182183726732 -0.9999807024157885 0.006211636526666983 -0.00010182183726732 0.9999807024157885 -0.006211636526666983 0.3573934484380254 -0.9320419610155467 0.05973027640879219 -0.3573934484380254 0.9320419610155467 -0.05973027640879219 0.7326226935095296 -0.6427578869681038 0.223889007535297 -0.7326226935095296 0.6427578869681038 -0.223889007535297 -0.0003121471177735471 -0.9401959828614036 0.3406338450234447 0.0003121471177735471 0.9401959828614036 -0.3406338450234447 0.281088461575212 -0.8836047623771194 0.3744755007657446 -0.281088461575212 0.8836047623771194 -0.3744755007657446 0.5938773958340341 -0.6788819111953476 0.4317742342580647 -0.5938773958340341 0.6788819111953476 -0.4317742342580647 -0.0008582256848451016 -0.9269980685706961 0.3750651200989938 0.0008582256848451016 0.9269980685706961 -0.3750651200989938 0.5354989973352612 -0.8308293100162483 0.1515370630270194 -0.5354989973352612 0.8308293100162483 -0.1515370630270194 0.3066480515466414 -0.3948527167845805 0.8660590652666156 -0.3066480515466414 0.3948527167845805 -0.8660590652666156 0.1380021439462748 -0.9128750179141473 0.3842064678457104 -0.1380021439462748 0.9128750179141473 -0.3842064678457104 0.5540930953588987 -0.8216196774116014 0.1338728776326658 -0.5540930953588987 0.8216196774116014 -0.1338728776326658 0.5143594831915055 -0.7538234116189816 0.4088821176648433 -0.5143594831915055 0.7538234116189816 -0.4088821176648433 0.1704962860405792 -0.2412262551434388 0.9553747486069755 -0.1704962860405792 0.2412262551434388 -0.9553747486069755 -0.03773370260261522 -0.9621258501780877 -0.2699815106761744 0.03773370260261522 0.9621258501780877 0.2699815106761744 0.4358498792710058 -0.4621916880777535 0.7722782699333747 -0.4358498792710058 0.4621916880777535 -0.7722782699333747 0.01286360673163864 -0.9648903405124554 -0.2623378707080084 -0.01286360673163864 0.9648903405124554 0.2623378707080084 0.3481882744279781 -0.2117944960202763 0.9131856421376676 -0.3481882744279781 0.2117944960202763 -0.9131856421376676 -0.1087425189090441 -0.9469588072574531 -0.3023972254152774 0.1087425189090441 0.9469588072574531 0.3023972254152774 0.109509698468203 -0.9934846561267767 0.0315573126559204 -0.109509698468203 0.9934846561267767 -0.0315573126559204 -0.06105980458301809 -0.8594249915838784 -0.507602584809548 0.06105980458301809 0.8594249915838784 0.507602584809548 4.131844054970268e-016 -0.7503520187156 -0.6610384618230805 -4.131844054970268e-016 0.7503520187156 0.6610384618230805 0.006610566334737722 -0.7456954882692445 -0.6662541100718458 2.234526453262779e-016 -0.7503520187156001 -0.6610384618230801 -2.234526453262779e-016 0.7503520187156001 0.6610384618230801 -0.006610566334737722 0.7456954882692445 0.6662541100718458 0.02829381865111946 -0.7299337328155146 -0.6829320650871116 -0.02829381865111946 0.7299337328155146 0.6829320650871116</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"204\" source=\"#ID300\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID298\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID296\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID297\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"212\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 2 1 8 9 4 3 6 10 1 4 11 7 2 8 12 13 9 3 14 15 16 17 18 19 20 15 14 19 18 21 6 22 10 11 23 7 8 24 12 13 25 9 16 15 26 27 18 17 20 28 15 18 29 21 10 22 30 31 23 11 12 24 32 33 25 13 26 15 34 35 18 27 36 28 20 21 29 37 22 38 30 31 39 23 24 40 32 33 41 25 34 15 42 43 18 35 36 44 28 29 45 37 38 46 30 31 47 39 32 40 48 49 41 33 34 42 50 51 43 35 52 44 36 37 45 53 38 54 46 47 55 39 48 40 56 57 41 49 50 42 58 59 43 51 52 60 44 45 61 53 54 62 46 47 63 55 64 48 56 57 49 65 66 50 58 59 51 67 60 68 44 45 69 61 70 71 72 73 74 75 76 64 56 57 65 77 66 58 78 79 59 67 70 80 81 82 83 75 70 72 84 85 73 75 86 64 76 77 65 87 88 66 78 79 67 89 70 90 80 83 91 75 70 84 92 93 85 75 86 76 88 89 77 87 88 78 94 95 79 89 70 96 90 91 97 75 70 92 96 97 93 75 98 86 88 89 87 99 100 88 94 95 89 101 100 98 88 89 99 101 100 94 102 103 95 101 104 98 100 101 99 105 102 104 100 101 105 103 102 94 106 107 95 103 108 104 102 103 105 109 102 106 110 111 107 103 108 102 112 113 103 109 102 110 112 113 111 103 114 108 112 113 109 115 112 110 116 117 111 113 118 114 112 113 115 119 118 112 116 117 113 119 120 114 118 119 115 121 122 118 116 117 119 123 122 120 118 119 121 123 124 122 116 117 123 125 122 126 120 121 127 123 124 126 122 123 127 125 124 116 128 129 117 125 124 130 126 127 131 125 132 124 128 129 125 133 132 130 124 125 131 133 132 128 134 135 129 133 132 136 130 131 137 133 138 132 134 135 133 139 140 136 132 133 137 141 142 132 143 144 133 145 146 136 140 141 137 147 140 132 148 149 133 141 150 132 142 145 133 151 152 146 140 141 147 153 154 140 148 149 141 155 148 132 150 151 133 149 156 146 152 153 147 157 152 140 154 155 141 153 158 156 152 153 157 159 160 152 154 155 153 161 162 156 158 159 157 163 158 152 160 161 153 159 164 162 158 159 163 165 166 158 160 161 159 167 168 162 164 165 163 169 170 164 158 159 165 171 172 158 166 167 159 173 174 168 164 165 169 175 176 170 158 159 171 177 170 178 164 165 179 171 158 172 180 181 173 159 182 168 174 175 169 183 184 174 164 165 175 185 184 164 178 179 165 185 186 182 174 175 183 187 188 174 184 185 175 189 190 182 186 187 183 191 192 186 174 175 187 193 194 190 186 187 191 195 196 194 186 187 195 197 198 199 186 187 200 201 202 198 186 187 201 203</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID298\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID301\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID302\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID306\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"306\">-0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6165045499801636 1.934720396995544 -0.1188463941216469 -0.6165045499801636 1.934720396995544 -0.1188463941216469 -0.6165045499801636 1.934478163719177 -0.148460179567337 -0.6165045499801636 1.934478163719177 -0.148460179567337 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6101360321044922 1.93234646320343 -0.1336532384157181 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6339040398597717 1.933767676353455 -0.1080069318413734 -0.6339040398597717 1.933767676353455 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.933767676353455 -0.1592995822429657 -0.6339040398597717 1.933767676353455 -0.1592995822429657 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.690280020236969 1.923469066619873 -0.1336532384157181 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.6165045499801636 1.918007493019104 -0.1188463941216469 -0.690280020236969 1.923469066619873 -0.1336532384157181 -0.6101360321044922 1.918007493019104 -0.1336532384157181 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.6165045499801636 1.918007493019104 -0.148460179567337 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6339040398597717 1.919373035430908 -0.1592995822429657 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.6339040398597717 1.919373035430908 -0.1080069318413734 -0.690280020236969 1.930925488471985 -0.1040394529700279 -0.690280020236969 1.930925488471985 -0.1040394529700279 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1632670909166336 -0.690280020236969 1.930925488471985 -0.1632670909166336 -0.690280020236969 1.930925488471985 -0.1632670909166336 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.690280020236969 1.923469066619873 -0.1040395125746727 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.920978307723999 -0.1080069318413734 -0.7484694719314575 1.920978307723999 -0.1080069318413734 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1592995822429657 -0.7484694719314575 1.920978307723999 -0.1592995822429657 -0.7484694719314575 1.920978307723999 -0.1592995822429657 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7484694719314575 1.898195147514343 -0.1080069318413734 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7658695578575134 1.888520956039429 -0.148460179567337 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7658695578575134 1.920978307723999 -0.1188463941216469 -0.7658695578575134 1.920978307723999 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7658695578575134 1.888520956039429 -0.1188463941216469 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7658695578575134 1.920978307723999 -0.148460179567337 -0.7658695578575134 1.920978307723999 -0.148460179567337 -0.7722371816635132 1.885544061660767 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7722371816635132 1.920978307723999 -0.1336532384157181 -0.7722371816635132 1.920978307723999 -0.1336532384157181</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"102\" source=\"#ID306\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID303\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID307\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"306\">0.2685032900269681 0.9630576308432356 0.02063935365529308 0.4525875977984503 0.8917052376508322 0.005122056725679501 0.197574767091013 0.960017639689952 0.1983187910740314 -0.197574767091013 -0.960017639689952 -0.1983187910740314 -0.4525875977984503 -0.8917052376508322 -0.005122056725679501 -0.2685032900269681 -0.9630576308432356 -0.02063935365529308 0.6826818001107279 0.5175042953428181 0.5158826068974507 -0.6826818001107279 -0.5175042953428181 -0.5158826068974507 0.6836944016697715 0.4960176053006482 -0.5352835700422942 -0.6836944016697715 -0.4960176053006482 0.5352835700422942 0.9999982787388297 -2.764381330880746e-017 0.001855402753470593 0.9999999999992953 -1.344529174791133e-017 1.187132519731373e-006 -0.9999999999992953 1.344529174791133e-017 -1.187132519731373e-006 -0.9999982787388297 2.764381330880746e-017 -0.001855402753470593 0.04316331056239178 0.9022464637821981 0.4290550631490245 -0.04316331056239178 -0.9022464637821981 -0.4290550631490245 0.762814706200499 -2.629409797658931e-017 -0.6466171386564437 -0.762814706200499 2.629409797658931e-017 0.6466171386564437 0.1886860822774901 0.956809299814221 -0.2211640254286229 -0.1886860822774901 -0.956809299814221 0.2211640254286229 0.7628146924144519 1.553973405980757e-017 0.6466171549198531 -0.7628146924144519 -1.553973405980757e-017 -0.6466171549198531 0.2966896142403783 0.3930092177325965 0.8703556902664036 -0.2966896142403783 -0.3930092177325965 -0.8703556902664036 0.3190228087349438 -3.247041946735389e-017 -0.9477470377199115 -0.3190228087349438 3.247041946735389e-017 0.9477470377199115 0.3015186508611372 0.4026945547667087 -0.8642474175513177 -0.3015186508611372 -0.4026945547667087 0.8642474175513177 -0.06798932660550203 -0.9976860485482023 -6.586060030642062e-008 0.1719351211168655 -0.9851082753314626 1.5342658739515e-009 -0.07003507829713505 -0.9973648774176054 -0.01893116746740961 0.07003507829713505 0.9973648774176054 0.01893116746740961 -0.1719351211168655 0.9851082753314626 -1.5342658739515e-009 0.06798932660550203 0.9976860485482023 6.586060030642062e-008 -0.07003508202665411 -0.997364879841995 0.0189310259437501 0.07003508202665411 0.997364879841995 -0.0189310259437501 -0.09074012681344057 0.8894532850476279 0.4479275422474753 0.09074012681344057 -0.8894532850476279 -0.4479275422474753 -0.07444730486362687 -0.9972153156526353 -0.004383266630817152 0.07444730486362687 0.9972153156526353 0.004383266630817152 0.05077249430285804 0.904499556128183 -0.4234415033817376 -0.05077249430285804 -0.904499556128183 0.4234415033817376 -0.0744472981544605 -0.9972153161907268 0.004383258163692835 0.0744472981544605 0.9972153161907268 -0.004383258163692835 0.3190237254244892 -3.387300576113519e-007 0.9477467291508663 -0.3190237254244892 3.387300576113519e-007 -0.9477467291508663 -0.03242831273582751 0.3315141411543863 0.9428927716064944 0.03242831273582751 -0.3315141411543863 -0.9428927716064944 0.1684288053257849 -0.9857138213175917 3.261995871790642e-017 -0.1684288053257849 0.9857138213175917 -3.261995871790642e-017 -0.005344422354575714 2.736307797239866e-016 -0.9999857184728669 0.005344422354575714 -2.736307797239866e-016 0.9999857184728669 -0.03778745893588001 0.3316848763063766 -0.9426331475058539 0.03778745893588001 -0.3316848763063766 0.9426331475058539 0.1684287910083168 -0.9857138237640154 -7.29699613754242e-018 -0.1684287910083168 0.9857138237640154 7.29699613754242e-018 -0.2484756132977017 0.8848234007634721 0.3941413693812095 0.2484756132977017 -0.8848234007634721 -0.3941413693812095 0.4283917724313258 -0.8995378958168598 -0.08551060345081933 -0.4283917724313258 0.8995378958168598 0.08551060345081933 -0.09662107353385505 0.8889262837349113 -0.4477437104353393 0.09662107353385505 -0.8889262837349113 0.4477437104353393 -0.005344410133169654 -7.18550191482743e-006 0.9999857185123682 0.005344410133169654 7.18550191482743e-006 -0.9999857185123682 0.428391672085077 -0.8995379593972396 0.08551043732552045 -0.428391672085077 0.8995379593972396 -0.08551043732552045 -0.3421974281014101 0.3781955923776879 0.8601563893309577 0.3421974281014101 -0.3781955923776879 -0.8601563893309577 0.4241540399827718 -0.9051261212181009 -0.02898370326526637 -0.4241540399827718 0.9051261212181009 0.02898370326526637 -0.370286485472462 -1.499824138001414e-018 -0.9289176059675327 0.370286485472462 1.499824138001414e-018 0.9289176059675327 -0.3291557229804519 0.3380558114720414 -0.8816885948900528 0.3291557229804519 -0.3380558114720414 0.8816885948900528 -0.3702874190200642 1.094756924120515e-017 0.9289172338348878 0.3702874190200642 -1.094756924120515e-017 -0.9289172338348878 0.4241539996507208 -0.9051261422282078 0.02898363737315737 -0.4241539996507208 0.9051261422282078 -0.02898363737315737 -0.3251796430928072 0.9178164481615403 0.2277524252388309 0.3251796430928072 -0.9178164481615403 -0.2277524252388309 0.4199582781990328 -0.9075434119490392 3.99096900070165e-009 -0.4199582781990328 0.9075434119490392 -3.99096900070165e-009 -0.8007715958187883 -7.155616565122561e-018 -0.5989698250578498 0.8007715958187883 7.155616565122561e-018 0.5989698250578498 -0.2265429325203143 0.8870890848101631 -0.4021831116988422 0.2265429325203143 -0.8870890848101631 0.4021831116988422 -0.6796599789034551 0.4735252770862831 0.5602107862557749 0.6796599789034551 -0.4735252770862831 -0.5602107862557749 -0.8007712843829574 6.359232916259598e-018 0.5989702414207808 0.8007712843829574 -6.359232916259598e-018 -0.5989702414207808 -0.9999999999994651 -1.645457276881922e-017 1.034295879815327e-006 -0.6891858043226757 0.4665554888991755 -0.5543905689116273 0.6891858043226757 -0.4665554888991755 0.5543905689116273 0.9999999999994651 1.645457276881922e-017 -1.034295879815327e-006 -0.9999999999992956 4.946327360675922e-018 1.187017885930274e-006 0.9999999999992956 -4.946327360675922e-018 -1.187017885930274e-006 -0.3230544891964065 0.9463803659259006 8.550144065327416e-008 0.3230544891964065 -0.9463803659259006 -8.550144065327416e-008 -0.3136885055110143 0.9395308213807142 -0.1374094508610924 0.3136885055110143 -0.9395308213807142 0.1374094508610924 -0.4168041023770971 0.9089963367591745 1.538922139574083e-007 0.4168041023770971 -0.9089963367591745 -1.538922139574083e-007</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"102\" source=\"#ID307\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID305\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID308\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"354\">14.74662494168064 -3.24670831878189 14.50632766822221 -3.24670831878189 14.78792300082874 -3.159258918565324 13.820349457531 -1.340223392086619 13.53790646303778 -1.425964394727856 13.60571068596005 -1.309425604163282 14.74662494168064 -0.2015677638513016 14.57252871304809 -0.31838760226104 14.50632766822222 -0.2015677638513016 19.3234646320343 0.9305684636762152 19.18007493019104 0.9305684636762152 19.34720396995544 1.05736601641011 12.39923564859679 -6.827449107672569 12.18558988491392 -6.79263974045073 12.520128137449 -6.756504929536055 19.18007493019104 -2.98907029529415 19.3234646320343 -2.862272042610564 19.34478163719177 -2.98907029529415 13.58985134138688 0.913600590386324 13.37428921549126 0.8823677125805266 13.54688959584556 1.000553205744748 19.18007493019104 0.930568463676214 19.18007493019104 1.057366016410109 19.34720396995544 1.057366016410109 19.18007493019104 -2.862272042610565 19.3234646320343 -2.862272042610565 12.71867148612623 -7.495234252113192 12.38442227660791 -7.532988091064745 12.54477580412482 -7.432242123407382 19.34478163719177 -4.733932057985893 19.19373035430908 -4.895195827090482 19.18007493019104 -4.733932057985893 12.33878138412339 5.382247156809008 12.17677293324015 5.481214797596579 12.3912040801708 5.516942167621013 -7.391282448218876 -1.48143095627047 -8.194581123679953 -1.48143095627047 -7.454820262563747 -1.364900655355888 19.18007493019104 3.622039261057927 19.33767676353455 3.783303278093615 19.34720396995544 3.622039261057927 -7.391282448218877 -0.6204842998191036 -7.454820262563748 -0.7370153623541556 -8.194581123679953 -0.6204842998191036 7.481154949549515 -12.79431255424122 7.067416291608053 -12.83379782656899 6.915524424990057 -12.74212319853608 -7.584380995427704 -1.247007601423149 -7.758909944543412 -1.332278807745487 -8.324154097693995 -1.130524639056481 19.33767676353455 -4.895195827090483 19.19373035430908 -4.895195827090483 19.34478163719177 -4.733932057985895 13.04180262783345 5.175172548692535 12.86707806501732 5.11361630106685 12.92234562026518 5.247605683200089 -7.584380812078765 -0.8557737698764369 -8.324153914352896 -0.9722559702773169 -7.758909761188733 -0.7705020946637685 19.19373035430908 3.783303278093616 19.33767676353455 3.783303278093616 19.18007493019104 3.622039261057928 7.648027143859386 -12.25948167563143 7.65188684485852 -12.35890188523497 7.085797861905361 -12.30988511571698 -7.713240890911518 -1.253156713644663 -8.278486734327558 -1.284367781877518 -8.278486734327558 -1.051405475536982 19.33767676353455 -5.062382866966574 19.23469066619873 -5.506970809153192 19.19373035430908 -5.062382866966574 7.367540623698635 11.41985850957108 7.776061332728784 11.27693054705916 7.214183829069861 11.32970587279734 -7.713240890911518 -0.8496545304854714 -8.278486734327558 -1.051405475536983 -8.278486734327558 -0.8184441655874255 19.19373035430909 4.914761442931146 19.30925488471985 5.359349368659267 19.33767676353455 4.914761442931146 2.285092063151581 -12.97430384402288 2.693655733061326 -13.10863367222362 2.262290508523929 -13.0721396923397 1.331404262185989 -1.284367781877517 0.6969924656801174 -1.253156713644663 1.331404262185989 -1.051405475536982 19.30925488471986 -5.506970809153168 19.23469066619874 -5.506970809153168 19.33767676353456 -5.06238286696655 7.304855699042223 11.14301553668178 7.302790777804189 11.0435620935058 6.890760040675517 11.18011256878542 19.233906454615 5.361065771843718 19.30847067265508 5.361072451178341 19.19301018033664 4.916474230813738 1.331404262185988 -1.051405475536982 0.6969924656801174 -0.8496545304854711 1.331404262185988 -0.8184441655874253 2.304331396739664 -13.42647922400892 2.121104136094343 -13.5156493816709 1.71639695895628 -13.37427954811462 1.544746040377931 -2.885022299798933 1.345972632848547 -2.799301999221842 2.178608611574747 -2.682205560965344 -19.30925488471981 5.330255816417758 -18.98195147514339 5.789075628693167 -19.23469066619869 5.330255816417758 1.845480971048728 11.74717148847956 2.458561636177985 11.6990816018842 1.870243297278053 11.64963089452367 -19.23549984096779 -5.471528107735983 -19.21066047540473 -5.930350160969313 -19.31006405897643 -5.471521214608823 -18.98195147514343 -5.932117994536131 -19.20978307723999 -5.932117994536131 -19.23469066619873 -5.473298230104304 2.178605235350849 0.5904376500551031 1.345969254092779 0.7075333192271444 1.544742659768699 0.7932540888905315 -3.959798216985414 -7.753429402214679 -4.087096411535118 -7.683919229159401 -3.885150574633056 -7.624847108754293 1.813176726206721 -1.081169652224882 0.9804013739520012 -1.197651123867453 0.9101107092265193 -1.081169652224882 -19.20978307723999 4.334972713557193 -18.88520956039429 4.496240462481415 -18.98195147514343 4.334972713557193 -19.20978307723999 5.789075628693066 -18.98195147514344 5.789075628693066 -19.30925488471985 5.330255816417655 2.481569112179163 12.40655007166253 2.66317520668856 12.31535119031279 2.050599478808898 12.36727062188914 -18.98195147514343 -5.446823632817054 -19.20978307723999 -5.608091629666255 -19.20978307723999 -5.446823632817054 -18.88520956039429 -5.608091629666257 -19.20978307723999 -5.608091629666257 -18.98195147514343 -5.446823632817055 1.813176726206721 -1.021637471001535 0.9101107092265193 -1.021637471001535 0.9804013739520012 -0.9051567613036898 0.367684899701497 -8.845277138547667 0.145718255611641 -8.880676763911682 0.2049359424005293 -8.74721646374895 -18.85544061660767 1.434091526799194 -18.88520956039429 1.307296052883267 -19.20978307723999 1.307296052883267 -19.20978307723999 4.496240462481416 -18.88520956039429 4.496240462481416 -19.20978307723999 4.334972713557194 -2.117223969310845 8.529395214753574 -2.31561130205695 8.595508854169639 -1.962439484181925 8.635134824541277 -19.20978307723999 -3.239066383758993 -18.88520956039429 -3.239066383758993 -19.20978307723999 -3.365861157709891 -18.85544061660767 -3.365861157709891 -1.225341157779861 -3.905255980985561 -1.267926982609724 -3.818192018720132 -1.044961102637988 -3.786919029566556 -19.20978307723999 1.434091526799194 -18.85544061660767 1.434091526799194 -19.20978307723999 1.307296052883267 -0.806110026159208 2.735666626985071 -1.160395921178498 2.702765752179635 -1.02897991537746 2.767360336190219 -0.9871177962192335 -3.90522116068271 -1.225379355844962 -3.905221160682709 -1.044999251680502 -3.786884255506705 -1.044972846114296 1.717034101611527 -1.26793873007405 1.748307188552936 -0.9870913567213968 1.835371746509942 -0.9871177962192357 1.835423300068112 -1.267965144607175 1.748358692275823 -1.225379355844964 1.835423300068112</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"177\" source=\"#ID308\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID304\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID302\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID303\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"60\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 3 1 4 6 5 0 6 8 7 1 8 10 9 11 10 6 11 2 12 6 13 14 14 16 15 10 16 8 17 18 18 8 19 0 20 11 21 20 22 6 23 16 15 11 24 10 25 14 26 6 27 22 28 8 29 24 30 16 31 26 32 8 33 18 34 28 35 29 36 30 37 20 38 22 39 6 40 28 41 34 42 29 43 36 44 14 45 22 46 34 47 38 48 29 49 26 50 24 51 8 52 40 53 26 54 18 55 30 56 29 57 42 58 44 59 22 60 20 61 46 62 36 63 22 64 38 65 48 66 29 67 26 68 50 69 24 70 40 71 52 72 26 73 42 74 29 75 54 76 44 77 46 78 22 79 46 80 56 81 36 82 48 83 58 84 29 85 52 86 50 87 26 88 60 89 52 90 40 91 62 92 46 93 44 94 29 95 64 96 54 97 66 98 56 99 46 100 58 101 68 102 29 103 52 104 70 105 50 106 60 107 72 108 52 109 62 110 66 111 46 112 74 113 66 114 62 115 29 116 76 117 64 118 78 119 56 120 66 121 29 122 68 123 80 124 72 125 82 126 70 127 72 128 70 129 52 130 84 131 72 132 60 133 74 134 86 135 66 136 88 137 86 138 74 139 29 140 80 141 76 142 86 143 78 144 66 145 90 146 82 147 91 148 91 149 82 150 72 151 72 152 84 153 91 154 86 155 88 156 94 157 88 156 90 158 94 157 96 159 78 160 86 161 94 162 90 163 91 164 91 165 84 166 98 167 100 168 96 169 86 170 91 171 98 172 100 173 100 174 98 175 96 176</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID304\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID305\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"60\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 7 4 3 4 9 5 7 12 13 15 7 3 9 13 17 5 9 19 7 21 12 13 12 17 23 7 15 17 25 9 19 9 27 31 32 33 7 23 21 32 35 33 23 15 37 32 39 35 9 25 27 19 27 41 43 32 31 21 23 45 23 37 47 32 49 39 25 51 27 27 53 41 55 32 43 23 47 45 37 57 47 32 59 49 27 51 53 41 53 61 45 47 63 55 65 32 47 57 67 32 69 59 51 71 53 53 73 61 47 67 63 63 67 75 65 77 32 67 57 79 81 69 32 71 83 73 53 71 73 61 73 85 67 87 75 75 87 89 77 81 32 67 79 87 92 83 93 73 83 92 92 85 73 95 89 87 95 93 89 87 79 97 92 93 95 99 85 92 87 97 101 101 99 92 97 99 101</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID304\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID309\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID310\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID313\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">-0.690280020236969 1.940856695175171 -0.1336532384157181 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6360008716583252 1.943698525428772 -0.1227594092488289 -0.6313152313232422 1.943698525428772 -0.1336532384157181 -0.690280020236969 1.940856695175171 -0.1336532384157181 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6488023996353149 1.943698525428772 -0.1147843822836876 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.6360008716583252 1.943698525428772 -0.1445471495389938 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.690280020236969 1.940856695175171 -0.111865259706974 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.6488023996353149 1.943698525428772 -0.1525221467018127 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.7330920100212097 1.934461951255798 -0.1147843822836876 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.690280020236969 1.940856695175171 -0.1554412543773651 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7458943724632263 1.930909156799316 -0.1227594092488289 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.7330920100212097 1.934461951255798 -0.1525222510099411 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.750579297542572 1.930909156799316 -0.1336532384157181 -0.7458943724632263 1.930909156799316 -0.1445471495389938 -0.7458943724632263 1.930909156799316 -0.1445471495389938</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID313\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID311\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID314\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">-0.1092906432207105 0.9940098366235635 -7.695194953645212e-009 0.2685032900269681 0.9630576308432356 0.02063935365529308 0.197574767091013 0.960017639689952 0.1983187910740314 -0.197574767091013 -0.960017639689952 -0.1983187910740314 -0.2685032900269681 -0.9630576308432356 -0.02063935365529308 0.1092906432207105 -0.9940098366235635 7.695194953645212e-009 0.04316331056239178 0.9022464637821981 0.4290550631490245 -0.04316331056239178 -0.9022464637821981 -0.4290550631490245 0.1886860822774901 0.956809299814221 -0.2211640254286229 -0.1886860822774901 -0.956809299814221 0.2211640254286229 -0.09074012681344057 0.8894532850476279 0.4479275422474753 0.09074012681344057 -0.8894532850476279 -0.4479275422474753 0.05077249430285804 0.904499556128183 -0.4234415033817376 -0.05077249430285804 -0.904499556128183 0.4234415033817376 -0.2484756132977017 0.8848234007634721 0.3941413693812095 0.2484756132977017 -0.8848234007634721 -0.3941413693812095 -0.09662107353385505 0.8889262837349113 -0.4477437104353393 0.09662107353385505 -0.8889262837349113 0.4477437104353393 -0.3251796430928072 0.9178164481615403 0.2277524252388309 0.3251796430928072 -0.9178164481615403 -0.2277524252388309 -0.2265429325203143 0.8870890848101631 -0.4021831116988422 0.2265429325203143 -0.8870890848101631 0.4021831116988422 -0.3230544891964065 0.9463803659259006 8.550144065327416e-008 0.3230544891964065 -0.9463803659259006 -8.550144065327416e-008 -0.3136885055110143 0.9395308213807142 -0.1374094508610924 0.3136885055110143 -0.9395308213807142 0.1374094508610924</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID314\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID312\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID310\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID311\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 0 2 6 0 8 1 0 6 10 12 8 0 14 0 10 16 12 0 18 0 14 20 16 0 22 0 18 24 20 0 22 24 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID312\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 7 3 5 4 9 5 11 7 5 5 9 13 11 5 15 5 13 17 15 5 19 5 17 21 19 5 23 5 21 25 5 25 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID312\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID315\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID316\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID320\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">-0.7051355838775635 1.922352433204651 0.230619490146637 -0.6617981791496277 1.832582235336304 0.1425205767154694 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6607846617698669 1.925639629364014 0.2436227351427078 -0.6617981791496277 1.832582235336304 0.1425205767154694 -0.7051355838775635 1.922352433204651 0.230619490146637 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.7387382388114929 1.918766617774963 0.2054454237222672 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.6099548935890198 1.926056265830994 0.2301047742366791 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.7569991946220398 1.917996168136597 0.1455812603235245 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.5770052671432495 1.926056265830994 0.191592201590538 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.7385799288749695 1.920795679092407 0.09299799799919128 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.5635831952095032 1.928828001022339 0.1449400782585144 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.7070872783660889 1.922605037689209 0.06054756790399551 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.574223518371582 1.928792595863342 0.09871716052293778 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6608441472053528 1.925890922546387 0.04520654678344727 -0.6102629899978638 1.926022410392761 0.05912294983863831 -0.6102629899978638 1.926022410392761 0.05912294983863831</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID320\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID317\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID321\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">0.2454983722499582 0.7367784293995229 -0.6299905516705731 -0.01355272467147211 0.9997780551212078 0.01612960483195176 -0.0255551309807017 0.7356609327778424 -0.6768677324743689 0.0255551309807017 -0.7356609327778424 0.6768677324743689 0.01355272467147211 -0.9997780551212078 -0.01612960483195176 -0.2454983722499582 -0.7367784293995229 0.6299905516705731 0.5063254148146489 0.7555293494449054 -0.4157041934358274 -0.5063254148146489 -0.7555293494449054 0.4157041934358274 -0.3613240372427959 0.7363722211506463 -0.5720147655683642 0.3613240372427959 -0.7363722211506463 0.5720147655683642 0.6680473200367499 0.7436922615332333 0.02519123512853581 -0.6680473200367499 -0.7436922615332333 -0.02519123512853581 -0.6179795511991585 0.7228706523012989 -0.3091266639117071 0.6179795511991585 -0.7228706523012989 0.3091266639117071 0.5707110805360036 0.7192114718924991 0.3962621875118188 -0.5707110805360036 -0.7192114718924991 -0.3962621875118188 -0.6999537629947992 0.7141776562948755 0.003873618279981795 0.6999537629947992 -0.7141776562948755 -0.003873618279981795 0.3273966486538866 0.7209092289414518 0.6108202011044208 -0.3273966486538866 -0.7209092289414518 -0.6108202011044208 -0.6309130786522602 0.7132712578771855 0.3052749578197078 0.6309130786522602 -0.7132712578771855 -0.3052749578197078 -0.01337508127704687 0.7218060427142515 0.6919661436096599 0.01337508127704687 -0.7218060427142515 -0.6919661436096599 -0.3801739812245751 0.7237156406791439 0.5759369891196715 0.3801739812245751 -0.7237156406791439 -0.5759369891196715</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID321\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID319\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID322\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"72\">10.62254496526318 10.58597901468444 10.02435287981894 9.65120515883069 10.19367564998362 10.72394999514477 14.96110814048428 7.718424838868263 13.8945885778913 7.112516974760296 14.67366561987308 7.960827729676313 1.933627046348441 10.97743010008375 1.202271169615731 11.89978789719242 1.696142772314045 12.04214687284743 18.3961081709604 2.641137417643054 17.11711045647631 2.616524038178354 18.26468471539078 3.122552538824543 -5.548728912979404 7.65138727776807 -6.785922521949193 8.084323930772092 -6.52071943268769 8.424102862944066 18.38599620971365 -1.222997101699112 17.22446535028297 -0.8189539529047211 18.50345185026655 -0.7939825504753987 -8.05029492928022 3.289034660604903 -9.425405248137516 3.308304911706402 -9.309935028138126 3.679868275081967 16.94411386082575 -4.063997537821977 16.69445513940783 -4.360936482954553 15.81224755184468 -3.610839220933176 -8.149844598314363 -1.106574484923794 -9.448921067989758 -1.455600782491445 -9.524954727489204 -1.087295859215323 11.48831525242079 -8.75386128287732 11.04736864805656 -8.918917385485216 10.83216194436042 -7.871902693084232 -7.021471257962126 -6.293757665802318 -7.322809907298218 -5.944937819296826 -6.040699822826644 -5.559035419713093 1.441548375341257 -10.58282918537751 0.9523591449902585 -10.43376135329469 1.690367232773703 -9.540434004979337</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"36\" source=\"#ID322\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID318\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID316\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID317\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 1 4 0 5 1 6 8 7 2 8 10 9 1 10 6 11 1 12 12 13 8 14 14 15 1 16 10 17 1 18 16 19 12 20 14 21 18 22 1 23 1 24 20 25 16 26 18 27 22 28 1 29 24 30 20 31 1 32 22 33 24 34 1 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID318\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID319\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 5 4 7 3 9 4 7 4 11 9 13 4 11 4 15 13 17 4 4 19 15 17 21 4 4 23 19 4 21 25 4 25 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID318\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID330\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID331\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID335\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"384\">-0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"128\" source=\"#ID335\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID332\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID336\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"384\">-0.902466236746562 0.1795708561871048 0.3915469309555731 -0.9024665938061016 0.2869970887591513 0.3212268950567254 -0.9024662367466551 0.1795709440136923 0.3915468906764066 -0.9024665938125612 0.2869979446047657 0.3212261303894707 0.9024665938125612 -0.2869979446047657 -0.3212261303894707 0.902466236746562 -0.1795708561871048 -0.3915469309555731 0.9024665938061016 -0.2869970887591513 -0.3212268950567254 0.9024662367466551 -0.1795709440136923 -0.3915468906764066 -0.9024668903167546 0.05618340562307148 0.4270795438962162 -0.9024668903001765 0.05618563690832937 0.4270792503940392 0.9024668903167546 -0.05618340562307148 -0.4270795438962162 0.9024668903001765 -0.05618563690832937 -0.4270792503940392 -0.9024690894613248 0.3689289867002785 0.2223531995253341 -0.902469089464752 0.3689290774500262 0.2223530489391454 0.902469089464752 -0.3689290774500262 -0.2223530489391454 0.9024690894613248 -0.3689289867002785 -0.2223531995253341 -0.9999555776890411 0.006279922634141023 0.007028884711349623 -0.9999999999999999 -3.944088456120249e-009 1.649036539061831e-008 -0.9999555775055583 0.003929272324182818 0.008567603779806768 0.9999555775055583 -0.003929272324182818 -0.008567603779806768 0.9999999999999999 3.944088456120249e-009 -1.649036539061831e-008 0.9999555776890411 -0.006279922634141023 -0.007028884711349623 -0.9024674946036678 -0.07219701394895309 0.4246645880699658 -0.9024674946038228 -0.07219707389978321 0.424664577877421 0.9024674946036678 0.07219701394895309 -0.4246645880699658 0.9024674946038228 0.07219707389978321 -0.424664577877421 -0.9999555778310314 0.001229424558499158 0.009345099243102516 0.9999555778310314 -0.001229424558499158 -0.009345099243102516 -0.9024695789502093 0.4180784961390021 0.1037257448061106 -0.9024695789497297 0.4180784539420578 0.1037259148897536 0.9024695789497297 -0.4180784539420578 -0.1037259148897536 0.9024695789502093 -0.4180784961390021 -0.1037257448061106 -0.9999555784085298 0.008072791231372301 0.004865311027822405 0.9999555784085298 -0.008072791231372301 -0.004865311027822405 -0.9024683401951699 -0.1941614071388285 0.3845155951625956 -0.9024683401956324 -0.1941614450021188 0.3845155760424143 0.9024683401951699 0.1941614071388285 -0.3845155951625956 0.9024683401956324 0.1941614450021188 -0.3845155760424143 -0.9999555778376283 -0.001579793115735819 0.009292287400107886 0.9999555778376283 0.001579793115735819 -0.009292287400107886 -0.9024695599145399 0.4300784014704719 -0.02410937610681846 -0.9024695599118074 0.4300783861399769 -0.02410964968268119 0.9024695599118074 -0.4300783861399769 0.02410964968268119 0.9024695599145399 -0.4300784014704719 0.02410937610681846 -0.9999555771365172 0.009148344649372987 0.002269701247122971 0.9999555771365172 -0.009148344649372987 -0.002269701247122971 -0.9024699496610145 -0.298869595953435 0.3102014741639317 -0.9024699496784561 -0.298870415416041 0.3102006845840415 0.9024699496610145 0.298869595953435 -0.3102014741639317 0.9024699496784561 0.298870415416041 -0.3102006845840415 -0.9999555776015303 -0.004248627287482877 0.008413797582663555 0.9999555776015303 0.004248627287482877 -0.008413797582663555 -0.9024682165406183 0.4038669616350336 -0.1498085292421026 -0.902468216543048 0.4038670647292976 -0.1498082512966218 0.9024682165406183 -0.4038669616350336 0.1498085292421026 0.902468216543048 -0.4038670647292976 0.1498082512966218 -0.999955577745935 0.009410860694318868 -0.0005274806018676984 0.999955577745935 -0.009410860694318868 0.0005274806018676984 -0.9024707715227106 -0.3770220929027301 0.2083287018402623 -0.9024707715194342 -0.3770227739999134 0.2083274692366014 0.9024707715227106 0.3770220929027301 -0.2083287018402623 0.9024707715194342 0.3770227739999134 -0.2083274692366014 -0.9999555770671936 -0.006539895081909356 0.006787758432154178 0.9999555770671936 0.006539895081909356 -0.006787758432154178 -0.9024668466034375 0.3417689209700612 -0.2621976266875958 -0.9024668466014079 0.3417688417781226 -0.262197729919524 0.9024668466034375 -0.3417689209700612 0.2621976266875958 0.9024668466014079 -0.3417688417781226 0.262197729919524 -0.9999555775200822 0.008837293966907273 -0.003277990515714328 0.9999555775200822 -0.008837293966907273 0.003277990515714328 -0.902469637953096 -0.4216810734117544 0.08794103080541284 -0.9024696379339142 -0.4216812607433428 0.08794013273434857 0.902469637953096 0.4216810734117544 -0.08794103080541284 0.9024696379339142 0.4216812607433428 -0.08794013273434857 -0.9999555769430629 -0.008249995118261777 0.004558697293603463 0.9999555769430629 0.008249995118261777 -0.004558697293603463 -0.902465509489143 0.2493039587819413 -0.3512884004890483 -0.9024655094892364 0.2493038174778161 -0.3512885007701228 0.902465509489143 -0.2493039587819413 0.3512884004890483 0.9024655094892364 -0.2493038174778161 0.3512885007701228 -0.9999555779597974 0.00747843989793408 -0.005737163391514847 0.9999555779597974 -0.00747843989793408 0.005737163391514847 -0.9024672758692717 -0.4288731719288677 -0.04025690480859202 -0.9024672758646049 -0.4288730763736164 -0.04025792288916159 0.9024672758692717 0.4288731719288677 0.04025690480859202 0.9024672758646049 0.4288730763736164 0.04025792288916159 -0.9999555776764442 -0.009227086398497142 0.001924461057970694 0.9999555776764442 0.009227086398497142 -0.001924461057970694 -0.9024664086806516 0.1346861044661979 -0.4091626015006348 -0.9024664086756207 0.134686627996427 -0.4091624291782907 0.9024664086806516 -0.1346861044661979 0.4091626015006348 0.9024664086756207 -0.134686627996427 0.4091624291782907 -0.9999555777995033 0.005455079717335024 -0.007686646403922885 0.9999555777995033 -0.005455079717335024 0.007686646403922885 -0.902467892340141 -0.3979517141178801 -0.1648821898380311 -0.9024678923401798 -0.3979516028754097 -0.1648824583270336 0.9024678923401798 0.3979516028754097 0.1648824583270336 0.902467892340141 0.3979517141178801 0.1648821898380311 -0.9999555778851129 -0.009384369994094055 -0.000880827034032532 0.9999555778851129 0.009384369994094055 0.000880827034032532 -0.9024663791541479 0.008097340179231503 -0.430684185428747 -0.9024663791250542 0.008094825123542416 -0.4306842327681999 0.9024663791541479 -0.008097340179231503 0.430684185428747 0.9024663791250542 -0.008094825123542416 0.4306842327681999 -0.9999555777991002 0.002947080780235639 -0.008953052180265634 0.9999555777991002 -0.002947080780235639 0.008953052180265634 -0.9024662331196897 -0.3316729654395058 -0.2748594951522004 -0.9024662331163754 -0.3316728008946313 -0.2748596937192685 0.9024662331163754 0.3316728008946313 0.2748596937192685 0.9024662331196897 0.3316729654395058 0.2748594951522004 -0.999955578177709 -0.008707751861328623 -0.003607870397508076 0.999955578177709 0.008707751861328623 0.003607870397508076 -0.9024648168310505 -0.1192080340211159 -0.4139404534554687 -0.9024648168337509 -0.1192074838149737 -0.4139406118994938 0.9024648168310505 0.1192080340211159 0.4139404534554687 0.9024648168337509 0.1192074838149737 0.4139406118994938 -0.9999555778745281 0.0001771432880129035 -0.009423953410019359 0.9999555778745281 -0.0001771432880129035 0.009423953410019359 -0.902465654171666 -0.2359217875784709 -0.3604117828072296 -0.9024656541724766 -0.2359218880318137 -0.3604117170494711 0.9024656541724766 0.2359218880318137 0.3604117170494711 0.902465654171666 0.2359217875784709 0.3604117828072296 -0.9999555777101306 -0.007257512103960586 -0.006014243465287442 0.9999555777101306 0.007257512103960586 0.006014243465287442 -0.9999555776620278 -0.002608402576862527 -0.009057534907320045 0.9999555776620278 0.002608402576862527 0.009057534907320045 -0.9999555782419665 -0.005162296496035368 -0.007886205530005717 0.9999555782419665 0.005162296496035368 0.007886205530005717</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"128\" source=\"#ID336\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID334\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID337\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"294\">0.3968896729741346 0.1922852666439943 0.4737327008967246 -0.9152355322345628 0.9630262887515753 -0.6354626856147748 -0.3524052240098752 -0.2361568945663559 0.4655388858093918 0.08953581466919515 0.09695620062060414 -0.9810664844640712 0.6730670627304097 -0.8361327489468616 -0.4167537122269166 -0.1324198059202896 0.2973352684969716 0.2683873916988639 0.7882870625951499 -0.7713646321021612 1.150086384430147 -0.3900178469634608 -0.2567247963027225 -0.31560409935685 -1.289966888573064 1.118085413747316 0.06212354191532857 -0.07234147090675236 -0.783870346512475 1.378704611404 -0.4367617780734336 -0.01462412283998805 0.3039367921445285 -0.9584067804719864 0.4893324111284635 -0.02983363233461241 -0.3008224430983176 -0.9484756688791239 -0.8016174477820905 1.372301469794169 0.04433562663634652 -0.07875933781474324 -0.2203908618967485 1.503989911589727 0.1809070857644482 0.3155180012112068 1.022592991639205 -0.5743581365222055 1.234023150294384 -0.1285484832020004 -0.1429120515214738 -0.367198117649849 -1.66136548078844 0.7619376860652442 0.07671628909398423 -0.06208436965356513 -1.275396677288614 1.12832667461258 -0.4073515623064179 0.1011264290438674 -0.09476487502684913 -0.9804405628471385 0.4626568454837426 -0.1490324395691673 -0.6628716918210396 -0.8170859861489843 -0.2397426200746382 1.50198664557768 0.02493089743164573 -0.08076808610367456 0.3650414996825432 1.493042349004655 0.05736325230823958 0.3346473762187736 1.17267479942198 -0.3439402612969316 1.223643632931941 0.1302055707804858 -0.02066572129329647 -0.3914599007726098 -1.882760478217731 0.3355170423070947 0.08682001596138418 -0.04889598984901968 -1.651269230232574 0.7751163069047897 -0.3353501529221609 0.1995466050261453 -0.4668875889383237 -0.9047897006971836 0.3922070304645184 -0.2514821593426724 -0.9419647060013334 -0.6102700701630079 0.005635596625816379 -0.07818806575251706 0.9203364240227525 1.346830328258524 0.3457982769905845 1.495615404073835 1.126355299807839 0.3752155678757479 0.1040111679385125 -0.388637340607042 1.238011217856225 -0.09244888651659929 -0.06697561493530457 0.3275468783499481 -1.93459673056012 -0.123302009428372 0.09153118311425376 -0.03395832490335624 -1.878050069741289 0.3504523016984736 -0.2344980136134975 0.272067017744716 -0.7734592826352205 -0.7528807175430338 0.2920443195803396 -0.3274591628500121 -1.117289405717435 -0.3613891006095253 -0.01183525826232684 -0.07124871822464581 1.39616406775141 1.078353125365281 0.9029042283172811 1.35375431886067 0.9447253547904824 0.5959672029532446 0.2257787374954082 -0.3581771099131729 1.214189184550729 0.169958907902574 -0.186897061406765 0.2942037124704471 -1.93569205005432 -0.1079301547813531 -1.812203419199725 -0.5737500453082663 0.09043585409260579 -0.01858633654730853 -0.1179073442473178 0.3167816077142103 -0.9983469950028587 -0.5495662572713074 0.1755912440477331 -0.3743751425856143 -1.190013434193229 -0.09824780362384109 -0.02592837582048213 -0.06056746696411634 1.75026303628513 0.7114738979672752 1.382091246066081 1.089018993299208 0.6794575272154855 0.7773668085625854 0.3372907202383119 -0.2986409217881123 1.092513136402134 0.4297375884811659 -0.2952586744430266 0.2337084769733447 -1.819006096267833 -0.5593221080025462 -1.526489466348473 -0.9758143642852514 0.08363089132390443 -0.004153551560189934 0.005430313511846641 0.3347777810011712 -1.13847441899684 -0.3136789370305894 0.05211876781394509 -0.3929897756725005 -1.168978557164991 0.1615496775993526 -0.03539234262457076 -0.04709359816704189 1.951177325817038 0.2788063115482746 1.740805216807092 0.7249390145054863 0.3383174364586705 0.8966761424705388 0.4270405228667517 -0.2102904844304112 0.8659105981995169 0.6639631861579365 -0.3809160440027784 0.146093917292971 -1.538389610930159 -0.9636106058033177 -1.102793304223511 -1.293774310216109 0.07171849013542153 0.008062775638568245 -1.060803453390981 0.4063081240514468 -0.07222633956791902 -0.3845717407713823 0.1297449779240717 0.3265826019173688 -1.192697017918619 -0.05808015184411099 -0.03938788681399102 -0.0320215229750103 1.981042651962162 -0.1812112976198525 1.947182244123232 0.2938766420839853 -0.0524315242956043 0.9283402239298384 0.4802244090786475 -0.09863015383275404 0.5419672336339126 0.840067431844499 -0.4299897675531783 0.03654607664910618 -1.118723112271001 -1.28487983214167 -0.5787908752940257 -1.499364633663538 0.05575920687481053 0.01697370996765415 -0.8675436049402432 0.6248879863575346 -0.1921656442747269 -0.3487502314162322 0.2497335503953799 0.2916925404031848 -1.156099853862085 0.2066797400671177 -0.03755897012292375 -0.01669365819150997 1.837226823603213 -0.6277221656035168 1.982871524296908 -0.1658838045780912 0.1549471133513004 0.926271017659403 -0.4314797661798583 -0.08241555601430506 0.4850983193021703 0.02291896507682182 -0.4435596451746486 0.8574897570892256 -0.5973340108549068 -1.494561963904799 -0.0009938348333969052 -1.574320909725511 0.03716949338786759 0.02178844157197701 -0.590668199735378 0.8003619256414625 -0.3002610023705488 -0.2850266574071003 0.3573215388483328 0.2282013813533236 -1.020058250736914 0.4652208336946513 -0.03006746412218775 -0.00246891752738707 1.53248244939769 -1.021051126561889 1.844715281581389 -0.6135032123919676 -0.2397379242648021 0.9092043715946208 -0.3847025093323656 -0.1940833813882925 0.44076218466755 0.1365952386707551 -0.7787690196498813 0.6932719536246276 -0.02050822442818087 -1.574031800828231 0.5791832437635509 -1.51196408310349 0.01760077999626869 0.02207835371030489 -0.017581589667695 0.009384382415771322 1.093911919977969 -1.326263772815833 1.544954207250127 -1.00921122784879 -0.001204457374191035 0.01781819349283538 0.560426229320167 -1.516213318070019 1.110257215438868 -1.317846356961747</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"147\" source=\"#ID337\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID333\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID331\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID332\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"126\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 2 5 9 6 2 5 8 4 0 7 5 7 10 4 7 5 11 6 7 5 10 4 3 8 12 9 1 10 12 9 3 8 13 11 14 11 4 8 15 9 6 10 15 9 4 8 16 12 17 13 18 14 19 14 20 13 21 12 8 15 22 16 23 17 22 16 8 15 9 18 11 18 10 15 24 16 25 17 24 16 10 15 18 19 17 20 26 21 27 21 20 20 19 19 13 22 28 23 12 24 28 23 13 22 29 25 30 25 14 22 31 23 15 24 31 23 14 22 32 26 17 27 16 28 21 28 20 27 33 26 23 29 34 30 35 31 34 30 23 29 22 32 24 32 25 29 36 30 37 31 36 30 25 29 26 33 17 34 38 35 39 35 20 34 27 33 29 36 40 37 28 38 40 37 29 36 41 39 42 39 30 36 43 37 31 38 43 37 30 36 44 40 17 41 32 42 33 42 20 41 45 40 35 43 46 44 47 45 46 44 35 43 34 46 36 46 37 43 48 44 49 45 48 44 37 43 17 47 50 48 38 49 39 49 51 48 20 47 40 50 52 51 53 52 52 51 40 50 41 53 42 53 43 50 54 51 55 52 54 51 43 50 56 54 17 55 44 56 45 56 20 55 57 54 47 57 58 58 59 59 58 58 47 57 46 60 48 60 49 57 60 58 61 59 60 58 49 57 17 61 62 62 50 63 51 63 63 62 20 61 53 64 64 65 65 66 64 65 53 64 52 67 54 67 55 64 66 65 67 66 66 65 55 64 56 68 68 69 17 70 20 70 69 69 57 68 59 71 70 72 71 73 70 72 59 71 58 74 60 74 61 71 72 72 73 73 72 72 61 71 17 75 74 76 62 77 63 77 75 76 20 75 65 78 76 79 77 80 76 79 65 78 64 81 66 81 67 78 78 79 79 80 78 79 67 78 68 82 80 83 17 84 20 84 81 83 69 82 71 85 82 86 83 87 82 86 71 85 70 88 72 88 73 85 84 86 85 87 84 86 73 85 17 89 86 90 74 91 75 91 87 90 20 89 77 92 88 93 89 94 88 93 77 92 76 95 78 95 79 92 90 93 91 94 90 93 79 92 80 96 92 97 17 98 20 98 93 97 81 96 82 99 94 100 83 101 94 100 82 99 95 102 96 102 84 99 97 100 85 101 97 100 84 99 17 103 98 104 86 105 87 105 99 104 20 103 89 106 100 107 101 108 100 107 89 106 88 109 90 109 91 106 102 107 103 108 102 107 91 106 92 110 104 111 17 112 20 112 105 111 93 110 95 113 106 114 94 115 106 114 95 113 107 116 108 116 96 113 109 114 97 115 109 114 96 113 17 117 110 118 98 119 99 119 111 118 20 117 112 120 100 121 113 122 100 121 112 120 101 123 103 123 114 120 102 121 115 122 102 121 114 120 104 124 116 125 17 126 20 126 117 125 105 124 107 127 118 128 106 129 118 128 107 127 119 130 120 130 108 127 121 128 109 129 121 128 108 127 17 131 122 132 110 133 111 133 123 132 20 131 119 134 113 135 118 136 113 135 119 134 112 137 114 137 120 134 115 135 121 136 115 135 120 134 116 138 124 139 17 140 20 140 125 139 117 138 17 141 126 142 122 143 123 143 127 142 20 141 17 144 124 145 126 146 127 146 125 145 20 144</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID333\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID334\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID338\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID339\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID343\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"3000\">-0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 -0.3788313495221017 0.7391863847872159 -0.7918046221566382 -0.3788313495221017 0.7391863847872159</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1000\" source=\"#ID343\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID340\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID344\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"3000\">-0.6131685433316286 -0.6352305123706656 -0.4695812321865837 -0.6107430305208749 -0.4313432930897734 -0.6640300551757034 -0.6100330350797705 -0.432978057042589 -0.6636186391527805 0.6100330350797705 0.432978057042589 0.6636186391527805 0.6107430305208749 0.4313432930897734 0.6640300551757034 0.6131685433316286 0.6352305123706656 0.4695812321865837 -0.6414932949073833 -0.1910191354735049 -0.7429657074669219 0.6414932949073833 0.1910191354735049 0.7429657074669219 -0.9119812894775979 0.2460334925802348 0.3282646008505167 -0.9087638176408079 0.2443143590689556 0.3383176284198477 -0.9230582056960787 0.2076733531501404 0.3237828397066665 0.9230582056960787 -0.2076733531501404 -0.3237828397066665 0.9087638176408079 -0.2443143590689556 -0.3383176284198477 0.9119812894775979 -0.2460334925802348 -0.3282646008505167 -0.5814085771430504 -0.6235265193762986 -0.5226650419331412 0.5814085771430504 0.6235265193762986 0.5226650419331412 -0.6219866060717065 -0.2255011033331463 -0.7498545954136263 0.6219866060717065 0.2255011033331463 0.7498545954136263 -0.9234677517021199 0.1707487320338378 0.3435872262978766 -0.9210274254689069 0.188359605763954 0.3409239511248287 0.9210274254689069 -0.188359605763954 -0.3409239511248287 0.9234677517021199 -0.1707487320338378 -0.3435872262978766 -0.9243339167159471 0.2082873548390461 0.319723612238305 0.9243339167159471 -0.2082873548390461 -0.319723612238305 -0.9018502407217643 0.249016537502691 0.3530678509299122 0.9018502407217643 -0.249016537502691 -0.3530678509299122 -0.4688809399671691 -0.7410968956416455 -0.4805476619502169 0.4688809399671691 0.7410968956416455 0.4805476619502169 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.5313074129219958 -0.1516791908637951 -0.8334901655286883 0.5313074129219958 0.1516791908637951 0.8334901655286883 -0.9193974272347317 0.1904939904256795 0.3441226676722378 0.9193974272347317 -0.1904939904256795 -0.3441226676722378 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 -0.9064264101263384 0.2873078457702411 0.3095890256200023 0.9064264101263384 -0.2873078457702411 -0.3095890256200023 -0.4125080872329844 -0.7444765374883888 -0.5249683448520343 0.4125080872329844 0.7444765374883888 0.5249683448520343 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 -0.4893414839082547 -0.1788419456180993 -0.8535575379633175 0.4893414839082547 0.1788419456180993 0.8535575379633175 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 -0.8847877951732008 0.3876305483478212 0.2586370342779885 0.8847877951732008 -0.3876305483478212 -0.2586370342779885 0.04569831620770311 0.6180154536524877 -0.7848366472983348 0.04971157032437513 0.7278710826830646 -0.683909677347578 0.05401064972997639 0.5993988161129192 -0.7986262636291001 -0.05401064972997639 -0.5993988161129192 0.7986262636291001 -0.04971157032437513 -0.7278710826830646 0.683909677347578 -0.04569831620770311 -0.6180154536524877 0.7848366472983348 -0.9126387109060857 0.2012446850352883 0.3557965150204898 0.9126387109060857 -0.2012446850352883 -0.3557965150204898 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 -0.5954974211095998 -0.6204561645494262 0.5103106596225786 -0.5750104179820392 -0.5638465179981029 0.5928238552500531 -0.5884703132773211 -0.5886073228299992 0.554296048968593 0.5884703132773211 0.5886073228299992 -0.554296048968593 0.5750104179820392 0.5638465179981029 -0.5928238552500531 0.5954974211095998 0.6204561645494262 -0.5103106596225786 -0.4435911602170827 0.5573645162302835 -0.7018345094284296 -0.4368753109454024 0.552964815618193 -0.7094856414154525 -0.4492936185982592 0.5610742779696141 -0.6952200363106335 0.4492936185982592 -0.5610742779696141 0.6952200363106335 0.4368753109454024 -0.552964815618193 0.7094856414154525 0.4435911602170827 -0.5573645162302835 0.7018345094284296 0.02921517395714277 -0.972018298904142 0.2330813167247683 0.007288799048047151 -0.9575732679774761 0.2880977435929935 0.0331249413609678 -0.9196095857015579 0.391434474906901 -0.0331249413609678 0.9196095857015579 -0.391434474906901 -0.007288799048047151 0.9575732679774761 -0.2880977435929935 -0.02921517395714277 0.972018298904142 -0.2330813167247683 -0.9092595095315058 0.2346197211408815 0.3438033315404329 0.9092595095315058 -0.2346197211408815 -0.3438033315404329 0.02784385059247752 0.01284876764323613 -0.9995297039879475 0.02557206782593211 -0.2876548247142446 -0.9573926943348394 0.0278811390736898 -0.1294666985918035 -0.9911917150782147 -0.0278811390736898 0.1294666985918035 0.9911917150782147 -0.02557206782593211 0.2876548247142446 0.9573926943348394 -0.02784385059247752 -0.01284876764323613 0.9995297039879475 0.0271922736872749 -0.5474159088744459 -0.8364187963950122 0.009825431372019862 -0.4178389509239254 -0.9084679807176186 -0.009825431372019862 0.4178389509239254 0.9084679807176186 -0.0271922736872749 0.5474159088744459 0.8364187963950122 0.03669397673521557 0.6999623410633172 -0.7132364777298733 -0.03669397673521557 -0.6999623410633172 0.7132364777298733 -0.9111139540391022 0.1995854796515729 0.3606064323711994 0.9111139540391022 -0.1995854796515729 -0.3606064323711994 -0.6085378327787385 -0.4363385207717332 0.6627898621491521 0.6085378327787385 0.4363385207717332 -0.6627898621491521 -0.4290146282623736 0.5477739795014404 -0.7182549102637957 0.4290146282623736 -0.5477739795014404 0.7182549102637957 0.0355140718306879 -0.9496263193448361 0.3113657083071032 -0.0355140718306879 0.9496263193448361 -0.3113657083071032 0.02589537248138592 -0.5533675459134304 -0.8325345571288905 0.02066161520126121 -0.7708648855079502 -0.6366635107716556 0.0193163073801767 -0.6584185702951814 -0.7524040580430462 0.02675587691421818 -0.5599249416657842 -0.8281112139991341 -0.02675587691421818 0.5599249416657842 0.8281112139991341 -0.02589537248138592 0.5533675459134304 0.8325345571288905 -0.02066161520126121 0.7708648855079502 0.6366635107716556 -0.0193163073801767 0.6584185702951814 0.7524040580430462 0.019948224836587 -0.9244137174900406 -0.380869199650106 0.01414311661247775 -0.8602383968027927 -0.5096958631563011 -0.01414311661247775 0.8602383968027927 0.5096958631563011 -0.019948224836587 0.9244137174900406 0.380869199650106 -0.3869225765070412 0.8727213960493712 -0.2977386180306301 -0.4189594113912097 0.8690844326029823 -0.2629928908048341 -0.5897023076858039 0.8014515282654252 -0.09963250549419947 0.5897023076858039 -0.8014515282654252 0.09963250549419947 0.4189594113912097 -0.8690844326029823 0.2629928908048341 0.3869225765070412 -0.8727213960493712 0.2977386180306301 -0.9099990926414894 0.2258504072914317 0.3476970591160654 0.9099990926414894 -0.2258504072914317 -0.3476970591160654 0.03481463620808104 0.01941661477622277 -0.9992051521966502 -0.03481463620808104 -0.01941661477622277 0.9992051521966502 0.02635295136991371 0.002234022109095546 -0.9996502043711644 -0.02635295136991371 -0.002234022109095546 0.9996502043711644 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.03784136067587975 0.8144840404498097 -0.578950584484333 0.03784136067587975 -0.8144840404498097 0.578950584484333 -0.9173890060384352 0.2293469628645768 0.3252650953062846 0.9173890060384352 -0.2293469628645768 -0.3252650953062846 -0.6122597140083652 -0.4503628205385982 0.6498548857082733 0.6122597140083652 0.4503628205385982 -0.6498548857082733 -0.03958647210302838 -0.8552382005688831 0.5167209416252983 0.03958647210302838 0.8552382005688831 -0.5167209416252983 0.03026716317725075 -0.2976749896778023 -0.9541873502376365 -0.03026716317725075 0.2976749896778023 0.9541873502376365 0.02910907021181551 -0.7855610775535136 -0.6180990660600988 -0.02910907021181551 0.7855610775535136 0.6180990660600988 0.01961372260044477 -0.9291073014986491 -0.3692897564076902 -0.01961372260044477 0.9291073014986491 0.3692897564076902 -0.5991542260006512 0.7982237271597008 -0.06207330235162312 0.5991542260006512 -0.7982237271597008 0.06207330235162312 -0.9157317949075062 0.1970830215706734 0.3501336350653144 0.9157317949075062 -0.1970830215706734 -0.3501336350653144 0.0299077864524713 0.3064717907049849 -0.9514097780723052 -0.0299077864524713 -0.3064717907049849 0.9514097780723052 0.02136018720689605 0.2992869541934073 -0.9539240333758867 -0.02136018720689605 -0.2992869541934073 0.9539240333758867 -0.005482260976492941 0.139386230751211 0.9902229160605989 -0.007408558792217734 0.4165322447531742 0.909090755831069 -0.006913157180589681 0.1302289306279806 0.9914598498604414 0.006913157180589681 -0.1302289306279806 -0.9914598498604414 0.007408558792217734 -0.4165322447531742 -0.909090755831069 0.005482260976492941 -0.139386230751211 -0.9902229160605989 -0.003797720091156379 0.4255976902132539 0.9049045161823717 -0.003802609351618076 0.6663786935817081 0.7456037666900933 0.003802609351618076 -0.6663786935817081 -0.7456037666900933 0.003797720091156379 -0.4255976902132539 -0.9049045161823717 -0.0008944920513999811 0.6733396999513402 0.7393327047773614 0.001295306138674836 0.8564789233090522 0.5161803716816183 -0.001295306138674836 -0.8564789233090522 -0.5161803716816183 0.0008944920513999811 -0.6733396999513402 -0.7393327047773614 0.002908326967066847 0.8606855222858298 0.5091286412703778 0.006332432417781015 0.9251165065025596 0.3796305436818457 -0.006332432417781015 -0.9251165065025596 -0.3796305436818457 -0.002908326967066847 -0.8606855222858298 -0.5091286412703778 -0.001404844418161865 0.99551776389769 0.09456430709471765 0.007293336385795456 0.9730925818604524 0.2302990107936251 0.01231533713361633 0.9984524360191881 -0.05423159114975583 -0.01231533713361633 -0.9984524360191881 0.05423159114975583 -0.007293336385795456 -0.9730925818604524 -0.2302990107936251 0.001404844418161865 -0.99551776389769 -0.09456430709471765 0.0120157990965055 0.998198666219562 -0.05877961661630734 0.01023761722016337 0.980868485680595 -0.1944021733219808 -0.01023761722016337 -0.980868485680595 0.1944021733219808 -0.0120157990965055 -0.998198666219562 0.05877961661630734 0.01646393589398393 0.9369218021430217 -0.3491510783084469 0.02512467636456076 0.7906507610061087 -0.611751685537553 0.01414019568378701 0.8726596648110707 -0.4881241279406847 -0.01414019568378701 -0.8726596648110707 0.4881241279406847 -0.02512467636456076 -0.7906507610061087 0.611751685537553 -0.01646393589398393 -0.9369218021430217 0.3491510783084469 0.02402975912977263 0.7849144902682695 -0.6191379601050702 0.03469207648931452 0.5770147196282489 -0.8159966134495859 -0.03469207648931452 -0.5770147196282489 0.8159966134495859 -0.02402975912977263 -0.7849144902682695 0.6191379601050702 0.02921019489462125 0.5707659558659806 -0.8205930709789181 0.03508365640598449 0.3143465129616109 -0.9486597951015225 -0.03508365640598449 -0.3143465129616109 0.9486597951015225 -0.02921019489462125 -0.5707659558659806 0.8205930709789181 0.01492656118699344 -0.9952036424557336 -0.09667940739356572 -0.01492656118699344 0.9952036424557336 0.09667940739356572 0.008347472633542526 -0.9795541238063974 0.2010075576552121 0.01346271275209136 -0.9964377721902609 -0.08324975386068219 -0.01346271275209136 0.9964377721902609 0.08324975386068219 -0.008347472633542526 0.9795541238063974 -0.2010075576552121 0.002143504963585591 -0.8767179422043012 0.4810000573841198 0.008249685662450967 -0.976765905206645 0.2141502022233793 -0.008249685662450967 0.976765905206645 -0.2141502022233793 -0.002143504963585591 0.8767179422043012 -0.4810000573841198 0.002686763416736887 -0.7899672717419514 0.6131431243020837 0.003370248980950642 -0.8703013678452798 0.4925080411002865 -0.003370248980950642 0.8703013678452798 -0.4925080411002865 -0.002686763416736887 0.7899672717419514 -0.6131431243020837 -0.0007244517714074711 -0.686530526938509 0.7271006194132722 -0.006791809893397876 -0.4554923169053546 0.890213806092988 -0.009335567978409306 -0.5787453233274817 0.8154549024299805 0.009335567978409306 0.5787453233274817 -0.8154549024299805 0.006791809893397876 0.4554923169053546 -0.890213806092988 0.0007244517714074711 0.686530526938509 -0.7271006194132722 -0.9824989449431362 0.08503230673662772 -0.1657266725565704 -0.9999899824504387 -0.00260493943261591 0.003639957324477385 -0.9869176053607741 0.09681709921543918 -0.1289189261841074 0.9869176053607741 -0.09681709921543918 0.1289189261841074 0.9999899824504387 0.00260493943261591 -0.003639957324477385 0.9824989449431362 -0.08503230673662772 0.1657266725565704 -0.003997307821499382 -0.4458837485294091 0.8950819539726755 -0.007381002033179414 -0.3156791974855449 0.9488372700752583 0.007381002033179414 0.3156791974855449 -0.9488372700752583 0.003997307821499382 0.4458837485294091 -0.8950819539726755 -0.9999905288897614 -0.001370765720624478 0.004130754424404623 -0.9841485037669431 0.06359518961047951 -0.1655517272386327 0.9841485037669431 -0.06359518961047951 0.1655517272386327 0.9999905288897614 0.001370765720624478 -0.004130754424404623 -0.004057949462573538 -0.1654053068756676 0.9862173277242321 -0.002427302614937988 -0.01243128957560056 0.9999197824033201 0.002427302614937988 0.01243128957560056 -0.9999197824033201 0.004057949462573538 0.1654053068756676 -0.9862173277242321 -0.05001318370946404 0.8414267630942929 -0.5380517482583845 0.05001318370946404 -0.8414267630942929 0.5380517482583845 -0.9187981593551595 0.2316284903157012 0.3196219404853802 0.9187981593551595 -0.2316284903157012 -0.3196219404853802 -0.5116852732955495 -0.4542311857591191 0.7292819831699693 0.5116852732955495 0.4542311857591191 -0.7292819831699693 -0.05172784220055365 -0.8363317719908131 0.5457777913216892 0.05172784220055365 0.8363317719908131 -0.5457777913216892 -0.5143076157204272 0.8449925937235406 -0.1465441672818575 0.5143076157204272 -0.8449925937235406 0.1465441672818575 -0.9157810847001926 0.1934753844391117 0.3520117619078609 0.9157810847001926 -0.1934753844391117 -0.3520117619078609 0.03964917043178988 0.3525170978793918 0.9349650469331792 0.04335475963781485 0.2054908490064289 0.9776982539574081 0.03592728837289261 0.3424796949339312 0.9388380523328466 -0.03592728837289261 -0.3424796949339312 -0.9388380523328466 -0.04335475963781485 -0.2054908490064289 -0.9776982539574081 -0.03964917043178988 -0.3525170978793918 -0.9349650469331792 0.01644376297839757 0.9974451863900713 -0.06951764384949995 -0.01644376297839757 -0.9974451863900713 0.06951764384949995 0.03346756875724736 0.3104113722911479 -0.9500130008551491 0.02135092118153528 0.2802821764875909 -0.9596801757398549 0.03793714202236574 0.1449358727658069 -0.9887134903705868 -0.03793714202236574 -0.1449358727658069 0.9887134903705868 -0.02135092118153528 -0.2802821764875909 0.9596801757398549 -0.03346756875724736 -0.3104113722911479 0.9500130008551491 0.04741565844858901 -0.9527313725054269 -0.3000911314547839 0.04731999989724039 -0.988143031769225 -0.1460622003656307 0.04357592730064158 -0.986621286913195 -0.1570973417013809 -0.04357592730064158 0.986621286913195 0.1570973417013809 -0.04731999989724039 0.988143031769225 0.1460622003656307 -0.04741565844858901 0.9527313725054269 0.3000911314547839 -0.9612697098559012 0.1241480665562238 -0.2460646307048266 0.9612697098559012 -0.1241480665562238 0.2460646307048266 0.03145112195807651 0.7894354586032027 0.613027310670193 0.02684474802398928 0.6624818840923926 0.7485967624515366 0.002788247194464847 0.7096494163407977 0.7045494528879771 -0.002788247194464847 -0.7096494163407977 -0.7045494528879771 -0.02684474802398928 -0.6624818840923926 -0.7485967624515366 -0.03145112195807651 -0.7894354586032027 -0.613027310670193 -0.06757829711111801 0.7710133873258493 -0.6332231283867335 0.06757829711111801 -0.7710133873258493 0.6332231283867335 -0.9294521394256079 0.253452618746215 0.268105372135372 0.9294521394256079 -0.253452618746215 -0.268105372135372 -0.5121653214427434 -0.4705831108144322 0.7184971950729265 0.5121653214427434 0.4705831108144322 -0.7184971950729265 -0.06755689289069129 -0.8758167307604269 0.4778923731794361 0.06755689289069129 0.8758167307604269 -0.4778923731794361 0.01533915038481843 -0.931302781136795 -0.363922849395779 -0.01533915038481843 0.931302781136795 0.363922849395779 -0.5141693164024285 0.8420130928550114 -0.1632294873207583 0.5141693164024285 -0.8420130928550114 0.1632294873207583 -0.9325766854234757 0.1309140125917365 0.3363959677399454 0.9325766854234757 -0.1309140125917365 -0.3363959677399454 0.001200659249239651 -0.1460802454730157 0.9892720153223333 -0.001200659249239651 0.1460802454730157 -0.9892720153223333 -0.002061751646003162 0.149208950471754 0.9888035387675693 0.002061751646003162 -0.149208950471754 -0.9888035387675693 -0.0009318520237067135 0.433722340755988 0.9010460935939696 0.0009318520237067135 -0.433722340755988 -0.9010460935939696 0.001230385039251648 0.6798257005461618 0.7333726904034371 -0.001230385039251648 -0.6798257005461618 -0.7333726904034371 0.004958609525564488 0.865332610935552 0.5011735075231268 -0.004958609525564488 -0.865332610935552 -0.5011735075231268 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.03665747372773916 0.2635154343631972 0.9639584251783245 -0.03665747372773916 -0.2635154343631972 -0.9639584251783245 0.009900852030461732 0.9748308572254344 0.2227257796713161 -0.009900852030461732 -0.9748308572254344 -0.2227257796713161 0.02459906767420807 0.9291593642459279 -0.3688600841832339 -0.02459906767420807 -0.9291593642459279 0.3688600841832339 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.03526949973342622 0.2184273294063683 -0.9752156500779486 -0.03526949973342622 -0.2184273294063683 0.9752156500779486 0.01810657254151843 0.7819003011516978 -0.6231404906517333 -0.01810657254151843 -0.7819003011516978 0.6231404906517333 0.01159606897749572 -0.9972521189634576 -0.07316927228805119 -0.01159606897749572 0.9972521189634576 0.07316927228805119 0.007746355397098426 -0.9745611152693888 0.2239880054443695 -0.007746355397098426 0.9745611152693888 -0.2239880054443695 0.004188632105367766 -0.8653193803481177 0.5012033772382579 -0.004188632105367766 0.8653193803481177 -0.5012033772382579 0.03694298968752306 -0.9660546355743256 -0.2556827264370916 -0.03694298968752306 0.9660546355743256 0.2556827264370916 0.001214459778276763 -0.6793050578937298 0.7338550016232387 -0.001214459778276763 0.6793050578937298 -0.7338550016232387 -0.9165260464188996 0.2413126785897623 -0.3189799325781723 0.9165260464188996 -0.2413126785897623 0.3189799325781723 0.001434244776386382 -0.4349910787918278 0.9004336201594448 -0.001434244776386382 0.4349910787918278 -0.9004336201594448 0.03479758506284582 0.7257101728783496 0.6871199844675382 -0.03479758506284582 -0.7257101728783496 -0.6871199844675382 -0.9053555865328123 0.1174765612269161 -0.4080815108481708 0.9053555865328123 -0.1174765612269161 0.4080815108481708 -0.06837815441249286 0.7838010835826982 -0.61723600783957 0.06837815441249286 -0.7838010835826982 0.61723600783957 -0.925181050407382 0.2544784030417004 0.2815684043930342 0.925181050407382 -0.2544784030417004 -0.2815684043930342 -0.5094027305261349 -0.4031696580921826 0.7602388341346096 0.5094027305261349 0.4031696580921826 -0.7602388341346096 -0.06822779517691434 -0.8673864003091556 0.4929358990010996 0.06822779517691434 0.8673864003091556 -0.4929358990010996 -0.5108147009650829 0.8560080643809171 -0.07948921305931028 0.5108147009650829 -0.8560080643809171 0.07948921305931028 -0.9295497348399154 0.141402496183842 0.3405034868133092 0.9295497348399154 -0.141402496183842 -0.3405034868133092 0.01921047962226295 0.5651345907762262 -0.8247750310120148 -0.01921047962226295 -0.5651345907762262 0.8247750310120148 -0.924489198402029 -0.3808644361577947 0.0161865162458993 -0.9243377794016469 -0.3811886557337647 0.0171720211599593 -0.9072210144294771 -0.4193680273961145 0.03287078604844312 0.9072210144294771 0.4193680273961145 -0.03287078604844312 0.9243377794016469 0.3811886557337647 -0.0171720211599593 0.924489198402029 0.3808644361577947 -0.0161865162458993 -0.03780903634253117 0.08541542107879442 0.9956277831663706 0.03780903634253117 -0.08541542107879442 -0.9956277831663706 -0.915264571564772 -0.4027493562430763 -0.009149867984932962 0.915264571564772 0.4027493562430763 0.009149867984932962 -0.03805664037554967 -0.009784856047856541 -0.9992276761156334 0.03805664037554967 0.009784856047856541 0.9992276761156334 -0.03988346302587386 -0.9059913707647226 -0.4214130342988013 0.03988346302587386 0.9059913707647226 0.4214130342988013 -0.8756294668438924 0.3525945089564383 -0.3300759746610601 0.8756294668438924 -0.3525945089564383 0.3300759746610601 -0.7066995161370085 -0.3328394342728472 0.6243346097123314 -0.6992610303780938 -0.1874041802288657 0.6898649756490857 -0.706699211393621 -0.332866770111896 0.6243203808709985 0.706699211393621 0.332866770111896 -0.6243203808709985 0.6992610303780938 0.1874041802288657 -0.6898649756490857 0.7066995161370085 0.3328394342728472 -0.6243346097123314 -0.038009535614359 0.8723927326412684 0.4873255536467188 0.038009535614359 -0.8723927326412684 -0.4873255536467188 -0.6961182166882092 -0.4697752474880487 0.5428910067797866 0.6961182166882092 0.4697752474880487 -0.5428910067797866 -0.8876323827149847 0.1162542163379045 -0.4456385422507556 0.8876323827149847 -0.1162542163379045 0.4456385422507556 -0.06016248758640132 0.7467500003972328 -0.6623782242753371 0.06016248758640132 -0.7467500003972328 0.6623782242753371 -0.9245527864503199 0.237309528475381 0.298138110213608 0.9245527864503199 -0.237309528475381 -0.298138110213608 -0.5139497895077154 -0.4058857625891543 0.755719763928664 0.5139497895077154 0.4058857625891543 -0.755719763928664 -0.0600348953330893 -0.8956050067033663 0.4407805387153662 0.0600348953330893 0.8956050067033663 -0.4407805387153662 -0.515859789786745 0.8519771407680433 -0.08957471121854281 0.515859789786745 -0.8519771407680433 0.08957471121854281 -0.9272834517509151 0.1632925520749501 0.3368693256230941 0.9272834517509151 -0.1632925520749501 -0.3368693256230941 -0.9059645702483528 -0.4228100787491342 0.02144375813304393 0.9059645702483528 0.4228100787491342 -0.02144375813304393 -0.04998584997638523 0.03649578989508206 0.9980828984218056 0.04998584997638523 -0.03649578989508206 -0.9980828984218056 -0.9126672826667309 -0.4084995448882047 -0.01290554050999234 -0.9026800271055669 -0.4300978238059344 -0.01358788512213859 -0.9111165739877291 -0.4120009636975097 -0.01103605532726058 0.9111165739877291 0.4120009636975097 0.01103605532726058 0.9026800271055669 0.4300978238059344 0.01358788512213859 0.9126672826667309 0.4084995448882047 0.01290554050999234 -0.9164192555908047 -0.4001603245189633 -0.006889315152686308 0.9164192555908047 0.4001603245189633 0.006889315152686308 -0.9100128209423325 -0.4141053938628353 0.01983402365341829 -0.9098768749122155 -0.4144813710644892 0.01814567553114639 0.9098768749122155 0.4144813710644892 -0.01814567553114639 0.9100128209423325 0.4141053938628353 -0.01983402365341829 -0.05007447950133898 -0.04460336033844332 -0.9977490098963712 0.05007447950133898 0.04460336033844332 0.9977490098963712 -0.05223146845994098 -0.8838556721519534 -0.4648344054685892 0.05223146845994098 0.8838556721519534 0.4648344054685892 -0.9055099122664467 0.08478975686936037 -0.415767357926577 -0.9134603460440244 0.100090271838512 -0.3944263349326765 -0.9150871129800877 0.09156365276906278 -0.3927234054004866 0.9150871129800877 -0.09156365276906278 0.3927234054004866 0.9134603460440244 -0.100090271838512 0.3944263349326765 0.9055099122664467 -0.08478975686936037 0.415767357926577 -0.8628976978143381 0.3867850561445824 -0.3252766260430459 0.8628976978143381 -0.3867850561445824 0.3252766260430459 -0.9158353220314106 0.1680129671192036 0.3647153764230731 -0.8250636447121634 0.1563131469686213 0.542988197163665 -0.9156800465471477 0.12306795282666 0.3826020535000676 0.9156800465471477 -0.12306795282666 -0.3826020535000676 0.8250636447121634 -0.1563131469686213 -0.542988197163665 0.9158353220314106 -0.1680129671192036 -0.3647153764230731 -0.9301712002434255 0.04356903436083521 0.3645315863989973 0.9301712002434255 -0.04356903436083521 -0.3645315863989973 -0.9102915714758219 0.1919571037046917 -0.3667720344265427 -0.9098752187950685 0.1899053550703858 -0.3688672421593123 0.9098752187950685 -0.1899053550703858 0.3688672421593123 0.9102915714758219 -0.1919571037046917 0.3667720344265427 -0.05002206568014039 0.8883803733443121 0.4563749611905901 0.05002206568014039 -0.8883803733443121 -0.4563749611905901 -0.9161764556186254 -0.3981519670093227 0.04577896172588378 -0.9335057704990215 -0.3295072998576136 0.1413927713342278 -0.9152454586525087 -0.3912460761204535 0.09618866012325544 0.9152454586525087 0.3912460761204535 -0.09618866012325544 0.9335057704990215 0.3295072998576136 -0.1413927713342278 0.9161764556186254 0.3981519670093227 -0.04577896172588378 -0.8008752262028298 -0.5581038891156944 0.2170689314676397 0.8008752262028298 0.5581038891156944 -0.2170689314676397 -0.9078252336262972 0.2546053228708254 -0.3332108563015343 0.9078252336262972 -0.2546053228708254 0.3332108563015343 -0.06214391660331564 0.7497897154320584 -0.6587514829292707 0.06214391660331564 -0.7497897154320584 0.6587514829292707 -0.9105068842497451 0.232294596580093 0.3420766495005371 0.9105068842497451 -0.232294596580093 -0.3420766495005371 -0.5636529765645513 -0.1834260551652416 0.805388232032502 0.5636529765645513 0.1834260551652416 -0.805388232032502 -0.06204321152616367 -0.8915755561120776 0.4486019033028719 0.06204321152616367 0.8915755561120776 -0.4486019033028719 -0.563551722335448 0.8122020272639635 0.1507890021223632 0.563551722335448 -0.8122020272639635 -0.1507890021223632 -0.9128754411958339 0.2045282989941302 0.3533080861968483 0.9128754411958339 -0.2045282989941302 -0.3533080861968483 -0.8841694971092278 -0.4670196417475235 0.01170276051322128 0.8841694971092278 0.4670196417475235 -0.01170276051322128 -0.7948062792220184 0.5103440598305962 -0.328377707990168 -0.6271806346804609 0.7782902294104336 -0.0301458170575845 -0.6099115313195107 0.7918454994605457 -0.03144247044315008 0.6099115313195107 -0.7918454994605457 0.03144247044315008 0.6271806346804609 -0.7782902294104336 0.0301458170575845 0.7948062792220184 -0.5103440598305962 0.328377707990168 -0.06757420297446912 0.1542219217613901 0.9857227429356539 0.06757420297446912 -0.1542219217613901 -0.9857227429356539 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 -0.9173919056680412 -0.396652180679767 0.03254441544636197 0.9173919056680412 0.396652180679767 -0.03254441544636197 -0.7044687220678403 0.6666170076972114 0.2436094921732724 0.7044687220678403 -0.6666170076972114 -0.2436094921732724 -0.9056948139282527 -0.4239285587280207 -0.001217012017516861 0.9056948139282527 0.4239285587280207 0.001217012017516861 -0.9062955794800263 -0.4218840716820903 0.02534073155818777 0.9062955794800263 0.4218840716820903 -0.02534073155818777 -0.9178702577263617 -0.3968043330700363 -0.007778896977463935 0.9178702577263617 0.3968043330700363 0.007778896977463935 -0.0673402010633347 0.03284261300743482 -0.9971893802541189 0.0673402010633347 -0.03284261300743482 0.9971893802541189 -0.06783519718058229 -0.9323282921296917 -0.3551933863657993 0.06783519718058229 0.9323282921296917 0.3551933863657993 -0.9036091026635394 0.0556782963512844 -0.424724047940556 0.9036091026635394 -0.0556782963512844 0.424724047940556 -0.9151772240300315 0.1669447966678817 -0.3668515823629565 0.9151772240300315 -0.1669447966678817 0.3668515823629565 -0.5462375627474104 0.7832296524327782 0.2969441641012638 -0.6297975146368566 0.6855810967237255 0.3651488057933807 -0.6447186628852124 0.6879675290323077 0.3332244359657386 0.6447186628852124 -0.6879675290323077 -0.3332244359657386 0.6297975146368566 -0.6855810967237255 -0.3651488057933807 0.5462375627474104 -0.7832296524327782 -0.2969441641012638 -0.8004665242590809 0.1327927671656561 0.584482184954404 0.8004665242590809 -0.1327927671656561 -0.584482184954404 -0.9178727869669794 0.2036829255299642 -0.3406212160054408 0.9178727869669794 -0.2036829255299642 0.3406212160054408 -0.06731641938335971 0.8494783472765206 0.5233116062058579 0.06731641938335971 -0.8494783472765206 -0.5233116062058579 -0.7668641844162472 -0.5810340615428355 0.2726146400812705 0.7668641844162472 0.5810340615428355 -0.2726146400812705 -0.6233448385994473 -0.603445758421776 -0.4972870688387107 -0.6450470615181747 -0.7070854542103706 -0.2897316842716416 -0.6476791120465277 -0.7033306111846984 -0.2929809194967823 0.6476791120465277 0.7033306111846984 0.2929809194967823 0.6450470615181747 0.7070854542103706 0.2897316842716416 0.6233448385994473 0.603445758421776 0.4972870688387107 -0.0732053161087646 0.6786547872505393 -0.7308000146656684 0.0732053161087646 -0.6786547872505393 0.7308000146656684 -0.9271360714165975 0.212632426034943 0.3085549488773313 0.9271360714165975 -0.212632426034943 -0.3085549488773313 -0.5682440159721127 -0.2499810897182357 0.7839695103096603 0.5682440159721127 0.2499810897182357 -0.7839695103096603 -0.07326583168045271 -0.9382150080750226 0.3382080964893607 0.07326583168045271 0.9382150080750226 -0.3382080964893607 -0.5680807927105938 0.8189688158964524 0.08108200504714996 0.5680807927105938 -0.8189688158964524 -0.08108200504714996 -0.927548465775947 0.18590322006679 0.3241817953023973 0.927548465775947 -0.18590322006679 -0.3241817953023973 -0.8928491632893021 -0.4470013707692716 0.05486479876920774 0.8928491632893021 0.4470013707692716 -0.05486479876920774 -0.6779678389035451 0.5914850813119577 -0.4364687938419465 -0.7930586724642184 0.5380222435700273 -0.2856396461508205 0.7930586724642184 -0.5380222435700273 0.2856396461508205 0.6779678389035451 -0.5914850813119577 0.4364687938419465 -0.06837946245005622 0.133948004867257 0.9886264112935294 0.06837946245005622 -0.133948004867257 -0.9886264112935294 -0.9187989142657232 -0.3929531117095517 0.0373685314390171 0.9187989142657232 0.3929531117095517 -0.0373685314390171 -0.5792112105076253 -0.03535317024093707 -0.8144105395782932 -0.5626671069308074 -0.09424735772971241 -0.8212935908303943 -0.6084903667744845 -0.3361198159561551 -0.7188622558350478 0.6084903667744845 0.3361198159561551 0.7188622558350478 0.5626671069308074 0.09424735772971241 0.8212935908303943 0.5792112105076253 0.03535317024093707 0.8144105395782932 -0.6142586567780607 -0.3121905317741047 -0.7247229639274684 -0.5114901394861176 -0.3977120680449375 -0.7617105409142576 0.5114901394861176 0.3977120680449375 0.7617105409142576 0.6142586567780607 0.3121905317741047 0.7247229639274684 -0.7165913554401721 0.6650103775153866 0.2103759185488212 0.7165913554401721 -0.6650103775153866 -0.2103759185488212 -0.764937702624227 0.5192485317920021 0.3811184505318785 0.764937702624227 -0.5192485317920021 -0.3811184505318785 -0.5301106299440702 -0.2511652486673166 0.809875754595843 -0.6030031272843839 -0.3014611009609044 0.7385854270784746 -0.5174518251755897 -0.2411286674177418 0.8210362807889765 0.5174518251755897 0.2411286674177418 -0.8210362807889765 0.6030031272843839 0.3014611009609044 -0.7385854270784746 0.5301106299440702 0.2511652486673166 -0.809875754595843 -0.6060304150691775 -0.3080632070317224 0.7333649817685672 -0.5145052688849753 -0.2999231163421164 0.803324624652595 0.5145052688849753 0.2999231163421164 -0.803324624652595 0.6060304150691775 0.3080632070317224 -0.7333649817685672 -0.9180481665079123 -0.3962927934772661 -0.01181464385606148 0.9180481665079123 0.3962927934772661 0.01181464385606148 -0.06822609440622343 0.01557927206212744 -0.9975482375925926 0.06822609440622343 -0.01557927206212744 0.9975482375925926 -0.06836592527621122 -0.9248117108838933 -0.374231745945121 0.06836592527621122 0.9248117108838933 0.374231745945121 -0.9159377876348976 0.1653334364994017 -0.3656813147506822 0.9159377876348976 -0.1653334364994017 0.3656813147506822 -0.6049336713798291 0.7946676713190241 0.05058206590601672 -0.5557652605442751 0.7376308132429826 0.3834393805109877 0.5557652605442751 -0.7376308132429826 -0.3834393805109877 0.6049336713798291 -0.7946676713190241 -0.05058206590601672 -0.5113431291935486 0.8587529234400222 0.03273561836539834 -0.6114792617679662 0.7887888748458873 0.06249178623677078 0.6114792617679662 -0.7887888748458873 -0.06249178623677078 0.5113431291935486 -0.8587529234400222 -0.03273561836539834 -0.6410831753865172 -0.6305734637185176 -0.4374808213972034 -0.6084825682336931 -0.495113360886253 -0.6201707216788357 0.6084825682336931 0.495113360886253 0.6201707216788357 0.6410831753865172 0.6305734637185176 0.4374808213972034 -0.6086877370165386 -0.4987726994136522 -0.6170291995726814 -0.5145324763372529 -0.5486089202616341 -0.6590027188135252 0.5145324763372529 0.5486089202616341 0.6590027188135252 0.6086877370165386 0.4987726994136522 0.6170291995726814 -0.9180510116488734 0.2069327617052255 -0.3381732871525023 0.9180510116488734 -0.2069327617052255 0.3381732871525023 -0.06820506512298212 0.8583605711733054 0.5084930667635563 0.06820506512298212 -0.8583605711733054 -0.5084930667635563 -0.07788897801981856 0.7203251955069255 -0.6892495337836203 0.07788897801981856 -0.7203251955069255 0.6892495337836203 -0.9186236678224693 0.2137604419261941 0.3323206740242198 0.9186236678224693 -0.2137604419261941 -0.3323206740242198 -0.5912354405693278 -0.06373945870929254 0.8039763275235403 0.5912354405693278 0.06373945870929254 -0.8039763275235403 -0.07801011213032839 -0.9149104860515087 0.3960469983706556 0.07801011213032839 0.9149104860515087 -0.3960469983706556 -0.5911901739412696 0.7634359260444917 0.2601149074157052 0.5911901739412696 -0.7634359260444917 -0.2601149074157052 -0.918427191400784 0.2082707995037445 0.3363253903138127 0.918427191400784 -0.2082707995037445 -0.3363253903138127 -0.5611802421407521 0.1223351114562133 -0.8186029906712061 -0.5552116476461365 0.1310993066410967 -0.8213117545221707 0.5552116476461365 -0.1310993066410967 0.8213117545221707 0.5611802421407521 -0.1223351114562133 0.8186029906712061 -0.6408955186930352 0.6368247591987463 -0.4286107327058484 0.6408955186930352 -0.6368247591987463 0.4286107327058484 -0.06018780181180793 0.1916292067335681 0.9796201690654016 0.06018780181180793 -0.1916292067335681 -0.9796201690654016 -0.9294544655857993 -0.3596552207152826 0.08223453419858177 0.9294544655857993 0.3596552207152826 -0.08223453419858177 -0.5119734798882151 -0.3801411073322832 -0.7703089603576846 0.5119734798882151 0.3801411073322832 0.7703089603576846 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 -0.7827724052343109 0.4885261484066231 0.3854991101503113 0.7827724052343109 -0.4885261484066231 -0.3854991101503113 -0.6653394530452826 0.165916713449703 0.7278702194893354 -0.6147039237146543 0.238512470860314 0.7518316882214503 -0.6840994787240873 0.1363722874922993 0.7165266934410397 0.6840994787240873 -0.1363722874922993 -0.7165266934410397 0.6147039237146543 -0.238512470860314 -0.7518316882214503 0.6653394530452826 -0.165916713449703 -0.7278702194893354 -0.5846765150393855 0.2775554521153094 0.7623098738455811 0.5846765150393855 -0.2775554521153094 -0.7623098738455811 -0.5144696680899629 -0.2827869085697489 0.8095384641615049 0.5144696680899629 0.2827869085697489 -0.8095384641615049 -0.9325779507189076 -0.3562891568629708 -0.0579344675887886 0.9325779507189076 0.3562891568629708 0.0579344675887886 -0.06008517546283819 0.07478840775462761 -0.9953875957410397 0.06008517546283819 -0.07478840775462761 0.9953875957410397 -0.06016537746400757 -0.9456188928128914 -0.3196639437126669 0.06016537746400757 0.9456188928128914 0.3196639437126669 -0.9294575191574707 0.1069983269701304 -0.3530723411812842 0.9294575191574707 -0.1069983269701304 0.3530723411812842 -0.5118224780352834 0.8574987258211545 0.05228466498810563 0.5118224780352834 -0.8574987258211545 -0.05228466498810563 -0.514493135926281 -0.5625126092319087 -0.6472065957172033 0.514493135926281 0.5625126092319087 0.6472065957172033 -0.9325781432366856 0.2270966540840191 -0.280579964468348 0.9325781432366856 -0.2270966540840191 0.280579964468348 -0.06002763057924118 0.8270709642152402 0.5588830859125324 0.06002763057924118 -0.8270709642152402 -0.5588830859125324 -0.07605661316331486 0.6351470128865732 -0.7686375372146413 0.07605661316331486 -0.6351470128865732 0.7686375372146413 -0.9208305953623421 0.2088271071494026 0.3293360805685381 0.9208305953623421 -0.2088271071494026 -0.3293360805685381 -0.8621478316094056 0.2290208849793479 0.4519408707944841 0.8621478316094056 -0.2290208849793479 -0.4519408707944841 -0.6042033250166701 -0.04459964845335795 0.7955810539452516 0.6042033250166701 0.04459964845335795 -0.7955810539452516 -0.0760742450757196 -0.9574640025019078 0.27834401942414 0.0760742450757196 0.9574640025019078 -0.27834401942414 -0.6041792882639404 0.748119712716962 0.2743798153603302 0.6041792882639404 -0.748119712716962 -0.2743798153603302 -0.8666360269162206 0.3018712000249856 0.3972603371170386 0.8666360269162206 -0.3018712000249856 -0.3972603371170386 -0.06215953815997215 0.1869805446352334 0.9803950569763448 0.06215953815997215 -0.1869805446352334 -0.9803950569763448 -0.9251817572127729 -0.3717791800066462 0.07628209117657712 0.9251817572127729 0.3717791800066462 -0.07628209117657712 -0.5094391278008816 -0.4503793007937866 -0.7332327464604789 0.5094391278008816 0.4503793007937866 0.7332327464604789 -0.5107042903204709 -0.3659351517327707 0.7779926687151866 0.5107042903204709 0.3659351517327707 -0.7779926687151866 -0.9295512194985515 -0.3651508688837732 -0.05098404929172666 0.9295512194985515 0.3651508688837732 0.05098404929172666 -0.06207876760437363 0.06602698698797134 -0.9958848646314555 0.06207876760437363 -0.06602698698797134 0.9958848646314555 -0.06213739111210562 -0.9439802191053086 -0.3240991986470726 0.06213739111210562 0.9439802191053086 0.3240991986470726 -0.9251831321196651 0.1181898446877643 -0.3606484890498343 0.9251831321196651 -0.1181898446877643 0.3606484890498343 -0.5092947909307791 0.8601651410365301 -0.027106199962007 0.5092947909307791 -0.8601651410365301 0.027106199962007 -0.5105354677853689 -0.4940289674119409 -0.703767657320984 0.5105354677853689 0.4940289674119409 0.703767657320984 -0.9295504993104691 0.2254579596928901 -0.2917268887894581 0.9295504993104691 -0.2254579596928901 0.2917268887894581 -0.06203113682986364 0.8318660453007373 0.551498885528617 0.06203113682986364 -0.8318660453007373 -0.551498885528617 -0.07783629645161526 0.6386398399740993 -0.7655590543861087 0.07783629645161526 -0.6386398399740993 0.7655590543861087 -0.9138229107542849 0.2183939193754576 0.3423912729033732 0.9138229107542849 -0.2183939193754576 -0.3423912729033732 -0.5345884589721218 0.4034395796788172 0.7425979296243637 -0.5524074943628621 0.4050841393154985 0.7285278307976754 -0.4787989807562905 0.4668933018719641 0.7434797782682678 0.4787989807562905 -0.4668933018719641 -0.7434797782682678 0.5524074943628621 -0.4050841393154985 -0.7285278307976754 0.5345884589721218 -0.4034395796788172 -0.7425979296243637 -0.06467178653120824 -0.4384108387102168 -0.8964449210789618 -0.06712979634411644 -0.500579809610561 -0.8630836834589403 -0.05182109757684491 -0.4514163579221916 -0.8908074122088315 0.05182109757684491 0.4514163579221916 0.8908074122088315 0.06712979634411644 0.500579809610561 0.8630836834589403 0.06467178653120824 0.4384108387102168 0.8964449210789618 -0.07792118493082251 -0.9559677627777016 0.2829380240773106 0.07792118493082251 0.9559677627777016 -0.2829380240773106 -0.5296654684248241 0.4971931921921262 0.687206971149242 -0.544217945097606 0.4868904901393766 0.6832016384974328 0.544217945097606 -0.4868904901393766 -0.6832016384974328 0.5296654684248241 -0.4971931921921262 -0.687206971149242 -0.06331144630405373 -0.6168950586009265 -0.784494835827903 -0.04893206091694585 -0.6042992393415967 -0.7952534707535631 -0.06556201067145182 -0.5654470917961071 -0.8221746828600607 0.06556201067145182 0.5654470917961071 0.8221746828600607 0.04893206091694585 0.6042992393415967 0.7952534707535631 0.06331144630405373 0.6168950586009265 0.784494835827903 -0.07317435867671789 0.2852169995987944 0.9556656195407013 0.07317435867671789 -0.2852169995987944 -0.9556656195407013 -0.9245447371101613 -0.3773552231352665 0.05310428094265093 0.9245447371101613 0.3773552231352665 -0.05310428094265093 -0.5139838480450424 -0.4451092818304552 -0.7332791631958371 0.5139838480450424 0.4451092818304552 0.7332791631958371 -0.5157659772286117 -0.3552253929522392 0.7796155314867339 0.5157659772286117 0.3552253929522392 -0.7796155314867339 -0.9272834542399263 -0.373133423886244 -0.03027942324085647 0.9272834542399263 0.373133423886244 0.03027942324085647 -0.07322677161913004 0.1848207446832606 -0.980040372766839 0.07322677161913004 -0.1848207446832606 0.980040372766839 -0.07315269852634401 -0.9712587534489104 -0.2265063278303333 0.07315269852634401 0.9712587534489104 0.2265063278303333 -0.924551007271137 0.1411219268150242 -0.3539633268093474 0.924551007271137 -0.1411219268150242 0.3539633268093474 -0.5138680084800981 0.857573090590434 -0.02254027852243685 0.5138680084800981 -0.857573090590434 0.02254027852243685 -0.5156107881351871 -0.500749424973523 -0.6952665161988583 0.5156107881351871 0.500749424973523 0.6952665161988583 -0.9272779039266812 0.2114525434248893 -0.3089393318573824 0.9272779039266812 -0.2114525434248893 0.3089393318573824 -0.07323009189041933 0.7592000544660637 0.6467245402336659 0.07323009189041933 -0.7592000544660637 -0.6467245402336659 -0.07384419633644265 -0.4918662305097807 -0.8675336569560422 -0.07183856815325576 -0.5367001228199709 -0.8407093423358147 0.07183856815325576 0.5367001228199709 0.8407093423358147 0.07384419633644265 0.4918662305097807 0.8675336569560422 -0.4571428387213803 0.4708925370562133 0.7545068876759978 0.4571428387213803 -0.4708925370562133 -0.7545068876759978 -0.07317072936235344 -0.5741876618940569 -0.815447468138333 0.07317072936235344 0.5741876618940569 0.815447468138333 -0.07786128607335852 0.2282437525088427 0.9704856565512368 0.07786128607335852 -0.2282437525088427 -0.9704856565512368 -0.910518420051696 -0.4126184541394979 0.02649939716473525 0.910518420051696 0.4126184541394979 -0.02649939716473525 -0.5636615363401881 -0.6008612160141833 -0.5667905005736916 0.5636615363401881 0.6008612160141833 0.5667905005736916 -0.5636121577228427 -0.5422177340050004 0.6231703335344874 0.5636121577228427 0.5422177340050004 -0.6231703335344874 -0.9128840725037823 -0.4082071319792981 -0.003099608063125092 0.9128840725037823 0.4082071319792981 0.003099608063125092 -0.07794444694945403 0.123244223494892 -0.9893106309773917 0.07794444694945403 -0.123244223494892 0.9893106309773917 -0.07784980261668228 -0.9558510645399539 -0.2833516378113609 0.07784980261668228 0.9558510645399539 0.2833516378113609 -0.910506959134482 0.181741629865931 -0.3714122471612288 0.910506959134482 -0.181741629865931 0.3714122471612288 -0.5638170052827519 0.7901416633769365 -0.2403883032718469 0.5638170052827519 -0.7901416633769365 0.2403883032718469 -0.5636943070143379 -0.2718931151353536 -0.7799505511130938 0.5636943070143379 0.2718931151353536 0.7799505511130938 -0.9128734660900318 0.2052562609143245 -0.3528907795115115 0.9128734660900318 -0.2052562609143245 0.3528907795115115 -0.07796022575618454 0.7978022440562502 0.597857660801345 0.07796022575618454 -0.7978022440562502 -0.597857660801345 -0.07293523093475945 -0.536747093346532 -0.840584921273599 0.07293523093475945 0.536747093346532 0.840584921273599 -0.07604770112068858 0.3398450615732017 0.9374017715358579 0.07604770112068858 -0.3398450615732017 -0.9374017715358579 -0.9271339304211422 -0.3737861328003613 0.02658198615595467 0.9271339304211422 0.3737861328003613 -0.02658198615595467 -0.56821021807484 -0.5485574908562504 -0.6133692422194298 0.56821021807484 0.5485574908562504 0.6133692422194298 -0.5681978066790452 -0.4856242309667716 0.664319470422969 0.5681978066790452 0.4856242309667716 -0.664319470422969 -0.9275538218035446 -0.3736639910290091 -0.004373724489596332 0.9275538218035446 0.3736639910290091 0.004373724489596332 -0.07601198010694718 0.2461619642348556 -0.9662434818637893 0.07601198010694718 -0.2461619642348556 0.9662434818637893 -0.07603488379294941 -0.9824986161570616 -0.1700445991381432 0.07603488379294941 0.9824986161570616 0.1700445991381432 -0.9271175633615203 0.1624153764230984 -0.3377488256203726 0.9271175633615203 -0.1624153764230984 0.3377488256203726 -0.5684223245221804 0.8045495901676812 -0.1720349323417111 0.5684223245221804 -0.8045495901676812 0.1720349323417111 -0.5682562327497746 -0.3357303571020874 -0.7512456197949771 0.5682562327497746 0.3357303571020874 0.7512456197949771 -0.9275500865344358 0.1892090791949394 -0.3222588421132365 0.9275500865344358 -0.1892090791949394 0.3222588421132365 -0.07602359932507562 0.7168034810914563 0.6931184471941507 0.07602359932507562 -0.7168034810914563 -0.6931184471941507 -0.07788522860997994 0.33527590521265 0.9388950732367325 0.07788522860997994 -0.33527590521265 -0.9388950732367325 -0.9186365967429201 -0.3947997214296697 0.01549138740205839 -0.8622039110363094 -0.5055471860195102 -0.0320383910558382 0.8622039110363094 0.5055471860195102 0.0320383910558382 0.9186365967429201 0.3947997214296697 -0.01549138740205839 -0.5911920785065153 -0.6603884431093904 -0.4630108319669223 0.5911920785065153 0.6603884431093904 0.4630108319669223 -0.5913185191009809 -0.6117206410194161 0.5254905006934163 0.5913185191009809 0.6117206410194161 -0.5254905006934163 -0.9184398770765989 -0.3954642704709246 0.008729431620756456 0.9184398770765989 0.3954642704709246 -0.008729431620756456 -0.8666694425626617 -0.4954474410657432 0.05844579086240863 0.8666694425626617 0.4954474410657432 -0.05844579086240863 -0.07784647127831051 0.2414764141318304 -0.967279209084713 0.07784647127831051 -0.2414764141318304 0.967279209084713 -0.07789085419739079 -0.9815182421211756 -0.1747997574819787 0.07789085419739079 0.9815182421211756 0.1747997574819787 -0.9186099994929518 0.1824781962483763 -0.3505101663653969 -0.8621876343713294 0.2786709173777909 -0.4230543735088806 0.8621876343713294 -0.2786709173777909 0.4230543735088806 0.9186099994929518 -0.1824781962483763 0.3505101663653969 -0.5914357760694816 0.729508062189148 -0.3435428793995359 0.5914357760694816 -0.729508062189148 0.3435428793995359 -0.5912701432089158 -0.1528401862184598 -0.7918582545041852 0.5912701432089158 0.1528401862184598 0.7918582545041852 -0.9184311868293691 0.1886543416202624 -0.3476977055532891 0.9184311868293691 -0.1886543416202624 0.3476977055532891 -0.8666393501579606 0.1951110697023345 -0.45920355751823 0.8666393501579606 -0.1951110697023345 0.45920355751823 -0.07785123444427876 0.7200157100790545 0.6895770896243993 0.07785123444427876 -0.7200157100790545 -0.6895770896243993 -0.06463126882157386 0.9949142282440756 0.07725592228437379 -0.06710589855194701 0.997722592184132 0.006813767306884728 -0.05175606910108979 0.9966603560649529 0.06316204524621295 0.05175606910108979 -0.9966603560649529 -0.06316204524621295 0.06710589855194701 -0.997722592184132 -0.006813767306884728 0.06463126882157386 -0.9949142282440756 -0.07725592228437379 -0.9208481389957095 -0.3897131234716203 0.01274308840634989 0.9208481389957095 0.3897131234716203 -0.01274308840634989 -0.6041265859342664 -0.6628633493676761 -0.4423157788644598 0.6041265859342664 0.6628633493676761 0.4423157788644598 -0.6043510956270248 -0.616247919108277 0.504973519512789 0.6043510956270248 0.616247919108277 -0.504973519512789 -0.06544351105841843 0.9954089662035404 -0.06984366014138725 -0.06320711920580965 0.9890618334347577 -0.1332724642391598 -0.04887595123153411 0.9919269240416067 -0.1170133272433938 0.04887595123153411 -0.9919269240416067 0.1170133272433938 0.06320711920580965 -0.9890618334347577 0.1332724642391598 0.06544351105841843 -0.9954089662035404 0.06984366014138725 -0.06467060858579891 -0.5607537460364631 0.8254531777703786 -0.06715572110431041 -0.500971452014702 0.8628543987192979 -0.05176292428173093 -0.5493551863579695 0.8339840999032322 0.05176292428173093 0.5493551863579695 -0.8339840999032322 0.06715572110431041 0.500971452014702 -0.8628543987192979 0.06467060858579891 0.5607537460364631 -0.8254531777703786 -0.9208229918529777 0.1823261521974405 -0.3447349589174365 0.9208229918529777 -0.1823261521974405 0.3447349589174365 -0.6044052953115482 0.7127115897051575 -0.3560006023861583 0.6044052953115482 -0.7127115897051575 0.3560006023861583 -0.6042208852079725 -0.1329109324677061 -0.7856537442850122 0.6042208852079725 0.1329109324677061 0.7856537442850122 -0.06330197836798127 -0.3750046590734298 0.9248591055982096 -0.0489311245994604 -0.3905865829625489 0.9192648509842373 -0.06555032380382546 -0.4332602793100031 0.8988819084960116 0.06555032380382546 0.4332602793100031 -0.8988819084960116 0.0489311245994604 0.3905865829625489 -0.9192648509842373 0.06330197836798127 0.3750046590734298 -0.9248591055982096 -0.07380847313489657 0.9971350212817937 0.01655471615135637 0.07380847313489657 -0.9971350212817937 -0.01655471615135637 -0.9138485014307795 -0.4058014096885466 0.01435730920149108 0.9138485014307795 0.4058014096885466 -0.01435730920149108 -0.5523468059055555 -0.8333556620290644 -0.020768884660241 -0.4787759179973137 -0.8775837507625626 0.02490744353284692 -0.5345304218766152 -0.844640307144783 -0.02932540937096353 0.5345304218766152 0.844640307144783 0.02932540937096353 0.4787759179973137 0.8775837507625626 -0.02490744353284692 0.5523468059055555 0.8333556620290644 0.020768884660241 -0.5444019885151931 -0.8356723357134307 0.07265137454971396 -0.529810937761632 -0.8443800785050153 0.07951511335591559 0.529810937761632 0.8443800785050153 -0.07951511335591559 0.5444019885151931 0.8356723357134307 -0.07265137454971396 -0.0730429405716595 0.9940521145746529 -0.08077822938333205 0.0730429405716595 -0.9940521145746529 0.08077822938333205 -0.07388662353121546 -0.5091637543312346 0.8574922962560529 0.07388662353121546 0.5091637543312346 -0.8574922962560529 -0.9138168602334956 0.1889226119874796 -0.3595093776702133 0.9138168602334956 -0.1889226119874796 0.3595093776702133 -0.5347331070637321 0.444464319308261 -0.7186876742172578 -0.5525632992352004 0.4314208972124874 -0.7131267838096413 -0.4788900951458034 0.4137789169757429 -0.7742423939811258 0.4788900951458034 -0.4137789169757429 0.7742423939811258 0.5525632992352004 -0.4314208972124874 0.7131267838096413 0.5347331070637321 -0.444464319308261 0.7186876742172578 -0.5297627038662381 0.3498802766270966 -0.7726158616153819 -0.5443231062547118 0.3515163285545688 -0.7616748825822854 0.5443231062547118 -0.3515163285545688 0.7616748825822854 0.5297627038662381 -0.3498802766270966 0.7726158616153819 -0.0731648938415657 -0.4230767780001828 0.9031350608996067 0.0731648938415657 0.4230767780001828 -0.9031350608996067 -0.0717598100444269 0.9967833931070906 -0.03568468702823421 0.0717598100444269 -0.9967833931070906 0.03568468702823421 -0.4570938974721754 -0.8891267751684072 0.02277600870049867 0.4570938974721754 0.8891267751684072 -0.02277600870049867 -0.07186207300492192 -0.4636242428793894 0.8831129055097929 0.07186207300492192 0.4636242428793894 -0.8831129055097929 -0.4572184704652873 0.4213675234050111 -0.7831990043947393 0.4572184704652873 -0.4213675234050111 0.7831990043947393 -0.07284731910756336 0.9966994105687711 -0.03582670890139447 0.07284731910756336 -0.9966994105687711 0.03582670890139447 -0.07295841153948711 -0.4634759310171773 0.8831008614837808 0.07295841153948711 0.4634759310171773 -0.8831008614837808</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1000\" source=\"#ID344\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID342\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID345\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"2470\">-2.661799060038712 0.5143268679627622 -2.305498782632804 0.7612421416708729 -2.382152232341637 0.8114993214080721 -1.041160221479432 1.808590267548293 -0.7402787510683859 2.096312634686256 -1.10929632536876 1.865939697634436 2.972256478969288 -4.376182215124748 3.770492703260866 -4.471450631513128 4.117109534675268 -4.221737622712427 -2.388085444237092 0.8134970265397964 -2.741971876010438 0.5644427639446815 -2.64317861492822 0.5288504886875456 -0.8199817364353834 1.712364972440952 -0.4647338457287636 1.921831414400039 -0.5108777407253806 1.994641913414265 3.590480138856723 -4.394738788375328 4.008359773378214 -4.223632152308475 4.159072087260633 -3.60131408385592 2.944593614898622 -4.289383837459042 4.089733578634366 -4.1362612050151 3.720629425418393 -3.737994030932695 2.918110384210961 -4.566913844047221 3.577025552436587 -4.858740273202045 3.715949880857402 -4.664217122611951 -3.63466691595626 -1.375454603305033 -3.778377344265582 -1.567813990875131 -3.532893088158519 -1.405402268119589 2.016960844485938 -3.372595413195628 2.505112526826225 -2.980634682784841 2.166877960838995 -3.20534782375026 3.161264493954209 -2.789679773232189 2.90664991550928 -2.831647031589939 2.177397347012687 2.237394119727016 2.426208068189768 2.382798047632238 2.158320842907479 2.317355631430848 3.263520854441227 -3.993286695212771 3.619577955234709 -4.398837879978945 4.186501325658662 -3.604674619844945 4.118628753531486 -4.214430668958741 4.393196497476434 -4.169263296937372 4.264289486993383 -3.591368647410786 1.088541638290198 -2.918995386648729 1.338783932921017 -3.066679041718678 2.141709561156012 -2.539653586511744 3.043585516181242 -4.434309064416466 3.752219223354113 -4.925163319361463 3.705354160579695 -4.722111991503434 -4.647535569853533 -0.6416093864536248 -4.87356633634843 -0.8206456622006494 -4.720195001665112 -0.838111930340065 5.591129172591309 -4.47290649595115 5.700563982511904 -4.661067300428671 5.976463061569919 -4.01551000878934 0.733154928316176 3.383342872493777 0.7020392817537015 3.483545504538939 0.4940113330114128 3.302791294675418 2.134980860030076 -2.543645943407094 3.07355461487074 -2.178877951918392 2.984341750436177 -1.945595238278266 4.353781662995391 -3.563669890075839 4.486729766309145 -4.140997679661525 4.715175540128614 -4.237778325771608 5.39894081999101 -2.780519209470858 6.205863006664616 -3.061082790207338 6.229541255743985 -2.815692720273948 3.243896960758899 -4.281959803351813 4.226158437872415 -5.067116002014613 3.95954576161025 -4.766474747050036 -5.362925845386348 -4.061579228975656 -5.444027986460442 -4.257840651882353 -5.20917675816532 -4.076852570570276 -3.302965120206075 -5.295307391122558 -3.503674895768212 -5.500147149562402 -3.414236209071933 -5.48280054980703 7.060600724299492 -1.127963471288239 7.357365789459331 -1.181805828420435 7.153708221003003 -1.055334577185998 -5.546105656382263 -2.541558169230477 -6.376601944710836 -2.548300528389567 -6.376055494793524 -2.791910837103957 5.579123822736869 -2.942901892769273 6.001290330568972 -3.594786402053359 6.292020490288079 -3.896997050653707 -5.410310060843501 -1.264541462392171 -5.639737196896117 -0.3708988937511936 -6.445697115556035 -0.5327398872694064 -5.548733127301645 -0.4984393686878871 -6.402386873826202 0.3474497948727556 -6.378040758730448 -0.5490869415448467 5.436007331621839 -2.753141288256818 5.589949262777724 -3.009778769479917 6.249443067828077 -3.021812954622691 2.733685449622757 -4.60808068335111 3.550020822014475 -5.480747652159369 3.685386022701926 -5.416193428280835 -3.150145197377329 -5.815183648067049 -3.23901928547867 -5.834241632626324 -3.214384247080245 -6.200299681307078 7.077515231345002 -1.077833697990142 7.255757232167886 -1.180810893730796 7.37374899284945 -1.133457200799908 -5.64053701285209 -2.362387587081174 -6.473061319915687 -2.607393325339736 -5.813898093729755 -2.627781693529012 -5.571323704244727 -0.4508006085162343 -5.590385402988608 0.4192953775659653 -6.420823099055467 0.4090219793829775 -4.1449948999066 -0.3925930562476963 -6.412003022809788 0.3723260551637551 -6.402434335445965 -0.5259414841779818 -5.571948609914557 -0.5184370324832719 7.511011023866709 -2.787130807200926 7.386028045278803 -2.821643815884106 7.79264834779636 -3.094623924357429 4.528469987559812 -3.533326890439096 5.16365295085847 -4.520813777264999 5.288427740176394 -4.450421141627921 -5.37737609444318 -1.393369944667684 -6.43794403232774 -0.6842351375800343 -6.177999987344328 -1.570835269398446 -4.06048470052598 -0.8115314550383995 -5.627977588762684 -0.09354875387037062 -5.468981652152383 -0.9966139960495889 -5.698594924431132 0.04705198934153895 -6.523407502400124 -0.04000140227339736 -5.604833719540404 -0.8427021686719978 3.397833450122788 1.436453299966811 3.0682720466757 0.4699448618913633 3.120099824776935 -0.2576073983579654 2.698888249206223 2.153148196856395 2.746116622930116 1.15315754419546 2.182281272233411 1.731316065892566 1.762515223752795 2.675938097440283 1.426866649410332 2.153052203845308 0.6739441528367607 2.964104390912614 0.5470052852914087 2.380889252754579 -0.4762730165452944 2.975353590359535 -0.379127025517807 2.394587160073535 -1.269257263899759 2.192925190064263 -1.579665433403898 2.725371249155675 -2.044294447642872 1.793827010075304 -2.540424688596996 2.230643059343542 -2.635383615910281 1.232752438402079 -3.273119380180543 1.535119347208355 -2.989941374167471 0.5595534147310203 -3.076513428396748 -0.1659543789840967 3.797178894091073 0.589535539530324 3.584954115964931 -1.189073698497411 3.86146279790015 -0.3123520279787206 3.002871332391609 -1.96190235463934 2.897061565363328 -0.9648552907429856 2.135972779385058 -2.5645770483233 2.418887774560047 -1.588964928439499 1.728132329397168 -2.074478232231995 1.100337098236535 -2.939288573049616 0.8861221859959634 -2.378246195955483 -0.0462380938019025 -3.05896025402176 -0.03227092295787773 -2.473295078857695 -0.9454591957336178 -2.351161398673499 -1.178273536083925 -2.907562735203924 -1.772319464308227 -2.022702851046091 -2.203293041006291 -2.500402028373014 -2.439402056737099 -1.517112239780935 -3.030200242278591 -1.873660853038731 -2.887398122901175 -0.8793125957286936 -3.595833115298375 -1.078161158264579 -3.710588442244218 0.7070679054892642 -3.819964906568851 -0.198740607318797 5.603135835129864 -3.288385875698955 6.810870890825931 -4.291665963233803 6.262701037578077 -3.297688588377309 3.401754136409783 -5.385730003367606 4.499503752106183 -6.170792077931217 3.537805570138652 -5.322074800046389 -2.456301864786447 -5.979189118527012 -2.487130147304622 -6.36684873423582 -2.402367420971701 -6.32348935043586 -6.510171301073201 -2.96837143036549 -7.11732698224412 -3.953428325490446 -5.851137594154357 -2.991204346202717 -5.60265637794168 -0.5278164021063335 -6.465043856691065 0.3240294976779706 -6.431600829084085 -0.5856926335526124 -4.209404235825325 0.3044258401130099 -5.633236098381424 0.2161519211681857 -4.153220584432583 -0.5919371519429612 -4.215291073560992 -0.5744977462204292 -4.263529414155157 0.3221991449134441 -5.686973105331986 0.2076154673473941 -5.65143262943119 0.3334005600536639 -6.481253406832044 0.2821448753630127 -5.629668278170908 -0.6018165566198391 7.289855802678771 -2.825890216437976 7.611421202677152 -3.106627870969063 7.70924221545971 -3.086643914958204 5.18297450631685 -4.530079671339261 5.895028297840041 -5.457121340977217 5.307646526988149 -4.459574441591602 5.332209067274681 -1.615896687539317 6.143014995752494 -1.761979428609921 5.629008267869499 -0.7463477273334715 4.036035568395636 -0.9993909140033963 5.449746623983231 -1.157975509815105 4.221778863882256 -0.1138895382488578 -3.997216344816255 -1.156592358935419 -4.250909299071609 -0.2815645921801652 -5.638210010572456 -0.5486783925207119 -4.161558112449938 -0.6357893580252552 -5.649991922666122 0.162673834209167 -5.584920386969356 -0.7286636150463668 5.494720606752197 0.2501486147772298 6.275923150491728 -0.65523344044532 6.325862417864055 0.2471940347496744 5.493856655715302 0.366706868280492 6.307487637225778 -0.5247153149898205 6.324667251178918 0.3785027462624838 6.335973878144486 0.4200649213385262 5.505412349689225 0.4046323204088624 6.330840177740377 -0.4832391865050514 6.354965736662829 0.4299973635642851 5.524514761868456 0.413796645671067 6.355104265392128 -0.4667206081220865 6.348686999878188 0.4271997584595754 5.518228264842925 0.4008358708994737 6.348532651289016 -0.4826861760209525 6.405593025417301 0.3823184502673627 5.575015698521129 0.3688125470936636 6.402526849244486 -0.514599815300171 5.580948395643242 0.4157367094855328 6.402189221181026 -0.5113951445993928 6.411353286003433 0.4000658934411254 5.626549839694851 0.2839681310038151 6.428226229766665 -0.6163174962283112 6.457616882721426 0.2866889367729694 5.679613144525984 0.09802792271163478 6.425760748703323 -0.8323530921485491 6.504640036469908 0.06882814165186642 5.638390409749905 -0.3908745494751295 6.259225536954721 -1.368874127389776 6.462225544659513 -0.479789751691096 -6.409194594973165 0.4107466294511674 -6.405189489514616 -0.4925506539050644 -5.574851926507346 -0.4467662664155951 -6.3822125066093 0.4234890959370029 -6.382694340672956 -0.479815042264443 -5.552194299191942 -0.4361777819642201 -6.357692766381553 0.4191095339513883 -6.358135509214947 -0.4841960030603822 -5.527660594977107 -0.4414161723271314 -6.337686374565175 0.3978657857529473 -6.333509171185731 -0.5054400229986481 -5.503241243690558 -0.4621172308995953 -5.479788392845236 -0.5041294043719613 -6.324676198831939 0.3526571860783325 -6.309573809879248 -0.5505412985441708 1.745957532312295 2.657713232886528 2.682327380740597 2.134919811093426 2.727282558497929 2.374467822102313 -5.455101643277436 -0.57908685677795 -6.324274572841182 0.2666680609225586 -6.28355707143229 -0.6362917545517316 0.6652336964723358 2.943428855169668 1.753803744658647 2.655260171310598 0.8867903543797634 3.118978236478919 -5.290951497203457 -1.319381353096898 -6.327435422916969 -0.5524335438192431 -6.107009504749997 -1.440571652735586 5.762356183245927 -3.083708496260667 6.572423246359725 -4.03807808733024 7.047109981082493 -4.025925235254194 3.610847825014008 -5.236842748222333 4.559405230702663 -6.109249604868882 4.719319310056894 -6.012525550950048 -1.964009241795349 -6.507755706175733 -2.046393508680486 -6.553864915925065 -1.635076611744317 -7.643805512306598 -5.495336325949821 -3.347602026111755 -6.684777216062551 -4.368633898008876 -6.226933058893753 -4.35715210192923 -5.604000275338401 0.3645158178360241 -5.59045265464766 -0.5707972914437972 -4.164155400215128 -0.4808138035478431 7.684874037027289 -2.989922987339559 7.58708621916952 -3.010007229700875 8.498994210341262 -3.863426396329256 5.143033007068749 -4.539180625640339 5.717787806425276 -5.541268897230905 5.860507161178415 -5.472263804657364 4.192676241827535 0.04192978539679174 5.490996361882291 -0.9480844056190318 5.615427661959771 -0.05307178236898648 -5.462209449669895 -0.8043086080673315 -5.545667306279297 0.1291291351249389 -6.371687425542625 0.05659531610126218 5.523758680554177 -0.4338833848854653 6.354207285310459 -0.4112716340542739 5.523565805979221 0.4664539955697984 5.536572228151663 -0.4226032985896472 6.366920291787105 -0.4012123226992183 5.53167411224067 0.4777514955588634 5.547326545969745 0.4777114329058925 5.554125450147815 -0.4226259836262465 6.384470114428415 -0.403345774636922 5.559616742817855 0.4536184898915917 5.564444714190893 -0.4525417513668846 6.394798530817934 -0.4242064713489063 5.880914549031902 -2.06864522518943 6.734858187658725 -2.229716846200112 6.706382990873093 -1.992428992817538 5.594342931635121 0.4536484752102395 5.59609063437345 -0.441977094805049 6.426673737565221 -0.4286928413741457 5.554394599787321 0.3625400882458029 5.552652560288326 -0.5062900454127818 6.383108753397958 -0.5201741029379436 4.127093708298099 0.349085374462541 5.780362907360219 2.088063182125595 6.60870069498146 2.039406599150892 6.630766041321724 2.290072167503032 5.652179197504132 0.4063675696246454 5.630277932583336 -0.5294891830228586 6.461347556712913 -0.5273102266094472 5.689181062059775 0.241125792540077 5.646284167170914 -0.6502602675244906 6.471783918825218 -0.6694862709089748 5.604943682381954 -0.8548758041057144 6.435385846454905 -0.8886697541752605 5.705258546267622 0.04954383269713061 -5.625878457091545 0.4128913173724724 -6.456279603494737 0.3681045028935301 -5.61868898488491 -0.4874466767329562 -5.597398384708466 0.4398433145490905 -6.428081916010963 0.3996480928002333 -5.598883524092275 -0.4605082447537164 -5.571119059021333 0.4515076979844473 -6.401896102512689 0.4147173528205499 -5.576957820490299 -0.4488343226107577 -5.548918425932076 0.4519197748685152 -6.379668149979191 0.417815089717694 -5.555720079221102 -0.4484087783848311 -6.476678532968182 2.647031326878516 -6.475752441667305 2.404888014658125 -5.644588786272323 2.432043406180553 -5.532783473477472 0.4443536015118346 -6.363430823466654 0.4123864931825314 -5.537898422956329 -0.4559979435743079 2.254016958954333 3.634765079931456 3.232240892558104 3.344958568234572 2.52699327365733 4.053668724156345 -5.513894893397796 0.3670495865317552 -6.344343569199598 0.3621523079421049 -5.499906396557383 -0.4989705720211488 6.349136616735253 2.738226221440089 5.520765150887098 2.493018469052865 6.351232608300514 2.490855442909809 1.697980286874242 3.981481675466966 2.558079519991281 3.509863443645249 2.83617451174444 3.92667842082563 7.05576917080125 -3.869350706402243 6.581129811636943 -3.882599263004092 7.662203559623302 -4.913533654818638 4.699553073210266 -6.171834810212214 5.781796714671636 -6.755173925272217 4.858615578581932 -6.074245668090698 -3.154857143866117 -6.287097760729689 -3.004235976416077 -7.446203671646552 -2.923013648991004 -7.410697797244424 -6.238904897399809 -4.261501314141265 -6.696771126747163 -4.272424854255496 -7.233100912016699 -5.2780072099835 -4.172281427259849 0.4236948597737338 -5.599138070426414 0.3723794843949643 -4.160046578622444 -0.4737436785604704 7.688724458774837 -2.997587991844135 8.493484725290733 -3.878498459511783 8.583971388279348 -3.861854811376837 5.630635840262678 -5.49305586462806 6.194793007120643 -6.435297706577472 5.773769347551276 -5.42458368153758 4.149493655589789 -0.666422043308793 5.576712249359321 -0.7002834793214141 5.637463441909986 0.2063136648478206 -2.752395262503766 -2.388220319902878 -4.557148381589244 -2.4438330958985 -3.791997104759317 -3.160289595899267 4.080557974305158 0.3597441476089266 5.479408896688173 -0.5431689211380512 5.508185884087253 0.3568838258145871 4.078734300599257 0.4094231397152907 5.49610738001893 -0.4792775997923502 5.506171941511711 0.4210506271797914 5.512567720610957 0.4401719054329141 4.0852749331553 0.4248645746183525 5.509503751461832 -0.460178170981151 5.523701160329052 0.4353960044653995 4.096473844284713 0.4192446804514229 5.523730938822248 -0.4707721957735811 -3.966759717564554 0.6230881827453207 -3.797079964430929 -0.1886666454908832 -3.68214331192589 0.7048003957772115 5.914682744017741 -1.996607342708859 6.117129859104871 -2.221333120763166 6.770678563460123 -2.150790600524764 5.551529312835765 0.4495228068059489 4.124268810346557 0.4384218376475834 5.55221507049154 -0.4461036560030883 4.137603457175834 0.4528163016298624 4.138560890324671 -0.4446638803693676 5.565864599723549 -0.4313945211553699 4.213980714084771 0.4205838582382181 4.205959402934985 -0.4768728165044885 5.634227758319667 -0.4402423970654657 -3.875394710153257 -1.003386691537358 -3.568804610354984 -1.073847359963925 -3.798495665402174 -0.1820849155691501 5.916121464420085 1.806762106662963 6.776703735835856 1.98005265820314 6.123994606683545 2.05525332117598 5.585205845377178 -0.4925639279401325 4.169597344998032 0.4024386876104048 4.15762018592527 -0.4950097606756016 5.597675479733299 0.443399893764163 4.156617820371098 0.3621291455754826 5.572485063851977 -0.5270898869408937 5.584202678227232 0.3648870756734438 -5.55421954180395 0.4325579296179262 -5.552090815762549 -0.4677962709606923 -4.124925005749004 -0.4221101842327787 -5.538576477063474 0.4352706727699609 -5.538876324918283 -0.4650816136418131 -4.111622469373085 -0.4214203977710727 -5.52426233743118 0.4295055149755776 -5.52435757429008 -0.4708482185904604 -4.097125150651432 -0.4279153426255751 -5.512878698675422 0.4153870811823178 -5.51008541062717 -0.4849546898017661 -4.082981753191275 -0.4413168658447663 -5.803781728166912 2.695243922016638 -6.463048840774564 2.677056089199609 -5.631193550035248 2.461507415414935 -4.069649252612988 -0.4640573414130001 -5.505886766735717 0.3892222330192646 -5.496456165566158 -0.5111077385403589 3.395628482009644 4.365034469375767 4.067083141014313 3.636295497457961 3.834919411783258 4.229177482280971 -4.056840720569126 -0.4789649353516526 -5.506608144241801 0.3286859050130154 -5.482838903136125 -0.5372022959242325 5.472318711552627 2.507915073080861 6.28695098665998 2.780121525531526 5.627346059598288 2.772713745747252 1.77785141209766 4.72216774587029 2.915784678967103 4.664107656039868 2.539091054934751 4.89062216698243 6.619178588444171 -3.828609251683794 7.310729392674782 -4.86625049600592 7.719439946235701 -4.846904017109719 4.932253880902296 -5.959704110981211 5.850334017365131 -6.675404868943827 6.022785877259992 -6.533411281220287 -2.438202460806775 -7.566816113078535 -2.517246359618165 -7.605244271636148 -2.225179099355021 -8.573899165916442 -6.147305757602014 -4.334075845317214 -7.127119524533855 -5.359187381576786 -6.717869201020857 -5.349149792973891 8.588931033037188 -3.936947027258597 8.498392206892227 -3.953414187342754 9.271520465878172 -4.829384250182987 5.390870613633427 -5.57345836591487 5.785867199317528 -6.590653648012299 6.001688404292493 -6.520400303231552 4.179845061663457 0.3098219691396784 4.137508093891616 -0.6053915677220051 5.612246399584024 0.2811336414350372 -4.137244533226672 -0.3906263536147895 -4.109915944167414 0.5066086495387171 -5.538764975333309 0.4681121719386963 -4.093491571230447 0.4281509816797937 -5.520719793072696 0.4014243121698805 -4.093491571230447 -0.4693098312026066 4.095955679305225 0.4666987771532346 4.095370697688034 -0.4307901038188899 5.522613030223019 -0.4088759348981764 4.103119696156001 -0.4247646836698221 5.530293461700541 -0.4036800185450093 4.100600948168641 0.4727237170128614 4.109778224059697 0.4720632539261433 4.113528349182373 -0.4254116217219571 5.540696074459932 -0.4062771507909478 4.131128445010857 0.4687326012540565 4.135579146547521 -0.4287439876988017 5.562829411054837 -0.4168563095352443 -6.57558798965443 -0.4291223668602024 -5.949686005033862 -0.4066665999772727 -6.106218164610338 0.4067214157437564 6.906160533801982 -0.6164503317486078 8.588008637681035 -1.014951336896927 7.484402007252639 -0.3666865768634973 -6.594235457051168 -0.1072712048355581 -6.038886626027283 -0.9065050245338635 -5.968331417790047 -0.08485090619073749 6.094257506179066 -2.609111482345269 6.38760915225589 -3.073919155086647 7.785043341838376 -3.027241022869439 4.158247094811467 -0.515202285144675 5.590918326588575 -0.533762702622409 4.182569284383959 0.3628143594684092 -4.154959419916142 0.4418540299037406 -5.582161926964881 0.3971661449070394 -4.151049002528265 -0.4556168108391424 -4.138039279917377 0.4497783237258486 -5.565399234233393 0.4095546653307514 -4.138993010500824 -0.4477007573165332 -4.122737751398939 0.4504695718699686 -5.550147546112627 0.4135444010196748 -4.126058856890215 -0.4470074540046948 -4.110066034056458 0.4463155858593719 -5.537457493840162 0.4119462391451804 -4.11381972194354 -0.4511845102803854 -7.084231717134023 3.932564416781103 -6.487814456845412 2.963892194643452 -5.828619448587592 2.983631213287548 -4.100749980947755 0.4387628393962917 -5.52807408050241 0.4063539597087571 -4.103273851978412 -0.4587102997819708 4.427237314102075 4.211817097101426 4.633612095804903 3.613061858163787 4.717344599847353 4.192502098342859 0.2782028819448612 -1.450158226014998 0.6921164850603934 -1.628641759935543 0.3206106848921589 -1.391178060408406 6.848525411149121 4.203593104396327 5.634213361410922 3.188008916534419 6.293848033120097 3.193539879314641 -2.299859201895115 0.0619301615705932 -1.948271184522626 -0.1883172081444611 -1.891328164057275 -0.1374743576887198 1.568678405240158 5.068661018134691 2.326785986090503 5.245640623360807 2.155429516005429 5.433102250304442 7.732827786625975 -4.70339119690072 7.324212926387032 -4.723950566267607 8.319111193875182 -5.609547578366657 5.538615148466631 -6.572469865395896 5.953360540920912 -6.578961989440483 5.713279785731879 -6.432160030464202 -2.330512122076828 -7.585630805526254 -2.104055885263323 -8.590898403140145 -2.028798512837025 -8.548366861161911 -6.72869513150474 -5.250866900269577 -7.137958890888548 -5.260559550807522 -7.608945487818658 -6.255703576101399 8.496674351625121 -3.951322323121277 9.179300321773068 -4.839084543618871 9.27065934491648 -4.826824061750197 5.650766369438735 -6.458977061674541 5.741440448300319 -6.687316064812344 5.867141115348349 -6.389785434634255 -6.656295097298122 -0.05912841987920928 -6.586162527374134 -0.4246975448627076 -6.116633110672703 0.4110907662336733 -4.81651597652847 -3.918431791851718 -6.154981253152326 -4.374781149297583 -6.224683474972785 -4.744352959566725 -7.718550954367429 0.477881345093763 -6.339258681834792 0.6682309068354281 -7.714038473572953 0.6023579286995218 -6.610675455021291 -0.467456379308435 -6.019037035461805 -0.8972475817193066 -6.574245482658096 -0.09795340618191402 -7.624303380680911 -0.9476220364064913 -7.617857677143023 -1.06830930505799 -6.219167844454492 -1.070784404659 -6.909048470343557 -0.0813386710929849 -8.650674722245444 -0.3398743600165811 -8.259673190808709 -0.551958884871283 -6.715952600713422 4.289071664462673 -5.523929073475165 3.290676722131466 -6.262729427223396 4.280205518061553 3.463533200456307 4.110800280381099 4.069298934555739 5.075875895797951 3.937843837902142 5.147301601424823 5.102250521171852 3.458752088073406 5.450196430193508 4.151242919036542 5.209205622771145 4.035822782958834 4.099195002689461 1.148160626873494 4.389280951963332 1.1286483224619 4.095337276055221 1.204356443781205 2.351942138015295 1.100568588629236 2.769151279432363 0.9159566178321216 2.771021747791493 0.9722150784720091 2.195182696189024 4.692738226224547 3.069583945778339 5.566693212579978 2.935863018679035 5.626067172882261 6.54043165342027 4.011409472370985 5.735592185692652 3.036957278107067 7.015206002807851 4.001647704310436 -0.6317786240502441 2.516375579235664 -0.201766641564953 2.347215580046476 -0.5745818156162452 2.549565507132114 -1.605305603904998 3.543518012266425 -1.400727010858305 3.377949627684427 -1.343223786508591 3.410810264610257 1.807530471990459 4.915030062690574 2.402231215159181 5.271407892927533 2.41298121115136 5.483652071981339 7.295398628059252 -4.757193145759694 7.898642013392817 -5.666257972030044 8.280825905442994 -5.649319198347968 5.529399941378703 -6.811400320934341 5.833464914441211 -7.051644702807992 5.944142243046866 -6.818013508429276 -1.736609375029659 -8.599979835830487 -1.810456390209519 -8.644014698631873 -1.697471362572419 -8.866096477070775 -6.785103664943274 -5.211197734496072 -7.672080099481478 -6.212367473911156 -7.289404194507263 -6.205034285805037 9.271905004153444 -4.866476039442853 9.180531261399484 -4.878668450017517 9.400274494745993 -5.083337609184246 6.154288376155829 -6.665795398995026 6.467954122720688 -6.67559446441701 6.272982820837651 -6.366489343458639 -7.300822201226315 0.4995800430167435 -7.157860533619931 0.3007726256670714 -6.61782679821126 0.7707276170720391 2.4673256467482 0.9193765930242428 2.414069527238531 0.5491065533840862 2.513799392591445 0.5514798227418101 4.05665024727122 -5.593268903064636 4.516995633749293 -6.879723111970071 4.497717665920813 -5.731831628612675 -7.379442888224687 -1.044659418331918 -6.924392869678563 -1.04217891225324 -6.004154607457918 -0.8371542672269368 -8.968287821898736 0.2934255125263521 -7.542023281758183 0.4771849648315717 -7.537423955761589 0.6016595813773412 2.557945762132749 -0.6005614891247557 2.458215345371251 -0.6029203753848054 2.534015244132297 -0.9706957197685954 -6.99273692576547 -0.9065747945953878 -6.293570957011183 -1.129650712023979 -6.885079482756589 -0.6997488815661535 -7.63261541801149 -1.0054346037006 -6.227488975147699 -1.128661156671277 -7.154016454095761 -1.004976464628402 -8.922697736279979 -0.9064193612649891 -7.547280308312806 -1.067918414717907 -7.553775809653298 -0.9472327983245749 -3.98597483593536 5.652457902991198 -3.905101183939973 6.020618958475664 -5.05305560476592 6.622148164113315 -7.27772491667968 5.206817501283571 -6.72868968733474 4.136058323286965 -6.275449585183051 4.127744945274094 3.129344250468945 4.228303088262042 3.573350367991242 5.273079094114264 3.354175750142323 4.951616781581719 3.772065297827613 5.060605702879127 3.90441428202094 4.990208963003467 4.269826941252457 6.128012269342688 6.943140012061708 2.225444299620932 6.655360169729002 2.163960619423023 6.702412297663996 2.1096849018762 3.500449096548218 -0.3224776095588098 3.789307562308364 -0.4094590512181034 3.765924924014517 -0.3463911266747499 2.73421192946776 4.403165535243263 3.38025674050513 4.943435513391906 3.64298411173188 5.25514485092069 2.877940667869294 5.585437524330192 3.011909711981109 5.52641071277909 3.774958042568282 6.421429065416803 7.609975503683925 4.890018825072455 6.543176739322377 3.920145912335438 7.017936891579413 3.909965806713123 -2.844537059602854 2.008309631066081 -2.586835986024328 1.870394885037136 -2.761677657248522 2.029500599706688 -4.008092862297267 4.777051305618736 -3.918084073209415 4.576787760213856 -3.835270694369624 4.598089772890178 8.282079997379809 -5.637824583607729 7.899901978429571 -5.654845163920292 8.467885565626732 -5.943713672615953 5.932658345836569 -7.048441644263794 6.207313497316516 -6.865170711259076 6.042017955053143 -6.814426757901017 -0.7708877180182611 -8.67837023956853 -0.7033889763933321 -8.94094689105154 -0.654931246901786 -8.87572412908016 -7.29247008265804 -6.16825830814427 -7.675148319401016 -6.175515803589196 -7.828473878628092 -6.498814991450156 9.163513299032058 -4.884771330406955 9.288607905876326 -5.078632244589382 9.383696738578189 -5.089147503819769 6.156160333179555 -6.85925835793994 6.463426586427903 -6.72963564814617 6.149763548693514 -6.719783069680686 -7.342427430768073 0.2680930777047664 -7.099418415463823 0.185251862407488 -6.416444883919922 0.4564335272708737 -0.9387513316986113 3.177981314570622 -0.9486586336982406 2.928653260658535 -0.8733676025194243 2.955435193762439 0.1623900218977226 1.096942491253779 0.2049310777999552 0.7494616287782674 0.2390899787757239 1.121124098115781 2.561736891303922 -6.107532364065592 2.351259293116423 -7.267382833582784 2.697162291991673 -7.439733174679802 -8.930165451960262 0.295333508518245 -8.914208763313722 0.1371312959481615 -7.483393821633138 0.4455058785349199 -6.95826376736089 3.067299847819562 -6.977197707339149 3.142543371988218 -7.432231818739337 3.138655979150429 -8.076504999067801 1.942273857748956 -8.129971552498796 2.009779509810612 -9.538039950976902 1.753491054251887 1.514655812151018 -0.7334080930896799 1.495417258704747 -1.082469132367868 1.586050509773324 -1.101728573334035 0.9056622836245004 -3.026816851248352 0.9386843079517104 -2.804837975377466 0.848532342347732 -2.78422799511566 -7.107027252437868 -0.7876375390194846 -6.180492195800953 -0.9112870973468583 -6.87969655198374 -0.6882856501199133 -7.128542655161807 -3.081103406424559 -7.625633710012609 -3.157201018721693 -7.147035477462651 -3.156399070821825 -7.67646206602808 -2.797370727957003 -9.085934916881605 -2.809746725564581 -7.718161150097957 -2.869832060215034 -8.908472463734093 -0.9456976228573982 -7.529679053645937 -0.9754095865071504 -8.90510072222548 -0.8139328844854772 -5.881338388599651 4.50406112808743 -7.253841230344557 5.1963013655474 -7.210690829545285 4.875994604011638 -7.193159703222822 5.269845207239835 -6.201636592931429 4.184642820135692 -6.783802307654304 5.26301819230866 4.462075121711869 4.808897275595138 5.053724850986439 5.865516110681777 4.873549189960155 5.93692711853209 7.561292571124231 3.105880725196114 7.19840840418086 2.838397488863771 7.292904795002277 2.808409441747124 8.1446895956849 4.306100996550779 7.33108804176471 3.332484017562069 7.430419082646078 3.317686977760138 6.976466929022937 1.872974094695157 6.78298815180057 1.772553044467654 7.068893513549147 1.839229311548257 -3.375200879283819 5.745125750166509 -3.431496126799863 6.131233491670329 -3.45919853437108 5.75786510951576 -2.955184331484319 6.221493854929197 -2.872356450278772 7.328422963449643 -3.044170914533516 6.259261082509404 3.025786591428482 5.50585552532548 3.931373325290601 6.336109984127391 3.791337376614206 6.408479467987543 7.238755424174864 4.860237867715482 6.567221837176867 3.884141568478665 7.647720248807206 4.84458354354674 -3.854266820333741 4.863838823179988 -3.683295487647069 4.683780487940838 -3.769795641590861 4.853212271834425 7.967133376560895 -5.610343800351751 8.197397358396524 -5.907933248492452 8.540483215386344 -5.892575601653754 5.80543341433306 -7.001506192640144 6.197624860810667 -6.97081610700894 6.081375034645086 -6.819435075955772 2.694052004896493 -8.635718625076724 2.672106037527454 -8.709265195113094 2.8140929380626 -8.79297493691973 -7.172208132465931 -6.266624957468202 -7.704084751759124 -6.601281756698698 -7.360840524520197 -6.588309894264103 9.263260326210883 -5.103814835884413 9.405523130976883 -5.249161905572431 9.358294433600234 -5.114631927304724 6.099371398642951 -6.823128462645105 6.241312786510573 -6.960253543023304 6.407080260315937 -6.694157141549344 -3.00608556832405 5.019451911661345 -2.940368701141873 5.082412968960504 -3.130554944520676 5.227407523900158 1.353517222041405 2.969811712864057 1.392768651892923 2.763381990809926 1.443907975064636 3.009566474741562 4.266942852427738 -6.615506992460908 4.716744199031261 -7.743148165624424 4.650737616699059 -6.727729441427135 -10.28668002886894 -0.0937828797595812 -9.055407814662802 0.1362472901876673 -9.071140312411432 0.2944633974503092 -3.608858147557148 4.770238110183211 -3.750680886215156 4.97120033830512 -3.773360530426287 4.896600557490119 -7.100705157999414 2.711278583091485 -7.576834581716011 2.773091943295637 -7.53289520959112 2.701458828563071 -8.17428369246934 1.941646553319781 -9.62934706237974 1.724115776184242 -9.577442512528513 1.663494001273091 -7.780241514356955 -0.1627572382919025 -7.925738781038671 -0.7049677603238156 -7.81789872000735 -0.5108880977619668 -0.4003858537230914 -3.128404622530123 -0.3271898303935311 -3.163058982880862 -0.3664504784439115 -2.918283023253877 -3.210576798330826 -4.677163784487616 -3.334860453426127 -4.865370207353467 -3.148104590430492 -4.723003393556979 -1.316512064019561 -5.240797323619147 -1.443959236100936 -5.377229732235214 -1.395218845609698 -5.443644561343438 -7.287339521616378 -2.718342435752688 -7.744361347278708 -2.709899126802834 -7.787263952156327 -2.781924358475356 -7.666572568824681 -2.976800579108238 -9.03710292577769 -2.925003092659073 -9.076011327401556 -2.99138269813291 -10.16170857392661 -0.6825958909967832 -8.851696614398072 -0.9458017672404062 -8.848305698669181 -0.8140373333688989 -0.6418995047070736 7.398626793913742 -0.3851475606342147 7.649532137868212 -1.040226995247436 8.578003799303744 -7.687594056897973 6.085286508094633 -7.200547990069486 5.143462673449845 -6.791185263749208 5.136836418696446 4.936590354621746 5.981307350482459 5.116453585483766 5.909410591143172 5.328590197088473 6.927864112478795 7.306308382958497 3.212871115809425 7.037176307619113 2.935283787564428 7.40562559675408 3.198016750009801 8.188880842524677 4.269016917995517 7.473686813896915 3.279455971915816 8.280426782920902 4.256599975095995 -3.080035187647084 5.826761646029444 -3.032336604943796 6.176772711451529 -3.121678174578922 6.214017685437319 -3.997509586052842 5.931604622387955 -3.978727878031649 7.010881474673525 -4.064391166869241 7.039200860234 3.73907649699957 6.378775164524912 3.87935099306713 6.306692144878103 4.716810930553826 7.113391170709449 8.224676172670373 5.705182593954473 7.244516300415924 4.759328148477268 7.653443140774132 4.743071349325396 8.246228042817288 -5.420226833230213 8.685476913952527 -5.517917613663904 8.589069989065436 -5.401804206253233 5.716535945349822 -6.99827792502101 5.829734031808918 -7.151083490739215 5.950380016897553 -6.888351573934867 5.938075065571109 -7.477345904830089 6.079310741766163 -7.560349740341263 6.329976887835218 -7.444445810242726 3.506912979032589 -8.46166022371338 3.642055186490267 -8.611141909815 3.648030716630628 -8.533174653926585 -7.415617247831406 -6.123164672229621 -7.758917757279447 -6.135179534202703 -7.838113406866619 -6.259107765244684 9.199320618261513 -5.189777088698508 9.242747120781061 -5.317344943838871 9.338938362228362 -5.336702837402881 6.20428809670488 -6.752999988327257 6.586311701542256 -6.745322910101302 6.441712748022574 -6.609927054303896 7.313221789611619 -6.849888355574418 7.521171262621915 -6.706452308652097 7.45901239198993 -6.576650445976441 4.791985438184079 -6.393448434642259 4.96101672126361 -7.410250837308657 5.327297900583988 -7.497732947390289 -10.24084246468124 -0.1040529529873537 -10.18786210624122 -0.2959617694932749 -8.973048322673785 0.09368805104582501 -9.791558687129761 0.9814944629179719 -9.849740241730554 1.038480174062652 -11.03574671084916 0.6911650590541538 -9.415230739134167 -2.222866846366144 -10.75659909304071 -2.068782967820127 -9.461761610005713 -2.286137886242992 -10.13482258713969 -0.6655093740248087 -8.789002283949557 -0.747684339765454 -10.09884371873968 -0.48395379180013 0.7062362991890919 7.398958754048512 0.5215751719474426 8.610576067740357 0.2420699431879769 8.404827397964192 -7.738195418593551 6.050153291287474 -6.837541269088914 5.104195416427717 -7.355456083926312 6.045252120048752 4.669626389314941 6.035463120990829 5.087364117575771 6.997668551183808 4.849663849320372 7.057734058926635 8.887757765929553 5.204713154954328 8.19978347435528 4.33905670336054 8.291339532033625 4.326686009564462 -3.706736949528631 7.154787763625316 -3.646455252176806 8.220131701559021 -3.791426498015353 7.184865016877708 4.017462302655394 6.193364490230405 5.007217863813386 6.917949964255357 4.832422322582662 7.039874860515124 7.815867115999467 5.747013697197486 7.225753052870662 4.782860808236814 8.198275477145513 5.733581468844197 8.255934873121877 -5.425000924755263 8.354061003959405 -5.553084446659128 8.695492439150057 -5.521828640662377 6.214707203613981 -7.128945943891515 6.448048886577796 -6.99394840958314 6.32941090754643 -6.864572112469428 8.221420654770943 -6.011596916810401 8.268057903211902 -6.080553301519491 8.46005302508858 -5.928526389953852 -7.400535590715782 0.8717983867746344 -7.710056807611661 1.143598374101608 -7.739636148797682 0.9160539968145308 -7.397728585105807 -6.149469981422893 -7.820072536121256 -6.285705449040004 -7.476335612334193 -6.285611833348003 8.889699937979515 -5.367090655374562 8.802036041508512 -5.579571116364043 8.983551949191488 -5.392582583260899 6.214109891629436 -6.929543324702434 6.331806366037938 -7.059450696779978 6.596129007660912 -6.921729238484499 -7.479397580784825 0.4238032242109914 -7.823134473615471 0.4236551229774854 -7.840906910557184 0.2065396890655799 5.03613177516775 -7.371151395670309 5.44714017930667 -7.793709156066238 5.403250354818505 -7.456433614001966 -10.18932270967896 -0.3660431812972971 -9.901968525166041 -0.2877602649081492 -9.956211444287531 -0.09606984461399371 -9.785553559477243 0.9997840159759621 -11.03088046238132 0.7124922133221913 -10.96888940766614 0.6583064165969161 -9.410114233620595 -2.228385051922737 -10.70081004544833 -2.014953416345824 -10.75176751996626 -2.075844082053425 -10.17781002545755 -0.4324686368727615 -9.919087785409818 -0.6709566358517062 -9.882478990765385 -0.4894789985166593 1.760118758233272 8.266274949732306 2.073456556903941 8.439249232768111 1.973086817548392 8.775162110542233 -7.895675249693724 6.35572890440783 -7.738632574130896 6.040031310379674 -7.355893051787491 6.035139217269675 4.698653201530358 6.866233768884938 4.936890879330538 6.807500633840543 4.755953259092024 7.10117505962285 8.789778937523959 5.215777509063605 8.193911464926989 4.342014878462916 8.881865056477553 5.207681510575066 -3.636679076312206 7.174520399546183 -3.485281170383963 8.205188246932353 -3.567023200653953 8.239510501697062 4.608467887856551 6.942351551755317 4.784623973985226 6.821644505099476 5.002730093696144 6.988347316600743 8.382336284135629 6.009072709059925 7.818517792135292 5.708527979604562 8.200915224598788 5.694904571137292 -7.300328622433423 0.3133705363867954 -7.610227136120761 0.5768796973943583 -7.640754077580986 0.3502904432559122 8.683624809932937 -5.213540875446535 8.520711222363763 -5.352586884343154 8.752295864988689 -5.257974310796413 -7.092818134246431 1.331112866636004 -7.045255851850174 1.56780133338496 -7.383512819161629 1.615486151864548 9.080826027969591 -4.769648828027862 9.155802633392856 -4.807249290353734 9.216058004429662 -4.588944696320829 -7.184763006546485 1.174210970859951 -7.527235853374553 1.196529730501106 -7.563888096290102 0.9487953516270735 -7.287457386560325 0.1498170140715543 -7.260875675639328 0.3771226435993637 -7.630302431797364 0.1682635791268916 3.685928652310532 -7.859516517881581 3.710282400354488 -8.207401766278244 4.021944197128372 -8.321277962077289 -10.62889198449577 -0.004829544958635267 -10.44103046175671 -0.2056412825270085 -10.20681813314493 0.06374166861326873 -11.00590139692624 0.3907337674933596 -11.06989655349128 0.4434580411120462 -11.33757060876102 0.3299332866368258 -10.88077384336795 -1.431837684361402 -11.21906661463155 -1.401026336483101 -10.93675582579856 -1.489933784228467 -10.5596395438532 -0.7878020949513485 -10.12317404566467 -0.8221614784880638 -10.3823927298437 -0.5840073204946437 -1.615834864721014 8.293094617417673 -1.611430049953948 8.828839023972686 -1.814730889983079 8.61089390575034 -7.797266256922559 6.442545277235023 -7.260221681247103 6.119122849391917 -7.453867248912717 6.432445277851455 5.220278369457862 7.120775325574897 5.393343910433234 6.824179257647212 5.53582304901841 7.144123675288182 8.997431426691051 5.445946787423706 8.792789899193275 5.231813030241208 8.884875029733228 5.223710077424811 -3.138175189433178 8.317365019032891 -3.142359261060369 8.585258492464037 -3.218528724881931 8.353659643728127 4.54585703049935 7.161736605889143 4.939970439093995 7.208514868594181 4.814130817532872 7.434740768529738 8.090778324723388 5.987275507851667 7.865836740895702 5.680391139333189 8.434102477119943 5.975707014455302 -7.282057632106239 0.3420229973445143 -7.24953389326128 0.5767685969397471 -7.591005943910796 0.6062217419930539 -7.160381284168206 1.173992512444623 -7.54050878292817 0.9496240426249764 -7.199326808919533 0.9181592597770775 5.914689599860319 -7.02337559921768 6.29919748455012 -7.216898010070527 6.249641386265783 -7.083776125206647 -10.68063472916411 -0.03014462824183809 -10.63789637362116 -0.3114805503609948 -10.49291382516479 -0.2310377280508252 -10.98767111651761 0.4919174817930945 -11.32050148029596 0.4351794222741164 -11.23691440893257 0.3979838735056778 -10.86032803082546 -1.479091414228765 -11.12090449503825 -1.406631697688325 -11.1989547701045 -1.450640802191977 -10.61528799819944 -0.760199929410775 -10.43811890949309 -0.5563633344249114 -10.59175004968914 -0.4865325643419837 5.168886315289541 7.365943063405671 5.496535504559187 7.447443103446951 5.532248318194387 7.583289295059242 -7.911031530225858 6.136667593078347 -7.830448785404514 6.01329483810173 -7.487027993879361 6.003664093610519 5.196321233049179 7.312074496055821 5.209522134444327 7.172888476327961 5.52505120131981 7.196367035854346 8.940196896659442 5.490580774524839 8.846094317593119 5.475450592245355 8.736560394668635 5.275854911380717 -2.300373506391011 8.476309098196238 -2.219830157215937 8.684287937402377 -2.279150689010646 8.74370209437417 4.920373935155845 7.438211336220197 5.044873738304256 7.211527141739645 5.201938026693515 7.276423649238595 8.554216058595706 5.609838941235937 8.117312848289828 5.50583931127758 8.460523032565412 5.492339300060463 5.794782989367736 -7.095646520287728 5.838978350849863 -7.241079413747425 6.176397673910426 -7.292681087399546 -11.32324141032872 -0.05684265905028527 -11.14133237321608 0.2182022158056376 -11.30737918634648 0.1715256504883076 -10.74131848652431 -0.3051059973261299 -10.51661884714693 -0.3111780448464778 -10.55983482506775 -0.02988727853457548 -11.33513745992419 -0.3186119544810304 -11.4677873213602 -0.4112938962804223 -11.24791499099993 -0.3502225672437868 -11.47568516644927 -0.3709429057436157 -11.33426853498595 -0.4552433648619497 -11.25043997430787 -0.4183930563986958 -10.74388029507606 -0.5088916691470116 -10.54454376524947 -0.7603525242860809 -10.52085334959071 -0.486693300899215 -11.27212812476224 -0.7479573568234509 -11.24399792535239 -0.9644057792185449 -11.0734791832724 -0.9997547129525994 4.978979388225893 7.45691012177773 5.337233013825129 7.679442414591668 5.006846435673423 7.604819984842863 -7.552507478035663 6.163501045937264 -7.896230321513499 6.161101792884907 -7.472314108315947 6.027926149526729 6.381417688566287 7.364138822885103 6.568033924868935 7.091055228351658 6.612442373854851 7.225289807666986 5.108519115953327 7.241921539249105 5.437859442009398 7.127293216737903 5.229994844828195 7.390708196312395 8.899210574551541 5.707140730405462 8.769964914876876 5.554447965853877 8.863857021041271 5.57036678242239 0.6017656373906116 8.849027341067513 0.6831017678459112 9.02094398084264 0.5630702990475844 8.918172808578168 4.84918506126741 7.404696269567971 5.131383779189833 7.243594294828876 5.225877649618224 7.404059473402316 4.852034509448656 7.891839684728685 5.228726971077487 7.891158075813983 4.980384828495451 7.986939090479169 8.219528150327255 5.64268143251085 8.124451070387782 5.513201857738595 8.561642221226299 5.616449946382111 7.477964839792466 -0.3164301919684322 7.820002119320475 -0.5629349420333912 7.82095570648282 -0.3342272036161624 -10.73223469003857 -0.09750802350088886 -10.51385019564315 -0.3178100812963506 -10.50753475833932 -0.1035733729477003 -11.26210337181495 -0.2232559555111391 -11.4828768075653 -0.2822812359787225 -11.38964063218413 -0.3091237266096786 -11.38820264429764 -0.4634149773922885 -11.47856677714294 -0.4958093755231466 -11.25267877158462 -0.5413292099811872 -10.70926736066075 -0.7241433480761172 -10.48624088283821 -0.7019420723149915 -10.51035120217984 -0.4674430017563528 7.844049478789012 0.1933800494995118 7.502764762946278 -0.0432567612130923 7.845644128403817 -0.02419302449264853 -7.479089971007023 -0.2255670009436816 -7.845559445012757 -0.001841097336704264 -7.822783260867139 -0.2298481961284706 5.251847388980799 7.175966403540889 5.480262055549751 7.059138797071849 5.604855525251153 7.206321351226547 8.776750423011515 5.835196226157819 8.682652265325375 5.810220989327786 8.651500581638176 5.680456463118566 1.485772983708301 8.791928779812089 1.608273387713923 8.882207753686709 1.584619933842702 8.958069629267971 4.708393688786927 7.404342806766388 4.976298403093658 7.299798120732598 4.799109858124441 7.566151518812774 -7.454962337104237 -0.6596704191253112 -7.793178801377531 -0.7079307177167631 -7.761536119210644 -0.924080850109646 7.271660093477241 -0.5028294652796737 7.269619430338604 -0.742481892834188 7.613136989127534 -0.7498145417369845 -10.92051144681378 -0.2102256539428505 -10.90482643731967 -0.43775430480715 -10.70221595034152 -0.4305822903290932 -11.27725068815328 -0.173088120066662 -11.28100018826619 -0.3873621256739218 -11.18280299208395 -0.1971672534214698 -11.2630806435167 -0.2184774645733396 -11.24894199331346 -0.4534792626938192 -11.15625228072694 -0.4254444442964471 -10.90845917228694 -0.3742419134110793 -10.90502832334284 -0.6236457186092163 -10.70584857138288 -0.3670718909140796 7.618644319240165 0.413273990567097 7.275205169583114 0.4039696451474449 7.278378418002919 0.1757309639274631 -7.319965044724375 0.02637050699736276 -7.662310025337017 0.002872670088507172 -7.287293167286048 -0.2119090496941094 5.205967696573508 7.371192744173923 5.558892750505161 7.402139770442199 5.304261758068236 7.510718828934936 8.037753861832558 6.122809874252642 8.127594706888372 6.156102077184638 7.943854768287891 6.314353166684216 7.273791869601489 6.668048104795911 7.539061909339335 6.588340650501213 7.310957907657844 6.740480419146932 5.165539756279554 7.582007533895836 5.336979005721872 7.313335759549505 5.436421504585031 7.452357326752184 -7.110207297837602 -1.240657627793926 -7.392083045804741 -1.521561313377225 -7.056068249124015 -1.464908348649675 7.305131176915099 0.2880279903068188 7.649873525010325 0.05285049253222032 7.648649290072918 0.2807114310127205 -10.86392768529901 -0.3402247460209299 -10.96094106120326 -0.5307952075667954 -10.87205009150995 -0.5292217281837912 -10.88594628879937 -0.04402942136596071 -10.97483706903287 -0.04560951047551233 -10.87046564296891 -0.2533508204590864 7.659150054302678 -0.2763464000623481 7.315970564608313 -0.5349705400006876 7.65941400470839 -0.5257647217229292 -7.172426749101089 -1.140875959246738 -7.55519119575834 -0.9454712612601799 -7.513933166500292 -1.170992836758235 8.459571746985008 5.397204563665892 8.593907679644593 5.240374159134416 8.530400067812826 5.439495416581214 7.787513651940996 5.987941707509287 7.84955355450045 6.038053002042353 7.59007991289359 6.128803043075938 -7.332300693067998 -0.2484377953323516 -7.671599965303634 -0.2912972040263326 -7.631753046015854 -0.5387552600929779 7.290719076346226 0.2755267402021296 7.291975651081154 0.03940138049878873 7.635489710447182 0.04037490460496442 7.636853380435862 -0.2578290348497467 7.293339314235867 -0.2588010655243426 7.293684783939276 -0.5164621196727895 -7.156160674413737 -1.141481673185987 -7.199692840819402 -0.9078650066005928 -7.539607897009619 -0.9469071451194763 -7.305606594538739 -0.293280564857082 -7.603196841502352 -0.5847805386810494 -7.262747511722701 -0.5487342049231557</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"1235\" source=\"#ID345\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID341\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID339\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID340\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"884\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 9 7 10 8 11 8 12 7 13 6 1 9 0 10 14 11 15 11 5 10 4 9 1 12 16 13 6 14 7 14 17 13 4 12 10 15 18 16 19 17 20 17 21 16 11 15 8 18 10 19 22 20 23 20 11 19 13 18 8 21 24 22 9 23 12 23 25 22 13 21 0 24 26 25 14 26 15 26 27 25 5 24 28 27 29 28 30 29 31 29 32 28 33 27 29 28 34 30 35 31 36 31 37 30 32 28 16 32 38 33 6 34 7 34 39 33 17 32 22 35 10 36 19 37 20 37 11 36 23 35 18 38 40 39 19 40 20 40 41 39 21 38 42 41 43 42 44 43 45 43 46 42 47 41 8 44 48 45 24 46 25 46 49 45 13 44 14 47 26 48 50 49 51 49 27 48 15 47 52 50 53 51 54 52 55 52 56 51 57 50 58 53 38 54 16 55 17 55 39 54 59 53 60 56 61 57 62 58 63 58 64 57 65 56 19 59 40 60 66 61 67 61 41 60 20 59 68 62 69 63 70 64 71 64 72 63 73 62 8 65 74 66 48 67 49 67 75 66 13 65 76 68 77 69 78 70 79 70 80 69 81 68 82 71 83 72 84 73 85 73 86 72 87 71 88 74 89 75 90 76 91 76 92 75 93 74 94 77 95 78 96 79 97 79 98 78 99 77 19 80 66 81 100 82 101 82 67 81 20 80 102 83 103 84 104 85 105 85 106 84 107 83 103 86 108 87 109 88 110 88 111 87 106 86 68 89 112 90 69 91 72 91 113 90 73 89 8 92 114 93 74 94 75 94 115 93 13 92 84 95 83 96 116 97 117 97 86 96 85 95 88 98 118 99 89 100 92 100 119 99 93 98 94 101 96 102 120 103 121 103 97 102 99 101 122 104 123 105 124 106 123 105 122 104 125 107 126 107 127 104 128 105 129 106 128 105 127 104 130 108 131 109 123 110 128 110 132 109 133 108 134 111 135 112 136 113 137 113 138 112 139 111 19 114 100 115 140 116 141 116 101 115 20 114 102 117 104 118 142 119 143 119 105 118 107 117 144 120 103 121 102 122 107 122 106 121 145 120 122 123 108 124 103 125 106 125 111 124 127 123 146 126 147 127 148 128 147 127 146 126 149 129 147 127 149 129 150 130 150 130 149 129 151 131 151 131 149 129 152 132 151 131 152 132 153 133 153 133 152 132 154 134 153 133 154 134 155 135 155 135 154 134 156 136 155 135 156 136 157 137 157 137 156 136 158 138 158 138 156 136 159 139 158 138 159 139 160 140 160 140 159 139 161 141 160 140 161 141 162 142 162 142 161 141 163 143 162 142 163 143 164 144 164 144 163 143 165 145 166 146 167 147 168 148 167 147 166 146 146 126 167 147 146 126 169 149 169 149 146 126 148 128 169 149 148 128 170 150 169 149 170 150 171 151 171 151 170 150 172 152 171 151 172 152 173 153 171 151 173 153 174 154 174 154 173 153 175 155 174 154 175 155 176 156 176 156 175 155 177 157 176 156 177 157 178 158 176 156 178 158 179 159 179 159 178 158 180 160 179 159 180 160 181 161 181 161 180 160 182 162 181 161 182 162 183 163 183 163 182 162 184 164 183 163 184 164 165 145 183 163 165 145 185 165 185 165 165 145 163 143 185 165 163 143 186 166 185 165 186 166 187 167 188 167 189 166 190 165 189 166 191 143 190 165 191 143 192 145 190 165 190 165 192 145 193 163 192 145 194 164 193 163 194 164 195 162 193 163 193 163 195 162 196 161 195 162 197 160 196 161 196 161 197 160 198 159 197 160 199 158 198 159 198 159 199 158 200 156 199 158 201 157 200 156 201 157 202 155 200 156 200 156 202 155 203 154 202 155 204 153 203 154 203 154 204 153 205 151 204 153 206 152 205 151 206 152 207 150 205 151 205 151 207 150 208 149 207 150 209 128 208 149 209 128 210 126 208 149 208 149 210 126 211 147 210 126 212 146 211 147 213 148 211 147 212 146 192 145 191 143 214 144 214 144 191 143 215 142 191 143 216 141 215 142 215 142 216 141 217 140 216 141 218 139 217 140 217 140 218 139 219 138 218 139 220 136 219 138 219 138 220 136 221 137 221 137 220 136 222 135 220 136 223 134 222 135 222 135 223 134 224 133 223 134 225 132 224 133 224 133 225 132 226 131 225 132 227 129 226 131 226 131 227 129 228 130 228 130 227 129 229 127 227 129 210 126 229 127 209 128 229 127 210 126 112 168 230 169 69 170 72 170 231 169 113 168 114 171 232 172 74 173 75 173 233 172 115 171 84 174 116 175 234 176 235 176 117 175 85 174 96 177 236 178 120 179 121 179 237 178 97 177 122 180 124 181 108 182 111 182 129 181 127 180 125 183 122 184 238 185 239 185 127 184 126 183 125 186 240 187 123 188 128 188 241 187 126 186 242 189 130 190 123 191 128 191 133 190 243 189 135 192 244 193 136 194 137 194 245 193 138 192 100 195 246 196 140 197 141 197 247 196 101 195 102 198 142 199 248 200 249 200 143 199 107 198 144 201 102 202 250 203 251 203 107 202 145 201 144 204 238 205 103 206 106 206 239 205 145 204 238 207 122 208 103 209 106 209 127 208 239 207 252 210 253 211 254 212 255 212 256 211 257 210 258 213 259 214 253 215 256 215 260 214 261 213 259 216 262 217 263 218 264 218 265 217 260 216 263 219 266 220 267 221 268 221 269 220 264 219 270 222 271 223 272 224 273 224 274 223 275 222 272 225 276 226 277 227 278 227 279 226 273 225 280 228 281 229 282 230 283 230 284 229 285 228 286 231 287 232 281 233 284 233 288 232 289 231 290 234 291 235 287 236 288 236 292 235 293 234 248 237 142 238 291 239 292 239 143 238 249 237 294 240 130 241 242 242 243 242 133 241 295 240 296 243 294 244 297 245 298 245 295 244 299 243 300 246 296 247 301 248 302 248 299 247 303 246 304 249 300 250 305 251 306 251 303 250 307 249 308 252 309 253 310 254 311 254 312 253 313 252 314 255 315 256 316 257 317 257 318 256 319 255 320 258 321 259 309 260 312 260 322 259 323 258 324 261 314 262 325 263 326 263 319 262 327 261 328 264 254 265 329 266 330 266 255 265 331 264 112 267 332 268 230 269 231 269 333 268 113 267 114 270 334 271 232 272 233 272 335 271 115 270 234 273 116 274 336 275 337 275 117 274 235 273 120 276 236 277 338 278 339 278 237 277 121 276 242 279 123 280 240 281 241 281 128 280 243 279 136 282 244 283 340 284 341 284 245 283 137 282 140 285 246 286 342 287 343 287 247 286 141 285 250 288 102 289 248 290 249 290 107 289 251 288 328 291 252 292 254 293 255 293 257 292 331 291 258 294 253 295 252 296 257 296 256 295 261 294 262 297 259 298 258 299 261 299 260 298 265 297 262 300 266 301 263 302 264 302 269 301 265 300 266 303 271 304 267 305 268 305 274 304 269 303 344 306 345 307 346 308 347 308 348 307 349 306 271 309 276 310 272 311 273 311 279 310 274 309 276 312 280 313 277 314 280 313 276 312 350 315 351 315 279 312 285 313 278 314 285 313 279 312 352 316 353 317 354 318 355 318 356 317 357 316 280 319 286 320 281 321 284 321 289 320 285 319 286 322 290 323 287 324 288 324 293 323 289 322 248 325 291 326 290 327 293 327 292 326 249 325 297 328 294 329 242 330 243 330 295 329 298 328 301 331 296 332 297 333 298 333 299 332 302 331 305 334 300 335 301 336 302 336 303 335 306 334 308 337 304 338 305 339 306 339 307 338 313 337 358 340 359 341 360 342 361 342 362 341 363 340 320 343 309 344 308 345 313 345 312 344 323 343 314 346 316 347 364 348 365 348 317 347 319 346 328 349 321 350 320 351 323 351 322 350 331 349 366 352 367 353 368 354 369 354 370 353 371 352 325 355 314 356 364 357 365 357 319 356 326 355 230 358 332 359 372 360 373 360 333 359 231 358 334 361 374 362 232 363 233 363 375 362 335 361 234 364 336 365 376 366 377 366 337 365 235 364 338 367 236 368 378 369 379 369 237 368 339 367 380 370 242 371 240 372 241 372 243 371 381 370 244 373 382 374 340 375 341 375 383 374 245 373 246 376 384 377 342 378 343 378 385 377 247 376 250 379 248 380 290 381 293 381 249 380 251 379 386 382 252 383 328 384 331 384 257 383 387 382 388 385 258 386 252 387 257 387 261 386 389 385 390 388 262 389 258 390 261 390 265 389 391 388 262 391 392 392 266 393 269 393 393 392 265 391 266 394 394 395 271 396 274 396 395 395 269 394 396 397 397 398 398 399 399 399 400 398 401 397 344 400 402 401 345 402 348 402 403 401 349 400 271 403 404 404 276 405 279 405 405 404 274 403 404 406 350 407 276 408 279 408 351 407 405 406 350 409 406 410 280 411 285 411 407 410 351 409 408 412 409 413 410 414 411 414 412 413 413 412 352 415 354 416 414 417 415 417 355 416 357 415 286 418 406 419 416 420 406 419 286 418 280 421 285 421 289 418 407 419 417 420 407 419 289 418 416 422 290 423 286 424 289 424 293 423 417 422 297 425 242 426 380 427 381 427 243 426 298 425 301 428 297 429 418 430 419 430 298 429 302 428 305 431 301 432 420 433 421 433 302 432 306 431 308 434 305 435 422 436 423 436 306 435 313 434 424 437 358 438 360 439 361 439 363 438 425 437 426 440 320 441 308 442 313 442 323 441 427 440 364 443 316 444 428 445 429 445 317 444 365 443 430 446 328 447 320 448 323 448 331 447 431 446 367 449 366 450 432 451 433 451 371 450 370 449 325 452 364 453 434 454 435 454 365 453 326 452 332 455 436 456 372 457 373 457 437 456 333 455 334 458 438 459 374 460 375 460 439 459 335 458 376 461 336 462 440 463 441 463 337 462 377 461 338 464 378 465 442 466 443 466 379 465 339 464 340 467 382 468 444 469 445 469 383 468 341 467 342 470 384 471 446 472 447 472 385 471 343 470 448 473 250 474 290 475 293 475 251 474 449 473 430 476 386 477 328 478 331 478 387 477 431 476 388 479 252 480 386 481 387 481 257 480 389 479 388 482 390 483 258 484 261 484 391 483 389 482 392 485 262 486 390 487 391 487 265 486 393 485 392 488 394 489 266 490 269 490 395 489 393 488 394 491 404 492 271 493 274 493 405 492 395 491 450 494 451 495 452 496 453 496 454 495 455 494 402 497 456 498 345 499 348 499 457 498 403 497 450 500 458 501 451 502 454 502 459 501 455 500 414 503 354 504 460 505 461 505 355 504 415 503 448 506 290 507 416 508 417 508 293 507 449 506 418 509 297 510 380 511 381 511 298 510 419 509 420 512 301 513 418 514 419 514 302 513 421 512 422 515 305 516 420 517 421 517 306 516 423 515 426 518 308 519 422 520 423 520 313 519 427 518 462 521 358 522 424 523 425 523 363 522 463 521 430 524 320 525 426 526 427 526 323 525 431 524 428 527 316 528 464 529 465 529 317 528 429 527 466 530 467 531 468 532 469 532 470 531 471 530 472 533 432 534 366 535 371 535 433 534 473 533 474 536 466 537 468 538 469 538 471 537 475 536 325 539 434 540 476 541 477 541 435 540 326 539 372 542 436 543 478 544 479 544 437 543 373 542 438 545 480 546 374 547 375 547 481 546 439 545 376 548 440 549 482 550 483 550 441 549 377 548 442 551 378 552 484 553 485 553 379 552 443 551 382 554 486 555 444 556 445 556 487 555 383 554 384 557 488 558 446 559 447 559 489 558 385 557 490 560 450 561 452 562 453 562 455 561 491 560 402 563 492 564 456 565 457 565 493 564 403 563 494 566 495 567 496 568 497 568 498 567 499 566 500 569 458 570 450 571 455 571 459 570 501 569 502 572 503 573 458 574 459 574 504 573 505 572 414 575 460 576 506 577 507 577 461 576 415 575 462 578 424 579 508 580 509 580 425 579 463 578 510 581 511 582 512 583 513 583 514 582 515 581 316 584 516 585 464 586 465 586 517 585 317 584 518 587 519 588 520 589 521 589 522 588 523 587 524 590 518 591 520 592 521 592 523 591 525 590 325 593 526 594 527 595 528 595 529 594 326 593 530 596 432 597 472 598 473 598 433 597 531 596 532 599 533 600 534 601 535 601 536 600 537 599 538 602 532 603 534 604 535 604 537 603 539 602 325 605 476 606 540 607 541 607 477 606 326 605 436 608 542 609 478 610 479 610 543 609 437 608 438 611 544 612 480 613 481 613 545 612 439 611 482 614 440 615 546 616 547 616 441 615 483 614 442 617 484 618 548 619 549 619 485 618 443 617 444 620 486 621 550 622 551 622 487 621 445 620 488 623 552 624 446 625 447 625 553 624 489 623 554 626 490 627 452 628 453 628 491 627 555 626 556 629 557 630 558 631 559 631 560 630 561 629 492 632 562 633 456 634 457 634 563 633 493 632 564 635 565 636 566 637 567 637 568 636 569 635 570 638 494 639 496 640 497 640 499 639 571 638 558 641 557 642 572 643 573 643 560 642 559 641 574 644 458 645 500 646 501 646 459 645 575 644 502 647 458 648 576 649 577 649 459 648 505 647 578 650 503 651 502 652 505 652 504 651 579 650 506 653 460 654 580 655 581 655 461 654 507 653 582 656 462 657 508 658 509 658 463 657 583 656 510 659 512 660 584 661 585 661 513 660 515 659 512 662 511 663 586 664 587 664 514 663 513 662 588 665 589 666 590 667 591 667 592 666 593 665 520 668 519 669 594 670 595 670 522 669 521 668 325 671 540 672 526 673 529 673 541 672 326 671 527 674 526 675 596 676 597 676 529 675 528 674 598 677 530 678 472 679 473 679 531 678 599 677 538 680 534 681 600 682 601 682 535 681 539 680 602 683 603 684 604 685 605 685 606 684 607 683 478 686 542 687 608 688 609 688 543 687 479 686 544 689 610 690 480 691 481 691 611 690 545 689 482 692 546 693 612 694 613 694 547 693 483 692 548 695 484 696 614 697 615 697 485 696 549 695 486 698 616 699 550 700 551 700 617 699 487 698 618 701 552 702 488 703 489 703 553 702 619 701 620 704 554 705 452 706 453 706 555 705 621 704 622 707 623 708 556 709 561 709 624 708 625 707 623 710 557 711 556 712 561 712 560 711 624 710 492 713 626 714 562 715 563 715 627 714 493 713 628 716 570 717 496 718 497 718 571 717 629 716 630 719 631 720 632 721 633 721 634 720 635 719 636 722 632 723 637 724 638 724 633 723 639 722 557 725 640 726 572 727 573 727 641 726 560 725 642 728 572 729 640 730 641 730 573 729 643 728 576 731 458 732 574 733 575 733 459 732 577 731 644 734 645 735 646 736 647 736 648 735 649 734 650 737 651 738 645 739 648 739 652 738 653 737 654 740 503 741 578 742 579 742 504 741 655 740 506 743 580 744 656 745 657 745 581 744 507 743 582 746 508 747 658 748 659 748 509 747 583 746 511 749 660 750 586 751 587 751 661 750 514 749 662 752 663 753 588 754 593 754 664 753 665 752 666 755 667 756 662 757 665 757 668 756 669 755 663 758 589 759 588 760 593 760 592 759 664 758 670 761 671 762 602 763 607 763 672 762 673 761 674 764 675 765 671 766 672 766 676 765 677 764 527 767 596 768 678 769 679 769 597 768 528 767 680 770 530 771 598 772 599 772 531 771 681 770 602 773 604 774 670 775 673 775 605 774 607 773 542 776 682 777 608 778 609 778 683 777 543 776 544 779 684 780 610 781 611 781 685 780 545 779 612 782 546 783 686 784 687 784 547 783 613 782 548 785 614 786 688 787 689 787 615 786 549 785 616 788 690 789 550 790 551 790 691 789 617 788 618 791 692 792 552 793 553 793 693 792 619 791 694 794 695 795 631 796 634 796 696 795 697 794 698 797 623 798 622 799 625 799 624 798 699 797 626 800 700 801 562 802 563 802 701 801 627 800 702 803 570 804 628 805 629 805 571 804 703 803 694 806 631 807 630 808 635 808 634 807 697 806 630 809 632 810 636 811 639 811 633 810 635 809 636 812 637 813 704 814 705 814 638 813 639 812 706 815 707 816 708 817 709 817 710 816 711 815 712 818 642 819 640 820 641 820 643 819 713 818 714 821 715 822 716 823 717 823 718 822 719 821 714 824 720 825 715 826 718 826 721 825 719 824 644 827 650 828 645 829 648 829 653 828 649 827 650 830 722 831 651 832 652 832 723 831 653 830 724 833 654 834 578 835 579 835 655 834 725 833 656 836 580 837 726 838 727 838 581 837 657 836 728 839 582 840 658 841 659 841 583 840 729 839 586 842 660 843 730 844 731 844 661 843 587 842 667 845 663 846 662 847 665 847 664 846 668 845 732 848 667 849 666 850 669 850 668 849 733 848 670 851 674 852 671 853 672 853 677 852 673 851 674 854 734 855 675 856 676 856 735 855 677 854 678 857 596 858 736 859 737 859 597 858 679 857 738 860 680 861 598 862 599 862 681 861 739 860 682 863 740 864 608 865 609 865 741 864 683 863 610 866 684 867 742 868 743 868 685 867 611 866 544 869 744 870 684 871 685 871 745 870 545 869 612 872 686 873 746 874 747 874 687 873 613 872 688 875 614 876 748 877 749 877 615 876 689 875 616 878 750 879 690 880 691 880 751 879 617 878 742 881 692 882 618 883 619 883 693 882 743 881 692 884 752 885 552 886 553 886 753 885 693 884 626 887 754 888 700 889 701 889 755 888 627 887 756 890 702 891 628 892 629 892 703 891 757 890 704 893 637 894 758 895 759 895 638 894 705 893 722 896 760 897 651 898 652 898 761 897 723 896 762 899 654 900 724 901 725 901 655 900 763 899 656 902 726 903 764 904 765 904 727 903 657 902 728 905 658 906 766 907 767 907 659 906 729 905 660 908 768 909 730 910 731 910 769 909 661 908 770 911 732 912 666 913 669 913 733 912 771 911 734 914 772 915 675 916 676 916 773 915 735 914 678 917 736 918 774 919 775 919 737 918 679 917 776 920 680 921 738 922 739 922 681 921 777 920 682 923 778 924 740 925 741 925 779 924 683 923 684 926 780 927 742 928 743 928 781 927 685 926 782 929 783 930 784 931 785 931 786 930 787 929 788 932 789 933 790 934 791 934 792 933 793 932 688 935 748 936 794 937 795 937 749 936 689 935 796 938 784 939 797 940 798 940 785 939 799 938 742 941 780 942 692 943 693 943 781 942 743 941 800 944 801 945 802 946 803 946 804 945 805 944 754 947 806 948 700 949 701 949 807 948 755 947 808 950 702 951 756 952 757 952 703 951 809 950 704 953 758 954 810 955 811 955 759 954 705 953 722 956 812 957 760 958 761 958 813 957 723 956 814 959 762 960 724 961 725 961 763 960 815 959 764 962 726 963 816 964 817 964 727 963 765 962 818 965 728 966 766 967 767 967 729 966 819 965 730 968 768 969 820 970 821 970 769 969 731 968 822 971 732 972 770 973 771 973 733 972 823 971 734 974 824 975 772 976 773 976 825 975 735 974 774 977 736 978 826 979 827 979 737 978 775 977 828 980 776 981 738 982 739 982 777 981 829 980 830 983 831 984 789 985 792 985 832 984 833 983 834 986 782 987 784 988 785 988 787 987 835 986 788 989 830 990 789 991 792 991 833 990 793 989 834 992 784 993 796 994 799 994 785 993 835 992 836 995 802 996 831 997 832 997 803 996 837 995 836 998 800 999 802 1000 803 1000 805 999 837 998 754 1001 838 1002 806 1003 807 1003 839 1002 755 1001 840 1004 808 1005 756 1006 757 1006 809 1005 841 1004 810 1007 758 1008 842 1009 843 1009 759 1008 811 1007 812 1010 844 1011 760 1012 761 1012 845 1011 813 1010 846 1013 762 1014 814 1015 815 1015 763 1014 847 1013 764 1016 816 1017 848 1018 849 1018 817 1017 765 1016 818 1019 766 1020 850 1021 851 1021 767 1020 819 1019 820 1022 768 1023 852 1024 853 1024 769 1023 821 1022 854 1025 822 1026 770 1027 771 1027 823 1026 855 1025 824 1028 856 1029 772 1030 773 1030 857 1029 825 1028 774 1031 826 1032 858 1033 859 1033 827 1032 775 1031 860 1034 776 1035 828 1036 829 1036 777 1035 861 1034 830 1037 862 1038 831 1039 832 1039 863 1038 833 1037 836 1040 831 1041 862 1042 863 1042 832 1041 837 1040 838 1043 864 1044 806 1045 807 1045 865 1044 839 1043 840 1046 866 1047 808 1048 809 1048 867 1047 841 1046 810 1049 842 1050 868 1051 869 1051 843 1050 811 1049 812 1052 870 1053 844 1054 845 1054 871 1053 813 1052 846 1055 814 1056 872 1057 873 1057 815 1056 847 1055 848 1058 816 1059 874 1060 875 1060 817 1059 849 1058 876 1061 818 1062 850 1063 851 1063 819 1062 877 1061 878 1064 820 1065 852 1066 853 1066 821 1065 879 1064 854 1067 880 1068 822 1069 823 1069 881 1068 855 1067 824 1070 882 1071 856 1072 857 1072 883 1071 825 1070 858 1073 826 1074 884 1075 885 1075 827 1074 859 1073 886 1076 860 1077 828 1078 829 1078 861 1077 887 1076 838 1079 888 1080 864 1081 865 1081 889 1080 839 1079 890 1082 840 1083 891 1084 892 1084 841 1083 893 1082 890 1085 866 1086 840 1087 841 1087 867 1086 893 1085 842 1088 894 1089 868 1090 869 1090 895 1089 843 1088 896 1091 844 1092 870 1093 871 1093 845 1092 897 1091 898 1094 846 1095 872 1096 873 1096 847 1095 899 1094 898 1097 900 1098 846 1099 847 1099 901 1098 899 1097 848 1100 874 1101 902 1102 903 1102 875 1101 849 1100 904 1103 876 1104 850 1105 851 1105 877 1104 905 1103 906 1106 852 1107 907 1108 908 1108 853 1107 909 1106 878 1109 852 1110 906 1111 909 1111 853 1110 879 1109 910 1112 880 1113 854 1114 855 1114 881 1113 911 1112 882 1115 912 1116 856 1117 857 1117 913 1116 883 1115 858 1118 884 1119 914 1120 915 1120 885 1119 859 1118 858 1121 914 1122 916 1123 917 1123 915 1122 859 1121 918 1124 860 1125 886 1126 887 1126 861 1125 919 1124 920 1127 921 1128 922 1129 923 1129 924 1128 925 1127 890 1130 926 1131 866 1132 867 1132 927 1131 893 1130 868 1133 894 1134 928 1135 929 1135 895 1134 869 1133 930 1136 896 1137 870 1138 871 1138 897 1137 931 1136 898 1139 872 1140 926 1141 927 1141 873 1140 899 1139 932 1142 933 1143 934 1144 935 1144 936 1143 937 1142 938 1145 939 1146 940 1147 941 1147 942 1146 943 1145 944 1148 878 1149 906 1150 909 1150 879 1149 945 1148 910 1151 946 1152 880 1153 881 1153 947 1152 911 1151 882 1154 948 1155 912 1156 913 1156 949 1155 883 1154 884 1157 944 1158 914 1159 915 1159 945 1158 885 1157 950 1160 951 1161 952 1162 953 1162 954 1161 955 1160 920 1163 956 1164 921 1165 924 1165 957 1164 925 1163 890 1166 958 1167 926 1168 927 1168 959 1167 893 1166 960 1169 961 1170 962 1171 963 1171 964 1170 965 1169 961 1172 966 1173 967 1174 968 1174 969 1173 964 1172 958 1175 898 1176 926 1177 927 1177 899 1176 959 1175 932 1178 970 1179 933 1180 936 1180 971 1179 937 1178 972 1181 939 1182 938 1183 943 1183 942 1182 973 1181 944 1184 906 1185 974 1186 975 1186 909 1185 945 1184 976 1187 977 1188 978 1189 979 1189 980 1188 981 1187 982 1190 978 1191 983 1192 984 1192 979 1191 985 1190 914 1193 944 1194 974 1195 975 1195 945 1194 915 1193 950 1196 952 1197 986 1198 987 1198 953 1197 955 1196 956 1199 988 1200 921 1201 924 1201 989 1200 957 1199 962 1202 961 1203 990 1204 991 1204 964 1203 963 1202 990 1205 961 1206 967 1207 968 1207 964 1206 991 1205 988 1208 970 1209 932 1210 937 1210 971 1209 989 1208 972 1211 992 1212 939 1213 942 1213 993 1212 973 1211 994 1214 976 1215 978 1216 979 1216 981 1215 995 1214 994 1217 978 1218 982 1219 985 1219 979 1218 995 1217 986 1220 952 1221 992 1222 993 1222 953 1221 987 1220 956 1223 996 1224 988 1225 989 1225 997 1224 957 1223 988 1226 996 1227 970 1228 971 1228 997 1227 989 1226 972 1229 998 1230 992 1231 993 1231 999 1230 973 1229 986 1232 992 1233 998 1234 999 1234 993 1233 987 1232</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID341\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID342\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID346\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID352\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID356\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"864\">-0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035627 -0.3378135984617037 -1.272300980758927</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"288\" source=\"#ID356\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID353\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID357\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"864\">-0.9999410261811262 -1.189599814927649e-005 -0.01086020341990315 -0.9999410269663441 -0.002736872445651152 -0.01050962029330042 -0.9999410263908806 7.648229374381802e-005 -0.01085992130776995 -0.9999410267352775 -0.00282230173442009 -0.01048702362534358 0.9999410267352775 0.00282230173442009 0.01048702362534358 0.9999410261811262 1.189599814927649e-005 0.01086020341990315 0.9999410269663441 0.002736872445651152 0.01050962029330042 0.9999410263908806 -7.648229374381802e-005 0.01085992130776995 -0.9999410251909873 0.002884647210172477 -0.01047019343041532 -0.9999410250023675 0.002799366906628021 -0.01049333417637169 0.9999410251909873 -0.002884647210172477 0.01047019343041532 0.9999410250023675 -0.002799366906628021 0.01049333417637169 9.286956521859729e-019 -0.2567189364859594 -0.9664861031848921 -5.715048115234753e-019 0.002173823798311303 -0.9999976372422557 -5.715048115234815e-019 0.002173823798316985 -0.9999976372422557 9.286956521860817e-019 -0.2567189364859696 -0.9664861031848894 -9.286956521860817e-019 0.2567189364859696 0.9664861031848894 -9.286956521859729e-019 0.2567189364859594 0.9664861031848921 5.715048115234753e-019 -0.002173823798311303 0.9999976372422557 5.715048115234815e-019 -0.002173823798316985 0.9999976372422557 -0.999941027241365 -0.005363709391798363 -0.009443127715125572 -0.999941027016906 -0.005440356935925922 -0.009399202348336674 0.999941027016906 0.005440356935925922 0.009399202348336674 0.999941027241365 0.005363709391798363 0.009443127715125572 0.004942785664726246 -0.2568034608485688 -0.9664510082596376 0.003828242018622541 0.004557013776478851 -0.999982288937403 0.0038266651399871 -0.2544110204982774 -0.9670886150105025 -0.0038266651399871 0.2544110204982774 0.9670886150105025 -0.003828242018622541 -0.004557013776478851 0.999982288937403 -0.004942785664726246 0.2568034608485688 0.9664510082596376 -0.9999410238180577 0.005496359094067572 -0.009366905700582823 -0.9999410236206152 0.005419907617564657 -0.009411369824492982 0.9999410238180577 -0.005496359094067572 0.009366905700582823 0.9999410236206152 -0.005419907617564657 0.009411369824492982 1.643076813688965e-018 0.26091795302378 -0.9653609800431552 1.643076813689116e-018 0.2609179530237881 -0.9653609800431529 -1.643076813689116e-018 -0.2609179530237881 0.9653609800431529 -1.643076813688965e-018 -0.26091795302378 0.9653609800431552 0.004944863497418337 0.002079709308106825 -0.9999856114635779 0.003826725799420876 0.2632158559531372 -0.9647293762213907 -0.003826725799420876 -0.2632158559531372 0.9647293762213907 -0.004944863497418337 -0.002079709308106825 0.9999856114635779 5.715048112518241e-019 -0.4981166872421474 -0.8671100079522257 5.715048112519107e-019 -0.4981166872421416 -0.8671100079522289 -5.715048112519107e-019 0.4981166872421416 0.8671100079522289 -5.715048112518241e-019 0.4981166872421474 0.8671100079522257 -0.9999410279774628 -0.007624925862152798 -0.007733115347123785 -0.999941027776978 -0.007687610089140697 -0.007670829123266627 0.999941027776978 0.007687610089140697 0.007670829123266627 0.9999410279774628 0.007624925862152798 0.007733115347123785 0.004945237506788235 -0.498190537464372 -0.8670534775934884 0.003830007769246236 -0.4960444625889477 -0.8682886744483829 -0.003830007769246236 0.4960444625889477 0.8682886744483829 -0.004945237506788235 0.498190537464372 0.8670534775934884 -0.9999410231812367 0.007733425532157156 -0.007625240245423564 -0.9999410229394634 0.007671116821697991 -0.00768795222977871 0.9999410231812367 -0.007733425532157156 0.007625240245423564 0.9999410229394634 -0.007671116821697991 0.00768795222977871 3.714782186172493e-018 0.5018825991966418 -0.8649357528878217 3.714782186172491e-018 0.5018825991966421 -0.8649357528878214 -3.714782186172491e-018 -0.5018825991966421 0.8649357528878214 -3.714782186172493e-018 -0.5018825991966418 0.8649357528878217 0.004941675560377144 0.2608252386265301 -0.9653733861765972 0.003821063636068529 0.5039417767426235 -0.8637291734833188 -0.003821063636068529 -0.5039417767426235 0.8637291734833188 -0.004941675560377144 -0.2608252386265301 0.9653733861765972 -1.143009550785445e-018 -0.7055662686997609 -0.7086439447798146 -1.143009550785445e-018 -0.7055662686997598 -0.7086439447798156 1.143009550785445e-018 0.7055662686997598 0.7086439447798156 1.143009550785445e-018 0.7055662686997609 0.7086439447798146 -0.9999410273711995 -0.009366649538182812 -0.005496149220936206 -0.9999410270511003 -0.009411083689174002 -0.005419771562170325 0.9999410270511003 0.009411083689174002 0.005419771562170325 0.9999410273711995 0.009366649538182812 0.005496149220936206 0.004947190279231937 -0.705623059879875 -0.7085701254456779 0.003831559424319163 -0.7038698595571158 -0.7103186186208439 -0.003831559424319163 0.7038698595571158 0.7103186186208439 -0.004947190279231937 0.705623059879875 0.7085701254456779 -0.9999410254789244 0.009443272316692088 -0.005363783376497059 -0.9999410251117098 0.009399334675645549 -0.00544047848980481 0.9999410254789244 -0.009443272316692088 0.005363783376497059 0.9999410251117098 -0.009399334675645549 0.00544047848980481 4.000533201430981e-018 0.7086421448071734 -0.7055680765192605 4.00053320143097e-018 0.7086421448071717 -0.7055680765192622 -4.00053320143097e-018 -0.7086421448071717 0.7055680765192622 -4.000533201430981e-018 -0.7086421448071734 0.7055680765192605 0.004938464558228079 0.5017959577429818 -0.8649719234522071 0.003824929807736708 0.7103168903995655 -0.7038716396652572 -0.003824929807736708 -0.7103168903995655 0.7038716396652572 -0.004938464558228079 -0.5017959577429818 0.8649719234522071 -4.572041747584274e-018 -0.864936467361332 -0.5018813678833869 -4.572041747584255e-018 -0.8649364673613317 -0.5018813678833874 4.572041747584274e-018 0.864936467361332 0.5018813678833869 4.572041747584255e-018 0.8649364673613317 0.5018813678833874 -0.9999410254124463 -0.01047018167537675 -0.00288461310922097 -0.9999410251383567 -0.01049332216834374 -0.002799363342558378 0.9999410251383567 0.01049332216834374 0.002799363342558378 0.9999410254124463 0.01047018167537675 0.00288461310922097 0.003832821996489258 -0.8637292188850311 -0.5039416096332962 0.004949545639221747 -0.8649707823906792 -0.5017978154679645 -0.004949545639221747 0.8649707823906792 0.5017978154679645 -0.003832821996489258 0.8637292188850311 0.5039416096332962 -0.9999410277040745 0.01050954553455601 -0.0027368899825801 -0.9999410274483728 0.01048696668360297 -0.002822260666456722 0.9999410277040745 -0.01050954553455601 0.0027368899825801 0.9999410274483728 -0.01048696668360297 0.002822260666456722 5.715048312027202e-019 0.8671086552386754 -0.4981190420072052 5.715048312025381e-019 0.8671086552386785 -0.4981190420071999 -5.715048312027202e-019 -0.8671086552386754 0.4981190420072052 -5.715048312025381e-019 -0.8671086552386785 0.4981190420071999 0.0049414496731202 0.7085678671176957 -0.7056253678570574 0.003820269720511365 0.8682920451375475 -0.4960386374972395 -0.003820269720511365 -0.8682920451375475 0.4960386374972395 -0.0049414496731202 -0.7085678671176957 0.7056253678570574 -7.429561417819622e-018 -0.9653613948153605 -0.2609164184181239 -7.429561417819627e-018 -0.9653613948153605 -0.2609164184181246 7.429561417819622e-018 0.9653613948153605 0.2609164184181239 7.429561417819627e-018 0.9653613948153605 0.2609164184181246 -0.9999410239817562 -0.01086014318859406 -7.647378754804853e-005 -0.9999410236950654 -0.0108604323189624 1.189578101152491e-005 0.9999410236950654 0.0108604323189624 -1.189578101152491e-005 0.9999410239817562 0.01086014318859406 7.647378754804853e-005 0.003828924557667887 -0.9647294463450653 -0.2632155669626615 0.004947196804022776 -0.9653740421109739 -0.2608227061858341 -0.004947196804022776 0.9653740421109739 0.2608227061858341 -0.003828924557667887 0.9647294463450653 0.2632155669626615 -0.9999410275599662 0.01085981393770593 7.644316398962921e-005 -0.9999410273536835 0.01086009544374367 -1.190852621266681e-005 0.9999410275599662 -0.01085981393770593 -7.644316398962921e-005 0.9999410273536835 -0.01086009544374367 1.190852621266681e-005 2.286020727136626e-018 0.9664860372523969 -0.2567191847060875 2.28602072713672e-018 0.9664860372523976 -0.2567191847060854 -2.286020727136626e-018 -0.9664860372523969 0.2567191847060875 -2.28602072713672e-018 -0.9664860372523976 0.2567191847060854 0.004937611921748164 0.8670557886269709 -0.4981865909445694 0.003827393334498319 0.9670875751500726 -0.2544149623167159 -0.003827393334498319 -0.9670875751500726 0.2544149623167159 -0.004937611921748164 -0.8670557886269709 0.4981865909445694 -5.143545129757725e-018 -0.9999976392143629 -0.002172916404493806 -5.14354512975772e-018 -0.9999976392143629 -0.002172916404493386 5.143545129757725e-018 0.9999976392143629 0.002172916404493806 5.14354512975772e-018 0.9999976392143629 0.002172916404493386 -0.999941022673983 -0.01048738397334414 0.002822401655441478 -0.999941022932187 -0.01050997881948693 0.002736969591659315 0.999941022673983 0.01048738397334414 -0.002822401655441478 0.999941022932187 0.01050997881948693 -0.002736969591659315 0.003823753939118948 -0.9999822999605859 -0.004558362792749011 0.00494289717588586 -0.9999856224609727 -0.002079095680684648 -0.00494289717588586 0.9999856224609727 0.002079095680684648 -0.003823753939118948 0.9999822999605859 0.004558362792749011 -0.9999410261363435 0.01049322892617458 0.002799356372282648 -0.9999410263259161 0.01047008550038063 0.002884645539441912 0.9999410263259161 -0.01047008550038063 -0.002884645539441912 0.9999410261363435 -0.01049322892617458 -0.002799356372282648 8.00106323387303e-018 0.9999976415480206 0.002171842166549161 8.001063233873028e-018 0.9999976415480205 0.002171842166550713 -8.00106323387303e-018 -0.9999976415480206 -0.002171842166549161 -8.001063233873028e-018 -0.9999976415480205 -0.002171842166550713 0.004943655417316188 0.9664498920219311 -0.2568076449055063 0.003820960518357111 0.9999823146921165 0.004557473391502327 -0.003820960518357111 -0.9999823146921165 -0.004557473391502327 -0.004943655417316188 -0.9664498920219311 0.2568076449055063 -6.858057229063156e-018 -0.966486022918216 0.2567192386708286 -6.858057229063177e-018 -0.9664860229182158 0.2567192386708294 6.858057229063156e-018 0.966486022918216 -0.2567192386708286 6.858057229063177e-018 0.9664860229182158 -0.2567192386708294 -0.9999410247043286 -0.009399388050470537 0.005440461150824826 -0.9999410247948612 -0.009443327762755185 0.005363813286095222 0.9999410247043286 0.009399388050470537 -0.005440461150824826 0.9999410247948612 0.009443327762755185 -0.005363813286095222 0.003820755532216115 -0.9670893318392673 0.2544083844330651 0.004936272458468085 -0.9664516804695458 0.2568010563292271 -0.004936272458468085 0.9664516804695458 -0.2568010563292271 -0.003820755532216115 0.9670893318392673 -0.2544083844330651 -0.9999410253685213 0.009411196694760312 0.005419885766598052 -0.9999410256117496 0.009366813524850533 0.005496189854195041 0.9999410256117496 -0.009366813524850533 -0.005496189854195041 0.9999410253685213 -0.009411196694760312 -0.005419885766598052 3.429033357918545e-018 0.965360504839634 0.2609197112058935 3.429033357918479e-018 0.9653605048396337 0.2609197112058954 -3.429033357918545e-018 -0.965360504839634 -0.2609197112058935 -3.429033357918479e-018 -0.9653605048396337 -0.2609197112058954 0.004934312890925137 0.9999856557972721 0.002083448102078534 0.003817824858266475 0.9647289711546364 0.263217469838665 -0.003817824858266475 -0.9647289711546364 -0.263217469838665 -0.004934312890925137 -0.9999856557972721 -0.002083448102078534 -9.144078984033087e-018 -0.867110662481631 0.4981155478507642 -9.144078984033078e-018 -0.8671106624816305 0.4981155478507653 9.144078984033087e-018 0.867110662481631 -0.4981155478507642 9.144078984033078e-018 0.8671106624816305 -0.4981155478507653 -0.9999410258568779 -0.007670953598774204 0.007687735634113518 -0.9999410261583621 -0.007733206562220277 0.007625071909699455 0.9999410258568779 0.007670953598774204 -0.007687735634113518 0.9999410261583621 0.007733206562220277 -0.007625071909699455 0.003833002046245444 -0.8682878081597345 0.4960459558311885 0.004943216518040933 -0.8670551900821601 0.4981875770852226 -0.004943216518040933 0.8670551900821601 -0.4981875770852226 -0.003833002046245444 0.8682878081597345 -0.4960459558311885 -0.9999410269360286 0.00768770199564354 0.007670846638225618 -0.9999410272625215 0.00762500257451162 0.007733132154028003 0.9999410272625215 -0.00762500257451162 -0.007733132154028003 0.9999410269360286 -0.00768770199564354 -0.007670846638225618 1.854995159308181e-033 0.8649358526966459 0.501882427187809 0 0.8649358526966459 0.5018824271878087 -1.854995159308181e-033 -0.8649358526966459 -0.501882427187809 -0 -0.8649358526966459 -0.5018824271878087 0.00493577675738415 0.965373481876459 0.2608249961133392 0.003824655911536794 0.8637325256144357 0.5039360040747896 -0.003824655911536794 -0.8637325256144357 -0.5039360040747896 -0.00493577675738415 -0.965373481876459 -0.2608249961133392 -4.000534401751088e-018 -0.7086423925289491 0.7055678277181058 -4.000534401751267e-018 -0.7086423925289535 0.7055678277181015 4.000534401751088e-018 0.7086423925289491 -0.7055678277181058 4.000534401751267e-018 0.7086423925289535 -0.7055678277181015 -0.9999410250620634 -0.005419835344405121 0.009411258293619431 -0.9999410252935886 -0.005496284586928853 0.009366791902600188 0.9999410250620634 0.005419835344405121 -0.009411258293619431 0.9999410252935886 0.005496284586928853 -0.009366791902600188 0.003839165997742563 -0.7103157740092257 0.7038726887712835 0.004956122332517188 -0.7085675751092042 0.7056255581789024 -0.004956122332517188 0.7085675751092042 -0.7056255581789024 -0.003839165997742563 0.7103157740092257 -0.7038726887712835 -0.9999410283762649 0.005440312684114939 0.009399083344507243 -0.9999410286150683 0.005363601809037949 0.00944304335864537 0.9999410286150683 -0.005363601809037949 -0.00944304335864537 0.9999410283762649 -0.005440312684114939 -0.009399083344507243 1.143010565603663e-018 0.7055700372479684 0.708640192578646 1.143010565603663e-018 0.7055700372479702 0.7086401925786443 -1.143010565603663e-018 -0.7055700372479684 -0.708640192578646 -1.143010565603663e-018 -0.7055700372479702 -0.7086401925786443 0.004943198463052079 0.8649741663126888 0.5017920449754302 0.003828663124196161 0.7038699749626737 0.7103185198801497 -0.003828663124196161 -0.7038699749626737 -0.7103185198801497 -0.004943198463052079 -0.8649741663126888 -0.5017920449754302 1.143009736610791e-018 -0.5018818905357418 0.864936164090894 1.143009736610772e-018 -0.5018818905357437 0.8649361640908929 -1.143009736610772e-018 0.5018818905357437 -0.8649361640908929 -1.143009736610791e-018 0.5018818905357418 -0.864936164090894 -0.9999410255099235 -0.002799393181743322 0.01049327880009495 -0.9999410257213326 -0.002884592461343174 0.01047015786420724 0.9999410255099235 0.002799393181743322 -0.01049327880009495 0.9999410257213326 0.002884592461343174 -0.01047015786420724 0.004945242852861994 -0.5017941450757408 0.8649729363054273 0.003824873531433713 -0.5039411440157595 0.863729525783712 -0.003824873531433713 0.5039411440157595 -0.863729525783712 -0.004945242852861994 0.5017941450757408 -0.8649729363054273 -0.9999410274584727 0.002822277484269053 0.01048696119453971 -0.9999410276338193 0.002736849005709989 0.0105095628901078 0.9999410276338193 -0.002736849005709989 -0.0105095628901078 0.9999410274584727 -0.002822277484269053 -0.01048696119453971 3.143276138552537e-018 0.4981161284324288 0.8671103289636725 3.143276138552654e-018 0.4981161284324221 0.8671103289636764 -3.143276138552654e-018 -0.4981161284324221 -0.8671103289636764 -3.143276138552537e-018 -0.4981161284324288 -0.8671103289636725 0.004946838745694068 0.705624759428811 0.7085684354157024 0.003832358652013756 0.4960426150147506 0.8682897195731909 -0.003832358652013756 -0.4960426150147506 -0.8682897195731909 -0.004946838745694068 -0.705624759428811 -0.7085684354157024 1.357324303737726e-018 -0.2609183436732318 0.9653608744582605 1.357324303737725e-018 -0.2609183436732317 0.9653608744582606 -1.357324303737726e-018 0.2609183436732318 -0.9653608744582605 -1.357324303737725e-018 0.2609183436732317 -0.9653608744582606 -0.999941026412113 -7.640534256199236e-005 0.01085991989442496 -0.999941026192585 1.181962340437762e-005 0.01086020244821933 0.999941026412113 7.640534256199236e-005 -0.01085991989442496 0.999941026192585 -1.181962340437762e-005 -0.01086020244821933 0.004940850776478425 -0.2608260194767013 0.9653731794272844 0.003825647232711771 -0.2632147699247492 0.9647296768093704 -0.003825647232711771 0.2632147699247492 -0.9647296768093704 -0.004940850776478425 0.2608260194767013 -0.9653731794272844 3.143278067595227e-018 0.2567179580818204 0.9664863630689782 3.143278067595215e-018 0.2567179580818195 0.9664863630689783 -3.143278067595227e-018 -0.2567179580818204 -0.9664863630689782 -3.143278067595215e-018 -0.2567179580818195 -0.9664863630689783 0.004950182655957406 0.4981916449537949 0.8670528130338454 0.003832480658714482 0.2544130730309406 0.9670880520216109 -0.003832480658714482 -0.2544130730309406 -0.9670880520216109 -0.004950182655957406 -0.4981916449537949 -0.8670528130338454 7.858190309334453e-019 -0.002175164586431004 0.9999976343267127 7.858190309334296e-019 -0.002175164586436765 0.9999976343267127 -7.858190309334453e-019 0.002175164586431004 -0.9999976343267127 -7.858190309334296e-019 0.002175164586436765 -0.9999976343267127 0.004940921873113072 -0.002084718490196847 0.9999856205165454 0.00382758993817654 -0.004556349394965424 0.999982294460985 -0.00382758993817654 0.004556349394965424 -0.999982294460985 -0.004940921873113072 0.002084718490196847 -0.9999856205165454 0.004946892765949841 0.2568047730411928 0.9664506385714813 -0.004946892765949841 -0.2568047730411928 -0.9664506385714813</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"288\" source=\"#ID357\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID355\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID358\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1344\">0.04500165965700093 21.74008679032289 -6.710953503131737 20.09757480725083 0.1000627746095763 20.77921931956998 -7.080247872229587 21.0145052715412 -3.540123936114794 10.5072526357706 0.02250082982850047 10.87004339516144 -3.355476751565869 10.04878740362542 0.05003138730478817 10.38960965978499 0.07534380260125198 21.74001127780054 6.933554213792702 20.05073484708986 7.196528629951274 20.99006307575776 0.1303669829364637 20.77914246233489 0.06518349146823182 10.38957123116744 0.03767190130062599 10.87000563890027 3.466777106896351 10.02536742354493 3.598264314975637 10.49503153787888 -12.86224447874705 -2.82602362217035 -10.61044593144633 2.825940115185436 -12.86224447874711 2.825940115185495 -10.61044593144635 -2.826023622170461 -5.305222965723173 -1.41301181108523 -6.431122239373526 -1.413011811085175 -5.305222965723164 1.412970057592718 -6.431122239373552 1.412970057592747 -7.109527114000408 21.00841184581578 -13.09484172604693 18.04624503956301 -6.740198911846502 20.0914898144459 -13.75322553755872 18.85673535189866 -6.876612768779358 9.42836767594933 -3.554763557000204 10.50420592290789 -6.547420863023467 9.023122519781506 -3.370099455923251 10.04574490722295 -4.327947130481451 -2.831682395143322 -10.59673960971082 2.494519512677447 -10.42638530473695 -2.905002536116535 -5.213192652368477 -1.452501268058267 -5.298369804855411 1.247259756338724 -2.163973565240725 -1.415841197571661 7.225755851347815 20.9838244764124 13.29449402849827 17.95567810305388 13.85751213473528 18.80944566772061 6.962746893829194 20.04450223255975 3.481373446914597 10.02225111627987 3.612877925673907 10.4919122382062 6.647247014249137 8.977839051526939 6.928756067367642 9.404722833860303 10.61044593144633 2.825981580630943 12.86224447874709 -2.825992595740977 12.86224447874711 2.825981580630883 10.61044593144633 -2.825992595741062 5.305222965723164 -1.412996297870531 5.305222965723164 1.412990790315471 6.431122239373543 -1.412996297870488 6.431122239373552 1.412990790315442 4.495704241856068 2.664961531154151 10.43221711685011 -2.891879332533704 10.59158413280459 2.507848288547653 5.295792066402295 1.253924144273827 5.216108558425053 -1.445939666266852 2.247852120928034 1.332480765577075 -12.86224447874696 -2.825947916893363 -10.61044593144635 2.826018007123239 -12.86224447874705 2.826018007123342 -10.6104459314464 -2.825947916893278 -5.3052229657232 -1.412973958446639 -6.431122239373481 -1.412973958446681 -5.305222965723173 1.413009003561619 -6.431122239373526 1.413009003561671 -13.77936642589772 18.84494910367416 -18.58612139372733 14.76504876496961 -13.1209585274604 18.03447090017816 -19.48876166620547 15.41386975725847 -9.744380833102735 7.706934878629236 -6.889683212948862 9.42247455183708 -9.293060696863666 7.382524382484806 -6.560479263730202 9.01723545008908 -4.388737822148864 -2.773106452524509 -10.54092074314131 2.636624072452559 -10.48787858864871 -2.764407581528367 -5.243939294324353 -1.382203790764184 -5.270460371570657 1.31831203622628 -2.194368911074432 -1.386553226262254 -4.202713000993107 -2.847316927641705 -4.496732087605833 2.554385096985135 -10.59227251636439 2.389322457437515 -5.296136258182196 1.194661228718757 -2.248366043802917 1.277192548492567 -2.101356500496554 -1.423658463820853 -4.39962318408665 2.65699263316773 -10.49869520647 2.632675389960963 -4.30720657991396 -2.74923276937071 -2.15360328995698 -1.374616384685355 -5.249347603234998 1.316337694980481 -2.199811592043325 1.328496316583865 13.88355461244131 18.79753048361999 18.74912252010727 14.63692954201792 19.57388520321002 15.34696485517103 13.32051131828215 17.94377319846329 6.660255659141074 8.971886599231643 6.941777306220654 9.398765241809993 9.374561260053634 7.318464771008959 9.786942601605007 7.673482427585516 10.61044593144633 2.826024849709162 12.86224447874698 -2.825950054937781 12.86224447874709 2.826024849709241 10.61044593144633 -2.825950054937781 5.305222965723164 -1.41297502746889 5.305222965723164 1.413012424854581 6.43112223937349 -1.41297502746889 6.431122239373543 1.41301242485462 4.442089363119534 2.720080828020509 10.48866032343423 -2.762877897270078 10.54035182778038 2.638199660780892 5.270175913890189 1.319099830390446 5.244330161717117 -1.381438948635039 2.221044681559767 1.360040414010254 4.208186488432563 -2.842408495161039 10.29981134249543 -3.080686268385806 4.491944073349894 2.559656761580416 2.245972036674947 1.279828380790208 5.149905671247714 -1.540343134192903 2.104093244216282 -1.421204247580519 -12.86224447874695 -2.82600768666433 -10.6104459314464 2.825974081103952 -12.86224447874696 2.825974081103872 -10.61044593144626 -2.826007686664317 -5.305222965723129 -1.413003843332158 -6.431122239373472 -1.413003843332165 -5.3052229657232 1.412987040551976 -6.431122239373481 1.412987040551936 -19.50998122430807 15.39728158332552 -22.81065927108942 10.47772735264272 -18.60732806298233 14.74847168761938 -23.89600667514926 10.92066306974483 -11.94800333757463 5.460331534872416 -9.754990612154034 7.698640791662758 -11.40532963554471 5.238863676321358 -9.303664031491167 7.374235843809688 -4.401245236452727 -2.76072003842497 -10.52885884924632 2.666219038494773 -10.50030773036436 -2.734916554904787 -5.250153865182178 -1.367458277452394 -5.26442942462316 1.333109519247386 -2.200622618226364 -1.380360019212485 -4.378491287508375 2.678448496215526 -10.47763817691943 2.68387523224497 -4.32864380715561 -2.728077418327247 -2.164321903577805 -1.364038709163623 -5.238819088459714 1.341937616122485 -2.189245643754187 1.339224248107763 19.5949665952896 15.33027302281989 22.92595043396204 10.32077586296335 23.95620936789129 10.83867888613798 18.77018998656991 14.62024772013757 9.385094993284955 7.310123860068783 9.797483297644799 7.665136511409947 11.46297521698102 5.160387931481677 11.97810468394564 5.41933944306899 10.61044593144633 2.826049461490449 12.86224447874695 -2.825897195613273 12.86224447874698 2.826049461490449 10.6104459314464 -2.825897195613247 5.3052229657232 -1.412948597806623 5.305222965723164 1.413024730745224 6.431122239373472 -1.412948597806637 6.43112223937349 1.413024730745224 4.430291040022829 2.732353085540517 10.50094812248903 -2.734076931910342 10.52887684445967 2.667030953698378 5.264438422229835 1.333515476849189 5.250474061244517 -1.367038465955171 2.215145520011415 1.366176542770259 4.307926494970575 -2.748488817035858 10.405646661895 -2.852414177822029 4.399105344315679 2.657705380890611 2.199552672157839 1.328852690445306 5.202823330947497 -1.426207088911014 2.153963247485287 -1.374244408517929 -10.61044593144626 2.825894995370698 -12.86224447874705 -2.82609222888195 -10.61044593144633 -2.826092228881945 -12.86224447874695 2.82589499537068 -6.431122239373472 1.41294749768534 -5.305222965723129 1.412947497685349 -6.431122239373526 -1.413046114440975 -5.305222965723164 -1.413046114440972 -23.91094160824194 10.90046653479481 -25.480634378765 5.476511141612718 -22.82558978287088 10.45753752207573 -26.67466626827587 5.683381458330269 -13.33733313413794 2.841690729165134 -11.95547080412097 5.450233267397406 -12.7403171893825 2.738255570806359 -11.41279489143544 5.228768761037864 -10.52299040682837 2.680227784306265 -10.5061668122532 -2.720959260215462 -4.407169166769916 -2.754967482411306 -2.203584583384958 -1.377483741205653 -5.253083406126599 -1.360479630107731 -5.261495203414187 1.340113892153132 -10.46739654333959 2.708275296133268 -4.338942229388606 -2.718106829418196 -4.36829736990867 2.688553868555497 -2.184148684954335 1.344276934277748 -2.169471114694303 -1.359053414709098 -5.233698271669796 1.354137648066634 23.97097124693982 10.81840765627475 25.54024123667234 5.301444883669677 26.70589873035085 5.591928469817038 22.94070725863429 10.30051085556732 11.47035362931715 5.150255427783658 11.98548562346991 5.409203828137374 12.77012061833617 2.650722441834839 13.35294936517543 2.795964234908519 12.86224447874695 2.825978074745911 10.61044593144626 -2.826022509369519 12.86224447874705 -2.826022509369585 10.6104459314464 2.825978074745936 5.3052229657232 1.412989037372968 6.431122239373472 1.412989037372956 5.305222965723129 -1.41301125468476 6.431122239373526 -1.413011254684793 4.424277996020746 2.737940602897313 10.50650593923221 -2.720529992983924 10.52299403178044 2.680668671248751 5.261497015890218 1.340334335624375 5.253252969616103 -1.360264996491962 2.212138998010373 1.368970301448656 4.378331935230842 2.678689137250321 4.328980138760369 -2.727871931832631 10.42739215514632 -2.802536852443821 5.21369607757316 -1.40126842622191 2.164490069380185 -1.363935965916316 2.189165967615421 1.339344568625161 -10.61044593144629 -2.825904747399156 -12.86224447874705 2.826069973237946 -12.86224447874705 -2.825904747399128 -10.61044593144633 2.826069973237937 -5.305222965723164 1.413034986618969 -5.305222965723146 -1.412952373699578 -6.431122239373526 1.413034986618973 -6.431122239373526 -1.412952373699564 -26.68240515494901 5.660952007740802 -26.41417937681512 0.1022416071421344 -25.48837270451038 5.454083694207584 -27.63562791825015 0.05894696417114838 -13.81781395912508 0.02947348208557419 -13.34120257747451 2.830476003870401 -13.20708968840756 0.05112080357106722 -12.74418635225519 2.727041847103792 -10.51923878233571 2.689544116394612 -10.51013701455871 -2.711656587826044 -4.411191943823121 -2.751040942821268 -2.20559597191156 -1.375520471410634 -5.255068507279354 -1.355828293913022 -5.259619391167854 1.344772058197306 -10.46055017487655 2.724534513404098 -4.345629980062277 -2.711270388115964 -4.361511748855548 2.695401719720111 -2.180755874427774 1.347700859860056 -2.172814990031139 -1.355635194057982 -5.230275087438276 1.362267256702049 26.71345124453584 5.569463238081498 26.41427114481721 -0.07904357354193686 27.6356806405396 -0.03575631278366894 25.54779300121115 5.278981513532999 12.77389650060558 2.6394907567665 13.35672562226792 2.784731619040749 13.20713557240861 -0.03952178677096843 13.8178403202698 -0.01787815639183447 12.86224447874705 2.825904567781341 10.61044593144638 -2.826080473249799 12.86224447874712 -2.826080473249835 10.61044593144626 2.825904567781381 5.305222965723129 1.412952283890691 6.431122239373526 1.41295228389067 5.305222965723191 -1.4130402366249 6.431122239373561 -1.413040236624918 4.420634634695935 2.742095775502585 10.51058248831772 -2.711008433256825 10.51942773562302 2.690148952244857 5.259713867811509 1.345074476122429 5.255291244158862 -1.355504216628413 2.210317317347967 1.371047887751293 4.368439727116307 2.688941036790968 4.339422289735736 -2.717691662957049 10.43808803086309 -2.778188160359191 5.219044015431544 -1.389094080179595 2.169711144867868 -1.358845831478525 2.184219863558154 1.344470518395484 -10.61044593144636 -2.825999911941941 -12.86224447874705 2.825969956194804 -12.86224447874705 -2.82599991194193 -10.61044593144629 2.825969956194813 -5.305222965723146 1.412984978097406 -5.305222965723181 -1.41299995597097 -6.431122239373525 1.412984978097402 -6.431122239373525 -1.412999955970965 -26.41427583939755 0.07904742262653271 -26.71345594367574 -5.569460127254565 -25.54793886530002 -5.278983127411783 -27.63572438081653 0.03575277887220742 -13.81786219040827 0.01787638943610371 -13.20713791969877 0.03952371131326635 -13.35672797183787 -2.784730063627282 -12.77396943265001 -2.639491563705891 -10.51629208656035 2.697135660162628 -10.51334257328524 -2.704033755330998 -4.414444895310771 -2.747727539370401 -2.207222447655385 -1.373863769685201 -5.256671286642618 -1.352016877665499 -5.258146043280174 1.348567830081314 -10.45521431322128 2.737626225312479 -4.351142237181914 -2.705693483194667 -4.356241648110164 2.700981605799032 -2.178120824055082 1.350490802899516 -2.175571118590957 -1.352846741597333 -5.227607156610642 1.36881311265624 26.41417720728785 -0.1022377360609355 26.68242100433726 -5.660947693454984 27.6355867030183 -0.05895047794281139 25.48830445552332 -5.454082925036311 12.74415222776166 -2.727041462518156 13.20708860364393 -0.05111886803046777 13.34121050216863 -2.830473846727492 13.81779335150915 -0.0294752389714057 12.86224447874712 2.826052632890059 10.61044593144626 -2.82592204733246 12.86224447874695 -2.825922047332492 10.61044593144638 2.826052632890082 5.305222965723191 1.413026316445041 6.431122239373561 1.41302631644503 5.305222965723129 -1.41296102366623 6.431122239373472 -1.412961023666246 4.417217997697089 2.744713837406366 10.51330575549122 -2.704166435394285 10.51606746666478 2.697041471798994 5.258033733332388 1.348520735899497 5.256652877745612 -1.352083217697142 2.208608998848545 1.372356918703183 4.361514299577717 2.695541103625278 4.345847193716227 -2.711126089156569 10.44465127714765 -2.762265554347846 5.222325638573823 -1.381132777173923 2.172923596858114 -1.355563044578285 2.180757149788859 1.347770551812639 -10.6104459314464 -2.825930766618026 -12.86224447874705 2.826041266166101 -12.86224447874691 -2.825930766618044 -10.61044593144636 2.826041266166125 -5.305222965723182 1.413020633083062 -5.3052229657232 -1.412965383309013 -6.431122239373526 1.41302063308305 -6.431122239373455 -1.412965383309022 -25.54038650199819 -5.301448515743764 -23.97101290175442 -10.81841542886811 -22.94071136809923 -10.30052099361089 -26.70590282994665 -5.591927379275652 -13.35295141497332 -2.795963689637826 -12.77019325099909 -2.650724257871882 -11.98550645087721 -5.409207714434054 -11.47035568404961 -5.150260496805447 -10.51363540807846 2.703735574337612 -10.51638582391865 -2.697463741985649 -4.417536498075453 -2.745135983150786 -2.208768249037727 -1.372567991575393 -5.258192911959323 -1.348731870992824 -5.256817704039229 1.351867787168806 -10.45023670146809 2.749406257350436 -4.356258630087857 -2.700933213781691 -4.351338578301006 2.705750945986859 -2.175669289150503 1.352875472993429 -2.178129315043929 -1.350466606890846 -5.225118350734043 1.374703128675218 25.48056850699846 -5.4765109888474 23.91084720343317 -10.90046224804534 26.67468449563205 -5.683377758338963 22.82558998950295 -10.45752259924669 11.41279499475147 -5.228761299623346 12.74028425349923 -2.7382554944237 11.95542360171659 -5.450231124022667 13.33734224781603 -2.841688879169482 12.86224447874695 2.82582712160258 10.61044593144633 -2.826129032011907 12.86224447874705 -2.82612903201192 10.61044593144626 2.825827121602595 5.305222965723129 1.412913560801298 6.431122239373472 1.41291356080129 5.305222965723164 -1.413064516005953 6.431122239373526 -1.41306451600596 4.4146364097076 2.747910046670556 10.51647688693124 -2.696955842399996 10.51353388990205 2.704223658516902 5.256766944951025 1.352111829258451 5.258238443465622 -1.348477921199998 2.2073182048538 1.373955023335278 4.35645153003614 2.70087991621506 4.351538024872898 -2.705808272904777 10.45043595056386 -2.749456155586584 5.225217975281929 -1.374728077793292 2.175769012436449 -1.352904136452389 2.17822576501807 1.35043995810753 -10.6104459314464 2.825966664539571 -12.86224447874705 -2.826015326484667 -10.61044593144629 -2.826015326484686 -12.86224447874691 2.825966664539562 -6.431122239373455 1.412983332269781 -5.3052229657232 1.412983332269786 -6.431122239373526 -1.413007663242334 -5.305222965723146 -1.413007663242343 -22.92594750356043 -10.32078231370186 -19.59503874243783 -15.33026292526798 -18.77019605670036 -14.62023762439384 -23.95624398101459 -10.83868297384684 -11.97812199050729 -5.419341486923419 -11.46297375178022 -5.160391156850932 -9.797519371218915 -7.665131462633992 -9.385098028350182 -7.310118812196918 -10.51025774098094 2.711469903985125 -10.519136567093 -2.689735512526468 -4.420343528520512 -2.741685283211833 -2.210171764260256 -1.370842641605917 -5.2595682835465 -1.344867756263234 -5.25512887049047 1.355734951992562 -10.44496489620798 2.762230408910285 -4.361795749282214 -2.695581765113801 -4.346160956957755 2.711090981816287 -2.173080478478878 1.355545490908144 -2.180897874641107 -1.3477908825569 -5.222482448103991 1.381115204455142 22.81066195964529 -10.47771276851302 19.50999293442922 -15.39728354324274 23.89591475193814 -10.92065912129808 18.60733076095817 -14.74847483060988 9.303665380479083 -7.374237415304939 11.40533097982264 -5.23885638425651 9.754996467214612 -7.698641771621368 11.94795737596907 -5.460329560649042 12.86224447874705 2.826225508708164 10.61044593144644 -2.825782753959264 12.86224447874696 -2.825782753959264 10.61044593144633 2.826225508708167 5.305222965723164 1.413112754354084 6.431122239373526 1.413112754354082 5.305222965723218 -1.412891376979632 6.431122239373481 -1.412891376979632 4.411525367456426 2.750835793495604 10.51953671685669 -2.689732105727344 10.51046993801221 2.711434912783619 5.255234969006104 1.355717456391809 5.259768358428346 -1.344866052863672 2.205762683728213 1.375417896747802 4.351468090508527 2.705965589278195 4.356556746050451 -2.700699764144963 10.4555289323171 -2.737359948082401 5.227764466158549 -1.3686799740412 2.178278373025226 -1.350349882072481 2.175734045254263 1.352982794639098 -10.61044593144629 2.825979287301716 -12.86224447874705 -2.825992100767848 -10.61044593144633 -2.825992100767798 -12.86224447874705 2.825979287301734 -6.431122239373526 1.412989643650867 -5.305222965723146 1.412989643650858 -6.431122239373526 -1.412996050383924 -5.305222965723164 -1.412996050383899 -18.74913042428991 -14.63692005507998 -13.88360005709505 -18.79752453568512 -13.32055676393909 -17.94376725013277 -19.57395918633143 -15.34695536581981 -9.786979593165713 -7.673477682909906 -9.374565212144953 -7.31846002753999 -6.941800028547526 -9.398762267842558 -6.660278381969544 -8.971883625066383 -10.50600177760153 2.720649408174218 -10.52258142340395 -2.680531625677441 -4.423865910935081 -2.737831791075885 -2.211932955467541 -1.368915895537943 -5.261290711701975 -1.34026581283872 -5.253000888800764 1.360324704087109 -10.43779947743348 2.778124667649001 -4.368203459203839 -2.688987647016699 -4.339133801438258 2.717625466155597 -2.169566900719129 1.358812733077798 -2.184101729601919 -1.344493823508349 -5.218899738716739 1.389062333824501 18.5861204811644 -14.76505058173662 13.77936550939809 -18.84494501053288 19.48876976388837 -15.41387039274213 13.12090955371273 -18.03447626008716 6.560454776856362 -9.01723813004358 9.2930602405822 -7.382525290868308 6.889682754699045 -9.422472505266441 9.744384881944184 -7.706935196371063 12.86224447874696 2.825791620706781 10.61044593144629 -2.826150515554888 12.86224447874705 -2.826150515554875 10.61044593144644 2.825791620706781 5.305222965723218 1.412895810353391 6.431122239373481 1.412895810353391 5.305222965723146 -1.413075257777444 6.431122239373526 -1.413075257777438 4.407346409174058 2.754875420631839 10.52313453471532 -2.680309961522778 10.50634358496391 2.720891158259654 5.253171792481954 1.360445579129827 5.261567267357662 -1.340154980761389 2.203673204587029 1.37743771031592 4.345862822087661 2.711004199695371 4.36172004203437 -2.695664125246008 10.46075794161088 -2.724776304844964 5.230378970805441 -1.362388152422482 2.180860021017185 -1.347832062623004 2.17293141104383 1.355502099847685 -12.86224447874695 -2.825976183967639 -10.61044593144633 2.825990416027972 -12.86224447874705 2.825990416027897 -10.61044593144638 -2.825976183967614 -5.305222965723191 -1.412988091983807 -6.431122239373472 -1.412988091983819 -5.305222965723164 1.412995208013986 -6.431122239373526 1.412995208013948 -13.29454013808028 -17.95567278723111 -7.225792948281573 -20.98382388441372 -6.962728423460445 -20.04450400512787 -13.85755824385552 -18.80944035209259 -6.928779121927762 -9.404720176046295 -6.647270069040138 -8.977836393615556 -3.612896474140786 -10.49191194220686 -3.481364211730222 -10.02225200256394 -4.430171035067845 -2.732341685834769 -10.50077901065932 2.734066663135995 -10.52875653309172 -2.667019882103738 -5.264378266545858 -1.333509941051869 -5.25038950532966 1.367033331567997 -2.215085517533923 -1.366170842917385 -4.328518097775763 2.728095874626715 -10.42692928344672 2.802797985646838 -4.378004242621763 -2.678465056738759 -2.189002121310882 -1.339232528369379 -5.21346464172336 1.401398992823419 -2.164259048887882 1.364047937313357 13.09479295026678 -18.04624987728669 7.109488848458013 -21.00842022412065 13.75322481972926 -18.85673073724269 6.740151636101647 -20.09147929057193 3.370075818050824 -10.04573964528597 6.547396475133392 -9.023124938643347 3.554744424229007 -10.50421011206032 6.876612409864629 -9.428365368621344 10.61044593144629 2.826043208161488 12.862244478747 -2.82594132410737 12.86224447874705 2.826043208161514 10.61044593144629 -2.825941324107447 5.305222965723146 -1.412970662053724 5.305222965723146 1.413021604080744 6.431122239373499 -1.412970662053685 6.431122239373526 1.413021604080757 4.401303486300014 2.760784370702243 10.52890011716264 -2.666196886704789 10.50036585142223 2.734971001562761 5.250182925711115 1.367485500781381 5.264450058581321 -1.333098443352395 2.200651743150007 1.380392185351122 4.338997338335714 2.717948747950908 4.368342022762667 -2.688678959368056 10.46744109647829 -2.708407758160335 5.233720548239147 -1.354203879080168 2.184171011381333 -1.344339479684028 2.169498669167857 1.358974373975454 -10.61044593144636 -2.826003796516174 -12.86224447874694 2.825979469314216 -12.86224447874705 -2.826003796516174 -10.61044593144638 2.825979469314233 -5.30522296572319 1.412989734657116 -5.305222965723181 -1.413001898258087 -6.431122239373472 1.412989734657108 -6.431122239373525 -1.413001898258087 -0.1303295216944846 -20.7791541441071 -7.196566260968286 -20.990062942279 -0.07540959329038582 -21.74001114445558 -6.933536276452181 -20.05073707708879 -3.466768138226091 -10.0253685385444 -0.06516476084724229 -10.38957707205355 -3.598283130484143 -10.4950314711395 -0.03770479664519291 -10.87000557222779 -4.442085949347874 -2.719981088299503 -10.48865422912526 2.762966583080145 -10.54034897368759 -2.638160548550109 -5.270174486843797 -1.319080274275055 -5.24432711456263 1.381483291540072 -2.221042974673937 -1.359990544149752 -4.39903924405151 -2.657516153234907 -4.307800004700079 2.748704857416722 -10.40551982253659 2.852631559912603 -5.202759911268297 1.426315779956301 -2.153900002350039 1.374352428708361 -2.199519622025755 -1.328758076617453 6.71090713895255 -20.09756546865577 -0.04506717194452021 -21.74008690407053 7.080210519352136 -21.01451483490556 -0.1000250353029242 -20.77923124592329 -0.05001251765146209 -10.38961562296164 3.355453569476275 -10.04878273432789 -0.0225335859722601 -10.87004345203527 3.540105259676068 -10.50725741745278 12.862244478747 2.825946327616524 10.61044593144629 -2.826051856133897 12.86224447874703 -2.826051856133904 10.61044593144629 2.82594632761644 5.305222965723146 1.41297316380822 6.431122239373499 1.412973163808262 5.305222965723146 -1.413025928066949 6.431122239373517 -1.413025928066952 4.388634374310819 2.773181238710972 10.54086775703753 -2.636542126831748 10.48777562266277 2.764482314003959 5.243887811331383 1.38224115700198 5.270433878518763 -1.318271063415874 2.19431718715541 1.386590619355486 4.328497143600641 2.728049645213909 4.378387600123009 -2.678476127130542 10.47753497153215 -2.683902847387294 5.238767485766075 -1.341951423693647 2.189193800061505 -1.339238063565271 2.164248571800321 1.364024822606955 -10.61044593144629 -2.825941511668355 -12.86224447874705 2.826010708320168 -12.86224447874705 -2.8259415116683 -10.61044593144636 2.826010708320168 -5.305222965723182 1.413005354160084 -5.305222965723146 -1.412970755834178 -6.431122239373526 1.413005354160084 -6.431122239373526 -1.41297075583415 -4.495704144051983 -2.664967449207419 -10.4322800455154 2.891766839544133 -10.59158817915015 -2.507978354408405 -5.295794089575077 -1.253989177204203 -5.216140022757697 1.445883419772067 -2.247852072025991 -1.332483724603709 -4.208366568860864 2.842306276570779 -10.30000224773623 3.080400759006474 -4.491947727247955 -2.559759000559964 -2.245973863623977 -1.279879500279982 -5.150001123868115 1.540200379503237 -2.104183284430432 1.421153138285389 12.86224447874703 2.82603951587651 10.61044593144629 -2.825944977148527 12.86224447874705 -2.825944977148583 10.61044593144629 2.826039515876513 5.305222965723146 1.413019757938257 6.431122239373517 1.413019757938255 5.305222965723146 -1.412972488574264 6.431122239373526 -1.412972488574291 4.32761740458788 2.831720453845512 10.59673143731553 -2.494209468150155 10.42605207004991 2.905243259815798 5.213026035024954 1.452621629907899 5.298365718657763 -1.247104734075077 2.16380870229394 1.415860226922756 4.399491681506321 -2.656972876258102 10.4985636977804 -2.632587427674483 4.306952304418521 2.749261829601255 2.153476152209261 1.374630914800627 5.249281848890198 -1.316293713837241 2.199745840753161 -1.328486438129051 4.496740578981384 -2.554476881970431 10.59228532888561 -2.389536449472878 4.203006248744854 2.847276271266106 2.101503124372427 1.423638135633053 5.296142664442805 -1.194768224736439 2.248370289490692 -1.277238440985215</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"672\" source=\"#ID358\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID354\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID352\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID353\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"144\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 0 8 8 9 9 10 8 9 0 8 2 11 12 16 13 17 14 18 13 17 12 16 15 19 3 24 20 25 1 26 20 25 3 24 21 27 24 32 25 33 26 34 9 38 30 39 31 40 30 39 9 38 8 41 13 46 34 47 14 48 34 47 13 46 35 49 38 54 39 55 25 56 42 60 15 61 12 62 15 61 42 60 43 63 21 68 46 69 20 70 46 69 21 68 47 71 50 76 26 77 51 78 24 82 38 83 25 84 24 88 26 89 50 90 31 94 54 95 55 96 54 95 31 94 30 97 35 102 58 103 34 104 58 103 35 102 59 105 62 110 63 111 39 112 62 116 39 117 38 118 66 122 43 123 42 124 43 123 66 122 67 125 47 130 70 131 46 132 70 131 47 130 71 133 74 138 51 139 75 140 50 144 51 145 74 146 55 150 78 151 79 152 78 151 55 150 54 153 59 158 82 159 58 160 82 159 59 158 83 161 86 166 87 167 63 168 86 172 63 173 62 174 67 178 90 179 91 180 90 179 67 178 66 181 71 186 94 187 70 188 94 187 71 186 95 189 75 194 98 195 99 196 75 200 99 201 74 202 79 206 102 207 103 208 102 207 79 206 78 209 82 214 106 215 107 216 106 215 82 214 83 217 110 222 111 223 87 224 86 228 110 229 87 230 114 234 90 235 115 236 90 235 114 234 91 237 95 242 118 243 94 244 118 243 95 242 119 245 98 250 122 251 123 252 98 256 123 257 99 258 103 262 126 263 127 264 126 263 103 262 102 265 107 270 130 271 131 272 130 271 107 270 106 273 134 278 135 279 111 280 110 284 134 285 111 286 138 290 115 291 139 292 115 291 138 290 114 293 118 298 142 299 143 300 142 299 118 298 119 301 122 306 146 307 147 308 122 312 147 313 123 314 126 318 150 319 127 320 150 319 126 318 151 321 131 326 154 327 155 328 154 327 131 326 130 329 158 334 159 335 135 336 134 340 158 341 135 342 162 346 139 347 163 348 139 347 162 346 138 349 143 354 166 355 167 356 166 355 143 354 142 357 146 362 170 363 171 364 146 368 171 369 147 370 151 374 174 375 150 376 174 375 151 374 175 377 155 382 178 383 179 384 178 383 155 382 154 385 182 390 183 391 159 392 158 396 182 397 159 398 162 402 186 403 187 404 186 403 162 402 163 405 167 410 190 411 191 412 190 411 167 410 166 413 170 418 194 419 195 420 170 424 195 425 171 426 175 430 198 431 174 432 198 431 175 430 199 433 179 438 202 439 203 440 202 439 179 438 178 441 206 446 207 447 183 448 182 452 206 453 183 454 187 458 210 459 211 460 210 459 187 458 186 461 191 466 214 467 215 468 214 467 191 466 190 469 194 474 218 475 219 476 194 480 219 481 195 482 199 486 222 487 198 488 222 487 199 486 223 489 203 494 226 495 227 496 226 495 203 494 202 497 230 502 231 503 207 504 206 508 230 509 207 510 234 514 211 515 210 516 211 515 234 514 235 517 215 522 238 523 239 524 238 523 215 522 214 525 242 530 218 531 243 532 219 536 218 537 242 538 223 542 246 543 222 544 246 543 223 542 247 545 226 550 250 551 227 552 250 551 226 550 251 553 254 558 255 559 231 560 230 564 254 565 231 566 258 570 234 571 259 572 234 571 258 570 235 573 262 578 238 579 263 580 238 579 262 578 239 581 266 586 243 587 267 588 266 592 242 593 243 594 247 598 263 599 246 600 263 599 247 598 262 601 250 606 270 607 271 608 270 607 250 606 251 609 274 614 275 615 255 616 254 620 274 621 255 622 278 626 259 627 279 628 259 627 278 626 258 629 282 634 267 635 283 636 266 640 267 641 282 642 271 646 278 647 279 648 278 647 271 646 270 649 286 654 283 655 275 656 286 660 275 661 274 662 282 666 283 667 286 668</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID354\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID355\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"144\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4 4 5 5 6 6 7 7 6 6 5 5 7 12 5 13 10 14 11 15 10 14 5 13 16 20 17 21 18 22 19 23 18 22 17 21 22 28 4 29 23 30 6 31 23 30 4 29 27 35 28 36 29 37 10 42 11 43 32 44 33 45 32 44 11 43 36 50 18 51 37 52 19 53 37 52 18 51 28 57 40 58 41 59 44 64 45 65 16 66 17 67 16 66 45 65 48 72 22 73 49 74 23 75 49 74 22 73 52 79 27 80 53 81 28 85 41 86 29 87 53 91 27 92 29 93 32 98 33 99 56 100 57 101 56 100 33 99 60 106 36 107 61 108 37 109 61 108 36 107 40 113 64 114 65 115 41 119 40 120 65 121 68 126 69 127 44 128 45 129 44 128 69 127 72 134 48 135 73 136 49 137 73 136 48 135 76 141 52 142 77 143 77 147 52 148 53 149 56 154 57 155 80 156 81 157 80 156 57 155 84 162 60 163 85 164 61 165 85 164 60 163 64 169 88 170 89 171 65 175 64 176 89 177 69 182 68 183 92 184 93 185 92 184 68 183 96 190 72 191 97 192 73 193 97 192 72 191 100 197 101 198 76 199 77 203 100 204 76 205 80 210 81 211 104 212 105 213 104 212 81 211 84 218 85 219 108 220 109 221 108 220 85 219 88 225 112 226 113 227 88 231 113 232 89 233 93 238 116 239 92 240 117 241 92 240 116 239 120 246 96 247 121 248 97 249 121 248 96 247 124 253 125 254 101 255 100 259 124 260 101 261 104 266 105 267 128 268 129 269 128 268 105 267 108 274 109 275 132 276 133 277 132 276 109 275 112 281 136 282 137 283 112 287 137 288 113 289 116 294 140 295 117 296 141 297 117 296 140 295 120 302 121 303 144 304 145 305 144 304 121 303 148 309 149 310 125 311 124 315 148 316 125 317 152 322 128 323 153 324 129 325 153 324 128 323 132 330 133 331 156 332 157 333 156 332 133 331 136 337 160 338 161 339 136 343 161 344 137 345 140 350 164 351 141 352 165 353 141 352 164 351 144 358 145 359 168 360 169 361 168 360 145 359 172 365 173 366 149 367 148 371 172 372 149 373 176 378 152 379 177 380 153 381 177 380 152 379 156 386 157 387 180 388 181 389 180 388 157 387 160 393 184 394 185 395 160 399 185 400 161 401 165 406 164 407 188 408 189 409 188 408 164 407 168 414 169 415 192 416 193 417 192 416 169 415 196 421 197 422 173 423 172 427 196 428 173 429 200 434 176 435 201 436 177 437 201 436 176 435 180 442 181 443 204 444 205 445 204 444 181 443 184 449 208 450 209 451 184 455 209 456 185 457 188 462 189 463 212 464 213 465 212 464 189 463 192 470 193 471 216 472 217 473 216 472 193 471 220 477 221 478 197 479 196 483 220 484 197 485 224 490 200 491 225 492 201 493 225 492 200 491 204 498 205 499 228 500 229 501 228 500 205 499 208 505 232 506 233 507 208 511 233 512 209 513 236 518 237 519 213 520 212 521 213 520 237 519 216 526 217 527 240 528 241 529 240 528 217 527 244 533 221 534 245 535 245 539 221 540 220 541 248 546 224 547 249 548 225 549 249 548 224 547 252 554 228 555 253 556 229 557 253 556 228 555 232 561 256 562 257 563 232 567 257 568 233 569 236 574 260 575 237 576 261 577 237 576 260 575 241 582 264 583 240 584 265 585 240 584 264 583 268 589 244 590 269 591 244 595 245 596 269 597 264 602 248 603 265 604 249 605 265 604 248 603 252 610 253 611 272 612 273 613 272 612 253 611 256 617 276 618 277 619 256 623 277 624 257 625 260 630 280 631 261 632 281 633 261 632 280 631 284 637 268 638 285 639 285 643 268 644 269 645 272 650 273 651 280 652 281 653 280 652 273 651 276 657 284 658 287 659 277 663 276 664 287 665 287 669 284 670 285 671</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID354\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID355\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID359\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID360\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID364\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID364\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID361\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID365\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.357324008988185e-018 0.002095735273219623 -0.999997803944421 1.428762637497407e-018 0.2608439886717864 -0.9653809681021234 1.357324008988168e-018 0.002095735273213525 -0.999997803944421 1.428762637497411e-018 0.2608439886717847 -0.9653809681021238 -1.428762637497411e-018 -0.2608439886717847 0.9653809681021238 -1.357324008988185e-018 -0.002095735273219623 0.999997803944421 -1.428762637497407e-018 -0.2608439886717864 0.9653809681021234 -1.357324008988168e-018 -0.002095735273213525 0.999997803944421 5.000666824631841e-019 -0.2567918074288612 -0.9664667441963116 5.000666824631774e-019 -0.2567918074288629 -0.9664667441963111 -5.000666824631774e-019 0.2567918074288629 0.9664667441963111 -5.000666824631841e-019 0.2567918074288612 0.9664667441963116 -2.286020591985056e-018 -0.4981832167412074 -0.8670717862768821 -2.286020591985096e-018 -0.4981832167412094 -0.867071786276881 2.286020591985056e-018 0.4981832167412074 0.8670717862768821 2.286020591985096e-018 0.4981832167412094 0.867071786276881 -6.858055771993613e-018 -0.7056226073427964 -0.7085878463583424 -6.858055771993708e-018 -0.7056226073428004 -0.7085878463583386 6.858055771993708e-018 0.7056226073428004 0.7085878463583386 6.858055771993613e-018 0.7056226073427964 0.7085878463583424 -8.001070223829628e-018 -0.8649741646300232 -0.5018163952309587 -8.001070223829614e-018 -0.8649741646300241 -0.5018163952309572 8.001070223829628e-018 0.8649741646300232 0.5018163952309587 8.001070223829614e-018 0.8649741646300241 0.5018163952309572 -5.715045332456655e-019 -0.9653796265175301 -0.2608489538121138 -5.715045332456722e-019 -0.96537962651753 -0.260848953812114 5.715045332456655e-019 0.9653796265175301 0.2608489538121138 5.715045332456722e-019 0.96537962651753 0.260848953812114 2.286022406958772e-018 -0.9999977996832321 -0.002097767550154592 2.286022406958698e-018 -0.9999977996832321 -0.002097767550151775 -2.286022406958772e-018 0.9999977996832321 0.002097767550154592 -2.286022406958698e-018 0.9999977996832321 0.002097767550151775 -5.1435407892633e-018 -0.9664655322690486 0.2567963686189982 -5.143540789263351e-018 -0.9664655322690482 0.2567963686189999 5.1435407892633e-018 0.9664655322690486 -0.2567963686189982 5.143540789263351e-018 0.9664655322690482 -0.2567963686189999 -8.001071306872786e-018 -0.8670714378610992 0.498183823147125 -8.001071306872821e-018 -0.8670714378611013 0.4981838231471211 8.001071306872786e-018 0.8670714378610992 -0.498183823147125 8.001071306872821e-018 0.8670714378611013 -0.4981838231471211 -5.715047892338878e-018 -0.708586537670636 0.7056239215275657 -5.715047892338916e-018 -0.7085865376706391 0.7056239215275628 5.715047892338878e-018 0.708586537670636 -0.7056239215275657 5.715047892338916e-018 0.7085865376706391 -0.7056239215275628 -3.714781434290872e-018 -0.5018152321358096 0.8649748394008253 -3.714781434290843e-018 -0.5018152321358057 0.8649748394008278 3.714781434290872e-018 0.5018152321358096 -0.8649748394008253 3.714781434290843e-018 0.5018152321358057 -0.8649748394008278 -1.357324087236494e-018 -0.2608455302381308 0.9653805515726887 -1.357324087236548e-018 -0.2608455302381353 0.9653805515726874 1.357324087236548e-018 0.2608455302381353 -0.9653805515726874 1.357324087236494e-018 0.2608455302381308 -0.9653805515726887 5.00066824342e-019 -0.002098394659843867 0.9999977983675022 5.00066824341991e-019 -0.0020983946598471 0.9999977983675022 -5.00066824341991e-019 0.0020983946598471 -0.9999977983675022 -5.00066824342e-019 0.002098394659843867 -0.9999977983675022 1.285886092699162e-018 0.2567924015669348 0.9664665863326504 1.285886092699151e-018 0.2567924015669318 0.966466586332651 -1.285886092699162e-018 -0.2567924015669348 -0.9664665863326504 -1.285886092699151e-018 -0.2567924015669318 -0.966466586332651 -2.000267021076344e-018 0.4981821975151394 0.8670723718807943 -2.000267021076362e-018 0.4981821975151401 0.867072371880794 2.000267021076344e-018 -0.4981821975151394 -0.8670723718807943 2.000267021076362e-018 -0.4981821975151401 -0.867072371880794 -4.000536746314618e-018 0.7056247595919799 0.7085857031092008 -4.00053674631458e-018 0.7056247595919819 0.7085857031091989 4.00053674631458e-018 -0.7056247595919819 -0.7085857031091989 4.000536746314618e-018 -0.7056247595919799 -0.7085857031092008 4.204657661605452e-033 0.8649761689145237 0.5018129404568533 -1.21193073775685e-032 0.8649761689145231 0.5018129404568542 1.21193073775685e-032 -0.8649761689145231 -0.5018129404568542 -4.204657661605452e-033 -0.8649761689145237 -0.5018129404568533 2.286019992337455e-018 0.9653804430920453 0.2608459317210191 2.286019992337455e-018 0.9653804430920455 0.2608459317210175 -2.286019992337455e-018 -0.9653804430920455 -0.2608459317210175 -2.286019992337455e-018 -0.9653804430920453 -0.2608459317210191 4.000536773496116e-018 0.9999978094868985 0.002093088962490353 4.00053677349617e-018 0.9999978094868985 0.002093088962486192 -4.00053677349617e-018 -0.9999978094868985 -0.002093088962486192 -4.000536773496116e-018 -0.9999978094868985 -0.002093088962490353 7.429555745771746e-018 0.9664663526289716 -0.256793281134948 7.429555745771715e-018 0.9664663526289721 -0.2567932811349458 -7.429555745771715e-018 -0.9664663526289721 0.2567932811349458 -7.429555745771746e-018 -0.9664663526289716 0.256793281134948 8.001073065904097e-018 0.8670738131462032 -0.498179689024054 8.001073065904117e-018 0.8670738131462042 -0.4981796890240521 -8.001073065904117e-018 -0.8670738131462042 0.4981796890240521 -8.001073065904097e-018 -0.8670738131462032 0.498179689024054 2.286020065195515e-018 0.7085865942299627 -0.705623864730766 2.286020065195486e-018 0.7085865942299621 -0.7056238647307667 -2.286020065195486e-018 -0.7085865942299621 0.7056238647307667 -2.286020065195515e-018 -0.7085865942299627 0.705623864730766 -5.715046975223761e-019 0.5018142835855971 -0.8649753897016226 -5.715046975224879e-019 0.5018142835856045 -0.8649753897016184 5.715046975223761e-019 -0.5018142835855971 0.8649753897016226 5.715046975224879e-019 -0.5018142835856045 0.8649753897016184</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID365\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID363\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID366\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">27.57592606178605 5.763926047288433 27.54501506067751 -5.854844720127505 28.53273433475351 -0.04706980378245257 27.52202780079212 -0.04706980378244907 26.59974397119641 5.558144204924854 24.73998964194365 11.18211185132277 23.86467605623466 10.78457791436985 20.2179874206012 15.8382655546944 19.50326776451671 15.27607259060124 14.31814331951038 19.41505375671623 13.81280957653182 18.72650799807924 7.442587205730431 21.66875226978101 7.180994110594869 20.90077510041938 0.05980164344527855 22.44574392129143 0.05980164344524746 21.65067841029049 -7.326991595764483 21.69310909336947 -7.065454819865953 20.9251390127225 -13.70921071502846 18.77357233764413 -14.21458200416499 19.46211927773357 -19.41873183844568 15.34262262532737 -20.1333673911358 15.90482031523034 -23.80492209641044 10.86610404027797 -24.68017861195908 11.26362616270643 -26.5687879146979 5.649065240668816 -27.54503608652599 5.854853581020853 -27.52206684879615 0.04706611174358209 26.56880593685397 -5.64906110558527 24.68013205472282 -11.26361907399176 23.80482748009175 -10.8660993144682 20.13340493729391 -15.90483331120719 19.4187408495236 -15.34262380677985 14.21454295616055 -19.46214172533002 13.70921071502838 -18.77356879328679 7.327029141922628 -21.6931232707988 7.065417273707942 -20.92514846434208 -0.05986734922203147 -22.44576046162567 -0.05986734922203591 -21.65067841029053 -7.442633762966584 -21.66874754397123 -7.181031656752985 -20.90077510041939 -13.81285613376801 -18.72650327226948 -14.3181898767466 -19.4150537567162 -19.50334285683298 -15.27606432043412 -20.21802346491327 -15.83825019581263 -23.86471360239281 -10.78458382163206 -24.74002718810177 -11.18212484729964 -26.59974397119644 -5.55814125129378 -27.57601917625835 -5.763931954550666 -28.53282744922561 0.04706611174357161 -14.2664137246128 0.0235330558717858 -13.77251804326299 2.927426790510427 -13.78800958812917 -2.881965977275333 -13.76103342439808 0.02353305587179104 -13.29987198559822 -2.77907062564689 -12.37001359405088 -5.591062423649821 -11.9323568011964 -5.39229191081603 -10.10901173245664 -7.919125097906314 -9.751671428416488 -7.638032160217059 -7.159094938373302 -9.707526878358099 -6.906428066884002 -9.363251636134741 -3.721316881483292 -10.83437377198561 -3.590515828376493 -10.4503875502097 -0.02993367461101796 -10.82533920514526 -0.02993367461101574 -11.22288023081283 3.532708636853971 -10.46257423217104 3.663514570961314 -10.8465616353994 6.854605357514191 -9.386784396643396 7.107271478080275 -9.731070862665009 9.709370424761799 -7.671311903389926 10.06670246864696 -7.952416655603594 11.90241374004588 -5.433049657234099 12.34006602736141 -5.631809536995879 13.28440296842699 -2.824530552792635 13.76101390039606 -0.02353490189122454 13.77250753033876 -2.927422360063753 -13.28439395734895 2.824532620334408 -12.34008930597954 5.631813081353213 -11.90246104820522 5.433052020138987 -10.0666836955679 7.95241015761517 -9.709365919222838 7.671311312663686 -7.107291002082496 9.731059638866784 -6.854605357514229 9.386786168822065 -3.663495797882241 10.84655454668474 -3.532727409932976 10.46256950636125 0.02990082172262373 10.82533920514525 0.02990082172263927 11.22287196064572 3.590497055297435 10.45038755020969 3.721293602865216 10.8343761348905 6.906404788265909 9.363253999039621 7.159071659755192 9.707526878358115 9.751633882258355 7.638036295300619 10.1089937103006 7.919132777347199 11.93233802811733 5.392288957184925 12.36999482097183 5.591055925661383 13.2998719855982 2.779072102462427 13.78796303089303 2.881963023644217 14.26636716737676 -0.02353490189122628 12.86224447874703 2.929743190342062 15.27491705001244 -2.92979227890684 15.2749170500126 2.929743190342119 12.86224447874696 -2.929792278906809 6.431122239373481 -1.464896139453405 6.431122239373517 1.464871595171031 7.637458525006222 -1.46489613945342 7.637458525006302 1.46487159517106 -15.27491705001257 -2.929731850741423 -12.86224447874703 2.929750167992304 -15.2749170500126 2.929750167992251 -12.86224447874705 -2.92973185074145 -6.431122239373526 -1.464865925370725 -7.637458525006284 -1.464865925370711 -6.431122239373517 1.464875083996152 -7.637458525006302 1.464875083996125 -12.86224447874709 -2.929852871110114 -15.27491705001257 2.929721881732551 -15.27491705001264 -2.929852871110166 -12.86224447874705 2.929721881732527 -6.431122239373525 1.464860940866263 -6.431122239373543 -1.464926435555057 -7.637458525006283 1.464860940866276 -7.637458525006319 -1.464926435555083 -15.27491705001234 -2.929677555424733 -12.86224447874709 2.929823033031287 -15.27491705001264 2.929823033031245 -12.86224447874695 -2.929677555424782 -6.431122239373472 -1.464838777712391 -7.637458525006169 -1.464838777712367 -6.431122239373543 1.464911516515643 -7.63745852500632 1.464911516515623 -12.86224447874695 2.929697425929892 -15.2749170500125 -2.929855373115951 -12.86224447874691 -2.929855373116002 -15.27491705001234 2.929697425929927 -7.637458525006169 1.464848712964963 -6.431122239373472 1.464848712964946 -7.637458525006249 -1.464927686557976 -6.431122239373455 -1.464927686558001 -12.86224447874709 -2.929773314130085 -15.2749170500125 2.929742869038943 -15.27491705001257 -2.929773314130076 -12.86224447874691 2.92974286903891 -6.431122239373455 1.464871434519455 -6.431122239373543 -1.464886657065043 -7.637458525006249 1.464871434519471 -7.637458525006284 -1.464886657065038 -12.86224447874709 2.929540399646413 -15.27491705001243 -2.930000664061414 -12.86224447874695 -2.930000664061421 -15.27491705001257 2.929540399646405 -7.637458525006284 1.464770199823202 -6.431122239373543 1.464770199823206 -7.637458525006213 -1.465000332030707 -6.431122239373472 -1.465000332030711 -12.86224447874695 -2.929581822242644 -15.27491705001243 2.929960781087207 -15.27491705001232 -2.929581822242648 -12.86224447874695 2.9299607810872 -6.431122239373472 1.4649803905436 -6.431122239373472 -1.464790911121322 -7.637458525006213 1.464980390543604 -7.63745852500616 -1.464790911121324 -12.86224447874698 -2.929795632432642 -15.27491705001232 2.929734008047276 -15.27491705001264 -2.929795632432599 -12.86224447874695 2.929734008047279 -6.431122239373472 1.46486700402364 -6.43112223937349 -1.464897816216321 -7.63745852500616 1.464867004023638 -7.63745852500632 -1.4648978162163 -12.86224447874698 2.929854278460752 -15.27491705001246 -2.929664031079308 -12.86224447874705 -2.929664031079275 -15.27491705001264 2.929854278460836 -7.63745852500632 1.464927139230418 -6.43112223937349 1.464927139230376 -7.637458525006231 -1.464832015539654 -6.431122239373526 -1.464832015539638 -12.86224447874709 -2.929746866326544 -15.27491705001246 2.929799501924643 -15.2749170500126 -2.929746866326596 -12.86224447874705 2.929799501924695 -6.431122239373526 1.464899750962348 -6.431122239373543 -1.464873433163272 -7.637458525006231 1.464899750962321 -7.637458525006302 -1.464873433163298 -15.2749170500125 -2.92977425536968 -12.86224447874709 2.929742564000939 -15.2749170500126 2.929742564000883 -12.86224447874695 -2.929774255369613 -6.431122239373472 -1.464887127684806 -7.637458525006249 -1.46488712768484 -6.431122239373543 1.46487128200047 -7.637458525006302 1.464871282000442 -15.27491705001246 -2.929781790797626 -12.86224447874695 2.929741567953739 -15.2749170500125 2.92974156795366 -12.86224447874693 -2.929781790797601 -6.431122239373464 -1.4648908953988 -7.637458525006231 -1.464890895398813 -6.431122239373472 1.464870783976869 -7.637458525006249 1.46487078397683 12.86224447874707 2.929790045178396 15.27491705001246 -2.929772829085463 15.27491705001257 2.929790045178342 12.86224447874693 -2.929772829085486 6.431122239373464 -1.464886414542743 6.431122239373535 1.464895022589198 7.637458525006231 -1.464886414542731 7.637458525006284 1.464895022589171 12.86224447874705 2.929757835224654 15.27491705001257 -2.929758053031452 15.2749170500126 2.929757835224672 12.86224447874707 -2.9297580530314 6.431122239373535 -1.4648790265157 6.431122239373526 1.464878917612327 7.637458525006284 -1.464879026515726 7.637458525006302 1.464878917612336 15.2749170500125 2.929803538710692 12.86224447874705 -2.929750667340226 15.2749170500126 -2.929750667340216 12.86224447874705 2.929803538710713 6.431122239373526 1.464901769355357 7.637458525006249 1.464901769355346 6.431122239373526 -1.464875333670113 7.637458525006302 -1.464875333670108 15.27491705001246 2.929593042074761 12.86224447874705 -2.92993527925525 15.2749170500125 -2.929935279255278 12.86224447874705 2.929593042074726 6.431122239373526 1.464796521037363 7.637458525006231 1.464796521037381 6.431122239373526 -1.464967639627625 7.637458525006249 -1.464967639627639 15.27491705001232 2.929842954384168 12.86224447874705 -2.9296825896425 15.27491705001246 -2.929682589642478 12.86224447874696 2.929842954384198 6.431122239373481 1.464921477192099 7.63745852500616 1.464921477192084 6.431122239373526 -1.46484129482125 7.637458525006231 -1.464841294821239 15.27491705001232 -2.929740962824745 12.86224447874705 2.92978013852247 12.86224447874696 -2.929740962824737 15.2749170500125 2.929780138522509 7.637458525006249 1.464890069261254 7.63745852500616 -1.464870481412373 6.431122239373526 1.464890069261235 6.431122239373481 -1.464870481412369 15.2749170500125 -2.9299561138927 12.862244478747 2.929584292566244 12.86224447874705 -2.929956113892731 15.27491705001248 2.92958429256624 7.63745852500624 1.46479214628312 7.637458525006249 -1.46497805694635 6.431122239373499 1.464792146283122 6.431122239373526 -1.464978056946366 15.27491705001248 -2.929568316003488 12.86224447874695 2.929938126060063 12.862244478747 -2.929568316003465 15.27491705001243 2.929938126060052 7.637458525006213 1.464969063030026 7.63745852500624 -1.464784158001744 6.431122239373472 1.464969063030032 6.431122239373499 -1.464784158001733 15.27491705001243 -2.929777731100098 12.86224447874698 2.929762392715941 12.86224447874695 -2.929777731100067 15.27491705001244 2.929762392715948 7.637458525006222 1.464881196357974 7.637458525006213 -1.464888865550049 6.43112223937349 1.464881196357971 6.431122239373472 -1.464888865550033 12.86224447874698 2.929710500811676 15.27491705001244 -2.929833042641431 15.27491705001246 2.929710500811587 12.86224447874698 -2.929833042641436 6.43112223937349 -1.464916521320718 6.43112223937349 1.464855250405838 7.637458525006222 -1.464916521320715 7.637458525006231 1.464855250405794 15.27491705001244 2.92982644805314 12.86224447874698 -2.929692188965083 15.27491705001246 -2.929692188965185 12.86224447874696 2.929826448053173 6.431122239373481 1.464913224026587 7.637458525006222 1.46491322402657 6.43112223937349 -1.464846094482541 7.637458525006231 -1.464846094482593</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"288\" source=\"#ID366\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID362\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID360\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID361\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 1 1 26 26 27 27 26 26 1 1 3 3 27 27 26 26 28 28 27 27 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 25 25 46 46 25 25 24 24 46 46 24 24 47 47 96 96 97 97 98 98 97 97 96 96 99 99 104 104 96 105 98 106 96 105 104 104 105 107 108 112 104 113 109 114 104 113 108 112 105 115 112 120 108 121 109 122 108 121 112 120 113 123 113 128 116 129 117 130 116 129 113 128 112 131 120 136 116 137 121 138 116 137 120 136 117 139 120 144 124 145 125 146 124 145 120 144 121 147 128 152 124 153 129 154 124 153 128 152 125 155 132 160 129 161 133 162 129 161 132 160 128 163 132 168 136 169 137 170 136 169 132 168 133 171 140 176 136 177 141 178 136 177 140 176 137 179 144 184 140 185 141 186 140 185 144 184 145 187 148 192 145 193 144 194 145 193 148 192 149 195 152 200 148 201 153 202 148 201 152 200 149 203 156 208 153 209 157 210 153 209 156 208 152 211 160 216 156 217 157 218 156 217 160 216 161 219 164 224 161 225 160 226 161 225 164 224 165 227 168 232 165 233 164 234 165 233 168 232 169 235 168 240 172 241 169 242 172 241 168 240 173 243 173 248 176 249 172 250 176 249 173 248 177 251 177 256 180 257 176 258 180 257 177 256 181 259 181 264 184 265 180 266 184 265 181 264 185 267 188 272 185 273 189 274 185 273 188 272 184 275 97 280 188 281 189 282 188 281 97 280 99 283</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID362\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID363\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">48 48 49 49 50 50 49 49 51 51 50 50 51 51 52 52 50 50 50 50 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 58 58 60 60 59 59 60 60 61 61 59 59 59 59 61 61 62 62 61 61 63 63 62 62 62 62 63 63 64 64 63 63 65 65 64 64 64 64 65 65 66 66 65 65 67 67 66 66 66 66 67 67 68 68 67 67 69 69 68 68 68 68 69 69 70 70 69 69 71 71 70 70 72 72 73 73 71 71 70 70 71 71 73 73 51 51 49 49 74 74 49 49 75 75 74 74 74 74 75 75 76 76 75 75 77 77 76 76 76 76 77 77 78 78 77 77 79 79 78 78 78 78 79 79 80 80 79 79 81 81 80 80 80 80 81 81 82 82 82 82 81 81 83 83 81 81 84 84 83 83 83 83 84 84 85 85 84 84 86 86 85 85 85 85 86 86 87 87 86 86 88 88 87 87 87 87 88 88 89 89 88 88 90 90 89 89 89 89 90 90 91 91 90 90 92 92 91 91 91 91 92 92 93 93 92 92 94 94 93 93 93 93 94 94 72 72 72 72 94 94 73 73 95 95 73 73 94 94 100 100 101 101 102 102 103 103 102 102 101 101 106 108 107 109 101 110 103 111 101 110 107 109 106 116 110 117 107 118 111 119 107 118 110 117 114 124 115 125 110 126 111 127 110 126 115 125 115 132 114 133 118 134 119 135 118 134 114 133 119 140 122 141 118 142 123 143 118 142 122 141 123 148 122 149 126 150 127 151 126 150 122 149 127 156 130 157 126 158 131 159 126 158 130 157 130 164 134 165 131 166 135 167 131 166 134 165 135 172 134 173 138 174 139 175 138 174 134 173 139 180 142 181 138 182 143 183 138 182 142 181 146 188 147 189 142 190 143 191 142 190 147 189 150 196 151 197 146 198 147 199 146 198 151 197 150 204 154 205 151 206 155 207 151 206 154 205 154 212 158 213 155 214 159 215 155 214 158 213 162 220 163 221 158 222 159 223 158 222 163 221 166 228 167 229 162 230 163 231 162 230 167 229 170 236 171 237 166 238 167 239 166 238 171 237 174 244 171 245 175 246 170 247 175 246 171 245 178 252 174 253 179 254 175 255 179 254 174 253 182 260 178 261 183 262 179 263 183 262 178 261 186 268 182 269 187 270 183 271 187 270 182 269 187 276 190 277 186 278 191 279 186 278 190 277 100 284 102 285 190 286 191 287 190 286 102 285</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID362\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID363\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID367\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID368\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID372\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-0.763745852500616 -1.436485524582849 0.3818088725044516 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.7637458525006249 -1.28872021610141 0.7405885836107022</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID372\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID369\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID373\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762080882819e-018 0.5017398950377737 -0.8650185418402798 5.715050599695061e-019 0.7085275831213713 -0.7056831186560921 5.715050599694446e-019 0.7085275831213729 -0.7056831186560907 1.428762080881852e-018 0.5017398950377386 -0.8650185418403001 -1.428762080881852e-018 -0.5017398950377386 0.8650185418403001 -1.428762080882819e-018 -0.5017398950377737 0.8650185418402798 -5.715050599695061e-019 -0.7085275831213713 0.7056831186560921 -5.715050599694446e-019 -0.7085275831213729 0.7056831186560907 -9.286952941388407e-019 0.2607625543991058 -0.9654029677928556 -9.286952941388763e-019 0.2607625543991116 -0.9654029677928541 9.286952941388763e-019 -0.2607625543991116 0.9654029677928541 9.286952941388407e-019 -0.2607625543991058 0.9654029677928556 -7.14381254244789e-020 0.002012725556721015 -0.9999979744658651 -7.143812542448248e-020 0.002012725556727595 -0.9999979744658651 7.14381254244789e-020 -0.002012725556721015 0.9999979744658651 7.143812542448248e-020 -0.002012725556727595 0.9999979744658651 -8.572571838953785e-019 -0.2568741755083748 -0.9664448551039488 -8.572571838953487e-019 -0.2568741755083704 -0.9664448551039501 8.572571838953487e-019 0.2568741755083704 0.9664448551039501 8.572571838953785e-019 0.2568741755083748 0.9664448551039488 -2.000267235225416e-018 -0.4982546428953812 -0.8670307438800519 -2.000267235225424e-018 -0.4982546428953847 -0.8670307438800501 2.000267235225424e-018 0.4982546428953847 0.8670307438800501 2.000267235225416e-018 0.4982546428953812 0.8670307438800519 1.045111957692991e-006 -0.7056819897722565 -0.7085287074706123 1.045111957693077e-006 -0.7056819897722642 -0.7085287074706047 -1.045111957692991e-006 0.7056819897722565 0.7085287074706123 -1.045111957693077e-006 0.7056819897722642 0.7085287074706047 1.703558339410631e-006 -0.8650181793754788 -0.5017405199373778 1.703555472269594e-006 -0.8650186691821249 -0.5017396754926639 -1.703558339410631e-006 0.8650181793754788 0.5017405199373778 -1.703555472269594e-006 0.8650186691821249 0.5017396754926639 6.584446236329073e-007 -0.9654035292207907 -0.2607604758540074 6.584446236328554e-007 -0.9654035292207932 -0.2607604758539974 -6.584446236329073e-007 0.9654035292207907 0.2607604758540074 -6.584446236328554e-007 0.9654035292207932 0.2607604758539974 -6.286553020284208e-018 -0.999997973793477 -0.002013059596886011 -6.286553020284232e-018 -0.999997973793477 -0.002013059596885226 6.286553020284208e-018 0.999997973793477 0.002013059596886011 6.286553020284232e-018 0.999997973793477 0.002013059596885226 -8.001067536444891e-018 -0.9664454482419091 0.2568719439185513 -8.001067536444849e-018 -0.9664454482419086 0.2568719439185535 8.001067536444891e-018 0.9664454482419091 -0.2568719439185513 8.001067536444849e-018 0.9664454482419086 -0.2568719439185535 -6.858064911194342e-018 -0.8670284530084556 0.4982586293018563 -6.858064911194386e-018 -0.8670284530084529 0.4982586293018606 6.858064911194342e-018 0.8670284530084556 -0.4982586293018563 6.858064911194386e-018 0.8670284530084529 -0.4982586293018606 -1.714512912291224e-018 -0.7085272435711623 0.7056834595747947 -1.714512912290773e-018 -0.7085272435711557 0.7056834595748014 1.714512912291224e-018 0.7085272435711623 -0.7056834595747947 1.714512912290773e-018 0.7085272435711557 -0.7056834595748014 2.000267850227171e-018 -0.50174509130913 0.8650155278069827 2.000267850227025e-018 -0.5017450913091236 0.8650155278069864 -2.000267850227171e-018 0.50174509130913 -0.8650155278069827 -2.000267850227025e-018 0.5017450913091236 -0.8650155278069864 -9.286958702615267e-019 -0.2607603696967824 0.9654035578946233 -9.286958702616151e-019 -0.260760369696751 0.9654035578946318 9.286958702616151e-019 0.260760369696751 -0.9654035578946318 9.286958702615267e-019 0.2607603696967824 -0.9654035578946233 -9.286950770806969e-019 -0.002010277094332024 0.9999979793909607 -9.286950770806418e-019 -0.002010277094311723 0.9999979793909607 9.286950770806969e-019 0.002010277094332024 -0.9999979793909607 9.286950770806418e-019 0.002010277094311723 -0.9999979793909607 5.715048573591528e-019 0.2568730418156993 0.9664451564306947 5.715048573588878e-019 0.2568730418156698 0.9664451564307025 -5.715048573591528e-019 -0.2568730418156993 -0.9664451564306947 -5.715048573588878e-019 -0.2568730418156698 -0.9664451564307025 2.000267221612142e-018 0.4982543657066462 0.8670309031714313 2.000267221612171e-018 0.4982543657066573 0.8670309031714246 -2.000267221612171e-018 -0.4982543657066573 -0.8670309031714246 -2.000267221612142e-018 -0.4982543657066462 -0.8670309031714313 4.572040930296596e-018 0.7056830209675885 0.70852768041768 4.572040930296914e-018 0.7056830209676014 0.7085276804176672 -4.572040930296596e-018 -0.7056830209675885 -0.70852768041768 -4.572040930296914e-018 -0.7056830209676014 -0.7085276804176672 -1.14300938579175e-018 0.8650179182246978 0.5017409701730664 -1.143009385792095e-018 0.8650179182247008 0.5017409701730615 1.143009385792095e-018 -0.8650179182247008 -0.5017409701730615 1.14300938579175e-018 -0.8650179182246978 -0.5017409701730664 -2.857524059864703e-018 0.9654022143532335 0.2607653437899165 -2.857524059865316e-018 0.9654022143532302 0.2607653437899289 2.857524059865316e-018 -0.9654022143532302 -0.2607653437899289 2.857524059864703e-018 -0.9654022143532335 -0.2607653437899165 8.572576927432837e-018 0.9999979724130936 0.002013745192837731 8.572576927432834e-018 0.9999979724130936 0.002013745192837834 -8.572576927432834e-018 -0.9999979724130936 -0.002013745192837834 -8.572576927432837e-018 -0.9999979724130936 -0.002013745192837731 1.028708566471013e-017 0.9664447927409161 -0.2568744101384328 1.028708566471029e-017 0.9664447927409177 -0.2568744101384266 -1.028708566471029e-017 -0.9664447927409177 0.2568744101384266 -1.028708566471013e-017 -0.9664447927409161 0.2568744101384328 1.714514848940942e-018 0.8670306548123118 -0.4982547978853128 1.714514848941008e-018 0.8670306548123127 -0.4982547978853114 -1.714514848941008e-018 -0.8670306548123127 0.4982547978853114 -1.714514848940942e-018 -0.8670306548123118 0.4982547978853128</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID373\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID371\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID374\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">28.72971049165699 6.007126260736706 28.69872439823219 -6.09804847793303 29.72717074101186 -0.04706980378243859 28.53273433475355 -0.04706980378241763 27.57592606178616 5.76392604728844 25.7744043220282 11.65192704880838 24.73998964194376 11.18211185132279 21.062597259995 16.50268132861221 20.2179874206012 15.8382655546944 14.91535251156158 20.22880748247864 14.31814331951052 19.41505375671623 7.751723499126264 22.57635112608661 7.442587205730467 21.66875226978099 0.05980164344520748 23.38537904207242 0.05980164344520748 22.44574392129145 -7.636156424240395 22.60071976419947 -7.326991595764447 21.69310909336947 -14.21458200416507 19.46211927773357 -14.81179119621629 20.27586473332886 -20.13336739113572 15.90482031523034 -20.97801477668778 16.56924081495793 -24.68017861195898 11.26362616270643 -25.71460380496778 11.73344963035913 -27.54503608652592 5.854853581020838 -28.69876344623657 6.098035481956177 -28.53282744922561 0.0470661117435786 27.5450150606774 -5.854844720127502 25.71453772372937 -11.73342718276273 24.68013205472289 -11.26361907399176 20.97795770652724 -16.56924435931522 20.13340493729391 -15.90483331120722 14.81174313713382 -20.27586000751904 14.21454295616059 -19.46214172533004 7.636146662239294 -22.60070086096038 7.327029141922557 -21.6931232707988 -0.05986734922217803 -23.38535305011864 -0.05986734922200039 -22.44576046162567 -7.442633762966477 -21.6687475439712 -7.751770807285503 -22.57637002932572 -14.31818987674653 -19.41505375671621 -14.91540807987584 -20.22880748247863 -20.21802346491317 -15.83825019581262 -21.06255070275907 -16.50266951408773 -24.74002718810198 -11.18212484729966 -25.77444337003271 -11.65193295607063 -27.57601917625835 -5.76393195455067 -28.72973752489099 -6.007128032915357 -29.72717074101174 0.0470661117435751 -14.86358537050587 0.02353305587178755 -14.34938172311829 3.049017740978088 -14.3648687624455 -3.003564016457678 -14.2664137246128 0.0235330558717893 -13.78800958812917 -2.881965977275335 -12.88722168501636 -5.825966478035316 -12.37001359405099 -5.591062423649832 -10.53127535137954 -8.251334757043864 -10.10901173245659 -7.919125097906307 -7.45770403993792 -10.11440374123932 -7.159094938373267 -9.707526878358106 -3.875885403642752 -11.28818501466286 -3.721316881483239 -10.8343737719856 -0.02993367461108901 -11.69267652505932 -0.0299336746110002 -11.22288023081284 3.663514570961278 -10.8465616353994 3.818073331119647 -11.30035043048019 7.107271478080293 -9.731070862665019 7.405871568566908 -10.13793000375952 10.06670246864696 -7.952416655603611 10.48897885326362 -8.28462217965761 12.34006602736145 -5.631809536995879 12.85726886186469 -5.866713591381362 13.7725075303387 -2.927422360063751 14.26636716737677 -0.02353490189120882 14.34936219911609 -3.049024238966515 -13.77251804326296 2.927426790510419 -12.85730190248389 5.866724815179567 -12.34008930597949 5.631813081353215 -10.48900738834389 8.284620407478963 -10.06668369556786 7.952410157615169 -7.405895598108147 10.13793236666443 -7.107291002082534 9.731059638866787 -3.818078212120197 11.30035988209974 -3.663495797882224 10.84655454668473 0.02990082172260374 11.22287196064572 0.02990082172260374 11.69268952103621 3.721293602865234 10.83437613489049 3.875861749563132 11.28817556304331 7.159071659755262 9.707526878358113 7.45767625578079 10.11440374123932 10.1089937103006 7.919132777347201 10.5312986299975 8.251340664306103 12.36999482097188 5.591055925661395 12.8872021610141 5.825963524404191 13.78796303089308 2.88196302364422 14.36485524582849 3.003563130368353 14.86358537050593 -0.0235349018912193 16.15957962910908 3.052369011605017 15.2749170500125 -3.052489088735269 16.15957962910919 -3.05248908873528 15.27491705001234 3.052369011605174 7.637458525006169 1.526184505802587 8.079789814554541 1.526184505802509 7.637458525006249 -1.526244544367635 8.079789814554594 -1.52624454436764 16.1595796291089 3.052393434432479 15.27491705001234 -3.05240474671089 16.15957962910908 -3.052404746711059 15.27491705001257 3.052393434432461 7.637458525006284 1.52619671721623 8.079789814554452 1.526196717216239 7.637458525006169 -1.526202373355445 8.079789814554541 -1.526202373355529 15.27491705001246 3.052465505274848 16.1595796291089 -3.052357776085077 16.15957962910905 3.05246550527482 15.27491705001257 -3.052357776085104 7.637458525006284 -1.526178888042552 7.637458525006231 1.526232752637424 8.079789814554452 -1.526178888042539 8.079789814554523 1.52623275263741 -16.15957962910892 -3.05237354033085 -15.27491705001246 3.052416952581463 -16.15957962910905 3.052416952581491 -15.27491705001257 -3.052373540330827 -7.637458525006284 -1.526186770165414 -8.079789814554461 -1.526186770165425 -7.637458525006231 1.526208476290732 -8.079789814554523 1.526208476290746 -16.1595796291089 -3.052465806413212 -15.27491705001257 3.052375467693421 -16.15957962910892 3.052375467693405 -15.27491705001257 -3.052465806413236 -7.637458525006284 -1.526232903206618 -8.079789814554452 -1.526232903206606 -7.637458525006284 1.526187733846711 -8.079789814554461 1.526187733846702 -15.2749170500126 -3.052461191049092 -16.1595796291089 3.052369534568117 -16.15957962910917 -3.052461191049134 -15.27491705001257 3.052369534568098 -7.637458525006284 1.526184767284049 -7.637458525006302 -1.526230595524546 -8.079789814554452 1.526184767284059 -8.079789814554585 -1.526230595524567 -15.2748497760961 -3.052427910611382 -16.15952474692822 3.052390554465293 -16.15951235518956 -3.05243276531964 -15.27486216783468 3.05239166573236 -7.637431083917338 1.52619583286618 -7.637424888048051 -1.526213955305691 -8.079762373464108 1.526195277232647 -8.079756177594778 -1.52621638265982 -15.27488067987029 3.052479826373591 -16.15953903824096 -3.052340909406815 -15.27487645914545 -3.052340530900251 -16.15954325896589 3.052475085430112 -8.079771629482943 1.526237542715056 -7.637440339935146 1.526239913186796 -8.079769519120479 -1.526170454703408 -7.637438229572727 -1.526170265450126 -15.2749170500125 3.052418165791669 -16.15957962910889 -3.052394161251984 -15.2749170500123 -3.052394161251988 -16.15957962910889 3.052418165791704 -8.079789814554443 1.526209082895852 -7.637458525006249 1.526209082895835 -8.079789814554443 -1.526197080625992 -7.637458525006151 -1.526197080625994 -15.2749170500123 3.052374063043222 -16.15957962910892 -3.052455040458447 -15.27491705001232 -3.052455040458483 -16.15957962910888 3.052374063043219 -8.079789814554442 1.52618703152161 -7.63745852500615 1.526187031521611 -8.079789814554459 -1.526227520229223 -7.637458525006159 -1.526227520229242 -15.27491705001232 3.052318411927153 -16.15957962910915 -3.052488191674192 -15.27491705001257 -3.052488191674224 -16.15957962910892 3.05231841192716 -8.079789814554461 1.52615920596358 -7.63745852500616 1.526159205963577 -8.079789814554577 -1.526244095837096 -7.637458525006284 -1.526244095837112 -15.27491705001232 -3.052197806521551 -16.15957962910915 3.05265172018527 -16.1595796291089 -3.052197806521591 -15.27491705001257 3.052651720185259 -7.637458525006284 1.52632586009263 -7.63745852500616 -1.526098903260776 -8.079789814554577 1.526325860092635 -8.079789814554452 -1.526098903260796 -15.27491705001257 -3.0525561576722 -16.1595796291089 3.052245515360641 -16.15957962910915 -3.052556157672223 -15.27491705001232 3.05224551536068 -7.63745852500616 1.52612275768034 -7.637458525006284 -1.5262780788361 -8.079789814554452 1.526122757680321 -8.079789814554577 -1.526278078836111 -16.15957962910908 -3.052423131493118 -15.27491705001257 3.052388317079474 -16.15957962910915 3.052388317079447 -15.27491705001248 -3.052423131493245 -7.63745852500624 -1.526211565746623 -8.079789814554541 -1.526211565746559 -7.637458525006284 1.526194158539737 -8.079789814554577 1.526194158539723 -15.27491705001243 -3.052249109402259 -16.15957962910908 3.052553877330226 -16.15957962910915 -3.052249109402342 -15.27491705001248 3.052553877330089 -7.63745852500624 1.526276938665044 -7.637458525006213 -1.52612455470113 -8.079789814554541 1.526276938665113 -8.079789814554577 -1.526124554701171 15.27491705001246 3.052416535812357 16.15957962910915 -3.05241669005392 16.15957962910915 3.052416535812224 15.27491705001243 -3.052416690054004 7.637458525006213 -1.526208345027002 7.637458525006231 1.526208267906179 8.079789814554577 -1.52620834502696 8.079789814554577 1.526208267906112 16.15957962910905 3.052438862169345 15.27491705001246 -3.052369155945408 16.15957962910915 -3.052369155945526 15.27491705001246 3.052438862169398 7.637458525006231 1.526219431084699 8.079789814554523 1.526219431084672 7.637458525006231 -1.526184577972704 8.079789814554577 -1.526184577972763 15.27491705001264 3.05243197721078 16.15957962910905 -3.052388094537172 16.15957962910919 3.052431977210855 15.27491705001246 -3.052388094537107 7.637458525006231 -1.526194047268554 7.63745852500632 1.52621598860539 8.079789814554523 -1.526194047268586 8.079789814554594 1.526215988605428 16.15957962910919 -3.052517161824061 15.27491705001257 3.052318676844949 15.27491705001264 -3.052517161824126 16.15957962910915 3.052318676844975 8.079789814554577 1.526159338422487 8.079789814554594 -1.526258580912031 7.637458525006284 1.526159338422474 7.63745852500632 -1.526258580912063 16.15957962910915 -3.052362761715934 15.27491705001246 3.05243305502342 15.27491705001257 -3.052362761715977 16.1595796291089 3.052433055023369 8.07978981455445 1.526216527511684 8.079789814554575 -1.526181380857967 7.63745852500623 1.52621652751171 7.637458525006283 -1.526181380857988 16.15957962910901 3.052501452363778 15.27491705001246 -3.052324167367494 16.1595796291089 -3.052324167367532 15.27491705001232 3.052501452363784 7.63745852500616 1.526250726181892 8.079789814554506 1.526250726181889 7.637458525006231 -1.526162083683747 8.079789814554452 -1.526162083683766 16.15957962910922 3.052376857360143 15.27491705001232 -3.052456883429417 16.15957962910901 -3.052456883429418 15.27491705001232 3.052376857360129 7.637458525006159 1.526188428680064 8.07978981455461 1.526188428680072 7.637458525006159 -1.526228441714708 8.079789814554504 -1.526228441714709 16.15957962910922 -3.052351123981224 15.2749170500125 3.052455255490937 15.27491705001232 -3.052351123981252 16.15957962910908 3.052455255490922 8.079789814554541 1.526227627745461 8.079789814554612 -1.526175561990612 7.637458525006249 1.526227627745469 7.63745852500616 -1.526175561990626 16.15957962910919 3.052429041414678 15.2749170500125 -3.052393678245672 16.15957962910908 -3.052393678245677 15.2749170500125 3.052429041414679 7.637458525006248 1.52621452070734 8.079789814554593 1.526214520707339 7.637458525006248 -1.526196839122836 8.079789814554539 -1.526196839122838</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"288\" source=\"#ID374\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID370\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID368\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID369\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 1 1 26 26 27 27 26 26 1 1 3 3 27 27 26 26 28 28 27 27 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 35 35 37 37 38 38 38 38 37 37 39 39 38 38 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 25 25 46 46 25 25 24 24 46 46 24 24 47 47 96 96 97 97 98 98 97 97 96 96 99 99 104 104 99 105 96 106 99 105 104 104 105 107 108 112 104 113 109 114 104 113 108 112 105 115 112 120 108 121 109 122 108 121 112 120 113 123 116 128 113 129 112 130 113 129 116 128 117 131 120 136 116 137 121 138 116 137 120 136 117 139 124 144 121 145 125 146 121 145 124 144 120 147 124 152 128 153 129 154 128 153 124 152 125 155 129 160 132 161 133 162 132 161 129 160 128 163 133 168 136 169 137 170 136 169 133 168 132 171 137 176 140 177 141 178 140 177 137 176 136 179 144 184 140 185 145 186 140 185 144 184 141 187 148 192 145 193 149 194 145 193 148 192 144 195 152 200 148 201 149 202 148 201 152 200 153 203 156 208 152 209 157 210 152 209 156 208 153 211 160 216 157 217 161 218 157 217 160 216 156 219 164 224 160 225 161 226 160 225 164 224 165 227 168 232 164 233 169 234 164 233 168 232 165 235 169 240 172 241 168 242 172 241 169 240 173 243 173 248 176 249 172 250 176 249 173 248 177 251 180 256 176 257 177 258 176 257 180 256 181 259 184 264 181 265 180 266 181 265 184 264 185 267 184 272 188 273 185 274 188 273 184 272 189 275 98 280 188 281 189 282 188 281 98 280 97 283</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID370\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID371\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">48 48 49 49 50 50 49 49 51 51 50 50 51 51 52 52 50 50 50 50 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 58 58 60 60 59 59 59 59 60 60 61 61 60 60 62 62 61 61 62 62 63 63 61 61 61 61 63 63 64 64 63 63 65 65 64 64 64 64 65 65 66 66 65 65 67 67 66 66 66 66 67 67 68 68 67 67 69 69 68 68 68 68 69 69 70 70 69 69 71 71 70 70 72 72 73 73 71 71 70 70 71 71 73 73 51 51 49 49 74 74 49 49 75 75 74 74 74 74 75 75 76 76 75 75 77 77 76 76 76 76 77 77 78 78 77 77 79 79 78 78 78 78 79 79 80 80 79 79 81 81 80 80 80 80 81 81 82 82 82 82 81 81 83 83 81 81 84 84 83 83 83 83 84 84 85 85 84 84 86 86 85 85 85 85 86 86 87 87 86 86 88 88 87 87 87 87 88 88 89 89 88 88 90 90 89 89 89 89 90 90 91 91 90 90 92 92 91 91 91 91 92 92 93 93 92 92 94 94 93 93 93 93 94 94 72 72 72 72 94 94 73 73 95 95 73 73 94 94 100 100 101 101 102 102 103 103 102 102 101 101 106 108 107 109 100 110 101 111 100 110 107 109 106 116 110 117 107 118 111 119 107 118 110 117 114 124 115 125 110 126 111 127 110 126 115 125 118 132 119 133 114 134 115 135 114 134 119 133 118 140 122 141 119 142 123 143 119 142 122 141 122 148 126 149 123 150 127 151 123 150 126 149 127 156 126 157 130 158 131 159 130 158 126 157 130 164 131 165 134 166 135 167 134 166 131 165 134 172 135 173 138 174 139 175 138 174 135 173 138 180 139 181 142 182 143 183 142 182 139 181 143 188 146 189 142 190 147 191 142 190 146 189 146 196 150 197 147 198 151 199 147 198 150 197 154 204 155 205 150 206 151 207 150 206 155 205 154 212 158 213 155 214 159 215 155 214 158 213 158 220 162 221 159 222 163 223 159 222 162 221 166 228 167 229 162 230 163 231 162 230 167 229 166 236 170 237 167 238 171 239 167 238 170 237 174 244 171 245 175 246 170 247 175 246 171 245 178 252 174 253 179 254 175 255 179 254 174 253 182 260 183 261 179 262 178 263 179 262 183 261 186 268 187 269 182 270 183 271 182 270 187 269 190 276 187 277 191 278 186 279 191 278 187 277 102 284 103 285 191 286 190 287 191 286 103 285</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID370\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID371\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID375\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID376\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID380\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035627 -0.3578613696232667 1.324001740206996 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151409 -0.35666972965487 1.31956378430982 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 0.6831636119784472 1.189256688460091 0.848191442515148 0.680868640605695 1.185278447723705 0.848191442515148 0.680868640605695 1.185278447723705 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035627 -0.6883468591155371 1.186265836591588 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.6860480580346522 1.182286995116669 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151387 0.9644406560028058 0.9686694797989038 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 0.6883464085616424 -1.186264860391474 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151387 0.6860518126504815 -1.182286394378136 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151333 -0.6808676644055873 -1.185277922077488 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.3508928026645748 -1.321112338057901 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035609 0.002993367461099794 -1.371508293416812 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151387 0.002993367461098018 -1.366914445870862 -0.2249169753035609 0.002993367461099794 -1.371508293416812</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID380\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID377\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID381\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.00428062881210491 -0.2567048492765375 -0.9664803653333486 -0.004280981952864871 0.002183299616824533 -0.999988453131486 -0.004280628810128404 -0.2567062461107217 -0.9664799943220406 -0.004280981954898488 0.002184853357166072 -0.9999884497379504 0.004280981954898488 -0.002184853357166072 0.9999884497379504 0.00428062881210491 0.2567048492765375 0.9664803653333486 0.004280981952864871 -0.002183299616824533 0.999988453131486 0.004280628810128404 0.2567062461107217 0.9664799943220406 -0.004281638786373565 0.2609241043035803 -0.9653498222730853 -0.00428163879072645 0.2609252439511864 -0.9653495142373459 0.00428163879072645 -0.2609252439511864 0.9653495142373459 0.004281638786373565 -0.2609241043035803 0.9653498222730853 -0.004280369372364794 -0.4981020763274863 -0.8671078364288279 -0.00428036937316088 -0.4981009455189371 -0.867108486010355 0.00428036937316088 0.4981009455189371 0.867108486010355 0.004280369372364794 0.4981020763274863 0.8671078364288279 -0.004282256411797012 0.5018836420376206 -0.864924547076262 -0.004282256413127314 0.5018847979083912 -0.8649238763662763 0.004282256413127314 -0.5018847979083912 0.8649238763662763 0.004282256411797012 -0.5018836420376206 0.864924547076262 -0.004279848666279009 -0.705555224291424 -0.7086420170794786 -0.004279848671315645 -0.7055541584054808 -0.708643078320874 0.004279848671315645 0.7055541584054808 0.708643078320874 0.004279848666279009 0.705555224291424 0.7086420170794786 -0.004281892798924736 0.7086451305096495 -0.7055520848236652 -0.0042818928041386 0.7086441543526577 -0.7055530652586102 0.004281892798924736 -0.7086451305096495 0.7055520848236652 0.0042818928041386 -0.7086441543526577 0.7055530652586102 -0.004279390712496793 -0.8649233212950592 -0.5018857789328697 -0.004279390712642355 -0.8649226644398191 -0.5018869109206303 0.004279390712496793 0.8649233212950592 0.5018857789328697 0.004279390712642355 0.8649226644398191 0.5018869109206303 -0.004281359113397748 0.8671102266169878 -0.4980979069022258 -0.004281359112962919 0.8671110173025061 -0.4980965304403946 0.004281359113397748 -0.8671102266169878 0.4980979069022258 0.004281359112962919 -0.8671110173025061 0.4980965304403946 -0.004280028371695556 -0.965348902363104 -0.2609275341229588 -0.004280028364445989 -0.9653485192918171 -0.260928951360894 0.004280028371695556 0.965348902363104 0.2609275341229588 0.004280028364445989 0.9653485192918171 0.260928951360894 -0.004281468576927181 0.9664802791478765 -0.2567051597554433 -0.004281468578594852 0.9664806579291112 -0.2567037336614381 0.004281468576927181 -0.9664802791478765 0.2567051597554433 0.004281468578594852 -0.9664806579291112 0.2567037336614381 -0.004280447389466799 -0.9999884506049243 -0.002185503811303777 -0.00428044738673919 -0.9999884540002806 -0.002183949701340417 0.004280447389466799 0.9999884506049243 0.002185503811303777 0.00428044738673919 0.9999884540002806 0.002183949701340417 -0.004280716988099828 0.9999884543797312 0.002183247421708556 -0.004280716977420427 0.9999884509864663 0.002184801100054285 0.004280716988099828 -0.9999884543797312 -0.002183247421708556 0.004280716977420427 -0.9999884509864663 -0.002184801100054285 -0.004279849309618837 -0.9664798642304419 0.2567067488925707 -0.004279849305227373 -0.9664794597692433 0.256708271651063 0.004279849309618837 0.9664798642304419 -0.2567067488925707 0.004279849305227373 0.9664794597692433 -0.256708271651063 -0.004279550911469715 0.9653495572584627 0.2609251190377931 -0.004279550914307764 0.9653499365637356 0.2609237157108637 0.004279550911469715 -0.9653495572584627 -0.2609251190377931 0.004279550914307764 -0.9653499365637356 -0.2609237157108637 -0.004279366945403445 -0.8671083352607096 0.4981012165614008 -0.004279366943950962 -0.8671074945846607 0.4981026800306053 0.004279366945403445 0.8671083352607096 -0.4981012165614008 0.004279366943950962 0.8671074945846607 -0.4981026800306053 -0.004280137578717258 0.8649244175304505 0.5018838833653839 -0.004280137569418133 0.8649251493016499 0.5018826222613267 0.004280137578717258 -0.8649244175304505 -0.5018838833653839 0.004280137569418133 -0.8649251493016499 -0.5018826222613267 -0.004279503727668084 -0.7086453482994729 0.7055518805738978 -0.004279503731088207 -0.708644065358699 0.7055531691373169 0.004279503727668084 0.7086453482994729 -0.7055518805738978 0.004279503731088207 0.708644065358699 -0.7055531691373169 -0.004280820620104977 0.7055523445921659 0.7086448783525611 -0.004280820622493526 0.7055537732692776 0.7086434559073291 0.004280820620104977 -0.7055523445921659 -0.7086448783525611 0.004280820622493526 -0.7055537732692776 -0.7086434559073291 -0.004279856789499468 -0.5018853069956759 0.8649235928379554 -0.004279856787992766 -0.5018869261655592 0.8649226532875417 0.004279856787992766 0.5018869261655592 -0.8649226532875417 0.004279856789499468 0.5018853069956759 -0.8649235928379554 -0.004280325599923767 0.4981013730755701 0.8671082406210833 -0.004280325596508693 0.4981002179615462 0.8671089041633976 0.004280325596508693 -0.4981002179615462 -0.8671089041633976 0.004280325599923767 -0.4981013730755701 -0.8671082406210833 -0.004280271874951132 -0.2609268930036005 0.9653490745736302 -0.004280271879293935 -0.2609251102153328 0.965349556446656 0.004280271874951132 0.2609268930036005 -0.9653490745736302 0.004280271879293935 0.2609251102153328 -0.965349556446656 -0.004280237443075813 0.2567064328691884 0.966479946450524 -0.004280237446015731 0.256704930550933 0.9664803454795375 0.004280237446015731 -0.256704930550933 -0.9664803454795375 0.004280237443075813 -0.2567064328691884 -0.966479946450524 -0.004280534257630148 -0.002183750939241975 0.9999884540624979 -0.004280534258190548 -0.002185305100490302 0.9999884506673475 0.004280534258190548 0.002185305100490302 -0.9999884506673475 0.004280534257630148 0.002183750939241975 -0.9999884540624979</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID381\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID379\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID382\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"384\">16.72264492845211 -3.239903109249033 -4.493906290557893 2.933910303838056 -4.728586341386173 -2.696140844848241 16.95653956603488 2.371301515704383 8.478269783017442 1.185650757852192 8.361322464226053 -1.619951554624516 -2.246953145278947 1.466955151919028 -2.364293170693086 -1.348070422424121 -16.95324444480733 2.385627098572262 4.724869775837585 -2.700043436932254 4.497951786028732 2.930243137362552 -16.72708843421687 -3.225761471737048 -8.363544217108437 -1.612880735868524 -8.476622222403663 1.192813549286131 2.362434887918793 -1.350021718466127 2.248975893014366 1.465121568681276 -4.650377267339515 -2.779097278612486 16.8845397929188 2.670381715873585 -4.576559850465017 2.853718301221435 16.81096911007859 -2.94358313064525 8.405484555039294 -1.471791565322625 -2.325188633669757 -1.389548639306243 8.442269896459401 1.335190857936793 -2.288279925232509 1.426859150610718 -16.88407653528399 2.671868009696685 4.649988302077555 -2.779450835817336 4.577047968530231 2.853401927377038 -16.81138055951746 -2.942128119354722 -8.405690279758728 -1.471064059677361 -8.442038267641994 1.335934004848342 2.324994151038777 -1.389725417908668 2.288523984265115 1.426700963688519 -4.633528105959257 -2.796443786905329 16.86821789600814 2.73349127372693 -4.593746885068567 2.836588465561602 16.82856995092033 -2.880655093693082 8.414284975460165 -1.440327546846541 -2.316764052979628 -1.398221893452664 8.434108948004072 1.366745636863465 -2.296873442534284 1.418294232780801 4.593973352083259 2.836523718218725 -16.82868561620813 -2.880198764756717 4.633415836383876 -2.796499481809613 -16.86799572512858 2.733954476238326 -8.433997862564288 1.366977238119163 2.296986676041629 1.418261859109362 -8.414342808104063 -1.440099382378358 2.316707918191938 -1.398249740904807 16.86025756741855 2.763878992145286 -4.625368403466258 -2.804667302171011 16.83691785074735 -2.850323934358243 -4.601950849363642 2.828377057234473 -2.300975424681821 1.414188528617236 8.430128783709277 1.381939496072643 -2.312684201733129 -1.402333651085505 8.418458925373676 -1.425161967179121 4.625321723249752 -2.804583041773303 -16.86010532359727 2.764157331875902 -16.83696537367468 -2.850054064282261 4.602104112393668 2.82847806387397 2.301052056196834 1.414239031936985 2.312660861624876 -1.402291520886652 -8.430052661798635 1.382078665937951 -8.41848268683734 -1.42502703214113 16.85496166571006 2.783686677685021 -4.620007726224934 -2.810278447092262 16.84234184440923 -2.830551225302984 -4.607345360204824 2.822837129837691 -2.303672680102412 1.411418564918846 8.42748083285503 1.391843338842511 -2.310003863112467 -1.405139223546131 8.421170922204613 -1.415275612651492 4.619984400096286 -2.809976726827539 -16.85483529246015 2.784011826299676 -16.84236541118916 -2.830188792266932 4.60747210773349 2.823105087936984 2.303736053866745 1.411552543968492 2.309992200048143 -1.404988363413769 -8.427417646230072 1.392005913149838 -8.421182705594578 -1.415094396133466 16.84661280771467 -2.814593484597931 -4.611683716472709 2.81851480107025 -4.615752153365286 -2.814589810342543 16.85066790715681 2.799634925290195 8.425333953578404 1.399817462645097 8.423306403857335 -1.407296742298966 -2.305841858236355 1.409257400535125 -2.307876076682643 -1.407294905171272 4.615710287708393 -2.814561377896678 -16.85057595863294 2.799689708006414 -16.84665468625737 -2.814561337141796 4.611775836897464 2.818552915409719 2.305887918448732 1.409276457704859 2.307855143854197 -1.407280688948339 -8.425287979316471 1.399844854003207 -8.423327343128683 -1.407280668570898 16.85061274891556 -2.799737230245905 -4.615671991269269 2.81450515557137 -4.611738806717524 -2.818601982494837 16.84669296982185 2.814502371962669 8.423346484910923 1.407251185981335 8.425306374457781 -1.399868615122952 -2.307835995634635 1.407252577785685 -2.305869403358762 -1.409300991247418 4.615728155487668 2.814609614993135 -16.85069104536705 -2.799615976508483 4.611660413818911 -2.818490959721189 -16.8466368184738 2.8146110332504 -8.423318409236899 1.4073055166252 2.307864077743834 1.407304807496568 -8.425345522683527 -1.399807988254242 2.305830206909456 -1.409245479860595 16.85488174045585 -2.783822084320475 -4.619932794077956 2.810191868402641 -4.607425572770014 -2.822910867387297 16.84241677434491 2.830407356558213 8.421208387172452 1.415203678279107 8.427440870227924 -1.391911042160237 -2.309966397038978 1.405095934201321 -2.303712786385007 -1.411455433693649 4.620004557216717 2.810058274546969 -16.85496420879204 -2.783885263391031 4.607342998617686 -2.823023215688412 -16.84234483497815 2.830335643376079 -8.421172417489073 1.41516782168804 2.310002278608359 1.405029137273484 -8.427482104396022 -1.391942631695516 2.303671499308843 -1.411511607844206 16.86015697964571 -2.764128945178626 -4.625258428899851 2.804623625608292 -4.602052139363532 -2.828459741286155 16.83702861702645 2.850080276962824 8.418514308513226 1.425040138481412 8.430078489822854 -1.382064472589313 -2.312629214449926 1.402311812804146 -2.301026069681766 -1.414229870643077 4.625415304190483 2.804724666538888 -16.86021964902263 -2.763862037364986 4.601989023202723 -2.828331854061645 -16.83687108925824 2.850382876463817 -8.418435544629118 1.425191438231908 2.312707652095241 1.402362333269444 -8.430109824511312 -1.381931018682493 2.300994511601362 -1.414165927030822 -4.593914234547086 -2.836549647844413 16.82876921869526 2.880127300163432 -4.633332011394352 2.796435274276993 16.86805470199861 -2.733989105220428 8.434027350999303 -1.366994552610214 -2.296957117273543 -1.418274823922207 8.414384609347628 1.440063650081716 -2.316666005697176 1.398217637138496 -16.82855802294511 2.880666116932571 4.593755417573123 -2.836541457565994 4.633540441894999 2.796500506525937 -16.86820930785124 -2.733438833984344 -8.434104653925619 -1.366719416992172 -8.414279011472553 1.440333058466285 2.296877708786562 -1.418270728782997 2.316770220947499 1.398250253262969 16.88411675624425 -2.671921487800922 -4.649910896461154 2.779418514975413 -4.577007912454192 -2.853430276512045 16.81145811289813 2.942066762377245 8.405729056449063 1.471033381188622 8.442058378122125 -1.335960743900461 -2.324955448230577 1.389709257487706 -2.288503956227096 -1.426715138256022 -16.81098620107458 2.943539550568779 4.576551096657347 -2.853740970625229 4.650360429397084 2.779075221069198 -16.88454891053257 -2.670436317040372 -8.442274455266283 -1.335218158520186 -8.405493100537289 1.47176977528439 2.288275548328674 -1.426870485312614 2.325180214698542 1.389537610534599 -4.497954252672803 -2.930183803648829 16.72711886388277 3.225770011282844 -4.724839231514265 2.700053591480886 16.95324496794547 -2.385640017490524 8.476622483972733 -1.192820008745262 -2.248977126336401 -1.465091901824415 8.363559431941386 1.612885005641422 -2.362419615757132 1.350026795740443 -16.72266364813068 3.23986216331764 4.493904609166451 -2.933941311184089 4.728569530450034 2.696148379731193 -16.95654291422808 -2.371371245078102 -8.478271457114039 -1.185685622539051 -8.361331824065339 1.61993108165882 2.246952304583226 -1.466970655592045 2.364284765225017 1.348074189865597</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"192\" source=\"#ID382\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID378\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID376\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID377\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 8 8 9 1 10 8 9 3 8 9 11 12 16 0 17 2 18 0 17 12 16 13 19 9 24 16 25 8 26 16 25 9 24 17 27 20 32 13 33 12 34 13 33 20 32 21 35 16 40 24 41 25 42 24 41 16 40 17 43 21 48 28 49 29 50 28 49 21 48 20 51 32 56 24 57 33 58 24 57 32 56 25 59 29 64 36 65 37 66 36 65 29 64 28 67 40 72 33 73 41 74 33 73 40 72 32 75 44 80 36 81 45 82 36 81 44 80 37 83 48 88 41 89 49 90 41 89 48 88 40 91 52 96 45 97 53 98 45 97 52 96 44 99 48 104 56 105 57 106 56 105 48 104 49 107 60 112 53 113 61 114 53 113 60 112 52 115 57 120 64 121 65 122 64 121 57 120 56 123 68 128 61 129 69 130 61 129 68 128 60 131 65 136 72 137 73 138 72 137 65 136 64 139 76 144 68 145 69 146 68 145 76 144 77 147 72 152 80 153 73 154 80 153 72 152 81 155 84 160 76 161 85 162 76 161 84 160 77 163 81 168 88 169 80 170 88 169 81 168 89 171 92 176 84 177 85 178 84 177 92 176 93 179 89 184 92 185 88 186 92 185 89 184 93 187</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID378\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID379\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4 4 5 5 6 6 7 7 6 6 5 5 10 12 4 13 11 14 6 15 11 14 4 13 14 20 15 21 5 22 7 23 5 22 15 21 18 28 10 29 19 30 11 31 19 30 10 29 22 36 23 37 14 38 15 39 14 38 23 37 18 44 19 45 26 46 27 47 26 46 19 45 23 52 22 53 30 54 31 55 30 54 22 53 27 60 34 61 26 62 35 63 26 62 34 61 30 68 31 69 38 70 39 71 38 70 31 69 34 76 42 77 35 78 43 79 35 78 42 77 39 84 46 85 38 86 47 87 38 86 46 85 42 92 50 93 43 94 51 95 43 94 50 93 46 100 54 101 47 102 55 103 47 102 54 101 51 108 50 109 58 110 59 111 58 110 50 109 54 116 62 117 55 118 63 119 55 118 62 117 58 124 59 125 66 126 67 127 66 126 59 125 62 132 70 133 63 134 71 135 63 134 70 133 66 140 67 141 74 142 75 143 74 142 67 141 78 148 79 149 70 150 71 151 70 150 79 149 82 156 74 157 83 158 75 159 83 158 74 157 78 164 86 165 79 166 87 167 79 166 86 165 90 172 82 173 91 174 83 175 91 174 82 173 94 180 95 181 86 182 87 183 86 182 95 181 94 188 90 189 95 190 91 191 95 190 90 189</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID378\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID379\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID383\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID386\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID390\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID390\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID387\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID391\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.9082500329767456 0.0007516867371791146 -0.4184271890840621 -0.9082492745359263 -0.1074503430176522 -0.4043979217186361 -0.9082500344776737 0.0008765598473410654 -0.4184269428635523 -0.9082492736520922 -0.1075708369032307 -0.4043658887176134 0.9082492736520922 0.1075708369032307 0.4043658887176134 0.9082500329767456 -0.0007516867371791146 0.4184271890840621 0.9082492745359263 0.1074503430176522 0.4043979217186361 0.9082500344776737 -0.0008765598473410654 0.4184269428635523 -0.9082506050830315 0.1091435923435764 -0.4039412266860695 -0.9082506046354215 0.1090229161292429 -0.4039738146688064 0.9082506050830315 -0.1091435923435764 0.4039412266860695 0.9082506046354215 -0.1090229161292429 0.4039738146688064 -0.9082482427168129 -0.2084560405691885 -0.3628101552493231 -0.9082482405359982 -0.2085640638359936 -0.3627480735158756 0.9082482405359982 0.2085640638359936 0.3627480735158756 0.9082482427168129 0.2084560405691885 0.3628101552493231 -0.9082491615154812 0.2099738865158217 -0.3619315233409027 -0.9082491645414247 0.209866585626633 -0.3619937449006862 0.9082491615154812 -0.2099738865158217 0.3619315233409027 0.9082491645414247 -0.209866585626633 0.3619937449006862 -0.9082465712478778 -0.2952584160994148 -0.2964972740834871 -0.908246568910591 -0.2953461497473803 -0.2964098883160561 0.908246568910591 0.2953461497473803 0.2964098883160561 0.9082465712478778 0.2952584160994148 0.2964972740834871 -0.9082473909658394 0.2964969062159364 -0.295256263960858 -0.9082473912470552 0.2964072177461657 -0.2953463010787428 0.9082473909658394 -0.2964969062159364 0.295256263960858 0.9082473912470552 -0.2964072177461657 0.2953463010787428 -0.9082474673790382 -0.3619345433051908 -0.2099760090153772 -0.9082474712734822 -0.3619966089766116 -0.2098689734447648 0.9082474712734822 0.3619966089766116 0.2098689734447648 0.9082474673790382 0.3619345433051908 0.2099760090153772 -0.9082484639023035 0.3628095932970937 -0.2084560549149473 -0.908248460723703 0.3627472515016051 -0.2085645346674632 0.9082484639023035 -0.3628095932970937 0.2084560549149473 0.908248460723703 -0.3627472515016051 0.2085645346674632 -0.9082511405035336 -0.4039399392223229 -0.1091439016853281 -0.9082511440516279 -0.403972551902783 -0.1090231013962746 0.9082511440516279 0.403972551902783 0.1090231013962746 0.9082511405035336 0.4039399392223229 0.1091439016853281 -0.9082495969998886 0.4043972754492359 -0.1074500495987548 -0.908249596623721 0.404365212715167 -0.1075706511027334 0.9082495969998886 -0.4043972754492359 0.1074500495987548 0.908249596623721 -0.404365212715167 0.1075706511027334 -0.9082514585655601 -0.4184238527729456 -0.0008760389129415635 -0.9082514553289773 -0.4184241025164883 -0.0007512163908289862 0.9082514553289773 0.4184241025164883 0.0007512163908289862 0.9082514585655601 0.4184238527729456 0.0008760389129415635 -0.9082505851953316 0.4184257471815965 0.0008766914283048339 -0.9082505828752954 0.418425995279139 0.0007517854403690022 0.9082505851953316 -0.4184257471815965 -0.0008766914283048339 0.9082505828752954 -0.418425995279139 -0.0007517854403690022 -0.9082490302929679 -0.4043664017146101 0.1075709632580378 -0.9082490333533763 -0.4043984855098431 0.1074502597949525 0.9082490302929679 0.4043664017146101 -0.1075709632580378 0.9082490333533763 0.4043984855098431 -0.1074502597949525 -0.9082505698761868 0.4039735439268114 0.1090242089024017 -0.9082505682264853 0.4039407217202315 0.1091457679088157 0.9082505682264853 -0.4039407217202315 -0.1091457679088157 0.9082505698761868 -0.4039735439268114 -0.1090242089024017 -0.9082486494484744 -0.3627467689190975 0.2085645521505931 -0.9082486481231678 -0.3628091637581442 0.2084559998550159 0.9082486494484744 0.3627467689190975 -0.2085645521505931 0.9082486481231678 0.3628091637581442 -0.2084559998550159 -0.9082483686281029 0.3619950655307562 0.2098677522054624 -0.9082483661589828 0.3619328652568282 0.209975013790977 0.9082483661589828 -0.3619328652568282 -0.209975013790977 0.9082483686281029 -0.3619950655307562 -0.2098677522054624 -0.9082506197478876 -0.2964042575108705 0.2953393435643274 -0.9082506167666825 -0.2964919493568599 0.2952513185567682 0.9082506197478876 0.2964042575108705 -0.2953393435643274 0.9082506167666825 0.2964919493568599 -0.2952513185567682 -0.9082480131803266 0.2953441289205035 0.2964074764006107 -0.90824801524225 0.295256581095625 0.2964946780774259 0.90824801524225 -0.295256581095625 -0.2964946780774259 0.9082480131803266 -0.2953441289205035 -0.2964074764006107 -0.9082502482972585 -0.2098653041311184 0.3619917686770259 -0.9082502533146946 -0.2099721613881187 0.3619297843446915 0.9082502482972585 0.2098653041311184 -0.3619917686770259 0.9082502533146946 0.2099721613881187 -0.3619297843446915 -0.9082493143264231 0.2085638932647763 0.3627454830205625 -0.9082493159583445 0.2084540785156279 0.3628085958344974 0.9082493159583445 -0.2084540785156279 -0.3628085958344974 0.9082493143264231 -0.2085638932647763 -0.3627454830205625 -0.9082485879667209 -0.1090232989628911 0.4039782453792602 -0.9082485869772989 -0.1091444703673541 0.4039455270726108 0.9082485879667209 0.1090232989628911 -0.4039782453792602 0.9082485869772989 0.1091444703673541 -0.4039455270726108 -0.9082511946939681 0.107569634709001 0.4043618936368158 -0.9082511981082746 0.1074499269831152 0.4043937120260486 0.9082511981082746 -0.1074499269831152 -0.4043937120260486 0.9082511946939681 -0.107569634709001 -0.4043618936368158 -0.9082509090819749 -0.0008773896933384607 0.4184250426768125 -0.9082509125925561 -0.000752468406024658 0.4184252783545552 0.9082509090819749 0.0008773896933384607 -0.4184250426768125 0.9082509125925561 0.000752468406024658 -0.4184252783545552</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID391\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID389\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID392\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"192\">-4.542699139165971 13.57301502275557 -0.4760628845307824 14.03057851338626 -4.293205956690974 12.84291939320605 -0.4520778451937232 13.27480097802665 0.5262263144851437 13.27311290434169 0.5509308441970694 14.02887609692691 4.364922551878471 12.82793928468497 4.615115580867611 13.5578951401443 -9.200497557095831 12.02549805985014 -5.460294461359973 13.36213689623786 -8.700673353099646 11.37978305347014 -5.167760694787276 12.6419962786728 5.236482058585006 12.62448183080072 5.529599615995658 13.34448409699993 8.762464862805501 11.35038498428026 9.262826653654555 11.9958490506677 -12.99216162462306 9.619703772942543 -9.850935596277633 11.70231789836429 -12.28897078609038 9.104402023815595 -9.321713719835559 11.07126571357382 9.379208433918393 11.04116980481799 9.908805909503144 11.67203388437624 12.33621713888454 9.064756673517946 13.03968184989838 9.57981702183138 -15.70518465917443 6.660142705593261 -13.3525193171996 9.309346053102276 -14.85691765236203 6.30484509550176 -12.63441802294289 8.80693061639283 12.67792072561648 8.768150175948428 13.39616309803314 9.270430520945231 14.8880027823071 6.259267456761666 15.73641299818794 6.614399205461904 -17.30591011175082 3.414281264193431 -15.85447136542427 6.437527688275801 -16.37252037394564 3.234169117888085 -15.00127260492471 6.089614567846071 15.03012559609594 6.045417211916162 15.88339658588965 6.393267460950476 16.38777273810398 3.18595789568538 17.32115792288254 3.365996716390026 -17.84158673383741 0.07271931827509812 -17.34754144405634 3.280923251307002 -16.88054368036996 0.07271501916888513 -16.4134956469478 3.102928287245775 16.42781917250773 3.055684031940567 17.36184157354511 3.233666018167433 16.88077042213474 0.02413597414263838 17.84180938374336 0.0241319283408874 -17.84181214267261 -0.02413337543565036 -16.88076908897763 -0.02413745264056083 -17.36185361655219 -3.23366717946566 -16.42782986626323 -3.055684287849731 16.4134818910754 -3.102935319425331 16.88054701756033 -0.07271698671732821 17.34751954079551 -3.280922069425896 17.84158597896712 -0.07272124314771755 -17.3211786305619 -3.365991047406652 -16.3877919244592 -3.185951882083677 -15.88340587967561 -6.393257993900284 -15.03015255389675 -6.045413601251539 15.00124014052953 -6.089609450990861 16.37250085551697 -3.234178633475433 15.85445263950981 -6.437525411168315 17.3058822788614 -3.414283177660608 -15.73639731955359 -6.614409163697935 -14.8880059792257 -6.259281506746234 -13.39617422300147 -9.270432463617809 -12.67787981034289 -8.768156485934776 12.63438003713352 -8.806939261801423 14.85687775431837 -6.30484505352637 13.35248086666035 -9.309357964262242 15.70515852596362 -6.660145524742545 -13.03968789063718 -9.579816255505966 -12.33617009607184 -9.064760126010743 -9.908816153169438 -11.67204170025707 -9.379206298367013 -11.04117126199523 9.321679514522458 -11.07126762305999 12.28893385344979 -9.104409654094303 9.850928337812352 -11.70231246863167 12.99212427033344 -9.61971454210361 -9.262873717913241 -11.99585669306635 -8.762497622106514 -11.35038698937884 -5.529610632032458 -13.34446963758883 -5.236511265108912 -12.62449364339831 5.167749101606612 -12.64198777028426 8.700643486461816 -11.37978310462293 5.460273663042221 -13.36213548128276 9.200495491064043 -12.02549128880329 -4.364955882694339 -12.82794829884673 -0.5262691202224505 -13.27310290361913 -4.615130655374084 -13.55787759450954 -0.5509741484817764 -14.02888433511281 0.4520367491142101 -13.27478359432735 4.293193018885061 -12.84290598107812 0.4760213753747136 -14.03057938515311 4.542676807114459 -13.57300831123361</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"96\" source=\"#ID392\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID388\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID386\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID387\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 1 0 3 0 8 9 8 0 2 3 12 1 12 3 13 9 16 17 16 9 8 13 20 12 20 13 21 17 24 25 24 17 16 21 28 20 28 21 29 25 32 33 32 25 24 29 36 28 36 29 37 33 40 41 40 33 32 37 44 36 44 37 45 41 48 49 48 41 40 44 52 53 52 44 45 48 56 49 56 48 57 53 60 61 60 53 52 57 64 56 64 57 65 61 68 69 68 61 60 65 72 64 72 65 73 69 76 77 76 69 68 73 80 72 80 73 81 77 84 85 84 77 76 81 88 80 88 81 89 92 84 93 84 92 85 89 93 88 93 89 92</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID388\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4 0 5 1 6 2 7 3 6 2 5 1 7 4 5 5 10 6 11 7 10 6 5 5 14 8 4 9 15 10 6 11 15 10 4 9 10 12 11 13 18 14 19 15 18 14 11 13 22 16 14 17 23 18 15 19 23 18 14 17 18 20 19 21 26 22 27 23 26 22 19 21 30 24 22 25 31 26 23 27 31 26 22 25 26 28 27 29 34 30 35 31 34 30 27 29 38 32 30 33 39 34 31 35 39 34 30 33 34 36 35 37 42 38 43 39 42 38 35 37 46 40 38 41 47 42 39 43 47 42 38 41 42 44 43 45 50 46 51 47 50 46 43 45 46 48 47 49 54 50 55 51 54 50 47 49 58 52 50 53 59 54 51 55 59 54 50 53 54 56 55 57 62 58 63 59 62 58 55 57 66 60 58 61 67 62 59 63 67 62 58 61 62 64 63 65 70 66 71 67 70 66 63 65 74 68 66 69 75 70 67 71 75 70 66 69 70 72 71 73 78 74 79 75 78 74 71 73 82 76 74 77 83 78 75 79 83 78 74 77 78 80 79 81 86 82 87 83 86 82 79 81 90 84 82 85 91 86 83 87 91 86 82 85 87 88 94 89 86 90 95 91 86 90 94 89 94 92 90 93 95 94 91 95 95 94 90 93</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID388\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID389\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID393\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID394\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID398\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.848191442515148 -1.821721723044679 -0.002991724816678865</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID398\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID395\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID399\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID399\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID397\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID400\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">-18.21719920829072 0.02353305587178056 -17.58874109970749 3.731832569171651 -17.60424916488311 -3.686367916216107 -15.79154768106481 -7.14505990410002 -15.76162339299344 7.185815878339411 -15.73645395039408 0.02353305587178406 -15.20798726843623 -3.181281342099942 -13.6431234692418 -6.169288878862472 -12.90268619664868 -10.11682217439248 -11.14849664574191 -8.7368715422037 -9.134543999449482 -12.39913428420196 -7.894159355730627 -10.70906301849755 -4.743844447887168 -13.83647042450765 -4.101781864347913 -11.95141933613647 -0.02993367461101796 -14.33087164735588 -0.02993367461098022 -12.37934495576256 4.043974672825356 -11.9636131068125 4.686051523904595 -13.84865828792145 7.842322378820725 -10.73257746649335 9.082687498537359 -12.42266290962708 11.106162601468 -8.770158964817435 12.86035665791355 -10.15009187521957 13.61317214793644 -6.210043671649416 15.19249872726272 -3.226737724888358 15.73644944485523 -0.02353490189122628 15.7615948579133 -7.185808789624735 -15.19252726234299 3.226739497067041 -13.61319017009239 6.210048988185412 -12.86033863575761 10.15009660102933 -11.10619113654815 8.770154239007669 -9.082711528078582 12.42266290962708 -7.842317873281745 10.73258573666044 -4.686070296983688 13.84864765484944 -4.043988564903902 11.96361546971739 0.0299008217225882 12.37933786704789 0.0299008217226215 14.33087282880834 4.101776983347349 11.95143942082804 4.743848953426131 13.83646333579298 7.894117304033426 10.70905592978288 9.134510958830333 12.39913428420196 11.14846360512272 8.736878630918373 12.90263363202708 10.11682099294002 13.64312346924178 6.169292423219798 15.20797224997292 3.181279569921278 15.79154317552588 7.145053996837801 17.58872307755159 -3.731830796992965 17.60422062980293 3.686373823478347 18.21721723044679 -0.02353490189120707</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"48\" source=\"#ID400\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID396\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID394\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID395\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 1 0 3 1 3 4 4 3 5 5 3 6 6 3 7 6 7 8 8 7 9 9 7 10 9 10 11 11 10 12 11 12 13 13 12 14 13 14 15 15 14 16 15 16 17 17 16 18 18 16 19 18 19 20 20 19 21 20 21 22 22 21 23 22 23 24 24 23 25 4 26 27 26 4 5 27 26 28 27 28 29 27 29 30 30 29 31 30 31 32 32 31 33 32 33 34 34 33 35 34 35 36 34 36 37 37 36 38 37 38 39 39 38 40 39 40 41 41 40 42 41 42 43 43 42 44 43 44 25 43 25 23 43 23 45 43 45 46 46 45 47</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID396\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">48 0 49 1 50 2 50 2 49 1 51 3 49 1 52 4 51 3 52 4 53 5 51 3 53 5 54 6 51 3 54 6 55 7 51 3 51 3 55 7 56 8 55 7 57 9 56 8 56 8 57 9 58 10 57 9 59 11 58 10 58 10 59 11 60 12 59 11 61 13 60 12 60 12 61 13 62 14 61 13 63 15 62 14 63 15 64 16 62 14 62 14 64 16 65 17 64 16 66 18 65 17 65 17 66 18 67 19 66 18 68 20 67 19 67 19 68 20 69 21 68 20 70 22 69 21 70 22 71 23 69 21 72 24 73 25 71 23 69 21 71 23 73 25 53 5 52 4 74 26 74 26 52 4 75 27 52 4 76 28 75 27 75 27 76 28 77 29 76 28 78 30 77 29 77 29 78 30 79 31 78 30 80 32 79 31 79 31 80 32 81 33 81 33 80 32 82 34 80 32 83 35 82 34 82 34 83 35 84 36 83 35 85 37 84 36 84 36 85 37 86 38 85 37 87 39 86 38 86 38 87 39 88 40 87 39 89 41 88 40 88 40 89 41 90 42 90 42 89 41 91 43 89 41 92 44 91 43 91 43 92 44 72 24 72 24 92 44 73 25 73 25 92 44 93 45 92 44 94 46 93 45 95 47 93 45 94 46</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID396\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID397\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID401\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID402\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID406\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151516 1.286033863575761 1.29026651708 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950979 -0.9639834939807769 1.663688891962011 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006284 0.9616870958540129 -1.659710651225625 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.7637458525006196 -0.956506702224935 -1.66269977597085 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950926 -0.9588031003517052 -1.6666787676304 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006284 0.4993573332498595 -1.852061121441011 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID406\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID403\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID407\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-0.7524585417620626 0.1695187983675101 0.6364507207391202 -0.752458751757041 -0.001116951969874288 0.6586384283675927 -0.7524587513418458 -0.0009841473680792699 0.6586386406695468 -0.7524585421170914 0.1693892527612725 0.6364852107032804 0.7524585421170914 -0.1693892527612725 -0.6364852107032804 0.7524585417620626 -0.1695187983675101 -0.6364507207391202 0.752458751757041 0.001116951969874288 -0.6586384283675927 0.7524587513418458 0.0009841473680792699 -0.6586386406695468 -0.7524565325827145 -0.1715493318107424 0.6359087932470239 -0.7524565358976068 -0.1714184440870872 0.6359440845009378 0.7524565325827145 0.1715493318107424 -0.6359087932470239 0.7524565358976068 0.1714184440870872 -0.6359440845009378 -0.003023428365700127 -0.001557416609379177 0.9999942166504876 -0.003023523763512286 0.2573134050059734 0.9663232740176982 -0.003023428365418651 -0.001558199390591175 0.9999942154310586 -0.003023523763771853 0.2573140904666033 0.9663230914923821 0.003023523763771853 -0.2573140904666033 -0.9663230914923821 0.003023428365700127 0.001557416609379177 -0.9999942166504876 0.003023523763512286 -0.2573134050059734 -0.9663232740176982 0.003023428365418651 0.001558199390591175 -0.9999942154310586 -0.752458965034369 0.3283526619799974 0.5709553706815058 -0.7524589655183874 0.3284673404373135 0.5708894038927644 0.7524589655183874 -0.3284673404373135 -0.5708894038927644 0.752458965034369 -0.3283526619799974 -0.5709553706815058 -0.7524536793556657 -0.3302908594592792 0.5698433193271392 -0.7524536801024093 -0.3301728027602695 0.5699117296720337 0.7524536793556657 0.3302908594592792 -0.5698433193271392 0.7524536801024093 0.3301728027602695 -0.5699117296720337 -0.003023637205282373 -0.2603221403258926 0.9655170847137802 -0.00302363720643009 -0.2603227088345894 0.9655169314326214 0.003023637205282373 0.2603221403258926 -0.9655170847137802 0.00302363720643009 0.2603227088345894 -0.9655169314326214 -0.003023769458048854 0.4986487925159631 0.8667988454887539 -0.003023769456780855 0.4986480616163927 0.8667992659575149 0.003023769458048854 -0.4986487925159631 -0.8667988454887539 0.003023769456780855 -0.4986480616163927 -0.8667992659575149 -0.7524604277183468 0.4649355000609762 0.4665171867155301 -0.7524604292449857 0.4650302144511048 0.4664227718154544 0.7524604292449857 -0.4650302144511048 -0.4664227718154544 0.7524604277183468 -0.4649355000609762 -0.4665171867155301 -0.7524523992911886 -0.4665217526188665 0.4649439118155596 -0.7524523999108818 -0.4664284121355344 0.4650375492592817 0.7524523992911886 0.4665217526188665 -0.4649439118155596 0.7524523999108818 0.4664284121355344 -0.4650375492592817 -0.003024220271891797 -0.5013452460737722 0.8652420460951814 -0.003024220270688767 -0.5013448265809373 0.8652422891608365 0.003024220270688767 0.5013448265809373 -0.8652422891608365 0.003024220271891797 0.5013452460737722 -0.8652420460951814 -0.003023789150446498 0.7060009776560012 0.7082044028724647 -0.003023789151712843 0.7060003159894974 0.7082050624797142 0.003023789150446498 -0.7060009776560012 -0.7082044028724647 0.003023789151712843 -0.7060003159894974 -0.7082050624797142 -0.7524618458997252 0.5698351311725082 0.3302863814128411 -0.7524618457279603 0.5699021833508379 0.3301706712226562 0.7524618457279603 -0.5699021833508379 -0.3301706712226562 0.7524618458997252 -0.5698351311725082 -0.3302863814128411 -0.7524479855813711 -0.5709672528893324 0.3283571609125437 -0.75244799164648 -0.5709000097533534 0.3284740457491269 0.7524479855813711 0.5709672528893324 -0.3283571609125437 0.75244799164648 0.5709000097533534 -0.3284740457491269 -0.003024450878027729 -0.7082033825184431 0.7060019983585898 -0.003024450877476187 -0.7082039104336583 0.7060014687968891 0.003024450878027729 0.7082033825184431 -0.7060019983585898 0.003024450877476187 0.7082039104336583 -0.7060014687968891 -0.003023198803451891 0.8652412822109276 0.5013465705746725 -0.003023198805660467 0.8652409285580689 0.5013471809205194 0.003023198803451891 -0.8652412822109276 -0.5013465705746725 0.003023198805660467 -0.8652409285580689 -0.5013471809205194 -0.7524650029900875 0.6358998698302749 0.1715452559092408 -0.7524650076588183 0.6359345265441972 0.1714167150485116 0.7524650076588183 -0.6359345265441972 -0.1714167150485116 0.7524650029900875 -0.6358998698302749 -0.1715452559092408 -0.7524485695931888 -0.6364956983395131 0.1693941442685062 -0.7524485617789981 -0.6364614586825991 0.1695227816204527 0.7524485695931888 0.6364956983395131 -0.1693941442685062 0.7524485617789981 0.6364614586825991 -0.1695227816204527 -0.003024642282712115 -0.8667991712589429 0.4986482209372369 -0.00302464228433073 -0.8667995384389017 0.4986475826685202 0.003024642282712115 0.8667991712589429 -0.4986482209372369 0.00302464228433073 0.8667995384389017 -0.4986475826685202 -0.003021941420137833 0.9655175454494209 0.2603204511738924 -0.003021941424746023 0.9655173587289867 0.2603211437110447 0.003021941420137833 -0.9655175454494209 -0.2603204511738924 0.003021941424746023 -0.9655173587289867 -0.2603211437110447 -0.7524649227682221 0.6586313785893013 0.001116754659718303 -0.7524649176522377 0.6586315962545964 0.0009839297400806876 0.7524649176522377 -0.6586315962545964 -0.0009839297400806876 0.7524649227682221 -0.6586313785893013 -0.001116754659718303 -0.7524562762274313 -0.6586412570388478 -0.001116643288669679 -0.7524562723022982 -0.6586414735750391 -0.0009836461920094291 0.7524562762274313 0.6586412570388478 0.001116643288669679 0.7524562723022982 0.6586414735750391 0.0009836461920094291 -0.00302424272530191 -0.966322583003932 0.2573159915989429 -0.003024242721690821 -0.9663227607441889 0.2573153241136048 0.00302424272530191 0.966322583003932 -0.2573159915989429 0.003024242721690821 0.9663227607441889 -0.2573153241136048 -0.003021067751355109 0.9999942264063256 0.001555732514273759 -0.003021067751511359 0.9999942251911452 0.001556513412098616 0.003021067751355109 -0.9999942264063256 -0.001555732514273759 0.003021067751511359 -0.9999942251911452 -0.001556513412098616 -0.7524581266761962 0.6364513097928596 -0.1695184292692185 -0.7524581327993718 0.6364858961559734 -0.1693884954139764 0.7524581266761962 -0.6364513097928596 0.1695184292692185 0.7524581327993718 -0.6364858961559734 0.1693884954139764 -0.7524554877062412 -0.6359441915615974 -0.1714226479781157 -0.7524554835789596 -0.6359095448500886 -0.171551146893593 0.7524554835789596 0.6359095448500886 0.171551146893593 0.7524554877062412 0.6359441915615974 0.1714226479781157 -0.003022939996113761 -0.9999942166299063 -0.001558377528098246 -0.003022939999784108 -0.9999942178488096 -0.001557595167271352 0.003022939996113761 0.9999942166299063 0.001558377528098246 0.003022939999784108 0.9999942178488096 0.001557595167271352 -0.003022243473153594 0.9663240542030337 -0.2573104900951403 -0.00302224347973812 0.966323868653908 -0.2573111869198347 0.003022243473153594 -0.9663240542030337 0.2573104900951403 0.00302224347973812 -0.966323868653908 0.2573111869198347 -0.752453954284854 0.5708942615132673 -0.3284703774350259 -0.7524539551700281 0.5709604990173309 -0.3283552251919589 0.752453954284854 -0.5708942615132673 0.3284703774350259 0.7524539551700281 -0.5709604990173309 0.3283552251919589 -0.75245270637364 -0.5699112482350072 -0.3301758528514779 -0.7524527067090119 -0.5698454450886161 -0.3302894077593754 0.7524527067090119 0.5698454450886161 0.3302894077593754 0.75245270637364 0.5699112482350072 0.3301758528514779 -0.003022956207305731 -0.9655159878608529 -0.2603262163533472 -0.003022956203584093 -0.9655161881351868 -0.2603254735608669 0.003022956207305731 0.9655159878608529 0.2603262163533472 0.003022956203584093 0.9655161881351868 0.2603254735608669 -0.003023860053777756 0.8667994464540276 -0.4986477473100291 -0.003023860056238176 0.866799054464471 -0.4986484287048933 0.003023860053777756 -0.8667994464540276 0.4986477473100291 0.003023860056238176 -0.866799054464471 0.4986484287048933 -0.7524520034872866 0.4664284183759522 -0.4650381844314248 -0.7524520059884629 0.4665225652234435 -0.4649437329626844 0.7524520034872866 -0.4664284183759522 0.4650381844314248 0.7524520059884629 -0.4665225652234435 0.4649437329626844 -0.7524541205941244 -0.4650354160681895 -0.4664277631136556 -0.7524541226695466 -0.4649429710307974 -0.4665199105790212 0.7524541226695466 0.4649429710307974 0.4665199105790212 0.7524541205941244 0.4650354160681895 0.4664277631136556 -0.003023625947355671 -0.8652411650582806 -0.5013467701847889 -0.003023625947147205 -0.8652415864938384 -0.5013460428563862 0.003023625947355671 0.8652411650582806 0.5013467701847889 0.003023625947147205 0.8652415864938384 0.5013460428563862 -0.003024498956473901 0.7082035258586333 -0.7060018543654559 -0.003024498957837877 0.7082029736233368 -0.7060024083224629 0.003024498956473901 -0.7082035258586333 0.7060018543654559 0.003024498957837877 -0.7082029736233368 0.7060024083224629 -0.7524548626014672 0.3301727897440394 -0.5699101759576202 -0.7524548560904877 0.3302906965735977 -0.5698418599074405 0.7524548626014672 -0.3301727897440394 0.5699101759576202 0.7524548560904877 -0.3302906965735977 0.5698418599074405 -0.7524550849515038 -0.3284703658453776 -0.5708927779294718 -0.7524550849804075 -0.3283542750975831 -0.5709595564593596 0.7524550849804075 0.3283542750975831 0.5709595564593596 0.7524550849515038 0.3284703658453776 0.5708927779294718 -0.003023436767652145 -0.7060015557338235 -0.7082038280972031 -0.003023436769444781 -0.7060023070751241 -0.7082030790915156 0.003023436767652145 0.7060015557338235 0.7082038280972031 0.003023436769444781 0.7060023070751241 0.7082030790915156 -0.003024066204165313 0.5013465000752155 -0.86524132002923 -0.003024066201718197 0.5013460802322781 -0.8652415632985611 0.003024066201718197 -0.5013460802322781 0.8652415632985611 0.003024066204165313 -0.5013465000752155 0.86524132002923 -0.7524593774133471 0.1714196849035536 -0.6359403879061972 -0.7524593773351924 0.171545207486858 -0.6359065397121069 0.7524593774133471 -0.1714196849035536 0.6359403879061972 0.7524593773351924 -0.171545207486858 0.6359065397121069 -0.7524551617968616 -0.1695201961406735 -0.6364543444628897 -0.7524551621628105 -0.169389900494532 -0.6364890341121294 0.7524551621628105 0.169389900494532 0.6364890341121294 0.7524551617968616 0.1695201961406735 0.6364543444628897 -0.003023456200964241 -0.498649628175152 -0.8667983658460503 -0.00302345619967725 -0.4986502339698029 -0.8667980173457189 0.00302345619967725 0.4986502339698029 0.8667980173457189 0.003023456200964241 0.498649628175152 0.8667983658460503 -0.003023170420924781 0.260321986899808 -0.9655171275420972 -0.00302317041934693 0.2603211190972351 -0.9655173615179473 0.00302317041934693 -0.2603211190972351 0.9655173615179473 0.003023170420924781 -0.260321986899808 0.9655171275420972 -0.7524572925624328 0.0009838075905523819 -0.6586403077494104 -0.7524572962038846 0.001116597773462055 -0.6586400918551432 0.7524572925624328 -0.0009838075905523819 0.6586403077494104 0.7524572962038846 -0.001116597773462055 0.6586400918551432 -0.003023757163787752 -0.2573148938061689 -0.9663228768471408 -0.003023757164135984 -0.257314121269845 -0.9663230825597305 0.003023757163787752 0.2573148938061689 0.9663228768471408 0.003023757164135984 0.257314121269845 0.9663230825597305 -0.003023376607918181 0.00155726701169435 -0.9999942170399491 -0.003023376605318863 0.001558049788827533 -0.9999942158206505 0.003023376607918181 -0.00155726701169435 0.9999942170399491 0.003023376605318863 -0.001558049788827533 0.9999942158206505</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID407\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID405\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID408\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"384\">-3.696624459452266 5.823858262090928 -4.040246963321643 6.795564893228256 0.9890827628466336 6.463093582785248 0.8935679007835635 7.468892618247301 -0.9529481975090883 6.466222128749999 -0.8551161998463231 7.471883329228509 3.729258442558688 5.811233706692518 4.07507250558566 6.782456078829257 -7.669972009859915 -1.835835337729923 -7.554321652554542 2.111785202383856 7.520717237189627 -2.106470744697186 7.63609149265897 1.831723202669839 -6.629265165315137 5.393041111258648 -2.241789872750055 7.291664938508001 -5.90273736965205 4.562006538717816 -1.735763312451184 6.364938643819828 1.768131448370683 6.359083708982839 2.27580128791188 7.285250498133096 5.926144752668277 4.543403046768413 6.654145913192843 5.373626057838043 7.555789239779621 2.108606428206098 7.668686127052055 -1.839057708593067 -7.634813705495054 1.834989415906823 -7.522186994038186 -2.10322894330467 -7.595724971270944 2.017799588171895 7.598413731494718 1.926247716636706 -7.632211106838805 -1.930765085388588 7.562014832044193 -2.012872824046142 -8.324555039492182 3.660162647609309 -4.81941465461502 6.4734078982287 -7.324240456616781 3.029240377010939 -3.995200295744808 5.700833126747577 4.020265958111306 5.689488510288188 4.845342759447187 6.461479132204169 7.337817537611757 3.009063783125704 8.338854610045059 3.639262429833399 7.632062042614949 -1.931080970865312 -7.562169654384618 -2.01252978617579 7.595891934628797 2.017484888043871 -7.598253173295223 1.926593136966556 -7.604280525974141 1.99775209317084 7.590162806256027 1.94624081239991 -7.623955884291689 -1.950882992818789 7.570534444041288 -1.992951860281939 -9.221774272756345 1.91194394298594 -6.718836162952989 5.323810449893363 -8.053104492918207 1.49712621750965 -5.675786398794395 4.737275524689899 5.693691067492606 4.723354330334615 6.737080334535841 5.309500309403943 8.058934044048545 1.477726111620418 9.227804990882156 1.892125520133433 7.604353213083794 1.997658685379888 7.623905935675444 -1.950977619621975 -7.590091221085666 1.946343936349168 -7.570585176680469 -1.992873761941959 -7.608357971913602 1.988098722674424 7.586171209310034 1.955863353392116 -7.619941292962327 -1.960561098109789 7.574615404368769 -1.983378289115803 -9.530272482541513 0.2746756156189894 -8.039325504952567 4.035248474488306 -8.274409480860204 0.07154880520611728 -6.858172886042456 3.642920142785312 6.870173671642146 3.627808949292373 8.051367441154209 4.019989372762995 8.274442799196638 0.05352251049803518 9.530305767400433 0.2564839307956014 7.608407674373749 1.988121343208024 7.619919383937229 -1.960542415976749 -7.586121691995373 1.955936271722545 -7.574637547254818 -1.98328952605131 -7.611019100226375 1.981758278354976 7.583544916727871 1.962188646121968 -7.617277576123059 -1.966904209989248 7.577301328813645 -1.977040668559802 -9.405511470881637 -1.240742243288395 -8.907815301433299 2.678985865460446 -8.123357840021573 -1.240750832424818 -7.650419727648758 2.481813686900803 7.657930885613808 2.465945293105961 8.915288502883657 2.663096804961726 8.119140709179817 -1.257537690235669 9.401272865435805 -1.257546018046028 7.611084735482613 1.981768564680788 7.617292804392591 -1.966902198835446 -7.583479377394854 1.962214253446523 -7.577286260901328 -1.977014389700738 -7.613120069812265 1.976745737194301 7.581459565158655 1.967310797641272 -7.615123097651352 -1.971918595009516 7.579461129931657 -1.971921953343625 -9.40150003157304 1.257442113621577 -8.119346403993839 1.257431712139362 -8.915537713431498 -2.663206671196163 -7.658166793412561 -2.466041118855443 7.650148767210773 -2.481713396774992 8.123108074390222 1.240849617657296 8.907523179620583 -2.678883862796719 9.4052402334673 1.240842837764527 -7.581390237913452 1.967188101395981 7.613189535885248 1.976618480108285 -7.57943764585014 -1.972050019822055 7.615146667941806 -1.972047747371725 7.579485914074268 1.97196708429726 7.581436772792678 -1.967275288237997 -7.615098313537803 1.971965794024384 -7.613142864168738 -1.976698898278629 -9.530625737779101 -0.25656725043594 -8.274749853594916 -0.05359064644060455 -8.051667980628185 -4.020064251666414 -6.870443660400792 -3.627887047345771 6.857934007589495 -3.64281816651194 8.274163615890476 -0.07144692779477511 8.039062677012478 -4.035156716714083 9.530005361959193 -0.2745723376109419 -7.579437553117938 1.972059733917022 7.615146760673897 1.972057399417009 -7.581436910305003 -1.967173248538126 7.613142749986364 -1.976607435662339 7.577315792308811 1.976949996703046 7.583505855838784 -1.96227509970517 -7.617263129816307 1.966838229966558 -7.611058272200855 -1.981825946153671 -9.227871799659241 -1.89215435520369 -8.058966808118642 -1.477763534671876 -6.737129216083037 -5.309523955305282 -5.693760167031574 -4.723377340212994 5.67558565569558 -4.737197305973607 8.052840575659085 -1.49704295134452 6.718603029494449 -5.323738691458113 9.221486487586468 -1.911869754300307 -7.577285369609861 1.977050570888327 7.617293560270303 1.966914482853697 -7.58353067722906 -1.962188734427586 7.611033394817669 -1.981754273956296 7.574638852779416 1.983381936755945 7.586122794998227 -1.955846374730674 -7.619918079974323 1.960632188041886 -7.608406550904774 -1.988032733024195 -8.338839386390088 -3.639205298984838 -7.337822183067741 -3.009007241083356 -4.845341235349157 -6.46142968527283 -4.020258889731459 -5.689438975694102 3.995128624001985 -5.700755173353182 7.324198181243452 -3.029144275291806 4.819358432886512 -6.47331750582667 8.324474868783517 -3.660076593319374 -7.574614745364233 1.983312116988463 7.619942024878952 1.960505775974488 -7.586170583499415 -1.95591014113808 7.60835859070232 -1.988135387999505 -7.604356035217696 -1.99769600445393 -7.623909739917847 1.950936307139087 7.590088410733276 -1.946377631840885 7.570581331427527 1.992838049551194 -6.654222092787895 -5.373730949672475 -5.926219203160268 -4.543505385850812 -2.275894023815066 -7.285346259589042 -1.768164791791738 -6.359189590593228 1.735701167858861 -6.364888541509357 5.902663718800884 -4.56193950172254 2.241735351137526 -7.291601797073808 6.629208755942161 -5.392962666056423 7.604268587691806 -1.997775046101012 -7.590174738516678 -1.946265886184374 7.623938984367359 1.950861077277974 -7.570551389136386 1.992910516343811 -7.59588595364065 -2.017442116402822 -7.632050366310129 1.931128964526406 7.59825903017894 -1.926544287206376 7.562181491525478 2.012562850542992 -4.075150813204585 -6.782473277036217 -3.729273224583506 -5.811255341959331 0.8550672826260229 -7.471889629038476 0.9528974804567071 -6.466230103660284 -0.9891114730239413 -6.463016631894419 3.696609987697176 -5.823790531437526 -0.8935970025749593 -7.468813907025647 4.040236589761045 -6.795486286170825 7.632213683143744 1.930717081479863 7.595726351403361 -2.01783708517383 -7.562012115608883 2.012838846303647 -7.598412396963864 -1.926287761518784 -7.668671507496315 1.83911283206964 7.522201914891844 2.103271019508454 -7.555790432103792 -2.108548548224249 7.634813601656944 -1.834968467158941 7.669984821502206 1.835824551549613 7.554320332815763 -2.111817851860591 -7.52070372868721 2.106484885781963 -7.636091856533377 -1.831723312270308</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"192\" source=\"#ID408\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID404\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID402\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID403\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 1 0 3 2 8 9 8 2 1 12 13 14 13 12 15 0 20 3 20 0 21 9 24 25 24 9 8 28 14 29 14 28 12 13 32 33 32 13 15 21 36 20 36 21 37 25 40 41 40 25 24 44 28 29 28 44 45 33 48 49 48 33 32 37 52 36 52 37 53 41 56 57 56 41 40 60 44 61 44 60 45 49 64 65 64 49 48 53 68 52 68 53 69 57 72 73 72 57 56 76 61 77 61 76 60 65 80 81 80 65 64 69 84 68 84 69 85 73 88 89 88 73 72 92 77 93 77 92 76 81 96 97 96 81 80 84 100 101 100 84 85 88 104 89 104 88 105 92 108 109 108 92 93 112 96 113 96 112 97 101 116 117 116 101 100 105 120 104 120 105 121 109 124 125 124 109 108 128 113 129 113 128 112 117 132 133 132 117 116 121 136 120 136 121 137 125 140 141 140 125 124 144 129 145 129 144 128 133 148 149 148 133 132 137 152 136 152 137 153 141 156 157 156 141 140 145 160 144 160 145 161 149 164 165 164 149 148 153 168 152 168 153 169 172 157 156 157 172 173 161 176 160 176 161 177 165 180 181 180 165 164 169 180 168 180 169 181 184 172 185 172 184 173 176 188 189 188 176 177 188 185 189 185 188 184</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID404\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4 0 5 1 6 2 7 3 6 2 5 1 6 4 7 5 10 6 11 7 10 6 7 5 16 8 17 9 18 10 19 11 18 10 17 9 22 12 5 13 23 14 4 15 23 14 5 13 10 16 11 17 26 18 27 19 26 18 11 17 17 20 30 21 19 22 31 23 19 22 30 21 16 24 18 25 34 26 35 27 34 26 18 25 38 28 22 29 39 30 23 31 39 30 22 29 26 32 27 33 42 34 43 35 42 34 27 33 46 36 47 37 30 38 31 39 30 38 47 37 34 40 35 41 50 42 51 43 50 42 35 41 54 44 38 45 55 46 39 47 55 46 38 45 42 48 43 49 58 50 59 51 58 50 43 49 46 52 62 53 47 54 63 55 47 54 62 53 50 56 51 57 66 58 67 59 66 58 51 57 70 60 54 61 71 62 55 63 71 62 54 61 58 64 59 65 74 66 75 67 74 66 59 65 62 68 78 69 63 70 79 71 63 70 78 69 66 72 67 73 82 74 83 75 82 74 67 73 86 76 70 77 87 78 71 79 87 78 70 77 74 80 75 81 90 82 91 83 90 82 75 81 78 84 94 85 79 86 95 87 79 86 94 85 82 88 83 89 98 90 99 91 98 90 83 89 86 92 87 93 102 94 103 95 102 94 87 93 106 96 90 97 107 98 91 99 107 98 90 97 95 100 94 101 110 102 111 103 110 102 94 101 99 104 114 105 98 106 115 107 98 106 114 105 102 108 103 109 118 110 119 111 118 110 103 109 122 112 106 113 123 114 107 115 123 114 106 113 110 116 111 117 126 118 127 119 126 118 111 117 114 120 130 121 115 122 131 123 115 122 130 121 118 124 119 125 134 126 135 127 134 126 119 125 138 128 122 129 139 130 123 131 139 130 122 129 126 132 127 133 142 134 143 135 142 134 127 133 130 136 146 137 131 138 147 139 131 138 146 137 134 140 135 141 150 142 151 143 150 142 135 141 154 144 138 145 155 146 139 147 155 146 138 145 142 148 143 149 158 150 159 151 158 150 143 149 162 152 147 153 163 154 146 155 163 154 147 153 150 156 151 157 166 158 167 159 166 158 151 157 170 160 154 161 171 162 155 163 171 162 154 161 174 164 175 165 159 166 158 167 159 166 175 165 178 168 162 169 179 170 163 171 179 170 162 169 166 172 167 173 182 174 183 175 182 174 167 173 183 176 170 177 182 178 171 179 182 178 170 177 174 180 186 181 175 182 187 183 175 182 186 181 178 184 179 185 190 186 191 187 190 186 179 185 186 188 190 189 187 190 191 191 187 190 190 189</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID404\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID405\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID409\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID410\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID414\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 0.4757403116530008 1.787046344116789 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.9220519445225366 1.603022710678486 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 0.9220519445225366 1.603022710678486 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151476 1.785497189630175 0.4815196415974014 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.7557056430950975 1.361733376410932 -1.357502525122301 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151387 1.309760632593005 -1.305527979088765 0.7557056430950975 1.361733376410932 -1.357502525122301 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.84819144251514 1.603025714371136 -0.9220525452610677 0.84819144251514 1.603025714371136 -0.9220525452610677 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.7557056430950979 1.858045828870668 -0.494764837365608 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.7557056430950979 1.858045828870668 -0.494764837365608 0.7557056430950908 1.922786669424786 0.002991490153192444 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151409 1.849288112382276 0.00299149015319311 0.7557056430950908 1.922786669424786 0.002991490153192444 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.60003328556399 0.9272330890747753 0.7557056430950908 1.663689943254438 0.9639850709194202 0.7557056430950908 1.663689943254438 0.9639850709194202 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.7557056430950904 1.357503426230103 1.361732775672407 0.7557056430950904 1.357503426230103 1.361732775672407 0.8481914425151351 1.305526777611701 1.309757628900341</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID414\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID411\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID415\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">0.6221918684034155 -0.001303781729081092 0.7828637040033659 0.6221941339063147 0.2014863019961419 0.7564904030062049 0.6221918691918711 -0.001174692367902513 0.7828639077191937 0.6221941321218698 0.2013597797845118 0.7565240915121251 -0.6221941321218698 -0.2013597797845118 -0.7565240915121251 -0.6221918684034155 0.001303781729081092 -0.7828637040033659 -0.6221941339063147 -0.2014863019961419 -0.7564904030062049 -0.6221918691918711 0.001174692367902513 -0.7828639077191937 0.6221901218932683 -0.2038805206493446 0.7558519600544753 0.6221901229061849 -0.2037543408673254 0.755885983158643 -0.6221901218932683 0.2038805206493446 -0.7558519600544753 -0.6221901229061849 0.2037543408673254 -0.755885983158643 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 0.622195876340844 0.3903006052975382 0.678629301584322 0.6221958765038165 0.3904133786148501 0.6785644295571243 -0.622195876340844 -0.3903006052975382 -0.678629301584322 -0.6221958765038165 -0.3904133786148501 -0.6785644295571243 0.6221894238249361 -0.3924488889485895 0.677395150885664 0.6221894242877948 -0.392561562997384 0.6773298602316846 -0.6221894242877948 0.392561562997384 -0.6773298602316846 -0.6221894238249361 0.3924488889485895 -0.677395150885664 0.6221894259644839 -0.5544921390400044 0.5526470717925018 0.6221894262295475 -0.5543996744161857 0.5527398293007061 -0.6221894259644839 0.5544921390400044 -0.5526470717925018 -0.6221894262295475 0.5543996744161857 -0.5527398293007061 0.6221935983998548 -0.6785663445167995 0.3904136808557666 0.6221936044128955 -0.6786309659335652 0.3903013332077736 -0.6221935983998548 0.6785663445167995 -0.3904136808557666 -0.6221936044128955 0.6786309659335652 -0.3903013332077736 0.6222050039132737 -0.7564827860628643 0.2014813328719305 0.6222050124535287 -0.7565155769512322 0.2013581493455097 -0.6222050039132737 0.7564827860628643 -0.2014813328719305 -0.6222050124535287 0.7565155769512322 -0.2013581493455097 0.6222055415468412 -0.7828530407950558 -0.001174983547447636 0.6222055340692866 -0.7828528419120427 -0.001304332699868602 -0.6222055415468412 0.7828530407950558 0.001174983547447636 -0.6222055340692866 0.7828528419120427 0.001304332699868602 0.6221917009441136 -0.7558510087740555 -0.203879228494502 0.6221917107911614 -0.7558845909667217 -0.2037546567856542 -0.6221917009441136 0.7558510087740555 0.203879228494502 -0.6221917107911614 0.7558845909667217 0.2037546567856542 0.6221815841653294 -0.6773359418068746 -0.392563495834897 0.6221815865170676 -0.6773995833087608 -0.3924536634205645 -0.6221815841653294 0.6773359418068746 0.392563495834897 -0.6221815865170676 0.6773995833087608 0.3924536634205645 0.6221798007864562 -0.5526539130480859 -0.554496120713179 0.6221798004943125 -0.5527449429825729 -0.5544053786391775 -0.6221798007864562 0.5526539130480859 0.554496120713179 -0.6221798004943125 0.5527449429825729 0.5544053786391775 0.6221838439383094 -0.3903078065454426 -0.678636191557623 0.622183838657477 -0.3904185239302142 -0.6785725068742466 -0.6221838439383094 0.3903078065454426 0.678636191557623 -0.622183838657477 0.3904185239302142 0.6785725068742466 0.6221885184214142 -0.201487412154011 -0.7564947258825042 0.6221885190971537 -0.2013628297434559 -0.7565278960497087 -0.6221885190971537 0.2013628297434559 0.7565278960497087 -0.6221885184214142 0.201487412154011 0.7564947258825042 0.6221871363076309 0.00130441775786443 -0.7828674638197849 0.6221871383491345 0.001175274353274519 -0.7828676667247855 -0.6221871363076309 -0.00130441775786443 0.7828674638197849 -0.6221871383491345 -0.001175274353274519 0.7828676667247855 0.6221898070491942 0.2038792279466273 -0.7558525679098893 0.6221898011836357 0.2037549411636534 -0.7558860861627658 -0.6221898070491942 -0.2038792279466273 0.7558525679098893 -0.6221898011836357 -0.2037549411636534 0.7558860861627658 0.6221939030436636 0.3925585914201147 -0.6773274683028494 0.6221939035143759 0.3924479534520299 -0.6773915782328985 -0.6221939030436636 -0.3925585914201147 0.6773274683028494 -0.6221939035143759 -0.3924479534520299 0.6773915782328985 0.6221903896076413 0.5543987480332496 -0.5527396740410957 0.6221903859354878 0.5544908010891638 -0.5526473334387365 -0.6221903859354878 -0.5544908010891638 0.5526473334387365 -0.6221903896076413 -0.5543987480332496 0.5527396740410957 0.6221910156914612 0.678568769305014 -0.3904135823927066 0.6221910202362403 0.6786331798213453 -0.3903016033568862 -0.6221910202362403 -0.6786331798213453 0.3903016033568862 -0.6221910156914612 -0.678568769305014 0.3904135823927066 0.6221853496726847 0.7564982237091488 -0.2014840643266405 0.6221853387884145 0.7565314500689442 -0.2013593038658174 -0.6221853387884145 -0.7565314500689442 0.2013593038658174 -0.6221853496726847 -0.7564982237091488 0.2014840643266405 0.6221793638195623 0.7828738475245173 0.001173924718077005 0.622179367250408 0.7828736406861537 0.00130295306474845 -0.622179367250408 -0.7828736406861537 -0.00130295306474845 -0.6221793638195623 -0.7828738475245173 -0.001173924718077005 0.622189223507684 0.7558868877678742 0.2037537313805625 0.6221892329183988 0.7558531905054573 0.2038786718691672 -0.6221892329183988 -0.7558531905054573 -0.2038786718691672 -0.622189223507684 -0.7558868877678742 -0.2037537313805625 0.6221951309101329 0.6773259154460521 0.3925593246082557 0.6221951326288879 0.6773907079233851 0.3924475070018612 -0.6221951326288879 -0.6773907079233851 -0.3924475070018612 -0.6221951309101329 -0.6773259154460521 -0.3925593246082557 0.6221949112080535 0.5526439122938858 0.554489133050694 0.6221949093854745 0.55273621248258 0.5543971267468953 -0.6221949093854745 -0.55273621248258 -0.5543971267468953 -0.6221949112080535 -0.5526439122938858 -0.554489133050694</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID415\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID413\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID416\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-1.399394685447692 3.99758154621831 3.662193290876626 4.107473716139581 -1.250023878680641 4.919473912535772 3.325059649491211 3.216767926096336 -3.346531992851785 3.203384761442292 1.219983462261442 4.924407217212858 -3.68705615598036 4.093286913307604 1.372898142287666 4.002874476983909 -13.05527828904129 -10.30342549923025 -13.66913394578432 -0.02353490189121231 -16.00031333163775 -7.294225363887784 -13.19562582832752 -2.805824911607605 -11.82288121501415 -5.396910799146412 -9.220524701687543 -12.61044414255163 -9.644378024947853 -7.620210540823365 -6.808676644055874 -9.324186320342909 -4.757417384070129 -14.05810026995697 -3.508928026645748 -10.39275039272216 0.02993367461101789 -14.54771542895396 0.02993367461098014 -10.75306030751745 3.56674422924643 -10.38057079947547 4.815205427051927 -14.04592303961512 6.860518126504815 -9.300652969108006 9.272333143517251 -12.58691433567411 9.686716574760796 -7.58692666256699 13.09760632593005 -10.27015343549829 11.8527964920076 -5.35615068982347 13.21113689719592 -2.760366756640539 16.03025714371136 -7.2534800227204 13.66916248086444 0.02353305587179104 16.0003328556399 7.294233634054899 17.85497189630175 3.787954513899558 17.87046043747516 -3.742493405301364 18.49288112382276 0.0235330558717858 -17.85496739076283 -3.787953332447107 -17.87042739685603 3.742497540384916 -18.4927970204285 -0.02353490189122628 -16.03022410309207 7.253473524731939 -13.09757328531092 10.27014516533118 -13.2110843325745 2.760368233456089 -11.85278748092962 5.356150689823473 -9.272324132439298 12.58691788003143 -9.686702307220683 7.586924890388302 -6.860480580346522 9.300657694917794 -4.815191534973343 14.0459159509005 -3.5666972965487 10.38056843657058 -0.02990082172258827 14.54770834023929 -0.02990082172260382 10.75306267042233 3.508941918724347 10.39274802981726 4.757403116530008 14.05809790705208 6.80868640605695 9.324190455426477 9.220519445225365 12.61044532400409 9.644406560028058 7.620199907751378 13.05526777611702 10.30342668068269 11.8228864714763 5.396912571325081 13.19564835602249 2.805823139428946 1.162658492477524 4.932771090314962 4.606236932793788 2.014872649270415 5.339868907720868 2.743315371972167 0.5886060988810937 4.120513442521916 -5.353301219116173 2.726315394172552 -0.611291521408307 4.117988780848812 -1.187571050858884 4.929264283026042 -4.617667416210899 1.999131421715409 -5.164343543501015 0.8290711333373181 -2.99636583736415 4.428807317739661 -6.141480814850693 1.351387648974424 -2.139599332309027 3.788942846944112 -3.20239465897159 3.292826485442597 -6.372640036501849 0.1891437608247533 -5.26773872097306 -0.1397922540547897 -4.225021602925385 3.758142633215543 -3.943277568442837 2.750953874283442 -6.301440743977258 -0.7720073775261384 -5.136984467603375 -0.9288234656837572 -5.060075937571718 3.054007997932716 -4.477181062845431 2.188046769828072 -6.045781765648268 -1.597450497087772 -4.864377425616241 -1.59744239333856 -5.642996750969768 2.338482509684357 -4.471180360231378 -2.195912950284375 -6.049493045559932 1.588934727628423 -5.636963394135375 -2.34637225796323 -4.868088702938565 1.588940824409902 -3.935010939522044 -2.758405912819115 -6.303369004477561 0.7623055482335482 -5.051724644990093 -3.061634706345457 -5.138980702977859 0.9193062601172498 -3.190956910517112 -3.299940318090963 -6.372186186701201 -0.2009621428356244 -4.213235749099931 -3.765702618015408 -5.267538473975297 0.1284836752139618 -2.123166668350666 -3.794862669340203 -6.13638914881693 -1.36597498609087 -2.978922285784557 -4.43555752449242 -5.160082680879592 -0.8427219285103885 -1.16256291986312 -4.932657257001637 -4.606122629645602 -2.014735477800759 -5.339735788379853 -2.743176144763794 -0.5885197661079195 -4.120399914351149 1.399436221034114 -3.997516865119874 -3.662179849014553 -4.107398405247095 1.250064419912603 -4.919404685624561 -3.325063773367089 -3.216692463880472 3.346512787926854 -3.203272247311469 -1.21997784929461 -4.924298380406616 3.68705418545108 -4.093164790378991 -1.372895805521925 -4.00277042444336 4.617747902423629 -1.999222052002686 1.187652019463948 -4.929337193170962 5.353407928182614 -2.726409124851045 0.6113642978876138 -4.118071356985403 6.141565090651655 -1.351438121476672 2.139663964115627 -3.788989196166075 2.996454837881586 -4.42885565877945 5.164438050886696 -0.8291264049415041 6.372654774740514 -0.1890906805768049 3.202401858901243 -3.292778259440419 4.225021696139704 -3.75808538423671 5.267743730206006 0.1398428529100231 6.301322821900057 0.7719723381833509 3.943189382779365 -2.750992348204655 5.059997234893208 -3.054044110362204 5.136887609411004 0.9287968784213682 6.04489261921601 1.597565779340973 4.476345343562111 -2.187929742582891 5.642141342295993 -2.338367823715728 4.863551817964225 1.597558026222105 5.636555464348028 2.346311909831038 4.86769810624192 -1.589009864038318 6.049038901895399 -1.588997567746211 4.470751428024356 2.195852734366363 6.303703735283573 -0.7621972952458326 3.935311944199161 2.758511066035775 5.13929496892643 -0.9192004917269404 5.05203837862957 3.061732231587077 6.372547766122596 0.2010852094342388 3.191244841452139 3.300055229866782 5.267888059821077 -0.1283553981323895 4.213545717048607 3.765827006196082 2.979191962199724 4.435783737510645 5.160386065421639 0.8429754464373749 6.136714648690377 1.366238049433706 2.123424527614135 3.795082979436403</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"144\" source=\"#ID416\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID412\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID410\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID411\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"192\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 4 3 5 0 6 1 7 2 6 1 5 0 8 4 2 5 9 6 2 5 8 4 0 7 5 7 10 4 7 5 11 6 7 5 10 4 12 8 13 9 14 10 13 9 12 8 15 11 15 11 12 8 16 12 16 12 12 8 17 13 16 12 17 13 18 14 18 14 17 13 19 15 19 15 17 13 20 16 19 15 20 16 21 17 21 17 20 16 22 18 21 17 22 18 23 19 23 19 22 18 24 20 24 20 22 18 25 21 24 20 25 21 26 22 26 22 25 21 27 23 26 22 27 23 28 24 28 24 27 23 29 25 28 24 29 25 30 26 30 26 29 25 31 27 31 27 29 25 32 28 31 27 32 28 33 29 33 29 32 28 34 30 34 30 32 28 35 31 35 31 32 28 36 32 35 31 36 32 37 33 38 34 39 35 40 36 39 35 38 34 41 37 41 37 38 34 14 10 41 37 14 10 42 38 42 38 14 10 13 9 42 38 13 9 43 39 42 38 43 39 44 40 42 38 44 40 45 41 45 41 44 40 46 42 45 41 46 42 47 43 45 41 47 43 48 44 48 44 47 43 49 45 48 44 49 45 50 46 50 46 49 45 51 47 50 46 51 47 52 48 50 46 52 48 53 49 53 49 52 48 54 50 53 49 54 50 55 51 55 51 54 50 56 52 55 51 56 52 57 53 57 53 56 52 58 54 57 53 58 54 59 55 57 53 59 55 34 30 34 30 59 55 33 29 60 29 61 55 62 30 62 30 61 55 63 53 61 55 64 54 63 53 64 54 65 52 63 53 63 53 65 52 66 51 65 52 67 50 66 51 66 51 67 50 68 49 67 50 69 48 68 49 68 49 69 48 70 46 69 48 71 47 70 46 71 47 72 45 70 46 70 46 72 45 73 44 72 45 74 43 73 44 73 44 74 43 75 41 74 43 76 42 75 41 76 42 77 40 75 41 75 41 77 40 78 38 77 40 79 39 78 38 79 39 80 9 78 38 80 9 81 10 78 38 78 38 81 10 82 37 81 10 83 34 82 37 82 37 83 34 84 35 85 36 84 35 83 34 86 33 87 32 88 31 87 32 89 28 88 31 88 31 89 28 62 30 62 30 89 28 60 29 60 29 89 28 90 27 89 28 91 25 90 27 90 27 91 25 92 26 92 26 91 25 93 24 91 25 94 23 93 24 93 24 94 23 95 22 94 23 96 21 95 22 95 22 96 21 97 20 96 21 98 18 97 20 97 20 98 18 99 19 99 19 98 18 100 17 98 18 101 16 100 17 100 17 101 16 102 15 101 16 103 13 102 15 102 15 103 13 104 14 104 14 103 13 105 12 103 13 106 8 105 12 105 12 106 8 107 11 107 11 106 8 80 9 81 10 80 9 106 8 1 56 108 57 109 58 108 57 1 56 3 59 4 59 6 56 110 57 111 58 110 57 6 56 112 60 8 61 9 62 8 61 112 60 113 63 114 63 115 60 10 61 11 62 10 61 115 60 116 64 112 65 117 66 112 65 116 64 113 67 114 67 118 64 115 65 119 66 115 65 118 64 116 68 120 69 121 70 120 69 116 68 117 71 119 71 118 68 122 69 123 70 122 69 118 68 121 72 124 73 125 74 124 73 121 72 120 75 122 75 123 72 126 73 127 74 126 73 123 72 125 76 128 77 129 78 128 77 125 76 124 79 126 79 127 76 130 77 131 78 130 77 127 76 132 80 128 81 133 82 128 81 132 80 129 83 131 83 134 80 130 81 135 82 130 81 134 80 136 84 133 85 137 86 133 85 136 84 132 87 134 87 138 84 135 85 139 86 135 85 138 84 140 88 137 89 141 90 137 89 140 88 136 91 138 91 142 88 139 89 143 90 139 89 142 88 144 92 141 93 145 94 141 93 144 92 140 95 142 95 146 92 143 93 147 94 143 93 146 92 148 96 144 97 145 98 144 97 148 96 149 99 150 99 151 96 146 97 147 98 146 97 151 96 152 100 148 101 153 102 148 101 152 100 149 103 150 103 154 100 151 101 155 102 151 101 154 100 156 104 153 105 157 106 153 105 156 104 152 107 154 107 158 104 155 105 159 106 155 105 158 104 160 108 157 109 161 110 157 109 160 108 156 111 158 111 162 108 159 109 163 110 159 109 162 108 164 112 160 113 161 114 160 113 164 112 165 115 166 115 167 112 162 113 163 114 162 113 167 112 168 116 165 117 164 118 165 117 168 116 169 119 170 119 171 116 166 117 167 118 166 117 171 116 172 120 169 121 168 122 169 121 172 120 173 123 174 123 175 120 170 121 171 122 170 121 175 120 176 124 173 125 172 126 173 125 176 124 177 127 178 127 179 124 174 125 175 126 174 125 179 124 180 128 177 129 176 130 177 129 180 128 181 131 182 131 183 128 178 129 179 130 178 129 183 128 180 132 184 133 181 134 184 133 180 132 185 135 186 135 183 132 187 133 182 134 187 133 183 132 185 136 188 137 184 138 188 137 185 136 189 139 190 139 186 136 191 137 187 138 191 137 186 136 109 140 188 141 189 142 188 141 109 140 108 143 110 143 111 140 191 141 190 142 191 141 111 140</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID412\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID413\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID417\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID418\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID422\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">-0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID422\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID419\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID423\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">-0.9015424253173537 0.203441541780783 0.381880602323241 -0.913408876044686 0.2046884346174862 0.3518335826731535 -0.914297075399253 0.215116645721763 0.3431991938361602 0.914297075399253 -0.215116645721763 -0.3431991938361602 0.913408876044686 -0.2046884346174862 -0.3518335826731535 0.9015424253173537 -0.203441541780783 -0.381880602323241 -0.9136510681511446 0.2298793945988548 0.3352569009060609 0.9136510681511446 -0.2298793945988548 -0.3352569009060609 -0.9117782845679017 0.2541872650090479 0.3225665731250447 0.9117782845679017 -0.2541872650090479 -0.3225665731250447 -0.9120084709463099 0.1943087758477377 0.3612265889310024 0.9120084709463099 -0.1943087758477377 -0.3612265889310024 -0.9141809063392639 0.1816931123289236 0.3622994388857799 0.9141809063392639 -0.1816931123289236 -0.3622994388857799 -0.914761389475236 0.2626135214064524 0.306994688390269 0.914761389475236 -0.2626135214064524 -0.306994688390269 -0.9126379924856676 0.2390954511057188 0.3315497849980955 0.9126379924856676 -0.2390954511057188 -0.3315497849980955 -0.9141710218943564 0.2509149231036151 0.3183285159902191 0.9141710218943564 -0.2509149231036151 -0.3183285159902191 -0.9164054954864268 0.1852852093678754 0.3547821289633675 0.9164054954864268 -0.1852852093678754 -0.3547821289633675 -0.8960867889457255 0.2095902619358588 0.3912804477335874 0.8960867889457255 -0.2095902619358588 -0.3912804477335874 -0.907217225171867 0.2176423778275239 0.3599843076094281 0.907217225171867 -0.2176423778275239 -0.3599843076094281 -0.8562445711454921 0.1718809545737532 0.4871367075459286 0.8562445711454921 -0.1718809545737532 -0.4871367075459286 -0.8755394211216304 0.1676337555122239 0.4531331438714985 0.8755394211216304 -0.1676337555122239 -0.4531331438714985</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID423\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID421\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID424\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"156\">7.438147269351948 -8.945061733813203 11.48721830684091 -14.18013834552815 11.91024662259696 -14.00044492351452 5.955123311298482 -7.00022246175726 5.743609153420457 -7.090069172764073 3.719073634675974 -4.472530866906602 8.254929826970962 -8.487481463314271 12.88197936170507 -13.45581934143577 13.28861338462427 -13.18460323054936 6.644306692312134 -6.592301615274679 6.440989680852535 -6.727909670717886 4.127464913485481 -4.243740731657136 8.460166676803608 -8.414954825070682 12.39471472312215 -13.45941836602513 12.70973102284357 -13.55074890505256 6.354865511421787 -6.775374452526281 6.197357361561076 -6.729709183012567 4.230083338401804 -4.207477412535341 7.486582909888019 -8.962355583693171 12.38139310001852 -13.74944422881806 12.3713572617144 -13.48543642483197 6.185678630857198 -6.742718212415983 6.19069655000926 -6.874722114409029 3.74329145494401 -4.481177791846585 7.360925690233538 -8.961744858697601 10.65623561054411 -13.82917257110459 11.08396695669552 -14.10459549978603 5.54198347834776 -7.052297749893013 5.328117805272056 -6.914586285552295 3.680462845116769 -4.480872429348801 8.419948186108105 -8.356981608688461 13.46124800907294 -12.7724965200221 13.26768441638996 -12.36521479670056 6.633842208194981 -6.182607398350278 6.730624004536471 -6.386248260011051 4.209974093054052 -4.17849080434423 8.259253079178057 -8.537099214004153 9.876498001695808 -11.98045450806011 11.72036966567479 -13.33278326480139 5.860184832837393 -6.666391632400697 4.938249000847904 -5.990227254030056 4.129626539589029 -4.268549607002076 8.323250129800233 -8.425467281546748 13.15729410283716 -12.4439210471574 11.97966509082454 -10.58711210718703 5.989832545412269 -5.293556053593514 6.578647051418579 -6.221960523578701 4.161625064900116 -4.212733640773374 6.956289496105613 -10.6269661093069 8.850256094164777 -12.34833197236433 7.350777491034236 -8.872150234277518 3.675388745517118 -4.436075117138759 4.425128047082389 -6.174165986182165 3.478144748052807 -5.313483054653452 7.951820622852295 -8.756422366433158 11.57804377148073 -10.94931484447147 10.13372814794584 -9.101011452070644 5.066864073972921 -4.550505726035322 5.789021885740366 -5.474657422235735 3.975910311426147 -4.378211183216579 7.059350620025528 -10.00408034766921 7.554866048665636 -10.57803416141198 7.911156915166181 -8.818168903335222 3.955578457583091 -4.409084451667611 3.777433024332818 -5.28901708070599 3.529675310012764 -5.002040173834605 7.514844530510416 -9.783809952703798 9.68941088965202 -10.15601053307976 9.193989107545409 -9.508454846182369 4.596994553772705 -4.754227423091185 4.84470544482601 -5.078005266539878 3.757422265255208 -4.891904976351899 7.370703582872622 -9.539412442323325 9.051855465856226 -9.271744288876676 8.659595885478712 -9.110994827756787 4.329797942739356 -4.555497413878394 4.525927732928113 -4.635872144438338 3.685351791436311 -4.769706221161663</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"78\" source=\"#ID424\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID420\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID418\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID419\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"13\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 0 6 2 7 6 8 0 12 8 13 1 14 0 18 6 19 10 20 0 24 12 25 8 26 0 30 10 31 14 32 0 36 16 37 12 38 0 42 14 43 18 44 20 48 16 49 0 50 0 54 18 55 22 56 24 60 20 61 0 62 0 66 22 67 26 68 0 72 26 73 28 74</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID420\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID421\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"13\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 3 4 4 5 5 7 9 3 10 5 11 4 15 9 16 5 17 11 21 7 22 5 23 9 27 13 28 5 29 15 33 11 34 5 35 13 39 17 40 5 41 19 45 15 46 5 47 5 51 17 52 21 53 23 57 19 58 5 59 5 63 21 64 25 65 27 69 23 70 5 71 29 75 27 76 5 77</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID420\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID421\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID425\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID426\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID430\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"102\">-0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID430\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID427\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID431\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"102\">-0.9142974941597579 -0.4048897335756242 0.01115328732918963 -0.9119121534907809 -0.4102455541326406 0.01071492558113266 -0.9134093689969149 -0.4070360955457695 -0.002222960079090378 0.9134093689969149 0.4070360955457695 0.002222960079090378 0.9119121534907809 0.4102455541326406 -0.01071492558113266 0.9142974941597579 0.4048897335756242 -0.01115328732918963 -0.9136502264216238 -0.4055454024125849 0.02786019277984999 0.9136502264216238 0.4055454024125849 -0.02786019277984999 -0.9117790669024211 -0.4069450223696586 0.05526917700770017 0.9117790669024211 0.4069450223696586 -0.05526917700770017 -0.9120015951730859 -0.4098723359248514 -0.01605486360118063 0.9120015951730859 0.4098723359248514 0.01605486360118063 -0.9141814459760682 -0.4043812773638791 -0.02735080164569932 0.9141814459760682 0.4043812773638791 0.02735080164569932 -0.9147624108846287 -0.3977990536394137 0.07046732970766671 0.9147624108846287 0.3977990536394137 -0.07046732970766671 -0.9126372670989114 -0.4070248176210724 0.03773614371876295 0.9126372670989114 0.4070248176210724 -0.03773614371876295 -0.9144871313551589 -0.4004184535448701 0.05812356360846403 0.9144871313551589 0.4004184535448701 -0.05812356360846403 -0.9204794639534302 -0.3894229249437765 -0.03267020000305571 0.9204794639534302 0.3894229249437765 0.03267020000305571 -0.9088875917936953 -0.4158717928127509 0.03120893183313543 0.9088875917936953 0.4158717928127509 -0.03120893183313543 -0.9109205019190907 -0.4117843417158877 -0.0256416672836413 0.9109205019190907 0.4117843417158877 0.0256416672836413 -0.9100402409371641 -0.4142768079748553 0.01419458520680808 0.9100402409371641 0.4142768079748553 -0.01419458520680808 -0.8630221137902762 -0.5042508634437252 0.03039568760896014 0.8630221137902762 0.5042508634437252 -0.03039568760896014 -0.9456945690175788 -0.3202907360795988 0.05545833131500434 0.9456945690175788 0.3202907360795988 -0.05545833131500434 -0.8815078276401288 -0.4717714966614515 0.01938052494116135 0.8815078276401288 0.4717714966614515 -0.01938052494116135</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID431\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID429\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID432\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-21.27670996781477 -0.5024825625750654 -13.45535559221688 -0.2253901856971766 -21.24412297407829 -0.125142413745954 -10.62206148703914 -0.06257120687297701 -6.727677796108438 -0.1126950928485883 -10.63835498390739 -0.2512412812875327 -21.24619008053712 -1.035354676238285 -21.18446660970853 -1.451884809972818 -13.42484942034366 -0.7580228247401991 -6.712424710171829 -0.3790114123700996 -10.59223330485427 -0.7259424049864089 -10.62309504026856 -0.5176773381191425 -21.25751011054963 -0.7668235939129079 -13.46874671677735 -0.8672629349756258 -20.98510383527625 -0.6124360400889033 -10.49255191763812 -0.3062180200444516 -6.734373358388677 -0.4336314674878129 -10.62875505527481 -0.3834117969564539 -21.26028882019027 -0.9262762329989754 -20.97141608118763 -1.060835085065468 -13.50058237987369 -0.2330322036721792 -6.750291189936846 -0.1165161018360896 -10.48570804059382 -0.5304175425327341 -10.63014441009513 -0.4631381164994877 -20.9479230613187 0.06512407169546448 -13.43154180529066 -0.1892618490922838 -20.42396479385608 0.2036061404282778 -10.21198239692804 0.1018030702141389 -6.71577090264533 -0.09463092454614187 -10.47396153065935 0.03256203584773224 -20.85307675263828 -1.723023086473669 -20.31535974206487 -1.82375838440512 -13.38256041331185 -0.8934496676200572 -6.691280206655926 -0.4467248338100286 -10.15767987103244 -0.9118791922025602 -10.42653837631914 -0.8615115432368344 -20.47295909683744 -0.3353143390356228 -13.48055350387107 -0.7283738844541267 -18.02003060176221 0.1220255335760297 -9.010015300881104 0.06101276678801487 -6.740276751935537 -0.3641869422270633 -10.23647954841872 -0.1676571695178114 -20.33158400188232 -1.748210110450446 -17.71476096729495 -2.009425410882813 -13.39863503439812 -0.8185917493552359 -6.699317517199058 -0.409295874677618 -8.857380483647473 -1.004712705441407 -10.16579200094116 -0.8741050552252229 -17.86863127354823 0.6202423415971474 -13.32897297677283 -0.2295582768528615 -15.0082564826709 0.9665192416528483 -7.504128241335451 0.4832596208264242 -6.664486488386415 -0.1147791384264307 -8.934315636774112 0.3101211707985737 -17.76961962851651 -1.883509276524634 -15.02644916115231 -1.943272607151886 -13.4529889311389 -0.693808394268258 -6.72649446556945 -0.346904197134129 -7.513224580576157 -0.9716363035759428 -8.884809814258253 -0.9417546382623171 -14.89071638258296 1.073873522804769 -13.21218803543074 -0.1228597901630481 -14.02614066497001 1.087155530817702 -7.013070332485004 0.5435777654088512 -6.60609401771537 -0.06142989508152404 -7.445358191291481 0.5369367614023844 -15.35883216443236 -1.675075450976801 -14.44465413117839 -1.686613223182673 -13.78397498742696 -0.4267008592463119 -6.891987493713481 -0.213350429623156 -7.222327065589196 -0.8433066115913365 -7.679416082216179 -0.8375377254884004 -15.11723179364458 0.6225414511188454 -14.30189428277912 -0.5868967377974099 -14.69836427084818 0.4732769352801142 -7.349182135424091 0.2366384676400571 -7.150947141389562 -0.293448368898705 -7.558615896822288 0.3112707255594227 -13.29140723759785 -2.096895835997954 -12.92434911954095 -1.920022184078838 -12.63674340539486 -0.8350418093976046 -6.318371702697432 -0.4175209046988023 -6.462174559770474 -0.960011092039419 -6.645703618798926 -1.048447917998977 -14.41809006551084 0.5267253828811376 -14.02024496794676 -0.5331294523352237 -14.1800185543271 0.1536412372854066 -7.090009277163551 0.07682061864270329 -7.010122483973378 -0.2665647261676118 -7.209045032755421 0.2633626914405688</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"90\" source=\"#ID432\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID428\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID426\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID427\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"15\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 0 6 6 7 1 8 2 12 1 13 8 14 6 18 10 19 1 20 8 24 1 25 12 26 10 30 14 31 1 32 12 36 1 37 16 38 14 42 18 43 1 44 16 48 1 49 20 50 18 54 22 55 1 56 20 60 1 61 24 62 22 66 26 67 1 68 24 72 1 73 28 74 26 78 30 79 1 80 28 84 1 85 32 86</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID428\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID429\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"15\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 3 4 4 5 5 4 9 7 10 5 11 9 15 4 16 3 17 4 21 11 22 7 23 13 27 4 28 9 29 4 33 15 34 11 35 17 39 4 40 13 41 4 45 19 46 15 47 21 51 4 52 17 53 4 57 23 58 19 59 25 63 4 64 21 65 4 69 27 70 23 71 29 75 4 76 25 77 4 81 31 82 27 83 33 87 4 88 29 89</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID428\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID429\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID433\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID434\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID438\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"108\">-0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID438\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID435\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID439\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"108\">-0.9105526100805975 0.1847929401693026 -0.369791175582917 -0.9047258764599201 0.221095053799041 -0.3641264418432539 -0.9056830514341907 0.2001496463545517 -0.3737356410740096 0.9056830514341907 -0.2001496463545517 0.3737356410740096 0.9047258764599201 -0.221095053799041 0.3641264418432539 0.9105526100805975 -0.1847929401693026 0.369791175582917 -0.9051369888889698 0.176876174222501 -0.386577094946688 0.9051369888889698 -0.176876174222501 0.386577094946688 -0.904493813809657 0.1911218988267972 -0.3812654725632798 0.904493813809657 -0.1911218988267972 0.3812654725632798 -0.9048570575862879 0.1960303289645085 -0.3778965671481442 0.9048570575862879 -0.1960303289645085 0.3778965671481442 -0.9032828455301246 0.283194694223623 -0.3223055477874834 0.9032828455301246 -0.283194694223623 0.3223055477874834 -0.903932511685058 0.08979039239145804 -0.4181431570083751 0.903932511685058 -0.08979039239145804 0.4181431570083751 -0.9053391715144735 0.2442462075276558 -0.347425926824473 0.9053391715144735 -0.2442462075276558 0.347425926824473 -0.9034477096128234 0.08055611706507812 -0.4210616914405072 0.9034477096128234 -0.08055611706507812 0.4210616914405072 -0.9051167199063447 0.3004841266895872 -0.3007873217966073 0.9051167199063447 -0.3004841266895872 0.3007873217966073 -0.9038086622089847 0.07690250391578957 -0.4209701972913139 0.9038086622089847 -0.07690250391578957 0.4209701972913139 -0.8916242092027337 0.2877059539723708 -0.3496162948325602 0.8916242092027337 -0.2877059539723708 0.3496162948325602 -0.8974554480062785 0.08990498062023532 -0.4318458212180883 0.8974554480062785 -0.08990498062023532 0.4318458212180883 -0.8779052696244868 0.2831733692969536 -0.3861284507603243 0.8779052696244868 -0.2831733692969536 0.3861284507603243 -0.8787757289941988 0.135225059641794 -0.4576760878346039 0.8787757289941988 -0.135225059641794 0.4576760878346039 -0.9571766001854924 0.2406762368571569 -0.1608971878859901 0.9571766001854924 -0.2406762368571569 0.1608971878859901 -0.9663187840262552 -0.06408349179479717 -0.2492414767196787 0.9663187840262552 0.06408349179479717 0.2492414767196787</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID439\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID437\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID440\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"192\">7.247890561596551 9.017184793018476 11.62241699167023 14.15859673204485 11.23701380701663 14.38472431556303 5.618506903508315 7.192362157781517 5.811208495835114 7.079298366022423 3.623945280798275 4.508592396509238 6.312270124388578 9.4365141150515 10.09506839990886 14.89571032499116 9.610237607549587 15.07004322533177 4.805118803774794 7.535021612665886 5.047534199954431 7.447855162495579 3.156135062194289 4.71825705752575 6.493139303682451 9.389856794481524 10.73290706126174 14.34965055071956 10.70820329278883 14.61305107737053 5.354101646394414 7.306525538685265 5.366453530630868 7.174825275359781 3.246569651841226 4.694928397240762 6.929856889300352 9.19065053817757 10.37099973231822 14.77093216045764 10.07214180933752 14.65062086041686 5.036070904668759 7.32531043020843 5.185499866159109 7.385466080228818 3.464928444650176 4.595325269088785 7.821705813732769 8.685069065969902 12.17351499889409 13.08321338276301 12.31835537755474 13.50282029479082 6.159177688777371 6.751410147395411 6.086757499447046 6.541606691381505 3.910852906866384 4.342534532984951 5.370170743512229 9.751768766821881 8.151522194221171 15.33158858879169 7.77529816670016 15.01302132937492 3.88764908335008 7.506510664687459 4.075761097110585 7.665794294395843 2.685085371756115 4.87588438341094 7.211427886669418 9.036025413102365 10.6191642510143 11.62672481508899 11.45974683281593 13.49634638012442 5.729873416407967 6.748173190062207 5.309582125507149 5.813362407544494 3.605713943334709 4.518012706551183 5.235798096827196 9.792612949944351 7.610509003207477 15.06240894843653 6.043161989998992 13.39339577620473 3.021580994999496 6.696697888102364 3.805254501603738 7.531204474218267 2.617899048413598 4.896306474972175 7.980285588588723 8.469341774523125 10.22937862915607 8.939277822018701 11.46063465620553 10.99959879798778 5.730317328102766 5.499799398993892 5.114689314578033 4.46963891100935 3.990142794294362 4.234670887261562 4.605625825318914 11.54493689437456 5.204683511179758 9.799429035524494 6.007223952446729 13.40087908685941 3.003611976223365 6.700439543429704 2.602341755589879 4.899714517762247 2.302812912659457 5.772468447187281 7.838690672075432 8.780226490960692 9.603947610001866 8.670713562118595 10.08534950006962 9.25731378331802 5.042674750034811 4.62865689165901 4.801973805000933 4.335356781059297 3.919345336037716 4.390113245480346 4.061243782257101 10.93449054480636 5.113560001846171 9.800622461742714 4.507682296432314 11.54467298219238 2.253841148216157 5.772336491096191 2.556780000923085 4.900311230871357 2.030621891128551 5.46724527240318 7.906737286793971 9.178667328377136 9.276434081040812 8.875378320044581 9.671671521288179 9.065981605457438 4.835835760644089 4.532990802728719 4.638217040520406 4.43768916002229 3.953368643396986 4.589333664188568 5.196960240007307 11.11464310537072 5.184839687325803 10.74959644287122 6.191963544606201 9.949194390801255 3.0959817723031 4.974597195400627 2.592419843662901 5.374798221435611 2.598480120003654 5.557321552685361 7.116338653487188 7.625819840706948 7.961446468619004 7.383621000725571 8.493525136113068 7.344301545890064 4.246762568056534 3.672150772945032 3.980723234309502 3.691810500362786 3.558169326743594 3.812909920353474 2.15770661357887 9.356257960679804 2.510419584926491 9.040122526603774 3.248034811266818 8.626432983016079 1.624017405633409 4.313216491508039 1.255209792463246 4.520061263301887 1.078853306789435 4.678128980339902</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"96\" source=\"#ID440\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID436\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID434\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID435\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"16\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 0 6 2 7 6 8 0 12 8 13 1 14 0 18 6 19 10 20 0 24 12 25 8 26 0 30 10 31 14 32 0 36 16 37 12 38 0 42 14 43 18 44 0 48 20 49 16 50 22 54 0 55 18 56 0 60 24 61 20 62 26 66 0 67 22 68 0 72 28 73 24 74 26 78 30 79 0 80 0 84 32 85 28 86 30 90 34 91 0 92</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID436\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID437\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"16\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 3 4 4 5 5 7 9 3 10 5 11 4 15 9 16 5 17 11 21 7 22 5 23 9 27 13 28 5 29 15 33 11 34 5 35 13 39 17 40 5 41 19 45 15 46 5 47 17 51 21 52 5 53 19 57 5 58 23 59 21 63 25 64 5 65 23 69 5 70 27 71 25 75 29 76 5 77 5 81 31 82 27 83 29 87 33 88 5 89 5 93 35 94 31 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID436\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID437\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID441\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID442\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID446\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID446\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID443\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID447\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1357431839025557 0.7497550114468473 0.6476428111500465 -0.1366815993397975 0.7492072263892851 0.6480792176331454 -0.1339049186988217 0.7508247768900788 0.6467856114325872 0.1339049186988217 -0.7508247768900788 -0.6467856114325872 0.1366815993397975 -0.7492072263892851 -0.6480792176331454 0.1357431839025557 -0.7497550114468473 -0.6476428111500465 -0.1390632020355034 0.9113651292871443 -0.3873951818996452 -0.1334097867881871 0.9103994814047611 -0.3916307100408146 -0.1520463180641854 0.9134113510277387 -0.3775733319195171 0.1520463180641854 -0.9134113510277387 0.3775733319195171 0.1334097867881871 -0.9103994814047611 0.3916307100408146 0.1390632020355034 -0.9113651292871443 0.3873951818996452 -0.1620999136155048 0.09272970269960207 -0.9824076649961 -0.1662539374228294 0.0953143051630216 -0.9814656445962314 -0.1567944187057105 0.08942895644361149 -0.9835740805918715 0.1567944187057105 -0.08942895644361149 0.9835740805918715 0.1662539374228294 -0.0953143051630216 0.9814656445962314 0.1620999136155048 -0.09272970269960207 0.9824076649961 -0.1839627565907119 -0.7773362748139587 -0.6015862532055601 -0.1731947688567061 -0.7836915051681265 -0.5965158814046685 -0.1804827978264776 -0.7794077832683366 -0.5999578877466854 0.1804827978264776 0.7794077832683366 0.5999578877466854 0.1731947688567061 0.7836915051681265 0.5965158814046685 0.1839627565907119 0.7773362748139587 0.6015862532055601 -0.1454069155601703 -0.830330389039357 0.5379667963220666 -0.159394116583764 -0.8338018904044722 0.5285526682899351 -0.1498802405936568 -0.8314662140399025 0.5349764933057699 0.1498802405936568 0.8314662140399025 -0.5349764933057699 0.159394116583764 0.8338018904044722 -0.5285526682899351 0.1454069155601703 0.830330389039357 -0.5379667963220666 -0.1178688308120367 -0.1336192904808511 0.9839983861442035 -0.1169608422628643 -0.1329517455880777 0.9841971320432936 -0.1200646820303652 -0.1352334059142434 0.9835122765140153 0.1200646820303652 0.1352334059142434 -0.9835122765140153 0.1169608422628643 0.1329517455880777 -0.9841971320432936 0.1178688308120367 0.1336192904808511 -0.9839983861442035 -0.1149780011914516 -0.1314937652318465 0.9846265530378361 0.1149780011914516 0.1314937652318465 -0.9846265530378361 -0.1383533907224121 0.748228527281576 0.6488546911579324 0.1383533907224121 -0.748228527281576 -0.6488546911579324 -0.1218391275179259 0.9082828720398434 -0.4002217527380592 0.1218391275179259 -0.9082828720398434 0.4002217527380592 -0.171069294297384 0.09831063701288102 -0.9803419378965262 0.171069294297384 -0.09831063701288102 0.9803419378965262 -0.1903801350748161 -0.7734717985712226 -0.6045632977479636 0.1903801350748161 0.7734717985712226 0.6045632977479636 -0.1369570666554436 -0.8281195642851391 0.5435630130365088 0.1369570666554436 0.8281195642851391 -0.5435630130365088</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID447\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID445\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID448\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">-2.556691561629541 -2.602862605502018 -2.586245081388976 -3.138366854245081 -2.334681128296288 -2.878373475755785 -2.951301684127827 -2.560178796236892 -3.07457980125035 -3.103438394186436 -3.22750530352778 -2.812409736805045 3.575431113631269 -3.789832146312027 3.841902111534349 -4.161649426798395 3.890396129634985 -3.830929293644298 3.566726244310392 -1.436325568056493 3.912498830598775 -1.754485825277173 3.887388388210999 -1.440193123441505 -0.6269127531905233 3.417011356515528 -0.02789107994044388 3.434714660158956 -0.4520798298547238 3.628218854229932 -4.876425679403012 -2.926478984311723 -4.930711116245211 -3.25041739217853 -4.616564961458593 -3.307009919642491 -4.878537780603065 -1.515035859425156 -4.836851909935116 -1.83958610627239 -4.513663973358447 -1.850958396857737 -4.790052294242987 -1.141577079945387 -5.308185798548161 -1.055748647629636 -5.046195202738853 -1.291777653134048 -4.796520925120116 -1.098375304575961 -5.090443691600591 -0.8300736736479857 -5.313828097940997 -1.009515787560939 3.552114816996843 -3.802895821126935 3.495993835408513 -4.170866329638131 3.816637853167348 -4.175572887189126 3.688828852934125 -1.375709284375783 3.713607575865441 -1.738790116719466 4.0296039108369 -1.697189035132493 -0.6101368924396966 3.352691153528167 -0.1460547981744018 3.138679991438502 -0.01104629650652111 3.368886973135145 -4.906343357164033 -2.861941179468713 -4.653434003548693 -3.245359532973397 -4.583199311398975 -2.874060766680606 -4.518465614885066 -1.386244061110217 -4.835281606577187 -1.418604677661858 -4.476160721886599 -1.758342063168315</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID448\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID444\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID442\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID443\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 42 24 48 25 43 26 46 26 49 25 47 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 24 33 54 34 25 35 28 35 55 34 29 33 30 36 32 37 56 38 57 38 33 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID444\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID445\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID449\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID450\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID454\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID454\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID451\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID455\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211700042938787 0.789903523489808 0.6011407935232872 -0.1116879029147231 0.7955488162724242 0.5955064174885576 -0.1556107303666403 0.7682758938062599 0.6209166220926551 0.1556107303666403 -0.7682758938062599 -0.6209166220926551 0.1116879029147231 -0.7955488162724242 -0.5955064174885576 0.1211700042938787 -0.789903523489808 -0.6011407935232872 -0.07906121212958679 0.7719592340661052 -0.6307362885364001 -0.1090844255234062 0.783426245276965 -0.6118365029315144 -0.1244233597649755 0.7888847891485317 -0.60181360652188 0.1244233597649755 -0.7888847891485317 0.60181360652188 0.1090844255234062 -0.783426245276965 0.6118365029315144 0.07906121212958679 -0.7719592340661052 0.6307362885364001 -0.1697468595286489 -0.006068861490700951 -0.9854690114865956 -0.1572201673390395 -0.01588452934778078 -0.9874358210584038 -0.2018053130177652 0.01921618423162401 -0.979237128534952 0.2018053130177652 -0.01921618423162401 0.979237128534952 0.1572201673390395 0.01588452934778078 0.9874358210584038 0.1697468595286489 0.006068861490700951 0.9854690114865956 -0.1343567494298995 -0.8462231442695603 -0.5156109521578944 -0.1086210651978576 -0.8602669808478003 -0.4981387215006411 -0.1301145213637191 -0.8486119901717154 -0.5127649573314177 0.1301145213637191 0.8486119901717154 0.5127649573314177 0.1086210651978576 0.8602669808478003 0.4981387215006411 0.1343567494298995 0.8462231442695603 0.5156109521578944 -0.1133150330807146 -0.8395891544271424 0.5312718278303796 -0.1395139141062699 -0.8459706197122566 0.5146548147587942 -0.1233984985839719 -0.8421416557768033 0.5249478470788555 0.1233984985839719 0.8421416557768033 -0.5249478470788555 0.1395139141062699 0.8459706197122566 -0.5146548147587942 0.1133150330807146 0.8395891544271424 -0.5312718278303796 -0.1260546410823167 0.1544903123830586 0.9799198798072183 -0.1302224134692138 0.1510864416931907 0.9799056128866409 -0.1131147639969138 0.1650111135103676 0.9797838448270062 0.1131147639969138 -0.1650111135103676 -0.9797838448270062 0.1302224134692138 -0.1510864416931907 -0.9799056128866409 0.1260546410823167 -0.1544903123830586 -0.9799198798072183 -0.1420492710714026 0.1413865864036689 0.9797100784278996 0.1420492710714026 -0.1413865864036689 -0.9797100784278996 -0.07903885031514943 0.8139813077432695 0.5754887407981291 0.07903885031514943 -0.8139813077432695 -0.5754887407981291 -0.1506678535050407 0.7975887197008246 -0.5840816998727005 0.1506678535050407 -0.7975887197008246 0.5840816998727005 -0.1263475132736118 -0.03992446121385578 -0.9911822956885165 0.1263475132736118 0.03992446121385578 0.9911822956885165 -0.1536418730879432 -0.8349919501480647 -0.5283773443496233 0.1536418730879432 0.8349919501480647 0.5283773443496233 -0.09890193715248216 -0.8357326912076589 0.5401567139953833 0.09890193715248216 0.8357326912076589 -0.5401567139953833</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID455\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID453\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID456\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">2.761839076668994 -2.686682816693547 2.821044674853094 -3.223738017132682 2.994709736256524 -2.987806394483918 2.418521699517856 -3.217524168002713 2.38695007375611 -2.736350782082216 2.1541310401361 -2.962968129024459 4.546856623073591 -1.394885293464188 4.816630126722004 -1.72556996709557 4.862848037992812 -1.436471730911179 4.674295548158963 -3.13614816966916 4.356729313977708 -3.137265300856367 4.701232558523698 -3.464185464245616 2.790045554862084 2.35347060364349 3.232835120194977 2.574608855939533 2.832124689239227 2.605261509879871 -4.067706033708806 -1.206600595934767 -4.089461011924668 -1.478694176529454 -3.773819348498676 -1.514619174466891 -3.969045730769214 -3.701827264759665 -3.931153506527283 -4.05303378018515 -3.610399023948869 -4.057492832424999 5.001577739208429 -0.581536198764107 5.043212311869807 -0.9815096230854541 5.255177150779224 -0.7332430780051124 4.606137713813613 -1.534142956742709 4.850872795825993 -1.696794596249568 4.9024837554483 -1.297541471095555 4.37016457834615 -1.331467340770913 4.347788412930141 -1.649491048209251 4.665354963484203 -1.648431032989956 4.483803267194991 -3.009115504783515 4.536459444617076 -3.384541965459336 4.849233383170659 -3.32165800873397 1.04044806537555 3.226749937533368 1.452060210471746 3.329977995737437 1.340664256104527 3.565066468173025 -3.862250629639993 -0.9756131540381329 -3.57981940945645 -1.290193905695045 -3.541497141569373 -0.9801162596498589 -3.807240998867626 -3.6140169568218 -4.122520570283084 -3.650081136837909 -3.774866068728113 -4.012438122951902</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID456\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID452\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID450\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID451\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 6 5 7 4 8 3 7 4 9 0 8 3 8 3 9 0 10 1 11 2 10 1 9 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 19 30 52 31 20 32 21 32 53 31 22 30 24 33 54 34 25 35 28 35 55 34 29 33 30 36 32 37 56 38 57 38 33 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID452\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID453\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID457\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID458\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID462\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID462\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID459\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID463\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1281283390755502 0.939946060968536 0.3163613933391273 -0.1346201936039555 0.9376228862790311 0.3205319431816625 -0.1162781854949556 0.9440221721569896 0.3087094460070827 0.1162781854949556 -0.9440221721569896 -0.3087094460070827 0.1346201936039555 -0.9376228862790311 -0.3205319431816625 0.1281283390755502 -0.939946060968536 -0.3163613933391273 -0.1649346685400534 0.70700699320098 -0.687704636220007 -0.138001516637389 0.6955840009988096 -0.7050662940179939 -0.1262440609561076 0.6903675011133202 -0.7123588635511321 0.1262440609561076 -0.6903675011133202 0.7123588635511321 0.138001516637389 -0.6955840009988096 0.7050662940179939 0.1649346685400534 -0.70700699320098 0.687704636220007 -0.1286676828647164 -0.2510584934495154 -0.9593822284434316 -0.1249639091624064 -0.2537058685940289 -0.959175350834142 -0.1349838365174811 -0.2465273866193998 -0.9596893307344993 0.1349838365174811 0.2465273866193998 0.9596893307344993 0.1249639091624064 0.2537058685940289 0.959175350834142 0.1286676828647164 0.2510584934495154 0.9593822284434316 -0.1434766227141468 -0.9644040248531957 -0.2221245947244455 -0.1258995814562067 -0.9694811380793162 -0.2103701934628239 -0.137528258736553 -0.9661754887229821 -0.2181533933721836 0.137528258736553 0.9661754887229821 0.2181533933721836 0.1258995814562067 0.9694811380793162 0.2103701934628239 0.1434766227141468 0.9644040248531957 0.2221245947244455 -0.1200262461105332 -0.6312838785604785 0.7662077818152547 -0.1185484243271057 -0.6305364008267925 0.7670528784392604 -0.1239625549634292 -0.6332652192933885 0.7639426987675421 0.1239625549634292 0.6332652192933885 -0.7639426987675421 0.1185484243271057 0.6305364008267925 -0.7670528784392604 0.1200262461105332 0.6312838785604785 -0.7662077818152547 -0.1074482883687536 0.2164917070285634 0.9703536500237859 -0.1045482762700885 0.2188615063811693 0.9701388039623601 -0.1167974670152386 0.208822637995721 0.9709538905423534 0.1167974670152386 -0.208822637995721 -0.9709538905423534 0.1045482762700885 -0.2188615063811693 -0.9701388039623601 0.1074482883687536 -0.2164917070285634 -0.9703536500237859 -0.09592521523731801 0.2258827503490979 0.9694201030391322 0.09592521523731801 -0.2258827503490979 -0.9694201030391322 -0.1453360876391361 0.933647648128806 0.3273827893663605 0.1453360876391361 -0.933647648128806 -0.3273827893663605 -0.1018954951506087 0.6791262154425009 -0.7269146384320226 0.1018954951506087 -0.6791262154425009 0.7269146384320226 -0.1190712048485406 -0.2579031796181484 -0.9588055058867603 0.1190712048485406 0.2579031796181484 0.9588055058867603 -0.154126908222058 -0.9610952896026681 -0.2292176704913324 0.154126908222058 0.9610952896026681 0.2292176704913324 -0.115015487565636 -0.6287414646692523 0.7690615113406746 0.115015487565636 0.6287414646692523 -0.7690615113406746</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID463\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID461\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID464\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">4.360066392024481 1.345881974146346 4.569212760641203 0.8212451680291688 4.659980598047449 1.15030729017397 4.139088478041265 0.7343252686688629 3.993090241948528 1.28379398993862 3.858881499525051 0.9609417295217747 4.615259486836989 2.070469394477851 4.916285000295099 1.711163197031581 4.932691922661467 2.050594508079105 5.237714155139309 -0.7850202068611257 4.917103607755755 -0.805118177735519 5.301373169335704 -1.097168139238578 -1.662795203246673 4.446608370819519 -1.733459754836062 4.880174696214064 -1.940032066892782 4.570920503433157 -3.840719447785261 1.984768461447111 -3.852408664159016 1.648173959859722 -3.534587250218728 1.624071027479026 -3.179303377019544 -2.513625773284166 -3.557127484714577 -2.219977571431748 -3.499512347452446 -2.523060644294281 5.765266348757652 1.69019121520112 5.857553404921535 1.299387320327408 6.036691952030751 1.558880138713572 5.379672069378961 1.860096852462629 5.68267868581342 1.783065168379234 5.53875939098732 2.16409055123303 4.72200273180184 2.074276447220133 4.697355198809692 1.697146151252073 5.018382483950596 1.712588065047657 4.680145291440302 -1.1477025667911 4.730220832293885 -1.507328388868188 5.042709028738651 -1.456450100848597 -1.849061549422705 4.695147414247404 -2.15044191010415 4.778099156923561 -2.043781256662477 4.349112368737373 -3.363423892743181 2.083472085264609 -3.683758735701449 2.077217382872447 -3.380644054737866 1.71494630994848 -3.246199033616235 -2.51847405722835 -3.308006398490402 -2.172864553124199 -3.620464559827389 -2.222019128872433</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID464\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID460\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID458\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID459\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 6 5 7 4 8 3 7 4 9 0 8 3 8 3 9 0 10 1 11 2 10 1 9 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 19 30 52 31 20 32 21 32 53 31 22 30 54 33 25 34 24 35 29 35 28 34 55 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 58 40 37 41 40 41 59 40 41 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID460\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID461\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID465\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID466\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID470\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID470\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID467\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID471\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1135576304247743 0.5024134134834092 0.8571379273630698 -0.1060549371234037 0.5081935363673253 0.8546880599998006 -0.1410029563660657 0.4807853474390595 0.8654268403417659 0.1410029563660657 -0.4807853474390595 -0.8654268403417659 0.1060549371234037 -0.5081935363673253 -0.8546880599998006 0.1135576304247743 -0.5024134134834092 -0.8571379273630698 -0.1001724357446263 0.9948230072652543 0.01710752269338355 -0.0992313783360488 0.9949317552839722 0.01624610356613912 -0.1067686555805312 0.994014375944963 0.02314896542551481 0.1067686555805312 -0.994014375944963 -0.02314896542551481 0.0992313783360488 -0.9949317552839722 -0.01624610356613912 0.1001724357446263 -0.9948230072652543 -0.01710752269338355 -0.1204055105956813 0.4823208077810515 -0.8676803278855798 -0.1287480142985737 0.4875078415387097 -0.8635739998705626 -0.09891909191161409 0.4687497692647048 -0.8777748384806138 0.09891909191161409 -0.4687497692647048 0.8777748384806138 0.1287480142985737 -0.4875078415387097 0.8635739998705626 0.1204055105956813 -0.4823208077810515 0.8676803278855798 -0.148440743472404 -0.4706111030796328 -0.869764643645355 -0.1437557280381843 -0.4742852702663527 -0.8685549913877557 -0.1646652191806799 -0.4577190077569442 -0.8737154431107287 0.1646652191806799 0.4577190077569442 0.8737154431107287 0.1437557280381843 0.4742852702663527 0.8685549913877557 0.148440743472404 0.4706111030796328 0.869764643645355 -0.09475985240703004 -0.9954707181582593 0.007656347776652718 -0.1039611698752289 -0.994581356731652 -1.567513741408958e-017 -0.09646331398013955 -0.9953169813336709 0.006239849741635174 0.09646331398013955 0.9953169813336709 -0.006239849741635174 0.1039611698752289 0.994581356731652 1.567513741408958e-017 0.09475985240703004 0.9954707181582593 -0.007656347776652718 -0.1004692751834205 -0.4547958960035424 0.8849105139631087 -0.1080393619639094 -0.4596758574940459 0.881490557126703 -0.08050414354804245 -0.4417526345097378 0.8935175951123192 0.08050414354804245 0.4417526345097378 -0.8935175951123192 0.1080393619639094 0.4596758574940459 -0.881490557126703 0.1004692751834205 0.4547958960035424 -0.8849105139631087 -0.1261670868981231 -0.4712139498534301 0.8729486122602924 0.1261670868981231 0.4712139498534301 -0.8729486122602924 -0.08066176544082679 0.5273398224729309 0.8458169963001376 0.08066176544082679 -0.5273398224729309 -0.8458169963001376 -0.09298631847472325 0.9956116753904154 0.01053263513122168 0.09298631847472325 -0.9956116753904154 -0.01053263513122168 -0.1480979007488019 0.499360107511594 -0.8536430722613565 0.1480979007488019 -0.499360107511594 0.8536430722613565 -0.128617271239178 -0.4860099095104769 -0.8644373692735674 0.128617271239178 0.4860099095104769 0.8644373692735674 -0.08787557746910753 -0.9960416408784326 0.01337656610159817 0.08787557746910753 0.9960416408784326 -0.01337656610159817</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID471\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID469\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID472\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">0.3783244763866356 3.599650192905323 0.04688576503043994 3.183664922406017 0.3783244763866733 3.320256183830747 0.027122406016975 3.736241749693183 -0.3004302779671875 3.329571050263488 -0.2925268116698577 3.596545335882117 4.000044726454139 1.10793485062912 4.21481509604171 0.7529116011386672 4.304771798895633 1.03172710660281 4.10347570606989 3.588741106063421 4.420431663145973 3.314529897656492 4.421275731804731 3.581575744406544 4.004262736190113 2.404159357085891 4.391308998608645 2.132013168039903 4.319595171864108 2.43657218669946 -3.898880727774464 2.528130711158829 -4.085679924831708 2.901690795312082 -4.197876129968127 2.620891524746142 -4.41453160017797 3.599650192905323 -4.414531600177956 3.320256183830747 -4.096804965313124 3.297878293086227 -4.021893908100886 0.8163003856027347 -4.40070684784139 1.094589961698369 -4.337741485997127 0.7903962326542223 -4.014861215834311 1.087495689805327 -4.318740986045711 1.009222180880419 -3.915494554730933 0.7530582966662636 4.117569520822965 1.609168978682243 4.06494067866972 1.289160856444053 4.382412656505274 1.275732923953219 4.113749018618937 3.59761042930563 4.11338677832698 3.307928508737795 4.430786423268708 3.323457494963106 4.004673048262786 2.396474751015988 4.306625459163545 2.483105444542788 3.896458540050114 2.733419148329708 -4.010318426120987 2.335558842294007 -3.918374393230021 2.65249310587964 -4.232313562344972 2.697004915989215 -4.110337663997246 3.602853878806665 -4.427552647176091 3.591221143347064 -4.109867458805556 3.289422241500907</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID472\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID468\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID466\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID467\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 54 33 25 34 24 35 29 35 28 34 55 33 30 36 56 37 31 38 34 38 57 37 35 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID468\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID469\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID473\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID474\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID478\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID478\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID475\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID479\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1038929795673725 0.5024082937966418 0.8583659797085161 -0.101645225647281 0.504024634304494 0.8576872484287816 -0.1094074020686247 0.4984230333416132 0.8600026163955198 0.1094074020686247 -0.4984230333416132 -0.8600026163955198 0.101645225647281 -0.504024634304494 -0.8576872484287816 0.1038929795673725 -0.5024082937966418 -0.8583659797085161 -0.1067289061750859 0.9771652234428873 -0.1837309627702476 -0.1087690994352792 0.9772346523405453 -0.1821584949237671 -0.1018222525483512 0.9769718064996613 -0.1875055150942714 0.1018222525483512 -0.9769718064996613 0.1875055150942714 0.1087690994352792 -0.9772346523405453 0.1821584949237671 0.1067289061750859 -0.9771652234428873 0.1837309627702476 -0.1384934920200037 0.3534641008466894 -0.9251392771257453 -0.1359909180218172 0.3518821215535716 -0.9261130831310727 -0.1433289414998819 0.3565134591932102 -0.9232307230278977 0.1433289414998819 -0.3565134591932102 0.9232307230278977 0.1359909180218172 -0.3518821215535716 0.9261130831310727 0.1384934920200037 -0.3534641008466894 0.9251392771257453 -0.1222124372058731 -0.6679776222096131 -0.7340776637518621 -0.1173622889185317 -0.6711286400381099 -0.731992104916713 -0.1349675165566499 -0.6595557153030317 -0.7394389953780073 0.1349675165566499 0.6595557153030317 0.7394389953780073 0.1173622889185317 0.6711286400381099 0.731992104916713 0.1222124372058731 0.6679776222096131 0.7340776637518621 -0.1005580890291001 -0.9698016599802893 0.2221999348116262 -0.1176512528335321 -0.9707395559761901 0.209339191671912 -0.1058191295169145 -0.9701374026818134 0.2182561150255999 0.1058191295169145 0.9701374026818134 -0.2182561150255999 0.1176512528335321 0.9707395559761901 -0.209339191671912 0.1005580890291001 0.9698016599802893 -0.2221999348116262 -0.09416004869071552 -0.2485813326810608 0.9640234469519244 -0.09548416722338041 -0.2496875094316789 0.9636072443913355 -0.08585473045780438 -0.2416308289560064 0.9665627283089551 0.08585473045780438 0.2416308289560064 -0.9665627283089551 0.09548416722338041 0.2496875094316789 -0.9636072443913355 0.09416004869071552 0.2485813326810608 -0.9640234469519244 -0.1032242823055442 -0.256142923912011 0.9611116220670267 0.1032242823055442 0.256142923912011 -0.9611116220670267 -0.09649147165714225 0.5077129698964091 0.8561056804486271 0.09649147165714225 -0.5077129698964091 -0.8561056804486271 -0.1131851789208752 0.9773627740502681 -0.1787487711102216 0.1131851789208752 -0.9773627740502681 0.1787487711102216 -0.1315202965520038 0.349049637920842 -0.9278290585351389 0.1315202965520038 -0.349049637920842 0.9278290585351389 -0.1057405989715317 -0.6785643004438799 -0.7268902364815817 0.1057405989715317 0.6785643004438799 0.7268902364815817 -0.08943516453163014 -0.968954655637462 0.2304956109423514 0.08943516453163014 0.968954655637462 -0.2304956109423514</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID479\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID477\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID480\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">-3.832275540913754 1.38313464652574 -4.037474306459234 0.861597233214203 -3.745473328734743 1.066488851161099 -4.163760809506149 1.448324091080901 -4.43604104310682 0.9826730704162471 -4.51102072099726 1.290001193398601 3.171026590337021 -2.606554836662415 3.406816483430799 -2.972177582241644 3.48126989775373 -2.661916721724257 3.668382965150461 2.008969601292834 3.994159350684655 1.684526607744221 3.986386895219333 1.997404066098809 2.195936011940815 4.503074526773451 2.648891197907055 4.264915060407883 2.500220450372008 4.580014812517327 -4.885016970408737 -1.255419445917819 -5.138103206570871 -0.8942667761061519 -5.196643413251278 -1.19861087185011 -4.90668503084679 1.890274882143592 -4.89624123966273 1.566454220558648 -4.577487831674194 1.559607900813885 -5.196980618279403 2.02817604302201 -5.613737620860929 2.214624445873762 -5.502753935253568 1.960405471812763 -5.419548725810715 2.156634437970546 -5.709881774726242 2.054336581082488 -5.28394018282753 1.881208739224467 3.310138597047183 -2.520016467100998 3.240017181379571 -2.859050560085873 3.557132004722975 -2.881032731401244 3.611445236497108 1.98282659750306 3.620759139691174 1.628873567018144 3.938085392640403 1.658921497886375 2.474798949672067 4.128983753580942 2.766926089553627 4.231515357916557 2.320203332516909 4.476851663613845 -4.68279295752764 -0.9992583488947533 -5.001424279837343 -0.9895101278624701 -4.732582976568755 -1.343547542461741 -4.494532730293797 1.981060250884132 -4.811397957767102 1.963200932487673 -4.484848678126927 1.630913117934281</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID480\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID476\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID474\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID475\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 6 5 7 3 8 4 8 4 7 3 9 1 7 3 10 0 9 1 11 2 9 1 10 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 48 24 43 25 42 26 47 26 46 25 49 24 12 27 50 28 13 29 16 29 51 28 17 27 18 30 52 31 19 32 22 32 53 31 23 30 54 33 25 34 24 35 29 35 28 34 55 33 56 36 31 37 30 38 35 38 34 37 57 36 58 39 36 40 38 41 39 41 41 40 59 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID476\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID477\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID481\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID482\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID486\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID486\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID483\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID487\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6659834446608215 0.3807686437826488 0.6414680750821734 -0.6631750828133616 0.3731148991519088 0.6488328610407705 -0.6729842940505703 0.1624422630054802 0.7215986773483681 0.6729842940505703 -0.1624422630054802 -0.7215986773483681 0.6631750828133616 -0.3731148991519088 -0.6488328610407705 0.6659834446608215 -0.3807686437826488 -0.6414680750821734 -0.6145137989325163 0.4655985671337754 0.6368600829102905 -0.6113335516860552 0.4667959055536873 0.6390405864585023 0.6113335516860552 -0.4667959055536873 -0.6390405864585023 0.6145137989325163 -0.4655985671337754 -0.6368600829102905 -0.6629988808447853 -0.7286899444755632 -0.1715909345471451 -0.6112712807697465 -0.7468583700018094 -0.2618205424796805 -0.6144500916695223 -0.7444263356970634 -0.2613054066948456 0.6144500916695223 0.7444263356970634 0.2613054066948456 0.6112712807697465 0.7468583700018094 0.2618205424796805 0.6629988808447853 0.7286899444755632 0.1715909345471451 -0.6729924006868499 -0.7380291832850042 0.04893008519735241 -0.6658161315575506 -0.7238380484211855 -0.180962312693964 0.6658161315575506 0.7238380484211855 0.180962312693964 0.6729924006868499 0.7380291832850042 -0.04893008519735241 -0.6289565476282814 -0.7476459025257273 0.2131648789833918 -0.6701345713609732 -0.7408307531705968 0.04571051764672113 0.6701345713609732 0.7408307531705968 -0.04571051764672113 0.6289565476282814 0.7476459025257273 -0.2131648789833918 -0.6586335051836426 -0.4503276787562835 0.602832387646422 -0.6194244385915946 -0.5603481644919415 0.5498393396493199 -0.6253103361580007 -0.5580893712997171 0.545456906763728 0.6253103361580007 0.5580893712997171 -0.545456906763728 0.6194244385915946 0.5603481644919415 -0.5498393396493199 0.6586335051836426 0.4503276787562835 -0.602832387646422 -0.6252441215267333 -0.3647786176751771 0.6899321333169304 -0.6193457640666231 -0.3683472929438279 0.6933477455892423 0.6193457640666231 0.3683472929438279 -0.6933477455892423 0.6252441215267333 0.3647786176751771 -0.6899321333169304 -0.6701201336408642 0.1663084455640048 0.7233813015438224 -0.6289128458978669 0.007652928515795015 0.7774381422015375 0.6289128458978669 -0.007652928515795015 -0.7774381422015375 0.6701201336408642 -0.1663084455640048 -0.7233813015438224 -0.622078851308744 -0.7522767596266303 0.2170197679476473 0.622078851308744 0.7522767596266303 -0.2170197679476473 -0.6633240955833247 -0.4478538037142369 0.5995232395139108 0.6633240955833247 0.4478538037142369 -0.5995232395139108 -0.6220261755595516 0.005266994658404282 0.7829787325885845 0.6220261755595516 -0.005266994658404282 -0.7829787325885845</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID487\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID485\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID488\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">-4.22725624399334 -5.808877949883205 -4.55134529488531 -5.976060559444166 -4.338167595264546 -6.491496952334127 -4.986782358868105 -5.199964448886369 -5.184941219754366 -5.408638486833185 -5.944453442550639 -4.799730893098601 -6.05632672639457 -5.091645344449993 -6.745726004323971 -4.816560978528544 -6.74510123625174 -5.077039638609257 -7.849986300628801 -5.500677176589291 -7.923492667272267 -5.229891230022745 -10.06436935037758 -6.764499303685906 -10.25054723218782 -6.567089824067745 -4.190221839946828 -7.423786392543641 -4.020489550882155 -6.418076771645296 -4.541160899478318 -7.445155913627095 -5.145381836570095 -9.567177416708539 -5.438809568305453 -9.482737238346916 -5.505193325159312 -7.604034168790181 -5.336475990643389 -7.742358147485223 -4.269678334633769 -7.17228634502103 -5.689347174156868 -9.800731856029373 -5.511200601136377 -9.91390228982233 -3.661673248818458 -8.175413593687873 -6.015019925488002 -7.266096214065682 -6.619985055648084 -9.486958521750623 -6.397152300006442 -9.528426778102082 -5.916495195503265 -6.398410337512396 -6.028516018800286 -7.409110337784746 -5.79271183303645 -7.457467891379393 -6.058299012606727 -5.672970773922897 -5.918451089773818 -6.293838969348061 -5.673245435811727 -6.290409739551873 -6.611867500289026 -4.289528229207675 -6.048613951193245 -5.018529849581411 -5.831542273483992 -4.949930903754136 -7.208078507396563 -3.680070861867471 -7.32929965042728 -3.837447967747981 -6.506198159929273 -4.392862628766582 -6.660239379493177 -5.681909366053281 -6.612063954614971 -5.871073215402708 -5.811153776812445 -5.845724523787836 -6.31321530276293 -9.510799849948398 -4.202315597411297 -7.952433032619871 -4.387052615037615 -7.827415091763079 -5.571264021655384 -7.567302934022142 -4.332306682772676 -7.141703510882534 -4.446445643616539 -6.970949011293415 -6.035007605903449 -7.19101390246045 -6.473568664496056 -9.447001600170312 -5.799661110009105 -7.240732120036159 -5.673040901826159 -6.386349889532563 -5.918247615980235 -6.389731880133182 -5.796727443660892 -7.448951623798941 -5.819314759100421 -5.528107959488318 -6.041028142086967 -5.586805558446977 -5.664342994491257 -6.207430836053704 -6.610934274938454 -4.510184301514173 -5.81103562343381 -5.155932387550443 -6.42137595324032 -4.391696199990871 -6.752987524416816 -5.516952551322585 -5.907464823598496 -5.691800534694194 -5.87571544118804 -5.509489278649395 -6.262434736188439 -4.53591418972004 -7.16680172405666 -3.98054871024504 -6.431552494877005 -4.672209874291356</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID488\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID484\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID482\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID483\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"64\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 9 9 7 7 10 10 9 9 10 10 11 11 11 11 10 10 12 12 0 0 13 13 14 14 13 13 0 0 2 2 13 13 2 2 15 15 13 13 15 15 16 16 16 16 15 15 17 17 18 17 19 15 20 16 20 16 19 15 21 13 19 15 22 2 21 13 22 2 23 0 21 13 24 14 21 13 23 0 25 12 26 10 27 11 27 11 26 10 28 9 26 10 29 7 28 9 28 9 29 7 30 8 30 8 29 7 31 6 29 7 32 5 31 6 31 6 32 5 33 4 32 5 34 3 33 4 33 4 34 3 35 1 34 3 23 0 35 1 22 2 35 1 23 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 37 23 40 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 46 28 53 29 54 29 51 28 55 27 56 30 52 31 57 32 58 32 55 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 60 38 65 38 68 37 69 36 70 39 38 40 71 41 72 41 39 40 73 39 42 42 37 43 36 44 41 44 40 43 45 42 36 45 38 46 70 47 73 47 39 46 41 45 46 48 48 49 53 50 54 50 49 49 51 48 57 51 52 52 53 53 54 53 55 52 58 51 74 54 56 55 57 56 58 56 59 55 75 54 60 57 62 58 76 59 77 59 63 58 65 57 70 60 71 61 78 62 79 62 72 61 73 60 76 63 66 64 60 65 65 65 69 64 77 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID484\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID485\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID489\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID490\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID494\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID494\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID491\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID495\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1088396993734213 0.9391143652329044 0.3259112284863811 -0.1164463359679276 0.9328196483828717 0.3410099037132209 -0.115277788968267 0.9330479626690824 0.3407822335886396 0.115277788968267 -0.9330479626690824 -0.3407822335886396 0.1164463359679276 -0.9328196483828717 -0.3410099037132209 0.1088396993734213 -0.9391143652329044 -0.3259112284863811 -0.110822325248955 0.938063640003709 0.3282605969796052 0.110822325248955 -0.938063640003709 -0.3282605969796052 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1169850955608708 0.9419046119998733 0.3148494708745472 0.1169850955608708 -0.9419046119998733 -0.3148494708745472 -0.5580107354442373 0.8289599112591531 0.03807209810606934 -0.4971810650748229 0.8663223338632058 0.04792287951357918 -0.5145250095588039 0.8558675183312584 0.05248624204499802 0.5145250095588039 -0.8558675183312584 -0.05248624204499802 0.4971810650748229 -0.8663223338632058 -0.04792287951357918 0.5580107354442373 -0.8289599112591531 -0.03807209810606934 -0.545158170653844 0.8382267271768401 0.01336124304687095 -0.5582784877518608 0.8289230506726751 0.03480957019271046 0.5582784877518608 -0.8289230506726751 -0.03480957019271046 0.545158170653844 -0.8382267271768401 -0.01336124304687095 -0.1318695905464307 0.9596171302456248 0.2484861654665474 -0.1321549003024238 0.9557169747171905 0.2629451398361978 -0.1365860819270675 0.9570595346721975 0.2556976521535723 0.1365860819270675 -0.9570595346721975 -0.2556976521535723 0.1321549003024238 -0.9557169747171905 -0.2629451398361978 0.1318695905464307 -0.9596171302456248 -0.2484861654665474 -0.1289657532660433 0.9574337946917685 0.2582409016144471 -0.1269044865420529 0.9532261396277257 0.2743267723462684 0.1269044865420529 -0.9532261396277257 -0.2743267723462684 0.1289657532660433 -0.9574337946917685 -0.2582409016144471 -0.1240825368586034 0.9470375050500011 0.2961815120418608 -0.1256954876265769 0.946399129432289 0.2975387910846624 -0.1260690186249341 0.9534847853620122 0.2738126487693791 0.1260690186249341 -0.9534847853620122 -0.2738126487693791 0.1240825368586034 -0.9470375050500011 -0.2961815120418608 0.1256954876265769 -0.946399129432289 -0.2975387910846624 -0.1211441855015404 0.9401500394776983 0.3184995911916539 0.1211441855015404 -0.9401500394776983 -0.3184995911916539 -0.5536072311495947 0.7950907964196508 0.2476886333032765 -0.6328306015520273 0.7446519113729666 0.2121767202779013 -0.6307694948426644 0.7463033893518946 0.2125114006772442 0.6307694948426644 -0.7463033893518946 -0.2125114006772442 0.6328306015520273 -0.7446519113729666 -0.2121767202779013 0.5536072311495947 -0.7950907964196508 -0.2476886333032765 -0.5039674104246305 0.8086833501771441 0.3033942787465886 -0.5497408771862887 0.7964870254649378 0.2517804325527812 0.5497408771862887 -0.7964870254649378 -0.2517804325527812 0.5039674104246305 -0.8086833501771441 -0.3033942787465886 -0.4609956099973669 0.7886395059681967 0.4068547372089872 -0.49850465150458 0.8115072862067282 0.3048754448322932 0.49850465150458 -0.8115072862067282 -0.3048754448322932 0.4609956099973669 -0.7886395059681967 -0.4068547372089872 -0.4569339343695998 0.6598239237892639 0.5965264195464085 -0.4573880925719646 0.794515332784318 0.399426487283961 0.4573880925719646 -0.794515332784318 -0.399426487283961 0.4569339343695998 -0.6598239237892639 -0.5965264195464085 -0.4287005991166544 0.541309811422194 0.7233252963743838 -0.4542025713545716 0.645235326881341 0.6143056219173191 0.4542025713545716 -0.645235326881341 -0.6143056219173191 0.4287005991166544 -0.541309811422194 -0.7233252963743838 -0.3063228392035632 0.9519258992836576 -0.001844032339199885 -0.3523470247597167 0.9358104485918809 0.01050611484984737 0.3523470247597167 -0.9358104485918809 -0.01050611484984737 0.3063228392035632 -0.9519258992836576 0.001844032339199885 -0.5412614551618135 0.8407681758003589 0.01203792828742119 0.5412614551618135 -0.8407681758003589 -0.01203792828742119 -0.4272410976619026 0.5422294182526325 0.7235000362474522 0.4272410976619026 -0.5422294182526325 -0.7235000362474522</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID495\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID493\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID496\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">3.76825062863832 -7.313630254900839 3.596381102692845 -10.48973263072317 4.591982473100826 -10.49532155130045 3.796584343130128 -7.304870234576655 4.631787065582489 -10.48471036339275 4.788649302747732 -7.361376930524428 -1.233424149184261 -2.753147786843712 -0.7088761597558091 -3.338546544481618 -0.694556993678912 -2.849561690363584 -0.7853905368619629 -4.383741487515724 -1.146439087214903 -5.03998101979383 -1.55270259855911 -5.546970027708173 -1.390357703847656 -3.215229491993068 -1.75673311539269 -4.219410608791835 -1.883282441546899 -6.176047377569198 -2.160556126454998 -5.312462941343926 -2.261771182375565 -7.026766978130183 -2.433741973391066 -5.946419099073036 -3.334680812059787 -9.988933491671299 -2.830459374017382 -6.858879041460048 -4.18747608939894 -9.796708225378035 -0.7842970050049303 -4.827816971326995 3.846359672297336 -6.358789390875086 3.803908500346693 -7.294419494786282 4.796023997542307 -7.350374402013268 4.056342725136757 -3.460756783488558 4.017070421792077 -4.507227523838949 4.189805728167312 -4.506856094946615 3.870196798047121 -2.901029633565524 3.862151086380763 -3.39010326253353 4.041586134627782 -3.375623115899968 3.928024266704107 -3.013988383563838 4.902261330893889 -3.531575789521651 4.924433338735429 -3.053604799231155 3.919683204120139 -3.486961206510021 4.865011689683587 -4.583100420342436 4.914626931451051 -3.539105977826516 4.875488640555209 -4.580879223037842 3.826540600621813 -5.700099691054323 4.822529489921589 -5.718396071753157 3.879494827284836 -4.562583285591289 3.823573876076065 -5.724436591786642 4.783442973528894 -6.411767901669563 4.819555400866464 -5.742979411248102 3.807368354643659 -6.37459105667303 4.751878529572747 -7.369217884205696 4.801955210030906 -6.405668232595182 2.459913955440844 -7.711138893628805 1.765124464725816 -10.7423214537102 1.957060357039899 -10.75365200785607 3.149980037999058 -6.910862697284486 2.933665600069839 -7.795972115472037 3.112360206094057 -7.803950315529296 3.543814988888633 -6.287816333452746 3.368556206581121 -6.954419143262834 3.538235007196647 -6.973994288736734 3.78465959479941 -5.80854108379769 3.571658995865501 -6.383955407013207 3.730204477851461 -6.425917052375335 3.519029084241668 -5.520774225638371 3.291859972225696 -5.827754909589918 3.450220969145402 -5.87097057055601 4.662182803330457 -4.380360850124628 4.662517777683195 -4.824437088967236 4.81826881172313 -4.865116337961796 4.189859564349691 -4.520942806572722 4.017124258375433 -4.521314350847296 4.169439869693115 -5.006811491088558 4.054308477449268 -3.46818554239393 3.874875918312202 -3.482684764307377 4.004600561683029 -4.529075056857496 3.954605625143068 -2.881286514067027 4.12622640779107 -3.355828234508149 4.13083736103226 -2.887771090306144 3.943337637863319 -2.998836062633428 3.923906485213045 -3.463165909205145 4.918885407229313 -3.514893431760281 3.928797703118019 -3.481218209051338 3.879818224823473 -4.558188850263479 4.875812890540187 -4.576456053667682 3.841555000386308 -5.715504750840945 3.808597935928527 -6.370329666730073 4.803189826014569 -6.40130696790807 2.948827516519374 -7.691092086442025 2.529718595190085 -10.74144726110512 3.127530081582867 -7.698959191979644 3.405436347186381 -6.871638496491231 3.386085399216066 -7.765086638555999 3.575179329102383 -6.890866213050533 3.787685574673548 -6.22844919458952 3.799988017323743 -6.914572938978153 3.947379466551694 -6.267623306827016 3.764036350977447 -5.816332960126295 3.707505967984392 -6.43359348176798 3.926023634899166 -5.850225398106103 3.560052651719282 -5.497587420403937 3.494701207686569 -5.848193276457293 3.706070434976303 -5.556515053892731</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID496\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID492\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID490\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID491\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 2 4 6 5 7 5 3 4 5 3 8 6 9 7 10 8 9 7 8 6 11 9 11 9 8 6 12 10 12 10 8 6 13 11 13 11 8 6 14 12 13 11 14 12 15 13 13 11 15 13 16 14 16 14 15 13 17 15 16 14 17 15 18 16 18 16 17 15 19 17 18 16 19 17 20 18 20 18 19 17 21 19 20 18 21 19 22 20 12 10 23 21 11 9 24 9 25 21 26 10 27 20 28 19 29 18 28 19 30 17 29 18 29 18 30 17 31 16 30 17 32 15 31 16 31 16 32 15 33 14 32 15 34 13 33 14 33 14 34 13 35 11 34 13 36 12 35 11 36 12 37 6 35 11 35 11 37 6 26 10 26 10 37 6 24 9 24 9 37 6 38 7 39 8 38 7 37 6 40 22 0 23 6 24 7 24 5 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 42 29 49 30 50 30 47 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 59 37 62 38 63 39 62 38 59 37 64 40 65 40 60 37 66 38 67 39 66 38 60 37 62 41 68 42 63 43 67 43 69 42 66 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 70 51 77 52 78 52 75 51 79 50 80 53 76 54 81 55 82 55 79 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 43 62 92 63 93 64 94 64 95 63 46 62 44 65 43 66 93 67 94 67 46 66 45 65 49 68 42 69 44 70 45 70 47 69 50 68 48 71 49 72 96 73 97 73 50 72 51 71 52 74 58 75 53 76 56 76 61 75 57 74 58 77 64 78 59 79 60 79 65 78 61 77 62 80 40 81 68 82 69 82 41 81 66 80 70 83 72 84 77 85 78 85 73 84 75 83 76 86 77 87 81 88 82 88 78 87 79 86 80 89 81 90 85 91 86 91 82 90 83 89 84 92 85 93 89 94 90 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID492\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID493\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID497\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID498\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID502\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID502\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID499\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID503\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1164097430468417 -0.5916084081534543 -0.7977770760844811 -0.10882822046992 -0.5789017034806163 -0.8081022436156152 -0.1152454256731035 -0.591455387657384 -0.7980595317847402 0.1152454256731035 0.591455387657384 0.7980595317847402 0.10882822046992 0.5789017034806163 0.8081022436156152 0.1164097430468417 0.5916084081534543 0.7977770760844811 -0.1108221458520233 -0.5808630075720961 -0.8064221093342195 0.1108221458520233 0.5808630075720961 0.8064221093342195 -0.1170077107804017 -0.5691015957689537 -0.8138996064080387 0.1170077107804017 0.5691015957689537 0.8138996064080387 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211696670977339 -0.5721039063745667 -0.8111812572331694 0.1211696670977339 0.5721039063745667 0.8111812572331694 -0.1289674607165914 -0.5192099234538959 -0.844860017673528 -0.1321663082555465 -0.5232428882080906 -0.8418722865742495 -0.1268981050915295 -0.533447946261532 -0.8362596244908234 0.1268981050915295 0.533447946261532 0.8362596244908234 0.1321663082555465 0.5232428882080906 0.8418722865742495 0.1289674607165914 0.5192099234538959 0.844860017673528 -0.1318813258933644 -0.5104743797675104 -0.8497194969409517 -0.1366069441971335 -0.5166761365997606 -0.8452125843037756 0.1366069441971335 0.5166761365997606 0.8452125843037756 0.1318813258933644 0.5104743797675104 0.8497194969409517 -0.558031261867371 -0.2716463664879751 -0.78409780152261 -0.5451296895268838 -0.2505730592629967 -0.8000292266960662 -0.5582991414998946 -0.2685090417213844 -0.7849872375487035 0.5582991414998946 0.2685090417213844 0.7849872375487035 0.5451296895268838 0.2505730592629967 0.8000292266960662 0.558031261867371 0.2716463664879751 0.78409780152261 -0.5143888624622276 -0.293110942014941 -0.8059094700063585 -0.497052555982873 -0.2917024651576237 -0.8172199388242178 0.497052555982873 0.2917024651576237 0.8172199388242178 0.5143888624622276 0.293110942014941 0.8059094700063585 -0.3523806686222084 -0.2755513168992308 -0.8943709164191694 -0.306415783897025 -0.2682897565392926 -0.9133071629604461 0.306415783897025 0.2682897565392926 0.9133071629604461 0.3523806686222084 0.2755513168992308 0.8943709164191694 -0.4286828954205195 -0.847176126038426 -0.3138846709293164 -0.4541605104685136 -0.7721228532482589 -0.4444823171091813 -0.456893286178551 -0.7592058438957603 -0.4635245534375617 0.456893286178551 0.7592058438957603 0.4635245534375617 0.4541605104685136 0.7721228532482589 0.4444823171091813 0.4286828954205195 0.847176126038426 0.3138846709293164 -0.4574134951468932 -0.6083801890432725 -0.6485726173969845 -0.4610282434667641 -0.6138335702605229 -0.6408286094949022 0.4610282434667641 0.6138335702605229 0.6408286094949022 0.4574134951468932 0.6083801890432725 0.6485726173969845 -0.4985789755177557 -0.522521104138984 -0.69165793633923 -0.5040410792207913 -0.5203001144828611 -0.6893695535248579 0.5040410792207913 0.5203001144828611 0.6893695535248579 0.4985789755177557 0.522521104138984 0.69165793633923 -0.5536165038480039 -0.4630501931675085 -0.6921656487248167 -0.5497531637915774 -0.4673687586348154 -0.6923423303202705 0.5497531637915774 0.4673687586348154 0.6923423303202705 0.5536165038480039 0.4630501931675085 0.6921656487248167 -0.6328486545725545 -0.4146821088617343 -0.6538664458401979 -0.6307873335127643 -0.4154716222280389 -0.6553553776410614 0.6307873335127643 0.4154716222280389 0.6553553776410614 0.6328486545725545 0.4146821088617343 0.6538664458401979 -0.1240913043504173 -0.5526586540230366 -0.8241175646217339 -0.1256979469617381 -0.5537729312787706 -0.823125486613385 0.1256979469617381 0.5537729312787706 0.823125486613385 0.1240913043504173 0.5526586540230366 0.8241175646217339 -0.1260575905833764 -0.5330255257953374 -0.8366560061978389 0.1260575905833764 0.5330255257953374 0.8366560061978389 -0.5412201697451934 -0.2500231718377586 -0.8028506345548783 0.5412201697451934 0.2500231718377586 0.8028506345548783 -0.4272344532522728 -0.8476012840976981 -0.3147106371735229 0.4272344532522728 0.8476012840976981 0.3147106371735229</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID503\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID501\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID504\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">-6.161466385372765 -9.739583828584451 -5.534782427677182 -6.599055031610398 -7.138963213337921 -9.590815887125158 -5.453974869115332 -6.64082692448904 -6.442251176197418 -6.552312786454574 -7.020912501436172 -9.64477766665155 -5.308720537271718 -5.689141638149316 -6.478772582362814 -6.522289149874103 -5.491014958906135 -6.614316476552948 -3.324449483955088 -1.304083515806536 -3.572826706871928 -1.932684592651026 -3.054065519073461 -1.683218989209923 -3.916435254479966 -1.453588938535106 -4.692973909088815 -2.493915854454659 -5.168852690973136 -1.807773613133746 -5.910816590358083 -3.108575940139804 -5.710456022755999 -1.932931811574967 -5.866347671529796 -2.26628703653867 -6.369100491594986 -2.716571791351699 -6.606115120661046 -3.494493541298796 -7.042161934252819 -3.144381333275127 -7.605823633967948 -4.052573869433889 -7.9717957997741 -3.671216674709287 -10.80202970911157 -5.90961685543797 -11.2782606739596 -5.320825261743578 -5.406867405753555 -5.632958163486499 -6.388217779204394 -5.501977139414676 -6.591891121267537 -6.452906138227753 -4.869366170504851 -2.672663225915323 -5.851698291102253 -2.537936179978868 -6.117810543867646 -3.561478629224226 -4.783295469245281 -2.147838056814312 -5.759915324541431 -1.987415610829698 -5.892517064855022 -2.454203569649013 -5.685275317190505 1.018545122632574 -5.145451942425918 1.261211835115473 -5.7562003319981 1.149012728635336 -5.946862418828762 0.7642798521704014 -7.130976261011481 0.2767553873179948 -7.036424047085478 0.1630502095845917 -7.281644872447997 -0.3986048403960985 -7.834279527146465 -0.6456774898488107 -7.689126942260445 -0.7059138880145554 -7.188071436753713 -2.505819076414183 -7.416547296366069 -2.811190375613943 -7.259177835029453 -2.856584011353963 -7.575012072795065 -2.706222549244504 -8.018917079536788 -3.217136703021234 -7.861456431581737 -3.261559665315641 -8.102290839309255 -2.644916224219954 -8.698178247785402 -3.146031785827807 -8.557885289507643 -3.223633364054006 -9.379701635931678 -3.470919080308647 -8.684971497927776 -2.754199168926557 -9.506351967249945 -3.371429820198309 -12.25623907044876 -4.989462679559276 -9.490624175621949 -2.809199905568493 -12.37770881846667 -4.872005277182687 -5.318589154545419 -4.950828734137319 -6.296049610050064 -4.799287875721132 -6.444857026542284 -5.458380516152987 -5.392057858255205 -4.876556620212218 -6.08813702729078 -3.598391158750079 -6.367006455932359 -4.715312852682593 -5.113185334491933 -3.759627421801614 -5.281056882911339 -4.974112230283341 -6.403242112042205 -5.487229736398297 -5.422269957287876 -5.619952481288294 -4.853940277352765 -2.690709885832792 -6.096300623064521 -3.58478531167352 -5.121764907583199 -3.747570384158296 -4.892686598708286 -2.620119059241625 -4.767264819600784 -2.166119404674233 -5.873559466293838 -2.478965772395742 -5.839645049230055 0.7939477636360648 -5.917332136334101 0.9220098715437491 -7.042920849049135 0.3363783258394972 -5.177910156173502 1.294964790723312 -5.271800528567625 1.412461230707683 -5.787526407421514 1.179018042887779 -7.052366363064595 0.117928942085436 -7.147894061445859 0.2311284178204125 -7.650128474823353 -0.0521237149128579 -7.330237832350131 -2.497391177424061 -7.397103799309265 -2.828987567036165 -7.169448987281526 -2.523237030315316 -7.737670076202681 -2.636262514374005 -8.030026041788469 -3.199266105371076 -7.584247127016653 -2.689362640162711 -8.015596352434937 -2.86584519018703 -8.170034062009835 -2.815279621232072 -8.584674860058595 -3.385887706682498 -8.626894580693087 -2.948706082022819 -8.7639835389675 -2.867638261066807 -9.418099806598537 -3.589866553505813 -9.444421399327453 -3.12265942849865 -9.566235995890917 -3.01950100195389 -12.16085591726943 -5.324233997524462</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID504\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID500\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID498\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID499\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 6 7 1 8 4 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 14 13 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 16 15 18 17 19 18 16 15 19 18 20 19 20 19 19 18 21 20 20 19 21 20 22 21 22 21 21 20 23 22 22 21 23 22 24 23 24 23 23 22 25 24 26 24 27 22 28 23 28 23 27 22 29 21 27 22 30 20 29 21 29 21 30 20 31 19 30 20 32 18 31 19 31 19 32 18 33 15 32 18 34 17 33 15 34 17 35 16 33 15 35 16 36 14 33 15 33 15 36 14 37 13 36 14 38 12 37 13 37 13 38 12 39 10 38 12 40 9 39 10 41 11 39 10 40 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 54 37 60 38 61 39 62 39 63 38 59 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 75 49 78 50 79 51 80 51 81 50 76 49 82 52 79 53 83 54 84 54 80 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 90 61 46 62 91 63 46 62 90 61 94 64 95 64 93 61 47 62 92 63 47 62 93 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 44 71 50 72 45 73 48 73 53 72 49 71 54 74 56 75 60 76 63 76 57 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 61 80 60 81 64 82 67 82 63 81 62 80 98 83 69 84 68 85 73 85 72 84 99 83 69 86 74 87 70 88 71 88 77 87 72 86 75 89 74 90 78 91 81 91 77 90 76 89 79 92 78 93 83 94 84 94 81 93 80 92 82 95 83 96 87 97 88 97 84 96 85 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID500\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID501\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID505\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID506\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID510\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID510\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID507\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID511\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6729884580762607 0.7375072073159738 0.05629968430755275 -0.6658436797422771 0.7251760043223742 -0.1754193743641215 -0.6630305151580132 0.7299655905773456 -0.1659541278256337 0.6630305151580132 -0.7299655905773456 0.1659541278256337 0.6658436797422771 -0.7251760043223742 0.1754193743641215 0.6729884580762607 -0.7375072073159738 -0.05629968430755275 -0.6144800241452068 0.7457833801420833 -0.257335286795953 -0.6113107337789397 0.7482110703485606 -0.2578359574894776 0.6113107337789397 -0.7482110703485606 0.2578359574894776 0.6144800241452068 -0.7457833801420833 0.257335286795953 -0.6144572319660114 -0.469525830568726 0.6340250819276909 -0.6630446878927789 -0.3784166032630609 0.645889012317143 -0.6112832145498026 -0.4707347038740193 0.6361931076161541 0.6112832145498026 0.4707347038740193 -0.6361931076161541 0.6630446878927789 0.3784166032630609 -0.645889012317143 0.6144572319660114 0.469525830568726 -0.6340250819276909 -0.6658562154288208 -0.3859655043248172 0.6384873764187492 -0.6729915547513984 -0.1696569719422396 0.71992977373122 0.6729915547513984 0.1696569719422396 -0.71992977373122 0.6658562154288208 0.3859655043248172 -0.6384873764187492 -0.6701267456751917 -0.1735325142790268 0.72167625097323 -0.6289091309737778 -0.01542730369521124 0.7773257382066434 0.6289091309737778 0.01542730369521124 -0.7773257382066434 0.6701267456751917 0.1735325142790268 -0.72167625097323 -0.6252368259778801 0.3578597082949858 0.6935526949123143 -0.6586051859823896 0.4442906086005776 0.6073261595769036 -0.6193427745518753 0.3613913988662995 0.6970012800819265 0.6193427745518753 -0.3613913988662995 -0.6970012800819265 0.6586051859823896 -0.4442906086005776 -0.6073261595769036 0.6252368259778801 -0.3578597082949858 -0.6935526949123143 -0.6253034624160696 0.5526101220855131 0.5510150931318574 -0.6194223535536992 0.5548231614226238 0.5554162470319005 0.6194223535536992 -0.5548231614226238 -0.5554162470319005 0.6253034624160696 -0.5526101220855131 -0.5510150931318574 -0.628982358135911 0.7454560785608687 0.2206273511839385 -0.67013650131323 0.7403345362785804 0.05312103162442063 0.67013650131323 -0.7403345362785804 -0.05312103162442063 0.628982358135911 -0.7454560785608687 -0.2206273511839385 -0.6220189146899646 -0.01309573882381509 0.7828926946859175 0.6220189146899646 0.01309573882381509 -0.7828926946859175 -0.6632923012885572 0.441848588696277 0.6039976388351515 0.6632923012885572 -0.441848588696277 -0.6039976388351515 -0.6221076599331773 0.7500464868654583 0.2245268959239637 0.6221076599331773 -0.7500464868654583 -0.2245268959239637</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID511\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID509\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID512\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">7.795591679423524 -5.323227745288749 9.929583898964312 -6.871125386769826 10.11824808736943 -6.675185043266 7.718649839306408 -5.593427100716775 6.623133292318746 -4.900658240318208 6.619185689247543 -5.161112975986945 5.822099524111708 -4.877519494199655 5.930260994757609 -5.170298768740171 5.05490498188978 -5.48043594259001 4.859378482153733 -5.270196480154701 4.414072035031004 -6.042836842313367 4.092155780313024 -5.873100523294384 4.194417247662015 -6.556555994075766 4.385226823545771 -7.511775063321221 4.975203874607814 -9.634970930132152 5.269730206931626 -9.552833993310438 4.034559973661107 -7.487651576590498 3.87764031107622 -6.480658898337778 5.822179128624093 -6.457005021127549 5.689472813873823 -7.515378658893742 5.925653000357565 -7.46826496498529 5.916109472248006 -7.310813277664289 6.288098685998339 -9.573629295500691 6.511257923774214 -9.533277001644295 5.546090981562797 -9.850025254076742 3.526461403957602 -8.209666149461569 5.366702388850225 -9.961973302364093 5.329292279186206 -7.665955408862323 4.100724298898611 -7.222142695431995 5.158417602448649 -7.80262028114791 6.489769452481003 -5.779453223070861 5.637638242695263 -5.933192605821058 6.437987728279937 -5.968028370914714 7.098762251858164 -3.787052743699775 6.386063448597975 -4.493172816030821 7.217578390551652 -3.945559541713974 5.729712477188441 -5.034440475430622 5.946010344400233 -5.104542875128599 6.517499784057383 -4.37952604699279 5.967022270105487 -5.74343876346228 5.576548159483153 -6.35877397416587 5.82171707979354 -6.36355039909147 5.927577537499342 -7.239119522850759 5.691826745769582 -7.287545814181028 6.355060939941811 -9.495860674564316 5.577040359522241 -6.444146991745441 5.691612126075604 -7.507383079612655 5.822211657743393 -6.448847275944787 4.064972331357362 -7.995403824306254 6.168526379568627 -9.569136817559707 4.251113033307034 -7.871692637448878 4.281639333974275 -7.022897481686874 4.164842777836451 -7.1925382682496 5.397026101555857 -7.63010449077775 5.701364756438144 -5.601711277529612 5.729387676422575 -5.784399080729091 6.578380074322135 -5.620264617403369 7.051363306255356 -4.085489202208199 6.13862237800544 -4.632304826311748 6.30564364571233 -4.770181180200111 5.734267381965052 -5.596749296751172 5.573646081394728 -6.275246632246977 5.955497993585017 -5.656571920937295 5.704254899531289 -5.239542710890913 6.511544613865906 -4.599494280401795 6.323365246363862 -4.479665053217046</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID512\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID508\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID506\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID507\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"64\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 7 7 6 6 8 8 8 8 6 6 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 15 15 14 14 13 13 16 16 16 16 13 13 12 12 16 16 12 12 11 11 16 16 11 11 17 17 18 17 19 11 20 16 19 11 21 12 20 16 21 12 22 13 20 16 20 16 22 13 23 14 24 15 23 14 22 13 21 12 19 11 25 10 19 11 26 9 25 10 25 10 26 9 27 8 26 9 28 6 27 8 27 8 28 6 29 7 29 7 28 6 30 5 28 6 31 4 30 5 30 5 31 4 32 3 31 4 33 0 32 3 32 3 33 0 34 1 35 2 34 1 33 0 36 18 37 19 38 20 39 20 40 19 41 18 38 21 42 22 43 23 44 23 45 22 39 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 47 29 50 29 54 28 55 27 56 30 57 31 53 32 54 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 70 39 71 40 36 41 41 41 72 40 73 39 38 42 37 43 42 44 45 44 40 43 39 42 71 45 37 46 36 47 41 47 40 46 72 45 47 48 46 49 52 50 55 50 51 49 50 48 56 51 53 52 52 53 55 53 54 52 59 51 74 54 57 55 56 56 59 56 58 55 75 54 60 57 76 58 61 59 64 59 77 58 65 57 78 60 71 61 70 62 73 62 72 61 79 60 66 63 61 64 76 65 77 65 64 64 69 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID508\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID509\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID513\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID514\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID518\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID518\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID515\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID519\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1164164008736633 0.5995543045607452 -0.7918218596946564 -0.1152524072062661 0.5994041612018266 -0.792105759458354 -0.108837402926013 0.5869636604169701 -0.8022643461317676 0.108837402926013 -0.5869636604169701 0.8022643461317676 0.1152524072062661 -0.5994041612018266 0.792105759458354 0.1164164008736633 -0.5995543045607452 0.7918218596946564 -0.1108295971226472 0.5889064001271712 -0.8005660824010021 0.1108295971226472 -0.5889064001271712 0.8005660824010021 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.117010717209138 0.5772025840593379 -0.8081742813362881 0.117010717209138 -0.5772025840593379 0.8081742813362881 -0.55805116068878 0.2794674820048999 -0.7813301661626451 -0.4972069966061667 0.2998409485598932 -0.8141748019268212 -0.5145432086037881 0.301138149130455 -0.8028456275137845 0.5145432086037881 -0.301138149130455 0.8028456275137845 0.4972069966061667 -0.2998409485598932 0.8141748019268212 0.55805116068878 -0.2794674820048999 0.7813301661626451 -0.5583170886261052 0.2763353231468237 -0.7822536786295161 -0.5451735392333464 0.2585521366823797 -0.7974563340627268 0.5451735392333464 -0.2585521366823797 0.7974563340627268 0.5583170886261052 -0.2763353231468237 0.7822536786295161 -0.1318899009461685 0.5189517552672971 -0.8445674216623568 -0.1321751191906274 0.5316379949383054 -0.8365947526759427 -0.1366137379887484 0.525105648062938 -0.8400004434315159 0.1366137379887484 -0.525105648062938 0.8400004434315159 0.1321751191906274 -0.5316379949383054 0.8365947526759427 0.1318899009461685 -0.5189517552672971 0.8445674216623568 -0.1289772731066859 0.5276362262001799 -0.8396218647839013 -0.1269133562014147 0.541783060402261 -0.8308815291477196 0.1269133562014147 -0.541783060402261 0.8308815291477196 0.1289772731066859 -0.5276362262001799 0.8396218647839013 -0.1260730475475516 0.541364594212308 -0.8312821198699127 -0.1257237932527103 0.5619705390732921 -0.8175467210036521 -0.1241088849423676 0.5608577831136058 -0.8185569814003505 0.1241088849423676 -0.5608577831136058 0.8185569814003505 0.1260730475475516 -0.541364594212308 0.8312821198699127 0.1257237932527103 -0.5619705390732921 0.8175467210036521 -0.1211792230471033 0.5801840317827792 -0.8054204399976321 0.1211792230471033 -0.5801840317827792 0.8054204399976321 -0.6328077900805511 0.4212204572764466 -0.6497134962313701 -0.630745177755128 0.4220252385451681 -0.6511952232391957 -0.5535170558317795 0.4699781182489695 -0.6875604971713225 0.5535170558317795 -0.4699781182489695 0.6875604971713225 0.630745177755128 -0.4220252385451681 0.6511952232391957 0.6328077900805511 -0.4212204572764466 0.6497134962313701 -0.5496579690091841 0.4742995180535889 -0.6876889444209731 -0.5040577082147066 0.5271615428562393 -0.6841246483812488 0.5040577082147066 -0.5271615428562393 0.6841246483812488 0.5496579690091841 -0.4742995180535889 0.6876889444209731 -0.4611603796146424 0.6201725230534618 -0.6345999889089049 -0.4986083373847545 0.5294053531974816 -0.6863815978712283 0.4986083373847545 -0.5294053531974816 0.6863815978712283 0.4611603796146424 -0.6201725230534618 0.6345999889089049 -0.4569158452101462 0.7637801850174524 -0.4559251466749819 -0.4575413346766589 0.6147893824288844 -0.6424094818065907 0.4575413346766589 -0.6147893824288844 0.6424094818065907 0.4569158452101462 -0.7637801850174524 0.4559251466749819 -0.4287765424434085 0.8502341030875822 -0.3053729631076245 -0.4541857773435357 0.7765036889450471 -0.4367577139714671 0.4541857773435357 -0.7765036889450471 0.4367577139714671 0.4287765424434085 -0.8502341030875822 0.3053729631076245 -0.3064595936731795 0.2773796356690582 -0.9105729268772327 -0.3524563901464338 0.2844550069979994 -0.8915491248600456 0.3524563901464338 -0.2844550069979994 0.8915491248600456 0.3064595936731795 -0.2773796356690582 0.9105729268772327 -0.5412696949613353 0.2580312515619297 -0.8002793203212533 0.5412696949613353 -0.2580312515619297 0.8002793203212533 -0.427351177790763 0.8506607779687953 -0.3061816644842928 0.427351177790763 -0.8506607779687953 0.3061816644842928</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID519\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID517\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID520\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">6.113201900217518 -9.742250853991777 7.091288569950677 -9.595896339223589 5.499103420584213 -6.600182416334707 5.420290547408211 -6.640748761512123 6.975901634042057 -9.648330521578423 6.408896219694804 -6.554535211264102 7.876456342147549 -3.761524831997849 10.67805680033176 -6.022078132143546 11.16176846173632 -5.437065414091726 7.505618194240906 -4.139992194044065 6.953548495402975 -3.227415287865078 6.513094513763935 -3.57407440575762 6.285949643299203 -2.794328788599893 5.822719035721721 -3.182704696932027 5.788941760897649 -2.3401120123712 4.612728757974727 -2.558494340414665 5.637283441458915 -2.005547866194009 5.097247661780172 -1.876136291272333 3.849480692439346 -1.51211513898687 3.499790042667428 -1.988486954492802 3.259391378364231 -1.357956861170158 2.984224971584125 -1.734949918247632 5.276829500861391 -5.688413843343613 5.455377910186199 -6.614016405360451 6.443502443529829 -6.524454426903926 5.918364098679632 0.6946835222532575 6.996622144483922 0.08107890823026182 7.093346623752447 0.1936633434774049 5.659837046645889 0.9479949494725006 5.733164416645455 1.077643543196735 5.12457596617492 1.196888661312207 4.758236997495068 -2.149699721033194 5.865618505324296 -2.460175025701383 5.735808099411976 -1.992899477220481 4.843545496099361 -2.673703235409213 6.087171796191482 -3.566690023565987 5.826602908377137 -2.54228182317705 5.082764984602673 -3.760757070883378 6.331641412255999 -4.720481401818463 6.058548585046148 -3.602661679311559 5.35585679491965 -4.878577887491488 5.285915461951562 -4.952279500389528 6.40989096811075 -5.463018791418008 6.264065004454752 -4.803501560120678 5.3725854730318 -5.6341428049648 6.554020323273361 -6.45725466293534 6.354500477194964 -5.5058065265386 12.14541253552307 -5.10293046955647 12.26851450157659 -4.986537430148319 9.41056898809822 -2.898791439095068 9.298610626780286 -3.549173966198144 9.42651991423803 -3.450700016896117 8.613182971989794 -2.826927959732564 8.038933125624038 -2.704561851470576 8.487838424714864 -3.286514222629172 8.629014812798161 -3.209905916204647 7.523789324761757 -2.751687845226335 7.805375665433106 -3.308562304365771 7.96324250441662 -3.265004189452493 7.150832450639896 -2.549082256247872 7.219812768339646 -2.90011231837174 7.377457688057052 -2.855312596780183 7.635697253095525 -0.8035006671235652 7.782229223622522 -0.7453506809080558 7.235310741891112 -0.4904196007434802 7.011895007764506 0.03672512252392931 7.606548193301278 -0.1401008424521096 7.109563867316364 0.1488038753349426 5.810559197299331 0.7254211548792295 7.005536879862811 0.2545755458081305 5.890502313623793 0.8526266988596412 5.158474751740419 1.229593571299443 5.765798087273703 1.106421549715725 5.254634222010645 1.345955951793201 4.742685627602766 -2.167049408315839 4.865427715803005 -2.621495704933041 5.847127653942131 -2.483938036577421 5.090846327701405 -3.748857617575201 6.066241502050971 -3.589285790193484 4.828626099140562 -2.691145961250775 5.249019993973442 -4.974806095254356 5.387368148386617 -5.621069559526315 6.368925063442006 -5.491049143458817 9.362675427690499 -3.207509091704578 12.04798571922787 -5.432569415147625 9.485908542837471 -3.105411685193395 8.55510598041441 -3.016987279469245 9.338158193561835 -3.664297378796833 8.693206550649377 -2.936984635025157 7.953234205976306 -2.919923603102037 8.516550120266997 -3.44382944239968 8.108248304215895 -2.870429459557781 7.686443725701371 -2.683559650169936 7.532549763138777 -2.735810750521659 7.973800953496667 -3.248171677254486 7.293828092787273 -2.540400614243558 7.132876063535401 -2.565649444134168 7.358713154635643 -2.872239896407073</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID520\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID516\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID514\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID515\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 8 6 9 7 10 8 9 7 8 6 11 9 11 9 8 6 12 10 11 9 12 10 13 11 13 11 12 10 14 12 13 11 14 12 15 13 15 13 14 12 16 14 15 13 16 14 17 15 17 15 16 14 18 16 17 15 18 16 19 17 17 15 19 17 20 18 17 15 20 18 21 19 21 19 20 18 22 20 21 19 22 20 23 21 24 21 25 20 26 19 25 20 27 18 26 19 26 19 27 18 28 15 27 18 29 17 28 15 29 17 30 16 28 15 30 16 31 14 28 15 28 15 31 14 32 13 31 14 33 12 32 13 32 13 33 12 34 11 33 12 35 10 34 11 34 11 35 10 36 9 35 10 37 6 36 9 36 9 37 6 38 7 39 8 38 7 37 6 40 22 2 23 6 24 7 24 3 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 42 28 48 29 49 30 50 30 51 29 47 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 62 37 63 38 59 39 63 38 62 37 64 40 65 40 66 37 67 38 60 39 67 38 66 37 64 41 68 42 63 43 67 43 69 42 65 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 72 50 76 51 77 52 78 52 79 51 73 50 80 53 77 54 81 55 82 55 78 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 92 62 93 63 43 64 46 64 94 63 95 62 43 65 93 66 44 67 45 67 94 66 46 65 42 68 44 69 48 70 51 70 45 69 47 68 49 71 48 72 96 73 97 73 51 72 50 71 52 74 58 75 53 76 56 76 61 75 57 74 62 77 59 78 58 79 61 79 60 78 66 77 64 80 40 81 68 82 69 82 41 81 65 80 72 83 71 84 76 85 79 85 74 84 73 83 77 86 76 87 81 88 82 88 79 87 78 86 80 89 81 90 85 91 86 91 82 90 83 89 89 92 84 93 85 94 86 94 87 93 90 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID516\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID517\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID521\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID522\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID526\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID526\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID523\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID527\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1088358859381834 -0.9423316096583713 0.3164899482933284 -0.115264363165527 -0.9364085327492276 0.3314410752735454 -0.1164308334372561 -0.9361829241127744 0.3316706101311379 0.1164308334372561 0.9361829241127744 -0.3316706101311379 0.115264363165527 0.9364085327492276 -0.3314410752735454 0.1088358859381834 0.9423316096583713 -0.3164899482933284 -0.1108265020245895 -0.9413013605670106 0.3188561353395736 0.1108265020245895 0.9413013605670106 -0.3188561353395736 -0.1170061438965575 -0.9450112108173462 0.3053905265721109 0.1170061438965575 0.9450112108173462 -0.3053905265721109 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211767870245431 -0.9432883615922447 0.3090683632645491 0.1211767870245431 0.9432883615922447 -0.3090683632645491 -0.1289832713335865 -0.9599617263082118 0.2486700620087674 -0.1321753098522585 -0.9582917932523017 0.2533900677823568 -0.1269172199874076 -0.9559205324775958 0.2647790680141043 0.1269172199874076 0.9559205324775958 -0.2647790680141043 0.1321753098522585 0.9582917932523017 -0.2533900677823568 0.1289832713335865 0.9599617263082118 -0.2486700620087674 -0.1318905450426279 -0.9620432799504404 0.238909212109029 -0.1366015841177712 -0.9595604633487854 0.2461376127177232 0.1366015841177712 0.9595604633487854 -0.2461376127177232 0.1318905450426279 0.9620432799504404 -0.238909212109029 -0.5450709898174925 -0.8383750888433897 0.004982616402794485 -0.5582559972072337 -0.8292442885329374 0.02653585343755587 -0.5579936818601086 -0.8293100066025989 0.02979872401626703 0.5579936818601086 0.8293100066025989 -0.02979872401626703 0.5582559972072337 0.8292442885329374 -0.02653585343755587 0.5450709898174925 0.8383750888433897 -0.004982616402794485 -0.5144490778171239 -0.8563961092508181 0.04390729316607478 -0.4971056987735406 -0.8668022854730181 0.03923929338842273 0.4971056987735406 0.8668022854730181 -0.03923929338842273 0.5144490778171239 0.8563961092508181 -0.04390729316607478 -0.352304512060553 -0.9358847587336349 0.001117654625490362 -0.3062977673774491 -0.9518676260712704 -0.01138859679831438 0.3062977673774491 0.9518676260712704 0.01138859679831438 0.352304512060553 0.9358847587336349 -0.001117654625490362 -0.4286372452159311 -0.5485409186912338 0.7178948199667378 -0.4542014913136462 -0.6513390540662555 0.6078309320333537 -0.4569466615946189 -0.6657511171996592 0.5898942264549963 0.4569466615946189 0.6657511171996592 -0.5898942264549963 0.4542014913136462 0.6513390540662555 -0.6078309320333537 0.4286372452159311 0.5485409186912338 -0.7178948199667378 -0.4574340725793243 -0.7984546202919721 0.3914387417947999 -0.4610431429742561 -0.7926530874053718 0.3989239317754095 0.4610431429742561 0.7926530874053718 -0.3989239317754095 0.4574340725793243 0.7984546202919721 -0.3914387417947999 -0.4985522816593612 -0.8144906939653281 0.2967330987539529 -0.504011286993974 -0.8116541095840285 0.2952799163133784 0.504011286993974 0.8116541095840285 -0.2952799163133784 0.4985522816593612 0.8144906939653281 -0.2967330987539529 -0.5497181193307189 -0.7989775362978114 0.2438132190242709 -0.5535803758470984 -0.7975432953446792 0.2397362290679806 0.5535803758470984 0.7975432953446792 -0.2397362290679806 0.5497181193307189 0.7989775362978114 -0.2438132190242709 -0.6307130915381779 -0.7484351601869926 0.2050507428863028 -0.6327733709944583 -0.7467813291086449 0.2047327708380742 0.6327733709944583 0.7467813291086449 -0.2047327708380742 0.6307130915381779 0.7484351601869926 -0.2050507428863028 -0.1241102328803618 -0.949950385418969 0.2866895800979427 -0.12572764539914 -0.9493235337335358 0.288057958546645 0.12572764539914 0.9493235337335358 -0.288057958546645 0.1241102328803618 0.949950385418969 -0.2866895800979427 -0.1260763385258006 -0.9561757449318785 0.2642587778445488 0.1260763385258006 0.9561757449318785 -0.2642587778445488 -0.5411572163250612 -0.8409136120021787 0.0036282735233317 0.5411572163250612 0.8409136120021787 -0.0036282735233317 -0.4271593597663426 -0.5494736951569242 0.7180623508405128 0.4271593597663426 0.5494736951569242 -0.7180623508405128</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID527\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID525\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID528\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">-3.786473319759188 -7.323412140034409 -4.615531269323347 -10.50426780891869 -3.619923147946738 -10.4997124189645 -3.81352480912883 -7.314962732852594 -4.805676486616894 -7.37051953241552 -4.653673804142658 -10.49401698912256 -3.861453874929484 -6.370197921834446 -4.812624718306279 -7.36088743703495 -3.820425668882074 -7.305856672633955 2.694805104503927 -6.908588653047397 3.159237001412372 -10.04246510191542 4.01444950041533 -9.85695107623112 2.124028407813262 -7.071998294227972 2.309722319644435 -5.993056934305602 2.044608896717736 -5.356969436367257 1.756362347080652 -6.218346919426859 1.654720203610757 -4.260796592547062 1.433822075213695 -5.58669282178515 1.301124565657046 -3.253791213680578 1.034025889616375 -5.076538702772943 1.150057598209742 -2.790499405865308 0.6099842723727789 -2.882667464664047 0.6813313594591697 -4.417481111052449 0.6181083223495576 -3.371747130340732 0.6745777442559287 -4.861532670451762 -3.824119757917572 -6.385272312822708 -4.818761116653899 -6.415319624856644 -4.770302607309429 -7.378913320643741 -3.932374746135774 -3.499523185868613 -4.927413575326117 -3.550563414087187 -4.879652942044097 -4.594604717966694 -3.940378453159533 -3.027190444375211 -4.936862069573945 -3.065660927447276 -4.915571062373914 -3.5436583785342 -3.918064205042312 -2.911394748494002 -4.09282702520373 -3.385230939043493 -3.913500117488176 -3.40050299024049 -4.103959653848396 -3.470749325366316 -4.244247793447956 -4.516291113672466 -4.071526949273308 -4.517354419797227 -4.694071954369298 -4.397249817793164 -4.852048441064388 -4.881619431869657 -4.696140705790722 -4.841330176768042 -3.612092296619232 -5.493643733810828 -3.54728384340591 -5.844317579836226 -3.388429709736816 -5.80223159735321 -3.853333020430924 -5.800397365438651 -3.80351443586253 -6.41800547167999 -3.644650972120329 -6.376784300125662 -3.613854860136208 -6.28799614187596 -3.613167292398807 -6.974182995811063 -3.443345100842655 -6.955360092461058 -3.229723261065653 -6.914445467807718 -3.198837732959714 -7.807696212394419 -3.020090597742209 -7.800548950638829 -2.556309598949435 -7.719435323674952 -2.07909737595266 -10.76451173411055 -1.887081515124395 -10.7541844740011 -3.839915993991579 -5.735080854880583 -4.835935624615236 -5.752527526608549 -4.800992548081733 -6.42136775030822 -3.842653010323232 -5.712728447491024 -4.889675796800544 -4.592379227370737 -4.838679085328147 -5.729945936031485 -3.893651563408266 -4.575157380439522 -3.857120588539961 -5.72660297898442 -4.819904359823177 -6.41140743340478 -3.825258441823209 -6.381453665091004 -3.941118556409633 -3.493999293346616 -4.890027573496783 -4.588206715689682 -3.894002460961315 -4.571016362072552 -3.954943057750661 -3.012787565415254 -4.93138635985045 -3.527791052174538 -3.936315166081157 -3.477142797519195 -4.105939758987547 -3.476609754896952 -4.063770219756945 -4.537696388468241 -3.926614997645129 -3.491897394819695 -4.000934001956216 -2.89206782663573 -4.177193689864259 -2.897812676959156 -4.175804411867014 -3.36587945210828 -4.244396603139681 -4.53007578126498 -4.22716918693565 -5.016005951249156 -4.071675761691439 -4.531139361422384 -3.652170740556171 -5.469963595447143 -3.798853510505536 -5.527848467073778 -3.590817288257763 -5.821021844290655 -3.833509888572388 -5.808143101871867 -3.995755863268846 -5.841267620548126 -3.781669341089509 -6.425648218290957 -3.850258232861662 -6.228912249916991 -4.010205632191378 -6.267452237426695 -3.866956363979578 -6.914973573831331 -3.477759105263607 -6.875094619680589 -3.647638875630202 -6.893593195818973 -3.464546362080003 -7.768615286749084 -3.033317435407952 -7.697846838450428 -3.212070745508375 -7.704897883551319 -2.636818840382449 -10.75008068999862</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID528\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID524\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID522\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID523\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 6 7 0 8 5 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 13 12 10 9 14 13 13 12 14 13 15 14 13 12 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 20 19 19 18 21 20 20 19 21 20 22 21 20 19 22 21 23 22 23 22 22 21 24 23 25 24 20 19 23 22 26 22 27 19 28 24 29 23 30 21 26 22 26 22 30 21 27 19 30 21 31 20 27 19 31 20 32 18 27 19 27 19 32 18 33 17 32 18 34 16 33 17 33 17 34 16 35 15 34 16 36 14 35 15 35 15 36 14 37 12 36 14 38 13 37 12 38 13 39 9 37 12 37 12 39 9 40 10 41 11 40 10 39 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 56 37 60 38 61 39 62 39 63 38 57 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 75 49 78 50 79 51 80 51 81 50 76 49 79 52 82 53 83 54 84 54 85 53 80 52 83 55 86 56 87 57 88 57 89 56 84 55 90 58 91 59 42 60 43 60 92 59 93 58 90 61 46 62 91 63 46 62 90 61 94 64 95 64 93 61 47 62 92 63 47 62 93 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 55 74 60 75 56 76 57 76 63 75 58 74 54 77 96 78 55 79 58 79 97 78 59 77 60 80 64 81 61 82 62 82 67 81 63 80 68 83 98 84 69 85 72 85 99 84 73 83 70 86 69 87 74 88 77 88 72 87 71 86 75 89 74 90 78 91 81 91 77 90 76 89 79 92 78 93 82 94 85 94 81 93 80 92 83 95 82 96 86 97 89 97 85 96 84 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID524\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID525\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID529\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID530\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID534\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID534\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID531\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID535\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID535\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID533\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID536\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"120\">4.048226775239526 -14.15776759814488 5.275854736254216 -20.25943781854545 6.074311336163872 -20.10514721805505 3.331770984800639 -14.38222820365034 3.34628257493822 -12.47232526311665 2.743403913001568 -11.2463545094255 2.619482817920047 -12.7497492002406 1.930445109493735 -10.2117235234207 2.016557223285633 -11.52379262397881 1.315964684678752 -10.70622398827427 1.252530450429137 -9.803638625415397 -0.1147598324848787 -10.49443800458955 1.185360373440858 -8.832837379884129 1.034377884849387 -6.712951942821705 1.02924344771786 -5.77682455434737 -0.08553014833978972 -5.880332193704978 -1.198492142265195 -5.712091593480277 -1.215528711540519 -6.648138052462246 -1.547887303772093 -10.63899816275007 -1.472992104737583 -9.736992302315027 -1.393422409009268 -8.766741022896534 -2.156041200933601 -10.13969745661595 -2.258842582037208 -11.4510186977769 -2.982122386725945 -11.16788361953795 -2.877321672698945 -12.67215376661415 -3.610391638133557 -14.29897361281646 -3.600610863927081 -12.38904113597162 -4.32388128207585 -14.06887039043778 -5.629060832817041 -20.16055024897072 -6.425433245485834 -20.00001212795564 -3.212716622742917 -10.00000606397782 -2.161940641037925 -7.034435195218892 -2.814530416408521 -10.08027512448536 -1.805195819066778 -7.149486806408228 -1.80030543196354 -6.194520567985809 -1.491061193362973 -5.583941809768977 -1.438660836349472 -6.336076883307075 -1.129421291018604 -5.725509348888448 -1.0780206004668 -5.069848728307975 -0.7739436518860465 -5.319499081375033 -0.7364960523687913 -4.868496151157514 -0.6967112045046342 -4.383370511448267 -0.6077643557702595 -3.324069026231123 -0.05737991624243935 -5.247219002294777 -0.5992460711325975 -2.856045796740138 -0.04276507416989486 -2.940166096852489 0.5146217238589301 -2.888412277173685 0.5171889424246934 -3.356475971410852 0.592680186720429 -4.416418689942065 0.6262652252145684 -4.901819312707699 0.657982342339376 -5.353111994137136 0.9652225547468674 -5.105861761710349 1.008278611642817 -5.761896311989403 1.309741408960023 -6.374874600120302 1.371701956500784 -5.623177254712751 1.66588549240032 -7.191114101825169 1.67314128746911 -6.236162631558325 2.024113387619763 -7.07888379907244 2.637927368127108 -10.12971890927273 3.037155668081936 -10.05257360902752</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID536\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID532\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID530\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID531\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 3 3 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 9 9 7 7 10 10 9 9 10 10 11 11 11 11 10 10 12 12 11 11 12 12 13 13 11 11 13 13 14 14 11 11 14 14 15 15 11 11 15 15 16 16 11 11 16 16 17 17 11 11 17 17 18 18 18 18 17 17 19 19 19 19 17 17 20 20 18 18 19 19 21 21 18 18 21 21 22 22 22 22 21 21 23 23 22 22 23 23 24 24 24 24 23 23 25 25 25 25 23 23 26 26 25 25 26 26 27 27 25 25 27 27 28 28 28 28 27 27 29 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID532\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID533\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 34 34 35 35 33 33 33 33 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 41 41 42 42 40 40 40 40 42 42 39 39 39 39 42 42 43 43 42 42 44 44 43 43 44 44 45 45 43 43 45 45 46 46 43 43 46 46 47 47 43 43 47 47 48 48 43 43 48 48 49 49 43 43 43 43 49 49 50 50 49 49 51 51 50 50 50 50 51 51 52 52 52 52 51 51 53 53 51 51 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 56 56 57 57 55 55 55 55 57 57 58 58 59 59 58 58 57 57</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID532\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID533\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID537\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID538\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID542\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID542\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID539\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID543\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6630779028754261 -0.686790694066647 -0.2977351797517055 -0.6729311871649365 -0.562029832840137 -0.4809221187868957 -0.6658892428368299 -0.6885143064564592 -0.2872969997737087 0.6658892428368299 0.6885143064564592 0.2872969997737087 0.6729311871649365 0.562029832840137 0.4809221187868957 0.6630779028754261 0.686790694066647 0.2977351797517055 -0.6113217468963009 -0.7555949016953774 -0.2352914497035711 -0.6145076962834851 -0.7533304730451725 -0.23425091160954 0.6145076962834851 0.7533304730451725 0.23425091160954 0.6113217468963009 0.7555949016953774 0.2352914497035711 -0.6113552837420216 0.7554994400131816 -0.2355107496070638 -0.614536014802447 0.753238837863779 -0.234471191501963 -0.6630217725658703 0.6867913760071885 -0.2978585821254177 0.6630217725658703 -0.6867913760071885 0.2978585821254177 0.614536014802447 -0.753238837863779 0.234471191501963 0.6113552837420216 -0.7554994400131816 0.2355107496070638 -0.6658367060927759 0.6885118877851151 -0.2874245313088283 -0.6729662109479289 0.5620113969532229 -0.480894654386046 0.6729662109479289 -0.5620113969532229 0.480894654386046 0.6658367060927759 -0.6885118877851151 0.2874245313088283 -0.6701069292073644 0.5661758691150767 -0.4800016548513805 -0.6289247236154029 0.4714099301382881 -0.6182445873538268 0.6289247236154029 -0.4714099301382881 0.6182445873538268 0.6701069292073644 -0.5661758691150767 0.4800016548513805 -0.6252698128776827 0.1206693193046023 -0.7710230713036228 -0.6586069297905275 -2.229606074873209e-006 -0.7524871507387512 -0.6193819127185333 0.1198559305827131 -0.7758869776593 0.6193819127185333 -0.1198559305827131 0.7758869776593 0.6586069297905275 2.229606074873209e-006 0.7524871507387512 0.6252698128776827 -0.1206693193046023 0.7710230713036228 -0.6252581822364834 -0.120672201244489 -0.7710320521178985 -0.6193686517759511 -0.1198585530154133 -0.7758971584342167 0.6193686517759511 0.1198585530154133 0.7758971584342167 0.6252581822364834 0.120672201244489 0.7710320521178985 -0.6288757300373609 -0.4714242768409007 -0.6182834846371121 -0.67006535899179 -0.5661918537004904 -0.4800408310575318 0.67006535899179 0.5661918537004904 0.4800408310575318 0.6288757300373609 0.4714242768409007 0.6182834846371121 -0.6220449068117597 0.4728131159400871 -0.6241056731873016 0.6220449068117597 -0.4728131159400871 0.6241056731873016 -0.6632952763355497 -2.144258925662945e-006 -0.7483577863471115 0.6632952763355497 2.144258925662945e-006 0.7483577863471115 -0.6219938106167091 -0.472827546613443 -0.6241456646633203 0.6219938106167091 0.472827546613443 0.6241456646633203</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID543\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID541\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID544\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">2.916716979171949 10.15761536438385 2.360348620683812 7.925327132511852 3.216081884900745 10.0871098268747 2.095474554515417 8.10766186966894 1.731248660526263 7.039697384405099 1.53253561834532 7.248080785050663 1.102106460940886 6.648978065149996 0.9696623879520416 6.935506865534766 0.03037484196967586 6.518738882791184 0.03037484196966032 6.779216066056368 -1.04136616354108 6.648978065150011 -0.9088939309335409 6.935506865534769 -1.471814094024708 7.248080785050666 -1.670494283317261 7.039697384405096 -2.034706097497008 8.107661869668936 -2.299594243474685 7.925327132511855 -2.856924722266216 10.15761536438385 -3.156233308757805 10.08710982687471 -1.40781128757764 8.740863958144171 -1.852121515551163 7.788450679867976 -1.168223810341762 8.705845242068937 -1.353723762346343 10.77235392063934 -1.891963265655392 8.548125708057006 -1.127976746028978 10.74215769727934 1.390907857481091 10.76412350460084 1.165152667342891 10.73392563091469 1.92977610017306 8.539773730394375 1.451024695764368 8.728401408360952 1.211452728307992 8.693382385382428 1.895306010249322 7.775979783153745 0.9074623347642705 7.685547256742304 1.633385363252757 7.302298032340775 1.117617843992585 7.784976980384649 -0.2901796556002942 6.749254765222319 0.8549824061199894 6.711683130854517 -0.197239063084682 6.918126269644701 0.3497466618996286 6.756248688697456 0.2568369789646587 6.925123544849952 -0.7953736304985473 6.718676308614904 -1.583745696748875 7.318291702219283 -0.8578410112294874 7.701550924618476 -1.06798004515442 7.800983242129445 -0.7399734769562733 10.71852904030233 -1.55024617473669 8.534797514554935 -1.310273488089885 8.50145099047988 -1.78574637488333 7.791442475072095 -1.566410502550131 7.70517274122652 -1.095319278789253 8.705805411636872 0.7810767299616233 10.71158619287857 1.352006114122691 8.494388859175095 1.591962985362013 8.527737177369552 1.138657808235052 8.693800988211841 1.609739214986294 7.693184525529069 1.829089859934408 7.779452862022374 1.08537548281971 7.599211858902786 1.642118984845298 7.065808738801556 1.799210093489108 7.202159495554009 0.8075133592585561 6.667004022123 0.8413662356912078 6.855588981904453 -0.303908425543867 6.890972967685572 -1.594006231623408 7.083719623542236 -1.037267018645942 7.617144552937642 -1.751077057674244 7.220075955278533 0.3635172617960516 6.897601249431154 -0.7817156750263035 6.862217289076101 -0.7478615787589549 6.673632464807028</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID544\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID540\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID538\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID539\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"64\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 10 10 12 12 13 13 13 13 12 12 14 14 13 13 14 14 15 15 15 15 14 14 16 16 15 15 16 16 17 17 18 17 19 16 20 15 19 16 21 14 20 15 20 15 21 14 22 13 21 14 23 12 22 13 22 13 23 12 24 10 23 12 25 11 24 10 25 11 26 9 24 10 24 10 26 9 27 8 26 9 28 7 27 8 27 8 28 7 29 6 28 7 30 5 29 6 29 6 30 5 31 4 30 5 32 3 31 4 31 4 32 3 33 1 32 3 34 0 33 1 35 2 33 1 34 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 36 22 43 23 44 23 41 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 48 27 52 28 53 29 54 29 55 28 49 27 56 30 57 31 53 32 54 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 70 39 71 40 37 41 40 41 72 40 73 39 43 42 36 43 38 44 39 44 41 43 44 42 37 45 71 46 38 47 39 47 72 46 40 45 47 48 52 49 48 50 49 50 55 49 50 48 52 51 56 52 53 53 54 53 59 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 76 57 61 58 60 59 65 59 64 58 77 57 78 60 71 61 70 62 73 62 72 61 79 60 66 63 61 64 76 65 77 65 64 64 69 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID540\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID541\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID545\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID546\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID550\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID550\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID547\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID551\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1164409580977757 -0.9514088463688938 0.2850661507936061 -0.1152736558224273 -0.9514554511327701 0.2853848432959771 -0.1088414049293589 -0.947410974285598 0.3009418455054356 0.1088414049293589 0.947410974285598 -0.3009418455054356 0.1152736558224273 0.9514554511327701 -0.2853848432959771 0.1164409580977757 0.9514088463688938 -0.2850661507936061 -0.1108291057697727 -0.947976074128154 0.2984263262429192 0.1108291057697727 0.947976074128154 -0.2984263262429192 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170025511882888 -0.9430258041624864 0.3114686753096171 0.1170025511882888 0.9430258041624864 -0.3114686753096171 -0.4971366770465531 -0.7227409499224468 0.4801048256790497 -0.5144747560634457 -0.7170989215866322 0.4701966206096629 -0.5580530298785489 -0.6868819057170897 0.4655857208311168 0.5580530298785489 0.6868819057170897 -0.4655857208311168 0.5144747560634457 0.7170989215866322 -0.4701966206096629 0.4971366770465531 0.7227409499224468 -0.4801048256790497 -0.5583224479878474 -0.6848994354787804 0.4681760431223551 -0.5451847648562986 -0.6795279363612947 0.4909331480692076 0.5451847648562986 0.6795279363612947 -0.4909331480692076 0.5583224479878474 0.6848994354787804 -0.4681760431223551 -0.132187031375201 -0.9230309666043481 0.3613037827447346 -0.1366215138279231 -0.9197698814859678 0.3679102160455122 -0.1319019164971365 -0.9175016921677499 0.375223305904228 0.1319019164971365 0.9175016921677499 -0.375223305904228 0.1366215138279231 0.9197698814859678 -0.3679102160455122 0.132187031375201 0.9230309666043481 -0.3613037827447346 -0.1268997631170716 -0.9278451148530309 0.3507134057377864 -0.1289849043901566 -0.9215886923010116 0.3661108802840657 0.1289849043901566 0.9215886923010116 -0.3661108802840657 0.1268997631170716 0.9278451148530309 -0.3507134057377864 -0.1260530155511802 -0.927743067690427 0.3512882543194544 -0.1256997483470361 -0.9362686863122588 0.3280251824122791 -0.1240889977263835 -0.935968365345372 0.3294922453047622 0.1240889977263835 0.935968365345372 -0.3294922453047622 0.1260530155511802 0.927743067690427 -0.3512882543194544 0.1256997483470361 0.9362686863122588 -0.3280251824122791 -0.1211640169608956 -0.9438046778011408 0.3074931074911838 0.1211640169608956 0.9438046778011408 -0.3074931074911838 -0.6328548543715852 -0.7235364593406309 0.2756623392905591 -0.6307922097387901 -0.7250610588406663 0.2763831562988343 -0.5535665584026356 -0.7852409048141928 0.2774180722751294 0.5535665584026356 0.7852409048141928 -0.2774180722751294 0.6307922097387901 0.7250610588406663 -0.2763831562988343 0.6328548543715852 0.7235364593406309 -0.2756623392905591 -0.5497036183937712 -0.7888062471367417 0.2749738831286428 -0.5040203107265815 -0.8294161793038206 0.2408989993423235 0.5040203107265815 0.8294161793038206 -0.2408989993423235 0.5497036183937712 0.7888062471367417 -0.2749738831286428 -0.4985502972453628 -0.8325691162757212 0.2414047798624232 -0.460851692936173 -0.8753739730121579 0.146068903229857 0.460851692936173 0.8753739730121579 -0.146068903229857 0.4985502972453628 0.8325691162757212 -0.2414047798624232 -0.4572416734112509 -0.8756361354271367 0.1555358814881895 -0.4569279317681941 -0.8856200811699702 -0.08302973562848467 0.4569279317681941 0.8856200811699702 0.08302973562848467 0.4572416734112509 0.8756361354271367 -0.1555358814881895 -0.4542038175253678 -0.8845680751983658 -0.1060104357374351 -0.4286788938903839 -0.8665692927857499 -0.2555231236771386 0.4286788938903839 0.8665692927857499 0.2555231236771386 0.4542038175253678 0.8845680751983658 0.1060104357374351 -0.3524105864353466 -0.7559917297368691 0.5516187842502752 -0.3064282572468343 -0.7615096868410569 0.5711433445361185 0.3064282572468343 0.7615096868410569 -0.5711433445361185 0.3524105864353466 0.7559917297368691 -0.5516187842502752 -0.5412831574712219 -0.6807737084399571 0.4935176808736367 0.5412831574712219 0.6807737084399571 -0.4935176808736367 -0.4272120245077655 -0.8674148026834218 -0.2551106548179773 0.4272120245077655 0.8674148026834218 0.2551106548179773</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID551\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID549\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID552\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">-4.616909317180718 10.23948786492563 -5.610078521260624 10.18451102473239 -4.476007576609035 7.062446497286024 -5.582273135016021 10.1941861999994 -5.451980479202522 7.070081426959295 -4.457317962308713 7.070081426959296 -1.33218931828335 3.230435375675426 -1.6114341764961 2.609907015700216 -1.106382029703872 2.786350440244579 -1.802609827421979 4.207418866483767 -1.971952387364679 3.008396156954229 -2.310670360138509 5.273218044780612 -2.705824901930551 3.881759770422776 -2.574112979026264 5.90973500068239 -2.950461588838496 6.827506162532062 -2.915820564645328 4.577486397015233 -2.976053988909622 5.174927108690099 -4.098294577175903 9.820029505899221 -3.189794693172454 5.834534961886438 -3.533778702362138 6.694277314763351 -4.927754917204618 9.572531168459182 -3.044538181434562 4.237025474007779 -4.457317962308713 7.061712810444016 -5.451980479202522 7.061712810444018 -4.414598464887224 6.126107772952492 -5.763048222846655 3.122267891642199 -5.924772333389478 3.074542164180131 -5.33596872995056 2.130714035845917 -5.218756704377096 1.966856877840273 -5.377440342691845 1.899378453086448 -4.987916614829788 1.512708834556799 -5.29019606874273 3.166224867289707 -5.257018934731138 2.688642967424494 -4.260154754836963 2.720485635982612 -5.351085900066831 4.23457763899701 -5.285625910594948 3.191125460069592 -4.288675503379187 3.206941579033968 -4.351493664629199 4.291039244739512 -5.414233208841241 5.380670171341812 -5.345933874498217 4.243665053434983 -4.41979236804897 5.428040042772467 -5.444478208186572 6.07674149299513 -5.409786663689427 5.40789315121728 -4.415291528805324 5.454552311874554 -5.479987793634328 7.049459215875197 -5.432744773063641 6.08583337300607 -4.438155718111392 6.116919218057375 -7.120928170141183 9.270667048401974 -7.302381745519437 9.220150285118146 -6.203185173507943 6.276398871968053 -6.246087340236969 6.477690060269889 -6.416833798944759 6.43548686015438 -6.05090352278245 5.589542698505411 -6.057282581899993 5.716607486391731 -6.225849311089496 5.691759027822195 -5.947800219407116 5.041376582275624 -6.110213799958335 5.176780817884009 -5.915069665924102 4.577268658835078 -5.942953322128933 5.176183896234631 -5.911078840908683 4.364150946875863 -6.078344164688114 4.355576795346951 -5.968821493453951 4.011867773493208 -6.077940492615052 3.895396330804702 -5.788129089640393 3.450333224929001 -5.914572748051512 3.883135267461919 -6.122288302219893 3.554007002763703 -5.926698155432084 3.092878339107605 -5.764906912468319 3.140463050621411 -5.870819298278879 3.017708812526331 -5.411299025384771 2.019532791723905 -5.25185851333697 2.085897937376482 -5.418215817904647 1.905293193501272 -5.20087948499223 1.469582089575572 -5.03425269375542 1.515196952579786 -4.289073233445126 3.18393522163202 -5.286018809997048 3.167931777298792 -4.257505459531929 2.720014403967389 -4.351952313245739 4.286247223369609 -5.34638380163261 4.238759873238242 -4.285980849598744 3.209841492506433 -4.438928614152006 6.112609013456504 -5.433512735694054 6.081425640721875 -4.405753380254583 5.457778096002004 -7.23775406617386 9.323170269276911 -6.415450211855801 6.313277663626342 -6.244958820165806 6.356114253185693 -6.408634890764557 6.478828975510515 -6.226509457877878 5.603684553087598 -6.058025690602193 5.628878803242282 -6.210238106228282 5.734211264659076 -6.110019128929388 5.081703461357701 -5.942758739870094 5.081091340191565 -6.111403487118982 5.175334618298088 -6.083282415819649 4.567569574095214 -5.91599523908132 4.575875699918768 -6.075915714967462 4.348926781517354 -6.129123088814952 4.015794026888997 -5.965547817296141 4.005385117475852</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID552\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID548\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID546\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID547\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 14 12 16 14 17 15 17 15 16 14 18 16 18 16 16 14 19 17 18 16 19 17 20 18 20 18 19 17 21 19 21 19 19 17 22 20 23 21 14 12 17 15 24 15 25 12 26 21 27 20 28 17 29 19 29 19 28 17 30 18 30 18 28 17 31 16 28 17 32 14 31 16 31 16 32 14 24 15 24 15 32 14 25 12 32 14 33 13 25 12 33 13 34 11 25 12 25 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 2 22 6 23 40 24 41 24 7 23 3 22 42 25 43 26 44 27 45 27 46 26 47 25 44 28 48 29 49 30 50 30 51 29 45 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 52 35 59 36 60 36 57 35 61 34 62 37 63 38 58 39 63 38 62 37 64 40 65 40 66 37 67 38 61 39 67 38 66 37 68 41 63 42 64 43 65 43 67 42 69 41 6 44 68 45 40 46 41 46 69 45 7 44 70 47 71 48 72 49 73 49 74 48 75 47 72 50 76 51 77 52 78 52 79 51 73 50 77 53 80 54 81 55 82 55 83 54 78 53 84 56 85 57 81 58 82 58 86 57 87 56 85 59 88 60 89 61 90 61 91 60 86 59 92 62 42 63 93 64 94 64 47 63 95 62 92 65 43 66 42 67 47 67 46 66 95 65 43 68 48 69 44 70 45 70 51 69 46 68 48 71 96 72 49 73 50 73 97 72 51 71 59 74 52 75 54 76 55 76 57 75 60 74 62 77 58 78 59 79 60 79 61 78 66 77 40 80 68 81 64 82 65 82 69 81 41 80 71 83 76 84 72 85 73 85 79 84 74 83 76 86 80 87 77 88 78 88 83 87 79 86 80 89 84 90 81 91 82 91 87 90 83 89 84 92 88 93 85 94 86 94 91 93 87 92 88 95 98 96 89 97 90 97 99 96 91 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID548\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID549\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID553\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID554\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID558\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID558\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID555\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID559\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1164499499977552 0.9514072021990337 0.2850679651404685 -0.1088253784222441 0.9474097604849766 0.3009514624471104 -0.1152785401318226 0.9514539780096277 0.2853877816493387 0.1152785401318226 -0.9514539780096277 -0.2853877816493387 0.1088253784222441 -0.9474097604849766 -0.3009514624471104 0.1164499499977552 -0.9514072021990337 -0.2850679651404685 -0.1108158709414702 0.9479756505698795 0.2984325864815992 0.1108158709414702 -0.9479756505698795 -0.2984325864815992 -0.1170020873176061 0.9430265699053393 0.3114665311327904 0.1170020873176061 -0.9430265699053393 -0.3114665311327904 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211732142097103 0.9438073403036035 0.3074813108908012 0.1211732142097103 -0.9438073403036035 -0.3074813108908012 -0.1269033028027753 0.9278449706028746 0.3507125065701218 -0.1289786499144217 0.9215964103368728 0.3660936551218056 -0.1321716117428985 0.9230345567260386 0.3613002520603185 0.1321716117428985 -0.9230345567260386 -0.3613002520603185 0.1289786499144217 -0.9215964103368728 -0.3660936551218056 0.1269033028027753 -0.9278449706028746 -0.3507125065701218 -0.1318868020555722 0.9175152480092108 0.3751954705405586 -0.1365916059617619 0.9197763476074805 0.3679051556619317 0.1365916059617619 -0.9197763476074805 -0.3679051556619317 0.1318868020555722 -0.9175152480092108 -0.3751954705405586 -0.5580352589138925 0.686896283790861 0.4655858085500564 -0.5451072798952581 0.6795683929083647 0.4909631888086266 -0.5582998943323946 0.6849160643720522 0.4681786120206002 0.5582998943323946 -0.6849160643720522 -0.4681786120206002 0.5451072798952581 -0.6795683929083647 -0.4909631888086266 0.5580352589138925 -0.686896283790861 -0.4655858085500564 -0.497074599178697 0.7227721921072363 0.4801220690281148 -0.5144099610105722 0.7171316315973716 0.4702176251222334 0.5144099610105722 -0.7171316315973716 -0.4702176251222334 0.497074599178697 -0.7227721921072363 -0.4801220690281148 -0.352403313346486 0.7560131466980314 0.5515940778889484 -0.3064402809272837 0.7615293823458688 0.5711106320575088 0.3064402809272837 -0.7615293823458688 -0.5711106320575088 0.352403313346486 -0.7560131466980314 -0.5515940778889484 -0.4568215763294453 0.8856767481496878 -0.08301051250820768 -0.4286481079664477 0.8665788463267886 -0.2555423695509543 -0.4540888561829713 0.8846296580586545 -0.1059890502526975 0.4540888561829713 -0.8846296580586545 0.1059890502526975 0.4286481079664477 -0.8665788463267886 0.2555423695509543 0.4568215763294453 -0.8856767481496878 0.08301051250820768 -0.4574195148530338 0.8755517285042376 0.1554881286299919 -0.4610442893976508 0.8752815563959685 0.1460149315887465 0.4610442893976508 -0.8752815563959685 -0.1460149315887465 0.4574195148530338 -0.8755517285042376 -0.1554881286299919 -0.5040953384354201 0.8293748738257591 0.2408842220532205 -0.4986342763500318 0.8325237471962924 0.2413877975439595 0.4986342763500318 -0.8325237471962924 -0.2413877975439595 0.5040953384354201 -0.8293748738257591 -0.2408842220532205 -0.5535993933396806 0.7852192614320004 0.2774138121473434 -0.5497405090277223 0.7887818631232486 0.2749700804483234 0.5497405090277223 -0.7887818631232486 -0.2749700804483234 0.5535993933396806 -0.7852192614320004 -0.2774138121473434 -0.6327739567192011 0.7235964141618628 0.2756906765018007 -0.6307142225357303 0.7251185372018276 0.2764103407932322 0.6307142225357303 -0.7251185372018276 -0.2764103407932322 0.6327739567192011 -0.7235964141618628 -0.2756906765018007 -0.1241004601015495 0.9359706713431454 0.329481377604328 -0.1257158798169777 0.9362722954747478 0.3280086984948568 0.1257158798169777 -0.9362722954747478 -0.3280086984948568 0.1241004601015495 -0.9359706713431454 -0.329481377604328 -0.1260584581940911 0.9277432077180657 0.3512859314728144 0.1260584581940911 -0.9277432077180657 -0.3512859314728144 -0.5411915379110214 0.6808183023324969 0.4935566416355883 0.5411915379110214 -0.6808183023324969 -0.4935566416355883 -0.4272108780820152 0.8674072480996509 -0.2551382597584773 0.4272108780820152 -0.8674072480996509 0.2551382597584773</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID559\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID557\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID560\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">4.624208775236756 10.25279109822444 4.483294934126929 7.075747942042431 5.617378929991789 10.19781422708152 5.588996955066634 10.20763462219114 4.464061036837125 7.083520870205009 5.458721422938665 7.083520870205004 5.458721422938665 7.076423884248994 4.464061036837125 7.076423884248999 4.421346952999289 6.140815188881417 4.158114993700223 9.82002950589921 3.593575840268438 6.694277314763352 4.987579839267953 9.572531168459182 3.010244459204613 6.827506162532067 3.2495779390001 5.834534961886451 3.035846245815374 5.174927108690105 2.975650367709245 4.577486397015233 2.633905235931875 5.90973500068239 2.765668784803665 3.88175977042276 2.031777497158823 3.008396156954226 2.370486083393128 5.273218044780597 1.862425550676504 4.207418866483772 1.671278059369284 2.609907015700215 1.391990961728664 3.230435375675429 1.166188366418925 2.786350440244582 3.10435390468914 4.237025474007778 5.487502565849463 7.063677282062665 4.445669499516969 6.131139493031489 5.440259090957746 6.100053721609197 5.359399117465306 4.250949577599662 4.296992243910657 3.223309561720638 5.293941409287112 3.207493381871648 5.298962164022343 3.183399341581381 4.268933211202332 2.737661070040306 5.265793053665141 2.705818470045893 5.257114503965267 1.984286605816789 5.026294682284743 1.530141409702067 5.415796362687616 1.916808604102276 5.797934195308944 3.14048579679244 5.370891361201542 2.148913571710389 5.959649671694621 3.092759185175174 6.100274528703595 3.920387757089989 5.936906742911044 3.908127033707534 5.810472141374266 3.475336991400121 5.937866076838642 4.353177406087491 5.995585169795275 4.000895026903539 6.105118350408258 4.344603273888446 6.137981372295337 5.179637239087242 5.970701324597152 5.179040319610356 5.942823095099554 4.580127261937448 6.087918494432243 5.725176464399121 5.978424246796603 5.049948518067148 6.256494040726642 5.700328114675888 6.280019180205057 6.487347366001216 6.084814463887035 5.599199516900355 6.450770346717195 6.445144142728336 7.160276736564839 9.280524494546649 6.242625006838358 6.286231003209693 7.341713869329332 9.230007304171149 5.452393926001093 6.09104426690505 4.423201973780691 5.468860483384689 5.417699803672306 5.422201727503866 5.422292833750023 5.396900100893685 4.359547899167656 4.307272427779807 5.353987874597794 4.259895192131318 4.427849072468621 5.444266645087963 4.446466439651513 6.127255214550647 4.413290633479596 5.472425483488996 5.441051096828423 6.096071898312635 4.360018074793429 4.302764210820874 4.294045878582681 3.226357187596779 5.354449558780775 4.25527680367496 4.297427948320241 3.201644465293737 4.265866408531684 2.73773186676205 5.294372291942167 3.185641304488297 5.908260563923147 3.034311935547308 5.289309405852778 2.102497103108806 5.44874766786911 2.036131675611467 5.455634220373443 1.92359810915547 5.071713689974774 1.533491951675666 5.238326230219618 1.487875929105176 6.157026842955437 3.572135238052842 5.799683556714631 3.158588099668047 5.961466416325745 3.111003021527154 6.102338909262918 4.338121338358671 5.991977498616147 3.994577086405462 6.155552762072252 4.004986074229297 6.13932621225063 5.17824259034208 5.943923440480776 4.578781900045646 6.111197565143103 4.570475749670344 6.23799435261363 5.743683457483806 5.970467508847646 5.090572949560249 6.137747467825764 5.091185061900924 6.439857234582204 6.489474903673819 6.089209544512898 5.639527272863173 6.257702125498454 5.614333098042479 7.272565028641802 9.334630861843838 6.279722914979196 6.367584550843858 6.450219087665467 6.324748101400834</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID560\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID556\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID554\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID555\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 6 6 1 7 8 8 9 8 4 7 7 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 15 14 13 12 16 15 16 15 13 12 17 16 16 15 17 16 18 17 18 17 17 16 19 18 19 18 17 16 20 19 19 18 20 19 21 20 19 18 21 20 22 21 22 21 21 20 23 22 22 21 23 22 24 23 18 17 25 24 16 15 26 15 27 24 28 17 29 23 30 22 31 21 30 22 32 20 31 21 31 21 32 20 33 18 32 20 34 19 33 18 34 19 35 16 33 18 33 18 35 16 28 17 28 17 35 16 26 15 35 16 36 12 26 15 26 15 36 12 37 14 37 14 36 12 38 13 38 13 36 12 39 10 36 12 40 9 39 10 41 11 39 10 40 9 6 25 8 26 42 27 43 27 9 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 46 31 50 32 51 33 52 33 53 32 47 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 54 38 61 39 62 39 59 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 75 50 79 51 80 51 76 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 94 62 44 63 94 62 91 61 90 64 93 64 92 61 95 62 49 63 95 62 92 61 8 65 90 66 42 67 43 67 93 66 9 65 94 68 45 69 44 70 49 70 48 69 95 68 45 71 50 72 46 73 47 73 53 72 48 71 61 74 54 75 56 76 57 76 59 75 62 74 56 77 55 78 96 79 97 79 58 78 57 77 64 80 60 81 61 82 62 82 63 81 67 80 70 83 69 84 98 85 99 85 72 84 71 83 74 86 68 87 70 88 71 88 73 87 77 86 79 89 75 90 74 91 77 91 76 90 80 89 83 92 78 93 79 94 80 94 81 93 84 92 87 95 82 96 83 97 84 97 85 96 88 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID556\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID557\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID561\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID562\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID566\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID566\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID563\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID567\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6631686390966892 -0.5040032000643614 0.5533426880727064 -0.6729749463518688 -0.637361758729642 0.3753327991153409 -0.665978872098829 -0.4946710441241405 0.5583660985617809 0.665978872098829 0.4946710441241405 -0.5583660985617809 0.6729749463518688 0.637361758729642 -0.3753327991153409 0.6631686390966892 0.5040032000643614 -0.5533426880727064 -0.6144927450388785 -0.4648298128754873 0.6374416925152632 -0.6113023930812731 -0.4665479271234981 0.6392514496736599 0.6113023930812731 0.4665479271234981 -0.6392514496736599 0.6144927450388785 0.4648298128754873 -0.6374416925152632 -0.6144856224526448 0.02115082100305797 -0.788644446230291 -0.6629772102952537 -0.05946182801509716 -0.7462744197935675 -0.6113024351803775 0.02089648161452121 -0.7911211473590341 0.6113024351803775 -0.02089648161452121 0.7911211473590341 0.6629772102952537 0.05946182801509716 0.7462744197935675 0.6144856224526448 -0.02115082100305797 0.788644446230291 -0.6657964087760006 -0.04905406275857674 -0.7445192012217402 -0.6729865574698508 -0.2722723663025976 -0.6877185848970954 0.6729865574698508 0.2722723663025976 0.6877185848970954 0.6657964087760006 0.04905406275857674 0.7445192012217402 -0.6701219898639051 -0.2700944235726152 -0.6913649695029515 -0.6289126479749136 -0.4316287370285187 -0.6466571847496542 0.6289126479749136 0.4316287370285187 0.6466571847496542 0.6701219898639051 0.2700944235726152 0.6913649695029515 -0.6585492725804401 -0.7117353213657445 -0.2444293106486486 -0.6193536905515095 -0.6949069317223108 -0.3653838560261096 -0.625235720980833 -0.6900477813844846 -0.3645742072828637 0.625235720980833 0.6900477813844846 0.3645742072828637 0.6193536905515095 0.6949069317223108 0.3653838560261096 0.6585492725804401 0.7117353213657445 0.2444293106486486 -0.6252889641002037 -0.7683994078132589 -0.1362940257191311 -0.6194174598878585 -0.7727236736317268 -0.1386367000298329 0.6194174598878585 0.7727236736317268 0.1386367000298329 0.6252889641002037 0.7683994078132589 0.1362940257191311 -0.6701143216290043 -0.6378674916840043 0.3795679899576043 -0.6289491677379813 -0.7378166084535101 0.2450501921889897 0.6289491677379813 0.7378166084535101 -0.2450501921889897 0.6701143216290043 0.6378674916840043 -0.3795679899576043 -0.6220235325541719 -0.4367230682693095 -0.6498920576451671 0.6220235325541719 0.4367230682693095 0.6498920576451671 -0.66322861238516 -0.7078364633944363 -0.2430953492004979 0.66322861238516 0.7078364633944363 0.2430953492004979 -0.6220739496306955 -0.7438120858740276 0.2444740928986038 0.6220739496306955 0.7438120858740276 -0.2444740928986038</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID567\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID565\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID568\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">-7.899110943071706 3.579476892421579 -8.214175023921374 3.499343108218881 -8.021211049481213 2.979020818746164 -8.759556250140577 4.335206239657886 -9.064802010625483 4.197342553950783 -11.08282841508071 5.669081998703718 -11.2648379224095 5.469276533528866 -7.825205836228406 2.14481334522609 -7.633701656418383 2.984495669372309 -8.138397114707948 2.229419222292963 -8.32989678897887 1.389732320018504 -8.631364655027486 1.58133806218634 -9.003990750986796 1.048556618282334 -9.189994418622993 1.264051624233875 -10.27307042155825 0.8681266778283273 -10.40627893432769 1.124434441577344 -13.15255137381423 0.9279589001163017 -13.1400950603756 1.173564403059267 -9.479935146563065 4.69355806947108 -8.826029735810842 3.819095263127729 -9.293499526711592 4.817014898978647 -11.27238326129256 6.122746934237442 -11.4451814866472 6.004559867052301 -9.598333715416914 4.269996002902563 -13.01122109678588 3.368945949801105 -10.11869071105481 3.450892066657108 -12.99649077872279 3.548711561631994 -10.9099599054405 1.675370038626291 -9.691000544009365 2.135289745490901 -10.93441203049134 1.86609666716912 -9.948650378751601 0.3300733873617702 -9.807669465111511 0.1722143048301494 -9.373139815182823 0.7689770988787354 -8.44894854732777 1.148049050310268 -8.784749024975916 0.3368814101118945 -8.577158506658666 0.2520704532656712 -7.929857688637407 2.612187149318454 -8.163454103892477 2.60234989713821 -8.283231792898336 1.754479953103737 -8.347904821053195 4.082333036170931 -8.575064803892623 4.009635864995857 -8.393267123014773 3.395516742139427 -11.4967703490366 5.776114209361791 -9.712549747783164 3.988124977535597 -9.538143212337962 4.122019508445817 -9.336631246940229 4.75423905497862 -8.857708853722354 3.759685808930915 -8.635265013996062 3.840908182472945 -12.99262703403099 3.273043651450185 -10.11874372708642 3.156863270877688 -10.099789347737 3.347976657609713 -9.576302614795329 2.006517442139522 -9.664307303095521 2.186591215072741 -10.88782026707182 1.734216017891711 -9.120028776210594 0.3225903730954203 -9.313113161111691 0.4264642055287746 -9.715984028727405 -0.1838898453009026 -8.597687662062889 1.298337143620016 -8.748456669163948 0.4045346212719758 -8.362142656158987 1.254366929361164 -8.171197827192739 4.170460074055694 -8.229032362201163 3.484223882823618 -7.995450381775688 3.494271011514753 -8.079339290991934 2.696767466467675 -8.439711847109324 1.84086418270131 -8.20339914665017 1.799521614731336</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID568\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID564\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID562\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID563\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"64\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 0 0 7 7 8 8 7 7 0 0 9 9 7 7 9 9 10 10 9 9 0 0 2 2 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 18 17 19 15 20 16 20 16 19 15 21 14 19 15 22 13 21 14 21 14 22 13 23 12 22 13 24 11 23 12 23 12 24 11 25 10 24 11 26 9 25 10 27 2 28 0 26 9 25 10 26 9 29 7 26 9 28 0 29 7 30 8 29 7 28 0 31 6 32 5 33 4 32 5 34 3 33 4 33 4 34 3 35 1 34 3 28 0 35 1 27 2 35 1 28 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 36 23 41 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 47 29 50 29 54 28 55 27 53 30 56 31 57 32 58 32 59 31 54 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 60 38 65 38 68 37 69 36 70 39 37 40 71 41 72 41 40 40 73 39 42 42 36 43 38 44 39 44 41 43 45 42 38 45 37 46 70 47 73 47 40 46 39 45 46 48 52 49 47 50 50 50 55 49 51 48 56 51 53 52 52 53 55 53 54 52 59 51 74 54 57 55 56 56 59 56 58 55 75 54 60 57 62 58 76 59 77 59 63 58 65 57 70 60 71 61 78 62 79 62 72 61 73 60 66 63 60 64 76 65 77 65 65 64 69 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID564\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID565\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID569\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID570\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID574\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.36399123050046 -0.05397436236353959</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID574\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID571\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID575\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1164223673367788 -0.03939636620354328 0.9924181370338092 -0.1152576241861024 -0.03911071598773939 0.9925653791876389 -0.1088382594273443 -0.0230925907380549 0.9937912082212393 0.1088382594273443 0.0230925907380549 -0.9937912082212393 0.1152576241861024 0.03911071598773939 -0.9925653791876389 0.1164223673367788 0.03939636620354328 -0.9924181370338092 -0.1108273234566798 -0.02565555069468248 0.9935084786220906 0.1108273234566798 0.02565555069468248 -0.9935084786220906 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170010640450718 -0.01171259707753706 0.993062720114908 0.1170010640450718 0.01171259707753706 -0.993062720114908 -0.3063605024253654 0.292841831319583 0.9057521208272551 -0.3523453743815874 0.2761690730154793 0.8941942631563176 -0.49707423312389 0.2193373097837861 0.8395286482908776 0.49707423312389 -0.2193373097837861 -0.8395286482908776 0.3523453743815874 -0.2761690730154793 -0.8941942631563176 0.3063605024253654 -0.292841831319583 -0.9057521208272551 -0.5580248035340664 0.2172606952515568 0.8008783359159973 -0.514413700169338 0.2117991293092924 0.830975134346339 0.514413700169338 -0.2117991293092924 -0.830975134346339 0.5580248035340664 -0.2172606952515568 -0.8008783359159973 -0.5582941772828572 0.2203572971939314 0.7998439055124711 -0.545145087248696 0.2436486159674788 0.8021547143698301 0.545145087248696 -0.2436486159674788 -0.8021547143698301 0.5582941772828572 -0.2203572971939314 -0.7998439055124711 -0.131888714653345 0.05687624445573066 0.9896314767446013 -0.1321734375085311 0.04191912395636385 0.9903398252437945 -0.1366090766113033 0.0492215304934492 0.9894014357798807 0.1366090766113033 -0.0492215304934492 -0.9894014357798807 0.1321734375085311 -0.04191912395636385 -0.9903398252437945 0.131888714653345 -0.05687624445573066 -0.9896314767446013 -0.1289755249516954 0.04693082498186052 0.9905366281112257 -0.1269026228341467 0.03033545622924269 0.9914512012263529 0.1269026228341467 -0.03033545622924269 -0.9914512012263529 0.1289755249516954 -0.04693082498186052 -0.9905366281112257 -0.126060444224836 0.03090911601848133 0.9915409174354799 -0.1257051481658395 0.006141985696806098 0.9920486337555757 -0.124092777366998 0.0076289036136885 0.992241292446045 0.124092777366998 -0.0076289036136885 -0.992241292446045 0.126060444224836 -0.03090911601848133 -0.9915409174354799 0.1257051481658395 -0.006141985696806098 -0.9920486337555757 -0.121164189425585 -0.01572761942446628 0.9925078746227056 0.121164189425585 0.01572761942446628 -0.9925078746227056 -0.5535966397540385 0.007327883701034462 0.8327527019310723 -0.6328191074081528 0.02571473448560696 0.7738725539321597 -0.6307579737542808 0.02590113406437414 0.7755472324749624 0.6307579737542808 -0.02590113406437414 -0.7755472324749624 0.6328191074081528 -0.02571473448560696 -0.7738725539321597 0.5535966397540385 -0.007327883701034462 -0.8327527019310723 -0.50401691956796 -0.04154329558212729 0.8626940937443589 -0.5497328291718073 0.003855971050269636 0.8353316395408592 0.5497328291718073 -0.003855971050269636 -0.8353316395408592 0.50401691956796 0.04154329558212729 -0.8626940937443589 -0.4985583850107261 -0.04209033687011798 0.8658336677894066 -0.4610763548051719 -0.1461813753387184 0.8752368825316127 0.4610763548051719 0.1461813753387184 -0.8752368825316127 0.4985583850107261 0.04209033687011798 -0.8658336677894066 -0.4574584754158474 -0.1372954494769191 0.8785679841783102 -0.4568954263623595 -0.3661495419449712 0.8106670600824024 0.4568954263623595 0.3661495419449712 -0.8106670600824024 0.4574584754158474 0.1372954494769191 -0.8785679841783102 -0.4541605407154716 -0.3875438698506286 0.8022144053794031 -0.4286977599895537 -0.5231200390841958 0.736589203890804 0.4286977599895537 0.5231200390841958 -0.736589203890804 0.4541605407154716 0.3875438698506286 -0.8022144053794031 -0.4272529523562543 -0.5230063251151536 0.7375088464502692 0.4272529523562543 0.5230063251151536 -0.7375088464502692 -0.5412401970068317 0.2456900208751192 0.8041737764851509 0.5412401970068317 -0.2456900208751192 -0.8041737764851509</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID575\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID573\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID576\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">-13.80735445879598 0.2458649066213103 -14.09510292357247 -0.5039355294692868 -9.982481491239387 -0.7801007211882352 -9.988301163081676 -0.7356641740735505 -14.09879580861296 -0.4405539083059194 -10.34526016737302 -1.466008715794491 -3.709288218786411 0.08183865699999136 -4.257382154934284 -0.4900517056751142 -3.661200976693986 -0.3512310434882693 -4.316527116072848 0.05807392568797635 -5.545750788810404 -0.7523932208971403 -5.643938497996714 0.02538830541298317 -6.082881246769018 -0.8890069299183254 -7.090320138584049 -0.006447222908070464 -6.450420964679379 -0.6826635284399174 -7.188240519124049 -0.5334174714432312 -7.941139361618053 0.004288303168351604 -8.050713318734761 -0.478223336087835 -9.166790892866176 0.02237652469014133 -9.196091163788671 -0.4549016494423948 -13.13740525360347 0.1403214759947992 -13.10922761281063 -0.5571905098427091 -9.444849024834038 -2.637915891572029 -9.56365659142571 -3.414782035487321 -8.25892496550161 -2.716294787433218 -0.8383862270638492 -6.024387405365547 -0.760980155205736 -6.138226240003666 -0.4501075387385644 -5.702039180101661 -1.931797432665722 -4.455539334599414 -3.11972454521867 -4.927496814587837 -3.036946117474684 -5.046749768110493 -1.942059996843278 -4.288237917025894 -1.840201626763001 -4.405347099302408 -1.39198761903897 -4.060249812509751 -2.072054116570976 -3.996942288506867 -2.315112412340436 -4.901759201329516 -1.743825325723805 -4.738097079607221 -3.210764357994353 -3.909876114437887 -4.29745234114743 -4.921683762233218 -3.006142084263772 -4.677607628037944 -4.63326543236224 -4.104402683678466 -5.817027785622174 -5.11390335315071 -4.404478357282174 -4.86718369880627 -6.045846395112246 -4.351127992404424 -7.574657362153948 -2.511963867763529 -8.526584459177135 -3.206102051772249 -7.68254055900837 -3.291082013018551 -8.486035206263603 -2.245302060931764 -9.850251925139794 -2.869509604712622 -8.639203837906873 -3.01900298997022 -8.979394940552526 -3.648259713923244 -12.88930466061255 -3.809766395600264 -12.8594219210069 -3.959341569141119 -8.247053604057138 -3.436684447776327 -9.391545189087976 -3.394260442828891 -9.376131742660215 -3.534536530901836 -8.688221694559164 -2.944754120167723 -8.7058236215713 -3.078954991981029 -7.8341142891939 -3.053992018602209 -8.706594682299912 -1.318227486458866 -8.793910115866449 -1.430479012716069 -8.040918009984427 -1.609661502807112 -8.080882217779717 0.5073250354274762 -8.204757539203133 0.4184993788204998 -7.846467309198026 0.203731956450229 -7.836967917690922 0.2422817623004304 -8.193916486682584 0.4584273007660447 -7.973663933481603 0.1708422317066539 -3.184266115108013 -4.914833768129049 -3.657392430113825 -5.248806784060694 -3.102673325396043 -5.034591316029415 -2.258730892786211 -4.273571014922622 -3.394592342438381 -4.827589234947812 -2.162892915154069 -4.393783806136414 -1.204920604791744 -4.132968849313659 -1.64240444746631 -4.486484675650029 -1.124263670823358 -4.256400851632963 -1.573574662755514 -4.13323415933467 -2.106744346024158 -4.33304282629061 -1.707878264920318 -5.051978381616294 -4.376892342551905 -4.270486949557792 -4.102647352655998 -5.023934951648005 -3.055364651970826 -3.986730453637497 -7.39868796456141 -2.814896261844453 -8.22936812025759 -2.7654805562517 -8.304432996410977 -3.546277958346702 -8.87990583956584 -3.966989383531663 -12.75388280914387 -4.321676615539797 -8.85003260959982 -4.105813515261139 -8.187762571847973 -3.592890692650113 -9.315494873795004 -3.699917069303213 -8.18877059368268 -3.727801701899872 -7.814820248641656 -3.142791349253691 -8.686391782372066 -3.170572816674207 -7.860413932309075 -3.269408970252542 -8.035881586078531 -1.62343299194266 -8.789396298041625 -1.445615269068238 -8.113196821760255 -1.740424407903711</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID576\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID572\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID570\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID571\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 2 3 1 4 6 5 7 5 4 4 3 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 16 14 15 13 17 15 17 15 15 13 18 16 17 15 18 16 19 17 19 17 18 16 20 18 19 17 20 18 21 19 21 19 20 18 22 20 21 19 22 20 23 21 24 21 25 20 26 19 25 20 27 18 26 19 26 19 27 18 28 17 27 18 29 16 28 17 28 17 29 16 30 15 29 16 31 13 30 15 30 15 31 13 32 14 32 14 31 13 33 12 31 13 34 11 33 12 33 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 2 22 6 23 40 24 41 24 7 23 3 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 44 29 49 30 50 30 45 29 51 28 48 31 52 32 53 33 54 33 55 32 51 31 56 34 57 35 58 36 59 36 60 35 61 34 62 37 63 38 57 39 60 39 64 38 65 37 66 40 67 41 63 42 67 41 66 40 68 43 69 43 70 40 71 41 64 42 71 41 70 40 68 44 72 45 67 46 71 46 73 45 69 44 40 47 6 48 72 49 73 49 7 48 41 47 74 50 75 51 76 52 77 52 78 51 79 50 80 53 74 54 81 55 82 55 79 54 83 53 80 56 84 57 85 58 86 58 87 57 83 56 85 59 88 60 89 61 90 61 91 60 86 59 89 62 92 63 93 64 94 64 95 63 90 62 93 65 92 66 96 67 97 67 95 66 94 65 44 68 43 69 49 70 50 70 46 69 45 68 48 71 49 72 52 73 55 73 50 72 51 71 53 74 52 75 98 76 99 76 55 75 54 74 56 77 62 78 57 79 60 79 65 78 61 77 66 80 63 81 62 82 65 82 64 81 70 80 68 83 40 84 72 85 73 85 41 84 69 83 74 86 76 87 81 88 82 88 77 87 79 86 80 89 81 90 84 91 87 91 82 90 83 89 85 92 84 93 88 94 91 94 87 93 86 92 89 95 88 96 92 97 95 97 91 96 90 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID572\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID573\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID577\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID578\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID582\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID582\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID579\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID583\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1088481568860517 0.5923386087106918 -0.7983026063925831 -0.1152614763458105 0.5789463800012497 -0.8071777258782806 -0.1164251204271865 0.5786308311400867 -0.8072369866325796 0.1164251204271865 -0.5786308311400867 0.8072369866325796 0.1152614763458105 -0.5789463800012497 0.8071777258782806 0.1088481568860517 -0.5923386087106918 0.7983026063925831 -0.1108311632331452 0.590147562033904 -0.7996513667104105 0.1108311632331452 -0.590147562033904 0.7996513667104105 -0.1169877446230861 0.6008761854127825 -0.7907348970494391 0.1169877446230861 -0.6008761854127825 0.7907348970494391 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211500310125118 0.5973661817498072 -0.7927649808659082 0.1211500310125118 -0.5973661817498072 0.7927649808659082 -0.1289733966194932 0.6455983790150909 -0.7527075102438648 -0.1321771951964776 0.641516467688795 -0.7556360306087073 -0.1268970330673193 0.6330602330777329 -0.763630725085285 0.1268970330673193 -0.6330602330777329 0.763630725085285 0.1321771951964776 -0.641516467688795 0.7556360306087073 0.1289733966194932 -0.6455983790150909 0.7527075102438648 -0.1318920760546484 0.6528924852832206 -0.7458792683368364 -0.1366192134527518 0.6467025975280807 -0.7504071833784541 0.1366192134527518 -0.6467025975280807 0.7504071833784541 0.1318920760546484 -0.6528924852832206 0.7458792683368364 -0.5584055108423882 0.6651998527735585 -0.4956737246726797 -0.5581385279990985 0.6633895104200506 -0.4983931590899352 -0.5451959861481726 0.685035348561869 -0.4832058649360955 0.5451959861481726 -0.685035348561869 0.4832058649360955 0.5581385279990985 -0.6633895104200506 0.4983931590899352 0.5584055108423882 -0.6651998527735585 0.4956737246726797 -0.5144129314214905 0.6776483658738426 -0.5255207210137955 -0.4970796441004287 0.6888461887919656 -0.5276388496005341 0.4970796441004287 -0.6888461887919656 0.5276388496005341 0.5144129314214905 -0.6776483658738426 0.5255207210137955 -0.3524751158962745 0.7672119047738485 -0.5358611628464889 -0.3065368645499978 0.7874550645024714 -0.5347426222597793 0.3065368645499978 -0.7874550645024714 0.5347426222597793 0.3524751158962745 -0.7672119047738485 0.5358611628464889 -0.4568675187823961 0.2091268429512146 -0.864602818546687 -0.4286959899151095 0.03977866415051463 -0.9025726597394278 -0.454140017835944 0.1871034341906217 -0.8710620810906903 0.454140017835944 -0.1871034341906217 0.8710620810906903 0.4286959899151095 -0.03977866415051463 0.9025726597394278 0.4568675187823961 -0.2091268429512146 0.864602818546687 -0.4574112545118764 0.4314471465815102 -0.7775784873262276 -0.4610330568129479 0.4223904034843316 -0.7804068602786966 0.4610330568129479 -0.4223904034843316 0.7804068602786966 0.4574112545118764 -0.4314471465815102 0.7775784873262276 -0.5040287169911085 0.4972319905766404 -0.7061978476287568 -0.4985686990456941 0.4987245144832661 -0.7090155929070352 0.4985686990456941 -0.4987245144832661 0.7090155929070352 0.5040287169911085 -0.4972319905766404 0.7061978476287568 -0.5497106232233426 0.5162657272219958 -0.6567251553057397 -0.5535723758972673 0.5174191484113569 -0.6525603799655021 0.5535723758972673 -0.5174191484113569 0.6525603799655021 0.5497106232233426 -0.5162657272219958 0.6567251553057397 -0.6328126226365115 0.4957425846370723 -0.5948003651724295 -0.6307511085987073 0.4969187375520394 -0.5960073886045282 0.6307511085987073 -0.4969187375520394 0.5960073886045282 0.6328126226365115 -0.4957425846370723 0.5948003651724295 -0.1240850473728673 0.6156224677283072 -0.7782106901389768 -0.1257030963027143 0.6143256787305055 -0.7789754116993772 0.1257030963027143 -0.6143256787305055 0.7789754116993772 0.1240850473728673 -0.6156224677283072 0.7782106901389768 -0.1260524294574446 0.6335694907637545 -0.7633482071775848 0.1260524294574446 -0.6335694907637545 0.7633482071775848 -0.5412748879965412 0.687898621088518 -0.4835462570725241 0.5412748879965412 -0.687898621088518 0.4835462570725241 -0.4272470439601668 0.04043528853901111 -0.9032302867309456 0.4272470439601668 -0.04043528853901111 0.9032302867309456</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID583\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID581\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID584\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">2.646808655273745 7.626911531842514 2.986714499689779 10.86290628058702 1.998937623161384 10.76476841980763 2.753392543137154 7.603757279601984 3.73149548145001 7.745943970176235 3.137910672426441 10.83666032021479 2.986360958528956 6.654920534525154 3.799485555325677 7.718958628996464 2.820184296480023 7.581971421901169 -2.95700400690178 2.488800756097747 -2.971172988345912 1.772671627247351 -2.594993336245468 2.091126521667093 -3.76863480279438 3.318475734997433 -3.431737630961593 2.084911934129343 -4.453542058358801 2.75223422874128 -4.08577743896114 3.685864912838015 -4.53685698336594 3.700681803303125 -5.569883206520585 3.476406390468299 -5.235605254682731 3.939530432036485 -5.959241747873955 4.31281594366269 -6.249633121797126 3.879151418789206 -6.88113622380909 4.847979343375632 -7.230760792342645 4.457246732780551 -9.888780236097874 6.819957862866433 -10.45577002727441 6.283216928777442 2.835843568044133 6.696637019396241 3.81895079101609 6.819175129102827 3.625763036746231 7.771438100407487 3.373113844173326 3.843845654733742 4.353287423553801 3.987980441594453 4.147409147623762 5.020072757806616 3.441920088820501 3.382462419447546 4.425017633747888 3.516183683878827 4.329822052382522 3.988576604581577 2.230352107905733 4.329484501746936 2.056359603288195 4.291999654325147 2.288473777971453 3.838233246252393 2.009452657357155 5.389437917116684 1.846819489349988 5.343682783349156 2.335103140462541 4.369785709347631 3.459288365190417 5.567061823306501 3.317376742139041 5.502219060815397 3.432423115070612 5.067446679764254 -4.074900648768324 5.522217060790011 -3.625507904080766 5.488165434978679 -4.027123668961578 5.648598042583979 -0.4737934490769319 6.534086009615941 -0.9192721422585309 7.044197939014103 -1.028756012507091 6.944701516300213 -0.7779385115273918 7.439108605446435 -0.2529975353390784 6.897934716972006 -0.6357437305888969 7.514537810738175 -0.9697804840218809 7.326856963524517 -1.497398853673659 8.118176192147216 -1.653891145271553 8.049854498656151 -4.608304711025181 10.23293734499374 -2.240674467155615 7.779841628900575 -4.443807657891354 10.31154936901565 2.910250464513155 6.064224792957607 3.895902912319825 6.178304156875717 3.75622254964643 6.838662211659464 3.960090801378393 6.133215747935012 3.191931818886059 4.899905221596626 4.178668992404626 5.008016229071481 2.9733499521145 6.025115824772509 2.981756068882562 6.041430594450256 3.836421506115961 6.809938349919037 2.853014213669746 6.688899456137831 3.403561010679153 3.827721629442527 4.186013224173247 5.000603531797977 3.19913319123502 4.893302521149462 3.493767507501942 3.347032692092354 4.38943376548893 3.946035659923494 3.408140364595802 3.806695969447152 1.628068030784827 5.400671769098429 1.994848645956156 4.389698935824643 2.168577740868163 4.427932373500567 2.393635605078873 4.309488781848157 2.442902545374851 3.817638953721654 2.605226202472054 3.872011356930058 1.76553688369938 5.855830345560892 1.832450069184318 5.358546584306009 1.995011165963287 5.404459939837887 -3.582332382251634 5.498604840327278 -3.558007158969994 5.626281209275753 -3.982493890322007 5.661270718905809 -0.5199101826953312 6.531590478244566 -0.4026134045726859 6.625773062040189 -0.9689320567369109 7.039776299560601 0.3219388629227055 6.921678714189059 0.4484293081867797 7.007795171809001 -0.01524134949612947 7.554529442168967 -0.4343023409365476 7.391532441464667 -0.2892066006479271 7.463461634669913 -0.9145523620121765 8.201304268657363 -1.364385652116661 7.987424724987632 -1.205987261730729 8.052971772803227 -3.35620196045869 10.62525094866661</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID584\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID580\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID578\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID579\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 6 7 0 8 5 8 7 7 9 6 10 9 11 10 12 11 11 10 10 9 13 12 11 10 13 12 14 13 14 13 13 12 15 14 15 14 13 12 16 15 15 14 16 15 17 16 15 14 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 18 17 20 19 21 20 21 20 20 19 22 21 21 20 22 21 23 22 23 22 22 21 24 23 23 22 24 23 25 24 26 24 27 23 28 22 27 23 29 21 28 22 28 22 29 21 30 20 29 21 31 19 30 20 30 20 31 19 32 17 31 19 33 18 32 17 33 18 34 16 32 17 32 17 34 16 35 14 34 16 36 15 35 14 36 15 37 12 35 14 35 14 37 12 38 13 38 13 37 12 39 10 37 12 40 9 39 10 41 11 39 10 40 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 55 39 58 39 62 38 63 37 64 40 65 41 61 42 62 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 68 46 74 47 75 48 76 48 77 47 73 46 78 49 75 50 79 51 80 51 76 50 81 49 78 52 82 53 83 54 84 54 85 53 81 52 86 55 83 56 87 57 88 57 84 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 94 62 46 63 94 62 91 61 90 64 93 64 92 61 95 62 47 63 95 62 92 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 60 74 55 75 54 76 59 76 58 75 63 74 54 77 56 78 96 79 97 79 57 78 59 77 64 80 61 81 60 82 63 82 62 81 67 80 69 83 98 84 70 85 71 85 99 84 72 83 68 86 70 87 74 88 77 88 71 87 73 86 75 89 74 90 79 91 80 91 77 90 76 89 78 92 79 93 82 94 85 94 80 93 81 92 83 95 82 96 87 97 88 97 85 96 84 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID580\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID581\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID585\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID586\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID590\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.5298591187803394 0.3053530486319291 0.657905410261265 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID590\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID587\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID591\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID591\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID589\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID592\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"120\">-6.107060972638583 10.3510451214439 -6.227565367325356 8.494179944032663 -5.98671614912405 9.138399969870253 -6.540672166948984 11.6205228613906 -6.901978847139394 10.23735513419642 -6.853807126191143 9.252082277676843 -7.239162120697529 13.30684774139463 -7.335486789514798 11.50684232576269 -10.06778605077227 19.04794340165244 -7.985814033393162 13.15527448152569 -10.82793655825754 18.80162710738276 -4.083905012052296 5.898375335431962 -4.306234587730349 4.811018489749948 -3.385471377541194 5.140468275977997 -5.553161274050962 7.679445612741617 -5.041763826525845 4.277439417764588 -5.726108265179133 5.043303854792981 -7.390247861223824 6.714910200247886 -7.717772010128141 8.570258983447072 -8.150745295211088 7.481316037858777 -8.858556458189856 8.193395738456855 -9.003512412931656 7.511347968262671 -10.02743369272711 8.549250986811536 -10.42232541141175 7.994811895109255 -11.41290570274134 9.284142171201117 -11.80775011326652 8.729689492795748 -13.18353596539283 10.30339123710937 -13.60830466398959 9.797102239768163 -19.04886463418979 14.25191163615645 -19.59188570890547 13.76630396384998 -9.795942854452735 6.88315198192499 -9.524432317094897 7.125955818078223 -6.804152331994795 4.898551119884082 -6.591767982696415 5.151695618554686 -5.903875056633261 4.364844746397874 -5.706452851370669 4.642071085600558 -5.211162705705876 3.997405947554627 -5.013716846363556 4.274625493405768 -4.501756206465828 3.755673984131335 -4.429278229094928 4.096697869228428 -4.075372647605544 3.740658018929389 -3.858886005064071 4.285129491723536 -3.695123930611912 3.357455100123943 -3.426903563095571 4.626041138838422 -3.270336083474492 5.8102614306953 -3.113782683662678 4.247089972016331 -2.863054132589566 2.521651927396491 -2.776580637025481 3.839722806370808 -2.520881913262922 2.138719708882294 -2.153117293865174 2.405509244874974 -2.041952506026148 2.949187667715981 -1.692735688770597 2.570234137988999 -5.413968279128769 9.400813553691382 -5.033893025386136 9.52397170082622 -3.992907016696581 6.577637240762844 -3.667743394757399 5.753421162881343 -3.619581060348764 6.653423870697313 -3.450989423569697 5.118677567098211 -3.053530486319291 5.175522560721952 -2.993358074562025 4.569199984935127</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID592\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID588\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID586\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID587\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 4 4 5 5 4 4 3 3 6 6 4 4 6 6 7 7 7 7 6 6 8 8 7 7 8 8 9 9 9 9 8 8 10 10 11 11 12 12 13 13 12 12 11 11 14 14 12 12 14 14 15 15 15 15 14 14 16 16 16 16 14 14 1 1 16 16 1 1 17 17 17 17 1 1 5 5 5 5 1 1 3 3 17 17 5 5 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 23 23 24 24 25 25 25 25 24 24 26 26 25 25 26 26 27 27 27 27 26 26 28 28 27 27 28 28 29 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID588\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID589\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 33 33 35 35 34 34 34 34 35 35 36 36 35 35 37 37 36 36 36 36 37 37 38 38 37 37 39 39 38 38 38 38 39 39 40 40 39 39 41 41 40 40 40 40 41 41 42 42 41 41 43 43 42 42 44 44 45 45 43 43 43 43 45 45 42 42 42 42 45 45 46 46 45 45 47 47 46 46 46 46 47 47 48 48 48 48 47 47 49 49 47 47 50 50 49 49 51 51 49 49 50 50 52 52 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 55 55 56 56 57 57 56 56 44 44 57 57 43 43 57 57 44 44 44 44 58 58 45 45 59 59 45 45 58 58</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID588\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID589\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID593\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID594\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID598\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID598\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID595\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID599\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6658812119562829 0.05557583132515614 -0.7439849047770725 -0.6630700206644244 0.06601587505827476 -0.7456406989538392 -0.672990936518585 0.2791484701318099 -0.6849520647365829 0.672990936518585 -0.2791484701318099 0.6849520647365829 0.6630700206644244 -0.06601587505827476 0.7456406989538392 0.6658812119562829 -0.05557583132515614 0.7439849047770725 -0.6145075341081261 -0.01519103171901108 -0.7887646816888181 -0.6113304972219287 -0.01491894967988539 -0.791234761690131 0.6113304972219287 0.01491894967988539 0.791234761690131 0.6145075341081261 0.01519103171901108 0.7887646816888181 -0.6145579693011508 0.4591343117628982 0.6414937148019891 -0.6630483910174163 0.498855229375798 0.5581310699948852 -0.6113858088080906 0.4608262320043037 0.643309083322156 0.6113858088080906 -0.4608262320043037 -0.643309083322156 0.6630483910174163 -0.498855229375798 -0.5581310699948852 0.6145579693011508 -0.4591343117628982 -0.6414937148019891 -0.6730103961097779 0.633535161008159 0.3816938648898171 -0.6658642050055886 0.4894684515523368 0.563067931449868 0.6658642050055886 -0.4894684515523368 -0.563067931449868 0.6730103961097779 -0.633535161008159 -0.3816938648898171 -0.6701444240931888 0.6340128793903517 0.3859198357482596 -0.6288817366873886 0.7353849506127249 0.2524217416812069 0.6288817366873886 -0.7353849506127249 -0.2524217416812069 0.6701444240931888 -0.6340128793903517 -0.3859198357482596 -0.6252123795686114 0.7697839976649213 -0.1286160074530658 -0.658578304891523 0.7141210938325098 -0.2372881785291209 -0.6193201491348418 0.7741457966357958 -0.1309230248150662 0.6193201491348418 -0.7741457966357958 0.1309230248150662 0.658578304891523 -0.7141210938325098 0.2372881785291209 0.6252123795686114 -0.7697839976649213 0.1286160074530658 -0.6252712636549731 0.6936274305614512 -0.3576546300833142 -0.6193894345161001 0.698494696426414 -0.3584158024892286 0.6193894345161001 -0.698494696426414 0.3584158024892286 0.6252712636549731 -0.6936274305614512 0.3576546300833142 -0.6289250440898284 0.438067046954839 -0.6423009818526467 -0.6701291299022093 0.2769832769238545 -0.6886270496872973 0.6701291299022093 -0.2769832769238545 0.6886270496872973 0.6289250440898284 -0.438067046954839 0.6423009818526467 -0.6219814506780375 0.7414065190456863 0.2519036492967151 0.6219814506780375 -0.7414065190456863 -0.2519036492967151 -0.6632653245983359 0.7102034419860702 -0.2359876695435651 0.6632653245983359 -0.7102034419860702 0.2359876695435651 -0.6220409688791525 0.4431898766144704 -0.6454825840426184 0.6220409688791525 -0.4431898766144704 0.6454825840426184</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID599\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID597\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID600\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">11.17320201782601 5.536950720255618 9.132267951340403 4.075553710198706 11.35265838639835 5.335723967790457 8.828758325209945 4.21581308609941 8.272822123002557 3.384285294404218 7.958813840120982 3.46689333538805 8.073268797801365 2.865498302382628 13.17319575342934 1.025474877244218 10.29819330692128 0.7370029567927344 13.18256427081902 0.7797863034262775 10.43461727267754 0.9922419491244857 9.220172518723757 1.141427050559116 9.031436992618183 0.9274041343529934 8.665601494827795 1.463091360543377 8.36173593111768 1.273861371559148 8.18085731407338 2.115010321233234 7.866647783783838 2.032874418182379 7.685815723975792 2.874023367856466 10.95406190306286 1.514596294059031 10.9820680884364 1.705023222924476 9.743740101464573 1.988437824085204 13.08422968449263 3.199757330669627 13.07267779495826 3.379665889560748 10.18916535332233 3.309702731294755 11.36545721424794 6.006842844578951 9.664606296230362 4.161713060886227 11.53679451320826 5.887322116789082 8.87938669524374 3.718691191733911 9.54294143455537 4.58860161283133 9.357925723043625 4.713345186989823 8.394680517829666 3.989110993373233 8.433829724268323 3.302053148008258 8.621195066914398 3.915152656841173 7.959361423291862 2.521603384444761 8.30581624406488 1.662156996532964 8.192850961276159 2.510608965499221 8.468953380353767 1.050766553539041 8.589066946989393 0.1540948178637264 8.797428992253618 0.2377375302496965 9.395660232283182 0.6451734807435667 9.821862682408826 0.04469772784885676 9.9650088203073 0.2013483060752452 13.05993379571968 3.110797586965738 10.16431663537896 3.21133071886602 10.18010204372508 3.02003618013284 9.626254877814432 1.862045396082188 10.93264464736882 1.574955679289271 9.717512492742973 2.041116121749284 9.604226472762715 4.0114184348044 9.776872146541788 3.876144995495381 11.58740893055048 5.655514610796291 8.689895478581324 3.740148740343702 8.911424637990344 3.657371138622741 9.401641036197944 4.648499728985229 8.215118084369612 4.081528994233212 8.033717664007693 3.406265074033831 8.267186516090369 3.395002083835391 8.111839397566158 2.603469864687234 8.228261606106596 1.705594495213734 8.464930288377673 1.745696425622322 9.135802437258771 0.2031367210126086 9.724851614784443 -0.308343230978199 9.330301350185701 0.305373195999198 8.620257114820655 1.19753825098844 8.384287130441004 1.154964469876548 8.762482845796232 0.3028705175705735</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID600\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID596\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID594\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID595\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"64\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 7 7 8 8 9 9 8 8 7 7 10 10 8 8 10 10 11 11 8 8 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 6 6 16 16 6 6 5 5 16 16 5 5 17 17 18 17 19 5 20 16 19 5 21 6 20 16 21 6 22 15 20 16 20 16 22 15 23 14 22 15 24 13 23 14 23 14 24 13 25 12 24 13 26 11 25 12 25 12 26 11 27 8 26 11 28 10 27 8 28 10 29 7 27 8 30 9 27 8 29 7 21 6 19 5 31 4 19 5 32 3 31 4 31 4 32 3 33 1 32 3 34 0 33 1 35 2 33 1 34 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 37 23 40 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 47 28 53 29 54 29 50 28 55 27 56 30 57 31 52 32 55 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 70 39 71 40 38 41 39 41 72 40 73 39 42 42 37 43 36 44 41 44 40 43 45 42 71 45 36 46 38 47 39 47 41 46 72 45 53 48 47 49 46 50 51 50 50 49 54 48 56 51 52 52 53 53 54 53 55 52 59 51 56 54 74 55 57 56 58 56 75 55 59 54 60 57 76 58 61 59 64 59 77 58 65 57 78 60 71 61 70 62 73 62 72 61 79 60 61 63 76 64 66 65 69 65 77 64 64 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID596\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID597\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID601\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID602\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID606\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID606\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID603\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID607\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1088540514781176 -0.584331089942785 -0.8041815546274835 -0.1164339797874606 -0.5705294778991202 -0.8129816991784074 -0.1152698562505582 -0.5708457404589754 -0.8129255813663509 0.1152698562505582 0.5708457404589754 0.8129255813663509 0.1164339797874606 0.5705294778991202 0.8129816991784074 0.1088540514781176 0.584331089942785 0.8041815546274835 -0.1108435503727157 -0.5821217352458851 -0.8055110133915557 0.1108435503727157 0.5821217352458851 0.8055110133915557 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170176206764311 -0.5929274844702175 -0.7967081489548396 0.1170176206764311 0.5929274844702175 0.7967081489548396 -0.5144163086132454 -0.6723630224863056 -0.5322629307267247 -0.5581062161838647 -0.6583968034238775 -0.505006040259074 -0.4970751144160029 -0.683545041602595 -0.5344927564792851 0.4970751144160029 0.683545041602595 0.5344927564792851 0.5581062161838647 0.6583968034238775 0.505006040259074 0.5144163086132454 0.6723630224863056 0.5322629307267247 -0.5583798869887992 -0.6602297154995238 -0.5023033192980051 -0.5452373970371485 -0.6801451362856548 -0.4900191572368603 0.5452373970371485 0.6801451362856548 0.4900191572368603 0.5583798869887992 0.6602297154995238 0.5023033192980051 -0.1318903393557705 -0.6453922059420187 -0.7523787868447079 -0.1321750213771143 -0.6339255398774245 -0.7620158617870596 -0.1366232935947715 -0.6391496733784974 -0.7568498996944356 0.1366232935947715 0.6391496733784974 0.7568498996944356 0.1321750213771143 0.6339255398774245 0.7620158617870596 0.1318903393557705 0.6453922059420187 0.7523787868447079 -0.1289732790216521 -0.6380369665418767 -0.7591276062852959 -0.1269071717687836 -0.6253899701404045 -0.7699233435878096 0.1269071717687836 0.6253899701404045 0.7699233435878096 0.1289732790216521 0.6380369665418767 0.7591276062852959 -0.1241010714283334 -0.6078068716321187 -0.7843275660507647 -0.1257095939325673 -0.6065122404802681 -0.7850732450803013 -0.1260674500275698 -0.6258988106438125 -0.7696477615625263 0.1260674500275698 0.6258988106438125 0.7696477615625263 0.1241010714283334 0.6078068716321187 0.7843275660507647 0.1257095939325673 0.6065122404802681 0.7850732450803013 -0.1211769958232875 -0.5894025390301889 -0.7986994319942953 0.1211769958232875 0.5894025390301889 0.7986994319942953 -0.5535679708898417 -0.5108673680079583 -0.6577058870874768 -0.6327553060025942 -0.489798292648837 -0.5997652501136153 -0.630695063396688 -0.4909614247884672 -0.6009830416714983 0.630695063396688 0.4909614247884672 0.6009830416714983 0.6327553060025942 0.489798292648837 0.5997652501136153 0.5535679708898417 0.5108673680079583 0.6577058870874768 -0.5040208671260086 -0.4901460352175064 -0.7111398102076026 -0.5497067787296889 -0.5096714306261669 -0.6618591165966555 0.5497067787296889 0.5096714306261669 0.6618591165966555 0.5040208671260086 0.4901460352175064 0.7111398102076026 -0.4985571397014289 -0.4916144428633812 -0.7139720008661804 -0.4609719154458496 -0.4145896076660237 -0.7846147783374444 0.4609719154458496 0.4145896076660237 0.7846147783374444 0.4985571397014289 0.4916144428633812 0.7139720008661804 -0.4568505475577015 -0.2004861491589987 -0.8666561493416083 -0.4573491576022501 -0.4236797699590816 -0.7818741590357953 0.4573491576022501 0.4236797699590816 0.7818741590357953 0.4568505475577015 0.2004861491589987 0.8666561493416083 -0.4286900949630499 -0.03074629865061099 -0.9029282737847225 -0.4541268962482883 -0.1783764702348078 -0.8728978158813705 0.4541268962482883 0.1783764702348078 0.8728978158813705 0.4286900949630499 0.03074629865061099 0.9029282737847225 -0.3523735052985816 -0.7618774628075067 -0.5434847232715808 -0.3063976859348787 -0.7821413631807209 -0.5425636792631395 0.3063976859348787 0.7821413631807209 0.5425636792631395 0.3523735052985816 0.7618774628075067 0.5434847232715808 -0.5413340802838006 -0.6829922424325828 -0.4903865927002937 0.5413340802838006 0.6829922424325828 0.4903865927002937 -0.4272481797681519 -0.03139308917336886 -0.9035892135461523 0.4272481797681519 0.03139308917336886 0.9035892135461523</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID607\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID605\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID608\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">-2.610060487118674 7.619753708788435 -1.948631865258435 10.75586386611057 -2.935981608932602 10.85663512075862 -2.719262994468259 7.596384747860257 -3.090772258404805 10.83022540427713 -3.69679133168683 7.740997122795123 9.993834386692768 6.697166556715506 7.305900416866997 4.355477009968277 10.55396224199972 6.155992813056084 6.961259725370663 4.748945569060884 6.317450494552758 3.785131728647392 6.032602059962001 4.221058734951406 5.632646490923408 3.387754924869541 5.304258404919437 3.853486727345086 4.50713919916442 2.672402010274958 4.602543987106065 3.620146029906336 4.151239165752258 3.608874678226097 3.476915045794671 2.013146968314747 3.829487363207134 3.243997859007959 3.007344018484941 2.420750867493745 3.012389283490861 1.704548783954941 2.640320935711225 2.025948153228608 -2.788788460198426 7.572962376067476 -3.767581555079931 7.71218000849874 -2.958384683729662 6.646322239064626 -1.949330144772716 5.368941012682137 -2.284182369127702 4.351127936247142 -1.787116026856405 5.322273542286981 -2.178006254645743 4.308764307005029 -2.240688841859411 3.817870637244726 -2.004373405150739 4.27027736655339 -3.424324889167503 3.37281876876143 -4.309776294106773 3.981152767028634 -4.406878702077174 3.508993181485741 -3.353896149640327 3.834780310909004 -4.123486029284101 5.012918456920043 -4.33348685434635 3.981344992154811 -4.15522701980411 5.000954905113102 -2.945912001956207 6.015132060051506 -3.932224531327764 6.125626458280218 -3.168915308745923 4.890452789232343 -2.880014071898048 6.056684529967771 -3.722631041023821 6.8333627787756 -3.865167419372976 6.173403206929011 -2.803637068433257 6.688943611917154 -3.589002991997068 7.76577639285253 -3.786233442174673 6.814013616893653 2.352155135876836 7.732019785561647 4.750224669518837 10.16676035099951 4.58673566867724 10.24664292795459 1.077703269353097 7.292616194349058 1.771051416478688 8.010154330456691 1.615439914209591 8.079710179245698 0.8917779093368455 7.409005396259467 0.7506151581350007 7.485622764389828 0.3595836739408692 6.872236538923343 0.6025386688846102 6.509881421450357 1.164565261957301 6.91447012137925 1.05683395826347 7.015137815428471 3.803209898733897 5.402796817356368 4.253535901802713 5.428742796817378 4.209437347221686 5.555948874626798 -3.4228971200836 5.548400610587399 -3.398703655180526 5.048706996552484 -3.281343791480293 5.483076573831793 -1.700902869676162 5.834124829345437 -1.934455908459623 5.38406533167012 -1.772317777748014 5.337234730377968 -1.563862617851588 5.377877017135567 -2.113718735031875 4.408380312461595 -1.940368773200062 4.369112149830636 -2.342549230029242 4.289545610607819 -2.558103344791782 3.853272065013154 -2.396266153697702 3.797994575249178 -3.477653760136398 3.336397819512019 -3.390320269200981 3.795864862738408 -4.371090681150245 3.937463004736838 -3.384938017023071 3.81842371163158 -3.176364284525369 4.883517101095137 -4.162826579523441 4.993184227830971 -2.821558507236654 6.680662886123442 -3.804473587643869 6.804173406389755 -2.952987580260624 6.033504265500596 1.47307452581419 7.94934296837219 3.496248995700073 10.57238716409893 1.315460912566759 8.016050776524924 0.538204523295595 7.363180085962341 1.02837778858371 8.169264935007575 0.3940072705090324 7.436216706816778 -0.2216517634023708 6.902275859416785 0.1235323511647279 7.532459053158027 -0.3470360049582089 6.989381151517559 0.6495041291754328 6.506652750037433 1.107371202240202 7.009909940338497 0.5338562939897318 6.602089407485308 3.762660802913122 5.413427654679166 4.167566621199896 5.568730472320866 3.74214220390277 5.54151624829845</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID608\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID604\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID602\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID603\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 2 4 6 5 7 5 3 4 5 3 8 6 9 7 10 8 9 7 8 6 11 9 9 7 11 9 12 10 12 10 11 9 13 11 12 10 13 11 14 12 14 12 13 11 15 13 14 12 15 13 16 14 16 14 15 13 17 15 16 14 17 15 18 16 16 14 18 16 19 17 19 17 18 16 20 18 19 17 20 18 21 19 19 17 21 19 22 20 22 20 21 19 23 21 24 21 25 19 26 20 26 20 25 19 27 17 25 19 28 18 27 17 28 18 29 16 27 17 27 17 29 16 30 14 29 16 31 15 30 14 31 15 32 13 30 14 30 14 32 13 33 12 32 13 34 11 33 12 33 12 34 11 35 10 34 11 36 9 35 10 35 10 36 9 37 7 36 9 38 6 37 7 39 8 37 7 38 6 0 22 6 23 40 24 41 24 7 23 5 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 43 30 46 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 59 35 53 36 56 36 60 35 61 34 59 37 62 38 63 39 62 38 59 37 64 40 65 40 60 37 66 38 67 39 66 38 60 37 62 41 68 42 63 43 67 43 69 42 66 41 40 44 6 45 68 46 69 46 7 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 70 51 77 52 78 52 75 51 79 50 76 53 80 54 81 55 82 55 83 54 79 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 84 60 89 61 90 61 87 60 91 59 92 62 44 63 93 64 94 64 45 63 95 62 92 65 42 66 44 67 45 67 47 66 95 65 42 68 48 69 43 70 46 70 51 69 47 68 48 71 96 72 49 73 50 73 97 72 51 71 52 74 58 75 53 76 56 76 61 75 57 74 58 77 64 78 59 79 60 79 65 78 61 77 40 80 68 81 62 82 66 82 69 81 41 80 70 83 72 84 77 85 78 85 73 84 75 83 76 86 77 87 80 88 83 88 78 87 79 86 81 89 80 90 85 91 86 91 83 90 82 89 84 92 85 93 89 94 90 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID604\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID605\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID609\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID610\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID614\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5473779309113525 1.195018672079414</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID614\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID611\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID615\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID615\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID613\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID616\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"120\">10.18738032658465 19.04794340165245 8.105455617364823 13.15527448152571 10.94755861822705 18.80162710738278 7.358775169589009 13.30684774139464 7.455165168721541 11.50684232576267 7.021610669109959 10.23735513419643 6.660275453839438 11.62052286139061 6.973438948161821 9.252082277676829 6.226729965305786 10.35104512144388 6.34719681383455 8.494179944032666 6.106319436014469 9.138399969870267 19.2668110713613 14.01201653592069 13.76983724756887 9.60023445609569 19.80366406321081 13.52217335660197 13.3515820564935 10.10985633078179 11.95582315006028 8.547050531634294 11.56802765527242 9.104569669858437 10.56113355821253 7.823090735984151 10.17331027926723 8.380616962922931 9.136256855185536 7.350812800878698 8.999992836063413 8.033974680727708 8.283114275883213 7.327495655441081 7.849390818560094 8.493335205535086 7.512957717242513 6.567116406747775 5.827651849983826 4.90867469051484 5.672811493639108 7.679445612741619 5.133601729440363 4.148245525455751 4.203545845101182 5.898375335431982 4.414968261826749 4.748609150477415 3.505102824050252 5.140468275978011 1.752551412025126 2.570234137989006 2.101772922550591 2.949187667715991 2.207484130913374 2.374304575238707 2.566800864720181 2.074122762727876 2.836405746819554 3.839722806370809 2.913825924991913 2.45433734525742 3.173598406917275 4.247089972016333 3.330137726919719 5.810261430695305 3.48671947408091 4.626041138838414 3.756478858621256 3.283558203373887 3.924695409280047 4.246667602767543 4.141557137941606 3.66374782772054 4.499996418031707 4.016987340363854 4.568128427592768 3.675406400439349 5.086655139633613 4.190308481461465 5.280566779106266 3.911545367992075 5.784013827636212 4.552284834929218 5.977911575030141 4.273525265817147 6.675791028246748 5.054928165390897 6.884918623784433 4.800117228047845 9.633405535680648 7.006008267960344 9.901832031605407 6.761086678300985 3.053159718007235 4.569199984935134 3.113364982652893 5.175522560721941 3.51080533455498 5.118677567098216 3.679387584794505 6.65342387069732 3.72758258436077 5.753421162881336 4.052727808682412 6.577637240762856 5.093690163292324 9.523971700826227 5.473779309113525 9.400813553691391</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID616\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID612\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID610\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID611\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 5 5 6 6 7 7 8 8 9 9 6 6 9 9 8 8 10 10 11 11 12 12 13 13 12 12 11 11 14 14 12 12 14 14 15 15 15 15 14 14 16 16 15 15 16 16 17 17 17 17 16 16 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 7 7 23 23 7 7 24 24 24 24 7 7 9 9 9 9 7 7 6 6 24 24 9 9 25 25 24 24 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID612\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID613\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 33 33 34 34 35 35 34 34 36 36 35 35 37 37 38 38 36 36 36 36 38 38 35 35 35 35 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 47 47 46 46 48 48 47 47 47 47 48 48 49 49 48 48 50 50 49 49 51 51 49 49 50 50 52 52 53 53 36 36 37 37 36 36 53 53 38 38 37 37 54 54 37 37 55 55 54 54 54 54 55 55 56 56 56 56 55 55 57 57 55 55 58 58 57 57 59 59 57 57 58 58</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID612\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID613\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID617\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID618\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID622\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID622\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID619\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID623\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1088387569614722 0.01315362923910896 0.9939723874539582 -0.1152536654891546 0.0291861515433436 0.9929072268592888 -0.1164175568789908 0.02947304770899976 0.9927629585702068 0.1164175568789908 -0.02947304770899976 -0.9927629585702068 0.1152536654891546 -0.0291861515433436 -0.9929072268592888 0.1088387569614722 -0.01315362923910896 -0.9939723874539582 -0.1108275343076859 0.0157188274115992 0.9937153395737044 0.1108275343076859 -0.0157188274115992 -0.9937153395737044 -0.1169992818606147 0.001779387199382528 0.9931304052466096 0.1169992818606147 -0.001779387199382528 -0.9931304052466096 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211613462438688 0.005798762209368286 0.9926158887168858 0.1211613462438688 -0.005798762209368286 -0.9926158887168858 -0.1289723073749611 -0.05683794718569368 0.990017975437868 -0.1321721693293524 -0.05182041772276032 0.9898712855527286 -0.1269009350449967 -0.04024779597736024 0.9910985155894797 0.1269009350449967 0.04024779597736024 -0.9910985155894797 0.1321721693293524 0.05182041772276032 -0.9898712855527286 0.1289723073749611 0.05683794718569368 -0.990017975437868 -0.1318875386354734 -0.06677197077271543 0.9890132360447983 -0.1366133769342704 -0.05910629755485246 0.9888595607223364 0.1366133769342704 0.05910629755485246 -0.9888595607223364 0.1318875386354734 0.06677197077271543 -0.9890132360447983 -0.558028898390844 -0.2252503846026686 0.7986651443484001 -0.5451251899441658 -0.2516490044651679 0.7996945078215975 -0.5582945311177081 -0.2283387439749839 0.7976018019814056 0.5582945311177081 0.2283387439749839 -0.7976018019814056 0.5451251899441658 0.2516490044651679 -0.7996945078215975 0.558028898390844 0.2252503846026686 -0.7986651443484001 -0.5144576180718076 -0.2200898906441139 0.8287905641621072 -0.4971178181320478 -0.2277136551304314 0.8372695898948984 0.4971178181320478 0.2277136551304314 -0.8372695898948984 0.5144576180718076 0.2200898906441139 -0.8287905641621072 -0.3523674383661242 -0.2850989537794993 0.8913785811500805 -0.306373651989246 -0.301890195052002 0.9027721171470885 0.306373651989246 0.301890195052002 -0.9027721171470885 0.3523674383661242 0.2850989537794993 -0.8913785811500805 -0.4569170898122744 0.3580322882283826 0.8142724689091671 -0.4287165572106656 0.5157236689642438 0.7417757146493089 -0.4541867966104732 0.3794965782313983 0.8060376547627145 0.4541867966104732 -0.3794965782313983 -0.8060376547627145 0.4287165572106656 -0.5157236689642438 -0.7417757146493089 0.4569170898122744 -0.3580322882283826 -0.8142724689091671 -0.4610519398068395 0.1374069943415377 0.8766700785964896 -0.4574434326879626 0.128523092512843 0.8799018812240311 0.4574434326879626 -0.128523092512843 -0.8799018812240311 0.4610519398068395 -0.1374069943415377 -0.8766700785964896 -0.4985584274964397 0.03343317632154487 0.8662111273201989 -0.5040157149677988 0.03292087746401979 0.8630668426561742 0.5040157149677988 -0.03292087746401979 -0.8630668426561742 0.4985584274964397 -0.03343317632154487 -0.8662111273201989 -0.5535759670464742 -0.01565705409007048 0.8326514909407067 -0.5497125255609511 -0.01221039753376431 0.8352646559225813 0.5497125255609511 0.01221039753376431 -0.8352646559225813 0.5535759670464742 0.01565705409007048 -0.8326514909407067 -0.6307597955618702 -0.0336555489308815 0.7752479502255447 -0.6328213274262273 -0.03345237151289191 0.7735748873862641 0.6328213274262273 0.03345237151289191 -0.7735748873862641 0.6307597955618702 0.0336555489308815 -0.7752479502255447 -0.1240902978453498 -0.0175498111580307 0.9921157201198707 -0.1257023489127471 -0.01606129966648226 0.9919379789739081 0.1257023489127471 0.01606129966648226 -0.9919379789739081 0.1240902978453498 0.0175498111580307 -0.9921157201198707 -0.1260595472930294 -0.0408216577978071 0.9911824165061218 0.1260595472930294 0.0408216577978071 -0.9911824165061218 -0.5412148349373932 -0.2537132226334566 0.8016957671739552 0.5412148349373932 0.2537132226334566 -0.8016957671739552 -0.4272661229037248 0.5156003108204946 0.7426977714391153 0.4272661229037248 -0.5156003108204946 -0.7426977714391153</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID623\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID621\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID624\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">9.891501356083198 -1.398559899101458 14.0190207913705 -1.378322775502937 13.80728166277617 -0.6130167098138849 9.892292853868527 -1.396358040448894 10.16976395576887 -2.147763991652776 14.01980057287232 -1.374692521388983 9.112972347923334 -3.318913266075672 7.922917617543023 -3.31064759363729 9.13990034236501 -4.10109427719969 9.185461095484014 -0.09440081931622046 13.12035929778858 -0.7049523672064595 13.15740834483686 -0.007683132925823285 9.208683394319904 -0.571882978597314 8.06307501585481 -0.5861914753075564 7.959654123141069 -0.1028398972043406 7.199978199095067 -0.6346024122160491 7.108731272710429 -0.10688175677692 6.460281336741163 -0.7780344309739375 5.66281971002354 -0.06367290266154251 6.090137041837841 -0.981480541855419 5.554770877852206 -0.8406449125250893 4.335914825773608 -0.02054527340170165 4.269814814293227 -0.5681835556315917 3.728999951832195 0.007992341182690677 3.675384037947553 -0.4246823111445474 8.240503349031185 -2.792558387712522 8.312030923974277 -3.573561015301703 9.534613588802479 -3.503157893577027 2.866400881466295 -4.09043929177291 2.592754049921546 -4.844748037579367 3.858647062123191 -5.16058960318777 1.764387869163704 -4.104380020650059 1.377297237169688 -4.827743230540988 1.934313392358909 -5.019461920039144 1.877196734483731 -4.342754535484429 1.33150791732068 -4.108270374199182 1.773090404879941 -4.458637017925284 1.855718646494166 -4.509721762035793 2.948315257028529 -5.11514745525924 3.033601055682589 -4.996987230377251 0.3417500518942679 -5.735767157626841 0.643265683683088 -6.176002351858831 0.7230910765086479 -6.063201128471859 8.098827313590068 0.4251827631843959 7.860758236876446 0.1233516168670555 8.221633022424319 0.3354410191769293 8.692700701586954 -1.456731561340594 8.020550205059355 -1.738846683847045 8.777424033680292 -1.570199514101096 7.775142777459928 -3.195329571672053 8.646044617348052 -3.233748210890571 8.631777309452774 -3.099303113019177 9.330348977001862 -3.552345717479117 8.185074552308338 -3.578387594753834 9.311692834307262 -3.69237575750201 8.92396389964752 -3.788083846687805 12.79728635458154 -4.147255281525537 12.83018579927031 -3.998070213710835 7.317289624280975 -2.980140061228889 7.346533038834244 -3.763528691237196 8.196485417401426 -3.731313273001689 5.336390733417921 -5.449619584766261 4.251179605034944 -4.373769397749731 3.951018182975293 -5.121079041999575 5.636561508752498 -4.702312727263123 7.093366192879808 -3.295908493898871 7.918442027052564 -4.084159963801527 7.9264042430006 -3.301158048278965 2.698973295573131 -4.160805864112061 3.648222878151388 -5.254826617090851 3.990976447294812 -4.518942246687931 1.264659737377111 -4.215067749817517 1.327014570610913 -5.138559858782626 1.781220271575089 -4.440238296359105 2.190316269496892 -4.331888373982719 2.092057563700482 -4.450888635141769 3.314877001865865 -4.899940379907601 1.141746521037105 -4.178758122598253 1.05871830345268 -4.301210512261891 1.572352064691836 -4.537480266369492 3.097661168592327 -4.985281801077196 3.013530619634568 -5.103953439875546 3.563681401541414 -5.3253843708294 7.851589781199859 0.1624999726829313 7.987420609990448 0.09004473225368445 8.21113041698956 0.3759870027255349 8.015398979144715 -1.752248997002818 8.090091306673514 -1.870291468803673 8.772747345371998 -1.584925376850224 7.744361237538513 -3.295161361764044 7.786369406217942 -3.422538761892946 8.614935622004783 -3.33792690271419 8.114139814095902 -3.742617406280015 8.111754056698198 -3.877517115416049 9.238931812302894 -3.867268169121407 8.806680473794703 -4.11759385727599 8.773640424439241 -4.255971035984555 12.67194791268335 -4.5269585570712</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID624\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID620\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID618\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID619\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 0 6 8 7 6 8 7 8 9 7 5 6 10 9 11 10 12 11 11 10 10 9 13 12 13 12 10 9 14 13 14 13 10 9 15 14 14 13 15 14 16 15 16 15 15 14 17 16 16 15 17 16 18 17 18 17 17 16 19 18 18 17 19 18 20 19 20 19 19 18 21 20 21 20 19 18 22 21 21 20 22 21 23 22 23 22 22 21 24 23 23 22 24 23 25 24 26 24 27 23 28 22 27 23 29 21 28 22 28 22 29 21 30 20 29 21 31 18 30 20 30 20 31 18 32 19 32 19 31 18 33 17 31 18 34 16 33 17 33 17 34 16 35 15 34 16 36 14 35 15 35 15 36 14 37 13 36 14 38 9 37 13 37 13 38 9 39 12 39 12 38 9 40 10 41 11 40 10 38 9 8 25 42 26 6 27 7 27 43 26 9 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 45 33 48 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 54 37 60 38 61 39 62 39 63 38 59 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 68 47 75 48 76 48 73 47 77 46 74 49 78 50 79 51 80 51 81 50 77 49 82 52 79 53 83 54 84 54 80 53 85 52 82 55 86 56 87 57 88 57 89 56 85 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 94 62 46 63 94 62 91 61 90 64 93 64 92 61 95 62 47 63 95 62 92 61 90 65 42 66 8 67 9 67 43 66 93 65 44 68 46 69 94 70 95 70 47 69 49 68 50 71 45 72 44 73 49 73 48 72 53 71 54 74 56 75 60 76 63 76 57 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 61 80 60 81 64 82 67 82 63 81 62 80 69 83 98 84 70 85 71 85 99 84 72 83 68 86 70 87 75 88 76 88 71 87 73 86 74 89 75 90 78 91 81 91 76 90 77 89 79 92 78 93 83 94 84 94 81 93 80 92 82 95 83 96 86 97 89 97 84 96 85 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID620\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID621\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID625\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID628\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID632\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID632\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID629\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID633\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID633\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID631\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID634\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"60\">3.295252840429122 -1.288182790405501 3.553954881384697 -0.9130679473510686 3.861528503676829 -1.431814179263339 3.653175485382575 -0.4978760590883997 4.220446497283755 -0.6391021215311316 5.122854141660617 -1.809345535610677 5.526358198109146 -0.9067158682851475 5.700755221866416 -1.981511659262586 5.845294038790562 -2.297413730313628 6.124135088072079 -1.029998510971301 6.237853014667429 -2.141924398637036 6.348994523888187 -2.758800446062714 6.627065876926979 -2.5283351085099 7.000331008498487 -3.170403709446711 7.278421134616336 -2.939943688429858 7.915026008602089 -3.68870217088264 8.159474776988487 -3.454130399997072 11.21097795849668 -5.348585849823603 11.42530494601942 -5.07263695607616 6.348834577254241 -1.615424885060101 6.474741113180418 -0.8385239100247427 6.679996197963138 -1.144255152347283 7.225110846459248 -0.6922914059295819 7.281870875630058 -1.006895651470734 8.059207761561993 -0.6539708482222155 8.115944512114693 -0.9685740599925033 9.186441801135759 -0.6488213400628682 9.21274739048158 -0.9514208473190707 13.06654213649594 -1.122084458825146 13.09524992904242 -0.79949167490136</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"30\" source=\"#ID634\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID630\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID628\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID629\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 1 0 3 3 0 4 4 0 5 4 5 6 6 5 7 6 7 8 8 7 9 8 9 10 10 9 11 10 11 12 13 14 15 14 13 16 16 13 17 16 17 18 18 17 19 18 19 20 20 19 12 20 12 21 21 12 11 21 11 22 21 22 23 23 22 24 24 22 25 24 25 26 26 25 27 26 27 28 26 28 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID630\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">30 0 31 1 32 2 31 1 33 3 32 2 33 3 34 4 32 2 32 2 34 4 35 5 34 4 36 6 35 5 35 5 36 6 37 7 37 7 36 6 38 8 36 6 39 9 38 8 39 9 40 10 38 8 38 8 40 10 41 11 40 10 42 12 41 11 41 11 42 12 43 13 42 12 44 14 43 13 43 13 44 14 45 15 44 14 46 16 45 15 45 15 46 16 47 17 48 18 47 17 46 16 40 10 39 9 49 19 39 9 50 20 49 19 49 19 50 20 51 21 50 20 52 22 51 21 51 21 52 22 53 23 52 22 54 24 53 23 53 23 54 24 55 25 54 24 56 26 55 25 55 25 56 26 57 27 57 27 56 26 58 28 59 29 58 28 56 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID630\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID631\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID635\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID636\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID640\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID640\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID637\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID641\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID641\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID639\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID642\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"116\">-5.942143510265987 -3.537919751528921 -3.014275322117851 -6.330159141483323 -2.722917134621747 -5.429709253919597 -4.532998647519656 -5.776067396796974 -3.761988289242532 -8.403663709214172 -5.054129935863941 -5.15141281351586 -5.946686595406146 -5.057682875228573 -6.957166350571083 -4.013129460871145 -6.563991993162109 -5.617669476879784 -9.272628914606271 -5.165311420703098 -7.710539025580329 -12.82943654886498 -8.196902947598092 -11.50317111573932 -9.781350822898569 -10.19751021323684 -11.70834131037578 -6.394627456981616 -11.82235097061978 -9.37266146756806 -13.07634609667806 -7.142739684942715 -13.57695803480326 -9.381946502322247 -15.03078282578663 -8.21146679775252 -16.05001083580809 -10.25921156711687 -21.52269079340287 -11.99864627882594 -20.67270284231222 -12.96009691898834 -4.569559219049879 -10.58978432392038 -5.12072743462904 -6.367588736361021 -5.093403218011745 -11.83399197753575 -5.841838948681586 -13.61146945795768 -6.191243496727681 -6.283137334198752 -8.616810169633229 -19.58292117139953 -8.078369726216202 -14.94382291552136 -10.02986884390828 -19.21441079518665 -5.014934421954141 -9.607205397593324 -4.039184863108101 -7.471911457760681 -4.308405084816615 -9.791460585699765 -3.855269512790164 -6.414718274432491 -3.478583175285542 -2.006564730435573 -3.281995996581054 -2.808834738439892 -3.095621748363841 -3.141568667099376 -2.920919474340793 -6.805734728978842 -2.56036371731452 -3.18379436818051 -2.546701609005873 -5.916995988767874 -2.284779609524939 -5.294892161960191 -2.266499323759828 -2.888033698398487 -1.880994144621266 -4.201831854607086 -10.33635142115611 -6.480048459494169 -10.76134539670144 -5.999323139412972 -8.025005417904044 -5.129605783558433 -7.515391412893316 -4.10573339887626 -6.788479017401629 -4.690973251161124 -6.53817304833903 -3.571369842471357 -5.911175485309891 -4.68633073378403 -5.854170655187891 -3.197313728490808 -4.890675411449284 -5.098755106618421 -4.636314457303135 -2.582655710351549 -4.098451473799046 -5.751585557869662 -2.973343297703073 -2.528841437614287 -2.971071755132994 -1.768959875764461 -2.52706496793197 -2.57570640675793 -1.507137661058926 -3.165079570741662 -1.361458567310874 -2.714854626959799</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID642\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID638\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID636\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID637\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 3 3 0 0 5 5 5 5 0 0 6 6 6 6 0 0 7 7 6 6 7 7 8 8 9 9 10 10 7 7 10 10 9 9 11 11 11 11 9 9 12 12 12 12 9 9 13 13 12 12 13 13 14 14 14 14 13 13 15 15 14 14 15 15 16 16 16 16 15 15 17 17 16 16 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 3 3 21 21 4 4 21 21 3 3 22 22 21 21 22 22 23 23 23 23 22 22 24 24 24 24 22 22 25 25 24 24 25 25 26 26 26 26 25 25 8 8 26 26 8 8 10 10 10 10 8 8 7 7 26 26 10 10 27 27 26 26 27 27 28 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID638\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID639\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">29 29 30 30 31 31 30 30 32 32 31 31 33 33 34 34 32 32 32 32 34 34 31 31 34 34 35 35 31 31 31 31 35 35 36 36 35 35 37 37 36 36 36 36 37 37 38 38 38 38 37 37 39 39 37 37 40 40 39 39 41 41 39 39 40 40 42 42 43 43 44 44 43 43 45 45 44 44 44 44 45 45 46 46 45 45 47 47 46 46 46 46 47 47 48 48 47 47 49 49 48 48 48 48 49 49 50 50 49 49 51 51 50 50 50 50 51 51 52 52 52 52 51 51 32 32 33 33 32 32 51 51 34 34 33 33 53 53 33 33 54 54 53 53 53 53 54 54 55 55 55 55 54 54 40 40 41 41 40 40 56 56 40 40 54 54 56 56 57 57 56 56 54 54</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID638\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID639\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID643\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID644\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID648\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID648\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID645\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID649\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID649\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID647\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID650\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"116\">14.82902591557052 -8.384892502619829 20.41029086447709 -13.17764101175096 21.27248131697755 -12.2229423723072 15.79670305040769 -10.44749344574282 13.33494263193682 -9.550817708016966 12.88835961543644 -7.300830137085 11.5805232985438 -9.527731536536132 11.52980744991694 -6.541998000371912 9.529151400085357 -10.33648417410537 9.109835905503532 -5.293563109915906 7.928136657948257 -11.62962404360425 6.809176289792611 -4.123239947803949 7.424943045986368 -12.95197178042472 5.800264086731488 -3.640068430440598 6.099572673222684 -5.983272599215604 5.548610961513447 -5.312678419743834 2.557177127561046 -5.506438392768292 4.71279593362039 -5.407517741830074 4.245346264840824 -5.927683489544283 3.55839236819476 -8.488419045241628 2.837121282969626 -6.409136584333087 7.765917730597559 -15.06914637484883 8.270848227836648 -19.70532053592662 9.688516068491094 -19.34793117157087 5.571861419967594 -13.71230731538016 5.676042622384449 -6.509790425305303 4.812696874597001 -6.53714695665132 4.846150501537627 -11.92903008491025 4.338197914026393 -10.68076768650679 1.77919618409738 -4.244209522620814 2.122673132420412 -2.963841744772142 2.169098957013197 -5.340383843253396 2.406348437298501 -3.26857347832566 2.423075250768814 -5.964515042455125 2.785930709983797 -6.856153657690079 2.838021311192224 -3.254895212652651 3.049786336611342 -2.991636299607802 3.404588144896306 -2.061619973901975 3.712471522993184 -6.475985890212362 3.88295886529878 -7.534573187424415 4.135424113918324 -9.85266026796331 4.844258034245547 -9.673965585785433 1.418560641484813 -3.204568292166544 1.278588563780523 -2.753219196384146 2.356397966810195 -2.703758870915037 2.774305480756723 -2.656339209871917 2.900132043365744 -1.820034215220299 3.964068328974129 -5.814812021802124 4.554917952751766 -2.646781554957953 4.764575700042679 -5.168242087052686 5.764903724958471 -3.270999000185956 5.790261649271899 -4.763865768268066 6.444179807718218 -3.6504150685425 6.667471315968408 -4.775408854008483 7.414512957785258 -4.192446251309915 7.898351525203847 -5.223746722871408 10.20514543223855 -6.588820505875478 10.63624065848878 -6.111471186153602</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID650\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID646\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID644\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID645\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 11 11 14 14 13 13 15 15 15 15 13 13 16 16 15 15 16 16 17 17 17 17 16 16 18 18 18 18 16 16 19 19 19 19 16 16 20 20 21 21 22 22 23 23 22 22 21 21 24 24 24 24 21 21 12 12 24 24 12 12 11 11 24 24 11 11 14 14 24 24 14 14 25 25 24 24 25 25 26 26 24 24 26 26 27 27 27 27 26 26 28 28 28 28 26 26 18 18 28 28 18 18 19 19</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID646\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID647\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">29 29 30 30 31 31 30 30 32 32 31 31 31 31 32 32 33 33 33 33 32 32 34 34 32 32 35 35 34 34 35 35 36 36 34 34 36 36 37 37 34 34 37 37 38 38 34 34 38 38 39 39 34 34 34 34 39 39 40 40 41 41 40 40 39 39 42 42 43 43 29 29 29 29 43 43 30 30 30 30 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 36 36 37 37 36 36 46 46 38 38 37 37 47 47 37 37 48 48 47 47 47 47 48 48 49 49 48 48 50 50 49 49 49 49 50 50 51 51 50 50 52 52 51 51 51 51 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 55 55 54 54 56 56 57 57 56 56 54 54</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID646\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID647\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID651\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID652\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID656\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086261 -0.4057228466663786 1.255007445577006</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID656\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID653\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID657\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID657\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID655\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID658\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"116\">6.702103108885646 20.11553924734162 5.794715717549207 13.65502883900708 8.114458168158471 19.74546699100114 5.035936020298975 15.78554439442911 5.041999724845416 11.87869973036162 4.515123873609423 10.63526002083553 3.72203637432034 13.91843838723838 3.499059127413852 8.503668162237371 2.323357503165463 13.08490005884943 2.520531152860973 6.490504505913559 2.068972894939293 5.631935926042748 0.06075091877033985 12.78483712999241 0.8120119978442776 7.222580289126928 0.8227126529265449 6.595773100139321 0.04362987063896788 7.548865554982541 -2.201940144480685 13.08490005885077 -0.6525134482231259 7.207434068793488 -0.6603042760459281 6.628102364821207 -1.949292046070537 5.631935926043967 -2.400906623229417 6.490504505914989 -3.600572082937799 13.91843838724053 -3.379425211242822 8.503668162239411 -4.395536890136512 10.63526002083815 -4.914377863521055 15.78554439443209 -4.922422127911656 11.87869973036458 -6.582432022018011 20.11553924734553 -5.675109960996605 13.65502883901048 -7.994833638526947 19.7454669910059 0.1023145158150442 6.277101703712805 -0.3301521380229641 3.314051182410604 0.05115725790752209 3.138550851856402 -0.9746460230352685 2.815967963021984 0.4113563264632725 3.297886550069661 1.034486447469647 2.815967963021374 -3.997416819263473 9.872733495502947 -3.291216011009006 10.05776962367277 -2.837554980498303 6.82751441950524 -2.461211063955828 5.939349865182291 -2.457188931760527 7.892772197216043 -2.197768445068256 5.317630010419073 -1.8002860414689 6.959219193620267 -1.689712605621411 4.251834081119705 -1.200453311614709 3.245252252957494 -1.100970072240343 6.542450029425386 -0.3262567241115629 3.603717034396744 0.02181493531948394 3.774432777491271 0.03037545938516992 6.392418564996206 0.4060059989221388 3.611290144563464 1.161678751582732 6.542450029424717 1.260265576430486 3.245252252956779 1.749529563706926 4.251834081118686 1.86101818716017 6.959219193619191 2.257561936804712 5.317630010417767 2.517968010149487 7.892772197214557 2.520999862422708 5.939349865180811 2.897357858774603 6.827514419503538 3.351051554442823 10.05776962367081 4.057229084079236 9.872733495500569</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID658\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID654\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID652\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID653\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 5 5 3 3 6 6 5 5 6 6 7 7 7 7 6 6 8 8 7 7 8 8 9 9 9 9 8 8 10 10 10 10 8 8 11 11 10 10 11 11 12 12 10 10 12 12 13 13 12 12 11 11 14 14 14 14 11 11 15 15 14 14 15 15 16 16 16 16 15 15 17 17 17 17 15 15 18 18 18 18 15 15 19 19 19 19 15 15 20 20 19 19 20 20 21 21 21 21 20 20 22 22 22 22 20 20 23 23 22 22 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 26 26 25 25 27 27 10 10 28 28 18 18 28 28 10 10 13 13 18 18 28 28 17 17</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID654\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID655\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">29 29 30 30 31 31 32 32 33 33 30 30 31 31 30 30 33 33 34 34 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 41 41 40 40 42 42 40 40 43 43 42 42 42 42 43 43 31 31 31 31 43 43 29 29 29 29 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 47 47 32 32 47 47 33 33 47 47 46 46 33 33 46 46 48 48 33 33 33 33 48 48 49 49 49 49 48 48 50 50 48 48 51 51 50 50 50 50 51 51 52 52 51 51 53 53 52 52 52 52 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 57 57 55 55 56 56</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID654\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID655\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID659\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID660\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID664\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID664\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID661\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID665\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID665\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID663\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID666\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"116\">-6.984665430113307 3.983443023641084 -7.40422572564607 0.3789239175328026 -6.09915843792158 3.36857647914322 -7.410646117683638 2.119594723555238 -7.616745992036167 2.801032421564928 -9.087203731092407 5.365323263029861 -8.3423442719905 2.953155647545233 -9.093473939508872 2.602729468533396 -11.31992357356801 6.813667586479245 -14.53491699533404 8.746494248780024 -15.52040002022607 7.299823452712065 -14.97250845787214 5.988482126861165 -21.10379608906077 12.45059281253822 -17.33840302157449 8.883806786916869 -22.00748405742919 11.51994145614131 -8.583146557493567 0.3217766936036152 -8.054646834917762 1.646710999030179 -8.931546370346142 1.906224412462378 -11.32126622418493 0.2476387067093099 -12.6437260187638 7.60952939642481 -14.21409408474354 0.1839639580231964 -15.88012976177167 0.1958135568310805 -15.34672951463004 4.207573708536487 -16.44238348055336 2.621577179361666 -18.26023629726925 0.2127637073613848 -17.89873287521094 1.85170038214918 -20.57025466836452 1.480585937066035 -26.33609653088566 0.4649613457242628 -26.32221346343603 1.636013390160535 -13.16110673171801 0.8180066950802676 -10.28512733418226 0.7402929685330173 -13.16804826544283 0.2324806728621314 -9.130118148634626 0.1063818536806924 -8.949366437605471 0.9258501910745902 -8.22119174027668 1.310788589680833 -7.940064880885833 0.09790677841554024 -7.673364757315019 2.103786854268244 -7.486254228936068 2.994241063430582 -7.267458497667017 4.373247124390012 -7.107047042371768 0.09198197901159821 -6.321863009381899 3.804764698212405 -5.660633112092466 0.123819353354655 -5.659961786784004 3.406833793239623 -4.546736969754436 1.301364734266698 -4.465773185173071 0.953112206231189 -4.291573278746784 0.1608883468018076 -4.027323417458881 0.8233554995150897 -3.705323058841819 1.059797361777619 -3.702112862823035 0.1894619587664013 -11.00374202871459 5.759970728070657 -10.55189804453039 6.225296406269112 -8.669201510787243 4.441903393458435 -7.760200010113037 3.649911726356033 -4.543601865546203 2.682661631514931 -4.17117213599525 1.476577823772616 -3.808372996018083 1.400516210782464 -3.492332715056654 1.991721511820542 -3.04957921896079 1.68428823957161</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID666\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID662\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID660\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID661\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 7 7 5 5 8 8 9 9 10 10 11 11 10 10 9 9 12 12 10 10 12 12 13 13 13 13 12 12 14 14 3 3 15 15 1 1 15 15 3 3 16 16 15 15 16 16 17 17 15 15 17 17 18 18 18 18 17 17 7 7 18 18 7 7 8 8 18 18 8 8 19 19 18 18 19 19 20 20 20 20 19 19 9 9 20 20 9 9 21 21 21 21 9 9 11 11 21 21 11 11 22 22 21 21 22 22 23 23 21 21 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 24 24 26 26 27 27 27 27 26 26 28 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID662\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID663\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">29 29 30 30 31 31 31 31 30 30 32 32 30 30 33 33 32 32 33 33 34 34 32 32 32 32 34 34 35 35 34 34 36 36 35 35 36 36 37 37 35 35 37 37 38 38 35 35 35 35 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 41 41 41 41 44 44 45 45 44 44 46 46 45 45 46 46 47 47 45 45 48 48 45 45 47 47 49 49 50 50 51 51 51 51 50 50 52 52 50 50 38 38 52 52 37 37 52 52 38 38 42 42 53 53 43 43 43 43 53 53 54 54 54 54 53 53 55 55 53 53 56 56 55 55 55 55 56 56 47 47 47 47 56 56 48 48 57 57 48 48 56 56</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID662\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID663\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID667\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID668\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID672\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID672\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID669\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID673\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID673\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID671\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID674\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"116\">20.61719888652537 1.218148136177216 26.37837451250605 0.1684497917821321 26.37941679385733 1.339544146984344 18.29973586318679 -0.02022262547900209 17.95056710501454 1.610244438259214 15.91953471137129 -0.01844121671260754 16.50403527979898 2.391555627588657 15.42855411374404 3.986084458633338 14.25340591987107 -0.01718592348860902 15.07707401407439 5.769850515057511 14.68308415411048 8.542387413325084 12.77760761527535 7.420370888018093 11.36156327050402 0.06924101484297966 11.44368572952684 6.634956071308992 9.192662885861024 5.204233701788687 9.425026296851021 2.312795134179659 8.738063013666524 2.754604887566969 7.072628075169551 3.838965865215587 7.924071315350075 2.605400439849607 7.606327939590292 1.892705793038809 7.446428614955478 0.2313362901843486 6.179339266233333 3.231097654269962 9.207521402500165 1.59536744141203 8.624532442400788 0.1649128185498039 8.27845148027766 1.398775674567985 21.29872623692821 12.19463380149279 17.47963465401062 8.646417845385683 22.19043848268239 11.25691735948019 15.64156248019065 7.076826964854104 7.538537007037196 2.884925257528756 7.34154207705524 4.271193706662542 7.820781240095327 3.538413482427052 8.739817327005309 4.323208922692841 10.64936311846411 6.097316900746395 11.09521924134119 5.628458679740094 3.803163969795146 0.9463528965194042 4.13922574013883 0.6993878372839926 3.723214307477739 0.1156681450921743 4.312266221200394 0.08245640927490194 4.603760701250082 0.797683720706015 4.712513148425511 1.156397567089829 5.680781635252012 0.03462050742148983 3.089669633116666 1.615548827134981 3.536314037584776 1.919482932607794 3.962035657675037 1.302700219924803 4.369031506833262 1.377302443783485 4.596331442930512 2.602116850894344 5.721842864763418 3.317478035654496 6.388803807637676 3.710185444009047 7.126702959935534 -0.00859296174430451 7.714277056872022 1.993042229316669 7.959767355685644 -0.009220608356303768 8.252017639899492 1.195777813794329 8.975283552507268 0.8051222191296068 9.149867931593397 -0.01011131273950105 10.30859944326268 0.609074068088608 13.18918725625302 0.08422489589106605 13.18970839692866 0.6697720734921721</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID674\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID670\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID668\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID669\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 3 3 4 4 5 5 5 5 4 4 6 6 5 5 6 6 7 7 5 5 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 8 8 10 10 11 11 8 8 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 12 12 14 14 15 15 15 15 14 14 16 16 16 16 14 14 17 17 16 16 17 17 18 18 18 18 17 17 19 19 19 19 17 17 20 20 20 20 17 17 21 21 12 12 22 22 23 23 22 22 12 12 15 15 23 23 22 22 24 24 23 23 24 24 20 20 20 20 24 24 19 19 25 25 26 26 27 27 26 26 25 25 10 10 26 26 10 10 28 28 28 28 10 10 9 9</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID670\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID671\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">29 29 30 30 31 31 31 31 30 30 32 32 30 30 33 33 32 32 34 34 32 32 33 33 35 35 36 36 37 37 37 37 36 36 38 38 36 36 39 39 38 38 40 40 41 41 39 39 38 38 39 39 41 41 42 42 43 43 37 37 37 37 43 43 35 35 35 35 43 43 44 44 44 44 43 43 45 45 43 43 46 46 45 45 45 45 46 46 40 40 40 40 46 46 41 41 46 46 47 47 41 41 47 47 48 48 41 41 41 41 48 48 49 49 48 48 30 30 49 49 30 30 29 29 49 49 29 29 50 50 49 49 49 49 50 50 51 51 50 50 52 52 51 51 52 52 53 53 51 51 51 51 53 53 54 54 53 53 55 55 54 54 54 54 55 55 56 56 57 57 56 56 55 55</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID670\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID671\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID675\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID676\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID680\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803394 0.6383334991085194 -0.1943718802796175</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID680\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID677\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID681\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID681\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID679\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID682\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"120\">-12.93127233964243 -1.486071496671276 -12.62543034616549 -4.129144983791254 -12.23498784722559 -1.874505443854724 -12.76666998217039 -3.058117583065982 -13.34961163411208 -2.09427775069872 -14.42832176977398 -1.181805033857142 -14.54974604533614 -1.810114365788693 -16.09538020415581 -1.092060798588364 -16.21682400372031 -1.72034805212735 -18.34966205435873 -1.064030839351062 -18.40995067147561 -1.668797885313605 -26.17068750133516 -1.303845305457521 -26.12148100826749 -1.949461217357851 -7.159292431165309 -1.69744618722385 -7.854985196129549 -2.746417347632534 -6.718791141366869 -2.468068923971035 -7.2798246100092 -0.8491966345196895 -8.417877199601666 -1.122717643494433 -10.38703202271997 -3.481579675358059 -11.03641160156596 -1.637361946361363 -11.54718953748084 -3.816798493870874 -11.84430204918045 -4.446292896444675 -12.86330478225409 -5.361104519921764 -13.4136083098111 -4.895822555464352 -14.17645312960758 -6.174030638247034 -14.72672962393063 -5.708741585074908 -16.01893622609624 -7.196171309012338 -16.5018368904839 -6.72319749841732 -22.65270559410508 -10.46391163633777 -23.07439550773097 -9.908684515855253 -11.53719775386548 -4.954342257927626 -8.250918445241952 -3.36159874920866 -11.32635279705254 -5.231955818168884 -8.009468113048119 -3.598085654506169 -7.363364811965314 -2.854370792537454 -7.088226564803792 -3.087015319123517 -6.70680415490555 -2.447911277732176 -6.431652391127047 -2.680552259960882 -6.312715173082745 -2.064572491895627 -5.922151024590223 -2.223146448222337 -6.117493923612793 -0.937252721927362 -5.77359476874042 -1.908399246935437 -5.518205800782978 -0.8186809731806815 -5.193516011359987 -1.74078983767903 -4.208938599800833 -0.5613588217472164 -3.927492598064775 -1.373208673816267 -3.6399123050046 -0.4245983172598448 -3.579646215582655 -0.8487230936119248 -3.359395570683434 -1.234034461985518 -13.06074050413374 -0.9747306086789257 -13.08534375066758 -0.6519226527287603 -9.204975335737807 -0.8343989426568027 -9.174831027179364 -0.5320154196755311 -8.108412001860152 -0.860174026063675 -8.047690102077906 -0.5460303992941817 -7.274873022668071 -0.9050571828943463 -7.214160884886991 -0.5909025169285711 -6.674805817056042 -1.04713887534936 -6.465636169821214 -0.7430357483356379 -6.383334991085194 -1.529058791532991</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID682\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID678\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID676\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID677\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 3 3 0 0 4 4 4 4 0 0 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 13 13 14 14 15 15 14 14 13 13 16 16 14 14 16 16 17 17 14 14 17 17 18 18 18 18 17 17 19 19 18 18 19 19 20 20 20 20 19 19 2 2 20 20 2 2 21 21 21 21 2 2 1 1 21 21 1 1 22 22 22 22 1 1 23 23 22 22 23 23 24 24 24 24 23 23 25 25 24 24 25 25 26 26 26 26 25 25 27 27 26 26 27 27 28 28 28 28 27 27 29 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID678\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID679\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">30 30 31 31 32 32 32 32 31 31 33 33 31 31 34 34 33 33 33 33 34 34 35 35 34 34 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 46 46 47 47 45 45 48 48 45 45 47 47 49 49 50 50 51 51 50 50 52 52 51 51 51 51 52 52 53 53 52 52 54 54 53 53 53 53 54 54 55 55 54 54 56 56 55 55 55 55 56 56 57 57 56 56 58 58 57 57 57 57 58 58 59 59 59 59 58 58 38 38 40 40 38 38 58 58</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID678\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID679\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID683\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID684\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID688\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.270747921471866 -0.3435928533137942</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID688\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID685\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID689\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID689\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID687\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID690\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">-13.23998135775804 -2.815179652060345 -12.70747921471866 -2.702930446068514 -13.16378218064985 -0.02353490189121056 -11.86264785299155 -5.414977569922251 -11.3852296786218 -5.19814619357484 -9.676892997933901 -7.645755905570643 -9.287060999525936 -7.339102244252365 -6.831627108706453 -9.35548004195716 -6.556009772566556 -8.979918166834205 -3.520815891249638 -10.42765167937458 -3.378135984617037 -10.00876771530356 0.02993367461099795 -10.78919857487892 0.02993367461107122 -10.35552755201697 3.578613696232724 -10.41547563048526 3.435947306217084 -9.996572763175115 6.607832481936404 -8.956385406325536 6.883464085616424 -9.331950235079592 9.329413065955807 -7.305833134151492 9.719179734048568 -7.612483251112466 11.41515847223228 -5.15738785643058 11.89255787352293 -5.374217460599311 12.72300830574298 -2.657477903000535 13.25550293955077 -2.769719724914605 13.16380470834466 0.02353305587178231 13.24002340945525 2.815181424239013 13.71509494893863 0.02353305587177882 -13.25547891000948 2.769721792456383 -13.71506791570486 -0.02353490189120707 -12.72297526512372 2.657477016911196 -11.89256237906191 5.374217460599315 -11.415120926074 5.157382539894559 -9.719207518205637 7.612483251112464 -9.329352241179443 7.305826045436834 -6.883468591155371 9.331957914520494 -6.607781419161219 8.956387769230418 -3.578613696232667 10.41548035629503 -3.435919522059974 9.9965833962471 -0.02990082172260377 10.7891985748789 -0.02990082172267482 10.35552991492187 3.378140490156039 10.00875944513644 3.520825277789115 10.42765758663682 6.556009772566611 8.979915213203102 6.831636119784472 9.35548594921938 9.287065505064954 7.339104016431012 9.676888492394975 7.645755905570645 11.38526271924082 5.198144421396179 11.86263358545151 5.414979342100926 12.70754829964972 2.702938420872503</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"48\" source=\"#ID690\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID686\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID684\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID685\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 0 0 3 3 1 1 3 3 4 4 4 4 3 3 5 5 4 4 5 5 6 6 6 6 5 5 7 7 6 6 7 7 8 8 8 8 7 7 9 9 8 8 9 9 10 10 10 10 9 9 11 11 10 10 11 11 12 12 12 12 11 11 13 13 12 12 13 13 14 14 14 14 13 13 15 15 15 15 13 13 16 16 15 15 16 16 17 17 17 17 16 16 18 18 17 17 18 18 19 19 19 19 18 18 20 20 19 19 20 20 21 21 21 21 20 20 22 22 21 21 22 22 23 23 23 23 22 22 24 24 24 24 22 22 25 25 0 0 26 26 27 27 26 26 0 0 2 2 26 26 2 2 28 28 26 26 28 28 29 29 29 29 28 28 30 30 29 29 30 30 31 31 31 31 30 30 32 32 31 31 32 32 33 33 33 33 32 32 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 42 42 41 41 43 43 42 42 43 43 44 44 44 44 43 43 45 45 44 44 45 45 46 46 46 46 45 45 47 47 46 46 47 47 24 24 24 24 47 47 23 23 48 23 49 47 50 24 50 24 49 47 51 46 49 47 52 45 51 46 51 46 52 45 53 44 52 45 54 43 53 44 53 44 54 43 55 42 54 43 56 41 55 42 55 42 56 41 57 40 56 41 58 39 57 40 57 40 58 39 59 37 58 39 60 38 59 37 60 38 61 36 59 37 59 37 61 36 62 35 61 36 63 34 62 35 62 35 63 34 64 33 63 34 65 32 64 33 64 33 65 32 66 31 65 32 67 30 66 31 66 31 67 30 68 29 67 30 69 28 68 29 68 29 69 28 70 26 69 28 71 2 70 26 71 2 72 0 70 26 73 27 70 26 72 0 74 25 75 22 50 24 50 24 75 22 48 23 48 23 75 22 76 21 75 22 77 20 76 21 76 21 77 20 78 19 77 20 79 18 78 19 78 19 79 18 80 17 79 18 81 16 80 17 80 17 81 16 82 15 81 16 83 13 82 15 82 15 83 13 84 14 84 14 83 13 85 12 83 13 86 11 85 12 85 12 86 11 87 10 86 11 88 9 87 10 87 10 88 9 89 8 88 9 90 7 89 8 89 8 90 7 91 6 90 7 92 5 91 6 91 6 92 5 93 4 92 5 94 3 93 4 93 4 94 3 95 1 94 3 72 0 95 1 71 2 95 1 72 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID686\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID687\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID691\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID694\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID696\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.4478128033659967 0.2778640982455765 -0.362934906886154 -0.4478128033659949 0.307457980125035 -0.3945048806169198</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID696\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID695\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID695\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID694\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID697\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID698\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID700\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.4478128033659896 -0.2592153908032857 -0.3790163769896233 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID700\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID699\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID699\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID698\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID701\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID702\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID704\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.4478128033659967 -0.4253519781642065 0.1347814339741829 -0.4478128033659914 -0.4139088478041265 0.0933464324579063</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID704\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID703\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID703\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID702\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID705\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID706\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID708\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.4478128033659932 -0.003894005930508371 0.4410080127493087 -0.4478128033659967 0.03004302779671875 0.423250557236884</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID708\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID707\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID707\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID706\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID709\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID710\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID712\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.4478128033659976 0.4132203263553758 0.1481986756257214 -0.4478128033659941 0.443604104310682 0.1249160682732518</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID712\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID711\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID711\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID710\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID713\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID714\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID716\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.005569503239401641 -0.6325761712128029</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID716\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID715\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID715\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID714\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID717\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID718\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID720\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803314 -0.6020747235977453 -0.1948699676140677</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID720\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID719\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID719\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID718\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID721\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID722\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID724\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803314 0.005242382336229534 -0.5675233220841833 -0.529859118780335 -0.05171889424246934 -0.426670674331888</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID724\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID723\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID723\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID722\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID725\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID726\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID728\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803421 0.004574999374554745 -0.4344675846323871 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID728\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID727\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID727\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID726\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID729\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID730\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID732\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.365877924949132 0.5166904045363489</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID732\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID731\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID731\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID730\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID733\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID734\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID736\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803314 -0.3342368387947641 0.459116412202264 -0.5298591187803323 -0.2836405746819554 0.488100356742052</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID736\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID735\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID735\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID734\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID737\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID738\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID740\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803341 0.328054863850014 0.4637080820710361 -0.5298591187803368 0.2863054132589566 0.3205489738215878</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID740\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID739\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID739\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID738\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID741\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID742\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID744\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803421 0.2506140352906494 0.3552348656737639 -0.5298591187803332 0.2520881913262922 0.2718711494341899</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID744\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID743\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID743\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID742\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID745\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID746\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID748\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.3723203951393453 0.5119000403984736</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID748\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID747\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID747\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID746\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID749\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID750\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID752\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2562910144078499 0.3510828613173088</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID752\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID751\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID751\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID750\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID753\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID756\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID758\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803385 -0.540087405646254 -0.1750670537230961 -0.529859118780335 -0.4220446497283755 -0.0812417951098896</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID758\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID757\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID757\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID756\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID759\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID760\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID762\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.529859118780335 -0.4132513394820253 -0.1345502998244115 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID762\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID761\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID761\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID760\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID763\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID764\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID766\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803394 0.5432375283177788 -0.1650388315610469 -0.5298591187803332 0.5193516011359987 -0.221286843772758</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID766\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID765\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID765\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID764\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID767\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID768\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID770\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.6054177208838552 -0.184220112484069</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID770\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID769\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID769\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID768\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID771\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID772\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID774\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.4160034728768081 -0.1257918324128582</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID774\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID773\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID773\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID772\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID775\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID776\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID778\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">0.4736113844101926 1.42012168249506 1.065790132799686 0.8846653631423393 1.420121682495051 1.065790132799686</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID778\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID777\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID777\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID776\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID784\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID785\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID789\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"384\">-0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6868625843902656 0.1325844017550539 0.1476176488278478 -0.6887753358727284 -0.002616497898353387 -0.003702989850750127 -0.6868625843902736 0.08197405783292511 0.1807461541982329 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6868625843902656 0.02385119698544735 0.1974855080853799 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902745 0.1711823216936621 0.1010436389353515 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6868625843902647 -0.03662721596101015 0.1963485728694538 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.6868625843902727 0.1943323441750522 0.04516274836507961 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6868625843902656 -0.09408128586585618 0.177435991027465 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902789 0.199987264924316 -0.0150602333739871 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.686862584390278 -0.14340802050512 0.1424284224650605 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.686862584390278 0.1876378641711034 -0.07427451410713148 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6868625843902656 -0.1802262525458787 0.09443620969915401 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902807 0.1583851830041356 -0.127217882433327 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6868625843902798 -0.2012643036294931 0.03772473709737767 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 0.1148245996077455 -0.169186856024738 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6868625843902709 -0.2046504977705901 -0.02266778901223177 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.6868625843902789 0.06083087750639415 -0.1964508861505006 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.686862584390278 -0.1900854043576298 -0.08137590060037647 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.6868625843902745 0.001196783792068112 -0.2065892875137356 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.686862584390278 -0.1588610805590918 -0.133182211685636 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.6868625843902763 -0.05877240938403339 -0.198699675748685 -0.686862584390278 -0.1137559420804608 -0.173484483155705 -0.686862584390278 -0.1137559420804608 -0.173484483155705</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"128\" source=\"#ID789\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID786\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID790\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"384\">-0.9024665938125612 0.2869979446047657 0.3212261303894707 -0.902466236746562 0.1795708561871048 0.3915469309555731 -0.9024665938061016 0.2869970887591513 0.3212268950567254 -0.9024662367466551 0.1795709440136923 0.3915468906764066 0.902466236746562 -0.1795708561871048 -0.3915469309555731 0.9024665938061016 -0.2869970887591513 -0.3212268950567254 0.9024662367466551 -0.1795709440136923 -0.3915468906764066 0.9024665938125612 -0.2869979446047657 -0.3212261303894707 -0.9024668903167546 0.05618340562307148 0.4270795438962162 -0.9024668903001765 0.05618563690832937 0.4270792503940392 0.9024668903167546 -0.05618340562307148 -0.4270795438962162 0.9024668903001765 -0.05618563690832937 -0.4270792503940392 -0.902469089464752 0.3689290774500262 0.2223530489391454 -0.9024690894613248 0.3689289867002785 0.2223531995253341 0.9024690894613248 -0.3689289867002785 -0.2223531995253341 0.902469089464752 -0.3689290774500262 -0.2223530489391454 -0.9999555775055583 0.003929272324182818 0.008567603779806768 -0.9999999999999999 -3.944088456120249e-009 1.649036539061831e-008 -0.9999555776890411 0.006279922634141023 0.007028884711349623 0.9999555776890411 -0.006279922634141023 -0.007028884711349623 0.9999999999999999 3.944088456120249e-009 -1.649036539061831e-008 0.9999555775055583 -0.003929272324182818 -0.008567603779806768 -0.9024674946036678 -0.07219701394895309 0.4246645880699658 -0.9024674946038228 -0.07219707389978321 0.424664577877421 0.9024674946036678 0.07219701394895309 -0.4246645880699658 0.9024674946038228 0.07219707389978321 -0.424664577877421 -0.9999555778310314 0.001229424558499158 0.009345099243102516 0.9999555778310314 -0.001229424558499158 -0.009345099243102516 -0.9024695789497297 0.4180784539420578 0.1037259148897536 -0.9024695789502093 0.4180784961390021 0.1037257448061106 0.9024695789502093 -0.4180784961390021 -0.1037257448061106 0.9024695789497297 -0.4180784539420578 -0.1037259148897536 -0.9999555784085298 0.008072791231372301 0.004865311027822405 0.9999555784085298 -0.008072791231372301 -0.004865311027822405 -0.9024683401951699 -0.1941614071388285 0.3845155951625956 -0.9024683401956324 -0.1941614450021188 0.3845155760424143 0.9024683401951699 0.1941614071388285 -0.3845155951625956 0.9024683401956324 0.1941614450021188 -0.3845155760424143 -0.9999555778376283 -0.001579793115735819 0.009292287400107886 0.9999555778376283 0.001579793115735819 -0.009292287400107886 -0.9024695599118074 0.4300783861399769 -0.02410964968268119 -0.9024695599145399 0.4300784014704719 -0.02410937610681846 0.9024695599145399 -0.4300784014704719 0.02410937610681846 0.9024695599118074 -0.4300783861399769 0.02410964968268119 -0.9999555771365172 0.009148344649372987 0.002269701247122971 0.9999555771365172 -0.009148344649372987 -0.002269701247122971 -0.9024699496610145 -0.298869595953435 0.3102014741639317 -0.9024699496784561 -0.298870415416041 0.3102006845840415 0.9024699496610145 0.298869595953435 -0.3102014741639317 0.9024699496784561 0.298870415416041 -0.3102006845840415 -0.9999555776015303 -0.004248627287482877 0.008413797582663555 0.9999555776015303 0.004248627287482877 -0.008413797582663555 -0.9024682165406183 0.4038669616350336 -0.1498085292421026 -0.902468216543048 0.4038670647292976 -0.1498082512966218 0.9024682165406183 -0.4038669616350336 0.1498085292421026 0.902468216543048 -0.4038670647292976 0.1498082512966218 -0.999955577745935 0.009410860694318868 -0.0005274806018676984 0.999955577745935 -0.009410860694318868 0.0005274806018676984 -0.9024707715227106 -0.3770220929027301 0.2083287018402623 -0.9024707715194342 -0.3770227739999134 0.2083274692366014 0.9024707715227106 0.3770220929027301 -0.2083287018402623 0.9024707715194342 0.3770227739999134 -0.2083274692366014 -0.9999555770671936 -0.006539895081909356 0.006787758432154178 0.9999555770671936 0.006539895081909356 -0.006787758432154178 -0.9024668466034375 0.3417689209700612 -0.2621976266875958 -0.9024668466014079 0.3417688417781226 -0.262197729919524 0.9024668466034375 -0.3417689209700612 0.2621976266875958 0.9024668466014079 -0.3417688417781226 0.262197729919524 -0.9999555775200822 0.008837293966907273 -0.003277990515714328 0.9999555775200822 -0.008837293966907273 0.003277990515714328 -0.902469637953096 -0.4216810734117544 0.08794103080541284 -0.9024696379339142 -0.4216812607433428 0.08794013273434857 0.902469637953096 0.4216810734117544 -0.08794103080541284 0.9024696379339142 0.4216812607433428 -0.08794013273434857 -0.9999555769430629 -0.008249995118261777 0.004558697293603463 0.9999555769430629 0.008249995118261777 -0.004558697293603463 -0.902465509489143 0.2493039587819413 -0.3512884004890483 -0.9024655094892364 0.2493038174778161 -0.3512885007701228 0.902465509489143 -0.2493039587819413 0.3512884004890483 0.9024655094892364 -0.2493038174778161 0.3512885007701228 -0.9999555779597974 0.00747843989793408 -0.005737163391514847 0.9999555779597974 -0.00747843989793408 0.005737163391514847 -0.9024672758692717 -0.4288731719288677 -0.04025690480859202 -0.9024672758646049 -0.4288730763736164 -0.04025792288916159 0.9024672758692717 0.4288731719288677 0.04025690480859202 0.9024672758646049 0.4288730763736164 0.04025792288916159 -0.9999555776764442 -0.009227086398497142 0.001924461057970694 0.9999555776764442 0.009227086398497142 -0.001924461057970694 -0.9024664086806516 0.1346861044661979 -0.4091626015006348 -0.9024664086756207 0.134686627996427 -0.4091624291782907 0.9024664086806516 -0.1346861044661979 0.4091626015006348 0.9024664086756207 -0.134686627996427 0.4091624291782907 -0.9999555777995033 0.005455079717335024 -0.007686646403922885 0.9999555777995033 -0.005455079717335024 0.007686646403922885 -0.9024678923401798 -0.3979516028754097 -0.1648824583270336 -0.902467892340141 -0.3979517141178801 -0.1648821898380311 0.902467892340141 0.3979517141178801 0.1648821898380311 0.9024678923401798 0.3979516028754097 0.1648824583270336 -0.9999555778851129 -0.009384369994094055 -0.000880827034032532 0.9999555778851129 0.009384369994094055 0.000880827034032532 -0.9024663791541479 0.008097340179231503 -0.430684185428747 -0.9024663791250542 0.008094825123542416 -0.4306842327681999 0.9024663791541479 -0.008097340179231503 0.430684185428747 0.9024663791250542 -0.008094825123542416 0.4306842327681999 -0.9999555777991002 0.002947080780235639 -0.008953052180265634 0.9999555777991002 -0.002947080780235639 0.008953052180265634 -0.9024662331163754 -0.3316728008946313 -0.2748596937192685 -0.9024662331196897 -0.3316729654395058 -0.2748594951522004 0.9024662331196897 0.3316729654395058 0.2748594951522004 0.9024662331163754 0.3316728008946313 0.2748596937192685 -0.999955578177709 -0.008707751861328623 -0.003607870397508076 0.999955578177709 0.008707751861328623 0.003607870397508076 -0.9024648168310505 -0.1192080340211159 -0.4139404534554687 -0.9024648168337509 -0.1192074838149737 -0.4139406118994938 0.9024648168310505 0.1192080340211159 0.4139404534554687 0.9024648168337509 0.1192074838149737 0.4139406118994938 -0.9999555778745281 0.0001771432880129035 -0.009423953410019359 0.9999555778745281 -0.0001771432880129035 0.009423953410019359 -0.9024656541724766 -0.2359218880318137 -0.3604117170494711 -0.902465654171666 -0.2359217875784709 -0.3604117828072296 0.902465654171666 0.2359217875784709 0.3604117828072296 0.9024656541724766 0.2359218880318137 0.3604117170494711 -0.9999555777101306 -0.007257512103960586 -0.006014243465287442 0.9999555777101306 0.007257512103960586 0.006014243465287442 -0.9999555776620278 -0.002608402576862527 -0.009057534907320045 0.9999555776620278 0.002608402576862527 0.009057534907320045 -0.9999555782419665 -0.005162296496035368 -0.007886205530005717 0.9999555782419665 0.005162296496035368 0.007886205530005717</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"128\" source=\"#ID790\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID788\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID791\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"294\">-0.3524052240098752 -0.2361568945663559 0.3968896729741346 0.1922852666439943 0.4737327008967246 -0.9152355322345628 0.9630262887515753 -0.6354626856147748 -0.4167537122269166 -0.1324198059202896 0.4655388858093918 0.08953581466919515 0.09695620062060414 -0.9810664844640712 0.6730670627304097 -0.8361327489468616 -0.2567247963027225 -0.31560409935685 0.2973352684969716 0.2683873916988639 0.7882870625951499 -0.7713646321021612 1.150086384430147 -0.3900178469634608 -0.783870346512475 1.378704611404 0.06212354191532857 -0.07234147090675236 -1.289966888573064 1.118085413747316 -0.3008224430983176 -0.9484756688791239 -0.4367617780734336 -0.01462412283998805 0.3039367921445285 -0.9584067804719864 0.4893324111284635 -0.02983363233461241 -0.2203908618967485 1.503989911589727 0.04433562663634652 -0.07875933781474324 -0.8016174477820905 1.372301469794169 -0.1429120515214738 -0.367198117649849 0.1809070857644482 0.3155180012112068 1.022592991639205 -0.5743581365222055 1.234023150294384 -0.1285484832020004 -1.275396677288614 1.12832667461258 0.07671628909398423 -0.06208436965356513 -1.66136548078844 0.7619376860652442 -0.6628716918210396 -0.8170859861489843 -0.4073515623064179 0.1011264290438674 -0.09476487502684913 -0.9804405628471385 0.4626568454837426 -0.1490324395691673 0.3650414996825432 1.493042349004655 0.02493089743164573 -0.08076808610367456 -0.2397426200746382 1.50198664557768 -0.02066572129329647 -0.3914599007726098 0.05736325230823958 0.3346473762187736 1.17267479942198 -0.3439402612969316 1.223643632931941 0.1302055707804858 -1.651269230232574 0.7751163069047897 0.08682001596138418 -0.04889598984901968 -1.882760478217731 0.3355170423070947 -0.9419647060013334 -0.6102700701630079 -0.3353501529221609 0.1995466050261453 -0.4668875889383237 -0.9047897006971836 0.3922070304645184 -0.2514821593426724 0.3457982769905845 1.495615404073835 0.9203364240227525 1.346830328258524 0.005635596625816379 -0.07818806575251706 -0.06697561493530457 0.3275468783499481 1.126355299807839 0.3752155678757479 0.1040111679385125 -0.388637340607042 1.238011217856225 -0.09244888651659929 -1.878050069741289 0.3504523016984736 0.09153118311425376 -0.03395832490335624 -1.93459673056012 -0.123302009428372 -1.117289405717435 -0.3613891006095253 -0.2344980136134975 0.272067017744716 -0.7734592826352205 -0.7528807175430338 0.2920443195803396 -0.3274591628500121 0.9029042283172811 1.35375431886067 1.39616406775141 1.078353125365281 -0.01183525826232684 -0.07124871822464581 -0.186897061406765 0.2942037124704471 0.9447253547904824 0.5959672029532446 0.2257787374954082 -0.3581771099131729 1.214189184550729 0.169958907902574 0.09043585409260579 -0.01858633654730853 -1.812203419199725 -0.5737500453082663 -1.93569205005432 -0.1079301547813531 -1.190013434193229 -0.09824780362384109 -0.1179073442473178 0.3167816077142103 -0.9983469950028587 -0.5495662572713074 0.1755912440477331 -0.3743751425856143 1.382091246066081 1.089018993299208 1.75026303628513 0.7114738979672752 -0.02592837582048213 -0.06056746696411634 -0.2952586744430266 0.2337084769733447 0.6794575272154855 0.7773668085625854 0.3372907202383119 -0.2986409217881123 1.092513136402134 0.4297375884811659 0.08363089132390443 -0.004153551560189934 -1.526489466348473 -0.9758143642852514 -1.819006096267833 -0.5593221080025462 -1.168978557164991 0.1615496775993526 0.005430313511846641 0.3347777810011712 -1.13847441899684 -0.3136789370305894 0.05211876781394509 -0.3929897756725005 1.740805216807092 0.7249390145054863 1.951177325817038 0.2788063115482746 -0.03539234262457076 -0.04709359816704189 -0.3809160440027784 0.146093917292971 0.3383174364586705 0.8966761424705388 0.4270405228667517 -0.2102904844304112 0.8659105981995169 0.6639631861579365 0.07171849013542153 0.008062775638568245 -1.102793304223511 -1.293774310216109 -1.538389610930159 -0.9636106058033177 -1.192697017918619 -0.05808015184411099 -1.060803453390981 0.4063081240514468 -0.07222633956791902 -0.3845717407713823 0.1297449779240717 0.3265826019173688 1.947182244123232 0.2938766420839853 1.981042651962162 -0.1812112976198525 -0.03938788681399102 -0.0320215229750103 -0.4299897675531783 0.03654607664910618 -0.0524315242956043 0.9283402239298384 0.4802244090786475 -0.09863015383275404 0.5419672336339126 0.840067431844499 0.05575920687481053 0.01697370996765415 -0.5787908752940257 -1.499364633663538 -1.118723112271001 -1.28487983214167 -1.156099853862085 0.2066797400671177 -0.8675436049402432 0.6248879863575346 -0.1921656442747269 -0.3487502314162322 0.2497335503953799 0.2916925404031848 1.982871524296908 -0.1658838045780912 1.837226823603213 -0.6277221656035168 -0.03755897012292375 -0.01669365819150997 -0.4435596451746486 0.8574897570892256 0.1549471133513004 0.926271017659403 -0.4314797661798583 -0.08241555601430506 0.4850983193021703 0.02291896507682182 0.03716949338786759 0.02178844157197701 -0.0009938348333969052 -1.574320909725511 -0.5973340108549068 -1.494561963904799 -1.020058250736914 0.4652208336946513 -0.590668199735378 0.8003619256414625 -0.3002610023705488 -0.2850266574071003 0.3573215388483328 0.2282013813533236 1.844715281581389 -0.6135032123919676 1.53248244939769 -1.021051126561889 -0.03006746412218775 -0.00246891752738707 -0.7787690196498813 0.6932719536246276 -0.2397379242648021 0.9092043715946208 -0.3847025093323656 -0.1940833813882925 0.44076218466755 0.1365952386707551 0.01760077999626869 0.02207835371030489 0.5791832437635509 -1.51196408310349 -0.02050822442818087 -1.574031800828231 1.544954207250127 -1.00921122784879 1.093911919977969 -1.326263772815833 -0.017581589667695 0.009384382415771322 1.110257215438868 -1.317846356961747 0.560426229320167 -1.516213318070019 -0.001204457374191035 0.01781819349283538</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"147\" source=\"#ID791\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID787\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID785\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID786\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"126\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 3 2 2 1 1 4 1 5 2 6 3 5 2 4 1 7 0 1 4 8 5 3 6 9 7 3 6 8 5 10 5 6 6 11 7 6 6 10 5 4 4 12 8 0 9 13 10 2 11 13 10 0 9 7 9 14 10 5 11 14 10 7 9 15 8 16 12 17 13 18 14 19 14 20 13 21 12 9 15 8 16 22 17 23 18 22 17 8 16 10 16 24 17 25 18 24 17 10 16 11 15 26 19 17 20 16 21 21 21 20 20 27 19 28 22 12 23 29 24 13 25 29 24 12 23 15 23 30 24 14 25 30 24 15 23 31 22 18 26 17 27 32 28 33 28 20 27 19 26 22 29 23 30 34 31 35 32 34 31 23 30 25 30 36 31 37 32 36 31 25 30 24 29 38 33 17 34 26 35 27 35 20 34 39 33 40 36 28 37 41 38 29 39 41 38 28 37 31 37 42 38 30 39 42 38 31 37 43 36 32 40 17 41 44 42 45 42 20 41 33 40 34 43 35 44 46 45 47 46 46 45 35 44 37 44 48 45 49 46 48 45 37 44 36 43 38 47 50 48 17 49 20 49 51 48 39 47 40 50 41 51 52 52 53 53 52 52 41 51 42 51 54 52 55 53 54 52 42 51 43 50 44 54 17 55 56 56 57 56 20 55 45 54 46 57 47 58 58 59 59 60 58 59 47 58 49 58 60 59 61 60 60 59 49 58 48 57 50 61 62 62 17 63 20 63 63 62 51 61 52 64 53 65 64 66 65 67 64 66 53 65 55 65 66 66 67 67 66 66 55 65 54 64 17 68 68 69 56 70 57 70 69 69 20 68 58 71 59 72 70 73 71 74 70 73 59 72 61 72 72 73 73 74 72 73 61 72 60 71 62 75 74 76 17 77 20 77 75 76 63 75 64 78 65 79 76 80 77 81 76 80 65 79 67 79 78 80 79 81 78 80 67 79 66 78 17 82 80 83 68 84 69 84 81 83 20 82 70 85 71 86 82 87 83 88 82 87 71 86 73 86 84 87 85 88 84 87 73 86 72 85 74 89 86 90 17 91 20 91 87 90 75 89 76 92 77 93 88 94 89 95 88 94 77 93 79 93 90 94 91 95 90 94 79 93 78 92 17 96 92 97 80 98 81 98 93 97 20 96 94 99 82 100 95 101 83 102 95 101 82 100 84 100 96 101 85 102 96 101 84 100 97 99 86 103 98 104 17 105 20 105 99 104 87 103 88 106 89 107 100 108 101 109 100 108 89 107 91 107 102 108 103 109 102 108 91 107 90 106 17 110 104 111 92 112 93 112 105 111 20 110 106 113 94 114 107 115 95 116 107 115 94 114 97 114 108 115 96 116 108 115 97 114 109 113 98 117 110 118 17 119 20 119 111 118 99 117 101 120 112 121 100 122 113 123 100 122 112 121 114 121 102 122 115 123 102 122 114 121 103 120 17 124 116 125 104 126 105 126 117 125 20 124 118 127 106 128 119 129 107 130 119 129 106 128 109 128 120 129 108 130 120 129 109 128 121 127 110 131 122 132 17 133 20 133 123 132 111 131 112 134 118 135 113 136 119 137 113 136 118 135 121 135 115 136 120 137 115 136 121 135 114 134 17 138 124 139 116 140 117 140 125 139 20 138 122 141 126 142 17 143 20 143 127 142 123 141 126 144 124 145 17 146 20 146 125 145 127 144</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID787\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID788\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID792\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID793\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID797\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"3000\">-0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6599755552388213 -0.2110605656262994 -0.4038876655467332 -0.6593004753147014 -0.2471682366234536 -0.3738070728187495 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6593004753146925 -0.2896151071027473 -0.3533719003970641 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553533 -0.2166877960838995 -0.4074594691207958 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553595 -0.290664991550928 -0.3599551311343143 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6353929590919734 -0.2153506835256261 -0.3254173588761635 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6352704084316763 -0.1350577549253219 -0.3924115696597683 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6653740169546225 -0.1952822619770557 -0.4268300202272144 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6513937049553551 -0.2016960844485938 -0.4287197559146985 -0.6750754936750845 -0.1973848468352912 -0.451112998031761 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6626734719811758 -0.3169360572043124 -0.3479840266978727 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6352704084316745 -0.3092081004233194 -0.2790487921747062 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007066 0.001004359731380689 -0.385805886319929 -0.5523476155007137 -0.113931470369971 -0.370947482319252 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.5693867754609441 -0.1382332212536158 -0.3914501627333473 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6943021303571886 -0.2191789836793151 -0.4875372019154716 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.5693867754609432 -0.3070646841180728 -0.2815848098829852 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.5523476155007128 -0.2159063666667291 -0.3211315775581061 -0.552347615500711 -0.2994080838107074 -0.2485736268703818 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.4096248311554938 -0.2182154553949578 -0.3162568096566345 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.671584151518009 -0.3383903825437091 -0.359540020809447 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.692613979992986 -0.3604445453062118 -0.3968553827576205 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.4096248311554938 -0.002616497898330294 -0.3827606676143778 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919787 -0.30682720466757 0.05973875363025805 -0.6353929590919787 -0.3120099824776935 -0.03274670318109729 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919787 -0.2746116622930116 0.1465878234146771 -0.6353929590919822 -0.2182281272233411 0.2200825507490549 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919787 -0.1426866649410332 0.2736930767599968 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919787 -0.05470052852914087 0.3026554134857515 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.0379127025517807 0.3043966728907036 -0.6353929590919769 0.1269257263899759 0.2787616767030843 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.2044294447642872 0.2280288572129623 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.2635383615910281 0.1567058184409422 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919787 0.2989941374167471 0.07112967136411275 -0.6353929590919742 0.3076513428396748 -0.02109589563357162 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.635392959091976 -0.3584954115964931 -0.1511534362496709 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.6353929590919707 -0.3002871332391609 -0.2493943671151704 -0.6353929590919805 -0.2897061565363328 -0.122651096280888 -0.6353929590919787 -0.2135972779385058 -0.32600555699025 -0.6353929590919751 -0.2418887774560047 -0.2019870671745125 -0.6353929590919751 -0.1728132329397168 -0.2637048600294909 -0.6353929590919769 -0.1100337098236535 -0.3736383779300359 -0.6353929590919805 -0.08861221859959634 -0.3023194316892564 -0.6353929590919787 0.004623809380190247 -0.3888508797485288 -0.6353929590919734 0.00322709229578777 -0.3144019168039443 -0.6353929590919734 0.09454591957336178 -0.2988764489839193 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.6353929590919814 0.1772319464308227 -0.2571232437770454 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919787 0.2439402056737099 -0.1928532508196104 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919805 0.2887398122901175 -0.1117770248807661 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.6943021303571868 -0.2052925370755092 -0.4951360937777154 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.6926139799929896 -0.3732989231139052 -0.3884575837415696 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555009 -0.1154309700623928 -0.3657568385889922 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.4096248311555026 -0.3018495227465258 -0.2386576864943757 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.5523476155007128 -0.3586939181348026 -0.1455046167511125 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.5523476155007074 0.1140112559561131 -0.3676807412804246 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.4096248311555018 0.110195158303837 -0.365756838588992 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.5523476155007128 0.05102851425888311 0.3783269544330786 -0.6353929590919734 0.1579665433403898 0.3464454977740265 -0.6353929590919787 0.04762730165452944 0.3782229140287544 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.5523476155007092 0.1607064742337612 0.3456241755637841 -0.6353929590919734 0.2540424688596996 0.2835563211029926 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.5523476155007057 0.2558761293599332 0.2820458016131524 -0.6353929590919734 0.3273119380180543 0.1951422898993671 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.5523476155007074 0.3280760023370704 0.1932405769874204 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6353929590919787 0.3819964906568851 -0.02526363652357588 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.5523476155007074 0.3805228039482229 -0.02694699505933906 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919787 0.3030200242278591 -0.2381772270811946 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.5523476155007128 0.2998173369348902 -0.2384172784435326 -0.6353929590919769 0.2203293041006291 -0.3178477154711459 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.5528800951160573 0.2172819640371382 -0.3161706787697631 -0.6353929590919805 0.1178273536083925 -0.3696054324411768 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.635392959091976 -0.386146279790015 -0.03970576626848144 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.6353929590919734 -0.3797178894091073 0.0749409584148717 -0.5523476155007083 -0.3852132577591758 -0.03416735594132803 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.6353929590919734 -0.3397833450122788 0.182599995758493 -0.5523476155007074 -0.3777345511492702 0.08003960467104276 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007083 -0.3369275091286015 0.1869694299169844 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919725 -0.1762515223752795 0.3401616225559682 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.5523476155007119 -0.1724635843416438 0.3424823130470712 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.646864662078432 -0.203405842626841 -0.49647345038602 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.7498880911616705 -0.3059753762038042 -0.588853519824625 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.646864662078432 -0.3752734004804061 -0.3872557687643061 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4194769430625926 -0.5072742786180671 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.5523476155007066 0.3714929529053281 0.08654518995316995 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.4096248311554946 0.3790458131776442 -0.02862906294591738 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.5523476155007066 0.3592101778098178 -0.1353157721243574 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6353929590919734 -0.2698888249206223 0.2737052792614061 -0.5523476155007128 -0.2664167439426989 0.2771202149865817 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.63527040843167 -0.08954993390020127 0.3991083399793642 -0.5523476155007074 -0.067914429574502 0.3769880584322898 -0.6353929590919805 -0.06739441528367607 0.3767929310482137 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.7498880911616723 -0.2895334442087022 -0.6005396489204604 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.7498880911616705 -0.4340950891970543 -0.499092407557725 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.4096248311554938 -0.3588938889732879 -0.1398551026486246 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 -0.05965802939016185 0.378430882198927 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555026 0.0544259722474314 0.3784308821989262 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555035 0.1634449971461989 0.3448030786304911 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555009 0.2577093205331986 0.2805359767272364 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.4096248311555026 0.3288400666560847 0.1913388640754774 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919751 0.3710588442244218 0.08988151340965223 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.5693867754609441 0.4003021200787773 0.07626844977011249 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555009 0.3705209579622988 0.08513849497724446 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.4096248311555018 0.353661831830552 -0.1398555719756018 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6353929590919796 0.3595833115298375 -0.1370543845251584 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.5693867754609432 0.3913417294285184 -0.1249651129423768 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555026 0.2966146496419244 -0.2386576864943784 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555035 -0.3842783584204311 -0.02862906294591561 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3757553805130004 0.08513849497724468 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.4096248311555009 -0.3340753903145862 0.1913388640754752 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.5693867754609396 -0.2719716980458029 0.3064373629071593 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.4096248311555026 -0.2629395003680077 0.2805359767272362 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.4096248311555009 -0.1686775236159138 0.344803078630492 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.569386775460945 -0.09281457235417689 0.3985063624252229 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.7090420762287968 -0.2874876479147179 -0.602516792064193 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.8013601194140865 -0.3879320877116523 -0.67039348774972 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.7090420762287977 -0.4367200162079142 -0.4979973363081749 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4664152727144727 -0.6198645438985282 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.4096248311555009 0.2147541689374999 -0.3145660498344389 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6353929590919787 0.3825526243518846 -0.02369479377026829 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6352704084316745 0.390242077547672 -0.1280975232137667 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6485078321451319 -0.2026042321496425 0.3922607467423533 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8013601194140847 -0.3699239740471966 -0.68768244230034 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.80136011941409 -0.4882319184803182 -0.6115233269428588 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6468646620784373 0.5238707318271791 0.07342456295127464 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6943021303571921 0.5236792464204465 0.07112145814200943 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6943021303571841 0.517043451061737 -0.1277829521139751 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 0.5170068435575141 -0.1300945095021002 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.6468646620784391 -0.3308206265002216 0.415133040291665 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6352704084316692 -0.2743840387090284 0.3041560958821492 -0.6921417995076853 -0.3287194308498441 0.4161069500887595 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6529114708537209 -0.2466364891581916 0.3758356166530364 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.6943021303571877 -0.152736832832545 0.5090402621681872 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6468646620784382 -0.1507163801953482 0.5101587622204423 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.653860036994053 -0.1638002776680076 0.4189758144893289 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.7631488685855139 -0.368321729292914 -0.6892994802409458 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.8116524224797068 -0.4101016673644152 -0.6884824007465789 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.763148868585521 -0.4903500099018723 -0.6106917921775898 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8116524224797157 -0.4742305055401503 -0.6473913595854128 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6593004753146952 0.4479843142165747 0.01983680868526938 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6593004753146978 0.4403972118479926 -0.02654360852236581 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6352704084316638 0.3995202213346316 0.07949436874845772 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6593004753147014 0.4443339265334265 -0.07349062072332524 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6756311768161822 -0.2944228926580194 0.387397505511445 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6614189797439858 -0.2743840387090284 0.3735233365013644 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6747676151779896 -0.1449516369334007 0.4643853021261747 -0.6631470792204954 -0.1455688019085261 0.4400199855967352 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547497 -0.3971529360612197 -0.7167433940105625 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.8178301922547515 -0.5049855023614195 -0.6485656532287289 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7090420762287977 0.6579175752165209 0.05480823907042609 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.7498880911616714 0.6572534587705938 0.05204190853458335 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6778989647704119 0.4817331665989855 0.05558884716538959 -0.6943021303571921 0.524179098424334 0.05529962441563985 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.7498880911616705 0.6555282128020981 0.03194215941029177 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6943021303571886 0.5177544626592407 -0.1124442858174459 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.7498880911616643 0.6428531554458863 -0.1072570587875812 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7498880911616643 0.6432215583499785 -0.1240061559027752 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288048 0.6436181208726988 -0.1268233004704471 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7090420762288012 -0.3811662700071529 0.540750808715188 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.7498880911616714 -0.3784352375532778 0.5415460738916526 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.694302130357193 -0.315231461622833 0.4243924860918468 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.7498880911616652 -0.3601277308234731 0.5500238086784758 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.694302130357185 -0.1664069196998239 0.5020469147451101 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.7498880911616741 -0.2329851753700075 0.608086426715147 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7498880911616688 -0.2186256471731003 0.6167198278737947 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7090420762288012 -0.216374285663079 0.6184566756051599 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.7835721013289092 -0.3949071877018484 -0.7182367549061146 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.7835721013289092 -0.5072467197379582 -0.6470975984437923 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6675366756659305 0.459744747159448 0.0450740455663754 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6526904741666666 0.4505384291730921 -0.07105141109064839 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6740110600906073 0.4744088497915284 -0.1123860892722635 -0.6649450145512192 0.4535585294988176 -0.09976201959886932 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.7631488685855263 0.7737183373908629 0.0292134923643772 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140785 0.7731368975852322 0.02701141018697184 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7673852767055662 0.002719163174625949 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7636874306784913 -0.09054901839635843 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.8013601194140865 0.7675734580503788 -0.1135813524449243 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855139 0.7679381814309638 -0.115830010631556 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.7631488685855228 -0.4164042405692533 0.6539914485476853 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140936 -0.4142054624537666 0.6545812236004175 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3902570960109448 0.6616374232922907 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140847 -0.3074476549315219 0.7047049693125007 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.8013601194140865 -0.2893766889982832 0.7195100953147174 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7631488685855272 -0.2876049796590507 0.7209378255257664 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8178301922547533 -0.425565052611887 -0.6946105345004985 -0.817830192254748 -0.4493735220693277 -0.6813722847715533 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.7918046221566248 -0.4084674708295207 -0.7287119077620905 -0.8260649658519803 -0.4355147845302588 -0.7130126575489131 -0.826064965851975 -0.4095788371117255 -0.726155690220708 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8178301922547462 -0.4737292643284279 -0.6640149211207245 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.7918046221566382 -0.5114884969586429 -0.6636966047916542 -0.8260649658519652 -0.5086993055057307 -0.6637080188237396 -0.8260649658519732 -0.4866789342855872 -0.6804409147716759 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.7918046221566328 -0.4359836609536457 -0.7156451688837238 -0.8260649658519803 -0.4595551390606225 -0.6968560951290781 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7918046221566257 -0.4889077493276125 -0.6819197828501724 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.7835721013289092 0.8121487826908869 0.02099334768903516 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.817830192254748 0.8119999497198602 0.01830257879653807 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.811652422479713 0.7942255984362352 -0.007201353139407063 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8116524224797121 0.7913720904143722 -0.08331351702608458 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.8178301922547515 0.8079933240878747 -0.1092144995848083 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289101 0.8078769309975089 -0.1119057424975545 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.7835721013289092 -0.4283336312239444 0.6914337540566745 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8178301922547462 -0.4259245570764845 0.6926407128576099 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.8116524224797121 -0.3949630563852169 0.6898632733522164 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.811652422479713 -0.3274667783744006 0.7251516308585906 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.8178301922547497 -0.3132255393488438 0.7524348470711851 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7835721013288968 -0.310830094456806 0.7536686889213788 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.7918046221566391 -0.4609302295579025 -0.698950720201764 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.7918046221566257 0.8280561137127072 0.01462997786756581 -0.8260649658519803 0.8282588629668821 -0.01664280394138018 -0.8260649658519661 0.8264200774160688 0.01237216311160694 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.8260649658519785 0.8261675419561245 -0.07726107632706092 -0.7918046221566328 0.8243315348209972 -0.1071353810754516 -0.8260649658519785 0.8229273085049729 -0.1047286723359511 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.7918046221566417 -0.4307023057052104 0.7084025149703166 -0.826064965851967 -0.4036507868347509 0.7240952321519665 -0.8260649658519768 -0.4279300100234857 0.7081022207971721 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.7918046221566328 -0.3231363171281013 0.7655886930365349 -0.8260649658519679 -0.3245278903888185 0.7631737992345501 -0.8260649658519803 -0.3499836975365173 0.7523578774469109 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.7918046221566382 0.8307646184716744 -0.01571435784857123 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547515 0.8073521858907466 -0.01741379083330807 -0.8178301922547462 0.8080308702460557 -0.04464613669483697 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.817830192254748 0.8054406358853614 -0.07444030386185574 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566399 0.8285681682179982 -0.07843122581316919 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.7918046221566355 -0.4057012576254239 0.7258120677810207 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8178301922547533 -0.392613605536951 0.7063285402846301 -0.817830192254748 -0.3693025851292705 0.7204310274826178 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8178301922547444 -0.3421492035316723 0.7329624332376169 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.7918046221566337 -0.3501615536878261 0.7550262829089434 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8260649658519821 0.8265430035379482 -0.04555756968471769 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8260649658519812 -0.3776970049910842 0.7369512619906119 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 0.829042601472791 -0.04568112001148594 -0.7918046221566382 -0.3788313495221017 0.7391863847872159 -0.7918046221566382 -0.3788313495221017 0.7391863847872159</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1000\" source=\"#ID797\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID794\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID798\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"3000\">-0.6100330350797705 -0.432978057042589 -0.6636186391527805 -0.6107430305208749 -0.4313432930897734 -0.6640300551757034 -0.6131685433316286 -0.6352305123706656 -0.4695812321865837 0.6131685433316286 0.6352305123706656 0.4695812321865837 0.6107430305208749 0.4313432930897734 0.6640300551757034 0.6100330350797705 0.432978057042589 0.6636186391527805 -0.6414932949073833 -0.1910191354735049 -0.7429657074669219 0.6414932949073833 0.1910191354735049 0.7429657074669219 -0.9230582056960787 0.2076733531501404 0.3237828397066665 -0.9087638176408079 0.2443143590689556 0.3383176284198477 -0.9119812894775979 0.2460334925802348 0.3282646008505167 0.9119812894775979 -0.2460334925802348 -0.3282646008505167 0.9087638176408079 -0.2443143590689556 -0.3383176284198477 0.9230582056960787 -0.2076733531501404 -0.3237828397066665 -0.5814085771430504 -0.6235265193762986 -0.5226650419331412 0.5814085771430504 0.6235265193762986 0.5226650419331412 -0.6219866060717065 -0.2255011033331463 -0.7498545954136263 0.6219866060717065 0.2255011033331463 0.7498545954136263 -0.9210274254689069 0.188359605763954 0.3409239511248287 -0.9234677517021199 0.1707487320338378 0.3435872262978766 0.9234677517021199 -0.1707487320338378 -0.3435872262978766 0.9210274254689069 -0.188359605763954 -0.3409239511248287 -0.9243339167159471 0.2082873548390461 0.319723612238305 0.9243339167159471 -0.2082873548390461 -0.319723612238305 -0.9018502407217643 0.249016537502691 0.3530678509299122 0.9018502407217643 -0.249016537502691 -0.3530678509299122 -0.4688809399671691 -0.7410968956416455 -0.4805476619502169 0.4688809399671691 0.7410968956416455 0.4805476619502169 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.5313074129219958 -0.1516791908637951 -0.8334901655286883 0.5313074129219958 0.1516791908637951 0.8334901655286883 -0.9193974272347317 0.1904939904256795 0.3441226676722378 0.9193974272347317 -0.1904939904256795 -0.3441226676722378 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 -0.9999900608133926 -0.001856090388062932 -0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 0.9999900608133926 0.001856090388062932 0.004053788709229385 -0.9064264101263384 0.2873078457702411 0.3095890256200023 0.9064264101263384 -0.2873078457702411 -0.3095890256200023 -0.4125080872329844 -0.7444765374883888 -0.5249683448520343 0.4125080872329844 0.7444765374883888 0.5249683448520343 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 -0.6764444667699954 0.5260862490477367 0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 0.6764444667699954 -0.5260862490477367 -0.5154184144354368 -0.4893414839082547 -0.1788419456180993 -0.8535575379633175 0.4893414839082547 0.1788419456180993 0.8535575379633175 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 -0.9999904531793127 -0.002914217444959806 -0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 0.9999904531793127 0.002914217444959806 0.003255900323500613 -0.8847877951732008 0.3876305483478212 0.2586370342779885 0.8847877951732008 -0.3876305483478212 -0.2586370342779885 0.05401064972997639 0.5993988161129192 -0.7986262636291001 0.04971157032437513 0.7278710826830646 -0.683909677347578 0.04569831620770311 0.6180154536524877 -0.7848366472983348 -0.04569831620770311 -0.6180154536524877 0.7848366472983348 -0.04971157032437513 -0.7278710826830646 0.683909677347578 -0.05401064972997639 -0.5993988161129192 0.7986262636291001 -0.9126387109060857 0.2012446850352883 0.3557965150204898 0.9126387109060857 -0.2012446850352883 -0.3557965150204898 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 -0.3800730252366645 -0.8960499327038151 0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 0.3800730252366645 0.8960499327038151 -0.2294319367240278 -0.5884703132773211 -0.5886073228299992 0.554296048968593 -0.5750104179820392 -0.5638465179981029 0.5928238552500531 -0.5954974211095998 -0.6204561645494262 0.5103106596225786 0.5954974211095998 0.6204561645494262 -0.5103106596225786 0.5750104179820392 0.5638465179981029 -0.5928238552500531 0.5884703132773211 0.5886073228299992 -0.554296048968593 -0.4492936185982592 0.5610742779696141 -0.6952200363106335 -0.4368753109454024 0.552964815618193 -0.7094856414154525 -0.4435911602170827 0.5573645162302835 -0.7018345094284296 0.4435911602170827 -0.5573645162302835 0.7018345094284296 0.4368753109454024 -0.552964815618193 0.7094856414154525 0.4492936185982592 -0.5610742779696141 0.6952200363106335 0.0331249413609678 -0.9196095857015579 0.391434474906901 0.007288799048047151 -0.9575732679774761 0.2880977435929935 0.02921517395714277 -0.972018298904142 0.2330813167247683 -0.02921517395714277 0.972018298904142 -0.2330813167247683 -0.007288799048047151 0.9575732679774761 -0.2880977435929935 -0.0331249413609678 0.9196095857015579 -0.391434474906901 -0.9092595095315058 0.2346197211408815 0.3438033315404329 0.9092595095315058 -0.2346197211408815 -0.3438033315404329 0.0278811390736898 -0.1294666985918035 -0.9911917150782147 0.02557206782593211 -0.2876548247142446 -0.9573926943348394 0.02784385059247752 0.01284876764323613 -0.9995297039879475 -0.02784385059247752 -0.01284876764323613 0.9995297039879475 -0.02557206782593211 0.2876548247142446 0.9573926943348394 -0.0278811390736898 0.1294666985918035 0.9911917150782147 0.009825431372019862 -0.4178389509239254 -0.9084679807176186 0.0271922736872749 -0.5474159088744459 -0.8364187963950122 -0.0271922736872749 0.5474159088744459 0.8364187963950122 -0.009825431372019862 0.4178389509239254 0.9084679807176186 0.03669397673521557 0.6999623410633172 -0.7132364777298733 -0.03669397673521557 -0.6999623410633172 0.7132364777298733 -0.9111139540391022 0.1995854796515729 0.3606064323711994 0.9111139540391022 -0.1995854796515729 -0.3606064323711994 -0.6085378327787385 -0.4363385207717332 0.6627898621491521 0.6085378327787385 0.4363385207717332 -0.6627898621491521 -0.4290146282623736 0.5477739795014404 -0.7182549102637957 0.4290146282623736 -0.5477739795014404 0.7182549102637957 0.0355140718306879 -0.9496263193448361 0.3113657083071032 -0.0355140718306879 0.9496263193448361 -0.3113657083071032 0.02675587691421818 -0.5599249416657842 -0.8281112139991341 0.02589537248138592 -0.5533675459134304 -0.8325345571288905 0.02066161520126121 -0.7708648855079502 -0.6366635107716556 0.0193163073801767 -0.6584185702951814 -0.7524040580430462 -0.02589537248138592 0.5533675459134304 0.8325345571288905 -0.02066161520126121 0.7708648855079502 0.6366635107716556 -0.0193163073801767 0.6584185702951814 0.7524040580430462 -0.02675587691421818 0.5599249416657842 0.8281112139991341 0.01414311661247775 -0.8602383968027927 -0.5096958631563011 0.019948224836587 -0.9244137174900406 -0.380869199650106 -0.019948224836587 0.9244137174900406 0.380869199650106 -0.01414311661247775 0.8602383968027927 0.5096958631563011 -0.5897023076858039 0.8014515282654252 -0.09963250549419947 -0.4189594113912097 0.8690844326029823 -0.2629928908048341 -0.3869225765070412 0.8727213960493712 -0.2977386180306301 0.3869225765070412 -0.8727213960493712 0.2977386180306301 0.4189594113912097 -0.8690844326029823 0.2629928908048341 0.5897023076858039 -0.8014515282654252 0.09963250549419947 -0.9099990926414894 0.2258504072914317 0.3476970591160654 0.9099990926414894 -0.2258504072914317 -0.3476970591160654 0.03481463620808104 0.01941661477622277 -0.9992051521966502 -0.03481463620808104 -0.01941661477622277 0.9992051521966502 0.02635295136991371 0.002234022109095546 -0.9996502043711644 -0.02635295136991371 -0.002234022109095546 0.9996502043711644 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.03784136067587975 0.8144840404498097 -0.578950584484333 0.03784136067587975 -0.8144840404498097 0.578950584484333 -0.9173890060384352 0.2293469628645768 0.3252650953062846 0.9173890060384352 -0.2293469628645768 -0.3252650953062846 -0.6122597140083652 -0.4503628205385982 0.6498548857082733 0.6122597140083652 0.4503628205385982 -0.6498548857082733 -0.03958647210302838 -0.8552382005688831 0.5167209416252983 0.03958647210302838 0.8552382005688831 -0.5167209416252983 0.03026716317725075 -0.2976749896778023 -0.9541873502376365 -0.03026716317725075 0.2976749896778023 0.9541873502376365 0.02910907021181551 -0.7855610775535136 -0.6180990660600988 -0.02910907021181551 0.7855610775535136 0.6180990660600988 0.01961372260044477 -0.9291073014986491 -0.3692897564076902 -0.01961372260044477 0.9291073014986491 0.3692897564076902 -0.5991542260006512 0.7982237271597008 -0.06207330235162312 0.5991542260006512 -0.7982237271597008 0.06207330235162312 -0.9157317949075062 0.1970830215706734 0.3501336350653144 0.9157317949075062 -0.1970830215706734 -0.3501336350653144 0.0299077864524713 0.3064717907049849 -0.9514097780723052 -0.0299077864524713 -0.3064717907049849 0.9514097780723052 0.02136018720689605 0.2992869541934073 -0.9539240333758867 -0.02136018720689605 -0.2992869541934073 0.9539240333758867 -0.006913157180589681 0.1302289306279806 0.9914598498604414 -0.007408558792217734 0.4165322447531742 0.909090755831069 -0.005482260976492941 0.139386230751211 0.9902229160605989 0.005482260976492941 -0.139386230751211 -0.9902229160605989 0.007408558792217734 -0.4165322447531742 -0.909090755831069 0.006913157180589681 -0.1302289306279806 -0.9914598498604414 -0.003802609351618076 0.6663786935817081 0.7456037666900933 -0.003797720091156379 0.4255976902132539 0.9049045161823717 0.003797720091156379 -0.4255976902132539 -0.9049045161823717 0.003802609351618076 -0.6663786935817081 -0.7456037666900933 0.001295306138674836 0.8564789233090522 0.5161803716816183 -0.0008944920513999811 0.6733396999513402 0.7393327047773614 0.0008944920513999811 -0.6733396999513402 -0.7393327047773614 -0.001295306138674836 -0.8564789233090522 -0.5161803716816183 0.006332432417781015 0.9251165065025596 0.3796305436818457 0.002908326967066847 0.8606855222858298 0.5091286412703778 -0.002908326967066847 -0.8606855222858298 -0.5091286412703778 -0.006332432417781015 -0.9251165065025596 -0.3796305436818457 0.01231533713361633 0.9984524360191881 -0.05423159114975583 0.007293336385795456 0.9730925818604524 0.2302990107936251 -0.001404844418161865 0.99551776389769 0.09456430709471765 0.001404844418161865 -0.99551776389769 -0.09456430709471765 -0.007293336385795456 -0.9730925818604524 -0.2302990107936251 -0.01231533713361633 -0.9984524360191881 0.05423159114975583 0.01023761722016337 0.980868485680595 -0.1944021733219808 0.0120157990965055 0.998198666219562 -0.05877961661630734 -0.0120157990965055 -0.998198666219562 0.05877961661630734 -0.01023761722016337 -0.980868485680595 0.1944021733219808 0.01414019568378701 0.8726596648110707 -0.4881241279406847 0.02512467636456076 0.7906507610061087 -0.611751685537553 0.01646393589398393 0.9369218021430217 -0.3491510783084469 -0.01646393589398393 -0.9369218021430217 0.3491510783084469 -0.02512467636456076 -0.7906507610061087 0.611751685537553 -0.01414019568378701 -0.8726596648110707 0.4881241279406847 0.03469207648931452 0.5770147196282489 -0.8159966134495859 0.02402975912977263 0.7849144902682695 -0.6191379601050702 -0.02402975912977263 -0.7849144902682695 0.6191379601050702 -0.03469207648931452 -0.5770147196282489 0.8159966134495859 0.03508365640598449 0.3143465129616109 -0.9486597951015225 0.02921019489462125 0.5707659558659806 -0.8205930709789181 -0.02921019489462125 -0.5707659558659806 0.8205930709789181 -0.03508365640598449 -0.3143465129616109 0.9486597951015225 0.01492656118699344 -0.9952036424557336 -0.09667940739356572 -0.01492656118699344 0.9952036424557336 0.09667940739356572 0.01346271275209136 -0.9964377721902609 -0.08324975386068219 0.008347472633542526 -0.9795541238063974 0.2010075576552121 -0.008347472633542526 0.9795541238063974 -0.2010075576552121 -0.01346271275209136 0.9964377721902609 0.08324975386068219 0.008249685662450967 -0.976765905206645 0.2141502022233793 0.002143504963585591 -0.8767179422043012 0.4810000573841198 -0.002143504963585591 0.8767179422043012 -0.4810000573841198 -0.008249685662450967 0.976765905206645 -0.2141502022233793 0.003370248980950642 -0.8703013678452798 0.4925080411002865 0.002686763416736887 -0.7899672717419514 0.6131431243020837 -0.002686763416736887 0.7899672717419514 -0.6131431243020837 -0.003370248980950642 0.8703013678452798 -0.4925080411002865 -0.009335567978409306 -0.5787453233274817 0.8154549024299805 -0.006791809893397876 -0.4554923169053546 0.890213806092988 -0.0007244517714074711 -0.686530526938509 0.7271006194132722 0.0007244517714074711 0.686530526938509 -0.7271006194132722 0.006791809893397876 0.4554923169053546 -0.890213806092988 0.009335567978409306 0.5787453233274817 -0.8154549024299805 -0.9869176053607741 0.09681709921543918 -0.1289189261841074 -0.9999899824504387 -0.00260493943261591 0.003639957324477385 -0.9824989449431362 0.08503230673662772 -0.1657266725565704 0.9824989449431362 -0.08503230673662772 0.1657266725565704 0.9999899824504387 0.00260493943261591 -0.003639957324477385 0.9869176053607741 -0.09681709921543918 0.1289189261841074 -0.007381002033179414 -0.3156791974855449 0.9488372700752583 -0.003997307821499382 -0.4458837485294091 0.8950819539726755 0.003997307821499382 0.4458837485294091 -0.8950819539726755 0.007381002033179414 0.3156791974855449 -0.9488372700752583 -0.9841485037669431 0.06359518961047951 -0.1655517272386327 -0.9999905288897614 -0.001370765720624478 0.004130754424404623 0.9999905288897614 0.001370765720624478 -0.004130754424404623 0.9841485037669431 -0.06359518961047951 0.1655517272386327 -0.002427302614937988 -0.01243128957560056 0.9999197824033201 -0.004057949462573538 -0.1654053068756676 0.9862173277242321 0.004057949462573538 0.1654053068756676 -0.9862173277242321 0.002427302614937988 0.01243128957560056 -0.9999197824033201 -0.05001318370946404 0.8414267630942929 -0.5380517482583845 0.05001318370946404 -0.8414267630942929 0.5380517482583845 -0.9187981593551595 0.2316284903157012 0.3196219404853802 0.9187981593551595 -0.2316284903157012 -0.3196219404853802 -0.5116852732955495 -0.4542311857591191 0.7292819831699693 0.5116852732955495 0.4542311857591191 -0.7292819831699693 -0.05172784220055365 -0.8363317719908131 0.5457777913216892 0.05172784220055365 0.8363317719908131 -0.5457777913216892 -0.5143076157204272 0.8449925937235406 -0.1465441672818575 0.5143076157204272 -0.8449925937235406 0.1465441672818575 -0.9157810847001926 0.1934753844391117 0.3520117619078609 0.9157810847001926 -0.1934753844391117 -0.3520117619078609 0.03592728837289261 0.3424796949339312 0.9388380523328466 0.04335475963781485 0.2054908490064289 0.9776982539574081 0.03964917043178988 0.3525170978793918 0.9349650469331792 -0.03964917043178988 -0.3525170978793918 -0.9349650469331792 -0.04335475963781485 -0.2054908490064289 -0.9776982539574081 -0.03592728837289261 -0.3424796949339312 -0.9388380523328466 0.01644376297839757 0.9974451863900713 -0.06951764384949995 -0.01644376297839757 -0.9974451863900713 0.06951764384949995 0.03793714202236574 0.1449358727658069 -0.9887134903705868 0.02135092118153528 0.2802821764875909 -0.9596801757398549 0.03346756875724736 0.3104113722911479 -0.9500130008551491 -0.03346756875724736 -0.3104113722911479 0.9500130008551491 -0.02135092118153528 -0.2802821764875909 0.9596801757398549 -0.03793714202236574 -0.1449358727658069 0.9887134903705868 0.04357592730064158 -0.986621286913195 -0.1570973417013809 0.04731999989724039 -0.988143031769225 -0.1460622003656307 0.04741565844858901 -0.9527313725054269 -0.3000911314547839 -0.04741565844858901 0.9527313725054269 0.3000911314547839 -0.04731999989724039 0.988143031769225 0.1460622003656307 -0.04357592730064158 0.986621286913195 0.1570973417013809 -0.9612697098559012 0.1241480665562238 -0.2460646307048266 0.9612697098559012 -0.1241480665562238 0.2460646307048266 0.002788247194464847 0.7096494163407977 0.7045494528879771 0.02684474802398928 0.6624818840923926 0.7485967624515366 0.03145112195807651 0.7894354586032027 0.613027310670193 -0.03145112195807651 -0.7894354586032027 -0.613027310670193 -0.02684474802398928 -0.6624818840923926 -0.7485967624515366 -0.002788247194464847 -0.7096494163407977 -0.7045494528879771 -0.06757829711111801 0.7710133873258493 -0.6332231283867335 0.06757829711111801 -0.7710133873258493 0.6332231283867335 -0.9294521394256079 0.253452618746215 0.268105372135372 0.9294521394256079 -0.253452618746215 -0.268105372135372 -0.5121653214427434 -0.4705831108144322 0.7184971950729265 0.5121653214427434 0.4705831108144322 -0.7184971950729265 -0.06755689289069129 -0.8758167307604269 0.4778923731794361 0.06755689289069129 0.8758167307604269 -0.4778923731794361 0.01533915038481843 -0.931302781136795 -0.363922849395779 -0.01533915038481843 0.931302781136795 0.363922849395779 -0.5141693164024285 0.8420130928550114 -0.1632294873207583 0.5141693164024285 -0.8420130928550114 0.1632294873207583 -0.9325766854234757 0.1309140125917365 0.3363959677399454 0.9325766854234757 -0.1309140125917365 -0.3363959677399454 0.001200659249239651 -0.1460802454730157 0.9892720153223333 -0.001200659249239651 0.1460802454730157 -0.9892720153223333 -0.002061751646003162 0.149208950471754 0.9888035387675693 0.002061751646003162 -0.149208950471754 -0.9888035387675693 -0.0009318520237067135 0.433722340755988 0.9010460935939696 0.0009318520237067135 -0.433722340755988 -0.9010460935939696 0.001230385039251648 0.6798257005461618 0.7333726904034371 -0.001230385039251648 -0.6798257005461618 -0.7333726904034371 0.004958609525564488 0.865332610935552 0.5011735075231268 -0.004958609525564488 -0.865332610935552 -0.5011735075231268 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 -0.9999899029374069 0.004470940504090381 0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.9999899029374069 -0.004470940504090381 -0.0004524535829078637 0.03665747372773916 0.2635154343631972 0.9639584251783245 -0.03665747372773916 -0.2635154343631972 -0.9639584251783245 0.009900852030461732 0.9748308572254344 0.2227257796713161 -0.009900852030461732 -0.9748308572254344 -0.2227257796713161 0.02459906767420807 0.9291593642459279 -0.3688600841832339 -0.02459906767420807 -0.9291593642459279 0.3688600841832339 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 -0.9999906035985632 0.004248715561158281 -0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.9999906035985632 -0.004248715561158281 0.0008608894595182098 0.03526949973342622 0.2184273294063683 -0.9752156500779486 -0.03526949973342622 -0.2184273294063683 0.9752156500779486 0.01810657254151843 0.7819003011516978 -0.6231404906517333 -0.01810657254151843 -0.7819003011516978 0.6231404906517333 0.01159606897749572 -0.9972521189634576 -0.07316927228805119 -0.01159606897749572 0.9972521189634576 0.07316927228805119 0.007746355397098426 -0.9745611152693888 0.2239880054443695 -0.007746355397098426 0.9745611152693888 -0.2239880054443695 0.004188632105367766 -0.8653193803481177 0.5012033772382579 -0.004188632105367766 0.8653193803481177 -0.5012033772382579 0.03694298968752306 -0.9660546355743256 -0.2556827264370916 -0.03694298968752306 0.9660546355743256 0.2556827264370916 0.001214459778276763 -0.6793050578937298 0.7338550016232387 -0.001214459778276763 0.6793050578937298 -0.7338550016232387 -0.9165260464188996 0.2413126785897623 -0.3189799325781723 0.9165260464188996 -0.2413126785897623 0.3189799325781723 0.001434244776386382 -0.4349910787918278 0.9004336201594448 -0.001434244776386382 0.4349910787918278 -0.9004336201594448 0.03479758506284582 0.7257101728783496 0.6871199844675382 -0.03479758506284582 -0.7257101728783496 -0.6871199844675382 -0.9053555865328123 0.1174765612269161 -0.4080815108481708 0.9053555865328123 -0.1174765612269161 0.4080815108481708 -0.06837815441249286 0.7838010835826982 -0.61723600783957 0.06837815441249286 -0.7838010835826982 0.61723600783957 -0.925181050407382 0.2544784030417004 0.2815684043930342 0.925181050407382 -0.2544784030417004 -0.2815684043930342 -0.5094027305261349 -0.4031696580921826 0.7602388341346096 0.5094027305261349 0.4031696580921826 -0.7602388341346096 -0.06822779517691434 -0.8673864003091556 0.4929358990010996 0.06822779517691434 0.8673864003091556 -0.4929358990010996 -0.5108147009650829 0.8560080643809171 -0.07948921305931028 0.5108147009650829 -0.8560080643809171 0.07948921305931028 -0.9295497348399154 0.141402496183842 0.3405034868133092 0.9295497348399154 -0.141402496183842 -0.3405034868133092 0.01921047962226295 0.5651345907762262 -0.8247750310120148 -0.01921047962226295 -0.5651345907762262 0.8247750310120148 -0.9072210144294771 -0.4193680273961145 0.03287078604844312 -0.9243377794016469 -0.3811886557337647 0.0171720211599593 -0.924489198402029 -0.3808644361577947 0.0161865162458993 0.924489198402029 0.3808644361577947 -0.0161865162458993 0.9243377794016469 0.3811886557337647 -0.0171720211599593 0.9072210144294771 0.4193680273961145 -0.03287078604844312 -0.03780903634253117 0.08541542107879442 0.9956277831663706 0.03780903634253117 -0.08541542107879442 -0.9956277831663706 -0.915264571564772 -0.4027493562430763 -0.009149867984932962 0.915264571564772 0.4027493562430763 0.009149867984932962 -0.03805664037554967 -0.009784856047856541 -0.9992276761156334 0.03805664037554967 0.009784856047856541 0.9992276761156334 -0.03988346302587386 -0.9059913707647226 -0.4214130342988013 0.03988346302587386 0.9059913707647226 0.4214130342988013 -0.8756294668438924 0.3525945089564383 -0.3300759746610601 0.8756294668438924 -0.3525945089564383 0.3300759746610601 -0.706699211393621 -0.332866770111896 0.6243203808709985 -0.6992610303780938 -0.1874041802288657 0.6898649756490857 -0.7066995161370085 -0.3328394342728472 0.6243346097123314 0.7066995161370085 0.3328394342728472 -0.6243346097123314 0.6992610303780938 0.1874041802288657 -0.6898649756490857 0.706699211393621 0.332866770111896 -0.6243203808709985 -0.038009535614359 0.8723927326412684 0.4873255536467188 0.038009535614359 -0.8723927326412684 -0.4873255536467188 -0.6961182166882092 -0.4697752474880487 0.5428910067797866 0.6961182166882092 0.4697752474880487 -0.5428910067797866 -0.8876323827149847 0.1162542163379045 -0.4456385422507556 0.8876323827149847 -0.1162542163379045 0.4456385422507556 -0.06016248758640132 0.7467500003972328 -0.6623782242753371 0.06016248758640132 -0.7467500003972328 0.6623782242753371 -0.9245527864503199 0.237309528475381 0.298138110213608 0.9245527864503199 -0.237309528475381 -0.298138110213608 -0.5139497895077154 -0.4058857625891543 0.755719763928664 0.5139497895077154 0.4058857625891543 -0.755719763928664 -0.0600348953330893 -0.8956050067033663 0.4407805387153662 0.0600348953330893 0.8956050067033663 -0.4407805387153662 -0.515859789786745 0.8519771407680433 -0.08957471121854281 0.515859789786745 -0.8519771407680433 0.08957471121854281 -0.9272834517509151 0.1632925520749501 0.3368693256230941 0.9272834517509151 -0.1632925520749501 -0.3368693256230941 -0.9059645702483528 -0.4228100787491342 0.02144375813304393 0.9059645702483528 0.4228100787491342 -0.02144375813304393 -0.04998584997638523 0.03649578989508206 0.9980828984218056 0.04998584997638523 -0.03649578989508206 -0.9980828984218056 -0.9111165739877291 -0.4120009636975097 -0.01103605532726058 -0.9026800271055669 -0.4300978238059344 -0.01358788512213859 -0.9126672826667309 -0.4084995448882047 -0.01290554050999234 0.9126672826667309 0.4084995448882047 0.01290554050999234 0.9026800271055669 0.4300978238059344 0.01358788512213859 0.9111165739877291 0.4120009636975097 0.01103605532726058 -0.9164192555908047 -0.4001603245189633 -0.006889315152686308 0.9164192555908047 0.4001603245189633 0.006889315152686308 -0.9098768749122155 -0.4144813710644892 0.01814567553114639 -0.9100128209423325 -0.4141053938628353 0.01983402365341829 0.9100128209423325 0.4141053938628353 -0.01983402365341829 0.9098768749122155 0.4144813710644892 -0.01814567553114639 -0.05007447950133898 -0.04460336033844332 -0.9977490098963712 0.05007447950133898 0.04460336033844332 0.9977490098963712 -0.05223146845994098 -0.8838556721519534 -0.4648344054685892 0.05223146845994098 0.8838556721519534 0.4648344054685892 -0.9150871129800877 0.09156365276906278 -0.3927234054004866 -0.9134603460440244 0.100090271838512 -0.3944263349326765 -0.9055099122664467 0.08478975686936037 -0.415767357926577 0.9055099122664467 -0.08478975686936037 0.415767357926577 0.9134603460440244 -0.100090271838512 0.3944263349326765 0.9150871129800877 -0.09156365276906278 0.3927234054004866 -0.8628976978143381 0.3867850561445824 -0.3252766260430459 0.8628976978143381 -0.3867850561445824 0.3252766260430459 -0.9156800465471477 0.12306795282666 0.3826020535000676 -0.8250636447121634 0.1563131469686213 0.542988197163665 -0.9158353220314106 0.1680129671192036 0.3647153764230731 0.9158353220314106 -0.1680129671192036 -0.3647153764230731 0.8250636447121634 -0.1563131469686213 -0.542988197163665 0.9156800465471477 -0.12306795282666 -0.3826020535000676 -0.9301712002434255 0.04356903436083521 0.3645315863989973 0.9301712002434255 -0.04356903436083521 -0.3645315863989973 -0.9098752187950685 0.1899053550703858 -0.3688672421593123 -0.9102915714758219 0.1919571037046917 -0.3667720344265427 0.9102915714758219 -0.1919571037046917 0.3667720344265427 0.9098752187950685 -0.1899053550703858 0.3688672421593123 -0.05002206568014039 0.8883803733443121 0.4563749611905901 0.05002206568014039 -0.8883803733443121 -0.4563749611905901 -0.9152454586525087 -0.3912460761204535 0.09618866012325544 -0.9335057704990215 -0.3295072998576136 0.1413927713342278 -0.9161764556186254 -0.3981519670093227 0.04577896172588378 0.9161764556186254 0.3981519670093227 -0.04577896172588378 0.9335057704990215 0.3295072998576136 -0.1413927713342278 0.9152454586525087 0.3912460761204535 -0.09618866012325544 -0.8008752262028298 -0.5581038891156944 0.2170689314676397 0.8008752262028298 0.5581038891156944 -0.2170689314676397 -0.9078252336262972 0.2546053228708254 -0.3332108563015343 0.9078252336262972 -0.2546053228708254 0.3332108563015343 -0.06214391660331564 0.7497897154320584 -0.6587514829292707 0.06214391660331564 -0.7497897154320584 0.6587514829292707 -0.9105068842497451 0.232294596580093 0.3420766495005371 0.9105068842497451 -0.232294596580093 -0.3420766495005371 -0.5636529765645513 -0.1834260551652416 0.805388232032502 0.5636529765645513 0.1834260551652416 -0.805388232032502 -0.06204321152616367 -0.8915755561120776 0.4486019033028719 0.06204321152616367 0.8915755561120776 -0.4486019033028719 -0.563551722335448 0.8122020272639635 0.1507890021223632 0.563551722335448 -0.8122020272639635 -0.1507890021223632 -0.9128754411958339 0.2045282989941302 0.3533080861968483 0.9128754411958339 -0.2045282989941302 -0.3533080861968483 -0.8841694971092278 -0.4670196417475235 0.01170276051322128 0.8841694971092278 0.4670196417475235 -0.01170276051322128 -0.6099115313195107 0.7918454994605457 -0.03144247044315008 -0.6271806346804609 0.7782902294104336 -0.0301458170575845 -0.7948062792220184 0.5103440598305962 -0.328377707990168 0.7948062792220184 -0.5103440598305962 0.328377707990168 0.6271806346804609 -0.7782902294104336 0.0301458170575845 0.6099115313195107 -0.7918454994605457 0.03144247044315008 -0.06757420297446912 0.1542219217613901 0.9857227429356539 0.06757420297446912 -0.1542219217613901 -0.9857227429356539 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 -0.8564845503285191 -0.3282729260246124 0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 0.8564845503285191 0.3282729260246124 -0.3983354127965451 -0.9173919056680412 -0.396652180679767 0.03254441544636197 0.9173919056680412 0.396652180679767 -0.03254441544636197 -0.7044687220678403 0.6666170076972114 0.2436094921732724 0.7044687220678403 -0.6666170076972114 -0.2436094921732724 -0.9056948139282527 -0.4239285587280207 -0.001217012017516861 0.9056948139282527 0.4239285587280207 0.001217012017516861 -0.9062955794800263 -0.4218840716820903 0.02534073155818777 0.9062955794800263 0.4218840716820903 -0.02534073155818777 -0.9178702577263617 -0.3968043330700363 -0.007778896977463935 0.9178702577263617 0.3968043330700363 0.007778896977463935 -0.0673402010633347 0.03284261300743482 -0.9971893802541189 0.0673402010633347 -0.03284261300743482 0.9971893802541189 -0.06783519718058229 -0.9323282921296917 -0.3551933863657993 0.06783519718058229 0.9323282921296917 0.3551933863657993 -0.9036091026635394 0.0556782963512844 -0.424724047940556 0.9036091026635394 -0.0556782963512844 0.424724047940556 -0.9151772240300315 0.1669447966678817 -0.3668515823629565 0.9151772240300315 -0.1669447966678817 0.3668515823629565 -0.6447186628852124 0.6879675290323077 0.3332244359657386 -0.6297975146368566 0.6855810967237255 0.3651488057933807 -0.5462375627474104 0.7832296524327782 0.2969441641012638 0.5462375627474104 -0.7832296524327782 -0.2969441641012638 0.6297975146368566 -0.6855810967237255 -0.3651488057933807 0.6447186628852124 -0.6879675290323077 -0.3332244359657386 -0.8004665242590809 0.1327927671656561 0.584482184954404 0.8004665242590809 -0.1327927671656561 -0.584482184954404 -0.9178727869669794 0.2036829255299642 -0.3406212160054408 0.9178727869669794 -0.2036829255299642 0.3406212160054408 -0.06731641938335971 0.8494783472765206 0.5233116062058579 0.06731641938335971 -0.8494783472765206 -0.5233116062058579 -0.7668641844162472 -0.5810340615428355 0.2726146400812705 0.7668641844162472 0.5810340615428355 -0.2726146400812705 -0.6476791120465277 -0.7033306111846984 -0.2929809194967823 -0.6450470615181747 -0.7070854542103706 -0.2897316842716416 -0.6233448385994473 -0.603445758421776 -0.4972870688387107 0.6233448385994473 0.603445758421776 0.4972870688387107 0.6450470615181747 0.7070854542103706 0.2897316842716416 0.6476791120465277 0.7033306111846984 0.2929809194967823 -0.0732053161087646 0.6786547872505393 -0.7308000146656684 0.0732053161087646 -0.6786547872505393 0.7308000146656684 -0.9271360714165975 0.212632426034943 0.3085549488773313 0.9271360714165975 -0.212632426034943 -0.3085549488773313 -0.5682440159721127 -0.2499810897182357 0.7839695103096603 0.5682440159721127 0.2499810897182357 -0.7839695103096603 -0.07326583168045271 -0.9382150080750226 0.3382080964893607 0.07326583168045271 0.9382150080750226 -0.3382080964893607 -0.5680807927105938 0.8189688158964524 0.08108200504714996 0.5680807927105938 -0.8189688158964524 -0.08108200504714996 -0.927548465775947 0.18590322006679 0.3241817953023973 0.927548465775947 -0.18590322006679 -0.3241817953023973 -0.8928491632893021 -0.4470013707692716 0.05486479876920774 0.8928491632893021 0.4470013707692716 -0.05486479876920774 -0.7930586724642184 0.5380222435700273 -0.2856396461508205 -0.6779678389035451 0.5914850813119577 -0.4364687938419465 0.6779678389035451 -0.5914850813119577 0.4364687938419465 0.7930586724642184 -0.5380222435700273 0.2856396461508205 -0.06837946245005622 0.133948004867257 0.9886264112935294 0.06837946245005622 -0.133948004867257 -0.9886264112935294 -0.9187989142657232 -0.3929531117095517 0.0373685314390171 0.9187989142657232 0.3929531117095517 -0.0373685314390171 -0.6084903667744845 -0.3361198159561551 -0.7188622558350478 -0.5626671069308074 -0.09424735772971241 -0.8212935908303943 -0.5792112105076253 -0.03535317024093707 -0.8144105395782932 0.5792112105076253 0.03535317024093707 0.8144105395782932 0.5626671069308074 0.09424735772971241 0.8212935908303943 0.6084903667744845 0.3361198159561551 0.7188622558350478 -0.5114901394861176 -0.3977120680449375 -0.7617105409142576 -0.6142586567780607 -0.3121905317741047 -0.7247229639274684 0.6142586567780607 0.3121905317741047 0.7247229639274684 0.5114901394861176 0.3977120680449375 0.7617105409142576 -0.7165913554401721 0.6650103775153866 0.2103759185488212 0.7165913554401721 -0.6650103775153866 -0.2103759185488212 -0.764937702624227 0.5192485317920021 0.3811184505318785 0.764937702624227 -0.5192485317920021 -0.3811184505318785 -0.5174518251755897 -0.2411286674177418 0.8210362807889765 -0.6030031272843839 -0.3014611009609044 0.7385854270784746 -0.5301106299440702 -0.2511652486673166 0.809875754595843 0.5301106299440702 0.2511652486673166 -0.809875754595843 0.6030031272843839 0.3014611009609044 -0.7385854270784746 0.5174518251755897 0.2411286674177418 -0.8210362807889765 -0.5145052688849753 -0.2999231163421164 0.803324624652595 -0.6060304150691775 -0.3080632070317224 0.7333649817685672 0.6060304150691775 0.3080632070317224 -0.7333649817685672 0.5145052688849753 0.2999231163421164 -0.803324624652595 -0.9180481665079123 -0.3962927934772661 -0.01181464385606148 0.9180481665079123 0.3962927934772661 0.01181464385606148 -0.06822609440622343 0.01557927206212744 -0.9975482375925926 0.06822609440622343 -0.01557927206212744 0.9975482375925926 -0.06836592527621122 -0.9248117108838933 -0.374231745945121 0.06836592527621122 0.9248117108838933 0.374231745945121 -0.9159377876348976 0.1653334364994017 -0.3656813147506822 0.9159377876348976 -0.1653334364994017 0.3656813147506822 -0.5557652605442751 0.7376308132429826 0.3834393805109877 -0.6049336713798291 0.7946676713190241 0.05058206590601672 0.6049336713798291 -0.7946676713190241 -0.05058206590601672 0.5557652605442751 -0.7376308132429826 -0.3834393805109877 -0.6114792617679662 0.7887888748458873 0.06249178623677078 -0.5113431291935486 0.8587529234400222 0.03273561836539834 0.5113431291935486 -0.8587529234400222 -0.03273561836539834 0.6114792617679662 -0.7887888748458873 -0.06249178623677078 -0.6084825682336931 -0.495113360886253 -0.6201707216788357 -0.6410831753865172 -0.6305734637185176 -0.4374808213972034 0.6410831753865172 0.6305734637185176 0.4374808213972034 0.6084825682336931 0.495113360886253 0.6201707216788357 -0.5145324763372529 -0.5486089202616341 -0.6590027188135252 -0.6086877370165386 -0.4987726994136522 -0.6170291995726814 0.6086877370165386 0.4987726994136522 0.6170291995726814 0.5145324763372529 0.5486089202616341 0.6590027188135252 -0.9180510116488734 0.2069327617052255 -0.3381732871525023 0.9180510116488734 -0.2069327617052255 0.3381732871525023 -0.06820506512298212 0.8583605711733054 0.5084930667635563 0.06820506512298212 -0.8583605711733054 -0.5084930667635563 -0.07788897801981856 0.7203251955069255 -0.6892495337836203 0.07788897801981856 -0.7203251955069255 0.6892495337836203 -0.9186236678224693 0.2137604419261941 0.3323206740242198 0.9186236678224693 -0.2137604419261941 -0.3323206740242198 -0.5912354405693278 -0.06373945870929254 0.8039763275235403 0.5912354405693278 0.06373945870929254 -0.8039763275235403 -0.07801011213032839 -0.9149104860515087 0.3960469983706556 0.07801011213032839 0.9149104860515087 -0.3960469983706556 -0.5911901739412696 0.7634359260444917 0.2601149074157052 0.5911901739412696 -0.7634359260444917 -0.2601149074157052 -0.918427191400784 0.2082707995037445 0.3363253903138127 0.918427191400784 -0.2082707995037445 -0.3363253903138127 -0.5552116476461365 0.1310993066410967 -0.8213117545221707 -0.5611802421407521 0.1223351114562133 -0.8186029906712061 0.5611802421407521 -0.1223351114562133 0.8186029906712061 0.5552116476461365 -0.1310993066410967 0.8213117545221707 -0.6408955186930352 0.6368247591987463 -0.4286107327058484 0.6408955186930352 -0.6368247591987463 0.4286107327058484 -0.06018780181180793 0.1916292067335681 0.9796201690654016 0.06018780181180793 -0.1916292067335681 -0.9796201690654016 -0.9294544655857993 -0.3596552207152826 0.08223453419858177 0.9294544655857993 0.3596552207152826 -0.08223453419858177 -0.5119734798882151 -0.3801411073322832 -0.7703089603576846 0.5119734798882151 0.3801411073322832 0.7703089603576846 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 -0.6976941204713246 -0.7149657018733655 -0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 0.6976941204713246 0.7149657018733655 0.04524333547021724 -0.7827724052343109 0.4885261484066231 0.3854991101503113 0.7827724052343109 -0.4885261484066231 -0.3854991101503113 -0.6840994787240873 0.1363722874922993 0.7165266934410397 -0.6147039237146543 0.238512470860314 0.7518316882214503 -0.6653394530452826 0.165916713449703 0.7278702194893354 0.6653394530452826 -0.165916713449703 -0.7278702194893354 0.6147039237146543 -0.238512470860314 -0.7518316882214503 0.6840994787240873 -0.1363722874922993 -0.7165266934410397 -0.5846765150393855 0.2775554521153094 0.7623098738455811 0.5846765150393855 -0.2775554521153094 -0.7623098738455811 -0.5144696680899629 -0.2827869085697489 0.8095384641615049 0.5144696680899629 0.2827869085697489 -0.8095384641615049 -0.9325779507189076 -0.3562891568629708 -0.0579344675887886 0.9325779507189076 0.3562891568629708 0.0579344675887886 -0.06008517546283819 0.07478840775462761 -0.9953875957410397 0.06008517546283819 -0.07478840775462761 0.9953875957410397 -0.06016537746400757 -0.9456188928128914 -0.3196639437126669 0.06016537746400757 0.9456188928128914 0.3196639437126669 -0.9294575191574707 0.1069983269701304 -0.3530723411812842 0.9294575191574707 -0.1069983269701304 0.3530723411812842 -0.5118224780352834 0.8574987258211545 0.05228466498810563 0.5118224780352834 -0.8574987258211545 -0.05228466498810563 -0.514493135926281 -0.5625126092319087 -0.6472065957172033 0.514493135926281 0.5625126092319087 0.6472065957172033 -0.9325781432366856 0.2270966540840191 -0.280579964468348 0.9325781432366856 -0.2270966540840191 0.280579964468348 -0.06002763057924118 0.8270709642152402 0.5588830859125324 0.06002763057924118 -0.8270709642152402 -0.5588830859125324 -0.07605661316331486 0.6351470128865732 -0.7686375372146413 0.07605661316331486 -0.6351470128865732 0.7686375372146413 -0.9208305953623421 0.2088271071494026 0.3293360805685381 0.9208305953623421 -0.2088271071494026 -0.3293360805685381 -0.8621478316094056 0.2290208849793479 0.4519408707944841 0.8621478316094056 -0.2290208849793479 -0.4519408707944841 -0.6042033250166701 -0.04459964845335795 0.7955810539452516 0.6042033250166701 0.04459964845335795 -0.7955810539452516 -0.0760742450757196 -0.9574640025019078 0.27834401942414 0.0760742450757196 0.9574640025019078 -0.27834401942414 -0.6041792882639404 0.748119712716962 0.2743798153603302 0.6041792882639404 -0.748119712716962 -0.2743798153603302 -0.8666360269162206 0.3018712000249856 0.3972603371170386 0.8666360269162206 -0.3018712000249856 -0.3972603371170386 -0.06215953815997215 0.1869805446352334 0.9803950569763448 0.06215953815997215 -0.1869805446352334 -0.9803950569763448 -0.9251817572127729 -0.3717791800066462 0.07628209117657712 0.9251817572127729 0.3717791800066462 -0.07628209117657712 -0.5094391278008816 -0.4503793007937866 -0.7332327464604789 0.5094391278008816 0.4503793007937866 0.7332327464604789 -0.5107042903204709 -0.3659351517327707 0.7779926687151866 0.5107042903204709 0.3659351517327707 -0.7779926687151866 -0.9295512194985515 -0.3651508688837732 -0.05098404929172666 0.9295512194985515 0.3651508688837732 0.05098404929172666 -0.06207876760437363 0.06602698698797134 -0.9958848646314555 0.06207876760437363 -0.06602698698797134 0.9958848646314555 -0.06213739111210562 -0.9439802191053086 -0.3240991986470726 0.06213739111210562 0.9439802191053086 0.3240991986470726 -0.9251831321196651 0.1181898446877643 -0.3606484890498343 0.9251831321196651 -0.1181898446877643 0.3606484890498343 -0.5092947909307791 0.8601651410365301 -0.027106199962007 0.5092947909307791 -0.8601651410365301 0.027106199962007 -0.5105354677853689 -0.4940289674119409 -0.703767657320984 0.5105354677853689 0.4940289674119409 0.703767657320984 -0.9295504993104691 0.2254579596928901 -0.2917268887894581 0.9295504993104691 -0.2254579596928901 0.2917268887894581 -0.06203113682986364 0.8318660453007373 0.551498885528617 0.06203113682986364 -0.8318660453007373 -0.551498885528617 -0.07783629645161526 0.6386398399740993 -0.7655590543861087 0.07783629645161526 -0.6386398399740993 0.7655590543861087 -0.9138229107542849 0.2183939193754576 0.3423912729033732 0.9138229107542849 -0.2183939193754576 -0.3423912729033732 -0.4787989807562905 0.4668933018719641 0.7434797782682678 -0.5524074943628621 0.4050841393154985 0.7285278307976754 -0.5345884589721218 0.4034395796788172 0.7425979296243637 0.5345884589721218 -0.4034395796788172 -0.7425979296243637 0.5524074943628621 -0.4050841393154985 -0.7285278307976754 0.4787989807562905 -0.4668933018719641 -0.7434797782682678 -0.05182109757684491 -0.4514163579221916 -0.8908074122088315 -0.06712979634411644 -0.500579809610561 -0.8630836834589403 -0.06467178653120824 -0.4384108387102168 -0.8964449210789618 0.06467178653120824 0.4384108387102168 0.8964449210789618 0.06712979634411644 0.500579809610561 0.8630836834589403 0.05182109757684491 0.4514163579221916 0.8908074122088315 -0.07792118493082251 -0.9559677627777016 0.2829380240773106 0.07792118493082251 0.9559677627777016 -0.2829380240773106 -0.544217945097606 0.4868904901393766 0.6832016384974328 -0.5296654684248241 0.4971931921921262 0.687206971149242 0.5296654684248241 -0.4971931921921262 -0.687206971149242 0.544217945097606 -0.4868904901393766 -0.6832016384974328 -0.06556201067145182 -0.5654470917961071 -0.8221746828600607 -0.04893206091694585 -0.6042992393415967 -0.7952534707535631 -0.06331144630405373 -0.6168950586009265 -0.784494835827903 0.06331144630405373 0.6168950586009265 0.784494835827903 0.04893206091694585 0.6042992393415967 0.7952534707535631 0.06556201067145182 0.5654470917961071 0.8221746828600607 -0.07317435867671789 0.2852169995987944 0.9556656195407013 0.07317435867671789 -0.2852169995987944 -0.9556656195407013 -0.9245447371101613 -0.3773552231352665 0.05310428094265093 0.9245447371101613 0.3773552231352665 -0.05310428094265093 -0.5139838480450424 -0.4451092818304552 -0.7332791631958371 0.5139838480450424 0.4451092818304552 0.7332791631958371 -0.5157659772286117 -0.3552253929522392 0.7796155314867339 0.5157659772286117 0.3552253929522392 -0.7796155314867339 -0.9272834542399263 -0.373133423886244 -0.03027942324085647 0.9272834542399263 0.373133423886244 0.03027942324085647 -0.07322677161913004 0.1848207446832606 -0.980040372766839 0.07322677161913004 -0.1848207446832606 0.980040372766839 -0.07315269852634401 -0.9712587534489104 -0.2265063278303333 0.07315269852634401 0.9712587534489104 0.2265063278303333 -0.924551007271137 0.1411219268150242 -0.3539633268093474 0.924551007271137 -0.1411219268150242 0.3539633268093474 -0.5138680084800981 0.857573090590434 -0.02254027852243685 0.5138680084800981 -0.857573090590434 0.02254027852243685 -0.5156107881351871 -0.500749424973523 -0.6952665161988583 0.5156107881351871 0.500749424973523 0.6952665161988583 -0.9272779039266812 0.2114525434248893 -0.3089393318573824 0.9272779039266812 -0.2114525434248893 0.3089393318573824 -0.07323009189041933 0.7592000544660637 0.6467245402336659 0.07323009189041933 -0.7592000544660637 -0.6467245402336659 -0.07183856815325576 -0.5367001228199709 -0.8407093423358147 -0.07384419633644265 -0.4918662305097807 -0.8675336569560422 0.07384419633644265 0.4918662305097807 0.8675336569560422 0.07183856815325576 0.5367001228199709 0.8407093423358147 -0.4571428387213803 0.4708925370562133 0.7545068876759978 0.4571428387213803 -0.4708925370562133 -0.7545068876759978 -0.07317072936235344 -0.5741876618940569 -0.815447468138333 0.07317072936235344 0.5741876618940569 0.815447468138333 -0.07786128607335852 0.2282437525088427 0.9704856565512368 0.07786128607335852 -0.2282437525088427 -0.9704856565512368 -0.910518420051696 -0.4126184541394979 0.02649939716473525 0.910518420051696 0.4126184541394979 -0.02649939716473525 -0.5636615363401881 -0.6008612160141833 -0.5667905005736916 0.5636615363401881 0.6008612160141833 0.5667905005736916 -0.5636121577228427 -0.5422177340050004 0.6231703335344874 0.5636121577228427 0.5422177340050004 -0.6231703335344874 -0.9128840725037823 -0.4082071319792981 -0.003099608063125092 0.9128840725037823 0.4082071319792981 0.003099608063125092 -0.07794444694945403 0.123244223494892 -0.9893106309773917 0.07794444694945403 -0.123244223494892 0.9893106309773917 -0.07784980261668228 -0.9558510645399539 -0.2833516378113609 0.07784980261668228 0.9558510645399539 0.2833516378113609 -0.910506959134482 0.181741629865931 -0.3714122471612288 0.910506959134482 -0.181741629865931 0.3714122471612288 -0.5638170052827519 0.7901416633769365 -0.2403883032718469 0.5638170052827519 -0.7901416633769365 0.2403883032718469 -0.5636943070143379 -0.2718931151353536 -0.7799505511130938 0.5636943070143379 0.2718931151353536 0.7799505511130938 -0.9128734660900318 0.2052562609143245 -0.3528907795115115 0.9128734660900318 -0.2052562609143245 0.3528907795115115 -0.07796022575618454 0.7978022440562502 0.597857660801345 0.07796022575618454 -0.7978022440562502 -0.597857660801345 -0.07293523093475945 -0.536747093346532 -0.840584921273599 0.07293523093475945 0.536747093346532 0.840584921273599 -0.07604770112068858 0.3398450615732017 0.9374017715358579 0.07604770112068858 -0.3398450615732017 -0.9374017715358579 -0.9271339304211422 -0.3737861328003613 0.02658198615595467 0.9271339304211422 0.3737861328003613 -0.02658198615595467 -0.56821021807484 -0.5485574908562504 -0.6133692422194298 0.56821021807484 0.5485574908562504 0.6133692422194298 -0.5681978066790452 -0.4856242309667716 0.664319470422969 0.5681978066790452 0.4856242309667716 -0.664319470422969 -0.9275538218035446 -0.3736639910290091 -0.004373724489596332 0.9275538218035446 0.3736639910290091 0.004373724489596332 -0.07601198010694718 0.2461619642348556 -0.9662434818637893 0.07601198010694718 -0.2461619642348556 0.9662434818637893 -0.07603488379294941 -0.9824986161570616 -0.1700445991381432 0.07603488379294941 0.9824986161570616 0.1700445991381432 -0.9271175633615203 0.1624153764230984 -0.3377488256203726 0.9271175633615203 -0.1624153764230984 0.3377488256203726 -0.5684223245221804 0.8045495901676812 -0.1720349323417111 0.5684223245221804 -0.8045495901676812 0.1720349323417111 -0.5682562327497746 -0.3357303571020874 -0.7512456197949771 0.5682562327497746 0.3357303571020874 0.7512456197949771 -0.9275500865344358 0.1892090791949394 -0.3222588421132365 0.9275500865344358 -0.1892090791949394 0.3222588421132365 -0.07602359932507562 0.7168034810914563 0.6931184471941507 0.07602359932507562 -0.7168034810914563 -0.6931184471941507 -0.07788522860997994 0.33527590521265 0.9388950732367325 0.07788522860997994 -0.33527590521265 -0.9388950732367325 -0.8622039110363094 -0.5055471860195102 -0.0320383910558382 -0.9186365967429201 -0.3947997214296697 0.01549138740205839 0.9186365967429201 0.3947997214296697 -0.01549138740205839 0.8622039110363094 0.5055471860195102 0.0320383910558382 -0.5911920785065153 -0.6603884431093904 -0.4630108319669223 0.5911920785065153 0.6603884431093904 0.4630108319669223 -0.5913185191009809 -0.6117206410194161 0.5254905006934163 0.5913185191009809 0.6117206410194161 -0.5254905006934163 -0.9184398770765989 -0.3954642704709246 0.008729431620756456 0.9184398770765989 0.3954642704709246 -0.008729431620756456 -0.8666694425626617 -0.4954474410657432 0.05844579086240863 0.8666694425626617 0.4954474410657432 -0.05844579086240863 -0.07784647127831051 0.2414764141318304 -0.967279209084713 0.07784647127831051 -0.2414764141318304 0.967279209084713 -0.07789085419739079 -0.9815182421211756 -0.1747997574819787 0.07789085419739079 0.9815182421211756 0.1747997574819787 -0.8621876343713294 0.2786709173777909 -0.4230543735088806 -0.9186099994929518 0.1824781962483763 -0.3505101663653969 0.9186099994929518 -0.1824781962483763 0.3505101663653969 0.8621876343713294 -0.2786709173777909 0.4230543735088806 -0.5914357760694816 0.729508062189148 -0.3435428793995359 0.5914357760694816 -0.729508062189148 0.3435428793995359 -0.5912701432089158 -0.1528401862184598 -0.7918582545041852 0.5912701432089158 0.1528401862184598 0.7918582545041852 -0.9184311868293691 0.1886543416202624 -0.3476977055532891 0.9184311868293691 -0.1886543416202624 0.3476977055532891 -0.8666393501579606 0.1951110697023345 -0.45920355751823 0.8666393501579606 -0.1951110697023345 0.45920355751823 -0.07785123444427876 0.7200157100790545 0.6895770896243993 0.07785123444427876 -0.7200157100790545 -0.6895770896243993 -0.05175606910108979 0.9966603560649529 0.06316204524621295 -0.06710589855194701 0.997722592184132 0.006813767306884728 -0.06463126882157386 0.9949142282440756 0.07725592228437379 0.06463126882157386 -0.9949142282440756 -0.07725592228437379 0.06710589855194701 -0.997722592184132 -0.006813767306884728 0.05175606910108979 -0.9966603560649529 -0.06316204524621295 -0.9208481389957095 -0.3897131234716203 0.01274308840634989 0.9208481389957095 0.3897131234716203 -0.01274308840634989 -0.6041265859342664 -0.6628633493676761 -0.4423157788644598 0.6041265859342664 0.6628633493676761 0.4423157788644598 -0.6043510956270248 -0.616247919108277 0.504973519512789 0.6043510956270248 0.616247919108277 -0.504973519512789 -0.04887595123153411 0.9919269240416067 -0.1170133272433938 -0.06320711920580965 0.9890618334347577 -0.1332724642391598 -0.06544351105841843 0.9954089662035404 -0.06984366014138725 0.06544351105841843 -0.9954089662035404 0.06984366014138725 0.06320711920580965 -0.9890618334347577 0.1332724642391598 0.04887595123153411 -0.9919269240416067 0.1170133272433938 -0.05176292428173093 -0.5493551863579695 0.8339840999032322 -0.06715572110431041 -0.500971452014702 0.8628543987192979 -0.06467060858579891 -0.5607537460364631 0.8254531777703786 0.06467060858579891 0.5607537460364631 -0.8254531777703786 0.06715572110431041 0.500971452014702 -0.8628543987192979 0.05176292428173093 0.5493551863579695 -0.8339840999032322 -0.9208229918529777 0.1823261521974405 -0.3447349589174365 0.9208229918529777 -0.1823261521974405 0.3447349589174365 -0.6044052953115482 0.7127115897051575 -0.3560006023861583 0.6044052953115482 -0.7127115897051575 0.3560006023861583 -0.6042208852079725 -0.1329109324677061 -0.7856537442850122 0.6042208852079725 0.1329109324677061 0.7856537442850122 -0.06555032380382546 -0.4332602793100031 0.8988819084960116 -0.0489311245994604 -0.3905865829625489 0.9192648509842373 -0.06330197836798127 -0.3750046590734298 0.9248591055982096 0.06330197836798127 0.3750046590734298 -0.9248591055982096 0.0489311245994604 0.3905865829625489 -0.9192648509842373 0.06555032380382546 0.4332602793100031 -0.8988819084960116 -0.07380847313489657 0.9971350212817937 0.01655471615135637 0.07380847313489657 -0.9971350212817937 -0.01655471615135637 -0.9138485014307795 -0.4058014096885466 0.01435730920149108 0.9138485014307795 0.4058014096885466 -0.01435730920149108 -0.5345304218766152 -0.844640307144783 -0.02932540937096353 -0.4787759179973137 -0.8775837507625626 0.02490744353284692 -0.5523468059055555 -0.8333556620290644 -0.020768884660241 0.5523468059055555 0.8333556620290644 0.020768884660241 0.4787759179973137 0.8775837507625626 -0.02490744353284692 0.5345304218766152 0.844640307144783 0.02932540937096353 -0.529810937761632 -0.8443800785050153 0.07951511335591559 -0.5444019885151931 -0.8356723357134307 0.07265137454971396 0.5444019885151931 0.8356723357134307 -0.07265137454971396 0.529810937761632 0.8443800785050153 -0.07951511335591559 -0.0730429405716595 0.9940521145746529 -0.08077822938333205 0.0730429405716595 -0.9940521145746529 0.08077822938333205 -0.07388662353121546 -0.5091637543312346 0.8574922962560529 0.07388662353121546 0.5091637543312346 -0.8574922962560529 -0.9138168602334956 0.1889226119874796 -0.3595093776702133 0.9138168602334956 -0.1889226119874796 0.3595093776702133 -0.4788900951458034 0.4137789169757429 -0.7742423939811258 -0.5525632992352004 0.4314208972124874 -0.7131267838096413 -0.5347331070637321 0.444464319308261 -0.7186876742172578 0.5347331070637321 -0.444464319308261 0.7186876742172578 0.5525632992352004 -0.4314208972124874 0.7131267838096413 0.4788900951458034 -0.4137789169757429 0.7742423939811258 -0.5443231062547118 0.3515163285545688 -0.7616748825822854 -0.5297627038662381 0.3498802766270966 -0.7726158616153819 0.5297627038662381 -0.3498802766270966 0.7726158616153819 0.5443231062547118 -0.3515163285545688 0.7616748825822854 -0.0731648938415657 -0.4230767780001828 0.9031350608996067 0.0731648938415657 0.4230767780001828 -0.9031350608996067 -0.0717598100444269 0.9967833931070906 -0.03568468702823421 0.0717598100444269 -0.9967833931070906 0.03568468702823421 -0.4570938974721754 -0.8891267751684072 0.02277600870049867 0.4570938974721754 0.8891267751684072 -0.02277600870049867 -0.07186207300492192 -0.4636242428793894 0.8831129055097929 0.07186207300492192 0.4636242428793894 -0.8831129055097929 -0.4572184704652873 0.4213675234050111 -0.7831990043947393 0.4572184704652873 -0.4213675234050111 0.7831990043947393 -0.07284731910756336 0.9966994105687711 -0.03582670890139447 0.07284731910756336 -0.9966994105687711 0.03582670890139447 -0.07295841153948711 -0.4634759310171773 0.8831008614837808 0.07295841153948711 0.4634759310171773 -0.8831008614837808</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1000\" source=\"#ID798\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID796\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID799\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"2470\">-2.382152232341637 0.8114993214080721 -2.305498782632804 0.7612421416708729 -2.661799060038712 0.5143268679627622 -1.10929632536876 1.865939697634436 -0.7402787510683859 2.096312634686256 -1.041160221479432 1.808590267548293 4.117109534675268 -4.221737622712427 3.770492703260866 -4.471450631513128 2.972256478969288 -4.376182215124748 -2.64317861492822 0.5288504886875456 -2.741971876010438 0.5644427639446815 -2.388085444237092 0.8134970265397964 -0.5108777407253806 1.994641913414265 -0.4647338457287636 1.921831414400039 -0.8199817364353834 1.712364972440952 4.159072087260633 -3.60131408385592 4.008359773378214 -4.223632152308475 3.590480138856723 -4.394738788375328 3.720629425418393 -3.737994030932695 4.089733578634366 -4.1362612050151 2.944593614898622 -4.289383837459042 3.715949880857402 -4.664217122611951 3.577025552436587 -4.858740273202045 2.918110384210961 -4.566913844047221 -3.532893088158519 -1.405402268119589 -3.778377344265582 -1.567813990875131 -3.63466691595626 -1.375454603305033 2.166877960838995 -3.20534782375026 2.505112526826225 -2.980634682784841 2.016960844485938 -3.372595413195628 2.90664991550928 -2.831647031589939 3.161264493954209 -2.789679773232189 2.158320842907479 2.317355631430848 2.426208068189768 2.382798047632238 2.177397347012687 2.237394119727016 4.186501325658662 -3.604674619844945 3.619577955234709 -4.398837879978945 3.263520854441227 -3.993286695212771 4.264289486993383 -3.591368647410786 4.393196497476434 -4.169263296937372 4.118628753531486 -4.214430668958741 2.141709561156012 -2.539653586511744 1.338783932921017 -3.066679041718678 1.088541638290198 -2.918995386648729 3.705354160579695 -4.722111991503434 3.752219223354113 -4.925163319361463 3.043585516181242 -4.434309064416466 -4.720195001665112 -0.838111930340065 -4.87356633634843 -0.8206456622006494 -4.647535569853533 -0.6416093864536248 5.976463061569919 -4.01551000878934 5.700563982511904 -4.661067300428671 5.591129172591309 -4.47290649595115 0.4940113330114128 3.302791294675418 0.7020392817537015 3.483545504538939 0.733154928316176 3.383342872493777 2.984341750436177 -1.945595238278266 3.07355461487074 -2.178877951918392 2.134980860030076 -2.543645943407094 4.715175540128614 -4.237778325771608 4.486729766309145 -4.140997679661525 4.353781662995391 -3.563669890075839 6.229541255743985 -2.815692720273948 6.205863006664616 -3.061082790207338 5.39894081999101 -2.780519209470858 3.95954576161025 -4.766474747050036 4.226158437872415 -5.067116002014613 3.243896960758899 -4.281959803351813 -5.20917675816532 -4.076852570570276 -5.444027986460442 -4.257840651882353 -5.362925845386348 -4.061579228975656 -3.414236209071933 -5.48280054980703 -3.503674895768212 -5.500147149562402 -3.302965120206075 -5.295307391122558 7.153708221003003 -1.055334577185998 7.357365789459331 -1.181805828420435 7.060600724299492 -1.127963471288239 -6.376055494793524 -2.791910837103957 -6.376601944710836 -2.548300528389567 -5.546105656382263 -2.541558169230477 6.292020490288079 -3.896997050653707 6.001290330568972 -3.594786402053359 5.579123822736869 -2.942901892769273 -6.445697115556035 -0.5327398872694064 -5.639737196896117 -0.3708988937511936 -5.410310060843501 -1.264541462392171 -6.378040758730448 -0.5490869415448467 -6.402386873826202 0.3474497948727556 -5.548733127301645 -0.4984393686878871 6.249443067828077 -3.021812954622691 5.589949262777724 -3.009778769479917 5.436007331621839 -2.753141288256818 3.685386022701926 -5.416193428280835 3.550020822014475 -5.480747652159369 2.733685449622757 -4.60808068335111 -3.214384247080245 -6.200299681307078 -3.23901928547867 -5.834241632626324 -3.150145197377329 -5.815183648067049 7.37374899284945 -1.133457200799908 7.255757232167886 -1.180810893730796 7.077515231345002 -1.077833697990142 -5.813898093729755 -2.627781693529012 -6.473061319915687 -2.607393325339736 -5.64053701285209 -2.362387587081174 -4.1449948999066 -0.3925930562476963 -5.571323704244727 -0.4508006085162343 -5.590385402988608 0.4192953775659653 -6.420823099055467 0.4090219793829775 -5.571948609914557 -0.5184370324832719 -6.402434335445965 -0.5259414841779818 -6.412003022809788 0.3723260551637551 7.79264834779636 -3.094623924357429 7.386028045278803 -2.821643815884106 7.511011023866709 -2.787130807200926 5.288427740176394 -4.450421141627921 5.16365295085847 -4.520813777264999 4.528469987559812 -3.533326890439096 -6.177999987344328 -1.570835269398446 -6.43794403232774 -0.6842351375800343 -5.37737609444318 -1.393369944667684 -5.468981652152383 -0.9966139960495889 -5.627977588762684 -0.09354875387037062 -4.06048470052598 -0.8115314550383995 -5.604833719540404 -0.8427021686719978 -6.523407502400124 -0.04000140227339736 -5.698594924431132 0.04705198934153895 -3.819964906568851 -0.198740607318797 -3.710588442244218 0.7070679054892642 -3.595833115298375 -1.078161158264579 -3.273119380180543 1.535119347208355 -3.076513428396748 -0.1659543789840967 -3.030200242278591 -1.873660853038731 -2.887398122901175 -0.8793125957286936 -2.439402056737099 -1.517112239780935 -2.203293041006291 -2.500402028373014 -1.772319464308227 -2.022702851046091 -1.178273536083925 -2.907562735203924 -0.9454591957336178 -2.351161398673499 -0.0462380938019025 -3.05896025402176 -0.03227092295787773 -2.473295078857695 0.8861221859959634 -2.378246195955483 1.100337098236535 -2.939288573049616 1.728132329397168 -2.074478232231995 2.135972779385058 -2.5645770483233 2.418887774560047 -1.588964928439499 2.897061565363328 -0.9648552907429856 3.002871332391609 -1.96190235463934 3.120099824776935 -0.2576073983579654 3.397833450122788 1.436453299966811 3.584954115964931 -1.189073698497411 3.797178894091073 0.589535539530324 3.86146279790015 -0.3123520279787206 -2.989941374167471 0.5595534147310203 -2.635383615910281 1.232752438402079 -2.540424688596996 2.230643059343542 -2.044294447642872 1.793827010075304 -1.579665433403898 2.725371249155675 -1.269257263899759 2.192925190064263 -0.4762730165452944 2.975353590359535 -0.379127025517807 2.394587160073535 0.5470052852914087 2.380889252754579 0.6739441528367607 2.964104390912614 1.426866649410332 2.153052203845308 1.762515223752795 2.675938097440283 2.182281272233411 1.731316065892566 2.698888249206223 2.153148196856395 2.746116622930116 1.15315754419546 3.0682720466757 0.4699448618913633 6.262701037578077 -3.297688588377309 6.810870890825931 -4.291665963233803 5.603135835129864 -3.288385875698955 3.537805570138652 -5.322074800046389 4.499503752106183 -6.170792077931217 3.401754136409783 -5.385730003367606 -2.402367420971701 -6.32348935043586 -2.487130147304622 -6.36684873423582 -2.456301864786447 -5.979189118527012 -5.851137594154357 -2.991204346202717 -7.11732698224412 -3.953428325490446 -6.510171301073201 -2.96837143036549 -6.431600829084085 -0.5856926335526124 -6.465043856691065 0.3240294976779706 -5.60265637794168 -0.5278164021063335 -4.153220584432583 -0.5919371519429612 -5.633236098381424 0.2161519211681857 -4.209404235825325 0.3044258401130099 -5.686973105331986 0.2076154673473941 -4.263529414155157 0.3221991449134441 -4.215291073560992 -0.5744977462204292 -5.629668278170908 -0.6018165566198391 -6.481253406832044 0.2821448753630127 -5.65143262943119 0.3334005600536639 7.70924221545971 -3.086643914958204 7.611421202677152 -3.106627870969063 7.289855802678771 -2.825890216437976 5.307646526988149 -4.459574441591602 5.895028297840041 -5.457121340977217 5.18297450631685 -4.530079671339261 5.629008267869499 -0.7463477273334715 6.143014995752494 -1.761979428609921 5.332209067274681 -1.615896687539317 4.221778863882256 -0.1138895382488578 5.449746623983231 -1.157975509815105 4.036035568395636 -0.9993909140033963 -5.638210010572456 -0.5486783925207119 -4.250909299071609 -0.2815645921801652 -3.997216344816255 -1.156592358935419 -5.584920386969356 -0.7286636150463668 -5.649991922666122 0.162673834209167 -4.161558112449938 -0.6357893580252552 6.325862417864055 0.2471940347496744 6.275923150491728 -0.65523344044532 5.494720606752197 0.2501486147772298 6.324667251178918 0.3785027462624838 6.307487637225778 -0.5247153149898205 5.493856655715302 0.366706868280492 6.330840177740377 -0.4832391865050514 5.505412349689225 0.4046323204088624 6.335973878144486 0.4200649213385262 6.355104265392128 -0.4667206081220865 5.524514761868456 0.413796645671067 6.354965736662829 0.4299973635642851 6.348532651289016 -0.4826861760209525 5.518228264842925 0.4008358708994737 6.348686999878188 0.4271997584595754 6.402526849244486 -0.514599815300171 5.575015698521129 0.3688125470936636 6.405593025417301 0.3823184502673627 6.411353286003433 0.4000658934411254 6.402189221181026 -0.5113951445993928 5.580948395643242 0.4157367094855328 6.457616882721426 0.2866889367729694 6.428226229766665 -0.6163174962283112 5.626549839694851 0.2839681310038151 6.504640036469908 0.06882814165186642 6.425760748703323 -0.8323530921485491 5.679613144525984 0.09802792271163478 6.462225544659513 -0.479789751691096 6.259225536954721 -1.368874127389776 5.638390409749905 -0.3908745494751295 -5.574851926507346 -0.4467662664155951 -6.405189489514616 -0.4925506539050644 -6.409194594973165 0.4107466294511674 -5.552194299191942 -0.4361777819642201 -6.382694340672956 -0.479815042264443 -6.3822125066093 0.4234890959370029 -5.527660594977107 -0.4414161723271314 -6.358135509214947 -0.4841960030603822 -6.357692766381553 0.4191095339513883 -5.503241243690558 -0.4621172308995953 -6.333509171185731 -0.5054400229986481 -6.337686374565175 0.3978657857529473 -6.309573809879248 -0.5505412985441708 -6.324676198831939 0.3526571860783325 -5.479788392845236 -0.5041294043719613 2.727282558497929 2.374467822102313 2.682327380740597 2.134919811093426 1.745957532312295 2.657713232886528 -6.28355707143229 -0.6362917545517316 -6.324274572841182 0.2666680609225586 -5.455101643277436 -0.57908685677795 0.8867903543797634 3.118978236478919 1.753803744658647 2.655260171310598 0.6652336964723358 2.943428855169668 -6.107009504749997 -1.440571652735586 -6.327435422916969 -0.5524335438192431 -5.290951497203457 -1.319381353096898 7.047109981082493 -4.025925235254194 6.572423246359725 -4.03807808733024 5.762356183245927 -3.083708496260667 4.719319310056894 -6.012525550950048 4.559405230702663 -6.109249604868882 3.610847825014008 -5.236842748222333 -1.635076611744317 -7.643805512306598 -2.046393508680486 -6.553864915925065 -1.964009241795349 -6.507755706175733 -6.226933058893753 -4.35715210192923 -6.684777216062551 -4.368633898008876 -5.495336325949821 -3.347602026111755 -4.164155400215128 -0.4808138035478431 -5.59045265464766 -0.5707972914437972 -5.604000275338401 0.3645158178360241 8.498994210341262 -3.863426396329256 7.58708621916952 -3.010007229700875 7.684874037027289 -2.989922987339559 5.860507161178415 -5.472263804657364 5.717787806425276 -5.541268897230905 5.143033007068749 -4.539180625640339 5.615427661959771 -0.05307178236898648 5.490996361882291 -0.9480844056190318 4.192676241827535 0.04192978539679174 -6.371687425542625 0.05659531610126218 -5.545667306279297 0.1291291351249389 -5.462209449669895 -0.8043086080673315 5.523565805979221 0.4664539955697984 6.354207285310459 -0.4112716340542739 5.523758680554177 -0.4338833848854653 5.53167411224067 0.4777514955588634 6.366920291787105 -0.4012123226992183 5.536572228151663 -0.4226032985896472 6.384470114428415 -0.403345774636922 5.554125450147815 -0.4226259836262465 5.547326545969745 0.4777114329058925 6.394798530817934 -0.4242064713489063 5.564444714190893 -0.4525417513668846 5.559616742817855 0.4536184898915917 6.706382990873093 -1.992428992817538 6.734858187658725 -2.229716846200112 5.880914549031902 -2.06864522518943 6.426673737565221 -0.4286928413741457 5.59609063437345 -0.441977094805049 5.594342931635121 0.4536484752102395 4.127093708298099 0.349085374462541 5.554394599787321 0.3625400882458029 5.552652560288326 -0.5062900454127818 6.383108753397958 -0.5201741029379436 6.630766041321724 2.290072167503032 6.60870069498146 2.039406599150892 5.780362907360219 2.088063182125595 6.461347556712913 -0.5273102266094472 5.630277932583336 -0.5294891830228586 5.652179197504132 0.4063675696246454 6.471783918825218 -0.6694862709089748 5.646284167170914 -0.6502602675244906 5.689181062059775 0.241125792540077 5.705258546267622 0.04954383269713061 6.435385846454905 -0.8886697541752605 5.604943682381954 -0.8548758041057144 -5.61868898488491 -0.4874466767329562 -6.456279603494737 0.3681045028935301 -5.625878457091545 0.4128913173724724 -5.598883524092275 -0.4605082447537164 -6.428081916010963 0.3996480928002333 -5.597398384708466 0.4398433145490905 -5.576957820490299 -0.4488343226107577 -6.401896102512689 0.4147173528205499 -5.571119059021333 0.4515076979844473 -5.555720079221102 -0.4484087783848311 -6.379668149979191 0.417815089717694 -5.548918425932076 0.4519197748685152 -5.644588786272323 2.432043406180553 -6.475752441667305 2.404888014658125 -6.476678532968182 2.647031326878516 -5.537898422956329 -0.4559979435743079 -6.363430823466654 0.4123864931825314 -5.532783473477472 0.4443536015118346 2.52699327365733 4.053668724156345 3.232240892558104 3.344958568234572 2.254016958954333 3.634765079931456 -5.499906396557383 -0.4989705720211488 -6.344343569199598 0.3621523079421049 -5.513894893397796 0.3670495865317552 6.351232608300514 2.490855442909809 5.520765150887098 2.493018469052865 6.349136616735253 2.738226221440089 2.83617451174444 3.92667842082563 2.558079519991281 3.509863443645249 1.697980286874242 3.981481675466966 7.662203559623302 -4.913533654818638 6.581129811636943 -3.882599263004092 7.05576917080125 -3.869350706402243 4.858615578581932 -6.074245668090698 5.781796714671636 -6.755173925272217 4.699553073210266 -6.171834810212214 -2.923013648991004 -7.410697797244424 -3.004235976416077 -7.446203671646552 -3.154857143866117 -6.287097760729689 -7.233100912016699 -5.2780072099835 -6.696771126747163 -4.272424854255496 -6.238904897399809 -4.261501314141265 -4.160046578622444 -0.4737436785604704 -5.599138070426414 0.3723794843949643 -4.172281427259849 0.4236948597737338 8.583971388279348 -3.861854811376837 8.493484725290733 -3.878498459511783 7.688724458774837 -2.997587991844135 5.773769347551276 -5.42458368153758 6.194793007120643 -6.435297706577472 5.630635840262678 -5.49305586462806 5.637463441909986 0.2063136648478206 5.576712249359321 -0.7002834793214141 4.149493655589789 -0.666422043308793 -3.791997104759317 -3.160289595899267 -4.557148381589244 -2.4438330958985 -2.752395262503766 -2.388220319902878 5.508185884087253 0.3568838258145871 5.479408896688173 -0.5431689211380512 4.080557974305158 0.3597441476089266 5.506171941511711 0.4210506271797914 5.49610738001893 -0.4792775997923502 4.078734300599257 0.4094231397152907 5.509503751461832 -0.460178170981151 4.0852749331553 0.4248645746183525 5.512567720610957 0.4401719054329141 5.523730938822248 -0.4707721957735811 4.096473844284713 0.4192446804514229 5.523701160329052 0.4353960044653995 -3.68214331192589 0.7048003957772115 -3.797079964430929 -0.1886666454908832 -3.966759717564554 0.6230881827453207 6.770678563460123 -2.150790600524764 6.117129859104871 -2.221333120763166 5.914682744017741 -1.996607342708859 5.55221507049154 -0.4461036560030883 4.124268810346557 0.4384218376475834 5.551529312835765 0.4495228068059489 5.565864599723549 -0.4313945211553699 4.138560890324671 -0.4446638803693676 4.137603457175834 0.4528163016298624 5.634227758319667 -0.4402423970654657 4.205959402934985 -0.4768728165044885 4.213980714084771 0.4205838582382181 -3.798495665402174 -0.1820849155691501 -3.568804610354984 -1.073847359963925 -3.875394710153257 -1.003386691537358 6.123994606683545 2.05525332117598 6.776703735835856 1.98005265820314 5.916121464420085 1.806762106662963 5.597675479733299 0.443399893764163 5.585205845377178 -0.4925639279401325 4.169597344998032 0.4024386876104048 4.15762018592527 -0.4950097606756016 5.584202678227232 0.3648870756734438 5.572485063851977 -0.5270898869408937 4.156617820371098 0.3621291455754826 -4.124925005749004 -0.4221101842327787 -5.552090815762549 -0.4677962709606923 -5.55421954180395 0.4325579296179262 -4.111622469373085 -0.4214203977710727 -5.538876324918283 -0.4650816136418131 -5.538576477063474 0.4352706727699609 -4.097125150651432 -0.4279153426255751 -5.52435757429008 -0.4708482185904604 -5.52426233743118 0.4295055149755776 -4.082981753191275 -0.4413168658447663 -5.51008541062717 -0.4849546898017661 -5.512878698675422 0.4153870811823178 -5.631193550035248 2.461507415414935 -6.463048840774564 2.677056089199609 -5.803781728166912 2.695243922016638 -5.496456165566158 -0.5111077385403589 -5.505886766735717 0.3892222330192646 -4.069649252612988 -0.4640573414130001 3.834919411783258 4.229177482280971 4.067083141014313 3.636295497457961 3.395628482009644 4.365034469375767 -5.482838903136125 -0.5372022959242325 -5.506608144241801 0.3286859050130154 -4.056840720569126 -0.4789649353516526 5.627346059598288 2.772713745747252 6.28695098665998 2.780121525531526 5.472318711552627 2.507915073080861 2.539091054934751 4.89062216698243 2.915784678967103 4.664107656039868 1.77785141209766 4.72216774587029 7.719439946235701 -4.846904017109719 7.310729392674782 -4.86625049600592 6.619178588444171 -3.828609251683794 6.022785877259992 -6.533411281220287 5.850334017365131 -6.675404868943827 4.932253880902296 -5.959704110981211 -2.225179099355021 -8.573899165916442 -2.517246359618165 -7.605244271636148 -2.438202460806775 -7.566816113078535 -6.717869201020857 -5.349149792973891 -7.127119524533855 -5.359187381576786 -6.147305757602014 -4.334075845317214 9.271520465878172 -4.829384250182987 8.498392206892227 -3.953414187342754 8.588931033037188 -3.936947027258597 6.001688404292493 -6.520400303231552 5.785867199317528 -6.590653648012299 5.390870613633427 -5.57345836591487 5.612246399584024 0.2811336414350372 4.137508093891616 -0.6053915677220051 4.179845061663457 0.3098219691396784 -5.538764975333309 0.4681121719386963 -4.109915944167414 0.5066086495387171 -4.137244533226672 -0.3906263536147895 -4.093491571230447 -0.4693098312026066 -5.520719793072696 0.4014243121698805 -4.093491571230447 0.4281509816797937 5.522613030223019 -0.4088759348981764 4.095370697688034 -0.4307901038188899 4.095955679305225 0.4666987771532346 4.100600948168641 0.4727237170128614 5.530293461700541 -0.4036800185450093 4.103119696156001 -0.4247646836698221 5.540696074459932 -0.4062771507909478 4.113528349182373 -0.4254116217219571 4.109778224059697 0.4720632539261433 5.562829411054837 -0.4168563095352443 4.135579146547521 -0.4287439876988017 4.131128445010857 0.4687326012540565 -6.106218164610338 0.4067214157437564 -5.949686005033862 -0.4066665999772727 -6.57558798965443 -0.4291223668602024 7.484402007252639 -0.3666865768634973 8.588008637681035 -1.014951336896927 6.906160533801982 -0.6164503317486078 -5.968331417790047 -0.08485090619073749 -6.038886626027283 -0.9065050245338635 -6.594235457051168 -0.1072712048355581 7.785043341838376 -3.027241022869439 6.38760915225589 -3.073919155086647 6.094257506179066 -2.609111482345269 4.182569284383959 0.3628143594684092 5.590918326588575 -0.533762702622409 4.158247094811467 -0.515202285144675 -4.151049002528265 -0.4556168108391424 -5.582161926964881 0.3971661449070394 -4.154959419916142 0.4418540299037406 -4.138993010500824 -0.4477007573165332 -5.565399234233393 0.4095546653307514 -4.138039279917377 0.4497783237258486 -4.126058856890215 -0.4470074540046948 -5.550147546112627 0.4135444010196748 -4.122737751398939 0.4504695718699686 -4.11381972194354 -0.4511845102803854 -5.537457493840162 0.4119462391451804 -4.110066034056458 0.4463155858593719 -5.828619448587592 2.983631213287548 -6.487814456845412 2.963892194643452 -7.084231717134023 3.932564416781103 -4.103273851978412 -0.4587102997819708 -5.52807408050241 0.4063539597087571 -4.100749980947755 0.4387628393962917 4.717344599847353 4.192502098342859 4.633612095804903 3.613061858163787 4.427237314102075 4.211817097101426 0.3206106848921589 -1.391178060408406 0.6921164850603934 -1.628641759935543 0.2782028819448612 -1.450158226014998 6.293848033120097 3.193539879314641 5.634213361410922 3.188008916534419 6.848525411149121 4.203593104396327 -1.891328164057275 -0.1374743576887198 -1.948271184522626 -0.1883172081444611 -2.299859201895115 0.0619301615705932 2.155429516005429 5.433102250304442 2.326785986090503 5.245640623360807 1.568678405240158 5.068661018134691 8.319111193875182 -5.609547578366657 7.324212926387032 -4.723950566267607 7.732827786625975 -4.70339119690072 5.713279785731879 -6.432160030464202 5.953360540920912 -6.578961989440483 5.538615148466631 -6.572469865395896 -2.028798512837025 -8.548366861161911 -2.104055885263323 -8.590898403140145 -2.330512122076828 -7.585630805526254 -7.608945487818658 -6.255703576101399 -7.137958890888548 -5.260559550807522 -6.72869513150474 -5.250866900269577 9.27065934491648 -4.826824061750197 9.179300321773068 -4.839084543618871 8.496674351625121 -3.951322323121277 5.867141115348349 -6.389785434634255 5.741440448300319 -6.687316064812344 5.650766369438735 -6.458977061674541 -6.116633110672703 0.4110907662336733 -6.586162527374134 -0.4246975448627076 -6.656295097298122 -0.05912841987920928 -6.224683474972785 -4.744352959566725 -6.154981253152326 -4.374781149297583 -4.81651597652847 -3.918431791851718 -7.714038473572953 0.6023579286995218 -6.339258681834792 0.6682309068354281 -7.718550954367429 0.477881345093763 -6.574245482658096 -0.09795340618191402 -6.019037035461805 -0.8972475817193066 -6.610675455021291 -0.467456379308435 -6.219167844454492 -1.070784404659 -7.617857677143023 -1.06830930505799 -7.624303380680911 -0.9476220364064913 -8.259673190808709 -0.551958884871283 -8.650674722245444 -0.3398743600165811 -6.909048470343557 -0.0813386710929849 -6.262729427223396 4.280205518061553 -5.523929073475165 3.290676722131466 -6.715952600713422 4.289071664462673 3.937843837902142 5.147301601424823 4.069298934555739 5.075875895797951 3.463533200456307 4.110800280381099 5.209205622771145 4.035822782958834 5.450196430193508 4.151242919036542 5.102250521171852 3.458752088073406 4.095337276055221 1.204356443781205 4.389280951963332 1.1286483224619 4.099195002689461 1.148160626873494 2.771021747791493 0.9722150784720091 2.769151279432363 0.9159566178321216 2.351942138015295 1.100568588629236 2.935863018679035 5.626067172882261 3.069583945778339 5.566693212579978 2.195182696189024 4.692738226224547 7.015206002807851 4.001647704310436 5.735592185692652 3.036957278107067 6.54043165342027 4.011409472370985 -0.5745818156162452 2.549565507132114 -0.201766641564953 2.347215580046476 -0.6317786240502441 2.516375579235664 -1.343223786508591 3.410810264610257 -1.400727010858305 3.377949627684427 -1.605305603904998 3.543518012266425 2.41298121115136 5.483652071981339 2.402231215159181 5.271407892927533 1.807530471990459 4.915030062690574 8.280825905442994 -5.649319198347968 7.898642013392817 -5.666257972030044 7.295398628059252 -4.757193145759694 5.944142243046866 -6.818013508429276 5.833464914441211 -7.051644702807992 5.529399941378703 -6.811400320934341 -1.697471362572419 -8.866096477070775 -1.810456390209519 -8.644014698631873 -1.736609375029659 -8.599979835830487 -7.289404194507263 -6.205034285805037 -7.672080099481478 -6.212367473911156 -6.785103664943274 -5.211197734496072 9.400274494745993 -5.083337609184246 9.180531261399484 -4.878668450017517 9.271905004153444 -4.866476039442853 6.272982820837651 -6.366489343458639 6.467954122720688 -6.67559446441701 6.154288376155829 -6.665795398995026 -6.61782679821126 0.7707276170720391 -7.157860533619931 0.3007726256670714 -7.300822201226315 0.4995800430167435 2.513799392591445 0.5514798227418101 2.414069527238531 0.5491065533840862 2.4673256467482 0.9193765930242428 4.497717665920813 -5.731831628612675 4.516995633749293 -6.879723111970071 4.05665024727122 -5.593268903064636 -6.004154607457918 -0.8371542672269368 -6.924392869678563 -1.04217891225324 -7.379442888224687 -1.044659418331918 -7.537423955761589 0.6016595813773412 -7.542023281758183 0.4771849648315717 -8.968287821898736 0.2934255125263521 2.534015244132297 -0.9706957197685954 2.458215345371251 -0.6029203753848054 2.557945762132749 -0.6005614891247557 -6.885079482756589 -0.6997488815661535 -6.293570957011183 -1.129650712023979 -6.99273692576547 -0.9065747945953878 -7.154016454095761 -1.004976464628402 -6.227488975147699 -1.128661156671277 -7.63261541801149 -1.0054346037006 -7.553775809653298 -0.9472327983245749 -7.547280308312806 -1.067918414717907 -8.922697736279979 -0.9064193612649891 -5.05305560476592 6.622148164113315 -3.905101183939973 6.020618958475664 -3.98597483593536 5.652457902991198 -6.275449585183051 4.127744945274094 -6.72868968733474 4.136058323286965 -7.27772491667968 5.206817501283571 3.354175750142323 4.951616781581719 3.573350367991242 5.273079094114264 3.129344250468945 4.228303088262042 4.269826941252457 6.128012269342688 3.90441428202094 4.990208963003467 3.772065297827613 5.060605702879127 6.702412297663996 2.1096849018762 6.655360169729002 2.163960619423023 6.943140012061708 2.225444299620932 3.765924924014517 -0.3463911266747499 3.789307562308364 -0.4094590512181034 3.500449096548218 -0.3224776095588098 3.64298411173188 5.25514485092069 3.38025674050513 4.943435513391906 2.73421192946776 4.403165535243263 3.774958042568282 6.421429065416803 3.011909711981109 5.52641071277909 2.877940667869294 5.585437524330192 7.017936891579413 3.909965806713123 6.543176739322377 3.920145912335438 7.609975503683925 4.890018825072455 -2.761677657248522 2.029500599706688 -2.586835986024328 1.870394885037136 -2.844537059602854 2.008309631066081 -3.835270694369624 4.598089772890178 -3.918084073209415 4.576787760213856 -4.008092862297267 4.777051305618736 8.467885565626732 -5.943713672615953 7.899901978429571 -5.654845163920292 8.282079997379809 -5.637824583607729 6.042017955053143 -6.814426757901017 6.207313497316516 -6.865170711259076 5.932658345836569 -7.048441644263794 -0.654931246901786 -8.87572412908016 -0.7033889763933321 -8.94094689105154 -0.7708877180182611 -8.67837023956853 -7.828473878628092 -6.498814991450156 -7.675148319401016 -6.175515803589196 -7.29247008265804 -6.16825830814427 9.383696738578189 -5.089147503819769 9.288607905876326 -5.078632244589382 9.163513299032058 -4.884771330406955 6.149763548693514 -6.719783069680686 6.463426586427903 -6.72963564814617 6.156160333179555 -6.85925835793994 -6.416444883919922 0.4564335272708737 -7.099418415463823 0.185251862407488 -7.342427430768073 0.2680930777047664 -0.8733676025194243 2.955435193762439 -0.9486586336982406 2.928653260658535 -0.9387513316986113 3.177981314570622 0.2390899787757239 1.121124098115781 0.2049310777999552 0.7494616287782674 0.1623900218977226 1.096942491253779 2.697162291991673 -7.439733174679802 2.351259293116423 -7.267382833582784 2.561736891303922 -6.107532364065592 -7.483393821633138 0.4455058785349199 -8.914208763313722 0.1371312959481615 -8.930165451960262 0.295333508518245 -7.432231818739337 3.138655979150429 -6.977197707339149 3.142543371988218 -6.95826376736089 3.067299847819562 -9.538039950976902 1.753491054251887 -8.129971552498796 2.009779509810612 -8.076504999067801 1.942273857748956 1.586050509773324 -1.101728573334035 1.495417258704747 -1.082469132367868 1.514655812151018 -0.7334080930896799 0.848532342347732 -2.78422799511566 0.9386843079517104 -2.804837975377466 0.9056622836245004 -3.026816851248352 -6.87969655198374 -0.6882856501199133 -6.180492195800953 -0.9112870973468583 -7.107027252437868 -0.7876375390194846 -7.147035477462651 -3.156399070821825 -7.625633710012609 -3.157201018721693 -7.128542655161807 -3.081103406424559 -7.718161150097957 -2.869832060215034 -9.085934916881605 -2.809746725564581 -7.67646206602808 -2.797370727957003 -8.90510072222548 -0.8139328844854772 -7.529679053645937 -0.9754095865071504 -8.908472463734093 -0.9456976228573982 -7.210690829545285 4.875994604011638 -7.253841230344557 5.1963013655474 -5.881338388599651 4.50406112808743 -6.783802307654304 5.26301819230866 -6.201636592931429 4.184642820135692 -7.193159703222822 5.269845207239835 4.873549189960155 5.93692711853209 5.053724850986439 5.865516110681777 4.462075121711869 4.808897275595138 7.292904795002277 2.808409441747124 7.19840840418086 2.838397488863771 7.561292571124231 3.105880725196114 7.430419082646078 3.317686977760138 7.33108804176471 3.332484017562069 8.1446895956849 4.306100996550779 7.068893513549147 1.839229311548257 6.78298815180057 1.772553044467654 6.976466929022937 1.872974094695157 -3.45919853437108 5.75786510951576 -3.431496126799863 6.131233491670329 -3.375200879283819 5.745125750166509 -3.044170914533516 6.259261082509404 -2.872356450278772 7.328422963449643 -2.955184331484319 6.221493854929197 3.791337376614206 6.408479467987543 3.931373325290601 6.336109984127391 3.025786591428482 5.50585552532548 7.647720248807206 4.84458354354674 6.567221837176867 3.884141568478665 7.238755424174864 4.860237867715482 -3.769795641590861 4.853212271834425 -3.683295487647069 4.683780487940838 -3.854266820333741 4.863838823179988 8.540483215386344 -5.892575601653754 8.197397358396524 -5.907933248492452 7.967133376560895 -5.610343800351751 6.081375034645086 -6.819435075955772 6.197624860810667 -6.97081610700894 5.80543341433306 -7.001506192640144 2.8140929380626 -8.79297493691973 2.672106037527454 -8.709265195113094 2.694052004896493 -8.635718625076724 -7.360840524520197 -6.588309894264103 -7.704084751759124 -6.601281756698698 -7.172208132465931 -6.266624957468202 9.358294433600234 -5.114631927304724 9.405523130976883 -5.249161905572431 9.263260326210883 -5.103814835884413 6.407080260315937 -6.694157141549344 6.241312786510573 -6.960253543023304 6.099371398642951 -6.823128462645105 -3.130554944520676 5.227407523900158 -2.940368701141873 5.082412968960504 -3.00608556832405 5.019451911661345 1.443907975064636 3.009566474741562 1.392768651892923 2.763381990809926 1.353517222041405 2.969811712864057 4.650737616699059 -6.727729441427135 4.716744199031261 -7.743148165624424 4.266942852427738 -6.615506992460908 -9.071140312411432 0.2944633974503092 -9.055407814662802 0.1362472901876673 -10.28668002886894 -0.0937828797595812 -3.773360530426287 4.896600557490119 -3.750680886215156 4.97120033830512 -3.608858147557148 4.770238110183211 -7.53289520959112 2.701458828563071 -7.576834581716011 2.773091943295637 -7.100705157999414 2.711278583091485 -9.577442512528513 1.663494001273091 -9.62934706237974 1.724115776184242 -8.17428369246934 1.941646553319781 -7.81789872000735 -0.5108880977619668 -7.925738781038671 -0.7049677603238156 -7.780241514356955 -0.1627572382919025 -0.3664504784439115 -2.918283023253877 -0.3271898303935311 -3.163058982880862 -0.4003858537230914 -3.128404622530123 -3.148104590430492 -4.723003393556979 -3.334860453426127 -4.865370207353467 -3.210576798330826 -4.677163784487616 -1.395218845609698 -5.443644561343438 -1.443959236100936 -5.377229732235214 -1.316512064019561 -5.240797323619147 -7.787263952156327 -2.781924358475356 -7.744361347278708 -2.709899126802834 -7.287339521616378 -2.718342435752688 -9.076011327401556 -2.99138269813291 -9.03710292577769 -2.925003092659073 -7.666572568824681 -2.976800579108238 -8.848305698669181 -0.8140373333688989 -8.851696614398072 -0.9458017672404062 -10.16170857392661 -0.6825958909967832 -1.040226995247436 8.578003799303744 -0.3851475606342147 7.649532137868212 -0.6418995047070736 7.398626793913742 -6.791185263749208 5.136836418696446 -7.200547990069486 5.143462673449845 -7.687594056897973 6.085286508094633 5.328590197088473 6.927864112478795 5.116453585483766 5.909410591143172 4.936590354621746 5.981307350482459 7.40562559675408 3.198016750009801 7.037176307619113 2.935283787564428 7.306308382958497 3.212871115809425 8.280426782920902 4.256599975095995 7.473686813896915 3.279455971915816 8.188880842524677 4.269016917995517 -3.121678174578922 6.214017685437319 -3.032336604943796 6.176772711451529 -3.080035187647084 5.826761646029444 -4.064391166869241 7.039200860234 -3.978727878031649 7.010881474673525 -3.997509586052842 5.931604622387955 4.716810930553826 7.113391170709449 3.87935099306713 6.306692144878103 3.73907649699957 6.378775164524912 7.653443140774132 4.743071349325396 7.244516300415924 4.759328148477268 8.224676172670373 5.705182593954473 8.589069989065436 -5.401804206253233 8.685476913952527 -5.517917613663904 8.246228042817288 -5.420226833230213 5.950380016897553 -6.888351573934867 5.829734031808918 -7.151083490739215 5.716535945349822 -6.99827792502101 6.329976887835218 -7.444445810242726 6.079310741766163 -7.560349740341263 5.938075065571109 -7.477345904830089 3.648030716630628 -8.533174653926585 3.642055186490267 -8.611141909815 3.506912979032589 -8.46166022371338 -7.838113406866619 -6.259107765244684 -7.758917757279447 -6.135179534202703 -7.415617247831406 -6.123164672229621 9.338938362228362 -5.336702837402881 9.242747120781061 -5.317344943838871 9.199320618261513 -5.189777088698508 6.441712748022574 -6.609927054303896 6.586311701542256 -6.745322910101302 6.20428809670488 -6.752999988327257 7.45901239198993 -6.576650445976441 7.521171262621915 -6.706452308652097 7.313221789611619 -6.849888355574418 5.327297900583988 -7.497732947390289 4.96101672126361 -7.410250837308657 4.791985438184079 -6.393448434642259 -8.973048322673785 0.09368805104582501 -10.18786210624122 -0.2959617694932749 -10.24084246468124 -0.1040529529873537 -11.03574671084916 0.6911650590541538 -9.849740241730554 1.038480174062652 -9.791558687129761 0.9814944629179719 -9.461761610005713 -2.286137886242992 -10.75659909304071 -2.068782967820127 -9.415230739134167 -2.222866846366144 -10.09884371873968 -0.48395379180013 -8.789002283949557 -0.747684339765454 -10.13482258713969 -0.6655093740248087 0.2420699431879769 8.404827397964192 0.5215751719474426 8.610576067740357 0.7062362991890919 7.398958754048512 -7.355456083926312 6.045252120048752 -6.837541269088914 5.104195416427717 -7.738195418593551 6.050153291287474 4.849663849320372 7.057734058926635 5.087364117575771 6.997668551183808 4.669626389314941 6.035463120990829 8.291339532033625 4.326686009564462 8.19978347435528 4.33905670336054 8.887757765929553 5.204713154954328 -3.791426498015353 7.184865016877708 -3.646455252176806 8.220131701559021 -3.706736949528631 7.154787763625316 4.832422322582662 7.039874860515124 5.007217863813386 6.917949964255357 4.017462302655394 6.193364490230405 8.198275477145513 5.733581468844197 7.225753052870662 4.782860808236814 7.815867115999467 5.747013697197486 8.695492439150057 -5.521828640662377 8.354061003959405 -5.553084446659128 8.255934873121877 -5.425000924755263 6.32941090754643 -6.864572112469428 6.448048886577796 -6.99394840958314 6.214707203613981 -7.128945943891515 8.46005302508858 -5.928526389953852 8.268057903211902 -6.080553301519491 8.221420654770943 -6.011596916810401 -7.739636148797682 0.9160539968145308 -7.710056807611661 1.143598374101608 -7.400535590715782 0.8717983867746344 -7.476335612334193 -6.285611833348003 -7.820072536121256 -6.285705449040004 -7.397728585105807 -6.149469981422893 8.983551949191488 -5.392582583260899 8.802036041508512 -5.579571116364043 8.889699937979515 -5.367090655374562 6.596129007660912 -6.921729238484499 6.331806366037938 -7.059450696779978 6.214109891629436 -6.929543324702434 -7.840906910557184 0.2065396890655799 -7.823134473615471 0.4236551229774854 -7.479397580784825 0.4238032242109914 5.403250354818505 -7.456433614001966 5.44714017930667 -7.793709156066238 5.03613177516775 -7.371151395670309 -9.956211444287531 -0.09606984461399371 -9.901968525166041 -0.2877602649081492 -10.18932270967896 -0.3660431812972971 -10.96888940766614 0.6583064165969161 -11.03088046238132 0.7124922133221913 -9.785553559477243 0.9997840159759621 -10.75176751996626 -2.075844082053425 -10.70081004544833 -2.014953416345824 -9.410114233620595 -2.228385051922737 -9.882478990765385 -0.4894789985166593 -9.919087785409818 -0.6709566358517062 -10.17781002545755 -0.4324686368727615 1.973086817548392 8.775162110542233 2.073456556903941 8.439249232768111 1.760118758233272 8.266274949732306 -7.355893051787491 6.035139217269675 -7.738632574130896 6.040031310379674 -7.895675249693724 6.35572890440783 4.755953259092024 7.10117505962285 4.936890879330538 6.807500633840543 4.698653201530358 6.866233768884938 8.881865056477553 5.207681510575066 8.193911464926989 4.342014878462916 8.789778937523959 5.215777509063605 -3.567023200653953 8.239510501697062 -3.485281170383963 8.205188246932353 -3.636679076312206 7.174520399546183 5.002730093696144 6.988347316600743 4.784623973985226 6.821644505099476 4.608467887856551 6.942351551755317 8.200915224598788 5.694904571137292 7.818517792135292 5.708527979604562 8.382336284135629 6.009072709059925 -7.640754077580986 0.3502904432559122 -7.610227136120761 0.5768796973943583 -7.300328622433423 0.3133705363867954 8.752295864988689 -5.257974310796413 8.520711222363763 -5.352586884343154 8.683624809932937 -5.213540875446535 -7.383512819161629 1.615486151864548 -7.045255851850174 1.56780133338496 -7.092818134246431 1.331112866636004 9.216058004429662 -4.588944696320829 9.155802633392856 -4.807249290353734 9.080826027969591 -4.769648828027862 -7.563888096290102 0.9487953516270735 -7.527235853374553 1.196529730501106 -7.184763006546485 1.174210970859951 -7.630302431797364 0.1682635791268916 -7.260875675639328 0.3771226435993637 -7.287457386560325 0.1498170140715543 4.021944197128372 -8.321277962077289 3.710282400354488 -8.207401766278244 3.685928652310532 -7.859516517881581 -10.20681813314493 0.06374166861326873 -10.44103046175671 -0.2056412825270085 -10.62889198449577 -0.004829544958635267 -11.33757060876102 0.3299332866368258 -11.06989655349128 0.4434580411120462 -11.00590139692624 0.3907337674933596 -10.93675582579856 -1.489933784228467 -11.21906661463155 -1.401026336483101 -10.88077384336795 -1.431837684361402 -10.3823927298437 -0.5840073204946437 -10.12317404566467 -0.8221614784880638 -10.5596395438532 -0.7878020949513485 -1.814730889983079 8.61089390575034 -1.611430049953948 8.828839023972686 -1.615834864721014 8.293094617417673 -7.453867248912717 6.432445277851455 -7.260221681247103 6.119122849391917 -7.797266256922559 6.442545277235023 5.53582304901841 7.144123675288182 5.393343910433234 6.824179257647212 5.220278369457862 7.120775325574897 8.884875029733228 5.223710077424811 8.792789899193275 5.231813030241208 8.997431426691051 5.445946787423706 -3.218528724881931 8.353659643728127 -3.142359261060369 8.585258492464037 -3.138175189433178 8.317365019032891 4.814130817532872 7.434740768529738 4.939970439093995 7.208514868594181 4.54585703049935 7.161736605889143 8.434102477119943 5.975707014455302 7.865836740895702 5.680391139333189 8.090778324723388 5.987275507851667 -7.591005943910796 0.6062217419930539 -7.24953389326128 0.5767685969397471 -7.282057632106239 0.3420229973445143 -7.199326808919533 0.9181592597770775 -7.54050878292817 0.9496240426249764 -7.160381284168206 1.173992512444623 6.249641386265783 -7.083776125206647 6.29919748455012 -7.216898010070527 5.914689599860319 -7.02337559921768 -10.49291382516479 -0.2310377280508252 -10.63789637362116 -0.3114805503609948 -10.68063472916411 -0.03014462824183809 -11.23691440893257 0.3979838735056778 -11.32050148029596 0.4351794222741164 -10.98767111651761 0.4919174817930945 -11.1989547701045 -1.450640802191977 -11.12090449503825 -1.406631697688325 -10.86032803082546 -1.479091414228765 -10.59175004968914 -0.4865325643419837 -10.43811890949309 -0.5563633344249114 -10.61528799819944 -0.760199929410775 5.532248318194387 7.583289295059242 5.496535504559187 7.447443103446951 5.168886315289541 7.365943063405671 -7.487027993879361 6.003664093610519 -7.830448785404514 6.01329483810173 -7.911031530225858 6.136667593078347 5.52505120131981 7.196367035854346 5.209522134444327 7.172888476327961 5.196321233049179 7.312074496055821 8.736560394668635 5.275854911380717 8.846094317593119 5.475450592245355 8.940196896659442 5.490580774524839 -2.279150689010646 8.74370209437417 -2.219830157215937 8.684287937402377 -2.300373506391011 8.476309098196238 5.201938026693515 7.276423649238595 5.044873738304256 7.211527141739645 4.920373935155845 7.438211336220197 8.460523032565412 5.492339300060463 8.117312848289828 5.50583931127758 8.554216058595706 5.609838941235937 6.176397673910426 -7.292681087399546 5.838978350849863 -7.241079413747425 5.794782989367736 -7.095646520287728 -11.30737918634648 0.1715256504883076 -11.14133237321608 0.2182022158056376 -11.32324141032872 -0.05684265905028527 -10.55983482506775 -0.02988727853457548 -10.51661884714693 -0.3111780448464778 -10.74131848652431 -0.3051059973261299 -11.24791499099993 -0.3502225672437868 -11.4677873213602 -0.4112938962804223 -11.33513745992419 -0.3186119544810304 -11.25043997430787 -0.4183930563986958 -11.33426853498595 -0.4552433648619497 -11.47568516644927 -0.3709429057436157 -10.52085334959071 -0.486693300899215 -10.54454376524947 -0.7603525242860809 -10.74388029507606 -0.5088916691470116 -11.0734791832724 -0.9997547129525994 -11.24399792535239 -0.9644057792185449 -11.27212812476224 -0.7479573568234509 5.006846435673423 7.604819984842863 5.337233013825129 7.679442414591668 4.978979388225893 7.45691012177773 -7.472314108315947 6.027926149526729 -7.896230321513499 6.161101792884907 -7.552507478035663 6.163501045937264 6.612442373854851 7.225289807666986 6.568033924868935 7.091055228351658 6.381417688566287 7.364138822885103 5.229994844828195 7.390708196312395 5.437859442009398 7.127293216737903 5.108519115953327 7.241921539249105 8.863857021041271 5.57036678242239 8.769964914876876 5.554447965853877 8.899210574551541 5.707140730405462 0.5630702990475844 8.918172808578168 0.6831017678459112 9.02094398084264 0.6017656373906116 8.849027341067513 5.225877649618224 7.404059473402316 5.131383779189833 7.243594294828876 4.84918506126741 7.404696269567971 4.980384828495451 7.986939090479169 5.228726971077487 7.891158075813983 4.852034509448656 7.891839684728685 8.561642221226299 5.616449946382111 8.124451070387782 5.513201857738595 8.219528150327255 5.64268143251085 7.82095570648282 -0.3342272036161624 7.820002119320475 -0.5629349420333912 7.477964839792466 -0.3164301919684322 -10.50753475833932 -0.1035733729477003 -10.51385019564315 -0.3178100812963506 -10.73223469003857 -0.09750802350088886 -11.38964063218413 -0.3091237266096786 -11.4828768075653 -0.2822812359787225 -11.26210337181495 -0.2232559555111391 -11.25267877158462 -0.5413292099811872 -11.47856677714294 -0.4958093755231466 -11.38820264429764 -0.4634149773922885 -10.51035120217984 -0.4674430017563528 -10.48624088283821 -0.7019420723149915 -10.70926736066075 -0.7241433480761172 7.845644128403817 -0.02419302449264853 7.502764762946278 -0.0432567612130923 7.844049478789012 0.1933800494995118 -7.822783260867139 -0.2298481961284706 -7.845559445012757 -0.001841097336704264 -7.479089971007023 -0.2255670009436816 5.604855525251153 7.206321351226547 5.480262055549751 7.059138797071849 5.251847388980799 7.175966403540889 8.651500581638176 5.680456463118566 8.682652265325375 5.810220989327786 8.776750423011515 5.835196226157819 1.584619933842702 8.958069629267971 1.608273387713923 8.882207753686709 1.485772983708301 8.791928779812089 4.799109858124441 7.566151518812774 4.976298403093658 7.299798120732598 4.708393688786927 7.404342806766388 -7.761536119210644 -0.924080850109646 -7.793178801377531 -0.7079307177167631 -7.454962337104237 -0.6596704191253112 7.613136989127534 -0.7498145417369845 7.269619430338604 -0.742481892834188 7.271660093477241 -0.5028294652796737 -10.70221595034152 -0.4305822903290932 -10.90482643731967 -0.43775430480715 -10.92051144681378 -0.2102256539428505 -11.18280299208395 -0.1971672534214698 -11.28100018826619 -0.3873621256739218 -11.27725068815328 -0.173088120066662 -11.15625228072694 -0.4254444442964471 -11.24894199331346 -0.4534792626938192 -11.2630806435167 -0.2184774645733396 -10.70584857138288 -0.3670718909140796 -10.90502832334284 -0.6236457186092163 -10.90845917228694 -0.3742419134110793 7.278378418002919 0.1757309639274631 7.275205169583114 0.4039696451474449 7.618644319240165 0.413273990567097 -7.287293167286048 -0.2119090496941094 -7.662310025337017 0.002872670088507172 -7.319965044724375 0.02637050699736276 5.304261758068236 7.510718828934936 5.558892750505161 7.402139770442199 5.205967696573508 7.371192744173923 7.943854768287891 6.314353166684216 8.127594706888372 6.156102077184638 8.037753861832558 6.122809874252642 7.310957907657844 6.740480419146932 7.539061909339335 6.588340650501213 7.273791869601489 6.668048104795911 5.436421504585031 7.452357326752184 5.336979005721872 7.313335759549505 5.165539756279554 7.582007533895836 -7.056068249124015 -1.464908348649675 -7.392083045804741 -1.521561313377225 -7.110207297837602 -1.240657627793926 7.648649290072918 0.2807114310127205 7.649873525010325 0.05285049253222032 7.305131176915099 0.2880279903068188 -10.87205009150995 -0.5292217281837912 -10.96094106120326 -0.5307952075667954 -10.86392768529901 -0.3402247460209299 -10.87046564296891 -0.2533508204590864 -10.97483706903287 -0.04560951047551233 -10.88594628879937 -0.04402942136596071 7.65941400470839 -0.5257647217229292 7.315970564608313 -0.5349705400006876 7.659150054302678 -0.2763464000623481 -7.513933166500292 -1.170992836758235 -7.55519119575834 -0.9454712612601799 -7.172426749101089 -1.140875959246738 8.530400067812826 5.439495416581214 8.593907679644593 5.240374159134416 8.459571746985008 5.397204563665892 7.59007991289359 6.128803043075938 7.84955355450045 6.038053002042353 7.787513651940996 5.987941707509287 -7.631753046015854 -0.5387552600929779 -7.671599965303634 -0.2912972040263326 -7.332300693067998 -0.2484377953323516 7.635489710447182 0.04037490460496442 7.291975651081154 0.03940138049878873 7.290719076346226 0.2755267402021296 7.293684783939276 -0.5164621196727895 7.293339314235867 -0.2588010655243426 7.636853380435862 -0.2578290348497467 -7.539607897009619 -0.9469071451194763 -7.199692840819402 -0.9078650066005928 -7.156160674413737 -1.141481673185987 -7.262747511722701 -0.5487342049231557 -7.603196841502352 -0.5847805386810494 -7.305606594538739 -0.293280564857082</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"1235\" source=\"#ID799\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID795\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID793\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID794\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"884\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 9 7 10 8 11 8 12 7 13 6 14 9 2 10 1 11 4 11 3 10 15 9 6 12 16 13 1 14 4 14 17 13 7 12 18 15 19 16 8 17 13 17 20 16 21 15 22 18 8 19 10 20 11 20 13 19 23 18 9 21 24 22 10 23 11 23 25 22 12 21 14 24 26 25 2 26 3 26 27 25 15 24 28 27 29 28 30 29 31 29 32 28 33 27 34 30 35 31 29 28 32 28 36 31 37 30 6 32 38 33 16 34 17 34 39 33 7 32 18 35 8 36 22 37 23 37 13 36 21 35 18 38 40 39 19 40 20 40 41 39 21 38 42 41 43 42 44 43 45 43 46 42 47 41 24 44 48 45 10 46 11 46 49 45 25 44 50 47 26 48 14 49 15 49 27 48 51 47 52 50 53 51 54 52 55 52 56 51 57 50 16 53 38 54 58 55 59 55 39 54 17 53 60 56 61 57 62 58 63 58 64 57 65 56 66 59 40 60 18 61 21 61 41 60 67 59 68 62 69 63 70 64 71 64 72 63 73 62 48 65 74 66 10 67 11 67 75 66 49 65 76 68 77 69 78 70 79 70 80 69 81 68 82 71 83 72 84 73 85 73 86 72 87 71 88 74 89 75 90 76 91 76 92 75 93 74 94 77 95 78 96 79 97 79 98 78 99 77 100 80 66 81 18 82 21 82 67 81 101 80 102 83 103 84 104 85 105 85 106 84 107 83 108 86 109 87 103 88 106 88 110 87 111 86 69 89 112 90 70 91 71 91 113 90 72 89 74 92 114 93 10 94 11 94 115 93 75 92 116 95 83 96 82 97 87 97 86 96 117 95 89 98 118 99 90 100 91 100 119 99 92 98 120 101 94 102 96 103 97 103 99 102 121 101 122 104 123 105 124 106 125 107 124 106 123 105 126 105 127 106 128 107 127 106 126 105 129 104 124 108 130 109 131 110 132 110 133 109 127 108 134 111 135 112 136 113 137 113 138 112 139 111 140 114 100 115 18 116 21 116 101 115 141 114 142 117 102 118 104 119 105 119 107 118 143 117 104 120 103 121 144 122 145 122 106 121 105 120 103 123 109 124 123 125 126 125 110 124 106 123 146 126 147 127 148 128 147 127 149 129 148 128 149 129 150 130 148 128 148 128 150 130 151 131 150 130 152 132 151 131 152 132 153 133 151 131 151 131 153 133 154 134 153 133 155 135 154 134 154 134 155 135 156 136 155 135 157 137 156 136 156 136 157 137 158 138 157 137 159 139 158 138 159 139 160 140 158 138 158 138 160 140 161 141 160 140 162 142 161 141 161 141 162 142 163 143 162 142 164 144 163 143 164 144 165 145 163 143 163 143 165 145 166 146 165 145 167 147 166 146 167 147 168 148 166 146 166 146 168 148 169 149 168 148 170 150 169 149 171 151 169 149 170 150 150 130 149 129 172 152 172 152 149 129 173 153 149 129 174 154 173 153 173 153 174 154 175 155 174 154 176 156 175 155 175 155 176 156 177 157 176 156 178 158 177 157 177 157 178 158 179 159 179 159 178 158 180 160 178 158 181 161 180 160 180 160 181 161 182 162 181 161 183 163 182 162 182 162 183 163 184 164 183 163 185 165 184 164 184 164 185 165 186 166 186 166 185 165 187 167 185 165 168 148 187 167 167 147 187 167 168 148 188 148 189 167 190 147 189 167 188 148 191 165 189 167 191 165 192 166 192 166 191 165 193 164 193 164 191 165 194 163 193 164 194 163 195 162 195 162 194 163 196 161 195 162 196 161 197 160 197 160 196 161 198 158 197 160 198 158 199 159 199 159 198 158 200 157 200 157 198 158 201 156 200 157 201 156 202 155 202 155 201 156 203 154 202 155 203 154 204 153 204 153 203 154 205 129 204 153 205 129 206 152 206 152 205 129 207 130 208 150 209 149 210 151 209 149 208 150 188 148 209 149 188 148 211 146 211 146 188 148 190 147 211 146 190 147 212 145 211 146 212 145 213 143 213 143 212 145 214 144 213 143 214 144 215 142 213 143 215 142 216 141 216 141 215 142 217 140 216 141 217 140 218 138 218 138 217 140 219 139 218 138 219 139 220 137 218 138 220 137 221 136 221 136 220 137 222 135 221 136 222 135 223 134 223 134 222 135 224 133 223 134 224 133 225 131 225 131 224 133 226 132 225 131 226 132 207 130 225 131 207 130 227 128 227 128 207 130 205 129 227 128 205 129 228 127 227 128 228 127 229 126 69 168 230 169 112 170 113 170 231 169 72 168 74 171 232 172 114 173 115 173 233 172 75 171 234 174 116 175 82 176 87 176 117 175 235 174 120 177 236 178 94 179 99 179 237 178 121 177 109 180 125 181 123 182 126 182 128 181 110 180 238 183 123 184 122 185 129 185 126 184 239 183 124 186 240 187 122 188 129 188 241 187 127 186 124 189 131 190 242 191 243 191 132 190 127 189 134 192 244 193 135 194 138 194 245 193 139 192 140 195 246 196 100 197 101 197 247 196 141 195 248 198 142 199 104 200 105 200 143 199 249 198 250 201 104 202 144 203 145 203 105 202 251 201 103 204 238 205 144 206 145 206 239 205 106 204 103 207 123 208 238 209 239 209 126 208 106 207 252 210 253 211 254 212 255 212 256 211 257 210 253 213 258 214 259 215 260 215 261 214 256 213 262 216 263 217 258 218 261 218 264 217 265 216 266 219 267 220 262 221 265 221 268 220 269 219 270 222 271 223 272 224 273 224 274 223 275 222 276 225 277 226 270 227 275 227 278 226 279 225 280 228 281 229 282 230 283 230 284 229 285 228 281 231 286 232 287 233 288 233 289 232 284 231 286 234 290 235 291 236 292 236 293 235 289 234 290 237 142 238 248 239 249 239 143 238 293 237 242 240 131 241 294 242 295 242 132 241 243 240 296 243 294 244 297 245 298 245 295 244 299 243 300 246 297 247 301 248 302 248 298 247 303 246 304 249 301 250 305 251 306 251 302 250 307 249 308 252 309 253 310 254 311 254 312 253 313 252 314 255 315 256 316 257 317 257 318 256 319 255 309 258 320 259 321 260 322 260 323 259 312 258 324 261 316 262 325 263 326 263 317 262 327 261 328 264 252 265 329 266 330 266 257 265 331 264 230 267 332 268 112 269 113 269 333 268 231 267 232 270 334 271 114 272 115 272 335 271 233 270 336 273 116 274 234 275 235 275 117 274 337 273 338 276 236 277 120 278 121 278 237 277 339 276 240 279 124 280 242 281 243 281 127 280 241 279 340 282 244 283 134 284 139 284 245 283 341 282 342 285 246 286 140 287 141 287 247 286 343 285 248 288 104 289 250 290 251 290 105 289 249 288 252 291 254 292 329 293 330 293 255 292 257 291 254 294 253 295 259 296 260 296 256 295 255 294 259 297 258 298 263 299 264 299 261 298 260 297 262 300 267 301 263 302 264 302 268 301 265 300 266 303 271 304 267 305 268 305 274 304 269 303 344 306 345 307 346 308 347 308 348 307 349 306 270 309 277 310 271 311 274 311 278 310 275 309 350 312 277 313 282 314 276 315 282 314 277 313 278 313 283 314 279 315 283 314 278 313 351 312 352 316 353 317 354 318 355 318 356 317 357 316 281 319 287 320 282 321 283 321 288 320 284 319 286 322 291 323 287 324 288 324 292 323 289 322 291 325 290 326 248 327 249 327 293 326 292 325 242 328 294 329 296 330 299 330 295 329 243 328 296 331 297 332 300 333 303 333 298 332 299 331 300 334 301 335 304 336 307 336 302 335 303 334 304 337 305 338 310 339 311 339 306 338 307 337 358 340 359 341 360 342 361 342 362 341 363 340 310 343 309 344 321 345 322 345 312 344 311 343 364 346 314 347 316 348 317 348 319 347 365 346 321 349 320 350 329 351 330 351 323 350 322 349 366 352 367 353 368 354 369 354 370 353 371 352 364 355 316 356 324 357 327 357 317 356 365 355 372 358 332 359 230 360 231 360 333 359 373 358 232 361 374 362 334 363 335 363 375 362 233 361 376 364 336 365 234 366 235 366 337 365 377 364 378 367 236 368 338 369 339 369 237 368 379 367 240 370 242 371 380 372 381 372 243 371 241 370 340 373 382 374 244 375 245 375 383 374 341 373 342 376 384 377 246 378 247 378 385 377 343 376 291 379 248 380 250 381 251 381 249 380 292 379 329 382 254 383 386 384 387 384 255 383 330 382 254 385 259 386 388 387 389 387 260 386 255 385 259 388 263 389 390 390 391 390 264 389 260 388 267 391 392 392 263 393 264 393 393 392 268 391 271 394 394 395 267 396 268 396 395 395 274 394 396 397 397 398 398 399 399 399 400 398 401 397 345 400 402 401 346 402 347 402 403 401 348 400 277 403 404 404 271 405 274 405 405 404 278 403 277 406 350 407 404 408 405 408 351 407 278 406 282 409 406 410 350 411 351 411 407 410 283 409 408 412 409 413 410 414 411 414 412 413 413 412 414 415 352 416 354 417 355 417 357 416 415 415 282 418 287 419 406 420 416 421 406 420 287 419 288 419 407 420 417 421 407 420 288 419 283 418 287 422 291 423 416 424 417 424 292 423 288 422 380 425 242 426 296 427 299 427 243 426 381 425 418 428 296 429 300 430 303 430 299 429 419 428 420 431 300 432 304 433 307 433 303 432 421 431 422 434 304 435 310 436 311 436 307 435 423 434 358 437 360 438 424 439 425 439 361 438 363 437 310 440 321 441 426 442 427 442 322 441 311 440 428 443 314 444 364 445 365 445 319 444 429 443 321 446 329 447 430 448 431 448 330 447 322 446 432 449 368 450 367 451 370 451 369 450 433 449 434 452 364 453 324 454 327 454 365 453 435 452 372 455 436 456 332 457 333 457 437 456 373 455 374 458 438 459 334 460 335 460 439 459 375 458 440 461 336 462 376 463 377 463 337 462 441 461 442 464 378 465 338 466 339 466 379 465 443 464 444 467 382 468 340 469 341 469 383 468 445 467 446 470 384 471 342 472 343 472 385 471 447 470 291 473 250 474 448 475 449 475 251 474 292 473 329 476 386 477 430 478 431 478 387 477 330 476 386 479 254 480 388 481 389 481 255 480 387 479 259 482 390 483 388 484 389 484 391 483 260 482 390 485 263 486 392 487 393 487 264 486 391 485 267 488 394 489 392 490 393 490 395 489 268 488 271 491 404 492 394 493 395 493 405 492 274 491 450 494 451 495 452 496 453 496 454 495 455 494 345 497 456 498 402 499 403 499 457 498 348 497 451 500 458 501 452 502 453 502 459 501 454 500 460 503 352 504 414 505 415 505 357 504 461 503 416 506 291 507 448 508 449 508 292 507 417 506 380 509 296 510 418 511 419 511 299 510 381 509 418 512 300 513 420 514 421 514 303 513 419 512 420 515 304 516 422 517 423 517 307 516 421 515 422 518 310 519 426 520 427 520 311 519 423 518 424 521 360 522 462 523 463 523 361 522 425 521 426 524 321 525 430 526 431 526 322 525 427 524 464 527 314 528 428 529 429 529 319 528 465 527 466 530 467 531 468 532 469 532 470 531 471 530 368 533 432 534 472 535 473 535 433 534 369 533 466 536 468 537 474 538 475 538 469 537 471 536 476 539 434 540 324 541 327 541 435 540 477 539 478 542 436 543 372 544 373 544 437 543 479 542 374 545 480 546 438 547 439 547 481 546 375 545 482 548 440 549 376 550 377 550 441 549 483 548 484 551 378 552 442 553 443 553 379 552 485 551 444 554 486 555 382 556 383 556 487 555 445 554 446 557 488 558 384 559 385 559 489 558 447 557 450 560 452 561 490 562 491 562 453 561 455 560 456 563 492 564 402 565 403 565 493 564 457 563 494 566 495 567 496 568 497 568 498 567 499 566 452 569 458 570 500 571 501 571 459 570 453 569 458 572 502 573 503 574 504 574 505 573 459 572 506 575 460 576 414 577 415 577 461 576 507 575 508 578 424 579 462 580 463 580 425 579 509 578 510 581 511 582 512 583 513 583 514 582 515 581 464 584 516 585 314 586 319 586 517 585 465 584 518 587 519 588 520 589 521 589 522 588 523 587 518 590 520 591 524 592 525 592 521 591 523 590 526 593 527 594 324 595 327 595 528 594 529 593 472 596 432 597 530 598 531 598 433 597 473 596 532 599 533 600 534 601 535 601 536 600 537 599 532 602 534 603 538 604 539 604 535 603 537 602 540 605 476 606 324 607 327 607 477 606 541 605 478 608 542 609 436 610 437 610 543 609 479 608 480 611 544 612 438 613 439 613 545 612 481 611 546 614 440 615 482 616 483 616 441 615 547 614 548 617 484 618 442 619 443 619 485 618 549 617 550 620 486 621 444 622 445 622 487 621 551 620 446 623 552 624 488 625 489 625 553 624 447 623 450 626 490 627 554 628 555 628 491 627 455 626 556 629 557 630 558 631 559 631 560 630 561 629 456 632 562 633 492 634 493 634 563 633 457 632 564 635 565 636 566 637 567 637 568 636 569 635 494 638 496 639 570 640 571 640 497 639 499 638 572 641 557 642 556 643 561 643 560 642 573 641 500 644 458 645 574 646 575 646 459 645 501 644 576 647 458 648 503 649 504 649 459 648 577 647 503 650 502 651 578 652 579 652 505 651 504 650 580 653 460 654 506 655 507 655 461 654 581 653 508 656 462 657 582 658 583 658 463 657 509 656 584 659 510 660 512 661 513 661 515 660 585 659 586 662 511 663 510 664 515 664 514 663 587 662 588 665 589 666 590 667 591 667 592 666 593 665 594 668 519 669 518 670 523 670 522 669 595 668 527 671 540 672 324 673 327 673 541 672 528 671 596 674 527 675 526 676 529 676 528 675 597 674 472 677 530 678 598 679 599 679 531 678 473 677 600 680 532 681 538 682 539 682 537 681 601 680 602 683 603 684 604 685 605 685 606 684 607 683 608 686 542 687 478 688 479 688 543 687 609 686 480 689 610 690 544 691 545 691 611 690 481 689 612 692 546 693 482 694 483 694 547 693 613 692 614 695 484 696 548 697 549 697 485 696 615 695 550 698 616 699 486 700 487 700 617 699 551 698 488 701 552 702 618 703 619 703 553 702 489 701 450 704 554 705 620 706 621 706 555 705 455 704 558 707 622 708 623 709 624 709 625 708 559 707 558 710 557 711 622 712 625 712 560 711 559 710 562 713 626 714 492 715 493 715 627 714 563 713 494 716 570 717 628 718 629 718 571 717 499 716 630 719 631 720 632 721 633 721 634 720 635 719 636 722 630 723 637 724 638 724 635 723 639 722 572 725 640 726 557 727 560 727 641 726 573 725 640 728 572 729 642 730 643 730 573 729 641 728 574 731 458 732 576 733 577 733 459 732 575 731 644 734 645 735 646 736 647 736 648 735 649 734 645 737 650 738 651 739 652 739 653 738 648 737 578 740 502 741 654 742 655 742 505 741 579 740 656 743 580 744 506 745 507 745 581 744 657 743 658 746 508 747 582 748 583 748 509 747 659 746 586 749 660 750 511 751 514 751 661 750 587 749 590 752 662 753 663 754 664 754 665 753 591 752 663 755 666 756 667 757 668 757 669 756 664 755 590 758 589 759 662 760 665 760 592 759 591 758 604 761 670 762 671 763 672 763 673 762 605 761 670 764 674 765 675 766 676 766 677 765 673 764 678 767 596 768 526 769 529 769 597 768 679 767 598 770 530 771 680 772 681 772 531 771 599 770 671 773 602 774 604 775 605 775 607 774 672 773 608 776 682 777 542 778 543 778 683 777 609 776 610 779 684 780 544 781 545 781 685 780 611 779 686 782 546 783 612 784 613 784 547 783 687 782 688 785 614 786 548 787 549 787 615 786 689 785 550 788 690 789 616 790 617 790 691 789 551 788 552 791 692 792 618 793 619 793 693 792 553 791 631 794 694 795 695 796 696 796 697 795 634 794 623 797 622 798 698 799 699 799 625 798 624 797 562 800 700 801 626 802 627 802 701 801 563 800 628 803 570 804 702 805 703 805 571 804 629 803 632 806 631 807 695 808 696 808 634 807 633 806 637 809 630 810 632 811 633 811 635 810 638 809 704 812 636 813 637 814 638 814 639 813 705 812 706 815 707 816 708 817 709 817 710 816 711 815 640 818 642 819 712 820 713 820 643 819 641 818 714 821 715 822 716 823 717 823 718 822 719 821 715 824 720 825 716 826 717 826 721 825 718 824 645 827 651 828 646 829 647 829 652 828 648 827 650 830 722 831 651 832 652 832 723 831 653 830 578 833 654 834 724 835 725 835 655 834 579 833 726 836 580 837 656 838 657 838 581 837 727 836 658 839 582 840 728 841 729 841 583 840 659 839 730 842 660 843 586 844 587 844 661 843 731 842 663 845 662 846 666 847 669 847 665 846 664 845 667 848 666 849 732 850 733 850 669 849 668 848 670 851 675 852 671 853 672 853 676 852 673 851 674 854 734 855 675 856 676 856 735 855 677 854 736 857 596 858 678 859 679 859 597 858 737 857 598 860 680 861 738 862 739 862 681 861 599 860 608 863 740 864 682 865 683 865 741 864 609 863 742 866 684 867 610 868 611 868 685 867 743 866 684 869 744 870 544 871 545 871 745 870 685 869 746 872 686 873 612 874 613 874 687 873 747 872 748 875 614 876 688 877 689 877 615 876 749 875 690 878 750 879 616 880 617 880 751 879 691 878 618 881 692 882 742 883 743 883 693 882 619 881 552 884 752 885 692 886 693 886 753 885 553 884 700 887 754 888 626 889 627 889 755 888 701 887 628 890 702 891 756 892 757 892 703 891 629 890 758 893 636 894 704 895 705 895 639 894 759 893 650 896 760 897 722 898 723 898 761 897 653 896 724 899 654 900 762 901 763 901 655 900 725 899 764 902 726 903 656 904 657 904 727 903 765 902 766 905 658 906 728 907 729 907 659 906 767 905 730 908 768 909 660 910 661 910 769 909 731 908 667 911 732 912 770 913 771 913 733 912 668 911 674 914 772 915 734 916 735 916 773 915 677 914 774 917 736 918 678 919 679 919 737 918 775 917 738 920 680 921 776 922 777 922 681 921 739 920 740 923 778 924 682 925 683 925 779 924 741 923 742 926 780 927 684 928 685 928 781 927 743 926 782 929 783 930 784 931 785 931 786 930 787 929 788 932 789 933 790 934 791 934 792 933 793 932 794 935 748 936 688 937 689 937 749 936 795 935 796 938 782 939 797 940 798 940 787 939 799 938 692 941 780 942 742 943 743 943 781 942 693 941 800 944 801 945 802 946 803 946 804 945 805 944 700 947 806 948 754 949 755 949 807 948 701 947 756 950 702 951 808 952 809 952 703 951 757 950 810 953 758 954 704 955 705 955 759 954 811 953 760 956 812 957 722 958 723 958 813 957 761 956 724 959 762 960 814 961 815 961 763 960 725 959 816 962 726 963 764 964 765 964 727 963 817 962 766 965 728 966 818 967 819 967 729 966 767 965 820 968 768 969 730 970 731 970 769 969 821 968 770 971 732 972 822 973 823 973 733 972 771 971 772 974 824 975 734 976 735 976 825 975 773 974 826 977 736 978 774 979 775 979 737 978 827 977 738 980 776 981 828 982 829 982 777 981 739 980 789 983 830 984 831 985 832 985 833 984 792 983 782 986 784 987 834 988 835 988 785 987 787 986 789 989 831 990 790 991 791 991 832 990 792 989 797 992 782 993 834 994 835 994 787 993 798 992 830 995 800 996 836 997 837 997 805 996 833 995 800 998 802 999 836 1000 837 1000 803 999 805 998 806 1001 838 1002 754 1003 755 1003 839 1002 807 1001 756 1004 808 1005 840 1006 841 1006 809 1005 757 1004 842 1007 758 1008 810 1009 811 1009 759 1008 843 1007 760 1010 844 1011 812 1012 813 1012 845 1011 761 1010 814 1013 762 1014 846 1015 847 1015 763 1014 815 1013 848 1016 816 1017 764 1018 765 1018 817 1017 849 1016 850 1019 766 1020 818 1021 819 1021 767 1020 851 1019 852 1022 768 1023 820 1024 821 1024 769 1023 853 1022 770 1025 822 1026 854 1027 855 1027 823 1026 771 1025 772 1028 856 1029 824 1030 825 1030 857 1029 773 1028 858 1031 826 1032 774 1033 775 1033 827 1032 859 1031 828 1034 776 1035 860 1036 861 1036 777 1035 829 1034 830 1037 862 1038 831 1039 832 1039 863 1038 833 1037 862 1040 830 1041 836 1042 837 1042 833 1041 863 1040 806 1043 864 1044 838 1045 839 1045 865 1044 807 1043 808 1046 866 1047 840 1048 841 1048 867 1047 809 1046 868 1049 842 1050 810 1051 811 1051 843 1050 869 1049 844 1052 870 1053 812 1054 813 1054 871 1053 845 1052 872 1055 814 1056 846 1057 847 1057 815 1056 873 1055 874 1058 816 1059 848 1060 849 1060 817 1059 875 1058 850 1061 818 1062 876 1063 877 1063 819 1062 851 1061 852 1064 820 1065 878 1066 879 1066 821 1065 853 1064 822 1067 880 1068 854 1069 855 1069 881 1068 823 1067 856 1070 882 1071 824 1072 825 1072 883 1071 857 1070 884 1073 826 1074 858 1075 859 1075 827 1074 885 1073 828 1076 860 1077 886 1078 887 1078 861 1077 829 1076 864 1079 888 1080 838 1081 839 1081 889 1080 865 1079 890 1082 840 1083 891 1084 892 1084 841 1083 893 1082 840 1085 866 1086 891 1087 892 1087 867 1086 841 1085 868 1088 894 1089 842 1090 843 1090 895 1089 869 1088 870 1091 844 1092 896 1093 897 1093 845 1092 871 1091 872 1094 846 1095 898 1096 899 1096 847 1095 873 1094 846 1097 900 1098 898 1099 899 1099 901 1098 847 1097 902 1100 874 1101 848 1102 849 1102 875 1101 903 1100 850 1103 876 1104 904 1105 905 1105 877 1104 851 1103 906 1106 852 1107 907 1108 908 1108 853 1107 909 1106 907 1109 852 1110 878 1111 879 1111 853 1110 908 1109 854 1112 880 1113 910 1114 911 1114 881 1113 855 1112 856 1115 912 1116 882 1117 883 1117 913 1116 857 1115 914 1118 884 1119 858 1120 859 1120 885 1119 915 1118 916 1121 914 1122 858 1123 859 1123 915 1122 917 1121 886 1124 860 1125 918 1126 919 1126 861 1125 887 1124 920 1127 921 1128 922 1129 923 1129 924 1128 925 1127 866 1130 926 1131 891 1132 892 1132 927 1131 867 1130 928 1133 894 1134 868 1135 869 1135 895 1134 929 1133 870 1136 896 1137 930 1138 931 1138 897 1137 871 1136 926 1139 872 1140 898 1141 899 1141 873 1140 927 1139 932 1142 933 1143 934 1144 935 1144 936 1143 937 1142 938 1145 939 1146 940 1147 941 1147 942 1146 943 1145 907 1148 878 1149 944 1150 945 1150 879 1149 908 1148 880 1151 946 1152 910 1153 911 1153 947 1152 881 1151 912 1154 948 1155 882 1156 883 1156 949 1155 913 1154 914 1157 944 1158 884 1159 885 1159 945 1158 915 1157 950 1160 951 1161 952 1162 953 1162 954 1161 955 1160 921 1163 956 1164 922 1165 923 1165 957 1164 924 1163 926 1166 958 1167 891 1168 892 1168 959 1167 927 1166 960 1169 961 1170 962 1171 963 1171 964 1170 965 1169 966 1172 967 1173 961 1174 964 1174 968 1173 969 1172 926 1175 898 1176 958 1177 959 1177 899 1176 927 1175 933 1178 970 1179 934 1180 935 1180 971 1179 936 1178 940 1181 939 1182 972 1183 973 1183 942 1182 941 1181 974 1184 907 1185 944 1186 945 1186 908 1185 975 1184 976 1187 977 1188 978 1189 979 1189 980 1188 981 1187 982 1190 976 1191 983 1192 984 1192 981 1191 985 1190 974 1193 944 1194 914 1195 915 1195 945 1194 975 1193 986 1196 950 1197 952 1198 953 1198 955 1197 987 1196 921 1199 988 1200 956 1201 957 1201 989 1200 924 1199 990 1202 961 1203 960 1204 965 1204 964 1203 991 1202 966 1205 961 1206 990 1207 991 1207 964 1206 969 1205 934 1208 970 1209 988 1210 989 1210 971 1209 935 1208 939 1211 992 1212 972 1213 973 1213 993 1212 942 1211 976 1214 978 1215 994 1216 995 1216 979 1215 981 1214 983 1217 976 1218 994 1219 995 1219 981 1218 984 1217 992 1220 950 1221 986 1222 987 1222 955 1221 993 1220 988 1223 996 1224 956 1225 957 1225 997 1224 989 1223 970 1226 996 1227 988 1228 989 1228 997 1227 971 1226 992 1229 998 1230 972 1231 973 1231 999 1230 993 1229 998 1232 992 1233 986 1234 987 1234 993 1233 999 1232</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID795\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID796\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID800\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID801\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID805\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"864\">-0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.5305222965723164 -0.002990082172258601 1.376102441332023 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.5305222965723173 0.3532727409933048 1.329987649113718 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.5298591187803332 -0.00574221556704102 1.315033915417415 -0.5298591187803421 0.3348089296069929 1.271711656260096 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.5305222965723164 -0.3590497055297489 1.328439095365639 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.5298591187803385 -0.3459019420420207 1.268739502378365 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.53052229657232 0.6854605357514176 1.19323552993501 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.5298591187803385 0.6525438188728021 1.141724003124181 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.5305222965723164 -0.6906404788265909 1.190244152420291 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.5298591187803403 -0.6624921240371504 1.135981994061013 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.5305222965723129 0.9709365919222839 0.975166692287758 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.5298591187803332 0.9258079870948033 0.9339296716635765 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.53052229657232 -0.9751633882258337 0.9709368171992316 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.5298591187803341 -0.9339287705557755 0.9258091134795445 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.5305222965723164 1.190246104820519 0.6906422059498695 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.5298591187803421 1.135982444614907 0.6624901716369323 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5305222965723129 -1.193233802811726 0.6854604606591006 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.5298591187803332 -1.141724678955031 0.6525435935958518 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723146 1.328439395734904 0.3590507568221723 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.5298591187803332 1.268741454778589 0.345902355049759 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5305222965723191 -1.329987198559816 0.3532718774316653 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.5298591187803385 -1.271708051828913 0.3348090797916251 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.5305222965723182 1.376103342439816 0.002991490153194221 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.5298591187803323 1.315034516155937 0.005743271552739904 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5305222965723129 -1.376101390039602 -0.002991724816679531 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.5298591187803385 -1.315034516155947 -0.005743036889248376 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.53052229657232 1.32998719855982 -0.3532716897008745 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.5298591187803385 1.271715110506643 -0.3348091924301 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5305222965723164 -1.328440296842697 -0.3590504939990626 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.5298591187803314 -1.268738150716667 -0.3459023175036009 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.5305222965723146 1.19323568011964 -0.6854608361206831 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.5298591187803385 1.141724678955033 -0.6525441192420656 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5305222965723218 -1.190241374004588 -0.6906419055806057 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.5298591187803377 -1.135982444614921 -0.6624891954368188 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.5305222965723164 0.975167142841656 -0.9709362915530173 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.5298591187803421 0.9339292211096721 -0.9258085878333278 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5305222965723146 -0.9709370424761765 -0.9751667673800735 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.5298591187803385 -0.9258079870948012 -0.9339298218482113 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.5305222965723191 0.6906428066884003 -1.190243852051024 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.529859118780335 0.6624944518989562 -1.135981693691745 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.5305222965723146 -0.6854605357514136 -1.19323530465806 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.529859118780335 -0.6525414159186819 -1.141724378585763 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.5305222965723182 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.5298591187803332 0.3459010409342211 -1.268739652562999 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5305222965723146 -0.3532708636853971 -1.32998824985225 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.5298591187803332 -0.3348066017451802 -1.271711055521563 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.5305222965723146 0.00299336746109824 -1.376102441332025 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.529859118780335 0.00574033825913034 -1.315034666340579 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035627 -0.3378135984617037 -1.272300980758927</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"288\" source=\"#ID805\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID802\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID806\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"864\">-0.9999410267352775 -0.00282230173442009 -0.01048702362534358 -0.9999410261811262 -1.189599814927649e-005 -0.01086020341990315 -0.9999410269663441 -0.002736872445651152 -0.01050962029330042 -0.9999410263908806 7.648229374381802e-005 -0.01085992130776995 0.9999410261811262 1.189599814927649e-005 0.01086020341990315 0.9999410269663441 0.002736872445651152 0.01050962029330042 0.9999410263908806 -7.648229374381802e-005 0.01085992130776995 0.9999410267352775 0.00282230173442009 0.01048702362534358 -0.9999410251909873 0.002884647210172477 -0.01047019343041532 -0.9999410250023675 0.002799366906628021 -0.01049333417637169 0.9999410251909873 -0.002884647210172477 0.01047019343041532 0.9999410250023675 -0.002799366906628021 0.01049333417637169 9.286956521860817e-019 -0.2567189364859696 -0.9664861031848894 9.286956521859729e-019 -0.2567189364859594 -0.9664861031848921 -5.715048115234753e-019 0.002173823798311303 -0.9999976372422557 -5.715048115234815e-019 0.002173823798316985 -0.9999976372422557 -9.286956521859729e-019 0.2567189364859594 0.9664861031848921 5.715048115234753e-019 -0.002173823798311303 0.9999976372422557 5.715048115234815e-019 -0.002173823798316985 0.9999976372422557 -9.286956521860817e-019 0.2567189364859696 0.9664861031848894 -0.999941027016906 -0.005440356935925922 -0.009399202348336674 -0.999941027241365 -0.005363709391798363 -0.009443127715125572 0.999941027241365 0.005363709391798363 0.009443127715125572 0.999941027016906 0.005440356935925922 0.009399202348336674 0.0038266651399871 -0.2544110204982774 -0.9670886150105025 0.003828242018622541 0.004557013776478851 -0.999982288937403 0.004942785664726246 -0.2568034608485688 -0.9664510082596376 -0.004942785664726246 0.2568034608485688 0.9664510082596376 -0.003828242018622541 -0.004557013776478851 0.999982288937403 -0.0038266651399871 0.2544110204982774 0.9670886150105025 -0.9999410238180577 0.005496359094067572 -0.009366905700582823 -0.9999410236206152 0.005419907617564657 -0.009411369824492982 0.9999410238180577 -0.005496359094067572 0.009366905700582823 0.9999410236206152 -0.005419907617564657 0.009411369824492982 1.643076813689116e-018 0.2609179530237881 -0.9653609800431529 1.643076813688965e-018 0.26091795302378 -0.9653609800431552 -1.643076813688965e-018 -0.26091795302378 0.9653609800431552 -1.643076813689116e-018 -0.2609179530237881 0.9653609800431529 0.003826725799420876 0.2632158559531372 -0.9647293762213907 0.004944863497418337 0.002079709308106825 -0.9999856114635779 -0.004944863497418337 -0.002079709308106825 0.9999856114635779 -0.003826725799420876 -0.2632158559531372 0.9647293762213907 5.715048112519107e-019 -0.4981166872421416 -0.8671100079522289 5.715048112518241e-019 -0.4981166872421474 -0.8671100079522257 -5.715048112518241e-019 0.4981166872421474 0.8671100079522257 -5.715048112519107e-019 0.4981166872421416 0.8671100079522289 -0.999941027776978 -0.007687610089140697 -0.007670829123266627 -0.9999410279774628 -0.007624925862152798 -0.007733115347123785 0.9999410279774628 0.007624925862152798 0.007733115347123785 0.999941027776978 0.007687610089140697 0.007670829123266627 0.003830007769246236 -0.4960444625889477 -0.8682886744483829 0.004945237506788235 -0.498190537464372 -0.8670534775934884 -0.004945237506788235 0.498190537464372 0.8670534775934884 -0.003830007769246236 0.4960444625889477 0.8682886744483829 -0.9999410231812367 0.007733425532157156 -0.007625240245423564 -0.9999410229394634 0.007671116821697991 -0.00768795222977871 0.9999410231812367 -0.007733425532157156 0.007625240245423564 0.9999410229394634 -0.007671116821697991 0.00768795222977871 3.714782186172491e-018 0.5018825991966421 -0.8649357528878214 3.714782186172493e-018 0.5018825991966418 -0.8649357528878217 -3.714782186172493e-018 -0.5018825991966418 0.8649357528878217 -3.714782186172491e-018 -0.5018825991966421 0.8649357528878214 0.003821063636068529 0.5039417767426235 -0.8637291734833188 0.004941675560377144 0.2608252386265301 -0.9653733861765972 -0.004941675560377144 -0.2608252386265301 0.9653733861765972 -0.003821063636068529 -0.5039417767426235 0.8637291734833188 -1.143009550785445e-018 -0.7055662686997598 -0.7086439447798156 -1.143009550785445e-018 -0.7055662686997609 -0.7086439447798146 1.143009550785445e-018 0.7055662686997609 0.7086439447798146 1.143009550785445e-018 0.7055662686997598 0.7086439447798156 -0.9999410270511003 -0.009411083689174002 -0.005419771562170325 -0.9999410273711995 -0.009366649538182812 -0.005496149220936206 0.9999410273711995 0.009366649538182812 0.005496149220936206 0.9999410270511003 0.009411083689174002 0.005419771562170325 0.003831559424319163 -0.7038698595571158 -0.7103186186208439 0.004947190279231937 -0.705623059879875 -0.7085701254456779 -0.004947190279231937 0.705623059879875 0.7085701254456779 -0.003831559424319163 0.7038698595571158 0.7103186186208439 -0.9999410254789244 0.009443272316692088 -0.005363783376497059 -0.9999410251117098 0.009399334675645549 -0.00544047848980481 0.9999410254789244 -0.009443272316692088 0.005363783376497059 0.9999410251117098 -0.009399334675645549 0.00544047848980481 4.00053320143097e-018 0.7086421448071717 -0.7055680765192622 4.000533201430981e-018 0.7086421448071734 -0.7055680765192605 -4.000533201430981e-018 -0.7086421448071734 0.7055680765192605 -4.00053320143097e-018 -0.7086421448071717 0.7055680765192622 0.003824929807736708 0.7103168903995655 -0.7038716396652572 0.004938464558228079 0.5017959577429818 -0.8649719234522071 -0.004938464558228079 -0.5017959577429818 0.8649719234522071 -0.003824929807736708 -0.7103168903995655 0.7038716396652572 -4.572041747584274e-018 -0.864936467361332 -0.5018813678833869 -4.572041747584255e-018 -0.8649364673613317 -0.5018813678833874 4.572041747584274e-018 0.864936467361332 0.5018813678833869 4.572041747584255e-018 0.8649364673613317 0.5018813678833874 -0.9999410251383567 -0.01049332216834374 -0.002799363342558378 -0.9999410254124463 -0.01047018167537675 -0.00288461310922097 0.9999410254124463 0.01047018167537675 0.00288461310922097 0.9999410251383567 0.01049332216834374 0.002799363342558378 0.004949545639221747 -0.8649707823906792 -0.5017978154679645 0.003832821996489258 -0.8637292188850311 -0.5039416096332962 -0.003832821996489258 0.8637292188850311 0.5039416096332962 -0.004949545639221747 0.8649707823906792 0.5017978154679645 -0.9999410277040745 0.01050954553455601 -0.0027368899825801 -0.9999410274483728 0.01048696668360297 -0.002822260666456722 0.9999410277040745 -0.01050954553455601 0.0027368899825801 0.9999410274483728 -0.01048696668360297 0.002822260666456722 5.715048312027202e-019 0.8671086552386754 -0.4981190420072052 5.715048312025381e-019 0.8671086552386785 -0.4981190420071999 -5.715048312027202e-019 -0.8671086552386754 0.4981190420072052 -5.715048312025381e-019 -0.8671086552386785 0.4981190420071999 0.003820269720511365 0.8682920451375475 -0.4960386374972395 0.0049414496731202 0.7085678671176957 -0.7056253678570574 -0.0049414496731202 -0.7085678671176957 0.7056253678570574 -0.003820269720511365 -0.8682920451375475 0.4960386374972395 -7.429561417819622e-018 -0.9653613948153605 -0.2609164184181239 -7.429561417819627e-018 -0.9653613948153605 -0.2609164184181246 7.429561417819622e-018 0.9653613948153605 0.2609164184181239 7.429561417819627e-018 0.9653613948153605 0.2609164184181246 -0.9999410236950654 -0.0108604323189624 1.189578101152491e-005 -0.9999410239817562 -0.01086014318859406 -7.647378754804853e-005 0.9999410239817562 0.01086014318859406 7.647378754804853e-005 0.9999410236950654 0.0108604323189624 -1.189578101152491e-005 0.004947196804022776 -0.9653740421109739 -0.2608227061858341 0.003828924557667887 -0.9647294463450653 -0.2632155669626615 -0.003828924557667887 0.9647294463450653 0.2632155669626615 -0.004947196804022776 0.9653740421109739 0.2608227061858341 -0.9999410275599662 0.01085981393770593 7.644316398962921e-005 -0.9999410273536835 0.01086009544374367 -1.190852621266681e-005 0.9999410275599662 -0.01085981393770593 -7.644316398962921e-005 0.9999410273536835 -0.01086009544374367 1.190852621266681e-005 2.286020727136626e-018 0.9664860372523969 -0.2567191847060875 2.28602072713672e-018 0.9664860372523976 -0.2567191847060854 -2.286020727136626e-018 -0.9664860372523969 0.2567191847060875 -2.28602072713672e-018 -0.9664860372523976 0.2567191847060854 0.003827393334498319 0.9670875751500726 -0.2544149623167159 0.004937611921748164 0.8670557886269709 -0.4981865909445694 -0.004937611921748164 -0.8670557886269709 0.4981865909445694 -0.003827393334498319 -0.9670875751500726 0.2544149623167159 -5.143545129757725e-018 -0.9999976392143629 -0.002172916404493806 -5.14354512975772e-018 -0.9999976392143629 -0.002172916404493386 5.143545129757725e-018 0.9999976392143629 0.002172916404493806 5.14354512975772e-018 0.9999976392143629 0.002172916404493386 -0.999941022673983 -0.01048738397334414 0.002822401655441478 -0.999941022932187 -0.01050997881948693 0.002736969591659315 0.999941022673983 0.01048738397334414 -0.002822401655441478 0.999941022932187 0.01050997881948693 -0.002736969591659315 0.00494289717588586 -0.9999856224609727 -0.002079095680684648 0.003823753939118948 -0.9999822999605859 -0.004558362792749011 -0.003823753939118948 0.9999822999605859 0.004558362792749011 -0.00494289717588586 0.9999856224609727 0.002079095680684648 -0.9999410263259161 0.01047008550038063 0.002884645539441912 -0.9999410261363435 0.01049322892617458 0.002799356372282648 0.9999410261363435 -0.01049322892617458 -0.002799356372282648 0.9999410263259161 -0.01047008550038063 -0.002884645539441912 8.00106323387303e-018 0.9999976415480206 0.002171842166549161 8.001063233873028e-018 0.9999976415480205 0.002171842166550713 -8.00106323387303e-018 -0.9999976415480206 -0.002171842166549161 -8.001063233873028e-018 -0.9999976415480205 -0.002171842166550713 0.003820960518357111 0.9999823146921165 0.004557473391502327 0.004943655417316188 0.9664498920219311 -0.2568076449055063 -0.004943655417316188 -0.9664498920219311 0.2568076449055063 -0.003820960518357111 -0.9999823146921165 -0.004557473391502327 -6.858057229063156e-018 -0.966486022918216 0.2567192386708286 -6.858057229063177e-018 -0.9664860229182158 0.2567192386708294 6.858057229063156e-018 0.966486022918216 -0.2567192386708286 6.858057229063177e-018 0.9664860229182158 -0.2567192386708294 -0.9999410247043286 -0.009399388050470537 0.005440461150824826 -0.9999410247948612 -0.009443327762755185 0.005363813286095222 0.9999410247043286 0.009399388050470537 -0.005440461150824826 0.9999410247948612 0.009443327762755185 -0.005363813286095222 0.004936272458468085 -0.9664516804695458 0.2568010563292271 0.003820755532216115 -0.9670893318392673 0.2544083844330651 -0.003820755532216115 0.9670893318392673 -0.2544083844330651 -0.004936272458468085 0.9664516804695458 -0.2568010563292271 -0.9999410256117496 0.009366813524850533 0.005496189854195041 -0.9999410253685213 0.009411196694760312 0.005419885766598052 0.9999410253685213 -0.009411196694760312 -0.005419885766598052 0.9999410256117496 -0.009366813524850533 -0.005496189854195041 3.429033357918545e-018 0.965360504839634 0.2609197112058935 3.429033357918479e-018 0.9653605048396337 0.2609197112058954 -3.429033357918545e-018 -0.965360504839634 -0.2609197112058935 -3.429033357918479e-018 -0.9653605048396337 -0.2609197112058954 0.003817824858266475 0.9647289711546364 0.263217469838665 0.004934312890925137 0.9999856557972721 0.002083448102078534 -0.004934312890925137 -0.9999856557972721 -0.002083448102078534 -0.003817824858266475 -0.9647289711546364 -0.263217469838665 -9.144078984033087e-018 -0.867110662481631 0.4981155478507642 -9.144078984033078e-018 -0.8671106624816305 0.4981155478507653 9.144078984033087e-018 0.867110662481631 -0.4981155478507642 9.144078984033078e-018 0.8671106624816305 -0.4981155478507653 -0.9999410258568779 -0.007670953598774204 0.007687735634113518 -0.9999410261583621 -0.007733206562220277 0.007625071909699455 0.9999410258568779 0.007670953598774204 -0.007687735634113518 0.9999410261583621 0.007733206562220277 -0.007625071909699455 0.004943216518040933 -0.8670551900821601 0.4981875770852226 0.003833002046245444 -0.8682878081597345 0.4960459558311885 -0.003833002046245444 0.8682878081597345 -0.4960459558311885 -0.004943216518040933 0.8670551900821601 -0.4981875770852226 -0.9999410272625215 0.00762500257451162 0.007733132154028003 -0.9999410269360286 0.00768770199564354 0.007670846638225618 0.9999410269360286 -0.00768770199564354 -0.007670846638225618 0.9999410272625215 -0.00762500257451162 -0.007733132154028003 1.854995159308181e-033 0.8649358526966459 0.501882427187809 0 0.8649358526966459 0.5018824271878087 -1.854995159308181e-033 -0.8649358526966459 -0.501882427187809 -0 -0.8649358526966459 -0.5018824271878087 0.003824655911536794 0.8637325256144357 0.5039360040747896 0.00493577675738415 0.965373481876459 0.2608249961133392 -0.00493577675738415 -0.965373481876459 -0.2608249961133392 -0.003824655911536794 -0.8637325256144357 -0.5039360040747896 -4.000534401751088e-018 -0.7086423925289491 0.7055678277181058 -4.000534401751267e-018 -0.7086423925289535 0.7055678277181015 4.000534401751088e-018 0.7086423925289491 -0.7055678277181058 4.000534401751267e-018 0.7086423925289535 -0.7055678277181015 -0.9999410250620634 -0.005419835344405121 0.009411258293619431 -0.9999410252935886 -0.005496284586928853 0.009366791902600188 0.9999410250620634 0.005419835344405121 -0.009411258293619431 0.9999410252935886 0.005496284586928853 -0.009366791902600188 0.004956122332517188 -0.7085675751092042 0.7056255581789024 0.003839165997742563 -0.7103157740092257 0.7038726887712835 -0.003839165997742563 0.7103157740092257 -0.7038726887712835 -0.004956122332517188 0.7085675751092042 -0.7056255581789024 -0.9999410286150683 0.005363601809037949 0.00944304335864537 -0.9999410283762649 0.005440312684114939 0.009399083344507243 0.9999410283762649 -0.005440312684114939 -0.009399083344507243 0.9999410286150683 -0.005363601809037949 -0.00944304335864537 1.143010565603663e-018 0.7055700372479684 0.708640192578646 1.143010565603663e-018 0.7055700372479702 0.7086401925786443 -1.143010565603663e-018 -0.7055700372479684 -0.708640192578646 -1.143010565603663e-018 -0.7055700372479702 -0.7086401925786443 0.003828663124196161 0.7038699749626737 0.7103185198801497 0.004943198463052079 0.8649741663126888 0.5017920449754302 -0.004943198463052079 -0.8649741663126888 -0.5017920449754302 -0.003828663124196161 -0.7038699749626737 -0.7103185198801497 1.143009736610772e-018 -0.5018818905357437 0.8649361640908929 1.143009736610791e-018 -0.5018818905357418 0.864936164090894 -1.143009736610791e-018 0.5018818905357418 -0.864936164090894 -1.143009736610772e-018 0.5018818905357437 -0.8649361640908929 -0.9999410255099235 -0.002799393181743322 0.01049327880009495 -0.9999410257213326 -0.002884592461343174 0.01047015786420724 0.9999410255099235 0.002799393181743322 -0.01049327880009495 0.9999410257213326 0.002884592461343174 -0.01047015786420724 0.003824873531433713 -0.5039411440157595 0.863729525783712 0.004945242852861994 -0.5017941450757408 0.8649729363054273 -0.004945242852861994 0.5017941450757408 -0.8649729363054273 -0.003824873531433713 0.5039411440157595 -0.863729525783712 -0.9999410276338193 0.002736849005709989 0.0105095628901078 -0.9999410274584727 0.002822277484269053 0.01048696119453971 0.9999410274584727 -0.002822277484269053 -0.01048696119453971 0.9999410276338193 -0.002736849005709989 -0.0105095628901078 3.143276138552654e-018 0.4981161284324221 0.8671103289636764 3.143276138552537e-018 0.4981161284324288 0.8671103289636725 -3.143276138552537e-018 -0.4981161284324288 -0.8671103289636725 -3.143276138552654e-018 -0.4981161284324221 -0.8671103289636764 0.003832358652013756 0.4960426150147506 0.8682897195731909 0.004946838745694068 0.705624759428811 0.7085684354157024 -0.004946838745694068 -0.705624759428811 -0.7085684354157024 -0.003832358652013756 -0.4960426150147506 -0.8682897195731909 1.357324303737726e-018 -0.2609183436732318 0.9653608744582605 1.357324303737725e-018 -0.2609183436732317 0.9653608744582606 -1.357324303737726e-018 0.2609183436732318 -0.9653608744582605 -1.357324303737725e-018 0.2609183436732317 -0.9653608744582606 -0.999941026412113 -7.640534256199236e-005 0.01085991989442496 -0.999941026192585 1.181962340437762e-005 0.01086020244821933 0.999941026412113 7.640534256199236e-005 -0.01085991989442496 0.999941026192585 -1.181962340437762e-005 -0.01086020244821933 0.003825647232711771 -0.2632147699247492 0.9647296768093704 0.004940850776478425 -0.2608260194767013 0.9653731794272844 -0.004940850776478425 0.2608260194767013 -0.9653731794272844 -0.003825647232711771 0.2632147699247492 -0.9647296768093704 3.143278067595227e-018 0.2567179580818204 0.9664863630689782 3.143278067595215e-018 0.2567179580818195 0.9664863630689783 -3.143278067595227e-018 -0.2567179580818204 -0.9664863630689782 -3.143278067595215e-018 -0.2567179580818195 -0.9664863630689783 0.003832480658714482 0.2544130730309406 0.9670880520216109 0.004950182655957406 0.4981916449537949 0.8670528130338454 -0.004950182655957406 -0.4981916449537949 -0.8670528130338454 -0.003832480658714482 -0.2544130730309406 -0.9670880520216109 7.858190309334453e-019 -0.002175164586431004 0.9999976343267127 7.858190309334296e-019 -0.002175164586436765 0.9999976343267127 -7.858190309334453e-019 0.002175164586431004 -0.9999976343267127 -7.858190309334296e-019 0.002175164586436765 -0.9999976343267127 0.00382758993817654 -0.004556349394965424 0.999982294460985 0.004940921873113072 -0.002084718490196847 0.9999856205165454 -0.004940921873113072 0.002084718490196847 -0.9999856205165454 -0.00382758993817654 0.004556349394965424 -0.999982294460985 0.004946892765949841 0.2568047730411928 0.9664506385714813 -0.004946892765949841 -0.2568047730411928 -0.9664506385714813</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"288\" source=\"#ID806\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID804\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID807\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1344\">-7.080247872229587 21.0145052715412 0.04500165965700093 21.74008679032289 -6.710953503131737 20.09757480725083 0.1000627746095763 20.77921931956998 0.02250082982850047 10.87004339516144 -3.355476751565869 10.04878740362542 0.05003138730478817 10.38960965978499 -3.540123936114794 10.5072526357706 0.1303669829364637 20.77914246233489 0.07534380260125198 21.74001127780054 6.933554213792702 20.05073484708986 7.196528629951274 20.99006307575776 0.03767190130062599 10.87000563890027 3.466777106896351 10.02536742354493 3.598264314975637 10.49503153787888 0.06518349146823182 10.38957123116744 -10.61044593144635 -2.826023622170461 -12.86224447874705 -2.82602362217035 -10.61044593144633 2.825940115185436 -12.86224447874711 2.825940115185495 -6.431122239373526 -1.413011811085175 -5.305222965723164 1.412970057592718 -6.431122239373552 1.412970057592747 -5.305222965723173 -1.41301181108523 -13.75322553755872 18.85673535189866 -7.109527114000408 21.00841184581578 -13.09484172604693 18.04624503956301 -6.740198911846502 20.0914898144459 -3.554763557000204 10.50420592290789 -6.547420863023467 9.023122519781506 -3.370099455923251 10.04574490722295 -6.876612768779358 9.42836767594933 -10.42638530473695 -2.905002536116535 -10.59673960971082 2.494519512677447 -4.327947130481451 -2.831682395143322 -2.163973565240725 -1.415841197571661 -5.298369804855411 1.247259756338724 -5.213192652368477 -1.452501268058267 6.962746893829194 20.04450223255975 7.225755851347815 20.9838244764124 13.29449402849827 17.95567810305388 13.85751213473528 18.80944566772061 3.612877925673907 10.4919122382062 6.647247014249137 8.977839051526939 6.928756067367642 9.404722833860303 3.481373446914597 10.02225111627987 10.61044593144633 -2.825992595741062 10.61044593144633 2.825981580630943 12.86224447874709 -2.825992595740977 12.86224447874711 2.825981580630883 5.305222965723164 1.412990790315471 6.431122239373543 -1.412996297870488 6.431122239373552 1.412990790315442 5.305222965723164 -1.412996297870531 10.59158413280459 2.507848288547653 10.43221711685011 -2.891879332533704 4.495704241856068 2.664961531154151 2.247852120928034 1.332480765577075 5.216108558425053 -1.445939666266852 5.295792066402295 1.253924144273827 -10.6104459314464 -2.825947916893278 -12.86224447874696 -2.825947916893363 -10.61044593144635 2.826018007123239 -12.86224447874705 2.826018007123342 -6.431122239373481 -1.412973958446681 -5.305222965723173 1.413009003561619 -6.431122239373526 1.413009003561671 -5.3052229657232 -1.412973958446639 -19.48876166620547 15.41386975725847 -13.77936642589772 18.84494910367416 -18.58612139372733 14.76504876496961 -13.1209585274604 18.03447090017816 -6.889683212948862 9.42247455183708 -9.293060696863666 7.382524382484806 -6.560479263730202 9.01723545008908 -9.744380833102735 7.706934878629236 -10.48787858864871 -2.764407581528367 -10.54092074314131 2.636624072452559 -4.388737822148864 -2.773106452524509 -2.194368911074432 -1.386553226262254 -5.270460371570657 1.31831203622628 -5.243939294324353 -1.382203790764184 -10.59227251636439 2.389322457437515 -4.496732087605833 2.554385096985135 -4.202713000993107 -2.847316927641705 -2.101356500496554 -1.423658463820853 -2.248366043802917 1.277192548492567 -5.296136258182196 1.194661228718757 -4.30720657991396 -2.74923276937071 -10.49869520647 2.632675389960963 -4.39962318408665 2.65699263316773 -2.199811592043325 1.328496316583865 -5.249347603234998 1.316337694980481 -2.15360328995698 -1.374616384685355 13.32051131828215 17.94377319846329 13.88355461244131 18.79753048361999 18.74912252010727 14.63692954201792 19.57388520321002 15.34696485517103 6.941777306220654 9.398765241809993 9.374561260053634 7.318464771008959 9.786942601605007 7.673482427585516 6.660255659141074 8.971886599231643 10.61044593144633 -2.825950054937781 10.61044593144633 2.826024849709162 12.86224447874698 -2.825950054937781 12.86224447874709 2.826024849709241 5.305222965723164 1.413012424854581 6.43112223937349 -1.41297502746889 6.431122239373543 1.41301242485462 5.305222965723164 -1.41297502746889 10.54035182778038 2.638199660780892 10.48866032343423 -2.762877897270078 4.442089363119534 2.720080828020509 2.221044681559767 1.360040414010254 5.244330161717117 -1.381438948635039 5.270175913890189 1.319099830390446 4.491944073349894 2.559656761580416 10.29981134249543 -3.080686268385806 4.208186488432563 -2.842408495161039 2.104093244216282 -1.421204247580519 5.149905671247714 -1.540343134192903 2.245972036674947 1.279828380790208 -10.61044593144626 -2.826007686664317 -12.86224447874695 -2.82600768666433 -10.6104459314464 2.825974081103952 -12.86224447874696 2.825974081103872 -6.431122239373472 -1.413003843332165 -5.3052229657232 1.412987040551976 -6.431122239373481 1.412987040551936 -5.305222965723129 -1.413003843332158 -23.89600667514926 10.92066306974483 -19.50998122430807 15.39728158332552 -22.81065927108942 10.47772735264272 -18.60732806298233 14.74847168761938 -9.754990612154034 7.698640791662758 -11.40532963554471 5.238863676321358 -9.303664031491167 7.374235843809688 -11.94800333757463 5.460331534872416 -10.50030773036436 -2.734916554904787 -10.52885884924632 2.666219038494773 -4.401245236452727 -2.76072003842497 -2.200622618226364 -1.380360019212485 -5.26442942462316 1.333109519247386 -5.250153865182178 -1.367458277452394 -4.32864380715561 -2.728077418327247 -10.47763817691943 2.68387523224497 -4.378491287508375 2.678448496215526 -2.189245643754187 1.339224248107763 -5.238819088459714 1.341937616122485 -2.164321903577805 -1.364038709163623 18.77018998656991 14.62024772013757 19.5949665952896 15.33027302281989 22.92595043396204 10.32077586296335 23.95620936789129 10.83867888613798 9.797483297644799 7.665136511409947 11.46297521698102 5.160387931481677 11.97810468394564 5.41933944306899 9.385094993284955 7.310123860068783 10.6104459314464 -2.825897195613247 10.61044593144633 2.826049461490449 12.86224447874695 -2.825897195613273 12.86224447874698 2.826049461490449 5.305222965723164 1.413024730745224 6.431122239373472 -1.412948597806637 6.43112223937349 1.413024730745224 5.3052229657232 -1.412948597806623 10.52887684445967 2.667030953698378 10.50094812248903 -2.734076931910342 4.430291040022829 2.732353085540517 2.215145520011415 1.366176542770259 5.250474061244517 -1.367038465955171 5.264438422229835 1.333515476849189 4.399105344315679 2.657705380890611 10.405646661895 -2.852414177822029 4.307926494970575 -2.748488817035858 2.153963247485287 -1.374244408517929 5.202823330947497 -1.426207088911014 2.199552672157839 1.328852690445306 -12.86224447874695 2.82589499537068 -10.61044593144626 2.825894995370698 -12.86224447874705 -2.82609222888195 -10.61044593144633 -2.826092228881945 -5.305222965723129 1.412947497685349 -6.431122239373526 -1.413046114440975 -5.305222965723164 -1.413046114440972 -6.431122239373472 1.41294749768534 -26.67466626827587 5.683381458330269 -23.91094160824194 10.90046653479481 -25.480634378765 5.476511141612718 -22.82558978287088 10.45753752207573 -11.95547080412097 5.450233267397406 -12.7403171893825 2.738255570806359 -11.41279489143544 5.228768761037864 -13.33733313413794 2.841690729165134 -4.407169166769916 -2.754967482411306 -10.5061668122532 -2.720959260215462 -10.52299040682837 2.680227784306265 -5.261495203414187 1.340113892153132 -5.253083406126599 -1.360479630107731 -2.203584583384958 -1.377483741205653 -4.36829736990867 2.688553868555497 -4.338942229388606 -2.718106829418196 -10.46739654333959 2.708275296133268 -5.233698271669796 1.354137648066634 -2.169471114694303 -1.359053414709098 -2.184148684954335 1.344276934277748 22.94070725863429 10.30051085556732 23.97097124693982 10.81840765627475 25.54024123667234 5.301444883669677 26.70589873035085 5.591928469817038 11.98548562346991 5.409203828137374 12.77012061833617 2.650722441834839 13.35294936517543 2.795964234908519 11.47035362931715 5.150255427783658 10.6104459314464 2.825978074745936 12.86224447874695 2.825978074745911 10.61044593144626 -2.826022509369519 12.86224447874705 -2.826022509369585 6.431122239373472 1.412989037372956 5.305222965723129 -1.41301125468476 6.431122239373526 -1.413011254684793 5.3052229657232 1.412989037372968 10.52299403178044 2.680668671248751 10.50650593923221 -2.720529992983924 4.424277996020746 2.737940602897313 2.212138998010373 1.368970301448656 5.253252969616103 -1.360264996491962 5.261497015890218 1.340334335624375 10.42739215514632 -2.802536852443821 4.328980138760369 -2.727871931832631 4.378331935230842 2.678689137250321 2.189165967615421 1.339344568625161 2.164490069380185 -1.363935965916316 5.21369607757316 -1.40126842622191 -10.61044593144633 2.826069973237937 -10.61044593144629 -2.825904747399156 -12.86224447874705 2.826069973237946 -12.86224447874705 -2.825904747399128 -5.305222965723146 -1.412952373699578 -6.431122239373526 1.413034986618973 -6.431122239373526 -1.412952373699564 -5.305222965723164 1.413034986618969 -27.63562791825015 0.05894696417114838 -26.68240515494901 5.660952007740802 -26.41417937681512 0.1022416071421344 -25.48837270451038 5.454083694207584 -13.34120257747451 2.830476003870401 -13.20708968840756 0.05112080357106722 -12.74418635225519 2.727041847103792 -13.81781395912508 0.02947348208557419 -4.411191943823121 -2.751040942821268 -10.51013701455871 -2.711656587826044 -10.51923878233571 2.689544116394612 -5.259619391167854 1.344772058197306 -5.255068507279354 -1.355828293913022 -2.20559597191156 -1.375520471410634 -4.361511748855548 2.695401719720111 -4.345629980062277 -2.711270388115964 -10.46055017487655 2.724534513404098 -5.230275087438276 1.362267256702049 -2.172814990031139 -1.355635194057982 -2.180755874427774 1.347700859860056 25.54779300121115 5.278981513532999 26.71345124453584 5.569463238081498 26.41427114481721 -0.07904357354193686 27.6356806405396 -0.03575631278366894 13.35672562226792 2.784731619040749 13.20713557240861 -0.03952178677096843 13.8178403202698 -0.01787815639183447 12.77389650060558 2.6394907567665 10.61044593144626 2.825904567781381 12.86224447874705 2.825904567781341 10.61044593144638 -2.826080473249799 12.86224447874712 -2.826080473249835 6.431122239373526 1.41295228389067 5.305222965723191 -1.4130402366249 6.431122239373561 -1.413040236624918 5.305222965723129 1.412952283890691 10.51942773562302 2.690148952244857 10.51058248831772 -2.711008433256825 4.420634634695935 2.742095775502585 2.210317317347967 1.371047887751293 5.255291244158862 -1.355504216628413 5.259713867811509 1.345074476122429 10.43808803086309 -2.778188160359191 4.339422289735736 -2.717691662957049 4.368439727116307 2.688941036790968 2.184219863558154 1.344470518395484 2.169711144867868 -1.358845831478525 5.219044015431544 -1.389094080179595 -10.61044593144629 2.825969956194813 -10.61044593144636 -2.825999911941941 -12.86224447874705 2.825969956194804 -12.86224447874705 -2.82599991194193 -5.305222965723181 -1.41299995597097 -6.431122239373525 1.412984978097402 -6.431122239373525 -1.412999955970965 -5.305222965723146 1.412984978097406 -27.63572438081653 0.03575277887220742 -26.41427583939755 0.07904742262653271 -26.71345594367574 -5.569460127254565 -25.54793886530002 -5.278983127411783 -13.20713791969877 0.03952371131326635 -13.35672797183787 -2.784730063627282 -12.77396943265001 -2.639491563705891 -13.81786219040827 0.01787638943610371 -4.414444895310771 -2.747727539370401 -10.51334257328524 -2.704033755330998 -10.51629208656035 2.697135660162628 -5.258146043280174 1.348567830081314 -5.256671286642618 -1.352016877665499 -2.207222447655385 -1.373863769685201 -4.356241648110164 2.700981605799032 -4.351142237181914 -2.705693483194667 -10.45521431322128 2.737626225312479 -5.227607156610642 1.36881311265624 -2.175571118590957 -1.352846741597333 -2.178120824055082 1.350490802899516 25.48830445552332 -5.454082925036311 26.41417720728785 -0.1022377360609355 26.68242100433726 -5.660947693454984 27.6355867030183 -0.05895047794281139 13.20708860364393 -0.05111886803046777 13.34121050216863 -2.830473846727492 13.81779335150915 -0.0294752389714057 12.74415222776166 -2.727041462518156 10.61044593144638 2.826052632890082 12.86224447874712 2.826052632890059 10.61044593144626 -2.82592204733246 12.86224447874695 -2.825922047332492 6.431122239373561 1.41302631644503 5.305222965723129 -1.41296102366623 6.431122239373472 -1.412961023666246 5.305222965723191 1.413026316445041 10.51606746666478 2.697041471798994 10.51330575549122 -2.704166435394285 4.417217997697089 2.744713837406366 2.208608998848545 1.372356918703183 5.256652877745612 -1.352083217697142 5.258033733332388 1.348520735899497 10.44465127714765 -2.762265554347846 4.345847193716227 -2.711126089156569 4.361514299577717 2.695541103625278 2.180757149788859 1.347770551812639 2.172923596858114 -1.355563044578285 5.222325638573823 -1.381132777173923 -10.61044593144636 2.826041266166125 -10.6104459314464 -2.825930766618026 -12.86224447874705 2.826041266166101 -12.86224447874691 -2.825930766618044 -5.3052229657232 -1.412965383309013 -6.431122239373526 1.41302063308305 -6.431122239373455 -1.412965383309022 -5.305222965723182 1.413020633083062 -26.70590282994665 -5.591927379275652 -25.54038650199819 -5.301448515743764 -23.97101290175442 -10.81841542886811 -22.94071136809923 -10.30052099361089 -12.77019325099909 -2.650724257871882 -11.98550645087721 -5.409207714434054 -11.47035568404961 -5.150260496805447 -13.35295141497332 -2.795963689637826 -4.417536498075453 -2.745135983150786 -10.51638582391865 -2.697463741985649 -10.51363540807846 2.703735574337612 -5.256817704039229 1.351867787168806 -5.258192911959323 -1.348731870992824 -2.208768249037727 -1.372567991575393 -4.351338578301006 2.705750945986859 -4.356258630087857 -2.700933213781691 -10.45023670146809 2.749406257350436 -5.225118350734043 1.374703128675218 -2.178129315043929 -1.350466606890846 -2.175669289150503 1.352875472993429 22.82558998950295 -10.45752259924669 25.48056850699846 -5.4765109888474 23.91084720343317 -10.90046224804534 26.67468449563205 -5.683377758338963 12.74028425349923 -2.7382554944237 11.95542360171659 -5.450231124022667 13.33734224781603 -2.841688879169482 11.41279499475147 -5.228761299623346 10.61044593144626 2.825827121602595 12.86224447874695 2.82582712160258 10.61044593144633 -2.826129032011907 12.86224447874705 -2.82612903201192 6.431122239373472 1.41291356080129 5.305222965723164 -1.413064516005953 6.431122239373526 -1.41306451600596 5.305222965723129 1.412913560801298 10.51353388990205 2.704223658516902 10.51647688693124 -2.696955842399996 4.4146364097076 2.747910046670556 2.2073182048538 1.373955023335278 5.258238443465622 -1.348477921199998 5.256766944951025 1.352111829258451 10.45043595056386 -2.749456155586584 4.351538024872898 -2.705808272904777 4.35645153003614 2.70087991621506 2.17822576501807 1.35043995810753 2.175769012436449 -1.352904136452389 5.225217975281929 -1.374728077793292 -12.86224447874691 2.825966664539562 -10.6104459314464 2.825966664539571 -12.86224447874705 -2.826015326484667 -10.61044593144629 -2.826015326484686 -5.3052229657232 1.412983332269786 -6.431122239373526 -1.413007663242334 -5.305222965723146 -1.413007663242343 -6.431122239373455 1.412983332269781 -23.95624398101459 -10.83868297384684 -22.92594750356043 -10.32078231370186 -19.59503874243783 -15.33026292526798 -18.77019605670036 -14.62023762439384 -11.46297375178022 -5.160391156850932 -9.797519371218915 -7.665131462633992 -9.385098028350182 -7.310118812196918 -11.97812199050729 -5.419341486923419 -4.420343528520512 -2.741685283211833 -10.519136567093 -2.689735512526468 -10.51025774098094 2.711469903985125 -5.25512887049047 1.355734951992562 -5.2595682835465 -1.344867756263234 -2.210171764260256 -1.370842641605917 -4.346160956957755 2.711090981816287 -4.361795749282214 -2.695581765113801 -10.44496489620798 2.762230408910285 -5.222482448103991 1.381115204455142 -2.180897874641107 -1.3477908825569 -2.173080478478878 1.355545490908144 18.60733076095817 -14.74847483060988 22.81066195964529 -10.47771276851302 19.50999293442922 -15.39728354324274 23.89591475193814 -10.92065912129808 11.40533097982264 -5.23885638425651 9.754996467214612 -7.698641771621368 11.94795737596907 -5.460329560649042 9.303665380479083 -7.374237415304939 10.61044593144633 2.826225508708167 12.86224447874705 2.826225508708164 10.61044593144644 -2.825782753959264 12.86224447874696 -2.825782753959264 6.431122239373526 1.413112754354082 5.305222965723218 -1.412891376979632 6.431122239373481 -1.412891376979632 5.305222965723164 1.413112754354084 10.51046993801221 2.711434912783619 10.51953671685669 -2.689732105727344 4.411525367456426 2.750835793495604 2.205762683728213 1.375417896747802 5.259768358428346 -1.344866052863672 5.255234969006104 1.355717456391809 10.4555289323171 -2.737359948082401 4.356556746050451 -2.700699764144963 4.351468090508527 2.705965589278195 2.175734045254263 1.352982794639098 2.178278373025226 -1.350349882072481 5.227764466158549 -1.3686799740412 -12.86224447874705 2.825979287301734 -10.61044593144629 2.825979287301716 -12.86224447874705 -2.825992100767848 -10.61044593144633 -2.825992100767798 -5.305222965723146 1.412989643650858 -6.431122239373526 -1.412996050383924 -5.305222965723164 -1.412996050383899 -6.431122239373526 1.412989643650867 -19.57395918633143 -15.34695536581981 -18.74913042428991 -14.63692005507998 -13.88360005709505 -18.79752453568512 -13.32055676393909 -17.94376725013277 -9.374565212144953 -7.31846002753999 -6.941800028547526 -9.398762267842558 -6.660278381969544 -8.971883625066383 -9.786979593165713 -7.673477682909906 -4.423865910935081 -2.737831791075885 -10.52258142340395 -2.680531625677441 -10.50600177760153 2.720649408174218 -5.253000888800764 1.360324704087109 -5.261290711701975 -1.34026581283872 -2.211932955467541 -1.368915895537943 -4.339133801438258 2.717625466155597 -4.368203459203839 -2.688987647016699 -10.43779947743348 2.778124667649001 -5.218899738716739 1.389062333824501 -2.184101729601919 -1.344493823508349 -2.169566900719129 1.358812733077798 13.12090955371273 -18.03447626008716 18.5861204811644 -14.76505058173662 13.77936550939809 -18.84494501053288 19.48876976388837 -15.41387039274213 9.2930602405822 -7.382525290868308 6.889682754699045 -9.422472505266441 9.744384881944184 -7.706935196371063 6.560454776856362 -9.01723813004358 10.61044593144644 2.825791620706781 12.86224447874696 2.825791620706781 10.61044593144629 -2.826150515554888 12.86224447874705 -2.826150515554875 6.431122239373481 1.412895810353391 5.305222965723146 -1.413075257777444 6.431122239373526 -1.413075257777438 5.305222965723218 1.412895810353391 10.50634358496391 2.720891158259654 10.52313453471532 -2.680309961522778 4.407346409174058 2.754875420631839 2.203673204587029 1.37743771031592 5.261567267357662 -1.340154980761389 5.253171792481954 1.360445579129827 10.46075794161088 -2.724776304844964 4.36172004203437 -2.695664125246008 4.345862822087661 2.711004199695371 2.17293141104383 1.355502099847685 2.180860021017185 -1.347832062623004 5.230378970805441 -1.362388152422482 -10.61044593144638 -2.825976183967614 -12.86224447874695 -2.825976183967639 -10.61044593144633 2.825990416027972 -12.86224447874705 2.825990416027897 -6.431122239373472 -1.412988091983819 -5.305222965723164 1.412995208013986 -6.431122239373526 1.412995208013948 -5.305222965723191 -1.412988091983807 -13.85755824385552 -18.80944035209259 -13.29454013808028 -17.95567278723111 -7.225792948281573 -20.98382388441372 -6.962728423460445 -20.04450400512787 -6.647270069040138 -8.977836393615556 -3.612896474140786 -10.49191194220686 -3.481364211730222 -10.02225200256394 -6.928779121927762 -9.404720176046295 -10.52875653309172 -2.667019882103738 -10.50077901065932 2.734066663135995 -4.430171035067845 -2.732341685834769 -2.215085517533923 -1.366170842917385 -5.25038950532966 1.367033331567997 -5.264378266545858 -1.333509941051869 -4.378004242621763 -2.678465056738759 -10.42692928344672 2.802797985646838 -4.328518097775763 2.728095874626715 -2.164259048887882 1.364047937313357 -5.21346464172336 1.401398992823419 -2.189002121310882 -1.339232528369379 6.740151636101647 -20.09147929057193 13.09479295026678 -18.04624987728669 7.109488848458013 -21.00842022412065 13.75322481972926 -18.85673073724269 6.547396475133392 -9.023124938643347 3.554744424229007 -10.50421011206032 6.876612409864629 -9.428365368621344 3.370075818050824 -10.04573964528597 10.61044593144629 -2.825941324107447 10.61044593144629 2.826043208161488 12.862244478747 -2.82594132410737 12.86224447874705 2.826043208161514 5.305222965723146 1.413021604080744 6.431122239373499 -1.412970662053685 6.431122239373526 1.413021604080757 5.305222965723146 -1.412970662053724 10.50036585142223 2.734971001562761 10.52890011716264 -2.666196886704789 4.401303486300014 2.760784370702243 2.200651743150007 1.380392185351122 5.264450058581321 -1.333098443352395 5.250182925711115 1.367485500781381 10.46744109647829 -2.708407758160335 4.368342022762667 -2.688678959368056 4.338997338335714 2.717948747950908 2.169498669167857 1.358974373975454 2.184171011381333 -1.344339479684028 5.233720548239147 -1.354203879080168 -10.61044593144638 2.825979469314233 -10.61044593144636 -2.826003796516174 -12.86224447874694 2.825979469314216 -12.86224447874705 -2.826003796516174 -5.305222965723181 -1.413001898258087 -6.431122239373472 1.412989734657108 -6.431122239373525 -1.413001898258087 -5.30522296572319 1.412989734657116 -6.933536276452181 -20.05073707708879 -0.1303295216944846 -20.7791541441071 -7.196566260968286 -20.990062942279 -0.07540959329038582 -21.74001114445558 -0.06516476084724229 -10.38957707205355 -3.598283130484143 -10.4950314711395 -0.03770479664519291 -10.87000557222779 -3.466768138226091 -10.0253685385444 -10.54034897368759 -2.638160548550109 -10.48865422912526 2.762966583080145 -4.442085949347874 -2.719981088299503 -2.221042974673937 -1.359990544149752 -5.24432711456263 1.381483291540072 -5.270174486843797 -1.319080274275055 -10.40551982253659 2.852631559912603 -4.307800004700079 2.748704857416722 -4.39903924405151 -2.657516153234907 -2.199519622025755 -1.328758076617453 -2.153900002350039 1.374352428708361 -5.202759911268297 1.426315779956301 -0.1000250353029242 -20.77923124592329 6.71090713895255 -20.09756546865577 -0.04506717194452021 -21.74008690407053 7.080210519352136 -21.01451483490556 3.355453569476275 -10.04878273432789 -0.0225335859722601 -10.87004345203527 3.540105259676068 -10.50725741745278 -0.05001251765146209 -10.38961562296164 10.61044593144629 2.82594632761644 12.862244478747 2.825946327616524 10.61044593144629 -2.826051856133897 12.86224447874703 -2.826051856133904 6.431122239373499 1.412973163808262 5.305222965723146 -1.413025928066949 6.431122239373517 -1.413025928066952 5.305222965723146 1.41297316380822 10.48777562266277 2.764482314003959 10.54086775703753 -2.636542126831748 4.388634374310819 2.773181238710972 2.19431718715541 1.386590619355486 5.270433878518763 -1.318271063415874 5.243887811331383 1.38224115700198 10.47753497153215 -2.683902847387294 4.378387600123009 -2.678476127130542 4.328497143600641 2.728049645213909 2.164248571800321 1.364024822606955 2.189193800061505 -1.339238063565271 5.238767485766075 -1.341951423693647 -10.61044593144636 2.826010708320168 -10.61044593144629 -2.825941511668355 -12.86224447874705 2.826010708320168 -12.86224447874705 -2.8259415116683 -5.305222965723146 -1.412970755834178 -6.431122239373526 1.413005354160084 -6.431122239373526 -1.41297075583415 -5.305222965723182 1.413005354160084 -10.59158817915015 -2.507978354408405 -10.4322800455154 2.891766839544133 -4.495704144051983 -2.664967449207419 -2.247852072025991 -1.332483724603709 -5.216140022757697 1.445883419772067 -5.295794089575077 -1.253989177204203 -4.491947727247955 -2.559759000559964 -10.30000224773623 3.080400759006474 -4.208366568860864 2.842306276570779 -2.104183284430432 1.421153138285389 -5.150001123868115 1.540200379503237 -2.245973863623977 -1.279879500279982 10.61044593144629 2.826039515876513 12.86224447874703 2.82603951587651 10.61044593144629 -2.825944977148527 12.86224447874705 -2.825944977148583 6.431122239373517 1.413019757938255 5.305222965723146 -1.412972488574264 6.431122239373526 -1.412972488574291 5.305222965723146 1.413019757938257 10.42605207004991 2.905243259815798 10.59673143731553 -2.494209468150155 4.32761740458788 2.831720453845512 2.16380870229394 1.415860226922756 5.298365718657763 -1.247104734075077 5.213026035024954 1.452621629907899 4.306952304418521 2.749261829601255 10.4985636977804 -2.632587427674483 4.399491681506321 -2.656972876258102 2.199745840753161 -1.328486438129051 5.249281848890198 -1.316293713837241 2.153476152209261 1.374630914800627 4.203006248744854 2.847276271266106 10.59228532888561 -2.389536449472878 4.496740578981384 -2.554476881970431 2.248370289490692 -1.277238440985215 5.296142664442805 -1.194768224736439 2.101503124372427 1.423638135633053</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"672\" source=\"#ID807\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID803\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID801\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID802\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"144\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 3 2 2 1 1 3 8 1 9 8 10 9 11 8 10 1 9 12 16 13 17 14 18 15 19 14 18 13 17 20 24 0 25 21 26 2 27 21 26 0 25 24 32 25 33 26 34 8 38 9 39 30 40 31 41 30 40 9 39 34 46 14 47 35 48 15 49 35 48 14 47 25 54 38 55 39 56 42 60 43 61 12 62 13 63 12 62 43 61 46 68 20 69 47 70 21 71 47 70 20 69 50 76 24 77 51 78 25 82 39 83 26 84 51 88 24 89 26 90 30 94 31 95 54 96 55 97 54 96 31 95 58 102 34 103 59 104 35 105 59 104 34 103 38 110 62 111 63 112 39 116 38 117 63 118 66 122 67 123 42 124 43 125 42 124 67 123 70 130 46 131 71 132 47 133 71 132 46 131 74 138 50 139 75 140 75 144 50 145 51 146 54 150 55 151 78 152 79 153 78 152 55 151 82 158 58 159 83 160 59 161 83 160 58 159 62 166 86 167 87 168 63 172 62 173 87 174 67 178 66 179 90 180 91 181 90 180 66 179 94 186 70 187 95 188 71 189 95 188 70 187 98 194 99 195 74 196 75 200 98 201 74 202 78 206 79 207 102 208 103 209 102 208 79 207 82 214 83 215 106 216 107 217 106 216 83 215 86 222 110 223 111 224 86 228 111 229 87 230 91 234 114 235 90 236 115 237 90 236 114 235 118 242 94 243 119 244 95 245 119 244 94 243 122 250 123 251 99 252 98 256 122 257 99 258 102 262 103 263 126 264 127 265 126 264 103 263 106 270 107 271 130 272 131 273 130 272 107 271 110 278 134 279 135 280 110 284 135 285 111 286 114 290 138 291 115 292 139 293 115 292 138 291 118 298 119 299 142 300 143 301 142 300 119 299 146 306 147 307 123 308 122 312 146 313 123 314 150 318 126 319 151 320 127 321 151 320 126 319 130 326 131 327 154 328 155 329 154 328 131 327 134 334 158 335 159 336 134 340 159 341 135 342 138 346 162 347 139 348 163 349 139 348 162 347 142 354 143 355 166 356 167 357 166 356 143 355 170 362 171 363 147 364 146 368 170 369 147 370 174 374 150 375 175 376 151 377 175 376 150 375 154 382 155 383 178 384 179 385 178 384 155 383 158 390 182 391 183 392 158 396 183 397 159 398 163 402 162 403 186 404 187 405 186 404 162 403 166 410 167 411 190 412 191 413 190 412 167 411 194 418 195 419 171 420 170 424 194 425 171 426 198 430 174 431 199 432 175 433 199 432 174 431 178 438 179 439 202 440 203 441 202 440 179 439 182 446 206 447 207 448 182 452 207 453 183 454 186 458 187 459 210 460 211 461 210 460 187 459 190 466 191 467 214 468 215 469 214 468 191 467 218 474 219 475 195 476 194 480 218 481 195 482 222 486 198 487 223 488 199 489 223 488 198 487 202 494 203 495 226 496 227 497 226 496 203 495 206 502 230 503 231 504 206 508 231 509 207 510 234 514 235 515 211 516 210 517 211 516 235 515 214 522 215 523 238 524 239 525 238 524 215 523 242 530 219 531 243 532 243 536 219 537 218 538 246 542 222 543 247 544 223 545 247 544 222 543 250 550 226 551 251 552 227 553 251 552 226 551 230 558 254 559 255 560 230 564 255 565 231 566 234 570 258 571 235 572 259 573 235 572 258 571 239 578 262 579 238 580 263 581 238 580 262 579 266 586 242 587 267 588 242 592 243 593 267 594 262 598 246 599 263 600 247 601 263 600 246 599 250 606 251 607 270 608 271 609 270 608 251 607 254 614 274 615 275 616 254 620 275 621 255 622 258 626 278 627 259 628 279 629 259 628 278 627 282 634 266 635 283 636 283 640 266 641 267 642 270 646 271 647 278 648 279 649 278 648 271 647 274 654 282 655 286 656 275 660 274 661 286 662 286 666 282 667 283 668</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID803\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID804\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"144\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4 4 5 5 6 6 5 5 4 4 7 7 4 12 10 13 11 14 10 13 4 12 6 15 16 20 17 21 18 22 17 21 16 20 19 23 7 28 22 29 5 30 22 29 7 28 23 31 27 35 28 36 29 37 11 42 32 43 33 44 32 43 11 42 10 45 17 50 36 51 18 52 36 51 17 50 37 53 40 57 41 58 28 59 44 64 19 65 16 66 19 65 44 64 45 67 23 72 48 73 22 74 48 73 23 72 49 75 52 79 29 80 53 81 27 85 40 86 28 87 27 91 29 92 52 93 33 98 56 99 57 100 56 99 33 98 32 101 37 106 60 107 36 108 60 107 37 106 61 109 64 113 65 114 41 115 64 119 41 120 40 121 68 126 45 127 44 128 45 127 68 126 69 129 49 134 72 135 48 136 72 135 49 134 73 137 76 141 53 142 77 143 52 147 53 148 76 149 57 154 80 155 81 156 80 155 57 154 56 157 61 162 84 163 60 164 84 163 61 162 85 165 88 169 89 170 65 171 88 175 65 176 64 177 69 182 92 183 93 184 92 183 69 182 68 185 73 190 96 191 72 192 96 191 73 190 97 193 77 197 100 198 101 199 77 203 101 204 76 205 81 210 104 211 105 212 104 211 81 210 80 213 84 218 108 219 109 220 108 219 84 218 85 221 112 225 113 226 89 227 88 231 112 232 89 233 116 238 92 239 117 240 92 239 116 238 93 241 97 246 120 247 96 248 120 247 97 246 121 249 100 253 124 254 125 255 100 259 125 260 101 261 105 266 128 267 129 268 128 267 105 266 104 269 109 274 132 275 133 276 132 275 109 274 108 277 136 281 137 282 113 283 112 287 136 288 113 289 140 294 117 295 141 296 117 295 140 294 116 297 120 302 144 303 145 304 144 303 120 302 121 305 124 309 148 310 149 311 124 315 149 316 125 317 128 322 152 323 129 324 152 323 128 322 153 325 133 330 156 331 157 332 156 331 133 330 132 333 160 337 161 338 137 339 136 343 160 344 137 345 164 350 141 351 165 352 141 351 164 350 140 353 145 358 168 359 169 360 168 359 145 358 144 361 148 365 172 366 173 367 148 371 173 372 149 373 153 378 176 379 152 380 176 379 153 378 177 381 157 386 180 387 181 388 180 387 157 386 156 389 184 393 185 394 161 395 160 399 184 400 161 401 164 406 188 407 189 408 188 407 164 406 165 409 169 414 192 415 193 416 192 415 169 414 168 417 172 421 196 422 197 423 172 427 197 428 173 429 177 434 200 435 176 436 200 435 177 434 201 437 181 442 204 443 205 444 204 443 181 442 180 445 208 449 209 450 185 451 184 455 208 456 185 457 189 462 212 463 213 464 212 463 189 462 188 465 193 470 216 471 217 472 216 471 193 470 192 473 196 477 220 478 221 479 196 483 221 484 197 485 201 490 224 491 200 492 224 491 201 490 225 493 205 498 228 499 229 500 228 499 205 498 204 501 232 505 233 506 209 507 208 511 232 512 209 513 236 518 213 519 212 520 213 519 236 518 237 521 217 526 240 527 241 528 240 527 217 526 216 529 244 533 220 534 245 535 221 539 220 540 244 541 225 546 248 547 224 548 248 547 225 546 249 549 228 554 252 555 229 556 252 555 228 554 253 557 256 561 257 562 233 563 232 567 256 568 233 569 260 574 236 575 261 576 236 575 260 574 237 577 264 582 240 583 265 584 240 583 264 582 241 585 268 589 245 590 269 591 268 595 244 596 245 597 249 602 265 603 248 604 265 603 249 602 264 605 252 610 272 611 273 612 272 611 252 610 253 613 276 617 277 618 257 619 256 623 276 624 257 625 280 630 261 631 281 632 261 631 280 630 260 633 284 637 269 638 285 639 268 643 269 644 284 645 273 650 280 651 281 652 280 651 273 650 272 653 287 657 285 658 277 659 287 663 277 664 276 665 284 669 285 670 287 671</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID803\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID804\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID808\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID809\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID813\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373472 -1.376101390039606 -0.002991724816681085 -0.6431122239373561 -1.32998719855982 0.3532718774316644 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373526 -1.193233802811733 0.6854604606591006 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.6431122239373472 -0.9751633882258356 0.9709368171992312 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.643112223937349 -0.6906404788265909 1.190244152420291 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373543 -0.3590497055297435 1.328439095365639 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.6431122239373552 -0.002990082172262376 1.376102441332023 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373526 0.3532727409932976 1.329987649113718 -0.6431122239373481 0.685460535751423 1.193235529935008 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.6431122239373472 0.9709365919222839 0.9751666922877567 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.6431122239373526 1.190246104820522 0.6906422059498711 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373526 1.328439395734895 0.3590507568221705 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.6431122239373526 1.376103342439808 0.002991490153193777 -0.6431122239373526 -1.328440296842699 -0.3590504939990638 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.190241374004588 -0.6906419055806057 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -0.97093704247618 -0.9751667673800752 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.6431122239373499 -0.6854605357514191 -1.193235304658059 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.6431122239373517 -0.3532708636853971 -1.329988249852251 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373526 0.002993367461101792 -1.376102441332025 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373526 0.3590515828376493 -1.328439095365639 -0.6431122239373472 0.6906428066884003 -1.190243852051026 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.6431122239373526 0.9751671428416489 -0.970936291553016 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373526 1.19323568011964 -0.6854608361206818 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.6431122239373455 1.329987198559822 -0.3532716897008759 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373517 -0.00299008217226393 1.426636266183777 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.6431122239373481 -0.3721293602865216 1.377251203587776 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.6431122239373526 0.3663495797882241 1.378799306781958 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373543 0.7107291002082496 1.236999106635608 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.6431122239373472 1.00666836955679 1.010899596307013 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.6431122239373455 1.234008930597954 0.7159084425448999 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.6431122239373543 1.377251804326299 0.3721305242174271 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.6431122239373472 1.42664137246128 0.00299149015319311 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.6431122239373472 1.378800958812917 -0.3663516072807627 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.643112223937349 1.237001359405088 -0.7107282741927739 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.6431122239373526 1.010901173245663 -1.006668444649108 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373543 0.7159094938373303 -1.234007654028572 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.6431122239373472 0.3721316881483292 -1.37725090321851 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.6431122239373464 0.00299336746110157 -1.426637317476208 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373535 -0.3663514570961314 -1.378800207889754 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -0.7107271478080275 -1.23700053338962 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.6431122239373526 -1.006670246864696 -1.010900422322491 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.6431122239373526 -1.234006602736141 -0.7159079919910014 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.6431122239373481 -1.377250753033876 -0.3721299610250533 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.6431122239373526 -1.426636716737675 -0.002991724816681307 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.6431122239373499 -1.378796303089303 0.3663512318191801 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.6431122239373472 -1.236999482097183 0.7107274481772944 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.643112223937349 -1.01089937103006 1.00666942084922 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.643112223937349 -0.7159071659755192 1.234007654028574 -0.7637458525006231 -0.7159071659755262 1.234007654028574</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID813\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID810\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID814\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762637497411e-018 0.2608439886717847 -0.9653809681021238 1.357324008988185e-018 0.002095735273219623 -0.999997803944421 1.428762637497407e-018 0.2608439886717864 -0.9653809681021234 1.357324008988168e-018 0.002095735273213525 -0.999997803944421 -1.357324008988185e-018 -0.002095735273219623 0.999997803944421 -1.428762637497407e-018 -0.2608439886717864 0.9653809681021234 -1.357324008988168e-018 -0.002095735273213525 0.999997803944421 -1.428762637497411e-018 -0.2608439886717847 0.9653809681021238 5.000666824631774e-019 -0.2567918074288629 -0.9664667441963111 5.000666824631841e-019 -0.2567918074288612 -0.9664667441963116 -5.000666824631841e-019 0.2567918074288612 0.9664667441963116 -5.000666824631774e-019 0.2567918074288629 0.9664667441963111 -2.286020591985056e-018 -0.4981832167412074 -0.8670717862768821 -2.286020591985096e-018 -0.4981832167412094 -0.867071786276881 2.286020591985056e-018 0.4981832167412074 0.8670717862768821 2.286020591985096e-018 0.4981832167412094 0.867071786276881 -6.858055771993708e-018 -0.7056226073428004 -0.7085878463583386 -6.858055771993613e-018 -0.7056226073427964 -0.7085878463583424 6.858055771993613e-018 0.7056226073427964 0.7085878463583424 6.858055771993708e-018 0.7056226073428004 0.7085878463583386 -8.001070223829628e-018 -0.8649741646300232 -0.5018163952309587 -8.001070223829614e-018 -0.8649741646300241 -0.5018163952309572 8.001070223829628e-018 0.8649741646300232 0.5018163952309587 8.001070223829614e-018 0.8649741646300241 0.5018163952309572 -5.715045332456655e-019 -0.9653796265175301 -0.2608489538121138 -5.715045332456722e-019 -0.96537962651753 -0.260848953812114 5.715045332456655e-019 0.9653796265175301 0.2608489538121138 5.715045332456722e-019 0.96537962651753 0.260848953812114 2.286022406958772e-018 -0.9999977996832321 -0.002097767550154592 2.286022406958698e-018 -0.9999977996832321 -0.002097767550151775 -2.286022406958772e-018 0.9999977996832321 0.002097767550154592 -2.286022406958698e-018 0.9999977996832321 0.002097767550151775 -5.1435407892633e-018 -0.9664655322690486 0.2567963686189982 -5.143540789263351e-018 -0.9664655322690482 0.2567963686189999 5.1435407892633e-018 0.9664655322690486 -0.2567963686189982 5.143540789263351e-018 0.9664655322690482 -0.2567963686189999 -8.001071306872786e-018 -0.8670714378610992 0.498183823147125 -8.001071306872821e-018 -0.8670714378611013 0.4981838231471211 8.001071306872786e-018 0.8670714378610992 -0.498183823147125 8.001071306872821e-018 0.8670714378611013 -0.4981838231471211 -5.715047892338878e-018 -0.708586537670636 0.7056239215275657 -5.715047892338916e-018 -0.7085865376706391 0.7056239215275628 5.715047892338878e-018 0.708586537670636 -0.7056239215275657 5.715047892338916e-018 0.7085865376706391 -0.7056239215275628 -3.714781434290872e-018 -0.5018152321358096 0.8649748394008253 -3.714781434290843e-018 -0.5018152321358057 0.8649748394008278 3.714781434290872e-018 0.5018152321358096 -0.8649748394008253 3.714781434290843e-018 0.5018152321358057 -0.8649748394008278 -1.357324087236548e-018 -0.2608455302381353 0.9653805515726874 -1.357324087236494e-018 -0.2608455302381308 0.9653805515726887 1.357324087236494e-018 0.2608455302381308 -0.9653805515726887 1.357324087236548e-018 0.2608455302381353 -0.9653805515726874 5.00066824341991e-019 -0.0020983946598471 0.9999977983675022 5.00066824342e-019 -0.002098394659843867 0.9999977983675022 -5.00066824342e-019 0.002098394659843867 -0.9999977983675022 -5.00066824341991e-019 0.0020983946598471 -0.9999977983675022 1.285886092699162e-018 0.2567924015669348 0.9664665863326504 1.285886092699151e-018 0.2567924015669318 0.966466586332651 -1.285886092699162e-018 -0.2567924015669348 -0.9664665863326504 -1.285886092699151e-018 -0.2567924015669318 -0.966466586332651 -2.000267021076344e-018 0.4981821975151394 0.8670723718807943 -2.000267021076362e-018 0.4981821975151401 0.867072371880794 2.000267021076344e-018 -0.4981821975151394 -0.8670723718807943 2.000267021076362e-018 -0.4981821975151401 -0.867072371880794 -4.00053674631458e-018 0.7056247595919819 0.7085857031091989 -4.000536746314618e-018 0.7056247595919799 0.7085857031092008 4.000536746314618e-018 -0.7056247595919799 -0.7085857031092008 4.00053674631458e-018 -0.7056247595919819 -0.7085857031091989 -1.21193073775685e-032 0.8649761689145231 0.5018129404568542 4.204657661605452e-033 0.8649761689145237 0.5018129404568533 -4.204657661605452e-033 -0.8649761689145237 -0.5018129404568533 1.21193073775685e-032 -0.8649761689145231 -0.5018129404568542 2.286019992337455e-018 0.9653804430920455 0.2608459317210175 2.286019992337455e-018 0.9653804430920453 0.2608459317210191 -2.286019992337455e-018 -0.9653804430920453 -0.2608459317210191 -2.286019992337455e-018 -0.9653804430920455 -0.2608459317210175 4.00053677349617e-018 0.9999978094868985 0.002093088962486192 4.000536773496116e-018 0.9999978094868985 0.002093088962490353 -4.000536773496116e-018 -0.9999978094868985 -0.002093088962490353 -4.00053677349617e-018 -0.9999978094868985 -0.002093088962486192 7.429555745771715e-018 0.9664663526289721 -0.2567932811349458 7.429555745771746e-018 0.9664663526289716 -0.256793281134948 -7.429555745771746e-018 -0.9664663526289716 0.256793281134948 -7.429555745771715e-018 -0.9664663526289721 0.2567932811349458 8.001073065904117e-018 0.8670738131462042 -0.4981796890240521 8.001073065904097e-018 0.8670738131462032 -0.498179689024054 -8.001073065904097e-018 -0.8670738131462032 0.498179689024054 -8.001073065904117e-018 -0.8670738131462042 0.4981796890240521 2.286020065195486e-018 0.7085865942299621 -0.7056238647307667 2.286020065195515e-018 0.7085865942299627 -0.705623864730766 -2.286020065195515e-018 -0.7085865942299627 0.705623864730766 -2.286020065195486e-018 -0.7085865942299621 0.7056238647307667 -5.715046975223761e-019 0.5018142835855971 -0.8649753897016226 -5.715046975224879e-019 0.5018142835856045 -0.8649753897016184 5.715046975223761e-019 -0.5018142835855971 0.8649753897016226 5.715046975224879e-019 -0.5018142835856045 0.8649753897016184</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID814\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID812\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID815\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-28.53282744922561 0.04706611174357161 -27.54503608652599 5.854853581020853 -27.57601917625835 -5.763931954550666 -27.52206684879615 0.04706611174358209 -26.59974397119644 -5.55814125129378 -24.74002718810177 -11.18212484729964 -23.86471360239281 -10.78458382163206 -20.21802346491327 -15.83825019581263 -19.50334285683298 -15.27606432043412 -14.3181898767466 -19.4150537567162 -13.81285613376801 -18.72650327226948 -7.442633762966584 -21.66874754397123 -7.181031656752985 -20.90077510041939 -0.05986734922203591 -21.65067841029053 -0.05986734922203147 -22.44576046162567 7.065417273707942 -20.92514846434208 7.327029141922628 -21.6931232707988 13.70921071502838 -18.77356879328679 14.21454295616055 -19.46214172533002 19.4187408495236 -15.34262380677985 20.13340493729391 -15.90483331120719 23.80482748009175 -10.8660993144682 24.68013205472282 -11.26361907399176 26.56880593685397 -5.64906110558527 27.52202780079212 -0.04706980378244907 27.54501506067751 -5.854844720127505 -26.5687879146979 5.649065240668816 -24.68017861195908 11.26362616270643 -23.80492209641044 10.86610404027797 -20.1333673911358 15.90482031523034 -19.41873183844568 15.34262262532737 -14.21458200416499 19.46211927773357 -13.70921071502846 18.77357233764413 -7.326991595764483 21.69310909336947 -7.065454819865953 20.9251390127225 0.05980164344524746 21.65067841029049 0.05980164344527855 22.44574392129143 7.180994110594869 20.90077510041938 7.442587205730431 21.66875226978101 13.81280957653182 18.72650799807924 14.31814331951038 19.41505375671623 19.50326776451671 15.27607259060124 20.2179874206012 15.8382655546944 23.86467605623466 10.78457791436985 24.73998964194365 11.18211185132277 26.59974397119641 5.558144204924854 27.57592606178605 5.763926047288433 28.53273433475351 -0.04706980378245257 13.78796303089303 2.881963023644217 13.77250753033876 -2.927422360063753 14.26636716737676 -0.02353490189122628 13.76101390039606 -0.02353490189122454 13.2998719855982 2.779072102462427 12.36999482097183 5.591055925661383 11.93233802811733 5.392288957184925 10.1089937103006 7.919132777347199 9.751633882258355 7.638036295300619 7.159071659755192 9.707526878358115 6.906404788265909 9.363253999039621 3.721293602865216 10.8343761348905 3.590497055297435 10.45038755020969 0.02990082172263927 11.22287196064572 0.02990082172262373 10.82533920514525 -3.663495797882241 10.84655454668474 -3.532727409932976 10.46256950636125 -6.854605357514229 9.386786168822065 -7.107291002082496 9.731059638866784 -9.709365919222838 7.671311312663686 -10.0666836955679 7.95241015761517 -11.90246104820522 5.433052020138987 -12.34008930597954 5.631813081353213 -13.28439395734895 2.824532620334408 -13.77251804326299 2.927426790510427 -13.76103342439808 0.02353305587179104 13.28440296842699 -2.824530552792635 12.34006602736141 -5.631809536995879 11.90241374004588 -5.433049657234099 10.06670246864696 -7.952416655603594 9.709370424761799 -7.671311903389926 7.107271478080275 -9.731070862665009 6.854605357514191 -9.386784396643396 3.663514570961314 -10.8465616353994 3.532708636853971 -10.46257423217104 -0.02993367461101574 -11.22288023081283 -0.02993367461101796 -10.82533920514526 -3.721316881483292 -10.83437377198561 -3.590515828376493 -10.4503875502097 -6.906428066884002 -9.363251636134741 -7.159094938373302 -9.707526878358099 -9.751671428416488 -7.638032160217059 -10.10901173245664 -7.919125097906314 -11.9323568011964 -5.39229191081603 -12.37001359405088 -5.591062423649821 -13.29987198559822 -2.77907062564689 -13.78800958812917 -2.881965977275333 -14.2664137246128 0.0235330558717858 12.86224447874696 -2.929792278906809 12.86224447874703 2.929743190342062 15.27491705001244 -2.92979227890684 15.2749170500126 2.929743190342119 6.431122239373517 1.464871595171031 7.637458525006222 -1.46489613945342 7.637458525006302 1.46487159517106 6.431122239373481 -1.464896139453405 -12.86224447874705 -2.92973185074145 -15.27491705001257 -2.929731850741423 -12.86224447874703 2.929750167992304 -15.2749170500126 2.929750167992251 -7.637458525006284 -1.464865925370711 -6.431122239373517 1.464875083996152 -7.637458525006302 1.464875083996125 -6.431122239373526 -1.464865925370725 -12.86224447874705 2.929721881732527 -12.86224447874709 -2.929852871110114 -15.27491705001257 2.929721881732551 -15.27491705001264 -2.929852871110166 -6.431122239373543 -1.464926435555057 -7.637458525006283 1.464860940866276 -7.637458525006319 -1.464926435555083 -6.431122239373525 1.464860940866263 -12.86224447874695 -2.929677555424782 -15.27491705001234 -2.929677555424733 -12.86224447874709 2.929823033031287 -15.27491705001264 2.929823033031245 -7.637458525006169 -1.464838777712367 -6.431122239373543 1.464911516515643 -7.63745852500632 1.464911516515623 -6.431122239373472 -1.464838777712391 -15.27491705001234 2.929697425929927 -12.86224447874695 2.929697425929892 -15.2749170500125 -2.929855373115951 -12.86224447874691 -2.929855373116002 -6.431122239373472 1.464848712964946 -7.637458525006249 -1.464927686557976 -6.431122239373455 -1.464927686558001 -7.637458525006169 1.464848712964963 -12.86224447874691 2.92974286903891 -12.86224447874709 -2.929773314130085 -15.2749170500125 2.929742869038943 -15.27491705001257 -2.929773314130076 -6.431122239373543 -1.464886657065043 -7.637458525006249 1.464871434519471 -7.637458525006284 -1.464886657065038 -6.431122239373455 1.464871434519455 -15.27491705001257 2.929540399646405 -12.86224447874709 2.929540399646413 -15.27491705001243 -2.930000664061414 -12.86224447874695 -2.930000664061421 -6.431122239373543 1.464770199823206 -7.637458525006213 -1.465000332030707 -6.431122239373472 -1.465000332030711 -7.637458525006284 1.464770199823202 -12.86224447874695 2.9299607810872 -12.86224447874695 -2.929581822242644 -15.27491705001243 2.929960781087207 -15.27491705001232 -2.929581822242648 -6.431122239373472 -1.464790911121322 -7.637458525006213 1.464980390543604 -7.63745852500616 -1.464790911121324 -6.431122239373472 1.4649803905436 -12.86224447874695 2.929734008047279 -12.86224447874698 -2.929795632432642 -15.27491705001232 2.929734008047276 -15.27491705001264 -2.929795632432599 -6.43112223937349 -1.464897816216321 -7.63745852500616 1.464867004023638 -7.63745852500632 -1.4648978162163 -6.431122239373472 1.46486700402364 -15.27491705001264 2.929854278460836 -12.86224447874698 2.929854278460752 -15.27491705001246 -2.929664031079308 -12.86224447874705 -2.929664031079275 -6.43112223937349 1.464927139230376 -7.637458525006231 -1.464832015539654 -6.431122239373526 -1.464832015539638 -7.63745852500632 1.464927139230418 -12.86224447874705 2.929799501924695 -12.86224447874709 -2.929746866326544 -15.27491705001246 2.929799501924643 -15.2749170500126 -2.929746866326596 -6.431122239373543 -1.464873433163272 -7.637458525006231 1.464899750962321 -7.637458525006302 -1.464873433163298 -6.431122239373526 1.464899750962348 -12.86224447874695 -2.929774255369613 -15.2749170500125 -2.92977425536968 -12.86224447874709 2.929742564000939 -15.2749170500126 2.929742564000883 -7.637458525006249 -1.46488712768484 -6.431122239373543 1.46487128200047 -7.637458525006302 1.464871282000442 -6.431122239373472 -1.464887127684806 -12.86224447874693 -2.929781790797601 -15.27491705001246 -2.929781790797626 -12.86224447874695 2.929741567953739 -15.2749170500125 2.92974156795366 -7.637458525006231 -1.464890895398813 -6.431122239373472 1.464870783976869 -7.637458525006249 1.46487078397683 -6.431122239373464 -1.4648908953988 12.86224447874693 -2.929772829085486 12.86224447874707 2.929790045178396 15.27491705001246 -2.929772829085463 15.27491705001257 2.929790045178342 6.431122239373535 1.464895022589198 7.637458525006231 -1.464886414542731 7.637458525006284 1.464895022589171 6.431122239373464 -1.464886414542743 12.86224447874707 -2.9297580530314 12.86224447874705 2.929757835224654 15.27491705001257 -2.929758053031452 15.2749170500126 2.929757835224672 6.431122239373526 1.464878917612327 7.637458525006284 -1.464879026515726 7.637458525006302 1.464878917612336 6.431122239373535 -1.4648790265157 12.86224447874705 2.929803538710713 15.2749170500125 2.929803538710692 12.86224447874705 -2.929750667340226 15.2749170500126 -2.929750667340216 7.637458525006249 1.464901769355346 6.431122239373526 -1.464875333670113 7.637458525006302 -1.464875333670108 6.431122239373526 1.464901769355357 12.86224447874705 2.929593042074726 15.27491705001246 2.929593042074761 12.86224447874705 -2.92993527925525 15.2749170500125 -2.929935279255278 7.637458525006231 1.464796521037381 6.431122239373526 -1.464967639627625 7.637458525006249 -1.464967639627639 6.431122239373526 1.464796521037363 12.86224447874696 2.929842954384198 15.27491705001232 2.929842954384168 12.86224447874705 -2.9296825896425 15.27491705001246 -2.929682589642478 7.63745852500616 1.464921477192084 6.431122239373526 -1.46484129482125 7.637458525006231 -1.464841294821239 6.431122239373481 1.464921477192099 15.2749170500125 2.929780138522509 15.27491705001232 -2.929740962824745 12.86224447874705 2.92978013852247 12.86224447874696 -2.929740962824737 7.63745852500616 -1.464870481412373 6.431122239373526 1.464890069261235 6.431122239373481 -1.464870481412369 7.637458525006249 1.464890069261254 15.27491705001248 2.92958429256624 15.2749170500125 -2.9299561138927 12.862244478747 2.929584292566244 12.86224447874705 -2.929956113892731 7.637458525006249 -1.46497805694635 6.431122239373499 1.464792146283122 6.431122239373526 -1.464978056946366 7.63745852500624 1.46479214628312 15.27491705001243 2.929938126060052 15.27491705001248 -2.929568316003488 12.86224447874695 2.929938126060063 12.862244478747 -2.929568316003465 7.63745852500624 -1.464784158001744 6.431122239373472 1.464969063030032 6.431122239373499 -1.464784158001733 7.637458525006213 1.464969063030026 15.27491705001244 2.929762392715948 15.27491705001243 -2.929777731100098 12.86224447874698 2.929762392715941 12.86224447874695 -2.929777731100067 7.637458525006213 -1.464888865550049 6.43112223937349 1.464881196357971 6.431122239373472 -1.464888865550033 7.637458525006222 1.464881196357974 12.86224447874698 -2.929833042641436 12.86224447874698 2.929710500811676 15.27491705001244 -2.929833042641431 15.27491705001246 2.929710500811587 6.43112223937349 1.464855250405838 7.637458525006222 -1.464916521320715 7.637458525006231 1.464855250405794 6.43112223937349 -1.464916521320718 12.86224447874696 2.929826448053173 15.27491705001244 2.92982644805314 12.86224447874698 -2.929692188965083 15.27491705001246 -2.929692188965185 7.637458525006222 1.46491322402657 6.43112223937349 -1.464846094482541 7.637458525006231 -1.464846094482593 6.431122239373481 1.464913224026587</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"288\" source=\"#ID815\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID811\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID809\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID810\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 12 12 13 13 11 11 11 11 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 24 24 25 25 23 23 22 22 23 23 25 25 3 3 1 1 26 26 1 1 27 27 26 26 26 26 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 34 34 33 33 35 35 33 33 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 24 24 24 24 46 46 25 25 47 47 25 25 46 46 96 96 97 97 98 98 99 99 98 98 97 97 104 104 105 105 97 106 99 107 97 106 105 105 104 112 108 113 105 114 109 115 105 114 108 113 112 120 113 121 108 122 109 123 108 122 113 121 113 128 112 129 116 130 117 131 116 130 112 129 117 136 120 137 116 138 121 139 116 138 120 137 121 144 120 145 124 146 125 147 124 146 120 145 125 152 128 153 124 154 129 155 124 154 128 153 128 160 132 161 129 162 133 163 129 162 132 161 133 168 132 169 136 170 137 171 136 170 132 169 137 176 140 177 136 178 141 179 136 178 140 177 144 184 145 185 140 186 141 187 140 186 145 185 148 192 149 193 144 194 145 195 144 194 149 193 148 200 152 201 149 202 153 203 149 202 152 201 152 208 156 209 153 210 157 211 153 210 156 209 160 216 161 217 156 218 157 219 156 218 161 217 164 224 165 225 160 226 161 227 160 226 165 225 168 232 169 233 164 234 165 235 164 234 169 233 172 240 169 241 173 242 168 243 173 242 169 241 176 248 172 249 177 250 173 251 177 250 172 249 180 256 176 257 181 258 177 259 181 258 176 257 184 264 180 265 185 266 181 267 185 266 180 265 185 272 188 273 184 274 189 275 184 274 188 273 96 280 98 281 188 282 189 283 188 282 98 281</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID811\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID812\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">48 48 49 49 50 50 49 49 48 48 51 51 51 51 48 48 52 52 52 52 48 48 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59 58 58 59 59 60 60 60 60 59 59 61 61 60 60 61 61 62 62 62 62 61 61 63 63 62 62 63 63 64 64 64 64 63 63 65 65 65 65 63 63 66 66 65 65 66 66 67 67 67 67 66 66 68 68 67 67 68 68 69 69 69 69 68 68 70 70 69 69 70 70 71 71 71 71 70 70 72 72 71 71 72 72 73 73 49 49 74 74 75 75 74 74 49 49 51 51 75 75 74 74 76 76 75 75 76 76 77 77 77 77 76 76 78 78 77 77 78 78 79 79 79 79 78 78 80 80 79 79 80 80 81 81 81 81 80 80 82 82 81 81 82 82 83 83 83 83 82 82 84 84 83 83 84 84 85 85 85 85 84 84 86 86 85 85 86 86 87 87 85 85 87 87 88 88 88 88 87 87 89 89 88 88 89 89 90 90 90 90 89 89 91 91 90 90 91 91 92 92 92 92 91 91 93 93 92 92 93 93 94 94 94 94 93 93 73 73 94 94 73 73 72 72 94 94 72 72 95 95 100 100 101 101 102 102 101 101 100 100 103 103 106 108 100 109 102 110 100 109 106 108 107 111 110 116 106 117 111 118 106 117 110 116 107 119 114 124 110 125 111 126 110 125 114 124 115 127 115 132 118 133 119 134 118 133 115 132 114 135 122 140 118 141 123 142 118 141 122 140 119 143 122 148 126 149 127 150 126 149 122 148 123 151 130 156 126 157 131 158 126 157 130 156 127 159 134 164 131 165 135 166 131 165 134 164 130 167 134 172 138 173 139 174 138 173 134 172 135 175 142 180 138 181 143 182 138 181 142 180 139 183 146 188 142 189 143 190 142 189 146 188 147 191 150 196 147 197 146 198 147 197 150 196 151 199 154 204 150 205 155 206 150 205 154 204 151 207 158 212 155 213 159 214 155 213 158 212 154 215 162 220 158 221 159 222 158 221 162 220 163 223 166 228 163 229 162 230 163 229 166 228 167 231 170 236 167 237 166 238 167 237 170 236 171 239 170 244 174 245 171 246 174 245 170 244 175 247 175 252 178 253 174 254 178 253 175 252 179 255 179 260 182 261 178 262 182 261 179 260 183 263 183 268 186 269 182 270 186 269 183 268 187 271 190 276 187 277 191 278 187 277 190 276 186 279 101 284 190 285 191 286 190 285 101 284 103 287</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID811\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID812\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID816\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID817\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID821\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.7637458525006249 -1.426636716737677 -0.002991724816679087 -0.763745852500624 -1.378796303089308 0.3663512318191805 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006213 -1.236999482097188 0.7107274481772958 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.7637458525006222 -1.01089937103006 1.00666942084922 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006231 -0.7159071659755262 1.234007654028574 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006222 -0.3721293602865233 1.377251203587774 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.7637458525006302 -0.002990082172260378 1.426636266183778 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.3663495797882224 1.378799306781958 -0.763745852500632 0.7107291002082534 1.236999106635609 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006169 1.006668369556786 1.010899596307013 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.7637458525006249 1.234008930597949 0.7159084425449002 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.7637458525006284 1.377251804326296 0.3721305242174261 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.7637458525006213 1.42664137246128 0.002991490153193555 -0.763745852500616 -1.37725075303387 -0.372129961025053 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006231 -1.234006602736145 -0.7159079919910014 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.7637458525006249 -1.006670246864696 -1.010900422322493 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.7637458525006302 -0.7107271478080293 -1.237000533389621 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.7637458525006284 -0.3663514570961278 -1.378800207889754 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.7637458525006231 0.002993367461100016 -1.426637317476208 -0.7637458525006249 0.3721316881483239 -1.377250903218509 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006302 0.7159094938373267 -1.234007654028573 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.7637458525006231 1.010901173245659 -1.006668444649107 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.763745852500632 1.237001359405099 -0.7107282741927752 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.378800958812917 -0.3663516072807629 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.7637458525006249 -1.05312986299975 1.048899236988064 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.7637458525006169 -0.745767625578079 1.285729289140592 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.7637458525006284 -0.3875861749563132 1.434937571573302 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006231 -0.002990082172260378 1.486358837419857 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.7637458525006284 0.3818078212120197 1.436486425690644 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.7637458525006284 0.7405895598108148 1.28872021610141 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006302 1.048900738834389 1.053129712815122 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.7637458525006284 1.285730190248389 0.7457701036245212 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.7637458525006249 1.434938172311828 0.3875870009717909 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.7637458525006151 1.486358537050587 0.002991490153193332 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.763745852500616 1.43648687624455 -0.3818089851429252 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.7637458525006284 1.288722168501636 -0.7405889590722858 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.763745852500616 1.053127535137954 -1.048898486064898 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.7637458525006284 0.745770403993792 -1.285729289140591 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.763745852500624 0.3875885403642752 -1.434938773050363 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006213 0.002993367461108898 -1.486357185388897 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.3818073331119647 -1.436485224213584 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.7637458525006231 -0.7405871568566907 -1.288719915732143 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.763745852500632 -1.048897885326362 -1.053129938092069 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.7637458525006284 -1.285726886186469 -0.7457686768705121 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.7637458525006231 -1.434936219911609 -0.3875878269872688 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.763745852500616 -1.486358537050593 -0.002991724816680419 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.763745852500616 -1.436485524582849 0.3818088725044516 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.7637458525006249 -1.28872021610141 0.7405885836107022 -0.8079789814554541 -1.288720216101408 0.7405885836107005</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID821\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID818\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID822\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1.428762080881852e-018 0.5017398950377386 -0.8650185418403001 1.428762080882819e-018 0.5017398950377737 -0.8650185418402798 5.715050599695061e-019 0.7085275831213713 -0.7056831186560921 5.715050599694446e-019 0.7085275831213729 -0.7056831186560907 -1.428762080882819e-018 -0.5017398950377737 0.8650185418402798 -5.715050599695061e-019 -0.7085275831213713 0.7056831186560921 -5.715050599694446e-019 -0.7085275831213729 0.7056831186560907 -1.428762080881852e-018 -0.5017398950377386 0.8650185418403001 -9.286952941388763e-019 0.2607625543991116 -0.9654029677928541 -9.286952941388407e-019 0.2607625543991058 -0.9654029677928556 9.286952941388407e-019 -0.2607625543991058 0.9654029677928556 9.286952941388763e-019 -0.2607625543991116 0.9654029677928541 -7.14381254244789e-020 0.002012725556721015 -0.9999979744658651 -7.143812542448248e-020 0.002012725556727595 -0.9999979744658651 7.14381254244789e-020 -0.002012725556721015 0.9999979744658651 7.143812542448248e-020 -0.002012725556727595 0.9999979744658651 -8.572571838953487e-019 -0.2568741755083704 -0.9664448551039501 -8.572571838953785e-019 -0.2568741755083748 -0.9664448551039488 8.572571838953785e-019 0.2568741755083748 0.9664448551039488 8.572571838953487e-019 0.2568741755083704 0.9664448551039501 -2.000267235225424e-018 -0.4982546428953847 -0.8670307438800501 -2.000267235225416e-018 -0.4982546428953812 -0.8670307438800519 2.000267235225416e-018 0.4982546428953812 0.8670307438800519 2.000267235225424e-018 0.4982546428953847 0.8670307438800501 1.045111957692991e-006 -0.7056819897722565 -0.7085287074706123 1.045111957693077e-006 -0.7056819897722642 -0.7085287074706047 -1.045111957692991e-006 0.7056819897722565 0.7085287074706123 -1.045111957693077e-006 0.7056819897722642 0.7085287074706047 1.703558339410631e-006 -0.8650181793754788 -0.5017405199373778 1.703555472269594e-006 -0.8650186691821249 -0.5017396754926639 -1.703558339410631e-006 0.8650181793754788 0.5017405199373778 -1.703555472269594e-006 0.8650186691821249 0.5017396754926639 6.584446236329073e-007 -0.9654035292207907 -0.2607604758540074 6.584446236328554e-007 -0.9654035292207932 -0.2607604758539974 -6.584446236329073e-007 0.9654035292207907 0.2607604758540074 -6.584446236328554e-007 0.9654035292207932 0.2607604758539974 -6.286553020284208e-018 -0.999997973793477 -0.002013059596886011 -6.286553020284232e-018 -0.999997973793477 -0.002013059596885226 6.286553020284208e-018 0.999997973793477 0.002013059596886011 6.286553020284232e-018 0.999997973793477 0.002013059596885226 -8.001067536444891e-018 -0.9664454482419091 0.2568719439185513 -8.001067536444849e-018 -0.9664454482419086 0.2568719439185535 8.001067536444891e-018 0.9664454482419091 -0.2568719439185513 8.001067536444849e-018 0.9664454482419086 -0.2568719439185535 -6.858064911194342e-018 -0.8670284530084556 0.4982586293018563 -6.858064911194386e-018 -0.8670284530084529 0.4982586293018606 6.858064911194342e-018 0.8670284530084556 -0.4982586293018563 6.858064911194386e-018 0.8670284530084529 -0.4982586293018606 -1.714512912291224e-018 -0.7085272435711623 0.7056834595747947 -1.714512912290773e-018 -0.7085272435711557 0.7056834595748014 1.714512912291224e-018 0.7085272435711623 -0.7056834595747947 1.714512912290773e-018 0.7085272435711557 -0.7056834595748014 2.000267850227171e-018 -0.50174509130913 0.8650155278069827 2.000267850227025e-018 -0.5017450913091236 0.8650155278069864 -2.000267850227171e-018 0.50174509130913 -0.8650155278069827 -2.000267850227025e-018 0.5017450913091236 -0.8650155278069864 -9.286958702616151e-019 -0.260760369696751 0.9654035578946318 -9.286958702615267e-019 -0.2607603696967824 0.9654035578946233 9.286958702615267e-019 0.2607603696967824 -0.9654035578946233 9.286958702616151e-019 0.260760369696751 -0.9654035578946318 -9.286950770806969e-019 -0.002010277094332024 0.9999979793909607 -9.286950770806418e-019 -0.002010277094311723 0.9999979793909607 9.286950770806969e-019 0.002010277094332024 -0.9999979793909607 9.286950770806418e-019 0.002010277094311723 -0.9999979793909607 5.715048573591528e-019 0.2568730418156993 0.9664451564306947 5.715048573588878e-019 0.2568730418156698 0.9664451564307025 -5.715048573591528e-019 -0.2568730418156993 -0.9664451564306947 -5.715048573588878e-019 -0.2568730418156698 -0.9664451564307025 2.000267221612171e-018 0.4982543657066573 0.8670309031714246 2.000267221612142e-018 0.4982543657066462 0.8670309031714313 -2.000267221612142e-018 -0.4982543657066462 -0.8670309031714313 -2.000267221612171e-018 -0.4982543657066573 -0.8670309031714246 4.572040930296596e-018 0.7056830209675885 0.70852768041768 4.572040930296914e-018 0.7056830209676014 0.7085276804176672 -4.572040930296596e-018 -0.7056830209675885 -0.70852768041768 -4.572040930296914e-018 -0.7056830209676014 -0.7085276804176672 -1.143009385792095e-018 0.8650179182247008 0.5017409701730615 -1.14300938579175e-018 0.8650179182246978 0.5017409701730664 1.14300938579175e-018 -0.8650179182246978 -0.5017409701730664 1.143009385792095e-018 -0.8650179182247008 -0.5017409701730615 -2.857524059865316e-018 0.9654022143532302 0.2607653437899289 -2.857524059864703e-018 0.9654022143532335 0.2607653437899165 2.857524059864703e-018 -0.9654022143532335 -0.2607653437899165 2.857524059865316e-018 -0.9654022143532302 -0.2607653437899289 8.572576927432834e-018 0.9999979724130936 0.002013745192837834 8.572576927432837e-018 0.9999979724130936 0.002013745192837731 -8.572576927432837e-018 -0.9999979724130936 -0.002013745192837731 -8.572576927432834e-018 -0.9999979724130936 -0.002013745192837834 1.028708566471029e-017 0.9664447927409177 -0.2568744101384266 1.028708566471013e-017 0.9664447927409161 -0.2568744101384328 -1.028708566471013e-017 -0.9664447927409161 0.2568744101384328 -1.028708566471029e-017 -0.9664447927409177 0.2568744101384266 1.714514848941008e-018 0.8670306548123127 -0.4982547978853114 1.714514848940942e-018 0.8670306548123118 -0.4982547978853128 -1.714514848940942e-018 -0.8670306548123118 0.4982547978853128 -1.714514848941008e-018 -0.8670306548123127 0.4982547978853114</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID822\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID820\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID823\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-29.72717074101174 0.0470661117435751 -28.69876344623657 6.098035481956177 -28.72973752489099 -6.007128032915357 -28.53282744922561 0.0470661117435786 -27.57601917625835 -5.76393195455067 -25.77444337003271 -11.65193295607063 -24.74002718810198 -11.18212484729966 -21.06255070275907 -16.50266951408773 -20.21802346491317 -15.83825019581262 -14.91540807987584 -20.22880748247863 -14.31818987674653 -19.41505375671621 -7.751770807285503 -22.57637002932572 -7.442633762966477 -21.6687475439712 -0.05986734922217803 -23.38535305011864 -0.05986734922200039 -22.44576046162567 7.327029141922557 -21.6931232707988 7.636146662239294 -22.60070086096038 14.21454295616059 -19.46214172533004 14.81174313713382 -20.27586000751904 20.13340493729391 -15.90483331120722 20.97795770652724 -16.56924435931522 24.68013205472289 -11.26361907399176 25.71453772372937 -11.73342718276273 27.5450150606774 -5.854844720127502 28.53273433475355 -0.04706980378241763 28.69872439823219 -6.09804847793303 -27.54503608652592 5.854853581020838 -25.71460380496778 11.73344963035913 -24.68017861195898 11.26362616270643 -20.97801477668778 16.56924081495793 -20.13336739113572 15.90482031523034 -14.81179119621629 20.27586473332886 -14.21458200416507 19.46211927773357 -7.636156424240395 22.60071976419947 -7.326991595764447 21.69310909336947 0.05980164344520748 22.44574392129145 0.05980164344520748 23.38537904207242 7.442587205730467 21.66875226978099 7.751723499126264 22.57635112608661 14.31814331951052 19.41505375671623 14.91535251156158 20.22880748247864 20.2179874206012 15.8382655546944 21.062597259995 16.50268132861221 24.73998964194376 11.18211185132279 25.7744043220282 11.65192704880838 27.57592606178616 5.76392604728844 28.72971049165699 6.007126260736706 29.72717074101186 -0.04706980378243859 14.36485524582849 3.003563130368353 14.34936219911609 -3.049024238966515 14.86358537050593 -0.0235349018912193 14.26636716737677 -0.02353490189120882 13.78796303089308 2.88196302364422 12.8872021610141 5.825963524404191 12.36999482097188 5.591055925661395 10.5312986299975 8.251340664306103 10.1089937103006 7.919132777347201 7.45767625578079 10.11440374123932 7.159071659755262 9.707526878358113 3.875861749563132 11.28817556304331 3.721293602865234 10.83437613489049 0.02990082172260374 11.69268952103621 0.02990082172260374 11.22287196064572 -3.818078212120197 11.30035988209974 -3.663495797882224 10.84655454668473 -7.107291002082534 9.731059638866787 -7.405895598108147 10.13793236666443 -10.06668369556786 7.952410157615169 -10.48900738834389 8.284620407478963 -12.34008930597949 5.631813081353215 -12.85730190248389 5.866724815179567 -13.77251804326296 2.927426790510419 -14.34938172311829 3.049017740978088 -14.2664137246128 0.0235330558717893 13.7725075303387 -2.927422360063751 12.85726886186469 -5.866713591381362 12.34006602736145 -5.631809536995879 10.48897885326362 -8.28462217965761 10.06670246864696 -7.952416655603611 7.405871568566908 -10.13793000375952 7.107271478080293 -9.731070862665019 3.818073331119647 -11.30035043048019 3.663514570961278 -10.8465616353994 -0.02993367461108901 -11.69267652505932 -0.0299336746110002 -11.22288023081284 -3.721316881483239 -10.8343737719856 -3.875885403642752 -11.28818501466286 -7.159094938373267 -9.707526878358106 -7.45770403993792 -10.11440374123932 -10.10901173245659 -7.919125097906307 -10.53127535137954 -8.251334757043864 -12.37001359405099 -5.591062423649832 -12.88722168501636 -5.825966478035316 -13.78800958812917 -2.881965977275335 -14.3648687624455 -3.003564016457678 -14.86358537050587 0.02353305587178755 15.27491705001234 3.052369011605174 16.15957962910908 3.052369011605017 15.2749170500125 -3.052489088735269 16.15957962910919 -3.05248908873528 8.079789814554541 1.526184505802509 7.637458525006249 -1.526244544367635 8.079789814554594 -1.52624454436764 7.637458525006169 1.526184505802587 15.27491705001257 3.052393434432461 16.1595796291089 3.052393434432479 15.27491705001234 -3.05240474671089 16.15957962910908 -3.052404746711059 8.079789814554452 1.526196717216239 7.637458525006169 -1.526202373355445 8.079789814554541 -1.526202373355529 7.637458525006284 1.52619671721623 15.27491705001257 -3.052357776085104 15.27491705001246 3.052465505274848 16.1595796291089 -3.052357776085077 16.15957962910905 3.05246550527482 7.637458525006231 1.526232752637424 8.079789814554452 -1.526178888042539 8.079789814554523 1.52623275263741 7.637458525006284 -1.526178888042552 -15.27491705001257 -3.052373540330827 -16.15957962910892 -3.05237354033085 -15.27491705001246 3.052416952581463 -16.15957962910905 3.052416952581491 -8.079789814554461 -1.526186770165425 -7.637458525006231 1.526208476290732 -8.079789814554523 1.526208476290746 -7.637458525006284 -1.526186770165414 -15.27491705001257 -3.052465806413236 -16.1595796291089 -3.052465806413212 -15.27491705001257 3.052375467693421 -16.15957962910892 3.052375467693405 -8.079789814554452 -1.526232903206606 -7.637458525006284 1.526187733846711 -8.079789814554461 1.526187733846702 -7.637458525006284 -1.526232903206618 -15.27491705001257 3.052369534568098 -15.2749170500126 -3.052461191049092 -16.1595796291089 3.052369534568117 -16.15957962910917 -3.052461191049134 -7.637458525006302 -1.526230595524546 -8.079789814554452 1.526184767284059 -8.079789814554585 -1.526230595524567 -7.637458525006284 1.526184767284049 -15.27486216783468 3.05239166573236 -15.2748497760961 -3.052427910611382 -16.15952474692822 3.052390554465293 -16.15951235518956 -3.05243276531964 -7.637424888048051 -1.526213955305691 -8.079762373464108 1.526195277232647 -8.079756177594778 -1.52621638265982 -7.637431083917338 1.52619583286618 -16.15954325896589 3.052475085430112 -15.27488067987029 3.052479826373591 -16.15953903824096 -3.052340909406815 -15.27487645914545 -3.052340530900251 -7.637440339935146 1.526239913186796 -8.079769519120479 -1.526170454703408 -7.637438229572727 -1.526170265450126 -8.079771629482943 1.526237542715056 -16.15957962910889 3.052418165791704 -15.2749170500125 3.052418165791669 -16.15957962910889 -3.052394161251984 -15.2749170500123 -3.052394161251988 -7.637458525006249 1.526209082895835 -8.079789814554443 -1.526197080625992 -7.637458525006151 -1.526197080625994 -8.079789814554443 1.526209082895852 -16.15957962910888 3.052374063043219 -15.2749170500123 3.052374063043222 -16.15957962910892 -3.052455040458447 -15.27491705001232 -3.052455040458483 -7.63745852500615 1.526187031521611 -8.079789814554459 -1.526227520229223 -7.637458525006159 -1.526227520229242 -8.079789814554442 1.52618703152161 -16.15957962910892 3.05231841192716 -15.27491705001232 3.052318411927153 -16.15957962910915 -3.052488191674192 -15.27491705001257 -3.052488191674224 -7.63745852500616 1.526159205963577 -8.079789814554577 -1.526244095837096 -7.637458525006284 -1.526244095837112 -8.079789814554461 1.52615920596358 -15.27491705001257 3.052651720185259 -15.27491705001232 -3.052197806521551 -16.15957962910915 3.05265172018527 -16.1595796291089 -3.052197806521591 -7.63745852500616 -1.526098903260776 -8.079789814554577 1.526325860092635 -8.079789814554452 -1.526098903260796 -7.637458525006284 1.52632586009263 -15.27491705001232 3.05224551536068 -15.27491705001257 -3.0525561576722 -16.1595796291089 3.052245515360641 -16.15957962910915 -3.052556157672223 -7.637458525006284 -1.5262780788361 -8.079789814554452 1.526122757680321 -8.079789814554577 -1.526278078836111 -7.63745852500616 1.52612275768034 -15.27491705001248 -3.052423131493245 -16.15957962910908 -3.052423131493118 -15.27491705001257 3.052388317079474 -16.15957962910915 3.052388317079447 -8.079789814554541 -1.526211565746559 -7.637458525006284 1.526194158539737 -8.079789814554577 1.526194158539723 -7.63745852500624 -1.526211565746623 -15.27491705001248 3.052553877330089 -15.27491705001243 -3.052249109402259 -16.15957962910908 3.052553877330226 -16.15957962910915 -3.052249109402342 -7.637458525006213 -1.52612455470113 -8.079789814554541 1.526276938665113 -8.079789814554577 -1.526124554701171 -7.63745852500624 1.526276938665044 15.27491705001243 -3.052416690054004 15.27491705001246 3.052416535812357 16.15957962910915 -3.05241669005392 16.15957962910915 3.052416535812224 7.637458525006231 1.526208267906179 8.079789814554577 -1.52620834502696 8.079789814554577 1.526208267906112 7.637458525006213 -1.526208345027002 15.27491705001246 3.052438862169398 16.15957962910905 3.052438862169345 15.27491705001246 -3.052369155945408 16.15957962910915 -3.052369155945526 8.079789814554523 1.526219431084672 7.637458525006231 -1.526184577972704 8.079789814554577 -1.526184577972763 7.637458525006231 1.526219431084699 15.27491705001246 -3.052388094537107 15.27491705001264 3.05243197721078 16.15957962910905 -3.052388094537172 16.15957962910919 3.052431977210855 7.63745852500632 1.52621598860539 8.079789814554523 -1.526194047268586 8.079789814554594 1.526215988605428 7.637458525006231 -1.526194047268554 16.15957962910915 3.052318676844975 16.15957962910919 -3.052517161824061 15.27491705001257 3.052318676844949 15.27491705001264 -3.052517161824126 8.079789814554594 -1.526258580912031 7.637458525006284 1.526159338422474 7.63745852500632 -1.526258580912063 8.079789814554577 1.526159338422487 16.1595796291089 3.052433055023369 16.15957962910915 -3.052362761715934 15.27491705001246 3.05243305502342 15.27491705001257 -3.052362761715977 8.079789814554575 -1.526181380857967 7.63745852500623 1.52621652751171 7.637458525006283 -1.526181380857988 8.07978981455445 1.526216527511684 15.27491705001232 3.052501452363784 16.15957962910901 3.052501452363778 15.27491705001246 -3.052324167367494 16.1595796291089 -3.052324167367532 8.079789814554506 1.526250726181889 7.637458525006231 -1.526162083683747 8.079789814554452 -1.526162083683766 7.63745852500616 1.526250726181892 15.27491705001232 3.052376857360129 16.15957962910922 3.052376857360143 15.27491705001232 -3.052456883429417 16.15957962910901 -3.052456883429418 8.07978981455461 1.526188428680072 7.637458525006159 -1.526228441714708 8.079789814554504 -1.526228441714709 7.637458525006159 1.526188428680064 16.15957962910908 3.052455255490922 16.15957962910922 -3.052351123981224 15.2749170500125 3.052455255490937 15.27491705001232 -3.052351123981252 8.079789814554612 -1.526175561990612 7.637458525006249 1.526227627745469 7.63745852500616 -1.526175561990626 8.079789814554541 1.526227627745461 15.2749170500125 3.052429041414679 16.15957962910919 3.052429041414678 15.2749170500125 -3.052393678245672 16.15957962910908 -3.052393678245677 8.079789814554593 1.526214520707339 7.637458525006248 -1.526196839122836 8.079789814554539 -1.526196839122838 7.637458525006248 1.52621452070734</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"288\" source=\"#ID823\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID819\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID817\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID818\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 14 14 15 15 13 13 13 13 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 24 24 25 25 23 23 22 22 23 23 25 25 3 3 1 1 26 26 1 1 27 27 26 26 26 26 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 34 34 33 33 35 35 33 33 36 36 35 35 35 35 36 36 37 37 36 36 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 24 24 24 24 46 46 25 25 47 47 25 25 46 46 96 96 97 97 98 98 99 99 98 98 97 97 104 104 105 105 96 106 97 107 96 106 105 105 104 112 108 113 105 114 109 115 105 114 108 113 112 120 113 121 108 122 109 123 108 122 113 121 116 128 117 129 112 130 113 131 112 130 117 129 116 136 120 137 117 138 121 139 117 138 120 137 120 144 124 145 121 146 125 147 121 146 124 145 125 152 124 153 128 154 129 155 128 154 124 153 128 160 129 161 132 162 133 163 132 162 129 161 132 168 133 169 136 170 137 171 136 170 133 169 136 176 137 177 140 178 141 179 140 178 137 177 141 184 144 185 140 186 145 187 140 186 144 185 144 192 148 193 145 194 149 195 145 194 148 193 152 200 153 201 148 202 149 203 148 202 153 201 152 208 156 209 153 210 157 211 153 210 156 209 156 216 160 217 157 218 161 219 157 218 160 217 164 224 165 225 160 226 161 227 160 226 165 225 164 232 168 233 165 234 169 235 165 234 168 233 172 240 169 241 173 242 168 243 173 242 169 241 176 248 172 249 177 250 173 251 177 250 172 249 180 256 181 257 177 258 176 259 177 258 181 257 184 264 185 265 180 266 181 267 180 266 185 265 188 272 185 273 189 274 184 275 189 274 185 273 98 280 99 281 189 282 188 283 189 282 99 281</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID819\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID820\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">48 48 49 49 50 50 49 49 48 48 51 51 51 51 48 48 52 52 52 52 48 48 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59 58 58 59 59 60 60 60 60 59 59 61 61 60 60 61 61 62 62 62 62 61 61 63 63 62 62 63 63 64 64 64 64 63 63 65 65 65 65 63 63 66 66 65 65 66 66 67 67 67 67 66 66 68 68 67 67 68 68 69 69 69 69 68 68 70 70 69 69 70 70 71 71 71 71 70 70 72 72 71 71 72 72 73 73 49 49 74 74 75 75 74 74 49 49 51 51 75 75 74 74 76 76 75 75 76 76 77 77 77 77 76 76 78 78 77 77 78 78 79 79 79 79 78 78 80 80 79 79 80 80 81 81 81 81 80 80 82 82 81 81 82 82 83 83 83 83 82 82 84 84 83 83 84 84 85 85 83 83 85 85 86 86 86 86 85 85 87 87 86 86 87 87 88 88 88 88 87 87 89 89 88 88 89 89 90 90 90 90 89 89 91 91 90 90 91 91 92 92 92 92 91 91 93 93 92 92 93 93 94 94 94 94 93 93 73 73 94 94 73 73 72 72 94 94 72 72 95 95 100 100 101 101 102 102 101 101 100 100 103 103 106 108 103 109 100 110 103 109 106 108 107 111 110 116 106 117 111 118 106 117 110 116 107 119 114 124 110 125 111 126 110 125 114 124 115 127 118 132 115 133 114 134 115 133 118 132 119 135 122 140 118 141 123 142 118 141 122 140 119 143 126 148 123 149 127 150 123 149 126 148 122 151 126 156 130 157 131 158 130 157 126 156 127 159 131 164 134 165 135 166 134 165 131 164 130 167 135 172 138 173 139 174 138 173 135 172 134 175 139 180 142 181 143 182 142 181 139 180 138 183 146 188 142 189 147 190 142 189 146 188 143 191 150 196 147 197 151 198 147 197 150 196 146 199 154 204 150 205 151 206 150 205 154 204 155 207 158 212 154 213 159 214 154 213 158 212 155 215 162 220 159 221 163 222 159 221 162 220 158 223 166 228 162 229 163 230 162 229 166 228 167 231 170 236 166 237 171 238 166 237 170 236 167 239 171 244 174 245 170 246 174 245 171 244 175 247 175 252 178 253 174 254 178 253 175 252 179 255 182 260 178 261 179 262 178 261 182 260 183 263 186 268 183 269 182 270 183 269 186 268 187 271 186 276 190 277 187 278 190 277 186 276 191 279 102 284 190 285 191 286 190 285 102 284 101 287</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID819\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID820\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID824\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID825\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID829\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151387 0.3508941918724347 1.321112037688635 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035645 0.3520825277789115 1.325549693216544 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035627 -0.3578613696232667 1.324001740206996 0.8481914425151409 -0.35666972965487 1.31956378430982 0.848191442515148 0.680868640605695 1.185278447723705 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035609 0.6831636119784472 1.189256688460091 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151351 -0.6860480580346522 1.182286995116669 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035627 -0.6883468591155371 1.186265836591588 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151387 0.9644406560028058 0.9686694797989038 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 0.9676888492394975 0.9719181235894887 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 0.8481914425151333 -0.9686702307220684 0.9644396047103774 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035627 1.186263358545151 0.688344831622999 0.8481914425151387 1.18228864714763 0.6860482082192899 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035609 -1.189256237906191 0.6831632365168621 0.8481914425151387 -1.185278748092962 0.6808666131131532 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 1.324002340945525 0.3578620454541118 0.8481914425151409 1.319564835602249 0.3566724329782558 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 -0.2249169753035627 -1.325547891000948 0.3520832787020826 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 0.8481914425151333 1.366916248086444 0.002991490153193777 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151387 1.321113689719592 -0.3508940792339668 -0.2249169753035627 1.325550293955077 -0.3520830158789752 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151391 -1.319562582832752 -0.356672658255204 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151351 1.18527964920076 -0.6808666131131529 -0.2249169753035627 1.189255787352293 -0.6831632365168616 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151405 -1.182288121501415 -0.6860479829423405 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151356 0.9686716574760796 -0.9644398299873291 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 0.8481914425151387 0.6860518126504815 -1.182286394378136 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035627 0.6883464085616424 -1.186264860391474 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151333 -0.6808676644055873 -1.185277922077488 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151409 0.356674422924643 -1.319564084679085 -0.2249169753035627 0.3578613696232724 -1.324001139468466 0.8481914425151351 -0.3508928026645748 -1.321112338057901 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461098018 -1.366914445870862 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035609 0.002993367461099794 -1.371508293416812 0.8481914425151387 0.002993367461098018 -1.366914445870862</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID829\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID826\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID830\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.004280981954898488 0.002184853357166072 -0.9999884497379504 -0.00428062881210491 -0.2567048492765375 -0.9664803653333486 -0.004280981952864871 0.002183299616824533 -0.999988453131486 -0.004280628810128404 -0.2567062461107217 -0.9664799943220406 0.00428062881210491 0.2567048492765375 0.9664803653333486 0.004280981952864871 -0.002183299616824533 0.999988453131486 0.004280628810128404 0.2567062461107217 0.9664799943220406 0.004280981954898488 -0.002184853357166072 0.9999884497379504 -0.00428163879072645 0.2609252439511864 -0.9653495142373459 -0.004281638786373565 0.2609241043035803 -0.9653498222730853 0.004281638786373565 -0.2609241043035803 0.9653498222730853 0.00428163879072645 -0.2609252439511864 0.9653495142373459 -0.00428036937316088 -0.4981009455189371 -0.867108486010355 -0.004280369372364794 -0.4981020763274863 -0.8671078364288279 0.004280369372364794 0.4981020763274863 0.8671078364288279 0.00428036937316088 0.4981009455189371 0.867108486010355 -0.004282256413127314 0.5018847979083912 -0.8649238763662763 -0.004282256411797012 0.5018836420376206 -0.864924547076262 0.004282256411797012 -0.5018836420376206 0.864924547076262 0.004282256413127314 -0.5018847979083912 0.8649238763662763 -0.004279848671315645 -0.7055541584054808 -0.708643078320874 -0.004279848666279009 -0.705555224291424 -0.7086420170794786 0.004279848666279009 0.705555224291424 0.7086420170794786 0.004279848671315645 0.7055541584054808 0.708643078320874 -0.004281892798924736 0.7086451305096495 -0.7055520848236652 -0.0042818928041386 0.7086441543526577 -0.7055530652586102 0.004281892798924736 -0.7086451305096495 0.7055520848236652 0.0042818928041386 -0.7086441543526577 0.7055530652586102 -0.004279390712496793 -0.8649233212950592 -0.5018857789328697 -0.004279390712642355 -0.8649226644398191 -0.5018869109206303 0.004279390712496793 0.8649233212950592 0.5018857789328697 0.004279390712642355 0.8649226644398191 0.5018869109206303 -0.004281359113397748 0.8671102266169878 -0.4980979069022258 -0.004281359112962919 0.8671110173025061 -0.4980965304403946 0.004281359113397748 -0.8671102266169878 0.4980979069022258 0.004281359112962919 -0.8671110173025061 0.4980965304403946 -0.004280028371695556 -0.965348902363104 -0.2609275341229588 -0.004280028364445989 -0.9653485192918171 -0.260928951360894 0.004280028371695556 0.965348902363104 0.2609275341229588 0.004280028364445989 0.9653485192918171 0.260928951360894 -0.004281468576927181 0.9664802791478765 -0.2567051597554433 -0.004281468578594852 0.9664806579291112 -0.2567037336614381 0.004281468576927181 -0.9664802791478765 0.2567051597554433 0.004281468578594852 -0.9664806579291112 0.2567037336614381 -0.004280447389466799 -0.9999884506049243 -0.002185503811303777 -0.00428044738673919 -0.9999884540002806 -0.002183949701340417 0.004280447389466799 0.9999884506049243 0.002185503811303777 0.00428044738673919 0.9999884540002806 0.002183949701340417 -0.004280716988099828 0.9999884543797312 0.002183247421708556 -0.004280716977420427 0.9999884509864663 0.002184801100054285 0.004280716988099828 -0.9999884543797312 -0.002183247421708556 0.004280716977420427 -0.9999884509864663 -0.002184801100054285 -0.004279849309618837 -0.9664798642304419 0.2567067488925707 -0.004279849305227373 -0.9664794597692433 0.256708271651063 0.004279849309618837 0.9664798642304419 -0.2567067488925707 0.004279849305227373 0.9664794597692433 -0.256708271651063 -0.004279550911469715 0.9653495572584627 0.2609251190377931 -0.004279550914307764 0.9653499365637356 0.2609237157108637 0.004279550911469715 -0.9653495572584627 -0.2609251190377931 0.004279550914307764 -0.9653499365637356 -0.2609237157108637 -0.004279366945403445 -0.8671083352607096 0.4981012165614008 -0.004279366943950962 -0.8671074945846607 0.4981026800306053 0.004279366945403445 0.8671083352607096 -0.4981012165614008 0.004279366943950962 0.8671074945846607 -0.4981026800306053 -0.004280137578717258 0.8649244175304505 0.5018838833653839 -0.004280137569418133 0.8649251493016499 0.5018826222613267 0.004280137578717258 -0.8649244175304505 -0.5018838833653839 0.004280137569418133 -0.8649251493016499 -0.5018826222613267 -0.004279503727668084 -0.7086453482994729 0.7055518805738978 -0.004279503731088207 -0.708644065358699 0.7055531691373169 0.004279503727668084 0.7086453482994729 -0.7055518805738978 0.004279503731088207 0.708644065358699 -0.7055531691373169 -0.004280820620104977 0.7055523445921659 0.7086448783525611 -0.004280820622493526 0.7055537732692776 0.7086434559073291 0.004280820620104977 -0.7055523445921659 -0.7086448783525611 0.004280820622493526 -0.7055537732692776 -0.7086434559073291 -0.004279856787992766 -0.5018869261655592 0.8649226532875417 -0.004279856789499468 -0.5018853069956759 0.8649235928379554 0.004279856789499468 0.5018853069956759 -0.8649235928379554 0.004279856787992766 0.5018869261655592 -0.8649226532875417 -0.004280325596508693 0.4981002179615462 0.8671089041633976 -0.004280325599923767 0.4981013730755701 0.8671082406210833 0.004280325599923767 -0.4981013730755701 -0.8671082406210833 0.004280325596508693 -0.4981002179615462 -0.8671089041633976 -0.004280271874951132 -0.2609268930036005 0.9653490745736302 -0.004280271879293935 -0.2609251102153328 0.965349556446656 0.004280271874951132 0.2609268930036005 -0.9653490745736302 0.004280271879293935 0.2609251102153328 -0.965349556446656 -0.004280237446015731 0.256704930550933 0.9664803454795375 -0.004280237443075813 0.2567064328691884 0.966479946450524 0.004280237443075813 -0.2567064328691884 -0.966479946450524 0.004280237446015731 -0.256704930550933 -0.9664803454795375 -0.004280534258190548 -0.002185305100490302 0.9999884506673475 -0.004280534257630148 -0.002183750939241975 0.9999884540624979 0.004280534257630148 0.002183750939241975 -0.9999884540624979 0.004280534258190548 0.002185305100490302 -0.9999884506673475</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID830\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID828\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID831\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"384\">16.95653956603488 2.371301515704383 16.72264492845211 -3.239903109249033 -4.493906290557893 2.933910303838056 -4.728586341386173 -2.696140844848241 8.361322464226053 -1.619951554624516 -2.246953145278947 1.466955151919028 -2.364293170693086 -1.348070422424121 8.478269783017442 1.185650757852192 -16.72708843421687 -3.225761471737048 -16.95324444480733 2.385627098572262 4.724869775837585 -2.700043436932254 4.497951786028732 2.930243137362552 -8.476622222403663 1.192813549286131 2.362434887918793 -1.350021718466127 2.248975893014366 1.465121568681276 -8.363544217108437 -1.612880735868524 16.81096911007859 -2.94358313064525 -4.650377267339515 -2.779097278612486 16.8845397929188 2.670381715873585 -4.576559850465017 2.853718301221435 -2.325188633669757 -1.389548639306243 8.442269896459401 1.335190857936793 -2.288279925232509 1.426859150610718 8.405484555039294 -1.471791565322625 -16.81138055951746 -2.942128119354722 -16.88407653528399 2.671868009696685 4.649988302077555 -2.779450835817336 4.577047968530231 2.853401927377038 -8.442038267641994 1.335934004848342 2.324994151038777 -1.389725417908668 2.288523984265115 1.426700963688519 -8.405690279758728 -1.471064059677361 16.82856995092033 -2.880655093693082 -4.633528105959257 -2.796443786905329 16.86821789600814 2.73349127372693 -4.593746885068567 2.836588465561602 -2.316764052979628 -1.398221893452664 8.434108948004072 1.366745636863465 -2.296873442534284 1.418294232780801 8.414284975460165 -1.440327546846541 -16.86799572512858 2.733954476238326 4.593973352083259 2.836523718218725 -16.82868561620813 -2.880198764756717 4.633415836383876 -2.796499481809613 2.296986676041629 1.418261859109362 -8.414342808104063 -1.440099382378358 2.316707918191938 -1.398249740904807 -8.433997862564288 1.366977238119163 -4.601950849363642 2.828377057234473 16.86025756741855 2.763878992145286 -4.625368403466258 -2.804667302171011 16.83691785074735 -2.850323934358243 8.430128783709277 1.381939496072643 -2.312684201733129 -1.402333651085505 8.418458925373676 -1.425161967179121 -2.300975424681821 1.414188528617236 4.602104112393668 2.82847806387397 4.625321723249752 -2.804583041773303 -16.86010532359727 2.764157331875902 -16.83696537367468 -2.850054064282261 2.312660861624876 -1.402291520886652 -8.430052661798635 1.382078665937951 -8.41848268683734 -1.42502703214113 2.301052056196834 1.414239031936985 -4.607345360204824 2.822837129837691 16.85496166571006 2.783686677685021 -4.620007726224934 -2.810278447092262 16.84234184440923 -2.830551225302984 8.42748083285503 1.391843338842511 -2.310003863112467 -1.405139223546131 8.421170922204613 -1.415275612651492 -2.303672680102412 1.411418564918846 4.60747210773349 2.823105087936984 4.619984400096286 -2.809976726827539 -16.85483529246015 2.784011826299676 -16.84236541118916 -2.830188792266932 2.309992200048143 -1.404988363413769 -8.427417646230072 1.392005913149838 -8.421182705594578 -1.415094396133466 2.303736053866745 1.411552543968492 16.85066790715681 2.799634925290195 16.84661280771467 -2.814593484597931 -4.611683716472709 2.81851480107025 -4.615752153365286 -2.814589810342543 8.423306403857335 -1.407296742298966 -2.305841858236355 1.409257400535125 -2.307876076682643 -1.407294905171272 8.425333953578404 1.399817462645097 4.611775836897464 2.818552915409719 4.615710287708393 -2.814561377896678 -16.85057595863294 2.799689708006414 -16.84665468625737 -2.814561337141796 2.307855143854197 -1.407280688948339 -8.425287979316471 1.399844854003207 -8.423327343128683 -1.407280668570898 2.305887918448732 1.409276457704859 16.84669296982185 2.814502371962669 16.85061274891556 -2.799737230245905 -4.615671991269269 2.81450515557137 -4.611738806717524 -2.818601982494837 8.425306374457781 -1.399868615122952 -2.307835995634635 1.407252577785685 -2.305869403358762 -1.409300991247418 8.423346484910923 1.407251185981335 -16.8466368184738 2.8146110332504 4.615728155487668 2.814609614993135 -16.85069104536705 -2.799615976508483 4.611660413818911 -2.818490959721189 2.307864077743834 1.407304807496568 -8.425345522683527 -1.399807988254242 2.305830206909456 -1.409245479860595 -8.423318409236899 1.4073055166252 16.84241677434491 2.830407356558213 16.85488174045585 -2.783822084320475 -4.619932794077956 2.810191868402641 -4.607425572770014 -2.822910867387297 8.427440870227924 -1.391911042160237 -2.309966397038978 1.405095934201321 -2.303712786385007 -1.411455433693649 8.421208387172452 1.415203678279107 -16.84234483497815 2.830335643376079 4.620004557216717 2.810058274546969 -16.85496420879204 -2.783885263391031 4.607342998617686 -2.823023215688412 2.310002278608359 1.405029137273484 -8.427482104396022 -1.391942631695516 2.303671499308843 -1.411511607844206 -8.421172417489073 1.41516782168804 16.83702861702645 2.850080276962824 16.86015697964571 -2.764128945178626 -4.625258428899851 2.804623625608292 -4.602052139363532 -2.828459741286155 8.430078489822854 -1.382064472589313 -2.312629214449926 1.402311812804146 -2.301026069681766 -1.414229870643077 8.418514308513226 1.425040138481412 -16.83687108925824 2.850382876463817 4.625415304190483 2.804724666538888 -16.86021964902263 -2.763862037364986 4.601989023202723 -2.828331854061645 2.312707652095241 1.402362333269444 -8.430109824511312 -1.381931018682493 2.300994511601362 -1.414165927030822 -8.418435544629118 1.425191438231908 16.86805470199861 -2.733989105220428 -4.593914234547086 -2.836549647844413 16.82876921869526 2.880127300163432 -4.633332011394352 2.796435274276993 -2.296957117273543 -1.418274823922207 8.414384609347628 1.440063650081716 -2.316666005697176 1.398217637138496 8.434027350999303 -1.366994552610214 -16.86820930785124 -2.733438833984344 -16.82855802294511 2.880666116932571 4.593755417573123 -2.836541457565994 4.633540441894999 2.796500506525937 -8.414279011472553 1.440333058466285 2.296877708786562 -1.418270728782997 2.316770220947499 1.398250253262969 -8.434104653925619 -1.366719416992172 16.81145811289813 2.942066762377245 16.88411675624425 -2.671921487800922 -4.649910896461154 2.779418514975413 -4.577007912454192 -2.853430276512045 8.442058378122125 -1.335960743900461 -2.324955448230577 1.389709257487706 -2.288503956227096 -1.426715138256022 8.405729056449063 1.471033381188622 -16.88454891053257 -2.670436317040372 -16.81098620107458 2.943539550568779 4.576551096657347 -2.853740970625229 4.650360429397084 2.779075221069198 -8.405493100537289 1.47176977528439 2.288275548328674 -1.426870485312614 2.325180214698542 1.389537610534599 -8.442274455266283 -1.335218158520186 16.95324496794547 -2.385640017490524 -4.497954252672803 -2.930183803648829 16.72711886388277 3.225770011282844 -4.724839231514265 2.700053591480886 -2.248977126336401 -1.465091901824415 8.363559431941386 1.612885005641422 -2.362419615757132 1.350026795740443 8.476622483972733 -1.192820008745262 -16.95654291422808 -2.371371245078102 -16.72266364813068 3.23986216331764 4.493904609166451 -2.933941311184089 4.728569530450034 2.696148379731193 -8.361331824065339 1.61993108165882 2.246952304583226 -1.466970655592045 2.364284765225017 1.348074189865597 -8.478271457114039 -1.185685622539051</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"192\" source=\"#ID831\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID827\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID825\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID826\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 3 2 2 1 1 8 8 0 9 9 10 2 11 9 10 0 9 12 16 13 17 1 18 3 19 1 18 13 17 16 24 8 25 17 26 9 27 17 26 8 25 20 32 21 33 12 34 13 35 12 34 21 33 16 40 17 41 24 42 25 43 24 42 17 41 21 48 20 49 28 50 29 51 28 50 20 49 25 56 32 57 24 58 33 59 24 58 32 57 28 64 29 65 36 66 37 67 36 66 29 65 32 72 40 73 33 74 41 75 33 74 40 73 37 80 44 81 36 82 45 83 36 82 44 81 40 88 48 89 41 90 49 91 41 90 48 89 44 96 52 97 45 98 53 99 45 98 52 97 49 104 48 105 56 106 57 107 56 106 48 105 52 112 60 113 53 114 61 115 53 114 60 113 56 120 57 121 64 122 65 123 64 122 57 121 60 128 68 129 61 130 69 131 61 130 68 129 64 136 65 137 72 138 73 139 72 138 65 137 76 144 77 145 68 146 69 147 68 146 77 145 80 152 72 153 81 154 73 155 81 154 72 153 76 160 84 161 77 162 85 163 77 162 84 161 88 168 80 169 89 170 81 171 89 170 80 169 92 176 93 177 84 178 85 179 84 178 93 177 92 184 88 185 93 186 89 187 93 186 88 185</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID827\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID828\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4 4 5 5 6 6 5 5 4 4 7 7 7 12 10 13 5 14 10 13 7 12 11 15 14 20 4 21 6 22 4 21 14 20 15 23 11 28 18 29 10 30 18 29 11 28 19 31 22 36 15 37 14 38 15 37 22 36 23 39 18 44 26 45 27 46 26 45 18 44 19 47 23 52 30 53 31 54 30 53 23 52 22 55 34 60 26 61 35 62 26 61 34 60 27 63 31 68 38 69 39 70 38 69 31 68 30 71 42 76 35 77 43 78 35 77 42 76 34 79 46 84 38 85 47 86 38 85 46 84 39 87 50 92 43 93 51 94 43 93 50 92 42 95 54 100 47 101 55 102 47 101 54 100 46 103 50 108 58 109 59 110 58 109 50 108 51 111 62 116 55 117 63 118 55 117 62 116 54 119 59 124 66 125 67 126 66 125 59 124 58 127 70 132 63 133 71 134 63 133 70 132 62 135 67 140 74 141 75 142 74 141 67 140 66 143 78 148 70 149 71 150 70 149 78 148 79 151 74 156 82 157 75 158 82 157 74 156 83 159 86 164 78 165 87 166 78 165 86 164 79 167 83 172 90 173 82 174 90 173 83 172 91 175 94 180 86 181 87 182 86 181 94 180 95 183 91 188 94 189 90 190 94 189 91 188 95 191</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID827\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID828\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID832\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID833\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID837\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8079789814554461 0.3818078212120213 1.436486425690645 -0.8079789814554523 -0.002990082172262154 1.486358837419857 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8079789814554452 -0.3875861749563112 1.4349375715733 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8079789814554452 0.740589559810813 1.28872021610141 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8079789814554541 -0.7457676255780894 1.285729289140589 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8079789814554585 1.048900738834391 1.053129712815121 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8079789814554594 -1.053129862999752 1.048899236988065 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8079789814554523 1.285730190248389 0.7457698032552573 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8079789814554541 -1.288720216101408 0.7405885836107005 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8079789814554443 1.434938172311828 0.3875870009717931 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8079789814554612 -1.436485524582846 0.3818088725044521 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8079789814554443 1.486358537050585 0.002991490153193332 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8079789814554506 -1.486358537050592 -0.002991724816680641 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8079789814554461 1.436486876244542 -0.3818089851429218 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8079789814554452 -1.434936219911606 -0.3875878269872708 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8079789814554577 1.288722168501632 -0.7405889590722823 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8079789814554577 -1.285726886186467 -0.7457686768705085 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8079789814554452 1.053127535137952 -1.0488984860649 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8079789814554594 -1.048897885326367 -1.053129938092068 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8079789814554577 0.74577040399379 -1.285729289140591 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8079789814554523 -0.740587156856689 -1.288719915732147 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8079789814554541 0.387588540364284 -1.434938773050364 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8079789814554577 -0.3818073331119559 -1.436485224213582 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8079789814554577 0.002993367461103569 -1.486357185388897 -0.8481914425151373 0.002993367461098018 -1.573645545224054</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID837\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID834\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID838\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.9082492736520922 -0.1075708369032307 -0.4043658887176134 -0.9082500329767456 0.0007516867371791146 -0.4184271890840621 -0.9082492745359263 -0.1074503430176522 -0.4043979217186361 -0.9082500344776737 0.0008765598473410654 -0.4184269428635523 0.9082500329767456 -0.0007516867371791146 0.4184271890840621 0.9082492745359263 0.1074503430176522 0.4043979217186361 0.9082500344776737 -0.0008765598473410654 0.4184269428635523 0.9082492736520922 0.1075708369032307 0.4043658887176134 -0.9082506050830315 0.1091435923435764 -0.4039412266860695 -0.9082506046354215 0.1090229161292429 -0.4039738146688064 0.9082506050830315 -0.1091435923435764 0.4039412266860695 0.9082506046354215 -0.1090229161292429 0.4039738146688064 -0.9082482405359982 -0.2085640638359936 -0.3627480735158756 -0.9082482427168129 -0.2084560405691885 -0.3628101552493231 0.9082482427168129 0.2084560405691885 0.3628101552493231 0.9082482405359982 0.2085640638359936 0.3627480735158756 -0.9082491615154812 0.2099738865158217 -0.3619315233409027 -0.9082491645414247 0.209866585626633 -0.3619937449006862 0.9082491615154812 -0.2099738865158217 0.3619315233409027 0.9082491645414247 -0.209866585626633 0.3619937449006862 -0.908246568910591 -0.2953461497473803 -0.2964098883160561 -0.9082465712478778 -0.2952584160994148 -0.2964972740834871 0.9082465712478778 0.2952584160994148 0.2964972740834871 0.908246568910591 0.2953461497473803 0.2964098883160561 -0.9082473909658394 0.2964969062159364 -0.295256263960858 -0.9082473912470552 0.2964072177461657 -0.2953463010787428 0.9082473909658394 -0.2964969062159364 0.295256263960858 0.9082473912470552 -0.2964072177461657 0.2953463010787428 -0.9082474712734822 -0.3619966089766116 -0.2098689734447648 -0.9082474673790382 -0.3619345433051908 -0.2099760090153772 0.9082474673790382 0.3619345433051908 0.2099760090153772 0.9082474712734822 0.3619966089766116 0.2098689734447648 -0.9082484639023035 0.3628095932970937 -0.2084560549149473 -0.908248460723703 0.3627472515016051 -0.2085645346674632 0.9082484639023035 -0.3628095932970937 0.2084560549149473 0.908248460723703 -0.3627472515016051 0.2085645346674632 -0.9082511440516279 -0.403972551902783 -0.1090231013962746 -0.9082511405035336 -0.4039399392223229 -0.1091439016853281 0.9082511405035336 0.4039399392223229 0.1091439016853281 0.9082511440516279 0.403972551902783 0.1090231013962746 -0.9082495969998886 0.4043972754492359 -0.1074500495987548 -0.908249596623721 0.404365212715167 -0.1075706511027334 0.9082495969998886 -0.4043972754492359 0.1074500495987548 0.908249596623721 -0.404365212715167 0.1075706511027334 -0.9082514553289773 -0.4184241025164883 -0.0007512163908289862 -0.9082514585655601 -0.4184238527729456 -0.0008760389129415635 0.9082514585655601 0.4184238527729456 0.0008760389129415635 0.9082514553289773 0.4184241025164883 0.0007512163908289862 -0.9082505851953316 0.4184257471815965 0.0008766914283048339 -0.9082505828752954 0.418425995279139 0.0007517854403690022 0.9082505851953316 -0.4184257471815965 -0.0008766914283048339 0.9082505828752954 -0.418425995279139 -0.0007517854403690022 -0.9082490302929679 -0.4043664017146101 0.1075709632580378 -0.9082490333533763 -0.4043984855098431 0.1074502597949525 0.9082490302929679 0.4043664017146101 -0.1075709632580378 0.9082490333533763 0.4043984855098431 -0.1074502597949525 -0.9082505682264853 0.4039407217202315 0.1091457679088157 -0.9082505698761868 0.4039735439268114 0.1090242089024017 0.9082505698761868 -0.4039735439268114 -0.1090242089024017 0.9082505682264853 -0.4039407217202315 -0.1091457679088157 -0.9082486494484744 -0.3627467689190975 0.2085645521505931 -0.9082486481231678 -0.3628091637581442 0.2084559998550159 0.9082486494484744 0.3627467689190975 -0.2085645521505931 0.9082486481231678 0.3628091637581442 -0.2084559998550159 -0.9082483661589828 0.3619328652568282 0.209975013790977 -0.9082483686281029 0.3619950655307562 0.2098677522054624 0.9082483686281029 -0.3619950655307562 -0.2098677522054624 0.9082483661589828 -0.3619328652568282 -0.209975013790977 -0.9082506197478876 -0.2964042575108705 0.2953393435643274 -0.9082506167666825 -0.2964919493568599 0.2952513185567682 0.9082506197478876 0.2964042575108705 -0.2953393435643274 0.9082506167666825 0.2964919493568599 -0.2952513185567682 -0.90824801524225 0.295256581095625 0.2964946780774259 -0.9082480131803266 0.2953441289205035 0.2964074764006107 0.9082480131803266 -0.2953441289205035 -0.2964074764006107 0.90824801524225 -0.295256581095625 -0.2964946780774259 -0.9082502482972585 -0.2098653041311184 0.3619917686770259 -0.9082502533146946 -0.2099721613881187 0.3619297843446915 0.9082502482972585 0.2098653041311184 -0.3619917686770259 0.9082502533146946 0.2099721613881187 -0.3619297843446915 -0.9082493159583445 0.2084540785156279 0.3628085958344974 -0.9082493143264231 0.2085638932647763 0.3627454830205625 0.9082493143264231 -0.2085638932647763 -0.3627454830205625 0.9082493159583445 -0.2084540785156279 -0.3628085958344974 -0.9082485879667209 -0.1090232989628911 0.4039782453792602 -0.9082485869772989 -0.1091444703673541 0.4039455270726108 0.9082485879667209 0.1090232989628911 -0.4039782453792602 0.9082485869772989 0.1091444703673541 -0.4039455270726108 -0.9082511981082746 0.1074499269831152 0.4043937120260486 -0.9082511946939681 0.107569634709001 0.4043618936368158 0.9082511946939681 -0.107569634709001 -0.4043618936368158 0.9082511981082746 -0.1074499269831152 -0.4043937120260486 -0.9082509090819749 -0.0008773896933384607 0.4184250426768125 -0.9082509125925561 -0.000752468406024658 0.4184252783545552 0.9082509090819749 0.0008773896933384607 -0.4184250426768125 0.9082509125925561 0.000752468406024658 -0.4184252783545552</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID838\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID836\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID839\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"192\">-0.4760628845307824 14.03057851338626 -4.293205956690974 12.84291939320605 -0.4520778451937232 13.27480097802665 -4.542699139165971 13.57301502275557 0.5509308441970694 14.02887609692691 4.364922551878471 12.82793928468497 4.615115580867611 13.5578951401443 0.5262263144851437 13.27311290434169 -5.460294461359973 13.36213689623786 -8.700673353099646 11.37978305347014 -5.167760694787276 12.6419962786728 -9.200497557095831 12.02549805985014 5.529599615995658 13.34448409699993 8.762464862805501 11.35038498428026 9.262826653654555 11.9958490506677 5.236482058585006 12.62448183080072 -9.850935596277633 11.70231789836429 -12.28897078609038 9.104402023815595 -9.321713719835559 11.07126571357382 -12.99216162462306 9.619703772942543 9.908805909503144 11.67203388437624 12.33621713888454 9.064756673517946 13.03968184989838 9.57981702183138 9.379208433918393 11.04116980481799 -13.3525193171996 9.309346053102276 -14.85691765236203 6.30484509550176 -12.63441802294289 8.80693061639283 -15.70518465917443 6.660142705593261 13.39616309803314 9.270430520945231 14.8880027823071 6.259267456761666 15.73641299818794 6.614399205461904 12.67792072561648 8.768150175948428 -15.85447136542427 6.437527688275801 -16.37252037394564 3.234169117888085 -15.00127260492471 6.089614567846071 -17.30591011175082 3.414281264193431 15.88339658588965 6.393267460950476 16.38777273810398 3.18595789568538 17.32115792288254 3.365996716390026 15.03012559609594 6.045417211916162 -17.34754144405634 3.280923251307002 -16.88054368036996 0.07271501916888513 -16.4134956469478 3.102928287245775 -17.84158673383741 0.07271931827509812 17.36184157354511 3.233666018167433 16.88077042213474 0.02413597414263838 17.84180938374336 0.0241319283408874 16.42781917250773 3.055684031940567 -16.88076908897763 -0.02413745264056083 -17.36185361655219 -3.23366717946566 -16.42782986626323 -3.055684287849731 -17.84181214267261 -0.02413337543565036 16.88054701756033 -0.07271698671732821 17.34751954079551 -3.280922069425896 17.84158597896712 -0.07272124314771755 16.4134818910754 -3.102935319425331 -16.3877919244592 -3.185951882083677 -15.88340587967561 -6.393257993900284 -15.03015255389675 -6.045413601251539 -17.3211786305619 -3.365991047406652 16.37250085551697 -3.234178633475433 15.85445263950981 -6.437525411168315 17.3058822788614 -3.414283177660608 15.00124014052953 -6.089609450990861 -14.8880059792257 -6.259281506746234 -13.39617422300147 -9.270432463617809 -12.67787981034289 -8.768156485934776 -15.73639731955359 -6.614409163697935 14.85687775431837 -6.30484505352637 13.35248086666035 -9.309357964262242 15.70515852596362 -6.660145524742545 12.63438003713352 -8.806939261801423 -12.33617009607184 -9.064760126010743 -9.908816153169438 -11.67204170025707 -9.379206298367013 -11.04117126199523 -13.03968789063718 -9.579816255505966 12.28893385344979 -9.104409654094303 9.850928337812352 -11.70231246863167 12.99212427033344 -9.61971454210361 9.321679514522458 -11.07126762305999 -8.762497622106514 -11.35038698937884 -5.529610632032458 -13.34446963758883 -5.236511265108912 -12.62449364339831 -9.262873717913241 -11.99585669306635 8.700643486461816 -11.37978310462293 5.460273663042221 -13.36213548128276 9.200495491064043 -12.02549128880329 5.167749101606612 -12.64198777028426 -0.5262691202224505 -13.27310290361913 -4.615130655374084 -13.55787759450954 -0.5509741484817764 -14.02888433511281 -4.364955882694339 -12.82794829884673 4.293193018885061 -12.84290598107812 0.4760213753747136 -14.03057938515311 4.542676807114459 -13.57300831123361 0.4520367491142101 -13.27478359432735</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"96\" source=\"#ID839\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID835\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID833\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID834\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 2 1 3 1 8 9 8 1 12 0 13 2 13 0 8 9 16 17 16 9 20 12 21 13 21 12 16 17 24 25 24 17 28 20 29 21 29 20 24 25 32 33 32 25 36 28 37 29 37 28 32 33 40 41 40 33 44 36 45 37 45 36 40 41 48 49 48 41 44 45 52 53 52 45 56 48 57 49 57 48 52 53 60 61 60 53 64 56 65 57 65 56 60 61 68 69 68 61 72 64 73 65 73 64 68 69 76 77 76 69 80 72 81 73 81 72 76 77 84 85 84 77 88 80 89 81 89 80 85 92 84 93 84 92 92 88 93 89 93 88</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID835\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4 0 5 1 6 2 5 1 4 0 7 3 4 4 10 5 11 6 10 5 4 4 6 7 7 8 14 9 5 10 14 9 7 8 15 11 11 12 18 13 19 14 18 13 11 12 10 15 15 16 22 17 14 18 22 17 15 16 23 19 19 20 26 21 27 22 26 21 19 20 18 23 23 24 30 25 22 26 30 25 23 24 31 27 27 28 34 29 35 30 34 29 27 28 26 31 31 32 38 33 30 34 38 33 31 32 39 35 35 36 42 37 43 38 42 37 35 36 34 39 39 40 46 41 38 42 46 41 39 40 47 43 43 44 50 45 51 46 50 45 43 44 42 47 46 48 54 49 55 50 54 49 46 48 47 51 50 52 58 53 51 54 58 53 50 52 59 55 55 56 62 57 63 58 62 57 55 56 54 59 59 60 66 61 58 62 66 61 59 60 67 63 63 64 70 65 71 66 70 65 63 64 62 67 67 68 74 69 66 70 74 69 67 68 75 71 71 72 78 73 79 74 78 73 71 72 70 75 75 76 82 77 74 78 82 77 75 76 83 79 79 80 86 81 87 82 86 81 79 80 78 83 83 84 90 85 82 86 90 85 83 84 91 87 94 88 86 89 95 90 86 89 94 88 87 91 91 92 95 93 90 94 95 93 91 92 94 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID835\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID836\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID840\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID841\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID845\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.848191442515148 1.821719920829072 0.002991490153192444 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.8481914425151498 -1.573644944485523 -0.002991724816681307 -0.8481914425151498 -1.520797224997292 0.4043999453289759 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.8481914425151427 -1.364312346924178 0.7842320876974319 -0.8481914425151373 -1.114846360512272 1.110620164947251 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.8481914425151471 -0.7894117304033426 1.361320669040196 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.8481914425151498 -0.4101776983347348 1.519250773834073 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.8481914425151365 -0.002990082172258823 1.573644644116257 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151533 0.4043988564903902 1.52079857665899 -0.8481914425151516 0.7842317873281746 1.364311746185649 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 1.110619113654815 1.114850115128093 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151462 1.361319017009239 0.7894130069727219 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151533 1.519252726234299 0.4101787496271662 -0.8481914425151462 1.573645395039409 0.002991490153192888 -0.8481914425151498 -1.519249872726272 -0.410178524350215 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.8481914425151498 -1.361317214793644 -0.7894123311418748 -0.8481914425151516 -1.1106162601468 -1.114850715866623 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.8481914425151498 -0.7842322378820725 -1.364310694893222 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.8481914425151498 -0.4043974672825356 -1.520798276289724 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.8481914425151373 0.002993367461098018 -1.573645545224054 -0.8481914425151498 0.4101781864347913 -1.519248220695314 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151453 0.7894159355730628 -1.361321570147994 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151373 1.114849664574191 -1.110619263839453 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151516 1.36431234692418 -0.7842316371435345 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151444 1.520798726843623 -0.4044001706059248 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.848191442515148 1.821719920829072 0.002991490153192444</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID845\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID842\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID846\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID846\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID844\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID847\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">17.60422062980293 3.686373823478347 17.58872307755159 -3.731830796992965 18.21721723044679 -0.02353490189120707 15.79154317552588 7.145053996837801 15.7615948579133 -7.185808789624735 15.73644944485523 -0.02353490189122628 15.20797224997292 3.181279569921278 12.90263363202708 10.11682099294002 13.64312346924178 6.169292423219798 11.14846360512272 8.736878630918373 9.134510958830333 12.39913428420196 7.894117304033426 10.70905592978288 4.743848953426131 13.83646333579298 4.101776983347349 11.95143942082804 0.0299008217226215 14.33087282880834 0.0299008217225882 12.37933786704789 -4.686070296983688 13.84864765484944 -4.043988564903902 11.96361546971739 -7.842317873281745 10.73258573666044 -9.082711528078582 12.42266290962708 -11.10619113654815 8.770154239007669 -12.86033863575761 10.15009660102933 -13.61319017009239 6.210048988185412 -15.76162339299344 7.185815878339411 -15.19252726234299 3.226739497067041 -15.73645395039408 0.02353305587178406 15.19249872726272 -3.226737724888358 12.86035665791355 -10.15009187521957 13.61317214793644 -6.210043671649416 11.106162601468 -8.770158964817435 9.082687498537359 -12.42266290962708 7.842322378820725 -10.73257746649335 4.686051523904595 -13.84865828792145 4.043974672825356 -11.9636131068125 -0.02993367461101796 -14.33087164735588 -0.02993367461098022 -12.37934495576256 -4.101781864347913 -11.95141933613647 -4.743844447887168 -13.83647042450765 -7.894159355730627 -10.70906301849755 -9.134543999449482 -12.39913428420196 -11.14849664574191 -8.7368715422037 -12.90268619664868 -10.11682217439248 -13.6431234692418 -6.169288878862472 -15.79154768106481 -7.14505990410002 -15.20798726843623 -3.181281342099942 -17.58874109970749 3.731832569171651 -17.60424916488311 -3.686367916216107 -18.21719920829072 0.02353305587178056</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"48\" source=\"#ID847\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID843\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID841\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID842\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 2 1 3 1 4 3 4 5 3 5 6 3 6 7 3 3 7 8 7 9 8 8 9 10 9 11 10 10 11 12 11 13 12 12 13 14 13 15 14 15 16 14 14 16 17 16 18 17 17 18 19 18 20 19 19 20 21 20 22 21 22 23 21 24 25 23 21 23 25 5 4 26 26 4 27 4 28 27 27 28 29 28 30 29 29 30 31 30 32 31 31 32 33 33 32 34 32 35 34 34 35 36 35 37 36 36 37 38 37 39 38 38 39 40 39 41 40 40 41 42 42 41 43 41 44 43 43 44 24 24 44 25 25 44 45 44 46 45 47 45 46</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID843\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">48 0 49 1 50 2 49 1 48 0 51 3 49 1 51 3 52 4 52 4 51 3 53 5 53 5 51 3 54 6 54 6 51 3 55 7 54 6 55 7 56 8 56 8 55 7 57 9 57 9 55 7 58 10 57 9 58 10 59 11 59 11 58 10 60 12 59 11 60 12 61 13 61 13 60 12 62 14 61 13 62 14 63 15 63 15 62 14 64 16 63 15 64 16 65 17 65 17 64 16 66 18 66 18 64 16 67 19 66 18 67 19 68 20 68 20 67 19 69 21 68 20 69 21 70 22 70 22 69 21 71 23 70 22 71 23 72 24 72 24 71 23 73 25 52 4 74 26 75 27 74 26 52 4 53 5 75 27 74 26 76 28 75 27 76 28 77 29 75 27 77 29 78 30 78 30 77 29 79 31 78 30 79 31 80 32 80 32 79 31 81 33 80 32 81 33 82 34 82 34 81 33 83 35 82 34 83 35 84 36 82 34 84 36 85 37 85 37 84 36 86 38 85 37 86 38 87 39 87 39 86 38 88 40 87 39 88 40 89 41 89 41 88 40 90 42 89 41 90 42 91 43 91 43 90 42 92 44 91 43 92 44 73 25 91 43 73 25 71 23 91 43 71 23 93 45 91 43 93 45 94 46 94 46 93 45 95 47</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID843\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID844\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID848\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID849\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID853\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-0.8481914425151489 0.4686070296983689 1.760421312057132 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.8481914425151533 -0.002990082172262154 1.821721122306145 -0.7637458525006231 -0.002990082172262376 1.918195375017604 -0.8481914425151489 0.4686070296983689 1.760421312057132 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 -0.8481914425151462 -0.4743848953426131 1.758872457939785 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950908 -0.002990082172261932 1.922789522932817 -0.7637458525006231 0.4935780408516186 1.853608473712029 -0.7637458525006231 -0.002990082172262376 1.918195375017604 0.7557056430950957 0.4947663767580937 1.858045979055305 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.8481914425151498 0.9082711528078582 1.579152064783103 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.8481914425151498 -0.9134510958830333 1.576161137822282 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950904 -0.5005419145405181 1.856497275122592 -0.7637458525006284 -0.4993512132260704 1.852060370517845 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 0.7557056430950935 0.958805428213511 1.666679818922831 -0.7637458525006284 0.9565076033327407 1.662700977447912 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151516 1.286033863575761 1.29026651708 -0.8481914425151516 1.286033863575761 1.29026651708 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 -0.8481914425151507 -1.290263363202708 1.286036566899155 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950979 -0.9639834939807769 1.663688891962011 -0.7637458525006151 -0.961683341238201 1.659710350856357 -0.7637458525006151 -0.961683341238201 1.659710350856357 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 0.7557056430950904 1.357503426230103 1.361732775672407 -0.7637458525006302 1.354253280593186 1.358484582435723 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.8481914425151489 1.576162339299345 0.9134511709753488 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 -0.8481914425151498 -1.579154317552588 0.9082695758692119 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950957 -1.361731123641439 1.357503125860831 -0.7637458525006293 -1.358481428558424 1.354253881331716 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 0.7557056430950908 1.663689943254438 0.9639850709194202 -0.7637458525006293 1.659712453441218 0.9616878467771793 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.8481914425151498 1.758874109970749 0.4743854960811421 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 -0.8481914425151498 -1.760422062980293 0.4686068419675864 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950975 -1.666678617445768 0.9588040765518135 -0.7637458525006284 -1.662698724678421 0.9565067773172586 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 0.7557056430950926 1.856498927153553 0.500544129763853 -0.7637458525006302 1.85206277347197 0.499354855203421 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.848191442515148 1.821719920829072 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 -0.848191442515148 -1.821721723044679 -0.002991724816678865 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950979 -1.858045828870667 0.4947647998194518 -0.7637458525006231 -1.853605019465471 0.49357575053597 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 -0.7637458525006293 1.918198528894883 0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.7637458525006293 1.853609675189086 -0.4935767642822391 -0.8481914425151444 1.760424916488311 -0.4686060910444203 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 -0.8481914425151498 -1.758872307755159 -0.4743852708041905 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006275 -1.918197477602462 -0.002991490153192444 0.7557056430950961 -1.922788471640386 -0.002991490153192444 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006293 1.853609675189086 -0.4935767642822391 0.7557056430950979 1.858045828870668 -0.494764837365608 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.7637458525006302 1.662703380402031 -0.9565073029634728 -0.8481914425151444 1.579154768106481 -0.9082703267923753 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 -0.8481914425151462 -1.57615948579133 -0.9134502698675511 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006275 -1.852058117748358 -0.4993544046495226 0.7557056430950975 -1.856495172537732 -0.500543453933006 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.7637458525006302 1.662703380402031 -0.9565073029634728 0.7557056430950979 1.666683273169378 -0.9588051278442431 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.763745852500632 1.358484282066444 -1.354253430777819 -0.8481914425151516 1.290268619664868 -1.28603671708379 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.7637458525006249 -1.354250577269795 -1.358484432251092 -0.8481914425151373 -1.286035665791355 -1.290265916341471 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.7637458525006151 -1.659706295871281 -0.9616881471464458 0.7557056430950979 -1.663685738084727 -0.9639850709194211 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.763745852500632 1.358484282066444 -1.354253430777819 0.7557056430950975 1.361733376410932 -1.357502525122301 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.8481914425151533 0.9134543999449483 -1.576161137822283 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.8481914425151471 -0.908268749853736 -1.579152064783104 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 -0.7637458525006249 -1.354250577269795 -1.358484432251092 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.9616870958540129 -1.659710651225625 -0.7637458525006284 0.9616870958540129 -1.659710651225625 0.7557056430950904 0.9639877742428082 -1.663690093439073 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.8481914425151498 0.4743844447887169 -1.758873359047583 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 -0.8481914425151444 -0.4686051523904595 -1.760422663718828 0.7557056430950926 -0.9588031003517052 -1.6666787676304 -0.7637458525006196 -0.956506702224935 -1.66269977597085 -0.7637458525006196 -0.956506702224935 -1.66269977597085 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006284 0.4993573332498595 -1.852061121441011 -0.7637458525006284 0.4993573332498595 -1.852061121441011 0.7557056430950957 0.5005447305023836 -1.856496674384062 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 -0.7637458525006302 0.002993367461105123 -1.918194924463705 -0.8481914425151427 0.002993367461101792 -1.82172097212151 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 -0.4947659262041917 -1.858045979055303 -0.7637458525006213 -0.4935766140976109 -1.853608023158129 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705 0.7557056430950979 0.002993367461114227 -1.922789522932818 -0.7637458525006302 0.002993367461105123 -1.918194924463705</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID853\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID850\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID854\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">-0.7524585421170914 0.1693892527612725 0.6364852107032804 -0.7524585417620626 0.1695187983675101 0.6364507207391202 -0.752458751757041 -0.001116951969874288 0.6586384283675927 -0.7524587513418458 -0.0009841473680792699 0.6586386406695468 0.7524585417620626 -0.1695187983675101 -0.6364507207391202 0.752458751757041 0.001116951969874288 -0.6586384283675927 0.7524587513418458 0.0009841473680792699 -0.6586386406695468 0.7524585421170914 -0.1693892527612725 -0.6364852107032804 -0.7524565325827145 -0.1715493318107424 0.6359087932470239 -0.7524565358976068 -0.1714184440870872 0.6359440845009378 0.7524565325827145 0.1715493318107424 -0.6359087932470239 0.7524565358976068 0.1714184440870872 -0.6359440845009378 -0.003023523763771853 0.2573140904666033 0.9663230914923821 -0.003023428365700127 -0.001557416609379177 0.9999942166504876 -0.003023523763512286 0.2573134050059734 0.9663232740176982 -0.003023428365418651 -0.001558199390591175 0.9999942154310586 0.003023428365700127 0.001557416609379177 -0.9999942166504876 0.003023523763512286 -0.2573134050059734 -0.9663232740176982 0.003023428365418651 0.001558199390591175 -0.9999942154310586 0.003023523763771853 -0.2573140904666033 -0.9663230914923821 -0.7524589655183874 0.3284673404373135 0.5708894038927644 -0.752458965034369 0.3283526619799974 0.5709553706815058 0.752458965034369 -0.3283526619799974 -0.5709553706815058 0.7524589655183874 -0.3284673404373135 -0.5708894038927644 -0.7524536793556657 -0.3302908594592792 0.5698433193271392 -0.7524536801024093 -0.3301728027602695 0.5699117296720337 0.7524536793556657 0.3302908594592792 -0.5698433193271392 0.7524536801024093 0.3301728027602695 -0.5699117296720337 -0.003023637205282373 -0.2603221403258926 0.9655170847137802 -0.00302363720643009 -0.2603227088345894 0.9655169314326214 0.003023637205282373 0.2603221403258926 -0.9655170847137802 0.00302363720643009 0.2603227088345894 -0.9655169314326214 -0.003023769458048854 0.4986487925159631 0.8667988454887539 -0.003023769456780855 0.4986480616163927 0.8667992659575149 0.003023769458048854 -0.4986487925159631 -0.8667988454887539 0.003023769456780855 -0.4986480616163927 -0.8667992659575149 -0.7524604292449857 0.4650302144511048 0.4664227718154544 -0.7524604277183468 0.4649355000609762 0.4665171867155301 0.7524604277183468 -0.4649355000609762 -0.4665171867155301 0.7524604292449857 -0.4650302144511048 -0.4664227718154544 -0.7524523992911886 -0.4665217526188665 0.4649439118155596 -0.7524523999108818 -0.4664284121355344 0.4650375492592817 0.7524523992911886 0.4665217526188665 -0.4649439118155596 0.7524523999108818 0.4664284121355344 -0.4650375492592817 -0.003024220270688767 -0.5013448265809373 0.8652422891608365 -0.003024220271891797 -0.5013452460737722 0.8652420460951814 0.003024220271891797 0.5013452460737722 -0.8652420460951814 0.003024220270688767 0.5013448265809373 -0.8652422891608365 -0.003023789150446498 0.7060009776560012 0.7082044028724647 -0.003023789151712843 0.7060003159894974 0.7082050624797142 0.003023789150446498 -0.7060009776560012 -0.7082044028724647 0.003023789151712843 -0.7060003159894974 -0.7082050624797142 -0.7524618457279603 0.5699021833508379 0.3301706712226562 -0.7524618458997252 0.5698351311725082 0.3302863814128411 0.7524618458997252 -0.5698351311725082 -0.3302863814128411 0.7524618457279603 -0.5699021833508379 -0.3301706712226562 -0.7524479855813711 -0.5709672528893324 0.3283571609125437 -0.75244799164648 -0.5709000097533534 0.3284740457491269 0.7524479855813711 0.5709672528893324 -0.3283571609125437 0.75244799164648 0.5709000097533534 -0.3284740457491269 -0.003024450878027729 -0.7082033825184431 0.7060019983585898 -0.003024450877476187 -0.7082039104336583 0.7060014687968891 0.003024450878027729 0.7082033825184431 -0.7060019983585898 0.003024450877476187 0.7082039104336583 -0.7060014687968891 -0.003023198803451891 0.8652412822109276 0.5013465705746725 -0.003023198805660467 0.8652409285580689 0.5013471809205194 0.003023198803451891 -0.8652412822109276 -0.5013465705746725 0.003023198805660467 -0.8652409285580689 -0.5013471809205194 -0.7524650076588183 0.6359345265441972 0.1714167150485116 -0.7524650029900875 0.6358998698302749 0.1715452559092408 0.7524650029900875 -0.6358998698302749 -0.1715452559092408 0.7524650076588183 -0.6359345265441972 -0.1714167150485116 -0.7524485695931888 -0.6364956983395131 0.1693941442685062 -0.7524485617789981 -0.6364614586825991 0.1695227816204527 0.7524485695931888 0.6364956983395131 -0.1693941442685062 0.7524485617789981 0.6364614586825991 -0.1695227816204527 -0.003024642282712115 -0.8667991712589429 0.4986482209372369 -0.00302464228433073 -0.8667995384389017 0.4986475826685202 0.003024642282712115 0.8667991712589429 -0.4986482209372369 0.00302464228433073 0.8667995384389017 -0.4986475826685202 -0.003021941420137833 0.9655175454494209 0.2603204511738924 -0.003021941424746023 0.9655173587289867 0.2603211437110447 0.003021941420137833 -0.9655175454494209 -0.2603204511738924 0.003021941424746023 -0.9655173587289867 -0.2603211437110447 -0.7524649176522377 0.6586315962545964 0.0009839297400806876 -0.7524649227682221 0.6586313785893013 0.001116754659718303 0.7524649227682221 -0.6586313785893013 -0.001116754659718303 0.7524649176522377 -0.6586315962545964 -0.0009839297400806876 -0.7524562762274313 -0.6586412570388478 -0.001116643288669679 -0.7524562723022982 -0.6586414735750391 -0.0009836461920094291 0.7524562762274313 0.6586412570388478 0.001116643288669679 0.7524562723022982 0.6586414735750391 0.0009836461920094291 -0.00302424272530191 -0.966322583003932 0.2573159915989429 -0.003024242721690821 -0.9663227607441889 0.2573153241136048 0.00302424272530191 0.966322583003932 -0.2573159915989429 0.003024242721690821 0.9663227607441889 -0.2573153241136048 -0.003021067751355109 0.9999942264063256 0.001555732514273759 -0.003021067751511359 0.9999942251911452 0.001556513412098616 0.003021067751355109 -0.9999942264063256 -0.001555732514273759 0.003021067751511359 -0.9999942251911452 -0.001556513412098616 -0.7524581266761962 0.6364513097928596 -0.1695184292692185 -0.7524581327993718 0.6364858961559734 -0.1693884954139764 0.7524581266761962 -0.6364513097928596 0.1695184292692185 0.7524581327993718 -0.6364858961559734 0.1693884954139764 -0.7524554835789596 -0.6359095448500886 -0.171551146893593 -0.7524554877062412 -0.6359441915615974 -0.1714226479781157 0.7524554877062412 0.6359441915615974 0.1714226479781157 0.7524554835789596 0.6359095448500886 0.171551146893593 -0.003022939996113761 -0.9999942166299063 -0.001558377528098246 -0.003022939999784108 -0.9999942178488096 -0.001557595167271352 0.003022939996113761 0.9999942166299063 0.001558377528098246 0.003022939999784108 0.9999942178488096 0.001557595167271352 -0.003022243473153594 0.9663240542030337 -0.2573104900951403 -0.00302224347973812 0.966323868653908 -0.2573111869198347 0.003022243473153594 -0.9663240542030337 0.2573104900951403 0.00302224347973812 -0.966323868653908 0.2573111869198347 -0.752453954284854 0.5708942615132673 -0.3284703774350259 -0.7524539551700281 0.5709604990173309 -0.3283552251919589 0.752453954284854 -0.5708942615132673 0.3284703774350259 0.7524539551700281 -0.5709604990173309 0.3283552251919589 -0.7524527067090119 -0.5698454450886161 -0.3302894077593754 -0.75245270637364 -0.5699112482350072 -0.3301758528514779 0.75245270637364 0.5699112482350072 0.3301758528514779 0.7524527067090119 0.5698454450886161 0.3302894077593754 -0.003022956207305731 -0.9655159878608529 -0.2603262163533472 -0.003022956203584093 -0.9655161881351868 -0.2603254735608669 0.003022956207305731 0.9655159878608529 0.2603262163533472 0.003022956203584093 0.9655161881351868 0.2603254735608669 -0.003023860053777756 0.8667994464540276 -0.4986477473100291 -0.003023860056238176 0.866799054464471 -0.4986484287048933 0.003023860053777756 -0.8667994464540276 0.4986477473100291 0.003023860056238176 -0.866799054464471 0.4986484287048933 -0.7524520034872866 0.4664284183759522 -0.4650381844314248 -0.7524520059884629 0.4665225652234435 -0.4649437329626844 0.7524520034872866 -0.4664284183759522 0.4650381844314248 0.7524520059884629 -0.4665225652234435 0.4649437329626844 -0.7524541226695466 -0.4649429710307974 -0.4665199105790212 -0.7524541205941244 -0.4650354160681895 -0.4664277631136556 0.7524541205941244 0.4650354160681895 0.4664277631136556 0.7524541226695466 0.4649429710307974 0.4665199105790212 -0.003023625947355671 -0.8652411650582806 -0.5013467701847889 -0.003023625947147205 -0.8652415864938384 -0.5013460428563862 0.003023625947355671 0.8652411650582806 0.5013467701847889 0.003023625947147205 0.8652415864938384 0.5013460428563862 -0.003024498956473901 0.7082035258586333 -0.7060018543654559 -0.003024498957837877 0.7082029736233368 -0.7060024083224629 0.003024498956473901 -0.7082035258586333 0.7060018543654559 0.003024498957837877 -0.7082029736233368 0.7060024083224629 -0.7524548626014672 0.3301727897440394 -0.5699101759576202 -0.7524548560904877 0.3302906965735977 -0.5698418599074405 0.7524548626014672 -0.3301727897440394 0.5699101759576202 0.7524548560904877 -0.3302906965735977 0.5698418599074405 -0.7524550849804075 -0.3283542750975831 -0.5709595564593596 -0.7524550849515038 -0.3284703658453776 -0.5708927779294718 0.7524550849515038 0.3284703658453776 0.5708927779294718 0.7524550849804075 0.3283542750975831 0.5709595564593596 -0.003023436767652145 -0.7060015557338235 -0.7082038280972031 -0.003023436769444781 -0.7060023070751241 -0.7082030790915156 0.003023436767652145 0.7060015557338235 0.7082038280972031 0.003023436769444781 0.7060023070751241 0.7082030790915156 -0.003024066201718197 0.5013460802322781 -0.8652415632985611 -0.003024066204165313 0.5013465000752155 -0.86524132002923 0.003024066204165313 -0.5013465000752155 0.86524132002923 0.003024066201718197 -0.5013460802322781 0.8652415632985611 -0.7524593774133471 0.1714196849035536 -0.6359403879061972 -0.7524593773351924 0.171545207486858 -0.6359065397121069 0.7524593774133471 -0.1714196849035536 0.6359403879061972 0.7524593773351924 -0.171545207486858 0.6359065397121069 -0.7524551621628105 -0.169389900494532 -0.6364890341121294 -0.7524551617968616 -0.1695201961406735 -0.6364543444628897 0.7524551617968616 0.1695201961406735 0.6364543444628897 0.7524551621628105 0.169389900494532 0.6364890341121294 -0.00302345619967725 -0.4986502339698029 -0.8667980173457189 -0.003023456200964241 -0.498649628175152 -0.8667983658460503 0.003023456200964241 0.498649628175152 0.8667983658460503 0.00302345619967725 0.4986502339698029 0.8667980173457189 -0.00302317041934693 0.2603211190972351 -0.9655173615179473 -0.003023170420924781 0.260321986899808 -0.9655171275420972 0.003023170420924781 -0.260321986899808 0.9655171275420972 0.00302317041934693 -0.2603211190972351 0.9655173615179473 -0.7524572925624328 0.0009838075905523819 -0.6586403077494104 -0.7524572962038846 0.001116597773462055 -0.6586400918551432 0.7524572925624328 -0.0009838075905523819 0.6586403077494104 0.7524572962038846 -0.001116597773462055 0.6586400918551432 -0.003023757163787752 -0.2573148938061689 -0.9663228768471408 -0.003023757164135984 -0.257314121269845 -0.9663230825597305 0.003023757163787752 0.2573148938061689 0.9663228768471408 0.003023757164135984 0.257314121269845 0.9663230825597305 -0.003023376607918181 0.00155726701169435 -0.9999942170399491 -0.003023376605318863 0.001558049788827533 -0.9999942158206505 0.003023376607918181 -0.00155726701169435 0.9999942170399491 0.003023376605318863 -0.001558049788827533 0.9999942158206505</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID854\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID852\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID855\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"384\">-4.040246963321643 6.795564893228256 0.9890827628466336 6.463093582785248 0.8935679007835635 7.468892618247301 -3.696624459452266 5.823858262090928 -0.8551161998463231 7.471883329228509 3.729258442558688 5.811233706692518 4.07507250558566 6.782456078829257 -0.9529481975090883 6.466222128749999 -7.554321652554542 2.111785202383856 7.520717237189627 -2.106470744697186 7.63609149265897 1.831723202669839 -7.669972009859915 -1.835835337729923 -2.241789872750055 7.291664938508001 -5.90273736965205 4.562006538717816 -1.735763312451184 6.364938643819828 -6.629265165315137 5.393041111258648 2.27580128791188 7.285250498133096 5.926144752668277 4.543403046768413 6.654145913192843 5.373626057838043 1.768131448370683 6.359083708982839 7.668686127052055 -1.839057708593067 -7.634813705495054 1.834989415906823 -7.522186994038186 -2.10322894330467 7.555789239779621 2.108606428206098 7.598413731494718 1.926247716636706 -7.632211106838805 -1.930765085388588 7.562014832044193 -2.012872824046142 -7.595724971270944 2.017799588171895 -4.81941465461502 6.4734078982287 -7.324240456616781 3.029240377010939 -3.995200295744808 5.700833126747577 -8.324555039492182 3.660162647609309 4.845342759447187 6.461479132204169 7.337817537611757 3.009063783125704 8.338854610045059 3.639262429833399 4.020265958111306 5.689488510288188 -7.562169654384618 -2.01252978617579 7.595891934628797 2.017484888043871 -7.598253173295223 1.926593136966556 7.632062042614949 -1.931080970865312 7.590162806256027 1.94624081239991 -7.623955884291689 -1.950882992818789 7.570534444041288 -1.992951860281939 -7.604280525974141 1.99775209317084 -6.718836162952989 5.323810449893363 -8.053104492918207 1.49712621750965 -5.675786398794395 4.737275524689899 -9.221774272756345 1.91194394298594 6.737080334535841 5.309500309403943 8.058934044048545 1.477726111620418 9.227804990882156 1.892125520133433 5.693691067492606 4.723354330334615 7.623905935675444 -1.950977619621975 -7.590091221085666 1.946343936349168 -7.570585176680469 -1.992873761941959 7.604353213083794 1.997658685379888 7.586171209310034 1.955863353392116 -7.619941292962327 -1.960561098109789 7.574615404368769 -1.983378289115803 -7.608357971913602 1.988098722674424 -8.039325504952567 4.035248474488306 -8.274409480860204 0.07154880520611728 -6.858172886042456 3.642920142785312 -9.530272482541513 0.2746756156189894 8.051367441154209 4.019989372762995 8.274442799196638 0.05352251049803518 9.530305767400433 0.2564839307956014 6.870173671642146 3.627808949292373 7.619919383937229 -1.960542415976749 -7.586121691995373 1.955936271722545 -7.574637547254818 -1.98328952605131 7.608407674373749 1.988121343208024 7.583544916727871 1.962188646121968 -7.617277576123059 -1.966904209989248 7.577301328813645 -1.977040668559802 -7.611019100226375 1.981758278354976 -8.907815301433299 2.678985865460446 -8.123357840021573 -1.240750832424818 -7.650419727648758 2.481813686900803 -9.405511470881637 -1.240742243288395 8.915288502883657 2.663096804961726 8.119140709179817 -1.257537690235669 9.401272865435805 -1.257546018046028 7.657930885613808 2.465945293105961 7.617292804392591 -1.966902198835446 -7.583479377394854 1.962214253446523 -7.577286260901328 -1.977014389700738 7.611084735482613 1.981768564680788 7.581459565158655 1.967310797641272 -7.615123097651352 -1.971918595009516 7.579461129931657 -1.971921953343625 -7.613120069812265 1.976745737194301 -8.119346403993839 1.257431712139362 -8.915537713431498 -2.663206671196163 -7.658166793412561 -2.466041118855443 -9.40150003157304 1.257442113621577 8.123108074390222 1.240849617657296 8.907523179620583 -2.678883862796719 9.4052402334673 1.240842837764527 7.650148767210773 -2.481713396774992 7.613189535885248 1.976618480108285 -7.57943764585014 -1.972050019822055 7.615146667941806 -1.972047747371725 -7.581390237913452 1.967188101395981 7.581436772792678 -1.967275288237997 -7.615098313537803 1.971965794024384 -7.613142864168738 -1.976698898278629 7.579485914074268 1.97196708429726 -8.274749853594916 -0.05359064644060455 -8.051667980628185 -4.020064251666414 -6.870443660400792 -3.627887047345771 -9.530625737779101 -0.25656725043594 8.274163615890476 -0.07144692779477511 8.039062677012478 -4.035156716714083 9.530005361959193 -0.2745723376109419 6.857934007589495 -3.64281816651194 7.615146760673897 1.972057399417009 -7.581436910305003 -1.967173248538126 7.613142749986364 -1.976607435662339 -7.579437553117938 1.972059733917022 7.583505855838784 -1.96227509970517 -7.617263129816307 1.966838229966558 -7.611058272200855 -1.981825946153671 7.577315792308811 1.976949996703046 -8.058966808118642 -1.477763534671876 -6.737129216083037 -5.309523955305282 -5.693760167031574 -4.723377340212994 -9.227871799659241 -1.89215435520369 8.052840575659085 -1.49704295134452 6.718603029494449 -5.323738691458113 9.221486487586468 -1.911869754300307 5.67558565569558 -4.737197305973607 7.617293560270303 1.966914482853697 -7.58353067722906 -1.962188734427586 7.611033394817669 -1.981754273956296 -7.577285369609861 1.977050570888327 7.586122794998227 -1.955846374730674 -7.619918079974323 1.960632188041886 -7.608406550904774 -1.988032733024195 7.574638852779416 1.983381936755945 -7.337822183067741 -3.009007241083356 -4.845341235349157 -6.46142968527283 -4.020258889731459 -5.689438975694102 -8.338839386390088 -3.639205298984838 7.324198181243452 -3.029144275291806 4.819358432886512 -6.47331750582667 8.324474868783517 -3.660076593319374 3.995128624001985 -5.700755173353182 7.619942024878952 1.960505775974488 -7.586170583499415 -1.95591014113808 7.60835859070232 -1.988135387999505 -7.574614745364233 1.983312116988463 -7.623909739917847 1.950936307139087 7.590088410733276 -1.946377631840885 7.570581331427527 1.992838049551194 -7.604356035217696 -1.99769600445393 -5.926219203160268 -4.543505385850812 -2.275894023815066 -7.285346259589042 -1.768164791791738 -6.359189590593228 -6.654222092787895 -5.373730949672475 5.902663718800884 -4.56193950172254 2.241735351137526 -7.291601797073808 6.629208755942161 -5.392962666056423 1.735701167858861 -6.364888541509357 -7.590174738516678 -1.946265886184374 7.623938984367359 1.950861077277974 -7.570551389136386 1.992910516343811 7.604268587691806 -1.997775046101012 -7.632050366310129 1.931128964526406 7.59825903017894 -1.926544287206376 7.562181491525478 2.012562850542992 -7.59588595364065 -2.017442116402822 -3.729273224583506 -5.811255341959331 0.8550672826260229 -7.471889629038476 0.9528974804567071 -6.466230103660284 -4.075150813204585 -6.782473277036217 3.696609987697176 -5.823790531437526 -0.8935970025749593 -7.468813907025647 4.040236589761045 -6.795486286170825 -0.9891114730239413 -6.463016631894419 7.595726351403361 -2.01783708517383 -7.562012115608883 2.012838846303647 -7.598412396963864 -1.926287761518784 7.632213683143744 1.930717081479863 7.522201914891844 2.103271019508454 -7.555790432103792 -2.108548548224249 7.634813601656944 -1.834968467158941 -7.668671507496315 1.83911283206964 7.554320332815763 -2.111817851860591 -7.52070372868721 2.106484885781963 -7.636091856533377 -1.831723312270308 7.669984821502206 1.835824551549613</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"192\" source=\"#ID855\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID851\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID849\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID850\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 2 1 2 3 8 9 8 3 12 13 14 15 14 13 20 1 21 0 21 1 8 9 24 25 24 9 13 28 15 29 15 28 12 14 32 33 32 14 36 20 37 21 37 20 24 25 40 41 40 25 44 45 28 29 28 45 32 33 48 49 48 33 52 36 53 37 53 36 40 41 56 57 56 41 44 60 45 61 45 60 48 49 64 65 64 49 68 52 69 53 69 52 56 57 72 73 72 57 60 76 61 77 61 76 64 65 80 81 80 65 84 68 85 69 85 68 72 73 88 89 88 73 76 92 77 93 77 92 80 81 96 97 96 81 84 85 100 101 100 85 104 88 105 89 105 88 93 92 108 109 108 92 97 112 96 113 96 112 100 101 116 117 116 101 120 104 121 105 121 104 108 109 124 125 124 109 112 128 113 129 113 128 116 117 132 133 132 117 136 120 137 121 137 120 124 125 140 141 140 125 128 144 129 145 129 144 132 133 148 149 148 133 152 136 153 137 153 136 140 141 156 157 156 141 160 145 161 144 161 145 148 149 164 165 164 149 168 152 169 153 169 152 172 173 157 156 157 173 176 160 177 161 177 160 164 165 180 181 180 165 181 168 180 169 180 168 172 184 173 185 173 184 176 177 188 189 188 177 184 188 185 189 185 188</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID851\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4 0 5 1 6 2 5 1 4 0 7 3 6 4 10 5 11 6 10 5 6 4 5 7 16 8 17 9 18 10 17 9 16 8 19 11 4 12 22 13 7 14 22 13 4 12 23 15 11 16 26 17 27 18 26 17 11 16 10 19 30 20 18 21 31 22 18 21 30 20 16 23 17 24 34 25 35 26 34 25 17 24 19 27 23 28 38 29 22 30 38 29 23 28 39 31 27 32 42 33 43 34 42 33 27 32 26 35 46 36 30 37 31 38 30 37 46 36 47 39 35 40 50 41 51 42 50 41 35 40 34 43 39 44 54 45 38 46 54 45 39 44 55 47 43 48 58 49 59 50 58 49 43 48 42 51 62 52 46 53 63 54 46 53 62 52 47 55 51 56 66 57 67 58 66 57 51 56 50 59 55 60 70 61 54 62 70 61 55 60 71 63 59 64 74 65 75 66 74 65 59 64 58 67 78 68 63 69 79 70 63 69 78 68 62 71 67 72 82 73 83 74 82 73 67 72 66 75 71 76 86 77 70 78 86 77 71 76 87 79 75 80 90 81 91 82 90 81 75 80 74 83 94 84 79 85 95 86 79 85 94 84 78 87 83 88 98 89 99 90 98 89 83 88 82 91 86 92 102 93 103 94 102 93 86 92 87 95 90 96 106 97 91 98 106 97 90 96 107 99 94 100 110 101 111 102 110 101 94 100 95 103 114 104 98 105 115 106 98 105 114 104 99 107 103 108 118 109 119 110 118 109 103 108 102 111 107 112 122 113 106 114 122 113 107 112 123 115 111 116 126 117 127 118 126 117 111 116 110 119 130 120 115 121 131 122 115 121 130 120 114 123 119 124 134 125 135 126 134 125 119 124 118 127 123 128 138 129 122 130 138 129 123 128 139 131 127 132 142 133 143 134 142 133 127 132 126 135 146 136 131 137 147 138 131 137 146 136 130 139 135 140 150 141 151 142 150 141 135 140 134 143 139 144 154 145 138 146 154 145 139 144 155 147 143 148 158 149 159 150 158 149 143 148 142 151 147 152 162 153 146 154 162 153 147 152 163 155 151 156 166 157 167 158 166 157 151 156 150 159 155 160 170 161 154 162 170 161 155 160 171 163 174 164 159 165 158 166 159 165 174 164 175 167 163 168 178 169 162 170 178 169 163 168 179 171 167 172 182 173 183 174 182 173 167 172 166 175 171 176 182 177 170 178 182 177 171 176 183 179 186 180 174 181 187 182 174 181 186 180 175 183 178 184 190 185 191 186 190 185 178 184 179 187 190 188 187 189 191 190 187 189 190 188 186 191</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID851\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID852\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID856\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID857\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID861\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.7557056430950957 0.4947663767580937 1.858045979055305 0.7557056430950908 -0.002990082172261932 1.922789522932817 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.7557056430950904 -0.5005419145405181 1.856497275122592 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151333 0.9220519445225366 1.603022710678486 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.4757403116530008 1.787046344116789 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151476 1.785497189630175 0.4815196415974014 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.8481914425151387 -1.366913394578432 -0.002991724816679531 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.8481914425151391 -1.319562582832752 -0.356672658255204 0.8481914425151405 -1.182288121501415 -0.6860479829423405 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.8481914425151476 -0.9644378024947854 -0.9686708314605972 0.8481914425151333 -0.6808676644055873 -1.185277922077488 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151351 -0.3508928026645748 -1.321112338057901 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.8481914425151387 0.002993367461098018 -1.366914445870862 0.8481914425151409 0.356674422924643 -1.319564084679085 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.8481914425151387 0.6860518126504815 -1.182286394378136 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.8481914425151356 0.9686716574760796 -0.9644398299873291 0.8481914425151387 1.309760632593005 -1.305527979088765 0.8481914425151351 1.18527964920076 -0.6808666131131529 0.8481914425151387 1.321113689719592 -0.3508940792339668 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151333 1.366916248086444 0.002991490153193777 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.785497189630175 0.4815196415974014 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.8481914425151391 -1.309757328531092 1.305526927796336 0.8481914425151391 -1.32110843325745 0.3508942669647571 0.8481914425151387 -1.185278748092962 0.6808666131131532 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151333 -0.9686702307220684 0.9644396047103774 0.8481914425151351 -0.6860480580346522 1.182286995116669 0.8481914425151351 -0.4815191534973343 1.785497790368708 0.8481914425151409 -0.35666972965487 1.31956378430982 0.8481914425151333 -0.002990082172258823 1.849284958504994 0.8481914425151333 -0.002990082172260378 1.366914746240126 0.8481914425151387 0.3508941918724347 1.321112037688635 0.8481914425151333 0.4757403116530008 1.787046344116789 0.848191442515148 0.680868640605695 1.185278447723705 0.8481914425151333 0.9220519445225366 1.603022710678486 0.8481914425151387 0.9644406560028058 0.9686694797989038 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151387 1.18228864714763 0.6860482082192899 0.8481914425151409 1.319564835602249 0.3566724329782558 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151333 0.9220519445225366 1.603022710678486 0.7557056430950935 0.958805428213511 1.666679818922831 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.7557056430950979 -0.9639834939807769 1.663688891962011 0.8481914425151409 -0.9272324132439298 1.600031933902301 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.8481914425151391 -1.309757328531092 1.305526927796336 0.7557056430950957 -1.361731123641439 1.357503125860831 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950975 -1.666678617445768 0.9588040765518135 0.8481914425151351 -1.603022410309207 0.9220517192455855 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950979 -1.858045828870667 0.4947647998194518 0.8481914425151351 -1.787042739685603 0.4757412127607944 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.7557056430950961 -1.922788471640386 -0.002991490153192444 0.8481914425151409 -1.84927970204285 -0.002991724816681307 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151476 -1.785496739076283 -0.4815194914127678 0.7557056430950975 -1.856495172537732 -0.500543453933006 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151418 -1.600031333163775 -0.9272320377823453 0.7557056430950979 -1.663685738084727 -0.9639850709194211 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151444 -1.305527828904129 -1.30975747871571 0.7557056430950975 -1.357500572722076 -1.361730823272183 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.9220524701687543 -1.603022560493851 0.7557056430950926 -0.9588031003517052 -1.6666787676304 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.7557056430950979 -0.4947659262041917 -1.858045979055303 0.8481914425151351 -0.4757417384070128 -1.787046644486055 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151387 0.002993367461101792 -1.849285859612791 0.7557056430950979 0.002993367461114227 -1.922789522932818 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.4815205427051927 -1.785498691476499 0.7557056430950957 0.5005447305023836 -1.856496674384062 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151351 0.9272333143517251 -1.600031483348404 0.7557056430950904 0.9639877742428082 -1.663690093439073 0.8481914425151387 1.309760632593005 -1.305527979088765 0.7557056430950975 1.361733376410932 -1.357502525122301 0.7557056430950975 1.361733376410932 -1.357502525122301 0.8481914425151387 1.309760632593005 -1.305527979088765 0.84819144251514 1.603025714371136 -0.9220525452610677 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.7557056430950979 1.666683273169378 -0.9588051278442431 0.84819144251514 1.603025714371136 -0.9220525452610677 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.7557056430950979 1.858045828870668 -0.494764837365608 0.7557056430950979 1.858045828870668 -0.494764837365608 0.8481914425151405 1.787046043747516 -0.4757406871145802 0.8481914425151409 1.849288112382276 0.00299149015319311 0.7557056430950908 1.922786669424786 0.002991490153192444 0.7557056430950908 1.922786669424786 0.002991490153192444 0.8481914425151409 1.849288112382276 0.00299149015319311 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950926 1.856498927153553 0.500544129763853 0.7557056430950926 1.856498927153553 0.500544129763853 0.8481914425151476 1.785497189630175 0.4815196415974014 0.7557056430950908 1.663689943254438 0.9639850709194202 0.8481914425151476 1.60003328556399 0.9272330890747753 0.8481914425151476 1.60003328556399 0.9272330890747753 0.7557056430950908 1.663689943254438 0.9639850709194202 0.7557056430950904 1.357503426230103 1.361732775672407 0.8481914425151351 1.305526777611701 1.309757628900341 0.8481914425151351 1.305526777611701 1.309757628900341 0.7557056430950904 1.357503426230103 1.361732775672407</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID861\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID858\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID862\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"576\">0.6221941321218698 0.2013597797845118 0.7565240915121251 0.6221918684034155 -0.001303781729081092 0.7828637040033659 0.6221941339063147 0.2014863019961419 0.7564904030062049 0.6221918691918711 -0.001174692367902513 0.7828639077191937 -0.6221918684034155 0.001303781729081092 -0.7828637040033659 -0.6221941339063147 -0.2014863019961419 -0.7564904030062049 -0.6221918691918711 0.001174692367902513 -0.7828639077191937 -0.6221941321218698 -0.2013597797845118 -0.7565240915121251 0.6221901218932683 -0.2038805206493446 0.7558519600544753 0.6221901229061849 -0.2037543408673254 0.755885983158643 -0.6221901218932683 0.2038805206493446 -0.7558519600544753 -0.6221901229061849 0.2037543408673254 -0.755885983158643 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 0.622195876340844 0.3903006052975382 0.678629301584322 0.6221958765038165 0.3904133786148501 0.6785644295571243 -0.622195876340844 -0.3903006052975382 -0.678629301584322 -0.6221958765038165 -0.3904133786148501 -0.6785644295571243 0.6221894242877948 -0.392561562997384 0.6773298602316846 0.6221894238249361 -0.3924488889485895 0.677395150885664 -0.6221894238249361 0.3924488889485895 -0.677395150885664 -0.6221894242877948 0.392561562997384 -0.6773298602316846 0.6221894259644839 -0.5544921390400044 0.5526470717925018 0.6221894262295475 -0.5543996744161857 0.5527398293007061 -0.6221894259644839 0.5544921390400044 -0.5526470717925018 -0.6221894262295475 0.5543996744161857 -0.5527398293007061 0.6221935983998548 -0.6785663445167995 0.3904136808557666 0.6221936044128955 -0.6786309659335652 0.3903013332077736 -0.6221935983998548 0.6785663445167995 -0.3904136808557666 -0.6221936044128955 0.6786309659335652 -0.3903013332077736 0.6222050039132737 -0.7564827860628643 0.2014813328719305 0.6222050124535287 -0.7565155769512322 0.2013581493455097 -0.6222050039132737 0.7564827860628643 -0.2014813328719305 -0.6222050124535287 0.7565155769512322 -0.2013581493455097 0.6222055415468412 -0.7828530407950558 -0.001174983547447636 0.6222055340692866 -0.7828528419120427 -0.001304332699868602 -0.6222055415468412 0.7828530407950558 0.001174983547447636 -0.6222055340692866 0.7828528419120427 0.001304332699868602 0.6221917009441136 -0.7558510087740555 -0.203879228494502 0.6221917107911614 -0.7558845909667217 -0.2037546567856542 -0.6221917009441136 0.7558510087740555 0.203879228494502 -0.6221917107911614 0.7558845909667217 0.2037546567856542 0.6221815841653294 -0.6773359418068746 -0.392563495834897 0.6221815865170676 -0.6773995833087608 -0.3924536634205645 -0.6221815841653294 0.6773359418068746 0.392563495834897 -0.6221815865170676 0.6773995833087608 0.3924536634205645 0.6221798007864562 -0.5526539130480859 -0.554496120713179 0.6221798004943125 -0.5527449429825729 -0.5544053786391775 -0.6221798007864562 0.5526539130480859 0.554496120713179 -0.6221798004943125 0.5527449429825729 0.5544053786391775 0.6221838439383094 -0.3903078065454426 -0.678636191557623 0.622183838657477 -0.3904185239302142 -0.6785725068742466 -0.6221838439383094 0.3903078065454426 0.678636191557623 -0.622183838657477 0.3904185239302142 0.6785725068742466 0.6221885190971537 -0.2013628297434559 -0.7565278960497087 0.6221885184214142 -0.201487412154011 -0.7564947258825042 -0.6221885184214142 0.201487412154011 0.7564947258825042 -0.6221885190971537 0.2013628297434559 0.7565278960497087 0.6221871363076309 0.00130441775786443 -0.7828674638197849 0.6221871383491345 0.001175274353274519 -0.7828676667247855 -0.6221871363076309 -0.00130441775786443 0.7828674638197849 -0.6221871383491345 -0.001175274353274519 0.7828676667247855 0.6221898070491942 0.2038792279466273 -0.7558525679098893 0.6221898011836357 0.2037549411636534 -0.7558860861627658 -0.6221898070491942 -0.2038792279466273 0.7558525679098893 -0.6221898011836357 -0.2037549411636534 0.7558860861627658 0.6221939030436636 0.3925585914201147 -0.6773274683028494 0.6221939035143759 0.3924479534520299 -0.6773915782328985 -0.6221939030436636 -0.3925585914201147 0.6773274683028494 -0.6221939035143759 -0.3924479534520299 0.6773915782328985 0.6221903859354878 0.5544908010891638 -0.5526473334387365 0.6221903896076413 0.5543987480332496 -0.5527396740410957 -0.6221903896076413 -0.5543987480332496 0.5527396740410957 -0.6221903859354878 -0.5544908010891638 0.5526473334387365 0.6221910202362403 0.6786331798213453 -0.3903016033568862 0.6221910156914612 0.678568769305014 -0.3904135823927066 -0.6221910156914612 -0.678568769305014 0.3904135823927066 -0.6221910202362403 -0.6786331798213453 0.3903016033568862 0.6221853387884145 0.7565314500689442 -0.2013593038658174 0.6221853496726847 0.7564982237091488 -0.2014840643266405 -0.6221853496726847 -0.7564982237091488 0.2014840643266405 -0.6221853387884145 -0.7565314500689442 0.2013593038658174 0.622179367250408 0.7828736406861537 0.00130295306474845 0.6221793638195623 0.7828738475245173 0.001173924718077005 -0.6221793638195623 -0.7828738475245173 -0.001173924718077005 -0.622179367250408 -0.7828736406861537 -0.00130295306474845 0.6221892329183988 0.7558531905054573 0.2038786718691672 0.622189223507684 0.7558868877678742 0.2037537313805625 -0.622189223507684 -0.7558868877678742 -0.2037537313805625 -0.6221892329183988 -0.7558531905054573 -0.2038786718691672 0.6221951326288879 0.6773907079233851 0.3924475070018612 0.6221951309101329 0.6773259154460521 0.3925593246082557 -0.6221951309101329 -0.6773259154460521 -0.3925593246082557 -0.6221951326288879 -0.6773907079233851 -0.3924475070018612 0.6221949093854745 0.55273621248258 0.5543971267468953 0.6221949112080535 0.5526439122938858 0.554489133050694 -0.6221949112080535 -0.5526439122938858 -0.554489133050694 -0.6221949093854745 -0.55273621248258 -0.5543971267468953</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"192\" source=\"#ID862\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID860\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID863\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">3.325059649491211 3.216767926096336 -1.399394685447692 3.99758154621831 3.662193290876626 4.107473716139581 -1.250023878680641 4.919473912535772 1.372898142287666 4.002874476983909 -3.346531992851785 3.203384761442292 1.219983462261442 4.924407217212858 -3.68705615598036 4.093286913307604 13.66916248086444 0.02353305587179104 13.19564835602249 2.805823139428946 16.0003328556399 7.294233634054899 13.05526777611702 10.30342668068269 11.8228864714763 5.396912571325081 9.644406560028058 7.620199907751378 9.220519445225365 12.61044532400409 6.80868640605695 9.324190455426477 4.757403116530008 14.05809790705208 3.508941918724347 10.39274802981726 -0.02990082172258827 14.54770834023929 -0.02990082172260382 10.75306267042233 -3.5666972965487 10.38056843657058 -4.815191534973343 14.0459159509005 -6.860480580346522 9.300657694917794 -9.272324132439298 12.58691788003143 -9.686702307220683 7.586924890388302 -11.85278748092962 5.356150689823473 -13.09757328531092 10.27014516533118 -13.2110843325745 2.760368233456089 -13.66913394578432 -0.02353490189121231 -16.00031333163775 -7.294225363887784 -16.03022410309207 7.253473524731939 -17.85496739076283 -3.787953332447107 -17.87042739685603 3.742497540384916 -18.4927970204285 -0.02353490189122628 18.49288112382276 0.0235330558717858 17.87046043747516 -3.742493405301364 17.85497189630175 3.787954513899558 16.03025714371136 -7.2534800227204 13.21113689719592 -2.760366756640539 13.09760632593005 -10.27015343549829 11.8527964920076 -5.35615068982347 9.686716574760796 -7.58692666256699 9.272333143517251 -12.58691433567411 6.860518126504815 -9.300652969108006 4.815205427051927 -14.04592303961512 3.56674422924643 -10.38057079947547 0.02993367461101789 -14.54771542895396 0.02993367461098014 -10.75306030751745 -3.508928026645748 -10.39275039272216 -4.757417384070129 -14.05810026995697 -6.808676644055874 -9.324186320342909 -9.220524701687543 -12.61044414255163 -9.644378024947853 -7.620210540823365 -11.82288121501415 -5.396910799146412 -13.05527828904129 -10.30342549923025 -13.19562582832752 -2.805824911607605 0.5886060988810937 4.120513442521916 1.162658492477524 4.932771090314962 4.606236932793788 2.014872649270415 5.339868907720868 2.743315371972167 -4.617667416210899 1.999131421715409 -5.353301219116173 2.726315394172552 -0.611291521408307 4.117988780848812 -1.187571050858884 4.929264283026042 -2.139599332309027 3.788942846944112 -5.164343543501015 0.8290711333373181 -2.99636583736415 4.428807317739661 -6.141480814850693 1.351387648974424 -4.225021602925385 3.758142633215543 -3.20239465897159 3.292826485442597 -6.372640036501849 0.1891437608247533 -5.26773872097306 -0.1397922540547897 -5.060075937571718 3.054007997932716 -3.943277568442837 2.750953874283442 -6.301440743977258 -0.7720073775261384 -5.136984467603375 -0.9288234656837572 -5.642996750969768 2.338482509684357 -4.477181062845431 2.188046769828072 -6.045781765648268 -1.597450497087772 -4.864377425616241 -1.59744239333856 -4.868088702938565 1.588940824409902 -4.471180360231378 -2.195912950284375 -6.049493045559932 1.588934727628423 -5.636963394135375 -2.34637225796323 -5.138980702977859 0.9193062601172498 -3.935010939522044 -2.758405912819115 -6.303369004477561 0.7623055482335482 -5.051724644990093 -3.061634706345457 -5.267538473975297 0.1284836752139618 -3.190956910517112 -3.299940318090963 -6.372186186701201 -0.2009621428356244 -4.213235749099931 -3.765702618015408 -5.160082680879592 -0.8427219285103885 -2.123166668350666 -3.794862669340203 -6.13638914881693 -1.36597498609087 -2.978922285784557 -4.43555752449242 -0.5885197661079195 -4.120399914351149 -1.16256291986312 -4.932657257001637 -4.606122629645602 -2.014735477800759 -5.339735788379853 -2.743176144763794 -3.325063773367089 -3.216692463880472 1.399436221034114 -3.997516865119874 -3.662179849014553 -4.107398405247095 1.250064419912603 -4.919404685624561 -1.372895805521925 -4.00277042444336 3.346512787926854 -3.203272247311469 -1.21997784929461 -4.924298380406616 3.68705418545108 -4.093164790378991 0.6113642978876138 -4.118071356985403 4.617747902423629 -1.999222052002686 1.187652019463948 -4.929337193170962 5.353407928182614 -2.726409124851045 5.164438050886696 -0.8291264049415041 6.141565090651655 -1.351438121476672 2.139663964115627 -3.788989196166075 2.996454837881586 -4.42885565877945 5.267743730206006 0.1398428529100231 6.372654774740514 -0.1890906805768049 3.202401858901243 -3.292778259440419 4.225021696139704 -3.75808538423671 5.136887609411004 0.9287968784213682 6.301322821900057 0.7719723381833509 3.943189382779365 -2.750992348204655 5.059997234893208 -3.054044110362204 4.863551817964225 1.597558026222105 6.04489261921601 1.597565779340973 4.476345343562111 -2.187929742582891 5.642141342295993 -2.338367823715728 4.470751428024356 2.195852734366363 5.636555464348028 2.346311909831038 4.86769810624192 -1.589009864038318 6.049038901895399 -1.588997567746211 5.05203837862957 3.061732231587077 6.303703735283573 -0.7621972952458326 3.935311944199161 2.758511066035775 5.13929496892643 -0.9192004917269404 4.213545717048607 3.765827006196082 6.372547766122596 0.2010852094342388 3.191244841452139 3.300055229866782 5.267888059821077 -0.1283553981323895 2.123424527614135 3.795082979436403 2.979191962199724 4.435783737510645 5.160386065421639 0.8429754464373749 6.136714648690377 1.366238049433706</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"144\" source=\"#ID863\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID859\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID857\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID858\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"192\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 3 2 2 1 1 4 1 5 2 6 3 5 2 4 1 7 0 1 4 8 5 3 6 9 7 3 6 8 5 10 5 6 6 11 7 6 6 10 5 4 4 12 8 13 9 14 10 14 10 13 9 15 11 13 9 16 12 15 11 16 12 17 13 15 11 15 11 17 13 18 14 17 13 19 15 18 14 18 14 19 15 20 16 19 15 21 17 20 16 20 16 21 17 22 18 21 17 23 19 22 18 23 19 24 20 22 18 22 18 24 20 25 21 24 20 26 22 25 21 25 21 26 22 27 23 26 22 28 24 27 23 28 24 29 25 27 23 27 23 29 25 30 26 29 25 31 27 30 26 31 27 32 28 30 26 32 28 33 29 30 26 30 26 33 29 34 30 33 29 35 31 34 30 34 30 35 31 36 32 37 33 36 32 35 31 38 34 39 35 40 36 39 35 41 37 40 36 40 36 41 37 14 10 14 10 41 37 12 8 12 8 41 37 42 38 41 37 43 39 42 38 42 38 43 39 44 40 44 40 43 39 45 41 43 39 46 42 45 41 45 41 46 42 47 43 46 42 48 44 47 43 47 43 48 44 49 45 48 44 50 46 49 45 49 45 50 46 51 47 51 47 50 46 52 48 50 46 53 49 52 48 52 48 53 49 54 50 53 49 55 51 54 50 54 50 55 51 56 52 56 52 55 51 57 53 55 51 58 54 57 53 57 53 58 54 59 55 59 55 58 54 32 28 33 29 32 28 58 54 60 54 61 28 62 29 61 28 60 54 63 55 63 55 60 54 64 53 64 53 60 54 65 51 64 53 65 51 66 52 66 52 65 51 67 50 67 50 65 51 68 49 67 50 68 49 69 48 69 48 68 49 70 46 69 48 70 46 71 47 71 47 70 46 72 45 72 45 70 46 73 44 72 45 73 44 74 43 74 43 73 44 75 42 74 43 75 42 76 41 76 41 75 42 77 39 76 41 77 39 78 40 78 40 77 39 79 38 79 38 77 39 80 37 79 38 80 37 81 8 81 8 80 37 82 10 82 10 80 37 83 36 83 36 80 37 84 35 83 36 84 35 85 34 86 31 87 32 88 33 87 32 86 31 89 30 89 30 86 31 62 29 89 30 62 29 90 26 90 26 62 29 61 28 90 26 61 28 91 27 90 26 91 27 92 25 90 26 92 25 93 23 93 23 92 25 94 24 93 23 94 24 95 22 93 23 95 22 96 21 96 21 95 22 97 20 96 21 97 20 98 18 98 18 97 20 99 19 98 18 99 19 100 17 98 18 100 17 101 16 101 16 100 17 102 15 101 16 102 15 103 14 103 14 102 15 104 13 103 14 104 13 105 11 105 11 104 13 106 12 105 11 106 12 107 9 105 11 107 9 82 10 82 10 107 9 81 8 0 56 2 57 108 58 109 59 108 58 2 57 5 57 110 58 111 59 110 58 5 57 7 56 112 60 113 61 8 62 9 63 8 62 113 61 114 61 10 62 11 63 10 62 114 61 115 60 112 64 116 65 113 66 117 67 113 66 116 65 118 65 114 66 119 67 114 66 118 65 115 64 117 68 116 69 120 70 121 71 120 70 116 69 118 69 122 70 123 71 122 70 118 69 119 68 120 72 121 73 124 74 125 75 124 74 121 73 123 73 126 74 127 75 126 74 123 73 122 72 124 76 125 77 128 78 129 79 128 78 125 77 127 77 130 78 131 79 130 78 127 77 126 76 129 80 132 81 128 82 133 83 128 82 132 81 134 81 130 82 135 83 130 82 134 81 131 80 132 84 136 85 133 86 137 87 133 86 136 85 138 85 135 86 139 87 135 86 138 85 134 84 136 88 140 89 137 90 141 91 137 90 140 89 142 89 139 90 143 91 139 90 142 89 138 88 140 92 144 93 141 94 145 95 141 94 144 93 146 93 143 94 147 95 143 94 146 93 142 92 148 96 149 97 144 98 145 99 144 98 149 97 150 97 146 98 147 99 146 98 150 97 151 96 148 100 152 101 149 102 153 103 149 102 152 101 154 101 150 102 155 103 150 102 154 101 151 100 152 104 156 105 153 106 157 107 153 106 156 105 158 105 155 106 159 107 155 106 158 105 154 104 156 108 160 109 157 110 161 111 157 110 160 109 162 109 159 110 163 111 159 110 162 109 158 108 164 112 165 113 160 114 161 115 160 114 165 113 166 113 162 114 163 115 162 114 166 113 167 112 168 116 169 117 164 118 165 119 164 118 169 117 170 117 167 118 166 119 167 118 170 117 171 116 172 120 173 121 168 122 169 123 168 122 173 121 174 121 171 122 170 123 171 122 174 121 175 120 176 124 177 125 172 126 173 127 172 126 177 125 178 125 175 126 174 127 175 126 178 125 179 124 180 128 181 129 176 130 177 131 176 130 181 129 182 129 179 130 178 131 179 130 182 129 183 128 184 132 181 133 185 134 180 135 185 134 181 133 182 133 186 134 183 135 186 134 182 133 187 132 188 136 184 137 189 138 185 139 189 138 184 137 187 137 190 138 186 139 190 138 187 137 191 136 108 140 109 141 189 142 188 143 189 142 109 141 111 141 190 142 191 143 190 142 111 141 110 140</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID859\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID860\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID864\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID865\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID869\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">-0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.6513937049553515 -0.2505112526826225 -0.378894239337056 -0.809922520787616 -0.425580521629058 -0.6886059276069994 -0.8099225207876017 -0.4471400137575203 -0.6779751083792007 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8099225207876142 -0.4682109177295517 -0.6616486120474283 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.8037485056283931 -0.4109746155421624 -0.6830982816632039 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.803748505628394 -0.4689440064680585 -0.6460547163541135 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468337 -0.3911657130389655 -0.6668067783508576 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7934514717468399 -0.4618379454781163 -0.6214121589926545 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.7419836486641316 -0.3096356572996228 -0.5856186930202494 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.741983648664128 -0.415054456182588 -0.509351782642625 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6863932574129912 -0.2237948145008825 -0.4832510826819891 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.6847098378647214 -0.354680721925149 -0.3993942164277655 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.667843577962925 -0.2027661499568064 -0.4492166542204357 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6596290041987905 -0.3345189230811876 -0.3637282947547074 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341 -0.6513937049553542 -0.3161264493954209 -0.3546203101566341</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID869\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID866\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID870\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">-0.914297075399253 0.215116645721763 0.3431991938361602 -0.913408876044686 0.2046884346174862 0.3518335826731535 -0.9015424253173537 0.203441541780783 0.381880602323241 0.9015424253173537 -0.203441541780783 -0.381880602323241 0.913408876044686 -0.2046884346174862 -0.3518335826731535 0.914297075399253 -0.215116645721763 -0.3431991938361602 -0.9136510681511446 0.2298793945988548 0.3352569009060609 0.9136510681511446 -0.2298793945988548 -0.3352569009060609 -0.9117782845679017 0.2541872650090479 0.3225665731250447 0.9117782845679017 -0.2541872650090479 -0.3225665731250447 -0.9120084709463099 0.1943087758477377 0.3612265889310024 0.9120084709463099 -0.1943087758477377 -0.3612265889310024 -0.9141809063392639 0.1816931123289236 0.3622994388857799 0.9141809063392639 -0.1816931123289236 -0.3622994388857799 -0.914761389475236 0.2626135214064524 0.306994688390269 0.914761389475236 -0.2626135214064524 -0.306994688390269 -0.9126379924856676 0.2390954511057188 0.3315497849980955 0.9126379924856676 -0.2390954511057188 -0.3315497849980955 -0.9141710218943564 0.2509149231036151 0.3183285159902191 0.9141710218943564 -0.2509149231036151 -0.3183285159902191 -0.9164054954864268 0.1852852093678754 0.3547821289633675 0.9164054954864268 -0.1852852093678754 -0.3547821289633675 -0.8960867889457255 0.2095902619358588 0.3912804477335874 0.8960867889457255 -0.2095902619358588 -0.3912804477335874 -0.907217225171867 0.2176423778275239 0.3599843076094281 0.907217225171867 -0.2176423778275239 -0.3599843076094281 -0.8562445711454921 0.1718809545737532 0.4871367075459286 0.8562445711454921 -0.1718809545737532 -0.4871367075459286 -0.8755394211216304 0.1676337555122239 0.4531331438714985 0.8755394211216304 -0.1676337555122239 -0.4531331438714985</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID870\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID868\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID871\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"156\">11.91024662259696 -14.00044492351452 11.48721830684091 -14.18013834552815 7.438147269351948 -8.945061733813203 3.719073634675974 -4.472530866906602 5.743609153420457 -7.090069172764073 5.955123311298482 -7.00022246175726 13.28861338462427 -13.18460323054936 12.88197936170507 -13.45581934143577 8.254929826970962 -8.487481463314271 4.127464913485481 -4.243740731657136 6.440989680852535 -6.727909670717886 6.644306692312134 -6.592301615274679 12.70973102284357 -13.55074890505256 12.39471472312215 -13.45941836602513 8.460166676803608 -8.414954825070682 4.230083338401804 -4.207477412535341 6.197357361561076 -6.729709183012567 6.354865511421787 -6.775374452526281 12.3713572617144 -13.48543642483197 12.38139310001852 -13.74944422881806 7.486582909888019 -8.962355583693171 3.74329145494401 -4.481177791846585 6.19069655000926 -6.874722114409029 6.185678630857198 -6.742718212415983 11.08396695669552 -14.10459549978603 10.65623561054411 -13.82917257110459 7.360925690233538 -8.961744858697601 3.680462845116769 -4.480872429348801 5.328117805272056 -6.914586285552295 5.54198347834776 -7.052297749893013 13.26768441638996 -12.36521479670056 13.46124800907294 -12.7724965200221 8.419948186108105 -8.356981608688461 4.209974093054052 -4.17849080434423 6.730624004536471 -6.386248260011051 6.633842208194981 -6.182607398350278 11.72036966567479 -13.33278326480139 9.876498001695808 -11.98045450806011 8.259253079178057 -8.537099214004153 4.129626539589029 -4.268549607002076 4.938249000847904 -5.990227254030056 5.860184832837393 -6.666391632400697 11.97966509082454 -10.58711210718703 13.15729410283716 -12.4439210471574 8.323250129800233 -8.425467281546748 4.161625064900116 -4.212733640773374 6.578647051418579 -6.221960523578701 5.989832545412269 -5.293556053593514 7.350777491034236 -8.872150234277518 8.850256094164777 -12.34833197236433 6.956289496105613 -10.6269661093069 3.478144748052807 -5.313483054653452 4.425128047082389 -6.174165986182165 3.675388745517118 -4.436075117138759 10.13372814794584 -9.101011452070644 11.57804377148073 -10.94931484447147 7.951820622852295 -8.756422366433158 3.975910311426147 -4.378211183216579 5.789021885740366 -5.474657422235735 5.066864073972921 -4.550505726035322 7.911156915166181 -8.818168903335222 7.554866048665636 -10.57803416141198 7.059350620025528 -10.00408034766921 3.529675310012764 -5.002040173834605 3.777433024332818 -5.28901708070599 3.955578457583091 -4.409084451667611 9.193989107545409 -9.508454846182369 9.68941088965202 -10.15601053307976 7.514844530510416 -9.783809952703798 3.757422265255208 -4.891904976351899 4.84470544482601 -5.078005266539878 4.596994553772705 -4.754227423091185 8.659595885478712 -9.110994827756787 9.051855465856226 -9.271744288876676 7.370703582872622 -9.539412442323325 3.685351791436311 -4.769706221161663 4.525927732928113 -4.635872144438338 4.329797942739356 -4.555497413878394</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"78\" source=\"#ID871\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID867\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID865\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID866\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"13\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 6 0 7 2 8 1 12 8 13 2 14 10 18 6 19 2 20 8 24 12 25 2 26 14 30 10 31 2 32 12 36 16 37 2 38 18 42 14 43 2 44 2 48 16 49 20 50 22 54 18 55 2 56 2 60 20 61 24 62 26 66 22 67 2 68 28 72 26 73 2 74</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID867\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID868\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"13\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 3 4 4 5 5 3 9 5 10 7 11 3 15 9 16 4 17 3 21 7 22 11 23 3 27 13 28 9 29 3 33 11 34 15 35 3 39 17 40 13 41 3 45 15 46 19 47 21 51 17 52 3 53 3 57 19 58 23 59 25 63 21 64 3 65 3 69 23 70 27 71 3 75 27 76 29 77</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID867\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID868\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID872\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID873\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID877\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"102\">-0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.8099225207876106 0.8039707037925141 -0.044446555397748 -0.6513937049553595 0.4464754467576828 -0.02684280447038345 -0.8099225207876089 0.8021872612788439 -0.02047403738867359 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.809922520787616 0.8005981576799237 -0.0708859733311582 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.803748505628394 0.790027937951429 -0.01068446330130324 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.8037485056283904 0.7875381771100349 -0.07943476422234186 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468364 0.7659364455536168 -0.001888219761347898 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7934514717468346 0.7626980894103728 -0.08582101842722389 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641351 0.6546031505568009 0.02714739767863961 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.7419836486641334 0.6424006491474743 -0.1023934233220134 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129965 0.5228288259376162 0.04914733440220176 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6863932574129983 0.5170124754812362 -0.1061886265372616 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6699917438571728 0.4828323303797775 0.04999071498037466 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6661068428700308 0.4760519447659155 -0.1069219593258008 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987931 0.4646299528928961 0.04050819806788986 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6596290041987984 0.4588689454736861 -0.09569729128711035 -0.6544173721661108 0.4539180339634206 0.0167996764835372 -0.6544173721661108 0.4539180339634206 0.0167996764835372</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID877\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID874\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID878\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"102\">-0.9134093689969149 -0.4070360955457695 -0.002222960079090378 -0.9119121534907809 -0.4102455541326406 0.01071492558113266 -0.9142974941597579 -0.4048897335756242 0.01115328732918963 0.9142974941597579 0.4048897335756242 -0.01115328732918963 0.9119121534907809 0.4102455541326406 -0.01071492558113266 0.9134093689969149 0.4070360955457695 0.002222960079090378 -0.9136502264216238 -0.4055454024125849 0.02786019277984999 0.9136502264216238 0.4055454024125849 -0.02786019277984999 -0.9117790669024211 -0.4069450223696586 0.05526917700770017 0.9117790669024211 0.4069450223696586 -0.05526917700770017 -0.9120015951730859 -0.4098723359248514 -0.01605486360118063 0.9120015951730859 0.4098723359248514 0.01605486360118063 -0.9141814459760682 -0.4043812773638791 -0.02735080164569932 0.9141814459760682 0.4043812773638791 0.02735080164569932 -0.9147624108846287 -0.3977990536394137 0.07046732970766671 0.9147624108846287 0.3977990536394137 -0.07046732970766671 -0.9126372670989114 -0.4070248176210724 0.03773614371876295 0.9126372670989114 0.4070248176210724 -0.03773614371876295 -0.9144871313551589 -0.4004184535448701 0.05812356360846403 0.9144871313551589 0.4004184535448701 -0.05812356360846403 -0.9204794639534302 -0.3894229249437765 -0.03267020000305571 0.9204794639534302 0.3894229249437765 0.03267020000305571 -0.9088875917936953 -0.4158717928127509 0.03120893183313543 0.9088875917936953 0.4158717928127509 -0.03120893183313543 -0.9109205019190907 -0.4117843417158877 -0.0256416672836413 0.9109205019190907 0.4117843417158877 0.0256416672836413 -0.9100402409371641 -0.4142768079748553 0.01419458520680808 0.9100402409371641 0.4142768079748553 -0.01419458520680808 -0.8630221137902762 -0.5042508634437252 0.03039568760896014 0.8630221137902762 0.5042508634437252 -0.03039568760896014 -0.9456945690175788 -0.3202907360795988 0.05545833131500434 0.9456945690175788 0.3202907360795988 -0.05545833131500434 -0.8815078276401288 -0.4717714966614515 0.01938052494116135 0.8815078276401288 0.4717714966614515 -0.01938052494116135</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID878\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID876\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID879\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-21.24412297407829 -0.125142413745954 -13.45535559221688 -0.2253901856971766 -21.27670996781477 -0.5024825625750654 -10.63835498390739 -0.2512412812875327 -6.727677796108438 -0.1126950928485883 -10.62206148703914 -0.06257120687297701 -13.42484942034366 -0.7580228247401991 -21.18446660970853 -1.451884809972818 -21.24619008053712 -1.035354676238285 -10.62309504026856 -0.5176773381191425 -10.59223330485427 -0.7259424049864089 -6.712424710171829 -0.3790114123700996 -20.98510383527625 -0.6124360400889033 -13.46874671677735 -0.8672629349756258 -21.25751011054963 -0.7668235939129079 -10.62875505527481 -0.3834117969564539 -6.734373358388677 -0.4336314674878129 -10.49255191763812 -0.3062180200444516 -13.50058237987369 -0.2330322036721792 -20.97141608118763 -1.060835085065468 -21.26028882019027 -0.9262762329989754 -10.63014441009513 -0.4631381164994877 -10.48570804059382 -0.5304175425327341 -6.750291189936846 -0.1165161018360896 -20.42396479385608 0.2036061404282778 -13.43154180529066 -0.1892618490922838 -20.9479230613187 0.06512407169546448 -10.47396153065935 0.03256203584773224 -6.71577090264533 -0.09463092454614187 -10.21198239692804 0.1018030702141389 -13.38256041331185 -0.8934496676200572 -20.31535974206487 -1.82375838440512 -20.85307675263828 -1.723023086473669 -10.42653837631914 -0.8615115432368344 -10.15767987103244 -0.9118791922025602 -6.691280206655926 -0.4467248338100286 -18.02003060176221 0.1220255335760297 -13.48055350387107 -0.7283738844541267 -20.47295909683744 -0.3353143390356228 -10.23647954841872 -0.1676571695178114 -6.740276751935537 -0.3641869422270633 -9.010015300881104 0.06101276678801487 -13.39863503439812 -0.8185917493552359 -17.71476096729495 -2.009425410882813 -20.33158400188232 -1.748210110450446 -10.16579200094116 -0.8741050552252229 -8.857380483647473 -1.004712705441407 -6.699317517199058 -0.409295874677618 -15.0082564826709 0.9665192416528483 -13.32897297677283 -0.2295582768528615 -17.86863127354823 0.6202423415971474 -8.934315636774112 0.3101211707985737 -6.664486488386415 -0.1147791384264307 -7.504128241335451 0.4832596208264242 -13.4529889311389 -0.693808394268258 -15.02644916115231 -1.943272607151886 -17.76961962851651 -1.883509276524634 -8.884809814258253 -0.9417546382623171 -7.513224580576157 -0.9716363035759428 -6.72649446556945 -0.346904197134129 -14.02614066497001 1.087155530817702 -13.21218803543074 -0.1228597901630481 -14.89071638258296 1.073873522804769 -7.445358191291481 0.5369367614023844 -6.60609401771537 -0.06142989508152404 -7.013070332485004 0.5435777654088512 -13.78397498742696 -0.4267008592463119 -14.44465413117839 -1.686613223182673 -15.35883216443236 -1.675075450976801 -7.679416082216179 -0.8375377254884004 -7.222327065589196 -0.8433066115913365 -6.891987493713481 -0.213350429623156 -14.69836427084818 0.4732769352801142 -14.30189428277912 -0.5868967377974099 -15.11723179364458 0.6225414511188454 -7.558615896822288 0.3112707255594227 -7.150947141389562 -0.293448368898705 -7.349182135424091 0.2366384676400571 -12.63674340539486 -0.8350418093976046 -12.92434911954095 -1.920022184078838 -13.29140723759785 -2.096895835997954 -6.645703618798926 -1.048447917998977 -6.462174559770474 -0.960011092039419 -6.318371702697432 -0.4175209046988023 -14.1800185543271 0.1536412372854066 -14.02024496794676 -0.5331294523352237 -14.41809006551084 0.5267253828811376 -7.209045032755421 0.2633626914405688 -7.010122483973378 -0.2665647261676118 -7.090009277163551 0.07682061864270329</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"90\" source=\"#ID879\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID875\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID873\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID874\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"15\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 6 6 7 2 8 8 12 1 13 0 14 1 18 10 19 6 20 12 24 1 25 8 26 1 30 14 31 10 32 16 36 1 37 12 38 1 42 18 43 14 44 20 48 1 49 16 50 1 54 22 55 18 56 24 60 1 61 20 62 1 66 26 67 22 68 28 72 1 73 24 74 1 78 30 79 26 80 32 84 1 85 28 86</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID875\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID876\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"15\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 3 4 4 5 5 3 9 7 10 4 11 5 15 4 16 9 17 7 21 11 22 4 23 9 27 4 28 13 29 11 33 15 34 4 35 13 39 4 40 17 41 15 45 19 46 4 47 17 51 4 52 21 53 19 57 23 58 4 59 21 63 4 64 25 65 23 69 27 70 4 71 25 75 4 76 29 77 27 81 31 82 4 83 29 87 4 88 33 89</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID875\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID876\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID880\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID881\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID885\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"108\">-0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.6424140906721103 -0.205361528141175 0.3976884569153771 -0.8099225207876106 -0.3873895457258952 0.7033617179573632 -0.8099225207876 -0.3674604955165266 0.7168057206331463 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8099225207876142 -0.3428316425027979 0.7269963487024137 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283966 -0.3898534748104775 0.6879469174385808 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.8037485056283913 -0.3289306279896208 0.7198964452824165 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468417 -0.3855399093353729 0.662666563488073 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.7934514717468408 -0.3110586566947333 0.7015007050808886 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.741983648664128 -0.3555076760591189 0.5515963544216349 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.7419836486641334 -0.2369829025624916 0.6052794008371053 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129974 -0.3092217109056622 0.4262732482475253 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6863932574129965 -0.1714718964386464 0.4983011598201869 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.6671870458409419 -0.2901083697558702 0.3911269654037141 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.668394830657352 -0.1505117536332534 0.4631002848623782 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6564136263043618 -0.2728441768965728 0.3800284712295924 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6575578079288134 -0.1517296571393006 0.4426117218037587 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6503161302155158 -0.2469453063092412 0.3824950285452359 -0.6513937049553515 -0.1689952579795352 0.4231524866717108 -0.6513937049553515 -0.1689952579795352 0.4231524866717108</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID885\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID882\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID886\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"108\">-0.9056830514341907 0.2001496463545517 -0.3737356410740096 -0.9047258764599201 0.221095053799041 -0.3641264418432539 -0.9105526100805975 0.1847929401693026 -0.369791175582917 0.9105526100805975 -0.1847929401693026 0.369791175582917 0.9047258764599201 -0.221095053799041 0.3641264418432539 0.9056830514341907 -0.2001496463545517 0.3737356410740096 -0.9051369888889698 0.176876174222501 -0.386577094946688 0.9051369888889698 -0.176876174222501 0.386577094946688 -0.904493813809657 0.1911218988267972 -0.3812654725632798 0.904493813809657 -0.1911218988267972 0.3812654725632798 -0.9048570575862879 0.1960303289645085 -0.3778965671481442 0.9048570575862879 -0.1960303289645085 0.3778965671481442 -0.9032828455301246 0.283194694223623 -0.3223055477874834 0.9032828455301246 -0.283194694223623 0.3223055477874834 -0.903932511685058 0.08979039239145804 -0.4181431570083751 0.903932511685058 -0.08979039239145804 0.4181431570083751 -0.9053391715144735 0.2442462075276558 -0.347425926824473 0.9053391715144735 -0.2442462075276558 0.347425926824473 -0.9034477096128234 0.08055611706507812 -0.4210616914405072 0.9034477096128234 -0.08055611706507812 0.4210616914405072 -0.9051167199063447 0.3004841266895872 -0.3007873217966073 0.9051167199063447 -0.3004841266895872 0.3007873217966073 -0.9038086622089847 0.07690250391578957 -0.4209701972913139 0.9038086622089847 -0.07690250391578957 0.4209701972913139 -0.8916242092027337 0.2877059539723708 -0.3496162948325602 0.8916242092027337 -0.2877059539723708 0.3496162948325602 -0.8974554480062785 0.08990498062023532 -0.4318458212180883 0.8974554480062785 -0.08990498062023532 0.4318458212180883 -0.8779052696244868 0.2831733692969536 -0.3861284507603243 0.8779052696244868 -0.2831733692969536 0.3861284507603243 -0.8787757289941988 0.135225059641794 -0.4576760878346039 0.8787757289941988 -0.135225059641794 0.4576760878346039 -0.9571766001854924 0.2406762368571569 -0.1608971878859901 0.9571766001854924 -0.2406762368571569 0.1608971878859901 -0.9663187840262552 -0.06408349179479717 -0.2492414767196787 0.9663187840262552 0.06408349179479717 0.2492414767196787</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID886\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID884\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID887\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"192\">11.23701380701663 14.38472431556303 11.62241699167023 14.15859673204485 7.247890561596551 9.017184793018476 3.623945280798275 4.508592396509238 5.811208495835114 7.079298366022423 5.618506903508315 7.192362157781517 9.610237607549587 15.07004322533177 10.09506839990886 14.89571032499116 6.312270124388578 9.4365141150515 3.156135062194289 4.71825705752575 5.047534199954431 7.447855162495579 4.805118803774794 7.535021612665886 10.70820329278883 14.61305107737053 10.73290706126174 14.34965055071956 6.493139303682451 9.389856794481524 3.246569651841226 4.694928397240762 5.366453530630868 7.174825275359781 5.354101646394414 7.306525538685265 10.07214180933752 14.65062086041686 10.37099973231822 14.77093216045764 6.929856889300352 9.19065053817757 3.464928444650176 4.595325269088785 5.185499866159109 7.385466080228818 5.036070904668759 7.32531043020843 12.31835537755474 13.50282029479082 12.17351499889409 13.08321338276301 7.821705813732769 8.685069065969902 3.910852906866384 4.342534532984951 6.086757499447046 6.541606691381505 6.159177688777371 6.751410147395411 7.77529816670016 15.01302132937492 8.151522194221171 15.33158858879169 5.370170743512229 9.751768766821881 2.685085371756115 4.87588438341094 4.075761097110585 7.665794294395843 3.88764908335008 7.506510664687459 11.45974683281593 13.49634638012442 10.6191642510143 11.62672481508899 7.211427886669418 9.036025413102365 3.605713943334709 4.518012706551183 5.309582125507149 5.813362407544494 5.729873416407967 6.748173190062207 6.043161989998992 13.39339577620473 7.610509003207477 15.06240894843653 5.235798096827196 9.792612949944351 2.617899048413598 4.896306474972175 3.805254501603738 7.531204474218267 3.021580994999496 6.696697888102364 11.46063465620553 10.99959879798778 10.22937862915607 8.939277822018701 7.980285588588723 8.469341774523125 3.990142794294362 4.234670887261562 5.114689314578033 4.46963891100935 5.730317328102766 5.499799398993892 6.007223952446729 13.40087908685941 5.204683511179758 9.799429035524494 4.605625825318914 11.54493689437456 2.302812912659457 5.772468447187281 2.602341755589879 4.899714517762247 3.003611976223365 6.700439543429704 10.08534950006962 9.25731378331802 9.603947610001866 8.670713562118595 7.838690672075432 8.780226490960692 3.919345336037716 4.390113245480346 4.801973805000933 4.335356781059297 5.042674750034811 4.62865689165901 4.507682296432314 11.54467298219238 5.113560001846171 9.800622461742714 4.061243782257101 10.93449054480636 2.030621891128551 5.46724527240318 2.556780000923085 4.900311230871357 2.253841148216157 5.772336491096191 9.671671521288179 9.065981605457438 9.276434081040812 8.875378320044581 7.906737286793971 9.178667328377136 3.953368643396986 4.589333664188568 4.638217040520406 4.43768916002229 4.835835760644089 4.532990802728719 6.191963544606201 9.949194390801255 5.184839687325803 10.74959644287122 5.196960240007307 11.11464310537072 2.598480120003654 5.557321552685361 2.592419843662901 5.374798221435611 3.0959817723031 4.974597195400627 8.493525136113068 7.344301545890064 7.961446468619004 7.383621000725571 7.116338653487188 7.625819840706948 3.558169326743594 3.812909920353474 3.980723234309502 3.691810500362786 4.246762568056534 3.672150772945032 3.248034811266818 8.626432983016079 2.510419584926491 9.040122526603774 2.15770661357887 9.356257960679804 1.078853306789435 4.678128980339902 1.255209792463246 4.520061263301887 1.624017405633409 4.313216491508039</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"96\" source=\"#ID887\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID883\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID881\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID882\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"16\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 6 0 7 2 8 1 12 8 13 2 14 10 18 6 19 2 20 8 24 12 25 2 26 14 30 10 31 2 32 12 36 16 37 2 38 18 42 14 43 2 44 16 48 20 49 2 50 18 54 2 55 22 56 20 60 24 61 2 62 22 66 2 67 26 68 24 72 28 73 2 74 2 78 30 79 26 80 28 84 32 85 2 86 2 90 34 91 30 92</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID883\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID884\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"16\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 3 4 4 5 5 3 9 5 10 7 11 3 15 9 16 4 17 3 21 7 22 11 23 3 27 13 28 9 29 3 33 11 34 15 35 3 39 17 40 13 41 3 45 15 46 19 47 3 51 21 52 17 53 23 57 3 58 19 59 3 63 25 64 21 65 27 69 3 70 23 71 3 75 29 76 25 77 27 81 31 82 3 83 3 87 33 88 29 89 31 93 35 94 3 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID883\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID884\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID888\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID889\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID893\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659914 0.322750530352778 -0.357509712305726 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659949 0.307457980125035 -0.3945048806169198 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659896 0.2586245081388976 -0.398944939098951 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659967 0.2334681128296288 -0.3658949333587862 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4478128033659985 0.2951301684127827 -0.3254464571487574 -0.4478128033659949 0.2556691561629541 -0.3308723651061887 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4161909408446114 0.2527058256284018 -0.3274195077612496</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID893\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID890\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID894\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1339049186988217 0.7508247768900788 0.6467856114325872 -0.1366815993397975 0.7492072263892851 0.6480792176331454 -0.1357431839025557 0.7497550114468473 0.6476428111500465 0.1357431839025557 -0.7497550114468473 -0.6476428111500465 0.1366815993397975 -0.7492072263892851 -0.6480792176331454 0.1339049186988217 -0.7508247768900788 -0.6467856114325872 -0.1520463180641854 0.9134113510277387 -0.3775733319195171 -0.1334097867881871 0.9103994814047611 -0.3916307100408146 -0.1390632020355034 0.9113651292871443 -0.3873951818996452 0.1390632020355034 -0.9113651292871443 0.3873951818996452 0.1334097867881871 -0.9103994814047611 0.3916307100408146 0.1520463180641854 -0.9134113510277387 0.3775733319195171 -0.1567944187057105 0.08942895644361149 -0.9835740805918715 -0.1662539374228294 0.0953143051630216 -0.9814656445962314 -0.1620999136155048 0.09272970269960207 -0.9824076649961 0.1620999136155048 -0.09272970269960207 0.9824076649961 0.1662539374228294 -0.0953143051630216 0.9814656445962314 0.1567944187057105 -0.08942895644361149 0.9835740805918715 -0.1804827978264776 -0.7794077832683366 -0.5999578877466854 -0.1731947688567061 -0.7836915051681265 -0.5965158814046685 -0.1839627565907119 -0.7773362748139587 -0.6015862532055601 0.1839627565907119 0.7773362748139587 0.6015862532055601 0.1731947688567061 0.7836915051681265 0.5965158814046685 0.1804827978264776 0.7794077832683366 0.5999578877466854 -0.1498802405936568 -0.8314662140399025 0.5349764933057699 -0.159394116583764 -0.8338018904044722 0.5285526682899351 -0.1454069155601703 -0.830330389039357 0.5379667963220666 0.1454069155601703 0.830330389039357 -0.5379667963220666 0.159394116583764 0.8338018904044722 -0.5285526682899351 0.1498802405936568 0.8314662140399025 -0.5349764933057699 -0.1200646820303652 -0.1352334059142434 0.9835122765140153 -0.1169608422628643 -0.1329517455880777 0.9841971320432936 -0.1178688308120367 -0.1336192904808511 0.9839983861442035 0.1178688308120367 0.1336192904808511 -0.9839983861442035 0.1169608422628643 0.1329517455880777 -0.9841971320432936 0.1200646820303652 0.1352334059142434 -0.9835122765140153 -0.1149780011914516 -0.1314937652318465 0.9846265530378361 0.1149780011914516 0.1314937652318465 -0.9846265530378361 -0.1383533907224121 0.748228527281576 0.6488546911579324 0.1383533907224121 -0.748228527281576 -0.6488546911579324 -0.1218391275179259 0.9082828720398434 -0.4002217527380592 0.1218391275179259 -0.9082828720398434 0.4002217527380592 -0.171069294297384 0.09831063701288102 -0.9803419378965262 0.171069294297384 -0.09831063701288102 0.9803419378965262 -0.1903801350748161 -0.7734717985712226 -0.6045632977479636 0.1903801350748161 0.7734717985712226 0.6045632977479636 -0.1369570666554436 -0.8281195642851391 0.5435630130365088 0.1369570666554436 0.8281195642851391 -0.5435630130365088</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID894\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID892\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID895\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">-3.22750530352778 -2.812409736805045 -2.951301684127827 -2.560178796236892 -3.07457980125035 -3.103438394186436 -2.586245081388976 -3.138366854245081 -2.556691561629541 -2.602862605502018 -2.334681128296288 -2.878373475755785 3.890396129634985 -3.830929293644298 3.841902111534349 -4.161649426798395 3.575431113631269 -3.789832146312027 3.887388388210999 -1.440193123441505 3.912498830598775 -1.754485825277173 3.566726244310392 -1.436325568056493 -0.4520798298547238 3.628218854229932 -0.02789107994044388 3.434714660158956 -0.6269127531905233 3.417011356515528 -4.616564961458593 -3.307009919642491 -4.930711116245211 -3.25041739217853 -4.876425679403012 -2.926478984311723 -4.513663973358447 -1.850958396857737 -4.836851909935116 -1.83958610627239 -4.878537780603065 -1.515035859425156 -5.046195202738853 -1.291777653134048 -5.308185798548161 -1.055748647629636 -4.790052294242987 -1.141577079945387 -5.313828097940997 -1.009515787560939 -5.090443691600591 -0.8300736736479857 -4.796520925120116 -1.098375304575961 3.816637853167348 -4.175572887189126 3.495993835408513 -4.170866329638131 3.552114816996843 -3.802895821126935 4.0296039108369 -1.697189035132493 3.713607575865441 -1.738790116719466 3.688828852934125 -1.375709284375783 -0.01104629650652111 3.368886973135145 -0.1460547981744018 3.138679991438502 -0.6101368924396966 3.352691153528167 -4.583199311398975 -2.874060766680606 -4.653434003548693 -3.245359532973397 -4.906343357164033 -2.861941179468713 -4.476160721886599 -1.758342063168315 -4.835281606577187 -1.418604677661858 -4.518465614885066 -1.386244061110217</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID895\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID891\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID889\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID890\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 43 24 48 25 44 26 45 26 49 25 46 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 25 33 54 34 26 35 27 35 55 34 28 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID891\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID892\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID896\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID897\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID901\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4478128033659949 -0.21541310401361 -0.3766484909776855 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659994 -0.2821044674853094 -0.4097972055677137 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659949 -0.2994709736256523 -0.3798058976038878 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4478128033659914 -0.238695007375611 -0.3478412011121461 -0.4478128033659923 -0.2761839076668994 -0.3415274766983323 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID901\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID898\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID902\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1556107303666403 0.7682758938062599 0.6209166220926551 -0.1116879029147231 0.7955488162724242 0.5955064174885576 -0.1211700042938787 0.789903523489808 0.6011407935232872 0.1211700042938787 -0.789903523489808 -0.6011407935232872 0.1116879029147231 -0.7955488162724242 -0.5955064174885576 0.1556107303666403 -0.7682758938062599 -0.6209166220926551 -0.1244233597649755 0.7888847891485317 -0.60181360652188 -0.1090844255234062 0.783426245276965 -0.6118365029315144 -0.07906121212958679 0.7719592340661052 -0.6307362885364001 0.07906121212958679 -0.7719592340661052 0.6307362885364001 0.1090844255234062 -0.783426245276965 0.6118365029315144 0.1244233597649755 -0.7888847891485317 0.60181360652188 -0.2018053130177652 0.01921618423162401 -0.979237128534952 -0.1572201673390395 -0.01588452934778078 -0.9874358210584038 -0.1697468595286489 -0.006068861490700951 -0.9854690114865956 0.1697468595286489 0.006068861490700951 0.9854690114865956 0.1572201673390395 0.01588452934778078 0.9874358210584038 0.2018053130177652 -0.01921618423162401 0.979237128534952 -0.1301145213637191 -0.8486119901717154 -0.5127649573314177 -0.1086210651978576 -0.8602669808478003 -0.4981387215006411 -0.1343567494298995 -0.8462231442695603 -0.5156109521578944 0.1343567494298995 0.8462231442695603 0.5156109521578944 0.1086210651978576 0.8602669808478003 0.4981387215006411 0.1301145213637191 0.8486119901717154 0.5127649573314177 -0.1233984985839719 -0.8421416557768033 0.5249478470788555 -0.1395139141062699 -0.8459706197122566 0.5146548147587942 -0.1133150330807146 -0.8395891544271424 0.5312718278303796 0.1133150330807146 0.8395891544271424 -0.5312718278303796 0.1395139141062699 0.8459706197122566 -0.5146548147587942 0.1233984985839719 0.8421416557768033 -0.5249478470788555 -0.1131147639969138 0.1650111135103676 0.9797838448270062 -0.1302224134692138 0.1510864416931907 0.9799056128866409 -0.1260546410823167 0.1544903123830586 0.9799198798072183 0.1260546410823167 -0.1544903123830586 -0.9799198798072183 0.1302224134692138 -0.1510864416931907 -0.9799056128866409 0.1131147639969138 -0.1650111135103676 -0.9797838448270062 -0.1420492710714026 0.1413865864036689 0.9797100784278996 0.1420492710714026 -0.1413865864036689 -0.9797100784278996 -0.07903885031514943 0.8139813077432695 0.5754887407981291 0.07903885031514943 -0.8139813077432695 -0.5754887407981291 -0.1506678535050407 0.7975887197008246 -0.5840816998727005 0.1506678535050407 -0.7975887197008246 0.5840816998727005 -0.1263475132736118 -0.03992446121385578 -0.9911822956885165 0.1263475132736118 0.03992446121385578 0.9911822956885165 -0.1536418730879432 -0.8349919501480647 -0.5283773443496233 0.1536418730879432 0.8349919501480647 0.5283773443496233 -0.09890193715248216 -0.8357326912076589 0.5401567139953833 0.09890193715248216 0.8357326912076589 -0.5401567139953833</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID902\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID900\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID903\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">2.1541310401361 -2.962968129024459 2.38695007375611 -2.736350782082216 2.418521699517856 -3.217524168002713 2.761839076668994 -2.686682816693547 2.821044674853094 -3.223738017132682 2.994709736256524 -2.987806394483918 4.862848037992812 -1.436471730911179 4.816630126722004 -1.72556996709557 4.546856623073591 -1.394885293464188 4.701232558523698 -3.464185464245616 4.356729313977708 -3.137265300856367 4.674295548158963 -3.13614816966916 2.832124689239227 2.605261509879871 3.232835120194977 2.574608855939533 2.790045554862084 2.35347060364349 -3.773819348498676 -1.514619174466891 -4.089461011924668 -1.478694176529454 -4.067706033708806 -1.206600595934767 -3.610399023948869 -4.057492832424999 -3.931153506527283 -4.05303378018515 -3.969045730769214 -3.701827264759665 5.255177150779224 -0.7332430780051124 5.043212311869807 -0.9815096230854541 5.001577739208429 -0.581536198764107 4.9024837554483 -1.297541471095555 4.850872795825993 -1.696794596249568 4.606137713813613 -1.534142956742709 4.665354963484203 -1.648431032989956 4.347788412930141 -1.649491048209251 4.37016457834615 -1.331467340770913 4.849233383170659 -3.32165800873397 4.536459444617076 -3.384541965459336 4.483803267194991 -3.009115504783515 1.340664256104527 3.565066468173025 1.452060210471746 3.329977995737437 1.04044806537555 3.226749937533368 -3.541497141569373 -0.9801162596498589 -3.57981940945645 -1.290193905695045 -3.862250629639993 -0.9756131540381329 -3.774866068728113 -4.012438122951902 -4.122520570283084 -3.650081136837909 -3.807240998867626 -3.6140169568218</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID903\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID899\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID897\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID898\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 5 5 4 4 3 3 6 3 7 4 8 5 7 4 6 3 9 2 9 2 6 3 10 1 9 2 10 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 18 30 52 31 19 32 22 32 53 31 23 30 25 33 54 34 26 35 27 35 55 34 28 33 56 36 30 37 32 38 33 38 35 37 57 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID899\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID900\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID904\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID905\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID909\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4478128033659985 -0.3858881499525051 0.1221536096849714 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4139088478041265 0.0933464324579063 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4569212760641203 0.1043955722070977 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659914 -0.4659980598047449 0.1462255029882165 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4478128033659905 -0.3993090241948528 0.1631941512633839 -0.4478128033659932 -0.4360066392024481 0.1710866916287728 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.4369021150750995 0.1750805515669656</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID909\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID906\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID910\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1162781854949556 0.9440221721569896 0.3087094460070827 -0.1346201936039555 0.9376228862790311 0.3205319431816625 -0.1281283390755502 0.939946060968536 0.3163613933391273 0.1281283390755502 -0.939946060968536 -0.3163613933391273 0.1346201936039555 -0.9376228862790311 -0.3205319431816625 0.1162781854949556 -0.9440221721569896 -0.3087094460070827 -0.1262440609561076 0.6903675011133202 -0.7123588635511321 -0.138001516637389 0.6955840009988096 -0.7050662940179939 -0.1649346685400534 0.70700699320098 -0.687704636220007 0.1649346685400534 -0.70700699320098 0.687704636220007 0.138001516637389 -0.6955840009988096 0.7050662940179939 0.1262440609561076 -0.6903675011133202 0.7123588635511321 -0.1349838365174811 -0.2465273866193998 -0.9596893307344993 -0.1249639091624064 -0.2537058685940289 -0.959175350834142 -0.1286676828647164 -0.2510584934495154 -0.9593822284434316 0.1286676828647164 0.2510584934495154 0.9593822284434316 0.1249639091624064 0.2537058685940289 0.959175350834142 0.1349838365174811 0.2465273866193998 0.9596893307344993 -0.137528258736553 -0.9661754887229821 -0.2181533933721836 -0.1258995814562067 -0.9694811380793162 -0.2103701934628239 -0.1434766227141468 -0.9644040248531957 -0.2221245947244455 0.1434766227141468 0.9644040248531957 0.2221245947244455 0.1258995814562067 0.9694811380793162 0.2103701934628239 0.137528258736553 0.9661754887229821 0.2181533933721836 -0.1239625549634292 -0.6332652192933885 0.7639426987675421 -0.1185484243271057 -0.6305364008267925 0.7670528784392604 -0.1200262461105332 -0.6312838785604785 0.7662077818152547 0.1200262461105332 0.6312838785604785 -0.7662077818152547 0.1185484243271057 0.6305364008267925 -0.7670528784392604 0.1239625549634292 0.6332652192933885 -0.7639426987675421 -0.1167974670152386 0.208822637995721 0.9709538905423534 -0.1045482762700885 0.2188615063811693 0.9701388039623601 -0.1074482883687536 0.2164917070285634 0.9703536500237859 0.1074482883687536 -0.2164917070285634 -0.9703536500237859 0.1045482762700885 -0.2188615063811693 -0.9701388039623601 0.1167974670152386 -0.208822637995721 -0.9709538905423534 -0.09592521523731801 0.2258827503490979 0.9694201030391322 0.09592521523731801 -0.2258827503490979 -0.9694201030391322 -0.1453360876391361 0.933647648128806 0.3273827893663605 0.1453360876391361 -0.933647648128806 -0.3273827893663605 -0.1018954951506087 0.6791262154425009 -0.7269146384320226 0.1018954951506087 -0.6791262154425009 0.7269146384320226 -0.1190712048485406 -0.2579031796181484 -0.9588055058867603 0.1190712048485406 0.2579031796181484 0.9588055058867603 -0.154126908222058 -0.9610952896026681 -0.2292176704913324 0.154126908222058 0.9610952896026681 0.2292176704913324 -0.115015487565636 -0.6287414646692523 0.7690615113406746 0.115015487565636 0.6287414646692523 -0.7690615113406746</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID910\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID908\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID911\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">3.858881499525051 0.9609417295217747 3.993090241948528 1.28379398993862 4.139088478041265 0.7343252686688629 4.360066392024481 1.345881974146346 4.569212760641203 0.8212451680291688 4.659980598047449 1.15030729017397 4.932691922661467 2.050594508079105 4.916285000295099 1.711163197031581 4.615259486836989 2.070469394477851 5.301373169335704 -1.097168139238578 4.917103607755755 -0.805118177735519 5.237714155139309 -0.7850202068611257 -1.940032066892782 4.570920503433157 -1.733459754836062 4.880174696214064 -1.662795203246673 4.446608370819519 -3.534587250218728 1.624071027479026 -3.852408664159016 1.648173959859722 -3.840719447785261 1.984768461447111 -3.499512347452446 -2.523060644294281 -3.557127484714577 -2.219977571431748 -3.179303377019544 -2.513625773284166 6.036691952030751 1.558880138713572 5.857553404921535 1.299387320327408 5.765266348757652 1.69019121520112 5.53875939098732 2.16409055123303 5.68267868581342 1.783065168379234 5.379672069378961 1.860096852462629 5.018382483950596 1.712588065047657 4.697355198809692 1.697146151252073 4.72200273180184 2.074276447220133 5.042709028738651 -1.456450100848597 4.730220832293885 -1.507328388868188 4.680145291440302 -1.1477025667911 -2.043781256662477 4.349112368737373 -2.15044191010415 4.778099156923561 -1.849061549422705 4.695147414247404 -3.380644054737866 1.71494630994848 -3.683758735701449 2.077217382872447 -3.363423892743181 2.083472085264609 -3.620464559827389 -2.222019128872433 -3.308006398490402 -2.172864553124199 -3.246199033616235 -2.51847405722835</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID911\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID907\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID905\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID906\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 5 5 4 4 3 3 6 3 7 4 8 5 7 4 6 3 9 2 9 2 6 3 10 1 9 2 10 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 18 30 52 31 19 32 22 32 53 31 23 30 26 33 25 34 54 35 55 35 28 34 27 33 30 36 32 37 56 38 57 38 33 37 35 36 37 39 58 40 38 41 39 41 59 40 40 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID907\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID908\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID912\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID913\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID917\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659949 0.02925268116698576 0.4571879664256928 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659967 0.03004302779671875 0.423250557236884 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659914 -0.004688576503043995 0.4047031681024598 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659941 -0.03783244763866733 0.4220664640462813 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4478128033659932 -0.002712240601697502 0.4749459851304894 -0.4478128033659949 -0.03783244763866356 0.4575826516405072 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086279 -0.04060053815066489 0.4590612568958931</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID917\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID914\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID918\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1410029563660657 0.4807853474390595 0.8654268403417659 -0.1060549371234037 0.5081935363673253 0.8546880599998006 -0.1135576304247743 0.5024134134834092 0.8571379273630698 0.1135576304247743 -0.5024134134834092 -0.8571379273630698 0.1060549371234037 -0.5081935363673253 -0.8546880599998006 0.1410029563660657 -0.4807853474390595 -0.8654268403417659 -0.1067686555805312 0.994014375944963 0.02314896542551481 -0.0992313783360488 0.9949317552839722 0.01624610356613912 -0.1001724357446263 0.9948230072652543 0.01710752269338355 0.1001724357446263 -0.9948230072652543 -0.01710752269338355 0.0992313783360488 -0.9949317552839722 -0.01624610356613912 0.1067686555805312 -0.994014375944963 -0.02314896542551481 -0.09891909191161409 0.4687497692647048 -0.8777748384806138 -0.1287480142985737 0.4875078415387097 -0.8635739998705626 -0.1204055105956813 0.4823208077810515 -0.8676803278855798 0.1204055105956813 -0.4823208077810515 0.8676803278855798 0.1287480142985737 -0.4875078415387097 0.8635739998705626 0.09891909191161409 -0.4687497692647048 0.8777748384806138 -0.1646652191806799 -0.4577190077569442 -0.8737154431107287 -0.1437557280381843 -0.4742852702663527 -0.8685549913877557 -0.148440743472404 -0.4706111030796328 -0.869764643645355 0.148440743472404 0.4706111030796328 0.869764643645355 0.1437557280381843 0.4742852702663527 0.8685549913877557 0.1646652191806799 0.4577190077569442 0.8737154431107287 -0.09646331398013955 -0.9953169813336709 0.006239849741635174 -0.1039611698752289 -0.994581356731652 -1.567513741408958e-017 -0.09475985240703004 -0.9954707181582593 0.007656347776652718 0.09475985240703004 0.9954707181582593 -0.007656347776652718 0.1039611698752289 0.994581356731652 1.567513741408958e-017 0.09646331398013955 0.9953169813336709 -0.006239849741635174 -0.08050414354804245 -0.4417526345097378 0.8935175951123192 -0.1080393619639094 -0.4596758574940459 0.881490557126703 -0.1004692751834205 -0.4547958960035424 0.8849105139631087 0.1004692751834205 0.4547958960035424 -0.8849105139631087 0.1080393619639094 0.4596758574940459 -0.881490557126703 0.08050414354804245 0.4417526345097378 -0.8935175951123192 -0.1261670868981231 -0.4712139498534301 0.8729486122602924 0.1261670868981231 0.4712139498534301 -0.8729486122602924 -0.08066176544082679 0.5273398224729309 0.8458169963001376 0.08066176544082679 -0.5273398224729309 -0.8458169963001376 -0.09298631847472325 0.9956116753904154 0.01053263513122168 0.09298631847472325 -0.9956116753904154 -0.01053263513122168 -0.1480979007488019 0.499360107511594 -0.8536430722613565 0.1480979007488019 -0.499360107511594 0.8536430722613565 -0.128617271239178 -0.4860099095104769 -0.8644373692735674 0.128617271239178 0.4860099095104769 0.8644373692735674 -0.08787557746910753 -0.9960416408784326 0.01337656610159817 0.08787557746910753 0.9960416408784326 -0.01337656610159817</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID918\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID916\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID919\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">-0.2925268116698577 3.596545335882117 0.027122406016975 3.736241749693183 -0.3004302779671875 3.329571050263488 0.04688576503043994 3.183664922406017 0.3783244763866356 3.599650192905323 0.3783244763866733 3.320256183830747 4.304771798895633 1.03172710660281 4.21481509604171 0.7529116011386672 4.000044726454139 1.10793485062912 4.421275731804731 3.581575744406544 4.420431663145973 3.314529897656492 4.10347570606989 3.588741106063421 4.319595171864108 2.43657218669946 4.391308998608645 2.132013168039903 4.004262736190113 2.404159357085891 -4.197876129968127 2.620891524746142 -4.085679924831708 2.901690795312082 -3.898880727774464 2.528130711158829 -4.096804965313124 3.297878293086227 -4.414531600177956 3.320256183830747 -4.41453160017797 3.599650192905323 -4.337741485997127 0.7903962326542223 -4.40070684784139 1.094589961698369 -4.021893908100886 0.8163003856027347 -3.915494554730933 0.7530582966662636 -4.318740986045711 1.009222180880419 -4.014861215834311 1.087495689805327 4.382412656505274 1.275732923953219 4.06494067866972 1.289160856444053 4.117569520822965 1.609168978682243 4.430786423268708 3.323457494963106 4.11338677832698 3.307928508737795 4.113749018618937 3.59761042930563 3.896458540050114 2.733419148329708 4.306625459163545 2.483105444542788 4.004673048262786 2.396474751015988 -4.232313562344972 2.697004915989215 -3.918374393230021 2.65249310587964 -4.010318426120987 2.335558842294007 -4.109867458805556 3.289422241500907 -4.427552647176091 3.591221143347064 -4.110337663997246 3.602853878806665</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID919\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID915\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID913\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID914\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 26 33 25 34 54 35 55 35 28 34 27 33 31 36 56 37 32 38 33 38 57 37 34 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID915\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID916\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID920\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID921\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID925\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659914 0.4511020720997261 0.1639832025506696 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659941 0.443604104310682 0.1249160682732518 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659967 0.4037474306459234 0.1095250720187546 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659932 0.3745473328734743 0.1355706166730211 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4478128033659949 0.416376080950615 0.1841089946289281 -0.4478128033659949 0.3832275540913754 0.1758222008295431 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086244 0.3808363143690436 0.1780313229116073</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID925\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID922\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID926\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1094074020686247 0.4984230333416132 0.8600026163955198 -0.101645225647281 0.504024634304494 0.8576872484287816 -0.1038929795673725 0.5024082937966418 0.8583659797085161 0.1038929795673725 -0.5024082937966418 -0.8583659797085161 0.101645225647281 -0.504024634304494 -0.8576872484287816 0.1094074020686247 -0.4984230333416132 -0.8600026163955198 -0.1018222525483512 0.9769718064996613 -0.1875055150942714 -0.1087690994352792 0.9772346523405453 -0.1821584949237671 -0.1067289061750859 0.9771652234428873 -0.1837309627702476 0.1067289061750859 -0.9771652234428873 0.1837309627702476 0.1087690994352792 -0.9772346523405453 0.1821584949237671 0.1018222525483512 -0.9769718064996613 0.1875055150942714 -0.1433289414998819 0.3565134591932102 -0.9232307230278977 -0.1359909180218172 0.3518821215535716 -0.9261130831310727 -0.1384934920200037 0.3534641008466894 -0.9251392771257453 0.1384934920200037 -0.3534641008466894 0.9251392771257453 0.1359909180218172 -0.3518821215535716 0.9261130831310727 0.1433289414998819 -0.3565134591932102 0.9232307230278977 -0.1349675165566499 -0.6595557153030317 -0.7394389953780073 -0.1173622889185317 -0.6711286400381099 -0.731992104916713 -0.1222124372058731 -0.6679776222096131 -0.7340776637518621 0.1222124372058731 0.6679776222096131 0.7340776637518621 0.1173622889185317 0.6711286400381099 0.731992104916713 0.1349675165566499 0.6595557153030317 0.7394389953780073 -0.1058191295169145 -0.9701374026818134 0.2182561150255999 -0.1176512528335321 -0.9707395559761901 0.209339191671912 -0.1005580890291001 -0.9698016599802893 0.2221999348116262 0.1005580890291001 0.9698016599802893 -0.2221999348116262 0.1176512528335321 0.9707395559761901 -0.209339191671912 0.1058191295169145 0.9701374026818134 -0.2182561150255999 -0.08585473045780438 -0.2416308289560064 0.9665627283089551 -0.09548416722338041 -0.2496875094316789 0.9636072443913355 -0.09416004869071552 -0.2485813326810608 0.9640234469519244 0.09416004869071552 0.2485813326810608 -0.9640234469519244 0.09548416722338041 0.2496875094316789 -0.9636072443913355 0.08585473045780438 0.2416308289560064 -0.9665627283089551 -0.1032242823055442 -0.256142923912011 0.9611116220670267 0.1032242823055442 0.256142923912011 -0.9611116220670267 -0.09649147165714225 0.5077129698964091 0.8561056804486271 0.09649147165714225 -0.5077129698964091 -0.8561056804486271 -0.1131851789208752 0.9773627740502681 -0.1787487711102216 0.1131851789208752 -0.9773627740502681 0.1787487711102216 -0.1315202965520038 0.349049637920842 -0.9278290585351389 0.1315202965520038 -0.349049637920842 0.9278290585351389 -0.1057405989715317 -0.6785643004438799 -0.7268902364815817 0.1057405989715317 0.6785643004438799 0.7268902364815817 -0.08943516453163014 -0.968954655637462 0.2304956109423514 0.08943516453163014 0.968954655637462 -0.2304956109423514</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID926\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID924\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID927\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">-4.51102072099726 1.290001193398601 -4.163760809506149 1.448324091080901 -4.43604104310682 0.9826730704162471 -4.037474306459234 0.861597233214203 -3.832275540913754 1.38313464652574 -3.745473328734743 1.066488851161099 3.48126989775373 -2.661916721724257 3.406816483430799 -2.972177582241644 3.171026590337021 -2.606554836662415 3.986386895219333 1.997404066098809 3.994159350684655 1.684526607744221 3.668382965150461 2.008969601292834 2.500220450372008 4.580014812517327 2.648891197907055 4.264915060407883 2.195936011940815 4.503074526773451 -5.196643413251278 -1.19861087185011 -5.138103206570871 -0.8942667761061519 -4.885016970408737 -1.255419445917819 -4.577487831674194 1.559607900813885 -4.89624123966273 1.566454220558648 -4.90668503084679 1.890274882143592 -5.502753935253568 1.960405471812763 -5.613737620860929 2.214624445873762 -5.196980618279403 2.02817604302201 -5.28394018282753 1.881208739224467 -5.709881774726242 2.054336581082488 -5.419548725810715 2.156634437970546 3.557132004722975 -2.881032731401244 3.240017181379571 -2.859050560085873 3.310138597047183 -2.520016467100998 3.938085392640403 1.658921497886375 3.620759139691174 1.628873567018144 3.611445236497108 1.98282659750306 2.320203332516909 4.476851663613845 2.766926089553627 4.231515357916557 2.474798949672067 4.128983753580942 -4.732582976568755 -1.343547542461741 -5.001424279837343 -0.9895101278624701 -4.68279295752764 -0.9992583488947533 -4.484848678126927 1.630913117934281 -4.811397957767102 1.963200932487673 -4.494532730293797 1.981060250884132</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"42\" source=\"#ID927\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID923\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID921\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID922\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 4 7 3 8 5 7 3 6 4 9 1 7 3 9 1 10 2 10 2 9 1 11 0 12 6 13 7 14 8 15 8 16 7 17 6 18 9 19 10 20 11 21 11 22 10 23 9 24 12 25 13 26 14 27 14 28 13 29 12 30 15 31 16 32 17 33 17 34 16 35 15 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 44 23 45 23 46 22 47 21 44 24 43 25 48 26 49 26 46 25 45 24 13 27 50 28 14 29 15 29 51 28 16 27 19 30 52 31 20 32 21 32 53 31 22 30 26 33 25 34 54 35 55 35 28 34 27 33 32 36 31 37 56 38 57 38 34 37 33 36 36 39 38 40 58 41 59 41 39 40 41 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID923\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID924\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID928\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID929\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID933\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165415 0.455134529488531 -0.7596687151835804 -0.4343304285165477 0.4338167595264546 -0.8251902905509483 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165477 0.5184941219754367 -0.6875387906991337 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.605632672639457 -0.6472430522605923 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165441 0.674510123625174 -0.6453863947384648 -0.4343304285165477 0.7849986300628802 -0.6992386241427064 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165415 1.006436935037758 -0.8598939792821065 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165424 0.4541160899478318 -0.9464181246136136 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.5438809568305454 -1.205432699789862 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4343304285165477 0.7923492667272267 -0.6648166817825523 -0.4343304285165477 0.6745726004323971 -0.6122747006604081 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4343304285165477 1.025054723218782 -0.8347995539069166 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.4190221839946828 -0.9437016600691068 -0.4343304285165512 0.5145381836570095 -1.216166620768035 -0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4343304285165477 0.4020489550882156 -0.8158572167345715 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.4986782358868105 -0.6610124299431825 -0.4343304285165486 0.422725624399334 -0.7384166885444752 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4343304285165477 0.5944453442550639 -0.6101352830210085 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.591116877332182 -0.595719210309881</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID933\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID930\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID934\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6729842940505703 0.1624422630054802 0.7215986773483681 -0.6631750828133616 0.3731148991519088 0.6488328610407705 -0.6659834446608215 0.3807686437826488 0.6414680750821734 0.6659834446608215 -0.3807686437826488 -0.6414680750821734 0.6631750828133616 -0.3731148991519088 -0.6488328610407705 0.6729842940505703 -0.1624422630054802 -0.7215986773483681 -0.6113335516860552 0.4667959055536873 0.6390405864585023 -0.6145137989325163 0.4655985671337754 0.6368600829102905 0.6145137989325163 -0.4655985671337754 -0.6368600829102905 0.6113335516860552 -0.4667959055536873 -0.6390405864585023 -0.6144500916695223 -0.7444263356970634 -0.2613054066948456 -0.6112712807697465 -0.7468583700018094 -0.2618205424796805 -0.6629988808447853 -0.7286899444755632 -0.1715909345471451 0.6629988808447853 0.7286899444755632 0.1715909345471451 0.6112712807697465 0.7468583700018094 0.2618205424796805 0.6144500916695223 0.7444263356970634 0.2613054066948456 -0.6658161315575506 -0.7238380484211855 -0.180962312693964 -0.6729924006868499 -0.7380291832850042 0.04893008519735241 0.6729924006868499 0.7380291832850042 -0.04893008519735241 0.6658161315575506 0.7238380484211855 0.180962312693964 -0.6701345713609732 -0.7408307531705968 0.04571051764672113 -0.6289565476282814 -0.7476459025257273 0.2131648789833918 0.6289565476282814 0.7476459025257273 -0.2131648789833918 0.6701345713609732 0.7408307531705968 -0.04571051764672113 -0.6253103361580007 -0.5580893712997171 0.545456906763728 -0.6194244385915946 -0.5603481644919415 0.5498393396493199 -0.6586335051836426 -0.4503276787562835 0.602832387646422 0.6586335051836426 0.4503276787562835 -0.602832387646422 0.6194244385915946 0.5603481644919415 -0.5498393396493199 0.6253103361580007 0.5580893712997171 -0.545456906763728 -0.6193457640666231 -0.3683472929438279 0.6933477455892423 -0.6252441215267333 -0.3647786176751771 0.6899321333169304 0.6252441215267333 0.3647786176751771 -0.6899321333169304 0.6193457640666231 0.3683472929438279 -0.6933477455892423 -0.6289128458978669 0.007652928515795015 0.7774381422015375 -0.6701201336408642 0.1663084455640048 0.7233813015438224 0.6701201336408642 -0.1663084455640048 -0.7233813015438224 0.6289128458978669 -0.007652928515795015 -0.7774381422015375 -0.622078851308744 -0.7522767596266303 0.2170197679476473 0.622078851308744 0.7522767596266303 -0.2170197679476473 -0.6633240955833247 -0.4478538037142369 0.5995232395139108 0.6633240955833247 0.4478538037142369 -0.5995232395139108 -0.6220261755595516 0.005266994658404282 0.7829787325885845 0.6220261755595516 -0.005266994658404282 -0.7829787325885845</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID934\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID932\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID935\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">-5.438809568305453 -9.482737238346916 -4.541160899478318 -7.445155913627095 -5.145381836570095 -9.567177416708539 -4.190221839946828 -7.423786392543641 -4.338167595264546 -6.491496952334127 -4.22725624399334 -5.808877949883205 -4.020489550882155 -6.418076771645296 -10.25054723218782 -6.567089824067745 -7.923492667272267 -5.229891230022745 -10.06436935037758 -6.764499303685906 -7.849986300628801 -5.500677176589291 -6.745726004323971 -4.816560978528544 -6.74510123625174 -5.077039638609257 -6.05632672639457 -5.091645344449993 -5.944453442550639 -4.799730893098601 -5.184941219754366 -5.408638486833185 -4.986782358868105 -5.199964448886369 -4.55134529488531 -5.976060559444166 -4.269678334633769 -7.17228634502103 -5.336475990643389 -7.742358147485223 -5.505193325159312 -7.604034168790181 -3.661673248818458 -8.175413593687873 -5.511200601136377 -9.91390228982233 -5.689347174156868 -9.800731856029373 -6.397152300006442 -9.528426778102082 -6.619985055648084 -9.486958521750623 -6.015019925488002 -7.266096214065682 -5.79271183303645 -7.457467891379393 -6.028516018800286 -7.409110337784746 -5.916495195503265 -6.398410337512396 -5.673245435811727 -6.290409739551873 -5.918451089773818 -6.293838969348061 -6.058299012606727 -5.672970773922897 -5.831542273483992 -4.949930903754136 -6.048613951193245 -5.018529849581411 -6.611867500289026 -4.289528229207675 -6.506198159929273 -4.392862628766582 -7.32929965042728 -3.837447967747981 -7.208078507396563 -3.680070861867471 -5.811153776812445 -5.845724523787836 -6.612063954614971 -5.871073215402708 -6.660239379493177 -5.681909366053281 -4.387052615037615 -7.827415091763079 -4.202315597411297 -7.952433032619871 -6.31321530276293 -9.510799849948398 -4.446445643616539 -6.970949011293415 -4.332306682772676 -7.141703510882534 -5.571264021655384 -7.567302934022142 -5.799661110009105 -7.240732120036159 -6.473568664496056 -9.447001600170312 -6.035007605903449 -7.19101390246045 -5.796727443660892 -7.448951623798941 -5.918247615980235 -6.389731880133182 -5.673040901826159 -6.386349889532563 -5.664342994491257 -6.207430836053704 -6.041028142086967 -5.586805558446977 -5.819314759100421 -5.528107959488318 -6.42137595324032 -4.391696199990871 -5.81103562343381 -5.155932387550443 -6.610934274938454 -4.510184301514173 -5.87571544118804 -5.509489278649395 -5.907464823598496 -5.691800534694194 -6.752987524416816 -5.516952551322585 -6.431552494877005 -4.672209874291356 -7.16680172405666 -3.98054871024504 -6.262434736188439 -4.53591418972004</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID935\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID931\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID929\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID930\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"64\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 6 6 3 3 5 5 7 7 8 8 9 9 9 9 8 8 10 10 8 8 11 11 10 10 10 10 11 11 12 12 12 12 11 11 13 13 11 11 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 5 5 17 17 4 4 17 17 5 5 18 5 19 17 20 4 19 17 18 5 21 16 19 17 21 16 22 15 22 15 21 16 23 14 22 15 23 14 24 13 24 13 23 14 25 11 24 13 25 11 26 12 26 12 25 11 27 10 27 10 25 11 28 8 27 10 28 8 29 9 29 9 28 8 30 7 18 5 31 3 32 6 31 3 18 5 20 4 31 3 20 4 33 1 31 3 33 1 34 2 34 2 33 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 37 21 42 22 43 23 44 23 45 22 40 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 48 28 53 29 54 29 49 28 55 27 56 30 53 31 57 32 58 32 54 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 62 36 66 37 67 38 68 38 69 37 63 36 70 39 36 40 71 41 72 41 41 40 73 39 38 42 37 43 43 44 44 44 40 43 39 42 71 45 36 46 38 47 39 47 41 46 72 45 52 48 46 49 48 50 49 50 51 49 55 48 52 51 53 52 56 53 59 53 54 52 55 51 56 54 57 55 74 56 75 56 58 55 59 54 76 57 60 58 62 59 63 59 65 58 77 57 78 60 70 61 71 62 72 62 73 61 79 60 62 63 67 64 76 65 77 65 68 64 63 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID931\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID932\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID936\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID937\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID941\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.5150356702529333 0.418747608939894 -1.245344265937886 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529324 0.2830459374017382 -0.8718914035754297 -0.5150356702529333 0.418747608939894 -1.245344265937886 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529315 0.07088761597558091 -0.424391509891731 -0.5150356702529333 0.07853905368619629 -0.5572552738367445 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5150356702529333 0.0694556993678912 -0.3622324182665573 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.5150356702529368 0.1390357703847656 -0.4087156133889494 -0.5150356702529333 0.1233424149184261 -0.3499764135818277 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.5150356702529315 0.175673311539269 -0.5363657553548942 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.5150356702529333 0.2160556126454998 -0.6753130857640584 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5150356702529324 0.2433741973391066 -0.755900732933013 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529333 0.2261771182375565 -0.8932330904402774 -0.5150356702529315 0.3334680812059787 -1.269779681144656 -0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5150356702529333 0.1883282441546899 -0.7850907683350674 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5150356702529244 0.155270259855911 -0.705123308606971 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5150356702529368 0.1146439087214903 -0.6406755533636224 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5150356702529333 0.07842970050049303 -0.6137055472025841 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803394 0.07364960523687913 -0.6188766293844297</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID941\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID938\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID942\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.115277788968267 0.9330479626690824 0.3407822335886396 -0.1164463359679276 0.9328196483828717 0.3410099037132209 -0.1088396993734213 0.9391143652329044 0.3259112284863811 0.1088396993734213 -0.9391143652329044 -0.3259112284863811 0.1164463359679276 -0.9328196483828717 -0.3410099037132209 0.115277788968267 -0.9330479626690824 -0.3407822335886396 -0.110822325248955 0.938063640003709 0.3282605969796052 0.110822325248955 -0.938063640003709 -0.3282605969796052 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1169850955608708 0.9419046119998733 0.3148494708745472 0.1169850955608708 -0.9419046119998733 -0.3148494708745472 -0.5145250095588039 0.8558675183312584 0.05248624204499802 -0.4971810650748229 0.8663223338632058 0.04792287951357918 -0.5580107354442373 0.8289599112591531 0.03807209810606934 0.5580107354442373 -0.8289599112591531 -0.03807209810606934 0.4971810650748229 -0.8663223338632058 -0.04792287951357918 0.5145250095588039 -0.8558675183312584 -0.05248624204499802 -0.5582784877518608 0.8289230506726751 0.03480957019271046 -0.545158170653844 0.8382267271768401 0.01336124304687095 0.545158170653844 -0.8382267271768401 -0.01336124304687095 0.5582784877518608 -0.8289230506726751 -0.03480957019271046 -0.1365860819270675 0.9570595346721975 0.2556976521535723 -0.1321549003024238 0.9557169747171905 0.2629451398361978 -0.1318695905464307 0.9596171302456248 0.2484861654665474 0.1318695905464307 -0.9596171302456248 -0.2484861654665474 0.1321549003024238 -0.9557169747171905 -0.2629451398361978 0.1365860819270675 -0.9570595346721975 -0.2556976521535723 -0.1269044865420529 0.9532261396277257 0.2743267723462684 -0.1289657532660433 0.9574337946917685 0.2582409016144471 0.1289657532660433 -0.9574337946917685 -0.2582409016144471 0.1269044865420529 -0.9532261396277257 -0.2743267723462684 -0.1260690186249341 0.9534847853620122 0.2738126487693791 -0.1240825368586034 0.9470375050500011 0.2961815120418608 -0.1256954876265769 0.946399129432289 0.2975387910846624 0.1240825368586034 -0.9470375050500011 -0.2961815120418608 0.1256954876265769 -0.946399129432289 -0.2975387910846624 0.1260690186249341 -0.9534847853620122 -0.2738126487693791 -0.1211441855015404 0.9401500394776983 0.3184995911916539 0.1211441855015404 -0.9401500394776983 -0.3184995911916539 -0.6307694948426644 0.7463033893518946 0.2125114006772442 -0.6328306015520273 0.7446519113729666 0.2121767202779013 -0.5536072311495947 0.7950907964196508 0.2476886333032765 0.5536072311495947 -0.7950907964196508 -0.2476886333032765 0.6328306015520273 -0.7446519113729666 -0.2121767202779013 0.6307694948426644 -0.7463033893518946 -0.2125114006772442 -0.5497408771862887 0.7964870254649378 0.2517804325527812 -0.5039674104246305 0.8086833501771441 0.3033942787465886 0.5039674104246305 -0.8086833501771441 -0.3033942787465886 0.5497408771862887 -0.7964870254649378 -0.2517804325527812 -0.49850465150458 0.8115072862067282 0.3048754448322932 -0.4609956099973669 0.7886395059681967 0.4068547372089872 0.4609956099973669 -0.7886395059681967 -0.4068547372089872 0.49850465150458 -0.8115072862067282 -0.3048754448322932 -0.4573880925719646 0.794515332784318 0.399426487283961 -0.4569339343695998 0.6598239237892639 0.5965264195464085 0.4569339343695998 -0.6598239237892639 -0.5965264195464085 0.4573880925719646 -0.794515332784318 -0.399426487283961 -0.4542025713545716 0.645235326881341 0.6143056219173191 -0.4287005991166544 0.541309811422194 0.7233252963743838 0.4287005991166544 -0.541309811422194 -0.7233252963743838 0.4542025713545716 -0.645235326881341 -0.6143056219173191 -0.3523470247597167 0.9358104485918809 0.01050611484984737 -0.3063228392035632 0.9519258992836576 -0.001844032339199885 0.3063228392035632 -0.9519258992836576 0.001844032339199885 0.3523470247597167 -0.9358104485918809 -0.01050611484984737 -0.5412614551618135 0.8407681758003589 0.01203792828742119 0.5412614551618135 -0.8407681758003589 -0.01203792828742119 -0.4272410976619026 0.5422294182526325 0.7235000362474522 0.4272410976619026 -0.5422294182526325 -0.7235000362474522</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID942\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID940\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID943\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">4.591982473100826 -10.49532155130045 3.596381102692845 -10.48973263072317 3.76825062863832 -7.313630254900839 4.788649302747732 -7.361376930524428 4.631787065582489 -10.48471036339275 3.796584343130128 -7.304870234576655 -0.7853905368619629 -4.383741487515724 -0.7842970050049303 -4.827816971326995 -1.146439087214903 -5.03998101979383 -4.18747608939894 -9.796708225378035 -2.830459374017382 -6.858879041460048 -3.334680812059787 -9.988933491671299 -2.433741973391066 -5.946419099073036 -2.261771182375565 -7.026766978130183 -2.160556126454998 -5.312462941343926 -1.883282441546899 -6.176047377569198 -1.75673311539269 -4.219410608791835 -1.55270259855911 -5.546970027708173 -1.390357703847656 -3.215229491993068 -1.233424149184261 -2.753147786843712 -0.7088761597558091 -3.338546544481618 -0.694556993678912 -2.849561690363584 4.796023997542307 -7.350374402013268 3.803908500346693 -7.294419494786282 3.846359672297336 -6.358789390875086 4.189805728167312 -4.506856094946615 4.017070421792077 -4.507227523838949 4.056342725136757 -3.460756783488558 4.041586134627782 -3.375623115899968 3.862151086380763 -3.39010326253353 3.870196798047121 -2.901029633565524 4.924433338735429 -3.053604799231155 4.902261330893889 -3.531575789521651 3.928024266704107 -3.013988383563838 4.914626931451051 -3.539105977826516 4.865011689683587 -4.583100420342436 3.919683204120139 -3.486961206510021 3.879494827284836 -4.562583285591289 4.875488640555209 -4.580879223037842 3.826540600621813 -5.700099691054323 4.822529489921589 -5.718396071753157 4.819555400866464 -5.742979411248102 4.783442973528894 -6.411767901669563 3.823573876076065 -5.724436591786642 4.801955210030906 -6.405668232595182 4.751878529572747 -7.369217884205696 3.807368354643659 -6.37459105667303 1.957060357039899 -10.75365200785607 1.765124464725816 -10.7423214537102 2.459913955440844 -7.711138893628805 3.112360206094057 -7.803950315529296 2.933665600069839 -7.795972115472037 3.149980037999058 -6.910862697284486 3.538235007196647 -6.973994288736734 3.368556206581121 -6.954419143262834 3.543814988888633 -6.287816333452746 3.730204477851461 -6.425917052375335 3.571658995865501 -6.383955407013207 3.78465959479941 -5.80854108379769 3.450220969145402 -5.87097057055601 3.291859972225696 -5.827754909589918 3.519029084241668 -5.520774225638371 4.81826881172313 -4.865116337961796 4.662517777683195 -4.824437088967236 4.662182803330457 -4.380360850124628 4.169439869693115 -5.006811491088558 4.017124258375433 -4.521314350847296 4.189859564349691 -4.520942806572722 4.004600561683029 -4.529075056857496 3.874875918312202 -3.482684764307377 4.054308477449268 -3.46818554239393 4.13083736103226 -2.887771090306144 4.12622640779107 -3.355828234508149 3.954605625143068 -2.881286514067027 4.918885407229313 -3.514893431760281 3.923906485213045 -3.463165909205145 3.943337637863319 -2.998836062633428 4.875812890540187 -4.576456053667682 3.879818224823473 -4.558188850263479 3.928797703118019 -3.481218209051338 4.803189826014569 -6.40130696790807 3.808597935928527 -6.370329666730073 3.841555000386308 -5.715504750840945 3.127530081582867 -7.698959191979644 2.529718595190085 -10.74144726110512 2.948827516519374 -7.691092086442025 3.575179329102383 -6.890866213050533 3.386085399216066 -7.765086638555999 3.405436347186381 -6.871638496491231 3.947379466551694 -6.267623306827016 3.799988017323743 -6.914572938978153 3.787685574673548 -6.22844919458952 3.926023634899166 -5.850225398106103 3.707505967984392 -6.43359348176798 3.764036350977447 -5.816332960126295 3.706070434976303 -5.556515053892731 3.494701207686569 -5.848193276457293 3.560052651719282 -5.497587420403937</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID943\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID939\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID937\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID938\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 8 6 9 7 10 8 11 9 12 10 13 11 12 10 14 12 13 11 13 11 14 12 15 13 14 12 16 14 15 13 15 13 16 14 17 15 16 14 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 20 18 21 19 19 17 19 17 21 19 10 8 10 8 21 19 8 6 8 6 21 19 22 20 23 21 22 20 21 19 24 19 25 20 26 21 25 20 24 19 27 6 27 6 24 19 28 8 28 8 24 19 29 17 29 17 24 19 30 18 29 17 30 18 31 16 29 17 31 16 32 15 32 15 31 16 33 14 32 15 33 14 34 13 34 13 33 14 35 12 34 13 35 12 36 11 36 11 35 12 37 10 36 11 37 10 38 9 28 8 39 7 27 6 6 22 2 23 40 24 41 24 3 23 7 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 44 29 49 30 50 30 45 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 58 38 63 39 64 40 63 39 58 38 61 38 65 39 66 40 65 39 61 38 67 37 64 41 68 42 63 43 65 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 72 51 77 52 78 52 73 51 79 50 80 53 77 54 81 55 82 55 78 54 83 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 92 62 93 63 43 64 46 64 94 63 95 62 92 65 43 66 42 67 47 67 46 66 95 65 42 68 44 69 48 70 51 70 45 69 47 68 96 71 48 72 49 73 50 73 51 72 97 71 53 74 59 75 54 76 55 76 60 75 56 74 58 77 62 78 59 79 60 79 67 78 61 77 68 80 40 81 63 82 65 82 41 81 69 80 76 83 70 84 72 85 73 85 75 84 79 83 80 86 76 87 77 88 78 88 79 87 83 86 84 89 80 90 81 91 82 91 83 90 87 89 88 92 84 93 85 94 86 94 87 93 91 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID939\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID940\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID944\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID945\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID949\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5150356702529244 0.7605823633967948 -0.5151576952670198 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 1.080202970911157 -0.7512224816234707 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529342 0.6606115120661047 -0.4442152806735757 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.5150356702529244 0.3572826706871928 -0.2456802448285202 -0.5150356702529315 0.4692973909088816 -0.3170232018374566 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.5150356702529368 0.3054065519073461 -0.2139685155775326 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529253 0.3916435254479966 -0.1847782548985304 -0.5150356702529342 0.3324449483955088 -0.1657733282804919 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5150356702529306 0.5168852690973136 -0.2298017304831033 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.5150356702529333 0.5710456022755999 -0.2457116709629195 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5150356702529333 0.5866347671529797 -0.2880873351532207 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5150356702529324 0.6369100491594986 -0.3453269226294533 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5150356702529333 0.704216193425282 -0.3997094915180246 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5150356702529315 0.79717957997741 -0.4666800857681297 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5150356702529253 1.12782606739596 -0.6763760925945226 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.5150356702529315 0.5910816590358083 -0.3951579584923479 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.577359476874042 -0.2425931246104369</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID949\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID946\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID950\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1152454256731035 -0.591455387657384 -0.7980595317847402 -0.10882822046992 -0.5789017034806163 -0.8081022436156152 -0.1164097430468417 -0.5916084081534543 -0.7977770760844811 0.1164097430468417 0.5916084081534543 0.7977770760844811 0.10882822046992 0.5789017034806163 0.8081022436156152 0.1152454256731035 0.591455387657384 0.7980595317847402 -0.1108221458520233 -0.5808630075720961 -0.8064221093342195 0.1108221458520233 0.5808630075720961 0.8064221093342195 -0.1170077107804017 -0.5691015957689537 -0.8138996064080387 0.1170077107804017 0.5691015957689537 0.8138996064080387 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211696670977339 -0.5721039063745667 -0.8111812572331694 0.1211696670977339 0.5721039063745667 0.8111812572331694 -0.1268981050915295 -0.533447946261532 -0.8362596244908234 -0.1321663082555465 -0.5232428882080906 -0.8418722865742495 -0.1289674607165914 -0.5192099234538959 -0.844860017673528 0.1289674607165914 0.5192099234538959 0.844860017673528 0.1321663082555465 0.5232428882080906 0.8418722865742495 0.1268981050915295 0.533447946261532 0.8362596244908234 -0.1366069441971335 -0.5166761365997606 -0.8452125843037756 -0.1318813258933644 -0.5104743797675104 -0.8497194969409517 0.1318813258933644 0.5104743797675104 0.8497194969409517 0.1366069441971335 0.5166761365997606 0.8452125843037756 -0.5582991414998946 -0.2685090417213844 -0.7849872375487035 -0.5451296895268838 -0.2505730592629967 -0.8000292266960662 -0.558031261867371 -0.2716463664879751 -0.78409780152261 0.558031261867371 0.2716463664879751 0.78409780152261 0.5451296895268838 0.2505730592629967 0.8000292266960662 0.5582991414998946 0.2685090417213844 0.7849872375487035 -0.497052555982873 -0.2917024651576237 -0.8172199388242178 -0.5143888624622276 -0.293110942014941 -0.8059094700063585 0.5143888624622276 0.293110942014941 0.8059094700063585 0.497052555982873 0.2917024651576237 0.8172199388242178 -0.306415783897025 -0.2682897565392926 -0.9133071629604461 -0.3523806686222084 -0.2755513168992308 -0.8943709164191694 0.3523806686222084 0.2755513168992308 0.8943709164191694 0.306415783897025 0.2682897565392926 0.9133071629604461 -0.456893286178551 -0.7592058438957603 -0.4635245534375617 -0.4541605104685136 -0.7721228532482589 -0.4444823171091813 -0.4286828954205195 -0.847176126038426 -0.3138846709293164 0.4286828954205195 0.847176126038426 0.3138846709293164 0.4541605104685136 0.7721228532482589 0.4444823171091813 0.456893286178551 0.7592058438957603 0.4635245534375617 -0.4610282434667641 -0.6138335702605229 -0.6408286094949022 -0.4574134951468932 -0.6083801890432725 -0.6485726173969845 0.4574134951468932 0.6083801890432725 0.6485726173969845 0.4610282434667641 0.6138335702605229 0.6408286094949022 -0.5040410792207913 -0.5203001144828611 -0.6893695535248579 -0.4985789755177557 -0.522521104138984 -0.69165793633923 0.4985789755177557 0.522521104138984 0.69165793633923 0.5040410792207913 0.5203001144828611 0.6893695535248579 -0.5497531637915774 -0.4673687586348154 -0.6923423303202705 -0.5536165038480039 -0.4630501931675085 -0.6921656487248167 0.5536165038480039 0.4630501931675085 0.6921656487248167 0.5497531637915774 0.4673687586348154 0.6923423303202705 -0.6307873335127643 -0.4154716222280389 -0.6553553776410614 -0.6328486545725545 -0.4146821088617343 -0.6538664458401979 0.6328486545725545 0.4146821088617343 0.6538664458401979 0.6307873335127643 0.4154716222280389 0.6553553776410614 -0.1256979469617381 -0.5537729312787706 -0.823125486613385 -0.1240913043504173 -0.5526586540230366 -0.8241175646217339 0.1240913043504173 0.5526586540230366 0.8241175646217339 0.1256979469617381 0.5537729312787706 0.823125486613385 -0.1260575905833764 -0.5330255257953374 -0.8366560061978389 0.1260575905833764 0.5330255257953374 0.8366560061978389 -0.5412201697451934 -0.2500231718377586 -0.8028506345548783 0.5412201697451934 0.2500231718377586 0.8028506345548783 -0.4272344532522728 -0.8476012840976981 -0.3147106371735229 0.4272344532522728 0.8476012840976981 0.3147106371735229</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID950\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID948\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID951\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">-7.138963213337921 -9.590815887125158 -5.534782427677182 -6.599055031610398 -6.161466385372765 -9.739583828584451 -7.020912501436172 -9.64477766665155 -6.442251176197418 -6.552312786454574 -5.453974869115332 -6.64082692448904 -5.491014958906135 -6.614316476552948 -6.478772582362814 -6.522289149874103 -5.308720537271718 -5.689141638149316 -11.2782606739596 -5.320825261743578 -7.9717957997741 -3.671216674709287 -10.80202970911157 -5.90961685543797 -7.605823633967948 -4.052573869433889 -7.042161934252819 -3.144381333275127 -6.606115120661046 -3.494493541298796 -6.369100491594986 -2.716571791351699 -5.910816590358083 -3.108575940139804 -5.866347671529796 -2.26628703653867 -5.710456022755999 -1.932931811574967 -5.168852690973136 -1.807773613133746 -4.692973909088815 -2.493915854454659 -3.916435254479966 -1.453588938535106 -3.572826706871928 -1.932684592651026 -3.324449483955088 -1.304083515806536 -3.054065519073461 -1.683218989209923 -6.591891121267537 -6.452906138227753 -6.388217779204394 -5.501977139414676 -5.406867405753555 -5.632958163486499 -6.117810543867646 -3.561478629224226 -5.851698291102253 -2.537936179978868 -4.869366170504851 -2.672663225915323 -5.892517064855022 -2.454203569649013 -5.759915324541431 -1.987415610829698 -4.783295469245281 -2.147838056814312 -5.7562003319981 1.149012728635336 -5.145451942425918 1.261211835115473 -5.685275317190505 1.018545122632574 -7.036424047085478 0.1630502095845917 -7.130976261011481 0.2767553873179948 -5.946862418828762 0.7642798521704014 -7.689126942260445 -0.7059138880145554 -7.834279527146465 -0.6456774898488107 -7.281644872447997 -0.3986048403960985 -7.259177835029453 -2.856584011353963 -7.416547296366069 -2.811190375613943 -7.188071436753713 -2.505819076414183 -7.861456431581737 -3.261559665315641 -8.018917079536788 -3.217136703021234 -7.575012072795065 -2.706222549244504 -8.557885289507643 -3.223633364054006 -8.698178247785402 -3.146031785827807 -8.102290839309255 -2.644916224219954 -9.506351967249945 -3.371429820198309 -8.684971497927776 -2.754199168926557 -9.379701635931678 -3.470919080308647 -12.37770881846667 -4.872005277182687 -9.490624175621949 -2.809199905568493 -12.25623907044876 -4.989462679559276 -6.444857026542284 -5.458380516152987 -6.296049610050064 -4.799287875721132 -5.318589154545419 -4.950828734137319 -5.113185334491933 -3.759627421801614 -5.392057858255205 -4.876556620212218 -6.08813702729078 -3.598391158750079 -6.367006455932359 -4.715312852682593 -5.422269957287876 -5.619952481288294 -6.403242112042205 -5.487229736398297 -5.281056882911339 -4.974112230283341 -5.121764907583199 -3.747570384158296 -6.096300623064521 -3.58478531167352 -4.853940277352765 -2.690709885832792 -5.873559466293838 -2.478965772395742 -4.767264819600784 -2.166119404674233 -4.892686598708286 -2.620119059241625 -7.042920849049135 0.3363783258394972 -5.917332136334101 0.9220098715437491 -5.839645049230055 0.7939477636360648 -5.787526407421514 1.179018042887779 -5.271800528567625 1.412461230707683 -5.177910156173502 1.294964790723312 -7.650128474823353 -0.0521237149128579 -7.147894061445859 0.2311284178204125 -7.052366363064595 0.117928942085436 -7.169448987281526 -2.523237030315316 -7.397103799309265 -2.828987567036165 -7.330237832350131 -2.497391177424061 -7.584247127016653 -2.689362640162711 -8.030026041788469 -3.199266105371076 -7.737670076202681 -2.636262514374005 -8.584674860058595 -3.385887706682498 -8.170034062009835 -2.815279621232072 -8.015596352434937 -2.86584519018703 -9.418099806598537 -3.589866553505813 -8.7639835389675 -2.867638261066807 -8.626894580693087 -2.948706082022819 -12.16085591726943 -5.324233997524462 -9.566235995890917 -3.01950100195389 -9.444421399327453 -3.12265942849865</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID951\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID947\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID945\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID946\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 1 6 6 7 8 8 9 8 7 7 4 6 10 9 11 10 12 11 12 11 11 10 13 12 11 10 14 13 13 12 13 12 14 13 15 14 14 13 16 15 15 14 15 14 16 15 17 16 16 15 18 17 17 16 18 17 19 18 17 16 19 18 20 19 17 16 17 16 20 19 21 20 20 19 22 21 21 20 21 20 22 21 23 22 22 21 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 21 27 22 29 21 30 20 30 20 29 21 31 19 30 20 31 19 32 16 32 16 31 19 33 18 32 16 33 18 34 17 32 16 34 17 35 15 32 16 35 15 36 14 36 14 35 15 37 13 36 14 37 13 38 12 38 12 37 13 39 10 38 12 39 10 40 11 40 11 39 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 56 39 57 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 79 50 74 51 77 51 80 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 83 56 87 57 88 57 84 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 94 61 91 62 44 63 90 64 44 63 91 62 92 62 49 63 93 64 49 63 92 62 95 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 45 71 51 72 46 73 47 73 52 72 48 71 61 74 54 75 56 76 57 76 59 75 62 74 54 77 96 78 55 79 58 79 97 78 59 77 65 80 61 81 60 82 63 82 62 81 66 80 70 83 69 84 98 85 99 85 72 84 71 83 68 86 75 87 69 88 72 88 76 87 73 86 79 89 75 90 74 91 77 91 76 90 80 89 82 92 79 93 78 94 81 94 80 93 85 92 86 95 82 96 83 97 84 97 85 96 89 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID947\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID948\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID952\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID953\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID957\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165477 -0.9929583898964313 -0.8734481423859948 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165432 -0.7718649839306407 -0.7110288687351831 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.6619185689247542 -0.6560736833881709 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165415 -0.5930260994757609 -0.6572413689076488 -0.4343304285165424 -0.505490498188978 -0.6966655859224589 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165477 -0.4414072035031004 -0.7681572257178009 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165424 -0.4194417247662015 -0.8334605077214956 -0.4343304285165424 -0.4385226823545771 -0.9548866605916806 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165415 -0.5269730206931625 -1.214343304234378 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4343304285165477 -0.387764031107622 -0.8238125718225988 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.4343304285165424 -0.4034559973661107 -0.9518201156682835 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4343304285165424 -0.4975203874607814 -1.224784440271036 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4343304285165477 -0.7795591679423524 -0.6766814930451799 -0.4343304285165424 -1.011824808736943 -0.8485404716016101 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4343304285165424 -0.6623133292318746 -0.6229650305489247 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4343304285165424 -0.4859378482153732 -0.6699402305281399 -0.4343304285165424 -0.5822099524111708 -0.6200236645169053 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4343304285165441 -0.4092155780313024 -0.7465805749950487 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086261 -0.3964062556134474 -0.739170164846882</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID957\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID954\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID958\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6630305151580132 0.7299655905773456 -0.1659541278256337 -0.6658436797422771 0.7251760043223742 -0.1754193743641215 -0.6729884580762607 0.7375072073159738 0.05629968430755275 0.6729884580762607 -0.7375072073159738 -0.05629968430755275 0.6658436797422771 -0.7251760043223742 0.1754193743641215 0.6630305151580132 -0.7299655905773456 0.1659541278256337 -0.6113107337789397 0.7482110703485606 -0.2578359574894776 -0.6144800241452068 0.7457833801420833 -0.257335286795953 0.6144800241452068 -0.7457833801420833 0.257335286795953 0.6113107337789397 -0.7482110703485606 0.2578359574894776 -0.6112832145498026 -0.4707347038740193 0.6361931076161541 -0.6630446878927789 -0.3784166032630609 0.645889012317143 -0.6144572319660114 -0.469525830568726 0.6340250819276909 0.6144572319660114 0.469525830568726 -0.6340250819276909 0.6630446878927789 0.3784166032630609 -0.645889012317143 0.6112832145498026 0.4707347038740193 -0.6361931076161541 -0.6729915547513984 -0.1696569719422396 0.71992977373122 -0.6658562154288208 -0.3859655043248172 0.6384873764187492 0.6658562154288208 0.3859655043248172 -0.6384873764187492 0.6729915547513984 0.1696569719422396 -0.71992977373122 -0.6289091309737778 -0.01542730369521124 0.7773257382066434 -0.6701267456751917 -0.1735325142790268 0.72167625097323 0.6701267456751917 0.1735325142790268 -0.72167625097323 0.6289091309737778 0.01542730369521124 -0.7773257382066434 -0.6193427745518753 0.3613913988662995 0.6970012800819265 -0.6586051859823896 0.4442906086005776 0.6073261595769036 -0.6252368259778801 0.3578597082949858 0.6935526949123143 0.6252368259778801 -0.3578597082949858 -0.6935526949123143 0.6586051859823896 -0.4442906086005776 -0.6073261595769036 0.6193427745518753 -0.3613913988662995 -0.6970012800819265 -0.6194223535536992 0.5548231614226238 0.5554162470319005 -0.6253034624160696 0.5526101220855131 0.5510150931318574 0.6253034624160696 -0.5526101220855131 -0.5510150931318574 0.6194223535536992 -0.5548231614226238 -0.5554162470319005 -0.67013650131323 0.7403345362785804 0.05312103162442063 -0.628982358135911 0.7454560785608687 0.2206273511839385 0.628982358135911 -0.7454560785608687 -0.2206273511839385 0.67013650131323 -0.7403345362785804 -0.05312103162442063 -0.6220189146899646 -0.01309573882381509 0.7828926946859175 0.6220189146899646 0.01309573882381509 -0.7828926946859175 -0.6632923012885572 0.441848588696277 0.6039976388351515 0.6632923012885572 -0.441848588696277 -0.6039976388351515 -0.6221076599331773 0.7500464868654583 0.2245268959239637 0.6221076599331773 -0.7500464868654583 -0.2245268959239637</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID958\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID956\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID959\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">3.87764031107622 -6.480658898337778 4.092155780313024 -5.873100523294384 4.034559973661107 -7.487651576590498 4.194417247662015 -6.556555994075766 4.385226823545771 -7.511775063321221 4.975203874607814 -9.634970930132152 5.269730206931626 -9.552833993310438 4.414072035031004 -6.042836842313367 4.859378482153733 -5.270196480154701 5.05490498188978 -5.48043594259001 5.822099524111708 -4.877519494199655 5.930260994757609 -5.170298768740171 6.619185689247543 -5.161112975986945 6.623133292318746 -4.900658240318208 7.718649839306408 -5.593427100716775 7.795591679423524 -5.323227745288749 9.929583898964312 -6.871125386769826 10.11824808736943 -6.675185043266 5.925653000357565 -7.46826496498529 5.689472813873823 -7.515378658893742 5.822179128624093 -6.457005021127549 6.511257923774214 -9.533277001644295 6.288098685998339 -9.573629295500691 5.916109472248006 -7.310813277664289 5.366702388850225 -9.961973302364093 3.526461403957602 -8.209666149461569 5.546090981562797 -9.850025254076742 5.158417602448649 -7.80262028114791 4.100724298898611 -7.222142695431995 5.329292279186206 -7.665955408862323 6.437987728279937 -5.968028370914714 5.637638242695263 -5.933192605821058 6.489769452481003 -5.779453223070861 7.217578390551652 -3.945559541713974 6.386063448597975 -4.493172816030821 7.098762251858164 -3.787052743699775 6.517499784057383 -4.37952604699279 5.946010344400233 -5.104542875128599 5.729712477188441 -5.034440475430622 5.82171707979354 -6.36355039909147 5.576548159483153 -6.35877397416587 5.967022270105487 -5.74343876346228 6.355060939941811 -9.495860674564316 5.691826745769582 -7.287545814181028 5.927577537499342 -7.239119522850759 5.822211657743393 -6.448847275944787 5.691612126075604 -7.507383079612655 5.577040359522241 -6.444146991745441 4.251113033307034 -7.871692637448878 6.168526379568627 -9.569136817559707 4.064972331357362 -7.995403824306254 5.397026101555857 -7.63010449077775 4.164842777836451 -7.1925382682496 4.281639333974275 -7.022897481686874 6.578380074322135 -5.620264617403369 5.729387676422575 -5.784399080729091 5.701364756438144 -5.601711277529612 6.30564364571233 -4.770181180200111 6.13862237800544 -4.632304826311748 7.051363306255356 -4.085489202208199 5.955497993585017 -5.656571920937295 5.573646081394728 -6.275246632246977 5.734267381965052 -5.596749296751172 6.323365246363862 -4.479665053217046 6.511544613865906 -4.599494280401795 5.704254899531289 -5.239542710890913</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID959\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID955\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID953\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID954\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"64\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 6 6 5 5 4 4 3 3 1 1 7 7 1 1 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 11 11 10 10 12 12 10 10 13 13 12 12 12 12 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 17 17 16 16 15 15 18 15 19 16 20 17 19 16 18 15 21 14 21 14 18 15 22 13 21 14 22 13 23 12 23 12 22 13 24 10 23 12 24 10 25 11 25 11 24 10 26 9 26 9 24 10 27 8 26 9 27 8 28 7 28 7 27 8 29 1 28 7 29 1 30 3 31 4 32 5 33 6 32 5 31 4 34 2 34 2 31 4 30 3 34 2 30 3 29 1 34 2 29 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 43 22 36 23 41 23 44 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 47 27 52 28 53 29 54 29 55 28 50 27 52 30 56 31 57 32 58 32 59 31 55 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 38 39 70 40 71 41 72 41 73 40 39 39 43 42 37 43 36 44 41 44 40 43 44 42 38 45 37 46 70 47 73 47 40 46 39 45 53 48 48 49 47 50 50 50 49 49 54 48 53 51 52 52 57 53 58 53 55 52 54 51 57 54 56 55 74 56 75 56 59 55 58 54 61 57 76 58 62 59 63 59 77 58 64 57 71 60 70 61 78 62 79 62 73 61 72 60 76 63 61 64 67 65 68 65 64 64 77 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID955\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID956\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID960\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID961\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID965\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529244 -1.067805680033176 -0.7655184066284169 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529333 -0.7505618194240906 -0.5262701941581438 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529244 -0.3849480692439345 -0.1922180261423987 -0.5150356702529315 -0.5097247661780172 -0.2384919014329237 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5150356702529333 -0.325939137836423 -0.1726216348945115 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.5150356702529244 -0.3499790042667428 -0.2527737654016273 -0.5150356702529333 -0.2984224971584125 -0.2205444811331736 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.5150356702529333 -0.4612728757974727 -0.3252323314086438 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.5150356702529333 -0.5822719035721721 -0.4045811055422068 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529342 -0.6513094513763935 -0.4543314922573245 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5150356702529244 -1.116176846173632 -0.6911523831472533 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5150356702529315 -0.7876456342147549 -0.478159936270913 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5150356702529351 -0.6953548495402975 -0.4102646552370861 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5150356702529324 -0.6285949643299202 -0.355211286686427 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5150356702529333 -0.5788941760897649 -0.2974718659793898 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5150356702529315 -0.5637283441458915 -0.2549425253636453 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID965\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID962\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID966\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.108837402926013 0.5869636604169701 -0.8022643461317676 -0.1152524072062661 0.5994041612018266 -0.792105759458354 -0.1164164008736633 0.5995543045607452 -0.7918218596946564 0.1164164008736633 -0.5995543045607452 0.7918218596946564 0.1152524072062661 -0.5994041612018266 0.792105759458354 0.108837402926013 -0.5869636604169701 0.8022643461317676 -0.1108295971226472 0.5889064001271712 -0.8005660824010021 0.1108295971226472 -0.5889064001271712 0.8005660824010021 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.117010717209138 0.5772025840593379 -0.8081742813362881 0.117010717209138 -0.5772025840593379 0.8081742813362881 -0.5145432086037881 0.301138149130455 -0.8028456275137845 -0.4972069966061667 0.2998409485598932 -0.8141748019268212 -0.55805116068878 0.2794674820048999 -0.7813301661626451 0.55805116068878 -0.2794674820048999 0.7813301661626451 0.4972069966061667 -0.2998409485598932 0.8141748019268212 0.5145432086037881 -0.301138149130455 0.8028456275137845 -0.5451735392333464 0.2585521366823797 -0.7974563340627268 -0.5583170886261052 0.2763353231468237 -0.7822536786295161 0.5583170886261052 -0.2763353231468237 0.7822536786295161 0.5451735392333464 -0.2585521366823797 0.7974563340627268 -0.1366137379887484 0.525105648062938 -0.8400004434315159 -0.1321751191906274 0.5316379949383054 -0.8365947526759427 -0.1318899009461685 0.5189517552672971 -0.8445674216623568 0.1318899009461685 -0.5189517552672971 0.8445674216623568 0.1321751191906274 -0.5316379949383054 0.8365947526759427 0.1366137379887484 -0.525105648062938 0.8400004434315159 -0.1269133562014147 0.541783060402261 -0.8308815291477196 -0.1289772731066859 0.5276362262001799 -0.8396218647839013 0.1289772731066859 -0.5276362262001799 0.8396218647839013 0.1269133562014147 -0.541783060402261 0.8308815291477196 -0.1241088849423676 0.5608577831136058 -0.8185569814003505 -0.1260730475475516 0.541364594212308 -0.8312821198699127 -0.1257237932527103 0.5619705390732921 -0.8175467210036521 0.1260730475475516 -0.541364594212308 0.8312821198699127 0.1257237932527103 -0.5619705390732921 0.8175467210036521 0.1241088849423676 -0.5608577831136058 0.8185569814003505 -0.1211792230471033 0.5801840317827792 -0.8054204399976321 0.1211792230471033 -0.5801840317827792 0.8054204399976321 -0.5535170558317795 0.4699781182489695 -0.6875604971713225 -0.630745177755128 0.4220252385451681 -0.6511952232391957 -0.6328077900805511 0.4212204572764466 -0.6497134962313701 0.6328077900805511 -0.4212204572764466 0.6497134962313701 0.630745177755128 -0.4220252385451681 0.6511952232391957 0.5535170558317795 -0.4699781182489695 0.6875604971713225 -0.5040577082147066 0.5271615428562393 -0.6841246483812488 -0.5496579690091841 0.4742995180535889 -0.6876889444209731 0.5496579690091841 -0.4742995180535889 0.6876889444209731 0.5040577082147066 -0.5271615428562393 0.6841246483812488 -0.4986083373847545 0.5294053531974816 -0.6863815978712283 -0.4611603796146424 0.6201725230534618 -0.6345999889089049 0.4611603796146424 -0.6201725230534618 0.6345999889089049 0.4986083373847545 -0.5294053531974816 0.6863815978712283 -0.4575413346766589 0.6147893824288844 -0.6424094818065907 -0.4569158452101462 0.7637801850174524 -0.4559251466749819 0.4569158452101462 -0.7637801850174524 0.4559251466749819 0.4575413346766589 -0.6147893824288844 0.6424094818065907 -0.4541857773435357 0.7765036889450471 -0.4367577139714671 -0.4287765424434085 0.8502341030875822 -0.3053729631076245 0.4287765424434085 -0.8502341030875822 0.3053729631076245 0.4541857773435357 -0.7765036889450471 0.4367577139714671 -0.3524563901464338 0.2844550069979994 -0.8915491248600456 -0.3064595936731795 0.2773796356690582 -0.9105729268772327 0.3064595936731795 -0.2773796356690582 0.9105729268772327 0.3524563901464338 -0.2844550069979994 0.8915491248600456 -0.5412696949613353 0.2580312515619297 -0.8002793203212533 0.5412696949613353 -0.2580312515619297 0.8002793203212533 -0.427351177790763 0.8506607779687953 -0.3061816644842928 0.427351177790763 -0.8506607779687953 0.3061816644842928</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID966\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID964\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID967\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">5.499103420584213 -6.600182416334707 7.091288569950677 -9.595896339223589 6.113201900217518 -9.742250853991777 6.408896219694804 -6.554535211264102 6.975901634042057 -9.648330521578423 5.420290547408211 -6.640748761512123 2.984224971584125 -1.734949918247632 3.259391378364231 -1.357956861170158 3.499790042667428 -1.988486954492802 3.849480692439346 -1.51211513898687 4.612728757974727 -2.558494340414665 5.097247661780172 -1.876136291272333 5.637283441458915 -2.005547866194009 5.788941760897649 -2.3401120123712 5.822719035721721 -3.182704696932027 6.285949643299203 -2.794328788599893 6.513094513763935 -3.57407440575762 6.953548495402975 -3.227415287865078 7.505618194240906 -4.139992194044065 7.876456342147549 -3.761524831997849 10.67805680033176 -6.022078132143546 11.16176846173632 -5.437065414091726 6.443502443529829 -6.524454426903926 5.455377910186199 -6.614016405360451 5.276829500861391 -5.688413843343613 7.093346623752447 0.1936633434774049 6.996622144483922 0.08107890823026182 5.918364098679632 0.6946835222532575 5.12457596617492 1.196888661312207 5.733164416645455 1.077643543196735 5.659837046645889 0.9479949494725006 5.735808099411976 -1.992899477220481 5.865618505324296 -2.460175025701383 4.758236997495068 -2.149699721033194 5.826602908377137 -2.54228182317705 6.087171796191482 -3.566690023565987 4.843545496099361 -2.673703235409213 5.35585679491965 -4.878577887491488 5.082764984602673 -3.760757070883378 6.331641412255999 -4.720481401818463 6.058548585046148 -3.602661679311559 6.264065004454752 -4.803501560120678 6.40989096811075 -5.463018791418008 5.285915461951562 -4.952279500389528 6.354500477194964 -5.5058065265386 6.554020323273361 -6.45725466293534 5.3725854730318 -5.6341428049648 9.41056898809822 -2.898791439095068 12.26851450157659 -4.986537430148319 12.14541253552307 -5.10293046955647 8.613182971989794 -2.826927959732564 9.42651991423803 -3.450700016896117 9.298610626780286 -3.549173966198144 8.629014812798161 -3.209905916204647 8.487838424714864 -3.286514222629172 8.038933125624038 -2.704561851470576 7.96324250441662 -3.265004189452493 7.805375665433106 -3.308562304365771 7.523789324761757 -2.751687845226335 7.377457688057052 -2.855312596780183 7.219812768339646 -2.90011231837174 7.150832450639896 -2.549082256247872 7.235310741891112 -0.4904196007434802 7.782229223622522 -0.7453506809080558 7.635697253095525 -0.8035006671235652 7.109563867316364 0.1488038753349426 7.606548193301278 -0.1401008424521096 7.011895007764506 0.03672512252392931 5.890502313623793 0.8526266988596412 7.005536879862811 0.2545755458081305 5.810559197299331 0.7254211548792295 5.254634222010645 1.345955951793201 5.765798087273703 1.106421549715725 5.158474751740419 1.229593571299443 5.847127653942131 -2.483938036577421 4.865427715803005 -2.621495704933041 4.742685627602766 -2.167049408315839 4.828626099140562 -2.691145961250775 6.066241502050971 -3.589285790193484 5.090846327701405 -3.748857617575201 6.368925063442006 -5.491049143458817 5.387368148386617 -5.621069559526315 5.249019993973442 -4.974806095254356 9.485908542837471 -3.105411685193395 12.04798571922787 -5.432569415147625 9.362675427690499 -3.207509091704578 8.693206550649377 -2.936984635025157 9.338158193561835 -3.664297378796833 8.55510598041441 -3.016987279469245 8.108248304215895 -2.870429459557781 8.516550120266997 -3.44382944239968 7.953234205976306 -2.919923603102037 7.973800953496667 -3.248171677254486 7.532549763138777 -2.735810750521659 7.686443725701371 -2.683559650169936 7.358713154635643 -2.872239896407073 7.132876063535401 -2.565649444134168 7.293828092787273 -2.540400614243558</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID967\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID963\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID961\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID962\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 9 7 10 8 9 7 11 9 10 8 10 8 11 9 12 10 11 9 13 11 12 10 13 11 14 12 12 10 14 12 15 13 12 10 12 10 15 13 16 14 15 13 17 15 16 14 16 14 17 15 18 16 17 15 19 17 18 16 18 16 19 17 20 18 19 17 21 19 20 18 20 18 21 19 22 20 23 21 22 20 21 19 24 19 25 20 26 21 25 20 24 19 27 18 27 18 24 19 28 17 27 18 28 17 29 16 29 16 28 17 30 15 29 16 30 15 31 14 31 14 30 15 32 13 31 14 32 13 33 10 33 10 32 13 34 12 33 10 34 12 35 11 33 10 35 11 36 9 33 10 36 9 37 8 37 8 36 9 38 7 37 8 38 7 39 6 6 22 0 23 40 24 41 24 5 23 7 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 44 30 45 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 63 38 64 39 58 40 64 39 63 38 65 38 66 39 61 40 66 39 65 38 67 37 64 41 68 42 62 43 67 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 77 51 70 52 75 52 78 51 79 50 80 53 76 54 81 55 82 55 79 54 83 53 84 56 81 57 85 58 86 58 82 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 43 62 92 63 93 64 94 64 95 63 46 62 42 65 92 66 43 67 46 67 95 66 47 65 49 68 42 69 44 70 45 70 47 69 50 68 96 71 49 72 48 73 51 73 50 72 97 71 53 74 59 75 54 76 55 76 60 75 56 74 59 77 58 78 63 79 65 79 61 78 60 77 68 80 40 81 62 82 67 82 41 81 69 80 77 83 71 84 70 85 75 85 74 84 78 83 80 86 77 87 76 88 79 88 78 87 83 86 84 89 80 90 81 91 82 91 83 90 87 89 84 92 85 93 88 94 91 94 86 93 87 92 88 95 89 96 98 97 99 97 90 96 91 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID963\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID964\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID968\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID969\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID973\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529315 -0.2694805104503927 -0.8782104219975504 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.401444950041533 -1.253002255453108 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529351 -0.2309722319644435 -0.7618292713100341 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.5150356702529315 -0.1301124565657046 -0.4136175271627853 -0.5150356702529368 -0.1654720203610757 -0.5416266854932705 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.5150356702529333 -0.1150057598209742 -0.3547245007455899 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.5150356702529333 -0.06099842723727789 -0.3664407794064466 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5150356702529333 -0.06181083223495576 -0.428611923348398 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5150356702529324 -0.06813313594591697 -0.561544209032091 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.5150356702529244 -0.06745777442559287 -0.6179914411591223 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5150356702529333 -0.1034025889616375 -0.6453227164541877 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5150356702529253 -0.1433822075213695 -0.7101728163286207 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5150356702529244 -0.1756362347080652 -0.7904678287407023 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5150356702529333 -0.2124028407813262 -0.8989828340120303 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5150356702529324 -0.3159237001412372 -1.276584546853655 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.5150356702529315 -0.2044608896717736 -0.6809706910636344 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID973\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID970\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID974\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1164308334372561 -0.9361829241127744 0.3316706101311379 -0.115264363165527 -0.9364085327492276 0.3314410752735454 -0.1088358859381834 -0.9423316096583713 0.3164899482933284 0.1088358859381834 0.9423316096583713 -0.3164899482933284 0.115264363165527 0.9364085327492276 -0.3314410752735454 0.1164308334372561 0.9361829241127744 -0.3316706101311379 -0.1108265020245895 -0.9413013605670106 0.3188561353395736 0.1108265020245895 0.9413013605670106 -0.3188561353395736 -0.1170061438965575 -0.9450112108173462 0.3053905265721109 0.1170061438965575 0.9450112108173462 -0.3053905265721109 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211767870245431 -0.9432883615922447 0.3090683632645491 0.1211767870245431 0.9432883615922447 -0.3090683632645491 -0.1269172199874076 -0.9559205324775958 0.2647790680141043 -0.1321753098522585 -0.9582917932523017 0.2533900677823568 -0.1289832713335865 -0.9599617263082118 0.2486700620087674 0.1289832713335865 0.9599617263082118 -0.2486700620087674 0.1321753098522585 0.9582917932523017 -0.2533900677823568 0.1269172199874076 0.9559205324775958 -0.2647790680141043 -0.1366015841177712 -0.9595604633487854 0.2461376127177232 -0.1318905450426279 -0.9620432799504404 0.238909212109029 0.1318905450426279 0.9620432799504404 -0.238909212109029 0.1366015841177712 0.9595604633487854 -0.2461376127177232 -0.5579936818601086 -0.8293100066025989 0.02979872401626703 -0.5582559972072337 -0.8292442885329374 0.02653585343755587 -0.5450709898174925 -0.8383750888433897 0.004982616402794485 0.5450709898174925 0.8383750888433897 -0.004982616402794485 0.5582559972072337 0.8292442885329374 -0.02653585343755587 0.5579936818601086 0.8293100066025989 -0.02979872401626703 -0.4971056987735406 -0.8668022854730181 0.03923929338842273 -0.5144490778171239 -0.8563961092508181 0.04390729316607478 0.5144490778171239 0.8563961092508181 -0.04390729316607478 0.4971056987735406 0.8668022854730181 -0.03923929338842273 -0.3062977673774491 -0.9518676260712704 -0.01138859679831438 -0.352304512060553 -0.9358847587336349 0.001117654625490362 0.352304512060553 0.9358847587336349 -0.001117654625490362 0.3062977673774491 0.9518676260712704 0.01138859679831438 -0.4569466615946189 -0.6657511171996592 0.5898942264549963 -0.4542014913136462 -0.6513390540662555 0.6078309320333537 -0.4286372452159311 -0.5485409186912338 0.7178948199667378 0.4286372452159311 0.5485409186912338 -0.7178948199667378 0.4542014913136462 0.6513390540662555 -0.6078309320333537 0.4569466615946189 0.6657511171996592 -0.5898942264549963 -0.4610431429742561 -0.7926530874053718 0.3989239317754095 -0.4574340725793243 -0.7984546202919721 0.3914387417947999 0.4574340725793243 0.7984546202919721 -0.3914387417947999 0.4610431429742561 0.7926530874053718 -0.3989239317754095 -0.504011286993974 -0.8116541095840285 0.2952799163133784 -0.4985522816593612 -0.8144906939653281 0.2967330987539529 0.4985522816593612 0.8144906939653281 -0.2967330987539529 0.504011286993974 0.8116541095840285 -0.2952799163133784 -0.5535803758470984 -0.7975432953446792 0.2397362290679806 -0.5497181193307189 -0.7989775362978114 0.2438132190242709 0.5497181193307189 0.7989775362978114 -0.2438132190242709 0.5535803758470984 0.7975432953446792 -0.2397362290679806 -0.6327733709944583 -0.7467813291086449 0.2047327708380742 -0.6307130915381779 -0.7484351601869926 0.2050507428863028 0.6307130915381779 0.7484351601869926 -0.2050507428863028 0.6327733709944583 0.7467813291086449 -0.2047327708380742 -0.12572764539914 -0.9493235337335358 0.288057958546645 -0.1241102328803618 -0.949950385418969 0.2866895800979427 0.1241102328803618 0.949950385418969 -0.2866895800979427 0.12572764539914 0.9493235337335358 -0.288057958546645 -0.1260763385258006 -0.9561757449318785 0.2642587778445488 0.1260763385258006 0.9561757449318785 -0.2642587778445488 -0.5411572163250612 -0.8409136120021787 0.0036282735233317 0.5411572163250612 0.8409136120021787 -0.0036282735233317 -0.4271593597663426 -0.5494736951569242 0.7180623508405128 0.4271593597663426 0.5494736951569242 -0.7180623508405128</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID974\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID972\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID975\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">-3.619923147946738 -10.4997124189645 -4.615531269323347 -10.50426780891869 -3.786473319759188 -7.323412140034409 -4.653673804142658 -10.49401698912256 -4.805676486616894 -7.37051953241552 -3.81352480912883 -7.314962732852594 -3.820425668882074 -7.305856672633955 -4.812624718306279 -7.36088743703495 -3.861453874929484 -6.370197921834446 0.6813313594591697 -4.417481111052449 1.034025889616375 -5.076538702772943 0.6745777442559287 -4.861532670451762 0.6181083223495576 -3.371747130340732 0.6099842723727789 -2.882667464664047 1.150057598209742 -2.790499405865308 1.301124565657046 -3.253791213680578 1.433822075213695 -5.58669282178515 1.654720203610757 -4.260796592547062 1.756362347080652 -6.218346919426859 2.044608896717736 -5.356969436367257 2.124028407813262 -7.071998294227972 2.309722319644435 -5.993056934305602 2.694805104503927 -6.908588653047397 3.159237001412372 -10.04246510191542 4.01444950041533 -9.85695107623112 -4.770302607309429 -7.378913320643741 -4.818761116653899 -6.415319624856644 -3.824119757917572 -6.385272312822708 -4.879652942044097 -4.594604717966694 -4.927413575326117 -3.550563414087187 -3.932374746135774 -3.499523185868613 -4.915571062373914 -3.5436583785342 -4.936862069573945 -3.065660927447276 -3.940378453159533 -3.027190444375211 -3.913500117488176 -3.40050299024049 -4.09282702520373 -3.385230939043493 -3.918064205042312 -2.911394748494002 -4.071526949273308 -4.517354419797227 -4.244247793447956 -4.516291113672466 -4.103959653848396 -3.470749325366316 -4.696140705790722 -4.841330176768042 -4.852048441064388 -4.881619431869657 -4.694071954369298 -4.397249817793164 -3.388429709736816 -5.80223159735321 -3.54728384340591 -5.844317579836226 -3.612092296619232 -5.493643733810828 -3.644650972120329 -6.376784300125662 -3.80351443586253 -6.41800547167999 -3.853333020430924 -5.800397365438651 -3.443345100842655 -6.955360092461058 -3.613167292398807 -6.974182995811063 -3.613854860136208 -6.28799614187596 -3.020090597742209 -7.800548950638829 -3.198837732959714 -7.807696212394419 -3.229723261065653 -6.914445467807718 -1.887081515124395 -10.7541844740011 -2.07909737595266 -10.76451173411055 -2.556309598949435 -7.719435323674952 -4.800992548081733 -6.42136775030822 -4.835935624615236 -5.752527526608549 -3.839915993991579 -5.735080854880583 -3.893651563408266 -4.575157380439522 -3.842653010323232 -5.712728447491024 -4.889675796800544 -4.592379227370737 -4.838679085328147 -5.729945936031485 -3.825258441823209 -6.381453665091004 -4.819904359823177 -6.41140743340478 -3.857120588539961 -5.72660297898442 -3.894002460961315 -4.571016362072552 -4.890027573496783 -4.588206715689682 -3.941118556409633 -3.493999293346616 -3.936315166081157 -3.477142797519195 -4.93138635985045 -3.527791052174538 -3.954943057750661 -3.012787565415254 -3.926614997645129 -3.491897394819695 -4.063770219756945 -4.537696388468241 -4.105939758987547 -3.476609754896952 -4.175804411867014 -3.36587945210828 -4.177193689864259 -2.897812676959156 -4.000934001956216 -2.89206782663573 -4.071675761691439 -4.531139361422384 -4.22716918693565 -5.016005951249156 -4.244396603139681 -4.53007578126498 -3.590817288257763 -5.821021844290655 -3.798853510505536 -5.527848467073778 -3.652170740556171 -5.469963595447143 -3.781669341089509 -6.425648218290957 -3.995755863268846 -5.841267620548126 -3.833509888572388 -5.808143101871867 -3.866956363979578 -6.914973573831331 -4.010205632191378 -6.267452237426695 -3.850258232861662 -6.228912249916991 -3.464546362080003 -7.768615286749084 -3.647638875630202 -6.893593195818973 -3.477759105263607 -6.875094619680589 -2.636818840382449 -10.75008068999862 -3.212070745508375 -7.704897883551319 -3.033317435407952 -7.697846838450428</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID975\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID971\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID969\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID970\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 2 6 6 7 8 8 9 8 7 7 3 6 10 9 11 10 12 11 13 12 14 13 10 9 10 9 14 13 11 10 14 13 15 14 11 10 15 14 16 15 11 10 11 10 16 15 17 16 16 15 18 17 17 16 17 16 18 17 19 18 18 17 20 19 19 18 19 18 20 19 21 20 20 19 22 21 21 20 22 21 23 22 21 20 21 20 23 22 24 23 25 24 24 23 23 22 26 22 27 23 28 24 27 23 26 22 29 20 29 20 26 22 30 21 29 20 30 21 31 19 29 20 31 19 32 18 32 18 31 19 33 17 32 18 33 17 34 16 34 16 33 17 35 15 34 16 35 15 36 10 36 10 35 15 37 14 36 10 37 14 38 13 36 10 38 13 39 9 39 9 38 13 40 12 41 11 36 10 39 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 54 39 59 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 68 48 73 48 76 47 77 46 78 49 79 50 74 51 77 51 80 50 81 49 82 52 83 53 78 54 81 54 84 53 85 52 86 55 87 56 82 57 85 57 88 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 94 61 91 62 44 63 90 64 44 63 91 62 92 62 49 63 93 64 49 63 92 62 95 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 54 74 61 75 55 76 58 76 62 75 59 74 55 77 96 78 56 79 57 79 97 78 58 77 60 80 65 81 61 82 62 82 66 81 63 80 69 83 98 84 70 85 71 85 99 84 72 83 75 86 69 87 68 88 73 88 72 87 76 86 79 89 75 90 74 91 77 91 76 90 80 89 83 92 79 93 78 94 81 94 80 93 84 92 87 95 83 96 82 97 85 97 84 96 88 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID971\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID972\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID976\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID977\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID981\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.5298591187803332 0.3212716622742917 -1.271187211522604 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803368 -0.2024113387619763 -0.8998581100515812 -0.5298591187803385 -0.2637927368127108 -1.287676132534668 -0.5298591187803332 -0.3037155668081936 -1.277869526571295 -0.5298591187803341 -0.166588549240032 -0.9141246739608264 -0.5298591187803332 -0.167314128746911 -0.7927325379099566 -0.5298591187803394 -0.1371701956500784 -0.7148106679719599 -0.5298591187803385 -0.1309741408960023 -0.8103654152695299 -0.529859118780335 -0.09652225547468674 -0.6490502239462308 -0.5298591187803403 -0.1008278611642817 -0.7324444464393309 -0.529859118780335 -0.0657982342339376 -0.6804803382377715 -0.5298591187803332 -0.06262652252145684 -0.6231126244967413 -0.529859118780335 0.005737991624243932 -0.6670193646984886 -0.5298591187803394 -0.0592680186720429 -0.5614091555011098 -0.529859118780335 -0.05171889424246934 -0.426670674331888 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955 -0.5298591187803403 0.004276507416989483 -0.3737499275659943 -0.5298591187803385 0.05992460711325975 -0.3630566690771362 -0.5298591187803332 0.06077643557702595 -0.4225511474022614 -0.5298591187803332 0.07739436518860465 -0.6762075103442837 -0.5298591187803394 0.07364960523687913 -0.6188766293844297 -0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803394 0.10780206004668 -0.6444722959713527 -0.5298591187803421 0.1129421291018604 -0.7278189850281924 -0.5298591187803403 0.1491061193362973 -0.7098231114113105 -0.5298591187803421 0.1438660836349472 -0.8054335021153061 -0.5298591187803385 0.1805195819066778 -0.9088330686112154 -0.5298591187803332 0.180030543196354 -0.7874390552524333 -0.5298591187803385 0.2161940641037925 -0.8942078637990116 -0.529859118780335 0.2814530416408521 -1.281390905654919 -0.5298591187803332 0.3212716622742917 -1.271187211522604</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID981\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID978\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID982\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID982\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID980\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID983\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"120\">-6.425433245485834 -20.00001212795564 -4.32388128207585 -14.06887039043778 -5.629060832817041 -20.16055024897072 -3.610391638133557 -14.29897361281646 -3.600610863927081 -12.38904113597162 -2.982122386725945 -11.16788361953795 -2.877321672698945 -12.67215376661415 -2.258842582037208 -11.4510186977769 -2.156041200933601 -10.13969745661595 -1.547887303772093 -10.63899816275007 -1.472992104737583 -9.736992302315027 -1.393422409009268 -8.766741022896534 -1.215528711540519 -6.648138052462246 -0.1147598324848787 -10.49443800458955 -1.198492142265195 -5.712091593480277 -0.08553014833978972 -5.880332193704978 1.02924344771786 -5.77682455434737 1.034377884849387 -6.712951942821705 1.185360373440858 -8.832837379884129 1.252530450429137 -9.803638625415397 1.315964684678752 -10.70622398827427 1.930445109493735 -10.2117235234207 2.016557223285633 -11.52379262397881 2.619482817920047 -12.7497492002406 2.743403913001568 -11.2463545094255 3.331770984800639 -14.38222820365034 3.34628257493822 -12.47232526311665 4.048226775239526 -14.15776759814488 5.275854736254216 -20.25943781854545 6.074311336163872 -20.10514721805505 2.024113387619763 -7.07888379907244 2.637927368127108 -10.12971890927273 3.037155668081936 -10.05257360902752 1.66588549240032 -7.191114101825169 1.67314128746911 -6.236162631558325 1.371701956500784 -5.623177254712751 1.309741408960023 -6.374874600120302 0.9652225547468674 -5.105861761710349 1.008278611642817 -5.761896311989403 0.657982342339376 -5.353111994137136 0.6262652252145684 -4.901819312707699 -0.05737991624243935 -5.247219002294777 0.592680186720429 -4.416418689942065 0.5171889424246934 -3.356475971410852 0.5146217238589301 -2.888412277173685 -0.04276507416989486 -2.940166096852489 -0.5992460711325975 -2.856045796740138 -0.6077643557702595 -3.324069026231123 -0.7739436518860465 -5.319499081375033 -0.7364960523687913 -4.868496151157514 -0.6967112045046342 -4.383370511448267 -1.0780206004668 -5.069848728307975 -1.129421291018604 -5.725509348888448 -1.491061193362973 -5.583941809768977 -1.438660836349472 -6.336076883307075 -1.805195819066778 -7.149486806408228 -1.80030543196354 -6.194520567985809 -2.161940641037925 -7.034435195218892 -2.814530416408521 -10.08027512448536 -3.212716622742917 -10.00000606397782</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID983\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID979\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID977\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID978\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 3 3 5 5 6 6 6 6 5 5 7 7 5 5 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 11 11 12 12 10 10 10 10 12 12 9 9 9 9 12 12 13 13 12 12 14 14 13 13 14 14 15 15 13 13 15 15 16 16 13 13 16 16 17 17 13 13 17 17 18 18 13 13 18 18 19 19 13 13 13 13 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 22 22 21 21 23 23 21 21 24 24 23 23 23 23 24 24 25 25 24 24 26 26 25 25 26 26 27 27 25 25 25 25 27 27 28 28 29 29 28 28 27 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID979\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID980\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">30 30 31 31 32 32 31 31 30 30 33 33 33 33 30 30 34 34 33 33 34 34 35 35 33 33 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 39 39 37 37 40 40 39 39 40 40 41 41 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 41 41 44 44 45 45 41 41 45 45 46 46 41 41 46 46 47 47 41 41 47 47 48 48 48 48 47 47 49 49 49 49 47 47 50 50 48 48 49 49 51 51 48 48 51 51 52 52 52 52 51 51 53 53 52 52 53 53 54 54 54 54 53 53 55 55 55 55 53 53 56 56 55 55 56 56 57 57 55 55 57 57 58 58 58 58 57 57 59 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID979\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID980\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID984\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID985\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID989\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165424 -0.2916716979171949 1.291222292082693 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165441 -0.2095474554515417 1.030634983432492 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165424 -0.153253561834532 0.921366201489491 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.09696623879520416 0.8816322286696736 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 -0.003037484196966034 0.8617647541597078 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 0.09088939309335409 0.8816322286696741 -0.4343304285165477 0.1471814094024708 0.9213662014894914 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165477 0.2034706097497008 1.030634983432492 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.2856924722266216 1.291222292082693 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165477 -0.2360348620683812 1.007456838878625 -0.4343304285165459 -0.1731248660526263 0.8948767861531906 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4343304285165477 -0.3216081884900744 1.282259723755259 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4343304285165477 0.3156233308757805 1.28225972375526 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4343304285165477 0.2299594243474685 1.007456838878626 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4343304285165424 0.1670494283317261 0.8948767861531901 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4343304285165406 -0.003037484196967588 0.8286532478124387 -0.4343304285165424 0.104136616354108 0.8452090760783912 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4343304285165477 -0.1102106460940886 0.8452090760783892 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086226 -0.116167813416725 0.8316663270065874</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID989\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID986\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID990\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.6658892428368299 -0.6885143064564592 -0.2872969997737087 -0.6729311871649365 -0.562029832840137 -0.4809221187868957 -0.6630779028754261 -0.686790694066647 -0.2977351797517055 0.6630779028754261 0.686790694066647 0.2977351797517055 0.6729311871649365 0.562029832840137 0.4809221187868957 0.6658892428368299 0.6885143064564592 0.2872969997737087 -0.6145076962834851 -0.7533304730451725 -0.23425091160954 -0.6113217468963009 -0.7555949016953774 -0.2352914497035711 0.6113217468963009 0.7555949016953774 0.2352914497035711 0.6145076962834851 0.7533304730451725 0.23425091160954 -0.6630217725658703 0.6867913760071885 -0.2978585821254177 -0.614536014802447 0.753238837863779 -0.234471191501963 -0.6113552837420216 0.7554994400131816 -0.2355107496070638 0.6113552837420216 -0.7554994400131816 0.2355107496070638 0.614536014802447 -0.753238837863779 0.234471191501963 0.6630217725658703 -0.6867913760071885 0.2978585821254177 -0.6729662109479289 0.5620113969532229 -0.480894654386046 -0.6658367060927759 0.6885118877851151 -0.2874245313088283 0.6658367060927759 -0.6885118877851151 0.2874245313088283 0.6729662109479289 -0.5620113969532229 0.480894654386046 -0.6289247236154029 0.4714099301382881 -0.6182445873538268 -0.6701069292073644 0.5661758691150767 -0.4800016548513805 0.6701069292073644 -0.5661758691150767 0.4800016548513805 0.6289247236154029 -0.4714099301382881 0.6182445873538268 -0.6193819127185333 0.1198559305827131 -0.7758869776593 -0.6586069297905275 -2.229606074873209e-006 -0.7524871507387512 -0.6252698128776827 0.1206693193046023 -0.7710230713036228 0.6252698128776827 -0.1206693193046023 0.7710230713036228 0.6586069297905275 2.229606074873209e-006 0.7524871507387512 0.6193819127185333 -0.1198559305827131 0.7758869776593 -0.6193686517759511 -0.1198585530154133 -0.7758971584342167 -0.6252581822364834 -0.120672201244489 -0.7710320521178985 0.6252581822364834 0.120672201244489 0.7710320521178985 0.6193686517759511 0.1198585530154133 0.7758971584342167 -0.67006535899179 -0.5661918537004904 -0.4800408310575318 -0.6288757300373609 -0.4714242768409007 -0.6182834846371121 0.6288757300373609 0.4714242768409007 0.6182834846371121 0.67006535899179 0.5661918537004904 0.4800408310575318 -0.6220449068117597 0.4728131159400871 -0.6241056731873016 0.6220449068117597 -0.4728131159400871 0.6241056731873016 -0.6632952763355497 -2.144258925662945e-006 -0.7483577863471115 0.6632952763355497 2.144258925662945e-006 0.7483577863471115 -0.6219938106167091 -0.472827546613443 -0.6241456646633203 0.6219938106167091 0.472827546613443 0.6241456646633203</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID990\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID988\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID991\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">-3.156233308757805 10.08710982687471 -2.856924722266216 10.15761536438385 -2.299594243474685 7.925327132511855 -2.034706097497008 8.107661869668936 -1.670494283317261 7.039697384405096 -1.471814094024708 7.248080785050666 -1.04136616354108 6.648978065150011 -0.9088939309335409 6.935506865534769 0.03037484196966032 6.779216066056368 0.03037484196967586 6.518738882791184 0.9696623879520416 6.935506865534766 1.102106460940886 6.648978065149996 1.53253561834532 7.248080785050663 1.731248660526263 7.039697384405099 2.095474554515417 8.10766186966894 2.360348620683812 7.925327132511852 2.916716979171949 10.15761536438385 3.216081884900745 10.0871098268747 -1.168223810341762 8.705845242068937 -1.852121515551163 7.788450679867976 -1.40781128757764 8.740863958144171 -1.127976746028978 10.74215769727934 -1.891963265655392 8.548125708057006 -1.353723762346343 10.77235392063934 1.92977610017306 8.539773730394375 1.165152667342891 10.73392563091469 1.390907857481091 10.76412350460084 1.895306010249322 7.775979783153745 1.211452728307992 8.693382385382428 1.451024695764368 8.728401408360952 1.117617843992585 7.784976980384649 1.633385363252757 7.302298032340775 0.9074623347642705 7.685547256742304 -0.197239063084682 6.918126269644701 0.8549824061199894 6.711683130854517 -0.2901796556002942 6.749254765222319 -0.7953736304985473 6.718676308614904 0.2568369789646587 6.925123544849952 0.3497466618996286 6.756248688697456 -1.06798004515442 7.800983242129445 -0.8578410112294874 7.701550924618476 -1.583745696748875 7.318291702219283 -1.310273488089885 8.50145099047988 -1.55024617473669 8.534797514554935 -0.7399734769562733 10.71852904030233 -1.095319278789253 8.705805411636872 -1.566410502550131 7.70517274122652 -1.78574637488333 7.791442475072095 1.591962985362013 8.527737177369552 1.352006114122691 8.494388859175095 0.7810767299616233 10.71158619287857 1.829089859934408 7.779452862022374 1.609739214986294 7.693184525529069 1.138657808235052 8.693800988211841 1.799210093489108 7.202159495554009 1.642118984845298 7.065808738801556 1.08537548281971 7.599211858902786 -0.303908425543867 6.890972967685572 0.8413662356912078 6.855588981904453 0.8075133592585561 6.667004022123 -1.751077057674244 7.220075955278533 -1.037267018645942 7.617144552937642 -1.594006231623408 7.083719623542236 -0.7478615787589549 6.673632464807028 -0.7817156750263035 6.862217289076101 0.3635172617960516 6.897601249431154</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID991\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID987\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID985\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID986\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"64\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 3 3 5 5 4 4 4 4 5 5 6 6 5 5 7 7 6 6 7 7 8 8 6 6 6 6 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 17 17 15 15 16 16 18 16 19 15 20 17 19 15 18 16 21 14 19 15 21 14 22 13 22 13 21 14 23 12 22 13 23 12 24 11 24 11 23 12 25 10 24 11 25 10 26 9 26 9 25 10 27 8 26 9 27 8 28 6 28 6 27 8 29 7 28 6 29 7 30 5 28 6 30 5 31 4 31 4 30 5 32 3 31 4 32 3 33 2 33 2 32 3 34 1 33 2 34 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 42 21 38 22 43 23 44 23 39 22 45 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 53 28 46 29 51 29 54 28 55 27 52 30 56 31 57 32 58 32 59 31 55 30 60 33 61 34 62 35 63 35 64 34 65 33 61 36 66 37 67 38 68 38 69 37 64 36 37 39 70 40 71 41 72 41 73 40 40 39 36 42 38 43 42 44 45 44 39 43 41 42 36 45 70 46 37 47 40 47 73 46 41 45 46 48 53 49 47 50 50 50 54 49 51 48 52 51 57 52 53 53 54 53 58 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 62 57 61 58 76 59 77 59 64 58 63 57 71 60 70 61 78 62 79 62 73 61 72 60 76 63 61 64 67 65 68 65 64 64 77 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID987\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID988\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID992\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID993\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID997\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529315 0.2950461588838496 0.867903325745601 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529351 0.4098294577175903 1.248308835495664 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5150356702529333 0.2705824901930551 0.4934440386130647 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5150356702529333 0.1971952387364679 0.3824232402907918 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5150356702529351 0.16114341764961 0.3317678409788409 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529244 0.133218931828335 0.4106485647045033 -0.5150356702529333 0.1106382029703872 0.354197089861599 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.5150356702529315 0.1802609827421979 0.5348413813326822 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.5150356702529324 0.2310670360138509 0.670324327726349 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529333 0.2574112979026264 0.7512375000867444 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5150356702529253 0.4927754917204619 1.216847182431252 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5150356702529297 0.3533778702362138 0.8509674552665276 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5150356702529244 0.3189794693172454 0.7416781731211573 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5150356702529315 0.2976053988909622 0.6578297172063685 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5150356702529333 0.2915820564645328 0.58188386402736 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5150356702529333 0.3044538181434562 0.538604933136582 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.529859118780335 0.3113782683662678 0.5398843184766523</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID997\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID994\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID998\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1088414049293589 -0.947410974285598 0.3009418455054356 -0.1152736558224273 -0.9514554511327701 0.2853848432959771 -0.1164409580977757 -0.9514088463688938 0.2850661507936061 0.1164409580977757 0.9514088463688938 -0.2850661507936061 0.1152736558224273 0.9514554511327701 -0.2853848432959771 0.1088414049293589 0.947410974285598 -0.3009418455054356 -0.1108291057697727 -0.947976074128154 0.2984263262429192 0.1108291057697727 0.947976074128154 -0.2984263262429192 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170025511882888 -0.9430258041624864 0.3114686753096171 0.1170025511882888 0.9430258041624864 -0.3114686753096171 -0.5580530298785489 -0.6868819057170897 0.4655857208311168 -0.5144747560634457 -0.7170989215866322 0.4701966206096629 -0.4971366770465531 -0.7227409499224468 0.4801048256790497 0.4971366770465531 0.7227409499224468 -0.4801048256790497 0.5144747560634457 0.7170989215866322 -0.4701966206096629 0.5580530298785489 0.6868819057170897 -0.4655857208311168 -0.5451847648562986 -0.6795279363612947 0.4909331480692076 -0.5583224479878474 -0.6848994354787804 0.4681760431223551 0.5583224479878474 0.6848994354787804 -0.4681760431223551 0.5451847648562986 0.6795279363612947 -0.4909331480692076 -0.1319019164971365 -0.9175016921677499 0.375223305904228 -0.1366215138279231 -0.9197698814859678 0.3679102160455122 -0.132187031375201 -0.9230309666043481 0.3613037827447346 0.132187031375201 0.9230309666043481 -0.3613037827447346 0.1366215138279231 0.9197698814859678 -0.3679102160455122 0.1319019164971365 0.9175016921677499 -0.375223305904228 -0.1289849043901566 -0.9215886923010116 0.3661108802840657 -0.1268997631170716 -0.9278451148530309 0.3507134057377864 0.1268997631170716 0.9278451148530309 -0.3507134057377864 0.1289849043901566 0.9215886923010116 -0.3661108802840657 -0.1240889977263835 -0.935968365345372 0.3294922453047622 -0.1260530155511802 -0.927743067690427 0.3512882543194544 -0.1256997483470361 -0.9362686863122588 0.3280251824122791 0.1260530155511802 0.927743067690427 -0.3512882543194544 0.1256997483470361 0.9362686863122588 -0.3280251824122791 0.1240889977263835 0.935968365345372 -0.3294922453047622 -0.1211640169608956 -0.9438046778011408 0.3074931074911838 0.1211640169608956 0.9438046778011408 -0.3074931074911838 -0.5535665584026356 -0.7852409048141928 0.2774180722751294 -0.6307922097387901 -0.7250610588406663 0.2763831562988343 -0.6328548543715852 -0.7235364593406309 0.2756623392905591 0.6328548543715852 0.7235364593406309 -0.2756623392905591 0.6307922097387901 0.7250610588406663 -0.2763831562988343 0.5535665584026356 0.7852409048141928 -0.2774180722751294 -0.5040203107265815 -0.8294161793038206 0.2408989993423235 -0.5497036183937712 -0.7888062471367417 0.2749738831286428 0.5497036183937712 0.7888062471367417 -0.2749738831286428 0.5040203107265815 0.8294161793038206 -0.2408989993423235 -0.460851692936173 -0.8753739730121579 0.146068903229857 -0.4985502972453628 -0.8325691162757212 0.2414047798624232 0.4985502972453628 0.8325691162757212 -0.2414047798624232 0.460851692936173 0.8753739730121579 -0.146068903229857 -0.4569279317681941 -0.8856200811699702 -0.08302973562848467 -0.4572416734112509 -0.8756361354271367 0.1555358814881895 0.4572416734112509 0.8756361354271367 -0.1555358814881895 0.4569279317681941 0.8856200811699702 0.08302973562848467 -0.4286788938903839 -0.8665692927857499 -0.2555231236771386 -0.4542038175253678 -0.8845680751983658 -0.1060104357374351 0.4542038175253678 0.8845680751983658 0.1060104357374351 0.4286788938903839 0.8665692927857499 0.2555231236771386 -0.3064282572468343 -0.7615096868410569 0.5711433445361185 -0.3524105864353466 -0.7559917297368691 0.5516187842502752 0.3524105864353466 0.7559917297368691 -0.5516187842502752 0.3064282572468343 0.7615096868410569 -0.5711433445361185 -0.5412831574712219 -0.6807737084399571 0.4935176808736367 0.5412831574712219 0.6807737084399571 -0.4935176808736367 -0.4272120245077655 -0.8674148026834218 -0.2551106548179773 0.4272120245077655 0.8674148026834218 0.2551106548179773</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID998\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID996\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID999\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">-4.476007576609035 7.062446497286024 -5.610078521260624 10.18451102473239 -4.616909317180718 10.23948786492563 -4.457317962308713 7.070081426959296 -5.451980479202522 7.070081426959295 -5.582273135016021 10.1941861999994 -2.915820564645328 4.577486397015233 -2.705824901930551 3.881759770422776 -3.044538181434562 4.237025474007779 -4.927754917204618 9.572531168459182 -4.098294577175903 9.820029505899221 -3.533778702362138 6.694277314763351 -3.189794693172454 5.834534961886438 -2.976053988909622 5.174927108690099 -2.950461588838496 6.827506162532062 -2.574112979026264 5.90973500068239 -2.310670360138509 5.273218044780612 -1.971952387364679 3.008396156954229 -1.802609827421979 4.207418866483767 -1.6114341764961 2.609907015700216 -1.33218931828335 3.230435375675426 -1.106382029703872 2.786350440244579 -4.414598464887224 6.126107772952492 -5.451980479202522 7.061712810444018 -4.457317962308713 7.061712810444016 -5.33596872995056 2.130714035845917 -5.924772333389478 3.074542164180131 -5.763048222846655 3.122267891642199 -4.987916614829788 1.512708834556799 -5.377440342691845 1.899378453086448 -5.218756704377096 1.966856877840273 -4.260154754836963 2.720485635982612 -5.257018934731138 2.688642967424494 -5.29019606874273 3.166224867289707 -4.288675503379187 3.206941579033968 -5.285625910594948 3.191125460069592 -5.351085900066831 4.23457763899701 -4.41979236804897 5.428040042772467 -4.351493664629199 4.291039244739512 -5.414233208841241 5.380670171341812 -5.345933874498217 4.243665053434983 -4.415291528805324 5.454552311874554 -5.409786663689427 5.40789315121728 -5.444478208186572 6.07674149299513 -4.438155718111392 6.116919218057375 -5.432744773063641 6.08583337300607 -5.479987793634328 7.049459215875197 -6.203185173507943 6.276398871968053 -7.302381745519437 9.220150285118146 -7.120928170141183 9.270667048401974 -6.05090352278245 5.589542698505411 -6.416833798944759 6.43548686015438 -6.246087340236969 6.477690060269889 -5.947800219407116 5.041376582275624 -6.225849311089496 5.691759027822195 -6.057282581899993 5.716607486391731 -5.942953322128933 5.176183896234631 -5.915069665924102 4.577268658835078 -6.110213799958335 5.176780817884009 -5.968821493453951 4.011867773493208 -6.078344164688114 4.355576795346951 -5.911078840908683 4.364150946875863 -5.914572748051512 3.883135267461919 -5.788129089640393 3.450333224929001 -6.077940492615052 3.895396330804702 -5.764906912468319 3.140463050621411 -5.926698155432084 3.092878339107605 -6.122288302219893 3.554007002763703 -5.25185851333697 2.085897937376482 -5.411299025384771 2.019532791723905 -5.870819298278879 3.017708812526331 -5.03425269375542 1.515196952579786 -5.20087948499223 1.469582089575572 -5.418215817904647 1.905293193501272 -4.257505459531929 2.720014403967389 -5.286018809997048 3.167931777298792 -4.289073233445126 3.18393522163202 -4.285980849598744 3.209841492506433 -5.34638380163261 4.238759873238242 -4.351952313245739 4.286247223369609 -4.405753380254583 5.457778096002004 -5.433512735694054 6.081425640721875 -4.438928614152006 6.112609013456504 -6.244958820165806 6.356114253185693 -6.415450211855801 6.313277663626342 -7.23775406617386 9.323170269276911 -6.058025690602193 5.628878803242282 -6.226509457877878 5.603684553087598 -6.408634890764557 6.478828975510515 -5.942758739870094 5.081091340191565 -6.110019128929388 5.081703461357701 -6.210238106228282 5.734211264659076 -5.91599523908132 4.575875699918768 -6.083282415819649 4.567569574095214 -6.111403487118982 5.175334618298088 -5.965547817296141 4.005385117475852 -6.129123088814952 4.015794026888997 -6.075915714967462 4.348926781517354</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID999\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID995\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID993\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID994\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 0 3 6 4 1 5 4 5 7 4 5 3 8 6 9 7 10 8 11 9 12 10 13 11 13 11 12 10 14 12 14 12 12 10 15 13 12 10 16 14 15 13 15 13 16 14 8 6 8 6 16 14 9 7 16 14 17 15 9 7 17 15 18 16 9 7 9 7 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 7 30 7 29 16 31 15 30 7 31 15 32 14 30 7 32 14 33 6 33 6 32 14 34 13 34 13 32 14 35 10 34 13 35 10 36 12 36 12 35 10 37 11 37 11 35 10 38 9 39 8 30 7 33 6 40 22 6 23 0 24 5 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 49 29 42 30 47 30 50 29 51 28 52 31 53 32 54 33 55 33 56 32 57 31 58 34 54 35 59 36 60 36 55 35 61 34 62 37 63 38 64 39 59 40 64 39 63 38 65 38 66 39 60 40 66 39 65 38 67 37 62 41 64 42 68 43 69 43 66 42 67 41 40 44 68 45 6 46 7 46 69 45 41 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 77 51 70 52 75 52 78 51 79 50 80 53 81 54 76 55 79 55 82 54 83 53 80 56 84 57 85 58 86 58 87 57 83 56 88 59 89 60 84 61 87 61 90 60 91 59 92 62 44 63 93 64 94 64 45 63 95 62 44 65 43 66 93 67 94 67 46 66 45 65 42 68 49 69 43 70 46 70 50 69 47 68 48 71 96 72 49 73 50 73 97 72 51 71 52 74 54 75 58 76 61 76 55 75 57 74 58 77 59 78 63 79 65 79 60 78 61 77 62 80 68 81 40 82 41 82 69 81 67 80 70 83 77 84 71 85 74 85 78 84 75 83 76 86 81 87 77 88 78 88 82 87 79 86 80 89 85 90 81 91 82 91 86 90 83 89 84 92 89 93 85 94 86 94 90 93 87 92 88 95 98 96 89 97 90 97 99 96 91 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID995\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID996\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1000\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1001\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1005\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529244 -0.4158114993700223 1.248308835495662 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529315 -0.3010244459204613 0.8679033257456017 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529324 -0.2633905235931875 0.7512375000867444 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.5150356702529324 -0.1862425550676504 0.5348413813326828 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.5150356702529342 -0.1391990961728664 0.4106485647045036 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.5150356702529244 -0.1166188366418925 0.3541970898615994 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529315 -0.2031777497158823 0.3824232402907913 -0.5150356702529351 -0.1671278059369284 0.3317678409788408 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5150356702529333 -0.2765668784803664 0.4934440386130626 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529315 -0.2975650367709245 0.58188386402736 -0.5150356702529333 -0.310435390468914 0.5386049331365819 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5150356702529368 -0.3035846245815373 0.6578297172063693 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5150356702529351 -0.32495779390001 0.741678173121159 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.515035670252936 -0.3593575840268438 0.8509674552665277 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5150356702529244 -0.4987579839267953 1.216847182431252 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.5150356702529315 -0.2370486083393127 0.670324327726347 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803385 -0.3173598406917275 0.5398843184766525</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1005\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1002\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1006\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1152785401318226 0.9514539780096277 0.2853877816493387 -0.1088253784222441 0.9474097604849766 0.3009514624471104 -0.1164499499977552 0.9514072021990337 0.2850679651404685 0.1164499499977552 -0.9514072021990337 -0.2850679651404685 0.1088253784222441 -0.9474097604849766 -0.3009514624471104 0.1152785401318226 -0.9514539780096277 -0.2853877816493387 -0.1108158709414702 0.9479756505698795 0.2984325864815992 0.1108158709414702 -0.9479756505698795 -0.2984325864815992 -0.1170020873176061 0.9430265699053393 0.3114665311327904 0.1170020873176061 -0.9430265699053393 -0.3114665311327904 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211732142097103 0.9438073403036035 0.3074813108908012 0.1211732142097103 -0.9438073403036035 -0.3074813108908012 -0.1321716117428985 0.9230345567260386 0.3613002520603185 -0.1289786499144217 0.9215964103368728 0.3660936551218056 -0.1269033028027753 0.9278449706028746 0.3507125065701218 0.1269033028027753 -0.9278449706028746 -0.3507125065701218 0.1289786499144217 -0.9215964103368728 -0.3660936551218056 0.1321716117428985 -0.9230345567260386 -0.3613002520603185 -0.1365916059617619 0.9197763476074805 0.3679051556619317 -0.1318868020555722 0.9175152480092108 0.3751954705405586 0.1318868020555722 -0.9175152480092108 -0.3751954705405586 0.1365916059617619 -0.9197763476074805 -0.3679051556619317 -0.5582998943323946 0.6849160643720522 0.4681786120206002 -0.5451072798952581 0.6795683929083647 0.4909631888086266 -0.5580352589138925 0.686896283790861 0.4655858085500564 0.5580352589138925 -0.686896283790861 -0.4655858085500564 0.5451072798952581 -0.6795683929083647 -0.4909631888086266 0.5582998943323946 -0.6849160643720522 -0.4681786120206002 -0.5144099610105722 0.7171316315973716 0.4702176251222334 -0.497074599178697 0.7227721921072363 0.4801220690281148 0.497074599178697 -0.7227721921072363 -0.4801220690281148 0.5144099610105722 -0.7171316315973716 -0.4702176251222334 -0.3064402809272837 0.7615293823458688 0.5711106320575088 -0.352403313346486 0.7560131466980314 0.5515940778889484 0.352403313346486 -0.7560131466980314 -0.5515940778889484 0.3064402809272837 -0.7615293823458688 -0.5711106320575088 -0.4540888561829713 0.8846296580586545 -0.1059890502526975 -0.4286481079664477 0.8665788463267886 -0.2555423695509543 -0.4568215763294453 0.8856767481496878 -0.08301051250820768 0.4568215763294453 -0.8856767481496878 0.08301051250820768 0.4286481079664477 -0.8665788463267886 0.2555423695509543 0.4540888561829713 -0.8846296580586545 0.1059890502526975 -0.4610442893976508 0.8752815563959685 0.1460149315887465 -0.4574195148530338 0.8755517285042376 0.1554881286299919 0.4574195148530338 -0.8755517285042376 -0.1554881286299919 0.4610442893976508 -0.8752815563959685 -0.1460149315887465 -0.4986342763500318 0.8325237471962924 0.2413877975439595 -0.5040953384354201 0.8293748738257591 0.2408842220532205 0.5040953384354201 -0.8293748738257591 -0.2408842220532205 0.4986342763500318 -0.8325237471962924 -0.2413877975439595 -0.5497405090277223 0.7887818631232486 0.2749700804483234 -0.5535993933396806 0.7852192614320004 0.2774138121473434 0.5535993933396806 -0.7852192614320004 -0.2774138121473434 0.5497405090277223 -0.7887818631232486 -0.2749700804483234 -0.6307142225357303 0.7251185372018276 0.2764103407932322 -0.6327739567192011 0.7235964141618628 0.2756906765018007 0.6327739567192011 -0.7235964141618628 -0.2756906765018007 0.6307142225357303 -0.7251185372018276 -0.2764103407932322 -0.1257158798169777 0.9362722954747478 0.3280086984948568 -0.1241004601015495 0.9359706713431454 0.329481377604328 0.1241004601015495 -0.9359706713431454 -0.329481377604328 0.1257158798169777 -0.9362722954747478 -0.3280086984948568 -0.1260584581940911 0.9277432077180657 0.3512859314728144 0.1260584581940911 -0.9277432077180657 -0.3512859314728144 -0.5411915379110214 0.6808183023324969 0.4935566416355883 0.5411915379110214 -0.6808183023324969 -0.4935566416355883 -0.4272108780820152 0.8674072480996509 -0.2551382597584773 0.4272108780820152 -0.8674072480996509 0.2551382597584773</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1006\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1004\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1007\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">5.617378929991789 10.19781422708152 4.483294934126929 7.075747942042431 4.624208775236756 10.25279109822444 5.458721422938665 7.083520870205004 4.464061036837125 7.083520870205009 5.588996955066634 10.20763462219114 4.421346952999289 6.140815188881417 4.464061036837125 7.076423884248999 5.458721422938665 7.076423884248994 2.975650367709245 4.577486397015233 3.10435390468914 4.237025474007778 2.765668784803665 3.88175977042276 1.166188366418925 2.786350440244582 1.391990961728664 3.230435375675429 1.671278059369284 2.609907015700215 1.862425550676504 4.207418866483772 2.031777497158823 3.008396156954226 2.370486083393128 5.273218044780597 2.633905235931875 5.90973500068239 3.010244459204613 6.827506162532067 3.035846245815374 5.174927108690105 3.2495779390001 5.834534961886451 3.593575840268438 6.694277314763352 4.158114993700223 9.82002950589921 4.987579839267953 9.572531168459182 5.440259090957746 6.100053721609197 4.445669499516969 6.131139493031489 5.487502565849463 7.063677282062665 5.293941409287112 3.207493381871648 4.296992243910657 3.223309561720638 5.359399117465306 4.250949577599662 5.265793053665141 2.705818470045893 4.268933211202332 2.737661070040306 5.298962164022343 3.183399341581381 5.415796362687616 1.916808604102276 5.026294682284743 1.530141409702067 5.257114503965267 1.984286605816789 5.959649671694621 3.092759185175174 5.370891361201542 2.148913571710389 5.797934195308944 3.14048579679244 5.810472141374266 3.475336991400121 5.936906742911044 3.908127033707534 6.100274528703595 3.920387757089989 6.105118350408258 4.344603273888446 5.995585169795275 4.000895026903539 5.937866076838642 4.353177406087491 5.942823095099554 4.580127261937448 5.970701324597152 5.179040319610356 6.137981372295337 5.179637239087242 6.256494040726642 5.700328114675888 5.978424246796603 5.049948518067148 6.087918494432243 5.725176464399121 6.450770346717195 6.445144142728336 6.084814463887035 5.599199516900355 6.280019180205057 6.487347366001216 7.341713869329332 9.230007304171149 6.242625006838358 6.286231003209693 7.160276736564839 9.280524494546649 5.417699803672306 5.422201727503866 4.423201973780691 5.468860483384689 5.452393926001093 6.09104426690505 4.427849072468621 5.444266645087963 5.422292833750023 5.396900100893685 4.359547899167656 4.307272427779807 5.353987874597794 4.259895192131318 5.441051096828423 6.096071898312635 4.413290633479596 5.472425483488996 4.446466439651513 6.127255214550647 5.354449558780775 4.25527680367496 4.294045878582681 3.226357187596779 4.360018074793429 4.302764210820874 5.294372291942167 3.185641304488297 4.265866408531684 2.73773186676205 4.297427948320241 3.201644465293737 5.44874766786911 2.036131675611467 5.289309405852778 2.102497103108806 5.908260563923147 3.034311935547308 5.238326230219618 1.487875929105176 5.071713689974774 1.533491951675666 5.455634220373443 1.92359810915547 5.961466416325745 3.111003021527154 5.799683556714631 3.158588099668047 6.157026842955437 3.572135238052842 6.155552762072252 4.004986074229297 5.991977498616147 3.994577086405462 6.102338909262918 4.338121338358671 6.111197565143103 4.570475749670344 5.943923440480776 4.578781900045646 6.13932621225063 5.17824259034208 6.137747467825764 5.091185061900924 5.970467508847646 5.090572949560249 6.23799435261363 5.743683457483806 6.257702125498454 5.614333098042479 6.089209544512898 5.639527272863173 6.439857234582204 6.489474903673819 6.450219087665467 6.324748101400834 6.279722914979196 6.367584550843858 7.272565028641802 9.334630861843838</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID1007\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1003\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1001\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1002\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 1 7 6 8 7 8 4 7 9 6 10 9 11 10 12 11 13 12 14 13 15 14 14 13 16 15 15 14 15 14 16 15 17 16 16 15 18 17 17 16 18 17 19 18 17 16 17 16 19 18 12 11 12 11 19 18 10 9 19 18 20 19 10 9 10 9 20 19 21 20 21 20 20 19 22 21 22 21 20 19 23 22 20 19 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 19 27 22 29 19 30 21 30 21 29 19 31 20 31 20 29 19 32 9 32 9 29 19 33 18 32 9 33 18 34 11 34 11 33 18 35 16 35 16 33 18 36 17 35 16 36 17 37 15 35 16 37 15 38 14 38 14 37 15 39 13 38 14 39 13 40 12 34 11 41 10 32 9 42 25 8 26 6 27 7 27 9 26 43 25 44 28 45 29 46 30 47 30 48 29 49 28 50 31 51 32 44 33 49 33 52 32 53 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 56 38 61 39 62 39 57 38 63 37 61 40 64 41 65 42 66 42 67 41 62 40 68 43 69 44 70 45 71 45 72 44 73 43 70 46 74 47 75 48 76 48 77 47 71 46 78 49 74 50 79 51 80 51 77 50 81 49 82 52 79 53 83 54 84 54 80 53 85 52 86 55 83 56 87 57 88 57 84 56 89 55 90 58 91 59 42 60 43 60 92 59 93 58 91 61 90 62 94 63 46 64 94 63 90 62 93 62 95 63 47 64 95 63 93 62 92 61 42 65 91 66 8 67 9 67 92 66 43 65 46 68 45 69 94 70 95 70 48 69 47 68 44 71 51 72 45 73 48 73 52 72 49 71 54 74 56 75 60 76 63 76 57 75 59 74 96 77 55 78 54 79 59 79 58 78 97 77 60 80 61 81 65 82 66 82 62 81 63 80 98 83 69 84 68 85 73 85 72 84 99 83 68 86 70 87 75 88 76 88 71 87 73 86 75 89 74 90 78 91 81 91 77 90 76 89 78 92 79 93 82 94 85 94 80 93 81 92 82 95 83 96 86 97 89 97 84 96 85 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1003\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1004\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1008\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1009\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1013\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165424 0.8214175023921375 0.444831751044773 -0.4343304285165441 0.8021211049481214 0.3786890871287496 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.9064802010625483 0.5335604941462859 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.12648379224095 0.6952470169740084 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.8138397114707947 0.2834007485965631 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.8631364655027487 0.2010175502779246 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165477 0.9189994418622993 0.1606845285043062 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.040627893432769 0.1429365815564421 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165477 1.31400950603756 0.1491819156431271 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165495 0.8759556250140577 0.5510855389395617 -0.4343304285165424 0.7899110943071706 0.4550182490366413 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4343304285165468 1.108282841508071 0.7206460167843709 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4343304285165424 1.027307042155825 0.1103550861646179 -0.4343304285165477 1.315255137381423 0.1179608771334282 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4343304285165504 0.9003990750986797 0.1332910955443645 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165486 0.7825205836228406 0.2726457642236555 -0.4343304285165424 0.832989678897887 0.1766608881379455 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4343304285165477 0.7633701656418384 0.3793850427168189 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 0.7486244376618725 0.3806234651983123</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1013\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1010\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1014\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.665978872098829 -0.4946710441241405 0.5583660985617809 -0.6729749463518688 -0.637361758729642 0.3753327991153409 -0.6631686390966892 -0.5040032000643614 0.5533426880727064 0.6631686390966892 0.5040032000643614 -0.5533426880727064 0.6729749463518688 0.637361758729642 -0.3753327991153409 0.665978872098829 0.4946710441241405 -0.5583660985617809 -0.6113023930812731 -0.4665479271234981 0.6392514496736599 -0.6144927450388785 -0.4648298128754873 0.6374416925152632 0.6144927450388785 0.4648298128754873 -0.6374416925152632 0.6113023930812731 0.4665479271234981 -0.6392514496736599 -0.6113024351803775 0.02089648161452121 -0.7911211473590341 -0.6629772102952537 -0.05946182801509716 -0.7462744197935675 -0.6144856224526448 0.02115082100305797 -0.788644446230291 0.6144856224526448 -0.02115082100305797 0.788644446230291 0.6629772102952537 0.05946182801509716 0.7462744197935675 0.6113024351803775 -0.02089648161452121 0.7911211473590341 -0.6729865574698508 -0.2722723663025976 -0.6877185848970954 -0.6657964087760006 -0.04905406275857674 -0.7445192012217402 0.6657964087760006 0.04905406275857674 0.7445192012217402 0.6729865574698508 0.2722723663025976 0.6877185848970954 -0.6289126479749136 -0.4316287370285187 -0.6466571847496542 -0.6701219898639051 -0.2700944235726152 -0.6913649695029515 0.6701219898639051 0.2700944235726152 0.6913649695029515 0.6289126479749136 0.4316287370285187 0.6466571847496542 -0.625235720980833 -0.6900477813844846 -0.3645742072828637 -0.6193536905515095 -0.6949069317223108 -0.3653838560261096 -0.6585492725804401 -0.7117353213657445 -0.2444293106486486 0.6585492725804401 0.7117353213657445 0.2444293106486486 0.6193536905515095 0.6949069317223108 0.3653838560261096 0.625235720980833 0.6900477813844846 0.3645742072828637 -0.6194174598878585 -0.7727236736317268 -0.1386367000298329 -0.6252889641002037 -0.7683994078132589 -0.1362940257191311 0.6252889641002037 0.7683994078132589 0.1362940257191311 0.6194174598878585 0.7727236736317268 0.1386367000298329 -0.6289491677379813 -0.7378166084535101 0.2450501921889897 -0.6701143216290043 -0.6378674916840043 0.3795679899576043 0.6701143216290043 0.6378674916840043 -0.3795679899576043 0.6289491677379813 0.7378166084535101 -0.2450501921889897 -0.6220235325541719 -0.4367230682693095 -0.6498920576451671 0.6220235325541719 0.4367230682693095 0.6498920576451671 -0.66322861238516 -0.7078364633944363 -0.2430953492004979 0.66322861238516 0.7078364633944363 0.2430953492004979 -0.6220739496306955 -0.7438120858740276 0.2444740928986038 0.6220739496306955 0.7438120858740276 -0.2444740928986038</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1014\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1012\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1015\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">-13.1400950603756 1.173564403059267 -10.40627893432769 1.124434441577344 -13.15255137381423 0.9279589001163017 -10.27307042155825 0.8681266778283273 -9.189994418622993 1.264051624233875 -9.003990750986796 1.048556618282334 -8.631364655027486 1.58133806218634 -8.32989678897887 1.389732320018504 -8.138397114707948 2.229419222292963 -8.021211049481213 2.979020818746164 -7.899110943071706 3.579476892421579 -7.825205836228406 2.14481334522609 -7.633701656418383 2.984495669372309 -11.2648379224095 5.469276533528866 -11.08282841508071 5.669081998703718 -9.064802010625483 4.197342553950783 -8.759556250140577 4.335206239657886 -8.214175023921374 3.499343108218881 -9.293499526711592 4.817014898978647 -8.826029735810842 3.819095263127729 -9.479935146563065 4.69355806947108 -9.598333715416914 4.269996002902563 -11.4451814866472 6.004559867052301 -11.27238326129256 6.122746934237442 -12.99649077872279 3.548711561631994 -10.11869071105481 3.450892066657108 -13.01122109678588 3.368945949801105 -10.93441203049134 1.86609666716912 -9.691000544009365 2.135289745490901 -10.9099599054405 1.675370038626291 -9.373139815182823 0.7689770988787354 -9.807669465111511 0.1722143048301494 -9.948650378751601 0.3300733873617702 -8.577158506658666 0.2520704532656712 -8.784749024975916 0.3368814101118945 -8.44894854732777 1.148049050310268 -8.283231792898336 1.754479953103737 -8.163454103892477 2.60234989713821 -7.929857688637407 2.612187149318454 -8.393267123014773 3.395516742139427 -8.575064803892623 4.009635864995857 -8.347904821053195 4.082333036170931 -9.538143212337962 4.122019508445817 -9.712549747783164 3.988124977535597 -11.4967703490366 5.776114209361791 -8.635265013996062 3.840908182472945 -8.857708853722354 3.759685808930915 -9.336631246940229 4.75423905497862 -10.099789347737 3.347976657609713 -10.11874372708642 3.156863270877688 -12.99262703403099 3.273043651450185 -10.88782026707182 1.734216017891711 -9.664307303095521 2.186591215072741 -9.576302614795329 2.006517442139522 -9.715984028727405 -0.1838898453009026 -9.313113161111691 0.4264642055287746 -9.120028776210594 0.3225903730954203 -8.362142656158987 1.254366929361164 -8.748456669163948 0.4045346212719758 -8.597687662062889 1.298337143620016 -7.995450381775688 3.494271011514753 -8.229032362201163 3.484223882823618 -8.171197827192739 4.170460074055694 -8.20339914665017 1.799521614731336 -8.439711847109324 1.84086418270131 -8.079339290991934 2.696767466467675</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID1015\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1011\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1009\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1010\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"64\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 9 9 10 10 8 8 7 7 8 8 11 11 8 8 10 10 11 11 12 12 11 11 10 10 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 10 10 17 17 9 9 17 17 10 10 18 10 19 17 20 9 19 17 18 10 21 16 19 17 21 16 22 15 22 15 21 16 23 14 22 15 23 14 24 13 18 10 25 11 26 12 25 11 18 10 27 8 25 11 27 8 28 7 27 8 18 10 20 9 28 7 27 8 29 6 28 7 29 6 30 5 30 5 29 6 31 4 30 5 31 4 32 3 32 3 31 4 33 1 32 3 33 1 34 2 34 2 33 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 38 21 42 22 43 23 44 23 45 22 39 21 46 24 47 25 48 26 49 26 50 25 51 24 47 27 52 28 53 29 54 29 55 28 50 27 56 30 57 31 52 32 55 32 58 31 59 30 60 33 61 34 62 35 63 35 64 34 65 33 62 36 66 37 67 38 68 38 69 37 63 36 70 39 37 40 71 41 72 41 40 40 73 39 36 42 38 43 43 44 44 44 39 43 41 42 71 45 37 46 36 47 41 47 40 46 72 45 47 48 53 49 48 50 49 50 54 49 50 48 53 51 52 52 57 53 58 53 55 52 54 51 57 54 56 55 74 56 75 56 59 55 58 54 76 57 60 58 62 59 63 59 65 58 77 57 78 60 70 61 71 62 72 62 73 61 79 60 76 63 62 64 67 65 68 65 63 64 77 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1011\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1012\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1016\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1017\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1021\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529333 0.9166790892866177 0.002844473477560339 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529315 1.313740525360347 0.01783747576205075 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5150356702529333 0.5545750788810404 -0.09564320604624665 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5150356702529315 0.4257382154934284 -0.06229470834853146 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5150356702529324 0.3661200976693986 -0.0446480140027461 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.5150356702529306 0.4316527116072848 0.007382278689149535 -0.5150356702529351 0.3709288218786411 0.01040321911016839 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.5150356702529342 0.5643938497996714 0.003227326959277521 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.5150356702529333 0.709032013858405 -0.0008195622340767539 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5150356702529324 0.7941139361618053 0.000545123284112492 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529333 0.9196091163788671 -0.05782648086132136 -0.5150356702529351 1.310922761281063 -0.07082930209864946 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5150356702529324 0.8050713318734761 -0.06079110204506377 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5150356702529324 0.718824051912405 -0.06780730569193616 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5150356702529333 0.645042096467938 -0.08677926208982001 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5150356702529333 0.6082881246769019 -0.1130093554980922 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.36399123050046 -0.05397436236353959</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1021\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1018\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1022\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1088382594273443 -0.0230925907380549 0.9937912082212393 -0.1152576241861024 -0.03911071598773939 0.9925653791876389 -0.1164223673367788 -0.03939636620354328 0.9924181370338092 0.1164223673367788 0.03939636620354328 -0.9924181370338092 0.1152576241861024 0.03911071598773939 -0.9925653791876389 0.1088382594273443 0.0230925907380549 -0.9937912082212393 -0.1108273234566798 -0.02565555069468248 0.9935084786220906 0.1108273234566798 0.02565555069468248 -0.9935084786220906 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170010640450718 -0.01171259707753706 0.993062720114908 0.1170010640450718 0.01171259707753706 -0.993062720114908 -0.49707423312389 0.2193373097837861 0.8395286482908776 -0.3523453743815874 0.2761690730154793 0.8941942631563176 -0.3063605024253654 0.292841831319583 0.9057521208272551 0.3063605024253654 -0.292841831319583 -0.9057521208272551 0.3523453743815874 -0.2761690730154793 -0.8941942631563176 0.49707423312389 -0.2193373097837861 -0.8395286482908776 -0.514413700169338 0.2117991293092924 0.830975134346339 -0.5580248035340664 0.2172606952515568 0.8008783359159973 0.5580248035340664 -0.2172606952515568 -0.8008783359159973 0.514413700169338 -0.2117991293092924 -0.830975134346339 -0.545145087248696 0.2436486159674788 0.8021547143698301 -0.5582941772828572 0.2203572971939314 0.7998439055124711 0.5582941772828572 -0.2203572971939314 -0.7998439055124711 0.545145087248696 -0.2436486159674788 -0.8021547143698301 -0.1366090766113033 0.0492215304934492 0.9894014357798807 -0.1321734375085311 0.04191912395636385 0.9903398252437945 -0.131888714653345 0.05687624445573066 0.9896314767446013 0.131888714653345 -0.05687624445573066 -0.9896314767446013 0.1321734375085311 -0.04191912395636385 -0.9903398252437945 0.1366090766113033 -0.0492215304934492 -0.9894014357798807 -0.1269026228341467 0.03033545622924269 0.9914512012263529 -0.1289755249516954 0.04693082498186052 0.9905366281112257 0.1289755249516954 -0.04693082498186052 -0.9905366281112257 0.1269026228341467 -0.03033545622924269 -0.9914512012263529 -0.124092777366998 0.0076289036136885 0.992241292446045 -0.126060444224836 0.03090911601848133 0.9915409174354799 -0.1257051481658395 0.006141985696806098 0.9920486337555757 0.126060444224836 -0.03090911601848133 -0.9915409174354799 0.1257051481658395 -0.006141985696806098 -0.9920486337555757 0.124092777366998 -0.0076289036136885 -0.992241292446045 -0.121164189425585 -0.01572761942446628 0.9925078746227056 0.121164189425585 0.01572761942446628 -0.9925078746227056 -0.6307579737542808 0.02590113406437414 0.7755472324749624 -0.6328191074081528 0.02571473448560696 0.7738725539321597 -0.5535966397540385 0.007327883701034462 0.8327527019310723 0.5535966397540385 -0.007327883701034462 -0.8327527019310723 0.6328191074081528 -0.02571473448560696 -0.7738725539321597 0.6307579737542808 -0.02590113406437414 -0.7755472324749624 -0.5497328291718073 0.003855971050269636 0.8353316395408592 -0.50401691956796 -0.04154329558212729 0.8626940937443589 0.50401691956796 0.04154329558212729 -0.8626940937443589 0.5497328291718073 -0.003855971050269636 -0.8353316395408592 -0.4610763548051719 -0.1461813753387184 0.8752368825316127 -0.4985583850107261 -0.04209033687011798 0.8658336677894066 0.4985583850107261 0.04209033687011798 -0.8658336677894066 0.4610763548051719 0.1461813753387184 -0.8752368825316127 -0.4568954263623595 -0.3661495419449712 0.8106670600824024 -0.4574584754158474 -0.1372954494769191 0.8785679841783102 0.4574584754158474 0.1372954494769191 -0.8785679841783102 0.4568954263623595 0.3661495419449712 -0.8106670600824024 -0.4286977599895537 -0.5231200390841958 0.736589203890804 -0.4541605407154716 -0.3875438698506286 0.8022144053794031 0.4541605407154716 0.3875438698506286 -0.8022144053794031 0.4286977599895537 0.5231200390841958 -0.736589203890804 -0.4272529523562543 -0.5230063251151536 0.7375088464502692 0.4272529523562543 0.5230063251151536 -0.7375088464502692 -0.5412401970068317 0.2456900208751192 0.8041737764851509 0.5412401970068317 -0.2456900208751192 -0.8041737764851509</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1022\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1020\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1023\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">-9.982481491239387 -0.7801007211882352 -14.09510292357247 -0.5039355294692868 -13.80735445879598 0.2458649066213103 -10.34526016737302 -1.466008715794491 -14.09879580861296 -0.4405539083059194 -9.988301163081676 -0.7356641740735505 -13.10922761281063 -0.5571905098427091 -13.13740525360347 0.1403214759947992 -9.196091163788671 -0.4549016494423948 -9.166790892866176 0.02237652469014133 -8.050713318734761 -0.478223336087835 -7.941139361618053 0.004288303168351604 -7.188240519124049 -0.5334174714432312 -7.090320138584049 -0.006447222908070464 -6.450420964679379 -0.6826635284399174 -6.082881246769018 -0.8890069299183254 -5.643938497996714 0.02538830541298317 -5.545750788810404 -0.7523932208971403 -4.316527116072848 0.05807392568797635 -4.257382154934284 -0.4900517056751142 -3.709288218786411 0.08183865699999136 -3.661200976693986 -0.3512310434882693 -8.25892496550161 -2.716294787433218 -9.56365659142571 -3.414782035487321 -9.444849024834038 -2.637915891572029 -0.4501075387385644 -5.702039180101661 -0.760980155205736 -6.138226240003666 -0.8383862270638492 -6.024387405365547 -3.036946117474684 -5.046749768110493 -3.11972454521867 -4.927496814587837 -1.931797432665722 -4.455539334599414 -1.39198761903897 -4.060249812509751 -1.840201626763001 -4.405347099302408 -1.942059996843278 -4.288237917025894 -1.743825325723805 -4.738097079607221 -2.315112412340436 -4.901759201329516 -2.072054116570976 -3.996942288506867 -3.006142084263772 -4.677607628037944 -4.29745234114743 -4.921683762233218 -3.210764357994353 -3.909876114437887 -6.045846395112246 -4.351127992404424 -4.63326543236224 -4.104402683678466 -5.817027785622174 -5.11390335315071 -4.404478357282174 -4.86718369880627 -7.68254055900837 -3.291082013018551 -8.526584459177135 -3.206102051772249 -7.574657362153948 -2.511963867763529 -8.639203837906873 -3.01900298997022 -9.850251925139794 -2.869509604712622 -8.486035206263603 -2.245302060931764 -12.8594219210069 -3.959341569141119 -12.88930466061255 -3.809766395600264 -8.979394940552526 -3.648259713923244 -9.376131742660215 -3.534536530901836 -9.391545189087976 -3.394260442828891 -8.247053604057138 -3.436684447776327 -7.8341142891939 -3.053992018602209 -8.7058236215713 -3.078954991981029 -8.688221694559164 -2.944754120167723 -8.040918009984427 -1.609661502807112 -8.793910115866449 -1.430479012716069 -8.706594682299912 -1.318227486458866 -7.846467309198026 0.203731956450229 -8.204757539203133 0.4184993788204998 -8.080882217779717 0.5073250354274762 -7.973663933481603 0.1708422317066539 -8.193916486682584 0.4584273007660447 -7.836967917690922 0.2422817623004304 -3.102673325396043 -5.034591316029415 -3.657392430113825 -5.248806784060694 -3.184266115108013 -4.914833768129049 -2.162892915154069 -4.393783806136414 -3.394592342438381 -4.827589234947812 -2.258730892786211 -4.273571014922622 -1.124263670823358 -4.256400851632963 -1.64240444746631 -4.486484675650029 -1.204920604791744 -4.132968849313659 -1.707878264920318 -5.051978381616294 -2.106744346024158 -4.33304282629061 -1.573574662755514 -4.13323415933467 -3.055364651970826 -3.986730453637497 -4.102647352655998 -5.023934951648005 -4.376892342551905 -4.270486949557792 -8.304432996410977 -3.546277958346702 -8.22936812025759 -2.7654805562517 -7.39868796456141 -2.814896261844453 -8.85003260959982 -4.105813515261139 -12.75388280914387 -4.321676615539797 -8.87990583956584 -3.966989383531663 -8.18877059368268 -3.727801701899872 -9.315494873795004 -3.699917069303213 -8.187762571847973 -3.592890692650113 -7.860413932309075 -3.269408970252542 -8.686391782372066 -3.170572816674207 -7.814820248641656 -3.142791349253691 -8.113196821760255 -1.740424407903711 -8.789396298041625 -1.445615269068238 -8.035881586078531 -1.62343299194266</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID1023\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1019\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1017\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1018\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 1 4 0 5 5 5 4 4 7 3 8 6 9 7 10 8 9 7 11 9 10 8 10 8 11 9 12 10 11 9 13 11 12 10 12 10 13 11 14 12 13 11 15 13 14 12 14 12 15 13 16 14 16 14 15 13 17 15 15 13 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 15 30 15 29 16 31 13 30 15 31 13 32 14 32 14 31 13 33 12 33 12 31 13 34 11 33 12 34 11 35 10 35 10 34 11 36 9 35 10 36 9 37 8 37 8 36 9 38 7 37 8 38 7 39 6 40 22 6 23 0 24 5 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 48 28 42 29 49 30 50 30 47 29 51 28 52 31 53 32 49 33 50 33 54 32 55 31 56 34 57 35 58 36 59 36 60 35 61 34 57 37 62 38 63 39 64 39 65 38 60 37 66 40 67 41 68 42 62 43 68 42 67 41 69 41 70 42 65 43 70 42 69 41 71 40 68 44 72 45 66 46 71 46 73 45 70 44 72 47 6 48 40 49 41 49 7 48 73 47 74 50 75 51 76 52 77 52 78 51 79 50 80 53 76 54 81 55 82 55 77 54 83 53 84 56 85 57 81 58 82 58 86 57 87 56 88 59 89 60 84 61 87 61 90 60 91 59 92 62 93 63 88 64 91 64 94 63 95 62 96 65 93 66 92 67 95 67 94 66 97 65 48 68 43 69 42 70 47 70 46 69 51 68 53 71 48 72 49 73 50 73 51 72 54 71 98 74 53 75 52 76 55 76 54 75 99 74 57 77 63 78 58 79 59 79 64 78 60 77 63 80 62 81 67 82 69 82 65 81 64 80 72 83 40 84 66 85 71 85 41 84 73 83 80 86 74 87 76 88 77 88 79 87 83 86 85 89 80 90 81 91 82 91 83 90 86 89 89 92 85 93 84 94 87 94 86 93 90 92 93 95 89 96 88 97 91 97 90 96 94 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1019\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1020\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1024\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1025\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1029\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5150356702529244 0.7230760792342645 0.5665991609466801 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 1.045577002727441 0.7987140163700137 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529244 0.6249633121797127 0.4931124684901532 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.5150356702529333 0.3431737630961593 0.2650311780672894 -0.5150356702529351 0.4453542058358802 0.3498602833145694 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.5150356702529333 0.2971172988345912 0.2253396136331378 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5150356702529315 0.295700400690178 0.3163729774700526 -0.5150356702529315 0.2594993336245468 0.2658211680085287 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5150356702529297 0.376863480279438 0.4218401358047584 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529244 0.453685698336594 0.4704256529622616 -0.5150356702529315 0.408577743896114 0.4685421499370358 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5150356702529297 0.5235605254682731 0.5007877667842989 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5150356702529244 0.5959241747873956 0.5482393148723758 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5150356702529324 0.688113622380909 0.6162685605985973 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5150356702529315 0.9888780236097874 0.8669437961270889 -0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.5150356702529333 0.5569883206520585 0.4419160665849533 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4075372647605544 0.4755073752876341</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1029\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1026\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1030\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1164251204271865 0.5786308311400867 -0.8072369866325796 -0.1152614763458105 0.5789463800012497 -0.8071777258782806 -0.1088481568860517 0.5923386087106918 -0.7983026063925831 0.1088481568860517 -0.5923386087106918 0.7983026063925831 0.1152614763458105 -0.5789463800012497 0.8071777258782806 0.1164251204271865 -0.5786308311400867 0.8072369866325796 -0.1108311632331452 0.590147562033904 -0.7996513667104105 0.1108311632331452 -0.590147562033904 0.7996513667104105 -0.1169877446230861 0.6008761854127825 -0.7907348970494391 0.1169877446230861 -0.6008761854127825 0.7907348970494391 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211500310125118 0.5973661817498072 -0.7927649808659082 0.1211500310125118 -0.5973661817498072 0.7927649808659082 -0.1268970330673193 0.6330602330777329 -0.763630725085285 -0.1321771951964776 0.641516467688795 -0.7556360306087073 -0.1289733966194932 0.6455983790150909 -0.7527075102438648 0.1289733966194932 -0.6455983790150909 0.7527075102438648 0.1321771951964776 -0.641516467688795 0.7556360306087073 0.1268970330673193 -0.6330602330777329 0.763630725085285 -0.1366192134527518 0.6467025975280807 -0.7504071833784541 -0.1318920760546484 0.6528924852832206 -0.7458792683368364 0.1318920760546484 -0.6528924852832206 0.7458792683368364 0.1366192134527518 -0.6467025975280807 0.7504071833784541 -0.5451959861481726 0.685035348561869 -0.4832058649360955 -0.5581385279990985 0.6633895104200506 -0.4983931590899352 -0.5584055108423882 0.6651998527735585 -0.4956737246726797 0.5584055108423882 -0.6651998527735585 0.4956737246726797 0.5581385279990985 -0.6633895104200506 0.4983931590899352 0.5451959861481726 -0.685035348561869 0.4832058649360955 -0.4970796441004287 0.6888461887919656 -0.5276388496005341 -0.5144129314214905 0.6776483658738426 -0.5255207210137955 0.5144129314214905 -0.6776483658738426 0.5255207210137955 0.4970796441004287 -0.6888461887919656 0.5276388496005341 -0.3065368645499978 0.7874550645024714 -0.5347426222597793 -0.3524751158962745 0.7672119047738485 -0.5358611628464889 0.3524751158962745 -0.7672119047738485 0.5358611628464889 0.3065368645499978 -0.7874550645024714 0.5347426222597793 -0.454140017835944 0.1871034341906217 -0.8710620810906903 -0.4286959899151095 0.03977866415051463 -0.9025726597394278 -0.4568675187823961 0.2091268429512146 -0.864602818546687 0.4568675187823961 -0.2091268429512146 0.864602818546687 0.4286959899151095 -0.03977866415051463 0.9025726597394278 0.454140017835944 -0.1871034341906217 0.8710620810906903 -0.4610330568129479 0.4223904034843316 -0.7804068602786966 -0.4574112545118764 0.4314471465815102 -0.7775784873262276 0.4574112545118764 -0.4314471465815102 0.7775784873262276 0.4610330568129479 -0.4223904034843316 0.7804068602786966 -0.4985686990456941 0.4987245144832661 -0.7090155929070352 -0.5040287169911085 0.4972319905766404 -0.7061978476287568 0.5040287169911085 -0.4972319905766404 0.7061978476287568 0.4985686990456941 -0.4987245144832661 0.7090155929070352 -0.5535723758972673 0.5174191484113569 -0.6525603799655021 -0.5497106232233426 0.5162657272219958 -0.6567251553057397 0.5497106232233426 -0.5162657272219958 0.6567251553057397 0.5535723758972673 -0.5174191484113569 0.6525603799655021 -0.6307511085987073 0.4969187375520394 -0.5960073886045282 -0.6328126226365115 0.4957425846370723 -0.5948003651724295 0.6328126226365115 -0.4957425846370723 0.5948003651724295 0.6307511085987073 -0.4969187375520394 0.5960073886045282 -0.1257030963027143 0.6143256787305055 -0.7789754116993772 -0.1240850473728673 0.6156224677283072 -0.7782106901389768 0.1240850473728673 -0.6156224677283072 0.7782106901389768 0.1257030963027143 -0.6143256787305055 0.7789754116993772 -0.1260524294574446 0.6335694907637545 -0.7633482071775848 0.1260524294574446 -0.6335694907637545 0.7633482071775848 -0.5412748879965412 0.687898621088518 -0.4835462570725241 0.5412748879965412 -0.687898621088518 0.4835462570725241 -0.4272470439601668 0.04043528853901111 -0.9032302867309456 0.4272470439601668 -0.04043528853901111 0.9032302867309456</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1030\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1028\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1031\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">1.998937623161384 10.76476841980763 2.986714499689779 10.86290628058702 2.646808655273745 7.626911531842514 3.137910672426441 10.83666032021479 3.73149548145001 7.745943970176235 2.753392543137154 7.603757279601984 2.820184296480023 7.581971421901169 3.799485555325677 7.718958628996464 2.986360958528956 6.654920534525154 -10.45577002727441 6.283216928777442 -9.888780236097874 6.819957862866433 -7.230760792342645 4.457246732780551 -6.88113622380909 4.847979343375632 -6.249633121797126 3.879151418789206 -5.959241747873955 4.31281594366269 -5.569883206520585 3.476406390468299 -5.235605254682731 3.939530432036485 -4.53685698336594 3.700681803303125 -4.453542058358801 2.75223422874128 -4.08577743896114 3.685864912838015 -3.76863480279438 3.318475734997433 -3.431737630961593 2.084911934129343 -2.971172988345912 1.772671627247351 -2.95700400690178 2.488800756097747 -2.594993336245468 2.091126521667093 3.625763036746231 7.771438100407487 3.81895079101609 6.819175129102827 2.835843568044133 6.696637019396241 4.147409147623762 5.020072757806616 4.353287423553801 3.987980441594453 3.373113844173326 3.843845654733742 4.329822052382522 3.988576604581577 4.425017633747888 3.516183683878827 3.441920088820501 3.382462419447546 2.288473777971453 3.838233246252393 2.056359603288195 4.291999654325147 2.230352107905733 4.329484501746936 2.335103140462541 4.369785709347631 1.846819489349988 5.343682783349156 2.009452657357155 5.389437917116684 3.432423115070612 5.067446679764254 3.317376742139041 5.502219060815397 3.459288365190417 5.567061823306501 -4.027123668961578 5.648598042583979 -3.625507904080766 5.488165434978679 -4.074900648768324 5.522217060790011 -1.028756012507091 6.944701516300213 -0.9192721422585309 7.044197939014103 -0.4737934490769319 6.534086009615941 -0.6357437305888969 7.514537810738175 -0.2529975353390784 6.897934716972006 -0.7779385115273918 7.439108605446435 -1.653891145271553 8.049854498656151 -1.497398853673659 8.118176192147216 -0.9697804840218809 7.326856963524517 -4.443807657891354 10.31154936901565 -2.240674467155615 7.779841628900575 -4.608304711025181 10.23293734499374 3.75622254964643 6.838662211659464 3.895902912319825 6.178304156875717 2.910250464513155 6.064224792957607 2.9733499521145 6.025115824772509 3.960090801378393 6.133215747935012 3.191931818886059 4.899905221596626 4.178668992404626 5.008016229071481 2.853014213669746 6.688899456137831 3.836421506115961 6.809938349919037 2.981756068882562 6.041430594450256 3.19913319123502 4.893302521149462 4.186013224173247 5.000603531797977 3.403561010679153 3.827721629442527 3.408140364595802 3.806695969447152 4.38943376548893 3.946035659923494 3.493767507501942 3.347032692092354 2.168577740868163 4.427932373500567 1.994848645956156 4.389698935824643 1.628068030784827 5.400671769098429 2.605226202472054 3.872011356930058 2.442902545374851 3.817638953721654 2.393635605078873 4.309488781848157 1.995011165963287 5.404459939837887 1.832450069184318 5.358546584306009 1.76553688369938 5.855830345560892 -3.982493890322007 5.661270718905809 -3.558007158969994 5.626281209275753 -3.582332382251634 5.498604840327278 -0.9689320567369109 7.039776299560601 -0.4026134045726859 6.625773062040189 -0.5199101826953312 6.531590478244566 -0.01524134949612947 7.554529442168967 0.4484293081867797 7.007795171809001 0.3219388629227055 6.921678714189059 -0.9145523620121765 8.201304268657363 -0.2892066006479271 7.463461634669913 -0.4343023409365476 7.391532441464667 -3.35620196045869 10.62525094866661 -1.205987261730729 8.052971772803227 -1.364385652116661 7.987424724987632</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID1031\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1027\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1025\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1026\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 2 6 6 7 8 8 9 8 7 7 3 6 10 9 11 10 12 11 11 10 13 12 12 11 12 11 13 12 14 13 13 12 15 14 14 13 14 13 15 14 16 15 15 14 17 16 16 15 17 16 18 17 16 15 16 15 18 17 19 18 18 17 20 19 19 18 20 19 21 20 19 18 19 18 21 20 22 21 22 21 21 20 23 22 21 20 24 23 23 22 25 24 23 22 24 23 26 23 27 22 28 24 27 22 26 23 29 20 27 22 29 20 30 21 30 21 29 20 31 18 31 18 29 20 32 19 31 18 32 19 33 17 31 18 33 17 34 15 34 15 33 17 35 16 34 15 35 16 36 14 34 15 36 14 37 13 37 13 36 14 38 12 37 13 38 12 39 11 39 11 38 12 40 10 39 11 40 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 55 37 60 38 61 39 62 39 63 38 58 37 60 40 64 41 65 42 66 42 67 41 63 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 75 47 70 48 71 48 76 47 77 46 78 49 74 50 79 51 80 51 77 50 81 49 82 52 83 53 79 54 80 54 84 53 85 52 86 55 82 56 87 57 88 57 85 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 90 62 94 63 44 64 94 63 90 62 93 62 95 63 49 64 95 63 93 62 92 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 56 74 55 75 61 76 62 76 58 75 57 74 96 77 54 78 56 79 57 79 59 78 97 77 61 80 60 81 65 82 66 82 63 81 62 80 68 83 98 84 69 85 72 85 99 84 73 83 75 86 68 87 70 88 71 88 73 87 76 86 78 89 75 90 74 91 77 91 76 90 81 89 83 92 78 93 79 94 80 94 81 93 84 92 86 95 83 96 82 97 85 97 84 96 89 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1027\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1028\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1032\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1033\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1037\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.5298591187803385 0.9795942854452735 0.8749769468548716 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803394 0.3053530486319291 0.657905410261265 -0.529859118780335 0.3113782683662678 0.5398843184766523 -0.5298591187803368 0.2993358074562025 0.5808305065595499 -0.5298591187803403 0.3270336083474492 0.7385925547494026 -0.5298591187803332 0.3450989423569697 0.6506793517497725 -0.5298591187803385 0.3426903563095571 0.5880560769709857 -0.5298591187803385 0.3619581060348764 0.8457742208513532 -0.5298591187803332 0.3667743394757399 0.7313670969764418 -0.5298591187803385 0.5033893025386136 1.210674368749096 -0.5298591187803332 0.3992907016696581 0.8361403272156157 -0.5298591187803323 0.5413968279128769 1.195018672079413 -0.5298591187803385 0.2041952506026148 0.374896737421523 -0.5298591187803421 0.2153117293865174 0.305785073501056 -0.5298591187803403 0.1692735688770597 0.3267246785579235 -0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.2520881913262922 0.2718711494341899 -0.5298591187803368 0.2863054132589566 0.3205489738215878 -0.5298591187803385 0.3695123930611912 0.4267951398462639 -0.5298591187803394 0.3858886005064071 0.5447198506428224 -0.5298591187803332 0.4075372647605544 0.4755073752876341 -0.5298591187803332 0.4429278229094928 0.5207666782917493 -0.5298591187803385 0.4501756206465828 0.4774161844234748 -0.5298591187803385 0.5013716846363556 0.5433845966193773 -0.529859118780335 0.5211162705705876 0.5081448238416899 -0.5298591187803332 0.5706452851370669 0.5900937820678676 -0.5298591187803421 0.5903875056633261 0.5548531457285433 -0.529859118780335 0.6591767982696415 0.6548765616806803 -0.5298591187803385 0.6804152331994795 0.6226971762564511 -0.5298591187803332 0.9524432317094898 0.90584184128113 -0.5298591187803385 0.9795942854452735 0.8749769468548716</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1037\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1034\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1038\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1038\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1036\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1039\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"120\">-19.59188570890547 13.76630396384998 -19.04886463418979 14.25191163615645 -13.60830466398959 9.797102239768163 -13.18353596539283 10.30339123710937 -11.80775011326652 8.729689492795748 -11.41290570274134 9.284142171201117 -10.42232541141175 7.994811895109255 -10.02743369272711 8.549250986811536 -9.003512412931656 7.511347968262671 -8.858556458189856 8.193395738456855 -8.150745295211088 7.481316037858777 -7.717772010128141 8.570258983447072 -7.390247861223824 6.714910200247886 -6.853807126191143 9.252082277676843 -6.540672166948984 11.6205228613906 -6.227565367325356 8.494179944032663 -5.726108265179133 5.043303854792981 -5.553161274050962 7.679445612741617 -5.041763826525845 4.277439417764588 -4.306234587730349 4.811018489749948 -4.083905012052296 5.898375335431962 -3.385471377541194 5.140468275977997 -10.82793655825754 18.80162710738276 -10.06778605077227 19.04794340165244 -7.985814033393162 13.15527448152569 -7.335486789514798 11.50684232576269 -7.239162120697529 13.30684774139463 -6.901978847139394 10.23735513419642 -6.107060972638583 10.3510451214439 -5.98671614912405 9.138399969870253 -3.053530486319291 5.175522560721952 -3.113782683662678 4.247089972016331 -2.993358074562025 4.569199984935127 -3.270336083474492 5.8102614306953 -3.450989423569697 5.118677567098211 -3.426903563095571 4.626041138838422 -3.619581060348764 6.653423870697313 -3.667743394757399 5.753421162881343 -5.033893025386136 9.52397170082622 -3.992907016696581 6.577637240762844 -5.413968279128769 9.400813553691382 -2.041952506026148 2.949187667715981 -2.153117293865174 2.405509244874974 -1.692735688770597 2.570234137988999 -2.776580637025481 3.839722806370808 -2.520881913262922 2.138719708882294 -2.863054132589566 2.521651927396491 -3.695123930611912 3.357455100123943 -3.858886005064071 4.285129491723536 -4.075372647605544 3.740658018929389 -4.429278229094928 4.096697869228428 -4.501756206465828 3.755673984131335 -5.013716846363556 4.274625493405768 -5.211162705705876 3.997405947554627 -5.706452851370669 4.642071085600558 -5.903875056633261 4.364844746397874 -6.591767982696415 5.151695618554686 -6.804152331994795 4.898551119884082 -9.524432317094897 7.125955818078223 -9.795942854452735 6.88315198192499</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID1039\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1035\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1033\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1034\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 3 3 5 5 4 4 4 4 5 5 6 6 5 5 7 7 6 6 6 6 7 7 8 8 7 7 9 9 8 8 8 8 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 11 11 13 13 12 12 14 14 15 15 13 13 13 13 15 15 12 12 12 12 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 18 18 17 17 19 19 17 17 20 20 19 19 21 21 19 19 20 20 22 22 23 23 24 24 24 24 23 23 25 25 23 23 26 26 25 25 25 25 26 26 27 27 26 26 14 14 27 27 13 13 27 27 14 14 14 14 28 28 15 15 29 29 15 15 28 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1035\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1036\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">30 30 31 31 32 32 31 31 30 30 33 33 33 33 34 34 35 35 34 34 33 33 36 36 34 34 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 39 39 38 38 40 40 41 41 42 42 43 43 42 42 41 41 44 44 42 42 44 44 45 45 45 45 44 44 46 46 46 46 44 44 31 31 46 46 31 31 47 47 47 47 31 31 35 35 35 35 31 31 33 33 47 47 35 35 48 48 47 47 48 48 49 49 49 49 48 48 50 50 49 49 50 50 51 51 51 51 50 50 52 52 51 51 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 55 55 54 54 56 56 55 55 56 56 57 57 57 57 56 56 58 58 57 57 58 58 59 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1035\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1036\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1040\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1041\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1045\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165477 -0.9132267951340403 0.5180788614659372 -0.4343304285165415 -1.135265838639835 0.6782699959055666 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165477 -0.8272822123002558 0.430205757763248 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.8073268797801365 0.3642582587774527 -0.4343304285165477 -1.317319575342934 0.1303569759208751 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165441 -1.043461727267754 0.1261324511598922 -0.4343304285165512 -0.9220172518723757 0.1450966589693792 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -0.8665601494827795 0.1859861898995818 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165441 -0.8180857314073381 0.2688572442245636 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4343304285165477 -1.029819330692128 0.09368681654144928 -0.4343304285165424 -0.9031436992618183 0.1178903560618212 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4343304285165512 -1.318256427081902 0.09912537755418782 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4343304285165424 -0.8828758325209946 0.5359084431482301 -0.4343304285165424 -1.117320201782601 0.703849667829104 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4343304285165424 -0.7958813840120982 0.4407067799222098 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4343304285165424 -0.7866647783783838 0.2584162395994549 -0.4343304285165486 -0.7685815723975792 0.3653419535410761 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4343304285165424 -0.836173593111768 0.1619315302829425 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086252 -0.8252007283829244 0.1520053867384519</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1045\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1042\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1046\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.672990936518585 0.2791484701318099 -0.6849520647365829 -0.6630700206644244 0.06601587505827476 -0.7456406989538392 -0.6658812119562829 0.05557583132515614 -0.7439849047770725 0.6658812119562829 -0.05557583132515614 0.7439849047770725 0.6630700206644244 -0.06601587505827476 0.7456406989538392 0.672990936518585 -0.2791484701318099 0.6849520647365829 -0.6113304972219287 -0.01491894967988539 -0.791234761690131 -0.6145075341081261 -0.01519103171901108 -0.7887646816888181 0.6145075341081261 0.01519103171901108 0.7887646816888181 0.6113304972219287 0.01491894967988539 0.791234761690131 -0.6113858088080906 0.4608262320043037 0.643309083322156 -0.6630483910174163 0.498855229375798 0.5581310699948852 -0.6145579693011508 0.4591343117628982 0.6414937148019891 0.6145579693011508 -0.4591343117628982 -0.6414937148019891 0.6630483910174163 -0.498855229375798 -0.5581310699948852 0.6113858088080906 -0.4608262320043037 -0.643309083322156 -0.6658642050055886 0.4894684515523368 0.563067931449868 -0.6730103961097779 0.633535161008159 0.3816938648898171 0.6730103961097779 -0.633535161008159 -0.3816938648898171 0.6658642050055886 -0.4894684515523368 -0.563067931449868 -0.6288817366873886 0.7353849506127249 0.2524217416812069 -0.6701444240931888 0.6340128793903517 0.3859198357482596 0.6701444240931888 -0.6340128793903517 -0.3859198357482596 0.6288817366873886 -0.7353849506127249 -0.2524217416812069 -0.6193201491348418 0.7741457966357958 -0.1309230248150662 -0.658578304891523 0.7141210938325098 -0.2372881785291209 -0.6252123795686114 0.7697839976649213 -0.1286160074530658 0.6252123795686114 -0.7697839976649213 0.1286160074530658 0.658578304891523 -0.7141210938325098 0.2372881785291209 0.6193201491348418 -0.7741457966357958 0.1309230248150662 -0.6193894345161001 0.698494696426414 -0.3584158024892286 -0.6252712636549731 0.6936274305614512 -0.3576546300833142 0.6252712636549731 -0.6936274305614512 0.3576546300833142 0.6193894345161001 -0.698494696426414 0.3584158024892286 -0.6701291299022093 0.2769832769238545 -0.6886270496872973 -0.6289250440898284 0.438067046954839 -0.6423009818526467 0.6289250440898284 -0.438067046954839 0.6423009818526467 0.6701291299022093 -0.2769832769238545 0.6886270496872973 -0.6219814506780375 0.7414065190456863 0.2519036492967151 0.6219814506780375 -0.7414065190456863 -0.2519036492967151 -0.6632653245983359 0.7102034419860702 -0.2359876695435651 0.6632653245983359 -0.7102034419860702 0.2359876695435651 -0.6220409688791525 0.4431898766144704 -0.6454825840426184 0.6220409688791525 -0.4431898766144704 0.6454825840426184</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1046\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1044\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1047\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">7.685815723975792 2.874023367856466 7.958813840120982 3.46689333538805 7.866647783783838 2.032874418182379 8.073268797801365 2.865498302382628 8.18085731407338 2.115010321233234 8.36173593111768 1.273861371559148 8.665601494827795 1.463091360543377 9.031436992618183 0.9274041343529934 9.220172518723757 1.141427050559116 10.29819330692128 0.7370029567927344 10.43461727267754 0.9922419491244857 13.17319575342934 1.025474877244218 13.18256427081902 0.7797863034262775 8.272822123002557 3.384285294404218 8.828758325209945 4.21581308609941 9.132267951340403 4.075553710198706 11.17320201782601 5.536950720255618 11.35265838639835 5.335723967790457 9.743740101464573 1.988437824085204 10.9820680884364 1.705023222924476 10.95406190306286 1.514596294059031 10.18916535332233 3.309702731294755 13.07267779495826 3.379665889560748 13.08422968449263 3.199757330669627 11.53679451320826 5.887322116789082 9.664606296230362 4.161713060886227 11.36545721424794 6.006842844578951 9.357925723043625 4.713345186989823 9.54294143455537 4.58860161283133 8.87938669524374 3.718691191733911 8.621195066914398 3.915152656841173 8.433829724268323 3.302053148008258 8.394680517829666 3.989110993373233 8.192850961276159 2.510608965499221 8.30581624406488 1.662156996532964 7.959361423291862 2.521603384444761 8.797428992253618 0.2377375302496965 8.589066946989393 0.1540948178637264 8.468953380353767 1.050766553539041 9.9650088203073 0.2013483060752452 9.821862682408826 0.04469772784885676 9.395660232283182 0.6451734807435667 10.18010204372508 3.02003618013284 10.16431663537896 3.21133071886602 13.05993379571968 3.110797586965738 9.717512492742973 2.041116121749284 10.93264464736882 1.574955679289271 9.626254877814432 1.862045396082188 11.58740893055048 5.655514610796291 9.776872146541788 3.876144995495381 9.604226472762715 4.0114184348044 9.401641036197944 4.648499728985229 8.911424637990344 3.657371138622741 8.689895478581324 3.740148740343702 8.267186516090369 3.395002083835391 8.033717664007693 3.406265074033831 8.215118084369612 4.081528994233212 8.464930288377673 1.745696425622322 8.228261606106596 1.705594495213734 8.111839397566158 2.603469864687234 9.330301350185701 0.305373195999198 9.724851614784443 -0.308343230978199 9.135802437258771 0.2031367210126086 8.762482845796232 0.3028705175705735 8.384287130441004 1.154964469876548 8.620257114820655 1.19753825098844</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"66\" source=\"#ID1047\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1043\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1041\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1042\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"64\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 3 3 4 4 2 2 2 2 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 10 10 11 11 9 9 12 12 9 9 11 11 3 3 1 1 13 13 1 1 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 17 17 15 15 16 16 18 16 19 15 20 17 19 15 18 16 21 14 19 15 21 14 22 13 22 13 21 14 23 1 22 13 23 1 24 3 25 11 26 9 27 12 26 9 25 11 28 10 26 9 28 10 29 8 26 9 29 8 30 7 30 7 29 8 31 6 30 7 31 6 32 5 32 5 31 6 33 4 32 5 33 4 34 2 34 2 33 4 24 3 34 2 24 3 23 1 34 2 23 1 35 0 36 18 37 19 38 20 39 20 40 19 41 18 37 21 42 22 43 23 44 23 45 22 40 21 46 24 47 25 48 26 49 26 50 25 51 24 52 27 47 28 53 29 54 29 50 28 55 27 53 30 56 31 57 32 58 32 59 31 54 30 60 33 61 34 62 35 63 35 64 34 65 33 66 36 67 37 61 38 64 38 68 37 69 36 36 39 70 40 71 41 72 41 73 40 41 39 38 42 37 43 43 44 44 44 40 43 39 42 36 45 38 46 70 47 73 47 39 46 41 45 48 48 47 49 52 50 55 50 50 49 49 48 52 51 53 52 57 53 58 53 54 52 55 51 56 54 74 55 57 56 58 56 75 55 59 54 61 57 76 58 62 59 63 59 77 58 64 57 71 60 70 61 78 62 79 62 73 61 72 60 67 63 76 64 61 65 64 65 77 64 68 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1043\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1044\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1048\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1049\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1053\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529244 -0.7305900416866997 0.5536623317756283 -0.5150356702529244 -1.055396224199972 0.7825414592867903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5150356702529333 -0.3007344018484941 0.3077225679017472 -0.5150356702529333 -0.3829487363207134 0.412372609195927 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5150356702529324 -0.2640320935711225 0.2575357821900772 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.5150356702529342 -0.3476915045794671 0.2559085129213661 -0.5150356702529333 -0.3012389283490861 0.2166799301637636 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.5150356702529253 -0.4507139199164419 0.3397121199502065 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.5150356702529333 -0.5632646490923408 0.4306468124834162 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5150356702529333 -0.6317450494552758 0.4811608129636514 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.6961259725370663 0.6036795214907903 -0.5150356702529333 -0.9993834386692768 0.8513347317858694 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5150356702529315 -0.6032602059962001 0.5365752629175515 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5150356702529351 -0.5304258404919436 0.4898500077133584 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5150356702529333 -0.4602543987106065 0.4601880546491105 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5150356702529244 -0.4151239165752257 0.4587552557067072 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.4141557137941606 0.4657306560661704</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1053\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1050\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1054\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1152698562505582 -0.5708457404589754 -0.8129255813663509 -0.1164339797874606 -0.5705294778991202 -0.8129816991784074 -0.1088540514781176 -0.584331089942785 -0.8041815546274835 0.1088540514781176 0.584331089942785 0.8041815546274835 0.1164339797874606 0.5705294778991202 0.8129816991784074 0.1152698562505582 0.5708457404589754 0.8129255813663509 -0.1108435503727157 -0.5821217352458851 -0.8055110133915557 0.1108435503727157 0.5821217352458851 0.8055110133915557 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1170176206764311 -0.5929274844702175 -0.7967081489548396 0.1170176206764311 0.5929274844702175 0.7967081489548396 -0.4970751144160029 -0.683545041602595 -0.5344927564792851 -0.5581062161838647 -0.6583968034238775 -0.505006040259074 -0.5144163086132454 -0.6723630224863056 -0.5322629307267247 0.5144163086132454 0.6723630224863056 0.5322629307267247 0.5581062161838647 0.6583968034238775 0.505006040259074 0.4970751144160029 0.683545041602595 0.5344927564792851 -0.5452373970371485 -0.6801451362856548 -0.4900191572368603 -0.5583798869887992 -0.6602297154995238 -0.5023033192980051 0.5583798869887992 0.6602297154995238 0.5023033192980051 0.5452373970371485 0.6801451362856548 0.4900191572368603 -0.1366232935947715 -0.6391496733784974 -0.7568498996944356 -0.1321750213771143 -0.6339255398774245 -0.7620158617870596 -0.1318903393557705 -0.6453922059420187 -0.7523787868447079 0.1318903393557705 0.6453922059420187 0.7523787868447079 0.1321750213771143 0.6339255398774245 0.7620158617870596 0.1366232935947715 0.6391496733784974 0.7568498996944356 -0.1269071717687836 -0.6253899701404045 -0.7699233435878096 -0.1289732790216521 -0.6380369665418767 -0.7591276062852959 0.1289732790216521 0.6380369665418767 0.7591276062852959 0.1269071717687836 0.6253899701404045 0.7699233435878096 -0.1260674500275698 -0.6258988106438125 -0.7696477615625263 -0.1241010714283334 -0.6078068716321187 -0.7843275660507647 -0.1257095939325673 -0.6065122404802681 -0.7850732450803013 0.1241010714283334 0.6078068716321187 0.7843275660507647 0.1257095939325673 0.6065122404802681 0.7850732450803013 0.1260674500275698 0.6258988106438125 0.7696477615625263 -0.1211769958232875 -0.5894025390301889 -0.7986994319942953 0.1211769958232875 0.5894025390301889 0.7986994319942953 -0.630695063396688 -0.4909614247884672 -0.6009830416714983 -0.6327553060025942 -0.489798292648837 -0.5997652501136153 -0.5535679708898417 -0.5108673680079583 -0.6577058870874768 0.5535679708898417 0.5108673680079583 0.6577058870874768 0.6327553060025942 0.489798292648837 0.5997652501136153 0.630695063396688 0.4909614247884672 0.6009830416714983 -0.5497067787296889 -0.5096714306261669 -0.6618591165966555 -0.5040208671260086 -0.4901460352175064 -0.7111398102076026 0.5040208671260086 0.4901460352175064 0.7111398102076026 0.5497067787296889 0.5096714306261669 0.6618591165966555 -0.4609719154458496 -0.4145896076660237 -0.7846147783374444 -0.4985571397014289 -0.4916144428633812 -0.7139720008661804 0.4985571397014289 0.4916144428633812 0.7139720008661804 0.4609719154458496 0.4145896076660237 0.7846147783374444 -0.4573491576022501 -0.4236797699590816 -0.7818741590357953 -0.4568505475577015 -0.2004861491589987 -0.8666561493416083 0.4568505475577015 0.2004861491589987 0.8666561493416083 0.4573491576022501 0.4236797699590816 0.7818741590357953 -0.4541268962482883 -0.1783764702348078 -0.8728978158813705 -0.4286900949630499 -0.03074629865061099 -0.9029282737847225 0.4286900949630499 0.03074629865061099 0.9029282737847225 0.4541268962482883 0.1783764702348078 0.8728978158813705 -0.3063976859348787 -0.7821413631807209 -0.5425636792631395 -0.3523735052985816 -0.7618774628075067 -0.5434847232715808 0.3523735052985816 0.7618774628075067 0.5434847232715808 0.3063976859348787 0.7821413631807209 0.5425636792631395 -0.5413340802838006 -0.6829922424325828 -0.4903865927002937 0.5413340802838006 0.6829922424325828 0.4903865927002937 -0.4272481797681519 -0.03139308917336886 -0.9035892135461523 0.4272481797681519 0.03139308917336886 0.9035892135461523</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1054\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1052\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1055\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">-2.935981608932602 10.85663512075862 -1.948631865258435 10.75586386611057 -2.610060487118674 7.619753708788435 -3.69679133168683 7.740997122795123 -3.090772258404805 10.83022540427713 -2.719262994468259 7.596384747860257 2.640320935711225 2.025948153228608 3.007344018484941 2.420750867493745 3.012389283490861 1.704548783954941 3.476915045794671 2.013146968314747 3.829487363207134 3.243997859007959 4.151239165752258 3.608874678226097 4.50713919916442 2.672402010274958 4.602543987106065 3.620146029906336 5.304258404919437 3.853486727345086 5.632646490923408 3.387754924869541 6.032602059962001 4.221058734951406 6.317450494552758 3.785131728647392 6.961259725370663 4.748945569060884 7.305900416866997 4.355477009968277 9.993834386692768 6.697166556715506 10.55396224199972 6.155992813056084 -2.958384683729662 6.646322239064626 -3.767581555079931 7.71218000849874 -2.788788460198426 7.572962376067476 -1.787116026856405 5.322273542286981 -2.284182369127702 4.351127936247142 -1.949330144772716 5.368941012682137 -2.004373405150739 4.27027736655339 -2.240688841859411 3.817870637244726 -2.178006254645743 4.308764307005029 -4.406878702077174 3.508993181485741 -4.309776294106773 3.981152767028634 -3.424324889167503 3.37281876876143 -4.33348685434635 3.981344992154811 -4.123486029284101 5.012918456920043 -3.353896149640327 3.834780310909004 -3.168915308745923 4.890452789232343 -4.15522701980411 5.000954905113102 -2.945912001956207 6.015132060051506 -3.932224531327764 6.125626458280218 -3.865167419372976 6.173403206929011 -3.722631041023821 6.8333627787756 -2.880014071898048 6.056684529967771 -3.786233442174673 6.814013616893653 -3.589002991997068 7.76577639285253 -2.803637068433257 6.688943611917154 4.58673566867724 10.24664292795459 4.750224669518837 10.16676035099951 2.352155135876836 7.732019785561647 1.615439914209591 8.079710179245698 1.771051416478688 8.010154330456691 1.077703269353097 7.292616194349058 0.3595836739408692 6.872236538923343 0.7506151581350007 7.485622764389828 0.8917779093368455 7.409005396259467 1.05683395826347 7.015137815428471 1.164565261957301 6.91447012137925 0.6025386688846102 6.509881421450357 4.209437347221686 5.555948874626798 4.253535901802713 5.428742796817378 3.803209898733897 5.402796817356368 -3.281343791480293 5.483076573831793 -3.398703655180526 5.048706996552484 -3.4228971200836 5.548400610587399 -1.772317777748014 5.337234730377968 -1.934455908459623 5.38406533167012 -1.700902869676162 5.834124829345437 -1.940368773200062 4.369112149830636 -2.113718735031875 4.408380312461595 -1.563862617851588 5.377877017135567 -2.396266153697702 3.797994575249178 -2.558103344791782 3.853272065013154 -2.342549230029242 4.289545610607819 -4.371090681150245 3.937463004736838 -3.390320269200981 3.795864862738408 -3.477653760136398 3.336397819512019 -4.162826579523441 4.993184227830971 -3.176364284525369 4.883517101095137 -3.384938017023071 3.81842371163158 -2.952987580260624 6.033504265500596 -3.804473587643869 6.804173406389755 -2.821558507236654 6.680662886123442 1.315460912566759 8.016050776524924 3.496248995700073 10.57238716409893 1.47307452581419 7.94934296837219 0.3940072705090324 7.436216706816778 1.02837778858371 8.169264935007575 0.538204523295595 7.363180085962341 -0.3470360049582089 6.989381151517559 0.1235323511647279 7.532459053158027 -0.2216517634023708 6.902275859416785 0.5338562939897318 6.602089407485308 1.107371202240202 7.009909940338497 0.6495041291754328 6.506652750037433 3.74214220390277 5.54151624829845 4.167566621199896 5.568730472320866 3.762660802913122 5.413427654679166</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID1055\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1051\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1049\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1050\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 6 3 0 4 2 5 3 5 5 4 7 3 8 6 9 7 10 8 10 8 9 7 11 9 9 7 12 10 11 9 12 10 13 11 11 9 11 9 13 11 14 12 13 11 15 13 14 12 15 13 16 14 14 12 14 12 16 14 17 15 16 14 18 16 17 15 17 15 18 16 19 17 18 16 20 18 19 17 19 17 20 18 21 19 20 18 22 20 21 19 23 21 21 19 22 20 24 20 25 19 26 21 25 19 24 20 27 18 25 19 27 18 28 17 28 17 27 18 29 16 28 17 29 16 30 15 30 15 29 16 31 14 30 15 31 14 32 12 32 12 31 14 33 13 32 12 33 13 34 11 32 12 34 11 35 9 35 9 34 11 36 10 35 9 36 10 37 7 35 9 37 7 38 8 38 8 37 7 39 6 40 22 6 23 2 24 3 24 7 23 41 22 42 25 43 26 44 27 45 27 46 26 47 25 43 28 48 29 49 30 50 30 51 29 46 28 52 31 53 32 54 33 55 33 56 32 57 31 53 34 58 35 59 36 60 36 61 35 56 34 62 37 58 38 63 39 64 40 63 39 58 38 61 38 65 39 66 40 65 39 61 38 67 37 64 41 68 42 63 43 65 43 69 42 66 41 68 44 6 45 40 46 41 46 7 45 69 44 70 47 71 48 72 49 73 49 74 48 75 47 76 50 72 51 77 52 78 52 73 51 79 50 80 53 81 54 77 55 78 55 82 54 83 53 84 56 80 57 85 58 86 58 83 57 87 56 88 59 85 60 89 61 90 61 86 60 91 59 92 62 42 63 93 64 94 64 47 63 95 62 42 65 44 66 93 67 94 67 45 66 47 65 43 68 49 69 44 70 45 70 50 69 46 68 48 71 96 72 49 73 50 73 97 72 51 71 53 74 59 75 54 76 55 76 60 75 56 74 58 77 62 78 59 79 60 79 67 78 61 77 63 80 68 81 40 82 41 82 69 81 65 80 76 83 70 84 72 85 73 85 75 84 79 83 81 86 76 87 77 88 78 88 79 87 82 86 84 89 81 90 80 91 83 91 82 90 87 89 88 92 84 93 85 94 86 94 87 93 91 92 98 95 88 96 89 97 90 97 91 96 99 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1051\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1052\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1056\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1057\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1061\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.5298591187803385 -0.1752551412025126 0.3267246785579244 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.5093690163292324 1.210674368749097 -0.5298591187803403 -0.4052727808682411 0.8361403272156173 -0.5298591187803385 -0.5473779309113525 1.195018672079414 -0.5298591187803385 -0.3679387584794505 0.8457742208513541 -0.5298591187803385 -0.372758258436077 0.731367096976441 -0.5298591187803341 -0.351080533455498 0.6506793517497732 -0.5298591187803332 -0.3330137726919719 0.7385925547494031 -0.5298591187803403 -0.348671947408091 0.5880560769709848 -0.5298591187803385 -0.3113364982652893 0.6579054102612636 -0.5298591187803385 -0.3173598406917275 0.5398843184766525 -0.529859118780335 -0.3053159718007235 0.5808305065595508 -0.5298591187803332 -0.9633405535680648 0.8905942713508912 -0.5298591187803403 -0.6884918623784433 0.6101843933959125 -0.5298591187803403 -0.9901832031605407 0.8594601709704641 -0.529859118780335 -0.6675791028246748 0.6425756142446055 -0.5298591187803394 -0.597791157503014 0.5432447371801458 -0.5298591187803403 -0.5784013827636212 0.5786802756265955 -0.5298591187803412 -0.5280566779106266 0.4972303433888231 -0.5298591187803394 -0.5086655139633612 0.5326663323891693 -0.5298591187803332 -0.4568128427592768 0.4672126780219511 -0.5298591187803341 -0.4499996418031707 0.5106339839445576 -0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803385 -0.3924695409280047 0.5398306274704503 -0.5298591187803368 -0.3756478858621256 0.4174014665305789 -0.5298591187803385 -0.2913825924991913 0.3119920354140788 -0.5298591187803323 -0.2836405746819554 0.488100356742052 -0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803394 -0.2101772922550591 0.3748967374215243 -0.5298591187803332 -0.2207484130913374 0.3018183782083103 -0.5298591187803385 -0.1752551412025126 0.3267246785579244</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1061\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1058\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1062\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1062\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1060\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1063\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"120\">3.505102824050252 5.140468275978011 4.203545845101182 5.898375335431982 4.414968261826749 4.748609150477415 5.133601729440363 4.148245525455751 5.672811493639108 7.679445612741619 5.827651849983826 4.90867469051484 6.34719681383455 8.494179944032666 6.660275453839438 11.62052286139061 6.973438948161821 9.252082277676829 7.512957717242513 6.567116406747775 7.849390818560094 8.493335205535086 8.283114275883213 7.327495655441081 8.999992836063413 8.033974680727708 9.136256855185536 7.350812800878698 10.17331027926723 8.380616962922931 10.56113355821253 7.823090735984151 11.56802765527242 9.104569669858437 11.95582315006028 8.547050531634294 13.3515820564935 10.10985633078179 13.76983724756887 9.60023445609569 19.2668110713613 14.01201653592069 19.80366406321081 13.52217335660197 6.106319436014469 9.138399969870267 6.226729965305786 10.35104512144388 7.021610669109959 10.23735513419643 7.358775169589009 13.30684774139464 7.455165168721541 11.50684232576267 8.105455617364823 13.15527448152571 10.18738032658465 19.04794340165245 10.94755861822705 18.80162710738278 5.093690163292324 9.523971700826227 4.052727808682412 6.577637240762856 5.473779309113525 9.400813553691391 3.679387584794505 6.65342387069732 3.72758258436077 5.753421162881336 3.51080533455498 5.118677567098216 3.330137726919719 5.810261430695305 3.48671947408091 4.626041138838414 3.113364982652893 5.175522560721941 3.173598406917275 4.247089972016333 3.053159718007235 4.569199984935134 9.633405535680648 7.006008267960344 6.884918623784433 4.800117228047845 9.901832031605407 6.761086678300985 6.675791028246748 5.054928165390897 5.977911575030141 4.273525265817147 5.784013827636212 4.552284834929218 5.280566779106266 3.911545367992075 5.086655139633613 4.190308481461465 4.568128427592768 3.675406400439349 4.499996418031707 4.016987340363854 4.141557137941606 3.66374782772054 3.924695409280047 4.246667602767543 3.756478858621256 3.283558203373887 2.913825924991913 2.45433734525742 2.836405746819554 3.839722806370809 2.566800864720181 2.074122762727876 2.101772922550591 2.949187667715991 2.207484130913374 2.374304575238707 1.752551412025126 2.570234137989006</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID1063\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1059\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1057\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1058\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 7 7 8 8 6 6 6 6 8 8 5 5 5 5 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 18 18 17 17 17 17 18 18 19 19 18 18 20 20 19 19 21 21 19 19 20 20 22 22 23 23 6 6 7 7 6 6 23 23 8 8 7 7 24 24 7 7 25 25 24 24 24 24 25 25 26 26 26 26 25 25 27 27 25 25 28 28 27 27 29 29 27 27 28 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1059\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1060\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">30 30 31 31 32 32 31 31 30 30 33 33 31 31 33 33 34 34 34 34 33 33 35 35 35 35 33 33 36 36 35 35 36 36 37 37 38 38 39 39 36 36 39 39 38 38 40 40 41 41 42 42 43 43 42 42 41 41 44 44 42 42 44 44 45 45 45 45 44 44 46 46 45 45 46 46 47 47 47 47 46 46 48 48 47 47 48 48 49 49 49 49 48 48 50 50 49 49 50 50 51 51 51 51 50 50 52 52 51 51 52 52 53 53 53 53 52 52 37 37 53 53 37 37 54 54 54 54 37 37 39 39 39 39 37 37 36 36 54 54 39 39 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1059\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1060\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1064\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1065\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1069\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529333 -0.9185461095484013 -0.01200010415036701 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -1.315740834483686 -0.0009766694397232989 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529324 -0.7959654123141069 -0.01307286828868737 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.5150356702529333 -0.4335914825773608 -0.002611687296826482 -0.5150356702529368 -0.566281971002354 -0.008094013050196081 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.5150356702529342 -0.3728999951832195 0.001015975574070849 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529244 -0.4269814814293227 -0.07222672317350742 -0.5150356702529333 -0.3675384037947553 -0.05398503955227296 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5150356702529244 -0.5554770877852205 -0.1068616414226808 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529324 -0.6460281336741163 -0.09890268190346663 -0.5150356702529333 -0.6090137041837841 -0.1247644756595872 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.5150356702529253 -0.7199978199095067 -0.08066979816305708 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5150356702529324 -0.806307501585481 -0.07451586550519784 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5150356702529297 -0.9208683394319904 -0.07269698880474329 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5150356702529333 -1.312035929778858 -0.08961258905166858 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.5150356702529342 -0.7108731272710429 -0.0135866639970661 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1069\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1066\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1070\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.1164175568789908 0.02947304770899976 0.9927629585702068 -0.1152536654891546 0.0291861515433436 0.9929072268592888 -0.1088387569614722 0.01315362923910896 0.9939723874539582 0.1088387569614722 -0.01315362923910896 -0.9939723874539582 0.1152536654891546 -0.0291861515433436 -0.9929072268592888 0.1164175568789908 -0.02947304770899976 -0.9927629585702068 -0.1108275343076859 0.0157188274115992 0.9937153395737044 0.1108275343076859 -0.0157188274115992 -0.9937153395737044 -0.1169992818606147 0.001779387199382528 0.9931304052466096 0.1169992818606147 -0.001779387199382528 -0.9931304052466096 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 -0.1211613462438688 0.005798762209368286 0.9926158887168858 0.1211613462438688 -0.005798762209368286 -0.9926158887168858 -0.1269009350449967 -0.04024779597736024 0.9910985155894797 -0.1321721693293524 -0.05182041772276032 0.9898712855527286 -0.1289723073749611 -0.05683794718569368 0.990017975437868 0.1289723073749611 0.05683794718569368 -0.990017975437868 0.1321721693293524 0.05182041772276032 -0.9898712855527286 0.1269009350449967 0.04024779597736024 -0.9910985155894797 -0.1366133769342704 -0.05910629755485246 0.9888595607223364 -0.1318875386354734 -0.06677197077271543 0.9890132360447983 0.1318875386354734 0.06677197077271543 -0.9890132360447983 0.1366133769342704 0.05910629755485246 -0.9888595607223364 -0.5582945311177081 -0.2283387439749839 0.7976018019814056 -0.5451251899441658 -0.2516490044651679 0.7996945078215975 -0.558028898390844 -0.2252503846026686 0.7986651443484001 0.558028898390844 0.2252503846026686 -0.7986651443484001 0.5451251899441658 0.2516490044651679 -0.7996945078215975 0.5582945311177081 0.2283387439749839 -0.7976018019814056 -0.4971178181320478 -0.2277136551304314 0.8372695898948984 -0.5144576180718076 -0.2200898906441139 0.8287905641621072 0.5144576180718076 0.2200898906441139 -0.8287905641621072 0.4971178181320478 0.2277136551304314 -0.8372695898948984 -0.306373651989246 -0.301890195052002 0.9027721171470885 -0.3523674383661242 -0.2850989537794993 0.8913785811500805 0.3523674383661242 0.2850989537794993 -0.8913785811500805 0.306373651989246 0.301890195052002 -0.9027721171470885 -0.4541867966104732 0.3794965782313983 0.8060376547627145 -0.4287165572106656 0.5157236689642438 0.7417757146493089 -0.4569170898122744 0.3580322882283826 0.8142724689091671 0.4569170898122744 -0.3580322882283826 -0.8142724689091671 0.4287165572106656 -0.5157236689642438 -0.7417757146493089 0.4541867966104732 -0.3794965782313983 -0.8060376547627145 -0.4574434326879626 0.128523092512843 0.8799018812240311 -0.4610519398068395 0.1374069943415377 0.8766700785964896 0.4610519398068395 -0.1374069943415377 -0.8766700785964896 0.4574434326879626 -0.128523092512843 -0.8799018812240311 -0.5040157149677988 0.03292087746401979 0.8630668426561742 -0.4985584274964397 0.03343317632154487 0.8662111273201989 0.4985584274964397 -0.03343317632154487 -0.8662111273201989 0.5040157149677988 -0.03292087746401979 -0.8630668426561742 -0.5497125255609511 -0.01221039753376431 0.8352646559225813 -0.5535759670464742 -0.01565705409007048 0.8326514909407067 0.5535759670464742 0.01565705409007048 -0.8326514909407067 0.5497125255609511 0.01221039753376431 -0.8352646559225813 -0.6328213274262273 -0.03345237151289191 0.7735748873862641 -0.6307597955618702 -0.0336555489308815 0.7752479502255447 0.6307597955618702 0.0336555489308815 -0.7752479502255447 0.6328213274262273 0.03345237151289191 -0.7735748873862641 -0.1257023489127471 -0.01606129966648226 0.9919379789739081 -0.1240902978453498 -0.0175498111580307 0.9921157201198707 0.1240902978453498 0.0175498111580307 -0.9921157201198707 0.1257023489127471 0.01606129966648226 -0.9919379789739081 -0.1260595472930294 -0.0408216577978071 0.9911824165061218 0.1260595472930294 0.0408216577978071 -0.9911824165061218 -0.5412148349373932 -0.2537132226334566 0.8016957671739552 0.5412148349373932 0.2537132226334566 -0.8016957671739552 -0.4272661229037248 0.5156003108204946 0.7426977714391153 0.4272661229037248 -0.5156003108204946 -0.7426977714391153</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1070\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1068\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1071\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"196\">13.80728166277617 -0.6130167098138849 14.0190207913705 -1.378322775502937 9.891501356083198 -1.398559899101458 14.01980057287232 -1.374692521388983 10.16976395576887 -2.147763991652776 9.892292853868527 -1.396358040448894 9.13990034236501 -4.10109427719969 7.922917617543023 -3.31064759363729 9.112972347923334 -3.318913266075672 3.675384037947553 -0.4246823111445474 3.728999951832195 0.007992341182690677 4.269814814293227 -0.5681835556315917 4.335914825773608 -0.02054527340170165 5.554770877852206 -0.8406449125250893 5.66281971002354 -0.06367290266154251 6.090137041837841 -0.981480541855419 6.460281336741163 -0.7780344309739375 7.108731272710429 -0.10688175677692 7.199978199095067 -0.6346024122160491 7.959654123141069 -0.1028398972043406 8.06307501585481 -0.5861914753075564 9.185461095484014 -0.09440081931622046 9.208683394319904 -0.571882978597314 13.12035929778858 -0.7049523672064595 13.15740834483686 -0.007683132925823285 9.534613588802479 -3.503157893577027 8.312030923974277 -3.573561015301703 8.240503349031185 -2.792558387712522 3.858647062123191 -5.16058960318777 2.592754049921546 -4.844748037579367 2.866400881466295 -4.09043929177291 1.934313392358909 -5.019461920039144 1.377297237169688 -4.827743230540988 1.764387869163704 -4.104380020650059 1.773090404879941 -4.458637017925284 1.33150791732068 -4.108270374199182 1.877196734483731 -4.342754535484429 3.033601055682589 -4.996987230377251 2.948315257028529 -5.11514745525924 1.855718646494166 -4.509721762035793 0.7230910765086479 -6.063201128471859 0.643265683683088 -6.176002351858831 0.3417500518942679 -5.735767157626841 8.221633022424319 0.3354410191769293 7.860758236876446 0.1233516168670555 8.098827313590068 0.4251827631843959 8.777424033680292 -1.570199514101096 8.020550205059355 -1.738846683847045 8.692700701586954 -1.456731561340594 8.631777309452774 -3.099303113019177 8.646044617348052 -3.233748210890571 7.775142777459928 -3.195329571672053 9.311692834307262 -3.69237575750201 8.185074552308338 -3.578387594753834 9.330348977001862 -3.552345717479117 12.83018579927031 -3.998070213710835 12.79728635458154 -4.147255281525537 8.92396389964752 -3.788083846687805 8.196485417401426 -3.731313273001689 7.346533038834244 -3.763528691237196 7.317289624280975 -2.980140061228889 5.636561508752498 -4.702312727263123 5.336390733417921 -5.449619584766261 4.251179605034944 -4.373769397749731 3.951018182975293 -5.121079041999575 7.9264042430006 -3.301158048278965 7.918442027052564 -4.084159963801527 7.093366192879808 -3.295908493898871 3.990976447294812 -4.518942246687931 3.648222878151388 -5.254826617090851 2.698973295573131 -4.160805864112061 1.781220271575089 -4.440238296359105 1.327014570610913 -5.138559858782626 1.264659737377111 -4.215067749817517 3.314877001865865 -4.899940379907601 2.092057563700482 -4.450888635141769 2.190316269496892 -4.331888373982719 1.572352064691836 -4.537480266369492 1.05871830345268 -4.301210512261891 1.141746521037105 -4.178758122598253 3.563681401541414 -5.3253843708294 3.013530619634568 -5.103953439875546 3.097661168592327 -4.985281801077196 8.21113041698956 0.3759870027255349 7.987420609990448 0.09004473225368445 7.851589781199859 0.1624999726829313 8.772747345371998 -1.584925376850224 8.090091306673514 -1.870291468803673 8.015398979144715 -1.752248997002818 8.614935622004783 -3.33792690271419 7.786369406217942 -3.422538761892946 7.744361237538513 -3.295161361764044 9.238931812302894 -3.867268169121407 8.111754056698198 -3.877517115416049 8.114139814095902 -3.742617406280015 12.67194791268335 -4.5269585570712 8.773640424439241 -4.255971035984555 8.806680473794703 -4.11759385727599</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"98\" source=\"#ID1071\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1067\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1065\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1066\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"84\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 6 6 8 7 2 8 3 8 9 7 7 6 10 9 11 10 12 11 11 10 13 12 12 11 12 11 13 12 14 13 13 12 15 14 14 13 14 13 15 14 16 15 16 15 15 14 17 16 15 14 18 17 17 16 17 16 18 17 19 18 18 17 20 19 19 18 19 18 20 19 21 20 20 19 22 21 21 20 21 20 22 21 23 22 23 22 22 21 24 23 25 24 24 23 22 21 26 21 27 23 28 24 27 23 26 21 29 22 29 22 26 21 30 20 30 20 26 21 31 19 30 20 31 19 32 18 32 18 31 19 33 17 32 18 33 17 34 16 34 16 33 17 35 14 34 16 35 14 36 15 36 15 35 14 37 13 37 13 35 14 38 12 37 13 38 12 39 11 39 11 38 12 40 10 39 11 40 10 41 9 6 25 42 26 8 27 9 27 43 26 7 25 44 28 45 29 46 30 47 30 48 29 49 28 45 31 50 32 51 33 52 33 53 32 48 31 54 34 55 35 56 36 57 36 58 35 59 34 60 37 61 38 56 39 57 39 62 38 63 37 64 40 65 41 60 42 63 42 66 41 67 40 68 43 69 44 70 45 71 45 72 44 73 43 74 46 70 47 75 48 76 48 71 47 77 46 78 49 79 50 75 51 76 51 80 50 81 49 82 52 78 53 83 54 84 54 81 53 85 52 86 55 87 56 83 57 84 57 88 56 89 55 42 58 90 59 91 60 92 60 93 59 43 58 91 61 90 62 94 63 44 64 94 63 90 62 93 62 95 63 49 64 95 63 93 62 92 61 8 65 42 66 91 67 92 67 43 66 9 65 94 68 44 69 46 70 47 70 49 69 95 68 46 71 45 72 51 73 52 73 48 72 47 71 61 74 54 75 56 76 57 76 59 75 62 74 54 77 96 78 55 79 58 79 97 78 59 77 65 80 61 81 60 82 63 82 62 81 66 80 68 83 98 84 69 85 72 85 99 84 73 83 74 86 68 87 70 88 71 88 73 87 77 86 79 89 74 90 75 91 76 91 77 90 80 89 82 92 79 93 78 94 81 94 80 93 85 92 87 95 82 96 83 97 84 97 85 96 88 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1067\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1068\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1072\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1073\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1077\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.5298591187803385 -0.3295252840429122 -0.163752049627818 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803403 -0.918644180113576 -0.08247728899104256 -0.5298591187803394 -1.306654213649594 -0.1426378549353999 -0.5298591187803332 -1.309524992904242 -0.1016302976569525 -0.5298591187803385 -0.9212747390481579 -0.1209433280490344 -0.5298591187803394 -0.8115944512114692 -0.1231238211854877 -0.5298591187803323 -0.8059207761561993 -0.08313188748587486 -0.5298591187803385 -0.7281870875630058 -0.1279952099327204 -0.529859118780335 -0.7225110846459247 -0.08800314482155702 -0.5298591187803314 -0.6679996197963138 -0.1454561634339766 -0.529859118780335 -0.6474741113180418 -0.1065920224607724 -0.5298591187803412 -0.6348834577254241 -0.2053506209822162 -0.5298591187803394 -0.6124135088072079 -0.1309320141065213 -0.5298591187803341 -0.6237853014667428 -0.2722785252504707 -0.5298591187803385 -0.8159474776988487 -0.4390843728809837 -0.5298591187803385 -1.121097795849668 -0.6799049809097799 -0.5298591187803314 -1.142530494601942 -0.6448267317045966 -0.5298591187803385 -0.7915026008602089 -0.468902818332539 -0.5298591187803332 -0.7278421134616335 -0.3737216553088802 -0.5298591187803332 -0.7000331008498487 -0.4030174206923785 -0.5298591187803385 -0.6627065876926979 -0.3213985307427838 -0.5298591187803341 -0.6348994523888187 -0.3506949719571246 -0.5298591187803368 -0.5845294038790562 -0.2920441182602069 -0.5298591187803332 -0.5526358198109146 -0.1152604917311628 -0.5298591187803341 -0.5700755221866416 -0.2518870753299898 -0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.529859118780335 -0.4220446497283755 -0.0812417951098896 -0.5298591187803403 -0.3861528503676829 -0.1820102770250007 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555 -0.5298591187803332 -0.3553954881384697 -0.1160679594090341 -0.5298591187803385 -0.3295252840429122 -0.163752049627818</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1077\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1074\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1078\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1078\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1076\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1079\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"60\">9.186441801135759 -0.6488213400628682 13.06654213649594 -1.122084458825146 13.09524992904242 -0.79949167490136 9.21274739048158 -0.9514208473190707 8.115944512114693 -0.9685740599925033 8.059207761561993 -0.6539708482222155 7.281870875630058 -1.006895651470734 7.225110846459248 -0.6922914059295819 6.679996197963138 -1.144255152347283 6.474741113180418 -0.8385239100247427 6.348834577254241 -1.615424885060101 6.124135088072079 -1.029998510971301 6.237853014667429 -2.141924398637036 8.159474776988487 -3.454130399997072 11.21097795849668 -5.348585849823603 11.42530494601942 -5.07263695607616 7.915026008602089 -3.68870217088264 7.278421134616336 -2.939943688429858 7.000331008498487 -3.170403709446711 6.627065876926979 -2.5283351085099 6.348994523888187 -2.758800446062714 5.845294038790562 -2.297413730313628 5.526358198109146 -0.9067158682851475 5.700755221866416 -1.981511659262586 5.122854141660617 -1.809345535610677 4.220446497283755 -0.6391021215311316 3.861528503676829 -1.431814179263339 3.653175485382575 -0.4978760590883997 3.553954881384697 -0.9130679473510686 3.295252840429122 -1.288182790405501</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"30\" source=\"#ID1079\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1075\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1073\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1074\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 1 3 2 3 4 2 2 4 5 4 6 5 5 6 7 7 6 8 6 9 8 9 10 8 8 10 11 10 12 11 11 12 13 12 14 13 13 14 15 14 16 15 15 16 17 18 17 16 10 9 19 9 20 19 19 20 21 20 22 21 21 22 23 22 24 23 23 24 25 24 26 25 25 26 27 27 26 28 29 28 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1075\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">30 0 31 1 32 2 31 1 30 0 33 3 33 3 30 0 34 4 34 4 30 0 35 5 34 4 35 5 36 6 36 6 35 5 37 7 36 6 37 7 38 8 38 8 37 7 39 9 38 8 39 9 40 10 40 10 39 9 41 11 40 10 41 11 42 12 43 13 44 14 45 15 44 14 43 13 46 16 46 16 43 13 47 17 46 16 47 17 48 18 48 18 47 17 49 19 48 18 49 19 50 20 50 20 49 19 42 12 50 20 42 12 51 21 51 21 42 12 41 11 51 21 41 11 52 22 51 21 52 22 53 23 53 23 52 22 54 24 54 24 52 22 55 25 54 24 55 25 56 26 56 26 55 25 57 27 56 26 57 27 58 28 56 26 58 28 59 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1075\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1076\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1080\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1081\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1085\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.4162123046086261 0.5014927709964905 -1.221254125201766 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2971065043141099 -0.2248669825939378 -0.416212304608627 0.1507130949065128 -0.4023398251756589 -0.4162123046086244 0.1361451855316886 -0.3451078407964583 -0.4162123046086261 0.2266492611767017 -0.3671221295389848 -0.416212304608627 0.1880987432627954 -0.5341303697351809 -0.4161909408446114 0.2527058256284018 -0.3274195077612496 -0.4162123046086279 0.2973336585711182 -0.3214620963885855 -0.4162123046086244 0.3478576463294307 -0.2550709895438679 -0.4162123046086173 0.3281989284589564 -0.3570544651377641 -0.4162123046086244 0.4636307745313406 -0.3283028937709678 -0.4162123046086279 0.3855262800799419 -0.8154294909005553 -0.4162123046086181 0.4098444761808617 -0.7311329591340141 -0.4162123046086235 0.4890668699459886 -0.6481460373648811 -0.4162123046086261 0.5854163943199746 -0.4064373876027498 -0.4162123046086261 0.591116877332182 -0.595719210309881 -0.4162123046086261 0.6538166336351774 -0.4539868936175255 -0.4162123046086261 0.6788472305414699 -0.5963093608241907 -0.4162123046086297 0.7515384700907331 -0.5219144643473894 -0.4162123046086261 0.802499870591872 -0.6520677335870457 -0.4162123046086244 1.076133868471967 -0.7626250245865536 -0.4162123046086261 1.033634470917379 -0.8237341754443137 -0.4162123046086261 0.2284772897532152 -0.6730787138906171 -0.4162123046086261 0.2560357005322091 -0.404718824850419 -0.416212304608627 0.2546694897013426 -0.7521597088240237 -0.416212304608627 0.2920912762348833 -0.8651349724104871 -0.4162123046086181 0.3095615036372108 -0.3993511509843288 -0.4162123046086181 0.4308398372826459 -1.244676394876138 -0.4162123046086261 0.4039178151117595 -0.9498184548832565 -0.4162123046086261 0.5014927709964905 -1.221254125201766</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1085\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1082\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1086\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 -0.9999999999968606 -1.612637512908809e-006 1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006 0.9999999999968606 1.612637512908809e-006 -1.917831121198524e-006</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1086\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1084\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1087\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"116\">-10.02986884390828 -19.21441079518665 -8.078369726216202 -14.94382291552136 -8.616810169633229 -19.58292117139953 -7.710539025580329 -12.82943654886498 -6.957166350571083 -4.013129460871145 -6.563991993162109 -5.617669476879784 -6.191243496727681 -6.283137334198752 -5.841838948681586 -13.61146945795768 -5.12072743462904 -6.367588736361021 -5.093403218011745 -11.83399197753575 -4.569559219049879 -10.58978432392038 -4.532998647519656 -5.776067396796974 -3.761988289242532 -8.403663709214172 -20.67270284231222 -12.96009691898834 -21.52269079340287 -11.99864627882594 -16.05001083580809 -10.25921156711687 -15.03078282578663 -8.21146679775252 -13.57695803480326 -9.381946502322247 -13.07634609667806 -7.142739684942715 -11.82235097061978 -9.37266146756806 -11.70834131037578 -6.394627456981616 -9.781350822898569 -10.19751021323684 -9.272628914606271 -5.165311420703098 -8.196902947598092 -11.50317111573932 -5.946686595406146 -5.057682875228573 -5.942143510265987 -3.537919751528921 -5.054129935863941 -5.15141281351586 -3.014275322117851 -6.330159141483323 -2.722917134621747 -5.429709253919597 -2.971071755132994 -1.768959875764461 -1.507137661058926 -3.165079570741662 -1.361458567310874 -2.714854626959799 -2.266499323759828 -2.888033698398487 -1.880994144621266 -4.201831854607086 -2.52706496793197 -2.57570640675793 -2.973343297703073 -2.528841437614287 -3.478583175285542 -2.006564730435573 -3.281995996581054 -2.808834738439892 -4.636314457303135 -2.582655710351549 -3.855269512790164 -6.414718274432491 -4.098451473799046 -5.751585557869662 -4.890675411449284 -5.098755106618421 -5.854170655187891 -3.197313728490808 -5.911175485309891 -4.68633073378403 -6.53817304833903 -3.571369842471357 -6.788479017401629 -4.690973251161124 -7.515391412893316 -4.10573339887626 -8.025005417904044 -5.129605783558433 -10.76134539670144 -5.999323139412972 -10.33635142115611 -6.480048459494169 -2.284779609524939 -5.294892161960191 -2.56036371731452 -3.18379436818051 -2.546701609005873 -5.916995988767874 -2.920919474340793 -6.805734728978842 -3.095621748363841 -3.141568667099376 -4.308405084816615 -9.791460585699765 -4.039184863108101 -7.471911457760681 -5.014934421954141 -9.607205397593324</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID1087\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1083\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1081\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1082\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 4 4 5 5 3 3 3 3 5 5 2 2 5 5 6 6 2 2 2 2 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 9 9 8 8 10 10 8 8 11 11 10 10 12 12 10 10 11 11 13 13 14 14 15 15 14 14 16 16 15 15 15 15 16 16 17 17 16 16 18 18 17 17 17 17 18 18 19 19 18 18 20 20 19 19 19 19 20 20 21 21 20 20 22 22 21 21 21 21 22 22 23 23 23 23 22 22 3 3 4 4 3 3 22 22 5 5 4 4 24 24 4 4 25 25 24 24 24 24 25 25 26 26 26 26 25 25 11 11 12 12 11 11 27 27 11 11 25 25 27 27 28 28 27 27 25 25</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1083\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1084\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">29 29 30 30 31 31 30 30 29 29 32 32 30 30 32 32 33 33 32 32 29 29 34 34 34 34 29 29 35 35 35 35 29 29 36 36 35 35 36 36 37 37 38 38 39 39 36 36 39 39 38 38 40 40 40 40 38 38 41 41 41 41 38 38 42 42 41 41 42 42 43 43 43 43 42 42 44 44 43 43 44 44 45 45 45 45 44 44 46 46 45 45 46 46 47 47 47 47 46 46 48 48 47 47 48 48 49 49 32 32 50 50 33 33 50 50 32 32 51 51 50 50 51 51 52 52 52 52 51 51 53 53 53 53 51 51 54 54 53 53 54 54 55 55 55 55 54 54 37 37 55 55 37 37 39 39 39 39 37 37 36 36 55 55 39 39 56 56 55 55 56 56 57 57</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1083\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1084\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1088\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1089\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1093\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.4162123046086261 -0.7414507184948924 -0.5329372279204543 -0.4162123046086226 -1.02051396594049 -0.8375610738412429 -0.4162123046086164 -1.063623488565554 -0.7768810755715077 -0.416212304608627 -0.7898345752367977 -0.6640347454922448 -0.4162123046086244 -0.6667465543131355 -0.6070426435176735 -0.4162123046086244 -0.644417403488095 -0.4640349589241746 -0.4162123046086173 -0.5790255876434002 -0.6055753021097403 -0.4162123046086181 -0.5764897952120549 -0.4158041027768611 -0.4162123046086252 -0.4764569927203795 -0.6569790714465844 -0.4162123046086244 -0.455491217991268 -0.3364544275355013 -0.4162123046086261 -0.3964062556134474 -0.739170164846882 -0.416212304608627 -0.3404582372056113 -0.2620694807906125 -0.4162123046086261 -0.3712465750153288 -0.8232176904923567 -0.4162123046086244 -0.2900126270525066 -0.2313594267206995 -0.4162123046086279 -0.3049780563770809 -0.3802918950754 -0.4162123046086261 -0.2774299707915925 -0.3376693836681275 -0.4162123046086244 -0.1278582790938286 -0.3499846361904684 -0.4161909408446132 -0.2356392194265309 -0.3436973067258571 -0.4162123046086261 -0.2122667359578987 -0.3767586889519512 -0.4162123046086173 -0.1779190411255625 -0.5395173047804176 -0.4162123046086261 -0.1418554868642711 -0.4073595212477137 -0.4162123046086244 -0.3882953092459047 -0.9577838723416789 -0.416212304608627 -0.4135418341078835 -1.252455958851554 -0.4162123046086261 -0.484425226140674 -1.22974053315113 -0.4162123046086279 -0.278592493714301 -0.8715441016122436 -0.4162123046086244 -0.2838015538351487 -0.4137570111404334 -0.4162123046086181 -0.2406342664457348 -0.415495773725866 -0.4162123046086261 -0.2423069477927677 -0.758200209844746 -0.4162123046086181 -0.2169093184171816 -0.6788614980815746</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1093\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1090\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1094\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 -0.9999999999969289 1.386994906939653e-006 2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006 0.9999999999969289 -1.386994906939653e-006 -2.053943157966485e-006</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1094\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1092\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1095\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"116\">3.55839236819476 -8.488419045241628 4.245346264840824 -5.927683489544283 4.338197914026393 -10.68076768650679 4.812696874597001 -6.53714695665132 4.846150501537627 -11.92903008491025 5.571861419967594 -13.71230731538016 5.676042622384449 -6.509790425305303 6.099572673222684 -5.983272599215604 6.809176289792611 -4.123239947803949 7.424943045986368 -12.95197178042472 7.765917730597559 -15.06914637484883 8.270848227836648 -19.70532053592662 9.688516068491094 -19.34793117157087 2.837121282969626 -6.409136584333087 2.557177127561046 -5.506438392768292 4.71279593362039 -5.407517741830074 5.548610961513447 -5.312678419743834 5.800264086731488 -3.640068430440598 7.928136657948257 -11.62962404360425 9.109835905503532 -5.293563109915906 9.529151400085357 -10.33648417410537 11.52980744991694 -6.541998000371912 11.5805232985438 -9.527731536536132 12.88835961543644 -7.300830137085 13.33494263193682 -9.550817708016966 14.82902591557052 -8.384892502619829 15.79670305040769 -10.44749344574282 20.41029086447709 -13.17764101175096 21.27248131697755 -12.2229423723072 7.414512957785258 -4.192446251309915 10.20514543223855 -6.588820505875478 10.63624065848878 -6.111471186153602 7.898351525203847 -5.223746722871408 6.667471315968408 -4.775408854008483 6.444179807718218 -3.6504150685425 5.790261649271899 -4.763865768268066 5.764903724958471 -3.270999000185956 4.764575700042679 -5.168242087052686 4.554917952751766 -2.646781554957953 3.964068328974129 -5.814812021802124 3.404588144896306 -2.061619973901975 3.712471522993184 -6.475985890212362 2.900132043365744 -1.820034215220299 3.049786336611342 -2.991636299607802 2.774305480756723 -2.656339209871917 1.278588563780523 -2.753219196384146 2.356397966810195 -2.703758870915037 2.122673132420412 -2.963841744772142 1.77919618409738 -4.244209522620814 1.418560641484813 -3.204568292166544 3.88295886529878 -7.534573187424415 4.135424113918324 -9.85266026796331 4.844258034245547 -9.673965585785433 2.785930709983797 -6.856153657690079 2.838021311192224 -3.254895212652651 2.406348437298501 -3.26857347832566 2.423075250768814 -5.964515042455125 2.169098957013197 -5.340383843253396</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID1095\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1091\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1089\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1090\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 1 3 3 2 2 2 2 3 3 4 4 4 4 3 3 5 5 3 3 6 6 5 5 6 6 7 7 5 5 7 7 8 8 5 5 8 8 9 9 5 5 9 9 10 10 5 5 5 5 10 10 11 11 12 12 11 11 10 10 13 13 14 14 0 0 0 0 14 14 1 1 1 1 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 7 7 8 8 7 7 17 17 9 9 8 8 18 18 8 8 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 22 22 23 23 24 24 23 23 25 25 24 24 24 24 25 25 26 26 26 26 25 25 27 27 28 28 27 27 25 25</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1091\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1092\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 33 33 29 29 34 34 33 33 34 34 35 35 35 35 34 34 36 36 35 35 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 39 39 38 38 40 40 39 39 40 40 41 41 42 42 43 43 40 40 43 43 42 42 44 44 44 44 42 42 45 45 44 44 45 45 46 46 46 46 45 45 47 47 47 47 45 45 48 48 48 48 45 45 49 49 50 50 51 51 52 52 51 51 50 50 53 53 53 53 50 50 41 41 53 53 41 41 40 40 53 53 40 40 43 43 53 53 43 43 54 54 53 53 54 54 55 55 53 53 55 55 56 56 56 56 55 55 57 57 57 57 55 55 47 47 57 57 47 47 48 48</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1091\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1092\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1096\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1097\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1101\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4161909408446167 -0.00511566405237196 0.3989672790630737 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086244 -0.3351050937027366 1.278528987293611 -0.4162123046086279 -0.2897357241359141 0.8679033257456008 -0.4162123046086261 -0.4057228466663786 1.255007445577006 -0.4162123046086173 -0.2517967392734021 1.003317450031316 -0.4162123046086244 -0.2520999245007242 0.7550010518906437 -0.4162123046086261 -0.2257561319389242 0.675968866962877 -0.4162123046086244 -0.1861017569744696 0.8846454580484524 -0.4162123046086261 -0.1749528946291451 0.5404863335769509 -0.4162123046086226 -0.116167813416725 0.8316663270065874 -0.4162123046086261 -0.1260264959015006 0.4125310164373003 -0.4162123046086279 -0.1034485830054164 0.3579609795809227 -0.4162123046086244 -0.003037484196967588 0.8125945306808262 -0.4162123046086279 -0.04060053815066489 0.4590612568958931 -0.4162123046086297 -0.04113557090477826 0.4192218169177407 -0.4162123046086181 -0.00218143179039898 0.4797997271833777 -0.416212304608627 0.1100970689655849 0.8316663270065878 -0.4162123046086279 0.03262573415270609 0.4580985734000931 -0.4162123046086252 0.0330152755438462 0.4212766430627547 -0.4162123046086244 0.09746466404507737 0.357960979580925 -0.4162123046086173 0.1200453929030216 0.4125310164372991 -0.4162123046086261 0.1800286658884414 0.8846454580484522 -0.416212304608627 0.1689713223036924 0.5404863335769518 -0.4162123046086261 0.2197769062483774 0.6759688669628764 -0.4162123046086261 0.2457189549176049 1.003317450031319 -0.4162123046086226 0.2461211681371349 0.7550010518906455 -0.4162123046086173 0.3291216628424536 1.278528987293611 -0.4162123046086244 0.2837555597913828 0.8679033257456026 -0.4162123046086261 0.3997417436679012 1.255007445577007 -0.4161909408446167 -0.00511566405237196 0.3989672790630737</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1101\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1098\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1102\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 -0.9999999999968093 1.483414804270905e-007 -2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006 0.9999999999968093 -1.483414804270905e-007 2.52183290800681e-006</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1102\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1100\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1103\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"116\">-0.6603042760459281 6.628102364821207 0.1023145158150442 6.277101703712805 -1.949292046070537 5.631935926043967 0.8227126529265449 6.595773100139321 2.068972894939293 5.631935926042748 -7.994833638526947 19.7454669910059 -6.582432022018011 20.11553924734553 -5.675109960996605 13.65502883901048 -4.922422127911656 11.87869973036458 -4.914377863521055 15.78554439443209 -4.395536890136512 10.63526002083815 -3.600572082937799 13.91843838724053 -3.379425211242822 8.503668162239411 -2.400906623229417 6.490504505914989 -2.201940144480685 13.08490005885077 -0.6525134482231259 7.207434068793488 0.04362987063896788 7.548865554982541 0.06075091877033985 12.78483712999241 0.8120119978442776 7.222580289126928 2.323357503165463 13.08490005884943 2.520531152860973 6.490504505913559 3.499059127413852 8.503668162237371 3.72203637432034 13.91843838723838 4.515123873609423 10.63526002083553 5.035936020298975 15.78554439442911 5.041999724845416 11.87869973036162 5.794715717549207 13.65502883900708 6.702103108885646 20.11553924734162 8.114458168158471 19.74546699100114 3.351051554442823 10.05776962367081 2.897357858774603 6.827514419503538 4.057229084079236 9.872733495500569 2.517968010149487 7.892772197214557 2.520999862422708 5.939349865180811 2.257561936804712 5.317630010417767 1.86101818716017 6.959219193619191 1.749529563706926 4.251834081118686 1.161678751582732 6.542450029424717 1.260265576430486 3.245252252956779 1.034486447469647 2.815967963021374 0.03037545938516992 6.392418564996206 0.4060059989221388 3.611290144563464 0.4113563264632725 3.297886550069661 0.02181493531948394 3.774432777491271 -1.100970072240343 6.542450029425386 -0.3262567241115629 3.603717034396744 -0.3301521380229641 3.314051182410604 -0.9746460230352685 2.815967963021984 -1.200453311614709 3.245252252957494 -1.8002860414689 6.959219193620267 -1.689712605621411 4.251834081119705 -2.197768445068256 5.317630010419073 -2.457188931760527 7.892772197216043 -2.461211063955828 5.939349865182291 -3.291216011009006 10.05776962367277 -2.837554980498303 6.82751441950524 -3.997416819263473 9.872733495502947 0.05115725790752209 3.138550851856402</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID1103\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1099\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1097\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1098\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 3 4 4 1 1 2 2 1 1 4 4 5 5 6 6 7 7 7 7 6 6 8 8 6 6 9 9 8 8 8 8 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 12 12 11 11 13 13 11 11 14 14 13 13 13 13 14 14 2 2 2 2 14 14 0 0 0 0 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 18 18 3 3 18 18 4 4 18 18 17 17 4 4 17 17 19 19 4 4 4 4 19 19 20 20 20 20 19 19 21 21 19 19 22 22 21 21 21 21 22 22 23 23 22 22 24 24 23 23 23 23 24 24 25 25 25 25 24 24 26 26 24 24 27 27 26 26 28 28 26 26 27 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1099\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1100\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">29 29 30 30 31 31 30 30 29 29 32 32 30 30 32 32 33 33 33 33 32 32 34 34 34 34 32 32 35 35 34 34 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 39 39 37 37 40 40 39 39 40 40 41 41 39 39 41 41 42 42 41 41 40 40 43 43 43 43 40 40 44 44 43 43 44 44 45 45 45 45 44 44 46 46 46 46 44 44 47 47 47 47 44 44 48 48 48 48 44 44 49 49 48 48 49 49 50 50 50 50 49 49 51 51 51 51 49 49 52 52 51 51 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 55 55 54 54 56 56 39 39 57 57 47 47 57 57 39 39 42 42 47 47 57 57 46 46</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1099\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1100\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1104\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1105\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1109\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.4162123046086244 1.316109687941657 0.1039835031210425 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4162123046086261 0.3492322862728121 0.2531845391452241 -0.4162123046086181 0.370210301049509 0.02408374850269102 -0.4162123046086261 0.3049569366631018 0.2141040384354958 -0.4161909408446087 0.3705313207019594 0.1347196048381978 -0.4162123046086244 0.3808363143690436 0.1780313229116073 -0.4162123046086261 0.4543592013220617 0.3410159102930946 -0.4162123046086244 0.4171162283668619 0.1877001720206117 -0.4162123046086261 0.4546727117428857 0.1654273216597648 -0.4162123046086173 0.5659951934461545 0.4330716935634781 -0.4162123046086252 0.7267448645349062 0.5559208458287792 -0.4162123046086261 0.7760190157796461 0.4639714308245292 -0.4162123046086261 0.7486244376618725 0.3806234651983123 -0.4162123046086261 1.055188819222163 0.7913508392888397 -0.4162123046086244 0.8669191658473214 0.5646483376598327 -0.4162123046086279 1.10037321764071 0.7321992700263995 -0.4162123046086261 0.4291563426420491 0.02045150969376453 -0.4162123046086181 0.4027313565131847 0.1046634358861096 -0.4162123046086279 0.4465763332847266 0.1211579325026699 -0.4162123046086261 0.5660623259770008 0.0157393495101128 -0.4162123046086235 0.6321853157061295 0.4836561306364627 -0.4162123046086173 0.7107037190053362 0.01169222565327077 -0.416212304608627 0.7940055028569761 0.01244537812006286 -0.4162123046086173 0.76733549049982 0.2674301335251241 -0.4162123046086173 0.8221181887961395 0.1666252693827346 -0.4162123046086261 0.9130108296321888 0.01352271819641193 -0.416212304608627 0.8949356585292227 0.1176924221024227 -0.4162123046086288 1.028511748187276 0.09410463957624371 -0.4162123046086173 1.316803841314141 0.02955222911022992 -0.4162123046086244 1.316109687941657 0.1039835031210425</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1109\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1106\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1110\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 -0.9999999999967393 -2.36714249128926e-006 -9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007 0.9999999999967393 2.36714249128926e-006 9.581623825722732e-007</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1110\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1108\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1111\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"116\">-26.32221346343603 1.636013390160535 -20.57025466836452 1.480585937066035 -26.33609653088566 0.4649613457242628 -18.26023629726925 0.2127637073613848 -17.89873287521094 1.85170038214918 -16.44238348055336 2.621577179361666 -15.88012976177167 0.1958135568310805 -15.34672951463004 4.207573708536487 -14.97250845787214 5.988482126861165 -14.53491699533404 8.746494248780024 -14.21409408474354 0.1839639580231964 -12.6437260187638 7.60952939642481 -11.32126622418493 0.2476387067093099 -11.31992357356801 6.813667586479245 -9.093473939508872 2.602729468533396 -8.931546370346142 1.906224412462378 -8.583146557493567 0.3217766936036152 -8.054646834917762 1.646710999030179 -7.410646117683638 2.119594723555238 -7.40422572564607 0.3789239175328026 -22.00748405742919 11.51994145614131 -21.10379608906077 12.45059281253822 -17.33840302157449 8.883806786916869 -15.52040002022607 7.299823452712065 -9.087203731092407 5.365323263029861 -8.3423442719905 2.953155647545233 -7.616745992036167 2.801032421564928 -6.984665430113307 3.983443023641084 -6.09915843792158 3.36857647914322 -3.492332715056654 1.991721511820542 -3.702112862823035 0.1894619587664013 -3.04957921896079 1.68428823957161 -3.705323058841819 1.059797361777619 -3.808372996018083 1.400516210782464 -4.543601865546203 2.682661631514931 -4.17117213599525 1.476577823772616 -4.546736969754436 1.301364734266698 -5.659961786784004 3.406833793239623 -7.267458497667017 4.373247124390012 -7.760200010113037 3.649911726356033 -7.486254228936068 2.994241063430582 -10.55189804453039 6.225296406269112 -8.669201510787243 4.441903393458435 -11.00374202871459 5.759970728070657 -4.291573278746784 0.1608883468018076 -4.027323417458881 0.8233554995150897 -4.465773185173071 0.953112206231189 -5.660633112092466 0.123819353354655 -6.321863009381899 3.804764698212405 -7.107047042371768 0.09198197901159821 -7.940064880885833 0.09790677841554024 -7.673364757315019 2.103786854268244 -8.22119174027668 1.310788589680833 -9.130118148634626 0.1063818536806924 -8.949366437605471 0.9258501910745902 -10.28512733418226 0.7402929685330173 -13.16804826544283 0.2324806728621314 -13.16110673171801 0.8180066950802676</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID1111\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1107\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1105\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1106\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 4 4 5 5 3 3 3 3 5 5 6 6 5 5 7 7 6 6 7 7 8 8 6 6 8 8 9 9 6 6 6 6 9 9 10 10 9 9 11 11 10 10 10 10 11 11 12 12 11 11 13 13 12 12 13 13 14 14 12 12 14 14 15 15 12 12 12 12 15 15 16 16 15 15 17 17 16 16 17 17 18 18 16 16 19 19 16 16 18 18 20 20 21 21 22 22 22 22 21 21 23 23 21 21 9 9 23 23 8 8 23 23 9 9 13 13 24 24 14 14 14 14 24 24 25 25 25 25 24 24 26 26 24 24 27 27 26 26 26 26 27 27 18 18 18 18 27 27 19 19 28 28 19 19 27 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1107\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1108\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 33 33 29 29 34 34 33 33 34 34 35 35 35 35 34 34 36 36 36 36 34 34 37 37 38 38 39 39 40 40 39 39 38 38 41 41 39 39 41 41 42 42 42 42 41 41 43 43 32 32 44 44 30 30 44 44 32 32 45 45 44 44 45 45 46 46 44 44 46 46 47 47 47 47 46 46 36 36 47 47 36 36 37 37 47 47 37 37 48 48 47 47 48 48 49 49 49 49 48 48 38 38 49 49 38 38 50 50 50 50 38 38 40 40 50 50 40 40 51 51 50 50 51 51 52 52 50 50 52 52 53 53 53 53 52 52 54 54 53 53 54 54 55 55 53 53 55 55 56 56 56 56 55 55 57 57</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1107\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1108\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1112\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1113\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1117\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086244 -0.7820770884023743 0.4497980564798922 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086297 -1.03085890871988 0.07742440211515689 -0.4162123046086173 -1.318917690019806 0.01070628700574683 -0.4162123046086279 -1.31896980408737 0.08514025026014016 -0.4162123046086173 -0.9149857575525927 -0.001285603922516199 -0.4162123046086261 -0.8975273196439257 0.1023457772472791 -0.4162123046086261 -0.7959756999614491 -0.001172378789249251 -0.4162123046086252 -0.8252007283829244 0.1520053867384519 -0.4162123046086261 -0.7714266700800109 0.2533525582030911 -0.4162123046086261 -0.7126692603861802 -0.001092593203111392 -0.4162123046086261 -0.7538526650964739 0.3667275194164872 -0.4162123046086173 -0.7341531720982173 0.5429480849843462 -0.4162123046086261 -0.6388793451561661 0.4716334753248365 -0.416212304608627 -0.5680771279173804 0.004400644402479781 -0.4162123046086261 -0.5721832508685337 0.4217130420593106 -0.4162123046086297 -0.4596321086848948 0.3307772982336686 -0.4162123046086244 -0.4712502792344306 0.1469994231737535 -0.4162123046086261 -0.4369021150750995 0.1750805515669656 -0.4162123046086261 -0.3536303681499931 0.2440018001462079 -0.4162123046086173 -0.396202530159151 0.1655972180255407 -0.4161909408446141 -0.3803153614242695 0.1202988294707565 -0.4162123046086261 -0.3723203951393472 0.01470331020776428 -0.4162123046086244 -0.3089659277030439 0.2053661087724659 -0.4162123046086261 -0.4603750345168541 0.1014002054130723 -0.4162123046086261 -0.4312255865117951 0.01048147938362809 -0.4162123046086261 -0.4139215384055851 0.08890496599494169 -0.416212304608627 -1.064935276240128 0.7750823893176165 -0.4162123046086261 -0.873980697093657 0.5495601887172364 -0.4162123046086261 -1.109520888527975 0.7154817680033152 -0.4162123046086244 -0.7820770884023743 0.4497980564798922</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1117\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1114\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1118\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">-0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 -0.9999999999966979 2.488176268941614e-006 -6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007 0.9999999999966979 -2.488176268941614e-006 6.428420920865758e-007</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1118\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1116\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1119\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"116\">15.07707401407439 5.769850515057511 14.68308415411048 8.542387413325084 15.64156248019065 7.076826964854104 17.47963465401062 8.646417845385683 21.29872623692821 12.19463380149279 22.19043848268239 11.25691735948019 7.606327939590292 1.892705793038809 8.27845148027766 1.398775674567985 7.446428614955478 0.2313362901843486 8.624532442400788 0.1649128185498039 9.207521402500165 1.59536744141203 9.425026296851021 2.312795134179659 11.36156327050402 0.06924101484297966 6.179339266233333 3.231097654269962 7.072628075169551 3.838965865215587 7.924071315350075 2.605400439849607 8.738063013666524 2.754604887566969 9.192662885861024 5.204233701788687 11.44368572952684 6.634956071308992 12.77760761527535 7.420370888018093 14.25340591987107 -0.01718592348860902 15.42855411374404 3.986084458633338 15.91953471137129 -0.01844121671260754 16.50403527979898 2.391555627588657 17.95056710501454 1.610244438259214 18.29973586318679 -0.02022262547900209 20.61719888652537 1.218148136177216 26.37837451250605 0.1684497917821321 26.37941679385733 1.339544146984344 10.30859944326268 0.609074068088608 13.18918725625302 0.08422489589106605 13.18970839692866 0.6697720734921721 9.149867931593397 -0.01011131273950105 8.975283552507268 0.8051222191296068 7.959767355685644 -0.009220608356303768 8.252017639899492 1.195777813794329 7.714277056872022 1.993042229316669 7.126702959935534 -0.00859296174430451 7.538537007037196 2.884925257528756 7.34154207705524 4.271193706662542 6.388803807637676 3.710185444009047 5.680781635252012 0.03462050742148983 5.721842864763418 3.317478035654496 4.596331442930512 2.602116850894344 4.712513148425511 1.156397567089829 4.369031506833262 1.377302443783485 3.536314037584776 1.919482932607794 3.962035657675037 1.302700219924803 3.803163969795146 0.9463528965194042 3.723214307477739 0.1156681450921743 3.089669633116666 1.615548827134981 4.603760701250082 0.797683720706015 4.312266221200394 0.08245640927490194 4.13922574013883 0.6993878372839926 10.64936311846411 6.097316900746395 8.739817327005309 4.323208922692841 11.09521924134119 5.628458679740094 7.820781240095327 3.538413482427052</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"58\" source=\"#ID1119\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1115\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1113\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1114\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 5 5 3 3 4 4 6 6 7 7 8 8 8 8 7 7 9 9 7 7 10 10 9 9 11 11 12 12 10 10 9 9 10 10 12 12 13 13 14 14 8 8 8 8 14 14 6 6 6 6 14 14 15 15 15 15 14 14 16 16 14 14 17 17 16 16 16 16 17 17 11 11 11 11 17 17 12 12 17 17 18 18 12 12 18 18 19 19 12 12 12 12 19 19 20 20 19 19 1 1 20 20 1 1 0 0 20 20 0 0 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 23 23 24 24 22 22 22 22 24 24 25 25 24 24 26 26 25 25 25 25 26 26 27 27 28 28 27 27 26 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1115\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1116\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"29\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">29 29 30 30 31 31 30 30 29 29 32 32 32 32 29 29 33 33 32 32 33 33 34 34 34 34 33 33 35 35 34 34 35 35 36 36 34 34 36 36 37 37 37 37 36 36 38 38 37 37 38 38 39 39 37 37 39 39 40 40 37 37 40 40 41 41 41 41 40 40 42 42 41 41 42 42 43 43 41 41 43 43 44 44 44 44 43 43 45 45 45 45 43 43 46 46 45 45 46 46 47 47 47 47 46 46 48 48 48 48 46 46 49 49 49 49 46 46 50 50 41 41 51 51 52 52 51 51 41 41 44 44 52 52 51 51 53 53 52 52 53 53 49 49 49 49 53 53 48 48 54 54 55 55 56 56 55 55 54 54 39 39 55 55 39 39 57 57 57 57 39 39 38 38</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1115\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1116\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1120\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1121\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1125\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.529859118780335 1.153719775386548 -0.6297892700755456 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803421 0.6465636169821214 -0.09445369682232685 -0.529859118780335 0.6312715173082746 -0.2624456557494441 -0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803394 0.6383334991085194 -0.1943718802796175 -0.5298591187803385 0.6674805817056042 -0.1331108739850881 -0.5298591187803332 0.7214160884886991 -0.07511472672820818 -0.5298591187803359 0.7274873022668071 -0.1150496418933491 -0.5298591187803403 0.8047690102077907 -0.06941064397807395 -0.5298591187803341 0.8108412001860152 -0.1093441558555519 -0.5298591187803403 0.9174831027179364 -0.06762907877231328 -0.5298591187803385 0.9204975335737806 -0.1060676622021359 -0.5298591187803403 1.308534375066758 -0.08287152365196104 -0.5298591187803359 1.306074050413374 -0.1239064333066431 -0.5298591187803421 0.3579646215582655 -0.1078885288489735 -0.5298591187803421 0.3927492598064775 -0.1745604246376611 -0.5298591187803332 0.3359395570683434 -0.1568687875405319 -0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803368 0.4208938599800833 -0.07135917225600208 -0.5298591187803332 0.5193516011359987 -0.221286843772758 -0.5298591187803385 0.5518205800782978 -0.1040696152348324 -0.5298591187803385 0.577359476874042 -0.2425931246104369 -0.529859118780335 0.5922151024590223 -0.2826033620621615 -0.529859118780335 0.6431652391127047 -0.3407481686390952 -0.5298591187803394 0.670680415490555 -0.3111751624235817 -0.5298591187803332 0.7088226564803792 -0.3924172015834979 -0.5298591187803385 0.7363364811965314 -0.3628437448140831 -0.5298591187803385 0.8009468113048119 -0.4573837696406147 -0.529859118780335 0.8250918445241953 -0.4273218748994059 -0.5298591187803403 1.132635279705254 -0.6650791294282479 -0.529859118780335 1.153719775386548 -0.6297892700755456</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1125\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1122\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1126\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 -1 -4.532924804013422e-018 -2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023 1 4.532924804013422e-018 2.161466981894217e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1126\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1124\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1127\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"120\">-23.07439550773097 -9.908684515855253 -16.5018368904839 -6.72319749841732 -22.65270559410508 -10.46391163633777 -16.01893622609624 -7.196171309012338 -14.72672962393063 -5.708741585074908 -14.17645312960758 -6.174030638247034 -13.4136083098111 -4.895822555464352 -12.86330478225409 -5.361104519921764 -12.62543034616549 -4.129144983791254 -11.84430204918045 -4.446292896444675 -12.23498784722559 -1.874505443854724 -11.54718953748084 -3.816798493870874 -11.03641160156596 -1.637361946361363 -10.38703202271997 -3.481579675358059 -8.417877199601666 -1.122717643494433 -7.854985196129549 -2.746417347632534 -7.2798246100092 -0.8491966345196895 -7.159292431165309 -1.69744618722385 -6.718791141366869 -2.468068923971035 -26.12148100826749 -1.949461217357851 -26.17068750133516 -1.303845305457521 -18.40995067147561 -1.668797885313605 -18.34966205435873 -1.064030839351062 -16.21682400372031 -1.72034805212735 -16.09538020415581 -1.092060798588364 -14.54974604533614 -1.810114365788693 -14.42832176977398 -1.181805033857142 -13.34961163411208 -2.09427775069872 -12.93127233964243 -1.486071496671276 -12.76666998217039 -3.058117583065982 -6.465636169821214 -0.7430357483356379 -6.312715173082745 -2.064572491895627 -6.117493923612793 -0.937252721927362 -6.383334991085194 -1.529058791532991 -6.674805817056042 -1.04713887534936 -7.214160884886991 -0.5909025169285711 -7.274873022668071 -0.9050571828943463 -8.047690102077906 -0.5460303992941817 -8.108412001860152 -0.860174026063675 -9.174831027179364 -0.5320154196755311 -9.204975335737807 -0.8343989426568027 -13.08534375066758 -0.6519226527287603 -13.06074050413374 -0.9747306086789257 -3.579646215582655 -0.8487230936119248 -3.927492598064775 -1.373208673816267 -3.359395570683434 -1.234034461985518 -3.6399123050046 -0.4245983172598448 -4.208938599800833 -0.5613588217472164 -5.193516011359987 -1.74078983767903 -5.518205800782978 -0.8186809731806815 -5.77359476874042 -1.908399246935437 -5.922151024590223 -2.223146448222337 -6.431652391127047 -2.680552259960882 -6.70680415490555 -2.447911277732176 -7.088226564803792 -3.087015319123517 -7.363364811965314 -2.854370792537454 -8.009468113048119 -3.598085654506169 -8.250918445241952 -3.36159874920866 -11.32635279705254 -5.231955818168884 -11.53719775386548 -4.954342257927626</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"60\" source=\"#ID1127\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1123\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1121\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1122\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 11 11 12 12 13 13 12 12 14 14 13 13 13 13 14 14 15 15 14 14 16 16 15 15 16 16 17 17 15 15 18 18 15 15 17 17 19 19 20 20 21 21 20 20 22 22 21 21 21 21 22 22 23 23 22 22 24 24 23 23 23 23 24 24 25 25 24 24 26 26 25 25 25 25 26 26 27 27 26 26 28 28 27 27 27 27 28 28 29 29 29 29 28 28 8 8 10 10 8 8 28 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1123\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1124\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">30 30 31 31 32 32 31 31 30 30 33 33 33 33 30 30 34 34 34 34 30 30 35 35 34 34 35 35 36 36 36 36 35 35 37 37 36 36 37 37 38 38 38 38 37 37 39 39 38 38 39 39 40 40 40 40 39 39 41 41 40 40 41 41 42 42 43 43 44 44 45 45 44 44 43 43 46 46 44 44 46 46 47 47 44 44 47 47 48 48 48 48 47 47 49 49 48 48 49 49 50 50 50 50 49 49 32 32 50 50 32 32 51 51 51 51 32 32 31 31 51 51 31 31 52 52 52 52 31 31 53 53 52 52 53 53 54 54 54 54 53 53 55 55 54 54 55 55 56 56 56 56 55 55 57 57 56 56 57 57 58 58 58 58 57 57 59 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1123\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1124\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1128\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1129\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1133\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">-0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035538 1.270754829964972 0.3435938670600639 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035591 -1.323998135775804 -0.3578618201771624 -0.2249169753035609 -1.270747921471866 -0.3435928533137942 -0.2249169753035627 -1.316378218064985 -0.002991724816679309 -0.2249169753035609 -1.186264785299155 -0.6883446063460488 -0.2249169753035609 -1.13852296786218 -0.6607812957934118 -0.2249169753035627 -0.9676892997933901 -0.9719181235894885 -0.2249169753035627 -0.9287060999525937 -0.9329367259642836 -0.2249169753035609 -0.6831627108706453 -1.189255937536927 -0.2249169753035645 -0.6556009772566556 -1.141515021207738 -0.2249169753035609 -0.3520815891249638 -1.325548942293378 -0.2249169753035627 -0.3378135984617037 -1.272300980758927 -0.2249169753035609 0.002993367461099794 -1.371508293416812 -0.2249169753035627 0.002993367461107122 -1.316380621019106 -0.2249169753035627 0.3578613696232724 -1.324001139468466 -0.2249169753035547 0.3435947306217084 -1.270750774979887 -0.2249169753035609 0.6607832481936404 -1.138523568600704 -0.2249169753035627 0.6883464085616424 -1.186264860391474 -0.2249169753035609 0.9329413065955807 -0.9287076017989184 -0.2249169753035645 0.9719179734048569 -0.9676885488702287 -0.2249169753035645 1.141515847223227 -0.6556001512411753 -0.2249169753035627 1.189255787352293 -0.6831632365168616 -0.2249169753035547 1.272300830574298 -0.3378149876695595 -0.2249169753035627 1.325550293955077 -0.3520830158789752 -0.2249169753035538 1.316380470834466 0.002991490153192666 -0.2249169753035627 1.324002340945525 0.3578620454541118 -0.2249169753035627 1.371509494893863 0.002991490153192222 -0.2249169753035627 -1.325547891000948 0.3520832787020826 -0.2249169753035618 -1.371506791570486 -0.002991724816678865 -0.2249169753035538 -1.272297526512372 0.3378148750310842 -0.2249169753035609 -1.189256237906191 0.6831632365168621 -0.2249169753035645 -1.1415120926074 0.6555994754103253 -0.2249169753035645 -0.9719207518205638 0.9676885488702285 -0.2249169753035645 -0.9329352241179443 0.9287067006911228 -0.2249169753035627 -0.6883468591155371 1.186265836591588 -0.2249169753035547 -0.6607781419161218 1.138523868969968 -0.2249169753035627 -0.3578613696232667 1.324001740206996 -0.2249169753035609 -0.3435919522059974 1.27075212664158 -0.2249169753035645 -0.002990082172260378 1.37150829341681 -0.2249169753035627 -0.002990082172267483 1.316380921388373 -0.2249169753035538 0.3378140490156039 1.272299929466496 -0.2249169753035645 0.3520825277789115 1.325549693216544 -0.2249169753035645 0.6556009772566611 1.141514645746157 -0.2249169753035609 0.6831636119784472 1.189256688460091 -0.2249169753035645 0.9287065505064953 0.9329369512412303 -0.2249169753035538 0.9676888492394975 0.9719181235894887 -0.2249169753035538 1.138526271924082 0.6607810705164634 -0.2249169753035627 1.186263358545151 0.688344831622999 -0.2249169753035538 1.270754829964972 0.3435938670600639</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID1133\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1130\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1134\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 1 4.532924804013422e-018 3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023 -1 -4.532924804013422e-018 -3.458347171030748e-023</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"96\" source=\"#ID1134\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1132\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1135\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">13.16380470834466 0.02353305587178231 12.70754829964972 2.702938420872503 13.24002340945525 2.815181424239013 11.86263358545151 5.414979342100926 11.38526271924082 5.198144421396179 9.676888492394975 7.645755905570645 9.287065505064954 7.339104016431012 6.831636119784472 9.35548594921938 6.556009772566611 8.979915213203102 3.520825277789115 10.42765758663682 3.378140490156039 10.00875944513644 -0.02990082172260377 10.7891985748789 -0.02990082172267482 10.35552991492187 -3.435919522059974 9.9965833962471 -3.578613696232667 10.41548035629503 -6.607781419161219 8.956387769230418 -6.883468591155371 9.331957914520494 -9.329352241179443 7.305826045436834 -9.719207518205637 7.612483251112464 -11.415120926074 5.157382539894559 -11.89256237906191 5.374217460599315 -12.72297526512372 2.657477016911196 -13.25547891000948 2.769721792456383 -13.16378218064985 -0.02353490189121056 -13.23998135775804 -2.815179652060345 -13.71506791570486 -0.02353490189120707 13.71509494893863 0.02353305587177882 13.25550293955077 -2.769719724914605 12.72300830574298 -2.657477903000535 11.89255787352293 -5.374217460599311 11.41515847223228 -5.15738785643058 9.719179734048568 -7.612483251112466 9.329413065955807 -7.305833134151492 6.883464085616424 -9.331950235079592 6.607832481936404 -8.956385406325536 3.578613696232724 -10.41547563048526 3.435947306217084 -9.996572763175115 0.02993367461107122 -10.35552755201697 0.02993367461099795 -10.78919857487892 -3.378135984617037 -10.00876771530356 -3.520815891249638 -10.42765167937458 -6.556009772566556 -8.979918166834205 -6.831627108706453 -9.35548004195716 -9.287060999525936 -7.339102244252365 -9.676892997933901 -7.645755905570643 -11.3852296786218 -5.19814619357484 -11.86264785299155 -5.414977569922251 -12.70747921471866 -2.702930446068514</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"48\" source=\"#ID1135\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1131\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1129\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1130\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"96\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 3 3 1 1 4 4 3 3 3 3 4 4 5 5 4 4 6 6 5 5 5 5 6 6 7 7 6 6 8 8 7 7 7 7 8 8 9 9 8 8 10 10 9 9 9 9 10 10 11 11 10 10 12 12 11 11 12 12 13 13 11 11 11 11 13 13 14 14 13 13 15 15 14 14 14 14 15 15 16 16 15 15 17 17 16 16 16 16 17 17 18 18 17 17 19 19 18 18 18 18 19 19 20 20 19 19 21 21 20 20 20 20 21 21 22 22 21 21 23 23 22 22 23 23 24 24 22 22 25 25 22 22 24 24 26 26 27 27 2 2 2 2 27 27 0 0 0 0 27 27 28 28 27 27 29 29 28 28 28 28 29 29 30 30 29 29 31 31 30 30 30 30 31 31 32 32 31 31 33 33 32 32 32 32 33 33 34 34 33 33 35 35 34 34 34 34 35 35 36 36 36 36 35 35 37 37 35 35 38 38 37 37 37 37 38 38 39 39 38 38 40 40 39 39 39 39 40 40 41 41 40 40 42 42 41 41 41 41 42 42 43 43 42 42 44 44 43 43 43 43 44 44 45 45 44 44 46 46 45 45 45 45 46 46 47 47 46 46 24 24 47 47 23 23 47 47 24 24 48 24 49 47 50 23 49 47 48 24 51 46 49 47 51 46 52 45 52 45 51 46 53 44 52 45 53 44 54 43 54 43 53 44 55 42 54 43 55 42 56 41 56 41 55 42 57 40 56 41 57 40 58 39 58 39 57 40 59 38 58 39 59 38 60 37 60 37 59 38 61 35 60 37 61 35 62 36 62 36 61 35 63 34 63 34 61 35 64 33 63 34 64 33 65 32 65 32 64 33 66 31 65 32 66 31 67 30 67 30 66 31 68 29 67 30 68 29 69 28 69 28 68 29 70 27 69 28 70 27 71 0 71 0 70 27 72 2 72 2 70 27 73 26 48 24 74 22 75 25 74 22 48 24 50 23 74 22 50 23 76 21 74 22 76 21 77 20 77 20 76 21 78 19 77 20 78 19 79 18 79 18 78 19 80 17 79 18 80 17 81 16 81 16 80 17 82 15 81 16 82 15 83 14 83 14 82 15 84 13 83 14 84 13 85 11 85 11 84 13 86 12 85 11 86 12 87 10 85 11 87 10 88 9 88 9 87 10 89 8 88 9 89 8 90 7 90 7 89 8 91 6 90 7 91 6 92 5 92 5 91 6 93 4 92 5 93 4 94 3 94 3 93 4 95 1 94 3 95 1 72 2 72 2 95 1 71 0</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1131\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1132\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1136\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1137\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1139\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.4478128033659967 0.2778640982455765 -0.362934906886154 -0.4478128033659949 0.307457980125035 -0.3945048806169198</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1139\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1138\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1138\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1137\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1140\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1141\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1143\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.4478128033659896 -0.2592153908032857 -0.3790163769896233 -0.4478128033659932 -0.2418521699517856 -0.4090073094918703</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1143\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1142\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1142\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1141\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1144\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1145\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1147\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.4478128033659967 -0.4253519781642065 0.1347814339741829 -0.4478128033659914 -0.4139088478041265 0.0933464324579063</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1147\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1146\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1146\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1145\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1148\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1149\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1151\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.4478128033659932 -0.003894005930508371 0.4410080127493087 -0.4478128033659967 0.03004302779671875 0.423250557236884</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1151\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1150\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1150\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1149\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1152\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1153\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1155\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.4478128033659976 0.4132203263553758 0.1481986756257214 -0.4478128033659941 0.443604104310682 0.1249160682732518</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1155\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1154\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1154\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1153\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1156\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1157\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1159\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803314 0.06967112045046342 -0.5572081158620679 -0.5298591187803332 0.005569503239401641 -0.6325761712128029</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1159\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1158\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1158\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1157\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1160\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1161\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1163\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803385 -0.5122854141660617 -0.2300015511369504 -0.5298591187803314 -0.6020747235977453 -0.1948699676140677</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1163\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1162\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1162\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1161\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1164\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1165\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1167\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803314 0.005242382336229534 -0.5675233220841833 -0.529859118780335 -0.05171889424246934 -0.426670674331888</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1167\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1166\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1166\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1165\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1168\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1169\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1171\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803421 0.004574999374554745 -0.4344675846323871 -0.5298591187803332 -0.05146217238589301 -0.3671710521830955</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1171\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1170\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1170\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1169\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1172\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1173\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1175\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803332 0.2776580637025481 0.4881003567420519 -0.5298591187803332 0.365877924949132 0.5166904045363489</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1175\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1174\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1174\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1173\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1176\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1177\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1179\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803314 -0.3342368387947641 0.459116412202264 -0.5298591187803323 -0.2836405746819554 0.488100356742052</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1179\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1178\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1178\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1177\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1180\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1181\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1183\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803341 0.328054863850014 0.4637080820710361 -0.5298591187803368 0.2863054132589566 0.3205489738215878</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1183\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1182\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1182\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1181\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1184\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1185\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1187\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803421 0.2506140352906494 0.3552348656737639 -0.5298591187803332 0.2520881913262922 0.2718711494341899</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1187\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1186\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1186\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1185\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1188\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1189\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1191\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803385 -0.4141557137941606 0.4657306560661704 -0.5298591187803341 -0.3723203951393453 0.5119000403984736</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1191\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1190\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1190\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1189\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1192\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1193\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1195\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.529859118780335 -0.2566800864720181 0.2636596732281198 -0.5298591187803323 -0.2562910144078499 0.3510828613173088</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1195\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1194\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1194\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1193\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1196\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1197\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1199\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803385 -0.540087405646254 -0.1750670537230961 -0.529859118780335 -0.4220446497283755 -0.0812417951098896</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1199\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1198\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1198\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1197\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1200\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1201\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1203\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.529859118780335 -0.4132513394820253 -0.1345502998244115 -0.5298591187803332 -0.3653175485382575 -0.06328932954513555</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1203\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1202\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1202\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1201\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1204\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1205\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1207\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803394 0.5432375283177788 -0.1650388315610469 -0.5298591187803332 0.5193516011359987 -0.221286843772758</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1207\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1206\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1206\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1205\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1208\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1209\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1211\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803359 0.6117493923612793 -0.1191422951602579 -0.5298591187803385 0.6054177208838552 -0.184220112484069</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1211\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1210\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1210\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1209\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1212\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1213\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1215\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">-0.5298591187803385 0.36399123050046 -0.05397436236353959 -0.5298591187803385 0.4160034728768081 -0.1257918324128582</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1215\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1214\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1214\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1213\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1216\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1217\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1219\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"6\">0.4736113844101926 1.42012168249506 1.065790132799686 0.8846653631423393 1.420121682495051 1.065790132799686</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"2\" source=\"#ID1219\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<lines xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" count=\"1\" name=\"\" material=\"Material2\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1218\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">1 0</p>\r\n\t\t\t\t</lines>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1218\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1217\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1222\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1228\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1232\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1008\">-0.3969897627830505 0.2017256319522858 0.5573908686637878 -0.3969897627830505 0.216172605752945 0.555826723575592 -0.3344528675079346 0.2122509032487869 0.5473707914352417 -0.3344528675079346 0.2122509032487869 0.5473707914352417 -0.3969897627830505 0.216172605752945 0.555826723575592 -0.3969897627830505 0.2017256319522858 0.5573908686637878 -0.4577676355838776 0.1979141235351563 0.5491738319396973 -0.4577676355838776 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.1979141235351563 0.5491738319396973 -0.3362122476100922 0.2218439280986786 0.535342276096344 -0.3362122476100922 0.2218439280986786 0.535342276096344 -0.4535223543643951 0.1872304528951645 0.5396941304206848 -0.4535223543643951 0.1872304528951645 0.5396941304206848 -0.4595263302326202 0.2122509032487869 0.5473707914352417 -0.4595263302326202 0.2122509032487869 0.5473707914352417 -0.3969897627830505 0.190775528550148 0.5473343729972839 -0.3969897627830505 0.190775528550148 0.5473343729972839 -0.2774728834629059 0.2008335143327713 0.5227594971656799 -0.2774728834629059 0.2008335143327713 0.5227594971656799 -0.2808338701725006 0.2107474654912949 0.5114217400550842 -0.2808338701725006 0.2107474654912949 0.5114217400550842 -0.3969897627830505 0.2256553471088409 0.5435583591461182 -0.3969897627830505 0.2256553471088409 0.5435583591461182 -0.5050317049026489 0.1769081056118012 0.5174409151077271 -0.5050317049026489 0.1769081056118012 0.5174409151077271 -0.513146698474884 0.1868172287940979 0.5252532958984375 -0.513146698474884 0.1868172287940979 0.5252532958984375 -0.3404567539691925 0.1872304528951645 0.5396941304206848 -0.3404567539691925 0.1872304528951645 0.5396941304206848 -0.2808338701725006 0.1868172287940979 0.5252532958984375 -0.2808338701725006 0.1868172287940979 0.5252532958984375 -0.2889475822448731 0.2107493579387665 0.4978778660297394 -0.2889475822448731 0.2107493579387665 0.4978778660297394 -0.3404567539691925 0.2210730165243149 0.5201323628425598 -0.3404567539691925 0.2210730165243149 0.5201323628425598 -0.4969178736209869 0.1769112795591354 0.5039008259773254 -0.4969178736209869 0.1769112795591354 0.5039008259773254 -0.449276864528656 0.1864599287509918 0.5244837999343872 -0.449276864528656 0.1864599287509918 0.5244837999343872 -0.5165071487426758 0.2008335143327713 0.5227594971656799 -0.5165071487426758 0.2008335143327713 0.5227594971656799 -0.4577676355838776 0.2218439280986786 0.535342276096344 -0.4577676355838776 0.2218439280986786 0.535342276096344 -0.3969897627830505 0.1897388398647308 0.531552791595459 -0.3969897627830505 0.1897388398647308 0.531552791595459 -0.2311128377914429 0.1829331666231155 0.4841702878475189 -0.2311128377914429 0.1829331666231155 0.4841702878475189 -0.2357764393091202 0.1933503299951553 0.4739169776439667 -0.2357764393091202 0.1933503299951553 0.4739169776439667 -0.2470376193523407 0.1945692449808121 0.4629979431629181 -0.2470376193523407 0.1945692449808121 0.4629979431629181 -0.3969897627830505 0.2246185094118118 0.5277756452560425 -0.3969897627830505 0.2246185094118118 0.5277756452560425 -0.5356808304786682 0.1619468927383423 0.4716387093067169 -0.5356808304786682 0.1619468927383423 0.4716387093067169 -0.546941876411438 0.1607280522584915 0.4825592339038849 -0.546941876411438 0.1607280522584915 0.4825592339038849 -0.5582029819488525 0.1694204658269882 0.4877499043941498 -0.5582029819488525 0.1694204658269882 0.4877499043941498 -0.3447033762931824 0.1864599287509918 0.5244837999343872 -0.3447033762931824 0.1864599287509918 0.5244837999343872 -0.2889475822448731 0.1769081056118012 0.5174409151077271 -0.2889475822448731 0.1769081056118012 0.5174409151077271 -0.2357764393091202 0.1694204658269882 0.4877499043941498 -0.2357764393091202 0.1694204658269882 0.4877499043941498 -0.2582992911338806 0.1858771443367004 0.4578079283237457 -0.2582992911338806 0.1858771443367004 0.4578079283237457 -0.2970618903636932 0.2008417099714279 0.490065723657608 -0.2970618903636932 0.2008417099714279 0.490065723657608 -0.3447033762931824 0.2103893458843231 0.5106498599052429 -0.3447033762931824 0.2103893458843231 0.5106498599052429 -0.5310156345367432 0.1723641604185104 0.4613868892192841 -0.5310156345367432 0.1723641604185104 0.4613868892192841 -0.4935570359230042 0.1868250817060471 0.4925611317157745 -0.4935570359230042 0.1868250817060471 0.4925611317157745 -0.4475182890892029 0.1960520446300507 0.5124538540840149 -0.4475182890892029 0.1960520446300507 0.5124538540840149 -0.5628681778907776 0.1829331666231155 0.4841702878475189 -0.5628681778907776 0.1829331666231155 0.4841702878475189 -0.513146698474884 0.2107474654912949 0.5114217400550842 -0.513146698474884 0.2107474654912949 0.5114217400550842 -0.4535223543643951 0.2210730165243149 0.5201323628425598 -0.4535223543643951 0.2210730165243149 0.5201323628425598 -0.3969897627830505 0.1992211937904358 0.5192845463752747 -0.3969897627830505 0.1992211937904358 0.5192845463752747 -0.1994902491569519 0.160144031047821 0.4350440502166748 -0.1994902491569519 0.160144031047821 0.4350440502166748 -0.2050454169511795 0.1712013632059097 0.4261728525161743 -0.2050454169511795 0.1712013632059097 0.4261728525161743 -0.2184522151947022 0.1739687025547028 0.4185889363288879 -0.2184522151947022 0.1739687025547028 0.4185889363288879 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.3969897627830505 0.2136686891317368 0.5177204012870789 -0.3969897627830505 0.2136686891317368 0.5177204012870789 -0.5565645694732666 0.1539511382579804 0.4216945171356201 -0.5565645694732666 0.1539511382579804 0.4216945171356201 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5755271911621094 0.1401268541812897 0.4381494522094727 -0.5755271911621094 0.1401268541812897 0.4381494522094727 -0.5889348983764648 0.1472729295492172 0.4400050044059753 -0.5889348983764648 0.1472729295492172 0.4400050044059753 -0.3464618027210236 0.1960520446300507 0.5124538540840149 -0.3464618027210236 0.1960520446300507 0.5124538540840149 -0.2970618903636932 0.1769112795591354 0.5039008259773254 -0.2970618903636932 0.1769112795591354 0.5039008259773254 -0.2470376193523407 0.1607280522584915 0.4825592339038849 -0.2470376193523407 0.1607280522584915 0.4825592339038849 -0.2050454169511795 0.1472729295492172 0.4400050044059753 -0.2050454169511795 0.1472729295492172 0.4400050044059753 -0.2374149113893509 0.1539511382579804 0.4216945171356201 -0.2374149113893509 0.1539511382579804 0.4216945171356201 -0.2629641890525818 0.1723641604185104 0.4613868892192841 -0.2629641890525818 0.1723641604185104 0.4613868892192841 -0.3004229962825775 0.1868250817060471 0.4925611317157745 -0.3004229962825775 0.1868250817060471 0.4925611317157745 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5356808304786682 0.1858771443367004 0.4578079283237457 -0.5356808304786682 0.1858771443367004 0.4578079283237457 -0.4969178736209869 0.2008417099714279 0.490065723657608 -0.4969178736209869 0.2008417099714279 0.490065723657608 -0.449276864528656 0.2103893458843231 0.5106498599052429 -0.449276864528656 0.2103893458843231 0.5106498599052429 -0.5944892168045044 0.160144031047821 0.4350440502166748 -0.5944892168045044 0.160144031047821 0.4350440502166748 -0.5582029819488525 0.1933503299951553 0.4739169776439667 -0.5582029819488525 0.1933503299951553 0.4739169776439667 -0.5050317049026489 0.2107493579387665 0.4978778660297394 -0.5050317049026489 0.2107493579387665 0.4978778660297394 -0.1854178756475449 0.1344887018203735 0.379740834236145 -0.1854178756475449 0.1344887018203735 0.379740834236145 -0.1913672238588333 0.1462691277265549 0.3724253475666046 -0.1913672238588333 0.1462691277265549 0.3724253475666046 -0.205731064081192 0.1507763862609863 0.3685949742794037 -0.205731064081192 0.1507763862609863 0.3685949742794037 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2260439544916153 0.1332219839096069 0.3770101070404053 -0.2260439544916153 0.1332219839096069 0.3770101070404053 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5679354667663574 0.1332219839096069 0.3770102262496948 -0.5679354667663574 0.1332219839096069 0.3770102262496948 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5882483720779419 0.1169347614049912 0.3881564140319824 -0.5882483720779419 0.1169347614049912 0.3881564140319824 -0.602612316608429 0.1223383918404579 0.3862566649913788 -0.602612316608429 0.1223383918404579 0.3862566649913788 -0.2582992911338806 0.1619468927383423 0.4716387093067169 -0.2582992911338806 0.1619468927383423 0.4716387093067169 -0.2184522151947022 0.1401268541812897 0.4381494522094727 -0.2184522151947022 0.1401268541812897 0.4381494522094727 -0.1913672238588333 0.1223383918404579 0.3862566649913788 -0.1913672238588333 0.1223383918404579 0.3862566649913788 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.5882483720779419 0.1507763862609863 0.3685950040817261 -0.5882483720779419 0.1507763862609863 0.3685950040817261 -0.5755271911621094 0.1739687025547028 0.4185889363288879 -0.5755271911621094 0.1739687025547028 0.4185889363288879 -0.546941876411438 0.1945692449808121 0.4629979431629181 -0.546941876411438 0.1945692449808121 0.4629979431629181 -0.6085617542266846 0.1344887018203735 0.379740834236145 -0.6085617542266846 0.1344887018203735 0.379740834236145 -0.5889348983764648 0.1712013632059097 0.4261728525161743 -0.5889348983764648 0.1712013632059097 0.4261728525161743 -0.1901445388793945 0.108248382806778 0.3231741487979889 -0.1901445388793945 0.108248382806778 0.3231741487979889 -0.1959603577852249 0.1207654625177383 0.3174494504928589 -0.1959603577852249 0.1207654625177383 0.3174494504928589 -0.2100040912628174 0.1270548850297928 0.3174593448638916 -0.2100040912628174 0.1270548850297928 0.3174593448638916 -0.2240462750196457 0.1234327480196953 0.323198676109314 -0.2240462750196457 0.1234327480196953 0.323198676109314 -0.2298634797334671 0.1120201274752617 0.3313052952289581 -0.2298634797334671 0.1120201274752617 0.3313052952289581 -0.2240462750196457 0.09950244426727295 0.3370305299758911 -0.2240462750196457 0.09950244426727295 0.3370305299758911 -0.5839760303497315 0.1270548850297928 0.3174594044685364 -0.5839760303497315 0.1270548850297928 0.3174594044685364 -0.5699338316917419 0.1234327480196953 0.323198676109314 -0.5699338316917419 0.1234327480196953 0.323198676109314 -0.5641167759895325 0.1120201274752617 0.3313052952289581 -0.5641167759895325 0.1120201274752617 0.3313052952289581 -0.5699338316917419 0.09950244426727295 0.3370305597782135 -0.5699338316917419 0.09950244426727295 0.3370305597782135 -0.5839760303497315 0.09321287274360657 0.3370204567909241 -0.5839760303497315 0.09321287274360657 0.3370204567909241 -0.5980189442634583 0.09683530032634735 0.3312812447547913 -0.5980189442634583 0.09683530032634735 0.3312812447547913 -0.205731064081192 0.1169347614049912 0.3881563544273377 -0.205731064081192 0.1169347614049912 0.3881563544273377 -0.1959603577852249 0.09683530032634735 0.3312811255455017 -0.1959603577852249 0.09683530032634735 0.3312811255455017 -0.2100040912628174 0.09321287274360657 0.3370203971862793 -0.2100040912628174 0.09321287274360657 0.3370203971862793 -0.5980189442634583 0.1207654625177383 0.3174495100975037 -0.5980189442634583 0.1207654625177383 0.3174495100975037 -0.602612316608429 0.1462691277265549 0.372425377368927 -0.602612316608429 0.1462691277265549 0.372425377368927 -0.6038353443145752 0.108248382806778 0.3231741487979889 -0.6038353443145752 0.108248382806778 0.3231741487979889 -0.2132495641708374 0.08375199884176254 0.2703697681427002 -0.2132495641708374 0.08375199884176254 0.2703697681427002 -0.2184157222509384 0.09695863723754883 0.2661298215389252 -0.2184157222509384 0.09695863723754883 0.2661298215389252 -0.2308897227048874 0.1049110144376755 0.2697240114212036 -0.2308897227048874 0.1049110144376755 0.2697240114212036 -0.2433643490076065 0.1029518842697144 0.2790485918521881 -0.2433643490076065 0.1029518842697144 0.2790485918521881 -0.2485314607620239 0.09222786128520966 0.2886408567428589 -0.2485314607620239 0.09222786128520966 0.2886408567428589 -0.2433643490076065 0.0790218710899353 0.2928808033466339 -0.2433643490076065 0.0790218710899353 0.2928808033466339 -0.2308897227048874 0.07106951624155045 0.2892857789993286 -0.2308897227048874 0.07106951624155045 0.2892857789993286 -0.5755632519721985 0.09695863723754883 0.2661299407482147 -0.5755632519721985 0.09695863723754883 0.2661299407482147 -0.5630897283554077 0.1049110144376755 0.2697240114212036 -0.5630897283554077 0.1049110144376755 0.2697240114212036 -0.550615668296814 0.1029518842697144 0.2790486514568329 -0.550615668296814 0.1029518842697144 0.2790486514568329 -0.5454484224319458 0.09222786128520966 0.2886409163475037 -0.5454484224319458 0.09222786128520966 0.2886409163475037 -0.550615668296814 0.0790218710899353 0.2928808629512787 -0.550615668296814 0.0790218710899353 0.2928808629512787 -0.5630897283554077 0.07106951624155045 0.2892858386039734 -0.5630897283554077 0.07106951624155045 0.2892858386039734 -0.5755632519721985 0.07302837073802948 0.2799610495567322 -0.5755632519721985 0.07302837073802948 0.2799610495567322 -0.2184157222509384 0.07302837073802948 0.2799609899520874 -0.2184157222509384 0.07302837073802948 0.2799609899520874 -0.5807303786277771 0.08375222980976105 0.2703697681427002 -0.5807303786277771 0.08375222980976105 0.2703697681427002 -0.2526813745498657 0.0631781592965126 0.2260204702615738 -0.2526813745498657 0.0631781592965126 0.2260204702615738 -0.2567388117313385 0.07696282863616943 0.2230269759893417 -0.2567388117313385 0.07696282863616943 0.2230269759893417 -0.2665359377861023 0.08631247282028198 0.2296321243047714 -0.2665359377861023 0.08631247282028198 0.2296321243047714 -0.2763324975967407 0.08574993163347244 0.2419681996107101 -0.2763324975967407 0.08574993163347244 0.2419681996107101 -0.2803907990455627 0.07560457289218903 0.2528066337108612 -0.2803907990455627 0.07560457289218903 0.2528066337108612 -0.2763324975967407 0.06182022392749786 0.255800187587738 -0.2763324975967407 0.06182022392749786 0.255800187587738 -0.2665359377861023 0.05247067660093308 0.2491944879293442 -0.2665359377861023 0.05247067660093308 0.2491944879293442 -0.2567388117313385 0.05303321778774262 0.2368583828210831 -0.2567388117313385 0.05303321778774262 0.2368583828210831 -0.5412995219230652 0.0631781592965126 0.2260205298662186 -0.5412995219230652 0.0631781592965126 0.2260205298662186 -0.5372412204742432 0.07696282863616943 0.2230269759893417 -0.5372412204742432 0.07696282863616943 0.2230269759893417 -0.5274438858032227 0.08631247282028198 0.229632243514061 -0.5274438858032227 0.08631247282028198 0.229632243514061 -0.5176466703414917 0.08574993163347244 0.2419681996107101 -0.5176466703414917 0.08574993163347244 0.2419681996107101 -0.5135881304740906 0.07560480386018753 0.252806693315506 -0.5135881304740906 0.07560480386018753 0.252806693315506 -0.5176466703414917 0.06182022392749786 0.2558001279830933 -0.5176466703414917 0.06182022392749786 0.2558001279830933 -0.5274438858032227 0.05247067660093308 0.249194547533989 -0.5274438858032227 0.05247067660093308 0.249194547533989 -0.5372412204742432 0.05303321778774262 0.2368584722280502 -0.5372412204742432 0.05303321778774262 0.2368584722280502 -0.3049343228340149 0.04835595190525055 0.1940678507089615 -0.3049343228340149 0.04835595190525055 0.1940678507089615 -0.3075232207775116 0.06255754083395004 0.1919737458229065 -0.3075232207775116 0.06255754083395004 0.1919737458229065 -0.3137733042240143 0.07291240990161896 0.2007463872432709 -0.3137733042240143 0.07291240990161896 0.2007463872432709 -0.3200229704380035 0.07335587590932846 0.2152515798807144 -0.3200229704380035 0.07335587590932846 0.2152515798807144 -0.3226109147071838 0.06362755596637726 0.2269887775182724 -0.3226109147071838 0.06362755596637726 0.2269887775182724 -0.3200229704380035 0.04942680522799492 0.2290833741426468 -0.3200229704380035 0.04942680522799492 0.2290833741426468 -0.3137733042240143 0.03907079249620438 0.2203076630830765 -0.3137733042240143 0.03907079249620438 0.2203076630830765 -0.3075232207775116 0.03862743079662323 0.2058039754629135 -0.3075232207775116 0.03862743079662323 0.2058039754629135 -0.4864564538002014 0.03862784057855606 0.2058040350675583 -0.4864564538002014 0.03862784057855606 0.2058040350675583 -0.4890454411506653 0.04835615679621697 0.1940679997205734 -0.4890454411506653 0.04835615679621697 0.1940679997205734 -0.4864564538002014 0.06255754083395004 0.1919737756252289 -0.4864564538002014 0.06255754083395004 0.1919737756252289 -0.4802065193653107 0.07291240990161896 0.2007464468479157 -0.4802065193653107 0.07291240990161896 0.2007464468479157 -0.4739566445350647 0.07335587590932846 0.2152516394853592 -0.4739566445350647 0.07335587590932846 0.2152516394853592 -0.4713678061962128 0.06362777203321457 0.2269886881113052 -0.4713678061962128 0.06362777203321457 0.2269886881113052 -0.4739566445350647 0.04942680522799492 0.2290834337472916 -0.4739566445350647 0.04942680522799492 0.2290834337472916 -0.4802065193653107 0.03907079249620438 0.2203076630830765 -0.4802065193653107 0.03907079249620438 0.2203076630830765 -0.365368127822876 0.04060065001249313 0.1773498803377152 -0.365368127822876 0.04060065001249313 0.1773498803377152 -0.3662575781345367 0.05502000823616982 0.1757262051105499 -0.3662575781345367 0.05502000823616982 0.1757262051105499 -0.3684046268463135 0.06590185314416885 0.185634508728981 -0.3684046268463135 0.06590185314416885 0.185634508728981 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3714402318000794 0.05736114829778671 0.2134792059659958 -0.3714402318000794 0.05736114829778671 0.2134792059659958 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3684046268463135 0.03205951303243637 0.2051951140165329 -0.3684046268463135 0.03205951303243637 0.2051951140165329 -0.3662575781345367 0.03109009563922882 0.1895565390586853 -0.3662575781345367 0.03109009563922882 0.1895565390586853 -0.4255755841732025 0.03205951303243637 0.2051951140165329 -0.4255755841732025 0.03205951303243637 0.2051951140165329 -0.4277224540710449 0.03109009563922882 0.1895565390586853 -0.4277224540710449 0.03109009563922882 0.1895565390586853 -0.4286115169525147 0.04060065001249313 0.1773498803377152 -0.4286115169525147 0.04060065001249313 0.1773498803377152 -0.4277224540710449 0.05502000823616982 0.1757262051105499 -0.4277224540710449 0.05502000823616982 0.1757262051105499 -0.4255755841732025 0.06590185314416885 0.185634508728981 -0.4255755841732025 0.06590185314416885 0.185634508728981 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4225397408008575 0.05736114829778671 0.2134792059659958 -0.4225397408008575 0.05736114829778671 0.2134792059659958 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.4233378767967224 0.04165389388799667 0.2158837467432022</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"336\" source=\"#ID1232\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1229\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1233\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1008\">1.100715383596115e-005 -0.2879526679489293 0.9576446422864466 -5.00212074441366e-007 0.4861331523678775 0.8738847510791226 0.2915133493835332 0.4649853603216409 0.8359477147631591 -0.2915133493835332 -0.4649853603216409 -0.8359477147631591 5.00212074441366e-007 -0.4861331523678775 -0.8738847510791226 -1.100715383596115e-005 0.2879526679489293 -0.9576446422864466 -0.2165908462952944 -0.3036360506308182 0.9278434965329054 0.2165908462952944 0.3036360506308182 -0.9278434965329054 0.2165672156771486 -0.3036348934200792 0.9278493911145411 -0.2165672156771486 0.3036348934200792 -0.9278493911145411 0.2012191114973859 0.935966109203319 0.2889261351816466 -0.2012191114973859 -0.935966109203319 -0.2889261351816466 -0.01338570612357837 -0.8872174650094622 0.4611572320302012 0.01338570612357837 0.8872174650094622 -0.4611572320302012 -0.2915081904689192 0.4649882673554808 0.8359478967682641 0.2915081904689192 -0.4649882673554808 -0.8359478967682641 9.286556119569346e-006 -0.886195944691421 0.4633106382614584 -9.286556119569346e-006 0.886195944691421 -0.4633106382614584 0.5586933627804324 0.4030607494604687 0.7248474036853946 -0.5586933627804324 -0.4030607494604687 -0.7248474036853946 0.3872031794044685 0.8971003565986427 0.2128018986044513 -0.3872031794044685 -0.8971003565986427 -0.2128018986044513 -4.215760203857162e-006 0.9491698563782013 0.3147643304525022 4.215760203857162e-006 -0.9491698563782013 -0.3147643304525022 -0.02489908720408136 -0.8902586988205591 0.4547741028584725 0.02489908720408136 0.8902586988205591 -0.4547741028584725 -0.4127100464423818 -0.3494503553924499 0.8411628062875923 0.4127100464423818 0.3494503553924499 -0.8411628062875923 0.01337168713847178 -0.8872144590180767 0.4611634218932942 -0.01337168713847178 0.8872144590180767 -0.4611634218932942 0.4127213451782525 -0.3494520919706329 0.8411565411096807 -0.4127213451782525 0.3494520919706329 -0.8411565411096807 0.01371745529342166 0.9156097785848437 -0.4018340015231245 -0.01371745529342166 -0.9156097785848437 0.4018340015231245 0.006620618646293013 0.9162693618435276 -0.4005079574185703 -0.006620618646293013 -0.9162693618435276 0.4005079574185703 0.363455227687781 -0.9155786834854502 -0.1720929162210725 -0.363455227687781 0.9155786834854502 0.1720929162210725 0.1887453159836821 -0.9514474668815823 -0.2431520583068137 -0.1887453159836821 0.9514474668815823 0.2431520583068137 -0.5586849146318411 0.4030614471027265 0.7248535272882849 0.5586849146318411 -0.4030614471027265 -0.7248535272882849 -0.2012099022502427 0.9359642253928665 0.2889386509644896 0.2012099022502427 -0.9359642253928665 -0.2889386509644896 -5.812806568932802e-007 -0.9636132872443618 -0.2673002668269849 5.812806568932802e-007 0.9636132872443618 0.2673002668269849 0.7781572839386454 0.3051784083299842 0.5489420557239244 -0.7781572839386454 -0.3051784083299842 -0.5489420557239244 0.5429990370358453 0.8347584459073265 0.09127093055584411 -0.5429990370358453 -0.8347584459073265 -0.09127093055584411 0.0216401567875206 0.9177460426900622 -0.3965777411062578 -0.0216401567875206 -0.9177460426900622 0.3965777411062578 -2.059688964850534e-006 0.9164211759940478 -0.4002152273283016 2.059688964850534e-006 -0.9164211759940478 0.4002152273283016 0.5222649138591139 -0.8510833480847447 -0.05381908922114634 -0.5222649138591139 0.8510833480847447 0.05381908922114634 -0.03319586646515618 -0.8907586118954389 0.453262760199576 0.03319586646515618 0.8907586118954389 -0.453262760199576 -0.5698524653192305 -0.4205778588907226 0.7059620615730641 0.5698524653192305 0.4205778588907226 -0.7059620615730641 -0.1887331923837483 -0.9514500233658778 -0.2431514654072841 0.1887331923837483 0.9514500233658778 0.2431514654072841 0.02490777566955089 -0.8902587869583333 0.4547734545404692 -0.02490777566955089 0.8902587869583333 -0.4547734545404692 0.5698689534768392 -0.4205476238758168 0.7059667640304439 -0.5698689534768392 0.4205476238758168 -0.7059667640304439 -0.5544686309274808 0.4664188183525423 -0.6892155128869512 0.5544686309274808 -0.4664188183525423 0.6892155128869512 -0.3952795905222943 0.3983177432788594 -0.827705878138946 0.3952795905222943 -0.3983177432788594 0.827705878138946 -0.207927917002811 0.3537115165398592 -0.911950735729702 0.207927917002811 -0.3537115165398592 0.911950735729702 0.7794515084571977 -0.3099762539564684 -0.5443988133224705 -0.7794515084571977 0.3099762539564684 0.5443988133224705 0.5575192502637445 -0.4076386593834047 -0.7231894696146043 -0.5575192502637445 0.4076386593834047 0.7231894696146043 0.2907385042740951 -0.4698676619789975 -0.8334839544699421 -0.2907385042740951 0.4698676619789975 0.8334839544699421 -0.7781654779003928 0.3051658714372215 0.5489374098328645 0.7781654779003928 -0.3051658714372215 -0.5489374098328645 -0.3872146420584227 0.8970965729133288 0.2127969920904148 0.3872146420584227 -0.8970965729133288 -0.2127969920904148 -0.00660748602147272 0.916263273565502 -0.4005221025655215 0.00660748602147272 -0.916263273565502 0.4005221025655215 8.541388568576863e-006 -0.4910278000528664 -0.8711439028669642 -8.541388568576863e-006 0.4910278000528664 0.8711439028669642 0.9293599606018972 0.179336702210366 0.3226893411167321 -0.9293599606018972 -0.179336702210366 -0.3226893411167321 0.6544140873167479 0.7531369058381351 -0.06728300963800632 -0.6544140873167479 -0.7531369058381351 0.06728300963800632 0.08491776977295618 0.9176703790828461 -0.3881623986564549 -0.08491776977295618 -0.9176703790828461 0.3881623986564549 -0.6089327437528342 0.5904872166633667 -0.5296468262368759 0.6089327437528342 -0.5904872166633667 0.5296468262368759 2.974362482897488e-006 0.3383138927599808 -0.9410333203222624 -2.974362482897488e-006 -0.3383138927599808 0.9410333203222624 0.930509737814023 -0.1808882794953763 -0.3184824299305707 -0.930509737814023 0.1808882794953763 0.3184824299305707 0.5871771771243384 -0.8010775837051904 0.116179462683157 -0.5871771771243384 0.8010775837051904 -0.116179462683157 -0.09343537945941918 -0.8868205441743211 0.4525694999617577 0.09343537945941918 0.8868205441743211 -0.4525694999617577 -0.6732692549969293 -0.5099273050840194 0.5354275430024397 0.6732692549969293 0.5099273050840194 -0.5354275430024397 -0.290749099116707 -0.4698652454584595 -0.833481620956986 0.290749099116707 0.4698652454584595 0.833481620956986 -0.3634643232123655 -0.9155783093509572 -0.1720756961276642 0.3634643232123655 0.9155783093509572 0.1720756961276642 0.03305816323114872 -0.894752363067841 0.4453373627131425 -0.03305816323114872 0.894752363067841 -0.4453373627131425 0.673259410583817 -0.5099398597757813 0.5354279647834881 -0.673259410583817 0.5099398597757813 -0.5354279647834881 -0.9303034464617545 -0.1771334335109996 -0.3211841282410853 0.9303034464617545 0.1771334335109996 0.3211841282410853 -0.7795733875872093 -0.3052459198546588 -0.5468914533779863 0.7795733875872093 0.3052459198546588 0.5468914533779863 -0.557525300036653 -0.4076416721374287 -0.7231831074880283 0.557525300036653 0.4076416721374287 0.7231831074880283 0.6083105377611066 0.5964914058014206 -0.5235993625414743 -0.6083105377611066 -0.5964914058014206 0.5235993625414743 0.5460609384515709 0.4719230165382369 -0.6921749186143923 -0.5460609384515709 -0.4719230165382369 0.6921749186143923 0.3952953118344753 0.3983059077837897 -0.8277040656334943 -0.3952953118344753 -0.3983059077837897 0.8277040656334943 0.2079168365125522 0.3537163887637413 -0.9119513722861271 -0.2079168365125522 -0.3537163887637413 0.9119513722861271 -0.9293620016168114 0.1793367018887206 0.3226834630198296 0.9293620016168114 -0.1793367018887206 -0.3226834630198296 -0.5429698145779854 0.8347806377526564 0.09124180670293802 0.5429698145779854 -0.8347806377526564 -0.09124180670293802 -0.0137147172176815 0.915604316800109 -0.4018465398490383 0.0137147172176815 -0.915604316800109 0.4018465398490383 0.9971363129691673 0.03671384203629936 0.06611555914600223 -0.9971363129691673 -0.03671384203629936 -0.06611555914600223 0.7098166461020702 0.6583800844002149 -0.250391679936803 -0.7098166461020702 -0.6583800844002149 0.250391679936803 0.09262093803667669 0.9028998927923957 -0.419753672327815 -0.09262093803667669 -0.9028998927923957 0.419753672327815 -0.6320131605804139 0.6764909543610331 -0.3780467610241551 0.6320131605804139 -0.6764909543610331 0.3780467610241551 -0.9968574878858364 -0.04248596266388211 -0.06685874529530655 0.9968574878858364 0.04248596266388211 0.06685874529530655 0.6377644486983164 0.6763436168742892 -0.3685319794670977 -0.6377644486983164 -0.6763436168742892 0.3685319794670977 0.9967452301006394 -0.03912097567410024 -0.07048755587995632 -0.9967452301006394 0.03912097567410024 0.07048755587995632 0.6293091094626061 -0.7298048971572618 0.2671232989326467 -0.6293091094626061 0.7298048971572618 -0.2671232989326467 -0.0878470981311025 -0.9032670839852487 0.4199898359945516 0.0878470981311025 0.9032670839852487 -0.4199898359945516 -0.7139595591759941 -0.6085786298290158 0.3462568398987349 0.7139595591759941 0.6085786298290158 -0.3462568398987349 -0.5124184657129083 -0.8570967194989182 -0.05303328596854585 0.5124184657129083 0.8570967194989182 0.05303328596854585 0.08429227443152722 -0.8856210560847648 0.4566948187690176 -0.08429227443152722 0.8856210560847648 -0.4566948187690176 0.7139661310468548 -0.6085710049990598 0.34625669032153 -0.7139661310468548 0.6085710049990598 -0.34625669032153 -0.6384249373570429 -0.7202899272963328 0.2712858639813348 0.6384249373570429 0.7202899272963328 -0.2712858639813348 -0.5817646013022528 -0.8027559971512503 0.1308921606106814 0.5817646013022528 0.8027559971512503 -0.1308921606106814 -0.0975350277309561 0.9057875738450613 -0.4123539613407385 0.0975350277309561 -0.9057875738450613 0.4123539613407385 -0.07861868255715707 0.9197678292123763 -0.3845077932876396 0.07861868255715707 -0.9197678292123763 0.3845077932876396 -0.02133435285472708 0.9141485480559647 -0.4048175854325521 0.02133435285472708 -0.9141485480559647 0.4048175854325521 -0.9971359471075431 0.03672338310102496 0.06611577814378743 0.9971359471075431 -0.03672338310102496 -0.06611577814378743 -0.6544282329626999 0.753125001996044 -0.06727866875746516 0.6544282329626999 -0.753125001996044 0.06727866875746516 0.9743393554807079 -0.1093163319607265 -0.1967555842361046 -0.9743393554807079 0.1093163319607265 0.1967555842361046 0.701768580865077 0.5586859060907931 -0.4420304483246886 -0.701768580865077 -0.5586859060907931 0.4420304483246886 0.03706289722461273 0.9026851440191707 -0.4287025453813015 -0.03706289722461273 -0.9026851440191707 0.4287025453813015 -0.6503264580190576 0.7378384316224732 -0.1807482968696412 0.6503264580190576 -0.7378384316224732 0.1807482968696412 -0.9751811664482191 0.1061087405855619 0.1943260861954379 0.9751811664482191 -0.1061087405855619 -0.1943260861954379 -0.6723224793925161 -0.6002392068805169 0.4332382464960218 0.6723224793925161 0.6002392068805169 -0.4332382464960218 -0.04106258774338166 0.8990879536256117 -0.4358379464125708 0.04106258774338166 -0.8990879536256117 0.4358379464125708 0.6586147483838466 0.7298865062220813 -0.1830090195761027 -0.6586147483838466 -0.7298865062220813 0.1830090195761027 0.9748193469988046 0.111417186237971 0.1931669001864392 -0.9748193469988046 -0.111417186237971 -0.1931669001864392 0.6651896065333129 -0.6032270776840166 0.440045315971955 -0.6651896065333129 0.6032270776840166 -0.440045315971955 -0.03185468267752745 -0.9097173842164842 0.4140042995499341 0.03185468267752745 0.9097173842164842 -0.4140042995499341 -0.6897283700466407 -0.7069106424900996 0.1566911582924795 0.6897283700466407 0.7069106424900996 -0.1566911582924795 0.09347567343550103 -0.9000933710169554 0.4255516677527101 -0.09347567343550103 0.9000933710169554 -0.4255516677527101 0.6897375445398015 -0.7069016727983516 0.1566912398543636 -0.6897375445398015 0.7069016727983516 -0.1566912398543636 0.03593812209819782 -0.9127512269897633 0.4069319955579026 -0.03593812209819782 0.9127512269897633 -0.4069319955579026 -0.7017590213569223 0.5586946081510511 -0.4420346262083076 0.7017590213569223 -0.5586946081510511 0.4420346262083076 -0.709818748063382 0.6583775987073595 -0.2503922571048552 0.709818748063382 -0.6583775987073595 0.2503922571048552 -0.974338443766663 -0.1093171781621164 -0.1967596288800864 0.974338443766663 0.1093171781621164 0.1967596288800864 0.8633889564679328 -0.2451083098381773 -0.4410004833302183 -0.8633889564679328 0.2451083098381773 0.4410004833302183 0.6290046103695766 0.4634642747900084 -0.6241426648829487 -0.6290046103695766 -0.4634642747900084 0.6241426648829487 0.03554156252135575 0.8973259468323727 -0.4399351571253733 -0.03554156252135575 -0.8973259468323727 0.4399351571253733 -0.5694245203325242 0.8219547043962799 -0.01209047413871957 0.5694245203325242 -0.8219547043962799 0.01209047413871957 -0.8627114190412447 0.2482474767330248 0.4405703096572987 0.8627114190412447 -0.2482474767330248 -0.4405703096572987 -0.5992748592906593 -0.5084212250092343 0.6183668013260982 0.5992748592906593 0.5084212250092343 -0.6183668013260982 0.02512503278738687 -0.9129947515708048 0.4071969011812309 -0.02512503278738687 0.9129947515708048 -0.4071969011812309 -0.6289899427792813 0.4634856608255055 -0.6241415657458338 0.6289899427792813 -0.4634856608255055 0.6241415657458338 -0.03554759284476012 0.8973269535253716 -0.439932616567377 0.03554759284476012 -0.8973269535253716 0.439932616567377 0.5694218016437607 0.8219566749752858 -0.01208454700623923 -0.5694218016437607 -0.8219566749752858 0.01208454700623923 0.8627077507767076 0.248248209645723 0.4405770797005759 -0.8627077507767076 -0.248248209645723 -0.4405770797005759 0.5992774056691878 -0.5084208416781608 0.6183646487321849 -0.5992774056691878 0.5084208416781608 -0.6183646487321849 -0.02512235848010955 -0.9129943206482132 0.407198032373076 0.02512235848010955 0.9129943206482132 -0.407198032373076 -0.6050543403621613 -0.7960244965541471 -0.01594509625641305 0.6050543403621613 0.7960244965541471 0.01594509625641305 0.605062878180421 -0.7960177516385063 -0.01595783583078501 -0.605062878180421 0.7960177516385063 0.01595783583078501 -0.8633931629464862 -0.2450969105560301 -0.4409985834593485 0.8633931629464862 0.2450969105560301 0.4409985834593485 0.6757257263860772 -0.3582131733021387 -0.6442655238120539 -0.6757257263860772 0.3582131733021387 0.6442655238120539 0.497191645673142 0.3821475813859728 -0.7789503793655177 -0.497191645673142 -0.3821475813859728 0.7789503793655177 0.02947926195039484 0.8923438960447034 -0.4503924336693717 -0.02947926195039484 -0.8923438960447034 0.4503924336693717 -0.4412794085392349 0.8892751887941607 0.1202585639128165 0.4412794085392349 -0.8892751887941607 -0.1202585639128165 -0.6746014688802863 0.3624176619489304 0.6430912038677179 0.6746014688802863 -0.3624176619489304 -0.6430912038677179 -0.4754566145998638 -0.4300698529820409 0.7674509294992365 0.4754566145998638 0.4300698529820409 -0.7674509294992365 0.01748884856509388 -0.9150062616010659 0.4030603942422384 -0.01748884856509388 0.9150062616010659 -0.4030603942422384 0.4697897548825131 -0.8686441130557135 -0.1573371890592981 -0.4697897548825131 0.8686441130557135 0.1573371890592981 -0.675734036367169 -0.3582105659598173 -0.6442582576340646 0.675734036367169 0.3582105659598173 0.6442582576340646 -0.4971853572315199 0.3821684436042292 -0.7789441579906016 0.4971853572315199 -0.3821684436042292 0.7789441579906016 -0.02948069239466262 0.8923420790190162 -0.4503959400216118 0.02948069239466262 -0.8923420790190162 0.4503959400216118 0.4412707421759817 0.8892806518473205 0.1202499661100279 -0.4412707421759817 -0.8892806518473205 -0.1202499661100279 0.6745953782164265 0.3624208822881841 0.6430957780692472 -0.6745953782164265 -0.3624208822881841 -0.6430957780692472 0.475445493356882 -0.4300732761216662 0.7674559010214257 -0.475445493356882 0.4300732761216662 -0.7674559010214257 -0.01749034331298835 -0.9150054223823763 0.4030622345266829 0.01749034331298835 0.9150054223823763 -0.4030622345266829 -0.4697815306159824 -0.8686507780892173 -0.1573249478534862 0.4697815306159824 0.8686507780892173 0.1573249478534862 0.4296030359012069 -0.4388818302217858 -0.7891919732521624 -0.4296030359012069 0.4388818302217858 0.7891919732521624 0.3183998410294463 0.3229962732788499 -0.8912322641603577 -0.3183998410294463 -0.3229962732788499 0.8912322641603577 0.03038741195228124 0.8869362814384787 -0.4608911345024181 -0.03038741195228124 -0.8869362814384787 0.4608911345024181 -0.2670054108262962 0.9367771694262486 0.226178348723361 0.2670054108262962 -0.9367771694262486 -0.226178348723361 -0.4259850899852302 0.4459367148158626 0.7871957504264814 0.4259850899852302 -0.4459367148158626 -0.7871957504264814 -0.3010341479674957 -0.3735542393901423 0.8774027991698773 0.3010341479674957 0.3735542393901423 -0.8774027991698773 0.01009041759120744 -0.9160154494001691 0.4010160594453058 -0.01009041759120744 0.9160154494001691 -0.4010160594453058 0.2970481968236596 -0.9196343318873466 -0.256972886464557 -0.2970481968236596 0.9196343318873466 0.256972886464557 -0.2970484422515409 -0.9196320989134578 -0.2569805938275515 0.2970484422515409 0.9196320989134578 0.2569805938275515 -0.4295979640396049 -0.4388908348945468 -0.7891897264527675 0.4295979640396049 0.4388908348945468 0.7891897264527675 -0.3183968437424108 0.3229971010153391 -0.8912330349748924 0.3183968437424108 -0.3229971010153391 0.8912330349748924 -0.01947852840250339 0.8885028919470697 -0.4584574112531792 0.01947852840250339 -0.8885028919470697 0.4584574112531792 0.2702220342571353 0.9389866831721295 0.2128005193305185 -0.2702220342571353 -0.9389866831721295 -0.2128005193305185 0.4240429041274266 0.4414033343789021 0.7907911935892845 -0.4240429041274266 -0.4414033343789021 -0.7907911935892845 0.2983027650498462 -0.3667050530799812 0.881216695489381 -0.2983027650498462 0.3667050530799812 -0.881216695489381 -0.01622450498842495 -0.9165547656188361 0.3995799382592689 0.01622450498842495 0.9165547656188361 -0.3995799382592689 0.1472679733307151 -0.4807855014462627 -0.8643826962810682 -0.1472679733307151 0.4807855014462627 0.8643826962810682 0.1095684548527651 0.2918769691750159 -0.9501592437935783 -0.1095684548527651 -0.2918769691750159 0.9501592437935783 0.01814557456022227 0.8484106733494172 -0.5290274732664344 -0.01814557456022227 -0.8484106733494172 0.5290274732664344 -0.08166489083295546 0.9750941196064656 0.2062093681531785 0.08166489083295546 -0.9750941196064656 -0.2062093681531785 -0.1423373977113889 0.4764771508096741 0.8675883758840045 0.1423373977113889 -0.4764771508096741 -0.8675883758840045 -0.09161509243024273 -0.3783895678159515 0.9211015198158428 0.09161509243024273 0.3783895678159515 -0.9211015198158428 0.01429840890886133 -0.9315300536387764 0.3633831513298508 -0.01429840890886133 0.9315300536387764 -0.3633831513298508 0.1015501957394042 -0.9458455719011187 -0.3083240371108524 -0.1015501957394042 0.9458455719011187 0.3083240371108524 -0.009943928546088702 -0.9334025049453157 0.3586932980233676 0.009943928546088702 0.9334025049453157 -0.3586932980233676 -0.1015534747776958 -0.9458444330921899 -0.3083264506153984 0.1015534747776958 0.9458444330921899 0.3083264506153984 -0.147266657557691 -0.4807868808128261 -0.8643821532227857 0.147266657557691 0.4807868808128261 0.8643821532227857 -0.1095691102264438 0.291874995190177 -0.9501597745994721 0.1095691102264438 -0.291874995190177 0.9501597745994721 -0.02566642895233784 0.8527891332854933 -0.5216243174690112 0.02566642895233784 -0.8527891332854933 0.5216243174690112 0.06924176205058456 0.9778832794164339 0.1973572147804362 -0.06924176205058456 -0.9778832794164339 -0.1973572147804362 0.1449489124022483 0.4719675827323842 0.8696185449052678 -0.1449489124022483 -0.4719675827323842 -0.8696185449052678 0.09738220292944767 -0.3725574388083665 0.9228855082517864 -0.09738220292944767 0.3725574388083665 -0.9228855082517864</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"336\" source=\"#ID1233\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1231\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1234\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"2004\">8.02231418666651 5.767267780802827 8.252088057911237 5.589311019664747 7.431385573142238 4.627258133742329 1.606075704142272 -6.664116171898536 2.403748798413335 -7.599058137546133 1.376311979132671 -6.842086032861725 7.225737949685353 4.830108071600177 8.023678022363086 5.764812889299482 7.43235358172829 4.625008508021419 7.363995635106627 6.533390653799618 7.297642829302479 6.835913372468743 8.544185864865252 7.048583972946593 -9.353644995208162 9.496317571299793 -9.456248184920225 9.776109948263965 -8.251432643860941 10.01863490878347 2.406236697679825 -7.597681970312806 2.199605115929212 -7.802763113320637 1.378608390915007 -6.840969840094465 -7.590335541155204 10.70602694802739 -7.571895639415195 11.00280147164252 -6.367080428351595 10.76031072335507 4.966023898041894 10.00672256238572 5.243664226169317 9.91913432926051 4.839027801587744 8.723565081277133 8.007737987502445 8.528718158347967 6.920853200511596 7.959932833629308 7.888919430143502 8.814733613483142 8.575346384537509 6.74049066075222 7.363867878052579 6.533863598668274 8.544070322159202 7.049028936628958 -10.6474920219949 8.111744241615781 -9.826387542111165 9.005408973160634 -9.693951711360347 8.738440923612204 -8.23270430587667 9.723159798408275 -9.353379702169475 9.497690138106181 -8.251133017061301 10.01993501712986 -2.076341590827678 -5.446531966539086 -2.747292704012422 -4.372146411011835 -2.469653090599756 -4.284561418814406 8.36450869076322 5.248636055142397 7.086689606986296 5.152756972189283 7.117970209082349 5.461294787847897 -6.469701209238219 10.47974138353815 -7.590377992084248 10.70524599506641 -6.367123258373397 10.75953831236817 4.571922371945806 8.84539763252314 4.96501638536636 10.00742870724498 4.838216032068572 8.724251868207164 6.920818075007783 7.960006058168995 6.770569825654725 8.229591706489064 7.888897956771724 8.814791376665028 6.369864240073535 10.21852039588463 6.209602950654397 10.49059365702833 7.338289473943722 10.97111630784981 7.036948750544099 10.6454234430234 6.953010084715945 10.9502757685996 8.170900501940615 11.11495073965689 -9.258150899043443 10.5071703098472 -9.418417710349523 10.77916637951357 -8.368582196735387 11.22619350350597 -10.64730331774392 8.113789988750014 -10.85135259844804 8.333778046742935 -9.826089290604813 9.007354055240066 -8.772087774188769 10.74251265572863 -8.856046438867478 11.04737288696119 -7.723218056485544 11.20050605659699 -2.077924500427836 -5.446783367694267 -2.34421369354931 -5.567932998300748 -2.748731068066101 -4.372307557346347 8.298218277099975 4.945222462917677 7.086734774222069 5.151862307460801 8.364553402206269 5.247747464753283 -7.000573116885825 10.99152509365734 -8.132295327164709 10.82834839739508 -8.13340981920302 11.14465832752162 -5.747197968884668 11.34771865661842 -5.614785283970845 11.61469325889407 -4.589597508688529 10.94102483346657 3.600188297201517 11.08574969555976 3.882049501761424 11.00737322589368 3.546444374582394 9.794570462850089 6.99670435438618 9.55955763258903 6.092887770699351 8.735608954423846 6.814469531908987 9.808638799461429 6.647959731086218 10.23822650913605 5.755524825279502 9.532889735268309 6.490809983562573 10.51210877794677 7.41997173218677 10.66527665403989 6.370133579721438 10.2182263388499 7.338564645077707 10.97081474691645 8.169805699052926 10.79857588292758 7.036968516098395 10.64538167454566 8.170920417540495 11.11490860880507 -8.740919240116529 10.83978666178993 -9.566338625551969 10.18739078053096 -8.898077287828695 11.11359071720087 -8.28684292727478 10.92038831944528 -9.257843112603737 10.50691625709059 -8.368270315967777 11.22593438525606 -10.70207184086822 7.859646832739864 -11.38157048740469 6.947354717371921 -10.92180453057965 8.063971084084493 -7.724344382085194 10.8842171823605 -8.772099555649737 10.74253351947274 -7.723229921896868 11.20052711259926 -3.655488084653787 -2.338871853116272 -4.263545100703079 -1.238570008658045 -3.981686478920031 -1.160193451602171 7.361321654529953 4.312137890551743 6.124180677253954 4.611336636689946 6.242986094475011 4.897355864011173 8.90362543194138 11.00610886361448 7.686842502579204 10.85445098157452 7.685727858736397 11.17078370771504 -7.084553032983659 10.68665734821619 -8.132293932533601 10.82834098437742 -7.000571717824942 10.99151764991668 -4.794009342179233 10.72139473624548 -5.747598954692891 11.3480105177875 -4.589976545268181 10.9413791756188 3.274668987659907 9.906720870699749 3.600953888569323 11.08539287268543 3.547076298694634 9.794219210659854 6.09288381772793 8.735612996503775 5.884514685839049 8.960870719261866 6.814458782371375 9.808647412005715 5.755658541536009 9.532800255145016 5.531478612772006 9.75360210527751 6.490951328416285 10.51201356954455 3.605290948896335 10.38141642767636 3.33455265833195 10.51716039845814 4.014028828894553 11.42943895203155 5.589979773123033 11.53341126438089 4.840404163330653 10.68682665382721 4.636374353864254 10.90679269216684 7.533368318126436 10.93688718677573 6.515314143438632 10.43149938548117 6.412693034774826 10.71133130046171 -5.623218934403118 4.408422528738681 -5.831607429130463 4.633650344396608 -5.054071071988054 5.342434346091068 -9.566143887607765 10.18733400003877 -9.790321147955863 10.40816513457345 -8.897877965835795 11.1135306292603 -7.080356331707753 4.053971967280779 -7.23060879446113 4.323584921403613 -6.295565336252739 4.812966406053784 -11.38154062340129 6.946934657969052 -11.65227155783105 7.082692552127814 -10.92180663684189 8.063564187879415 -8.181179189229288 4.911309043923017 -8.247506721794631 5.213846656682764 -7.20526833652511 5.391622673994847 -3.655653795968758 -2.338906340375719 -3.928071478759999 -2.451409328531153 -4.263698117344093 -1.238597480587634 7.36141480199807 4.312676224611774 7.211174320131137 4.043088922317519 6.124272005539162 4.611867448607266 8.819661913325041 10.7013222488483 7.686833079872884 10.85451661169397 8.903615990191723 11.00617464652251 -7.414680419786158 6.801473658954425 -8.488180523016553 6.670718688023931 -8.456904346591537 6.979250293358286 -6.263600740604844 10.54523868733316 -7.394884629014753 10.68671664530804 -7.31343401982421 10.99226281712368 -3.292621517860952 10.54167626392773 -4.242831137437234 11.31821873024799 -4.023119003917025 11.52254472997818 2.551809972545656 9.664317185975541 2.6236274458066 10.95547984480436 2.905003578692951 10.86778812080018 5.193624988674518 8.580056277800161 5.692767334986558 9.773034138616049 5.915652172224851 9.562128742488907 5.937110580194192 9.489415672846647 5.262547314077408 8.578135569452515 5.716187416262216 9.713476051139757 3.176137914244959 10.68649459689848 2.834873189666084 9.69182847940672 2.899293108193951 10.80930583801228 4.234461290235831 11.22486887962152 3.605942037354565 10.38119795908854 4.014763754588621 11.42918778233066 5.589504880842169 11.53356933265291 5.721950122961196 11.26655762799355 4.839977335964876 10.6869421673126 7.533143785096657 10.93687425265906 7.551591709610324 10.64012137186822 6.515105828923725 10.43145378207258 -4.162820841888336 5.683229236242456 -3.785455540905263 6.710550714605108 -3.562552804087732 6.499677047211517 -4.872389408174831 5.093837840595416 -5.623779512367979 4.40896397538488 -5.054609188486499 5.342962105285681 -8.887746741103829 10.83526687679533 -9.525692247198936 10.01031531247674 -9.107133392035042 11.0608579480509 -6.176474298564618 4.526406989595827 -7.080055569335768 4.053426788815008 -6.295280344376946 4.812437533749789 -11.31857231475265 7.207002239849808 -11.68082557747522 6.132629915955798 -11.5941746043776 7.332576212619316 -7.173977897034508 5.083030682715448 -8.181164024524115 4.911246986479281 -7.205253998235585 5.391562295675325 -5.064701339923504 1.894592448432216 -4.721524901407358 0.7249575728427193 -5.346087968207796 1.806900478081168 5.956868974092837 4.582459303872925 4.844680692420677 5.181156372358337 5.026908626978211 5.430239683354471 9.472188816692448 10.72397226626382 8.262063269598878 10.89895199625093 8.343486758075576 11.20449002484071 8.289909445598125 9.953360197058817 9.410573323369611 9.727789472525593 8.27146697812546 9.656606977076205 -7.481007247740252 6.498971555125469 -8.488182100825481 6.670754732288192 -7.414681949864845 6.801509311352131 -6.26357202431161 10.54538716088015 -6.423847746747091 10.27339065209758 -7.394855765646165 10.68686629489177 -3.292568142589447 10.54167249367159 -3.563299937621667 10.40591384363897 -4.242772177916078 11.31822179306155 2.551014626765364 9.664570003049022 2.279565712514537 9.786101771501294 2.622698378662749 10.9557400928255 5.193794640470326 8.579934506661576 4.950006967750503 8.762408130938974 5.692974766025896 9.772896559926084 5.262729318767912 8.578022902558102 4.991162906919249 8.733644753001784 5.716394133052781 9.71335350989146 3.628339580450876 9.410096179628415 3.343259316224513 9.476119751452627 3.791720391302833 10.51744087914368 -2.543497724329717 9.820157007470904 -2.848652052517384 9.677531866782541 -3.132722358266544 10.69001710564758 -3.873097941905428 10.89286343072251 -3.320076696099827 9.991416069596967 -3.592497529002921 9.878920394021563 -5.238846009887677 9.80758299599721 -4.634251248975909 8.929086183173229 -4.900537747090571 8.8078942451424 -8.214277558189956 5.481786058120083 -7.321064523486167 4.882925935033296 -7.527661981317388 4.677793400510733 4.377614265992437 0.7281219543282957 4.073595089472888 0.8692070938502872 4.394109549297308 1.830549502300379 -3.537676791819183 5.376926876400024 -3.811855606249014 5.583853884632541 -3.17471002551291 6.409423422083563 3.97394736107426 -2.367570675376053 3.701523387203382 -2.255077662628404 3.972653577627958 -1.275216590961533 -10.36711544436186 9.788610904639777 -10.63722024298047 9.923741161134938 -9.99021332211368 10.85480794770453 2.405243483742395 -5.482637948843198 2.138955835681639 -5.361451513027145 2.46589077455381 -4.395385817039694 -11.68072628394697 6.132280067793281 -11.98353862516836 6.177170132947989 -11.5941092281414 7.332228813223198 -2.108601609355256 -7.748206068148464 -2.315165169803018 -7.543038888934133 -1.651511075343576 -6.766188339209613 -4.721607784662597 0.7249281405996211 -4.993049772383447 0.6033964299868833 -5.346166221861001 1.806873718311953 5.957238957132517 4.583363214343673 5.748849837769354 4.358110775196654 4.845041714752265 5.18204363639175 9.472304078310044 10.72461316264121 9.31201810079169 10.45253915697316 8.262178858055076 10.89959515296517 9.410594163350751 9.728071431052994 9.307990612543218 9.448239951301609 8.271487518594194 9.656893728748518 -8.212551034223413 5.484377895292075 -7.982782368570982 5.662358312422271 -7.319611670762221 4.885109787038521 -6.901073416418869 8.239933947756155 -7.954920374718853 8.443296667457076 -7.836119496150149 8.729328991386085 -5.586655222954788 9.822978924250215 -6.636258537640909 10.25454365534416 -6.479091496931305 10.52834820115506 -2.602420738045671 9.709493464092688 -3.267466644683721 10.73896569644136 -2.991862575009607 10.86453843503981 1.578587327183264 8.616623560601905 1.717743461392392 9.90224185360913 1.995689528240346 9.796409591444695 4.352990694981493 7.476449471708879 4.67407626424998 8.728944349425365 4.921550948121843 8.551503278166209 5.36216474635061 8.436915836161079 4.950843260216593 7.383133306463973 5.093068539573298 8.596771107822468 3.539780496745524 9.457279058321062 3.431838494209256 8.415414457869801 3.254074064554408 9.520538078961783 -1.911819010740019 9.727529858260962 -1.560214478487912 8.779557572046723 -2.224358608507 9.601911011762139 -2.597596011191904 10.8406810002062 -2.312286468233244 9.868305447743705 -2.878987540687646 10.75300435365292 -3.873742899600679 10.89269934021582 -3.591884319513478 10.9711322781505 -3.320647345935045 9.991297569800498 -5.239716594033536 9.807178809229182 -4.962070710154135 9.894783771798668 -4.635008456639771 8.928760034592838 5.337713155207496 3.462758609268935 5.393465189571801 4.573231349241489 5.70505027354063 4.449750938917815 5.129220193628463 0.9198204399797194 5.102133984892365 2.022038626272866 5.383840597970641 1.935373272153651 -2.227268869578842 7.054369051497821 -2.034900411214426 8.149204375606008 -1.755890989466358 7.948838331591519 4.252846068985002 -1.354174780213079 3.972139728465299 -2.368093965309794 3.970989358694878 -1.275739720450518 -10.19313023741471 10.03250173789567 -10.53232842096415 9.035484642111983 -10.46177202297931 10.17051760475854 2.742152961264321 -4.483278004021566 2.403715482025087 -5.482913926852961 2.46450769472513 -4.39566988852989 -11.64163930689924 6.726216799847979 -11.68206775371864 5.595744450929492 -11.94487170416447 6.7681756510519 -1.415135332853638 -6.94608800957697 -2.101288255754695 -7.750494143941382 -1.644927001856219 -6.768137293212735 -6.040314688080228 4.585570830692188 -5.634910717157917 3.438957385634206 -6.318254047018166 4.479738783865751 3.772799252705641 6.794011187827457 4.515734982915213 5.783518579648719 3.549899250107047 6.583107714048141 9.845815772556408 10.33921330332771 8.72919618033063 10.82374885991195 8.88637049790432 11.09763221655218 9.851713168959194 8.925334765489707 10.80529367403964 8.298672400676939 9.719293013185254 8.658317822126612 -6.901067860907201 8.240207827987678 -7.051326483111327 7.970596969093 -7.95491621140005 8.443563333066301 -5.586682549038167 9.82295175808374 -5.81087235396957 9.60212059242105 -6.636286790182588 10.25451423594288 -2.602139271092833 9.709540968608463 -2.904935435372564 9.664650374919933 -3.267147498582656 10.73903754096013 1.57906352729198 8.616547117844673 1.312847838604522 8.755549052967469 1.718269194621227 9.902160048390355 4.352689875045941 7.476531527549001 4.088748369108377 7.622855452442973 4.673772905118243 8.729027056202934 4.950684882683941 7.383317938390422 4.650677824799282 7.464055681726327 5.092860829896539 8.596961519928501 3.485437118801275 8.39470371481638 3.18930951732058 8.376616343648747 3.314412612124502 9.500890420785105 -1.598690305595134 8.762447828867947 -1.899933665045985 8.601317540266477 -2.264923659557595 9.583109588253944 -4.014504204957136 7.810915601141399 -4.31044475881743 7.646321463655264 -4.782135122017676 8.540628683683423 -4.944918115545426 8.916342100839811 -5.221899578824482 8.710983236931227 -5.814321154642443 9.53314649738221 -6.010383345488194 9.011817357987011 -6.218766714484236 8.786587269027372 -6.970145529470814 9.471478083619513 12.1442212012655 6.488431451935157 11.84971286259486 6.50445092814584 11.72931439275864 7.550679691730608 5.436096370687942 3.474098083261125 5.135131007202009 3.637393151327177 5.488416272723167 4.584737819363221 12.01932916880682 7.491045479827514 11.7289601973689 7.428774637327286 11.31174713342957 8.389041456769789 -2.39134695514438 7.08531697164199 -2.688828499347872 7.248095610817745 -2.198341011465316 8.180040094807449 11.6103318338582 7.058012136265086 11.33960582649887 6.922264435752206 10.7111442100928 7.765984863512145 -10.45780460366582 9.087031108132035 -10.74805210172731 9.151539204082358 -10.38147545947754 10.22169048139711 10.80522796946904 8.299426142429587 10.60120330713986 8.07946236572252 9.719217761431199 8.659042733514418 -11.68216800417867 5.595901151841711 -11.98844735752957 5.552942729837733 -11.9449518098545 6.768336867292641 -5.634496435233625 3.439184867669541 -5.900713396455597 3.30018383903054 -6.317853489068273 4.47995725505486 4.515824471600816 5.783647666803651 4.272044803960049 5.601173690129581 3.549987279452767 6.58323503844122 9.845588602994498 10.33886278974944 9.621409732253103 10.11806138536246 8.728966521278007 10.82339260922394 -6.010423861258278 9.011941989207395 -6.970193554858753 9.471587034582777 -6.787968605968723 9.720708966139664 -5.042628918682938 8.816203776538053 -5.938130179876525 9.503409018794248 -5.717198770774001 9.727500037880455 -2.4771281657538 8.609333718139764 -2.823820427044403 9.782772886274298 -2.520604148431285 9.824732043656677 0.4940333704000091 6.884722314694114 0.7434816770441161 8.153401315576275 1.01370411297787 8.02235870422696 3.579048963009202 5.527249581922334 3.767987851475939 6.806380999142068 4.029731018408183 6.656160081433367 4.987430164885366 7.149493275445536 4.871659888438184 6.024804147658597 4.688389354051153 7.233739411470873 3.692162256277692 7.359146195942491 3.197147972982466 8.365396172811582 3.493291293792061 8.383224321743267 -0.9252138314459013 7.941778656958044 -0.5010888893011865 7.024536617868603 -1.230796721377351 7.78903825988127 -3.583457915889256 6.865153699605307 -3.221365219127212 5.881871791901279 -3.87761673597965 6.697396046793376 -4.507248736247584 8.731902211037241 -4.021559745944325 7.803848348223497 -4.789252495370334 8.533496379906529 -5.655596031237238 9.703362544822191 -5.005465970002792 8.882122257586087 -5.879015884294735 9.493039482114664 12.14478024890936 6.736805458154219 11.94023890165135 5.624830788396087 11.85024427758389 6.752308579129163 12.14283763709443 6.442043886399361 11.73125571185489 7.505584812508928 12.02185570015984 7.566768504754241 6.268038727420731 5.474776872629459 6.437817250366501 6.556154450177642 6.743247791385032 6.401371977377769 11.94837906263659 6.158904965374388 11.31052831244434 7.107701851895589 11.58612788215819 7.233260150820028 -1.161015913433849 8.890149066805394 -1.073395569348677 9.991665786302482 -0.7779209136219883 9.825272029397965 11.61033482922322 7.05916121664057 10.71110780030712 7.767083893015066 10.93080057539455 7.97140033992074 -10.40959229367743 9.199877177991784 -10.44082428807349 8.154377363048935 -10.6996207909959 9.265362865873017 -11.4592516894927 5.204423171008229 -12.03267423410591 6.2623036348526 -11.72610224262008 6.303121306840652 -6.991555867399386 6.618692905334878 -6.486489299443168 5.513057706673341 -7.261779009522398 6.487650126571119 2.594874711865614 8.532891592041368 3.179902013339848 7.426720616761154 2.34740764779583 8.355450529378375 10.02678762383469 9.888296594928445 9.080636181045295 10.64395596575919 9.301557082651641 10.86801707684183 -4.908080489198695 8.827277128001134 -5.171691680823249 8.688617412622387 -5.785647758998728 9.537241381157172 -2.477356966879039 8.609267980107019 -2.783634433798757 8.65222484643942 -2.824082129607023 9.782697427019917 0.4942974535608793 6.884675877025379 0.2386820867089246 7.047718489624774 0.7437538596373056 8.153353285366208 3.579019696709793 5.527247574791911 3.304264902654809 5.644802179261861 3.767961516094372 6.806378559086036 4.871671759983433 6.024758632758172 4.563916490311018 6.02454101335168 4.688411113318542 7.233695395474622 3.131865063576585 7.495146351122008 2.845350157739452 7.371832530066978 2.578489150401894 8.470519743897006 -0.2995594809006691 7.190644557877686 -0.5550029855080121 7.02733308637674 -1.026197123972311 7.958064922804658 -3.364466087299869 5.756434020851 -3.63924298866122 5.638867507453358 -4.01388909856642 6.577406380998356 -4.595208407807088 6.220843177572365 -4.902936610581055 6.221062566755599 -4.996186739518726 7.264738208188124 -4.5801979245055 7.680872387890022 -4.872535989311253 7.618357848562964 -5.208623099405675 8.610438098348078 9.930435795209954 8.723360458360926 9.622695485060167 8.723578076682632 9.506893312035652 9.848262337106252 11.68679383842413 4.820806528320301 11.4010933228296 4.945995181335735 11.6709817879123 5.951759745750621 10.04349825550007 9.365039409526721 9.743489424522231 9.284300831811486 9.332208169824803 10.33809864246232 6.754756775286062 5.428533295660523 6.499138699141653 5.591569262435212 6.91902076309531 6.510762270686894 10.0264207380193 9.888097497687822 9.754836146645381 9.732476048171769 9.080260517751327 10.6437458782189 -1.695201464579465 8.909158721601118 -1.970122869278565 9.026384550142128 -1.618544575515055 10.01149266800221 -9.591302846728635 8.822595493203158 -9.899031319075601 8.822373286436831 -9.78321586192828 9.947065951688893 -11.45924781968514 5.204421096615239 -11.74577848271567 5.081109433850616 -12.0326708752261 6.262301283511819 -6.486248434573849 5.513244118226436 -6.741869014961592 5.350199016100515 -7.261540555938209 6.487834619938462 3.179105813721875 7.425997878045219 2.915163522363724 7.279674511815227 2.346612301949778 8.3547285559653 -4.571867659767827 7.685001879234275 -5.19800283550379 8.616111621538478 -4.935183100948795 8.756265694426407 -2.540742087517667 8.566909293518494 -2.827630048306525 7.385714519013615 -2.847312146644797 8.607725686728166 -0.8141520036824412 4.787247278753537 -0.4098877686924643 6.015532093705279 -0.1545507334713725 5.852053936942369 2.825907391035651 2.91447464078058 2.925963511056933 4.203776059192933 3.195347959271043 4.074387879869384 5.072049316640039 4.636612424534547 4.563860349506689 5.750794012321112 4.871615609433643 5.751025002883836 3.819561550989884 6.356088346280721 3.024697696615445 7.153515715233586 3.312968409168299 7.272667240672091 0.5078875531633522 5.922246885641981 1.040830647940628 5.061918861623786 0.2525454068644117 5.758776982927945 -2.899864803665365 4.123037899357319 -2.582070981663241 3.125168581569071 -3.169270650466771 3.993636507156769 -4.595210131123386 5.767368898608199 -4.795624677444554 4.652969215294837 -4.902938321178672 5.767605456015868 -4.551751286835951 6.370503943752767 -4.892659326416026 7.43553078191047 -4.600764251184403 7.500082132145554 9.931094966858455 9.09603213633477 9.715593417550867 7.897930479543868 9.62335466645721 9.096263129355123 9.930735827967505 8.723240740338639 9.507213151533417 9.848150076420589 9.806255898006034 9.932396455442374 11.8210066322793 5.641957047386217 11.27328617849653 4.65094501386657 11.53273560497294 5.761107365348592 10.04286228329696 9.365040585658122 9.331545345119851 10.3380801892938 9.600660148426115 10.49793464954639 7.535739623001351 6.593692710145172 7.831890891357638 7.647449006016194 8.087231527084098 7.48397886482603 -0.5241565780873642 10.2562204738642 -0.4864394008526751 11.34992170397917 -0.217035001175078 11.22051945101113 -9.406536758183124 8.082332868907633 -9.899645775372855 9.112810577833072 -9.591917313190002 9.113046440972934 -11.03306145856628 4.858172341658545 -11.86906432189366 5.730018181815798 -11.58077780285274 5.849167122095434 -7.929185938596586 7.741276002141859 -7.288134711684656 6.706399437704047 -8.184528376761124 7.577795649447086 1.501843717442459 10.20233969252613 1.965537662966534 9.040762659994472 1.240099738841787 10.05211935322896 -2.827699190618862 7.385692878294297 -3.114245837009395 7.509005844610631 -2.847390549560736 8.607703896819539 -0.8142387846834531 4.787281714610788 -1.051017422478481 4.980689694303933 -0.4099715308854265 6.015565535980942 2.825863560250873 2.914464272130583 2.545775655456215 3.010294430635846 2.925926509520307 4.203765160541554 5.072050792302683 4.636426793683894 4.779368647532038 4.552517088168444 4.563890708589148 5.750621555024526 3.819606376355887 6.356099602651848 3.57245010124174 6.162515789484883 3.024745146625805 7.153529587802932 1.040750145448171 5.061814419743752 0.8039557843155296 4.868386050648546 0.2524662820454121 5.758674099467705 -2.582061023304272 3.125174822309014 -2.862143473626441 3.02934388643336 -3.16926160391908 3.993642131390482 -4.795648217881778 4.653056670178607 -5.088339457465029 4.736985317881022 -4.902938859512489 5.767695125229697 -3.565535127923351 6.176115265244123 -3.812677839446398 6.369703167130202 -3.264977022005007 7.360700876068053 0.8403367238430468 10.23718379894077 0.5602462057335531 10.14135523217399 0.1908371556963209 11.30127999331571 9.715279811570234 7.898164399687699 9.422605508712325 7.982071061332078 9.623011104925984 9.096494743366428 1.965753936980625 9.040883578076532 1.690994369615404 8.923329790133387 1.240320107445503 10.05224320831427 11.27329027881219 4.650949558498282 11.02614506513587 4.844534047078025 11.53273910555405 5.761112050140519 7.535684312874684 6.593713095228133 7.29888869613132 6.787141360236949 7.831834683618196 7.647469643366902 -0.5243639138978562 10.25621995077311 -0.8044472733028646 10.35205112217272 -0.4866562948651038 11.34992151046864 -9.406679726772429 8.082195684650662 -9.699361351824194 7.998267172378847 -9.899801537804553 9.112667271309139 -11.03307087735487 4.858169344732327 -11.28020427240938 4.664581839190625 -11.86907291533646 5.730015976303339 -7.288344436481048 6.706182540603755 -7.525136251228246 6.512774038618834 -8.184740686029647 7.577576093726885 -2.9766841745925 7.241548697681889 -3.565543648095952 6.176113404817853 -3.264986470492337 7.360699251177363 -2.447883322974987 2.751568552554161 -1.842477514017635 3.89427599955851 -1.614034516523058 3.69108995963267 2.003331820157259 -0.1121430521644828 2.058836564324649 1.179529586358521 2.331326469065933 1.063849400045171 5.590202303166725 3.422160988082945 4.776235014799291 4.339683957172108 5.06699202493466 4.430039021249202 4.792858524577 5.351708305204213 3.811958992720328 5.9163916658123 4.062104287424121 6.106097355200138 1.961101285046039 3.826234095799287 2.634831518947544 3.067113124415407 1.732641496307822 3.623029203228422 -2.020157793277054 1.09577077218773 -1.738045133809642 0.08407938248913949 -2.292642079395596 0.9800899134956276 -4.815052538517008 4.360912519372523 -5.338295125527744 3.35305854322367 -5.105817903968173 4.45128774765985 -3.757921129518451 5.992529127627781 -4.607363580042399 5.115621178425016 -4.00805316343177 6.182238803780592 -0.6027579114285769 11.93512829791986 -0.2653383113282294 10.72511841245179 -0.8752508527681888 11.81945025564948 0.4600121899457396 11.43059484807465 0.8401312322340304 10.23711634359213 0.1906229618076444 11.30120722624912 9.961904685985054 7.921317673188637 9.399438483820717 6.837739257140222 9.671155628119442 8.011670098567954 11.38672699552658 5.073226793175415 10.59662327021988 4.257574427615073 11.13659264145704 5.26293318678408 8.209859950819201 6.723645760614549 8.678594971015968 7.712374678279593 8.907055491034399 7.509169243790011 0.5636269487086308 10.7579458860558 0.5637591081185163 11.85131753997724 0.8362441670383727 11.73563610545614 -9.148746431801881 7.100180552171004 -9.923439640128624 7.94197383515283 -9.632683886221651 8.032348723175383 -10.40054945299948 4.523433465522471 -11.44077742670279 5.149367724775502 -11.19065494879698 5.339077459104777 -8.796927104377645 7.780796373855483 -7.986534988438879 6.86769660754922 -9.025385134024679 7.577611382133364 -2.447892436598347 2.751575933223066 -2.652886586709821 2.981172518037141 -1.842485880906245 3.894282984607421 2.003168542977567 -0.1121808863049317 1.721200557589594 -0.03050824392382967 2.058702137872348 1.179490512144429 5.590195069697714 3.422055694461649 5.338722500134333 3.256005850783021 4.776238298562009 4.339587993653761 4.792795272598981 5.351648803674095 4.602007058565834 5.100676746162371 3.811893721850205 5.91632865729288 2.634784447227349 3.067013910342503 2.42977377423855 2.837408746390241 1.732596091264525 3.622932693977843 -1.737830524364876 0.08416656496258945 -2.019797238494305 0.002493112357009886 -2.292451735554148 0.9801620760153762 -5.338230787118782 3.352811588678597 -5.589690939112673 3.518873465351141 -5.105795936552603 4.451049761509455 -4.607296183997103 5.115620237273077 -4.798095314695769 5.366593423150325 -4.007980502882582 6.182234904595543 -7.986555889325445 6.867667979007165 -8.191559998099267 6.638073613249739 -9.025406708161478 7.577581768393026 -0.2658513924094679 10.72501539099795 -0.5478243079042257 10.64334171938851 -0.8757989830207733 11.81932769923068 9.399457966750671 6.837717751034001 9.147982137033422 7.003769477635871 9.671177663608312 8.011648001645453 10.59660707242216 4.257565553010063 10.40580607527824 4.508535786249877 11.13657856985533 5.262923170214947 8.209868148312985 6.723639797819137 8.004859697248556 6.953245674626219 8.678603577310881 7.712368521680295 0.5639647615244471 10.75793337704772 0.2819922366942799 10.83960535262652 0.5641211542755882 11.85130502777144 -9.148596913292062 7.10036550451596 -9.400067489701645 6.934305838027768 -9.923274874606658 7.942172818902312 -10.40053026270629 4.523460414640201 -10.59133362882067 4.272487777171353 -11.44075930953975 5.149392890475632 -3.424488619818151 2.051510872033782 -4.451447721073044 1.320914993730629 -3.607048434730841 2.29931948229028 1.25371906925343 -2.068980133225255 0.9100342911362658 -3.244662667896889 0.9829208397823459 -1.955645742096218 6.427844467605201 2.657369518137107 5.360460969395073 3.26317312659965 5.602447748904911 3.442765449294591 5.963050307158162 4.598401472884455 4.862897871431918 4.888020304292075 5.05696668467419 5.136464285890265 4.566975869361551 1.677618748944787 3.554610122510936 2.020117489460222 3.737188382645553 2.26793412788283 -0.6344515222543741 -3.052113042568756 -1.200876406250898 -2.153962787728282 -0.930079256085121 -2.040628396656744 -5.404912574038195 3.292132349355072 -6.230314461078931 2.506727066998844 -5.646887013182357 3.471735037880793 -4.807767079003931 4.950234886829042 -5.860966101770035 4.324810658490876 -5.001847324719297 5.198679461186795 -8.424882873013623 5.988174923117744 -9.605562586612063 6.45041964919662 -9.422991708989319 6.698226291653528 -2.128911530962449 11.39370619047285 -1.858108794091689 11.50704281919493 -1.504539573232881 10.29731278098825 9.827835858960567 6.402761707059793 8.940439791553009 5.558433182247473 9.585846775178787 6.582357230862296 10.67860142778535 4.504886653852445 9.698961064470598 3.923137010221114 10.48451955824054 4.753328410402241 9.475381065925804 6.418838346460516 8.616699388997306 5.807979933582672 9.292803232787765 6.666654121823592 1.804515688494758 11.42193482798765 2.075320240595833 11.30860473085816 1.789653651069088 10.33114660586087 -8.777986349147227 5.884762204148979 -9.783395815642388 6.431566205911736 -9.541410130717059 6.611166294790215 -9.560048236954533 4.233786674396139 -10.73377188997996 4.567113960877165 -10.53968755340356 4.815558038235333 -4.451445388161562 1.32091150302849 -4.605144881901487 1.589257774717442 -3.607046360323376 2.299316214686616 0.911036215103248 -3.244569414619009 0.6302815542887075 -3.165285501969137 0.983746179428347 -1.95554251611689 6.427837637908099 2.657239812949093 6.247832911031965 2.418709446125305 5.360460556278488 3.263054726837308 5.963041769819713 4.598377594103866 5.842530324928217 4.30624879890488 4.862889228392628 4.887996023993652 4.566949491164673 1.677515046485934 4.413267843553816 1.409146381545383 3.554584669588645 2.020016521937351 -0.6343308283330909 -3.052077616634356 -0.9150620653111302 -3.131377159015987 -1.200769992778023 -2.153936368019525 -6.230355841487682 2.506952398274932 -6.410349313279072 2.745551901517965 -5.646903438454379 3.471945281263957 -5.860956446689808 4.324806852545208 -5.981476839089077 4.616905572027501 -5.0018371782836 5.198675172178971 -9.560036157906882 4.233835501329801 -9.680555144833743 3.941738909819654 -10.73376020318313 4.567161406600481 -8.424843361141196 5.988249141808261 -8.578539572529392 5.719905180363528 -9.605521278105222 6.450498456879819 -2.128002541521889 11.39390767417695 -1.503710088307944 10.29746899243481 -1.784459266712324 10.21817791926077 8.940289758199278 5.558664658271775 8.760286641389778 5.797195116769234 9.585670957141998 6.582604959215122 9.698953334175988 3.923134326470514 9.578437925476589 4.215263271704036 10.48451321445017 4.75332441468671 8.616695792321206 5.807984438043635 8.463004396435052 6.076345229884326 9.292799280948527 6.666658905933183 1.508981687625615 10.41044201964916 1.804587711918147 11.42192402718496 1.789719178778943 10.33113589358192 -8.778070540410155 5.884638780422247 -8.958068784782792 5.646039814873298 -9.78348840858556 6.431427333718194 -5.470301552639625 1.49112445145663 -6.665204895598771 1.080079427803008 -5.581515389563202 1.779680751651247 -0.7296916084496221 -4.847825225879011 -1.239323924915554 -5.965180848058259 -0.983402713437965 -4.703812054329481 6.429372105238576 3.070798693737436 7.484425162189432 2.632960455440022 6.272223592574061 2.816627919331381 7.309598879931788 4.100114165975394 6.172386671636989 4.114089657735745 6.296584270959485 4.404670451417599 6.673165340113267 1.46069710806245 5.596511227521427 1.504273208093048 5.707708117320678 1.792847359453377 1.671539516001294 -5.76057523486305 0.9391731330657233 -4.970479558128506 1.189951666304455 -4.821454150550515 -7.373905047151883 2.420445369343553 -6.47597200022688 3.112499440921925 -6.318837669790733 2.858262985955836 -6.033213721615906 4.212408827890807 -7.217274505620218 3.886515904012549 -6.15656019014606 4.503325440700059 -8.531387785648066 4.071560705961415 -9.756070774288414 4.083774492867834 -9.632726737808362 4.374689417968849 -8.30493748442003 4.330441993887243 -9.577449855087568 4.441364589949741 -9.466235265510377 4.729916703274379 -4.223502876719913 9.587379479106971 -3.969797935985473 9.731396764551324 -3.445407544471821 8.581711696651405 9.236966853624979 4.947401304070755 9.394113356902082 4.693230341527976 8.259831785298545 4.22248881572931 9.704809832242122 4.035789645949894 8.603472821994846 3.73267274812119 9.581467689801546 4.326736376942702 9.490922071357993 4.298600231082052 8.499707389419065 3.92265445724289 9.384156338551122 4.58884088651304 3.896539175924027 9.654215450822882 4.150228742439791 9.510185577491333 3.726479854733768 8.581304777485496 -9.423216318515408 4.472155017098237 -9.27255740290623 4.730284297664632 -8.288675878665934 4.342030565834466 -6.66522566276802 1.08014405010757 -6.742837437992399 1.380267567573475 -5.581533433821307 1.779741156120973 -1.238853797483174 -5.965278003164967 -1.507311542582164 -5.853615238692918 -0.9830102772306847 -4.703893449025443 7.484424883292007 2.633010383882151 7.406514263464952 2.345939879885023 6.272222931238717 2.816675323673188 7.313853897789303 4.322100817522392 7.275717967010026 4.025212024150625 6.17664659304196 4.336469780392419 6.661012628610327 1.088548563306246 6.56636052877616 0.7409570961453518 5.584453830074927 1.134419119775722 2.351564991295644 -5.401406404498824 2.074093047184209 -5.557442487260533 1.55075082268886 -4.68077587183498 -7.395552620997582 3.131023308700499 -7.452434806027009 3.415760819294903 -6.457330494885647 3.767389427237792 -7.217251753191022 3.88649397765239 -7.257883350292583 4.200173622039879 -6.156536674490829 4.50330220183436 -8.318962544481733 4.428387293992502 -8.385053749840118 4.14527160788125 -9.454913042633246 4.545565996067015 -8.531387766736476 4.071564738885102 -8.572015826007476 3.75788512580678 -9.756070755442112 4.083778519245252 -8.304936126238683 4.330442324466572 -8.382542219297406 4.030317796828685 -9.57744845601994 4.441365389578568 -4.223053139952752 9.587572180154115 -3.445006685817724 8.581866582107013 -3.713464068600874 8.470204180724483 9.236995531655577 4.947344928234697 8.259855461770449 4.22243918171893 8.181948701807347 4.50951019832294 8.521518244742271 3.901937992931166 8.477299227918195 4.198338886371126 9.490271124852209 4.51095639480711 8.423503269721058 4.130100135004379 8.325702677385262 4.476698785747071 9.285303626375194 4.82533710714792 4.484670822436756 8.19170513651676 5.071017670644485 9.072023935372219 4.759512355616062 8.031340542406799 -7.30736255645752 2.298931442533629 -8.572230339050293 2.298931442533629 -7.325151562690735 2.608416926275309 -7.325151562690734 -0.7002259076981166 -8.554449081420897 -0.7002259076981166 -7.307362556457519 -0.4100161815854154 7.36809253692627 3.474163313404961 8.51151168346405 3.474163313404961 7.325151562690735 3.179824033527633 8.466757535934448 4.213194162628142 7.36809253692627 3.916873597429247 7.410417795181274 4.213194162628142 8.450794816017149 2.424425283844014 7.410417795181274 2.064646501630932 7.428804636001586 2.424425283844014 8.466757535934448 -0.1701258822565584 7.428804636001587 -0.4879306383211063 7.410417795181274 -0.1701258822565584 -7.36809253692627 3.482318071436428 -8.51151168346405 3.482318071436428 -7.410417795181274 3.769580330403504 -7.325151562690735 3.822338718081032 -8.554449081420898 3.822338718081032 -7.36809253692627 4.135710571823177 -8.466757535934448 3.769580330403504 -8.51151168346405 4.135710571823177 -7.325151562690735 2.608416926275308 -8.572230339050293 2.298931442533628 -8.554449081420898 2.608416926275308 -8.554449081420898 -0.7002259076981161 -8.572230339050293 -0.4100161815854152 -7.30736255645752 -0.4100161815854152 8.51151168346405 3.474163313404961 8.554449081420898 3.179824033527634 7.325151562690735 3.179824033527634 8.51151168346405 3.916873597429247 8.466757535934448 2.064646501630932 7.410417795181274 2.064646501630932 8.450794816017151 2.424425283844015 8.466757535934448 -0.1701258822565581 8.450794816017151 -0.4879306383211062 7.428804636001587 -0.4879306383211062</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"1002\" source=\"#ID1234\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1230\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1228\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1229\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"336\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 10 9 2 10 1 11 12 12 6 13 0 14 6 15 14 16 1 17 16 18 0 19 8 20 8 21 2 22 18 23 10 24 20 25 2 26 22 27 10 28 1 29 24 30 6 31 12 32 16 33 12 34 0 35 26 36 14 37 6 38 14 39 22 40 1 41 28 42 16 43 8 44 30 45 8 46 18 47 20 48 18 49 2 50 32 51 20 52 10 53 34 54 10 55 22 56 36 57 24 58 12 59 24 60 26 61 6 62 38 63 12 64 16 65 26 66 40 67 14 68 42 69 22 70 14 71 28 72 44 73 16 74 28 75 8 76 30 77 30 78 18 79 46 80 20 81 48 82 18 83 32 84 50 85 20 86 34 87 32 88 10 89 52 90 34 91 22 92 36 93 54 94 24 95 38 96 36 97 12 98 24 99 56 100 26 101 44 102 38 103 16 104 58 105 40 106 26 107 40 108 42 109 14 110 42 111 52 112 22 113 60 114 44 115 28 116 62 117 28 118 30 119 64 120 30 121 46 122 48 123 46 124 18 125 50 126 48 127 20 128 66 129 50 130 32 131 34 132 68 133 32 134 52 135 70 136 34 137 72 138 54 139 36 140 54 141 56 142 24 143 74 144 36 145 38 146 56 147 58 148 26 149 76 150 38 151 44 152 58 153 78 154 40 155 40 156 80 157 42 158 82 159 52 160 42 161 60 162 84 163 44 164 62 165 60 166 28 167 64 168 62 169 30 170 86 171 64 172 46 173 88 174 46 175 48 176 50 177 90 178 48 179 66 180 92 181 50 182 68 183 66 184 32 185 34 186 70 187 68 188 52 189 94 190 70 191 96 192 54 193 72 194 74 195 72 196 36 197 54 198 98 199 56 200 76 201 74 202 38 203 56 204 100 205 58 206 84 207 76 208 44 209 58 210 102 211 78 212 78 213 80 214 40 215 80 216 82 217 42 218 52 219 82 220 94 221 104 222 84 223 60 224 62 225 106 226 60 227 64 228 108 229 62 230 86 231 110 232 64 233 88 234 86 235 46 236 90 237 88 238 48 239 92 240 90 241 50 242 112 243 92 244 66 245 68 246 114 247 66 248 70 249 116 250 68 251 94 252 104 253 70 254 118 255 96 256 72 257 96 258 98 259 54 260 120 261 72 262 74 263 98 264 100 265 56 266 122 267 74 268 76 269 100 270 102 271 58 272 124 273 76 274 84 275 102 276 126 277 78 278 78 279 128 280 80 281 80 282 130 283 82 284 82 285 124 286 94 287 94 288 84 289 104 290 106 291 104 292 60 293 108 294 106 295 62 296 110 297 108 298 64 299 132 300 110 301 86 302 134 303 86 304 88 305 90 306 136 307 88 308 92 309 138 310 90 311 112 312 140 313 92 314 114 315 112 316 66 317 68 318 116 319 114 320 70 321 104 322 116 323 142 324 96 325 118 326 118 327 72 328 120 329 144 330 98 331 96 332 122 333 120 334 74 335 98 336 146 337 100 338 124 339 122 340 76 341 100 342 148 343 102 344 94 345 124 346 84 347 102 348 150 349 126 350 78 351 126 352 128 353 128 354 130 355 80 356 82 357 130 358 124 359 106 360 116 361 104 362 108 363 152 364 106 365 110 366 154 367 108 368 132 369 156 370 110 371 134 372 132 373 86 374 136 375 134 376 88 377 138 378 136 379 90 380 140 381 138 382 92 383 158 384 140 385 112 386 160 387 112 388 114 389 152 390 114 391 116 392 162 393 142 394 118 395 142 396 144 397 96 398 164 399 118 400 120 401 144 402 146 403 98 404 166 405 120 406 122 407 146 408 148 409 100 410 130 411 122 412 124 413 148 414 150 415 102 416 150 417 168 418 126 419 126 420 170 421 128 422 128 423 166 424 130 425 152 426 116 427 106 428 154 429 152 430 108 431 156 432 154 433 110 434 172 435 156 436 132 437 174 438 132 439 134 440 136 441 176 442 134 443 178 444 136 445 138 446 140 447 180 448 138 449 158 450 182 451 140 452 160 453 158 454 112 455 152 456 160 457 114 458 162 459 184 460 142 461 162 462 118 463 164 464 186 465 144 466 142 467 164 468 120 469 166 470 188 471 146 472 144 473 166 474 122 475 130 476 146 477 190 478 148 479 192 480 150 481 148 482 150 483 194 484 168 485 126 486 168 487 170 488 170 489 166 490 128 491 154 492 160 493 152 494 156 495 196 496 154 497 172 498 198 499 156 500 174 501 172 502 132 503 176 504 174 505 134 506 178 507 176 508 136 509 180 510 178 511 138 512 182 513 180 514 140 515 200 516 182 517 158 518 196 519 158 520 160 521 202 522 184 523 162 524 184 525 186 526 142 527 204 528 162 529 164 530 186 531 188 532 144 533 170 534 164 535 166 536 188 537 190 538 146 539 190 540 192 541 148 542 192 543 194 544 150 545 194 546 206 547 168 548 168 549 204 550 170 551 196 552 160 553 154 554 156 555 198 556 196 557 208 558 198 559 172 560 210 561 172 562 174 563 212 564 174 565 176 566 214 567 176 568 178 569 180 570 216 571 178 572 182 573 218 574 180 575 200 576 220 577 182 578 200 579 158 580 196 581 202 582 222 583 184 584 202 585 162 586 204 587 184 588 224 589 186 590 204 591 164 592 170 593 226 594 188 595 186 596 228 597 190 598 188 599 230 600 192 601 190 602 232 603 194 604 192 605 194 606 234 607 206 608 168 609 206 610 204 611 198 612 200 613 196 614 208 615 236 616 198 617 210 618 208 619 172 620 212 621 210 622 174 623 214 624 212 625 176 626 216 627 214 628 178 629 218 630 216 631 180 632 220 633 218 634 182 635 236 636 220 637 200 638 238 639 222 640 202 641 222 642 224 643 184 644 206 645 202 646 204 647 224 648 226 649 186 650 226 651 228 652 188 653 228 654 230 655 190 656 230 657 232 658 192 659 232 660 234 661 194 662 234 663 238 664 206 665 198 666 236 667 200 668 240 669 236 670 208 671 242 672 208 673 210 674 244 675 210 676 212 677 246 678 212 679 214 680 216 681 248 682 214 683 218 684 250 685 216 686 220 687 252 688 218 689 236 690 254 691 220 692 238 693 256 694 222 695 206 696 238 697 202 698 222 699 258 700 224 701 224 702 260 703 226 704 262 705 228 706 226 707 264 708 230 709 228 710 266 711 232 712 230 713 268 714 234 715 232 716 234 717 270 718 238 719 240 720 254 721 236 722 242 723 240 724 208 725 244 726 242 727 210 728 246 729 244 730 212 731 248 732 246 733 214 734 250 735 248 736 216 737 252 738 250 739 218 740 254 741 252 742 220 743 270 744 256 745 238 746 256 747 258 748 222 749 258 750 260 751 224 752 260 753 262 754 226 755 262 756 264 757 228 758 264 759 266 760 230 761 266 762 268 763 232 764 268 765 270 766 234 767 240 768 272 769 254 770 242 771 274 772 240 773 276 774 242 775 244 776 278 777 244 778 246 779 280 780 246 781 248 782 282 783 248 784 250 785 252 786 284 787 250 788 254 789 286 790 252 791 288 792 256 793 270 794 258 795 256 796 290 797 258 798 292 799 260 800 260 801 294 802 262 803 262 804 296 805 264 806 266 807 264 808 298 809 300 810 268 811 266 812 302 813 270 814 268 815 272 816 286 817 254 818 274 819 272 820 240 821 276 822 274 823 242 824 278 825 276 826 244 827 280 828 278 829 246 830 282 831 280 832 248 833 284 834 282 835 250 836 286 837 284 838 252 839 302 840 288 841 270 842 288 843 290 844 256 845 258 846 290 847 292 848 292 849 294 850 260 851 294 852 296 853 262 854 296 855 298 856 264 857 300 858 266 859 298 860 300 861 302 862 268 863 272 864 304 865 286 866 274 867 306 868 272 869 276 870 308 871 274 872 310 873 276 874 278 875 312 876 278 877 280 878 314 879 280 880 282 881 316 882 282 883 284 884 286 885 318 886 284 887 320 888 288 889 302 890 322 891 290 892 288 893 292 894 290 895 324 896 294 897 292 898 326 899 294 900 328 901 296 902 296 903 330 904 298 905 300 906 298 907 332 908 302 909 300 910 334 911 304 912 318 913 286 914 306 915 304 916 272 917 308 918 306 919 274 920 310 921 308 922 276 923 312 924 310 925 278 926 314 927 312 928 280 929 316 930 314 931 282 932 318 933 316 934 284 935 334 936 320 937 302 938 320 939 322 940 288 941 322 942 324 943 290 944 292 945 324 946 326 947 294 948 326 949 328 950 328 951 330 952 296 953 330 954 332 955 298 956 334 957 300 958 332 959 304 960 324 961 318 962 306 963 326 964 304 965 308 966 328 967 306 968 330 969 308 970 310 971 332 972 310 973 312 974 334 975 312 976 314 977 316 978 320 979 314 980 318 981 322 982 316 983 314 980 320 979 334 984 316 983 322 982 320 985 318 986 324 987 322 988 326 989 324 990 304 991 328 992 326 993 306 994 328 995 308 970 330 969 330 996 310 997 332 998 334 999 332 1000 312 1001</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1230\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1231\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"336\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 4 7 5 3 5 9 4 3 11 5 7 13 4 15 7 9 5 17 19 3 9 3 21 11 4 11 23 13 7 25 5 13 17 7 15 27 4 23 15 9 17 29 19 9 31 3 19 21 11 21 33 23 11 35 13 25 37 7 27 25 17 13 39 15 41 27 15 23 43 17 45 29 31 9 29 47 19 31 19 49 21 21 51 33 11 33 35 23 35 53 25 55 37 13 37 39 27 57 25 17 39 45 27 41 59 15 43 41 23 53 43 29 45 61 31 29 63 47 31 65 19 47 49 21 49 51 33 51 67 33 69 35 35 71 53 37 55 73 25 57 55 39 37 75 27 59 57 45 39 77 41 79 59 43 81 41 43 53 83 45 85 61 29 61 63 31 63 65 47 65 87 49 47 89 49 91 51 51 93 67 33 67 69 69 71 35 71 95 53 73 55 97 37 73 75 57 99 55 39 75 77 59 101 57 45 77 85 79 103 59 41 81 79 43 83 81 95 83 53 61 85 105 61 107 63 63 109 65 65 111 87 47 87 89 49 89 91 51 91 93 67 93 113 67 115 69 69 117 71 71 105 95 73 97 119 55 99 97 75 73 121 57 101 99 77 75 123 59 103 101 85 77 125 79 127 103 81 129 79 83 131 81 95 125 83 105 85 95 61 105 107 63 107 109 65 109 111 87 111 133 89 87 135 89 137 91 91 139 93 93 141 113 67 113 115 115 117 69 117 105 71 119 97 143 121 73 119 97 99 145 75 121 123 101 147 99 77 123 125 103 149 101 85 125 95 127 151 103 129 127 79 81 131 129 125 131 83 105 117 107 107 153 109 109 155 111 111 157 133 87 133 135 89 135 137 91 137 139 93 139 141 113 141 159 115 113 161 117 115 153 119 143 163 97 145 143 121 119 165 99 147 145 123 121 167 101 149 147 125 123 131 103 151 149 127 169 151 129 171 127 131 167 129 107 117 153 109 153 155 111 155 157 133 157 173 135 133 175 135 177 137 139 137 179 139 181 141 141 183 159 113 159 161 115 161 153 143 185 163 165 119 163 143 145 187 167 121 165 145 147 189 131 123 167 149 191 147 149 151 193 169 195 151 171 169 127 129 167 171 153 161 155 155 197 157 157 199 173 133 173 175 135 175 177 137 177 179 139 179 181 141 181 183 159 183 201 161 159 197 163 185 203 143 187 185 165 163 205 145 189 187 167 165 171 147 191 189 149 193 191 151 195 193 169 207 195 171 205 169 155 161 197 197 199 157 173 199 209 175 173 211 177 175 213 179 177 215 179 217 181 181 219 183 183 221 201 197 159 201 185 223 203 205 163 203 187 225 185 171 165 205 187 189 227 189 191 229 191 193 231 193 195 233 207 235 195 205 207 169 197 201 199 199 237 209 173 209 211 175 211 213 177 213 215 179 215 217 181 217 219 183 219 221 201 221 237 203 223 239 185 225 223 205 203 207 187 227 225 189 229 227 191 231 229 193 233 231 195 235 233 207 239 235 201 237 199 209 237 241 211 209 243 213 211 245 215 213 247 215 249 217 217 251 219 219 253 221 221 255 237 223 257 239 203 239 207 225 259 223 227 261 225 227 229 263 229 231 265 231 233 267 233 235 269 239 271 235 237 255 241 209 241 243 211 243 245 213 245 247 215 247 249 217 249 251 219 251 253 221 253 255 239 257 271 223 259 257 225 261 259 227 263 261 229 265 263 231 267 265 233 269 267 235 271 269 255 273 241 241 275 243 245 243 277 247 245 279 249 247 281 251 249 283 251 285 253 253 287 255 271 257 289 291 257 259 261 293 259 263 295 261 265 297 263 299 265 267 267 269 301 269 271 303 255 287 273 241 273 275 243 275 277 245 277 279 247 279 281 249 281 283 251 283 285 253 285 287 271 289 303 257 291 289 293 291 259 261 295 293 263 297 295 265 299 297 299 267 301 269 303 301 287 305 273 273 307 275 275 309 277 279 277 311 281 279 313 283 281 315 285 283 317 285 319 287 303 289 321 289 291 323 325 291 293 327 293 295 297 329 295 299 331 297 333 299 301 335 301 303 287 319 305 273 305 307 275 307 309 277 309 311 279 311 313 281 313 315 283 315 317 285 317 319 303 321 335 289 323 321 291 325 323 327 325 293 329 327 295 297 331 329 299 333 331 333 301 335 319 325 305 305 327 307 307 329 309 311 309 331 313 311 333 315 313 335 315 321 317 317 323 319 335 321 315 321 323 317 323 325 319 305 325 327 307 327 329 331 309 329 333 311 331 313 333 335</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1230\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1235\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1236\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1240\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"474\">-0.2632333636283875 0.1463004350662231 0.4053278565406799 -0.2554321587085724 0.1350731551647186 0.3807511031627655 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2554321587085724 0.1350731551647186 0.3807511031627655 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2632333636283875 0.1463004350662231 0.4053278565406799 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.3599225878715515 0.1203248128294945 0.3703152239322662 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3587583005428314 0.1375443339347839 0.3861912786960602 -0.3599225878715515 0.1203248128294945 0.3703152239322662 -0.3503314554691315 0.1276161819696426 0.364459216594696 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.3616665303707123 0.1178532540798187 0.3428008258342743 -0.3616665303707123 0.1178532540798187 0.3428008258342743 -0.3599225878715515 0.2193765044212341 0.3321252465248108 -0.3599225878715515 0.2193765044212341 0.3321252465248108 -0.3686836659908295 0.1289883852005005 0.3880452811717987 -0.3686836659908295 0.1289883852005005 0.3880452811717987 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2318025380373001 0.1410114616155624 0.4316088259220123 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.3685232102870941 0.112412266433239 0.3536622524261475 -0.3685232102870941 0.112412266433239 0.3536622524261475 -0.3686836659908295 0.2251724451780319 0.3510836064815521 -0.3686836659908295 0.2251724451780319 0.3510836064815521 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.3948188722133637 0.1214067563414574 0.3719117343425751 -0.3948188722133637 0.1214067563414574 0.3719117343425751 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.2201359421014786 0.11965212225914 0.3852341175079346 -0.3685232102870941 0.213781014084816 0.3145064115524292 -0.3685232102870941 0.213781014084816 0.3145064115524292 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.331480085849762 0.3918247520923615 0.2766976058483124 -0.331480085849762 0.3918247520923615 0.2766976058483124 -0.380407452583313 0.1333868056535721 0.3983803391456604 -0.380407452583313 0.1333868056535721 0.3983803391456604 -0.3475818336009979 0.391990065574646 0.2504473626613617 -0.3475818336009979 0.391990065574646 0.2504473626613617 -0.3847377300262451 0.1070445701479912 0.3405502736568451 -0.3847377300262451 0.1070445701479912 0.3405502736568451 -0.3477009534835815 0.3914711475372315 0.3060665428638458 -0.3477009534835815 0.3914711475372315 0.3060665428638458 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.406432032585144 0.1333922743797302 0.3976973593235016 -0.406432032585144 0.1333922743797302 0.3976973593235016 -0.377187043428421 0.3922291398048401 0.2198213487863541 -0.377187043428421 0.3922291398048401 0.2198213487863541 -0.3847377300262451 0.2087883651256561 0.3013535141944885 -0.3847377300262451 0.2087883651256561 0.3013535141944885 -0.4076659083366394 0.1068173423409462 0.3408112823963165 -0.4076659083366394 0.1068173423409462 0.3408112823963165 -0.4203027784824371 0.1285581141710281 0.3884540498256683 -0.4203027784824371 0.1285581141710281 0.3884540498256683 -0.4076659083366394 0.2091143876314163 0.301336407661438 -0.4076659083366394 0.2091143876314163 0.301336407661438 -0.4257177710533142 0.1123063191771507 0.352569580078125 -0.4257177710533142 0.1123063191771507 0.352569580078125 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.4285887479782105 0.1201155632734299 0.3699979782104492 -0.4285887479782105 0.1201155632734299 0.3699979782104492 -0.4184880256652832 0.3922127485275269 0.2197222262620926 -0.4184880256652832 0.3922127485275269 0.2197222262620926 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.3817976415157318 0.07198629528284073 0.2429685145616531 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4114072024822235 0.07156319916248322 0.2420414835214615 -0.3817976415157318 0.07198629528284073 0.2429685145616531 -0.4106560349464417 0.1110677346587181 0.3282325267791748 -0.4114072024822235 0.07156319916248322 0.2420414835214615 -0.380853533744812 0.1110677346587181 0.3282325267791748 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.4257177710533142 0.2131323367357254 0.3136953711509705 -0.4257177710533142 0.2131323367357254 0.3136953711509705 -0.449212372303009 0.3919951915740967 0.2502450942993164 -0.449212372303009 0.3919951915740967 0.2502450942993164 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4313807189464569 0.1182028353214264 0.3435654938220978 -0.4313807189464569 0.1182028353214264 0.3435654938220978 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4203027784824371 0.2257343530654907 0.3509951531887054 -0.4203027784824371 0.2257343530654907 0.3509951531887054 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.419958233833313 0.06564503908157349 0.2290875464677811 -0.4393015503883362 0.3914935886859894 0.3062659204006195 -0.4393015503883362 0.3914935886859894 0.3062659204006195 -0.4285887479782105 0.2193097323179245 0.331741213798523 -0.4285887479782105 0.2193097323179245 0.331741213798523 -0.5296262502670288 0.1466700881719589 0.4061391949653626 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.5353522300720215 0.135115921497345 0.3808478713035584 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.4297654330730438 0.1382018327713013 0.3876316249370575 -0.5353522300720215 0.135115921497345 0.3808478713035584 -0.4385965168476105 0.1279118061065674 0.3651068210601807 -0.5296262502670288 0.1466700881719589 0.4061391949653626 -0.455159991979599 0.3916418254375458 0.2787977755069733 -0.455159991979599 0.3916418254375458 0.2787977755069733 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3705208897590637 0.04165389388799667 0.2158837467432022 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.4233378767967224 0.04165389388799667 0.2158837467432022 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3740372359752655 0.06564503908157349 0.2290875464677811 -0.3705208897590637 0.06932881474494934 0.2000487595796585 -0.4233378767967224 0.06932881474494934 0.2000487595796585 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5739383101463318 0.1196092516183853 0.3851428627967835 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5619023442268372 0.1410554200410843 0.431704044342041 -0.5619023442268372 0.1410554200410843 0.431704044342041</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"158\" source=\"#ID1240\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1237\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1241\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"474\">7.154997292855769e-005 -0.9095757112452636 0.4155382297614439 6.852755594235001e-005 -0.909576342414341 0.4155368486959054 0.0001263487641218279 -0.9095642658499487 0.4155632687387494 0.0001263487641218279 -0.9095642658499487 0.4155632687387494 -6.852755594235001e-005 0.909576342414341 -0.4155368486959054 -0.0001263487641218279 0.9095642658499487 -0.4155632687387494 -0.0001263487641218279 0.9095642658499487 -0.4155632687387494 -7.154997292855769e-005 0.9095757112452636 -0.4155382297614439 0.9447151072035335 -0.3209045653834627 0.06733220728200723 0.4384268685113827 -0.8133494384010177 0.3824193666906158 0.7939855858878951 -0.1106473800233164 0.5977826082249566 -0.7939855858878951 0.1106473800233164 -0.5977826082249566 -0.4384268685113827 0.8133494384010177 -0.3824193666906158 -0.9447151072035335 0.3209045653834627 -0.06733220728200723 3.04203672274447e-005 -0.9095842994173099 0.4155194355600263 3.04203672274447e-005 -0.9095842994173099 0.4155194355600263 -3.04203672274447e-005 0.9095842994173099 -0.4155194355600263 -3.04203672274447e-005 0.9095842994173099 -0.4155194355600263 0.7459218330116282 -0.529476007767462 -0.4040492250149765 -0.7459218330116282 0.529476007767462 0.4040492250149765 0.9995435931490206 -0.02557286258534972 -0.01608210477319518 -0.9995435931490206 0.02557286258534972 0.01608210477319518 0.3268345149983279 -0.7222415736188392 0.609545986076843 -0.3268345149983279 0.7222415736188392 -0.609545986076843 -0.5591657910973846 -0.7999263466458474 0.2178335557444341 -0.525736770613326 -0.8229577751390799 0.2152704075417861 -0.5429581458881555 -0.8113378986682585 0.2166270204712956 0.5429581458881555 0.8113378986682585 -0.2166270204712956 0.525736770613326 0.8229577751390799 -0.2152704075417861 0.5591657910973846 0.7999263466458474 -0.2178335557444341 0.3232419702666449 -0.931578117861167 0.1663635746802267 -0.3232419702666449 0.931578117861167 -0.1663635746802267 0.8161955627422841 0.1770353984243641 0.5499847916665811 -0.8161955627422841 -0.1770353984243641 -0.5499847916665811 0.367804967138664 0.05323771252511472 0.9283777529180778 -0.367804967138664 -0.05323771252511472 -0.9283777529180778 0.001422634435665874 -0.9075303617627482 0.4199840694479229 -0.001422634435665874 0.9075303617627482 -0.4199840694479229 -0.5742241777860956 -0.7888937276389303 0.2188910234290935 0.5742241777860956 0.7888937276389303 -0.2188910234290935 0.7961764647920196 -0.2076752187963572 -0.5683080506285011 -0.7961764647920196 0.2076752187963572 0.5683080506285011 0.3256245194348662 -0.653574442369451 -0.6832343087289117 -0.3256245194348662 0.653574442369451 0.6832343087289117 0.974033649817812 -0.1940885357400465 -0.1165679600785597 -0.974033649817812 0.1940885357400465 0.1165679600785597 0.1616895397440462 -0.6332904620999461 0.7568353079439377 -0.1616895397440462 0.6332904620999461 -0.7568353079439377 0.7462209594081926 -0.3077281488075161 -0.590303029105743 -0.7462209594081926 0.3077281488075161 0.590303029105743 0.1363240481501958 -0.9903877858573049 0.02340486104654377 -0.1363240481501958 0.9903877858573049 -0.02340486104654377 0.8043460974294051 0.05891508458270945 0.5912329222554325 -0.8043460974294051 -0.05891508458270945 -0.5912329222554325 0.3600849068814223 0.2993654758240678 0.8835831436377829 -0.3600849068814223 -0.2993654758240678 -0.8835831436377829 -0.3440377057128069 0.03357744818432158 0.9383552696187609 0.3440377057128069 -0.03357744818432158 -0.9383552696187609 -0.1305064306091962 -0.6524378774858333 0.7465205205427564 0.1305064306091962 0.6524378774858333 -0.7465205205427564 0.334771657383111 -0.3926254953009006 -0.8566056022772017 -0.334771657383111 0.3926254953009006 0.8566056022772017 0.3459775000900096 -0.3151107792028358 -0.8837447404435566 -0.3459775000900096 0.3151107792028358 0.8837447404435566 -0.1260648181863209 -0.9917475145758299 0.02333514406028312 0.1260648181863209 0.9917475145758299 -0.02333514406028312 -0.3146699866686367 -0.7026366235699806 0.6381885103228808 0.3146699866686367 0.7026366235699806 -0.6381885103228808 -0.3091364483100864 -0.3196699407816844 -0.8956817433033117 0.3091364483100864 0.3196699407816844 0.8956817433033117 -0.4045527655689166 -0.9035508367343974 0.1411840830515661 0.4045527655689166 0.9035508367343974 -0.1411840830515661 -0.3085605894463301 -0.6493048447907174 -0.6951212708382872 0.3085605894463301 0.6493048447907174 0.6951212708382872 0.4043726751136649 0.1731169967969206 0.8980608248005439 -0.4043726751136649 -0.1731169967969206 -0.8980608248005439 -0.7740390339621123 -0.09553922007584777 0.6258880341804747 0.7740390339621123 0.09553922007584777 -0.6258880341804747 -0.4056396103659939 -0.8085508928082049 0.4262651290466761 0.4056396103659939 0.8085508928082049 -0.4262651290466761 -0.3279646841002163 -0.4003026479086039 -0.8556850799566426 0.3279646841002163 0.4003026479086039 0.8556850799566426 -2.754448984373484e-005 -0.9090599037003082 0.4166654422023591 -1.434938109444597e-005 -0.9093464648875964 0.4160396694914158 -2.754448984373484e-005 -0.9090599037003082 0.4166654422023591 -1.363567733812147e-005 -0.9093619522663444 0.4160058167675192 1.434938109444597e-005 0.9093464648875964 -0.4160396694914158 2.754448984373484e-005 0.9090599037003082 -0.4166654422023591 1.363567733812147e-005 0.9093619522663444 -0.4160058167675192 2.754448984373484e-005 0.9090599037003082 -0.4166654422023591 -0.3299024776612259 0.3083376942217712 0.8922400022163241 0.3299024776612259 -0.3083376942217712 -0.8922400022163241 -0.8455678684091331 -0.1881845255135273 -0.4996014053936233 0.8455678684091331 0.1881845255135273 0.4996014053936233 -0.8183546287287127 -0.2907122829469654 -0.4957641275667838 0.8183546287287127 0.2907122829469654 0.4957641275667838 -0.9458502421880254 -0.2838528046477783 0.1574639788854709 0.9458502421880254 0.2838528046477783 -0.1574639788854709 -0.7896396980138031 -0.4780241226557592 -0.3846584010259772 0.7896396980138031 0.4780241226557592 0.3846584010259772 -3.728876776365491e-006 -0.9095767996909002 0.4155358533871124 -3.728876776365491e-006 -0.9095767996909002 0.4155358533871124 3.728876776365491e-006 0.9095767996909002 -0.4155358533871124 3.728876776365491e-006 0.9095767996909002 -0.4155358533871124 -0.7919122321604043 0.1926328944419546 0.5794545577814024 0.7919122321604043 -0.1926328944419546 -0.5794545577814024 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 -2.865905348872971e-017 -0.4821617997007733 0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 2.865905348872971e-017 0.4821617997007733 -0.8760821873028304 0 0.9928578450812609 0.1193033924940749 0 0.9928578450812609 0.1193033924940749 0 0.9928578450812609 0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0 -0.9928578450812609 -0.1193033924940749 -0.7816935535743665 0.06795371568789234 0.6199495792598683 0.7816935535743665 -0.06795371568789234 -0.6199495792598683 -0.9929097945071276 0.02385699098022405 0.1164516378295436 0.9929097945071276 -0.02385699098022405 -0.1164516378295436 -5.859460411438772e-005 -0.9095740687183863 0.4155418271146151 -0.0001156458150618025 -0.9095662717086603 0.4155588815030348 -5.978439340967497e-005 -0.9095739061471146 0.4155421827950879 -0.0001156458150618025 -0.9095662717086603 0.4155588815030348 0.0001156458150618025 0.9095662717086603 -0.4155588815030348 5.978439340967497e-005 0.9095739061471146 -0.4155421827950879 0.0001156458150618025 0.9095662717086603 -0.4155588815030348 5.859460411438772e-005 0.9095740687183863 -0.4155418271146151 -0.9890238215101863 -0.1175613266145401 0.08950539073160209 0.9890238215101863 0.1175613266145401 -0.08950539073160209 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 -2.166392932217945e-017 -0.4821617997007734 0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 2.166392932217945e-017 0.4821617997007734 -0.8760821873028304 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 -8.448108201592988e-018 0.9928578450812609 0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 8.448108201592988e-018 -0.9928578450812609 -0.1193033924940748 -0.3463720517402847 0.1847738626352813 0.9197200777737015 0.3463720517402847 -0.1847738626352813 -0.9197200777737015 -1.483031748329013e-005 -0.9095800476225388 0.4155287435870616 -1.483031748329013e-005 -0.9095800476225388 0.4155287435870616 1.483031748329013e-005 0.9095800476225388 -0.4155287435870616 1.483031748329013e-005 0.9095800476225388 -0.4155287435870616 0.5807092003594135 -0.7878595155234006 0.2050712276677619 0.5777978740210455 -0.7889102339766428 0.2092134305050199 0.5752096050775968 -0.7898221279238338 0.21287300549469 -0.5752096050775968 0.7898221279238338 -0.21287300549469 -0.5777978740210455 0.7889102339766428 -0.2092134305050199 -0.5807092003594135 0.7878595155234006 -0.2050712276677619 0.5729543618345776 -0.7905998681501759 0.2160443189154868 -0.5729543618345776 0.7905998681501759 -0.2160443189154868</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"158\" source=\"#ID1241\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1239\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1242\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"488\">-2.63213038303705 3.378607622204579 -2.554133930553064 3.166048461566486 -3.587391906179787 3.213099664198045 -3.50313724758169 3.025141641425929 -1.045319997864637 3.894876806025977 -1.160862126351026 3.94820031540899 -1.015187397600491 4.092764163498988 -2.632284705724435 3.378530270152548 -2.53997460493407 3.46794460018157 -2.554276411449781 3.165973798754651 -2.417760943946474 3.122053832822153 -1.968270958422909 2.944184880112239 -2.117713939615053 2.773720815463494 -2.088736626084283 2.990275045555151 1.962256326470615 3.443412943408657 2.076606523626401 3.621259255608264 2.880180304337664 3.178785496016955 -1.610510223683513 3.934838441292375 -1.608181009007588 4.104677324854946 -1.477774829738932 4.086917556437528 -2.752215170559102 2.855029146521831 -2.953567051477624 3.177199976881162 -2.712584059120986 3.305623980831408 0.9262408536690879 1.135273511479787 1.031456717394809 1.325083520305112 1.940257989943857 1.041639633748331 -1.991581193229378 2.765433417334989 -2.079062651350002 2.850908629070537 -1.962284483885672 2.9819610514638 3.0451415689917 3.243791996790366 2.251318087510055 3.697026584523082 3.123671631587728 3.402710175634945 -1.373648664845498 4.173606268015004 -1.299628758783695 4.338301173687359 -1.244354189338972 4.151378445934692 -3.609732514477293 3.023515457575924 -3.958777436169807 3.037469723625358 -3.698106505987994 3.178484654265517 -2.483947490368943 2.900519119337377 -2.736047809243717 2.823433714152102 -2.703970739913745 3.274400369748774 1.889351512430463 0.9735185433538492 0.9367106543766401 1.219089245779115 1.950873127176101 1.12643457960694 -3.6099706886097 3.024834741402522 -3.695257113375188 2.879532741405246 -3.959017175547804 3.038764757168724 -2.715953227610941 2.311948976600159 -2.917988703346826 2.195736082177195 -2.801558566947437 2.398591749173 2.139780247186715 3.575680708223637 2.196425072156733 3.740258156433743 3.868317254469622 3.09451357754042 2.770953920766503 3.679310685817001 2.910212431396204 3.836884914240899 3.606214276684401 3.324599139223731 -1.388274266682096 4.303677939285445 -1.272571655037253 4.344387171593602 -1.347709011128989 4.180005708010928 -3.665593177900184 3.220691373475351 -3.928131927426224 3.081837356524855 -3.78210775391995 3.309640463856862 1.130311605295193 1.126377820761716 1.206299475270031 1.275214239361596 2.907066575813981 0.5852342416995015 1.075584867740999 -0.8051297767572097 0.05284343010698259 -0.6419163210803518 0.1694911801936667 -0.4677180556519611 -3.718476757910115 2.863521288867862 -3.87887026624569 2.750507641232472 -3.984108898022294 3.020815664882268 -2.965268422994861 2.222128669978276 -3.0176028482097 2.320260662551189 -2.848097127192144 2.42472007513564 0.8346455045968398 0.6332092869589715 2.552734102432543 0.129416192031585 2.499370292160392 -0.1091776051487044 2.337403123774756 3.799527166530098 3.995023245851485 3.394946101639595 3.994761601601176 3.130999170019357 3.658828574919182 3.277701144631026 2.97219994711978 3.797755710265468 3.745284641653469 3.385474241904113 -3.80407452583313 1.900967347094276 -4.117704927921295 1.994636624096851 -3.76063346862793 1.994636624096851 -3.962779579329583 3.041395312246116 -4.080372196636212 3.264611387099298 -3.820145293746886 3.270523676416271 0.3801030424848884 -0.3465349114581305 2.08373234170659 -1.017605435598144 1.960784316884723 -1.338437785425406 1.011564768524706 -0.8679895976751437 0.07835258162855172 -0.55549004156412 1.102073393762526 -0.7148585526376634 -3.830687475043129 2.804184661643422 -4.059977335877058 2.806447143685902 -3.929307467255845 3.076032806541181 -3.840650724818295 2.282253252091462 -3.801559492599367 2.180375066078454 -4.06994220151686 2.284412015148941 2.806324945484714 3.776306591838458 2.862592946750355 3.895811282485938 4.41521860624963 3.264266924492304 -4.148633308407015 1.858109092092074 -4.209966339227252 1.950404146035647 -3.889037958600043 1.873540194319601 -3.91024878588611 3.091265282919711 -4.162843133981847 3.235502402638323 -4.022756456893595 3.316097428165297 1.804807190581595 -1.483917399848166 0.1327346838318974 -0.6080369253746125 0.250299370182768 -0.4667385074936911 -3.871135737455754 -0.922493003367199 -4.100439852056908 -0.9230012540089677 -3.821057423243681 -0.1255950877840216 -4.075401395101349 2.78586827125366 -4.255855413971 2.88801979264803 -3.946759728136424 3.056056913209712 -3.80853533744812 2.166517314017002 -4.106560349464417 2.166517314017002 -4.076659083366394 2.27096666118209 2.884313037022852 3.883343937946692 4.464238345634785 3.45766940877569 4.433186107104556 3.24612279044892 -4.116867083721242 0.8355899834767357 -4.027425087298078 1.009292965064785 -3.911392188290299 0.9591490281471551 -3.932537492759314 3.075582033218262 -4.27037241076195 3.059062345964517 -4.186452856359546 3.218376547966553 -3.654507412820775 0.1045054500660082 -3.789056795842323 0.09287938346886765 -3.604199663229611 0.2351718893821941 -4.162080062192815 -2.134557563507187 -3.835212772701145 -0.5537914285606398 -3.749076225537093 -2.132638084670926 -4.076659083366395 -0.9609096291555792 -4.106560349464417 -0.1611151102336025 -3.808535337448121 -0.1611151102336027 -4.23375680939343 -2.075608589924791 -4.102573149155481 -0.4997027753894155 -3.873268508805136 -0.4993724616566957 -4.242544917072 2.909227215851943 -4.270258826944595 3.059580446390041 -3.932423128148093 3.076090249226915 -4.153657258174265 2.738967934813566 -4.198452213939097 2.63786798315234 -4.340722410538401 2.833473573004768 -3.808568989192585 2.711296288180668 -3.817998225232173 1.973450218548164 -4.106594001072074 2.711293328307002 -4.114093706563162 1.965431016429906 0.732578898063736 0.1227938792054498 0.8775865696850392 -0.0259031933701444 -0.02550715650289914 -0.3041852114695976 -3.776598173440457 1.620656936664281 -3.769765041652121 1.448290098568495 -3.911604173469502 1.612976061742652 -3.385369088698196 3.594503282257561 -2.370403948015334 3.77963298969028 -3.289356085657654 3.436664800728592 -5.394351889746344 2.310255168302022 -5.531872946933133 2.633321255562824 -3.713732337249778 3.174091889593237 -3.889304833134624 2.365421909394091 -4.089795617994382 2.466351634785759 -3.963381092801987 2.505727375327931 -4.121228868352374 2.707894396648292 -4.336747437386265 2.83253564941946 -4.258426856026714 2.905729610370996 -4.114074958573479 1.96581464507311 -3.817979366256187 1.973831313140475 -4.199585029464345 1.853778971787298 -3.740375050887728 1.853779587175583 1.056613651199812 -0.3380899033010843 0.2599314411611681 -0.7503730004179626 0.1637812586082857 -0.6361592099273964 -3.625609780677588 1.470019006260463 -3.749122315784419 1.425305607118445 -3.773776743402028 1.631220182217955 -5.648011933897507 2.435838676545936 -3.984133733066641 3.177350696966402 -3.858569836676477 3.032917600025752 -3.319925345597347 3.645233257028249 -2.432301748736574 4.002032074398338 -2.301567409380017 3.818449438756614 -3.644154888198931 2.686037288831495 -3.725814568994564 2.615137532808995 -3.846415389615387 2.784757725480801 -4.233378767967224 1.105920625207006 -4.19958233833313 1.321346009862422 -3.740372359752655 1.321346009862422 3.740372359752655 1.72767490928385 4.233378767967224 1.497410698066083 4.19958233833313 1.72767490928385 -1.229035429433876 -1.135141619079729 -2.798357227829818 -1.702964175906817 -1.288276156667242 -1.006323504849119 -0.2856228011415883 1.764231067308358 -1.074809300350776 1.300467174443276 -1.157417466045279 1.46022175021733 -5.296448941949752 3.385283044686555 -4.297830011210234 3.225214911140218 -5.353694049117336 3.166543500717179 -4.386127765099642 3.030401783887719 -0.4408526238691178 1.958105914965327 -0.3215888104597184 1.773783870337314 -1.236038297165288 1.500727647207349 -4.754764565415463 2.731318227310149 -2.946988463528547 3.011638785558609 -4.746216689148262 2.501964216298292 -1.455300936847106 3.769211273504801 -1.355374774016136 3.591468562779232 -2.30160619104441 3.344906032491399 -4.233378767967224 1.105920625207006 -3.740372359752655 1.321346009862423 -3.705208897590637 1.105920625207006 3.705208897590637 1.497410698066083 -2.90680081264382 -1.56447180063519 -2.954947297464281 -1.326590688235755 -1.382410700753786 -0.887391473981207 -2.251513409819251 1.229897929918368 -2.187152370213687 1.065030952520911 -3.908840734075562 0.8468919766099712 -5.296286415903058 3.38548417288662 -5.353544330087429 3.166746703318761 -5.421686338526626 3.465686649193497 -5.519764233846809 3.147562017189221 -1.076216311928042 3.430300695985917 -1.933439566116338 3.019782772118031 -1.993828948218517 3.163892373159887 -2.931510696520517 2.881073904661668 -2.865565543124608 2.738479308013299 -4.67447627507849 2.462725569490671 -3.811898130570406 0.3234380588460911 -2.093010548006573 0.5548424321950821 -3.809698603504408 0.07393165446856226 -3.64755428466631 3.617721750936123 -3.910352172916965 3.670072295123552 -3.468904282222147 3.913365430898217 -3.504503565450099 3.939119908911015 -3.945426023973666 3.695237842850044 -3.722119223755929 4.070378628286982</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"244\" source=\"#ID1242\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1238\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1236\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1237\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"86\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 3 2 2 1 1 8 4 9 5 10 6 0 7 14 8 1 9 15 10 1 9 14 8 8 11 18 12 9 13 8 14 10 15 20 16 9 17 22 18 10 19 24 20 25 21 26 22 18 23 8 24 20 25 18 26 30 27 9 28 20 29 10 30 32 31 22 32 34 33 10 34 9 35 36 36 22 37 38 38 24 39 26 40 40 41 18 42 20 43 9 44 30 45 36 46 18 47 42 48 30 49 20 50 32 51 44 52 10 53 34 54 32 55 46 56 34 57 22 58 22 59 36 60 46 61 40 62 20 63 48 64 40 65 42 66 18 67 30 68 50 69 36 70 42 71 50 72 30 73 20 74 44 75 48 76 32 77 52 78 44 79 32 80 34 81 54 82 46 83 56 84 34 85 36 86 58 87 46 88 40 89 48 90 60 91 62 92 42 93 40 94 50 95 64 96 36 97 50 98 42 99 64 100 32 101 54 102 52 103 58 104 56 105 46 106 36 107 66 108 58 109 60 110 62 111 40 112 62 113 68 114 42 115 64 116 70 117 36 118 42 119 72 120 64 121 54 122 74 123 52 124 76 125 56 126 58 127 36 128 78 129 66 130 66 131 76 132 58 133 80 134 62 135 60 136 68 137 72 138 42 139 80 140 68 141 62 142 70 143 78 144 36 145 64 146 72 147 70 148 82 149 83 150 84 151 85 152 84 151 83 150 56 153 76 154 90 155 66 156 78 157 76 158 92 159 72 160 68 161 80 162 94 163 68 164 70 165 96 166 78 167 72 168 98 169 70 170 85 171 83 172 100 173 101 174 100 173 83 172 76 175 104 176 90 177 78 178 96 179 76 180 94 181 92 182 68 183 92 184 98 185 72 186 70 187 98 188 96 189 106 190 107 191 108 192 115 193 116 194 117 195 104 196 118 197 90 198 76 199 120 200 104 201 122 202 123 203 124 204 125 205 124 204 123 203 76 206 96 207 120 208 130 209 92 210 94 211 96 212 98 213 92 214 132 215 133 216 134 217 141 193 142 218 143 194 118 219 144 220 90 221 104 222 120 223 118 224 122 225 124 226 146 227 147 228 146 227 124 226 96 229 92 230 120 231 120 232 92 233 130 234 118 235 120 236 130 237 150 238 151 239 152 240 152 241 151 242 156 243</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1238\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1239\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"86\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">4 5 6 5 4 7 11 12 13 16 4 17 4 16 7 12 19 13 21 11 13 11 23 12 27 28 29 21 13 19 12 31 19 33 11 21 11 35 23 23 37 12 27 29 39 21 19 41 37 31 12 31 43 19 45 33 21 33 35 11 23 35 47 47 37 23 49 21 41 19 43 41 37 51 31 31 51 43 49 45 21 45 53 33 55 35 33 35 57 47 47 59 37 61 49 41 41 43 63 37 65 51 65 43 51 53 55 33 47 57 59 59 67 37 41 63 61 43 69 63 37 71 65 65 73 43 53 75 55 59 57 77 67 79 37 59 77 67 61 63 81 43 73 69 63 69 81 37 79 71 71 73 65 86 87 88 87 86 89 91 77 57 77 79 67 69 73 93 69 95 81 79 97 71 71 99 73 86 102 103 102 86 88 91 105 77 77 97 79 69 93 95 73 99 93 97 99 71 109 110 111 112 113 114 91 119 105 105 121 77 126 127 128 127 126 129 121 97 77 95 93 131 93 99 97 135 136 137 138 139 140 91 145 119 119 121 105 127 148 149 148 127 129 121 93 97 131 93 121 131 121 119 153 154 155 157 154 153</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1238\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1243\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1244\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1247\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"36\">-0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.380407452583313 0.2289936691522598 0.3615901172161102 -0.406432032585144 0.2285403311252594 0.3611425757408142 -0.4117704927921295 0.1447975784540176 0.4017823338508606 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.4155142605304718 0.391316682100296 0.3255459368228912 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.376063346862793 0.1447975784540176 0.4017823338508606 -0.367525190114975 0.391314297914505 0.3244994282722473 -0.367525190114975 0.391314297914505 0.3244994282722473</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"12\" source=\"#ID1247\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1245\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1248\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"36\">-0.3440377057128069 0.03357744818432158 0.9383552696187609 -0.3299024776612259 0.3083376942217712 0.8922400022163241 0.3600849068814223 0.2993654758240678 0.8835831436377829 -0.3600849068814223 -0.2993654758240678 -0.8835831436377829 0.3299024776612259 -0.3083376942217712 -0.8922400022163241 0.3440377057128069 -0.03357744818432158 -0.9383552696187609 -0.3463720517402847 0.1847738626352813 0.9197200777737015 0.3463720517402847 -0.1847738626352813 -0.9197200777737015 0.367804967138664 0.05323771252511472 0.9283777529180778 -0.367804967138664 -0.05323771252511472 -0.9283777529180778 0.4043726751136649 0.1731169967969206 0.8980608248005439 -0.4043726751136649 -0.1731169967969206 -0.8980608248005439</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"12\" source=\"#ID1248\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1246\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1244\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1245\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"8\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 0 2 8 9 3 5 2 6 10 11 7 3</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1246\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1249\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1250\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1253\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">-0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5619023442268372 0.1687297374010086 0.4158693253993988 -0.5421661734580994 0.150906503200531 0.4154126644134522 -0.5739383101463318 0.1472844928503037 0.3693079352378845 -0.5519742369651794 0.1341030150651932 0.3786295652389526 -0.5519742369651794 0.1341030150651932 0.3786295652389526</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1253\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1251\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1254\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">0.5855516228701534 0.6673756912043336 -0.4601510444882938 0.5847287981283337 0.6684276671237125 -0.4596701931417198 0.5840114434190137 0.66934247689241 -0.4592507839766566 -0.5840114434190137 -0.66934247689241 0.4592507839766566 -0.5847287981283337 -0.6684276671237125 0.4596701931417198 -0.5855516228701534 -0.6673756912043336 0.4601510444882938 0.5865086810349907 0.6661485009135626 -0.4607100409164197 -0.5865086810349907 -0.6661485009135626 0.4607100409164197</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1254\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1252\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1250\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1251\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"4\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1252\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1255\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1256\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1259\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">-0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2318025380373001 0.1686851978302002 0.4157732427120209 -0.2201359421014786 0.1473268419504166 0.3693992793560028 -0.2417805343866348 0.1327539533376694 0.3756727576255798 -0.2540025115013123 0.1510234326124191 0.4156664907932282 -0.2540025115013123 0.1510234326124191 0.4156664907932282</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1259\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1257\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1260\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">-0.5664893720279264 0.680870144856998 -0.46422584721428 -0.5784378393100765 0.6758352019951724 -0.456789279425902 -0.5524855132419443 0.6865142307862299 -0.4727134106261178 0.5524855132419443 -0.6865142307862299 0.4727134106261178 0.5784378393100765 -0.6758352019951724 0.456789279425902 0.5664893720279264 -0.680870144856998 0.46422584721428 -0.5389551592185798 0.691712799742818 -0.4806877770690945 0.5389551592185798 -0.691712799742818 0.4806877770690945</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1260\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1258\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1256\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1257\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"4\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1258\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1261\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1262\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1265\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">-0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.5398718118667603 0.5160609483718872 -0.2822246551513672 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5390825271606445 0.5830433368682861 -0.2349873781204224 -0.5398718118667603 0.5160609483718872 -0.2822246551513672 -0.5390825271606445 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4597278535366058 0.5886020064353943 -0.2516790628433228 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4733600318431854 0.6012260317802429 -0.2272372990846634 -0.4591773748397827 0.5830433368682861 -0.2349873781204224 -0.4597278535366058 0.5886020064353943 -0.2516790628433228 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5398718118667603 0.5885813236236572 -0.2513153851032257 -0.5398718118667603 0.5885813236236572 -0.2513153851032257 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.5262926816940308 0.4901057779788971 -0.2745989263057709 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4591773748397827 0.5103098154067993 -0.2659878432750702 -0.4733552634716034 0.6066198348999023 -0.2439994066953659 -0.4733552634716034 0.6066198348999023 -0.2439994066953659 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5270576477050781 0.606323778629303 -0.2437526285648346 -0.5270576477050781 0.606323778629303 -0.2437526285648346 -0.5262926816940308 0.6008855104446411 -0.2273827493190765 -0.5270576477050781 0.4954752027988434 -0.2909989953041077 -0.5270576477050781 0.4954752027988434 -0.2909989953041077 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4597278535366058 0.5160419344902039 -0.2826054692268372 -0.4597278535366058 0.5160419344902039 -0.2826054692268372 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4732297360897064 0.4901057779788971 -0.2745989263057709 -0.4733411073684692 0.4960610568523407 -0.2911213934421539 -0.4733411073684692 0.4960610568523407 -0.2911213934421539</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1265\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1263\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1266\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">1.018605038254633e-017 -0.3920865992729213 0.9199283117018389 -1.492644435246423e-006 -0.3920905111252245 0.9199266444034179 1.263479483478821e-017 -0.392094972052365 0.9199247430585043 -1.263479483478821e-017 0.392094972052365 -0.9199247430585043 1.492644435246423e-006 0.3920905111252245 -0.9199266444034179 -1.018605038254633e-017 0.3920865992729213 -0.9199283117018389 -7.160122051603417e-007 -0.3920995868816517 0.9199227760886918 7.160122051603417e-007 0.3920995868816517 -0.9199227760886918 -0.9657779994111223 -0.2556768389188145 -0.04361433129067741 -0.961816197635081 -0.2697193962519665 -0.04648708694110092 -0.952955038844713 0.2700497766246847 0.137658316441213 0.952955038844713 -0.2700497766246847 -0.137658316441213 0.961816197635081 0.2697193962519665 0.04648708694110092 0.9657779994111223 0.2556768389188145 0.04361433129067741 4.226078624807187e-017 -0.3920867037195872 0.9199282671851697 -4.226078624807187e-017 0.3920867037195872 -0.9199282671851697 0.9556301563420309 0.2865716167704185 0.06817413550089126 0.9464262773971828 0.3144432018787364 0.07350356620164039 0.4461077867563716 0.8529219849936016 0.2711308357784226 -0.4461077867563716 -0.8529219849936016 -0.2711308357784226 -0.9464262773971828 -0.3144432018787364 -0.07350356620164039 -0.9556301563420309 -0.2865716167704185 -0.06817413550089126 -5.489730722854122e-006 -0.392084984740443 0.9199289998206108 5.489730722854122e-006 0.392084984740443 -0.9199289998206108 -0.9617606342588828 0.2423096741065457 0.1276812602707654 0.9617606342588828 -0.2423096741065457 -0.1276812602707654 -0.4995310403535877 -0.8292392942562499 -0.2506609913501879 0.4995310403535877 0.8292392942562499 0.2506609913501879 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9634604031238594 -0.2417599937723264 -0.1153089633272929 -0.9634604031238594 0.2417599937723264 0.1153089633272929 0.4722805523885353 0.8390374649568232 0.2701244384249742 -0.4722805523885353 -0.8390374649568232 -0.2701244384249742 -0.4554289994794556 0.8379380261111193 0.3007395731029473 -0.4946133559482358 0.8179775718930541 0.2937180961356777 0.4946133559482358 -0.8179775718930541 -0.2937180961356777 0.4554289994794556 -0.8379380261111193 -0.3007395731029473 -0.496138447156815 -0.8307139620940133 -0.2525093155408146 0.496138447156815 0.8307139620940133 0.2525093155408146 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9563447960919848 -0.2662293121312899 -0.1205262807435803 -0.9563447960919848 0.2662293121312899 0.1205262807435803 0.4944995435269457 -0.8167100971460085 -0.2974135482310776 -0.4944995435269457 0.8167100971460085 0.2974135482310776 0.4800780324579885 -0.8242189406550274 -0.3003135371853403 -0.4800780324579885 0.8242189406550274 0.3003135371853403</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1266\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1264\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1262\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1263\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"44\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 0 2 3 5 15 16 17 18 19 20 21 1 22 6 7 23 4 10 9 24 25 12 11 8 26 9 12 27 13 28 0 14 15 5 29 30 17 16 21 20 31 16 18 32 33 19 21 34 35 18 19 36 37 10 24 34 37 25 11 26 38 9 12 39 27 40 28 14 15 29 41 42 30 16 21 31 43 35 32 18 19 33 36 34 24 35 36 25 37 44 38 26 27 39 45 44 30 42 43 31 45 46 38 44 45 39 47 46 44 42 43 45 47</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1264\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1267\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1268\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1271\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"150\">-0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.4343203604221344 0.5160609483718872 -0.2822246551513672 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4335311949253082 0.5830433368682861 -0.2349873781204224 -0.4343203604221344 0.5160609483718872 -0.2822246551513672 -0.4335311949253082 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.354176789522171 0.5886020064353943 -0.2516790628433228 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3678089678287506 0.6012260317802429 -0.2272372990846634 -0.3536262512207031 0.5830433368682861 -0.2349873781204224 -0.354176789522171 0.5886020064353943 -0.2516790628433228 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4343203604221344 0.5885813236236572 -0.2513153851032257 -0.4343203604221344 0.5885813236236572 -0.2513153851032257 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3536262512207031 0.5103098154067993 -0.2659878432750702 -0.3678038418292999 0.6066198348999023 -0.2439994066953659 -0.3678038418292999 0.6066198348999023 -0.2439994066953659 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4215061962604523 0.606323778629303 -0.2437526285648346 -0.4215061962604523 0.606323778629303 -0.2437526285648346 -0.4207412898540497 0.6008855104446411 -0.2273827493190765 -0.4215061962604523 0.4954752027988434 -0.2909989953041077 -0.4215061962604523 0.4954752027988434 -0.2909989953041077 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.4207412898540497 0.4901057779788971 -0.2745989263057709 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.354176789522171 0.5160419344902039 -0.2826054692268372 -0.354176789522171 0.5160419344902039 -0.2826054692268372 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.3676785230636597 0.4901057779788971 -0.2745989263057709 -0.3677899539470673 0.4960610568523407 -0.2911213934421539 -0.3677899539470673 0.4960610568523407 -0.2911213934421539</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"50\" source=\"#ID1271\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1269\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1272\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"150\">1.577987075014722e-017 -0.3920865992778976 0.919928311699718 -1.49264799376819e-006 -0.3920905111273643 0.9199266444025057 9.377758992654222e-018 -0.3920949720469876 0.9199247430607962 -9.377758992654222e-018 0.3920949720469876 -0.9199247430607962 1.49264799376819e-006 0.3920905111273643 -0.9199266444025057 -1.577987075014722e-017 0.3920865992778976 -0.919928311699718 -7.160187554859395e-007 -0.3920995868705536 0.9199227760934221 7.160187554859395e-007 0.3920995868705536 -0.9199227760934221 -0.9657782097535681 -0.2556749505845612 -0.04362074287280278 -0.9618163096584675 -0.2697179776438742 -0.04649299958773773 -0.9529549464436813 0.2700530802757604 0.1376524750307613 0.9529549464436813 -0.2700530802757604 -0.1376524750307613 0.9618163096584675 0.2697179776438742 0.04649299958773773 0.9657782097535681 0.2556749505845612 0.04362074287280278 4.398390274986898e-017 -0.3920867037122621 0.9199282671882916 -4.398390274986898e-017 0.3920867037122621 -0.9199282671882916 0.9556306576448407 0.2865699003687983 0.06817432340629723 0.9464258468055602 0.3144451341472773 0.07350084427732247 0.4461060594785385 0.8529213522706366 0.2711356681393269 -0.4461060594785385 -0.8529213522706366 -0.2711356681393269 -0.9464258468055602 -0.3144451341472773 -0.07350084427732247 -0.9556306576448407 -0.2865699003687983 -0.06817432340629723 -5.489764998567177e-006 -0.3920849847041301 0.9199289998360877 5.489764998567177e-006 0.3920849847041301 -0.9199289998360877 -0.9617605142813323 0.2423129442383939 0.127675957892739 0.9617605142813323 -0.2423129442383939 -0.127675957892739 -0.4995316796696845 -0.8292382630216973 -0.2506631288146341 0.4995316796696845 0.8292382630216973 0.2506631288146341 1.401435880184439e-017 -0.3920801801035452 0.9199310476171416 -1.401435880184439e-017 0.3920801801035452 -0.9199310476171416 0.9634607759132623 -0.2417572975523022 -0.1153115014073698 -0.9634607759132623 0.2417572975523022 0.1153115014073698 0.4722914400859864 0.8390289711358017 0.2701317849056331 -0.4722914400859864 -0.8390289711358017 -0.2701317849056331 -0.4554294014629058 0.8379385721984621 0.3007374428054177 -0.4946125368993921 0.8179786090951815 0.2937165868735704 0.4946125368993921 -0.8179786090951815 -0.2937165868735704 0.4554294014629058 -0.8379385721984621 -0.3007374428054177 -0.496137727824831 -0.8307138391627682 -0.2525111333234005 0.496137727824831 0.8307138391627682 0.2525111333234005 0 -0.3920801801035452 0.9199310476171416 0 -0.3920801801035452 0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 -0 0.3920801801035452 -0.9199310476171416 0.9563451698804476 -0.266226810714687 -0.120528840129754 -0.9563451698804476 0.266226810714687 0.120528840129754 0.4945017044715873 -0.8167083583261001 -0.2974147301580424 -0.4945017044715873 0.8167083583261001 0.2974147301580424 0.4800785693254803 -0.8242181053042629 -0.3003149715932439 -0.4800785693254803 0.8242181053042629 0.3003149715932439</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"50\" source=\"#ID1272\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1270\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1268\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1269\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"44\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 0 2 3 5 15 16 17 18 19 20 21 1 22 6 7 23 4 10 9 24 25 12 11 8 26 9 12 27 13 28 0 14 15 5 29 30 17 16 21 20 31 16 18 32 33 19 21 34 35 18 19 36 37 10 24 34 37 25 11 26 38 9 12 39 27 40 41 14 15 42 43 44 30 16 21 31 45 35 32 18 19 33 36 34 24 35 36 25 37 46 38 26 27 39 47 46 30 44 45 31 47 48 38 46 47 39 49 48 46 44 45 47 49</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1270\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1273\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1274\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1277\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"246\">-0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3090353906154633 0.5463404059410095 -0.2693190574645996 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3082464337348938 0.6286708116531372 -0.2155399769544601 -0.3090353906154633 0.5463404059410095 -0.2693190574645996 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.6342289447784424 -0.232231467962265 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2425238937139511 0.646853506565094 -0.2077899128198624 -0.2283414453268051 0.6286708116531372 -0.2155399769544601 -0.2288918197154999 0.6342289447784424 -0.232231467962265 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.3090353906154633 0.6342087984085083 -0.2318678945302963 -0.3090353906154633 0.6342087984085083 -0.2318678945302963 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.3082464337348938 0.5405888557434082 -0.2530822157859802 -0.3254193067550659 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2425188422203064 0.6522464156150818 -0.2245520353317261 -0.2425188422203064 0.6522464156150818 -0.2245520353317261 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.2962212562561035 0.6519521474838257 -0.2243053764104843 -0.2962212562561035 0.6519521474838257 -0.2243053764104843 -0.2954562902450562 0.6465129256248474 -0.2079356759786606 -0.3262083530426025 0.5177374482154846 -0.2815103232860565 -0.3262083530426025 0.5177374482154846 -0.2815103232860565 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2283414453268051 0.5405888557434082 -0.2530822157859802 -0.2283414453268051 0.511985182762146 -0.2652736306190491 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.2288918197154999 0.5177167654037476 -0.2818911969661713 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5463207960128784 -0.2696995139122009 -0.2288918197154999 0.5177167654037476 -0.2818911969661713 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3178279399871826 0.4917819201946259 -0.2738848626613617 -0.3185927271842957 0.4971514344215393 -0.2902846336364746 -0.2423934191465378 0.4917819201946259 -0.2738848626613617 -0.2425051629543304 0.4977369606494904 -0.2904066741466522 -0.2425051629543304 0.4977369606494904 -0.2904066741466522</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1277\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1275\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1278\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"246\">4.719033471891902e-017 -0.3920905752870032 0.9199266170576362 -2.884976234942127e-006 -0.3920858289120519 0.9199286400357509 3.370173609169518e-018 -0.3920945522236592 0.9199249219999034 -3.370173609169518e-018 0.3920945522236592 -0.9199249219999034 2.884976234942127e-006 0.3920858289120519 -0.9199286400357509 -4.719033471891902e-017 0.3920905752870032 -0.9199266170576362 -1.383915055981403e-006 -0.3920969058693643 0.9199239188138092 1.383915055981403e-006 0.3920969058693643 -0.9199239188138092 -0.9706832903972148 0.2078131408484302 0.1207793369510993 -0.9650271046384095 0.2288071805736214 0.1279451500884601 -0.9529537582915173 0.2700616675338173 0.1376438530662601 0.9529537582915173 -0.2700616675338173 -0.1376438530662601 0.9650271046384095 -0.2288071805736214 -0.1279451500884601 0.9706832903972148 -0.2078131408484302 -0.1207793369510993 -4.719033471891901e-017 -0.3920905752870033 0.9199266170576362 -4.719033471891901e-017 -0.3920905752870033 0.9199266170576362 4.719033471891901e-017 0.3920905752870033 -0.9199266170576362 4.719033471891901e-017 0.3920905752870033 -0.9199266170576362 0.95563218680553 0.2865661400237065 0.06816869467133878 0.9464256864674265 0.3144455718013523 0.07350103651773379 0.4461113649611553 0.8529273245609877 0.2711081501352002 -0.4461113649611553 -0.8529273245609877 -0.2711081501352002 -0.9464256864674265 -0.3144455718013523 -0.07350103651773379 -0.95563218680553 -0.2865661400237065 -0.06816869467133878 -1.061068912738696e-005 -0.3920686822882367 0.9199359479095156 1.061068912738696e-005 0.3920686822882367 -0.9199359479095156 -0.9617597641238146 0.2423166136760486 0.1276746445034306 0.9617597641238146 -0.2423166136760486 -0.1276746445034306 -0.993909052903077 0.07939780418357825 0.07642501716149437 0.993909052903077 -0.07939780418357825 -0.07642501716149437 0 -0.3920945895234322 0.919924906101825 0 -0.3920898773552489 0.9199269145293805 0 -0.3920898773552489 0.9199269145293805 -0 0.3920898773552489 -0.9199269145293805 -0 0.3920898773552489 -0.9199269145293805 -0 0.3920945895234322 -0.919924906101825 0.9995077430572552 0.01230109785848254 -0.02886095216842587 -0.9995077430572552 -0.01230109785848254 0.02886095216842587 0.4723017897819827 0.83903742859678 0.2700874169272593 -0.4723017897819827 -0.83903742859678 -0.2700874169272593 -0.4554410407912898 0.8379186725669763 0.3007752591662806 -0.494612554153276 0.8179656278243028 0.2937527071738518 0.494612554153276 -0.8179656278243028 -0.2937527071738518 0.4554410407912898 -0.8379186725669763 -0.3007752591662806 -0.9966295060997636 0.04754817778887997 0.06684907149914918 0.9966295060997636 -0.04754817778887997 -0.06684907149914918 -9.303577740844134e-018 -0.3920932922423561 0.9199254590338015 0 -0.392089877355249 0.9199269145293805 -0 0.392089877355249 -0.9199269145293805 9.303577740844134e-018 0.3920932922423561 -0.9199254590338015 0.999507737305549 0.01230113833683166 -0.0288611341073107 0.999507737305549 0.01230113833683166 -0.0288611341073107 -0.999507737305549 -0.01230113833683166 0.0288611341073107 -0.999507737305549 -0.01230113833683166 0.0288611341073107 -0.9439128184700081 -0.3237861883456118 -0.06473866977800677 0.9439128184700081 0.3237861883456118 0.06473866977800677 0.963462018835475 -0.2417599248694221 -0.1152956069787658 0.9995077372826678 0.0123011480951978 -0.02886113074051997 0.9995077372826678 0.0123011480951978 -0.02886113074051997 -0.9995077372826678 -0.0123011480951978 0.02886113074051997 -0.9995077372826678 -0.0123011480951978 0.02886113074051997 -0.963462018835475 0.2417599248694221 0.1152956069787658 0 -0.392098647750297 0.9199231763752823 -0 0.392098647750297 -0.9199231763752823 -0.9443667124121585 -0.3230491775558667 -0.06173120255049157 0.9443667124121585 0.3230491775558667 0.06173120255049157 0.9563417668586146 -0.2662410739890978 -0.1205243356458564 0.9995077430203615 0.01230117529490369 -0.02886092044109709 -0.9995077430203615 -0.01230117529490369 0.02886092044109709 -0.9563417668586146 0.2662410739890978 0.1205243356458564 -3.14513905962739e-017 -0.3920986477502967 0.9199231763752823 -3.14513905962739e-017 -0.3920986477502967 0.9199231763752823 3.14513905962739e-017 0.3920986477502967 -0.9199231763752823 3.14513905962739e-017 0.3920986477502967 -0.9199231763752823 0.4937060730407563 -0.8168181655729783 -0.2984332384850423 0.0009918824747248147 -0.9489850171414499 -0.3153196051789331 -6.163859535989389e-018 -0.9503574393807658 -0.3111603082233241 6.163859535989389e-018 0.9503574393807658 0.3111603082233241 -0.0009918824747248147 0.9489850171414499 0.3153196051789331 -0.4937060730407563 0.8168181655729783 0.2984332384850423 0.478545962683365 -0.8250059356649211 -0.3005976841512581 -0.478545962683365 0.8250059356649211 0.3005976841512581</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1278\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1276\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1274\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1275\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"56\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 8 9 10 11 12 13 14 15 2 3 16 17 18 19 20 21 22 23 1 24 6 7 25 4 10 9 26 27 12 11 8 28 9 12 29 13 30 31 32 33 34 35 36 19 18 23 22 37 18 20 38 39 21 23 40 41 20 21 42 43 10 26 40 43 27 11 28 44 9 12 45 29 46 30 47 48 35 49 50 51 18 23 52 53 41 38 20 21 39 42 40 26 41 42 27 43 28 54 44 45 55 29 56 57 58 59 60 61 62 30 46 49 35 63 54 64 44 45 65 55 66 56 67 68 61 69 70 71 46 49 72 73 74 75 76 77 78 79 74 56 66 69 61 79 80 75 74 79 78 81 80 74 66 69 79 81</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1276\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1279\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1280\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1284\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">-0.04600401967763901 0.08707708120346069 -0.01083299890160561 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04600401967763901 0.08707708120346069 -0.01083299890160561 -0.0460008941590786 -0.02191586047410965 -0.01119139418005943 -0.0460008941590786 -0.02191586047410965 -0.01119139418005943 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.04103969037532806 0.08707645535469055 -0.01081464067101479 -0.04598793759942055 0.08710828423500061 -0.01747642457485199 0.04103180021047592 -0.02191830426454544 -0.01120293512940407 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 -0.04598487168550491 -0.0219339057803154 -0.01720971055328846 0.04103180021047592 -0.02191830426454544 -0.01120293512940407 -0.03807717561721802 0.08011185377836227 -0.004252579063177109 -0.03807717561721802 0.08011185377836227 -0.004252579063177109 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.03397076576948166 0.08009880036115646 -0.004249315708875656 0.03397076576948166 0.08009880036115646 -0.004249315708875656 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.03397389501333237 -0.01386075466871262 -0.004252579063177109 0.03397389501333237 -0.01386075466871262 -0.004252579063177109 -0.03824574872851372 -0.01380164921283722 -0.004176754504442215 -0.03824574872851372 -0.01380164921283722 -0.004176754504442215 0.04096663743257523 -0.02193134278059006 -0.01722836121916771 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.0409746915102005 0.08710509538650513 -0.01745069213211536 0.04096663743257523 -0.02193134278059006 -0.01722836121916771</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1284\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1281\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1285\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">-0.6486441876550205 0.6402461338216394 0.4115162280491523 -0.999996480949607 -2.046947438069042e-005 -0.002652860607489197 -0.9999970690292698 -3.40381449223314e-005 -0.002420903607070828 0.9999970690292698 3.40381449223314e-005 0.002420903607070828 0.999996480949607 2.046947438069042e-005 0.002652860607489197 0.6486441876550205 -0.6402461338216394 -0.4115162280491523 -0.6446719316482925 -0.644822687491583 0.4106114979405608 0.6446719316482925 0.644822687491583 -0.4106114979405608 7.611822237619043e-006 0.9999890564764319 0.004678340457441075 0.6505553393427764 0.6452539138369123 0.4005310688707574 -0.6505553393427764 -0.6452539138369123 -0.4005310688707574 -7.611822237619043e-006 -0.9999890564764319 -0.004678340457441075 0.646379155313016 -0.6486622084704848 0.4017851750363935 -2.514981772618891e-005 -0.9999956140211347 0.002961639069878762 2.514981772618891e-005 0.9999956140211347 -0.002961639069878762 -0.646379155313016 0.6486622084704848 -0.4017851750363935 -0.2617607029099485 0.2921712109796223 0.9198463555870572 0.2617607029099485 -0.2921712109796223 -0.9198463555870572 3.539189288607463e-005 0.9999906878303608 0.004315437402608491 -3.539189288607463e-005 -0.9999906878303608 -0.004315437402608491 0.2865456530664451 0.2878643484044356 0.9137974095095774 -0.2865456530664451 -0.2878643484044356 -0.9137974095095774 2.99402056733925e-005 -0.9999976589943478 0.002163587162167933 -2.99402056733925e-005 0.9999976589943478 -0.002163587162167933 0.3011043870364404 -0.2680404608962498 0.9151450483010523 -0.3011043870364404 0.2680404608962498 -0.9151450483010523 -0.2822290812437018 -0.2697570257358308 0.9206399365476681 0.2822290812437018 0.2697570257358308 -0.9206399365476681 0.9999419530695684 -3.618336592114948e-005 -0.01077446899763445 0.9999520259284223 -9.383437398849214e-005 -0.009794745364441736 -0.9999520259284223 9.383437398849214e-005 0.009794745364441736 -0.9999419530695684 3.618336592114948e-005 0.01077446899763445</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1285\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1283\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1286\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"108\">-0.8707864704909432 -0.08434327720870816 0.2193234052329562 -0.1345068892009654 -0.8710984953321045 -0.1366050456523515 0.219149440263566 -0.08707526051738947 0.2193298965176322 -0.1344195170941046 -0.8707799769185171 -0.08425587433581898 0.460045595066703 -0.08843597314605903 0.4598847762189375 -0.1406981648935765 -0.41039150548504 -0.08829155347246408 0.4103240692412902 -0.08864631410412539 -0.4598426450664129 -0.1358998265072047 -0.460002874797282 -0.08855552489452194 0.2173279417038078 -0.3349111044485853 -0.8725929847974866 -0.3305062472124367 -0.8026261008891247 -0.2496295959706924 0.4599102052639029 -0.140437032640179 -0.4097160864162608 -0.1402346022057112 -0.4103660852034731 -0.08803051127773137 -0.3398813958454692 -0.4817281392132452 0.4598513028877966 -0.5572988052567657 -0.4105857758064011 -0.5570880807014496 0.4096598078376315 -0.1359027548422077 -0.4598552837208138 -0.1357560359272202 0.410311439520114 -0.0885026253266744 -0.4600364788878897 -0.1880195805409327 0.3397215291036052 -0.1044438552799327 0.4102904548644768 -0.188158587445632 0.139042925418609 -0.244706074045336 0.220392977764265 -0.3268400886053832 -0.8000932453864994 -0.2455938994646215 0.3808784947774433 -0.4810168158123215 0.4601562152297449 -0.556389830578105 -0.3396009300866689 -0.4809794369128 -0.2192749842084334 -0.1323665538265052 0.870803060896964 -0.08190953177439291 0.8710894002196447 -0.1341156409114885 -0.2175838531507747 -0.2966763144834158 0.8023045473003625 -0.2164605455912662 0.8723557892252097 -0.292197015768231 -0.219299554992477 -0.1320367727938727 -0.2191691477657872 -0.08463398247406859 0.8707784504735122 -0.08157922078266909 -0.1386068791570084 -0.2139009042944786 0.8009886710783843 -0.2138643169869433 -0.2191822364392242 -0.2918252702643436 -0.4600956096947584 -0.1878844921633072 -0.3825120598021665 -0.1035254300397508 0.3396840872636271 -0.1044373070507742 0.1231824674503541 0.3047815613493842 0.8674396054230038 -0.1457932893168431 -0.3167144351205317 -0.145793289316843 -0.3807736822210102 0.6302120878700486 0.3397057323850419 0.6301094009879676 0.3397370233452011 -0.1090390990261831</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"54\" source=\"#ID1286\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1282\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1280\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1281\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"18\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 1 4 0 5 0 6 8 7 9 8 12 9 13 10 6 11 6 12 0 13 16 14 8 15 18 16 9 17 20 18 0 19 9 20 22 21 13 22 12 23 6 24 24 25 12 26 26 27 6 28 16 29 16 30 0 31 20 32 28 33 9 34 29 35 12 36 20 37 9 38 28 39 12 40 9 41 24 42 20 43 12 44 6 45 26 46 24 47 26 48 16 49 24 50 16 51 20 52 24 53</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1282\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1283\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"18\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 5 4 7 10 11 5 7 14 15 17 5 7 10 19 11 10 5 21 15 14 23 15 25 7 17 7 27 21 5 17 30 10 31 10 21 15 10 15 31 15 21 25 25 27 7 25 17 27 25 21 17</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1282\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1287\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1288\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1292\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"270\">0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03052753955125809 0.03227363899350166 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.007473953068256378 0.03052753955125809 0.03227363899350166 0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.004581844434142113 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03819084912538528 -0.00840609148144722 0.007473953068256378 0.03819084912538528 -0.00840609148144722 -0.002400107681751251 0.03819084912538528 -0.00840609148144722 0.004581844434142113 0.04505188763141632 -0.007113490253686905 0.004581844434142113 0.03738900274038315 0.03356627002358437 0.004581844434142113 0.03738900274038315 0.03356627002358437 0.004581844434142113 0.0236658900976181 0.03098114207386971 0.004581844434142113 0.0236658900976181 0.03098114207386971 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.007473953068256378 0.0236976221203804 0.06852835416793823 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 -0.002400107681751251 0.04789453744888306 -0.006578162312507629 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.03132951259613037 -0.009698696434497833 0.004581844434142113 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 0.004581844434142113 0.03055736422538757 0.06982077658176422 0.004581844434142113 0.03055736422538757 0.06982077658176422 -0.002400107681751251 0.04023017734289169 0.03410175070166588 -0.002400107681751251 0.04023017734289169 0.03410175070166588 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.002400107681751251 0.0208236575126648 0.03044562414288521 -0.002400107681751251 0.0208236575126648 0.03044562414288521 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.009382165037095547 0.04505188763141632 -0.007113490253686905 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.002400107681751251 0.0284879133105278 -0.01023420691490173 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.002400107681751251 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.03055736422538757 0.06982077658176422 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.007473953068256378 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.03055736422538757 0.06982077658176422 -0.002400107681751251 0.0236976221203804 0.06852835416793823 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 0.004581844434142113 0.01683542132377625 0.06723560392856598 0.004581844434142113 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.03738900274038315 0.03356627002358437 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.01227427553385496 0.03819084912538528 -0.00840609148144722 -0.009382165037095547 0.03738900274038315 0.03356627002358437 -0.009382165037095547 0.0236658900976181 0.03098114207386971 -0.009382165037095547 0.0236658900976181 0.03098114207386971 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.009382165037095547 0.03132951259613037 -0.009698696434497833 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.03340088576078415 0.07035620510578156 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.002400107681751251 0.01399330049753189 0.06670019030570984 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.01227427553385496 0.03052753955125809 0.03227363899350166 -0.01227427553385496 0.03052753955125809 0.03227363899350166 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.009382165037095547 0.01683542132377625 0.06723560392856598 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.009382165037095547 0.03055736422538757 0.06982077658176422 -0.01227427553385496 0.0236976221203804 0.06852835416793823 -0.01227427553385496 0.0236976221203804 0.06852835416793823</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"90\" source=\"#ID1292\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1289\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1293\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"270\">0.9999999999843209 5.59463077948367e-006 -2.416152423186181e-007 0.9999999999777997 6.557605099620334e-006 -1.182487493608621e-006 0.7071262376961327 0.6948662526521028 0.1308945181699234 -0.7071262376961327 -0.6948662526521028 -0.1308945181699234 -0.9999999999777997 -6.557605099620334e-006 1.182487493608621e-006 -0.9999999999843209 -5.59463077948367e-006 2.416152423186181e-007 1.092972036851802e-005 0.1851295783395137 -0.9827141187061349 2.740400571134737e-011 0.1851357863769715 -0.9827129492392885 0 0.185136694083701 -0.9827127782336801 -0 -0.185136694083701 0.9827127782336801 -2.740400571134737e-011 -0.1851357863769715 0.9827129492392885 -1.092972036851802e-005 -0.1851295783395137 0.9827141187061349 0.7070687980160841 0.6949183363800148 0.1309283034142069 -0.7070687980160841 -0.6949183363800148 -0.1309283034142069 0.7071193471183617 -0.6948704469520933 -0.1309094759117928 -0.7071193471183617 0.6948704469520933 0.1309094759117928 1.152910625477662e-010 0.1851188374083177 -0.9827161421471579 -1.152910625477662e-010 -0.1851188374083177 0.9827161421471579 9.082784110290093e-006 0.1851419944086071 -0.9827117796301753 -9.082784110290093e-006 -0.1851419944086071 0.9827117796301753 0.9999999981982459 5.683518537357934e-005 1.932019074476484e-005 -0.9999999981982459 -5.683518537357934e-005 -1.932019074476484e-005 -7.322717337165324e-006 0.9827132657669674 0.1851341060744877 7.322717337165324e-006 -0.9827132657669674 -0.1851341060744877 0.7071207355928849 -0.6948684197189324 -0.1309127364769786 -0.7071207355928849 0.6948684197189324 0.1309127364769786 0.7070877969633483 -0.6949008947275105 -0.1309182718050604 -0.7070877969633483 0.6949008947275105 0.1309182718050604 -1.092945993357549e-005 0.1851295784335574 -0.9827141186884213 1.092945993357549e-005 -0.1851295784335574 0.9827141186884213 9.582577601239217e-011 0.1851509204028663 -0.9827100979810738 -9.582577601239217e-011 -0.1851509204028663 0.9827100979810738 0.707133719216717 0.6948560980324883 0.1309080065305341 -0.707133719216717 -0.6948560980324883 -0.1309080065305341 6.699664853351547e-006 0.9827125128654742 0.1851381025416967 -6.699664853351547e-006 -0.9827125128654742 -0.1851381025416967 3.679930986933653e-006 -0.9827113486993524 -0.185144281909969 -3.679930986933653e-006 0.9827113486993524 0.185144281909969 9.809428192896419e-007 -0.982711713156937 -0.1851423474605306 -9.809428192896419e-007 0.982711713156937 0.1851423474605306 2.07520584667854e-018 0.1851366940837009 -0.9827127782336801 -2.07520584667854e-018 -0.1851366940837009 0.9827127782336801 -0.7071163400283342 0.6948735133440726 0.1309094424317747 0.7071163400283342 -0.6948735133440726 -0.1309094424317747 -1.718584229658197e-006 -0.9827120775996558 -0.1851404130297176 1.718584229658197e-006 0.9827120775996558 0.1851404130297176 -9.08256768208233e-006 0.1851419943304572 -0.9827117796449008 9.08256768208233e-006 -0.1851419943304572 0.9827117796449008 -2.079226534932906e-011 -0.185132285854762 0.9827136087050951 -1.544303238000122e-005 -0.1851341913731198 0.9827132496034303 -2.077496026233396e-018 -0.1851400068869456 0.9827121541173194 2.077496026233396e-018 0.1851400068869456 -0.9827121541173194 1.544303238000122e-005 0.1851341913731198 -0.9827132496034303 2.079226534932906e-011 0.185132285854762 -0.9827136087050951 4.149734441407028e-018 -0.1851306440014455 0.9827139180105317 -4.149734441407028e-018 0.1851306440014455 -0.9827139180105317 5.306861256704692e-007 -0.1851301225601347 0.9827140162430716 5.306861256704692e-007 -0.1851301225601347 0.9827140162430716 -5.306861256704692e-007 0.1851301225601347 -0.9827140162430716 -5.306861256704692e-007 0.1851301225601347 -0.9827140162430716 -0.7070712434321569 0.6949188944884924 0.1309121338692294 -0.999999999992516 3.673648708004297e-006 -1.21340366347125e-006 0.999999999992516 -3.673648708004297e-006 1.21340366347125e-006 0.7070712434321569 -0.6949188944884924 -0.1309121338692294 -0.7071171656275636 -0.6948719811382966 -0.1309131158584951 0.7071171656275636 0.6948719811382966 0.1309131158584951 -0.7070833248779243 -0.6949067594280631 -0.1309112958486298 0.7070833248779243 0.6949067594280631 0.1309112958486298 -1.628881000492389e-010 -0.1851190103732217 0.9827161095649339 1.628881000492389e-010 0.1851190103732217 -0.9827161095649339 2.072275978801209e-005 0.9827117597734726 0.1851420988686585 -2.072275978801209e-005 -0.9827117597734726 -0.1851420988686585 -5.306781267168944e-007 -0.1851301225601347 0.9827140162430716 -5.306781267168944e-007 -0.1851301225601347 0.9827140162430716 5.306781267168944e-007 0.1851301225601347 -0.9827140162430716 5.306781267168944e-007 0.1851301225601347 -0.9827140162430716 -0.7071208444863583 -0.6948680619418981 -0.1309140473211718 0.7071208444863583 0.6948680619418981 0.1309140473211718 -0.9999999999686882 6.26256998439923e-006 4.837770999284142e-006 0.9999999999686882 -6.26256998439923e-006 -4.837770999284142e-006 1.544266439301172e-005 -0.185134191506031 0.9827132495783969 -1.544266439301172e-005 0.185134191506031 -0.9827132495783969 0 -0.1851306440014456 0.9827139180105317 2.076191813833597e-018 -0.1851400068869453 0.9827121541173194 -2.076191813833597e-018 0.1851400068869453 -0.9827121541173194 -0 0.1851306440014456 -0.9827139180105317 -0.7071485051525848 0.6948381123294621 0.1309236010614372 0.7071485051525848 -0.6948381123294621 -0.1309236010614372 -0.999999998002033 6.258929378344746e-005 8.860817899594689e-006 0.999999998002033 -6.258929378344746e-005 -8.860817899594689e-006</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"90\" source=\"#ID1293\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1291\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1294\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"288\">0.6510872705125546 -0.1556902917672408 0.5091323331628461 0.4859498357783174 0.7999895375563727 -0.1353021326776318 -0.09163688868284226 0.6758417122097311 0.04800215363502502 0.5659956989651277 -0.1494790613651276 0.5659956989651277 0.5091398819643883 0.4859528635768757 0.6580499782604877 0.5063414818440127 0.7999982320181107 -0.1352987729461431 0.4729394207015694 0.4809972847452069 0.6218529516300301 0.5013837912807035 0.7638095683241661 -0.1402561063415956 0.04811526319480644 0.7213531073913666 0.04809234652788788 0.5659965854206529 -0.09153049147923925 0.6758553449678909 0.04800215363502502 0.565997478692822 -0.09163688868284226 0.4561468467564381 -0.1494790613651276 0.565997478692822 0.5091402582228589 0.485950990043552 0.3826219470117034 1.057795420483731 0.658050352644889 0.506339616781079 0.4163477624840881 -0.2182112697822676 0.2655901037478704 -0.2267597005850756 0.2060534626632536 0.4228385905839157 0.4729395515342789 0.4809964563939979 0.3464105655850779 1.052837079788438 0.621853079895568 0.5013829745340264 0.6148997267801072 -0.1606454691514448 0.4729381179354542 0.4809963655769018 0.763807486615806 -0.1402572512020607 0.04788904511082719 0.7213618711601205 0.1875369044727172 0.6758641087366354 0.04791196143232645 0.5660053491893753 0.04807709459996988 0.5659894528942754 0.0480580547087076 0.4106440228522598 -0.09157541091939606 0.4561494129102339 0.3825954800209273 1.057783002296572 0.5314738466463114 1.078168385901833 0.6580197401679548 0.5063259172927894 0.3464117597140501 1.052838829051515 0.4953354491949941 1.07322932668225 0.6218556839459112 0.5013851596091921 0.4161977624350172 -0.2182497707848508 0.2059276593544127 0.4228050014573921 0.3566741815061503 0.4313559367715039 0.2682872546432723 0.4263529644979455 0.06447197816393442 0.9967390040575556 0.215225639192149 1.005288852695318 0.3278292532561891 -0.2232425473342045 0.1175387683668979 0.417807654733203 0.2682932696752419 0.4263591477695988 0.1876433007419109 0.6758417122097311 0.2454855106770992 0.5659956989651277 0.04800215363502501 0.5659956989651277 -0.1771212857929688 -0.2317991959130784 -0.3278808897344198 -0.223250717587511 -0.2683332221435008 0.4263536238589009 0.3277879802678649 -0.2232535352137678 0.1770382567541186 -0.2318049380274199 0.1175081133203516 0.4177988223024968 0.04792721333757736 0.5659967346302373 0.1875818234430332 0.4561566946461803 0.04794625294185437 0.4106513045881997 -0.04800215363502504 0.5660205297415833 0.09163688868284223 0.6758459780352492 0.1494790613651275 0.5660205297415833 0.3566755498470675 0.4313391620893886 0.205929031215576 0.4227881883703239 0.1528723625255549 1.001728466640204 0.09163688868284226 0.4561372364875994 -0.04800215363502502 0.5660016543558335 0.1494790613651276 0.5660016543558335 -0.04800135138284162 0.4106342368739969 -0.0480007950229394 0.5660012351480476 0.09163785387650254 0.4561365078338856 0.268293561735544 0.4263552504214559 0.1175390617829038 0.417803742594852 0.06447633242992115 0.9967408581486913 0.2454855106770992 0.5659974786928219 0.1876433007419109 0.4561468467564381 0.04800215363502505 0.5659974786928219 -0.6218441919080547 0.501383848524292 -0.6148889278733198 -0.1606447289196409 -0.7637912106097812 -0.140256575350682 -0.1174492761242781 0.417809338909525 -0.1769603112941838 -0.2317904042619489 -0.2681977522331389 0.4263602278180171 -0.2060029524054107 0.4228198476894341 -0.2655432373483784 -0.2267833374526798 -0.3567594013726532 0.4313713619072311 -0.2655036338905208 -0.226783065550902 -0.4162553089038189 -0.218231682781948 -0.3567309898836858 0.431370673836562 -0.04808123348330946 0.5659837339676254 -0.04811361390934024 0.7213334608495877 0.09153491548227659 0.6758271926694005 0.3568779477726087 0.4314031715482364 0.1530400304974734 1.001784796028239 0.3038042615818714 1.010334821786139 -0.04800295587472177 0.4106340241257506 -0.1876442659206286 0.4561362950856394 -0.04800351222623805 0.5660010223998012 -0.1529369738513216 1.001757681771448 -0.2059970122914718 0.4228204135917049 -0.3036925848774558 1.010307526190229 -0.6580482066325464 0.5063387778905422 -0.6510962043071398 -0.1556894494846782 -0.8000039794399367 -0.1353012352707589 -0.6218541365516803 0.5013845337171072 -0.4729440270315344 0.4809959098166953 -0.6149001735083197 -0.1606440521845235 -0.1174492839826364 0.4178092431173398 -0.2681977600723241 0.4263601322350106 -0.2151605257598007 1.005293849772534 -0.2060029338035077 0.4228201003191478 -0.3567593828654816 0.4313716135034493 -0.3036964347252453 1.010307426110565 -0.6580482484236974 0.5063393173290812 -0.5091347038764172 0.4859528069456206 -0.6510971306454888 -0.1556889157940269 -0.04792307364234808 0.5659961173990309 -0.1875413277420207 0.6758395761008507 -0.04789069370438232 0.7213458442810562 -0.1876433007419109 0.4561372364875994 -0.2454855106770992 0.5660016543558336 -0.04800215363502502 0.5660016543558336 -0.4953053611168168 1.073218739524393 -0.4729455980262873 0.4809882274780117 -0.6218557012413173 0.5013768798761702 -0.06457727243628572 0.9967267806838426 -0.117669046741589 0.4177884940441474 -0.2153434451407594 1.005276892152473 -0.3826043543167069 1.057794075527375 -0.5091348448501433 0.4859536581559255 -0.5315280563267647 1.078184581926353 -0.5315295409942268 1.078183713276601 -0.5091347033733921 0.4859528275585371 -0.6580482481193694 0.5063393370438158 -0.2454855106770992 0.5660205297415832 -0.1876433007419109 0.675845978035249 -0.04800215363502502 0.5660205297415832 -0.3463907463326202 1.052831956001588 -0.4729045888168348 0.4809869137284013 -0.4952691330856551 1.073217314052622</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"144\" source=\"#ID1294\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1290\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1288\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1289\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 1 6 12 7 2 8 14 9 1 10 0 11 16 12 7 13 6 14 7 15 18 16 8 17 1 18 20 19 12 20 22 21 2 22 12 23 14 24 24 25 1 26 26 27 14 28 0 29 16 30 28 31 7 32 7 33 30 34 18 35 20 36 32 37 12 38 24 39 20 40 1 41 22 42 12 43 34 44 14 45 36 46 24 47 26 48 38 49 14 50 28 51 40 52 7 53 42 54 22 55 34 56 26 57 44 58 38 59 7 60 46 61 30 62 48 63 49 64 50 65 34 66 12 67 32 68 54 69 48 70 50 71 56 72 48 73 57 74 14 75 38 76 36 77 40 78 46 79 7 80 60 81 61 82 42 83 60 84 42 85 34 86 38 87 44 88 64 89 44 90 66 91 64 92 48 93 68 94 49 95 34 96 32 97 70 98 72 99 73 100 48 101 36 102 38 103 76 104 78 105 66 106 61 107 60 108 78 109 61 110 60 111 34 112 70 113 38 114 64 115 76 116 78 117 64 118 66 119 48 120 80 121 68 122 82 123 83 124 48 125 86 126 78 127 60 128 86 129 60 130 70 131 76 132 64 133 88 134 88 135 64 136 78 137 83 138 80 139 48 140 88 141 78 142 86 143</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1290\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1291\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 9 10 11 3 13 4 5 4 15 11 10 17 9 19 10 13 21 4 13 3 23 4 25 15 5 15 27 10 29 17 19 31 10 13 33 21 4 21 25 35 13 23 25 37 15 15 39 27 10 41 29 35 23 43 39 45 27 31 47 10 51 52 53 33 13 35 51 53 55 58 53 59 37 39 15 10 47 41 43 62 63 35 43 63 65 45 39 65 67 45 52 69 53 71 33 35 53 74 75 77 39 37 62 67 79 62 79 63 71 35 63 77 65 39 67 65 79 69 81 53 53 84 85 63 79 87 71 63 87 89 65 77 79 65 89 53 81 84 87 79 89</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1290\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1295\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1296\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1300\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"396\">0.00151330791413784 0.02864761650562286 0.06481364369392395 0.003007436171174049 0.02510105818510056 0.0641457736492157 0.0124336164444685 0.02437891811132431 0.06798277795314789 0.0124336164444685 0.02437891811132431 0.06798277795314789 0.003007436171174049 0.02510105818510056 0.0641457736492157 0.00151330791413784 0.02864761650562286 0.06481364369392395 -0.002093736082315445 0.02519572526216507 0.06365212798118591 -0.002093736082315445 0.02519572526216507 0.06365212798118591 0.008178489282727242 0.03447502106428146 0.06988455355167389 0.008178489282727242 0.03447502106428146 0.06988455355167389 0.008178489282727242 0.01428460329771042 0.0660809725522995 0.008178489282727242 0.01428460329771042 0.0660809725522995 -0.002093736082315445 0.03011453151702881 0.06509023904800415 -0.002093736082315445 0.03011453151702881 0.06509023904800415 0.00151330791413784 0.02155684679746628 0.06347811222076416 0.00151330791413784 0.02155684679746628 0.06347811222076416 0.01964792050421238 0.02304359525442123 0.07507239282131195 0.01964792050421238 0.02304359525442123 0.07507239282131195 0.0132798757404089 0.007935501635074616 0.0722261369228363 0.0132798757404089 0.007935501635074616 0.0722261369228363 -0.005700994282960892 0.02864761650562286 0.06481364369392395 -0.005700994282960892 0.02864761650562286 0.06481364369392395 -0.002093736082315445 0.02008949965238571 0.06320127844810486 -0.002093736082315445 0.02008949965238571 0.06320127844810486 0.0132798757404089 0.03815094381570816 0.07791852951049805 0.0132798757404089 0.03815094381570816 0.07791852951049805 -0.002093736082315445 0.03865481913089752 0.07067219913005829 -0.002093736082315445 0.03865481913089752 0.07067219913005829 -0.002093736082315445 0.001676708459854126 0.07104742527008057 -0.002093736082315445 0.001676708459854126 0.07104742527008057 -0.002093736082315445 0.01010248810052872 0.06529328227043152 -0.002093736082315445 0.01010248810052872 0.06529328227043152 -0.007195173762738705 0.02510105818510056 0.0641457736492157 -0.007195173762738705 0.02510105818510056 0.0641457736492157 -0.005700994282960892 0.02155684679746628 0.06347811222076416 -0.005700994282960892 0.02155684679746628 0.06347811222076416 0.02355220727622509 0.02117396146059036 0.08431173861026764 0.02355220727622509 0.02117396146059036 0.08431173861026764 0.01604082249104977 0.007562488317489624 0.08174745738506317 0.01604082249104977 0.007562488317489624 0.08174745738506317 -0.002093736082315445 0.001921959221363068 0.08068540692329407 -0.002093736082315445 0.001921959221363068 0.08068540692329407 -0.01236628275364637 0.03447502106428146 0.06988455355167389 -0.01236628275364637 0.03447502106428146 0.06988455355167389 -0.01236628275364637 0.01428460329771042 0.0660809725522995 -0.01236628275364637 0.01428460329771042 0.0660809725522995 0.01604076288640499 0.03478480130434036 0.0868762880563736 0.01604076288640499 0.03478480130434036 0.0868762880563736 -0.002093736082315445 0.04440972954034805 0.07909753918647766 -0.002093736082315445 0.04440972954034805 0.07909753918647766 -0.020228561013937 0.007562488317489624 0.08174745738506317 -0.020228561013937 0.007562488317489624 0.08174745738506317 -0.01746771670877934 0.007935501635074616 0.0722261369228363 -0.01746771670877934 0.007935501635074616 0.0722261369228363 -0.01662124134600163 0.02437891811132431 0.06798277795314789 -0.01662124134600163 0.02437891811132431 0.06798277795314789 0.02355220727622509 0.01847297698259354 0.0950017124414444 0.02355220727622509 0.01847297698259354 0.0950017124414444 0.01604082249104977 0.0006505176424980164 0.09164398908615112 0.01604082249104977 0.0006505176424980164 0.09164398908615112 -0.002093736082315445 -0.006729543209075928 0.0902535617351532 -0.002093736082315445 -0.006729543209075928 0.0902535617351532 -0.020228561013937 0.0006505176424980164 0.09164398908615112 -0.020228561013937 0.0006505176424980164 0.09164398908615112 -0.01746771670877934 0.03815094381570816 0.07791852951049805 -0.01746771670877934 0.03815094381570816 0.07791852951049805 -0.02383571118116379 0.02304359525442123 0.07507239282131195 -0.02383571118116379 0.02304359525442123 0.07507239282131195 0.01604076288640499 0.03629373759031296 0.0983588844537735 0.01604076288640499 0.03629373759031296 0.0983588844537735 -0.002093736082315445 0.04042350500822067 0.08793878555297852 -0.002093736082315445 0.04042350500822067 0.08793878555297852 -0.02773984149098396 0.01847297698259354 0.0950017124414444 -0.02773984149098396 0.01847297698259354 0.0950017124414444 -0.02773984149098396 0.02117396146059036 0.08431173861026764 -0.02773984149098396 0.02117396146059036 0.08431173861026764 0.01964792050421238 0.01672781258821487 0.1042646914720535 0.01964792050421238 0.01672781258821487 0.1042646914720535 0.0132798757404089 0.001620359718799591 0.1014187186956406 0.0132798757404089 0.001620359718799591 0.1014187186956406 -0.002093736082315445 -0.004638850688934326 0.1002393662929535 -0.002093736082315445 -0.004638850688934326 0.1002393662929535 -0.01746771670877934 0.001620359718799591 0.1014187186956406 -0.01746771670877934 0.001620359718799591 0.1014187186956406 -0.02383571118116379 0.01672781258821487 0.1042646914720535 -0.02383571118116379 0.01672781258821487 0.1042646914720535 -0.020228561013937 0.03478480130434036 0.0868762880563736 -0.020228561013937 0.03478480130434036 0.0868762880563736 0.0132798757404089 0.03183591365814209 0.1071109622716904 0.0132798757404089 0.03183591365814209 0.1071109622716904 -0.002093736082315445 0.04367602616548538 0.0997496098279953 -0.002093736082315445 0.04367602616548538 0.0997496098279953 -0.01746771670877934 0.03183591365814209 0.1071109622716904 -0.01746771670877934 0.03183591365814209 0.1071109622716904 -0.020228561013937 0.03629373759031296 0.0983588844537735 -0.020228561013937 0.03629373759031296 0.0983588844537735 0.0124336164444685 0.01539282500743866 0.1113545000553131 0.0124336164444685 0.01539282500743866 0.1113545000553131 0.008178489282727242 0.005297861993312836 0.1094527095556259 0.008178489282727242 0.005297861993312836 0.1094527095556259 -0.002093736082315445 0.001115962862968445 0.108664870262146 -0.002093736082315445 0.001115962862968445 0.108664870262146 -0.01236628275364637 0.005297861993312836 0.1094527095556259 -0.01236628275364637 0.005297861993312836 0.1094527095556259 -0.01662124134600163 0.01539282500743866 0.1113545000553131 -0.01662124134600163 0.01539282500743866 0.1113545000553131 -0.01236628275364637 0.02548617869615555 0.113256186246872 -0.01236628275364637 0.02548617869615555 0.113256186246872 0.008178489282727242 0.02548617869615555 0.113256186246872 0.008178489282727242 0.02548617869615555 0.113256186246872 -0.002093736082315445 0.03809449821710587 0.1082897335290909 -0.002093736082315445 0.03809449821710587 0.1082897335290909 -0.002093736082315445 0.02966859936714172 0.1140438467264175 -0.002093736082315445 0.02966859936714172 0.1140438467264175 0.003007436171174049 0.0146685466170311 0.1151914745569229 0.003007436171174049 0.0146685466170311 0.1151914745569229 0.00151330791413784 0.01112633943557739 0.114523395895958 0.00151330791413784 0.01112633943557739 0.114523395895958 -0.002093736082315445 0.009656563401222229 0.1142469793558121 -0.002093736082315445 0.009656563401222229 0.1142469793558121 -0.005700994282960892 0.01112633943557739 0.114523395895958 -0.005700994282960892 0.01112633943557739 0.114523395895958 -0.007195173762738705 0.0146685466170311 0.1151914745569229 -0.007195173762738705 0.0146685466170311 0.1151914745569229 -0.005700994282960892 0.01821445673704147 0.1158591508865356 -0.005700994282960892 0.01821445673704147 0.1158591508865356 -0.002093736082315445 0.01968275755643845 0.116135448217392 -0.002093736082315445 0.01968275755643845 0.116135448217392 0.00151330791413784 0.01821445673704147 0.1158591508865356 0.00151330791413784 0.01821445673704147 0.1158591508865356 -0.002093736082315445 0.01457632333040237 0.1156851947307587 -0.002093736082315445 0.01457632333040237 0.1156851947307587</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"132\" source=\"#ID1300\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1297\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1301\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"396\">0.1956903806374744 0.3702693627518756 -0.9080781210519722 0.2767978448031712 0.1778221379204244 -0.9443316368616107 0.5872577302173264 0.1498232412232817 -0.7954126945739199 -0.5872577302173264 -0.1498232412232817 0.7954126945739199 -0.2767978448031712 -0.1778221379204244 0.9443316368616107 -0.1956903806374744 -0.3702693627518756 0.9080781210519722 2.4069769204625e-006 0.1851429709867631 -0.982711595682274 -2.4069769204625e-006 -0.1851429709867631 0.982711595682274 0.41523124678526 0.5579861698652578 -0.7184945691738096 -0.41523124678526 -0.5579861698652578 0.7184945691738096 0.4152520124328477 -0.2582140384559897 -0.8722908210652679 -0.4152520124328477 0.2582140384559897 0.8722908210652679 3.092309193832321e-005 0.4499216971921687 -0.8930680071749748 -3.092309193832321e-005 -0.4499216971921687 0.8930680071749748 0.195734922284424 -0.01445646791097698 -0.980550279554215 -0.195734922284424 0.01445646791097698 0.980550279554215 0.8528754350002218 0.07814618017484649 -0.5162331516836778 -0.8528754350002218 -0.07814618017484649 0.5162331516836778 0.6090890771932528 -0.620433230571093 -0.4940375516567427 -0.6090890771932528 0.620433230571093 0.4940375516567427 -0.1957192350159142 0.370234229083485 -0.9080862275465601 0.1957192350159142 -0.370234229083485 0.9080862275465601 2.257090650783234e-006 -0.0940749441470593 -0.9955651183516993 -2.257090650783234e-006 0.0940749441470593 0.9955651183516993 0.606843164777356 0.753827945089025 -0.2519619069737745 -0.606843164777356 -0.753827945089025 0.2519619069737745 4.52876460394671e-005 0.7269386552422567 -0.6867024024012211 -4.52876460394671e-005 -0.7269386552422567 0.6867024024012211 0.01668560911036096 -0.897510430114174 -0.4406774537968637 -0.01668560911036096 0.897510430114174 0.4406774537968637 7.089180052383154e-006 -0.4272513667247607 -0.9041328827011919 -7.089180052383154e-006 0.4272513667247607 0.9041328827011919 -0.2768174520306065 0.1778350597500305 -0.9443234561181808 0.2768174520306065 -0.1778350597500305 0.9443234561181808 -0.1957398696738184 -0.0144574372588037 -0.9805492776643019 0.1957398696738184 0.0144574372588037 0.9805492776643019 0.9825994497321882 0.04768106420081351 -0.1795127781041752 -0.9825994497321882 -0.04768106420081351 0.1795127781041752 0.6916137433321561 -0.6245883168010983 -0.3627118202508069 -0.6916137433321561 0.6245883168010983 0.3627118202508069 -8.052169911274337e-006 -0.9324818027209991 -0.3612169535464225 8.052169911274337e-006 0.9324818027209991 0.3612169535464225 -0.4152638558557382 0.5579383902303894 -0.7185128271137172 0.4152638558557382 -0.5579383902303894 0.7185128271137172 -0.4152548156556983 -0.2582057259968227 -0.8722919471926848 0.4152548156556983 0.2582057259968227 0.8722919471926848 0.7021791044699796 0.7119894581709351 0.003939124166071239 -0.7021791044699796 -0.7119894581709351 -0.003939124166071239 -0.01649914634204176 0.9972916561361611 -0.07167378022106048 0.01649914634204176 -0.9972916561361611 0.07167378022106048 -0.7034998926438633 -0.6446120515784689 -0.2992711212427118 0.7034998926438633 0.6446120515784689 0.2992711212427118 -0.6053376996549881 -0.6041444851763438 -0.5182429067603512 0.6053376996549881 0.6041444851763438 0.5182429067603512 -0.5872558020230481 0.1498361060737085 -0.7954116948517509 0.5872558020230481 -0.1498361060737085 0.7954116948517509 0.9849598354450867 -0.02379272750458698 0.1711374555083724 -0.9849598354450867 0.02379272750458698 -0.1711374555083724 0.6738930300558093 -0.7322553035040448 -0.09833796079032518 -0.6738930300558093 0.7322553035040448 0.09833796079032518 -0.01089455672182331 -0.9695025713242476 -0.2448388711571495 0.01089455672182331 0.9695025713242476 0.2448388711571495 -0.6732345283280943 -0.7291622953401415 -0.1227909480423722 0.6732345283280943 0.7291622953401415 0.1227909480423722 -0.6102173515399514 0.7601218285598231 -0.2232702166130507 0.6102173515399514 -0.7601218285598231 0.2232702166130507 -0.8531517942983409 0.1190310212392098 -0.5079012028616121 0.8531517942983409 -0.1190310212392098 0.5079012028616121 0.6768015028084661 0.7109748341810475 0.1909306443644764 -0.6768015028084661 -0.7109748341810475 -0.1909306443644764 0.0002619427007181099 0.9976283903600751 0.068829689332344 -0.0002619427007181099 -0.9976283903600751 -0.068829689332344 -0.9851563358757249 -0.05627531599207819 0.1621730023583073 0.9851563358757249 0.05627531599207819 -0.1621730023583073 -0.9822286559208107 0.03686212846388164 -0.184032744295982 0.9822286559208107 -0.03686212846388164 0.184032744295982 0.8451646013890729 -0.0989653286562158 0.5252643718003502 -0.8451646013890729 0.0989653286562158 -0.5252643718003502 0.5976308884055098 -0.6861926602264394 0.4147010420471637 -0.5976308884055098 0.6861926602264394 -0.4147010420471637 -2.769287440755231e-005 -0.9295143678751611 0.3687858987905372 2.769287440755231e-005 0.9295143678751611 -0.3687858987905372 -0.5976089936893609 -0.6862253529501121 0.4146784967056808 0.5976089936893609 0.6862253529501121 -0.4146784967056808 -0.8451601416135406 -0.09895473138994973 0.5252735441304108 0.8451601416135406 0.09895473138994973 -0.5252735441304108 -0.6943501393017593 0.7169794268532971 -0.06179308635070134 0.6943501393017593 -0.7169794268532971 0.06179308635070134 0.5976185875585842 0.4883301075234018 0.6359133037534798 -0.5976185875585842 -0.4883301075234018 -0.6359133037534798 0.01187222206486697 0.9858258610195975 0.1673511938655115 -0.01187222206486697 -0.9858258610195975 -0.1673511938655115 -0.5976220854673472 0.4883263199428125 0.635912925024149 0.5976220854673472 -0.4883263199428125 -0.635912925024149 -0.6763329695767453 0.7043165012944799 0.2156663633203012 0.6763329695767453 -0.7043165012944799 -0.2156663633203012 0.5872548942566114 -0.1498419288211753 0.7954112681743992 -0.5872548942566114 0.1498419288211753 -0.7954112681743992 0.4152537891845273 -0.5579015597107579 0.7185472428728649 -0.4152537891845273 0.5579015597107579 -0.7185472428728649 5.672463972588586e-008 -0.7269265674754418 0.6867151996995324 -5.672463972588586e-008 0.7269265674754418 -0.6867151996995324 -0.4152446317486396 -0.5579093061341975 0.7185465203678847 0.4152446317486396 0.5579093061341975 -0.7185465203678847 -0.5872665062521697 -0.1498228226207654 0.7954062939506557 0.5872665062521697 0.1498228226207654 -0.7954062939506557 -0.4152537205038676 0.2581954684019092 0.8722955048058053 0.4152537205038676 -0.2581954684019092 -0.8722955048058053 0.4152483299874877 0.2582110277020007 0.872293465306074 -0.4152483299874877 -0.2582110277020007 -0.872293465306074 6.775138903465313e-006 0.7315970759914494 0.6817372795695269 -6.775138903465313e-006 -0.7315970759914494 -0.6817372795695269 8.512239439668168e-006 0.4272458985545937 0.9041354666728984 -8.512239439668168e-006 -0.4272458985545937 -0.9041354666728984 0.2767973318869605 -0.1780315720475731 0.9442923257204464 -0.2767973318869605 0.1780315720475731 -0.9442923257204464 0.1957835389452804 -0.3702209790276415 0.9080777679064038 -0.1957835389452804 0.3702209790276415 -0.9080777679064038 -5.137564631330466e-005 -0.4499066475089857 0.8930755880034837 5.137564631330466e-005 0.4499066475089857 -0.8930755880034837 -0.1956889170168902 -0.3703019887117289 0.9080651325278903 0.1956889170168902 0.3703019887117289 -0.9080651325278903 -0.2767603498626814 -0.1779618944664103 0.9443162991613628 0.2767603498626814 0.1779618944664103 -0.9443162991613628 -0.1956928545008283 0.0145078660224017 0.9805579169640077 0.1956928545008283 -0.0145078660224017 -0.9805579169640077 -1.827556367716609e-005 0.09414657368914475 0.9955583470237183 1.827556367716609e-005 -0.09414657368914475 -0.9955583470237183 0.1956948075932166 0.01448265239006214 0.9805578999022968 -0.1956948075932166 -0.01448265239006214 -0.9805578999022968 2.405554025817842e-006 -0.1851566190805033 0.9827090242818015 -2.405554025817842e-006 0.1851566190805033 -0.9827090242818015</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"132\" source=\"#ID1301\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1299\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1302\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"768\">0.2080582420229697 0.3882045639627037 0.171383566938535 0.3776320810910839 0.1046905764235344 0.4383724341029862 0.1010017631055067 0.3294286417634476 0.1202050940286545 0.2920410646281706 0.07309387706344146 0.307930832875431 0.2090662446480763 0.4685215090185798 0.2080315582321686 0.3882634996152287 0.1046564174161391 0.4384218369377809 0.2496123824858481 0.2200480093324486 0.1394726711780237 0.2602934649331121 0.2386395607208875 0.2998444509836821 0.06376238275677403 0.3676674803682631 0.05673238008998306 0.3277340851400835 0.02596570958586805 0.3599869945924319 0.1589088718957364 0.2396154021835559 0.1086236296223543 0.2317627961669785 0.1161818469373493 0.2618915737983167 0.1464213323988043 0.533592116390885 0.09817371566666291 0.604310598754456 0.2549750272269263 0.5525622137268859 0.103825972067229 0.4724434417343824 0.06509943028128994 0.4685762677249725 0.01727397236375587 0.5394743884514127 0.2649373005417774 0.4105097867300601 0.1571726437905581 0.388986221498794 0.1062425157039879 0.4585337399394807 0.2496140858291876 0.2200245139129967 0.2147949831452184 0.206138284531609 0.1394763887758067 0.2602733806614553 -0.02231501358307491 0.3721826220829955 0.01548370099147176 0.3645021277390662 -0.01528541984169108 0.3322491823064301 0.1247570099462456 0.2206571694598572 0.1033248141235846 0.1840256789465968 0.07674430986559575 0.2065184020678076 0.254964509120884 0.552582383197711 0.09816146859795036 0.6043275260536403 0.2605997383241684 0.6327157898210546 0.2649362945355829 0.4105211844224449 0.1062408657725533 0.4585438208054554 0.2675298292567629 0.4907552629770638 0.1276331686020876 0.5504554024377412 0.1038775357813703 0.4724001927331763 0.01733835202234516 0.5394413787095309 0.1384203174032103 0.2614922151725247 -0.01085229198658636 0.3255561382136697 0.1544275092811839 0.340760731290634 0.1438308082842277 0.005171244455458367 0.0452312589261509 0.06095763251281533 0.1520765339589031 0.08516605074963499 -0.06263340927464314 0.3422366332281409 -0.03472552967862196 0.3207385988470679 -0.08183952982352577 0.3048486639301516 -0.08732518098070186 0.5580348656151252 -0.02485981102038577 0.4761082008774138 -0.06358822450061247 0.4799761398409971 0.10631886024611 -0.003338514110620998 0.04523073783769346 0.06095640886336243 0.1438299019628124 0.005169599450056709 -0.08674402536572262 0.2344196707044798 -0.03872978573575731 0.2202807567916615 -0.06531287802638468 0.1977878005772124 0.1221074455191948 0.6280235097575183 0.08829727228098044 0.703753494718967 0.285842149394967 0.6513517727745747 0.1489079664835728 0.6196372241314372 0.03812327434693984 0.6122692549671323 0.002326090532160327 0.6874224568079909 0.1200074108369201 0.5674038945552706 0.1259503105362105 0.6453054766934032 0.2837585702440268 0.590691403734369 0.1528789556923448 0.5684602092775959 -0.01310889317377053 0.5591850992389119 -0.01218794922812959 0.6350249708269947 0.02798624290204783 0.2513443940562198 -0.01085177440272786 0.3255667206167832 0.1384221967330916 0.2615047611748251 -0.08153584686102669 0.2801217377832773 -0.07397905136523253 0.2499925822418439 -0.1242658053286974 0.2578452867549194 -0.1819365595642197 0.4902346623673546 -0.1442088430693662 0.3994057130453525 -0.1808846373144836 0.4099762411847058 0.02288594704291429 0.5470312648394177 -0.02492679807781306 0.4761272149880436 -0.08741198483382286 0.5580445273350287 -0.1394450479261169 0.01613795932540049 -0.1852058514391318 0.1046420371559939 -0.07835760972878399 0.08043328459741525 -0.1769541244099746 0.02464457027635999 -0.185204818429171 0.1046396117936526 -0.139441008528674 0.0161364959594385 0.06741342792232763 0.6808947856999051 0.2228588296250281 0.7011366573705343 0.2657729754807748 0.630433478214673 0.1352566951232709 0.6206283495429738 0.2902567707110412 0.6429042249500787 0.2911088085944585 0.5626421563380348 0.1489626486947834 0.6196133995722869 0.002387909799050052 0.6874081822758681 0.1682023498449169 0.6984386902146473 0.1506261487647364 0.5603116479083441 -0.01411168737255509 0.6273789999156675 0.1757988307631528 0.6357992196468209 -0.02568429657156245 0.6347703883653577 -0.02495908944858601 0.5589292021810814 -0.2156018516536662 0.643127653372318 -0.06514438190551528 0.2633726167132439 -0.1915922019484218 0.352800069700637 -0.02630892620494943 0.3375957727410948 -0.2479516845314106 0.2505007583338688 -0.2369886348386537 0.3302972074025672 -0.2131316044867787 0.2366157045391757 -0.181867065913399 0.4902492869963763 -0.07745886651356443 0.4601475953214236 -0.144161252169029 0.3994147093794894 0.001359886543496893 0.6182124634845919 -0.1094276578114278 0.6255816144805028 -0.1286571737077494 0.7044084431602284 -0.1755853420183451 0.2735265650159313 -0.1915919410095564 0.3527953443888429 -0.06514645085925339 0.2633658527220589 -0.236965033320896 0.3303158736430435 -0.1377995039188114 0.2907638994653895 -0.213122803815267 0.2366320389842904 0.07756392616899793 0.6304498435742529 0.05366712537029805 0.7151253977820606 0.2329941519881805 0.6507637048681906 0.1932670534730516 0.5379296285845305 0.02730019389423506 0.5284229376606484 -0.01129022340284161 0.6006518969316107 0.138284401693455 0.6404778035460549 0.07615862066183092 0.7218970631011209 0.2935508929381908 0.6615742729914216 0.176599968659267 0.4818190296465187 -0.01310071310947299 0.470855685318903 -0.04269214992280118 0.5696259222882558 -0.0261304068675559 0.5251982967325118 -0.2159192031756957 0.5352032708817965 -0.1929730855310471 0.628432874748292 -0.02579307327864677 0.5520117546201454 -0.1917753686403668 0.5613856719066962 -0.2157922616770364 0.6371056923739527 -0.125094583659455 0.551031642965349 -0.233647954502779 0.570000547687834 -0.2392878783191334 0.6501339370444887 0.03707694644989035 0.6933791868335899 0.001287706720952842 0.6182234440958171 -0.1287410399310728 0.7044085138252826 -0.2766006809446024 0.5138713407498793 -0.1153121323528152 0.4816592282457536 -0.1662437506292764 0.4121121695409867 -0.2740092436721249 0.4336369129846999 -0.2766035107276342 0.513871899331205 -0.1662451406294676 0.4121136944166516 0.2556632473040211 0.6941827097584667 0.07613108897525486 0.7581895240206594 0.2695143022305876 0.7846351439976531 0.06590489319615893 0.7285601847238541 0.259285526863961 0.7550914667326976 0.2843435659551222 0.6706239033359103 0.1617965981833127 0.4442247481849591 -0.04080049484237337 0.5107678252204927 0.1490544489404103 0.5198569286160608 0.1773340919812732 0.5423554378049972 -0.04716662747071239 0.6215991558867381 0.1484220901923369 0.6345525160244437 0.01003422637323316 0.5847062943806605 -0.02716728418582717 0.4875414780077202 -0.1854264661766825 0.5988261138125302 -0.07669825523228402 0.7353170697687607 -0.1414713327027521 0.655184667415497 -0.2699311341538568 0.7625046186014222 -0.157344457189635 0.6507872178140571 -0.1484700983558898 0.5730585792750997 -0.3126460023175801 0.6717210882007215 -0.07681739075579377 0.6217440960200278 -0.1250691239449588 0.5510263051573182 -0.2392550393970368 0.6501338608937675 0.005646298457818357 0.4408160893341088 -0.1602739329270165 0.4508488223597982 -0.1441685953371539 0.5260830347811247 -0.2878860286894726 0.6668763501632932 -0.1300129888345546 0.5620410501109798 -0.2934317215176717 0.5867306020968504 0.1015232348939078 0.5866750997084917 0.09720003321684195 0.6668629984245904 0.2942986226919566 0.6157375177931697 0.1373413603375052 0.7237529430955545 -0.05256313650851326 0.7153287971421402 -0.0481843548750184 0.8063700168014226 0.07570508625083916 0.6592520854617144 0.07241333498619998 0.7394768146881223 0.268853543301056 0.6868101313368737 0.1517674658002891 0.6997244517686309 -0.04400127574436411 0.6885804100920228 -0.03638949172855385 0.7686149563678284 0.004998956006142696 0.6862408483747942 -0.1907722065023648 0.6973853942935883 -0.1685891660654876 0.7757317551434142 -0.2543749297989185 0.7544038215594972 -0.09393675393800623 0.6508236897929691 -0.2870849600325312 0.6783810647268174 -0.2927235876658776 0.7568772729065211 -0.1611857191789751 0.6518900510986958 -0.3166207076123774 0.672201774437577 -0.2347778985046108 0.710483796899215 -0.1128779830293311 0.6168726118426419 -0.2767838310329202 0.6394439938315563 0.0841389162801193 0.5829415879532797 0.04743476569016653 0.5101068455946162 -0.105753089981269 0.5915806611126669 -0.03673915749690032 0.7102227954984445 -0.0730018702055297 0.6351987822433595 -0.1920594005484161 0.7310470828487421 0.0972006896596182 0.6668669704030218 0.2606319063263749 0.6915065253920528 0.2942993536290568 0.6157416674978724 0.07241670287206464 0.7395035949661424 0.2361453857394986 0.7628609343992937 0.2688574826135216 0.6868382306077284 0.1650885440251674 0.7423708403751169 -0.0189626455091732 0.8270042884992223 0.1768001133898592 0.8382999474881305 0.1517608075590242 0.6996736720411803 -0.03639401679218882 0.7685677820582493 0.1295796612097496 0.7780205881684124 -0.002604180917756822 0.7663214238895806 0.005010321853939543 0.6862870376575062 -0.1685813223016391 0.7757737164068272 -0.09065528838327473 0.7310249783205859 -0.09394779220725852 0.6508004863863935 -0.2543836567215877 0.754382833644238 -0.08406438233962031 0.6538138320318847 -0.08838826351847956 0.5736264274176743 -0.247495419168689 0.6784533208505356 -0.06783662193725235 0.7199435960856713 -0.09289436582891378 0.6354759784948433 -0.2612011993119516 0.7464705386397327 0.09567019989317839 0.7392873824859151 -0.09422137123556697 0.7479323725353121 -0.1034184211764667 0.8440309126814857 -0.0476654507798161 0.6794313502269357 -0.2031153618598148 0.6996480116237488 -0.2162479199072611 0.7901667433545733 0.1233343970809288 0.5214166957459726 0.2820263719437469 0.4733929648057076 0.1207371656860335 0.4411819771735436 0.2006501146604302 0.5183762525620003 0.005029331790608622 0.5056491440348117 0.01160227546055524 0.5857430621380582 0.08161017703864065 0.5779366673242971 0.08725860645803901 0.6580740760745135 0.2440492058866474 0.6063246612429023 0.1305743452376824 0.6584494751579818 -0.03524161102812632 0.6474158926183059 -0.01600154488583202 0.7262417747470411 -0.004223759032836607 0.6414631458429357 -0.1700431486384346 0.6524965984240604 -0.1342590765612526 0.7276587441820807 -0.2171399658048231 0.6596095700459324 -0.102949530992559 0.5605012715081108 -0.2653882882540545 0.5888895289933324 -0.1116692834863443 0.418030489126575 -0.2729578219881398 0.450242930628122 -0.2220198422858973 0.5197910101150416 -0.2474956980842612 0.678452789270064 -0.08838860081279965 0.5736258410028052 -0.2811633898565886 0.6026880952129459 0.05409249544158197 0.8073395572925669 0.05966025944387264 0.7163385405005769 -0.1416985174983493 0.8183612303317118 0.1233291602950166 0.5213706510168323 0.2310849248397054 0.5428932217507596 0.282019649796565 0.4733438827122014 0.08725861575139056 0.6580743091594025 0.1958017724451708 0.6770442728344743 0.2440492238456599 0.6063249105757141 0.2006513188047662 0.5183804059416854 0.01160334398944389 0.585746980003428 0.1774426994942418 0.5965343702039254 0.1305748135810249 0.658460743190107 -0.01600182655903531 0.7262520392295695 0.09479064695705169 0.7336226615917477 -0.02346344094958563 0.7202787574019434 -0.004224923338314924 0.6414526413781714 -0.1342588794123853 0.7276495107459581 -0.1085966439099987 0.640643569267857 -0.1029476864153791 0.5605059964387001 -0.2171391271351572 0.6596135777394324 -0.1142545077211706 0.4982870351788154 -0.1116541954595357 0.4180514559230356 -0.2220099714195967 0.5198084756169563 -0.007739909084885002 0.3667732939438934 0.00826160109455059 0.2875004536900948 -0.1181799302189235 0.3769340437589404 0.02648622302457283 0.57874511957447 0.03305907657106505 0.4986512882814798 -0.1393565486291509 0.5895325357957912 0.03305971296194421 0.4986526400923563 -0.1625640946810289 0.5113797199135576 -0.1393560029338519 0.5895337811261071 0.1477670252786445 0.3251474826058816 0.2579173242316524 0.284900112650938 0.1587588837187196 0.2453515516988695 0.04489251775895983 0.3788118852243066 0.1941670260061251 0.3147455280013232 0.02888817239001664 0.2995395883191777 0.09340040653540357 0.408957019524095 0.09443325949047135 0.4892189907694559 0.1977978177184108 0.4390597401728739 -0.01700424292782076 0.4916737909751708 0.006765468393145828 0.5697291266390435 0.09329828349014012 0.5026902472052257 -0.1335211427572895 0.4950467490333376 -0.08572101886471382 0.5659605325024991 -0.02321586824066765 0.4840287800018171 -0.1205927518739747 0.387292188398676 -0.2249920317252153 0.4173894234732767 -0.1582728790865721 0.4781123703852491 -0.1604314491502845 0.2148771169737214 -0.2595886569148715 0.2544264682782443 -0.1842723229005086 0.3085603014123665 -0.1038340372901505 0.1056829109646204 -0.05806716518954648 0.01718763258847805 -0.1649164670862111 0.04139669522916714 -0.1181642265434135 0.3769626624200317 0.008282488544084487 0.2875336079700712 -0.1569998946990238 0.3027388807033044 0.1477661879727247 0.3251199328738696 0.1826025400776905 0.3390062713382762 0.2579148488932883 0.2848697887431579 0.09441109444261013 0.4894653628017057 0.1310455411064328 0.500034700779838 0.1977958265194056 0.4393318484204865 0.155341211678657 0.3890139057296106 0.1941814072320926 0.3147915900584225 0.04490407271647314 0.3788538718982092 0.006801692781106001 0.5695807395810987 0.04553908455198724 0.573447099210587 0.09330861190876177 0.5025211808494376 -0.02321802396029496 0.4841270912619529 -0.08576115238161489 0.566040906577534 -0.04702152290862134 0.5621760547641354 -0.120633676237802 0.3872629880546628 -0.1582450040765638 0.4781008164818528 -0.1216129381345534 0.4675259254091417 -0.1494293674300025 0.2946669358965301 -0.1604129358621988 0.2148711223650165 -0.1842665688488493 0.3085522968429815 -0.06623956381366637 0.09719929106545393 -0.05794927563359222 0.0172095069455723 -0.1037623795280825 0.1056899803016136 0.1369209661971957 0.125083638802776 0.1979812565786531 0.06078440868974403 0.09940135812491932 0.1165898096804462 0.06457760427489892 0.2611078435790685 0.1148573908294561 0.2689606230022873 0.1072944986554617 0.23882018376842 0.09944066821653162 0.1166923458920594 0.1980381408147453 0.06090616171214715 0.09119066960290964 0.0367005362591048 0.05839749350901192 0.2935323672363474 0.03914909840766832 0.330895245008053 0.08626643021294608 0.3150174476167217 -0.006831296614083174 0.3289837123361127 0.0002444636612285904 0.3689196089610778 0.03097801309104284 0.3366591568939948 -0.03460728754184527 0.324440008484787 -0.07241863793649281 0.3321154617135932 -0.04168263633880348 0.3643759502252016 -0.09677293437997288 0.2807476421119609 -0.1246418658234179 0.3022329471600883 -0.07752175078445497 0.3181109105842664 -0.141934830421964 0.2205948741971674 -0.1494963004299555 0.2507356913852268 -0.0992150020156706 0.2428828134899558 -0.08010388262469373 0.1847174117292542 -0.1281037157479544 0.1988746742058536 -0.1015066903322446 0.2213608795203222 0.04208799284752866 0.1984597971967464 0.06349184826195159 0.235102886276443 0.09008628595217623 0.2126169133576009</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"384\" source=\"#ID1302\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1298\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1296\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1297\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"128\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 0 3 6 4 1 5 8 6 0 7 2 8 1 9 10 10 2 11 12 12 6 13 0 14 6 15 14 16 1 17 2 18 16 19 8 20 12 21 0 22 8 23 2 24 10 25 18 26 1 27 14 28 10 29 12 30 20 31 6 32 6 33 22 34 14 35 8 36 16 37 24 38 2 39 18 40 16 41 26 42 12 43 8 44 10 45 28 46 18 47 14 48 30 49 10 50 20 51 32 52 6 53 26 54 20 55 12 56 22 57 30 58 14 59 6 60 34 61 22 62 16 63 36 64 24 65 26 66 8 67 24 68 18 69 38 70 16 71 18 72 28 73 40 74 30 75 28 76 10 77 32 78 34 79 6 80 42 81 32 82 20 83 42 84 20 85 26 86 22 87 44 88 30 89 34 90 44 91 22 92 36 93 46 94 24 95 38 96 36 97 16 98 26 99 24 100 48 101 18 102 40 103 38 104 40 105 28 106 50 107 30 108 52 109 28 110 32 111 54 112 34 113 42 114 54 115 32 116 42 117 26 118 48 119 44 120 52 121 30 122 54 123 44 124 34 125 36 126 56 127 46 128 48 129 24 130 46 131 38 132 58 133 36 134 38 135 40 136 60 137 40 138 50 139 62 140 28 141 52 142 50 143 54 144 42 145 64 146 64 147 42 148 48 149 66 150 52 151 44 152 54 153 66 154 44 155 46 156 56 157 68 158 58 159 56 160 36 161 48 162 46 163 70 164 38 165 60 166 58 167 60 168 40 169 62 170 62 171 50 172 72 173 50 174 52 175 74 176 66 177 54 178 64 179 64 180 48 181 70 182 74 183 52 184 66 185 56 186 76 187 68 188 70 189 46 190 68 191 58 192 78 193 56 194 58 195 60 196 80 197 60 198 62 199 82 200 84 201 62 202 72 203 72 204 50 205 74 206 86 207 66 208 64 209 86 210 64 211 70 212 74 213 66 214 86 215 76 216 88 217 68 218 78 219 76 220 56 221 70 222 68 223 90 224 58 225 80 226 78 227 80 228 60 229 82 230 82 231 62 232 84 233 84 234 72 235 92 236 72 237 74 238 94 239 86 240 70 241 90 242 74 243 86 244 94 245 96 246 88 247 76 248 90 249 68 250 88 251 78 252 98 253 76 254 78 255 80 256 100 257 80 258 82 259 102 260 104 261 82 262 84 263 84 264 92 265 106 266 92 267 72 268 94 269 94 270 86 271 90 272 96 273 108 274 88 275 98 276 96 277 76 278 90 279 88 280 110 281 78 282 100 283 98 284 100 285 80 286 102 287 102 288 82 289 104 290 104 291 84 292 106 293 106 294 92 295 112 296 92 297 94 298 110 299 94 300 90 301 110 302 114 303 108 304 96 305 108 306 110 307 88 308 98 309 116 310 96 311 100 312 118 313 98 314 102 315 120 316 100 317 102 318 104 319 122 320 104 321 106 322 124 323 126 324 106 325 112 326 112 327 92 328 110 329 114 330 128 331 108 332 116 333 114 334 96 335 112 336 110 337 108 338 118 339 116 340 98 341 100 342 120 343 118 344 102 345 122 346 120 347 122 348 104 349 124 350 124 351 106 352 126 353 126 354 112 355 128 356 130 357 128 358 114 359 128 360 112 361 108 362 116 363 130 364 114 365 118 366 130 367 116 368 118 369 120 370 130 371 120 372 122 373 130 374 122 375 124 376 130 377 130 378 124 379 126 380 130 381 126 382 128 383</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1298\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1299\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"128\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 4 7 5 3 5 9 3 11 4 5 7 13 4 15 7 9 17 3 9 5 13 19 11 3 11 15 4 7 21 13 15 23 7 25 17 9 17 19 3 9 13 27 19 29 11 11 31 15 7 33 21 13 21 27 15 31 23 23 35 7 25 37 17 25 9 27 17 39 19 41 29 19 11 29 31 7 35 33 21 33 43 27 21 43 31 45 23 23 45 35 25 47 37 17 37 39 49 25 27 39 41 19 51 29 41 29 53 31 35 55 33 33 55 43 49 27 43 31 53 45 35 45 55 47 57 37 47 25 49 37 59 39 61 41 39 63 51 41 51 53 29 65 43 55 49 43 65 45 53 67 45 67 55 69 57 47 37 57 59 71 47 49 59 61 39 63 41 61 73 51 63 75 53 51 65 55 67 71 49 65 67 53 75 69 77 57 69 47 71 57 79 59 81 61 59 83 63 61 73 63 85 75 51 73 65 67 87 71 65 87 87 67 75 69 89 77 57 77 79 91 69 71 79 81 59 83 61 81 85 63 83 93 73 85 95 75 73 91 71 87 95 87 75 77 89 97 89 69 91 77 99 79 101 81 79 103 83 81 85 83 105 107 93 85 95 73 93 91 87 95 89 109 97 77 97 99 111 89 91 99 101 79 103 81 101 105 83 103 107 85 105 113 93 107 111 95 93 111 91 95 97 109 115 89 111 109 97 117 99 99 119 101 101 121 103 123 105 103 125 107 105 113 107 127 111 93 113 109 129 115 97 115 117 109 111 113 99 117 119 119 121 101 121 123 103 125 105 123 127 107 125 129 113 127 115 129 131 109 113 129 115 131 117 117 131 119 131 121 119 131 123 121 131 125 123 127 125 131 129 127 131</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1298\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1303\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1306\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1309\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"522\">0.5757430791854858 -0.2640672326087952 -0.04370040446519852 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5220236778259277 0.04897113516926765 -0.04865696281194687 0.5220236778259277 0.04897113516926765 -0.04865696281194687 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5757430791854858 -0.2640672326087952 -0.04370040446519852 0.5596339106559753 -0.4551787674427033 -0.0152185931801796 0.5596339106559753 -0.4551787674427033 -0.0152185931801796 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.1914478987455368 0.04898110404610634 -0.04865696281194687 0.1914478987455368 0.04898110404610634 -0.04865696281194687 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5101699829101563 -0.7025102972984314 0.08790269494056702 0.5161123871803284 -0.4996879398822784 -0.2064947336912155 0.1973593235015869 -0.4996796548366547 -0.2064947336912155 0.5609543919563294 -0.5950192809104919 0.115213468670845 0.5609543919563294 -0.5950192809104919 0.115213468670845 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6343215703964233 -0.08705788105726242 -0.01344664581120014 0.6189182996749878 -0.2583962380886078 -0.04034119844436646 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.574457585811615 -0.06990624219179153 -0.2623734772205353 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.6203155517578125 0.006514005362987518 -0.01635167747735977 0.574457585811615 -0.06990624219179153 -0.2623734772205353 0.1425719261169434 -0.2640497386455536 -0.04370040446519852 0.1425719261169434 -0.2640497386455536 -0.04370040446519852 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5965368747711182 -0.4520091116428375 -0.01442568749189377 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.5279473662376404 0.07899821549654007 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.1586782038211823 -0.4551669061183929 -0.0152185931801796 0.1586782038211823 -0.4551669061183929 -0.0152185931801796 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.203295037150383 -0.7025021910667419 0.08790388703346252 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5602886080741882 -0.6104678511619568 0.3182505667209625 0.5491922497749329 -0.6375892162322998 0.3780633807182312 0.5491922497749329 -0.6375892162322998 0.3780633807182312 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.5965355634689331 -0.5934194922447205 0.1153884530067444 0.1438722163438797 -0.06989359110593796 -0.2623734772205353 0.1438722163438797 -0.06989359110593796 -0.2623734772205353 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.1855472475290299 0.07900670170783997 -0.08113595098257065 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.1573539972305298 -0.595005989074707 0.1152148991823196 0.1573539972305298 -0.595005989074707 0.1152148991823196 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.495847225189209 -0.7545177340507507 0.4255529642105103 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5184099674224854 -0.8335617780685425 0.3569554090499878 0.5184099674224854 -0.8335617780685425 0.3569554090499878 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.09801760315895081 0.006529189646244049 -0.01635167747735977 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.08399512618780136 -0.08703973144292831 -0.01344664581120014 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.09939707070589066 -0.2583808302879334 -0.04034119844436646 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1691129803657532 -0.6375737190246582 0.3780650198459625 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5965368747711182 -0.6081565022468567 0.3187810778617859 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.5486908555030823 -0.5696565508842468 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.4519904553890228 -0.01442568749189377 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.158023789525032 -0.6104502677917481 0.3182523548603058 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.2176111489534378 -0.7545040249824524 0.4255544245243073 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.5840888619422913 -0.6366593837738037 0.3809034824371338 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.5202403068542481 -0.7197239995002747 0.451743870973587 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1950476169586182 -0.8335521221160889 0.3569565713405609 0.1950476169586182 -0.8335521221160889 0.3569565713405609 0.169620618224144 -0.5696436166763306 -0.2623734772205353 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.1217759326100349 -0.5934044122695923 0.1153904497623444 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1217759326100349 -0.6081380248069763 0.3187831938266754 0.1932165175676346 -0.7197110652923584 0.451745331287384 0.134217232465744 -0.6366413831710815 0.3809046447277069 0.2369584441184998 -0.8251082301139832 0.4601387679576874 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.3101126551628113 -0.8043537139892578 0.5141274929046631 0.2369584441184998 -0.8251082301139832 0.4601387679576874 0.3958669900894165 -0.85288006067276 0.4996026456356049 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.4033396244049072 -0.8043606281280518 0.5141270756721497 0.3958669900894165 -0.85288006067276 0.4996026456356049 0.4764984846115112 -0.8251250982284546 0.4601365625858307 0.4764984846115112 -0.8251250982284546 0.4601365625858307 0.4596176445484161 -0.8469366431236267 0.4531694352626801 0.4596176445484161 -0.8469366431236267 0.4531694352626801 0.3175884783267975 -0.8528740406036377 0.4996022284030914 0.3175884783267975 -0.8528740406036377 0.4996022284030914 0.2538373470306397 -0.8469233512878418 0.4531687796115875 0.2538373470306397 -0.8469233512878418 0.4531687796115875</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"174\" source=\"#ID1309\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1307\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1310\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"522\">-0.5623456695593759 -0.02902424062761077 0.8263927282979973 -0.6776788756103134 -0.06952626265423349 0.7320638225953225 -0.08364715755509074 0.3839984169292143 0.9195370404876635 0.08364715755509074 -0.3839984169292143 -0.9195370404876635 0.6776788756103134 0.06952626265423349 -0.7320638225953225 0.5623456695593759 0.02902424062761077 -0.8263927282979973 -0.6954869493704354 0.3760430533359256 0.6122822268310583 0.6954869493704354 -0.3760430533359256 -0.6122822268310583 -0.3204674790414629 -0.04817752523915629 0.9460335728390615 0.3204674790414629 0.04817752523915629 -0.9460335728390615 0.6878997258483419 -0.0773037578987384 0.7216772798089942 -0.6878997258483419 0.0773037578987384 -0.7216772798089942 -0.9200618122166246 0.3674044358970494 0.1360155953699105 0.9200618122166246 -0.3674044358970494 -0.1360155953699105 -0.07128196911654768 -0.02119409286438933 0.9972310120060061 0.07128196911654768 0.02119409286438933 -0.9972310120060061 -0.278925631441701 0.0822711107392837 0.9567820841040937 0.278925631441701 -0.0822711107392837 -0.9567820841040937 0.08407854415395319 0.387336020948779 0.9180967298103827 -0.08407854415395319 -0.387336020948779 -0.9180967298103827 2.255743400527115e-005 0.8234880555100644 0.5673336072571545 2.140412797513351e-005 0.8234874830219355 0.5673344382708149 3.033972759434882e-005 0.9277932590582046 0.373094716560897 -3.033972759434882e-005 -0.9277932590582046 -0.373094716560897 -2.140412797513351e-005 -0.8234874830219355 -0.5673344382708149 -2.255743400527115e-005 -0.8234880555100644 -0.5673336072571545 -0.6145553697712602 0.7034281203016348 0.3570862319583578 0.6145553697712602 -0.7034281203016348 -0.3570862319583578 -0.05429496829919668 0.4036684937205148 0.9132928356199889 0.05429496829919668 -0.4036684937205148 -0.9132928356199889 0.9726035301304553 -0.1616463061327001 -0.1670713766371429 0.9746476165022039 -0.06780241782248969 -0.2132248948504782 0.9720490564290999 0.04311552109500944 -0.2307849296119713 -0.9720490564290999 -0.04311552109500944 0.2307849296119713 -0.9746476165022039 0.06780241782248969 0.2132248948504782 -0.9726035301304553 0.1616463061327001 0.1670713766371429 0.0336392230587115 0.7307994210963498 0.6817628684500544 -0.0336392230587115 -0.7307994210963498 -0.6817628684500544 0.7374793544197982 0.4572059492354973 -0.4970783859596251 0.8838275377583784 0.3740634335566644 -0.2809367031481668 -0.8838275377583784 -0.3740634335566644 0.2809367031481668 -0.7374793544197982 -0.4572059492354973 0.4970783859596251 0.5785150252202893 -0.02554248858252377 0.8152717012575499 -0.5785150252202893 0.02554248858252377 -0.8152717012575499 2.595741966724495e-005 0.9277954126478304 0.3730893614080339 -2.595741966724495e-005 -0.9277954126478304 -0.3730893614080339 -0.04629672257949584 0.8986462600662638 0.4362241542456291 0.04629672257949584 -0.8986462600662638 -0.4362241542456291 -0.904333663484486 0.4260001815927788 0.02654186074200746 0.904333663484486 -0.4260001815927788 -0.02654186074200746 0.9834693286842997 -0.1261076284381207 -0.1299420855110674 -0.9834693286842997 0.1261076284381207 0.1299420855110674 0.3527001788631265 0.7653825052469869 -0.5383235128542731 -0.3527001788631265 -0.7653825052469869 0.5383235128542731 -0.03456069332299173 0.7307200114792106 0.6818018944685153 0.03456069332299173 -0.7307200114792106 -0.6818018944685153 0.3308857098890422 -0.04606984733465251 0.94254560428543 -0.3308857098890422 0.04606984733465251 -0.94254560428543 0.7083231229345967 0.370005918120624 0.6011438879934609 -0.7083231229345967 -0.370005918120624 -0.6011438879934609 0.9329916499520448 0.3380979339269275 0.1233546439908304 -0.9329916499520448 -0.3380979339269275 -0.1233546439908304 4.175137933241703e-005 0.9624971715928647 0.2712917118759023 -4.175137933241703e-005 -0.9624971715928647 -0.2712917118759023 -0.06316387502239948 0.9659005428502105 0.251090553812411 0.06316387502239948 -0.9659005428502105 -0.251090553812411 -0.5338774675678342 0.7433939804543349 0.4029146801093459 0.5338774675678342 -0.7433939804543349 -0.4029146801093459 0.9282916758272926 -0.3528729355165036 -0.1172828033844797 -0.9282916758272926 0.3528729355165036 0.1172828033844797 -0.7371727916115995 0.4555778108195047 -0.4990241813744788 0.7371727916115995 -0.4555778108195047 0.4990241813744788 0.2927453765890279 0.08075837779410651 0.9527739652728829 -0.2927453765890279 -0.08075837779410651 -0.9527739652728829 -0.3690024290606827 0.7579722564310877 -0.5378803452702854 0.3690024290606827 -0.7579722564310877 0.5378803452702854 0.07128622684052716 -0.02118911041509052 0.9972308135344886 -0.07128622684052716 0.02118911041509052 -0.9972308135344886 0.6341081704417082 0.6888848242950419 0.351204394954076 -0.6341081704417082 -0.6888848242950419 -0.351204394954076 0.9204352528465152 0.3903257781933799 0.02108867456964116 0.9181639455430147 0.3957148118369558 0.01961521852354617 -0.9181639455430147 -0.3957148118369558 -0.01961521852354617 -0.9204352528465152 -0.3903257781933799 -0.02108867456964116 5.178125723876811e-005 0.9624944681935413 0.271301301168154 -5.178125723876811e-005 -0.9624944681935413 -0.271301301168154 -0.06528031215682842 0.9705532911741637 0.2318723567735187 0.06528031215682842 -0.9705532911741637 -0.2318723567735187 -0.8071345011136001 0.5825913322456345 -0.09550516585167916 0.8071345011136001 -0.5825913322456345 0.09550516585167916 -0.06764256345976379 0.8384986448583431 0.540688918121422 0.06764256345976379 -0.8384986448583431 -0.540688918121422 0.593262699854513 -0.8040659702966354 -0.03895233461892018 -0.593262699854513 0.8040659702966354 0.03895233461892018 -0.8897101437617623 0.3619257650191408 -0.2782545609738211 0.8897101437617623 -0.3619257650191408 0.2782545609738211 -0.9720327846987922 0.04319680535765318 -0.2308382582623698 0.9720327846987922 -0.04319680535765318 0.2308382582623698 -0.9746323213825966 -0.06775027945219549 -0.2133113633881711 0.9746323213825966 0.06775027945219549 0.2133113633881711 0.05226532367732852 0.4064698286281858 0.9121680844865584 -0.05226532367732852 -0.4064698286281858 -0.9121680844865584 0.9142349564372279 0.4047881480732629 0.01791646191741633 -0.9142349564372279 -0.4047881480732629 -0.01791646191741633 0.07205264813033455 0.7714983133929116 0.6321382509620019 0.079094426078098 0.6673578487483389 0.7405252011088925 0.08490175081320314 0.4049533256248704 0.9103870038473806 -0.08490175081320314 -0.4049533256248704 -0.9103870038473806 -0.079094426078098 -0.6673578487483389 -0.7405252011088925 -0.07205264813033455 -0.7714983133929116 -0.6321382509620019 5.013457659817343e-005 0.8714767518656733 0.4904368139161049 -5.013457659817343e-005 -0.8714767518656733 -0.4904368139161049 0.9447989913515391 -0.3276488849487459 -0.001036403858430049 -0.9447989913515391 0.3276488849487459 0.001036403858430049 -0.7920052855989604 0.6051280337239494 0.08091780017212312 0.7920052855989604 -0.6051280337239494 -0.08091780017212312 -3.138986537923502e-005 -0.9199607579002272 -0.3920104627918951 -3.138986537923502e-005 -0.9199607579002272 -0.3920104627918951 3.138986537923502e-005 0.9199607579002272 0.3920104627918951 3.138986537923502e-005 0.9199607579002272 0.3920104627918951 -0.9732157750163402 -0.1580442816411232 -0.1669522695260109 0.9732157750163402 0.1580442816411232 0.1669522695260109 -0.9834711209303843 -0.126096114110478 -0.1299396948671616 0.9834711209303843 0.126096114110478 0.1299396948671616 0.0437178963006298 0.8972403367035504 0.4393728755113896 -0.0437178963006298 -0.8972403367035504 -0.4393728755113896 0.06426418018846064 0.9662185317857469 0.2495833808139088 -0.06426418018846064 -0.9662185317857469 -0.2495833808139088 0.06429709081035219 0.9708344238347439 0.2309684082527008 -0.06429709081035219 -0.9708344238347439 -0.2309684082527008 0.7196572827450084 0.6620618477432274 -0.2092068477724722 0.7747789695478524 0.623234240124659 -0.1062856071281851 0.8171431206070383 0.5764162239823395 -0.004632188956936927 -0.8171431206070383 -0.5764162239823395 0.004632188956936927 -0.7747789695478524 -0.623234240124659 0.1062856071281851 -0.7196572827450084 -0.6620618477432274 0.2092068477724722 0.6594272425643234 0.6888982854805503 -0.3009565816292633 -0.6594272425643234 -0.6888982854805503 0.3009565816292633 6.682663927711848e-005 0.8714617897975016 0.4904633976731961 -6.682663927711848e-005 -0.8714617897975016 -0.4904633976731961 0.9335593015579758 -0.3287625002337843 0.1427664138185698 -0.9335593015579758 0.3287625002337843 -0.1427664138185698 -0.6594020609505565 0.6888906318398524 -0.3010292666460313 0.6594020609505565 -0.6888906318398524 0.3010292666460313 0.8221498543273054 -0.3070330188316616 0.4793749496758327 -0.8221498543273054 0.3070330188316616 -0.4793749496758327 -3.066908308931682e-005 -0.9199606115312351 -0.392010806344013 -0.6076623147201187 -0.7932324038290286 -0.03910070056416476 0.6076623147201187 0.7932324038290286 0.03910070056416476 3.066908308931682e-005 0.9199606115312351 0.392010806344013 -0.9333115515423831 -0.3394665247283948 -0.1170129323894408 0.9333115515423831 0.3394665247283948 0.1170129323894408 -0.7396363893425982 -0.6554726337331369 -0.1526225343361504 -0.8661412983354875 -0.2914642771454225 0.4060145643518379 -0.937612648422409 -0.3458272918389665 0.03586092215270673 0.937612648422409 0.3458272918389665 -0.03586092215270673 0.8661412983354875 0.2914642771454225 -0.4060145643518379 0.7396363893425982 0.6554726337331369 0.1526225343361504 -0.6855657172326377 -0.4195975644837834 0.5949264922951209 -0.3246046366813378 -0.2814634871269046 0.9030006286040668 0.3246046366813378 0.2814634871269046 -0.9030006286040668 0.6855657172326377 0.4195975644837834 -0.5949264922951209 0.1775861564188749 -0.8016171053217112 0.57085302268098 0.3245515382109805 -0.2814412062072947 0.9030266587944508 -0.3245515382109805 0.2814412062072947 -0.9030266587944508 -0.1775861564188749 0.8016171053217112 -0.57085302268098 0.6855528672262897 -0.4196299680603711 0.5949184449514615 -0.6855528672262897 0.4196299680603711 -0.5949184449514615 0.3674568997501367 -0.8965543114883223 0.2473171918361488 -0.3674568997501367 0.8965543114883223 -0.2473171918361488 -0.1776701550306539 -0.8016016592896061 0.5708485752242301 0.1776701550306539 0.8016016592896061 -0.5708485752242301 -0.3675430122840427 -0.8965104567949764 0.2473482059333262 0.3675430122840427 0.8965104567949764 -0.2473482059333262</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"174\" source=\"#ID1310\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1308\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1306\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1307\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"94\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 14 0 8 2 16 8 10 18 2 20 21 22 26 12 6 28 6 14 30 31 32 2 36 16 38 32 39 18 36 2 10 42 18 20 22 44 26 6 46 48 12 26 30 50 31 46 6 28 30 32 38 38 39 52 54 36 18 42 56 18 10 58 42 10 60 58 44 22 62 26 46 64 66 12 48 30 68 50 70 38 52 54 18 72 74 70 52 56 72 18 76 56 42 76 42 58 60 78 58 60 80 81 22 84 62 64 46 86 88 12 66 66 64 90 92 68 30 94 70 74 96 70 94 96 98 70 100 76 58 78 100 58 60 102 78 60 81 102 104 105 106 62 84 110 92 112 68 64 86 90 114 88 66 114 66 90 116 117 92 98 120 70 122 120 98 124 100 78 124 78 126 128 126 105 130 131 132 128 105 104 131 130 136 84 138 110 92 140 112 88 114 142 92 144 140 92 146 147 150 120 122 124 126 128 152 153 154 158 153 159 162 159 163 166 163 144 92 166 144 92 147 168 150 147 120 154 147 150 153 147 154 158 159 170 158 147 153 170 159 162 162 163 166 92 168 166 147 172 168 172 158 170 172 147 158 172 170 162 168 162 166 168 172 162</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1308\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"94\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 15 9 17 3 3 19 11 23 24 25 7 13 27 15 7 29 33 34 35 17 37 3 40 33 41 3 37 19 19 43 11 45 23 25 47 7 27 27 13 49 34 51 35 29 7 47 41 33 35 53 40 41 19 37 55 19 57 43 43 59 11 59 61 11 63 23 45 65 47 27 49 13 67 51 69 35 53 41 71 73 19 55 53 71 75 19 73 57 43 57 77 59 43 77 59 79 61 82 83 61 63 85 23 87 47 65 67 13 89 91 65 67 35 69 93 75 71 95 95 71 97 71 99 97 59 77 101 59 101 79 79 103 61 103 82 61 107 108 109 111 85 63 69 113 93 91 87 65 67 89 115 91 67 115 93 118 119 71 121 99 99 121 123 79 101 125 127 79 125 108 127 129 133 134 135 109 108 129 137 135 134 111 139 85 113 141 93 143 115 89 141 145 93 148 149 93 123 121 151 129 127 125 155 156 157 160 156 161 164 160 165 145 164 167 145 167 93 169 148 93 121 148 151 151 148 155 155 148 156 171 160 161 156 148 161 165 160 171 167 164 165 167 169 93 169 173 148 171 161 173 161 148 173 165 171 173 167 165 169 165 173 169</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1308\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1311\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1312\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1315\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"522\">-0.1579605340957642 -0.2640672326087952 -0.04370040446519852 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.2116810828447342 0.04897113516926765 -0.04865696281194687 -0.2116810828447342 0.04897113516926765 -0.04865696281194687 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.1579605340957642 -0.2640672326087952 -0.04370040446519852 -0.1740687191486359 -0.4551787674427033 -0.0152185931801796 -0.1740687191486359 -0.4551787674427033 -0.0152185931801796 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.5422577261924744 0.04898110404610634 -0.04865696281194687 -0.5422577261924744 0.04898110404610634 -0.04865696281194687 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2235344499349594 -0.7025102972984314 0.08790269494056702 -0.2175921201705933 -0.4996879398822784 -0.2064947336912155 -0.5363457202911377 -0.4996796548366547 -0.2064947336912155 -0.172749400138855 -0.5950192809104919 0.115213468670845 -0.172749400138855 -0.5950192809104919 0.115213468670845 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.09938029199838638 -0.08705788105726242 -0.01344664581120014 -0.1147841513156891 -0.2583962380886078 -0.04034119844436646 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.1592455804347992 -0.06990624219179153 -0.2623733282089233 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1133868098258972 0.006514005362987518 -0.01635167747735977 -0.1592455804347992 -0.06990624219179153 -0.2623733282089233 -0.591135561466217 -0.2640497386455536 -0.04370040446519852 -0.591135561466217 -0.2640497386455536 -0.04370040446519852 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.1371660977602005 -0.4520091116428375 -0.01442568749189377 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.2057562172412872 0.07899821549654007 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.5750284194946289 -0.4551669061183929 -0.0152185931801796 -0.5750284194946289 -0.4551669061183929 -0.0152185931801796 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5304100513458252 -0.7025021910667419 0.08790388703346252 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1734146624803543 -0.6104678511619568 0.3182505667209625 -0.1845105141401291 -0.6375892162322998 0.3780633807182312 -0.1845105141401291 -0.6375892162322998 0.3780633807182312 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.1371674835681915 -0.5934194922447205 0.1153884530067444 -0.5898348093032837 -0.06989359110593796 -0.2623733282089233 -0.5898348093032837 -0.06989359110593796 -0.2623733282089233 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.5481586456298828 0.07900670170783997 -0.08113595098257065 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.5763527154922485 -0.595005989074707 0.1152148991823196 -0.5763527154922485 -0.595005989074707 0.1152148991823196 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.237857773900032 -0.7545177340507507 0.4255529642105103 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.2152939885854721 -0.8335617780685425 0.3569554090499878 -0.2152939885854721 -0.8335617780685425 0.3569554090499878 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.6356891989707947 0.006529189646244049 -0.01635167747735977 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.649712860584259 -0.08703973144292831 -0.01344664581120014 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6343101263046265 -0.2583808302879334 -0.04034119844436646 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5645931959152222 -0.6375737190246582 0.3780650198459625 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.1371660977602005 -0.6081565022468567 0.3187810778617859 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.1850125193595886 -0.5696565508842468 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.4519904553890228 -0.01442568749189377 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.575682520866394 -0.6104502677917481 0.3182523548603058 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5160937905311585 -0.7545040249824524 0.4255544245243073 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.1496141105890274 -0.6366593837738037 0.3809034824371338 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.2134632468223572 -0.7197239995002747 0.4517439901828766 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.5386579036712647 -0.8335521221160889 0.3569565713405609 -0.5386579036712647 -0.8335521221160889 0.3569565713405609 -0.5640852451324463 -0.5696436166763306 -0.2623733282089233 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.6119304895401001 -0.5934044122695923 0.1153904497623444 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.6119304895401001 -0.6081380248069763 0.3187831938266754 -0.5404890179634094 -0.7197110652923584 0.4517454504966736 -0.5994892716407776 -0.6366413831710815 0.3809046447277069 -0.4967458844184876 -0.8251082301139832 0.4601387679576874 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4235914945602417 -0.8043537139892578 0.5141274929046631 -0.4967458844184876 -0.8251082301139832 0.4601387679576874 -0.3378376364707947 -0.85288006067276 0.4996026456356049 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.330365002155304 -0.8043606281280518 0.5141270756721497 -0.3378376364707947 -0.85288006067276 0.4996026456356049 -0.2572067081928253 -0.8251250982284546 0.4601365625858307 -0.2572067081928253 -0.8251250982284546 0.4601365625858307 -0.27408766746521 -0.8469366431236267 0.4531694352626801 -0.27408766746521 -0.8469366431236267 0.4531694352626801 -0.4161160886287689 -0.8528740406036377 0.4996022284030914 -0.4161160886287689 -0.8528740406036377 0.4996022284030914 -0.4798671901226044 -0.8469233512878418 0.4531687796115875 -0.4798671901226044 -0.8469233512878418 0.4531687796115875</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"174\" source=\"#ID1315\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1313\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1316\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"522\">-0.5623413782526318 -0.02902591286613609 0.8263955897070229 -0.677675404794203 -0.06952438551774405 0.7320672138235622 -0.08364765397423228 0.3839963828085615 0.9195378447755958 0.08364765397423228 -0.3839963828085615 -0.9195378447755958 0.677675404794203 0.06952438551774405 -0.7320672138235622 0.5623413782526318 0.02902591286613609 -0.8263955897070229 -0.695482362370099 0.3760445437328366 0.6122865217860584 0.695482362370099 -0.3760445437328366 -0.6122865217860584 -0.3204593099152888 -0.0481776503756154 0.9460363337065347 0.3204593099152888 0.0481776503756154 -0.9460363337065347 0.6878959204722767 -0.07730026101703819 0.7216812816225021 -0.6878959204722767 0.07730026101703819 -0.7216812816225021 -0.9200589462427619 0.3674108354986236 0.1360176951608199 0.9200589462427619 -0.3674108354986236 -0.1360176951608199 -0.07128014245902452 -0.02119425833209892 0.9972311390569257 0.07128014245902452 0.02119425833209892 -0.9972311390569257 -0.2789192657441723 0.08227147538685829 0.9567839084842519 0.2789192657441723 -0.08227147538685829 -0.9567839084842519 0.08407837059411352 0.3873346347619575 0.9180973305222382 -0.08407837059411352 -0.3873346347619575 -0.9180973305222382 2.255739283483661e-005 0.8234880555114981 0.5673336072550753 2.140409195340843e-005 0.8234874830248066 0.5673344382666489 3.033968594614084e-005 0.9277932184238439 0.3730948176083784 -3.033968594614084e-005 -0.9277932184238439 -0.3730948176083784 -2.140409195340843e-005 -0.8234874830248066 -0.5673344382666489 -2.255739283483661e-005 -0.8234880555114981 -0.5673336072550753 -0.6145538793548455 0.7034298561426827 0.3570853775457554 0.6145538793548455 -0.7034298561426827 -0.3570853775457554 -0.05429544957895544 0.403668201025771 0.9132929363767339 0.05429544957895544 -0.403668201025771 -0.9132929363767339 0.9726028806148421 -0.1616484893202991 -0.1670730454626849 0.9746474771901317 -0.06780566333342517 -0.2132244995933303 0.9720479865498597 0.04311735512513346 -0.230789093181148 -0.9720479865498597 -0.04311735512513346 0.230789093181148 -0.9746474771901317 0.06780566333342517 0.2132244995933303 -0.9726028806148421 0.1616484893202991 0.1670730454626849 0.03363914623609972 0.7307988193148688 0.6817635173053045 -0.03363914623609972 -0.7307988193148688 -0.6817635173053045 0.7374772903514135 0.4572062697034959 -0.4970811534948304 0.8838245448984975 0.374067643048655 -0.2809405137373174 -0.8838245448984975 -0.374067643048655 0.2809405137373174 -0.7374772903514135 -0.4572062697034959 0.4970811534948304 0.5785078095990561 -0.02554278550114724 0.8152768120962013 -0.5785078095990561 0.02554278550114724 -0.8152768120962013 2.595736406077767e-005 0.9277954038468378 0.3730893832942695 -2.595736406077767e-005 -0.9277954038468378 -0.3730893832942695 -0.04629593633056625 0.8986463460660794 0.4362240605255061 0.04629593633056625 -0.8986463460660794 -0.4362240605255061 -0.9043343512161365 0.4259983832059894 0.02654729207230666 0.9043343512161365 -0.4259983832059894 -0.02654729207230666 0.9834689833887162 -0.1261096567901756 -0.1299427303723811 -0.9834689833887162 0.1261096567901756 0.1299427303723811 0.3526969098823379 0.7653832506285668 -0.5383245948465466 -0.3526969098823379 -0.7653832506285668 0.5383245948465466 -0.03456054493227085 0.7307198857760062 0.681802036712626 0.03456054493227085 -0.7307198857760062 -0.681802036712626 0.3308812010916427 -0.04607141258674735 0.9425471106031853 -0.3308812010916427 0.04607141258674735 -0.9425471106031853 0.7083195658882379 0.3700095213471906 0.6011458614116222 -0.7083195658882379 -0.3700095213471906 -0.6011458614116222 0.9329876653634008 0.3381076251655933 0.1233582185532577 -0.9329876653634008 -0.3381076251655933 -0.1233582185532577 4.175134927565876e-005 0.9624972903196903 0.2712912906528304 -4.175134927565876e-005 -0.9624972903196903 -0.2712912906528304 -0.0631634402754065 0.965900669977191 0.2510901741410616 0.0631634402754065 -0.965900669977191 -0.2510901741410616 -0.533871373943583 0.7433977055760073 0.4029158813299858 0.533871373943583 -0.7433977055760073 -0.4029158813299858 0.9282903521594874 -0.3528761504278969 -0.1172836073234571 -0.9282903521594874 0.3528761504278969 0.1172836073234571 -0.7371721457438576 0.4555775508361483 -0.4990253728153849 0.7371721457438576 -0.4555775508361483 0.4990253728153849 0.292743715322472 0.08075455144167999 0.9527748000239347 -0.292743715322472 -0.08075455144167999 -0.9527748000239347 -0.368999017402634 0.7579737893133243 -0.5378805256466265 0.368999017402634 -0.7579737893133243 0.5378805256466265 0.07128671084572642 -0.02118923355026286 0.9972307763192781 -0.07128671084572642 0.02118923355026286 -0.9972307763192781 0.6341018364624005 0.6888896156433952 0.3512064328193694 -0.6341018364624005 -0.6888896156433952 -0.3512064328193694 0.9204315623145812 0.3903344223627087 0.02108975613680669 0.9181604324338736 0.3957229027240721 0.01961643628381157 -0.9181604324338736 -0.3957229027240721 -0.01961643628381157 -0.9204315623145812 -0.3903344223627087 -0.02108975613680669 5.178130880145423e-005 0.9624944376759281 0.2713014094353274 -5.178130880145423e-005 -0.9624944376759281 -0.2713014094353274 -0.06527977768556016 0.9705533066587464 0.2318724424313881 0.06527977768556016 -0.9705533066587464 -0.2318724424313881 -0.8071252456732988 0.5826058726144744 -0.09549468567383179 0.8071252456732988 -0.5826058726144744 0.09549468567383179 -0.06764276738943618 0.8384989893984246 0.5406883582968282 0.06764276738943618 -0.8384989893984246 -0.5406883582968282 0.5932608855457696 -0.8040674217601206 -0.03895000571863708 -0.5932608855457696 0.8040674217601206 0.03895000571863708 -0.889706350667824 0.3619341275934684 -0.2782558119150394 0.889706350667824 -0.3619341275934684 0.2782558119150394 -0.9720318059751443 0.04320074092632786 -0.23084164302854 0.9720318059751443 -0.04320074092632786 0.23084164302854 -0.9746315500638775 -0.0677533314633561 -0.2133139181949928 0.9746315500638775 0.0677533314633561 0.2133139181949928 0.05226561043417893 0.4064695056671582 0.9121682119700502 -0.05226561043417893 -0.4064695056671582 -0.9121682119700502 0.9142315574047728 0.404795774692041 0.01791759572917519 -0.9142315574047728 -0.404795774692041 -0.01791759572917519 0.07205190362702056 0.7714993399204356 0.6321370829860044 0.07909377644207545 0.6673572130602039 0.7405258433739153 0.08490095446075462 0.4049538320230013 0.9103868528606617 -0.08490095446075462 -0.4049538320230013 -0.9103868528606617 -0.07909377644207545 -0.6673572130602039 -0.7405258433739153 -0.07205190362702056 -0.7714993399204356 -0.6321370829860044 5.013466762419966e-005 0.8714767519895718 0.4904368136959355 -5.013466762419966e-005 -0.8714767519895718 -0.4904368136959355 0.9447976547977393 -0.3276527353948617 -0.001037534075002607 -0.9447976547977393 0.3276527353948617 0.001037534075002607 -0.7919943496495504 0.6051402722477143 0.08093331222153129 0.7919943496495504 -0.6051402722477143 -0.08093331222153129 -3.138965815380397e-005 -0.9199607238787885 -0.3920105426325991 -3.138965815380397e-005 -0.9199607238787885 -0.3920105426325991 3.138965815380397e-005 0.9199607238787885 0.3920105426325991 3.138965815380397e-005 0.9199607238787885 0.3920105426325991 -0.9732150206109642 -0.1580472657677843 -0.1669538422454788 0.9732150206109642 0.1580472657677843 0.1669538422454788 -0.9834706541117561 -0.1260987934752365 -0.1299406279232339 0.9834706541117561 0.1260987934752365 0.1299406279232339 0.04371821291222033 0.8972403291110204 0.4393728595128624 -0.04371821291222033 -0.8972403291110204 -0.4393728595128624 0.06426401791437653 0.9662185050152043 0.2495835262345739 -0.06426401791437653 -0.9662185050152043 -0.2495835262345739 0.06429683232106599 0.9708344231682075 0.2309684830125767 -0.06429683232106599 -0.9708344231682075 -0.2309684830125767 0.7196515342741144 0.6620689141402413 -0.2092042593879843 0.774773632654447 0.6232414768956255 -0.1062820757248923 0.8171375224633035 0.5764241827179299 -0.004629358540970275 -0.8171375224633035 -0.5764241827179299 0.004629358540970275 -0.774773632654447 -0.6232414768956255 0.1062820757248923 -0.7196515342741144 -0.6620689141402413 0.2092042593879843 0.6594220440648094 0.6889046228283825 -0.3009534655840876 -0.6594220440648094 -0.6889046228283825 0.3009534655840876 6.682698108115185e-005 0.8714617897650312 0.4904633977308434 -6.682698108115185e-005 -0.8714617897650312 -0.4904633977308434 0.9335580875933367 -0.3287665807871548 0.1427649552467095 -0.9335580875933367 0.3287665807871548 -0.1427649552467095 -0.6593962739985512 0.6889030861991201 -0.3010134409991609 0.6593962739985512 -0.6889030861991201 0.3010134409991609 0.8221468749188605 -0.3070399146782842 0.4793756427432495 -0.8221468749188605 0.3070399146782842 -0.4793756427432495 -3.066889184531668e-005 -0.9199605775121815 -0.3920108861790355 -0.6076610753347634 -0.7932334874382245 -0.03909797858701984 0.6076610753347634 0.7932334874382245 0.03909797858701984 3.066889184531668e-005 0.9199605775121815 0.3920108861790355 -0.9333101311172105 -0.3394700156761205 -0.1170141342352701 0.9333101311172105 0.3394700156761205 0.1170141342352701 -0.7396277501350566 -0.6554808718826581 -0.1526290202618907 -0.8661382076886683 -0.2914696843078111 0.4060172758779682 -0.937610986303589 -0.3458318488782075 0.0358604331302899 0.937610986303589 0.3458318488782075 -0.0358604331302899 0.8661382076886683 0.2914696843078111 -0.4060172758779682 0.7396277501350566 0.6554808718826581 0.1526290202618907 -0.6855618799634182 -0.4195984413714799 0.5949302956982847 -0.3246028309346458 -0.2814634160625591 0.903001299870387 0.3246028309346458 0.2814634160625591 -0.903001299870387 0.6855618799634182 0.4195984413714799 -0.5949302956982847 0.1775873766266002 -0.8016168874161663 0.5708529490789194 0.3245524342354843 -0.2814434746436617 0.9030256297649164 -0.3245524342354843 0.2814434746436617 -0.9030256297649164 -0.1775873766266002 0.8016168874161663 -0.5708529490789194 0.6855484573798776 -0.4196354047042378 0.5949196918095591 -0.6855484573798776 0.4196354047042378 -0.5949196918095591 0.3674545694908423 -0.8965556991366327 0.2473156236591688 -0.3674545694908423 0.8965556991366327 -0.2473156236591688 -0.1776713711439905 -0.8016010428185574 0.5708490623869115 0.1776713711439905 0.8016010428185574 -0.5708490623869115 -0.3675432537537296 -0.8965097759246182 0.2473503149213933 0.3675432537537296 0.8965097759246182 -0.2473503149213933</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"174\" source=\"#ID1316\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1314\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1312\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1313\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"94\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 14 0 8 2 16 8 10 18 2 20 21 22 26 12 6 28 6 14 30 31 32 2 36 16 38 32 39 18 36 2 10 42 18 20 22 44 26 6 46 48 12 26 30 50 31 46 6 28 30 32 38 38 39 52 54 36 18 42 56 18 10 58 42 10 60 58 44 22 62 26 46 64 66 12 48 30 68 50 70 38 52 54 18 72 74 70 52 56 72 18 76 56 42 76 42 58 60 78 58 60 80 81 22 84 62 64 46 86 88 12 66 66 64 90 92 68 30 94 70 74 96 70 94 96 98 70 100 76 58 78 100 58 60 102 78 60 81 102 104 105 106 62 84 110 92 112 68 64 86 90 114 88 66 114 66 90 116 117 92 98 120 70 122 120 98 124 100 78 124 78 126 128 126 105 130 131 132 128 105 104 131 130 136 84 138 110 92 140 112 88 114 142 92 144 140 92 146 147 150 120 122 124 126 128 152 153 154 158 153 159 162 159 163 166 163 144 92 166 144 92 147 168 150 147 120 154 147 150 153 147 154 158 159 170 158 147 153 170 159 162 162 163 166 92 168 166 147 172 168 172 158 170 172 147 158 172 170 162 168 162 166 168 172 162</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1314\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"94\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 15 9 17 3 3 19 11 23 24 25 7 13 27 15 7 29 33 34 35 17 37 3 40 33 41 3 37 19 19 43 11 45 23 25 47 7 27 27 13 49 34 51 35 29 7 47 41 33 35 53 40 41 19 37 55 19 57 43 43 59 11 59 61 11 63 23 45 65 47 27 49 13 67 51 69 35 53 41 71 73 19 55 53 71 75 19 73 57 43 57 77 59 43 77 59 79 61 82 83 61 63 85 23 87 47 65 67 13 89 91 65 67 35 69 93 75 71 95 95 71 97 71 99 97 59 77 101 59 101 79 79 103 61 103 82 61 107 108 109 111 85 63 69 113 93 91 87 65 67 89 115 91 67 115 93 118 119 71 121 99 99 121 123 79 101 125 127 79 125 108 127 129 133 134 135 109 108 129 137 135 134 111 139 85 113 141 93 143 115 89 141 145 93 148 149 93 123 121 151 129 127 125 155 156 157 160 156 161 164 160 165 145 164 167 145 167 93 169 148 93 121 148 151 151 148 155 155 148 156 171 160 161 156 148 161 165 160 171 167 164 165 167 169 93 169 173 148 171 161 173 161 148 173 165 171 173 167 165 169 165 173 169</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1314\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1317\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1318\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1321\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"192\">0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.082414269447327 0.1612508594989777 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.050732493400574 -0.2339227646589279 0.1626043766736984 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.050732493400574 -0.2339227646589279 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.677991628646851 -0.2842108309268951 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.082414269447327 0.1612508594989777 0.1626043766736984 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.082414269447327 0.1612508594989777 -0.1409269720315933 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 0.1626043766736984 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.709671854972839 0.1109628528356552 -0.1409269720315933 1.082414269447327 0.1612508594989777</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"64\" source=\"#ID1321\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1319\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1322\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"192\">-1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 -1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 -1.788830547173953e-017 -0.07991470732275714 -0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1.788830547173953e-017 0.07991470732275714 0.9968017052320478 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.0799147073227571 -0.9968017052320478 0 -0.0799147073227571 -0.9968017052320478 0 -0.0799147073227571 -0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -0 0.0799147073227571 0.9968017052320478 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 -2.253498529042812e-017 0.9968019643893582 -0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 2.253498529042812e-017 -0.9968019643893582 0.07991147470493008 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 -1.126749251352015e-017 -0.9968016520405143 0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1.126749251352015e-017 0.9968016520405143 -0.07991537079499472 1 0 0 -1 -0 -0 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 1.126749251352016e-017 -0.9968016520405143 0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1.126749251352016e-017 0.9968016520405143 -0.07991537079499474 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 1.126749264521406e-017 0.9968019643893582 -0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -1.126749264521406e-017 -0.9968019643893582 0.07991147470493004 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 -5.366518114721464e-017 0.07991480938606871 0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 5.366518114721464e-017 -0.07991480938606871 -0.9968016970495127 -1 0 0 1 -0 -0 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 3.577678743147641e-017 0.07991480938606867 0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127 -3.577678743147641e-017 -0.07991480938606867 -0.9968016970495127</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"64\" source=\"#ID1322\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1320\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1318\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1319\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 38 40 41 43 57 58 59 60 61 62 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1320\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1323\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1324\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1327\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"966\">0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1117984429001808 1.667413234710693 0.115709200501442 0.1117984429001808 1.667413234710693 0.115709200501442 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1116143688559532 1.601925730705261 0.1209593862295151 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1117984429001808 1.667413234710693 0.115709200501442 0.1117984429001808 1.667413234710693 0.115709200501442 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1116143688559532 1.601925730705261 0.1209593862295151 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09094405174255371 1.668806076049805 0.1151059865951538 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.09066395461559296 1.60400927066803 0.1203010678291321 0.1119078770279884 1.560610055923462 0.1241858452558518 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1115833297371864 1.673897385597229 0.2029488384723663 0.1115833297371864 1.673897385597229 0.2029488384723663 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.09094405174255371 1.668806076049805 0.1151059865951538 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.09066395461559296 1.60400927066803 0.1203010678291321 0.1119078770279884 1.560610055923462 0.1241858452558518 0.1119078770279884 1.560610055923462 0.1241858452558518 -0.09066395461559296 1.60400927066803 0.1203010678291321 -0.09044858813285828 1.561036467552185 0.124122679233551 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1115833297371864 1.673897385597229 0.2029488384723663 0.1115833297371864 1.673897385597229 0.2029488384723663 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.1113990917801857 1.60840916633606 0.2081985920667648 0.1113990917801857 1.60840916633606 0.2081985920667648 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.09044858813285828 1.561036467552185 0.124122679233551 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.07645327597856522 1.567093849182129 0.2114255875349045 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.1116053834557533 1.522350549697876 0.1273301094770432 0.1116053834557533 1.522350549697876 0.1273301094770432 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.08888582140207291 1.675288081169128 0.2023455798625946 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888582140207291 1.675288081169128 0.2023455798625946 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.05172950774431229 1.567497491836548 0.2110787779092789 -0.05172950774431229 1.567497491836548 0.2110787779092789 -0.08998314291238785 1.525822281837463 0.126566618680954 -0.08998314291238785 1.525822281837463 0.126566618680954 0.1116053834557533 1.522350549697876 0.1273301094770432 0.1116053834557533 1.522350549697876 0.1273301094770432 -0.05172950774431229 1.567497491836548 0.2110787779092789 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.05172950774431229 1.567497491836548 0.2110787779092789 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1076964437961578 1.528833508491516 0.2145696133375168 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1075886934995651 1.45469856262207 0.2205129116773605 0.1075886934995651 1.45469856262207 0.2205129116773605 -0.08888807147741318 1.61049234867096 0.2075405865907669 0.07645327597856522 1.567093849182129 0.2114255875349045 0.07645327597856522 1.567093849182129 0.2114255875349045 -0.08888807147741318 1.61049234867096 0.2075405865907669 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09019790589809418 1.532305955886841 0.2138059288263321 0.1117819771170616 1.44821560382843 0.1332732439041138 0.1117819771170616 1.44821560382843 0.1332732439041138 -0.09107325971126556 1.454367280006409 0.2200525850057602 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09019790589809418 1.532305955886841 0.2138059288263321 -0.09107325971126556 1.454367280006409 0.2200525850057602 0.1117819771170616 1.44821560382843 0.1332732439041138 0.1117819771170616 1.44821560382843 0.1332732439041138 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09085851907730103 1.447884321212769 0.1328130662441254 -0.09107325971126556 1.454367280006409 0.2200525850057602 -0.09107325971126556 1.454367280006409 0.2200525850057602 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.05548623204231262 1.409258842468262 0.2237561196088791 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.05548623204231262 1.409258842468262 0.2237561196088791 0.07512425631284714 1.408927440643311 0.2241031676530838 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.05548623204231262 1.409258842468262 0.2237561196088791 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09051128476858139 1.402777671813965 0.1365166902542114 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09051128476858139 1.402777671813965 0.1365166902542114 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.07512425631284714 1.408927440643311 0.2241031676530838 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 0.07512425631284714 1.408927440643311 0.2241031676530838 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1114309951663017 1.40244460105896 0.1368636637926102 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1114309951663017 1.40244460105896 0.1368636637926102 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09030427038669586 1.367228150367737 0.2270407825708389 0.1079739183187485 1.36528754234314 0.227682426571846 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09030427038669586 1.367228150367737 0.2270407825708389 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09008987247943878 1.360745906829834 0.1398011296987534 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09008987247943878 1.360745906829834 0.1398011296987534 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1079739183187485 1.36528754234314 0.227682426571846 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09079798310995102 1.289162635803223 0.2332986146211624 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1079739183187485 1.36528754234314 0.227682426571846 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1079739183187485 1.36528754234314 0.227682426571846 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1118830665946007 1.358803749084473 0.1404429227113724 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1118830665946007 1.358803749084473 0.1404429227113724 -0.09058376401662827 1.282678484916687 0.1460590064525604 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.09036904573440552 1.244997978210449 0.1491470038890839 0.08007287234067917 1.249786019325256 0.2368745058774948 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.1081213653087616 1.288817167282105 0.2338139861822128 0.1081213653087616 1.288817167282105 0.2338139861822128 -0.09079798310995102 1.289162635803223 0.2332986146211624 0.08007287234067917 1.249786019325256 0.2368745058774948 0.08007287234067917 1.249786019325256 0.2368745058774948 0.08007287234067917 1.249786019325256 0.2368745058774948 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1120307818055153 1.2823566198349 0.1468577980995178 0.1120307818055153 1.2823566198349 0.1468577980995178 -0.09058376401662827 1.282678484916687 0.1460590064525604 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.09036904573440552 1.244997978210449 0.1491470038890839 -0.06330171227455139 1.251481771469116 0.2363867312669754 -0.06330171227455139 1.251481771469116 0.2363867312669754 0.1115483716130257 1.243325471878052 0.1499182283878326 0.1115483716130257 1.243325471878052 0.1499182283878326 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1120293214917183 1.201940059661865 0.1530233770608902 0.1120293214917183 1.201940059661865 0.1530233770608902 -0.08816695958375931 1.208342671394348 0.2397843152284622 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09032661467790604 1.131766676902771 0.1581645011901856 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.09032661467790604 1.131766676902771 0.1581645011901856 0.1115765795111656 1.083741784095764 0.1624274700880051 -0.09079429507255554 1.201858997344971 0.1525451838970184 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.08816695958375931 1.208342671394348 0.2397843152284622 -0.09079429507255554 1.201858997344971 0.1525451838970184 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1092481017112732 1.136982560157776 0.2459899932146072 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1095410063862801 1.208422899246216 0.2402631193399429 0.1092481017112732 1.136982560157776 0.2459899932146072 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.09032661467790604 1.131766676902771 0.1581645011901856 -0.09032661467790604 1.131766676902771 0.1581645011901856 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 0.1117357686161995 1.130521655082703 0.1590335518121719 0.1117357686161995 1.130521655082703 0.1590335518121719 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.09047000855207443 1.083552598953247 0.162391409277916 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1115765795111656 1.083741784095764 0.1624274700880051 0.1115765795111656 1.083741784095764 0.1624274700880051 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 0.1115765795111656 1.083741784095764 0.1624274700880051 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.08826761692762375 1.138250350952148 0.245403990149498 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.09047000855207443 1.083552598953247 0.162391409277916 -0.05714914947748184 1.090012192726135 0.2493478506803513 -0.08826761692762375 1.138250350952148 0.245403990149498 0.08010108023881912 1.090226411819458 0.2496673315763474 0.08010108023881912 1.090226411819458 0.2496673315763474 -0.08826761692762375 1.138250350952148 0.245403990149498 -0.05714914947748184 1.090012192726135 0.2493478506803513</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"322\" source=\"#ID1327\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1325\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1328\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"966\">-0.0024166884015165 0.07992091046628912 0.9967982783328879 -0.0024166884015165 0.07992091046628912 0.9967982783328879 -0.0024166884015165 0.07992091046628912 0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 0.0024166884015165 -0.07992091046628912 -0.9967982783328879 -0.003110631363261071 0.07783347408664396 0.9969615209646388 -0.003110631363261071 0.07783347408664396 0.9969615209646388 -0.003110631363261071 0.07783347408664396 0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.003110631363261071 -0.07783347408664396 -0.9969615209646388 0.9836178943881302 -0.1019900524990053 0.1486400586339742 0.9383821690531233 -0.3444700849915576 0.02791532462760632 0.999993085877236 -0.00259857559576065 0.002660000488053514 -0.999993085877236 0.00259857559576065 -0.002660000488053514 -0.9383821690531233 0.3444700849915576 -0.02791532462760632 -0.9836178943881302 0.1019900524990053 -0.1486400586339742 -0.001995957895499944 0.07990977967405556 0.9968001019585238 -0.001995957895499944 0.07990977967405556 0.9968001019585238 -0.001995957895499944 0.07990977967405556 0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.001995957895499944 -0.07990977967405556 -0.9968001019585238 0.9610347439268059 0.1218714046724881 0.2481120345503079 0.9654052662832268 0.0893224290906193 0.2449779081753355 -0.9654052662832268 -0.0893224290906193 -0.2449779081753355 -0.9610347439268059 -0.1218714046724881 -0.2481120345503079 0.9999930844790407 -0.002600124498239249 0.00265901235195945 -0.9999930844790407 0.002600124498239249 -0.00265901235195945 -0.9997677002701824 -0.001962063264229214 0.02146382547958299 -0.9997146380314173 -0.002416057679974692 0.02376563003581787 -0.9997652412158105 7.096798190734332e-007 0.02166708231831937 0.9997652412158105 -7.096798190734332e-007 -0.02166708231831937 0.9997146380314173 0.002416057679974692 -0.02376563003581787 0.9997677002701824 0.001962063264229214 -0.02146382547958299 -0.0001447480486744699 0.07898002261828373 0.9968761884382722 -0.0001242652016906591 0.08858072054682997 0.9960689938480989 -0.001884638334509741 0.08147407185733846 0.9966736796732084 0.001884638334509741 -0.08147407185733846 -0.9966736796732084 0.0001242652016906591 -0.08858072054682997 -0.9960689938480989 0.0001447480486744699 -0.07898002261828373 -0.9968761884382722 0.9559355522797811 0.2607780009126028 0.1348408474000981 -0.9559355522797811 -0.2607780009126028 -0.1348408474000981 -0.002445224016861097 0.07991358786941463 0.9967987958225796 -0.002445224016861097 0.07991358786941463 0.9967987958225796 -0.002445224016861097 0.07991358786941463 0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 0.002445224016861097 -0.07991358786941463 -0.9967987958225796 -0.00244232132186794 0.07992222073353468 0.9967981108025743 -0.00244232132186794 0.07992222073353468 0.9967981108025743 -0.00244232132186794 0.07992222073353468 0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 0.00244232132186794 -0.07992222073353468 -0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 -0.002442321321867939 0.07992222073353467 0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 0.002442321321867939 -0.07992222073353467 -0.9967981108025743 -0.9569652647069851 -0.2408069165882212 0.1619552748988548 0.9569652647069851 0.2408069165882212 -0.1619552748988548 -0.9539867307263839 -0.1064385090943651 0.2803215321372131 0.9539867307263839 0.1064385090943651 -0.2803215321372131 -0.001398335844479897 0.07526812206716654 0.9971623511030429 0.001398335844479897 -0.07526812206716654 -0.9971623511030429 -0.002443871020245489 0.07991829436837256 0.9967984218083847 -0.002444424462418968 0.07991536596824644 0.9967986552314407 -0.002444424462418968 0.07991536596824644 0.9967986552314407 0.002444424462418968 -0.07991536596824644 -0.9967986552314407 0.002444424462418968 -0.07991536596824644 -0.9967986552314407 0.002443871020245489 -0.07991829436837256 -0.9967984218083847 0.9989575248213486 6.802289991542292e-005 0.04564930421912409 -0.9989575248213486 -6.802289991542292e-005 -0.04564930421912409 -0.002444750279150375 0.0799185331884759 0.996798400504874 -0.002444750279150375 0.0799185331884759 0.996798400504874 -0.002444750279150375 0.0799185331884759 0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 0.002444750279150375 -0.0799185331884759 -0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 -0.002444750279150353 0.07991853318847594 0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 0.002444750279150353 -0.07991853318847594 -0.996798400504874 -0.9616780887009002 -0.0003991166626293087 0.2741807696000454 0.9616780887009002 0.0003991166626293087 -0.2741807696000454 -0.9791900689292776 0.1393278140334234 0.1475620857366297 0.9791900689292776 -0.1393278140334234 -0.1475620857366297 -0.002381608891005497 0.08090506957136846 0.9967189662370946 0.002381608891005497 -0.08090506957136846 -0.9967189662370946 -0.002445265856695502 0.07991799161119449 0.9967984426611648 -0.002444579976353827 0.07991582004189891 0.9967986184459579 0.002444579976353827 -0.07991582004189891 -0.9967986184459579 0.002445265856695502 -0.07991799161119449 -0.9967984426611648 -0.002443667558720246 0.07991812532567823 0.9967984358601753 -0.002444421147860942 0.07991555159334562 0.9967986403576118 0.002444421147860942 -0.07991555159334562 -0.9967986403576118 0.002443667558720246 -0.07991812532567823 -0.9967984358601753 0.9510292064959941 -0.3017074737471085 0.06720155263636195 -0.9510292064959941 0.3017074737471085 -0.06720155263636195 -0.002445270659689314 0.0799165646360902 0.9967985570556203 -0.002445270659689314 0.0799165646360902 0.9967985570556203 0.002445270659689314 -0.0799165646360902 -0.9967985570556203 0.002445270659689314 -0.0799165646360902 -0.9967985570556203 -0.9137266110828168 0.4050395357152827 -0.0323520433150555 0.9137266110828168 -0.4050395357152827 0.0323520433150555 -0.002394921818000142 0.07906623005156864 0.9968664883598597 0.002394921818000142 -0.07906623005156864 -0.9968664883598597 -0.002443729418870228 0.07991713631775732 0.9967985150015506 -0.002442987674479496 0.07991918003998787 0.9967983529646096 0.002442987674479496 -0.07991918003998787 -0.9967983529646096 0.002443729418870228 -0.07991713631775732 -0.9967985150015506 0.9802656257872744 -0.09160270883204402 0.1751806114686077 -0.9802656257872744 0.09160270883204402 -0.1751806114686077 -0.9999953927080971 0.001598781537811305 -0.00258039922741558 0.9999953927080971 -0.001598781537811305 0.00258039922741558 -0.002043259112987656 0.08061333388167614 0.9967433548776127 0.002043259112987656 -0.08061333388167614 -0.9967433548776127 -0.9667576730943045 -0.2181100199662426 0.1334451973793394 0.9667576730943045 0.2181100199662426 -0.1334451973793394 -0.002443338460478632 0.0799196743506909 0.9967983124729131 0.002443338460478632 -0.0799196743506909 -0.9967983124729131 0.9584067278384761 0.1063003813176155 0.2648712384644182 -0.9584067278384761 -0.1063003813176155 -0.2648712384644182 -0.002278182316047894 0.07872327552518302 0.9968939039716919 0.002278182316047894 -0.07872327552518302 -0.9968939039716919 -0.9623422278865017 -0.1024231927397928 0.2518073192252984 0.9623422278865017 0.1024231927397928 -0.2518073192252984 -0.002445857659568367 0.07991052514313757 0.9967990398027363 0.002445857659568367 -0.07991052514313757 -0.9967990398027363 0.9578191650142742 0.1254879398364993 0.2585250937277644 -0.9578191650142742 -0.1254879398364993 -0.2585250937277644 -0.001577468944671645 0.08182061186603903 0.9966458242854357 0.001577468944671645 -0.08182061186603903 -0.9966458242854357 -0.9669997358230092 -0.04406785290913275 0.2509373134035851 0.9669997358230092 0.04406785290913275 -0.2509373134035851 -0.002445817810539561 0.07992501388276625 0.9967978782737639 -0.002445817810539561 0.07992501388276625 0.9967978782737639 -0.002445817810539561 0.07992501388276625 0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.002445817810539561 -0.07992501388276625 -0.9967978782737639 0.9610764950953273 0.2399997840510825 0.1368651680695834 -0.9610764950953273 -0.2399997840510825 -0.1368651680695834 -0.00158449559484253 0.07788846641257956 0.9969608197785942 -0.00158449559484253 0.07788846641257956 0.9969608197785942 -0.00158449559484253 0.07788846641257956 0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 0.00158449559484253 -0.07788846641257956 -0.9969608197785942 -0.9840427171014795 0.124301408755054 0.1273149272514676 0.9840427171014795 -0.124301408755054 -0.1273149272514676 -0.9403492166118542 0.3390969407785543 -0.02750664596234511 0.9403492166118542 -0.3390969407785543 0.02750664596234511 -0.00244355684856112 0.07991609501014736 0.9967985989096581 -0.00244355684856112 0.07991609501014736 0.9967985989096581 -0.00244355684856112 0.07991609501014736 0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 0.00244355684856112 -0.07991609501014736 -0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 -0.002443556848561121 0.07991609501014738 0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.002443556848561121 -0.07991609501014738 -0.9967985989096581 0.9989802704922386 0.009779687184768413 0.0440769427912357 -0.9989802704922386 -0.009779687184768413 -0.0440769427912357 -0.002381196982845648 0.0817170499956124 0.9966527246944864 -0.002381196982845648 0.0817170499956124 0.9966527246944864 -0.002381196982845648 0.0817170499956124 0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 0.002381196982845648 -0.0817170499956124 -0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 -0.002381196982845646 0.08171704999561237 0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 0.002381196982845646 -0.08171704999561237 -0.9966527246944864 -0.9999969486514102 0.000139643403180076 -0.002466411885425263 0.9999969486514102 -0.000139643403180076 0.002466411885425263 -0.002443516755476382 0.07992008569338822 0.9967982790558114 -0.002443516755476382 0.07992008569338822 0.9967982790558114 -0.002443516755476382 0.07992008569338822 0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 0.002443516755476382 -0.07992008569338822 -0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 -0.002443516755476384 0.07992008569338822 0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.002443516755476384 -0.07992008569338822 -0.9967982790558114 0.9504660443541458 -0.30389861198688 0.06526815580534208 -0.9504660443541458 0.30389861198688 -0.06526815580534208 -0.002398955504286184 0.07991844676457421 0.9967985186983508 -0.002398955504286184 0.07991844676457421 0.9967985186983508 -0.002398955504286184 0.07991844676457421 0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 0.002398955504286184 -0.07991844676457421 -0.9967985186983508 -0.968220462326018 -0.2223397110796081 0.1145172004994391 0.968220462326018 0.2223397110796081 -0.1145172004994391 -0.002443761099980847 0.07992071991256082 0.9967982276069437 -0.002443761099980847 0.07992071991256082 0.9967982276069437 -0.002443761099980847 0.07992071991256082 0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 0.002443761099980847 -0.07992071991256082 -0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 -0.002443761099980844 0.07992071991256082 0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.002443761099980844 -0.07992071991256082 -0.9967982276069437 0.9833765888465397 -0.08333360548540723 0.1613257409880592 -0.9833765888465397 0.08333360548540723 -0.1613257409880592 -0.003795766429472628 0.08361081189266659 0.996491256505476 -0.003795766429472628 0.08361081189266659 0.996491256505476 -0.003795766429472628 0.08361081189266659 0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 0.003795766429472628 -0.08361081189266659 -0.996491256505476 -0.9784827002644059 -0.0745133946312441 0.1924041561500301 0.9784827002644059 0.0745133946312441 -0.1924041561500301 -0.002444991716577943 0.07991751699015108 0.9967984813860998 -0.002445551076435985 0.07990965451043451 0.9967991103507042 -0.002443767676182471 0.07991733785490238 0.9967984987497376 0.002443767676182471 -0.07991733785490238 -0.9967984987497376 0.002445551076435985 -0.07990965451043451 -0.9967991103507042 0.002444991716577943 -0.07991751699015108 -0.9967984813860998 0.9693050042447923 0.08319554462812245 0.2313575373745867 -0.9693050042447923 -0.08319554462812245 -0.2313575373745867 -0.003456718727903946 0.07669146954277205 0.9970488802435948 -0.003213004740076926 0.08123887225724388 0.9966894813505917 -0.00380606245701583 0.07821620482660538 0.9969291545496579 0.00380606245701583 -0.07821620482660538 -0.9969291545496579 0.003213004740076926 -0.08123887225724388 -0.9966894813505917 0.003456718727903946 -0.07669146954277205 -0.9970488802435948 -0.9739892050184895 -0.0922701735317274 0.2069571056617187 0.9739892050184895 0.0922701735317274 -0.2069571056617187 -0.002809236550367398 0.07987191534697595 0.9968011764282834 0.002809236550367398 -0.07987191534697595 -0.9968011764282834 -0.002446251211139701 0.07991196601776093 0.996798923325155 0.002446251211139701 -0.07991196601776093 -0.996798923325155 0.9685060428241819 0.1121048662211712 0.2223253111604196 -0.9685060428241819 -0.1121048662211712 -0.2223253111604196 -0.9609854155315478 0.1850092940482606 0.2056175874078444 0.9609854155315478 -0.1850092940482606 -0.2056175874078444 -0.002730819450908612 0.0795900882636436 0.996823936548131 0.002730819450908612 -0.0795900882636436 -0.996823936548131 -0.002446316978625154 0.07991709286511523 0.9967985121383503 0.002446316978625154 -0.07991709286511523 -0.9967985121383503 0.9665484020399958 0.2298013491319769 0.1139101683391513 -0.9665484020399958 -0.2298013491319769 -0.1139101683391513 -0.8667040419528477 0.4987022577925894 -0.01096183083112856 0.8667040419528477 -0.4987022577925894 0.01096183083112856 -0.002935468462640064 0.07965440775023729 0.9968182173048723 0.002935468462640064 -0.07965440775023729 -0.9968182173048723 0.9995874389300169 0.005994783610162951 0.02808940196580926 -0.9995874389300169 -0.005994783610162951 -0.02808940196580926 -0.002445480732065667 0.07991923298229058 0.9967983426067238 -0.002446450689720361 0.07991678813471327 0.9967985362415288 0.002446450689720361 -0.07991678813471327 -0.9967985362415288 0.002445480732065667 -0.07991923298229058 -0.9967983426067238 -0.9996776451341545 0.001994494988195014 0.02531062640026721 -0.9995283515176999 -0.004230687603517372 0.03041670256143396 -0.9996516075833083 6.011857201776541e-005 0.02639431457463623 0.9996516075833083 -6.011857201776541e-005 -0.02639431457463623 0.9995283515176999 0.004230687603517372 -0.03041670256143396 0.9996776451341545 -0.001994494988195014 -0.02531062640026721 -0.5499063532088864 -0.8312969104678514 -0.08092248974857767 -0.5053849952022258 -0.8592625535158552 0.07908141848663544 -0.5211302495544821 -0.8530062356488047 0.02834827937528588 0.5211302495544821 0.8530062356488047 -0.02834827937528588 0.5053849952022258 0.8592625535158552 -0.07908141848663544 0.5499063532088864 0.8312969104678514 0.08092248974857767 -0.003264430936771524 0.07768920491457423 0.996972281926835 0.003264430936771524 -0.07768920491457423 -0.996972281926835 0.9600985396372078 -0.2755269031283226 0.04791367069028046 -0.9600985396372078 0.2755269031283226 -0.04791367069028046 -0.002445359849831862 0.07991908453884576 0.9967983548048611 -0.0024464506121011 0.07991642136050764 0.9967985656472086 0.0024464506121011 -0.07991642136050764 -0.9967985656472086 0.002445359849831862 -0.07991908453884576 -0.9967983548048611 -0.9724788741558994 -0.1821300782318736 0.1453047622197095 0.9724788741558994 0.1821300782318736 -0.1453047622197095 -0.002295832167474499 0.08251084577785184 0.9965875222396087 0.002295832167474499 -0.08251084577785184 -0.9965875222396087 -0.5630349425936618 -0.8140319658878363 -0.142631034250392 0.5630349425936618 0.8140319658878363 0.142631034250392 0.9856814792948521 -0.08674609407977396 0.14459300307074 -0.9856814792948521 0.08674609407977396 -0.14459300307074 -0.002444373616892614 0.0799221279444856 0.9967981132117207 0.002444373616892614 -0.0799221279444856 -0.9967981132117207 -0.9728132926628291 -0.180687705249497 0.1448663204135999 0.9728132926628291 0.180687705249497 -0.1448663204135999 -0.003308252190807438 0.07460958167797054 0.9972073334012742 0.003308252190807438 -0.07460958167797054 -0.9972073334012742 0.9409405930065078 0.02131297530999618 0.3379002182834409 0.9174339737188549 -0.365243963553171 0.1578345683125247 -0.9174339737188549 0.365243963553171 -0.1578345683125247 -0.9409405930065078 -0.02131297530999618 -0.3379002182834409 -0.002444379353908034 0.07992126607955948 0.9967981823006173 -0.002444379353908034 0.07992126607955948 0.9967981823006173 0.002444379353908034 -0.07992126607955948 -0.9967981823006173 0.002444379353908034 -0.07992126607955948 -0.9967981823006173 -0.8017203786756358 -0.4891027836453612 0.3435446134733509 0.8017203786756358 0.4891027836453612 -0.3435446134733509 -0.0002595716808050765 0.08733536323079442 0.9961789332001998 0.0002595716808050765 -0.08733536323079442 -0.9961789332001998 -0.002445010281564422 0.07991906958635045 0.9967983568611936 -0.002444552802717854 0.0799211787639864 0.9967981888760481 -0.002444462435903807 0.07992097684034019 0.996798205287452 0.002444462435903807 -0.07992097684034019 -0.996798205287452 0.002444552802717854 -0.0799211787639864 -0.9967981888760481 0.002445010281564422 -0.07991906958635045 -0.9967983568611936</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"322\" source=\"#ID1328\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1326\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1324\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1325\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"204\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 18 19 20 21 22 23 24 25 12 17 26 27 14 13 28 29 16 15 12 25 13 16 26 17 30 31 32 33 34 35 36 37 38 39 40 41 24 42 25 26 43 27 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 30 32 33 35 63 64 30 62 63 35 65 66 36 38 39 41 67 68 69 70 71 72 73 74 42 24 27 43 75 76 77 78 79 80 81 82 83 84 85 86 87 88 64 62 63 65 89 90 64 88 89 65 91 92 66 38 39 67 93 68 94 95 96 97 73 98 68 99 100 73 101 74 102 42 43 103 75 94 104 105 106 107 97 90 88 108 109 89 91 66 92 110 111 93 67 112 113 98 101 114 115 116 102 74 75 103 117 118 90 108 109 91 119 120 66 110 111 67 121 122 118 108 109 119 123 124 112 98 101 115 125 116 126 102 103 127 117 128 120 110 111 121 129 130 118 122 123 119 131 132 112 124 125 115 133 134 126 116 117 127 135 136 120 128 129 121 137 138 130 122 123 131 139 140 141 142 143 144 145 140 141 142 143 144 145 134 146 126 127 147 135 148 149 150 151 152 153 148 149 150 151 152 153 154 130 138 139 131 155 156 154 138 139 155 157 158 159 160 161 162 163 164 165 166 167 168 169 170 146 134 135 147 171 172 173 174 175 176 177 178 179 180 181 182 183 184 154 156 157 155 185 186 187 188 189 190 191 192 193 194 195 196 197 170 198 146 147 199 171 200 201 202 203 204 205 200 201 202 203 204 205 206 184 156 157 185 207 208 209 210 211 212 213 214 215 216 217 218 219 220 198 170 171 199 221 222 223 224 225 226 227 222 223 224 225 226 227 228 184 206 207 185 229 230 231 232 233 234 235 220 236 198 199 237 221 238 239 240 241 242 243 244 228 206 207 229 245 246 239 238 243 242 247 248 231 230 235 234 249 250 236 220 221 237 251 252 228 244 245 229 253 246 238 254 255 243 247 248 230 256 257 235 249 250 258 236 237 259 251 260 252 244 245 253 261 262 246 254 255 247 263 264 258 250 251 259 265 266 248 267 268 249 269 270 271 272 273 274 275 276 277 278 279 280 281 282 262 254 255 263 283 264 284 258 259 285 265 286 266 287 288 269 289 290 270 272 273 275 291 292 262 282 283 263 293 276 278 294 295 279 281 296 284 264 265 285 297 298 266 286 289 269 299 300 270 290 291 275 301 302 292 282 283 293 303 304 305 296 297 306 307 296 305 284 285 306 297 308 309 286 289 310 311 312 300 290 291 301 313 314 292 302 303 293 315 316 317 318 319 320 321</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1326\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1329\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1330\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1333\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"192\">0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.062657833099365 0.1071692258119583 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.3808706104755402 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.053598642349243 -0.00582122802734375 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.166590332984924 -0.01487980782985687 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.1949208527803421 1.062657833099365 0.1071692258119583 0.3808706104755402 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.062657833099365 0.1071692258119583 0.1949208527803421 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.3808706104755402 1.175649523735046 0.09811040759086609 0.1949208527803421 1.175649523735046 0.09811040759086609 0.1949208527803421 1.062657833099365 0.1071692258119583</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"64\" source=\"#ID1333\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1331\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1334\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"192\">0 -0.07991391507360633 -0.9968017687472311 0 -0.07991391507360633 -0.9968017687472311 0 -0.07991391507360633 -0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 -0 0.07991391507360633 0.9968017687472311 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 1.147561862414205e-017 -0.07991391507360633 -0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 -1.147561862414205e-017 0.07991391507360633 0.9968017687472311 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 1.7213868570675e-017 0.9968012562723986 -0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 -1.7213868570675e-017 -0.9968012562723986 0.07992030714260223 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 1.147586410504622e-017 -0.9968012697068756 0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 -1.147586410504622e-017 0.9968012697068756 -0.07992013958171605 1 0 0 -1 -0 -0 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 -5.737932052523109e-018 -0.9968012697068756 0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 5.737932052523109e-018 0.9968012697068756 -0.079920139581716 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 5.737956190225002e-018 0.9968012562723986 -0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 -5.737956190225002e-018 -0.9968012562723986 0.07992030714260226 1.147561669525629e-017 0.07991600494652802 0.996801601199249 1.147561669525629e-017 0.07991600494652802 0.996801601199249 1.147561669525629e-017 0.07991600494652802 0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1.147561669525629e-017 -0.07991600494652802 -0.996801601199249 -1 0 0 1 -0 -0 5.737808347628146e-018 0.07991600494652806 0.996801601199249 5.737808347628146e-018 0.07991600494652806 0.996801601199249 5.737808347628146e-018 0.07991600494652806 0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249 -5.737808347628146e-018 -0.07991600494652806 -0.996801601199249</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"64\" source=\"#ID1334\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1332\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1330\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1331\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 38 40 41 43 57 58 59 60 61 62 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1332\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1335\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1336\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1339\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"282\">0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.0440603718161583 1.045381546020508 0.2065596729516983 0.0440603718161583 1.045381546020508 0.2065596729516983 0.07561483234167099 1.003175139427185 0.2072263807058334 0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.06279636174440384 1.001669645309448 0.1831667721271515 0.002107266336679459 0.9911500215530396 0.2126912921667099 0.002107266336679459 0.9911500215530396 0.2126912921667099 0.06279636174440384 1.001669645309448 0.1831667721271515 0.07561483234167099 1.003175139427185 0.2072263807058334 0.03254434466362 1.04327380657196 0.1803381443023682 0.03254434466362 1.04327380657196 0.1803381443023682 0.03597279638051987 1.047588586807251 0.2340257316827774 0.03597279638051987 1.047588586807251 0.2340257316827774 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03010775707662106 1.00167453289032 0.1743656992912293 0.0719255730509758 1.00575578212738 0.235799714922905 0.0719255730509758 1.00575578212738 0.235799714922905 0.04405999183654785 1.087227463722229 0.2031978219747543 0.04405999183654785 1.087227463722229 0.2031978219747543 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03010775707662106 1.00167453289032 0.1743656992912293 0.03597242385149002 1.089434146881104 0.2306637018918991 0.03597242385149002 1.089434146881104 0.2306637018918991 0.0719255730509758 1.00575578212738 0.235799714922905 0.0719255730509758 1.00575578212738 0.235799714922905 -0.02109381183981895 1.000947713851929 0.1777425706386566 -0.02109381183981895 1.000947713851929 0.1777425706386566 0.04016397893428803 1.007267832756043 0.2528495788574219 0.04016397893428803 1.007267832756043 0.2528495788574219 0.03254392743110657 1.085119843482971 0.1769760102033615 0.03254392743110657 1.085119843482971 0.1769760102033615 0.006812980398535729 1.042252779006958 0.1676288843154907 0.006812980398535729 1.042252779006958 0.1676288843154907 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206574775278568 1.048860192298889 0.2498844712972641 0.01206574775278568 1.048860192298889 0.2498844712972641 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.02109381183981895 1.000947713851929 0.1777425706386566 -0.02109381183981895 1.000947713851929 0.1777425706386566 0.04016397893428803 1.007267832756043 0.2528495788574219 0.04016397893428803 1.007267832756043 0.2528495788574219 -0.0164741575717926 1.006759405136108 0.2500763237476349 -0.0164741575717926 1.006759405136108 0.2500763237476349 0.03254392743110657 1.085119843482971 0.1769760102033615 0.04405999183654785 1.087227463722229 0.2031978219747543 0.002163510769605637 1.087440609931946 0.2058562785387039 0.002163510769605637 1.087440609931946 0.2058562785387039 0.04405999183654785 1.087227463722229 0.2031978219747543 0.03254392743110657 1.085119843482971 0.1769760102033615 0.03597242385149002 1.089434146881104 0.2306637018918991 0.03597242385149002 1.089434146881104 0.2306637018918991 0.01206542737782002 1.090707302093506 0.2465221434831619 0.01206542737782002 1.090707302093506 0.2465221434831619 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.02109413221478462 1.042794585227966 0.1743806302547455 -0.02109413221478462 1.042794585227966 0.1743806302547455 -0.03811701387166977 1.002800226211548 0.2007950842380524 -0.0164746418595314 1.048605918884277 0.2467141896486282 -0.0164746418595314 1.048605918884277 0.2467141896486282 -0.0164741575717926 1.006759405136108 0.2500763237476349 -0.0164741575717926 1.006759405136108 0.2500763237476349 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 0.006812553852796555 1.084100604057312 0.1642670631408691 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.01647506654262543 1.090454697608948 0.243352010846138 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03811760619282723 1.044645190238953 0.1974330991506577 -0.03811760619282723 1.044645190238953 0.1974330991506577 -0.03629322722554207 1.005095720291138 0.2293615192174912 -0.03629376366734505 1.046942353248596 0.2259997576475143 -0.03629376366734505 1.046942353248596 0.2259997576475143 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.02109466679394245 1.08464241027832 0.1710185706615448 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03629424050450325 1.088787794113159 0.2226374596357346 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062 -0.03811792656779289 1.086493968963623 0.1940709054470062</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"94\" source=\"#ID1339\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1337\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1340\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"282\">0.6276871539837947 0.4309998440177499 -0.6482653555299707 0.7756951975660233 0.6093867961617383 -0.1641483875544934 0.9404190385916551 0.327759812088853 -0.09047395997648566 -0.9404190385916551 -0.327759812088853 0.09047395997648566 -0.7756951975660233 -0.6093867961617383 0.1641483875544934 -0.6276871539837947 -0.4309998440177499 0.6482653555299707 0.1648427918008577 -0.9850664580310059 0.04970842236027692 0.129387054397268 -0.9878566338463108 -0.08601314504326615 -0.05568244469267168 -0.9964744984836782 0.06275379848861432 0.05568244469267168 0.9964744984836782 -0.06275379848861432 -0.129387054397268 0.9878566338463108 0.08601314504326615 -0.1648427918008577 0.9850664580310059 -0.04970842236027692 0.6563058127916149 0.128948669986271 -0.7433941892459947 -0.6563058127916149 -0.128948669986271 0.7433941892459947 0.7479255132941836 0.3269821441431697 0.5776591589987712 -0.7479255132941836 -0.3269821441431697 -0.5776591589987712 0.03982993058637029 -0.9705873949438616 -0.2374314330613652 -0.03982993058637029 0.9705873949438616 0.2374314330613652 0.1452430843573787 -0.9735269213220822 0.1764930024321196 -0.1452430843573787 0.9735269213220822 -0.1764930024321196 0.997980356608158 -0.00507857796887716 -0.06331994843702948 -0.997980356608158 0.00507857796887716 0.06331994843702948 0.1918851097947965 0.01069227642552562 -0.9813591492740459 -0.1918851097947965 -0.01069227642552562 0.9813591492740459 0.8053359431313069 0.04748302428073999 0.5909140217544032 -0.8053359431313069 -0.04748302428073999 -0.5909140217544032 0.715602061077506 0.6137473135264319 0.3335085086181657 -0.715602061077506 -0.6137473135264319 -0.3335085086181657 -0.1366997851774793 -0.9737080860083718 -0.1822244000520906 0.1366997851774793 0.9737080860083718 0.1822244000520906 0.07059561893914663 -0.9470573698230294 0.3132069553034937 -0.07059561893914663 0.9470573698230294 -0.3132069553034937 0.7236637528950451 -0.05526205440008075 -0.687936681744288 -0.7236637528950451 0.05526205440008075 0.687936681744288 0.08437475756259349 -0.0702733835124722 -0.9939529927798209 -0.08437475756259349 0.0702733835124722 0.9939529927798209 0.2358549030278205 0.07783122909426544 0.968666487752835 -0.2358549030278205 -0.07783122909426544 -0.968666487752835 0.1654666873681945 0.1148860508075438 0.9795008783565447 -0.1654666873681945 -0.1148860508075438 -0.9795008783565447 -0.2772541405953719 -0.9607904196022034 -0.003451249533688699 0.2772541405953719 0.9607904196022034 0.003451249533688699 -0.5103626176939258 -0.1084744471579512 -0.8530904364569917 0.5103626176939258 0.1084744471579512 0.8530904364569917 0.2995652230669426 0.2766979128121305 0.913071159425301 -0.2995652230669426 -0.2766979128121305 -0.913071159425301 -0.1158973363211239 -0.9357427097883285 0.333096665416609 0.1158973363211239 0.9357427097883285 -0.333096665416609 1.970778470046658e-005 0.9967884877806362 -0.08007939959562506 -1.150195081025581e-005 0.9967868070093873 -0.08010031984790116 -7.282118987466312e-007 0.9967885040606478 -0.08007919937165804 7.282118987466312e-007 -0.9967885040606478 0.08007919937165804 1.150195081025581e-005 -0.9967868070093873 0.08010031984790116 -1.970778470046658e-005 -0.9967884877806362 0.08007939959562506 -1.889549755688283e-005 0.9967887057027286 -0.08007668715949433 1.889549755688283e-005 -0.9967887057027286 0.08007668715949433 2.329386935487206e-005 0.9967886177533125 -0.08007778078116733 -2.329386935487206e-005 -0.9967886177533125 0.08007778078116733 -0.2605487185606611 -0.9462888235931847 0.1914466703785265 0.2605487185606611 0.9462888235931847 -0.1914466703785265 -0.9595220654229494 -0.02256570486844812 -0.2807279731880444 -0.5540160790910454 -0.06667433737339892 -0.8298317400801218 0.5540160790910454 0.06667433737339892 0.8298317400801218 0.9595220654229494 0.02256570486844812 0.2807279731880444 -0.4357782588810896 0.063090866032614 0.8978401036430822 0.4357782588810896 -0.063090866032614 -0.8978401036430822 -0.4168015697498971 0.07279112339523536 0.9060783099759541 0.4168015697498971 -0.07279112339523536 -0.9060783099759541 1.845361895121706e-005 0.9967908784027425 -0.08004963705447339 -1.845361895121706e-005 -0.9967908784027425 0.08004963705447339 0.1107318538263125 -0.07958489032305821 -0.9906587211449031 -0.1107318538263125 0.07958489032305821 0.9906587211449031 7.579804948945358e-006 0.9967850151258243 -0.08012261580325931 -7.579804948945358e-006 -0.9967850151258243 0.08012261580325931 -0.4439788070510328 0.07175525117515293 0.8931595617907993 0.4439788070510328 -0.07175525117515293 -0.8931595617907993 -0.9160709345376484 0.03210037665102224 0.3997294193753845 -0.9595223797540715 -0.02256522993427959 -0.2807269369852064 0.9595223797540715 0.02256522993427959 0.2807269369852064 0.9160709345376484 -0.03210037665102224 -0.3997294193753845 -0.9160688904640111 0.03210634924118765 0.3997336241329201 0.9160688904640111 -0.03210634924118765 -0.3997336241329201 -7.835666853594533e-006 0.9967902102202908 -0.08005795867739281 7.835666853594533e-006 -0.9967902102202908 0.08005795867739281 -3.309266463157973e-005 0.9967870438756097 -0.08009736616518035 3.309266463157973e-005 -0.9967870438756097 0.08009736616518035 -0.5540120246036621 -0.06667498928042141 -0.8298343945625578 0.5540120246036621 0.06667498928042141 0.8298343945625578 -0.9160696316409548 0.03210638439341102 0.3997319227512211 0.9160696316409548 -0.03210638439341102 -0.3997319227512211 -4.263568844941531e-006 0.9967907668418901 -0.08005102822936799 4.263568844941531e-006 -0.9967907668418901 0.08005102822936799 -0.9595207149823204 -0.02256288350226006 -0.2807328156947099 0.9595207149823204 0.02256288350226006 0.2807328156947099</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"94\" source=\"#ID1340\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1338\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1336\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1337\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"108\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 7 16 8 9 17 10 6 8 18 19 9 11 12 2 20 21 3 13 12 22 0 5 23 13 2 14 24 25 15 3 1 26 14 15 27 4 16 28 8 9 29 17 18 8 30 31 9 19 32 12 20 21 13 33 20 2 24 25 3 21 34 22 12 13 23 35 36 24 14 15 25 37 38 14 26 27 15 39 28 40 8 9 41 29 34 42 22 23 43 35 44 38 26 27 39 45 8 46 30 31 47 9 48 49 50 51 52 53 32 34 12 13 35 33 50 49 54 55 52 51 50 54 56 57 55 51 38 36 14 15 37 39 8 40 58 59 41 9 60 42 61 62 43 63 61 42 34 35 43 62 64 38 44 45 39 65 66 64 44 45 65 67 8 58 46 47 59 9 68 48 50 51 53 69 70 34 32 33 35 71 72 50 56 57 51 73 74 36 38 39 37 75 76 60 77 78 63 79 60 61 77 78 62 63 70 61 34 35 62 71 64 74 38 39 75 65 66 80 64 65 81 67 66 76 80 81 79 67 82 68 50 51 69 83 84 50 72 73 51 85 76 77 80 81 78 79 77 61 86 87 62 78 86 61 70 71 62 87 64 88 74 75 89 65 64 80 88 89 81 65 90 82 50 51 83 91 90 50 84 85 51 91 80 77 92 93 78 81 77 86 92 93 87 78 80 92 88 89 93 81</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1338\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1341\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1342\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1345\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"438\">-0.2801137268543243 1.370505452156067 0.08972623944282532 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2717342674732208 1.375396370887756 0.1507259011268616 -0.2717342674732208 1.375396370887756 0.1507259011268616 -0.2794758081436157 1.331514120101929 0.0975252240896225 -0.2801137268543243 1.370505452156067 0.08972623944282532 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.4036960601806641 1.371857523918152 0.1065950393676758 -0.4030579030513763 1.332866549491882 0.1143944412469864 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.4030579030513763 1.411593675613403 0.1080823689699173 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.2794758081436157 1.410240530967712 0.09121358394622803 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.27765953540802 1.299203872680664 0.1134237200021744 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.300556778907776 0.1302925646305084 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.4012418985366821 1.446024298667908 0.1186302453279495 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.2749411463737488 1.27849268913269 0.1350010484457016 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.27765953540802 1.444672346115112 0.1017614454030991 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.2717342674732208 1.272534251213074 0.1589727252721787 -0.398522824048996 1.279844164848328 0.1518701612949371 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.398522824048996 1.469910025596619 0.1366322189569473 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2749411463737488 1.468558073043823 0.119763508439064 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.2685275375843048 1.282235026359558 0.1816885769367218 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2717342674732208 1.478258013725281 0.1424795389175415 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.273886203765869 0.175841212272644 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.479610323905945 0.1593480408191681 -0.3953159749507904 1.376748085021973 0.1675946116447449 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.2658087909221649 1.306120038032532 0.199690505862236 -0.3921090662479401 1.283586859703064 0.1985572278499603 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.3921090662479401 1.473652601242065 0.1833195239305496 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2685275375843048 1.472299575805664 0.1664509028196335 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.2639923989772797 1.340550422668457 0.2102380245923996 -0.3893906474113464 1.307471871376038 0.2165594547986984 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.3893906474113464 1.452941656112671 0.2048969566822052 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2658087909221649 1.451588273048401 0.1880283057689667 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.2633541226387024 1.380287408828735 0.211725726723671 -0.3875734508037567 1.341904044151306 0.2271073311567307 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.3875734508037567 1.420629858970642 0.2207957655191422 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.2639923989772797 1.419278621673584 0.2039264142513275 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677 -0.386936217546463 1.381638765335083 0.2285948544740677</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"146\" source=\"#ID1345\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1343\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1346\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"438\">-0.1356700480673765 -0.07917526411310574 -0.987585396616422 -0.1356717587444433 -0.07918105062319039 -0.9875846976849111 -0.131471833847658 -0.3228375455041391 -0.9372785477741379 0.131471833847658 0.3228375455041391 0.9372785477741379 0.1356717587444433 0.07918105062319039 0.9875846976849111 0.1356700480673765 0.07917526411310574 0.987585396616422 0.9907549594614613 -0.01084161144827005 -0.1352296926112117 0.9907553066324637 -0.01084267929951237 -0.1352270634348798 0.9907545025340931 -0.01084171762083586 -0.1352330317172986 -0.9907545025340931 0.01084171762083586 0.1352330317172986 -0.9907553066324637 0.01084267929951237 0.1352270634348798 -0.9907549594614613 0.01084161144827005 0.1352296926112117 -0.1314728281855081 -0.3228414075762337 -0.9372770780314113 0.1314728281855081 0.3228414075762337 0.9372770780314113 -0.1314692192096207 0.1693882077956309 -0.9767412551234831 0.1314692192096207 -0.1693882077956309 0.9767412551234831 0.9907553387548729 -0.01084410526579882 -0.1352267137428888 -0.9907553387548729 0.01084410526579882 0.1352267137428888 0.9907553433962273 -0.0108397264534755 -0.1352270308120293 -0.9907553433962273 0.0108397264534755 0.1352270308120293 -0.9907545485809562 0.01084668739650943 0.135232295841888 -0.9907535624333586 0.01084306642662415 0.1352398108401405 -0.9907537588504309 0.01084231220904852 0.1352384323692929 0.9907537588504309 -0.01084231220904852 -0.1352384323692929 0.9907535624333586 -0.01084306642662415 -0.1352398108401405 0.9907545485809562 -0.01084668739650943 -0.135232295841888 -0.1152753808899663 -0.5929332692716832 -0.7969577935822366 0.1152753808899663 0.5929332692716832 0.7969577935822366 -0.9907546911898524 0.01083669708757584 0.1352320519756046 0.9907546911898524 -0.01083669708757584 -0.1352320519756046 -0.1314704096508954 0.1693831609902619 -0.9767419701022235 0.1314704096508954 -0.1693831609902619 0.9767419701022235 0.9907552515571781 -0.01084377265302208 -0.1352273792784672 0.9907545280392873 -0.01084287687524467 -0.1352327519157898 -0.9907545280392873 0.01084287687524467 0.1352327519157898 -0.9907552515571781 0.01084377265302208 0.1352273792784672 0.9907553910903142 -0.01083804725477862 -0.1352268159692522 -0.9907553910903142 0.01083804725477862 0.1352268159692522 -0.990752856690359 0.0108439365066572 0.1352449111831305 0.990752856690359 -0.0108439365066572 -0.1352449111831305 -0.1152730989501126 -0.5929230807293835 -0.7969657037770286 0.1152730989501126 0.5929230807293835 0.7969657037770286 -0.9907528892232725 0.01084143558253761 0.1352448733603154 0.9907528892232725 -0.01084143558253761 -0.1352448733603154 -0.11527371476005 0.4583767681188761 -0.8812506505724197 0.11527371476005 -0.4583767681188761 0.8812506505724197 0.990754380856577 -0.01084218444689922 -0.1352338857310568 -0.990754380856577 0.01084218444689922 0.1352338857310568 -0.07441361952230829 -0.8769020836287289 -0.4748740348315358 0.07441361952230829 0.8769020836287289 0.4748740348315358 -0.1152751037892964 0.4583732049641491 -0.8812523222194998 0.1152751037892964 -0.4583732049641491 0.8812523222194998 0.9907553006407596 -0.01083849785456402 -0.1352274425421666 0.9907544045609922 -0.0108406531823145 -0.1352338348253676 -0.9907544045609922 0.0108406531823145 0.1352338348253676 -0.9907553006407596 0.01083849785456402 0.1352274425421666 -0.9907530489548243 0.01084127892656997 0.1352437157799057 0.9907530489548243 -0.01084127892656997 -0.1352437157799057 -0.9907530808765145 0.01084411850094725 0.1352432542777355 0.9907530808765145 -0.01084411850094725 -0.1352432542777355 0.9907542375847659 -0.01084303923369326 -0.1352348668354655 -0.9907542375847659 0.01084303923369326 0.1352348668354655 -0.07441248060794727 -0.8769001220509307 -0.4748778355291333 3.192874926016029e-006 -0.9968024692705665 0.07990517659017407 -3.192874926016029e-006 0.9968024692705665 -0.07990517659017407 0.07441248060794727 0.8769001220509307 0.4748778355291333 -0.0744176951841353 0.7900494079782563 -0.6085096051803028 0.0744176951841353 -0.7900494079782563 0.6085096051803028 -0.07441523278592301 0.7900546838570458 -0.608503056397386 0.07441523278592301 -0.7900546838570458 0.608503056397386 0.9907543028327227 -0.01084167648458662 -0.1352344980744529 -0.9907543028327227 0.01084167648458662 0.1352344980744529 -0.9907538262053057 0.0108422411242947 0.1352379446270524 -0.9907538262053057 0.0108422411242947 0.1352379446270524 0.9907538262053057 -0.0108422411242947 -0.1352379446270524 0.9907538262053057 -0.0108422411242947 -0.1352379446270524 -0.9907539146927812 0.01084211309693643 0.1352373066299488 0.9907539146927812 -0.01084211309693643 -0.1352373066299488 0.9907538401461802 -0.0108431721144034 -0.1352377678538621 -0.9907538401461802 0.0108431721144034 0.1352377678538621 2.928640909464708e-006 -0.9968023333952469 0.07990687160197312 0.07441770000105559 -0.7900488052496225 0.6085103871341859 -0.07441770000105559 0.7900488052496225 -0.6085103871341859 -2.928640909464708e-006 0.9968023333952469 -0.07990687160197312 -1.162098143399065e-006 0.9968021881199078 -0.07990868387111294 1.162098143399065e-006 -0.9968021881199078 0.07990868387111294 5.807865462094241e-006 0.9968037713732912 -0.07988893128745632 -5.807865462094241e-006 -0.9968037713732912 0.07988893128745632 0.9907543186649002 -0.01084091741884598 -0.1352344429365815 -0.9907543186649002 0.01084091741884598 0.1352344429365815 -0.9907542998263837 0.01084096646404351 0.1352345770195546 -0.9907537518170448 0.01084228453618815 0.1352384861142942 -0.9907537518170448 0.01084228453618815 0.1352384861142942 0.9907537518170448 -0.01084228453618815 -0.1352384861142942 0.9907537518170448 -0.01084228453618815 -0.1352384861142942 0.9907542998263837 -0.01084096646404351 -0.1352345770195546 -0.9907543337021733 0.01084276611543772 0.1352341845589668 -0.9907538409807305 0.01084215611410985 0.1352378431975552 -0.9907538409807305 0.01084215611410985 0.1352378431975552 0.9907538409807305 -0.01084215611410985 -0.1352378431975552 0.9907538409807305 -0.01084215611410985 -0.1352378431975552 0.9907543337021733 -0.01084276611543772 -0.1352341845589668 0.9907541247954318 -0.0108440271202516 -0.1352356139360237 -0.9907541247954318 0.0108440271202516 0.1352356139360237 0.07441831678586862 -0.7900528107385049 0.6085051112118504 0.11527576302403 -0.4583805966872975 0.881248391226801 -0.11527576302403 0.4583805966872975 -0.881248391226801 -0.07441831678586862 0.7900528107385049 -0.6085051112118504 0.07441513256072134 0.8769111714498417 0.474857015776788 -0.07441513256072134 -0.8769111714498417 -0.474857015776788 0.07442050729758486 0.876903121439521 0.4748710390234334 -0.07442050729758486 -0.876903121439521 -0.4748710390234334 0.9907539142897456 -0.0108411707924452 -0.1352373851248114 -0.9907539142897456 0.0108411707924452 0.1352373851248114 -0.9907541204724976 0.01084425063052422 0.1352356276837962 0.9907541204724976 -0.01084425063052422 -0.1352356276837962 -0.9907540773735396 0.01083963900090975 0.1352363131486376 0.9907540773735396 -0.01083963900090975 -0.1352363131486376 0.9907535193266759 -0.01084215616411869 -0.1352401996135736 -0.9907535193266759 0.01084215616411869 0.1352401996135736 0.1152759311751334 -0.4583833867458709 0.8812469179787758 0.1314739000021054 -0.1693891771649449 0.9767404569677756 -0.1314739000021054 0.1693891771649449 -0.9767404569677756 -0.1152759311751334 0.4583833867458709 -0.8812469179787758 0.1152753987928035 0.5929345763565147 0.7969568185253705 -0.1152753987928035 -0.5929345763565147 -0.7969568185253705 0.1152756976317288 0.5929321630903564 0.7969585707604311 -0.1152756976317288 -0.5929321630903564 -0.7969585707604311 0.9907541370054225 -0.0108397014107838 -0.1352358712766903 -0.9907541370054225 0.0108397014107838 0.1352358712766903 -0.9907528498073734 0.01084446748582026 0.1352449190303184 0.9907528498073734 -0.01084446748582026 -0.1352449190303184 -0.9907528440645809 0.01084106895587919 0.135245233564213 0.9907528440645809 -0.01084106895587919 -0.135245233564213 0.1314730277390396 -0.1693844129615158 0.9767414005881046 0.1356732411329711 0.07917733423144563 0.987584791997364 -0.1356732411329711 -0.07917733423144563 -0.987584791997364 -0.1314730277390396 0.1693844129615158 -0.9767414005881046 0.131473404914537 0.3228332179285216 0.937279817985053 -0.131473404914537 -0.3228332179285216 -0.937279817985053 0.1314713272349154 0.322840250832319 0.9372776870050918 -0.1314713272349154 -0.322840250832319 -0.9372776870050918 -0.9907544778676863 0.01084184676513502 0.1352332020764488 0.9907544778676863 -0.01084184676513502 -0.1352332020764488 0.1356735801070929 0.07917500836808616 0.987584931897423 -0.1356735801070929 -0.07917500836808616 -0.987584931897423</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"146\" source=\"#ID1346\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1344\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1342\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1343\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"128\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 14 0 30 31 5 15 32 33 8 9 34 35 18 8 36 37 9 19 38 20 22 23 25 39 12 40 26 27 41 13 22 28 42 43 29 23 44 14 30 31 15 45 33 46 8 9 47 34 26 40 48 49 41 27 44 30 50 51 31 45 52 8 53 54 9 55 56 38 22 23 39 57 22 42 58 59 43 23 46 60 8 9 61 47 48 62 63 64 65 49 48 40 62 65 41 49 66 44 50 51 45 67 66 50 68 69 51 67 53 8 70 71 9 54 72 56 73 74 57 75 22 58 76 77 59 23 60 78 8 9 79 61 63 80 81 82 83 64 63 62 80 83 65 64 66 68 84 85 69 67 68 86 84 85 87 69 8 88 70 71 89 9 90 91 92 93 94 95 96 97 98 99 100 101 78 102 8 9 103 79 81 104 105 106 107 82 81 80 104 107 83 82 84 86 108 109 87 85 86 110 108 109 111 87 8 112 88 89 113 9 114 90 22 23 95 115 116 22 96 101 23 117 8 102 118 119 103 9 105 120 121 122 123 106 104 120 105 106 123 107 108 110 124 125 111 109 110 126 124 125 127 111 8 128 112 113 129 9 130 114 22 23 115 131 132 22 116 117 23 133 8 118 128 129 119 9 121 134 135 136 137 122 120 134 121 122 137 123 138 124 126 127 125 139 138 126 140 141 127 139 130 22 142 143 23 131 142 22 132 133 23 143 144 140 135 136 141 145 134 144 135 136 145 137 144 138 140 141 139 145</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1344\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1347\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1348\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1351\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"204\">-0.211421862244606 1.405271649360657 0.100438803434372 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.405271649360657 0.100438803434372 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.211421862244606 1.405271649360657 0.100438803434372 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.211421862244606 1.405271649360657 0.100438803434372 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.211421862244606 1.405271649360657 0.100438803434372 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.211421862244606 1.335021376609802 0.1060710996389389 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2808803915977478 1.406224966049194 0.1123318821191788 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.1994908004999161 1.340571284294128 0.1753077507019043 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2808803915977478 1.335973978042603 0.1179641783237457 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.341523766517639 0.187200739979744 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.1994908004999161 1.41082227230072 0.1696756780147553 -0.2689496874809265 1.411776304244995 0.1815686672925949 -0.2689496874809265 1.341523766517639 0.187200739979744</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"68\" source=\"#ID1351\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1349\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1352\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"204\">-0.1692952967771664 -0.07876468768567274 -0.9824129612657346 -0.1692952967771664 -0.07876468768567274 -0.9824129612657346 -0.1692952967771664 -0.07876468768567274 -0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.1692952967771664 0.07876468768567274 0.9824129612657346 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 0.9855658408695626 -0.01352957050060822 -0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.9855658408695626 0.01352957050060822 0.1687510712059077 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 -0.1692945089469307 -0.07876390168526863 -0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 0.1692945089469307 0.07876390168526863 0.9824131600460833 -3.607747919905091e-006 0.9968011265815032 -0.07992192460664423 2.292340680649794e-006 0.9968014598728446 -0.07991776767472422 2.292364934457254e-006 0.9968014598742147 -0.07991776765763606 -2.292364934457254e-006 -0.9968014598742147 0.07991776765763606 -2.292340680649794e-006 -0.9968014598728446 0.07991776767472422 3.607747919905091e-006 -0.9968011265815032 0.07992192460664423 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 1.174042278936356e-005 -0.9968028663366567 0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 -1.174042278936356e-005 0.9968028663366567 -0.07990022231000178 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 0.9855659547205311 -0.01352884717643144 -0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 -0.9855659547205311 0.01352884717643144 0.1687504642656871 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 9.91035853060817e-006 -0.9968029697083833 0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -9.91035853060817e-006 0.9968029697083833 -0.07989893292361799 -0.985566788375241 0.01352899279242671 0.1687455836629085 -0.985566788375241 0.01352899279242671 0.1687455836629085 -0.985566788375241 0.01352899279242671 0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 0.985566788375241 -0.01352899279242671 -0.1687455836629085 8.192430132416068e-006 0.9968017931121987 -0.07991361073803248 -8.192430132416068e-006 -0.9968017931121987 0.07991361073803248 0.169292302696274 0.07876082619117925 0.9824137868054765 0.169292302696274 0.07876082619117925 0.9824137868054765 0.169292302696274 0.07876082619117925 0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.169292302696274 -0.07876082619117925 -0.9824137868054765 -0.9855666474151553 0.01352822838162632 0.1687464682288358 -0.9855666474151553 0.01352822838162632 0.1687464682288358 -0.9855666474151553 0.01352822838162632 0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.9855666474151553 -0.01352822838162632 -0.1687464682288358 0.1692940095783117 0.07875907644888579 0.9824136329458265 0.1692940095783117 0.07875907644888579 0.9824136329458265 0.1692940095783117 0.07875907644888579 0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265 -0.1692940095783117 -0.07875907644888579 -0.9824136329458265</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"68\" source=\"#ID1352\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1350\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1348\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1349\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 19 48 20 21 49 22 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1350\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1353\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1354\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1357\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"450\">-0.2801137268543243 1.601384282112122 0.07121631503105164 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2794758081436157 1.562392950057983 0.07901561260223389 -0.2801137268543243 1.601384282112122 0.07121631503105164 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.4036960601806641 1.602736115455627 0.08808495104312897 -0.4030579030513763 1.563743948936462 0.09588475525379181 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.4030579030513763 1.6424720287323 0.08957266807556152 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.2794758081436157 1.641120195388794 0.07270389795303345 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.27765953540802 1.530082106590271 0.09491404891014099 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.53143322467804 0.1117830723524094 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.4012418985366821 1.676903128623962 0.1001204252243042 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.2749411463737488 1.509369134902954 0.1164914965629578 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.27765953540802 1.675551414489746 0.0832517147064209 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2717342674732208 1.606273889541626 0.1322163492441177 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.2717342674732208 1.503411412239075 0.1404629796743393 -0.398522824048996 1.510722160339356 0.1333605349063873 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.398522824048996 1.700790286064148 0.1181225627660751 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2749411463737488 1.699436664581299 0.1012537479400635 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.2685275375843048 1.513112783432007 0.1631787419319153 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2717342674732208 1.709138989448547 0.1239697188138962 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.504764556884766 0.1573314517736435 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.710491299629211 0.1408382952213287 -0.3953159749507904 1.607627153396606 0.1490850150585175 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.2658087909221649 1.536997079849243 0.1811808198690414 -0.3921090662479401 1.514464616775513 0.1800475418567658 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.3921090662479401 1.704533934593201 0.1648097187280655 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2685275375843048 1.703180909156799 0.1479411125183106 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.2639923989772797 1.571430087089539 0.1917282789945602 -0.3893906474113464 1.538350224494934 0.1980496942996979 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.3893906474113464 1.683818578720093 0.1863871961832047 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2658087909221649 1.682467699050903 0.1695183217525482 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.2633541226387024 1.611165165901184 0.1932161152362824 -0.3875734508037567 1.572780609130859 0.2085974365472794 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.3875734508037567 1.651508212089539 0.2022861540317535 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.2639923989772797 1.650157690048218 0.1854169517755508 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731 -0.386936217546463 1.612517952919006 0.2100851684808731</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"150\" source=\"#ID1357\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1355\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1358\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"450\">-0.1356692217318193 -0.0791759307796135 -0.9875854566870982 -0.1356698493860474 -0.07917859868270143 -0.9875851565704148 -0.1314681476065477 -0.3228358283250789 -0.9372796563003826 0.1314681476065477 0.3228358283250789 0.9372796563003826 0.1356698493860474 0.07917859868270143 0.9875851565704148 0.1356692217318193 0.0791759307796135 0.9875854566870982 0.990755038883388 -0.01084157807576591 -0.1352291134038946 0.9907553094818479 -0.01084286333397569 -0.1352270278023179 0.9907545150269511 -0.01084163096386696 -0.1352329471384623 -0.9907545150269511 0.01084163096386696 0.1352329471384623 -0.9907553094818479 0.01084286333397569 0.1352270278023179 -0.990755038883388 0.01084157807576591 0.1352291134038946 -0.1314688471447525 -0.3228407589476306 -0.9372778598646976 0.1314688471447525 0.3228407589476306 0.9372778598646976 -0.1314702534478887 0.1693883395937448 -0.9767410930579414 0.1314702534478887 -0.1693883395937448 0.9767410930579414 0.9907553225442187 -0.01084392916864213 -0.135226846633672 -0.9907553225442187 0.01084392916864213 0.135226846633672 0.9907553502238049 -0.01083952063097537 -0.135226997287511 -0.9907553502238049 0.01083952063097537 0.135226997287511 -0.990754664616892 0.01084708955208488 0.1352314134663949 -0.9907537198654387 0.01084286954524533 0.1352386732884534 -0.9907537742528971 0.01084220172669491 0.1352383283886532 0.9907537742528971 -0.01084220172669491 -0.1352383283886532 0.9907537198654387 -0.01084286954524533 -0.1352386732884534 0.990754664616892 -0.01084708955208488 -0.1352314134663949 -0.115269717371056 -0.5929125925150331 -0.7969739957453436 0.115269717371056 0.5929125925150331 0.7969739957453436 -0.9907547608051255 0.01083646901163245 0.1352315602266675 0.9907547608051255 -0.01083646901163245 -0.1352315602266675 -0.1314706361830664 0.1693873924460705 -0.9767412057970836 0.1314706361830664 -0.1693873924460705 0.9767412057970836 0.9907552486948316 -0.01084364746921769 -0.135227410288026 0.9907544686782243 -0.01084268175388495 -0.1352332024560302 -0.9907544686782243 0.01084268175388495 0.1352332024560302 -0.9907552486948316 0.01084364746921769 0.135227410288026 0.9907553600312666 -0.01083830286003287 -0.1352270230406248 -0.9907553600312666 0.01083830286003287 0.1352270230406248 -0.9907528949808248 0.0108438867540005 0.1352446346705895 0.9907528949808248 -0.0108438867540005 -0.1352446346705895 -0.1152728223332582 -0.5929306852146626 -0.7969600861788473 0.1152728223332582 0.5929306852146626 0.7969600861788473 -0.9907530246285961 0.01084120938957167 0.1352438995602404 0.9907530246285961 -0.01084120938957167 -0.1352438995602404 -0.1152763180923769 0.4583634432222098 -0.8812572407671583 0.1152763180923769 -0.4583634432222098 0.8812572407671583 0.9907543117722588 -0.01084193425789373 -0.1352344119158477 -0.9907543117722588 0.01084193425789373 0.1352344119158477 -0.07441634651649491 -0.8769018501917213 -0.4748740385633572 0.07441634651649491 0.8769018501917213 0.4748740385633572 -0.1152716199714295 0.4583767549267875 -0.8812509314445858 0.1152716199714295 -0.4583767549267875 0.8812509314445858 0.9907552724987844 -0.01083873891871537 -0.1352276294050575 0.9907544579576236 -0.0108406981143271 -0.1352334400268269 -0.9907544579576236 0.0108406981143271 0.1352334400268269 -0.9907552724987844 0.01083873891871537 0.1352276294050575 -0.9907530102878968 0.0108410673081059 0.1352440160047461 0.9907530102878968 -0.0108410673081059 -0.1352440160047461 -0.9907531370540285 0.01084393251738769 0.1352428576493415 0.9907531370540285 -0.01084393251738769 -0.1352428576493415 0.990754216923581 -0.01084271563818988 -0.1352350441480726 0.9907546154829099 -0.01084175701065832 -0.1352322010625927 -0.9907546154829099 0.01084175701065832 0.1352322010625927 -0.990754216923581 0.01084271563818988 0.1352350441480726 -0.07441916213512102 -0.8769111782314245 -0.4748563717587472 -4.235417158476926e-006 -0.9968004622671232 0.07993020959631503 4.235417158476926e-006 0.9968004622671232 -0.07993020959631503 0.07441916213512102 0.8769111782314245 0.4748563717587472 -0.07441374131601436 0.7900357613279838 -0.6085278062063114 0.07441374131601436 -0.7900357613279838 0.6085278062063114 -0.07441502969023559 0.7900314892178472 -0.6085331949864627 0.07441502969023559 -0.7900314892178472 0.6085331949864627 0.9907543765916157 -0.01084162177413705 -0.1352339620874339 -0.9907543765916157 0.01084162177413705 0.1352339620874339 -0.9907537574304999 0.0108419922220309 0.1352384684252361 -0.9907537574304999 0.0108419922220309 0.1352384684252361 0.9907537574304999 -0.0108419922220309 -0.1352384684252361 0.9907537574304999 -0.0108419922220309 -0.1352384684252361 -0.9907538895728028 0.0108421226586768 0.1352374898932132 -0.9907538895728028 0.0108421226586768 0.1352374898932132 0.9907538895728028 -0.0108421226586768 -0.1352374898932132 0.9907538895728028 -0.0108421226586768 -0.1352374898932132 0.9907538673674123 -0.0108427181255508 -0.1352376048300391 -0.9907538673674123 0.0108427181255508 0.1352376048300391 -2.57462444777998e-006 -0.9968024550084911 0.07990535452906993 0.07441418381058321 -0.7900491071668576 0.6085104251470602 -0.07441418381058321 0.7900491071668576 -0.6085104251470602 2.57462444777998e-006 0.9968024550084911 -0.07990535452906993 1.067839092478683e-006 0.9968001981039093 -0.07993350398216555 -1.067839092478683e-006 -0.9968001981039093 0.07993350398216555 -1.347711116124554e-006 0.9967996693632567 -0.0799400972946978 1.347711116124554e-006 -0.9967996693632567 0.0799400972946978 0.9907542594744274 -0.01084074886987405 -0.135234890088392 -0.9907542594744274 0.01084074886987405 0.135234890088392 -0.990754285377745 0.01084072616952699 0.1352347021357721 -0.9907537594868053 0.01084199102203542 0.1352384534569954 -0.9907537594868053 0.01084199102203542 0.1352384534569954 0.9907537594868053 -0.01084199102203542 -0.1352384534569954 0.9907537594868053 -0.01084199102203542 -0.1352384534569954 0.990754285377745 -0.01084072616952699 -0.1352347021357721 -0.9907542347739401 0.01084268184047282 0.1352349160831287 -0.9907538171999085 0.01084216489426355 0.1352380167120766 -0.9907538171999085 0.01084216489426355 0.1352380167120766 0.9907538171999085 -0.01084216489426355 -0.1352380167120766 0.9907538171999085 -0.01084216489426355 -0.1352380167120766 0.9907542347739401 -0.01084268184047282 -0.1352349160831287 0.9907541447492104 -0.01084372969831687 -0.1352354916007271 -0.9907541447492104 0.01084372969831687 0.1352354916007271 0.07441486581928107 -0.790057000203266 0.6085000938166855 0.115274064337515 -0.458377227782483 0.8812503657539986 -0.115274064337515 0.458377227782483 -0.8812503657539986 -0.07441486581928107 0.790057000203266 -0.6085000938166855 0.07442034387648687 0.8768891770633528 0.4748968135989771 -0.07442034387648687 -0.8768891770633528 -0.4748968135989771 0.07441722469855183 0.8768924517460316 0.474891255698606 -0.07441722469855183 -0.8768924517460316 -0.474891255698606 0.9907538211855245 -0.01084133154978273 -0.1352380543209258 -0.9907538211855245 0.01084133154978273 0.1352380543209258 -0.9907540170982758 0.01084435679705766 0.1352363765016191 0.9907540170982758 -0.01084435679705766 -0.1352363765016191 -0.9907539455884662 0.01083975691409952 0.1352372691639772 0.9907539455884662 -0.01083975691409952 -0.1352372691639772 0.9907535072974634 -0.0108417617890564 -0.1352403193544176 -0.9907535072974634 0.0108417617890564 0.1352403193544176 0.1152751208156897 -0.4583785629178389 0.8812495330939499 0.1314731089687768 -0.1693813640998348 0.9767419183764785 -0.1314731089687768 0.1693813640998348 -0.9767419183764785 -0.1152751208156897 0.4583785629178389 -0.8812495330939499 0.1152735228554939 0.5929025989580536 0.7969808799947897 -0.1152735228554939 -0.5929025989580536 -0.7969808799947897 0.115268135674773 0.5929178457434806 0.7969703163211114 -0.115268135674773 -0.5929178457434806 -0.7969703163211114 0.9907542573323389 -0.01084017946061422 -0.1352349514256858 -0.9907542573323389 0.01084017946061422 0.1352349514256858 -0.990752711050512 0.01084431889758902 0.1352459474206457 0.990752711050512 -0.01084431889758902 -0.1352459474206457 -0.9907528726464318 0.01084160231982215 0.1352449814299302 0.9907528726464318 -0.01084160231982215 -0.1352449814299302 0.1314753993869377 -0.1693935009502534 0.9767395052888265 0.135673890395719 0.07916904731405634 0.9875853671517592 -0.135673890395719 -0.07916904731405634 -0.9875853671517592 -0.1314753993869377 0.1693935009502534 -0.9767395052888265 0.1314685987065968 0.322842898002442 0.9372771579226225 -0.1314685987065968 -0.322842898002442 -0.9372771579226225 0.1314699454240871 0.3228410598408602 0.9372776021707856 -0.1314699454240871 -0.3228410598408602 -0.9372776021707856 -0.9907544541490362 0.01084113343017222 0.1352334330326444 0.9907544541490362 -0.01084113343017222 -0.1352334330326444 0.1356723079532084 0.07917457048518277 0.9875851417691218 -0.1356723079532084 -0.07917457048518277 -0.9875851417691218</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"150\" source=\"#ID1358\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1356\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1354\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1355\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"128\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 14 0 30 31 5 15 32 33 8 9 34 35 18 8 36 37 9 19 38 20 22 23 25 39 12 40 26 27 41 13 22 28 42 43 29 23 44 14 30 31 15 45 33 46 8 9 47 34 26 40 48 49 41 27 44 30 50 51 31 45 52 8 53 54 9 55 56 38 22 23 39 57 22 42 58 59 43 23 46 60 61 62 63 47 48 64 65 66 67 49 48 40 64 67 41 49 68 44 50 51 45 69 68 50 70 71 51 69 53 8 72 73 9 54 74 56 75 76 57 77 78 58 79 80 59 81 60 82 8 9 83 63 65 84 85 86 87 66 65 64 84 87 67 66 68 70 88 89 71 69 70 90 88 89 91 71 8 92 72 73 93 9 94 95 96 97 98 99 100 101 102 103 104 105 82 106 8 9 107 83 85 108 109 110 111 86 85 84 108 111 87 86 88 90 112 113 91 89 90 114 112 113 115 91 8 116 92 93 117 9 118 94 22 23 99 119 120 22 100 105 23 121 8 106 122 123 107 9 109 124 125 126 127 110 108 124 109 110 127 111 112 114 128 129 115 113 114 130 128 129 131 115 8 132 116 117 133 9 134 118 22 23 119 135 136 22 120 121 23 137 8 122 132 133 123 9 125 138 139 140 141 126 124 138 125 126 141 127 142 128 130 131 129 143 142 130 144 145 131 143 134 22 146 147 23 135 146 22 136 137 23 147 148 144 139 140 145 149 138 148 139 140 149 141 148 142 144 145 143 149</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1356\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1359\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1360\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1363\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"168\">-0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.211421862244606 1.565898060798645 0.08756142854690552 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.211421862244606 1.636149644851685 0.08192937076091766 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2808803915977478 1.63710343837738 0.09382219612598419 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.1994908004999161 1.64169979095459 0.151166170835495 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.1994908004999161 1.571449160575867 0.1567983031272888 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2808803915977478 1.566852331161499 0.09945443272590637 -0.2689496874809265 1.572402596473694 0.168691024184227 -0.2689496874809265 1.642654418945313 0.1630590558052063 -0.2689496874809265 1.642654418945313 0.1630590558052063</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1363\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1361\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1364\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"168\">-0.1692923417467978 -0.07875995462953699 -0.9824138499495204 -0.1692938326651547 -0.07876144204660998 -0.9824134737819312 -0.1692938326907131 -0.07876144207210842 -0.9824134737754826 0.1692938326907131 0.07876144207210842 0.9824134737754826 0.1692938326651547 0.07876144204660998 0.9824134737819312 0.1692923417467978 0.07875995462953699 0.9824138499495204 0.985565970216552 -0.01352869035001519 -0.1687503863359133 0.985565970216552 -0.01352869035001519 -0.1687503863359133 0.985565970216552 -0.01352869035001519 -0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.985565970216552 0.01352869035001519 0.1687503863359133 -0.1692953236140108 -0.0787629294945232 -0.9824130976019551 0.1692953236140108 0.0787629294945232 0.9824130976019551 4.192985630659793e-006 0.996801436518354 -0.07991805889387653 1.096906230813379e-005 0.9968018192187224 -0.07991328476495892 1.09690889451969e-005 0.9968018192202266 -0.07991328474619158 -1.09690889451969e-005 -0.9968018192202266 0.07991328474619158 -1.096906230813379e-005 -0.9968018192187224 0.07991328476495892 -4.192985630659793e-006 -0.996801436518354 0.07991805889387653 9.582506172782085e-007 -0.996801371888121 0.07991886511357456 -5.671514406445729e-006 -0.9968017463641189 0.07991419406636696 -5.671498187858583e-006 -0.996801746363203 0.07991419407779388 5.671498187858583e-006 0.996801746363203 -0.07991419407779388 5.671514406445729e-006 0.9968017463641189 -0.07991419406636696 -9.582506172782085e-007 0.996801371888121 -0.07991886511357456 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 0.9855659090224347 -0.01352907913234452 -0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -0.9855659090224347 0.01352907913234452 0.1687507125632738 -1.230130500121009e-005 -0.9968021207758588 0.07990952299587543 1.230130500121009e-005 0.9968021207758588 -0.07990952299587543 -0.985566806953075 0.01352881908006203 0.1687454890852473 -0.985566806953075 0.01352881908006203 0.1687454890852473 -0.985566806953075 0.01352881908006203 0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 0.985566806953075 -0.01352881908006203 -0.1687454890852473 1.774514664156804e-005 0.9968022018508893 -0.07990851062514436 -1.774514664156804e-005 -0.9968022018508893 0.07990851062514436 0.1692896681507659 0.07876208895893308 0.9824141395563425 0.1692914505875623 0.07876026173301266 0.9824139788957129 0.1692914506032995 0.07876026171688015 0.9824139788942946 -0.1692914506032995 -0.07876026171688015 -0.9824139788942946 -0.1692914505875623 -0.07876026173301266 -0.9824139788957129 -0.1692896681507659 -0.07876208895893308 -0.9824141395563425 -0.985566674990484 0.01352810345769673 0.1687463171895607 -0.985566674990484 0.01352810345769673 0.1687463171895607 -0.985566674990484 0.01352810345769673 0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.985566674990484 -0.01352810345769673 -0.1687463171895607 0.1692932330193621 0.07875843451056407 0.9824138182290074 -0.1692932330193621 -0.07875843451056407 -0.9824138182290074</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1364\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1362\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1360\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1361\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 21 32 22 23 33 24 34 35 36 37 38 39 15 40 16 17 41 18 42 43 44 45 46 47 48 49 50 51 52 53 43 54 44 45 55 46</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1362\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1365\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1366\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1369\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.1229010000824928 1.402469992637634 0.07537984848022461 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1123381182551384 1.404854774475098 0.1051209568977356 -0.1123381182551384 1.404854774475098 0.1051209568977356 -0.1204296499490738 1.382747650146484 0.08396376669406891 -0.1229010000824928 1.402469992637634 0.07537984848022461 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.2154930233955383 1.407772421836853 0.1415231823921204 -0.2154930233955383 1.407772421836853 0.1415231823921204 -0.2260557264089584 1.405388832092285 0.1117822676897049 -0.2235846221446991 1.38566517829895 0.1203662604093552 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.1141723170876503 1.373368501663208 0.1024473607540131 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1204296499490738 1.423306703567505 0.08071206510066986 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2173271626234055 1.376286864280701 0.1388498544692993 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2235846221446991 1.426225662231445 0.117114320397377 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.2173271626234055 1.438427448272705 0.1338681727647781 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1070566922426224 1.378721952438355 0.1221819519996643 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1141723170876503 1.435509324073792 0.09746542572975159 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.1024120301008225 1.396303534507752 0.133933499455452 -0.2102118730545044 1.381640076637268 0.1585841774940491 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.2102118730545044 1.436287760734558 0.1542030274868012 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.1070566922426224 1.433368444442749 0.1178007423877716 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.1024120301008225 1.417886853218079 0.1322029978036881 -0.205567792057991 1.399222016334534 0.1703358888626099 -0.205567792057991 1.420804738998413 0.1686054915189743 -0.205567792057991 1.420804738998413 0.1686054915189743</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1369\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1367\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1370\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.3337266271680724 -0.07532520667226132 -0.9396556026325833 -0.3337254443835178 -0.07531800304052706 -0.939656600141249 -0.2556522031940139 -0.6984222253960624 -0.6684671615531003 0.2556522031940139 0.6984222253960624 0.6684671615531003 0.3337254443835178 0.07531800304052706 0.939656600141249 0.3337266271680724 0.07532520667226132 0.9396556026325833 0.9426693299249394 -0.02667009523577694 -0.3326608489723134 0.9426698480710878 -0.02666549239372739 -0.3326597496737959 0.942668346931451 -0.02667054805145014 -0.3326635981891633 -0.942668346931451 0.02667054805145014 0.3326635981891633 -0.9426698480710878 0.02666549239372739 0.3326597496737959 -0.9426693299249394 0.02667009523577694 0.3326608489723134 -0.2556517063393704 -0.6984267968755661 -0.6684625752066491 0.2556517063393704 0.6984267968755661 0.6684625752066491 -0.255639269038604 0.5830513834916339 -0.7711677173831254 0.255639269038604 -0.5830513834916339 0.7711677173831254 0.94266992556121 -0.02666708717482581 -0.3326594022480552 -0.94266992556121 0.02666708717482581 0.3326594022480552 0.9426698844777661 -0.02667432654829168 -0.3326589382563925 -0.9426698844777661 0.02667432654829168 0.3326589382563925 -0.9426692985040845 0.02667097289356337 0.3326608676456075 -0.9426700925419396 0.02667093112104283 0.3326586209015298 -0.9426726158260356 0.02666887460036563 0.3326516353473254 0.9426726158260356 -0.02666887460036563 -0.3326516353473254 0.9426700925419396 -0.02667093112104283 -0.3326586209015298 0.9426692985040845 -0.02667097289356337 -0.3326608676456075 -0.05795608011964645 -0.9947370444312012 -0.08449440936206237 0.05795608011964645 0.9947370444312012 0.08449440936206237 -0.9426700925637542 0.02666824235994739 0.3326588364004093 0.9426700925637542 -0.02666824235994739 -0.3326588364004093 -0.2556454488961971 0.5830389603010273 -0.7711750613380591 0.2556454488961971 -0.5830389603010273 0.7711750613380591 0.9426676632894262 -0.02667050683223612 -0.3326655387228512 -0.9426676632894262 0.02667050683223612 0.3326655387228512 0.942669672464622 -0.02667280394461036 -0.3326596611330787 -0.942669672464622 0.02667280394461036 0.3326596611330787 -0.9426708263224173 0.02666902468531293 0.3326566943906968 0.9426708263224173 -0.02666902468531293 -0.3326566943906968 -0.05795410471479303 -0.9947383245080389 -0.08448069307034842 0.05795410471479303 0.9947383245080389 0.08448069307034842 -0.9426700638303835 0.02666835112717045 0.3326589091038728 -0.9426711799215867 0.02666751137953105 0.3326558136904663 0.9426711799215867 -0.02666751137953105 -0.3326558136904663 0.9426700638303835 -0.02666835112717045 -0.3326589091038728 -0.05795203583627952 0.968575292156016 -0.2418748952812563 0.05795203583627952 -0.968575292156016 0.2418748952812563 0.942665841501148 -0.02667405932079358 -0.3326704162174381 -0.942665841501148 0.02667405932079358 0.3326704162174381 0.1668648430655019 -0.8255867437633917 0.5390386374564307 -0.1668648430655019 0.8255867437633917 -0.5390386374564307 -0.05795097760768985 0.9685756112144538 -0.2418738711702036 0.05795097760768985 -0.9685756112144538 0.2418738711702036 0.942667165956151 -0.02667077309447859 -0.3326669266559897 -0.942667165956151 0.02667077309447859 0.3326669266559897 -0.9426750123298155 0.02666608750429935 0.3326450674610936 0.9426750123298155 -0.02666608750429935 -0.3326450674610936 -0.9426743676767683 0.02666977656740232 0.3326465985742982 0.9426743676767683 -0.02666977656740232 -0.3326465985742982 0.9426659987069123 -0.02667273395274511 -0.3326700770213422 0.9426657124675998 -0.02667044983034913 -0.332671071245757 -0.9426657124675998 0.02667044983034913 0.332671071245757 -0.9426659987069123 0.02667273395274511 0.3326700770213422 0.1668651044540556 -0.8255855666711214 0.5390403593608371 0.3136006934420363 -0.270121277291786 0.9103236241177795 -0.3136006934420363 0.270121277291786 -0.9103236241177795 -0.1668651044540556 0.8255855666711214 -0.5390403593608371 0.1668518724339733 0.9009418074566474 0.4005799698462547 -0.1668518724339733 -0.9009418074566474 -0.4005799698462547 0.1668533512389299 0.9009402941734973 0.4005827573859245 -0.1668533512389299 -0.9009402941734973 -0.4005827573859245 -0.9426764526599932 0.02666602774790375 0.3326409905055594 0.9426764526599932 -0.02666602774790375 -0.3326409905055594 -0.9426762338578055 0.02667124274608742 0.3326411924732764 0.9426762338578055 -0.02667124274608742 -0.3326411924732764 0.3136004230653525 -0.270117527812872 0.9103248298390494 0.3135922239403754 0.4117529551857169 0.8556397729067756 -0.3135922239403754 -0.4117529551857169 -0.8556397729067756 -0.3136004230653525 0.270117527812872 -0.9103248298390494 0.3135992515083158 0.4117307509759519 0.8556478821070047 -0.3135992515083158 -0.4117307509759519 -0.8556478821070047</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1370\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1368\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1366\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1367\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"72\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 21 28 29 24 23 14 0 30 31 5 15 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 22 40 41 42 43 23 14 30 44 45 31 15 32 46 8 9 47 33 48 26 38 39 27 49 30 50 44 45 51 31 8 52 34 35 53 9 54 36 22 23 37 55 56 22 41 42 23 57 8 58 59 60 61 9 48 62 63 64 65 49 48 38 62 65 39 49 44 50 66 67 51 45 50 68 66 67 69 51 8 59 52 53 60 9 70 54 22 23 55 71 72 22 56 57 23 73 63 74 75 76 77 64 62 74 63 64 77 65 66 68 78 79 69 67 68 75 78 79 76 69 70 22 72 73 23 71 74 78 75 76 79 77</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1368\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1371\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1372\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1375\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"246\">-0.121831588447094 1.560251235961914 0.06273014843463898 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.121831588447094 1.560251235961914 0.06273014843463898 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.119360476732254 1.540530800819397 0.07131412625312805 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.2144237756729126 1.565554141998291 0.1288736164569855 -0.2144237756729126 1.565554141998291 0.1288736164569855 -0.2249864190816879 1.563170671463013 0.09913255274295807 -0.2225152552127838 1.543448209762573 0.107716515660286 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.1131033077836037 1.531152129173279 0.08979757130146027 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.2225152552127838 1.584008932113648 0.1044647097587585 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.119360476732254 1.581090569496155 0.06806240975856781 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.534071445465088 0.1262002140283585 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.2162578254938126 1.596212387084961 0.121218353509903 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1059875264763832 1.536505937576294 0.1095322519540787 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1131033077836037 1.5932936668396 0.08481565117835999 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1112687066197395 1.562634825706482 0.09247137606143951 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.1013428717851639 1.554086685180664 0.1212836503982544 -0.2091426998376846 1.539424538612366 0.145934671163559 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.1059875264763832 1.591152787208557 0.1051512807607651 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2091426998376846 1.594071388244629 0.1415535062551498 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.1013428717851639 1.575669527053833 0.1195533722639084 -0.2044984251260757 1.557004451751709 0.1576859652996063 -0.2044984251260757 1.578587532043457 0.1559560894966126 -0.2044984251260757 1.578587532043457 0.1559560894966126</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1375\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1373\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1376\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"246\">-0.3337284789644306 -0.07535968965900289 -0.9396521800658937 -0.3337242968039064 -0.07533479758929397 -0.939655661396726 -0.2556476260153263 -0.6984382220308391 -0.6684521982304555 0.2556476260153263 0.6984382220308391 0.6684521982304555 0.3337242968039064 0.07533479758929397 0.939655661396726 0.3337284789644306 0.07535968965900289 0.9396521800658937 0.9426694128352491 -0.02666973091874628 -0.3326606432350672 0.9426694127314597 -0.02667813209137133 -0.3326599698921414 0.942668926506434 -0.02666950286440723 -0.3326620396380881 -0.942668926506434 0.02666950286440723 0.3326620396380881 -0.9426694127314597 0.02667813209137133 0.3326599698921414 -0.9426694128352491 0.02666973091874628 0.3326606432350672 -0.255646262106825 -0.6984564686954649 -0.6684336541559452 0.255646262106825 0.6984564686954649 0.6684336541559452 -0.2556503053192089 0.583016594440822 -0.7711903604148728 0.2556503053192089 -0.583016594440822 0.7711903604148728 0.9426699931672807 -0.02668006749924834 -0.3326581698684618 0.942669259790379 -0.02667984675927415 -0.3326602657714937 -0.942669259790379 0.02667984675927415 0.3326602657714937 -0.9426699931672807 0.02668006749924834 0.3326581698684618 0.9426697523001979 -0.02666004568836103 -0.3326604576173405 -0.9426697523001979 0.02666004568836103 0.3326604576173405 -0.9426707722604234 0.02666917946059317 0.3326568351812961 -0.94267117412886 0.02666943846076941 0.3326556756147475 -0.9426731217563237 0.02666860222138295 0.3326502234686538 0.9426731217563237 -0.02666860222138295 -0.3326502234686538 0.94267117412886 -0.02666943846076941 -0.3326556756147475 0.9426707722604234 -0.02666917946059317 -0.3326568351812961 -0.05795423941257186 -0.994738707658848 -0.08447608903894131 0.05795423941257186 0.994738707658848 0.08447608903894131 -0.9426708768647963 0.02666948294379122 0.3326565144266181 0.9426708768647963 -0.02666948294379122 -0.3326565144266181 -0.255652140417525 0.583012347109947 -0.7711929630237095 0.255652140417525 -0.583012347109947 0.7711929630237095 0.9426680003299808 -0.02668065199421859 -0.332663770138918 -0.9426680003299808 0.02668065199421859 0.332663770138918 0.9426695663783524 -0.02665915632357748 -0.3326610557431757 -0.9426695663783524 0.02665915632357748 0.3326610557431757 -0.9426733099111155 0.02666872421876396 0.3326496804894987 0.9426733099111155 -0.02666872421876396 -0.3326496804894987 -0.0579498436027994 -0.994741411996432 -0.08444725505163428 0.0579498436027994 0.994741411996432 0.08444725505163428 -0.9426731236378981 0.0266686940813683 0.3326502107721603 0.9426731236378981 -0.0266686940813683 -0.3326502107721603 -0.05795127045210659 0.9685752051750813 -0.241875426972307 0.05795127045210659 -0.9685752051750813 0.241875426972307 0.9426682123690319 -0.02667545368174198 -0.3326635861645327 -0.9426682123690319 0.02667545368174198 0.3326635861645327 0.1668598278491472 -0.8255880097559711 0.5390382509593614 -0.1668598278491472 0.8255880097559711 -0.5390382509593614 -0.05795438103376407 0.9685733722687513 -0.2418820213470451 0.05795438103376407 -0.9685733722687513 0.2418820213470451 0.9426682383299377 -0.02665834859776295 -0.3326648837703971 -0.9426682383299377 0.02665834859776295 0.3326648837703971 -0.942674597705025 0.02667283037220496 0.332645701853496 0.942674597705025 -0.02667283037220496 -0.332645701853496 -0.9426756674865577 0.02666678017256694 0.3326431552940793 0.9426756674865577 -0.02666678017256694 -0.3326431552940793 0.9426689503533277 -0.02666923001243467 -0.3326619939372389 0.9426681929053484 -0.02666318732849757 -0.3326646246988855 -0.9426681929053484 0.02666318732849757 0.3326646246988855 -0.9426689503533277 0.02666923001243467 0.3326619939372389 0.1668582087259924 -0.8255983909538566 0.53902285205282 0.3135987183210398 -0.2701335159881868 0.9103206728440595 -0.3135987183210398 0.2701335159881868 -0.9103206728440595 -0.1668582087259924 0.8255983909538566 -0.53902285205282 0.1668622050623149 0.9009256888053704 0.4006119166628858 -0.1668622050623149 -0.9009256888053704 -0.4006119166628858 0.1668585745490759 0.9009288777610089 0.4006062572099185 -0.1668585745490759 -0.9009288777610089 -0.4006062572099185 -0.9426738098360217 0.02666876774876723 0.3326482602930651 0.9426738098360217 -0.02666876774876723 -0.3326482602930651 -0.9426749672617724 0.0266638276274031 0.3326453763308198 -0.9426752609315559 0.02666617088208003 0.3326443562697421 0.9426752609315559 -0.02666617088208003 -0.3326443562697421 0.9426749672617724 -0.0266638276274031 -0.3326453763308198 0.3135995234629018 -0.2701506651186825 0.9103153063745411 0.3135975129665967 0.4117207496375949 0.8556533317757969 -0.3135975129665967 -0.4117207496375949 -0.8556533317757969 -0.3135995234629018 0.2701506651186825 -0.9103153063745411 0.3136011967334145 0.41170988785074 0.8556572080297702 -0.3136011967334145 -0.41170988785074 -0.8556572080297702</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1376\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1374\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1372\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1373\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"72\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 16 17 8 9 18 19 6 8 20 21 9 11 22 23 24 25 26 27 28 2 12 13 3 29 24 23 30 31 26 25 14 0 32 33 5 15 17 34 8 9 35 18 20 8 36 37 9 21 38 22 24 25 27 39 28 12 40 41 13 29 24 30 42 43 31 25 14 32 44 45 33 15 34 46 8 9 47 35 48 28 40 41 29 49 32 50 44 45 51 33 8 52 36 37 53 9 54 38 24 25 39 55 56 24 42 43 25 57 58 46 59 60 47 61 48 62 63 64 65 49 48 40 62 65 41 49 44 50 66 67 51 45 50 68 66 67 69 51 8 59 52 53 60 9 70 54 24 25 55 71 72 24 73 74 25 75 63 76 77 78 79 64 62 76 63 64 79 65 66 68 80 81 69 67 68 77 80 81 78 69 70 24 72 75 25 71 76 80 77 78 81 79</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1374\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1377\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1378\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1381\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.121831588447094 1.632965445518494 0.05580605939030647 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.1112687066197395 1.635351061820984 0.08554725348949432 -0.1112687066197395 1.635351061820984 0.08554725348949432 -0.119360476732254 1.613244414329529 0.06438985466957092 -0.121831588447094 1.632965445518494 0.05580605939030647 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2144237756729126 1.63826847076416 0.1219496876001358 -0.2144237756729126 1.63826847076416 0.1219496876001358 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2225152552127838 1.61616325378418 0.1007923781871796 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.1131032034754753 1.603865385055542 0.08287385106086731 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2225152552127838 1.656722784042358 0.09754064679145813 -0.2249864190816879 1.635885238647461 0.09220848977565765 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.119360476732254 1.653804779052734 0.06113813444972038 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.606784343719482 0.1192760020494461 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.2162578254938126 1.66892671585083 0.1142939180135727 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1059875264763832 1.609220504760742 0.1026082187891007 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1131032034754753 1.666008949279785 0.07789164781570435 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.1013428717851639 1.626800417900085 0.1143596172332764 -0.2091426998376846 1.612138390541077 0.1390102505683899 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.2091426998376846 1.666785955429077 0.1346293836832047 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1059875264763832 1.663867712020874 0.09822680056095123 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.1013428717851639 1.648382663726807 0.1126296520233154 -0.2044984251260757 1.629719972610474 0.1507618874311447 -0.2044984251260757 1.651299953460693 0.1490315943956375 -0.2044984251260757 1.651299953460693 0.1490315943956375</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1381\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1379\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1382\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"240\">-0.333730378141187 -0.07535403620761856 -0.9396519589363719 -0.333726883852007 -0.07533113375164462 -0.9396550363203088 -0.2556565374133898 -0.6984324284783076 -0.6684548434469525 0.2556565374133898 0.6984324284783076 0.6684548434469525 0.333726883852007 0.07533113375164462 0.9396550363203088 0.333730378141187 0.07535403620761856 0.9396519589363719 0.9426698651042278 -0.02666926967659147 -0.3326593986035781 0.9426706627335539 -0.02667644281289909 -0.3326565631703853 0.9426693154071472 -0.02667025725170954 -0.3326608771225557 -0.9426693154071472 0.02667025725170954 0.3326608771225557 -0.9426706627335539 0.02667644281289909 0.3326565631703853 -0.9426698651042278 0.02666926967659147 0.3326593986035781 -0.2556565162415049 -0.6984283547388395 -0.6684591079490616 0.2556565162415049 0.6984283547388395 0.6684591079490616 -0.2556544916264227 0.5830074241203893 -0.7711959052872001 0.2556544916264227 -0.5830074241203893 0.7711959052872001 0.9426701864689276 -0.02667871855776842 -0.3326577302855785 -0.9426701864689276 0.02667871855776842 0.3326577302855785 0.9426703818063023 -0.0266627993108055 -0.3326584530687176 -0.9426703818063023 0.0266627993108055 0.3326584530687176 -0.942670682789034 0.02666641547402317 0.3326573102996888 -0.9426715774722685 0.02666939845816986 0.3326545358353379 -0.9426726866031083 0.02666879491651253 0.3326514411665441 0.9426726866031083 -0.02666879491651253 -0.3326514411665441 0.9426715774722685 -0.02666939845816986 -0.3326545358353379 0.942670682789034 -0.02666641547402317 -0.3326573102996888 -0.05795034002025325 -0.9947409900488647 -0.08445188457424339 0.05795034002025325 0.9947409900488647 0.08445188457424339 -0.9426715774692825 0.0266696397275071 0.332654516500798 -0.9426706530564586 0.02667313881978869 0.3326568555307563 0.9426706530564586 -0.02667313881978869 -0.3326568555307563 0.9426715774692825 -0.0266696397275071 -0.332654516500798 -0.2556600729310317 0.5829964967063355 -0.7712023158270722 0.2556600729310317 -0.5829964967063355 0.7712023158270722 0.9426679717584315 -0.02668017002983864 -0.3326638897566493 -0.9426679717584315 0.02668017002983864 0.3326638897566493 0.9426693238288924 -0.02666202804200823 -0.3326615129116476 -0.9426693238288924 0.02666202804200823 0.3326615129116476 -0.9426725348063688 0.02666425905578586 0.3326522349402474 0.9426725348063688 -0.02666425905578586 -0.3326522349402474 -0.05795252513498193 -0.9947392447197427 -0.08447094083100366 0.05795252513498193 0.9947392447197427 0.08447094083100366 -0.9426734261757909 0.02667385572371525 0.3326489395786893 0.9426734261757909 -0.02667385572371525 -0.3326489395786893 -0.05796483274626623 0.96857007026727 -0.241892738930198 0.05796483274626623 -0.96857007026727 0.241892738930198 0.9426680303599566 -0.02667357815985674 -0.3326642523106893 -0.9426680303599566 0.02667357815985674 0.3326642523106893 0.1668674553623587 -0.8255766404347668 0.5390533026606321 -0.1668674553623587 0.8255766404347668 -0.5390533026606321 -0.05796124807593681 0.9685715880919653 -0.2418875202702447 0.05796124807593681 -0.9685715880919653 0.2418875202702447 0.9426683879472891 -0.02666417007570079 -0.3326639932409778 -0.9426683879472891 0.02666417007570079 0.3326639932409778 -0.9426744820301379 0.02666664481774934 0.3326465255844037 0.9426744820301379 -0.02666664481774934 -0.3326465255844037 -0.9426746561069067 0.02666737641715492 0.3326459736247396 0.9426746561069067 -0.02666737641715492 -0.3326459736247396 0.9426690297862003 -0.02666515139479778 -0.3326620958014853 -0.9426690297862003 0.02666515139479778 0.3326620958014853 0.1668667127256855 -0.8255788199028996 0.5390501946125792 0.3135970278251287 -0.2701501860406067 0.9103163082805179 -0.3135970278251287 0.2701501860406067 -0.9103163082805179 -0.1668667127256855 0.8255788199028996 -0.5390501946125792 0.1668686049155389 0.9009099015269486 0.4006447528974333 -0.1668686049155389 -0.9009099015269486 -0.4006447528974333 0.1668609828112135 0.9009170600359566 0.4006318301775889 -0.1668609828112135 -0.9009170600359566 -0.4006318301775889 0.9426690267813482 -0.02666512741588473 -0.332662106238448 -0.9426690267813482 0.02666512741588473 0.332662106238448 -0.9426734572124721 0.02667010445225194 0.3326491524047397 0.9426734572124721 -0.02667010445225194 -0.3326491524047397 -0.942672710193572 0.026667841495269 0.3326514507503151 0.942672710193572 -0.026667841495269 -0.3326514507503151 0.3135950812842684 -0.270120249285133 0.9103258624912568 0.313594948705331 0.411703538656981 0.8556625528815787 -0.313594948705331 -0.411703538656981 -0.8556625528815787 -0.3135950812842684 0.270120249285133 -0.9103258624912568 0.3135997197807662 0.4116882149507133 0.8556681771715717 -0.3135997197807662 -0.4116882149507133 -0.8556681771715717</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"80\" source=\"#ID1382\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1380\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1378\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1379\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"72\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 28 29 30 31 23 14 0 32 33 5 15 16 34 8 9 35 17 18 8 36 37 9 19 38 20 22 23 25 39 26 12 40 41 13 27 22 29 42 43 30 23 14 32 44 45 33 15 34 46 8 9 47 35 48 26 40 41 27 49 32 50 44 45 51 33 8 52 36 37 53 9 54 38 22 23 39 55 56 22 42 43 23 57 8 46 58 59 47 9 48 60 61 62 63 49 48 40 60 63 41 49 44 50 64 65 51 45 50 66 64 65 67 51 8 68 52 53 69 9 70 54 22 23 55 71 72 22 56 57 23 73 61 74 75 76 77 62 60 74 61 62 77 63 64 66 78 79 67 65 66 75 78 79 76 67 70 22 72 73 23 71 74 78 75 76 79 77</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1380\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1383\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1384\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1387\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"246\">-0.1239700987935066 1.32936418056488 0.08014623820781708 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1134073734283447 1.331748962402344 0.1098872125148773 -0.1134073734283447 1.331748962402344 0.1098872125148773 -0.1214988455176354 1.309641480445862 0.08873006701469421 -0.1239700987935066 1.32936418056488 0.08014623820781708 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2271245419979096 1.332281947135925 0.1165487319231033 -0.2246537208557129 1.31256091594696 0.1251326650381088 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.1152417808771133 1.300263404846191 0.1072136461734772 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.2246537208557129 1.35312020778656 0.1218806207180023 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1214988455176354 1.350203037261963 0.08547836542129517 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.2183965295553207 1.303182005882263 0.1436159163713455 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.216562494635582 1.334666728973389 0.1462894082069397 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1081259101629257 1.305616736412048 0.1269483864307404 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1152417808771133 1.362404465675354 0.1022317111492157 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2183965295553207 1.365324258804321 0.1386340856552124 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.1034816280007362 1.323198199272156 0.1387000530958176 -0.2112811654806137 1.308535218238831 0.1633507460355759 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.2112811654806137 1.363182425498962 0.1589696705341339 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.1081259101629257 1.360263347625732 0.1225673109292984 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.1034816280007362 1.344779372215271 0.1369695514440537 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.347697734832764 0.1733715981245041 -0.2066369652748108 1.32611608505249 0.1751019805669785 -0.2066369652748108 1.32611608505249 0.1751019805669785</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1387\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1385\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1388\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"246\">-0.3337276167891264 -0.075333276831864 -0.939654604199875 -0.3337309577305596 -0.07535292865709133 -0.9396518419047784 -0.2556555199327572 -0.6984359506995821 -0.6684515523942498 0.2556555199327572 0.6984359506995821 0.6684515523942498 0.3337309577305596 0.07535292865709133 0.9396518419047784 0.3337276167891264 0.075333276831864 0.939654604199875 0.9426704146675395 -0.02666821468598398 -0.3326579258577669 0.9426719908397363 -0.02667014439399164 -0.332653304634498 0.9426704041214337 -0.02666958664825751 -0.3326578457537778 -0.9426704041214337 0.02666958664825751 0.3326578457537778 -0.9426719908397363 0.02667014439399164 0.332653304634498 -0.9426704146675395 0.02666821468598398 0.3326579258577669 -0.2556553714157113 -0.6984335117424741 -0.6684541575466264 0.2556553714157113 0.6984335117424741 0.6684541575466264 -0.255661960777685 0.5829995249413289 -0.7711994007579975 0.255661960777685 -0.5829995249413289 0.7711994007579975 0.9426702483678892 -0.02667440003294516 -0.3326579011911561 -0.9426702483678892 0.02667440003294516 0.3326579011911561 0.9426715215503717 -0.02666734987902996 -0.3326548585370981 -0.9426715215503717 0.02666734987902996 0.3326548585370981 -0.9426736657977303 0.02667311100922879 0.3326483202431038 -0.9426761082832638 0.02667120236097125 0.3326415515784829 -0.9426735152706354 0.02666898903716784 0.3326490773037535 0.9426735152706354 -0.02666898903716784 -0.3326490773037535 0.9426761082832638 -0.02667120236097125 -0.3326415515784829 0.9426736657977303 -0.02667311100922879 -0.3326483202431038 -0.05796044901938876 -0.9947380448489566 -0.08447963351924584 0.05796044901938876 0.9947380448489566 0.08447963351924584 -0.942674955676002 0.02666551330546385 0.3326452740403869 0.942674955676002 -0.02666551330546385 -0.3326452740403869 -0.2556428475158868 0.5830371083732807 -0.7711773238196857 0.2556428475158868 -0.5830371083732807 0.7711773238196857 0.9426693620251326 -0.02666865831024714 -0.3326608732073263 -0.9426693620251326 0.02666865831024714 0.3326608732073263 0.9426698305620523 -0.02666526531686748 -0.3326598174918229 -0.9426698305620523 0.02666526531686748 0.3326598174918229 -0.9426728524084502 0.02666545790151182 0.3326512388178031 0.9426728524084502 -0.02666545790151182 -0.3326512388178031 -0.05796238945661559 -0.9947363993485305 -0.0844976758236609 0.05796238945661559 0.9947363993485305 0.0844976758236609 -0.9426738031800903 0.02666987603224691 0.3326481903008177 -0.9426738031800903 0.02666987603224691 0.3326481903008177 0.9426738031800903 -0.02666987603224691 -0.3326481903008177 0.9426738031800903 -0.02666987603224691 -0.3326481903008177 -0.05794658213933268 0.9685775282560405 -0.241867247422607 0.05794658213933268 -0.9685775282560405 0.241867247422607 0.9426711761204227 -0.02666912724864952 -0.3326556949212423 -0.9426711761204227 0.02666912724864952 0.3326556949212423 0.1668609813859133 -0.8255905717489268 0.5390339699223137 -0.1668609813859133 0.8255905717489268 -0.5390339699223137 -0.05793367877946438 0.9685830448084376 -0.2418482461641892 0.05793367877946438 -0.9685830448084376 0.2418482461641892 0.9426686652623827 -0.02666981781125841 -0.332662754678597 -0.9426686652623827 0.02666981781125841 0.332662754678597 -0.9426734123039166 0.0266680332057299 0.3326494457236154 0.9426734123039166 -0.0266680332057299 -0.3326494457236154 -0.9426726990613483 0.02666801150120607 0.3326514686679803 -0.9426738963327904 0.02666980594554911 0.3326479319394343 0.9426738963327904 -0.02666980594554911 -0.3326479319394343 0.9426726990613483 -0.02666801150120607 -0.3326514686679803 0.942670427945132 -0.02667330231420939 -0.3326574803328437 -0.942670427945132 0.02667330231420939 0.3326574803328437 0.1668612428472993 -0.8255908640540989 0.5390334412871441 0.3135988286385334 -0.2701201898894522 0.9103245891936711 -0.3135988286385334 0.2701201898894522 -0.9103245891936711 -0.1668612428472993 0.8255908640540989 -0.5390334412871441 0.1668796441514547 0.9009087185794509 0.4006428149304759 -0.1668796441514547 -0.9009087185794509 -0.4006428149304759 0.1668653875440422 0.9009213997699368 0.4006202364788306 -0.1668653875440422 -0.9009213997699368 -0.4006202364788306 -0.9426723431580075 0.02667011828838743 0.3326523083272915 0.9426723431580075 -0.02667011828838743 -0.3326523083272915 -0.9426718367008743 0.02666889046501486 0.3326538419624301 0.9426718367008743 -0.02666889046501486 -0.3326538419624301 0.3135988204463492 -0.2701250551890383 0.9103231483235926 0.3135955801410653 0.4117195158224673 0.8556546338371001 -0.3135955801410653 -0.4117195158224673 -0.8556546338371001 -0.3135988204463492 0.2701250551890383 -0.9103231483235926 0.3136012111030773 0.4117025885446904 0.8556607148749348 -0.3136012111030773 -0.4117025885446904 -0.8556607148749348 -0.9426721716935939 0.02667156403007993 0.3326526783097842 0.9426721716935939 -0.02667156403007993 -0.3326526783097842</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"82\" source=\"#ID1388\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1386\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1384\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1385\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"72\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 26 2 12 13 3 27 22 21 28 29 24 23 14 0 30 31 5 15 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 40 28 41 42 29 43 14 30 44 45 31 15 32 46 8 9 47 33 48 26 38 39 27 49 30 50 44 45 51 31 8 52 34 35 53 9 54 36 22 23 37 55 56 22 57 58 23 59 8 46 60 61 47 9 48 62 63 64 65 49 48 38 62 65 39 49 44 50 66 67 51 45 50 68 66 67 69 51 8 60 52 53 61 9 70 54 22 23 55 71 72 22 56 59 23 73 63 74 75 76 77 64 62 74 63 64 77 65 66 68 78 79 69 67 68 75 78 79 76 69 80 22 72 73 23 81 74 78 75 76 79 77</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1386\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1389\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1390\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1393\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">-0.1687647700309753 1.267630815505981 0.05896011367440224 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.1687647700309753 1.267630815505981 0.05896011367440224 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.1381688714027405 1.076831579208374 0.07825988531112671 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.334778219461441 1.265789389610291 0.06095140054821968 -0.3611398637294769 1.074830651283264 0.07826220989227295 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.1906672567129135 1.076823830604553 0.1983899027109146 -0.212235227227211 1.262829661369324 0.1834776252508164 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.3125645220279694 1.076823830604553 0.1983899027109146 -0.2957886457443237 1.262829661369324 0.1834776252508164 -0.2957886457443237 1.262829661369324 0.1834776252508164</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1393\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1391\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1394\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">-0.01079581468578262 -0.1023463330354198 -0.9946902424873149 -0.004458380291245571 -0.09581628524271313 -0.9953890507371808 -0.004460959319859007 -0.09581894420101469 -0.995388783227011 0.004460959319859007 0.09581894420101469 0.995388783227011 0.004458380291245571 0.09581628524271313 0.9953890507371808 0.01079581468578262 0.1023463330354198 0.9946902424873149 0.9006312732702783 0.184235557488107 0.3935995032575677 0.9140735431317246 0.1655938409318771 0.3702002668719231 0.9216773985449562 0.1543073910567798 0.3559494375282138 -0.9216773985449562 -0.1543073910567798 -0.3559494375282138 -0.9140735431317246 -0.1655938409318771 -0.3702002668719231 -0.9006312732702783 -0.184235557488107 -0.3935995032575677 0.0008007850258315159 -0.09039150978887539 -0.9959059863769422 -0.0008007850258315159 0.09039150978887539 0.9959059863769422 -0.01075649788807149 0.9995620510894315 0.02756816597223926 -0.006716028346641294 0.999475288903926 0.03168661915794756 -0.006315207491680864 0.999464867974066 0.03209510616776137 0.006315207491680864 -0.999464867974066 -0.03209510616776137 0.006716028346641294 -0.999475288903926 -0.03168661915794756 0.01075649788807149 -0.9995620510894315 -0.02756816597223926 -1.157259076034438e-020 -0.9999999979197582 -6.450181205663836e-005 0.004671067444897015 -0.9999665336340035 0.006716601887925604 0.006204736968704651 -0.9999407596261793 0.008943068677412352 -0.006204736968704651 0.9999407596261793 -0.008943068677412352 -0.004671067444897015 0.9999665336340035 -0.006716601887925604 1.157259076034438e-020 0.9999999979197582 6.450181205663836e-005 0.9338681191719526 0.1348394762169404 0.3312229636480253 -0.9338681191719526 -0.1348394762169404 -0.3312229636480253 0.00897295824350252 -0.9998757315918625 0.01296176662334557 -0.00897295824350252 0.9998757315918625 -0.01296176662334557 -0.9339444544418049 0.1407940027916114 0.3285191087217226 -0.9294909902303715 0.1299033390301004 0.3452124296565728 -0.9399623412950603 0.1572199293011113 0.3029070662392382 0.9399623412950603 -0.1572199293011113 -0.3029070662392382 0.9294909902303715 -0.1299033390301004 -0.3452124296565728 0.9339444544418049 -0.1407940027916114 -0.3285191087217226 1.172950410623281e-017 0.9992574657191585 0.03852943296396869 -1.172950410623281e-017 -0.9992574657191585 -0.03852943296396869 0 0.07991461157145938 0.9968017129085318 0 0.07991461157145938 0.9968017129085318 0 0.07991461157145938 0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318 -0.9218001741158475 0.1128702562766233 0.3708702525790428 0.9218001741158475 -0.1128702562766233 -0.3708702525790428 0 0.07991461157145938 0.9968017129085318 -0 -0.07991461157145938 -0.9968017129085318</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1394\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1392\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1390\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1391\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 7 26 8 9 27 10 21 28 22 23 29 24 30 31 32 33 34 35 16 15 36 37 18 17 38 39 40 41 42 43 44 31 30 35 34 45 38 46 39 42 47 43</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1392\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1395\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1396\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1399\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"228\">-0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3322747349739075 0.9441547989845276 0.1811926662921906 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3556759059429169 0.9418748617172241 0.2006964236497879 -0.3628226518630981 0.9441547989845276 0.1811926662921906 -0.3322747349739075 0.9441547989845276 0.1811926662921906 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3322747349739075 1.074667453765869 0.1964417695999146 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3556759059429169 1.072388291358948 0.2159450203180313 -0.3322747349739075 1.074667453765869 0.1964417695999146 -0.3628226518630981 1.074667453765869 0.1964417695999146 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3375794887542725 0.94066321849823 0.2110739201307297 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 1.076946258544922 0.1769385039806366 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3556759059429169 0.9464314579963684 0.1616898626089096 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.07117509841919 0.2263223081827164 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3375794887542725 1.078157424926758 0.1665609776973724 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3170006573200226 0.9410840272903442 0.2074696868658066 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3375794887542725 0.9476463198661804 0.1513124257326126 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3170006573200226 1.071596384048462 0.22271828353405 -0.3035684823989868 0.9429405331611633 0.1915705800056458 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 1.077736377716065 0.1701649725437164 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3170006573200226 0.9472243189811707 0.1549162715673447 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 1.073454737663269 0.2068191319704056 -0.3035684823989868 0.945365309715271 0.1708156019449234 -0.3035684823989868 1.075878262519836 0.1860643476247788 -0.3035684823989868 1.075878262519836 0.1860643476247788</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"76\" source=\"#ID1399\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1397\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1400\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"228\">-0.7660484854148862 -0.0745931702744352 0.6384399556277536 -0.999999999880804 9.129351145749808e-007 -1.541294222891259e-005 -0.999999999994756 1.099899772535657e-006 -3.046035710492433e-006 0.999999999994756 -1.099899772535657e-006 3.046035710492433e-006 0.999999999880804 -9.129351145749808e-007 1.541294222891259e-005 0.7660484854148862 0.0745931702744352 -0.6384399556277536 -1.162476943371287e-005 -0.9932434439682124 -0.1160493898261838 3.427597121637712e-022 -0.9932460392063136 -0.1160271761311556 2.37112327817461e-005 -0.9932400230976206 -0.1160786627887123 -2.37112327817461e-005 0.9932400230976206 0.1160786627887123 -3.427597121637712e-022 0.9932460392063136 0.1160271761311556 1.162476943371287e-005 0.9932434439682124 0.1160493898261838 -0.766051153372814 -0.07459198157284841 0.6384368932801559 0.766051153372814 0.07459198157284841 -0.6384368932801559 -0.7660502336723536 0.0745925132308464 -0.6384379346972096 0.7660502336723536 -0.0745925132308464 0.6384379346972096 1.522862207152876e-005 -0.9932426439875201 -0.1160562360787638 -1.522862207152876e-005 0.9932426439875201 0.1160562360787638 5.612146763604787e-005 -0.9932475702882814 -0.1160140550399245 -5.612146763604787e-005 0.9932475702882814 0.1160140550399245 -3.471916287413821e-018 0.993242000120007 0.1160617473485916 1.585121066035665e-005 0.9932438862712563 0.1160456036802376 8.070319983265988e-006 0.9932398287754397 0.1160803276572105 -8.070319983265988e-006 -0.9932398287754397 -0.1160803276572105 -1.585121066035665e-005 -0.9932438862712563 -0.1160456036802376 3.471916287413821e-018 -0.993242000120007 -0.1160617473485916 -0.1736487374015801 -0.1142829697488939 0.9781541385815481 0.1736487374015801 0.1142829697488939 -0.9781541385815481 2.222021911968254e-005 0.9932461275554015 0.1160264176920982 -2.222021911968254e-005 -0.9932461275554015 -0.1160264176920982 -0.7660486120073445 0.07459292706600855 -0.6384398321481405 0.7660486120073445 -0.07459292706600855 0.6384398321481405 -4.106049424604954e-005 -0.9932435989717825 -0.1160480564922013 4.106049424604954e-005 0.9932435989717825 0.1160480564922013 3.396163110747765e-005 -0.9932414115337033 -0.1160667793175307 -3.396163110747765e-005 0.9932414115337033 0.1160667793175307 6.647656232279825e-006 0.9932389066328453 0.1160882177768221 -6.647656232279825e-006 -0.9932389066328453 -0.1160882177768221 -0.1736515678230348 -0.1142833672265894 0.9781535896616412 0.1736515678230348 0.1142833672265894 -0.9781535896616412 2.504259532865034e-005 0.9932488028377058 0.1160035130258264 -2.504259532865034e-005 -0.9932488028377058 -0.1160035130258264 -0.1736579387619272 0.114283511484801 -0.9781524417531564 0.1736579387619272 -0.114283511484801 0.9781524417531564 -6.420171219164083e-005 -0.9932449077149694 -0.1160368440471479 6.420171219164083e-005 0.9932449077149694 0.1160368440471479 0.4999990993658716 -0.1004992050061297 0.8601748720036253 -0.4999990993658716 0.1004992050061297 -0.8601748720036253 -0.1736658952266699 0.1142845472302315 -0.9781509081422458 0.1736658952266699 -0.1142845472302315 0.9781509081422458 -5.946023309051964e-005 -0.9932419979460728 -0.1160617507216493 5.946023309051964e-005 0.9932419979460728 0.1160617507216493 -4.466557373368193e-006 0.9932389923049177 0.116087484877405 4.466557373368193e-006 -0.9932389923049177 -0.116087484877405 2.894799536756943e-005 0.993246845080762 0.1160202736556259 -2.894799536756943e-005 -0.993246845080762 -0.1160202736556259 -6.892321585256021e-005 -0.9932427930824257 -0.1160549406075073 6.892321585256021e-005 0.9932427930824257 0.1160549406075073 0.9396912244112444 -0.03969080372930595 0.3397131773479175 0.4999973724122661 -0.1004992598769736 0.8601758694272993 -0.4999973724122661 0.1004992598769736 -0.8601758694272993 -0.9396912244112444 0.03969080372930595 -0.3397131773479175 0.4999924063535025 0.100500966161157 -0.8601785566901258 -0.4999924063535025 -0.100500966161157 0.8601785566901258 0.5000055265544119 0.1005000820859015 -0.8601710335251777 -0.5000055265544119 -0.1005000820859015 0.8601710335251777 1.351536742928827e-005 0.9932451346926782 0.1160349181352688 -1.351536742928827e-005 -0.9932451346926782 -0.1160349181352688 4.268433620980341e-005 0.9932483331576502 0.1160075293142519 -4.268433620980341e-005 -0.9932483331576502 -0.1160075293142519 0.9396938380138644 0.03969024141156683 -0.3397060133931466 0.9396891726750086 -0.03969085591167384 0.3397188465692719 -0.9396891726750086 0.03969085591167384 -0.3397188465692719 -0.9396938380138644 -0.03969024141156683 0.3397060133931466 0.9396930255132888 0.03969063850974941 -0.339708214525893 -0.9396930255132888 -0.03969063850974941 0.339708214525893</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"76\" source=\"#ID1400\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1398\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1396\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1397\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"72\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 6 8 16 17 9 11 6 18 7 10 19 11 20 21 22 23 24 25 0 12 26 27 13 5 20 28 21 24 29 25 1 30 14 15 31 4 32 6 16 17 11 33 34 18 6 11 19 35 22 21 36 37 24 23 26 12 38 39 13 27 28 40 21 24 41 29 14 30 42 43 31 15 44 6 32 33 11 45 26 38 46 47 39 27 42 30 48 49 31 43 50 34 6 11 35 51 21 52 36 37 53 24 40 54 21 24 55 41 56 6 44 45 11 57 58 46 59 60 47 61 46 38 59 60 39 47 42 48 62 63 49 43 62 48 64 65 49 63 56 50 6 11 51 57 21 66 52 53 67 24 54 68 21 24 69 55 70 58 71 72 61 73 58 59 71 72 60 61 64 74 62 63 75 65 64 70 74 75 73 65 21 68 66 67 69 24 70 71 74 75 72 73</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1398\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1401\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1402\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1405\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8490208983421326 0.1812263131141663 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.9999729990959168 0.09892332553863525 -0.3725105226039887 0.8490208983421326 0.1812263131141663 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.9999729990959168 0.09892332553863525 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.2920382618904114 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 0.8554512858390808 0.2614400088787079 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.2920382618904114 1.006404519081116 0.1791373193264008 -0.3725105226039887 1.006404519081116 0.1791373193264008 -0.3725105226039887 0.8554512858390808 0.2614400088787079</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1405\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1403\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1406\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">0 -0.4786973748340194 -0.877979967497561 0 -0.4786973748340194 -0.877979967497561 0 -0.4786973748340194 -0.877979967497561 -0 0.4786973748340194 0.877979967497561 -0 0.4786973748340194 0.877979967497561 -0 0.4786973748340194 0.877979967497561 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 1.209554454249322e-016 -0.4786973748340193 -0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 -1.209554454249322e-016 0.4786973748340193 0.8779799674975611 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 1.519768238143688e-017 0.9968010375962467 -0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 -1.519768238143688e-017 -0.9968010375962467 0.0799230345210059 0 -0.9968021350235882 0.07990934621442103 0 -0.9968021350235882 0.07990934621442103 0 -0.9968021350235882 0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 1 0 0 -1 -0 -0 0 -0.9968021350235882 0.07990934621442103 -0 0.9968021350235882 -0.07990934621442103 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.9968010375962467 -0.07992303452100592 0 0.9968010375962467 -0.07992303452100592 0 0.9968010375962467 -0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 -0 -0.9968010375962467 0.07992303452100592 0 0.4786932702954678 0.877982205385639 0 0.4786932702954678 0.877982205385639 0 0.4786932702954678 0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -0 -0.4786932702954678 -0.877982205385639 -1 0 0 1 -0 -0 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 -1.209539388561795e-016 0.4786932702954678 0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639 1.209539388561795e-016 -0.4786932702954678 -0.877982205385639</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1406\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1404\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1402\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1403\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 8 7 30 31 10 9 25 32 26 27 33 28 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 34 36 37 39 53 54 55 56 57 58 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1404\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1407\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1408\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1411\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.0633825808763504 0.8219997882843018 0.1855440139770508 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.6798586249351502 0.2174845784902573 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.8228713870048523 0.2210390418767929 0.0633825808763504 0.8219997882843018 0.1855440139770508 -0.2392119616270065 0.82200026512146 0.1851133555173874 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 -0.1889988780021668 0.6943401694297791 0.2454363852739334 -0.1889988780021668 0.6943401694297791 0.2454363852739334 0.0633825808763504 0.6798586249351502 0.2179149836301804 0.02195688895881176 0.6943401694297791 0.2454363852739334 0.02375267259776592 0.8228713870048523 0.2210390418767929 0.02375267259776592 0.8228713870048523 0.2210390418767929 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.6798586249351502 0.2174845784902573 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.8228713870048523 0.2210390418767929 -0.2392119616270065 0.82200026512146 0.1851133555173874 -0.2392119616270065 0.6798586249351502 0.2174845784902573 0.02375267259776592 0.8228713870048523 0.2210390418767929 0.02375267259776592 0.8228713870048523 0.2210390418767929 -0.1889988780021668 0.6943401694297791 0.2454363852739334 -0.1889988780021668 0.6943401694297791 0.2454363852739334</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"44\" source=\"#ID1411\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1409\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1412\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">0.001387337141682634 -0.2220524090996359 -0.9750337444974421 0.001387337141682634 -0.2220524090996359 -0.9750337444974421 0.001387337141682634 -0.2220524090996359 -0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 -0.001387337141682634 0.2220524090996359 0.9750337444974421 0.5871770811767491 0.1797423846289223 0.7892501191058904 0.3330322933170721 0.1873578318890383 0.9241139185391649 0.644964467798049 0.1429182379491617 0.7507297866339702 -0.644964467798049 -0.1429182379491617 -0.7507297866339702 -0.3330322933170721 -0.1873578318890383 -0.9241139185391649 -0.5871770811767491 -0.1797423846289223 -0.7892501191058904 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 0.001386870495144848 -0.2220533530521428 -0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 -0.001386870495144848 0.2220533530521428 0.9750335301867984 3.614714750383517e-005 0.9997049233532446 -0.02429125185467766 6.972200714376944e-006 0.9996998649392079 -0.02449857122197072 3.414267295072655e-005 0.9997045772159082 -0.02430549583613239 -3.414267295072655e-005 -0.9997045772159082 0.02430549583613239 -6.972200714376944e-006 -0.9996998649392079 0.02449857122197072 -3.614714750383517e-005 -0.9997049233532446 0.02429125185467766 -1.667872850933478e-017 -0.8849633272774763 0.4656607234607388 -0.0001258651819107453 -0.8854385084749843 0.4647565296663953 -0.0006245036285647431 -0.8873118148838094 0.4611695492579906 0.0006245036285647431 0.8873118148838094 -0.4611695492579906 0.0001258651819107453 0.8854385084749843 -0.4647565296663953 1.667872850933478e-017 0.8849633272774763 -0.4656607234607388 0.3689954470602589 0.1683477590433835 0.9140576524890925 -0.3689954470602589 -0.1683477590433835 -0.9140576524890925 -0.0006556404756979402 -0.8874283031096446 0.4609453080089909 0.0006556404756979402 0.8874283031096446 -0.4609453080089909 -0.5324369513931456 0.1663152504389824 0.829969957445805 -0.5742615086464369 0.1817890206747265 0.7982333441101306 -0.3017067920176465 0.1897741692638221 0.9343226296791952 0.3017067920176465 -0.1897741692638221 -0.9343226296791952 0.5742615086464369 -0.1817890206747265 -0.7982333441101306 0.5324369513931456 -0.1663152504389824 -0.829969957445805 6.960335564674304e-019 0.9996986495932743 -0.02454811604551317 -6.960335564674304e-019 -0.9996986495932743 0.02454811604551317 -0.2795365000399969 0.1790523481666212 0.9432918963721716 0.2795365000399969 -0.1790523481666212 -0.9432918963721716</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"44\" source=\"#ID1412\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1410\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1408\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1409\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 7 30 8 9 31 10 25 32 26 27 33 28 34 35 36 37 38 39 20 19 40 41 22 21 7 42 30 31 43 10 42 34 36 37 39 43 42 36 30 31 37 43</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1410\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1413\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1414\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1417\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"168\">0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.01764903031289578 0.6965709924697876 0.2436218112707138 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.0158530380576849 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8135740160942078 0.2219508141279221 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.002106842584908009 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 0.01764903031289578 0.6965709924697876 0.2436218112707138 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.696714460849762 0.2454120069742203 -0.183667853474617 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 0.0158530380576849 0.8135740160942078 0.2219508141279221 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.002106842584908009 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.7263770699501038 0.3404266238212585 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.0003109071403741837 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.8216249346733093 0.3223681747913361 -0.183667853474617 0.7263770699501038 0.3404266238212585</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1417\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1415\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1418\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"168\">-9.169722976373865e-018 -0.1821198965755864 -0.983276331084654 -0.005848219727591161 -0.1918366380413361 -0.9814094469848022 -0.003043484746153533 -0.1871796094987132 -0.9823209918293049 0.003043484746153533 0.1871796094987132 0.9823209918293049 0.005848219727591161 0.1918366380413361 0.9814094469848022 9.169722976373865e-018 0.1821198965755864 0.983276331084654 0.9814788691163255 0.04935029315769431 0.1851047758524577 0.9843960977963142 0.03227702870119385 0.1729812592786051 0.9845849359046324 0.03107424619155901 0.1721246502198257 -0.9845849359046324 -0.03107424619155901 -0.1721246502198257 -0.9843960977963142 -0.03227702870119385 -0.1729812592786051 -0.9814788691163255 -0.04935029315769431 -0.1851047758524577 -0.008858386551980338 -0.1968286115952417 -0.9803978920036421 0.008858386551980338 0.1968286115952417 0.9803978920036421 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 3.155047175316686e-018 0.9968014312424773 -0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 -3.155047175316686e-018 -0.9968014312424773 0.07991812480876101 1.572333825322655e-017 -0.9557235430893282 0.2942660517028448 0.0006579533516455556 -0.9553377050857177 0.2955155433119237 0.001385184622082391 -0.9549088580608247 0.2968958640003838 -0.001385184622082391 0.9549088580608247 -0.2968958640003838 -0.0006579533516455556 0.9553377050857177 -0.2955155433119237 -1.572333825322655e-017 0.9557235430893282 -0.2942660517028448 0.9873699300492289 0.01134341927737611 0.1580251501302195 -0.9873699300492289 -0.01134341927737611 -0.1580251501302195 0.001969717348993657 -0.954562346254986 0.2980047773538896 -0.001969717348993657 0.954562346254986 -0.2980047773538896 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.9968014312424773 -0.07991812480876104 0 0.9968014312424773 -0.07991812480876104 0 0.9968014312424773 -0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 -0 -0.9968014312424773 0.07991812480876104 0 0.1862758884093816 0.9824974775526376 0 0.1862758884093816 0.9824974775526376 0 0.1862758884093816 0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -0 -0.1862758884093816 -0.9824974775526376 -1 0 0 1 -0 -0 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 -2.455664461750916e-017 0.1862758884093818 0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376 2.455664461750916e-017 -0.1862758884093818 -0.9824974775526376</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1418\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1416\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1414\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1415\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 15 16 17 18 19 20 21 22 23 24 25 8 7 26 27 10 9 21 28 22 23 29 24 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 30 32 33 35 49 50 51 52 53 54 55</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1416\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1419\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1420\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1423\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"156\">0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.2837311029434204 1.419497728347778 -0.1022137701511383 0.2837311029434204 1.419497728347778 -0.1022137701511383 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1487234085798264 1.461263656616211 -0.04204044118523598 0.1487234085798264 1.461263656616211 -0.04204044118523598 0.1520500034093857 1.474864363670349 -0.06615503132343292 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.2972021996974945 1.449135422706604 -0.1123467683792114 0.2972021996974945 1.449135422706604 -0.1123467683792114 0.3032180666923523 1.409106135368347 -0.07835546880960465 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.1119683906435967 1.441485643386841 -0.05572237819433212 0.3032180666923523 1.409106135368347 -0.07835546880960465 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.316688597202301 1.438741087913513 -0.08848993480205536 0.316688597202301 1.438741087913513 -0.08848993480205536 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1466608792543411 1.433232545852661 -0.0320349745452404 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.3361750841140747 1.428346157073975 -0.06463271379470825 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.1601327657699585 1.477472066879273 -0.02807273529469967 0.3301589787006378 1.468374967575073 -0.09862291812896729 0.1545893549919128 1.489822149276733 -0.05208484828472138 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.1593368053436279 1.449620008468628 -0.01808345876634121 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347 0.3496458828449249 1.457983136177063 -0.07476498931646347</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"52\" source=\"#ID1423\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1421\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1424\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"156\">-0.2117507404386459 0.321455254932216 -0.9229453629550066 -0.2600110696684296 0.01043847675148996 -0.9655492125484789 0.007326895033529043 -0.6541949177868747 -0.756290503808551 -0.007326895033529043 0.6541949177868747 0.756290503808551 0.2600110696684296 -0.01043847675148996 0.9655492125484789 0.2117507404386459 -0.321455254932216 0.9229453629550066 -0.5340335661942859 0.5457193397975845 0.6457542507399403 -0.8707103579114028 0.4699527830000934 0.1449408651011291 -0.7822641140321018 0.4093452656265391 0.4695735399345974 0.7822641140321018 -0.4093452656265391 -0.4695735399345974 0.8707103579114028 -0.4699527830000934 -0.1449408651011291 0.5340335661942859 -0.5457193397975845 -0.6457542507399403 0.1465548072432481 0.04878246053037574 -0.9879989676201573 -0.1465548072432481 -0.04878246053037574 0.9879989676201573 0.3202308478076849 -0.9465922625117664 -0.03762037566567392 -0.1790162912968978 -0.9771273884804481 -0.1147834227215927 0.1790162912968978 0.9771273884804481 0.1147834227215927 -0.3202308478076849 0.9465922625117664 0.03762037566567392 -0.9573953783632936 0.2484317593297414 0.1472268672659153 0.9573953783632936 -0.2484317593297414 -0.1472268672659153 -0.6678373175942008 0.2933145627367843 0.6840759347580586 0.6678373175942008 -0.2933145627367843 -0.6840759347580586 0.5620522173348252 -0.4846545636370911 -0.6702292584890242 -0.5620522173348252 0.4846545636370911 0.6702292584890242 -0.1052168161437504 0.6907663114035757 -0.715381943181732 0.1052168161437504 -0.6907663114035757 0.715381943181732 -0.0793312004268637 -0.9684364386380066 0.2362994391803917 0.0793312004268637 0.9684364386380066 -0.2362994391803917 -0.8727059715511012 0.2560767326326131 0.4157030120449623 0.8727059715511012 -0.2560767326326131 -0.4157030120449623 -0.8484371084385745 0.2185231540830602 0.482081014098234 0.8484371084385745 -0.2185231540830602 -0.482081014098234 0.5620589706866968 -0.4846631741876052 -0.6702173685133847 -0.5620589706866968 0.4846631741876052 0.6702173685133847 -0.1052741459759133 0.6906784752780507 -0.7154583132346911 0.1052741459759133 -0.6906784752780507 0.7154583132346911 0.5620476210655032 -0.4846406454961437 -0.6702431770541867 -0.5620476210655032 0.4846406454961437 0.6702431770541867 0.2437385669028079 -0.08741448486360912 0.9658934821398245 -0.2437385669028079 0.08741448486360912 -0.9658934821398245 0.2162155226341925 0.8876420744044321 0.406623161562422 0.1694938574646845 0.9428451667909947 0.2869056007480554 0.2541860079556013 0.660310801664626 0.7066676153359613 -0.2541860079556013 -0.660310801664626 -0.7066676153359613 -0.1694938574646845 -0.9428451667909947 -0.2869056007480554 -0.2162155226341925 -0.8876420744044321 -0.406623161562422 0.2050441197686757 -0.270224688595742 0.9407101182732243 -0.2050441197686757 0.270224688595742 -0.9407101182732243 0.5620695889105933 -0.4846418345315089 -0.6702238950110704 -0.5620695889105933 0.4846418345315089 0.6702238950110704 0.2529610287947978 0.6542028453927553 0.7127617799735758 -0.2529610287947978 -0.6542028453927553 -0.7127617799735758</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"52\" source=\"#ID1424\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1422\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1420\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1421\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 8 7 18 19 10 9 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 28 8 18 19 9 29 30 20 8 9 21 31 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 40 41 42 43 44 45 26 46 38 39 47 27 32 22 48 49 23 33 22 36 48 49 37 23 46 42 50 51 43 47 41 50 42 43 51 44 38 46 50 51 47 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1422\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1425\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1426\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1429\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">0.1553212702274323 1.314650535583496 -0.05614136904478073 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3060109317302704 1.261957168579102 -0.09241525828838348 0.3060109317302704 1.261957168579102 -0.09241525828838348 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1553212702274323 1.314650535583496 -0.05614136904478073 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1456548571586609 1.300154447555542 -0.03195736929774284 0.1456548571586609 1.300154447555542 -0.03195736929774284 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3194818496704102 1.291594505310059 -0.1025481522083283 0.3194818496704102 1.291594505310059 -0.1025481522083283 0.3254974186420441 1.251564621925354 -0.06855690479278565 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.1139697209000588 1.281091332435608 -0.04569549486041069 0.3254974186420441 1.251564621925354 -0.06855690479278565 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.3389680683612824 1.281198859214783 -0.07869188487529755 0.3389680683612824 1.281198859214783 -0.07869188487529755 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1511986702680588 1.273194313049316 -0.02203685790300369 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.3584554195404053 1.270805716514587 -0.05483284592628479 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.1608660966157913 1.316899299621582 -0.01803135313093662 0.3524397313594818 1.310833215713501 -0.08882484585046768 0.1616588830947876 1.330144643783569 -0.04211639612913132 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.1524664461612701 1.287976503372192 -0.007955476641654968 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029 0.3719260990619659 1.30044150352478 -0.06496687233448029</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1429\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1427\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1430\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">-0.5270872587659297 0.4829598615392093 -0.6992344340696084 -0.2373091719483964 -0.009947946585583324 -0.97138323810322 0.0302289803388917 -0.6523592771410928 -0.7573067953449394 -0.0302289803388917 0.6523592771410928 0.7573067953449394 0.2373091719483964 0.009947946585583324 0.97138323810322 0.5270872587659297 -0.4829598615392093 0.6992344340696084 -0.5821281597074549 0.5128590065675404 0.6309535997663915 -0.7838480433492671 0.4685158370778919 0.4075231960818029 0.7838480433492671 -0.4685158370778919 -0.4075231960818029 0.5821281597074549 -0.5128590065675404 -0.6309535997663915 0.1563350658793139 0.05170904550473698 -0.9863495941041895 -0.1563350658793139 -0.05170904550473698 0.9863495941041895 0.3285388353453203 -0.9437967567357263 -0.03619275680388343 -0.1506281647881631 -0.9803261545184075 -0.1275609138400202 0.1506281647881631 0.9803261545184075 0.1275609138400202 -0.3285388353453203 0.9437967567357263 0.03619275680388343 -0.6094776194613598 0.704008224981229 -0.3645674841980472 0.6094776194613598 -0.704008224981229 0.3645674841980472 -0.8193965941596137 0.04187406713262325 0.5716955343374633 0.8193965941596137 -0.04187406713262325 -0.5716955343374633 0.5620468045841043 -0.4846723610466129 -0.6702209276755684 -0.5620468045841043 0.4846723610466129 0.6702209276755684 -0.04262652272856061 -0.9574414427167757 0.2854625427766147 0.04262652272856061 0.9574414427167757 -0.2854625427766147 -0.8189515769899407 0.46942592209402 0.3300872887765723 0.8189515769899407 -0.46942592209402 -0.3300872887765723 -0.943859419131144 0.09540917204895222 0.3162696425620914 0.943859419131144 -0.09540917204895222 -0.3162696425620914 0.5620475949657969 -0.4846744725247572 -0.6702187379326335 -0.5620475949657969 0.4846744725247572 0.6702187379326335 -0.1052551056785802 0.6906696782463675 -0.7154696068175436 0.1052551056785802 -0.6906696782463675 0.7154696068175436 0.5620622113175559 -0.4846776506083926 -0.6702041820292888 -0.5620622113175559 0.4846776506083926 0.6702041820292888 0.2169583513266659 -0.05765775487784369 0.9744766067443905 -0.2169583513266659 0.05765775487784369 -0.9744766067443905 0.2033241252333373 0.8550932664263433 0.4769431892903231 0.1441081999331713 0.9399395443921297 0.3094292804502138 0.232953018600208 0.5645718045526801 0.7918279918196762 -0.232953018600208 -0.5645718045526801 -0.7918279918196762 -0.1441081999331713 -0.9399395443921297 -0.3094292804502138 -0.2033241252333373 -0.8550932664263433 -0.4769431892903231 0.189215187049918 -0.2702283709857141 0.9440202542869892 -0.189215187049918 0.2702283709857141 -0.9440202542869892 0.5620737986969204 -0.484671044609835 -0.6701992415209267 -0.5620737986969204 0.484671044609835 0.6701992415209267 0.2152998076267679 0.6552577786690892 0.7240740544512888 -0.2152998076267679 -0.6552577786690892 -0.7240740544512888</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1430\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1428\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1426\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1427\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 7 8 5 9 0 2 10 11 3 5 12 2 13 14 3 15 7 0 16 17 5 8 6 7 18 19 8 9 10 2 20 21 3 11 16 0 10 11 5 17 2 12 20 21 15 3 12 13 22 23 14 15 24 7 16 17 8 25 26 18 7 8 19 27 10 20 28 29 21 11 16 10 30 31 11 17 20 12 32 33 15 21 12 22 34 35 23 15 26 7 24 25 8 27 36 37 38 39 40 41 22 42 34 35 43 23 28 20 44 45 21 29 20 32 44 45 33 21 42 38 46 47 39 43 37 46 38 39 47 40 34 42 46 47 43 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1428\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1431\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1432\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1435\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"138\">0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.3287272155284882 1.101558089256287 -0.07955601811408997 0.3287272155284882 1.101558089256287 -0.07955601811408997 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.1151409223675728 1.132263422012329 -0.01849719509482384 0.1151409223675728 1.132263422012329 -0.01849719509482384 0.1121307536959648 1.144976377487183 -0.04253837838768959 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.342198371887207 1.131192564964294 -0.08968864381313324 0.342198371887207 1.131192564964294 -0.08968864381313324 0.3482146561145783 1.091163873672485 -0.05569736659526825 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.02388887666165829 1.104817986488342 -0.03156351298093796 0.3482146561145783 1.091163873672485 -0.05569736659526825 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.105472669005394 1.10316526889801 -0.008405376225709915 0.105472669005394 1.10316526889801 -0.008405376225709915 0.3616852462291718 1.12079918384552 -0.06583249568939209 0.3616852462291718 1.12079918384552 -0.06583249568939209 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.1501552313566208 1.164928674697876 -0.02887089923024178 0.105472669005394 1.10316526889801 -0.008405376225709915 0.105472669005394 1.10316526889801 -0.008405376225709915 0.1518978178501129 1.152041435241699 -0.004814382642507553 0.1518978178501129 1.152041435241699 -0.004814382642507553 0.1460323482751846 1.123474359512329 0.005232919007539749 0.1460323482751846 1.123474359512329 0.005232919007539749 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3811717331409454 1.110407590866089 -0.04197364300489426 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3751560747623444 1.150435447692871 -0.0759655237197876 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975 0.3946428298950195 1.140043497085571 -0.05210766941308975</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"46\" source=\"#ID1435\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1433\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1436\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"138\">-0.1526069341708608 0.2014247147177761 -0.9675428713725471 -0.154409281518514 0.06995639787526577 -0.9855272072232476 0.09500311225222836 -0.6364217107878273 -0.7654683629649796 -0.09500311225222836 0.6364217107878273 0.7654683629649796 0.154409281518514 -0.06995639787526577 0.9855272072232476 0.1526069341708608 -0.2014247147177761 0.9675428713725471 -0.2900583322876976 0.6155294324973895 0.7327957980228336 -0.4305008441564028 0.7745127584729289 0.4634641411622686 -0.4376760788393953 0.6090235893184742 0.6614604430088121 0.4376760788393953 -0.6090235893184742 -0.6614604430088121 0.4305008441564028 -0.7745127584729289 -0.4634641411622686 0.2900583322876976 -0.6155294324973895 -0.7327957980228336 0.177896048170807 0.05895478953893228 -0.9822816952563201 -0.177896048170807 -0.05895478953893228 0.9822816952563201 0.3543751582787857 -0.934605232097684 -0.03051732836471479 -0.04369649900807408 -0.9987996309860718 -0.02213398103650087 0.04369649900807408 0.9987996309860718 0.02213398103650087 -0.3543751582787857 0.934605232097684 0.03051732836471479 -0.2117804347327577 0.8531466670474889 0.4767492128679035 0.2117804347327577 -0.8531466670474889 -0.4767492128679035 -0.3287200085374632 0.4051046469262522 0.8531315144957938 0.3287200085374632 -0.4051046469262522 -0.8531315144957938 0.5620632890462979 -0.4846637448481013 -0.6702133343468127 -0.5620632890462979 0.4846637448481013 0.6702133343468127 -0.1052500340877712 0.6906722531251714 -0.7154678672641575 0.1052500340877712 -0.6906722531251714 0.7154678672641575 -0.008154407886818508 -0.97842746915962 0.2064296326255428 0.008154407886818508 0.97842746915962 -0.2064296326255428 -0.1491645848139461 0.6469968928687555 0.7477599529631548 0.1491645848139461 -0.6469968928687555 -0.7477599529631548 -0.1013988600854753 -0.1025717765919676 0.9895439868040904 0.1013988600854753 0.1025717765919676 -0.9895439868040904 0.5620712952768785 -0.4846411792026707 -0.6702229378697933 -0.5620712952768785 0.4846411792026707 0.6702229378697933 -0.1052822686682469 0.6906021664222173 -0.7155307761634067 0.1052822686682469 -0.6906021664222173 0.7155307761634067 0.562089467608081 -0.484678935656285 -0.6701803934278854 -0.562089467608081 0.484678935656285 0.6701803934278854 0.1948791177058165 -0.03431924276733405 0.9802266671837078 -0.1948791177058165 0.03431924276733405 -0.9802266671837078 0.1115421042893579 0.9377788356412317 0.3288300691756725 -0.1115421042893579 -0.9377788356412317 -0.3288300691756725 0.5620918735784156 -0.4846569278382608 -0.6701942911988175 -0.5620918735784156 0.4846569278382608 0.6701942911988175 0.1788184282318766 0.6574281446431123 0.7319919428216382 -0.1788184282318766 -0.6574281446431123 -0.7319919428216382</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"46\" source=\"#ID1436\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1434\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1432\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1433\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 7 18 8 9 19 10 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 8 18 28 29 19 9 20 8 30 31 9 21 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 18 40 28 29 41 19 26 30 38 39 31 27 32 22 42 43 23 33 22 36 42 43 37 23 30 28 44 45 29 31 40 44 28 29 45 41 38 30 44 45 31 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1434\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1437\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1438\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1441\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"162\">0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.2623249590396881 1.570870399475098 -0.1115184426307678 0.2623249590396881 1.570870399475098 -0.1115184426307678 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1539330631494522 1.616379618644714 -0.05164474248886108 0.1539330631494522 1.616379618644714 -0.05164474248886108 0.1395146399736404 1.627486228942871 -0.07555869966745377 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.275795191526413 1.600508689880371 -0.1216493099927902 0.275795191526413 1.600508689880371 -0.1216493099927902 0.2818127274513245 1.560474872589111 -0.08765904605388641 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.1159100905060768 1.596423625946045 -0.06531255692243576 0.2818127274513245 1.560474872589111 -0.08765904605388641 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.2952823638916016 1.590112090110779 -0.09779312461614609 0.2952823638916016 1.590112090110779 -0.09779312461614609 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.1480704993009567 1.587815523147583 -0.04159692674875259 0.160272628068924 1.631876587867737 -0.03761931881308556 0.160272628068924 1.631876587867737 -0.03761931881308556 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.3147695362567902 1.57972002029419 -0.07393627613782883 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.160272628068924 1.631876587867737 -0.03761931881308556 0.160272628068924 1.631876587867737 -0.03761931881308556 0.3087534606456757 1.619746804237366 -0.1079268008470535 0.1597972959280014 1.644940257072449 -0.06169012188911438 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.1544075012207031 1.603309035301209 -0.02757234871387482 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375 0.3282400369644165 1.609351634979248 -0.08406829833984375</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1441\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1439\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1442\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"162\">-0.2612649648831572 0.2154767763815477 -0.9409093351459635 -0.3120238526800682 -0.07529301042391109 -0.9470860984831274 -0.01732523752695652 -0.6643846957284765 -0.7471899438739886 0.01732523752695652 0.6643846957284765 0.7471899438739886 0.3120238526800682 0.07529301042391109 0.9470860984831274 0.2612649648831572 -0.2154767763815477 0.9409093351459635 -0.5116776227184808 0.4929719940946034 0.7036793470378068 -0.61982026767674 0.4991510477646793 0.6055337045058326 -0.8170728539503203 0.3730756256143977 0.439552646346151 0.8170728539503203 -0.3730756256143977 -0.439552646346151 0.61982026767674 -0.4991510477646793 -0.6055337045058326 0.5116776227184808 -0.4929719940946034 -0.7036793470378068 0.1410729471083749 0.04728219640286073 -0.9888694643366631 -0.1410729471083749 -0.04728219640286073 0.9888694643366631 0.3067464724749431 -0.9509680058590948 -0.03957844686891629 -0.222264189367348 -0.9710011656212904 -0.08806455863155831 0.222264189367348 0.9710011656212904 0.08806455863155831 -0.3067464724749431 0.9509680058590948 0.03957844686891629 -0.8461142536324233 0.3228838989908336 0.4240715241236134 0.8461142536324233 -0.3228838989908336 -0.4240715241236134 -0.7522535916241838 0.3506204932206724 0.5578349250649412 0.7522535916241838 -0.3506204932206724 -0.5578349250649412 0.5620416863427057 -0.4846401836812222 -0.6702484876331157 -0.5620416863427057 0.4846401836812222 0.6702484876331157 -0.1052279702985872 0.6907230101808186 -0.7154221113954954 0.1052279702985872 -0.6907230101808186 0.7154221113954954 -0.08911847962830034 -0.9484448676391016 0.3041549434709021 0.08911847962830034 0.9484448676391016 -0.3041549434709021 -0.9555879694916472 0.2506915569620883 0.1549366832959687 0.9555879694916472 -0.2506915569620883 -0.1549366832959687 -0.9556014649654541 0.2506460825295659 0.1549270198140411 0.9556014649654541 -0.2506460825295659 -0.1549270198140411 0.5620181180033185 -0.4846701760122687 -0.6702465632289694 -0.5620181180033185 0.4846701760122687 0.6702465632289694 -0.1052660889666847 0.6906765086185261 -0.7154613972508797 0.1052660889666847 -0.6906765086185261 0.7154613972508797 0.5620558193373243 -0.4846561231327442 -0.6702251101376221 -0.5620558193373243 0.4846561231327442 0.6702251101376221 0.2614239168632214 -0.107974508427586 0.9591658048646816 -0.2614239168632214 0.107974508427586 -0.9591658048646816 0.2835840095916742 0.8451598330638175 0.4530838400113706 0.2044205305712835 0.9410969837991859 0.2693486843573391 0.3059738327077238 0.5779843669752629 0.7565144316074548 -0.3059738327077238 -0.5779843669752629 -0.7565144316074548 -0.2044205305712835 -0.9410969837991859 -0.2693486843573391 -0.2835840095916742 -0.8451598330638175 -0.4530838400113706 0.2225006061998179 -0.2761711370454932 0.9349989215521658 -0.2225006061998179 0.2761711370454932 -0.9349989215521658 0.562042227331252 -0.4846734199866424 -0.6702240003573262 -0.562042227331252 0.4846734199866424 0.6702240003573262 0.5620425693420601 -0.4846750527563176 -0.6702225328076016 -0.5620425693420601 0.4846750527563176 0.6702225328076016 0.2889663716664621 0.6493798714439022 0.7034232144373833 -0.2889663716664621 -0.6493798714439022 -0.7034232144373833</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1442\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1440\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1438\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1439\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 2 15 16 3 17 8 7 18 19 10 9 20 6 8 9 11 21 12 2 22 23 3 13 24 0 12 13 5 25 2 14 22 23 17 3 14 15 26 27 16 17 28 8 18 19 9 29 30 20 8 9 21 31 12 22 32 33 23 13 24 12 34 35 13 25 22 14 36 37 17 23 14 26 38 39 27 17 30 8 28 29 9 31 40 41 42 43 44 45 26 46 38 39 47 27 32 22 48 49 23 33 22 36 50 51 37 23 46 42 52 53 43 47 41 52 42 43 53 44 38 46 52 53 47 39</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1440\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1443\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1444\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1447\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"210\">0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3140751421451569 1.607973217964172 -0.1055402606725693 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3392159342765808 1.613611817359924 -0.07962238043546677 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3140751421451569 1.607973217964172 -0.1055402606725693 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.339216023683548 1.609411358833313 -0.1320241838693619 0.339216023683548 1.609411358833313 -0.1320241838693619 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.4216348826885223 0.8485112190246582 -0.04465353116393089 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4467750787734985 0.8541495800018311 -0.01873541064560413 0.4216348826885223 0.8485112190246582 -0.04465353116393089 0.471916526556015 0.8555876016616821 -0.04522087052464485 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.2889344394207001 1.606535196304321 -0.07905499637126923 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.4467750787734985 0.8499488234519959 -0.07113713026046753 0.339216023683548 1.609411358833313 -0.1320241838693619 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.3643571734428406 1.615048885345459 -0.1061077415943146 0.339216023683548 1.609411358833313 -0.1320241838693619 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2889344394207001 1.602334499359131 -0.131456732749939 0.2889344394207001 1.602334499359131 -0.131456732749939 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8470740914344788 -0.01816817373037338 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2889344394207001 1.602334499359131 -0.131456732749939 0.2889344394207001 1.602334499359131 -0.131456732749939 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.3964940011501312 0.8428729772567749 -0.07056993991136551 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.2637951076030731 1.600897192955017 -0.1049730479717255 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499 0.3713544011116028 0.8414353728294373 -0.04408629238605499</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"70\" source=\"#ID1447\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1445\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1448\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"210\">0.7121836708119679 0.1557404146299578 0.6844993369461211 0.3868375999335935 0.1280001794504949 0.9132210166976327 0.7121878203325724 0.1557409396922177 0.6844949001079004 -0.7121878203325724 -0.1557409396922177 -0.6844949001079004 -0.3868375999335935 -0.1280001794504949 -0.9132210166976327 -0.7121836708119679 -0.1557404146299578 -0.6844993369461211 -0.1397991539385844 0.9870137805752409 -0.07912012078242896 -0.1397854057744817 0.9870158887178813 -0.07911811266021804 -0.1397921558860157 0.9870139522999297 -0.07913034258747995 0.1397921558860157 -0.9870139522999297 0.07913034258747995 0.1397854057744817 -0.9870158887178813 0.07911811266021804 0.1397991539385844 -0.9870137805752409 0.07912012078242896 0.7121835415319054 0.1557403982713827 0.6844994751768214 0.3868305965648333 0.1279992383157068 0.9132241151830661 -0.3868305965648333 -0.1279992383157068 -0.9132241151830661 -0.7121835415319054 -0.1557403982713827 -0.6844994751768214 0.3868164037145685 -0.0191313024773292 -0.9219582762158214 0.7121601037797707 0.0446929504145383 -0.7005929822426357 0.7121674042622895 0.04469407932465986 -0.7005854891300802 -0.7121674042622895 -0.04469407932465986 0.7005854891300802 -0.7121601037797707 -0.0446929504145383 0.7005929822426357 -0.3868164037145685 0.0191313024773292 0.9219582762158214 -0.1397999796143324 0.9870142551838378 -0.07911274084321916 0.1397999796143324 -0.9870142551838378 0.07911274084321916 -0.1397936820510165 0.9870155914581198 -0.07910719737923563 0.1397936820510165 -0.9870155914581198 0.07910719737923563 0.1398000093145633 -0.9870133953731055 0.07912341467417676 0.1397920699189058 -0.9870142472339551 0.07912681558723841 0.1397945789315667 -0.9870143200804079 0.07912147406081613 -0.1397945789315667 0.9870143200804079 -0.07912147406081613 -0.1397920699189058 0.9870142472339551 -0.07912681558723841 -0.1398000093145633 0.9870133953731055 -0.07912341467417676 -0.3868504373152667 0.01912515861491171 0.9219441238258104 0.3868504373152667 -0.01912515861491171 -0.9219441238258104 0.139796916829866 -0.9870134878570978 0.07912772480635578 -0.139796916829866 0.9870134878570978 -0.07912772480635578 0.3868216047912728 -0.01913054427063408 -0.9219561097702068 0.7121676317021652 0.04469411449494164 -0.7005852556864456 -0.7121676317021652 -0.04469411449494164 0.7005852556864456 -0.3868216047912728 0.01913054427063408 0.9219561097702068 -0.139797317906358 0.9870138655822434 -0.07912230440644323 0.139797317906358 -0.9870138655822434 0.07912230440644323 -0.1398015061678415 0.9870126308571869 -0.07913030646710245 0.1398015061678415 -0.9870126308571869 0.07913030646710245 0.1397897769542053 -0.987013750024252 0.07913706794010708 -0.1397897769542053 0.987013750024252 -0.07913706794010708 -0.3868511661520297 0.01912511454953269 0.9219438189175532 0.3868511661520297 -0.01912511454953269 -0.9219438189175532 0.1397921147097734 -0.9870147120373068 0.07912093835946439 -0.1397921147097734 0.9870147120373068 -0.07912093835946439 -0.3868356486941172 -0.1280000544911218 -0.9132218607488934 0.3868356486941172 0.1280000544911218 0.9132218607488934 -0.7122127191321335 -0.0447050027962357 0.7005387251475835 0.7122127191321335 0.0447050027962357 -0.7005387251475835 -0.3868353003950386 -0.1279997158045518 -0.9132220557576531 0.3868353003950386 0.1279997158045518 0.9132220557576531 0.1397926979644894 -0.9870138933571084 0.07913012015567621 -0.1397926979644894 0.9870138933571084 -0.07913012015567621 0.1397926979655048 -0.9870146754240228 0.07912036459178133 -0.1397926979655048 0.9870146754240228 -0.07912036459178133 -0.7121911290598167 -0.1557408636965086 -0.6844914747924689 -0.7121862825202999 -0.1557409163686991 -0.6844965054392562 0.7121862825202999 0.1557409163686991 0.6844965054392562 0.7121911290598167 0.1557408636965086 0.6844914747924689 -0.7122094375937212 -0.04470403383812917 0.7005421231882025 -0.7122126199852392 -0.04470497352052413 0.7005388278149118 0.7122126199852392 0.04470497352052413 -0.7005388278149118 0.7122094375937212 0.04470403383812917 -0.7005421231882025 -0.7121861315320546 -0.1557409180095111 -0.6844966621620312 0.7121861315320546 0.1557409180095111 0.6844966621620312</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"70\" source=\"#ID1448\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1446\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1444\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1445\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 1 4 14 15 16 17 18 19 20 21 6 8 22 23 9 11 24 7 6 11 10 25 26 27 28 29 30 31 32 1 13 14 4 33 26 34 27 30 35 31 36 16 37 38 21 39 40 6 22 23 11 41 42 24 6 11 25 43 28 27 44 45 30 29 46 32 13 14 33 47 34 48 27 30 49 35 36 50 16 21 51 39 42 6 40 41 11 43 46 52 32 33 53 47 36 54 50 51 55 39 27 56 44 45 57 30 27 58 56 57 59 30 60 61 54 55 62 63 46 64 65 66 67 47 68 50 54 55 51 69</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1446\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1449\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1450\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1453\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"228\">0.4633594453334808 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.988379180431366 0.1358994990587235 0.4633594453334808 0.988379180431366 0.1358994990587235 0.4633594453334808 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 1.00645387172699 0.1104805320501328 0.3092793822288513 1.00645387172699 0.1104805320501328 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.988379180431366 0.1358994990587235 0.3092793822288513 0.988379180431366 0.1358994990587235 0.3092793822288513 0.9858859777450562 0.1048086583614349 0.3092793822288513 0.9664848446846008 0.1136849373579025 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.4633594453334808 0.9573272466659546 0.1329552233219147 0.3092793822288513 1.00645387172699 0.1104805320501328 0.3092793822288513 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 1.00645387172699 0.1104805320501328 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.018564820289612 0.1280457824468613 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 0.9573272466659546 0.1329552233219147 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.3092793822288513 1.018564820289612 0.1280457824468613 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9626995325088501 0.1536033004522324 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.018564820289612 0.1280457824468613 0.4633594453334808 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 1.016549944877625 0.1492861360311508 0.3092793822288513 1.016549944877625 0.1492861360311508 0.4633594453334808 1.001353979110718 0.1642626523971558 0.4633594453334808 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.4633594453334808 0.9800872206687927 0.1659677624702454 0.3092793822288513 0.9626995325088501 0.1536033004522324 0.3092793822288513 1.016549944877625 0.1492861360311508 0.3092793822288513 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.4633594453334808 1.016549944877625 0.1492861360311508 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.4633594453334808 1.001353979110718 0.1642626523971558 0.4633594453334808 1.001353979110718 0.1642626523971558 0.3092793822288513 0.9800872206687927 0.1659677624702454 0.3092793822288513 1.001353979110718 0.1642626523971558 0.3092793822288513 1.001353979110718 0.1642626523971558</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"76\" source=\"#ID1453\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1451\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1454\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"228\">-1.776339763670333e-019 -0.07991900300950217 -0.9968013608327225 -2.027870309745611e-018 -0.07991900300950217 -0.9968013608327225 0 -0.7019467038801081 -0.7122294748968564 -0 0.7019467038801081 0.7122294748968564 2.027870309745611e-018 0.07991900300950217 0.9968013608327225 1.776339763670333e-019 0.07991900300950217 0.9968013608327225 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.7019467038801081 -0.7122294748968564 -0 0.7019467038801081 0.7122294748968564 2.898738914260018e-018 0.5795037448550457 -0.8149695759345732 -2.898738914260018e-018 -0.5795037448550457 0.8149695759345732 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 -0.9955340971290169 -0.09440265596641433 -0 0.9955340971290169 0.09440265596641433 -1 0 0 1 -0 -0 4.748950731204071e-018 0.5795037448550459 -0.8149695759345731 -4.748950731204071e-018 -0.5795037448550459 0.8149695759345731 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 1.843061888750653e-018 -0.995534097129017 -0.09440265596641415 -1.843061888750653e-018 0.995534097129017 0.09440265596641415 -1 0 0 1 -0 -0 5.730896300542484e-018 0.9677823485561018 -0.2517882559279441 -5.730896300542484e-018 -0.9677823485561018 0.2517882559279441 1 0 0 -1 -0 -0 -4.62053728699901e-018 -0.8232985997773137 0.5676085055781978 4.62053728699901e-018 0.8232985997773137 -0.5676085055781978 4.835062976132084e-018 0.9677823485561018 -0.251788255927944 -4.835062976132084e-018 -0.9677823485561018 0.251788255927944 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -2.777492070114276e-018 -0.8232985997773136 0.567608505578198 -5.287825904614969e-018 -0.2658319714319039 0.964019378936247 5.287825904614969e-018 0.2658319714319039 -0.964019378936247 2.777492070114276e-018 0.8232985997773136 -0.567608505578198 8.958142244258213e-019 0.9032019239526054 0.4292158950555213 -8.958142244258213e-019 -0.9032019239526054 -0.4292158950555213 0 0.9032019239526051 0.4292158950555214 -0 -0.9032019239526051 -0.4292158950555214 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 -4.393083191022361e-018 -0.2658319714319036 0.9640193789362471 -4.044203278242868e-019 0.4160212955636348 0.9093548711243343 4.044203278242868e-019 -0.4160212955636348 -0.9093548711243343 4.393083191022361e-018 0.2658319714319036 -0.9640193789362471 4.903180125159446e-019 0.4160212955636352 0.9093548711243343 -4.903180125159446e-019 -0.4160212955636352 -0.9093548711243343</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"76\" source=\"#ID1454\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1452\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1450\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1451\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"72\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 7 16 8 9 17 10 6 8 18 19 9 11 20 21 22 23 24 25 2 12 26 27 13 3 22 21 28 29 24 23 30 14 0 5 15 31 16 32 8 9 33 17 18 8 34 35 9 19 36 20 22 23 25 37 26 12 38 39 13 27 22 28 40 41 29 23 14 30 42 43 31 15 32 44 8 9 45 33 26 38 46 47 39 27 42 30 48 49 31 43 8 50 34 35 51 9 52 36 22 23 37 53 54 22 40 41 23 55 8 44 56 57 45 9 46 58 59 60 61 47 46 38 58 61 39 47 42 48 62 63 49 43 62 48 64 65 49 63 8 56 50 51 57 9 66 52 22 23 53 67 68 22 54 55 23 69 59 70 71 72 73 60 58 70 59 60 73 61 74 62 64 65 63 75 71 74 64 65 75 72 66 22 68 69 23 67 70 74 71 72 75 73</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1452\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1455\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1456\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1460\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"888\">-0.001449317671358585 0.240059107542038 0.2575531899929047 -0.001449317671358585 0.1619613170623779 0.1178073287010193 -0.1529100686311722 0.240059107542038 0.2577010691165924 -0.1529100686311722 0.240059107542038 0.2577010691165924 -0.001449317671358585 0.1619613170623779 0.1178073287010193 -0.001449317671358585 0.240059107542038 0.2575531899929047 0.1500110626220703 0.240059107542038 0.2577010691165924 0.1500110626220703 0.240059107542038 0.2577010691165924 -0.1523515284061432 0.2470187544822693 0.3542184829711914 -0.1523515284061432 0.2470187544822693 0.3542184829711914 -0.1529100686311722 0.1619613170623779 0.1178135275840759 -0.1529100686311722 0.1619613170623779 0.1178135275840759 0.1500110626220703 0.1619613170623779 0.1178135275840759 0.1500110626220703 0.1619613170623779 0.1178135275840759 0.1494526416063309 0.2470187544822693 0.3542184829711914 0.1494526416063309 0.2470187544822693 0.3542184829711914 -0.001449317671358585 0.2470187544822693 0.3542184829711914 -0.001449317671358585 0.2470187544822693 0.3542184829711914 -0.1628827601671219 0.2536900639533997 0.3536399900913239 -0.1628827601671219 0.2536900639533997 0.3536399900913239 -0.1630400717258453 0.1643714010715485 0.1090982854366303 -0.1630400717258453 0.1643714010715485 0.1090982854366303 -0.001449317671358585 0.1496018767356873 0.01143438369035721 -0.001449317671358585 0.1496018767356873 0.01143438369035721 0.1601412743330002 0.1643714010715485 0.1090982854366303 0.1601412743330002 0.1643714010715485 0.1090982854366303 0.1599837839603424 0.2536900639533997 0.3536399900913239 0.1599837839603424 0.2536900639533997 0.3536399900913239 -0.001449264585971832 0.261539101600647 0.4428333342075348 -0.001449264585971832 0.261539101600647 0.4428333342075348 -0.1540883034467697 0.261539101600647 0.4380881488323212 -0.1540883034467697 0.261539101600647 0.4380881488323212 -0.1634102165699005 0.2467786967754364 0.2577041983604431 -0.1634102165699005 0.2467786967754364 0.2577041983604431 -0.09997250139713287 0.1520867645740509 -0.001049425452947617 -0.09997250139713287 0.1520867645740509 -0.001049425452947617 -0.09253218770027161 0.1496018767356873 0.01143438369035721 -0.09253218770027161 0.1496018767356873 0.01143438369035721 0.08963353931903839 0.1496018767356873 0.01143438369035721 0.08963353931903839 0.1496018767356873 0.01143438369035721 0.09707370400428772 0.1520867645740509 -0.001049425452947617 0.09707370400428772 0.1520867645740509 -0.001049425452947617 0.1605114936828613 0.2467786967754364 0.2577041983604431 0.1605114936828613 0.2467786967754364 0.2577041983604431 0.1511895954608917 0.261539101600647 0.4380881488323212 0.1511895954608917 0.261539101600647 0.4380881488323212 -0.163021519780159 0.2689068913459778 0.4383325576782227 -0.163021519780159 0.2689068913459778 0.4383325576782227 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1630400717258453 0.3184337615966797 0.1096392124891281 -0.1630400717258453 0.3184337615966797 0.1096392124891281 -0.1097900420427322 0.3173555135726929 -0.0002152398228645325 -0.1097900420427322 0.3173555135726929 -0.0002152398228645325 -0.001449317671358585 0.1354821473360062 -0.008116859942674637 -0.001449317671358585 0.1354821473360062 -0.008116859942674637 0.1068910136818886 0.3173555135726929 -0.0002152398228645325 0.1068910136818886 0.3173555135726929 -0.0002152398228645325 0.1601412743330002 0.3184337615966797 0.1096392124891281 0.1601412743330002 0.3184337615966797 0.1096392124891281 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1601225733757019 0.2689068913459778 0.4383325576782227 0.1601225733757019 0.2689068913459778 0.4383325576782227 -0.001449317671358585 0.2768021523952484 0.4565147459506989 -0.001449317671358585 0.2768021523952484 0.4565147459506989 -0.1456240266561508 0.2768021523952484 0.4514736533164978 -0.1456240266561508 0.2768021523952484 0.4514736533164978 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.09238605946302414 0.1354821473360062 -0.008116859942674637 -0.09238605946302414 0.1354821473360062 -0.008116859942674637 -0.1097748056054115 0.3184337615966797 -0.02075992710888386 -0.1097748056054115 0.3184337615966797 -0.02075992710888386 0.08948712050914764 0.1354821473360062 -0.008116859942674637 0.08948712050914764 0.1354821473360062 -0.008116859942674637 0.1068758368492127 0.3184337615966797 -0.02075992710888386 0.1068758368492127 0.3184337615966797 -0.02075992710888386 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1427254229784012 0.2768021523952484 0.4514736533164978 0.1427254229784012 0.2768021523952484 0.4514736533164978 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.354182094335556 0.298282265663147 0.3550088405609131 -0.354182094335556 0.298282265663147 0.3550088405609131 -0.1634102165699005 0.3063607811927795 0.2575649619102478 -0.1628827601671219 0.3062825500965118 0.3534107804298401 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.3544719517230988 0.298282265663147 0.2575727701187134 -0.3544719517230988 0.298282265663147 0.2575727701187134 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1696929037570953 0.4537642896175385 0.1070729941129684 -0.1696929037570953 0.4537642896175385 0.1070729941129684 -0.09995711594820023 0.1357338577508926 -0.01938049495220184 -0.09995711594820023 0.1357338577508926 -0.01938049495220184 -0.1371392905712128 0.4597870707511902 -0.02026660554111004 -0.1371392905712128 0.4597870707511902 -0.02026660554111004 -0.001449317671358585 0.04650413244962692 -0.01317102089524269 -0.001449317671358585 0.04650413244962692 -0.01317102089524269 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.04103969037532806 0.08707645535469055 -0.01081464067101479 0.09705853462219238 0.1357338577508926 -0.01938049495220184 0.09705853462219238 0.1357338577508926 -0.01938049495220184 0.1342403590679169 0.4597870707511902 -0.02026660554111004 0.1342403590679169 0.4597870707511902 -0.02026660554111004 0.1667940318584442 0.4537642896175385 0.1070729941129684 0.1667940318584442 0.4537642896175385 0.1070729941129684 0.170243501663208 0.4526919424533844 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.3515732288360596 0.298282265663147 0.2575727701187134 0.3515732288360596 0.298282265663147 0.2575727701187134 0.1605114936828613 0.3063607811927795 0.2575649619102478 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.3512834012508392 0.298282265663147 0.3550088405609131 0.3512834012508392 0.298282265663147 0.3550088405609131 0.1599837839603424 0.3062825500965118 0.3534107804298401 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1599837839603424 0.3077715933322907 0.438141942024231 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.1628827601671219 0.3077715933322907 0.438141942024231 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.09300129115581513 0.0464128889143467 -0.01317102089524269 -0.09300129115581513 0.0464128889143467 -0.01317102089524269 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.3181760609149933 -0.273921549320221 -0.1097748056054115 0.3181760609149933 -0.273921549320221 0.09010248631238937 0.0464128889143467 -0.01317102089524269 0.09010248631238937 0.0464128889143467 -0.01317102089524269 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1599837839603424 0.3077715933322907 0.438141942024231 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.1427799314260483 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5756529569625855 0.2870831191539764 0.3586305379867554 -0.5756529569625855 0.2870831191539764 0.3586305379867554 -0.603806734085083 0.2870831191539764 0.2575727701187134 -0.603806734085083 0.2870831191539764 0.2575727701187134 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.09995711594820023 0.04646233096718788 -0.02443481422960758 -0.09995711594820023 0.04646233096718788 -0.02443481422960758 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.09995711594820023 0.1377387195825577 -0.2734987437725067 -0.09995711594820023 0.1377387195825577 -0.2734987437725067 -0.001449317671358585 -0.3543172776699066 -0.08908890932798386 -0.001449317671358585 -0.3543172776699066 -0.08908890932798386 0.09705853462219238 0.04646233096718788 -0.02443481422960758 0.09705853462219238 0.04646233096718788 -0.02443481422960758 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.09705853462219238 0.1377387195825577 -0.2734987437725067 0.09705853462219238 0.1377387195825577 -0.2734987437725067 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.57275390625 0.2870831191539764 0.3586305379867554 0.57275390625 0.2870831191539764 0.3586305379867554 0.600908100605011 0.2870831191539764 0.2575727701187134 0.600908100605011 0.2870831191539764 0.2575727701187134 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.1427799314260483 0.3090838491916657 0.4529981315135956 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.09210735559463501 -0.3543172776699066 -0.08908890932798386 -0.09210735559463501 -0.3543172776699066 -0.08908890932798386 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 0.08920849859714508 -0.3543172776699066 -0.08908890932798386 0.08920849859714508 -0.3543172776699066 -0.08908890932798386 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.5986962914466858 0.2943861186504364 0.2461786717176437 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.1048265770077705 0.04720093682408333 -0.2734573781490326 -0.1048265770077705 0.04720093682408333 -0.2734573781490326 -0.1013187915086746 -0.3543172776699066 -0.09922146797180176 -0.1013187915086746 -0.3543172776699066 -0.09922146797180176 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 0.09842002391815186 -0.3543172776699066 -0.09922146797180176 0.09842002391815186 -0.3543172776699066 -0.09922146797180176 0.1019275709986687 0.04720093682408333 -0.2734573781490326 0.1019275709986687 0.04720093682408333 -0.2734573781490326 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6997751593589783 0.2703775763511658 0.354082316160202 0.6997751593589783 0.2703775763511658 0.354082316160202 0.7538297772407532 0.2898140251636505 0.2332167774438858 0.7538297772407532 0.2898140251636505 0.2332167774438858 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.09248960018157959 -0.7727522850036621 -0.08908890932798386 -0.09248960018157959 -0.7727522850036621 -0.08908890932798386 0.08959063142538071 -0.7727522850036621 -0.08908890932798386 0.08959063142538071 -0.7727522850036621 -0.08908890932798386 0.7403134107589722 0.280442476272583 0.2985353469848633 0.7403134107589722 0.280442476272583 0.2985353469848633 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.6621055603027344 0.3010430932044983 0.2265639156103134 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.1043468117713928 -0.3548235893249512 -0.273533433675766 -0.1043468117713928 -0.3548235893249512 -0.273533433675766 -0.1016295403242111 -0.7727522850036621 -0.09962338954210281 -0.1016295403242111 -0.7727522850036621 -0.09962338954210281 0.09873109310865402 -0.7727522850036621 -0.09962338954210281 0.09873109310865402 -0.7727522850036621 -0.09962338954210281 0.1014480292797089 -0.3548235893249512 -0.273533433675766 0.1014480292797089 -0.3548235893249512 -0.273533433675766 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.6748431324958801 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.1036523431539536 -0.6999796628952026 -0.273533433675766 -0.1036523431539536 -0.6999796628952026 -0.273533433675766 0.100753627717495 -0.6999796628952026 -0.273533433675766 0.100753627717495 -0.6999796628952026 -0.273533433675766 0.6823241114616394 0.310824066400528 0.0157061405479908 0.6823241114616394 0.310824066400528 0.0157061405479908 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.8011427521705627 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"296\" source=\"#ID1460\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1457\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1461\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"888\">-3.234952956545837e-010 -0.9579877817902355 0.2868090130045148 -6.217357242973127e-011 -0.9515595232544742 0.3074645893492739 -0.2812065349451302 -0.9162931207527727 0.2851838031258053 0.2812065349451302 0.9162931207527727 -0.2851838031258053 6.217357242973127e-011 0.9515595232544742 -0.3074645893492739 3.234952956545837e-010 0.9579877817902355 -0.2868090130045148 0.2812005918009352 -0.916294768072033 0.2851843704949887 -0.2812005918009352 0.916294768072033 -0.2851843704949887 -0.2756918473565419 -0.9544959188559045 0.1137169564689446 0.2756918473565419 0.9544959188559045 -0.1137169564689446 -0.2442800039146172 -0.9227793826871448 0.2980025009542817 0.2442800039146172 0.9227793826871448 -0.2980025009542817 0.2442758821752764 -0.9227803713982717 0.2980028180228472 -0.2442758821752764 0.9227803713982717 -0.2980028180228472 0.2756935896854381 -0.9544954774242553 0.1137164376112813 -0.2756935896854381 0.9544954774242553 -0.1137164376112813 1.490483751561444e-018 -0.9931464214067424 0.1168767968716687 -1.490483751561444e-018 0.9931464214067424 -0.1168767968716687 -0.8704887825702192 -0.4886119739719802 0.05922514930857357 0.8704887825702192 0.4886119739719802 -0.05922514930857357 -0.8046057671952051 -0.5876209018924398 -0.0855057603634472 0.8046057671952051 0.5876209018924398 0.0855057603634472 -9.200784490519991e-013 -0.9321223686831632 0.3621434657708033 9.200784490519991e-013 0.9321223686831632 -0.3621434657708033 0.804604821940701 -0.5876223945276238 -0.08550439731028192 -0.804604821940701 0.5876223945276238 0.08550439731028192 0.8704895216285693 -0.4886106534106326 0.05922518137160225 -0.8704895216285693 0.4886106534106326 -0.05922518137160225 2.974499319537437e-008 -0.8735363385033532 0.4867589396345526 -2.974499319537437e-008 0.8735363385033532 -0.4867589396345526 -0.3116860285389407 -0.8228945555233569 0.4750751204847921 0.3116860285389407 0.8228945555233569 -0.4750751204847921 -0.9015170437079738 -0.4167464578187631 0.1165736239444807 0.9015170437079738 0.4167464578187631 -0.1165736239444807 -0.9185766413583475 -0.3939973318069229 0.03135373151386103 0.9185766413583475 0.3939973318069229 -0.03135373151386103 -0.2086040935063664 -0.949799062777097 0.2331653330152989 0.2086040935063664 0.949799062777097 -0.2331653330152989 0.2086063702315061 -0.9497992489494362 0.2331625377154804 -0.2086063702315061 0.9497992489494362 -0.2331625377154804 0.9185766708178467 -0.3939969993628236 0.03135704581577447 -0.9185766708178467 0.3939969993628236 -0.03135704581577447 0.9015146128661709 -0.4167510528800471 0.1165759954370121 -0.9015146128661709 0.4167510528800471 -0.1165759954370121 0.3116915687490797 -0.8228931038431774 0.4750740001495339 -0.3116915687490797 0.8228931038431774 -0.4750740001495339 -0.8174019137252895 -0.3563103952147633 0.4526555132770762 0.8174019137252895 0.3563103952147633 -0.4526555132770762 -0.9999820905342003 1.551754390397572e-005 0.005984845031944604 0.9999820905342003 -1.551754390397572e-005 -0.005984845031944604 -0.9733205705292534 -0.02918463832305922 -0.2275858604363652 0.9733205705292534 0.02918463832305922 0.2275858604363652 -0.9708137837163441 -0.09990252189294425 -0.2180368855624793 0.9708137837163441 0.09990252189294425 0.2180368855624793 -4.973308797008195e-005 -0.4802883840395421 0.8771106348023067 4.973308797008195e-005 0.4802883840395421 -0.8771106348023067 0.9708140150792235 -0.09990213515044862 -0.2180360326141954 -0.9708140150792235 0.09990213515044862 0.2180360326141954 0.9733203282558441 -0.02918431405002838 -0.2275869381519185 -0.9733203282558441 0.02918431405002838 0.2275869381519185 0.999982070663732 1.552603589011465e-005 0.005988164160817121 -0.999982070663732 -1.552603589011465e-005 -0.005988164160817121 0.8174051349614597 -0.3563064286015123 0.4526528186986943 -0.8174051349614597 0.3563064286015123 -0.4526528186986943 -1.533467956234012e-008 -0.3933849529556973 0.9193738514815634 1.533467956234012e-008 0.3933849529556973 -0.9193738514815634 -0.2774641446396492 -0.2995144511443457 0.9128552689200458 0.2774641446396492 0.2995144511443457 -0.9128552689200458 -0.9999975879857992 0.0004976203717153804 0.002139251399367902 0.9999975879857992 -0.0004976203717153804 -0.002139251399367902 -0.9996865263546504 -0.02493816425449222 -0.00222193352487478 0.9996865263546504 0.02493816425449222 0.00222193352487478 -0.5031715502941616 -0.4429180687134052 0.7420525421974897 0.5031715502941616 0.4429180687134052 -0.7420525421974897 -0.9938297139390042 -0.1089172766501073 -0.02096488824298363 0.9938297139390042 0.1089172766501073 0.02096488824298363 0.5031644996780427 -0.4429142935026257 0.742059576364873 -0.5031644996780427 0.4429142935026257 -0.742059576364873 0.9938298285119792 -0.1089165278974066 -0.02096334683736273 -0.9938298285119792 0.1089165278974066 0.02096334683736273 0.9996865289447992 -0.02493807414508746 -0.002221779519478998 -0.9996865289447992 0.02493807414508746 0.002221779519478998 0.9999975853886962 0.0004977304266776404 0.00214043948749002 -0.9999975853886962 -0.0004977304266776404 -0.00214043948749002 0.2774684575642872 -0.2995131211223426 0.912854394376479 -0.2774684575642872 0.2995131211223426 -0.912854394376479 -0.8994705543474922 -0.009788394691910805 0.4368717308217256 0.8994705543474922 0.009788394691910805 -0.4368717308217256 0.04493718847070125 -0.9989737508561716 0.00566517366904504 0.04076621903261399 -0.9683858721428929 -0.2461034701499217 0.0468698340447171 -0.9989001860101959 -0.00127947075645433 -0.0468698340447171 0.9989001860101959 0.00127947075645433 -0.04076621903261399 0.9683858721428929 0.2461034701499217 -0.04493718847070125 0.9989737508561716 -0.00566517366904504 0.02366492200974112 -0.5517765660279215 -0.8336561597257634 0.04462576523667903 -0.9752630527249254 -0.2164960024266041 -0.04462576523667903 0.9752630527249254 0.2164960024266041 -0.02366492200974112 0.5517765660279215 0.8336561597257634 -0.9990570470692374 -0.0375993076012986 -0.02170964691556774 0.9990570470692374 0.0375993076012986 0.02170964691556774 -0.9851454615818815 -0.06161690562177455 -0.1602865448695515 0.9851454615818815 0.06161690562177455 0.1602865448695515 -0.9690913892938591 -0.1070782175622976 0.2222524117308507 0.9690913892938591 0.1070782175622976 -0.2222524117308507 -0.9763006140656918 -0.175860789299445 -0.1261352201485753 0.9763006140656918 0.175860789299445 0.1261352201485753 9.869805431426705e-007 -0.1216014839457632 0.9925790039594904 -9.869805431426705e-007 0.1216014839457632 -0.9925790039594904 -1.837198440433751e-005 -0.05666264686922608 0.9983933814445304 1.837198440433751e-005 0.05666264686922608 -0.9983933814445304 0.9690892642041279 -0.1070789280220219 0.2222613353193871 -0.9690892642041279 0.1070789280220219 -0.2222613353193871 0.9763005019376909 -0.1758613568419084 -0.1261352967489112 -0.9763005019376909 0.1758613568419084 0.1261352967489112 0.985145322931821 -0.06161747969626393 -0.1602871763474503 -0.985145322931821 0.06161747969626393 0.1602871763474503 0.9990570199402463 -0.0375998952982182 -0.02170987751410551 -0.9990570199402463 0.0375998952982182 0.02170987751410551 -0.02366493571792748 -0.5517768020638852 -0.8336560031101667 -0.04076619997730011 -0.9683859664691773 -0.2461031021441385 -0.04462578548346446 -0.975263111227018 -0.2164957347149845 0.04462578548346446 0.975263111227018 0.2164957347149845 0.04076619997730011 0.9683859664691773 0.2461031021441385 0.02366493571792748 0.5517768020638852 0.8336560031101667 -0.04493713660936019 -0.9989737535032993 0.005665118258344553 -0.04686985171654567 -0.9989001851420066 -0.001279501205082898 0.04686985171654567 0.9989001851420066 0.001279501205082898 0.04493713660936019 0.9989737535032993 -0.005665118258344553 0.8994719120219989 -0.009786118546536363 0.4368689865019977 -0.8994719120219989 0.009786118546536363 -0.4368689865019977 7.367702913516951e-009 -0.02830913765764351 0.9995992160486525 -7.367702913516951e-009 0.02830913765764351 -0.9995992160486525 -0.1992518788334495 -0.01139878853772022 0.9798820114693465 0.1992518788334495 0.01139878853772022 -0.9798820114693465 0.05313815940111782 -0.9984565021845745 0.01615392400645438 0.04894046550362478 -0.9988003242091736 0.001656259622829284 -0.04894046550362478 0.9988003242091736 -0.001656259622829284 -0.05313815940111782 0.9984565021845745 -0.01615392400645438 0.02541770183677723 -0.5744325664555302 -0.818157177459594 -0.02541770183677723 0.5744325664555302 0.818157177459594 -0.4776759646854844 -0.1060206642515086 0.8721154118082427 0.4776759646854844 0.1060206642515086 -0.8721154118082427 -0.948167466935901 -0.3110276407063832 -0.06511728926312721 0.948167466935901 0.3110276407063832 0.06511728926312721 -0.9996321410519423 -0.02712136582566339 -0.0001187082981316481 0.9996321410519423 0.02712136582566339 0.0001187082981316481 0.4777126476003307 -0.1060674432822479 0.8720896305989708 -0.4777126476003307 0.1060674432822479 -0.8720896305989708 0.9481669711281279 -0.3110291485060471 -0.06511730677258731 -0.9481669711281279 0.3110291485060471 0.06511730677258731 0.9996321700259963 -0.02712029790701727 -0.0001187036323516585 -0.9996321700259963 0.02712029790701727 0.0001187036323516585 -0.02541772641987503 -0.5744328089866907 -0.8181570064133806 0.02541772641987503 0.5744328089866907 0.8181570064133806 -0.04894045645718776 -0.9988003246976386 0.001656232367120277 0.04894045645718776 0.9988003246976386 -0.001656232367120277 -0.05313800065321193 -0.9984564967070155 0.01615478474424408 0.05313800065321193 0.9984564967070155 -0.01615478474424408 0.1992520465395727 -0.01139743910568457 0.9798819930642794 -0.1992520465395727 0.01139743910568457 -0.9798819930642794 0.05698037502494026 -0.9982593360277356 0.01521627074816993 0.06301398155012374 -0.9978973057251951 0.01517251975109406 -0.06301398155012374 0.9978973057251951 -0.01517251975109406 -0.05698037502494026 0.9982593360277356 -0.01521627074816993 0.07220965848694676 -0.9972581577389953 -0.01618431475916849 -0.07220965848694676 0.9972581577389953 0.01618431475916849 0.08464117416450329 -0.9962514551856712 -0.01785804234755087 -0.08464117416450329 0.9962514551856712 0.01785804234755087 0.05804349935847929 -0.9543882301332066 -0.2928720853298034 -0.05804349935847929 0.9543882301332066 0.2928720853298034 -0.9997155845505343 -0.02376206962614927 -0.002028313059047507 0.9997155845505343 0.02376206962614927 0.002028313059047507 -0.9947201077769768 -0.08705250788645738 -0.0543485791427706 0.9947201077769768 0.08705250788645738 0.0543485791427706 -0.9567690259522409 -0.03346676688157008 0.2889169543188745 0.9567690259522409 0.03346676688157008 -0.2889169543188745 -0.9596228460909934 -0.2794338093639866 0.03226049355717801 0.9596228460909934 0.2794338093639866 -0.03226049355717801 -0.9999512956216323 -0.006497377633779611 0.007429028772524331 0.9999512956216323 0.006497377633779611 -0.007429028772524331 -3.901761616862526e-013 -0.09347540603174656 0.9956215889921231 3.901761616862526e-013 0.09347540603174656 -0.9956215889921231 0.9567670008545158 -0.03346797143143741 0.2889235209603388 -0.9567670008545158 0.03346797143143741 -0.2889235209603388 0.9947199598846177 -0.08705306808189042 -0.05435038863407004 -0.9947199598846177 0.08705306808189042 0.05435038863407004 0.9596226115168612 -0.2794344652553429 0.03226178998474629 -0.9596226115168612 0.2794344652553429 -0.03226178998474629 0.9999512957144556 -0.006498115259404758 0.007428371090393464 -0.9999512957144556 0.006498115259404758 -0.007428371090393464 0.9997155503841998 -0.02376330161955009 -0.00203071813770353 -0.9997155503841998 0.02376330161955009 0.00203071813770353 -0.08464106271132993 -0.9962514626526612 -0.01785815403477691 0.08464106271132993 0.9962514626526612 0.01785815403477691 -0.05804348823879056 -0.9543881044087331 -0.2928724972341693 0.05804348823879056 0.9543881044087331 0.2928724972341693 -0.07220971410323639 -0.9972581543863262 -0.01618427320294488 0.07220971410323639 0.9972581543863262 0.01618427320294488 -0.05697975250352784 -0.9982593489102732 0.01521775666365164 0.05697975250352784 0.9982593489102732 -0.01521775666365164 -0.06301300009297557 -0.9978973426808896 0.01517416520609868 0.06301300009297557 0.9978973426808896 -0.01517416520609868 0.1159152314789492 -0.5849783904363448 -0.8027228300189829 -0.1159152314789492 0.5849783904363448 0.8027228300189829 -0.9901595337418041 -0.1398104911772548 0.006092971113353422 0.9901595337418041 0.1398104911772548 -0.006092971113353422 -0.4132302658222034 -0.0853117835344339 0.906621556658943 0.4132302658222034 0.0853117835344339 -0.906621556658943 -0.9921051517240733 -0.1036476073615039 0.07060128476726806 0.9921051517240733 0.1036476073615039 -0.07060128476726806 0.4132279345911737 -0.08531204065782463 0.9066225950153186 -0.4132279345911737 0.08531204065782463 -0.9066225950153186 0.9901595172279322 -0.1398106134766217 0.006092848450349776 -0.9901595172279322 0.1398106134766217 -0.006092848450349776 0.9921051154436165 -0.1036470165708205 0.07060266189440977 -0.9921051154436165 0.1036470165708205 -0.07060266189440977 -0.1159164628534591 -0.5849792717652266 -0.8027220099415288 0.1159164628534591 0.5849792717652266 0.8027220099415288 0.1250974713162175 -0.9921180956036373 0.007232361032191726 -0.1250974713162175 0.9921180956036373 -0.007232361032191726 0.06485830889529796 -0.9936291449251408 -0.09216573182357687 -0.06485830889529796 0.9936291449251408 0.09216573182357687 -0.3954628486908789 -0.9144944149380586 -0.0854932766502305 0.3954628486908789 0.9144944149380586 0.0854932766502305 -0.9994575407345154 0.02665766213240324 0.0193389068602394 0.9994575407345154 -0.02665766213240324 -0.0193389068602394 -0.9362204999204865 -0.02944462073358915 0.3501773691124108 0.9362204999204865 0.02944462073358915 -0.3501773691124108 0 0 1 -0 -0 -1 0.9362197042172463 -0.02944465744666143 0.3501794933790681 -0.9362197042172463 0.02944465744666143 -0.3501794933790681 0.9994576316254423 0.02665534148774293 0.01933740819844515 -0.9994576316254423 -0.02665534148774293 -0.01933740819844515 -0.1250972968983719 -0.9921181191248688 0.007232151329507097 0.1250972968983719 0.9921181191248688 -0.007232151329507097 -0.06485814056062322 -0.9936291286457055 -0.09216602578930233 0.06485814056062322 0.9936291286457055 0.09216602578930233 0.3954580285428707 -0.9144961465914285 -0.08549704983456716 -0.3954580285428707 0.9144961465914285 0.08549704983456716 -0.100695794754597 -0.9856927002483367 -0.1351675167926194 0.100695794754597 0.9856927002483367 0.1351675167926194 0.3120306604070797 -0.7954287677809169 -0.5195478248943536 -0.3120306604070797 0.7954287677809169 0.5195478248943536 -0.4151053597124028 -2.915928035469865e-005 0.9097733451183172 0.4151053597124028 2.915928035469865e-005 -0.9097733451183172 0.4150926689286753 -2.886845055806662e-005 0.9097791354874445 -0.4150926689286753 2.886845055806662e-005 -0.9097791354874445 0.1006962484761042 -0.9856925593885402 -0.1351682059839063 -0.1006962484761042 0.9856925593885402 0.1351682059839063 -0.3120320962622111 -0.7954273829439994 -0.5195490827295054 0.3120320962622111 0.7954273829439994 0.5195490827295054 0.01779273758949539 -0.9952231201370434 -0.0959914560456267 -0.01779273758949539 0.9952231201370434 0.0959914560456267 -0.9998629779706079 -0.0005771715810145362 0.01654364399743302 0.9998629779706079 0.0005771715810145362 -0.01654364399743302 -0.9145873298303341 -0.0005385388398137522 0.404388088461737 0.9145873298303341 0.0005385388398137522 -0.404388088461737 0.9145808842121449 -0.0005380349770274592 0.4044026665986449 -0.9145808842121449 0.0005380349770274592 -0.4044026665986449 0.9998629826075197 -0.0005765823352515847 0.01654338429721482 -0.9998629826075197 0.0005765823352515847 -0.01654338429721482 -0.01779270708697304 -0.9952231309454234 -0.09599134963998564 0.01779270708697304 0.9952231309454234 0.09599134963998564 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 -0.5805296449644594 0.7970800414865904 0.1662790990508843 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 0.5805288259387089 0.79708037182807 0.1662803749714611 -0.01939252250667103 -0.9996859402873071 -0.01587296011180408 0.01939252250667103 0.9996859402873071 0.01587296011180408 -0.9999397759429392 -0.002011921118868233 0.01078872840496727 0.9999397759429392 0.002011921118868233 -0.01078872840496727 0.9999397920931323 -0.002011726887975461 0.01078726766476841 -0.9999397920931323 0.002011726887975461 -0.01078726766476841 0.01939245868370844 -0.9996859421610532 -0.0158729200769155 -0.01939245868370844 0.9996859421610532 0.0158729200769155 -0.02872498908936132 -0.9993173359750012 -0.02323224099484929 0.02872498908936132 0.9993173359750012 0.02323224099484929 0.02872489305492778 -0.999317340439856 -0.0232321676818156 -0.02872489305492778 0.999317340439856 0.0232321676818156 -0.0338039231267008 -0.9985855403020367 -0.04103917008095537 0.0338039231267008 0.9985855403020367 0.04103917008095537 0.03380383430301043 -0.9985855458828281 -0.04103910745019926 -0.03380383430301043 0.9985855458828281 0.04103910745019926 -0.03095060591091806 -0.9988632126208304 -0.03625386140179363 0.03095060591091806 0.9988632126208304 0.03625386140179363 0.03095052874497888 -0.9988632158995391 -0.03625383694503856 -0.03095052874497888 0.9988632158995391 0.03625383694503856 -0.02363192930817951 -0.9986858878964992 -0.0454755894250371 0.02363192930817951 0.9986858878964992 0.0454755894250371 0.02363189189260647 -0.9986858900590736 -0.04547556137633117 -0.02363189189260647 0.9986858900590736 0.04547556137633117 -0.01337538710735877 -0.9993032316896482 -0.03484465747218112 0.01337538710735877 0.9993032316896482 0.03484465747218112 0.01337535277071187 -0.9993032331787931 -0.03484462794563845 -0.01337535277071187 0.9993032331787931 0.03484462794563845</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"296\" source=\"#ID1461\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1459\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1462\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"1204\">-0.02636663033366615 6.838755345493062 -0.02721889647085817 3.636995278897075 -3.055581198595796 6.842143449215987 -0.03075380607900271 3.636979847311833 -0.03160607430193035 6.838739913907263 2.997601080631402 6.84212801763019 -0.02864833987362354 5.483028193469725 -3.057863351562802 5.485993454889168 -3.046682747609613 7.421353608982838 -0.0289123393400924 3.636263891157869 -3.058127357745602 3.636405881443521 -3.058091668136631 6.840639902274836 3.000147237397563 3.636405235727331 -0.02906036768025068 3.63626324544168 3.00011154770125 6.840639256558645 2.9998832306968 5.48599316172996 -0.02932436766466735 5.483027900310498 2.988705010905401 7.421353315835564 -0.02898635342717174 7.420855085281451 -0.02898635342717174 5.482544939601901 -3.047030568122864 7.420855085281451 -5.159912367381772 5.296856146763377 -5.474658075878946 7.219549253258736 -5.225329501062905 7.231142715651031 -4.373547947010668 2.495708889645916 -4.566221446976303 2.304321095525766 -5.284730168103733 5.567656581500462 -0.02897094982604534 2.714251480314225 -0.02897212529120171 0.5724803258323166 -3.058185968988067 2.714376292021933 -0.02900058159730653 0.5724802940152011 -0.0290017570653396 2.714251448497109 3.000205848768988 2.714376260204818 4.51912475598531 2.318306065720881 4.326447095963328 2.509694088595111 5.23761693820873 5.581645452160142 5.425781084175483 7.221534450837133 5.111034404777476 5.298841441446934 5.176454019892085 7.233127912643904 2.989052832126617 7.420855085281451 -0.02898635342717165 5.482544939601901 -0.02898635342717165 7.420855085281451 -0.02898635342717178 7.790007593915478 -3.047030568122864 7.790007593915478 -0.02898529171943672 9.585939924497836 -5.233578201713131 7.355735839827242 -5.482903018040604 7.344061827949919 -5.41974110645347 9.048229402814595 -5.16381046254205 5.295773823995131 -5.413134337179937 5.295836535495962 -5.478754947755846 7.218434380103668 -5.163568618199661 5.683786140393082 -4.518427213087274 2.405157487470111 -5.412892491165275 5.683855181014641 -2.615203760778698 -0.06186090152526974 -3.899768724483668 2.141380444338674 -3.691532640562677 2.315708005786755 -0.02898635342717171 0.5724606318597649 -1.850643754005432 0.5724606318597649 -3.058201372623444 2.714354935577812 1.792670786380768 0.572460631859765 -0.02898635342717171 0.572460631859765 3.000221252441406 2.714354935577812 3.843183514386036 2.141180313622572 2.558618446146386 -0.06206097129407832 3.6349433670269 2.315507870248307 4.469578241634467 2.418372813017507 5.114699187858625 5.697005749432438 5.36402783025949 5.6970747901442 5.364272833238893 5.297829338659803 5.114944189165764 5.297766627151653 5.429887681453169 7.220427407740841 5.434128262689799 7.348232666916337 5.184804956831304 7.359906676366162 5.370971728479812 9.052399887415888 2.989052832126617 7.790007593915478 -0.02898635342717164 7.790007593915478 -0.02898529171943657 9.585939924497836 -3.073559076940085 7.820103220942611 -3.109856074710857 9.522417415152312 -0.05711945621795228 9.618731098239561 -5.699618030456981 8.965286654319527 -5.736105240871591 7.260339372503561 -5.93120865529341 8.970221092247884 -5.073759430605529 7.054785231902612 -4.935531951542906 5.136040407634792 -6.127173639791447 5.133255636556745 -4.935545297933068 5.162224262445908 -3.287399448785889 2.190096748478799 -6.368646659170224 2.200915323218838 -2.568644366127439 0.1413895475487604 -2.725268582380571 -0.1084508522356947 -3.798823731668918 2.270371778376013 -3.466273929253212 3.41033496303592 -3.149763314163041 0.8796827536958151 -6.460951685521415 0.8988482333115089 -0.02898635342717163 1.937154820393069 -0.02898635342717164 1.454819714509872 -1.850643754005432 1.937154820393069 1.792670786380768 1.937154820393069 -0.02898635342717174 1.454819714509872 -0.02898635342717175 1.937154820393069 2.669317919921736 -0.1090026243704966 2.512696550149399 0.140837784823799 3.742868755891826 2.269820095835775 3.146487813238784 0.8511975929225955 3.462996692318609 3.381850019386242 6.457675910666511 0.8703630741826385 3.287399951146515 2.189953668002609 4.935545800267551 5.162081185696131 6.368647161530801 2.200772242756213 4.935532676480418 5.136350543601128 5.073760155673227 7.055095395720951 6.127174364728862 5.133565772482659 3.051882784571162 9.522470531624158 3.015582208849378 7.820156340730565 -0.0008502575972435707 9.618784214523791 5.691293807880778 7.265349514273309 5.65481379488936 8.970296396698309 5.886400741133047 8.975230833470755 -3.261216748434335 9.662302326147335 -0.2208518809264089 10.214249374523 -0.2102702694532389 9.804438774077401 -5.647174495173614 7.133758925437891 -5.878680504139493 7.141729747383367 -5.701452783863372 7.570295796680164 -5.378161089582958 8.77197701868781 -5.073824521938459 7.078123397081378 -6.12567424477393 7.073539197708593 -6.125572868107976 7.050180529447786 -5.073723145548264 7.05476479209345 -6.12713723702111 5.13323513221534 -6.127167100909393 5.130431462038796 -4.935525412693865 5.133216247242905 -6.253308388634133 4.896900817283603 -6.258978668700247 4.928608914566635 -4.94119507295335 5.164920888226908 -6.374281494973109 2.203604719333665 -3.281873387043052 3.388242983490191 -6.343363832797683 0.9586469866169477 -6.363116134675763 3.400265596412329 -3.516931398666756 0.2462875400800124 -3.279106132294992 -0.1733490150808107 -3.640044025700155 -0.02165769974764224 -6.466114527036964 0.002688284437034642 -3.15491272167495 -0.0139955519073096 -6.487623499595503 -0.4082085088720726 -0.02898635342717157 1.454819714509872 -1.847721189260483 1.454819714509872 -1.850643754005432 1.937154820393069 1.789742410182953 1.454819714509872 -0.02898635342717174 1.454819714509872 1.792670786380768 1.937154820393069 3.247335937252875 -0.1557451567850106 3.485164049653188 0.2638898259161639 3.608275259725327 -0.004054409868652941 3.151473509965481 -0.01422365240314152 6.462675041408438 0.002460183750547187 6.484184086812314 -0.4084366048630124 6.343462499663039 0.9333591743451106 3.281972038222571 3.362957176328559 6.363214785816568 3.374979799172784 4.941097925178682 5.164730528058628 6.258881521802579 4.928418553681022 6.374184336321573 2.203414350176213 4.935526244668555 5.133572133463288 6.127167932883925 5.130787348191338 6.253309220582092 4.897256697747134 5.07372449927955 7.055075300019057 6.12557422183897 7.050491037306701 6.127138590509018 5.133545612186522 0.1523347741752135 9.805934192734966 0.1629142784383076 10.21574484758487 3.203277673848404 9.663797725935616 5.073824113164295 7.078029599300062 5.378160680817295 8.771883221881627 6.125673835999754 7.073445399924637 5.601492339008226 7.161883139375415 5.655776694769287 7.598418447210583 5.832994668995053 7.169853932774302 -3.29229548917307 9.577208045340949 -3.135585968901885 9.988246606589721 -0.2544853944912711 10.14304715713552 -5.345153759990367 2.659266773740501 -6.12243651836439 2.652960177864921 -5.506542168678719 3.09404522880144 -5.366463836624983 8.76685689293635 -6.113982155565933 7.068421344626113 -6.143762830504425 8.763044579849012 -2.998909066793914 7.061671293003088 -3.009383622791294 5.144753875142473 -6.828240068496953 7.093632513089244 -3.006583778138543 1.558678636976905 -3.002738232531304 1.293285723944899 -6.831232731187104 1.55885611133052 -6.46510561082901 4.935179111872872 -6.579529808405709 2.210137881213651 -9.272240772076914 4.681736501928362 -6.547779309438316 3.229453125679772 -6.464223432163376 0.7891846968995643 -9.257544872562866 3.172448047115339 -3.277546589312663 -0.08843876873491094 -3.371355981309236 -0.3431960830523758 -3.634946533166137 0.07141021680080344 -6.648717845179229 0.00585761924331976 -6.669831971640257 -0.4050596526205177 -9.549385618892208 -0.3951926563523799 -3.14399619025572 -0.1065724795831643 -2.817386681209193 -0.4735937208030097 -6.476656430358466 -0.5012124531603661 -0.02898635342717163 0.913646990879659 -1.847721189260483 2.696075859143994 -0.02898635342717148 2.696075859143994 1.781119207154543 2.701809827268504 0.8152532076377372 1.729123404493221 -0.03760036592324648 2.696037187182018 -0.03194300973043898 0.9136173373610622 3.33699263842763 -0.321367168751961 3.243177321967573 -0.06660778468474321 3.600577886942102 0.09324249952771058 6.658814698157106 -0.4056713099979922 6.637700346328465 0.005245949403433635 9.538368487016358 -0.3958043140291034 2.814292429173244 -0.4709099327871273 3.140901745352777 -0.1038885235339979 6.473561762450731 -0.498528677789164 6.46084564322932 0.7640001628475446 6.544401249173743 3.204270616938121 9.254166738134776 3.147265491062098 6.575504533891243 2.209782281736347 6.461080479726541 4.934823526191813 9.268215374267234 4.681380914964183 2.944816367723171 1.294447701317205 2.948661020057206 1.55984063228462 6.773309973105766 1.560018106650228 2.95146016768939 5.144755718026892 2.940980549594411 7.061673136108093 6.770317208793428 7.093634356197926 0.196560697793166 10.14483968800053 3.077661907383472 9.990039162658695 3.23436934961255 9.579000668333457 6.114186672050714 7.068417750818075 5.366668350899943 8.766853299129746 6.143967346907679 8.763040986042407 5.507121974816171 3.14030772055557 6.123016175449285 2.699228291979475 5.345733414294688 2.705534807467032 -2.124944464071637 5.929230350296569 -4.793328873308041 4.831765829292571 -2.424087179380182 6.662759231684621 -6.329741855409807 3.517445271705451 -6.336494444822557 3.972765392797835 -5.691831002047781 3.926042402504652 -2.94268139914473 8.872257638594711 -2.944185181676458 7.177373413464506 -6.790849362496888 8.959695619745167 -2.998922106546994 7.060106920966361 -6.828253108172078 7.092068150392605 -6.845712750985853 8.842156164075469 -3.006445803952361 5.150512521979542 -6.831094757930405 5.150668686150087 -6.825302785272073 7.099390110382316 -2.972522825755776 1.776907481445139 -6.805192167810611 1.776907481445138 -6.801570916553547 2.03437296505763 -9.214528240608519 4.745969262161818 -6.522646409043738 2.27346763816126 -9.232525146047564 2.222123536139848 -9.604528261047836 2.393860449313284 -6.677475086746783 0.1768921183055275 -9.57627511056608 -0.2374426242850861 -2.765936644393134 -1.116894091628714 -0.9858012394810384 -1.238632662674646 -2.775689648758619 -1.388199031006643 -9.549072857123221 -0.3020218693831952 -6.669519401796959 -0.3119447185681393 -9.461015396905538 -5.376912490753298 -2.818037903687294 -0.3877109797521869 -6.472161291438469 -5.478532074706668 -6.477307879814198 -0.4152996229269818 -1.859099769337564 0.9136935523578336 -1.845019758784917 2.697931230696875 -0.02805939028729755 0.9136935523578337 1.796439903317344 2.691611429166005 1.804340486741244 0.9073356961307943 0.8250993973108234 1.724391901254001 -0.02668547621783949 0.9136798124634822 0.9839940938471216 -1.206368748089032 2.764129395093635 -1.084628390063306 2.773882667123692 -1.355937311880331 6.664504339654775 0.1626841406920702 9.591558611604032 2.379652713535864 9.563304722542457 -0.2516506470958837 6.658520920728246 -0.3180065740152979 9.538074517660286 -0.3080837246826926 9.450016779080851 -5.382974421571861 6.469046392546575 -5.478528909275005 2.814923421156487 -0.3877078143211198 6.474192981507066 -0.4152964574959116 6.51976775696096 2.27186243653367 9.211649476928296 4.744364060265751 9.229646420799721 2.220518334517832 6.773172053771983 5.150669074791106 2.948523099793939 5.150512910620561 6.76738067662801 7.099390499020172 6.747277703375682 1.778054512055766 2.91461282674071 1.778054512055766 6.743660030372366 2.035519925276201 6.770330240658309 7.092070927097284 2.940993581537236 7.060109697668658 6.787787501226327 8.842158940910547 2.07129614789165 5.951108811215057 2.370438806936668 6.684637715548111 4.739681227361353 4.853644255882038 2.886279891113184 7.177322034931364 2.884776109860868 8.872206260062704 6.732947347352482 8.959644241213219 5.688532992642515 3.969893912367153 6.333196440557649 4.016616713248672 6.326440875495734 3.561298437991529 -5.934439181466193 2.564486783206475 -6.382239992335672 3.030585942245407 -4.400330850436354 5.135936699598823 -2.863256667798199 8.858152859487548 -2.861252783238947 9.133225387838984 -2.51820719905027 9.155310854924538 -2.943009276547118 8.858157393776786 -6.791177314412912 8.945592095501487 -2.941058130282403 9.133230301267204 -6.751782475507639 7.092730904472949 -10.87570375166805 8.415305835162611 -6.769268352832716 8.842818656232213 -6.77333752277042 7.099227913273971 -6.779127273668858 5.150506482439512 -11.20841424702214 7.171661862608203 -6.814614871242686 2.040519201239409 -6.818460430289814 1.783056970246015 -11.80633820404197 2.04051920123941 -9.09171907599913 4.75479704864049 -9.112398907492434 2.230971879985942 -12.78866513764523 4.063980984403791 -9.173804071530416 2.850006625405597 -9.27450811171625 0.220479519264528 -14.21774104770318 2.814837196482078 -0.9926681972144869 -1.18325607489457 -0.9985162440230233 -1.447962315251344 -2.782857030104402 -1.329182627647969 -6.368675231933594 -0.4151985421776772 -6.363521218299866 -5.478430986404419 -9.211796522140503 -5.451368689537048 -9.184447614364222 -0.6590180415941973 -8.896168158166821 -5.726479328106876 -11.23707257527814 -5.726479328106876 -2.819283219477624 -0.3868174287271915 -2.859321231360607 -5.469182872040909 -6.473405966243857 -5.477638983772041 -0.03604880720977874 -7.294108674436618 -1.859099769337564 0.8648414790412329 -0.02805939028729712 0.864841479041232 -0.02192385777758977 -7.294165442551623 -0.02991328949181006 0.8647847109117424 1.801123699545969 0.8647847109117429 0.9964932391849524 -1.417559054370042 0.9906448802719919 -1.15285047148747 2.780833955293622 -1.298778315622266 9.27275597825315 0.2060561641657651 9.172052478769913 2.835583586177344 14.21598956540136 2.800414153029118 6.363521218299866 -5.478430986404419 6.368675231933594 -0.4151985421776772 9.211796522140503 -5.451368689537048 8.864198284825417 -5.730925506599281 9.15247965980455 -0.6634642487763759 11.20510771234817 -5.730925506599281 2.856167736454677 -5.469207712156813 2.816129719907828 -0.3868422688798363 6.470252050363343 -5.477663823887884 9.111763185916413 2.229381236623932 9.091083522079005 4.753206406652221 12.78802963708831 4.062390342039505 6.721226272527701 5.150507018182688 6.715437116939103 7.099228449012697 11.15050669776064 7.171662398346762 11.74842402563137 2.041615635174673 6.760540894601352 1.784153471565902 6.756698906493762 2.041615635174672 10.81780787399817 8.415309040742367 6.693892549552362 7.092734109939539 6.711376046269765 8.842821861848547 5.89261878482687 2.604508803106154 4.358522115839356 5.175966387100329 6.340418136713105 3.070609351969068 6.733274958915194 8.945555555684942 2.885103646949781 8.858120852209627 2.88315964419209 9.13319376520754 2.80340188434552 9.133180134758289 2.805398626466703 8.858107599537522 2.460351541592808 9.15526560239538 -6.77460312273808 7.021203173047983 -11.20967975574413 7.093642709070672 -10.89849197034851 8.343879214946197 -6.814614871242685 5.072583397887066 -11.80633820404197 5.072583397887066 -11.24382979373957 7.093896667381135 -6.869369183801485 0.7670959441529462 -11.80662675423104 0.7739615289177348 -11.85622182531548 1.043704364313447 -12.84480794438212 3.950526219131178 -9.168223069684583 2.118156324435814 -14.2121676338043 2.084092525164981 -14.48303158559042 2.144125741160916 -9.49824297019198 -0.3694625458418844 -15.5213641316082 -1.618177852494305 -2.714677155017853 -0.3876098990440369 -0.9292466193437576 -0.4886962845921516 -2.754774391651154 -5.469974875450134 -1.141758391497902 -1.132155274230674 6.818692493820374 -2.91283442237678 -1.159196012549074 -1.396351267211961 -9.355459686440179 -0.6597511565328875 -11.36906450694955 -5.742843595913961 -14.57962206144768 -4.68136921340893 -1.8421471118927 -7.294158452063673 -1.860025823116302 0.8630026274965318 -0.0289863534271717 -7.294158452063673 1.784169971942906 -7.294158452063673 -0.02898635342716709 -7.294158452063674 1.802049726247787 0.8630026274965329 -6.825540455410093 -2.882790235124071 1.134906988487327 -1.102095691848085 1.152345667236225 -1.366293968975637 0.9292466193437576 -0.4886962845921516 2.714677155017853 -0.3876098990440369 2.754774391651154 -5.469974875450134 9.489753801293103 -0.3709603909915806 14.47454318235925 2.142627979824022 15.51287503815869 -1.619675739281022 9.166575014905702 2.11859637962785 12.84316013339381 3.950966229592697 14.21051968951901 2.084532581188558 11.36526920227416 -5.735877480657661 9.351664591353453 -0.652783738407381 14.57581694983691 -4.674402826081583 11.15177162177318 7.09367909750699 6.716702132197051 7.021239561509185 10.8405850282281 8.343915602953048 11.74842402563136 5.072614769542129 6.75669890649376 5.072614769542129 11.18590727867735 7.093928043603475 11.74869750490922 0.77510221082015 6.811431000110176 0.7682366242140287 11.79828899240948 1.044845118560229 -10.80496632019039 6.977662048894169 -12.46155548835796 7.657098334252402 -10.49529891741161 8.228276001342932 -11.21487106341044 4.881022912592136 -13.21899380723216 6.8125123245248 -10.65669909416979 6.903537955267404 -11.51251320636103 0.5578575936245883 -14.61233982042884 0.2524251237269393 -11.5684994504771 0.8263467159237325 -9.481788910771552 -0.4489778016980909 -14.72705052423376 -4.443037756452817 -15.50488449584283 -1.697816468325149 -0.8205209546146492 -0.5288734822450359 -0.8300404743074754 -5.510289665520177 -2.643413216704172 -5.511117138271891 6.688313272222799 -3.315611715802851 6.658101382735414 -3.587815610413396 -1.244508051282861 -1.578725988619197 -0.02898635342717171 -15.45504570007324 -1.8421471118927 -7.086345553398132 -0.02898635342717171 -7.086345553398132 1.784169971942902 -7.086345553398132 -6.667602453628678 -3.549646618820059 -6.697815009734231 -3.277441587974647 1.235004835475794 -1.540548610673851 0.8331646414142193 -5.5091467110538 0.8236442068899232 -0.5277306955751653 2.646536927669105 -5.509974183777642 14.71921589675338 -4.441333888747046 9.473963539051594 -0.4472738422507893 15.49705920225716 -1.696112537563038 12.40393384027185 7.657276229073564 10.74734348798995 6.977839945846476 10.43767726880506 8.228453894372517 13.1615240929437 6.812788755903888 11.15740491040168 4.881299309953024 10.59922465227442 6.903814388249673 14.55454565970635 0.2549110852172093 11.45473337963093 0.5603437143635875 11.51071612648785 0.8288329766496544 -10.67083552423818 7.305298660398512 -13.23313184952681 7.214318423797966 -12.32748189269051 7.984595464340071 -12.10251372621878 4.076419314872052 -14.88997705397223 4.908523114067743 -14.07829490287512 6.03689070274844 -12.04632824074949 4.268192840440507 -15.10444972929663 3.776010808033947 -14.83508302186561 5.095958089172433 -12.78301536129654 0.2962467436444843 -14.62950192805164 0.4509841625962124 -11.52928819755993 0.7524619498734347 -0.9297487410889054 -0.5276811829171171 7.085836338187223 -2.023700170738353 -0.9445453203016435 -5.509084486554984 7.088025415829121 -2.553216429840028 15.45672905434624 -2.553216429840028 7.088193710545637 -2.827091748524344 -1.849792003631592 -15.45504570007324 1.791812628507614 -15.45504570007324 -7.088140225495319 -2.788095125751982 -15.45667561482647 -2.514218604200972 -7.087971978350901 -2.514218604200972 -7.085850612107634 -2.022563490992714 0.9297344638217198 -0.5265445530501437 0.9445310551610517 -5.507947690603388 13.17564725650051 7.21417585087989 10.61334620353099 7.305156086916923 12.26999375690795 7.984452886651061 14.83200498227364 4.908476323045658 12.04454165399633 4.076372525604834 14.02031925564632 6.036843909346684 14.57169925216748 0.4533441194975119 12.72520792726563 0.2986069485387188 11.47149979120349 0.7548214236054923 15.04646703475571 3.776053864359719 11.98835627572861 4.268235893980133 14.77711105823558 5.096001138026241 -12.6266160603829 2.297591583870821 -15.12178814565102 0.7325988359478599 -14.47438377006741 2.436194618030055 7.08391559836993 -2.019479612635523 7.093969354055942 -5.506245102356618 -0.9465268942683268 -5.50472376224181 15.4548777945726 -2.559000053247869 15.45486120822411 -2.837936446359119 7.086161659917741 -2.827294198155631 -15.45486788703943 -2.799944950337141 -15.45488434305973 -2.521001721354575 -7.086168334303783 -2.789302441324948 -7.094039863961248 -5.505237706008601 -7.083986074240761 -2.018472221561888 0.9464563790294733 -5.503716365896093 15.06409865668014 0.7342359878714846 12.56892409316339 2.29922863371934 14.41669653760615 2.437831658838328 -13.46262675968666 2.193185871354747 -15.7924982468157 2.177528096152326 -13.26693739714533 3.692991203840863 15.45651721013149 -2.02727151420398 7.097984951813347 -5.505997022377133 7.087814756859743 -2.019231870341796 -7.097944413422521 -5.504989922836323 -15.45647663035068 -2.026264419961787 -7.087774172317961 -2.01822477611185 15.7345131545799 2.177569303028596 13.40465358825945 2.193227078345851 13.20894992640147 3.693032421831513 -13.67575051186454 0.3119285146293583 -15.79802331059779 3.026710069019142 -13.46815091855662 3.042232609582492 15.45092476634052 -2.014616342788127 13.99539387109469 -5.493019668618155 7.092258426701513 -5.493019668618155 -13.99551091456761 -5.49239127305972 -15.45104179173041 -2.01398800205036 -7.092375472872663 -5.49239127305972 15.74003799321126 3.026710239021875 13.61776877069671 0.3119286846437253 13.41017752197328 3.042232779585159 -13.86518791625325 0.1692229827221521 -16.18437295613618 0.2123764109855858 -15.98639586710108 2.88483664257106 16.12642020221242 0.2123388549923344 13.80722562885067 0.169185426859677 15.92843001220545 2.884799078478925 -13.86446578634248 0.2080251464501503 -13.87008147872469 -2.473959308767584 -16.18365094042712 0.2511724367599241 13.81212377347374 -2.47398692214609 13.8065033197383 0.2079975307914403 16.12569800729954 0.2511448210645306 -13.92494684437629 -2.517198155654229 -16.24051475529805 -2.526288577242352 -16.23794953086601 0.2084146666107355 16.18257905510459 -2.526342953705542 13.8670063789047 -2.517252532117403 16.18001383595163 0.2083602901524978 -13.52001637528098 -5.33607329619298 -16.23979030598128 -2.707268479957214 -13.92422244310166 -2.698165829005447 16.18185434755122 -2.707388557209061 13.46207921431993 -5.336193364330121 13.86628171939325 -2.698285906288855 -13.3838787709003 -5.214761861270069 -15.70455385173568 -5.214761861270069 -16.10638680846293 -2.588788711866555 15.64659092828793 -5.214788734311799 13.32590988752191 -5.214788734311799 16.04841912021596 -2.588815587613281</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"602\" source=\"#ID1462\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1458\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1456\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1457\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"204\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 3 0 4 6 5 0 6 2 7 8 8 1 9 10 10 2 11 12 12 1 13 6 14 6 15 0 16 14 17 16 18 0 19 8 20 2 21 18 22 8 23 10 24 20 25 2 26 1 27 22 28 10 29 22 30 1 31 12 32 24 33 12 34 6 35 26 36 6 37 14 38 14 39 0 40 16 41 16 42 8 43 28 44 8 45 18 46 30 47 2 48 32 49 18 50 2 51 20 52 32 53 34 54 20 55 10 56 22 57 36 58 10 59 38 60 22 61 12 62 24 63 40 64 12 65 24 66 6 67 42 68 42 69 6 70 26 71 26 72 14 73 44 74 14 75 16 76 28 77 8 78 30 79 28 80 30 81 18 82 46 83 18 84 32 85 48 86 32 87 20 88 50 89 36 90 34 91 10 92 20 93 34 94 52 95 22 96 54 97 36 98 38 99 54 100 22 101 40 102 38 103 12 104 40 105 24 106 56 107 24 108 42 109 58 110 42 111 26 112 60 113 44 114 14 115 28 116 26 117 44 118 62 119 30 120 64 121 28 122 30 123 46 124 66 125 46 126 18 127 68 128 68 129 18 130 48 131 48 132 32 133 70 134 70 135 32 136 50 137 20 138 52 139 50 140 36 141 72 142 34 143 52 144 34 145 74 146 54 147 72 148 36 149 76 150 54 151 38 152 76 153 38 154 40 155 40 156 56 157 78 158 56 159 24 160 58 161 42 162 80 163 58 164 42 165 60 166 80 167 26 168 82 169 60 170 28 171 64 172 44 173 26 174 62 175 82 176 44 177 84 178 62 179 30 180 66 181 64 182 46 183 86 184 66 185 46 186 68 187 86 188 88 189 89 190 90 191 89 192 94 193 95 194 70 195 50 196 98 197 50 198 52 199 100 200 72 201 102 202 34 203 52 204 74 205 104 206 34 207 102 208 74 209 106 210 72 211 54 212 76 213 108 214 54 215 106 216 54 215 108 214 110 217 76 218 40 219 78 220 56 221 112 222 110 223 40 224 78 225 56 226 58 227 114 228 58 229 80 230 116 231 118 232 119 233 120 234 119 235 124 236 125 237 64 238 84 239 44 240 82 241 62 242 128 243 84 244 128 245 62 246 64 247 66 248 130 249 86 250 132 251 66 252 134 253 88 254 135 255 88 256 90 257 135 258 89 259 95 260 90 261 94 262 138 263 95 264 98 265 50 266 100 267 100 268 52 269 104 270 72 271 140 272 102 273 104 274 74 275 142 276 102 277 144 278 74 279 140 280 72 281 106 282 76 283 146 284 108 285 106 286 108 285 146 284 146 287 76 288 110 289 56 290 114 291 112 292 78 293 112 294 148 295 150 296 110 297 78 298 58 299 116 300 114 301 120 302 119 303 125 304 152 305 118 306 120 307 125 308 124 309 154 310 64 311 130 312 84 313 124 314 156 315 154 316 84 317 158 318 128 319 66 320 132 321 130 322 134 323 160 324 161 325 134 326 135 327 160 328 90 329 164 330 135 331 90 332 95 333 166 334 95 335 138 336 168 337 98 338 100 339 170 340 100 341 104 342 172 343 140 344 174 345 102 346 74 347 144 348 142 349 104 350 142 351 176 352 102 353 178 354 144 355 180 356 140 357 106 358 180 359 106 360 146 361 182 362 146 363 110 364 112 365 114 366 184 367 150 368 78 369 148 370 148 371 112 372 186 373 188 374 110 375 150 376 114 377 116 378 190 379 120 380 125 381 192 382 194 383 152 384 120 385 196 386 125 387 154 388 84 389 130 390 158 391 154 392 156 393 198 394 198 395 156 396 200 397 90 398 166 399 164 400 95 401 168 402 166 403 138 404 202 405 168 406 170 407 100 408 172 409 172 410 104 411 204 412 102 413 174 414 178 415 140 416 206 417 174 418 104 419 176 420 208 421 206 422 140 423 180 424 210 425 180 426 146 427 210 428 146 429 182 430 182 431 110 432 188 433 112 434 184 435 212 436 114 437 190 438 184 439 186 440 112 441 214 442 192 443 125 444 196 445 194 446 120 447 192 448 216 449 152 450 194 451 166 452 218 453 164 454 168 455 220 456 166 457 202 458 222 459 168 460 104 461 208 462 204 463 174 464 224 465 178 466 206 467 226 468 174 469 228 470 206 471 180 472 228 470 180 472 210 473 230 474 210 475 182 476 232 477 182 478 188 479 214 480 112 481 212 482 234 483 192 484 196 485 236 486 194 487 192 488 238 489 216 490 194 491 166 492 220 493 218 494 168 495 240 496 220 497 168 498 222 499 240 500 242 501 222 502 202 503 174 504 226 505 224 506 206 507 244 508 226 509 244 510 206 471 228 470 228 470 210 473 246 511 230 512 246 513 210 514 230 515 182 516 232 517 236 518 192 519 234 520 248 521 194 522 236 523 238 524 250 525 216 526 238 527 194 528 248 529 242 530 252 531 222 532 226 533 254 534 224 535 244 536 256 537 226 538 258 539 246 540 230 541 260 542 230 543 232 544 262 545 250 546 238 547 264 548 252 549 242 550 256 551 254 552 226 553 260 554 258 555 230 556 262 557 266 558 250 559 268 560 252 561 264 562 256 563 270 564 254 565 272 566 258 567 260 568 262 569 274 570 266 571 268 572 276 573 252 574 278 575 274 576 262 577 268 578 280 579 276 580 282 581 274 582 278 583 280 584 284 585 276 586 286 587 282 588 278 589 288 590 284 591 280 592 286 593 290 594 282 595 288 596 292 597 284 598 294 599 290 600 286 601</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1458\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1459\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"204\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 7 5 4 9 3 5 3 11 4 7 4 13 15 5 7 9 5 17 9 19 3 3 21 11 11 23 4 13 4 23 7 13 25 15 7 27 17 5 15 29 9 17 31 19 9 19 33 3 33 21 3 11 21 35 11 37 23 13 23 39 13 41 25 43 7 25 27 7 43 45 15 27 29 17 15 29 31 9 47 19 31 49 33 19 51 21 33 11 35 37 53 35 21 37 55 23 23 55 39 13 39 41 57 25 41 59 43 25 61 27 43 29 15 45 63 45 27 29 65 31 67 47 31 69 19 47 49 19 69 71 33 49 51 33 71 51 53 21 35 73 37 75 35 53 37 73 55 39 55 77 41 39 77 79 57 41 59 25 57 59 81 43 81 61 43 61 83 27 45 65 29 83 63 27 63 85 45 65 67 31 67 87 47 87 69 47 91 92 93 96 97 92 99 51 71 101 53 51 35 103 73 105 75 53 75 103 35 55 73 107 109 55 107 55 109 77 41 77 111 113 57 79 79 41 111 115 59 57 117 81 59 121 122 123 126 127 122 45 85 65 129 63 83 63 129 85 131 67 65 67 133 87 136 93 137 136 91 93 91 96 92 96 139 97 101 51 99 105 53 101 103 141 73 143 75 105 75 145 103 107 73 141 147 109 107 109 147 77 111 77 147 113 115 57 149 113 79 79 111 151 115 117 59 126 122 121 121 123 153 155 127 126 85 131 65 155 157 127 129 159 85 131 133 67 162 163 137 163 136 137 136 165 91 167 96 91 169 139 96 171 101 99 173 105 101 103 175 141 143 145 75 177 143 105 145 179 103 107 141 181 147 107 181 111 147 183 185 115 113 149 79 151 187 113 149 151 111 189 191 117 115 193 126 121 121 153 195 155 126 197 159 131 85 199 157 155 201 157 199 165 167 91 167 169 96 169 203 139 173 101 171 205 105 173 179 175 103 175 207 141 209 177 105 181 141 207 147 181 211 183 147 211 189 111 183 213 185 113 185 191 115 215 113 187 197 126 193 193 121 195 195 153 217 165 219 167 167 221 169 169 223 203 205 209 105 179 225 175 175 227 207 181 207 229 211 181 229 183 211 231 189 183 233 213 113 215 197 193 235 193 195 237 195 217 239 219 221 167 221 241 169 241 223 169 203 223 243 225 227 175 227 245 207 229 207 245 247 211 229 211 247 231 233 183 231 235 193 237 237 195 249 217 251 239 249 195 239 223 253 243 225 255 227 227 257 245 231 247 259 233 231 261 239 251 263 243 253 265 227 255 257 231 259 261 251 267 263 265 253 269 255 271 257 261 259 273 267 275 263 253 277 269 263 275 279 277 281 269 279 275 283 277 285 281 279 283 287 281 285 289 283 291 287 285 293 289 287 291 295</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1458\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1463\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1464\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1467\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">-0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7728267908096314 0.3120907545089722 0.236614540219307 -0.7728267908096314 0.3120907545089722 0.236614540219307 -0.7567289471626282 0.2898140251636505 0.2332167774438858 -0.7432120442390442 0.280442476272583 0.2985353469848633 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1467\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1465\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1468\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">-0.100695794754597 -0.9856927002483367 -0.1351675167926194 -0.3954628486908789 -0.9144944149380586 -0.0854932766502305 -0.7920645011639883 -0.5938971135727662 0.1411383877114198 0.7920645011639883 0.5938971135727662 -0.1411383877114198 0.3954628486908789 0.9144944149380586 0.0854932766502305 0.100695794754597 0.9856927002483367 0.1351675167926194 -0.7834146661868462 -0.5940033022008459 0.1828155840672318 0.7834146661868462 0.5940033022008459 -0.1828155840672318</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1468\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1466\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1464\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1465\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"4\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1466\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1469\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1470\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1473\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">-0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.3545526266098023 0.4489807486534119 0.2332167774438858 -0.3545526266098023 0.4489807486534119 0.2332167774438858 -0.3549064993858337 0.3036717772483826 0.2458886653184891 -0.6015947461128235 0.2943861186504364 0.2461786717176437 -0.5312814712524414 0.4448592662811279 0.2332167774438858 -0.5312814712524414 0.4448592662811279 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.1731423735618591 0.4526919424533844 0.2332167774438858 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.6650049686431885 0.3010430932044983 0.2265639156103134 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.1634843051433563 0.3126678466796875 0.2458886653184891 -0.5847116112709045 0.447659969329834 0.2332167774438858 -0.5847116112709045 0.447659969329834 0.2332167774438858 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5898233652114868 0.6375383734703064 0.1986889690160751</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID1473\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1471\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1474\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">0.1159152314789492 -0.5849783904363448 -0.8027228300189829 0.02541770183677723 -0.5744325664555302 -0.818157177459594 0.002455958872292993 -0.134052915566394 -0.990971131816748 -0.002455958872292993 0.134052915566394 0.990971131816748 -0.02541770183677723 0.5744325664555302 0.818157177459594 -0.1159152314789492 0.5849783904363448 0.8027228300189829 0.01360116452442704 -0.1197858586092047 -0.9927065812216794 -0.01360116452442704 0.1197858586092047 0.9927065812216794 0.003485675612845834 -0.1357584235591588 -0.990735837899414 -0.003485675612845834 0.1357584235591588 0.990735837899414 0.3120306604070797 -0.7954287677809169 -0.5195478248943536 -0.3120306604070797 0.7954287677809169 0.5195478248943536 0.001228544436429594 -0.530792278723088 -0.8475010604869587 -0.001228544436429594 0.530792278723088 0.8475010604869587 0.0009837850219002171 -0.5287955729337499 -0.8487486519651727 -0.0009837850219002171 0.5287955729337499 0.8487486519651727 0.02366492200974112 -0.5517765660279215 -0.8336561597257634 -0.02366492200974112 0.5517765660279215 0.8336561597257634 0.3639947690900174 -0.1116367124113476 -0.9246864617355932 -0.3639947690900174 0.1116367124113476 0.9246864617355932 -0.002892945757292406 -0.5261264371370477 -0.8504014363877342 0.002892945757292406 0.5261264371370477 0.8504014363877342 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 -0.5805296449644594 0.7970800414865904 0.1662790990508843 0.5344913977113528 -0.4762571258614551 -0.6982106385889222 -0.5344913977113528 0.4762571258614551 0.6982106385889222</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID1474\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1472\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1470\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1471\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 2 1 8 9 4 3 10 0 6 7 5 11 12 6 2 3 7 13 14 2 8 9 3 15 8 1 16 17 4 9 18 10 6 7 11 19 20 6 12 13 7 21 12 2 14 15 3 13 22 10 18 19 11 23 20 18 6 7 19 21 22 18 24 25 19 23 24 18 20 21 19 25</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1472\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1475\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1476\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1479\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"198\">-0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5370995402336121 0.7065956592559815 0.1053698509931564 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5898233652114868 0.6375383734703064 0.1986889690160751 -0.5370995402336121 0.7065956592559815 0.1053698509931564 -0.5344527959823608 0.6370245814323425 0.1986889690160751 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.3720340728759766 0.7059378027915955 0.1053698509931564 -0.3720340728759766 0.7059378027915955 0.1053698509931564 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.5866599678993225 0.7059378027915955 0.1038601696491242 -0.6748431324958801 0.310824066400528 0.1522213369607925 -0.5370995402336121 0.7579361200332642 -0.08268103003501892 -0.5370995402336121 0.7579361200332642 -0.08268103003501892 -0.374770998954773 0.7579371929168701 -0.08268103003501892 -0.374770998954773 0.7579371929168701 -0.08268103003501892 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.368030846118927 0.6375383734703064 0.1986889690160751 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.6852232217788696 0.310824066400528 0.0157061405479908 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1796219944953919 0.7579361200332642 -0.08268103003501892 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.1768850088119507 0.7058589458465576 0.1053698509931564 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.58575439453125 0.7579371929168701 -0.08313017338514328 -0.5373399257659912 0.7229641675949097 -0.2198816239833832 -0.5373399257659912 0.7229641675949097 -0.2198816239833832 -0.3733293414115906 0.7212921380996704 -0.2198816239833832 -0.3733293414115906 0.7212921380996704 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1784094870090485 0.7188504338264465 -0.2198816239833832 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.1742468774318695 0.6375383734703064 0.1986889690160751 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.6854394674301148 0.3132611513137817 -0.1183710545301437 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.5792820453643799 0.720934271812439 -0.2198816239833832 -0.3628515005111694 0.5584809184074402 -0.2725684344768524 -0.3628515005111694 0.5584809184074402 -0.2725684344768524 -0.5319955945014954 0.5639436841011047 -0.2725684344768524 -0.5319955945014954 0.5639436841011047 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.1742920875549316 0.5582479238510132 -0.2725684344768524 -0.5847000479698181 0.5650895833969116 -0.2725684344768524 -0.5847000479698181 0.5650895833969116 -0.2725684344768524 -0.5855176448822022 0.4595295786857605 -0.2725684344768524 -0.5855176448822022 0.4595295786857605 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.1097748056054115 0.4605898261070252 -0.2725684344768524 -0.3558951914310455 0.4595295786857605 -0.2725684344768524 -0.3558951914310455 0.4595295786857605 -0.2725684344768524 -0.5304210782051086 0.4595295786857605 -0.2725684344768524 -0.5304210782051086 0.4595295786857605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.1097748056054115 0.3181760609149933 -0.273921549320221 -0.1097748056054115 0.3181760609149933 -0.273921549320221</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID1479\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1477\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1480\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"198\">-0.002892945757292406 -0.5261264371370477 -0.8504014363877342 0.008706503524001734 -0.8994941718400871 -0.4368460044708004 0.5344913977113528 -0.4762571258614551 -0.6982106385889222 -0.5344913977113528 0.4762571258614551 0.6982106385889222 -0.008706503524001734 0.8994941718400871 0.4368460044708004 0.002892945757292406 0.5261264371370477 0.8504014363877342 0.02363037582786412 -0.902347833097122 -0.4303603065376295 -0.02363037582786412 0.902347833097122 0.4303603065376295 -0.001023532765410392 -0.8995423755520391 -0.4368323098934793 0.001023532765410392 0.8995423755520391 0.4368323098934793 0.5805296449644594 -0.7970800414865904 -0.1662790990508843 0.9696804631133598 -0.2296304749271341 -0.08360409344642968 -0.9696804631133598 0.2296304749271341 0.08360409344642968 -0.5805296449644594 0.7970800414865904 0.1662790990508843 -0.0005890438034978813 -0.9999601116063219 -0.008912251324439506 0.0005890438034978813 0.9999601116063219 0.008912251324439506 -0.002310012349595028 -0.9999946975497346 -0.002295368240525906 0.002310012349595028 0.9999946975497346 0.002295368240525906 0.001228544436429594 -0.530792278723088 -0.8475010604869587 -0.001228544436429594 0.530792278723088 0.8475010604869587 0.9738575501752567 -0.2231741112042929 -0.04236493898049872 -0.9738575501752567 0.2231741112042929 0.04236493898049872 0.004762179403278648 -0.9999158367782302 -0.01206818161209902 -0.004762179403278648 0.9999158367782302 0.01206818161209902 -0.0001054259024026388 -0.9999945805237475 0.00329056355564671 0.0001054259024026388 0.9999945805237475 -0.00329056355564671 -0.0002528615801463851 -0.8990032443558421 -0.4379418942036619 0.0002528615801463851 0.8990032443558421 0.4379418942036619 0.9735632488975363 -0.2269778489099383 0.02560579036645414 -0.9735632488975363 0.2269778489099383 -0.02560579036645414 0.01015304597198024 -0.7326994030879146 0.6804766714385618 -0.01015304597198024 0.7326994030879146 -0.6804766714385618 -0.006235246769021037 -0.7266493421561909 0.6869802437055265 0.006235246769021037 0.7266493421561909 -0.6869802437055265 -0.004959970467436007 -0.7176069837348265 0.6964306251077467 0.004959970467436007 0.7176069837348265 -0.6964306251077467 0.0009837850219002171 -0.5287955729337499 -0.8487486519651727 -0.0009837850219002171 0.5287955729337499 0.8487486519651727 0.9570454198941 -0.2670495177232334 0.1129097840911679 -0.9570454198941 0.2670495177232334 -0.1129097840911679 0.0324233640709075 -0.720253582420105 0.692952741875902 -0.0324233640709075 0.720253582420105 -0.692952741875902 0.9623630987746608 -0.206648239703785 0.1765043091376513 -0.9623630987746608 0.206648239703785 -0.1765043091376513 -0.001696972163550282 -0.1552309794340162 0.9878767449988041 0.001696972163550282 0.1552309794340162 -0.9878767449988041 -0.003501671595040209 -0.161037683266441 0.9869420463554169 0.003501671595040209 0.161037683266441 -0.9869420463554169 -0.0009664958691925261 -0.1310146610866349 0.9913799596855328 0.0009664958691925261 0.1310146610866349 -0.9913799596855328 0.5189876165657845 -0.1695060220436144 0.8378063990817426 -0.5189876165657845 0.1695060220436144 -0.8378063990817426 0.4533044710605235 -0.06671512823443905 0.8888555271703055 -0.4533044710605235 0.06671512823443905 -0.8888555271703055 2.506645839339887e-005 -0.005818798789160718 0.9999830703328551 -2.506645839339887e-005 0.005818798789160718 -0.9999830703328551 0.0008486584163376593 -0.002669914770303769 0.9999960756593056 -0.0008486584163376593 0.002669914770303769 -0.9999960756593056 0 0 1 -0 -0 -1 0.8647397467261543 -0.493715428752364 0.09203393854364951 -0.8647397467261543 0.493715428752364 -0.09203393854364951 0.0009780771413953171 -0.002169760516917563 0.9999971677481916 -0.0009780771413953171 0.002169760516917563 -0.9999971677481916 0.0008261095942327029 -0.008133842201674421 0.9999665785184907 -0.0008261095942327029 0.008133842201674421 -0.9999665785184907</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID1480\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1478\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1476\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1477\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"42\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 1 6 2 8 1 0 10 2 11 14 6 1 8 16 1 18 8 0 20 10 11 14 22 6 16 14 1 24 16 8 26 8 18 20 11 28 30 22 14 16 32 14 24 34 16 26 24 8 36 26 18 38 20 28 32 30 14 30 40 22 34 32 16 42 38 28 30 32 44 40 30 46 32 34 48 50 38 42 44 32 48 46 30 44 50 40 46 52 38 50 44 48 54 46 44 56 50 46 58 60 38 52 52 50 58 56 44 54 58 46 56 62 52 58 64 56 54 62 58 56 62 56 64</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1478\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"42\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 7 4 5 4 9 12 3 13 4 7 15 4 17 9 5 9 19 12 13 21 7 23 15 4 15 17 9 17 25 19 9 27 29 12 21 15 23 31 15 33 17 17 35 25 9 25 27 19 27 37 29 21 39 15 31 33 23 41 31 17 33 35 29 39 43 45 33 31 47 31 41 49 35 33 43 39 51 49 33 45 45 31 47 47 41 51 51 39 53 55 49 45 57 45 47 59 47 51 53 39 61 59 51 53 55 45 57 57 47 59 59 53 63 55 57 65 57 59 63 65 57 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1478\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1481\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1482\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1485\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"3072\">-0.7704972624778748 0.4213694334030151 -0.2747071981430054 -0.7704972624778748 0.3214001655578613 -0.2747071981430054 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7704972624778748 0.3214001655578613 -0.2747071981430054 -0.7704972624778748 0.4213694334030151 -0.2747071981430054 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7711951732635498 0.8992693424224854 -0.2752210795879364 -0.7711951732635498 0.8992693424224854 -0.2752210795879364 -0.7704972624778748 -0.4633741080760956 -0.2747071981430054 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7704972624778748 -0.4633741080760956 -0.2747071981430054 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.8011427521705627 0.3174309134483337 -0.1188254207372665 -0.7809916734695435 0.9031000733375549 -0.2496751993894577 -0.7809916734695435 0.9031000733375549 -0.2496751993894577 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.8011427521705627 0.3138594329357147 0.01786315068602562 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8140090107917786 -0.7940167188644409 -0.08648346364498138 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.8140090107917786 -0.7940167188644409 -0.08648346364498138 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7913355231285095 0.3102889657020569 0.151445209980011 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8207589983940125 -0.8301818370819092 -0.02805159240961075 -0.8207589983940125 -0.8301818370819092 -0.02805159240961075 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.7726795077323914 0.312279224395752 0.2324964851140976 -0.7726795077323914 0.312279224395752 0.2324964851140976 -0.8207589983940125 -0.8697569370269775 0.02455062046647072 -0.8207589983940125 -0.8697569370269775 0.02455062046647072 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.8194112181663513 -0.9438937306404114 0.07964269816875458 -0.8194112181663513 -0.9438937306404114 0.07964269816875458 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7497841715812683 0.2803181707859039 0.2984566986560822 -0.7497841715812683 0.2803181707859039 0.2984566986560822 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7746564745903015 -0.8304092884063721 0.2270265072584152 -0.7746564745903015 -0.8304092884063721 0.2270265072584152 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.8160943388938904 -1.033355116844177 0.1124019175767899 -0.8160943388938904 -1.033355116844177 0.1124019175767899 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7026739716529846 0.2703775763511658 0.354082316160202 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7746564745903015 -1.029682159423828 0.2270265072584152 -0.7746564745903015 -1.029682159423828 0.2270265072584152 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.8116487264633179 -1.128642797470093 0.1301879435777664 -0.8116487264633179 -1.128642797470093 0.1301879435777664 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7481676936149597 -1.030174612998962 0.297200620174408 -0.7481676936149597 -1.030174612998962 0.297200620174408 -0.7481676936149597 -0.8389725685119629 0.2947215437889099 -0.7481676936149597 -0.8389725685119629 0.2947215437889099 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.6578673124313355 0.2769641578197479 0.3925894796848297 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.7746564745903015 -1.188867688179016 0.2275206297636032 -0.7746564745903015 -1.188867688179016 0.2275206297636032 -0.7211520075798035 -0.8380235433578491 0.3453765213489533 -0.7211520075798035 -0.8380235433578491 0.3453765213489533 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.8134415149688721 -1.233547210693359 0.1249729543924332 -0.8134415149688721 -1.233547210693359 0.1249729543924332 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.7181724905967712 -1.030174612998962 0.3453765213489533 -0.7181724905967712 -1.030174612998962 0.3453765213489533 -0.7464496493339539 -1.17504346370697 0.2979675829410553 -0.7464496493339539 -1.17504346370697 0.2979675829410553 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.5600742101669312 0.2870903313159943 0.4211375415325165 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.7746564745903015 -1.300840497016907 0.2215401381254196 -0.7746564745903015 -1.300840497016907 0.2215401381254196 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.818085253238678 -1.344445824623108 0.08846646547317505 -0.818085253238678 -1.344445824623108 0.08846646547317505 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7163878679275513 -1.179451704025269 0.3430816829204559 -0.7163878679275513 -1.179451704025269 0.3430816829204559 -0.7474802732467651 -1.294782400131226 0.2903444766998291 -0.7474802732467651 -1.294782400131226 0.2903444766998291 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.3550495803356171 0.2981325685977936 0.4425131678581238 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7786112427711487 -1.4743812084198 0.2122804075479507 -0.7786112427711487 -1.4743812084198 0.2122804075479507 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.8198900818824768 -1.411396861076355 0.03317912295460701 -0.8198900818824768 -1.411396861076355 0.03317912295460701 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.6794602870941162 -1.172713875770569 0.3437448143959045 -0.6794602870941162 -1.172713875770569 0.3437448143959045 -0.7141572833061218 -1.303147315979004 0.3360871374607086 -0.7141572833061218 -1.303147315979004 0.3360871374607086 -0.7498881816864014 -1.477022528648377 0.2740126550197601 -0.7498881816864014 -1.477022528648377 0.2740126550197601 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1627959161996841 0.3079861700534821 0.4518939852714539 -0.1456787884235382 0.3090838491916657 0.4529981315135956 -0.001449317671358585 0.3162676393985748 0.4598841369152069 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.7819064259529114 -1.59941303730011 0.1968471556901932 -0.7819064259529114 -1.59941303730011 0.1968471556901932 -0.6524924635887146 -1.173845291137695 0.3425645530223846 -0.6524924635887146 -1.173845291137695 0.3425645530223846 0.1598972976207733 0.3079861700534821 0.4518939852714539 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1427799314260483 0.3090838491916657 0.4529981315135956 0.3521507680416107 0.2981325685977936 0.4425131678581238 0.1598972976207733 0.3079861700534821 0.4518939852714539 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.604820966720581 0.05439910665154457 -0.8011427521705627 -1.604820966720581 0.05439910665154457 -0.6765456199645996 -1.305132031440735 0.3258563876152039 -0.6765456199645996 -1.305132031440735 0.3258563876152039 -0.6524924635887146 -1.303990125656128 0.3261548578739166 -0.6524924635887146 -1.303990125656128 0.3261548578739166 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.71500164270401 -1.478913545608521 0.3202499747276306 -0.71500164270401 -1.478913545608521 0.3202499747276306 -0.7503867149353027 -1.605847239494324 0.2616663873195648 -0.7503867149353027 -1.605847239494324 0.2616663873195648 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3520008623600006 0.4234864413738251 0.4407898485660553 -0.8153771162033081 -1.476347208023071 -0.05023443698883057 -0.8153771162033081 -1.476347208023071 -0.05023443698883057 -0.8011427521705627 -1.597437262535095 -0.02763602323830128 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.597437262535095 -0.02763602323830128 -0.7843642234802246 -1.743004322052002 0.1827057152986527 -0.7843642234802246 -1.743004322052002 0.1827057152986527 -0.6225963234901428 -1.305356502532959 0.3261548578739166 -0.6225963234901428 -1.305356502532959 0.3261548578739166 -0.6213556528091431 -1.173213005065918 0.3425645530223846 -0.6213556528091431 -1.173213005065918 0.3425645530223846 0.5571752190589905 0.2870903313159943 0.4211375415325165 0.5571752190589905 0.2870903313159943 0.4211375415325165 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.597437262535095 -0.09717599302530289 -0.8011427521705627 -1.597437262535095 -0.09717599302530289 -0.8011427521705627 -1.746039509773254 0.05331587418913841 -0.8011427521705627 -1.746039509773254 0.05331587418913841 -0.6745424270629883 -1.473710179328919 0.3142852187156677 -0.6745424270629883 -1.473710179328919 0.3142852187156677 -0.6521297693252564 -1.473981022834778 0.2955112159252167 -0.6521297693252564 -1.473981022834778 0.2955112159252167 -0.6222109794616699 -1.473212003707886 0.2955112159252167 -0.6222109794616699 -1.473212003707886 0.2955112159252167 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.7156392335891724 -1.612327575683594 0.3050930202007294 -0.7156392335891724 -1.612327575683594 0.3050930202007294 -0.7640226483345032 -1.752110004425049 0.2460802644491196 -0.7640226483345032 -1.752110004425049 0.2460802644491196 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5573503971099854 0.4234864413738251 0.4212178885936737 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.8011427521705627 -1.731833338737488 -0.09522708505392075 -0.8011427521705627 -1.731833338737488 -0.09522708505392075 -0.8011427521705627 -1.739925384521484 -0.0306595154106617 -0.8011427521705627 -1.739925384521484 -0.0306595154106617 -0.7859653830528259 -1.849237442016602 0.1747838407754898 -0.7859653830528259 -1.849237442016602 0.1747838407754898 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.4741233587265015 -1.305356502532959 0.3261548578739166 -0.4741233587265015 -1.305356502532959 0.3261548578739166 -0.513939380645752 -1.173213005065918 0.3425645530223846 -0.513939380645752 -1.173213005065918 0.3425645530223846 0.6549683213233948 0.2769641578197479 0.3925894796848297 0.6549683213233948 0.2769641578197479 0.3925894796848297 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.7960734963417053 -1.730340600013733 -0.1583104282617569 -0.7960734963417053 -1.730340600013733 -0.1583104282617569 -0.8011427521705627 -1.85834276676178 0.05595642700791359 -0.8011427521705627 -1.85834276676178 0.05595642700791359 -0.6725387573242188 -1.600142955780029 0.2973578274250031 -0.6725387573242188 -1.600142955780029 0.2973578274250031 -0.6505559682846069 -1.602483987808228 0.2705280482769013 -0.6505559682846069 -1.602483987808228 0.2705280482769013 -0.6175405383110046 -1.602517247200012 0.2705280482769013 -0.6175405383110046 -1.602517247200012 0.2705280482769013 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.7154456973075867 -1.752095222473145 0.2910460829734802 -0.7154456973075867 -1.752095222473145 0.2910460829734802 -0.7698361277580261 -1.831026315689087 0.2328774482011795 -0.7698361277580261 -1.831026315689087 0.2328774482011795 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 -0.8006090521812439 -1.604159355163574 -0.155659943819046 -0.8006090521812439 -1.604159355163574 -0.155659943819046 -0.8011427521705627 -1.861560702323914 -0.0306595154106617 -0.8011427521705627 -1.861560702323914 -0.0306595154106617 -0.8011427521705627 -1.859525799751282 -0.0991249606013298 -0.8011427521705627 -1.859525799751282 -0.0991249606013298 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2030248194932938 -1.17602002620697 0.3425645530223846 -0.2030248194932938 -1.17602002620697 0.3425645530223846 0.6997751593589783 0.2703775763511658 0.354082316160202 0.6997751593589783 0.2703775763511658 0.354082316160202 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7820540070533752 -1.731492161750794 -0.2158130407333374 -0.7820540070533752 -1.731492161750794 -0.2158130407333374 -0.7960734963417053 -1.858019590377808 -0.1583313196897507 -0.7960734963417053 -1.858019590377808 -0.1583313196897507 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.6705343127250671 -1.744048237800598 0.2750363051891327 -0.6705343127250671 -1.744048237800598 0.2750363051891327 -0.6491485834121704 -1.744982481002808 0.2377863973379135 -0.6491485834121704 -1.744982481002808 0.2377863973379135 -0.6203603148460388 -1.742636442184448 0.2377863973379135 -0.6203603148460388 -1.742636442184448 0.2377863973379135 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7660660147666931 -1.904120802879334 0.2353758960962296 0.6885963678359985 0.4193951189517975 0.3593906462192535 0.6885963678359985 0.4193951189517975 0.3593906462192535 -0.7805264592170715 -1.615131855010986 -0.2230612486600876 -0.7805264592170715 -1.615131855010986 -0.2230612486600876 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7879398465156555 -1.996179938316345 -0.0991249606013298 -0.7879398465156555 -1.996179938316345 -0.0991249606013298 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.7146027684211731 -1.817547917366028 0.285483330488205 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449317671358585 -1.17882776260376 0.3425645530223846 -0.001449317671358585 -1.17882776260376 0.3425645530223846 0.7468852996826172 0.2803181707859039 0.2984566986560822 0.7468852996826172 0.2803181707859039 0.2984566986560822 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7820540070533752 -1.859680533409119 -0.2195352166891098 -0.7820540070533752 -1.859680533409119 -0.2195352166891098 -0.764397144317627 -1.623394966125488 -0.2698330581188202 -0.764397144317627 -1.623394966125488 -0.2698330581188202 -0.7849075794219971 -1.98232901096344 -0.1583313196897507 -0.7849075794219971 -1.98232901096344 -0.1583313196897507 -0.6673435568809509 -1.82667601108551 0.2628661394119263 -0.6673435568809509 -1.82667601108551 0.2628661394119263 -0.6485981941223145 -1.828809261322022 0.2115316838026047 -0.6485981941223145 -1.828809261322022 0.2115316838026047 -0.6190515756607056 -1.828675627708435 0.2114831358194351 -0.6190515756607056 -1.828675627708435 0.2114831358194351 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 0.7468852996826172 0.4189915955066681 0.2977039515972138 0.7468852996826172 0.4189915955066681 0.2977039515972138 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7655863761901856 -1.73902428150177 -0.2654593288898468 -0.7655863761901856 -1.73902428150177 -0.2654593288898468 -0.7655726671218872 -2.044322729110718 -0.09895889461040497 -0.7655726671218872 -2.044322729110718 -0.09895889461040497 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.6603543758392334 -1.904120802879334 0.2353758960962296 0.2001260668039322 -1.17602002620697 0.3425645530223846 0.2001260668039322 -1.17602002620697 0.3425645530223846 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 0.7697807550430298 0.312279224395752 0.2324964851140976 0.7697807550430298 0.312279224395752 0.2324964851140976 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7572376728057861 -1.859680533409119 -0.2654593288898468 -0.7572376728057861 -1.859680533409119 -0.2654593288898468 -0.7723438739776611 -1.952685952186585 -0.2173483222723007 -0.7723438739776611 -1.952685952186585 -0.2173483222723007 -0.7361075282096863 -1.634256482124329 -0.3076135516166687 -0.7361075282096863 -1.634256482124329 -0.3076135516166687 -0.7605022788047791 -2.023205518722534 -0.1581518948078156 -0.7605022788047791 -2.023205518722534 -0.1581518948078156 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.7695745229721069 0.423301488161087 0.2328356057405472 0.7695745229721069 0.423301488161087 0.2328356057405472 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7277590036392212 -1.743023633956909 -0.3158882260322571 -0.7277590036392212 -1.743023633956909 -0.3158882260322571 -0.7142770290374756 -2.065832376480103 -0.09944543987512589 -0.7142770290374756 -2.065832376480103 -0.09944543987512589 0.5110407471656799 -1.173213005065918 0.3425645530223846 0.5110407471656799 -1.173213005065918 0.3425645530223846 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011 -0.7003812193870544 -1.598517417907715 -0.3394664824008942 -0.7003812193870544 -1.598517417907715 -0.3394664824008942 -0.7305502891540527 -1.908180832862854 -0.2644224464893341 -0.7305502891540527 -1.908180832862854 -0.2644224464893341 -0.7482796907424927 -1.984729170799255 -0.2173768430948257 -0.7482796907424927 -1.984729170799255 -0.2173768430948257 -0.6821182370185852 -1.645132303237915 -0.3384934365749359 -0.6821182370185852 -1.645132303237915 -0.3384934365749359 -0.7097958326339722 -2.044126987457275 -0.1583652049303055 -0.7097958326339722 -2.044126987457275 -0.1583652049303055 -0.4238884449005127 -1.952623009681702 0.1164684295654297 -0.4238884449005127 -1.952623009681702 0.1164684295654297 0.4712246954441071 -1.305356502532959 0.3261548578739166 0.4712246954441071 -1.305356502532959 0.3261548578739166 0.7870740294456482 0.4261996150016785 0.1537329405546188 0.7870740294456482 0.4261996150016785 0.1537329405546188 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6998868584632874 -1.74457848072052 -0.3189045786857605 -0.6998868584632874 -1.74457848072052 -0.3189045786857605 -0.666880190372467 -2.044580698013306 -0.09905537962913513 -0.666880190372467 -2.044580698013306 -0.09905537962913513 -0.3737652599811554 -1.973503470420837 0.07559454441070557 -0.3737652599811554 -1.973503470420837 0.07559454441070557 0.6184563636779785 -1.173213005065918 0.3425645530223846 0.6184563636779785 -1.173213005065918 0.3425645530223846 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.619949996471405 -1.078431725502014 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.7982441186904907 0.3138594329357147 0.01786315068602562 0.7982441186904907 0.3138594329357147 0.01786315068602562 -0.425421267747879 -1.598517417907715 -0.3394664824008942 -0.425421267747879 -1.598517417907715 -0.3394664824008942 -0.6535030603408814 -1.644188165664673 -0.3349318206310272 -0.6535030603408814 -1.644188165664673 -0.3349318206310272 -0.6806384921073914 -1.948326945304871 -0.2634786665439606 -0.6806384921073914 -1.948326945304871 -0.2634786665439606 -0.6979761719703674 -2.006107807159424 -0.2173768430948257 -0.6979761719703674 -2.006107807159424 -0.2173768430948257 -0.6668106913566589 -1.748111844062805 -0.3100372552871704 -0.6668106913566589 -1.748111844062805 -0.3100372552871704 -0.6619876027107239 -2.02424168586731 -0.1575844436883926 -0.6619876027107239 -2.02424168586731 -0.1575844436883926 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.6040789484977722 -1.973503470420837 0.07559454441070557 -0.6040789484977722 -1.973503470420837 0.07559454441070557 0.6196975111961365 -1.305356502532959 0.3261548578739166 0.6196975111961365 -1.305356502532959 0.3261548578739166 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.7982441186904907 0.4255830943584442 0.01974329724907875 0.7982441186904907 0.4255830943584442 0.01974329724907875 -0.001449264585971832 -1.553421497344971 -0.3157995939254761 -0.001449264585971832 -1.553421497344971 -0.3157995939254761 -0.6268174052238464 -1.647485733032227 -0.3367124497890472 -0.6268174052238464 -1.647485733032227 -0.3367124497890472 -0.6384567618370056 -1.997578978538513 -0.09881686419248581 -0.6384567618370056 -1.997578978538513 -0.09881686419248581 -0.6342340707778931 -1.982501149177551 -0.1579913049936295 -0.6342340707778931 -1.982501149177551 -0.1579913049936295 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.3774064481258392 -2.007932424545288 -0.03081386722624302 -0.3774064481258392 -2.007932424545288 -0.03081386722624302 0.6495939493179321 -1.173845291137695 0.3425645530223846 0.6495939493179321 -1.173845291137695 0.3425645530223846 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.7982441186904907 0.3174309134483337 -0.1188254207372665 0.7982441186904907 0.3174309134483337 -0.1188254207372665 -0.001449264585971832 -1.33904230594635 -0.2504197061061859 -0.001449264585971832 -1.33904230594635 -0.2504197061061859 -0.001449317671358585 -1.642231822013855 -0.3354183435440064 -0.001449317671358585 -1.642231822013855 -0.3354183435440064 -0.6034112572669983 -1.647485733032227 -0.3367124497890472 -0.6034112572669983 -1.647485733032227 -0.3367124497890472 -0.6429769396781921 -1.748111844062805 -0.3091297447681427 -0.6429769396781921 -1.748111844062805 -0.3091297447681427 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6601085662841797 -1.986837506294251 -0.216516375541687 -0.6601085662841797 -1.986837506294251 -0.216516375541687 -0.6524618268013001 -1.911460518836975 -0.2634730935096741 -0.6524618268013001 -1.911460518836975 -0.2634730935096741 -0.6338272094726563 -1.951573252677918 -0.2168276309967041 -0.6338272094726563 -1.951573252677918 -0.2168276309967041 -0.1949691921472549 -2.007932424545288 -0.03081386722624302 -0.1949691921472549 -2.007932424545288 -0.03081386722624302 -0.6168754100799561 -2.006487607955933 -0.03038886189460754 -0.6168754100799561 -2.006487607955933 -0.03038886189460754 0.6495939493179321 -1.303990125656128 0.3261548578739166 0.6495939493179321 -1.303990125656128 0.3261548578739166 0.6193124651908875 -1.473212003707886 0.2955112159252167 0.6193124651908875 -1.473212003707886 0.2955112159252167 0.7970438599586487 0.4232206344604492 -0.1200132966041565 0.7970438599586487 0.4232206344604492 -0.1200132966041565 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4225226640701294 -1.598517417907715 -0.3394666016101837 0.4225226640701294 -1.598517417907715 -0.3394666016101837 -0.1931811571121216 -1.642231822013855 -0.3354183435440064 -0.1931811571121216 -1.642231822013855 -0.3354183435440064 -0.3914590775966644 -1.642231822013855 -0.3383925259113312 -0.3914590775966644 -1.642231822013855 -0.3383925259113312 -0.6225053668022156 -1.746745824813843 -0.3130424916744232 -0.6225053668022156 -1.746745824813843 -0.3130424916744232 -0.6155943870544434 -1.99778163433075 -0.09729073196649551 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6155943870544434 -1.99778163433075 -0.09729073196649551 -0.613030731678009 -1.981651902198792 -0.1575021743774414 -0.613030731678009 -1.981651902198792 -0.1575021743774414 -0.6093374490737915 -1.951626658439636 -0.2170951366424561 -0.6093374490737915 -1.951626658439636 -0.2170951366424561 -0.001449264585971832 -2.007932424545288 -0.03081386722624302 -0.001449264585971832 -2.007932424545288 -0.03081386722624302 -0.1945523172616959 -1.99778163433075 -0.09787315130233765 -0.1945523172616959 -1.99778163433075 -0.09787315130233765 -0.4005182683467865 -1.99778163433075 -0.09787315130233765 -0.4005182683467865 -1.99778163433075 -0.09787315130233765 0.6765615344047546 -1.172713875770569 0.3437448143959045 0.6765615344047546 -1.172713875770569 0.3437448143959045 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.1902825087308884 -1.642231822013855 -0.3354183435440064 0.1902825087308884 -1.642231822013855 -0.3354183435440064 -0.1965046674013138 -1.744363188743591 -0.3111516833305359 -0.1965046674013138 -1.744363188743591 -0.3111516833305359 -0.6007706522941589 -1.744363188743591 -0.3092606365680695 -0.6007706522941589 -1.744363188743591 -0.3092606365680695 -0.6303516626358032 -1.911460518836975 -0.261831134557724 -0.6303516626358032 -1.911460518836975 -0.261831134557724 -0.6051907539367676 -1.911460518836975 -0.2640201151371002 -0.6051907539367676 -1.911460518836975 -0.2640201151371002 -0.001449317671358585 -1.99778163433075 -0.09787315130233765 -0.001449317671358585 -1.99778163433075 -0.09787315130233765 -0.001449317671358585 -1.975146889686585 0.06838828325271606 -0.001449317671358585 -1.975146889686585 0.06838828325271606 0.6736465096473694 -1.305132031440735 0.3258563876152039 0.6736465096473694 -1.305132031440735 0.3258563876152039 0.6492306590080261 -1.473981022834778 0.2955112159252167 0.6492306590080261 -1.473981022834778 0.2955112159252167 0.614641547203064 -1.602517247200012 0.2705280482769013 0.614641547203064 -1.602517247200012 0.2705280482769013 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.7780932784080505 0.4214316308498383 -0.2512775957584381 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 0.6974818110466003 -1.598517417907715 -0.3394666016101837 0.6974818110466003 -1.598517417907715 -0.3394666016101837 0.1936057955026627 -1.744363188743591 -0.3111516833305359 0.1936057955026627 -1.744363188743591 -0.3111516833305359 0.3885605037212372 -1.642231822013855 -0.3383925259113312 0.3885605037212372 -1.642231822013855 -0.3383925259113312 -0.001449317671358585 -1.744363188743591 -0.3139945566654205 -0.001449317671358585 -1.744363188743591 -0.3139945566654205 -0.3942905366420746 -1.744363188743591 -0.3111516833305359 -0.3942905366420746 -1.744363188743591 -0.3111516833305359 -0.4007205367088318 -1.982554078102112 -0.1579129248857498 -0.4007205367088318 -1.982554078102112 -0.1579129248857498 -0.3937298357486725 -1.951626658439636 -0.2179252803325653 -0.3937298357486725 -1.951626658439636 -0.2179252803325653 -0.3913251757621765 -1.911460518836975 -0.2640201151371002 -0.3913251757621765 -1.911460518836975 -0.2640201151371002 0.192070484161377 -2.007932424545288 -0.03081386722624302 0.192070484161377 -2.007932424545288 -0.03081386722624302 0.1927159428596497 -1.975192189216614 0.06858637928962708 0.1927159428596497 -1.975192189216614 0.06858637928962708 -0.1971269398927689 -1.982554078102112 -0.1579129248857498 -0.1971269398927689 -1.982554078102112 -0.1579129248857498 -0.001449317671358585 -1.982554078102112 -0.1579129248857498 -0.001449317671358585 -1.982554078102112 -0.1579129248857498 0.7112580537796021 -1.303147315979004 0.3360871374607086 0.7112580537796021 -1.303147315979004 0.3360871374607086 0.7134889364242554 -1.179451704025269 0.3430816829204559 0.7134889364242554 -1.179451704025269 0.3430816829204559 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.7675982117652893 0.4213694334030151 -0.2747071981430054 0.7675982117652893 0.4213694334030151 -0.2747071981430054 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.623918354511261 -1.647485733032227 -0.3367124497890472 0.623918354511261 -1.647485733032227 -0.3367124497890472 0.3913919627666473 -1.744363188743591 -0.3111516833305359 0.3913919627666473 -1.744363188743591 -0.3111516833305359 0.600512683391571 -1.647485733032227 -0.3367124497890472 0.600512683391571 -1.647485733032227 -0.3367124497890472 -0.1950719803571701 -1.911460518836975 -0.2640201151371002 -0.1950719803571701 -1.911460518836975 -0.2640201151371002 0.1916532665491104 -1.99778163433075 -0.09787315130233765 0.1916532665491104 -1.99778163433075 -0.09787315130233765 0.6716429591178894 -1.473710179328919 0.3142852187156677 0.6716429591178894 -1.473710179328919 0.3142852187156677 0.7121022939682007 -1.478913545608521 0.3202499747276306 0.7121022939682007 -1.478913545608521 0.3202499747276306 0.7152735590934753 -1.030174612998962 0.3453765213489533 0.7152735590934753 -1.030174612998962 0.3453765213489533 0.6476567387580872 -1.602483987808228 0.2705280482769013 0.6476567387580872 -1.602483987808228 0.2705280482769013 0.6174612641334534 -1.742636442184448 0.2377863973379135 0.6174612641334534 -1.742636442184448 0.2377863973379135 0.7675982117652893 0.3214001655578613 -0.2747071981430054 0.7675982117652893 0.3214001655578613 -0.2747071981430054 0.7682967782020569 0.8992693424224854 -0.2752210795879364 0.7682967782020569 0.8992693424224854 -0.2752210795879364 0.7332086563110352 -1.634256482124329 -0.3076135516166687 0.7332086563110352 -1.634256482124329 -0.3076135516166687 0.6506040692329407 -1.644188165664673 -0.3349318206310272 0.6506040692329407 -1.644188165664673 -0.3349318206310272 0.1921732872724533 -1.911460518836975 -0.264020174741745 0.1921732872724533 -1.911460518836975 -0.264020174741745 0.388426661491394 -1.911460518836975 -0.264020174741745 0.388426661491394 -1.911460518836975 -0.264020174741745 0.5978718400001526 -1.744363188743591 -0.3092606365680695 0.5978718400001526 -1.744363188743591 -0.3092606365680695 -0.001449264585971832 -1.911460518836975 -0.264020174741745 -0.001449264585971832 -1.911460518836975 -0.264020174741745 -0.198796808719635 -1.951626658439636 -0.2179252803325653 -0.198796808719635 -1.951626658439636 -0.2179252803325653 0.3745077848434448 -2.007932424545288 -0.03081386722624302 0.3745077848434448 -2.007932424545288 -0.03081386722624302 0.37086620926857 -1.973503470420837 0.07559454441070557 0.37086620926857 -1.973503470420837 0.07559454441070557 -0.001449264585971832 -1.951626658439636 -0.2179252803325653 -0.001449264585971832 -1.951626658439636 -0.2179252803325653 0.1942282319068909 -1.982554078102112 -0.1579129248857498 0.1942282319068909 -1.982554078102112 -0.1579129248857498 0.7445815801620483 -1.294782400131226 0.2903444766998291 0.7445815801620483 -1.294782400131226 0.2903444766998291 0.746989369392395 -1.477022528648377 0.2740126550197601 0.746989369392395 -1.477022528648377 0.2740126550197601 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.7435510754585266 -1.17504346370697 0.2979675829410553 0.7435510754585266 -1.17504346370697 0.2979675829410553 0.5079431533813477 -1.828675627708435 0.210712805390358 0.5079431533813477 -1.828675627708435 0.210712805390358 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7780932784080505 0.9031000733375549 -0.2496751993894577 0.7780932784080505 0.9031000733375549 -0.2496751993894577 0.7614982724189758 -1.623395562171936 -0.2698330581188202 0.7614982724189758 -1.623395562171936 -0.2698330581188202 0.6792197823524475 -1.645132303237915 -0.3384934961795807 0.6792197823524475 -1.645132303237915 -0.3384934961795807 0.6400778889656067 -1.748111844062805 -0.3091297447681427 0.6400778889656067 -1.748111844062805 -0.3091297447681427 0.6196064352989197 -1.746745824813843 -0.313042551279068 0.6196064352989197 -1.746745824813843 -0.313042551279068 0.6022922396659851 -1.911460518836975 -0.264020174741745 0.6022922396659851 -1.911460518836975 -0.264020174741745 0.3976193964481354 -1.99778163433075 -0.09787315130233765 0.3976193964481354 -1.99778163433075 -0.09787315130233765 0.351957768201828 -1.969097256660461 0.0834038257598877 0.351957768201828 -1.969097256660461 0.0834038257598877 0.7127406597137451 -1.612327575683594 0.3050930202007294 0.7127406597137451 -1.612327575683594 0.3050930202007294 0.6696393489837647 -1.600142955780029 0.2973578274250031 0.6696393489837647 -1.600142955780029 0.2973578274250031 0.7474879622459412 -1.605847239494324 0.2616663873195648 0.7474879622459412 -1.605847239494324 0.2616663873195648 0.7182532548904419 -0.8380235433578491 0.3453765213489533 0.7182532548904419 -0.8380235433578491 0.3453765213489533 0.7452688217163086 -1.030174612998962 0.297200620174408 0.7452688217163086 -1.030174612998962 0.297200620174408 0.6462497711181641 -1.744982481002808 0.2377863973379135 0.6462497711181641 -1.744982481002808 0.2377863973379135 0.6161529421806335 -1.828675627708435 0.2114831358194351 0.6161529421806335 -1.828675627708435 0.2114831358194351 0.7675982117652893 -0.4633741080760956 -0.2747071981430054 0.7675982117652893 -0.4633741080760956 -0.2747071981430054 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.7626872658729553 -1.73902428150177 -0.2654593288898468 0.7626872658729553 -1.73902428150177 -0.2654593288898468 0.7248597741127014 -1.743023633956909 -0.3158882260322571 0.7248597741127014 -1.743023633956909 -0.3158882260322571 0.6639117002487183 -1.748111844062805 -0.3100373148918152 0.6639117002487183 -1.748111844062805 -0.3100373148918152 0.3908311724662781 -1.951626658439636 -0.2179252803325653 0.3908311724662781 -1.951626658439636 -0.2179252803325653 0.1958980262279511 -1.951626658439636 -0.2179252803325653 0.1958980262279511 -1.951626658439636 -0.2179252803325653 0.6064390540122986 -1.951626658439636 -0.2170951366424561 0.6064390540122986 -1.951626658439636 -0.2170951366424561 0.6274524927139282 -1.911460518836975 -0.2618311941623688 0.6274524927139282 -1.911460518836975 -0.2618311941623688 0.613976776599884 -2.00648832321167 -0.03038886189460754 0.613976776599884 -2.00648832321167 -0.03038886189460754 0.6011803150177002 -1.973503470420837 0.07559454441070557 0.6011803150177002 -1.973503470420837 0.07559454441070557 0.4209894239902496 -1.952623009681702 0.1164684295654297 0.4209894239902496 -1.952623009681702 0.1164684295654297 0.3978218138217926 -1.982554078102112 -0.1579129248857498 0.3978218138217926 -1.982554078102112 -0.1579129248857498 0.7757121920585632 -1.4743812084198 0.2122804075479507 0.7757121920585632 -1.4743812084198 0.2122804075479507 0.7717577815055847 -1.300840497016907 0.2215401381254196 0.7717577815055847 -1.300840497016907 0.2215401381254196 0.7790074944496155 -1.59941303730011 0.1968471556901932 0.7790074944496155 -1.59941303730011 0.1968471556901932 0.7452688217163086 -0.8389725685119629 0.2947215437889099 0.7452688217163086 -0.8389725685119629 0.2947215437889099 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7717577815055847 -1.188867688179016 0.2275206297636032 0.7717577815055847 -1.188867688179016 0.2275206297636032 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7776272892951965 -1.615131855010986 -0.2230612486600876 0.7776272892951965 -1.615131855010986 -0.2230612486600876 0.7791553735733032 -1.731492877006531 -0.2158130407333374 0.7791553735733032 -1.731492877006531 -0.2158130407333374 0.6969878077507019 -1.74457848072052 -0.3189046382904053 0.6969878077507019 -1.74457848072052 -0.3189046382904053 0.6495630145072937 -1.911460518836975 -0.2634732127189636 0.6495630145072937 -1.911460518836975 -0.2634732127189636 0.6309284567832947 -1.951574444770813 -0.2168276309967041 0.6309284567832947 -1.951574444770813 -0.2168276309967041 0.6126948595046997 -1.99778163433075 -0.09729073196649551 0.6126948595046997 -1.99778163433075 -0.09729073196649551 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7125467658042908 -1.752095222473145 0.2910460829734802 0.7125467658042908 -1.752095222473145 0.2910460829734802 0.7611239552497864 -1.752110004425049 0.2460802644491196 0.7611239552497864 -1.752110004425049 0.2460802644491196 0.6676357984542847 -1.744048237800598 0.2750363051891327 0.6676357984542847 -1.744048237800598 0.2750363051891327 0.7814652919769287 -1.743004322052002 0.1827057152986527 0.7814652919769287 -1.743004322052002 0.1827057152986527 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.7717577815055847 -1.029682159423828 0.2270265072584152 0.7717577815055847 -1.029682159423828 0.2270265072584152 0.7717577815055847 -0.8304092884063721 0.2270265072584152 0.7717577815055847 -0.8304092884063721 0.2270265072584152 0.6456993222236633 -1.828809261322022 0.2115316838026047 0.6456993222236633 -1.828809261322022 0.2115316838026047 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7791553735733032 -1.859680533409119 -0.2195352166891098 0.7791553735733032 -1.859680533409119 -0.2195352166891098 0.7543383836746216 -1.859680533409119 -0.2654593288898468 0.7543383836746216 -1.859680533409119 -0.2654593288898468 0.7276512980461121 -1.908180832862854 -0.2644224464893341 0.7276512980461121 -1.908180832862854 -0.2644224464893341 0.6777392029762268 -1.948328375816345 -0.2634787857532501 0.6777392029762268 -1.948328375816345 -0.2634787857532501 0.6101319193840027 -1.981651902198792 -0.1575021743774414 0.6101319193840027 -1.981651902198792 -0.1575021743774414 0.6313349008560181 -1.982501864433289 -0.1579913049936295 0.6313349008560181 -1.982501864433289 -0.1579913049936295 0.6572094559669495 -1.986838221549988 -0.216516375541687 0.6572094559669495 -1.986838221549988 -0.216516375541687 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.604820966720581 0.05439910665154457 0.7982441186904907 -1.604820966720581 0.05439910665154457 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.7977098822593689 -1.604159355163574 -0.155659943819046 0.7977098822593689 -1.604159355163574 -0.155659943819046 0.7931743264198303 -1.858019590377808 -0.1583313196897507 0.7931743264198303 -1.858019590377808 -0.1583313196897507 0.6590888500213623 -2.02424168586731 -0.1575844436883926 0.6590888500213623 -2.02424168586731 -0.1575844436883926 0.6355575323104858 -1.997578978538513 -0.09881686419248581 0.6355575323104858 -1.997578978538513 -0.09881686419248581 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7669368982315064 -1.831026315689087 0.2328774482011795 0.7669368982315064 -1.831026315689087 0.2328774482011795 0.7830662131309509 -1.849237442016602 0.1747838407754898 0.7830662131309509 -1.849237442016602 0.1747838407754898 0.6644447445869446 -1.82667601108551 0.2628661394119263 0.6644447445869446 -1.82667601108551 0.2628661394119263 0.7982441186904907 -1.746039509773254 0.05331587418913841 0.7982441186904907 -1.746039509773254 0.05331587418913841 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7931743264198303 -1.730340600013733 -0.1583104282617569 0.7931743264198303 -1.730340600013733 -0.1583104282617569 0.7820088863372803 -1.98232901096344 -0.1583313196897507 0.7820088863372803 -1.98232901096344 -0.1583313196897507 0.7694445252418518 -1.952685952186585 -0.2173483222723007 0.7694445252418518 -1.952685952186585 -0.2173483222723007 0.7453804016113281 -1.984729170799255 -0.2173768430948257 0.7453804016113281 -1.984729170799255 -0.2173768430948257 0.6950770616531372 -2.006107807159424 -0.2173768430948257 0.6950770616531372 -2.006107807159424 -0.2173768430948257 0.6639816164970398 -2.044581174850464 -0.09905537962913513 0.6639816164970398 -2.044581174850464 -0.09905537962913513 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.7117041945457459 -1.817547917366028 0.285483330488205 0.7117041945457459 -1.817547917366028 0.285483330488205 0.8151856660842896 -1.344445824623108 0.08846646547317505 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.8151856660842896 -1.344445824623108 0.08846646547317505 0.8169910311698914 -1.411396861076355 0.03317912295460701 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.8169910311698914 -1.411396861076355 0.03317912295460701 0.7982441186904907 -1.597437262535095 -0.02763602323830128 0.7982441186904907 -1.597437262535095 -0.02763602323830128 0.8105422854423523 -1.233547210693359 0.1249729543924332 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.8105422854423523 -1.233547210693359 0.1249729543924332 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.8087496757507324 -1.128642797470093 0.1301879435777664 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.8087496757507324 -1.128642797470093 0.1301879435777664 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.8111097812652588 -0.7940167188644409 -0.08648346364498138 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.8111097812652588 -0.7940167188644409 -0.08648346364498138 0.7982441186904907 -1.597437262535095 -0.09717599302530289 0.7982441186904907 -1.597437262535095 -0.09717599302530289 0.7982441186904907 -1.859525799751282 -0.0991249606013298 0.7982441186904907 -1.859525799751282 -0.0991249606013298 0.7850413918495178 -1.996179938316345 -0.0991249606013298 0.7850413918495178 -1.996179938316345 -0.0991249606013298 0.7068971991539002 -2.044126987457275 -0.1583652049303055 0.7068971991539002 -2.044126987457275 -0.1583652049303055 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7982441186904907 -1.85834276676178 0.05595642700791359 0.7982441186904907 -1.85834276676178 0.05595642700791359 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.739925384521484 -0.0306595154106617 0.7982441186904907 -1.739925384521484 -0.0306595154106617 0.8131956458091736 -1.033355116844177 0.1124019175767899 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.8131956458091736 -1.033355116844177 0.1124019175767899 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.8178597688674927 -0.8301818370819092 -0.02805159240961075 0.8178597688674927 -0.8301818370819092 -0.02805159240961075 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.731833338737488 -0.09522708505392075 0.7982441186904907 -1.731833338737488 -0.09522708505392075 0.7626733183860779 -2.044323444366455 -0.09895889461040497 0.7626733183860779 -2.044323444366455 -0.09895889461040497 0.7576038241386414 -2.023205518722534 -0.1581518948078156 0.7576038241386414 -2.023205518722534 -0.1581518948078156 0.7113782167434692 -2.065833806991577 -0.09944543987512589 0.7113782167434692 -2.065833806991577 -0.09944543987512589 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.8124783635139465 -1.476347923278809 -0.05023443698883057 0.8124783635139465 -1.476347923278809 -0.05023443698883057 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.8165122270584106 -0.9438937306404114 0.07964269816875458 0.8165122270584106 -0.9438937306404114 0.07964269816875458 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -1.861560702323914 -0.0306595154106617 0.7982441186904907 -1.861560702323914 -0.0306595154106617 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.8178598284721375 -0.8697569370269775 0.02455062046647072 0.8178598284721375 -0.8697569370269775 0.02455062046647072 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1024\" source=\"#ID1485\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1483\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1486\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"3072\">-0.9771900185215559 -0.001586737603416483 -0.2123608955660601 -0.9790417160505522 3.292227695633877e-018 -0.2036598100578263 -0.9999689324618893 1.894445986804272e-005 -0.007882496567513529 0.9999689324618893 -1.894445986804272e-005 0.007882496567513529 0.9790417160505522 -3.292227695633877e-018 0.2036598100578263 0.9771900185215559 0.001586737603416483 0.2123608955660601 -0.9502911551307772 0.0007757361223652627 -0.3113617168402076 0.9502911551307772 -0.0007757361223652627 0.3113617168402076 -0.9999188006678761 -0.0001738576127736409 -0.01274212872509091 0.9999188006678761 0.0001738576127736409 0.01274212872509091 -0.9999689326413301 -8.358683530417662e-019 -0.007882496568928017 0.9999689326413301 8.358683530417662e-019 0.007882496568928017 -0.9432849430408019 0.01059441770911542 -0.3318151210326555 0.9432849430408019 -0.01059441770911542 0.3318151210326555 -0.9472204709051849 -0.002797125391854481 -0.3205706717522704 0.9472204709051849 0.002797125391854481 0.3205706717522704 -0.9822519876469651 -0.005061664463367821 -0.1874977661638847 0.9822519876469651 0.005061664463367821 0.1874977661638847 -0.9790417160505522 -1.045811182739211e-019 -0.2036598100578265 -0.9999689326413301 2.170208064185533e-019 -0.007882496568928015 0.9999689326413301 -2.170208064185533e-019 0.007882496568928015 0.9790417160505522 1.045811182739211e-019 0.2036598100578265 -0.9968881233310588 0.008087498311279936 -0.07841340403620074 0.9968881233310588 -0.008087498311279936 0.07841340403620074 -0.9989409175778646 -0.0347494603399221 -0.0301582193568878 0.9989409175778646 0.0347494603399221 0.0301582193568878 -0.9999689326413301 0 -0.007882496568928017 -0.9999689326413301 0 -0.007882496568928017 0.9999689326413301 -0 0.007882496568928017 0.9999689326413301 -0 0.007882496568928017 -0.8994369480327905 7.741777964543919e-018 -0.4370505422871128 0.8994369480327905 -7.741777964543919e-018 0.4370505422871128 -0.9970361569647415 0.007947672178051453 -0.07652278230651169 0.9970361569647415 -0.007947672178051453 0.07652278230651169 -0.9639392879483925 -0.000743497724044367 -0.266121206146148 0.9639392879483925 0.000743497724044367 0.266121206146148 -0.9974070143424252 -0.06128363998301194 -0.03773013664117783 0.9974070143424252 0.06128363998301194 0.03773013664117783 -0.9781157939340335 1.481576469783222e-018 -0.2080612738036459 -0.9999689326413301 3.8116225473858e-019 -0.007882496568928013 0.9999689326413301 -3.8116225473858e-019 0.007882496568928013 0.9781157939340335 -1.481576469783222e-018 0.2080612738036459 -0.9663092415749675 0.004883560455926994 -0.2573375224954274 0.9663092415749675 -0.004883560455926994 0.2573375224954274 -0.9991782421800318 0.001610189992179519 0.04049997089148081 0.9991782421800318 -0.001610189992179519 -0.04049997089148081 -0.9790874310059494 0.0008247154921036521 -0.2034382517879249 0.9790874310059494 -0.0008247154921036521 0.2034382517879249 -0.9852274316154588 -0.004011911017639334 -0.1712040086049179 0.9852274316154588 0.004011911017639334 0.1712040086049179 -0.9999689326413301 0 -0.007882496568928019 -0.9999689326413301 0 -0.007882496568928019 0.9999689326413301 -0 0.007882496568928019 0.9999689326413301 -0 0.007882496568928019 -0.9971892225895257 0.02017482648119507 -0.07215698668702252 0.9971892225895257 -0.02017482648119507 0.07215698668702252 -0.9992120642586049 0.001957573758255666 0.03964112189430344 0.9992120642586049 -0.001957573758255666 -0.03964112189430344 -0.9856172416564362 0.002474734662910435 -0.1689749349397905 0.9856172416564362 -0.002474734662910435 0.1689749349397905 -0.9663855598534248 -0.001290974715952425 -0.2570939188138557 0.9663855598534248 0.001290974715952425 0.2570939188138557 -0.9999575158879286 -0.001434488811743013 -0.009105419325431454 0.9999575158879286 0.001434488811743013 0.009105419325431454 -0.9890265936715046 0.006176024749959835 0.1476084473491557 0.9890265936715046 -0.006176024749959835 -0.1476084473491557 -0.984522798150021 -0.0004074915144433557 -0.1752560808460546 0.984522798150021 0.0004074915144433557 0.1752560808460546 -0.9996823142354346 0.002893836478710463 0.02503789758186764 0.9996823142354346 -0.002893836478710463 -0.02503789758186764 -0.8613334865459467 0.4933852669413169 0.1211429045377775 -0.8645448626999024 0.4903430408955166 0.1101175854463976 -0.8544213626011464 0.5186865821214917 0.03046907707701686 0.8544213626011464 -0.5186865821214917 -0.03046907707701686 0.8645448626999024 -0.4903430408955166 -0.1101175854463976 0.8613334865459467 -0.4933852669413169 -0.1211429045377775 -0.9891518293142284 0.006988410326678562 0.1467304354434402 0.9891518293142284 -0.006988410326678562 -0.1467304354434402 -0.9837721987850511 -0.003801302179372787 -0.1793817465612573 0.9837721987850511 0.003801302179372787 0.1793817465612573 -1 0 0 1 -0 -0 -0.850767997898328 0.4522143794921146 0.2677610291521756 0.850767997898328 -0.4522143794921146 -0.2677610291521756 -0.9618276394508243 0.002839871854348845 0.2736412379673534 0.9618276394508243 -0.002839871854348845 -0.2736412379673534 -0.8572897278184025 0.4462273448013313 0.2567790476822494 0.8572897278184025 -0.4462273448013313 -0.2567790476822494 -0.9982061105512535 0.003222709143129392 0.05978440435361971 0.9982061105512535 -0.003222709143129392 -0.05978440435361971 -0.9591399644253476 0.0013276724258438 0.2829289061373419 0.9591399644253476 -0.0013276724258438 -0.2829289061373419 -0.8876118350170518 0.3295661439206302 0.3217629362107274 0.8876118350170518 -0.3295661439206302 -0.3217629362107274 -0.8977361771613399 0.3250774706096561 0.2973119478221008 0.8977361771613399 -0.3250774706096561 -0.2973119478221008 -0.9902348384620743 0.004109082403179794 0.1393487715690145 0.9902348384620743 -0.004109082403179794 -0.1393487715690145 -0.8566503694453361 0.002446876006654095 0.5158916139335636 0.8566503694453361 -0.002446876006654095 -0.5158916139335636 -0.9020856819345563 0.1863441929453943 0.3892521858695155 0.9020856819345563 -0.1863441929453943 -0.3892521858695155 -0.9867764024740569 0.004515207692181317 0.1620245179590255 0.9867764024740569 -0.004515207692181317 -0.1620245179590255 -0.8425063325319582 0.01555040831455135 0.5384619433579316 0.8425063325319582 -0.01555040831455135 -0.5384619433579316 -0.906121976113601 0.1894976602978684 0.3781978333433655 0.906121976113601 -0.1894976602978684 -0.3781978333433655 -0.9598789165785798 -0.003077378431222278 0.280397923048518 0.9598789165785798 0.003077378431222278 -0.280397923048518 -0.6347609883576616 0.01155324137621323 0.7726221652741446 0.6347609883576616 -0.01155324137621323 -0.7726221652741446 -0.8966819075516134 0.07771590752586575 0.435800177130564 0.8966819075516134 -0.07771590752586575 -0.435800177130564 -0.9785891255823827 0.003221788367465404 0.2057983075042719 0.9785891255823827 -0.003221788367465404 -0.2057983075042719 -0.9607776263730951 0.00201443888784302 0.277312629890614 0.9607776263730951 -0.00201443888784302 -0.277312629890614 -0.6983489367023467 0.04961210116549678 0.7140359949082725 0.6983489367023467 -0.04961210116549678 -0.7140359949082725 -0.900604689928327 0.09010029011729324 0.425197754227232 0.900604689928327 -0.09010029011729324 -0.425197754227232 -0.9588346583016721 0.0008326970514992843 0.2839637382750413 0.9588346583016721 -0.0008326970514992843 -0.2839637382750413 -0.9164147169425765 -0.00910325530792762 0.4001264766468924 0.9164147169425765 0.00910325530792762 -0.4001264766468924 -0.4464505246919321 0.03803327876922855 0.8939996637070737 0.4464505246919321 -0.03803327876922855 -0.8939996637070737 -0.8969034603948126 0.0200156497148593 0.4417731957671298 0.8969034603948126 -0.0200156497148593 -0.4417731957671298 -0.9765428707314156 0.0004992186759849619 0.2153224846697605 0.9765428707314156 -0.0004992186759849619 -0.2153224846697605 -0.895520692734899 -0.0002651310475007681 0.445019795727262 0.895520692734899 0.0002651310475007681 -0.445019795727262 -0.9072315228553386 -0.007386263429703882 0.4205667688371613 0.9072315228553386 0.007386263429703882 -0.4205667688371613 -0.5151201333405083 0.05762348945996668 0.8551788010057979 0.5151201333405083 -0.05762348945996668 -0.8551788010057979 -0.8963849877349819 0.01799898941747728 0.4429108151121465 0.8963849877349819 -0.01799898941747728 -0.4429108151121465 -0.9550607048378887 -0.008595199200161906 0.296285626761179 0.9550607048378887 0.008595199200161906 -0.296285626761179 -0.6083268790154661 -0.01773804223761951 0.7934883553807698 0.6083268790154661 0.01773804223761951 -0.7934883553807698 -0.206533912779653 0.01312869502328621 0.9783513582751915 0.206533912779653 -0.01312869502328621 -0.9783513582751915 -0.8950561340727541 -0.05500856952533083 0.4425478213001536 0.8950561340727541 0.05500856952533083 -0.4425478213001536 -0.974817159690307 -0.01264423724930605 0.2226468693642596 0.974817159690307 0.01264423724930605 -0.2226468693642596 -0.4492757287568513 -0.01816108521842438 0.8932085392189718 0.4492757287568513 0.01816108521842438 -0.8932085392189718 -0.8847410800965309 -0.01757427319378755 0.4657513994732964 0.8847410800965309 0.01757427319378755 -0.4657513994732964 -0.5575023998409231 0.02727996565469962 0.8297269898258644 0.5575023998409231 -0.02727996565469962 -0.8297269898258644 -0.1934309920620744 0.00141326582144325 0.9811128650617114 0.1934309920620744 -0.00141326582144325 -0.9811128650617114 -0.8919664970414266 -0.06944743650307948 0.4467357403642531 0.8919664970414266 0.06944743650307948 -0.4467357403642531 -0.9558315403963276 -0.00754370464283368 0.2938182412714452 0.9558315403963276 0.00754370464283368 -0.2938182412714452 -0.2476666920797232 -0.02438408932794591 0.9685383966688849 0.2476666920797232 0.02438408932794591 -0.9685383966688849 -0.07432341848991311 0.01114049535973943 0.9971719605098774 0.07432341848991311 -0.01114049535973943 -0.9971719605098774 -0.8879690242672579 -0.2040393937551356 0.4121637268585031 0.8879690242672579 0.2040393937551356 -0.4121637268585031 -0.984245975666149 -0.01640619454133032 0.1760417455198129 0.984245975666149 0.01640619454133032 -0.1760417455198129 -0.470586420836446 -0.03092208977332432 0.8818119101534031 0.470586420836446 0.03092208977332432 -0.8818119101534031 -0.8765304281839281 -0.02677057613336905 0.4806014406149725 0.8765304281839281 0.02677057613336905 -0.4806014406149725 -0.1228183054958481 -0.111129705670554 0.9861875340688021 0.1228183054958481 0.111129705670554 -0.9861875340688021 -0.1422524387013631 0.08650520172209436 0.9860431500489898 0.1422524387013631 -0.08650520172209436 -0.9860431500489898 -0.07722944505424488 0.01429695874918533 0.9969108334184845 0.07722944505424488 -0.01429695874918533 -0.9969108334184845 -0.8856001506157596 -0.207145051657605 0.4156961640466651 0.8856001506157596 0.207145051657605 -0.4156961640466651 -0.9565582953355224 -0.01332882085912952 0.2912362789202348 0.9565582953355224 0.01332882085912952 -0.2912362789202348 -0.3283505887844118 0.3306960167614941 0.8847745675272385 0.3283505887844118 -0.3306960167614941 -0.8847745675272385 9.355723527338429e-009 0.0186001828842623 0.9998270016341188 -9.355723527338429e-009 -0.0186001828842623 -0.9998270016341188 -0.8949706469360677 -0.3243746580670968 0.3062819327461068 0.8949706469360677 0.3243746580670968 -0.3062819327461068 -0.9951376548752913 -0.01258038220657256 0.09768716309138305 0.9951376548752913 0.01258038220657256 -0.09768716309138305 0.02441341528062479 -0.04018947456705912 0.9988937837870248 -0.02441341528062479 0.04018947456705912 -0.9988937837870248 -0.3415286992173654 -0.08847586848124532 0.9356976906604951 0.3415286992173654 0.08847586848124532 -0.9356976906604951 -0.8571769674024923 -0.04022818316830723 0.5134484782659736 0.8571769674024923 0.04022818316830723 -0.5134484782659736 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 7.367702913516951e-009 -0.02830913765764351 0.9995992160486525 -0.1992518788334495 -0.01139878853772022 0.9798820114693465 -0.05013526873064869 0.01986799350556079 0.9985448000282053 0.05013526873064869 -0.01986799350556079 -0.9985448000282053 0.1992518788334495 0.01139878853772022 -0.9798820114693465 -7.367702913516951e-009 0.02830913765764351 -0.9995992160486525 -0.8971048502216629 -0.321983413427523 0.3025385416543298 0.8971048502216629 0.321983413427523 -0.3025385416543298 -0.9578180503286586 -0.01408032653443589 0.2870301845961338 0.9578180503286586 0.01408032653443589 -0.2870301845961338 0.02350686145086761 -0.05281539590359781 0.9983275822195219 -0.02350686145086761 0.05281539590359781 -0.9983275822195219 0.05013529181632081 0.01986798553163498 0.9985447990277688 0.1992520465395727 -0.01139743910568457 0.9798819930642794 0.07722949104593611 0.01429697516615458 0.996910829620124 -0.1992520465395727 0.01139743910568457 -0.9798819930642794 -0.07722949104593611 -0.01429697516615458 -0.996910829620124 -0.05013529181632081 -0.01986798553163498 -0.9985447990277688 -0.873379065742168 -0.435637042386647 0.2177828616396445 0.873379065742168 0.435637042386647 -0.2177828616396445 -0.9978102123183206 -0.0002979809767365266 0.06614144994332498 0.9978102123183206 0.0002979809767365266 -0.06614144994332498 0.1392324360751088 -0.1282270959827192 0.9819226754691173 -0.1392324360751088 0.1282270959827192 -0.9819226754691173 -0.004151361905557766 -0.1530036777795603 0.988216899663357 0.004151361905557766 0.1530036777795603 -0.988216899663357 -0.1091464427993047 -0.1854747968576843 0.9765685607036809 0.1091464427993047 0.1854747968576843 -0.9765685607036809 -0.3680833179199177 -0.08538772445546562 0.9258637089665964 0.3680833179199177 0.08538772445546562 -0.9258637089665964 -0.8512027761381504 -0.02536012167907416 0.5242239007553247 0.8512027761381504 0.02536012167907416 -0.5242239007553247 0.07432345455429569 0.01114044357539076 0.997171958400385 -0.07432345455429569 -0.01114044357539076 -0.997171958400385 -0.8574598469235982 -0.4841012329394283 0.1743806387770306 0.8574598469235982 0.4841012329394283 -0.1743806387770306 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 -0.9733832727178078 0.007736198347291853 0.229052735474391 0.9733832727178078 -0.007736198347291853 -0.229052735474391 -0.003101175158944016 -0.1523881894354768 0.9883158515541531 0.003101175158944016 0.1523881894354768 -0.9883158515541531 0.001450612072996214 -0.04482941980428752 0.9989936030048563 -0.001450612072996214 0.04482941980428752 -0.9989936030048563 0.1934307639629917 0.001412657525049151 0.9811129109085307 -0.1934307639629917 -0.001412657525049151 -0.9811129109085307 -0.8682198219329231 -0.4898573784628851 0.07895625097630328 0.8682198219329231 0.4898573784628851 -0.07895625097630328 -0.9999426757569431 -0.005924605813726535 -0.008918758097251045 0.9999426757569431 0.005924605813726535 0.008918758097251045 -0.9979816137896427 0.0007788093903403534 0.06349875584414082 0.9979816137896427 -0.0007788093903403534 -0.06349875584414082 0.4190664890064954 -0.09024923546223157 0.9034591043817376 -0.4190664890064954 0.09024923546223157 -0.9034591043817376 0.3293576436016264 -0.1512844787638046 0.932006732318146 -0.3293576436016264 0.1512844787638046 -0.932006732318146 0.003468750218861239 -0.1849306565179608 0.9827454502829077 -0.003468750218861239 0.1849306565179608 -0.9827454502829077 -0.0771747638042234 -0.2197377985821765 0.9725015967627102 0.0771747638042234 0.2197377985821765 -0.9725015967627102 -0.3332161310673002 -0.08667606909295655 0.9388579599934874 0.3332161310673002 0.08667606909295655 -0.9388579599934874 -0.8471829494023482 -0.01871022510968509 0.5309717296789758 0.8471829494023482 0.01871022510968509 -0.5309717296789758 0.206534672424648 0.01312835379791649 0.9783512024896787 -0.206534672424648 -0.01312835379791649 -0.9783512024896787 -0.8751933954880818 -0.4789510829348484 0.06813501779245279 0.8751933954880818 0.4789510829348484 -0.06813501779245279 -0.9999943641874873 0.0002114853066728545 -0.003350651761670484 0.9999943641874873 -0.0002114853066728545 0.003350651761670484 -0.9992194764740899 0.0003249760845030904 -0.03950104081401198 0.9992194764740899 -0.0003249760845030904 0.03950104081401198 -1 0 0 1 -0 -0 -0.9765685441597449 -0.04566527106811754 0.2103058762279164 0.9765685441597449 0.04566527106811754 -0.2103058762279164 0.003607103899563249 -0.1873518661177469 0.9822862449732541 -0.003607103899563249 0.1873518661177469 -0.9822862449732541 0.00602688632923911 -0.1563124366892208 0.9876892723814776 -0.00602688632923911 0.1563124366892208 -0.9876892723814776 0.001251671320043853 -0.04183185705672599 0.9991238807345625 -0.001251671320043853 0.04183185705672599 -0.9991238807345625 0.5151195527131143 0.05762274208745132 0.8551792011075597 -0.5151195527131143 -0.05762274208745132 -0.8551792011075597 -0.9903947707187708 -0.004947155871302164 -0.1381800411843137 0.9903947707187708 0.004947155871302164 0.1381800411843137 -0.9878663656498398 -0.009852017467930564 -0.1549934881522087 0.9878663656498398 0.009852017467930564 0.1549934881522087 -0.996482872850571 -0.05726756133441097 0.06117442712671616 0.996482872850571 0.05726756133441097 -0.06117442712671616 0.526348044934525 -0.1131629593586895 0.8427050968297194 -0.526348044934525 0.1131629593586895 -0.8427050968297194 0.4173686971612756 -0.1778874320780186 0.8911562332939087 -0.4173686971612756 0.1778874320780186 -0.8911562332939087 0.005222164543497156 -0.2092035110452315 0.9778581798828645 -0.005222164543497156 0.2092035110452315 -0.9778581798828645 0.007545316719704674 -0.2110414645011939 0.9774479875966754 -0.007545316719704674 0.2110414645011939 -0.9774479875966754 -0.01969785890737417 -0.2616664220722393 0.9649573451269117 0.01969785890737417 0.2616664220722393 -0.9649573451269117 -0.2014758556225803 -0.1015170915729863 0.9742185379675912 0.2014758556225803 0.1015170915729863 -0.9742185379675912 -0.868201468219757 -0.02383906889302845 0.4956388900957751 0.868201468219757 0.02383906889302845 -0.4956388900957751 0.4464522679055878 0.03803370703448546 0.8939987749494807 -0.4464522679055878 -0.03803370703448546 -0.8939987749494807 -0.9898172877087869 -0.01510264998941633 -0.1415402660592297 0.9898172877087869 0.01510264998941633 0.1415402660592297 -0.9981408894568261 -0.06091817756761343 0.001934020728103332 0.9981408894568261 0.06091817756761343 -0.001934020728103332 -0.9978372472000537 -0.05127472324472305 -0.04113065591983561 0.9978372472000537 0.05127472324472305 0.04113065591983561 -0.986834032541885 -0.03790333343156378 0.1572320881114841 0.986834032541885 0.03790333343156378 -0.1572320881114841 0.02477291592964374 -0.1906352083191541 0.9813483173600776 -0.02477291592964374 0.1906352083191541 -0.9813483173600776 -0.002328718950658374 -0.1360208146346536 0.990703242678742 0.002328718950658374 0.1360208146346536 -0.990703242678742 -0.001031618229602105 -0.04511816296389461 0.9989811245136676 0.001031618229602105 0.04511816296389461 -0.9989811245136676 0.6983491129304112 0.04961305488200415 0.7140357562857639 -0.6983491129304112 -0.04961305488200415 -0.7140357562857639 -0.9509233179690119 -0.008522740260876977 -0.3093092404718151 0.9509233179690119 0.008522740260876977 0.3093092404718151 -0.9603612407120864 -0.004049774339899059 -0.2787290560127123 0.9603612407120864 0.004049774339899059 0.2787290560127123 -0.9870724976498742 -0.04346784834016133 -0.1542673994851666 0.9870724976498742 0.04346784834016133 0.1542673994851666 -0.9981388138662855 -0.05180664955192778 0.03217109441421623 0.9981388138662855 0.05180664955192778 -0.03217109441421623 0.6592718697604481 -0.1055100362959731 0.7444650656568009 -0.6592718697604481 0.1055100362959731 -0.7444650656568009 0.5028544664240005 -0.2156034093731595 0.8370499121701784 -0.5028544664240005 0.2156034093731595 -0.8370499121701784 0.01543515840224038 -0.257605509409122 0.9661268847346939 -0.01543515840224038 0.257605509409122 -0.9661268847346939 0.01238193944210214 -0.2569872685258789 0.9663354652455121 -0.01238193944210214 0.2569872685258789 -0.9663354652455121 0.005615760653294178 -0.2129790952388896 0.9770406174891138 -0.005615760653294178 0.2129790952388896 -0.9770406174891138 -0.005662748884652038 -0.3003436078411413 0.9538142641542096 0.005662748884652038 0.3003436078411413 -0.9538142641542096 -0.6724794224102589 -0.05649842023248849 0.737956201238256 0.6724794224102589 0.05649842023248849 -0.737956201238256 -0.8365327615396679 -0.08000809676405099 0.5420439496231012 0.8365327615396679 0.08000809676405099 -0.5420439496231012 0.6347615283535828 0.01155433665977158 0.772621705252044 -0.6347615283535828 -0.01155433665977158 -0.772621705252044 -0.9519190478961309 -0.005574400389519616 -0.3062989590462578 0.9519190478961309 0.005574400389519616 0.3062989590462578 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 -0.964539282200069 -0.2580563926064153 -0.05541544304559113 0.964539282200069 0.2580563926064153 0.05541544304559113 0.442655489608497 -0.1319682527915336 0.8869275606128225 -0.442655489608497 0.1319682527915336 -0.8869275606128225 2.605657906526417e-009 -0.1300025924816046 0.9915136539392998 -2.605657906526417e-009 0.1300025924816046 -0.9915136539392998 -7.067358788118902e-011 -0.04362721548871919 0.9990478797678822 7.067358788118902e-011 0.04362721548871919 -0.9990478797678822 0.8425057926680641 0.01555117100145642 0.5384627660305216 -0.8425057926680641 -0.01555117100145642 -0.5384627660305216 -0.9015863992712774 -0.01219373558413136 -0.4324271932494034 0.9015863992712774 0.01219373558413136 0.4324271932494034 -0.9371645856471843 -0.05885413476929844 -0.3438876709469223 0.9371645856471843 0.05885413476929844 0.3438876709469223 -0.8891099819974205 -0.01775480320450284 -0.4573491083141148 0.8891099819974205 0.01775480320450284 0.4573491083141148 -0.9238625911297171 -0.298752180278987 -0.239217573538477 0.9238625911297171 0.298752180278987 0.239217573538477 0.714460437130116 -0.1454390921233625 0.684392982326803 -0.714460437130116 0.1454390921233625 -0.684392982326803 0.5669657547679409 -0.2605372480570189 0.7814538855846162 -0.5669657547679409 0.2605372480570189 -0.7814538855846162 0.005018164881382924 -0.3337214114980939 0.9426583885633985 -0.005018164881382924 0.3337214114980939 -0.9426583885633985 0.008334074846322034 -0.3314169967032203 0.9434475700814931 -0.008334074846322034 0.3314169967032203 -0.9434475700814931 -1.07869099120766e-009 -0.2576574119967494 0.9662363365363245 1.07869099120766e-009 0.2576574119967494 -0.9662363365363245 -0.6255914375192391 -0.09499054398525243 0.7743462725783586 0.6255914375192391 0.09499054398525243 -0.7743462725783586 0.8566494289754592 0.002447052947409265 0.515893174763819 -0.8566494289754592 -0.002447052947409265 -0.515893174763819 -0.9224100075395584 -0.3862095043714823 -0.001413054848939107 0.9224100075395584 0.3862095043714823 0.001413054848939107 -0.8828076860501695 -0.01967706819265308 -0.4693222799293541 0.8828076860501695 0.01967706819265308 0.4693222799293541 -0.6615076437520473 -0.7266804356183233 -0.1853191348651796 0.6615076437520473 0.7266804356183233 0.1853191348651796 0.8505881097345353 -0.07656512545695393 0.5202284586044782 -0.8505881097345353 0.07656512545695393 -0.5202284586044782 0.001031618759408731 -0.04511816235489764 0.9989811245406254 -0.001031618759408731 0.04511816235489764 -0.9989811245406254 0.005662748672241021 -0.3003435921545434 0.9538142690949744 -0.005662748672241021 0.3003435921545434 -0.9538142690949744 0.6341513258495346 -0.07317274126097195 0.7697388166512276 -0.6341513258495346 0.07317274126097195 -0.7697388166512276 0.9591405385262183 0.001327998537806206 0.282926958375337 -0.9591405385262183 -0.001327998537806206 -0.282926958375337 -0.4469774344299156 0.513470208436643 -0.7325022308215047 0.4469774344299156 -0.513470208436643 0.7325022308215047 -0.6952119327195182 -0.184416700421677 -0.6947451685402165 0.6952119327195182 0.184416700421677 0.6947451685402165 -0.7722612531751347 -0.3004697649391121 -0.5597593029167134 0.7722612531751347 0.3004697649391121 0.5597593029167134 -0.6908010466491781 -0.05284287290219791 -0.7211113261708225 0.6908010466491781 0.05284287290219791 0.7211113261708225 -0.5948201101151525 -0.6913376571153824 -0.4101722570540478 0.5948201101151525 0.6913376571153824 0.4101722570540478 0.9845608053297705 0.005789609544017289 0.1749471378151744 -0.9845608053297705 -0.005789609544017289 -0.1749471378151744 0.003174899820202929 -0.6896700314217814 0.724116819145786 -0.003174899820202929 0.6896700314217814 -0.724116819145786 0.004057326653133169 -0.789447614806144 0.6138045304307553 -0.004057326653133169 0.789447614806144 -0.6138045304307553 0.002328722508645825 -0.1360208178701879 0.9907032422261487 -0.002328722508645825 0.1360208178701879 -0.9907032422261487 0.9618278313538345 0.002838815778547771 0.2736405744003531 -0.9618278313538345 -0.002838815778547771 -0.2736405744003531 -0.03258879221096398 -0.992925889807309 -0.1141759518138322 -0.03507863000728281 -0.9993638928866502 -0.006426454018542583 0.03507863000728281 0.9993638928866502 0.006426454018542583 0.03258879221096398 0.992925889807309 0.1141759518138322 -0.4888251582665992 -0.1400022890829338 -0.8610745169247391 0.4888251582665992 0.1400022890829338 0.8610745169247391 -0.03524828916784289 -0.9772415642552044 -0.2091805038783054 0.03524828916784289 0.9772415642552044 0.2091805038783054 -0.001251671724717876 -0.04183185849651849 0.9991238806737735 0.001251671724717876 0.04183185849651849 -0.9991238806737735 0.01969778337526758 -0.2616666146433107 0.9649572944494539 -0.01969778337526758 0.2616666146433107 -0.9649572944494539 0.9891517491442294 0.006985270438849279 0.1467311254022397 -0.9891517491442294 -0.006985270438849279 -0.1467311254022397 -0.2711734956875576 0.1051523120706788 -0.9567695263242767 0.2711734956875576 -0.1051523120706788 0.9567695263242767 -0.385463035904434 -0.3423335113386137 -0.8568698938379807 0.385463035904434 0.3423335113386137 0.8568698938379807 -0.4541983832729183 -0.5664546984294635 -0.6876284630957713 0.4541983832729183 0.5664546984294635 0.6876284630957713 -0.1226959874954221 -0.105219651549913 -0.9868508091805155 0.1226959874954221 0.105219651549913 0.9868508091805155 0.00342297481961079 -0.9004525847666326 -0.4349407153055167 -0.00342297481961079 0.9004525847666326 0.4349407153055167 0.03166910955675777 -0.8815383232987408 0.4710490972876683 -0.03166910955675777 0.8815383232987408 -0.4710490972876683 -0.006026882282988452 -0.1563124458061748 0.9876892709633118 0.006026882282988452 0.1563124458061748 -0.9876892709633118 0.9890263553172155 0.006172431079916526 0.1476101947106241 -0.9890263553172155 -0.006172431079916526 -0.1476101947106241 -0.1337631166327554 0.5108285547050319 -0.8492123505500023 0.1337631166327554 -0.5108285547050319 0.8492123505500023 0.5488649620174 -0.8350332471836223 -0.03829790552515543 -0.5488649620174 0.8350332471836223 0.03829790552515543 0.03815920939920633 -0.2349458118875155 -0.9712591519334805 -0.03815920939920633 0.2349458118875155 0.9712591519334805 0.6394382168331546 -0.7392226720858357 -0.2113494923758103 -0.6394382168331546 0.7392226720858357 0.2113494923758103 0.007514645778823581 -0.921398025935363 0.3885475619550775 -0.007514645778823581 0.921398025935363 -0.3885475619550775 -0.00145059792117709 -0.04482942654834016 0.9989936027227692 0.00145059792117709 0.04482942654834016 -0.9989936027227692 -0.005615740926310768 -0.2129790948974011 0.9770406176769378 0.005615740926310768 0.2129790948974011 -0.9770406176769378 0.07717520035315093 -0.2197372978899333 0.9725016752512469 -0.07717520035315093 0.2197372978899333 -0.9725016752512469 0.9992120137663731 0.001956494929291655 0.03964244786262546 -0.9992120137663731 -0.001956494929291655 -0.03964244786262546 0.00051765045677645 0.2244249960784471 -0.9744912278585137 -0.00051765045677645 -0.2244249960784471 0.9744912278585137 -0.009337471849616528 -0.1906882854260363 -0.9816062293102749 0.009337471849616528 0.1906882854260363 0.9816062293102749 0.1248461329420074 -0.4911711065753458 -0.8620698273080766 -0.1248461329420074 0.4911711065753458 0.8620698273080766 0.02873404700195586 -0.7438727809243705 -0.6677032576996559 -0.02873404700195586 0.7438727809243705 0.6677032576996559 0.1375879447662982 -0.2442634976772494 -0.9598983806411293 -0.1375879447662982 0.2442634976772494 0.9598983806411293 0.6109216499255123 -0.7321214414072957 -0.3012854670972261 -0.6109216499255123 0.7321214414072957 0.3012854670972261 0.01095452666231913 -0.881965730537646 0.4711862142537712 -0.01095452666231913 0.881965730537646 -0.4711862142537712 0.002759994826984163 -0.9365555159321531 0.3505084136017472 -0.002759994826984163 0.9365555159321531 -0.3505084136017472 0.003101137519958726 -0.1523881820302551 0.9883158528140668 -0.003101137519958726 0.1523881820302551 -0.9883158528140668 -0.02477283165215043 -0.1906352669757192 0.9813483080930188 0.02477283165215043 0.1906352669757192 -0.9813483080930188 0.9991782585581174 0.001611336279199616 0.04049952123375587 -0.9991782585581174 -0.001611336279199616 -0.04049952123375587 -1.02530016735507e-007 0.2636233694851336 -0.9646256885762965 1.02530016735507e-007 -0.2636233694851336 0.9646256885762965 -0.0351849297132265 -0.1621484141288771 -0.9861388910881496 0.0351849297132265 0.1621484141288771 0.9861388910881496 0.5143809167910157 -0.8427232925643818 -0.1588386747951559 -0.5143809167910157 0.8427232925643818 0.1588386747951559 0.4862319033164969 -0.8180756479873211 -0.3071331476206068 -0.4862319033164969 0.8180756479873211 0.3071331476206068 0.001922941174372306 -0.9487328369278876 0.3160732611784843 -0.001922941174372306 0.9487328369278876 -0.3160732611784843 0.01058462495978283 -0.9372415837114693 0.3485199843287005 -0.01058462495978283 0.9372415837114693 -0.3485199843287005 -0.001655665923785194 -0.9967332534053051 0.08074701434991111 0.001655665923785194 0.9967332534053051 -0.08074701434991111 -0.02350702559942529 -0.05281540246072417 0.9983275780075294 0.02350702559942529 0.05281540246072417 -0.9983275780075294 -0.003607093997184266 -0.1873518799749329 0.9822862423666299 0.003607093997184266 0.1873518799749329 -0.9822862423666299 0.1091488696533336 -0.1854757037912854 0.9765681172127867 -0.1091488696533336 0.1854757037912854 -0.9765681172127867 0.9970360989926174 0.007952043551113014 -0.07652308350390141 -0.9970360989926174 -0.007952043551113014 0.07652308350390141 -2.171072517093037e-008 0.2472169324000076 -0.9689601582803751 2.171072517093037e-008 -0.2472169324000076 0.9689601582803751 -5.84617728037201e-008 -0.008881558328595218 -0.9999605581829977 5.84617728037201e-008 0.008881558328595218 0.9999605581829977 0.006159025862486746 -0.1559530855423624 -0.9877452614466149 -0.006159025862486746 0.1559530855423624 0.9877452614466149 -0.06704875134860357 -0.2521927092765705 -0.9653513880087066 0.06704875134860357 0.2521927092765705 0.9653513880087066 0.9554196933123231 -0.280007949107208 -0.09364164707949933 -0.9554196933123231 0.280007949107208 0.09364164707949933 0.5580519801572651 -0.6424666100918869 -0.5251805807144766 -0.5580519801572651 0.6424666100918869 0.5251805807144766 0.2213501855596587 -0.3636856818823712 -0.9048407706035683 -0.2213501855596587 0.3636856818823712 0.9048407706035683 0.4176489384104904 -0.7475845573333596 -0.5164171703974174 -0.4176489384104904 0.7475845573333596 0.5164171703974174 0.000543654461523819 -0.9965146488499961 0.08341617988852952 -0.000543654461523819 0.9965146488499961 -0.08341617988852952 0.01776409704298866 -0.9960145399706042 0.0874040789860125 -0.01776409704298866 0.9960145399706042 -0.0874040789860125 0.004151389166419962 -0.1530036796870666 0.9882168992535022 -0.004151389166419962 0.1530036796870666 -0.9882168992535022 -0.003468795617832963 -0.1849306395670129 0.9827454533124522 0.003468795617832963 0.1849306395670129 -0.9827454533124522 0.9968880601904836 0.008091956229407032 -0.07841374684349815 -0.9968880601904836 -0.008091956229407032 0.07841374684349815 -0.001043001060514516 0.2456279899096795 -0.9693636070751357 0.001043001060514516 -0.2456279899096795 0.9693636070751357 0.1337633194460965 0.5108296595896843 -0.8492116539792946 -0.1337633194460965 -0.5108296595896843 0.8492116539792946 -0.0005177218023518647 0.2244242470440256 -0.97449140032268 0.0005177218023518647 -0.2244242470440256 0.97449140032268 0.001565852237767074 -0.1619392335587709 -0.9867994896336172 -0.001565852237767074 0.1619392335587709 0.9867994896336172 0.00641168821081358 -0.1389593965367389 -0.9902773229598024 -0.00641168821081358 0.1389593965367389 0.9902773229598024 0.01706464709692535 -0.2680552022445862 -0.9632524105181733 -0.01706464709692535 0.2680552022445862 0.9632524105181733 0.003679893357355509 -0.9807448154713261 -0.1952589698605237 0.03520220708547025 -0.9955675555630086 0.08721265347762125 -0.03520220708547025 0.9955675555630086 -0.08721265347762125 -0.003679893357355509 0.9807448154713261 0.1952589698605237 0.01913276905228145 -0.9353993121726628 -0.3530751533814035 -0.01913276905228145 0.9353993121726628 0.3530751533814035 -0.001994112838259068 -0.8302319855317633 -0.5574144541667129 0.001994112838259068 0.8302319855317633 0.5574144541667129 -1.364018447764835e-010 -0.9964469582527105 0.08422267740294874 1.364018447764835e-010 0.9964469582527105 -0.08422267740294874 5.41970020038079e-019 -0.9802037300795121 -0.1979915340064092 -5.41970020038079e-019 0.9802037300795121 0.1979915340064092 -0.001766313770587881 -0.9804977542855673 -0.1965223498145266 0.001766313770587881 0.9804977542855673 0.1965223498145266 -0.02441358428433715 -0.04018937462395292 0.9988937836775875 0.02441358428433715 0.04018937462395292 -0.9988937836775875 0.1228143137468341 -0.1111288314674064 0.9861881296971603 -0.1228143137468341 0.1111288314674064 -0.9861881296971603 -0.007545313160508039 -0.2110414854128979 0.9774479831090899 0.007545313160508039 0.2110414854128979 -0.9774479831090899 0.9502869607144168 0.0007765411933242198 -0.311374516105496 -0.9502869607144168 -0.0007765411933242198 0.311374516105496 2.537875881418471e-010 -0.2697717871999729 -0.9629242871747148 -2.537875881418471e-010 0.2697717871999729 0.9629242871747148 0.001043003155523745 0.2456281415727075 -0.9693635686428263 -0.001043003155523745 -0.2456281415727075 0.9693635686428263 -0.001565851058636335 -0.1619405677985199 -0.9867992706784673 0.001565851058636335 0.1619405677985199 0.9867992706784673 -0.004611174646379514 -0.2494173833582457 -0.9683851020885783 0.004611174646379514 0.2494173833582457 0.9683851020885783 0.0866390342236773 -0.2729801568117363 -0.9581103859868279 -0.0866390342236773 0.2729801568117363 0.9581103859868279 0.04754809025452786 -0.4924470298485574 -0.869042635263933 -0.04754809025452786 0.4924470298485574 0.869042635263933 -0.0349422049523222 -0.5274602944483731 -0.8488608131451854 0.0349422049523222 0.5274602944483731 0.8488608131451854 -3.75971853423118e-018 -0.980203730079512 -0.1979915340064091 3.75971853423118e-018 0.980203730079512 0.1979915340064091 -1.339987576635483e-010 -0.9494894852049263 0.3137988487634778 1.339987576635483e-010 0.9494894852049263 -0.3137988487634778 -0.1392326954818779 -0.1282268657791879 0.9819226687480521 0.1392326954818779 0.1282268657791879 -0.9819226687480521 -0.3293614164730073 -0.1512838249825715 0.9320055051540935 0.3293614164730073 0.1512838249825715 -0.9320055051540935 -0.005222168794586046 -0.2092035074705264 0.9778581806249362 0.005222168794586046 0.2092035074705264 -0.9778581806249362 0.9472163939976568 -0.002797653202538041 -0.3205827133184727 -0.9472163939976568 0.002797653202538041 0.3205827133184727 0.0005327402026250499 -0.2855058741792734 -0.958376811070158 -0.0005327402026250499 0.2855058741792734 0.958376811070158 0.2711703080685523 0.1051545366733732 -0.956770185279106 -0.2711703080685523 -0.1051545366733732 0.956770185279106 0.004611184001270919 -0.2494172177081709 -0.9683851447088711 -0.004611184001270919 0.2494172177081709 0.9683851447088711 -0.00641169077383815 -0.138960756374078 -0.9902771321248233 0.00641169077383815 0.138960756374078 0.9902771321248233 -3.265894096845424e-008 -0.2425354887703818 -0.9701425342118091 3.265894096845424e-008 0.2425354887703818 0.9701425342118091 -0.0007672322097599292 -0.2614437891938212 -0.9652183983154864 0.0007672322097599292 0.2614437891938212 0.9652183983154864 -0.001596423311002504 -0.9348817568566014 -0.3549557044608905 0.001596423311002504 0.9348817568566014 0.3549557044608905 -0.001610422576868236 -0.8275150490717169 -0.561441225863365 0.001610422576868236 0.8275150490717169 0.561441225863365 -0.0005274653425915593 -0.5352782164951003 -0.8446756494217983 0.0005274653425915593 0.5352782164951003 0.8446756494217983 -0.0005436553252101591 -0.996514648972146 0.08341617842366074 0.0005436553252101591 0.996514648972146 -0.08341617842366074 -0.001922888543134675 -0.9487332505075247 0.3160720200857349 0.001922888543134675 0.9487332505075247 -0.3160720200857349 -7.396599460252093e-018 -0.9351479406582195 -0.3542574333485339 7.396599460252093e-018 0.9351479406582195 0.3542574333485339 -2.293528301419984e-018 -0.9351479406582196 -0.3542574333485339 2.293528301419984e-018 0.9351479406582196 0.3542574333485339 0.3415245336174704 -0.08847644274145106 0.9356991567898243 -0.3415245336174704 0.08847644274145106 -0.9356991567898243 0.4705842001746854 -0.03092247994198945 0.8818130815429019 -0.4705842001746854 0.03092247994198945 -0.8818130815429019 -0.01238196350419059 -0.2569854266098262 0.9663359547745009 0.01238196350419059 0.2569854266098262 -0.9663359547745009 0.9771876480280277 -0.001587207294657635 -0.2123717997156287 -0.9771876480280277 0.001587207294657635 0.2123717997156287 -0.000532740161792093 -0.2855057619596127 -0.9583768445010455 0.000532740161792093 0.2855057619596127 0.9583768445010455 0.4469772352428111 0.5134695466944448 -0.7325028162349238 -0.4469772352428111 -0.5134695466944448 0.7325028162349238 0.03518499885919119 -0.1621494165226706 -0.986138723799363 -0.03518499885919119 0.1621494165226706 0.986138723799363 0.0007672363316913843 -0.2614436288699845 -0.9652184417382965 -0.0007672363316913843 0.2614436288699845 0.9652184417382965 -0.006159121280631435 -0.1559541201625387 -0.9877450974970105 0.006159121280631435 0.1559541201625387 0.9877450974970105 -0.001969321035844544 -0.5365270886895071 -0.843880800159015 0.001969321035844544 0.5365270886895071 0.843880800159015 -8.837531091392778e-019 -0.9802037300795119 -0.1979915340064091 8.837531091392778e-019 0.9802037300795119 0.1979915340064091 -0.4190697444091525 -0.09024864078020417 0.9034576537714277 0.4190697444091525 0.09024864078020417 -0.9034576537714277 0.3680797257813653 -0.08538783222646242 0.9258651270980997 -0.3680797257813653 0.08538783222646242 -0.9258651270980997 0.4492746531252486 -0.01816073048124067 0.8932090874636104 -0.4492746531252486 0.01816073048124067 -0.8932090874636104 -0.4173701553929433 -0.1778880338757434 0.891155430209059 0.4173701553929433 0.1778880338757434 -0.891155430209059 -0.01543465121279611 -0.2576051549014911 0.9661269873624885 0.01543465121279611 0.2576051549014911 -0.9661269873624885 0.979039599996785 3.723198623051503e-018 -0.2036699821724724 -0.979039599996785 -3.723198623051503e-018 0.2036699821724724 0.9822516255750345 -0.00506035999292398 -0.1874996981649415 -0.9822516255750345 0.00506035999292398 0.1874996981649415 0.6908014509118093 -0.05284299212726929 -0.7211109301634363 -0.6908014509118093 0.05284299212726929 0.7211109301634363 0.009337283033500718 -0.1906891812700813 -0.9816060570779391 -0.009337283033500718 0.1906891812700813 0.9816060570779391 0.001969230634495697 -0.536527240943499 -0.8438807035690913 -0.001969230634495697 0.536527240943499 0.8438807035690913 0.0005274653854330695 -0.5352783480696075 -0.8446755660418618 -0.0005274653854330695 0.5352783480696075 0.8446755660418618 -0.08664067818260744 -0.2729798777103628 -0.9581103168473312 0.08664067818260744 0.2729798777103628 0.9581103168473312 -8.682525665784773e-008 -0.541578389631433 -0.8406502530090716 8.682525665784773e-008 0.541578389631433 0.8406502530090716 -3.921503028202469e-008 -0.8274109878084094 -0.5615968814495951 3.921503028202469e-008 0.8274109878084094 0.5615968814495951 0.001654855532108666 -0.9967332357435745 0.08074724897673978 -0.001654855532108666 0.9967332357435745 -0.08074724897673978 -0.007507578153535655 -0.9214029086402269 0.3885361195816913 0.007507578153535655 0.9214029086402269 -0.3885361195816913 1.166034280447703e-017 -0.8274111517833948 -0.5615966398621667 -1.166034280447703e-017 0.8274111517833948 0.5615966398621667 6.519206129915245e-018 -0.9351479406582196 -0.354257433348534 -6.519206129915245e-018 0.9351479406582196 0.354257433348534 0.8765287252543467 -0.02677196831588556 0.480604468889422 -0.8765287252543467 0.02677196831588556 -0.480604468889422 0.8571758297539573 -0.04022835732976661 0.5134503638640867 -0.8571758297539573 0.04022835732976661 -0.5134503638640867 0.2476665877536164 -0.02438400563172669 0.9685384254534418 -0.2476665877536164 0.02438400563172669 -0.9685384254534418 0.884740255987156 -0.01757400060212124 0.4657529752332437 -0.884740255987156 0.01757400060212124 -0.4657529752332437 -0.008331180739317903 -0.3314190500550238 0.9434468743326858 0.008331180739317903 0.3314190500550238 -0.9434468743326858 0.9432798258574218 0.01059364971511918 -0.3318296923364535 -0.9432798258574218 -0.01059364971511918 0.3318296923364535 0.9999689460896092 1.894030449980373e-005 -0.007880767583261984 -0.9999689460896092 -1.894030449980373e-005 0.007880767583261984 0.99991876650967 -0.0001743193360556289 -0.01274480264849827 -0.99991876650967 0.0001743193360556289 0.01274480264849827 0.963940371883855 -0.0007430628977369711 -0.2661172811185801 -0.963940371883855 0.0007430628977369711 0.2661172811185801 0.8891107244168913 -0.01775462431207951 -0.457347671954726 -0.8891107244168913 0.01775462431207951 0.457347671954726 0.1227000911442241 -0.1052200392904613 -0.9868502576201279 -0.1227000911442241 0.1052200392904613 0.9868502576201279 0.0670495281157894 -0.2521921100028625 -0.9653514906145605 -0.0670495281157894 0.2521921100028625 0.9653514906145605 -0.0170646773798094 -0.2680546801232958 -0.9632525552781683 0.0170646773798094 0.2680546801232958 0.9632525552781683 0.03494104891599838 -0.5274582057490552 -0.8488621585915097 -0.03494104891599838 0.5274582057490552 0.8488621585915097 0.001765561878675717 -0.980497605028382 -0.1965231012498518 -0.001765561878675717 0.980497605028382 0.1965231012498518 -0.01094685603328983 -0.8819912528699143 0.471138616761506 0.01094685603328983 0.8819912528699143 -0.471138616761506 0.3332198513983277 -0.08667457196835998 0.9388567777931722 -0.3332198513983277 0.08667457196835998 -0.9388567777931722 -0.5263482937354177 -0.1131636951629167 0.8427048426221894 0.5263482937354177 0.1131636951629167 -0.8427048426221894 0.8512036730938258 -0.0253588199466456 0.5242225073024747 -0.8512036730938258 0.0253588199466456 -0.5242225073024747 0.6083282053285112 -0.01773846461560139 0.793487329120556 -0.6083282053285112 0.01773846461560139 -0.793487329120556 0.8955201128425246 -0.0002645525043728441 0.4450209629966709 -0.8955201128425246 0.0002645525043728441 -0.4450209629966709 -0.5028522588127636 -0.2156046685228307 0.8370509140536563 0.5028522588127636 0.2156046685228307 -0.8370509140536563 -0.00501692700507513 -0.3337218280837456 0.9426582476719061 0.00501692700507513 0.3337218280837456 -0.9426582476719061 0.979039599996785 1.8305164934997e-018 -0.2036699821724724 -0.979039599996785 -1.8305164934997e-018 0.2036699821724724 0.9999689462689712 -1.671736728866068e-018 -0.007880767584675541 -0.9999689462689712 1.671736728866068e-018 0.007880767584675541 0.9989411528411329 -0.03474272973627807 -0.03015818116034828 -0.9989411528411329 0.03474272973627807 0.03015818116034828 0.9852263379833788 -0.004009932625759784 -0.1712103483560439 -0.9852263379833788 0.004009932625759784 0.1712103483560439 0.9790951786464889 0.000824466295486361 -0.2034009621573309 -0.9790951786464889 -0.000824466295486361 0.2034009621573309 0.9015877380131129 -0.01219416928485135 -0.4324243898068783 -0.9015877380131129 0.01219416928485135 0.4324243898068783 0.882805259821104 -0.01967849854219704 -0.4693267837310353 -0.882805259821104 0.01967849854219704 0.4693267837310353 0.4888256144894809 -0.1400032866549034 -0.8610740957343952 -0.4888256144894809 0.1400032866549034 0.8610740957343952 -0.1375895520841367 -0.2442624196218493 -0.9598984245834381 0.1375895520841367 0.2442624196218493 0.9598984245834381 0.001610421043702095 -0.8275152308916418 -0.561440957881071 -0.001610421043702095 0.8275152308916418 0.561440957881071 3.826848737184621e-018 -0.8274111517833948 -0.5615966398621665 -3.826848737184621e-018 0.8274111517833948 0.5615966398621665 0.001974657072815 -0.8302327332466417 -0.5574134097555021 -0.001974657072815 0.8302327332466417 0.5574134097555021 -0.04754584098955737 -0.4924427086165555 -0.8690452069570294 0.04754584098955737 0.4924427086165555 0.8690452069570294 -0.01775173400364818 -0.9960150402472624 0.08740088981874049 0.01775173400364818 0.9960150402472624 -0.08740088981874049 -0.002760499121996385 -0.9365546305067288 0.350510775470601 0.002760499121996385 0.9365546305067288 -0.350510775470601 -0.03166756980589452 -0.8815390907118107 0.4710477646370724 0.03166756980589452 0.8815390907118107 -0.4710477646370724 0.001596424580051864 -0.9348817574377485 -0.3549557029245579 -0.001596424580051864 0.9348817574377485 0.3549557029245579 0.956558491032075 -0.0133283327265745 0.2912356584986964 -0.956558491032075 0.0133283327265745 -0.2912356584986964 0.9558326378297177 -0.007543621672339141 0.2938146732747506 -0.9558326378297177 0.007543621672339141 -0.2938146732747506 0.9578180647728783 -0.01408003476693324 0.2870301507084225 -0.9578180647728783 0.01408003476693324 -0.2870301507084225 0.9072313656561679 -0.007386427186210549 0.4205671050653715 -0.9072313656561679 0.007386427186210549 -0.4205671050653715 0.5575043664877837 0.02727866862154784 0.829725711054738 -0.5575043664877837 -0.02727866862154784 -0.829725711054738 0.955061983574575 -0.008595504674960005 0.2962814959290931 -0.955061983574575 0.008595504674960005 -0.2962814959290931 -0.004056581686613388 -0.7894483875484434 0.6138035414871621 0.004056581686613388 0.7894483875484434 -0.6138035414871621 0.8994373316751744 4.749529601802568e-018 -0.4370497527616764 -0.8994373316751744 -4.749529601802568e-018 0.4370497527616764 0.9999689462689712 2.170208093761268e-019 -0.007880767584675538 -0.9999689462689712 -2.170208093761268e-019 0.007880767584675538 0.997407803994539 -0.06127178855395159 -0.03772850988564364 -0.997407803994539 0.06127178855395159 0.03772850988564364 0.9663855875540297 -0.001291832929411919 -0.2570938103796652 -0.9663855875540297 0.001291832929411919 0.2570938103796652 0.9856181589139861 0.002472889974129722 -0.1689696115701884 -0.9856181589139861 -0.002472889974129722 0.1689696115701884 0.9519198641335414 -0.005572174531889075 -0.3062964628247709 -0.9519198641335414 0.005572174531889075 0.3062964628247709 0.9603614077941031 -0.004049466913913244 -0.2787284847973766 -0.9603614077941031 0.004049466913913244 0.2787284847973766 -0.03815805929900767 -0.2349450670776329 -0.9712593772862224 0.03815805929900767 0.2349450670776329 0.9712593772862224 -0.2213583936854587 -0.3636822296313745 -0.9048401501897149 0.2213583936854587 0.3636822296313745 0.9048401501897149 -0.4176656747506726 -0.7475790938819354 -0.5164115437572342 0.4176656747506726 0.7475790938819354 0.5164115437572342 -0.003678226109313476 -0.9807441849824888 -0.1952621680605918 0.003678226109313476 0.9807441849824888 0.1952621680605918 -0.003174899851690268 -0.6896701426261755 0.7241167132313149 0.003174899851690268 0.6896701426261755 -0.7241167132313149 0.2014731996283661 -0.101518830700172 0.9742189060189594 -0.2014731996283661 0.101518830700172 -0.9742189060189594 0.8471832164661007 -0.01871259358130396 0.530971220104831 -0.8471832164661007 0.01871259358130396 -0.530971220104831 -0.6592700716512461 -0.1055123068662708 0.7444663361930605 0.6592700716512461 0.1055123068662708 -0.7444663361930605 0.9733834031071185 0.007735325110119988 0.2290522108626014 -0.9733834031071185 -0.007735325110119988 -0.2290522108626014 0.9164151976740033 -0.009103539561407248 0.4001253691526837 -0.9164151976740033 0.009103539561407248 -0.4001253691526837 0.1422539534903038 0.08650680782154999 0.9860427906114946 -0.1422539534903038 -0.08650680782154999 -0.9860427906114946 0.9588345703509946 0.0008323912160688985 0.2839640361466345 -0.9588345703509946 -0.0008323912160688985 -0.2839640361466345 0.9598790634568707 -0.003077495641744351 0.2803974189569793 -0.9598790634568707 0.003077495641744351 -0.2803974189569793 -0.5669650605659093 -0.2605368662497732 0.7814545165409452 0.5669650605659093 0.2605368662497732 -0.7814545165409452 0.9781135818534934 1.34430433349115e-018 -0.2080716727325698 -0.9781135818534934 -1.34430433349115e-018 0.2080716727325698 0.9663115335897946 0.004882744349163951 -0.2573289312513458 -0.9663115335897946 -0.004882744349163951 0.2573289312513458 0.9999689462689712 -2.170208093761268e-019 -0.007880767584675541 0.9999689462689712 -2.170208093761268e-019 -0.007880767584675541 -0.9999689462689712 2.170208093761268e-019 0.007880767584675541 -0.9999689462689712 2.170208093761268e-019 0.007880767584675541 0.9845241791459773 -0.0004086970412225588 -0.1752483199453504 -0.9845241791459773 0.0004086970412225588 0.1752483199453504 0.9509242474571021 -0.008522673049577493 -0.3093063847421095 -0.9509242474571021 0.008522673049577493 0.3093063847421095 0.9371635595269554 -0.05885583532215234 -0.3438901762820491 -0.9371635595269554 0.05885583532215234 0.3438901762820491 0.695209612036329 -0.184417268281811 -0.694747340039364 -0.695209612036329 0.184417268281811 0.694747340039364 0.3854694816538004 -0.3423323407385548 -0.8568674618621087 -0.3854694816538004 0.3423323407385548 0.8568674618621087 -0.1248496818334184 -0.4911743379772181 -0.862067472219394 0.1248496818334184 0.4911743379772181 0.862067472219394 -0.01914711607387571 -0.9353999608355318 -0.3530726571329746 0.01914711607387571 0.9353999608355318 0.3530726571329746 -0.4862404515351986 -0.8180727855420281 -0.3071272388544412 0.4862404515351986 0.8180727855420281 0.3071272388544412 -0.5580514886342289 -0.6424719998950559 -0.5251745094575406 0.5580514886342289 0.6424719998950559 0.5251745094575406 -0.03517707448840293 -0.9955686973253226 0.08720976055693352 0.03517707448840293 0.9955686973253226 -0.08720976055693352 -0.01058259043784989 -0.9372406732639375 0.3485224944811823 0.01058259043784989 0.9372406732639375 -0.3485224944811823 0.9842462036749082 -0.01640469791371886 0.1760406101951788 -0.9842462036749082 0.01640469791371886 -0.1760406101951788 0.9951374926014686 -0.01257896904630131 0.09768899813486875 -0.9951374926014686 0.01257896904630131 -0.09768899813486875 0.9748192624683028 -0.01264279127167541 0.222637744665219 -0.9748192624683028 0.01264279127167541 -0.222637744665219 0.9978101430840221 -0.0002980269199170782 0.06614249419698789 -0.9978101430840221 0.0002980269199170782 -0.06614249419698789 0.3283493187707493 0.3306983436379725 0.8847741691402875 -0.3283493187707493 -0.3306983436379725 -0.8847741691402875 0.9765438230670186 0.0004985906997081331 0.2153181669923967 -0.9765438230670186 -0.0004985906997081331 -0.2153181669923967 0.9999689462689712 3.811622599330838e-019 -0.007880767584675538 -0.9999689462689712 -3.811622599330838e-019 0.007880767584675538 0.9971892143428791 0.02017313827773756 -0.07215757264666442 -0.9971892143428791 -0.02017313827773756 0.07215757264666442 0.9837731791909455 -0.003803803578565293 -0.1793763166721725 -0.9837731791909455 0.003803803578565293 0.1793763166721725 0.9898167070083889 -0.0151019980822362 -0.1415443965015694 -0.9898167070083889 0.0151019980822362 0.1415443965015694 0.9870725569722861 -0.04346651375319539 -0.1542673959537012 -0.9870725569722861 0.04346651375319539 0.1542673959537012 -0.6109158080307132 -0.7321255433242386 -0.3012873450883211 0.6109158080307132 0.7321255433242386 0.3012873450883211 -0.5143786487068958 -0.8427253558269834 -0.1588350729554152 0.5143786487068958 0.8427253558269834 0.1588350729554152 -0.4426563640097903 -0.1319682946309932 0.8869271179831065 0.4426563640097903 0.1319682946309932 -0.8869271179831065 0.8682017986762796 -0.02384011395508521 0.4956382609745554 -0.8682017986762796 0.02384011395508521 -0.4956382609745554 0.9765681864789892 -0.04566472509215266 0.2103076556842293 -0.9765681864789892 0.04566472509215266 -0.2103076556842293 -0.7144594929188609 -0.1454395098621124 0.684393879245857 0.7144594929188609 0.1454395098621124 -0.684393879245857 0.9979815238056222 0.0007785418897066691 0.06350017334727653 -0.9979815238056222 -0.0007785418897066691 -0.06350017334727653 0.9607774046779956 0.002014716084005299 0.2773133959608085 -0.9607774046779956 -0.002014716084005299 -0.2773133959608085 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 0.9785895810056572 0.003221874091712548 0.2057961405724349 -0.9785895810056572 -0.003221874091712548 -0.2057961405724349 -0.9845592136282013 0.005778961781360174 0.1749564473248911 0.9845592136282013 -0.005778961781360174 -0.1749564473248911 0.9999689462689712 -3.81162259933084e-019 -0.007880767584675541 0.9999689462689712 -3.81162259933084e-019 -0.007880767584675541 -0.9999689462689712 3.81162259933084e-019 0.007880767584675541 -0.9999689462689712 3.81162259933084e-019 0.007880767584675541 0.9999574977946593 -0.001434794235076954 -0.009107358000382792 -0.9999574977946593 0.001434794235076954 0.009107358000382792 0.990394137619684 -0.004947048548015723 -0.1381845826394031 -0.990394137619684 0.004947048548015723 0.1381845826394031 0.9878664051229494 -0.009852100486114623 -0.1549932312892155 -0.9878664051229494 0.009852100486114623 0.1549932312892155 0.9238623772605025 -0.2987503600454748 -0.2392206727172045 -0.9238623772605025 0.2987503600454748 0.2392206727172045 0.7722566517449084 -0.3004713563895385 -0.559764796879166 -0.7722566517449084 0.3004713563895385 0.559764796879166 0.4541969113379238 -0.5664532909165588 -0.6876305948260959 -0.4541969113379238 0.5664532909165588 0.6876305948260959 -0.02872876545232268 -0.7438757857110302 -0.6677001373883212 0.02872876545232268 0.7438757857110302 0.6677001373883212 -0.6394400882197744 -0.7392207940664073 -0.2113503990942941 0.6394400882197744 0.7392207940664073 0.2113503990942941 -0.9554201128959187 -0.2800080264120052 -0.09363713482803654 -0.5488772901889137 -0.8350252574485036 -0.03829542711519779 0.5488772901889137 0.8350252574485036 0.03829542711519779 0.9554201128959187 0.2800080264120052 0.09363713482803654 0.6724831580142987 -0.05649631950853753 0.7379529578971176 -0.6724831580142987 0.05649631950853753 -0.7379529578971176 0.8879735761679941 -0.2040308333966141 0.412158157811909 0.8856056710704745 -0.2071367107747284 0.415688559401436 0.8919673020626285 -0.06944885009471929 0.4467339132768373 -0.8919673020626285 0.06944885009471929 -0.4467339132768373 -0.8856056710704745 0.2071367107747284 -0.415688559401436 -0.8879735761679941 0.2040308333966141 -0.412158157811909 0.8949774379466016 -0.3243624985815883 0.3062749664606072 0.8971127254100035 -0.3219710774562727 0.3025283179953283 -0.8971127254100035 0.3219710774562727 -0.3025283179953283 -0.8949774379466016 0.3243624985815883 -0.3062749664606072 1 0 0 -1 -0 -0 0.8950565235662222 -0.05501086320564266 0.4425467484355961 0.8963859747980307 0.01799744263674584 0.4429088802947186 -0.8963859747980307 -0.01799744263674584 -0.4429088802947186 -0.8950565235662222 0.05501086320564266 -0.4425467484355961 0.9902347700892529 0.004108876318823506 0.1393492635132362 -0.9902347700892529 -0.004108876318823506 -0.1393492635132362 0.9867767988482539 0.00451540126637684 0.1620220985118897 -0.9867767988482539 -0.00451540126637684 -0.1620220985118897 0.896904250736173 0.02001407858138542 0.441771662366343 0.9006047635162565 0.0901014076929148 0.4251973615435342 -0.9006047635162565 -0.0901014076929148 -0.4251973615435342 -0.896904250736173 -0.02001407858138542 -0.441771662366343 -0.8505869295512368 -0.07656434047780775 0.5202305037613593 0.8505869295512368 0.07656434047780775 -0.5202305037613593 0.9996823061849715 0.002893873138954182 0.02503821477167236 -0.9996823061849715 -0.002893873138954182 -0.02503821477167236 0.8645545832379741 0.4903277633869822 0.110109295947855 0.8613428925296286 0.4933706707004632 0.1211354728445291 0.8544312098838555 0.5186707182013584 0.03046298831202012 -0.8544312098838555 -0.5186707182013584 -0.03046298831202012 -0.8613428925296286 -0.4933706707004632 -0.1211354728445291 -0.8645545832379741 -0.4903277633869822 -0.110109295947855 0.9999426356173807 -0.005924578645249221 -0.008923275320326694 -0.9999426356173807 0.005924578645249221 0.008923275320326694 0.9978370846623687 -0.0512747743709475 -0.04113453519505445 -0.9978370846623687 0.0512747743709475 0.04113453519505445 0.9645386096877072 -0.258059021394777 -0.0554149068254659 -0.9645386096877072 0.258059021394777 0.0554149068254659 -0.003424724626311721 -0.9004485623674271 -0.434949028958185 0.003424724626311721 0.9004485623674271 0.434949028958185 0.8365363380127288 -0.08000022603088255 0.5420395917451615 -0.8365363380127288 0.08000022603088255 -0.5420395917451615 0.9868338077903163 -0.03790197884639443 0.1572338252463278 -0.9868338077903163 0.03790197884639443 -0.1572338252463278 0.9964827847970811 -0.05726715295511971 0.0611762437182037 -0.9964827847970811 0.05726715295511971 -0.0611762437182037 0.873378472098167 -0.4356367472142845 0.2177858327624385 -0.873378472098167 0.4356367472142845 -0.2177858327624385 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 0.8966813609712228 0.07771580569472812 0.4358013199062331 0.9061208994149789 0.1894983809113076 0.3782000519240881 -0.9061208994149789 -0.1894983809113076 -0.3782000519240881 -0.8966813609712228 -0.07771580569472812 -0.4358013199062331 1 0 0 -1 -0 -0 0.8507754953433536 0.4522042923304711 0.2677542427696876 -0.8507754953433536 -0.4522042923304711 -0.2677542427696876 0.9999943528527163 0.0002116978693424881 -0.003354019482552267 -0.9999943528527163 -0.0002116978693424881 0.003354019482552267 0.9992193119948976 0.0003250103045750034 -0.03950520098348688 -0.9992193119948976 -0.0003250103045750034 0.03950520098348688 0.6615091298782606 -0.7266790865525058 -0.1853191200468062 -0.6615091298782606 0.7266790865525058 0.1853191200468062 0.594824018870023 -0.6913328274830446 -0.4101747288895473 -0.594824018870023 0.6913328274830446 0.4101747288895473 0.03524428480282053 -0.9772404059165154 -0.2091865899929102 -0.03524428480282053 0.9772404059165154 0.2091865899929102 -0.6341573082842825 -0.07317161945134183 0.7697339946088529 0.6341573082842825 0.07317161945134183 -0.7697339946088529 0.625589589694931 -0.09499442026280379 0.7743472899056741 -0.625589589694931 0.09499442026280379 -0.7743472899056741 0.8574560540041059 -0.4841070563899792 0.1743831224778856 -0.8574560540041059 0.4841070563899792 -0.1743831224778856 0.9982059251327112 0.003221613185180923 0.05978755922792781 -0.9982059251327112 -0.003221613185180923 -0.05978755922792781 0.9020852017429797 0.1863446310950731 0.3892530889516085 -0.9020852017429797 -0.1863446310950731 -0.3892530889516085 0.8572964449490628 0.4462177410166214 0.2567733106841953 -0.8572964449490628 -0.4462177410166214 -0.2567733106841953 0.8751946504592248 -0.478949811212292 0.06812783680159866 0.8682201907639653 -0.4898576719033636 0.07895037445889835 -0.8682201907639653 0.4898576719033636 -0.07895037445889835 -0.8751946504592248 0.478949811212292 -0.06812783680159866 0.9981408261253131 -0.06091922746013796 0.001933635833697217 -0.9981408261253131 0.06091922746013796 -0.001933635833697217 0.9763108033078525 -0.2123747784436454 -0.04140252196893392 -0.9763108033078525 0.2123747784436454 0.04140252196893392 0.9224089668347014 -0.3862119958074538 -0.001411452217341778 -0.9224089668347014 0.3862119958074538 0.001411452217341778 0.0350836217122919 -0.9993641268128589 -0.006362509498693735 -0.0350836217122919 0.9993641268128589 0.006362509498693735 0.9981387801496015 -0.05180774196831358 0.03217038130968378 -0.9981387801496015 0.05180774196831358 -0.03217038130968378 0.8977399542408993 0.3250712691215336 0.2973073234067127 -0.8977399542408993 -0.3250712691215336 -0.2973073234067127 0.8876171555381039 0.3295593733851059 0.3217551935998261 -0.8876171555381039 -0.3295593733851059 -0.3217551935998261 0.03260687053562721 -0.9929270011109181 -0.114161124988988 -0.03260687053562721 0.9929270011109181 0.114161124988988</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1024\" source=\"#ID1486\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1484\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1482\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1483\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"748\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 6 1 0 0 2 8 1 10 2 12 1 6 6 0 14 16 0 8 1 18 19 12 18 1 6 14 22 14 0 16 16 8 24 18 26 27 30 18 12 32 6 22 14 16 34 16 24 36 18 38 39 30 38 18 42 30 12 32 22 44 46 14 34 34 16 48 48 16 36 38 50 51 54 42 12 56 32 44 58 46 34 34 48 60 62 42 54 56 44 64 66 58 34 66 34 60 68 62 54 70 71 72 76 56 64 66 60 78 80 62 68 82 71 70 84 76 64 86 82 70 88 80 68 90 76 84 92 82 86 94 92 86 96 88 68 98 90 84 100 92 94 102 88 96 104 90 98 106 100 94 108 102 96 104 98 110 112 100 106 114 102 108 116 108 96 118 104 110 120 112 106 122 114 108 124 108 116 118 110 126 128 112 120 122 130 114 132 122 108 134 108 124 136 118 126 138 128 120 140 130 122 134 132 108 132 140 122 142 134 124 136 126 144 146 128 138 140 148 130 150 132 134 152 140 132 150 134 142 142 124 154 136 144 156 158 146 138 160 148 140 150 152 132 160 140 152 150 142 162 142 154 162 156 144 164 158 166 146 160 168 148 170 152 150 172 160 152 150 162 174 154 176 162 178 156 164 180 166 158 182 168 160 170 150 174 170 172 152 182 160 172 176 154 184 178 164 186 180 188 166 182 190 168 170 174 192 194 172 170 196 182 172 198 176 184 200 201 186 201 202 186 178 186 202 206 188 180 182 208 190 194 170 192 192 174 210 194 196 172 196 208 182 212 213 214 214 213 186 200 186 213 206 218 188 208 220 190 194 192 222 224 192 210 174 226 210 228 196 194 230 208 196 186 232 214 218 234 188 236 237 190 220 236 190 240 220 208 228 194 222 222 192 224 224 210 242 210 226 244 228 230 196 230 240 208 214 232 246 218 248 234 236 250 237 220 252 236 240 252 220 228 222 254 222 224 256 224 242 258 242 210 244 226 260 244 262 230 228 264 240 230 246 232 266 248 268 234 250 270 237 236 272 250 252 274 236 276 252 240 262 228 254 254 222 256 256 224 258 258 242 278 242 244 280 244 260 282 262 264 230 264 276 240 246 266 284 250 286 270 274 272 236 272 288 250 252 290 274 276 290 252 262 254 292 254 256 294 256 258 296 298 258 278 278 242 280 244 282 280 260 300 282 264 262 302 304 276 264 266 306 284 250 308 286 274 310 272 288 308 250 272 312 288 290 310 274 314 290 276 302 262 292 294 292 254 294 256 296 296 258 298 278 280 316 280 282 318 282 300 320 304 264 302 314 276 304 284 306 322 308 324 286 310 312 272 288 326 308 312 328 288 330 310 290 314 330 290 302 292 332 294 334 292 336 294 296 338 296 298 316 280 340 340 280 318 318 282 320 320 300 342 304 302 344 346 314 304 306 348 322 308 350 324 310 352 312 328 326 288 326 350 308 312 354 328 330 352 310 356 302 332 334 332 292 334 294 336 336 296 338 318 320 358 320 342 360 346 304 344 362 322 348 350 364 324 352 354 312 328 366 326 326 368 350 354 370 328 356 332 372 334 374 332 334 336 376 336 338 378 320 360 358 360 342 380 346 344 382 384 362 348 350 368 364 352 386 354 366 388 326 370 366 328 326 388 368 354 390 370 356 372 392 374 372 332 374 334 376 376 336 378 358 360 394 360 380 396 398 356 392 400 362 384 368 402 364 386 390 354 366 404 388 370 406 366 388 408 368 390 410 370 412 392 372 374 412 372 414 374 376 376 378 416 358 394 418 360 396 394 400 384 420 368 408 402 390 422 423 404 426 388 366 406 404 370 410 406 388 426 408 428 410 390 414 376 416 418 394 430 394 396 432 434 400 420 402 408 436 428 390 423 404 438 426 404 406 440 410 440 406 408 426 442 444 410 428 446 414 416 448 418 430 430 394 432 434 420 450 402 436 452 436 408 442 454 428 423 426 438 456 404 440 438 444 440 410 426 456 442 444 428 458 446 460 414 448 430 462 464 418 448 430 432 466 468 434 450 452 436 470 436 442 472 458 428 454 456 438 474 438 440 476 476 440 444 442 456 478 480 444 458 482 460 446 460 484 414 448 462 486 462 430 466 488 464 448 490 468 450 452 470 492 436 494 470 436 472 494 442 478 472 458 454 496 438 476 474 456 474 478 476 444 480 480 458 498 500 460 482 484 502 414 460 504 484 486 462 506 508 448 486 462 466 510 488 448 508 512 468 490 514 452 492 470 516 492 494 518 470 472 520 494 472 478 520 454 522 496 458 496 498 474 476 524 478 474 526 524 476 480 480 498 528 500 530 460 532 502 484 530 504 460 504 532 484 534 486 506 506 462 510 536 508 486 538 512 490 540 452 514 514 492 542 492 516 544 470 546 516 470 518 548 494 550 518 494 520 550 478 526 520 552 496 553 556 498 496 474 524 526 524 480 528 558 528 498 560 530 500 532 553 502 530 562 504 504 564 532 534 506 566 536 486 534 506 510 568 570 508 536 572 512 538 574 540 514 514 542 576 492 544 542 516 578 544 546 580 516 470 548 546 518 582 548 518 550 582 520 526 550 556 496 552 552 553 532 558 498 556 526 524 584 524 528 584 558 586 528 560 588 530 590 560 500 562 564 504 588 562 530 564 552 532 592 534 566 566 506 568 594 536 534 596 570 536 598 572 538 600 540 574 574 514 576 542 544 602 578 516 604 578 606 544 516 580 608 610 580 546 548 610 546 582 610 548 550 584 582 526 584 550 612 556 552 614 558 556 586 584 528 616 586 558 618 588 560 560 590 620 562 622 564 588 624 562 564 612 552 594 534 592 592 566 626 566 568 628 596 536 594 630 570 596 632 572 598 574 576 634 542 602 636 544 638 602 516 608 604 578 604 640 544 606 642 606 578 640 580 644 608 610 616 580 582 586 610 584 586 582 612 614 556 614 616 558 610 586 616 646 588 618 618 560 620 624 622 562 622 612 564 646 624 588 648 594 592 626 566 628 592 626 650 628 568 652 654 596 594 630 596 656 658 572 632 632 598 660 636 602 662 638 664 602 544 642 638 608 666 604 604 668 640 606 670 642 606 640 670 580 616 644 608 644 672 674 614 612 644 616 614 676 646 618 618 620 678 624 680 622 622 674 612 682 624 646 648 592 650 654 594 648 684 626 628 686 650 626 568 688 652 690 628 652 656 596 654 692 630 656 658 694 572 696 658 632 632 660 698 660 598 700 662 702 636 602 704 662 638 706 664 664 704 602 642 708 638 604 666 668 608 672 666 640 668 710 642 670 708 670 640 710 672 644 674 674 644 614 712 646 676 676 618 678 678 620 714 680 674 622 682 680 624 712 682 646 648 650 716 718 654 648 686 626 684 684 628 690 720 650 686 652 688 722 724 690 652 726 656 654 728 692 656 730 694 658 732 658 696 696 632 698 698 660 734 660 700 736 598 738 700 636 702 740 662 742 702 704 744 662 638 708 706 664 706 746 664 746 704 668 666 748 666 672 750 710 668 752 708 670 754 670 710 754 680 672 674 712 676 756 758 676 678 678 714 760 750 680 682 762 682 712 718 648 716 720 716 650 726 654 718 764 686 684 766 684 690 768 720 686 770 652 722 722 688 772 774 690 724 724 652 770 728 656 726 776 692 728 730 778 694 780 730 658 734 660 782 660 736 782 736 700 784 738 786 700 702 788 740 742 790 702 744 742 662 704 792 744 706 708 794 706 794 746 704 746 792 668 748 752 748 666 750 750 672 680 710 752 796 708 754 794 754 710 796 798 712 756 756 676 758 758 678 800 678 760 800 762 750 682 762 712 798 802 718 716 804 716 720 806 726 718 766 764 684 768 686 764 774 766 690 808 720 768 770 722 810 810 722 772 688 812 772 774 724 814 724 770 816 818 728 726 776 728 800 820 778 730 778 822 694 824 730 825 700 828 784 786 828 700 740 788 830 702 790 788 742 832 790 744 834 742 744 792 836 746 794 838 746 838 792 752 748 840 748 750 762 796 752 842 794 754 844 796 844 754 846 798 756 848 756 758 848 758 800 800 760 776 840 762 798 806 718 802 802 716 804 808 804 720 818 726 806 850 764 766 768 764 852 854 766 774 856 808 768 816 770 810 812 858 772 814 724 816 860 774 814 800 728 818 862 820 730 822 864 694 784 828 866 788 868 830 788 790 868 832 870 790 834 832 742 744 836 834 792 838 836 794 844 838 748 762 840 842 752 840 842 872 796 872 844 796 874 798 846 846 756 848 874 840 798 876 806 802 802 804 878 880 804 808 882 818 806 850 766 854 852 764 850 856 768 852 854 774 860 884 808 856 816 810 886 888 858 812 890 814 816 860 814 890 892 818 882 894 820 895 822 898 864 830 868 900 790 902 868 790 870 902 832 904 870 834 906 832 836 908 834 838 910 836 838 844 910 842 840 874 912 872 842 910 844 872 914 915 874 882 806 876 918 802 878 880 878 804 884 880 808 920 921 922 926 927 921 930 856 852 932 922 933 884 856 930 816 886 936 938 890 816 940 933 941 944 892 882 898 946 864 948 949 950 868 954 900 868 902 954 870 956 902 904 958 870 906 904 832 834 908 906 836 910 908 874 912 842 960 872 912 960 910 872 915 912 874 944 882 876 962 918 878 880 964 878 966 880 884 920 922 932 926 921 920 968 927 926 970 930 852 940 932 933 972 884 930 938 816 936 974 941 975 974 940 941 898 978 946 948 980 949 900 954 982 902 984 954 956 984 902 958 956 870 986 958 904 988 904 906 908 988 906 908 910 960 990 960 912 990 912 915 992 944 876 964 962 878 994 918 962 966 964 880 966 884 972 996 968 926 954 930 970 984 972 930 998 938 936 1000 974 975 980 1002 949 978 998 946 1004 1005 996 982 954 970 954 984 930 956 1008 984 958 1010 956 986 1012 958 988 986 904 908 960 988 988 960 990 990 915 1014 1016 964 966 1008 966 972 1005 968 996 1008 972 984 1000 975 1018 998 936 946 980 1020 1002 1020 1018 1002 1010 1008 956 1012 1010 958 1022 986 1014 988 990 986 986 990 1014 1008 1016 966 1020 1000 1018 1010 1016 1008</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1484\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"748\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 5 4 7 9 3 5 3 11 4 7 4 13 15 5 7 9 5 17 20 21 4 4 21 13 23 15 7 17 5 15 25 9 17 28 29 21 13 21 31 23 7 33 35 17 15 37 25 17 40 41 21 21 41 31 13 31 43 45 23 33 35 15 47 49 17 35 37 17 49 52 53 41 13 43 55 45 33 57 35 47 59 61 49 35 55 43 63 65 45 57 35 59 67 61 35 67 55 63 69 73 74 75 65 57 77 79 61 67 69 63 81 75 74 83 65 77 85 75 83 87 69 81 89 85 77 91 87 83 93 87 93 95 69 89 97 85 91 99 95 93 101 97 89 103 99 91 105 95 101 107 97 103 109 111 99 105 107 101 113 109 103 115 97 109 117 111 105 119 107 113 121 109 115 123 117 109 125 127 111 119 121 113 129 115 131 123 109 123 133 125 109 135 127 119 137 121 129 139 123 131 141 109 133 135 123 141 133 125 135 143 145 127 137 139 129 147 131 149 141 135 133 151 133 141 153 143 135 151 155 125 143 157 145 137 139 147 159 141 149 161 133 153 151 153 141 161 163 143 151 163 155 143 165 145 157 147 167 159 149 169 161 151 153 171 153 161 173 175 163 151 163 177 155 165 157 179 159 167 181 161 169 183 175 151 171 153 173 171 173 161 183 185 155 177 187 165 179 167 189 181 169 191 183 193 175 171 171 173 195 173 183 197 185 177 199 203 187 179 187 203 204 187 204 205 181 189 207 191 209 183 193 171 195 211 175 193 173 197 195 183 209 197 215 187 205 187 215 216 216 215 217 189 219 207 191 221 209 223 193 195 211 193 225 211 227 175 195 197 229 197 209 231 216 233 187 189 235 219 191 238 239 191 239 221 209 221 241 223 195 229 225 193 223 243 211 225 245 227 211 197 231 229 209 241 231 247 233 216 235 249 219 238 251 239 239 253 221 221 253 241 255 223 229 257 225 223 259 243 225 245 211 243 245 261 227 229 231 263 231 241 265 267 233 247 235 269 249 238 271 251 251 273 239 239 275 253 241 253 277 255 229 263 257 223 255 259 225 257 279 243 259 281 245 243 283 261 245 231 265 263 241 277 265 285 267 247 271 287 251 239 273 275 251 289 273 275 291 253 253 291 277 293 255 263 295 257 255 297 259 257 279 259 299 281 243 279 281 283 245 283 301 261 303 263 265 265 277 305 285 307 267 287 309 251 273 311 275 251 309 289 289 313 273 275 311 291 277 291 315 293 263 303 255 293 295 297 257 295 299 259 297 317 281 279 319 283 281 321 301 283 303 265 305 305 277 315 323 307 285 287 325 309 273 313 311 309 327 289 289 329 313 291 311 331 291 331 315 333 293 303 293 335 295 297 295 337 299 297 339 341 281 317 319 281 341 321 283 319 343 301 321 345 303 305 305 315 347 323 349 307 325 351 309 313 353 311 289 327 329 309 351 327 329 355 313 311 353 331 333 303 357 293 333 335 337 295 335 339 297 337 359 321 319 361 343 321 345 305 347 349 323 363 325 365 351 313 355 353 327 367 329 351 369 327 329 371 355 373 333 357 333 375 335 377 337 335 379 339 337 359 361 321 381 343 361 383 345 347 349 363 385 365 369 351 355 387 353 327 389 367 329 367 371 369 389 327 371 391 355 393 373 357 333 373 375 377 335 375 379 337 377 395 361 359 397 381 361 393 357 399 385 363 401 365 403 369 355 391 387 389 405 367 367 407 371 369 409 389 371 411 391 373 393 413 373 413 375 377 375 415 417 379 377 419 395 359 395 397 361 421 385 401 403 409 369 424 425 391 389 427 405 405 407 367 407 411 371 409 427 389 391 411 429 417 377 415 431 395 419 433 397 395 421 401 435 437 409 403 424 391 429 427 439 405 441 407 405 407 441 411 443 427 409 429 411 445 417 415 447 431 419 449 433 395 431 451 421 435 453 437 403 443 409 437 424 429 455 457 439 427 439 441 405 411 441 445 443 457 427 459 429 445 415 461 447 463 431 449 449 419 465 467 433 431 451 435 469 471 437 453 473 443 437 455 429 459 475 439 457 477 441 439 445 441 477 479 457 443 459 445 481 447 461 483 415 485 461 487 463 449 467 431 463 449 465 489 451 469 491 493 471 453 471 495 437 495 473 437 473 479 443 497 455 459 475 477 439 479 475 457 481 445 477 499 459 481 483 461 501 415 503 485 485 505 461 507 463 487 487 449 509 511 467 463 509 449 489 491 469 513 493 453 515 493 517 471 471 519 495 495 521 473 521 479 473 497 523 455 499 497 459 525 477 475 527 475 479 481 477 525 529 499 481 461 531 501 485 503 533 461 505 531 485 533 505 507 487 535 511 463 507 487 509 537 491 513 539 515 453 541 543 493 515 545 517 493 517 547 471 549 519 471 519 551 495 551 521 495 521 527 479 554 497 555 497 499 557 527 525 475 529 481 525 499 529 559 501 531 561 503 554 533 505 563 531 533 565 505 567 507 535 535 487 537 569 511 507 537 509 571 539 513 573 515 541 575 577 543 515 543 545 493 545 579 517 517 581 547 547 549 471 549 583 519 583 551 519 551 527 521 555 497 557 533 554 555 557 499 559 585 525 527 585 529 525 529 587 559 531 589 561 501 561 591 505 565 563 531 563 589 533 555 565 567 535 593 569 507 567 535 537 595 537 571 597 539 573 599 575 541 601 577 515 575 603 545 543 605 517 579 545 607 579 609 581 517 547 581 611 547 611 549 549 611 583 583 585 551 551 585 527 555 557 613 557 559 615 529 585 587 559 587 617 561 589 619 621 591 561 565 623 563 563 625 589 555 613 565 593 535 595 627 567 593 629 569 567 595 537 597 597 571 631 599 573 633 635 577 575 637 603 543 603 639 545 605 609 517 641 605 579 643 607 545 641 579 607 609 645 581 581 617 611 611 587 583 583 587 585 557 615 613 559 617 615 617 587 611 619 589 647 621 561 619 563 623 625 565 613 623 589 625 647 593 595 649 629 567 627 651 627 593 653 569 629 595 597 655 657 597 631 633 573 659 661 599 633 663 603 637 603 665 639 639 643 545 605 667 609 641 669 605 643 671 607 671 641 607 645 617 581 673 645 609 613 615 675 615 617 645 619 647 677 679 621 619 623 681 625 613 675 623 647 625 683 651 593 649 649 595 655 629 627 685 627 651 687 653 689 569 653 629 691 655 597 657 657 631 693 573 695 659 633 659 697 699 661 633 701 599 661 637 703 663 663 705 603 665 707 639 603 705 665 639 709 643 669 667 605 667 673 609 711 669 641 709 671 643 711 641 671 675 645 673 615 645 675 677 647 713 679 619 677 715 621 679 623 675 681 625 681 683 647 683 713 717 651 649 649 655 719 685 627 687 691 629 685 687 651 721 723 689 653 653 691 725 655 657 727 657 693 729 659 695 731 697 659 733 699 633 697 735 661 699 737 701 661 701 739 599 741 703 637 703 743 663 663 745 705 707 709 639 747 707 665 705 747 665 749 667 669 751 673 667 753 669 711 755 671 709 755 711 671 675 673 681 757 677 713 679 677 759 761 715 679 683 681 751 713 683 763 717 649 719 651 717 721 719 655 727 685 687 765 691 685 767 687 721 769 723 653 771 773 689 723 725 691 775 771 653 725 727 657 729 729 693 777 695 779 731 659 731 781 783 661 735 783 737 661 785 701 737 701 787 739 741 789 703 703 791 743 663 743 745 745 793 705 795 709 707 747 795 707 793 747 705 753 749 669 751 667 749 681 673 751 797 753 711 795 755 709 797 711 755 757 713 799 759 677 757 801 679 759 801 761 679 683 751 763 799 713 763 717 719 803 721 717 805 719 727 807 685 765 767 765 687 769 691 767 775 769 721 809 811 723 771 773 723 811 773 813 689 815 725 775 817 771 725 727 729 819 801 729 777 731 779 821 695 823 779 826 731 827 785 829 701 701 829 787 831 789 741 789 791 703 791 833 743 743 835 745 837 793 745 839 795 747 793 839 747 841 749 753 763 751 749 843 753 797 845 755 795 755 845 797 757 799 847 759 757 849 801 759 849 777 761 801 799 763 841 803 719 807 805 717 803 721 805 809 807 727 819 767 765 851 853 765 769 775 767 855 769 809 857 811 771 817 773 859 813 817 725 815 815 775 861 819 729 801 731 821 863 695 865 823 867 829 785 831 869 789 869 791 789 791 871 833 743 833 835 835 837 745 837 839 793 839 845 795 841 763 749 841 753 843 797 873 843 797 845 873 847 799 875 849 757 847 799 841 875 803 807 877 879 805 803 809 805 881 807 819 883 855 767 851 851 765 853 853 769 857 861 775 855 857 809 885 887 811 817 813 859 889 817 815 891 891 815 861 883 819 893 896 821 897 865 899 823 901 869 831 869 903 791 903 871 791 871 905 833 833 907 835 835 909 837 837 911 839 911 845 839 875 841 843 843 873 913 873 845 911 875 916 917 877 807 883 879 803 919 805 879 881 809 881 885 923 924 925 924 928 929 853 857 931 934 923 935 931 857 885 937 887 817 817 891 939 942 934 943 883 893 945 865 947 899 951 952 953 901 955 869 955 903 869 903 957 871 871 959 905 833 905 907 907 909 835 909 911 837 843 913 875 913 873 961 873 911 961 875 913 916 877 883 945 879 919 963 879 965 881 885 881 967 935 923 925 925 924 929 929 928 969 853 931 971 934 935 943 931 885 973 937 817 939 976 942 977 942 943 977 947 979 899 952 981 953 983 955 901 955 985 903 903 985 957 871 957 959 905 959 987 907 905 989 907 989 909 961 911 909 913 961 991 916 913 991 877 945 993 879 963 965 963 919 995 881 965 967 973 885 967 929 969 997 971 931 955 931 973 985 937 939 999 976 977 1001 952 1003 981 947 999 979 997 1006 1007 971 955 983 931 985 955 985 1009 957 957 1011 959 959 1013 987 905 987 989 989 961 909 991 961 989 1015 916 991 967 965 1017 973 967 1009 997 969 1006 985 973 1009 1019 976 1001 947 937 999 1003 1021 981 1003 1019 1021 957 1009 1011 959 1011 1013 1015 987 1023 987 991 989 1015 991 987 967 1017 1009 1019 1001 1021 1009 1017 1011</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1484\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1487\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1488\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1491\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"3360\">-0.4284909069538117 1.845905065536499 -0.3419413566589356 -0.4284909069538117 1.778753757476807 -0.3575156927108765 -0.2499992847442627 1.845905065536499 -0.3415195643901825 -0.2499992847442627 1.845905065536499 -0.3415195643901825 -0.4284909069538117 1.778753757476807 -0.3575156927108765 -0.4284909069538117 1.845905065536499 -0.3419413566589356 -0.492791086435318 1.735238432884216 -0.341511458158493 -0.492791086435318 1.735238432884216 -0.341511458158493 -0.2530297040939331 1.885210990905762 -0.2984420955181122 -0.2530297040939331 1.885210990905762 -0.2984420955181122 -0.2518970370292664 1.778753757476807 -0.3580342233181 -0.2518970370292664 1.778753757476807 -0.3580342233181 -0.5439662933349609 1.630160927772522 -0.3612952828407288 -0.5439662933349609 1.630160927772522 -0.3612952828407288 -0.4274950623512268 1.892464756965637 -0.2981753945350647 -0.4274950623512268 1.892464756965637 -0.2981753945350647 -0.001449317671358585 1.893650889396668 -0.2984420955181122 -0.001449317671358585 1.893650889396668 -0.2984420955181122 -0.001449317671358585 1.840989470481873 -0.3415195643901825 -0.001449317671358585 1.840989470481873 -0.3415195643901825 -0.5402756929397583 1.730631828308106 -0.05429454147815704 -0.5402756929397583 1.730631828308106 -0.05429454147815704 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.001449317671358585 1.903719186782837 -0.2660267651081085 -0.001449317671358585 1.903719186782837 -0.2660267651081085 -0.2510687708854675 1.897168397903442 -0.2660267651081085 -0.2510687708854675 1.897168397903442 -0.2660267651081085 -0.001449317671358585 1.790218114852905 -0.3580342829227448 -0.001449317671358585 1.790218114852905 -0.3580342829227448 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4942575693130493 1.810338735580444 -0.1560795605182648 -0.4942575693130493 1.810338735580444 -0.1560795605182648 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4262329339981079 1.900443553924561 -0.2676746845245361 -0.4262329339981079 1.900443553924561 -0.2676746845245361 0.2471002340316773 1.845904111862183 -0.3415195643901825 0.2471002340316773 1.845904111862183 -0.3415195643901825 0.2501309812068939 1.885210514068604 -0.2984420955181122 0.2501309812068939 1.885210514068604 -0.2984420955181122 0.2489985525608063 1.778753399848938 -0.3580342829227448 0.2489985525608063 1.778753399848938 -0.3580342829227448 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.5022329092025757 1.826841831207275 0.03412822261452675 -0.5022329092025757 1.826841831207275 0.03412822261452675 -0.5121397972106934 1.815709233283997 -0.1209307163953781 -0.5121397972106934 1.815709233283997 -0.1209307163953781 -0.4660681784152985 1.811052560806274 -0.1879515945911408 -0.4660681784152985 1.811052560806274 -0.1879515945911408 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.253710150718689 1.913546323776245 -0.1969181150197983 0.248169869184494 1.897167801856995 -0.2660267651081085 0.248169869184494 1.897167801856995 -0.2660267651081085 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.001449317671358585 1.915921688079834 -0.1955144852399826 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 -0.001449264585971832 1.536692500114441 -0.3334604203701019 -0.001449264585971832 1.536692500114441 -0.3334604203701019 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.5529140830039978 1.538213133811951 -0.362256646156311 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.5549579858779907 1.631603837013245 0.1968967169523239 -0.4583899974822998 1.827001571655273 0.05228543654084206 -0.4583899974822998 1.827001571655273 0.05228543654084206 -0.5234936475753784 1.823414206504822 0.00754820927977562 -0.5234936475753784 1.823414206504822 0.00754820927977562 -0.5227372050285339 1.817952036857605 -0.07677430659532547 -0.5227372050285339 1.817952036857605 -0.07677430659532547 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4287169277667999 1.813359618186951 -0.1959136426448822 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4287169277667999 1.813359618186951 -0.1959136426448822 0.425592303276062 1.778753399848938 -0.3575156927108765 0.425592303276062 1.778753399848938 -0.3575156927108765 0.425592303276062 1.845904111862183 -0.3419413566589356 0.425592303276062 1.845904111862183 -0.3419413566589356 0.424596518278122 1.892464280128479 -0.2981753945350647 0.424596518278122 1.892464280128479 -0.2981753945350647 0.5410676598548889 1.630160927772522 -0.3612952828407288 0.5410676598548889 1.630160927772522 -0.3612952828407288 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1463109403848648 1.538439273834229 -0.2887333929538727 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1465941071510315 1.441868185997009 -0.2887333929538727 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.5042721629142761 1.629883885383606 0.1692219376564026 -0.5042721629142761 1.629883885383606 0.1692219376564026 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.531063973903656 1.821377754211426 -0.03405506536364555 -0.531063973903656 1.821377754211426 -0.03405506536364555 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.5112505555152893 1.913546323776245 -0.1217374056577683 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.5500150322914124 1.538213133811951 -0.362256646156311 0.5500150322914124 1.538213133811951 -0.362256646156311 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5636165142059326 1.441428422927856 -0.371430516242981 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.5685402750968933 1.536199450492859 0.2030840963125229 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.4982104897499085 1.831614017486572 0.1618779003620148 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4982104897499085 1.831614017486572 0.1618779003620148 -0.529030442237854 1.737711548805237 0.1892369687557221 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.4839866459369659 1.627110838890076 0.1684880554676056 -0.4839866459369659 1.627110838890076 0.1684880554676056 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.5210548639297485 1.913546323776245 -0.07925551384687424 0.4898924827575684 1.735237956047058 -0.341511458158493 0.4898924827575684 1.735237956047058 -0.341511458158493 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.4233340919017792 1.900443077087402 -0.2676746845245361 0.5500150322914124 1.538213133811951 -0.362256646156311 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5500150322914124 1.538213133811951 -0.362256646156311 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.1436953097581863 1.441868185997009 -0.2887334525585175 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.5120450258255005 1.535624384880066 0.1684880554676056 -0.5120450258255005 1.535624384880066 0.1684880554676056 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.1476053893566132 1.335592031478882 -0.2887333929538727 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.3280232548713684 1.530326366424561 -0.02723223529756069 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.1778205931186676 1.537016987800598 -0.06437790393829346 -0.3280232548713684 1.530326366424561 -0.02723223529756069 -0.1778205931186676 1.441850662231445 -0.06437790393829346 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.3179892599582672 1.440020799636841 -0.02723223529756069 -0.3179892599582672 1.440020799636841 -0.02723223529756069 -0.1778205931186676 1.3324294090271 -0.06246279180049896 -0.4811488389968872 1.900608420372009 0.1218080669641495 -0.4811488389968872 1.900608420372009 0.1218080669641495 -0.3965325653553009 1.825424194335938 0.07977844774723053 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3965325653553009 1.825424194335938 0.07977844774723053 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.4828142523765564 1.733480215072632 0.1646009534597397 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.3965325653553009 1.80279803276062 -0.2640757858753204 -0.3392848372459412 1.63602614402771 -0.02723223529756069 -0.3392848372459412 1.63602614402771 -0.02723223529756069 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 0.5373769402503967 1.730631828308106 -0.05429454147815704 0.5373769402503967 1.730631828308106 -0.05429454147815704 0.425817996263504 1.813359618186951 -0.1959136426448822 0.425817996263504 1.813359618186951 -0.1959136426448822 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5607179403305054 1.441428422927856 -0.371430516242981 0.5607179403305054 1.441428422927856 -0.371430516242981 0.174921989440918 1.441850662231445 -0.06437790393829346 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1434121131896973 1.538439273834229 -0.2887334525585175 0.1436953097581863 1.441868185997009 -0.2887334525585175 0.174921989440918 1.441850662231445 -0.06437790393829346 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.5731618404388428 1.330125331878662 -0.3767435252666473 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.577763557434082 1.437644124031067 0.2137537151575089 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.1778205931186676 1.635286450386047 -0.06640081107616425 -0.146251991391182 1.636475563049316 -0.2887333929538727 -0.146251991391182 1.636475563049316 -0.2887333929538727 -0.3129720091819763 1.329645752906799 -0.02723223529756069 -0.3129720091819763 1.329645752906799 -0.02723223529756069 -0.001449264585971832 1.800307512283325 -0.2640757858753204 -0.001449264585971832 1.800307512283325 -0.2640757858753204 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.3392848372459412 1.738676190376282 -0.02742237597703934 -0.4740534126758575 1.535303473472595 0.1684880554676056 -0.4740534126758575 1.535303473472595 0.1684880554676056 0.4913583993911743 1.810338258743286 -0.1560795605182648 0.4913583993911743 1.810338258743286 -0.1560795605182648 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.425817996263504 1.813359618186951 -0.1959136426448822 0.463169276714325 1.811052083969116 -0.1879515945911408 0.463169276714325 1.811052083969116 -0.1879515945911408 0.425817996263504 1.813359618186951 -0.1959136426448822 0.5607179403305054 1.441428422927856 -0.371430516242981 0.5607179403305054 1.441428422927856 -0.371430516242981 0.501373291015625 1.629883170127869 0.1692219376564026 0.5520590543746948 1.631603479385376 0.1968967169523239 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5656417608261108 1.536199450492859 0.2030840963125229 0.5520590543746948 1.631603479385376 0.1968967169523239 0.501373291015625 1.629883170127869 0.1692219376564026 0.4799154102802277 1.733479738235474 0.1646009534597397 0.5261315703392029 1.737711548805237 0.1892369687557221 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4799154102802277 1.733479738235474 0.1646009534597397 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.332428932189941 -0.06246279180049896 0.174921989440918 1.332428932189941 -0.06246279180049896 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5218863487243652 1.436050415039063 0.1684880554676056 -0.5218863487243652 1.436050415039063 0.1684880554676056 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1778205931186676 1.238158941268921 -0.06665239483118057 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.1450155228376389 1.238866567611694 -0.2887333929538727 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.4668075442314148 1.436590313911438 0.1684880554676056 -0.4668075442314148 1.436590313911438 0.1684880554676056 -0.001449264585971832 1.825429081916809 0.07037267088890076 -0.001449264585971832 1.825429081916809 0.07037267088890076 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1778205931186676 1.73537540435791 -0.06640081107616425 -0.1778205931186676 1.73537540435791 -0.06640081107616425 0.499333918094635 1.826841831207275 0.03412822261452675 0.499333918094635 1.826841831207275 0.03412822261452675 0.5092408657073975 1.815709233283997 -0.1209307163953781 0.5092408657073975 1.815709233283997 -0.1209307163953781 0.425817996263504 1.813359618186951 -0.1959136426448822 0.425817996263504 1.813359618186951 -0.1959136426448822 0.57486492395401 1.437644124031067 0.2137537151575089 0.57486492395401 1.437644124031067 0.2137537151575089 0.5091465711593628 1.535624027252197 0.1684880554676056 0.5091465711593628 1.535624027252197 0.1684880554676056 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.1447065472602844 1.335592031478882 -0.2887334525585175 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.174921989440918 1.635286450386047 -0.06640081107616425 0.174921989440918 1.635286450386047 -0.06640081107616425 0.174921989440918 1.441850662231445 -0.06437790393829346 0.174921989440918 1.537016987800598 -0.06437790393829346 0.3251246511936188 1.530326366424561 -0.02723223529756069 0.3251246511936188 1.530326366424561 -0.02723223529756069 0.174921989440918 1.537016987800598 -0.06437790393829346 0.174921989440918 1.441850662231445 -0.06437790393829346 0.174921989440918 1.332428932189941 -0.06246279180049896 0.31509068608284 1.440020322799683 -0.02723223529756069 0.31509068608284 1.440020322799683 -0.02723223529756069 0.174921989440918 1.332428932189941 -0.06246279180049896 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5819200873374939 1.238179802894592 -0.3800972402095795 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.5851986408233643 1.338033437728882 0.2104835957288742 -0.3129720091819763 1.236830115318298 -0.02777358889579773 -0.3129720091819763 1.236830115318298 -0.02777358889579773 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.1435542851686478 1.736283421516419 -0.3044333457946777 -0.4615717530250549 1.331655025482178 0.1681370437145233 -0.4615717530250549 1.331655025482178 0.1681370437145233 0.3936337828636169 1.825424194335938 0.07977844774723053 0.3936337828636169 1.825424194335938 0.07977844774723053 -0.001449317671358585 1.738980174064636 -0.3044333755970001 -0.001449317671358585 1.738980174064636 -0.3044333755970001 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.001449317671358585 1.847941994667053 0.08541373908519745 0.4554912447929382 1.827001571655273 0.05228543654084206 0.4554912447929382 1.827001571655273 0.05228543654084206 0.5205953121185303 1.823413729667664 0.00754820927977562 0.5205953121185303 1.823413729667664 0.00754820927977562 0.5198380947113037 1.817951560020447 -0.07677430659532547 0.5198380947113037 1.817951560020447 -0.07677430659532547 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.5702623724937439 1.330125331878662 -0.3767435252666473 0.57486492395401 1.437644124031067 0.2137537151575089 0.57486492395401 1.437644124031067 0.2137537151575089 0.4810881018638611 1.627110362052918 0.1684880554676056 0.4810881018638611 1.627110362052918 0.1684880554676056 0.4953119158744812 1.831613540649414 0.1618779003620148 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.5261315703392029 1.737711548805237 0.1892369687557221 0.4953119158744812 1.831613540649414 0.1618779003620148 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.174921989440918 1.238158345222473 -0.06665239483118057 0.174921989440918 1.238158345222473 -0.06665239483118057 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.174921989440918 1.635286450386047 -0.06640081107616425 0.3363863527774811 1.636025667190552 -0.02723223529756069 0.3363863527774811 1.636025667190552 -0.02723223529756069 0.174921989440918 1.635286450386047 -0.06640081107616425 0.1433530896902084 1.636475563049316 -0.2887334525585175 0.1433530896902084 1.636475563049316 -0.2887334525585175 0.3100736141204834 1.329645752906799 -0.02723223529756069 0.3100736141204834 1.329645752906799 -0.02723223529756069 -0.59349524974823 1.231308460235596 0.211546465754509 -0.59349524974823 1.231308460235596 0.211546465754509 -0.5315014719963074 1.332691550254822 0.1684880554676056 -0.5315014719963074 1.332691550254822 0.1684880554676056 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1778205931186676 1.097799062728882 -0.06455764919519424 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 0.391455739736557 1.843269467353821 0.09250524640083313 0.391455739736557 1.843269467353821 0.09250524640083313 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.4959137439727783 1.913545846939087 0.03620735183358192 0.4959137439727783 1.913545846939087 0.03620735183358192 0.528164803981781 1.821377277374268 -0.03405506536364555 0.528164803981781 1.821377277374268 -0.03405506536364555 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5189875960350037 1.436050415039063 0.1684880554676056 0.5189875960350037 1.436050415039063 0.1684880554676056 0.4711544513702393 1.535303473472595 0.1684880554676056 0.4711544513702393 1.535303473472595 0.1684880554676056 0.47825026512146 1.900608062744141 0.1218080669641495 0.47825026512146 1.900608062744141 0.1218080669641495 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.4799154102802277 1.733479738235474 0.1646009534597397 0.4799154102802277 1.733479738235474 0.1646009534597397 0.3936337828636169 1.802797555923462 -0.2640757858753204 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.1421166360378265 1.238866209983826 -0.2887334525585175 0.174921989440918 1.238158345222473 -0.06665239483118057 0.174921989440918 1.238158345222473 -0.06665239483118057 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.3363863527774811 1.738676190376282 -0.02742237597703934 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.4639089703559876 1.436590313911438 0.1684880554676056 0.4639089703559876 1.436590313911438 0.1684880554676056 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.59349524974823 1.231308460235596 0.211546465754509 -0.59349524974823 1.231308460235596 0.211546465754509 -0.4589178562164307 1.23185932636261 0.1681370437145233 -0.4589178562164307 1.23185932636261 0.1681370437145233 -0.3018067181110382 1.0907301902771 -0.02723223529756069 -0.3018067181110382 1.0907301902771 -0.02723223529756069 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.002916331402957439 1.098329663276672 -0.2887333929538727 -0.002916331402957439 1.098329663276672 -0.2887333929538727 -0.1450155228376389 1.103013038635254 -0.2887333929538727 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.536308765411377 1.230878353118897 0.1681370437145233 -0.536308765411377 1.230878353118897 0.1681370437145233 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5790212750434876 1.238179802894592 -0.3800972402095795 0.5822999477386475 1.338033080101013 0.2104835957288742 0.5822999477386475 1.338033080101013 0.2104835957288742 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.097799062728882 -0.06455764919519424 0.174921989440918 1.097799062728882 -0.06455764919519424 0.3100736141204834 1.236830115318298 -0.02777358889579773 0.3100736141204834 1.236830115318298 -0.02777358889579773 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.174921989440918 1.73537540435791 -0.06640081107616425 0.174921989440918 1.73537540435791 -0.06640081107616425 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.4586731791496277 1.331655025482178 0.1681370437145233 0.4586731791496277 1.331655025482178 0.1681370437145233 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.1778205931186676 1.021738171577454 -0.06246279180049896 -0.001449264585971832 0.9224953055381775 -0.4125895202159882 -0.001449264585971832 0.9224953055381775 -0.4125895202159882 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5896697640419006 0.967028796672821 -0.4081986546516419 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.1406556069850922 1.73628306388855 -0.3044333755970001 0.5905963182449341 1.231308460235596 0.211546465754509 0.5905963182449341 1.231308460235596 0.211546465754509 0.5286024808883667 1.332691550254822 0.1684880554676056 0.5286024808883667 1.332691550254822 0.1684880554676056 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.174921989440918 1.097799062728882 -0.06455764919519424 0.174921989440918 1.097799062728882 -0.06455764919519424 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.5930832624435425 1.083053827285767 0.2102400213479996 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6036462187767029 0.9737679958343506 -0.2504616379737854 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.4476439952850342 1.085452318191528 0.1687992811203003 -0.4476439952850342 1.085452318191528 0.1687992811203003 -0.5506917834281921 1.079741597175598 0.1681370437145233 -0.5506917834281921 1.079741597175598 0.1681370437145233 -0.2962236702442169 0.9798537492752075 -0.02685293555259705 -0.2962236702442169 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.406062126159668 0.9056558609008789 -0.4102611839771271 -0.406062126159668 0.9056558609008789 -0.4102611839771271 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.5960348844528198 0.9785304665565491 -0.3776650130748749 -0.7721797227859497 0.9785095453262329 -0.3779011070728302 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.2050743401050568 0.9798537492752075 -0.02685293555259705 -0.1434928178787231 1.029773592948914 -0.290567547082901 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.1434928178787231 1.029773592948914 -0.290567547082901 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.5905963182449341 1.231308460235596 0.211546465754509 0.5905963182449341 1.231308460235596 0.211546465754509 0.174921989440918 1.021738171577454 -0.06246279180049896 0.174921989440918 1.021738171577454 -0.06246279180049896 0.2989078760147095 1.0907301902771 -0.02723223529756069 0.2989078760147095 1.0907301902771 -0.02723223529756069 0.4560191333293915 1.23185932636261 0.1681370437145233 0.4560191333293915 1.23185932636261 0.1681370437145233 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.1405939757823944 1.029773235321045 -0.2905676066875458 1.764297485351563e-005 1.098328948020935 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 0.1421166360378265 1.103013038635254 -0.2887334525585175 1.764297485351563e-005 1.098328948020935 -0.2887334525585175 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.5334103107452393 1.230877995491028 0.1681370437145233 0.5334103107452393 1.230877995491028 0.1681370437145233 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.6074824929237366 0.9916535615921021 -0.1459137946367264 -0.7933366298675537 0.872636616230011 -0.1798238903284073 -0.6131501197814941 0.878864586353302 -0.178733304142952 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7809916734695435 0.9740294814109802 -0.2496751993894577 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.7995144128799439 0.9900846481323242 -0.1484323143959045 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.6041193604469299 0.9737679958343506 -0.2748579680919647 -0.001449264585971832 0.4225348234176636 -0.4125895202159882 -0.001449264585971832 0.4225348234176636 -0.4125895202159882 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.9050183892250061 -0.4102611839771271 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7694103717803955 0.962002158164978 -0.4066228270530701 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.7716754674911499 0.9740061759948731 -0.2752210795879364 -0.4369345605373383 0.8832268714904785 0.1687992811203003 -0.4369345605373383 0.8832268714904785 0.1687992811203003 -0.001449264585971832 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 0.9798537492752075 -0.02685293555259705 0.59018474817276 1.083053469657898 0.2102400213479996 0.59018474817276 1.083053469657898 0.2102400213479996 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.174921989440918 1.021738171577454 -0.06246279180049896 0.174921989440918 1.021738171577454 -0.06246279180049896 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5867704749107361 0.967028796672821 -0.4081986546516419 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.2021754086017609 0.9798537492752075 -0.02685293555259705 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.001449264585971832 1.00382125377655 -0.2905676662921906 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.5914897322654724 0.8816207051277161 0.2259911447763443 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.7878978252410889 0.7611286044120789 -0.2114714235067368 -0.5537700057029724 0.8805091977119446 0.1687992811203003 -0.5537700057029724 0.8805091977119446 0.1687992811203003 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.2021754086017609 0.9798537492752075 -0.02685293555259705 0.1405939757823944 1.029773235321045 -0.2905676066875458 0.4031637907028198 0.9056558609008789 -0.4102611839771271 0.4031637907028198 0.9056558609008789 -0.4102611839771271 -0.3065129816532135 0.8859434127807617 0.1687992811203003 -0.3065129816532135 0.8859434127807617 0.1687992811203003 0.6102513670921326 0.878864586353302 -0.178733304142952 0.6102513670921326 0.878864586353302 -0.178733304142952 0.59018474817276 1.083053469657898 0.2102400213479996 0.59018474817276 1.083053469657898 0.2102400213479996 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.6007474064826965 0.9737679958343506 -0.2504616975784302 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.2933250367641449 0.9798537492752075 -0.02685293555259705 0.2933250367641449 0.9798537492752075 -0.02685293555259705 0.4447450339794159 1.085452318191528 0.1687992811203003 0.4447450339794159 1.085452318191528 0.1687992811203003 0.5477932691574097 1.079741597175598 0.1681370437145233 0.5477932691574097 1.079741597175598 0.1681370437145233 0.7692805528640747 0.9785095453262329 -0.3779011070728302 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.5931354761123657 0.9785299897193909 -0.3776650130748749 0.7692805528640747 0.9785095453262329 -0.3779011070728302 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.6238976716995239 0.7615718245506287 -0.2084415704011917 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 -0.7694103717803955 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.9050183892250061 -0.4102611839771271 0.7665115594863892 0.9050183892250061 -0.4102611839771271 -0.4568682312965393 0.7821235656738281 0.1939517259597778 -0.4568682312965393 0.7821235656738281 0.1939517259597778 0.3036143779754639 0.8859434127807617 0.1687992811203003 0.3036143779754639 0.8859434127807617 0.1687992811203003 -0.001449317671358585 0.8832268714904785 0.1687992811203003 -0.001449317671358585 0.8832268714904785 0.1687992811203003 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.6102513670921326 0.878864586353302 -0.178733304142952 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.7904375791549683 0.872636616230011 -0.1798238903284073 0.604583740234375 0.9916535615921021 -0.1459137946367264 0.6102513670921326 0.878864586353302 -0.178733304142952 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.7780932784080505 0.9740294814109802 -0.2496751993894577 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.796615481376648 0.9900846481323242 -0.1484323143959045 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.6012207269668579 0.9737679958343506 -0.2748579680919647 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7687768340110779 0.9740056991577148 -0.2752210795879364 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.7665115594863892 0.962002158164978 -0.4066228270530701 0.4340358078479767 0.8832268714904785 0.1687992811203003 0.4340358078479767 0.8832268714904785 0.1687992811203003 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.6053041219711304 0.7718132138252258 0.2411977499723434 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.7842722535133362 0.6196871995925903 -0.2350356727838516 -0.5659343004226685 0.7770506739616394 0.1939517259597778 -0.5659343004226685 0.7770506739616394 0.1939517259597778 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 -0.7694103717803955 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 0.7665115594863892 0.4213694334030151 -0.4125895202159882 -0.3224376142024994 0.7821235656738281 0.1939517259597778 -0.3224376142024994 0.7821235656738281 0.1939517259597778 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.5885907411575317 0.8816202878952026 0.2259911447763443 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.7849989533424377 0.7611279487609863 -0.2114714235067368 0.5508714914321899 0.8805091977119446 0.1687992811203003 0.5508714914321899 0.8805091977119446 0.1687992811203003 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.6359268426895142 0.6197859644889832 -0.2311255186796188 -0.001449264585971832 -0.4657838642597199 -0.401268482208252 -0.001449264585971832 -0.4657838642597199 -0.401268482208252 0.7665115594863892 0.3214001655578613 -0.4125895202159882 0.7665115594863892 0.3214001655578613 -0.4125895202159882 -0.4873052835464478 0.6395153403282166 0.2242447286844254 -0.4873052835464478 0.6395153403282166 0.2242447286844254 -0.5904378294944763 0.6395494937896729 0.2237000018358231 -0.5904378294944763 0.6395494937896729 0.2237000018358231 0.3195390701293945 0.7821230292320252 0.1939517259597778 0.3195390701293945 0.7821230292320252 0.1939517259597778 0.4539692401885986 0.7821230292320252 0.1939517259597778 0.4539692401885986 0.7821230292320252 0.1939517259597778 -0.001449317671358585 0.7846598029136658 0.1939517259597778 -0.001449317671358585 0.7846598029136658 0.1939517259597778 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.620998740196228 0.7615718245506287 -0.2084415704011917 0.620998740196228 0.7615718245506287 -0.2084415704011917 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.6182903051376343 0.6240295767784119 0.2858521044254303 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.7694103717803955 -0.4633741080760956 -0.4125895202159882 -0.3351199328899384 0.6414915919303894 0.2242447286844254 -0.3351199328899384 0.6414915919303894 0.2242447286844254 -0.5904378294944763 0.6395494937896729 0.2237000018358231 -0.5904378294944763 0.6395494937896729 0.2237000018358231 0.5630353093147278 0.7770506739616394 0.1939517259597778 0.5630353093147278 0.7770506739616394 0.1939517259597778 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.6024045944213867 0.7718126773834229 0.2411977499723434 0.7813732028007507 0.6196871995925903 -0.2350356727838516 0.7813732028007507 0.6196871995925903 -0.2350356727838516 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 0.7665115594863892 -0.4633741080760956 -0.4125895202159882 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.620207667350769 0.4206523001194 0.2673260569572449 0.3322211503982544 0.6414915919303894 0.2242447286844254 0.3322211503982544 0.6414915919303894 0.2242447286844254 0.484406590461731 0.6395153403282166 0.2242447286844254 0.484406590461731 0.6395153403282166 0.2242447286844254 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.5875386595726013 0.6395494937896729 0.2237000018358231 -0.001449317671358585 0.64403235912323 0.2242447286844254 -0.001449317671358585 0.64403235912323 0.2242447286844254 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6330281496047974 0.6197859644889832 -0.2311255186796188 0.6330281496047974 0.6197859644889832 -0.2311255186796188 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6570241451263428 0.4215267300605774 -0.2490309327840805 -0.7809916734695435 0.4214316308498383 -0.2512775659561157 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.001449264585971832 -0.7595747113227844 -0.3996257781982422 -0.001449264585971832 -0.7595747113227844 -0.3996257781982422 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4915523529052734 -0.7594550848007202 -0.401268482208252 -0.3487512469291687 0.4234864413738251 0.2671858966350555 -0.3487512469291687 0.4234864413738251 0.2671858966350555 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.5875386595726013 0.6395494937896729 0.2237000018358231 0.6153917908668518 0.6240295767784119 0.2858521044254303 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.7780932784080505 0.4214316308498383 -0.2512775957584381 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.7999430894851685 0.4232206344604492 -0.1200132966041565 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.6383126378059387 0.4212585687637329 0.3928990066051483 -0.5108032822608948 0.4234864413738251 0.2673763632774353 -0.620207667350769 0.4206523001194 0.2673260569572449 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7704972624778748 -0.7594550848007202 -0.2747071981430054 -0.7694103717803955 -0.7594550848007202 -0.4125895202159882 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 -0.3487512469291687 0.4234864413738251 0.2671858966350555 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.5602487921714783 0.4234864413738251 0.4212178885936737 -0.3487512469291687 0.4234864413738251 0.2671858966350555 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6173088550567627 0.4206523001194 0.2673260569572449 -0.001449264585971832 0.4234864413738251 0.2770070433616638 -0.001449264585971832 0.4234864413738251 0.2770070433616638 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.6541249752044678 0.4215267300605774 -0.2490309327840805 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.6914955377578735 0.4193951189517975 0.3593906462192535 -0.4983565807342529 -1.144771337509155 -0.05335938557982445 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4944510161876679 -0.7594550848007202 -0.401268482208252 -0.4895545244216919 -0.9960562586784363 -0.3588135838508606 -0.4983565807342529 -1.144771337509155 -0.05335938557982445 -0.001449264585971832 -0.994135320186615 -0.3598018288612366 -0.001449264585971832 -0.994135320186615 -0.3598018288612366 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.7675982117652893 -0.7594550848007202 -0.2747071981430054 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.7665115594863892 -0.7594550848007202 -0.4125895202159882 -0.354899525642395 0.4234864413738251 0.4407898485660553 -0.354899525642395 0.4234864413738251 0.4407898485660553 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 -0.001449264585971832 0.4234864413738251 0.2770070433616638 -0.001449264585971832 0.4234864413738251 0.2770070433616638 0.6541249752044678 0.4215267300605774 -0.2490309327840805 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.7780932784080505 0.4214316308498383 -0.2512775957584381 0.6541249752044678 0.4215267300605774 -0.2490309327840805 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.8011427521705627 0.4255830943584442 0.01974329724907875 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4955373406410217 -0.7594550848007202 -0.2747071981430054 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 -0.4809866547584534 -1.15156364440918 -0.2121338695287705 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4954578280448914 -1.144771337509155 -0.05335938557982445 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4915523529052734 -0.7594550848007202 -0.401268482208252 0.4954578280448914 -1.144771337509155 -0.05335938557982445 0.4866555333137512 -0.9960562586784363 -0.3588135838508606 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 -0.7809916734695435 -0.7613976001739502 -0.2500443458557129 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3520008623600006 0.4234864413738251 0.4407898485660553 0.3458529412746429 0.4234864413738251 0.2671858966350555 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5573503971099854 0.4234864413738251 0.4212178885936737 0.5079045295715332 0.4234864413738251 0.2673763632774353 0.6173088550567627 0.4206523001194 0.2673260569572449 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6354138255119324 0.4212585687637329 0.3928990066051483 0.6173088550567627 0.4206523001194 0.2673260569572449 -0.001449317671358585 0.4255315661430359 0.4577548205852509 -0.001449317671358585 0.4255315661430359 0.4577548205852509 0.7970438599586487 0.4232206344604492 -0.1200132966041565 0.7970438599586487 0.4232206344604492 -0.1200132966041565 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.7899727821350098 0.4261996150016785 0.1537329405546188 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.4763640761375427 -1.342074871063232 -0.2502812445163727 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 -0.001449264585971832 -1.152853488922119 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.478087991476059 -1.15156364440918 -0.2121338695287705 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 0.4926388263702393 -0.7594550848007202 -0.2747071981430054 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 -0.5060323476791382 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.7780932784080505 -0.7613976001739502 -0.2500443458557129 0.6885963678359985 0.4193951189517975 0.3593906462192535 0.6885963678359985 0.4193951189517975 0.3593906462192535 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.7724733352661133 0.423301488161087 0.2328356057405472 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.4611479043960571 -1.553455591201782 -0.3157239854335785 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.4734652638435364 -1.342074871063232 -0.2502812445163727 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 -0.797784686088562 -0.7594809532165527 -0.2194323092699051 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.5031341314315796 -0.7613976001739502 -0.2500443458557129 0.7982441186904907 0.4255830943584442 0.01974329724907875 0.7982441186904907 0.4255830943584442 0.01974329724907875 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.7497841715812683 0.4189915955066681 0.2977039515972138 -0.4872207045555115 -1.537930369377136 -0.2763937413692474 -0.4872207045555115 -1.537930369377136 -0.2763937413692474 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.522825300693512 -0.7594809532165527 -0.2194323092699051 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.4582496285438538 -1.553455591201782 -0.3157240450382233 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7948853373527527 -0.7594809532165527 -0.2194323092699051 0.7870740294456482 0.4261996150016785 0.1537329405546188 0.7870740294456482 0.4261996150016785 0.1537329405546188 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.7361075282096863 -1.553455591201782 -0.3157239854335785 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.8011427521705627 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 -0.5261840224266052 -0.7733504772186279 -0.07749389111995697 0.4843221306800842 -1.537930369377136 -0.2763938009738922 0.4843221306800842 -1.537930369377136 -0.2763938009738922 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.5199260115623474 -0.7594809532165527 -0.2194323092699051 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.7695745229721069 0.423301488161087 0.2328356057405472 0.7695745229721069 0.423301488161087 0.2328356057405472 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.7621800899505615 -1.537930369377136 -0.2763937413692474 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.505567193031311 -1.531305909156799 -0.2250321209430695 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.8011427521705627 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8043494820594788 -0.01007266342639923 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7332086563110352 -1.553455591201782 -0.3157240450382233 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.7982441186904907 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.523284912109375 -0.7733504772186279 -0.07749389111995697 0.7468852996826172 0.4189915955066681 0.2977039515972138 0.7468852996826172 0.4189915955066681 0.2977039515972138 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.7805264592170715 -1.531305909156799 -0.2250321209430695 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.5256492495536804 -1.518790006637573 -0.1588879972696304 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.8011427521705627 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -0.8390792012214661 0.04917880520224571 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.5026680827140808 -1.531305909156799 -0.2250321209430695 0.7592812776565552 -1.537930369377136 -0.2763938009738922 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8043494820594788 -0.01007266342639923 0.7982441186904907 -0.8043494820594788 -0.01007266342639923 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.508234739303589 -0.09154573827981949 -0.8006090521812439 -1.518790006637573 -0.1588879972696304 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.7952222228050232 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5202624201774597 -0.9133054614067078 0.1218263059854507 -0.5133307576179504 -1.001767039299011 0.1643165051937103 -0.5133307576179504 -1.001767039299011 0.1643165051937103 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.7776272892951965 -1.531305909156799 -0.2250321209430695 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.5227506756782532 -1.518790006637573 -0.1588879972696304 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.7982441186904907 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.523284912109375 -0.8390792012214661 0.04917880520224571 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.5261840224266052 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.508234739303589 -0.09154573827981949 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.7882897853851318 -1.001767039299011 0.1643165051937103 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5133307576179504 -1.001767039299011 0.1643165051937103 -0.5133307576179504 -1.001767039299011 0.1643165051937103 0.523284912109375 -1.491312742233276 -0.023659847676754 0.523284912109375 -1.491312742233276 -0.023659847676754 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.508234739303589 -0.09154573827981949 0.7977098822593689 -1.518790006637573 -0.1588879972696304 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.7923230528831482 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5173638463020325 -0.9133054614067078 0.1218263059854507 0.5104317665100098 -1.001767039299011 0.1643165051937103 0.5104317665100098 -1.001767039299011 0.1643165051937103 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.8011427521705627 -1.491312742233276 -0.023659847676754 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.5261840224266052 -1.440358400344849 0.05794682726264 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.5085157752037048 -1.125645518302918 0.1875546872615814 -0.7834754586219788 -1.125645518302918 0.1875546872615814 -0.5102030634880066 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.491312742233276 -0.023659847676754 0.523284912109375 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.508234739303589 -0.09154573827981949 0.523284912109375 -1.440359592437744 0.05794682726264 0.523284912109375 -1.440359592437744 0.05794682726264 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.7853910326957703 -1.001767039299011 0.1643165051937103 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5104317665100098 -1.001767039299011 0.1643165051937103 0.5104317665100098 -1.001767039299011 0.1643165051937103 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.5202624201774597 -1.368423700332642 0.1249729543924332 -0.8011427521705627 -1.440358400344849 0.05794682726264 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.785162627696991 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 -0.5102030634880066 -1.255748510360718 0.1789079755544663 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.7982441186904907 -1.491312742233276 -0.023659847676754 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.523284912109375 -1.440359592437744 0.05794682726264 0.523284912109375 -1.440359592437744 0.05794682726264 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.7805765867233276 -1.125645518302918 0.1875546872615814 0.5056174397468567 -1.125645518302918 0.1875546872615814 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 -0.7952222228050232 -1.368423700332642 0.1249729543924332 -0.7952222228050232 -1.368423700332642 0.1249729543924332 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.7982441186904907 -1.440359592437744 0.05794682726264 0.7982441186904907 -1.440359592437744 0.05794682726264 0.5173638463020325 -1.368424773216248 0.1249729543924332 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.7822633981704712 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.5073037147521973 -1.255748510360718 0.1789079755544663 0.7923230528831482 -1.368424773216248 0.1249729543924332 0.7923230528831482 -1.368424773216248 0.1249729543924332</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1120\" source=\"#ID1491\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1489\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1492\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"3360\">-0.3624737800293703 0.4859647467451019 -0.7952678943049244 -0.1545443154350269 0.1639940879950334 -0.9742802439079815 -0.003853141030227453 0.5060249083727283 -0.8625102581480253 0.003853141030227453 -0.5060249083727283 0.8625102581480253 0.1545443154350269 -0.1639940879950334 0.9742802439079815 0.3624737800293703 -0.4859647467451019 0.7952678943049244 -0.7324920660122415 0.457917387625513 -0.5037529546705845 0.7324920660122415 -0.457917387625513 0.5037529546705845 -0.0004069113151989066 0.8510737583644934 -0.5250459906013161 0.0004069113151989066 -0.8510737583644934 0.5250459906013161 0.03299238499774464 0.01579987216850699 -0.9993307093107963 -0.03299238499774464 -0.01579987216850699 0.9993307093107963 -0.6599367575566504 0.1574799509539804 -0.7346315682525131 0.6599367575566504 -0.1574799509539804 0.7346315682525131 -0.4825950502217278 0.7718517995669966 -0.41394059598773 0.4825950502217278 -0.7718517995669966 0.41394059598773 1.071540052998343e-006 0.8368601856344831 -0.5474166874499445 -1.071540052998343e-006 -0.8368601856344831 0.5474166874499445 6.813683993455388e-007 0.4721141919303452 -0.8815374012357574 -6.813683993455388e-007 -0.4721141919303452 0.8815374012357574 -0.9974871553865196 0.06924404581483046 -0.01498789371802915 0.9974871553865196 -0.06924404581483046 0.01498789371802915 -0.9711284224999425 0.2245742194279648 0.08047364152996804 0.9711284224999425 -0.2245742194279648 -0.08047364152996804 1.061019862232905e-006 0.9717634124067937 -0.2359573484898874 -1.061019862232905e-006 -0.9717634124067937 0.2359573484898874 0.004512754540973932 0.9589012500145845 -0.2837041201091738 -0.004512754540973932 -0.9589012500145845 0.2837041201091738 -7.330408345447807e-008 0.05702732137435288 -0.998372618122543 7.330408345447807e-008 -0.05702732137435288 0.998372618122543 0.03150240910259435 -0.120950970924864 -0.9921584857536954 -0.03150240910259435 0.120950970924864 0.9921584857536954 -0.9385416613712174 0.3443531983703549 0.02367328964597491 0.9385416613712174 -0.3443531983703549 -0.02367328964597491 -0.8761981556018987 0.2259556718250015 -0.425700395219388 0.8761981556018987 -0.2259556718250015 0.425700395219388 -0.9664102261534006 0.1792971905669148 0.1841298244200134 0.9664102261534006 -0.1792971905669148 -0.1841298244200134 0.009571043662882323 0.9761844930476938 -0.2167307792087227 -0.009571043662882323 -0.9761844930476938 0.2167307792087227 0.003853817547659413 0.5060234076335159 -0.862511135590303 -0.003853817547659413 -0.5060234076335159 0.862511135590303 0.0004077021893716645 0.851072916055885 -0.5250473553262195 -0.0004077021893716645 -0.851072916055885 0.5250473553262195 -0.03299219064653936 0.01580101445099036 -0.9993306976665243 0.03299219064653936 -0.01580101445099036 0.9993306976665243 0.1854924483388497 0.0297144551440979 -0.9821963157967701 -0.1854924483388497 -0.0297144551440979 0.9821963157967701 -0.9827438492098397 0.1835206260197056 -0.02312372516623031 0.9827438492098397 -0.1835206260197056 0.02312372516623031 -0.7396135861098553 0.2706010337434902 0.6162360130491191 0.7396135861098553 -0.2706010337434902 -0.6162360130491191 -0.929203404900106 0.004851496540596717 -0.3695368659597662 0.929203404900106 -0.004851496540596717 0.3695368659597662 -0.4572957004858343 0.5678939809349656 -0.684380792201978 0.4572957004858343 -0.5678939809349656 0.684380792201978 -0.9996755617097963 0.02513946843080167 -0.004096150292636169 0.9996755617097963 -0.02513946843080167 0.004096150292636169 -0.1444513541761632 0.8970155625046075 -0.4177282452758196 0.1444513541761632 -0.8970155625046075 0.4177282452758196 -0.0003142089705117116 0.844635117266066 -0.5353423390258441 0.0003142089705117116 -0.844635117266066 0.5353423390258441 -0.004511777179443033 0.9589014785861503 -0.2837033630959952 0.004511777179443033 -0.9589014785861503 0.2837033630959952 9.386065420688752e-007 0.8779194969412163 -0.4788082673571967 -9.386065420688752e-007 -0.8779194969412163 0.4788082673571967 -0.03150232463048155 -0.1209510078656186 -0.9921584839324648 0.03150232463048155 0.1209510078656186 0.9921584839324648 1.421110156752401e-007 -0.09647637482302918 -0.9953352747195219 -1.421110156752401e-007 0.09647637482302918 0.9953352747195219 -0.9939519189231681 0.1071781674738492 -0.02392536908596283 0.9939519189231681 -0.1071781674738492 0.02392536908596283 0.1874073137697865 0.004104856223899814 -0.9822737138399735 -0.1874073137697865 -0.004104856223899814 0.9822737138399735 0.4766670216020972 -0.03148357499934053 0.8785199684823598 0.4740065005530203 0.06433251425393863 0.8781680733454425 0.6770012810427748 0.06137130979137885 0.7334185897568538 -0.6770012810427748 -0.06137130979137885 -0.7334185897568538 -0.4740065005530203 -0.06433251425393863 -0.8781680733454425 -0.4766670216020972 0.03148357499934053 -0.8785199684823598 -0.75716505701647 0.4316397027746605 0.4902940377180294 0.75716505701647 -0.4316397027746605 -0.4902940377180294 -0.8837170001912241 -0.08811553730210767 0.4596519505658436 0.8837170001912241 0.08811553730210767 -0.4596519505658436 -0.9732376766669912 0.0742968484610015 -0.2174589686000547 0.9732376766669912 -0.0742968484610015 0.2174589686000547 -0.7577190848040959 0.3973032107154196 -0.5176987031844511 0.7577190848040959 -0.3973032107154196 0.5176987031844511 -0.457138707571557 0.3553778220514752 -0.8153102511521345 0.457138707571557 -0.3553778220514752 0.8153102511521345 -0.2089924216546803 0.008762989339713465 -0.9778779973538337 -0.1006180874477454 0.6177155415554498 -0.779938145111018 0.1006180874477454 -0.6177155415554498 0.779938145111018 0.2089924216546803 -0.008762989339713465 0.9778779973538337 0.1545449189804481 0.1639953826160094 -0.9742799302551375 -0.1545449189804481 -0.1639953826160094 0.9742799302551375 0.3624719227926648 0.4859633171358438 -0.7952696143983599 -0.3624719227926648 -0.4859633171358438 0.7952696143983599 0.4825976504425874 0.7718509711554245 -0.4139391091860277 -0.4825976504425874 -0.7718509711554245 0.4139391091860277 0.6599378617402222 0.1574791258733538 -0.7346307532059271 -0.6599378617402222 -0.1574791258733538 0.7346307532059271 -0.9930809860323686 0.1146799591334536 -0.02527176594795086 0.9930809860323686 -0.1146799591334536 0.02527176594795086 0.1977659800341587 0.0464019048807483 -0.9791503870011831 -0.1977659800341587 -0.0464019048807483 0.9791503870011831 0.9907202004319288 -0.004481338298964892 0.1358432996624015 0.9903889769166423 0.0008426209381802807 0.1383074994060737 0.9902665732855567 -0.0009229499262855498 0.1391806811188776 -0.9902665732855567 0.0009229499262855498 -0.1391806811188776 -0.9903889769166423 -0.0008426209381802807 -0.1383074994060737 -0.9907202004319288 0.004481338298964892 -0.1358432996624015 0.9506355888777646 -0.03521948841048554 0.3083043379440672 -0.9506355888777646 0.03521948841048554 -0.3083043379440672 0.2785982112331046 -0.01731088269238537 0.9602517222260656 -0.2785982112331046 0.01731088269238537 -0.9602517222260656 -0.9385111508363014 0.3147102088340285 -0.1419658557948474 0.9385111508363014 -0.3147102088340285 0.1419658557948474 -0.5374118567073094 0.4163750394213115 0.7333623407411262 0.5374118567073094 -0.4163750394213115 -0.7333623407411262 -0.9984558984029656 0.05542846701277118 0.00367477740021313 0.9984558984029656 -0.05542846701277118 -0.00367477740021313 -0.8244249006574319 0.4220939913763589 0.3770414375369871 0.8244249006574319 -0.4220939913763589 -0.3770414375369871 -0.8609538082186087 0.3950426369975656 -0.3204681810537273 0.8609538082186087 -0.3950426369975656 0.3204681810537273 -0.00957148868517114 0.9761843977801478 -0.2167311886530402 0.00957148868517114 -0.9761843977801478 0.2167311886530402 0.0003145381297959222 0.8446308682000966 -0.5353490427275611 -0.0003145381297959222 -0.8446308682000966 0.5353490427275611 -0.185492318012902 0.029714409387343 -0.9821963417937178 0.185492318012902 -0.029714409387343 0.9821963417937178 -0.9948953864089095 0.09776053599842396 -0.02502094529723696 0.9948953864089095 -0.09776053599842396 0.02502094529723696 0.5153709162730268 0.007115690917785558 0.8569376789490958 -0.5153709162730268 -0.007115690917785558 -0.8569376789490958 0.1990967315569903 0.004305444266122145 -0.9799703845693475 -0.1990967315569903 -0.004305444266122145 0.9799703845693475 0.9902788853317449 0.001416575145139241 0.1390889017174802 -0.9902788853317449 -0.001416575145139241 -0.1390889017174802 0.9909381866633921 -0.00339928129879528 0.1342756683056169 -0.9909381866633921 0.00339928129879528 -0.1342756683056169 0.7837827076589627 -0.0777275116834283 0.6161518490618102 0.7789570757840516 -0.0003647030452540897 0.627077141249502 0.807881193541539 0.1421292548319688 0.5719503929912172 -0.807881193541539 -0.1421292548319688 -0.5719503929912172 -0.7789570757840516 0.0003647030452540897 -0.627077141249502 -0.7837827076589627 0.0777275116834283 -0.6161518490618102 0.97886734548447 -0.09340764649124664 0.1819168258329987 -0.97886734548447 0.09340764649124664 -0.1819168258329987 0.4487402694777954 0.03338026433872194 0.8930385929519914 -0.4487402694777954 -0.03338026433872194 -0.8930385929519914 -0.9947296916848576 0.03826608924145202 -0.09512385029377941 0.9947296916848576 -0.03826608924145202 0.09512385029377941 -0.1102595056986163 0.6041944645946928 0.7891716482212404 0.1102595056986163 -0.6041944645946928 -0.7891716482212404 -0.904888817089381 0.4255285472945364 0.01008385561096054 0.904888817089381 -0.4255285472945364 -0.01008385561096054 -0.8988689238162904 0.3942461495617065 -0.1913233685494596 0.8988689238162904 -0.3942461495617065 0.1913233685494596 0.732492058088297 0.4579188953728411 -0.5037515956283295 -0.732492058088297 -0.4579188953728411 0.5037515956283295 0.9711282967358724 0.2245734737144611 0.08047724015337268 -0.9711282967358724 -0.2245734737144611 -0.08047724015337268 0.9939518227067535 0.1071790024554668 -0.0239256258136243 0.9827435946668154 0.1835219798413784 -0.02312379848656081 -0.9827435946668154 -0.1835219798413784 0.02312379848656081 -0.9939518227067535 -0.1071790024554668 0.0239256258136243 -0.187407160819612 0.004104808380183385 -0.9822737432211522 0.187407160819612 -0.004104808380183385 0.9822737432211522 -0.9962646189382179 0.08335278637210813 -0.02256373319938482 0.9962646189382179 -0.08335278637210813 0.02256373319938482 0.282762654895606 -0.01355152068251251 0.9590941753986312 -0.282762654895606 0.01355152068251251 -0.9590941753986312 0.9905045084774971 0.00430583151241134 0.1374128032635193 -0.9905045084774971 -0.00430583151241134 -0.1374128032635193 0.2033008390474977 0.02159626358807922 -0.9788781181748919 -0.2033008390474977 -0.02159626358807922 0.9788781181748919 0.9901476793937345 0.0009945214277502505 0.1400235120197049 -0.9901476793937345 -0.0009945214277502505 -0.1400235120197049 0.2505953805537095 0.01319931024358321 0.9680019284351841 0.5544622414410764 0.05792895198666866 0.8301902549041778 0.2384622152970593 0.01130057266012134 0.9710860255060683 -0.2384622152970593 -0.01130057266012134 -0.9710860255060683 -0.5544622414410764 -0.05792895198666866 -0.8301902549041778 -0.2505953805537095 -0.01319931024358321 -0.9680019284351841 0.2536853763433732 -0.01385342089267899 0.9671875787866031 0.5517721355645144 0.04180008004943988 0.8329467352252697 -0.5517721355645144 -0.04180008004943988 -0.8329467352252697 -0.2536853763433732 0.01385342089267899 -0.9671875787866031 0.8556501718362605 0.2205237944821925 0.4682222116727841 -0.8556501718362605 -0.2205237944821925 -0.4682222116727841 0.01092354614888393 -0.9096493391911312 0.415233375162295 -0.0210116343912583 -0.9819081657303571 0.1881883771444284 -0.05251364681989335 -0.965692631172645 0.2543227457317366 0.05251364681989335 0.965692631172645 -0.2543227457317366 0.0210116343912583 0.9819081657303571 -0.1881883771444284 -0.01092354614888393 0.9096493391911312 -0.415233375162295 0.199686066098458 0.9695763853543423 0.1415878101014707 0.1705977330597303 0.9606879073294415 0.2190323222400281 0.2344657761266083 0.9511198135383904 0.2009898010348905 -0.2344657761266083 -0.9511198135383904 -0.2009898010348905 -0.1705977330597303 -0.9606879073294415 -0.2190323222400281 -0.199686066098458 -0.9695763853543423 -0.1415878101014707 0.5595943241498509 0.03064844215397503 0.8281997738304483 -0.5595943241498509 -0.03064844215397503 -0.8281997738304483 0.8927890657270788 0.2334357383356926 0.385273202008445 -0.8927890657270788 -0.2334357383356926 -0.385273202008445 0.9974870555249193 0.06924543025848322 -0.01498814359899946 -0.9974870555249193 -0.06924543025848322 0.01498814359899946 0.9664101543029536 0.1792973560538182 0.1841300403851904 -0.9664101543029536 -0.1792973560538182 -0.1841300403851904 0.1006180685619479 0.6177085888725438 -0.7799436540622367 -0.1006180685619479 -0.6177085888725438 0.7799436540622367 0.9930807542926085 0.1146818707139896 -0.02527219783010267 -0.9930807542926085 -0.1146818707139896 0.02527219783010267 0.9385419000274274 0.3443525048755634 0.02367391557878455 -0.9385419000274274 -0.3443525048755634 -0.02367391557878455 -0.1977659061729414 0.04640222383028751 -0.9791503868043964 0.1977659061729414 -0.04640222383028751 0.9791503868043964 -0.9903888581766679 0.0008425838663977495 0.1383083498995786 -0.9907200813861874 -0.004481335275896335 0.1358441679730533 -0.9902664316060748 -0.0009233398319787592 0.1391816865745136 0.9902664316060748 0.0009233398319787592 -0.1391816865745136 0.9907200813861874 0.004481335275896335 -0.1358441679730533 0.9903888581766679 -0.0008425838663977495 -0.1383083498995786 -0.9956332832031598 0.09060838061056614 -0.02246078229331045 0.9956332832031598 -0.09060838061056614 0.02246078229331045 0.609302980938861 -0.04851120027734063 0.7914521721915162 -0.609302980938861 0.04851120027734063 -0.7914521721915162 0.9900164870656073 0.002237715452367364 0.1409338425213349 -0.9900164870656073 -0.002237715452367364 -0.1409338425213349 0.2037279884680405 0.003408292205479992 -0.9790215984640012 -0.2037279884680405 -0.003408292205479992 0.9790215984640012 0.2354288757230134 0.01033069315864383 0.9718366741663231 -0.2354288757230134 -0.01033069315864383 -0.9718366741663231 0.9899604319430478 -0.002011784228226916 0.1413304493425017 -0.9899604319430478 0.002011784228226916 -0.1413304493425017 0.5547653430423216 0.006299757779836354 0.8319830089677616 -0.5547653430423216 -0.006299757779836354 -0.8319830089677616 -4.394328509024803e-007 -0.8604107253640477 0.5096012006248809 4.394328509024803e-007 0.8604107253640477 -0.5096012006248809 0.1724366937858562 -0.5852573613334642 0.7923000742403056 -0.1724366937858562 0.5852573613334642 -0.7923000742403056 0.1714073010240002 0.9747916390754533 0.1428313605069244 -0.1714073010240002 -0.9747916390754533 -0.1428313605069244 0.5503810947730992 0.001214969156718686 0.8349126746949726 -0.5503810947730992 -0.001214969156718686 -0.8349126746949726 0.450037116531388 0.04310610239371941 0.8919688658695077 -0.450037116531388 -0.04310610239371941 -0.8919688658695077 0.8761978087912092 0.2259548846055289 -0.4257015268851939 -0.8761978087912092 -0.2259548846055289 0.4257015268851939 0.9996755819224945 0.02513868544375044 -0.004096022715052424 -0.9996755819224945 -0.02513868544375044 0.004096022715052424 0.1444621315590783 0.897014967628634 -0.4177257957028849 0.4573000724444853 0.5678945186820267 -0.6843774246665197 -0.4573000724444853 -0.5678945186820267 0.6843774246665197 -0.1444621315590783 -0.897014967628634 0.4177257957028849 0.9948955834759435 0.09775843681465128 -0.02502131114905634 -0.9948955834759435 -0.09775843681465128 0.02502131114905634 -0.2785981445243947 -0.01731150240502203 0.9602517304082537 -0.4766671925824109 -0.03148473006323069 0.8785198343170451 -0.515371312570275 0.00711481025181893 0.8569374479241017 0.515371312570275 -0.00711481025181893 -0.8569374479241017 0.4766671925824109 0.03148473006323069 -0.8785198343170451 0.2785981445243947 0.01731150240502203 -0.9602517304082537 -0.6770023525194214 0.06137146879587433 0.7334175873954796 -0.4740073313116037 0.06433442568254497 0.8781674848996339 0.4740073313116037 -0.06433442568254497 -0.8781674848996339 0.6770023525194214 -0.06137146879587433 -0.7334175873954796 -0.1990967204008648 0.004305648388343431 -0.9799703859390732 0.1990967204008648 -0.004305648388343431 0.9799703859390732 -0.990278754510625 0.001416584633724603 0.139089833031969 0.990278754510625 -0.001416584633724603 -0.139089833031969 -0.9909380630799358 -0.003399242763365023 0.1342765813089576 0.9909380630799358 0.003399242763365023 -0.1342765813089576 -0.9968199301215862 0.07708524078587133 -0.0201963502985076 0.9968199301215862 -0.07708524078587133 0.0201963502985076 0.3314473236246197 -0.03404005513124647 0.942859452044014 -0.3314473236246197 0.03404005513124647 -0.942859452044014 0.2690640104709645 -0.007413334523900739 0.9630937652900248 -0.2690640104709645 0.007413334523900739 -0.9630937652900248 0.9892307285286091 0.01363532297325122 0.1457279784467367 -0.9892307285286091 -0.01363532297325122 -0.1457279784467367 0.2193871989700671 0.04480102687666464 -0.9746087034902083 -0.2193871989700671 -0.04480102687666464 0.9746087034902083 0.9899973159602924 -0.001154469275832887 0.1410814714698849 -0.9899973159602924 0.001154469275832887 -0.1410814714698849 0.4465459218696992 0.02656812732855649 0.8943661857828673 -0.4465459218696992 -0.02656812732855649 -0.8943661857828673 -1.148944981636436e-008 -0.8668010893336193 0.4986540599755013 1.148944981636436e-008 0.8668010893336193 -0.4986540599755013 -0.001024137529105541 -0.5316213354677284 0.8469815268456746 0.001024137529105541 0.5316213354677284 -0.8469815268456746 0.2602016548448433 0.9646775598081155 0.04113762777147901 -0.2602016548448433 -0.9646775598081155 -0.04113762777147901 0.2346650363901175 0 0.972076293660135 -0.2346650363901175 -0 -0.972076293660135 0.7396104306978107 0.2705991214933103 0.6162406398883861 -0.7396104306978107 -0.2705991214933103 -0.6162406398883861 0.9292033977608823 0.004849915305961162 -0.3695369046673911 -0.9292033977608823 -0.004849915305961162 0.3695369046673911 0.2089923606738436 0.00876284107834017 -0.9778780117152702 -0.2089923606738436 -0.00876284107834017 0.9778780117152702 0.9962647277989406 0.0833513433905458 -0.02256425710485266 -0.9962647277989406 -0.0833513433905458 0.02256425710485266 -0.2827633455471794 -0.0135519361059265 0.9590939659088401 0.2827633455471794 0.0135519361059265 -0.9590939659088401 -0.9506354482239151 -0.03521547083878675 0.3083052305649686 0.9506354482239151 0.03521547083878675 -0.3083052305649686 -0.9905043599947265 0.004306145735177295 0.1374138637123065 0.9905043599947265 -0.004306145735177295 -0.1374138637123065 -0.203300842541363 0.02159634962472388 -0.9788781155510927 0.203300842541363 -0.02159634962472388 0.9788781155510927 -0.9901475184290349 0.0009944306250129018 0.1400246508888931 0.9901475184290349 -0.0009944306250129018 -0.1400246508888931 -0.2505953057574743 0.01319924367291896 0.9680019487060865 -0.2384621371886398 0.01130063956788524 0.9710860439079448 -0.5544623521168383 0.05792931606360777 0.8301901555821206 0.5544623521168383 -0.05792931606360777 -0.8301901555821206 0.2384621371886398 -0.01130063956788524 -0.9710860439079448 0.2505953057574743 -0.01319924367291896 -0.9680019487060865 -0.2536850281599741 -0.0138535557623779 0.9671876681803858 -0.551772243987951 0.04179930726748266 0.8329467021823543 0.551772243987951 -0.04179930726748266 -0.8329467021823543 0.2536850281599741 0.0138535557623779 -0.9671876681803858 -0.9959826638017204 0.08218396933776975 -0.03555739853135363 0.9959826638017204 -0.08218396933776975 0.03555739853135363 0.6153083634408196 -0.05148481002412313 0.7866034148264042 -0.6153083634408196 0.05148481002412313 -0.7866034148264042 0.5727285138006848 0.02121515963538596 0.8194705403376649 -0.5727285138006848 -0.02121515963538596 -0.8194705403376649 0.9893888310005082 0.00274175030615532 0.1452660452298001 -0.9893888310005082 -0.00274175030615532 -0.1452660452298001 0.2097557314495232 0.01720629354741938 -0.9776024123264199 -0.2097557314495232 -0.01720629354741938 0.9776024123264199 0.9897895976065745 -0.004342237901327167 0.1424699878564741 -0.9897895976065745 0.004342237901327167 -0.1424699878564741 0.4503054884335412 0.01362090150421649 0.892770652591606 -0.4503054884335412 -0.01362090150421649 -0.892770652591606 -0.01092992491029081 -0.9096482954439253 0.415235493831412 0.01092992491029081 0.9096482954439253 -0.415235493831412 -6.080638707766665e-007 -0.549717805339878 0.8353504261637377 6.080638707766665e-007 0.549717805339878 -0.8353504261637377 3.440188208490243e-008 -0.5555299093164049 0.8314965543253354 -3.440188208490243e-008 0.5555299093164049 -0.8314965543253354 0.7571660530837381 0.4316386416869186 0.4902934336295622 -0.7571660530837381 -0.4316386416869186 -0.4902934336295622 0.8837149458269733 -0.08812159394410893 0.4596547391279451 -0.8837149458269733 0.08812159394410893 -0.4596547391279451 0.9732381178375368 0.07429979006275535 -0.2174559890752135 -0.9732381178375368 -0.07429979006275535 0.2174559890752135 0.7577242285038515 0.3972933108754175 -0.5176987721367438 -0.7577242285038515 -0.3972933108754175 0.5176987721367438 0.4571384098397874 0.3553681588594452 -0.8153146300159212 -0.4571384098397874 -0.3553681588594452 0.8153146300159212 0.9956332479540522 0.09060858342719801 -0.02246152661288552 -0.9956332479540522 -0.09060858342719801 0.02246152661288552 -0.60930239163265 -0.04851017134711085 0.7914526889376313 0.60930239163265 0.04851017134711085 -0.7914526889376313 -0.4487398167543257 0.03338053044725342 0.8930388104927769 0.4487398167543257 -0.03338053044725342 -0.8930388104927769 -0.7789583409897993 -0.000363824971310878 0.6270755701140092 -0.7837836806675312 -0.07772604490380559 0.6161507963663354 -0.8078824561640882 0.1421267736203982 0.5719492261053741 0.8078824561640882 -0.1421267736203982 -0.5719492261053741 0.7837836806675312 0.07772604490380559 -0.6161507963663354 0.7789583409897993 0.000363824971310878 -0.6270755701140092 0.9385102612342132 0.3147124102554416 -0.1419668566578107 -0.9385102612342132 -0.3147124102554416 0.1419668566578107 -0.9788676032683243 -0.09340394251875722 0.1819173405524587 0.9788676032683243 0.09340394251875722 -0.1819173405524587 -0.9900163262707898 0.002237773630536223 0.1409349711266421 0.9900163262707898 -0.002237773630536223 -0.1409349711266421 -0.2037279640935901 0.003408228659399518 -0.9790216037573869 0.2037279640935901 -0.003408228659399518 0.9790216037573869 -0.2354286825828318 0.01033067541157402 0.9718367211434505 -0.5595946128675985 0.03064871190227865 0.8281995687684784 0.5595946128675985 -0.03064871190227865 -0.8281995687684784 0.2354286825828318 -0.01033067541157402 -0.9718367211434505 -0.9899603075635177 -0.002011262428334605 0.1413313279927344 0.9899603075635177 0.002011262428334605 -0.1413313279927344 -0.5547654368374926 0.006299470406166929 0.8319829486011763 0.5547654368374926 -0.006299470406166929 -0.8319829486011763 -0.9985425728218029 0.05396971174717015 2.182525293931658e-005 0.9985425728218029 -0.05396971174717015 -2.182525293931658e-005 0.328951013776384 -0.02646334594056419 0.9439761235630481 -0.328951013776384 0.02646334594056419 -0.9439761235630481 0.2841570197766841 0.02309268086450633 0.9584996172154285 -0.2841570197766841 -0.02309268086450633 -0.9584996172154285 0.9891669386176245 0.007070011516571865 0.1466246312288359 -0.9891669386176245 -0.007070011516571865 -0.1466246312288359 0.147731337883644 0.5587010131958488 -0.8161057711234742 -0.147731337883644 -0.5587010131958488 0.8161057711234742 -0.1724417686133558 -0.5852546171744093 0.7923009967894356 0.1724417686133558 0.5852546171744093 -0.7923009967894356 0.02100936362367406 -0.9819079119043689 0.1881899550447116 -0.02100936362367406 0.9819079119043689 -0.1881899550447116 0.001023400392436381 -0.5316206646494037 0.8469819487860194 -0.001023400392436381 0.5316206646494037 -0.8469819487860194 0.5374137069235633 0.4163662298492717 0.7333659865659014 -0.5374137069235633 -0.4163662298492717 -0.7333659865659014 0.9984558285342023 0.05543043573489472 0.003664049715707952 -0.9984558285342023 -0.05543043573489472 -0.003664049715707952 0.8244304220700673 0.42208399743857 0.3770405525558863 -0.8244304220700673 -0.42208399743857 -0.3770405525558863 0.8609593490701201 0.3950356538503604 -0.3204619032518112 -0.8609593490701201 -0.3950356538503604 0.3204619032518112 0.9968199900682904 0.0770843016658484 -0.02019697593557614 -0.9968199900682904 -0.0770843016658484 0.02019697593557614 -0.3314467288794468 -0.03403931238868394 0.9428596879319956 0.3314467288794468 0.03403931238868394 -0.9428596879319956 -0.4500384764145335 0.04310675662060656 0.8919681481309393 0.4500384764145335 -0.04310675662060656 -0.8919681481309393 -0.8556511006454337 0.2205202335716528 0.4682221914324025 0.8556511006454337 -0.2205202335716528 -0.4682221914324025 0.9947292441872121 0.03826670708435793 -0.0951282812188765 -0.9947292441872121 -0.03826670708435793 0.0951282812188765 0.05250119610140889 -0.9656931304469213 0.2543234205014291 -0.05250119610140889 0.9656931304469213 -0.2543234205014291 -0.1705956336861564 0.9606885189129935 0.2190312749266132 -0.1996848346137059 0.9695768355687583 0.1415864638790379 -0.2344624242422771 0.9511207570385238 0.2009892463513906 0.2344624242422771 -0.9511207570385238 -0.2009892463513906 0.1996848346137059 -0.9695768355687583 -0.1415864638790379 0.1705956336861564 -0.9606885189129935 -0.2190312749266132 -0.9892305482017425 0.01363551190350415 0.1457291848587969 0.9892305482017425 -0.01363551190350415 -0.1457291848587969 -0.2690636223426728 -0.007413233922668227 0.9630938744975213 0.2690636223426728 0.007413233922668227 -0.9630938744975213 -0.2193871688498107 0.04480051646010619 -0.9746087337331696 0.2193871688498107 -0.04480051646010619 0.9746087337331696 -0.5503813245396799 0.001214963109203446 0.834912523239765 0.5503813245396799 -0.001214963109203446 -0.834912523239765 -0.9899971732306971 -0.001153879037670049 0.1410824778574415 0.9899971732306971 0.001153879037670049 -0.1410824778574415 -0.4465456466954729 0.02656714329178133 0.8943663524052299 0.4465456466954729 -0.02656714329178133 -0.8943663524052299 -0.9983834563885684 0.05683670962253818 -0.0002498977763939091 0.9983834563885684 -0.05683670962253818 0.0002498977763939091 0.6061218733991877 -0.01969442439617812 0.7951279169006473 -0.6061218733991877 0.01969442439617812 -0.7951279169006473 0.4419258402810651 0.0239470611798888 0.8967318941315297 -0.4419258402810651 -0.0239470611798888 -0.8967318941315297 0.570230995658594 0.03991175871994512 0.8205142674604075 -0.570230995658594 -0.03991175871994512 -0.8205142674604075 0.9479143263943628 -0.2903074595404179 0.131072532406718 -0.9479143263943628 0.2903074595404179 -0.131072532406718 0.06336221035526715 0.329066082673738 -0.9421787216513943 -0.06336221035526715 -0.329066082673738 0.9421787216513943 0.9885657644415824 -0.03036804094180219 0.1477007497048907 -0.9885657644415824 0.03036804094180219 -0.1477007497048907 -0.001802792156686485 -0.02305023658463695 0.9997326825376031 -0.0008256944294643935 -0.02505255330090537 0.9996857945383711 -0.002734208924138677 -0.02114140788636196 0.9997727566673047 0.002734208924138677 0.02114140788636196 -0.9997727566673047 0.0008256944294643935 0.02505255330090537 -0.9996857945383711 0.001802792156686485 0.02305023658463695 -0.9997326825376031 0.3220491945008595 -0.01398584764411414 0.9466196239181941 -0.3220491945008595 0.01398584764411414 -0.9466196239181941 0.1102607918778887 0.6041870483927864 0.7891771463549068 -0.1102607918778887 -0.6041870483927864 -0.7891771463549068 0.904891680280896 0.4255225800980013 0.01007872934236248 -0.904891680280896 -0.4255225800980013 -0.01007872934236248 0.8988743871289552 0.3942317592744247 -0.1913273533578971 -0.8988743871289552 -0.3942317592744247 0.1913273533578971 0.9959824002825762 0.08218668947580367 -0.0355584926616104 -0.9959824002825762 -0.08218668947580367 0.0355584926616104 -0.6153067761488915 -0.05148347473506788 0.7866047438545368 0.6153067761488915 0.05148347473506788 -0.7866047438545368 -0.8927893756465019 0.2334317597510517 0.3852748944224846 0.8927893756465019 -0.2334317597510517 -0.3852748944224846 -0.1714068147238466 0.9747919519341297 0.1428298089009226 0.1714068147238466 -0.9747919519341297 -0.1428298089009226 -0.9893886561191522 0.002741776618111332 0.1452672358232045 0.9893886561191522 -0.002741776618111332 -0.1452672358232045 -0.5727289759413263 0.02121602657569409 0.8194701949024987 0.5727289759413263 -0.02121602657569409 -0.8194701949024987 -0.2097555208802006 0.0172061271122594 -0.9776024604357706 0.2097555208802006 -0.0172061271122594 0.9776024604357706 -0.2346648726773565 3.783173416404959e-017 0.972076333181361 0.2346648726773565 -3.783173416404959e-017 -0.972076333181361 -0.989789563809418 -0.004340030956380254 0.1424702899037547 0.989789563809418 0.004340030956380254 -0.1424702899037547 -0.4503056651465148 0.01362115755138225 0.8927705595526296 0.4503056651465148 -0.01362115755138225 -0.8927705595526296 -0.9989954996840046 -0.000137660845391611 0.04481040794946183 0.9989954996840046 0.000137660845391611 -0.04481040794946183 -0.9972216916799506 0.07119311484437237 -0.02191889690960671 0.9972216916799506 -0.07119311484437237 0.02191889690960671 0.2214779324102707 0.196197245236413 0.9552246680320364 -0.2214779324102707 -0.196197245236413 -0.9552246680320364 1.780389104542476e-007 0.4337085547787001 -0.9010532112543296 -1.780389104542476e-007 -0.4337085547787001 0.9010532112543296 -0.9865277944392574 0.05217622602417737 -0.1550501603891077 -0.9736896225321698 0.05084994715485541 -0.2221323971137686 0.9736896225321698 -0.05084994715485541 0.2221323971137686 0.9865277944392574 -0.05217622602417737 0.1550501603891077 0.8744760066387074 -0.4712393770442262 0.1150007101551506 -0.8744760066387074 0.4712393770442262 -0.1150007101551506 -0.003554629011209123 -0.01945995380215752 0.9998043182596337 0.003554629011209123 0.01945995380215752 -0.9998043182596337 -0.2602011346471293 0.9646777618329538 0.04113618058727868 0.2602011346471293 -0.9646777618329538 -0.04113618058727868 0.9985425731774548 0.05396970529110465 2.151600848150853e-005 -0.9985425731774548 -0.05396970529110465 -2.151600848150853e-005 -0.3289498256034926 -0.02646299455308964 0.9439765474601131 0.3289498256034926 0.02646299455308964 -0.9439765474601131 -0.9891667803014308 0.007069732576932015 0.1466257127157151 0.9891667803014308 -0.007069732576932015 -0.1466257127157151 -0.2841572966473706 0.02309293508627453 0.9584995290093571 0.2841572966473706 -0.02309293508627453 -0.9584995290093571 -0.1477311316684 0.5587017574653437 -0.8161052989296846 0.1477311316684 -0.5587017574653437 0.8161052989296846 -0.9973266047647974 0.05600939024017728 0.04693177637001751 0.9973266047647974 -0.05600939024017728 -0.04693177637001751 0.6914289920974853 0.004286087141038797 0.7224317118898334 -0.6914289920974853 -0.004286087141038797 -0.7224317118898334 -0.001583130968168075 0.9869731748496333 -0.1608771140453886 -0.001126925678352958 0.9966247613602267 -0.08208419508155551 -0.005838407715201528 0.9856277375830695 -0.1688309092027607 0.005838407715201528 -0.9856277375830695 0.1688309092027607 0.001126925678352958 -0.9966247613602267 0.08208419508155551 0.001583130968168075 -0.9869731748496333 0.1608771140453886 -0.9968756305926255 0.07737442659515952 -0.01588002643654866 0.9968756305926255 -0.07737442659515952 0.01588002643654866 0.447907665072911 0.03186390273533372 0.8935118439457903 -0.447907665072911 -0.03186390273533372 -0.8935118439457903 0.3961548121424567 -0.003715527347467818 0.9181762138461795 -0.3961548121424567 0.003715527347467818 -0.9181762138461795 0.402695768400104 0.4873827922562387 0.7747865073200242 -0.402695768400104 -0.4873827922562387 -0.7747865073200242 8.132231258095106e-007 0.8321193877225259 -0.5545965421598185 -8.132231258095106e-007 -0.8321193877225259 0.5545965421598185 -0.003655777851620025 0.009903831423077426 -0.9999442731529806 0.003655777851620025 -0.009903831423077426 0.9999442731529806 -0.0128535655306012 0.9750745821463159 -0.2215047293069336 0.0005688769515589375 0.9848479174845526 -0.1734193063224333 -0.0005688769515589375 -0.9848479174845526 0.1734193063224333 0.0128535655306012 -0.9750745821463159 0.2215047293069336 0.01108124840155184 0.8707973362884408 0.4915172479647275 -0.01108124840155184 -0.8707973362884408 -0.4915172479647275 0.1752279006153873 0.9590644972035478 0.2224645433538342 5.430323419212678e-007 0.9853891688670527 0.1703178965323498 -5.430323419212678e-007 -0.9853891688670527 -0.1703178965323498 -0.1752279006153873 -0.9590644972035478 -0.2224645433538342 0.998383435854744 0.05683706859506152 -0.0002502886265367268 -0.998383435854744 -0.05683706859506152 0.0002502886265367268 -0.6061240476733609 -0.01969603041895944 0.7951262196769748 0.6061240476733609 0.01969603041895944 -0.7951262196769748 -0.9479154558277739 -0.2903029525775037 0.1310743465656306 0.9479154558277739 0.2903029525775037 -0.1310743465656306 -0.5702310738101326 0.03991203788247619 0.8205141995684235 0.5702310738101326 -0.03991203788247619 -0.8205141995684235 -0.4419261685556237 0.0239478688565466 0.8967317107825372 0.4419261685556237 -0.0239478688565466 -0.8967317107825372 -0.06336302353539842 0.3290683811726526 -0.9421778641853471 0.06336302353539842 -0.3290683811726526 0.9421778641853471 -0.9885656140756707 -0.03036796316458268 0.1477017720964342 0.9885656140756707 0.03036796316458268 -0.1477017720964342 0.001802970942108782 -0.02304999440336087 0.9997326877989871 0.002734444657222303 -0.02114104111121133 0.9997727637784253 0.0008258177220701067 -0.02505243310216891 0.9996857974487541 -0.0008258177220701067 0.02505243310216891 -0.9996857974487541 -0.002734444657222303 0.02114104111121133 -0.9997727637784253 -0.001802970942108782 0.02304999440336087 -0.9997326877989871 -0.322051282173163 -0.01398702650755865 0.9466188962513364 0.322051282173163 0.01398702650755865 -0.9466188962513364 -0.9969246471896264 0.06302065782301529 0.04657944303438513 0.9969246471896264 -0.06302065782301529 -0.04657944303438513 -0.00212881274995628 -0.2683718283930491 0.9633130487444087 -0.001005174475925616 -0.2694076348507848 0.9630257088512118 -0.001639758244104681 -0.2716436840334383 0.9623964983922387 0.001639758244104681 0.2716436840334383 -0.9623964983922387 0.001005174475925616 0.2694076348507848 -0.9630257088512118 0.00212881274995628 0.2683718283930491 -0.9633130487444087 0.001038111635286944 0.9956823341796562 -0.09282031957919484 -0.001038111635286944 -0.9956823341796562 0.09282031957919484 -0.01055405555417334 -0.2587200214695265 0.9658946952966286 0.01055405555417334 0.2587200214695265 -0.9658946952966286 0.001393652670393064 0.9997215447667671 0.02355611728157328 -0.001393652670393064 -0.9997215447667671 -0.02355611728157328 -2.184619363978431e-010 -0.004499848741330991 -0.9999898756294011 2.184619363978431e-010 0.004499848741330991 0.9999898756294011 -0.004163240460725096 0.03105645564005462 -0.9995089614365362 0.004163240460725096 -0.03105645564005462 0.9995089614365362 -0.02234166972565267 0.5339027079899825 -0.8452507013867739 0.02234166972565267 -0.5339027079899825 0.8452507013867739 0.0009277835913001386 0.9998004819989514 0.01995333085657497 -0.0009277835913001386 -0.9998004819989514 -0.01995333085657497 0.1556278945893801 0.2809026446796918 0.9470341401647734 -0.1556278945893801 -0.2809026446796918 -0.9470341401647734 -3.541958887443474e-010 0.9631080259860416 0.2691150874277956 3.541958887443474e-010 -0.9631080259860416 -0.2691150874277956 0.9989955276880921 -0.0001368748650612091 0.04480978603454567 -0.9989955276880921 0.0001368748650612091 -0.04480978603454567 0.9972216595772164 0.07119431950687306 -0.02191644451127155 -0.9972216595772164 -0.07119431950687306 0.02191644451127155 -0.2214778855070592 0.1961979907061468 0.9552245257918122 0.2214778855070592 -0.1961979907061468 -0.9552245257918122 0.9736909147966711 0.05084773715865913 -0.2221272384654028 0.9865278216836982 0.05217386120331387 -0.1550507828137432 -0.9865278216836982 -0.05217386120331387 0.1550507828137432 -0.9736909147966711 -0.05084773715865913 0.2221272384654028 -0.8744793070848513 -0.4712326775356765 0.1150030656241631 0.8744793070848513 0.4712326775356765 -0.1150030656241631 0.003554918847038024 -0.01945946918911573 0.9998043266614068 -0.003554918847038024 0.01945946918911573 -0.9998043266614068 -0.9956402565366229 0.08230549210112352 0.04388946950784167 0.9956402565366229 -0.08230549210112352 -0.04388946950784167 0.8246343825300643 -0.01411444302695114 0.5654899801475696 -0.8246343825300643 0.01411444302695114 -0.5654899801475696 -0.01087594253182367 -0.2146052472578675 0.976640313382278 0.01087594253182367 0.2146052472578675 -0.976640313382278 0.4401942536872691 0.07256629869602126 0.8949654469946131 -0.4401942536872691 -0.07256629869602126 -0.8949654469946131 -0.175225918065263 0.9590652604319062 0.2224628145800227 -0.01108109537805878 0.8707975440991215 0.4915168832463043 0.01108109537805878 -0.8707975440991215 -0.4915168832463043 0.175225918065263 -0.9590652604319062 -0.2224628145800227 0.003655776094791184 0.009903878800838617 -0.9999442726901551 -0.003655776094791184 -0.009903878800838617 0.9999442726901551 -0.005741523756654533 0.633379681744303 0.7738198845070068 0.005741523756654533 -0.633379681744303 -0.7738198845070068 0.997326663603473 0.05600807958972717 0.04693209015413619 -0.997326663603473 -0.05600807958972717 -0.04693209015413619 -0.6914294736212706 0.004286908751857613 0.722431246155069 0.6914294736212706 -0.004286908751857613 -0.722431246155069 0.001126942549455734 0.9966247498934016 -0.08208433407420153 0.001583162336782136 0.9869731804581573 -0.160877079328676 0.005838414458393801 0.9856277529672934 -0.1688308191570955 -0.005838414458393801 -0.9856277529672934 0.1688308191570955 -0.001583162336782136 -0.9869731804581573 0.160877079328676 -0.001126942549455734 -0.9966247498934016 0.08208433407420153 0.9968755542992248 0.07737574505142088 -0.01587839155427141 -0.9968755542992248 -0.07737574505142088 0.01587839155427141 -0.4026962970868477 0.4873823656380145 0.7747865009004961 0.4026962970868477 -0.4873823656380145 -0.7747865009004961 -0.4479081988270762 0.03186402010616231 0.8935115721948757 0.4479081988270762 -0.03186402010616231 -0.8935115721948757 -0.3961550658726484 -0.00371524072142496 0.9181761055319505 0.3961550658726484 0.00371524072142496 -0.9181761055319505 0.01285199485402978 0.9750752153123479 -0.2215020332002622 -0.0005698567566058358 0.9848490615899062 -0.1734128056077704 0.0005698567566058358 -0.9848490615899062 0.1734128056077704 -0.01285199485402978 -0.9750752153123479 0.2215020332002622 -0.9932673995775939 0.1101566052120566 0.03585240946602527 0.9932673995775939 -0.1101566052120566 -0.03585240946602527 -0.01947042315387116 -0.2047452333996747 0.9786216286299428 0.01947042315387116 0.2047452333996747 -0.9786216286299428 -3.649169004302243e-006 0.002404705578097014 -0.9999971086847034 3.649169004302243e-006 -0.002404705578097014 0.9999971086847034 0.004163232182903801 0.03105646358866811 -0.9995089612240387 -0.004163232182903801 -0.03105646358866811 0.9995089612240387 -0.005539235710457793 0.2257622422815508 0.9741666832876962 0.005539235710457793 -0.2257622422815508 -0.9741666832876962 0.005741541568387194 0.6333792388219084 0.7738202469112567 -0.005741541568387194 -0.6333792388219084 -0.7738202469112567 9.129794179690531e-008 0.6271054976389598 0.7789343328105293 -9.129794179690531e-008 -0.6271054976389598 -0.7789343328105293 0.9969248065263503 0.0630173633110655 0.04658049005452914 -0.9969248065263503 -0.0630173633110655 -0.04658049005452914 0.002128530445273913 -0.2683715989666407 0.9633131132846848 0.001639764983917454 -0.2716436780894816 0.9623965000584819 0.001005197093830429 -0.2694069088834613 0.9630259119175667 -0.001005197093830429 0.2694069088834613 -0.9630259119175667 -0.001639764983917454 0.2716436780894816 -0.9623965000584819 -0.002128530445273913 0.2683715989666407 -0.9633131132846848 -0.001037056060731555 0.9956816563005005 -0.09282760269132624 0.001037056060731555 -0.9956816563005005 0.09282760269132624 0.01055406525834097 -0.2587200319160666 0.9658946923924329 -0.01055406525834097 0.2587200319160666 -0.9658946923924329 -0.001392086521481292 0.9997216255719778 0.0235527802783202 0.001392086521481292 -0.9997216255719778 -0.0235527802783202 -0.0009266258992287946 0.9998006871929479 0.01994310038464602 0.0009266258992287946 -0.9998006871929479 -0.01994310038464602 0.02234158084566133 0.5339013868798324 -0.8452515382139852 -0.02234158084566133 -0.5339013868798324 0.8452515382139852 -0.1556280380849506 0.2809020143766772 0.9470343035397156 0.1556280380849506 -0.2809020143766772 -0.9470343035397156 -0.9949922403436752 0.09349449262480997 0.03534432775854178 0.9949922403436752 -0.09349449262480997 -0.03534432775854178 0.771127959994469 0.08874154827928825 0.6304653891561086 -0.771127959994469 -0.08874154827928825 -0.6304653891561086 -0.02384731832305925 -0.1218724595508653 0.9922592448608485 0.02384731832305925 0.1218724595508653 -0.9922592448608485 0.4249547264085437 0.1646834045613325 0.8901083399031425 -0.4249547264085437 -0.1646834045613325 -0.8901083399031425 0.004123423268501376 -0.003767271156499045 -0.9999844024026487 -0.004123423268501376 0.003767271156499045 0.9999844024026487 3.649170348330782e-006 0.002404705577239728 -0.9999971086847054 -3.649170348330782e-006 -0.002404705577239728 0.9999971086847054 -0.0004978541198465981 0.2232745900914064 0.9747554614162414 0.0004978541198465981 -0.2232745900914064 -0.9747554614162414 0.995640216310576 0.08230536122088525 0.04389062746565749 -0.995640216310576 -0.08230536122088525 -0.04389062746565749 -0.8246374845250392 -0.01411276082802709 0.5654854985744786 0.8246374845250392 0.01411276082802709 -0.5654854985744786 0.01087546504665527 -0.2146050196655245 0.9766403687101916 -0.01087546504665527 0.2146050196655245 -0.9766403687101916 -0.4401972825385715 0.07256682050643808 0.894963914919056 0.4401972825385715 -0.07256682050643808 -0.894963914919056 -0.9938736768183237 0.1060759675041956 0.0310323000384265 0.9938736768183237 -0.1060759675041956 -0.0310323000384265 -0.02469285204551572 -0.1223257360684622 0.9921827842455073 0.02469285204551572 0.1223257360684622 -0.9921827842455073 -1.975234189968038e-009 -0.0092096358929908 -0.9999575904040723 1.975234189968038e-009 0.0092096358929908 0.9999575904040723 -0.004123424047886496 -0.003767272097554435 -0.9999844023958895 0.004123424047886496 0.003767272097554435 0.9999844023958895 -0.003656799258033165 0.2025676661135156 0.979261440303104 0.003656799258033165 -0.2025676661135156 -0.979261440303104 -0.005991095453674735 0.2026514220813025 0.9792326117443653 0.005991095453674735 -0.2026514220813025 -0.9792326117443653 0.0004979735973291479 0.2232744541324763 0.97475549249755 -0.0004979735973291479 -0.2232744541324763 -0.97475549249755 0.005538729495513114 0.2257617772353544 0.9741667939398827 -0.005538729495513114 -0.2257617772353544 -0.9741667939398827 1.270040682074497e-007 0.229068254948915 0.973410362886405 -1.270040682074497e-007 -0.229068254948915 -0.973410362886405 0.9932672326084836 0.1101579073625746 0.03585303434555028 -0.9932672326084836 -0.1101579073625746 -0.03585303434555028 0.01946975905828728 -0.204745561519798 0.9786215731937217 -0.01946975905828728 0.204745561519798 -0.9786215731937217 -0.9939120391092525 0.1054061652209854 0.03206865833012031 0.9939120391092525 -0.1054061652209854 -0.03206865833012031 0.9242746092440277 -0.03269483896492043 0.3803255108612332 -0.9242746092440277 0.03269483896492043 -0.3803255108612332 -0.02133260597046953 -0.08559868170729368 0.9961012928475107 0.02133260597046953 0.08559868170729368 -0.9961012928475107 0.02101322130799316 -0.00641634108519356 -0.999758608413721 -0.02101322130799316 0.00641634108519356 0.999758608413721 -0.001748214336487093 0.2024396979067454 0.9792931698209986 0.001748214336487093 -0.2024396979067454 -0.9792931698209986 0.9166413971056587 -0.0669061911394007 0.3940712000380186 -0.9166413971056587 0.0669061911394007 -0.3940712000380186 -0.4249567961679917 0.1646831342390139 0.8901074017711855 0.4249567961679917 -0.1646831342390139 -0.8901074017711855 0.994992237216198 0.09349442076486945 0.03534460588755371 -0.994992237216198 -0.09349442076486945 -0.03534460588755371 -0.7711318273143256 0.08873899184190973 0.6304610188027099 0.7711318273143256 -0.08873899184190973 -0.6304610188027099 0.02384718136722833 -0.1218726623496858 0.9922592232439254 -0.02384718136722833 0.1218726623496858 -0.9922592232439254 -0.9931293348599229 0.1133726637291741 0.02899591970672322 0.9931293348599229 -0.1133726637291741 -0.02899591970672322 -0.01798191713551359 -0.08803433048368339 0.9959551231418118 0.01798191713551359 0.08803433048368339 -0.9959551231418118 0.01427091325176062 -0.06851877216335224 -0.997547752689658 -0.01427091325176062 0.06851877216335224 0.997547752689658 -0.02101322846933548 -0.006416343807304026 -0.9997586082457315 0.02101322846933548 0.006416343807304026 0.9997586082457315 -0.003101143724149982 0.1954095786057839 0.980716819217817 0.003101143724149982 -0.1954095786057839 -0.980716819217817 -0.005416480598996744 0.1962979641407612 0.9805293320508637 0.005416480598996744 -0.1962979641407612 -0.9805293320508637 0.9817272518583401 -0.02642165932822021 0.1884502557096029 -0.9817272518583401 0.02642165932822021 -0.1884502557096029 0.001748277811602291 0.2024400378841402 0.9792930994274193 -0.001748277811602291 -0.2024400378841402 -0.9792930994274193 0.003656811932388367 0.2025680473072131 0.979261361402886 -0.003656811932388367 -0.2025680473072131 -0.979261361402886 0.005990923095397907 0.2026516007718099 0.9792325758189869 -0.005990923095397907 -0.2026516007718099 -0.9792325758189869 -2.83832460254903e-009 0.2145028510253935 0.9767233625249155 2.83832460254903e-009 -0.2145028510253935 -0.9767233625249155 0.9938735231494315 0.1060775467690079 0.03103182324655636 -0.9938735231494315 -0.1060775467690079 -0.03103182324655636 0.02469291859595026 -0.1223257281918692 0.9921827835603391 -0.02469291859595026 0.1223257281918692 -0.9921827835603391 0.00748251340675228 0.9999710413922299 -0.001388657645822813 -0.0007751097969328722 0.9999996026545626 0.000440335690215953 -0.03029640124837576 0.9994606427639767 0.01267089725377578 0.03029640124837576 -0.9994606427639767 -0.01267089725377578 0.0007751097969328722 -0.9999996026545626 -0.000440335690215953 -0.00748251340675228 -0.9999710413922299 0.001388657645822813 0.989503388961654 -0.02233416760546805 0.1427733455192977 -0.989503388961654 0.02233416760546805 -0.1427733455192977 -3.404876009399591e-010 -0.08815295950554364 -0.9961069499458449 3.404876009399591e-010 0.08815295950554364 0.9961069499458449 0.0411386407770415 -3.064684165570203e-018 -0.9991534477921885 -0.0411386407770415 3.064684165570203e-018 0.9991534477921885 -0.01427092404631581 -0.0685187381006679 -0.9975477548749014 0.01427092404631581 0.0685187381006679 0.9975477548749014 -0.004907800722363624 0.2005341877099537 0.9796744117570789 0.004907800722363624 -0.2005341877099537 -0.9796744117570789 -0.9242723716676167 -0.03269417253723511 0.3803310059067297 -0.9166378344760666 -0.06690351820570036 0.3940799406957 0.9166378344760666 0.06690351820570036 -0.3940799406957 0.9242723716676167 0.03269417253723511 -0.3803310059067297 0.9939122830165466 0.1054039787532497 0.03206828545183944 -0.9939122830165466 -0.1054039787532497 -0.03206828545183944 0.02133270175206617 -0.08559872865015414 0.9961012867622624 -0.02133270175206617 0.08559872865015414 -0.9961012867622624 0.04084427492219095 0.9991334508123856 -0.00800579001814427 -0.04084427492219095 -0.9991334508123856 0.00800579001814427 -0.02589161929896242 0.9996281125004789 -0.008559249313332249 -0.01033024795755935 0.9999409324432032 -0.003378994192503816 -0.02567501078340835 0.9996355603729615 -0.008339080231465297 0.02567501078340835 -0.9996355603729615 0.008339080231465297 0.01033024795755935 -0.9999409324432032 0.003378994192503816 0.02589161929896242 -0.9996281125004789 0.008559249313332249 0.001654889868512676 -0.4444033375107274 -0.8958252814856531 -0.001654889868512676 0.4444033375107274 0.8958252814856531 0 -1 0 0 -1 0 0 -0.9990387165311067 -0.04383654721666857 -0 0.9990387165311067 0.04383654721666857 -0 1 -0 -0 1 -0 -0.041138663034018 -6.129374969030033e-018 -0.9991534468757908 0.041138663034018 6.129374969030033e-018 0.9991534468757908 0 1 0 -0.01356751355233308 0.9998984483959967 -0.004360673260583247 0.01356751355233308 -0.9998984483959967 0.004360673260583247 -0 -1 -0 0.004907790606368402 0.2005341840537439 0.9796744125561631 -0.004907790606368402 -0.2005341840537439 -0.9796744125561631 0.00310114401148762 0.1954095771429339 0.9807168195083839 -0.00310114401148762 -0.1954095771429339 -0.9807168195083839 0.00541648995331054 0.1962979667575549 0.9805293314753187 -0.00541648995331054 -0.1962979667575549 -0.9805293314753187 -0.9817269690373728 -0.02642036875922447 0.1884519099911692 0.9817269690373728 0.02642036875922447 -0.1884519099911692 -4.734138847979123e-009 0.2326694570985017 0.9725558717798625 4.734138847979123e-009 -0.2326694570985017 -0.9725558717798625 0.9931295480912079 0.1133709359390444 0.02899537191446477 -0.9931295480912079 -0.1133709359390444 -0.02899537191446477 0.0179820440594617 -0.08803435978545028 0.9959551182601603 -0.0179820440594617 0.08803435978545028 -0.9959551182601603 -0.03887165794655145 0.9989838002767033 0.02281142242829177 0.03887165794655145 -0.9989838002767033 -0.02281142242829177 -0.9973482542834168 -0.01150372475800906 -0.0718618396265561 -0.9976513058438805 -0.04571807180863672 -0.05100715496967237 -0.999705072602087 -0.009892700087384557 -0.02217887054467122 0.999705072602087 0.009892700087384557 0.02217887054467122 0.9976513058438805 0.04571807180863672 0.05100715496967237 0.9973482542834168 0.01150372475800906 0.0718618396265561 2.961086036837299e-010 -0.4429273754907279 -0.8965574939962833 -2.961086036837299e-010 0.4429273754907279 0.8965574939962833 -0.001654890613376401 -0.4444033561486889 -0.8958252722383084 0.001654890613376401 0.4444033561486889 0.8958252722383084 -3.394031304407869e-019 -0.9994409791871446 -0.03343245610842094 3.394031304407869e-019 0.9994409791871446 0.03343245610842094 0 -1 0 0 -1 0 -4.805460757006482e-019 -0.9990387077873204 -0.04383674648786176 4.805460757006482e-019 0.9990387077873204 0.04383674648786176 -0 1 -0 -0 1 -0 -0.0008164578700198733 0.9999981144611564 -0.00176195081614317 0.0008164578700198733 -0.9999981144611564 0.00176195081614317 -0.9895034220085447 -0.02233271772348092 0.1427733432839038 0.9895034220085447 0.02233271772348092 -0.1427733432839038 9.255161719245658e-010 0.9999676468122628 -0.008043962254118291 -9.255161719245658e-010 -0.9999676468122628 0.008043962254118291 0.0007751050476572073 0.9999996026584948 0.0004403351199602355 -0.007482544509399058 0.9999710411432887 -0.001388669317023434 0.03029662795841154 0.9994606353720725 0.01267093824475535 -0.03029662795841154 -0.9994606353720725 -0.01267093824475535 0.007482544509399058 -0.9999710411432887 0.001388669317023434 -0.0007751050476572073 -0.9999996026584948 -0.0004403351199602355 0.1045832752325765 0.9943930580433587 -0.01564559544423735 -0.1045832752325765 -0.9943930580433587 0.01564559544423735 -0.9908954987600042 -0.08453192428526146 -0.1047877107002216 0.9908954987600042 0.08453192428526146 0.1047877107002216 -0.987600324858768 -0.072703700674905 -0.1391393914282716 0.987600324858768 0.072703700674905 0.1391393914282716 0.0005327402026250499 -0.2855058741792734 -0.958376811070158 -0.0005327402026250499 0.2855058741792734 0.958376811070158 0.9976185190063851 -0.04573625020724208 -0.05162834446781926 0.9932415657032433 -0.09013428504885948 -0.07312320300766836 0.9997023733211127 -0.009759694602735259 -0.02235873738375898 0.9973354014790976 -0.01165276589655645 -0.07201603990422566 -0.9932415657032433 0.09013428504885948 0.07312320300766836 -0.9997023733211127 0.009759694602735259 0.02235873738375898 -0.9973354014790976 0.01165276589655645 0.07201603990422566 -0.9976185190063851 0.04573625020724208 0.05162834446781926 1.410291816654595e-018 -0.9999323261610292 0.0116337052650082 -1.410291816654595e-018 0.9999323261610292 -0.0116337052650082 3.123119780309943e-019 -0.9994409852759545 -0.03343227408701486 -3.123119780309943e-019 0.9994409852759545 0.03343227408701486 0 1 0 0.0008164581756783618 0.9999981144609226 -0.001761950807225865 -0.0008164581756783618 -0.9999981144609226 0.001761950807225865 -0 -1 -0 0.01033025013843936 0.9999409323895296 -0.003379003408602833 0.01356758032274603 0.9998984472588524 -0.004360726260850447 -0.01356758032274603 -0.9998984472588524 0.004360726260850447 -0.01033025013843936 -0.9999409323895296 0.003379003408602833 0.02589163339415156 0.9996281121180106 -0.008559251343714632 0.02567508100579211 0.9996355580756299 -0.008339139414213367 -0.02567508100579211 -0.9996355580756299 0.008339139414213367 -0.02589163339415156 -0.9996281121180106 0.008559251343714632 -7.364137691395697e-010 0.9999359938074939 -0.01131407478406496 7.364137691395697e-010 -0.9999359938074939 0.01131407478406496 -0.04084474853355217 0.9991334304944088 -0.008005909423994038 0.04084474853355217 -0.9991334304944088 0.008005909423994038 0.08663380591301835 0.9962037664858618 -0.008522869963094761 -0.08663380591301835 -0.9962037664858618 0.008522869963094761 -0.9967825298993301 -0.0447105348500445 -0.06652485370832326 0.9967825298993301 0.0447105348500445 0.06652485370832326 -0.8783033298547853 -0.2320437595006832 -0.4180178877067167 0.8783033298547853 0.2320437595006832 0.4180178877067167 -0.000532740161792093 -0.2855057619596127 -0.9583768445010455 0.000532740161792093 0.2855057619596127 0.9583768445010455 2.537875881418471e-010 -0.2697717871999729 -0.9629242871747148 -2.537875881418471e-010 0.2697717871999729 0.9629242871747148 0.990690887480761 -0.08575286944409223 -0.1057261124069503 -0.990690887480761 0.08575286944409223 0.1057261124069503 0.9875995101078402 -0.07270673036156833 -0.1391435912821163 -0.9875995101078402 0.07270673036156833 0.1391435912821163 -4.820625318444053e-019 -0.9995796764235522 -0.02899086892431474 4.820625318444053e-019 0.9995796764235522 0.02899086892431474 -2.652849202070998e-019 -0.9999323232579478 0.01163395478601814 2.652849202070998e-019 0.9999323232579478 -0.01163395478601814 0.03887190050625438 0.9989837896533671 0.02281147432387656 -0.03887190050625438 -0.9989837896533671 -0.02281147432387656 -0.02212740826631281 0.9987424994696821 0.04498663753236129 0.02212740826631281 -0.9987424994696821 -0.04498663753236129 -0.1337631166327554 0.5108285547050319 -0.8492123505500023 0.1337631166327554 -0.5108285547050319 0.8492123505500023 -0.9323640263889717 -0.1914068041724176 -0.3066932630695479 0.9323640263889717 0.1914068041724176 0.3066932630695479 0.9967824449025985 -0.04470756018247908 -0.06652812635666128 -0.9967824449025985 0.04470756018247908 0.06652812635666128 0.878304663953519 -0.2320436175285829 -0.4180151634112627 -0.878304663953519 0.2320436175285829 0.4180151634112627 -3.173857528627368e-018 -0.999448507723101 -0.0332066320193234 3.173857528627368e-018 0.999448507723101 0.0332066320193234 5.592757879193317e-019 -0.9995796950832848 -0.02899022554598833 -5.592757879193317e-019 0.9995796950832848 0.02899022554598833 -0.1045815532024361 0.9943932453543304 -0.01564520129139864 0.1045815532024361 -0.9943932453543304 0.01564520129139864 -0.1210075744333001 0.9867713021129483 0.1078868122436016 0.1210075744333001 -0.9867713021129483 -0.1078868122436016 -0.462088132140393 0.7429386187509101 -0.4842693123701861 0.462088132140393 -0.7429386187509101 0.4842693123701861 -8.717775860082275e-019 -0.9999830350033698 -0.005824921068072554 8.717775860082275e-019 0.9999830350033698 0.005824921068072554 -0.9965103101143514 -0.07678665601015007 -0.03272630890549316 0.9965103101143514 0.07678665601015007 0.03272630890549316 0.1337633194460965 0.5108296595896843 -0.8492116539792946 -0.1337633194460965 -0.5108296595896843 0.8492116539792946 0.9323701490761447 -0.1913997652358318 -0.3066790422891596 -0.9323701490761447 0.1913997652358318 0.3066790422891596 7.973626678796302e-018 -0.9994485322936126 -0.03320589249129963 -7.973626678796302e-018 0.9994485322936126 0.03320589249129963 -0.08663352748993097 0.9962037903422601 -0.008522911613152079 0.08663352748993097 -0.9962037903422601 0.008522911613152079 -0.4469774344299156 0.513470208436643 -0.7325022308215047 0.4469774344299156 -0.513470208436643 0.7325022308215047 -0.9256712522559258 0.167853255079391 -0.3390545936957635 0.9256712522559258 -0.167853255079391 0.3390545936957635 -2.319304073202425e-018 -0.9649737693459085 -0.2623463826210484 2.319304073202425e-018 0.9649737693459085 0.2623463826210484 -0.9963121731378012 -0.07650231110023816 -0.03885164158377934 0.9963121731378012 0.07650231110023816 0.03885164158377934 0 -0.9656326893104121 -0.259910579498298 -0 0.9656326893104121 0.259910579498298 0.4620909004634785 0.7429386393024869 -0.4842666393013472 -0.4620909004634785 -0.7429386393024869 0.4842666393013472 3.720313159902421e-018 -0.9999830322203812 -0.005825398813118429 -3.720313159902421e-018 0.9999830322203812 0.005825398813118429 0.996510362992616 -0.07678573609388789 -0.03272685717945185 -0.996510362992616 0.07678573609388789 0.03272685717945185 0.02212732636862875 0.9987425008261646 0.04498664769990116 -0.02212732636862875 -0.9987425008261646 -0.04498664769990116 5.197460848859656e-018 0.9771494445064004 -0.2125534358716255 -5.197460848859656e-018 -0.9771494445064004 0.2125534358716255 -8.475559142478103e-019 0.9884947513402278 -0.1512551704002918 8.475559142478103e-019 -0.9884947513402278 0.1512551704002918 -0.9692342821730617 0.1297429946546814 -0.2091689785759472 0.9692342821730617 -0.1297429946546814 0.2091689785759472 -4.134891109695223e-018 -0.8867350737852805 -0.4622779563412182 -4.134891109695223e-018 -0.8867350737852805 -0.4622779563412182 4.134891109695223e-018 0.8867350737852805 0.4622779563412182 4.134891109695223e-018 0.8867350737852805 0.4622779563412182 -0.9962900253079109 -0.08038413385825094 -0.03073396322996985 0.9962900253079109 0.08038413385825094 0.03073396322996985 0.9256731243617642 0.1678507207473665 -0.3390507371750123 -0.9256731243617642 -0.1678507207473665 0.3390507371750123 0.4469772352428111 0.5134695466944448 -0.7325028162349238 -0.4469772352428111 -0.5134695466944448 0.7325028162349238 5.661456373090657e-018 -0.9649736978135386 -0.2623466457343516 -5.661456373090657e-018 0.9649736978135386 0.2623466457343516 0.9963122674049834 -0.07650133516965876 -0.03885114587242723 -0.9963122674049834 0.07650133516965876 0.03885114587242723 -2.234569429237177e-018 -0.9656327065041755 -0.2599105156191658 2.234569429237177e-018 0.9656327065041755 0.2599105156191658 0.1210067927792891 0.9867714148828135 0.1078866575227938 -0.1210067927792891 -0.9867714148828135 -0.1078866575227938 0 0.9866422485374621 -0.1629020362087006 -0 -0.9866422485374621 0.1629020362087006 -0.9967221314255439 0.07840569708791045 -0.01993838987179611 0.9967221314255439 -0.07840569708791045 0.01993838987179611 0 0.9851390618417552 -0.1717586353973112 -0 -0.9851390618417552 0.1717586353973112 2.166155574562098e-017 -0.7895706811088429 -0.6136596284043119 -2.166155574562098e-017 0.7895706811088429 0.6136596284043119 8.914895848239008e-018 -0.7865841596254477 -0.6174830846479343 -8.914895848239008e-018 0.7865841596254477 0.6174830846479343 -0.9962003996229454 -0.08647837290293989 -0.01030799743615296 0.9962003996229454 0.08647837290293989 0.01030799743615296 -1.677845589769437e-018 0.9771494362869531 -0.2125534736580186 1.971565419576037e-019 0.9884947661902032 -0.1512550733515274 -1.971565419576037e-019 -0.9884947661902032 0.1512550733515274 1.677845589769437e-018 -0.9771494362869531 0.2125534736580186 0.9692337674164756 0.1297439298009559 -0.2091707837616668 -0.9692337674164756 -0.1297439298009559 0.2091707837616668 -1.128780193505647e-018 -0.8867350737852805 -0.4622779563412182 -1.021695108512319e-017 -0.8867350737852805 -0.4622779563412181 1.021695108512319e-017 0.8867350737852805 0.4622779563412181 1.128780193505647e-018 0.8867350737852805 0.4622779563412182 0.9962901134102942 -0.08038250755747767 -0.03073536073767557 -0.9962901134102942 0.08038250755747767 0.03073536073767557 -0.9965359278681637 0.0774194785836184 -0.03037052524699822 0.9965359278681637 -0.0774194785836184 0.03037052524699822 0 0.9856521593871221 -0.1687892789708608 -3.533073050874074e-018 0.9801115654826196 -0.1984472705965206 3.533073050874074e-018 -0.9801115654826196 0.1984472705965206 -0 -0.9856521593871221 0.1687892789708608 2.342884402904967e-017 -0.5793540694270123 -0.8150759855610766 -2.342884402904967e-017 0.5793540694270123 0.8150759855610766 1.489903192868899e-017 -0.5683954036936462 -0.8227555317710948 -1.489903192868899e-017 0.5683954036936462 0.8227555317710948 -0.9973577217584451 -0.06876329520585735 -0.02343467689634523 0.9973577217584451 0.06876329520585735 0.02343467689634523 1.257941559232004e-018 0.9866422701885081 -0.1629019050756211 -1.257941559232004e-018 -0.9866422701885081 0.1629019050756211 0.9967223493904013 0.07840420476392516 -0.01993336150816342 -0.9967223493904013 -0.07840420476392516 0.01993336150816342 0 0.9851390633231312 -0.1717586269007288 -0 -0.9851390633231312 0.1717586269007288 -1.793119758484267e-017 -0.7895708206534031 -0.6136594488580058 1.793119758484267e-017 0.7895708206534031 0.6136594488580058 -2.200042870792001e-017 -0.7865842902176107 -0.6174829182923667 2.200042870792001e-017 0.7865842902176107 0.6174829182923667 0.9962004199280746 -0.08647795103243808 -0.01030957420843498 -0.9962004199280746 0.08647795103243808 0.01030957420843498 -3.550744942707794e-018 0.9800675422696868 -0.1986645730608647 5.086179847342662e-018 0.9205827353896554 -0.3905475992788838 -5.086179847342662e-018 -0.9205827353896554 0.3905475992788838 3.550744942707794e-018 -0.9800675422696868 0.1986645730608647 -0.9961397036751403 0.08149595572681781 -0.03262054509318518 0.9961397036751403 -0.08149595572681781 0.03262054509318518 1.727393988152528e-018 -0.3156358666850648 -0.9488803927060397 -1.727393988152528e-018 0.3156358666850648 0.9488803927060397 -0.999042756123289 -0.01552591487896637 -0.04089642288457383 0.999042756123289 0.01552591487896637 0.04089642288457383 7.537306358416392e-018 -0.3069588727487859 -0.9517227802468504 -7.537306358416392e-018 0.3069588727487859 0.9517227802468504 0.9965360246287977 0.07741852079323409 -0.03036979182048899 -0.9965360246287977 -0.07741852079323409 0.03036979182048899 0 0.9856521659491153 -0.168789240651819 0 0.9801115435030257 -0.1984473791515443 -0 -0.9801115435030257 0.1984473791515443 -0 -0.9856521659491153 0.168789240651819 -1.83948316947542e-017 -0.579354092442289 -0.8150759692018723 1.83948316947542e-017 0.579354092442289 0.8150759692018723 -2.337933897370917e-017 -0.5683954594514145 -0.8227554932511939 2.337933897370917e-017 0.5683954594514145 0.8227554932511939 0.9973577533466965 -0.068763183598015 -0.02343365999360792 -0.9973577533466965 0.068763183598015 0.02343365999360792 -8.536066060444724e-018 0.9205827353896554 -0.3905475992788838 8.536066060444724e-018 -0.9205827353896554 0.3905475992788838 -0.9958122648008684 0.0910603185000064 -0.008121063159624241 0.9958122648008684 -0.0910603185000064 0.008121063159624241 -1.469169304093626e-017 0.770026188855712 -0.6380122792520121 1.469169304093626e-017 -0.770026188855712 0.6380122792520121 3.962650399660909e-018 -0.06049888400598817 -0.9981682648902588 -3.056940938661591e-019 -0.05846806307024186 -0.9982892795181236 3.056940938661591e-019 0.05846806307024186 0.9982892795181236 -3.962650399660909e-018 0.06049888400598817 0.9981682648902588 -0.9979843206367407 0.05931566859490737 -0.02255985865119938 0.9979843206367407 -0.05931566859490737 0.02255985865119938 0 0.9800675200453534 -0.1986646826996457 0 0.920584787765236 -0.3905427614682356 -0 -0.920584787765236 0.3905427614682356 -0 -0.9800675200453534 0.1986646826996457 0.9961398268241957 0.08149416357364148 -0.0326212617489593 -0.9961398268241957 -0.08149416357364148 0.0326212617489593 -1.727394869965462e-018 -0.3156357440700538 -0.9488804334927259 1.727394869965462e-018 0.3156357440700538 0.9488804334927259 0.9990426691746329 -0.01552723854632595 -0.04089804434872643 -0.9990426691746329 0.01552723854632595 0.04089804434872643 2.287870097440066e-018 -0.3069588983703188 -0.9517227719831444 -2.287870097440066e-018 0.3069588983703188 0.9517227719831444 -1.299528321634852e-017 0.773243148676752 -0.6341096380157475 -3.446381906211511e-017 0.5575799631598709 -0.8301232346360611 3.446381906211511e-017 -0.5575799631598709 0.8301232346360611 1.299528321634852e-017 -0.773243148676752 0.6341096380157475 1.226597955325728e-017 0.2590089053646115 -0.9658749333851801 -1.226597955325728e-017 -0.2590089053646115 0.9658749333851801 -1.310032251613415e-017 0.247952238821439 -0.9687722576867258 1.310032251613415e-017 -0.247952238821439 0.9687722576867258 -6.811152637076217e-018 0.920584787765236 -0.3905427614682356 6.811152637076217e-018 -0.920584787765236 0.3905427614682356 0.9958123003023679 0.09105983567328287 -0.008122123716212848 -0.9958123003023679 -0.09105983567328287 0.008122123716212848 1.771824390044765e-017 0.7700293506231545 -0.6380084632502011 -1.771824390044765e-017 -0.7700293506231545 0.6380084632502011 1.378782026995277e-017 -0.05846796210489705 -0.9982892854314825 1.578927059184854e-018 -0.06049903045249035 -0.9981682560141394 -1.578927059184854e-018 0.06049903045249035 0.9981682560141394 -1.378782026995277e-017 0.05846796210489705 0.9982892854314825 0.9979844310784948 0.05931458544750328 -0.02255782077515118 -0.9979844310784948 -0.05931458544750328 0.02255782077515118 1.555532412505964e-018 0.5688883171801603 -0.8224147874253753 -1.555532412505964e-018 -0.5688883171801603 0.8224147874253753 1.223150988481862e-017 0.5575780441067687 -0.8301245236288773 -1.191923178912958e-017 0.7732464394526523 -0.6341056251712294 1.191923178912958e-017 -0.7732464394526523 0.6341056251712294 -1.223150988481862e-017 -0.5575780441067687 0.8301245236288773 -2.087010853048018e-017 0.2590068889601615 -0.9658754741016975 2.087010853048018e-017 -0.2590068889601615 0.9658754741016975 -3.148965933286888e-018 0.2479506096265221 -0.9687726746692622 3.148965933286888e-018 -0.2479506096265221 0.9687726746692622 -2.338814768352773e-017 0.5688867081291823 -0.8224159004505826 2.338814768352773e-017 -0.5688867081291823 0.8224159004505826</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1120\" source=\"#ID1492\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1490\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1488\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1489\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"1256\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 0 2 8 9 3 5 1 10 2 3 11 4 6 12 1 4 13 7 6 0 14 15 5 7 8 2 16 17 3 9 14 0 8 9 5 15 2 10 18 19 11 3 1 12 10 11 13 4 20 12 6 7 13 21 6 14 22 23 15 7 16 2 18 19 3 17 8 16 24 25 17 9 14 8 26 27 9 15 18 10 28 29 11 19 10 12 30 31 13 11 12 20 32 33 21 13 20 6 34 35 7 21 36 6 22 23 7 37 38 14 26 27 15 39 16 18 40 41 19 17 16 42 24 25 43 17 26 8 24 25 9 27 18 28 44 45 29 19 10 30 28 29 31 11 12 46 30 31 47 13 48 12 32 33 13 49 32 20 50 51 21 33 20 34 52 53 35 21 6 54 34 35 55 7 36 22 56 57 23 37 6 58 54 55 59 7 38 26 60 61 27 39 40 18 44 45 19 41 16 40 42 43 41 17 24 42 62 63 43 25 26 24 64 65 25 27 28 66 44 45 67 29 28 30 68 69 31 29 70 12 48 49 13 71 46 72 30 31 73 47 74 75 76 77 78 79 50 80 32 33 81 51 20 82 50 51 83 21 20 52 84 85 53 21 52 34 86 87 35 53 34 54 88 89 55 35 54 90 91 92 93 55 38 60 91 92 61 39 60 26 64 65 27 61 40 44 94 95 45 41 40 96 42 43 97 41 42 98 62 63 99 43 24 62 64 65 63 25 44 66 100 101 67 45 28 68 66 67 69 29 102 70 48 49 71 103 46 104 72 73 105 47 106 107 108 109 110 111 76 75 112 113 78 77 114 74 76 77 79 115 32 80 116 117 81 33 50 118 80 81 119 51 20 120 82 83 121 21 50 82 122 123 83 51 20 84 120 121 85 21 84 52 124 125 53 85 124 52 86 87 53 125 86 34 88 89 35 87 88 54 91 92 55 89 96 40 94 95 41 97 94 44 100 101 45 95 98 42 96 97 43 99 98 126 62 63 127 99 62 128 64 65 129 63 100 66 130 131 67 101 102 132 70 71 133 103 134 74 114 115 79 135 104 136 72 73 137 105 107 138 108 109 139 110 140 107 106 111 110 141 142 143 144 145 146 147 148 76 112 113 77 149 150 114 76 77 115 151 116 80 152 153 81 117 80 118 154 155 119 81 118 50 122 123 51 119 82 120 156 157 121 83 122 82 156 157 83 123 120 84 158 159 85 121 158 84 124 125 85 159 96 94 160 161 95 97 160 94 100 101 95 161 96 160 98 99 161 97 98 160 162 163 161 99 62 126 128 129 127 63 100 164 165 166 167 101 66 168 130 131 169 67 170 132 102 103 133 171 172 134 114 115 135 173 174 140 106 111 141 175 104 176 136 137 177 105 108 138 178 179 139 109 180 181 182 183 184 185 186 187 180 185 188 189 144 143 190 191 146 145 192 193 194 195 196 197 198 199 200 201 202 203 172 114 150 151 115 173 204 150 76 77 151 205 144 190 206 207 191 145 156 120 158 159 121 157 100 208 160 161 209 101 160 210 162 163 211 161 128 126 212 213 127 129 164 214 165 166 215 167 100 165 216 217 166 101 130 168 218 219 169 131 220 221 222 223 224 225 170 226 132 133 227 171 228 134 172 173 135 229 230 140 174 175 141 231 136 176 232 233 177 137 182 204 234 235 205 183 108 178 236 237 179 109 181 204 182 183 205 184 187 181 180 185 184 188 238 187 186 189 188 239 240 193 192 197 196 241 192 194 242 243 195 197 198 244 199 202 245 203 204 76 246 247 77 205 172 150 248 249 151 173 181 150 204 205 151 184 208 100 216 217 101 209 160 208 250 251 209 161 162 210 252 253 211 163 254 160 255 256 161 257 258 214 164 167 215 259 260 261 262 263 264 265 266 267 261 264 268 269 168 270 218 219 271 169 272 220 222 223 225 273 220 274 221 224 275 225 276 226 170 171 227 277 278 228 172 173 229 279 280 238 186 189 239 281 282 230 174 175 231 283 176 284 232 233 285 177 204 246 234 235 247 205 236 178 286 287 179 237 181 187 248 249 188 184 238 288 187 188 289 239 290 240 192 197 241 291 292 193 240 241 196 293 192 242 290 291 243 197 198 294 244 245 295 203 234 246 296 297 247 235 278 172 248 249 173 279 181 248 150 151 249 184 208 216 298 299 217 209 250 208 300 301 209 251 255 160 250 251 161 256 212 302 255 256 303 213 258 304 214 215 305 259 260 266 261 264 269 265 306 260 262 263 265 307 266 308 267 268 309 269 274 310 221 224 311 275 218 270 312 313 271 219 272 222 314 315 223 273 316 317 318 319 320 321 322 316 323 324 321 325 326 226 276 277 227 327 328 228 278 279 229 329 330 238 280 281 239 331 332 230 282 283 231 333 232 284 334 335 285 233 236 286 336 337 287 237 187 288 248 249 289 188 238 338 288 289 339 239 240 290 340 341 291 241 342 292 240 241 293 343 242 344 290 291 345 243 278 248 288 289 249 279 346 298 216 217 299 347 348 208 298 299 209 349 300 208 350 351 209 301 250 300 352 353 301 251 255 250 354 355 251 256 354 212 255 256 213 355 356 304 258 259 305 357 306 262 358 359 263 307 360 266 260 265 269 361 360 260 306 307 265 361 362 363 364 365 366 367 346 216 368 369 217 347 266 370 308 309 371 269 274 372 310 311 373 275 270 374 312 313 375 271 317 376 377 378 379 320 314 222 380 381 223 315 318 317 377 378 320 319 323 316 318 319 321 324 382 322 323 324 325 383 384 326 276 277 327 385 386 328 278 279 329 387 238 330 338 339 331 239 388 330 280 281 331 389 390 332 282 283 333 391 334 284 392 393 285 335 386 288 338 339 289 387 290 394 340 341 395 291 396 240 340 341 241 397 342 240 398 399 241 343 290 344 394 395 345 291 386 278 288 289 279 387 346 400 298 299 401 347 402 208 348 349 209 403 348 298 404 405 299 349 350 208 402 403 209 351 300 350 406 407 351 301 352 300 406 407 301 353 354 250 352 353 251 355 356 408 304 305 409 357 410 306 358 359 307 411 360 377 266 269 378 361 412 360 306 307 361 413 362 364 414 415 365 367 346 368 416 417 369 347 396 340 418 419 341 397 420 421 422 423 424 425 372 426 310 311 427 373 428 322 382 383 325 429 312 374 430 431 375 313 377 376 432 433 379 378 314 380 434 435 381 315 360 318 377 378 319 361 323 318 412 413 319 324 436 382 323 324 383 437 384 438 326 327 439 385 440 328 386 387 329 441 330 442 338 339 443 331 444 330 388 389 331 445 446 332 390 391 333 447 284 448 392 393 449 285 450 446 390 391 447 451 452 453 454 455 456 457 458 386 338 339 387 459 340 394 418 419 395 341 398 240 396 397 241 399 346 460 400 401 461 347 404 298 400 401 299 405 402 348 462 463 349 403 462 348 404 405 349 463 350 402 464 465 403 351 406 350 464 465 351 407 356 466 408 409 467 357 410 358 468 469 359 411 412 306 410 411 307 413 266 377 432 433 378 269 412 318 360 361 319 413 414 364 470 471 365 415 472 421 420 425 424 473 372 474 426 427 475 373 476 428 382 383 429 477 374 478 430 431 479 375 376 480 432 433 481 379 434 380 482 483 381 435 436 323 412 413 324 437 484 382 436 437 383 485 486 438 384 385 439 487 438 488 326 327 489 439 458 440 386 387 441 459 444 442 330 331 443 445 458 338 442 443 339 459 490 444 388 389 445 491 448 492 392 393 493 449 494 495 326 327 496 497 498 446 450 451 447 499 452 454 500 501 455 457 502 421 472 473 424 503 464 402 462 463 403 465 466 504 408 409 505 467 506 410 468 469 411 507 436 412 410 411 413 437 474 508 426 427 509 475 510 428 476 477 429 511 476 382 484 485 383 477 478 512 430 431 513 479 484 436 506 507 437 485 514 438 486 487 439 515 516 440 458 459 441 517 518 519 520 521 522 523 488 524 326 327 525 489 444 526 442 443 527 445 528 458 442 443 459 529 530 444 490 491 445 531 492 532 392 393 533 493 448 534 492 493 535 449 536 448 537 538 449 539 524 494 326 327 497 525 540 530 490 491 531 541 542 543 540 541 544 545 546 504 466 467 505 547 506 468 548 549 469 507 436 410 506 507 411 437 474 550 508 509 551 475 552 510 476 477 511 553 554 476 484 485 477 555 430 512 556 557 513 431 550 558 508 509 559 551 560 561 562 563 564 565 484 506 566 567 507 485 568 514 486 487 515 569 570 571 572 573 574 575 528 516 458 459 517 529 576 519 518 523 522 577 571 578 572 573 579 574 580 519 576 577 522 581 528 442 526 527 443 529 530 526 444 445 527 531 532 492 512 513 493 533 492 534 582 583 535 493 448 584 534 535 585 449 586 448 536 539 449 587 536 537 588 589 538 539 588 537 580 581 538 589 530 540 590 591 541 531 540 543 592 593 544 541 546 594 504 505 595 547 596 546 466 467 547 597 566 506 548 549 507 567 598 510 552 553 511 599 554 552 476 477 553 555 554 484 566 567 485 555 600 601 466 467 602 603 492 556 512 513 557 493 550 604 558 559 605 551 606 561 560 565 564 607 608 514 568 569 515 609 610 516 528 529 517 611 612 571 570 575 574 613 588 580 576 577 581 589 614 528 526 527 529 615 530 590 526 527 591 531 543 616 617 618 619 544 534 584 582 583 585 535 492 582 620 621 583 493 586 584 448 449 585 587 590 540 622 623 541 591 592 543 617 618 544 593 540 592 622 623 593 541 546 624 594 595 625 547 626 566 548 549 567 627 628 629 630 631 632 633 634 596 466 467 597 635 636 598 552 553 599 637 638 552 554 555 553 639 554 566 640 641 567 555 601 634 466 467 635 602 556 642 643 644 645 557 492 620 556 557 621 493 617 598 636 637 599 618 646 608 568 569 609 647 648 612 570 575 613 649 614 610 528 529 611 615 614 526 590 591 527 615 584 650 582 583 651 585 620 582 652 653 583 621 654 590 622 623 591 655 592 617 656 657 618 593 622 592 658 659 593 623 624 660 594 595 661 625 662 663 664 665 666 667 640 566 626 627 567 641 628 668 629 632 669 633 664 663 670 671 666 665 628 672 668 669 673 633 638 636 552 553 637 639 638 554 640 641 555 639 643 674 672 673 675 644 556 676 642 645 677 557 643 642 674 675 645 644 556 620 652 653 621 557 617 636 678 679 637 618 680 608 646 647 609 681 614 682 610 611 683 615 684 612 648 649 613 685 686 614 590 591 615 687 650 688 582 583 689 651 652 582 690 691 583 653 692 654 622 623 655 693 654 686 590 591 687 655 658 592 656 657 593 659 656 617 678 679 618 657 692 622 658 659 623 693 624 694 660 661 695 625 696 640 626 627 641 697 698 662 664 665 667 699 672 674 668 669 675 673 678 636 638 639 637 679 638 640 700 701 641 639 676 556 652 653 557 677 702 680 646 647 681 703 704 684 648 649 685 705 686 682 614 615 683 687 582 688 706 707 689 583 690 582 708 709 583 691 710 654 692 693 655 711 712 686 654 655 687 713 658 656 714 715 657 659 656 678 716 717 679 657 718 692 658 659 693 719 694 720 660 661 721 695 722 662 698 699 667 723 696 700 640 641 701 697 678 638 700 701 639 679 724 680 702 703 681 725 726 682 686 687 683 727 728 684 704 705 685 729 688 730 706 707 731 689 582 706 708 709 707 583 732 710 692 693 711 733 710 712 654 655 713 711 734 726 686 687 727 735 718 658 714 715 659 719 714 656 716 717 657 715 716 678 736 737 679 717 732 692 718 719 693 733 694 738 720 721 739 695 740 700 696 697 701 741 742 722 698 699 723 743 678 700 736 737 701 679 744 724 702 703 725 745 746 728 704 705 729 747 730 748 706 707 749 731 708 706 750 751 707 709 752 710 732 733 711 753 754 712 710 711 713 755 756 726 734 735 727 757 718 714 758 759 715 719 714 716 760 761 717 715 716 736 762 763 737 717 764 732 718 719 733 765 738 766 720 721 767 739 768 722 742 743 723 769 740 736 700 701 737 741 770 771 772 773 774 775 756 776 726 727 777 757 706 748 778 779 749 707 730 780 748 749 781 731 706 782 750 751 783 707 784 752 732 733 753 785 752 754 710 711 755 753 764 718 758 759 719 765 758 714 760 761 715 759 760 716 762 763 717 761 786 787 736 737 788 789 784 732 764 765 733 785 738 790 766 767 791 739 740 786 736 737 789 741 792 768 742 743 769 793 794 770 772 773 775 795 796 797 798 799 800 801 748 802 778 779 803 749 706 778 782 783 779 707 804 805 806 807 808 809 750 782 810 811 783 751 797 812 813 814 815 800 764 758 816 817 759 765 758 760 818 819 761 759 760 762 820 821 763 761 786 822 787 788 823 789 784 764 824 825 765 785 790 826 766 767 827 791 828 768 792 793 769 829 830 794 772 773 795 831 798 797 813 814 800 799 832 833 834 835 836 837 778 802 838 839 803 779 778 840 782 783 841 779 842 804 806 807 809 843 844 845 846 847 848 849 813 812 850 851 815 814 824 764 816 817 765 825 816 758 818 819 759 817 818 760 820 821 761 819 852 822 786 789 823 853 812 854 850 851 855 815 856 857 858 859 860 861 862 794 830 831 795 863 832 864 833 836 865 837 866 832 834 835 837 867 778 838 840 841 839 779 802 868 838 839 869 803 870 871 872 873 872 871 874 875 876 875 874 877 842 806 878 879 807 843 846 845 880 881 848 847 854 882 883 884 885 855 882 886 887 888 889 885 886 890 891 892 893 889 850 854 894 895 855 851 857 896 858 859 897 860 898 862 830 831 863 899 900 864 832 837 865 901 902 832 866 867 837 903 838 904 840 841 905 839 838 868 906 907 869 839 870 908 871 873 871 908 909 874 876 874 909 877 872 873 910 911 876 875 912 842 878 879 843 913 846 880 914 915 881 847 854 883 894 895 884 855 882 887 883 884 888 885 886 891 887 888 892 889 896 916 858 859 917 897 918 898 830 831 899 919 920 900 832 837 901 921 832 902 922 923 903 837 838 906 904 905 907 839 908 924 873 876 925 909 873 926 910 911 927 876 912 878 928 929 879 913 914 880 930 931 881 915 896 932 916 917 933 897 934 918 830 831 919 935 936 920 832 837 921 937 938 912 928 929 913 939 940 832 922 923 837 941 924 942 873 876 943 925 926 873 944 945 876 927 914 930 946 947 931 915 932 948 916 917 949 933 950 920 936 937 921 951 952 936 832 837 937 953 938 928 954 955 929 939 956 832 940 941 837 957 958 938 954 955 939 959 942 960 873 876 961 943 946 930 962 963 931 947 873 964 944 945 965 876 948 966 916 917 967 949 968 950 936 937 951 969 968 936 970 971 937 969 972 952 832 837 953 973 974 958 975 976 959 977 978 832 956 957 837 979 958 954 975 976 955 959 960 980 873 876 981 961 942 982 960 961 983 943 946 962 984 985 963 947 873 986 964 965 987 876 984 962 988 989 963 985 966 990 916 917 991 967 992 968 970 971 969 993 994 972 832 837 973 995 992 970 996 997 971 993 974 975 998 999 976 977 1000 974 998 999 977 1001 1002 832 978 979 837 1003 960 1004 1005 1006 1007 961 980 1008 873 876 1009 981 960 982 1004 1007 983 961 1010 988 1011 1012 989 1013 873 1014 986 987 1015 876 984 988 1010 1013 989 985 1016 994 832 837 995 1017 1018 996 1019 1020 997 1021 1018 992 996 997 993 1021 998 1022 1000 1001 1023 999 1000 1022 1024 1025 1023 1001 1026 832 1002 1003 837 1027 1005 1004 1028 1029 1007 1006 1008 1030 873 876 1031 1009 1005 1028 1032 1033 1029 1006 1010 1011 1034 1035 1012 1013 1034 1011 1036 1037 1012 1035 873 1038 1014 1015 1039 876 1040 1019 1041 1042 1020 1043 1044 1016 832 837 1017 1045 1040 1018 1019 1020 1021 1043 1022 1046 1024 1025 1047 1023 1048 832 1026 1027 837 1049 1024 1046 1050 1051 1047 1025 1030 1052 873 876 1053 1031 1032 1054 1055 1056 1057 1033 1032 1028 1054 1057 1029 1033 1036 1058 1034 1035 1059 1037 1036 1060 1058 1059 1061 1037 873 1062 1038 1039 1063 876 1064 1040 1041 1042 1043 1065 1066 1044 832 837 1045 1067 1064 1041 1068 1069 1042 1065 1050 1070 1071 1072 1073 1051 1074 832 1048 1049 837 1075 1046 1070 1050 1051 1073 1047 1055 1076 1077 1078 1079 1056 1052 1080 873 876 1081 1053 1055 1054 1076 1079 1057 1056 1060 1082 1058 1059 1083 1061 873 1084 1062 1063 1085 876 1060 1086 1082 1083 1087 1061 1074 1066 832 837 1067 1075 1088 1068 1089 1090 1069 1091 1088 1064 1068 1069 1065 1091 1070 1092 1071 1072 1093 1073 1092 1094 1071 1072 1095 1093 1077 1076 1096 1097 1079 1078 1080 1098 873 876 1099 1081 1077 1096 1100 1101 1097 1078 1086 1102 1103 1104 1105 1087 873 1106 1084 1085 1107 876 1086 1103 1082 1083 1104 1087 1108 1089 1094 1095 1090 1109 1108 1088 1089 1090 1091 1109 1092 1108 1094 1095 1109 1093 1098 1106 873 876 1107 1099 1110 1100 1111 1112 1101 1113 1100 1096 1111 1112 1097 1101 1103 1102 1114 1115 1105 1104 1102 1116 1114 1115 1117 1105 1116 1110 1118 1119 1113 1117 1118 1110 1111 1112 1113 1119 1114 1116 1118 1119 1117 1115</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1490\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1493\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1494\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1497\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"438\">-0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.2027863264083862 -1.073487997055054 0.3571899831295013 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.001449317671358585 -1.099937200546265 0.3392031490802765 -0.2027863264083862 -1.073487997055054 0.3571899831295013 -0.2019735127687454 -1.096959710121155 0.3392031490802765 -0.001449317671358585 -1.071282982826233 0.3571899831295013 -0.001449317671358585 -1.071282982826233 0.3571899831295013 -0.5202267169952393 -1.066875219345093 0.3566815555095673 -0.5202267169952393 -1.066875219345093 0.3566815555095673 0.1998874694108963 -1.073487997055054 0.3571899831295013 0.1998874694108963 -1.073487997055054 0.3571899831295013 -0.2034463435411453 -1.0250403881073 0.4070454835891724 -0.2034463435411453 -1.0250403881073 0.4070454835891724 -0.5110751390457153 -1.023176193237305 0.4070454835891724 -0.5110751390457153 -1.023176193237305 0.4070454835891724 -0.5227118730545044 -1.09248673915863 0.3392031490802765 -0.5227118730545044 -1.09248673915863 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.1990747600793839 -1.096959710121155 0.3392031490802765 0.2005475461483002 -1.0250403881073 0.4070454835891724 0.2005475461483002 -1.0250403881073 0.4070454835891724 -0.001449264585971832 -1.0250403881073 0.4070454835891724 -0.001449264585971832 -1.0250403881073 0.4070454835891724 -0.5803182721138001 -1.014520287513733 0.4069845676422119 -0.5803182721138001 -1.014520287513733 0.4069845676422119 -0.6076786518096924 -1.055238604545593 0.3565012812614441 -0.6076786518096924 -1.055238604545593 0.3565012812614441 0.5173282623291016 -1.066875219345093 0.3566815555095673 0.5173282623291016 -1.066875219345093 0.3566815555095673 0.5081762075424194 -1.023176193237305 0.4070454835891724 0.5081762075424194 -1.023176193237305 0.4070454835891724 -0.2034463435411453 -0.9802029728889465 0.4227888584136963 -0.2034463435411453 -0.9802029728889465 0.4227888584136963 -0.5032289624214172 -0.9798094630241394 0.4227888584136963 -0.5032289624214172 -0.9798094630241394 0.4227888584136963 -0.5651706457138062 -0.9790123105049133 0.4227888584136963 -0.5651706457138062 -0.9790123105049133 0.4227888584136963 -0.6228487491607666 -1.078431725502014 0.3392031490802765 -0.6228487491607666 -1.078431725502014 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5198131203651428 -1.09248673915863 0.3392031490802765 0.5003302693367004 -0.9798094630241394 0.4227888584136963 0.5003302693367004 -0.9798094630241394 0.4227888584136963 0.2005475461483002 -0.9802029728889465 0.4227888584136963 0.2005475461483002 -0.9802029728889465 0.4227888584136963 -0.001449264585971832 -0.9774380326271057 0.4227888584136963 -0.001449264585971832 -0.9774380326271057 0.4227888584136963 -0.5889738202095032 -0.9703580737113953 0.4228299856185913 -0.5889738202095032 -0.9703580737113953 0.4228299856185913 -0.6072395443916321 -1.003041625022888 0.4070454835891724 -0.6072395443916321 -1.003041625022888 0.4070454835891724 -0.6396746635437012 -1.03993558883667 0.3565011620521545 -0.6396746635437012 -1.03993558883667 0.3565011620521545 0.6047801375389099 -1.055238604545593 0.3565012812614441 0.6047801375389099 -1.055238604545593 0.3565012812614441 0.5774192214012146 -1.014520287513733 0.4069845676422119 0.5774192214012146 -1.014520287513733 0.4069845676422119 0.5622721910476685 -0.9790123105049133 0.4227888584136963 0.5622721910476685 -0.9790123105049133 0.4227888584136963 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.6555055379867554 -1.058401465415955 0.3392031490802765 -0.6555055379867554 -1.058401465415955 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.619949996471405 -1.078431725502014 0.3392031490802765 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.2032903134822846 -0.9188514351844788 0.4277473092079163 0.2032903134822846 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.6052019596099854 -0.9562928080558777 0.4228299856185913 -0.6052019596099854 -0.9562928080558777 0.4228299856185913 -0.6279228329658508 -0.9917994141578674 0.4070454835891724 -0.6279228329658508 -0.9917994141578674 0.4070454835891724 -0.6603804230690002 -1.012173652648926 0.3565012216567993 -0.6603804230690002 -1.012173652648926 0.3565012216567993 0.636775553226471 -1.03993558883667 0.3565011620521545 0.636775553226471 -1.03993558883667 0.3565011620521545 0.6043407917022705 -1.003041625022888 0.4070454835891724 0.6043407917022705 -1.003041625022888 0.4070454835891724 0.5860748887062073 -0.9703580737113953 0.4228299856185913 0.5860748887062073 -0.9703580737113953 0.4228299856185913 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.683056652545929 -1.024173378944397 0.3421223759651184 -0.683056652545929 -1.024173378944397 0.3421223759651184 0.6526064276695252 -1.058401465415955 0.3392031490802765 0.6526064276695252 -1.058401465415955 0.3392031490802765 -0.6355372071266174 -0.8487778306007385 0.4070375561714172 -0.6355372071266174 -0.8487778306007385 0.4070375561714172 -0.6531206369400024 -0.8487778306007385 0.3929504156112671 -0.6531206369400024 -0.8487778306007385 0.3929504156112671 -0.6910825967788696 -0.8380230665206909 0.352030873298645 -0.6910825967788696 -0.8380230665206909 0.352030873298645 0.6574813723564148 -1.012173652648926 0.3565012216567993 0.6574813723564148 -1.012173652648926 0.3565012216567993 0.6250237822532654 -0.9917994141578674 0.4070454835891724 0.6250237822532654 -0.9917994141578674 0.4070454835891724 0.602303683757782 -0.9562928080558777 0.4228299856185913 0.602303683757782 -0.9562928080558777 0.4228299856185913 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6718029379844666 -0.8377653956413269 0.3578441739082336 -0.6718029379844666 -0.8377653956413269 0.3578441739082336 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.6801580786705017 -1.024173378944397 0.3421223759651184 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 -0.6929208040237427 -0.6744205951690674 0.3559539020061493 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6881840229034424 -0.8380230665206909 0.352030873298645 0.6502217650413513 -0.8487778306007385 0.3929504156112671 0.6502217650413513 -0.8487778306007385 0.3929504156112671 0.6326382160186768 -0.8487778306007385 0.4070375561714172 0.6326382160186768 -0.8487778306007385 0.4070375561714172 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 0.6689043045043945 -0.8377653956413269 0.3578441739082336 0.6689043045043945 -0.8377653956413269 0.3578441739082336 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6900215148925781 -0.6744205951690674 0.3559539020061493 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"146\" source=\"#ID1497\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1495\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1498\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"438\">-0.005662748884652038 -0.3003436078411413 0.9538142641542096 -0.004958250870822625 -0.663702973508031 0.7479797983267328 -1.07869099120766e-009 -0.2576574119967494 0.9662363365363245 1.07869099120766e-009 0.2576574119967494 -0.9662363365363245 0.004958250870822625 0.663702973508031 -0.7479797983267328 0.005662748884652038 0.3003436078411413 -0.9538142641542096 -2.372597894113113e-009 -0.6365373962141622 0.7712458383815724 2.372597894113113e-009 0.6365373962141622 -0.7712458383815724 -0.05062296754243888 -0.658588521188452 0.7507985581472603 0.05062296754243888 0.658588521188452 -0.7507985581472603 0.004958239794221573 -0.6637029536472272 0.7479798160231928 -0.004958239794221573 0.6637029536472272 -0.7479798160231928 0.0003101519018471342 -0.5400639855969268 0.8416239036927126 -0.0003101519018471342 0.5400639855969268 -0.8416239036927126 -0.03373737267444298 -0.571531831791014 0.8198860621663439 0.03373737267444298 0.571531831791014 -0.8198860621663439 -0.01969785890737417 -0.2616664220722393 0.9649573451269117 0.01969785890737417 0.2616664220722393 -0.9649573451269117 0.005662748672241021 -0.3003435921545434 0.9538142690949744 -0.005662748672241021 0.3003435921545434 -0.9538142690949744 -0.0003101511477583259 -0.5400639863074525 0.8416239032370512 0.0003101511477583259 0.5400639863074525 -0.8416239032370512 -1.047140219661615e-009 -0.5417635515779979 0.8405309358861184 1.047140219661615e-009 0.5417635515779979 -0.8405309358861184 -0.1456617391791251 -0.5690161591534998 0.8093227220098986 0.1456617391791251 0.5690161591534998 -0.8093227220098986 -0.1803519318601171 -0.6134749525573249 0.7688443686853091 0.1803519318601171 0.6134749525573249 -0.7688443686853091 0.05062320118724138 -0.6585884825921694 0.750798576249649 -0.05062320118724138 0.6585884825921694 -0.750798576249649 0.03373728297714376 -0.571531725438843 0.8198861399939744 -0.03373728297714376 0.571531725438843 -0.8198861399939744 -0.001154009035315631 -0.2065151984626948 0.9784427122049916 0.001154009035315631 0.2065151984626948 -0.9784427122049916 -0.001686019370673894 -0.1977884537775508 0.9802432784217228 0.001686019370673894 0.1977884537775508 -0.9802432784217228 -0.04843642768347421 -0.2158089521412255 0.975233514933203 0.04843642768347421 0.2158089521412255 -0.975233514933203 -0.0771747638042234 -0.2197377985821765 0.9725015967627102 0.0771747638042234 0.2197377985821765 -0.9725015967627102 0.01969778337526758 -0.2616666146433107 0.9649572944494539 -0.01969778337526758 0.2616666146433107 -0.9649572944494539 0.001686017598503319 -0.1977884587910386 0.9802432774131753 -0.001686017598503319 0.1977884587910386 -0.9802432774131753 0.001154004466121158 -0.2065152029394589 0.9784427112654918 -0.001154004466121158 0.2065152029394589 -0.9784427112654918 -1.213845109435125e-009 -0.183784508905539 0.9829665580712041 1.213845109435125e-009 0.183784508905539 -0.9829665580712041 -0.1145861315951627 -0.1902762129514024 0.9750205029797725 0.1145861315951627 0.1902762129514024 -0.9750205029797725 -0.2521009452976371 -0.5079576817782719 0.8236650453324347 0.2521009452976371 0.5079576817782719 -0.8236650453324347 -0.4123732310645685 -0.5040732699400515 0.7588533829622899 0.4123732310645685 0.5040732699400515 -0.7588533829622899 0.1803539988353248 -0.6134741762408932 0.7688445032577559 -0.1803539988353248 0.6134741762408932 -0.7688445032577559 0.1456605441840856 -0.569016061049941 0.8093230060582769 -0.1456605441840856 0.569016061049941 -0.8093230060582769 0.04843747151955567 -0.2158095166861311 0.9752333381609197 -0.04843747151955567 0.2158095166861311 -0.9752333381609197 0.009401250144782504 0.3008855372065615 0.9536139208273095 -0.009401250144782504 -0.3008855372065615 -0.9536139208273095 0.05052979851625714 0.2432052738812564 0.9686578003703111 -0.05052979851625714 -0.2432052738812564 -0.9686578003703111 0.1138664131417217 0.232912953725105 0.9658084675261892 -0.1138664131417217 -0.232912953725105 -0.9658084675261892 -0.1091464427993047 -0.1854747968576843 0.9765685607036809 0.1091464427993047 0.1854747968576843 -0.9765685607036809 0.07717520035315093 -0.2197372978899333 0.9725016752512469 -0.07717520035315093 0.2197372978899333 -0.9725016752512469 -0.05052997868541467 0.2432047259207096 0.9686579285505717 0.05052997868541467 -0.2432047259207096 -0.9686579285505717 -0.009401248097297095 0.3008855179818873 0.9536139269132895 0.009401248097297095 -0.3008855179818873 -0.9536139269132895 1.715447736761821e-009 0.2481218125350861 0.9687288403595217 -1.715447736761821e-009 -0.2481218125350861 -0.9687288403595217 -0.2784405634250393 -0.0765847600931651 0.9573952303834706 0.2784405634250393 0.0765847600931651 -0.9573952303834706 -0.5315739033317701 -0.3193684087267559 0.7844953822706452 0.5315739033317701 0.3193684087267559 -0.7844953822706452 -0.5943067986228019 -0.2534906281099632 0.7632443452598471 0.5943067986228019 0.2534906281099632 -0.7632443452598471 0.4123749716343679 -0.5040727249996686 0.7588527990862015 -0.4123749716343679 0.5040727249996686 -0.7588527990862015 0.2521017102364427 -0.5079580221528142 0.8236646012950064 -0.2521017102364427 0.5079580221528142 -0.8236646012950064 0.1145832480102491 -0.1902760513495413 0.9750208733961794 -0.1145832480102491 0.1902760513495413 -0.9750208733961794 -0.1138663683946042 0.2329141275011871 0.9658081897348899 0.1138663683946042 -0.2329141275011871 -0.9658081897348899 0.1030468669472135 0.2216429896176415 0.9696678443496605 -0.1030468669472135 -0.2216429896176415 -0.9696678443496605 -0.1228183054958481 -0.111129705670554 0.9861875340688021 0.1228183054958481 0.111129705670554 -0.9861875340688021 0.1091488696533336 -0.1854757037912854 0.9765681172127867 -0.1091488696533336 0.1854757037912854 -0.9765681172127867 -0.4531054072318778 0.04326566030068675 0.8904064086561708 0.4531054072318778 -0.04326566030068675 -0.8904064086561708 -0.76979622301074 -0.018849408134265 0.6380113438265709 0.76979622301074 0.018849408134265 -0.6380113438265709 -0.2476666920797232 -0.02438408932794591 0.9685383966688849 0.2476666920797232 0.02438408932794591 -0.9685383966688849 0.5943031912732282 -0.2534917515070076 0.7632467810350505 -0.5943031912732282 0.2534917515070076 -0.7632467810350505 0.5315755300349619 -0.3193689405572947 0.784494063505493 -0.5315755300349619 0.3193689405572947 -0.784494063505493 0.2784462538371627 -0.07658606360023611 0.9573934711424926 -0.2784462538371627 0.07658606360023611 -0.9573934711424926 0.1114224209044949 0.1676835182573328 0.979524007783691 -0.1114224209044949 -0.1676835182573328 -0.979524007783691 -0.6323090853057036 -0.03335460635571474 0.7739978623192184 0.6323090853057036 0.03335460635571474 -0.7739978623192184 0.1228143137468341 -0.1111288314674064 0.9861881296971603 -0.1228143137468341 0.1111288314674064 -0.9861881296971603 -0.1030444216764338 0.2216419275986339 0.9696683469577272 0.1030444216764338 -0.2216419275986339 -0.9696683469577272 -0.5736763948085086 0.3276465503718861 0.7506950992706128 0.5736763948085086 -0.3276465503718861 -0.7506950992706128 -0.2441943401385535 0.4431550853429167 0.8625443145595528 0.2441943401385535 -0.4431550853429167 -0.8625443145595528 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 -0.1422524387013631 0.08650520172209436 0.9860431500489898 0.1422524387013631 -0.08650520172209436 -0.9860431500489898 0.2476665877536164 -0.02438400563172669 0.9685384254534418 -0.2476665877536164 0.02438400563172669 -0.9685384254534418 0.7697936430402944 -0.01885005181698557 0.63801443767461 -0.7697936430402944 0.01885005181698557 -0.63801443767461 0.4531049316146203 0.04326603676424462 0.8904066323928778 -0.4531049316146203 -0.04326603676424462 -0.8904066323928778 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 0.6323069370255796 -0.03335520396877564 0.7739995915745248 -0.6323069370255796 0.03335520396877564 -0.7739995915745248 -0.1114237979693154 0.1676831763354625 0.9795239096725221 0.1114237979693154 -0.1676831763354625 -0.9795239096725221 0.1422539534903038 0.08650680782154999 0.9860427906114946 -0.1422539534903038 -0.08650680782154999 -0.9860427906114946 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 0.5736724490507156 0.3276483942267879 0.7506973098131908 -0.5736724490507156 -0.3276483942267879 -0.7506973098131908 0.2441976709347891 0.4431556628268767 0.8625430748748124 -0.2441976709347891 -0.4431556628268767 -0.8625430748748124 -0.1983818612641697 0.4627947061566479 0.8639824634069522 0.1983818612641697 -0.4627947061566479 -0.8639824634069522</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"146\" source=\"#ID1498\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1496\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1494\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1495\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"220\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 2 1 6 7 4 3 8 1 0 5 4 9 2 6 10 11 7 3 6 1 12 13 4 7 1 8 14 15 9 4 16 8 0 5 9 17 18 2 10 11 3 19 10 6 20 21 7 11 22 6 12 13 7 23 12 1 14 15 4 13 8 24 14 15 25 9 16 26 8 9 27 17 18 10 28 29 11 19 30 10 20 21 11 31 20 6 22 23 7 21 12 32 22 23 33 13 14 34 12 13 35 15 24 36 14 15 37 25 8 26 24 25 27 9 38 26 16 17 27 39 18 28 40 41 29 19 28 10 30 31 11 29 20 42 30 31 43 21 20 22 44 45 23 21 22 32 46 47 33 23 12 34 32 33 35 13 14 36 34 35 37 15 24 48 36 37 49 25 26 50 24 25 51 27 38 52 26 27 53 39 40 28 54 55 29 41 56 28 30 31 29 57 30 42 58 59 43 31 20 44 42 43 45 21 22 46 44 45 47 23 32 60 46 47 61 33 34 62 32 33 63 35 36 62 34 35 63 37 50 48 24 25 49 51 36 48 64 65 49 37 26 52 50 51 53 27 66 52 38 39 53 67 40 54 68 69 55 41 54 28 56 57 29 55 30 58 56 57 59 31 42 70 58 59 71 43 42 44 70 71 45 43 44 46 72 73 47 45 62 60 32 33 61 63 46 60 74 75 61 47 36 64 62 63 65 37 50 76 48 49 77 51 48 76 64 65 77 49 52 78 50 51 79 53 66 80 52 53 81 67 68 54 82 83 55 69 56 84 54 55 85 57 56 58 86 87 59 57 70 88 58 59 89 71 44 72 70 71 73 45 46 74 72 73 75 47 50 78 76 77 79 51 76 90 64 65 91 77 52 80 78 79 81 53 92 80 66 67 81 93 68 82 94 95 83 69 54 84 82 83 85 55 56 86 84 85 87 57 58 88 86 87 89 59 78 96 76 77 97 79 76 96 90 91 97 77 78 80 98 99 81 79 92 100 80 81 101 93 94 82 102 103 83 95 84 104 82 83 105 85 86 106 84 85 107 87 86 88 106 107 89 87 98 96 78 79 97 99 96 108 90 91 109 97 98 80 110 111 81 99 100 110 80 81 111 101 94 102 112 113 103 95 102 82 104 105 83 103 84 106 104 105 107 85 88 114 106 107 115 89 98 116 96 97 117 99 96 118 108 109 119 97 98 110 120 121 111 99 100 122 110 111 123 101 112 102 124 125 103 113 102 104 126 127 105 103 104 106 128 129 107 105 106 114 128 129 115 107 116 98 120 121 99 117 116 118 96 97 119 117 118 130 108 109 131 119 122 120 110 111 121 123 102 132 124 125 133 103 102 126 132 133 127 103 104 128 126 127 129 105 114 134 128 129 135 115 124 132 136 137 133 125 132 126 138 139 127 133 126 128 140 141 129 127 128 134 142 143 135 129 132 138 136 137 139 133 138 126 140 141 127 139 128 142 140 141 143 129 134 144 142 143 145 135</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1496\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1499\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1500\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1503\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"768\">-0.001449264585971832 -0.9280321002006531 0.4250716865062714 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9008265137672424 0.407900333404541 -0.001449264585971832 -0.9008265137672424 0.407900333404541 -0.2061888128519058 -0.9188514351844788 0.4277473092079163 -0.001449264585971832 -0.9280321002006531 0.4250716865062714 0.2032903134822846 -0.9188514351844788 0.4277473092079163 0.2032903134822846 -0.9188514351844788 0.4277473092079163 -0.2058618664741516 -0.8905866146087647 0.4041489362716675 -0.2058618664741516 -0.8905866146087647 0.4041489362716675 0.2029633522033691 -0.8905866146087647 0.4041489362716675 0.2029633522033691 -0.8905866146087647 0.4041489362716675 -0.001449264585971832 -0.8642953038215637 0.2873175442218781 -0.001449264585971832 -0.8642953038215637 0.2873175442218781 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 -0.5242685079574585 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 0.5213694572448731 -0.9072372317314148 0.4264096915721893 -0.2091975510120392 -0.8604845404624939 0.28980353474617 -0.2091975510120392 -0.8604845404624939 0.28980353474617 -0.5089024901390076 -0.88034588098526 0.4033911228179932 -0.5089024901390076 -0.88034588098526 0.4033911228179932 0.5060030221939087 -0.88034588098526 0.4033911228179932 0.5060030221939087 -0.88034588098526 0.4033911228179932 0.2062989473342896 -0.8604845404624939 0.28980353474617 0.2062989473342896 -0.8604845404624939 0.28980353474617 -0.2169111371040344 -0.850664496421814 0.2308530360460281 -0.2169111371040344 -0.850664496421814 0.2308530360460281 -0.5592859983444214 -0.8853510022163391 0.423733651638031 -0.5592859983444214 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.5563870668411255 -0.8853510022163391 0.423733651638031 0.2140122205018997 -0.850664496421814 0.2308530360460281 0.2140122205018997 -0.850664496421814 0.2308530360460281 -0.001449264585971832 -0.8544549345970154 0.226887509226799 -0.001449264585971832 -0.8544549345970154 0.226887509226799 -0.4991267025470734 -0.8247990608215332 0.2303560227155685 -0.4991267025470734 -0.8247990608215332 0.2303560227155685 -0.4822732210159302 -0.8412036895751953 0.3024190962314606 -0.4822732210159302 -0.8412036895751953 0.3024190962314606 -0.5360015034675598 -0.8629845380783081 0.4011168479919434 -0.5360015034675598 -0.8629845380783081 0.4011168479919434 0.5331027507781982 -0.8629845380783081 0.4011168479919434 0.5331027507781982 -0.8629845380783081 0.4011168479919434 0.4793746471405029 -0.8412036895751953 0.3024190962314606 0.4793746471405029 -0.8412036895751953 0.3024190962314606 0.4962282776832581 -0.8247990608215332 0.2303560227155685 0.4962282776832581 -0.8247990608215332 0.2303560227155685 -0.2233303785324097 -0.8408377170562744 0.155529111623764 -0.2233303785324097 -0.8408377170562744 0.155529111623764 -0.5103840827941895 -0.8105360865592957 0.1526265740394592 -0.5103840827941895 -0.8105360865592957 0.1526265740394592 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 -0.5877137780189514 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5848151445388794 -0.8462677001953125 0.4189440608024597 0.5074851512908936 -0.8105360865592957 0.1526265740394592 0.5074851512908936 -0.8105360865592957 0.1526265740394592 0.2204316407442093 -0.8408377170562744 0.155529111623764 0.2204316407442093 -0.8408377170562744 0.155529111623764 -0.001449264585971832 -0.8478066325187683 0.1633798182010651 -0.001449264585971832 -0.8478066325187683 0.1633798182010651 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5080633759498596 -0.8316804766654968 0.2988536059856415 0.5080633759498596 -0.8316804766654968 0.2988536059856415 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.5774928331375122 -0.7780205607414246 0.1524880826473236 -0.2308849394321442 -0.8047881722450256 0.0218891017138958 -0.2308849394321442 -0.8047881722450256 0.0218891017138958 -0.5296268463134766 -0.7695713043212891 0.02064040675759316 -0.5296268463134766 -0.7695713043212891 0.02064040675759316 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 -0.6248588562011719 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.6219597458839417 -0.7012345790863037 0.3947400748729706 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5267279148101807 -0.7695713043212891 0.02064040675759316 0.5267279148101807 -0.7695713043212891 0.02064040675759316 0.2279863953590393 -0.8047881722450256 0.0218891017138958 0.2279863953590393 -0.8047881722450256 0.0218891017138958 -0.001449264585971832 -0.811660647392273 0.02170788124203682 -0.001449264585971832 -0.811660647392273 0.02170788124203682 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5562193989753723 -0.8102383017539978 0.2943964898586273 -0.2359215766191483 -0.7559671401977539 -0.10956010222435 -0.2359215766191483 -0.7559671401977539 -0.10956010222435 -0.5445342063903809 -0.7176461219787598 -0.1151830404996872 -0.5445342063903809 -0.7176461219787598 -0.1151830404996872 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.6225146651268005 -0.6747926473617554 0.3891410231590271 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5416357517242432 -0.7176461219787598 -0.1151830404996872 0.5416357517242432 -0.7176461219787598 -0.1151830404996872 0.2330227941274643 -0.7559671401977539 -0.10956010222435 0.2330227941274643 -0.7559671401977539 -0.10956010222435 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449264585971832 -0.7628392577171326 -0.1150786280632019 -0.001449317671358585 -0.7727522850036621 -0.08908890932798386 -0.001449264585971832 -0.7628392577171326 -0.1150786280632019 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.596644401550293 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 -0.2399774938821793 -0.6989214420318604 -0.2486914843320847 -0.2399774938821793 -0.6989214420318604 -0.2486914843320847 -0.5503517985343933 -0.6690559387207031 -0.2467941492795944 -0.5503517985343933 -0.6690559387207031 -0.2467941492795944 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.5474526286125183 -0.6690559387207031 -0.2467941492795944 0.5474526286125183 -0.6690559387207031 -0.2467941492795944 0.2370787858963013 -0.6989214420318604 -0.2486914843320847 0.2370787858963013 -0.6989214420318604 -0.2486914843320847 -0.001449264585971832 -0.7057934999465942 -0.2469800859689713 -0.001449264585971832 -0.7057934999465942 -0.2469800859689713 0.6237722635269165 -0.666684091091156 0.3805446624755859 0.6237722635269165 -0.666684091091156 0.3805446624755859 -0.2416535615921021 -0.6776809096336365 -0.2738118767738342 -0.2416535615921021 -0.6776809096336365 -0.2738118767738342 -0.5451606512069702 -0.6392850279808044 -0.2739138007164002 -0.5451606512069702 -0.6392850279808044 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6363826394081116 -0.6744205951690674 0.3888895809650421 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5422620177268982 -0.6392850279808044 -0.2739138603210449 0.5422620177268982 -0.6392850279808044 -0.2739138603210449 0.2387548983097076 -0.6776809096336365 -0.2738119065761566 0.2387548983097076 -0.6776809096336365 -0.2738119065761566 -0.001449264585971832 -0.684722900390625 -0.2738119065761566 -0.001449264585971832 -0.684722900390625 -0.2738119065761566 0.6344869732856751 -0.6666867136955261 0.380647212266922 0.6344869732856751 -0.6666867136955261 0.380647212266922 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.6099106073379517 -0.6618664264678955 0.2912401556968689 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.4858808219432831 -0.459694117307663 -0.2738118767738342 -0.4858808219432831 -0.459694117307663 -0.2738118767738342 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.653651773929596 -0.6744205951690674 0.3794410824775696 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.4829820096492767 -0.459694117307663 -0.2738119065761566 0.4829820096492767 -0.459694117307663 -0.2738119065761566 0.08564969897270203 -0.4586217701435089 -0.2738119065761566 0.08564969897270203 -0.4586217701435089 -0.2738119065761566 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.08854863792657852 -0.4586217701435089 -0.2738118767738342 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6709115505218506 -0.6744205951690674 0.3601852357387543 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 -0.08879685401916504 -0.07529165595769882 -0.2738118767738342 -0.08879685401916504 -0.07529165595769882 -0.2738118767738342 -0.4861236810684204 -0.07529165595769882 -0.2738118767738342 -0.4861236810684204 -0.07529165595769882 -0.2738118767738342 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.4832248687744141 -0.07529165595769882 -0.2738119065761566 0.4832248687744141 -0.07529165595769882 -0.2738119065761566 0.0858980268239975 -0.07529165595769882 -0.2738119065761566 0.0858980268239975 -0.07529165595769882 -0.2738119065761566 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 0.6728364825248718 -0.6232461929321289 0.151445209980011 0.6728364825248718 -0.6232461929321289 0.151445209980011 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 -0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.7888607382774353 -0.6216936707496643 0.151445209980011 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 -0.1051686182618141 0.3285070955753326 -0.2738118767738342 -0.1051686182618141 0.3285070955753326 -0.2738118767738342 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7697807550430298 -0.6405144333839417 0.2324964851140976 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.7982441186904907 -0.5681315660476685 0.01786315068602562 0.6822202205657959 -0.5696841478347778 0.01786315068602562 0.6822202205657959 -0.5696841478347778 0.01786315068602562 0.1022694855928421 0.3285070955753326 -0.2738119065761566 0.1022694855928421 0.3285070955753326 -0.2738119065761566 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7468852996826172 -0.6521115303039551 0.2969664335250855 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.7982441186904907 -0.510998547077179 -0.1188254207372665 0.6822202205657959 -0.5125510692596436 -0.1188254952430725 0.6822202205657959 -0.5125510692596436 -0.1188254952430725 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7184825539588928 -0.6512529253959656 0.3517223000526428 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"256\" source=\"#ID1503\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1501\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1504\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"768\">1.715447736761821e-009 0.2481218125350861 0.9687288403595217 0.009401250144782504 0.3008855372065615 0.9536139208273095 2.035422321482497e-009 0.7939846868735797 0.6079377575132702 -2.035422321482497e-009 -0.7939846868735797 -0.6079377575132702 -0.009401250144782504 -0.3008855372065615 -0.9536139208273095 -1.715447736761821e-009 -0.2481218125350861 -0.9687288403595217 -0.009401248097297095 0.3008855179818873 0.9536139269132895 0.009401248097297095 -0.3008855179818873 -0.9536139269132895 0.02583369656101249 0.8431526023843547 0.5370533578840037 -0.02583369656101249 -0.8431526023843547 -0.5370533578840037 -0.02583373351476824 0.843152589493277 0.5370533763449116 0.02583373351476824 -0.843152589493277 -0.5370533763449116 -8.169983004136007e-009 0.9756019101559423 0.219547063064111 8.169983004136007e-009 -0.9756019101559423 -0.219547063064111 0.05052979851625714 0.2432052738812564 0.9686578003703111 -0.05052979851625714 -0.2432052738812564 -0.9686578003703111 -0.05052997868541467 0.2432047259207096 0.9686579285505717 0.05052997868541467 -0.2432047259207096 -0.9686579285505717 0.04201646249544194 0.9757956725274732 0.2146099307022518 -0.04201646249544194 -0.9757956725274732 -0.2146099307022518 0.2080929561113531 0.742062843676496 0.6372127255882378 -0.2080929561113531 -0.742062843676496 -0.6372127255882378 -0.208089506830558 0.7420653365720928 0.6372109489055893 0.208089506830558 -0.7420653365720928 -0.6372109489055893 -0.04201651599233937 0.975795648809786 0.2146100280689472 0.04201651599233937 -0.975795648809786 -0.2146100280689472 0.05801343365966621 0.9880929435038131 0.1425018474020108 -0.05801343365966621 -0.9880929435038131 -0.1425018474020108 0.1138664131417217 0.232912953725105 0.9658084675261892 -0.1138664131417217 -0.232912953725105 -0.9658084675261892 -0.1138663683946042 0.2329141275011871 0.9658081897348899 0.1138663683946042 -0.2329141275011871 -0.9658081897348899 -0.05801332090299661 0.9880929317009803 0.142501975145496 0.05801332090299661 -0.9880929317009803 -0.142501975145496 -1.571396074608873e-008 0.9908900542609914 0.134673309778327 1.571396074608873e-008 -0.9908900542609914 -0.134673309778327 0.227388534602158 0.9595246946824242 0.1661529856068916 -0.227388534602158 -0.9595246946824242 -0.1661529856068916 0.1755717558524631 0.9424091495213978 0.2846744692543377 -0.1755717558524631 -0.9424091495213978 -0.2846744692543377 0.4545401320225986 0.6272147484516137 0.6324515220201922 -0.4545401320225986 -0.6272147484516137 -0.6324515220201922 -0.4545377758904722 0.6272169812874293 0.6324510010057913 0.4545377758904722 -0.6272169812874293 -0.6324510010057913 -0.1755711219142102 0.9424094696764631 0.2846738003644047 0.1755711219142102 -0.9424094696764631 -0.2846738003644047 -0.2273888042380214 0.9595245256886391 0.1661535925256964 0.2273888042380214 -0.9595245256886391 -0.1661535925256964 0.0638410034790694 0.9793792180325037 0.1916785683398832 -0.0638410034790694 -0.9793792180325037 -0.1916785683398832 0.2571540481453198 0.9471230925857829 0.1919105078238738 -0.2571540481453198 -0.9471230925857829 -0.1919105078238738 0.1030468669472135 0.2216429896176415 0.9696678443496605 -0.1030468669472135 -0.2216429896176415 -0.9696678443496605 -0.1030444216764338 0.2216419275986339 0.9696683469577272 0.1030444216764338 -0.2216419275986339 -0.9696683469577272 -0.257153388496056 0.947123103862737 0.1919113360758331 0.257153388496056 -0.947123103862737 -0.1919113360758331 -0.06384107734919033 0.9793792351847296 0.1916784560973631 0.06384107734919033 -0.9793792351847296 -0.1916784560973631 -8.739514482084267e-009 0.984322838181471 0.1763761611850463 8.739514482084267e-009 -0.984322838181471 -0.1763761611850463 0.345541571839725 0.9120028016585794 0.2210246861720067 -0.345541571839725 -0.9120028016585794 -0.2210246861720067 0.7923653450499429 0.6086502283222469 0.04125602413176856 -0.7923653450499429 -0.6086502283222469 -0.04125602413176856 0.6550020983156387 0.4876283129803074 0.5772268874386309 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.6550028074066617 0.4876263453328185 0.57722774502509 0.6550028074066617 -0.4876263453328185 -0.57722774502509 -0.345541217123833 0.9120031117774368 0.221023961092123 0.345541217123833 -0.9120031117774368 -0.221023961092123 -0.7923653544809333 0.608650103731723 0.0412576810505382 0.7923653544809333 -0.608650103731723 -0.0412576810505382 0.06889339436928037 0.9515744320927353 0.2995993998653323 -0.06889339436928037 -0.9515744320927353 -0.2995993998653323 0.2570777685290928 0.922056222251064 0.289349864240851 -0.2570777685290928 -0.922056222251064 -0.289349864240851 0.7244552439627415 0.6850948378838646 0.07622114273458253 -0.7244552439627415 -0.6850948378838646 -0.07622114273458253 0.7968674597543884 0.5870317053962028 0.1428146646679311 -0.7968674597543884 -0.5870317053962028 -0.1428146646679311 0.1114224209044949 0.1676835182573328 0.979524007783691 -0.1114224209044949 -0.1676835182573328 -0.979524007783691 -0.1114237979693154 0.1676831763354625 0.9795239096725221 0.1114237979693154 -0.1676831763354625 -0.9795239096725221 -0.7244565686574949 0.6850933441356621 0.07622197812982619 0.7244565686574949 -0.6850933441356621 -0.07622197812982619 -0.7968685932815799 0.5870304906792523 0.1428133329010719 0.7968685932815799 -0.5870304906792523 -0.1428133329010719 -0.2570767790947514 0.9220564773034056 0.2893499305565886 0.2570767790947514 -0.9220564773034056 -0.2893499305565886 -0.06889346903278142 0.9515744364678358 0.2995993688003195 0.06889346903278142 -0.9515744364678358 -0.2995993688003195 -1.062354948045608e-008 0.9560443774783194 0.2932220119501479 1.062354948045608e-008 -0.9560443774783194 -0.2932220119501479 0.7476117988063761 0.6572838630161918 0.09515525053304569 -0.7476117988063761 -0.6572838630161918 -0.09515525053304569 0.8216288131614381 0.2706515877970226 0.5016710191010413 -0.8216288131614381 -0.2706515877970226 -0.5016710191010413 -0.8216292782168875 0.2706545588897141 0.5016686545211001 0.8216292782168875 -0.2706545588897141 -0.5016686545211001 -0.7476141706463564 0.6572814401000713 0.09515335174725628 0.7476141706463564 -0.6572814401000713 -0.09515335174725628 0.0686384617992974 0.9314733218746919 0.3572761007925849 -0.0686384617992974 -0.9314733218746919 -0.3572761007925849 0.3044284030251505 0.8973732926014187 0.3194440814246603 -0.3044284030251505 -0.8973732926014187 -0.3194440814246603 0.8188535649683953 0.5430980693366506 0.1858045376769702 -0.8188535649683953 -0.5430980693366506 -0.1858045376769702 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 -0.1983818612641697 0.4627947061566479 0.8639824634069522 0.1983818612641697 -0.4627947061566479 -0.8639824634069522 -0.8188546049565538 0.5430968997890379 0.1858033728999071 0.8188546049565538 -0.5430968997890379 -0.1858033728999071 -0.3044293230567004 0.8973731718340767 0.3194435438942034 0.3044293230567004 -0.8973731718340767 -0.3194435438942034 -0.06863843041400655 0.9314732955013412 0.3572761755815422 0.06863843041400655 -0.9314732955013412 -0.3572761755815422 1.116069999838444e-008 0.9423171754854557 0.3347212882162006 -3.747649454434864e-008 0.9318290390368441 0.3628975640696287 -1.116069999838444e-008 -0.9423171754854557 -0.3347212882162006 3.747649454434864e-008 -0.9318290390368441 -0.3628975640696287 0.7753776474116275 0.4751149390666444 0.4159991569343728 -0.7753776474116275 -0.4751149390666444 -0.4159991569343728 -0.7753733229355523 0.4751248107874208 0.4159959425933109 0.7753733229355523 -0.4751248107874208 -0.4159959425933109 0.05864831235288941 0.8527161846489071 0.5190717521653139 -0.05864831235288941 -0.8527161846489071 -0.5190717521653139 0.3054264818168302 0.7913895422415095 0.5295443858976955 -0.3054264818168302 -0.7913895422415095 -0.5295443858976955 0.7904399506188402 0.4467527980245364 0.4190663693532726 -0.7904399506188402 -0.4467527980245364 -0.4190663693532726 -0.3839601059320404 0.8794258325261762 0.2813980137426312 0.3839601059320404 -0.8794258325261762 -0.2813980137426312 -0.7904401366226477 0.4467532877527571 0.4190654964299407 0.7904401366226477 -0.4467532877527571 -0.4190654964299407 -0.3054229704142912 0.7913907101155595 0.5295446658083733 0.3054229704142912 -0.7913907101155595 -0.5295446658083733 -0.05864834861013611 0.8527163737529747 0.5190714374138505 0.05864834861013611 -0.8527163737529747 -0.5190714374138505 9.520451530020358e-009 0.8593676434638604 0.5113582436681463 -9.520451530020358e-009 -0.8593676434638604 -0.5113582436681463 -0.08976430741077263 0.8138330291007455 0.5741238279846687 0.08976430741077263 -0.8138330291007455 -0.5741238279846687 0.03370352932777578 0.4328829088361045 0.9008198817457596 -0.03370352932777578 -0.4328829088361045 -0.9008198817457596 0.165091213986121 0.3819560318732822 0.9093153912588333 -0.165091213986121 -0.3819560318732822 -0.9093153912588333 0.4644031292697052 0.1881536417132338 0.8654062286779275 -0.4644031292697052 -0.1881536417132338 -0.8654062286779275 0.2441976709347891 0.4431556628268767 0.8625430748748124 -0.2441976709347891 -0.4431556628268767 -0.8625430748748124 0.2331018669884867 0.8320242126565701 0.5033877522940903 -0.2331018669884867 -0.8320242126565701 -0.5033877522940903 -0.4644038303505231 0.1881541816406321 0.8654057350670302 0.4644038303505231 -0.1881541816406321 -0.8654057350670302 -0.165092715159511 0.3819576415429155 0.9093144425710142 0.165092715159511 -0.3819576415429155 -0.9093144425710142 -0.03370352026973898 0.4328831985936684 0.9008197428435624 0.03370352026973898 -0.4328831985936684 -0.9008197428435624 4.846721671527672e-008 0.5015666720711498 0.8651189938196187 -4.846721671527672e-008 -0.5015666720711498 -0.8651189938196187 0.09447211453588736 0.7839513607472624 0.6135921149734847 -0.09447211453588736 -0.7839513607472624 -0.6135921149734847 -0.4543309600657438 0.8834859794272519 0.1141748785031492 0.4543309600657438 -0.8834859794272519 -0.1141748785031492 1.215795615369895e-007 -8.497444814096651e-008 0.9999999999999891 -1.215795615369895e-007 8.497444814096651e-008 -0.9999999999999891 -0.0002808496167795781 -0.0001564916449623308 0.9999999483169277 0.0002808496167795781 0.0001564916449623308 -0.9999999483169277 0.5736724490507156 0.3276483942267879 0.7506973098131908 -0.5736724490507156 -0.3276483942267879 -0.7506973098131908 -0.355210421201735 0.9270152150350377 0.1202844452255927 0.355210421201735 -0.9270152150350377 -0.1202844452255927 0.0002807284206540641 -0.0001565349119740308 0.9999999483441864 -0.0002807284206540641 0.0001565349119740308 -0.9999999483441864 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 0.2818142223592027 0.1785573489795022 0.9427078111490802 -0.2818142223592027 -0.1785573489795022 -0.9427078111490802 -0.03348084013298106 0.9726744552437342 0.2297464634337051 0.03348084013298106 -0.9726744552437342 -0.2297464634337051 0.4818010826970607 0.22595997373611 0.8466462112246865 -0.4818010826970607 -0.22595997373611 -0.8466462112246865 -0.2818180752902821 0.1785579729115788 0.9427065411618766 0.2818180752902821 -0.1785579729115788 -0.9427065411618766 0.001011990533916156 -0.0008954261137955052 0.9999990870432002 -0.001011990533916156 0.0008954261137955052 -0.9999990870432002 0.002221217822754517 -0.002345727983024854 0.9999947818621923 -0.002221217822754517 0.002345727983024854 -0.9999947818621923 -0.4390785855880069 0.8722665560520438 0.2153161649090516 0.4390785855880069 -0.8722665560520438 -0.2153161649090516 0.3283493187707493 0.3306983436379725 0.8847741691402875 -0.3283493187707493 -0.3306983436379725 -0.8847741691402875 -0.002221262159606195 -0.002345712392918114 0.9999947818002793 0.002221262159606195 0.002345712392918114 -0.9999947818002793 -0.001011990290598944 -0.0008954263256683121 0.9999990870432569 0.001011990290598944 0.0008954263256683121 -0.9999990870432569 0.1362496104767762 0.3488194948181901 0.9272329824158057 -0.1362496104767762 -0.3488194948181901 -0.9272329824158057 -0.008441607087187315 0.9540781587225472 0.2994388189904235 0.008441607087187315 -0.9540781587225472 -0.2994388189904235 -0.136250489327595 0.3488184035330123 0.9272332638094212 0.136250489327595 -0.3488184035330123 -0.9272332638094212 0.4374558677757206 -0.004190114349567642 0.8992301188741004 -0.4374558677757206 0.004190114349567642 -0.8992301188741004 0.4245302778687223 0.4022424278976751 0.8111566262884677 -0.4245302778687223 -0.4022424278976751 -0.8111566262884677 -0.01296507097444566 0.9520060979013328 0.3058043434833871 0.01296507097444566 -0.9520060979013328 -0.3058043434833871 -0.3813913782069187 0.8843791144645131 0.2690988638556295 0.3813913782069187 -0.8843791144645131 -0.2690988638556295 -0.4374569246052411 -0.004190067454014929 0.899229604967305 0.4374569246052411 0.004190067454014929 -0.899229604967305 -0.4245302747465338 0.4022424534965067 0.8111566152283682 0.4245302747465338 -0.4022424534965067 -0.8111566152283682 0.003439997739732104 0.0001394725262926738 0.9999940734639207 -0.003439997739732104 -0.0001394725262926738 -0.9999940734639207 -0.01478300939640896 0.9790725836662425 0.202973738563131 0.01478300939640896 -0.9790725836662425 -0.202973738563131 -0.01238376079733685 0.9254422777560835 0.378686193318619 0.01238376079733685 -0.9254422777560835 -0.378686193318619 0.002610959995311266 0.9247620000521626 0.3805370233596553 -0.002610959995311266 -0.9247620000521626 -0.3805370233596553 -0.003439994610727402 0.0001394697970728227 0.9999940734750652 0.003439994610727402 -0.0001394697970728227 -0.9999940734750652 -0.008243773311861815 0.9182764608397499 0.3958539903413963 0.008243773311861815 -0.9182764608397499 -0.3958539903413963 0.809062268051393 -0.005296295934975697 0.5876990689671925 -0.809062268051393 0.005296295934975697 -0.5876990689671925 -0.384970124415974 0.9206201242962624 0.06524254783409289 0.384970124415974 -0.9206201242962624 -0.06524254783409289 -0.3135274238242752 0.882947604923759 0.3494339443578869 0.3135274238242752 -0.882947604923759 -0.3494339443578869 -0.2493540230310667 0.8484132149469607 0.4669235353905227 0.2493540230310667 -0.8484132149469607 -0.4669235353905227 0.8895615761176244 0 0.4568152824666966 -0.8895615761176244 -0 -0.4568152824666966 -0.0175951655914716 0.9948258934248654 0.1000592420480349 0.0175951655914716 -0.9948258934248654 -0.1000592420480349 -0.01241268125867795 0.9276093213098375 0.3733455133828087 0.01241268125867795 -0.9276093213098375 -0.3733455133828087 -0.001902567885113303 0.9285006741488983 0.371325838503711 0.001902567885113303 -0.9285006741488983 -0.371325838503711 -0.2820162498870407 0.8935441405364961 0.3493504024794374 0.2820162498870407 -0.8935441405364961 -0.3493504024794374 -0.2771330402511802 0.960779697982544 0.009982481941339451 0.2771330402511802 -0.960779697982544 -0.009982481941339451 -0.0170119865673869 0.999555120818576 -0.02449801539702913 0.0170119865673869 -0.999555120818576 0.02449801539702913 -0.01248522173395713 0.9329216369708445 0.3598629440632834 0.01248522173395713 -0.9329216369708445 -0.3598629440632834</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"256\" source=\"#ID1504\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1502\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1500\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1501\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"179\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 0 2 6 1 8 2 2 10 6 8 12 2 1 14 8 6 10 16 12 10 2 18 12 8 14 20 8 10 22 16 12 24 10 26 12 18 20 18 8 14 28 20 16 22 30 24 22 10 12 32 24 26 34 12 36 26 18 38 18 20 28 40 20 22 42 30 24 44 22 32 46 24 34 32 12 48 34 26 36 18 38 36 50 26 40 38 20 28 52 40 30 42 54 44 42 22 24 46 44 56 46 32 34 58 32 48 60 34 50 48 26 62 36 38 64 50 36 62 38 40 52 66 40 42 68 54 44 70 42 46 70 44 56 72 46 58 56 32 60 58 34 48 74 60 50 76 48 78 36 62 78 64 36 64 80 50 52 82 66 54 68 84 68 42 70 46 86 70 72 86 46 88 72 56 90 56 58 92 58 60 74 94 60 76 74 48 80 76 50 96 78 62 82 98 66 68 100 84 70 102 68 86 102 70 90 88 56 92 90 58 94 92 60 104 94 74 76 106 74 80 108 76 96 62 66 82 110 98 84 100 112 114 88 90 116 90 92 94 118 92 94 104 120 121 120 104 106 104 74 108 106 76 110 124 98 100 126 112 116 114 90 118 116 92 94 120 118 121 118 120 128 121 104 106 130 104 108 132 106 126 134 112 136 114 116 138 116 118 121 140 118 128 142 121 130 128 104 132 130 106 134 144 112 138 136 116 140 138 118 142 140 121 128 146 142 130 148 128 132 150 130 144 152 112 134 154 144 138 156 136 140 158 138 160 140 142 146 162 142 148 146 128 130 150 148 144 164 152 134 166 154 144 154 164 138 158 156 160 158 140 162 160 142 146 168 162 148 170 146 148 150 170 164 172 152 166 174 154 164 154 172 158 176 156 160 176 158 162 178 160 146 170 180 150 182 170 166 184 174 186 172 154 156 176 188 160 178 176 170 190 180 182 192 170 194 184 166 154 196 186 176 198 188 178 200 176 170 192 190 182 202 192 194 204 184 176 200 198 188 198 206 192 208 190 202 210 192 204 212 184 214 204 194 198 200 216 206 198 218 208 220 190 210 208 192 184 212 222 204 224 212 214 226 204 198 216 218 200 228 216 206 218 230 210 232 208 184 222 234 226 224 204 236 226 214 206 230 238 210 240 232 234 222 242 226 244 224 246 226 236 238 230 248 234 242 250 246 244 226 248 246 236 230 246 248 250 242 252 246 254 244 230 254 246</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1502\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"179\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 7 3 5 3 9 4 7 11 3 3 13 9 9 15 4 17 11 7 3 11 13 9 13 19 9 21 15 17 23 11 11 25 13 19 13 27 9 19 21 21 29 15 31 23 17 11 23 25 25 33 13 13 35 27 19 27 37 21 19 39 21 41 29 31 43 23 23 45 25 25 47 33 13 33 35 27 35 49 39 19 37 27 51 37 21 39 41 41 53 29 55 43 31 23 43 45 45 47 25 33 47 57 33 59 35 35 61 49 27 49 51 39 37 63 37 51 65 41 39 63 41 67 53 55 69 43 43 71 45 45 71 47 47 73 57 33 57 59 35 59 61 61 75 49 49 77 51 63 37 79 37 65 79 51 81 65 67 83 53 85 69 55 71 43 69 71 87 47 47 87 73 57 73 89 59 57 91 61 59 93 61 95 75 49 75 77 51 77 81 63 79 97 67 99 83 85 101 69 69 103 71 71 103 87 57 89 91 59 91 93 61 93 95 75 95 105 75 107 77 77 109 81 67 63 97 99 111 83 113 101 85 91 89 115 93 91 117 93 119 95 105 122 123 122 105 95 75 105 107 77 107 109 99 125 111 113 127 101 91 115 117 93 117 119 122 119 123 119 122 95 105 123 129 105 131 107 107 133 109 113 135 127 117 115 137 119 117 139 119 141 123 123 143 129 105 129 131 107 131 133 113 145 135 117 137 139 119 139 141 123 141 143 143 147 129 129 149 131 131 151 133 113 153 145 145 155 135 137 157 139 139 159 141 143 141 161 143 163 147 129 147 149 149 151 131 153 165 145 155 167 135 165 155 145 157 159 139 141 159 161 143 161 163 163 169 147 147 171 149 171 151 149 153 173 165 155 175 167 173 155 165 157 177 159 159 177 161 161 179 163 181 171 147 171 183 151 175 185 167 155 173 187 189 177 157 177 179 161 181 191 171 171 193 183 167 185 195 187 197 155 189 199 177 177 201 179 191 193 171 193 203 183 185 205 195 199 201 177 207 199 189 191 209 193 193 211 203 185 213 205 195 205 215 217 201 199 219 199 207 191 221 209 193 209 211 223 213 185 213 225 205 205 227 215 219 217 199 217 229 201 231 219 207 209 233 211 235 223 185 205 225 227 215 227 237 239 231 207 233 241 211 243 223 235 225 245 227 237 227 247 249 231 239 251 243 235 227 245 247 237 247 249 249 247 231 253 243 251 245 255 247 247 255 231</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1502\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1505\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1506\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1509\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.5360015034675598 -0.8629845380783081 0.4011168479919434 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5109617710113525 -0.8316804766654968 0.2988536059856415 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5360015034675598 -0.8629845380783081 0.4011168479919434</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1509\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1507\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1510\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">0.4545401320225986 0.6272147484516137 0.6324515220201922 0.6550020983156387 0.4876283129803074 0.5772268874386309 0.345541571839725 0.9120028016585794 0.2210246861720067 -0.345541571839725 -0.9120028016585794 -0.2210246861720067 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.4545401320225986 -0.6272147484516137 -0.6324515220201922</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1510\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1508\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1506\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1507\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1508\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1511\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1512\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1515\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"324\">-0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5900352597236633 -0.7042819857597351 0.3781213462352753 -0.5614061951637268 -0.8348765969276428 0.3970467150211334 -0.5591177940368652 -0.8102383017539978 0.2943964898586273 -0.5942209959030151 -0.7019175291061401 0.2899888455867767 -0.5942209959030151 -0.7019175291061401 0.2899888455867767 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.564113974571228 -0.7998819351196289 0.2286180704832077 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.596644401550293 -0.6744176149368286 0.3732988834381104 -0.6056320667266846 -0.6565739512443543 0.2298039048910141 -0.6056320667266846 -0.6565739512443543 0.2298039048910141 -0.6020826697349548 -0.6751006841659546 0.2901735305786133 -0.6020826697349548 -0.6751006841659546 0.2901735305786133 -0.6089040040969849 -0.6353139281272888 0.1513132899999619 -0.6089040040969849 -0.6353139281272888 0.1513132899999619 -0.6128094792366028 -0.6618664264678955 0.2912401556968689 -0.6128094792366028 -0.6618664264678955 0.2912401556968689 -0.6167487502098084 -0.6420672535896301 0.2305959314107895 -0.6167487502098084 -0.6420672535896301 0.2305959314107895 -0.6211212873458862 -0.623186469078064 0.1507736295461655 -0.6211212873458862 -0.623186469078064 0.1507736295461655 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.5803917050361633 -0.7780205607414246 0.1524880826473236 -0.6087551116943359 -0.6622411012649536 0.3692092895507813 -0.6087551116943359 -0.6622411012649536 0.3692092895507813 -0.6310858130455017 -0.5694386959075928 0.02023929730057716 -0.6310858130455017 -0.5694386959075928 0.02023929730057716 -0.6167565584182739 -0.5806991457939148 0.01851669326424599 -0.6167565584182739 -0.5806991457939148 0.01851669326424599 -0.663953423500061 -0.6420672535896301 0.2324964851140976 -0.663953423500061 -0.6420672535896301 0.2324964851140976 -0.652129054069519 -0.6622440814971924 0.3726666569709778 -0.652129054069519 -0.6622440814971924 0.3726666569709778 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6254137754440308 -0.6747926473617554 0.3891410231590271 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6757356524467468 -0.6232461929321289 0.151445209980011 -0.6851193904876709 -0.5696841478347778 0.01786315068602562 -0.6851193904876709 -0.5696841478347778 0.01786315068602562 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.5959435701370239 -0.7395881414413452 0.01842614635825157 -0.654255211353302 -0.6612551212310791 0.2933478653430939 -0.654255211353302 -0.6612551212310791 0.2933478653430939 -0.6266710758209229 -0.666684091091156 0.3805446624755859 -0.6266710758209229 -0.666684091091156 0.3805446624755859 -0.6365204453468323 -0.5123711824417114 -0.1182090491056442 -0.6365204453468323 -0.5123711824417114 -0.1182090491056442 -0.6851193904876709 -0.5125510692596436 -0.1188254952430725 -0.6851193904876709 -0.5125510692596436 -0.1188254952430725 -0.6213362812995911 -0.523088812828064 -0.1182090491056442 -0.6213362812995911 -0.523088812828064 -0.1182090491056442 -0.662648618221283 -0.6536641716957092 0.2969664335250855 -0.662648618221283 -0.6536641716957092 0.2969664335250855 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.7917594909667969 -0.6216936707496643 0.151445209980011 -0.637385904788971 -0.6666867136955261 0.380647212266922 -0.637385904788971 -0.6666867136955261 0.380647212266922 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.6392813324928284 -0.6744205951690674 0.3888895809650421 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.5681315660476685 0.01786315068602562 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.8011427521705627 -0.510998547077179 -0.1188254207372665 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.6005997657775879 -0.6858347654342651 -0.1154895722866058 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.7726795077323914 -0.6405144333839417 0.2324964851140976 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.6565507054328919 -0.6744205951690674 0.3794410824775696 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.6374267935752869 -0.4625494778156281 -0.2498909682035446 -0.6374267935752869 -0.4625494778156281 -0.2498909682035446 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6226447820663452 -0.4733588397502899 -0.2504602670669556 -0.6226447820663452 -0.4733588397502899 -0.2504602670669556 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.7497841715812683 -0.6521115303039551 0.2969664335250855 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.6738100051879883 -0.6744205951690674 0.3601852357387543 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.669903576374054 -0.652129054069519 0.3517222404479981 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.6064889430999756 -0.6300344467163086 -0.2481426149606705 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.7213810682296753 -0.6512529253959656 0.3517223000526428 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6244751811027527 -0.4488380253314972 -0.2738399505615234 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.7809916734695435 -0.4606519639492035 -0.2500443458557129 -0.6649683117866516 -0.4622048437595367 -0.2500443458557129 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.609523355960846 -0.4595814645290375 -0.2738712131977081 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.6528242230415344 -0.4488013684749603 -0.2736926674842835 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.7809916734695435 0.3217366635799408 -0.2500443458557129 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002 -0.5934104323387146 -0.6027178764343262 -0.2739138007164002</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"108\" source=\"#ID1515\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1513\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1516\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"324\">0.7476117988063761 0.6572838630161918 0.09515525053304569 0.6550020983156387 0.4876283129803074 0.5772268874386309 0.8216288131614381 0.2706515877970226 0.5016710191010413 -0.8216288131614381 -0.2706515877970226 -0.5016710191010413 -0.6550020983156387 -0.4876283129803074 -0.5772268874386309 -0.7476117988063761 -0.6572838630161918 -0.09515525053304569 0.9584177845989502 0.2850008742348596 -0.01448626417700434 -0.9584177845989502 -0.2850008742348596 0.01448626417700434 0.7244552439627415 0.6850948378838646 0.07622114273458253 -0.7244552439627415 -0.6850948378838646 -0.07622114273458253 0.7753776474116275 0.4751149390666444 0.4159991569343728 -0.7753776474116275 -0.4751149390666444 -0.4159991569343728 0.8881477781735072 0.4524796353460257 0.08034739399999649 -0.8881477781735072 -0.4524796353460257 -0.08034739399999649 0.8941930136861405 0.4475389692309519 0.01130156159982143 -0.8941930136861405 -0.4475389692309519 -0.01130156159982143 0.8752548469912496 0.4733750407807403 0.09922209221820005 -0.8752548469912496 -0.4733750407807403 -0.09922209221820005 0.4543224241270784 0.8834901017645209 0.11417694609426 -0.4543224241270784 -0.8834901017645209 -0.11417694609426 0.4390754791618005 0.8722680660772021 0.2153163823325404 -0.4390754791618005 -0.8722680660772021 -0.2153163823325404 0.3813948965532262 0.8843778726692496 0.269097958402078 -0.3813948965532262 -0.8843778726692496 -0.269097958402078 0.7923653450499429 0.6086502283222469 0.04125602413176856 -0.7923653450499429 -0.6086502283222469 -0.04125602413176856 0.383967075534481 0.8794224081425625 0.2813992056887057 -0.383967075534481 -0.8794224081425625 -0.2813992056887057 0.3135360072946354 0.8829453143304613 0.3494320306320262 -0.3135360072946354 -0.8829453143304613 -0.3494320306320262 0.8653510967847383 0.4780680927149463 0.1503940757521522 -0.8653510967847383 -0.4780680927149463 -0.1503940757521522 0.03348087307887111 0.9726744395591567 0.2297465250360863 -0.03348087307887111 -0.9726744395591567 -0.2297465250360863 -0.2331067307112813 0.8320228762697379 0.503387708889411 0.2331067307112813 -0.8320228762697379 -0.503387708889411 0.1983810430487766 0.4627927864657314 0.863983679564703 -0.1983810430487766 -0.4627927864657314 -0.863983679564703 0.008441628187206814 0.9540781631986869 0.2994388041336138 -0.008441628187206814 -0.9540781631986869 -0.2994388041336138 -0.002610862372902 0.9247620023780555 0.3805370183771865 0.002610862372902 -0.9247620023780555 -0.3805370183771865 0.7968674597543884 0.5870317053962028 0.1428146646679311 -0.7968674597543884 -0.5870317053962028 -0.1428146646679311 0.3552230113875264 0.9270105580432917 0.1202831553337471 -0.3552230113875264 -0.9270105580432917 -0.1202831553337471 0.08976514704597118 0.8138320965427058 0.5741250186263609 -0.08976514704597118 -0.8138320965427058 -0.5741250186263609 0.2820189569398525 0.8935433688248957 0.3493501910055495 -0.2820189569398525 -0.8935433688248957 -0.3493501910055495 0.001902625878580924 0.9285006704963633 0.3713258473397318 -0.001902625878580924 -0.9285006704963633 -0.3713258473397318 0.8445678230404525 0.5026257642637024 0.1845874681094032 -0.8445678230404525 -0.5026257642637024 -0.1845874681094032 0.3849831700521143 0.9206148005691767 0.06524069090375866 -0.3849831700521143 -0.9206148005691767 -0.06524069090375866 0.01296510866664954 0.9520061052465042 0.3058043190189504 -0.01296510866664954 -0.9520061052465042 -0.3058043190189504 -0.09447285823394672 0.7839505576979712 0.6135930264777693 0.09447285823394672 -0.7839505576979712 -0.6135930264777693 -0.2441943401385535 0.4431550853429167 0.8625443145595528 0.2441943401385535 -0.4431550853429167 -0.8625443145595528 0.01238381535827511 0.9254422776884952 0.378686191699542 -0.01238381535827511 -0.9254422776884952 -0.378686191699542 0.01241273853124808 0.9276093124790017 0.3733455334196308 -0.01241273853124808 -0.9276093124790017 -0.3733455334196308 0.8188535649683953 0.5430980693366506 0.1858045376769702 -0.8188535649683953 -0.5430980693366506 -0.1858045376769702 0.01478301714399302 0.9790725865523251 0.2029737240774287 -0.01478301714399302 -0.9790725865523251 -0.2029737240774287 -0.5736763948085086 0.3276465503718861 0.7506950992706128 0.5736763948085086 -0.3276465503718861 -0.7506950992706128 0.2771369959745497 0.9607785545357305 0.009982715383835508 -0.2771369959745497 -0.9607785545357305 -0.009982715383835508 0.2493525773637736 0.8484138635542167 0.4669231288885251 -0.2493525773637736 -0.8484138635542167 -0.4669231288885251 0.008243433979804274 0.9182764917626426 0.3958539256750068 -0.008243433979804274 -0.9182764917626426 -0.3958539256750068 0.01248526471267345 0.9329216223065805 0.3598629805883239 -0.01248526471267345 -0.9329216223065805 -0.3598629805883239 0.7773720159345992 0.4537323794727712 0.4356830001959617 -0.7773720159345992 -0.4537323794727712 -0.4356830001959617 0.0175951555574402 0.9948258762089856 0.1000594149789708 -0.0175951555574402 -0.9948258762089856 -0.1000594149789708 -0.4818032002582215 0.2259585463732884 0.8466453871260427 0.4818032002582215 -0.2259585463732884 -0.8466453871260427 -0.3283505887844118 0.3306960167614941 0.8847745675272385 0.3283505887844118 -0.3306960167614941 -0.8847745675272385 0.7904399506188402 0.4467527980245364 0.4190663693532726 -0.7904399506188402 -0.4467527980245364 -0.4190663693532726 0.01701204558444335 0.9995551163423349 -0.02449815705097821 -0.01701204558444335 -0.9995551163423349 0.02449815705097821 0.1362496104767762 0.3488194948181901 0.9272329824158057 -0.1362496104767762 -0.3488194948181901 -0.9272329824158057 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 0.2818142223592027 0.1785573489795022 0.9427078111490802 -0.2818142223592027 -0.1785573489795022 -0.9427078111490802 0.4245302778687223 0.4022424278976751 0.8111566262884677 -0.4245302778687223 -0.4022424278976751 -0.8111566262884677 0 0 1 -0 -0 -1 0.4644031292697052 0.1881536417132338 0.8654062286779275 -0.4644031292697052 -0.1881536417132338 -0.8654062286779275</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"108\" source=\"#ID1516\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1514\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1512\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1513\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"144\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 0 2 6 7 3 5 8 0 6 7 5 9 6 2 10 11 3 7 8 6 12 13 7 9 14 6 10 11 7 15 6 14 12 13 15 7 8 12 16 17 13 9 14 10 18 19 11 15 12 14 20 21 15 13 22 16 12 13 17 23 24 8 16 17 9 25 14 18 20 21 19 15 10 26 18 19 27 11 12 20 22 23 21 13 22 28 16 17 29 23 24 16 30 31 17 25 32 20 18 19 21 33 18 26 34 35 27 19 36 26 10 11 27 37 38 22 20 21 23 39 28 30 16 17 31 29 40 28 22 23 29 41 42 24 30 31 25 43 32 18 44 45 19 33 38 20 32 33 21 39 34 26 46 47 27 35 44 18 34 35 19 45 46 26 36 37 27 47 40 22 38 39 23 41 48 30 28 29 31 49 40 50 28 29 51 41 42 30 52 53 31 43 32 44 54 55 45 33 56 38 32 33 39 57 34 46 58 59 47 35 54 44 34 35 45 55 60 46 36 37 47 61 62 40 38 39 41 63 48 52 30 31 53 49 50 48 28 29 49 51 64 50 40 41 51 65 66 42 52 53 43 67 68 32 54 55 33 69 56 62 38 39 63 57 68 56 32 33 57 69 58 46 60 61 47 59 70 34 58 59 35 71 72 54 34 35 55 73 62 64 40 41 65 63 48 74 52 53 75 49 50 76 48 49 77 51 78 50 64 65 51 79 66 52 80 81 53 67 82 68 54 55 69 83 70 58 60 61 59 71 70 84 34 35 85 71 84 86 34 35 87 85 82 54 72 73 55 83 76 74 48 49 75 77 74 80 52 53 81 75 78 76 50 51 77 79 88 66 80 81 67 89 82 72 90 91 73 83 76 92 74 75 93 77 92 80 74 75 81 93 94 95 96 97 98 99 88 80 100 101 81 89 102 92 76 77 93 103 92 100 80 81 101 93 95 104 96 97 105 98 106 88 100 101 89 107</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1514\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1517\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1518\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1521\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"534\">-0.3606338500976563 -1.926416754722595 -0.09349501132965088 -0.3624692857265472 -1.826847672462463 -0.1463934928178787 -0.2926522493362427 -1.851223945617676 -0.1463934928178787 -0.2926522493362427 -1.851223945617676 -0.1463934928178787 -0.3624692857265472 -1.826847672462463 -0.1463934928178787 -0.3606338500976563 -1.926416754722595 -0.09349501132965088 -0.001449317671358585 -1.628891706466675 -0.1275773644447327 -0.001449317671358585 -1.628891706466675 -0.1275773644447327 -0.4921964704990387 -1.894847393035889 -0.09349501132965088 -0.4921964704990387 -1.894847393035889 -0.09349501132965088 -0.235410675406456 -1.933972954750061 -0.09592393785715103 -0.235410675406456 -1.933972954750061 -0.09592393785715103 -0.3976570665836334 -1.780892610549927 -0.1463934928178787 -0.3976570665836334 -1.780892610549927 -0.1463934928178787 -0.1878064125776291 -1.864198327064514 -0.1463934928178787 -0.1878064125776291 -1.864198327064514 -0.1463934928178787 -0.4105052947998047 -1.968539357185364 -0.01854868978261948 -0.4105052947998047 -1.968539357185364 -0.01854868978261948 -0.2646690011024475 -1.9807208776474 -0.01785293966531754 -0.2646690011024475 -1.9807208776474 -0.01785293966531754 -0.4050852954387665 -1.714909911155701 -0.1463934928178787 -0.4050852954387665 -1.714909911155701 -0.1463934928178787 -0.001449264585971832 -1.864198327064514 -0.1463934928178787 -0.001449264585971832 -1.864198327064514 -0.1463934928178787 -0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.5109597444534302 -1.817365527153015 -0.09349501132965088 -0.5109597444534302 -1.817365527153015 -0.09349501132965088 -0.001366172917187214 -1.941106200218201 -0.09592393785715103 -0.001366172917187214 -1.941106200218201 -0.09592393785715103 -0.4193870723247528 -1.601637005805969 -0.1275773644447327 -0.4193870723247528 -1.601637005805969 -0.1275773644447327 0.1849076002836227 -1.864198327064514 -0.1463934928178787 0.1849076002836227 -1.864198327064514 -0.1463934928178787 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.1956147998571396 -1.975192189216614 0.06858637928962708 -0.001449317671358585 -1.9807208776474 -0.01785293966531754 -0.001449317671358585 -1.9807208776474 -0.01785293966531754 -0.3988296985626221 -1.515700936317444 -0.1028623208403587 -0.3988296985626221 -1.515700936317444 -0.1028623208403587 -0.4935618042945862 -1.730852842330933 -0.09349501132965088 -0.4935618042945862 -1.730852842330933 -0.09349501132965088 0.2897535860538483 -1.851223945617676 -0.1463934928178787 0.2897535860538483 -1.851223945617676 -0.1463934928178787 0.2325120717287064 -1.933972954750061 -0.09592393785715103 0.2325120717287064 -1.933972954750061 -0.09592393785715103 -0.5515520572662354 -1.828812718391419 -0.01854868978261948 -0.5515520572662354 -1.828812718391419 -0.01854868978261948 -0.001449317671358585 -1.975146889686585 0.06838828325271606 -0.001449317671358585 -1.975146889686585 0.06838828325271606 0.2617702782154083 -1.9807208776474 -0.01785293966531754 0.2617702782154083 -1.9807208776474 -0.01785293966531754 -0.3782610595226288 -1.453732490539551 -0.08835642039775848 -0.3782610595226288 -1.453732490539551 -0.08835642039775848 -0.4942137002944946 -1.606165766716003 -0.07467878609895706 -0.4942137002944946 -1.606165766716003 -0.07467878609895706 0.35957071185112 -1.826847672462463 -0.1463934928178787 0.35957071185112 -1.826847672462463 -0.1463934928178787 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.317712277173996 -1.412886142730713 -0.08004907518625259 -0.317712277173996 -1.412886142730713 -0.08004907518625259 -0.5008955001831055 -1.484931826591492 -0.05118564888834953 -0.5008955001831055 -1.484931826591492 -0.05118564888834953 -0.541976809501648 -1.741774439811707 -0.01074292883276939 -0.541976809501648 -1.741774439811707 -0.01074292883276939 0.3947583734989166 -1.780892610549927 -0.1463934928178787 0.3947583734989166 -1.780892610549927 -0.1463934928178787 0.3577354252338409 -1.926417708396912 -0.09349501132965088 0.3577354252338409 -1.926417708396912 -0.09349501132965088 -0.5108418464660645 -1.82867443561554 0.210712805390358 -0.5108418464660645 -1.82867443561554 0.210712805390358 0.1927159428596497 -1.975192189216614 0.06858637928962708 0.1927159428596497 -1.975192189216614 0.06858637928962708 -0.1767936646938324 -1.406760692596436 -0.08004907518625259 -0.1767936646938324 -1.406760692596436 -0.08004907518625259 -0.4652675688266754 -1.396878957748413 -0.0271506030112505 -0.4652675688266754 -1.396878957748413 -0.0271506030112505 -0.5288583636283875 -1.602755665779114 0.02520615234971046 -0.5288583636283875 -1.602755665779114 0.02520615234971046 0.4021864235401154 -1.714909911155701 -0.1463934928178787 0.4021864235401154 -1.714909911155701 -0.1463934928178787 0.4892977476119995 -1.894847393035889 -0.09349501132965088 0.4892977476119995 -1.894847393035889 -0.09349501132965088 0.4076065123081207 -1.968539357185364 -0.01854868978261948 0.4076065123081207 -1.968539357185364 -0.01854868978261948 -0.001449264585971832 -1.40310525894165 -0.08004907518625259 -0.001449264585971832 -1.40310525894165 -0.08004907518625259 -0.3848465085029602 -1.370032668113709 -0.0271506030112505 -0.3848465085029602 -1.370032668113709 -0.0271506030112505 -0.5189878940582275 -1.473042607307434 0.0858701765537262 -0.5189878940582275 -1.473042607307434 0.0858701765537262 -0.5151616930961609 -1.741188645362854 0.2367520481348038 -0.5151616930961609 -1.741188645362854 0.2367520481348038 0.4164886176586151 -1.601638078689575 -0.1275773644447327 0.4164886176586151 -1.601638078689575 -0.1275773644447327 0.5080612301826477 -1.81736695766449 -0.09349501132965088 0.5080612301826477 -1.81736695766449 -0.09349501132965088 0.351957768201828 -1.969097256660461 0.0834038257598877 0.351957768201828 -1.969097256660461 0.0834038257598877 0.1738950163125992 -1.406760692596436 -0.08004907518625259 0.1738950163125992 -1.406760692596436 -0.08004907518625259 -0.2127160131931305 -1.348718166351318 -0.0271506030112505 -0.2127160131931305 -1.348718166351318 -0.0271506030112505 -0.5000548958778381 -1.364248633384705 0.1308065205812454 -0.5000548958778381 -1.364248633384705 0.1308065205812454 -0.5150116086006165 -1.602635979652405 0.2695119678974152 -0.5150116086006165 -1.602635979652405 0.2695119678974152 0.3959312736988068 -1.515700936317444 -0.1028623208403587 0.3959312736988068 -1.515700936317444 -0.1028623208403587 0.4906633496284485 -1.730852842330933 -0.09349501132965088 0.4906633496284485 -1.730852842330933 -0.09349501132965088 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.314813494682312 -1.412886142730713 -0.08004907518625259 0.314813494682312 -1.412886142730713 -0.08004907518625259 0.2098170965909958 -1.348718166351318 -0.0271506030112505 0.2098170965909958 -1.348718166351318 -0.0271506030112505 -0.001449264585971832 -1.346470355987549 -0.0247164648026228 -0.001449264585971832 -1.346470355987549 -0.0247164648026228 -0.4503773152828217 -1.332709312438965 0.1465340554714203 -0.4503773152828217 -1.332709312438965 0.1465340554714203 -0.5091840028762817 -1.473127722740173 0.2953929603099823 -0.5091840028762817 -1.473127722740173 0.2953929603099823 0.3753623962402344 -1.453732490539551 -0.08835642039775848 0.3753623962402344 -1.453732490539551 -0.08835642039775848 0.4913150072097778 -1.606165766716003 -0.07467878609895706 0.4913150072097778 -1.606165766716003 -0.07467878609895706 0.5486531853675842 -1.828812718391419 -0.01854868978261948 0.5486531853675842 -1.828812718391419 -0.01854868978261948 0.3819479644298554 -1.370032668113709 -0.0271506030112505 0.3819479644298554 -1.370032668113709 -0.0271506030112505 -0.2346685528755188 -1.304289698600769 0.1577682644128799 -0.2346685528755188 -1.304289698600769 0.1577682644128799 -0.4488465189933777 -1.36491858959198 0.3139463365077972 -0.4488465189933777 -1.36491858959198 0.3139463365077972 0.4979969263076782 -1.484931826591492 -0.05118564888834953 0.4979969263076782 -1.484931826591492 -0.05118564888834953 0.5390774607658386 -1.741774439811707 -0.01074292883276939 0.5390774607658386 -1.741774439811707 -0.01074292883276939 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.4623689949512482 -1.396880269050598 -0.0271506030112505 0.4623689949512482 -1.396880269050598 -0.0271506030112505 0.4474785029888153 -1.332709312438965 0.1465340554714203 0.4474785029888153 -1.332709312438965 0.1465340554714203 0.2317695468664169 -1.304289698600769 0.1577682644128799 0.2317695468664169 -1.304289698600769 0.1577682644128799 -0.001449317671358585 -1.30136251449585 0.1578548401594162 -0.001449317671358585 -1.30136251449585 0.1578548401594162 -0.3898182511329651 -1.332667946815491 0.3197168409824371 -0.3898182511329651 -1.332667946815491 0.3197168409824371 0.5259599089622498 -1.60275661945343 0.02520615234971046 0.5259599089622498 -1.60275661945343 0.02520615234971046 0.5079431533813477 -1.828675627708435 0.210712805390358 0.5079431533813477 -1.828675627708435 0.210712805390358 0.4971560835838318 -1.364249706268311 0.1308065205812454 0.4971560835838318 -1.364249706268311 0.1308065205812454 -0.2033214420080185 -1.304823517799377 0.3252071440219879 -0.2033214420080185 -1.304823517799377 0.3252071440219879 0.5160892605781555 -1.473042607307434 0.0858701765537262 0.5160892605781555 -1.473042607307434 0.0858701765537262 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.5122631192207336 -1.741188645362854 0.2367520481348038 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.4459479153156281 -1.36491858959198 0.3139463365077972 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.3869192898273468 -1.332667946815491 0.3197168409824371 0.2004226595163345 -1.304823517799377 0.3252071440219879 0.2004226595163345 -1.304823517799377 0.3252071440219879 -0.001449264585971832 -1.302743792533875 0.3265746533870697 -0.001449264585971832 -1.302743792533875 0.3265746533870697 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5121124982833862 -1.602635979652405 0.2695119678974152 0.5062857866287231 -1.473127722740173 0.2953929603099823 0.5062857866287231 -1.473127722740173 0.2953929603099823</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"178\" source=\"#ID1521\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1519\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1522\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"534\">0.1102844365530712 0.6884343880834366 0.7168650056728645 0.1033700632704769 0.2084592851432369 0.9725530095871527 0.04521304169707321 0.259030171588043 0.9648104223460522 -0.04521304169707321 -0.259030171588043 -0.9648104223460522 -0.1033700632704769 -0.2084592851432369 -0.9725530095871527 -0.1102844365530712 -0.6884343880834366 -0.7168650056728645 -4.307140260861875e-008 -0.1462111153925923 0.98925341027244 4.307140260861875e-008 0.1462111153925923 -0.98925341027244 0.5321740367225489 0.4647669008979348 0.7076598918040757 -0.5321740367225489 -0.4647669008979348 -0.7076598918040757 0.0413459562307197 0.7207422630431816 0.6919690037615563 -0.0413459562307197 -0.7207422630431816 -0.6919690037615563 0.1961331907637079 0.06135705273615555 0.9786557533476109 -0.1961331907637079 -0.06135705273615555 -0.9786557533476109 0.01033695112433616 0.2777725719850512 0.9605912479792135 -0.01033695112433616 -0.2777725719850512 -0.9605912479792135 0.2164019946925166 0.9532943408112349 0.2107132565131422 -0.2164019946925166 -0.9532943408112349 -0.2107132565131422 0.05566140920335683 0.9755575218522317 0.2125778188876468 -0.05566140920335683 -0.9755575218522317 -0.2125778188876468 0.234471846381218 -0.0643979059398732 0.9699875581496608 -0.234471846381218 0.0643979059398732 -0.9699875581496608 5.093929862705434e-006 0.2528021849297338 0.9675179870518195 -5.093929862705434e-006 -0.2528021849297338 -0.9675179870518195 0.7043444308093231 0.6885011446313276 0.1728152094847037 -0.7043444308093231 -0.6885011446313276 -0.1728152094847037 0.716448435581581 0.0321284880729666 0.69689984890718 -0.716448435581581 -0.0321284880729666 -0.69689984890718 -5.784214901150153e-006 0.7419429016926926 0.6704630717603842 5.784214901150153e-006 -0.7419429016926926 -0.6704630717603842 0.3123301514282754 -0.232653174309777 0.9210441775465361 -0.3123301514282754 0.232653174309777 -0.9210441775465361 -0.01033691087861853 0.277772542345011 0.9605912569832584 0.01033691087861853 -0.277772542345011 -0.9605912569832584 0.1493590760120027 0.9875730596760047 -0.04890110648048201 -0.1493590760120027 -0.9875730596760047 0.04890110648048201 0.01854079080984633 0.9975812603195948 -0.06699155271610174 -0.01854079080984633 -0.9975812603195948 0.06699155271610174 2.790039622087009e-018 0.9795646181507258 0.2011297065756883 -2.790039622087009e-018 -0.9795646181507258 -0.2011297065756883 0.2153401244752097 -0.2706544164613817 0.9382829091702301 -0.2153401244752097 0.2706544164613817 -0.9382829091702301 0.7095592943048024 -0.1085354821195478 0.6962367822707647 -0.7095592943048024 0.1085354821195478 -0.6962367822707647 -0.04521192352943625 0.2590288814080347 0.9648108211288216 0.04521192352943625 -0.2590288814080347 -0.9648108211288216 -0.0413438662129717 0.7207413543092698 0.6919700751586035 0.0413438662129717 -0.7207413543092698 -0.6919700751586035 0.9805421601871839 0.1026497737848967 0.1673322922730709 -0.9805421601871839 -0.1026497737848967 -0.1673322922730709 4.377473158451889e-011 0.9979296639472881 -0.06431474025487947 -4.377473158451889e-011 -0.9979296639472881 0.06431474025487947 -0.05565935011423944 0.9755584605081817 0.2125740503348586 0.05565935011423944 -0.9755584605081817 -0.2125740503348586 0.1816563073119213 -0.3539460384193683 0.9174547334343161 -0.1816563073119213 0.3539460384193683 -0.9174547334343161 0.7610440641787706 -0.1404914023157347 0.6333041119822434 -0.7610440641787706 0.1404914023157347 -0.6333041119822434 -0.1033703901796722 0.2084578250215096 0.9725532878055599 0.1033703901796722 -0.2084578250215096 -0.9725532878055599 0.747043425910407 0.6504555146670747 -0.1372360857909948 -0.747043425910407 -0.6504555146670747 0.1372360857909948 0.06541783064119561 -0.5082262244283293 0.8587354727956247 -0.06541783064119561 0.5082262244283293 -0.8587354727956247 0.7656897381547677 -0.274108269361712 0.5818796108749732 -0.7656897381547677 0.274108269361712 -0.5818796108749732 0.9780136521515699 -0.09947584929131725 0.1832862559302234 -0.9780136521515699 0.09947584929131725 -0.1832862559302234 -0.1961330129413249 0.06135674483668833 0.9786558082889019 0.1961330129413249 -0.06135674483668833 -0.9786558082889019 -0.1102849643238392 0.6884360637011642 0.7168633153117381 0.1102849643238392 -0.6884360637011642 -0.7168633153117381 0.9753070585279619 0.1705312787247317 -0.1403396756517649 -0.9753070585279619 -0.1705312787247317 0.1403396756517649 -0.01854023728564532 0.9975813585017789 -0.06699024385040971 0.01854023728564532 -0.9975813585017789 0.06699024385040971 0.02138505679844553 -0.4553018746991844 0.8900802673024132 -0.02138505679844553 0.4553018746991844 -0.8900802673024132 0.5689659860680157 -0.6358120761339294 0.5215560473620385 -0.5689659860680157 0.6358120761339294 -0.5215560473620385 0.990482205730385 -0.08332503075027384 0.1095533631703609 -0.990482205730385 0.08332503075027384 -0.1095533631703609 -0.2344705609306409 -0.06439821856471613 0.9699878481210792 0.2344705609306409 0.06439821856471613 -0.9699878481210792 -0.5321715949501727 0.4647679909086325 0.7076610121766936 0.5321715949501727 -0.4647679909086325 -0.7076610121766936 -0.216402336378506 0.9532941923770181 0.2107135771377177 0.216402336378506 -0.9532941923770181 -0.2107135771377177 -2.812811688057497e-009 -0.469904473165833 0.8827172741590259 2.812811688057497e-009 0.469904473165833 -0.8827172741590259 0.1938866687187758 -0.8326174796938357 0.5188025560860518 -0.1938866687187758 0.8326174796938357 -0.5188025560860518 0.9825476572045379 -0.171768516677661 0.07138401782073113 -0.9825476572045379 0.171768516677661 -0.07138401782073113 0.9958208103188742 0.02618308965014393 -0.08749491157909338 -0.9958208103188742 -0.02618308965014393 0.08749491157909338 -0.3123299092873392 -0.2326510344493272 0.9210448001776137 0.3123299092873392 0.2326510344493272 -0.9210448001776137 -0.7164482581224304 0.03213212483050044 0.6968998636728325 0.7164482581224304 -0.03213212483050044 -0.6968998636728325 -0.149357994953947 0.9875735034865902 -0.04889544513099698 0.149357994953947 -0.9875735034865902 0.04889544513099698 -0.0213850771991602 -0.4553019057041807 0.89008025095231 0.0213850771991602 0.4553019057041807 -0.89008025095231 0.05873867013076143 -0.8544479039721123 0.5162059163056284 -0.05873867013076143 0.8544479039721123 -0.5162059163056284 0.7955663513823786 -0.6002896085858349 0.08201564711684241 -0.7955663513823786 0.6002896085858349 -0.08201564711684241 0.9984411485218635 -0.01772472490393671 -0.05292548597246906 -0.9984411485218635 0.01772472490393671 0.05292548597246906 -0.2153405394920977 -0.2706533764593418 0.9382831139173347 0.2153405394920977 0.2706533764593418 -0.9382831139173347 -0.7095609051348071 -0.1085351406263525 0.6962351938486673 0.7095609051348071 0.1085351406263525 -0.6962351938486673 -0.7043453961272412 0.6885000654906582 0.1728155744535739 0.7043453961272412 -0.6885000654906582 -0.1728155744535739 -0.06541868829408093 -0.5082262645592816 0.8587353837090919 0.06541868829408093 0.5082262645592816 -0.8587353837090919 -0.05873856335209898 -0.8544479846210449 0.5162057949620151 0.05873856335209898 0.8544479846210449 -0.5162057949620151 -4.505566842810803e-009 -0.8699258848861241 0.4931824761739755 4.505566842810803e-009 0.8699258848861241 -0.4931824761739755 0.3623917214846428 -0.9289771709492192 0.0753236752593929 -0.3623917214846428 0.9289771709492192 -0.0753236752593929 0.9687409037377627 -0.2150856712682755 -0.1236091236131779 -0.9687409037377627 0.2150856712682755 0.1236091236131779 -0.1816568763454598 -0.3539484409708389 0.9174536938781831 0.1816568763454598 0.3539484409708389 -0.9174536938781831 -0.7610442542995036 -0.1404904499567133 0.6333040947828087 0.7610442542995036 0.1404904499567133 -0.6333040947828087 -0.9805431581954143 0.1026452389617377 0.1673292258831386 0.9805431581954143 -0.1026452389617377 -0.1673292258831386 -0.1938926420317465 -0.8326148238787625 0.5188045859697908 0.1938926420317465 0.8326148238787625 -0.5188045859697908 0.07586902325831367 -0.9913590887010482 0.1070095722805057 -0.07586902325831367 0.9913590887010482 -0.1070095722805057 0.6730663500074919 -0.7101697307652958 -0.2064961064822766 -0.6730663500074919 0.7101697307652958 0.2064961064822766 -0.7656894567676184 -0.2741104707790182 0.5818789441148515 0.7656894567676184 0.2741104707790182 -0.5818789441148515 -0.9780139960392903 -0.09947648931692157 0.1832840735700717 0.9780139960392903 0.09947648931692157 -0.1832840735700717 -0.747044926563488 0.6504540070975241 -0.1372350623803081 0.747044926563488 -0.6504540070975241 0.1372350623803081 -0.5689687714554724 -0.6358099364793625 0.5215556171517662 0.5689687714554724 0.6358099364793625 -0.5215556171517662 -0.3623985485590152 -0.9289743956436117 0.07532505719151701 0.3623985485590152 0.9289743956436117 -0.07532505719151701 -0.07586897640646192 -0.9913590911749723 0.1070095825791727 0.07586897640646192 0.9913590911749723 -0.1070095825791727 -6.861687268936658e-009 -0.993110212151613 0.1171840711025953 6.861687268936658e-009 0.993110212151613 -0.1171840711025953 0.2765227344053635 -0.9567016942412029 -0.09086828705875856 -0.2765227344053635 0.9567016942412029 0.09086828705875856 -0.9904823390352332 -0.08332329393080694 0.1095534789398025 0.9904823390352332 0.08332329393080694 -0.1095534789398025 -0.9753074974216965 0.1705307485558667 -0.1403372697112316 0.9753074974216965 -0.1705307485558667 0.1403372697112316 -0.7955693304830882 -0.6002854616638265 0.08201710132489212 0.7955693304830882 0.6002854616638265 -0.08201710132489212 0.0714146009854829 -0.997297786611956 -0.01723599677934504 -0.0714146009854829 0.997297786611956 0.01723599677934504 -0.9825473850294997 -0.1717699905701884 0.07138421752186797 0.9825473850294997 0.1717699905701884 -0.07138421752186797 -0.9958208935248408 0.02618264676288238 -0.08749409710304948 0.9958208935248408 -0.02618264676288238 0.08749409710304948 -0.6730654741557118 -0.7101711958038869 -0.2064939227919899 0.6730654741557118 0.7101711958038869 0.2064939227919899 -0.2765217054096677 -0.9567020119458887 -0.09086807346927529 0.2765217054096677 0.9567020119458887 0.09086807346927529 -0.07141472484110054 -0.9972977789648503 -0.0172359260745187 0.07141472484110054 0.9972977789648503 0.0172359260745187 -8.531464836120813e-009 -0.9999664897077552 -0.008186541488936034 8.531464836120813e-009 0.9999664897077552 0.008186541488936034 -0.9984411168865852 -0.0177237495391565 -0.05292640940533804 0.9984411168865852 0.0177237495391565 0.05292640940533804 -0.9687413035679741 -0.2150852523239042 -0.1236067190495125 0.9687413035679741 0.2150852523239042 0.1236067190495125</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"178\" source=\"#ID1522\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1520\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1518\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1519\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"304\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 2 1 6 7 4 3 8 1 0 5 4 9 0 2 10 11 3 5 1 12 6 7 13 4 14 2 6 7 3 15 8 0 16 17 5 9 8 12 1 4 13 9 10 2 14 15 3 11 0 10 18 19 11 5 12 20 6 7 21 13 14 6 22 23 7 15 24 8 16 17 9 25 16 0 18 19 5 17 8 26 12 13 27 9 10 14 22 23 15 11 10 28 18 19 29 11 20 30 6 7 31 21 26 20 12 13 21 27 22 6 32 33 7 23 24 16 34 35 17 25 8 24 26 27 25 9 16 18 36 37 19 17 10 22 28 29 23 11 18 28 38 39 29 19 30 40 6 7 41 31 42 30 20 21 31 43 26 42 20 21 43 27 32 6 44 45 7 33 22 32 46 47 33 23 16 36 34 35 37 17 24 48 26 27 49 25 18 50 36 37 51 19 28 22 46 47 23 29 18 38 50 51 39 19 38 28 52 53 29 39 40 54 6 7 55 41 30 56 40 41 57 31 42 56 30 31 57 43 26 48 42 43 49 27 44 6 58 59 7 45 46 32 44 45 33 47 24 60 48 49 61 25 28 46 52 53 47 29 38 52 50 51 53 39 54 62 6 7 63 55 40 64 54 55 65 41 56 64 40 41 65 57 42 66 56 57 67 43 48 66 42 43 67 49 58 6 68 69 7 59 70 44 58 59 45 71 46 44 70 71 45 47 48 60 72 73 61 49 46 70 52 53 71 47 50 52 74 75 53 51 62 76 6 7 77 63 54 78 62 63 79 55 64 78 54 55 79 65 56 80 64 65 81 57 56 66 80 81 67 57 48 72 66 67 73 49 68 6 82 83 7 69 58 68 84 85 69 59 70 58 84 85 59 71 70 86 52 53 87 71 52 86 74 75 87 53 6 76 88 89 77 7 76 62 90 91 63 77 78 90 62 63 91 79 64 92 78 79 93 65 64 80 92 93 81 65 66 94 80 81 95 67 66 72 94 95 73 67 82 6 96 97 7 83 68 82 98 99 83 69 84 68 98 99 69 85 70 84 86 87 85 71 74 86 100 101 87 75 6 88 102 103 89 7 76 104 88 89 105 77 90 104 76 77 105 91 90 78 106 107 79 91 78 92 106 107 93 79 80 108 92 93 109 81 80 94 108 109 95 81 6 110 96 97 111 7 82 96 112 113 97 83 82 112 98 99 113 83 114 84 98 99 85 115 86 84 114 115 85 87 86 114 100 101 115 87 6 102 116 117 103 7 102 88 118 119 89 103 88 104 120 121 105 89 104 90 122 123 91 105 90 106 122 123 107 91 92 124 106 107 125 93 108 124 92 93 125 109 6 126 110 111 127 7 96 110 128 129 111 97 112 96 128 129 97 113 130 98 112 113 99 131 130 114 98 99 115 131 6 116 126 127 117 7 116 102 132 133 103 117 102 118 132 133 119 103 88 120 118 119 121 89 120 104 134 135 105 121 104 122 134 135 123 105 122 106 136 137 107 123 124 136 106 107 137 125 110 126 138 139 127 111 128 110 138 139 111 129 140 112 128 129 113 141 140 130 112 113 131 141 142 114 130 131 115 143 126 116 144 145 117 127 116 132 144 145 133 117 132 118 146 147 119 133 118 120 148 149 121 119 120 134 150 151 135 121 134 122 152 153 123 135 122 136 152 153 137 123 126 144 138 139 145 127 154 128 138 139 129 155 140 128 154 155 129 141 156 130 140 141 131 157 142 130 156 157 131 143 144 132 158 159 133 145 158 132 146 147 133 159 146 118 148 149 119 147 148 120 150 151 121 149 150 134 160 161 135 151 134 152 160 161 153 135 162 138 144 145 139 163 154 138 162 163 139 155 164 140 154 155 141 165 156 140 164 165 141 157 162 144 158 159 145 163 158 146 166 167 147 159 146 148 168 169 149 147 148 150 170 171 151 149 150 160 172 173 161 151 174 154 162 163 155 175 164 154 174 175 155 165 176 162 158 159 163 177 166 176 158 159 177 167 166 146 168 169 147 167 168 148 170 171 149 169 170 150 172 173 151 171 176 174 162 163 175 177</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1520\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1523\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1524\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1527\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.5167703032493591 -1.931200861930847 -0.01854868978261948 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.4793174266815186 -1.931788086891174 0.1698654741048813 -0.3548566699028015 -1.969096541404724 0.0834038257598877 -0.5167703032493591 -1.931200861930847 -0.01854868978261948</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1527\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1525\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1528\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">0.7043444308093231 0.6885011446313276 0.1728152094847037 0.1493590760120027 0.9875730596760047 -0.04890110648048201 0.747043425910407 0.6504555146670747 -0.1372360857909948 -0.747043425910407 -0.6504555146670747 0.1372360857909948 -0.1493590760120027 -0.9875730596760047 0.04890110648048201 -0.7043444308093231 -0.6885011446313276 -0.1728152094847037</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1528\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1526\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1524\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1525\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"1\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1526\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"1\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1526\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1529\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1530\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1534\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"606\">-0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.001449317671358585 1.915921688079834 -0.1955144852399826 -0.253710150718689 1.913546323776245 -0.1969181150197983 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.2516766786575317 1.928897380828857 -0.1850217580795288 0.2508114874362946 1.913545846939087 -0.1969181150197983 0.2508114874362946 1.913545846939087 -0.1969181150197983 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.4262329339981079 1.912193894386292 -0.1955588459968567 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.001449317671358585 1.928897380828857 -0.1832258701324463 -0.2516766786575317 1.928897380828857 -0.1850217580795288 -0.001449317671358585 1.913302659988403 -0.1713338941335678 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.2487779557704926 1.928897380828857 -0.1850217580795288 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.2549293041229248 1.913302659988403 -0.1713338941335678 -0.2549293041229248 1.913302659988403 -0.1713338941335678 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.2487779557704926 1.928897380828857 -0.1850217580795288 0.4233340919017792 1.912193417549133 -0.1955588459968567 0.4233340919017792 1.912193417549133 -0.1955588459968567 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4639521241188049 1.913546323776245 -0.1884861141443253 -0.4201467633247376 1.927762508392334 -0.1845976114273071 -0.4201467633247376 1.927762508392334 -0.1845976114273071 0.25203076004982 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4172481298446655 1.927762508392334 -0.1845976114273071 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.4117976725101471 1.911528825759888 -0.1705324798822403 -0.4117976725101471 1.911528825759888 -0.1705324798822403 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4172481298446655 1.927762508392334 -0.1845976114273071 0.4610534906387329 1.913545846939087 -0.1884861141443253 0.4610534906387329 1.913545846939087 -0.1884861141443253 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.4929358661174774 1.913546323776245 -0.156715527176857 -0.45652174949646 1.927762508392334 -0.1764486581087112 -0.45652174949646 1.927762508392334 -0.1764486581087112 0.408898800611496 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4536233246326447 1.927762508392334 -0.1764486581087112 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4486589431762695 1.911528825759888 -0.1648858040571213 -0.4486589431762695 1.911528825759888 -0.1648858040571213 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4536233246326447 1.927762508392334 -0.1764486581087112 0.4900375604629517 1.913545846939087 -0.156715527176857 0.4900375604629517 1.913545846939087 -0.156715527176857 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.5112505555152893 1.913546323776245 -0.1217374056577683 -0.4769005477428436 1.927762508392334 -0.1519266217947006 -0.4769005477428436 1.927762508392334 -0.1519266217947006 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.4740022420883179 1.927762508392334 -0.1519266217947006 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4662005603313446 1.911528825759888 -0.1489890366792679 -0.4662005603313446 1.911528825759888 -0.1489890366792679 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.4740022420883179 1.927762508392334 -0.1519266217947006 0.5083516836166382 1.913545846939087 -0.1217374056577683 0.5083516836166382 1.913545846939087 -0.1217374056577683 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.5210548639297485 1.913546323776245 -0.07925551384687424 -0.4958158433437347 1.927762508392334 -0.1193308234214783 -0.4958158433437347 1.927762508392334 -0.1193308234214783 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.492917001247406 1.927762508392334 -0.1193308234214783 0.492917001247406 1.927762508392334 -0.1193308234214783 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.4822799563407898 1.911528825759888 -0.1171957403421402 -0.4822799563407898 1.911528825759888 -0.1171957403421402 0.492917001247406 1.927762508392334 -0.1193308234214783 0.492917001247406 1.927762508392334 -0.1193308234214783 0.5181557536125183 1.913545846939087 -0.07925551384687424 0.5181557536125183 1.913545846939087 -0.07925551384687424 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5295662879943848 1.913546323776245 -0.03383167833089829 -0.5063496232032776 1.927762508392334 -0.07853657007217407 -0.5063496232032776 1.927762508392334 -0.07853657007217407 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5034509897232056 1.927762508392334 -0.07853657007217407 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.4914830029010773 1.911528825759888 -0.0755583867430687 -0.4914830029010773 1.911528825759888 -0.0755583867430687 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5034509897232056 1.927762508392334 -0.07853657007217407 0.5266676545143127 1.913545846939087 -0.03383167833089829 0.5266676545143127 1.913545846939087 -0.03383167833089829 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5214661359786987 1.913546323776245 0.008449893444776535 -0.5109774470329285 1.927762508392334 -0.0344013050198555 -0.5109774470329285 1.927762508392334 -0.0344013050198555 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5080784559249878 1.927762508392334 -0.0344013050198555 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.4949836730957031 1.911528825759888 -0.03233586996793747 -0.4949836730957031 1.911528825759888 -0.03233586996793747 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5080784559249878 1.927762508392334 -0.0344013050198555 0.5185676217079163 1.913545846939087 0.008449893444776535 0.5185676217079163 1.913545846939087 0.008449893444776535 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.4988121390342712 1.913546323776245 0.03620735183358192 -0.502662718296051 1.927762508392334 0.00562204048037529 -0.502662718296051 1.927762508392334 0.00562204048037529 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4997647404670715 1.927762508392334 0.00562204048037529 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4997647404670715 1.927762508392334 0.00562204048037529 0.4959137439727783 1.913545846939087 0.03620735183358192 0.4959137439727783 1.913545846939087 0.03620735183358192 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4552118182182312 1.913546323776245 0.05386548116803169 -0.4801041185855866 1.927762508392334 0.02575856074690819 -0.4801041185855866 1.927762508392334 0.02575856074690819 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4772054851055145 1.927762508392334 0.02575856074690819 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4692228436470032 1.911528825759888 0.009228713810443878 -0.4692228436470032 1.911528825759888 0.009228713810443878 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4772054851055145 1.927762508392334 0.02575856074690819 0.4523130357265472 1.913545846939087 0.05386548116803169 0.4523130357265472 1.913545846939087 0.05386548116803169 -0.3920661807060242 1.913546323776245 0.05386548116803169 -0.3920661807060242 1.913546323776245 0.05386548116803169 -0.4434280395507813 1.923323154449463 0.0383446104824543 -0.4434280395507813 1.923323154449463 0.0383446104824543 0.4663237631320953 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 0.440529465675354 1.923323154449463 0.0383446104824543 0.440529465675354 1.923323154449463 0.0383446104824543 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3943541049957275 1.843269467353821 0.09250524640083313 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.4382359385490418 1.911528825759888 0.01968160644173622 -0.4382359385490418 1.911528825759888 0.01968160644173622 0.440529465675354 1.923323154449463 0.0383446104824543 0.440529465675354 1.923323154449463 0.0383446104824543 0.3891672492027283 1.913545846939087 0.05386548116803169 0.3891672492027283 1.913545846939087 0.05386548116803169 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.001449317671358585 1.847941994667053 0.08541373908519745 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.4643627405166626 1.839662432670593 0.1198368072509766 -0.001449317671358585 1.913545846939087 0.05373930558562279 -0.001449317671358585 1.913545846939087 0.05373930558562279 -0.3894325792789459 1.927762508392334 0.03898162022233009 -0.3894325792789459 1.927762508392334 0.03898162022233009 0.4353374838829041 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 0.3865337669849396 1.927762508392334 0.03898162022233009 0.3865337669849396 1.927762508392334 0.03898162022233009 0.391455739736557 1.843269467353821 0.09250524640083313 0.391455739736557 1.843269467353821 0.09250524640083313 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.3876460790634155 1.911528825759888 0.01913142576813698 -0.3876460790634155 1.911528825759888 0.01913142576813698 0.3865337669849396 1.927762508392334 0.03898162022233009 0.3865337669849396 1.927762508392334 0.03898162022233009 0.4614643156528473 1.839661598205566 0.1198368072509766 0.4614643156528473 1.839661598205566 0.1198368072509766 -0.001449317671358585 1.928503632545471 0.03217223659157753 -0.001449317671358585 1.928503632545471 0.03217223659157753 0.3847475349903107 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.911528825759888 0.01366442814469338</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"202\" source=\"#ID1534\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1531\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1535\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"606\">6.128600361442149e-007 0.6840769881677191 -0.7294098122859376 -0.0003142089705117116 0.844635117266066 -0.5353423390258441 9.386065420688752e-007 0.8779194969412163 -0.4788082673571967 -9.386065420688752e-007 -0.8779194969412163 0.4788082673571967 0.0003142089705117116 -0.844635117266066 0.5353423390258441 -6.128600361442149e-007 -0.6840769881677191 0.7294098122859376 -0.001925969402956692 0.6114911657791373 -0.791248914574883 0.001925969402956692 -0.6114911657791373 0.791248914574883 0.0003145381297959222 0.8446308682000966 -0.5353490427275611 -0.0003145381297959222 -0.8446308682000966 0.5353490427275611 -0.1006180874477454 0.6177155415554498 -0.779938145111018 0.1006180874477454 -0.6177155415554498 0.779938145111018 4.969367531929439e-010 0.894881490157497 0.4463038410920274 -0.001291978520968337 0.6585055303928173 0.7525747784995027 1.001052099419736e-009 0.6063749440270834 0.7951788649455865 -1.001052099419736e-009 -0.6063749440270834 -0.7951788649455865 0.001291978520968337 -0.6585055303928173 -0.7525747784995027 -4.969367531929439e-010 -0.894881490157497 -0.4463038410920274 0.001925917791914164 0.6114792511770825 -0.7912581223725752 -0.001925917791914164 -0.6114792511770825 0.7912581223725752 -0.06164021264500252 0.6013047843270357 -0.7966385884016014 0.06164021264500252 -0.6013047843270357 0.7966385884016014 -0.002644288432719418 0.9089634573760564 0.4168674140463013 0.002644288432719418 -0.9089634573760564 -0.4168674140463013 0.001291971215169704 0.6585055365302968 0.7525747731417293 -0.001291971215169704 -0.6585055365302968 -0.7525747731417293 0.1006180685619479 0.6177085888725438 -0.7799436540622367 -0.1006180685619479 -0.6177085888725438 0.7799436540622367 -0.457138707571557 0.3553778220514752 -0.8153102511521345 0.457138707571557 -0.3553778220514752 0.8153102511521345 0.09331129554943694 0.6791844739812039 0.7280119864574765 -0.09331129554943694 -0.6791844739812039 -0.7280119864574765 0.002644295945974327 0.9089634594849646 0.4168674094002494 -0.002644295945974327 -0.9089634594849646 -0.4168674094002494 0.06164146348256043 0.6012926394439115 -0.7966476584603147 -0.06164146348256043 -0.6012926394439115 0.7966476584603147 -0.3534342557912457 0.7119731748590228 -0.6067770802481349 0.3534342557912457 -0.7119731748590228 0.6067770802481349 0.02924273660338733 0.9041888065487982 0.4261308067575084 -0.02924273660338733 -0.9041888065487982 -0.4261308067575084 -0.09331117542665858 0.6791852066164548 0.7280113183556001 0.09331117542665858 -0.6791852066164548 -0.7280113183556001 0.4571384098397874 0.3553681588594452 -0.8153146300159212 -0.4571384098397874 -0.3553681588594452 0.8153146300159212 -0.7577190848040959 0.3973032107154196 -0.5176987031844511 0.7577190848040959 -0.3973032107154196 0.5176987031844511 0.3817826116955557 0.6639727354523177 0.6429480880933445 -0.3817826116955557 -0.6639727354523177 -0.6429480880933445 -0.02924227528812681 0.9041889475495584 0.4261305392308737 0.02924227528812681 -0.9041889475495584 -0.4261305392308737 0.3534405366926419 0.7119593419342024 -0.606789652560947 -0.3534405366926419 -0.7119593419342024 0.606789652560947 -0.5510939953671437 0.7400984093180693 -0.385421526118018 0.5510939953671437 -0.7400984093180693 0.385421526118018 0.2241640399453825 0.8706733606552441 0.4378108978093943 -0.2241640399453825 -0.8706733606552441 -0.4378108978093943 -0.3817811736126304 0.6639780421091951 0.642943461800338 0.3817811736126304 -0.6639780421091951 -0.642943461800338 0.7577242285038515 0.3972933108754175 -0.5176987721367438 -0.7577242285038515 -0.3972933108754175 0.5176987721367438 -0.8609538082186087 0.3950426369975656 -0.3204681810537273 0.8609538082186087 -0.3950426369975656 0.3204681810537273 0.6673193653866828 0.5618732751990277 0.4888591690835232 -0.6673193653866828 -0.5618732751990277 -0.4888591690835232 -0.2241599652446266 0.8706753570527359 0.4378090138435005 0.2241599652446266 -0.8706753570527359 -0.4378090138435005 0.5511053480631766 0.7400875112290761 -0.38542621999407 -0.5511053480631766 -0.7400875112290761 0.38542621999407 -0.6339896614048989 0.7262465481499139 -0.2657499962973408 0.6339896614048989 -0.7262465481499139 0.2657499962973408 0.3998168551749346 0.8534018871285293 0.3344423737559136 -0.3998168551749346 -0.8534018871285293 -0.3344423737559136 -0.66731407538091 0.5618897450471379 0.4888474600623219 0.66731407538091 -0.5618897450471379 -0.4888474600623219 0.8609593490701201 0.3950356538503604 -0.3204619032518112 -0.8609593490701201 -0.3950356538503604 0.3204619032518112 -0.8988689238162904 0.3942461495617065 -0.1913233685494596 0.8988689238162904 -0.3942461495617065 0.1913233685494596 0.7283537775783645 0.6275371629439781 0.2751324841082005 -0.7283537775783645 -0.6275371629439781 -0.2751324841082005 -0.3998115996034019 0.8534065930400281 0.3344366483781063 0.3998115996034019 -0.8534065930400281 -0.3344366483781063 0.6340044397489889 0.7262338056222191 -0.2657495624644367 -0.6340044397489889 -0.7262338056222191 0.2657495624644367 -0.6726026519052687 0.725781149555615 -0.1443862721997141 0.6726026519052687 -0.725781149555615 0.1443862721997141 0.4201432233616178 0.8931283013615952 0.1606284818152159 -0.4201432233616178 -0.8931283013615952 -0.1606284818152159 -0.728355216334616 0.6275344039178031 0.2751349682204766 0.728355216334616 -0.6275344039178031 -0.2751349682204766 0.8988743871289552 0.3942317592744247 -0.1913273533578971 -0.8988743871289552 -0.3942317592744247 0.1913273533578971 -0.904888817089381 0.4255285472945364 0.01008385561096054 0.904888817089381 -0.4255285472945364 -0.01008385561096054 0.7259477785303447 0.6767357693169247 0.1225908698634929 -0.7259477785303447 -0.6767357693169247 -0.1225908698634929 -0.4201461494678589 0.8931264266291222 0.1606312520776282 0.4201461494678589 -0.8931264266291222 -0.1606312520776282 0.6726225954035205 0.7257611192617377 -0.1443940508489927 -0.6726225954035205 -0.7257611192617377 0.1443940508489927 -0.6045394279521578 0.7960919868723888 0.02774217887711796 0.6045394279521578 -0.7960919868723888 -0.02774217887711796 0.4055797586912695 0.9118155828195894 0.06401095427584386 -0.4055797586912695 -0.9118155828195894 -0.06401095427584386 -0.7259411183171096 0.6767440188828733 0.122584769212008 0.7259411183171096 -0.6767440188828733 -0.122584769212008 0.904891680280896 0.4255225800980013 0.01007872934236248 -0.904891680280896 -0.4255225800980013 -0.01007872934236248 -0.8244249006574319 0.4220939913763589 0.3770414375369871 0.8244249006574319 -0.4220939913763589 -0.3770414375369871 0.7178561239409382 0.6953700531279656 -0.03380938528430715 -0.7178561239409382 -0.6953700531279656 0.03380938528430715 -0.4055734414635172 0.9118187127533433 0.06400639540135789 0.4055734414635172 -0.9118187127533433 -0.06400639540135789 0.6045479253195766 0.7960855311013991 0.02774226311603459 -0.6045479253195766 -0.7960855311013991 -0.02774226311603459 -0.520461789693991 0.7996555798249611 0.2994502949127498 0.520461789693991 -0.7996555798249611 -0.2994502949127498 0.4169491499270961 0.9082925536082132 -0.0340300372456919 -0.4169491499270961 -0.9082925536082132 0.0340300372456919 -0.7178499013754158 0.6953767735306654 -0.03380328281968029 0.7178499013754158 -0.6953767735306654 0.03380328281968029 0.8244304220700673 0.42208399743857 0.3770405525558863 -0.8244304220700673 -0.42208399743857 -0.3770405525558863 -0.5374118567073094 0.4163750394213115 0.7333623407411262 0.5374118567073094 -0.4163750394213115 -0.7333623407411262 0.6153207668073935 0.7069640641929612 -0.3486863431156029 -0.6153207668073935 -0.7069640641929612 0.3486863431156029 -0.4169425741389288 0.9082957376618707 -0.03402561998968118 0.4169425741389288 -0.9082957376618707 0.03402561998968118 0.5204810111627883 0.7996418884984935 0.2994534474296871 -0.5204810111627883 -0.7996418884984935 -0.2994534474296871 -0.2699000820828266 0.8084765996171364 0.5229909497909081 0.2699000820828266 -0.8084765996171364 -0.5229909497909081 0.3563384704058399 0.8984507696935942 -0.2565328613371287 -0.3563384704058399 -0.8984507696935942 0.2565328613371287 -0.6153069154673361 0.7069814264632994 -0.3486755833349832 0.6153069154673361 -0.7069814264632994 0.3486755833349832 0.5374137069235633 0.4163662298492717 0.7333659865659014 -0.5374137069235633 -0.4163662298492717 -0.7333659865659014 -0.1102595056986163 0.6041944645946928 0.7891716482212404 0.1102595056986163 -0.6041944645946928 -0.7891716482212404 0.3497908904793823 0.7485760896646085 -0.563276282937676 -0.3497908904793823 -0.7485760896646085 0.563276282937676 -0.3563267758811212 0.8984562983297307 -0.2565297424896443 0.3563267758811212 -0.8984562983297307 0.2565297424896443 0.2699024119542983 0.8084670402013563 0.5230045247694426 -0.2699024119542983 -0.8084670402013563 -0.5230045247694426 -0.03236051657316586 0.8431449359226038 0.5367116674669802 0.03236051657316586 -0.8431449359226038 -0.5367116674669802 0.15167984215981 0.9399767739299777 -0.3056744836497922 -0.15167984215981 -0.9399767739299777 0.3056744836497922 -0.3497863484367549 0.7485814332558655 -0.5632720019953729 0.3497863484367549 -0.7485814332558655 0.5632720019953729 0.1102607918778887 0.6041870483927864 0.7891771463549068 -0.1102607918778887 -0.6041870483927864 -0.7891771463549068 -0.01255478291219509 0.6182595626877923 0.7858737115918354 0.01255478291219509 -0.6182595626877923 -0.7858737115918354 0.0871192663472851 0.8369719858849694 -0.5402667195699559 -0.0871192663472851 -0.8369719858849694 0.5402667195699559 -0.1516789233016182 0.9399777592119516 -0.3056719097544625 0.1516789233016182 -0.9399777592119516 0.3056719097544625 0.03236331531330518 0.8431339299655836 0.5367287880882876 -0.03236331531330518 -0.8431339299655836 -0.5367287880882876 0.09431746603273164 0.5380671052349956 0.8376085039355778 -0.09431746603273164 -0.5380671052349956 -0.8376085039355778 -0.03019305672699172 0.7278128100128949 0.6851108617637107 0.03019305672699172 -0.7278128100128949 -0.6851108617637107 0.03067908811827804 0.9512473880934572 -0.3068993323511907 -0.03067908811827804 -0.9512473880934572 0.3068993323511907 -0.08712026188797994 0.8369724020630891 -0.5402659142989795 0.08712026188797994 -0.8369724020630891 0.5402659142989795 0.01255462315995493 0.6182537225919658 0.7858783086066747 -0.01255462315995493 -0.6182537225919658 -0.7858783086066747 2.380743700391382e-007 0.4408306292320842 0.8975903053903757 -2.380743700391382e-007 -0.4408306292320842 -0.8975903053903757 0.2553438641265905 0.6261687724546333 0.7366900158516871 -0.2553438641265905 -0.6261687724546333 -0.7366900158516871 1.437911629610173e-007 0.6476662694700774 0.7619241454309559 -1.437911629610173e-007 -0.6476662694700774 -0.7619241454309559 -0.01722143407120868 0.7827482930805981 -0.6221000979649022 0.01722143407120868 -0.7827482930805981 0.6221000979649022 -0.03068035818936333 0.9512472595490038 -0.3068996038151283 0.03068035818936333 -0.9512472595490038 0.3068996038151283 0.03019317537246524 0.7278014255281793 0.6851229503965529 -0.03019317537246524 -0.7278014255281793 -0.6851229503965529 -0.09431575631846477 0.5380684094560438 0.8376078586400196 0.09431575631846477 -0.5380684094560438 -0.8376078586400196 -1.903637264665041e-009 0.8217151404454917 0.5698984365329017 1.903637264665041e-009 -0.8217151404454917 -0.5698984365329017 -0.006609870843098183 0.9419276296900147 -0.3357508749564002 0.006609870843098183 -0.9419276296900147 0.3357508749564002 0.01722136611832838 0.7827483236145768 -0.6221000614270894 -0.01722136611832838 -0.7827483236145768 0.6221000614270894 -0.2553377958902426 0.6261678416535161 0.7366929102881947 0.2553377958902426 -0.6261678416535161 -0.7366929102881947 -9.862734229464834e-010 0.7385473108944132 -0.6742016534914694 9.862734229464834e-010 -0.7385473108944132 0.6742016534914694 0.006609858237680783 0.9419276456734308 -0.3357508303641045 -0.006609858237680783 -0.9419276456734308 0.3357508303641045 -5.914188849881876e-010 0.9347435500271971 -0.3553230863348913 5.914188849881876e-010 -0.9347435500271971 0.3553230863348913</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"202\" source=\"#ID1535\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1533\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1536\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"624\">-0.05380870815511803 10.02615970184128 2.469327384643551 9.869515624641515 -0.0533492419844185 9.885573640941855 2.695509980669273 11.09340950000694 2.714420445137348 10.94051719289138 0.1933439381652574 11.11649030137573 0.08283134771281404 10.02610094892601 0.08237163622220682 9.885514888522888 -2.440304755920862 9.869456872279237 3.917851124051062 10.98062779597724 2.192658991959701 10.96319908686411 2.169567624052186 11.11573559076327 -0.1655737740176625 -12.78515855351413 2.335121354259058 -12.96272995353259 -0.1670414371732786 -12.93943206437335 -2.666529615291092 11.09373316119279 -0.1643644549579891 11.11681441138162 -2.685440586750941 10.94083788099445 4.002737599078533 11.57203397921939 4.065199224210197 11.4226589805636 2.318009211600533 11.56625389074455 2.549293041229248 -12.20109509134276 2.516766786575317 -12.36432661201445 0.01449317671358563 -12.20109509134276 0.1945589067152743 -12.78498790905135 0.1960265703843204 -12.93926141990754 -2.30613534556603 -12.96255930906632 -2.140578639992576 11.11556974847594 -2.163670740596903 10.96303029430335 -3.888861079008852 10.98045934051256 0.6315873549859696 11.27431109715125 0.2651173038680699 11.18407150777661 0.1737275907395747 11.32392373563129 2.475224153187638 -12.20323771530714 4.126826737481165 -12.36133839440843 2.44209458583373 -12.36639413197201 0.01449317671358574 -12.20109509134276 -2.487779557704926 -12.36432661201445 -2.5203076004982 -12.20109509134276 -3.973750784243558 11.57198732316051 -2.289021503369634 11.56620711579573 -4.036210388611464 11.42260925202844 0.08228287036970761 10.1013326287451 0.1868423606318254 9.966703678166272 -0.2720222552018592 10.01019335227733 4.014792876585607 -12.2685279360334 4.09740678853818 -12.43776498794701 2.446036325079714 -12.2781708593734 -2.446238966445645 -12.20317121662351 -2.413107611266176 -12.36632762923594 -4.097840656967279 -12.36127189179793 -0.1452202178875478 11.32042239558104 -0.236609804368596 11.18056739333164 -0.6030812903635374 11.27080877288327 -8.022286860006334 5.593261486731232 -8.167981207212625 5.701679535064567 -7.792875250136092 5.879410405840596 8.739995187286191 -10.84044096350622 8.385363300433259 -10.93079034335959 8.267845782222405 -10.77484689111856 -3.985804373263655 -12.26843523952335 -2.417051099865585 -12.2780781633298 -4.068420667613448 -12.43767229962311 -0.0539118208473538 10.09787861455891 0.3003947571417248 10.00673767966941 -0.1584712148151629 9.963247214195681 -7.061976761004196 5.184606121782157 -7.44117463541251 5.012332592839834 -7.275030817548849 5.226414065630704 8.058384143284908 -11.8030467490348 8.16659818377264 -11.94851691915868 7.69657085052069 -11.87408655367555 -8.23955135980237 -10.77842060139959 -8.357070947486893 -10.93436387847232 -8.711705015920382 -10.84401460010668 8.191255306804186 5.695031534054818 8.045558458843509 5.586612580813333 7.816147521064625 5.872763888256488 -7.730668185584237 3.167776477787669 -7.944421259824952 3.207314744907487 -7.585321762754447 3.456563622575323 16.46611971504321 -5.474538374457483 16.2980198494438 -5.370032995525104 16.61541297319499 -5.252907565510547 -8.029911154756903 -11.80643646820372 -7.668097493578577 -11.87747606863542 -8.138129135209356 -11.95190622016309 7.465085244636752 5.006713775956396 7.085885088693217 5.178988191552556 7.298942258767398 5.22079635057736 -8.441671786793989 4.045887376002375 -8.795823948881619 3.792295743166499 -8.651318680868776 4.066102843541724 17.53888569422124 -5.401548196061816 17.73175217697868 -5.431685628113611 17.42459909925773 -5.564637171484631 -16.27663497001927 -5.377734917012615 -16.44473700847936 -5.482240075722087 -16.59403301421012 -5.260609733815044 7.967753567962989 3.203040242451181 7.753997314570496 3.163502001417317 7.608657415129363 3.452288955673404 -8.893471066252115 1.163615445163711 -9.10327908769538 1.182768515764871 -8.820198992148935 1.501712627489478 18.21313751638797 -3.692606818175909 18.01918197613998 -3.667159552472572 18.32798399354051 -3.410240891940054 -17.51982134757863 -5.41278623894306 -17.40553230134771 -5.575873952955945 -17.71269103070093 -5.44292343789721 8.818296075081838 3.787063216178194 8.464147260825534 4.040654650115789 8.673797171430994 4.060870101799641 -9.44481667624879 1.794327895487298 -9.725538419038109 1.474096433930082 -9.64934725501584 1.800072789742478 17.32529019022485 -3.678105730668172 17.43287758364442 -3.410915674581981 17.64409043916598 -3.428858858631469 -18.31022646007288 -3.417863523895226 -18.00142150737727 -3.674780213682573 -18.19538021287728 -3.700227284187649 9.125261741698838 1.180443847057856 8.915450708245798 1.16129077824844 8.842181588537358 1.499387928945664 -9.474646054522664 1.143525837893942 -9.679178527573013 1.149228844032068 -9.413183324947861 1.503849442994916 17.80951438488398 -2.260050022788326 17.59819015422691 -2.242937601662701 17.87855371886245 -1.933089236309175 -17.41354326494719 -3.416890403162804 -17.3059550593323 -3.684081144780982 -17.62475477720695 -3.434833633249285 9.747071760034585 1.47141517142829 9.466350995741708 1.791647165612336 9.67088146016896 1.797392069422744 -7.717269545573585 0.3042754695831612 -7.680552920451054 0.6521793938305373 -7.446535059711652 0.6566695755527798 17.14807018289559 -2.117295267826407 17.21167733516982 -1.785595462078189 17.43175062511593 -1.809320861181577 -17.85961717355434 -1.936399726504026 -17.57925413269361 -2.24624838514796 -17.79057702499381 -2.263360822471536 9.700676675036 1.147325899379445 9.496144316272888 1.141622884759032 9.434680060174202 1.501947025782269 -7.365922553757773 -1.934956066044626 -7.599939764880167 -1.939467151009083 -7.430403382971643 -1.600112621366761 17.53937998476847 -1.184786782725471 17.31926709982417 -1.16128979106497 17.57098702004867 -0.8365725056749495 -17.19151097042277 -1.788152872528991 -17.12790601969691 -2.119852171994886 -17.41158728655829 -1.811878235419665 7.703677431307231 0.6512296301189862 7.740391028713226 0.3033258025207887 7.469653833058668 0.6557198105938373 -7.277169507095795 -2.049438454343182 -7.344226170140487 -1.732221820826337 -7.108525561792963 -1.709808851939396 17.01432816492904 -1.044346485594764 17.03902608469128 -0.703769713619851 17.26691184597801 -0.7200445457025309 -17.551056120922 -0.8378084385110383 -17.29933515195096 -1.162525552957664 -17.51945105836678 -1.186022532248465 7.62314572605751 -1.937863479616851 7.3891227774384 -1.933352394983213 7.453602315184695 -1.598508974861046 -6.362828502231192 -6.069120517714572 -6.598201956491736 -6.093568700597403 -6.550735961317874 -5.829143606752477 17.45140341847328 0.8585311205752961 17.22353562204133 0.8749608794588334 17.3938590916468 1.176901778452265 -17.01849989635089 -0.7046791388334163 -16.99380285037305 -1.045255855238144 -17.24638733125057 -0.7209539682606144 7.368170362462248 -1.730417311119357 7.301123392545696 -2.047633569055367 7.132471153464324 -1.708004368769112 -3.609431739334912 -6.566014062281595 -3.813794288459234 -6.390686311648089 -3.584116150451824 -6.299709170919823 16.79275177785766 1.111610850259286 16.73653810964288 1.365447152584783 16.9604724151008 1.414452080066858 -17.37371202841378 1.17921589028315 -17.2033804271112 0.8772758598705845 -17.43124990248817 0.8608461482498537 6.622757713056812 -6.088408624530629 6.387385689375017 -6.063960291505319 6.575288669845557 -5.82398190678425 -1.070664898439768 -9.10248158322648 -1.292130162331143 -9.205290982842362 -1.485995838992753 -8.92873692126939 15.39845217984451 5.505958467381132 15.17795653455731 5.44810323459475 15.2159568444035 5.695629069246537 -16.71527400723095 1.368069988257085 -16.77148802860013 1.114234073532352 -16.93921574627554 1.417074840910039 3.840162049355425 -6.386761718092833 3.6357940925184 -6.562090788560848 3.610479456259792 -6.29578389250567 3.336803069423739 -7.463342982331089 2.97442271292554 -7.349328937631624 3.099283388677669 -7.20872904478977 11.51826065585274 7.035744374802508 11.35088847557238 7.12821780049199 11.51148367367722 7.285011787033255 -15.15416185348659 5.455622738459792 -15.37466508242597 5.513477827337386 -15.19216085011591 5.703147957417179 1.319874456606009 -9.201299470312357 1.098404946621058 -9.098488965808315 1.51373869210039 -8.92474243662488 4.552118182182312 -7.664626745175032 4.434280395507813 -7.808928913568809 3.920661807060242 -7.664626745175032 11.24483992100088 7.480637013323874 11.08608965271641 7.322684619291019 10.88574069705672 7.600904109249646 -11.32383549790549 7.132850771450945 -11.49120822426326 7.04037759881887 -11.48443440188923 7.289644328918891 -2.945349655131783 -7.348738723830701 -3.307728792902329 -7.462753979116228 -3.070209379436171 -7.208137338117762 3.943541049957273 -12.35581500746084 4.55211818218231 -12.98671323878099 3.92066180706024 -12.98671323878099 2.628585590388074 -10.28710414578369 2.08684181598452 -10.28024522552557 2.126269005759161 -10.11998517144959 8.262191974363937 6.995507731040081 7.958045262470991 7.090038433186434 8.031569136812552 7.258817252443395 -11.05889938787842 7.327172846147806 -11.2176536103565 7.485124686592735 -10.85855476705862 7.60539136100915 -3.891672492027283 -7.664909854313903 -4.40529465675354 -7.809214022037327 -4.523130357265472 -7.664909854313903 4.328884036974373 -12.29754953042057 4.320734485693432 -12.92867187812786 0.4016776935553612 -12.41337861786099 11.24639974346111 -8.218459380038901 11.44064970086064 -8.985911243392785 10.61176139123148 -8.53641050438708 3.900297128442823 -10.25243517339981 0.02042066034977062 -10.09188964063419 3.92658910476724 -10.09051700491245 2.992779383146418 8.625072438692831 2.94976641275648 8.449896296879995 2.451018764299815 8.631051589117122 -7.929664764260844 7.092175497915052 -8.233805105814426 6.997644807516901 -8.003187874585274 7.260954296196313 -2.057979506169385 -10.2789983789781 -2.599725654599161 -10.2858574109507 -2.097405948464584 -10.11873571467056 -3.914557397365568 -12.35579316755734 -3.891672492027281 -12.986688111843 -4.523130357265471 -12.986688111843 0.02687899325162695 -12.79901199847697 3.933486458816073 -13.36981634318971 0.02731870266585258 -13.37209924485815 4.091938431373729 -8.371881898406425 0.2123861419828262 -8.43707022536165 0.2108512462680907 -8.230602030692712 4.212015702232384 9.663859545268688 3.706137154243328 9.658266304365233 3.72255627737955 9.860067139782384 -2.920868219725448 8.44896669889777 -2.963880040260758 8.624142796778127 -2.422117045149522 8.630121945702905 0.008588849727731681 -10.09208049180067 -3.871285678251858 -10.2526285762621 -3.897576633068511 -10.09070783426238 -0.3726934217549541 -12.41377619472284 -4.291747019996334 -12.92906683723967 -4.299902495320053 -12.29794769570773 -10.58480197896604 -8.542838562289346 -11.41368134563579 -8.992341397305667 -11.21943894774718 -8.224885955343089 0.002129902643298674 -12.79902576207975 0.001690993740716476 -13.37211300884068 -3.904473800800141 -13.36983010717072 -0.1834014049554984 -8.437203570058866 -4.062951924705676 -8.372015243104659 -0.1818665085408016 -8.230735375393149 3.564617618765245 9.675722731788627 -0.29960241337697 9.808336336221796 3.579836285876353 9.877581793384563 -3.677153188720006 9.658136852898412 -4.183032630820126 9.663730093468221 -3.693569632525103 9.859937676277907 0.3285849908930763 9.808099469443674 -3.535635954205661 9.675485879299483 -3.550851938882881 9.877344919145314 3.627972635438376 10.3005003741877 -0.2336695137521053 10.24214598982511 -0.2358732435270384 10.43969715816428 0.2626533657364339 10.24194590423555 -3.598989696227069 10.30030028859921 0.264857094990649 10.43949707257832</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"312\" source=\"#ID1536\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1532\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1530\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1531\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"104\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 1 4 0 5 0 6 2 7 8 8 10 9 1 10 6 11 12 12 13 13 14 14 18 15 0 16 8 17 20 18 10 19 6 20 22 21 13 22 12 23 12 24 14 25 24 26 18 27 8 28 26 29 28 30 10 31 20 32 22 33 30 34 13 35 12 36 24 37 32 38 34 39 18 40 26 41 36 42 28 43 20 44 38 45 30 46 22 47 32 48 24 49 40 50 34 51 26 52 42 53 28 54 36 55 44 56 46 57 30 58 38 59 48 60 32 61 40 62 50 63 34 64 42 65 44 66 36 67 52 68 54 69 46 70 38 71 48 72 40 73 56 74 50 75 42 76 58 77 44 78 52 79 60 80 46 81 54 82 62 83 64 84 48 85 56 86 50 87 58 88 66 89 60 90 52 91 68 92 70 93 62 94 54 95 64 96 56 97 72 98 66 99 58 100 74 101 60 102 68 103 76 104 62 105 70 106 78 107 80 108 64 109 72 110 66 111 74 112 82 113 76 114 68 115 84 116 70 117 86 118 78 119 88 120 80 121 72 122 82 123 74 124 90 125 76 126 84 127 92 128 78 129 86 130 94 131 96 132 80 133 88 134 82 135 90 136 98 137 84 138 100 139 92 140 86 141 102 142 94 143 104 144 96 145 88 146 98 147 90 148 106 149 92 150 100 151 108 152 94 153 102 154 110 155 112 156 96 157 104 158 114 159 98 160 106 161 100 162 116 163 108 164 102 165 118 166 110 167 120 168 112 169 104 170 114 171 106 172 122 173 108 174 116 175 124 176 110 177 118 178 126 179 128 180 112 181 120 182 130 183 114 184 122 185 116 186 132 187 124 188 118 189 134 190 126 191 136 192 128 193 120 194 130 195 122 196 138 197 124 198 132 199 140 200 126 201 134 202 142 203 144 204 128 205 136 206 146 207 130 208 138 209 132 210 148 211 140 212 134 213 150 214 142 215 144 216 136 217 152 218 146 219 138 220 154 221 140 222 148 223 156 224 142 225 150 226 158 227 160 228 144 229 152 230 162 231 146 232 154 233 164 234 140 235 156 236 148 237 166 238 156 239 150 240 168 241 158 242 160 243 152 244 170 245 172 246 162 247 154 248 164 249 156 250 174 251 176 252 140 253 164 254 166 255 178 256 156 257 158 258 168 259 180 260 182 261 160 262 170 263 184 264 162 265 172 266 186 267 172 268 154 269 174 270 156 271 178 272 166 273 188 274 178 275 168 276 190 277 180 278 182 279 170 280 192 281 178 282 184 283 172 284 174 285 172 286 186 287 186 288 154 289 194 290 174 291 178 292 172 293 188 294 184 295 178 296 190 297 196 298 180 299 198 300 182 301 192 302 196 303 198 304 192 305 190 306 200 307 196 308 200 309 198 310 196 311</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1532\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1533\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"104\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 5 4 7 9 3 5 7 4 11 15 16 17 9 5 19 7 11 21 17 16 23 25 15 17 27 9 19 21 11 29 16 31 23 33 25 17 27 19 35 21 29 37 23 31 39 41 25 33 43 27 35 45 37 29 39 31 47 41 33 49 43 35 51 53 37 45 39 47 55 57 41 49 59 43 51 61 53 45 63 55 47 57 49 65 67 59 51 69 53 61 55 63 71 73 57 65 75 59 67 77 69 61 79 71 63 73 65 81 83 75 67 85 69 77 79 87 71 73 81 89 91 75 83 93 85 77 95 87 79 89 81 97 99 91 83 93 101 85 95 103 87 89 97 105 107 91 99 109 101 93 111 103 95 105 97 113 107 99 115 109 117 101 111 119 103 105 113 121 123 107 115 125 117 109 127 119 111 121 113 129 123 115 131 125 133 117 127 135 119 121 129 137 139 123 131 141 133 125 143 135 127 137 129 145 139 131 147 141 149 133 143 151 135 153 137 145 155 139 147 157 149 141 159 151 143 153 145 161 155 147 163 157 141 165 157 167 149 159 169 151 171 153 161 155 163 173 175 157 165 165 141 177 157 179 167 181 169 159 171 161 183 173 163 185 155 173 187 179 157 175 179 189 167 181 191 169 193 171 183 173 185 179 187 173 175 195 155 187 173 179 175 179 185 189 181 197 191 193 183 199 193 199 197 197 201 191 197 199 201</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1532\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1537\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1543\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1547\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">-0.2549293041229248 1.913302659988403 -0.1713338941335678 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.911528825759888 0.01366442814469338 -0.001449317671358585 1.913302659988403 -0.1713338941335678 -0.2549293041229248 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 0.25203076004982 1.913302659988403 -0.1713338941335678 -0.3876460790634155 1.911528825759888 0.01913142576813698 -0.3876460790634155 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 0.3847475349903107 1.911528825759888 0.01913142576813698 -0.4117976725101471 1.911528825759888 -0.1705324798822403 -0.4117976725101471 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 0.408898800611496 1.911528825759888 -0.1705324798822403 -0.4382359385490418 1.911528825759888 0.01968160644173622 -0.4382359385490418 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 0.4353374838829041 1.911528825759888 0.01968160644173622 -0.4486589431762695 1.911528825759888 -0.1648858040571213 -0.4486589431762695 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 0.4457601010799408 1.911528825759888 -0.1648858040571213 -0.4662005603313446 1.911528825759888 -0.1489890366792679 -0.4662005603313446 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 0.4633016884326935 1.911528825759888 -0.1489890366792679 -0.4692228436470032 1.911528825759888 0.009228713810443878 -0.4692228436470032 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 0.4663237631320953 1.911528825759888 0.009228713810443878 -0.4822799563407898 1.911528825759888 -0.1171957403421402 -0.4822799563407898 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 0.4793813228607178 1.911528825759888 -0.1171957403421402 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 -0.4872027039527893 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 0.4843036532402039 1.911528825759888 -0.0005202032625675201 -0.4914830029010773 1.911528825759888 -0.0755583867430687 -0.4914830029010773 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 0.4885839223861694 1.911528825759888 -0.0755583867430687 -0.4949836730957031 1.911528825759888 -0.03233586996793747 -0.4949836730957031 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747 0.4920844435691834 1.911528825759888 -0.03233586996793747</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1547\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1544\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1548\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">-0.002644288432719418 0.9089634573760564 0.4168674140463013 4.969367531929439e-010 0.894881490157497 0.4463038410920274 -5.914188849881876e-010 0.9347435500271971 -0.3553230863348913 5.914188849881876e-010 -0.9347435500271971 0.3553230863348913 -4.969367531929439e-010 -0.894881490157497 -0.4463038410920274 0.002644288432719418 -0.9089634573760564 -0.4168674140463013 0.002644295945974327 0.9089634594849646 0.4168674094002494 -0.002644295945974327 -0.9089634594849646 -0.4168674094002494 -0.006609870843098183 0.9419276296900147 -0.3357508749564002 0.006609870843098183 -0.9419276296900147 0.3357508749564002 0.006609858237680783 0.9419276456734308 -0.3357508303641045 -0.006609858237680783 -0.9419276456734308 0.3357508303641045 0.02924273660338733 0.9041888065487982 0.4261308067575084 -0.02924273660338733 -0.9041888065487982 -0.4261308067575084 -0.02924227528812681 0.9041889475495584 0.4261305392308737 0.02924227528812681 -0.9041889475495584 -0.4261305392308737 0.03067908811827804 0.9512473880934572 -0.3068993323511907 -0.03067908811827804 -0.9512473880934572 0.3068993323511907 -0.03068035818936333 0.9512472595490038 -0.3068996038151283 0.03068035818936333 -0.9512472595490038 0.3068996038151283 0.2241640399453825 0.8706733606552441 0.4378108978093943 -0.2241640399453825 -0.8706733606552441 -0.4378108978093943 -0.2241599652446266 0.8706753570527359 0.4378090138435005 0.2241599652446266 -0.8706753570527359 -0.4378090138435005 0.3998168551749346 0.8534018871285293 0.3344423737559136 -0.3998168551749346 -0.8534018871285293 -0.3344423737559136 -0.3998115996034019 0.8534065930400281 0.3344366483781063 0.3998115996034019 -0.8534065930400281 -0.3344366483781063 0.15167984215981 0.9399767739299777 -0.3056744836497922 -0.15167984215981 -0.9399767739299777 0.3056744836497922 -0.1516789233016182 0.9399777592119516 -0.3056719097544625 0.1516789233016182 -0.9399777592119516 0.3056719097544625 0.4201432233616178 0.8931283013615952 0.1606284818152159 -0.4201432233616178 -0.8931283013615952 -0.1606284818152159 -0.4201461494678589 0.8931264266291222 0.1606312520776282 0.4201461494678589 -0.8931264266291222 -0.1606312520776282 0.3563384704058399 0.8984507696935942 -0.2565328613371287 -0.3563384704058399 -0.8984507696935942 0.2565328613371287 -0.3563267758811212 0.8984562983297307 -0.2565297424896443 0.3563267758811212 -0.8984562983297307 0.2565297424896443 0.4055797586912695 0.9118155828195894 0.06401095427584386 -0.4055797586912695 -0.9118155828195894 -0.06401095427584386 -0.4055734414635172 0.9118187127533433 0.06400639540135789 0.4055734414635172 -0.9118187127533433 -0.06400639540135789 0.4169491499270961 0.9082925536082132 -0.0340300372456919 -0.4169491499270961 -0.9082925536082132 0.0340300372456919 -0.4169425741389288 0.9082957376618707 -0.03402561998968118 0.4169425741389288 -0.9082957376618707 0.03402561998968118</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1548\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1546\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1549\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"76\">5.098586082458496 -3.793412971426244 0.02898635342717173 -3.793412971426244 0.02898635342717173 -0.09327644780219568 0.02898635342717169 -3.793412971426244 -5.040615200996399 -3.793412971426244 0.02898635342717169 -0.09327644780219568 5.10368117777181 -3.786432228989693 0.03407676994508434 -0.08630211584569986 7.758011929317281 0.02304267326305717 0.02389593761035827 -0.08630218760122092 -5.045710295607492 -3.786432300744443 -7.700041047154103 0.02304260150751324 7.803433022620331 -3.465786126433319 4.665865079960936 -3.481814428052453 7.320431992283355 0.3274959133999949 -4.607896991491319 -3.481812852925806 -7.74545837805893 -3.465784551307054 -7.262463903943627 0.3274974884361274 8.235953450202942 -3.410649597644806 7.752921581268311 0.3826285153627396 8.764718770980835 0.3936321288347244 -7.694950699806213 0.3826285153627396 -8.177976012229919 -3.410649597644806 -8.706749677658081 0.3936321288347244 8.973178863525391 -3.297716081142426 -8.915202021598816 -3.297716081142426 9.324011206626892 -2.979780733585358 -9.26603376865387 -2.979780733585358 9.384456872940064 0.1845742762088776 -9.326475262641907 0.1845742762088776 9.645599126815796 -2.343914806842804 -9.587626457214356 -2.343914806842804 9.744054079055786 -0.0104040652513504 -9.686073064804077 -0.0104040652513504 9.829660058021545 -1.511167734861374 -9.771678447723389 -1.511167734861374 9.899673461914063 -0.6467173993587494 -9.841688871383667 -0.6467173993587494</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"38\" source=\"#ID1549\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1545\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1543\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1544\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"44\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 3 2 4 1 5 0 1 3 6 4 2 5 3 5 7 4 4 3 0 6 2 7 8 8 9 8 3 7 5 6 2 9 6 10 10 11 11 11 7 10 3 9 12 12 0 13 8 14 9 14 5 13 13 12 6 15 14 16 10 17 11 17 15 16 7 15 12 18 8 19 16 20 17 20 9 19 13 18 10 21 14 22 18 23 19 23 15 22 11 21 20 24 12 18 16 20 17 20 13 18 21 24 14 22 22 25 18 23 19 23 23 25 15 22 24 26 20 24 16 20 17 20 21 24 25 26 22 25 26 27 18 23 19 23 27 27 23 25 28 28 24 26 16 20 17 20 25 26 29 28 26 27 30 29 18 23 19 23 31 29 27 27 32 30 24 26 28 28 29 28 25 26 33 30 26 27 34 31 30 29 31 29 35 31 27 27 36 32 32 30 28 28 29 28 33 30 37 32 34 31 38 33 30 29 31 29 39 33 35 31 40 34 32 30 36 32 37 32 33 30 41 34 34 31 42 35 38 33 39 33 43 35 35 31 44 36 40 34 36 32 37 32 41 34 45 36 42 35 46 37 38 33 39 33 47 37 43 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1545\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1546\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1550\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1553\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1556\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">-0.75937420129776 -2.059271097183228 0.09401828050613403 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.75937420129776 -2.059271097183228 0.09401828050613403 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7132100462913513 -2.062207937240601 0.09551356732845306 -0.7132100462913513 -2.062207937240601 0.09551356732845306 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.6684518456459045 -2.059271097183228 0.09401828050613403 -0.6684518456459045 -2.059271097183228 0.09401828050613403 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1556\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1554\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1557\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">-0.5561338226597609 -0.8009804129341711 0.2216879549945059 -0.9436279770637638 -0.294802001739216 -0.1505258139758768 -0.9853335926304631 -0.1499911356522045 0.08136565897052001 0.9853335926304631 0.1499911356522045 -0.08136565897052001 0.9436279770637638 0.294802001739216 0.1505258139758768 0.5561338226597609 0.8009804129341711 -0.2216879549945059 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 0.5592988209446661 0.8285232037662215 -0.02709482812018735 -0.5933286735546096 -0.641507705513458 0.4862396003050205 0.5933286735546096 0.641507705513458 -0.4862396003050205 0.00102079149857841 -0.9650401052263313 0.2621002733487091 -0.00102079149857841 0.9650401052263313 -0.2621002733487091 -0.0001897054169267276 -0.8685858618862585 0.4955386609974646 0.0001897054169267276 0.8685858618862585 -0.4955386609974646 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 0.0003259087856735385 -0.9990110688943522 0.04446097176206857 -0.0003259087856735385 0.9990110688943522 -0.04446097176206857 0.5519712570922619 -0.8023479070624949 0.2270805305974565 -0.5519712570922619 0.8023479070624949 -0.2270805305974565 0.537584015006585 -0.8419809394557429 0.04551400226989654 -0.537584015006585 0.8419809394557429 -0.04551400226989654 0.5697731445095979 -0.6724564716572923 0.4723990447935624 -0.5697731445095979 0.6724564716572923 -0.4723990447935624 0.9834002721368989 -0.1574388066126764 0.09020491634855526 -0.9834002721368989 0.1574388066126764 -0.09020491634855526 0.9534207476003748 -0.2793935727768806 -0.1137018449107683 -0.9534207476003748 0.2793935727768806 0.1137018449107683 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1557\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1555\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1553\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1554\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"16\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 0 6 1 8 0 2 6 0 10 12 0 8 8 2 14 10 0 12 16 6 10 18 10 12 20 16 10 18 12 22 18 20 10 18 22 24 20 18 26 26 18 24 24 22 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1555\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"16\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 4 7 5 3 5 9 11 5 7 9 5 13 15 3 9 13 5 11 11 7 17 13 11 19 11 17 21 23 13 19 11 21 19 25 23 19 27 19 21 25 19 27 29 23 25</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1555\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1558\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1559\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1562\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"114\">-0.7442749738693237 -1.974473595619202 0.2335336655378342 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.75937420129776 -2.010840177536011 0.1919151991605759 -0.7442749738693237 -1.974473595619202 0.2335336655378342 -0.7132100462913513 -1.981115937232971 0.2377601712942123 -0.7132100462913513 -1.981115937232971 0.2377601712942123 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.7132100462913513 -2.010840177536011 0.1913945823907852 -0.732620894908905 -1.956179261207581 0.2581743896007538 -0.732620894908905 -1.956179261207581 0.2581743896007538 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.6704422235488892 -2.010840177536011 0.1919151991605759 -0.7132100462913513 -1.961442589759827 0.2600972652435303 -0.7132100462913513 -1.961442589759827 0.2600972652435303 -0.7190929651260376 -1.930104374885559 0.2703545987606049 -0.7190929651260376 -1.930104374885559 0.2703545987606049 -0.6792644262313843 -1.974473595619202 0.2335336655378342 -0.6792644262313843 -1.974473595619202 0.2335336655378342 -0.6959635019302368 -1.956179261207581 0.2581743896007538 -0.6959635019302368 -1.956179261207581 0.2581743896007538 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.7073091864585877 -1.930104374885559 0.2703545987606049 -0.7073091864585877 -1.930104374885559 0.2703545987606049 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.932884335517883 0.2744995951652527 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID1562\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1560\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1563\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"114\">-0.6038443360950649 -0.5112675941819026 0.6115369693692765 -0.5933286735546096 -0.641507705513458 0.4862396003050205 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 0.5933286735546096 0.641507705513458 -0.4862396003050205 0.6038443360950649 0.5112675941819026 -0.6115369693692765 -0.002391138459624213 -0.7580277718353075 0.6522178927193474 0.002391138459624213 0.7580277718353075 -0.6522178927193474 -0.8510242709127007 -0.1534738216882031 0.5021986423457593 0.8510242709127007 0.1534738216882031 -0.5021986423457593 -0.0001897054169267276 -0.8685858618862585 0.4955386609974646 0.0001897054169267276 0.8685858618862585 -0.4955386609974646 -0.4816332037904218 -0.4003286159953588 0.7795937764129565 0.4816332037904218 0.4003286159953588 -0.7795937764129565 0.5697731445095979 -0.6724564716572923 0.4723990447935624 -0.5697731445095979 0.6724564716572923 -0.4723990447935624 0.01324367386319167 -0.5911598887815612 0.8064456528485832 -0.01324367386319167 0.5911598887815612 -0.8064456528485832 -0.5934713821303773 -0.1497793578805715 0.7907957147994312 0.5934713821303773 0.1497793578805715 -0.7907957147994312 0.6132460904981805 -0.4994353159705884 0.6119588202240867 -0.6132460904981805 0.4994353159705884 -0.6119588202240867 0.4595277406161648 -0.4008535545887295 0.7925595771787654 -0.4595277406161648 0.4008535545887295 -0.7925595771787654 -0.6121179836118351 -0.1235081349179034 0.7810616587364163 0.6121179836118351 0.1235081349179034 -0.7810616587364163 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937 0.5987942084567582 -0.1559010396415385 0.7855828166128199 -0.5987942084567582 0.1559010396415385 -0.7855828166128199 -0.6312255978924052 -0.232565300120417 0.7399105525300177 0.6312255978924052 0.232565300120417 -0.7399105525300177 0.8533897397826985 -0.1412687265943303 0.5017659802338482 -0.8533897397826985 0.1412687265943303 -0.5017659802338482 0.6300652721750066 -0.2328232920063185 0.7408178369196948 -0.6300652721750066 0.2328232920063185 -0.7408178369196948 0.6120888028889895 -0.123428166670594 0.7810971674831884 -0.6120888028889895 0.123428166670594 -0.7810971674831884</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID1563\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1561\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1559\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1560\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 1 0 6 0 2 8 10 1 6 6 0 12 12 0 8 14 10 6 6 12 16 12 8 18 20 14 6 22 6 16 12 18 16 18 8 24 14 20 26 20 6 22 16 28 22 16 18 30 30 18 24 26 20 32 20 22 32 22 28 32 16 34 28 34 36 28 28 36 32</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1561\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 7 5 4 9 3 5 7 4 11 13 5 7 9 5 13 7 11 15 17 13 7 19 9 13 7 15 21 17 7 23 17 19 13 25 9 19 27 21 15 23 7 21 23 29 17 31 19 17 25 19 31 33 21 27 33 23 21 33 29 23 29 35 17 29 37 35 33 37 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1561\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1564\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1565\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1569\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"162\">-0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7132100462913513 -2.065135478973389 -0.01727784238755703 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7132100462913513 -2.065832376480103 -0.02816875651478767 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.6661593317985535 -2.064049482345581 -0.03001902252435684 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7610493302345276 -2.064049482345581 -0.03001902252435684 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.018415689468384 -0.01978804916143417 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6422932744026184 -2.007525444030762 -0.03067911602556706 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.985357642173767 0.08481673896312714 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6403560638427734 -1.974467396736145 0.07392585277557373 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6466130018234253 -1.948307156562805 0.1686285883188248 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6471335887908936 -1.932552456855774 0.1696925461292267 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.918747544288635 0.2325675636529923 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.6603543758392334 -1.904120802879334 0.2353758960962296 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7132100462913513 -1.873579382896423 0.2818244993686676 -0.7660660147666931 -1.918747544288635 0.2325675636529923 -0.7132100462913513 -1.888206958770752 0.279016375541687 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7660660147666931 -1.904120802879334 0.2353758960962296 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.948307156562805 0.1686285883188248 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7798073291778565 -1.932552456855774 0.167515367269516 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.985357642173767 0.08481673896312714 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7860640287399292 -1.974467396736145 0.07392585277557373 -0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7841270565986633 -2.018415689468384 -0.01978804916143417</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1569\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1566\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1570\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"162\">-0.03507863000728281 -0.9993638928866502 -0.006426454018542583 -0.03258879221096398 -0.992925889807309 -0.1141759518138322 0.0003259087856735385 -0.9990110688943522 0.04446097176206857 -0.0003259087856735385 0.9990110688943522 -0.04446097176206857 0.03258879221096398 0.992925889807309 0.1141759518138322 0.03507863000728281 0.9993638928866502 0.006426454018542583 0.537584015006585 -0.8419809394557429 0.04551400226989654 -0.537584015006585 0.8419809394557429 -0.04551400226989654 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 0.5592988209446661 0.8285232037662215 -0.02709482812018735 0.5488649620174 -0.8350332471836223 -0.03829790552515543 -0.5488649620174 0.8350332471836223 0.03829790552515543 -0.9224100075395584 -0.3862095043714823 -0.001413054848939107 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 0.9224100075395584 0.3862095043714823 0.001413054848939107 0.9534207476003748 -0.2793935727768806 -0.1137018449107683 -0.9534207476003748 0.2793935727768806 0.1137018449107683 0.9554196933123231 -0.280007949107208 -0.09364164707949933 -0.9554196933123231 0.280007949107208 0.09364164707949933 0.9834002721368989 -0.1574388066126764 0.09020491634855526 -0.9834002721368989 0.1574388066126764 -0.09020491634855526 0.9999030608777266 0.0091911144929521 0.01045907556770696 -0.9999030608777266 -0.0091911144929521 -0.01045907556770696 0.9732338273111401 -0.1230929771776496 0.194072245173937 -0.9732338273111401 0.1230929771776496 -0.194072245173937 0.9845608053297705 0.005789609544017289 0.1749471378151744 -0.9845608053297705 -0.005789609544017289 -0.1749471378151744 0.8533897397826985 -0.1412687265943303 0.5017659802338482 -0.8533897397826985 0.1412687265943303 -0.5017659802338482 0.8505881097345353 -0.07656512545695393 0.5202284586044782 -0.8505881097345353 0.07656512545695393 -0.5202284586044782 0.6120888028889895 -0.123428166670594 0.7810971674831884 -0.6120888028889895 0.123428166670594 -0.7810971674831884 0.6341513258495346 -0.07317274126097195 0.7697388166512276 -0.6341513258495346 0.07317274126097195 -0.7697388166512276 -0.6121179836118351 -0.1235081349179034 0.7810616587364163 -0.8510242709127007 -0.1534738216882031 0.5021986423457593 -0.6255914375192391 -0.09499054398525243 0.7743462725783586 0.6255914375192391 0.09499054398525243 -0.7743462725783586 0.8510242709127007 0.1534738216882031 -0.5021986423457593 0.6121179836118351 0.1235081349179034 -0.7810616587364163 -0.8365327615396679 -0.08000809676405099 0.5420439496231012 0.8365327615396679 0.08000809676405099 -0.5420439496231012 -0.9710113209722483 -0.1190859730559035 0.207257196654442 0.9710113209722483 0.1190859730559035 -0.207257196654442 -0.986834032541885 -0.03790333343156378 0.1572320881114841 0.986834032541885 0.03790333343156378 -0.1572320881114841 -0.9853335926304631 -0.1499911356522045 0.08136565897052001 0.9853335926304631 0.1499911356522045 -0.08136565897052001 -0.9981388138662855 -0.05180664955192778 0.03217109441421623 0.9981388138662855 0.05180664955192778 -0.03217109441421623 -0.9436279770637638 -0.294802001739216 -0.1505258139758768 0.9436279770637638 0.294802001739216 0.1505258139758768</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1570\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1568\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1571\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"138\">-6.306092317982453 -1.271501018627536 -6.784815808535565 -1.286086166393232 -6.306369069507085 -1.185650880848618 -7.489267850228599 -1.171509235018648 -7.960392566110251 -1.242774628416125 -7.960111184225731 -1.156924499951786 -6.784817513680201 -1.286081136919438 -6.785094264637429 -1.200230589696816 -6.306370773987924 -1.185645853331707 -7.489550428628045 -1.257354880306367 -7.960393762555639 -1.242769734407629 -7.489269046334202 -1.171504342400244 16.22989170620917 -0.4325477354765682 16.23634433632682 -0.5182483619599257 15.62580784216991 -0.5234426142540005 -21.35518248273874 -0.3254202931075205 -21.34902642173081 -0.2397061667655785 -20.84021281446976 -0.2449004456687551 -21.59802244816052 0.3505792080735636 -21.08461437258555 0.4370503163289707 -20.98446818310251 0.345000167392186 -20.16364743902301 -0.3092719751842178 -20.2725391110552 -0.2235871018883999 -19.94171877301929 0.5993853514445762 -20.16364623668031 -0.3092722004508784 -19.94171757385895 0.5993851266589149 -19.83282590152668 0.5137016747808543 -19.38718969248185 0.8819730681369841 -19.49594649604843 0.9677624583550557 -19.12270220684322 1.627962861283831 -19.54988191260408 0.8983130588275439 -19.28656884661604 1.644559913419114 -19.12893707137241 1.652943780736948 -19.19823782851327 2.393227254796936 -19.35585556866196 2.384681651035667 -19.05768570728569 2.898233168553988 -19.58089838569085 2.25643435415043 -19.44853918039593 2.76280839742426 -19.30240151704015 2.785425753413094 -20.21626233545632 2.216000657861116 -20.04819653781429 2.804765886351715 -20.0743637675117 2.251597876075918 -20.04811880715953 2.805177302875323 -19.90621096466235 2.840771842231666 -20.07430436054864 2.252009829195494 16.58836098419017 -5.730743485420502 16.75644603800339 -6.319506967773847 16.44645311290055 -5.69514901710096 16.75599268744965 -6.319961358425972 16.61409424247359 -6.284363836867083 16.44602310623511 -5.695596235526827 18.82129313582166 0.2435889040443392 19.11037059099694 -0.2731696219641182 18.67517545389078 0.2662860105638668 19.58954765192474 0.1591349106955591 19.43201586527058 0.1502098457519561 19.14581736895401 0.6942703692766635 19.52270398761788 0.8858351267101063 19.89352402824985 0.2247900018658341 19.36515905154538 0.8770548724480094 20.19502555639999 0.4151013409679305 20.08623901514947 0.3293352869389188 19.66464977633564 1.06635550902239 19.74101486272088 0.7572303592065931 20.07183513911413 -0.06574207473235705 19.63212318776349 0.6715469093930906 20.07183384833129 -0.06574251590433804 19.96294217361733 -0.1514273870910756 19.63212189488597 0.6715464674480196</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"69\" source=\"#ID1571\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1567\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1565\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1566\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"23\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 2 8 10 9 0 10 6 11 8 12 12 13 13 14 10 15 6 16 16 17 10 18 16 19 18 20 18 21 16 22 20 23 18 24 20 25 22 26 22 27 20 28 24 29 22 30 24 31 26 32 26 33 24 34 28 35 26 36 28 37 30 38 28 39 32 40 30 41 32 42 34 43 30 44 36 45 37 46 38 47 37 48 42 49 38 50 37 51 44 52 42 53 44 54 46 55 42 56 44 57 48 58 46 59 48 60 50 61 46 62 48 63 52 64 50 65 52 66 13 67 50 68</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1567\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1568\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"23\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 5 7 3 9 4 7 5 11 14 15 9 17 7 11 19 17 11 21 17 19 23 21 19 25 21 23 27 25 23 29 25 27 31 29 27 31 33 29 31 35 33 39 40 41 39 43 40 43 45 40 43 47 45 47 49 45 47 51 49 51 53 49 51 14 53</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1567\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1572\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1573\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1576\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.7841270565986633 -2.018415689468384 -0.01978804916143417 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7841270565986633 -2.007525444030762 -0.03067911602556706 -0.7610493302345276 -2.063352584838867 -0.01912805624306202 -0.7841270565986633 -2.018415689468384 -0.01978804916143417</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1576\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1574\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1577\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.9436279770637638 -0.294802001739216 -0.1505258139758768 -0.5592988209446661 -0.8285232037662215 0.02709482812018735 -0.9763110407817345 -0.2123732290624425 -0.04140486958411617 0.9763110407817345 0.2123732290624425 0.04140486958411617 0.5592988209446661 0.8285232037662215 -0.02709482812018735 0.9436279770637638 0.294802001739216 0.1505258139758768</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1577\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1575\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1573\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1574\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1575\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1578\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1579\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1582\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.6489370465278626 0.3227427005767822 -0.2719404995441437 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6649683117866516 0.3201837241649628 -0.2500443458557129 -0.6650955677032471 0.320149302482605 -0.2725684344768524 -0.6489370465278626 0.3227427005767822 -0.2719404995441437</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1582\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1580\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1583\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">0.158445906171609 -0.9873674686534116 0.0006137282883339717 0.158445906171609 -0.9873674686534116 0.0006137282883339717 0.158445906171609 -0.9873674686534116 0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717 -0.158445906171609 0.9873674686534116 -0.0006137282883339717</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1583\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1581\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1579\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1580\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1581\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1584\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1585\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1588\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">0.7538297772407532 0.2898140251636505 0.2332167774438858 0.7403134107589722 0.280442476272583 0.2985353469848633 0.769927978515625 0.3120907545089722 0.236614540219307 0.769927978515625 0.3120907545089722 0.236614540219307 0.7403134107589722 0.280442476272583 0.2985353469848633 0.7538297772407532 0.2898140251636505 0.2332167774438858 0.788436233997345 0.3102889657020569 0.151445209980011 0.788436233997345 0.3102889657020569 0.151445209980011</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1588\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1586\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1589\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">0.3954580285428707 -0.9144961465914285 -0.08549704983456716 0.1006962484761042 -0.9856925593885402 -0.1351682059839063 0.7920595892200424 -0.5939052573171069 0.1411316848042239 -0.7920595892200424 0.5939052573171069 -0.1411316848042239 -0.1006962484761042 0.9856925593885402 0.1351682059839063 -0.3954580285428707 0.9144961465914285 0.08549704983456716 0.7834096988866806 -0.5940114822015261 0.1828102915675878 -0.7834096988866806 0.5940114822015261 -0.1828102915675878</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1589\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1587\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1585\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1586\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"4\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1587\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1590\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1591\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1594\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">0.3516539335250855 0.4489807486534119 0.2332167774438858 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.5986962914466858 0.2943861186504364 0.2461786717176437 0.3520075976848602 0.3036717772483826 0.2458886653184891 0.3516539335250855 0.4489807486534119 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.170243501663208 0.4526919424533844 0.2332167774438858 0.5283824801445007 0.4448592662811279 0.2332167774438858 0.5283824801445007 0.4448592662811279 0.2332167774438858 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.1605856269598007 0.3126678466796875 0.2458886653184891 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.6621055603027344 0.3010430932044983 0.2265639156103134 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5818127393722534 0.447659969329834 0.2332167774438858 0.5818127393722534 0.447659969329834 0.2332167774438858 0.6719444394111633 0.310824066400528 0.1522213369607925 0.6719444394111633 0.310824066400528 0.1522213369607925 0.5869252681732178 0.6375383734703064 0.1986889690160751 0.5869252681732178 0.6375383734703064 0.1986889690160751</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID1594\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1592\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1595\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"78\">-0.002455960715664099 -0.1340529164618239 -0.9909711316910512 -0.02541772641987503 -0.5744328089866907 -0.8181570064133806 -0.1159164628534591 -0.5849792717652266 -0.8027220099415288 0.1159164628534591 0.5849792717652266 0.8027220099415288 0.02541772641987503 0.5744328089866907 0.8181570064133806 0.002455960715664099 0.1340529164618239 0.9909711316910512 -0.003485674259203649 -0.135758403562462 -0.9907358406442811 0.003485674259203649 0.135758403562462 0.9907358406442811 -0.01360116989091377 -0.1197858847249975 -0.992706577996866 0.01360116989091377 0.1197858847249975 0.992706577996866 -0.0009837846824466707 -0.5287955557962981 -0.8487486626427067 0.0009837846824466707 0.5287955557962981 0.8487486626427067 -0.02366493571792748 -0.5517768020638852 -0.8336560031101667 0.02366493571792748 0.5517768020638852 0.8336560031101667 -0.001228812053990985 -0.5307931439620783 -0.8475005181967668 0.001228812053990985 0.5307931439620783 0.8475005181967668 -0.3120320962622111 -0.7954273829439994 -0.5195490827295054 0.3120320962622111 0.7954273829439994 0.5195490827295054 0.002893224898524778 -0.5261266435823435 -0.8504013077144604 -0.002893224898524778 0.5261266435823435 0.8504013077144604 -0.3639931181795807 -0.1116354944085396 -0.9246872586480613 0.3639931181795807 0.1116354944085396 0.9246872586480613 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 0.5805288259387089 0.79708037182807 0.1662803749714611 -0.534492854911476 -0.4762568934147193 -0.6982096816311992 0.534492854911476 0.4762568934147193 0.6982096816311992</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"26\" source=\"#ID1595\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1593\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1591\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1592\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"28\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 10 6 0 5 7 11 6 12 1 4 13 7 14 0 8 9 5 15 8 2 16 17 3 9 10 0 14 15 5 11 14 8 18 19 9 15 20 8 16 17 9 21 18 8 20 21 9 19 16 22 20 21 23 17 18 20 24 25 21 19 20 22 24 25 23 21</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1593\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1596\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1597\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1600\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"198\">0.5869252681732178 0.6375383734703064 0.1986889690160751 0.534200131893158 0.7065956592559815 0.1053698509931564 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.5315542221069336 0.6370245814323425 0.1986889690160751 0.534200131893158 0.7065956592559815 0.1053698509931564 0.5869252681732178 0.6375383734703064 0.1986889690160751 0.3691354095935822 0.7059374451637268 0.1053698509931564 0.3691354095935822 0.7059374451637268 0.1053698509931564 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3651319146156311 0.6375383734703064 0.1986889690160751 0.3718721866607666 0.7579371929168701 -0.08268103003501892 0.3718721866607666 0.7579371929168701 -0.08268103003501892 0.534200131893158 0.7579361200332642 -0.08268103003501892 0.534200131893158 0.7579361200332642 -0.08268103003501892 0.6719444394111633 0.310824066400528 0.1522213369607925 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.5837617516517639 0.7059374451637268 0.1038601696491242 0.6719444394111633 0.310824066400528 0.1522213369607925 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1739863306283951 0.7058589458465576 0.1053698509931564 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.1767230927944183 0.7579361200332642 -0.08268103003501892 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.6823241114616394 0.310824066400528 0.0157061405479908 0.6823241114616394 0.310824066400528 0.0157061405479908 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1713484525680542 0.6375383734703064 0.1986889690160751 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.1755106300115585 0.7188499569892883 -0.2198816239833832 0.3704305589199066 0.7212921380996704 -0.2198816239833832 0.3704305589199066 0.7212921380996704 -0.2198816239833832 0.5344406366348267 0.7229641675949097 -0.2198816239833832 0.5344406366348267 0.7229641675949097 -0.2198816239833832 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5828560590744019 0.7579371929168701 -0.08313017338514328 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.6825405955314636 0.3132611513137817 -0.1183710545301437 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.1713935732841492 0.5582479238510132 -0.2725684344768524 0.359952837228775 0.5584809184074402 -0.2725684344768524 0.359952837228775 0.5584809184074402 -0.2725684344768524 0.5290966629981995 0.5639436841011047 -0.2725684344768524 0.5290966629981995 0.5639436841011047 -0.2725684344768524 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5763830542564392 0.720934271812439 -0.2198816239833832 0.5818012356758118 0.5650895833969116 -0.2725684344768524 0.5818012356758118 0.5650895833969116 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.1068758368492127 0.4605898261070252 -0.2725684344768524 0.352996438741684 0.4595295786857605 -0.2725684344768524 0.352996438741684 0.4595295786857605 -0.2725684344768524 0.5275225043296814 0.4595295786857605 -0.2725684344768524 0.5275225043296814 0.4595295786857605 -0.2725684344768524 0.5826190710067749 0.4595295786857605 -0.2725684344768524 0.5826190710067749 0.4595295786857605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.1068758368492127 0.3181760609149933 -0.273921549320221 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6621965765953064 0.320149302482605 -0.2725684344768524</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID1600\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1598\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1601\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"198\">-0.534492854911476 -0.4762568934147193 -0.6982096816311992 -0.008708290630548747 -0.8994943682349239 -0.4368455644595113 0.002893224898524778 -0.5261266435823435 -0.8504013077144604 -0.002893224898524778 0.5261266435823435 0.8504013077144604 0.008708290630548747 0.8994943682349239 0.4368455644595113 0.534492854911476 0.4762568934147193 0.6982096816311992 0.001023643364597451 -0.8995424763256171 -0.4368321021173226 -0.001023643364597451 0.8995424763256171 0.4368321021173226 -0.0236357229016307 -0.9023480103169261 -0.4303596413233958 0.0236357229016307 0.9023480103169261 0.4303596413233958 -0.001228812053990985 -0.5307931439620783 -0.8475005181967668 0.001228812053990985 0.5307931439620783 0.8475005181967668 0.002310619850038598 -0.9999946954244299 -0.002295682667614813 -0.002310619850038598 0.9999946954244299 0.002295682667614813 0.0005887579113936776 -0.9999601086645632 -0.008912600275817318 -0.0005887579113936776 0.9999601086645632 0.008912600275817318 -0.5805288259387089 -0.79708037182807 -0.1662803749714611 -0.9696809579224759 -0.2296289695838888 -0.08360248902031012 0.9696809579224759 0.2296289695838888 0.08360248902031012 0.5805288259387089 0.79708037182807 0.1662803749714611 0.0002517151608787327 -0.8990035483622607 -0.4379412708018532 -0.0002517151608787327 0.8990035483622607 0.4379412708018532 0.0001049664590907936 -0.9999945765291868 0.003291791951931407 -0.0001049664590907936 0.9999945765291868 -0.003291791951931407 -0.004762183782822505 -0.99991582039779 -0.01206953701817792 0.004762183782822505 0.99991582039779 0.01206953701817792 -0.9738578787136809 -0.22317279432954 -0.04236432388737434 0.9738578787136809 0.22317279432954 0.04236432388737434 -0.0009837846824466707 -0.5287955557962981 -0.8487486626427067 0.0009837846824466707 0.5287955557962981 0.8487486626427067 0.004960938197936508 -0.7176065544393218 0.6964310605637294 -0.004960938197936508 0.7176065544393218 -0.6964310605637294 0.006236033036651492 -0.7266495822650051 0.6869799825948784 -0.006236033036651492 0.7266495822650051 -0.6869799825948784 -0.01015286975425089 -0.7326993687073732 0.6804767110868452 0.01015286975425089 0.7326993687073732 -0.6804767110868452 -0.9735634800605109 -0.2269766006540034 0.02560806607341277 0.9735634800605109 0.2269766006540034 -0.02560806607341277 -0.03242314820124487 -0.720253991249472 0.692952327039837 0.03242314820124487 0.720253991249472 -0.692952327039837 -0.9570457757608381 -0.2670484824654185 0.1129092162369959 0.9570457757608381 0.2670484824654185 -0.1129092162369959 0.0009666724662604464 -0.131014841647294 0.991379935651553 -0.0009666724662604464 0.131014841647294 -0.991379935651553 0.001696977507081195 -0.155230976216615 0.9878767454951943 -0.001696977507081195 0.155230976216615 -0.9878767454951943 0.00350166923253529 -0.1610376828668566 0.9869420464289985 -0.00350166923253529 0.1610376828668566 -0.9869420464289985 -0.9623626947490217 -0.206647714191229 0.1765071272638618 0.9623626947490217 0.206647714191229 -0.1765071272638618 -0.5189880486035221 -0.1695065661790611 0.8378060213610854 0.5189880486035221 0.1695065661790611 -0.8378060213610854 -2.50664681986786e-005 -0.005818806173580303 0.9999830702898858 2.50664681986786e-005 0.005818806173580303 -0.9999830702898858 -0.0008486584844322239 -0.002669912908706293 0.9999960756642182 0.0008486584844322239 0.002669912908706293 -0.9999960756642182 0 0 1 -0 -0 -1 -0.4533059364850565 -0.06671574964729424 0.8888547331799531 0.4533059364850565 0.06671574964729424 -0.8888547331799531 -0.8647407894750915 -0.4937134355135344 0.09203483368496382 0.8647407894750915 0.4937134355135344 -0.09203483368496382 -0.0008261090318084516 -0.008133841918222379 0.9999665785212609 0.0008261090318084516 0.008133841918222379 -0.9999665785212609 -0.0009780757563540878 -0.002169755771291285 0.999997167759843 0.0009780757563540878 0.002169755771291285 -0.999997167759843</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"66\" source=\"#ID1601\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1599\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1597\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1598\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"42\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 1 6 2 8 1 0 2 6 10 1 12 6 8 14 1 0 16 17 6 20 10 12 22 6 14 12 1 24 14 8 16 26 17 10 20 28 6 22 20 12 30 22 14 32 12 24 34 14 17 26 36 32 30 12 34 32 14 38 34 24 26 40 36 42 30 32 44 32 34 46 34 38 40 48 36 44 42 32 46 44 34 46 38 50 40 50 48 52 42 44 54 44 46 56 46 50 40 58 50 54 52 44 56 54 46 56 50 58 40 60 58 62 52 54 54 56 64 56 58 64 62 54 64</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1599\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"42\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 7 4 5 4 9 11 7 3 7 13 4 4 15 9 18 19 5 11 21 7 7 23 13 4 13 15 9 15 25 18 27 19 29 21 11 21 23 7 23 31 13 13 33 15 15 35 25 37 27 18 13 31 33 15 33 35 25 35 39 37 41 27 33 31 43 35 33 45 39 35 47 37 49 41 33 43 45 35 45 47 51 39 47 49 51 41 45 43 53 47 45 55 51 47 57 51 59 41 45 53 55 47 55 57 59 51 57 59 61 41 55 53 63 65 57 55 65 59 57 65 55 63</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1599\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1602\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1603\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1606\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"156\">0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5871358513832092 -0.7042819857597351 0.3781213462352753 0.5562193989753723 -0.8102383017539978 0.2943964898586273 0.5585072040557861 -0.8348765969276428 0.3970467150211334 0.5913218855857849 -0.7019175291061401 0.2899888455867767 0.5913218855857849 -0.7019175291061401 0.2899888455867767 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5937454700469971 -0.6744176149368286 0.3732988834381104 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5612154603004456 -0.7998819351196289 0.2286180704832077 0.5991842150688171 -0.6751006841659546 0.2901735305786133 0.5991842150688171 -0.6751006841659546 0.2901735305786133 0.6027332544326782 -0.6565739512443543 0.2298039048910141 0.6027332544326782 -0.6565739512443543 0.2298039048910141 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.6099106073379517 -0.6618664264678955 0.2912401556968689 0.606005072593689 -0.6353139281272888 0.1513132899999619 0.606005072593689 -0.6353139281272888 0.1513132899999619 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6058565378189087 -0.6622411012649536 0.3692092895507813 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6138498187065125 -0.6420672535896301 0.2305959314107895 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.6182225346565247 -0.623186469078064 0.1507736295461655 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.5774928331375122 -0.7780205607414246 0.1524880826473236 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6281870007514954 -0.5694386959075928 0.02023929730057716 0.6138572096824646 -0.5806991457939148 0.01851669326424599 0.6138572096824646 -0.5806991457939148 0.01851669326424599 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.5930450558662415 -0.7395881414413452 0.01842614635825157 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6336215138435364 -0.5123711824417114 -0.1182090491056442 0.6184371709823608 -0.523088812828064 -0.1182090491056442 0.6184371709823608 -0.523088812828064 -0.1182090491056442 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.5977010726928711 -0.6858347654342651 -0.1154895722866058 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6345278024673462 -0.4625494778156281 -0.2498910278081894 0.6197459101676941 -0.4733588397502899 -0.2504602670669556 0.6197459101676941 -0.4733588397502899 -0.2504602670669556 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6035906076431274 -0.6300344467163086 -0.2481426149606705 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6215763092041016 -0.4488380253314972 -0.2738399505615234 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.6066247820854187 -0.4595814645290375 -0.2738712131977081 0.5905120968818665 -0.6027178764343262 -0.2739138007164002 0.5905120968818665 -0.6027178764343262 -0.2739138007164002</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"52\" source=\"#ID1606\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1604\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1607\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"156\">-0.6550028074066617 0.4876263453328185 0.57722774502509 -0.7476141706463564 0.6572814401000713 0.09515335174725628 -0.8216292782168875 0.2706545588897141 0.5016686545211001 0.8216292782168875 -0.2706545588897141 -0.5016686545211001 0.7476141706463564 -0.6572814401000713 -0.09515335174725628 0.6550028074066617 -0.4876263453328185 -0.57722774502509 -0.9584160287978759 0.2850066878088134 -0.01448805188969848 0.9584160287978759 -0.2850066878088134 0.01448805188969848 -0.7753733229355523 0.4751248107874208 0.4159959425933109 0.7753733229355523 -0.4751248107874208 -0.4159959425933109 -0.7244565686574949 0.6850933441356621 0.07622197812982619 0.7244565686574949 -0.6850933441356621 -0.07622197812982619 -0.8941909770901743 0.4475430250016918 0.01130209108326358 0.8941909770901743 -0.4475430250016918 -0.01130209108326358 -0.8881486012223843 0.4524779345091655 0.08034787445254196 0.8881486012223843 -0.4524779345091655 -0.08034787445254196 -0.4543309600657438 0.8834859794272519 0.1141748785031492 0.4543309600657438 -0.8834859794272519 -0.1141748785031492 -0.8752530071759646 0.4733778114794652 0.09922510281346596 0.8752530071759646 -0.4733778114794652 -0.09922510281346596 -0.3839601059320404 0.8794258325261762 0.2813980137426312 0.3839601059320404 -0.8794258325261762 -0.2813980137426312 -0.4390785855880069 0.8722665560520438 0.2153161649090516 0.4390785855880069 -0.8722665560520438 -0.2153161649090516 -0.3813913782069187 0.8843791144645131 0.2690988638556295 0.3813913782069187 -0.8843791144645131 -0.2690988638556295 -0.7923653544809333 0.608650103731723 0.0412576810505382 0.7923653544809333 -0.608650103731723 -0.0412576810505382 -0.3135274238242752 0.882947604923759 0.3494339443578869 0.3135274238242752 -0.882947604923759 -0.3494339443578869 -0.8653479516275449 0.4780730382160567 0.1503964519025673 0.8653479516275449 -0.4780730382160567 -0.1503964519025673 -0.7968685932815799 0.5870304906792523 0.1428133329010719 0.7968685932815799 -0.5870304906792523 -0.1428133329010719 -0.2820162498870407 0.8935441405364961 0.3493504024794374 0.2820162498870407 -0.8935441405364961 -0.3493504024794374 -0.8445674453171055 0.5026266180178239 0.1845868716092845 0.8445674453171055 -0.5026266180178239 -0.1845868716092845 -0.8188546049565538 0.5430968997890379 0.1858033728999071 0.8188546049565538 -0.5430968997890379 -0.1858033728999071 -0.2493540230310667 0.8484132149469607 0.4669235353905227 0.2493540230310667 -0.8484132149469607 -0.4669235353905227 -0.7773761696034033 0.4537299634695453 0.4356781050072014 0.7773761696034033 -0.4537299634695453 -0.4356781050072014 -0.7904401366226477 0.4467532877527571 0.4190654964299407 0.7904401366226477 -0.4467532877527571 -0.4190654964299407 -0.136250489327595 0.3488184035330123 0.9272332638094212 0.136250489327595 -0.3488184035330123 -0.9272332638094212 -0.2818180752902821 0.1785579729115788 0.9427065411618766 0.2818180752902821 -0.1785579729115788 -0.9427065411618766 -0.4644038303505231 0.1881541816406321 0.8654057350670302 0.4644038303505231 -0.1881541816406321 -0.8654057350670302</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"52\" source=\"#ID1607\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1605\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1603\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1604\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"62\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 2 1 6 7 4 3 2 6 8 9 7 3 1 10 6 7 11 4 6 12 8 9 13 7 6 10 14 15 11 7 8 12 16 17 13 9 12 6 14 15 7 13 14 10 18 19 11 15 20 8 16 17 9 21 16 12 22 23 13 17 12 14 22 23 15 13 18 24 14 15 25 19 10 26 18 19 27 11 22 14 24 25 15 23 28 24 18 19 25 29 18 26 30 31 27 19 30 28 18 19 29 31 26 32 30 31 33 27 30 34 28 29 35 31 30 32 36 37 33 31 36 34 30 31 35 37 32 38 36 37 39 33 36 40 34 35 41 37 36 38 42 43 39 37 42 40 36 37 41 43 38 44 42 43 45 39 42 46 40 41 47 43 42 44 48 49 45 43 48 46 42 43 47 49 44 50 48 49 51 45</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1605\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1608\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1609\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1612\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"30\">0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6492300629615784 -0.6622440814971924 0.3726666569709778 0.6670048832893372 -0.652129054069519 0.3517222404479981 0.6597498655319214 -0.6536641716957092 0.2969664335250855 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6513559818267822 -0.6612551212310791 0.2933478653430939 0.6610545516014099 -0.6420672535896301 0.2324964851140976 0.6610545516014099 -0.6420672535896301 0.2324964851140976</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1612\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1610\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1613\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"30\">-0.384970124415974 0.9206201242962624 0.06524254783409289 -0.2771330402511802 0.960779697982544 0.009982481941339451 0.2331018669884867 0.8320242126565701 0.5033877522940903 -0.2331018669884867 -0.8320242126565701 -0.5033877522940903 0.2771330402511802 -0.960779697982544 -0.009982481941339451 0.384970124415974 -0.9206201242962624 -0.06524254783409289 -0.355210421201735 0.9270152150350377 0.1202844452255927 0.355210421201735 -0.9270152150350377 -0.1202844452255927 -0.03348084013298106 0.9726744552437342 0.2297464634337051 0.03348084013298106 -0.9726744552437342 -0.2297464634337051</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1613\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1611\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1609\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1610\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"6\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 6 8 0 5 9 7</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1611\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1614\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1615\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1618\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"66\">0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6499255299568176 -0.4488013684749603 -0.2736926674842835 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.7780932784080505 -0.4606519639492035 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 -0.4622048437595367 -0.2500443458557129 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.7780932784080505 0.3217366635799408 -0.2500443458557129 0.6621965765953064 0.320149302482605 -0.2725684344768524 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6620696187019348 0.3201837241649628 -0.2500443458557129 0.6460384130477905 0.3227427005767822 -0.2719405293464661 0.6621965765953064 0.320149302482605 -0.2725684344768524</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"22\" source=\"#ID1618\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1616\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1619\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"66\">-0.8895615761176244 0 0.4568152824666966 -0.4245302747465338 0.4022424534965067 0.8111566152283682 -0.8090636576108965 -0.00529621518445905 0.5876971567380582 0.8090636576108965 0.00529621518445905 -0.5876971567380582 0.4245302747465338 -0.4022424534965067 -0.8111566152283682 0.8895615761176244 -0 -0.4568152824666966 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.4374569246052411 -0.004190067454014929 0.899229604967305 0.4374569246052411 0.004190067454014929 -0.899229604967305 0 0 1 -0 -0 -1 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 -0.1584492472146793 -0.9873669312070373 0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994 0.1584492472146793 0.9873669312070373 -0.0006158050821592994</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"22\" source=\"#ID1619\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1617\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1615\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1616\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"10\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 8 7 14 15 10 9 16 17 18 19 20 21</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1617\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1620\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1621\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1624\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">0.351957768201828 -1.969097256660461 0.0834038257598877 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.476419061422348 -1.931788086891174 0.1698654741048813 0.476419061422348 -1.931788086891174 0.1698654741048813 0.5138719081878662 -1.931200861930847 -0.01854868978261948 0.351957768201828 -1.969097256660461 0.0834038257598877</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1624\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1622\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1625\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.149357994953947 0.9875735034865902 -0.04889544513099698 -0.7043453961272412 0.6885000654906582 0.1728155744535739 -0.747044926563488 0.6504540070975241 -0.1372350623803081 0.747044926563488 -0.6504540070975241 0.1372350623803081 0.7043453961272412 -0.6885000654906582 -0.1728155744535739 0.149357994953947 -0.9875735034865902 0.04889544513099698</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1625\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1623\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1621\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1622\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"1\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1623\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"1\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1623\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1626\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1627\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1630\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.756475567817688 -2.059271097183228 0.09401828050613403 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.756475567817688 -2.059271097183228 0.09401828050613403 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.756475567817688 -2.010841131210327 0.1919151991605759 0.756475567817688 -2.010841131210327 0.1919151991605759 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.062207937240601 0.09551356732845306 0.7103111147880554 -2.062207937240601 0.09551356732845306 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.6655531525611877 -2.059271097183228 0.09401828050613403 0.6655531525611877 -2.059271097183228 0.09401828050613403 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1630\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1628\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1631\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">0.943627143899562 -0.2948034789954753 -0.1505281437742455 0.5561347809388669 -0.800980889787665 0.2216838280638415 0.9853337997491376 -0.1499904908385696 0.08136433942416936 -0.9853337997491376 0.1499904908385696 -0.08136433942416936 -0.5561347809388669 0.800980889787665 -0.2216838280638415 -0.943627143899562 0.2948034789954753 0.1505281437742455 0.5933281384221253 -0.6415076825928938 0.4862402835335944 -0.5933281384221253 0.6415076825928938 -0.4862402835335944 0.5592979853536424 -0.8285238041283055 0.0270937183147329 -0.5592979853536424 0.8285238041283055 -0.0270937183147329 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 0.0001897390297503977 -0.8685842107168599 0.4955415551620975 -0.0001897390297503977 0.8685842107168599 -0.4955415551620975 -0.001021169911253755 -0.9650411311786424 0.2620964943402691 0.001021169911253755 0.9650411311786424 -0.2620964943402691 -0.000319951151868398 -0.9990084344300625 0.04452017035969026 0.000319951151868398 0.9990084344300625 -0.04452017035969026 -0.5519720940320964 -0.8023482870868035 0.2270771534494271 0.5519720940320964 0.8023482870868035 -0.2270771534494271 -0.5375902063391951 -0.8419767167272813 0.04551899095244997 0.5375902063391951 0.8419767167272813 -0.04551899095244997 -0.5697713573672883 -0.6724576161103255 0.4723995711884758 0.5697713573672883 0.6724576161103255 -0.4723995711884758 -0.9834003406516149 -0.1574389615609065 0.09020389896734656 0.9834003406516149 0.1574389615609065 -0.09020389896734656 -0.9534206114498375 -0.279393753748928 -0.1137025418744073 0.9534206114498375 0.279393753748928 0.1137025418744073 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1631\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1629\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1627\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1628\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"16\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 1 6 2 8 1 0 2 6 10 1 12 6 1 8 14 1 14 12 8 16 14 14 18 12 16 20 14 12 18 22 20 18 14 22 18 24 18 20 26 18 26 24 22 24 28</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1629\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"16\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 7 4 5 4 9 11 7 3 7 13 4 15 9 4 13 15 4 15 17 9 13 19 15 15 21 17 23 19 13 15 19 21 25 19 23 27 21 19 25 27 19 29 25 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1629\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1632\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1633\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1636\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"114\">0.756475567817688 -2.010841131210327 0.1919151991605759 0.7413764595985413 -1.974473595619202 0.2335336655378342 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7413764595985413 -1.974473595619202 0.2335336655378342 0.756475567817688 -2.010841131210327 0.1919151991605759 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7103111147880554 -1.981115937232971 0.2377601712942123 0.7103111147880554 -1.981115937232971 0.2377601712942123 0.7297222018241882 -1.956180214881897 0.2581743896007538 0.7297222018241882 -1.956180214881897 0.2581743896007538 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7103111147880554 -2.010841131210327 0.1913945823907852 0.7161936759948731 -1.930104374885559 0.2703545987606049 0.7161936759948731 -1.930104374885559 0.2703545987606049 0.7103111147880554 -1.961444020271301 0.2600972652435303 0.7103111147880554 -1.961444020271301 0.2600972652435303 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.6675435900688171 -2.010841131210327 0.1919151991605759 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.6930640935897827 -1.956180214881897 0.2581743896007538 0.6930640935897827 -1.956180214881897 0.2581743896007538 0.6763654351234436 -1.974473595619202 0.2335336655378342 0.6763654351234436 -1.974473595619202 0.2335336655378342 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7044104337692261 -1.930104374885559 0.2703545987606049 0.7044104337692261 -1.930104374885559 0.2703545987606049 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.932884335517883 0.2744995951652527 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.91874897480011 0.2325675636529923</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID1636\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1634\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1637\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"114\">0.5933281384221253 -0.6415076825928938 0.4862402835335944 0.6038475476821412 -0.5112670930340427 0.6115342171447025 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 -0.6038475476821412 0.5112670930340427 -0.6115342171447025 -0.5933281384221253 0.6415076825928938 -0.4862402835335944 0.8510247683157842 -0.1534714959402908 0.5021985101998162 -0.8510247683157842 0.1534714959402908 -0.5021985101998162 0.002390214720458501 -0.7580324268348783 0.6522124858820286 -0.002390214720458501 0.7580324268348783 -0.6522124858820286 0.4816343039379686 -0.4003304091070729 0.7795921759576298 -0.4816343039379686 0.4003304091070729 -0.7795921759576298 0.0001897390297503977 -0.8685842107168599 0.4955415551620975 -0.0001897390297503977 0.8685842107168599 -0.4955415551620975 0.593480914577841 -0.1497719923081683 0.7907899558997266 -0.593480914577841 0.1497719923081683 -0.7907899558997266 -0.01324242902615902 -0.5911708723841617 0.8064376217154284 0.01324242902615902 0.5911708723841617 -0.8064376217154284 -0.5697713573672883 -0.6724576161103255 0.4723995711884758 0.5697713573672883 0.6724576161103255 -0.4723995711884758 0.6121141719640919 -0.1235155841382136 0.7810634679433613 -0.6121141719640919 0.1235155841382136 -0.7810634679433613 -0.4595343448738955 -0.4008536781948491 0.7925556854625295 0.4595343448738955 0.4008536781948491 -0.7925556854625295 -0.6132519451184463 -0.499434195720541 0.6119538675042576 0.6132519451184463 0.499434195720541 -0.6119538675042576 0.6312475923018771 -0.2325527198214028 0.7398957424642685 -0.6312475923018771 0.2325527198214028 -0.7398957424642685 -0.5988004092927477 -0.1558923629322883 0.7855798119925344 0.5988004092927477 0.1558923629322883 -0.7855798119925344 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482 -0.630075658131957 -0.2328132967471215 0.7408121448027956 -0.6120926070614714 -0.1234322633736009 0.781093539045844 0.6120926070614714 0.1234322633736009 -0.781093539045844 0.630075658131957 0.2328132967471215 -0.7408121448027956 -0.8533897187137808 -0.1412637953393277 0.5017674044016239 0.8533897187137808 0.1412637953393277 -0.5017674044016239</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"38\" source=\"#ID1637\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1635\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1633\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1634\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 2 1 6 8 1 0 1 10 6 1 8 10 0 12 8 10 14 6 10 8 16 12 18 8 14 20 6 16 14 10 8 22 16 18 24 8 26 20 14 16 26 14 8 24 22 22 28 16 24 18 30 32 28 33 16 28 32 22 24 36 22 36 28 24 30 36 28 36 33</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1635\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 7 4 3 5 4 9 7 11 4 11 9 4 9 13 5 7 15 11 17 9 11 9 19 13 7 21 15 11 15 17 17 23 9 9 25 19 15 21 27 15 27 17 23 25 9 17 29 23 31 19 25 34 29 35 35 29 17 37 25 23 29 37 23 37 31 25 34 37 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1635\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1638\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1639\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1643\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"162\">0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065135478973389 -0.01727784238755703 0.7103111147880554 -2.065833806991577 -0.02816875651478767 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.7581502199172974 -2.063352584838867 -0.01912805624306202 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.6632607579231262 -2.064049482345581 -0.03001902252435684 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7812280058860779 -2.007525444030762 -0.03067911602556706 0.7581502199172974 -2.064049482345581 -0.03001902252435684 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.018415689468384 -0.01978804916143417 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.7812280058860779 -2.018415689468384 -0.01978804916143417 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.6393947601318359 -2.007525444030762 -0.03067911602556706 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.7831653952598572 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.7831653952598572 -1.985357642173767 0.08481673896312714 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.6374573111534119 -1.974467396736145 0.07392585277557373 0.7769084572792053 -1.932552456855774 0.167515367269516 0.7769084572792053 -1.932552456855774 0.167515367269516 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.6437143087387085 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.7769084572792053 -1.948307156562805 0.1686285883188248 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.6442347168922424 -1.932552456855774 0.1696925461292267 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.7631670832633972 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.7631670832633972 -1.91874897480011 0.2325675636529923 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.6574561595916748 -1.904120802879334 0.2353758960962296 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.888206958770752 0.279016375541687 0.7103111147880554 -1.873580098152161 0.2818244993686676 0.7103111147880554 -1.873580098152161 0.2818244993686676</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1643\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1640\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1644\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"162\">0.03260687053562721 -0.9929270011109181 -0.114161124988988 0.0350836217122919 -0.9993641268128589 -0.006362509498693735 -0.000319951151868398 -0.9990084344300625 0.04452017035969026 0.000319951151868398 0.9990084344300625 -0.04452017035969026 -0.0350836217122919 0.9993641268128589 0.006362509498693735 -0.03260687053562721 0.9929270011109181 0.114161124988988 -0.5375902063391951 -0.8419767167272813 0.04551899095244997 0.5375902063391951 0.8419767167272813 -0.04551899095244997 0.5592979853536424 -0.8285238041283055 0.0270937183147329 -0.5592979853536424 0.8285238041283055 -0.0270937183147329 -0.5488772901889137 -0.8350252574485036 -0.03829542711519779 0.5488772901889137 0.8350252574485036 0.03829542711519779 0.9224089668347014 -0.3862119958074538 -0.001411452217341778 0.9763108033078525 -0.2123747784436454 -0.04140252196893392 -0.9763108033078525 0.2123747784436454 0.04140252196893392 -0.9224089668347014 0.3862119958074538 0.001411452217341778 -0.9534206114498375 -0.279393753748928 -0.1137025418744073 0.9534206114498375 0.279393753748928 0.1137025418744073 0.943627143899562 -0.2948034789954753 -0.1505281437742455 -0.943627143899562 0.2948034789954753 0.1505281437742455 -0.9554201128959187 -0.2800080264120052 -0.09363713482803654 0.9554201128959187 0.2800080264120052 0.09363713482803654 0.9981387801496015 -0.05180774196831358 0.03217038130968378 -0.9981387801496015 0.05180774196831358 -0.03217038130968378 -0.9834003406516149 -0.1574389615609065 0.09020389896734656 0.9834003406516149 0.1574389615609065 -0.09020389896734656 0.9853337997491376 -0.1499904908385696 0.08136433942416936 -0.9853337997491376 0.1499904908385696 -0.08136433942416936 -0.9999030821333683 0.009189671904800476 0.01045831107171379 0.9999030821333683 -0.009189671904800476 -0.01045831107171379 0.9868338077903163 -0.03790197884639443 0.1572338252463278 -0.9868338077903163 0.03790197884639443 -0.1572338252463278 -0.9732329982834218 -0.1230960806946823 0.194074434096482 0.9732329982834218 0.1230960806946823 -0.194074434096482 0.9710117483693226 -0.1190829516643048 0.2072569302862231 -0.9710117483693226 0.1190829516643048 -0.2072569302862231 -0.9845592136282013 0.005778961781360174 0.1749564473248911 0.9845592136282013 -0.005778961781360174 -0.1749564473248911 0.8365363380127288 -0.08000022603088255 0.5420395917451615 -0.8365363380127288 0.08000022603088255 -0.5420395917451615 -0.8533897187137808 -0.1412637953393277 0.5017674044016239 0.8533897187137808 0.1412637953393277 -0.5017674044016239 0.8510247683157842 -0.1534714959402908 0.5021985101998162 -0.8510247683157842 0.1534714959402908 -0.5021985101998162 -0.8505869295512368 -0.07656434047780775 0.5202305037613593 0.8505869295512368 0.07656434047780775 -0.5202305037613593 0.625589589694931 -0.09499442026280379 0.7743472899056741 -0.625589589694931 0.09499442026280379 -0.7743472899056741 -0.6120926070614714 -0.1234322633736009 0.781093539045844 0.6120926070614714 0.1234322633736009 -0.781093539045844 0.6121141719640919 -0.1235155841382136 0.7810634679433613 -0.6121141719640919 0.1235155841382136 -0.7810634679433613 -0.6341573082842825 -0.07317161945134183 0.7697339946088529 0.6341573082842825 0.07317161945134183 -0.7697339946088529</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"54\" source=\"#ID1644\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1642\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1645\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">6.755113598492128 -1.28818411616344 6.276391367870363 -1.273598846461514 6.276668932229784 -1.187747990949572 7.931538674230804 -1.244918489932155 7.460416922470831 -1.173652500424159 7.93125667663631 -1.159067643361002 6.756122927852144 -1.200172844248997 6.755846175862104 -1.286023391469558 6.277401224106905 -1.185588107884238 7.932052753930135 -1.242815736372001 7.461212451825801 -1.257400882197142 7.460930856031394 -1.171550344724229 -16.24728231087358 -0.5177389912904121 -16.24082968313403 -0.4320383646962481 -15.63674559141635 -0.522933243591203 21.33544447558737 -0.2403093091453216 21.34160053997291 -0.3260234353371425 20.8266311479033 -0.245503588039401 -14.79313507739231 5.22963607387074 -14.28798007840902 5.22391645303245 -14.19140803992131 5.129532450942014 21.07322891855065 0.4447104957203296 21.58663672369534 0.3582394118802513 20.97308269046432 0.3526603727741297 -19.9633255362985 -0.1517282072863839 -20.07221720636866 -0.06604333244753349 -19.63250515425505 0.6712456823300048 20.27214182428386 -0.2232742610814208 20.16325015490548 -0.3089591364643262 19.94132142720788 0.5996982122972813 -20.07221849283267 -0.06604289288495532 -19.74139811312834 0.7569295761315995 -19.63250644281464 0.671246122666006 19.94132023358347 0.5996979883382857 20.16324895809792 -0.3089593609044395 19.83242856390492 0.514014534373161 -20.08491412531244 0.3303765089605132 -20.19370065774289 0.4161425699128248 -19.6633247007291 1.067396790538526 19.49744157309759 0.9665899046439173 19.38868477230044 0.8808005122531655 19.12419723176296 1.626790324292759 -19.89337726924902 0.2264197868138914 -19.52255720459599 0.887465042970309 -19.36501226868057 0.8786847869640739 19.28749393754247 1.64325076531458 19.55080638375404 0.8970037444619536 19.12986222150346 1.651634634500309 -19.43161350839342 0.1546049060511749 -19.58914529491563 0.1635299724358948 -19.14541499575194 0.6986655174245279 19.35649336917293 2.380108223234186 19.1988756900863 2.388653849969002 19.05833933438694 2.89366112135713 -19.11172399431847 -0.2679135574191213 -18.82266012345276 0.2488447054826669 -18.6765281188492 0.2715418004460036 19.44731916119307 2.757970496121026 19.5796641290889 2.25159550389601 19.30116719062189 2.780587894495063 -16.76336612554423 -6.302297048279994 -16.45337271801021 -5.677936043669404 -16.62145283987993 -6.266699761521001 20.20919753439371 2.199007422694983 20.06728409754036 2.234604336452552 20.04109973271386 2.787767615572082 -16.59522296582594 -5.713583036091153 -16.45332255721194 -5.677988345851003 -16.76331323493317 -6.30235018920447 20.041108713796 2.787719521374515 20.06729093591975 2.234556179490449 19.8992081362568 2.823313794863152</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"72\" source=\"#ID1645\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1641\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1639\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1640\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 3 6 4 2 5 8 6 0 7 2 8 1 9 10 10 6 11 12 12 8 13 13 14 6 15 10 16 16 17 8 18 18 19 13 20 16 21 10 22 20 23 13 24 18 25 22 26 16 27 20 28 24 29 18 30 26 31 22 32 24 33 20 34 28 35 22 36 26 37 30 38 24 39 28 40 32 41 26 42 34 43 30 44 32 45 28 46 36 47 30 48 34 49 38 50 32 51 36 52 40 53 34 54 42 55 38 56 40 57 36 58 44 59 42 60 46 61 38 62 40 63 44 64 48 65 50 66 46 67 42 68 48 69 44 70 52 71</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1641\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1642\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 7 4 3 5 9 7 11 4 14 9 15 17 11 7 14 19 9 21 11 17 23 19 14 25 21 17 23 27 19 29 21 25 31 27 23 33 29 25 31 35 27 37 29 33 39 35 31 41 37 33 39 43 35 45 37 41 39 47 43 49 45 41 43 47 51 53 45 49</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1641\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1646\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1647\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1651\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"216\">0.006833886727690697 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.1739678084850311 -0.02579164505004883 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.003717809915542603 -0.1746081411838532 -0.01829707995057106 0.006833886727690697 -0.1739678084850311 -0.02579164505004883 -0.003804403357207775 -0.1739678084850311 -0.02579164505004883 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 0.003717809915542603 -0.3803884983062744 -0.05279655009508133 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.006833886727690697 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 -0.003804403357207775 -0.1748737990856171 -0.01519203558564186 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 0.003717809915542603 -0.3791069388389587 -0.06778623908758164 0.003717809915542603 -0.173326313495636 -0.03328638523817062 0.003717809915542603 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3806537091732025 -0.0496923103928566 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.003804403357207775 -0.3788411617279053 -0.07089100778102875 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.01132656075060368 -0.1746081411838532 -0.01829707995057106 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.003804403357207775 -0.1730610430240631 -0.03639103472232819 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.0144423209130764 -0.1739678084850311 -0.02579164505004883 -0.01132656075060368 -0.3803884983062744 -0.05279655009508133 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.3791069388389587 -0.06778623908758164 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.01132656075060368 -0.173326313495636 -0.03328638523817062 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.003804403357207775 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238 -0.0144423209130764 -0.379747748374939 -0.06029140576720238</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"72\" source=\"#ID1651\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1648\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1652\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"216\">0.9998049716621695 0.003265724132970699 -0.01947700401745051 0.6962336060517574 -0.1186870162805717 0.7079351368385252 0.9998049107848057 -0.003265929304979619 0.01948009436223057 -0.9998049107848057 0.003265929304979619 -0.01948009436223057 -0.6962336060517574 0.1186870162805717 -0.7079351368385252 -0.9998049716621695 -0.003265724132970699 0.01947700401745051 2.619829425874514e-011 0.9963636286193238 0.08520281429937872 -4.558107797513391e-018 0.9963634276886537 0.08520516395452349 -1.705110882004213e-005 0.9963684474014146 0.08514644286260223 1.705110882004213e-005 -0.9963684474014146 -0.08514644286260223 4.558107797513391e-018 -0.9963634276886537 -0.08520516395452349 -2.619829425874514e-011 -0.9963636286193238 -0.08520281429937872 0.7159194915021295 -0.1154425096916523 0.6885726603949834 -0.7159194915021295 0.1154425096916523 -0.6885726603949834 0.6962354344651125 0.118687547969271 -0.707933249503241 -0.6962354344651125 -0.118687547969271 0.707933249503241 8.864681295471469e-011 0.9963669954613724 0.08516343320508928 -8.864681295471469e-011 -0.9963669954613724 -0.08516343320508928 -2.176765036235961e-005 0.9963588062953948 0.08525918509923451 2.176765036235961e-005 -0.9963588062953948 -0.08525918509923451 6.96112966911225e-024 -0.9963651261403207 -0.08518530044193647 1.566060733247115e-011 -0.9963648425785238 -0.08518861704167753 -8.274059926537097e-006 -0.9963661779121036 -0.08517299715500586 8.274059926537097e-006 0.9963661779121036 0.08517299715500586 -1.566060733247115e-011 0.9963648425785238 0.08518861704167753 -6.96112966911225e-024 0.9963651261403207 0.08518530044193647 -2.471863667802537e-006 -0.1653464355874766 0.9862355480474259 2.471863667802537e-006 0.1653464355874766 -0.9862355480474259 -1.493160568799804e-005 -0.9963635068379099 -0.08520423709364172 3.03852199377559e-018 -0.9963647790799293 -0.08518935971706705 -3.03852199377559e-018 0.9963647790799293 0.08518935971706705 1.493160568799804e-005 0.9963635068379099 0.08520423709364172 0.7159269080944584 0.1154408704105128 -0.6885652240021801 -0.7159269080944584 -0.1154408704105128 0.6885652240021801 1.705156827135167e-005 0.9963684473730702 0.08514644319419053 -1.705156827135167e-005 -0.9963684473730702 -0.08514644319419053 1.131742397740694e-010 0.99636066224498 0.08523749603751304 -1.131742397740694e-010 -0.99636066224498 -0.08523749603751304 4.302158584745926e-011 -0.9963668826780806 -0.08516475269948359 -4.302158584745926e-011 0.9963668826780806 0.08516475269948359 -2.593857004538737e-006 -0.1653464337092199 0.98623554836201 2.593857004538737e-006 0.1653464337092199 -0.98623554836201 7.76297641547973e-011 -0.9963622345947807 -0.08521911448316716 -7.76297641547973e-011 0.9963622345947807 0.08521911448316716 -1.559712169649621e-006 0.1653464004706182 -0.9862355539367748 1.559712169649621e-006 -0.1653464004706182 0.9862355539367748 0 0.9963634276886574 0.08520516395448119 -0 -0.9963634276886574 -0.08520516395448119 -0.6962457922026375 -0.1186868026290101 0.7079231877271882 0.6962457922026375 0.1186868026290101 -0.7079231877271882 -1.627571474248932e-006 0.1653464000348263 -0.9862355540097275 1.627571474248932e-006 -0.1653464000348263 0.9862355540097275 2.176823690354987e-005 0.9963588063316035 0.08525918467594232 -2.176823690354987e-005 -0.9963588063316035 -0.08525918467594232 8.274282878190502e-006 -0.9963661779258559 -0.08517299699410662 -8.274282878190502e-006 0.9963661779258559 0.08517299699410662 1.493200802520914e-005 -0.9963635068130742 -0.08520423738399643 -1.493200802520914e-005 0.9963635068130742 0.08520423738399643 -0.7159325878051063 -0.1154387083727279 0.6885596810211297 -0.9998049490353376 -0.003265232502298848 0.01947824789738779 0.9998049490353376 0.003265232502298848 -0.01947824789738779 0.7159325878051063 0.1154387083727279 -0.6885596810211297 -0.6962484674923013 0.1186859181289345 -0.7079207048480173 0.6962484674923013 -0.1186859181289345 0.7079207048480173 -0.7159407679065135 0.1154380930984608 -0.6885512787811979 0.7159407679065135 -0.1154380930984608 0.6885512787811979 0 -0.9963651261403206 -0.08518530044193662 -0 0.9963651261403206 0.08518530044193662 0 -0.9963647790799293 -0.08518935971706705 -0 0.9963647790799293 0.08518935971706705 -0.999805002135868 0.003265123499963573 -0.01947554036804029 0.999805002135868 -0.003265123499963573 0.01947554036804029</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"72\" source=\"#ID1652\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1650\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1653\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"190\">-3.78385647797872 -0.5368291555505009 -1.739423843074547 -0.1799178917846214 -1.730899181380262 -0.2436144662387565 0.03804403357207777 -0.08565411079277659 -0.06833886727690695 -0.08565411079277659 -0.03717809915542601 -0.02648206485871089 -3.783857775120314 -0.5368237240548432 -3.792386478312588 -0.4731251089819596 -1.739424462173343 -0.1799148638363466 -3.784698469383545 -0.5599226070787846 -3.793227792223549 -0.4962241689968014 -1.740270053687452 -0.2030113945499858 0.03810357741858603 -0.08560710535715624 -0.03711833609852653 -0.02643488697022119 0.03810388751150448 -0.001919473357293152 0.03804403357207775 -0.08544425710045202 -0.03717809915542603 -0.1446184544504857 -0.06833886727690697 -0.08544425710045202 0.06833886727690698 -0.2181024719236225 -0.03804403357207774 -0.2181024719236225 0.03717809915542604 -0.1589278689549507 -3.517503574711176 -1.209469476160321 -1.637576351005736 -0.4899506188661591 -1.60714885377694 -0.5493620486491635 0.06833886727690695 -0.2180778897768378 0.03717809915542601 -0.2772523574934656 -0.03804403357207777 -0.2180778897768378 -3.784698522544912 -0.5599223776129466 -1.740270065876921 -0.2030113103218567 -1.731733911942559 -0.2667089309541987 0.1132058439606109 -0.02643471249641912 0.03798448923867157 -0.08560693088335417 0.03798417914344956 -0.001919298883491098 0.03811965220128281 -0.1691909148496111 -0.03710236454502762 -0.1446784631501363 0.03812004841057926 -0.08550448624906966 0.03724127751810454 -0.1589778357249278 -0.03798096162057727 -0.2181523549831544 -0.03798081115040063 -0.1344687724317231 -3.547781940744175 -1.150334764731821 -1.637511752180902 -0.4900819857319114 -3.517351359849356 -1.209742491236282 0.03729172604245902 -0.2771623376993361 -0.03793048631065454 -0.3016756919196557 -0.03793021458618022 -0.2179877188646143 -1.622869320241991 -0.5449599752267526 -3.502771782515439 -1.264521850803344 -3.533202545114582 -1.205112314602253 0.144423209130764 -0.08565411079277664 0.03804403357207775 -0.08565411079277664 0.1132656075060368 -0.02648206485871096 3.519634907072213 -1.200727860576276 1.578861299940099 -0.600021575930721 1.609289010118138 -0.5406106514737369 -1.592426711040016 -0.6043974690281462 -3.502736577798566 -1.264582249258277 -1.622854449132616 -0.5449874998115688 0.1131898722603979 -0.1446782402197432 0.03796841430849378 -0.169190691919218 0.03796801809625403 -0.08550426331867661 -0.03810710598162181 -0.2181524396493085 -0.1133287863275493 -0.1589779203910819 -0.03810725645291624 -0.1344688570978772 -0.03815758164282528 -0.3016758448048321 -0.1133792352029856 -0.2771624905845126 -0.03815785336931814 -0.2179878717497908 0.144423209130764 -0.08544425710045202 0.1132656075060368 -0.1446184544504857 1.734209016599792 -0.2025127584334603 3.787171555676506 -0.4957207377102524 1.725684806598952 -0.2662084117049909 3.489078071152921 -1.26036719741202 1.578795133082179 -0.6001312260728746 3.519507670502645 -1.200959597629099 1.620728963620361 -0.5537166486525158 3.561488423218359 -1.154458092708701 3.531057906240408 -1.213867268921171 1.65114379992236 -0.4943292451528582 3.561461871548045 -1.15450872025842 1.620716584679031 -0.5537389422427166 -0.03804403357207775 -0.2181024719236225 -0.144423209130764 -0.2181024719236225 -0.1132656075060368 -0.1589278689549507 -0.03804403357207775 -0.2180778897768378 -0.1132656075060368 -0.2772523574934656 -0.144423209130764 -0.2180778897768378 1.74548602931454 -0.1804100699957148 3.798444775978536 -0.473618476292029 1.736950304149554 -0.2441067676099537 3.787172504572145 -0.4957159662352187 3.778644209862403 -0.5594136565925029 1.725685475162031 -0.2662051984582139 3.798444758146664 -0.4736185545995512 3.789915866690295 -0.5373160698634416 1.736950303257186 -0.2441067517590004</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"95\" source=\"#ID1653\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1649\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1647\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1648\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 0 6 12 7 1 8 14 9 0 10 2 11 6 12 8 13 16 14 6 15 18 16 7 17 20 18 21 19 22 20 12 21 26 22 1 23 20 24 28 25 29 26 14 27 2 28 32 29 34 30 6 31 16 32 36 33 18 34 6 35 22 36 21 37 38 38 40 39 26 40 12 41 28 42 42 43 21 44 32 45 44 46 14 47 46 48 6 49 34 50 40 51 48 52 26 53 50 54 44 55 32 56 52 57 36 58 6 59 21 60 54 61 38 62 42 63 56 64 21 65 46 66 52 67 6 15 48 68 58 69 59 70 58 71 48 72 40 73 50 74 62 75 44 76 64 77 62 78 50 79 21 80 66 81 54 82 68 83 56 84 66 85 59 86 70 87 64 88 58 89 70 90 59 91 70 92 62 93 64 94</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1649\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1650\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 9 10 11 4 13 5 3 5 15 17 9 11 10 19 11 23 24 25 4 27 13 30 31 25 33 3 15 17 11 35 11 19 37 39 24 23 13 27 41 24 43 31 15 45 33 35 11 47 27 49 41 33 45 51 11 37 53 39 55 24 24 57 43 11 53 47 60 61 49 41 49 61 45 63 51 51 63 65 55 67 24 67 57 69 65 71 60 60 71 61 65 63 71</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1649\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1654\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1655\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1659\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 -0.02456400915980339 -0.4561379849910736 -0.04595430567860603 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.4704276621341705 -0.08532267063856125 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.4575298130512238 -0.04734582826495171 0.02089101634919643 -0.4707299172878265 -0.08853349089622498 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 -0.02456400915980339 -0.3715722858905792 -0.03708367422223091 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 -0.02456400915980339 -0.3512431085109711 -0.09392218291759491 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3504838645458221 -0.09219972044229507 0.02089101634919643 -0.3711450695991516 -0.03738582879304886 0.02089101634919643 -0.3711450695991516 -0.03738582879304886</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1659\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1656\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1660\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"144\">-0.0006593742600013772 -0.9466403948768872 0.3222910610192537 -0.002128573944177214 -0.9461004970595006 0.3238662048388656 -0.01833442080583775 -0.9398353448568709 0.3411354182307682 0.01833442080583775 0.9398353448568709 -0.3411354182307682 0.002128573944177214 0.9461004970595006 -0.3238662048388656 0.0006593742600013772 0.9466403948768872 -0.3222910610192537 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.01522418468072721 -0.9521791109850349 0.305160883477152 -0.01522418468072721 0.9521791109850349 -0.305160883477152 0.02689478553277844 -0.1144978889026558 0.9930593657722489 0.0210125908849934 -0.1114018274912128 0.9935532717755591 0.01363640320789622 -0.1075131122113731 0.9941101444056268 -0.01363640320789622 0.1075131122113731 -0.9941101444056268 -0.0210125908849934 0.1114018274912128 -0.9935532717755591 -0.02689478553277844 0.1144978889026558 -0.9930593657722489 0.03896795812420601 -0.07191116297063634 -0.996649528610655 -0.04549002213706894 -0.03999100863499665 -0.9981640031148813 0.01346607256353736 -0.06232216632515028 -0.9979652361050727 -0.01346607256353736 0.06232216632515028 0.9979652361050727 0.04549002213706894 0.03999100863499665 0.9981640031148813 -0.03896795812420601 0.07191116297063634 0.996649528610655 -1 0 0 1 -0 -0 -0.07063030013069079 -0.03039912455602881 -0.9970392439265747 0.07063030013069079 0.03039912455602881 0.9970392439265747 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0.007591344819378201 -0.1043209431433819 0.9945147119603152 -0.007591344819378201 0.1043209431433819 -0.9945147119603152 -0.02847752976912464 0.9412040415617694 0.3366362761884698 -0.01944613168993581 0.9390402948574675 0.3432567152967266 -0.01571426971207608 0.938110735387483 0.3459787708489812 0.01571426971207608 -0.938110735387483 -0.3459787708489812 0.01944613168993581 -0.9390402948574675 -0.3432567152967266 0.02847752976912464 -0.9412040415617694 -0.3366362761884698 1 0 0 -1 -0 -0 -0.006449925473110886 0.9357134779221441 0.3527019785828205 0.006449925473110886 -0.9357134779221441 -0.3527019785828205</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"48\" source=\"#ID1660\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1658\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1661\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"64\">0.5962178185185005 -3.153222447198755 -0.3076784558028441 -3.788853636176019 -0.3132526899849421 -3.129932065461746 9.122759699821472 -0.7230144093434017 9.408553242683411 -1.342410018046697 7.024862170219421 -1.477709011236827 0.2672582030481958 -3.587867602238631 -0.6416294861636938 -3.53482038775765 0.2714787355169092 -2.907390154659175 -1.685713180447373 -7.121351341609589 -2.564360875834735 -6.935206370602908 -1.290641924854021 -5.788995093053979 -3.77882935994712 4.538055591439239 -4.914503516199181 6.192265767175461 -2.972304828267201 4.869390074315862 7.431445717811585 -0.5834498077630997 6.603824181796629 1.760979977168799 8.447879157900552 3.168090786832034 8.812832047182409 2.511125951417969 -9.414598345756531 -1.39292692343394 -9.150596261024475 -0.7449076980352403 -7.422901391983032 -0.5882037063439688 -1.152089188980093 -7.16611278359242 -1.029338308238922 -5.831802174445271 -0.1220151584815939 -5.87725193204454 0.703505908083516 0.4640800664009921 -0.2056379982005104 0.4928598836778991 0.7158020717300879 1.413768038128628 -7.009677290916443 -1.450608934958776 -0.3694934503598784 0.5882635765330485 -0.3666451411266298 1.509896919897033 0.5424926673391237 1.514977305889284</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"32\" source=\"#ID1661\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1657\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1655\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1656\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 12 6 1 7 0 8 14 9 15 10 16 11 20 12 21 13 22 14 26 15 6 3 8 5 22 16 21 17 28 18 30 19 31 20 32 21 15 22 36 23 16 24 38 25 39 26 40 27 30 19 32 21 44 28 39 29 46 30 40 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1657\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1658\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 9 10 11 5 4 13 17 18 19 23 24 25 9 11 27 29 24 23 33 34 35 17 37 18 41 42 43 45 33 35 41 47 42</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1657\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1662\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1663\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1666\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"30\">0.5354120135307312 -1.17527174949646 -0.07834970951080322 0.562521755695343 -1.151860475540161 -0.07491381466388702 0.5547160506248474 -1.150959491729736 -0.06465452164411545 0.5547160506248474 -1.150959491729736 -0.06465452164411545 0.562521755695343 -1.151860475540161 -0.07491381466388702 0.5354120135307312 -1.17527174949646 -0.07834970951080322 0.5319939255714417 -1.170861482620239 -0.06753732264041901 0.5319939255714417 -1.170861482620239 -0.06753732264041901 0.4903435707092285 -1.175581336021423 -0.08379843086004257 0.4903435707092285 -1.175581336021423 -0.08379843086004257</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1666\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1664\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1667\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"30\">-0.2763363380720035 0.8551502778352715 -0.4385843483062444 -0.5409053186076919 0.695722716937777 -0.4726429280531225 -0.5430156278659727 0.6958912225936584 -0.4699674820776719 0.5430156278659727 -0.6958912225936584 0.4699674820776719 0.5409053186076919 -0.695722716937777 0.4726429280531225 0.2763363380720035 -0.8551502778352715 0.4385843483062444 -0.2920370970250125 0.849742049015813 -0.4389222984716212 0.2920370970250125 -0.849742049015813 0.4389222984716212 0.03799590451241128 0.9294106667549519 -0.3670859896024359 -0.03799590451241128 -0.9294106667549519 0.3670859896024359</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1667\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1665\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1663\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1664\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"6\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 8 0 6 7 5 9</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1665\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1668\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1669\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1672\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">0.5576969385147095 -1.15022337436676 -0.1041795313358307 0.5330261588096619 -1.171381711959839 -0.1073039323091507 0.5314076542854309 -1.169530868530273 -0.09279186278581619 0.5314076542854309 -1.169530868530273 -0.09279186278581619 0.5330261588096619 -1.171381711959839 -0.1073039323091507 0.5576969385147095 -1.15022337436676 -0.1041795313358307</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1672\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1670\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1673\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">0.6295919600173455 -0.7587678132981195 0.1669891295393434 0.6295919600173455 -0.7587678132981195 0.1669891295393434 0.6295919600173455 -0.7587678132981195 0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434 -0.6295919600173455 0.7587678132981195 -0.1669891295393434</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1673\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1671\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1669\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1670\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1671\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1674\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1675\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1679\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"4554\">0.4636488556861877 -1.158051013946533 -0.2167745679616928 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4636488556861877 -1.158051013946533 -0.2167745679616928 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4575008451938629 -1.148083329200745 -0.2200133800506592 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4596887826919556 -1.159823775291443 -0.2101091891527176 0.4529816210269928 -1.148996114730835 -0.2134019732475281 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4716063141822815 -1.168627738952637 -0.2061716616153717 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4745834171772003 -1.166073203086853 -0.2129503935575485 0.4745834171772003 -1.166073203086853 -0.2129503935575485 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4565021097660065 -1.137362957000732 -0.2226580083370209 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4596782922744751 -1.159295558929443 -0.2244207412004471 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4529748857021332 -1.148468255996704 -0.2277136892080307 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.4519048035144806 -1.136729955673218 -0.2303655296564102 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4532370567321777 -1.161874890327454 -0.2219637185335159 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4456385970115662 -1.149858355522156 -0.2162475734949112 0.4532370567321777 -1.161874890327454 -0.2219637185335159 0.4532419741153717 -1.162206411361694 -0.2128569483757019 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4519155025482178 -1.137250661849976 -0.2160528004169464 0.4667462110519409 -1.171931743621826 -0.2178431153297424 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4667535722255707 -1.172262191772461 -0.2087345123291016 0.4667462110519409 -1.171931743621826 -0.2178431153297424 0.4605698585510254 -1.126953125 -0.2246965765953064 0.4605698585510254 -1.126953125 -0.2246965765953064 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4839742183685303 -1.178971529006958 -0.21320441365242 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839824140071869 -1.179319143295288 -0.204097718000412 0.4839742183685303 -1.178971529006958 -0.21320441365242 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4868232607841492 -1.174901247024536 -0.2017531841993332 0.4885714054107666 -1.171796083450317 -0.2086967974901199 0.4885714054107666 -1.171796083450317 -0.2086967974901199 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4456321895122528 -1.149508953094482 -0.2253543585538864 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.4563482701778412 -1.12540078163147 -0.2323531806468964 0.5035322308540344 -1.182219982147217 -0.2082613259553909 0.5035322308540344 -1.182219982147217 -0.2082613259553909 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4715907573699951 -1.168091416358948 -0.2204813957214356 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.444444477558136 -1.136224746704102 -0.2280095666646957 0.4444524049758911 -1.136436820030212 -0.2188984304666519 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.449504554271698 -1.123409628868103 -0.2299134731292725 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4563634991645813 -1.125918507575989 -0.2180421203374863 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4692953824996948 -1.117928266525269 -0.2261810004711151 0.4692953824996948 -1.117928266525269 -0.2261810004711151 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.5035384297370911 -1.182548999786377 -0.1991544812917709 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.504100501537323 -1.17770791053772 -0.1971026062965393 0.5044348835945129 -1.174407243728638 -0.2041947245597839 0.5044348835945129 -1.174407243728638 -0.2041947245597839 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4868146181106567 -1.174320578575134 -0.2160824835300446 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4495072960853577 -1.123745203018189 -0.2208061963319778 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.46586674451828 -1.115582585334778 -0.2337368279695511 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.4603067934513092 -1.112328886985779 -0.2311340421438217 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5234974026679993 -1.181341052055359 -0.2032404690980911 0.5234974026679993 -1.181341052055359 -0.2032404690980911 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4658845067024231 -1.11610746383667 -0.2194275259971619 0.4603143930435181 -1.112659096717835 -0.2220267653465271 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.5040837526321411 -1.177179932594299 -0.2114123702049255 0.481840968132019 -1.111177086830139 -0.2272232472896576 0.481840968132019 -1.111177086830139 -0.2272232472896576 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5206239223480225 -1.173695206642151 -0.1996323019266129 0.5206239223480225 -1.173695206642151 -0.1996323019266129 0.5217143297195435 -1.176401019096375 -0.2066749334335327 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5235049724578857 -1.18168032169342 -0.1941337287425995 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.5217294692993164 -1.176920294761658 -0.1923646479845047 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.4795440137386322 -1.108773589134216 -0.2203262150287628 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.479534924030304 -1.1082444190979 -0.2346385270357132 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.4758014678955078 -1.104030966758728 -0.2318083941936493 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.475804328918457 -1.104360103607178 -0.2226996719837189 0.5355482697486877 -1.169721484184265 -0.1951994001865387 0.5355482697486877 -1.169721484184265 -0.1951994001865387 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5419154763221741 -1.176581740379334 -0.1983370929956436 0.5419154763221741 -1.176581740379334 -0.1983370929956436 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.49695885181427 -1.107329487800598 -0.2279713302850723 0.49695885181427 -1.107329487800598 -0.2279713302850723 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4944649934768677 -1.099338173866272 -0.232122465968132 0.4944649934768677 -1.099338173866272 -0.232122465968132 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5379683375358582 -1.172071099281311 -0.2020784169435501 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5419276356697083 -1.176777482032776 -0.1892715692520142 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.5379828214645386 -1.172596454620361 -0.187767818570137 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960175752639771 -1.104609847068787 -0.2209094017744064 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4960068464279175 -1.10407280921936 -0.2352218180894852 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.4944707751274109 -1.09966766834259 -0.2230148762464523 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5477467775344849 -1.16288423538208 -0.1910746395587921 0.5477467775344849 -1.16288423538208 -0.1910746395587921 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5569940805435181 -1.168012976646423 -0.1938970983028412 0.5569940805435181 -1.168012976646423 -0.1938970983028412 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5131818056106567 -1.106769561767578 -0.2286092787981033 0.5131818056106567 -1.106769561767578 -0.2286092787981033 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5144700407981873 -1.09870171546936 -0.2323014289140701 0.5144700407981873 -1.09870171546936 -0.2323014289140701 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512766838073731 -1.165149688720703 -0.1835067719221115 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5512650609016419 -1.164633512496948 -0.1978181600570679 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5568441152572632 -1.168341279029846 -0.1847955882549286 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136825442314148 -1.104008436203003 -0.2213738858699799 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5136695504188538 -1.103492975234985 -0.2356849163770676 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5144815444946289 -1.099033117294312 -0.2231947630643845 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5560302138328552 -1.153861403465271 -0.1874096095561981 0.5560302138328552 -1.153861403465271 -0.1874096095561981 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5289202332496643 -1.109543561935425 -0.2293297797441483 0.5289202332496643 -1.109543561935425 -0.2293297797441483 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5338693857192993 -1.102164149284363 -0.232584223151207 0.5338693857192993 -1.102164149284363 -0.232584223151207 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5672547221183777 -1.157209038734436 -0.1808716207742691 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5603071451187134 -1.155324339866638 -0.1797450929880142 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5602976083755493 -1.154800772666931 -0.194056898355484 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5672430396080017 -1.156875967979431 -0.1899788528680801 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5308105945587158 -1.107050180435181 -0.2219262570142746 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5309363007545471 -1.106523990631104 -0.2362219989299774 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5338764190673828 -1.102510809898377 -0.2234764397144318 0.5716711282730103 -1.144144535064697 -0.1867542266845703 0.5716711282730103 -1.144144535064697 -0.1867542266845703 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5426270365715027 -1.115358591079712 -0.2303158938884735 0.5426270365715027 -1.115358591079712 -0.2303158938884735 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5507592558860779 -1.10938823223114 -0.233196958899498 0.5507592558860779 -1.10938823223114 -0.233196958899498 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.5716816782951355 -1.144480586051941 -0.1776472330093384 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.56419837474823 -1.144102811813355 -0.1765961199998856 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5595876574516296 -1.143552899360657 -0.1843068599700928 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5641881823539734 -1.143566012382507 -0.1909087747335434 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457295775413513 -1.113407135009766 -0.2227691560983658 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.5457199215888977 -1.112879157066345 -0.2370815873146057 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.550873875617981 -1.10973060131073 -0.2240839153528214 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5698375701904297 -1.131062269210815 -0.1842824816703796 0.5698375701904297 -1.131062269210815 -0.1842824816703796 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5580675601959229 -1.132967352867127 -0.1818155646324158 0.5580675601959229 -1.132967352867127 -0.1818155646324158 0.5529654026031494 -1.12365186214447 -0.2317251414060593 0.5529654026031494 -1.12365186214447 -0.2317251414060593 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5634716749191284 -1.119650483131409 -0.234331026673317 0.5634716749191284 -1.119650483131409 -0.234331026673317 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5625476241111755 -1.132036447525024 -0.1884247362613678 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5698460340499878 -1.131407976150513 -0.1751759946346283 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5625583529472351 -1.132564783096314 -0.1741125583648682 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569769144058228 -1.122439742088318 -0.2240769267082214 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5569609999656677 -1.121922850608826 -0.2383863031864166 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5634797215461731 -1.119981169700623 -0.2252235859632492 0.5516188144683838 -1.123155951499939 -0.1799236834049225 0.5516188144683838 -1.123155951499939 -0.1799236834049225 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5619267821311951 -1.118939995765686 -0.1825531870126724 0.5619267821311951 -1.118939995765686 -0.1825531870126724 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5707834362983704 -1.131942868232727 -0.2361352443695068 0.5707834362983704 -1.131942868232727 -0.2361352443695068 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5555413961410523 -1.121339678764343 -0.1865942627191544 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5619335770606995 -1.119266986846924 -0.1734468340873718 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5555522441864014 -1.121869206428528 -0.1722830086946487 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5634431838989258 -1.133281946182251 -0.2259694784879684 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5589181184768677 -1.133581161499023 -0.2336752116680145 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.5634328126907349 -1.132750868797302 -0.2402807474136353 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.570786714553833 -1.13227653503418 -0.2270277142524719 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5408812165260315 -1.115089893341065 -0.1785658150911331 0.5408812165260315 -1.115089893341065 -0.1785658150911331 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5485350489616394 -1.108938336372376 -0.1814902722835541 0.5485350489616394 -1.108938336372376 -0.1814902722835541 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.5719619989395142 -1.145043611526489 -0.2386840134859085 0.5719619989395142 -1.145043611526489 -0.2386840134859085 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438703894615173 -1.113058686256409 -0.1710323542356491 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5438581705093384 -1.112543821334839 -0.1853435784578323 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5487204790115356 -1.109277606010437 -0.1723732203245163 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5645060539245606 -1.144835710525513 -0.2285225987434387 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.5599107146263123 -1.144190430641174 -0.2362313121557236 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.564497172832489 -1.144309282302856 -0.2428344637155533 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5719673037528992 -1.145382046699524 -0.2295773774385452 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5268968939781189 -1.109560012817383 -0.1776151955127716 0.5268968939781189 -1.109560012817383 -0.1776151955127716 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5314382910728455 -1.10209047794342 -0.1809175610542297 0.5314382910728455 -1.10209047794342 -0.1809175610542297 0.5558396577835083 -1.154414772987366 -0.2393956333398819 0.5558396577835083 -1.154414772987366 -0.2393956333398819 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5667877793312073 -1.157662510871887 -0.2419774681329727 0.5667877793312073 -1.157662510871887 -0.2419774681329727 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5315085649490356 -1.102419972419739 -0.1718031615018845 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286504030227661 -1.107026219367981 -0.170228436589241 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5286374688148499 -1.106508851051331 -0.1845388114452362 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600571632385254 -1.155977010726929 -0.2317383885383606 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5600475668907166 -1.155441522598267 -0.2460501044988632 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5669075846672058 -1.157998919487 -0.2328782975673676 0.5119343400001526 -1.099033117294312 -0.180652067065239 0.5119343400001526 -1.099033117294312 -0.180652067065239 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5110345482826233 -1.107124924659729 -0.1769119054079056 0.5110345482826233 -1.107124924659729 -0.1769119054079056 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5473005175590515 -1.163247227668762 -0.2431076467037201 0.5473005175590515 -1.163247227668762 -0.2431076467037201 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5560925006866455 -1.168561935424805 -0.2459687143564224 0.5560925006866455 -1.168561935424805 -0.2459687143564224 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5119386315345764 -1.099373817443848 -0.1715433150529862 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113849639892578 -1.104366540908814 -0.1696944981813431 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5113736987113953 -1.103841066360474 -0.1840057075023651 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505386590957642 -1.165587902069092 -0.2355601489543915 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5505232214927673 -1.165071606636047 -0.2498695403337479 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.5560998320579529 -1.168896317481995 -0.2368612885475159 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4919718503952026 -1.100103139877319 -0.1804688721895218 0.4919718503952026 -1.100103139877319 -0.1804688721895218 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.494856595993042 -1.108041167259216 -0.1762722134590149 0.494856595993042 -1.108041167259216 -0.1762722134590149 0.5345627069473267 -1.169810295104981 -0.2472778558731079 0.5345627069473267 -1.169810295104981 -0.2472778558731079 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5405961871147156 -1.176667809486389 -0.2504985928535461 0.5405961871147156 -1.176667809486389 -0.2504985928535461 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4937547445297241 -1.10480523109436 -0.1835401058197022 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4919822216033936 -1.100426554679871 -0.1713619977235794 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.4937659502029419 -1.105334162712097 -0.1692286282777786 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368690490722656 -1.172746777534485 -0.2398627698421478 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5368561148643494 -1.172212600708008 -0.2541731894016266 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.5406056046485901 -1.177007913589478 -0.2413919121026993 0.4799317121505737 -1.112206339836121 -0.1754997223615646 0.4799317121505737 -1.112206339836121 -0.1754997223615646 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.5194347500801086 -1.173466086387634 -0.251732736825943 0.5194347500801086 -1.173466086387634 -0.251732736825943 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5219248533248901 -1.18116819858551 -0.2553885877132416 0.5219248533248901 -1.18116819858551 -0.2553885877132416 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4775000214576721 -1.109325051307678 -0.1829312145709992 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735546708106995 -1.105194449424744 -0.1801275312900543 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.4735612869262695 -1.105524778366089 -0.1710190176963806 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.47751384973526 -1.109852910041809 -0.1686213463544846 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203900933265686 -1.176714658737183 -0.244483545422554 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5203792452812195 -1.176188230514526 -0.2587940096855164 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.5219318866729736 -1.181502461433411 -0.2462812513113022 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4677366316318512 -1.119231224060059 -0.1744198352098465 0.4677366316318512 -1.119231224060059 -0.1744198352098465 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.5032081604003906 -1.173833608627319 -0.2562981843948364 0.5032081604003906 -1.173833608627319 -0.2562981843948364 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5019099116325378 -1.181609272956848 -0.2604122757911682 0.5019099116325378 -1.181609272956848 -0.2604122757911682 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642192721366882 -1.117483973503113 -0.1676764637231827 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4642106890678406 -1.116967916488648 -0.1819886863231659 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584823548793793 -1.113821625709534 -0.1794037222862244 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.4584915041923523 -1.114161968231201 -0.1702972203493118 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027221441268921 -1.177115321159363 -0.2492236196994782 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5027095675468445 -1.176589250564575 -0.2635357081890106 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.5019184350967407 -1.181949973106384 -0.2513056397438049 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4594584703445435 -1.128440141677856 -0.172881230711937 0.4594584703445435 -1.128440141677856 -0.172881230711937 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4870093464851379 -1.170987844467163 -0.2608384788036346 0.4870093464851379 -1.170987844467163 -0.2608384788036346 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4819841086864471 -1.178058624267578 -0.2653992772102356 0.4819841086864471 -1.178058624267578 -0.2653992772102356 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4482463002204895 -1.125470519065857 -0.1690117120742798 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.4551927447319031 -1.127498388290405 -0.1662345379590988 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.45517897605896 -1.126981258392334 -0.1805453598499298 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4482416808605194 -1.125142574310303 -0.1781193464994431 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4851054549217224 -1.173998951911926 -0.2539343237876892 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4850927591323853 -1.173464417457581 -0.2682447135448456 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4819936156272888 -1.178386688232422 -0.2562922239303589 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4729524850845337 -1.164982080459595 -0.2651008367538452 0.4729524850845337 -1.164982080459595 -0.2651008367538452 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4647094905376434 -1.170600295066834 -0.2700395882129669 0.4647094905376434 -1.170600295066834 -0.2700395882129669 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441391527652741 -1.13835883140564 -0.1761013567447662 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4441468119621277 -1.138684988021851 -0.1669941544532776 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4516375362873077 -1.139187812805176 -0.1641423404216766 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4562393724918366 -1.139096260070801 -0.1707404553890228 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4516229629516602 -1.13864278793335 -0.1784523725509644 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698156416416168 -1.167439103126526 -0.2583377659320831 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.4698031842708588 -1.166857838630676 -0.2726578712463379 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.464711606502533 -1.170930027961731 -0.2609305679798126 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.4627623558044434 -1.156416177749634 -0.2688753008842468 0.4627623558044434 -1.156416177749634 -0.2688753008842468 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4538107514381409 -1.150636672973633 -0.1756689697504044 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465447962284088 -1.151907324790955 -0.1733024418354034 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4465515911579132 -1.152243614196777 -0.1641946583986282 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.4538223147392273 -1.151174068450928 -0.161357507109642 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.458286464214325 -1.150195598602295 -0.1679671555757523 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587351679801941 -1.15811288356781 -0.2622174620628357 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.4587201178073883 -1.157596707344055 -0.276527464389801 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.452172189950943 -1.160047650337219 -0.2740823924541473 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4521814584732056 -1.160376310348511 -0.2649756968021393 0.4649145305156708 -1.160146474838257 -0.1646309047937393 0.4649145305156708 -1.160146474838257 -0.1646309047937393 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4546861052513123 -1.164170503616333 -0.1697998344898224 0.4546861052513123 -1.164170503616333 -0.1697998344898224 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4610114991664887 -1.161477565765381 -0.1722681224346161 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4546918272972107 -1.164554119110107 -0.1606736481189728 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4610307216644287 -1.161994576454163 -0.1579592078924179 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4524610042572022 -1.147049307823181 -0.265501856803894 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4569849073886871 -1.146247386932373 -0.2721054553985596 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4524465799331665 -1.146515130996704 -0.2798124849796295 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450873732566834 -1.147512912750244 -0.2774555683135986 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4450936615467072 -1.14785373210907 -0.2683486938476563 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.47580885887146 -1.168325185775757 -0.1607684940099716 0.47580885887146 -1.168325185775757 -0.1607684940099716 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4680851995944977 -1.174239277839661 -0.1656459718942642 0.4680851995944977 -1.174239277839661 -0.1656459718942642 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728728830814362 -1.170896053314209 -0.1539831757545471 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.4728640615940094 -1.170367956161499 -0.1682961583137512 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.468095064163208 -1.174571752548218 -0.1565399318933487 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4516086578369141 -1.13529372215271 -0.2681268751621246 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.4561848938465118 -1.135454535484314 -0.2747304737567902 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.451594889163971 -1.134768605232239 -0.2824380397796631 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441474676132202 -1.134204626083374 -0.2800808846950531 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4441521465778351 -1.134543895721436 -0.27097287774086 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4899028539657593 -1.173924684524536 -0.1565033048391342 0.4899028539657593 -1.173924684524536 -0.1565033048391342 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4854431748390198 -1.181017994880676 -0.1610624641180039 0.4854431748390198 -1.181017994880676 -0.1610624641180039 0.4604437947273254 -1.125065088272095 -0.276747465133667 0.4604437947273254 -1.125065088272095 -0.276747465133667 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4854504466056824 -1.181485295295715 -0.1518881171941757 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4882078766822815 -1.17699670791626 -0.1495714485645294 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4881961941719055 -1.176476716995239 -0.1638818383216858 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562591016292572 -1.124009966850281 -0.270089328289032 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4562468230724335 -1.12347674369812 -0.2844008803367615 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494380652904511 -1.121443629264832 -0.2819552719593048 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.4494491219520569 -1.121778130531311 -0.2728487849235535 0.5050500631332398 -1.184240102767944 -0.1560435742139816 0.5050500631332398 -1.184240102767944 -0.1560435742139816 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5058070421218872 -1.176416993141174 -0.1519948393106461 0.5058070421218872 -1.176416993141174 -0.1519948393106461 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.469342440366745 -1.116126656532288 -0.2782136499881744 0.469342440366745 -1.116126656532288 -0.2782136499881744 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5050584077835083 -1.184572458267212 -0.1469368040561676 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.5055243968963623 -1.179722428321838 -0.1448945701122284 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.50551438331604 -1.179186820983887 -0.1592062115669251 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659595489501953 -1.114277601242065 -0.2714530229568481 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4659509360790253 -1.113749265670776 -0.2857654988765717 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.4604469537734985 -1.110441207885742 -0.283152312040329 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.460455060005188 -1.110772967338562 -0.2740455269813538 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5249907970428467 -1.183200836181641 -0.151024729013443 0.5249907970428467 -1.183200836181641 -0.151024729013443 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.521974503993988 -1.175574421882629 -0.1474335044622421 0.521974503993988 -1.175574421882629 -0.1474335044622421 0.4820057153701782 -1.109466791152954 -0.2792381644248962 0.4820057153701782 -1.109466791152954 -0.2792381644248962 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5231142044067383 -1.178280115127564 -0.1544691920280457 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5250005125999451 -1.183531522750855 -0.1419177949428558 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.5231336951255798 -1.1788010597229 -0.1401598304510117 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797572195529938 -1.10704493522644 -0.2723360061645508 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.4797511100769043 -1.106509208679199 -0.2866484820842743 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.476090133190155 -1.102276086807251 -0.2838080823421478 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.4761004447937012 -1.102614283561707 -0.2747008502483368 0.5368162989616394 -1.171478390693665 -0.1430082470178604 0.5368162989616394 -1.171478390693665 -0.1430082470178604 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5433157086372376 -1.178148150444031 -0.1461730748414993 0.5433157086372376 -1.178148150444031 -0.1461730748414993 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.4971978068351746 -1.105741739273071 -0.2799796760082245 0.4971978068351746 -1.105741739273071 -0.2799796760082245 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4948467612266541 -1.097743153572083 -0.2841138243675232 0.4948467612266541 -1.097743153572083 -0.2841138243675232 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5392878651618958 -1.173813343048096 -0.1498828381299973 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.5433230996131897 -1.178486704826355 -0.1370655298233032 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.539481520652771 -1.174338698387146 -0.1355538070201874 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4963105916976929 -1.10300600528717 -0.2729126513004303 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4962984323501587 -1.102486610412598 -0.2872235774993897 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.4948562383651733 -1.098068356513977 -0.2750063836574554 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5488884449005127 -1.164548993110657 -0.1389009952545166 0.5488884449005127 -1.164548993110657 -0.1389009952545166 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5582281947135925 -1.169593691825867 -0.1417096853256226 0.5582281947135925 -1.169593691825867 -0.1417096853256226 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5134349465370178 -1.10530686378479 -0.2806179523468018 0.5134349465370178 -1.10530686378479 -0.2806179523468018 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5148717761039734 -1.097256898880005 -0.2842935025691986 0.5148717761039734 -1.097256898880005 -0.2842935025691986 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524512529373169 -1.166791200637817 -0.1313283145427704 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5524387359619141 -1.166257262229919 -0.1456393897533417 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5582372546195984 -1.16992723941803 -0.1326038688421249 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139906406402588 -1.102560520172119 -0.2733771502971649 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5139771699905396 -1.102036476135254 -0.2876873016357422 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5148813128471375 -1.097595691680908 -0.2751861810684204 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5570006370544434 -1.155444264411926 -0.1352554857730866 0.5570006370544434 -1.155444264411926 -0.1352554857730866 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5291153788566589 -1.108209729194641 -0.2813448011875153 0.5291153788566589 -1.108209729194641 -0.2813448011875153 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5342056155204773 -1.100881338119507 -0.2845841646194458 0.5342056155204773 -1.100881338119507 -0.2845841646194458 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5682803392410278 -1.158712148666382 -0.1287105530500412 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5613025426864624 -1.156885504722595 -0.1275897473096848 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5612886548042297 -1.156365513801575 -0.1419006437063217 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5682699084281921 -1.15838611125946 -0.1378176957368851 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310599803924561 -1.105741739273071 -0.273936003446579 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5310500264167786 -1.105209231376648 -0.2882464826107025 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5342116951942444 -1.101215124130249 -0.2754762172698975 0.5724602341651917 -1.145607948303223 -0.1346215158700943 0.5724602341651917 -1.145607948303223 -0.1346215158700943 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5427180528640747 -1.114132642745972 -0.2823444902896881 0.5427180528640747 -1.114132642745972 -0.2823444902896881 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5509542226791382 -1.108233690261841 -0.2852115333080292 0.5509542226791382 -1.108233690261841 -0.2852115333080292 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5724637508392334 -1.145937204360962 -0.1255134046077728 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5649758577346802 -1.145618557929993 -0.1244647353887558 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5603580474853516 -1.145116925239563 -0.1321751922369003 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5649645328521729 -1.145099520683289 -0.1387756913900375 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5460454821586609 -1.112209320068359 -0.2747933268547058 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5458482503890991 -1.111680150032044 -0.2891052663326263 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5509812235832214 -1.108572602272034 -0.276105672121048 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5703842043876648 -1.132545948028565 -0.1321807950735092 0.5703842043876648 -1.132545948028565 -0.1321807950735092 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5586453080177307 -1.134552240371704 -0.12970831990242 0.5586453080177307 -1.134552240371704 -0.12970831990242 0.552798330783844 -1.122508764266968 -0.2837682664394379 0.552798330783844 -1.122508764266968 -0.2837682664394379 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5634849667549133 -1.118594884872437 -0.2863717079162598 0.5634849667549133 -1.118594884872437 -0.2863717079162598 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5631125569343567 -1.13357424736023 -0.1363185197114945 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5703892707824707 -1.132877707481384 -0.1230728179216385 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5631234645843506 -1.134097933769226 -0.1220070570707321 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569408535957336 -1.121331214904785 -0.276121199131012 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5569320321083069 -1.120812058448792 -0.2904322147369385 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5634939670562744 -1.118927836418152 -0.2772644460201263 0.5520180463790894 -1.124776363372803 -0.1278393864631653 0.5520180463790894 -1.124776363372803 -0.1278393864631653 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5622471570968628 -1.120481729507446 -0.1304780244827271 0.5622471570968628 -1.120481729507446 -0.1304780244827271 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5705611705780029 -1.130938291549683 -0.2882024645805359 0.5705611705780029 -1.130938291549683 -0.2882024645805359 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5559108257293701 -1.122938990592957 -0.1345144063234329 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5622545480728149 -1.120813846588135 -0.1213707774877548 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5559203624725342 -1.123458623886108 -0.1202023923397064 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5632123947143555 -1.132220149040222 -0.278039425611496 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5586779713630676 -1.132392883300781 -0.2857440114021301 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5631986856460571 -1.131691694259644 -0.2923508286476135 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5705723166465759 -1.131275296211243 -0.2790963351726532 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5411297678947449 -1.116797208786011 -0.1264989823102951 0.5411297678947449 -1.116797208786011 -0.1264989823102951 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.548848032951355 -1.110594391822815 -0.1294268220663071 0.548848032951355 -1.110594391822815 -0.1294268220663071 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5715000629425049 -1.144049525260925 -0.2907814383506775 0.5715000629425049 -1.144049525260925 -0.2907814383506775 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440778136253357 -1.114746689796448 -0.1189718097448349 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.5440651178359985 -1.114232659339905 -0.133282482624054 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.548856258392334 -1.110928535461426 -0.1203199476003647 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.5640606284141541 -1.143772840499878 -0.2806191444396973 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.559468150138855 -1.143095850944519 -0.2883262038230896 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5640477538108826 -1.143256664276123 -0.2949293553829193 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.5715066194534302 -1.144394755363464 -0.2816746830940247 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5270463824272156 -1.111389398574829 -0.1255616396665573 0.5270463824272156 -1.111389398574829 -0.1255616396665573 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5314984917640686 -1.103869557380676 -0.1288754492998123 0.5314984917640686 -1.103869557380676 -0.1288754492998123 0.5552088022232056 -1.153280735015869 -0.2915137708187103 0.5552088022232056 -1.153280735015869 -0.2915137708187103 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.53150475025177 -1.104203701019287 -0.1197679787874222 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287495255470276 -1.108836889266968 -0.1181817799806595 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5287390351295471 -1.108318209648132 -0.1324930936098099 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5594058632850647 -1.154873967170715 -0.2838602662086487 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5593866109848023 -1.154348969459534 -0.2981691956520081 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662022829055786 -1.156630158424377 -0.2941092550754547 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5662086009979248 -1.156962871551514 -0.2850025594234467 0.5118945837020874 -1.100982189178467 -0.1286222636699677 0.5118945837020874 -1.100982189178467 -0.1286222636699677 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5111450552940369 -1.109081149101257 -0.1248650401830673 0.5111450552940369 -1.109081149101257 -0.1248650401830673 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5463075637817383 -1.162050008773804 -0.2952521145343781 0.5463075637817383 -1.162050008773804 -0.2952521145343781 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5551921725273132 -1.167435169219971 -0.2981182038784027 0.5551921725273132 -1.167435169219971 -0.2981182038784027 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.51190185546875 -1.101314783096314 -0.1195148378610611 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114362239837647 -1.106311917304993 -0.1176531910896301 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5114235281944275 -1.105776786804199 -0.1319637149572372 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496987104415894 -1.164416313171387 -0.2877016961574554 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5496861338615418 -1.163896441459656 -0.3020132780075073 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.5552014112472534 -1.167765736579895 -0.2890119254589081 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4919535517692566 -1.102204203605652 -0.1284358650445938 0.4919535517692566 -1.102204203605652 -0.1284358650445938 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.4949806928634644 -1.110114693641663 -0.1242219507694244 0.4949806928634644 -1.110114693641663 -0.1242219507694244 0.5336343050003052 -1.168520212173462 -0.2994299232959747 0.5336343050003052 -1.168520212173462 -0.2994299232959747 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5396984219551086 -1.17541229724884 -0.3026644587516785 0.5396984219551086 -1.17541229724884 -0.3026644587516785 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4938215017318726 -1.106893062591553 -0.1314953565597534 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.4919651746749878 -1.102536797523499 -0.1193300932645798 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.493838906288147 -1.107423186302185 -0.1171858906745911 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358640551567078 -1.171457409858704 -0.2920199036598206 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5358819365501404 -1.170934677124023 -0.3063318729400635 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.5395479202270508 -1.175749063491821 -0.2935588359832764 0.480143129825592 -1.114396691322327 -0.1234430968761444 0.480143129825592 -1.114396691322327 -0.1234430968761444 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.5184391140937805 -1.17204761505127 -0.3038930296897888 0.5184391140937805 -1.17204761505127 -0.3038930296897888 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5207850933074951 -1.179760098457336 -0.3075655698776245 0.5207850933074951 -1.179760098457336 -0.3075655698776245 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4776590764522553 -1.111545920372009 -0.1308792382478714 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736374318599701 -1.107444047927856 -0.1280848979949951 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4736417531967163 -1.10777223110199 -0.1189769953489304 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.4776709377765656 -1.112071990966797 -0.1165682524442673 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193362832069397 -1.17529296875 -0.2966474890708923 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5193267464637756 -1.174770593643189 -0.3109596371650696 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.5207899212837219 -1.1800936460495 -0.2984580397605896 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4683116972446442 -1.121699452400208 -0.1222783178091049 0.4683116972446442 -1.121699452400208 -0.1222783178091049 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646957218647003 -1.12004280090332 -0.1155472099781036 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4646852016448975 -1.119511127471924 -0.1298586428165436 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588056802749634 -1.116490483283997 -0.1272963136434555 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4588105976581574 -1.116829514503479 -0.1181880831718445 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.461048811674118 -1.131386756896973 -0.1205792278051376 0.461048811674118 -1.131386756896973 -0.1205792278051376 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4495986700057983 -1.128822922706604 -0.1167404353618622 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.4566911160945892 -1.130599975585938 -0.1139440834522247 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.456680029630661 -1.13007378578186 -0.1282552629709244 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4495896100997925 -1.128493666648865 -0.1258471161127091 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462484419345856 -1.14147675037384 -0.1237363666296005 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4462563693523407 -1.141944885253906 -0.1146334111690521 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4537585973739624 -1.142169833183289 -0.111774668097496 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.4583719670772553 -1.141882181167603 -0.118369847536087 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.453749030828476 -1.141634464263916 -0.1260858625173569 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4607804119586945 -1.152724027633667 -0.1155533939599991 0.4607804119586945 -1.152724027633667 -0.1155533939599991 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4563562572002411 -1.153294563293457 -0.1232493370771408 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491765797138214 -1.154695987701416 -0.1208933293819428 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4491865038871765 -1.15510094165802 -0.1117659956216812 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4563663601875305 -1.15381646156311 -0.1089370846748352 0.4680401384830475 -1.162484645843506 -0.1121409386396408 0.4680401384830475 -1.162484645843506 -0.1121409386396408 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4580906927585602 -1.166784763336182 -0.1172759383916855 0.4580906927585602 -1.166784763336182 -0.1172759383916855 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4642442166805267 -1.16391921043396 -0.1197657734155655 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4580981731414795 -1.167123079299927 -0.1081688851118088 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4642550945281982 -1.164450764656067 -0.1054545566439629 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4794342219829559 -1.170353889465332 -0.1082139611244202 0.4794342219829559 -1.170353889465332 -0.1082139611244202 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4721178412437439 -1.176489114761353 -0.1130447238683701 0.4721178412437439 -1.176489114761353 -0.1130447238683701 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766568839550018 -1.173004150390625 -0.1014127135276794 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4766443371772766 -1.172483682632446 -0.115723729133606 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4721249043941498 -1.176824927330017 -0.1039385795593262 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4938605427742004 -1.175561666488648 -0.1039053350687027 0.4938605427742004 -1.175561666488648 -0.1039053350687027 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4898883104324341 -1.182911038398743 -0.1083405017852783 0.4898883104324341 -1.182911038398743 -0.1083405017852783 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4898937344551086 -1.183247447013855 -0.09923272579908371 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923516511917114 -1.178682565689087 -0.09695214778184891 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.4923418760299683 -1.178149819374085 -0.1112642288208008 0.5096529722213745 -1.185441017150879 -0.1033653542399406 0.5096529722213745 -1.185441017150879 -0.1033653542399406 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098979473114014 -1.177605509757996 -0.0993800014257431 0.5098979473114014 -1.177605509757996 -0.0993800014257431 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.509662926197052 -1.185773015022278 -0.09425877034664154 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5098119974136353 -1.180970788002014 -0.09214392304420471 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5097987651824951 -1.180387616157532 -0.1065660864114761 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5294449925422669 -1.183813214302063 -0.09840545058250427 0.5294449925422669 -1.183813214302063 -0.09840545058250427 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5259718894958496 -1.176306962966919 -0.0948249101638794 0.5259718894958496 -1.176306962966919 -0.0948249101638794 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5273072123527527 -1.178970813751221 -0.1018382459878922 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5294492244720459 -1.184173822402954 -0.08925329148769379 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5273199081420898 -1.179497361183167 -0.08752736449241638 0.5405214428901672 -1.171802759170532 -0.09043388068675995 0.5405214428901672 -1.171802759170532 -0.09043388068675995 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5474494099617004 -1.178286552429199 -0.093544140458107 0.5474494099617004 -1.178286552429199 -0.093544140458107 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5431554913520813 -1.174063205718994 -0.09728708863258362 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.5474564433097839 -1.178626656532288 -0.0844372883439064 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.543167769908905 -1.174580931663513 -0.08297599852085114 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5521175265312195 -1.164524674415588 -0.08638119697570801 0.5521175265312195 -1.164524674415588 -0.08638119697570801 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5617793798446655 -1.169313788414002 -0.08915026485919952 0.5617793798446655 -1.169313788414002 -0.08915026485919952 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5558030009269714 -1.166659235954285 -0.07879241555929184 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5557922124862671 -1.166144013404846 -0.09310459345579147 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5617842674255371 -1.169643759727478 -0.08004222065210342 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5596198439598084 -1.155208110809326 -0.08280808478593826 0.5596198439598084 -1.155208110809326 -0.08280808478593826 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5710791349411011 -1.158149242401123 -0.07623845338821411 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639879703521729 -1.15652072429657 -0.07513143122196198 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5639779567718506 -1.155990600585938 -0.08944302052259445 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5710698962211609 -1.157810688018799 -0.08534589409828186 0.5744172930717468 -1.144819259643555 -0.08224614709615707 0.5744172930717468 -1.144819259643555 -0.08224614709615707 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.5744260549545288 -1.145456075668335 -0.07315085828304291 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.566923201084137 -1.145155072212219 -0.07209660112857819 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5622989535331726 -1.144978761672974 -0.07981670647859573 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5669152736663818 -1.144503712654114 -0.08640442788600922 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5714950561523438 -1.131919503211975 -0.07991252094507217 0.5714950561523438 -1.131919503211975 -0.07991252094507217 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.559681236743927 -1.134244561195374 -0.07743934541940689 0.559681236743927 -1.134244561195374 -0.07743934541940689 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5643119215965271 -1.13315761089325 -0.08404222875833511 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5715029239654541 -1.132254600524902 -0.07080523669719696 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5643207430839539 -1.133671879768372 -0.06973028928041458 0.5526447892189026 -1.124674439430237 -0.07563516497612 0.5526447892189026 -1.124674439430237 -0.07563516497612 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5625854730606079 -1.12008547782898 -0.07830538600683212 0.5625854730606079 -1.12008547782898 -0.07830538600683212 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5564230084419251 -1.122728943824768 -0.08232010900974274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5625904202461243 -1.120417952537537 -0.06919705122709274 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5564358830451965 -1.123241543769836 -0.0680089145898819 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5412472486495972 -1.116996884346008 -0.07435604929924011 0.5412472486495972 -1.116996884346008 -0.07435604929924011 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5485594868659973 -1.110581040382385 -0.07733217626810074 0.5485594868659973 -1.110581040382385 -0.07733217626810074 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440385341644287 -1.114880084991455 -0.0668463259935379 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5440287590026856 -1.114342570304871 -0.08115829527378082 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5485671758651733 -1.110913515090942 -0.06822443753480911 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5268322229385376 -1.111981153488159 -0.07346238195896149 0.5268322229385376 -1.111981153488159 -0.07346238195896149 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5307966470718384 -1.104349851608276 -0.0768328532576561 0.5307966470718384 -1.104349851608276 -0.0768328532576561 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5308073163032532 -1.104680418968201 -0.06772708892822266 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283539295196533 -1.109394192695618 -0.06610501557588577 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5283359289169312 -1.108870148658752 -0.080414779484272 0.5110327005386353 -1.102004647254944 -0.07660330086946487 0.5110327005386353 -1.102004647254944 -0.07660330086946487 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5107991099357605 -1.110127329826355 -0.07278375327587128 0.5107991099357605 -1.110127329826355 -0.07278375327587128 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5110411047935486 -1.102330923080444 -0.06749603897333145 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108996033668518 -1.107345104217529 -0.06559709459543228 0.5108838081359863 -1.106828689575195 -0.07990724593400955 0.5108838081359863 -1.106828689575195 -0.07990724593400955</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1679\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1676\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1680\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"4554\">0.7116708837850373 0.7019521713401213 0.02806603505151321 0.5353173971062792 0.682865854756012 0.4971212213974565 0.737245834253374 0.3797311575543762 0.558813768493995 -0.737245834253374 -0.3797311575543762 -0.558813768493995 -0.5353173971062792 -0.682865854756012 -0.4971212213974565 -0.7116708837850373 -0.7019521713401213 -0.02806603505151321 0.7293853031182515 0.4062619024414093 0.5504074365593031 -0.7293853031182515 -0.4062619024414093 -0.5504074365593031 0.3217641207685286 0.832196716188115 0.4515711197051622 -0.3217641207685286 -0.832196716188115 -0.4515711197051622 0.8551425374279981 0.1137214122970094 -0.5057654407592304 0.8413495777315172 0.1893711133358783 -0.5062306485041452 -0.8413495777315172 -0.1893711133358783 0.5062306485041452 -0.8551425374279981 -0.1137214122970094 0.5057654407592304 -0.3800054119371152 -0.01453889161881108 0.9248699949338827 -0.3750179728961746 0.09078606260087684 0.9225613317510514 -0.379253227111593 -0.05515227528217267 0.9236477771621829 0.379253227111593 0.05515227528217267 -0.9236477771621829 0.3750179728961746 -0.09078606260087684 -0.9225613317510514 0.3800054119371152 0.01453889161881108 -0.9248699949338827 0.8189175815511282 -0.02914902590783115 0.5731704187369371 -0.8189175815511282 0.02914902590783115 -0.5731704187369371 -0.3666652985344028 -0.1470296851004238 0.9186614341257324 -0.3567323136201435 -0.1797042290898553 0.9167597539521685 0.3567323136201435 0.1797042290898553 -0.9167597539521685 0.3666652985344028 0.1470296851004238 -0.9186614341257324 0.4686066523877808 0.8829418569476178 0.02866151754199518 -0.4686066523877808 -0.8829418569476178 -0.02866151754199518 0.7524101408696786 0.4659479230344618 -0.465587277464002 -0.7524101408696786 -0.4659479230344618 0.465587277464002 0.8259665881004755 -0.2402942949423648 -0.5099390622023489 -0.8259665881004755 0.2402942949423648 0.5099390622023489 -0.362814134912121 0.111554295612124 0.925160279431868 0.362814134912121 -0.111554295612124 -0.925160279431868 0.8229490491338481 0.02578359544042075 0.5675297954608728 -0.8229490491338481 -0.02578359544042075 -0.5675297954608728 0.8318497362912086 -0.2056747177206577 -0.5154841672862265 -0.8318497362912086 0.2056747177206577 0.5154841672862265 -0.3282798987083118 -0.2624462240004592 0.9073887191341764 0.3282798987083118 0.2624462240004592 -0.9073887191341764 0.122880769654211 0.895041873632129 0.4287194431026854 -0.122880769654211 -0.895041873632129 -0.4287194431026854 -0.2545333500310454 -0.3210229160174924 -0.9122264308348006 -0.2471679512239378 -0.2985262902585059 -0.9218405816149861 -0.152416296237888 -0.4664354693319945 -0.8713249827648502 0.152416296237888 0.4664354693319945 0.8713249827648502 0.2471679512239378 0.2985262902585059 0.9218405816149861 0.2545333500310454 0.3210229160174924 0.9122264308348006 -0.3131325503241589 -0.1234551955288698 -0.9416511140674219 -0.2995098322824998 -0.1347925511896848 -0.9445235987045982 0.2995098322824998 0.1347925511896848 0.9445235987045982 0.3131325503241589 0.1234551955288698 0.9416511140674219 -0.7112062640457456 -0.7025334994503608 -0.02514621506555601 -0.5589728191536472 -0.6498545269164316 -0.5150130884682884 -0.9359964274276729 -0.3517817543255671 -0.01266037780873084 0.9359964274276729 0.3517817543255671 0.01266037780873084 0.5589728191536472 0.6498545269164316 0.5150130884682884 0.7112062640457456 0.7025334994503608 0.02514621506555601 -0.332993880196678 0.2202540363226734 0.9168441717299244 0.332993880196678 -0.2202540363226734 -0.9168441717299244 -0.328938048740701 -0.8033638405159231 -0.4963932914959336 -0.466090014478561 -0.8841596436575528 -0.03196596519306006 0.466090014478561 0.8841596436575528 0.03196596519306006 0.328938048740701 0.8033638405159231 0.4963932914959336 0.8306556856039417 -0.5565983328246119 0.0144716229465927 -0.8306556856039417 0.5565983328246119 -0.0144716229465927 0.6945338870796753 -0.5290705524739058 -0.4875520794776212 -0.6945338870796753 0.5290705524739058 0.4875520794776212 -0.1306456276842966 -0.866194015653377 -0.4823273237265885 -0.2464385877352586 -0.9684724233977866 -0.0364580250846064 0.2464385877352586 0.9684724233977866 0.0364580250846064 0.1306456276842966 0.866194015653377 0.4823273237265885 -0.3138510212708438 -0.2841832337118347 0.9059455977730303 0.3138510212708438 0.2841832337118347 -0.9059455977730303 0.2540901770460554 0.9666107038501276 0.03319531790878375 -0.2540901770460554 -0.9666107038501276 -0.03319531790878375 0.5643088165704985 0.7140801601412177 -0.4143007173943784 -0.5643088165704985 -0.7140801601412177 0.4143007173943784 -0.3139222174966849 0.05128821237034839 -0.9480624244393497 0.3139222174966849 -0.05128821237034839 0.9480624244393497 -0.9597648161928933 -0.2806352262868117 -0.00976562159678172 0.9597648161928933 0.2806352262868117 0.00976562159678172 -0.322037179718785 0.2144970607378 0.9221079469420136 0.322037179718785 -0.2144970607378 -0.9221079469420136 0.7616350347395199 -0.3651610676273299 0.5353218364186153 -0.7616350347395199 0.3651610676273299 -0.5353218364186153 -0.31677346396858 0.09264401157420453 -0.9439659208068825 0.31677346396858 -0.09264401157420453 0.9439659208068825 0.06287306268676872 -0.8760278543005509 -0.4781445142192458 -0.06287306268676872 0.8760278543005509 0.4781445142192458 -0.2570814061046293 -0.3475596914782427 0.9017269051629854 0.2570814061046293 0.3475596914782427 -0.9017269051629854 -0.07307391728897358 0.9059654040739069 0.4169974690969323 0.07307391728897358 -0.9059654040739069 -0.4169974690969323 -0.03938863183529962 -0.538048317326203 -0.8419931970655016 0.03938863183529962 0.538048317326203 0.8419931970655016 -0.9931138443770341 0.1171074856303961 0.003275502403372714 -0.9848207832588084 0.1734761948025066 0.005833926495086407 0.9848207832588084 -0.1734761948025066 -0.005833926495086407 0.9931138443770341 -0.1171074856303961 -0.003275502403372714 -0.8474248755763526 0.5305787100121511 0.01890271769469281 -0.8283161743331357 0.5598719726514161 0.02087317842424748 0.8283161743331357 -0.5598719726514161 -0.02087317842424748 0.8474248755763526 -0.5305787100121511 -0.01890271769469281 -0.2700042395207376 0.3208992526405757 0.9078113131568413 0.2700042395207376 -0.3208992526405757 -0.9078113131568413 0.07034711482529543 -0.5595881892235496 -0.8257798386478478 -0.07034711482529543 0.5595881892235496 0.8257798386478478 0.587272046502337 -0.8093880343899205 -0.001597868385652056 -0.587272046502337 0.8093880343899205 0.001597868385652056 0.5099095310147842 -0.7296686651050987 -0.4556049926680197 -0.5099095310147842 0.7296686651050987 0.4556049926680197 -0.2828630320997383 0.2426507848307525 -0.9279596444309216 0.2828630320997383 -0.2426507848307525 0.9279596444309216 0.1787474381172575 -0.5392555554077365 -0.8229537042436902 -0.1787474381172575 0.5392555554077365 0.8229537042436902 -0.03438013672743311 -0.9987521835622533 -0.0362226728477399 0.03438013672743311 0.9987521835622533 0.0362226728477399 -0.2512280346402211 -0.3570550449326406 0.8996644760681405 0.2512280346402211 0.3570550449326406 -0.8996644760681405 0.04869907658823495 0.9982759987746035 0.03276324480299457 -0.04869907658823495 -0.9982759987746035 -0.03276324480299457 0.3711498313041716 0.8484665325741075 -0.3772960983426096 -0.3711498313041716 -0.8484665325741075 0.3772960983426096 -0.6057320559409027 0.795127545577512 0.02934046130327287 0.6057320559409027 -0.795127545577512 -0.02934046130327287 -0.2698658743382608 0.2961595472264194 0.9162215520573003 0.2698658743382608 -0.2961595472264194 -0.9162215520573003 0.5816068301066244 -0.663602821211347 0.470494198533484 -0.5816068301066244 0.663602821211347 -0.470494198533484 -0.2686309993082194 0.2880621993603541 -0.9191613326888503 0.2686309993082194 -0.2880621993603541 0.9191613326888503 -0.5932621022767013 0.804464749553707 0.0296064980657997 0.5932621022767013 -0.804464749553707 -0.0296064980657997 0.2823812218328424 -0.4806794641766704 -0.830185580623405 -0.2823812218328424 0.4806794641766704 0.830185580623405 0.2505482073841761 -0.8378586389163725 -0.4849932957987971 -0.2505482073841761 0.8378586389163725 0.4849932957987971 -0.1747254219544659 -0.3953249454357398 0.9017700452105643 0.1747254219544659 0.3953249454357398 -0.9017700452105643 -0.269787438181167 0.8647912808873121 0.423498262925511 0.269787438181167 -0.8647912808873121 -0.423498262925511 -0.2021770691781843 0.3530693316193985 0.9134913681958636 -0.1918981575903566 0.3817008057313711 0.9041457802906834 0.1918981575903566 -0.3817008057313711 -0.9041457802906834 0.2021770691781843 -0.3530693316193985 -0.9134913681958636 0.1692723764072049 0.9176857401311533 -0.3594436603216075 -0.1692723764072049 -0.9176857401311533 0.3594436603216075 0.350213950657196 -0.9365358264104842 -0.0158377591442387 -0.350213950657196 0.9365358264104842 0.0158377591442387 0.3115077194688655 -0.8473674173878394 -0.4300365108461951 -0.3115077194688655 0.8473674173878394 0.4300365108461951 -0.2053704330187628 0.4066247173330662 -0.8902130781422446 0.2053704330187628 -0.4066247173330662 0.8902130781422446 -0.3625291776399519 0.9313584765223022 0.03382282616453856 0.3625291776399519 -0.9313584765223022 -0.03382282616453856 -0.03190857183921407 0.93184815621673 -0.3614427434583004 -0.1549911753047212 0.9873781432922444 0.03259045452922111 0.1549911753047212 -0.9873781432922444 -0.03259045452922111 0.03190857183921407 -0.93184815621673 0.3614427434583004 0.1733093536903892 -0.9842603919487195 -0.03457381616733454 -0.1733093536903892 0.9842603919487195 0.03457381616733454 -0.1804048848422663 -0.4056306790331152 0.8960568228366898 0.1804048848422663 0.4056306790331152 -0.8960568228366898 -0.108805433348809 0.4031123833662217 0.9086593333315748 0.108805433348809 -0.4031123833662217 -0.9086593333315748 0.3631414463665614 -0.8364782339863709 0.4104052314455118 -0.3631414463665614 0.8364782339863709 -0.4104052314455118 -0.1858169195835328 0.4347471399737442 -0.8811736472915747 0.1858169195835328 -0.4347471399737442 0.8811736472915747 -0.3566777150334399 0.933613505802546 0.03386486943136579 0.3566777150334399 -0.933613505802546 -0.03386486943136579 -0.1232384028517292 0.3821397865521475 0.9158501403594552 0.1232384028517292 -0.3821397865521475 -0.9158501403594552 -0.3718386216031298 0.9277963706743407 0.03049482001596008 0.3718386216031298 -0.9277963706743407 -0.03049482001596008 0.3769085707966882 -0.3788840177068252 -0.8452140737034208 -0.3769085707966882 0.3788840177068252 0.8452140737034208 0.4429179332453602 -0.7517449794132562 -0.4885726049796708 -0.4429179332453602 0.7517449794132562 0.4885726049796708 -0.08868578433421416 -0.404843097298547 0.9100752156974414 0.08868578433421416 0.404843097298547 -0.9100752156974414 -0.4722049908017236 0.7597220128569533 0.4470401658045096 0.4722049908017236 -0.7597220128569533 -0.4470401658045096 0.1349569415431963 -0.9904765886164998 -0.02725346458576107 -0.1349569415431963 0.9904765886164998 0.02725346458576107 0.1148517625882883 -0.9010483209033618 -0.4182355747991743 -0.1148517625882883 0.9010483209033618 0.4182355747991743 -0.1350424427577856 0.8787885333691383 -0.4577054208472182 0.1350424427577856 -0.8787885333691383 0.4577054208472182 -0.1391785592704044 0.989617306401859 0.03587360463270809 0.1391785592704044 -0.989617306401859 -0.03587360463270809 -0.02950439234126823 0.3883875311015432 0.9210236785867235 0.02950439234126823 -0.3883875311015432 -0.9210236785867235 -0.2379891605344312 0.891093379186692 -0.3864113728111002 0.2379891605344312 -0.891093379186692 0.3864113728111002 0.4018188507707239 -0.9154802688229474 -0.0209162272209588 -0.4018188507707239 0.9154802688229474 0.0209162272209588 -0.100085503680128 -0.4247726450810115 0.8997505720720472 0.100085503680128 0.4247726450810115 -0.8997505720720472 0.149269000632694 -0.9164617465126577 0.3712366261955926 -0.149269000632694 0.9164617465126577 -0.3712366261955926 -0.08635669052636709 0.5298659996736879 -0.8436732450369257 0.08635669052636709 -0.5298659996736879 0.8436732450369257 -0.03900572845106688 0.3769642007921201 0.9254061510867322 0.03900572845106688 -0.3769642007921201 -0.9254061510867322 -0.667625789639097 0.5691203515451191 0.4799769061797995 0.667625789639097 -0.5691203515451191 -0.4799769061797995 -0.6097550454350776 0.7922787176737801 0.022208513855214 0.6097550454350776 -0.7922787176737801 -0.022208513855214 0.4545986938444905 -0.2369848167058383 -0.8585908363159855 -0.4545986938444905 0.2369848167058383 0.8585908363159855 0.6358716013457333 -0.5907649801212694 -0.4966528413935922 -0.6358716013457333 0.5907649801212694 0.4966528413935922 -0.007502297839772759 -0.3776969063399905 0.925898894301275 0.007502297839772759 0.3776969063399905 -0.925898894301275 -0.06862623427926712 -0.9970195165030676 -0.03524944936642797 0.06862623427926712 0.9970195165030676 0.03524944936642797 -0.08052297485908085 -0.9028420140569938 -0.4223651834294049 0.08052297485908085 0.9028420140569938 0.4223651834294049 0.05900428262862644 0.89880510324023 -0.4343591613179128 -0.05900428262862644 -0.89880510324023 0.4343591613179128 0.07261340932901327 0.9967048932856687 0.03614759308751523 -0.07261340932901327 -0.9967048932856687 -0.03614759308751523 0.04179663426654825 0.3419041216917153 0.938804885444364 -0.04179663426654825 -0.3419041216917153 -0.938804885444364 -0.015040960508501 -0.4057912697378742 0.9138420076312457 0.015040960508501 0.4057912697378742 -0.9138420076312457 -0.4517263098586344 0.7788118881748393 -0.435195799404179 0.4517263098586344 -0.7788118881748393 0.435195799404179 0.6413006735416574 -0.7670395894745782 -0.01958862664117091 -0.6413006735416574 0.7670395894745782 0.01958862664117091 -0.054347935502678 -0.9322939027710796 0.3575952750840892 0.054347935502678 0.9322939027710796 -0.3575952750840892 0.02122241934069372 0.5779986549452476 -0.815761707730151 -0.02122241934069372 -0.5779986549452476 0.815761707730151 0.0435010045089644 0.3322311570815762 0.9421943116316018 -0.0435010045089644 -0.3322311570815762 -0.9421943116316018 0.06238736218192513 -0.3162640646319618 0.9466175882913077 -0.06238736218192513 0.3162640646319618 -0.9466175882913077 -0.8151742883947546 0.2813160644072832 0.5063123062364794 0.8151742883947546 -0.2813160644072832 -0.5063123062364794 -0.8495097889871003 0.5275543050046959 0.004424215874554589 0.8495097889871003 -0.5275543050046959 -0.004424215874554589 0.4986818555958908 -0.0546081901313145 -0.8650632072109072 -0.4986818555958908 0.0546081901313145 0.8650632072109072 0.8439535395437307 -0.5361077387325823 -0.01819108470228664 -0.8439535395437307 0.5361077387325823 0.01819108470228664 -0.2769446260576919 -0.9598235560561156 -0.04517095679259156 0.2769446260576919 0.9598235560561156 0.04517095679259156 -0.2862441926806097 -0.8449631923969382 -0.4517759020255516 0.2862441926806097 0.8449631923969382 0.4517759020255516 0.2515240060345187 0.8702968979477529 -0.4234607228667922 -0.2515240060345187 -0.8702968979477529 0.4234607228667922 0.285022113988306 0.9578448162586878 0.035995867873935 -0.285022113988306 -0.9578448162586878 -0.035995867873935 0.1022641569809444 0.2645290245048019 0.9589402678955111 -0.1022641569809444 -0.2645290245048019 -0.9589402678955111 0.8727466539507099 -0.4878051827691275 -0.01895736483317585 -0.8727466539507099 0.4878051827691275 0.01895736483317585 0.06497119151503472 -0.3441637413544276 0.9366589899264509 -0.06497119151503472 0.3441637413544276 -0.9366589899264509 -0.6577171642732842 0.5643165632134004 -0.4989538538816246 0.6577171642732842 -0.5643165632134004 0.4989538538816246 0.4964578187488516 -0.01406200872446651 -0.8679469419922888 -0.4964578187488516 0.01406200872446651 0.8679469419922888 -0.2544265746159438 -0.8958214392384447 0.3643776435649682 0.2544265746159438 0.8958214392384447 -0.3643776435649682 0.1346525740323371 0.5836816827901039 -0.8007398937743633 -0.1346525740323371 -0.5836816827901039 0.8007398937743633 0.1124481173905443 0.2448637316454644 0.9630146280404989 -0.1124481173905443 -0.2448637316454644 -0.9630146280404989 0.8819697538892645 0.007598171866789702 -0.471244757009341 -0.8819697538892645 -0.007598171866789702 0.471244757009341 0.1171398320703514 -0.2299441770171356 0.9661283223249602 -0.1171398320703514 0.2299441770171356 -0.9661283223249602 -0.8597805182002386 -0.06612450851032715 0.5063645029991706 0.8597805182002386 0.06612450851032715 -0.5063645029991706 -0.8025564832620339 0.1985573670928974 -0.5625638302870289 0.8025564832620339 -0.1985573670928974 0.5625638302870289 0.4943676037891732 0.1453010501104848 -0.857022915189869 -0.4943676037891732 -0.1453010501104848 0.857022915189869 -0.5011081975069153 -0.8640068972210966 -0.04881245687059649 0.5011081975069153 0.8640068972210966 0.04881245687059649 -0.4953971625889056 -0.7179255223596246 -0.4890445742910574 0.4953971625889056 0.7179255223596246 0.4890445742910574 0.4523361541883907 0.78269789407462 -0.4275231107498302 -0.4523361541883907 -0.78269789407462 0.4275231107498302 0.5160103324743733 0.8561743149607777 0.02643632313938037 -0.5160103324743733 -0.8561743149607777 -0.02643632313938037 0.1456798900475802 0.1553296146775426 0.977061963459765 -0.1456798900475802 -0.1553296146775426 -0.977061963459765 0.9975819344811169 -0.06940501209422294 -0.003637072052292452 -0.9975819344811169 0.06940501209422294 0.003637072052292452 0.1299031228142292 -0.2399521483669082 0.9620541279872025 -0.1299031228142292 0.2399521483669082 -0.9620541279872025 -0.8574309484630749 -0.02498433355687328 0.5139921708493532 0.8574309484630749 0.02498433355687328 -0.5139921708493532 -0.7991850679086362 0.2325782180646128 -0.5542658204451704 0.7991850679086362 -0.2325782180646128 0.5542658204451704 -0.4545593221843078 -0.8001107826523628 0.3914058738685027 0.4545593221843078 0.8001107826523628 -0.3914058738685027 0.248556603048201 0.5432161265870228 -0.801957514396449 -0.248556603048201 -0.5432161265870228 0.801957514396449 0.1547328152558442 0.122294846017621 0.9803579583603773 -0.1547328152558442 -0.122294846017621 -0.9803579583603773 0.4386407978618918 0.3279107683376264 -0.8367011285156191 -0.4386407978618918 -0.3279107683376264 0.8367011285156191 0.8139565735366405 0.3698909682614625 -0.4479457199204939 -0.8139565735366405 -0.3698909682614625 0.4479457199204939 0.1540882353378779 -0.1214346133398591 0.9805663926595983 -0.1540882353378779 0.1214346133398591 -0.9805663926595983 -0.7859346199362765 -0.3952550220605985 0.4754789592836855 0.7859346199362765 0.3952550220605985 -0.4754789592836855 -0.9306770059150464 -0.363141929097298 -0.04436496356921191 0.9306770059150464 0.363141929097298 0.04436496356921191 -0.7418398379539286 -0.6686780926148429 -0.05043077712532803 0.7418398379539286 0.6686780926148429 0.05043077712532803 -0.6931837386825032 -0.4794121952214146 -0.538200939704802 0.6931837386825032 0.4794121952214146 0.538200939704802 0.6572311903075883 0.6158016613381416 -0.4345520410492345 -0.6572311903075883 -0.6158016613381416 0.4345520410492345 0.751979601982272 0.6588136627921902 0.02216384264791805 -0.751979601982272 -0.6588136627921902 -0.02216384264791805 0.1709113901269176 0.02371991789714821 0.9850008437660535 -0.1709113901269176 -0.02371991789714821 -0.9850008437660535 -0.806985682832787 -0.1634898584380173 -0.5674902412295894 0.806985682832787 0.1634898584380173 0.5674902412295894 0.9307984716769429 0.3653080137814092 0.01281640319859835 -0.9307984716769429 -0.3653080137814092 -0.01281640319859835 0.1665332574936393 -0.1041946282880731 0.9805152490320931 -0.1665332574936393 0.1041946282880731 -0.9805152490320931 -0.6462181275664664 -0.6271355390768563 0.4348599167907648 0.6462181275664664 0.6271355390768563 -0.4348599167907648 0.3568816664825016 0.4535565930443404 -0.8166528595643825 -0.3568816664825016 -0.4535565930443404 0.8166528595643825 0.1682901928002351 -0.008553425957378354 0.985700385467943 -0.1682901928002351 0.008553425957378354 -0.985700385467943 -0.7170554180673224 -0.6951505316171346 -0.05096337717138435 0.7170554180673224 0.6951505316171346 0.05096337717138435 0.3464688034355574 0.4660440007429664 -0.8141021788555926 -0.3464688034355574 -0.4660440007429664 0.8141021788555926 0.6355101789920478 0.6397366600929556 -0.4322774781672137 -0.6355101789920478 -0.6397366600929556 0.4322774781672137 0.1685699882457755 0.005747924127919781 0.9856729277153952 -0.1685699882457755 -0.005747924127919781 -0.9856729277153952 -0.6279723658398444 -0.6490434333612153 0.4294104439253827 0.6279723658398444 0.6490434333612153 -0.4294104439253827 -0.7973251583280008 -0.3587315378057597 0.4853702459779992 0.7973251583280008 0.3587315378057597 -0.4853702459779992 -0.8133914914443122 -0.1226105341873485 -0.5686483434885663 0.8133914914443122 0.1226105341873485 0.5686483434885663 0.8277403482845291 0.3350766609950497 -0.450077267897652 -0.8277403482845291 -0.3350766609950497 0.450077267897652 0.9459914682312661 0.3239907301155634 0.01140827913568343 -0.9459914682312661 -0.3239907301155634 -0.01140827913568343 0.1643055508453276 -0.1191819882641469 0.9791829959894208 -0.1643055508453276 0.1191819882641469 -0.9791829959894208 -0.6747092881545888 -0.509981513077707 -0.5335599617633439 0.6747092881545888 0.509981513077707 0.5335599617633439 0.7259849856952051 0.6873476337686363 0.02233899948049431 -0.7259849856952051 -0.6873476337686363 -0.02233899948049431 0.1700273526739748 0.03942770412635237 0.9846502706494346 -0.1700273526739748 -0.03942770412635237 -0.9846502706494346 -0.7985791720875104 -0.363552001419785 0.4796886992328414 0.7985791720875104 0.363552001419785 -0.4796886992328414 -0.8005820443769667 -0.1773037046999857 -0.5723912879498229 0.8005820443769667 0.1773037046999857 0.5723912879498229 0.4462219555270105 0.310754437046979 -0.8392363470806455 -0.4462219555270105 -0.310754437046979 0.8392363470806455 0.1512091593896242 -0.1336481090587945 0.9794253279661964 -0.1512091593896242 0.1336481090587945 -0.9794253279661964 -0.4336952871383574 -0.8129939531323626 0.3885218527756087 0.4336952871383574 0.8129939531323626 -0.3885218527756087 -0.476892863167146 -0.8776635498063434 -0.04774819788819028 0.476892863167146 0.8776635498063434 0.04774819788819028 0.2380035050945923 0.552747386812773 -0.7986392539403127 -0.2380035050945923 -0.552747386812773 0.7986392539403127 0.4293210067423389 0.7959884213628337 -0.4267152519257412 -0.4293210067423389 -0.7959884213628337 0.4267152519257412 0.1533393076810733 0.1385717365111475 0.9784093880171909 -0.1533393076810733 -0.1385717365111475 -0.9784093880171909 -0.8569261781032325 0.01555967142405624 0.5152042526091591 0.8569261781032325 -0.01555967142405624 -0.5152042526091591 -0.7895538112070181 0.2718086027881717 -0.5502043826241432 0.7895538112070181 -0.2718086027881717 0.5502043826241432 0.8795771108593874 -0.03296431319738044 -0.474612958217196 -0.8795771108593874 0.03296431319738044 0.474612958217196 0.9931770550638256 -0.1165144114890372 -0.004871263707719249 -0.9931770550638256 0.1165144114890372 0.004871263707719249 0.1241152025120477 -0.2522053788639627 0.9596811258837378 -0.1241152025120477 0.2522053788639627 -0.9596811258837378 0.1440231793131058 0.1695717310208471 0.974937306630092 -0.1440231793131058 -0.1695717310208471 -0.974937306630092 -0.4731693583086877 -0.7368229619348619 -0.482910634717524 0.4731693583086877 0.7368229619348619 0.482910634717524 0.4914126934498371 0.8706243101949823 0.02295376252136903 -0.4914126934498371 -0.8706243101949823 -0.02295376252136903 -0.860938007212393 -0.02971517484011645 0.5078412705968026 0.860938007212393 0.02971517484011645 -0.5078412705968026 -0.7938388756252783 0.2406792724284641 -0.5584741062657237 0.7938388756252783 -0.2406792724284641 0.5584741062657237 0.4981231555934732 0.1224106765943749 -0.8584223599821407 -0.4981231555934732 -0.1224106765943749 0.8584223599821407 0.1121129923186101 -0.2398355057457572 0.9643182084442065 -0.1121129923186101 0.2398355057457572 -0.9643182084442065 0.1062857836713503 0.2553732186660098 0.9609827529032606 -0.1062857836713503 -0.2553732186660098 -0.9609827529032606 -0.2334720756407013 -0.9021215824597253 0.3628600837187571 0.2334720756407013 0.9021215824597253 -0.3628600837187571 -0.2546686456171097 -0.9661263003323787 -0.0417594629469482 0.2546686456171097 0.9661263003323787 0.0417594629469482 0.122600930984431 0.5856207422677188 -0.8012598566929189 -0.122600930984431 -0.5856207422677188 0.8012598566929189 0.2322407150442801 0.8745496591760359 -0.4257078151864269 -0.2322407150442801 -0.8745496591760359 0.4257078151864269 -0.8298561313882098 0.5579087855247387 0.008751470259655452 0.8298561313882098 -0.5579087855247387 -0.008751470259655452 -0.6382078320153407 0.5920859297022119 -0.4920620032099067 0.6382078320153407 -0.5920859297022119 0.4920620032099067 0.7845392952351216 -0.3705904072518202 -0.4971527373804845 -0.7845392952351216 0.3705904072518202 0.4971527373804845 0.8531057511976792 -0.5209817000929371 -0.02808283179661205 -0.8531057511976792 0.5209817000929371 0.02808283179661205 0.05742405221231209 -0.353113506087878 0.9338165398223807 -0.05742405221231209 0.353113506087878 -0.9338165398223807 0.2641960348307784 0.9638996132824373 0.03313594262521669 -0.2641960348307784 -0.9638996132824373 -0.03313594262521669 0.09615837488984069 0.2735020116739096 0.9570528807484307 -0.09615837488984069 -0.2735020116739096 -0.9570528807484307 -0.2628332742021519 -0.8574239266200959 -0.4424283897214923 0.2628332742021519 0.8574239266200959 0.4424283897214923 -0.8054615164145194 0.3138603555421823 0.5027160458888875 0.8054615164145194 -0.3138603555421823 -0.5027160458888875 0.5011963936528531 -0.07682531249453754 -0.8619164961581204 -0.5011963936528531 0.07682531249453754 0.8619164961581204 0.05593817161375906 -0.3240685888605996 0.9443783514409938 -0.05593817161375906 0.3240685888605996 -0.9443783514409938 0.03897668307371886 0.899180937822316 -0.4358376523816537 -0.03897668307371886 -0.899180937822316 0.4358376523816537 0.03524796927851993 0.3387274965168724 0.9402240497696029 -0.03524796927851993 -0.3387274965168724 -0.9402240497696029 -0.03380508164456341 -0.9335848275237068 0.356758442468479 0.03380508164456341 0.9335848275237068 -0.356758442468479 -0.04789256857390976 -0.9982543317458711 -0.03456285616087879 0.04789256857390976 0.9982543317458711 0.03456285616087879 0.00988376543882104 0.5750260384461712 -0.8180754037921276 -0.00988376543882104 -0.5750260384461712 0.8180754037921276 -0.5854676341618266 0.8104246664582965 0.0209644781693344 0.5854676341618266 -0.8104246664582965 -0.0209644781693344 -0.4340338561009833 0.7959874828626293 -0.4219224323073219 0.4340338561009833 -0.7959874828626293 0.4219224323073219 0.6153551915075027 -0.6092477810503327 -0.5001551055122906 -0.6153551915075027 0.6092477810503327 0.5001551055122906 0.6198722765427641 -0.7840918033200787 -0.03095811266789722 -0.6198722765427641 0.7840918033200787 0.03095811266789722 -0.0240890152515117 -0.4096357119910222 0.9119310844607836 0.0240890152515117 0.4096357119910222 -0.9119310844607836 0.05032314782727924 0.9980454334989849 0.03705257703017323 -0.05032314782727924 -0.9980454334989849 -0.03705257703017323 0.03482642477584477 0.3480616475002124 0.9368245351594772 -0.03482642477584477 -0.3480616475002124 -0.9368245351594772 -0.06078781811973539 -0.9051555509277223 -0.4207116230780575 0.06078781811973539 0.9051555509277223 0.4207116230780575 -0.648244348193578 0.6028199139261126 0.4651746085172723 0.648244348193578 -0.6028199139261126 -0.4651746085172723 0.4478888839578471 -0.254166375648369 -0.8572018438598732 -0.4478888839578471 0.254166375648369 0.8572018438598732 -0.01559188035809234 -0.3809853597316547 0.9244495924262397 0.01559188035809234 0.3809853597316547 -0.9244495924262397 -0.09714637419523878 0.5223268542527806 -0.8471937436661776 0.09714637419523878 -0.5223268542527806 0.8471937436661776 -0.1553367019142123 0.8736819979580711 -0.4610317510567014 0.1553367019142123 -0.8736819979580711 0.4610317510567014 -0.04773954315524366 0.3792351705057024 0.9240679744860978 0.04773954315524366 -0.3792351705057024 -0.9240679744860978 0.1710113448355263 -0.9112302410561427 0.374719318587004 -0.1710113448355263 0.9112302410561427 -0.374719318587004 0.1565670680249241 -0.9873307068236811 -0.02578426987775575 -0.1565670680249241 0.9873307068236811 0.02578426987775575 -0.3468667454040835 0.9373968143656501 0.03115563111076062 0.3468667454040835 -0.9373968143656501 -0.03115563111076062 -0.2151392028201705 0.8989116209247668 -0.3816713523128371 0.2151392028201705 -0.8989116209247668 0.3816713523128371 0.4229025381987818 -0.7599193955709881 -0.4936354478965752 -0.4229025381987818 0.7599193955709881 0.4936354478965752 0.3770488932395795 -0.9255375705175457 -0.03484734806678229 -0.3770488932395795 0.9255375705175457 0.03484734806678229 -0.1086298674624796 -0.4243898270490075 0.8989398348011938 0.1086298674624796 0.4243898270490075 -0.8989398348011938 0.1350396414025762 -0.898050863893943 -0.4186513359696902 -0.1350396414025762 0.898050863893943 0.4186513359696902 -0.161212579139658 0.9862882694139366 0.03529807280293992 0.161212579139658 -0.9862882694139366 -0.03529807280293992 -0.03730059635445455 0.3914554395165683 0.9194407563211957 0.03730059635445455 -0.3914554395165683 -0.9194407563211957 -0.4512943497619424 0.7735069445809086 0.4449948500354278 0.4512943497619424 -0.7735069445809086 -0.4449948500354278 0.3680389534659732 -0.3929713986181781 -0.842686660983633 -0.3680389534659732 0.3929713986181781 0.842686660983633 -0.09727941991731651 -0.4055490045254993 0.9088821262347099 0.09727941991731651 0.4055490045254993 -0.9088821262347099 0.3736525375605955 -0.9274559743706151 -0.01446363643004581 -0.3736525375605955 0.9274559743706151 0.01446363643004581 -0.1954342410551409 0.4220188002486209 -0.8852714779433005 0.1954342410551409 -0.4220188002486209 0.8852714779433005 -0.3804029272399221 0.9242065059515137 0.03370381735343186 0.3804029272399221 -0.9242065059515137 -0.03370381735343186 -0.1318258194384319 0.380539017198842 0.9153207141317874 0.1318258194384319 -0.380539017198842 -0.9153207141317874 0.3857828423291087 -0.8237000262929853 0.4155597011855332 -0.3857828423291087 0.8237000262929853 -0.4155597011855332 -0.1338340648369891 0.990448749506782 0.03316199164194668 0.1338340648369891 -0.990448749506782 -0.03316199164194668 -0.01119721103801772 0.9329614249593895 -0.3598021706475875 0.01119721103801772 -0.9329614249593895 0.3598021706475875 0.2325288884947923 -0.8440977660700394 -0.4831451928053774 -0.2325288884947923 0.8440977660700394 0.4831451928053774 0.1545306786828613 -0.9873150556191783 -0.03645888497352928 -0.1545306786828613 0.9873150556191783 0.03645888497352928 -0.188385323455448 -0.4022629462123833 0.8959327497145752 0.188385323455448 0.4022629462123833 -0.8959327497145752 0.3322826921166519 -0.8385561379056643 -0.431754346938681 -0.3322826921166519 0.8385561379056643 0.431754346938681 -0.2152423523879837 0.391658948099139 -0.8945803474883423 0.2152423523879837 -0.391658948099139 0.8945803474883423 -0.3868290367640545 0.9215290834905184 0.03387395160472276 0.3868290367640545 -0.9215290834905184 -0.03387395160472276 -0.1173952291246271 0.4026765469559839 0.9077829909787811 0.1173952291246271 -0.4026765469559839 -0.9077829909787811 -0.2489266544343785 0.8717552409187929 0.4219932708500514 0.2489266544343785 -0.8717552409187929 -0.4219932708500514 0.2718519283454329 -0.4882152724018878 -0.8293023434480454 -0.2718519283454329 0.4882152724018878 0.8293023434480454 -0.1836666092848303 -0.3924574694225748 0.9012456442769875 0.1836666092848303 0.3924574694225748 -0.9012456442769875 0.6033474415446439 -0.6384829790022293 0.4778193699568609 -0.6033474415446439 0.6384829790022293 -0.4778193699568609 0.6131352150534856 -0.7899777710976196 0.0005737882476074437 -0.6131352150534856 0.7899777710976196 -0.0005737882476074437 -0.2753808237963566 0.2694940130538956 -0.9227883716288078 0.2753808237963566 -0.2694940130538956 0.9227883716288078 -0.6186543257883074 0.7850985118013816 0.02978509611652962 0.6186543257883074 -0.7850985118013816 -0.02978509611652962 -0.2101296655536507 0.3486871822500865 0.9133798621541893 0.2101296655536507 -0.3486871822500865 -0.9133798621541893 0.06461220227132994 0.9973959955887958 0.03203890293196258 -0.06461220227132994 -0.9973959955887958 -0.03203890293196258 0.1834471411803039 0.9148563256495362 -0.3597013341812944 -0.1834471411803039 -0.9148563256495362 0.3597013341812944 0.04706446276303368 -0.8766449495836062 -0.4788304174907683 -0.04706446276303368 0.8766449495836062 0.4788304174907683 -0.05240410698773285 -0.9979334573656791 -0.03718365556263761 0.05240410698773285 0.9979334573656791 0.03718365556263761 -0.2558783423962933 -0.3504893468067221 0.900934787688611 0.2558783423962933 0.3504893468067221 -0.900934787688611 -0.2006920968280758 0.3777441372672295 0.9038982514813195 0.2006920968280758 -0.3777441372672295 -0.9038982514813195 0.530521993908302 -0.7131828725865238 -0.4581665682137816 -0.530521993908302 0.7131828725865238 0.4581665682137816 -0.2881229732548578 0.2233331766299601 -0.9311860418300691 0.2881229732548578 -0.2233331766299601 0.9311860418300691 -0.6320293355882027 0.7743886006494227 0.02934645021402401 0.6320293355882027 -0.7743886006494227 -0.02934645021402401 -0.05526060814531907 0.9079152834422599 0.4154950099331765 0.05526060814531907 -0.9079152834422599 -0.4154950099331765 0.169324867786248 -0.5435456118555541 -0.822123626337147 -0.169324867786248 0.5435456118555541 0.822123626337147 -0.262425063392403 -0.3400792848199952 0.9030388508474119 0.262425063392403 0.3400792848199952 -0.9030388508474119 -0.2785256252605083 0.2831471851144514 0.917742419001653 0.2785256252605083 -0.2831471851144514 -0.917742419001653 0.7799928739812686 -0.3127646575647681 0.5420234178675621 -0.7799928739812686 0.3127646575647681 -0.5420234178675621 0.8613617624052101 -0.5077492879164336 0.0157027031604448 -0.8613617624052101 0.5077492879164336 -0.0157027031604448 -0.3203826022531021 0.06507348339724793 -0.9450504906787143 0.3203826022531021 -0.06507348339724793 0.9450504906787143 -0.8569955182629497 0.514965341673612 0.01921922350664027 0.8569955182629497 -0.514965341673612 -0.01921922350664027 0.2668604861589438 0.9632172055238382 0.03159265594818225 -0.2668604861589438 -0.9632172055238382 -0.03159265594818225 0.3848259988989242 0.8411153441483907 -0.3800446400221686 -0.3848259988989242 -0.8411153441483907 0.3800446400221686 -0.1463452204061559 -0.8637105572618807 -0.4822728996518934 0.1463452204061559 0.8637105572618807 0.4822728996518934 -0.2614906007336944 -0.964583089536215 -0.03467173356931733 0.2614906007336944 0.964583089536215 0.03467173356931733 -0.3128205817555215 -0.2727530831994496 0.9098071439790585 0.3128205817555215 0.2727530831994496 -0.9098071439790585 -0.877251335563384 0.4797023225995196 0.01777008567467638 0.877251335563384 -0.4797023225995196 -0.01777008567467638 -0.2802057379684856 0.3069626073985923 0.9095376309249628 0.2802057379684856 -0.3069626073985923 -0.9095376309249628 0.7175372919484939 -0.4930483606966952 -0.4919792156966829 -0.7175372919484939 0.4930483606966952 0.4919792156966829 -0.3153542051832245 0.02589270463782779 -0.9486207319681534 0.3153542051832245 -0.02589270463782779 0.9486207319681534 0.139251626078047 0.8939704795085888 0.4259410362970489 -0.139251626078047 -0.8939704795085888 -0.4259410362970489 0.06132171006327589 -0.5593056598669248 -0.8266902846385335 -0.06132171006327589 0.5593056598669248 0.8266902846385335 -0.3280033984977638 -0.249834438430717 0.9110414501810141 0.3280033984977638 0.249834438430717 -0.9110414501810141 -0.9954158731747244 0.09554874053023407 0.004204475578096453 0.9954158731747244 -0.09554874053023407 -0.004204475578096453 -0.3316173720207138 0.1947632518625393 0.9230911083408855 0.3316173720207138 -0.1947632518625393 -0.9230911083408855 0.817575153764345 0.09709929153633617 0.5675760702587355 -0.817575153764345 -0.09709929153633617 -0.5675760702587355 0.8458775383286142 -0.1331990427620946 -0.5164776908622341 -0.8458775383286142 0.1331990427620946 0.5164776908622341 -0.3083759824560517 -0.1573796570753727 -0.9381555825038312 0.3083759824560517 0.1573796570753727 0.9381555825038312 0.4990163719993245 0.8660150067876759 0.03163334467257348 -0.4990163719993245 -0.8660150067876759 -0.03163334467257348 0.5956789501138251 0.6858391035791073 -0.4180805094633062 -0.5956789501138251 -0.6858391035791073 0.4180805094633062 -0.3620953882820228 -0.7880951880868865 -0.4977880114056444 0.3620953882820228 0.7880951880868865 0.4977880114056444 -0.4980481988525364 -0.8665885920918063 -0.03118018082188514 0.4980481988525364 0.8665885920918063 0.03118018082188514 -0.3599611320206116 -0.1644710035956224 0.9183557439307976 0.3599611320206116 0.1644710035956224 -0.9183557439307976 -0.2943256424314859 -0.1612840048859618 -0.9419978163325211 0.2943256424314859 0.1612840048859618 0.9419978163325211 -0.9995122683368192 0.0311708959594342 0.001897548226659741 0.9995122683368192 -0.0311708959594342 -0.001897548226659741 -0.3430764110087483 0.1961104572649701 0.9186072418398849 0.3430764110087483 -0.1961104572649701 -0.9186072418398849 0.8174352215529376 0.0463851767321013 0.5741498706298134 -0.8174352215529376 -0.0463851767321013 -0.5741498706298134 0.8407491762812339 -0.1769459966637989 -0.5116941829326203 -0.8407491762812339 0.1769459966637989 0.5116941829326203 0.351330893026568 0.8170314435160931 0.4571938581293095 -0.351330893026568 -0.8170314435160931 -0.4571938581293095 -0.05311202123594302 -0.5295486039395305 -0.8466152545672248 0.05311202123594302 0.5295486039395305 0.8466152545672248 -0.37190415890185 -0.1265488341316491 0.9196046374238375 0.37190415890185 0.1265488341316491 -0.9196046374238375 -0.2430519777419506 -0.3409754151362031 -0.908108750309356 0.2430519777419506 0.3409754151362031 0.908108750309356 -0.9393301647007613 -0.342807994740731 -0.01189623575252639 0.9393301647007613 0.342807994740731 0.01189623575252639 -0.3671425430842894 0.09387747790844114 0.9254152431201633 0.3671425430842894 -0.09387747790844114 -0.9254152431201633 0.7105810854744179 0.4478938837629632 0.5426468371360209 -0.7105810854744179 -0.4478938837629632 -0.5426468371360209 0.832248097536002 0.2410706283649829 -0.499247490016142 -0.832248097536002 -0.2410706283649829 0.499247490016142 0.7492661764034824 0.6617274221376309 0.02677714863071222 -0.7492661764034824 -0.6617274221376309 -0.02677714863071222 0.771790659619931 0.4268693530229965 -0.4712979240068435 -0.771790659619931 -0.4268693530229965 0.4712979240068435 -0.1704960135927644 -0.4188404448990791 -0.8919101922647355 0.1704960135927644 0.4188404448990791 0.8919101922647355 -0.7457577804628064 -0.6658070536922155 -0.02337306425952852 0.7457577804628064 0.6658070536922155 0.02337306425952852 -0.3832894174236852 -0.03328216608980961 0.9230284502177506 0.3832894174236852 0.03328216608980961 -0.9230284502177506 0.8487181325949951 0.1690921359116911 -0.5010842054757729 -0.8487181325949951 -0.1690921359116911 0.5010842054757729 -0.2376092621617667 -0.3172641265836313 -0.918087856644486 0.2376092621617667 0.3172641265836313 0.918087856644486 -0.9142861257012683 -0.4047971558969609 -0.01483721429029009 0.9142861257012683 0.4047971558969609 0.01483721429029009 -0.3773104254029742 0.07298334062249158 0.9232065179979007 0.3773104254029742 -0.07298334062249158 -0.9232065179979007 0.7162880539923326 0.4292135047673638 0.5501883232432265 -0.7162880539923326 -0.4292135047673638 -0.5501883232432265 0.5634627908216059 0.6543478710563656 0.5043198855920013 -0.5634627908216059 -0.6543478710563656 -0.5043198855920013 -0.1654917863658059 -0.4500086473228867 -0.877556087085082 0.1654917863658059 0.4500086473228867 0.877556087085082 -0.7849727204841929 -0.6191489520560974 -0.02173483985406269 0.7849727204841929 0.6191489520560974 0.02173483985406269 -0.3812090940806548 0.001936728282550633 0.9244868174688949 0.3812090940806548 -0.001936728282550633 -0.9244868174688949 0.7062604362073617 0.7074454334915477 0.02677974757430267 -0.7062604362073617 -0.7074454334915477 -0.02677974757430267 -0.1468902033780271 -0.4681736318872253 -0.8713419068064423 0.1468902033780271 0.4681736318872253 0.8713419068064423 -0.5453491082515233 -0.6597150224060673 -0.5170787554532 0.5453491082515233 0.6597150224060673 0.5170787554532 -0.3800962827451415 -0.01950687838726434 0.9247412057105005 0.3800962827451415 0.01950687838726434 -0.9247412057105005 0.5268268176928848 0.690872562717454 0.4951248390495125 -0.5268268176928848 -0.690872562717454 -0.4951248390495125 0.7478602442038386 0.3581124738567753 0.5589816734093839 -0.7478602442038386 -0.3581124738567753 -0.5589816734093839 0.8574544598189914 0.09220009470449439 -0.5062321521525515 -0.8574544598189914 -0.09220009470449439 0.5062321521525515 -0.2503197381908354 -0.2899055413683712 -0.9237395768050555 0.2503197381908354 0.2899055413683712 0.9237395768050555 -0.9458652848475723 -0.3243628032144416 -0.01129755774892723 0.9458652848475723 0.3243628032144416 0.01129755774892723 -0.3740395889501752 0.1012831300126014 0.9218655614962708 0.3740395889501752 -0.1012831300126014 -0.9218655614962708 0.7456116067161954 0.4793411569132378 -0.4629204977306279 -0.7456116067161954 -0.4793411569132378 0.4629204977306279 -0.7019985273356816 -0.7116016075999861 -0.0286569307437078 0.7019985273356816 0.7116016075999861 0.0286569307437078 -0.3797481066952388 -0.05574983828455482 0.9234085395926482 0.3797481066952388 0.05574983828455482 -0.9234085395926482 0.7412720626271601 0.3839166967398176 0.5505667072506862 -0.7412720626271601 -0.3839166967398176 -0.5505667072506862 0.8464349456429571 0.1647903424594057 -0.5063516819627598 -0.8464349456429571 -0.1647903424594057 0.5063516819627598 -0.2583514331959643 -0.3088208194943954 -0.9153601686835632 0.2583514331959643 0.3088208194943954 0.9153601686835632 -0.9667079460379267 -0.2557261280812135 -0.008938371424594471 0.9667079460379267 0.2557261280812135 0.008938371424594471 -0.3620990946634469 0.1188843009914378 0.9245273217280761 0.3620990946634469 -0.1188843009914378 -0.9245273217280761 0.319761704224191 0.8329906729542334 0.4515296128526839 -0.319761704224191 -0.8329906729542334 -0.4515296128526839 0.4674235674928223 0.8835645762532153 0.02878972286700408 -0.4674235674928223 -0.8835645762532153 -0.02878972286700408 -0.03702291901141228 -0.5386610444372147 -0.8417087279300859 0.03702291901141228 0.5386610444372147 0.8417087279300859 -0.3259297431167805 -0.8059261183550209 -0.4942194798923228 0.3259297431167805 0.8059261183550209 0.4942194798923228 -0.3683647448944613 -0.1472065661969778 0.9179529626224501 0.3683647448944613 0.1472065661969778 -0.9179529626224501 0.8188414523304987 -0.04539498950297801 0.5722219594469477 -0.8188414523304987 0.04539498950297801 -0.5722219594469477 0.8222351799247571 -0.2531189896746004 -0.5097647358931486 -0.8222351799247571 0.2531189896746004 0.5097647358931486 -0.3007669408721845 -0.1278712170447151 -0.9450863448013052 0.3007669408721845 0.1278712170447151 0.9450863448013052 -0.9912196725870244 0.1321124366424652 0.005464866042518272 0.9912196725870244 -0.1321124366424652 -0.005464866042518272 -0.3334531898166117 0.2261849219163817 0.9152318565799635 0.3334531898166117 -0.2261849219163817 -0.9152318565799635 -0.3572509335391731 -0.1813572351176351 0.916232134208289 0.3572509335391731 0.1813572351176351 -0.916232134208289 0.5652910635408757 0.7136397675557669 -0.4137200691817796 -0.5652910635408757 -0.7136397675557669 0.4137200691817796 -0.4590092833981768 -0.8877795503597669 -0.03402863084671884 0.4590092833981768 0.8877795503597669 0.03402863084671884 0.8236552113892361 0.0100891157115191 0.5670011485839446 -0.8236552113892361 -0.0100891157115191 -0.5670011485839446 0.8284238845313932 -0.2197766705392278 -0.5151816015975425 -0.8284238845313932 0.2197766705392278 0.5151816015975425 -0.3143545530052891 -0.1151609002877546 -0.9422946365387838 0.3143545530052891 0.1151609002877546 0.9422946365387838 -0.9814011140988709 0.1918121627780759 0.007742574241940405 0.9814011140988709 -0.1918121627780759 -0.007742574241940405 -0.3228697798530805 0.2179416238368772 0.9210084439661607 0.3228697798530805 -0.2179416238368772 -0.9210084439661607 -0.3242603454229419 -0.26278932832013 0.9087337328982836 0.3242603454229419 0.26278932832013 -0.9087337328982836 0.117408333593584 0.8977407286122229 0.4245902346893686 -0.117408333593584 -0.8977407286122229 -0.4245902346893686 0.2470104206640791 0.9685291661992058 0.0306121920944245 -0.2470104206640791 -0.9685291661992058 -0.0306121920944245 0.07434944066558483 -0.5619908898762065 -0.8237951203842275 -0.07434944066558483 0.5619908898762065 0.8237951203842275 -0.1220431256235842 -0.8647778253340694 -0.487098335347703 0.1220431256235842 0.8647778253340694 0.487098335347703 0.8216033761799422 -0.569899124762224 0.01352330747160687 -0.8216033761799422 0.569899124762224 -0.01352330747160687 0.6878039565639096 -0.5387580380347037 -0.4864827785112528 -0.6878039565639096 0.5387580380347037 0.4864827785112528 -0.3137263906325912 0.05871167165584165 -0.9476965186345381 0.3137263906325912 -0.05871167165584165 0.9476965186345381 -0.8392362141851329 0.5433656482746885 0.02088897018124987 0.8392362141851329 -0.5433656482746885 -0.02088897018124987 -0.2680687356060446 0.3235076137467493 0.9074590772252271 0.2680687356060446 -0.3235076137467493 -0.9074590772252271 -0.2377803173828305 -0.9701737056791269 -0.04715401864265265 0.2377803173828305 0.9701737056791269 0.04715401864265265 -0.3107264998112969 -0.2832606490249422 0.907310557102136 0.3107264998112969 0.2832606490249422 -0.907310557102136 0.3634875532057154 0.8517395637612272 -0.3773811259037166 -0.3634875532057154 -0.8517395637612272 0.3773811259037166 0.7564741380647571 -0.3790849739850686 0.5329554023911599 -0.7564741380647571 0.3790849739850686 -0.5329554023911599 -0.3158301950430751 0.1010014341521823 -0.9434246118255849 0.3158301950430751 -0.1010014341521823 0.9434246118255849 -0.8201546778133422 0.5717219841423917 0.02191523007362344 0.8201546778133422 -0.5717219841423917 -0.02191523007362344 -0.2680279304866537 0.2977166802809032 0.9162564088515616 0.2680279304866537 -0.2977166802809032 -0.9162564088515616 0.06943503471947671 -0.8752562718779137 -0.4786493857636093 -0.06943503471947671 0.8752562718779137 0.4786493857636093 -0.2548440377212501 -0.3496896180200109 0.9015385113720594 0.2548440377212501 0.3496896180200109 -0.9015385113720594 -0.07988208919618244 0.9055631098653776 0.4166224980442116 0.07988208919618244 -0.9055631098653776 -0.4166224980442116 0.04085328202072017 0.9986139180224687 0.03318511835069635 -0.04085328202072017 -0.9986139180224687 -0.03318511835069635 0.1825432294880344 -0.537504617058687 -0.8232659084455477 -0.1825432294880344 0.537504617058687 0.8232659084455477 0.5778141449209872 -0.8161653615313131 -0.00221733301270339 -0.5778141449209872 0.8161653615313131 0.00221733301270339 0.5021146877112246 -0.7356145625900777 -0.4546999622719005 -0.5021146877112246 0.7356145625900777 0.4546999622719005 -0.2805128566256279 0.2496901615118323 -0.9268049204184908 0.2805128566256279 -0.2496901615118323 0.9268049204184908 -0.5959281025117016 0.8024830981153345 0.02984248441429266 0.5959281025117016 -0.8024830981153345 -0.02984248441429266 -0.1886773154703058 0.3827046229957719 0.9043992714308115 0.1886773154703058 -0.3827046229957719 -0.9043992714308115 -0.02640921272806773 -0.9989879478236353 -0.0364092513821016 0.02640921272806773 0.9989879478236353 0.0364092513821016 -0.2495445260554905 -0.3595971644574081 0.8991203528059704 0.2495445260554905 0.3595971644574081 -0.8991203528059704 0.1610895679762224 0.919489204049207 -0.3585941364916466 -0.1610895679762224 -0.919489204049207 0.3585941364916466 0.5735083298594795 -0.6719851894797322 0.4685339909778998 -0.5735083298594795 0.6719851894797322 -0.4685339909778998 -0.2658005393205428 0.2945847544311872 -0.9179160613877642 0.2658005393205428 -0.2945847544311872 0.9179160613877642 -0.5837520942757996 0.8113702867369903 0.0301952020849721 0.5837520942757996 -0.8113702867369903 -0.0301952020849721 -0.1992068250247359 0.3545104032779222 0.9135858004759538 0.1992068250247359 -0.3545104032779222 -0.9135858004759538 0.2861913866710729 -0.4776759500918658 -0.830614337041639 -0.2861913866710729 0.4776759500918658 0.830614337041639 0.2596318044898602 -0.8356783259833757 -0.4839763027039257 -0.2596318044898602 0.8356783259833757 0.4839763027039257 -0.1711688674842123 -0.3974652104131658 0.9015113007141897 0.1711688674842123 0.3974652104131658 -0.9015113007141897 -0.2759588185517231 0.8621143631909254 0.4249771232001111 0.2759588185517231 -0.8621143631909254 -0.4249771232001111 -0.1627320990026209 0.9861135152307041 0.03314210363789748 0.1627320990026209 -0.9861135152307041 -0.03314210363789748 0.3417012434807117 -0.939666226372916 -0.01635980494440938 -0.3417012434807117 0.939666226372916 0.01635980494440938 0.3037790949308605 -0.8502658120976109 -0.4298445187052845 -0.3037790949308605 0.8502658120976109 0.4298445187052845 -0.2017856073853346 0.4122559507173126 -0.8884411065176443 0.2017856073853346 -0.4122559507173126 0.8884411065176443 -0.353383081220885 0.9348236989469535 0.03500071133518485 0.353383081220885 -0.9348236989469535 -0.03500071133518485 -0.1058642773528767 0.4039725874490634 0.9086247318724392 0.1058642773528767 -0.4039725874490634 -0.9086247318724392 -0.03908713698263171 0.9310460057487885 -0.3628023303421956 0.03908713698263171 -0.9310460057487885 0.3628023303421956 0.1852977366561001 -0.9820238636952331 -0.03597054243701098 -0.1852977366561001 0.9820238636952331 0.03597054243701098 -0.1773562520115273 -0.4078832717296075 0.8956427839912378 0.1773562520115273 0.4078832717296075 -0.8956427839912378 0.3549033669302498 -0.8408083423102349 0.4087602373556992 -0.3549033669302498 0.8408083423102349 -0.4087602373556992 -0.1821962809216112 0.4398357752132144 -0.8794026416044724 0.1821962809216112 -0.4398357752132144 0.8794026416044724 -0.3477733437344215 0.9369257507071379 0.03498341106361896 0.3477733437344215 -0.9369257507071379 -0.03498341106361896 -0.1202939555411783 0.3835446138356098 0.9156543526123544 0.1202939555411783 -0.3835446138356098 -0.9156543526123544 -0.3816928160809102 0.9236570684072814 0.03417914764138207 0.3816928160809102 -0.9236570684072814 -0.03417914764138207 0.3808577460685767 -0.3762245883194242 -0.8446315388401284 -0.3808577460685767 0.3762245883194242 0.8446315388401284 0.4502494234029147 -0.7431755873906194 -0.4949398984037865 -0.4502494234029147 0.7431755873906194 0.4949398984037865 -0.08540093500703064 -0.4049584619435693 0.9103380275481322 0.08540093500703064 0.4049584619435693 -0.9103380275481322 -0.4839614745690746 0.7462630882213914 0.4570259229969331 0.4839614745690746 -0.7462630882213914 -0.4570259229969331 0.1272613134699524 -0.9915110894095429 -0.02665178552750414 -0.1272613134699524 0.9915110894095429 0.02665178552750414 0.1074872954876126 -0.9023021340846562 -0.4174893293666727 -0.1074872954876126 0.9023021340846562 0.4174893293666727 -0.1272965915932204 0.8805005225712929 -0.4566337783393045 0.1272965915932204 -0.8805005225712929 0.4566337783393045 -0.1306424101633403 0.9907860809176877 0.03571417822774105 0.1306424101633403 -0.9907860809176877 -0.03571417822774105 -0.02654519648341589 0.3880500181022754 0.9212559557443742 0.02654519648341589 -0.3880500181022754 -0.9212559557443742 -0.2461620453906043 0.8881319108602231 -0.3881055994454122 0.2461620453906043 -0.8881319108602231 0.3881055994454122 0.4100579418481921 -0.9114198883774879 -0.03415071591039503 -0.4100579418481921 0.9114198883774879 0.03415071591039503 -0.09587537643338889 -0.4238610962026208 0.9006384864748278 0.09587537643338889 0.4238610962026208 -0.9006384864748278 0.1414243282584529 -0.9177596944437224 0.3711014721490754 -0.1414243282584529 0.9177596944437224 -0.3711014721490754 -0.08231361666613409 0.5327125572456595 -0.8422836813474013 0.08231361666613409 -0.5327125572456595 0.8422836813474013 -0.0357738988202156 0.3767866784866152 0.9256090033476472 0.0357738988202156 -0.3767866784866152 -0.9256090033476472 -0.6747147755791466 0.5584902983883989 0.4825438407245698 0.6747147755791466 -0.5584902983883989 -0.4825438407245698 -0.6195773714114743 0.7846165788034097 0.02237644077329868 0.6195773714114743 -0.7846165788034097 -0.02237644077329868 0.4569721173514396 -0.2307612450082885 -0.8590260367215694 -0.4569721173514396 0.2307612450082885 0.8590260367215694 0.6402024441693123 -0.5821756253416732 -0.501210905445672 -0.6402024441693123 0.5821756253416732 0.501210905445672 -0.004103715279616589 -0.3751858317991564 0.9269405326870106 0.004103715279616589 0.3751858317991564 -0.9269405326870106 -0.07705662111402463 -0.996390105839737 -0.03562350526221716 0.07705662111402463 0.996390105839737 0.03562350526221716 -0.08906834893946965 -0.901889651168439 -0.4226841448794457 0.08906834893946965 0.901889651168439 0.4226841448794457 0.06621860718030846 0.8987904080853973 -0.4333484722446644 -0.06621860718030846 -0.8987904080853973 0.4333484722446644 0.08027133921803603 0.9960947495142613 0.03676631733345015 -0.08027133921803603 -0.9960947495142613 -0.03676631733345015 0.04440000070647108 0.339511262952567 0.9395534802583716 -0.04440000070647108 -0.339511262952567 -0.9395534802583716 -0.01160310818029262 -0.4044697119215308 0.9144777854156274 0.01160310818029262 0.4044697119215308 -0.9144777854156274 -0.4608981076396527 0.7725726231779423 -0.4366972364123002 0.4608981076396527 -0.7725726231779423 0.4366972364123002 0.6528599392294456 -0.7569500091748925 -0.02829458180384909 -0.6528599392294456 0.7569500091748925 0.02829458180384909 -0.06266948071216899 -0.9322056042347686 0.3564621264882947 0.06266948071216899 0.9322056042347686 -0.3564621264882947 0.02541222647829463 0.5792942106514886 -0.8147223062191711 -0.02541222647829463 -0.5792942106514886 0.8147223062191711 0.04651274091202064 0.3295208045599909 0.9430019110770601 -0.04651274091202064 -0.3295208045599909 -0.9430019110770601 0.06468452150063614 -0.3132026605496621 0.9474808737398591 -0.06468452150063614 0.3132026605496621 -0.9474808737398591 -0.8189912238312458 0.2678190603133242 0.5074705175872646 0.8189912238312458 -0.2678190603133242 -0.5074705175872646 -0.8580826706007079 0.5134990070261529 0.003591684550717541 0.8580826706007079 -0.5134990070261529 -0.003591684550717541 0.4994221860388733 -0.04701482210331644 -0.8650821270808609 -0.4994221860388733 0.04701482210331644 0.8650821270808609 0.8539350250635807 -0.5200075136972855 -0.01967634793423746 -0.8539350250635807 0.5200075136972855 0.01967634793423746 -0.2852383295094946 -0.9574724353983852 -0.04342385094528022 0.2852383295094946 0.9574724353983852 0.04342385094528022 -0.2923937270020495 -0.8450148886231683 -0.4477228455361924 0.2923937270020495 0.8450148886231683 0.4477228455361924 0.2599973302445103 0.8674538926089805 -0.4241758272971886 -0.2599973302445103 -0.8674538926089805 0.4241758272971886 0.2946043865131284 0.9549829925430863 0.03486745474901904 -0.2946043865131284 -0.9549829925430863 -0.03486745474901904 0.1034208991949439 0.260849244371909 0.9598238324402627 -0.1034208991949439 -0.260849244371909 -0.9598238324402627 0.8820023309921814 -0.4709110062872414 -0.01774013195824339 -0.8820023309921814 0.4709110062872414 0.01774013195824339 0.06788770271577643 -0.3406675967151395 0.9377296243418493 -0.06788770271577643 0.3406675967151395 -0.9377296243418493 -0.663998397715294 0.5539954384782575 -0.5021903841938887 0.663998397715294 -0.5539954384782575 0.5021903841938887 0.4964854153761558 -0.007182893173776466 -0.8680153445443347 -0.4964854153761558 0.007182893173776466 0.8680153445443347 -0.2615383452944082 -0.8933672340881239 0.3653664995568126 0.2615383452944082 0.8933672340881239 -0.3653664995568126 0.138234137089511 0.58318797932163 -0.8004892904454577 -0.138234137089511 -0.58318797932163 0.8004892904454577 0.1141353834988266 0.2414910802766948 0.9636675632085843 -0.1141353834988266 -0.2414910802766948 -0.9636675632085843 0.8822869759273295 0.02221257835460109 -0.4701875088428538 -0.8822869759273295 -0.02221257835460109 0.4701875088428538 0.1188090796556892 -0.2260232352277939 0.9668494710804414 -0.1188090796556892 0.2260232352277939 -0.9668494710804414 -0.8587355829409947 -0.08016053196359224 0.5061101537277273 0.8587355829409947 0.08016053196359224 -0.5061101537277273 -0.8050817861859301 0.1826543429245913 -0.5643409506339746 0.8050817861859301 -0.1826543429245913 0.5643409506339746 0.4926074062465193 0.1528286611391779 -0.8567271115387227 -0.4926074062465193 -0.1528286611391779 0.8567271115387227 -0.5097963798255546 -0.8590980614326789 -0.04536708012834995 0.5097963798255546 0.8590980614326789 0.04536708012834995 -0.5032437954977744 -0.7119934393276318 -0.489705038413333 0.5032437954977744 0.7119934393276318 0.489705038413333 0.4603550888754805 0.778908558202372 -0.4258810281117847 -0.4603550888754805 -0.778908558202372 0.4258810281117847 0.5234788386839879 0.8515032728047226 0.03020069292101319 -0.5234788386839879 -0.8515032728047226 -0.03020069292101319 0.1518556239521084 0.1545007228608813 0.976252731678422 -0.1518556239521084 -0.1545007228608813 -0.976252731678422 0.9986607577249228 -0.05168645363632656 -0.00228067770253558 -0.9986607577249228 0.05168645363632656 0.00228067770253558 0.1318177949197178 -0.2349826358603667 0.9630198491135152 -0.1318177949197178 0.2349826358603667 -0.9630198491135152 -0.8570263845191761 -0.04026866888180463 0.5136966133278249 0.8570263845191761 0.04026866888180463 -0.5136966133278249 -0.8020591645631245 0.2179712583136024 -0.5560482237085983 0.8020591645631245 -0.2179712583136024 0.5560482237085983 -0.4616293207635678 -0.7910058913438179 0.4015072229371958 0.4616293207635678 0.7910058913438179 -0.4015072229371958 0.252555832078979 0.5415387773077612 -0.8018424435978114 -0.252555832078979 -0.5415387773077612 0.8018424435978114 0.1597918980779847 0.1228009126198238 0.9794827640996923 -0.1597918980779847 -0.1228009126198238 -0.9794827640996923 0.43533046034932 0.3341460369124196 -0.8359628079692141 -0.43533046034932 -0.3341460369124196 0.8359628079692141 0.8085218084328519 0.3823038566077889 -0.4473658977965149 -0.8085218084328519 -0.3823038566077889 0.4473658977965149 0.1551443768086196 -0.1168564902557366 0.9809560556058442 -0.1551443768086196 0.1168564902557366 -0.9809560556058442 -0.7805802054304413 -0.4068145480406504 0.4745486975987306 0.7805802054304413 0.4068145480406504 -0.4745486975987306 -0.9244807062414688 -0.3785924093579286 -0.04475724928805827 0.9244807062414688 0.3785924093579286 0.04475724928805827 -0.7501932453694553 -0.6593635372132038 -0.04949566037276468 0.7501932453694553 0.6593635372132038 0.04949566037276468 -0.697842370438045 -0.4623248219804261 -0.5470573873024455 0.697842370438045 0.4623248219804261 0.5470573873024455 0.664914727913751 0.6072439449909418 -0.4349059621058563 -0.664914727913751 -0.6072439449909418 0.4349059621058563 0.7604819999119626 0.6489570574122129 0.02284437446689475 -0.7604819999119626 -0.6489570574122129 -0.02284437446689475 0.1719287864699752 0.01941246406533368 0.9849180923416291 -0.1719287864699752 -0.01941246406533368 -0.9849180923416291 -0.8041096581556844 -0.1784964749614651 -0.5670508496484942 0.8041096581556844 0.1784964749614651 0.5670508496484942 0.9246610726829869 0.3805584205546403 0.01331124373247689 -0.9246610726829869 -0.3805584205546403 -0.01331124373247689 0.1673333523979098 -0.09873223940876282 0.9809441849955621 -0.1673333523979098 0.09873223940876282 -0.9809441849955621 -0.6515875564377071 -0.6172434749691158 0.4409582167321395 0.6515875564377071 0.6172434749691158 -0.4409582167321395 0.3609516342520132 0.4491983126357995 -0.8172727779976226 -0.3609516342520132 -0.4491983126357995 0.8172727779976226 0.1680765945439185 -0.01327555933124413 0.985684542787885 -0.1680765945439185 0.01327555933124413 -0.985684542787885 -0.7077230417893935 -0.7046661999761413 -0.05073108249932461 0.7077230417893935 0.7046661999761413 0.05073108249932461 0.3422843836739553 0.4701521679440835 -0.8135098891042559 -0.3422843836739553 -0.4701521679440835 0.8135098891042559 0.6285613170124984 0.6463117594752375 -0.4326566540798099 -0.6285613170124984 -0.6463117594752375 0.4326566540798099 0.1684890695428452 0.01078571029425203 0.985644510915591 -0.1684890695428452 -0.01078571029425203 -0.985644510915591 -0.6208654125576584 -0.6569322432545512 0.4277454468046993 0.6208654125576584 0.6569322432545512 -0.4277454468046993 -0.8016865899686199 -0.3477296061211744 0.4861920736615304 0.8016865899686199 0.3477296061211744 -0.4861920736615304 -0.8149279964462595 -0.108071750513553 -0.5693969242532153 0.8149279964462595 0.108071750513553 0.5693969242532153 0.8324412887316971 0.3218681243093255 -0.4510459082713287 -0.8324412887316971 -0.3218681243093255 0.4510459082713287 0.9513162046913369 0.3080467120941872 0.01023239266405334 -0.9513162046913369 -0.3080467120941872 -0.01023239266405334 0.1634427347217502 -0.1247272176778069 0.9786365993753906 -0.1634427347217502 0.1247272176778069 -0.9786365993753906 -0.6678615635047543 -0.5214529767142511 -0.5310816557449818 0.6678615635047543 0.5214529767142511 0.5310816557449818 0.7182704099668077 0.6953221181158507 0.02479456039136455 -0.7182704099668077 -0.6953221181158507 -0.02479456039136455 0.1693906938899092 0.04483850883956429 0.9845284662967035 -0.1693906938899092 -0.04483850883956429 -0.9845284662967035 -0.8048827537658515 -0.3506513833950874 0.4787560548060056 0.8048827537658515 0.3506513833950874 -0.4787560548060056 -0.8033590027119337 -0.1702033941689896 -0.5706532374174729 0.8033590027119337 0.1702033941689896 0.5706532374174729 0.4492489151208772 0.3040901989692398 -0.8400622376666881 -0.4492489151208772 -0.3040901989692398 0.8400622376666881 0.1500447169283141 -0.138173474524132 0.9789763397855082 -0.1500447169283141 0.138173474524132 -0.9789763397855082 -0.4259168336932312 -0.8178708918854935 0.3868876516292036 0.4259168336932312 0.8178708918854935 -0.3868876516292036 -0.4675528058744584 -0.8826984411395502 -0.04730576845088733 0.4675528058744584 0.8826984411395502 0.04730576845088733 0.2320331210174481 0.552451721304366 -0.8005983552186111 -0.2320331210174481 -0.552451721304366 0.8005983552186111 0.423552817016082 0.800072550116941 -0.424837528647266 -0.423552817016082 -0.800072550116941 0.424837528647266 0.1520176940995982 0.1435779793503188 0.9778936468381009 -0.1520176940995982 -0.1435779793503188 -0.9778936468381009 -0.8563320272399652 0.03082560515181998 0.5155048410928027 0.8563320272399652 -0.03082560515181998 -0.5155048410928027 -0.7854929334559505 0.2863061653322473 -0.548661672785251 0.7854929334559505 -0.2863061653322473 0.548661672785251 0.8789014297648528 -0.04562048212722426 -0.4748168577122944 -0.8789014297648528 0.04562048212722426 0.4748168577122944 0.990959560209696 -0.1340304237963209 -0.005915701647684131 -0.990959560209696 0.1340304237963209 0.005915701647684131 0.1214820122370588 -0.2566134302884692 0.9588491372986786 -0.1214820122370588 0.2566134302884692 -0.9588491372986786 0.1424440772897258 0.1742521583025163 0.9743438151761387 -0.1424440772897258 -0.1742521583025163 -0.9743438151761387 -0.4649789463636549 -0.7434132489006698 -0.4807611889467537 0.4649789463636549 0.7434132489006698 0.4807611889467537 0.4806943639689125 0.8763139387563154 0.03173025669476218 -0.4806943639689125 -0.8763139387563154 -0.03173025669476218 -0.860825508538414 -0.01637030433322081 0.5086368616071968 0.860825508538414 0.01637030433322081 -0.5086368616071968 -0.7900884051782785 0.2562287310294556 -0.5568726509695724 0.7900884051782785 -0.2562287310294556 0.5568726509695724 0.4980018128158077 0.116895785697058 -0.8592610602828669 -0.4980018128158077 -0.116895785697058 0.8592610602828669 0.1096753208974513 -0.2434453283727799 0.9636937771302202 -0.1096753208974513 0.2434453283727799 -0.9636937771302202 0.1039430968539143 0.2597255547324514 0.9600721164763293 -0.1039430968539143 -0.2597255547324514 -0.9600721164763293 -0.2255378127122263 -0.9042298971151196 0.3626306498355663 0.2255378127122263 0.9042298971151196 -0.3626306498355663 -0.2462918182893521 -0.96830953209926 -0.04143658153657273 0.2462918182893521 0.96830953209926 0.04143658153657273 0.1176930609954982 0.5855060654368791 -0.8020791673707371 -0.1176930609954982 -0.5855060654368791 0.8020791673707371 0.2245571584220953 0.8769448063270271 -0.4249022114056911 -0.2245571584220953 -0.8769448063270271 0.4249022114056911 -0.8181617821641836 0.5749329272460735 0.007964130472813039 0.8181617821641836 -0.5749329272460735 -0.007964130472813039 -0.6304609217472185 0.6022863710895903 -0.4896633061087792 0.6304609217472185 -0.6022863710895903 0.4896633061087792 0.4950013122049483 -0.03894530890403111 -0.8680189881735012 -0.4950013122049483 0.03894530890403111 0.8680189881735012 0.8451068423974378 -0.5342149866024907 -0.0202181359757254 -0.8451068423974378 0.5342149866024907 0.0202181359757254 0.05381813097046343 -0.3554000960565684 0.9331636407950258 -0.05381813097046343 0.3554000960565684 -0.9331636407950258 0.2549211886610694 0.9663190211123204 0.03525247520606934 -0.2549211886610694 -0.9663190211123204 -0.03525247520606934 0.09422609105449224 0.2772421142827128 0.9561685279450699 -0.09422609105449224 -0.2772421142827128 -0.9561685279450699 -0.2549063720897547 -0.8600353702113481 -0.4419976283346649 0.2549063720897547 0.8600353702113481 0.4419976283346649 -0.7992910972255116 0.3271170577276409 0.5041112698994628 0.7992910972255116 -0.3271170577276409 -0.5041112698994628 0.4949280783144888 -0.08220662998103046 -0.8650365699108271 -0.4949280783144888 0.08220662998103046 0.8650365699108271 0.8144052318136436 -0.5798883687887207 -0.02176231003644295 -0.8144052318136436 0.5798883687887207 0.02176231003644295 0.05283031180687196 -0.3265213348335798 0.9437122315901633 -0.05283031180687196 0.3265213348335798 -0.9437122315901633 0.03142046943407338 0.8992579101895374 -0.4362888550743516 -0.03142046943407338 -0.8992579101895374 0.4362888550743516 0.03222159564070842 0.3414367672048336 0.9393522783147328 -0.03222159564070842 -0.3414367672048336 -0.9393522783147328 -0.02592514452303629 -0.9334526254606158 0.3577626069087477 0.02592514452303629 0.9334526254606158 -0.3577626069087477 -0.0404770076713309 -0.9985696498028432 -0.0349323108683382 0.0404770076713309 0.9985696498028432 0.0349323108683382 0.005341845474849757 0.5749862201913398 -0.81814565407206 -0.005341845474849757 -0.5749862201913398 0.81814565407206 -0.574906489257205 0.8178669076457746 0.02400520751614118 0.574906489257205 -0.8178669076457746 -0.02400520751614118 -0.421387756392962 0.8001699473257764 -0.4268025470387568 0.421387756392962 -0.8001699473257764 0.4268025470387568 0.6075099102665565 -0.6169939087150959 -0.5002501629548846 -0.6075099102665565 0.6169939087150959 0.5002501629548846 0.6082797322516791 -0.7931780715012599 -0.02939922144152161 -0.6082797322516791 0.7931780715012599 0.02939922144152161 -0.02730706582291779 -0.4112336310983517 0.9111208618014449 0.02730706582291779 0.4112336310983517 -0.9111208618014449 0.04234098605252406 0.9984387177568578 0.03643305894571202 -0.04234098605252406 -0.9984387177568578 -0.03643305894571202 0.03222062748171443 0.3506876557753391 0.9359380317368676 -0.03222062748171443 -0.3506876557753391 -0.9359380317368676 -0.05359885155536436 -0.905109373875957 -0.4217868945733366 0.05359885155536436 0.905109373875957 0.4217868945733366 -0.6412398403612154 0.6027366805185808 0.4748894198557863 0.6412398403612154 -0.6027366805185808 -0.4748894198557863 0.4462003108871671 -0.2575534308846376 -0.8570714747346032 -0.4462003108871671 0.2575534308846376 0.8570714747346032 -0.01844543975861133 -0.3829315652906932 0.923592541143621 0.01844543975861133 0.3829315652906932 -0.923592541143621 -0.1011384811445885 0.5194155014906922 -0.8485154945214249 0.1011384811445885 -0.5194155014906922 0.8485154945214249 -0.1630305828156131 0.871816205858354 -0.4619064107257507 0.1630305828156131 -0.871816205858354 0.4619064107257507 -0.05106358717678178 0.3804744010172239 0.9233806042121655 0.05106358717678178 -0.3804744010172239 -0.9233806042121655 0.178902982933125 -0.909502291302828 0.3752323344443225 -0.178902982933125 0.909502291302828 -0.3752323344443225 0.1644525628000263 -0.9860484084502497 -0.02576607811121025 -0.1644525628000263 0.9860484084502497 0.02576607811121025 -0.3395235070082521 0.940104617936637 0.03044824334878762 0.3395235070082521 -0.940104617936637 -0.03044824334878762 -0.2081541630010026 0.9007482565618307 -0.381214405192373 0.2081541630010026 -0.9007482565618307 0.381214405192373 0.4170563673189221 -0.7630525398774261 -0.4937760705677763 -0.4170563673189221 0.7630525398774261 0.4937760705677763 0.36720841985559 -0.9296698343243465 -0.02952923186442408 -0.36720841985559 0.9296698343243465 0.02952923186442408 -0.1118294411162269 -0.4246407291739832 0.8984288659800619 0.1118294411162269 0.4246407291739832 -0.8984288659800619 0.1429901777364974 -0.8969709229870444 -0.4183263945612977 -0.1429901777364974 0.8969709229870444 0.4183263945612977 -0.1697446487579901 0.9848270794668116 0.03608847138488001 0.1697446487579901 -0.9848270794668116 -0.03608847138488001 -0.04028722686337445 0.392989375681737 0.9186600513535665 0.04028722686337445 -0.392989375681737 -0.9186600513535665 -0.4425101174830575 0.7807516343174299 0.441148140011712 0.4425101174830575 -0.7807516343174299 -0.441148140011712 0.3615447145108744 -0.3924531599859243 -0.8457339632687769 -0.3615447145108744 0.3924531599859243 0.8457339632687769 -0.1003791110580368 -0.4059871763102075 0.9083492977565748 0.1003791110580368 0.4059871763102075 -0.9083492977565748 0.3904613070520585 -0.9205045247519884 -0.01453917488421713 -0.3904613070520585 0.9205045247519884 0.01453917488421713 -0.2027938743593213 0.4136934196415589 -0.8875428998463166 0.2027938743593213 -0.4136934196415589 0.8875428998463166 -0.3965966468495452 0.9173871351526347 0.03334582378857478 0.3965966468495452 -0.9173871351526347 -0.03334582378857478 -0.1368383598079337 0.3784286616007553 0.915459999871177 0.1368383598079337 -0.3784286616007553 -0.915459999871177 0.4037435534212635 -0.8135795210505415 0.4184250303195815 -0.4037435534212635 0.8135795210505415 -0.4184250303195815 -0.2130408944280989 0.9762376935143398 -0.03966790973920272 0.2130408944280989 -0.9762376935143398 0.03966790973920272 -0.1082278509567285 0.9240489369501362 -0.3666337333069769 0.1082278509567285 -0.9240489369501362 0.3666337333069769 0.3281946322400866 -0.7677392652593321 -0.5503314491720924 -0.3281946322400866 0.7677392652593321 0.5503314491720924 0.2328783177023817 -0.9718833678048814 -0.03479092594844219 -0.2328783177023817 0.9718833678048814 0.03479092594844219 -0.1473896970475713 -0.3971277019566815 0.9058509069062251 0.1473896970475713 0.3971277019566815 -0.9058509069062251 0.3468643571967391 -0.8319756076699162 -0.4330146717476977 -0.3468643571967391 0.8319756076699162 0.4330146717476977 -0.2233698916078353 0.3809815401075 -0.8971950499308505 0.2233698916078353 -0.3809815401075 0.8971950499308505 -0.4038432049329347 0.9142219902761136 0.03329892378256747 0.4038432049329347 -0.9142219902761136 -0.03329892378256747 -0.1223518925781642 0.4012286904715316 0.9077695480269434 0.1223518925781642 -0.4012286904715316 -0.9077695480269434 -0.3151267980724777 0.8509676693573339 0.4201774944533978 0.3151267980724777 -0.8509676693573339 -0.4201774944533978 0.3363313341491097 -0.4604980154032345 -0.8214759956804354 -0.3363313341491097 0.4604980154032345 0.8214759956804354 -0.1477826541164828 -0.3878707196895589 0.9097893118463153 0.1477826541164828 0.3878707196895589 -0.9097893118463153 0.6420208181518405 -0.5915231226189216 0.4877598430240047 -0.6420208181518405 0.5915231226189216 -0.4877598430240047 0.65653122842572 -0.7542974888116372 0.001429851136826754 -0.65653122842572 0.7542974888116372 -0.001429851136826754 -0.2874144392910325 0.2414427372665864 -0.9268755821081055 0.2874144392910325 -0.2414427372665864 0.9268755821081055 -0.6582580876005819 0.7522645242817573 0.02818466986796277 0.6582580876005819 -0.7522645242817573 -0.02818466986796277 -0.2201120227169055 0.3382984877345638 0.9149343313331178 0.2201120227169055 -0.3382984877345638 -0.9149343313331178 -0.2116578245121082 0.3682512626748039 0.9053131904822851 0.2116578245121082 -0.3682512626748039 -0.9053131904822851 0.5633763436292277 -0.6828683868338715 -0.4650783393170105 -0.5633763436292277 0.6828683868338715 0.4650783393170105 -0.2983763754703027 0.1912008658930078 -0.9351009397080986 0.2983763754703027 -0.1912008658930078 0.9351009397080986 -0.6749332731683019 0.7373564838805623 0.02775774575891243 0.6749332731683019 -0.7373564838805623 -0.02775774575891243 -0.2877855553736377 0.2722912126200352 0.918170446947732 0.2877855553736377 -0.2722912126200352 -0.918170446947732 0.7965483089217491 -0.25331969064047 0.5489443741288532 -0.7965483089217491 0.25331969064047 -0.5489443741288532 0.8952256744516675 -0.4451837288087445 0.01955605805113435 -0.8952256744516675 0.4451837288087445 -0.01955605805113435 -0.3232824650890451 0.02811582924454463 -0.9458847434607676 0.3232824650890451 -0.02811582924454463 0.9458847434607676 -0.8886118728611181 0.4583255718674542 0.01751027077537788 0.8886118728611181 -0.4583255718674542 -0.01751027077537788 -0.9067575697746833 0.4213139181950124 0.01689058884340025 0.9067575697746833 -0.4213139181950124 -0.01689058884340025 -0.2922720892736487 0.2931609731637135 0.9102931778527843 0.2922720892736487 -0.2931609731637135 -0.9102931778527843 0.7420188942410478 -0.4512429732643064 -0.4957698454614613 -0.7420188942410478 0.4512429732643064 0.4957698454614613 -0.3148535364835675 -0.004871793888643465 -0.9491277659978646 0.3148535364835675 0.004871793888643465 0.9491277659978646 -0.9986403082252574 0.05205747715350662 0.002748428673804703 0.9986403082252574 -0.05205747715350662 -0.002748428673804703 -0.3382050028932526 0.1884684216310399 0.9220070661691697 0.3382050028932526 -0.1884684216310399 -0.9220070661691697 0.8102448085935331 0.1385233204286664 0.5694862946943025 -0.8102448085935331 -0.1385233204286664 -0.5694862946943025 0.850292163442842 -0.1027524680073306 -0.5161832689133712 -0.850292163442842 0.1027524680073306 0.5161832689133712 -0.3038564751406507 -0.1820363668605298 -0.9351652279973406 0.3038564751406507 0.1820363668605298 0.9351652279973406 -0.2901697835728679 -0.1816600180615158 -0.9395749754751691 0.2901697835728679 0.1816600180615158 0.9395749754751691 -0.9998129191060721 -0.01934078147536413 0.0002469018372241945 0.9998129191060721 0.01934078147536413 -0.0002469018372241945 -0.3506145778820866 0.1891215684172913 0.9172254085752041 0.3506145778820866 -0.1891215684172913 -0.9172254085752041 0.8136157480820356 0.08554507510620872 0.5750751729973943 -0.8136157480820356 -0.08554507510620872 -0.5750751729973943 0.8477309982821077 -0.1457122358244851 -0.5100197044062617 -0.8477309982821077 0.1457122358244851 0.5100197044062617 -0.2332418363908272 -0.3605133273120471 -0.9031214683459979 0.2332418363908272 0.3605133273120471 0.9031214683459979 -0.9227566296420373 -0.3850317492158972 -0.01645462085294679 0.9227566296420373 0.3850317492158972 0.01645462085294679 -0.3711117305023067 0.08354994880662744 0.924821869085065 0.3711117305023067 -0.08354994880662744 -0.924821869085065 0.6915525193962799 0.4814310474029508 0.5384972233105345 -0.6915525193962799 -0.4814310474029508 -0.5384972233105345 0.8981535665174812 0.4388266490999631 0.02741063646882945 -0.8981535665174812 -0.4388266490999631 -0.02741063646882945 0.8429352430834632 0.2038986239245007 -0.4978810371258556 -0.8429352430834632 -0.2038986239245007 0.4978810371258556 -0.2289950518611368 -0.3335850885685384 -0.9144846936432756 0.2289950518611368 0.3335850885685384 0.9144846936432756 -0.8927785079939059 -0.4501277377975449 -0.01820866083598725 0.8927785079939059 0.4501277377975449 0.01820866083598725 -0.3806718630014748 0.05862662374499314 0.9228498532845144 0.3806718630014748 -0.05862662374499314 -0.9228498532845144 0.6731402347726009 0.739007696052626 0.02738338009226562 -0.6731402347726009 -0.739007696052626 -0.02738338009226562 -0.1328738513841334 -0.4812144041162298 -0.8664740255134076 0.1328738513841334 0.4812144041162298 0.8664740255134076 -0.5162158849207206 -0.6859595176090008 -0.5128164392422929 0.5162158849207206 0.6859595176090008 0.5128164392422929 -0.3820861233216923 -0.03800548351507161 0.9233448855047532 0.3820861233216923 0.03800548351507161 -0.9233448855047532 0.4981736372697926 0.7158538915589526 0.489260904905847 -0.4981736372697926 -0.7158538915589526 -0.489260904905847 0.7240770488769371 0.517255732976564 -0.4562443796832387 -0.7240770488769371 -0.517255732976564 0.4562443796832387 -0.6700269848456324 -0.7418464818371532 -0.02697474679230343 0.6700269848456324 0.7418464818371532 0.02697474679230343 -0.3799114723477743 -0.07529745765768819 0.9219531257329924 0.3799114723477743 0.07529745765768819 -0.9219531257329924 0.2919749971374274 0.8457010469135147 0.4466993847051776 -0.2919749971374274 -0.8457010469135147 -0.4466993847051776 0.4366617916404663 0.8991652104182367 0.02878200991706404 -0.4366617916404663 -0.8991652104182367 -0.02878200991706404 -0.02177044887002021 -0.544129826311796 -0.8387185342377337 0.02177044887002021 0.544129826311796 0.8387185342377337 -0.2991009114274306 -0.8171307614867489 -0.492783891188994 0.2991009114274306 0.8171307614867489 0.492783891188994 -0.3640544368667302 -0.1638864704625395 0.9168454568775367 0.3640544368667302 0.1638864704625395 -0.9168454568775367 -0.3516856267179471 -0.196019897617879 0.9153651837916281 0.3516856267179471 0.196019897617879 -0.9153651837916281 0.5385161458900962 0.7373175566309818 -0.4078764289578351 -0.5385161458900962 -0.7373175566309818 0.4078764289578351 -0.4313189614731646 -0.9015982752540596 -0.03293180123551914 0.4313189614731646 0.9015982752540596 0.03293180123551914 -0.3161452063528133 -0.2763503626536033 0.9075696587928439 0.3161452063528133 0.2763503626536033 -0.9075696587928439 0.09038315820220927 0.9018744521072597 0.4224374005099746 -0.09038315820220927 -0.9018744521072597 -0.4224374005099746 0.2181619494371877 0.9753973184674988 0.03170859416906728 -0.2181619494371877 -0.9753973184674988 -0.03170859416906728 0.08967458377019724 -0.5583310478931445 -0.8247574855581399 -0.08967458377019724 0.5583310478931445 0.8247574855581399 -0.09608809114761942 -0.8715032637221102 -0.4808837074192855 0.09608809114761942 0.8715032637221102 0.4808837074192855 -0.2086381313968603 -0.9773338619956301 -0.03589780388732829 0.2086381313968603 0.9773338619956301 0.03589780388732829 -0.3037588754766067 -0.2968283103013384 0.9053306024722899 0.3037588754766067 0.2968283103013384 -0.9053306024722899 0.3354134538968336 0.865290934758583 -0.3725176682650289 -0.3354134538968336 -0.865290934758583 0.3725176682650289 0.09634526151574765 -0.8729893959564508 -0.4781287537170853 -0.09634526151574765 0.8729893959564508 0.4781287537170853 -0.2454519458640523 -0.3778207053344043 0.8927512850128885 0.2454519458640523 0.3778207053344043 -0.8927512850128885 -0.1068596453381972 0.9026835445539788 0.4168254245960288 0.1068596453381972 -0.9026835445539788 -0.4168254245960288 0.01341617214996129 0.9993634397870952 0.0330563389041718 -0.01341617214996129 -0.9993634397870952 -0.0330563389041718 0.1974038384609054 -0.5321711683649947 -0.8233016288833256 -0.1974038384609054 0.5321711683649947 0.8233016288833256 0.003027027676952878 -0.9993161318622146 -0.03685248571513117 -0.003027027676952878 0.9993161318622146 0.03685248571513117 -0.2410784854031796 -0.3871111001126082 0.8899585159125762 0.2410784854031796 0.3871111001126082 -0.8899585159125762 0.1343276141167968 0.9239282355531835 -0.3582076320142694 -0.1343276141167968 -0.9239282355531835 0.3582076320142694 0.2993722838353061 -0.4646129549562232 -0.8333732883636714 -0.2993722838353061 0.4646129549562232 0.8333732883636714 0.2850152925201461 -0.8250136651719049 -0.4879741133597926 -0.2850152925201461 0.8250136651719049 0.4879741133597926 -0.1571424745819219 -0.4017635371120054 0.9021597989987807 0.1571424745819219 0.4017635371120054 -0.9021597989987807 -0.3048747392502304 0.8512690426142484 0.4270742446621255 0.3048747392502304 -0.8512690426142484 -0.4270742446621255 -0.191661035085276 0.980913794752465 0.03277460746308981 0.191661035085276 -0.980913794752465 -0.03277460746308981 -0.06722178414629125 0.9289421994874978 -0.3640709020884793 0.06722178414629125 -0.9289421994874978 0.3640709020884793 0.2140686791785048 -0.9760684691549257 -0.03827458838877772 -0.2140686791785048 0.9760684691549257 0.03827458838877772 -0.1633917211133873 -0.4107405372276532 0.8969923949229134 0.1633917211133873 0.4107405372276532 -0.8969923949229134 -0.4114640890829475 0.9109562830814607 0.02925668657845718 0.4114640890829475 -0.9109562830814607 -0.02925668657845718 0.392675059128166 -0.358586445760263 -0.8468896379432878 -0.392675059128166 0.358586445760263 0.8468896379432878 0.4758242106397891 -0.7262213496936595 -0.4961792738699808 -0.4758242106397891 0.7262213496936595 0.4961792738699808 -0.07402654048899283 -0.4019009932307778 0.9126859607462723 0.07402654048899283 0.4019009932307778 -0.9126859607462723 -0.5074201901332889 0.7336684332419206 0.4519462143988402 0.5074201901332889 -0.7336684332419206 -0.4519462143988402 -0.2747979300910873 0.8774232036407563 -0.3932106551588422 0.2747979300910873 -0.8774232036407563 0.3932106551588422 0.4416148108064678 -0.8965736984884186 -0.03364464378123158 -0.4416148108064678 0.8965736984884186 0.03364464378123158 -0.08548628211920895 -0.423666707208808 0.9017752584609322 0.08548628211920895 0.423666707208808 -0.9017752584609322 -0.6983849305252001 0.5260925321892732 0.4852681077404427 0.6983849305252001 -0.5260925321892732 -0.4852681077404427 -0.652935709757424 0.7571546896547233 0.01979229287951628 0.652935709757424 -0.7571546896547233 -0.01979229287951628 0.4651313472448723 -0.2078324456462522 -0.8604989856745141 -0.4651313472448723 0.2078324456462522 0.8604989856745141 0.6654114949270703 -0.5535400797209197 -0.500820249751824 -0.6654114949270703 0.5535400797209197 0.500820249751824 0.005395287547259124 -0.3680561013165262 0.9297879312810859 -0.005395287547259124 0.3680561013165262 -0.9297879312810859 -0.000867225763679104 -0.3981886224855724 0.917303149914202 0.000867225763679104 0.3981886224855724 -0.917303149914202 -0.4894566363220897 0.7496441153331802 -0.4454951195092927 0.4894566363220897 -0.7496441153331802 0.4454951195092927 0.6864967735788914 -0.7266359314524244 -0.02687755546994618 -0.6864967735788914 0.7266359314524244 0.02687755546994618 0.0725868616834736 -0.3044345845642266 0.949763513319053 -0.0725868616834736 0.3044345845642266 -0.949763513319053 -0.8316075752541561 0.2226775441602132 0.5087666971281429 0.8316075752541561 -0.2226775441602132 -0.5087666971281429 -0.8847522436102832 0.4660615723940678 -0.0002795785034157092 0.8847522436102832 -0.4660615723940678 0.0002795785034157092 0.5016079384743974 -0.02021602861251859 -0.864858825616414 -0.5016079384743974 0.02021602861251859 0.864858825616414 0.8822555810296323 -0.4704188499675612 -0.01819877296036858 -0.8822555810296323 0.4704188499675612 0.01819877296036858 0.9073054664746716 -0.4200752144590276 -0.01826484881898978 -0.9073054664746716 0.4200752144590276 0.01826484881898978 0.07682261342699291 -0.3297455999359967 0.9409389594384412 -0.07682261342699291 0.3297455999359967 -0.9409389594384412 -0.6901848685364405 0.5152374056275222 -0.5081094991097458 0.6901848685364405 -0.5152374056275222 0.5081094991097458 0.4967362894971037 0.01610327605483461 -0.8677521208253837 -0.4967362894971037 -0.01610327605483461 0.8677521208253837 0.881137121676604 0.07683693444745683 -0.466576315631416 -0.881137121676604 -0.07683693444745683 0.466576315631416 0.121346200908773 -0.213182952753967 0.9694473313079507 -0.121346200908773 0.213182952753967 -0.9694473313079507 -0.8530883309270968 -0.1294128720969493 0.5054627663553852 0.8530883309270968 0.1294128720969493 -0.5054627663553852 -0.8141432837357056 0.1226372975117968 -0.5675656850154398 0.8141432837357056 -0.1226372975117968 0.5675656850154398 0.4880880001696214 0.1805403350483941 -0.8539176140067805 -0.4880880001696214 -0.1805403350483941 0.8539176140067805 0.9999911939194426 0.00358340787864473 -0.002184324047165417 -0.9999911939194426 -0.00358340787864473 0.002184324047165417 0.1346498631346914 -0.2158552630592423 0.9670966444815297 -0.1346498631346914 0.2158552630592423 -0.9670966444815297 -0.852543754197059 -0.09185104189736706 0.5145216548231503 0.852543754197059 0.09185104189736706 -0.5145216548231503 -0.8136703326963612 0.1551561998301619 -0.5602384700679308 0.8136703326963612 -0.1551561998301619 0.5602384700679308 0.4242136223232629 0.3566618937050531 -0.8323671643055735 -0.4242136223232629 -0.3566618937050531 0.8323671643055735 0.7885484681636336 0.4252011479454887 -0.4442919053309724 -0.7885484681636336 -0.4252011479454887 0.4442919053309724 0.1578814167796198 -0.1001769572785845 0.9823634945711617 -0.1578814167796198 0.1001769572785845 -0.9823634945711617 -0.7547596030705374 -0.4463957743418704 0.4806961142161715 0.7547596030705374 0.4463957743418704 -0.4806961142161715 -0.9002422811471575 -0.432446934138268 -0.05053201351000254 0.9002422811471575 0.432446934138268 0.05053201351000254 -0.784429404362836 -0.2204048515778357 -0.5797346039110642 0.784429404362836 0.2204048515778357 0.5797346039110642 0.9025741462529998 0.4302707163807931 0.01506722073999456 -0.9025741462529998 -0.4302707163807931 -0.01506722073999456 0.1694471870219152 -0.07902390383136461 0.9823659569801935 -0.1694471870219152 0.07902390383136461 -0.9823659569801935 -0.6778132556286053 -0.7334246779500521 -0.05155028872871112 0.6778132556286053 0.7334246779500521 0.05155028872871112 0.3277239054474204 0.4836963039014177 -0.8115632614839077 -0.3277239054474204 -0.4836963039014177 0.8115632614839077 0.6008326756885273 0.6729871147698903 -0.4313796925895602 -0.6008326756885273 -0.6729871147698903 0.4313796925895602 0.1681094028706255 0.02892216114368819 0.985343969008417 -0.1681094028706255 -0.02892216114368819 -0.985343969008417 -0.5960298095862601 -0.6811322263594015 0.4252144827016733 0.5960298095862601 0.6811322263594015 -0.4252144827016733 -0.6424561725011055 -0.5590930582546198 -0.524084934554244 0.6424561725011055 0.5590930582546198 0.524084934554244 0.6860325639933897 0.7271010793847965 0.02614080140545522 -0.6860325639933897 -0.7271010793847965 -0.02614080140545522 0.1672300435761301 0.06358661083851493 0.9838652628523872 -0.1672300435761301 -0.06358661083851493 -0.9838652628523872 -0.3992045197284531 -0.8338741797123846 0.381168734076357 0.3992045197284531 0.8338741797123846 -0.381168734076357 -0.4366474483440545 -0.8983639980873879 -0.04776120596331298 0.4366474483440545 0.8983639980873879 0.04776120596331298 0.21652768302515 0.5604449753332692 -0.799385509067716 -0.21652768302515 -0.5604449753332692 0.799385509067716 0.3958710000720266 0.8145634474200975 -0.4239959214769163 -0.3958710000720266 -0.8145634474200975 0.4239959214769163 0.1470166178175257 0.1606718982912375 0.9759972618737133 -0.1470166178175257 -0.1606718982912375 -0.9759972618737133 0.1367856755483046 0.1896587772198493 0.9722752836456687 -0.1367856755483046 -0.1896587772198493 -0.9722752836456687 -0.4363458210862009 -0.7642315505540981 -0.4749236376074457 0.4363458210862009 0.7642315505540981 0.4749236376074457 0.4488835511081195 0.8930107740742522 0.03217631010338277 -0.4488835511081195 -0.8930107740742522 -0.03217631010338277 0.09538016543152474 0.2729069538911774 0.9573005894493608 -0.09538016543152474 -0.2729069538911774 -0.9573005894493608 -0.1991257440922289 -0.911641678242569 0.3595252265568972 0.1991257440922289 0.911641678242569 -0.3595252265568972 -0.21763138543582 -0.9751835671834637 -0.0406643623904359 0.21763138543582 0.9751835671834637 0.0406643623904359 0.1020096596484588 0.5870233287360724 -0.8031174514714685 -0.1020096596484588 -0.5870233287360724 0.8031174514714685 0.1981179938194849 0.882839950676482 -0.4258437295704719 -0.1981179938194849 -0.882839950676482 0.4258437295704719 0.2257180373774269 0.9735631159368801 0.03501752261020089 -0.2257180373774269 -0.9735631159368801 -0.03501752261020089 0.08665528999423607 0.2887177158272826 0.9534846308585636 -0.08665528999423607 -0.2887177158272826 -0.9534846308585636 -0.22658225065359 -0.8704022707202611 -0.4371045307632571 0.22658225065359 0.8704022707202611 0.4371045307632571 0.1011007468646662 0.8940055806808013 -0.4365004704407433 -0.1011007468646662 -0.8940055806808013 0.4365004704407433 0.06443326429145652 0.3425219535590591 0.9372977466007442 -0.06443326429145652 -0.3425219535590591 -0.9372977466007442 -0.09417717869610834 -0.929341111713472 0.357009463588865 0.09417717869610834 0.929341111713472 -0.357009463588865 -0.1141361063721672 -0.9931842134820167 -0.02362344835770253 0.1141361063721672 0.9931842134820167 0.02362344835770253 0.05548436446878843 0.5705421072592388 -0.819391963069984 -0.05548436446878843 -0.5705421072592388 0.819391963069984 0.1183676936289435 0.9923371121115479 0.03544213637857988 -0.1183676936289435 -0.9923371121115479 -0.03544213637857988 0.06845085986894042 0.3516465771793187 0.9336268872206244 -0.06845085986894042 -0.3516465771793187 -0.9336268872206244 -0.1175175581890131 -0.9006103052869663 -0.4184384082851493 0.1175175581890131 0.9006103052869663 0.4184384082851493</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1680\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1678\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1681\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"5340\">-11.74144888926981 0.2995156568493015 -11.72844578741597 0.3612383321323039 -11.62607680371758 0.2695236410015677 -11.78256668186463 0.262761006242173 -11.65678044938733 0.2324514479488458 -11.67940949101347 0.1715944909997955 -9.580882603731697 1.421600639414946 -9.607195934743855 1.36255963073953 -9.727642328860437 1.456478716738787 -12.34296233652733 -1.662321588895963 -12.47259485116248 -1.563632893161546 -12.35690281990772 -1.592852254899214 11.25359972635966 3.202696558467046 11.12205437894896 3.192040233868029 11.22505410564551 3.256420738249801 -12.2778256741957 -2.055348678266946 -12.27481420880708 -1.991985827857275 -12.17174214833166 -2.08069444679817 12.57910007025483 0.03536161511213354 12.43937175444395 0.008946513143718278 12.55876004226043 0.08460807200294225 -9.467294573785217 1.521881094364595 -9.601346415461196 1.556031399693923 -9.586767854433372 1.616566234433712 -12.462725789786 -1.723326776848073 -12.46730567443074 -1.654941739996449 -12.33663307886079 -1.752777897535181 -11.28869336132121 0.4398648638747889 -11.28298616308152 0.5100510143314823 -11.17184969501088 0.4156940846380962 11.07615252924521 3.347637650004606 11.0612927033548 3.408852629792498 11.19269111039786 3.420577286670575 12.41561520551233 0.2612536600144755 12.41016093304932 0.3193238275237464 12.54904096458563 0.3483757592762649 -12.13571358259024 -2.203830549269758 -12.24023606917502 -2.116178483286911 -12.1236442051423 -2.141281075889086 -11.21175291259949 0.6206576612046281 -11.10526099853357 0.5963948490635626 -11.10146977004413 0.5256831566832035 12.42295638218037 -2.240499018688151 12.41762828509784 -2.188888247691884 12.57370146367941 -2.147123103745953 -7.586069925680303 1.949817941538308 -7.60819537041221 1.890715946886392 -7.749304143157143 1.988341492969443 -11.38058480781225 -3.271030873764528 -11.36067456409951 -3.337695502945139 -11.51496513825033 -3.237689075113913 9.522000295042211 4.628290408179952 9.462781273686264 4.668011820203072 9.633060442370404 4.683730091613124 11.76523208046429 1.72660165246162 11.71574001668296 1.774431773310611 11.86479566838173 1.780438597084393 12.26293617741474 -1.640409236288337 12.2600949049113 -1.712061773181668 12.11792521977338 -1.667086849452554 8.582894749084975 5.650800462674184 8.442122972975994 5.654527718153445 8.544366554184844 5.705255006519111 10.69429534297361 -1.561597904695199 10.52788443167712 -1.522357153209414 10.69630887454192 -1.489913897716416 -9.900225467786489 -4.636824579757597 -9.910425623077938 -4.574069523589055 -9.789317732973457 -4.656192700655551 -8.116123295485657 1.988761401734192 -8.101080489202101 2.058539639742051 -7.994956948560539 1.970766669297734 8.867639124559188 -1.423482573657848 8.682830784924246 -1.388297678149426 8.869004640289541 -1.35179908183861 12.4814838856345 -2.535243935387405 12.32361028046125 -2.572587378820387 12.46077931862412 -2.493028243144972 -7.467743502836397 2.038189770179729 -7.617401495150659 2.075532089734611 -7.608093276448374 2.136490070290303 -11.32310925696379 -3.341949109365313 -11.47003562461896 -3.307732454895078 -11.47779287200183 -3.242319126658382 9.345263057604573 4.996263702353766 9.470591739150775 5.05977166077629 9.51526332418165 5.013750705311483 11.69207919916437 1.956179677677225 11.80411877732831 2.016810328045327 11.84108299496973 1.962935924976196 11.53250658600702 -3.2937293863427 11.65661798818057 -3.244338195426174 11.66710759314982 -3.305456648502024 12.11873944609426 -1.665530933477226 12.26090874005484 -1.710506622428359 12.11573781677575 -1.737184806741658 10.69481208164027 -1.560248948535748 10.52640090788366 -1.59267802114744 10.5284012816735 -1.521007904880169 8.618093920705027 5.813962404226531 8.500860657116686 5.757708680955643 8.477340463340058 5.818095675446084 8.863835676057466 -1.43583079714488 8.67773387194017 -1.472342261358682 8.679026700309082 -1.400647969371447 -9.651361284927219 -4.665461375826346 -9.773549465450035 -4.584334530269455 -9.652501269993472 -4.603005449856767 -7.989509410617246 2.167613199549099 -7.878378916217077 2.149052074777905 -7.884060026655901 2.079338842195392 11.58286659727549 -3.207762407974214 11.717654063922 -3.218079582774465 11.60866230772046 -3.263443251872617 6.8024959949886 -1.315169183001223 6.604245192873673 -1.354082244872524 6.604863575770278 -1.282392355259058 11.56007032580767 -4.512516076480284 11.55093439552774 -4.467841717403029 11.72558156553137 -4.418324245411744 -5.32706318121881 2.330758983969183 -5.343308444112894 2.270707543166831 -5.500806707047188 2.370979239898025 -9.826589170379434 -3.974607359006392 -9.81029134104285 -4.039041553451645 -9.976624520188517 -3.938214189792536 6.876764242952964 5.946212405802218 6.819011396469598 5.982111922878704 7.011396664271641 6.003770116684303 11.71583660752506 -1.725252336186162 11.84708922395542 -1.776039007761535 11.71371726709966 -1.796926660236255 8.785357077343116 -1.645965651398126 8.920027470748808 -1.702637621248604 8.78224832741803 -1.717616460982631 11.84807912321745 -1.708398896539467 11.84459315430042 -1.780039199584147 11.71334063005863 -1.729252380568548 6.647801241743226 6.377228777611297 6.799473637701535 6.443314285184105 6.839782541090891 6.40100200948506 5.442131985907679 7.094449136178818 5.485940593849181 7.041522291144609 5.328097840241385 7.057449095653953 4.42124092548154 6.964040605521635 4.592010374627861 7.032737066621546 4.621381257541662 6.990114533605977 -5.658289412791666 -5.80177853690927 -5.677452900271285 -5.74116267308825 -5.533056881975005 -5.815300248078828 -4.171628216484647 2.511730079263448 -4.308183490024966 2.524016656431328 -4.287791378959351 2.592006132494689 7.243050797876385 -7.790876490447768 7.224362489216523 -7.848287411221677 7.092176616415644 -7.819598782151662 2.096998671710746 7.340669616702345 2.280459009696378 7.411437032476648 2.297043273553935 7.366325298233281 6.797944273614725 -1.332168338789559 6.6003112185224 -1.299393883842578 6.79851282549804 -1.260482466016632 11.53173238421809 -4.690202647446402 11.35516371564881 -4.735306374773988 11.50440471180585 -4.654589799965487 -5.259056507240328 2.356389715352195 -5.418447200525968 2.395472743371997 -5.416163797169103 2.457040261511123 -9.733313145750167 -4.008711148135379 -9.896791658206171 -3.971258390226221 -9.900126551066935 -3.908375954930581 8.902223862974255 -1.659890107778779 8.90028411629473 -1.731567578837551 8.765611732637771 -1.674898535885492 4.886278355500735 -1.510110149169463 4.883899426680693 -1.581778252261581 4.731457784751854 -1.519715201032139 4.628567068798929 6.584826676335769 4.579836239075592 6.621244609343353 4.780336367366727 6.645547777093944 5.628892475123588 7.188550491108445 5.500078713141996 7.149740799693046 5.471304793045595 7.205970412741817 2.299889899483088 6.950322569585003 2.262372408423257 6.988786366947189 2.462758520709198 7.012736027295794 -5.377745294550071 -5.720513876955472 -5.522807977343678 -5.647186116354863 -5.38631330642562 -5.659668017166704 -4.060375952524813 2.671271332259083 -4.069921487613713 2.603857562684286 -4.185656402419397 2.684515495011054 7.396324549621735 -7.608717857458358 7.529531508741336 -7.634317416186927 7.397141033844306 -7.663371343043143 4.73128336449428 -1.519980003883965 4.883725038692171 -1.582043006063475 4.728976788938931 -1.591648050335046 -0.2623939151831403 7.192021975820668 -0.2882031907343582 7.234366400791881 -0.09856620857761261 7.255684692062035 4.600984050270906 -1.25497677049042 4.401147185348393 -1.294499925841812 4.401034565651177 -1.222812712557103 10.34843091374799 -6.102023026030048 10.32865731907952 -6.063442410896943 10.51594670131318 -6.007619749890765 -3.024566038011676 2.614173059664148 -3.033320735940625 2.552965586811446 -3.199731901498446 2.655063304862684 -7.869327831525308 -4.396665505132675 -7.859232112623701 -4.459099537014789 -8.029118937316149 -4.358607758926194 2.80338546977934 7.817560174019732 2.651174619007168 7.793309069816327 2.625530491847687 7.844952543933458 2.501163748330692 7.639824342170074 2.545905629507471 7.590475487409764 2.367395524972351 7.61508978971215 -7.789523853502827 -4.41638889590269 -7.963648209580031 -4.377043011570966 -7.959731909486614 -4.316234069489483 -1.452510394040529 -5.753264390215425 -1.594887257913027 -5.744142072134474 -1.615132328423253 -5.685031944660874 -0.6805255439388658 2.446925120460911 -0.8355996490348416 2.454796094465432 -0.8154635459344278 2.520751271812972 2.206032798767428 -9.232251956037208 2.177164481613696 -9.281967985823835 2.030900249366722 -9.245132810952153 1.18078117221213 -1.512357968187159 1.006539800950368 -1.445972828189044 1.182269970665983 -1.440676522659683 -5.699138178084543 -4.723544166976328 -5.874720303201966 -4.68374440348691 -5.862301994908608 -4.624578427908912 -0.2472358015268761 7.56848280017925 -0.4366062880899663 7.545745711628018 -0.2519689592964963 7.617707515150494 4.603779124356972 -1.244203004424983 4.40382998669326 -1.212037611753788 4.603675541672037 -1.172513637404377 9.996371707486201 -6.299288350336639 10.14814460439911 -6.219257254932239 10.18623724756709 -6.249139634979684 -2.924899355663001 2.658345360810463 -3.085560799920206 2.697903569888154 -3.090838590846902 2.76091732316388 -0.2425418896444004 7.759050048208717 -0.2033617495848006 7.71296278464953 -0.3965134596743597 7.743115340900113 -5.797455951671555 -4.72888951395918 -5.795755319060717 -4.789761749946327 -5.958540525269064 -4.690410918465032 -1.346012285661594 -5.572166732864312 -1.33801683863705 -5.632068485196453 -1.500993267249134 -5.564361484786845 -0.5873198502714261 2.598794170090538 -0.5950487446150343 2.533777516879111 -0.7296950531256075 2.607932517163409 2.39871123418593 -9.091707786376636 2.546232638608836 -9.125297466938982 2.392123971019934 -9.141003364633905 1.178743975734375 -1.515679005070357 1.002977098907413 -1.520986627162868 1.004502142666655 -1.44929461518139 0.124197980807792 8.013735527304492 -0.0508325942405391 8.000322499871041 -0.06794789182396233 8.047632544815455 -3.462659446866571 -5.088523691965518 -3.469555344496901 -5.148244870947446 -3.616068461591926 -5.050932896824789 -3.190935871667016 7.152346912506171 -3.2075366039817 7.19995355679202 -3.036510958986105 7.21606128078029 2.184128383719081 -1.195890384387676 1.993906149719048 -1.23448887110764 1.993099842741572 -1.162802263894674 8.85340002942193 -7.37705073251813 8.820881506475359 -7.343338260105415 9.010989805826339 -7.284395031560132 -0.3721558219405674 2.922912716702614 -0.3741360009975697 2.859781547657486 -0.5389588898993131 2.962843513785378 1.841010860811883 -5.339151004110392 1.685044987527295 -5.33275759033376 1.669306136396076 -5.273812819038381 2.284246773658898 2.199535898117158 2.114348079412392 2.204579909077931 2.130035244899707 2.268703560682782 -1.574382956317714 -9.07560624458185 -1.598843878068589 -9.12128588575635 -1.766745344757587 -9.080675506967056 -1.929664949831288 -1.494754635054952 -2.12136419378335 -1.425536299440526 -1.928892107442987 -1.423055163383718 -2.789005220763803 7.608930183053209 -2.759875383825831 7.565405457637623 -2.958477020432813 7.598235637733082 -0.2305862254098634 2.984710626421055 -0.3835328563344093 3.023449877844294 -0.3947774450083669 3.088394675990279 -3.360529271533014 -5.074723276154611 -3.527773611387869 -5.03589488259901 -3.507442583608847 -4.977785405454979 -3.164103394036962 7.498919628037291 -3.334948320080214 7.481665859646864 -3.161665334791502 7.554469576134271 2.141946816386589 -1.347016227446665 1.950914292275701 -1.313942341068258 2.141550528157461 -1.275684769070103 8.367545931313082 -7.521889161878075 8.510904523052702 -7.443822241932844 8.560669073191862 -7.469360101513356 1.935564192398618 -5.150695691254837 1.937625305694038 -5.210663637304537 1.765664580042745 -5.145743430516593 2.352257450953568 2.340008797729845 2.35030451613772 2.277053980511773 2.196298392948655 2.346504281828393 -1.436569806362055 -8.957979159587007 -1.267486835270482 -8.995433275758586 -1.437147823229758 -9.004116153599394 -1.929011731256789 -1.493625859443813 -2.121456364780773 -1.496098091524942 -2.120710804885195 -1.424407231915603 -2.396398774805084 7.919002447977963 -2.588716161691157 7.912445480916588 -2.593738818145487 7.956244148618748 2.84725765789131 3.15343715271799 2.849139194257781 3.087909424565146 2.696417707258635 3.191008792351492 -0.653755907212582 -5.529349150344372 -0.6675606502791859 -5.588633021257145 -0.7923726897496097 -5.493801660748249 -6.51669874472976 6.504786669363671 -6.531014767564402 6.559216844638987 -6.379514552670415 6.56676647444814 -0.9922128335761016 -1.328294778651259 -1.165643109812238 -1.363229300725369 -1.166513227596551 -1.291900445344396 7.108951019253105 -8.425929485828988 7.06372407601108 -8.395615705091698 7.24391227245696 -8.335699164961863 4.573621223592019 -4.916651511719975 4.411314280187598 -4.911262491498004 4.403269182855177 -4.851607402140906 4.904112069894061 1.918793779259097 4.727402268474455 1.922791412813862 4.736237152207083 1.985380271621021 -4.437798329623791 -8.397316982537653 -4.451040071313446 -8.442264935614094 -4.637930829928404 -8.399912369502895 -4.597358119168579 -1.507892447416386 -4.797520813419397 -1.437615233207941 -4.597312546022032 -1.436199197686443 -5.25814206742687 7.196860485896443 -5.241338446088387 7.154917703844793 -5.434563461629423 7.187607580935707 6.497323518171333 -8.52474281684847 6.622369366610961 -8.44848361847532 6.680889858458037 -8.471549336480635 3.015012548645007 3.202968935163313 2.876850300405353 3.23959512920371 2.863088353439498 3.306794710839682 -0.5529586887712751 -5.517447700459916 -0.7041704637670615 -5.480869536733048 -0.6782037517688422 -5.422970305899322 -6.431651721616982 6.769318716729861 -6.583112641813516 6.761295992214714 -6.426791496494857 6.829938492278095 -0.9795284992144193 -1.290583599234043 -1.153827927395088 -1.254186403510166 -0.9824627614352688 -1.21896596610352 4.64657151577039 -4.760996021544277 4.640355262090291 -4.821849173762274 4.469828209252315 -4.757089485762245 4.950214427835618 2.045401205283817 4.955626831047628 1.984088816903914 4.787915037566915 2.050929208458205 -4.182367516991635 -8.341623084630752 -4.358971374696691 -8.347879702256856 -4.370280096107651 -8.302167619387358 -4.596201381844119 -1.505827281507136 -4.796353063114546 -1.5072360563653 -4.7963637397194 -1.435549474411177 -5.057470471956677 7.582553290774086 -4.865669217241129 7.545031703597378 -5.065817293544431 7.540918553991048 4.957591516893525 -9.323477817304287 4.903639879733459 -9.294322505478187 5.067308156413816 -9.234710711719869 6.654209712705845 2.946736603795653 6.654873907429679 2.878672557132365 6.522398766810107 2.980568470682666 2.923934359186434 -5.922054866367398 2.907208536146099 -5.982025405549064 2.802982723945541 -5.889461530968069 -9.802638322290378 4.800814161494554 -9.820299511097669 4.859944077207221 -9.684135151580561 4.857534280005362 -4.860752889845385 -1.41028527103227 -4.864187674367006 -1.338681412253571 -4.70940169383392 -1.379459452976369 6.958807523722374 -4.563540491940228 6.799021687318941 -4.557461396095697 6.799650798308866 -4.496414082661399 7.284856738574284 1.609208457925939 7.109567093749364 1.613872955632837 7.110902738525677 1.675324021364 -6.789442135413402 -7.534503654495818 -6.788979414593166 -7.581071930070149 -6.986459445370556 -7.538395863380834 -7.008129643592699 -1.549175893199101 -7.205871408085209 -1.479708683959871 -7.008829431586213 -1.477491424499945 -7.832844768012574 6.298513577097724 -7.827612006397824 6.256565743114188 -8.006139552828646 6.285788516270243 -4.809665896933416 -1.209971681952114 -4.657252871414563 -1.179092909372824 -4.654884380676176 -1.250760207850114 4.210688179725525 -9.378079285201636 4.311158735613041 -9.302915101020057 4.378167916048067 -9.325424874845838 6.697864003470544 3.055986178291118 6.829321579968937 2.953277954181535 6.708648164460842 2.986503354732487 3.065895121767051 -5.887984999060847 2.933787341464837 -5.854709724497033 2.960982918963832 -5.795902234497583 -9.670129115792346 5.037702401030357 -9.806288946486646 5.040265670107184 -9.671903276790584 5.103116196075329 7.043136576742679 -4.40595530181414 7.028554200167543 -4.468134874763893 6.869188407948853 -4.401316131635946 7.352803372952859 1.769272242920003 7.366683665009312 1.708971074642476 7.193031605693971 1.775576025144588 -6.565620979244169 -7.515410889788616 -6.740790494041411 -7.522325461626006 -6.764030400945428 -7.475491577683311 -7.00044973843489 -1.535394491632223 -7.197508846279785 -1.537620689163504 -7.198189008208616 -1.465922887936483 -7.639853404915388 6.727583692399423 -7.462811141342913 6.693220984734914 -7.659634417423792 6.685590613259228 -9.091993175251236 -1.400163686848697 -9.095104423048859 -1.328513963169547 -8.957198678408712 -1.374794444840026 2.088802938963234 -9.997176616541324 2.027730622655659 -9.965915446612344 2.167946043729305 -9.907699787770394 10.37420003917934 1.776465948431914 10.3674006851155 1.706671799040516 10.2568571852293 1.805140932588809 7.332845110279943 -5.645878000589251 7.32011928773478 -5.707650147655692 7.225554091578649 -5.617044665746957 -12.00365085640907 2.103529000028071 -12.11083833930589 2.056083463161218 -12.13936301001261 2.117543901426363 9.128422547300703 -4.167615688441376 8.979583680000857 -4.159240890501897 8.988062650575198 -4.096364795214314 9.62942118449809 1.180079220242551 9.468566151109352 1.187702421762954 9.462964868310205 1.248825602015191 -8.856260462870637 -6.481852542666997 -8.844030139595029 -6.531199063870697 -9.039758192796155 -6.490164318717562 -9.231914109724617 -1.608956791029672 -9.418010000617326 -1.542047426818185 -9.233337730757027 -1.537265740118989 -10.55432641586378 4.272124490870982 -10.55468275467456 4.227341829008037 -10.71373661621766 4.247774287076543 -11.96096458773688 2.293891907884383 -12.09652153339656 2.308807428075515 -11.97451007278699 2.360528953007108 -9.095146740151805 -1.328592620864423 -8.960384110906421 -1.303225258190149 -8.957240991936562 -1.374873095942348 1.094721441473835 -9.972217113667822 1.171234339606149 -9.896583233264874 1.23975293336472 -9.921829482104302 10.39408689113141 1.80897667360674 10.5034567901416 1.709699847662922 10.39601587426526 1.73818566891451 7.483868840123264 -5.591557105054264 7.36655530723886 -5.562501044965872 7.388357740887591 -5.501567722421501 9.21742561308921 -4.018882356122719 9.195921656679007 -4.082676604849426 9.055290784876068 -4.011757143174085 9.629174249886784 1.255980265621598 9.646737705419934 1.195861539282453 9.480371447671427 1.2647426972968 -8.675520694219362 -6.523252221111428 -8.836062699078173 -6.534223681332305 -8.872044167421587 -6.484641757133002 -9.250791470911054 -1.642268815319364 -9.434490888544763 -1.647091110091293 -9.436893779928141 -1.575370499087178 -10.45707069175856 4.726532492156542 -10.29913629310245 4.701291922158695 -10.48184197192814 4.679613162712742 -12.63977616208932 -0.9273837207853625 -12.74979171327828 -0.9632254569319163 -12.78919055579869 -0.9032802440668931 -12.12116219307873 -1.481798284927145 -12.12450508476186 -1.410156043194183 -11.98906089864303 -1.462353739325835 -2.535001836699398 -9.906907097943615 -2.412670307475611 -9.853889246526428 -2.478112408157837 -9.946148530229237 12.50865967383724 -0.2513612785534403 12.49146251114397 -0.3208641598353222 12.39295065094641 -0.2289750108097736 11.31895732277467 -3.810554978819632 11.31814963420504 -3.873852936035063 11.21343409370321 -3.786668892533225 11.07707933209384 -3.550728295677646 10.94469483375759 -3.538567788386231 10.95833133003168 -3.473446396453449 11.63106600647887 0.2061548452155761 11.48698905095698 0.2180093359482591 11.48046761016169 0.2794816087649741 -10.6712569807544 -5.117824792180593 -10.64809699011871 -5.171932325189414 -10.83379115271743 -5.133620797087398 -11.27988741507947 -1.748918738247703 -11.44541448108541 -1.686180825741681 -11.28293958390806 -1.6772134093654 -12.39938061167506 -0.4161167486264854 -12.38865371823923 -0.4662161340696799 -12.52963891058665 -0.4659498291942053 11.30927551074504 -3.664382577826464 11.41503851120376 -3.75078062260317 11.29980337060023 -3.727178829093584 -12.66463773237975 -0.6781409895137429 -12.64104808831509 -0.741897834317016 -12.79002850106259 -0.716185648479387 -12.12526583663069 -1.411368076138394 -11.99325727439361 -1.391927485522272 -11.98982170169331 -1.463565854456969 -3.632906423484318 -9.660405237300248 -3.566552739560311 -9.582546796987295 -3.505217974087447 -9.615885002960656 12.52991061831078 -0.3724242446203644 12.42393325626139 -0.3498166024465829 12.4323418599017 -0.2799144889856022 11.15233775538905 -3.421362161783144 11.12729216168632 -3.487077713208864 11.00819875187688 -3.410125439206657 11.65777484585111 0.2767919104626061 11.67564296320735 0.2157896464781605 11.52550440551939 0.2896976605287122 -10.51807316836586 -5.240924733950831 -10.66130814058692 -5.257961011479553 -10.70453960265825 -5.205009393716994 -11.26384167887985 -1.721771597922077 -11.42721805654077 -1.730696341314952 -11.42936266179998 -1.659023754208922 -12.52972168922306 -0.3846057967100768 -12.38873673943226 -0.3849423132242902 -12.53591580490833 -0.4398196182138159 12.62792554990162 -1.101263352783651 12.6400791714095 -1.163773215646772 12.51119708843168 -1.083369849221743 -11.86485453032099 -3.402588128043231 -11.99008255230615 -3.427512120177802 -12.03463162676741 -3.371110583381843 -12.58964605089722 -1.427822778329626 -12.59259175567948 -1.356170908843144 -12.44489492035745 -1.414216302568857 -9.383061769334239 -6.801552598409037 -9.256724540624576 -6.768127164853158 -9.352222490927115 -6.854946803153172 12.41861655384095 -2.060790323269516 12.39461041287445 -2.128417416854343 12.2910786336016 -2.044728136316965 12.45813533263003 -2.402572675965091 12.34280676518138 -2.385298577056727 12.35654189842645 -2.317549214513047 12.52165489348191 -1.616972652003023 12.64858877083594 -1.697364788690704 12.52305040564574 -1.67956377972338 -12.08278393720486 -3.202849801472213 -12.05594895768474 -3.262135795159361 -12.22298998974308 -3.229226508116268 -12.6516029425873 -1.773830985726373 -12.50857597536363 -1.75963628194757 -12.50568850042542 -1.831292728905742 -9.343902537534031 -6.935784564243342 -9.257470007907044 -6.861887306191102 -9.215933138648033 -6.906660176224864 12.36268158078461 -2.196490795645535 12.2456680767882 -2.179789116329019 12.25976053359167 -2.112336626754983 12.50719410694841 -1.024809426739362 12.6368248416923 -1.104464511988787 12.50950434925755 -1.087312927530483 -11.96484813240372 -3.218363235038317 -11.93796267029835 -3.27703910065273 -12.10709183690796 -3.243472356547868 -12.59326632727019 -1.357352994966052 -12.4483492725467 -1.343747833019326 -12.4455687913008 -1.415397285402063 -9.877332938997045 -6.199439506866744 -9.839047067623984 -6.245437223394697 -9.968073484456209 -6.271748555655978 12.51067197777951 -2.264394422211805 12.48707835841465 -2.332238428219439 12.38479057784987 -2.247731725578681 12.63240496506322 -1.701099363938241 12.64351064881452 -1.763772357297994 12.51738461037265 -1.682597194654001 -11.98937488519044 -3.412015789481183 -12.11259730909406 -3.437965774524124 -12.15705428745152 -3.38118091886831 -12.64844737687594 -1.844992647812353 -12.65133571213523 -1.773334687458416 -12.50542168328711 -1.830797080135709 -8.656578494107571 -7.45388394231253 -8.531792649229395 -7.417193489479274 -8.621547105244462 -7.505938558919116 10.97555340259266 -3.12495378456293 10.95065784997287 -3.190445665850969 10.82933501696498 -3.114233826382925 11.47346684383802 0.7713484604645637 11.49162006441407 0.7104710682554059 11.33940731064752 0.7837407097749916 -10.33527373714022 -5.153424382142408 -10.48058855160338 -5.169670767153617 -10.52340699636314 -5.117177205175353 -11.04069175363465 -1.302988737267793 -11.20783564497405 -1.311353676934393 -11.20985138859328 -1.239688386468351 -12.48444414933543 0.491694038411598 -12.34128613440473 0.4874768722513266 -12.4945254589186 0.4372881367572089 12.42541345905517 -0.4991480218042001 12.31989503692353 -0.4758992407401852 12.32742995315252 -0.4058124407485412 10.99733374286901 -4.265374068443967 11.10124592985135 -4.352311553958974 10.98646045081967 -4.328072274064161 -12.66567049967682 -0.5787927298188667 -12.64275324487363 -0.6430002116656972 -12.78990107422398 -0.6182692529406896 -11.91816445190107 -1.816697026754288 -11.78657867307373 -1.796639591553614 -11.78325237076993 -1.868285798063717 -3.03661008545884 -9.886142970834346 -2.970469711943867 -9.808508856148313 -2.907759085318206 -9.840687205965677 -12.35686802520185 0.388155113470278 -12.34850347190673 0.339079343109507 -12.49170032758256 0.342381093573635 10.88906956943895 -3.269372934687003 10.75490927218324 -3.257674969762436 10.76814069664601 -3.192774596174574 11.44305494885871 0.6971207847463162 11.29698743446772 0.7084441200533634 11.29039165657002 0.7698080386748657 -10.47450039479497 -5.064020869488842 -10.45348956660261 -5.116971269781486 -10.64094982682822 -5.078626965614672 -11.06949987109534 -1.351997602225283 -11.23866903046987 -1.288713004914383 -11.07302684333547 -1.280265968585814 12.39289100820223 -0.3836486901399827 12.37672940311273 -0.4532790525142293 12.27776342596203 -0.3605871649456335 10.99680138746255 -4.410459568927757 10.99459695654076 -4.473688554938871 10.89173243654458 -4.385983431962557 -12.64852390106491 -0.8453489149761317 -12.75762377908674 -0.8824337353252709 -12.79607724188367 -0.8221612998089154 -11.91438449032938 -1.887684993837084 -11.91776011481119 -1.816045856628485 -11.7828480176952 -1.867634602068566 -1.933703828158792 -10.07868929536656 -1.81026501520841 -10.02473356046239 -1.875686140215478 -10.11676003594861 -10.17706018306459 5.097687172114565 -10.01725217847693 5.071354279007315 -10.20095668611738 5.051879504055433 8.995147568145498 -3.696204126959678 8.974272125570424 -3.759849373325496 8.831458980904374 -3.689412356531054 9.400596252401385 1.682104356206595 9.417770529397334 1.622021736905093 9.2502975424471 1.690531282780614 -8.45640697574469 -6.382028951600566 -8.619824479915039 -6.392241901847838 -8.653110732555769 -6.343341259016498 -9.038068919105529 -1.24788696516011 -9.222240593653645 -1.252393929910638 -9.225225480908765 -1.180647070927984 10.05675776997463 1.643108930239682 10.16820728874696 1.543330011735562 10.059810790726 1.572368137454234 6.998934761922653 -6.035054778172777 6.880632778123195 -6.005502360400557 6.903312709457032 -5.944818003328651 -11.74457042749066 2.489837794344858 -11.87918610599331 2.503635272383705 -11.75613173818142 2.556659312516994 -8.670913047531144 -1.724799554574812 -8.534977760678501 -1.698829678135716 -8.531851816781167 -1.770475826390209 1.485425508101299 -10.06843254090519 1.564093993658654 -9.992824421600794 1.632754902427563 -10.01762387632426 -9.02391560484867 -1.22302474044927 -9.21106794281592 -1.155777571130257 -9.025790632366473 -1.151290994180673 -10.27446063735071 4.690293434642577 -10.27490244014704 4.645887228578312 -10.43582367873811 4.667623486146511 8.913467909195871 -3.838523047499619 8.763137088026813 -3.830458369733087 8.770889745621997 -3.76779204998402 9.360019475549045 1.568404717229265 9.196334975332707 1.575493977360676 9.192263655233109 1.636484690979623 -8.661253801899644 -6.366194588792125 -8.649440463393031 -6.415375118327732 -8.845249100216865 -6.373972631867829 10.03340020791131 1.599414314214787 10.02750044884798 1.529709581156705 9.914903397122924 1.628687998814944 6.853934287475052 -6.079798110897198 6.840378967730652 -6.141342012782307 6.745636531592738 -6.050532874361013 -11.798215440735 2.243726706561286 -11.90627848130967 2.195688543891689 -11.93298986374412 2.256529284951512 -8.621247131419645 -1.706807212065337 -8.62392013129776 -1.635202834720432 -8.484864646119997 -1.680889930087116 2.435780704926944 -10.0619895946401 2.374970751312699 -10.031181497431 2.517677819352089 -9.972776275313359 -6.764268467558409 -1.147253245800262 -6.961689712012028 -1.149343042150286 -6.962895703967666 -1.077600405002238 -7.348261144312024 6.98402052889424 -7.169409761167305 6.949110522036535 -7.367288455792304 6.942211602050309 6.794298856602808 -4.063250246811537 6.780510794048428 -4.125271320167731 6.619619264772761 -4.058767166544976 7.102789637265532 2.135591705515717 7.114675123131672 2.075236888191242 6.942343096858249 2.141722453699808 -6.332418529825498 -7.359341531255688 -6.506967826071922 -7.366219647931042 -6.529785341266063 -7.319498210145622 6.430823141387458 2.750723014481685 6.562552201241535 2.647755997665314 6.441537606303928 2.681374281013077 2.644283802694815 -6.225210952991415 2.510218440309529 -6.191554350243303 2.537567006580673 -6.132915613534858 -9.355826973640905 5.036597614380479 -9.492855318043128 5.037883858320361 -9.356904150321803 5.100959264180673 -4.494624287318655 -1.525973817509648 -4.341150799821101 -1.494621520714359 -4.339576505329961 -1.56624606056034 4.472284172518158 -9.457221279901232 4.575456510418413 -9.382123781945879 4.64194587567867 -9.404522966263153 -6.562998102176331 -7.400945008980378 -6.563966135535728 -7.447263729996825 -6.760382188291946 -7.404611872568815 -6.753648041943365 -1.128215647802435 -6.952271945189014 -1.058556925125039 -6.754216078794794 -1.05651140982454 -7.547955162615296 6.577112494790191 -7.541697627712216 6.535292898393608 -7.722052059055042 6.56503499319368 6.718925135536847 -4.211698638346738 6.558466337379583 -4.205769742937711 6.558213828802286 -4.144925359838098 7.057051119940247 2.006429283631081 6.882381850272501 2.01105322098368 6.884512304638858 2.072582115892741 6.169857353068333 2.527969920420695 6.170038855887454 2.460789918122341 6.036112087882685 2.56198727054916 2.67862509952272 -6.154060816581917 2.663999153976167 -6.213608002844778 2.55719983182038 -6.121371755901471 -9.482021656755968 4.822189384605398 -9.498751468852149 4.880856389207573 -9.361722204302287 4.879632311053638 -4.528751805469526 -1.685335543553132 -4.531103428842284 -1.613666035805749 -4.376050928750205 -1.653927036019258 5.235676004327856 -9.372783672994176 5.181000303094324 -9.343697319571449 5.346725306317451 -9.283745814227659 -3.902345644681797 -8.188450922791049 -4.078676241945887 -8.194789082512166 -4.08867326440851 -8.149136522546895 -4.327690351277358 -1.088238499736795 -4.527601804844657 -1.089680638999548 -4.52746346555077 -1.017975091231807 -4.79947061981522 7.78193419980953 -4.606635102665683 7.744276694443797 -4.806417106789312 7.740181965700497 4.387417903032164 -4.407854659546714 4.382133547516519 -4.46855719281075 4.210971058523595 -4.403936426526169 4.681718741610681 2.442432361484705 4.686367937986903 2.38098940092198 4.519706775186822 2.447973052733856 2.476831900306799 2.716574320402483 2.335078071260506 2.753282953091385 2.322415237819073 2.819720465299218 -0.8495766814528855 -5.774371647432403 -1.002707635119836 -5.737629929984101 -0.9790738337904092 -5.679901341697414 -6.071758205456579 6.677088089301477 -6.224041331265969 6.667414535635049 -6.066577875337789 6.737074892068213 -0.603000168508987 -1.600932722750944 -0.7793963174765101 -1.564909228730366 -0.6045114858098177 -1.529249202034462 6.70547068815338 -8.606727274878164 6.832839897149201 -8.530298598614294 6.891944206870454 -8.553411110576478 4.637206991234515 2.320151978438376 4.46076634823816 2.32417045170247 4.470391535050927 2.386897525562452 -4.161879116041738 -8.263382461045596 -4.176476253040675 -8.308291472603296 -4.361769972694257 -8.266061222019705 -4.336992906053219 -1.104783608457802 -4.536768711631513 -1.034524935495792 -4.336927146500251 -1.033097672776584 -5.001450248918326 7.419336624268841 -4.983329668157889 7.377315062324037 -5.17758152973672 7.410160257254966 4.298966063716758 -4.588667483190155 4.136946941045659 -4.583257838637099 4.128020234244661 -4.523692774115456 2.484855667067577 2.789012963088577 2.486445910335214 2.723714722672173 2.332074113184158 2.826902418716778 -1.046989673823427 -5.847260349220556 -1.060382942890412 -5.906539020698793 -1.189097759635383 -5.81140936995679 -6.146239914780912 6.392685852270479 -6.159389527583137 6.445813851573554 -6.007048796865194 6.454908809726416 -0.60076057330336 -1.59410819447996 -0.7756371006096985 -1.629763143934852 -0.7771564598577757 -1.558083905279896 7.301209059354632 -8.484636073484849 7.257233861067239 -8.454047762899966 7.440374990276014 -8.394007409282501 2.06803911632309 2.737769939167325 2.065327229402503 2.674623546000769 1.91312958157923 2.744481654770203 -1.085763499124732 -8.796770273188072 -0.9189585077525481 -8.833920236310153 -1.087378176596949 -8.843106727841482 -1.626913881604018 -1.092671610911676 -1.817993393265908 -1.095358427071946 -1.81723355860426 -1.023674964812309 -2.13322646002044 8.09807582376013 -2.324178927807937 8.090987503568474 -2.330545061576794 8.135077551150664 1.618299095932219 -4.828931019078644 1.621124506788383 -4.888867402070411 1.449631634185229 -4.823763440210499 -0.526703063943198 2.599859309825714 -0.6808456436704596 2.638770696695628 -0.6915268286746495 2.703538147112178 -3.627946778109352 -5.414580689639528 -3.796489413940117 -5.375580232539402 -3.776878688799414 -5.317382522403903 -2.831180103493431 7.294171544058458 -3.004226880453705 7.276283520025179 -2.828418811434614 7.348253626233903 2.384310184686598 -1.604284260452886 2.191513321852315 -1.57108577423952 2.38357500279351 -1.532597390340951 8.54957863899463 -7.591958080748714 8.694371719356722 -7.513685233859774 8.742967469453195 -7.539587880709598 1.530720740360913 -5.009527037301059 1.375804350051337 -5.00291396835108 1.359469765756647 -4.944030215581829 1.994722808651195 2.594395626625812 1.826031627198952 2.599663348134984 1.842304716504712 2.663955668709898 -1.230188828532585 -8.932765496567605 -1.255554628742061 -8.978672107389132 -1.421166755824111 -8.938354502977786 -1.623548050405513 -1.086890318599028 -1.813866864484138 -1.017892199499018 -1.622732729965817 -1.015192423542869 -2.52433515747498 7.813396953095524 -2.493986601513873 7.769672185517139 -2.692542401511045 7.802322348963337 -0.6789744603693282 2.523575595231862 -0.6815984130075842 2.460667918481013 -0.8471022097428899 2.563674171800625 -3.71955093586108 -5.419688800708901 -3.725594302735853 -5.479495385044515 -3.874166855982458 -5.381957471144198 -2.865162023902458 6.948440991182726 -2.88256355845516 6.99548191542547 -2.709338924917071 7.012270865625154 2.382390142265855 -1.61121454396324 2.190337654589732 -1.649707131131667 2.189593049550067 -1.578016883926444 9.018525333863623 -7.422902961848025 8.987350590271735 -7.388781861755396 9.177789302006772 -7.330101556697305 -1.734840241074575 -5.237012503188767 -1.726541311988324 -5.296927396016576 -1.888064613997089 -5.228781993322624 -0.9343831352841131 2.981186092474813 -0.9424780710862002 2.915941712039061 -1.075018360585027 2.990666902811253 2.879638810031646 -8.860838831828378 3.025151230380163 -8.893887984753487 2.873038903464342 -8.910624774351719 1.538114101585074 -1.111345728594263 1.364447079257619 -1.117042581622354 1.366026765647388 -1.045352587476172 0.4017533075938273 8.171196412326729 0.2288697599364914 8.156834237209869 0.2106361456114381 8.204542608298826 -3.181248914916064 2.258494138680487 -3.342174126764455 2.29807164957007 -3.346656646867972 2.360914327616166 -5.926349958980843 -5.06625658958029 -6.102200572384774 -5.026432565121168 -6.090668504000481 -4.967127170047029 0.03574799594463524 7.336786246313772 -0.1551556582812577 7.313608638095359 0.02987760622357699 7.38556038550886 4.843810405557674 -1.662258023769051 4.643599147677852 -1.630117199620958 4.843775193465255 -1.590565388951407 10.15214888561591 -6.339933274769392 10.3041786765267 -6.259841996109039 10.34108758160019 -6.290217166385594 0.03538291129991822 7.938883458342072 0.07537975947526532 7.892534215055209 -0.1167220988954792 7.92217278993467 -1.850600471716873 -5.426529386050101 -1.991235154178143 -5.417043593907985 -2.011729940428158 -5.357809422857985 -1.033841117868534 2.826126203028453 -1.187076858600957 2.834362496567488 -1.166697703646944 2.900502985901227 2.678207242450373 -9.024066749886115 2.649555917360691 -9.074552129300455 2.5053206830967 -9.03820302863493 1.544461811700419 -1.10108425941019 1.372375919480135 -1.035088788568971 1.546070719287427 -1.029407568048758 -3.292508124898563 2.199341571516821 -3.302010601473206 2.138329323654655 -3.467945166414737 2.240220777393406 -6.020979430218435 -5.066676307681636 -6.018376983691343 -5.127690501302943 -6.182331141876469 -5.02818840631396 0.02654210223308778 6.931692715332654 -0.0004457597454907147 6.973550817262883 0.190740740374836 6.995237711350105 4.84555470151556 -1.655510726685842 4.645365517852461 -1.69505807017009 4.645343664165999 -1.623369052427622 10.49805273155337 -6.111395293942536 10.47938283660226 -6.072165176631619 10.66572932337091 -6.016724088369951 3.102348802430499 7.933502846369441 2.952697980710364 7.90795570433971 2.926472332432486 7.960038482065441 -5.840321407958555 -5.330936839917112 -5.983139800278881 -5.256838325824224 -5.848569170131905 -5.269891554470393 -4.450702103163462 3.005103805866383 -4.460197113508072 2.937459260404336 -4.574251263814028 3.01885466453023 7.943893635454855 -7.141913835124806 8.076472608614363 -7.166312855754238 7.946647222001136 -7.197159556594382 5.163246012492278 -1.117714900073078 5.313443090294662 -1.179269555505842 5.160788520402234 -1.189376693575992 -5.389259396377673 1.958338642300305 -5.552358789030637 1.99775064261208 -5.548972140961457 2.059161362022441 -7.875828986749958 -4.784830431849331 -8.053825766287021 -4.745134763497052 -8.051083700878257 -4.68412435418221 2.289061699829304 7.081129402044353 2.476728056986634 7.152507556084055 2.494896636996879 7.107802367516557 6.923315659644519 -1.735031695388572 6.721568045365858 -1.702598765740075 6.923969103668046 -1.663344518567312 11.60620272298837 -4.749799098219619 11.42773978052086 -4.795881116940632 11.58007216565808 -4.713300346350442 5.308641939536588 -1.118435504130821 5.30624722769184 -1.190103914756658 5.156048844720216 -1.128551230192833 2.810780822408498 7.783362550281193 2.855705105938886 7.733674022955864 2.679216825708374 7.757563963387368 -6.115439472472932 -5.404563151923239 -6.134086655511664 -5.343737657615951 -5.991950256816617 -5.418643294124607 -4.559069854247967 2.849935141477938 -4.693701891053848 2.862775396947482 -4.67355214217529 2.930957736777195 7.811948520213087 -7.337528698838748 7.795477730888241 -7.395699225801588 7.663840744841885 -7.368325238486968 -5.50145245314144 1.881265092103241 -5.518773719895751 1.821686496073894 -5.679089124715823 1.921915560587383 -7.943159315760849 -4.756189822174432 -7.931662356416103 -4.818796447116341 -8.106655857986439 -4.717809657474035 2.494337055136485 6.67547359716108 2.454966310932485 6.713500120556995 2.661158912192207 6.738404930453302 6.920255931322688 -1.746841740351618 6.717866785987352 -1.786097314133124 6.71850789687507 -1.714410428183297 11.64429563392608 -4.519348819292599 11.63628996857907 -4.47357687761575 11.81256480465637 -4.422548434737205 9.407406470594957 -1.262136784813376 9.542673219289938 -1.317912163644785 9.404289811265478 -1.333788014731307 6.253732902396818 7.134431086163533 6.124291599389031 7.092843252678284 6.097602218918007 7.150089030176484 -10.26290308418997 -3.972719949134878 -10.38279108496317 -3.890470452135454 -10.26138530886212 -3.910161990690205 -8.656844822433374 2.310417244970755 -8.546241828981769 2.290879783888999 -8.549772754970995 2.220934272486494 11.87531791095878 -2.244158917229915 12.01420443028966 -2.251642967548273 11.90591421676997 -2.298678393724654 -7.623607648579411 1.609053413946567 -7.775015845034464 1.646441049340284 -7.764555077366621 1.707001432455249 -9.867434151347112 -4.348764056329122 -10.03296462756189 -4.311126714488231 -10.03732134579322 -4.247963100685223 4.629350314123354 6.711883495506523 4.80198327387759 6.781159402920771 4.833139363168596 6.738679451910256 9.020287560180325 -1.855205638108501 8.83343608063967 -1.820032905691768 9.021650452684609 -1.783524995757172 12.51946170319711 -2.507211751598441 12.36153290831863 -2.544874825907662 12.49936523022057 -2.463797454452632 11.84951486019543 -2.304579654823831 11.97278306643314 -2.252622739703133 11.98829948574294 -2.313154032494368 9.546788166750069 -1.244734472388702 9.543697495405235 -1.3163825107356 9.408430854647296 -1.260606969909894 6.077497518052693 7.055427066833151 6.120346229457305 7.001993631060697 5.963995239100615 7.01622629795399 -10.51213878607093 -3.92479448163076 -10.52042041971787 -3.861844166002971 -10.40179501108615 -3.945218872980798 -8.772780334495117 2.136129060071057 -8.759206881541326 2.206115055414994 -8.651459538570904 2.117135106131407 -7.728839161207974 1.528558995582689 -7.752236912433713 1.469616016356739 -7.893884662722856 1.566936828031893 -9.908294568453352 -4.292637413521375 -9.890347902417892 -4.357184603066536 -10.06008873121019 -4.256231171523289 4.843593585418221 6.308114476659102 4.793128669348505 6.344454751318796 4.997303606373547 6.369366587658844 9.02130879258814 -1.851845878495564 8.833155852809799 -1.888369842997336 8.834457480864748 -1.816672594376324 12.43912935850406 -2.240405695724614 12.43522336433228 -2.187747316429558 12.59157169365658 -2.146203486778124 11.49402236278089 2.491336944193565 11.44196618525643 2.537554441272767 11.59794844380999 2.546054530721898 11.99060753637678 -1.323865960497666 12.12498734381802 -1.373491897610147 11.98738336172206 -1.395510357908704 9.193701576120317 5.560736267461 9.075423531901116 5.501053444315247 9.053593253000045 5.561851641265711 -12.36259419343729 -1.288563893963514 -12.24216711289985 -1.314857938220127 -12.25632669275038 -1.377156506041721 -11.65682314128354 0.5461271657592528 -11.54517527586237 0.5207279007337042 -11.53901091853103 0.4500983110608039 -9.931828991437335 0.9990095623593351 -10.06331861283669 1.03290457993383 -10.04913073169398 1.093637546638904 -11.75240798306647 -3.449854181697886 -11.76005233971442 -3.384055276445229 -11.60914839163295 -3.483546629822345 7.045854807670821 6.058967473158784 7.191973529833671 6.125430180177156 7.233043903328235 6.08238625132066 11.05441371495044 -1.992047285819952 10.89271591663927 -1.952196063597097 11.05653685935817 -1.920362180415097 12.46475238117098 0.4688473995782341 12.32626294349365 0.4441457396488355 12.44253518149371 0.5186156868772237 -11.7064333499875 0.3889537461494134 -11.70412534448503 0.459091255688088 -11.58560085130863 0.3636063492832632 11.40112471645486 2.739979586395068 11.51739580529257 2.801918313389274 11.55700694559627 2.749548115938441 12.1279939110552 -1.302377135290846 12.12467143926534 -1.37402621865195 11.99029167902811 -1.324400202437869 9.185772754082921 5.425035435736002 9.045663230792716 5.426053245024225 9.149955825922403 5.480230210119204 -12.37661344837803 -1.242203117709605 -12.37042846956559 -1.179175972023946 -12.26535867193886 -1.268648271677662 -10.00639875127156 0.9370219716282171 -10.03166110505072 0.8776080608921254 -10.14972968865928 0.9716440052608725 -11.68272755083222 -3.455317847211425 -11.83270512839736 -3.354963382779449 -11.70090864286917 -3.388112649421537 7.267043876681645 5.63265133736134 7.209500233534502 5.669337467038668 7.397084304861492 5.690711140751803 11.05331525113629 -1.994793905262312 10.88944634029167 -2.026608988448495 10.89161720027761 -1.954943317187773 12.28612602379153 0.7108669385735174 12.27746929648367 0.7691719838338954 12.41519918837009 0.7963750411686446 -12.34856340660054 -1.479771390745623 -12.48148139345204 -1.380608568178576 -12.36334344712432 -1.410580492210075 9.276707521053739 5.028618018300326 9.217787171578857 5.068181204600121 9.390156909603837 5.085472769549537 12.05668347276712 -1.248890233995446 12.20104707917173 -1.292993058252718 12.05385279070249 -1.320552384434651 11.20983808074964 3.331052729982874 11.19446727308732 3.391832166527687 11.32742640367338 3.40648227147286 -11.67019791010287 0.740410999773072 -11.54177374301834 0.7092751996803449 -11.56482166293863 0.648716467158813 -11.86011193620283 -0.1977464485696365 -11.8475151704687 -0.1358856883258326 -11.74493314011552 -0.2277591628032306 -12.45162304445733 -1.888628516929203 -12.45537080457958 -1.819981544393522 -12.32556100599877 -1.918098184957783 9.536978925267567 4.66422627225294 9.660485091603505 4.728210306524845 9.705320206050196 4.681830997219107 12.31854013554872 -2.059681960987298 12.31564040994777 -2.131331673667286 12.17464832343649 -2.086220046635131 11.03303546332057 3.318596146552173 10.90027268380914 3.308325911882873 11.00329787871924 3.372434746885128 -11.61454327488999 0.7934822348016178 -11.60120460944142 0.8550394872478138 -11.49674254072749 0.7626998964175838 -12.46748036750243 -1.509335310362308 -12.47229587360645 -1.441162276366993 -12.33862010593852 -1.539692711522541 9.099873893864729 5.357595381784607 9.227131317571855 5.421982117480596 9.271950371913921 5.376608774755344 12.20731609617598 -1.215157272801693 12.20409599903379 -1.286968686155147 12.05973374626652 -1.242863119947411 11.3943753839447 3.199659974258058 11.26120491807419 3.186250269918912 11.36553075979545 3.252887088884078 -11.91062286996956 -0.2643539151282401 -11.78502774377633 -0.2946316209082915 -11.80700887801265 -0.3555079257078837 -12.3241425430299 -1.844631417711465 -12.45317510216577 -1.745882362920325 -12.33764463007565 -1.775046606873426 9.701573112228534 4.311767033288764 9.643132417721008 4.352305486159655 9.811737959371968 4.368268671331372 12.17534193218787 -2.084908062443002 12.31633363804273 -2.130020425710703 12.17235078940941 -2.156560351364473 10.97198046768064 3.546291437560214 10.85624208327961 3.473988594873646 10.83934999866612 3.53501278438576 -9.645483191836284 1.800788195159089 -9.670581109214606 1.741546430859303 -9.79215969083244 1.836093629779995 -11.47187316251818 -2.86496606589652 -11.45354420573529 -2.931704449242993 -11.6068129648284 -2.831214107572199 6.867133204543505 6.226843680856156 6.810644959444466 6.263273864668945 7.001209531720384 6.285467061214239 10.74136253194078 -1.127131668761829 10.57376281562699 -1.159826986220972 10.57608788956758 -1.08799419114843 12.42751632653647 0.5240458871917365 12.41929637764344 0.5815454362173664 12.5591173345161 0.611609730538909 -12.22556260541854 -2.510056909099419 -12.22245351548211 -2.446819659825185 -12.11888299322155 -2.535194557593524 -11.1805352717619 0.1636557725206742 -11.17520488691826 0.2339215675086613 -11.06377031148741 0.1397183147273343 11.74031249664773 1.647453380557038 11.85245807396038 1.707939759353359 11.88859530474086 1.653637216901723 11.76539563976768 -2.116613731691715 11.76199157330927 -2.188254616000427 11.6319646956527 -2.13725735156381 8.455844250518283 5.547693248480998 8.314437949829083 5.55193550155163 8.416948548971313 5.602138631030913 12.59726805529594 0.2701429102855949 12.45644840070009 0.2431167178063067 12.57588514082611 0.3188292712014195 -9.568502549918181 1.856830802983324 -9.703134651220706 1.891334807373945 -9.689358052799605 1.951949968211019 -11.39044827376524 -2.938774342873005 -11.53744511220677 -2.904288118536661 -11.54439757547641 -2.838929844390844 6.655606854539049 6.593312683415472 6.806146126184824 6.659854544762145 6.845799299435067 6.617400483461004 10.73196397616225 -1.151491097104088 10.56668715559906 -1.112359312279817 10.73401485999725 -1.079827300854991 -12.08088402820533 -2.6477630053221 -12.18576927259354 -2.560352930530136 -12.0692266799461 -2.58521614158271 -11.10319217059368 0.3450579422479534 -10.99612125272448 0.3209718443542478 -10.99258888133999 0.25025036190555 11.80968273231142 1.405814557636461 11.76087880795927 1.454000771050924 11.90920593615931 1.459487540272102 11.63167374589668 -2.137717227448651 11.76170061290552 -2.18871450868585 11.62828626381446 -2.209367044286528 8.493264998848581 5.71492167655479 8.376826026194479 5.659661944827525 8.351880536625716 5.719592706312391 12.42160597004817 -2.191689468957073 12.41626913264293 -2.140350501684493 12.57315094325855 -2.098282296104488 -7.492963786032458 2.334175902216748 -7.515004825038322 2.275091116646372 -7.656669510425816 2.372592074488226 -9.761450156183038 -3.623960061355933 -9.745338831219963 -3.688310512075075 -9.912017340509349 -3.587498971372419 4.557536204359291 6.839050374406378 4.509188347564309 6.875503686973955 4.709950779347495 6.899769343178097 8.741101864319731 -1.019439105203981 8.554761744415805 -1.055516542513835 8.556037629630342 -0.9838416150760361 -9.744751999399297 -5.048119737146935 -9.755298058729467 -4.985450926885065 -9.633295069987362 -5.067261186780085 -7.95830288070798 1.672339155563685 -7.943088679739913 1.742095909332836 -7.836688785660706 1.65457461290219 11.41626537571705 -3.636196009305314 11.54120330482786 -3.587542135558419 11.55039307892587 -3.648727317551346 8.759899201414649 -2.032709288667752 8.756786200472496 -2.104366810480081 8.621688515798034 -2.047468045499825 5.360334818855622 6.90740915643771 5.404957143048305 6.855020456556098 5.245568253235189 6.871284674799691 8.771807560103289 -0.9210703944025453 8.586749376067742 -0.8854534434550553 8.773553566395822 -0.8488183355714642 12.48451468444921 -2.432517852822418 12.32597291397993 -2.470540383775541 12.46317769539996 -2.390473393376261 -7.402046846608363 2.391646228617125 -7.552263854057411 2.428990472157417 -7.543112769015149 2.489682956953894 -9.681251666514095 -3.660784878569707 -9.845279350554231 -3.623200107078743 -9.848323616903944 -3.56037718183123 4.354281668687017 7.196984233116653 4.525920107431199 7.26450082097733 4.554695827691159 7.222970505021299 -9.490166520642905 -5.076109068943691 -9.613256464947316 -4.995312687271215 -9.491875139303247 -5.013705756931108 -7.837459935101392 1.846455804932724 -7.725788812337279 1.82810317725126 -7.731688088601177 1.75846466450187 11.47441714812592 -3.55673480308616 11.60875792182651 -3.567763588459859 11.4989817614926 -3.612604496064194 8.623679604165812 -2.044552916215587 8.758777033071473 -2.101452057009262 8.620634843427039 -2.116198953238602 5.567935311688869 7.038297109457089 5.437169717013191 7.000125266167434 5.408844334005877 7.056275990035505 6.765559098201202 -0.7936087604780515 6.566876320977782 -0.833140497396606 6.567647415609427 -0.7608779301899279 11.58528452648304 -4.35031587650545 11.57505880479942 -4.305765159566232 11.75021394494332 -4.255099604628661 -5.295141635197718 2.679771178556884 -5.310994730184532 2.619939140035927 -5.469162233682212 2.72013946673693 -7.814300715167843 -4.043097857336617 -7.80454769582162 -4.105496493312833 -7.974297870740199 -4.004970755252076 2.236489778626236 7.190694810087972 2.199833902498322 7.228187263065463 2.399785381492636 7.252871982601729 -5.466753151928634 -6.160242652390536 -5.486256297514611 -6.099739855213911 -5.340910892394801 -6.17356594191517 -4.009488964703396 2.149967279611272 -4.146706653837466 2.162074996238527 -4.126214334909601 2.229980700145121 7.024165130624047 -8.027860484645059 7.004595496875917 -8.08493803403019 6.872155409524989 -8.055797956143129 4.72843336227485 -1.982197320672569 4.575073661752587 -1.919951510193588 4.730715318819804 -1.910533737619413 2.387307200098002 7.460099458288207 2.431832250990889 7.41087982027978 2.252727580309843 7.435775626898996 2.014316783777129 7.59309989024561 2.197756937827875 7.66498349234721 2.213873897873271 7.61968627136445 6.732694121844202 -0.9164665257472985 6.534777069807451 -0.8837557940011735 6.733264098078946 -0.8447802793763075 11.52435613383678 -4.551081451412544 11.34693915299813 -4.596617080832574 11.49646599204208 -4.515784694007481 -5.184653418642398 2.746475510558088 -5.344257242103688 2.78560951664586 -5.342239998541112 2.84724068057069 -7.714439504122781 -4.048260815140622 -7.888817807670372 -4.008889820918976 -7.884601281074504 -3.94816664725183 -5.202451819625299 -6.089579192889955 -5.348382206312138 -6.016470742126772 -5.211180209075206 -6.028742240987849 -3.894933975222198 2.314225785687906 -3.904531105545545 2.246891686083626 -4.020818669428834 2.327298642214918 7.179702031988827 -7.864912338704983 7.31317580027523 -7.890970779092383 7.179928466027126 -7.919451264279131 4.725926433044577 -1.986020410667492 4.570283283646218 -1.995440418799354 4.572566256937288 -1.923775325315378 2.695076435902459 7.661061965266521 2.541931857413301 7.637274094410984 2.516649344211394 7.688805792929841 -0.3698445108058149 7.453488717860072 -0.3952989717585217 7.496051840537323 -0.2063389654605621 7.517240049820471 4.515918699687586 -0.8393387980662707 4.316249118334187 -0.8788466468877427 4.31612899876572 -0.8071590605465268 10.30485371860901 -6.001201054318452 10.28459294262881 -5.962818761835691 10.47223928593306 -5.906872450912127 -2.938501361369633 3.006617235003971 -2.947002569396036 2.945329435304808 -3.113533836915765 3.047486358113979 -5.718205139175695 -4.359722446777262 -5.716856770521808 -4.420526897234973 -5.879140019153367 -4.321262435429309 -1.317171084655176 -6.108452060814098 -1.460162259544871 -6.099492312357857 -1.480366500252042 -6.040368189323569 -0.5645865119736526 2.071141367184692 -0.7203694705909897 2.078847428744961 -0.7003867035881961 2.144754698464442 2.029345654287545 -9.405432250419249 2.000439532636525 -9.455004844401778 1.853474228735507 -9.417872323385714 1.037229569638983 -1.918048788614067 0.862239285371042 -1.851528348295805 1.038688067181828 -1.846370377598734 -0.3415059436527473 7.569954266639446 -0.3027434724742456 7.52389720553111 -0.496260766229028 7.554267652011123 -5.635589728228762 -4.363558339894523 -5.810918821675529 -4.323746273856592 -5.79818970980217 -4.264615156559517 -0.3523577227348151 7.809265353143129 -0.5410580242089885 7.786690220767343 -0.3566093495609768 7.858655653168618 4.515485805132868 -0.8410027561567854 4.315696051118508 -0.8088232226260013 4.515380272364803 -0.7693143339499299 9.941295152995236 -6.179408871339137 10.09312811367236 -6.099640101588622 10.13157038100183 -6.12925749870301 -2.82618486091816 3.060393695973454 -2.986682021334212 3.099969472485129 -2.992190700392496 3.163078476023416 -1.207496587028629 -5.925593980249909 -1.199669725326454 -5.985478026594858 -1.363226630820564 -5.917933100082081 -0.4729956394597623 2.223734660237116 -0.4804706718709007 2.158776479735584 -0.6159846801350177 2.232715461974108 2.226674139061502 -9.280767392920096 2.374920921507335 -9.314600961175254 2.220040689712028 -9.329863156063558 1.041460852905896 -1.911123834948141 0.8650018540111748 -1.916285449041143 0.8664715569511983 -1.844601785732089 0.01555739350644139 7.836576546842011 -0.1602331515344417 7.823534767753698 -0.1769757855709346 7.870598218226059 -3.371045457446532 -4.738527668990224 -3.378194683407445 -4.798236383189997 -3.523966528169564 -4.700972500495921 -3.31950339507936 7.386220307546418 -3.335764832454265 7.434042315532138 -3.165537438445921 7.449896024721483 1.990952794153078 -0.794301863207289 1.800873117040144 -0.8324918601336201 1.800058934935638 -0.7608062510942829 8.791423880104997 -7.27043802749428 8.758476871357217 -7.236972157502552 8.948533693457904 -7.178066836602934 -0.2951623346060905 3.322587602154639 -0.2968720255190893 3.259344289539156 -0.4632284125750602 3.36263616348693 1.95619008696065 -5.695072869730268 1.799800415117131 -5.688739350864791 1.784312015099943 -5.62978551853464 2.401249254238791 1.815872394107089 2.230977048957919 1.820845639886842 2.246422160905807 1.884927755754067 -1.704545758230504 -9.242583819217362 -1.728777046018541 -9.288127940177166 -1.897435285471872 -9.24748621079967 -2.037287167596162 -1.892904068553259 -2.229581024032743 -1.823618281792473 -2.036592650860404 -1.821213163940699 -2.878992602768241 7.406988912774769 -2.850347945369914 7.363622240913537 -3.048949264113406 7.396414355001799 -0.07592872800912309 3.447476459058427 -0.2283303797216346 3.486316303097001 -0.2412998257332361 3.551742843935231 -3.264736926777666 -4.720466754106278 -3.431556722778725 -4.681699525668206 -3.41092521489787 -4.623590437275364 -3.281244212679644 7.695838698016365 -3.451310724976913 7.67895024004497 -3.277624373470368 7.750705745551207 1.993124369130136 -0.7866312688620434 1.802230766442821 -0.7531347520216162 1.992266794691588 -0.7149389143416736 8.320804586917859 -7.385845346409994 8.465266382435967 -7.307301725538728 8.513754288195907 -7.333080183788806 2.04339030631442 -5.518528912334286 2.045130314503581 -5.578534592163575 1.8730165363144 -5.51363265332439 2.458320082436398 1.945240049825693 2.456592126953376 1.882381007478111 2.301937070191282 1.951674525511828 -1.57456143403115 -9.143997773465767 -1.404745360288789 -9.181537442923032 -1.574790531085726 -9.190054921100517 -2.044893155000779 -1.906099714813112 -2.237859075511692 -1.908506354491039 -2.237189028987264 -1.836817393347053 -2.487223103494111 7.74038816037992 -2.680066389377364 7.734029933285218 -2.684561388224735 7.777601030272265 3.124503043639733 3.626647404675496 3.127443276339544 3.560470550474426 2.976079560891939 3.664159249923833 -0.5396567529731716 -5.184956032361135 -0.553707648967835 -5.244267969709651 -0.6776173971474248 -5.149519879826631 -6.653734747338472 6.689172984141466 -6.666825254069089 6.743140156944046 -6.517181117049558 6.750903853205761 -1.086589498616595 -0.78422802616515 -1.25850225696438 -0.8193585587526251 -1.26014777792732 -0.7476747171529783 7.017786738957272 -8.328748700634764 6.973980755895396 -8.298221015688425 7.153590525520563 -8.238650052595556 4.663665539788083 -5.288366739821417 4.501255195215487 -5.282973516835888 4.493544616641717 -5.223259506164044 4.989095297036961 1.523544818016136 4.812262991224277 1.527546637891884 4.820812251942096 1.590059642268411 -4.526624981459384 -8.580682148720971 -4.539323854414262 -8.625643216579517 -4.72691499555313 -8.583279951014488 -4.69161048776627 -1.922169901065071 -4.891936047374309 -1.851894312156033 -4.691629537544647 -1.850479003712745 -5.357828321895757 6.993676402184764 -5.341512802323475 6.951888721855984 -5.534352977043232 6.98440571602306 6.408035537186003 -8.402038505772289 6.530582252696229 -8.326233675610846 6.590979218592096 -8.349116967331526 3.151633318516139 3.57640480636253 3.014121496524458 3.612904582949041 3.000388115497104 3.680200470823879 -0.4139711090741488 -5.15596766273602 -0.5644978615418062 -5.119522335759868 -0.5384089976975576 -5.061648887326983 -6.572938285279893 6.943744311546604 -6.722538923445383 6.935478093730819 -6.56818483266882 7.004611278737533 -1.087894671073633 -0.7880754491256219 -1.261453102026516 -0.7515225856906145 -1.089500803017993 -0.7164060861554753 4.750081876964079 -5.115959186366008 4.743565224223874 -5.176820829293575 4.573233912439122 -5.112054898983798 5.038845685473962 1.656762792982082 5.044549730654726 1.595503841975917 4.87644282530279 1.66229373187832 -4.271526767372488 -8.541590942140692 -4.448254046038575 -8.547835486346314 -4.460139430447081 -8.502134332072298 -4.684233127320541 -1.908962697287057 -4.884542293299398 -1.910377144235648 -4.884556521351725 -1.838683288294857 -5.151397631783981 7.409441118889362 -4.960006882914137 7.371997852621876 -5.160252591464357 7.367865723672731 4.879907596298446 -9.227739958717748 4.824005816342195 -9.198633819923883 4.986802317450687 -9.138900628341862 6.818366883296587 3.286812406137304 6.818806668116153 3.21865571565823 6.687161155696851 3.320460777096002 3.105136375445501 -5.564541851484951 3.088415858145972 -5.624521227335868 2.984729266269326 -5.53209267039398 -9.930011817071847 4.936524218704519 -9.947990209783102 4.995843238968276 -9.812250271109953 4.992960715800802 -5.063117719388234 -0.879775590197084 -5.06555625158882 -0.8081207642899929 -4.912639681043252 -0.8491490300287995 7.043833246952805 -4.918718453727871 6.884389349493025 -4.912587850899379 6.885347967170201 -4.85151534305512 7.38893079278795 1.213416027666563 7.215298962011859 1.218274031275709 7.216443370953684 1.279690506259362 -6.872543926388105 -7.720063000584813 -6.871528454692539 -7.766703935272252 -7.069206212194869 -7.724057565211616 -7.085460401778228 -1.953814347816976 -7.282842567164233 -1.884405848869345 -7.086179438519924 -1.882122722407894 -7.928797813112159 6.099000294691537 -7.923953075196081 6.057018011829091 -8.101736184299917 6.086030956983156 -5.067350791792155 -0.8122836020138835 -4.916807556105715 -0.7816469406124569 -4.914434026842691 -0.8533114193579594 4.110930028857236 -9.26373436105564 4.210500129604794 -9.188566322535746 4.277639095865341 -9.211101364387835 6.87747635928748 3.396608088620244 7.008006566036567 3.293918145568711 6.887884282947002 3.32701415432634 3.214404750168435 -5.548211672136048 3.08310451610041 -5.51507025616875 3.110169943087202 -5.456165494929545 -9.795692840599257 5.160583222514068 -9.93142628115389 5.163649265953787 -9.797825469959694 5.226139370354115 7.127199503208617 -4.764813459291362 7.112271247637003 -4.827021935788306 6.953579509582307 -4.760121010634209 7.436880455331188 1.348831713234827 7.449711873178442 1.2885437837349 7.277450382965372 1.355180921345015 -6.648983202732421 -7.718741714087121 -6.822484486637244 -7.725928122136549 -6.847591722566838 -7.678861228464416 -7.087543715143064 -1.957556829563276 -7.28425004385158 -1.959844843465908 -7.284926555487864 -1.888149518457082 -7.732442454363511 6.556022419027978 -7.556164965878786 6.521793116343225 -7.752590292824291 6.513852055204032 -9.262362620543998 -0.9982610265921572 -9.265431373128871 -0.9266128859795643 -9.12788631365718 -0.9731158902532068 1.950180839681862 -9.916711313632785 1.889080999859249 -9.885293286695218 2.028367727486693 -9.827089988307804 10.52286538669712 2.065146281759869 10.51551482730427 1.995311366964083 10.40577293714618 2.093615155603636 7.52111787249818 -5.273899497310464 7.508853107780256 -5.335786557518499 7.414292697664784 -5.245212397101912 -12.08431270744813 2.196093485976012 -12.19128707591015 2.149047890931748 -12.22033312289464 2.210515938221928 9.199457341029337 -4.520190071452821 9.051150894347089 -4.511699164043895 9.059958026507999 -4.448772184552951 9.669691796684516 0.753360214058832 9.508240145469834 0.7609521533103458 9.503498561134443 0.8219653569383332 -8.921587146112858 -6.669966323949844 -8.907569886315399 -6.719804087994952 -9.104286002616078 -6.678503718230066 -9.324038835693287 -2.030183037586843 -9.508564438758199 -1.963448650971783 -9.325439036827589 -1.958494199056971 -10.60599221786575 4.089910737059385 -10.60662944468108 4.044862993918632 -10.7662950282064 4.064835981792844 -12.04143354217628 2.377086426874083 -12.1772867240961 2.392453396183923 -12.0553928578485 2.443722520172197 -9.267837549188249 -0.9310471242582803 -9.133413303858129 -0.9058945534221484 -9.130292302324495 -0.9775497855284092 0.9479796548154323 -9.868300889684225 1.023695726492549 -9.792488994938639 1.092114544290961 -9.817929410036772 10.53623588670695 2.091421124707996 10.64483644214927 1.992336050057641 10.53783793416231 2.020620562636231 7.578610021389456 -5.124587369069729 7.674140448169284 -5.214529400491242 7.557220039841097 -5.185629502084914 9.248660695682039 -4.424783009195661 9.225085482810178 -4.488804878413693 9.085481007625125 -4.41751426874457 9.703647827910444 0.8624343743937109 9.721302149155008 0.8023152308608818 9.555379135053091 0.8713239533769561 -8.729616780509579 -6.730094086031299 -8.890756388093246 -6.741045432981515 -8.927184794724571 -6.691391928617982 -9.325516693352057 -2.032784362284588 -9.508429923758628 -2.037722327752077 -9.510042819401726 -1.966050870582934 -10.55771085711433 4.487660258475979 -10.39894084242473 4.463672700849949 -10.58000601058593 4.441562148147697 -12.65257406103908 -0.8144460656515057 -12.76303655065152 -0.8498721179081807 -12.8027059717406 -0.7899796649965601 -12.2088925959948 -1.075004728866367 -12.21215032807042 -1.003353263060955 -12.07663315924217 -1.055804126495541 -2.762777199480826 -9.799910230420966 -2.64082009568663 -9.747235043604697 -2.70636780441321 -9.839595663160447 12.56514827402928 0.02621527134906461 12.54768310754997 -0.04325083913083788 12.44927162896445 0.04835732556534333 11.44645299374619 -3.379799133354346 11.44624021100312 -3.44311780906447 11.34082058533418 -3.356134394409414 11.15158224797604 -3.91397944806601 11.02069010905071 -3.901613426206277 11.03580612241227 -3.836028782075375 11.68284991976453 -0.203584460076076 11.53944526903806 -0.1915152855845707 11.53297615464903 -0.1300230787323312 -10.7213018571439 -5.281466400770705 -10.69784016135745 -5.335743939901509 -10.88300945774196 -5.297638907282837 -11.31979072714832 -2.137674283481226 -11.48458296453805 -2.075134861174838 -11.32216416519158 -2.066015916383278 -12.38651771823724 -0.6942693835357292 -12.3741535119025 -0.7426226895315506 -12.51497053451344 -0.7431947815588879 11.43397392136102 -3.230024288088108 11.54045022315169 -3.316207533749339 11.42491432129546 -3.292852691533721 -12.68046711594635 -0.5828946779229147 -12.65653270953471 -0.6464768443492177 -12.80622590301123 -0.6203999083251425 -12.2119079911996 -1.002969579672727 -12.07967570715272 -0.9837700450213652 -12.07639080066768 -1.055420408405151 -3.869929745865673 -9.519464737527869 -3.803415572468722 -9.441606603762649 -3.742590848385259 -9.475369423853087 12.58230329810353 -0.0981976794319511 12.47621695814002 -0.07582480933020433 12.484816741565 -0.005979543912745515 11.24627603075263 -3.76232573747763 11.22058929470643 -3.828343276630022 11.10430498040334 -3.750862145429234 11.73940073486214 -0.1264601345604492 11.75768076529818 -0.1879173364969197 11.60862897452939 -0.1133295857564735 -10.57042428796328 -5.422818079844593 -10.71295262364756 -5.440159567732102 -10.75635901643806 -5.387094030580002 -11.3179454351192 -2.134532054307301 -11.48054090956381 -2.143662211054009 -11.48273687812214 -2.071991336639826 -12.51434750350248 -0.650580813859589 -12.37353185978491 -0.6498274134242043 -12.51983891596024 -0.7060533553217917 12.63958050495457 -0.6693547964434079 12.65198352598792 -0.731828798096542 12.5221328162481 -0.651691222853194 -11.83462611313661 -3.25307820474858 -11.9605286250438 -3.277596497196791 -12.0052031508993 -3.221363921453147 -12.58250281806942 -1.015046530271011 -12.58528579872573 -0.9433830155386896 -12.43698451464761 -1.001648766609163 -9.655464840408483 -6.514825842457736 -9.528604502594481 -6.482686502146462 -9.626160197578194 -6.568658861140238 12.40024141668809 -1.753199306494514 12.37619883512541 -1.820774510109404 12.27206791113328 -1.737364164996175 12.44657289345614 -2.769530930851455 12.33204167285077 -2.751948366573266 12.34683587159214 -2.683895528262178 12.50359033416776 -2.060438594993016 12.6298464498674 -2.141716106848167 12.50495292832494 -2.123546688312313 -12.11239440981136 -3.325770736080165 -12.08559598487972 -3.385247611446262 -12.25173706902597 -3.35258701561263 -12.65359948292654 -2.186435630159274 -12.51127527650821 -2.172022624119048 -12.5083384750712 -2.243677080142132 -9.094376039244555 -7.212058789567762 -9.009492746513812 -7.137624585116146 -8.966801636117909 -7.181986746492179 12.34575627928272 -1.884543078536829 12.22803114568178 -1.86806206583168 12.2421675796568 -1.800715955727265 12.51463740134587 -0.5872590298221754 12.64529440888101 -0.6665814394666298 12.51737822269537 -0.6497039335917156 -11.93742043501262 -3.086640748076639 -11.91061202692907 -3.14513654200913 -12.08053448882132 -3.111317530780448 -12.5854364412165 -0.9436425349592006 -12.43993409235087 -0.9302505669090631 -12.43713501742452 -1.001908065963351 -10.10626095412997 -5.904965002461295 -10.06927576034501 -5.951373557172462 -10.19862236532301 -5.97664674374756 12.52689379923964 -2.564429694384292 12.50276351476397 -2.632160172276806 12.40159987216635 -2.547566698791825 12.61860799010647 -2.07157490265327 12.63071247558316 -2.134070790287479 12.50436027662797 -2.05288573196875 -12.02217889485638 -3.552433880925095 -12.1446982041293 -3.578770994341044 -12.18895028811796 -3.521825751571051 -12.6506109294987 -2.258069628247561 -12.65359355466221 -2.186424059880305 -12.50833255829316 -2.243665527901626 -8.371711296460484 -7.711058531133934 -8.247493324895878 -7.673278536577046 -8.33526926066186 -7.762582516942481 10.92081324715679 -2.781893670447513 10.89598809710243 -2.847298419544966 10.77389037552655 -2.771354714339896 11.41909956563652 1.176088603862243 11.43741133559371 1.115289727710095 11.28433698302148 1.188297566200957 -10.28317486014378 -4.970754249946205 -10.42929398469201 -4.986742463350395 -10.47187985914567 -4.934357291864098 -11.02080708112402 -0.8895196254789614 -11.18732886843113 -0.897792518239128 -11.18936508156011 -0.8261190930710749 -12.47060931995162 0.8211727458480483 -12.32692890558392 0.8157345692125834 -12.48189717357242 0.7671225504100739 12.35737763565091 -0.7610649615736504 12.25110646693393 -0.73758325334747 12.2590339506434 -0.6675199869267502 10.85958640769515 -4.696877842611122 10.96376175377825 -4.784017579808633 10.84911064754874 -4.759555551762515 -12.64738279739117 -0.6705078456432573 -12.62484614593904 -0.7348530040563482 -12.77130993133742 -0.7105102352840176 -11.81966874191324 -2.221216928577346 -11.68814189401062 -2.200933905113122 -11.68477240812853 -2.272568859774362 -2.813837005937617 -10.02175846134583 -2.747730045187505 -9.944225755608683 -2.684584726814461 -9.975990867798494 -12.34712717847993 0.711068567427408 -12.33956233899112 0.6621577329345746 -12.4833067550381 0.6664226720683839 10.8341790913295 -2.928026544613575 10.69932087865276 -2.916489536031525 10.71246538689819 -2.851702319205666 11.39026777054721 1.102973270925174 11.24342278414055 1.114109912454478 11.23677318122472 1.175433037698627 -10.44480332973878 -4.891435348338514 -10.4227137964753 -4.944847588370251 -10.61062682259548 -4.905997593885506 -11.02046413612363 -0.8889369615822576 -11.18902199551489 -0.8255361971176556 -11.02251895736931 -0.8172662058665945 12.32972769345473 -0.6571501199675645 12.31397725318278 -0.7268343890666958 12.21481564695536 -0.6338252937164728 10.85686994610952 -4.839283370499927 10.85418283551526 -4.902475788041593 10.75105040469853 -4.81457168848571 -12.63310231493371 -0.9496811178036727 -12.74189688413779 -0.987207398137782 -12.77995673749219 -0.9268411838871186 -11.81758591857441 -2.295070005443553 -11.82103415492809 -2.223430057712653 -11.6861378518861 -2.274782038886273 -1.700680309258098 -10.1847686180246 -1.576911440637717 -10.13042462988106 -1.642357880487287 -10.22243727512909 -10.07489593405453 5.317865131622324 -9.914212043539097 5.290983115074772 -10.09887128280329 5.272346325687641 8.926739659517338 -3.333700991142646 8.906055126422018 -3.397258317156485 8.762487648304621 -3.32703020223145 9.322637233375367 2.072371933533065 9.339731769609148 2.01231322404564 9.171855318009799 2.080670833352711 -8.389721987007942 -6.192875430508777 -8.55369073492459 -6.202934797632022 -8.588287626146517 -6.153801221723152 -8.953615184345583 -0.7905433555926199 -9.139687651119626 -0.794883308664731 -9.140975068249894 -0.7232014806574122 9.916681593819769 1.355376862847567 10.02890419320369 1.255402500478206 9.920180365030419 1.2846531573443 6.806571625771529 -6.414021707408567 6.687836312696602 -6.384293090103021 6.710808514383312 -6.323702891380686 -11.70770455946561 2.327646037062097 -11.84237110709834 2.340842626216489 -11.71945801068183 2.394391966093911 -8.497812747680163 -2.125569904993155 -8.361422144933348 -2.099387563293242 -8.358261214048065 -2.171035711933601 1.647171871169038 -10.17810927867025 1.726491109724755 -10.10245365700075 1.79514528646327 -10.1270924823156 -8.95332294793722 -0.7900298055367276 -9.140682730464413 -0.7226877560546117 -8.954591924157162 -0.7183431001338305 -10.182430584409 4.923837330807495 -10.18266462648535 4.879634520720614 -10.34450278856321 4.901821467802213 8.839585991712525 -3.485217008954383 8.688773749948515 -3.477266435189169 8.696271217218778 -3.414670201888944 9.288538652900973 1.965996370032669 9.124309544921923 1.972946970572734 9.120416123885098 2.033978688334276 -8.587658393071976 -6.193333549739277 -8.575865719793248 -6.242524934708914 -8.773568499488418 -6.200830912026516 9.890862181544346 1.305687024710952 9.88534748018013 1.236021162589624 9.77197480422123 1.33518926633466 6.665538242502155 -6.452944035834532 6.651807514522332 -6.514386963890035 6.556891616352036 -6.423516395302233 -11.75101458588584 2.114149917366381 -11.8589344778326 2.06515187335709 -11.8858029850785 2.126552785291868 -8.497014745379723 -2.201529350571034 -8.500061384445765 -2.129882272843588 -8.360509649708535 -2.175347697790068 2.591126072632715 -10.14678966530765 2.530477444128616 -10.11615706904937 2.673833530764338 -10.05754682408608 -6.673280126673509 -0.7225446577926918 -6.871434112871212 -0.724537688939901 -6.871984446148782 -0.6528453404657015 -7.25799830404261 7.162579420947893 -7.078469010283276 7.127490702602729 -7.276450317435023 7.1208275330605 6.716704057231503 -3.702182447020491 6.703222601122889 -3.764155022811938 6.541750659983299 -3.697743607190727 7.02276182648545 2.52952846852613 7.034419215835821 2.469111966056694 6.862116333526764 2.535600225585909 -6.258451424956638 -7.156337190288912 -6.433325467948533 -7.163179576646859 -6.456044912435761 -7.116420380834304 6.12148523600438 2.432855809288773 6.25615285277576 2.329841047502787 6.133010334498379 2.363646324428206 2.482131981882935 -6.578948038907051 2.347397337717577 -6.54511569793694 2.374685842992014 -6.48654031337502 -9.226883617228856 4.949918969721494 -9.364300424677927 4.950734550338548 -9.227331453626954 5.014855107582775 -4.144388904626483 -2.059837602090552 -4.30091436112659 -2.019724650321638 -4.146690846255067 -1.98817332472513 4.58366395416181 -9.57844883091896 4.687797825325956 -9.503157336036267 4.75401390710288 -9.525546124816136 -6.480623026832273 -7.212833170771361 -6.482062634754204 -7.258941925857334 -6.678743437251233 -7.216326884488593 -6.674115931306228 -0.7240396627997361 -6.872820514184492 -0.6543408101834938 -6.674674293542323 -0.652348144219881 -7.459838911950114 6.776905529532344 -7.453197270593202 6.73512117752022 -7.634232373204485 6.765041439828853 6.640026708949564 -3.854609266625648 6.479369334592612 -3.84873527494939 6.478738437322397 -3.787922221610563 6.983802994338966 2.410197361084788 6.808810192667448 2.41479142626565 6.811319571334433 2.47639529799676 6.070038885237254 2.30442542891948 6.071263036094379 2.236711245752523 5.935553584784401 2.338876406096 2.352162169744286 -6.602427208229413 2.335520940445758 -6.662218054347383 2.228692780121906 -6.569367996641364 -9.352558283623353 4.681432156679366 -9.369069035535254 4.739923671642124 -9.231651764626596 4.739157938824222 -4.144147157576669 -2.059248813414291 -4.298406531952122 -2.090796906347824 -4.300672587376654 -2.01913579716988 5.318857115998671 -9.475497878340921 5.264506578007724 -9.446406902090407 5.431054043365919 -9.386478061742478 -3.798437635028153 -7.988997234969305 -3.974687229717874 -7.995376371805689 -3.984202140860202 -7.949865124205307 -4.239991226707238 -0.6854206447204622 -4.43977561736835 -0.6868879570074055 -4.439645894320549 -0.6151951654697432 -4.70736126842966 7.959147464083581 -4.51415759813757 7.92149520321366 -4.713837501285989 7.917347047259822 4.29228277170574 -4.052848656795728 4.287355328842573 -4.113540076474784 4.115968003424621 -4.048916083437927 4.602153769781864 2.84892743796308 4.606437271493864 2.787384127466765 4.440207456119154 2.854502823893526 2.501540817132148 2.458421236806983 2.360894878367134 2.49541657796471 2.347214760178243 2.562277059063196 -0.995987370844324 -6.193340856458598 -1.14982734784705 -6.156379658505479 -1.124472851279751 -6.098513453078377 -6.021111357985751 6.468295099512081 -6.173156786121 6.458297194800057 -6.016431170743815 6.52809812707032 -0.4673611767382618 -2.012142972794287 -0.6445168387110728 -1.976256813940504 -0.468805931694829 -1.940468705341978 6.770791638712933 -8.743876822142328 6.899332350587947 -8.667446781248739 6.958090127764787 -8.690637162682506 4.539717524041055 2.706829269539442 4.363356280612857 2.710870355417722 4.373278723959134 2.773626692411378 -4.069659760668041 -8.087473990802284 -4.084730298185056 -8.132364966101234 -4.269422606780978 -8.090208960337565 -4.239811057065991 -0.6851008210236675 -4.439465672741036 -0.6148752503924861 -4.23972471180077 -0.6134209565716047 -4.909868340854303 7.617742079432595 -4.891256859307714 7.575729809148655 -5.085869538237439 7.608586064309732 4.214459294067448 -4.220588294909764 4.052505424544329 -4.215150427434201 4.04326125207857 -4.15565456024358 2.313009045770565 2.381868346057378 2.314475444715103 2.316766841332019 2.159267758698982 2.419806410991602 -1.098011577230085 -6.203634390694601 -1.111064161653627 -6.262929803788139 -1.239118732682174 -6.167742373348917 -6.107052651180744 6.220643665716459 -6.119745850805267 6.27426029218976 -5.967650873234329 6.283780382622252 -0.4924884353088443 -2.089383935684647 -0.6667519852174547 -2.12515907898624 -0.6696466591109601 -2.053505604099753 7.361945856571936 -8.600266542189791 7.318191678102082 -8.569583331019507 7.502172404554232 -8.509610303663143 1.961866993229882 3.121420198292064 1.958855011039579 3.05822469283424 1.807479363525461 3.128187325946219 -0.9534596355512204 -8.616875581533371 -0.7875150586268281 -8.65393563374966 -0.9553964181431812 -8.663280655942394 -1.51554266047925 -0.6737276652590656 -1.706051469211878 -0.6764903426647987 -1.705250544440307 -0.6048132151761321 -2.045058043252404 8.274174214337881 -2.235433419952746 8.266902856311152 -2.242357602555838 8.311058497063025 1.503540247707399 -4.466496658125283 1.506635251235516 -4.526385834563106 1.335329230917145 -4.461239476627109 -0.656613062860214 2.182939504566808 -0.8111416065795968 2.221849701690229 -0.8214786410022695 2.286451640181053 -3.723373662074076 -5.770770407697359 -3.892365640552052 -5.731735655616535 -3.872998263873556 -5.673518365337237 -2.722161985294747 7.121072471250257 -2.895915131563711 7.102752784121488 -2.718419346985435 7.175531454212196 2.502047898251155 -2.059457062259479 2.307258732297215 -2.026349521758462 2.499797868375544 -1.987789267103908 8.60232885134681 -7.732012325644101 8.747377381387175 -7.653778516002554 8.795771051466248 -7.679795656206258 1.416206611738852 -4.648816687372756 1.261812103455085 -4.642147384413928 1.245142400618741 -4.58327829393803 1.884090460540353 2.975302765977744 1.715925736702129 2.980632017713818 1.732481879783885 3.044952568735773 -1.101939570557584 -8.770828551072645 -1.127596089301494 -8.816850064327529 -1.292339017399659 -8.776608818779309 -1.519352831643749 -0.680248378444777 -1.709061696274642 -0.6113355990130359 -1.518494808126481 -0.6085562156311978 -2.432832418340815 8.014027739704867 -2.402052538621178 7.970192476512427 -2.600568684462753 8.002787713078721 -0.7887234807686039 2.121535479458697 -0.7915802586981796 2.058723468682336 -0.9570349319695676 2.161652285090936 -3.814700094223602 -5.774321532089809 -3.820414909471595 -5.834135546616221 -3.969682280101117 -5.736544379247184 -2.735030482338774 6.715111064731046 -2.752681918904458 6.761933194069331 -2.578715199213051 6.778952396307427 2.512021352067604 -2.022946996562845 2.317962934978308 -2.061527020896144 2.317233307623482 -1.989835372920374 9.068258403170781 -7.539931851525441 9.037582147125956 -7.505617190798471 9.228077681181993 -7.447079154052003 -2.135624988089351 -4.88392659388195 -2.127787708236893 -4.943922613996008 -2.287825372741574 -4.875016067259235 -1.265266249581897 3.361322696758975 -1.272981469490768 3.295978028257124 -1.404182385817391 3.37155812642724 3.377144303257839 -8.614972367176044 3.522939210648212 -8.64677302543765 3.372142215560619 -8.665070813338549 1.880044486869489 -0.7099514351381803 1.706315315811077 -0.7161579521971155 1.707983358657299 -0.6444746211323323 0.6337253384765141 8.349045894123551 0.4609188363799184 8.333314393872879 0.4429084197343792 8.381346533202356 0.2695293010936289 8.1364090602647 0.3104024884032453 8.089717936087684 0.1186430588494392 8.118356841517262 -2.273763436104708 -5.093778321852651 -2.412676028745445 -5.083513173020799 -2.433325245719731 -5.024192203367654 -1.352700378083153 3.220124235178913 -1.504857610480996 3.229056740737732 -1.484182202929981 3.295401634304913 3.147647696784186 -8.819590970392428 3.119343838084017 -8.870722796612172 2.974893776662716 -8.835327339648192 1.886046075813324 -0.7001921648486493 1.713986269026166 -0.634713201971237 1.88776685392225 -0.6285039010011156 3.699286847979196 8.021822719626043 3.551952280515458 7.992681642936506 3.526917347250496 8.045842285832848 -6.836616185196524 -4.819791454772719 -6.974650412903761 -4.743853791100033 -6.842495237258248 -4.758460733709759 -5.459351615402195 3.312165022183192 -5.33863699750301 3.296910802299307 -5.346121993929955 3.228855582043298 9.041019153931364 -6.223731286472436 9.17630563324073 -6.244424906221747 9.050258749720699 -6.279024996016408 6.041048416374899 -0.7390722020015017 6.189725108657427 -0.7993394197908873 6.03839393747066 -0.8107428311457778 6.190729492069909 -0.7300320553835483 6.188178023715594 -0.8016900164781685 6.039501070505297 -0.7414231970392802 3.426548616858394 7.90026039116947 3.471178173534864 7.849667070041692 3.298289751271667 7.871255638637174 -7.174730556041649 -4.906914882122241 -7.19105403806215 -4.845489807090734 -7.054114516421728 -4.922644265753986 -5.548237129010005 3.181780743562215 -5.529544051101709 3.250467760491241 -5.415988493601526 3.167433313382298 8.937225232820152 -6.451378921063251 8.926680707431935 -6.511009150407484 8.792206600368742 -6.487263767881751 9.800177201884342 -0.8616435763712601 9.931073519539018 -0.9166810034770428 9.79701255595192 -0.9332864011530994 6.543709852027904 7.192855156707714 6.418256003569928 7.149474398751684 6.39047432061879 7.207047475399693 -10.6400071920669 -3.408831100365564 -10.75619133608059 -3.325594972389929 -10.63771319022588 -3.346104088131604 -8.981249019126471 2.571235861176958 -8.87372873114696 2.55103419758575 -8.877325153416768 2.48084769220877 12.06170687526851 -1.408798886311561 12.19939239644375 -1.414165055528784 12.09521623568925 -1.462925454458923 12.05148810165725 -1.446818324504842 12.16880426552161 -1.39314695239537 12.18912632739616 -1.452889081468752 9.949440569830106 -0.824816356737934 9.944926260336747 -0.8964329369946092 9.81403154190742 -0.8413931562028022 6.369941897162857 7.118594636873734 6.413417582830934 7.065469826911111 6.259985367198966 7.07827979375381 -10.85607504668656 -3.355543728139729 -10.86392437964178 -3.292489464994982 -10.74884128748 -3.376666859992118 -9.145558097532087 2.348930978149284 -9.131910200316611 2.41889883773728 -9.026943999321077 2.329259125943994 11.31957069538852 3.020063535695641 11.26583492276647 3.065205116143619 11.42096419302446 3.074562563346431 12.11838366928983 -0.916930972997013 12.24919422657635 -0.9661783164602587 12.1137980097633 -0.9885447479458788 9.380176606079347 5.589576159771561 9.266021591225567 5.52885695472803 9.243020805809994 5.589392515012531 -12.40786866375894 -0.6990625123970562 -12.29002405232616 -0.7258816563634604 -12.30443274239033 -0.7882153539158593 -11.80972128753171 0.7593281674162619 -11.69993427371322 0.7335394531590792 -11.69436938673955 0.6628881535085086 -11.86829958126493 0.580998676268116 -11.86624101006072 0.6509562222434236 -11.74995342578468 0.5552141355206599 11.21328869378885 3.273985903877301 11.3272664105408 3.335675764187015 11.36829230186353 3.284553751724773 12.25469266709176 -0.8918064921604529 12.25071985344918 -0.9636108793327785 12.11990880630248 -0.9143643410958979 9.381505479978991 5.459039563227266 9.244349645995575 5.458872224572826 9.345371550519099 5.513624454725724 -12.41324362251875 -0.6884910809370632 -12.40648445054843 -0.62555973916627 -12.30384427382546 -0.715279913644114 -12.32826371519772 -1.362403121319241 -12.4641364650429 -1.262973566421748 -12.34391070149085 -1.293517925765701 8.981203934996707 5.429316778188807 8.921911684114765 5.467780531960197 9.097381664687084 5.486188805898603 11.94236502335973 -0.8120089244758073 12.08925826584056 -0.8553680978831623 11.93906130248036 -0.8838342888720473 11.47787161521177 3.097568893933862 11.46388290660867 3.158119809795075 11.5966558362717 3.174562599256967 -11.34821614628667 1.255624421034312 -11.37199634600862 1.195303020831611 -11.47904374747924 1.287374896716945 -11.28751556120904 1.321710735149691 -11.40740462468705 1.353063397022768 -11.3935630011545 1.414495959264407 -12.44094075818664 -1.383219269771241 -12.44652625482842 -1.315413747877141 -12.30989459050788 -1.414197626557444 8.790311906755896 5.759914720469269 8.920833395116851 5.824940625231536 8.965450224087414 5.780183568122521 12.08695084765901 -0.7940576838640522 12.08419862447269 -0.8657165775385197 11.93730339714487 -0.8223615656621114 11.6677428890452 2.960337297373715 11.53468992322189 2.945360715295816 11.64097291766424 3.01325500917886 -9.369071727379923 2.270001709774427 -9.394095880381938 2.210798678097317 -9.518271409100272 2.305789280122922 -11.29147691600203 -2.630005990951341 -11.2730960361497 -2.696397365380065 -11.42869150098175 -2.595812799590735 6.576658927265195 6.554304857670149 6.520974822997713 6.590584892256295 6.713551668846446 6.613202537613497 10.52339895681859 -0.7207779304447626 10.35283549260919 -0.7540787061680859 10.35480122092476 -0.6824037917664646 12.51180493535195 0.2706465071181 12.50509077932547 0.327355149520634 12.64691539020935 0.3590274409921676 12.66778146565213 0.05892633726080144 12.52495608246687 0.0301714431453946 12.64674478859559 0.1068366988525202 -9.302510166488013 2.310149017915042 -9.439415499216281 2.345100915452966 -9.426070055047823 2.405635132471007 -11.20914066415681 -2.694165706725969 -11.35869759713432 -2.659180231377136 -11.3653588524073 -2.594180249874346 6.361798036712726 6.910066499029041 6.51560573550019 6.976942616822218 6.553995546503733 6.934599816498761 10.52299578483374 -0.7218641785146214 10.35439796509906 -0.6834902677926709 10.52494382013441 -0.6501968436860819 12.37000959761969 -2.336958627664024 12.36424737504895 -2.286473781923784 12.52368815173407 -2.242902055310073 -7.224685944093681 2.756019202345131 -7.245965853143572 2.696905971698105 -7.390269406292927 2.794788332272979 -9.530928646863446 -3.317543633379358 -9.515533077944276 -3.381619966434712 -9.683232503992896 -3.280780719023091 4.257134499501867 7.144053646115612 4.210186732294227 7.180672783186406 4.411524365462806 7.205010246440727 8.545973735453295 -0.592941878975351 8.357028163816624 -0.6299704831927728 8.35820892604297 -0.5582927843914641 8.546230575502396 -0.5920844654164418 8.358465807110765 -0.5574352332749095 8.54739793738338 -0.5203936384912864 12.41475282978748 -2.565479432249199 12.25351832280703 -2.604754525619022 12.39284133089804 -2.524392084192538 -7.128554081253577 2.81551315224877 -7.280503727026984 2.85317221179776 -7.272251546151035 2.913945760187608 -9.436436927120244 -3.342654604932382 -9.602337393165087 -3.304783873263495 -9.604596860468231 -3.242291066644484 4.043546367960193 7.507514708560755 4.217305617531318 7.576650856390418 4.244512810361858 7.533681961433697 6.458588815215814 -0.4911045874229971 6.259337848940884 -0.5302686320569416 6.259788327676025 -0.4585727995235803 11.45022029032948 -4.43438708186878 11.4389091848806 -4.390728059032241 11.61617969043561 -4.339166469793684 -5.006251699513427 3.100853315779034 -5.02112085534459 3.040863773969763 -5.181011700825348 3.142336909852881 -7.552485714177336 -3.699467933501392 -7.54377745695181 -3.761609553274425 -7.713189516733095 -3.661254097011805 1.883949753098416 7.515269190246045 1.848487499930221 7.554335453351069 2.047700650454797 7.578044841063513 1.689162816113156 7.860895420440947 1.873638509106969 7.931905728540796 1.888054153622193 7.886221660767003 6.457348208570663 -0.4957853571967956 6.25854755424382 -0.4632542000480829 6.457838105933594 -0.4241002986534197 11.2777955831601 -4.692609692730578 11.0974163655919 -4.737000543948343 11.24964601433964 -4.657753875375169 -4.894188290903335 3.164392141248226 -5.054484030439394 3.203652280341502 -5.053497485486894 3.266429849060887 -7.470913264088006 -3.712882289854652 -7.646001996777374 -3.673342907891183 -7.640648267248458 -3.612865098936539 -0.7302780596735581 7.710385280979263 -0.7542204343304731 7.753523337154497 -0.5673989491577319 7.774105028477619 4.19487860069561 -0.4224204991272711 3.996298338185958 -0.461464255093915 3.996095256625206 -0.3897783386373207 9.878641123504959 -6.202299018746859 9.858408393813962 -6.164194333899258 10.04825114846391 -6.11211180087455 -2.608771561801277 3.429134367301827 -2.61640780100766 3.366640053256094 -2.783219999291351 3.469005226175061 -5.438666118872652 -4.031915268882641 -5.438482305466206 -4.092539373380188 -5.598960862720181 -3.99348706643258 -5.339848911181261 -4.02173657458162 -5.51460469757868 -3.982004317795938 -5.5007060378602 -3.923065006203717 -0.7235561226348133 8.069782180759592 -0.9101067414326411 8.047732414326177 -0.7267770962588636 8.119347977291019 4.202241642346643 -0.3947040905378378 4.003459239982811 -0.3620583813129791 4.20195769221024 -0.3226515792289527 9.676123288116585 -6.246639807917428 9.827903993125302 -6.168116163994411 9.867218195010635 -6.197472680389462 -2.497942624891423 3.476350128791754 -2.657800587684473 3.515888260631241 -2.664241510416254 3.579230860433497 -3.039940524517814 -4.412230103514333 -3.048242970748799 -4.471818097288121 -3.191190959732303 -4.374922231239453 -3.763036890219274 7.590975318271896 -3.778704319162962 7.639051110321895 -3.611274597345889 7.654713604059981 1.650523539803778 -0.3535035296280499 1.462196838817967 -0.3917729921800831 1.461145487245244 -0.3197248815295568 8.592219930555833 -7.257072706052855 8.557921179424286 -7.224053261046919 8.747476541769197 -7.164935697135427 0.1406337610625319 3.733797810210173 0.1395419039069806 3.670258686393833 -0.02388507881883939 3.773426175556571 0.2709240254026241 3.777324967501047 0.1201334906623336 3.815767655541199 0.1080787144297618 3.881060097561499 -2.936354617074754 -4.394314621472311 -3.101275843536757 -4.355795668491951 -3.07971136218907 -4.297793192633391 -3.721072113896653 7.867935155099407 -3.888349492248882 7.851295778302021 -3.716943315756291 7.923624035620274 1.645064061037364 -0.3724507021735264 1.455685340335751 -0.3386743722916912 1.644100099668695 -0.3007641796892113 8.100940675740842 -7.347312867957174 8.241692624995373 -7.269464729778806 8.29346233362131 -7.294459136463427 3.469850849684725 3.900357043555614 3.472017456300336 3.834401550811186 3.322275567743667 3.937355519735375 -0.1023895106528927 -4.879835590156923 -0.1170898568501827 -4.939151136998811 -0.238029561536206 -4.844759002316809 -7.114636760554537 6.756816294661537 -7.127895730494763 6.81161600095514 -6.980733369026265 6.818051314912564 -1.550998060598423 -0.3778865650695223 -1.720065763427929 -0.4124693052699294 -1.721835239327647 -0.3407922871979483 6.80702682276617 -8.297761895734295 6.759729529718261 -8.26778005069659 6.938896502216644 -8.207586602382589 6.163368388470193 -8.350734524831868 6.284459955916631 -8.274759866409978 6.346039756643334 -8.297456563449998 3.643874164541265 3.941770590636395 3.508670096486394 3.977873807408855 3.49497507021792 4.045478249316951 0.005835663129068469 -4.860933560759089 -0.1421120931521958 -4.824876920903267 -0.1155740604464639 -4.766915566438251 -7.026139346161553 6.991237927096178 -7.17327156087129 6.984389301634262 -7.021802981148946 7.052850713371004 -1.554815807467813 -0.3887919030281837 -1.72565342438554 -0.351698874051286 -1.556549722259848 -0.3171079159341658 4.574721270117863 -9.206420184576434 4.517744107111181 -9.17721696821164 4.677354815083322 -9.117540535223441 7.353869995920599 3.5507029233354 7.353694124279022 3.482245578826975 7.225199208536866 3.583728155222878 3.647514931463742 -5.242838091940076 3.630918838176233 -5.303045250355286 3.529486700959499 -5.21084132776262 -10.33125851989274 4.830395726752738 -10.35048384214724 4.890220798922674 -10.2155357828808 4.885791695912404 -5.6362703403132 -0.4896387235804584 -5.638819120231366 -0.417969801788205 -5.488409815916429 -0.4597030815992176 -5.634811288321173 -0.4089858632164678 -5.486990394918814 -0.3790542862912318 -5.484402411438603 -0.4507200963404745 3.763031202477097 -9.218754706048724 3.859035375087246 -9.143704093001249 3.926740526010622 -9.166398178683943 7.408314102668021 3.645974968143622 7.535697521555866 3.543628900312736 7.417894719828418 3.576135708947374 3.791319289428732 -5.203325182469116 3.662355303616272 -5.170711020977769 3.689169757568529 -5.11161268549519 -10.19138273408183 5.04141668936046 -10.32631531885218 5.046128526909784 -10.19496663212064 5.107359031539379 -9.806781445342764 -0.6041624731399967 -9.810039044935884 -0.5325135653374357 -9.672624342500644 -0.5797765348465975 1.535922109075115 -9.865529604055389 1.474457187294036 -9.833688724408701 1.609684157394824 -9.776722218676373 10.93539100340914 2.177462147527562 10.92675072566646 2.107547018278384 10.81934835029744 2.205101865336883 8.072853190883647 -4.801022135136885 8.061390124508989 -4.863120881729041 7.968882449874977 -4.773024751161838 -12.27146224211327 2.015760399897205 -12.37926707659833 1.970167214977837 -12.40980259010493 2.031643386693846 -12.23230287926874 2.180127290769761 -12.37044845907693 2.197026830779392 -12.24796720187469 2.246514432487988 -9.7794452200131 -0.4770096666667782 -9.648176375190293 -0.4527164337478769 -9.642033647960231 -0.5242782681450098 0.6347877467500684 -9.7938824966912 0.7064899812011505 -9.71696929723729 0.774283166708718 -9.743687857519737 10.92258138251291 2.193204678530598 11.02901042879143 2.094991913303787 10.92479461569198 2.122419629650227 8.274267772584182 -4.533218815517539 8.368657229714991 -4.622098876869929 8.251571579293271 -4.5940434551654 -12.62322136483424 -0.9884926746096205 -12.73402258899104 -1.022165627830135 -12.77512460861654 -0.9628896790440884 -12.42656044648903 -0.6819918015620948 -12.43279392382107 -0.610434823620015 -12.29429478115778 -0.6636320508769412 -3.514888558759066 -9.587899785499472 -3.394188500635819 -9.536087997465549 -3.461425166322894 -9.630198417003474 12.67926010943561 0.112703683031725 12.66238027365438 0.04315350076231182 12.56225914008888 0.1340217108155918 11.89531750833988 -2.599964148209908 11.89459864827752 -2.663352588840468 11.7861060285692 -2.577088680193272 11.75577224359357 -2.625974774347513 11.86384865128812 -2.712561399909004 11.74866162454194 -2.689746790882088 -12.66282470131991 -0.7703015141692573 -12.63789468173582 -0.8332199780093381 -12.7893008948975 -0.8058556451738165 -12.42167249640617 -0.5929351130584185 -12.28646030539558 -0.5744824291765425 -12.2831707763391 -0.6461281874960041 -4.690159170759388 -9.215779302306514 -4.62245131688605 -9.137747522884199 -4.563762793138021 -9.17319511605838 12.70399787726469 -0.08200532495677756 12.59439955775383 -0.06030497090109629 12.60566385994444 0.0100626524788951 12.61640793213024 -0.1023569909323241 12.6304044421532 -0.1654198673449201 12.49827414866427 -0.08512560844670043 -11.67350323515287 -3.288010248492187 -11.80204843882791 -3.311238971525278 -11.846820292182 -3.255535621580952 -12.48538805670654 -0.59129550450552 -12.48811697465957 -0.5196351760705164 -12.33725850261272 -0.5786498228314776 -10.50563804373145 -5.580884561568996 -10.37647905207472 -5.5534926342502 -10.48223632086638 -5.636103579282757 12.26433931610314 -1.606192561422027 12.2382986223441 -1.67409303859007 12.13387420455086 -1.591030891722805 12.25008523136633 -1.651601640595737 12.13164251785821 -1.635736838902463 12.14548500515366 -1.568676501068125 12.45898529356781 0.06265792421729399 12.59305490883578 -0.01562164687526756 12.46274646214888 0.0004132969269934617 -11.78705701281359 -3.145702805812931 -11.76049531113983 -3.203525023142638 -11.93312207740811 -3.168849634525575 -12.48802585516416 -0.5194814619330627 -12.3398577858151 -0.5068274917863478 -12.33716744915971 -0.5784962131693596 -10.80976664562027 -5.00053219044899 -10.77723945394556 -5.048177494912495 -10.90821893477896 -5.069560801012446 10.68389964464171 -2.503523768390299 10.65940534287381 -2.568672673545232 10.53444531774685 -2.49359210205869 11.18407651756669 1.693274869997672 11.20252889825199 1.632674230747778 11.04684961283824 1.704870363887166 -10.06808402359556 -4.910543599436745 -10.21696107594429 -4.925582567577007 -10.25872359456791 -4.873614434076883 -10.7816665529123 -0.4648133065879106 -10.95109552754286 -0.4724726394720479 -10.95300623200576 -0.4007884327468569 -12.30908038002033 1.740118222142352 -12.16332030314266 1.730537365504907 -12.32385807588184 1.687300798036264 -12.20876008939372 1.568895762789303 -12.20352521299595 1.520487039089596 -12.34947627949594 1.52805768223384 10.60534147703649 -2.640136696809395 10.46803189022016 -2.629163630984892 10.48068895447858 -2.564740459846621 11.1572787914086 1.617496273057383 11.00776963092635 1.627958053809139 11.00123978666344 1.68921021825032 -10.22928332495867 -4.858430103010528 -10.20826288899793 -4.911140997368372 -10.39813383988574 -4.871837620040224 -10.78215597732558 -0.4656464671670826 -10.95349585095464 -0.4016219155005061 -10.78408957030241 -0.3939673121257168 -9.699595093495944 5.775912464707766 -9.536309214523842 5.747275989514788 -9.723468536318375 5.73110556445044 8.665189670607965 -2.996047723033286 8.645332841270562 -3.059336570399545 8.49905097107551 -2.989800264909472 9.040807845074188 2.520450967274743 9.057325119261686 2.460372842151566 8.888248850721846 2.528343927701152 -8.12958098266942 -6.08372138608525 -8.295508498011042 -6.093180139383154 -8.328721898618415 -6.044505563437614 -8.672207449606802 -0.3716241419591361 -8.860448226334816 -0.3755544401733517 -8.861624165207038 -0.3038651157676479 -8.673389915837582 -0.373705239891557 -8.862807031354816 -0.3059469055392942 -8.67458805903075 -0.3020321883300314 -9.832646750119491 5.392998362967258 -9.832473836806617 5.349290839839418 -9.997025549394298 5.373023407964293 8.575783519388756 -3.154262665406538 8.423197819176439 -3.146695911335647 8.429752763263647 -3.084400491640864 8.99728339693395 2.405265479481248 8.831127768129674 2.411791497874662 8.827933938632205 2.472814376969788 -8.334586758656092 -6.111197157968449 -8.324437661620836 -6.159874202813236 -8.522696161312483 -6.117982771918519 -6.377544179146341 -0.3103605142503153 -6.576570181989181 -0.3121674903087746 -6.577067006288759 -0.2404893070979254 -6.92624851164522 7.440383425074537 -6.744319709033606 7.404698113182658 -6.94324404247165 7.398770758029583 6.42893787304784 -3.3565738762113 6.416546647835457 -3.418317624762302 6.253206074137435 -3.352311352956643 6.716822531297657 2.942347538293593 6.72753624867111 2.881857282507835 6.555455076872859 2.948252037061713 -5.961504567206625 -7.033789168623536 -6.137089499438966 -7.040375504351062 -6.158074207712867 -6.993892333598071 -6.198563300694816 -7.116947799031139 -6.201960465062159 -7.162881452958369 -6.397561210177187 -7.120139189853734 -6.379592733052274 -0.3140210896168131 -6.579116187902246 -0.2441509917345677 -6.380062631985634 -0.2423322560992763 -7.130691912037596 7.081262166481328 -7.122500172632322 7.039563654134417 -7.30593463043105 7.070108838600221 6.340075997570792 -3.530611999909155 6.178698014784366 -3.524888339870417 6.176952111102356 -3.464274940928936 6.673710039240254 2.819823577916315 6.498014450153883 2.824219524485156 6.501442688301053 2.885918880306083</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2670\" source=\"#ID1681\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1677\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1675\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1676\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"890\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 3 6 4 2 5 1 6 0 7 8 8 10 9 0 10 11 11 14 12 15 13 16 14 2 15 6 16 20 17 22 18 16 19 23 20 0 21 26 22 8 23 28 24 0 25 10 26 10 27 11 28 30 29 32 30 15 31 14 32 14 33 16 34 22 35 20 36 6 37 34 38 11 39 36 40 30 41 22 42 23 43 38 44 8 45 26 46 40 47 0 48 28 49 26 50 42 51 43 52 44 53 48 54 49 55 42 56 52 57 53 58 54 59 32 60 58 61 15 62 60 63 52 64 61 65 20 66 34 67 64 68 30 69 36 70 66 71 68 72 61 73 69 74 38 75 23 76 72 77 26 78 74 79 40 80 28 81 76 82 26 83 43 84 53 85 44 86 49 87 43 88 42 89 78 90 49 91 48 92 54 93 53 94 80 95 60 96 53 97 52 98 32 99 82 100 58 101 68 102 60 103 61 104 64 105 34 106 84 107 36 108 64 109 66 110 78 111 48 112 86 113 88 114 68 115 69 116 38 117 72 118 90 119 40 120 74 121 92 122 26 123 76 124 74 125 44 126 53 127 94 128 96 129 80 130 97 131 100 132 97 133 101 134 54 135 80 136 96 137 53 138 60 139 94 140 58 141 82 142 104 143 60 144 68 145 106 146 64 147 84 148 108 149 110 150 66 151 64 152 78 153 86 154 112 155 68 156 88 157 114 158 88 159 69 160 116 161 90 162 72 163 118 164 74 165 120 166 92 167 76 168 122 169 74 170 96 171 97 172 100 173 100 174 101 175 124 176 94 177 60 178 106 179 82 180 126 181 104 182 106 183 68 184 114 185 108 186 84 187 128 188 108 189 110 190 64 191 112 192 86 193 130 194 124 195 101 196 132 197 114 198 88 199 134 200 136 201 88 202 116 203 90 204 118 205 138 206 92 207 120 208 140 209 74 210 122 211 120 212 126 213 142 214 143 215 104 216 126 217 143 218 122 219 146 220 120 221 148 222 108 223 128 224 150 225 110 226 108 227 112 228 130 229 152 230 132 231 154 232 124 233 146 234 156 235 157 236 134 237 88 238 136 239 136 240 116 241 160 242 118 243 162 244 138 245 120 246 157 247 140 248 143 249 142 250 164 251 120 252 146 253 157 254 166 255 148 256 128 257 148 258 150 259 108 260 152 261 130 262 168 263 132 264 170 265 154 266 142 267 172 268 164 269 157 270 156 271 174 272 134 273 136 274 176 275 178 276 136 277 160 278 138 279 162 280 180 281 140 282 157 283 182 284 184 285 148 286 166 287 186 288 150 289 148 290 152 291 168 292 188 293 170 294 190 295 154 296 164 297 172 298 192 299 157 300 174 301 182 302 156 303 194 304 174 305 176 306 136 307 178 308 178 309 160 310 196 311 162 312 198 313 180 314 200 315 184 316 166 317 184 318 186 319 148 320 188 321 168 322 202 323 170 324 188 325 190 326 172 327 204 328 192 329 182 330 174 331 206 332 174 333 194 334 208 335 176 336 178 337 210 338 212 339 178 340 196 341 180 342 198 343 214 344 216 345 184 346 200 347 218 348 186 349 184 350 188 351 202 352 220 353 188 354 222 355 190 356 192 357 204 358 224 359 198 360 226 361 214 362 174 363 208 364 206 365 194 366 228 367 208 368 210 369 178 370 212 371 212 372 196 373 230 374 232 375 216 376 200 377 216 378 218 379 184 380 202 381 234 382 220 383 188 384 220 385 222 386 224 387 204 388 236 389 214 390 226 391 238 392 206 393 208 394 240 395 208 396 228 397 242 398 210 399 212 400 244 401 212 402 230 403 246 404 248 405 216 406 232 407 250 408 218 409 216 410 220 411 234 412 252 413 220 414 254 415 222 416 224 417 236 418 256 419 230 420 258 421 246 422 226 423 260 424 238 425 240 426 208 427 242 428 228 429 262 430 242 431 244 432 212 433 264 434 266 435 248 436 232 437 248 438 250 439 216 440 234 441 268 442 252 443 220 444 252 445 254 446 256 447 236 448 270 449 246 450 258 451 272 452 238 453 260 454 274 455 240 456 242 457 276 458 242 459 262 460 278 461 280 462 244 463 264 464 282 465 248 466 266 467 284 468 250 469 248 470 252 471 268 472 286 473 252 474 288 475 254 476 256 477 270 478 290 479 280 480 264 481 272 482 258 483 292 484 272 485 260 486 294 487 274 488 276 489 242 490 296 491 262 492 298 493 278 494 300 495 282 496 266 497 282 498 284 499 248 500 268 501 302 502 286 503 252 504 286 505 288 506 290 507 270 508 304 509 306 510 280 511 272 512 272 513 292 514 308 515 294 516 310 517 274 518 276 519 296 520 312 521 278 522 298 523 314 524 316 525 282 526 300 527 318 528 284 529 282 530 286 531 302 532 320 533 286 534 322 535 288 536 290 537 304 538 324 539 314 540 298 541 326 542 308 543 306 544 272 545 292 546 328 547 308 548 294 549 330 550 310 551 296 552 314 553 312 554 332 555 316 556 300 557 316 558 318 559 282 560 302 561 334 562 320 563 286 564 320 565 322 566 324 567 304 568 336 569 314 570 326 571 338 572 340 573 306 574 308 575 308 576 328 577 342 578 330 579 344 580 310 581 312 582 314 583 346 584 348 585 316 586 332 587 316 588 350 589 318 590 320 591 334 592 352 593 354 594 322 595 320 596 356 597 324 598 336 599 314 600 338 601 346 602 338 603 326 604 358 605 342 606 340 607 308 608 328 609 360 610 342 611 362 612 344 613 330 614 364 615 348 616 332 617 366 618 350 619 316 620 334 621 368 622 352 623 352 624 354 625 320 626 356 627 336 628 370 629 346 630 338 631 372 632 338 633 358 634 374 635 376 636 340 637 342 638 378 639 342 640 360 641 362 642 380 643 344 644 382 645 348 646 364 647 366 648 384 649 350 650 352 651 368 652 386 653 388 654 354 655 352 656 390 657 356 658 370 659 392 660 380 661 362 662 338 663 374 664 372 665 358 666 394 667 374 668 378 669 376 670 342 671 378 672 360 673 396 674 398 675 382 676 364 677 400 678 384 679 366 680 368 681 402 682 386 683 386 684 388 685 352 686 390 687 370 688 404 689 392 690 406 691 380 692 372 693 374 694 408 695 374 696 394 697 410 698 412 699 376 700 378 701 414 702 378 703 396 704 398 705 416 706 382 707 418 708 384 709 400 710 402 711 420 712 386 713 422 714 388 715 386 716 424 717 390 718 404 719 414 720 396 721 426 722 428 723 406 724 392 725 374 726 410 727 408 728 394 729 430 730 410 731 414 732 412 733 378 734 432 735 416 736 398 737 416 738 418 739 400 740 402 741 434 742 420 743 420 744 422 745 386 746 436 747 424 748 404 749 438 750 414 751 426 752 428 753 440 754 406 755 408 756 410 757 442 758 410 759 430 760 444 761 446 762 412 763 414 764 432 765 448 766 416 767 450 768 418 769 416 770 434 771 452 772 420 773 454 774 422 775 420 776 456 777 424 778 436 779 438 780 446 781 414 782 438 783 426 784 458 785 460 786 440 787 428 788 410 789 444 790 442 791 430 792 462 793 444 794 464 795 448 796 432 797 448 798 450 799 416 800 466 801 452 802 434 803 452 804 454 805 420 806 468 807 456 808 436 809 470 810 446 811 438 812 472 813 438 814 458 815 460 816 474 817 440 818 442 819 444 820 476 821 444 822 462 823 478 824 480 825 448 826 464 827 482 828 450 829 448 830 466 831 484 832 452 833 452 834 486 835 454 836 488 837 456 838 468 839 462 840 490 841 478 842 472 843 470 844 438 845 472 846 458 847 492 848 494 849 474 850 460 851 444 852 478 853 476 854 496 855 480 856 464 857 480 858 482 859 448 860 498 861 484 862 466 863 452 864 484 865 486 866 500 867 488 868 468 869 478 870 490 871 502 872 472 873 504 874 470 875 506 876 472 877 492 878 508 879 474 880 494 881 476 882 478 883 510 884 512 885 480 886 496 887 514 888 482 889 480 890 498 891 516 892 484 893 484 894 518 895 486 896 520 897 488 898 500 899 478 900 502 901 510 902 490 903 522 904 502 905 524 906 504 907 472 908 506 909 492 910 526 911 528 912 508 913 494 914 530 915 512 916 496 917 512 918 514 919 480 920 532 921 516 922 498 923 484 924 516 925 518 926 534 927 520 928 500 929 510 930 502 931 536 932 502 933 522 934 538 935 524 936 540 937 504 938 542 939 506 940 526 941 544 942 508 943 528 944 546 945 512 946 530 947 548 948 514 949 512 950 532 951 550 952 516 953 516 954 552 955 518 956 554 957 520 958 534 959 556 960 544 961 528 962 502 963 538 964 536 965 522 966 558 967 538 968 560 969 540 970 524 971 542 972 526 973 562 974 564 975 546 976 530 977 546 978 548 979 512 980 566 981 550 982 532 983 516 984 550 985 552 986 568 987 554 988 534 989 570 990 544 991 556 992 538 993 572 994 536 995 538 996 558 997 574 998 560 999 576 1000 540 1001 562 1002 578 1003 542 1004 580 1005 546 1006 564 1007 582 1008 548 1009 546 1010 584 1011 550 1012 566 1013 550 1014 586 1015 552 1016 568 1017 588 1018 554 1019 590 1020 578 1021 562 1022 592 1023 570 1024 556 1025 574 1026 572 1027 538 1028 558 1029 594 1030 574 1031 596 1032 576 1033 560 1034 598 1035 580 1036 564 1037 580 1038 582 1039 546 1040 600 1041 584 1042 566 1043 550 1044 584 1045 586 1046 602 1047 588 1048 568 1049 590 1050 604 1051 578 1052 606 1053 570 1054 592 1055 574 1056 608 1057 572 1058 610 1059 574 1060 594 1061 596 1062 612 1063 576 1064 614 1065 580 1066 598 1067 616 1068 582 1069 580 1070 618 1071 584 1072 600 1073 584 1074 620 1075 586 1076 602 1077 622 1078 588 1079 596 1080 624 1081 612 1082 626 1083 604 1084 590 1085 628 1086 606 1087 592 1088 630 1089 608 1090 574 1091 632 1092 610 1093 594 1094 634 1095 614 1096 598 1097 614 1098 616 1099 580 1100 636 1101 618 1102 600 1103 584 1104 618 1105 620 1106 638 1107 622 1108 602 1109 612 1110 624 1111 640 1112 626 1113 642 1114 604 1115 644 1116 606 1117 628 1118 646 1119 608 1120 630 1121 648 1122 610 1123 632 1124 650 1125 614 1126 634 1127 616 1128 614 1129 652 1130 654 1131 618 1132 636 1133 618 1134 656 1135 620 1136 638 1137 658 1138 622 1139 660 1140 648 1141 632 1142 624 1143 662 1144 640 1145 664 1146 642 1147 626 1148 644 1149 628 1150 666 1151 668 1152 646 1153 630 1154 670 1155 650 1156 634 1157 652 1158 614 1159 650 1160 672 1161 654 1162 636 1163 618 1164 674 1165 656 1166 676 1167 658 1168 638 1169 660 1170 678 1171 648 1172 640 1173 662 1174 680 1175 664 1176 682 1177 642 1178 644 1179 666 1180 684 1181 686 1182 646 1183 668 1184 650 1185 670 1186 688 1187 652 1188 650 1189 690 1190 692 1191 654 1192 672 1193 656 1194 674 1195 694 1196 676 1197 696 1198 658 1199 678 1200 686 1201 668 1202 698 1203 678 1204 660 1205 662 1206 682 1207 680 1208 700 1209 682 1210 664 1211 684 1212 666 1213 702 1214 670 1215 704 1216 688 1217 690 1218 650 1219 706 1220 708 1221 692 1222 672 1223 694 1224 674 1225 710 1226 676 1227 712 1228 696 1229 686 1230 678 1231 714 1232 678 1233 698 1234 716 1235 680 1236 682 1237 718 1238 720 1239 682 1240 700 1241 684 1242 702 1243 722 1244 688 1245 704 1246 724 1247 690 1248 706 1249 726 1250 728 1251 692 1252 708 1253 694 1254 710 1255 730 1256 712 1257 732 1258 696 1259 722 1260 702 1261 734 1262 678 1263 716 1264 714 1265 698 1266 736 1267 716 1268 682 1269 720 1270 718 1271 720 1272 700 1273 738 1274 724 1275 704 1276 740 1277 706 1278 742 1279 726 1280 744 1281 728 1282 708 1283 730 1284 710 1285 746 1286 712 1287 748 1288 732 1289 722 1290 734 1291 750 1292 714 1293 716 1294 752 1295 716 1296 736 1297 754 1298 718 1299 720 1300 756 1301 758 1302 720 1303 738 1304 724 1305 740 1306 760 1307 726 1308 742 1309 762 1310 764 1311 728 1312 744 1313 730 1314 746 1315 766 1316 732 1317 748 1318 768 1319 758 1320 738 1321 770 1322 750 1323 734 1324 772 1325 716 1326 754 1327 752 1328 736 1329 774 1330 754 1331 720 1332 758 1333 756 1334 760 1335 740 1336 776 1337 742 1338 760 1339 762 1340 764 1341 744 1342 778 1343 766 1344 746 1345 780 1346 748 1347 782 1348 768 1349 784 1350 758 1351 770 1352 750 1353 772 1354 786 1355 752 1356 754 1357 788 1358 754 1359 774 1360 790 1361 756 1362 758 1363 792 1364 760 1365 776 1366 794 1367 796 1368 762 1369 760 1370 764 1371 778 1372 798 1373 780 1374 800 1375 766 1376 768 1377 782 1378 802 1379 758 1380 784 1381 792 1382 784 1383 770 1384 804 1385 786 1386 772 1387 806 1388 754 1389 790 1390 788 1391 774 1392 808 1393 790 1394 794 1395 776 1396 810 1397 794 1398 796 1399 760 1400 798 1401 778 1402 812 1403 780 1404 814 1405 800 1406 782 1407 816 1408 802 1409 792 1410 784 1411 818 1412 820 1413 784 1414 804 1415 786 1416 806 1417 822 1418 788 1419 790 1420 824 1421 790 1422 808 1423 826 1424 828 1425 794 1426 810 1427 830 1428 796 1429 794 1430 798 1431 812 1432 832 1433 814 1434 834 1435 800 1436 802 1437 816 1438 836 1439 808 1440 838 1441 826 1442 818 1443 784 1444 820 1445 820 1446 804 1447 840 1448 806 1449 842 1450 822 1451 790 1452 826 1453 824 1454 844 1455 828 1456 810 1457 828 1458 830 1459 794 1460 832 1461 812 1462 846 1463 814 1464 848 1465 834 1466 816 1467 850 1468 836 1469 826 1470 838 1471 852 1472 818 1473 820 1474 854 1475 856 1476 820 1477 840 1478 822 1479 842 1480 858 1481 824 1482 826 1483 860 1484 862 1485 828 1486 844 1487 864 1488 830 1489 828 1490 832 1491 846 1492 866 1493 848 1494 868 1495 834 1496 836 1497 850 1498 870 1499 826 1500 852 1501 860 1502 838 1503 872 1504 852 1505 854 1506 820 1507 856 1508 856 1509 840 1510 874 1511 842 1512 876 1513 858 1514 878 1515 862 1516 844 1517 862 1518 864 1519 828 1520 866 1521 846 1522 880 1523 848 1524 866 1525 868 1526 850 1527 882 1528 870 1529 860 1530 852 1531 884 1532 852 1533 872 1534 886 1535 854 1536 856 1537 888 1538 890 1539 856 1540 874 1541 858 1542 876 1543 892 1544 894 1545 862 1546 878 1547 896 1548 864 1549 862 1550 866 1551 880 1552 898 1553 866 1554 900 1555 868 1556 870 1557 882 1558 902 1559 876 1560 904 1561 892 1562 852 1563 886 1564 884 1565 872 1566 906 1567 886 1568 888 1569 856 1570 890 1571 890 1572 874 1573 908 1574 910 1575 894 1576 878 1577 894 1578 896 1579 862 1580 880 1581 912 1582 898 1583 866 1584 898 1585 900 1586 902 1587 882 1588 914 1589 892 1590 904 1591 916 1592 884 1593 886 1594 918 1595 886 1596 906 1597 920 1598 888 1599 890 1600 922 1601 890 1602 908 1603 924 1604 926 1605 894 1606 910 1607 928 1608 896 1609 894 1610 898 1611 912 1612 930 1613 898 1614 932 1615 900 1616 902 1617 914 1618 934 1619 908 1620 936 1621 924 1622 904 1623 938 1624 916 1625 918 1626 886 1627 920 1628 906 1629 940 1630 920 1631 922 1632 890 1633 942 1634 944 1635 926 1636 910 1637 926 1638 928 1639 894 1640 912 1641 946 1642 930 1643 898 1644 930 1645 932 1646 934 1647 914 1648 948 1649 924 1650 936 1651 950 1652 916 1653 938 1654 952 1655 918 1656 920 1657 954 1658 920 1659 940 1660 956 1661 958 1662 922 1663 942 1664 960 1665 926 1666 944 1667 962 1668 928 1669 926 1670 930 1671 946 1672 964 1673 930 1674 966 1675 932 1676 934 1677 948 1678 968 1679 958 1680 942 1681 950 1682 936 1683 970 1684 950 1685 938 1686 972 1687 952 1688 954 1689 920 1690 974 1691 956 1692 940 1693 976 1694 978 1695 960 1696 944 1697 960 1698 962 1699 926 1700 946 1701 980 1702 964 1703 930 1704 964 1705 966 1706 968 1707 948 1708 982 1709 984 1710 958 1711 950 1712 950 1713 970 1714 986 1715 972 1716 988 1717 952 1718 954 1719 974 1720 990 1721 956 1722 976 1723 992 1724 994 1725 960 1726 978 1727 996 1728 962 1729 960 1730 964 1731 980 1732 998 1733 964 1734 1000 1735 966 1736 968 1737 982 1738 1002 1739 992 1740 976 1741 1004 1742 986 1743 984 1744 950 1745 970 1746 1006 1747 986 1748 972 1749 1008 1750 988 1751 974 1752 992 1753 990 1754 1010 1755 994 1756 978 1757 994 1758 996 1759 960 1760 980 1761 1012 1762 998 1763 964 1764 998 1765 1000 1766 1002 1767 982 1768 1014 1769 992 1770 1004 1771 1016 1772 1018 1773 984 1774 986 1775 986 1776 1006 1777 1020 1778 1008 1779 1022 1780 988 1781 990 1782 992 1783 1024 1784 1026 1785 994 1786 1010 1787 994 1788 1028 1789 996 1790 998 1791 1012 1792 1030 1793 1032 1794 1000 1795 998 1796 1034 1797 1002 1798 1014 1799 992 1800 1016 1801 1024 1802 1016 1803 1004 1804 1036 1805 1020 1806 1018 1807 986 1808 1006 1809 1038 1810 1020 1811 1040 1812 1022 1813 1008 1814 1042 1815 1026 1816 1010 1817 1044 1818 1028 1819 994 1820 1012 1821 1046 1822 1030 1823 1030 1824 1032 1825 998 1826 1034 1827 1014 1828 1048 1829 1024 1830 1016 1831 1050 1832 1016 1833 1036 1834 1052 1835 1054 1836 1018 1837 1020 1838 1056 1839 1020 1840 1038 1841 1040 1842 1058 1843 1022 1844 1060 1845 1026 1846 1042 1847 1044 1848 1062 1849 1028 1850 1030 1851 1046 1852 1064 1853 1066 1854 1032 1855 1030 1856 1068 1857 1034 1858 1048 1859 1070 1860 1058 1861 1040 1862 1016 1863 1052 1864 1050 1865 1036 1866 1072 1867 1052 1868 1056 1869 1054 1870 1020 1871 1056 1872 1038 1873 1074 1874 1076 1875 1060 1876 1042 1877 1078 1878 1062 1879 1044 1880 1046 1881 1080 1882 1064 1883 1064 1884 1066 1885 1030 1886 1068 1887 1048 1888 1082 1889 1070 1890 1084 1891 1058 1892 1050 1893 1052 1894 1086 1895 1052 1896 1072 1897 1088 1898 1090 1899 1054 1900 1056 1901 1092 1902 1056 1903 1074 1904 1076 1905 1094 1906 1060 1907 1096 1908 1062 1909 1078 1910 1080 1911 1098 1912 1064 1913 1100 1914 1066 1915 1064 1916 1102 1917 1068 1918 1082 1919 1092 1920 1074 1921 1104 1922 1106 1923 1084 1924 1070 1925 1052 1926 1088 1927 1086 1928 1072 1929 1108 1930 1088 1931 1092 1932 1090 1933 1056 1934 1110 1935 1094 1936 1076 1937 1094 1938 1096 1939 1078 1940 1080 1941 1112 1942 1098 1943 1114 1944 1100 1945 1064 1946 1116 1947 1102 1948 1082 1949 1118 1950 1092 1951 1104 1952 1106 1953 1120 1954 1084 1955 1086 1956 1088 1957 1122 1958 1088 1959 1108 1960 1124 1961 1126 1962 1090 1963 1092 1964 1110 1965 1128 1966 1094 1967 1130 1968 1096 1969 1094 1970 1112 1971 1132 1972 1098 1973 1114 1974 1134 1975 1100 1976 1136 1977 1102 1978 1116 1979 1118 1980 1126 1981 1092 1982 1118 1983 1104 1984 1138 1985 1140 1986 1120 1987 1106 1988 1088 1989 1124 1990 1122 1991 1108 1992 1142 1993 1124 1994 1144 1995 1128 1996 1110 1997 1128 1998 1130 1999 1094 2000 1146 2001 1132 2002 1112 2003 1114 2004 1132 2005 1134 2006 1148 2007 1136 2008 1116 2009 1150 2010 1126 2011 1118 2012 1152 2013 1118 2014 1138 2015 1140 2016 1154 2017 1120 2018 1122 2019 1124 2020 1156 2021 1124 2022 1142 2023 1158 2024 1160 2025 1128 2026 1144 2027 1162 2028 1130 2029 1128 2030 1146 2031 1164 2032 1132 2033 1132 2034 1166 2035 1134 2036 1168 2037 1136 2038 1148 2039 1142 2040 1170 2041 1158 2042 1152 2043 1150 2044 1118 2045 1152 2046 1138 2047 1172 2048 1174 2049 1154 2050 1140 2051 1124 2052 1158 2053 1156 2054 1176 2055 1160 2056 1144 2057 1160 2058 1162 2059 1128 2060 1178 2061 1164 2062 1146 2063 1132 2064 1164 2065 1166 2066 1180 2067 1168 2068 1148 2069 1158 2070 1170 2071 1182 2072 1152 2073 1184 2074 1150 2075 1186 2076 1152 2077 1172 2078 1188 2079 1154 2080 1174 2081 1156 2082 1158 2083 1190 2084 1192 2085 1160 2086 1176 2087 1194 2088 1162 2089 1160 2090 1178 2091 1196 2092 1164 2093 1164 2094 1198 2095 1166 2096 1200 2097 1168 2098 1180 2099 1158 2100 1182 2101 1190 2102 1170 2103 1202 2104 1182 2105 1204 2106 1184 2107 1152 2108 1186 2109 1172 2110 1206 2111 1208 2112 1188 2113 1174 2114 1210 2115 1192 2116 1176 2117 1192 2118 1194 2119 1160 2120 1212 2121 1196 2122 1178 2123 1164 2124 1196 2125 1198 2126 1214 2127 1200 2128 1180 2129 1190 2130 1182 2131 1216 2132 1182 2133 1202 2134 1218 2135 1204 2136 1220 2137 1184 2138 1222 2139 1186 2140 1206 2141 1224 2142 1188 2143 1208 2144 1226 2145 1224 2146 1208 2147 1182 2148 1218 2149 1216 2150 1202 2151 1228 2152 1218 2153 1230 2154 1220 2155 1204 2156 1222 2157 1206 2158 1232 2159 1234 2160 1224 2161 1226 2162 1218 2163 1236 2164 1216 2165 1238 2166 1218 2167 1228 2168 1230 2169 1240 2170 1220 2171 1232 2172 1242 2173 1222 2174 1244 2175 1242 2176 1232 2177 1246 2178 1234 2179 1226 2180 1238 2181 1236 2182 1218 2183 1248 2184 1238 2185 1228 2186 1250 2187 1240 2188 1230 2189 1244 2190 1252 2191 1242 2192 1254 2193 1234 2194 1246 2195 1238 2196 1256 2197 1236 2198 1258 2199 1238 2200 1248 2201 1250 2202 1260 2203 1240 2204 1250 2205 1262 2206 1260 2207 1264 2208 1252 2209 1244 2210 1266 2211 1254 2212 1246 2213 1268 2214 1256 2215 1238 2216 1270 2217 1258 2218 1248 2219 1260 2220 1262 2221 1272 2222 1264 2223 1274 2224 1252 2225 1276 2226 1254 2227 1266 2228 1278 2229 1256 2230 1268 2231 1280 2232 1258 2233 1270 2234 1282 2235 1280 2236 1270 2237 1262 2238 1284 2239 1272 2240 1286 2241 1274 2242 1264 2243 1276 2244 1266 2245 1288 2246 1280 2247 1278 2248 1268 2249 1282 2250 1290 2251 1280 2252 1272 2253 1284 2254 1292 2255 1286 2256 1294 2257 1274 2258 1276 2259 1288 2260 1296 2261 1278 2262 1280 2263 1298 2264 1280 2265 1290 2266 1298 2267 1300 2268 1290 2269 1282 2270 1284 2271 1294 2272 1292 2273 1302 2274 1294 2275 1286 2276 1296 2277 1288 2278 1304 2279 1298 2280 1290 2281 1306 2282 1290 2283 1300 2284 1308 2285 1292 2286 1294 2287 1310 2288 1312 2289 1294 2290 1302 2291 1296 2292 1304 2293 1314 2294 1314 2295 1304 2296 1316 2297 1290 2298 1308 2299 1306 2300 1300 2301 1318 2302 1308 2303 1294 2304 1312 2305 1310 2306 1312 2307 1302 2308 1320 2309 1314 2310 1316 2311 1322 2312 1306 2313 1308 2314 1324 2315 1308 2316 1318 2317 1326 2318 1310 2319 1312 2320 1328 2321 1330 2322 1312 2323 1320 2324 1330 2325 1320 2326 1332 2327 1322 2328 1316 2329 1334 2330 1308 2331 1326 2332 1324 2333 1318 2334 1336 2335 1326 2336 1312 2337 1330 2338 1328 2339 1338 2340 1330 2341 1332 2342 1322 2343 1334 2344 1340 2345 1324 2346 1326 2347 1342 2348 1326 2349 1336 2350 1344 2351 1328 2352 1330 2353 1346 2354 1330 2355 1338 2356 1346 2357 1338 2358 1332 2359 1348 2360 1340 2361 1334 2362 1350 2363 1326 2364 1344 2365 1342 2366 1336 2367 1352 2368 1344 2369 1346 2370 1338 2371 1354 2372 1356 2373 1338 2374 1348 2375 1340 2376 1350 2377 1358 2378 1342 2379 1344 2380 1360 2381 1344 2382 1352 2383 1362 2384 1352 2385 1364 2386 1362 2387 1354 2388 1338 2389 1356 2390 1356 2391 1348 2392 1366 2393 1350 2394 1368 2395 1358 2396 1344 2397 1362 2398 1360 2399 1362 2400 1364 2401 1370 2402 1354 2403 1356 2404 1372 2405 1374 2406 1356 2407 1366 2408 1358 2409 1368 2410 1376 2411 1360 2412 1362 2413 1378 2414 1362 2415 1370 2416 1378 2417 1364 2418 1380 2419 1370 2420 1372 2421 1356 2422 1374 2423 1374 2424 1366 2425 1382 2426 1368 2427 1384 2428 1376 2429 1378 2430 1370 2431 1386 2432 1370 2433 1380 2434 1388 2435 1372 2436 1374 2437 1390 2438 1392 2439 1374 2440 1382 2441 1376 2442 1384 2443 1394 2444 1384 2445 1396 2446 1394 2447 1370 2448 1388 2449 1386 2450 1380 2451 1398 2452 1388 2453 1390 2454 1374 2455 1392 2456 1392 2457 1382 2458 1400 2459 1394 2460 1396 2461 1402 2462 1386 2463 1388 2464 1404 2465 1388 2466 1398 2467 1406 2468 1390 2469 1392 2470 1408 2471 1392 2472 1400 2473 1410 2474 1400 2475 1412 2476 1410 2477 1396 2478 1414 2479 1402 2480 1404 2481 1388 2482 1406 2483 1398 2484 1416 2485 1406 2486 1408 2487 1392 2488 1418 2489 1410 2490 1412 2491 1420 2492 1402 2493 1414 2494 1422 2495 1404 2496 1406 2497 1424 2498 1406 2499 1416 2500 1426 2501 1428 2502 1408 2503 1418 2504 1428 2505 1418 2506 1420 2507 1412 2508 1430 2509 1420 2510 1414 2511 1432 2512 1422 2513 1424 2514 1406 2515 1434 2516 1426 2517 1416 2518 1436 2519 1438 2520 1428 2521 1420 2522 1420 2523 1430 2524 1440 2525 1432 2526 1442 2527 1422 2528 1424 2529 1434 2530 1444 2531 1426 2532 1436 2533 1446 2534 1446 2535 1436 2536 1448 2537 1440 2538 1438 2539 1420 2540 1430 2541 1450 2542 1440 2543 1432 2544 1452 2545 1442 2546 1434 2547 1446 2548 1444 2549 1446 2550 1448 2551 1454 2552 1456 2553 1438 2554 1440 2555 1440 2556 1450 2557 1458 2558 1452 2559 1460 2560 1442 2561 1444 2562 1446 2563 1462 2564 1446 2565 1454 2566 1462 2567 1454 2568 1448 2569 1464 2570 1458 2571 1456 2572 1440 2573 1450 2574 1466 2575 1458 2576 1468 2577 1460 2578 1452 2579 1462 2580 1454 2581 1470 2582 1454 2583 1464 2584 1472 2585 1474 2586 1456 2587 1458 2588 1476 2589 1458 2590 1466 2591 1468 2592 1478 2593 1460 2594 1480 2595 1478 2596 1468 2597 1454 2598 1472 2599 1470 2600 1464 2601 1482 2602 1472 2603 1476 2604 1474 2605 1458 2606 1476 2607 1466 2608 1484 2609 1480 2610 1486 2611 1478 2612 1470 2613 1472 2614 1488 2615 1472 2616 1482 2617 1490 2618 1492 2619 1474 2620 1476 2621 1494 2622 1476 2623 1484 2624 1494 2625 1484 2626 1496 2627 1498 2628 1486 2629 1480 2630 1472 2631 1490 2632 1488 2633 1482 2634 1500 2635 1490 2636 1494 2637 1492 2638 1476 2639 1502 2640 1494 2641 1496 2642 1498 2643 1504 2644 1486 2645 1488 2646 1490 2647 1506 2648 1490 2649 1500 2650 1508 2651 1510 2652 1492 2653 1494 2654 1502 2655 1510 2656 1494 2657 1502 2658 1496 2659 1512 2660 1514 2661 1504 2662 1498 2663 1490 2664 1508 2665 1506 2666 1500 2667 1516 2668 1508 2669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1677\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1678\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"890\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 7 4 9 5 4 12 5 13 17 18 19 21 7 3 24 17 25 9 27 5 13 5 29 31 12 13 19 18 33 25 17 19 35 7 21 31 37 12 39 24 25 41 27 9 27 29 5 45 46 47 47 50 51 55 56 57 18 59 33 62 57 63 65 35 21 67 37 31 70 62 71 73 24 39 41 75 27 27 77 29 45 56 46 47 46 50 51 50 79 81 56 55 57 56 63 59 83 33 62 63 71 85 35 65 67 65 37 87 51 79 70 71 89 91 73 39 93 75 41 75 77 27 95 56 45 98 81 99 102 98 103 99 81 55 95 63 56 105 83 59 107 71 63 109 85 65 65 67 111 113 87 79 115 89 71 117 70 89 119 73 91 93 121 75 75 123 77 103 98 99 125 102 103 107 63 95 105 127 83 115 71 107 129 85 109 65 111 109 131 87 113 133 102 125 135 89 115 117 89 137 139 119 91 141 121 93 121 123 75 144 145 127 144 127 105 121 147 123 129 109 149 109 111 151 153 131 113 125 155 133 158 159 147 137 89 135 161 117 137 139 163 119 141 158 121 165 145 144 158 147 121 129 149 167 109 151 149 169 131 153 155 171 133 165 173 145 175 159 158 177 137 135 161 137 179 181 163 139 183 158 141 167 149 185 149 151 187 189 169 153 155 191 171 193 173 165 183 175 158 175 195 159 179 137 177 197 161 179 181 199 163 167 185 201 149 187 185 203 169 189 191 189 171 193 205 173 207 175 183 209 195 175 211 179 177 197 179 213 215 199 181 201 185 217 185 187 219 221 203 189 191 223 189 225 205 193 215 227 199 207 209 175 209 229 195 213 179 211 231 197 213 201 217 233 185 219 217 221 235 203 223 221 189 237 205 225 239 227 215 241 209 207 243 229 209 245 213 211 247 231 213 233 217 249 217 219 251 253 235 221 223 255 221 257 237 225 247 259 231 239 261 227 243 209 241 243 263 229 265 213 245 233 249 267 217 251 249 253 269 235 255 253 221 271 237 257 273 259 247 275 261 239 277 243 241 279 263 243 265 245 281 267 249 283 249 251 285 287 269 253 255 289 253 291 271 257 273 265 281 273 293 259 275 295 261 297 243 277 279 299 263 267 283 301 249 285 283 287 303 269 289 287 253 305 271 291 273 281 307 309 293 273 275 311 295 313 297 277 315 299 279 301 283 317 283 285 319 321 303 287 289 323 287 325 305 291 327 299 315 273 307 309 309 329 293 311 331 295 313 315 297 301 317 333 283 319 317 321 335 303 323 321 287 337 305 325 339 327 315 309 307 341 343 329 309 311 345 331 347 315 313 333 317 349 319 351 317 353 335 321 321 323 355 337 325 357 347 339 315 359 327 339 309 341 343 343 361 329 331 345 363 333 349 365 317 351 367 353 369 335 321 355 353 371 337 357 373 339 347 375 359 339 343 341 377 361 343 379 345 381 363 365 349 383 351 385 367 387 369 353 353 355 389 371 357 391 363 381 393 373 375 339 375 395 359 343 377 379 397 361 379 365 383 399 367 385 401 387 403 369 353 389 387 405 371 391 381 407 393 409 375 373 411 395 375 379 377 413 397 379 415 383 417 399 401 385 419 387 421 403 387 389 423 405 391 425 427 397 415 393 407 429 409 411 375 411 431 395 379 413 415 399 417 433 401 419 417 421 435 403 387 423 421 405 425 437 427 415 439 407 441 429 443 411 409 445 431 411 415 413 447 417 449 433 417 419 451 421 453 435 421 423 455 437 425 457 415 447 439 459 427 439 429 441 461 443 445 411 445 463 431 433 449 465 417 451 449 435 453 467 421 455 453 437 457 469 439 447 471 459 439 473 441 475 461 477 445 443 479 463 445 465 449 481 449 451 483 453 485 467 455 487 453 469 457 489 479 491 463 439 471 473 493 459 473 461 475 495 477 479 445 465 481 497 449 483 481 467 485 499 487 485 453 469 489 501 503 491 479 471 505 473 493 473 507 495 475 509 511 479 477 497 481 513 481 483 515 485 517 499 487 519 485 501 489 521 511 503 479 503 523 491 473 505 525 527 493 507 495 509 529 497 513 531 481 515 513 499 517 533 519 517 485 501 521 535 537 503 511 539 523 503 505 541 525 527 507 543 529 509 545 531 513 547 513 515 549 517 551 533 519 553 517 535 521 555 529 545 557 537 539 503 539 559 523 525 541 561 563 527 543 531 547 565 513 549 547 533 551 567 553 551 517 535 555 569 557 545 571 537 573 539 575 559 539 541 577 561 543 579 563 565 547 581 547 549 583 567 551 585 553 587 551 555 589 569 563 579 591 557 571 593 539 573 575 575 595 559 561 577 597 565 581 599 547 583 581 567 585 601 587 585 551 569 589 603 579 605 591 593 571 607 573 609 575 595 575 611 577 613 597 599 581 615 581 583 617 601 585 619 587 621 585 589 623 603 613 625 597 591 605 627 593 607 629 575 609 631 595 611 633 599 615 635 581 617 615 601 619 637 621 619 585 603 623 639 641 625 613 605 643 627 629 607 645 631 609 647 633 611 649 635 615 651 653 615 617 637 619 655 621 657 619 623 659 639 633 649 661 641 663 625 627 643 665 667 629 645 631 647 669 635 651 671 651 615 653 637 655 673 657 675 619 639 659 677 649 679 661 681 663 641 643 683 665 685 667 645 669 647 687 689 671 651 691 651 653 673 655 693 695 675 657 659 697 677 669 687 679 661 679 699 681 683 663 665 683 701 703 667 685 689 705 671 707 651 691 673 693 709 711 675 695 697 713 677 715 679 687 717 699 679 719 683 681 701 683 721 723 703 685 725 705 689 727 707 691 709 693 729 731 711 695 697 733 713 735 703 723 715 717 679 717 737 699 719 721 683 739 701 721 741 705 725 727 743 707 709 729 745 747 711 731 733 749 713 751 735 723 753 717 715 755 737 717 757 721 719 739 721 759 761 741 725 763 743 727 745 729 765 767 747 731 769 749 733 771 739 759 773 735 751 753 755 717 755 775 737 757 759 721 777 741 761 763 761 743 779 745 765 781 747 767 769 783 749 771 759 785 787 773 751 789 755 753 791 775 755 793 759 757 795 777 761 761 763 797 799 779 765 767 801 781 803 783 769 793 785 759 805 771 785 807 773 787 789 791 755 791 809 775 811 777 795 761 797 795 813 779 799 801 815 781 803 817 783 819 785 793 805 785 821 823 807 787 825 791 789 827 809 791 811 795 829 795 797 831 833 813 799 801 835 815 837 817 803 827 839 809 821 785 819 841 805 821 823 843 807 825 827 791 811 829 845 795 831 829 847 813 833 835 849 815 837 851 817 853 839 827 855 821 819 841 821 857 859 843 823 861 827 825 845 829 863 829 831 865 867 847 833 835 869 849 871 851 837 861 853 827 853 873 839 857 821 855 875 841 857 859 877 843 845 863 879 829 865 863 881 847 867 869 867 849 871 883 851 885 853 861 887 873 853 889 857 855 875 857 891 893 877 859 879 863 895 863 865 897 899 881 867 869 901 867 903 883 871 893 905 877 885 887 853 887 907 873 891 857 889 909 875 891 879 895 911 863 897 895 899 913 881 901 899 867 915 883 903 917 905 893 919 887 885 921 907 887 923 891 889 925 909 891 911 895 927 895 897 929 931 913 899 901 933 899 935 915 903 925 937 909 917 939 905 921 887 919 921 941 907 943 891 923 911 927 945 895 929 927 931 947 913 933 931 899 949 915 935 951 937 925 953 939 917 955 921 919 957 941 921 943 923 959 945 927 961 927 929 963 965 947 931 933 967 931 969 949 935 951 943 959 951 971 937 953 973 939 975 921 955 977 941 957 945 961 979 927 963 961 965 981 947 967 965 931 983 949 969 951 959 985 987 971 951 953 989 973 991 975 955 993 977 957 979 961 995 961 963 997 999 981 965 967 1001 965 1003 983 969 1005 977 993 951 985 987 987 1007 971 989 1009 973 991 993 975 979 995 1011 961 997 995 999 1013 981 1001 999 965 1015 983 1003 1017 1005 993 987 985 1019 1021 1007 987 989 1023 1009 1025 993 991 1011 995 1027 997 1029 995 1031 1013 999 999 1001 1033 1015 1003 1035 1025 1017 993 1037 1005 1017 987 1019 1021 1021 1039 1007 1009 1023 1041 1011 1027 1043 995 1029 1045 1031 1047 1013 999 1033 1031 1049 1015 1035 1051 1017 1025 1053 1037 1017 1021 1019 1055 1039 1021 1057 1023 1059 1041 1043 1027 1061 1029 1063 1045 1065 1047 1031 1031 1033 1067 1049 1035 1069 1041 1059 1071 1051 1053 1017 1053 1073 1037 1021 1055 1057 1075 1039 1057 1043 1061 1077 1045 1063 1079 1065 1081 1047 1031 1067 1065 1083 1049 1069 1059 1085 1071 1087 1053 1051 1089 1073 1053 1057 1055 1091 1075 1057 1093 1061 1095 1077 1079 1063 1097 1065 1099 1081 1065 1067 1101 1083 1069 1103 1105 1075 1093 1071 1085 1107 1087 1089 1053 1089 1109 1073 1057 1091 1093 1077 1095 1111 1079 1097 1095 1099 1113 1081 1065 1101 1115 1083 1103 1117 1105 1093 1119 1085 1121 1107 1123 1089 1087 1125 1109 1089 1093 1091 1127 1095 1129 1111 1095 1097 1131 1099 1133 1113 1101 1135 1115 1117 1103 1137 1093 1127 1119 1139 1105 1119 1107 1121 1141 1123 1125 1089 1125 1143 1109 1111 1129 1145 1095 1131 1129 1113 1133 1147 1135 1133 1115 1117 1137 1149 1119 1127 1151 1139 1119 1153 1121 1155 1141 1157 1125 1123 1159 1143 1125 1145 1129 1161 1129 1131 1163 1133 1165 1147 1135 1167 1133 1149 1137 1169 1159 1171 1143 1119 1151 1153 1173 1139 1153 1141 1155 1175 1157 1159 1125 1145 1161 1177 1129 1163 1161 1147 1165 1179 1167 1165 1133 1149 1169 1181 1183 1171 1159 1151 1185 1153 1173 1153 1187 1175 1155 1189 1191 1159 1157 1177 1161 1193 1161 1163 1195 1165 1197 1179 1167 1199 1165 1181 1169 1201 1191 1183 1159 1183 1203 1171 1153 1185 1205 1207 1173 1187 1175 1189 1209 1177 1193 1211 1161 1195 1193 1179 1197 1213 1199 1197 1165 1181 1201 1215 1217 1183 1191 1219 1203 1183 1185 1221 1205 1207 1187 1223 1209 1189 1225 1209 1225 1227 1217 1219 1183 1219 1229 1203 1205 1221 1231 1233 1207 1223 1227 1225 1235 1217 1237 1219 1229 1219 1239 1221 1241 1231 1223 1243 1233 1233 1243 1245 1227 1235 1247 1219 1237 1239 1229 1239 1249 1231 1241 1251 1243 1253 1245 1247 1235 1255 1237 1257 1239 1249 1239 1259 1241 1261 1251 1261 1263 1251 1245 1253 1265 1247 1255 1267 1239 1257 1269 1249 1259 1271 1273 1263 1261 1253 1275 1265 1267 1255 1277 1269 1257 1279 1271 1259 1281 1271 1281 1283 1273 1285 1263 1265 1275 1287 1289 1267 1277 1269 1279 1281 1281 1291 1283 1293 1285 1273 1275 1295 1287 1297 1289 1277 1299 1281 1279 1299 1291 1281 1283 1291 1301 1293 1295 1285 1287 1295 1303 1305 1289 1297 1307 1291 1299 1309 1301 1291 1311 1295 1293 1303 1295 1313 1315 1305 1297 1317 1305 1315 1307 1309 1291 1309 1319 1301 1311 1313 1295 1321 1303 1313 1323 1317 1315 1325 1309 1307 1327 1319 1309 1329 1313 1311 1321 1313 1331 1333 1321 1331 1335 1317 1323 1325 1327 1309 1327 1337 1319 1329 1331 1313 1333 1331 1339 1341 1335 1323 1343 1327 1325 1345 1337 1327 1347 1331 1329 1347 1339 1331 1349 1333 1339 1351 1335 1341 1343 1345 1327 1345 1353 1337 1355 1339 1347 1349 1339 1357 1359 1351 1341 1361 1345 1343 1363 1353 1345 1363 1365 1353 1357 1339 1355 1367 1349 1357 1359 1369 1351 1361 1363 1345 1371 1365 1363 1373 1357 1355 1367 1357 1375 1377 1369 1359 1379 1363 1361 1379 1371 1363 1371 1381 1365 1375 1357 1373 1383 1367 1375 1377 1385 1369 1387 1371 1379 1389 1381 1371 1391 1375 1373 1383 1375 1393 1395 1385 1377 1395 1397 1385 1387 1389 1371 1389 1399 1381 1393 1375 1391 1401 1383 1393 1403 1397 1395 1405 1389 1387 1407 1399 1389 1409 1393 1391 1411 1401 1393 1411 1413 1401 1403 1415 1397 1407 1389 1405 1407 1417 1399 1419 1393 1409 1421 1413 1411 1423 1415 1403 1425 1407 1405 1427 1417 1407 1419 1409 1429 1421 1419 1429 1421 1431 1413 1423 1433 1415 1435 1407 1425 1437 1417 1427 1421 1429 1439 1441 1431 1421 1423 1443 1433 1445 1435 1425 1447 1437 1427 1449 1437 1447 1421 1439 1441 1441 1451 1431 1443 1453 1433 1445 1447 1435 1455 1449 1447 1441 1439 1457 1459 1451 1441 1443 1461 1453 1463 1447 1445 1463 1455 1447 1465 1449 1455 1441 1457 1459 1459 1467 1451 1453 1461 1469 1471 1455 1463 1473 1465 1455 1459 1457 1475 1467 1459 1477 1461 1479 1469 1469 1479 1481 1471 1473 1455 1473 1483 1465 1459 1475 1477 1485 1467 1477 1479 1487 1481 1489 1473 1471 1491 1483 1473 1477 1475 1493 1485 1477 1495 1497 1485 1495 1481 1487 1499 1489 1491 1473 1491 1501 1483 1477 1493 1495 1497 1495 1503 1487 1505 1499 1507 1491 1489 1509 1501 1491 1495 1493 1511 1495 1511 1503 1513 1497 1503 1499 1505 1515 1507 1509 1491 1509 1517 1501</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1677\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1682\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1683\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1686\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"30\">-0.5659469366073608 -1.151860475540161 -0.07378179579973221 -0.5388372540473938 -1.17527174949646 -0.07721765339374542 -0.5581417679786682 -1.150959491729736 -0.0635225921869278 -0.5581417679786682 -1.150959491729736 -0.0635225921869278 -0.5388372540473938 -1.17527174949646 -0.07721765339374542 -0.5659469366073608 -1.151860475540161 -0.07378179579973221 -0.5354199409484863 -1.170861482620239 -0.06640531122684479 -0.5354199409484863 -1.170861482620239 -0.06640531122684479 -0.4937689304351807 -1.175581336021423 -0.08266642689704895 -0.4937689304351807 -1.175581336021423 -0.08266642689704895</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1686\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1684\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1687\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"30\">0.5409137891857291 0.6957278621630106 -0.4726256599877156 0.2763324570536528 0.8551586518832471 -0.4385704655901018 0.5430258197750222 0.6958964898748292 -0.4699479060891291 -0.5430258197750222 -0.6958964898748292 0.4699479060891291 -0.2763324570536528 -0.8551586518832471 0.4385704655901018 -0.5409137891857291 -0.6957278621630106 0.4726256599877156 0.2920574673906872 0.8497416742821521 -0.4389094698562592 -0.2920574673906872 -0.8497416742821521 0.4389094698562592 -0.03799684812346563 0.9294092924482325 -0.3670893714663478 0.03799684812346563 -0.9294092924482325 0.3670893714663478</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1687\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1685\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1683\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1684\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"6\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 1 8 6 7 9 4</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1685\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1688\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1689\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1692\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.5364519953727722 -1.171381711959839 -0.1061717569828033 -0.5611231327056885 -1.15022337436676 -0.1030475050210953 -0.5348328948020935 -1.169529438018799 -0.09166005253791809 -0.5348328948020935 -1.169529438018799 -0.09166005253791809 -0.5611231327056885 -1.15022337436676 -0.1030475050210953 -0.5364519953727722 -1.171381711959839 -0.1061717569828033</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1692\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1690\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1693\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.6295684446900218 -0.7587649004087633 0.1670909912540662 -0.6295684446900218 -0.7587649004087633 0.1670909912540662 -0.6295684446900218 -0.7587649004087633 0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662 0.6295684446900218 0.7587649004087633 -0.1670909912540662</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1693\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1691\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1689\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1690\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1691\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1694\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1695\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1699\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"4554\">-0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4670745432376862 -1.158051013946533 -0.2156426906585693 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4670745432376862 -1.158051013946533 -0.2156426906585693 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4609264731407166 -1.148083329200745 -0.2188815027475357 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4564071297645569 -1.148996114730835 -0.2122699767351151 -0.4631140828132629 -1.159823775291443 -0.2089772671461105 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4750316739082336 -1.168627738952637 -0.2050397396087647 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4780085980892181 -1.166073203086853 -0.2118184715509415 -0.4780085980892181 -1.166073203086853 -0.2118184715509415 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4599275290966034 -1.137362480163574 -0.2215259224176407 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4564003646373749 -1.148468255996704 -0.2265816032886505 -0.4553305804729462 -1.136729598045349 -0.2292335331439972 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4631036520004273 -1.159295558929443 -0.2232885360717773 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4566622674465179 -1.161874890327454 -0.2208317667245865 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4490646123886108 -1.149857401847839 -0.215115562081337 -0.4566673934459686 -1.162205338478088 -0.2117247432470322 -0.4566622674465179 -1.161874890327454 -0.2208317667245865 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4553410708904266 -1.137250661849976 -0.2149209380149841 -0.4701715409755707 -1.171931743621826 -0.2167111337184906 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4701792001724243 -1.172262191772461 -0.2076026052236557 -0.4701715409755707 -1.171931743621826 -0.2167111337184906 -0.4639952778816223 -1.126953125 -0.2235644310712814 -0.4639952778816223 -1.126953125 -0.2235644310712814 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4873996675014496 -1.178971529006958 -0.2120722085237503 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4874080717563629 -1.179319143295288 -0.2029657661914825 -0.4873996675014496 -1.178971529006958 -0.2120722085237503 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4902490675449371 -1.174901247024536 -0.200621172785759 -0.4919966459274292 -1.171796083450317 -0.2075648158788681 -0.4919966459274292 -1.171796083450317 -0.2075648158788681 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4490580260753632 -1.149508953094482 -0.2242224812507629 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4597739577293396 -1.12540078163147 -0.2312211394309998 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529300034046173 -1.123409628868103 -0.2287813723087311 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4478698670864105 -1.136224746704102 -0.2268776446580887 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4478777348995209 -1.136436223983765 -0.2177666276693344 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.4750161468982697 -1.168091416358948 -0.2193492501974106 -0.5069580674171448 -1.182219982147217 -0.2071293890476227 -0.5069580674171448 -1.182219982147217 -0.2071293890476227 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4597889184951782 -1.125918030738831 -0.2169102430343628 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4727209806442261 -1.117928266525269 -0.2250491082668304 -0.4727209806442261 -1.117928266525269 -0.2250491082668304 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.4902401566505432 -1.174320578575134 -0.214950293302536 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5069639682769775 -1.182548999786377 -0.1980224102735519 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5075262188911438 -1.177707076072693 -0.1959705650806427 -0.5078603625297546 -1.174407243728638 -0.2030627429485321 -0.5078603625297546 -1.174407243728638 -0.2030627429485321 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4529326558113098 -1.123745203018189 -0.219674363732338 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4692919552326202 -1.115582227706909 -0.2326047718524933 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4637320637702942 -1.11232852935791 -0.2300019413232803 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4637393057346344 -1.112658619880676 -0.220894917845726 -0.4693098366260529 -1.11610746383667 -0.2182954698801041 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5269226431846619 -1.181341052055359 -0.2021083533763886 -0.5269226431846619 -1.181341052055359 -0.2021083533763886 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.5075089335441589 -1.177179932594299 -0.2102802395820618 -0.4852666556835175 -1.111176490783691 -0.2260912507772446 -0.4852666556835175 -1.111176490783691 -0.2260912507772446 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5240494608879089 -1.173695206642151 -0.1985002011060715 -0.5240494608879089 -1.173695206642151 -0.1985002011060715 -0.5251398682594299 -1.176399946212769 -0.2055430710315704 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5269308090209961 -1.18168032169342 -0.1930016726255417 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.5251551866531372 -1.176920294761658 -0.1912326961755753 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829694330692291 -1.108772993087769 -0.2191940099000931 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4829608798027039 -1.1082444190979 -0.2335066050291061 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792268574237824 -1.104030728340149 -0.2306763976812363 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.4792298972606659 -1.104360103607178 -0.2215677499771118 -0.5389738082885742 -1.169721484184265 -0.1940673291683197 -0.5389738082885742 -1.169721484184265 -0.1940673291683197 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5453409552574158 -1.176581025123596 -0.1972052454948425 -0.5453409552574158 -1.176581025123596 -0.1972052454948425 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5003835558891296 -1.10732901096344 -0.2268392145633698 -0.5003835558891296 -1.10732901096344 -0.2268392145633698 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4978899359703064 -1.099338173866272 -0.2309906035661697 -0.4978899359703064 -1.099338173866272 -0.2309906035661697 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5413944125175476 -1.172071099281311 -0.2009464204311371 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5453534126281738 -1.17677652835846 -0.1881395876407623 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.5414083003997803 -1.172596454620361 -0.1866358667612076 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994431734085083 -1.104609370231628 -0.219777524471283 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4994325637817383 -1.10407280921936 -0.2340898811817169 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.4978959858417511 -1.099666833877564 -0.2218828052282333 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5511723160743713 -1.16288423538208 -0.1899425983428955 -0.5511723160743713 -1.16288423538208 -0.1899425983428955 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.5604198575019836 -1.168011784553528 -0.1927651613950729 -0.5604198575019836 -1.168011784553528 -0.1927651613950729 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5166073441505432 -1.10676920413971 -0.2274772375822067 -0.5166073441505432 -1.10676920413971 -0.2274772375822067 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.5178954601287842 -1.09870171546936 -0.2311694622039795 -0.5178954601287842 -1.09870171546936 -0.2311694622039795 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.5547025203704834 -1.165149688720703 -0.1823746860027313 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.554690957069397 -1.164632678031921 -0.1966860890388489 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5602695345878601 -1.168341279029846 -0.183663547039032 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.5171086192131043 -1.104007959365845 -0.2202417254447937 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.517094612121582 -1.103492259979248 -0.2345528900623322 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.5179073214530945 -1.099033117294312 -0.2220626473426819 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5594555735588074 -1.153860569000244 -0.1862775683403015 -0.5594555735588074 -1.153860569000244 -0.1862775683403015 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.5323457717895508 -1.109543561935425 -0.2281976342201233 -0.5323457717895508 -1.109543561935425 -0.2281976342201233 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5372952222824097 -1.102163672447205 -0.2314521372318268 -0.5372952222824097 -1.102163672447205 -0.2314521372318268 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.570680558681488 -1.157209038734436 -0.1797395646572113 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637323260307312 -1.155324339866638 -0.1786131262779236 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.5637229084968567 -1.154800772666931 -0.1929249614477158 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.570668637752533 -1.156875967979431 -0.1888468414545059 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5342362523078919 -1.107050180435181 -0.2207941710948944 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5343619585037231 -1.106523513793945 -0.2350901216268539 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5373019576072693 -1.102510094642639 -0.2223445177078247 -0.5750964283943176 -1.14414381980896 -0.1856220960617065 -0.5750964283943176 -1.14414381980896 -0.1856220960617065 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5460524559020996 -1.115358591079712 -0.2291837930679321 -0.5460524559020996 -1.115358591079712 -0.2291837930679321 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5541844964027405 -1.109387874603272 -0.2320649176836014 -0.5541844964027405 -1.109387874603272 -0.2320649176836014 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5751071572303772 -1.144480586051941 -0.1765152812004089 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5676233172416687 -1.144102811813355 -0.1754641681909561 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5630130171775818 -1.143552899360657 -0.1831747591495514 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5676136016845703 -1.143566012382507 -0.1897767186164856 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491548180580139 -1.113406777381897 -0.221636950969696 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5491451025009155 -1.112878799438477 -0.2359495759010315 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5542992949485779 -1.109730005264282 -0.2229516953229904 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5732637643814087 -1.131062269210815 -0.1831503957509995 -0.5732637643814087 -1.131062269210815 -0.1831503957509995 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5614937543869019 -1.132966756820679 -0.1806835681200028 -0.5614937543869019 -1.132966756820679 -0.1806835681200028 -0.5563911199569702 -1.12365186214447 -0.2305930256843567 -0.5563911199569702 -1.12365186214447 -0.2305930256843567 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.566897451877594 -1.119650483131409 -0.2331991493701935 -0.566897451877594 -1.119650483131409 -0.2331991493701935 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5659728646278381 -1.132036447525024 -0.1872928738594055 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5732720494270325 -1.131407499313355 -0.1740440428256989 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5659836530685425 -1.132564306259155 -0.1729806065559387 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5604029893875122 -1.122439742088318 -0.2229448854923248 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5603866577148438 -1.121922850608826 -0.2372543960809708 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.5669047832489014 -1.119981169700623 -0.2240916192531586 -0.555044412612915 -1.123155951499939 -0.1787916719913483 -0.555044412612915 -1.123155951499939 -0.1787916719913483 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5653523802757263 -1.118939995765686 -0.1814211159944534 -0.5653523802757263 -1.118939995765686 -0.1814211159944534 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5742090940475464 -1.131942391395569 -0.235003262758255 -0.5742090940475464 -1.131942391395569 -0.235003262758255 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5589666962623596 -1.121339678764343 -0.185462236404419 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5653591752052307 -1.119266986846924 -0.1723147332668304 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5589783191680908 -1.121869206428528 -0.1711509823799133 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5668686032295227 -1.133281946182251 -0.2248374372720718 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5623433589935303 -1.133581161499023 -0.2325430810451508 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.5668589472770691 -1.132750868797302 -0.239148423075676 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.574212908744812 -1.132276296615601 -0.2258956283330917 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.5443065166473389 -1.115089893341065 -0.1774336248636246 -0.5443065166473389 -1.115089893341065 -0.1774336248636246 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5519604086875916 -1.108938336372376 -0.1803582608699799 -0.5519604086875916 -1.108938336372376 -0.1803582608699799 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.575387716293335 -1.145042896270752 -0.2375518679618835 -0.575387716293335 -1.145042896270752 -0.2375518679618835 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.547295868396759 -1.11305832862854 -0.1699003875255585 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5472837090492249 -1.11254346370697 -0.1842116564512253 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5521464943885803 -1.109277129173279 -0.1712412685155869 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5679320693016052 -1.144835710525513 -0.2273906022310257 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5633363127708435 -1.144189476966858 -0.2350993305444717 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5679230093955994 -1.144309282302856 -0.241702526807785 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5753928422927856 -1.145382046699524 -0.2284455746412277 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5303224325180054 -1.109560012817383 -0.1764832884073257 -0.5303224325180054 -1.109560012817383 -0.1764832884073257 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5348636507987976 -1.10209047794342 -0.1797855794429779 -0.5348636507987976 -1.10209047794342 -0.1797855794429779 -0.55926513671875 -1.15441358089447 -0.2382635623216629 -0.55926513671875 -1.15441358089447 -0.2382635623216629 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5702131390571594 -1.157662510871887 -0.2408456802368164 -0.5702131390571594 -1.157662510871887 -0.2408456802368164 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5349338054656982 -1.10241961479187 -0.1706712990999222 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320757627487183 -1.107025861740112 -0.1690963953733444 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5320631861686707 -1.106508851051331 -0.1834067553281784 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634829998016357 -1.155977010726929 -0.2306063771247864 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5634728670120239 -1.155441522598267 -0.2449181973934174 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5703331828117371 -1.157998919487 -0.2317462116479874 -0.5153597593307495 -1.099033117294312 -0.1795200258493424 -0.5153597593307495 -1.099033117294312 -0.1795200258493424 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5144603252410889 -1.107124924659729 -0.175779864192009 -0.5144603252410889 -1.107124924659729 -0.175779864192009 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.5507266521453857 -1.163246393203735 -0.2419756203889847 -0.5507266521453857 -1.163246393203735 -0.2419756203889847 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5595179796218872 -1.168561935424805 -0.2448366731405258 -0.5595179796218872 -1.168561935424805 -0.2448366731405258 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5153644680976868 -1.099373817443848 -0.1704111844301224 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.5148102045059204 -1.104366064071655 -0.1685625165700913 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.514799177646637 -1.103841066360474 -0.1828736364841461 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539640188217163 -1.165587902069092 -0.2344280928373337 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5539491772651672 -1.165070652961731 -0.2487375438213348 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.5595251321792603 -1.168896317481995 -0.2357291579246521 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4953970909118652 -1.100103139877319 -0.179336816072464 -0.4953970909118652 -1.100103139877319 -0.179336816072464 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4982820451259613 -1.108041167259216 -0.1751401573419571 -0.4982820451259613 -1.108041167259216 -0.1751401573419571 -0.537988007068634 -1.169810295104981 -0.246146023273468 -0.537988007068634 -1.169810295104981 -0.246146023273468 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.5440220236778259 -1.176667809486389 -0.2493667304515839 -0.5440220236778259 -1.176667809486389 -0.2493667304515839 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4971799850463867 -1.10480523109436 -0.1824081242084503 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4954074919223785 -1.100426554679871 -0.170229896903038 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.4971909523010254 -1.105334162712097 -0.168096587061882 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.5402944684028626 -1.172746777534485 -0.2387307584285736 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.540281355381012 -1.172212600708008 -0.2530409693717957 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.5440316796302795 -1.177007079124451 -0.2402598410844803 -0.4833570420742035 -1.112205982208252 -0.1743675768375397 -0.4833570420742035 -1.112205982208252 -0.1743675768375397 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.5228596329689026 -1.173466086387634 -0.2506005465984345 -0.5228596329689026 -1.173466086387634 -0.2506005465984345 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5253502726554871 -1.18116819858551 -0.2542564868927002 -0.5253502726554871 -1.18116819858551 -0.2542564868927002 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.4809254109859467 -1.109325051307678 -0.1817991435527802 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.476980447769165 -1.105194449424744 -0.1789953857660294 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.4769866466522217 -1.105524778366089 -0.169886976480484 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.480939656496048 -1.10985255241394 -0.167489156126976 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238159894943237 -1.176714658737183 -0.2433514893054962 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5238044857978821 -1.176188230514526 -0.2576619684696198 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.5253570675849915 -1.181502461433411 -0.245149165391922 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.4711625874042511 -1.119231224060059 -0.1732877790927887 -0.4711625874042511 -1.119231224060059 -0.1732877790927887 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.506633460521698 -1.173833608627319 -0.2551662623882294 -0.506633460521698 -1.173833608627319 -0.2551662623882294 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5053356289863586 -1.181609272956848 -0.2592801749706268 -0.5053356289863586 -1.181609272956848 -0.2592801749706268 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.467645138502121 -1.117483973503113 -0.1665444821119309 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4676362574100494 -1.116967916488648 -0.1808566004037857 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619078934192658 -1.113821625709534 -0.1782718300819397 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.4619169235229492 -1.114161491394043 -0.1691653281450272 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061473250389099 -1.177115321159363 -0.2480915486812592 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5061346888542175 -1.176589250564575 -0.2624036967754364 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.5053437948226929 -1.181949973106384 -0.2501737475395203 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4628840982913971 -1.12843930721283 -0.1717492789030075 -0.4628840982913971 -1.12843930721283 -0.1717492789030075 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4904350936412811 -1.170987844467163 -0.2597062885761261 -0.4904350936412811 -1.170987844467163 -0.2597062885761261 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4854094684123993 -1.178057670593262 -0.2642672657966614 -0.4854094684123993 -1.178057670593262 -0.2642672657966614 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.451671689748764 -1.125470042228699 -0.1678797006607056 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586181640625 -1.127497911453247 -0.1651026904582977 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4586046934127808 -1.126980900764465 -0.1794133484363556 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4516671597957611 -1.125142574310303 -0.1769872009754181 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885308742523193 -1.173998951911926 -0.2528023421764374 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4885181188583374 -1.173464417457581 -0.2671123743057251 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4854192733764648 -1.178386688232422 -0.2551600933074951 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4763774275779724 -1.164982080459595 -0.2639687359333038 -0.4763774275779724 -1.164982080459595 -0.2639687359333038 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4681350886821747 -1.170600295066834 -0.2689074873924255 -0.4681350886821747 -1.170600295066834 -0.2689074873924255 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.4475646317005158 -1.13835883140564 -0.1749693304300308 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.447572261095047 -1.138684988021851 -0.165862187743187 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4550625681877136 -1.139187335968018 -0.1630102545022965 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4596644639968872 -1.139095783233643 -0.1696083247661591 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4550483822822571 -1.13864278793335 -0.1773202866315842 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732409119606018 -1.167439103126526 -0.2572056949138641 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4732287228107452 -1.166857004165649 -0.2715257108211517 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4681373536586762 -1.170930027961731 -0.2597984373569489 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4661877453327179 -1.156416177749634 -0.2677432894706726 -0.4661877453327179 -1.156416177749634 -0.2677432894706726 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4572362005710602 -1.150636672973633 -0.1745370030403137 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499704539775848 -1.151907324790955 -0.1721704453229904 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4499768614768982 -1.152243614196777 -0.1630627512931824 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4572479724884033 -1.151172995567322 -0.1602253466844559 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4617120027542114 -1.150194764137268 -0.1668351888656616 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.4621601402759552 -1.158112049102783 -0.2610855102539063 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.46214559674263 -1.15759551525116 -0.2753952741622925 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.4555975496768951 -1.160046815872192 -0.2729504704475403 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.455607146024704 -1.160375595092773 -0.2638434767723084 -0.4683403670787811 -1.160146474838257 -0.1634988784790039 -0.4683403670787811 -1.160146474838257 -0.1634988784790039 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4581113755702972 -1.164169549942017 -0.1686679422855377 -0.4581113755702972 -1.164169549942017 -0.1686679422855377 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4644372165203095 -1.161477565765381 -0.1711360961198807 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4581172168254852 -1.164554119110107 -0.1595417410135269 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4644559323787689 -1.161994576454163 -0.1568270176649094 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4558866024017334 -1.147047877311707 -0.2643698155879974 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4604103267192841 -1.146247386932373 -0.2709735631942749 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4558721482753754 -1.146515130996704 -0.2786805927753449 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485130310058594 -1.147512912750244 -0.2763232290744782 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4485190212726593 -1.14785373210907 -0.2672167420387268 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4792343080043793 -1.168325185775757 -0.1596363484859467 -0.4792343080043793 -1.168325185775757 -0.1596363484859467 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.4715106785297394 -1.174239277839661 -0.1645141541957855 -0.4715106785297394 -1.174239277839661 -0.1645141541957855 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.4762983024120331 -1.170894980430603 -0.1528514474630356 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.476289689540863 -1.170367002487183 -0.1671641319990158 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4715211391448975 -1.174570798873901 -0.1554078608751297 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4550338387489319 -1.135293006896973 -0.266994833946228 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4596103131771088 -1.135454058647156 -0.2735984623432159 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4550205171108246 -1.134768605232239 -0.2813060581684113 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475728571414948 -1.134204626083374 -0.2789491713047028 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4475776255130768 -1.134543895721436 -0.2698406577110291 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4933280944824219 -1.17392373085022 -0.1553713232278824 -0.4933280944824219 -1.17392373085022 -0.1553713232278824 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.4888685941696167 -1.181017160415649 -0.1599304676055908 -0.4888685941696167 -1.181017160415649 -0.1599304676055908 -0.4638693332672119 -1.125065088272095 -0.2756152749061585 -0.4638693332672119 -1.125065088272095 -0.2756152749061585 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4888758063316345 -1.181485295295715 -0.1507560014724731 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.4916330277919769 -1.176995873451233 -0.1484393775463104 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.491621732711792 -1.176476716995239 -0.162749782204628 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596848487854004 -1.124009966850281 -0.2689574360847473 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4596724808216095 -1.12347674369812 -0.2832688391208649 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528635442256928 -1.121443629264832 -0.2808234691619873 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.4528745114803314 -1.121778130531311 -0.2717169225215912 -0.5084754824638367 -1.184240102767944 -0.1549115777015686 -0.5084754824638367 -1.184240102767944 -0.1549115777015686 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.509232759475708 -1.176416993141174 -0.1508626490831375 -0.509232759475708 -1.176416993141174 -0.1508626490831375 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.4727680087089539 -1.116126298904419 -0.2770816385746002 -0.4727680087089539 -1.116126298904419 -0.2770816385746002 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5084840059280396 -1.184571504592896 -0.1458049267530441 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089500546455383 -1.179722428321838 -0.1437626481056213 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.5089400410652161 -1.17918598651886 -0.1580740958452225 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.469385027885437 -1.114277601242065 -0.2703209817409515 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4693765640258789 -1.113749265670776 -0.284633219242096 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.4638724327087402 -1.110440731048584 -0.2820203006267548 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.463880717754364 -1.110772609710693 -0.2729136645793915 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.5284159779548645 -1.183200836181641 -0.1498926430940628 -0.5284159779548645 -1.183200836181641 -0.1498926430940628 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5254004597663879 -1.175574421882629 -0.1463013589382172 -0.5254004597663879 -1.175574421882629 -0.1463013589382172 -0.485431581735611 -1.109466314315796 -0.278106302022934 -0.485431581735611 -1.109466314315796 -0.278106302022934 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.526540219783783 -1.178280115127564 -0.1533371955156326 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5284256935119629 -1.183531522750855 -0.1407857984304428 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.5265588164329529 -1.1788010597229 -0.139027938246727 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831828474998474 -1.10704493522644 -0.2712039649486542 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4831767380237579 -1.106508851051331 -0.2855164408683777 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795161187648773 -1.102275609970093 -0.2826760709285736 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.4795262813568115 -1.102614283561707 -0.2735688388347626 -0.5402413010597229 -1.17147707939148 -0.1418762654066086 -0.5402413010597229 -1.17147707939148 -0.1418762654066086 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5467411875724793 -1.178147196769714 -0.1450409889221191 -0.5467411875724793 -1.178147196769714 -0.1450409889221191 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.5006225109100342 -1.105741024017334 -0.2788476049900055 -0.5006225109100342 -1.105741024017334 -0.2788476049900055 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4982722103595734 -1.097743153572083 -0.2829819023609161 -0.4982722103595734 -1.097743153572083 -0.2829819023609161 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5427128672599793 -1.173813343048096 -0.1487509161233902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.5467487573623657 -1.178486704826355 -0.1359335333108902 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.542907178401947 -1.174338698387146 -0.1344215869903565 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997358918190002 -1.103005528450012 -0.271780401468277 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4997236132621765 -1.10248613357544 -0.2860915660858154 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.4982817471027374 -1.098068356513977 -0.2738745808601379 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.5523137450218201 -1.164548993110657 -0.137769028544426 -0.5523137450218201 -1.164548993110657 -0.137769028544426 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5616535544395447 -1.169592380523682 -0.1405776739120483 -0.5616535544395447 -1.169592380523682 -0.1405776739120483 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5168607831001282 -1.10530686378479 -0.2794858813285828 -0.5168607831001282 -1.10530686378479 -0.2794858813285828 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5182973146438599 -1.097256898880005 -0.2831613123416901 -0.5182973146438599 -1.097256898880005 -0.2831613123416901 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.555877149105072 -1.166791200637817 -0.1301965266466141 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5558645725250244 -1.166257262229919 -0.1445073932409287 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.5616629719734192 -1.169926404953003 -0.1314716637134552 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.51741623878479 -1.102560520172119 -0.2722451686859131 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5174028277397156 -1.102035999298096 -0.2865555286407471 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5183072686195374 -1.097595691680908 -0.274054080247879 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5604264736175537 -1.155444264411926 -0.134123295545578 -0.5604264736175537 -1.155444264411926 -0.134123295545578 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.5325407385826111 -1.108209729194641 -0.2802126407623291 -0.5325407385826111 -1.108209729194641 -0.2802126407623291 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5376310348510742 -1.100880861282349 -0.283452033996582 -0.5376310348510742 -1.100880861282349 -0.283452033996582 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5717064142227173 -1.158712148666382 -0.127578541636467 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647281408309937 -1.156885504722595 -0.1264577209949493 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.5647149682044983 -1.156364679336548 -0.1407684683799744 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.57169508934021 -1.15838611125946 -0.1366853713989258 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344856977462769 -1.105741024017334 -0.2728042006492615 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5344755053520203 -1.105208873748779 -0.2871146500110626 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5376370549201965 -1.101215124130249 -0.274344265460968 -0.5758856534957886 -1.145607948303223 -0.1334896087646484 -0.5758856534957886 -1.145607948303223 -0.1334896087646484 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5461440086364746 -1.114132165908814 -0.2812126278877258 -0.5461440086364746 -1.114132165908814 -0.2812126278877258 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5543799996376038 -1.108233690261841 -0.284079521894455 -0.5543799996376038 -1.108233690261841 -0.284079521894455 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5758885145187378 -1.145936131477356 -0.1243813782930374 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5684007406234741 -1.145617604255676 -0.123332604765892 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5637834072113037 -1.145116925239563 -0.1310433298349381 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5683899521827698 -1.145099520683289 -0.1376436501741409 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5494707822799683 -1.112208604812622 -0.2736613750457764 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5492742657661438 -1.111679553985596 -0.287973165512085 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5544068813323975 -1.108572125434876 -0.2749738097190857 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5738096833229065 -1.132545471191406 -0.1310487687587738 -0.5738096833229065 -1.132545471191406 -0.1310487687587738 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.5620707869529724 -1.134551882743835 -0.1285762786865234 -0.5620707869529724 -1.134551882743835 -0.1285762786865234 -0.5562236309051514 -1.122508764266968 -0.2826361358165741 -0.5562236309051514 -1.122508764266968 -0.2826361358165741 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5669103860855103 -1.118594884872437 -0.2852396965026856 -0.5669103860855103 -1.118594884872437 -0.2852396965026856 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5665380358695984 -1.13357424736023 -0.1351864486932755 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.5738143920898438 -1.132876873016357 -0.1219407171010971 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.566548764705658 -1.134097933769226 -0.1208752244710922 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603669881820679 -1.121331214904785 -0.2749890685081482 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5603577494621277 -1.120812058448792 -0.2893001139163971 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.5669188499450684 -1.118927836418152 -0.2761323153972626 -0.555444061756134 -1.124776363372803 -0.1267072409391403 -0.555444061756134 -1.124776363372803 -0.1267072409391403 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5656728148460388 -1.120481729507446 -0.1293461471796036 -0.5656728148460388 -1.120481729507446 -0.1293461471796036 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5739870071411133 -1.130938291549683 -0.2870706021785736 -0.5739870071411133 -1.130938291549683 -0.2870706021785736 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.5593370795249939 -1.122938990592957 -0.1333823651075363 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.565680205821991 -1.120813846588135 -0.1202388107776642 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.559346079826355 -1.123458623886108 -0.119070366024971 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5666378140449524 -1.132220149040222 -0.2769076824188232 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5621038675308228 -1.132392883300781 -0.2846121191978455 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5666238069534302 -1.131691336631775 -0.2912188172340393 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5739982128143311 -1.131274938583374 -0.2779644429683685 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5445551872253418 -1.116797208786011 -0.1253669559955597 -0.5445551872253418 -1.116797208786011 -0.1253669559955597 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5522736310958862 -1.110593795776367 -0.1282949596643448 -0.5522736310958862 -1.110593795776367 -0.1282949596643448 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.57492595911026 -1.144049525260925 -0.2896494567394257 -0.57492595911026 -1.144049525260925 -0.2896494567394257 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5475035309791565 -1.114746689796448 -0.1178397685289383 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5474908351898193 -1.114231824874878 -0.1321505159139633 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5522817373275757 -1.110928058624268 -0.1191879361867905 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5674868822097778 -1.143771529197693 -0.2794872522354126 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5628939270973206 -1.143094778060913 -0.2871941924095154 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5674735307693481 -1.143256664276123 -0.2937973439693451 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5749322772026062 -1.144393920898438 -0.2805428802967072 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5304718613624573 -1.111389398574829 -0.1244296282529831 -0.5304718613624573 -1.111389398574829 -0.1244296282529831 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5349233746528626 -1.103869080543518 -0.1277434676885605 -0.5349233746528626 -1.103869080543518 -0.1277434676885605 -0.5586347579956055 -1.153280735015869 -0.2903818190097809 -0.5586347579956055 -1.153280735015869 -0.2903818190097809 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5349303483963013 -1.104203343391419 -0.1186359524726868 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321750044822693 -1.108836174011231 -0.1170497536659241 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5321646332740784 -1.108318209648132 -0.1313610821962357 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628317594528198 -1.154873967170715 -0.2827285528182983 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5628121495246887 -1.154348015785217 -0.2970371544361115 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696275234222412 -1.156630158424377 -0.29297736287117 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5696345567703247 -1.156962871551514 -0.2838707864284515 -0.5153201818466187 -1.100982189178467 -0.1274901926517487 -0.5153201818466187 -1.100982189178467 -0.1274901926517487 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.514570415019989 -1.10908055305481 -0.1237329840660095 -0.514570415019989 -1.10908055305481 -0.1237329840660095 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5497334003448486 -1.162050008773804 -0.294120192527771 -0.5497334003448486 -1.162050008773804 -0.294120192527771 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5586177706718445 -1.167435169219971 -0.2969862818717957 -0.5586177706718445 -1.167435169219971 -0.2969862818717957 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5153270363807678 -1.101314783096314 -0.1183828264474869 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148617029190064 -1.106311559677124 -0.1165209710597992 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5148490071296692 -1.105776190757752 -0.1308317333459854 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531244874000549 -1.164416313171387 -0.2865697741508484 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5531110167503357 -1.163895487785339 -0.3008812963962555 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.5586273074150085 -1.167765736579895 -0.2878797352313995 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4953792691230774 -1.102204203605652 -0.1273037791252136 -0.4953792691230774 -1.102204203605652 -0.1273037791252136 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4984057247638702 -1.110114693641663 -0.1230899542570114 -0.4984057247638702 -1.110114693641663 -0.1230899542570114 -0.5370596647262573 -1.168520212173462 -0.2982980012893677 -0.5370596647262573 -1.168520212173462 -0.2982980012893677 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5431241989135742 -1.17541229724884 -0.301532506942749 -0.5431241989135742 -1.17541229724884 -0.301532506942749 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4972467124462128 -1.106893062591553 -0.1303633451461792 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4953908026218414 -1.102536082267761 -0.1181982457637787 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.4972642064094544 -1.107423186302185 -0.1160539984703064 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5392901301383972 -1.171457409858704 -0.2908878326416016 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5393079519271851 -1.170934677124023 -0.3051998913288117 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.5429732799530029 -1.175749063491821 -0.2924267053604126 -0.4835685193538666 -1.114396214485169 -0.1223111301660538 -0.4835685193538666 -1.114396214485169 -0.1223111301660538 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.5218650698661804 -1.17204761505127 -0.3027612566947937 -0.5218650698661804 -1.17204761505127 -0.3027612566947937 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5242103338241577 -1.179760098457336 -0.306433379650116 -0.5242103338241577 -1.179760098457336 -0.306433379650116 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4810841977596283 -1.111545324325562 -0.1297473013401032 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770629107952118 -1.107443571090698 -0.1269529163837433 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4770673513412476 -1.10777223110199 -0.1178451627492905 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.4810962677001953 -1.112071990966797 -0.1154364347457886 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227623581886292 -1.17529296875 -0.2955154478549957 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5227522850036621 -1.174770593643189 -0.3098277151584625 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.5242148637771606 -1.1800936460495 -0.2973260879516602 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.4717373251914978 -1.121699452400208 -0.1211463361978531 -0.4717373251914978 -1.121699452400208 -0.1211463361978531 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.468121200799942 -1.12004280090332 -0.1144150197505951 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4681104421615601 -1.119511127471924 -0.1287264823913574 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622311294078827 -1.116490483283997 -0.1261643171310425 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4622358083724976 -1.116829514503479 -0.1170562356710434 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.4644741714000702 -1.131386756896973 -0.1194473057985306 -0.4644741714000702 -1.131386756896973 -0.1194473057985306 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.4530240595340729 -1.128822445869446 -0.1156086772680283 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.460116446018219 -1.130599498748779 -0.112811878323555 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4601055383682251 -1.13007378578186 -0.1271233260631561 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4530152082443237 -1.128493189811707 -0.1247149556875229 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496736228466034 -1.141476273536682 -0.1226042360067368 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4496819972991943 -1.141944885253906 -0.1135014444589615 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4571839570999146 -1.142169833183289 -0.1106427162885666 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4617978930473328 -1.141882181167603 -0.1172378212213516 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4571744799613953 -1.141634464263916 -0.124953880906105 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4642059803009033 -1.152724027633667 -0.1144214868545532 -0.4642059803009033 -1.152724027633667 -0.1144214868545532 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4597816169261932 -1.153294563293457 -0.1221173256635666 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526021778583527 -1.154695987701416 -0.1197611391544342 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4526120126247406 -1.15510094165802 -0.1106340140104294 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4597918689250946 -1.15381646156311 -0.107804998755455 -0.4714657664299011 -1.162484645843506 -0.1110089421272278 -0.4714657664299011 -1.162484645843506 -0.1110089421272278 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4615163803100586 -1.166784763336182 -0.1161440908908844 -0.4615163803100586 -1.166784763336182 -0.1161440908908844 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4676700532436371 -1.163918375968933 -0.1186337471008301 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4615237712860107 -1.167123079299927 -0.1070369184017181 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4676804840564728 -1.16444993019104 -0.1043225899338722 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4828593134880066 -1.170353889465332 -0.1070819646120071 -0.4828593134880066 -1.170353889465332 -0.1070819646120071 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4755431711673737 -1.176489114761353 -0.1119127124547958 -0.4755431711673737 -1.176489114761353 -0.1119127124547958 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800826609134674 -1.173004150390625 -0.100280687212944 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4800699949264526 -1.172483682632446 -0.1145917475223541 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4755504727363586 -1.176824927330017 -0.1028065383434296 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4972856640815735 -1.175560474395752 -0.1027733832597733 -0.4972856640815735 -1.175560474395752 -0.1027733832597733 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4933141171932221 -1.182911038398743 -0.1072084903717041 -0.4933141171932221 -1.182911038398743 -0.1072084903717041 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4933192133903503 -1.183247447013855 -0.09810061007738113 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957773089408875 -1.178682565689087 -0.09582018107175827 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.4957678318023682 -1.178149819374085 -0.110132098197937 -0.5130786299705505 -1.185441017150879 -0.102233350276947 -0.5130786299705505 -1.185441017150879 -0.102233350276947 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.5133234262466431 -1.177604675292969 -0.09824811667203903 -0.5133234262466431 -1.177604675292969 -0.09824811667203903 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.5130881667137146 -1.185773015022278 -0.09312672168016434 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.513237476348877 -1.180970788002014 -0.09101182222366333 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5132245421409607 -1.180387616157532 -0.1054340526461601 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5328704714775085 -1.183813214302063 -0.09727362543344498 -0.5328704714775085 -1.183813214302063 -0.09727362543344498 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5293971300125122 -1.176306962966919 -0.09369296580553055 -0.5293971300125122 -1.176306962966919 -0.09369296580553055 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5307326316833496 -1.178970813751221 -0.1007063537836075 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5328751802444458 -1.184173822402954 -0.0881212130188942 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5307458639144898 -1.179497361183167 -0.08639543503522873 -0.5439476370811462 -1.171802759170532 -0.08930191397666931 -0.5439476370811462 -1.171802759170532 -0.08930191397666931 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5508751273155212 -1.178285956382752 -0.0924120768904686 -0.5508751273155212 -1.178285956382752 -0.0924120768904686 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5465807914733887 -1.174063205718994 -0.09615504741668701 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5508819222450256 -1.178626656532288 -0.08330510556697846 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5465934276580811 -1.174580931663513 -0.08184394985437393 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5555424094200134 -1.164524674415588 -0.08524921536445618 -0.5555424094200134 -1.164524674415588 -0.08524921536445618 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5652047991752625 -1.169313788414002 -0.08801811188459396 -0.5652047991752625 -1.169313788414002 -0.08801811188459396 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592280626296997 -1.166658282279968 -0.07766030728816986 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5592177510261536 -1.166144013404846 -0.09197257459163666 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5652095079421997 -1.169643759727478 -0.07891020923852921 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.5630452036857605 -1.155208110809326 -0.08167614042758942 -0.5630452036857605 -1.155208110809326 -0.08167614042758942 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.5745046138763428 -1.158148646354675 -0.07510640472173691 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.567413330078125 -1.15652072429657 -0.07399924844503403 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5674030780792236 -1.155990600585938 -0.08831090480089188 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5744958519935608 -1.157810688018799 -0.08421383053064346 -0.5778428316116333 -1.144819259643555 -0.08111421018838882 -0.5778428316116333 -1.144819259643555 -0.08111421018838882 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5778517127037048 -1.145456075668335 -0.07201886177062988 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5703486204147339 -1.145153999328613 -0.07096472382545471 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.5657246112823486 -1.144978046417236 -0.07868462800979614 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.570341169834137 -1.144503712654114 -0.08527231961488724 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.574921190738678 -1.131919503211975 -0.0787806510925293 -0.574921190738678 -1.131919503211975 -0.0787806510925293 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5631065368652344 -1.134244561195374 -0.076307512819767 -0.5631065368652344 -1.134244561195374 -0.076307512819767 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5677372813224793 -1.133156895637512 -0.08291023969650269 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5749289989471436 -1.132254123687744 -0.06967322528362274 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5677464604377747 -1.133671879768372 -0.06859827041625977 -0.5560707449913025 -1.124674439430237 -0.07450312376022339 -0.5560707449913025 -1.124674439430237 -0.07450312376022339 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5660110712051392 -1.12008547782898 -0.07717347890138626 -0.5660110712051392 -1.12008547782898 -0.07717347890138626 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5598482489585877 -1.122728943824768 -0.0811878964304924 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5660161375999451 -1.120417952537537 -0.06806521862745285 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5598608255386353 -1.123241543769836 -0.06687692552804947 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5446727871894836 -1.116996884346008 -0.07322388887405396 -0.5446727871894836 -1.116996884346008 -0.07322388887405396 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5519850254058838 -1.110580444335938 -0.0762002095580101 -0.5519850254058838 -1.110580444335938 -0.0762002095580101 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474636554718018 -1.114879727363586 -0.06571444869041443 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.5474539399147034 -1.114342093467712 -0.08002623915672302 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.551992654800415 -1.110913038253784 -0.06709239631891251 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.530258059501648 -1.111981153488159 -0.07233035564422607 -0.530258059501648 -1.111981153488159 -0.07233035564422607 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.534221887588501 -1.104349851608276 -0.07570070773363113 -0.534221887588501 -1.104349851608276 -0.07570070773363113 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5342332720756531 -1.104680418968201 -0.0665951669216156 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317797660827637 -1.10939371585846 -0.06497302651405335 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5317614078521729 -1.108869671821594 -0.07928255945444107 -0.5144584774971008 -1.102004647254944 -0.07547114044427872 -0.5144584774971008 -1.102004647254944 -0.07547114044427872 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.514224648475647 -1.110127329826355 -0.07165177166461945 -0.514224648475647 -1.110127329826355 -0.07165177166461945 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5144666433334351 -1.102330923080444 -0.06636407226324081 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143250823020935 -1.107344388961792 -0.06446515768766403 -0.5143094658851624 -1.106828689575195 -0.07877529412508011 -0.5143094658851624 -1.106828689575195 -0.07877529412508011</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1699\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1696\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1700\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"4554\">-0.535310170416145 0.6828597286651628 0.4971374180409053 -0.711679610756167 0.701944011990737 0.02804880860747333 -0.7372431242803319 0.3797272314562333 0.5588200116244577 0.7372431242803319 -0.3797272314562333 -0.5588200116244577 0.711679610756167 -0.701944011990737 -0.02804880860747333 0.535310170416145 -0.6828597286651628 -0.4971374180409053 -0.729385409062589 0.4062554931621462 0.5504120268691277 0.729385409062589 -0.4062554931621462 -0.5504120268691277 -0.855130798811114 0.1136943568170223 -0.5057913701840213 -0.8413435891190259 0.1893640378826544 -0.5062432480587691 0.8413435891190259 -0.1893640378826544 0.5062432480587691 0.855130798811114 -0.1136943568170223 0.5057913701840213 -0.3217641206506636 0.8321982925179576 0.4515682147717007 0.3217641206506636 -0.8321982925179576 -0.4515682147717007 0.379993968652636 -0.01452187984957496 0.9248749638698487 0.3792356722588351 -0.05515184004802218 0.9236550110434667 0.3750217319175143 0.09079787801754481 0.9225586409205104 -0.3750217319175143 -0.09079787801754481 -0.9225586409205104 -0.3792356722588351 0.05515184004802218 -0.9236550110434667 -0.379993968652636 0.01452187984957496 -0.9248749638698487 -0.81891872323098 -0.02916354235750145 0.5731680491259991 0.81891872323098 0.02916354235750145 -0.5731680491259991 -0.8259819640337442 -0.2402927006267335 -0.5099149077213467 0.8259819640337442 0.2402927006267335 0.5099149077213467 -0.7524074740264602 0.4659136678491019 -0.465625866056127 0.7524074740264602 -0.4659136678491019 0.465625866056127 0.3666695855979613 -0.1470453642187064 0.9186572134693155 0.3567388083380884 -0.1797184269164603 0.9167544434864733 -0.3567388083380884 0.1797184269164603 -0.9167544434864733 -0.3666695855979613 0.1470453642187064 -0.9186572134693155 -0.4686122420705575 0.8829390577970164 0.02865635702809793 0.4686122420705575 -0.8829390577970164 -0.02865635702809793 0.362818980110611 0.1115732442145029 0.9251560943143308 -0.362818980110611 -0.1115732442145029 -0.9251560943143308 -0.8229435868585475 0.02579388750379018 0.567537248306955 0.8229435868585475 -0.02579388750379018 -0.567537248306955 -0.8318735357222543 -0.2056588359136707 -0.5154520964896634 0.8318735357222543 0.2056588359136707 0.5154520964896634 0.3131079370299137 -0.1234465688639044 -0.9416604294567128 0.2545174903010224 -0.3210223259692432 -0.9122310635799277 0.2994850388200162 -0.1347916098286615 -0.9445315947297746 -0.2994850388200162 0.1347916098286615 0.9445315947297746 -0.2545174903010224 0.3210223259692432 0.9122310635799277 -0.3131079370299137 0.1234465688639044 0.9416604294567128 0.1523944153111659 -0.4664167061013169 -0.8713388539779263 0.2471519929915358 -0.2985266892247367 -0.9218447310587772 -0.2471519929915358 0.2985266892247367 0.9218447310587772 -0.1523944153111659 0.4664167061013169 0.8713388539779263 0.3282817590528282 -0.2624482480758333 0.9073874606556488 -0.3282817590528282 0.2624482480758333 -0.9073874606556488 -0.1228561251570979 0.8950510040663684 0.4287074441051489 0.1228561251570979 -0.8950510040663684 -0.4287074441051489 0.5589975536955726 -0.6498570818411518 -0.5149830173348129 0.7112410577589947 -0.7025013268705942 -0.02506079613501234 0.9360046751277166 -0.3517618957081072 -0.01260225642083865 -0.9360046751277166 0.3517618957081072 0.01260225642083865 -0.7112410577589947 0.7025013268705942 0.02506079613501234 -0.5589975536955726 0.6498570818411518 0.5149830173348129 0.3329806907099038 0.2202433885859086 0.9168515198212587 -0.3329806907099038 -0.2202433885859086 -0.9168515198212587 0.328949659917621 -0.8033618405725865 -0.4963888338308061 0.4661076996959741 -0.8841508505218183 -0.03195130366155524 -0.4661076996959741 0.8841508505218183 0.03195130366155524 -0.328949659917621 0.8033618405725865 0.4963888338308061 -0.8306623845255892 -0.5565875870647995 0.0145003744657297 0.8306623845255892 0.5565875870647995 -0.0145003744657297 -0.6945545646332318 -0.5290651887906086 -0.4875284430236858 0.6945545646332318 0.5290651887906086 0.4875284430236858 0.3139158622216069 0.05128541750858253 -0.948064679964735 -0.3139158622216069 -0.05128541750858253 0.948064679964735 -0.5643062696415467 0.7140844036848697 -0.4142968723720538 0.5643062696415467 -0.7140844036848697 0.4142968723720538 0.1306461037378148 -0.8661971870146993 -0.4823214994025772 0.2464364274691459 -0.9684731079097251 -0.03645444378840799 -0.2464364274691459 0.9684731079097251 0.03645444378840799 -0.1306461037378148 0.8661971870146993 0.4823214994025772 0.3138505278316415 -0.2841790770731234 0.9059470725896009 -0.3138505278316415 0.2841790770731234 -0.9059470725896009 -0.2540861679460684 0.9666121345141174 0.03318434372628529 0.2540861679460684 -0.9666121345141174 -0.03318434372628529 0.9597608241675195 -0.2806503197590552 -0.009724114994385009 -0.9597608241675195 0.2806503197590552 0.009724114994385009 0.3220258347742228 0.214498438267411 0.9221115885394817 -0.3220258347742228 -0.214498438267411 -0.9221115885394817 -0.7616207824844075 -0.3651471048914312 0.5353516372229054 0.7616207824844075 0.3651471048914312 -0.5353516372229054 0.3167748269163652 0.09263797783393953 -0.9439660555840689 -0.3167748269163652 -0.09263797783393953 0.9439660555840689 0.9848243133712018 0.1734566137781367 0.005820217312395853 0.847433960872483 0.5305646473937475 0.01889012694302194 0.8283273280770336 0.5598559803948217 0.02085950087886269 -0.8283273280770336 -0.5598559803948217 -0.02085950087886269 -0.847433960872483 -0.5305646473937475 -0.01889012694302194 -0.9848243133712018 -0.1734566137781367 -0.005820217312395853 0.99311480872505 0.117099537706675 0.00326725571241982 -0.99311480872505 -0.117099537706675 -0.00326725571241982 0.03937472706342653 -0.5380336305709434 -0.8420032323235643 -0.03937472706342653 0.5380336305709434 0.8420032323235643 -0.06288384653166469 -0.8760148156605907 -0.478166984000907 0.06288384653166469 0.8760148156605907 0.478166984000907 0.257077063885439 -0.3475015842572659 0.9017505376559153 -0.257077063885439 0.3475015842572659 -0.9017505376559153 0.07303455185892338 0.9060032613570995 0.4169221086067103 -0.07303455185892338 -0.9060032613570995 -0.4169221086067103 0.2700156883626287 0.3209112866746965 0.9078036539488298 -0.2700156883626287 -0.3209112866746965 -0.9078036539488298 -0.07035077711726034 -0.5595903559214819 -0.8257780583901869 0.07035077711726034 0.5595903559214819 0.8257780583901869 -0.5872649289636108 -0.8093931705807556 -0.00161202561925844 0.5872649289636108 0.8093931705807556 0.00161202561925844 -0.509882051398594 -0.7296644481425849 -0.4556424988720199 0.509882051398594 0.7296644481425849 0.4556424988720199 0.2828710356509407 0.2426484055828317 -0.9279578268746236 -0.2828710356509407 -0.2426484055828317 0.9279578268746236 0.6057325087479234 0.7951282343225092 0.02931243471831879 -0.6057325087479234 -0.7951282343225092 -0.02931243471831879 -0.371145693979263 0.8484694174731969 -0.3772936806432688 0.371145693979263 -0.8484694174731969 0.3772936806432688 -0.1787530742583322 -0.5392198561948459 -0.8229758715347643 0.1787530742583322 0.5392198561948459 0.8229758715347643 0.03438135610527487 -0.9987520891903908 -0.03622411752123286 -0.03438135610527487 0.9987520891903908 0.03622411752123286 0.2512244040277587 -0.3569957493692131 0.8996890205805623 -0.2512244040277587 0.3569957493692131 -0.8996890205805623 -0.04872205898106887 0.9982765115858446 0.0327134129164507 0.04872205898106887 -0.9982765115858446 -0.0327134129164507 0.2698800213758354 0.2961674361769304 0.9162148349653386 -0.2698800213758354 -0.2961674361769304 -0.9162148349653386 -0.5816032194955555 -0.6636002251380012 0.4705023233409152 0.5816032194955555 0.6636002251380012 -0.4705023233409152 0.2686367963209743 0.288060300556891 -0.9191602335313885 -0.2686367963209743 -0.288060300556891 0.9191602335313885 0.5932575987977159 0.8044689158088678 0.02958352524756113 -0.5932575987977159 -0.8044689158088678 -0.02958352524756113 0.1919079033946834 0.3816786325888079 0.9041530722393164 0.2021851966061355 0.3530580894870337 0.9134939144411987 -0.2021851966061355 -0.3530580894870337 -0.9134939144411987 -0.1919079033946834 -0.3816786325888079 -0.9041530722393164 -0.2823820210451418 -0.4806475230958568 -0.8302038019259361 0.2823820210451418 0.4806475230958568 0.8302038019259361 -0.2505474052630797 -0.8378549079901313 -0.4850001555389304 0.2505474052630797 0.8378549079901313 0.4850001555389304 0.1747230772131435 -0.3953057429770431 0.9017789173952439 -0.1747230772131435 0.3953057429770431 -0.9017789173952439 0.26978728423016 0.8647902119375572 0.4235005438068643 -0.26978728423016 -0.8647902119375572 -0.4235005438068643 -0.1692684314459983 0.9176875552732279 -0.359440883891159 0.1692684314459983 -0.9176875552732279 0.359440883891159 -0.3502329098367625 -0.9365294321543141 -0.01579656848787955 0.3502329098367625 0.9365294321543141 0.01579656848787955 -0.3115226959250829 -0.8473851427508421 -0.429990732189315 0.3115226959250829 0.8473851427508421 0.429990732189315 0.2053626087379487 0.4066091744468938 -0.8902219825346709 -0.2053626087379487 -0.4066091744468938 0.8902219825346709 0.3625395537087672 0.9313536382647069 0.03384482955698954 -0.3625395537087672 -0.9313536382647069 -0.03384482955698954 0.1088163998042708 0.4031873021297915 0.9086247798376056 -0.1088163998042708 -0.4031873021297915 -0.9086247798376056 0.03197152740742636 0.9318883559366843 -0.3613335211475126 0.1550225723017221 0.9873709613234915 0.03265864069556018 -0.1550225723017221 -0.9873709613234915 -0.03265864069556018 -0.03197152740742636 -0.9318883559366843 0.3613335211475126 -0.1733353671567152 -0.9842555908762638 -0.03458008561966801 0.1733353671567152 0.9842555908762638 0.03458008561966801 0.1804061394791801 -0.4056248164437825 0.8960592241158876 -0.1804061394791801 0.4056248164437825 -0.8960592241158876 -0.3631565580660195 -0.8364706749585888 0.4104072663440117 0.3631565580660195 0.8364706749585888 -0.4104072663440117 0.1858046722706848 0.4347309710258129 -0.8811842069586456 -0.1858046722706848 -0.4347309710258129 0.8811842069586456 0.3566880885534043 0.9336089901440405 0.03388009749607839 -0.3566880885534043 -0.9336089901440405 -0.03388009749607839 0.1232571526515191 0.3822050703645238 0.9158203745865722 -0.1232571526515191 -0.3822050703645238 -0.9158203745865722 0.3718249345779886 0.9278015722570135 0.03050345133731713 -0.3718249345779886 -0.9278015722570135 -0.03050345133731713 -0.3769218826360062 -0.3789209326972639 -0.845191588430673 0.3769218826360062 0.3789209326972639 0.845191588430673 -0.4429394053228697 -0.7517457624653662 -0.4885519336033661 0.4429394053228697 0.7517457624653662 0.4885519336033661 0.08866515045489541 -0.4048987009543537 0.9100524891786669 -0.08866515045489541 0.4048987009543537 -0.9100524891786669 0.4722008782443767 0.7597224242219586 0.447043810738444 -0.4722008782443767 -0.7597224242219586 -0.447043810738444 -0.1349743997069032 -0.990475062389603 -0.0272224577889874 0.1349743997069032 0.990475062389603 0.0272224577889874 -0.1148745169857842 -0.9010766916345416 -0.4181681971889206 0.1148745169857842 0.9010766916345416 0.4181681971889206 0.1350323407016534 0.878766484746587 -0.4577507315676939 -0.1350323407016534 -0.878766484746587 0.4577507315676939 0.1391599109902589 0.9896225055955918 0.03580245231665115 -0.1391599109902589 -0.9896225055955918 -0.03580245231665115 0.02951347803965053 0.3883416053264751 0.9210427526377151 -0.02951347803965053 -0.3883416053264751 -0.9210427526377151 0.2379697063315265 0.8911006352533213 -0.3864066209572686 -0.2379697063315265 -0.8911006352533213 0.3864066209572686 -0.4018422953209712 -0.915469856946197 -0.02092153708700449 0.4018422953209712 0.915469856946197 0.02092153708700449 0.1000694492240476 -0.4248366424042973 0.8997221418875046 -0.1000694492240476 0.4248366424042973 -0.8997221418875046 -0.149258376407865 -0.916465922743119 0.371230588075244 0.149258376407865 0.916465922743119 -0.371230588075244 0.08634970589385892 0.5298551962191168 -0.8436807449098535 -0.08634970589385892 -0.5298551962191168 0.8436807449098535 0.03901594064805804 0.3769126891822767 0.9254267021805303 -0.03901594064805804 -0.3769126891822767 -0.9254267021805303 0.6676355058203269 0.5690937041910978 0.4799949866593313 -0.6676355058203269 -0.5690937041910978 -0.4799949866593313 0.6097847373579887 0.7922549558333398 0.02224093169725167 -0.6097847373579887 -0.7922549558333398 -0.02224093169725167 -0.4546059078543376 -0.2369869510319531 -0.8585864275566627 0.4546059078543376 0.2369869510319531 0.8585864275566627 -0.6358582712225318 -0.5907494832679082 -0.4966883398436012 0.6358582712225318 0.5907494832679082 0.4966883398436012 0.007498331790333134 -0.3777105669550434 0.9258933538107194 -0.007498331790333134 0.3777105669550434 -0.9258933538107194 0.06864084590568426 -0.9970179924571337 -0.0352641034211662 -0.06864084590568426 0.9970179924571337 0.0352641034211662 0.08052190282451008 -0.9028331427755107 -0.4223843504103985 -0.08052190282451008 0.9028331427755107 0.4223843504103985 -0.05898967825784544 0.8988150489367441 -0.4343405641473913 0.05898967825784544 -0.8988150489367441 0.4343405641473913 -0.07260509816947629 0.9967060792391365 0.03613158351842422 0.07260509816947629 -0.9967060792391365 -0.03613158351842422 -0.04181228090555243 0.3419317653722825 0.9387941206648397 0.04181228090555243 -0.3419317653722825 -0.9387941206648397 0.01504041957043186 -0.4057949568608777 0.9138403792596516 -0.01504041957043186 0.4057949568608777 -0.9138403792596516 0.4517798446100684 0.7787948471666188 -0.4351707228557833 -0.4517798446100684 -0.7787948471666188 0.4351707228557833 -0.6412771318334352 -0.7670575183231125 -0.01965715573197376 0.6412771318334352 0.7670575183231125 0.01965715573197376 0.05436673979736359 -0.9322885250947756 0.3576064367155796 -0.05436673979736359 0.9322885250947756 -0.3576064367155796 -0.0212071890036439 0.5780475407181148 -0.8157274641718907 0.0212071890036439 -0.5780475407181148 0.8157274641718907 -0.04351368272639628 0.3322625189290334 0.9421826669656582 0.04351368272639628 -0.3322625189290334 -0.9421826669656582 -0.06237698712821529 -0.3162498352456724 0.9466230259104684 0.06237698712821529 0.3162498352456724 -0.9466230259104684 0.8151747555481969 0.2812969192611448 0.5063221910316851 -0.8151747555481969 -0.2812969192611448 -0.5063221910316851 0.8495200192304718 0.5275379171118494 0.004413947887178284 -0.8495200192304718 -0.5275379171118494 -0.004413947887178284 -0.4986760678817546 -0.0546023815812284 -0.8650669102720608 0.4986760678817546 0.0546023815812284 0.8650669102720608 -0.8439557844500474 -0.5361032111239543 -0.01822034346245837 0.8439557844500474 0.5361032111239543 0.01822034346245837 0.2769606513134717 -0.9598182468762322 -0.04518551302633956 -0.2769606513134717 0.9598182468762322 0.04518551302633956 0.2862523820680035 -0.8449411142000919 -0.4518120043720634 -0.2862523820680035 0.8449411142000919 0.4518120043720634 -0.2515239683296016 0.8702997792149998 -0.4234548236282732 0.2515239683296016 -0.8702997792149998 0.4234548236282732 -0.2850091085724672 0.9578491851140157 0.03598258755486267 0.2850091085724672 -0.9578491851140157 -0.03598258755486267 -0.1022652138103845 0.2645297637071581 0.9589399512781558 0.1022652138103845 -0.2645297637071581 -0.9589399512781558 -0.8727550771939916 -0.4877890895991029 -0.01898365876716792 0.8727550771939916 0.4877890895991029 0.01898365876716792 -0.06496053448506671 -0.3441482908946016 0.9366654060195345 0.06496053448506671 0.3441482908946016 -0.9366654060195345 0.6576786834479146 0.5643363169938016 -0.4989822348141159 -0.6576786834479146 -0.5643363169938016 0.4989822348141159 -0.4964548012322866 -0.01405178624130724 -0.8679488335361937 0.4964548012322866 0.01405178624130724 0.8679488335361937 0.2544372511161985 -0.8958142249090459 0.3643879247382352 -0.2544372511161985 0.8958142249090459 -0.3643879247382352 -0.1346599506753236 0.5836962910113674 -0.8007280047205121 0.1346599506753236 -0.5836962910113674 0.8007280047205121 -0.1124404606428646 0.2448652957053648 0.9630151243721693 0.1124404606428646 -0.2448652957053648 -0.9630151243721693 -0.8819596162681433 0.007606609768102142 -0.4712635937137361 0.8819596162681433 -0.007606609768102142 0.4712635937137361 -0.1171297377672967 -0.2299390039661313 0.9661307773721048 0.1171297377672967 0.2299390039661313 -0.9661307773721048 0.8597941689935817 -0.06610076241144321 0.5063444244516397 -0.8597941689935817 0.06610076241144321 -0.5063444244516397 0.8025443301909858 0.1986012381867819 -0.5625656817376785 -0.8025443301909858 -0.1986012381867819 0.5625656817376785 -0.4943665989696874 0.1452993819705873 -0.8570237776293663 0.4943665989696874 -0.1452993819705873 0.8570237776293663 0.5011082647832796 -0.8640069618754204 -0.04881062176101025 -0.5011082647832796 0.8640069618754204 0.04881062176101025 0.495393292699206 -0.7179196114702798 -0.4890571715198556 -0.495393292699206 0.7179196114702798 0.4890571715198556 -0.4523459423830585 0.7826873274957782 -0.427532099130696 0.4523459423830585 -0.7826873274957782 0.427532099130696 -0.5160344004894462 0.8561607522170113 0.02640575457545195 0.5160344004894462 -0.8561607522170113 -0.02640575457545195 -0.1456700287183111 0.1553266991594604 0.9770638972254747 0.1456700287183111 -0.1553266991594604 -0.9770638972254747 -0.9975799967319756 -0.06943171943913534 -0.003658750600534279 0.9975799967319756 0.06943171943913534 0.003658750600534279 -0.1298938066383518 -0.2399502853702611 0.9620558505345356 0.1298938066383518 0.2399502853702611 -0.9620558505345356 0.8574527099986579 -0.024943073842547 0.5139578710198363 -0.8574527099986579 0.024943073842547 -0.5139578710198363 0.7991923633604373 0.2325909216970215 -0.5542499702214594 -0.7991923633604373 -0.2325909216970215 0.5542499702214594 0.4545425258572903 -0.8001119199105381 0.3914230547685552 -0.4545425258572903 0.8001119199105381 -0.3914230547685552 -0.2485621394074033 0.5432107119168934 -0.8019594661277815 0.2485621394074033 -0.5432107119168934 0.8019594661277815 -0.1547297701498987 0.1222919404111891 0.9803588014292652 0.1547297701498987 -0.1222919404111891 -0.9803588014292652 -0.4386221089531073 0.3279040177656268 -0.8367135714631907 0.4386221089531073 -0.3279040177656268 0.8367135714631907 -0.8139596649067716 0.369876750153207 -0.4479518429485005 0.8139596649067716 -0.369876750153207 0.4479518429485005 -0.1540747872951352 -0.1214426860447951 0.9805675060525839 0.1540747872951352 0.1214426860447951 -0.9805675060525839 0.7859819010892829 -0.3952252448442107 0.4754255535811157 -0.7859819010892829 0.3952252448442107 -0.4754255535811157 0.9306780161615121 -0.3631421276095757 -0.04434214010241968 -0.9306780161615121 0.3631421276095757 0.04434214010241968 0.7418342663243822 -0.6686855396130648 -0.05041399031370274 -0.7418342663243822 0.6686855396130648 0.05041399031370274 0.6931728046754269 -0.4794465154382414 -0.5381844495082803 -0.6931728046754269 0.4794465154382414 0.5381844495082803 -0.6572266751115354 0.615817033732647 -0.4345370852833627 0.6572266751115354 -0.615817033732647 0.4345370852833627 -0.7519579582759212 0.6588368316709177 0.02220941735694816 0.7519579582759212 -0.6588368316709177 -0.02220941735694816 -0.1709405722559768 0.02372283740880488 0.9849957095043992 0.1709405722559768 -0.02372283740880488 -0.9849957095043992 0.8070332257881647 -0.1635417914939574 -0.5674076620110943 -0.8070332257881647 0.1635417914939574 0.5674076620110943 -0.9307959225689865 0.3653144447802395 0.01281822779696078 0.9307959225689865 -0.3653144447802395 -0.01281822779696078 -0.1665224790155269 -0.1042049381458482 0.98051598398422 0.1665224790155269 0.1042049381458482 -0.98051598398422 0.6462131120801343 -0.6271220006901789 0.4348868933712018 -0.6462131120801343 0.6271220006901789 -0.4348868933712018 -0.356871619837412 0.4535533681326124 -0.8166590409774356 0.356871619837412 -0.4535533681326124 0.8166590409774356 -0.1683124202182102 -0.008542688178951144 0.9856966834066989 0.1683124202182102 0.008542688178951144 -0.9856966834066989 0.7170352095489575 -0.6951740874276534 -0.05092638251645233 -0.7170352095489575 0.6951740874276534 0.05092638251645233 -0.3464664709718055 0.4660313447269559 -0.8141104164818971 0.3464664709718055 -0.4660313447269559 0.8141104164818971 -0.6354976406288125 0.6397473796149413 -0.4322800469961907 0.6354976406288125 -0.6397473796149413 0.4322800469961907 -0.1685700138354227 0.005739948138891548 0.9856729698185338 0.1685700138354227 -0.005739948138891548 -0.9856729698185338 0.627961198733126 -0.649050529225108 0.4294160493021458 -0.627961198733126 0.649050529225108 -0.4294160493021458 0.797309948167892 -0.3587410006949399 0.4853882373656234 -0.797309948167892 0.3587410006949399 -0.4853882373656234 0.8133505745047901 -0.1225610302085998 -0.5687175369433712 -0.8133505745047901 0.1225610302085998 0.5687175369433712 -0.827728804209694 0.3350726078951755 -0.4501015153495001 0.827728804209694 -0.3350726078951755 0.4501015153495001 -0.9459935076998534 0.3239857232554233 0.01138132313871105 0.9459935076998534 -0.3239857232554233 -0.01138132313871105 -0.1642946471614618 -0.1191759077197101 0.9791855656275137 0.1642946471614618 0.1191759077197101 -0.9791855656275137 0.6747183980805227 -0.5099847396469173 -0.5335453576022561 -0.6747183980805227 0.5099847396469173 0.5335453576022561 -0.725972841726008 0.6873609092027893 0.022325178077218 0.725972841726008 -0.6873609092027893 -0.022325178077218 -0.1700291583770809 0.03942041603916416 0.9846502506478534 0.1700291583770809 -0.03942041603916416 -0.9846502506478534 0.7985683741119738 -0.3635551752882126 0.4797042697217896 -0.7985683741119738 0.3635551752882126 -0.4797042697217896 0.8005407714938573 -0.177249530910696 -0.5724657867226284 -0.8005407714938573 0.177249530910696 0.5724657867226284 -0.4462067143413283 0.3107408208180051 -0.839249492316837 0.4462067143413283 -0.3107408208180051 0.839249492316837 -0.1512006834129393 -0.1336474753351201 0.9794267229721725 0.1512006834129393 0.1336474753351201 -0.9794267229721725 0.433676410702461 -0.8129828071542766 0.3885662441229072 -0.433676410702461 0.8129828071542766 -0.3885662441229072 0.4768903302031552 -0.8776658114493595 -0.04773192193556719 -0.4768903302031552 0.8776658114493595 0.04773192193556719 -0.238012317776634 0.5527815444245369 -0.7986129855757533 0.238012317776634 -0.5527815444245369 0.7986129855757533 -0.4293197939239346 0.7959816418674625 -0.4267291182414073 0.4293197939239346 -0.7959816418674625 0.4267291182414073 -0.1533284582499095 0.138567601006442 0.9784116740115201 0.1533284582499095 -0.138567601006442 -0.9784116740115201 0.856906041284654 0.0155227088499625 0.515238859093355 -0.856906041284654 -0.0155227088499625 -0.515238859093355 0.7895060350991036 0.2718495608044064 -0.5502527027035348 -0.7895060350991036 -0.2718495608044064 0.5502527027035348 -0.8795828893751583 -0.03295106831366036 -0.4746031687793886 0.8795828893751583 0.03295106831366036 0.4746031687793886 -0.9931749293461942 -0.1165321844306382 -0.004879519444127158 0.9931749293461942 0.1165321844306382 0.004879519444127158 -0.1241386851449203 -0.252215880966428 0.9596753285558711 0.1241386851449203 0.252215880966428 -0.9596753285558711 -0.1440117039784415 0.1695726396981693 0.9749388437143227 0.1440117039784415 -0.1695726396981693 -0.9749388437143227 0.4731713745155489 -0.7368035674240903 -0.4829382500591563 -0.4731713745155489 0.7368035674240903 0.4829382500591563 -0.4914271999019824 0.8706180904945938 0.02287897943624781 0.4914271999019824 -0.8706180904945938 -0.02287897943624781 0.8609196727568225 -0.02973249428943746 0.5078713378835374 -0.8609196727568225 0.02973249428943746 -0.5078713378835374 0.7938149946100161 0.240672771386379 -0.5585108516810573 -0.7938149946100161 -0.240672771386379 0.5585108516810573 -0.4981315225321004 0.1224069535905647 -0.8584180356752349 0.4981315225321004 -0.1224069535905647 0.8584180356752349 -0.1121383259459405 -0.2398450308899771 0.9643128937287047 0.1121383259459405 0.2398450308899771 -0.9643128937287047 -0.1062966699288113 0.2553977220723043 0.9609750368882238 0.1062966699288113 -0.2553977220723043 -0.9609750368882238 0.2334715834460491 -0.9021087639137927 0.3628922674749679 -0.2334715834460491 0.9021087639137927 -0.3628922674749679 0.2546730969055133 -0.9661253549653743 -0.04175418788079063 -0.2546730969055133 0.9661253549653743 0.04175418788079063 -0.1226019453821983 0.5856224846958062 -0.8012584279788954 0.1226019453821983 -0.5856224846958062 0.8012584279788954 -0.2322335972147434 0.8745422537674141 -0.4257269109418759 0.2322335972147434 -0.8745422537674141 0.4257269109418759 0.8298769241635319 0.5578774476779886 0.008777477608551191 -0.8298769241635319 -0.5578774476779886 -0.008777477608551191 0.6381503195400743 0.5921063201550033 -0.4921120556371302 -0.6381503195400743 -0.5921063201550033 0.4921120556371302 -0.7845301195558947 -0.3705924622541761 -0.4971656850889858 0.7845301195558947 0.3705924622541761 0.4971656850889858 -0.8531044413202037 -0.5209828221013414 -0.02810180198964397 0.8531044413202037 0.5209828221013414 0.02810180198964397 -0.05742407169246319 -0.3531049708559187 0.9338197660935966 0.05742407169246319 0.3531049708559187 -0.9338197660935966 -0.264181886575063 0.9639045097863968 0.03310629576208342 0.264181886575063 -0.9639045097863968 -0.03310629576208342 -0.0961714147092337 0.2735265109821333 0.9570445688591338 0.0961714147092337 -0.2735265109821333 -0.9570445688591338 0.2628301722769759 -0.8574191658827258 -0.4424394585904674 -0.2628301722769759 0.8574191658827258 0.4424394585904674 0.805436444413751 0.3138416009291293 0.5027679221433841 -0.805436444413751 -0.3138416009291293 -0.5027679221433841 -0.5011848910180647 -0.0768321832181772 -0.861922572298196 0.5011848910180647 0.0768321832181772 0.861922572298196 -0.05593530965330448 -0.3240535581092801 0.9443836787083438 0.05593530965330448 0.3240535581092801 -0.9443836787083438 -0.03897239308958518 0.8991793280296998 -0.4358413571713087 0.03897239308958518 -0.8991793280296998 0.4358413571713087 -0.03525158766491567 0.3387304469134816 0.9402228511905546 0.03525158766491567 -0.3387304469134816 -0.9402228511905546 0.03378643596204006 -0.9335658899859859 0.3568097613570249 -0.03378643596204006 0.9335658899859859 -0.3568097613570249 0.04789021286171039 -0.9982553370951237 -0.03453707389401745 -0.04789021286171039 0.9982553370951237 0.03453707389401745 -0.009885358226968684 0.5750224134681391 -0.8180779325357707 0.009885358226968684 -0.5750224134681391 0.8180779325357707 0.5855044421088986 0.8103976357524733 0.02098142601324613 -0.5855044421088986 -0.8103976357524733 -0.02098142601324613 0.4340609032382765 0.7959713587299389 -0.4219250269438712 -0.4340609032382765 -0.7959713587299389 0.4219250269438712 -0.6153560448574253 -0.6092572074248711 -0.5001425729312331 0.6153560448574253 0.6092572074248711 0.5001425729312331 -0.6198630903292977 -0.7840993120202319 -0.03095186806659787 0.6198630903292977 0.7840993120202319 0.03095186806659787 0.02409656358769302 -0.4096282971439647 0.9119342157207393 -0.02409656358769302 0.4096282971439647 -0.9119342157207393 -0.05031979474142957 0.9980457114744417 0.03704964324600307 0.05031979474142957 -0.9980457114744417 -0.03704964324600307 -0.0348206751678781 0.3480614376028201 0.9368248268671744 0.0348206751678781 -0.3480614376028201 -0.9368248268671744 0.06078477015216938 -0.9051564198478542 -0.4207101939884068 -0.06078477015216938 0.9051564198478542 0.4207101939884068 0.6482297321278429 0.6028398979148678 0.4651690787955032 -0.6482297321278429 -0.6028398979148678 -0.4651690787955032 -0.4478966020177788 -0.2541415579067543 -0.8572051693997507 0.4478966020177788 0.2541415579067543 0.8572051693997507 0.01559672925442231 -0.380983862705341 0.9244501275864925 -0.01559672925442231 0.380983862705341 -0.9244501275864925 0.09714985020961668 0.522333864264374 -0.8471890230915977 -0.09714985020961668 -0.522333864264374 0.8471890230915977 0.1553408786736751 0.8736838440230915 -0.4610268453202319 -0.1553408786736751 -0.8736838440230915 0.4610268453202319 0.04774165709909886 0.3792289904447429 0.9240704015299337 -0.04774165709909886 -0.3792289904447429 -0.9240704015299337 -0.1710161198878743 -0.9112221572522233 0.3747367967935634 0.1710161198878743 0.9112221572522233 -0.3747367967935634 -0.1565556598465962 -0.9873325668951926 -0.02578231405725385 0.1565556598465962 0.9873325668951926 0.02578231405725385 0.3468654255841545 0.9373977055235857 0.0311435099730263 -0.3468654255841545 -0.9373977055235857 -0.0311435099730263 0.2151468099413452 0.8989038256627896 -0.3816854233277242 -0.2151468099413452 -0.8989038256627896 0.3816854233277242 -0.4229049650401514 -0.7599165361481899 -0.4936377706708892 0.4229049650401514 0.7599165361481899 0.4936377706708892 -0.3770508568913159 -0.9255392515129642 -0.03478139195526916 0.3770508568913159 0.9255392515129642 0.03478139195526916 0.1086182708157457 -0.4244487475750574 0.8989134173695276 -0.1086182708157457 0.4244487475750574 -0.8989134173695276 -0.1350343542808518 -0.8980551277568514 -0.4186438948242033 0.1350343542808518 0.8980551277568514 0.4186438948242033 0.1612143466838741 0.9862880320014714 0.03529663374821999 -0.1612143466838741 -0.9862880320014714 -0.03529663374821999 0.03730645428521182 0.3914503345569155 0.9194426920933921 -0.03730645428521182 -0.3914503345569155 -0.9194426920933921 0.4512939907351913 0.7735056125491248 0.4449975295227023 -0.4512939907351913 -0.7735056125491248 -0.4449975295227023 -0.3680144667309154 -0.3929169477632095 -0.8427227447014842 0.3680144667309154 0.3929169477632095 0.8427227447014842 0.09726149813952741 -0.4055986414267697 0.9088618943780256 -0.09726149813952741 0.4055986414267697 -0.9088618943780256 -0.3736623046740656 -0.9274521783534832 -0.01445472009568674 0.3736623046740656 0.9274521783534832 0.01445472009568674 0.1954486345942783 0.4220317646660174 -0.8852621198538428 -0.1954486345942783 -0.4220317646660174 0.8852621198538428 0.3803994815951778 0.9242084766368134 0.03368866448496297 -0.3803994815951778 -0.9242084766368134 -0.03368866448496297 0.1318367886920812 0.3805656094993993 0.9153080781975599 -0.1318367886920812 -0.3805656094993993 -0.9153080781975599 -0.3857834882261922 -0.8237101252463507 0.4155390833347361 0.3857834882261922 0.8237101252463507 -0.4155390833347361 0.1338395089256006 0.9904472527131343 0.03318471701790733 -0.1338395089256006 -0.9904472527131343 -0.03318471701790733 0.01120160698955215 0.9329626622364952 -0.3597988255587321 -0.01120160698955215 -0.9329626622364952 0.3597988255587321 -0.2325309580868789 -0.8440969843494561 -0.4831455624792101 0.2325309580868789 0.8440969843494561 0.4831455624792101 -0.154527552306003 -0.9873161144596161 -0.03644345903837389 0.154527552306003 0.9873161144596161 0.03644345903837389 0.1883721494601096 -0.4022385583668752 0.8959464690876995 -0.1883721494601096 0.4022385583668752 -0.8959464690876995 -0.3323026476776037 -0.8385615661172768 -0.431728444948204 0.3323026476776037 0.8385615661172768 0.431728444948204 0.215248562815476 0.3916735621518621 -0.894572454816905 -0.215248562815476 -0.3916735621518621 0.894572454816905 0.3868280921821323 0.9215302862295679 0.03385201117189925 -0.3868280921821323 -0.9215302862295679 -0.03385201117189925 0.1173977769977951 0.4027091350504056 0.9077682052721003 -0.1173977769977951 -0.4027091350504056 -0.9077682052721003 0.2489458852328293 0.8717344856732384 0.4220248010646504 -0.2489458852328293 -0.8717344856732384 -0.4220248010646504 -0.2718556376875321 -0.4882131085991132 -0.8293024013286684 0.2718556376875321 0.4882131085991132 0.8293024013286684 0.1836613834871931 -0.3924336867930833 0.9012570652624913 -0.1836613834871931 0.3924336867930833 -0.9012570652624913 -0.6033355098507652 -0.6384923575383442 0.4778219039749477 0.6033355098507652 0.6384923575383442 -0.4778219039749477 -0.6131254961321928 -0.7899853147212744 0.0005731643582408101 0.6131254961321928 0.7899853147212744 -0.0005731643582408101 0.275362539101309 0.2694875496646566 -0.9227957155489069 -0.275362539101309 -0.2694875496646566 0.9227957155489069 0.6186506423816441 0.7851030912335202 0.02974086105596318 -0.6186506423816441 -0.7851030912335202 -0.02974086105596318 0.2101175513439924 0.3486731677630247 0.9133879989901894 -0.2101175513439924 -0.3486731677630247 -0.9133879989901894 -0.06461905806779944 0.997395885326813 0.03202850710809595 0.06461905806779944 -0.997395885326813 -0.03202850710809595 -0.1834497390466434 0.9148534576368063 -0.3597073036424178 0.1834497390466434 -0.9148534576368063 0.3597073036424178 -0.04706007671438661 -0.8766410006301814 -0.4788380782621098 0.04706007671438661 0.8766410006301814 0.4788380782621098 0.05240676047166495 -0.9979332119693068 -0.03718650165702653 -0.05240676047166495 0.9979332119693068 0.03718650165702653 0.2558861234443253 -0.3505181987180789 0.9009213529471198 -0.2558861234443253 0.3505181987180789 -0.9009213529471198 0.2006831002614205 0.3777160261579191 0.9039119961881992 -0.2006831002614205 -0.3777160261579191 -0.9039119961881992 -0.53050839092554 -0.713187852388419 -0.4581745675647977 0.53050839092554 0.713187852388419 0.4581745675647977 0.2881075812934133 0.2233228200054878 -0.9311932880267425 -0.2881075812934133 -0.2233228200054878 0.9311932880267425 0.6320216216874215 0.7743967147908979 0.02929842727291891 -0.6320216216874215 -0.7743967147908979 -0.02929842727291891 0.05525295018242418 0.9079180958221401 0.4154898828790391 -0.05525295018242418 -0.9079180958221401 -0.4154898828790391 -0.1693098597271242 -0.5435439754273672 -0.8221277991746753 0.1693098597271242 0.5435439754273672 0.8221277991746753 0.2624313659527194 -0.3401103022477795 0.9030253376672848 -0.2624313659527194 0.3401103022477795 -0.9030253376672848 0.2785082007361578 0.2831362367560196 0.9177510847492076 -0.2785082007361578 -0.2831362367560196 -0.9177510847492076 -0.779978121252102 -0.3127799279651076 0.5420358355590368 0.779978121252102 0.3127799279651076 -0.5420358355590368 -0.8613360645284098 -0.5077925879855756 0.0157121459267218 0.8613360645284098 0.5077925879855756 -0.0157121459267218 0.3203858618669948 0.06507575749340232 -0.9450492290364575 -0.3203858618669948 -0.06507575749340232 0.9450492290364575 0.8570000808160878 0.5149590853378663 0.01918337585533324 -0.8570000808160878 -0.5149590853378663 -0.01918337585533324 -0.2668584916686912 0.9632176658702873 0.03159546770830292 0.2668584916686912 -0.9632176658702873 -0.03159546770830292 -0.3848584408113122 0.8410886970001501 -0.3800707622468155 0.3848584408113122 -0.8410886970001501 0.3800707622468155 0.1463445884545457 -0.8636978191850746 -0.4822959035333138 -0.1463445884545457 0.8636978191850746 0.4822959035333138 0.2614864536151934 -0.9645813656025409 -0.03475088068073299 -0.2614864536151934 0.9645813656025409 0.03475088068073299 0.3128152317921457 -0.272750132100432 0.90980986815819 -0.3128152317921457 0.272750132100432 -0.90980986815819 0.8772517041359547 0.4797027255919508 0.01774098785910602 -0.8772517041359547 -0.4797027255919508 -0.01774098785910602 0.2801952750834338 0.3069638684701647 0.9095404286092786 -0.2801952750834338 -0.3069638684701647 -0.9095404286092786 -0.7175498325229612 -0.4930624735870243 -0.4919467806445282 0.7175498325229612 0.4930624735870243 0.4919467806445282 0.3153611958733363 0.02588977355127589 -0.948618487993357 -0.3153611958733363 -0.02588977355127589 0.948618487993357 -0.1392445525868265 0.8939663745427139 0.4259519641483658 0.1392445525868265 -0.8939663745427139 -0.4259519641483658 -0.06131327874475354 -0.5593307263178334 -0.8266739505066874 0.06131327874475354 0.5593307263178334 0.8266739505066874 0.3279961473473233 -0.2498327249204238 0.9110445306812115 -0.3279961473473233 0.2498327249204238 -0.9110445306812115 0.9954171290400191 0.09553601835509044 0.004196237669848525 -0.9954171290400191 -0.09553601835509044 -0.004196237669848525 0.331646199686615 0.1947660239000207 0.9230801667068806 -0.331646199686615 -0.1947660239000207 -0.9230801667068806 -0.8175661160704699 0.09712556361431309 0.5675845934713599 0.8175661160704699 -0.09712556361431309 -0.5675845934713599 -0.845898092456866 -0.133183130216802 -0.5164481300222606 0.845898092456866 0.133183130216802 0.5164481300222606 0.3083725906203965 -0.1573722168839604 -0.9381579455012324 -0.3083725906203965 0.1573722168839604 0.9381579455012324 -0.4989995426749803 0.866022516206001 0.03169318277464853 0.4989995426749803 -0.866022516206001 -0.03169318277464853 -0.5956907462458242 0.6858816290607149 -0.4179939302838174 0.5956907462458242 -0.6858816290607149 0.4179939302838174 0.3620907452817879 -0.7880871337618098 -0.4978041399791435 -0.3620907452817879 0.7880871337618098 0.4978041399791435 0.4980423443424801 -0.8665917528265352 -0.03118584895236354 -0.4980423443424801 0.8665917528265352 0.03118584895236354 0.3599700298658335 -0.1644817040127886 0.9183503398177847 -0.3599700298658335 0.1644817040127886 -0.9183503398177847 0.2943240018707259 -0.1612778925229903 -0.9419993754276824 -0.2943240018707259 0.1612778925229903 0.9419993754276824 0.9995125932000399 0.03116117905467866 0.001885988985655725 -0.9995125932000399 -0.03116117905467866 -0.001885988985655725 0.3431132187610625 0.1961239636348738 0.9185906106637333 -0.3431132187610625 -0.1961239636348738 -0.9185906106637333 -0.8174331647353583 0.04639253701091174 0.5741522042981528 0.8174331647353583 -0.04639253701091174 -0.5741522042981528 -0.8407693587693527 -0.1769326226913789 -0.5116656451063738 0.8407693587693527 0.1769326226913789 0.5116656451063738 -0.351344017464407 0.8170334422133354 0.4571802004647607 0.351344017464407 -0.8170334422133354 -0.4571802004647607 0.05308682866082147 -0.5294829636699153 -0.8466578882914042 -0.05308682866082147 0.5294829636699153 0.8466578882914042 0.3719130906702194 -0.1265632048515265 0.9195990475015922 -0.3719130906702194 0.1265632048515265 -0.9195990475015922 0.2430574879004985 -0.3409814292140196 -0.9081050173337133 -0.2430574879004985 0.3409814292140196 0.9081050173337133 0.9393255939314196 -0.3428193935498642 -0.01192862068678942 -0.9393255939314196 0.3428193935498642 0.01192862068678942 0.36716622020733 0.09385941434953689 0.9254076815526358 -0.36716622020733 -0.09385941434953689 -0.9254076815526358 -0.7106066404541951 0.4478795658527937 0.5426251901947745 0.7106066404541951 -0.4478795658527937 -0.5426251901947745 -0.8322407805009124 0.2410512179802989 -0.4992690593071502 0.8322407805009124 -0.2410512179802989 0.4992690593071502 -0.7492626143908922 0.6617306644805105 0.02679668565899822 0.7492626143908922 -0.6617306644805105 -0.02679668565899822 -0.7718117655767617 0.4268896522834806 -0.4712449716342559 0.7718117655767617 -0.4268896522834806 0.4712449716342559 0.1704561015336629 -0.4188039207007326 -0.8919349715397643 -0.1704561015336629 0.4188039207007326 0.8919349715397643 0.7457573191449481 -0.6658082115411176 -0.02335479364410316 -0.7457573191449481 0.6658082115411176 0.02335479364410316 0.3832945142782272 -0.03327922599264618 0.9230264397304924 -0.3832945142782272 0.03327922599264618 -0.9230264397304924 -0.8487072942267473 0.1690980125474086 -0.5011005796033666 0.8487072942267473 -0.1690980125474086 0.5011005796033666 0.2376184337326038 -0.3172723381324109 -0.9180826451940247 -0.2376184337326038 0.3172723381324109 0.9180826451940247 0.914282202159292 -0.4048044901428724 -0.01487882975655453 -0.914282202159292 0.4048044901428724 0.01487882975655453 0.3773336200634785 0.07297369323016359 0.9231978007264426 -0.3773336200634785 -0.07297369323016359 -0.9231978007264426 -0.716305029535777 0.4292096781431709 0.5501692074716518 0.716305029535777 -0.4292096781431709 -0.5501692074716518 -0.5635137014633063 0.6543319596569852 0.5042836452182177 0.5635137014633063 -0.6543319596569852 -0.5042836452182177 0.1654645754220075 -0.4499810960536757 -0.8775753457537122 -0.1654645754220075 0.4499810960536757 0.8775753457537122 0.7849717542644445 -0.6191505250492028 -0.02172492435652893 -0.7849717542644445 0.6191505250492028 0.02172492435652893 0.3812131251694482 0.001938054737225733 0.9244851524726496 -0.3812131251694482 -0.001938054737225733 -0.9244851524726496 -0.706263187382144 0.707442942431103 0.02677299671754465 0.706263187382144 -0.707442942431103 -0.02677299671754465 0.1468988514602051 -0.4682212046665963 -0.8713148862152154 -0.1468988514602051 0.4682212046665963 0.8713148862152154 0.5453443397134076 -0.6597043316735971 -0.5170974240059992 -0.5453443397134076 0.6597043316735971 0.5170974240059992 0.3801252730647183 -0.01953358577190619 0.9247287255213634 -0.3801252730647183 0.01953358577190619 -0.9247287255213634 -0.5268173003900145 0.6908686067102202 0.4951404853898096 0.5268173003900145 -0.6908686067102202 -0.4951404853898096 -0.7479084547054277 0.3581028584852424 0.5589233275905001 0.7479084547054277 -0.3581028584852424 -0.5589233275905001 -0.857463476648464 0.09220337702018273 -0.506216281326473 0.857463476648464 -0.09220337702018273 0.506216281326473 0.2503476186166397 -0.2899487472026017 -0.9237184602727281 -0.2503476186166397 0.2899487472026017 0.9237184602727281 0.9458611265874839 -0.3243741966978646 -0.01131855676626295 -0.9458611265874839 0.3243741966978646 0.01131855676626295 0.3740559177265709 0.1012911302250636 0.921858057051877 -0.3740559177265709 -0.1012911302250636 -0.921858057051877 -0.7456081572732178 0.479349187413293 -0.4629177381931395 0.7456081572732178 -0.479349187413293 0.4629177381931395 0.7019866539849511 -0.7116120731318623 -0.02868788943065985 -0.7019866539849511 0.7116120731318623 0.02868788943065985 0.3797707895361056 -0.05578521508747981 0.9233970744987049 -0.3797707895361056 0.05578521508747981 -0.9233970744987049 -0.7413372018600667 0.3838759711138743 0.5505073949909002 0.7413372018600667 -0.3838759711138743 -0.5505073949909002 -0.8464429439500593 0.1647919807723101 -0.5063377782768096 0.8464429439500593 -0.1647919807723101 0.5063377782768096 0.2583786506831493 -0.3088727730113479 -0.9153349567035204 -0.2583786506831493 0.3088727730113479 0.9153349567035204 0.9667052361602763 -0.2557355619573141 -0.008961513861014344 -0.9667052361602763 0.2557355619573141 0.008961513861014344 0.3621145849670063 0.1188741203512216 0.9245225637402779 -0.3621145849670063 -0.1188741203512216 -0.9245225637402779 -0.3197967591986774 0.8330108071813056 0.4514676377384902 0.3197967591986774 -0.8330108071813056 -0.4514676377384902 -0.4673945829500927 0.8835792856825052 0.02880884832309254 0.4673945829500927 -0.8835792856825052 -0.02880884832309254 0.0369972132086472 -0.5385792329872361 -0.8417622087084182 -0.0369972132086472 0.5385792329872361 0.8417622087084182 0.325919582977926 -0.8059328847832468 -0.4942151461220593 -0.325919582977926 0.8059328847832468 0.4942151461220593 0.3683543468231149 -0.1472162384577096 0.9179555840621478 -0.3683543468231149 0.1472162384577096 -0.9179555840621478 -0.8188355990647986 -0.04539334334400072 0.5722304658826251 0.8188355990647986 0.04539334334400072 -0.5722304658826251 -0.822254580904724 -0.2531097721189614 -0.5097380184360236 0.822254580904724 0.2531097721189614 0.5097380184360236 0.3007446134877924 -0.1278820455526602 -0.9450919848794326 -0.3007446134877924 0.1278820455526602 0.9450919848794326 0.9912207788015529 0.1321041308441238 0.005465005577446667 -0.9912207788015529 -0.1321041308441238 -0.005465005577446667 0.333464432219462 0.2262048617210932 0.91522283241749 -0.333464432219462 -0.2262048617210932 -0.91522283241749 0.3572482033442377 -0.1813374423690488 0.9162371162545022 -0.3572482033442377 0.1813374423690488 -0.9162371162545022 -0.5652732880236447 0.7136985729110916 -0.4136429098529417 0.5652732880236447 -0.7136985729110916 0.4136429098529417 0.4589963824499008 -0.8877897039360941 -0.03393762636022827 -0.4589963824499008 0.8877897039360941 0.03393762636022827 -0.823645160210407 0.01010080678141246 0.5670155410254093 0.823645160210407 -0.01010080678141246 -0.5670155410254093 -0.8284382484647666 -0.2197789923965592 -0.5151575127878687 0.8284382484647666 0.2197789923965592 0.5151575127878687 0.3143157204193575 -0.1151624860391426 -0.9423073966103337 -0.3143157204193575 0.1151624860391426 0.9423073966103337 0.981402156481385 0.1918066126499629 0.007747941496548565 -0.981402156481385 -0.1918066126499629 -0.007747941496548565 0.3228742433604697 0.2179475000854879 0.921005488681197 -0.3228742433604697 -0.2179475000854879 -0.921005488681197 0.3242555894649844 -0.2627546519260186 0.908745456985592 -0.3242555894649844 0.2627546519260186 -0.908745456985592 -0.1174200889755088 0.8977402856722788 0.4245879204429147 0.1174200889755088 -0.8977402856722788 -0.4245879204429147 -0.2470425728422168 0.9685221241356217 0.03057551738436241 0.2470425728422168 -0.9685221241356217 -0.03057551738436241 -0.07435657945962489 -0.5620431171607689 -0.8237588442883455 0.07435657945962489 0.5620431171607689 0.8237588442883455 0.122052206662836 -0.8647746579518298 -0.4871016832377279 -0.122052206662836 0.8647746579518298 0.4871016832377279 -0.8216029429713218 -0.5698993658412955 0.01353945769047497 0.8216029429713218 0.5698993658412955 -0.01353945769047497 -0.687814852997406 -0.5387613544941684 -0.4864636994676644 0.687814852997406 0.5387613544941684 0.4864636994676644 0.3136922875594778 0.05869778538725343 -0.9477086676380743 -0.3136922875594778 -0.05869778538725343 0.9477086676380743 0.8392381286762829 0.5433628842023259 0.02088395190715675 -0.8392381286762829 -0.5433628842023259 -0.02088395190715675 0.2680639167135812 0.3235094080333575 0.9074598610793101 -0.2680639167135812 -0.3235094080333575 -0.9074598610793101 0.2377993407915023 -0.9701661113154197 -0.047214298408886 -0.2377993407915023 0.9701661113154197 0.047214298408886 0.3107209325440185 -0.2832329611922849 0.9073211073116425 -0.3107209325440185 0.2832329611922849 -0.9073211073116425 -0.3635273000075052 0.851692513376756 -0.3774490227927974 0.3635273000075052 -0.851692513376756 0.3774490227927974 -0.7564678452367355 -0.3791042515503695 0.5329506220836264 0.7564678452367355 0.3791042515503695 -0.5329506220836264 0.3157961521326879 0.1009840434610352 -0.9434378693186151 -0.3157961521326879 -0.1009840434610352 0.9434378693186151 0.8201569852139139 0.5717187770962822 0.02191254253516401 -0.8201569852139139 -0.5717187770962822 -0.02191254253516401 0.2680197907289993 0.2977210426974458 0.9162573724193051 -0.2680197907289993 -0.2977210426974458 -0.9162573724193051 -0.06942815001823158 -0.8752597050279347 -0.4786441065546077 0.06942815001823158 0.8752597050279347 0.4786441065546077 0.2548514201025964 -0.3497432858298242 0.9015156059041062 -0.2548514201025964 0.3497432858298242 -0.9015156059041062 0.07986773118218563 0.905558053888146 0.41663624008735 -0.07986773118218563 -0.905558053888146 -0.41663624008735 -0.04084834986914429 0.9986125210912749 0.03323319173200137 0.04084834986914429 -0.9986125210912749 -0.03323319173200137 -0.1825339355083896 -0.5374471019079156 -0.8233055174348108 0.1825339355083896 0.5374471019079156 0.8233055174348108 -0.5778181017680943 -0.8161625429142692 -0.002223693510753986 0.5778181017680943 0.8161625429142692 0.002223693510753986 -0.5021307064919959 -0.7356131203733092 -0.4546846057790966 0.5021307064919959 0.7356131203733092 0.4546846057790966 0.2804724294980047 0.2496565340564341 -0.9268262141817177 -0.2804724294980047 -0.2496565340564341 0.9268262141817177 0.5959242985213953 0.8024852760343626 0.02985987575050859 -0.5959242985213953 -0.8024852760343626 -0.02985987575050859 0.1886829069587858 0.3827062994548023 0.9043973954955827 -0.1886829069587858 -0.3827062994548023 -0.9043973954955827 0.02641669813824826 -0.9989910161941067 -0.03631952123774438 -0.02641669813824826 0.9989910161941067 0.03631952123774438 0.2495535357316533 -0.3596536697663272 0.8990952511427498 -0.2495535357316533 0.3596536697663272 -0.8990952511427498 -0.1610502094959316 0.9195286051879728 -0.3585107728679537 0.1610502094959316 -0.9195286051879728 0.3585107728679537 -0.5735199496354257 -0.6719919437662193 0.468510079809898 0.5735199496354257 0.6719919437662193 -0.468510079809898 0.2657695805823602 0.2945433575572579 -0.9179383097768463 -0.2657695805823602 -0.2945433575572579 0.9179383097768463 0.5837519371941382 0.8113694555299569 0.03022056344796199 -0.5837519371941382 -0.8113694555299569 -0.03022056344796199 0.1992132108648616 0.3545177770346929 0.9135815466521268 -0.1992132108648616 -0.3545177770346929 -0.9135815466521268 -0.2862029651949788 -0.4777049899822951 -0.8305936462913842 0.2862029651949788 0.4777049899822951 0.8305936462913842 -0.259630524598282 -0.8356972204193286 -0.4839443630007778 0.259630524598282 0.8356972204193286 0.4839443630007778 0.171173079251343 -0.3974581639717709 0.9015136076797746 -0.171173079251343 0.3974581639717709 -0.9015136076797746 0.2759497417719133 0.8621233294073297 0.4249648278477118 -0.2759497417719133 -0.8621233294073297 -0.4249648278477118 0.1627627831762174 0.9861080321639755 0.03315456702210878 -0.1627627831762174 -0.9861080321639755 -0.03315456702210878 -0.3417068928269009 -0.9396636876767586 -0.01638760068771967 0.3417068928269009 0.9396636876767586 0.01638760068771967 -0.303785009541162 -0.8502631311565697 -0.429845641799358 0.303785009541162 0.8502631311565697 0.429845641799358 0.2017864719686995 0.41224349150772 -0.8884466913889372 -0.2017864719686995 -0.41224349150772 0.8884466913889372 0.3533781354598145 0.9348240537342529 0.03504114636828513 -0.3533781354598145 -0.9348240537342529 -0.03504114636828513 0.1058796997325965 0.403970480962094 0.9086238714098311 -0.1058796997325965 -0.403970480962094 -0.9086238714098311 0.03908976938190037 0.9310403854777442 -0.3628164694981797 -0.03908976938190037 -0.9310403854777442 0.3628164694981797 -0.1853003135714887 -0.982022781340319 -0.03598681312553404 0.1853003135714887 0.982022781340319 0.03598681312553404 0.1773610796877783 -0.407874054326998 0.8956460256255497 -0.1773610796877783 0.407874054326998 -0.8956460256255497 -0.3549193342244598 -0.840823918289625 0.4087143313192582 0.3549193342244598 0.840823918289625 -0.4087143313192582 0.1822055254325907 0.439830622007737 -0.8794033036361193 -0.1822055254325907 -0.439830622007737 0.8794033036361193 0.3477622130530788 0.9369285015570612 0.03502036753754913 -0.3477622130530788 -0.9369285015570612 -0.03502036753754913 0.1203037155984768 0.3835571539917935 0.9156478174685484 -0.1203037155984768 -0.3835571539917935 -0.9156478174685484 0.3817045715444365 0.9236517523580562 0.03419152567479299 -0.3817045715444365 -0.9236517523580562 -0.03419152567479299 -0.3808638825150635 -0.376271781229598 -0.8446077489852065 0.3808638825150635 0.376271781229598 0.8446077489852065 -0.4502588378367068 -0.7431572936698991 -0.4949588021392989 0.4502588378367068 0.7431572936698991 0.4949588021392989 0.0853863809066545 -0.4049841614163864 0.9103279601097232 -0.0853863809066545 0.4049841614163864 -0.9103279601097232 0.4839679574708264 0.7461911190259736 0.4571365551214228 -0.4839679574708264 -0.7461911190259736 -0.4571365551214228 -0.1272640715387168 -0.9915104379252862 -0.02666285019639791 0.1272640715387168 0.9915104379252862 0.02666285019639791 -0.1074964943735469 -0.902313169276024 -0.417463110045014 0.1074964943735469 0.902313169276024 0.417463110045014 0.1272910013469667 0.8805065804099733 -0.4566236555751592 -0.1272910013469667 -0.8805065804099733 0.4566236555751592 0.1306357975299962 0.9907866742362398 0.03572190587850656 -0.1306357975299962 -0.9907866742362398 -0.03572190587850656 0.02654281869850746 0.3881449395306496 0.9212160358419118 -0.02654281869850746 -0.3881449395306496 -0.9212160358419118 0.24608647452967 0.8881051220699402 -0.3882148106482991 -0.24608647452967 -0.8881051220699402 0.3882148106482991 -0.4100890657649051 -0.9114022377113701 -0.03424790847299099 0.4100890657649051 0.9114022377113701 0.03424790847299099 0.09586480764581787 -0.4238883735895807 0.900626773636344 -0.09586480764581787 0.4238883735895807 -0.900626773636344 -0.1414171634691401 -0.9177766694141802 0.3710622197898309 0.1414171634691401 0.9177766694141802 -0.3710622197898309 0.08231754639569727 0.532746798148681 -0.8422616402387804 -0.08231754639569727 -0.532746798148681 0.8422616402387804 0.03577593509908762 0.376879423980663 0.9255711654150584 -0.03577593509908762 -0.376879423980663 -0.9255711654150584 0.674701977245175 0.5584531599486828 0.4826047140722749 -0.674701977245175 -0.5584531599486828 -0.4826047140722749 0.6195348000722665 0.7846501978477477 0.02237629363650723 -0.6195348000722665 -0.7846501978477477 -0.02237629363650723 -0.4569983235447788 -0.2308211994285236 -0.8589959872849463 0.4569983235447788 0.2308211994285236 0.8589959872849463 -0.640204806147654 -0.5821627797804134 -0.5012228087625168 0.640204806147654 0.5821627797804134 0.5012228087625168 0.004104716059359423 -0.3751759950358459 0.9269445096956641 -0.004104716059359423 0.3751759950358459 -0.9269445096956641 0.07708188418723362 -0.9963873970472187 -0.03564460878750064 -0.07708188418723362 0.9963873970472187 0.03564460878750064 0.08908413621321892 -0.9018765858658367 -0.4227086946611419 -0.08908413621321892 0.9018765858658367 0.4227086946611419 -0.06621297605435472 0.8988127326352441 -0.4333030272855141 0.06621297605435472 -0.8988127326352441 0.4333030272855141 -0.08027734084685322 0.9960943927787809 0.03676287830447991 0.08027734084685322 -0.9960943927787809 -0.03676287830447991 -0.04438937087252709 0.3395012522623767 0.9395575998659259 0.04438937087252709 -0.3395012522623767 -0.9395575998659259 0.01160241142300691 -0.4044586493257089 0.9144826871159424 -0.01160241142300691 0.4044586493257089 -0.9144826871159424 0.460879652033973 0.7725758700024636 -0.4367109701289637 -0.460879652033973 -0.7725758700024636 0.4367109701289637 -0.652862642100236 -0.7569451882164892 -0.02836111044728642 0.652862642100236 0.7569451882164892 0.02836111044728642 0.06267172098493584 -0.9321992982217414 0.3564782234354281 -0.06267172098493584 0.9321992982217414 -0.3564782234354281 -0.02540906870737653 0.5793748184688801 -0.8146650839158238 0.02540906870737653 -0.5793748184688801 0.8146650839158238 -0.04650596936050504 0.3295030845688647 0.9430084369046989 0.04650596936050504 -0.3295030845688647 -0.9430084369046989 -0.06468376165068974 -0.3131914276879613 0.9474846387153163 0.06468376165068974 0.3131914276879613 -0.9474846387153163 0.8190040891150869 0.2677833677801808 0.5074685901147686 -0.8190040891150869 -0.2677833677801808 -0.5074685901147686 0.8580878426413556 0.5134904032115263 0.003586101053787535 -0.8580878426413556 -0.5134904032115263 -0.003586101053787535 -0.4994845441692579 -0.04703125899196081 -0.8650452305016542 0.4994845441692579 0.04703125899196081 0.8650452305016542 -0.8539216757964206 -0.5200262819562841 -0.01975949593881323 0.8539216757964206 0.5200262819562841 0.01975949593881323 0.2852085614390063 -0.9574829271713448 -0.04338802435333355 -0.2852085614390063 0.9574829271713448 0.04338802435333355 0.2923757519874668 -0.8450098693040526 -0.4477440568321495 -0.2923757519874668 0.8450098693040526 0.4477440568321495 -0.2599931803788589 0.8674723641581483 -0.4241405941175153 0.2599931803788589 -0.8674723641581483 0.4241405941175153 -0.2945837843567172 0.9549877330598857 0.03491165563555571 0.2945837843567172 -0.9549877330598857 -0.03491165563555571 -0.1034251404298343 0.26085776955375 0.9598210585262816 0.1034251404298343 -0.26085776955375 -0.9598210585262816 -0.8820069727444916 -0.4709006088845356 -0.01778529117757768 0.8820069727444916 0.4709006088845356 0.01778529117757768 -0.06788913571598272 -0.3406639787186241 0.9377308349709599 0.06788913571598272 0.3406639787186241 -0.9377308349709599 0.6640268346823709 0.5539656351546057 -0.5021856607764358 -0.6640268346823709 -0.5539656351546057 0.5021856607764358 -0.4965328229289699 -0.007212757334351909 -0.8679879791136649 0.4965328229289699 0.007212757334351909 0.8679879791136649 0.2614934444580715 -0.8933487023252803 0.3654439417464616 -0.2614934444580715 0.8933487023252803 -0.3654439417464616 -0.1382473958712453 0.583207717912289 -0.8004726199579592 0.1382473958712453 -0.583207717912289 0.8004726199579592 -0.114141413431016 0.2415027933932298 0.9636639136769817 0.114141413431016 -0.2415027933932298 -0.9636639136769817 -0.8822930021998877 0.02221209157725519 -0.4701762236192644 0.8822930021998877 -0.02221209157725519 0.4701762236192644 -0.1188250463877658 -0.2260188820695762 0.9668485265536502 0.1188250463877658 0.2260188820695762 -0.9668485265536502 0.8587563515222183 -0.08016604293207227 0.5060740403151119 -0.8587563515222183 0.08016604293207227 -0.5060740403151119 0.8050736187094051 0.1826511136534107 -0.564353647227793 -0.8050736187094051 -0.1826511136534107 0.564353647227793 -0.492612678330724 0.1528176287577358 -0.856726048097461 0.492612678330724 -0.1528176287577358 0.856726048097461 0.5098126035478107 -0.8590875699022332 -0.04538343864537134 -0.5098126035478107 0.8590875699022332 0.04538343864537134 0.5032434482250976 -0.7119749758641289 -0.4897322386384079 -0.5032434482250976 0.7119749758641289 0.4897322386384079 -0.4603753100173895 0.7788984058880536 -0.4258777374217175 0.4603753100173895 -0.7788984058880536 0.4258777374217175 -0.523498639095926 0.8514919385532362 0.03017703503601408 0.523498639095926 -0.8514919385532362 -0.03017703503601408 -0.1518535687965457 0.154520002132968 0.9762500000433191 0.1518535687965457 -0.154520002132968 -0.9762500000433191 -0.9986631704877207 -0.05164308480979089 -0.002205380407690168 0.9986631704877207 0.05164308480979089 0.002205380407690168 -0.1318326200590944 -0.234976129845822 0.9630194072245034 0.1318326200590944 0.234976129845822 -0.9630194072245034 0.8570540920898327 -0.04024487428179111 0.5136522494121047 -0.8570540920898327 0.04024487428179111 -0.5136522494121047 0.8020522544097641 0.2179622658222837 -0.556061715885774 -0.8020522544097641 -0.2179622658222837 0.556061715885774 0.4616480901245103 -0.79099306047077 0.4015109203639135 -0.4616480901245103 0.79099306047077 -0.4015109203639135 -0.25257374780988 0.5415648808669609 -0.8018191702178402 0.25257374780988 -0.5415648808669609 0.8018191702178402 -0.1597949684978955 0.1228200618629221 0.9794798621956169 0.1597949684978955 -0.1228200618629221 -0.9794798621956169 -0.4353175597640887 0.3341211481231659 -0.8359794737539293 0.4353175597640887 -0.3341211481231659 0.8359794737539293 -0.8085300793051226 0.3822941225048211 -0.4473592681024069 0.8085300793051226 -0.3822941225048211 0.4473592681024069 -0.1551321596947687 -0.1168575652958692 0.9809578596767339 0.1551321596947687 0.1168575652958692 -0.9809578596767339 0.7805990224724158 -0.4067995959297094 0.4745305626264066 -0.7805990224724158 0.4067995959297094 -0.4745305626264066 0.924486303246182 -0.3785777619601645 -0.04476553651461776 -0.924486303246182 0.3785777619601645 0.04476553651461776 0.7501967760572326 -0.6593607613057052 -0.04947912331170887 -0.7501967760572326 0.6593607613057052 0.04947912331170887 0.6978478847480852 -0.4622788558928253 -0.5470891967010899 -0.6978478847480852 0.4622788558928253 0.5470891967010899 -0.6649136060196553 0.6072581488774166 -0.434887844336804 0.6649136060196553 -0.6072581488774166 0.434887844336804 -0.760467105916375 0.6489733367243699 0.02287769743681768 0.760467105916375 -0.6489733367243699 -0.02287769743681768 -0.171953642694786 0.01941832872952423 0.9849136374694718 0.171953642694786 -0.01941832872952423 -0.9849136374694718 0.8041150128230653 -0.178476691563577 -0.5670494834854194 -0.8041150128230653 0.178476691563577 0.5670494834854194 -0.9246620643280678 0.3805553436602243 0.01333031148191201 0.9246620643280678 -0.3805553436602243 -0.01333031148191201 -0.1673212804961899 -0.09874576694697208 0.980944882551089 0.1673212804961899 0.09874576694697208 -0.980944882551089 0.6515713666903741 -0.6172349448124972 0.4409940782046305 -0.6515713666903741 0.6172349448124972 -0.4409940782046305 -0.3609566471516233 0.4491862863400353 -0.8172771739386255 0.3609566471516233 -0.4491862863400353 0.8172771739386255 -0.1680958210730742 -0.01327446757619972 0.9856812788362867 0.1680958210730742 0.01327446757619972 -0.9856812788362867 0.7077234985869574 -0.7046654485268453 -0.05073514758327681 -0.7077234985869574 0.7046654485268453 0.05073514758327681 -0.342296253152495 0.4701368124202711 -0.8135137692043508 0.342296253152495 -0.4701368124202711 0.8135137692043508 -0.6285692651519454 0.6463050638907462 -0.4326551089442051 0.6285692651519454 -0.6463050638907462 0.4326551089442051 -0.1684940725506878 0.01077890427230811 0.9856437301266476 0.1684940725506878 -0.01077890427230811 -0.9856437301266476 0.6208745200734542 -0.6569329412250992 0.4277311551160358 -0.6208745200734542 0.6569329412250992 -0.4277311551160358 0.8016952897873982 -0.3477265981354733 0.4861798795526515 -0.8016952897873982 0.3477265981354733 -0.4861798795526515 0.8149503753719954 -0.1081215601672776 -0.569355437234104 -0.8149503753719954 0.1081215601672776 0.569355437234104 -0.8324307492478874 0.3218681311364857 -0.4510653543172061 0.8324307492478874 -0.3218681311364857 0.4510653543172061 -0.951308818898382 0.308069603019877 0.01022989644818191 0.951308818898382 -0.308069603019877 -0.01022989644818191 -0.1634302060126187 -0.1247405643740396 0.9786369905957566 0.1634302060126187 0.1247405643740396 -0.9786369905957566 0.6678646842738194 -0.5214257130287312 -0.5311044994088369 -0.6678646842738194 0.5214257130287312 0.5311044994088369 -0.718278485553605 0.6953136880547992 0.02479702390314172 0.718278485553605 -0.6953136880547992 -0.02479702390314172 -0.1694016656235607 0.04483516685173435 0.9845267307175263 0.1694016656235607 -0.04483516685173435 -0.9845267307175263 0.8048888050458055 -0.3506580527077226 0.4787409963468383 -0.8048888050458055 0.3506580527077226 -0.4787409963468383 0.8033788736156395 -0.1702434220385553 -0.5706133215064897 -0.8033788736156395 0.1702434220385553 0.5706133215064897 -0.4492202155089497 0.3040881169407794 -0.840078338676521 0.4492202155089497 -0.3040881169407794 0.840078338676521 -0.1500286448931143 -0.1381858466799649 0.9789770566713384 0.1500286448931143 0.1381858466799649 -0.9789770566713384 0.4259236542733373 -0.8178625688033844 0.3868977374976181 -0.4259236542733373 0.8178625688033844 -0.3868977374976181 0.4675574684184699 -0.8826942109090509 -0.04733860743367385 -0.4675574684184699 0.8826942109090509 0.04733860743367385 -0.2320262889549334 0.5524684967797857 -0.8005887591639579 0.2320262889549334 -0.5524684967797857 0.8005887591639579 -0.4235561613148924 0.8000764739943699 -0.4248268046780114 0.4235561613148924 -0.8000764739943699 0.4248268046780114 -0.1520170731640112 0.1435797585607158 0.9778934821330462 0.1520170731640112 -0.1435797585607158 -0.9778934821330462 0.8563174279290809 0.03077461079569902 0.5155321386250295 -0.8563174279290809 -0.03077461079569902 -0.5155321386250295 0.785470581674461 0.2863404754438074 -0.5486757671399369 -0.785470581674461 -0.2863404754438074 0.5486757671399369 -0.8789037696885808 -0.04562595251895923 -0.4748120007791926 0.8789037696885808 0.04562595251895923 0.4748120007791926 -0.9909627935175657 -0.1340079579351373 -0.005882947723453319 0.9909627935175657 0.1340079579351373 0.005882947723453319 -0.1214837412088746 -0.2566053289175989 0.9588510863491715 0.1214837412088746 0.2566053289175989 -0.9588510863491715 -0.1424467051888185 0.1742469875797838 0.9743443557080939 0.1424467051888185 -0.1742469875797838 -0.9743443557080939 0.4649641777172875 -0.7433751702324944 -0.4808343474851776 -0.4649641777172875 0.7433751702324944 0.4808343474851776 -0.4806947298180828 0.8763132906175912 0.03174261192922667 0.4806947298180828 -0.8763132906175912 -0.03174261192922667 0.8608037503856283 -0.01643322137169287 0.5086716549576807 -0.8608037503856283 0.01643322137169287 -0.5086716549576807 0.7900847555419815 0.2562248601408235 -0.5568796100648529 -0.7900847555419815 -0.2562248601408235 0.5568796100648529 -0.4979955375276722 0.116898192729161 -0.859264369760076 0.4979955375276722 -0.116898192729161 0.859264369760076 -0.1096791654130207 -0.2434487385707459 0.9636924781083518 0.1096791654130207 0.2434487385707459 -0.9636924781083518 -0.1039480623327925 0.2597358875639912 0.9600687834986634 0.1039480623327925 -0.2597358875639912 -0.9600687834986634 0.2255224611613599 -0.904207791908424 0.3626953109206335 -0.2255224611613599 0.904207791908424 -0.3626953109206335 0.2462915013868555 -0.9683106333600775 -0.04141272348462648 -0.2462915013868555 0.9683106333600775 0.04141272348462648 -0.1176960056074974 0.5854780210354769 -0.8020992065501759 0.1176960056074974 -0.5854780210354769 0.8020992065501759 -0.224540275744401 0.8769444447397742 -0.4249118795805522 0.224540275744401 -0.8769444447397742 0.4249118795805522 0.8181774061953669 0.5749098000536865 0.008028312005125892 -0.8181774061953669 -0.5749098000536865 -0.008028312005125892 0.6305000530243112 0.6022946171061921 -0.4896027750546829 -0.6305000530243112 -0.6022946171061921 0.4896027750546829 -0.4949950778106962 -0.03895226334673744 -0.8680222313531776 0.4949950778106962 0.03895226334673744 0.8680222313531776 -0.8451084478559042 -0.5342109596224031 -0.02025739326505952 0.8451084478559042 0.5342109596224031 0.02025739326505952 -0.0538163228126221 -0.3553819643204697 0.9331706504357347 0.0538163228126221 0.3553819643204697 -0.9331706504357347 -0.2549154754785329 0.9663207723906242 0.03524578283909989 0.2549154754785329 -0.9663207723906242 -0.03524578283909989 -0.09422842523274229 0.2772615555168482 0.95616266069667 0.09422842523274229 -0.2772615555168482 -0.95616266069667 0.2548985531969059 -0.8600368136205863 -0.4419993289536457 -0.2548985531969059 0.8600368136205863 0.4419993289536457 0.7992879325211242 0.3271162399258568 0.5041168183098793 -0.7992879325211242 -0.3271162399258568 -0.5041168183098793 -0.4949187544227878 -0.08219062784281732 -0.8650434250460493 0.4949187544227878 0.08219062784281732 0.8650434250460493 -0.8143993150854482 -0.5798944858367074 -0.02182065270639956 0.8143993150854482 0.5798944858367074 0.02182065270639956 -0.05282635912663602 -0.3265000265018341 0.9437198252001096 0.05282635912663602 0.3265000265018341 -0.9437198252001096 -0.03140988032332349 0.8992719256145415 -0.4362607284865198 0.03140988032332349 -0.8992719256145415 0.4362607284865198 -0.03222483287965563 0.3414911777191863 0.9393323882874697 0.03222483287965563 -0.3414911777191863 -0.9393323882874697 0.02592929075766842 -0.9334593989305918 0.3577446329841197 -0.02592929075766842 0.9334593989305918 -0.3577446329841197 0.04047920242278022 -0.998569081342663 -0.03494601490421647 -0.04047920242278022 0.998569081342663 0.03494601490421647 -0.005328154191109313 0.5750362599656316 -0.818110573515374 0.005328154191109313 -0.5750362599656316 0.818110573515374 0.5749242631461603 0.8178528227190813 0.02405934363766486 -0.5749242631461603 -0.8178528227190813 -0.02405934363766486 0.4214741465651992 0.8001850432365848 -0.4266889269217117 -0.4214741465651992 -0.8001850432365848 0.4266889269217117 -0.607500139413018 -0.6169766682208152 -0.5002832912303845 0.607500139413018 0.6169766682208152 0.5002832912303845 -0.6082853638018145 -0.7931728257612001 -0.02942421891039525 0.6082853638018145 0.7931728257612001 0.02942421891039525 0.02732148043861099 -0.411197043048017 0.9111369427782027 -0.02732148043861099 0.411197043048017 -0.9111369427782027 -0.04233230297869504 0.99843938351606 0.03642490313768718 0.04233230297869504 -0.99843938351606 -0.03642490313768718 -0.03222572048387662 0.3507365514660342 0.9359195341507778 0.03222572048387662 -0.3507365514660342 -0.9359195341507778 0.0535986355584465 -0.9051101330327424 -0.4217852929485856 -0.0535986355584465 0.9051101330327424 0.4217852929485856 0.6412311608394218 0.6027462110192511 0.4748890433253478 -0.6412311608394218 -0.6027462110192511 -0.4748890433253478 -0.4461736197689663 -0.2574888449979427 -0.8571047752310586 0.4461736197689663 0.2574888449979427 0.8571047752310586 0.01845899878033352 -0.3828914709383621 0.9236088927932022 -0.01845899878033352 0.3828914709383621 -0.9236088927932022 0.1011375575336253 0.5194380772539559 -0.8485017845325052 -0.1011375575336253 -0.5194380772539559 0.8485017845325052 0.1630062188243885 0.8718097571228917 -0.4619271804190572 -0.1630062188243885 -0.8718097571228917 0.4619271804190572 0.05107088372148411 0.3804430891390565 0.9233931019680829 -0.05107088372148411 -0.3804430891390565 -0.9233931019680829 -0.1789110234207843 -0.9095031086441852 0.375226519671906 0.1789110234207843 0.9095031086441852 -0.375226519671906 -0.164464998711951 -0.9860462985513705 -0.02576744674622084 0.164464998711951 0.9860462985513705 0.02576744674622084 0.3395208403843986 0.9401053719795921 0.03045469618604664 -0.3395208403843986 -0.9401053719795921 -0.03045469618604664 0.2081649944077018 0.9007460282722055 -0.3812137558576403 -0.2081649944077018 -0.9007460282722055 0.3812137558576403 -0.4170652272044756 -0.7630490978978199 -0.4937739062103245 0.4170652272044756 0.7630490978978199 0.4937739062103245 -0.3672005745438822 -0.9296732929524478 -0.02951790008782431 0.3672005745438822 0.9296732929524478 0.02951790008782431 0.1118377840482386 -0.4246172504853856 0.8984389242733257 -0.1118377840482386 0.4246172504853856 -0.8984389242733257 -0.142990897232966 -0.896970561440987 -0.418326923848743 0.142990897232966 0.896970561440987 0.418326923848743 0.1697237926371042 0.9848328332159376 0.03602949947954706 -0.1697237926371042 -0.9848328332159376 -0.03602949947954706 0.04030372198163225 0.3929482365801176 0.9186769254547559 -0.04030372198163225 -0.3929482365801176 -0.9186769254547559 0.4425223119009562 0.7807305174758044 0.4411732795079453 -0.4425223119009562 -0.7807305174758044 -0.4411732795079453 -0.3615543092865395 -0.3924585997017193 -0.8457273372408504 0.3615543092865395 0.3924585997017193 0.8457273372408504 0.1003911431603658 -0.4059716081359349 0.9083549260957843 -0.1003911431603658 0.4059716081359349 -0.9083549260957843 -0.390456001742171 -0.9205063126905769 -0.01456842477125177 0.390456001742171 0.9205063126905769 0.01456842477125177 0.2028030013390004 0.4137140405601716 -0.8875312024324948 -0.2028030013390004 -0.4137140405601716 0.8875312024324948 0.3966129038026112 0.9173788643791272 0.03337998992995159 -0.3966129038026112 -0.9173788643791272 -0.03337998992995159 0.1368380461281864 0.3784294566205597 0.9154597181163616 -0.1368380461281864 -0.3784294566205597 -0.9154597181163616 -0.4037532977559437 -0.8135903237631738 0.4183946218943716 0.4037532977559437 0.8135903237631738 -0.4183946218943716 0.21303956080358 0.9762374115492939 -0.03968200882203873 -0.21303956080358 -0.9762374115492939 0.03968200882203873 0.1082255873183704 0.9240476898198827 -0.366637544706119 -0.1082255873183704 -0.9240476898198827 0.366637544706119 -0.3281825396220066 -0.7677697899706376 -0.5502960751229226 0.3281825396220066 0.7677697899706376 0.5502960751229226 -0.232870310831776 -0.9718855641032611 -0.03478316576733741 0.232870310831776 0.9718855641032611 0.03478316576733741 0.147399415242306 -0.3971111236085312 0.9058565934476583 -0.147399415242306 0.3971111236085312 -0.9058565934476583 -0.3468619440926344 -0.8319654750379002 -0.4330360724988613 0.3468619440926344 0.8319654750379002 0.4330360724988613 0.2233818142720267 0.3809947250783958 -0.8971864825748187 -0.2233818142720267 -0.3809947250783958 0.8971864825748187 0.4038637965610512 0.9142113244796445 0.03334198585069928 -0.4038637965610512 -0.9142113244796445 -0.03334198585069928 0.1223556349422535 0.4012342646726683 0.9077665798268084 -0.1223556349422535 -0.4012342646726683 -0.9077665798268084 0.3151262054911223 0.8509720714544223 0.4201690233909879 -0.3151262054911223 -0.8509720714544223 -0.4201690233909879 -0.3363285040587479 -0.460545695550053 -0.8214504243519037 0.3363285040587479 0.460545695550053 0.8214504243519037 0.1477922431507489 -0.3878572766046277 0.9097934852752637 -0.1477922431507489 0.3878572766046277 -0.9097934852752637 -0.6420223712039709 -0.5915254973598801 0.4877549188340153 0.6420223712039709 0.5915254973598801 -0.4877549188340153 -0.6565371471631942 -0.754292366419499 0.001414339452328107 0.6565371471631942 0.754292366419499 -0.001414339452328107 0.2874131142788096 0.2414302979496353 -0.926879233218927 -0.2874131142788096 -0.2414302979496353 0.926879233218927 0.6582517385598384 0.7522703007461163 0.0281787738962858 -0.6582517385598384 -0.7522703007461163 -0.0281787738962858 0.2201302461169165 0.3383242007378086 0.9149204391309819 -0.2201302461169165 -0.3383242007378086 -0.9149204391309819 0.211674352703625 0.3682913629543855 0.90529301354904 -0.211674352703625 -0.3682913629543855 -0.90529301354904 -0.5633788388508121 -0.6828498403304095 -0.4651025472902132 0.5633788388508121 0.6828498403304095 0.4651025472902132 0.2983727723315879 0.1911953128740891 -0.9351032248185981 -0.2983727723315879 -0.1911953128740891 0.9351032248185981 0.674927701277569 0.7373622019771242 0.02774132555634514 -0.674927701277569 -0.7373622019771242 -0.02774132555634514 0.2878281304533213 0.272313808334655 0.9181504000489368 -0.2878281304533213 -0.272313808334655 -0.9181504000489368 -0.7965447710859634 -0.2533387290974468 0.548940721749535 0.7965447710859634 0.2533387290974468 -0.548940721749535 -0.8952334756083304 -0.4451678348495047 0.01956075064083848 0.8952334756083304 0.4451678348495047 -0.01956075064083848 0.323305146806377 0.02811834809783417 -0.9458769161729004 -0.323305146806377 -0.02811834809783417 0.9458769161729004 0.8886035632950323 0.4583424303461484 0.01749067876778379 -0.8886035632950323 -0.4583424303461484 -0.01749067876778379 0.906754285544305 0.4213211032482745 0.01688767611880801 -0.906754285544305 -0.4213211032482745 -0.01688767611880801 0.2923095969905519 0.2931838782058966 0.910273757211187 -0.2923095969905519 -0.2931838782058966 -0.910273757211187 -0.7420274019922476 -0.4512271064426712 -0.4957715533428774 0.7420274019922476 0.4512271064426712 0.4957715533428774 0.3148774672198147 -0.004859640941630026 -0.9491198894381852 -0.3148774672198147 0.004859640941630026 0.9491198894381852 0.9986401715628105 0.05205829125818463 0.002782454362333355 -0.9986401715628105 -0.05205829125818463 -0.002782454362333355 0.3382231696957797 0.1884624621425752 0.9220016203044864 -0.3382231696957797 -0.1884624621425752 -0.9220016203044864 -0.8102135096867793 0.1385468360586977 0.5695251029929724 0.8102135096867793 -0.1385468360586977 -0.5695251029929724 -0.8502737882648265 -0.1027684743468968 -0.5162103502160649 0.8502737882648265 0.1027684743468968 0.5162103502160649 0.303877800446322 -0.1820341730033242 -0.935158725701098 -0.303877800446322 0.1820341730033242 0.935158725701098 0.2901892237089887 -0.1816512751772797 -0.93957066188214 -0.2901892237089887 0.1816512751772797 0.93957066188214 0.9998125299270766 -0.01936037700034898 0.0002842590771083226 -0.9998125299270766 0.01936037700034898 -0.0002842590771083226 0.3506254054122222 0.1891087030700747 0.9172239222254668 -0.3506254054122222 -0.1891087030700747 -0.9172239222254668 -0.8135822918348952 0.08558692183375054 0.5751162780027209 0.8135822918348952 -0.08558692183375054 -0.5751162780027209 -0.8477088503314019 -0.1457273455941529 -0.5100521991089688 0.8477088503314019 0.1457273455941529 0.5100521991089688 0.233260413971422 -0.3605413853497441 -0.9031054693245791 -0.233260413971422 0.3605413853497441 0.9031054693245791 0.9227544269434004 -0.3850370367752869 -0.01645441787676223 -0.9227544269434004 0.3850370367752869 0.01645441787676223 0.3711224996238446 0.08354633718180803 0.9248178738629855 -0.3711224996238446 -0.08354633718180803 -0.9248178738629855 -0.6915447098790261 0.481439542933741 0.5384996571383163 0.6915447098790261 -0.481439542933741 -0.5384996571383163 -0.8981601842993114 0.4388146585051151 0.02738574118891374 0.8981601842993114 -0.4388146585051151 -0.02738574118891374 -0.8429287075021802 0.2038949616908318 -0.4978936017522199 0.8429287075021802 -0.2038949616908318 0.4978936017522199 0.2290063307694923 -0.3335946999735647 -0.9144783631213158 -0.2290063307694923 0.3335946999735647 0.9144783631213158 0.8927780707210031 -0.4501282400025586 -0.01821768349386265 -0.8927780707210031 0.4501282400025586 0.01821768349386265 0.3806823163284625 0.05861925864707265 0.9228460091209498 -0.3806823163284625 -0.05861925864707265 -0.9228460091209498 -0.6731376809319953 0.739009762831531 0.02739038059574327 0.6731376809319953 -0.739009762831531 -0.02739038059574327 0.1328407661518205 -0.4811534645646102 -0.8665129395373562 -0.1328407661518205 0.4811534645646102 0.8665129395373562 0.51619967388126 -0.6859437923518563 -0.5128537904889018 -0.51619967388126 0.6859437923518563 0.5128537904889018 0.3820894849711712 -0.03801541506118901 0.9233430855820555 -0.3820894849711712 0.03801541506118901 -0.9233430855820555 -0.4982123819319361 0.7158544086919615 0.4892206946215469 0.4982123819319361 -0.7158544086919615 -0.4892206946215469 -0.7240796828342754 0.517304253506521 -0.4561851841200856 0.7240796828342754 -0.517304253506521 0.4561851841200856 0.6700291588090248 -0.7418444177367702 -0.02697751320012681 -0.6700291588090248 0.7418444177367702 0.02697751320012681 0.3799147067183139 -0.07529237210084216 0.9219522082638373 -0.3799147067183139 0.07529237210084216 -0.9219522082638373 -0.2919936616748643 0.8457083057970546 0.446673441171042 0.2919936616748643 -0.8457083057970546 -0.446673441171042 -0.4366467943183944 0.8991718161908844 0.0288031591922864 0.4366467943183944 -0.8991718161908844 -0.0288031591922864 0.02176310891147589 -0.5441273983997713 -0.838720299862358 -0.02176310891147589 0.5441273983997713 0.838720299862358 0.2991033077776762 -0.8171348416011702 -0.4927756709882125 -0.2991033077776762 0.8171348416011702 0.4927756709882125 0.3640512938492289 -0.1638710919855381 0.9168494536499271 -0.3640512938492289 0.1638710919855381 -0.9168494536499271 0.3516823252399595 -0.1960017035970046 0.9153703481656413 -0.3516823252399595 0.1960017035970046 -0.9153703481656413 -0.5385220158761696 0.7373253777364415 -0.4078545399557058 0.5385220158761696 -0.7373253777364415 0.4078545399557058 0.4313161246761184 -0.9015999330060595 -0.03292356903259632 -0.4313161246761184 0.9015999330060595 0.03292356903259632 0.3161408569706932 -0.276318589201155 0.9075808480877718 -0.3161408569706932 0.276318589201155 -0.9075808480877718 -0.09031941409519692 0.9018366056574806 0.4225318214450767 0.09031941409519692 -0.9018366056574806 -0.4225318214450767 -0.2181477144127747 0.9754001696778496 0.03171882231270052 0.2181477144127747 -0.9754001696778496 -0.03171882231270052 -0.0896782978087952 -0.5583215418063012 -0.8247635169290356 0.0896782978087952 0.5583215418063012 0.8247635169290356 0.0960842676760772 -0.8714986070373602 -0.4808929105706309 -0.0960842676760772 0.8714986070373602 0.4808929105706309 0.2086396917803162 -0.9773332616215297 -0.03590507961330022 -0.2086396917803162 0.9773332616215297 0.03590507961330022 0.303755031098276 -0.2967980573531617 0.9053418107178497 -0.303755031098276 0.2967980573531617 -0.9053418107178497 -0.3354200464215088 0.8652481196877145 -0.3726111697674499 0.3354200464215088 -0.8652481196877145 0.3726111697674499 -0.09634588207538014 -0.872989311001495 -0.4781287837855525 0.09634588207538014 0.872989311001495 0.4781287837855525 0.2454546829535896 -0.3778153799396332 0.8927527862164438 -0.2454546829535896 0.3778153799396332 -0.8927527862164438 0.1068701902825446 0.902645124026476 0.4169059156454855 -0.1068701902825446 -0.902645124026476 -0.4169059156454855 -0.01345127660992325 0.9993635619425534 0.03303837494574641 0.01345127660992325 -0.9993635619425534 -0.03303837494574641 -0.197404561831315 -0.5321700194341986 -0.823302198092287 0.197404561831315 0.5321700194341986 0.823302198092287 -0.003023102013275489 -0.9993161130292113 -0.03685331863490642 0.003023102013275489 0.9993161130292113 0.03685331863490642 0.24107826661194 -0.3871069096442774 0.8899603979239974 -0.24107826661194 0.3871069096442774 -0.8899603979239974 -0.1343592170136983 0.9238922681259719 -0.3582885397281262 0.1343592170136983 -0.9238922681259719 0.3582885397281262 -0.2993726317215964 -0.4646029928355155 -0.8333787172854652 0.2993726317215964 0.4646029928355155 0.8333787172854652 -0.2850223760582144 -0.8250074135917964 -0.4879805453752275 0.2850223760582144 0.8250074135917964 0.4879805453752275 0.1571476355888667 -0.4017430088752111 0.9021680416910815 -0.1571476355888667 0.4017430088752111 -0.9021680416910815 0.3048783085344589 0.8512515442137769 0.4271065738885638 -0.3048783085344589 -0.8512515442137769 -0.4271065738885638 0.1916387936300435 0.9809179758786124 0.03277952675417279 -0.1916387936300435 -0.9809179758786124 -0.03277952675417279 0.06722148092182911 0.9289434869574044 -0.3640676730253523 -0.06722148092182911 -0.9289434869574044 0.3640676730253523 -0.2140869666060625 -0.9760638362636109 -0.0382904461684297 0.2140869666060625 0.9760638362636109 0.0382904461684297 0.1633948649649251 -0.4107173382797202 0.8970024448904896 -0.1633948649649251 0.4107173382797202 -0.8970024448904896 0.4114800596926324 0.9109495221915634 0.02924258015822321 -0.4114800596926324 -0.9109495221915634 -0.02924258015822321 -0.3926793406448987 -0.3585905939007256 -0.8468858963264251 0.3926793406448987 0.3585905939007256 0.8468858963264251 -0.4758287826506283 -0.7262057498268171 -0.496197721195585 0.4758287826506283 0.7262057498268171 0.496197721195585 0.07403728528170142 -0.4018813093119968 0.9126937567518423 -0.07403728528170142 0.4018813093119968 -0.9126937567518423 0.5074483663098665 0.7336641542103471 0.4519215245551642 -0.5074483663098665 -0.7336641542103471 -0.4519215245551642 0.2748061558194914 0.877426979723126 -0.3931964801186126 -0.2748061558194914 -0.877426979723126 0.3931964801186126 -0.4416162494800723 -0.8965715608945203 -0.03368270164815051 0.4416162494800723 0.8965715608945203 0.03368270164815051 0.08549772772187718 -0.4236445040367092 0.9017846044116558 -0.08549772772187718 0.4236445040367092 -0.9017846044116558 0.6983955618814588 0.5261174618390851 0.485225777852208 -0.6983955618814588 -0.5261174618390851 -0.485225777852208 0.6529258623062569 0.7571641840513471 0.01975390395564597 -0.6529258623062569 -0.7571641840513471 -0.01975390395564597 -0.4651454729636889 -0.2078396388980428 -0.8604896126532367 0.4651454729636889 0.2078396388980428 0.8604896126532367 -0.6654104129941675 -0.5535469302112676 -0.5008141155484873 0.6654104129941675 0.5535469302112676 0.5008141155484873 -0.00537325195436097 -0.3680234573290827 0.9298009803280397 0.00537325195436097 0.3680234573290827 -0.9298009803280397 0.0008797982458484917 -0.398149274166836 0.9173202175006656 -0.0008797982458484917 0.398149274166836 -0.9173202175006656 0.4894395591614004 0.7496389984441606 -0.4455224909468991 -0.4894395591614004 -0.7496389984441606 0.4455224909468991 -0.6864868232200563 -0.7266462734301518 -0.0268520921961055 0.6864868232200563 0.7266462734301518 0.0268520921961055 -0.07261225421506358 -0.3044534169131987 0.9497555356341361 0.07261225421506358 0.3044534169131987 -0.9497555356341361 0.8316088337424303 0.222704652903695 0.5087527741610846 -0.8316088337424303 -0.222704652903695 -0.5087527741610846 0.8847442103228584 0.4660768166585395 -0.0002885716964004705 -0.8847442103228584 -0.4660768166585395 0.0002885716964004705 -0.5015710315013272 -0.02021660815949402 -0.8648802166272623 0.5015710315013272 0.02021660815949402 0.8648802166272623 -0.8822534233508295 -0.4704253684624868 -0.01813476475380031 0.8822534233508295 0.4704253684624868 0.01813476475380031 -0.9073069238785885 -0.4200745834998159 -0.01820687176395342 0.9073069238785885 0.4200745834998159 0.01820687176395342 -0.07684133681273105 -0.3297787419806832 0.9409258155106971 0.07684133681273105 0.3297787419806832 -0.9409258155106971 0.6901815481734175 0.5152408968621404 -0.508110469053376 -0.6901815481734175 -0.5152408968621404 0.508110469053376 -0.4966996466665293 0.01610676029339463 -0.8677730309673124 0.4966996466665293 -0.01610676029339463 0.8677730309673124 -0.881134842542127 0.07682235708589806 -0.4665830201690023 0.881134842542127 -0.07682235708589806 0.4665830201690023 -0.1213144463156395 -0.2131759170429181 0.9694528526483588 0.1213144463156395 0.2131759170429181 -0.9694528526483588 0.8530908677975752 -0.1294152237489294 0.5054578826592723 -0.8530908677975752 0.1294152237489294 -0.5054578826592723 0.8141298479637934 0.12262180609209 -0.5675883044295085 -0.8141298479637934 -0.12262180609209 0.5675883044295085 -0.4880811785711273 0.1805381361022135 -0.8539219780151801 0.4880811785711273 -0.1805381361022135 0.8539219780151801 -0.9999912747003552 0.003552551677254218 -0.002197703287318499 0.9999912747003552 -0.003552551677254218 0.002197703287318499 -0.1346111642919426 -0.2158289805333895 0.9671078976049597 0.1346111642919426 0.2158289805333895 -0.9671078976049597 0.8525449411428244 -0.09184820878287534 0.514520193845835 -0.8525449411428244 0.09184820878287534 -0.514520193845835 0.8136449843716227 0.1551782125971196 -0.56026918685759 -0.8136449843716227 -0.1551782125971196 0.56026918685759 -0.4241940190863471 0.3566789118496541 -0.8323698625089201 0.4241940190863471 -0.3566789118496541 0.8323698625089201 -0.7885453448267734 0.4251894335191658 -0.4443086593525678 0.7885453448267734 -0.4251894335191658 0.4443086593525678 -0.1578722346533842 -0.1001823560468188 0.982364419684699 0.1578722346533842 0.1001823560468188 -0.982364419684699 0.7547381467760184 -0.4464206061731968 0.4807067423960857 -0.7547381467760184 0.4464206061731968 -0.4807067423960857 0.9002415259777669 -0.4324451958902896 -0.05056033481525889 -0.9002415259777669 0.4324451958902896 0.05056033481525889 0.7844143326772589 -0.2204183251089915 -0.5797498742101094 -0.7844143326772589 0.2204183251089915 0.5797498742101094 -0.9025710500460156 0.4302776851145242 0.01505368098900894 0.9025710500460156 -0.4302776851145242 -0.01505368098900894 -0.169447414312871 -0.07903013995124253 0.982365416106435 0.169447414312871 0.07903013995124253 -0.982365416106435 0.6778264394276815 -0.7334119439036688 -0.05155810850131369 -0.6778264394276815 0.7334119439036688 0.05155810850131369 -0.3277013090801252 0.4836682562942458 -0.8115891016274529 0.3277013090801252 -0.4836682562942458 0.8115891016274529 -0.600818604466476 0.6729818318019348 -0.4314075319132346 0.600818604466476 -0.6729818318019348 0.4314075319132346 -0.168109825006838 0.02892536758904001 0.9853438028657862 0.168109825006838 -0.02892536758904001 -0.9853438028657862 0.5960519533842276 -0.6811383094854105 0.4251736965267298 -0.5960519533842276 0.6811383094854105 -0.4251736965267298 0.6424578954778484 -0.5591256064253487 -0.5240480977712446 -0.6424578954778484 0.5591256064253487 0.5240480977712446 -0.686028380622848 0.7271052101901491 0.02613569004889806 0.686028380622848 -0.7271052101901491 -0.02613569004889806 -0.1672295516339414 0.06358642472089836 0.9838653584975562 0.1672295516339414 -0.06358642472089836 -0.9838653584975562 0.39920329049152 -0.8338682103869164 0.3811830801161882 -0.39920329049152 0.8338682103869164 -0.3811830801161882 0.4366538340830543 -0.8983614567022195 -0.04775062609469216 -0.4366538340830543 0.8983614567022195 0.04775062609469216 -0.2165166026734769 0.5604185162959754 -0.7994070598633424 0.2165166026734769 -0.5604185162959754 0.7994070598633424 -0.3958679694135108 0.8145627101543547 -0.4240001674745147 0.3958679694135108 -0.8145627101543547 0.4240001674745147 -0.1469998294979731 0.1606429776852407 0.9760045511410211 0.1469998294979731 -0.1606429776852407 -0.9760045511410211 -0.136768733660074 0.1896331863226294 0.972282658560846 0.136768733660074 -0.1896331863226294 -0.972282658560846 0.4363462461146563 -0.7642185180490224 -0.4749442179589132 -0.4363462461146563 0.7642185180490224 0.4749442179589132 -0.4488771851408228 0.8930136607671422 0.03218500183811045 0.4488771851408228 -0.8930136607671422 -0.03218500183811045 -0.09539235174078843 0.2729278092741205 0.9572934294949438 0.09539235174078843 -0.2729278092741205 -0.9572934294949438 0.1991290195076902 -0.9116206733236647 0.3595766699312042 -0.1991290195076902 0.9116206733236647 -0.3595766699312042 0.2176395385321581 -0.975181896965417 -0.04066078083903718 -0.2176395385321581 0.975181896965417 0.04066078083903718 -0.1020037401273291 0.5870539910837483 -0.803095790396562 0.1020037401273291 -0.5870539910837483 0.803095790396562 -0.1981029154277355 0.8828490192222377 -0.4258319435615001 0.1981029154277355 -0.8828490192222377 0.4258319435615001 -0.2257163976554845 0.9735640404422717 0.03500238544942357 0.2257163976554845 -0.9735640404422717 -0.03500238544942357 -0.08666637759563388 0.2887481063349514 0.9534744202559556 0.08666637759563388 -0.2887481063349514 -0.9534744202559556 0.2265757343370749 -0.8703830190978558 -0.4371462417495055 -0.2265757343370749 0.8703830190978558 0.4371462417495055 -0.1011016926685244 0.89401217142831 -0.4364867524651776 0.1011016926685244 -0.89401217142831 0.4364867524651776 -0.06443845907698306 0.3425606426245449 0.9372832502058504 0.06443845907698306 -0.3425606426245449 -0.9372832502058504 0.09417392595617523 -0.9293129126988353 0.3570837184207755 -0.09417392595617523 0.9293129126988353 -0.3570837184207755 0.1141220961146377 -0.9931867733030305 -0.02358347969057617 -0.1141220961146377 0.9931867733030305 0.02358347969057617 -0.05548773687691596 0.5705667890661852 -0.8193745482201541 0.05548773687691596 -0.5705667890661852 0.8193745482201541 -0.1183653374329226 0.9923372552916334 0.03544599631351985 0.1183653374329226 -0.9923372552916334 -0.03544599631351985 -0.0684555174915373 0.3516846842717872 0.9336121919585343 0.0684555174915373 -0.3516846842717872 -0.9336121919585343 0.1174881387169572 -0.9006135153905983 -0.4184397604872339 -0.1174881387169572 0.9006135153905983 0.4184397604872339</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1700\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1698\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1701\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"5340\">11.7511075700318 0.3583314504512882 11.764113826938 0.2966073494687605 11.64874163027524 0.2666148420055631 11.67922688523208 0.2294239948543417 11.80501203783262 0.2597329687951067 11.70185613652651 0.1685657368748619 12.4858343118004 -1.543659787895465 12.35620128229077 -1.642348030436472 12.37014213645811 -1.572879572693973 9.637226671642088 1.364680350481991 9.61090967342226 1.423722268179847 9.757669766177051 1.458600648579603 -11.25074513113561 3.231416896444896 -11.22220681876862 3.285138753740969 -11.11921110687334 3.22075585534248 12.28376747293778 -1.999560740149355 12.28677901128384 -2.062924884329317 12.18069024183013 -2.088268714019175 11.28139424357001 0.5316017122378138 11.28710312913186 0.4614164684313329 11.17025632694921 0.4372445316544859 12.48109906978448 -1.635202447978954 12.47651913007674 -1.703586392220001 12.35042744299495 -1.733039371291702 -12.58928054554183 0.06216301397643055 -12.56894162462897 0.1114081662110007 -12.44955023869925 0.03574905171129115 9.631860544165843 1.557870607934369 9.497812823158526 1.523720021818169 9.617284226333158 1.618405232764888 -11.18949272428132 3.449144239678994 -11.05810558974406 3.43741573475663 -11.07295892218207 3.376204414341373 -12.55834831527949 0.3756636750632473 -12.41946690482045 0.3466109327424751 -12.42491019409979 0.2885444991789321 12.24844684724029 -2.123312879461341 12.14391992483101 -2.210964781929535 12.13185524271816 -2.148416937708864 11.10362118619226 0.6174771547469791 11.21011850529769 0.6417374482883845 11.0998287403512 0.5467664045441286 -11.78599969953858 1.710751197689483 -11.8855620736632 1.764594262627711 -11.7365061258191 1.75858363054145 -9.551783259955178 4.621116664514966 -9.662840828898695 4.676559090480197 -9.492566268341244 4.660835091232268 11.38554323625563 -3.321557092137592 11.40545417650413 -3.254893710166193 11.53983003230635 -3.221550715986149 -12.59169677899354 -2.122796224044397 -12.43562082373348 -2.164560503438635 -12.44094884273218 -2.216169764530545 7.641202265041214 1.895696582249834 7.619078313030771 1.954798365316707 7.78231669517448 1.993322558346813 -12.27829459142965 -1.703748294304876 -12.28112793941384 -1.632093876578818 -12.13612110978789 -1.658772972090705 -8.529836727396535 5.731344266683108 -8.427594279923671 5.680615208045538 -8.568355625367685 5.676890862560271 -10.5558308832052 -1.514031454146504 -10.72224734746335 -1.553273941902001 -10.72426341194342 -1.481590562917722 9.901866227340285 -4.581370473984669 9.89166102092414 -4.644122839366019 9.780757662061093 -4.663490218918779 8.085695976323192 2.077879605760174 8.100738048913897 2.008102183714081 7.979575249341611 1.990108275138057 -11.53498190250259 -3.316681344740469 -11.66957947655568 -3.328412254481368 -11.65909370702121 -3.26729082813857 -11.86203026914572 1.946394878990668 -11.82506593710753 2.000265651709518 -11.713026213673 1.93963474658876 -9.54517036640582 5.006371453637729 -9.500495426647175 5.052390847586421 -9.37517508163147 4.98887710026371 11.49481847640153 -3.29179345705857 11.34789180389087 -3.326009518851614 11.50257438308278 -3.226382213565422 -8.71465421451237 -1.379804449027914 -8.899460891690383 -1.414986989341083 -8.900828348592878 -1.343305510481923 -12.50063398471393 -2.511359052459845 -12.47993075853214 -2.469142127872076 -12.34275826300758 -2.548703173253112 7.650634743547147 2.080423905513628 7.50097610545313 2.043081385727968 7.641332124451248 2.141381620377886 -12.27910664578102 -1.702197090834061 -12.13693355798749 -1.657220998159356 -12.13393898952275 -1.728875822664083 -10.55417121041747 -1.584826029616713 -10.72258337245052 -1.552396825609317 -10.55616698065188 -1.513154147695452 -8.603671478312631 5.840246622676532 -8.462928433540144 5.844376860225484 -8.48644593388109 5.783986722030788 -8.709550488865627 -1.463861396178413 -8.895653400495181 -1.427348187082769 -8.710846085865644 -1.392167718974344 9.764709467972942 -4.591052007709738 9.642523311769457 -4.672177889576204 9.643657442806868 -4.6097231772181 7.862503877508484 2.168602812129222 7.973630028976386 2.187163073485974 7.868184169538051 2.098889834440856 -11.61166209426751 -3.285533223111407 -11.720650116989 -3.240170193241426 -11.58586587098214 -3.229850551162238 -8.90736420001609 -1.693443132595279 -8.772693913946812 -1.636771872927451 -8.769584837417837 -1.708420563732345 -11.85026428899129 -1.767171044881302 -11.71900528080115 -1.716384959328101 -11.71689193397437 -1.788058345725621 -6.910016250360373 5.946662107887122 -7.044647341963542 6.00422187278154 -6.852260934187974 5.982559747848794 9.84019893164926 -4.025687024838435 9.856494955260382 -3.961254764056166 10.00653083457654 -3.924861096892743 -6.638067216646483 -1.345359288150344 -6.836321842966829 -1.306448341398115 -6.638687654145084 -1.273671399404968 -11.75081178992731 -4.397855854827554 -11.57616745796078 -4.447374111762949 -11.58530307794933 -4.492049290094289 5.37702291505806 2.278329959008511 5.360781901794482 2.338381304480409 5.53452326255626 2.378601581676305 -11.8477921893205 -1.771132958242384 -11.85126880573113 -1.699491605392131 -11.71653327095071 -1.720346729027851 -6.873148465588878 6.401151793126798 -6.83283778030713 6.443462808145918 -6.681166082739154 6.377374685653092 -5.419357012291193 7.116504678474972 -5.305319877557924 7.079502459234016 -5.463162153526112 7.063573211728421 -4.655459356693084 6.995325433674931 -4.626086921802587 7.037947735836165 -4.455317341538341 6.969248692357329 5.655498462954247 -5.744194604771449 5.636338991945853 -5.804809935915466 5.511105391974127 -5.81833438087417 4.283585811329357 2.540206830049731 4.147031272120611 2.527920480424545 4.263197487979614 2.608196705412749 -7.074561868724527 -7.838162061056226 -7.206749484574333 -7.866852398479714 -7.22543730235367 -7.809439463264817 -4.860412953377663 -1.572443924051376 -4.862792608842701 -1.500777945388903 -4.707971743798747 -1.510382878151699 -8.887450137124446 -1.722623963248056 -8.889384558544389 -1.650947450254618 -8.75277785457949 -1.665955639667139 9.92682210424201 -3.958075097241356 9.763342186171791 -3.995528131591063 9.930154544309971 -3.895194613015674 -2.330319142117059 7.376517372491382 -2.313740820499123 7.421629125285861 -2.130277411320018 7.350861169815547 -6.634153617248702 -1.290603569206118 -6.831788439712278 -1.323378146720922 -6.832354045656597 -1.251691206748372 -11.55804340649913 -4.67002850371146 -11.530709130997 -4.634411703614915 -11.38147995351786 -4.715138926864015 5.45307607714408 2.402224524503437 5.293682289993164 2.36314331618803 5.450795908844998 2.463789693471995 -4.662590396667173 6.590241969402697 -4.814359942244378 6.650965200477348 -4.613858225403444 6.626658547327783 -5.448690196724442 7.228036718382651 -5.477468473182723 7.171809039680968 -5.606277686037295 7.210616162132875 -2.333424534969861 6.960100846927293 -2.496289861475915 7.02251322564471 -2.295906294290259 6.998564669389739 5.500119052534039 -5.649457324518996 5.355057718673635 -5.722785370369828 5.363628386658954 -5.661937685694299 4.044262872012264 2.620843011852068 4.034715684694127 2.688257489338354 4.159997221182063 2.701504338703599 -7.37973307514139 -7.626900832922628 -7.380552123611244 -7.681554051268964 -7.512942145240753 -7.652501078363416 -4.860067011239304 -1.5729691477404 -4.707625737843752 -1.510908198846842 -4.705317447933381 -1.582574182751803 -2.59798018382316 7.862746505542849 -2.623622721562295 7.811097138050414 -2.775833724389388 7.83534876715802 7.892172907163152 -4.448153975156407 7.902265876591466 -4.385721714301504 8.062059351078105 -4.347663972675512 0.2319925919531207 7.206532343959895 0.06816130944851562 7.270195072340188 0.2577986262042703 7.248876571234666 -4.43534120218764 -1.285571043633246 -4.635172112616091 -1.246046483930129 -4.435225602062978 -1.213882780525905 -10.54612546316951 -5.990830709765972 -10.35883664835906 -6.046660837012703 -10.37861698032135 -6.085245858175693 3.068068152694514 2.562005730214306 3.059319668505497 2.623211315275878 3.234485811533379 2.664099184091551 -2.472932049716599 7.657072584354313 -2.339166786449916 7.632342579577592 -2.517676201589121 7.607725635676184 7.996780603426274 -4.366274002562983 7.822659858598535 -4.405619625459651 7.992866929057401 -4.305465943855684 1.565689220693328 -5.742197169311714 1.42330873092626 -5.751318637004019 1.585935596180436 -5.683085201673474 0.8043760332373917 2.468542627601334 0.6492970871679638 2.460670291018974 0.7842362549579163 2.534497982085871 -2.002206848136053 -9.254831269223828 -2.148472010363316 -9.29166463676035 -2.177339718573044 -9.241948655833635 -0.9758413610236072 -1.436931287834512 -1.150083786011975 -1.503314959292955 -1.151575058569062 -1.431635573601411 0.2738593675876695 7.772017653651676 0.4278347807192724 7.756084727066048 0.2346794831337724 7.72592419907197 5.907692453773043 -4.674037290780482 5.732105461036365 -4.7138328932742 5.895277582598436 -4.61487214835779 0.2169948912253811 7.583141731566467 0.2217385568439489 7.632372909850894 0.4063657043943875 7.560404402649126 -4.43803618764851 -1.203049876265611 -4.637982349412921 -1.235214921452726 -4.637884718486797 -1.163526013779914 -10.21674864212124 -6.233487484420487 -10.17865369403322 -6.203606866566421 -10.02688022158651 -6.283636451017741 3.11920870580907 2.708073989677151 2.958546819406385 2.668514531492299 3.124488026943278 2.771086794235044 5.829999443512676 -4.78088651738005 5.831702891637843 -4.72001531707514 5.992787959884518 -4.681535576454031 1.308602043108998 -5.629715596612606 1.31659896308892 -5.569811842992579 1.471583570219683 -5.562007864425807 0.5648566816230188 2.546352756926723 0.5571291965500386 2.61136778732703 0.6995080653232744 2.620504899957761 -2.370329924725453 -9.101516649727747 -2.363738140221217 -9.150816033798021 -2.517851275225941 -9.135107000968814 -0.9726322791411207 -1.51136897875968 -1.148399643763717 -1.506060530120493 -0.974156837499241 -1.43967747798365 0.09957568526473282 8.060394533306367 0.08245892179569114 8.013088107374479 -0.09257567520009835 8.026497024254699 3.502873504952592 -5.140317135331382 3.495977393425906 -5.080597239283649 3.649387245675078 -5.043008776893196 3.009193443669416 7.235149636369333 3.180226204520791 7.219042807089095 3.163618156076048 7.171430411620039 -2.026516353178367 -1.225163681072475 -2.216742678481948 -1.186567282184263 -2.025715681231137 -1.15347749930801 -8.885526573798463 -7.365420354994246 -9.043114890063302 -7.272760969419028 -8.853007748615546 -7.331708013177096 0.4057049713076188 2.87232590006109 0.4037260882408361 2.935456226480028 0.5705267224989513 2.975387309320226 -1.717992636299257 -5.327359896265246 -1.873948693069529 -5.33375228873334 -1.702251379332159 -5.268413365094089 -2.14760700104281 2.214573506194116 -2.317503393053847 2.20952979502062 -2.163292701861009 2.278695629013866 1.79960164067864 -9.082815688629138 1.631709543548545 -9.123426758343165 1.607244250217268 -9.077744055211763 2.154039047972187 -1.41612137665319 1.962340231720186 -1.485340371765077 1.961568395405093 -1.413641410927702 2.823096509336607 7.616372447388669 2.992569485321149 7.605674158391179 2.793965568158571 7.572851756385049 0.4150848726677803 3.036069234949429 0.2621382507692666 2.997330172514774 0.4263288971082052 3.101013111112003 3.56247695294758 -5.02893947682269 3.395230171748484 -5.067768839326921 3.542138793106454 -4.970829615629748 3.136739787378199 7.517745302135942 3.134298610467179 7.573288329370655 3.307592227919256 7.500494766055173 -1.983401902069153 -1.305061582832618 -2.174432891914137 -1.338137098609991 -2.174040019480891 -1.266804611055238 -8.592566560726386 -7.458813957527729 -8.54280462143106 -7.43327987065158 -8.399439946335676 -7.511336804765615 -1.970736828585861 -5.204901381841417 -1.968684285651651 -5.144935859453601 -1.798783248688915 -5.139980847887529 -2.383501143674551 2.286889515974018 -2.385444755339911 2.349843312064751 -2.229495494405385 2.356337495586558 1.469176764922531 -8.96021891054359 1.469761844121595 -9.006357142621646 1.300103194212152 -8.997674044870172 2.154739198336298 -1.487743235738178 1.962299481474927 -1.485269955171312 2.153998287116803 -1.416050941875147 2.626583967550852 7.96515046597017 2.621561240056742 7.921349035419765 2.429245197731841 7.927903919207108 -2.821810924508073 3.103279072080304 -2.819929521407584 3.168805828902164 -2.669086534438531 3.206378696803298 0.6994712725026153 -5.584734164094565 0.6856613655126798 -5.525449147132722 0.8242780405826661 -5.489901612203209 6.359847567979582 6.589840271805475 6.511351161794384 6.58228800079966 6.497037649384467 6.52786439367146 1.136118008815114 -1.3541367237635 0.9626827840905849 -1.319201502848362 1.136984378566509 -1.282806822627216 -7.142186791714643 -8.418934448869473 -7.27715216566976 -8.328716936560284 -7.096960415400679 -8.388625975593255 -4.445607926770279 -4.903486594153658 -4.607923164654693 -4.908876254736006 -4.437571541655934 -4.843833397309046 -4.761145117444076 1.930669373578067 -4.937848609126943 1.926672623221713 -4.769968480963281 1.993258031385614 4.672247525821237 -8.396131131384985 4.48536014044886 -8.438484996226077 4.472110237845285 -8.39353720406524 4.832225930426402 -1.429496464971109 4.632054761285418 -1.499775441303044 4.632012267672277 -1.428080786019686 5.292085139575017 7.200117601997333 5.468511597729046 7.190868992203569 5.275278896494793 7.158172579607357 -6.715005820992449 -8.465240445498786 -6.656489422356748 -8.442174378515569 -6.531440210530288 -8.518434485722098 -2.849982679187054 3.255365277084434 -2.988144808445621 3.218739012992571 -2.836218607018078 3.322565869735572 0.734969993620832 -5.47633085997393 0.5837553854295591 -5.512908790872454 0.7089989322123519 -5.418433266106486 6.412198333676442 6.792860814700982 6.407336258415766 6.853478030631758 6.563662556121248 6.78483469898197 1.123935753957899 -1.244013941565833 0.9496351537245562 -1.280411568368693 0.9525784213012262 -1.208792958390632 -4.674657192016141 -4.813979298478399 -4.680878664536808 -4.753124991120459 -4.504130581882922 -4.749220826745997 -4.990010106693942 1.992706002798677 -4.984602815867615 2.054019724902083 -4.822295137886973 2.059548482311019 4.404105797540058 -8.298331951209891 4.392792560769895 -8.34403881793688 4.216194945195725 -8.337784011839139 4.830596591689094 -1.498300723312047 4.630440144446198 -1.496892769522193 4.830610844677027 -1.426612966687759 5.092095789300098 7.585500342429687 5.100437957282588 7.543868787570436 4.900284440353532 7.547980499809358 -4.991638143498378 -9.321723271056177 -5.101360381809151 -9.232957379059158 -4.93769114344884 -9.292567457289668 -6.63641337613953 2.897417884133284 -6.63574941786656 2.965483196330755 -6.503943037327894 2.999314420254909 -2.881302304196173 -5.981597491235704 -2.898033400248121 -5.921628277178476 -2.777076513557294 -5.889035517929381 9.675283058297397 4.884296525830756 9.811434693990076 4.886706320707685 9.793775942725468 4.827578484436574 4.84072609155517 -1.328961652662674 4.837280128415219 -1.40056638481864 4.685938922503548 -1.369739957893678 -6.833094823957079 -4.547716051575298 -6.992881285607754 -4.553794311763161 -6.833728383212693 -4.486667286146808 -7.143331466529048 1.62000307921671 -7.318627382169347 1.615337223185641 -7.144672864113284 1.681455119599937 6.823118365998865 -7.525883711952497 7.020138991313406 -7.5297739747776 6.822650218416566 -7.572447512508213 7.23925462210762 -1.471029974841085 7.041513054906684 -1.540496814225599 7.042216254670835 -1.468811191097894 8.039520787999589 6.281863912698821 7.860993247654495 6.252645319094622 7.866229289366742 6.294589168663884 4.633838008214074 -1.169493925283726 4.786253878579575 -1.200372830625324 4.631471169748868 -1.24116161152163 -4.412441470159707 -9.324613633964388 -4.345425296990303 -9.302104496132902 -4.244962845538747 -9.377270140223084 -6.811545597743727 2.972434633492441 -6.68009424977297 3.075144575806786 -6.690867514628805 3.005660808374025 -2.906764265025755 -5.855044453140191 -3.038861478094021 -5.888319479971751 -2.933955318136298 -5.796234381253612 9.661217020761617 5.06470008623043 9.662991148507999 5.130116127504268 9.79736412588867 5.067263396495124 -7.062642844247717 -4.458264204339328 -7.077225594179336 -4.396084900478645 -6.903280703871185 -4.391445087277297 -7.400489864010549 1.71497372868682 -7.386610048936788 1.775278586424206 -7.226837658517611 1.781581596382792 6.797980664975434 -7.467107702454814 6.774738985824056 -7.513942737987394 6.599563245383362 -7.507026474287089 7.230952417738142 -1.529042443945376 7.033890040178047 -1.526817186432799 7.231629130590562 -1.457345984156113 7.673258851264183 6.724450475222787 7.693037061773406 6.682451958648745 7.496217711227494 6.690087758993939 9.084353693772274 -1.319111524507893 9.08124316964604 -1.390761621698644 8.94644289848916 -1.36539143410556 -2.122078387325774 -10.00208375805769 -2.201213981231016 -9.912604145826347 -2.060998365996196 -9.970823085498482 -10.36145395883319 1.727643073678281 -10.36826270687783 1.797436554639876 -10.25092063156426 1.826111407225745 -7.302788296765607 -5.71292485615856 -7.315508704058836 -5.651150793420963 -7.208225962874972 -5.622316462952615 12.00762164630643 2.130906965942405 12.14333425160431 2.144921389086459 12.11480815354829 2.083458970657563 -9.01147670431353 -4.147318988706797 -9.16031446642654 -4.155694193450678 -9.019956751590648 -4.084443195800464 -9.499784712387529 1.190562468879321 -9.66063584151215 1.182940296825713 -9.494184982983033 1.251689310027092 8.888488434605261 -6.468869195710479 9.071981134836666 -6.477181350394378 8.876257251821579 -6.518217194559831 9.449581017394744 -1.533583026767532 9.263489409902652 -1.600493421685321 9.264909378501219 -1.528803687710612 10.74204251640409 4.236081915180562 10.58298996135551 4.215641454556057 10.58263680816121 4.26042846500789 11.97817099479863 2.388032088762603 12.1001885963614 2.336309752118984 11.96463109449242 2.321395266244683 8.94955662573258 -1.293678761542919 9.084318075882242 -1.319045317964265 8.946407283605279 -1.365325233105614 -1.271938694101185 -9.928031437397038 -1.20341461049748 -9.902784568929347 -1.126905379762219 -9.978419947729694 -10.497825757819 1.730956984221029 -10.38846337788417 1.830231133288248 -10.39039268238785 1.75944282011681 -7.350080799852286 -5.567341679963051 -7.467394613473013 -5.596398825712132 -7.371884119760878 -5.50640797543516 -9.227624357317261 -4.070860691418731 -9.249125598694668 -4.007064973847591 -9.086996006926507 -3.999940703037678 -9.677836213188012 1.1985652706594 -9.660276671109934 1.25868548089124 -9.511474984713074 1.267448410283861 8.904589273219317 -6.471995615186978 8.868608555860567 -6.521578396033776 8.708070364481475 -6.510608542178119 9.466110887185232 -1.638715877420245 9.282416480764914 -1.633893235501636 9.468514529913994 -1.566993928649501 10.48592711437888 4.715293816681878 10.51070203369348 4.668373332705535 10.32799520245106 4.690042235478756 12.80486521953163 -0.8782814391745923 12.76547364041472 -0.9382285777631791 12.65545705626428 -0.9023891281087371 12.12899766129329 -1.401324537281521 12.1256474180299 -1.47296536932822 11.99355444745457 -1.453521176212834 2.450557641251624 -9.960457440974377 2.385112537396675 -9.868195954726444 2.507453081917199 -9.921215071861347 -12.50017367973961 -0.3002120353238359 -12.51736773444045 -0.2307114140535312 -12.4016543712185 -0.208325441626296 -11.31702622516923 -3.882319793084444 -11.31783722991399 -3.819021305481295 -11.21230911780348 -3.795136180876889 -10.97232743341756 -3.524036664092204 -11.10471425181361 -3.536197113836563 -10.98596087060906 -3.458913991657148 -11.51252168042142 0.2167492199166049 -11.65660456383353 0.2048937383174073 -11.50600445487997 0.2782225287412058 10.69986673017178 -5.100742504571175 10.86240712432025 -5.116540712177234 10.67670547056583 -5.154850177388828 11.4721612945527 -1.677785269115702 11.30663328587778 -1.740522549709934 11.30968541096649 -1.668815866040309 12.54453637999385 -0.4881931679631666 12.40354295669747 -0.4884526708754607 12.41427349473641 -0.4383515736005559 -11.41525151366383 -3.757926099376388 -11.30947888679122 -3.671534607656464 -11.30001538574395 -3.73432778173633 12.67982608702496 -0.6526133562864981 12.80520729639552 -0.6906594461761093 12.65623358192334 -0.7163771927821439 11.99779492031956 -1.383174232516103 12.12980745857956 -1.402614824016195 11.99436429876233 -1.45481154969608 3.60717405511408 -9.676036288434755 3.479477180020098 -9.63151417155848 3.540819205812205 -9.598174555880148 -12.43302030043936 -0.3287568177167912 -12.53900283543621 -0.3513625420158977 -12.44142228460851 -0.2588581133065578 -11.15471087317843 -3.472626616724449 -11.17976007256005 -3.406911101337614 -11.03561235820559 -3.395672867062525 -11.70086636038362 0.2141423120066185 -11.68299792789481 0.2751456870041583 -11.55072512587131 0.2880511314757954 10.73356229972205 -5.188328353794971 10.69032941602382 -5.241280019104381 10.54708863732899 -5.224242239066612 11.45383296354241 -1.722063991014747 11.29045016656386 -1.713137945542501 11.45597201205626 -1.650390602830048 12.54463663922744 -0.4076613325349839 12.55082262326936 -0.4628684289043794 12.4036434459555 -0.4079891775768366 -12.65569185398602 -1.169249139555992 -12.64353284420654 -1.106743826280584 -12.52680569774861 -1.088851847172841 12.05871853022702 -3.350578699342806 12.01416131808036 -3.406984902372559 11.88893433846377 -3.382057961237903 12.61119451716407 -1.347722082746238 12.60825385037884 -1.419372881934045 12.46349946185979 -1.405766526284072 9.372753069548914 -6.826669456542838 9.341903634887348 -6.880066072183239 9.246424773456054 -6.793235031655539 -12.41544912202189 -2.11068914694666 -12.43944944405991 -2.043064808079661 -12.31191969123731 -2.027002528104643 -12.36297081163629 -2.367266624861024 -12.47829684347289 -2.38454092736979 -12.37670701094712 -2.299516606085756 -12.66321426546362 -1.702928137463743 -12.53627522414027 -1.622539058675648 -12.53767311767731 -1.685131291994166 12.10574180111742 -3.181281925643665 12.24594327988267 -3.207657439083207 12.07890548625666 -3.240568229280981 12.52595228513887 -1.751084798291482 12.66898298612503 -1.765278581672329 12.52306856073473 -1.822742037189923 9.33534389651027 -6.958645758985928 9.20737179672318 -6.929528861830943 9.248900211368236 -6.884760127191098 -12.2665712719432 -2.162590626953528 -12.38358300437334 -2.179292666433531 -12.28066968680266 -2.095137082537539 -12.65285949788222 -1.109989690573223 -12.52323082400572 -1.030334582109835 -12.52553936775479 -1.092836865914159 11.98844996477916 -3.197436251760613 12.13069697648554 -3.222545336953552 11.96156052567574 -3.256113187209982 12.46693195861506 -1.335262028415724 12.61184729655287 -1.348868363108499 12.46415154922206 -1.406911716927027 9.960651652020729 -6.296388625829933 9.831631619741811 -6.270073037143662 9.869920573776625 -6.224081119200225 -12.50686129074443 -2.314236210271567 -12.53045450004144 -2.2463920063556 -12.40457651968336 -2.229729067781244 -12.65764569784601 -1.770379013887815 -12.64653912048994 -1.707703395993552 -12.53152156450983 -1.689200050655647 12.18052147902099 -3.359975420344078 12.13607137932328 -3.416758660398563 12.01284562633077 -3.390812983687816 12.66876876421716 -1.764878543277706 12.6658756697165 -1.836537275609132 12.52285468214147 -1.822342538278277 8.609688992076844 -7.529370084866654 8.519939622033421 -7.44061825578067 8.644724673637041 -7.477310262533923 -10.97872514983905 -3.176271397022086 -11.00362475730813 -3.110778589707141 -10.85739946068847 -3.100059011764498 -11.5176875760932 0.7092605091613835 -11.49953625105054 0.7701369617804559 -11.36547436901504 0.7825306793890203 10.55314563047167 -5.10071401653749 10.51032641872906 -5.153209647762414 10.36501128457285 -5.136964157061804 11.23519680359556 -1.302906009348238 11.06805100198852 -1.294541538735637 11.23721252493439 -1.23124048414316 12.50186716805469 0.4704908240560266 12.51194722056576 0.4160883379895734 12.35870483601279 0.466270169710504 -12.32799508885498 -0.4553170820301346 -12.43350405564735 -0.4785674476013411 -12.33553343845589 -0.3852304043669551 -11.09877758993566 -4.36067689981097 -10.99487070715988 -4.273731861119688 -10.98399332400003 -4.336432349041786 12.67978119066266 -0.5531317061606933 12.80400957092096 -0.5926070613969773 12.65686981033747 -0.6173361093411353 11.78944218985733 -1.78759904768878 11.92102975599541 -1.807658706785934 11.78611302416578 -1.859246062830769 3.009827715546834 -9.900687031758661 2.880976245831566 -9.855226303338512 2.943696062422529 -9.823047723827436 12.50888391781161 0.3216735036803493 12.36568269077752 0.3183687848415268 12.37404480769698 0.3674486865928813 -10.78304494723833 -3.243630274933168 -10.91720755594061 -3.255330048166043 -10.79627666252484 -3.178730341222819 -11.32346144242302 0.7076562092449756 -11.46952920599622 0.6963336073255722 -11.31686723566741 0.769023699798105 10.50373782542462 -5.04724955652355 10.67018938326244 -5.061853920087253 10.48272699052472 -5.100197873493039 11.26614980478779 -1.280471690910523 11.09697870003657 -1.343756897076463 11.1005080690211 -1.272025839606709 -12.384239433834 -0.432824104206995 -12.40041367429001 -0.3631932039182677 -12.28528561642618 -0.340131141351152 -10.99211139691699 -4.481750717083936 -10.99430616697351 -4.418520052553081 -10.88924686466424 -4.394042004634568 12.81067519578389 -0.7970280096254434 12.77222748151188 -0.8573021509194796 12.66312963038722 -0.8202125189009921 11.9208160002482 -1.807314416007229 11.91743341116261 -1.878950862335088 11.78589926007625 -1.858901758550291 1.848419662804386 -10.12978471306633 1.782984531484846 -10.03776233389912 1.906430436587999 -10.09171290314908 10.20666488269885 5.087294122505678 10.2305678746692 5.041484398560948 10.04685616923963 5.060956776633804 -9.006288800138961 -3.748441605221089 -9.027164882110668 -3.684796899778404 -8.863475201699187 -3.678004356093722 -9.449186803979133 1.625186316632568 -9.432011733925535 1.685272337035473 -9.281715206985069 1.693696897317436 8.685496093523531 -6.331191571803228 8.652209435617502 -6.380089789830738 8.488794948356155 -6.369875881142802 9.254008116316827 -1.244250730827939 9.069836441402108 -1.239744009708454 9.256997305459809 -1.172504485791101 -10.16122891842905 1.564891742858978 -10.04979012739954 1.664673375439497 -10.05283455540317 1.593930036935231 -6.862262658907012 -6.010351054192642 -6.980566207957457 -6.039904793698391 -6.884938134890659 -5.949664134598572 11.75802067617219 2.584466801050537 11.88108250228669 2.53143940402498 11.74646722921003 2.517644949600686 8.522399445709763 -1.689487240978495 8.658334509583158 -1.715454894054223 8.519266185796891 -1.761130704125859 -1.664165435586172 -10.02305670722691 -1.59551122158466 -9.998254150616866 -1.51683436536705 -10.07385749159181 9.242694828956012 -1.147379502241755 9.055538230655557 -1.214626373655277 9.057410761192328 -1.142893633184489 10.46501222902741 4.656623637030224 10.30408920376134 4.634886945094705 10.30364790952062 4.679293071907598 -8.795398834234536 -3.818856806584465 -8.945727459214881 -3.826919169142748 -8.803148251901336 -3.756188675287935 -9.227771109217517 1.578836572124709 -9.391452607341753 1.571746072678496 -9.223697770384634 1.639826471334134 8.693598956660441 -6.353753564243794 8.877594274087761 -6.361531191755919 8.681789113876736 -6.402933013520544 -10.01996557750031 1.550999274153101 -10.02587649754419 1.620706009993815 -9.907379428424823 1.649980627921826 -6.821919025668692 -6.14610654843118 -6.835464545181348 -6.084559739604354 -6.727168781035482 -6.055294668541154 11.80041999329114 2.271527478084729 11.93519378561261 2.28432826873254 11.90848383001835 2.2234872251927 8.611138849341353 -1.625472086113976 8.608466736303766 -1.697078852308228 8.472076281668169 -1.671158740253725 -2.468633823712594 -10.06620892042703 -2.550532120980076 -9.976997130530403 -2.407826778044897 -10.0354007225572 6.995528453012118 -1.140876074560704 6.798107797378934 -1.138785811654543 6.996732712130455 -1.06913446543155 7.382121241746031 6.981366301073618 7.401145999132933 6.93955674245358 7.203274077684113 6.946462103937839 -6.814484289843757 -4.115830522645906 -6.828269915909444 -4.053807534298573 -6.653588964125098 -4.049324897465911 -7.148491861092352 2.081354636374249 -7.136604853594141 2.141708529551244 -6.976160686034473 2.14784048489019 6.563786217306237 -7.311678873906014 6.54097211060618 -7.358399657742611 6.36642046685613 -7.351521303566818 -6.54453223029536 2.667205959665146 -6.412818768082149 2.770179291646056 -6.423520641465728 2.700826753839058 -2.482274595752971 -6.191574042000407 -2.616328001531191 -6.225231121947041 -2.509616234827305 -6.132931656751304 9.345558165255701 5.063449079855373 9.346634810264414 5.127810654644573 9.482585968803866 5.064737479412169 4.317137415221328 -1.484869527486346 4.470612995110384 -1.516221492013397 4.315564814228122 -1.556496458053652 -4.676235300981285 -9.403074500992307 -4.609747957676477 -9.380676349437215 -4.506572053698067 -9.455774414978977 6.596893943548481 -7.392897065063066 6.794277423457221 -7.396564769961881 6.597862369519566 -7.439215602822574 6.985984887813427 -1.0498681657361 6.787363344783888 -1.119525461935276 6.787935461027244 -1.047820539550652 7.755333398450116 6.562274915611136 7.574984539328181 6.532534429843814 7.581235023639417 6.574351236803325 -6.592371493893364 -4.19651823268738 -6.752827919446442 -4.202448375300211 -6.592113131376907 -4.135673155488729 -6.916136912060805 2.017210917283385 -7.090808537580687 2.012586859501398 -6.918270238023179 2.078739436371168 -6.149425158498467 2.478790466936847 -6.149253515248045 2.545970180994254 -6.015504705438904 2.579986852946841 -2.637472509766389 -6.212799151777316 -2.652095706301727 -6.153252163151674 -2.530672372543877 -6.12056296136997 9.351491749881207 4.906144350204793 9.488520477649306 4.90737041187993 9.471780340063642 4.848704335568009 4.507297532295667 -1.604395875697794 4.504944661909446 -1.676066060094372 4.352244615765225 -1.644659557820761 -5.270124677222283 -9.37029322018936 -5.381175090109571 -9.281254103902617 -5.215448961530498 -9.341207795089582 4.122873715004327 -8.146010565467357 4.112877663302318 -8.191663076201058 3.936544639553558 -8.18532608408208 4.561813399212211 -1.080709618089091 4.361900160071912 -1.079267361410594 4.561679228117796 -1.00900336095539 4.833668307301942 7.785733192443573 4.840620800523403 7.743985024605916 4.640833118274078 7.748079011563347 -4.41598624761245 -4.461376315547414 -4.421266357998611 -4.40067284271783 -4.244816876807863 -4.396754015369652 -4.720612583349852 2.389534302170822 -4.715966408932523 2.45097708950702 -4.553951170628647 2.456517917479299 -2.307617779750301 2.768522566204381 -2.449382623557622 2.731811741999078 -2.29496724698255 2.834961220887902 1.034081215329108 -5.73308776835111 0.8809392675790967 -5.769827445210334 1.010450103364412 -5.675359133583689 6.051864446645339 6.700095221426143 6.046697713305678 6.760083624629706 6.204155440353516 6.690419458153252 0.7488717005912665 -1.555686139636162 0.5724847766132585 -1.591709857400316 0.5739976009859282 -1.520025654516796 -6.926171551203142 -8.546557651729312 -6.867067328007344 -8.52344614993936 -6.739700382327774 -8.599876656362721 -4.494967276111895 2.332740730700843 -4.671410304881282 2.32872303384572 -4.504594488378645 2.395468373229717 4.395942794974027 -8.262772761993997 4.210647281638136 -8.305003158130973 4.19605015491683 -8.260093829183644 4.570996180733671 -1.025574562700629 4.371214418330106 -1.095833822139671 4.371148961019417 -1.024147534574344 5.035509217316668 7.422872573621149 5.211643039556949 7.413694765287754 5.017392164864599 7.380850961997692 -4.171122432750728 -4.57572133533232 -4.333144827386039 -4.581131115681554 -4.162191242596482 -4.516156289113875 -2.458669363867656 2.7387128058276 -2.457078264233756 2.8040125505039 -2.304297259137402 2.841902358948021 1.09231448622795 -5.902277782405346 1.078922433964342 -5.843001872384594 1.221041602584383 -5.807148883455373 5.987096467794622 6.478110335887901 6.139444998970969 6.469012359531159 6.126295812886302 6.415883228653295 0.7453169334198506 -1.621146816108716 0.5704435485795745 -1.58549054141068 0.7468302339666205 -1.549466100695817 -7.334485071759142 -8.477131431240766 -7.473649706707226 -8.386514171421744 -7.290506476301554 -8.446548564280741 -2.098847792893515 2.685493026713632 -2.101562623139219 2.748640097582635 -1.946652911427402 2.755352593217332 1.118042483791234 -8.799552045066756 1.11965665155499 -8.845888816318643 0.9512384933315982 -8.83670113599182 1.850926235173381 -1.086204573293112 1.65985189401549 -1.083517053319359 1.850166664877299 -1.014520757574574 2.363827407638545 8.144102598588487 2.357464296021962 8.100013130982363 2.166512633836213 8.107100324117647 -1.654018086113767 -4.883663261199155 -1.651188312030996 -4.823726610454544 -1.482529572603976 -4.818557729567542 0.7130155373425823 2.651006291596271 0.5588685652545239 2.612098167966966 0.7236986818861274 2.71577507161638 3.830562306201437 -5.368670940462613 3.662019833756067 -5.407673145590995 3.810951928235616 -5.310476143973094 2.80437199120271 7.313172771687545 2.801607994156937 7.367255815762408 2.977416671848828 7.295280933654035 -2.224616454200606 -1.562786838772382 -2.417419691672722 -1.595986983696869 -2.416688818738356 -1.524298689023984 -8.774736349927576 -7.528586471202103 -8.726139507055493 -7.502687951927533 -8.58134310482477 -7.580950619557902 -1.408873593820574 -4.997598241305949 -1.563790167595054 -5.004212007633296 -1.392542887173823 -4.938714711342757 -1.859160126505554 2.610188372488169 -2.027849870667152 2.604919982756548 -1.875433482005458 2.674480053033163 1.453679384195578 -8.941070146126073 1.288067980337448 -8.981386222634415 1.262706674973999 -8.935479853824777 1.846865663741822 -1.008850917499873 1.656551738177079 -1.077848656130837 1.655732390862155 -1.006151611841464 2.558181174890236 7.821672832349775 2.726379570216166 7.810596657096884 2.527826511619968 7.777949872365016 0.7132923215439879 2.473263725787787 0.7106770075571484 2.536171621576784 0.8787997701654743 2.576270691666576 3.759510439559334 -5.472440823096785 3.753463703825632 -5.412633011138889 3.908083878822776 -5.374904732296241 2.682091223494191 7.030559168182665 2.855314143943235 7.013768587108697 2.837913257548257 6.966726883859018 -2.223656849002984 -1.640635978902495 -2.415713396574841 -1.602145277088453 -2.222909955188781 -1.56894586500164 -9.050516483925627 -7.410757528668856 -9.209787098441 -7.317949596276657 -9.019348877702974 -7.376634490350832 1.697502317924618 -5.294682633479368 1.705796753595047 -5.23476822870661 1.859022430031686 -5.226539656524509 0.9127695908682582 2.929142619981067 0.9046753539880192 2.994386464476215 1.045306974506275 3.003866316954733 -2.852304508049135 -8.871373931110664 -2.845707726618828 -8.921158489681597 -2.997818615308108 -8.904422345486658 -1.334627950085952 -1.107925416321959 -1.508297041939358 -1.102230561117066 -1.336211244628552 -1.036236293883046 -0.1794628195224153 8.218083610584095 -0.1977017200032567 8.170375742098575 -0.3705828417329244 8.184733908601919 3.375767217196071 2.308153242887666 3.214846562542849 2.26857293635952 3.380259062582235 2.370995505285141 6.136315951452007 -5.017286823936844 5.960464097215232 -5.057110950476266 6.124780395559567 -4.957980398091789 -0.06704880469158514 7.350716944663623 -0.06117980584706029 7.399491795664938 0.1238503664716351 7.327540257551025 -4.67783035036379 -1.621194972144799 -4.878042204659717 -1.653334153169956 -4.878004608082469 -1.581641637668117 -10.37115670773018 -6.274220909050738 -10.33425308430402 -6.243844122877992 -10.18221957071258 -6.323940738275458 -0.004232924985846931 7.95240649886845 0.147873622055682 7.935698045174173 -0.04423009869420236 7.90605158290125 1.962749913697262 -5.415578131163847 1.822118865456829 -5.425063235931637 1.983243981756268 -5.356344002684999 1.156927904468648 2.848123352417505 1.003693724209805 2.839886841481066 1.13654545892024 2.914264281424826 -2.476916208744934 -9.048959457634956 -2.621151646294559 -9.085311566589974 -2.649805299482749 -9.034827409385668 -1.342398382200816 -1.02623461890846 -1.514482776209679 -1.092231150589784 -1.516090294364559 -1.020554580890207 3.336023835185211 2.147935042298134 3.326520467642515 2.208948332319827 3.501964781780644 2.249827246915131 6.052622359824317 -5.11857877159223 6.05522629012431 -5.057565183017478 6.216573657015632 -5.019074926685732 -0.05796615110722797 6.945523440983375 -0.222165372957612 7.009069692564981 -0.03098343685176613 6.987383305072504 -4.679601311064838 -1.686130291904414 -4.879787515265439 -1.646582948976887 -4.679575881593458 -1.614442917434452 -10.69460775802846 -6.000304079270098 -10.50825931221148 -6.055741141412557 -10.52692934012396 -6.094971580192127 -2.898582639239244 7.978473755161456 -2.924810950690469 7.926386604318082 -3.074461073923867 7.951937389010737 5.961235690597919 -5.259702621472934 5.818415232090239 -5.33379957274834 5.826665572644673 -5.27275469343931 4.434896957154498 2.954518283821356 4.425396474250939 3.022163397211926 4.548941619145452 3.035913493232552 -7.928733881473471 -7.161088971257506 -7.931487706704195 -7.216334315697288 -8.061309020115044 -7.185487106032205 -5.290413443198625 -1.170237123120773 -5.140213237867658 -1.108684532559328 -5.137758472341445 -1.180346242909811 5.586707111893005 2.005226148885543 5.423611946354424 1.965816605674983 5.58331964496062 2.066637961064173 8.086766887922842 -4.734242544178417 7.908772394784966 -4.773935602516881 8.084026552988988 -4.673232652652759 -2.528929756813687 7.117309148078553 -2.510768963715936 7.162016021661472 -2.323097951495859 7.090635940766004 -6.755354382104422 -1.693800891803944 -6.957102582424996 -1.726234064856547 -6.957752504053442 -1.654548510803827 -11.63160338534523 -4.730076255950982 -11.60547293920549 -4.69357706720524 -11.4531390611676 -4.776153301574279 -5.283216725116196 -1.181073503757906 -5.285608515755107 -1.109406222731755 -5.133015219781264 -1.119522876372159 -2.782413739378928 7.801418052945049 -2.650849913367678 7.775621166014061 -2.827340303880749 7.751731110995292 6.112393901533349 -5.347056820956262 6.093739862146821 -5.407880871683303 5.970254604697834 -5.421959946138604 4.669320995111029 2.879182415103628 4.534692555436073 2.866343082675042 4.649168409313785 2.947362842856425 -7.648030350845747 -7.387641485502368 -7.779664505991857 -7.41501161470896 -7.796137095031223 -7.356839996860479 5.552914865208011 1.829306659365208 5.535590155000075 1.888883788096568 5.71322432990287 1.929535255277966 7.964633224573237 -4.807871056112734 7.976133678429006 -4.745265185184799 8.139625789198648 -4.70688697786903 -2.528594867949669 6.684583377198657 -2.695417752298258 6.747507376544613 -2.489227998806731 6.722603735316603 -6.751848338029388 -1.776528706288633 -6.954242635055792 -1.737272293869908 -6.752494041217103 -1.704840635693085 -11.83725289052072 -4.401841155863288 -11.66097858024856 -4.452869222440723 -11.66898604983954 -4.498639490704582 -9.53249314499655 -1.308870011824171 -9.397222114022787 -1.25309476580195 -9.394109736128241 -1.324744920637735 -6.07664978592382 7.173193960766203 -6.103338704087622 7.115948318174731 -6.232783871517043 7.157537586842094 10.37648397206477 -3.897710789700178 10.25659062512971 -3.979962745491175 10.25507731374031 -3.917404858724004 8.532377408238872 2.311061616736219 8.642985367837051 2.330600433380355 8.535913937221793 2.241117638589904 -11.91205011993709 -2.320528819902856 -12.02034418655708 -2.273491796878998 -11.88145791361551 -2.266006419408402 7.807834323710092 1.651513842409313 7.656418858796545 1.614125069673707 7.797369590113298 1.71207296755184 10.06320249162475 -4.297709022518156 9.897670607826914 -4.335348400675064 10.06756059465632 -4.234545821510379 -4.867331534120142 6.743138454598218 -4.836175219394534 6.785610561645462 -4.663545020610643 6.716340799978944 -8.86483094254511 -1.810876003588292 -9.051675172817209 -1.846049770724518 -9.053044462274221 -1.774367993559676 -12.53796431191397 -2.482947997677218 -12.51786683559621 -2.439535546338487 -12.38003317543516 -2.520612948411473 -11.85528740434087 -2.327309914645031 -11.99407172913327 -2.335885993386978 -11.9785568191176 -2.27535506048683 -9.533607646370111 -1.30720552973486 -9.536698422091648 -1.235557963230162 -9.398336732194387 -1.251430108413614 -6.055979939673919 7.078045015240623 -5.9424757760723 7.038844661266436 -6.098830498806445 7.024616000014126 10.51473644385175 -3.869709999316458 10.50645336712173 -3.932660177131321 10.39610476477002 -3.953086368156631 8.745997637818071 2.225916445333043 8.759574378182951 2.15593206901716 8.638249174645935 2.136937988450678 7.785192566295808 1.474390119993029 7.761798058242829 1.533332604647699 7.926845051899381 1.571709504981269 9.919531204534646 -4.343346287313191 9.937478950054636 -4.27880301535551 10.08928126454663 -4.242397932228659 -4.877372381696564 6.313616204722505 -5.031078100311892 6.374878601486425 -4.826906612317598 6.349960281804901 -8.864356051845189 -1.879849833307386 -9.052503024976716 -1.84332657968205 -8.86565893110614 -1.808152364153048 -12.60903942234756 -2.121651783403514 -12.45268788305704 -2.163195346911977 -12.45659475734584 -2.215850644018715 -11.51691709922873 2.476461820338925 -11.62084392495891 2.53117823002547 -11.46486178049607 2.522679131101929 -12.13104627836616 -1.364738488656472 -11.9966660992387 -1.315112784977395 -11.99344198376447 -1.386756714956942 -9.18205942245195 5.586919646267766 -9.041947562561358 5.588038733954915 -9.063776573984292 5.527243334453584 12.25338539400007 -1.321155089707019 12.37380760929147 -1.294860363414141 12.26754818949819 -1.383453184652214 11.54664151536995 0.5417516285613228 11.65828698993112 0.5671488483402105 11.54047918918483 0.4711231424537827 10.0927984075173 1.033838649760322 9.961312217475891 0.9999430953316305 10.07861404678267 1.094570872183027 11.78322974669136 -3.367385784440664 11.77558251065819 -3.433180821791243 11.63231947639032 -3.466871295603748 -7.265919129208221 6.081844855271687 -7.224849007093395 6.124892761890315 -7.078729505847892 6.058419459761951 -10.91926882018418 -1.94383192007079 -11.08097045308499 -1.983684067927202 -11.08309483002521 -1.911998750482731 -12.4726821717837 0.496177088471065 -12.45046514123785 0.5459422040659078 -12.3341822002504 0.4714730027772049 11.70574035499175 0.480366920339075 11.70805645885311 0.4102288978730836 11.58722387565817 0.3848824012390528 -11.58016418241329 2.733974862100241 -11.5405552925432 2.786344405078555 -11.42428200007916 2.724407891622082 -12.13068296398171 -1.365352966054599 -12.13400475699386 -1.293704568748746 -11.99630283859884 -1.315727172312938 -9.138252340458594 5.506413496058661 -9.033963990818558 5.452237834898119 -9.174077058409401 5.451216598813812 12.38222238834931 -1.186004868217785 12.38841036225223 -1.249032337624003 12.27715789377621 -1.275475289412604 10.06111268902415 0.8783291807048352 10.03584408975434 0.9377413103906218 10.17918295237725 0.9723636798977079 11.85555814392415 -3.337898767948163 11.70557524831283 -3.438248405328156 11.72376463514016 -3.371047484659703 -7.29985252635149 5.632317092451797 -7.429891834498812 5.690382559485976 -7.242306974483165 5.669003058538641 -10.91599378072267 -2.018252132061735 -11.07986989305261 -1.986435654276152 -10.91816800630008 -1.946584143843258 -12.42227401924783 0.8240756248723802 -12.28453404134056 0.7968687796958828 -12.29319271164968 0.7385693871397112 12.49587540671732 -1.360860892365796 12.36295742521957 -1.460026814667689 12.37772912847813 -1.390834126925765 -9.307203493878756 5.021933024813878 -9.420655215874328 5.078787217490511 -9.24828496381245 5.061495627257565 -12.22005846191051 -1.284455335573171 -12.07570275014442 -1.24035236218049 -12.07287426756643 -1.312013860961375 -11.32541633850511 3.434413206941159 -11.19244566749135 3.419768997132918 -11.20782468994037 3.358986077727649 11.56536228873711 0.7062842546849588 11.69379309139232 0.7374199887769545 11.58840770718205 0.6457244067831381 11.86935030655957 -0.1394753845984964 11.88195605126427 -0.2013348809135664 11.76677739165537 -0.2313483582302403 12.46786528678107 -1.800299450787113 12.46410551101153 -1.868943189312627 12.33805436555191 -1.89841483110699 -9.734687322955081 4.674007459041356 -9.689850086554676 4.720386835041382 -9.566354565900097 4.656403604170048 -12.33255403938178 -2.122855165481417 -12.33545636569393 -2.051203137338621 -12.19156916029628 -2.077743322433938 -10.99941322477048 3.400618047498766 -10.89638257905871 3.336512341496549 -11.0291521818851 3.34678584470159 11.62484226876936 0.8525172438219261 11.63818476646006 0.7909569622150322 11.52037569022122 0.7601733153954268 12.48705474982978 -1.421880788829585 12.48223820570867 -1.490054199808836 12.35337655444479 -1.520412300898939 -9.302703979954591 5.369515914144409 -9.257876882689953 5.414884242836538 -9.130626889992897 5.350503041455451 -12.22308779399504 -1.278472813032307 -12.22631644227562 -1.206661203836048 -12.07873344403525 -1.234367081302732 -11.39281260164922 3.2274297996298 -11.36397060252387 3.280657370285635 -11.25963064459668 3.214026345768237 11.80679329429891 -0.2988756151001704 11.93239133630643 -0.2686005413702315 11.82878013004725 -0.3597496585694814 12.46525608673323 -1.725749216076382 12.33622436346849 -1.824498607881888 12.34972578035463 -1.754914317992754 -9.731010887276227 4.303406183702024 -9.841167973317862 4.359903175765347 -9.672570274553641 4.3439453136875 -12.33327546491873 -2.121491411150122 -12.19229098852439 -2.076378789293232 -12.1893013512536 -2.148028068226123 -10.96772363310613 3.574557208880395 -10.83508641568019 3.563274984844765 -10.85199430642135 3.502250296806055 9.700133063558514 1.743658575729361 9.675027660501458 1.80290205883731 9.821699615209198 1.838203548580862 11.47800853430719 -2.915348728565967 11.49633724071634 -2.848609871224103 11.6312737384087 -2.814856631457098 -6.900726105013796 6.22656702556824 -7.03479990182481 6.285183918536337 -6.844231722584246 6.262991198781813 -10.60144102941807 -1.15106999200425 -10.76904811710645 -1.118375178178658 -10.60377278843672 -1.079236897711498 -12.5682138679312 0.6378465452335149 -12.42839533722483 0.6077877373566288 -12.43660708192508 0.5502878556221654 12.23061907081295 -2.454653074775718 12.23373972650387 -2.517889021226826 12.12705473567593 -2.54302444309913 11.1732183855626 0.2551194588039639 11.17854851734805 0.184854247527237 11.06178346568833 0.1609178037127916 -11.90903053033802 1.636482560800483 -11.87289176243844 1.690784921230413 -11.76074688627157 1.630295798825836 -11.76441272620189 -2.179493610854456 -11.76781658168089 -2.107855769700681 -11.63438572200886 -2.128497280899822 -8.402633560607434 5.627589924418487 -8.30012860573321 5.577389588847734 -8.441540378288249 5.573145862066023 -12.60725249136976 0.2966003197098835 -12.58587124961738 0.3452825968043923 -12.46643685487813 0.2695750413438101 9.733639939633211 1.892563068586766 9.599010494811875 1.858059393910534 9.719859357185387 1.953172052342427 11.56166904672407 -2.88826796474278 11.41467808579627 -2.922752577261916 11.56862950572229 -2.822911710336432 -6.878912733142323 6.618128731079663 -6.839257541258856 6.660587239864112 -6.688718108597476 6.594034362371139 -10.59400251335704 -1.104556747342412 -10.75928011103576 -1.143689097738676 -10.76133003500066 -1.072023560709993 12.1934068264344 -2.567321203650689 12.08853369849534 -2.654732170220955 12.07687120306518 -2.592184588071366 10.99374630875812 0.3422381603101748 11.10082227227301 0.3663227964335915 10.99021769238728 0.2715174848468587 -11.82991125961936 1.389728808555362 -11.92943137613817 1.443405004548001 -11.78110346449207 1.437914064229647 -11.76419542175737 -2.179837089608198 -11.63416842548747 -2.128840747151753 -11.63078088358188 -2.200494548159048 -8.479123357701766 5.740564553119779 -8.33773345156629 5.745237460619619 -8.362680709555193 5.685310528419809 -12.59179923290041 -2.072861140566345 -12.4349141711313 -2.114938646808637 -12.44026222041529 -2.166272588026754 7.548567425267287 2.279468284446137 7.526524652985462 2.338546907745761 7.690229168981393 2.376964419762755 9.7746589063734 -3.67469305729071 9.790776293167403 -3.610345062445346 9.941338832644554 -3.573887342474415 -4.591195833967213 6.845400979153489 -4.743606185013491 6.906131183301143 -4.542844432461727 6.881857920826196 -8.586669441757142 -1.047834359754729 -8.773006016752229 -1.011755662961565 -8.587947467757003 -0.9761577324023332 9.746046869028515 -4.992806913775424 9.735501332799606 -5.055477088158096 9.624048336974289 -5.074617171066822 7.927281236121091 1.761312237896771 7.942498291265432 1.691556805161452 7.820883955473859 1.673793207042376 -11.41804881857539 -3.658784117870152 -11.55217715498363 -3.671312392569379 -11.54298452255754 -3.610126319802523 -8.743632838614316 -2.095042677601923 -8.74674550130467 -2.023381161205844 -8.608535158752799 -2.038142733453908 -5.336533579251965 6.929266462535714 -5.221771325583803 6.893142316736877 -5.381163294285627 6.876885518594103 -8.619091181742117 -0.87639890633865 -8.80414358943211 -0.9120165883444161 -8.805892209435326 -0.8397632979795607 -12.50421079878694 -2.407746354985607 -12.48286082571195 -2.365701460028077 -12.34566498521755 -2.445777045063263 7.584969237805654 2.434355210056633 7.434757668159982 2.39701230982394 7.57581571199032 2.495048626939908 9.876165215659061 -3.610345444401281 9.712135333773281 -3.647931832561251 9.87919985095373 -3.547520875429662 -4.588986709826833 7.227894232869366 -4.560210211050245 7.269418806958203 -4.388571840905032 7.201907492868052 9.603159259007891 -5.002101805391789 9.480072157754329 -5.082896700251764 9.481782508812453 -5.020496251124981 7.709410812740092 1.847629176148989 7.821078118529962 1.865979967641594 7.71531021759553 1.777990101274116 -11.50127362521604 -3.6344410218119 -11.61104781310153 -3.589597096185644 -11.47670646539864 -3.578571318966301 -8.745553419553815 -2.092230822813783 -8.610455985515149 -2.035330517473851 -8.6074108871167 -2.106977013601151 -5.3855096914852 7.078599933089281 -5.413841478065989 7.022448433670304 -5.544603736381786 7.06062766913001 -6.600949100753985 -0.8236757204749829 -6.79963317398951 -0.7841438049040456 -6.601720941284047 -0.7514118877313775 -11.77531102550626 -4.234864030729428 -11.60015286477251 -4.28553059781461 -11.61038530177011 -4.330084620940065 5.345743462367635 2.627743467682134 5.329890919169237 2.687576773212528 5.503917822739783 2.72794410936342 7.838516907312039 -4.095179849693305 7.848261878979759 -4.032779071047673 8.00826451629478 -3.994648510428144 -2.270160659111173 7.20001894211878 -2.433460326974444 7.262189589159905 -2.233506080694227 7.237506189842751 5.464057725378664 -6.102200099321551 5.444556958960229 -6.162700448572736 5.318712027937583 -6.176025420301502 4.121428592918026 2.178185604401238 3.984211037780418 2.16608008914457 4.100937647216597 2.246092148132916 -6.853741323553279 -8.074158982095822 -6.986184644844813 -8.103301490697229 -7.005754887700962 -8.046223382656194 -4.550849325210138 -1.910603855338458 -4.704212806341116 -1.972850122803083 -4.706495407863542 -1.90118608459101 -2.359013430442525 7.477419544385175 -2.224435368890001 7.453097514263935 -2.403540089663022 7.428197641230938 -2.246807954583327 7.630338741567051 -2.23068519837534 7.675640083496553 -2.047249435805684 7.603747231876121 -6.568413983279684 -0.8759097367367454 -6.766331658425485 -0.9086212826675217 -6.766901931486967 -0.8369362468612964 -11.54996257806058 -4.532079969467537 -11.52208236519743 -4.496786257821556 -11.37253871710033 -4.577607325276893 5.37905676770497 2.793456453140291 5.219446945263041 2.754320348810552 5.377040500854911 2.855085741502411 7.921176529983929 -3.997624391234151 7.746797839386731 -4.036994453534243 7.916964795233094 -3.936902801616408 5.325636603495221 -6.018304134052811 5.179705003796807 -6.091410672808749 5.188436436570532 -6.030574151138832 3.879068301748835 2.263007687264583 3.869469825209229 2.330338839324836 3.995357228276211 2.343413182231673 -7.162139612959358 -7.883046208129853 -7.162369274664934 -7.937587050663221 -7.295616511033068 -7.90910761739239 -4.546227946041681 -1.985834548114294 -4.701874465791489 -1.976416175929757 -4.548510541883238 -1.9141705835812 -2.488669022770686 7.706335545333952 -2.513947138538662 7.654801631882929 -2.667096369762327 7.678588884498444 0.3388590175924675 7.468478148370858 0.1753542530736604 7.532235547004794 0.3643194954648885 7.511044788144226 -4.350741773808331 -0.8708743110031407 -4.55040902106364 -0.8313659061705711 -4.350624105358602 -0.7991879312274119 -10.50156934925294 -5.891094912037254 -10.31392445509432 -5.947034203207001 -10.33417810116103 -5.985411559262474 2.980637668983736 2.955487618140717 2.97213560195912 3.016773438136553 3.147162612606374 3.057642527741412 5.750645944714265 -4.410891053863247 5.751996379331511 -4.350088419238669 5.912934270251835 -4.311630330695824 1.430402467901002 -6.097064217224641 1.287408108770822 -6.106025121561802 1.450609292630583 -6.03794080529733 0.6897896699171024 2.091816947294958 0.5340050743466696 2.084108880342424 0.6698063959186185 2.157721231848731 -1.824493103337637 -9.427390383578034 -1.971463972366836 -9.464523559769994 -2.000368815324718 -9.414948386213476 -0.8315657471380117 -1.842015932616758 -1.006557068983648 -1.908536419886093 -1.00801446078247 -1.83685913113244 0.3734857189804404 7.582539429119366 0.5282419085750479 7.566853049270059 0.3347261333977393 7.53647988067295 5.845593956585285 -4.314764894790497 5.670261584038721 -4.354575754623455 5.832863197667823 -4.255632828607601 0.3211095130233227 7.823580412029536 0.3253673410378433 7.872968805648823 0.5098158021235133 7.801006736965309 -4.350447388675633 -0.7998671768929282 -4.550232326016451 -0.8320450687059297 -4.550126945588144 -0.7603573492320419 -10.16213749662214 -6.113909484032706 -10.12369385405249 -6.084293342241298 -9.971867929590029 -6.164062962044499 3.020434695949662 3.110073951201482 2.859935075312371 3.070498640470921 3.025935355585586 3.173180632599592 1.169659927098823 -5.982591344324178 1.177491447400724 -5.922707038717424 1.333222824575716 -5.915046323848436 0.449518148898797 2.172009657669498 0.4420401809669095 2.236966542966661 0.5850323865735413 2.245948688574167 -2.198864159897617 -9.290070489322892 -2.192237066124712 -9.339165662774249 -2.347118453065111 -9.323899370052788 -0.8344320829141361 -1.906597539063247 -1.010895572889722 -1.901435918214815 -0.8359052639922848 -1.834913781935882 0.2086113656110601 7.883570127221148 0.1918706235153801 7.836507170659524 0.01607981075470791 7.849545683073208 3.410838817924859 -4.791637802790042 3.403691788149378 -4.731927768876296 3.556607180013546 -4.694373956769291 3.138622931071409 7.468530569028002 3.30884925679718 7.452680471551964 3.29258229934162 7.404861252907204 -1.833246071438417 -0.8233296533976419 -2.023331156945316 -0.7851396565345657 -1.832431748474177 -0.7516447482476861 -8.824003284140646 -7.258754957404084 -8.981115768265994 -7.166380724353695 -8.791055043966981 -7.2252899709947 0.3286330780608032 3.271599004679685 0.3269160481412842 3.33483944506435 0.494987308283692 3.374890432677392 -1.83260229101412 -5.682836527645144 -1.988981267121588 -5.689168121202413 -1.817111095797469 -5.623882503594423 -2.26424705438166 1.83146793043839 -2.434515194417165 1.826494417771494 -2.279694360297367 1.895548618076223 1.930587139717629 -9.249275243942394 1.761931924789639 -9.289915396855312 1.737703995769082 -9.244371378351325 2.262843051627058 -1.81404939662664 2.070554959718644 -1.883333659576222 2.069857864589424 -1.811642632463284 2.9121120246615 7.415023477624387 3.082066929279716 7.404452637564274 2.883472204797545 7.371655816552622 0.2576687618359552 3.500696085404013 0.1052740801429292 3.461854464771089 0.2706330966904003 3.56613013530968 3.465811524524859 -4.676273949985517 3.29900238339993 -4.715042845334135 3.445181147882065 -4.618160915125926 3.25450671250647 7.714766398356784 3.250875872441331 7.769631186069479 3.424572231780671 7.697881806160378 -1.83490907629404 -0.7428941968907465 -2.025808191936325 -0.7763901379726197 -2.024949654622004 -0.7046982132147882 -8.546364775114862 -7.322344112488144 -8.497877694543982 -7.296563882553099 -8.353408234722659 -7.375106879045785 -2.077991854826696 -5.572405801264205 -2.076257731982353 -5.512399930575265 -1.90588599994255 -5.507505551185946 -2.489563151122448 1.892568456672654 -2.491285634742426 1.955426830915729 -2.334913316264097 1.961859375032874 1.607208980558737 -9.145752172435831 1.607436247025817 -9.191805389838896 1.437395131002299 -9.183287952258565 2.271369091126892 -1.899367917802391 2.078409505047327 -1.896960574181735 2.270699680411801 -1.827679889700657 2.718268589138662 7.785272142096066 2.713774130832634 7.741703455943248 2.52093414050731 7.748064314234124 -3.101005212899266 3.577412279864564 -3.098069028167583 3.643596049513202 -2.949644236272518 3.681106778337159 0.5872056461813613 -5.241360867570392 0.5731554144250173 -5.182045209905461 0.7111112946336134 -5.146607270480946 6.497106443482595 6.774594643572343 6.646745284903194 6.766832542992263 6.633669263900449 6.712865037076929 1.229539747046159 -0.8090004658764198 1.057626280582487 -0.7738704057642062 1.231188679675817 -0.7373170954735064 -7.050928646088233 -8.322147175581945 -7.186739428373274 -8.232048897087489 -7.007125226184665 -8.291616529698787 -4.536023768756633 -5.274692221047742 -4.698445249312494 -5.280085347772605 -4.528317687225148 -5.214977765287023 -4.846572101938646 1.535523696535898 -5.023409164285574 1.531519876429212 -4.855116805167673 1.598036321270712 4.761390014391969 -8.57912216744227 4.573796470920078 -8.621485675739146 4.561099046232635 -8.576528386537017 4.926186251392148 -1.842966286034857 4.725855626782549 -1.91324328406501 4.725875272424887 -1.841553323505028 5.392513718735883 6.995502158967064 5.569041069876899 6.98622865430164 5.376198408111666 6.953716977861921 -6.624834436002091 -8.343266464487936 -6.564440614130068 -8.320389351523742 -6.441889442908324 -8.396190757723769 -2.986489052362143 3.629067475396462 -3.123996584609335 3.592567105804021 -2.972748076744523 3.696363111680439 0.5964536110836771 -5.115716446650194 0.4459197203542348 -5.152162699378244 0.5703589265084541 -5.057842800270785 6.552913385846088 6.967420827783103 6.548146641469678 7.028279956737866 6.702508814518651 6.959157090438652 1.232621748039976 -0.7415414329871886 1.059059182266867 -0.7780942535030593 1.060664802239573 -0.7064232200460062 -4.778045314998035 -5.168841092003929 -4.784558995688505 -5.107980045130107 -4.607708182119671 -5.10407349327342 -5.0793215695751 1.603982904602696 -5.073620795971975 1.665245649891377 -4.911206810490103 1.670776698192297 4.494229071368491 -8.497950518997337 4.48234475284956 -8.543650531964993 4.305612772192483 -8.537403701206808 4.918783662506996 -1.901439839381903 4.718473602689465 -1.90002750382157 4.918802060406136 -1.829746683366773 5.185219116056956 7.412708334574132 5.194079609769208 7.371133515766913 4.993829236448887 7.375259010168215 -4.914632941831193 -9.226011483115627 -5.021526081191493 -9.137175517212191 -4.858730927155893 -9.196914519097552 -6.800828468577338 3.237800398435974 -6.800387640670833 3.305957783600929 -6.669184604952434 3.33960943800739 -3.061235305347609 -5.624933477383353 -3.077961769544193 -5.564953369687144 -2.957551470760736 -5.532501659553968 9.803298403475026 5.020030796012997 9.939035915648196 5.022910612338249 9.921072548902576 4.963596157364883 5.042477062616952 -0.7981019346748194 5.04003739996108 -0.8697584004945983 4.889570338005955 -0.8391293284960959 -6.918251583513504 -4.902663835285465 -7.07769079771071 -4.908793682871439 -6.919207650204099 -4.841592092900788 -7.248962652349006 1.224322803810492 -7.422592943457921 1.219465241070507 -7.250110037170177 1.285742841018201 6.906114095346661 -7.711173731050049 7.102774332146746 -7.715168512703589 6.905097925564351 -7.757813369933015 7.316564191042545 -1.875752496459551 7.119183764639574 -1.945159098079595 7.119906921062253 -1.873468197674101 8.134667475511211 6.082345007988138 7.956888779050511 6.053336779734313 7.961729807695646 6.095319479138744 4.89369177710442 -0.7715354373199275 5.044231163922257 -0.8021706311137055 4.891324249168518 -0.8431975863876242 -4.311885536859164 -9.21044314927207 -4.244741349664362 -9.187908550459007 -4.145175828819955 -9.263078905357359 -6.989608733936294 3.313047149127845 -6.859074814876416 3.415736807845859 -6.86948293468914 3.346144921051305 -3.057136607144227 -5.514821298193825 -3.188446423579788 -5.547963762019459 -3.084210008014707 -5.455917359636779 9.786699342693437 5.187761707039861 9.788839147541859 5.253312413537652 9.922430373158782 5.190824752621799 -7.145525731979204 -4.817805868584787 -7.160457645539334 -4.755598122927399 -6.986837805824555 -4.750904001403897 -7.483295488943362 1.294369059431125 -7.470463793862006 1.354660613111123 -7.31103840698762 1.361009120311428 6.881649825720019 -7.670249048375972 6.856544048754383 -7.717318289784595 6.683044259209378 -7.710132874045667 7.317699265603245 -1.950701463566985 7.120994987223083 -1.948412976077941 7.318376001159224 -1.879007408459161 7.766049575695377 6.552356395311159 7.786194044848958 6.510191777413938 7.589774807722749 6.51813660449934 9.254894854813308 -0.9167324311530829 9.251828858045037 -0.9883781916903132 9.117351816742602 -0.9632363091250851 -1.982309787171781 -9.922074844160122 -2.060492157904909 -9.832445370463676 -1.921207073352141 -9.890653689399986 -10.51056860374297 2.016015618555436 -10.51792275925669 2.085848276703532 -10.40082334930702 2.114317789569848 -7.49314568257528 -5.340838364669041 -7.505417731384425 -5.27895082270685 -7.398593744524085 -5.250266616605737 12.08861960841357 2.223505573629072 12.2246392897392 2.237930092997413 12.19558824656419 2.176469155941045 -9.082413289877996 -4.500351682102474 -9.230723233076891 -4.508845476695185 -9.091222908222381 -4.437425103374943 -9.538971140293358 0.7639018314802899 -9.700426783931356 0.7563121786136131 -9.534228775932153 0.8249186147743608 8.953673465312455 -6.656840922109682 9.136377463864346 -6.66537959219897 8.939657763412649 -6.706680719685711 9.539691719965946 -1.954578911020664 9.355164015014479 -2.021311301104733 9.356565505040091 -1.949623746869203 10.7944562209931 4.052829613292501 10.63479582713684 4.032857501580568 10.63415601126062 4.07789891053692 12.05920402376165 2.471950311626575 12.18110101014687 2.420686182282084 12.04524913194961 2.405314162297308 9.12366088350826 -0.8974698045951367 9.258091254390305 -0.9226224614788939 9.120547968420148 -0.9691258857088608 -1.122937561091825 -9.824524100992694 -1.054521833974184 -9.799080539978482 -0.9788016713196168 -9.874896799058696 -10.63994222865009 2.013344136466253 -10.5313333906328 2.112424293986295 -10.53294434199304 2.041624391548812 -7.658675245157602 -5.219586359468224 -7.563154659508778 -5.129645800995207 -7.541765733577965 -5.190687244740161 -9.25693001115855 -4.476700069364923 -9.280497842167719 -4.412677530949329 -9.117321972355981 -4.405410063963603 -9.75194697604057 0.8050374882700758 -9.734291427957043 0.8651552426396674 -9.586019237741056 0.8740475798645565 8.959458485297599 -6.67860020564394 8.923030466450507 -6.72824937476961 8.761886579848687 -6.71730215270895 9.539899347741693 -2.02944867211821 9.356980925718609 -2.02450977523127 9.541509274825991 -1.957778487452107 10.58652388997379 4.475738711935919 10.60882456347228 4.429640890670481 10.42775883666963 4.451752938820059 12.81878013776671 -0.7652441303818351 12.77911016892721 -0.8251357831316858 12.66864828306061 -0.7897086307946575 12.2174057480242 -0.9947482030301438 12.21415962675243 -1.066400626299469 12.0818955755303 -1.047199080864409 2.680140713861819 -9.854129518448586 2.614587204288861 -9.76177390822841 2.736547990027956 -9.814443502461552 -12.55698078725072 -0.02273720273679344 -12.57443399692328 0.04673022257813429 -12.45856719501374 0.06886924070817679 -11.44604302940786 -3.451446251740729 -11.44625717491325 -3.388128464041027 -11.34062169835765 -3.364461700485352 -11.04851561536026 -3.886396738717834 -11.17940583363626 -3.898760344917689 -11.06362245131458 -3.820811774587051 -11.56489473465991 -0.1930486704129845 -11.70830084627451 -0.2051180758801964 -11.55842790029177 -0.1315574553065221 10.74996414946448 -5.26395477433929 10.91166911937525 -5.280126411087791 10.72650231030536 -5.318228148162276 11.51117713583039 -2.066834505920978 11.34639166853562 -2.12937481160158 11.348761264778 -2.05771767986751 12.52935446170226 -0.7642104022846729 12.38853103925172 -0.7636481978390624 12.40088535149176 -0.7152920271831872 -11.54096219727708 -3.323997394407981 -11.43448276973542 -3.237814100508409 -11.42542642437748 -3.300642255855967 12.69605081552178 -0.557769436970603 12.8218132780685 -0.5952775935331 12.6721201477554 -0.6213527715665864 12.08489271922964 -0.975098983348563 12.21712208686263 -0.9942991072373359 12.08161188898392 -1.046749944485742 3.84491264716146 -9.535431972259664 3.717574312810627 -9.491336030605259 3.778404646834254 -9.457580504182932 -12.48608670189704 -0.05521616486810895 -12.59217633466384 -0.07759047874737915 -12.49468872382924 0.01462665307592227 -11.24777770535109 -3.813626414247613 -11.27347093805358 -3.747607198916761 -11.13148889186723 -3.736144859558363 -11.78274753405902 -0.1901089938064303 -11.76446669890119 -0.1286500032508171 -11.63369688121841 -0.1155216047110243 10.78554273978905 -5.369913416267781 10.74214118692316 -5.422978702459687 10.59961140871281 -5.405636914741278 11.50697981210647 -2.135091010132068 11.34438709461597 -2.125960844131605 11.50917169502004 -2.063419124941607 12.52869414805493 -0.6720658251114389 12.53418964284194 -0.7275289658485421 12.38787205617552 -0.6713255647413392 -12.66812017787089 -0.7377636034755921 -12.6557152856829 -0.6752903732675847 -12.53827364064838 -0.6576259523312927 12.02975326339321 -3.200635946145051 11.98508371934015 -3.256871307150082 11.85918602032538 -3.232351940419628 12.60435450639438 -0.9349079872896567 12.60157650081571 -1.006572103563774 12.45606315085875 -0.9931755094944339 9.646099704192091 -6.540311077321691 9.616778072070421 -6.594137719524099 9.519244071721854 -6.508160679276509 -12.39737880649773 -1.803269368389568 -12.42142226650803 -1.735696711570993 -12.29325113874864 -1.719860038178735 -12.35201737779743 -2.734203352197723 -12.4665514071796 -2.751788587100053 -12.36681915305359 -2.666148389687829 -12.64378379789673 -2.148232168059666 -12.51753427489609 -2.066951456210427 -12.51889655292754 -2.130061439833859 12.13497871476274 -3.30423750600422 12.274323170788 -3.331055450699581 12.10818011923135 -3.36371192408869 12.52820093160765 -2.16348230398198 12.67052707297118 -2.177897199084264 12.52526689361987 -2.235137763657174 9.083727460491037 -7.235691707836772 8.956155993504925 -7.205611650119923 8.99884526827284 -7.161259838071032 -12.24950799258057 -1.850527582120462 -12.36722712375889 -1.867009383604301 -12.26364197454243 -1.783183058732165 -12.66188702262465 -0.6721380147752802 -12.53123560125465 -0.592814061286445 -12.53397521977916 -0.6552606075227748 11.96142489643524 -3.065586715165786 12.10453445883291 -3.090260905828021 11.93462105317904 -3.124079108265068 12.45901845887403 -0.9217868859907208 12.60451088997626 -0.9351777987968065 12.45621938669737 -0.9934450883106137 10.1922942062558 -6.001327089984576 10.06294871829891 -5.976050917545559 10.09993699390079 -5.929644293427442 -12.52213590676956 -2.614090488894461 -12.54626210722259 -2.546362135107309 -12.42097186366522 -2.529495936389581 -12.64475311492307 -2.140105917930304 -12.63265295654619 -2.077613511697214 -12.51840217321106 -2.058922789721463 12.21208464367354 -3.500534444088139 12.1678244191901 -3.557480530298427 12.04531208481726 -3.531140853334366 12.67054540006644 -2.177933302011313 12.66756563078661 -2.249579074857127 12.52528518350265 -2.235173808143825 8.320623204678105 -7.786959163113103 8.232874929095363 -7.697636149700083 8.357082193647491 -7.735438167397502 -10.92430361763545 -2.83306346094682 -10.94912627808307 -2.767660088846366 -10.80220340211371 -2.75712106249809 -11.46365995656451 1.11449201724629 -11.44534506784558 1.175291965449422 -11.3105776325685 1.187499866469894 10.50179575822348 -4.91802020301214 10.45921696766879 -4.970403694988755 10.3130884381685 -4.954416311874142 11.2150058757459 -0.8893648689627063 11.04848006968411 -0.8810920936825015 11.21704215856316 -0.8176907419769754 12.48882793122139 0.8001832150614913 12.50011544374162 0.746133328072065 12.34514220832967 0.7947446575729812 -12.25834708115401 -0.7167472920872547 -12.36460762954684 -0.7402274224586559 -12.26627320370312 -0.6466868541445741 -10.96165087025318 -4.791064051735776 -10.85747041594138 -4.703929326199413 -10.84699529529141 -4.766603113113328 12.66110003515725 -0.6448085608565688 12.78502636494957 -0.6848121031570447 12.63855556857809 -0.7091562363563319 11.69049556089854 -2.192029447741701 11.82201748319881 -2.212313174264094 11.68712959843341 -2.263664635868686 2.786442773881154 -10.03592408610541 2.657202691118821 -9.990154442073933 2.7203563364341 -9.958392385442188 12.50121610250245 0.645933275879893 12.35746638012572 0.641667854665042 12.36503647428866 0.690579099150778 -10.72767626807281 -2.902417657010436 -10.8625393063809 -2.913953713118199 -10.74082400116297 -2.837629898732242 -11.2701753075792 1.113743778931909 -11.41702951810472 1.102607233037831 -11.26352973655104 1.17507062539224 10.47431528209601 -4.874675603876916 10.64014284200808 -4.889237561558042 10.45222726449447 -4.9280861002243 11.21665097345873 -0.817026028592214 11.04808904603521 -0.8804276459384789 11.05014366576572 -0.8087556813547585 -12.32108748035685 -0.7063977391578555 -12.33684084971447 -0.6367128941778316 -12.22194144423427 -0.6133888617183338 -10.8508644666914 -4.910544994711315 -10.85354164840268 -4.847352146849595 -10.74773297143062 -4.822641437402077 12.79415567435181 -0.901735537730742 12.75609267059029 -0.9621013067410971 12.64729378391449 -0.9245750335657489 11.82346278774114 -2.214655706131431 11.82002304445178 -2.286294249986722 11.688574935385 -2.266007220419015 1.613855925203038 -10.23514118395188 1.548410783550392 -10.14313216949229 1.672170999325572 -10.19747212894398 10.10509617256335 5.307495219048317 10.12906687701174 5.261973918342235 9.944409369026371 5.280611820303632 -8.938545594816175 -3.385637841338056 -8.959231894214225 -3.322079906361745 -8.794975086676027 -3.315409192563738 -9.371371790257051 2.01601562795054 -9.354278062269634 2.076078003192116 -9.203496739719563 2.084377204684571 8.620490640664896 -6.142056151301214 8.585891689944674 -6.191186512474318 8.421924834222999 -6.181126961747228 9.171453351342711 -0.7862006098504798 8.985374646398356 -0.7818597160135269 9.172740030121522 -0.7145175685324635 -10.02184885624744 1.27664421782956 -9.909616753078108 1.376620927098016 -9.913116109148708 1.30589626836735 -6.668820369006065 -6.3888858489672 -6.787547417719502 -6.418614984929631 -6.691786442499998 -6.328294035798993 11.72108212861239 2.422488147860282 11.84399648985425 2.368936246423897 11.70933061303161 2.355741298847008 8.348507779772081 -2.090569958369155 8.484904921841803 -2.116752510561905 8.345353592093668 -2.162216634558236 -1.82738260852769 -10.13217269407754 -1.75873619458932 -10.10753064839566 -1.679407571285809 -10.18319392408976 9.172574094289658 -0.7142259494379865 8.985208768195092 -0.7815681961441532 8.986484830219609 -0.7098811786373334 10.3741582950887 4.891032705646279 10.21231675430306 4.868846279788393 10.2120809399966 4.913047224178735 -8.721015915563411 -3.466105233634645 -8.87182758105471 -3.474055929503595 -8.728511102395748 -3.403506917456138 -9.155565803861562 1.976448371447795 -9.319793013159728 1.969497366493955 -9.151669602591923 2.037480184017877 8.619823578614357 -6.181328665513821 8.805739843936904 -6.188827872184205 8.608037714300634 -6.230521110804173 -9.877284333470186 1.256905021379852 -9.882799551871313 1.326569015030331 -9.763898746457855 1.356073012091971 -6.634224302748915 -6.517920402656922 -6.647956918246396 -6.456481116238631 -6.539300411065627 -6.427054274292626 11.75295215948591 2.141939069617363 11.88773990574985 2.154340074702622 11.86086369420799 2.092941713259929 8.486623141134281 -2.120047596972245 8.483579289708688 -2.191693814469742 8.347071658155628 -2.165511429901186 -2.624212925449276 -10.15064480514148 -2.706920319159464 -10.06139568049478 -2.563563972384996 -10.12001192494219 6.905128364991542 -0.7157663462809335 6.706982149809622 -0.7137726112372038 6.905685887765163 -0.6440736422712722 7.291385085460716 7.16053165628489 7.309840309385741 7.118782615639108 7.111855348723685 7.12544493858975 -6.736892803753619 -3.755182909130092 -6.750374055509518 -3.69320837269109 -6.575421187924434 -3.688767774615201 -7.068584075832563 2.475211961078289 -7.05692673767198 2.535628676349578 -6.8962792139153 2.541700844445098 6.490424106918721 -7.108821293216964 6.467713749312748 -7.155583273790948 6.292837673619022 -7.148740808790945 -6.236143753315759 2.348465962161977 -6.101475582455138 2.45147931704271 -6.113000472235257 2.382271665968184 -2.319938076792037 -6.543427589147638 -2.454678179618663 -6.577258530081625 -2.347228569014471 -6.484856323560032 9.21657005487458 4.976425101198499 9.217030817197978 5.041360744536497 9.353995775891198 4.977238798808156 4.276763073580272 -2.009784836798928 4.120242250038147 -2.049900192570037 4.122539147813649 -1.978236748381537 -4.788173852738191 -9.523907708578999 -4.721957171919164 -9.501519083631466 -4.617822128234676 -9.576809867399767 6.514362576025462 -7.204773302166274 6.712475200188893 -7.208267905961661 6.515799130000541 -7.250878757087985 6.90649597847858 -0.6455226806804572 6.707791985152818 -0.7152211991066345 6.708346151468331 -0.6435301315091279 7.667558799678972 6.762320860708827 7.486522609131087 6.732405373730895 7.493166052638109 6.774187271445335 -6.513722224920572 -3.838874349262564 -6.674381637394875 -3.844748639390658 -6.513091796844782 -3.778060726471683 -6.842947048790961 2.420958041906638 -7.01794189797377 2.416364241220615 -6.845456297039751 2.48256248158162 -6.050637277326548 2.254905191196734 -6.049412758603382 2.322619185522681 -5.914926379359914 2.357068195700977 -2.308320482126599 -6.660328640144927 -2.324957880932171 -6.600542708138916 -2.201486606224465 -6.567485658682623 9.221337604460567 4.76580044886155 9.358763786175485 4.766564479856735 9.342243733787802 4.70806709794962 4.274390944644534 -2.081184769515353 4.120134128726166 -2.049636892959227 4.276654940332099 -2.009521508367151 -5.353563659506532 -9.472747231332079 -5.465757103480144 -9.383725404633548 -5.299210596634174 -9.443658526530237 4.01795733860726 -7.946677496125321 4.008440497215478 -7.99218509072781 3.832187822096989 -7.985806230715681 4.473964104932032 -0.6779511285841976 4.27418090413199 -0.67648369913303 4.473830216089857 -0.6062588129077937 4.741689778330031 7.962921652458548 4.748162475832153 7.921123172862993 4.548487343279458 7.9252669919763 -4.321388913700464 -4.105619606925039 -4.326317680033606 -4.044927686173337 -4.150000887048926 -4.040997928507854 -4.640229805035218 2.795979829008918 -4.635943867340972 2.857523599764584 -4.473993895036286 2.863098452121417 -2.332816992403701 2.510511649805565 -2.47346728346775 2.473516439511946 -2.319136483896051 2.577371894397588 1.180434235726424 -6.150961901526562 1.026599371140038 -6.187921333040047 1.155088899660314 -6.093098971734511 6.001738772212597 6.491536344311743 5.997068601180984 6.551347183971659 6.153785360024773 6.481536522915294 0.6140021512227728 -1.966802477791774 0.4368443898826924 -2.002690295403096 0.4382864708787215 -1.93101388333201 -6.992581283815026 -8.683527396401857 -6.933821119214811 -8.660339945850341 -6.805287334771601 -8.736773337055197 -4.39720013907419 2.719632112681811 -4.573564435054072 2.715590763550038 -4.40711974467781 2.782388416036915 4.303566820589536 -8.087105222503734 4.118870596494562 -8.129261142657084 4.103805166534269 -8.084370096625332 4.47403121436948 -0.6066156042287847 4.274381844560351 -0.6768403886719054 4.274295152810143 -0.6051626048469881 4.943522953238395 7.621805236916789 5.119526523107883 7.612654526523374 4.92491740810982 7.579786954825032 -4.086258799484165 -4.207741200740353 -4.248216324410707 -4.213178577697287 -4.077018241495186 -4.148246067965332 -2.286632422320452 2.331957827939785 -2.285160862709941 2.397061826453747 -2.131422429209602 2.434999272540071 1.143597543452929 -6.258630231775132 1.130538154720602 -6.199334636958288 1.271649420195784 -6.163442199649933 5.947954844830404 6.306211203100156 6.100051171157892 6.296690972733831 6.087351659536604 6.243076447623369 0.6363852053372954 -2.11616549622075 0.4621232387497143 -2.080390606912731 0.6392835740040764 -2.044510653228 -7.396000247538519 -8.592289674988017 -7.536228840858669 -8.501629477156589 -7.352252016604588 -8.561606714430482 -1.992251873627624 3.069137594556995 -1.99526290260837 3.132332819027415 -1.840880027947763 3.139099671517681 0.986303489507237 -8.619818257433765 0.9882378254537633 -8.666222437088377 0.8203571460677778 -8.656878952667265 1.73930313475289 -0.6680557020219697 1.548793345031301 -0.6652938532232062 1.738503396454447 -0.5963806467824427 2.275282391915863 8.320437653037011 2.26836478902093 8.276277202155798 2.077987181714787 8.283548893795921 -1.539422638859084 -4.52111182133746 -1.536330157966407 -4.461223639044718 -1.368119422486145 -4.455967101051516 0.8427943360052032 2.234275839124005 0.6882719276239152 2.195363910262767 0.8531371082192651 2.29887979499915 3.926471921077349 -5.724695422071401 3.757475357493761 -5.763730842403976 3.907097816369042 -5.666478387738177 2.694120461954414 7.139504741171798 2.690376907532083 7.193962526998284 2.867880763625536 7.121188405672213 -2.340657171133343 -2.017359950187927 -2.535454440634304 -2.050467478858239 -2.533200376064993 -1.978798301918892 -8.828661937859151 -7.668012617872336 -8.780273985907968 -7.641995380924155 -8.635228694626996 -7.720233015551211 -1.294830378688606 -4.636698978082613 -1.449220140721894 -4.643367878898248 -1.278157903380341 -4.577832460690896 -1.749405044982786 2.991742383849651 -1.91756898316699 2.986413745460856 -1.76596462792328 3.056063568143478 1.325422693043524 -8.779476032537506 1.160677743878615 -8.819717258011629 1.135022182389053 -8.773697838009975 1.741592942901703 -0.601668250011042 1.551882097384761 -0.6705801036120539 1.551023803178467 -0.5988889786872379 2.466267129561606 8.0228018553836 2.634003226567327 8.0115631732706 2.435490355614513 7.978966819008738 0.8237370965992558 2.070639919214244 0.8208815136375675 2.133453983703914 0.9891930140569999 2.173570874291884 3.854445954600101 -5.827005108856018 3.848735286997988 -5.767192321719023 4.003711552841845 -5.729413886187937 2.550374726944825 6.796833780674253 2.724348651612159 6.779818555476862 2.706697415328707 6.732995750532142 -2.351382516112003 -2.052469125242277 -2.545446165170833 -2.01389098677349 -2.350650018235103 -1.980779370948002 -9.100566873162702 -7.52730130613514 -9.260386493312403 -7.434443173150337 -9.069899885370543 -7.492984194590505 2.099363166726732 -4.94203785703949 2.107203094554858 -4.882044099013946 2.259402164738622 -4.873130464253538 1.243529233091322 3.310045858944677 1.235813553299132 3.375391656590128 1.37473014647636 3.385627353047777 -3.351342190965849 -8.626228931742908 -3.346345348927424 -8.676325475586459 -3.497144026037172 -8.658024668066801 -1.677284560510524 -0.70633768106393 -1.851016468452078 -0.7001310367739958 -1.678954119171283 -0.634655407848723 -0.4118333013120634 8.395431052259955 -0.4298418410845212 8.347399916026566 -0.6026516654263514 8.363131482196927 -0.2378507836692079 8.149854355964495 -0.08696647781522904 8.131797445751307 -0.278727906986147 8.103162072266287 2.384782100741672 -5.082399466842356 2.245869039417281 -5.092664783458099 2.405431214540438 -5.023076447958078 1.475431700269857 3.243216126390903 1.323272414485122 3.234281508318627 1.454753953233677 3.309560615052864 -2.948035965690998 -8.846868381591575 -3.0924920136427 -8.882261956682696 -3.120792491386729 -8.831130965139387 -1.684593072115199 -0.625485532760107 -1.856654181201284 -0.6909631785153511 -1.858376963653818 -0.6192761170688331 -3.500683618123513 8.064882940053439 -3.525719444789873 8.011719666304421 -3.673050247634391 8.040856603974447 6.955644786533308 -4.747620095717669 6.81761152413446 -4.823559727099589 6.823492521271798 -4.762227160851196 5.315804866404559 3.314816904079104 5.436521058611903 3.330070906469733 5.323293291429909 3.24676187210137 -9.029669298622906 -6.244294517972814 -9.038908690770507 -6.2995864057601 -9.164955249885221 -6.264990066024588 -6.168696811301597 -0.7901060687980691 -6.02002624362285 -0.7298413413179093 -6.01737032917005 -0.801510764651425 -6.16716278695688 -0.792436855045515 -6.169715512734515 -0.7207820874583649 -6.018491961441754 -0.7321725211963476 -3.399712071176042 7.918858619107905 -3.271454875195229 7.889857442398896 -3.444340954945617 7.868263918577964 7.17276412510656 -4.850090869232007 7.156443691189562 -4.911518846998646 7.03582601934696 -4.927247750974769 5.507385981112565 3.267901631020001 5.52607702653324 3.199214961373389 5.393829927214853 3.184869575963909 -8.780046658568089 -6.508224285157986 -8.91452077770985 -6.531969444126121 -8.925059965119072 -6.472337947996555 -9.922286454553056 -0.9076299356093774 -9.791389594947722 -0.8525954506810992 -9.788224450349521 -0.9242350953684234 -6.370729092607941 7.23003170987289 -6.398506628403295 7.1724565055405 -6.523965758672695 7.215836227131745 10.75180389353382 -3.333018557809622 10.63561920186676 -3.416254407804016 10.63332092034774 -3.353525140831295 8.861705302952519 2.5712636309005 8.96922414584018 2.591466117381528 8.86529907640135 2.501077716399933 -12.10395207533582 -1.484660583795291 -12.20813095702387 -1.435903437710017 -12.0704415276492 -1.430533718292126 -12.05997770552258 -1.469396477281094 -12.19761975125221 -1.475471628350712 -12.17729656161256 -1.415727212050378 -9.936513878679747 -0.8868328377047231 -9.941031714176686 -0.8152174882354868 -9.805618656606432 -0.8317959425747208 -6.350003871811573 7.141549793466944 -6.240040498119259 7.101239011052403 -6.393473694344706 7.088424407995349 10.86068419727297 -3.300221888996849 10.85283791380745 -3.363278468703162 10.74560599350948 -3.384403612544038 9.119938093338734 2.439500074086822 9.133588361276352 2.369530245826872 9.014974260452364 2.349857548717207 -11.34376110431816 3.005857236292954 -11.44515614595066 3.060354317536095 -11.29002185008157 3.050999593139427 -12.25670379789215 -0.9574911001626694 -12.12589329598696 -0.9082455332686441 -12.12130202099527 -0.9798579923255602 -9.368746114816725 5.616394312373524 -9.231590812440061 5.616210041075912 -9.254590353091588 5.555676288744566 12.30270697279117 -0.732113087700826 12.42055141167946 -0.7052916998320605 12.31711944278753 -0.7944483502396152 11.70206617194429 0.7552865135110995 11.81185224631584 0.7810748303386988 11.6965028844164 0.6846329028614195 11.86898635413291 0.6722763530350459 11.87104552223794 0.6023187115769892 11.75269972310422 0.576533515244516 -11.39277574246463 3.269682934449164 -11.35175394290062 3.320805416786018 -11.2377670077281 3.25911837798393 -12.25821608909728 -0.954946958328069 -12.26218871199502 -0.8831442064389639 -12.12740511085889 -0.9057021744526329 -9.333951301784506 5.540363222778258 -9.23292955156092 5.485609947104076 -9.370084887883374 5.485777856076087 12.41957133901145 -0.6324110322915311 12.4263289770214 -0.695343898136144 12.31693024407344 -0.7221315217553045 12.48016826144953 -1.243753167471799 12.34429480398159 -1.343183971445835 12.35994238710784 -1.274298751779843 -9.012147787148093 5.423597290302976 -9.128325238038466 5.480464172696799 -8.952856952283797 5.462060318680178 -12.10973869944608 -0.8469973304044502 -11.96284437797668 -0.8036370920067902 -11.95954120685193 -0.8754608307159759 -11.59627193385536 3.202584298451698 -11.4634983598959 3.186144490736025 -11.47748464315625 3.125592926579735 11.39625966559125 1.193500293933925 11.37247793831953 1.253822805125405 11.50329825389713 1.28557192066328 11.43225516515759 1.35086468307398 11.3123654752576 1.319512047249267 11.41840644118666 1.412295310967418 12.46281297284593 -1.296848130028971 12.45721780484478 -1.364651136073806 12.32617515034154 -1.395628597027183 -8.996283755064813 5.7748702589918 -8.951666168716843 5.819630807753827 -8.821147903244956 5.754601321140991 -12.10471953603337 -0.8572592189670679 -12.10747121001836 -0.7855993752540388 -11.95782322851087 -0.8139031445575967 -11.66785457757601 2.988319697594459 -11.64107809660029 3.041236477413251 -11.53480109354982 2.973345703310676 9.425181677324584 2.212623701020339 9.400153583337911 2.271824722148035 9.54936163552995 2.307611764388428 11.2983943217303 -2.680294155958691 11.3167793430654 -2.613905556663458 11.45398999527297 -2.579713660922916 -6.609979410302995 6.555939244904025 -6.746869313450294 6.614845996702235 -6.554293726341641 6.592222662943728 -10.38122554630156 -0.745612633570873 -10.55178606745953 -0.7123105628725666 -10.38319056391241 -0.6739367703322631 -12.65732301542027 0.3863514875253744 -12.51549067466984 0.3546774704142022 -12.52221478068862 0.2979685253638622 -12.67911423682639 0.08600577763682274 -12.65807679297375 0.1339171034732307 -12.53628126281827 0.0572487219030826 9.470443121160606 2.347147236634991 9.333542009577753 2.312195929114243 9.457104877662456 2.407680697034803 11.38447033618222 -2.643335396576386 11.23490984120818 -2.678319849214413 11.3911261480459 -2.578336467346423 -6.587708889966835 6.935378655373325 -6.549315343445682 6.977721645207256 -6.395511963141001 6.910843381360522 -10.3827479645972 -0.6751291178904675 -10.55134356040148 -0.7135026595921468 -10.55329357905936 -0.6418351223251259 -12.54321914504149 -2.218647066826399 -12.3837820178911 -2.262221731699633 -12.38954532724651 -2.312707613476549 7.279475221502429 2.702294269062388 7.258202288185225 2.761407272932601 7.423784776443614 2.800175566198119 9.545432887655039 -3.368731989611771 9.560826135908778 -3.304656729018584 9.713126490345431 -3.2678948843385 -4.291305521677162 7.150081122961999 -4.445698079219057 7.211038928586153 -4.244354307513261 7.186700167875324 -8.389282297838969 -0.6214431932966419 -8.578232357696681 -0.5844146002130058 -8.390465289713081 -0.5497652814628296 -8.390767151360857 -0.5487576391848469 -8.578534171083605 -0.583407119780339 -8.579698435852466 -0.5117154431111796 -12.43537005342288 -2.541751964905157 -12.41345742118862 -2.500664840718393 -12.27413943234457 -2.581031021514565 7.312801710123706 2.859883214523761 7.160856647368313 2.822222522147044 7.304553402565933 2.920660158772516 9.633311601774835 -3.292529013834861 9.467408900084184 -3.330402415249695 9.635557604886044 -3.23003540851381 -4.278571776868531 7.539863273500846 -4.251362540932578 7.58283139246282 -4.077599424388679 7.513693674238044 -6.29335632842592 -0.5214520223250756 -6.492605814868599 -0.4822880308652268 -6.293803551570187 -0.4497553586592444 -11.64235809494519 -4.319024808846037 -11.46509382688498 -4.370591264740194 -11.47640619199758 -4.414250226930309 5.054816115548261 3.050139743656006 5.039950924368886 3.110133004083711 5.214708111952201 3.151620237850744 7.577664411258514 -3.751820865648637 7.586360150911093 -3.689677659961227 7.747067274487477 -3.651462485883278 -1.917097294782449 7.525945587053175 -2.080846122094815 7.588721053652636 -1.881633387588275 7.565010948047002 -1.921127258480661 7.896927179977313 -1.906710346070583 7.94261089448567 -1.722236273243561 7.871600580651387 -6.292566439838838 -0.4544225744093013 -6.4913688695174 -0.4869546174149007 -6.491854624348844 -0.4152691934974535 -11.30505290103937 -4.673726136626675 -11.27690437572564 -4.638869538785145 -11.1246780624565 -4.718118237880796 5.088688143707718 3.212501917741875 4.928388931467554 3.17324083859975 5.087701423255209 3.275283794461239 7.679669553937385 -3.66347746606246 7.50458309063117 -3.703017469134509 7.67431021886715 -3.60299871434307 0.6996151188652344 7.725383840287953 0.5367390253324689 7.789101629120368 0.7235584372046083 7.768521460429608 -4.0304199872564 -0.4525178958320339 -4.228998470122891 -0.4134755536381191 -4.030212752661576 -0.3808316388062449 -10.07876403360383 -6.0974257405 -9.888916304351143 -6.149508101492421 -9.909146381347247 -6.187613894822916 2.649759067226831 3.377763100537905 2.642120622030253 3.440261576999215 2.81657339720568 3.480132420853204 5.473761289466534 -4.084697247308223 5.473939406137715 -4.024071885298348 5.634230440431742 -3.985641585990616 5.548812606004653 -3.973459956805778 5.374060335745256 -4.013190989162217 5.534912246617022 -3.91452025849031 0.6931165104629631 8.085070269535777 0.6963369416731116 8.134635959577771 0.879665016491066 8.063021733454999 -4.037599337315415 -0.3530293567286862 -4.236384110376655 -0.3856768302963634 -4.236104917286607 -0.3136223144064921 -9.898232527648123 -6.183104866159721 -9.858918028540105 -6.153749138227793 -9.707133812399878 -6.232274538142961 2.691798244858481 3.526463766325558 2.531943503059076 3.486924844189506 2.698247554331419 3.589806674028978 3.082081187941093 -4.465409680165303 3.07377663751358 -4.405821239983794 3.22503623500764 -4.368513175742105 3.58578458189039 7.674340291589815 3.75321249608593 7.658674571967698 3.73754410839752 7.610599105556862 -1.494450632672106 -0.3824210123169178 -1.682781354543124 -0.3441496521552638 -1.49340372038536 -0.3103708684648485 -8.625414143109291 -7.245785380893075 -8.780660692114449 -7.153643309371925 -8.591113416765756 -7.212767687665056 -0.1087167556986124 3.683453210426043 -0.1098028950304958 3.746993228289769 0.05471275126923469 3.786623270121855 -0.08865781898262037 3.82850185208538 -0.2394578044990775 3.790059610255885 -0.07660648582358653 3.893793921393367 3.134864807710613 -4.349260287608189 2.969944694451996 -4.387780244431911 3.113309190185412 -4.291258829799207 3.695737596866848 7.88766705489126 3.691603185322147 7.943354964450992 3.863013199932308 7.871024852929904 -1.488054154630252 -0.3289354281000696 -1.677432443479252 -0.3627119402626852 -1.676464332671698 -0.2910243414762917 -8.327004756704078 -7.284071928224889 -8.275235605677009 -7.259079190765347 -8.134490188075422 -7.336931313708036 -3.446700910458202 3.849860546874504 -3.444540810896324 3.915815413352899 -3.296965250116518 3.952813658761782 0.1476508044566194 -4.935405220347271 0.1329601974875749 -4.876091169627454 0.2685892390158162 -4.841014956222171 6.962508546912947 6.842232653552305 7.109665008093557 6.835797973849037 7.096414218120602 6.780997767936586 1.691057387326594 -0.4026909594992563 1.521995388945184 -0.3681074705290025 1.692832050902842 -0.331012909742998 -6.841311603229078 -8.291401132961235 -6.973176407778905 -8.201224289159466 -6.79401525273343 -8.261420355118384 -6.380805753141919 -8.292039825095348 -6.319222226811345 -8.269338376016222 -6.198141689366169 -8.345324135262887 -3.483386627440059 3.993444753164489 -3.618579957335738 3.957342610922335 -3.469685600219242 4.061048062723969 0.1734090589833454 -4.821658883697502 0.02545944937439482 -4.857715828022043 0.1468645784761846 -4.763697051195838 7.008004022004116 7.015533252580459 7.003667023039261 7.077145827039529 7.155130362017395 7.008685579427924 1.696837374782633 -0.3424533629032008 1.526000253588872 -0.3795466148189169 1.527735688721861 -0.3078637643182571 -4.609566789263434 -9.205519494100448 -4.712196887254752 -9.1166309698513 -4.552586593640797 -9.176311384342677 -7.335926336140776 3.501344658873248 -7.336090136062639 3.569801646769853 -7.207424733829447 3.602826827519697 -3.604855654207896 -5.30422825132537 -3.621458193344325 -5.244019973485324 -3.503427236732714 -5.212022770707214 10.20890948835965 4.912754188318949 10.34385705017712 4.917183668851282 10.32463024713863 4.857359080885999 5.617079606326176 -0.4087090388779297 5.614529778436362 -0.4803768235417171 5.466665880062625 -0.4504418947803532 5.465513998147964 -0.370397045064424 5.61334104460501 -0.400328856764548 5.462927715328628 -0.442062598113118 -3.959927008171782 -9.166617350452173 -3.892221284138974 -9.143924259315345 -3.796210649422447 -9.218964019946055 -7.518705425007282 3.56318260729297 -7.391316800806528 3.66552945671989 -7.400899399851348 3.595688743993093 -3.637354251897245 -5.171346676645626 -3.766315528500788 -5.203961660208352 -3.664166289010515 -5.112249941182268 10.18459634480319 5.068905936576128 10.18817943759912 5.134853659211896 10.31952839317151 5.073618818198497 9.801686196180491 -0.5237914814620348 9.798433179787889 -0.5954402230658886 9.664277113009604 -0.5710552978815334 -1.567008929643396 -9.871758577509121 -1.640781020201906 -9.78296132191822 -1.505544608527762 -9.839916934999756 -10.92318158987221 2.128753694533634 -10.93182117799355 2.198670496554331 -10.8157675181759 2.226307235163676 -8.046811891065453 -4.868776691289468 -8.058273959862701 -4.806679999265388 -7.95429548563077 -4.778681563323726 12.27753300923371 2.043204884569114 12.41587332788536 2.059088809975417 12.38533685313047 1.997607191448191 12.25374165118651 2.273918551406887 12.37622299280005 2.224433316395436 12.23807710365099 2.207534607744957 9.639405531462138 -0.443234258880393 9.770669066873262 -0.4675270877429548 9.633263139090937 -0.5147965807838888 -0.8068622647747287 -9.751157414050727 -0.7390683711478735 -9.72443536438672 -0.6673692466574432 -9.801359563882809 -11.02593410945303 2.116445005509541 -10.91949300436063 2.214656301674535 -10.92171054612782 2.143873712930612 -8.354324784230016 -4.627952817242197 -8.259931023427683 -4.539070976883634 -8.237237441851384 -4.599896794204487 12.79266206233665 -0.9385981505235493 12.75156240082418 -0.9978715662618307 12.640751986495 -0.9642003636433475 12.44014876984172 -0.6018753560009648 12.43391497842397 -0.673432786761746 12.30165062889963 -0.655073567767769 3.433798058562158 -9.646757419633014 3.366576847926532 -9.552636807777409 3.487265769094727 -9.604459259227655 -12.67366436821154 0.06327042355108598 -12.69054057867328 0.1328187313951262 -12.57355088575061 0.1541380154524462 -11.89780025416519 -2.671329031703041 -11.89850957366648 -2.607939973174148 -11.78930411163973 -2.58506654452211 -11.86679791899832 -2.720740160880428 -11.75871842641653 -2.634154602720348 -11.75160264488553 -2.697926282921187 12.67985626588935 -0.7454552885333471 12.80633042858929 -0.78101058651027 12.65491783461317 -0.808375809207925 12.29370488540646 -0.5657502789823955 12.42892083029588 -0.5842030792690948 12.29042011780475 -0.6373971477570675 4.666369350262223 -9.233255228807497 4.539976545409513 -9.19067103849998 4.598673959890117 -9.155226877193503 -12.60671987881273 -0.04008266309577988 -12.71631214269975 -0.06178105213171261 -12.61798780830803 0.03028756614059104 -12.64775302197637 -0.1716394666262745 -12.63376577286065 -0.1085752984250314 -12.51563622508443 -0.09134116209380108 11.8718498564201 -3.236091347128322 11.82706360313676 -3.291792186763279 11.69852394158044 -3.268560825178234 12.50858711201633 -0.5112305291553186 12.50586242915174 -0.5828919323844278 12.35772964751408 -0.5702459644825559 10.50172401220205 -5.605301514386396 10.47832242189326 -5.660524211899692 10.37256237910686 -5.577917520336098 -12.26057633247983 -1.657196858345917 -12.28662152440635 -1.58929437583228 -12.15615173504133 -1.574132887186072 -12.15411772740797 -1.618299883977775 -12.2725565886736 -1.63416595644146 -12.16795183082427 -1.551242387073698 -12.61131799242071 -0.02015374192480997 -12.47725567640437 0.05812361788573152 -12.48101455674324 -0.004117269420730918 11.81173465244481 -3.125727746290349 11.95780249175681 -3.148876677813699 11.78516755658687 -3.183549476282655 12.36031281982692 -0.4983958535245435 12.50847923160441 -0.5110484142038515 12.35762184619329 -0.5700639746462372 10.90620621368105 -5.09363532399637 10.77522502084391 -5.072258795960493 10.8077489459603 -5.024605676155583 -10.68864845065998 -2.55455621740603 -10.71313306542342 -2.489409085121871 -10.56367818363771 -2.479478575841482 -11.22977363661436 1.632251312131652 -11.21132626074843 1.692848965063889 -11.07409588962486 1.704445265413141 10.28908899766099 -4.858082536205109 10.24732473618666 -4.910050967066953 10.09844449383102 -4.895012793962303 10.97958363553207 -0.4640685802303887 10.81015082367626 -0.4564087800025247 10.98149539854754 -0.3923849763066227 12.32997748267721 1.719906435123948 12.34475518666718 1.667083206994886 12.18421600790133 1.710328105714628 12.36982989793857 1.508397449117879 12.22387765480027 1.500827385925978 12.22911457727385 1.549238358852193 -10.49704810409977 -2.615522139965255 -10.63436112072196 -2.626496325150515 -10.50970045751017 -2.551100829927615 -11.03538538335118 1.627905259033432 -11.18489774124952 1.617444806016395 -11.02886196560464 1.689158837988261 10.25924858758659 -4.842472303442993 10.4281027881423 -4.855881371326672 10.23822656986093 -4.895184834627975 10.98192110993328 -0.3931097750537854 10.81057636536067 -0.4571332976911415 10.81251018073159 -0.3854535266787559 9.730367119152808 5.767068993737939 9.754244433565511 5.722260792112578 9.567091049182192 5.738429733970274 -8.677996020170248 -3.048205804642975 -8.697847313106026 -2.984918359828509 -8.531714985668323 -2.978669862747076 -9.089362884542329 2.464115709916181 -9.072850819948432 2.524195731350672 -8.920294631802884 2.532087635379381 8.361553493798574 -6.033342915132951 8.328336447243949 -6.082018146740463 8.162411901259357 -6.072556959675273 8.892462674804984 -0.3668520613015502 8.704221058912331 -0.3629203536274807 8.89363833995432 -0.295162114521727 8.89497573996357 -0.2975159917516584 8.705558006249373 -0.3652734477418679 8.70676284588583 -0.2936022161711446 10.02759348426556 5.363335444688016 9.863049882418745 5.339606479460216 9.863221256372452 5.383311392066778 -8.455858395384974 -3.135704029654332 -8.608441279194427 -3.143269815162752 -8.46241171014479 -3.073407550625284 -8.863331305141637 2.415851805606997 -9.029484091262898 2.409324191094267 -8.860142972476787 2.476874456013834 8.366906520559503 -6.099632004239871 8.555016693227945 -6.10641963081676 8.356756027588144 -6.148305043552335 6.610614497481498 -0.3034504705566268 6.411593821678057 -0.3016433777460381 6.611118434348282 -0.2317740684684547 6.960088796820089 7.439059513171552 6.977086288713464 7.397450087739094 6.778157825414796 7.403377882836645 -6.450722167386379 -3.409408375563931 -6.46311260125781 -3.347663566968103 -6.287376973874669 -3.343401386641197 -6.761471839359336 2.888819790438602 -6.750762285145275 2.949310092292259 -6.589391875422425 2.955214371119521 6.192189404311118 -6.986634573495285 6.171206558458689 -7.033114258629384 5.995623802845925 -7.026531760350306 6.232673197980219 -7.109532399189411 6.431665779435432 -7.112723865213545 6.236069304306408 -7.155467054080994 6.613110217701095 -0.2353333759150206 6.413584994721523 -0.3052016066294995 6.414052518634684 -0.2335142881420584 7.339486247303872 7.068395044593074 7.156050049383133 7.037852634154685 7.164239462889271 7.079546035244175 -6.21273358368919 -3.516292226979891 -6.374114519069684 -3.522015703946565 -6.210986519573698 -3.455677150877848 -6.531647199667637 2.830929523977672 -6.707340474893881 2.82653589756132 -6.535073186614172 2.892629180248644</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2670\" source=\"#ID1701\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1697\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1695\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1696\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"890\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 9 8 1 9 0 10 12 11 14 12 15 13 16 14 6 15 2 16 20 17 9 18 8 19 22 20 1 21 24 22 8 23 26 24 27 25 15 26 30 27 1 28 12 29 14 30 16 31 32 32 26 33 15 34 14 35 6 36 20 37 34 38 36 39 9 40 22 41 38 42 39 43 40 44 39 45 44 46 45 47 24 48 1 49 30 50 48 51 27 52 26 53 30 54 12 55 50 56 52 57 53 58 54 59 16 60 58 61 32 62 53 63 60 64 61 65 34 66 20 67 64 68 36 69 22 70 66 71 68 72 38 73 40 74 39 75 45 76 40 77 44 78 52 79 45 80 70 81 24 82 30 83 61 84 72 85 73 86 48 87 76 88 27 89 78 90 30 91 50 92 52 93 54 94 80 95 52 96 60 97 53 98 32 99 58 100 82 101 60 102 72 103 61 104 34 105 64 106 84 107 64 108 36 109 66 110 86 111 38 112 68 113 88 114 89 115 90 116 80 117 94 118 88 119 44 120 96 121 52 122 70 123 30 124 78 125 72 126 98 127 73 128 100 129 76 130 48 131 78 132 50 133 102 134 80 135 54 136 94 137 96 138 60 139 52 140 58 141 104 142 82 143 106 144 72 145 60 146 84 147 64 148 108 149 66 150 110 151 64 152 112 153 86 154 68 155 90 156 89 157 114 158 88 159 94 160 89 161 116 162 70 163 78 164 118 165 98 166 72 167 73 168 98 169 120 170 100 171 122 172 76 173 124 174 78 175 102 176 96 177 106 178 60 179 104 180 126 181 82 182 106 183 118 184 72 185 84 186 108 187 128 188 110 189 108 190 64 191 112 192 130 193 86 194 90 195 114 196 132 197 134 198 135 199 126 200 116 201 78 202 124 203 118 204 138 205 98 206 98 207 140 208 120 209 142 210 122 211 100 212 124 213 102 214 144 215 104 216 134 217 126 218 146 219 116 220 124 221 108 222 148 223 128 224 110 225 150 226 108 227 152 228 130 229 112 230 154 231 132 232 114 233 134 234 156 235 135 236 158 237 146 238 159 239 138 240 140 241 98 242 120 243 140 244 162 245 142 246 164 247 122 248 159 249 124 250 144 251 146 252 124 253 159 254 148 255 166 256 128 257 150 258 148 259 108 260 152 261 168 262 130 263 170 264 132 265 154 266 156 267 172 268 135 269 158 270 159 271 174 272 176 273 140 274 138 275 140 276 178 277 162 278 142 279 180 280 164 281 159 282 144 283 182 284 148 285 184 286 166 287 150 288 186 289 148 290 188 291 168 292 152 293 190 294 170 295 154 296 156 297 192 298 172 299 174 300 159 301 182 302 194 303 158 304 174 305 176 306 178 307 140 308 162 309 178 310 196 311 180 312 198 313 164 314 184 315 200 316 166 317 186 318 184 319 148 320 188 321 202 322 168 323 188 324 170 325 190 326 192 327 204 328 172 329 174 330 182 331 206 332 194 333 174 334 208 335 210 336 178 337 176 338 178 339 212 340 196 341 180 342 214 343 198 344 184 345 216 346 200 347 186 348 218 349 184 350 220 351 202 352 188 353 222 354 188 355 190 356 192 357 224 358 204 359 214 360 226 361 198 362 208 363 174 364 206 365 228 366 194 367 208 368 210 369 212 370 178 371 196 372 212 373 230 374 216 375 232 376 200 377 218 378 216 379 184 380 220 381 234 382 202 383 220 384 188 385 222 386 224 387 236 388 204 389 214 390 238 391 226 392 208 393 206 394 240 395 228 396 208 397 242 398 244 399 212 400 210 401 230 402 212 403 246 404 216 405 248 406 232 407 218 408 250 409 216 410 220 411 252 412 234 413 254 414 220 415 222 416 256 417 236 418 224 419 258 420 230 421 246 422 238 423 260 424 226 425 208 426 240 427 242 428 262 429 228 430 242 431 244 432 264 433 212 434 248 435 266 436 232 437 250 438 248 439 216 440 252 441 268 442 234 443 252 444 220 445 254 446 256 447 270 448 236 449 258 450 246 451 272 452 238 453 274 454 260 455 242 456 240 457 276 458 262 459 242 460 278 461 280 462 264 463 244 464 248 465 282 466 266 467 250 468 284 469 248 470 252 471 286 472 268 473 288 474 252 475 254 476 290 477 270 478 256 479 272 480 264 481 280 482 292 483 258 484 272 485 274 486 294 487 260 488 242 489 276 490 296 491 298 492 262 493 278 494 282 495 300 496 266 497 284 498 282 499 248 500 286 501 302 502 268 503 286 504 252 505 288 506 290 507 304 508 270 509 272 510 280 511 306 512 292 513 272 514 308 515 274 516 310 517 294 518 296 519 276 520 312 521 298 522 278 523 314 524 282 525 316 526 300 527 284 528 318 529 282 530 286 531 320 532 302 533 322 534 286 535 288 536 324 537 304 538 290 539 298 540 314 541 326 542 308 543 272 544 306 545 328 546 292 547 308 548 294 549 310 550 330 551 314 552 296 553 312 554 316 555 332 556 300 557 318 558 316 559 282 560 320 561 334 562 302 563 320 564 286 565 322 566 324 567 336 568 304 569 326 570 314 571 338 572 308 573 306 574 340 575 328 576 308 577 342 578 330 579 310 580 344 581 314 582 312 583 346 584 316 585 348 586 332 587 350 588 316 589 318 590 320 591 352 592 334 593 322 594 354 595 320 596 356 597 336 598 324 599 338 600 314 601 346 602 326 603 338 604 358 605 342 606 308 607 340 608 360 609 328 610 342 611 330 612 344 613 362 614 348 615 364 616 332 617 350 618 366 619 316 620 352 621 368 622 334 623 354 624 352 625 320 626 370 627 336 628 356 629 338 630 346 631 372 632 358 633 338 634 374 635 342 636 340 637 376 638 342 639 378 640 360 641 362 642 344 643 380 644 348 645 382 646 364 647 384 648 366 649 350 650 352 651 386 652 368 653 354 654 388 655 352 656 390 657 370 658 356 659 362 660 380 661 392 662 374 663 338 664 372 665 394 666 358 667 374 668 378 669 342 670 376 671 360 672 378 673 396 674 382 675 398 676 364 677 384 678 400 679 366 680 386 681 402 682 368 683 388 684 386 685 352 686 404 687 370 688 390 689 392 690 380 691 406 692 374 693 372 694 408 695 394 696 374 697 410 698 378 699 376 700 412 701 378 702 414 703 396 704 416 705 398 706 382 707 384 708 418 709 400 710 386 711 420 712 402 713 388 714 422 715 386 716 404 717 390 718 424 719 396 720 414 721 426 722 392 723 406 724 428 725 410 726 374 727 408 728 430 729 394 730 410 731 414 732 378 733 412 734 416 735 432 736 398 737 418 738 416 739 400 740 402 741 420 742 434 743 422 744 420 745 386 746 436 747 404 748 424 749 414 750 438 751 426 752 428 753 406 754 440 755 410 756 408 757 442 758 430 759 410 760 444 761 414 762 412 763 446 764 448 765 432 766 416 767 418 768 450 769 416 770 434 771 420 772 452 773 422 774 454 775 420 776 436 777 424 778 456 779 438 780 414 781 446 782 426 783 438 784 458 785 428 786 440 787 460 788 444 789 410 790 442 791 462 792 430 793 444 794 448 795 464 796 432 797 450 798 448 799 416 800 434 801 452 802 466 803 454 804 452 805 420 806 468 807 436 808 456 809 438 810 446 811 470 812 438 813 472 814 458 815 460 816 440 817 474 818 444 819 442 820 476 821 462 822 444 823 478 824 448 825 480 826 464 827 450 828 482 829 448 830 466 831 452 832 484 833 486 834 452 835 454 836 468 837 456 838 488 839 490 840 462 841 478 842 438 843 470 844 472 845 458 846 472 847 492 848 494 849 460 850 474 851 478 852 444 853 476 854 480 855 496 856 464 857 482 858 480 859 448 860 466 861 484 862 498 863 484 864 452 865 486 866 500 867 468 868 488 869 490 870 478 871 502 872 472 873 470 874 504 875 472 876 506 877 492 878 494 879 474 880 508 881 478 882 476 883 510 884 480 885 512 886 496 887 482 888 514 889 480 890 498 891 484 892 516 893 518 894 484 895 486 896 500 897 488 898 520 899 502 900 478 901 510 902 522 903 490 904 502 905 472 906 504 907 524 908 492 909 506 910 526 911 528 912 494 913 508 914 512 915 530 916 496 917 514 918 512 919 480 920 498 921 516 922 532 923 516 924 484 925 518 926 534 927 500 928 520 929 502 930 510 931 536 932 522 933 502 934 538 935 524 936 504 937 540 938 506 939 542 940 526 941 528 942 508 943 544 944 512 945 546 946 530 947 514 948 548 949 512 950 532 951 516 952 550 953 552 954 516 955 518 956 534 957 520 958 554 959 556 960 528 961 544 962 538 963 502 964 536 965 558 966 522 967 538 968 524 969 540 970 560 971 526 972 542 973 562 974 546 975 564 976 530 977 548 978 546 979 512 980 566 981 532 982 550 983 550 984 516 985 552 986 534 987 554 988 568 989 556 990 544 991 570 992 572 993 538 994 536 995 558 996 538 997 574 998 560 999 540 1000 576 1001 578 1002 562 1003 542 1004 546 1005 580 1006 564 1007 548 1008 582 1009 546 1010 566 1011 550 1012 584 1013 586 1014 550 1015 552 1016 568 1017 554 1018 588 1019 578 1020 590 1021 562 1022 592 1023 556 1024 570 1025 572 1026 574 1027 538 1028 594 1029 558 1030 574 1031 560 1032 576 1033 596 1034 580 1035 598 1036 564 1037 582 1038 580 1039 546 1040 600 1041 566 1042 584 1043 584 1044 550 1045 586 1046 568 1047 588 1048 602 1049 604 1050 590 1051 578 1052 592 1053 570 1054 606 1055 608 1056 574 1057 572 1058 574 1059 610 1060 594 1061 576 1062 612 1063 596 1064 580 1065 614 1066 598 1067 582 1068 616 1069 580 1070 600 1071 584 1072 618 1073 620 1074 584 1075 586 1076 602 1077 588 1078 622 1079 596 1080 612 1081 624 1082 604 1083 626 1084 590 1085 628 1086 592 1087 606 1088 608 1089 630 1090 574 1091 610 1092 632 1093 594 1094 614 1095 634 1096 598 1097 616 1098 614 1099 580 1100 636 1101 600 1102 618 1103 618 1104 584 1105 620 1106 602 1107 622 1108 638 1109 612 1110 640 1111 624 1112 642 1113 626 1114 604 1115 644 1116 628 1117 606 1118 608 1119 646 1120 630 1121 610 1122 648 1123 632 1124 614 1125 650 1126 634 1127 614 1128 616 1129 652 1130 636 1131 618 1132 654 1133 656 1134 618 1135 620 1136 638 1137 622 1138 658 1139 648 1140 660 1141 632 1142 640 1143 662 1144 624 1145 642 1146 664 1147 626 1148 666 1149 628 1150 644 1151 646 1152 668 1153 630 1154 650 1155 670 1156 634 1157 614 1158 652 1159 650 1160 672 1161 636 1162 654 1163 674 1164 618 1165 656 1166 638 1167 658 1168 676 1169 678 1170 660 1171 648 1172 640 1173 680 1174 662 1175 682 1176 664 1177 642 1178 684 1179 666 1180 644 1181 646 1182 686 1183 668 1184 670 1185 650 1186 688 1187 650 1188 652 1189 690 1190 672 1191 654 1192 692 1193 674 1194 656 1195 694 1196 658 1197 696 1198 676 1199 686 1200 678 1201 668 1202 678 1203 698 1204 660 1205 680 1206 682 1207 662 1208 682 1209 700 1210 664 1211 684 1212 702 1213 666 1214 704 1215 670 1216 688 1217 650 1218 690 1219 706 1220 708 1221 672 1222 692 1223 674 1224 694 1225 710 1226 676 1227 696 1228 712 1229 678 1230 686 1231 714 1232 698 1233 678 1234 716 1235 680 1236 718 1237 682 1238 682 1239 720 1240 700 1241 722 1242 702 1243 684 1244 704 1245 688 1246 724 1247 706 1248 690 1249 726 1250 708 1251 692 1252 728 1253 710 1254 694 1255 730 1256 696 1257 732 1258 712 1259 722 1260 734 1261 702 1262 716 1263 678 1264 714 1265 736 1266 698 1267 716 1268 718 1269 720 1270 682 1271 700 1272 720 1273 738 1274 704 1275 724 1276 740 1277 742 1278 706 1279 726 1280 744 1281 708 1282 728 1283 710 1284 730 1285 746 1286 712 1287 732 1288 748 1289 750 1290 734 1291 722 1292 716 1293 714 1294 752 1295 736 1296 716 1297 754 1298 718 1299 756 1300 720 1301 720 1302 758 1303 738 1304 740 1305 724 1306 760 1307 742 1308 726 1309 762 1310 764 1311 744 1312 728 1313 746 1314 730 1315 766 1316 732 1317 768 1318 748 1319 738 1320 758 1321 770 1322 750 1323 772 1324 734 1325 754 1326 716 1327 752 1328 774 1329 736 1330 754 1331 756 1332 758 1333 720 1334 740 1335 760 1336 776 1337 760 1338 742 1339 762 1340 778 1341 744 1342 764 1343 746 1344 766 1345 780 1346 768 1347 782 1348 748 1349 758 1350 784 1351 770 1352 786 1353 772 1354 750 1355 754 1356 752 1357 788 1358 774 1359 754 1360 790 1361 756 1362 792 1363 758 1364 776 1365 760 1366 794 1367 762 1368 796 1369 760 1370 798 1371 778 1372 764 1373 800 1374 780 1375 766 1376 768 1377 802 1378 782 1379 792 1380 784 1381 758 1382 770 1383 784 1384 804 1385 786 1386 806 1387 772 1388 790 1389 754 1390 788 1391 808 1392 774 1393 790 1394 776 1395 794 1396 810 1397 796 1398 794 1399 760 1400 798 1401 812 1402 778 1403 814 1404 780 1405 800 1406 802 1407 816 1408 782 1409 792 1410 818 1411 784 1412 784 1413 820 1414 804 1415 822 1416 806 1417 786 1418 790 1419 788 1420 824 1421 808 1422 790 1423 826 1424 794 1425 828 1426 810 1427 796 1428 830 1429 794 1430 832 1431 812 1432 798 1433 834 1434 814 1435 800 1436 802 1437 836 1438 816 1439 838 1440 808 1441 826 1442 818 1443 820 1444 784 1445 804 1446 820 1447 840 1448 822 1449 842 1450 806 1451 826 1452 790 1453 824 1454 828 1455 844 1456 810 1457 830 1458 828 1459 794 1460 832 1461 846 1462 812 1463 848 1464 814 1465 834 1466 836 1467 850 1468 816 1469 838 1470 826 1471 852 1472 854 1473 820 1474 818 1475 820 1476 856 1477 840 1478 822 1479 858 1480 842 1481 826 1482 824 1483 860 1484 828 1485 862 1486 844 1487 830 1488 864 1489 828 1490 866 1491 846 1492 832 1493 868 1494 848 1495 834 1496 836 1497 870 1498 850 1499 852 1500 826 1501 860 1502 872 1503 838 1504 852 1505 854 1506 856 1507 820 1508 840 1509 856 1510 874 1511 858 1512 876 1513 842 1514 862 1515 878 1516 844 1517 864 1518 862 1519 828 1520 866 1521 880 1522 846 1523 866 1524 848 1525 868 1526 870 1527 882 1528 850 1529 852 1530 860 1531 884 1532 872 1533 852 1534 886 1535 888 1536 856 1537 854 1538 856 1539 890 1540 874 1541 858 1542 892 1543 876 1544 862 1545 894 1546 878 1547 864 1548 896 1549 862 1550 898 1551 880 1552 866 1553 900 1554 866 1555 868 1556 870 1557 902 1558 882 1559 892 1560 904 1561 876 1562 886 1563 852 1564 884 1565 906 1566 872 1567 886 1568 888 1569 890 1570 856 1571 874 1572 890 1573 908 1574 894 1575 910 1576 878 1577 896 1578 894 1579 862 1580 898 1581 912 1582 880 1583 898 1584 866 1585 900 1586 902 1587 914 1588 882 1589 892 1590 916 1591 904 1592 886 1593 884 1594 918 1595 906 1596 886 1597 920 1598 922 1599 890 1600 888 1601 908 1602 890 1603 924 1604 894 1605 926 1606 910 1607 896 1608 928 1609 894 1610 898 1611 930 1612 912 1613 932 1614 898 1615 900 1616 934 1617 914 1618 902 1619 936 1620 908 1621 924 1622 916 1623 938 1624 904 1625 886 1626 918 1627 920 1628 940 1629 906 1630 920 1631 922 1632 942 1633 890 1634 926 1635 944 1636 910 1637 928 1638 926 1639 894 1640 930 1641 946 1642 912 1643 930 1644 898 1645 932 1646 934 1647 948 1648 914 1649 936 1650 924 1651 950 1652 916 1653 952 1654 938 1655 920 1656 918 1657 954 1658 940 1659 920 1660 956 1661 958 1662 942 1663 922 1664 926 1665 960 1666 944 1667 928 1668 962 1669 926 1670 930 1671 964 1672 946 1673 966 1674 930 1675 932 1676 968 1677 948 1678 934 1679 950 1680 942 1681 958 1682 970 1683 936 1684 950 1685 952 1686 972 1687 938 1688 920 1689 954 1690 974 1691 940 1692 956 1693 976 1694 960 1695 978 1696 944 1697 962 1698 960 1699 926 1700 964 1701 980 1702 946 1703 964 1704 930 1705 966 1706 968 1707 982 1708 948 1709 950 1710 958 1711 984 1712 970 1713 950 1714 986 1715 952 1716 988 1717 972 1718 974 1719 954 1720 990 1721 976 1722 956 1723 992 1724 960 1725 994 1726 978 1727 962 1728 996 1729 960 1730 964 1731 998 1732 980 1733 1000 1734 964 1735 966 1736 1002 1737 982 1738 968 1739 976 1740 992 1741 1004 1742 986 1743 950 1744 984 1745 1006 1746 970 1747 986 1748 972 1749 988 1750 1008 1751 992 1752 974 1753 990 1754 994 1755 1010 1756 978 1757 996 1758 994 1759 960 1760 998 1761 1012 1762 980 1763 998 1764 964 1765 1000 1766 1002 1767 1014 1768 982 1769 1004 1770 992 1771 1016 1772 986 1773 984 1774 1018 1775 1006 1776 986 1777 1020 1778 1008 1779 988 1780 1022 1781 992 1782 990 1783 1024 1784 994 1785 1026 1786 1010 1787 1028 1788 994 1789 996 1790 998 1791 1030 1792 1012 1793 1000 1794 1032 1795 998 1796 1034 1797 1014 1798 1002 1799 1016 1800 992 1801 1024 1802 1004 1803 1016 1804 1036 1805 1020 1806 986 1807 1018 1808 1038 1809 1006 1810 1020 1811 1008 1812 1022 1813 1040 1814 1026 1815 1042 1816 1010 1817 1028 1818 1044 1819 994 1820 1030 1821 1046 1822 1012 1823 1032 1824 1030 1825 998 1826 1048 1827 1014 1828 1034 1829 1016 1830 1024 1831 1050 1832 1036 1833 1016 1834 1052 1835 1020 1836 1018 1837 1054 1838 1020 1839 1056 1840 1038 1841 1040 1842 1022 1843 1058 1844 1026 1845 1060 1846 1042 1847 1062 1848 1044 1849 1028 1850 1030 1851 1064 1852 1046 1853 1032 1854 1066 1855 1030 1856 1068 1857 1048 1858 1034 1859 1040 1860 1058 1861 1070 1862 1052 1863 1016 1864 1050 1865 1072 1866 1036 1867 1052 1868 1056 1869 1020 1870 1054 1871 1038 1872 1056 1873 1074 1874 1060 1875 1076 1876 1042 1877 1062 1878 1078 1879 1044 1880 1064 1881 1080 1882 1046 1883 1066 1884 1064 1885 1030 1886 1082 1887 1048 1888 1068 1889 1070 1890 1058 1891 1084 1892 1052 1893 1050 1894 1086 1895 1072 1896 1052 1897 1088 1898 1056 1899 1054 1900 1090 1901 1056 1902 1092 1903 1074 1904 1094 1905 1076 1906 1060 1907 1062 1908 1096 1909 1078 1910 1064 1911 1098 1912 1080 1913 1066 1914 1100 1915 1064 1916 1082 1917 1068 1918 1102 1919 1074 1920 1092 1921 1104 1922 1070 1923 1084 1924 1106 1925 1088 1926 1052 1927 1086 1928 1108 1929 1072 1930 1088 1931 1092 1932 1056 1933 1090 1934 1094 1935 1110 1936 1076 1937 1096 1938 1094 1939 1078 1940 1080 1941 1098 1942 1112 1943 1100 1944 1114 1945 1064 1946 1116 1947 1082 1948 1102 1949 1092 1950 1118 1951 1104 1952 1106 1953 1084 1954 1120 1955 1088 1956 1086 1957 1122 1958 1108 1959 1088 1960 1124 1961 1092 1962 1090 1963 1126 1964 1128 1965 1110 1966 1094 1967 1096 1968 1130 1969 1094 1970 1112 1971 1098 1972 1132 1973 1134 1974 1114 1975 1100 1976 1116 1977 1102 1978 1136 1979 1118 1980 1092 1981 1126 1982 1104 1983 1118 1984 1138 1985 1106 1986 1120 1987 1140 1988 1124 1989 1088 1990 1122 1991 1142 1992 1108 1993 1124 1994 1128 1995 1144 1996 1110 1997 1130 1998 1128 1999 1094 2000 1112 2001 1132 2002 1146 2003 1132 2004 1114 2005 1134 2006 1148 2007 1116 2008 1136 2009 1118 2010 1126 2011 1150 2012 1118 2013 1152 2014 1138 2015 1140 2016 1120 2017 1154 2018 1124 2019 1122 2020 1156 2021 1142 2022 1124 2023 1158 2024 1128 2025 1160 2026 1144 2027 1130 2028 1162 2029 1128 2030 1146 2031 1132 2032 1164 2033 1166 2034 1132 2035 1134 2036 1148 2037 1136 2038 1168 2039 1170 2040 1142 2041 1158 2042 1118 2043 1150 2044 1152 2045 1138 2046 1152 2047 1172 2048 1174 2049 1140 2050 1154 2051 1158 2052 1124 2053 1156 2054 1160 2055 1176 2056 1144 2057 1162 2058 1160 2059 1128 2060 1146 2061 1164 2062 1178 2063 1164 2064 1132 2065 1166 2066 1180 2067 1148 2068 1168 2069 1170 2070 1158 2071 1182 2072 1152 2073 1150 2074 1184 2075 1152 2076 1186 2077 1172 2078 1174 2079 1154 2080 1188 2081 1158 2082 1156 2083 1190 2084 1160 2085 1192 2086 1176 2087 1162 2088 1194 2089 1160 2090 1178 2091 1164 2092 1196 2093 1198 2094 1164 2095 1166 2096 1180 2097 1168 2098 1200 2099 1182 2100 1158 2101 1190 2102 1202 2103 1170 2104 1182 2105 1152 2106 1184 2107 1204 2108 1172 2109 1186 2110 1206 2111 1208 2112 1174 2113 1188 2114 1192 2115 1210 2116 1176 2117 1194 2118 1192 2119 1160 2120 1178 2121 1196 2122 1212 2123 1196 2124 1164 2125 1198 2126 1214 2127 1180 2128 1200 2129 1182 2130 1190 2131 1216 2132 1202 2133 1182 2134 1218 2135 1204 2136 1184 2137 1220 2138 1186 2139 1222 2140 1206 2141 1208 2142 1188 2143 1224 2144 1226 2145 1208 2146 1224 2147 1218 2148 1182 2149 1216 2150 1228 2151 1202 2152 1218 2153 1204 2154 1220 2155 1230 2156 1206 2157 1222 2158 1232 2159 1226 2160 1224 2161 1234 2162 1236 2163 1218 2164 1216 2165 1218 2166 1238 2167 1228 2168 1230 2169 1220 2170 1240 2171 1242 2172 1232 2173 1222 2174 1242 2175 1244 2176 1232 2177 1246 2178 1226 2179 1234 2180 1236 2181 1238 2182 1218 2183 1238 2184 1248 2185 1228 2186 1230 2187 1240 2188 1250 2189 1252 2190 1244 2191 1242 2192 1246 2193 1234 2194 1254 2195 1256 2196 1238 2197 1236 2198 1238 2199 1258 2200 1248 2201 1240 2202 1260 2203 1250 2204 1250 2205 1260 2206 1262 2207 1252 2208 1264 2209 1244 2210 1266 2211 1246 2212 1254 2213 1256 2214 1268 2215 1238 2216 1258 2217 1270 2218 1248 2219 1260 2220 1272 2221 1262 2222 1274 2223 1264 2224 1252 2225 1276 2226 1266 2227 1254 2228 1256 2229 1278 2230 1268 2231 1258 2232 1280 2233 1270 2234 1280 2235 1282 2236 1270 2237 1272 2238 1284 2239 1262 2240 1274 2241 1286 2242 1264 2243 1288 2244 1266 2245 1276 2246 1278 2247 1280 2248 1268 2249 1290 2250 1282 2251 1280 2252 1272 2253 1292 2254 1284 2255 1294 2256 1286 2257 1274 2258 1296 2259 1288 2260 1276 2261 1280 2262 1278 2263 1298 2264 1290 2265 1280 2266 1298 2267 1290 2268 1300 2269 1282 2270 1292 2271 1294 2272 1284 2273 1294 2274 1302 2275 1286 2276 1296 2277 1304 2278 1288 2279 1290 2280 1298 2281 1306 2282 1300 2283 1290 2284 1308 2285 1292 2286 1310 2287 1294 2288 1294 2289 1312 2290 1302 2291 1314 2292 1304 2293 1296 2294 1314 2295 1316 2296 1304 2297 1308 2298 1290 2299 1306 2300 1318 2301 1300 2302 1308 2303 1310 2304 1312 2305 1294 2306 1302 2307 1312 2308 1320 2309 1322 2310 1316 2311 1314 2312 1308 2313 1306 2314 1324 2315 1318 2316 1308 2317 1326 2318 1310 2319 1328 2320 1312 2321 1312 2322 1330 2323 1320 2324 1320 2325 1330 2326 1332 2327 1322 2328 1334 2329 1316 2330 1326 2331 1308 2332 1324 2333 1336 2334 1318 2335 1326 2336 1328 2337 1330 2338 1312 2339 1330 2340 1338 2341 1332 2342 1340 2343 1334 2344 1322 2345 1326 2346 1324 2347 1342 2348 1336 2349 1326 2350 1344 2351 1328 2352 1346 2353 1330 2354 1346 2355 1338 2356 1330 2357 1332 2358 1338 2359 1348 2360 1340 2361 1350 2362 1334 2363 1344 2364 1326 2365 1342 2366 1352 2367 1336 2368 1344 2369 1346 2370 1354 2371 1338 2372 1338 2373 1356 2374 1348 2375 1358 2376 1350 2377 1340 2378 1344 2379 1342 2380 1360 2381 1352 2382 1344 2383 1362 2384 1364 2385 1352 2386 1362 2387 1354 2388 1356 2389 1338 2390 1348 2391 1356 2392 1366 2393 1358 2394 1368 2395 1350 2396 1362 2397 1344 2398 1360 2399 1364 2400 1362 2401 1370 2402 1372 2403 1356 2404 1354 2405 1356 2406 1374 2407 1366 2408 1358 2409 1376 2410 1368 2411 1362 2412 1360 2413 1378 2414 1370 2415 1362 2416 1378 2417 1380 2418 1364 2419 1370 2420 1372 2421 1374 2422 1356 2423 1366 2424 1374 2425 1382 2426 1376 2427 1384 2428 1368 2429 1370 2430 1378 2431 1386 2432 1380 2433 1370 2434 1388 2435 1390 2436 1374 2437 1372 2438 1374 2439 1392 2440 1382 2441 1376 2442 1394 2443 1384 2444 1394 2445 1396 2446 1384 2447 1388 2448 1370 2449 1386 2450 1398 2451 1380 2452 1388 2453 1390 2454 1392 2455 1374 2456 1382 2457 1392 2458 1400 2459 1394 2460 1402 2461 1396 2462 1388 2463 1386 2464 1404 2465 1398 2466 1388 2467 1406 2468 1408 2469 1392 2470 1390 2471 1400 2472 1392 2473 1410 2474 1412 2475 1400 2476 1410 2477 1402 2478 1414 2479 1396 2480 1388 2481 1404 2482 1406 2483 1416 2484 1398 2485 1406 2486 1408 2487 1418 2488 1392 2489 1412 2490 1410 2491 1420 2492 1402 2493 1422 2494 1414 2495 1406 2496 1404 2497 1424 2498 1416 2499 1406 2500 1426 2501 1428 2502 1418 2503 1408 2504 1420 2505 1418 2506 1428 2507 1430 2508 1412 2509 1420 2510 1422 2511 1432 2512 1414 2513 1406 2514 1424 2515 1434 2516 1416 2517 1426 2518 1436 2519 1420 2520 1428 2521 1438 2522 1430 2523 1420 2524 1440 2525 1422 2526 1442 2527 1432 2528 1434 2529 1424 2530 1444 2531 1436 2532 1426 2533 1446 2534 1436 2535 1446 2536 1448 2537 1440 2538 1420 2539 1438 2540 1450 2541 1430 2542 1440 2543 1432 2544 1442 2545 1452 2546 1446 2547 1434 2548 1444 2549 1448 2550 1446 2551 1454 2552 1440 2553 1438 2554 1456 2555 1450 2556 1440 2557 1458 2558 1452 2559 1442 2560 1460 2561 1446 2562 1444 2563 1462 2564 1454 2565 1446 2566 1462 2567 1448 2568 1454 2569 1464 2570 1458 2571 1440 2572 1456 2573 1466 2574 1450 2575 1458 2576 1452 2577 1460 2578 1468 2579 1454 2580 1462 2581 1470 2582 1464 2583 1454 2584 1472 2585 1458 2586 1456 2587 1474 2588 1458 2589 1476 2590 1466 2591 1468 2592 1460 2593 1478 2594 1468 2595 1478 2596 1480 2597 1472 2598 1454 2599 1470 2600 1482 2601 1464 2602 1472 2603 1476 2604 1458 2605 1474 2606 1466 2607 1476 2608 1484 2609 1480 2610 1478 2611 1486 2612 1472 2613 1470 2614 1488 2615 1482 2616 1472 2617 1490 2618 1476 2619 1474 2620 1492 2621 1476 2622 1494 2623 1484 2624 1484 2625 1494 2626 1496 2627 1480 2628 1486 2629 1498 2630 1490 2631 1472 2632 1488 2633 1500 2634 1482 2635 1490 2636 1494 2637 1476 2638 1492 2639 1494 2640 1502 2641 1496 2642 1498 2643 1486 2644 1504 2645 1490 2646 1488 2647 1506 2648 1500 2649 1490 2650 1508 2651 1494 2652 1492 2653 1510 2654 1502 2655 1494 2656 1510 2657 1496 2658 1502 2659 1512 2660 1498 2661 1504 2662 1514 2663 1508 2664 1490 2665 1506 2666 1516 2667 1500 2668 1508 2669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1697\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1698\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"890\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 5 7 10 11 4 13 5 4 17 18 19 21 3 7 23 11 10 11 25 4 18 28 29 13 4 31 33 17 19 19 18 29 35 21 7 23 10 37 41 42 43 46 47 42 31 4 25 29 28 49 51 13 31 55 56 57 33 59 17 62 63 56 65 21 35 67 23 37 41 43 69 41 46 42 46 57 47 31 25 71 74 75 62 28 77 49 51 31 79 81 55 57 56 63 57 83 59 33 62 75 63 85 65 35 67 37 65 69 43 87 91 92 93 93 95 81 57 97 47 79 31 71 74 99 75 49 77 101 103 51 79 95 55 81 57 63 97 83 105 59 63 75 107 109 65 85 65 111 67 69 87 113 115 92 91 92 95 93 79 71 117 75 99 119 121 99 74 77 123 101 103 79 125 63 107 97 83 127 105 75 119 107 129 109 85 65 109 111 87 131 113 133 115 91 127 136 137 125 79 117 99 139 119 121 141 99 101 123 143 145 103 125 127 137 105 125 117 147 129 149 109 109 151 111 113 131 153 115 133 155 136 157 137 160 147 161 99 141 139 163 141 121 123 165 143 145 125 160 160 125 147 129 167 149 109 149 151 131 169 153 155 133 171 136 173 157 175 160 161 139 141 177 163 179 141 165 181 143 183 145 160 167 185 149 149 187 151 153 169 189 155 171 191 173 193 157 183 160 175 175 161 195 141 179 177 197 179 163 165 199 181 167 201 185 149 185 187 169 203 189 191 171 189 173 205 193 207 183 175 209 175 195 177 179 211 197 213 179 199 215 181 201 217 185 185 219 187 189 203 221 191 189 223 205 225 193 199 227 215 207 175 209 209 195 229 179 213 211 231 213 197 201 233 217 185 217 219 203 235 221 223 189 221 205 237 225 227 239 215 241 207 209 243 209 229 211 213 245 247 213 231 233 249 217 217 251 219 235 253 221 223 221 255 225 237 257 247 231 259 227 261 239 243 241 209 243 229 263 213 265 245 233 267 249 217 249 251 235 269 253 255 221 253 237 271 257 273 247 259 261 275 239 277 241 243 279 243 263 245 265 281 267 283 249 249 285 251 269 287 253 255 253 289 257 271 291 281 265 273 273 259 293 261 295 275 297 277 243 279 263 299 267 301 283 249 283 285 269 303 287 289 253 287 271 305 291 307 281 273 309 273 293 295 311 275 313 277 297 315 279 299 301 317 283 283 319 285 303 321 287 289 287 323 291 305 325 327 315 299 307 273 309 309 293 329 331 311 295 313 297 315 301 333 317 283 317 319 303 335 321 323 287 321 305 337 325 339 315 327 341 307 309 343 309 329 345 311 331 347 313 315 333 349 317 319 317 351 335 353 321 321 355 323 325 337 357 347 315 339 359 339 327 341 309 343 343 329 361 363 345 331 333 365 349 317 367 351 335 369 353 321 353 355 357 337 371 373 347 339 375 339 359 377 341 343 361 379 343 381 345 363 365 383 349 351 367 385 369 387 353 353 389 355 357 371 391 393 381 363 373 339 375 375 359 395 377 343 379 397 379 361 365 399 383 367 401 385 369 403 387 353 387 389 391 371 405 407 381 393 409 373 375 411 375 395 413 377 379 397 415 379 383 399 417 401 419 385 403 421 387 387 423 389 425 391 405 427 415 397 429 407 393 409 375 411 411 395 431 413 379 415 399 433 417 401 417 419 435 421 403 387 421 423 425 405 437 427 439 415 441 407 429 443 409 411 445 411 431 447 413 415 417 433 449 417 451 419 453 421 435 421 455 423 457 425 437 447 415 439 459 439 427 461 441 429 443 411 445 445 431 463 433 465 449 417 449 451 467 453 435 421 453 455 457 437 469 471 447 439 459 473 439 475 441 461 477 443 445 479 445 463 465 481 449 449 483 451 485 453 467 455 453 487 489 457 469 479 463 491 473 471 439 493 473 459 475 461 495 477 445 479 465 497 481 449 481 483 499 485 467 487 453 485 489 469 501 503 479 491 505 471 473 493 507 473 509 475 495 511 477 479 497 513 481 481 515 483 517 485 499 487 485 519 521 489 501 511 479 503 503 491 523 525 505 473 527 507 493 509 495 529 497 531 513 481 513 515 533 517 499 519 485 517 521 501 535 537 511 503 539 503 523 541 505 525 527 543 507 545 509 529 531 547 513 513 549 515 551 517 533 519 517 553 555 521 535 545 529 557 537 503 539 539 523 559 561 541 525 563 543 527 531 565 547 513 547 549 551 533 567 553 517 551 569 555 535 571 545 557 537 539 573 575 539 559 577 541 561 543 563 579 565 581 547 547 583 549 585 551 567 553 551 587 589 555 569 563 591 579 571 557 593 539 575 573 575 559 595 597 577 561 565 599 581 547 581 583 585 567 601 587 551 585 603 589 569 579 591 605 607 571 593 573 575 609 595 611 575 597 613 577 599 615 581 581 617 583 619 585 601 587 585 621 623 589 603 625 613 597 591 627 605 607 593 629 575 631 609 595 633 611 599 635 615 581 615 617 619 601 637 621 585 619 639 623 603 625 641 613 605 627 643 607 629 645 631 647 609 633 649 611 635 651 615 653 617 615 655 619 637 621 619 657 659 623 639 633 661 649 625 663 641 627 665 643 645 629 667 631 669 647 635 671 651 651 653 615 655 637 673 657 619 675 677 659 639 649 661 679 663 681 641 643 665 683 645 667 685 669 687 647 689 651 671 691 653 651 693 655 673 695 657 675 677 697 659 669 679 687 661 699 679 663 683 681 665 701 683 667 703 685 689 671 705 707 691 651 693 673 709 711 695 675 713 697 677 715 687 679 717 679 699 683 719 681 701 721 683 685 703 723 725 689 705 727 691 707 729 693 709 731 695 711 713 733 697 703 735 723 715 679 717 717 699 737 683 721 719 739 721 701 741 725 705 727 707 743 729 709 745 747 731 711 749 733 713 723 735 751 753 715 717 755 717 737 721 757 719 739 759 721 761 725 741 763 727 743 729 745 765 767 731 747 749 769 733 771 759 739 735 773 751 753 717 755 755 737 775 721 759 757 777 761 741 763 743 761 765 745 779 781 767 747 749 783 769 771 785 759 751 773 787 789 753 755 791 755 775 759 793 757 795 761 777 761 797 763 765 779 799 767 781 801 783 803 769 759 785 793 805 785 771 773 807 787 789 755 791 791 775 809 811 795 777 761 795 797 779 813 799 801 781 815 783 817 803 785 819 793 805 821 785 787 807 823 825 789 791 827 791 809 811 829 795 795 831 797 799 813 833 801 815 835 817 837 803 827 809 839 785 821 819 841 821 805 807 843 823 825 791 827 811 845 829 795 829 831 813 847 833 835 815 849 817 851 837 853 827 839 819 821 855 841 857 821 843 859 823 861 825 827 845 863 829 829 865 831 833 847 867 835 849 869 851 871 837 861 827 853 853 839 873 821 857 855 875 857 841 843 877 859 845 879 863 829 863 865 847 881 867 869 849 867 851 883 871 885 861 853 887 853 873 855 857 889 875 891 857 877 893 859 879 895 863 863 897 865 867 881 899 869 867 901 883 903 871 877 905 893 885 853 887 887 873 907 857 891 889 909 891 875 879 911 895 863 895 897 881 913 899 901 867 899 883 915 903 905 917 893 919 885 887 921 887 907 889 891 923 925 891 909 911 927 895 895 929 897 913 931 899 901 899 933 903 915 935 925 909 937 905 939 917 921 919 887 921 907 941 891 943 923 911 945 927 895 927 929 913 947 931 933 899 931 915 949 935 951 925 937 939 953 917 955 919 921 957 921 941 923 943 959 945 961 927 927 963 929 947 965 931 933 931 967 935 949 969 959 943 951 951 937 971 939 973 953 975 955 921 977 957 941 945 979 961 927 961 963 947 981 965 967 931 965 949 983 969 985 959 951 987 951 971 973 989 953 991 955 975 993 957 977 979 995 961 961 997 963 981 999 965 967 965 1001 969 983 1003 1005 993 977 985 951 987 987 971 1007 1009 989 973 991 975 993 979 1011 995 961 995 997 981 1013 999 1001 965 999 983 1015 1003 1017 993 1005 1019 985 987 1021 987 1007 1023 989 1009 1025 991 993 1011 1027 995 997 995 1029 1013 1031 999 999 1033 1001 1003 1015 1035 1025 993 1017 1037 1017 1005 1019 987 1021 1021 1007 1039 1041 1023 1009 1011 1043 1027 995 1045 1029 1013 1047 1031 999 1031 1033 1035 1015 1049 1051 1025 1017 1053 1017 1037 1055 1019 1021 1039 1057 1021 1059 1023 1041 1043 1061 1027 1029 1045 1063 1047 1065 1031 1031 1067 1033 1035 1049 1069 1071 1059 1041 1051 1017 1053 1053 1037 1073 1055 1021 1057 1075 1057 1039 1043 1077 1061 1045 1079 1063 1047 1081 1065 1031 1065 1067 1069 1049 1083 1085 1059 1071 1087 1051 1053 1089 1053 1073 1091 1055 1057 1075 1093 1057 1061 1077 1095 1079 1097 1063 1081 1099 1065 1065 1101 1067 1103 1069 1083 1105 1093 1075 1107 1085 1071 1087 1053 1089 1089 1073 1109 1091 1057 1093 1077 1111 1095 1079 1095 1097 1113 1099 1081 1065 1115 1101 1103 1083 1117 1105 1119 1093 1121 1085 1107 1123 1087 1089 1125 1089 1109 1127 1091 1093 1095 1111 1129 1095 1131 1097 1133 1099 1113 1101 1115 1135 1137 1103 1117 1127 1093 1119 1139 1119 1105 1141 1121 1107 1123 1089 1125 1125 1109 1143 1111 1145 1129 1095 1129 1131 1147 1133 1113 1135 1115 1133 1137 1117 1149 1151 1127 1119 1139 1153 1119 1155 1121 1141 1157 1123 1125 1159 1125 1143 1145 1161 1129 1129 1163 1131 1165 1133 1147 1135 1133 1167 1169 1137 1149 1159 1143 1171 1153 1151 1119 1173 1153 1139 1155 1141 1175 1157 1125 1159 1145 1177 1161 1129 1161 1163 1179 1165 1147 1167 1133 1165 1169 1149 1181 1183 1159 1171 1185 1151 1153 1173 1187 1153 1189 1155 1175 1191 1157 1159 1177 1193 1161 1161 1195 1163 1197 1165 1179 1167 1165 1199 1201 1169 1181 1191 1159 1183 1183 1171 1203 1205 1185 1153 1207 1187 1173 1189 1175 1209 1177 1211 1193 1161 1193 1195 1213 1197 1179 1199 1165 1197 1201 1181 1215 1217 1191 1183 1219 1183 1203 1221 1185 1205 1207 1223 1187 1225 1189 1209 1225 1209 1227 1217 1183 1219 1219 1203 1229 1231 1221 1205 1233 1223 1207 1235 1225 1227 1217 1219 1237 1229 1239 1219 1241 1221 1231 1223 1233 1243 1233 1245 1243 1235 1227 1247 1219 1239 1237 1229 1249 1239 1251 1241 1231 1243 1245 1253 1255 1235 1247 1237 1239 1257 1249 1259 1239 1251 1261 1241 1263 1261 1251 1245 1265 1253 1255 1247 1267 1239 1269 1257 1249 1271 1259 1263 1273 1261 1253 1265 1275 1255 1267 1277 1269 1279 1257 1271 1281 1259 1271 1283 1281 1263 1285 1273 1265 1287 1275 1277 1267 1289 1269 1281 1279 1281 1283 1291 1285 1293 1273 1275 1287 1295 1277 1289 1297 1299 1279 1281 1299 1281 1291 1283 1301 1291 1285 1295 1293 1287 1303 1295 1289 1305 1297 1307 1299 1291 1309 1291 1301 1295 1311 1293 1303 1313 1295 1297 1305 1315 1305 1317 1315 1307 1291 1309 1309 1301 1319 1295 1313 1311 1321 1313 1303 1315 1317 1323 1325 1307 1309 1327 1309 1319 1313 1329 1311 1321 1331 1313 1333 1331 1321 1317 1335 1323 1325 1309 1327 1327 1319 1337 1313 1331 1329 1333 1339 1331 1323 1335 1341 1343 1325 1327 1345 1327 1337 1331 1347 1329 1331 1339 1347 1349 1339 1333 1335 1351 1341 1343 1327 1345 1345 1337 1353 1339 1355 1347 1349 1357 1339 1341 1351 1359 1361 1343 1345 1363 1345 1353 1363 1353 1365 1339 1357 1355 1367 1357 1349 1351 1369 1359 1361 1345 1363 1371 1363 1365 1355 1357 1373 1367 1375 1357 1369 1377 1359 1379 1361 1363 1379 1363 1371 1371 1365 1381 1357 1375 1373 1383 1375 1367 1369 1385 1377 1387 1379 1371 1389 1371 1381 1373 1375 1391 1383 1393 1375 1385 1395 1377 1385 1397 1395 1387 1371 1389 1389 1381 1399 1375 1393 1391 1401 1393 1383 1397 1403 1395 1405 1387 1389 1407 1389 1399 1391 1393 1409 1411 1393 1401 1411 1401 1413 1397 1415 1403 1407 1405 1389 1407 1399 1417 1393 1419 1409 1421 1411 1413 1415 1423 1403 1425 1405 1407 1427 1407 1417 1409 1419 1429 1429 1419 1421 1421 1413 1431 1415 1433 1423 1435 1425 1407 1437 1427 1417 1439 1429 1421 1441 1421 1431 1433 1443 1423 1445 1425 1435 1447 1427 1437 1449 1447 1437 1439 1421 1441 1441 1431 1451 1453 1443 1433 1445 1435 1447 1455 1447 1449 1457 1439 1441 1459 1441 1451 1461 1443 1453 1463 1445 1447 1463 1447 1455 1465 1455 1449 1457 1441 1459 1459 1451 1467 1469 1461 1453 1471 1463 1455 1473 1455 1465 1475 1457 1459 1467 1477 1459 1479 1461 1469 1481 1479 1469 1471 1455 1473 1473 1465 1483 1475 1459 1477 1485 1477 1467 1487 1479 1481 1489 1471 1473 1491 1473 1483 1493 1475 1477 1485 1495 1477 1497 1495 1485 1499 1487 1481 1489 1473 1491 1491 1483 1501 1493 1477 1495 1497 1503 1495 1505 1487 1499 1507 1489 1491 1509 1491 1501 1511 1493 1495 1511 1495 1503 1513 1503 1497 1515 1505 1499 1507 1491 1509 1509 1501 1517</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1697\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1702\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1703\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1706\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"30\">0.6481636166572571 1.373394846916199 -0.0007520765066146851 0.6752741932868958 1.396806240081787 0.002683687955141068 0.6674685478210449 1.397706627845764 0.01294291764497757 0.6674685478210449 1.397706627845764 0.01294291764497757 0.6752741932868958 1.396806240081787 0.002683687955141068 0.6481636166572571 1.373394846916199 -0.0007520765066146851 0.6447465419769287 1.377805113792419 0.01006027683615685 0.6447465419769287 1.377805113792419 0.01006027683615685 0.603096067905426 1.37308406829834 -0.006200850009918213 0.603096067905426 1.37308406829834 -0.006200850009918213</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1706\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1704\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1707\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"30\">-0.2763361914172779 0.8551604172472301 -0.4385646703583597 -0.5409128252787497 0.6957396053703466 -0.4726094761725324 -0.5430237831643805 0.695908146677322 -0.4699329976773058 0.5430237831643805 -0.695908146677322 0.4699329976773058 0.5409128252787497 -0.6957396053703466 0.4726094761725324 0.2763361914172779 -0.8551604172472301 0.4385646703583597 -0.2920676442762112 0.8497403540373408 -0.4389052538845249 0.2920676442762112 -0.8497403540373408 0.4389052538845249 0.03797377695879648 0.9294074683196612 -0.3670963771206708 -0.03797377695879648 -0.9294074683196612 0.3670963771206708</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1707\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1705\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1703\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1704\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"6\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 8 0 6 7 5 9</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1705\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1708\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1709\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1712\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">0.6704499125480652 1.39844274520874 -0.02658201195299625 0.6457784771919251 1.377284526824951 -0.02970624901354313 0.6441598534584045 1.379136204719544 -0.0151943676173687 0.6441598534584045 1.379136204719544 -0.0151943676173687 0.6457784771919251 1.377284526824951 -0.02970624901354313 0.6704499125480652 1.39844274520874 -0.02658201195299625</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1712\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1710\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1713\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">0.6295715759548037 -0.7587738394453171 0.1670385923168571 0.6295715759548037 -0.7587738394453171 0.1670385923168571 0.6295715759548037 -0.7587738394453171 0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571 -0.6295715759548037 0.7587738394453171 -0.1670385923168571</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1713\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1711\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1709\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1710\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1711\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1714\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1715\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1719\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"4554\">0.5764011144638062 1.390616059303284 -0.139177218079567 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5764011144638062 1.390616059303284 -0.139177218079567 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5702534914016724 1.400581955909729 -0.1424160599708557 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.572441041469574 1.388842225074768 -0.1325118541717529 0.572441041469574 1.388842225074768 -0.1325118541717529 0.5657340288162231 1.399670124053955 -0.1358045488595963 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5843587517738342 1.380040049552918 -0.1285742223262787 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5873357057571411 1.382593750953674 -0.1353528052568436 0.5873357057571411 1.382593750953674 -0.1353528052568436 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5692543983459473 1.411303281784058 -0.1450603604316711 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5724304914474487 1.389370799064636 -0.1468231379985809 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5657270550727844 1.400197744369507 -0.1501163244247437 0.5646573305130005 1.41193699836731 -0.152768149971962 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557196855545044 1.412441611289978 -0.1504120379686356 0.5646573305130005 1.41193699836731 -0.152768149971962 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5659894943237305 1.386791586875916 -0.1443661153316498 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5583909153938294 1.398807525634766 -0.1386500746011734 0.5659894943237305 1.386791586875916 -0.1443661153316498 0.5659943819046021 1.386461973190308 -0.1352591961622238 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5646679997444153 1.411415338516235 -0.1384553760290146 0.5794986486434937 1.376735687255859 -0.1402455270290375 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5795061588287354 1.376403570175171 -0.1311370879411697 0.5794986486434937 1.376735687255859 -0.1402455270290375 0.5733222365379334 1.421713590621948 -0.1470988094806671 0.5733222365379334 1.421713590621948 -0.1470988094806671 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5967265367507935 1.369694590568543 -0.1356068253517151 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967349410057068 1.369348287582398 -0.1265003681182861 0.5967265367507935 1.369694590568543 -0.1356068253517151 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.5995761156082153 1.373765230178833 -0.1241556406021118 0.6013235449790955 1.376871228218079 -0.1310993880033493 0.6013235449790955 1.376871228218079 -0.1310993880033493 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5583849549293518 1.39915668964386 -0.147756814956665 0.5583849549293518 1.39915668964386 -0.147756814956665 0.557205080986023 1.412230134010315 -0.1413010209798813 0.557205080986023 1.412230134010315 -0.1413010209798813 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.5691006183624268 1.423265218734741 -0.1547554880380631 0.6162846684455872 1.366446971893311 -0.1306639760732651 0.6162846684455872 1.366446971893311 -0.1306639760732651 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.5843433737754822 1.380573272705078 -0.1428838670253754 0.557205080986023 1.412230134010315 -0.1413010209798813 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557196855545044 1.412441611289978 -0.1504120379686356 0.557205080986023 1.412230134010315 -0.1413010209798813 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622568726539612 1.425256729125977 -0.1523158103227615 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5691161155700684 1.422747373580933 -0.1404446512460709 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5820477604866028 1.430738091468811 -0.1485836952924728 0.5820477604866028 1.430738091468811 -0.1485836952924728 0.578619122505188 1.433083534240723 -0.1561392545700073 0.578619122505188 1.433083534240723 -0.1561392545700073 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6162912845611572 1.366117119789124 -0.1215568333864212 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6168531775474548 1.370958089828491 -0.1195051372051239 0.6171872019767761 1.374258875846863 -0.1265972405672073 0.6171872019767761 1.374258875846863 -0.1265972405672073 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.5995669960975647 1.374346256256104 -0.1384849399328232 0.573066771030426 1.436009049415588 -0.1444292664527893 0.573066771030426 1.436009049415588 -0.1444292664527893 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5622597336769104 1.424921035766602 -0.1432086825370789 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.578619122505188 1.433083534240723 -0.1561392545700073 0.578619122505188 1.433083534240723 -0.1561392545700073 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.5730592608451843 1.43633759021759 -0.1535362601280212 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6362500786781311 1.367325901985169 -0.1256429404020309 0.6362500786781311 1.367325901985169 -0.1256429404020309 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.573066771030426 1.436009049415588 -0.1444292664527893 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.5786368250846863 1.432559490203857 -0.1418299227952957 0.573066771030426 1.436009049415588 -0.1444292664527893 0.6168361306190491 1.371485948562622 -0.133814811706543 0.6168361306190491 1.371485948562622 -0.133814811706543 0.594593346118927 1.437490224838257 -0.1496256589889526 0.594593346118927 1.437490224838257 -0.1496256589889526 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6333761215209961 1.374970674514771 -0.1220347285270691 0.6333761215209961 1.374970674514771 -0.1220347285270691 0.6344669461250305 1.372265100479126 -0.1290775239467621 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6362577676773071 1.366985082626343 -0.1165362745523453 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.6344821453094482 1.371745586395264 -0.1147672384977341 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922964215278626 1.439892768859863 -0.1427287757396698 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5922877788543701 1.440422058105469 -0.157041072845459 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885539650917053 1.444635152816773 -0.1542106717824936 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.5885571837425232 1.444306373596191 -0.1451022177934647 0.6483002901077271 1.378945589065552 -0.1176018267869949 0.6483002901077271 1.378945589065552 -0.1176018267869949 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6546680331230164 1.372084975242615 -0.1207398623228073 0.6546680331230164 1.372084975242615 -0.1207398623228073 0.654680073261261 1.371889233589172 -0.1116740703582764 0.654680073261261 1.371889233589172 -0.1116740703582764 0.650735080242157 1.376069068908691 -0.1101703196763992 0.650735080242157 1.376069068908691 -0.1101703196763992 0.6097114086151123 1.441336512565613 -0.1503738611936569 0.6097114086151123 1.441336512565613 -0.1503738611936569 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6072173118591309 1.449327707290649 -0.1545247584581375 0.6072173118591309 1.449327707290649 -0.1545247584581375 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.6507208347320557 1.376594662666321 -0.1244810223579407 0.654680073261261 1.371889233589172 -0.1116740703582764 0.654680073261261 1.371889233589172 -0.1116740703582764 0.650735080242157 1.376069068908691 -0.1101703196763992 0.650735080242157 1.376069068908691 -0.1101703196763992 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087702512741089 1.444057106971741 -0.1433121114969254 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6087597012519836 1.444593787193298 -0.1576243340969086 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6072232127189636 1.448999404907227 -0.1454174369573593 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.660498857498169 1.385782361030579 -0.1134771406650543 0.660498857498169 1.385782361030579 -0.1134771406650543 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6697470545768738 1.380654454231262 -0.1162995100021362 0.6697470545768738 1.380654454231262 -0.1162995100021362 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6259343028068543 1.441896080970764 -0.1510118097066879 0.6259343028068543 1.441896080970764 -0.1510118097066879 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6272223591804504 1.449964761734009 -0.1547037810087204 0.6272223591804504 1.449964761734009 -0.1547037810087204 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6272338032722473 1.449633955955505 -0.14559705555439 0.626435399055481 1.444658279418945 -0.1437764018774033 0.626435399055481 1.444658279418945 -0.1437764018774033 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640293002128601 1.383516907691956 -0.1059092506766319 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6640180945396423 1.384032368659973 -0.1202206164598465 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.6695966720581055 1.380324721336365 -0.1071980148553848 0.626435399055481 1.444658279418945 -0.1437764018774033 0.626435399055481 1.444658279418945 -0.1437764018774033 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6264219880104065 1.445172667503357 -0.1580873429775238 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6272338032722473 1.449633955955505 -0.14559705555439 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6687827706336975 1.394805312156677 -0.1098122596740723 0.6687827706336975 1.394805312156677 -0.1098122596740723 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6416727304458618 1.439122557640076 -0.151732012629509 0.6416727304458618 1.439122557640076 -0.151732012629509 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6466220617294312 1.446502447128296 -0.1549863368272781 0.6466220617294312 1.446502447128296 -0.1549863368272781 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6800068616867065 1.39145815372467 -0.1032741814851761 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730597019195557 1.393342256546021 -0.1021476089954376 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6730501651763916 1.393864989280701 -0.1164594292640686 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6799954175949097 1.391790509223938 -0.1123813688755035 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6435636878013611 1.44161593914032 -0.1443288028240204 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6436888575553894 1.44214403629303 -0.1586243659257889 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6466290950775147 1.446156024932861 -0.1458790600299835 0.6844237446784973 1.404522180557251 -0.1091566681861877 0.6844237446784973 1.404522180557251 -0.1091566681861877 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6553794741630554 1.433307886123657 -0.1527181565761566 0.6553794741630554 1.433307886123657 -0.1527181565761566 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6635121703147888 1.439278960227966 -0.1555992513895035 0.6635121703147888 1.439278960227966 -0.1555992513895035 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6844343543052673 1.404186367988586 -0.1000497937202454 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6769505739212036 1.404563546180725 -0.09899868071079254 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6723400950431824 1.405112981796265 -0.1067095249891281 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6769406795501709 1.40510094165802 -0.113311305642128 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584820151329041 1.435260534286499 -0.1451714336872101 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6584723591804504 1.435787677764893 -0.1594841182231903 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.6636261940002441 1.438936829566956 -0.1464861333370209 0.675299882888794 1.416630387306213 -0.1108274012804031 0.675299882888794 1.416630387306213 -0.1108274012804031 0.6825904846191406 1.417605042457581 -0.1066848784685135 0.6825904846191406 1.417605042457581 -0.1066848784685135 0.682598352432251 1.417258620262146 -0.09757854789495468 0.682598352432251 1.417258620262146 -0.09757854789495468 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6708204746246338 1.415700078010559 -0.1042181849479675 0.6708204746246338 1.415700078010559 -0.1042181849479675 0.6657178997993469 1.425013899803162 -0.1541275084018707 0.6657178997993469 1.425013899803162 -0.1541275084018707 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6762241125106812 1.42901611328125 -0.1567336469888687 0.6762241125106812 1.42901611328125 -0.1567336469888687 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.675299882888794 1.416630387306213 -0.1108274012804031 0.675299882888794 1.416630387306213 -0.1108274012804031 0.682598352432251 1.417258620262146 -0.09757854789495468 0.682598352432251 1.417258620262146 -0.09757854789495468 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6753107905387878 1.416101813316345 -0.09651508927345276 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697296500205994 1.426226496696472 -0.1464793086051941 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6697134971618652 1.42674446105957 -0.1607888787984848 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.6762321591377258 1.428685665130615 -0.1476262658834457 0.664371132850647 1.425509691238403 -0.1023261845111847 0.664371132850647 1.425509691238403 -0.1023261845111847 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6746793389320374 1.429725646972656 -0.104955717921257 0.6746793389320374 1.429725646972656 -0.104955717921257 0.674686074256897 1.429399251937866 -0.09584938734769821 0.674686074256897 1.429399251937866 -0.09584938734769821 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.683535635471344 1.416723370552063 -0.1585377752780914 0.683535635471344 1.416723370552063 -0.1585377752780914 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.6682935357093811 1.427326679229736 -0.1089968681335449 0.674686074256897 1.429399251937866 -0.09584938734769821 0.674686074256897 1.429399251937866 -0.09584938734769821 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6683052182197571 1.426796913146973 -0.09468542784452438 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6761956214904785 1.415384650230408 -0.1483718603849411 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6716707348823547 1.415084958076477 -0.1560775637626648 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6761853098869324 1.415915608406067 -0.1626829355955124 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6835392117500305 1.416390776634216 -0.1494299024343491 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.653633177280426 1.433576941490173 -0.1009682565927506 0.653633177280426 1.433576941490173 -0.1009682565927506 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6612877249717712 1.439727663993835 -0.1038927957415581 0.6612877249717712 1.439727663993835 -0.1038927957415581 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6847144961357117 1.403622508049011 -0.1610865443944931 0.6847144961357117 1.403622508049011 -0.1610865443944931 0.684719443321228 1.403284192085266 -0.1519800424575806 0.684719443321228 1.403284192085266 -0.1519800424575806 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566229462623596 1.43560791015625 -0.09343492239713669 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6566105484962463 1.436123967170715 -0.1077461838722229 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6614730954170227 1.439389228820801 -0.09477578103542328 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6772589087486267 1.403830289840698 -0.1509251296520233 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6726633310317993 1.404475450515747 -0.1586337387561798 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.6772496700286865 1.404358267784119 -0.1652370244264603 0.684719443321228 1.403284192085266 -0.1519800424575806 0.684719443321228 1.403284192085266 -0.1519800424575806 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6396493911743164 1.439105153083801 -0.1000177264213562 0.6396493911743164 1.439105153083801 -0.1000177264213562 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6441908478736877 1.44657564163208 -0.1033200994133949 0.6441908478736877 1.44657564163208 -0.1033200994133949 0.6685919761657715 1.39425265789032 -0.1617981195449829 0.6685919761657715 1.39425265789032 -0.1617981195449829 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6795402765274048 1.391004085540772 -0.1643800884485245 0.6795402765274048 1.391004085540772 -0.1643800884485245 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6442612409591675 1.446246147155762 -0.09420574456453323 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6414031386375427 1.441640138626099 -0.09263098984956741 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6413898468017578 1.44215738773346 -0.1069413274526596 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728100180625916 1.392688751220703 -0.1541407853364945 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6728001832962036 1.393224954605103 -0.1684527099132538 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6796600818634033 1.390667915344238 -0.1552805304527283 0.6246870160102844 1.449633955955505 -0.1030546501278877 0.6246870160102844 1.449633955955505 -0.1030546501278877 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6237871050834656 1.441540479660034 -0.09931465238332748 0.6237871050834656 1.441540479660034 -0.09931465238332748 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6600530743598938 1.385418653488159 -0.1655101180076599 0.6600530743598938 1.385418653488159 -0.1655101180076599 0.663275957107544 1.383595705032349 -0.1722719520330429 0.663275957107544 1.383595705032349 -0.1722719520330429 0.6688450574874878 1.38010573387146 -0.1683710515499115 0.6688450574874878 1.38010573387146 -0.1683710515499115 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6246911287307739 1.44929313659668 -0.09394568204879761 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241375803947449 1.444300055503845 -0.09209706634283066 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6241262555122376 1.444824695587158 -0.1064082011580467 0.6632908582687378 1.383078336715698 -0.157962441444397 0.6632908582687378 1.383078336715698 -0.157962441444397 0.663275957107544 1.383595705032349 -0.1722719520330429 0.663275957107544 1.383595705032349 -0.1722719520330429 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6688529253005981 1.379770517349243 -0.1592636406421661 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6047239303588867 1.448564052581787 -0.1028712913393974 0.6047239303588867 1.448564052581787 -0.1028712913393974 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6076093316078186 1.440625190734863 -0.09867467731237412 0.6076093316078186 1.440625190734863 -0.09867467731237412 0.6473151445388794 1.37885594367981 -0.1696802973747253 0.6473151445388794 1.37885594367981 -0.1696802973747253 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6533486247062683 1.371997594833374 -0.1729011684656143 0.6533486247062683 1.371997594833374 -0.1729011684656143 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6065068244934082 1.443861246109009 -0.1059425100684166 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6047347187995911 1.44823956489563 -0.09376443177461624 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6065186858177185 1.443331599235535 -0.09163114428520203 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496213674545288 1.375920534133911 -0.1622652113437653 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6496085524559021 1.376453876495361 -0.1765754669904709 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.6533584594726563 1.371659278869629 -0.1637943089008331 0.5926844477653503 1.436460614204407 -0.09790220111608505 0.5926844477653503 1.436460614204407 -0.09790220111608505 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.6321871280670166 1.375200867652893 -0.1741351038217545 0.6321871280670166 1.375200867652893 -0.1741351038217545 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6346774697303772 1.367498278617859 -0.1777908951044083 0.6346774697303772 1.367498278617859 -0.1777908951044083 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5902525186538696 1.439341545104981 -0.1053336560726166 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863074660301209 1.443471908569336 -0.1025299355387688 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5863137245178223 1.44314181804657 -0.09342159330844879 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.5902666449546814 1.438814997673035 -0.09102384001016617 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331424713134766 1.371952295303345 -0.1668858230113983 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6331315040588379 1.372478127479553 -0.181196466088295 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.6346840262413025 1.367164254188538 -0.1686835885047913 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5804890394210815 1.429435133934021 -0.09682229161262512 0.5804890394210815 1.429435133934021 -0.09682229161262512 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.6159605383872986 1.374831795692444 -0.1787005662918091 0.6159605383872986 1.374831795692444 -0.1787005662918091 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6146628856658936 1.367056727409363 -0.1828146427869797 0.6146628856658936 1.367056727409363 -0.1828146427869797 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769718289375305 1.431182742118835 -0.09007899463176727 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5769632458686829 1.431698083877564 -0.1043910980224609 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712346434593201 1.434844374656677 -0.1018064096570015 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.5712435245513916 1.434504389762878 -0.09269971400499344 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154747009277344 1.371551513671875 -0.1716261506080627 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6154617071151733 1.372076988220215 -0.1859380602836609 0.6146710515022278 1.366716861724854 -0.1737080514431 0.6146710515022278 1.366716861724854 -0.1737080514431 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5722107291221619 1.420226573944092 -0.09528376907110214 0.5722107291221619 1.420226573944092 -0.09528376907110214 0.567931592464447 1.421685934066773 -0.1029479652643204 0.567931592464447 1.421685934066773 -0.1029479652643204 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5997619032859802 1.37767767906189 -0.1832408457994461 0.5997619032859802 1.37767767906189 -0.1832408457994461 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5947365760803223 1.37060809135437 -0.1878018081188202 0.5947365760803223 1.37060809135437 -0.1878018081188202 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5609989166259766 1.423197150230408 -0.09141424298286438 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.5679451823234558 1.421168446540833 -0.08863725513219833 0.567931592464447 1.421685934066773 -0.1029479652643204 0.567931592464447 1.421685934066773 -0.1029479652643204 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5609943270683289 1.423523187637329 -0.1005217954516411 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978583097457886 1.374667882919312 -0.1763367503881455 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5978453755378723 1.375202417373657 -0.1906469464302063 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5947463512420654 1.370279550552368 -0.1786944419145584 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5857048630714417 1.383684992790222 -0.1875032186508179 0.5857048630714417 1.383684992790222 -0.1875032186508179 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5774619579315186 1.378065705299377 -0.1924419403076172 0.5774619579315186 1.378065705299377 -0.1924419403076172 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568916201591492 1.410306930541992 -0.09850385785102844 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5568992495536804 1.409980654716492 -0.08939668536186218 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5643900036811829 1.409477710723877 -0.08654490858316422 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5689915418624878 1.409571051597595 -0.0931428074836731 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5643752813339233 1.41002345085144 -0.1008547842502594 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825681090354919 1.381227493286133 -0.1807400286197662 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5825559496879578 1.381809830665588 -0.1950600743293762 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5774638652801514 1.377736687660217 -0.1833329349756241 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.559303879737854 1.396423816680908 -0.08659722656011581 0.559303879737854 1.396423816680908 -0.08659722656011581 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5755146741867065 1.392250299453735 -0.1912776529788971 0.5755146741867065 1.392250299453735 -0.1912776529788971 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5665632486343384 1.398030161857605 -0.09807161241769791 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.5592970252037048 1.396758675575256 -0.09570495039224625 0.559303879737854 1.396423816680908 -0.08659722656011581 0.559303879737854 1.396423816680908 -0.08659722656011581 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5665746927261353 1.397493004798889 -0.08376003056764603 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5710389614105225 1.398471117019653 -0.0903698280453682 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714873671531677 1.390553593635559 -0.1846199482679367 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5714727640151978 1.391070604324341 -0.1989296525716782 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649247765541077 1.38861870765686 -0.1964846402406693 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5649340152740479 1.388290643692017 -0.1873781085014343 0.5776671171188355 1.388520479202271 -0.08703336119651794 0.5776671171188355 1.388520479202271 -0.08703336119651794 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5674387216567993 1.384496212005615 -0.09220243245363236 0.5674387216567993 1.384496212005615 -0.09220243245363236 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5737642049789429 1.387189388275147 -0.09467083215713501 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5674445629119873 1.384111404418945 -0.08307621628046036 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5737829804420471 1.386671304702759 -0.08036161959171295 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5652135014533997 1.401618123054504 -0.1879041790962219 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5697376132011414 1.402419090270996 -0.1945079267024994 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5651991367340088 1.402151584625244 -0.2022149413824081 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578399896621704 1.401153922080994 -0.1998576819896698 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5578461289405823 1.400812745094299 -0.1907510757446289 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5885612964630127 1.380340695381165 -0.08317101746797562 0.5885612964630127 1.380340695381165 -0.08317101746797562 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5808379054069519 1.374427676200867 -0.08804868161678314 0.5808379054069519 1.374427676200867 -0.08804868161678314 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856249928474426 1.377771019935608 -0.07638583332300186 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5856167674064636 1.378298044204712 -0.09069861471652985 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5808475017547607 1.374094367027283 -0.07894251495599747 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5643612146377564 1.413373708724976 -0.1905292719602585 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5689371824264526 1.413212180137634 -0.1971327513456345 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5643477439880371 1.41389811038971 -0.2048404365777969 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569000244140625 1.4144606590271 -0.202483594417572 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5569044351577759 1.414121747016907 -0.1933751851320267 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6026553511619568 1.374741792678833 -0.07890588045120239 0.6026553511619568 1.374741792678833 -0.07890588045120239 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.5981957316398621 1.367648720741272 -0.08346498012542725 0.5981957316398621 1.367648720741272 -0.08346498012542725 0.5731960535049439 1.423600435256958 -0.1991498172283173 0.5731960535049439 1.423600435256958 -0.1991498172283173 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.5982027649879456 1.367180943489075 -0.07429047673940659 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009603142738342 1.37166953086853 -0.0719737634062767 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.6009485125541687 1.372190117835999 -0.08628421276807785 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5690116882324219 1.424656987190247 -0.1924917697906494 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5689994096755981 1.425189256668091 -0.2068033218383789 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5621904730796814 1.427223324775696 -0.2043578177690506 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.5622015595436096 1.426888346672058 -0.1952511966228485 0.6178026795387268 1.364426612854004 -0.07844620943069458 0.6178026795387268 1.364426612854004 -0.07844620943069458 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.618276834487915 1.368943214416504 -0.06729701906442642 0.618276834487915 1.368943214416504 -0.06729701906442642 0.6185595989227295 1.372249364852905 -0.07439717650413513 0.6185595989227295 1.372249364852905 -0.07439717650413513 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.5820948481559753 1.432539939880371 -0.2006160467863083 0.5820948481559753 1.432539939880371 -0.2006160467863083 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.6178107857704163 1.364094972610474 -0.0693393349647522 0.618276834487915 1.368943214416504 -0.06729701906442642 0.618276834487915 1.368943214416504 -0.06729701906442642 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.6182669997215271 1.369479894638062 -0.08160876482725143 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787119865417481 1.434388041496277 -0.1938553303480148 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5787032246589661 1.434916257858276 -0.2081677317619324 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5731993913650513 1.438224792480469 -0.2055547088384628 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.5732076168060303 1.437894344329834 -0.1964481174945831 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6377438306808472 1.36546528339386 -0.07342720776796341 0.6377438306808472 1.36546528339386 -0.07342720776796341 0.637752890586853 1.365134596824646 -0.06432016938924789 0.637752890586853 1.365134596824646 -0.06432016938924789 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6347270011901856 1.373091697692871 -0.06983600556850433 0.6347270011901856 1.373091697692871 -0.06983600556850433 0.5947583317756653 1.439199566841126 -0.2016407698392868 0.5947583317756653 1.439199566841126 -0.2016407698392868 0.592503547668457 1.44215738773346 -0.2090510278940201 0.592503547668457 1.44215738773346 -0.2090510278940201 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.6358668208122253 1.370387077331543 -0.0768716037273407 0.637752890586853 1.365134596824646 -0.06432016938924789 0.637752890586853 1.365134596824646 -0.06432016938924789 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.6358861923217773 1.369865417480469 -0.06256238371133804 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.5925095677375794 1.441620945930481 -0.1947383284568787 0.592503547668457 1.44215738773346 -0.2090510278940201 0.592503547668457 1.44215738773346 -0.2090510278940201 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888426303863525 1.446391224861145 -0.2062104940414429 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.5888529419898987 1.446051478385925 -0.1971034407615662 0.6495687365531921 1.377189040184021 -0.06541077047586441 0.6495687365531921 1.377189040184021 -0.06541077047586441 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6560683846473694 1.370518207550049 -0.06857547909021378 0.6560683846473694 1.370518207550049 -0.06857547909021378 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.652233898639679 1.374327898025513 -0.05795620754361153 0.652233898639679 1.374327898025513 -0.05795620754361153 0.6099497675895691 1.442925214767456 -0.2023820877075195 0.6099497675895691 1.442925214767456 -0.2023820877075195 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6075994372367859 1.450924038887024 -0.2065163999795914 0.6075994372367859 1.450924038887024 -0.2065163999795914 0.60760897397995 1.450597167015076 -0.1974090039730072 0.60760897397995 1.450597167015076 -0.1974090039730072 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6520400643348694 1.374853014945984 -0.07228550314903259 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.6560758948326111 1.370179057121277 -0.05946808680891991 0.652233898639679 1.374327898025513 -0.05795620754361153 0.652233898639679 1.374327898025513 -0.05795620754361153 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090631484985352 1.445659995079041 -0.195314884185791 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.6090507507324219 1.446179270744324 -0.2096260637044907 0.60760897397995 1.450597167015076 -0.1974090039730072 0.60760897397995 1.450597167015076 -0.1974090039730072 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6616408824920654 1.384117484092712 -0.06130355969071388 0.6616408824920654 1.384117484092712 -0.06130355969071388 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6709807515144348 1.379074215888977 -0.06411219388246536 0.6709807515144348 1.379074215888977 -0.06411219388246536 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6261875033378601 1.44335949420929 -0.2030204385519028 0.6261875033378601 1.44335949420929 -0.2030204385519028 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6276242136955261 1.451410889625549 -0.2066955715417862 0.6276242136955261 1.451410889625549 -0.2066955715417862 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6652039289474487 1.38187563419342 -0.05373089388012886 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6651914715766907 1.382407546043396 -0.06804191321134567 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6709899306297302 1.378739595413208 -0.05500611662864685 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267433166503906 1.446104884147644 -0.195779412984848 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6267296671867371 1.446630120277405 -0.2100899815559387 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6276338696479797 1.45107102394104 -0.1975885480642319 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.674055278301239 1.391781568527222 -0.04999235644936562 0.674055278301239 1.391781568527222 -0.04999235644936562 0.6697533130645752 1.393221259117127 -0.05765779316425324 0.6697533130645752 1.393221259117127 -0.05765779316425324 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6418677568435669 1.440455317497253 -0.2037471383810043 0.6418677568435669 1.440455317497253 -0.2037471383810043 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6469581127166748 1.447785615921021 -0.2069866359233856 0.6469581127166748 1.447785615921021 -0.2069866359233856 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.6810328364372253 1.389955401420593 -0.05111315473914146 0.674055278301239 1.391781568527222 -0.04999235644936562 0.674055278301239 1.391781568527222 -0.04999235644936562 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6740413308143616 1.3923020362854 -0.06430293619632721 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6810228228569031 1.390280246734619 -0.06022004410624504 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438122391700745 1.442925214767456 -0.1963385045528412 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6438024044036865 1.44345760345459 -0.2106490731239319 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6469643712043762 1.447451710700989 -0.1978787630796433 0.6852126121520996 1.403058409690857 -0.05702411383390427 0.6852126121520996 1.403058409690857 -0.05702411383390427 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6554705500602722 1.434533596038818 -0.2047469019889832 0.6554705500602722 1.434533596038818 -0.2047469019889832 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6637067198753357 1.440432906150818 -0.2076139599084854 0.6637067198753357 1.440432906150818 -0.2076139599084854 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6852158308029175 1.402729630470276 -0.04791588708758354 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6777282357215881 1.403048634529114 -0.04686715453863144 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6731106042861939 1.403549671173096 -0.05457767471671104 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6777169704437256 1.403566718101502 -0.06117801368236542 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6587978601455689 1.436457991600037 -0.1971957683563232 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6586005091667175 1.436984896659851 -0.2115076631307602 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.6637338399887085 1.440094232559204 -0.1985081881284714 0.675865113735199 1.415092825889587 -0.05872093886137009 0.675865113735199 1.415092825889587 -0.05872093886137009 0.683136522769928 1.416121363639832 -0.05458316951990128 0.683136522769928 1.416121363639832 -0.05458316951990128 0.68314129114151 1.415789604187012 -0.04547535255551338 0.68314129114151 1.415789604187012 -0.04547535255551338 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6713975071907044 1.414113759994507 -0.05211071670055389 0.6713975071907044 1.414113759994507 -0.05211071670055389 0.6655508279800415 1.426157832145691 -0.2061705887317658 0.6655508279800415 1.426157832145691 -0.2061705887317658 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6762374043464661 1.430071353912354 -0.2087742984294891 0.6762374043464661 1.430071353912354 -0.2087742984294891 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.669693648815155 1.427335619926453 -0.1985236257314682 0.669693648815155 1.427335619926453 -0.1985236257314682 0.675865113735199 1.415092825889587 -0.05872093886137009 0.675865113735199 1.415092825889587 -0.05872093886137009 0.68314129114151 1.415789604187012 -0.04547535255551338 0.68314129114151 1.415789604187012 -0.04547535255551338 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.6758757829666138 1.414568543434143 -0.04440952464938164 0.669693648815155 1.427335619926453 -0.1985236257314682 0.669693648815155 1.427335619926453 -0.1985236257314682 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6696845889091492 1.427854657173157 -0.2128346264362335 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6762465834617615 1.429739236831665 -0.1996668726205826 0.6647707223892212 1.423890590667725 -0.05024185031652451 0.6647707223892212 1.423890590667725 -0.05024185031652451 0.668663501739502 1.425727844238281 -0.05691695213317871 0.668663501739502 1.425727844238281 -0.05691695213317871 0.6749993562698364 1.428184986114502 -0.05288051813840866 0.6749993562698364 1.428184986114502 -0.05288051813840866 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.675951361656189 1.416974186897278 -0.2147535979747772 0.675951361656189 1.416974186897278 -0.2147535979747772 0.6833136677742004 1.417727947235107 -0.2106049805879593 0.6833136677742004 1.417727947235107 -0.2106049805879593 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.668663501739502 1.425727844238281 -0.05691695213317871 0.668663501739502 1.425727844238281 -0.05691695213317871 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6750070452690125 1.427853345870972 -0.04377317056059837 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6686729788780212 1.425207495689392 -0.04260484129190445 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6759647727012634 1.416445851325989 -0.2004420310258865 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.6714303493499756 1.416272759437561 -0.2081465721130371 0.675951361656189 1.416974186897278 -0.2147535979747772 0.675951361656189 1.416974186897278 -0.2147535979747772 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6833252310752869 1.417390942573547 -0.2014987617731094 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6538820266723633 1.431869506835938 -0.04890138283371925 0.6538820266723633 1.431869506835938 -0.04890138283371925 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6616003513336182 1.438071250915527 -0.05182943865656853 0.6616003513336182 1.438071250915527 -0.05182943865656853 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6842526197433472 1.404616117477417 -0.2131838649511337 0.6842526197433472 1.404616117477417 -0.2131838649511337 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568302512168884 1.433919191360474 -0.04137425869703293 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6568173766136169 1.434433579444885 -0.05568496882915497 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6616086959838867 1.437737703323364 -0.04272258281707764 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6768134236335754 1.404894232749939 -0.2030218541622162 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6722202897071838 1.40557074546814 -0.2107286155223846 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6768003106117249 1.405409574508667 -0.2173318564891815 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6842589378356934 1.404272794723511 -0.204077273607254 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.639799177646637 1.437276721000671 -0.04796412959694862 0.639799177646637 1.437276721000671 -0.04796412959694862 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6442509293556213 1.444796919822693 -0.05127810314297676 0.6442509293556213 1.444796919822693 -0.05127810314297676 0.6679614782333374 1.395384907722473 -0.2139163911342621 0.6679614782333374 1.395384907722473 -0.2139163911342621 0.672139048576355 1.39431893825531 -0.2205718755722046 0.672139048576355 1.39431893825531 -0.2205718755722046 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.678961455821991 1.391703963279724 -0.2074052393436432 0.678961455821991 1.391703963279724 -0.2074052393436432 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6442573666572571 1.444462180137634 -0.04217027127742767 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6415018439292908 1.439830303192139 -0.04058429971337318 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6414912343025208 1.440348029136658 -0.05489563941955566 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.6721582412719727 1.393791675567627 -0.2062628716230393 0.672139048576355 1.39431893825531 -0.2205718755722046 0.672139048576355 1.39431893825531 -0.2205718755722046 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.6789551377296448 1.392035961151123 -0.2165122181177139 0.678961455821991 1.391703963279724 -0.2074052393436432 0.678961455821991 1.391703963279724 -0.2074052393436432 0.6246472597122192 1.447684526443481 -0.05102457106113434 0.6246472597122192 1.447684526443481 -0.05102457106113434 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6238974332809448 1.43958580493927 -0.04726743698120117 0.6238974332809448 1.43958580493927 -0.04726743698120117 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6590602397918701 1.386616110801697 -0.2176548689603806 0.6590602397918701 1.386616110801697 -0.2176548689603806 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6679444909095764 1.381230473518372 -0.2205207496881485 0.6679444909095764 1.381230473518372 -0.2205207496881485 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6246544122695923 1.447351455688477 -0.04191720113158226 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241887211799622 1.442354559898377 -0.04005563259124756 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6241759061813355 1.442890644073486 -0.05436627566814423 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624513864517212 1.38425076007843 -0.2101041972637177 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6624388098716736 1.384770750999451 -0.2244157791137695 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6679539680480957 1.38089919090271 -0.2114143073558807 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6047060489654541 1.446462512016296 -0.05083831399679184 0.6047060489654541 1.446462512016296 -0.05083831399679184 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6077330112457275 1.438551783561707 -0.04662448167800903 0.6077330112457275 1.438551783561707 -0.04662448167800903 0.6463867425918579 1.380146741867065 -0.2218325585126877 0.6463867425918579 1.380146741867065 -0.2218325585126877 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6524507403373718 1.373252987861633 -0.2250670045614243 0.6524507403373718 1.373252987861633 -0.2250670045614243 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6065741777420044 1.441773533821106 -0.05389788746833801 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6047176718711853 1.446130394935608 -0.041732557117939 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6065912246704102 1.441242814064026 -0.03958840295672417 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486168503761292 1.377209067344666 -0.2144224494695664 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6486343741416931 1.37773060798645 -0.2287347465753555 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.6523002982139587 1.372917175292969 -0.2159613966941834 0.5928953289985657 1.434271335601807 -0.04584556818008423 0.5928953289985657 1.434271335601807 -0.04584556818008423 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.586394190788269 1.440893888473511 -0.0413796678185463 0.586394190788269 1.440893888473511 -0.0413796678185463 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.6311914920806885 1.376619338989258 -0.2262957394123077 0.6311914920806885 1.376619338989258 -0.2262957394123077 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6335372924804688 1.368906021118164 -0.2299681603908539 0.6335372924804688 1.368906021118164 -0.2299681603908539 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.632088840007782 1.37337338924408 -0.2190500944852829 0.632088840007782 1.37337338924408 -0.2190500944852829 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5904116034507752 1.437121868133545 -0.05328180640935898 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.5863900780677795 1.441222071647644 -0.05048742890357971 0.586394190788269 1.440893888473511 -0.0413796678185463 0.586394190788269 1.440893888473511 -0.0413796678185463 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.5904237627983093 1.436593055725098 -0.03897079825401306 0.632088840007782 1.37337338924408 -0.2190500944852829 0.632088840007782 1.37337338924408 -0.2190500944852829 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6320789456367493 1.37389600276947 -0.2333624362945557 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.6335424184799194 1.368573069572449 -0.2208607941865921 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5810641050338745 1.426966309547424 -0.04468091204762459 0.5810641050338745 1.426966309547424 -0.04468091204762459 0.577437698841095 1.429154992103577 -0.05226095765829086 0.577437698841095 1.429154992103577 -0.05226095765829086 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.5774480700492859 1.42862331867218 -0.03794967383146286 0.577437698841095 1.429154992103577 -0.05226095765829086 0.577437698841095 1.429154992103577 -0.05226095765829086 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715580582618713 1.432176351547241 -0.04969877004623413 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5715628266334534 1.431837797164917 -0.04059082269668579 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5738012790679932 1.417280197143555 -0.04298178479075432 0.5738012790679932 1.417280197143555 -0.04298178479075432 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5623511672019959 1.419844031333923 -0.03914307802915573 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694431066513062 1.418066024780273 -0.03634647279977799 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5694321393966675 1.418593406677246 -0.05065778270363808 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5623419880867004 1.420172691345215 -0.04824957996606827 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590012073516846 1.407190084457398 -0.04613885283470154 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5590090155601502 1.406722664833069 -0.0370359979569912 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5665111541748047 1.406496286392212 -0.03417723625898361 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5711246132850647 1.406785368919373 -0.0407724566757679 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5665016174316406 1.407031536102295 -0.04848847538232803 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5735331177711487 1.395941138267517 -0.03795602545142174 0.5735331177711487 1.395941138267517 -0.03795602545142174 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5691086649894714 1.395372152328491 -0.04565200582146645 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619289875030518 1.393970370292664 -0.04329560324549675 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5619387626647949 1.393566012382507 -0.03416843339800835 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5691191554069519 1.394850015640259 -0.03133954107761383 0.5807925462722778 1.386182546615601 -0.03454335033893585 0.5807925462722778 1.386182546615601 -0.03454335033893585 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5708434581756592 1.381881356239319 -0.03967851027846336 0.5708434581756592 1.381881356239319 -0.03967851027846336 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5769967436790466 1.38474702835083 -0.04216833785176277 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5708507299423218 1.381544589996338 -0.03057144209742546 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5770077109336853 1.384217143058777 -0.02785710245370865 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5921866893768311 1.378312945365906 -0.0306165087968111 0.5921866893768311 1.378312945365906 -0.0306165087968111 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.584869921207428 1.372178196907044 -0.03544721379876137 0.584869921207428 1.372178196907044 -0.03544721379876137 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5894095301628113 1.375662684440613 -0.02381525374948978 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5893967747688294 1.376182317733765 -0.03812636062502861 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.5848775506019592 1.371841549873352 -0.02634098194539547 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6066128611564636 1.373105645179749 -0.02630784548819065 0.6066128611564636 1.373105645179749 -0.02630784548819065 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6026409864425659 1.365755438804627 -0.03074319288134575 0.6026409864425659 1.365755438804627 -0.03074319288134575 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6026461124420166 1.365419626235962 -0.02163511328399181 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6051044464111328 1.36998450756073 -0.01935468055307865 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6050947308540344 1.370515942573547 -0.0336667113006115 0.6224052906036377 1.36322546005249 -0.02576779760420322 0.6224052906036377 1.36322546005249 -0.02576779760420322 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6226503849029541 1.371061563491821 -0.02178248576819897 0.6226503849029541 1.371061563491821 -0.02178248576819897 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6224151849746704 1.36289370059967 -0.01666122674942017 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225643157958984 1.367694854736328 -0.01454640179872513 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6225513815879822 1.368278741836548 -0.02896864153444767 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6421971321105957 1.364853024482727 -0.02080797962844372 0.6421971321105957 1.364853024482727 -0.02080797962844372 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6387244462966919 1.372359037399292 -0.01722737587988377 0.6387244462966919 1.372359037399292 -0.01722737587988377 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6400594115257263 1.369695544242859 -0.02424079366028309 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6422017216682434 1.36449146270752 -0.01165569946169853 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6400721669197083 1.369168281555176 -0.009929962456226349 0.6532744765281677 1.376864433288574 -0.01283644884824753 0.6532744765281677 1.376864433288574 -0.01283644884824753 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6602018475532532 1.370380640029907 -0.01594656147062779 0.6602018475532532 1.370380640029907 -0.01594656147062779 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6559081673622131 1.374603629112244 -0.0196896456182003 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6602091193199158 1.370040416717529 -0.006839774549007416 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6559200882911682 1.374085307121277 -0.005378492176532745 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6648701429367065 1.384141802787781 -0.008783668279647827 0.6648701429367065 1.384141802787781 -0.008783668279647827 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6745318174362183 1.379353284835815 -0.0115525983273983 0.6745318174362183 1.379353284835815 -0.0115525983273983 0.674536406993866 1.379023313522339 -0.002444729208946228 0.674536406993866 1.379023313522339 -0.002444729208946228 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685551404953003 1.382007122039795 -0.001194998621940613 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.6685446500778198 1.382522940635681 -0.01550716534256935 0.674536406993866 1.379023313522339 -0.002444729208946228 0.674536406993866 1.379023313522339 -0.002444729208946228 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6723722815513611 1.393458366394043 -0.005210716277360916 0.6723722815513611 1.393458366394043 -0.005210716277360916 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6838317513465881 1.390517592430115 0.001359034329652786 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767404079437256 1.392146944999695 0.002466220408678055 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6767300963401794 1.392675518989563 -0.01184551790356636 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6838225722312927 1.390856146812439 -0.007748302072286606 0.6871697902679443 1.403846859931946 -0.004648752510547638 0.6871697902679443 1.403846859931946 -0.004648752510547638 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6871784925460815 1.403210878372192 0.004446595907211304 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6796757578849793 1.403512597084045 0.005501013249158859 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6750515103340149 1.403688430786133 -0.002219200134277344 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6796679496765137 1.404162406921387 -0.008806806057691574 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6842474937438965 1.416748404502869 -0.002315051853656769 0.6842474937438965 1.416748404502869 -0.002315051853656769 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6724337339401245 1.414421319961548 0.0001581460237503052 0.6724337339401245 1.414421319961548 0.0001581460237503052 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6770648956298828 1.415509343147278 -0.006444714963436127 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6842552423477173 1.416411995887756 0.006792262196540833 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6770732402801514 1.41499388217926 0.007867183536291122 0.6653975248336792 1.423992514610291 0.001962412148714066 0.6653975248336792 1.423992514610291 0.001962412148714066 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6753374934196472 1.428580522537231 -0.0007079318165779114 0.6753374934196472 1.428580522537231 -0.0007079318165779114 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6691752076148987 1.425936818122864 -0.004722561687231064 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6753424406051636 1.428247809410095 0.008400384336709976 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6691882014274597 1.425424575805664 0.009588595479726791 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6539998650550842 1.431669116020203 0.003241512924432755 0.6539998650550842 1.431669116020203 0.003241512924432755 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6613119840621948 1.438085556030273 0.0002653300762176514 0.6613119840621948 1.438085556030273 0.0002653300762176514 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567906737327576 1.433786392211914 0.01075112074613571 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6567814350128174 1.434325575828552 -0.003560695797204971 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6613195538520813 1.437753319740295 0.009373251348733902 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6395849585533142 1.4366854429245 0.004135128110647202 0.6395849585533142 1.4366854429245 0.004135128110647202 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6435492634773254 1.444317102432251 0.000764600932598114 0.6435492634773254 1.444317102432251 0.000764600932598114 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6435598134994507 1.443985223770142 0.009870216250419617 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6411063075065613 1.439272165298462 0.01149243116378784 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6410883069038391 1.439796924591065 -0.002817187458276749 0.6237851977348328 1.446662187576294 0.0009942986071109772 0.6237851977348328 1.446662187576294 0.0009942986071109772 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6235514283180237 1.438539981842041 0.004813771694898605 0.6235514283180237 1.438539981842041 0.004813771694898605 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6237936019897461 1.44633424282074 0.01010139659047127 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236523389816284 1.441322088241577 0.01200021430850029 0.6236364245414734 1.441838026046753 -0.002309773117303848 0.6236364245414734 1.441838026046753 -0.002309773117303848</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1719\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1716\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1720\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"4554\">0.7116505720515308 0.7019729757605577 0.02806073057845515 0.5352317954222186 0.6829027544207439 0.4971627029189433 0.7372453629465509 0.3797436521099645 0.5588058996610492 -0.7372453629465509 -0.3797436521099645 -0.5588058996610492 -0.5352317954222186 -0.6829027544207439 -0.4971627029189433 -0.7116505720515308 -0.7019729757605577 -0.02806073057845515 0.729415059257715 0.4062382325778888 0.5503854737545836 -0.729415059257715 -0.4062382325778888 -0.5503854737545836 0.321802298597238 0.8322073122563755 0.4515243847729088 -0.321802298597238 -0.8322073122563755 -0.4515243847729088 0.855124220806447 0.1136881400387027 -0.505803888680887 0.8413370770380463 0.1893915278736966 -0.506243787093475 -0.8413370770380463 -0.1893915278736966 0.506243787093475 -0.855124220806447 -0.1136881400387027 0.505803888680887 -0.3799838754524652 -0.01450618074628774 0.924879357060304 -0.3750053434817528 0.09080767763385791 0.9225643381590672 -0.3792262621876895 -0.05514944765367602 0.9236590174358977 0.3792262621876895 0.05514944765367602 -0.9236590174358977 0.3750053434817528 -0.09080767763385791 -0.9225643381590672 0.3799838754524652 0.01450618074628774 -0.924879357060304 0.8189219909649463 -0.02915452216736438 0.5731638391866684 -0.8189219909649463 0.02915452216736438 -0.5731638391866684 -0.3666375048501143 -0.1470177247358506 0.9186744410566651 -0.3567132285873039 -0.1796770420002411 0.9167725089294866 0.3567132285873039 0.1796770420002411 -0.9167725089294866 0.3666375048501143 0.1470177247358506 -0.9186744410566651 0.4686564846496857 0.8829194322990098 0.02853726449037389 -0.4686564846496857 -0.8829194322990098 -0.02853726449037389 0.7523942369743223 0.4659132093646853 -0.4656477139504997 -0.7523942369743223 -0.4659132093646853 0.4656477139504997 0.8259663651628073 -0.2402977284833706 -0.5099378053306815 -0.8259663651628073 0.2402977284833706 0.5099378053306815 -0.3628069145608261 0.1115693870564698 0.925161291137225 0.3628069145608261 -0.1115693870564698 -0.925161291137225 0.8229528688625568 0.02578184751549621 0.5675243360152719 -0.8229528688625568 -0.02578184751549621 -0.5675243360152719 0.8318723466231729 -0.2056358004014074 -0.5154632057838153 -0.8318723466231729 0.2056358004014074 0.5154632057838153 -0.328304684287926 -0.2624760880002339 0.9073711134385416 0.328304684287926 0.2624760880002339 -0.9073711134385416 0.1228724497272809 0.8950183205142063 0.4287709960362834 -0.1228724497272809 -0.8950183205142063 -0.4287709960362834 -0.2545492831649428 -0.3210323987497553 -0.912218647799524 -0.247187829008473 -0.2985438407088852 -0.9218295679597535 -0.1524397997750927 -0.466420870746587 -0.8713286858450864 0.1524397997750927 0.466420870746587 0.8713286858450864 0.247187829008473 0.2985438407088852 0.9218295679597535 0.2545492831649428 0.3210323987497553 0.912218647799524 -0.3131323569893013 -0.1234289045201013 -0.9416546248679992 -0.2995191208205662 -0.1347819126211434 -0.944522171414235 0.2995191208205662 0.1347819126211434 0.944522171414235 0.3131323569893013 0.1234289045201013 0.9416546248679992 -0.7112085439326217 -0.7025344977933938 -0.02505367133623061 -0.5589780317367358 -0.6499018215929607 -0.5149477471801155 -0.9359937184041439 -0.3517886004573934 -0.01267042604699992 0.9359937184041439 0.3517886004573934 0.01267042604699992 0.5589780317367358 0.6499018215929607 0.5149477471801155 0.7112085439326217 0.7025344977933938 0.02505367133623061 -0.3329794829029215 0.2202503635923341 0.9168502829269061 0.3329794829029215 -0.2202503635923341 -0.9168502829269061 -0.328986642245139 -0.8033618035689207 -0.4963643840876978 -0.4661179128147164 -0.8841410633583626 -0.03207290814372939 0.4661179128147164 0.8841410633583626 0.03207290814372939 0.328986642245139 0.8033618035689207 0.4963643840876978 0.8306502802298186 -0.5566063174715573 0.01447478168665118 -0.8306502802298186 0.5566063174715573 -0.01447478168665118 0.694557029986885 -0.529069519817447 -0.4875202306529788 -0.694557029986885 0.529069519817447 0.4875202306529788 -0.1306463611173388 -0.8662097764505499 -0.4822988197251642 -0.2464249161348628 -0.9684800694603204 -0.03634715623069741 0.2464249161348628 0.9684800694603204 0.03634715623069741 0.1306463611173388 0.8662097764505499 0.4822988197251642 -0.3138758323648135 -0.2842246126968075 0.9059240207625833 0.3138758323648135 0.2842246126968075 -0.9059240207625833 0.2541085597975535 0.9666060045039202 0.03319144309277439 -0.2541085597975535 -0.9666060045039202 -0.03319144309277439 0.5643084556059977 0.713996570925768 -0.4144452480579535 -0.5643084556059977 -0.713996570925768 0.4144452480579535 -0.3139147437445971 0.05130004323244548 -0.9480642590162933 0.3139147437445971 -0.05130004323244548 0.9480642590162933 -0.9597626381272596 -0.2806419182355923 -0.009787348162296133 0.9597626381272596 0.2806419182355923 0.009787348162296133 -0.3220200489155827 0.2145009277290257 0.9221130300021755 0.3220200489155827 -0.2145009277290257 -0.9221130300021755 0.7616505158844272 -0.3651635953362657 0.5352980854571381 -0.7616505158844272 0.3651635953362657 -0.5352980854571381 -0.31676822712825 0.0926484873080989 -0.9439672388814911 0.31676822712825 -0.0926484873080989 0.9439672388814911 0.06286198971483102 -0.8760278648219967 -0.4781459508398103 -0.06286198971483102 0.8760278648219967 0.4781459508398103 -0.25708857985887 -0.3475523037338947 0.9017277073903252 0.25708857985887 0.3475523037338947 -0.9017277073903252 -0.07305742842861696 0.9059545913829299 0.4170238488427085 0.07305742842861696 -0.9059545913829299 -0.4170238488427085 -0.03945429889179408 -0.5382346721190098 -0.8418710091385134 0.03945429889179408 0.5382346721190098 0.8418710091385134 -0.9931124712854924 0.1171189204173347 0.003282964742422807 -0.9848237659908908 0.1734584932748857 0.00585670985499521 0.9848237659908908 -0.1734584932748857 -0.00585670985499521 0.9931124712854924 -0.1171189204173347 -0.003282964742422807 -0.8474458355869826 0.5305447005891429 0.01891762202437913 -0.8283359302926573 0.5598431464464617 0.0208623575638909 0.8283359302926573 -0.5598431464464617 -0.0208623575638909 0.8474458355869826 -0.5305447005891429 -0.01891762202437913 -0.2699934504075681 0.3208622462244649 0.9078276024030152 0.2699934504075681 -0.3208622462244649 -0.9078276024030152 0.07033313167956884 -0.559557338004145 -0.8258019351356954 -0.07033313167956884 0.559557338004145 0.8258019351356954 0.5872910630796832 -0.8093742823861758 -0.001574242229880643 -0.5872910630796832 0.8093742823861758 0.001574242229880643 0.5099087873610187 -0.729679154476476 -0.4555890254324727 -0.5099087873610187 0.729679154476476 0.4555890254324727 -0.2828697093225621 0.2426624781101927 -0.9279545512928904 0.2828697093225621 -0.2426624781101927 0.9279545512928904 0.1787386710512955 -0.5393006872107224 -0.8229260332769035 -0.1787386710512955 0.5393006872107224 0.8229260332769035 -0.03438297213929174 -0.9987484597462316 -0.03632251892970664 0.03438297213929174 0.9987484597462316 0.03632251892970664 -0.251236181078625 -0.3570388125521918 0.8996686432505855 0.251236181078625 0.3570388125521918 -0.8996686432505855 0.04874403586048696 0.9982741021679448 0.03275417391440571 -0.04874403586048696 -0.9982741021679448 -0.03275417391440571 0.3711175758422611 0.8484642387304381 -0.3773329835788833 -0.3711175758422611 -0.8484642387304381 0.3773329835788833 -0.6057070026736339 0.7951511560146045 0.02921756322420963 0.6057070026736339 -0.7951511560146045 -0.02921756322420963 -0.2698502094419589 0.2961333551369372 0.9162346317616856 0.2698502094419589 -0.2961333551369372 -0.9162346317616856 0.581626210109002 -0.6635696771839857 0.4705169871919397 -0.581626210109002 0.6635696771839857 -0.4705169871919397 -0.2686449183098566 0.2880745197099597 -0.9191534033882303 0.2686449183098566 -0.2880745197099597 0.9191534033882303 -0.5932471661465507 0.8044804555539565 0.02947874642493615 0.5932471661465507 -0.8044804555539565 -0.02947874642493615 0.2823761928648434 -0.4807485748464899 -0.8301472721669484 -0.2823761928648434 0.4807485748464899 0.8301472721669484 0.2505434470073428 -0.8378378761168972 -0.4850316221707672 -0.2505434470073428 0.8378378761168972 0.4850316221707672 -0.1747244569420722 -0.3952885920585754 0.9017861681876959 0.1747244569420722 0.3952885920585754 -0.9017861681876959 -0.2697877181305762 0.8647799818370642 0.4235211566849804 0.2697877181305762 -0.8647799818370642 -0.4235211566849804 -0.2021560468597133 0.3530340854778994 0.9135096426468835 -0.1918736220987687 0.3816584571203039 0.9041688643451774 0.1918736220987687 -0.3816584571203039 -0.9041688643451774 0.2021560468597133 -0.3530340854778994 -0.9135096426468835 0.169306486038657 0.9176716277233639 -0.359463624664296 -0.169306486038657 -0.9176716277233639 0.359463624664296 0.3502002158373024 -0.9365409557929096 -0.01583814856635804 -0.3502002158373024 0.9365409557929096 0.01583814856635804 0.311547543346312 -0.847393191175511 -0.4299568673532981 -0.311547543346312 0.847393191175511 0.4299568673532981 -0.2053896947839419 0.4066607887801326 -0.8901921568657408 0.2053896947839419 -0.4066607887801326 0.8901921568657408 -0.3625233878365697 0.931362345990689 0.03377830283209101 0.3625233878365697 -0.931362345990689 -0.03377830283209101 -0.03194270061975638 0.9318493581013336 -0.3614366302455372 -0.1550206914942187 0.9873724139859552 0.03262363113146507 0.1550206914942187 -0.9873724139859552 -0.03262363113146507 0.03194270061975638 -0.9318493581013336 0.3614366302455372 0.1733344233984457 -0.9842509088958912 -0.03471780526964243 -0.1733344233984457 0.9842509088958912 0.03471780526964243 -0.1804037074195329 -0.4056034152759444 0.896069401255158 0.1804037074195329 0.4056034152759444 -0.896069401255158 -0.1087946025738983 0.4031129492699224 0.9086603791195544 0.1087946025738983 -0.4031129492699224 -0.9086603791195544 0.363123457417921 -0.8365194497559559 0.4103371356005304 -0.363123457417921 0.8365194497559559 -0.4103371356005304 -0.1858304765037381 0.434796503264318 -0.8811464320710353 0.1858304765037381 -0.434796503264318 0.8811464320710353 -0.3566845833797729 0.9336121676703839 0.03382940077809265 0.3566845833797729 -0.9336121676703839 -0.03382940077809265 -0.1232190864579312 0.3821508503608651 0.9158481229444871 0.1232190864579312 -0.3821508503608651 -0.9158481229444871 -0.3718655359727516 0.9277850050789988 0.03051241560840916 0.3718655359727516 -0.9277850050789988 -0.03051241560840916 0.3769009454591373 -0.3789257877162465 -0.8451987486476956 -0.3769009454591373 0.3789257877162465 0.8451987486476956 0.442938843698188 -0.7517372087668981 -0.4885656042934923 -0.442938843698188 0.7517372087668981 0.4885656042934923 -0.08865885186649802 -0.4049120996922912 0.9100471413660363 0.08865885186649802 0.4049120996922912 -0.9100471413660363 -0.4722388218988064 0.759623670618326 0.4471715265174743 0.4722388218988064 -0.759623670618326 -0.4471715265174743 0.134922110185194 -0.9904818529278425 -0.02723459571578625 -0.134922110185194 0.9904818529278425 0.02723459571578625 0.1147983128463747 -0.9010408722441773 -0.4182662954543172 -0.1147983128463747 0.9010408722441773 0.4182662954543172 -0.1350494162392188 0.8787776229646012 -0.4577243106392008 0.1350494162392188 -0.8787776229646012 0.4577243106392008 -0.1391797601044876 0.9896212261704099 0.03576063604344212 0.1391797601044876 -0.9896212261704099 -0.03576063604344212 -0.02950715254320219 0.3883564831861083 0.9210366821772682 0.02950715254320219 -0.3883564831861083 -0.9210366821772682 -0.2379134067521402 0.8910569312600233 -0.3865420496415115 0.2379134067521402 -0.8910569312600233 0.3865420496415115 0.4018521372800273 -0.9154653428515124 -0.02093002152978025 -0.4018521372800273 0.9154653428515124 0.02093002152978025 -0.1000677760783224 -0.4248498934504731 0.899716070894513 0.1000677760783224 0.4248498934504731 -0.899716070894513 0.1492709696764515 -0.916415408590717 0.3713502073641012 -0.1492709696764515 0.916415408590717 -0.3713502073641012 -0.08636545570398857 0.5299273874299503 -0.8436337902862293 0.08636545570398857 -0.5299273874299503 0.8436337902862293 -0.03901069718032842 0.3769273918901466 0.9254209348984906 0.03901069718032842 -0.3769273918901466 -0.9254209348984906 -0.6676185415547608 0.5690876826141089 0.480025720632965 0.6676185415547608 -0.5690876826141089 -0.480025720632965 -0.6097251862143607 0.7923030128011297 0.02216152526601627 0.6097251862143607 -0.7923030128011297 -0.02216152526601627 0.4546240055378977 -0.2370235592359574 -0.8585667393719582 -0.4546240055378977 0.2370235592359574 0.8585667393719582 0.6358744733336068 -0.5907466388294836 -0.4966709805035683 -0.6358744733336068 0.5907466388294836 0.4966709805035683 -0.007510637923550951 -0.3776573962138263 0.92591494285543 0.007510637923550951 0.3776573962138263 -0.92591494285543 -0.06860178126321714 -0.9970229180370155 -0.03520080278158875 0.06860178126321714 0.9970229180370155 0.03520080278158875 -0.08047318131380161 -0.9028415724750428 -0.4223756173123964 0.08047318131380161 0.9028415724750428 0.4223756173123964 0.0590008412788316 0.8987807465515142 -0.4344100256171499 -0.0590008412788316 -0.8987807465515142 0.4344100256171499 0.07260530576763689 0.9967081490525157 0.03607402371091806 -0.07260530576763689 -0.9967081490525157 -0.03607402371091806 0.04179726438317089 0.3418517158216679 0.938823941471384 -0.04179726438317089 -0.3418517158216679 -0.938823941471384 -0.01504580730471367 -0.4057369034090668 0.9138660672629067 0.01504580730471367 0.4057369034090668 -0.9138660672629067 -0.4516677406065686 0.7787878965067607 -0.4352995110839578 0.4516677406065686 -0.7787878965067607 0.4352995110839578 0.6412957468603072 -0.7670420594340883 -0.0196530943617914 -0.6412957468603072 0.7670420594340883 0.0196530943617914 -0.05434906373268483 -0.9322524740024467 0.357703094741572 0.05434906373268483 0.9322524740024467 -0.357703094741572 0.02123446767469484 0.5779589524566412 -0.8157895235033325 -0.02123446767469484 -0.5779589524566412 0.8157895235033325 0.0434949249033366 0.3321800355439101 0.9422126169255535 -0.0434949249033366 -0.3321800355439101 -0.9422126169255535 0.06241270493577751 -0.3162716667464053 0.9466133778243631 -0.06241270493577751 0.3162716667464053 -0.9466133778243631 -0.815174793494416 0.281310116120255 0.5063147979466379 0.815174793494416 -0.281310116120255 -0.5063147979466379 -0.8494983244486053 0.5275732145369764 0.004370361785187775 0.8494983244486053 -0.5275732145369764 -0.004370361785187775 0.498695211023203 -0.05462154790820064 -0.8650546647505205 -0.498695211023203 0.05462154790820064 0.8650546647505205 0.8439563683662466 -0.5361045541552577 -0.01815365825525916 -0.8439563683662466 0.5361045541552577 0.01815365825525916 -0.276946828238538 -0.959819750482844 -0.04523826822132948 0.276946828238538 0.959819750482844 0.04523826822132948 -0.2862314669878527 -0.8448820396627895 -0.4519357104292893 0.2862314669878527 0.8448820396627895 0.4519357104292893 0.2515059717810537 0.8703288037188468 -0.4234058568038338 -0.2515059717810537 -0.8703288037188468 0.4234058568038338 0.2850084136732987 0.9578499598644292 0.03596746478612475 -0.2850084136732987 -0.9578499598644292 -0.03596746478612475 0.1022619630699641 0.2645132927119682 0.9589448414208974 -0.1022619630699641 -0.2645132927119682 -0.9589448414208974 0.8727529271744258 -0.4877959513010229 -0.01890603085794959 -0.8727529271744258 0.4877959513010229 0.01890603085794959 0.06500083458049345 -0.3441838698741389 0.936649537032022 -0.06500083458049345 0.3441838698741389 -0.936649537032022 -0.6576857543347527 0.5643110069948806 -0.4990015390051933 0.6576857543347527 -0.5643110069948806 0.4990015390051933 0.4964686844999146 -0.01406475665816916 -0.8679406822652517 -0.4964686844999146 0.01406475665816916 0.8679406822652517 -0.2544202722548222 -0.8958058011797969 0.3644204874021279 0.2544202722548222 0.8958058011797969 -0.3644204874021279 0.1346324613359429 0.5838208018935096 -0.8006418497874347 -0.1346324613359429 -0.5838208018935096 0.8006418497874347 0.1124337766039404 0.244863621927643 0.9630163303574095 -0.1124337766039404 -0.244863621927643 -0.9630163303574095 0.8819699798401712 0.007572893322439157 -0.4712447410289633 -0.8819699798401712 -0.007572893322439157 0.4712447410289633 0.1171534773762263 -0.2299446824738198 0.9661265474774371 -0.1171534773762263 0.2299446824738198 -0.9661265474774371 -0.8597906522069024 -0.06611795836848429 0.506348150938475 0.8597906522069024 0.06611795836848429 -0.506348150938475 -0.8025477729693723 0.198588850119454 -0.5625651435257376 0.8025477729693723 -0.198588850119454 0.5625651435257376 0.4943729432975408 0.1453021156847469 -0.8570196544495715 -0.4943729432975408 -0.1453021156847469 0.8570196544495715 -0.5010991958103166 -0.8640141958952348 -0.04877566247387134 0.5010991958103166 0.8640141958952348 0.04877566247387134 -0.4953813229015003 -0.7179144481291333 -0.4890768754375954 0.4953813229015003 0.7179144481291333 0.4890768754375954 0.4523458532938655 0.7826955050850751 -0.4275172222583134 -0.4523458532938655 -0.7826955050850751 0.4275172222583134 0.5160018988886697 0.8561791547715092 0.02644419176362373 -0.5160018988886697 -0.8561791547715092 -0.02644419176362373 0.1456705024403001 0.1553393497644045 0.9770618154106537 -0.1456705024403001 -0.1553393497644045 -0.9770618154106537 0.9975805439147285 -0.06942566409681915 -0.00362430234802979 -0.9975805439147285 0.06942566409681915 0.00362430234802979 0.1299134657451305 -0.2399575846401426 0.9620513754429946 -0.1299134657451305 0.2399575846401426 -0.9620513754429946 -0.857450808044697 -0.02494771222355772 0.5139608189719394 0.857450808044697 0.02494771222355772 -0.5139608189719394 -0.7992103629099479 0.2325402380412265 -0.5542452828027311 0.7992103629099479 -0.2325402380412265 0.5542452828027311 -0.454522715867437 -0.800084406340553 0.3915022905311971 0.454522715867437 0.800084406340553 -0.3915022905311971 0.2485703518833973 0.543191774852405 -0.8019697474950399 -0.2485703518833973 -0.543191774852405 0.8019697474950399 0.1547367922380168 0.1222975676550789 0.9803569911381977 -0.1547367922380168 -0.1222975676550789 -0.9803569911381977 0.4386228162840494 0.3279105374597031 -0.8367106455985472 -0.4386228162840494 -0.3279105374597031 0.8367106455985472 0.8139598585992446 0.3699242069509965 -0.447912301350135 -0.8139598585992446 -0.3699242069509965 0.447912301350135 0.1540933681755707 -0.1214356495907311 0.9805654577297659 -0.1540933681755707 0.1214356495907311 -0.9805654577297659 -0.7859810059008962 -0.3952304851253901 0.4754226771942673 0.7859810059008962 0.3952304851253901 -0.4754226771942673 -0.9306655580433257 -0.363171696397784 -0.04436144731026219 0.9306655580433257 0.363171696397784 0.04436144731026219 -0.7418627729000863 -0.6686517066395952 -0.0504432492307107 0.7418627729000863 0.6686517066395952 0.0504432492307107 -0.6931561066715604 -0.4793907719949321 -0.5382556079689531 0.6931561066715604 0.4793907719949321 0.5382556079689531 0.6572411328462384 0.6157850077569763 -0.4345606028124661 -0.6572411328462384 -0.6157850077569763 0.4345606028124661 0.7519849967575999 0.6588078537453647 0.02215347591008901 -0.7519849967575999 -0.6588078537453647 -0.02215347591008901 0.1709523652886035 0.02372562364279051 0.9849935957076027 -0.1709523652886035 -0.02372562364279051 -0.9849935957076027 -0.8070117603267765 -0.1635411683109926 -0.5674383710692758 0.8070117603267765 0.1635411683109926 0.5674383710692758 0.9307878365865234 0.3653327892568364 0.01288240491520963 -0.9307878365865234 -0.3653327892568364 -0.01288240491520963 0.1665431576706366 -0.1041956339718937 0.9805134606390106 -0.1665431576706366 0.1041956339718937 -0.9805134606390106 -0.6462109456116381 -0.627112372541189 0.4349039962767338 0.6462109456116381 0.627112372541189 -0.4349039962767338 0.3568995735915838 0.4535783326864708 -0.8166329594668016 -0.3568995735915838 -0.4535783326864708 0.8166329594668016 0.1683205277786634 -0.008532265206758354 0.9856953892449502 -0.1683205277786634 0.008532265206758354 -0.9856953892449502 -0.7170416727855283 -0.6951668545447707 -0.05093411264821503 0.7170416727855283 0.6951668545447707 0.05093411264821503 0.3464913921873409 0.4660477621064498 -0.8140904117944446 -0.3464913921873409 -0.4660477621064498 0.8140904117944446 0.6355101720935054 0.6397392059991743 -0.4322737205443206 -0.6355101720935054 -0.6397392059991743 0.4322737205443206 0.1685926874597324 0.005759232575638584 0.9856689794120767 -0.1685926874597324 -0.005759232575638584 -0.9856689794120767 -0.6279387722639632 -0.6490552974037456 0.4294416365465298 0.6279387722639632 0.6490552974037456 -0.4294416365465298 -0.797320525724816 -0.3587274569573655 0.4853808719787014 0.797320525724816 0.3587274569573655 -0.4853808719787014 -0.8133861344483948 -0.1226042703071534 -0.5686573565773577 0.8133861344483948 0.1226042703071534 0.5686573565773577 0.8277356009579059 0.3350499721835259 -0.4501058664877332 -0.8277356009579059 -0.3350499721835259 0.4501058664877332 0.9459915190235739 0.323992501916216 0.0113536178173332 -0.9459915190235739 -0.323992501916216 -0.0113536178173332 0.1643003987027399 -0.1191713616969986 0.97918515385876 -0.1643003987027399 0.1191713616969986 -0.97918515385876 -0.6747003574537656 -0.5099656113749023 -0.5335864530390395 0.6747003574537656 0.5099656113749023 0.5335864530390395 0.7259870510036196 0.6873468735703761 0.02229522747355532 -0.7259870510036196 -0.6873468735703761 -0.02229522747355532 0.1700498432580083 0.03943727820313243 0.984646003341229 -0.1700498432580083 -0.03943727820313243 -0.984646003341229 -0.7985694608281411 -0.36356139000931 0.4796977505963002 0.7985694608281411 0.36356139000931 -0.4796977505963002 -0.8005808643764349 -0.1773014997979544 -0.5723936213513181 0.8005808643764349 0.1773014997979544 0.5723936213513181 0.4462266470758223 0.310737547532054 -0.8392401062826026 -0.4462266470758223 -0.310737547532054 0.8392401062826026 0.1512034824032725 -0.1336368500728458 0.979427740679082 -0.1512034824032725 0.1336368500728458 -0.979427740679082 -0.4337063421292695 -0.8129751538608235 0.3885488489261287 0.4337063421292695 0.8129751538608235 -0.3885488489261287 -0.4768871581027608 -0.8776648367457268 -0.04778151082551644 0.4768871581027608 0.8776648367457268 0.04778151082551644 0.2380292631613483 0.5528668412542277 -0.7985488874955861 -0.2380292631613483 -0.5528668412542277 0.7985488874955861 0.4293378445864561 0.7959894105933828 -0.4266964652174365 -0.4293378445864561 -0.7959894105933828 0.4266964652174365 0.1533328329530971 0.1385764181221323 0.9784097396689272 -0.1533328329530971 -0.1385764181221323 -0.9784097396689272 -0.8569140460260113 0.01557632081547185 0.5152239279703386 0.8569140460260113 -0.01557632081547185 -0.5152239279703386 -0.7896054920572532 0.2717657566155899 -0.5501513795712766 0.7896054920572532 -0.2717657566155899 0.5501513795712766 0.8795910895700612 -0.03296154049339731 -0.4745872438206223 -0.8795910895700612 0.03296154049339731 0.4745872438206223 0.9931770743846931 -0.1165152085372383 -0.004848205460349638 -0.9931770743846931 0.1165152085372383 0.004848205460349638 0.1241435371507359 -0.2522091035213024 0.9596764820941924 -0.1241435371507359 0.2522091035213024 -0.9596764820941924 0.1440144604828666 0.16957260713744 0.9749384422005526 -0.1440144604828666 -0.16957260713744 -0.9749384422005526 -0.4731542405155758 -0.7367698918075729 -0.4830064090754759 0.4731542405155758 0.7367698918075729 0.4830064090754759 0.4914178532387069 0.8706231096064739 0.02288874259137876 -0.4914178532387069 -0.8706231096064739 -0.02288874259137876 -0.8609183543153827 -0.02973020345434168 0.5078737069444103 0.8609183543153827 0.02973020345434168 -0.5078737069444103 -0.7938562947689128 0.2406997805955247 -0.5584405061213231 0.7938562947689128 -0.2406997805955247 0.5584405061213231 0.4981430677576512 0.1224428744880163 -0.8584062130087993 -0.4981430677576512 -0.1224428744880163 0.8584062130087993 0.1121471507760574 -0.2398416149881592 0.9643127170646894 -0.1121471507760574 0.2398416149881592 -0.9643127170646894 0.1062963897775544 0.2553827694775809 0.960979041693532 -0.1062963897775544 -0.2553827694775809 -0.960979041693532 -0.2334309899728497 -0.9020887559179942 0.3629681106745063 0.2334309899728497 0.9020887559179942 -0.3629681106745063 -0.2546368489860527 -0.9661353058705178 -0.04174501034776832 0.2546368489860527 0.9661353058705178 0.04174501034776832 0.1225912726360824 0.5856443460283727 -0.8012440825606546 -0.1225912726360824 -0.5856443460283727 0.8012440825606546 0.2322457144925312 0.8745419870190941 -0.4257208487266607 -0.2322457144925312 -0.8745419870190941 0.4257208487266607 -0.8298684604430325 0.5578900253539257 0.008778267056029602 0.8298684604430325 -0.5578900253539257 -0.008778267056029602 -0.6381582281851053 0.592109930329274 -0.4920974560034928 0.6381582281851053 -0.592109930329274 0.4920974560034928 0.7845366827042137 -0.3705960259960854 -0.4971526717290942 -0.7845366827042137 0.3705960259960854 0.4971526717290942 0.8531095620720463 -0.5209766158183181 -0.02806137686810723 -0.8531095620720463 0.5209766158183181 0.02806137686810723 0.05745209060252372 -0.3531345851308873 0.933806844090273 -0.05745209060252372 0.3531345851308873 -0.933806844090273 0.2642023099047379 0.96389792800383 0.03313493369427906 -0.2642023099047379 -0.96389792800383 -0.03313493369427906 0.09617134804706679 0.273507182340263 0.9570500995366439 -0.09617134804706679 -0.273507182340263 -0.9570500995366439 -0.2627828300824376 -0.8573916870731996 -0.4425208234101954 0.2627828300824376 0.8573916870731996 0.4425208234101954 -0.8054325663980541 0.3138328927145027 0.5027795704241488 0.8054325663980541 -0.3138328927145027 -0.5027795704241488 0.5011990702762256 -0.07684442230173266 -0.8619132361875874 -0.5011990702762256 0.07684442230173266 0.8619132361875874 0.05596797787530988 -0.3240722944377901 0.9443753138611656 -0.05596797787530988 0.3240722944377901 -0.9443753138611656 0.03900188409162862 0.8991548421820407 -0.435889232280281 -0.03900188409162862 -0.8991548421820407 0.435889232280281 0.03524069011300303 0.3386802113123089 0.9402413563685705 -0.03524069011300303 -0.3386802113123089 -0.9402413563685705 -0.03378444717273314 -0.9335367144642884 0.356886275830907 0.03378444717273314 0.9335367144642884 -0.356886275830907 -0.0479048455183228 -0.9982543663355565 -0.03454483851260853 0.0479048455183228 0.9982543663355565 0.03454483851260853 0.009899560068351961 0.5749211771574377 -0.8181489098974338 -0.009899560068351961 -0.5749211771574377 0.8181489098974338 -0.5854927501762082 0.8104056044264791 0.02099990012483857 0.5854927501762082 -0.8104056044264791 -0.02099990012483857 -0.4341226606551393 0.7959770683591242 -0.4218507107403244 0.4341226606551393 -0.7959770683591242 0.4218507107403244 0.6153483072657556 -0.6092314275743322 -0.5001834947305943 -0.6153483072657556 0.6092314275743322 0.5001834947305943 0.6198696161494136 -0.7840905370094322 -0.03104333659642618 -0.6198696161494136 0.7840905370094322 0.03104333659642618 -0.02407700961637427 -0.4097001398519071 0.9119024580585694 0.02407700961637427 0.4097001398519071 -0.9119024580585694 0.05033926183616807 0.9980435793235593 0.03708062147278299 -0.05033926183616807 -0.9980435793235593 -0.03708062147278299 0.03481731939135043 0.3480096793275698 0.936844179874499 -0.03481731939135043 -0.3480096793275698 -0.936844179874499 -0.06080258187760262 -0.9051338646646926 -0.4207561444283083 0.06080258187760262 0.9051338646646926 0.4207561444283083 -0.6482226276671629 0.6028910632744456 0.4651126646352332 0.6482226276671629 -0.6028910632744456 -0.4651126646352332 0.4479077752369409 -0.2541629122600133 -0.8571929998044797 -0.4479077752369409 0.2541629122600133 0.8571929998044797 -0.01557210102520522 -0.3810223222922303 0.9244346918980793 0.01557210102520522 0.3810223222922303 -0.9244346918980793 -0.09713865155677696 0.5222654339317011 -0.8472324940025986 0.09713865155677696 -0.5222654339317011 0.8472324940025986 -0.1553642244159123 0.8736924138162414 -0.4610027373146406 0.1553642244159123 -0.8736924138162414 0.4610027373146406 -0.04773883644661871 0.379195553171683 0.9240842688573074 0.04773883644661871 -0.379195553171683 -0.9240842688573074 0.1709478385442632 -0.911260122999803 0.3746756260119262 -0.1709478385442632 0.911260122999803 -0.3746756260119262 0.1565031294805676 -0.9873397968093323 -0.02582433153627022 -0.1565031294805676 0.9873397968093323 0.02582433153627022 -0.3468199483393967 0.9374158955969509 0.03110244549910115 0.3468199483393967 -0.9374158955969509 -0.03110244549910115 -0.2151544640411276 0.8989222404764934 -0.381637736839397 0.2151544640411276 -0.8989222404764934 0.381637736839397 0.422916307869554 -0.7599392226206774 -0.4935931264317454 -0.422916307869554 0.7599392226206774 0.4935931264317454 0.377073827552353 -0.9255320285439551 -0.03472452612103082 -0.377073827552353 0.9255320285439551 0.03472452612103082 -0.108627411872101 -0.4243902982928708 0.898939909062256 0.108627411872101 0.4243902982928708 -0.898939909062256 0.1350124515051911 -0.8980485648208227 -0.4186650369469836 -0.1350124515051911 0.8980485648208227 0.4186650369469836 -0.1612442781859131 0.9862794914739842 0.03539841027678021 0.1612442781859131 -0.9862794914739842 -0.03539841027678021 -0.03729995421693928 0.3914302756617625 0.9194514955726434 0.03729995421693928 -0.3914302756617625 -0.9194514955726434 -0.4512633063408924 0.7735750642969342 0.4449079098513309 0.4512633063408924 -0.7735750642969342 -0.4449079098513309 0.3680151996151649 -0.3928969007208333 -0.8427317712393275 -0.3680151996151649 0.3928969007208333 0.8427317712393275 -0.09727939456517401 -0.4055410823750608 0.9088856638208666 0.09727939456517401 0.4055410823750608 -0.9088856638208666 0.3736595622003403 -0.9274540404004935 -0.0144060584841893 -0.3736595622003403 0.9274540404004935 0.0144060584841893 -0.1954592889357965 0.4220230118545197 -0.8852639402087679 0.1954592889357965 -0.4220230118545197 0.8852639402087679 -0.3804028581403459 0.9242070827686287 0.03368877675067691 0.3804028581403459 -0.9242070827686287 -0.03368877675067691 -0.1318447757518489 0.3806083511958868 0.9152891554623015 0.1318447757518489 -0.3806083511958868 -0.9152891554623015 0.3857726000592082 -0.823667545072599 0.4156335841070069 -0.3857726000592082 0.823667545072599 -0.4156335841070069 -0.1338488499243973 0.9904478287972295 0.03312980236539311 0.1338488499243973 -0.9904478287972295 -0.03312980236539311 -0.01117203391103292 0.9329421369179466 -0.3598529627796139 0.01117203391103292 -0.9329421369179466 0.3598529627796139 0.2325215409716085 -0.8441077524679405 -0.4831312815454108 -0.2325215409716085 0.8441077524679405 0.4831312815454108 0.1544919375863715 -0.9873231370638004 -0.03640417887145344 -0.1544919375863715 0.9873231370638004 0.03640417887145344 -0.1883848952572948 -0.4022478600787148 0.8959396130884005 0.1883848952572948 0.4022478600787148 -0.8959396130884005 0.3323032046149535 -0.8385594970703174 -0.4317320350354011 -0.3323032046149535 0.8385594970703174 0.4317320350354011 -0.2152599790098669 0.391667221357033 -0.8945724840118505 0.2152599790098669 -0.391667221357033 0.8945724840118505 -0.3868227017761055 0.9215332032618456 0.03383419389605583 0.3868227017761055 -0.9215332032618456 -0.03383419389605583 -0.1173923091996779 0.4027715861119354 0.907741204948659 0.1173923091996779 -0.4027715861119354 -0.907741204948659 -0.2489555830704448 0.8717567970615852 0.4219729901723344 0.2489555830704448 -0.8717567970615852 -0.4219729901723344 0.2718613803360442 -0.4882181075164831 -0.8292975758886579 -0.2718613803360442 0.4882181075164831 0.8292975758886579 -0.1836681448407901 -0.3924420882711748 0.9012520290818225 0.1836681448407901 0.3924420882711748 -0.9012520290818225 0.6033379414759521 -0.6384723124391702 0.4778456179815184 -0.6033379414759521 0.6384723124391702 -0.4778456179815184 0.613143127400927 -0.7899716064930814 0.0006051906731352142 -0.613143127400927 0.7899716064930814 -0.0006051906731352142 -0.2753486370013015 0.2694802403432065 -0.922801998353977 0.2753486370013015 -0.2694802403432065 0.922801998353977 -0.6186683494355953 0.7850893088761158 0.02973634972653872 0.6186683494355953 -0.7850893088761158 -0.02973634972653872 -0.2101333340222701 0.3486910560910353 0.9133775393202985 0.2101333340222701 -0.3486910560910353 -0.9133775393202985 0.06458828602664837 0.9973981295291592 0.03202068893503747 -0.06458828602664837 -0.9973981295291592 -0.03202068893503747 0.1834284435450448 0.9148861036748122 -0.3596351253720405 -0.1834284435450448 -0.9148861036748122 0.3596351253720405 0.04707106846818684 -0.8766538121109553 -0.478813542231831 -0.04707106846818684 0.8766538121109553 0.478813542231831 -0.05240544458981807 -0.9979363572904079 -0.03710385660945478 0.05240544458981807 0.9979363572904079 0.03710385660945478 -0.2558849461871275 -0.350471967254376 0.9009396730545607 0.2558849461871275 0.350471967254376 -0.9009396730545607 -0.200694747324343 0.3777292023536014 0.9039039042319322 0.200694747324343 -0.3777292023536014 -0.9039039042319322 0.5305321316869283 -0.7131920018537039 -0.4581406178670804 -0.5305321316869283 0.7131920018537039 0.4581406178670804 -0.2880983715263597 0.2233201421009748 -0.9311967796636004 0.2880983715263597 -0.2233201421009748 0.9311967796636004 -0.6320377423804821 0.7743842637606397 0.02927975830630272 0.6320377423804821 -0.7743842637606397 -0.02927975830630272 -0.05522536770654783 0.9079808958399157 0.4153562947054256 0.05522536770654783 -0.9079808958399157 -0.4153562947054256 0.1693197659775681 -0.5435044501609175 -0.8221518895584806 -0.1693197659775681 0.5435044501609175 0.8221518895584806 -0.2624276747014604 -0.3400571667813387 0.9030464212162258 0.2624276747014604 0.3400571667813387 -0.9030464212162258 -0.2784955639681501 0.2831199724302808 0.9177599370538786 0.2784955639681501 -0.2831199724302808 -0.9177599370538786 0.7799925510025074 -0.312763053598415 0.5420248081816884 -0.7799925510025074 0.312763053598415 -0.5420248081816884 0.861350202599474 -0.5077689173607858 0.01570207133153192 -0.861350202599474 0.5077689173607858 -0.01570207133153192 -0.3203962497789111 0.06509019373873208 -0.9450447131256086 0.3203962497789111 -0.06509019373873208 0.9450447131256086 -0.8570089126585533 0.5149465289946921 0.01912579149010435 0.8570089126585533 -0.5149465289946921 -0.01912579149010435 0.2668998251241754 0.9632065101179255 0.03158642453857888 -0.2668998251241754 -0.9632065101179255 -0.03158642453857888 0.3848457984574989 0.8411597227003285 -0.3799263511739041 -0.3848457984574989 -0.8411597227003285 0.3799263511739041 -0.1463418171331631 -0.8636911306943719 -0.4823087220007961 0.1463418171331631 0.8636911306943719 0.4823087220007961 -0.2614964724511442 -0.9645806651456631 -0.0346948890005161 0.2614964724511442 0.9645806651456631 0.0346948890005161 -0.3127971824230538 -0.2727002758388455 0.9098310185004777 0.3127971824230538 0.2727002758388455 -0.9098310185004777 -0.8772394837810913 0.479727285593503 0.01768105066375627 0.8772394837810913 -0.479727285593503 -0.01768105066375627 -0.2801769327316828 0.3069223400943102 0.9095600934056521 0.2801769327316828 -0.3069223400943102 -0.9095600934056521 0.7175260310791318 -0.4930813406195232 -0.4919625862366797 -0.7175260310791318 0.4930813406195232 0.4919625862366797 -0.3153777635399161 0.02588495228063627 -0.9486131116055638 0.3153777635399161 -0.02588495228063627 0.9486131116055638 0.1393203985443418 0.8940098255258359 0.4258359524660994 -0.1393203985443418 -0.8940098255258359 -0.4258359524660994 0.0613360785267453 -0.5592548813864927 -0.8267235711629013 -0.0613360785267453 0.5592548813864927 0.8267235711629013 -0.3279772485291286 -0.2497890304277758 0.9110633154315971 0.3279772485291286 0.2497890304277758 -0.9110633154315971 -0.9954162509199361 0.09554550661859637 0.004188504446045178 0.9954162509199361 -0.09554550661859637 -0.004188504446045178 -0.3316055780471462 0.1947610534499365 0.9230958090399333 0.3316055780471462 -0.1947610534499365 -0.9230958090399333 0.8175626758962213 0.09714834888191229 0.5675856492996704 -0.8175626758962213 -0.09714834888191229 -0.5675856492996704 0.8458917130539921 -0.1331934717853834 -0.5164559118263038 -0.8458917130539921 0.1331934717853834 0.5164559118263038 -0.3083647246734359 -0.1573739027797761 -0.9381602481990684 0.3083647246734359 0.1573739027797761 0.9381602481990684 0.499020226367712 0.8660112669631548 0.03167489808647932 -0.499020226367712 -0.8660112669631548 -0.03167489808647932 0.5956904132068955 0.6858714953802544 -0.4180110326752776 -0.5956904132068955 -0.6858714953802544 0.4180110326752776 -0.3620808541156949 -0.7880834786357531 -0.4978171208227165 0.3620808541156949 0.7880834786357531 0.4978171208227165 -0.4980593539555487 -0.8665836747455885 -0.03113863519510004 0.4980593539555487 0.8665836747455885 0.03113863519510004 -0.359961397037305 -0.1644696286552123 0.9183558862951599 0.359961397037305 0.1644696286552123 -0.9183558862951599 -0.2943109012349603 -0.1612855244810798 -0.9420021618908996 0.2943109012349603 0.1612855244810798 0.9420021618908996 -0.9995126198422273 0.03115932617757232 0.00190241117719404 0.9995126198422273 -0.03115932617757232 -0.00190241117719404 -0.3430702516935164 0.1961112469923958 0.9186093735674783 0.3430702516935164 -0.1961112469923958 -0.9186093735674783 0.8174448668148598 0.04635657624701822 0.5741384480738861 -0.8174448668148598 -0.04635657624701822 -0.5741384480738861 0.8407726363999902 -0.1769178412982841 -0.5116653704437744 -0.8407726363999902 0.1769178412982841 0.5116653704437744 0.3512955557181288 0.817032719621692 0.4572187305877491 -0.3512955557181288 -0.817032719621692 -0.4572187305877491 -0.05305143425118907 -0.5294281753016813 -0.8466943678332954 0.05305143425118907 0.5294281753016813 0.8466943678332954 -0.3719113724926969 -0.1265488578829416 0.9196017168204513 0.3719113724926969 0.1265488578829416 -0.9196017168204513 -0.2430270571949046 -0.340963009566561 -0.9081200777311875 0.2430270571949046 0.340963009566561 0.9081200777311875 -0.9393207539411168 -0.3428355318660301 -0.01184564500684825 0.9393207539411168 0.3428355318660301 0.01184564500684825 -0.3671383093963134 0.09388633053469656 0.925416024668012 0.3671383093963134 -0.09388633053469656 -0.925416024668012 0.7105979357165625 0.4478711802407899 0.5426435106633837 -0.7105979357165625 -0.4478711802407899 -0.5426435106633837 0.8322464311687771 0.2410873094306051 -0.4992422127969003 -0.8322464311687771 -0.2410873094306051 0.4992422127969003 0.7492443417965902 0.6617502514901101 0.02682388746193632 -0.7492443417965902 -0.6617502514901101 -0.02682388746193632 0.7718029793325206 0.4269070610378765 -0.4712435912874016 -0.7718029793325206 -0.4269070610378765 0.4712435912874016 -0.1704424063753528 -0.418799142778685 -0.8919398321169527 0.1704424063753528 0.418799142778685 0.8919398321169527 -0.7457711985039001 -0.6657934573101565 -0.02333220274738622 0.7457711985039001 0.6657934573101565 0.02333220274738622 -0.3832975258668947 -0.03328638985510561 0.9230249308197105 0.3832975258668947 0.03328638985510561 -0.9230249308197105 0.8487165835841974 0.1691112280510487 -0.5010803860621905 -0.8487165835841974 -0.1691112280510487 0.5010803860621905 -0.2375867641878089 -0.3172653688496944 -0.9180932497363402 0.2375867641878089 0.3172653688496944 0.9180932497363402 -0.9142914964868846 -0.4047864844800893 -0.01479734550599009 0.9142914964868846 0.4047864844800893 0.01479734550599009 -0.3773142060023418 0.07298275794710361 0.9232050189374281 0.3773142060023418 -0.07298275794710361 -0.9232050189374281 0.7162917454464216 0.4292023758780845 0.550192199095849 -0.7162917454464216 -0.4292023758780845 -0.550192199095849 0.5634644328169429 0.6543425034908874 0.5043250153180574 -0.5634644328169429 -0.6543425034908874 -0.5043250153180574 -0.1654534990126832 -0.4499796035445223 -0.8775781993978512 0.1654534990126832 0.4499796035445223 0.8775781993978512 -0.7849750302322432 -0.61914690019648 -0.02170985695435957 0.7849750302322432 0.61914690019648 0.02170985695435957 -0.3812176036166756 0.001932026157005854 0.9244833183825914 0.3812176036166756 -0.001932026157005854 -0.9244833183825914 0.7062555440699734 0.7074483609393937 0.02683138227134638 -0.7062555440699734 -0.7074483609393937 -0.02683138227134638 -0.1468876452683363 -0.4681639048480643 -0.8713475643306384 0.1468876452683363 0.4681639048480643 0.8713475643306384 -0.5453398563016959 -0.6597063117067336 -0.5170996262067338 0.5453398563016959 0.6597063117067336 0.5170996262067338 -0.3801222938534106 -0.01953408970055335 0.9247299395256933 0.3801222938534106 0.01953408970055335 -0.9247299395256933 0.5267605382682085 0.6908734985756165 0.495194047106056 -0.5267605382682085 -0.6908734985756165 -0.495194047106056 0.7478726818795818 0.3581138604152929 0.5589641443569507 -0.7478726818795818 -0.3581138604152929 -0.5589641443569507 0.8574547276395824 0.09217761627415656 -0.5062357920046189 -0.8574547276395824 -0.09217761627415656 0.5062357920046189 -0.2503400554594847 -0.2899497763892844 -0.9237201869637505 0.2503400554594847 0.2899497763892844 0.9237201869637505 -0.945860714581945 -0.3243755591802412 -0.01131393905933793 0.945860714581945 0.3243755591802412 0.01131393905933793 -0.3740548322485346 0.101284626066865 0.9218592121327508 0.3740548322485346 -0.101284626066865 -0.9218592121327508 0.7456205843010635 0.4793489914736001 -0.4628979246440657 -0.7456205843010635 -0.4793489914736001 0.4628979246440657 -0.7019827698805626 -0.7116138038748113 -0.0287399534730753 0.7019827698805626 0.7116138038748113 0.0287399534730753 -0.3797743653667189 -0.05577346448259948 0.9233963136540638 0.3797743653667189 0.05577346448259948 -0.9233963136540638 0.7413117673025702 0.3838791288921039 0.550539442782967 -0.7413117673025702 -0.3838791288921039 -0.550539442782967 0.8464391172416744 0.1647749001367979 -0.5063497339665967 -0.8464391172416744 -0.1647749001367979 0.5063497339665967 -0.2583659647566177 -0.3088681222610339 -0.9153401069036172 0.2583659647566177 0.3088681222610339 0.9153401069036172 -0.9667076871678222 -0.2557261364940597 -0.008966085236136824 0.9667076871678222 0.2557261364940597 0.008966085236136824 -0.3621152032149901 0.1188767380450872 0.9245219850021557 0.3621152032149901 -0.1188767380450872 -0.9245219850021557 0.3198230567882171 0.8329970911554596 0.4514743165155507 -0.3198230567882171 -0.8329970911554596 -0.4514743165155507 0.4674475931014964 0.8835527886872145 0.02876138568748932 -0.4674475931014964 -0.8835527886872145 -0.02876138568748932 -0.03702795736669842 -0.5387038537364716 -0.8416811084625366 0.03702795736669842 0.5387038537364716 0.8416811084625366 -0.3259099937071137 -0.8059159978137687 -0.4942490065439353 0.3259099937071137 0.8059159978137687 0.4942490065439353 -0.3683565981934949 -0.1472084240102136 0.9179559338376464 0.3683565981934949 0.1472084240102136 -0.9179559338376464 0.8188476326458342 -0.04539294783510035 0.5722132773688083 -0.8188476326458342 0.04539294783510035 -0.5722132773688083 0.8222586412210436 -0.2531169247564348 -0.5097279169705816 -0.8222586412210436 0.2531169247564348 0.5097279169705816 -0.300720892527676 -0.1278968835880935 -0.9450975251082884 0.300720892527676 0.1278968835880935 0.9450975251082884 -0.9912217850814648 0.1320979721046645 0.005431256369362665 0.9912217850814648 -0.1320979721046645 -0.005431256369362665 -0.3334782498602851 0.2262070152921916 0.9152172655182589 0.3334782498602851 -0.2262070152921916 -0.9152172655182589 -0.3572490711108234 -0.1813357523302581 0.9162371123880944 0.3572490711108234 0.1813357523302581 -0.9162371123880944 0.5653065393782845 0.7136392668265392 -0.4136997865353904 -0.5653065393782845 -0.7136392668265392 0.4136997865353904 -0.4589846257788459 -0.8877888882835777 -0.0341174902192718 0.4589846257788459 0.8877888882835777 0.0341174902192718 0.8236653039657989 0.01006987565173836 0.5669868293419932 -0.8236653039657989 -0.01006987565173836 -0.5669868293419932 0.8284558720579608 -0.2197536701379031 -0.5151399737096757 -0.8284558720579608 0.2197536701379031 0.5151399737096757 -0.3142935649961468 -0.1151516845652284 -0.942316106486461 0.3142935649961468 0.1151516845652284 0.942316106486461 -0.9814065262557707 0.1917854364560292 0.007718587043729437 0.9814065262557707 -0.1917854364560292 -0.007718587043729437 -0.3228914834170022 0.217939675583032 0.9210012962767916 0.3228914834170022 -0.217939675583032 -0.9210012962767916 -0.3242624972403607 -0.2627833088868958 0.9087347057606524 0.3242624972403607 0.2627833088868958 -0.9087347057606524 0.117420388131938 0.8977396860229416 0.4245891055954867 -0.117420388131938 -0.8977396860229416 -0.4245891055954867 0.2469964941695569 0.9685320094499706 0.03063459708809317 -0.2469964941695569 -0.9685320094499706 -0.03063459708809317 0.07435299732554916 -0.5619690584054785 -0.823809692334077 -0.07435299732554916 0.5619690584054785 0.823809692334077 -0.1220295760348229 -0.8647589480038433 -0.4871352424327843 0.1220295760348229 0.8647589480038433 0.4871352424327843 0.8216169141959743 -0.5698787308324951 0.0135601789010826 -0.8216169141959743 0.5698787308324951 -0.0135601789010826 0.6877979909346258 -0.5387765752819367 -0.4864706831801484 -0.6877979909346258 0.5387765752819367 0.4864706831801484 -0.3136937401979045 0.0587051288605675 -0.9477077319543795 0.3136937401979045 -0.0587051288605675 0.9477077319543795 -0.839258447178844 0.5433306725550696 0.02090548013826136 0.839258447178844 -0.5433306725550696 -0.02090548013826136 -0.2680750835053133 0.3235315035335521 0.9074486849541071 0.2680750835053133 -0.3235315035335521 -0.9074486849541071 -0.2377611366143024 -0.9701765968443886 -0.04719123701827994 0.2377611366143024 0.9701765968443886 0.04719123701827994 -0.3107228677212897 -0.2832733326377546 0.9073078410833657 0.3107228677212897 0.2832733326377546 -0.9073078410833657 0.363472855355222 0.8517560208747094 -0.3773581380116289 -0.363472855355222 -0.8517560208747094 0.3773581380116289 0.7564578035040248 -0.3790964679218641 0.5329704114930146 -0.7564578035040248 0.3790964679218641 -0.5329704114930146 -0.3158059170904769 0.1009810182456142 -0.9434349244567545 0.3158059170904769 -0.1009810182456142 0.9434349244567545 -0.8201689820705466 0.5717011765880734 0.02192271737663839 0.8201689820705466 -0.5717011765880734 -0.02192271737663839 -0.2680299321929722 0.2977177666476841 0.9162554703088794 0.2680299321929722 -0.2977177666476841 -0.9162554703088794 0.06944199672095203 -0.8752639419260931 -0.4786343500579582 -0.06944199672095203 0.8752639419260931 0.4786343500579582 -0.2548536545231394 -0.3498003694604286 0.901492826539151 0.2548536545231394 0.3498003694604286 -0.901492826539151 -0.07991809526843903 0.9055282625218871 0.4166913291907535 0.07991809526843903 -0.9055282625218871 -0.4166913291907535 0.04083183429295593 0.9986126150533274 0.03325065961191508 -0.04083183429295593 -0.9986126150533274 -0.03325065961191508 0.182552286803898 -0.537492532334813 -0.8232717900347233 -0.182552286803898 0.537492532334813 0.8232717900347233 0.577815962223738 -0.8161640474517996 -0.002227430482101782 -0.577815962223738 0.8161640474517996 0.002227430482101782 0.5021654317474508 -0.7356097276283488 -0.4546517433997619 -0.5021654317474508 0.7356097276283488 0.4546517433997619 -0.2804889621707544 0.2496657596863755 -0.9268187258253892 0.2804889621707544 -0.2496657596863755 0.9268187258253892 -0.5958886369564139 0.8025154849665568 0.02975951503501457 0.5958886369564139 -0.8025154849665568 -0.02975951503501457 -0.1886596466353326 0.3826616885909969 0.9044211241540736 0.1886596466353326 -0.3826616885909969 -0.9044211241540736 -0.02642589192626583 -0.9989899562612886 -0.03634198020155225 0.02642589192626583 0.9989899562612886 0.03634198020155225 -0.2495513640690779 -0.3597033579949276 0.8990759761768944 0.2495513640690779 0.3597033579949276 -0.8990759761768944 0.1610749021599849 0.919514136162441 -0.3585367893139996 -0.1610749021599849 -0.919514136162441 0.3585367893139996 0.5735102016805903 -0.6720388064869559 0.4684547909285128 -0.5735102016805903 0.6720388064869559 -0.4684547909285128 -0.2657943292264164 0.2945407621324637 -0.9179319767790568 0.2657943292264164 -0.2945407621324637 0.9179319767790568 -0.5837327705497279 0.8113865891313407 0.03013064161526602 0.5837327705497279 -0.8113865891313407 -0.03013064161526602 -0.1991820465143772 0.3544893614773262 0.9135993678553758 0.1991820465143772 -0.3544893614773262 -0.9135993678553758 0.2861780936521547 -0.4775920835169998 -0.8306671418056151 -0.2861780936521547 0.4775920835169998 0.8306671418056151 0.2596158391162486 -0.8356664422017331 -0.4840053857736125 -0.2596158391162486 0.8356664422017331 0.4840053857736125 -0.1711728639867653 -0.3974243520842621 0.9015285547363282 0.1711728639867653 0.3974243520842621 -0.9015285547363282 -0.2759630649446006 0.862122778991588 0.424957292830943 0.2759630649446006 -0.862122778991588 -0.424957292830943 -0.1627713730068983 0.9861055452496621 0.03318634896031334 0.1627713730068983 -0.9861055452496621 -0.03318634896031334 0.3416996505827609 -0.9396661338264465 -0.01639834538231022 -0.3416996505827609 0.9396661338264465 0.01639834538231022 0.30376142805433 -0.8502671592682022 -0.4298543389293356 -0.30376142805433 0.8502671592682022 0.4298543389293356 -0.201791230256234 0.4122164491855501 -0.8884581579413475 0.201791230256234 -0.4122164491855501 0.8884581579413475 -0.353387402572387 0.9348176637184597 0.03511807658603557 0.353387402572387 -0.9348176637184597 -0.03511807658603557 -0.1058721135997328 0.4040115403614299 0.9086064994356522 0.1058721135997328 -0.4040115403614299 -0.9086064994356522 -0.03914787380005075 0.9310752900203363 -0.3627206201616916 0.03914787380005075 -0.9310752900203363 0.3627206201616916 0.1852695253025228 -0.9820292032140997 -0.0359700851939271 -0.1852695253025228 0.9820292032140997 0.0359700851939271 -0.1773549694629225 -0.4078269871403468 0.8956686682958341 0.1773549694629225 0.4078269871403468 -0.8956686682958341 0.3549316148623257 -0.8408242567767633 0.4087029703672644 -0.3549316148623257 0.8408242567767633 -0.4087029703672644 -0.1822031762745549 0.4397897912365972 -0.8794242105375164 0.1822031762745549 -0.4397897912365972 0.8794242105375164 -0.3477859038141603 0.9369150364712027 0.03514512117396353 0.3477859038141603 -0.9369150364712027 -0.03514512117396353 -0.1202995705451427 0.3836022387659995 0.9156294751373872 0.1202995705451427 -0.3836022387659995 -0.9156294751373872 -0.3816999914060151 0.9236542054752703 0.03417638466097767 0.3816999914060151 -0.9236542054752703 -0.03417638466097767 0.3808467242539962 -0.3762287084416336 -0.8446346734354094 -0.3808467242539962 0.3762287084416336 0.8446346734354094 0.4502607467623525 -0.7431657997486632 -0.4949442938442048 -0.4502607467623525 0.7431657997486632 0.4949442938442048 -0.08541398328283506 -0.4049315133355671 0.9103487908310348 0.08541398328283506 0.4049315133355671 -0.9103487908310348 -0.4839714770711831 0.7462278087800175 0.4570729337697769 0.4839714770711831 -0.7462278087800175 -0.4570729337697769 0.1272741652955169 -0.9915092578234279 -0.02665855395111868 -0.1272741652955169 0.9915092578234279 0.02665855395111868 0.1075205216591178 -0.9023415162816886 -0.4173956461399833 -0.1075205216591178 0.9023415162816886 0.4173956461399833 -0.1273013822530978 0.880511134770289 -0.4566119792799885 0.1273013822530978 -0.880511134770289 0.4566119792799885 -0.1306645420507385 0.9907766458956298 0.03589450373632322 0.1306645420507385 -0.9907766458956298 -0.03589450373632322 -0.02654652668006343 0.3881393566191548 0.9212182812800087 0.02654652668006343 -0.3881393566191548 -0.9212182812800087 -0.2460646216208448 0.8881171003616863 -0.3882012596988072 0.2460646216208448 -0.8881171003616863 0.3882012596988072 0.4101023204955814 -0.9113972187520644 -0.03422274645818363 -0.4101023204955814 0.9113972187520644 0.03422274645818363 -0.09588818099303931 -0.4238328194187011 0.9006504304831264 0.09588818099303931 0.4238328194187011 -0.9006504304831264 0.1414093547059274 -0.9178126143131481 0.3709762787690308 -0.1414093547059274 0.9178126143131481 -0.3709762787690308 -0.08229816627144125 0.5326161550261377 -0.8423461540444828 0.08229816627144125 -0.5326161550261377 0.8423461540444828 -0.03578031954480483 0.3768652501914808 0.9255767671735197 0.03578031954480483 -0.3768652501914808 -0.9255767671735197 -0.674709725386167 0.5584923471442861 0.4825485308760034 0.674709725386167 -0.5584923471442861 -0.4825485308760034 -0.6195040484889329 0.7846770842946554 0.02228468731349538 0.6195040484889329 -0.7846770842946554 -0.02228468731349538 0.4570166420245257 -0.2308322798019402 -0.858983263814881 -0.4570166420245257 0.2308322798019402 0.858983263814881 0.640215112457863 -0.5821380191740587 -0.5012384027712449 -0.640215112457863 0.5821380191740587 0.5012384027712449 -0.00412076982569427 -0.3751321319259711 0.9269621906273845 0.00412076982569427 0.3751321319259711 -0.9269621906273845 -0.0771032196051772 -0.9963834114229999 -0.03570981612359299 0.0771032196051772 0.9963834114229999 0.03570981612359299 -0.08906842643591111 -0.9018910816672023 -0.4226810762518171 0.08906842643591111 0.9018910816672023 0.4226810762518171 0.06620767914974504 0.8988097898575195 -0.4333099408943743 -0.06620767914974504 -0.8988097898575195 0.4333099408943743 0.08025119404980048 0.9960917061574914 0.03689253010893739 -0.08025119404980048 -0.9960917061574914 -0.03689253010893739 0.04437713259752743 0.3394687609676098 0.9395699177972532 -0.04437713259752743 -0.3394687609676098 -0.9395699177972532 -0.01161620341918367 -0.4044218247092673 0.9144987979855144 0.01161620341918367 0.4044218247092673 -0.9144987979855144 -0.4607959922654775 0.7725797385012819 -0.43679240053985 0.4607959922654775 -0.7725797385012819 0.43679240053985 0.6528638896857033 -0.7569444426881054 -0.02835228788029745 -0.6528638896857033 0.7569444426881054 0.02835228788029745 -0.06270523447042294 -0.9322290879753824 0.3563944178892201 0.06270523447042294 0.9322290879753824 -0.3563944178892201 0.02539719024706923 0.5792730047807407 -0.814737852723099 -0.02539719024706923 -0.5792730047807407 0.814737852723099 0.0464879261504257 0.3294715832049027 0.9430203330695938 -0.0464879261504257 -0.3294715832049027 -0.9430203330695938 0.0646969505680893 -0.3132092574365765 0.9474778444075717 -0.0646969505680893 0.3132092574365765 -0.9474778444075717 -0.8190055710734459 0.2677980214914298 0.5074584655279038 0.8190055710734459 -0.2677980214914298 -0.5074584655279038 -0.8580883842627182 0.5134892842226402 0.0036165981140491 0.8580883842627182 -0.5134892842226402 -0.0036165981140491 0.4994180366316639 -0.04699295619315566 -0.8650857106409757 -0.4994180366316639 0.04699295619315566 0.8650857106409757 0.8539293952023838 -0.5200193019209856 -0.01960901932534571 -0.8539293952023838 0.5200193019209856 0.01960901932534571 -0.2852447237175135 -0.9574708992473967 -0.04341571933874513 0.2852447237175135 0.9574708992473967 0.04341571933874513 -0.2924341135507829 -0.8449230634038953 -0.4478697424027935 0.2924341135507829 0.8449230634038953 0.4478697424027935 0.2600125274543552 0.8674470282758773 -0.4241805496509092 -0.2600125274543552 -0.8674470282758773 0.4241805496509092 0.2946201925173138 0.9549773324281696 0.03488891957969222 -0.2946201925173138 -0.9549773324281696 -0.03488891957969222 0.1034170581106673 0.2608524472427958 0.9598233758661949 -0.1034170581106673 -0.2608524472427958 -0.9598233758661949 0.8820135529355918 -0.4708935410121302 -0.01764555102543141 -0.8820135529355918 0.4708935410121302 0.01764555102543141 0.06790459995166641 -0.3406811915226268 0.9377234619268771 -0.06790459995166641 0.3406811915226268 -0.9377234619268771 -0.6641144318958315 0.5539254413356686 -0.5021141571283985 0.6641144318958315 -0.5539254413356686 0.5021141571283985 0.4964651605977263 -0.007173700614587332 -0.8680270055316057 -0.4964651605977263 0.007173700614587332 0.8680270055316057 -0.2614397072830781 -0.8933246091077352 0.3655412729340564 0.2614397072830781 0.8933246091077352 -0.3655412729340564 0.1382379130492395 0.5831724777007232 -0.800499931697805 -0.1382379130492395 -0.5831724777007232 0.800499931697805 0.1141379742883999 0.2414973802642208 0.9636656775826661 -0.1141379742883999 -0.2414973802642208 -0.9636656775826661 0.8822912321948564 0.02220810173169826 -0.4701797335164039 -0.8822912321948564 -0.02220810173169826 0.4701797335164039 0.1188138028336179 -0.2260274947932563 0.9668478948902453 -0.1188138028336179 0.2260274947932563 -0.9668478948902453 -0.8587397158175739 -0.08018506560671994 0.5060992548218168 0.8587397158175739 0.08018506560671994 -0.5060992548218168 -0.8050928716867741 0.1826331764184201 -0.5643319863612742 0.8050928716867741 -0.1826331764184201 0.5643319863612742 0.4925879284688318 0.1528216387529459 -0.8567395633771382 -0.4925879284688318 -0.1528216387529459 0.8567395633771382 -0.5097456504244465 -0.8591344984638351 -0.04524693826826742 0.5097456504244465 0.8591344984638351 0.04524693826826742 -0.503222982218811 -0.7120634997618107 -0.4896245525642766 0.503222982218811 0.7120634997618107 0.4896245525642766 0.4603466958027616 0.7788779087251324 -0.4259461503094539 -0.4603466958027616 -0.7788779087251324 0.4259461503094539 0.523479007550921 0.8515040131017884 0.03017688395200142 -0.523479007550921 -0.8515040131017884 -0.03017688395200142 0.1518593399203167 0.1545205082045166 0.9762490222392971 -0.1518593399203167 -0.1545205082045166 -0.9762490222392971 0.9986610433822905 -0.05168256758209613 -0.002243354344905463 -0.9986610433822905 0.05168256758209613 0.002243354344905463 0.1318246859017485 -0.2349796978402745 0.9630196227438976 -0.1318246859017485 0.2349796978402745 -0.9630196227438976 -0.8570320744351881 -0.04027811833018728 0.5136863795869009 0.8570320744351881 0.04027811833018728 -0.5136863795869009 -0.8020473590133231 0.2179865516430817 -0.5560592569164835 0.8020473590133231 -0.2179865516430817 0.5560592569164835 -0.4615904843755709 -0.7909897607564924 0.4015836439800712 0.4615904843755709 0.7909897607564924 -0.4015836439800712 0.252540347057417 0.5414245503907144 -0.8019244536378299 -0.252540347057417 -0.5414245503907144 0.8019244536378299 0.159799408619329 0.1228134197518831 0.979479970664924 -0.159799408619329 -0.1228134197518831 -0.979479970664924 0.4353324721431299 0.3341380181837748 -0.8359649654752106 -0.4353324721431299 -0.3341380181837748 0.8359649654752106 0.8085299571629004 0.3823119055224868 -0.4473442916433872 -0.8085299571629004 -0.3823119055224868 0.4473442916433872 0.1551669196552751 -0.1168490823491705 0.9809533724896663 -0.1551669196552751 0.1168490823491705 -0.9809533724896663 -0.7805585710254122 -0.4068311902331807 0.4745700157534397 0.7805585710254122 0.4068311902331807 -0.4745700157534397 -0.9244908752825142 -0.378565349547113 -0.04477608336649194 0.9244908752825142 0.378565349547113 0.04477608336649194 -0.7502012696929717 -0.6593563627663559 -0.04946960511844244 0.7502012696929717 0.6593563627663559 0.04946960511844244 -0.6978467183232735 -0.4623279303828837 -0.5470492139774237 0.6978467183232735 0.4623279303828837 0.5470492139774237 0.6649029264142448 0.6072315801009957 -0.4349412679590449 -0.6649029264142448 -0.6072315801009957 0.4349412679590449 0.7604816846369817 0.6489597204662113 0.02277912518327709 -0.7604816846369817 -0.6489597204662113 -0.02277912518327709 0.1719340237016065 0.01941018364806291 0.9849172230520308 -0.1719340237016065 -0.01941018364806291 -0.9849172230520308 -0.8040886315762558 -0.1784821301950049 -0.5670851803484884 0.8040886315762558 0.1784821301950049 0.5670851803484884 0.924659177562477 0.3805625196872114 0.0133256879298732 -0.924659177562477 -0.3805625196872114 -0.0133256879298732 0.1673583694593457 -0.0987386897261418 0.9809392679075876 -0.1673583694593457 0.0987386897261418 -0.9809392679075876 -0.6515862186990911 -0.6172149427356434 0.4410001293256686 0.6515862186990911 0.6172149427356434 -0.4410001293256686 0.3609413422632294 0.4492442334622321 -0.8172520823749242 -0.3609413422632294 -0.4492442334622321 0.8172520823749242 0.1680743216177683 -0.01327794334903362 0.985684898247481 -0.1680743216177683 0.01327794334903362 -0.985684898247481 -0.7077286307855312 -0.7046579404075305 -0.05076782629829895 0.7077286307855312 0.7046579404075305 0.05076782629829895 0.3422907321088052 0.470188875101221 -0.8134860026106574 -0.3422907321088052 -0.470188875101221 0.8134860026106574 0.6285452392550731 0.6463254866285363 -0.4326595053204869 -0.6285452392550731 -0.6463254866285363 0.4326595053204869 0.1684837607857226 0.01078912850309114 0.9856453809852929 -0.1684837607857226 -0.01078912850309114 -0.9856453809852929 -0.6208951602753291 -0.6569286372870615 0.4277078038320531 0.6208951602753291 0.6569286372870615 -0.4277078038320531 -0.8016874851195304 -0.3476970057459101 0.4862139121806895 0.8016874851195304 0.3476970057459101 -0.4862139121806895 -0.8149220097351028 -0.1080548625133485 -0.5694086974542294 0.8149220097351028 0.1080548625133485 0.5694086974542294 0.8324394161889932 0.3218611754601607 -0.4510543227886545 -0.8324394161889932 -0.3218611754601607 0.4510543227886545 0.9513198774933672 0.3080369782319619 0.01018384641117496 -0.9513198774933672 -0.3080369782319619 -0.01018384641117496 0.1634203117995998 -0.1247450298277524 0.978638073663903 -0.1634203117995998 0.1247450298277524 -0.978638073663903 -0.6678589248046758 -0.5214726726196702 -0.5310656346155726 0.6678589248046758 0.5214726726196702 0.5310656346155726 0.7182567574893013 0.6953383336702373 0.02473523902558684 -0.7182567574893013 -0.6953383336702373 -0.02473523902558684 0.1693848817853877 0.04483553595062854 0.9845296016568371 -0.1693848817853877 -0.04483553595062854 -0.9845296016568371 -0.8048692487349177 -0.3506423330122185 0.4787853869330574 0.8048692487349177 0.3506423330122185 -0.4787853869330574 -0.8033529047000452 -0.1701599897853734 -0.570674765857263 0.8033529047000452 0.1701599897853734 0.570674765857263 0.449268697821028 0.3040839242511426 -0.8400539293225307 -0.449268697821028 -0.3040839242511426 0.8400539293225307 0.1500216654325103 -0.1381913113327511 0.9789773548826299 -0.1500216654325103 0.1381913113327511 -0.9789773548826299 -0.4259537348114598 -0.8178821815051697 0.3868231546540531 0.4259537348114598 0.8178821815051697 -0.3868231546540531 -0.4675392286166295 -0.8827060022405983 -0.04729887221687068 0.4675392286166295 0.8827060022405983 0.04729887221687068 0.2320365704896954 0.552483805839267 -0.8005752146055608 -0.2320365704896954 -0.552483805839267 0.8005752146055608 0.4235426764458111 0.8000651237203419 -0.4248616233969279 -0.4235426764458111 -0.8000651237203419 0.4248616233969279 0.1520251206832657 0.143591229580553 0.9778905467734022 -0.1520251206832657 -0.143591229580553 -0.9778905467734022 -0.8563034731243645 0.03075851077944254 0.5155562781402063 0.8563034731243645 -0.03075851077944254 -0.5155562781402063 -0.7854559790425402 0.2863556715033529 -0.5486887408943149 0.7854559790425402 -0.2863556715033529 0.5486887408943149 0.8789201616178662 -0.04563262027587983 -0.4747810163310886 -0.8789201616178662 0.04563262027587983 0.4747810163310886 0.9909649981647042 -0.1339921094394375 -0.005872565061178528 -0.9909649981647042 0.1339921094394375 0.005872565061178528 0.1214868915248658 -0.2566112218047661 0.9588491101479369 -0.1214868915248658 0.2566112218047661 -0.9588491101479369 0.1424597144731626 0.1742609283264101 0.9743399604917387 -0.1424597144731626 -0.1742609283264101 -0.9743399604917387 -0.4649654691684617 -0.7434500776185029 -0.4807172709295918 0.4649654691684617 0.7434500776185029 0.4807172709295918 0.4806825705190683 0.8763220630772676 0.0316845098302365 -0.4806825705190683 -0.8763220630772676 -0.0316845098302365 -0.860794945204459 -0.01643115646217469 0.5086866220058945 0.860794945204459 0.01643115646217469 -0.5086866220058945 -0.7900784413486761 0.2562479078863671 -0.5568779634892249 0.7900784413486761 -0.2562479078863671 0.5568779634892249 0.4980078568234466 0.1169113175851559 -0.859255444185616 -0.4980078568234466 -0.1169113175851559 0.859255444185616 0.1096901023717531 -0.2434510788927682 0.9636906420774363 -0.1096901023717531 0.2434510788927682 -0.9636906420774363 0.1039596989266152 0.2597350418756318 0.9600677523075918 -0.1039596989266152 -0.2597350418756318 -0.9600677523075918 -0.2255086311498324 -0.9042076887875177 0.3627041670762336 0.2255086311498324 0.9042076887875177 -0.3627041670762336 -0.246296801946135 -0.9683103284272793 -0.04138832217136909 0.246296801946135 0.9683103284272793 0.04138832217136909 0.1177179104608849 0.5854651574134203 -0.8021053814877456 -0.1177179104608849 -0.5854651574134203 0.8021053814877456 0.224575277624369 0.8769413923042921 -0.4248996812699999 -0.224575277624369 -0.8769413923042921 0.4248996812699999 -0.818183918190957 0.5749003086151485 0.00804432519857671 0.818183918190957 -0.5749003086151485 -0.00804432519857671 -0.6305737591105755 0.6022648379504871 -0.4895444814208733 0.6305737591105755 -0.6022648379504871 0.4895444814208733 0.4949605839858888 -0.03892198721152086 -0.8680432588367092 -0.4949605839858888 0.03892198721152086 0.8680432588367092 0.8451270122946203 -0.5341853035835791 -0.02015922928309364 -0.8451270122946203 0.5341853035835791 0.02015922928309364 0.05385948697774293 -0.3554499664399606 0.9331422597976823 -0.05385948697774293 0.3554499664399606 -0.9331422597976823 0.2549244586738081 0.9663161203320346 0.03530829868898371 -0.2549244586738081 -0.9663161203320346 -0.03530829868898371 0.09423102464293508 0.2772583329710544 0.9561633389713573 -0.09423102464293508 -0.2772583329710544 -0.9561633389713573 -0.2549214545164238 -0.8600324943657328 -0.4419945256021691 0.2549214545164238 0.8600324943657328 0.4419945256021691 -0.79929641435108 0.3271493463141986 0.5040818854230917 0.79929641435108 -0.3271493463141986 -0.5040818854230917 0.4948857423588071 -0.08216582485000451 -0.865064667661725 -0.4948857423588071 0.08216582485000451 0.865064667661725 0.8144148990748201 -0.5798756477366595 -0.02173948773407881 -0.8144148990748201 0.5798756477366595 0.02173948773407881 0.0528667042807186 -0.3265261401177359 0.9437085309555636 -0.0528667042807186 0.3265261401177359 -0.9437085309555636 0.03142215486202268 0.8992909717703551 -0.4362205821326607 -0.03142215486202268 -0.8992909717703551 0.4362205821326607 0.03222413175603969 0.3414413676946292 0.9393505191138132 -0.03222413175603969 -0.3414413676946292 -0.9393505191138132 -0.0259253419318946 -0.9334636059792216 0.3577339415794692 0.0259253419318946 0.9334636059792216 -0.3577339415794692 -0.04049074313123702 -0.9985674125448957 -0.03498031337870574 0.04049074313123702 0.9985674125448957 0.03498031337870574 0.005328438180618537 0.5750615350973014 -0.8180928056144308 -0.005328438180618537 -0.5750615350973014 0.8180928056144308 -0.5748760152395741 0.8178890218602926 0.02398155588536437 0.5748760152395741 -0.8178890218602926 -0.02398155588536437 -0.4214825828834756 0.8001683134769219 -0.4267119665926568 0.4214825828834756 -0.8001683134769219 0.4267119665926568 0.6074881385080706 -0.6169848063479048 -0.5002878274631893 -0.6074881385080706 0.6169848063479048 0.5002878274631893 0.6082732213363905 -0.7931810654764039 -0.02945310806633874 -0.6082732213363905 0.7931810654764039 0.02945310806633874 -0.02736669832298045 -0.4111055921847794 0.9111768521518208 0.02736669832298045 0.4111055921847794 -0.9111768521518208 0.04235616326970938 0.9984366610053214 0.03647176159187728 -0.04235616326970938 -0.9984366610053214 -0.03647176159187728 0.03221986909040234 0.3506818629235959 0.9359402283544785 -0.03221986909040234 -0.3506818629235959 -0.9359402283544785 -0.05361409784407056 -0.9050905554847667 -0.4218253369401169 0.05361409784407056 0.9050905554847667 0.4218253369401169 -0.6412286961935133 0.6027935398456574 0.4748322940768762 0.6412286961935133 -0.6027935398456574 -0.4748322940768762 0.4462050229884594 -0.2575089267645674 -0.8570823939951334 -0.4462050229884594 0.2575089267645674 0.8570823939951334 -0.01851769985004047 -0.3828132866255579 0.9236401260096934 0.01851769985004047 0.3828132866255579 -0.9236401260096934 -0.1011209062275383 0.5194295024157583 -0.8485090184222199 0.1011209062275383 -0.5194295024157583 0.8485090184222199 -0.1630204955034008 0.8718140737365698 -0.4619139951123722 0.1630204955034008 -0.8718140737365698 0.4619139951123722 -0.05106644626099506 0.3803957682493656 0.9234128424297812 0.05106644626099506 -0.3803957682493656 -0.9234128424297812 0.1789455253017296 -0.9095149566493147 0.3751813462922742 -0.1789455253017296 0.9095149566493147 -0.3751813462922742 0.1644492067246966 -0.9860474719446343 -0.0258232739832422 -0.1644492067246966 0.9860474719446343 0.0258232739832422 -0.3394842626918352 0.9401205712295527 0.03039320541832133 0.3394842626918352 -0.9401205712295527 -0.03039320541832133 -0.2080610788881689 0.9007191526710595 -0.3813339684101321 0.2080610788881689 -0.9007191526710595 0.3813339684101321 0.4170581372161195 -0.7630871662746496 -0.4937210617836206 -0.4170581372161195 0.7630871662746496 0.4937210617836206 0.3671848022390897 -0.9296812715626696 -0.02946276141604014 -0.3671848022390897 0.9296812715626696 0.02946276141604014 -0.1118508727425593 -0.4246135752306774 0.8984390318750346 0.1118508727425593 0.4246135752306774 -0.8984390318750346 0.1429673890552561 -0.8969759915124038 -0.4183233155312562 -0.1429673890552561 0.8969759915124038 0.4183233155312562 -0.1697402903512333 0.9848294799586392 0.03604343540612129 0.1697402903512333 -0.9848294799586392 -0.03604343540612129 -0.04029823831595079 0.3929010957394276 0.9186973282618099 0.04029823831595079 -0.3929010957394276 -0.9186973282618099 -0.4425321364225157 0.7807076339415388 0.4412039194507776 0.4425321364225157 -0.7807076339415388 -0.4412039194507776 0.3615564551111211 -0.3924871464468883 -0.8457131722052452 -0.3615564551111211 0.3924871464468883 0.8457131722052452 -0.1004051002551915 -0.4059873809262091 0.9083463339340465 0.1004051002551915 0.4059873809262091 -0.9083463339340465 0.3904353888787023 -0.9205132079270056 -0.01468472482104409 -0.3904353888787023 0.9205132079270056 0.01468472482104409 -0.2028401600381923 0.4137734346108561 -0.8874950221190066 0.2028401600381923 -0.4137734346108561 0.8874950221190066 -0.3965987545441102 0.9173867728006537 0.03333072133126812 0.3965987545441102 -0.9173867728006537 -0.03333072133126812 -0.1368126594116787 0.3783825735749009 0.9154828912871822 0.1368126594116787 -0.3783825735749009 -0.9154828912871822 0.4037445049495944 -0.8137278701143873 0.4181355379803415 -0.4037445049495944 0.8137278701143873 -0.4181355379803415 -0.2130405425149827 0.9762377946652087 -0.03966731037178552 0.2130405425149827 -0.9762377946652087 0.03966731037178552 -0.1081798850903938 0.9240271948778918 -0.3667026800937292 0.1081798850903938 -0.9240271948778918 0.3667026800937292 0.3281513256345706 -0.7677627424058544 -0.5503245214032494 -0.3281513256345706 0.7677627424058544 0.5503245214032494 0.2328257703503543 -0.9718983197261724 -0.03472487255854357 -0.2328257703503543 0.9718983197261724 0.03472487255854357 -0.1473936565412861 -0.3971635326227748 0.9058345535283955 0.1473936565412861 0.3971635326227748 -0.9058345535283955 0.3468945964669057 -0.8319723515337044 -0.4329967034811476 -0.3468945964669057 0.8319723515337044 0.4329967034811476 -0.2234283793547914 0.3810349301579313 -0.8971578129283787 0.2234283793547914 -0.3810349301579313 0.8971578129283787 -0.4038454249517289 0.9142215620686088 0.03328375270894747 0.4038454249517289 -0.9142215620686088 -0.03328375270894747 -0.122338880712954 0.4011767131602135 0.9077942735465285 0.122338880712954 -0.4011767131602135 -0.9077942735465285 -0.3151385434377004 0.8509345145216276 0.4202358271682778 0.3151385434377004 -0.8509345145216276 -0.4202358271682778 0.3362915756879585 -0.4605074486483383 -0.8214869845960483 -0.3362915756879585 0.4605074486483383 0.8214869845960483 -0.1477861161468464 -0.3879190814924926 0.9097681298486179 0.1477861161468464 0.3879190814924926 -0.9097681298486179 0.642036301964842 -0.5915223220510135 0.4877404324788823 -0.642036301964842 0.5915223220510135 -0.4877404324788823 0.6565729720855437 -0.7542611534141503 0.001429957031396675 -0.6565729720855437 0.7542611534141503 -0.001429957031396675 -0.2873913339372501 0.2414284916307782 -0.9268864572355426 0.2873913339372501 -0.2414284916307782 0.9268864572355426 -0.6582465513805748 0.7522761974698212 0.02814250017192915 0.6582465513805748 -0.7522761974698212 -0.02814250017192915 -0.2200850377465403 0.3382910481576543 0.9149435736134222 0.2200850377465403 -0.3382910481576543 -0.9149435736134222 -0.2116315698671361 0.368248547592389 0.9053204326820795 0.2116315698671361 -0.368248547592389 -0.9053204326820795 0.5633653855986063 -0.6828540426268416 -0.4651126732067326 -0.5633653855986063 0.6828540426268416 0.4651126732067326 -0.2983463149186184 0.191197653796943 -0.935111187804437 0.2983463149186184 -0.191197653796943 0.935111187804437 -0.6749209437416259 0.737369483269181 0.02771217859090166 0.6749209437416259 -0.737369483269181 -0.02771217859090166 -0.2877910840981094 0.2723055930267614 0.9181644492790924 0.2877910840981094 -0.2723055930267614 -0.9181644492790924 0.7965472595788976 -0.253297272604866 0.5489562413783857 -0.7965472595788976 0.253297272604866 -0.5489562413783857 0.8952079640211859 -0.4452204858064359 0.01952998134470383 -0.8952079640211859 0.4452204858064359 -0.01952998134470383 -0.3232893198518779 0.02813167905717699 -0.9458819293670507 0.3232893198518779 -0.02813167905717699 0.9458819293670507 -0.8886272139272777 0.4582966637581069 0.01748835772829509 0.8886272139272777 -0.4582966637581069 -0.01748835772829509 -0.9067641930740167 0.4213005352784029 0.01686882132688834 0.9067641930740167 -0.4213005352784029 -0.01686882132688834 -0.2922750546849938 0.2931621069745766 0.9102918605826984 0.2922750546849938 -0.2931621069745766 -0.9102918605826984 0.7419994697737539 -0.4512518930279872 -0.4957907985170013 -0.7419994697737539 0.4512518930279872 0.4957907985170013 -0.3148742535731208 -0.004869283983756693 -0.9491209061601453 0.3148742535731208 0.004869283983756693 0.9491209061601453 -0.9986404382995738 0.05205556031263065 0.002737450159036555 0.9986404382995738 -0.05205556031263065 -0.002737450159036555 -0.3381879490069393 0.1884767588034562 0.9220116173549136 0.3381879490069393 -0.1884767588034562 -0.9220116173549136 0.8102172987549845 0.138570612457417 0.5695139279783705 -0.8102172987549845 -0.138570612457417 -0.5695139279783705 0.8502888027754763 -0.102763249480544 -0.5161866585169038 -0.8502888027754763 0.102763249480544 0.5161866585169038 -0.3038909547366041 -0.182050698823732 -0.9351512341258317 0.3038909547366041 0.182050698823732 0.9351512341258317 -0.2902066635529607 -0.1816590542969931 -0.939563771343585 0.2902066635529607 0.1816590542969931 0.939563771343585 -0.999813477153811 -0.01931205510930637 0.0002354337719400635 0.999813477153811 0.01931205510930637 -0.0002354337719400635 -0.3505880388990245 0.1891080781604483 0.9172383342160302 0.3505880388990245 -0.1891080781604483 -0.9172383342160302 0.8136186072749757 0.08552528389165728 0.5750740714996462 -0.8136186072749757 -0.08552528389165728 -0.5750740714996462 0.8477488936218549 -0.1456593881118026 -0.5100050548943768 -0.8477488936218549 0.1456593881118026 0.5100050548943768 -0.2332730477494691 -0.3605164174014107 -0.9031121735298034 0.2332730477494691 0.3605164174014107 0.9031121735298034 -0.9227606700250345 -0.3850225608303484 -0.01644303824084896 0.9227606700250345 0.3850225608303484 0.01644303824084896 -0.3710855398209218 0.08356562277686359 0.9248309622983706 0.3710855398209218 -0.08356562277686359 -0.9248309622983706 0.6915941643211421 0.4814387597695081 0.5384368416709047 -0.6915941643211421 -0.4814387597695081 -0.5384368416709047 0.8981451913718017 0.4388467863422945 0.02736262656891868 -0.8981451913718017 -0.4388467863422945 -0.02736262656891868 0.8429373844420663 0.2038831752479156 -0.4978837381967761 -0.8429373844420663 -0.2038831752479156 0.4978837381967761 -0.2290209345500243 -0.3335906107424467 -0.9144761975919957 0.2290209345500243 0.3335906107424467 0.9144761975919957 -0.892787122367921 -0.4501117183451386 -0.01818227550097881 0.892787122367921 0.4501117183451386 0.01818227550097881 -0.3806471395931579 0.05863070036734207 0.9228597922187215 0.3806471395931579 -0.05863070036734207 -0.9228597922187215 0.6731421049907004 0.7390076570403116 0.02733842212853642 -0.6731421049907004 -0.7390076570403116 -0.02733842212853642 -0.1328818881006347 -0.4812003013776529 -0.8664806251549232 0.1328818881006347 0.4812003013776529 0.8664806251549232 -0.5162201884059053 -0.6859853388317428 -0.5127775658022399 0.5162201884059053 0.6859853388317428 0.5127775658022399 -0.3820804274125651 -0.03799906150363985 0.92334750679962 0.3820804274125651 0.03799906150363985 -0.92334750679962 0.4982106593253596 0.7158749775839003 0.4891923501076451 -0.4982106593253596 -0.7158749775839003 -0.4891923501076451 0.7240704694464025 0.5172326219432335 -0.456281020943666 -0.7240704694464025 -0.5172326219432335 0.456281020943666 -0.6700361228712017 -0.7418412287615767 -0.02689210585362026 0.6700361228712017 0.7418412287615767 0.02689210585362026 -0.3799116356427942 -0.07528213549441858 0.921954309702285 0.3799116356427942 0.07528213549441858 -0.921954309702285 0.2919879555706406 0.8457029878555783 0.4466872397257671 -0.2919879555706406 -0.8457029878555783 -0.4466872397257671 0.4366746038435569 0.8991604423174815 0.02873655041064687 -0.4366746038435569 -0.8991604423174815 -0.02873655041064687 -0.02181407774595281 -0.5442229250816213 -0.838656994144625 0.02181407774595281 0.5442229250816213 0.838656994144625 -0.2991359507547488 -0.8171395266061116 -0.492748086778622 0.2991359507547488 0.8171395266061116 0.492748086778622 -0.3640461567431337 -0.1638571415455993 0.9168539866985687 0.3640461567431337 0.1638571415455993 -0.9168539866985687 -0.3516769144494107 -0.1959843911759476 0.9153761337607262 0.3516769144494107 0.1959843911759476 -0.9153761337607262 0.5385155662651773 0.7372771912468562 -0.4079501540105633 -0.5385155662651773 -0.7372771912468562 0.4079501540105633 -0.4313320674869082 -0.9015906437027481 -0.03296905738921509 0.4313320674869082 0.9015906437027481 0.03296905738921509 -0.3161376728583065 -0.2763059264210083 0.9075858123749857 0.3161376728583065 0.2763059264210083 -0.9075858123749857 0.09040000099123229 0.9018629294589402 0.4224583959261835 -0.09040000099123229 -0.9018629294589402 -0.4224583959261835 0.2181949882099804 0.9753917837111359 0.03165146740445621 -0.2181949882099804 -0.9753917837111359 -0.03165146740445621 0.08965774420950276 -0.5583695936821822 -0.8247332209596372 -0.08965774420950276 0.5583695936821822 0.8247332209596372 -0.09610053397935414 -0.8715175067638015 -0.4808554073451709 0.09610053397935414 0.8715175067638015 0.4808554073451709 -0.2086475547426834 -0.97733379468257 -0.0358448276780246 0.2086475547426834 0.97733379468257 0.0358448276780246 -0.3037553178911301 -0.2967919290395361 0.9053437235160189 0.3037553178911301 0.2967919290395361 -0.9053437235160189 0.3354278871728308 0.8652296633188016 -0.372646967276005 -0.3354278871728308 -0.8652296633188016 0.372646967276005 0.09633384992223543 -0.8730059074944812 -0.4781009044531264 -0.09633384992223543 0.8730059074944812 0.4781009044531264 -0.2454762232693019 -0.3778735606343362 0.8927222389875635 0.2454762232693019 0.3778735606343362 -0.8927222389875635 -0.1068794703126247 0.9026211842571167 0.4169553651842997 0.1068794703126247 -0.9026211842571167 -0.4169553651842997 0.01343256556453883 0.9993622853949731 0.03308456909936523 -0.01343256556453883 -0.9993622853949731 -0.03308456909936523 0.1974099225344546 -0.5322015896758886 -0.8232805053148031 -0.1974099225344546 0.5322015896758886 0.8232805053148031 0.003001611511603842 -0.9993164585643894 -0.03684570491468954 -0.003001611511603842 0.9993164585643894 0.03684570491468954 -0.2411038193416134 -0.3871649112769986 0.8899282441718323 0.2411038193416134 0.3871649112769986 -0.8899282441718323 0.1343421246173835 0.9239034350956201 -0.3582661527018712 -0.1343421246173835 -0.9239034350956201 0.3582661527018712 0.2993706784681616 -0.4646143507834411 -0.8333730868702169 -0.2993706784681616 0.4646143507834411 0.8333730868702169 0.2850107885662926 -0.824994532191174 -0.4880090903410367 -0.2850107885662926 0.824994532191174 0.4880090903410367 -0.1571345039047647 -0.4017198641372894 0.902180635150257 0.1571345039047647 0.4017198641372894 -0.902180635150257 -0.3048806322925207 0.8512454486647582 0.4271170637898318 0.3048806322925207 -0.8512454486647582 -0.4271170637898318 -0.1916792900952346 0.9809089376497736 0.03281319532413365 0.1916792900952346 -0.9809089376497736 -0.03281319532413365 -0.06725397877958619 0.9289520816679044 -0.3640397400053766 0.06725397877958619 -0.9289520816679044 0.3640397400053766 0.214093725390382 -0.976059223129979 -0.03837016668415395 -0.214093725390382 0.976059223129979 0.03837016668415395 -0.1633846812171462 -0.4106968979510492 0.8970136587348917 0.1633846812171462 0.4106968979510492 -0.8970136587348917 -0.4114894635731415 0.910944516026596 0.02926619362607543 0.4114894635731415 -0.910944516026596 -0.02926619362607543 0.3926959050834945 -0.3586157917358537 -0.8468675457521808 -0.3926959050834945 0.3586157917358537 0.8468675457521808 0.4758502576596353 -0.7262053017002771 -0.4961777827227537 -0.4758502576596353 0.7262053017002771 0.4961777827227537 -0.07399356110308394 -0.4019361170684739 0.9126731675201163 0.07399356110308394 0.4019361170684739 -0.9126731675201163 -0.5074302324216592 0.7336431167333045 0.4519760353097758 0.5074302324216592 -0.7336431167333045 -0.4519760353097758 -0.2747903286848682 0.8774196655492494 -0.3932238621557767 0.2747903286848682 -0.8774196655492494 0.3932238621557767 0.4416526661926221 -0.8965544611827641 -0.03366037103526774 -0.4416526661926221 0.8965544611827641 0.03366037103526774 -0.08545569125862905 -0.4237162742578753 0.9017548689974093 0.08545569125862905 0.4237162742578753 -0.9017548689974093 -0.6983978619991993 0.5260909548807602 0.4852512066420825 0.6983978619991993 -0.5260909548807602 -0.4852512066420825 -0.6529432889600653 0.7571478064822202 0.01980556843857087 0.6529432889600653 -0.7571478064822202 -0.01980556843857087 0.465149621916081 -0.2078553546390002 -0.8604835737997689 -0.465149621916081 0.2078553546390002 0.8604835737997689 0.6654155175131032 -0.5535483740833016 -0.5008057373897605 -0.6654155175131032 0.5535483740833016 0.5008057373897605 0.005418881696632692 -0.3680761368893017 0.929779862749138 -0.005418881696632692 0.3680761368893017 -0.929779862749138 -0.000848534349117857 -0.3982057122200044 0.9172957487881525 0.000848534349117857 0.3982057122200044 -0.9172957487881525 -0.4894851489717341 0.7496498620475539 -0.4454541202730113 0.4894851489717341 -0.7496498620475539 0.4454541202730113 0.686486074271473 -0.7266466935471828 -0.02685986947637853 -0.686486074271473 0.7266466935471828 0.02685986947637853 0.07257951327708044 -0.3044279122108545 0.9497662136122774 -0.07257951327708044 0.3044279122108545 -0.9497662136122774 -0.8316266309633804 0.2226829365098312 0.5087331878891489 0.8316266309633804 -0.2226829365098312 -0.5087331878891489 -0.8847452800452509 0.4660747751115573 -0.0003056834338768042 0.8847452800452509 -0.4660747751115573 0.0003056834338768042 0.5015933670654268 -0.02022844019930286 -0.8648669864916057 -0.5015933670654268 0.02022844019930286 0.8648669864916057 0.8822466459320009 -0.4704359473785972 -0.01818997404441176 -0.8822466459320009 0.4704359473785972 0.01818997404441176 0.9072991995700066 -0.4200891905185878 -0.0182547108731709 -0.9072991995700066 0.4200891905185878 0.0182547108731709 0.07681250537470345 -0.3297206400568425 0.9409485312909346 -0.07681250537470345 0.3297206400568425 -0.9409485312909346 -0.6901611701879913 0.5152597301695152 -0.5081190506469726 0.6901611701879913 -0.5152597301695152 0.5081190506469726 0.4967189319902256 0.01610794687932466 -0.8677619700412219 -0.4967189319902256 -0.01610794687932466 0.8677619700412219 0.8811371227070259 0.07681584511404151 -0.4665797862391803 -0.8811371227070259 -0.07681584511404151 0.4665797862391803 0.1213463840642501 -0.2131877828435231 0.9694462462255421 -0.1213463840642501 0.2131877828435231 -0.9694462462255421 -0.8530865173759819 -0.1294405738576815 0.5054587339345447 0.8530865173759819 0.1294405738576815 -0.5054587339345447 -0.814130490024759 0.1226249548705555 -0.5675867032049285 0.814130490024759 -0.1226249548705555 0.5675867032049285 0.488075429724192 0.1805200466478967 -0.8539290881904577 -0.488075429724192 -0.1805200466478967 0.8539290881904577 0.9999911938398497 0.003594933677936766 -0.002165339373681499 -0.9999911938398497 -0.003594933677936766 0.002165339373681499 0.134654818811377 -0.215852360007679 0.9670966024394826 -0.134654818811377 0.215852360007679 -0.9670966024394826 -0.8525443020408295 -0.09186364878118959 0.514518496353942 0.8525443020408295 0.09186364878118959 -0.514518496353942 -0.8136384103311264 0.1551976982215682 -0.5602733365961338 0.8136384103311264 -0.1551976982215682 0.5602733365961338 0.42419264210225 0.356669434057175 -0.8323746255116424 -0.42419264210225 -0.356669434057175 0.8323746255116424 0.788540225669898 0.4252466762652501 -0.4442629590972266 -0.788540225669898 -0.4252466762652501 0.4442629590972266 0.1578903340186837 -0.1001732663627726 0.9823624377640269 -0.1578903340186837 0.1001732663627726 -0.9823624377640269 -0.7547544002130159 -0.4464111011651991 0.4806900499444158 0.7547544002130159 0.4464111011651991 -0.4806900499444158 -0.9002546744465021 -0.4324153514752223 -0.05058146840279224 0.9002546744465021 0.4324153514752223 0.05058146840279224 -0.7844078875843706 -0.2203888260673079 -0.5797698088380414 0.7844078875843706 0.2203888260673079 0.5797698088380414 0.9025619957841596 0.4302941233611072 0.01512650544609188 -0.9025619957841596 -0.4302941233611072 -0.01512650544609188 0.1694587852265324 -0.07902581395908963 0.9823638026910659 -0.1694587852265324 0.07902581395908963 -0.9823638026910659 -0.6777997339671049 -0.7334386989157637 -0.05152858980093819 0.6777997339671049 0.7334386989157637 0.05152858980093819 0.3277318451777326 0.4836579036630281 -0.8115829408512009 -0.3277318451777326 -0.4836579036630281 0.8115829408512009 0.6008258209528511 0.672999545050567 -0.4313698473909166 -0.6008258209528511 -0.672999545050567 0.4313698473909166 0.1681259371286808 0.0289271124782179 0.9853410026119259 -0.1681259371286808 -0.0289271124782179 -0.9853410026119259 -0.5960772586658657 -0.6811286002642853 0.4251537740669864 0.5960772586658657 0.6811286002642853 -0.4251537740669864 -0.6424609573471923 -0.5591595895136003 -0.524008083658555 0.6424609573471923 0.5591595895136003 0.524008083658555 0.6860359439303672 0.7270974243426841 0.02615375976422767 -0.6860359439303672 -0.7270974243426841 -0.02615375976422767 0.1672445427505161 0.0635846036810455 0.9838629280010987 -0.1672445427505161 -0.0635846036810455 -0.9838629280010987 -0.3991834821708372 -0.833882662242207 0.381172209340889 0.3991834821708372 0.833882662242207 -0.381172209340889 -0.436673585657375 -0.898346711598448 -0.04784731287528865 0.436673585657375 0.898346711598448 0.04784731287528865 0.2165549899156194 0.5605315718217925 -0.799317392112568 -0.2165549899156194 -0.5605315718217925 0.799317392112568 0.3959079871099898 0.814565510187616 -0.4239574216301738 -0.3959079871099898 -0.814565510187616 0.4239574216301738 0.1469885497273995 0.1606397865739732 0.9760067751908816 -0.1469885497273995 -0.1606397865739732 -0.9760067751908816 0.1367524582859509 0.1896313168118517 0.9722853124659204 -0.1367524582859509 -0.1896313168118517 -0.9722853124659204 -0.4363659032354655 -0.7641091553127701 -0.4751020914084689 0.4363659032354655 0.7641091553127701 0.4751020914084689 0.4489091800247141 0.8929977089497613 0.03218135951162144 -0.4489091800247141 -0.8929977089497613 -0.03218135951162144 0.09538884997893314 0.2729518704836034 0.9572869181698865 -0.09538884997893314 -0.2729518704836034 -0.9572869181698865 -0.19916090518526 -0.9116402327043386 0.3595094156772078 0.19916090518526 0.9116402327043386 -0.3595094156772078 -0.2176624288130749 -0.975174444786605 -0.04071694141668609 0.2176624288130749 0.975174444786605 0.04071694141668609 0.102006332390428 0.5870283498898806 -0.8031142039447549 -0.102006332390428 -0.5870283498898806 0.8031142039447549 0.1981146465912776 0.8828648477660394 -0.4257936676197301 -0.1981146465912776 -0.8828648477660394 0.4257936676197301 0.2256876647724398 0.9735647864648768 0.03516652563392818 -0.2256876647724398 -0.9735647864648768 -0.03516652563392818 0.08666536336345972 0.2887786406560797 0.9534652649645432 -0.08666536336345972 -0.2887786406560797 -0.9534652649645432 -0.2265545473801807 -0.870396171769524 -0.4371310343939431 0.2265545473801807 0.870396171769524 0.4371310343939431 0.1010901885606562 0.8940479215265205 -0.4364161864446363 -0.1010901885606562 -0.8940479215265205 0.4364161864446363 0.06445273455075674 0.3426205379758255 0.9372603757580311 -0.06445273455075674 -0.3426205379758255 -0.9372603757580311 -0.09421883163346889 -0.9293391783437046 0.3570035060907275 0.09421883163346889 0.9293391783437046 -0.3570035060907275 -0.1141545076910417 -0.9931824478120208 -0.02360876387993668 0.1141545076910417 0.9931824478120208 0.02360876387993668 0.05547583050659001 0.5705465277503693 -0.8193894628939288 -0.05547583050659001 -0.5705465277503693 0.8193894628939288 0.1183456576553504 0.9923332101166951 0.03562450580173765 -0.1183456576553504 -0.9923332101166951 -0.03562450580173765 0.06847289401134064 0.3517521245684066 0.9335855106241335 -0.06847289401134064 -0.3517521245684066 -0.9335855106241335 -0.1174996333925605 -0.9006404150700651 -0.4183786310210343 0.1174996333925605 0.9006404150700651 0.4183786310210343</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1720\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1718\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1721\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"5340\">6.58124424901909 -6.549378169441382 6.594243626844292 -6.487653200815711 6.696598292678734 -6.579371642699301 6.770497270762599 -6.368002865699669 6.896285173146524 -6.398310764394472 6.873649040572605 -6.459167001603291 1.606994190922951 -6.327084945039047 1.580681158011152 -6.386127925962971 1.460244292213868 -6.292204700666309 10.72765394165891 3.063738383867222 10.5980296473315 3.16242781111746 10.71370408282775 3.133207924124927 -14.24684181700179 2.895012572611291 -14.37836477191033 2.884348767382279 -14.27536856083076 2.948733990007817 12.02661393174706 -5.038767454721178 12.02963450011833 -4.97540399630809 12.13270788791269 -5.064109924764864 -11.43004979394074 6.476324997785461 -11.56978098256344 6.449906638664104 -11.45041031934673 6.525574610328857 1.322449705284458 -6.54656069112223 1.188396506576154 -6.512409706528434 1.202976646830431 -6.451878772249051 10.41699837302386 3.037734408533836 10.41242534415271 3.106118996484697 10.54308769399871 3.008280373024194 14.22298475920952 0.9978649944354868 14.22868687550232 1.068052757424426 14.33983745789674 0.9736936553716453 -14.41406365568179 2.799460727749057 -14.42893286841137 2.860675058135635 -14.29755694176207 2.872406949963704 -11.81071992062438 6.326362348610802 -11.81615211937594 6.384425499993632 -11.67726913981383 6.413480222718076 12.34011881459929 -4.847885141612953 12.23559589959462 -4.760235148769227 12.35218527571307 -4.785337753832025 14.29799052110548 1.032487182046824 14.40449286151205 1.008227913539467 14.4082945708094 0.9375153228838487 -8.646902383256775 8.414878901034605 -8.65225088094765 8.466496378568733 -8.496176125508582 8.508264906098283 -2.062364601803681 -5.946800285642397 -2.084487832753494 -6.005899039236392 -2.225608167016072 -5.908277090569572 5.516731967478028 3.763540693092602 5.536636150405173 3.696875695631897 5.382351354636739 3.796885859379463 -1.825387654953955 -10.97795048330495 -1.884600514269914 -10.93822896745472 -1.714330072727926 -10.92251084273801 -7.748922238916536 -9.954464435558011 -7.79840775236452 -9.906628617639578 -7.649350194663867 -9.900624786233577 -8.784310837788754 -1.241847335524194 -8.787135633251932 -1.313500902922323 -8.92930096333563 -1.268526888976237 -15.04146757417562 -1.00410718230715 -15.18224126549513 -1.000381342150911 -15.08000063047432 -0.9496539115100071 -3.469776790001123 -1.433129586011157 -3.636193457436785 -1.393887389957964 -3.467751959729123 -1.361446586633084 15.0799720754955 -1.84640187481776 15.0697697748768 -1.783649460309469 15.19088475943191 -1.865768703242847 15.14971662900356 -1.555844833387425 15.16475225651432 -1.486064374733959 15.270873582621 -1.573836679302148 0.4616561994130319 -1.476724207459918 0.2768516036628688 -1.441540775337597 0.4630186390810243 -1.405042945112993 -8.005742696899761 8.488515723223257 -8.163621323410542 8.451177554591169 -8.026435765616917 8.530730759872318 -2.293388194544666 -6.138822691979789 -2.4430430920236 -6.101480803180111 -2.433742599554219 -6.04051978575417 5.436284076851978 3.627690075505538 5.289345258562495 3.661908654056093 5.281609980481847 3.727327415661591 -1.664012047294929 -11.17724007252425 -1.538691796081832 -11.11373410611447 -1.494020587394178 -11.15975280909925 -7.708903503541491 -10.06819690293984 -7.596851553771961 -10.00757019272877 -7.559897686881227 -10.06144487523813 -13.80394136830569 -5.347095812217072 -13.67982728250908 -5.297709492546378 -13.66934678039212 -5.358830088359242 -8.934277323360174 -1.278181379060464 -8.792112442899484 -1.323156272549668 -8.937274536217549 -1.349834940823649 -3.469575642851401 -1.432604703644461 -3.637981170684591 -1.465033502026184 -3.635992330231767 -1.393362559933586 -15.04443401340557 -0.9267530124473642 -15.16167715503678 -0.9830096314666004 -15.18518939721181 -0.9226212489814935 0.4667585127219454 -1.460205219356446 0.2806529150071002 -1.496716884230763 0.2819533936378837 -1.425023488397573 15.22694423527607 -1.729820926995538 15.10474829618992 -1.648698741421962 15.22579592759738 -1.667368909268757 15.14836910280534 -1.561230425407777 15.25950455965932 -1.579790115350655 15.25381816116621 -1.649502713802673 -13.70905781169531 -5.465424093013168 -13.57427659965371 -5.475747981522576 -13.68326120159224 -5.521105616346749 3.976310155088747 -1.452420991870312 3.778059476329116 -1.491331965888099 3.778677872700642 -1.419644341839172 -4.915032547644466 9.695300561137652 -4.924158167699285 9.739972307822898 -4.749506986196691 9.789484780731707 -5.450190950101695 -5.452943705251995 -5.466428704797508 -5.512998744586117 -5.62393289877766 -5.412722460397985 1.609465487717938 3.643233308884622 1.625747823712465 3.578792809037639 1.459434081530487 3.679628221354763 2.75177342842676 -10.41501700380149 2.694025937217583 -10.37911533282872 2.886418593863451 -10.35745692824499 -13.56823117634963 -1.117856398906911 -13.43696541817042 -1.168642013176132 -13.57034484446136 -1.189529781926131 -15.31837195499966 -1.126824963332342 -15.18370245135952 -1.183496829452818 -15.32148137519616 -1.198474617651945 -13.43873416972657 -1.105383114401142 -13.44221737402736 -1.177023074673115 -13.57348303464848 -1.126237304357183 2.932885576596509 -10.62556022685836 3.084567787784672 -10.55949770269626 3.124876194543661 -10.60179637146776 -14.27406457440445 -4.188326973727107 -14.23026255961007 -4.241256592905594 -14.3880974431638 -4.225327928343009 6.08159715729758 -9.679589720518795 6.252366066188061 -9.610885962106238 6.281737120175908 -9.653513684822444 14.56990814590382 0.8906379004746501 14.55073954364409 0.9512488337379985 14.69513799916541 0.8771124759701474 13.98836616840125 -3.485795048415157 13.85180981249663 -3.473507760986333 13.87220671244561 -3.405519550538257 -15.09360847281752 1.551480369610484 -15.11229511495358 1.494068204026374 -15.24448506369222 1.522759909581195 8.863141725241569 -8.491093070519487 9.046607585061743 -8.420335876271338 9.063187285970249 -8.465440283949684 3.981652961166122 -1.432534168465369 3.784020116171064 -1.399759617830593 3.982227057989166 -1.360845740458799 -4.243778827518175 9.645692936740909 -4.4203482338053 9.600586872049473 -4.271108337050094 9.681303096710458 -5.567571219398818 -5.577113581380363 -5.726965491124796 -5.538029632220386 -5.724687919201744 -5.476461811269927 1.479190914587885 3.450728201263897 1.315723022024065 3.488181673922985 1.3123895722882 3.551063954407052 -15.18164621719179 -1.112031694332554 -15.183579319497 -1.183708231834246 -15.31825082028332 -1.127039302738265 -14.11644171506379 -1.247840634544451 -14.11882086935693 -1.319507596013285 -14.27127552772448 -1.257445807823585 5.944838963904796 -9.535317829142093 5.896110707495713 -9.498913914865723 6.096612970452268 -9.474621268043999 -14.29865728184889 -4.131559341464129 -14.4274629530263 -4.170368937371987 -14.45623700581568 -4.114137297605507 8.741952678615132 -8.388900269106708 8.704432924425426 -8.35043200610763 8.904819006823733 -8.326480335575504 14.62575748289741 0.8840605137219411 14.48069581852796 0.957391260480141 14.61719612716233 0.9449103110481921 13.93823792192693 -3.50098340353423 13.92868917508662 -3.568394517846725 13.81296019620182 -3.487735170872187 -15.3191072571964 1.089747013738183 -15.18589532225082 1.064147005589764 -15.31828670712011 1.03509219622925 -14.27071625492155 -1.256628862637208 -14.11826140441306 -1.318690358735289 -14.27301155136194 -1.328294431454065 11.2748086613165 -6.962727785305382 11.24900669104789 -6.920389516202464 11.4386430382845 -6.899072111910923 7.079122381810587 -1.366778858084151 6.879283177793899 -1.406303553365385 6.879174206126704 -1.33461375405915 -1.639350098864578 10.24402048753645 -1.659126075293471 10.28259867174746 -1.471834731367073 10.33842240011433 -8.350193722834836 -4.901656702223142 -8.358945052014157 -4.962864643339828 -8.525359415136965 -4.860766572695539 -2.069176509537213 3.326242371998825 -2.059087024761563 3.263807920087086 -2.228970941949152 3.364301695159172 -12.80801298485597 -6.5162044115534 -12.96023646348285 -6.540458830759638 -12.98586871517872 -6.488806855079433 -12.66637355289365 -6.577066818475374 -12.6216360985754 -6.62642051388846 -12.8001472564576 -6.601801802600653 -2.162817219157649 3.161640623475467 -2.336942990057161 3.200987032149872 -2.333023790622471 3.261795962852635 12.39182426109625 2.18561983376668 12.24944285353749 2.19473994396073 12.2292020449856 2.25385443097011 11.75074928358597 -4.598198705337238 11.59566929682486 -4.590326721935167 11.61580633313306 -4.524374147181312 -12.63507355126722 5.894212969916898 -12.66393998906888 5.844494759227446 -12.81020461308719 5.881331443860742 -11.82125205815746 -1.459694082136635 -11.99549709293202 -1.393311873126869 -11.81977059956834 -1.388015243731605 -5.382493030321145 2.890923063486692 -5.558077907378632 2.930721040901064 -5.54565632136752 2.989887599332794 11.55202166175043 -6.97032458325745 11.36265161727129 -6.993059841607922 11.54729574696372 -6.921103971484012 7.075826539499448 -1.379446987442179 6.875878736080901 -1.347280451372693 7.075723304966597 -1.307757750129594 -1.021186987362716 10.00367962972549 -0.8694177686235403 10.08371475068434 -0.8313202435885412 10.05383124676085 -8.467908202763617 -5.025225452961317 -8.628568156351067 -4.985666143780119 -8.633850798947336 -4.922653294167339 -10.63473570750967 -8.396450360756997 -10.59555666323037 -8.442543639426111 -10.78870460040299 -8.412389414882506 -5.264650239876106 3.074501562281626 -5.26295113539274 3.013629195775665 -5.425733287039561 3.112981391539079 12.29289584040521 2.167725345527938 12.30089699380007 2.107827564862799 12.13791688367612 2.175531668263347 11.68650379418733 -4.62218848841794 11.67877838708494 -4.687202969135057 11.54412396994733 -4.613053094229081 -13.08120175598883 5.416493678003377 -12.933679223902 5.382904350925389 -13.08779377845514 5.367197755794929 -11.82027526121955 -1.458146084418443 -11.99604071254451 -1.46345417311277 -11.99452056129688 -1.391764306365459 -10.89760927187156 -8.376099391171923 -11.07263611306153 -8.38951289220214 -11.08975241430197 -8.342204616685828 -8.247975251303757 2.83781775819075 -8.254873181608906 2.778095725210113 -8.401385748341427 2.875408215976926 13.48044384213466 -5.009201686890331 13.46385237761761 -4.961597731074239 13.63487046372841 -4.94549333456956 9.879863373842106 -1.279515954902865 9.689642966495599 -1.318112330245819 9.688833687236995 -1.246425873783559 1.475651917588861 10.37351640629636 1.443130091462908 10.40723131683276 1.633232329972663 10.46618200176879 -11.0667197444089 -4.252035633234956 -11.06869557425599 -4.315166235750052 -11.23351755599443 -4.212103517231708 9.71446549538318 2.682322219812674 9.558501111372419 2.688716318200013 9.542757436781312 2.747656735355469 9.250814699947915 -5.261317889795185 9.080915698983219 -5.256274384238835 9.096599736713905 -5.192152721956323 -9.594212167617888 7.85725022959299 -9.618678131511869 7.811571463428256 -9.78657225631229 7.852181304202899 -9.223157745222073 -1.559513824423473 -9.414858620572524 -1.490297784890158 -9.222389127344098 -1.487816533957632 -8.342676183655009 -9.823142345531542 -8.313551547726426 -9.866667545846497 -8.512151808923482 -9.833839807323299 -11.18493744892392 -4.360578516193835 -11.33788399567242 -4.32183575397238 -11.34911959644303 -4.256885721281595 -8.363931188574018 2.665633741903264 -8.53117261365886 2.704464239519222 -8.51083709197818 2.762578564523907 13.7032700981467 -4.94760926841141 13.53243276553563 -4.964860093100802 13.70571871821602 -4.892064820823818 9.918408740111159 -1.141557346435877 9.727375012814907 -1.108481704397161 9.918011166691752 -1.070223784205219 2.154785353111235 10.01054928985228 2.298149943687731 10.08860311579251 2.347909860452635 10.06307003623583 9.614774569423926 2.62259068597055 9.616830971644632 2.562621381735284 9.444870915217811 2.627544449697741 9.180936640514702 -5.292365405877916 9.178984853297125 -5.355321768348242 9.024979107795028 -5.28586871389258 -10.12264496331629 7.384037398307376 -9.953569129999973 7.346584292382385 -10.12323052915491 7.33790296641511 -9.223302778726774 -1.559758095281766 -9.415745096930356 -1.562230434000202 -9.415003618485226 -1.490541994745479 -8.718101642412567 -9.849470270803952 -8.910416386694324 -9.856028141728599 -8.915439656525455 -9.812228607292562 -13.52757237333776 -3.253838288386617 -13.52570201626261 -3.319370448554848 -13.67841958207174 -3.216263533760802 -11.11903254697048 2.503742481659308 -11.13283943233612 2.444453213863007 -11.2576465884218 2.539291641083163 15.00901797649272 -2.226254217167108 14.99471168600354 -2.171827778478193 15.14620801840819 -2.164273783765453 12.68751385641467 -1.046289002066653 12.5140764173943 -1.081226333038961 12.51320522696011 -1.009895377403657 4.435409511631076 10.18764576954969 4.390186155113673 10.21795412776514 4.57038367166259 10.27786145171617 6.970231778647031 2.933597808515434 6.80792556828419 2.938987088622652 6.799881688192711 2.998643544254029 6.565200070904346 -5.77145126429052 6.38849475190444 -5.767454288873126 6.397328272898307 -5.704863778902204 -6.727716747354233 8.72492284002916 -6.740962662766271 8.67997821747481 -6.927849432471361 8.722326968238191 -6.523860973682957 -1.619966112853497 -6.724023439939218 -1.549689226529727 -6.523816959676118 -1.548275308989991 -5.693633793840718 -10.99750842844916 -5.676828072007357 -11.03945164024491 -5.870057109739038 -11.00675822385091 5.134303576942065 9.744778558550188 5.25934845031599 9.82104916490678 5.317869985164807 9.797981050926577 -13.61661898968192 -3.314964590822164 -13.75477921795586 -3.278338480514989 -13.76854622192811 -3.21113764018096 -11.22516461032156 2.346204936008003 -11.3763808957291 2.382786202714328 -11.35040662033016 2.44068793613538 15.1576814090512 -2.124937608263094 15.00622435634547 -2.132964253521795 15.16255610417226 -2.064324066966547 12.67874468748797 -1.072408870383979 12.50443705789629 -1.036012282277891 12.67579970956057 -1.000791165795485 6.893125891645962 2.88321524964939 6.886905982815804 2.822359023664407 6.716380878520885 2.887120345392944 6.493886671357535 -5.8005416321671 6.499297749395056 -5.861853318658661 6.331588001222222 -5.795013610782488 -7.074127155872859 8.225542020014023 -7.250726533626778 8.219285912978307 -7.262032134221126 8.265004098363175 -6.525749738177368 -1.623253311987273 -6.725901609103392 -1.624662552674014 -6.725911777439533 -1.552975673052246 -6.368320690458104 -11.02654289028165 -6.176516721583457 -11.06407179278063 -6.3766631666886 -11.06817949827535 7.399609504547767 9.619323336809778 7.345657936498037 9.648481918796941 7.50932005389018 9.70810095719639 -15.19835650897502 -1.539034396595866 -15.19769012705485 -1.607100305600387 -15.33016673667251 -1.505202038994014 -13.78005902420712 1.693229909753987 -13.7967899717757 1.633255812143993 -13.90101400375472 1.725824069942405 15.09413895837948 1.382617541727121 15.07649354971018 1.441744718990168 15.21264066966617 1.439333263282441 14.70849752495492 -0.9569903180896706 14.70504936238811 -0.885386513503547 14.85983765837054 -0.9261652935141864 4.088365265100688 3.216347512225592 3.92858025553164 3.222424407256274 3.929212039490774 3.283474997984946 3.628701490527138 -6.25377151257014 3.453414789059227 -6.249107518399225 3.454746509898578 -6.187657172491474 -3.942909749583434 9.179981975510847 -3.942449775668033 9.133408161644695 -4.13993042991791 9.176092671215066 -3.606698048420351 -1.645858167980079 -3.804442724339767 -1.576393226874311 -3.6073962201789 -1.57417339189756 -2.288278526008347 -11.90528913347866 -2.283036671723982 -11.94723758726214 -2.461576433909019 -11.91801663122962 14.68525165683018 -0.932638536655356 14.83767055927219 -0.9017608779535168 14.84003553665523 -0.9734276888092656 8.108960391747763 9.093458524674087 8.209437323079435 9.16861687617568 8.276440918809898 9.146107733000486 -15.36165339124285 -1.424612209270104 -15.23019083421849 -1.527319995424785 -15.35086860629276 -1.494096043713383 -13.88118101999296 1.518439185105724 -14.0132840761721 1.551715355141865 -13.98609403252384 1.610524537993517 15.21737009846128 1.491820278078688 15.08122751550328 1.494385356116551 15.21560360749451 1.557231680141138 3.996955488369488 3.144999336356541 3.982368056858551 3.082821681320523 3.823003933198998 3.149638809828557 3.485286894891789 -6.366196625883084 3.499164945906288 -6.426505097304841 3.325515964445149 -6.359894810592758 -4.278002755312185 8.678262533042021 -4.453169469024997 8.671350563432563 -4.476417866988736 8.718175278555938 -3.618895359002929 -1.667155676863641 -3.815957778124675 -1.669379995571271 -3.816637486098988 -1.597686245786954 -3.063075796199603 -11.98819013303461 -2.886020494107124 -12.02254899848497 -3.082847751041001 -12.03018892198073 15.37347153016832 -0.864475723708804 15.37036629622499 -0.792826398140414 15.50826906708694 -0.8391059119714515 10.52976473615412 8.337246791857679 10.46869773574608 8.368506526357542 10.60892099772934 8.426715961728627 -14.90733358767244 0.9496904440560714 -14.91413508240196 0.8798953576999469 -15.02467306260946 0.9783649043506141 -15.43571461010428 -0.3095391815648549 -15.44843414629052 -0.3713122339563524 -15.54299682496061 -0.28070504552319 13.18902707788397 5.120739521180622 13.08182700855746 5.07329441497193 13.05331052206207 5.134754519941269 0.8602079240670885 3.552651421901498 0.7113710177846816 3.561026601019804 0.7198562776932399 3.623901000220996 -0.06156410505620824 -6.85188633132437 -0.2224226690605397 -6.844260889613422 -0.2280132769841331 -6.783130214567945 -0.9993590702559498 9.425796599405491 -0.9871209358075042 9.376457503167522 -1.182856664340904 9.41748422758206 -0.2787465030115544 -1.650569545981412 -0.4648357632701805 -1.583661053340848 -0.2801691149569641 -1.578882537162648 2.632411735352135 -12.09200642552012 2.632056573613641 -12.13679197222151 2.473012178330985 -12.11634927890616 13.26986832367426 5.181267872325768 13.13430698424003 5.196183559839843 13.25632134653072 5.247906031232003 15.37039704935246 -0.7927718569836021 15.5051591891193 -0.7674044945288573 15.5082998077492 -0.8390513938007211 11.27388404135594 7.614833960107384 11.35039658314674 7.690464620731416 11.41892048281696 7.665219088248803 -14.94597724388745 1.133757219368655 -14.8366103783817 1.034481718979013 -14.94404317265669 1.062966787564549 -15.46170198266474 -0.4837969542149664 -15.57902692257803 -0.4547413647059616 -15.55721730864293 -0.3938102667829985 0.755403771290053 3.479990418793721 0.7339020756767323 3.416193550264083 0.5932810520062515 3.487113670990601 -0.1125383764077592 -6.828888836228406 -0.09497580761364755 -6.889010503667708 -0.2613392188630737 -6.820126058444464 -1.294534063689594 8.981731717269463 -1.45507948850479 8.970757636182825 -1.491061582686062 9.020344992648781 -0.2417048101405872 -1.587089843200602 -0.4254040759247646 -1.591913545599537 -0.4278004564843063 -1.520192343133845 1.850810746548346 -12.28492656885881 2.008734919453221 -12.31017810497672 1.826032096794208 -12.33184142163448 9.503412932212505 7.76058911858186 9.393397281554332 7.724749844334949 9.353995887168807 7.784695466024076 12.96596933288625 -0.8856871073875584 12.96262871075048 -0.8140458065531737 13.09807611669301 -0.8662422109606354 13.94702700974277 5.196158813294375 14.06936201237766 5.249176036053585 14.00392306308978 5.156918052186839 -11.82655752285261 3.222342692885392 -11.84374829503723 3.152839329262184 -11.94226861134993 3.244729081785231 -14.18572255002344 -3.58250145599699 -14.18654326213074 -3.645798698832333 -14.29126050829675 -3.558614725452693 -2.987532571468472 3.888388936992129 -3.119921903641918 3.900550950094525 -3.106293207597168 3.965675456964211 -4.520285822817078 -7.038549392869954 -4.664360227163076 -7.026694423352252 -4.670880235876227 -6.965219336962992 2.299404964523432 9.488670329443528 2.322566263497101 9.434557907495242 2.136871318879284 9.47286930048757 3.955660293461079 -1.479465012608606 3.790134618569108 -1.416730121974065 3.952614200677353 -1.407759067084463 10.05991255277378 -9.604728338859857 10.0706418825885 -9.65482546438237 9.929644119913441 -9.654565405404615 -14.18100759915282 -3.615503449713955 -14.07523677823763 -3.701896778334867 -14.19047154775366 -3.678297315289884 9.68033583573272 7.957884167846678 9.703922871060851 7.894120557176986 9.554940304920466 7.919837247075896 12.96063017669018 -0.8172633530626651 13.09263569321016 -0.7978226973522309 13.09607751920492 -0.8694598593270555 14.50982789799723 4.150502059193211 14.57618626995122 4.22835996152286 14.63751959600602 4.195021685250977 -11.67792821171452 3.314407234664699 -11.78392062031012 3.337014453706298 -11.77550975736867 3.406914815894923 -3.096701153932128 3.833949100290053 -3.121743936100268 3.768231548057704 -3.240851383565672 3.845187083151502 -4.685759871219721 -7.089698368532281 -4.667904566084492 -7.150707082949529 -4.818035071205694 -7.07679070270242 2.006696007070294 9.08105633943431 1.863463391247857 9.06402082020049 1.820227595080348 9.116967683248314 3.907978078413694 -1.557309422787356 3.744601666606605 -1.566236740824238 3.742458447236089 -1.494564664824742 9.921957857946488 -9.687768392533094 10.06295538963597 -9.688096935144522 9.915776023782305 -9.74298291948497 -9.536187034695873 -6.109165075974538 -9.52402517985005 -6.171670783331912 -9.652903998715336 -6.091271755545428 5.394369664548398 9.013073844497422 5.269145413654473 8.98814844654512 5.224592296156702 9.0445549802318 8.172384188754199 -1.050493994714629 8.169435860873902 -0.9788432130047249 8.317123293643281 -1.03688854695364 15.4593568147715 -2.196078899442888 15.585691184698 -2.162655680348026 15.49019509487093 -2.249472481659872 -7.174630313843458 4.191544291445221 -7.198639336027242 4.123919467168141 -7.302161396672466 4.207606734110603 -7.512896872044705 3.880741744689181 -7.628222886151233 3.898016109911356 -7.614488809925017 3.965766902650979 -10.05198077925374 -6.220040294606468 -9.925054496375578 -6.300433664451168 -10.05060016082363 -6.282635650962902 6.0595022497826 9.018524087441488 6.086338965082914 8.959240870642818 5.919293735651714 8.992149632533886 8.71294079027493 -1.357679779673712 8.855963963588343 -1.343488947981518 8.858849349569717 -1.415144910131426 15.46797397531142 -2.244082559516285 15.55442020828451 -2.170200083365358 15.59595209762544 -2.214975631735235 -7.018177647189687 4.27015268442776 -7.135179280475193 4.286855907081375 -7.121080656308553 4.354311102843562 -9.487109587705367 -6.03670439304994 -9.35748853738791 -6.116361583604476 -9.484805617161001 -6.099209318034252 5.646198279373889 9.316156776247158 5.673096166160551 9.257483117041781 5.503966014631532 9.291051008994902 8.176889948354898 -0.9670578814414143 8.321803031755108 -0.9534527271722227 8.324578176343493 -1.025101963257383 15.31787573394606 -2.991383493381594 15.35615939340803 -3.037378882863943 15.22713497432006 -3.063684969347828 -7.683941862686723 3.788286790761991 -7.70753054522451 3.720442539687231 -7.809818624814156 3.80494961202868 -10.10754318578714 -6.280988109041837 -10.09644036543875 -6.343660109105083 -10.22256103855552 -6.262485915253553 5.810030689501506 8.709220836368601 5.686800163988918 8.683274861049368 5.642347912516739 8.740057861146749 8.71221542320505 -1.435026870655446 8.709334777800718 -1.363366330854731 8.855242975404517 -1.420832029632356 15.62328263008404 -1.276134631715449 15.74807445594709 -1.239451794400593 15.65831561462284 -1.328189715669083 -2.683509845591801 4.167315434636141 -2.708407832933077 4.101820517499222 -2.82973441647802 4.178034497450074 -4.160051516571407 -6.742902921349519 -4.14190665745088 -6.803783171280707 -4.294121008134812 -6.730509740119083 1.63891788405939 9.318606882448178 1.493596293917963 9.302360680905546 1.45077567462642 9.354854617899264 3.344966541456234 -1.16079712097281 3.177821464271377 -1.169162107752115 3.175809725731079 -1.097497091901778 8.879219485749545 -10.21799406819434 9.022385226087984 -10.22221713968744 8.869138385987327 -10.27239706324155 -12.11254823881648 2.785161929966629 -12.21806901817422 2.808411330130421 -12.21053926717858 2.878497682522843 -14.51223159584396 -3.612669164517918 -14.408335190759 -3.699608285877914 -14.5231095212086 -3.67536556602917 10.09332858830157 7.542209250891975 10.11624857953252 7.478006039962986 9.969096801405391 7.502732089899697 13.36667546683296 -1.213753528807619 13.49827161106425 -1.193692345027859 13.50158749972813 -1.26534123853821 14.21274096975817 4.554931272144604 14.27888045651739 4.632572000543065 14.34159676935802 4.600398678108447 9.121567351821501 -10.05688027525365 9.129931073619558 -10.10595762203221 8.986726411255365 -10.10265056582533 -2.552825312392804 4.241806767107609 -2.686995605654396 4.25350539908281 -2.67375968987992 4.318405533400918 -3.994881784187046 -6.682837628967281 -4.140955918950187 -6.671513595794013 -4.147545019114344 -6.61014441115455 1.892692983134013 9.677086944403035 1.913713247500035 9.624144397243478 1.726242019814234 9.662483222764452 3.425403473226862 -1.027712244455188 3.25623713927763 -0.964427958447406 3.42188197100568 -0.9559809909929581 -12.2580098996741 2.688038875326533 -12.2741725445931 2.61840847154347 -12.37314363818211 2.71110207228355 -14.50343604627514 -3.568408969071592 -14.50565661871877 -3.631637744385509 -14.60850753513759 -3.543932697348949 9.927167091084403 7.341388397474084 9.818078804243646 7.304301580649085 9.779609336369521 7.364568902136197 13.37042311176466 -1.28478605231886 13.36704899679033 -1.213147962529828 13.50196103823311 -1.264735658426976 13.59514017933157 5.593935722553674 13.71858830810567 5.647895169174232 13.65315003289887 5.555866250203276 1.269933349773281 -12.21505571327907 1.429736907496426 -12.24138994912994 1.246035609969401 -12.26086457700516 1.117691310402366 3.832566543961213 1.096809147173354 3.768922328041411 0.9540052658472764 3.839358444508018 0.290891578879986 -6.4182719458041 0.3080688160055412 -6.478358966394877 0.1406040221887672 -6.409845398332323 -1.627877711662404 9.167993417344203 -1.791289676923391 9.157781848542518 -1.824587824479411 9.206671485326714 -0.5881315195274661 -1.146892661343638 -0.7723047443447428 -1.151399498838604 -0.7752859717544591 -1.079653092062166 -15.12450448487209 0.5082367006157138 -15.01306506971698 0.4084567146726896 -15.12144782084179 0.4374958174156797 -15.40483700265046 -0.5500840574871496 -15.52314926569948 -0.5205329036869346 -15.500459170509 -0.4598507532618971 13.6372217008346 4.552000643296386 13.5025964082012 4.565796961491111 13.62564565899375 4.618821671536798 15.4332221916265 -1.208163755361539 15.5691506200113 -1.182197293887767 15.5722767728024 -1.253842345181188 10.93686109792127 7.70189293965731 11.01554030073302 7.77749597874106 11.08419198164969 7.752694003065106 -0.6158288035618509 -1.194444819456567 -0.8029789501656837 -1.127197834276049 -0.6177048406552255 -1.122711433791591 2.023188275497688 -12.02477396981686 2.022744962719547 -12.06917846409603 1.861827604196317 -12.04744303558953 1.209573519529485 3.891427002171439 1.059253855070687 3.899491351054425 1.067007614216021 3.962160819751297 0.420894258451871 -6.346390196957869 0.2572155089149181 -6.339299772052521 0.253146768666605 -6.278305945086839 -1.29323938510224 9.649788542172328 -1.281424232058489 9.600608416779039 -1.47723624504815 9.642010717377548 -15.07056644321586 0.32951837866518 -15.07648249795538 0.259809567907225 -15.18906507192764 0.3587922130660675 -15.36821020385244 -0.3764479075521434 -15.38176415486199 -0.4379950396759887 -15.47649394105839 -0.3471811079866534 13.55408544381492 4.468656774022928 13.44601181969195 4.420618456722103 13.4193014521924 4.481458325226751 15.44154621644683 -1.270040220367351 15.43887546463735 -1.198432813650995 15.57792429179933 -1.244122241854085 10.20512566656824 8.403341707836011 10.14432019768183 8.434145630052644 10.2870289046954 8.492544086535737 -3.91869385540605 -1.225108016712174 -4.116115399298471 -1.227197461004944 -4.117322721586101 -1.155455181929513 -3.471467888267802 -11.78072429536734 -3.292609903821964 -11.81562808691437 -3.490491370865683 -11.82253249225255 4.317564667636729 3.491936441918928 4.303776139349001 3.429912165714986 4.142883544033628 3.496419642142974 3.819721301533072 -5.889640375170888 3.831603248875901 -5.949998662128328 3.659274989512859 -5.883511144970043 -4.56309856753151 8.881415741794974 -4.737645362532237 8.874537455795485 -4.760466039373007 8.921257796501106 -15.30437239808054 -1.925137475173718 -15.17265218618397 -2.028113769500776 -15.29367516436432 -1.994492812379549 -13.63977731800671 1.281596579032337 -13.77383540457406 1.315252893507354 -13.74648797467401 1.373895152655176 15.30554625251233 0.883233312674941 15.16852919846324 0.8845237794874239 15.30447440325262 0.9475939320276569 14.55150531006319 -1.385893434792753 14.70497460716258 -1.354540221883935 14.70654726679664 -1.426167760578414 7.809899482390562 9.019266457404926 7.913083669094901 9.094354918472561 7.979568694352706 9.071961038863567 -4.221796480428573 9.373952065694544 -4.222767347295527 9.327625268824464 -4.419180856427436 9.370285082541937 -3.934943710298049 -1.25356101857082 -4.133569218365498 -1.183902257835565 -3.935510301573979 -1.181855040535059 -2.70128022653402 -11.6845343638699 -2.695019528428729 -11.72635566158073 -2.87537850023207 -11.69661333401928 4.394521696023961 3.544068214256614 4.234063129625008 3.549995596757794 4.233809223339488 3.610844655154478 3.920277081852706 -5.829542967465618 3.745610314293128 -5.824918717927295 3.747740621135654 -5.763390445962426 -15.08193289730779 -2.127484480091077 -15.08174712600192 -2.194663880642126 -15.21567994234236 -2.093469168983182 -13.63763212200348 1.324530205794836 -13.65226306077004 1.264986309848775 -13.75906765819578 1.357217617136769 15.18372560301041 0.7724757892874185 15.16700258194906 0.8311419315602429 15.30402056265537 0.8299138609692803 14.56812892279312 -1.422897280082927 14.56577507920066 -1.351227689867268 14.72082169562897 -1.391490913011143 7.068418925074433 9.578434342099587 7.013736524031568 9.607519450519252 7.179469623167814 9.667466975923748 -7.364757525197375 8.392612165246591 -7.541092374116214 8.38627149974835 -7.551090634919225 8.431932122824478 -6.80895581292955 -1.224375878368809 -7.008873154588597 -1.225819308579833 -7.008732993357302 -1.154112030053068 -6.648014904057874 -10.76811635857427 -6.455180147617425 -10.80577662083795 -6.654962614866951 -10.80987046417361 7.164970312245638 3.222160895919682 7.159683149105591 3.161453824108722 6.98852420928171 3.226079763481782 6.785490369391764 -5.373434654719696 6.790137438730099 -5.434877087880408 6.623480759659401 -5.36789136083812 -13.2976058089756 -3.815142780842342 -13.43935960981416 -3.778435687170322 -13.45202359186805 -3.711998911620124 -10.96686906604616 1.94467411422947 -11.12000741769106 1.981412675809465 -11.09636944262759 2.039137595600077 15.06275997946819 -2.668645552542825 14.91046052759581 -2.678321142270544 15.06793737631414 -2.608660608269839 12.40361165627005 -1.556904795702498 12.22721588274776 -1.520881642628328 12.40210112607122 -1.485221137171874 4.840345670957236 9.60853603043002 4.967718518286758 9.684953934767201 5.026829930804842 9.661844422024412 6.852543361500072 -5.348088665556715 6.676098353423969 -5.344069393433601 6.685731496818778 -5.281342409296973 -7.016356060791461 8.87659206099765 -7.030952370379245 8.831678311500326 -7.216252762861057 8.873910607339996 -6.797942116762056 -1.205225518883762 -6.99772183470219 -1.134966135554738 -6.797879829875326 -1.133539394580807 -5.982158908094954 -10.7224021075948 -5.964037541056369 -10.76442641326876 -6.158289302214984 -10.73158045372358 7.260035233781455 3.293313681469098 7.098018444234611 3.298725556998873 7.089089793444524 3.358288383369784 -13.30462441089112 -3.749966230417013 -13.30302574846472 -3.815261097718026 -13.45740054944495 -3.712077419898429 -10.77779903674448 2.19365707219338 -10.7911936668646 2.134380368863871 -10.9199066942917 2.229507457165477 14.90675467535563 -2.784820925746171 14.89359153948073 -2.731690706021325 15.04594846248285 -2.722592259857834 12.40266215382955 -1.559795130278744 12.2277740111065 -1.59545177405842 12.22626653963685 -1.523771494388957 4.143254436350755 10.06571708920818 4.09927267677607 10.09630450686961 4.282420137726039 10.1563466515096 9.435616869229413 -4.866506000955534 9.432897596798991 -4.929652859282817 9.280708942696998 -4.859794310336661 -10.41859686279176 7.459863426017556 -10.25179364391773 7.422709347808344 -10.42020891973381 7.413522484191933 -9.490237906461044 -1.142814133138992 -9.681312747559218 -1.145501078235451 -9.680553925598048 -1.073817422628422 -8.952747348601889 -9.552780865647687 -9.143699226774411 -9.559866954031682 -9.150067504131693 -9.515774283021198 9.889666374107684 2.972977660817597 9.892497053443954 2.913043476752998 9.721005228011375 2.978145278554719 -10.92559742287164 -4.813734998559012 -11.07973989590846 -4.774826602266801 -11.09042717486179 -4.71006304648407 -8.064645236820358 2.314896475201184 -8.233189940313375 2.353898140789388 -8.213579112900032 2.412094018744413 13.50788389903918 -5.406127834911042 13.33483920755359 -5.424019232187091 13.5106366864216 -5.352041267498962 9.671533443481678 -1.693736407383557 9.478736923676125 -1.660536261293553 9.670806756414503 -1.622048598075757 1.838311067759377 9.839238762325136 1.983104087847525 9.917511424800731 2.031704780734401 9.89160867737553 9.984298747048996 3.020998695965374 9.829383978294503 3.027611934027926 9.813051806426339 3.086498200934479 9.507223336109265 -4.831511165229551 9.338536488004825 -4.826243837404999 9.354812727931474 -4.761952710567603 -9.89557453061461 7.914866438740829 -9.920935499052261 7.868960947622122 -10.08654778620994 7.909277398932868 -9.492816973104848 -1.147144075054858 -9.683132353837953 -1.078146274811977 -9.491998916595653 -1.075447616452952 -8.588155731518745 -9.510129042457836 -8.557796019122565 -9.553843263302154 -8.756356925636574 -9.521201004372195 -10.79673461355488 -4.700693321613525 -10.79935906835351 -4.763601622987849 -10.96486275762137 -4.660596263860441 -7.95613468336475 2.481711099612882 -7.962177967925487 2.421902294323401 -8.110749165694452 2.519442721548662 13.28335660480808 -5.475056319707314 13.26595833296951 -5.428014034773182 13.43918142063929 -5.411224921898035 9.672936778212982 -1.68869370939979 9.480888525231553 -1.727184133651086 9.480140076488508 -1.655494217076865 1.170179326720959 10.2086367601168 1.139006549215127 10.24276056976623 1.329449867722167 10.30144132619703 12.55687298233113 2.453384130173211 12.56516430339168 2.393466521627998 12.40364063221526 2.461614706417594 11.93640254681426 -4.165032350167974 11.92830484999622 -4.230275828608788 11.79576149654928 -4.155551427142922 -13.37682804325184 5.275712809046858 -13.23131050433421 5.242665521231977 -13.3834254096628 5.225929213983872 -12.0727413853216 -1.041409020725488 -12.24641458179391 -1.047103637845104 -12.24483295440978 -0.9754150875068528 -11.10567366236691 -8.039428313101588 -11.27856220826095 -8.053789475132387 -11.29680376153356 -8.006088254912202 -8.187308503221157 -5.455430342685271 -8.348234059464961 -5.415852699562201 -8.352713368965333 -5.353009241600811 -5.069437534956167 2.531607759242481 -5.245289035871961 2.571431937414694 -5.233757382456509 2.63073961695338 11.31536903728453 -7.370396790031424 11.12447098697703 -7.393572481067205 11.30950136415803 -7.321621856498431 6.775102968090309 -1.786046738243033 6.57489184107579 -1.753906767821389 6.775063105397541 -1.714354410783515 -1.35971484671832 9.794750775461388 -1.207690894320136 9.874847435927755 -1.170781496907739 9.844470840769276 -10.85155818018386 -8.044927051654486 -10.81155848673523 -8.091277161583459 -11.00367125140248 -8.061637611206219 12.65883005106361 2.465021228541604 12.51818957215605 2.474507395170636 12.49769888463863 2.533742024169193 12.00385823044273 -4.135164480222293 11.85062002729697 -4.126928048896102 11.870998185767 -4.060788935018123 -12.94155104552028 5.745711360249714 -12.97020607507349 5.695226271978908 -13.11444422999616 5.731579185363423 -12.07782095363199 -1.049407336215401 -12.24991109127492 -0.9834110930476508 -12.07621148553565 -0.9777292366934768 -8.052138060893382 -5.322984618908614 -8.061635622513139 -5.383991422140615 -8.227574240149934 -5.282106015519593 -4.958719612142856 2.71016070344916 -4.95611050906218 2.649149115916692 -5.120072243836345 2.748647244982946 11.02977013404539 -7.368703720926839 11.00278738463938 -7.326842864677343 11.19396785266242 -7.305155638348523 6.773318783743004 -1.792907828197249 6.573133027084795 -1.832455504155151 6.573107856879306 -1.760767086204102 -1.986585910336417 10.04723581590308 -2.005258580735482 10.08646464865088 -1.818918216905576 10.14191074610979 -12.9824368799928 -6.13026542749434 -13.13207387417355 -6.155811866241038 -13.15830846884235 -6.103729753312876 14.79749500018704 1.037575474863038 14.6546796747225 1.111672259915335 14.78925026464151 1.09862060619865 14.12757377989656 -2.984870955529664 14.11807653859754 -3.052513776518345 14.00402620830166 -2.971121098652886 -15.392748608375 0.622345216007364 -15.2601827431418 0.5979448910657257 -15.38999841171203 0.5670984671098608 -14.4588684489278 -0.8390295158392098 -14.30867123185037 -0.9005837405983335 -14.46132517207005 -0.9106927418999509 -5.374207199175368 -5.971311963748499 -5.537306155160665 -5.931902966958463 -5.533922672640889 -5.870498019420938 -1.988530112486937 2.800941416648781 -2.166523748886377 2.840634739882751 -2.163785971806951 2.901642838078809 8.643917851519563 -8.821016866257615 8.831587244531447 -8.749631988710847 8.849748430824649 -8.794339705558432 3.775534105004804 -1.855066509655424 3.573783730859172 -1.822632506277318 3.776182604672942 -1.783379904182509 -4.4923226799024 9.437572616977786 -4.670782757033908 9.391489061721853 -4.518454541149218 9.474070289086502 -14.3024413167885 -0.8233352346474084 -14.30482208302895 -0.8950027496079376 -14.45502069562761 -0.8334506321733186 -12.85472972588699 -6.175066999908178 -12.8098106925636 -6.224758381265309 -12.98629346718917 -6.200865466139687 14.73494332966793 1.028743831863404 14.71629693507362 1.089567604721711 14.85843091705435 1.014664459358783 14.1723083452901 -2.973089852186121 14.03768551094517 -2.960251355937999 14.05783144772774 -2.892068610091184 -15.19932092100185 1.047629495626219 -15.21580165720414 0.9894633255018345 -15.34742777455008 1.016831532506449 -5.197981117640374 -5.809726276629004 -5.215298583282429 -5.869300439143449 -5.375615878652425 -5.76907938226833 -1.917213544852838 2.947798844589214 -1.905712399589655 2.885196999548293 -2.080709377232819 2.98617664801779 8.520876204190078 -8.729982172960378 8.481503486680115 -8.691956648755397 8.687691766703162 -8.667047494731419 3.779257159929721 -1.840790660751815 3.576861791884026 -1.880047587682836 3.577506404881137 -1.808358123663641 -5.217968868846683 9.496922238237728 -5.22598152734065 9.54269679527966 -5.049712554877388 9.593732958602146 -15.25715993617085 -0.7093137958446033 -15.1218745344357 -0.765088899467119 -15.26025847474393 -0.780964328650635 -14.5457590702421 -3.373773767576465 -14.67521912264848 -3.415366427660079 -14.70189853230447 -3.358117846243254 15.00492688086299 -1.943486452059057 14.88502920112298 -1.861237469285582 15.00644741962897 -1.880930354359693 15.19674240769201 -0.7715770911606594 15.30733985482653 -0.7911160391785539 15.30381319855652 -0.8610614001310909 -12.99017871459692 -6.234651253573509 -12.85129754989019 -6.242134299949896 -12.95959706664945 -6.289173031184649 -2.014586834729775 -6.503057366206366 -2.166003827257392 -6.465672102492812 -2.155547347258185 -6.405116295515027 1.796212019854677 3.106563191014459 1.630678838042845 3.144198271721106 1.626316367433371 3.207357373684283 5.796361977965246 -10.00543536587145 5.968990243056901 -9.936157725172993 6.000150709759714 -9.978635926580598 0.1514986527103879 -1.862095212027491 -0.03535474237399749 -1.826921148443765 0.1528658834350749 -1.790412023070404 -8.314737258932498 8.226237266172515 -8.47266850851215 8.18856861165855 -8.334840412261075 8.269653205146332 -13.07489064427592 -6.19457557832093 -12.95162202328517 -6.142618523725045 -12.93611139342808 -6.203149241443309 -15.11859509679825 -0.6931342189566541 -15.1216870276227 -0.7647820226372734 -15.25697229439602 -0.7090067164322275 -14.53336609872923 -3.422271608821417 -14.49051978775418 -3.47570644070986 -14.64687964830532 -3.461476706126069 14.82567338550247 -2.097881847050104 14.8173737537505 -2.034935585596903 14.93601168846332 -2.118307368852685 15.18625866078246 -0.7719796506945544 15.199840950447 -0.7019953478108855 15.30758953989376 -0.7909747564258224 -1.801059893950435 -6.323064514248448 -1.824456373817766 -6.382009587943262 -1.966107878298611 -6.284687423161257 1.822905289219322 3.211133598263874 1.840849532602253 3.146589528990847 1.671102997744626 3.247539069042812 5.653633162096018 -9.872337703629999 5.603161799860567 -9.835990410277086 5.807335604134617 -9.811070689404623 0.1501522542310374 -1.866498598895359 -0.03799787489346174 -1.903021079445384 -0.0367010079183816 -1.831324098296655 -8.888052569374295 8.149396088940296 -8.891956303007284 8.202055652112406 -8.73560339515349 8.243599652374339 -6.734757200207879 -10.13158124426027 -6.786810424791438 -10.0853636447483 -6.630836250612633 -10.07686599618939 -12.90032347595902 -0.7375519869836984 -12.76594756049218 -0.7871777496406589 -12.90354877816133 -0.8091961519397558 -15.04000533744187 -0.04422049426156183 -15.15826294837974 -0.103902757760789 -15.18009653649932 -0.04310511607338362 11.35871067781245 -4.864247016418996 11.47912188366892 -4.890542169573061 11.46497796310752 -4.952840324507377 13.7737197656346 1.887620605516973 13.88537453493573 1.862224531672379 13.89153042877192 1.791595110932155 2.254970883154677 -6.969718485585292 2.123484856448834 -6.935823256259782 2.137671355224413 -6.875088360074381 6.176292604536211 3.220335926862572 6.168644844224049 3.286131117514658 6.319551235286469 3.18664471334399 2.338569341515941 -10.96875920256962 2.48467897294826 -10.90228239941794 2.525754110047421 -10.94533411803951 -4.36374508062362 -1.824014600507707 -4.525448236964102 -1.784163898616591 -4.361628024967446 -1.752329704582327 -12.0773402268204 5.717787667271676 -12.21582724347558 5.693083986530518 -12.09955626588875 5.767557418050034 13.699196658961 1.836197871744953 13.70150222958474 1.906335181932238 13.82002373716389 1.81085255218158 -6.659017248096523 -10.29176504508441 -6.54275154793371 -10.2298238795108 -6.503143052749836 -10.28219924616156 -12.76355487385812 -0.7170562103522096 -12.76686336531682 -0.7887048109075213 -12.90123924015139 -0.7390789801632326 -15.04027039555182 -0.08201633616855049 -15.18036279514886 -0.08099854106763202 -15.07608817524493 -0.02682146148611495 11.16343325267279 -5.110812322807307 11.16962134544968 -5.04778422020852 11.2746950283071 -5.137254227136583 2.479947814789417 -6.78768472392369 2.454683453377362 -6.847097676410452 2.336615807329974 -6.753060556629261 6.546318104919582 3.332962703623065 6.39633679267543 3.433311080656806 6.528130475113284 3.400163524589315 2.158031868041338 -10.79059507243512 2.100486390351387 -10.75390636746618 2.288066920349387 -10.73253000148005 -4.361135472234766 -1.817507720166309 -4.525005787395 -1.849321940656075 -4.522838881563322 -1.777657653559122 -12.42246536425111 5.574860662951603 -12.4311184891748 5.633162187880132 -12.29339096053061 5.660366857367359 10.31173358783231 3.50709248904955 10.17881589043358 3.60625674687827 10.29695217407422 3.576282953728724 -1.315416691197011 -10.79405863836673 -1.374337776385144 -10.75449092636993 -1.201969068289128 -10.73720172662046 -8.481193369883467 -0.8751223845929151 -8.336821967247346 -0.9192253626530433 -8.484012455104642 -0.9467839349403823 -14.29623749013184 3.174026487722697 -14.31160178725745 3.234807344575829 -14.17862669986153 3.249456603355931 6.312768613149061 -6.033170990114492 6.441202120565928 -6.06430763406615 6.41815344580539 -6.124867381581647 7.059204423391727 -6.845404529037356 7.071801472411372 -6.783544217443566 7.174380981158103 -6.875418737800071 10.86864558100718 2.557520800342852 10.86488997675479 2.626164294471276 10.99470294054498 2.528049588216512 -2.067904797447985 -11.34575704088415 -1.944399097054143 -11.28176731101638 -1.89956631691054 -11.32815146224457 -9.252018368845103 -1.631406599386494 -9.254912747886399 -1.703054987305118 -9.395906475482695 -1.657944437544572 -14.4220460078759 2.344050150627878 -14.55481375449636 2.333781744114034 -14.4517769179506 2.397886861496136 6.091306337619217 -6.23692650976307 6.104642226818945 -6.175365311416068 6.209104584785072 -6.267712608749928 10.04282464961628 3.491584414518825 10.03800841644141 3.559758750590508 10.17168528753373 3.461228039013754 -1.161335543843414 -10.98767214523509 -1.034080322934476 -10.923288414836 -0.9892597495409061 -10.9686628522587 -8.348341047491088 -0.8770647973560771 -8.351571782623044 -0.9488765447003323 -8.495941761685025 -0.9047706828842368 -14.11620357020578 3.305071567235766 -14.24939016562188 3.291664004809009 -14.14504819138272 3.35829672682938 7.295198867324528 -6.630406365574164 7.420801329581828 -6.660681882982992 7.398814955555755 -6.721558199560822 11.12722622557944 2.565077100319093 10.99819483546227 2.66382775340968 11.11372318529046 2.634662239243968 -2.215362712886396 -11.18898920189834 -2.273803416850611 -11.14845037543133 -2.105199998459768 -11.13249064539562 -9.400683733517589 -1.667103217278151 -9.259690412177539 -1.712214552814792 -9.403677260691087 -1.738753439439918 -14.46394955626414 2.334853141709241 -14.57968553762004 2.262552572961713 -14.59658506697729 2.323576660065004 1.664909050401073 -6.00287967448304 1.639810231743594 -6.062124915849631 1.518241520028672 -5.967574587586071 5.680749861989676 4.153278402492804 5.699075827912392 4.086538148343667 5.545804644659049 4.187029601467367 2.808683367924022 -10.21255111475623 2.752195448522044 -10.17611809853025 2.942762782744754 -10.15392209196817 -3.492640684670395 -1.074779166979151 -3.660239649909997 -1.107473712169657 -3.657906653401866 -1.035640446571466 -11.88719037842142 6.390256998960516 -11.89541003141921 6.447754763479655 -11.75558830247717 6.477812762338425 12.23970291299248 -5.252266091517727 12.24282244601419 -5.189028021922632 12.34638557172039 -5.277401643836491 14.32855323949037 0.5444034476031647 14.33388255372585 0.6146697311122106 14.44531795795558 0.5204663205295975 -7.980199888351235 -10.11020522779608 -7.868073156196106 -10.04971666947909 -7.831929224133348 -10.10401673704069 -13.57690584280221 -1.510820735296349 -13.58031336687795 -1.582459512425287 -13.71032858905868 -1.531463769870081 -15.04642135590798 -1.316902416474452 -15.1878365627712 -1.312660695730625 -15.08532463342212 -1.262459068704902 -11.4759982641116 6.572011793410874 -11.6168172755977 6.544988057900756 -11.49738923334903 6.620698187983049 1.45140852786679 -6.181979751141961 1.316770463478165 -6.147477783180293 1.330551672587845 -6.086866345556572 5.525600011172712 3.971522314587363 5.378597415444673 4.006010372832305 5.371647709543538 4.071367372098957 2.968228157289516 -10.4058531221681 3.118770321804135 -10.33931686132888 3.158423717625352 -10.3817644338619 -3.472173205788623 -1.021564694130258 -3.637441362597286 -0.9824316918726268 -3.470119640786549 -0.9498997117940674 12.53023645191604 -5.084142610880516 12.42535699351473 -4.996734953078781 12.54189966260554 -5.02159830274504 14.39810257368164 0.5799431559813545 14.50517670957938 0.5558597482654902 14.50871283840981 0.4851398521851166 -8.013999791690987 -10.01844589470611 -8.062800112241703 -9.970256554226488 -7.914485185262691 -9.964763520878357 -13.71087837139632 -1.532328790528421 -13.58086316046755 -1.583324550836557 -13.71426209255166 -1.603981776548217 -15.05037840738909 -1.226578990515357 -15.16681030518107 -1.281835479256376 -15.19177177565791 -1.2219084160444 -8.470635071338313 8.644904192249507 -8.4759865869722 8.696244322386692 -8.319100610767672 8.73832069133981 -2.243567775053115 -5.534437018777564 -2.265612748196491 -5.59351774178789 -2.407280185898068 -5.496019744451218 1.423017545236261 3.996610332534203 1.439128645182978 3.93226132612275 1.272451799671924 4.033070483120869 6.056441916562583 -9.245974554115962 6.008094240639307 -9.2095285003263 6.208852809025908 -9.185260745575722 0.7209137041357927 -1.052779723797565 0.5345741419856875 -1.088858802466984 0.5358504636167444 -1.01718264642783 15.13340875538687 -2.055935007560684 15.12286934474708 -1.99326738068815 15.24485440192698 -2.075077148352889 15.14364034921273 -2.006947537996704 15.15885183476341 -1.937191908242164 15.26524688620531 -2.024711924237654 -13.98718542760739 -5.20840903344175 -13.86223355265702 -5.159751625865233 -13.85305440939914 -5.22093847933876 -15.19521549496234 -1.524609962244749 -15.19832625412269 -1.596270603183512 -15.33343446079239 -1.539369530202913 -14.25334663286684 -4.434348362253204 -14.20870979211273 -4.486729888709538 -14.36811022770849 -4.470469855010923 0.6717876511060339 -1.210241033241309 0.4867304553226759 -1.174624513960274 0.6735330642507476 -1.137987546591831 -7.870121931303062 8.73528334268237 -8.028669490989495 8.697256081430792 -7.891460751344259 8.77732786333994 -2.431790925661322 -5.701972905379759 -2.582006237078138 -5.664628946943076 -2.572853748577511 -5.603933900151874 1.3207502921861 3.829641580458917 1.156729268659698 3.867226762583225 1.15368059518012 3.930047495072411 6.186704679573904 -9.400783869411178 6.358339432172872 -9.333261558329864 6.387114112661168 -9.37479155409129 15.27570717202477 -1.945184662738022 15.15263594605823 -1.864387888536923 15.27401287760544 -1.882781561923195 15.14069067588906 -2.007565626224175 15.25235058852127 -2.025918782392416 15.24645489701924 -2.095557541616274 -13.89084970786029 -5.359687197478832 -13.75650550368552 -5.370712956410681 -13.86627156168164 -5.415556421484648 -15.33351657482098 -1.539429627282991 -15.19840866140417 -1.596331131169983 -15.33656569668673 -1.611076742562799 -14.28798423533527 -4.346857445713898 -14.4187579133071 -4.385031019497837 -14.44708662125225 -4.328881478679093 4.06716540719898 -1.185981328109016 3.868482075767634 -1.225512234170905 3.869251462265488 -1.153248236953836 -4.888211006974514 9.882382813561552 -4.898432150802738 9.926934781065773 -4.723281330374546 9.97759662542976 -5.52047463344559 -5.022925867041916 -5.536327267936244 -5.082760712744136 -5.694496098422492 -4.982558361088136 -2.198297000100457 3.709198997411894 -2.188541427903398 3.646802682913805 -2.358294975241326 3.747327736722881 8.821063622737404 -8.081068075667204 8.784409520340009 -8.043575398071795 8.984361385125315 -8.018889786579749 14.50328753911145 0.6198714515705496 14.48379981290011 0.6803768562943656 14.62913832682236 0.6065470026754626 13.91378675787656 -3.914028269540955 13.77657450752753 -3.901922352934037 13.79706136945947 -3.83401556996461 -15.05188590832647 1.648192432218593 -15.07145081059646 1.591110733002987 -15.20388890121259 1.620255215971475 -14.05456930404416 -1.737151735978362 -14.20793252154091 -1.674906213234118 -14.0522841221067 -1.66548702378833 -12.59906707432638 -6.847253726117345 -12.55453595350723 -6.896469800282259 -12.73363713770755 -6.871573667032815 8.961147970339669 -8.208885376303655 9.144588694193473 -8.137002183023883 9.160705660750132 -8.182299048462921 4.110749473134306 -1.023114863124318 3.912830110979244 -0.9904020482335455 4.111315907697413 -0.9514279860394631 -4.135678877851921 9.832357946580549 -4.313095418995537 9.786835669990019 -4.163550975226692 9.8676486638513 -5.688966563965556 -5.18195939005831 -5.848570381780682 -5.142821701154065 -5.84655112813323 -5.081188966712225 -2.320973174555494 3.517651151840107 -2.495354982347812 3.557019847334828 -2.491139280843386 3.617743617189456 14.56362394861421 0.6048563275228138 14.41769415905964 0.6779608416638659 14.55488592818863 0.6656911428215733 13.86099265336756 -3.930069096200835 13.85139004525763 -3.997399602647113 13.73509923301644 -3.916996254970738 -15.28854170594447 1.170204696329194 -15.1550692296586 1.144143514501218 -15.28831152002339 1.115665407106844 -14.05277218581297 -1.734523830673545 -14.2084088069347 -1.743942643476776 -14.2061360192512 -1.672279247086287 -12.74803913342135 -6.767554554422609 -12.90118928352313 -6.791348088152562 -12.92646166011155 -6.739806194378869 11.36690190646553 -6.647527372246057 11.34144570473119 -6.604965270711 11.53040684884705 -6.583774012560459 7.200505955828413 -0.9561201650644831 7.00083248135697 -0.9956291300117207 7.00071058884438 -0.9239409321923124 -1.48376548765514 10.41695309290832 -1.504011298276328 10.45532660564309 -1.316359851679797 10.51125927448329 -8.458278291165097 -4.502450701648305 -8.466784136497342 -4.563739723461231 -8.633311313184528 -4.461581020673512 -5.396144750553114 3.431986664955927 -5.394796595711615 3.371181651578052 -5.557079283541865 3.47044449800649 12.30228252097801 1.853547167638241 12.15929059488958 1.862508253046925 12.13908107718586 1.921629941830395 11.67023320637652 -5.003696625825226 11.51444395905367 -4.995988122235938 11.53443058290623 -4.930084753450449 -12.52143663078368 5.848099787347497 -12.55033458989957 5.798523837649225 -12.6973144625812 5.835657809152892 -11.71952687381128 -1.875594575882811 -11.89451678575479 -1.809075920531037 -11.71807569661854 -1.803917970014758 -10.55748009038494 -8.648509015496126 -10.51872443196023 -8.694577588606746 -10.712234833642 -8.664198102426601 -5.494480884714587 3.270060272424678 -5.669810831391525 3.309871727709525 -5.657082681780952 3.368999419505344 11.64054566850829 -6.665546296495399 11.45184500349444 -6.688128302873198 11.63628949028472 -6.616148932217691 7.200773576465188 -0.9550911522696632 7.000978179440799 -0.9229120348217619 7.200661719200683 -0.8834019212933418 -0.8557032800262521 10.18544707034978 -0.7038769885142304 10.26522472303308 -0.6654328843450219 10.23560638817811 -8.585650432987862 -4.632918670687328 -8.746147254760503 -4.593345034377506 -8.751657674730073 -4.53023762838618 12.20098273480808 1.828676920348126 12.20881383689702 1.76879176762304 12.04525236393834 1.836337757097865 11.60436469461252 -5.027910017287828 11.59688794168835 -5.092868710359014 11.46137496749322 -5.01892724370697 -12.97791497108754 5.346344886082515 -12.82965266395783 5.312512659637982 -12.98453843034841 5.297244266613708 -11.72442179487352 -1.883353288694198 -11.90088738895885 -1.888515046128052 -11.89941035243757 -1.816832428474763 -10.81498723580677 -8.613250355299023 -10.99077027464823 -8.626290330607958 -11.00751561178837 -8.57922805217251 -8.363370177573202 3.209764761182695 -8.370518692955651 3.150059513646359 -8.516294869167938 3.24731803677458 13.54984369799262 -4.673283195787599 13.53357639757153 -4.625454875229106 13.70379800090644 -4.609601351086891 10.07042243125469 -0.8539061542767 9.880345559514062 -0.8920967104598228 9.879525033618439 -0.820410331446248 1.62510891954094 10.52198621117121 1.592158870104572 10.55545236423388 1.782215518531985 10.61436410476008 -11.1383843700576 -3.862503535124068 -11.14009275490697 -3.925745369285175 -11.30644976216742 -3.82245429486432 9.610698755017879 2.324128626611853 9.454314006308366 2.330460342617318 9.438822933347161 2.389415212654336 9.138189625836027 -5.667971408323222 8.967920267342286 -5.662998617348173 8.983367912163319 -5.598916235509707 -9.474567731779072 7.714074474025448 -9.498796101957419 7.668525057284711 -9.667458621774603 7.709169115461408 -9.12225308190161 -1.985088050414322 -9.314545110333521 -1.915803486623646 -9.1215549819467 -1.913398119617542 -8.252482998522213 -10.05290980644982 -8.223840858571558 -10.09627688123912 -8.42244222018326 -10.06348162384995 -11.31534736621555 -3.995255402590071 -11.46775127464653 -3.956414046289486 -11.48071270841528 -3.890983548506818 -8.482272016717845 3.03624833154522 -8.649085052330486 3.075014986184076 -8.6284556788702 3.133127620812227 13.76422730937204 -4.623939959236497 13.59416614473529 -4.640825448444363 13.76784949605838 -4.569069750105899 10.06827309870125 -0.8615138757246704 9.877375987311938 -0.8280170433511696 10.06741505966949 -0.7898225502878942 2.271091111122606 10.19415728256979 2.415547241900588 10.27270678874986 2.464042862563142 10.24692458560141 9.516144212168694 2.267401103193738 9.517880949694792 2.20739729690558 9.345768114827873 2.272296326341851 9.081467940191283 -5.680520818604156 9.079743160518373 -5.74337669194364 8.925089831557182 -5.674088414348618 -9.999645313485154 7.231183005294846 -9.829826442748519 7.193636744127632 -9.999868683763399 7.185118553115247 -9.114182815227821 -1.97148860377096 -9.307150193477899 -1.97389654884978 -9.306476851172564 -1.902207488063143 -8.630990068009346 -10.06176448221344 -8.823835164775778 -10.06812178340205 -8.828329729776671 -10.02455321979924 -13.67913772765909 -2.830732235713698 -13.67620375353141 -2.896912202496391 -13.82756469838497 -2.79322083223679 -11.22018086992831 2.856925971685839 -11.2342283920958 2.797610524902253 -11.35813618163683 2.89236313765833 15.03100622608839 -1.874348120142226 15.01792263639419 -1.820376597597022 15.16755491902891 -1.812614555517476 12.75540716373067 -0.722061087033223 12.58348775044281 -0.7571908692744412 12.58183996094098 -0.6855080856889833 4.593107677932338 10.30936002238464 4.549295242453063 10.33989272295918 4.728905366402535 10.39947039205032 6.86437988100155 2.576715238344686 6.701963726339264 2.582108810617294 6.694257525682739 2.641821229414982 6.464443656817044 -6.155975670679551 6.287609383275505 -6.151972402283105 6.296153931751871 -6.089462240014575 -6.624329938761893 8.533852976676048 -6.637024964110001 8.488883771763653 -6.824617810505893 8.531261956100318 -6.412913257535382 -2.028994667122009 -6.613237327159497 -1.958716974691471 -6.412932323392018 -1.957303651022975 -5.564796265154871 -11.20928993583405 -5.548481739430882 -11.2510751859131 -5.741322112603968 -11.21855896244657 5.285980257911756 9.885425521455808 5.408525380227643 9.961235953025645 5.46892365966894 9.938355950589768 -13.68861087468348 -2.895965864588496 -13.82611810332989 -2.859466867849621 -13.83985812534827 -2.792171878820953 -11.34394159639785 2.682014419338178 -11.49446421434188 2.718463431486958 -11.46837421416415 2.77634044904586 15.17886102922789 -1.780273744198264 15.02927206240236 -1.788536319257916 15.18364533126544 -1.719419776198815 12.75616741611904 -0.7198058476779921 12.5826000790097 -0.6832532410347322 12.75455664469998 -0.6481341883792637 6.770193910642797 2.501024411470213 6.763677408283213 2.440163708222017 6.593344899047678 2.504928768543371 6.385529568956861 -6.193711685260926 6.391231729310915 -6.254972883322657 6.223120918041034 -6.188180049412851 -6.974196216236797 8.011890177976609 -7.150925354044279 8.005642783670245 -7.162813575669994 8.051353932162774 -6.422055038869972 -2.044896213624786 -6.622361966138952 -2.046306678514491 -6.622377027394011 -1.974614850260854 -6.253650066278304 -11.22056751519366 -6.062263918488467 -11.25802529588886 -6.262508268761745 -11.26215229661669 7.513916830360159 9.72123158712567 7.458013714381293 9.750335238784267 7.620806111622718 9.81007834498349 -15.21964334306914 -1.09160733074058 -15.21919948515193 -1.15976394569319 -15.35085128702435 -1.057959199088146 -13.87362288763363 1.984717882657217 -13.89034023929204 1.924734211091876 -13.99402307564132 2.017171873273404 15.04117433231818 1.748074132194734 15.02322458630363 1.807386718592298 15.15896140115512 1.804507780168513 14.77524643293838 -0.5853351005877594 14.772800797184 -0.5136780632559065 14.92571529340754 -0.5547072117568329 3.957606332108966 2.83533138147553 3.798161777436263 2.841460443145659 3.799120541649846 2.902532003201392 3.460215097748287 -6.648919328840286 3.286584870039757 -6.644062066923818 3.287729873234553 -6.582643465810596 -3.819952452174871 8.967394774177265 -3.818940041003984 8.920743558057652 -4.016616734605686 8.963394518664789 -3.489630955023968 -2.067264227870786 -3.687017207569616 -1.997859193192548 -3.490353126799364 -1.995574649607955 -2.125700125496511 -12.08008876906986 -2.120851924270657 -12.12208052308349 -2.298630670592987 -12.09306581863448 14.7737117026577 -0.5115215291784254 14.92425910433497 -0.4808877431247166 14.92662648540108 -0.552550016839421 8.235012263289915 9.201105114714387 8.334588440880115 9.276270458577551 8.401724041571454 9.253736194734419 -15.3809503155502 -0.9698529961301408 -15.25040872914482 -1.072538664922959 -15.37052569047138 -1.039441569411177 -13.95736534591686 1.833092083563621 -14.08868650215465 1.866233477321516 -14.06161493235339 1.92513442828187 15.16507765433981 1.84401817109066 15.02934734144551 1.847080945772513 15.16293327162573 1.909577711965771 3.871236082310781 2.768665029093724 3.85630959598321 2.706453044020234 3.697623056409553 2.77335984828569 3.349704516748484 -6.715464184840033 3.362529299714675 -6.775760291148055 3.190273839510919 -6.709115650438946 -4.155033858878427 8.448921081676424 -4.328533583974478 8.441735854343834 -4.353642099815962 8.488804072474393 -3.485637398004029 -2.060304498802561 -3.682345850184142 -2.062595680507013 -3.683024476784764 -1.990900918298791 -2.912226226946173 -12.14534104418116 -2.735951280373921 -12.17956591608216 -2.93237727880698 -12.18751169687754 15.32642256920814 -0.4529784236961152 15.32336384663095 -0.381332349075401 15.46089721245567 -0.4278352766187118 10.66207884899531 8.359119199736881 10.60098055921635 8.390534083262866 10.74026162154941 8.448735495364145 -14.81614436279424 1.417786763070192 -14.823481310544 1.347954763228634 -14.93323669119492 1.446257300034038 -15.44149158927127 -0.07843705736199619 -15.45376981890738 -0.1403205013379318 -15.54832766366031 -0.04975319962293469 13.04342002502042 5.471336640111971 12.93646028603084 5.424291167461346 12.90739958342876 5.485758799795015 0.716734852179709 3.183894949414568 0.5684321441059681 3.19238717322917 0.5772339097696888 3.255317826162595 -0.1556113242363211 -7.155411565930625 -0.3170690253238262 -7.147820651525132 -0.3217991399659581 -7.08679968057369 -0.8716758939431559 9.222402129449115 -0.8576590624700666 9.172562641007175 -1.054376218940464 9.213865326005751 -0.08948956196540125 -2.042294078972125 -0.2740167402925264 -1.975560034632549 -0.09089188420519756 -1.970605816580733 2.781256619513769 -12.20010871020101 2.780613237752307 -12.24515755909033 2.620953700489571 -12.22518160989242 13.13016875913633 5.521573135898037 12.99431564021332 5.536940318496004 13.11620829705866 5.588207545858619 15.32281262371217 -0.3823081009483379 15.4572287773026 -0.3571546060051217 15.46034616490789 -0.4288107075184278 11.40040280313041 7.647811427896074 11.47611460908563 7.723626467739777 11.54452980099268 7.698185007554085 -14.85170577152109 1.596419089464066 -14.74308939734469 1.497336740041453 -14.85009827648429 1.525619159912114 -15.55812841004475 -0.1593977067057546 -15.46260912208212 -0.249338483483126 -15.57951611159096 -0.2204386992599556 0.6905313929261625 3.194079257510125 0.6669604822531472 3.130055013808108 0.5273520439309054 3.20134779086433 -0.2760451676851355 -7.207237208447981 -0.2583847701539371 -7.267351366760307 -0.4243102481488764 -7.198347684540153 -1.185949144975148 8.737591677157642 -1.347094718530441 8.726640169936541 -1.383515371215881 8.776305223823076 -0.08628757273866805 -2.0368449279987 -0.2692022409131012 -2.041782536874973 -0.2708153170317462 -1.970111852134346 2.104603819983416 -12.3555746399003 2.263368095380636 -12.37956326639033 2.08230281117703 -12.40167038066848 9.32386341854952 8.060760162181634 9.213393011722527 8.025333388192625 9.173726796444461 8.085225447582499 12.7899050949888 -0.4858003816846102 12.78665253242415 -0.4141479984494593 12.9221740432598 -0.4665980185557766 14.06694860356962 5.079879634166077 14.18890743457071 5.132551667297761 14.12335059514188 5.040190888040765 -11.63926400797328 3.650124832804263 -11.65672370358244 3.580658438034242 -11.7551336973387 3.672266359464239 -14.040961428408 -3.377372004499843 -14.04116932659438 -3.440689114165275 -14.14658836200364 -3.353706454584627 -3.216169742629988 3.668627800080283 -3.3470595416947 3.680993521193265 -3.331949865724662 3.746580430014112 -4.722760749898429 -7.388507798890246 -4.866157188968598 -7.376439344943446 -4.872637093404352 -7.314951635262013 2.441276897947144 9.256388152744684 2.464733173086069 9.202101817825563 2.27956816312952 9.240210616354544 4.099497544879366 -1.954398815108549 3.934707466174498 -1.891859439378896 4.097124746122517 -1.882741204964311 10.28679665333218 -9.55111078985407 10.29915308041363 -9.599464738469202 10.15833528027843 -9.600033511569006 -14.0313523227092 -3.403712108547272 -13.92487940393833 -3.489896731787537 -14.04042334903859 -3.466542244982329 9.501306724047314 8.245615096325874 9.525237369861188 8.182033322622552 9.375538847682615 8.20810706816202 12.78717640985949 -0.4133075106291555 12.91941349600125 -0.3941083830843282 12.92269794106268 -0.4657574981681045 14.61143798405062 4.032658570032269 14.6779568813945 4.110507649492734 14.7387808575135 4.076745966450638 -11.48897290523528 3.739193253582524 -11.59505371846435 3.76156720255288 -11.58645548537 3.831412768158509 -3.380388628368072 3.567464747418849 -3.406076138657888 3.501446721888508 -3.522365915904623 3.578928451648824 -4.998245329300623 -7.510543101540707 -4.979964728764355 -7.572001250257447 -5.129014831207162 -7.497413351163496 2.149604211795809 8.835494032108198 2.007084013457891 8.818153680452083 1.963670867818541 8.871212808150418 4.094262821413906 -1.96292694577729 3.931665525536867 -1.972058371449767 3.929473477427657 -1.900386371997663 10.17829312647092 -9.599948352422073 10.31910956347468 -9.599199299688607 10.17280112872961 -9.655420190083264 -9.316254472666486 -5.826996924206522 -9.303863301060044 -5.889475149735193 -9.433707180697631 -5.80933284990105 5.219623450817705 9.271351503613806 5.093723253759006 9.246834998724584 5.049052572595961 9.303068030101867 7.951559087364776 -0.6412194389881604 7.948777815341384 -0.5695571443647469 8.09707311484344 -0.6278226057603324 15.35532066057611 -2.511140629279202 15.48218857265067 -2.479001703325898 15.38463234973965 -2.564970037713789 -6.966465094775876 4.581442424054657 -6.99050492619986 4.513866426770374 -7.094633884341501 4.597278060518924 -7.521451032176511 3.61066541576182 -7.635989640963516 3.628250566156945 -7.621197049279221 3.69630427333927 -10.3088504494802 -6.555562620562625 -10.18258930748457 -6.636844638860417 -10.30749043520318 -6.618671772527335 6.233712437734143 8.765770130190903 6.260513104295848 8.706296548122296 6.094369139830206 8.738955245922327 8.92706038664681 -1.760091042702666 9.069393317287368 -1.745678052257445 9.072323760267077 -1.817333720387403 15.54416015800116 -1.990399084550134 15.62904909723136 -1.915963200604998 15.67174406748427 -1.960322227869128 -6.831802715722461 4.640728535202147 -6.949533199087423 4.657208571482958 -6.935394278696251 4.724553239287008 -9.248896727417073 -5.740835104840788 -9.118240815041684 -5.820156485058486 -9.246154449519535 -5.80328029413092 5.473604965021468 9.563889420974039 5.500411311278914 9.505396325850203 5.330494512391879 9.539215823102895 7.950652257154573 -0.5665908250678693 8.096150953942924 -0.55319775817413 8.09894775855579 -0.6248559684586534 15.1925319715638 -3.24759828445453 15.22952910220041 -3.29400364160618 15.10017600109296 -3.319279254873929 -7.891072055714634 3.352935866461872 -7.91519742493267 3.28520456318393 -8.016371012592039 3.36980073736547 -10.17500072316481 -6.570157493960294 -10.16290009309585 -6.632656708079453 -10.28925578316296 -6.55146566332026 5.986657426487017 8.446556385335573 5.86413100785422 8.420215038804495 5.819883106826831 8.47716229727919 8.929776208138149 -1.832160737986664 8.926791529790229 -1.760514515210639 9.072054877428942 -1.81775723369749 15.66701376799944 -0.9783002777776192 15.79123625943135 -0.9405057848538351 15.70346864538021 -1.029823427723467 -2.500719695981619 4.524530029441979 -2.525549445241953 4.459127513282915 -2.647642639313123 4.535068605183699 -3.942146411050595 -6.372980874360702 -3.923832572463375 -6.433779698820954 -4.076910955167456 -6.360771495474762 1.483904184527199 9.561395124151474 1.337785115612684 9.545407266760183 1.295200518390034 9.597789414202421 3.242483397986038 -0.7579559943692092 3.075968938795046 -0.7662279051947981 3.073933304126496 -0.6945538136319028 8.512417092495033 -10.32298658489478 8.656098880124437 -10.32843392218386 8.501133126462786 -10.3770395928027 -12.31062969116331 2.334741279894416 -12.41689114865545 2.358221775631326 -12.40896750067222 2.428285060972218 -14.63816060915118 -3.821195179458037 -14.53399144552333 -3.908335185089237 -14.64863904940625 -3.883875467538479 10.26236423114046 7.249296450689785 10.28489374037232 7.18494974073067 10.13842943789895 7.209296925869164 13.52355896499183 -1.613716376376942 13.6550723100157 -1.593432064768807 13.65844209470788 -1.665067718158606 14.09991308392805 4.639490861823022 14.16599736601803 4.717026136492397 14.22915355038108 4.685266630352737 8.788488237088608 -10.12798354720368 8.796052426932297 -10.17689648932067 8.652306382496375 -10.17262519852349 -2.371567143150093 4.596700363725082 -2.50642734926275 4.608237572051789 -2.493275855896436 4.673022432840953 -3.78430044007796 -6.313732194052271 -3.931145281618049 -6.302595333248764 -3.937799912987282 -6.241273192978645 1.782809933308843 9.953007340646517 1.804905009737884 9.899599284133563 1.616993544966533 9.938447446195459 3.241532559973215 -0.7595219686982793 3.072982608619848 -0.6961195535170441 3.239480465872795 -0.6878514820594498 -12.42530916149478 2.265179665518415 -12.44105980679314 2.19549507720607 -12.54021032369249 2.288506443755372 -14.62358486451729 -3.77115335474277 -14.62627040961729 -3.83434831924801 -14.72939450703828 -3.746442437418204 10.1023471662799 7.040222923220669 9.993554517886814 7.00270132489752 9.95549217949794 7.063067370997599 13.52458410251526 -1.689266327031849 13.52115506067016 -1.617627667156174 13.65603815690644 -1.668979063359222 13.45461774792339 5.697184490404029 13.5783770586753 5.75153144860526 13.51294296292588 5.659525030692673 1.014690950843121 -12.11663124004425 1.17537518814207 -12.14350651064685 0.9907205511797523 -12.16215385674492 1.264075662050836 4.189519476131035 1.243388873257321 4.125964111825926 1.099817803985207 4.196189504428813 0.4673769886640489 -6.020335381620615 0.4844744476427143 -6.080392915198992 0.3166021828830345 -6.012037540659113 -1.761759282282831 9.43015781718068 -1.925728678680547 9.420099661138508 -1.960327547221517 9.469229370014885 -0.7688898965897573 -0.8230996335946782 -0.9549642682426174 -0.8274392837222506 -0.956250766282728 -0.7557577628853899 -15.19330405131315 0.05414267666623342 -15.08107427147584 -0.04583516753619212 -15.18980416421651 -0.0165813374473745 -15.38320571842679 -0.7923613784146872 -15.5019255284498 -0.7626306160302011 -15.47895006537258 -0.7020385691561549 13.68650503500174 4.299702224244425 13.55183587419863 4.312891019934559 13.67473921022667 4.36644752903264 15.45824821487032 -1.620570965753599 15.59464333798052 -1.594387962670079 15.59778762616587 -1.666034706694511 10.79189359370333 7.666814231405859 10.87122864400065 7.742473895766769 10.93987742447064 7.717835743724457 -0.7703004781157707 -0.8255210326760056 -0.9576610888682857 -0.7581787161325122 -0.7715732426255029 -0.7538313547661745 1.778286364410675 -11.90983560336739 1.77804551703557 -11.95403053058855 1.616207682952542 -11.93184872174972 1.365256330563085 4.257472221684335 1.214451253263434 4.265422351228076 1.221941527199604 4.328020805182042 0.5826742952321196 -5.962450017197482 0.4184446197114011 -5.955500000858146 0.4145570142747557 -5.894468312519247 -1.444124018428738 9.875071867116349 -1.432332061488176 9.825878705512288 -1.630036020735471 9.867574516725208 -15.13510898130446 -0.1277036663153544 -15.14062346132247 -0.197368529510042 -15.25401163859221 -0.09820285460529746 -15.34404912632395 -0.622495503643787 -15.35779210162691 -0.6839336990528583 -15.45270346636389 -0.5930684675220791 13.62122321793794 4.218213113484372 13.51332372741659 4.169209210486512 13.48643252066339 4.230609793324678 15.46110504780544 -1.692543462570089 15.45806501082362 -1.620894189637015 15.59760459557591 -1.666357601115251 10.05404981183326 8.378305574643399 9.993399696873748 8.408938045726183 10.13677166563572 8.467544628186102 -4.063059155156619 -0.8353382126857687 -4.261211129912291 -0.8373339753968095 -4.261764153119739 -0.7656386259025787 -3.624446300062396 -11.61153590791261 -3.444921050296364 -11.64661732670519 -3.64290359458888 -11.65327802917651 4.441627694957621 3.865253383168413 4.428151159980009 3.803278440298052 4.266677110372116 3.869693067444076 3.951991687691889 -5.499356229291178 3.963641345931631 -5.559773393117843 3.791340875873948 -5.493283642945681 -4.674848168727623 9.109147391339302 -4.849722149830364 9.102304693643468 -4.872440629189781 9.14906593688756 -15.24272907547402 -2.445600044142842 -15.10806528768003 -2.548614522745822 -15.23120451688002 -2.514808568212807 -13.55021063714692 0.9654728555716822 -13.68495011639433 0.9993002837953395 -13.65765443307141 1.057870411709243 15.34307555176697 0.5470788279153219 15.20563682778075 0.5478966789233634 15.34261026321523 0.6120203932839424 14.63172319940607 -1.807786190902387 14.4751871433517 -1.767668727123996 14.62942616252619 -1.736119794967284 7.672497759405001 8.912051791552361 7.776636352312886 8.987325316822584 7.842855491527995 8.964939803713735 -4.350251040182328 9.565284962967189 -4.351686406488788 9.519179403921218 -4.548369361415071 9.561786976237627 -4.061759511312889 -0.8330609254268785 -4.260464782402377 -0.7633618205088316 -4.062317450691976 -0.7613697078542134 -2.85712913743405 -11.49667385902394 -2.850489882871745 -11.53845650666469 -3.031519617077479 -11.50853971924043 4.518983317144437 3.916321147022446 4.358320612901633 3.92219580262794 4.357690149972163 3.983007222366772 4.039896511612485 -5.45444610526401 3.864903750589893 -5.449852076060785 3.867416205982026 -5.388245530184067 -15.06231066508583 -2.55915116799835 -15.0610756758975 -2.626864915420742 -15.19678432401783 -2.524702503740438 -13.44802876986035 1.137943687362982 -13.46467638624907 1.078157764219027 -13.57149530763278 1.171002601461354 15.22106312277357 0.4087908255897527 15.20453482142578 0.4672828092326593 15.3419740123088 0.4665150475427812 14.63140542723944 -1.80856336333294 14.47713890354123 -1.84010823406923 14.47486945548052 -1.768445696007263 6.950262782480033 9.471133391549175 6.89590785918227 9.500232862250732 7.062444701174898 9.56018068449082 -7.487394148298494 8.573694770096324 -7.663641339526092 8.567316253236985 -7.673160485047404 8.612823631910413 -6.915688696808561 -0.8039597986707788 -7.115474872245784 -0.8054259993671988 -7.115343671823422 -0.7337335125323977 -6.763434381684665 -10.56306221158506 -6.570229433382108 -10.6007149141518 -6.769909414946731 -10.60486080504658 7.279480984661992 3.597118155378024 7.274552072569445 3.5364284491978 7.103164125274994 3.601050046442265 6.887176528697962 -4.99912379211539 6.891461263893964 -5.060669803933004 6.725229310738888 -4.993549452926467 -13.31176386080408 -4.229857291475468 -13.45240909265846 -4.192865096968319 -13.46609882765458 -4.126006151954485 -10.83768232269496 1.66025454855169 -10.99153342130112 1.697217782699805 -10.96617884397112 1.755080016503789 15.05513414312248 -2.929458500129131 14.90307206307761 -2.939457938394155 15.05979524212977 -2.869651091769685 12.3030653004424 -1.969860042021035 12.12591299340717 -1.933973904364396 12.30161950399677 -1.898184292516542 4.723870251785264 9.449370326847333 4.852389123705911 9.525825311495995 4.911154425809104 9.502629712394876 6.975051470990898 -4.942803120829991 6.798692676394218 -4.938761747194716 6.808609952567694 -4.876004934764689 -7.126225316815738 9.058697131945015 -7.141298119213927 9.013805050529358 -7.325989980772993 9.055964245359856 -6.915260094854291 -0.8032137653438117 -7.114915169106806 -0.7329876538033533 -6.915174196420701 -0.731534154526603 -6.103271939598473 -10.49792485793571 -6.084663238990822 -10.53994582455564 -6.27927514707795 -10.50708158800265 7.362923206179658 3.650629986308441 7.200968422508658 3.65606659817725 7.191724514458215 3.715561292281329 -13.2030024352036 -4.164854434851944 -13.20153800437188 -4.229958686246682 -13.35674489267645 -4.126914834292836 -10.72570024469355 1.826637398278902 -10.73875068089943 1.767335768490501 -10.86680474638441 1.862530914501934 14.90143676085357 -3.047577023467554 14.88873976375032 -2.993960090809757 15.04085156516503 -2.984440143430873 12.32127594212159 -1.914098058540295 12.14701072847506 -1.949873121586343 12.14412101543217 -1.878219924701581 4.0291844670488 9.923808407340633 3.985430680084988 9.954490974167777 4.169405307455116 10.01446542940076 9.536794013608152 -4.462194694740108 9.533782355159215 -4.525390179938007 9.382409542147537 -4.455427051376391 -10.53225366042801 7.603431576150599 -10.36631590090824 7.56636959339067 -10.53419542589385 7.55702510536641 -9.594147782496624 -0.738051148323845 -9.784656798212625 -0.7408131756533698 -9.783857074494744 -0.6691362938423919 -9.039279083403454 -9.329099054071826 -9.229658116192191 -9.336367651976783 -9.236574194485234 -9.292203676274113 9.996664325993033 3.323876594503436 9.999758976611977 3.263988597419473 9.828455534869217 3.329133373186584 -10.81236405832315 -5.202405833090098 -10.96689267888937 -5.163493855529669 -10.97723055393982 -5.098889259997633 -7.945846669509219 1.942040842604744 -8.114837104515585 1.981077467667451 -8.095468309942346 2.039300499863573 13.44555377899035 -5.722845149186801 13.2718020442364 -5.741159222974686 13.44930044874594 -5.668385488500316 9.551212845833174 -2.067257292745881 9.356428823815445 -2.03415149923091 9.548965761671711 -1.99558984223392 1.717930116480462 9.657357346156919 1.862977772807285 9.735595855046842 1.911369143311934 9.709577235272551 10.08722773024519 3.363977652367786 9.932836300581196 3.370646339916129 9.916160148038228 3.429504855946295 9.611478999249615 -4.421325090709555 9.443316131774665 -4.415996288949406 9.4598720223863 -4.351676442092369 -10.01126119959499 8.041651574985904 -10.03692103013628 7.995640913818866 -10.20166097511033 8.035874096782276 -9.590491984643556 -0.7319188440720925 -9.780202193639365 -0.663005551772062 -9.589631784520996 -0.6602278110998927 -8.68402935360943 -9.267708074558898 -8.653250377112627 -9.311552877217336 -8.851763232578662 -9.278949345863072 -10.69708102558122 -5.095529890365388 -10.69993902961422 -5.15834467524064 -10.86539459455302 -5.055411373784887 -7.839671958561465 2.10803629031163 -7.845384988757957 2.048220673213373 -7.994654484578808 2.145814607986833 13.20713266403885 -5.808092499641509 13.18948164541695 -5.761266192426767 13.36344654298511 -5.744250423559999 9.541799474717381 -2.101472443337359 9.347741741054378 -2.140052743973339 9.347016585153993 -2.068362526728548 1.048068770617405 10.04590529425994 1.017395681624552 10.08021894117362 1.207892249537637 10.13875127834151 12.83767395401848 2.698986728442435 12.84552576966404 2.639001151082407 12.68547499766774 2.707896515781035 12.19007387417367 -3.690027264313976 12.18236616770497 -3.755371748820067 12.05114756150089 -3.679793077046705 -13.6847447484432 5.059584858768628 -13.53894561278187 5.027794348473811 -13.68975166940985 5.009495630370664 -12.32373667467696 -0.6168744855933682 -12.49746441137699 -0.6230815870010857 -12.49579470706584 -0.5513993937111484 -11.29345915585524 -7.712465629287292 -11.466261119214 -7.728197475164605 -11.484274482541 -7.680157671561071 -11.0488157510744 -7.699846840393462 -11.00794129425475 -7.746544249156349 -11.19970009642913 -7.717901053537395 12.9532236713963 2.710097356456946 12.81430096200746 2.720361768609917 12.79365822014097 2.779685891348705 12.24528567217559 -3.674476110397896 12.0931195139615 -3.665541122783011 12.11378937378306 -3.599196707333899 -13.24668300105622 5.552669176034209 -13.27498439793351 5.501533482188964 -13.41943499051357 5.536929260000039 -12.32821947329562 -0.6239970089056176 -12.50027623685066 -0.5585198536556275 -12.32650008363278 -0.5523110906066112 -13.36310661905929 -5.473252846037762 -13.51044144690146 -5.502397267310456 -13.53546961842194 -5.449228530517056 15.1263722205753 0.8592046569825994 14.98833714938398 0.9351449853558649 15.12049538521006 0.9205372104145613 14.43546145435956 -2.207325359050818 14.55616608435863 -2.222580144035128 14.54868152216749 -2.290633884856736 -15.40432062586234 -0.6540735496541649 -15.26903812716624 -0.6747706332014749 -15.39507862640394 -0.7093698073846665 -14.82851332735466 -0.395930172972622 -14.67983003546081 -0.4561951589922989 -14.8311649902656 -0.4675984998802772 -14.67669144842454 -0.3836741134547166 -14.67923753443616 -0.4553306183272226 -14.82792107333716 -0.3950660094364775 -13.25977947330466 -5.505259539099626 -13.21515893627361 -5.555856328325733 -13.38804138621756 -5.534265000376434 15.06592590381197 0.7949183730560385 15.04958965728272 0.8563438067854571 15.18653205457936 0.7791889501055175 14.44887420594791 -2.221098491344252 14.46757081307544 -2.152410636712895 14.58111664790307 -2.23544433269069 -15.27343877946977 -0.2580655324412888 -15.28399160635668 -0.3176916508017689 -15.41846274708106 -0.2939468882336187 -15.15489713583819 -0.2930545131389879 -15.02400035057708 -0.3480907070138636 -15.1580557308389 -0.3646959281434475 -14.64004338551176 -2.908526691681026 -14.76549146020981 -2.951906082740725 -14.79326258245243 -2.894331131751723 14.78447366758369 -1.983047770355964 14.6682838501449 -1.899810410831432 14.78675948373065 -1.920318165566193 15.18132268652138 -0.1860261308141984 15.28883659560063 -0.206227821846232 15.28524048915518 -0.2764157387729871 -12.27734432771938 -6.829349901605035 -12.13965494240189 -6.834719327394617 -12.24384501612055 -6.883476791472139 -12.33966146130525 -6.851885096165651 -12.22234766411602 -6.798219207906983 -12.20201939532969 -6.857959085798884 -15.01585657326699 -0.2708411029036731 -15.02036425776285 -0.3424568602995842 -15.15125945875786 -0.287418334694042 -14.6342578746901 -2.942791200881442 -14.59079495631652 -2.995922132173253 -14.74421065985963 -2.983107103282456 14.60302270780954 -2.122026055656785 14.59515925615846 -2.058971806229413 14.71025028138717 -2.143148553045156 15.1610746810059 -0.1524841104103744 15.17473354108876 -0.08251764405130165 15.27969938334563 -0.1721547169097974 -6.055555958381284 -10.13689521376172 -6.109293428726534 -10.09175613382068 -5.954165196393753 -10.08240321614815 -12.50712676704969 -0.3609261135720588 -12.37630511964687 -0.4101709921625641 -12.51170521897669 -0.4325390927646903 -15.01286009738145 0.3586968549124524 -15.12701739267614 0.2979730324215424 -15.15000901865558 0.3585104446830472 10.84952558199501 -4.762879802184586 10.96736671779413 -4.789700952631367 10.95296857640354 -4.852037245898382 13.54445832625182 2.423189007954147 13.65426894193496 2.397400250851552 13.65981778591051 2.326748239006758 13.44017808013487 2.375974715736394 13.44222149290781 2.445933175648131 13.55851676484037 2.350190470906875 -5.959989731223443 -10.33633530654006 -5.846006881234751 -10.27464543694393 -5.80498708068003 -10.32577220688333 -12.36535272687875 -0.3269657940999559 -12.36931942813025 -0.3987688918611639 -12.5001415634012 -0.3495248153306038 -15.01275536901793 0.3432054555686024 -15.14990432501753 0.3430355903118844 -15.04889054441675 0.3977934493564489 10.71254331328887 -4.947072107482407 10.71930958092027 -4.884141894327106 10.82196691836965 -4.973859538279792 9.67152506378822 4.020897325168522 9.535652384218324 4.120325989301343 9.655860114538498 4.089780643099239 -0.6889855687148927 -10.54988316887613 -0.7482746903791204 -10.51141412699299 -0.572802348235919 -10.49301115116569 -7.801734852957861 -0.5277913027634515 -7.654831888932751 -0.5711515032322861 -7.805032899902522 -0.5996153304288365 -14.0236079020574 3.849147847560284 -14.03759278502901 3.909702567002443 -13.90483196929648 3.926144344553958 5.733703215387842 -5.75092622637404 5.709913740674724 -5.811244678157066 5.60288730036522 -5.719178957831415 5.475538535691138 -5.970370763176142 5.35566738907929 -5.939017535048345 5.369515924491523 -5.877589052009471 9.393183861526399 3.997550209745355 9.387608254834845 4.065358134287658 9.524234353431588 3.966570448214895 -0.5201254825616619 -10.77382636002158 -0.3895973034986966 -10.70880401546718 -0.3449848269301892 -10.75356217563272 -7.632245257255401 -0.4581488748053558 -7.634983779827445 -0.5298077574305262 -7.781888752192396 -0.4864517679305999 -13.81979254993046 4.004258330611974 -13.95283357076398 3.989283648150336 -13.84656499739853 4.057176476978639 1.046991573693943 -5.595370136162568 1.021968904281189 -5.654570323446632 0.8977851091591166 -5.559583517961907 5.049664706234381 4.52874270417023 5.068037022190874 4.462347923488265 4.912447918256355 4.562935780883287 3.300069892680144 -9.869433582197893 3.244388704195255 -9.833152729621558 3.436962751592062 -9.810535375168353 -2.887294530197833 -0.6252927187659304 -3.057845615112787 -0.6585940112285035 -3.055890342325662 -0.5869192556475147 -11.42281743810625 6.936435609898983 -11.42953743048822 6.993144953376537 -11.28770119512382 7.024820502476782 -11.00683453332838 7.117032035368696 -11.14967134513006 7.088273201472219 -11.02787819605507 7.164941813816665 0.8565613427156482 -5.761645794202346 0.7196533104223468 -5.726695200480043 0.7329961149335273 -5.66616107925037 4.90463205198234 4.350634804338514 4.755074876457686 4.385620809493025 4.748420206168268 4.450623579185506 3.459444348059531 -10.07934664992524 3.61324729743068 -10.01248305421866 3.651640238215035 -10.05481934312903 -2.887167692395809 -0.6249490118808861 -3.055763517245049 -0.5865755833510511 -2.885210157968473 -0.5532809029935275 -7.981571083229049 9.028755434296995 -7.987339464177467 9.07924109308836 -7.827904945542627 9.122818952272414 -2.731511830344187 -5.091509934117188 -2.752790423338037 -5.150622991096434 -2.897095942081317 -5.052740895802208 0.8831633149921303 4.340876154958427 0.8985552531553698 4.276796877166733 0.7308630172796837 4.377640666346864 6.479603226516543 -8.854242445425069 6.432656682515511 -8.817627836163625 6.634004203371501 -8.793294566101821 1.153653190403491 -0.6465280204784539 0.9646992024465306 -0.6835551247009495 0.9658881231462513 -0.611876575258182 1.153661032484155 -0.646501757147482 0.9658959644244591 -0.6118503146181035 1.154823566991007 -0.5748086689895912 -7.346889600048491 9.120113331780186 -7.508118143460947 9.08083200619877 -7.368801167472475 9.161201702913671 -2.919300446813514 -5.261696061418462 -3.071246920081444 -5.224036429610965 -3.062998735828634 -5.163262678543154 0.7582881172155453 4.154095522294827 0.5923837358809814 4.19196963560762 0.5901373538728749 4.254465696925111 6.619498629445356 -9.031308050738627 6.793269565919365 -8.962176649520533 6.820474276857828 -9.005141365953339 4.573192378001205 -0.6125857144513612 4.37394493166598 -0.6517516198939314 4.374391805653159 -0.5800535608648925 -4.386298460503134 10.16145455378166 -4.397610378910208 10.20511443037593 -4.220346270762134 10.25668177506712 -5.953669404898961 -4.578510320922733 -5.96853167702881 -4.63850078354304 -6.128426190224411 -4.53702549069464 -2.683371087115337 4.032857476182938 -2.674673651011776 3.970711939089664 -2.84407538994616 4.071074086936254 9.226955147384821 -7.660881436554149 9.191493256359289 -7.621820635735081 9.390705744112637 -7.598111054756348 9.338603479848972 -7.777732413618265 9.523076059965172 -7.706722186865398 9.537494056868775 -7.752405522686252 4.574667099394521 -0.6070062188160854 4.375866372032322 -0.5744746514511236 4.575156205994778 -0.535321328252991 -3.395417716892807 10.02484254912804 -3.575795402530674 9.980456970048538 -3.423559843750712 10.0596928702885 -6.118492684033487 -4.736181739891753 -6.278788735486867 -4.696918421360685 -6.277799551221619 -4.634136081968771 -2.77972732559265 3.868564866859452 -2.954812525223386 3.908104795001608 -2.949455647898713 3.968584970213615 11.69545908166266 -6.165375805374608 11.67151544575997 -6.122238471044303 11.85833574578004 -6.101659248474226 7.637462989591356 -0.5355783370673395 7.438884692436969 -0.5746213808480272 7.438681293734168 -0.5029356362676966 -0.5582846036325895 10.53883502273829 -0.5785103288784865 10.57693357934863 -0.3886621095636678 10.62900956161593 -8.859353395442366 -4.046293228179557 -8.866995217462531 -4.108791938055727 -9.03380027510906 -4.006420625215727 -5.824580325974829 3.787066497246632 -5.824401130254482 3.726439851574833 -5.984874911116784 3.825496089114379 -5.942767319525971 3.607580836929528 -6.117519171334913 3.647312480138302 -6.103624512072361 3.706251477403339 11.97108734405456 -6.195225668013294 11.78453809437585 -6.217274084336009 11.96786582673064 -6.145659251872847 7.629293246343014 -0.5664444235559801 7.430512536984056 -0.533798005330548 7.629012160527599 -0.4943906564864924 -0.2527148976834848 10.426971256602 -0.1009394200350589 10.50549989700128 -0.0616197760525572 10.47614398638011 -8.98003503097816 -4.174401339799997 -9.139893049866142 -4.134862396061923 -9.14633215593846 -4.07151990249627 -8.770561771941035 3.540886308410352 -8.778858771816418 3.481298733443971 -8.921820672219136 3.578192612107353 13.8205604012978 -4.096182285690041 13.80489155300077 -4.048106118542218 13.97232917348637 -4.032443978879279 10.44162978337981 -0.454062169185013 10.25329748679828 -0.4923326406169787 10.25224640736305 -0.4202832786225502 2.049549289613083 10.67640891533256 2.015247200976578 10.70942968634257 2.204802280708125 10.76855827136951 -11.53884325552663 -3.361979106691222 -11.53994084497939 -3.425517949534014 -11.70336417460099 -3.3223492902048 -11.63956842215784 -3.46330567287018 -11.79036667523766 -3.424862631705987 -11.80240804439404 -3.359567414257415 -8.887154949704883 3.372339220817581 -9.052081955590012 3.410858693299133 -9.030521953711299 3.468861975536915 14.02535964430971 -4.046920049696856 13.8580741391765 -4.063557718650049 14.02948956143378 -3.991233470963821 10.44654033069043 -0.4369218072722863 10.2571562531056 -0.4031453509545165 10.44557797820856 -0.3652357474518481 2.707638549323608 10.35051710495292 2.848398701466685 10.42835952246278 2.900166810352733 10.40336765268271 -13.89772784137746 -2.27334240652978 -13.89557361235264 -2.339299382153396 -14.04530211187303 -2.236344258840307 -11.62090563237156 3.142693003923645 -11.63560262689902 3.083377162266487 -11.75653812075608 3.177770661628187 15.13872884348619 -1.192185087423372 15.1254733683409 -1.137387144853773 15.27263390473562 -1.130954480547717 13.10411268779496 -0.2917334904157112 12.9350456270925 -0.326316947574528 12.93327751803514 -0.2546403847331626 4.966741529943247 10.42277976527329 4.919444935066543 10.45275846755024 5.098615749409144 10.51294560743031 5.678334940376205 9.998461887926403 5.799430404982195 10.07443132639926 5.861008033938964 10.05173705671813 -13.98068115255331 -2.32830077837097 -14.11587787742318 -2.292197086898061 -14.12956947632326 -2.224594367388785 -11.72922315943382 2.98463851391629 -11.87716989060118 3.020694099171451 -11.85063250064586 3.078654831939861 15.27921675181462 -1.108640329116497 15.13208634560243 -1.115486239458057 15.28355613780346 -1.047027107021943 13.10657820200534 -0.2846167827524169 12.93574257665943 -0.2475249755766458 13.1048417397712 -0.2129342117484297 7.924722301249481 9.732726897339406 7.8677461158809 9.761926573472087 8.02736526555074 9.821600983136177 -15.31437027633269 -0.4230223300898341 -15.31455082822898 -0.4914775418484327 -15.44305330662821 -0.3899955236348888 -14.18313452367816 2.150841275867112 -14.19973105728396 2.090634966396744 -14.3011621683106 2.18283567579907 14.87470401516739 2.501900133340608 14.8554805185815 2.561726152960566 14.99041859131321 2.557294767111326 14.98885956911455 -0.1510839771208635 14.98630899121961 -0.07941647313219935 15.13671974235762 -0.1211489381461692 14.98514250518259 -0.08211323242492062 15.13296454395576 -0.05218168754687864 15.13555282015459 -0.1238466702588365 8.664285561140369 9.203189903951314 8.76029235789291 9.278252121737998 8.82799872421109 9.255552621407876 -15.45898467712232 -0.2955347628614812 -15.33159006155596 -0.3978775287379471 -15.44939251441896 -0.3653735813311292 -14.27392021680073 1.982302751646204 -14.40287565241049 2.014917648040245 -14.37606452241652 2.07401491811839 15.0023280162694 2.584079828611297 14.86740545328029 2.588794416056637 14.99875333259749 2.650025172967234 15.16743422483861 -0.03545912243787345 15.1641764795847 0.03618896027725767 15.30158395565982 -0.01107473894987238 11.07174268466244 8.20622935854772 11.01027811487094 8.238076117138485 11.1455013915099 8.295039026640007 -14.53472554868212 2.127210024263323 -14.54335301702772 2.057293376693322 -14.6507686977999 2.154848983675576 -15.47116303379385 -0.1007349528659712 -15.48262111907089 -0.1628323662475132 -15.57514096968452 -0.07273631401580578 12.60731898493821 6.118625135813931 12.49951527187993 6.073027679581337 12.46898561727446 6.134508540228222 12.70625820915137 6.161370650101258 12.56811952074999 6.178270083019855 12.69059355607208 6.227755612237238 15.17563565399611 0.05617942024194091 15.30690519968065 0.08047237589028985 15.31304001235715 0.008910112217603286 11.69878959471147 7.58601203297724 11.7704919551024 7.662925350350643 11.83828156757457 7.63620236135994 -14.56680894469698 2.286669607262608 -14.46036782134315 2.188455181777495 -14.56459089025118 2.215883996012861 -15.56345211267266 -0.2696120734411502 -15.46905507231649 -0.358494914505298 -15.58614161625408 -0.3304375255316758 8.697078951015156 8.540115820692279 8.58627011746384 8.506442857040527 8.545172472107982 8.565718295780178 12.19835884505356 -0.146800505000047 12.19213361164655 -0.07524307380881749 12.33064208256117 -0.1284401721676801 14.47349470592138 4.48647907063768 14.59418708410047 4.538283916644543 14.52695133721591 4.444175897312884 -11.01679911358996 4.269145009458118 -11.03367668443019 4.199593819634335 -11.13378158180757 4.290461772431124 -13.39670242866168 -3.613704573406853 -13.3974098807348 -3.67709239098218 -13.5059011192523 -3.590829072605744 -13.55801168547825 -3.577066294607589 -13.4499401887031 -3.663655054369639 -13.56513458783688 -3.640840594633713 8.898762902518534 8.731761099374541 8.923678733635118 8.668841967120205 8.772269057933174 8.696205070621195 12.22654416361658 -0.01943562022145843 12.36175311937746 -0.0009825789137929406 12.36505519422629 -0.07262859400753216 14.96845522977058 3.35133289154442 15.03615162692535 3.429353310215399 15.09484373679222 3.39390961733253 -10.68882058697654 4.505299613626308 -10.79840624940081 4.526999730518657 -10.78713880123417 4.597366855888582 -8.815494644472278 -5.774511367979984 -8.801509248545763 -5.837578937177788 -8.933635321618514 -5.757277826503307 4.651988984499353 9.594854799842905 4.523448716069428 9.571625854314807 4.478680923413543 9.627328050368947 7.233951611409601 -0.2541372185253958 7.231213088075283 -0.182476503054494 7.382068434324744 -0.241491627183106 14.91065914675177 -3.777910281812579 15.03981940364179 -3.750520227088221 14.93406510884929 -3.833128042733069 -6.265053442983705 5.143606840905864 -6.291094765920943 5.075706706149901 -6.395522489379975 5.158768798898631 -6.345477359525412 5.033386772475333 -6.463927420890339 5.049251737721187 -6.450084556044033 5.116308992652171 -8.474083960861563 -5.557050713172885 -8.340006663472 -5.635324761576602 -8.470310492685124 -5.619290757677044 4.919379370187534 9.892039163892946 4.945944916579555 9.834218944580741 4.773327107086453 9.868892812672822 7.231209888290916 -0.1824815909569086 7.379373083602277 -0.1698281144617169 7.382065234171519 -0.2414967156690114 14.69234096980359 -4.355588845689685 14.72486050333744 -4.403233806382385 14.59387961922222 -4.424614123615205 -1.90937130006707 4.862529816864804 -1.933865719907049 4.797384062894644 -2.05882916208763 4.872460549146258 -3.259884488636204 -5.995842963102504 -3.241426096467497 -6.056438235414486 -3.397107199959195 -5.98424868289719 1.008562531875875 9.818746833712917 0.8596763270423269 9.803705718484709 0.8179236377150179 9.855677732640089 2.620126335769311 -0.3648972911204835 2.450697965148819 -0.3725570392090918 2.448785794034122 -0.3008729346920752 7.297282070817186 -10.79052628969557 7.443048798000977 -10.80009820721206 7.282510597809422 -10.84334156262963 7.685732597629724 -10.53924170281158 7.690973169910333 -10.58765281235062 7.545016025874009 -10.58008674815488 -1.805251932654083 4.913604885475876 -1.942557170917669 4.924577889785635 -1.92990455257835 4.989000459575597 -3.12195266891699 -5.944773106357311 -3.271471099256043 -5.9343096193634 -3.277982172367969 -5.873050550567501 1.295189091977163 10.18834112042268 1.316212385300757 10.13563914392545 1.126338995694618 10.17493482702669 2.621653215864948 -0.362364782113812 2.450312437044271 -0.2983408183330653 2.619721777136519 -0.2906842249844755 0.2212680525864363 -12.01608980644756 0.3845430425278218 -12.04473635384749 0.1973876130544139 -12.06089738910327 1.735043255551679 4.502827643114138 1.715192325704423 4.439538812723861 1.568907206214536 4.50907519563662 1.002064494370128 -5.597568584395066 1.01857272779244 -5.657654025747636 0.8495047426544161 -5.589675080231888 -2.204111497812216 9.633141234618284 -2.370038473919489 9.623684474567677 -2.40325675258017 9.672348096396751 -1.277086089588083 -0.4169438540565115 -1.465326925407342 -0.4208737389001987 -1.466501008696974 -0.3491830297211277 -1.276098617083837 -0.4152397302612619 -1.465513719932773 -0.3474792237757546 -1.277299820395676 -0.3435675080228851 1.008678047437974 -11.80383616959896 1.00884506093083 -11.84753967263648 0.8443012179766773 -11.8238075444289 1.836118446626879 4.571597531119997 1.683531900332494 4.579163743572819 1.69008290622801 4.641457803520121 1.131624861292083 -5.515641120481698 0.9654699582544085 -5.509115040108265 0.9622789187873809 -5.448091689314831 -1.879254076347732 10.07453448642871 -1.869103492317738 10.02585820029304 -2.067363556438311 10.06774942589127 -4.483550424088096 -0.4202673357458706 -4.682577470094148 -0.4220754648921574 -4.683074645727208 -0.3503980807569206 -4.12237157436495 -11.35867777184159 -3.940446281391237 -11.39435600296643 -4.139369964723186 -11.40028547859709 4.849655206940618 4.19179664643818 4.83726873451684 4.130053938276838 4.673925980017696 4.196057977837305 4.403622006344742 -5.045024200443416 4.414330093866282 -5.10551545785776 4.242249595848798 -5.039119404646884 -5.086036520775776 9.288165469182147 -5.261618723685403 9.281580629012616 -5.282606409882941 9.328062374147711 -4.743147968121232 9.748715202730224 -4.746545622892838 9.702780256586332 -4.942146886322691 9.745521824623399 -4.480810009784761 -0.4154533985807034 -4.680334808808471 -0.3455851639672101 -4.481281815855905 -0.3437653901831514 -3.367600287503807 -11.23167592501437 -3.359409878330394 -11.27335911168447 -3.5428410360005 -11.24282287156327 4.94606400392554 4.265197287318761 4.784681055016228 4.27092107274445 4.782938276159995 4.331532646254946 4.494403742435357 -4.991993434953791 4.318710924411826 -4.987598654151317 4.322134653282708 -4.925900717261717</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2670\" source=\"#ID1721\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1717\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1715\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1716\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"890\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 3 6 4 2 5 1 6 0 7 8 8 10 9 0 10 11 11 14 12 15 13 16 14 2 15 6 16 20 17 22 18 16 19 23 20 0 21 26 22 8 23 28 24 0 25 10 26 10 27 11 28 30 29 32 30 15 31 14 32 14 33 16 34 22 35 20 36 6 37 34 38 11 39 36 40 30 41 22 42 23 43 38 44 8 45 26 46 40 47 0 48 28 49 26 50 42 51 43 52 44 53 48 54 49 55 42 56 52 57 53 58 54 59 32 60 58 61 15 62 60 63 52 64 61 65 20 66 34 67 64 68 30 69 36 70 66 71 68 72 61 73 69 74 38 75 23 76 72 77 26 78 74 79 40 80 28 81 76 82 26 83 43 84 53 85 44 86 49 87 43 88 42 89 78 90 49 91 48 92 54 93 53 94 80 95 60 96 53 97 52 98 32 99 82 100 58 101 68 102 60 103 61 104 64 105 34 106 84 107 36 108 64 109 66 110 78 111 48 112 86 113 88 114 68 115 69 116 38 117 72 118 90 119 40 120 74 121 92 122 26 123 76 124 74 125 44 126 53 127 94 128 96 129 80 130 97 131 100 132 97 133 101 134 54 135 80 136 96 137 53 138 60 139 94 140 58 141 82 142 104 143 60 144 68 145 106 146 64 147 84 148 108 149 110 150 66 151 64 152 78 153 86 154 112 155 68 156 88 157 114 158 88 159 69 160 116 161 90 162 72 163 118 164 74 165 120 166 92 167 76 168 122 169 74 170 96 171 97 172 100 173 100 174 101 175 124 176 94 177 60 178 106 179 82 180 126 181 104 182 106 183 68 184 114 185 108 186 84 187 128 188 108 189 110 190 64 191 112 192 86 193 130 194 124 195 101 196 132 197 114 198 88 199 134 200 136 201 88 202 116 203 90 204 118 205 138 206 92 207 120 208 140 209 74 210 122 211 120 212 126 213 142 214 143 215 104 216 126 217 143 218 122 219 146 220 120 221 148 222 108 223 128 224 150 225 110 226 108 227 112 228 130 229 152 230 132 231 154 232 124 233 146 234 156 235 157 236 134 237 88 238 136 239 136 240 116 241 160 242 118 243 162 244 138 245 120 246 157 247 140 248 143 249 142 250 164 251 120 252 146 253 157 254 166 255 148 256 128 257 148 258 150 259 108 260 152 261 130 262 168 263 132 264 170 265 154 266 142 267 172 268 164 269 157 270 156 271 174 272 134 273 136 274 176 275 178 276 136 277 160 278 138 279 162 280 180 281 140 282 157 283 182 284 184 285 148 286 166 287 186 288 150 289 148 290 152 291 168 292 188 293 170 294 190 295 154 296 164 297 172 298 192 299 157 300 174 301 182 302 156 303 194 304 174 305 176 306 136 307 178 308 178 309 160 310 196 311 162 312 198 313 180 314 200 315 184 316 166 317 184 318 186 319 148 320 188 321 168 322 202 323 170 324 188 325 190 326 172 327 204 328 192 329 182 330 174 331 206 332 174 333 194 334 208 335 176 336 178 337 210 338 212 339 178 340 196 341 180 342 198 343 214 344 216 345 184 346 200 347 218 348 186 349 184 350 188 351 202 352 220 353 188 354 222 355 190 356 192 357 204 358 224 359 198 360 226 361 214 362 174 363 208 364 206 365 194 366 228 367 208 368 210 369 178 370 212 371 212 372 196 373 230 374 232 375 216 376 200 377 216 378 218 379 184 380 202 381 234 382 220 383 188 384 220 385 222 386 224 387 204 388 236 389 214 390 226 391 238 392 206 393 208 394 240 395 208 396 228 397 242 398 210 399 212 400 244 401 212 402 230 403 246 404 248 405 216 406 232 407 250 408 218 409 216 410 220 411 234 412 252 413 220 414 254 415 222 416 224 417 236 418 256 419 230 420 258 421 246 422 226 423 260 424 238 425 240 426 208 427 242 428 228 429 262 430 242 431 244 432 212 433 264 434 266 435 248 436 232 437 248 438 250 439 216 440 234 441 268 442 252 443 220 444 252 445 254 446 256 447 236 448 270 449 246 450 258 451 272 452 238 453 260 454 274 455 240 456 242 457 276 458 242 459 262 460 278 461 280 462 244 463 264 464 282 465 248 466 266 467 284 468 250 469 248 470 252 471 268 472 286 473 252 474 288 475 254 476 256 477 270 478 290 479 280 480 264 481 272 482 258 483 292 484 272 485 260 486 294 487 274 488 276 489 242 490 296 491 262 492 298 493 278 494 300 495 282 496 266 497 282 498 284 499 248 500 268 501 302 502 286 503 252 504 286 505 288 506 290 507 270 508 304 509 306 510 280 511 272 512 272 513 292 514 308 515 294 516 310 517 274 518 276 519 296 520 312 521 278 522 298 523 314 524 316 525 282 526 300 527 318 528 284 529 282 530 286 531 302 532 320 533 286 534 322 535 288 536 290 537 304 538 324 539 314 540 298 541 326 542 308 543 306 544 272 545 292 546 328 547 308 548 294 549 330 550 310 551 296 552 314 553 312 554 332 555 316 556 300 557 316 558 318 559 282 560 302 561 334 562 320 563 286 564 320 565 322 566 324 567 304 568 336 569 314 570 326 571 338 572 340 573 306 574 308 575 308 576 328 577 342 578 330 579 344 580 310 581 312 582 314 583 346 584 348 585 316 586 332 587 316 588 350 589 318 590 320 591 334 592 352 593 354 594 322 595 320 596 356 597 324 598 336 599 314 600 338 601 346 602 338 603 326 604 358 605 342 606 340 607 308 608 328 609 360 610 342 611 362 612 344 613 330 614 364 615 348 616 332 617 366 618 350 619 316 620 334 621 368 622 352 623 352 624 354 625 320 626 356 627 336 628 370 629 346 630 338 631 372 632 338 633 358 634 374 635 376 636 340 637 342 638 378 639 342 640 360 641 362 642 380 643 344 644 382 645 348 646 364 647 366 648 384 649 350 650 352 651 368 652 386 653 388 654 354 655 352 656 390 657 356 658 370 659 392 660 380 661 362 662 338 663 374 664 372 665 358 666 394 667 374 668 378 669 376 670 342 671 378 672 360 673 396 674 398 675 382 676 364 677 400 678 384 679 366 680 368 681 402 682 386 683 386 684 388 685 352 686 390 687 370 688 404 689 392 690 406 691 380 692 372 693 374 694 408 695 374 696 394 697 410 698 412 699 376 700 378 701 414 702 378 703 396 704 398 705 416 706 382 707 418 708 384 709 400 710 402 711 420 712 386 713 422 714 388 715 386 716 424 717 390 718 404 719 414 720 396 721 426 722 428 723 406 724 392 725 374 726 410 727 408 728 394 729 430 730 410 731 414 732 412 733 378 734 432 735 416 736 398 737 416 738 418 739 400 740 402 741 434 742 420 743 420 744 422 745 386 746 436 747 424 748 404 749 438 750 414 751 426 752 428 753 440 754 406 755 408 756 410 757 442 758 410 759 430 760 444 761 446 762 412 763 414 764 432 765 448 766 416 767 450 768 418 769 416 770 434 771 452 772 420 773 454 774 422 775 420 776 456 777 424 778 436 779 438 780 446 781 414 782 438 783 426 784 458 785 460 786 440 787 428 788 410 789 444 790 442 791 430 792 462 793 444 794 464 795 448 796 432 797 448 798 450 799 416 800 466 801 452 802 434 803 452 804 454 805 420 806 468 807 456 808 436 809 470 810 446 811 438 812 472 813 438 814 458 815 460 816 474 817 440 818 442 819 444 820 476 821 444 822 462 823 478 824 480 825 448 826 464 827 482 828 450 829 448 830 466 831 484 832 452 833 452 834 486 835 454 836 488 837 456 838 468 839 462 840 490 841 478 842 472 843 470 844 438 845 472 846 458 847 492 848 494 849 474 850 460 851 444 852 478 853 476 854 496 855 480 856 464 857 480 858 482 859 448 860 498 861 484 862 466 863 452 864 484 865 486 866 500 867 488 868 468 869 478 870 490 871 502 872 472 873 504 874 470 875 506 876 472 877 492 878 508 879 474 880 494 881 476 882 478 883 510 884 512 885 480 886 496 887 514 888 482 889 480 890 498 891 516 892 484 893 484 894 518 895 486 896 520 897 488 898 500 899 478 900 502 901 510 902 490 903 522 904 502 905 524 906 504 907 472 908 506 909 492 910 526 911 528 912 508 913 494 914 530 915 512 916 496 917 512 918 514 919 480 920 532 921 516 922 498 923 484 924 516 925 518 926 534 927 520 928 500 929 510 930 502 931 536 932 502 933 522 934 538 935 524 936 540 937 504 938 542 939 506 940 526 941 544 942 508 943 528 944 546 945 512 946 530 947 548 948 514 949 512 950 532 951 550 952 516 953 516 954 552 955 518 956 554 957 520 958 534 959 556 960 544 961 528 962 502 963 538 964 536 965 522 966 558 967 538 968 560 969 540 970 524 971 542 972 526 973 562 974 564 975 546 976 530 977 546 978 548 979 512 980 566 981 550 982 532 983 516 984 550 985 552 986 568 987 554 988 534 989 570 990 544 991 556 992 538 993 572 994 536 995 538 996 558 997 574 998 560 999 576 1000 540 1001 562 1002 578 1003 542 1004 580 1005 546 1006 564 1007 582 1008 548 1009 546 1010 584 1011 550 1012 566 1013 550 1014 586 1015 552 1016 568 1017 588 1018 554 1019 590 1020 578 1021 562 1022 592 1023 570 1024 556 1025 574 1026 572 1027 538 1028 558 1029 594 1030 574 1031 596 1032 576 1033 560 1034 598 1035 580 1036 564 1037 580 1038 582 1039 546 1040 600 1041 584 1042 566 1043 550 1044 584 1045 586 1046 602 1047 588 1048 568 1049 590 1050 604 1051 578 1052 606 1053 570 1054 592 1055 574 1056 608 1057 572 1058 610 1059 574 1060 594 1061 596 1062 612 1063 576 1064 614 1065 580 1066 598 1067 616 1068 582 1069 580 1070 618 1071 584 1072 600 1073 584 1074 620 1075 586 1076 602 1077 622 1078 588 1079 596 1080 624 1081 612 1082 626 1083 604 1084 590 1085 628 1086 606 1087 592 1088 630 1089 608 1090 574 1091 632 1092 610 1093 594 1094 634 1095 614 1096 598 1097 614 1098 616 1099 580 1100 636 1101 618 1102 600 1103 584 1104 618 1105 620 1106 638 1107 622 1108 602 1109 612 1110 624 1111 640 1112 626 1113 642 1114 604 1115 644 1116 606 1117 628 1118 646 1119 608 1120 630 1121 648 1122 610 1123 632 1124 650 1125 614 1126 634 1127 616 1128 614 1129 652 1130 654 1131 618 1132 636 1133 618 1134 656 1135 620 1136 638 1137 658 1138 622 1139 660 1140 648 1141 632 1142 624 1143 662 1144 640 1145 664 1146 642 1147 626 1148 644 1149 628 1150 666 1151 668 1152 646 1153 630 1154 670 1155 650 1156 634 1157 652 1158 614 1159 650 1160 672 1161 654 1162 636 1163 618 1164 674 1165 656 1166 676 1167 658 1168 638 1169 660 1170 678 1171 648 1172 640 1173 662 1174 680 1175 664 1176 682 1177 642 1178 644 1179 666 1180 684 1181 686 1182 646 1183 668 1184 650 1185 670 1186 688 1187 652 1188 650 1189 690 1190 692 1191 654 1192 672 1193 656 1194 674 1195 694 1196 676 1197 696 1198 658 1199 678 1200 686 1201 668 1202 698 1203 678 1204 660 1205 662 1206 682 1207 680 1208 700 1209 682 1210 664 1211 684 1212 666 1213 702 1214 670 1215 704 1216 688 1217 690 1218 650 1219 706 1220 708 1221 692 1222 672 1223 694 1224 674 1225 710 1226 676 1227 712 1228 696 1229 686 1230 678 1231 714 1232 678 1233 698 1234 716 1235 680 1236 682 1237 718 1238 720 1239 682 1240 700 1241 684 1242 702 1243 722 1244 688 1245 704 1246 724 1247 690 1248 706 1249 726 1250 728 1251 692 1252 708 1253 694 1254 710 1255 730 1256 712 1257 732 1258 696 1259 722 1260 702 1261 734 1262 678 1263 716 1264 714 1265 698 1266 736 1267 716 1268 682 1269 720 1270 718 1271 720 1272 700 1273 738 1274 724 1275 704 1276 740 1277 706 1278 742 1279 726 1280 744 1281 728 1282 708 1283 730 1284 710 1285 746 1286 712 1287 748 1288 732 1289 722 1290 734 1291 750 1292 714 1293 716 1294 752 1295 716 1296 736 1297 754 1298 718 1299 720 1300 756 1301 758 1302 720 1303 738 1304 724 1305 740 1306 760 1307 726 1308 742 1309 762 1310 764 1311 728 1312 744 1313 730 1314 746 1315 766 1316 732 1317 748 1318 768 1319 758 1320 738 1321 770 1322 750 1323 734 1324 772 1325 716 1326 754 1327 752 1328 736 1329 774 1330 754 1331 720 1332 758 1333 756 1334 760 1335 740 1336 776 1337 742 1338 760 1339 762 1340 764 1341 744 1342 778 1343 766 1344 746 1345 780 1346 748 1347 782 1348 768 1349 784 1350 758 1351 770 1352 750 1353 772 1354 786 1355 752 1356 754 1357 788 1358 754 1359 774 1360 790 1361 756 1362 758 1363 792 1364 760 1365 776 1366 794 1367 796 1368 762 1369 760 1370 764 1371 778 1372 798 1373 780 1374 800 1375 766 1376 768 1377 782 1378 802 1379 758 1380 784 1381 792 1382 784 1383 770 1384 804 1385 786 1386 772 1387 806 1388 754 1389 790 1390 788 1391 774 1392 808 1393 790 1394 794 1395 776 1396 810 1397 794 1398 796 1399 760 1400 798 1401 778 1402 812 1403 780 1404 814 1405 800 1406 782 1407 816 1408 802 1409 792 1410 784 1411 818 1412 820 1413 784 1414 804 1415 786 1416 806 1417 822 1418 788 1419 790 1420 824 1421 790 1422 808 1423 826 1424 828 1425 794 1426 810 1427 830 1428 796 1429 794 1430 798 1431 812 1432 832 1433 814 1434 834 1435 800 1436 802 1437 816 1438 836 1439 808 1440 838 1441 826 1442 818 1443 784 1444 820 1445 820 1446 804 1447 840 1448 806 1449 842 1450 822 1451 790 1452 826 1453 824 1454 844 1455 828 1456 810 1457 828 1458 830 1459 794 1460 832 1461 812 1462 846 1463 814 1464 848 1465 834 1466 816 1467 850 1468 836 1469 826 1470 838 1471 852 1472 818 1473 820 1474 854 1475 856 1476 820 1477 840 1478 822 1479 842 1480 858 1481 824 1482 826 1483 860 1484 862 1485 828 1486 844 1487 864 1488 830 1489 828 1490 832 1491 846 1492 866 1493 848 1494 868 1495 834 1496 836 1497 850 1498 870 1499 826 1500 852 1501 860 1502 838 1503 872 1504 852 1505 854 1506 820 1507 856 1508 856 1509 840 1510 874 1511 842 1512 876 1513 858 1514 878 1515 862 1516 844 1517 862 1518 864 1519 828 1520 866 1521 846 1522 880 1523 848 1524 866 1525 868 1526 850 1527 882 1528 870 1529 860 1530 852 1531 884 1532 852 1533 872 1534 886 1535 854 1536 856 1537 888 1538 890 1539 856 1540 874 1541 858 1542 876 1543 892 1544 894 1545 862 1546 878 1547 896 1548 864 1549 862 1550 866 1551 880 1552 898 1553 866 1554 900 1555 868 1556 870 1557 882 1558 902 1559 876 1560 904 1561 892 1562 852 1563 886 1564 884 1565 872 1566 906 1567 886 1568 888 1569 856 1570 890 1571 890 1572 874 1573 908 1574 910 1575 894 1576 878 1577 894 1578 896 1579 862 1580 880 1581 912 1582 898 1583 866 1584 898 1585 900 1586 902 1587 882 1588 914 1589 892 1590 904 1591 916 1592 884 1593 886 1594 918 1595 886 1596 906 1597 920 1598 888 1599 890 1600 922 1601 890 1602 908 1603 924 1604 926 1605 894 1606 910 1607 928 1608 896 1609 894 1610 898 1611 912 1612 930 1613 898 1614 932 1615 900 1616 902 1617 914 1618 934 1619 908 1620 936 1621 924 1622 904 1623 938 1624 916 1625 918 1626 886 1627 920 1628 906 1629 940 1630 920 1631 922 1632 890 1633 942 1634 944 1635 926 1636 910 1637 926 1638 928 1639 894 1640 912 1641 946 1642 930 1643 898 1644 930 1645 932 1646 934 1647 914 1648 948 1649 924 1650 936 1651 950 1652 916 1653 938 1654 952 1655 918 1656 920 1657 954 1658 920 1659 940 1660 956 1661 958 1662 922 1663 942 1664 960 1665 926 1666 944 1667 962 1668 928 1669 926 1670 930 1671 946 1672 964 1673 930 1674 966 1675 932 1676 934 1677 948 1678 968 1679 958 1680 942 1681 950 1682 936 1683 970 1684 950 1685 938 1686 972 1687 952 1688 954 1689 920 1690 974 1691 956 1692 940 1693 976 1694 978 1695 960 1696 944 1697 960 1698 962 1699 926 1700 946 1701 980 1702 964 1703 930 1704 964 1705 966 1706 968 1707 948 1708 982 1709 984 1710 958 1711 950 1712 950 1713 970 1714 986 1715 972 1716 988 1717 952 1718 954 1719 974 1720 990 1721 956 1722 976 1723 992 1724 994 1725 960 1726 978 1727 996 1728 962 1729 960 1730 964 1731 980 1732 998 1733 964 1734 1000 1735 966 1736 968 1737 982 1738 1002 1739 992 1740 976 1741 1004 1742 986 1743 984 1744 950 1745 970 1746 1006 1747 986 1748 972 1749 1008 1750 988 1751 974 1752 992 1753 990 1754 1010 1755 994 1756 978 1757 994 1758 996 1759 960 1760 980 1761 1012 1762 998 1763 964 1764 998 1765 1000 1766 1002 1767 982 1768 1014 1769 992 1770 1004 1771 1016 1772 1018 1773 984 1774 986 1775 986 1776 1006 1777 1020 1778 1008 1779 1022 1780 988 1781 990 1782 992 1783 1024 1784 1026 1785 994 1786 1010 1787 994 1788 1028 1789 996 1790 998 1791 1012 1792 1030 1793 1032 1794 1000 1795 998 1796 1034 1797 1002 1798 1014 1799 992 1800 1016 1801 1024 1802 1016 1803 1004 1804 1036 1805 1020 1806 1018 1807 986 1808 1006 1809 1038 1810 1020 1811 1040 1812 1022 1813 1008 1814 1042 1815 1026 1816 1010 1817 1044 1818 1028 1819 994 1820 1012 1821 1046 1822 1030 1823 1030 1824 1032 1825 998 1826 1034 1827 1014 1828 1048 1829 1024 1830 1016 1831 1050 1832 1016 1833 1036 1834 1052 1835 1054 1836 1018 1837 1020 1838 1056 1839 1020 1840 1038 1841 1040 1842 1058 1843 1022 1844 1060 1845 1026 1846 1042 1847 1044 1848 1062 1849 1028 1850 1030 1851 1046 1852 1064 1853 1066 1854 1032 1855 1030 1856 1068 1857 1034 1858 1048 1859 1070 1860 1058 1861 1040 1862 1016 1863 1052 1864 1050 1865 1036 1866 1072 1867 1052 1868 1056 1869 1054 1870 1020 1871 1056 1872 1038 1873 1074 1874 1076 1875 1060 1876 1042 1877 1078 1878 1062 1879 1044 1880 1046 1881 1080 1882 1064 1883 1064 1884 1066 1885 1030 1886 1068 1887 1048 1888 1082 1889 1070 1890 1084 1891 1058 1892 1050 1893 1052 1894 1086 1895 1052 1896 1072 1897 1088 1898 1090 1899 1054 1900 1056 1901 1092 1902 1056 1903 1074 1904 1076 1905 1094 1906 1060 1907 1096 1908 1062 1909 1078 1910 1080 1911 1098 1912 1064 1913 1100 1914 1066 1915 1064 1916 1102 1917 1068 1918 1082 1919 1092 1920 1074 1921 1104 1922 1106 1923 1084 1924 1070 1925 1052 1926 1088 1927 1086 1928 1072 1929 1108 1930 1088 1931 1092 1932 1090 1933 1056 1934 1110 1935 1094 1936 1076 1937 1094 1938 1096 1939 1078 1940 1080 1941 1112 1942 1098 1943 1114 1944 1100 1945 1064 1946 1116 1947 1102 1948 1082 1949 1118 1950 1092 1951 1104 1952 1106 1953 1120 1954 1084 1955 1086 1956 1088 1957 1122 1958 1088 1959 1108 1960 1124 1961 1126 1962 1090 1963 1092 1964 1110 1965 1128 1966 1094 1967 1130 1968 1096 1969 1094 1970 1112 1971 1132 1972 1098 1973 1114 1974 1134 1975 1100 1976 1136 1977 1102 1978 1116 1979 1118 1980 1126 1981 1092 1982 1118 1983 1104 1984 1138 1985 1140 1986 1120 1987 1106 1988 1088 1989 1124 1990 1122 1991 1108 1992 1142 1993 1124 1994 1144 1995 1128 1996 1110 1997 1128 1998 1130 1999 1094 2000 1146 2001 1132 2002 1112 2003 1114 2004 1132 2005 1134 2006 1148 2007 1136 2008 1116 2009 1150 2010 1126 2011 1118 2012 1152 2013 1118 2014 1138 2015 1140 2016 1154 2017 1120 2018 1122 2019 1124 2020 1156 2021 1124 2022 1142 2023 1158 2024 1160 2025 1128 2026 1144 2027 1162 2028 1130 2029 1128 2030 1146 2031 1164 2032 1132 2033 1132 2034 1166 2035 1134 2036 1168 2037 1136 2038 1148 2039 1142 2040 1170 2041 1158 2042 1152 2043 1150 2044 1118 2045 1152 2046 1138 2047 1172 2048 1174 2049 1154 2050 1140 2051 1124 2052 1158 2053 1156 2054 1176 2055 1160 2056 1144 2057 1160 2058 1162 2059 1128 2060 1178 2061 1164 2062 1146 2063 1132 2064 1164 2065 1166 2066 1180 2067 1168 2068 1148 2069 1158 2070 1170 2071 1182 2072 1152 2073 1184 2074 1150 2075 1186 2076 1152 2077 1172 2078 1188 2079 1154 2080 1174 2081 1156 2082 1158 2083 1190 2084 1192 2085 1160 2086 1176 2087 1194 2088 1162 2089 1160 2090 1178 2091 1196 2092 1164 2093 1164 2094 1198 2095 1166 2096 1200 2097 1168 2098 1180 2099 1158 2100 1182 2101 1190 2102 1170 2103 1202 2104 1182 2105 1204 2106 1184 2107 1152 2108 1186 2109 1172 2110 1206 2111 1208 2112 1188 2113 1174 2114 1210 2115 1192 2116 1176 2117 1192 2118 1194 2119 1160 2120 1212 2121 1196 2122 1178 2123 1164 2124 1196 2125 1198 2126 1214 2127 1200 2128 1180 2129 1190 2130 1182 2131 1216 2132 1182 2133 1202 2134 1218 2135 1204 2136 1220 2137 1184 2138 1222 2139 1186 2140 1206 2141 1224 2142 1188 2143 1208 2144 1226 2145 1224 2146 1208 2147 1182 2148 1218 2149 1216 2150 1202 2151 1228 2152 1218 2153 1230 2154 1220 2155 1204 2156 1222 2157 1206 2158 1232 2159 1234 2160 1224 2161 1226 2162 1218 2163 1236 2164 1216 2165 1238 2166 1218 2167 1228 2168 1230 2169 1240 2170 1220 2171 1232 2172 1242 2173 1222 2174 1244 2175 1242 2176 1232 2177 1246 2178 1234 2179 1226 2180 1238 2181 1236 2182 1218 2183 1248 2184 1238 2185 1228 2186 1250 2187 1240 2188 1230 2189 1244 2190 1252 2191 1242 2192 1254 2193 1234 2194 1246 2195 1238 2196 1256 2197 1236 2198 1258 2199 1238 2200 1248 2201 1250 2202 1260 2203 1240 2204 1250 2205 1262 2206 1260 2207 1264 2208 1252 2209 1244 2210 1266 2211 1254 2212 1246 2213 1268 2214 1256 2215 1238 2216 1270 2217 1258 2218 1248 2219 1260 2220 1262 2221 1272 2222 1264 2223 1274 2224 1252 2225 1276 2226 1254 2227 1266 2228 1278 2229 1256 2230 1268 2231 1280 2232 1258 2233 1270 2234 1282 2235 1280 2236 1270 2237 1262 2238 1284 2239 1272 2240 1286 2241 1274 2242 1264 2243 1276 2244 1266 2245 1288 2246 1280 2247 1278 2248 1268 2249 1282 2250 1290 2251 1280 2252 1272 2253 1284 2254 1292 2255 1286 2256 1294 2257 1274 2258 1276 2259 1288 2260 1296 2261 1278 2262 1280 2263 1298 2264 1280 2265 1290 2266 1298 2267 1300 2268 1290 2269 1282 2270 1284 2271 1294 2272 1292 2273 1302 2274 1294 2275 1286 2276 1296 2277 1288 2278 1304 2279 1298 2280 1290 2281 1306 2282 1290 2283 1300 2284 1308 2285 1292 2286 1294 2287 1310 2288 1312 2289 1294 2290 1302 2291 1296 2292 1304 2293 1314 2294 1314 2295 1304 2296 1316 2297 1290 2298 1308 2299 1306 2300 1300 2301 1318 2302 1308 2303 1294 2304 1312 2305 1310 2306 1312 2307 1302 2308 1320 2309 1314 2310 1316 2311 1322 2312 1306 2313 1308 2314 1324 2315 1308 2316 1318 2317 1326 2318 1310 2319 1312 2320 1328 2321 1330 2322 1312 2323 1320 2324 1330 2325 1320 2326 1332 2327 1322 2328 1316 2329 1334 2330 1308 2331 1326 2332 1324 2333 1318 2334 1336 2335 1326 2336 1312 2337 1330 2338 1328 2339 1338 2340 1330 2341 1332 2342 1322 2343 1334 2344 1340 2345 1324 2346 1326 2347 1342 2348 1326 2349 1336 2350 1344 2351 1328 2352 1330 2353 1346 2354 1330 2355 1338 2356 1346 2357 1338 2358 1332 2359 1348 2360 1340 2361 1334 2362 1350 2363 1326 2364 1344 2365 1342 2366 1336 2367 1352 2368 1344 2369 1346 2370 1338 2371 1354 2372 1356 2373 1338 2374 1348 2375 1340 2376 1350 2377 1358 2378 1342 2379 1344 2380 1360 2381 1344 2382 1352 2383 1362 2384 1352 2385 1364 2386 1362 2387 1354 2388 1338 2389 1356 2390 1356 2391 1348 2392 1366 2393 1350 2394 1368 2395 1358 2396 1344 2397 1362 2398 1360 2399 1362 2400 1364 2401 1370 2402 1354 2403 1356 2404 1372 2405 1374 2406 1356 2407 1366 2408 1358 2409 1368 2410 1376 2411 1360 2412 1362 2413 1378 2414 1362 2415 1370 2416 1378 2417 1364 2418 1380 2419 1370 2420 1372 2421 1356 2422 1374 2423 1374 2424 1366 2425 1382 2426 1368 2427 1384 2428 1376 2429 1378 2430 1370 2431 1386 2432 1370 2433 1380 2434 1388 2435 1372 2436 1374 2437 1390 2438 1392 2439 1374 2440 1382 2441 1376 2442 1384 2443 1394 2444 1384 2445 1396 2446 1394 2447 1370 2448 1388 2449 1386 2450 1380 2451 1398 2452 1388 2453 1390 2454 1374 2455 1392 2456 1392 2457 1382 2458 1400 2459 1394 2460 1396 2461 1402 2462 1386 2463 1388 2464 1404 2465 1388 2466 1398 2467 1406 2468 1390 2469 1392 2470 1408 2471 1392 2472 1400 2473 1410 2474 1400 2475 1412 2476 1410 2477 1396 2478 1414 2479 1402 2480 1404 2481 1388 2482 1406 2483 1398 2484 1416 2485 1406 2486 1408 2487 1392 2488 1418 2489 1410 2490 1412 2491 1420 2492 1402 2493 1414 2494 1422 2495 1404 2496 1406 2497 1424 2498 1406 2499 1416 2500 1426 2501 1428 2502 1408 2503 1418 2504 1428 2505 1418 2506 1420 2507 1412 2508 1430 2509 1420 2510 1414 2511 1432 2512 1422 2513 1424 2514 1406 2515 1434 2516 1426 2517 1416 2518 1436 2519 1438 2520 1428 2521 1420 2522 1420 2523 1430 2524 1440 2525 1432 2526 1442 2527 1422 2528 1424 2529 1434 2530 1444 2531 1426 2532 1436 2533 1446 2534 1446 2535 1436 2536 1448 2537 1440 2538 1438 2539 1420 2540 1430 2541 1450 2542 1440 2543 1432 2544 1452 2545 1442 2546 1434 2547 1446 2548 1444 2549 1446 2550 1448 2551 1454 2552 1456 2553 1438 2554 1440 2555 1440 2556 1450 2557 1458 2558 1452 2559 1460 2560 1442 2561 1444 2562 1446 2563 1462 2564 1446 2565 1454 2566 1462 2567 1454 2568 1448 2569 1464 2570 1458 2571 1456 2572 1440 2573 1450 2574 1466 2575 1458 2576 1468 2577 1460 2578 1452 2579 1462 2580 1454 2581 1470 2582 1454 2583 1464 2584 1472 2585 1474 2586 1456 2587 1458 2588 1476 2589 1458 2590 1466 2591 1468 2592 1478 2593 1460 2594 1480 2595 1478 2596 1468 2597 1454 2598 1472 2599 1470 2600 1464 2601 1482 2602 1472 2603 1476 2604 1474 2605 1458 2606 1476 2607 1466 2608 1484 2609 1480 2610 1486 2611 1478 2612 1470 2613 1472 2614 1488 2615 1472 2616 1482 2617 1490 2618 1492 2619 1474 2620 1476 2621 1494 2622 1476 2623 1484 2624 1494 2625 1484 2626 1496 2627 1498 2628 1486 2629 1480 2630 1472 2631 1490 2632 1488 2633 1482 2634 1500 2635 1490 2636 1494 2637 1492 2638 1476 2639 1502 2640 1494 2641 1496 2642 1498 2643 1504 2644 1486 2645 1488 2646 1490 2647 1506 2648 1490 2649 1500 2650 1508 2651 1510 2652 1492 2653 1494 2654 1502 2655 1510 2656 1494 2657 1502 2658 1496 2659 1512 2660 1514 2661 1504 2662 1498 2663 1490 2664 1508 2665 1506 2666 1500 2667 1516 2668 1508 2669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1717\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1718\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"890\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 7 4 9 5 4 12 5 13 17 18 19 21 7 3 24 17 25 9 27 5 13 5 29 31 12 13 19 18 33 25 17 19 35 7 21 31 37 12 39 24 25 41 27 9 27 29 5 45 46 47 47 50 51 55 56 57 18 59 33 62 57 63 65 35 21 67 37 31 70 62 71 73 24 39 41 75 27 27 77 29 45 56 46 47 46 50 51 50 79 81 56 55 57 56 63 59 83 33 62 63 71 85 35 65 67 65 37 87 51 79 70 71 89 91 73 39 93 75 41 75 77 27 95 56 45 98 81 99 102 98 103 99 81 55 95 63 56 105 83 59 107 71 63 109 85 65 65 67 111 113 87 79 115 89 71 117 70 89 119 73 91 93 121 75 75 123 77 103 98 99 125 102 103 107 63 95 105 127 83 115 71 107 129 85 109 65 111 109 131 87 113 133 102 125 135 89 115 117 89 137 139 119 91 141 121 93 121 123 75 144 145 127 144 127 105 121 147 123 129 109 149 109 111 151 153 131 113 125 155 133 158 159 147 137 89 135 161 117 137 139 163 119 141 158 121 165 145 144 158 147 121 129 149 167 109 151 149 169 131 153 155 171 133 165 173 145 175 159 158 177 137 135 161 137 179 181 163 139 183 158 141 167 149 185 149 151 187 189 169 153 155 191 171 193 173 165 183 175 158 175 195 159 179 137 177 197 161 179 181 199 163 167 185 201 149 187 185 203 169 189 191 189 171 193 205 173 207 175 183 209 195 175 211 179 177 197 179 213 215 199 181 201 185 217 185 187 219 221 203 189 191 223 189 225 205 193 215 227 199 207 209 175 209 229 195 213 179 211 231 197 213 201 217 233 185 219 217 221 235 203 223 221 189 237 205 225 239 227 215 241 209 207 243 229 209 245 213 211 247 231 213 233 217 249 217 219 251 253 235 221 223 255 221 257 237 225 247 259 231 239 261 227 243 209 241 243 263 229 265 213 245 233 249 267 217 251 249 253 269 235 255 253 221 271 237 257 273 259 247 275 261 239 277 243 241 279 263 243 265 245 281 267 249 283 249 251 285 287 269 253 255 289 253 291 271 257 273 265 281 273 293 259 275 295 261 297 243 277 279 299 263 267 283 301 249 285 283 287 303 269 289 287 253 305 271 291 273 281 307 309 293 273 275 311 295 313 297 277 315 299 279 301 283 317 283 285 319 321 303 287 289 323 287 325 305 291 327 299 315 273 307 309 309 329 293 311 331 295 313 315 297 301 317 333 283 319 317 321 335 303 323 321 287 337 305 325 339 327 315 309 307 341 343 329 309 311 345 331 347 315 313 333 317 349 319 351 317 353 335 321 321 323 355 337 325 357 347 339 315 359 327 339 309 341 343 343 361 329 331 345 363 333 349 365 317 351 367 353 369 335 321 355 353 371 337 357 373 339 347 375 359 339 343 341 377 361 343 379 345 381 363 365 349 383 351 385 367 387 369 353 353 355 389 371 357 391 363 381 393 373 375 339 375 395 359 343 377 379 397 361 379 365 383 399 367 385 401 387 403 369 353 389 387 405 371 391 381 407 393 409 375 373 411 395 375 379 377 413 397 379 415 383 417 399 401 385 419 387 421 403 387 389 423 405 391 425 427 397 415 393 407 429 409 411 375 411 431 395 379 413 415 399 417 433 401 419 417 421 435 403 387 423 421 405 425 437 427 415 439 407 441 429 443 411 409 445 431 411 415 413 447 417 449 433 417 419 451 421 453 435 421 423 455 437 425 457 415 447 439 459 427 439 429 441 461 443 445 411 445 463 431 433 449 465 417 451 449 435 453 467 421 455 453 437 457 469 439 447 471 459 439 473 441 475 461 477 445 443 479 463 445 465 449 481 449 451 483 453 485 467 455 487 453 469 457 489 479 491 463 439 471 473 493 459 473 461 475 495 477 479 445 465 481 497 449 483 481 467 485 499 487 485 453 469 489 501 503 491 479 471 505 473 493 473 507 495 475 509 511 479 477 497 481 513 481 483 515 485 517 499 487 519 485 501 489 521 511 503 479 503 523 491 473 505 525 527 493 507 495 509 529 497 513 531 481 515 513 499 517 533 519 517 485 501 521 535 537 503 511 539 523 503 505 541 525 527 507 543 529 509 545 531 513 547 513 515 549 517 551 533 519 553 517 535 521 555 529 545 557 537 539 503 539 559 523 525 541 561 563 527 543 531 547 565 513 549 547 533 551 567 553 551 517 535 555 569 557 545 571 537 573 539 575 559 539 541 577 561 543 579 563 565 547 581 547 549 583 567 551 585 553 587 551 555 589 569 563 579 591 557 571 593 539 573 575 575 595 559 561 577 597 565 581 599 547 583 581 567 585 601 587 585 551 569 589 603 579 605 591 593 571 607 573 609 575 595 575 611 577 613 597 599 581 615 581 583 617 601 585 619 587 621 585 589 623 603 613 625 597 591 605 627 593 607 629 575 609 631 595 611 633 599 615 635 581 617 615 601 619 637 621 619 585 603 623 639 641 625 613 605 643 627 629 607 645 631 609 647 633 611 649 635 615 651 653 615 617 637 619 655 621 657 619 623 659 639 633 649 661 641 663 625 627 643 665 667 629 645 631 647 669 635 651 671 651 615 653 637 655 673 657 675 619 639 659 677 649 679 661 681 663 641 643 683 665 685 667 645 669 647 687 689 671 651 691 651 653 673 655 693 695 675 657 659 697 677 669 687 679 661 679 699 681 683 663 665 683 701 703 667 685 689 705 671 707 651 691 673 693 709 711 675 695 697 713 677 715 679 687 717 699 679 719 683 681 701 683 721 723 703 685 725 705 689 727 707 691 709 693 729 731 711 695 697 733 713 735 703 723 715 717 679 717 737 699 719 721 683 739 701 721 741 705 725 727 743 707 709 729 745 747 711 731 733 749 713 751 735 723 753 717 715 755 737 717 757 721 719 739 721 759 761 741 725 763 743 727 745 729 765 767 747 731 769 749 733 771 739 759 773 735 751 753 755 717 755 775 737 757 759 721 777 741 761 763 761 743 779 745 765 781 747 767 769 783 749 771 759 785 787 773 751 789 755 753 791 775 755 793 759 757 795 777 761 761 763 797 799 779 765 767 801 781 803 783 769 793 785 759 805 771 785 807 773 787 789 791 755 791 809 775 811 777 795 761 797 795 813 779 799 801 815 781 803 817 783 819 785 793 805 785 821 823 807 787 825 791 789 827 809 791 811 795 829 795 797 831 833 813 799 801 835 815 837 817 803 827 839 809 821 785 819 841 805 821 823 843 807 825 827 791 811 829 845 795 831 829 847 813 833 835 849 815 837 851 817 853 839 827 855 821 819 841 821 857 859 843 823 861 827 825 845 829 863 829 831 865 867 847 833 835 869 849 871 851 837 861 853 827 853 873 839 857 821 855 875 841 857 859 877 843 845 863 879 829 865 863 881 847 867 869 867 849 871 883 851 885 853 861 887 873 853 889 857 855 875 857 891 893 877 859 879 863 895 863 865 897 899 881 867 869 901 867 903 883 871 893 905 877 885 887 853 887 907 873 891 857 889 909 875 891 879 895 911 863 897 895 899 913 881 901 899 867 915 883 903 917 905 893 919 887 885 921 907 887 923 891 889 925 909 891 911 895 927 895 897 929 931 913 899 901 933 899 935 915 903 925 937 909 917 939 905 921 887 919 921 941 907 943 891 923 911 927 945 895 929 927 931 947 913 933 931 899 949 915 935 951 937 925 953 939 917 955 921 919 957 941 921 943 923 959 945 927 961 927 929 963 965 947 931 933 967 931 969 949 935 951 943 959 951 971 937 953 973 939 975 921 955 977 941 957 945 961 979 927 963 961 965 981 947 967 965 931 983 949 969 951 959 985 987 971 951 953 989 973 991 975 955 993 977 957 979 961 995 961 963 997 999 981 965 967 1001 965 1003 983 969 1005 977 993 951 985 987 987 1007 971 989 1009 973 991 993 975 979 995 1011 961 997 995 999 1013 981 1001 999 965 1015 983 1003 1017 1005 993 987 985 1019 1021 1007 987 989 1023 1009 1025 993 991 1011 995 1027 997 1029 995 1031 1013 999 999 1001 1033 1015 1003 1035 1025 1017 993 1037 1005 1017 987 1019 1021 1021 1039 1007 1009 1023 1041 1011 1027 1043 995 1029 1045 1031 1047 1013 999 1033 1031 1049 1015 1035 1051 1017 1025 1053 1037 1017 1021 1019 1055 1039 1021 1057 1023 1059 1041 1043 1027 1061 1029 1063 1045 1065 1047 1031 1031 1033 1067 1049 1035 1069 1041 1059 1071 1051 1053 1017 1053 1073 1037 1021 1055 1057 1075 1039 1057 1043 1061 1077 1045 1063 1079 1065 1081 1047 1031 1067 1065 1083 1049 1069 1059 1085 1071 1087 1053 1051 1089 1073 1053 1057 1055 1091 1075 1057 1093 1061 1095 1077 1079 1063 1097 1065 1099 1081 1065 1067 1101 1083 1069 1103 1105 1075 1093 1071 1085 1107 1087 1089 1053 1089 1109 1073 1057 1091 1093 1077 1095 1111 1079 1097 1095 1099 1113 1081 1065 1101 1115 1083 1103 1117 1105 1093 1119 1085 1121 1107 1123 1089 1087 1125 1109 1089 1093 1091 1127 1095 1129 1111 1095 1097 1131 1099 1133 1113 1101 1135 1115 1117 1103 1137 1093 1127 1119 1139 1105 1119 1107 1121 1141 1123 1125 1089 1125 1143 1109 1111 1129 1145 1095 1131 1129 1113 1133 1147 1135 1133 1115 1117 1137 1149 1119 1127 1151 1139 1119 1153 1121 1155 1141 1157 1125 1123 1159 1143 1125 1145 1129 1161 1129 1131 1163 1133 1165 1147 1135 1167 1133 1149 1137 1169 1159 1171 1143 1119 1151 1153 1173 1139 1153 1141 1155 1175 1157 1159 1125 1145 1161 1177 1129 1163 1161 1147 1165 1179 1167 1165 1133 1149 1169 1181 1183 1171 1159 1151 1185 1153 1173 1153 1187 1175 1155 1189 1191 1159 1157 1177 1161 1193 1161 1163 1195 1165 1197 1179 1167 1199 1165 1181 1169 1201 1191 1183 1159 1183 1203 1171 1153 1185 1205 1207 1173 1187 1175 1189 1209 1177 1193 1211 1161 1195 1193 1179 1197 1213 1199 1197 1165 1181 1201 1215 1217 1183 1191 1219 1203 1183 1185 1221 1205 1207 1187 1223 1209 1189 1225 1209 1225 1227 1217 1219 1183 1219 1229 1203 1205 1221 1231 1233 1207 1223 1227 1225 1235 1217 1237 1219 1229 1219 1239 1221 1241 1231 1223 1243 1233 1233 1243 1245 1227 1235 1247 1219 1237 1239 1229 1239 1249 1231 1241 1251 1243 1253 1245 1247 1235 1255 1237 1257 1239 1249 1239 1259 1241 1261 1251 1261 1263 1251 1245 1253 1265 1247 1255 1267 1239 1257 1269 1249 1259 1271 1273 1263 1261 1253 1275 1265 1267 1255 1277 1269 1257 1279 1271 1259 1281 1271 1281 1283 1273 1285 1263 1265 1275 1287 1289 1267 1277 1269 1279 1281 1281 1291 1283 1293 1285 1273 1275 1295 1287 1297 1289 1277 1299 1281 1279 1299 1291 1281 1283 1291 1301 1293 1295 1285 1287 1295 1303 1305 1289 1297 1307 1291 1299 1309 1301 1291 1311 1295 1293 1303 1295 1313 1315 1305 1297 1317 1305 1315 1307 1309 1291 1309 1319 1301 1311 1313 1295 1321 1303 1313 1323 1317 1315 1325 1309 1307 1327 1319 1309 1329 1313 1311 1321 1313 1331 1333 1321 1331 1335 1317 1323 1325 1327 1309 1327 1337 1319 1329 1331 1313 1333 1331 1339 1341 1335 1323 1343 1327 1325 1345 1337 1327 1347 1331 1329 1347 1339 1331 1349 1333 1339 1351 1335 1341 1343 1345 1327 1345 1353 1337 1355 1339 1347 1349 1339 1357 1359 1351 1341 1361 1345 1343 1363 1353 1345 1363 1365 1353 1357 1339 1355 1367 1349 1357 1359 1369 1351 1361 1363 1345 1371 1365 1363 1373 1357 1355 1367 1357 1375 1377 1369 1359 1379 1363 1361 1379 1371 1363 1371 1381 1365 1375 1357 1373 1383 1367 1375 1377 1385 1369 1387 1371 1379 1389 1381 1371 1391 1375 1373 1383 1375 1393 1395 1385 1377 1395 1397 1385 1387 1389 1371 1389 1399 1381 1393 1375 1391 1401 1383 1393 1403 1397 1395 1405 1389 1387 1407 1399 1389 1409 1393 1391 1411 1401 1393 1411 1413 1401 1403 1415 1397 1407 1389 1405 1407 1417 1399 1419 1393 1409 1421 1413 1411 1423 1415 1403 1425 1407 1405 1427 1417 1407 1419 1409 1429 1421 1419 1429 1421 1431 1413 1423 1433 1415 1435 1407 1425 1437 1417 1427 1421 1429 1439 1441 1431 1421 1423 1443 1433 1445 1435 1425 1447 1437 1427 1449 1437 1447 1421 1439 1441 1441 1451 1431 1443 1453 1433 1445 1447 1435 1455 1449 1447 1441 1439 1457 1459 1451 1441 1443 1461 1453 1463 1447 1445 1463 1455 1447 1465 1449 1455 1441 1457 1459 1459 1467 1451 1453 1461 1469 1471 1455 1463 1473 1465 1455 1459 1457 1475 1467 1459 1477 1461 1479 1469 1469 1479 1481 1471 1473 1455 1473 1483 1465 1459 1475 1477 1485 1467 1477 1479 1487 1481 1489 1473 1471 1491 1483 1473 1477 1475 1493 1485 1477 1495 1497 1485 1495 1481 1487 1499 1489 1491 1473 1491 1501 1483 1477 1493 1495 1497 1495 1503 1487 1505 1499 1507 1491 1489 1509 1501 1491 1495 1493 1511 1495 1511 1503 1513 1497 1503 1499 1505 1515 1507 1509 1491 1509 1517 1501</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1717\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1722\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1723\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1726\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"30\">-0.6839439272880554 1.402427673339844 0.0003010407090187073 -0.6568337678909302 1.379017114639282 -0.003134805709123612 -0.6761385798454285 1.40332818031311 0.01056023687124252 -0.6761385798454285 1.40332818031311 0.01056023687124252 -0.6568337678909302 1.379017114639282 -0.003134805709123612 -0.6839439272880554 1.402427673339844 0.0003010407090187073 -0.653416633605957 1.383425712585449 0.007677655667066574 -0.653416633605957 1.383425712585449 0.007677655667066574 -0.61176598072052 1.378705859184265 -0.008583445101976395 -0.61176598072052 1.378705859184265 -0.008583445101976395</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1726\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1724\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1727\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"30\">0.5409079490672565 0.6957494617548015 -0.472600547083643 0.2763834199718249 0.8551930591528619 -0.4384712496178597 0.5430304145553483 0.6959188850689713 -0.4699094319889809 -0.5430304145553483 -0.6959188850689713 0.4699094319889809 -0.2763834199718249 -0.8551930591528619 0.4384712496178597 -0.5409079490672565 -0.6957494617548015 0.472600547083643 0.2921036455529176 0.8497824160601982 -0.4387998468659575 -0.2921036455529176 -0.8497824160601982 0.4387998468659575 -0.03794787228475661 0.9294557085636185 -0.3669768995557645 0.03794787228475661 -0.9294557085636185 0.3669768995557645</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"10\" source=\"#ID1727\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1725\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1723\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1724\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"6\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 1 8 6 7 9 4</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1725\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1728\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1729\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1732\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.6544483304023743 1.382906556129456 -0.03208892792463303 -0.6791197061538696 1.404064536094666 -0.02896468713879585 -0.6528294682502747 1.384758353233337 -0.01757699251174927 -0.6528294682502747 1.384758353233337 -0.01757699251174927 -0.6791197061538696 1.404064536094666 -0.02896468713879585 -0.6544483304023743 1.382906556129456 -0.03208892792463303</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1732\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1730\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1733\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"18\">-0.6295653120525944 -0.7587756278652171 0.1670540763281906 -0.6295653120525944 -0.7587756278652171 0.1670540763281906 -0.6295653120525944 -0.7587756278652171 0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906 0.6295653120525944 0.7587756278652171 -0.1670540763281906</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"6\" source=\"#ID1733\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1731\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1729\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1730\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1731\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1734\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1735\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1739\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"4554\">-0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5850709080696106 1.396236777305603 -0.1415597796440125 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5850709080696106 1.396236777305603 -0.1415597796440125 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5789234042167664 1.406204342842102 -0.1447985619306564 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.5744038820266724 1.405291795730591 -0.1381869614124298 -0.581110954284668 1.394464015960693 -0.1348943710327148 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5930285453796387 1.385660529136658 -0.1309568136930466 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5960053205490112 1.388214826583862 -0.1377354264259338 -0.5960053205490112 1.388214826583862 -0.1377354264259338 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5779242515563965 1.416926026344299 -0.1474429965019226 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5743972659111023 1.405820250511169 -0.1524988412857056 -0.5733269453048706 1.417559027671814 -0.1551506966352463 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5811005830764771 1.394991993904114 -0.14920574426651 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.5746597647666931 1.392412900924683 -0.1467487365007401 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5670607089996338 1.404430389404297 -0.1410325765609741 -0.5746646523475647 1.392083287239075 -0.1376418173313141 -0.5746597647666931 1.392412900924683 -0.1467487365007401 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5733376145362854 1.41703724861145 -0.1408379971981049 -0.5881686210632324 1.382356405258179 -0.1426282227039337 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5881763100624085 1.382025361061096 -0.1335196495056152 -0.5881686210632324 1.382356405258179 -0.1426282227039337 -0.5819917321205139 1.427334427833557 -0.1494816094636917 -0.5819917321205139 1.427334427833557 -0.1494816094636917 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.605396568775177 1.375316143035889 -0.1379894018173218 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.6054044961929321 1.374968647956848 -0.1288828998804092 -0.605396568775177 1.375316143035889 -0.1379894018173218 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6082461476325989 1.379386425018311 -0.1265382170677185 -0.6099938750267029 1.382491946220398 -0.1334818005561829 -0.6099938750267029 1.382491946220398 -0.1334818005561829 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5670542716979981 1.404778361320496 -0.1501395106315613 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5777710676193237 1.428887963294983 -0.1571381986141205 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709267258644104 1.430877685546875 -0.1546984165906906 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5658666491508484 1.418062806129456 -0.1527946442365646 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5658748149871826 1.417851090431213 -0.1436835825443268 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.5930126309394836 1.38619601726532 -0.1452663987874985 -0.6249552369117737 1.372067928314209 -0.1330464780330658 -0.6249552369117737 1.372067928314209 -0.1330464780330658 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.5777859687805176 1.428370237350464 -0.1428270936012268 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.5907177329063416 1.436359405517578 -0.1509662568569183 -0.5907177329063416 1.436359405517578 -0.1509662568569183 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.6082371473312378 1.379966974258423 -0.1408673971891403 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6249613761901856 1.371738433837891 -0.1239395886659622 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6255230903625488 1.376579999923706 -0.121887594461441 -0.6258568167686462 1.37988018989563 -0.1289798319339752 -0.6258568167686462 1.37988018989563 -0.1289798319339752 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5709293484687805 1.43054211139679 -0.1455912441015244 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5872887969017029 1.438705682754517 -0.1585217714309692 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5817292332649231 1.441959619522095 -0.1559189856052399 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5817371606826782 1.441629409790039 -0.1468120813369751 -0.5873063206672669 1.438181281089783 -0.1442125737667084 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6449195742607117 1.372947692871094 -0.1280253380537033 -0.6449195742607117 1.372947692871094 -0.1280253380537033 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.625505805015564 1.377107977867127 -0.1361974477767944 -0.603263258934021 1.443111658096314 -0.1520082503557205 -0.603263258934021 1.443111658096314 -0.1520082503557205 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6420464515686035 1.380591630935669 -0.1244172155857086 -0.6420464515686035 1.380591630935669 -0.1244172155857086 -0.6431367993354797 1.377888560295105 -0.1314601451158524 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6449275016784668 1.372607588768005 -0.1189187616109848 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6431519389152527 1.377366900444031 -0.1171497851610184 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009665727615356 1.445514917373657 -0.1451115608215332 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.6009578108787537 1.446044206619263 -0.1594236195087433 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972235798835754 1.450257062911987 -0.1565933525562286 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.5972265005111694 1.449928045272827 -0.1474846750497818 -0.6569705605506897 1.384566307067871 -0.119984433054924 -0.6569705605506897 1.384566307067871 -0.119984433054924 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6633379459381104 1.377706408500671 -0.1231223493814468 -0.6633379459381104 1.377706408500671 -0.1231223493814468 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6183810234069824 1.446958065032959 -0.15275639295578 -0.6183810234069824 1.446958065032959 -0.15275639295578 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6158870458602905 1.454949855804443 -0.1569075584411621 -0.6158870458602905 1.454949855804443 -0.1569075584411621 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6593910455703735 1.382216930389404 -0.1268634498119354 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6633502840995789 1.377511739730835 -0.1140566319227219 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6594048738479614 1.381690621376038 -0.1125527173280716 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174402832984924 1.44967794418335 -0.1456945240497589 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6174294948577881 1.450215935707092 -0.160007044672966 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6158931255340576 1.454620957374573 -0.147800087928772 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6691690683364868 1.391404628753662 -0.1158596873283386 -0.6691690683364868 1.391404628753662 -0.1158596873283386 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6784166097640991 1.386274456977844 -0.1186821758747101 -0.6784166097640991 1.386274456977844 -0.1186821758747101 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6346040964126587 1.447518587112427 -0.1533942818641663 -0.6346040964126587 1.447518587112427 -0.1533942818641663 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6358919143676758 1.455586194992065 -0.1570864319801331 -0.6358919143676758 1.455586194992065 -0.1570864319801331 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726994514465332 1.389138460159302 -0.1082917451858521 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6726873517036438 1.389655232429504 -0.122603178024292 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6782665848731995 1.385945916175842 -0.1095806956291199 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6351048946380615 1.450280666351318 -0.1461588889360428 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6350918412208557 1.450795531272888 -0.1604701429605484 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6359038949012756 1.45525586605072 -0.1479797810316086 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6774526238441467 1.400427103042603 -0.1121946573257446 -0.6774526238441467 1.400427103042603 -0.1121946573257446 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6503424048423767 1.444744110107422 -0.1541148126125336 -0.6503424048423767 1.444744110107422 -0.1541148126125336 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6552913784980774 1.452123165130615 -0.1573689877986908 -0.6552913784980774 1.452123165130615 -0.1573689877986908 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6886771321296692 1.397080063819885 -0.105656810104847 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817291378974915 1.398963928222656 -0.1045301854610443 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6817198395729065 1.399486303329468 -0.1188419908285141 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6886652112007141 1.397411704063416 -0.1147638559341431 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6522330045700073 1.447238445281982 -0.1467113643884659 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6523584723472595 1.447764039039612 -0.1610070168972015 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6552984714508057 1.451777815818787 -0.1482616066932678 -0.6930937767028809 1.41014289855957 -0.1115392148494721 -0.6930937767028809 1.41014289855957 -0.1115392148494721 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6640493273735046 1.438929200172424 -0.1551009118556976 -0.6640493273735046 1.438929200172424 -0.1551009118556976 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.672182023525238 1.444900512695313 -0.1579820066690445 -0.672182023525238 1.444900512695313 -0.1579820066690445 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6931043267250061 1.409807562828064 -0.1024323403835297 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6856203675270081 1.410184979438782 -0.1013812944293022 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6810100674629211 1.4107346534729 -0.1090919822454453 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6856104731559753 1.410722374916077 -0.1156939268112183 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671518683433533 1.440880537033081 -0.1475541442632675 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6671419143676758 1.441409468650818 -0.161866769194603 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6722963452339172 1.44455897808075 -0.1488687992095947 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6912596821784973 1.423226833343506 -0.1090674251317978 -0.6912596821784973 1.423226833343506 -0.1090674251317978 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6794900298118591 1.421321630477905 -0.1066007241606712 -0.6794900298118591 1.421321630477905 -0.1066007241606712 -0.6743879318237305 1.430635929107666 -0.1565102338790894 -0.6743879318237305 1.430635929107666 -0.1565102338790894 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6848939657211304 1.434637069702148 -0.1591162979602814 -0.6848939657211304 1.434637069702148 -0.1591162979602814 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6839701533317566 1.422252058982849 -0.113209992647171 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6912685632705689 1.422880530357361 -0.09996114671230316 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6839803457260132 1.421724557876587 -0.09889763593673706 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783995032310486 1.431848287582398 -0.1488619595766068 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6783829927444458 1.432364702224731 -0.1631715595722199 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6849020719528198 1.434307217597961 -0.150008887052536 -0.6730406284332275 1.431132555007935 -0.1047087833285332 -0.6730406284332275 1.431132555007935 -0.1047087833285332 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6833488345146179 1.435347318649292 -0.1073383688926697 -0.6833488345146179 1.435347318649292 -0.1073383688926697 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6922057271003723 1.422344446182251 -0.1609204709529877 -0.6922057271003723 1.422344446182251 -0.1609204709529877 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6769636869430542 1.432947278022766 -0.1113792806863785 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6833555102348328 1.435020446777344 -0.09823190420866013 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6769745349884033 1.432419419288635 -0.09706810861825943 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6848656535148621 1.421006202697754 -0.1507544815540314 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6803404688835144 1.42070734500885 -0.1584602147340775 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6848554611206055 1.42153799533844 -0.165065661072731 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6922092437744141 1.422011852264404 -0.1518127620220184 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6623038053512573 1.439197421073914 -0.1033507362008095 -0.6623038053512573 1.439197421073914 -0.1033507362008095 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.6699572801589966 1.445349335670471 -0.1062754094600678 -0.6699572801589966 1.445349335670471 -0.1062754094600678 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6933844089508057 1.409244656562805 -0.1634690910577774 -0.6933844089508057 1.409244656562805 -0.1634690910577774 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.6652926802635193 1.441229462623596 -0.09581755101680756 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.665280282497406 1.441744923591614 -0.1101286560297012 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6701429486274719 1.445011019706726 -0.09715823829174042 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6859285831451416 1.409452319145203 -0.1533077210187912 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6813335418701172 1.41009795665741 -0.1610163450241089 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6859195828437805 1.409978747367859 -0.1676196157932282 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6933894157409668 1.408906221389771 -0.1543624848127365 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6483189463615418 1.444727420806885 -0.1024002805352211 -0.6483189463615418 1.444727420806885 -0.1024002805352211 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6528607606887817 1.452198028564453 -0.1057026162743568 -0.6528607606887817 1.452198028564453 -0.1057026162743568 -0.6772618293762207 1.39987325668335 -0.1641806960105896 -0.6772618293762207 1.39987325668335 -0.1641806960105896 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6882098317146301 1.396625757217407 -0.1667627543210983 -0.6882098317146301 1.396625757217407 -0.1667627543210983 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6529307365417481 1.451867699623108 -0.09658832848072052 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500725746154785 1.447261810302734 -0.09501345455646515 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6500598788261414 1.447778463363648 -0.1093240082263947 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814800500869751 1.39831006526947 -0.1565234363079071 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6814699172973633 1.398846030235291 -0.1708352863788605 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6883298754692078 1.396288514137268 -0.1576631367206574 -0.6333565711975098 1.45525586605072 -0.1054370924830437 -0.6333565711975098 1.45525586605072 -0.1054370924830437 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6324572563171387 1.447163939476013 -0.1016970723867416 -0.6324572563171387 1.447163939476013 -0.1016970723867416 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6687233448028565 1.391040802001953 -0.1678927093744278 -0.6687233448028565 1.391040802001953 -0.1678927093744278 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6775147318840027 1.385725855827332 -0.1707536578178406 -0.6775147318840027 1.385725855827332 -0.1707536578178406 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6333609819412231 1.454914927482605 -0.09632831066846848 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6328076124191284 1.449921846389771 -0.09447946399450302 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6327963471412659 1.450446963310242 -0.1087907701730728 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719607710838318 1.388700366020203 -0.1603450477123261 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6719453930854797 1.389216899871826 -0.1746547073125839 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6775225400924683 1.385392904281616 -0.1616461724042893 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6133941411972046 1.454185128211975 -0.1052539274096489 -0.6133941411972046 1.454185128211975 -0.1052539274096489 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6162789463996887 1.446246385574341 -0.1010573506355286 -0.6162789463996887 1.446246385574341 -0.1010573506355286 -0.6559849381446838 1.384477019309998 -0.1720629781484604 -0.6559849381446838 1.384477019309998 -0.1720629781484604 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6620186567306519 1.377620458602905 -0.1752837896347046 -0.6620186567306519 1.377620458602905 -0.1752837896347046 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6151765584945679 1.449482917785645 -0.1083251088857651 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6134046316146851 1.453861832618713 -0.09614704549312592 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6151882410049439 1.448953866958618 -0.09401369839906693 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582914590835571 1.381542205810547 -0.1646480113267899 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6582787036895752 1.382075905799866 -0.1789581030607224 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6620278358459473 1.377280712127686 -0.1661770045757294 -0.6013543605804443 1.442081570625305 -0.1002846360206604 -0.6013543605804443 1.442081570625305 -0.1002846360206604 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.6408566832542419 1.380822777748108 -0.1765177100896835 -0.6408566832542419 1.380822777748108 -0.1765177100896835 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6433469653129578 1.373119354248047 -0.1801735311746597 -0.6433469653129578 1.373119354248047 -0.1801735311746597 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.598922610282898 1.444963216781616 -0.107716292142868 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949774980545044 1.449093341827393 -0.1049124225974083 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5949837565422058 1.448763251304627 -0.09580406546592712 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.5989367961883545 1.444435715675354 -0.09340649843215942 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418124437332153 1.377573370933533 -0.1692684143781662 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6418019533157349 1.378099203109741 -0.18357914686203 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.6433539390563965 1.372785568237305 -0.1710661202669144 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5891588926315308 1.435057163238525 -0.09920486062765122 -0.5891588926315308 1.435057163238525 -0.09920486062765122 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.6246308088302612 1.380454540252686 -0.1810832619667053 -0.6246308088302612 1.380454540252686 -0.1810832619667053 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6233323812484741 1.37267804145813 -0.1851973384618759 -0.6233323812484741 1.37267804145813 -0.1851973384618759 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856417417526245 1.436803936958313 -0.09246157854795456 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5856331586837769 1.437319397926331 -0.1067737191915512 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799046754837036 1.440465927124023 -0.1041889116168022 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.5799131393432617 1.440125823020935 -0.09508234262466431 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241443157196045 1.377174258232117 -0.1740087121725082 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6241312026977539 1.377699136734009 -0.1883207559585571 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.6233411431312561 1.37233829498291 -0.1760906875133514 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5808806419372559 1.42584764957428 -0.09766633808612824 -0.5808806419372559 1.42584764957428 -0.09766633808612824 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.6084317564964294 1.383298873901367 -0.1856234967708588 -0.6084317564964294 1.383298873901367 -0.1856234967708588 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6034061312675476 1.376229882240295 -0.1901844590902329 -0.6034061312675476 1.376229882240295 -0.1901844590902329 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5696686506271362 1.428818345069885 -0.09379684180021286 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766149163246155 1.426789283752441 -0.09101974219083786 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5766008496284485 1.427306771278381 -0.1053304374217987 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.5696642398834229 1.429144740104675 -0.102904312312603 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065281629562378 1.38028872013092 -0.1787193417549133 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6065150499343872 1.380824446678162 -0.1930295675992966 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.6034160852432251 1.375901699066162 -0.1810772269964218 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5943745374679565 1.389306902885437 -0.189885824918747 -0.5943745374679565 1.389306902885437 -0.189885824918747 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5861319303512573 1.383688688278198 -0.1948245465755463 -0.5861319303512573 1.383688688278198 -0.1948245465755463 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655612945556641 1.415928602218628 -0.1008864194154739 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5655686259269714 1.415602803230286 -0.09177935868501663 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5730597376823425 1.415099740028381 -0.08892745524644852 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5776615142822266 1.415191650390625 -0.09552537649869919 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5730453729629517 1.41564416885376 -0.1032373532652855 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912379622459412 1.38684892654419 -0.1831227391958237 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5912255048751831 1.387431025505066 -0.1974427253007889 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5861337184906006 1.383358359336853 -0.1857156008481979 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5841846466064453 1.397872924804688 -0.1936603933572769 -0.5841846466064453 1.397872924804688 -0.1936603933572769 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5752330422401428 1.403651475906372 -0.1004541292786598 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679670572280884 1.402380108833313 -0.09808765351772308 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5679741501808167 1.402045249938965 -0.08897983282804489 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5752442479133606 1.403113603591919 -0.08614256978034973 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5797085762023926 1.404092788696289 -0.09275246411561966 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801571011543274 1.396175742149353 -0.1870025843381882 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5801420211791992 1.396691918373108 -0.2013123631477356 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.5735949277877808 1.394240379333496 -0.1988673955202103 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.573604166507721 1.393912792205811 -0.1897607147693634 -0.586337149143219 1.394140601158142 -0.08941585570573807 -0.586337149143219 1.394140601158142 -0.08941585570573807 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5761085748672485 1.390118598937988 -0.09458494186401367 -0.5761085748672485 1.390118598937988 -0.09458494186401367 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5824344158172607 1.392811298370361 -0.09705331921577454 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.5761144161224365 1.38973331451416 -0.085458904504776 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.582453191280365 1.392293095588684 -0.08274424821138382 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5738834142684937 1.407239437103272 -0.1902867555618286 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5784071087837219 1.40804123878479 -0.1968906074762344 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5738691091537476 1.407772660255432 -0.2045975476503372 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.5665103793144226 1.406776189804077 -0.2022402286529541 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.566516101360321 1.406434297561646 -0.1931337267160416 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.597230851650238 1.385961890220642 -0.08555353432893753 -0.597230851650238 1.385961890220642 -0.08555353432893753 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5895075798034668 1.380048990249634 -0.09043119847774506 -0.5895075798034668 1.380048990249634 -0.09043119847774506 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942952036857605 1.383392453193665 -0.0787682831287384 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.5942866802215576 1.383919715881348 -0.09308131784200668 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.589516818523407 1.37971568107605 -0.0813249945640564 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5730298161506653 1.418996095657349 -0.1929119378328323 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5776070356369019 1.418833255767822 -0.1995154321193695 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5730169415473938 1.419519782066345 -0.2072231769561768 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655693411827087 1.420083522796631 -0.2048662304878235 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.5655744671821594 1.419744610786438 -0.1957578510046005 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6113255023956299 1.380364418029785 -0.0812884196639061 -0.6113255023956299 1.380364418029785 -0.0812884196639061 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6068654656410217 1.373271226882935 -0.08584757149219513 -0.6068654656410217 1.373271226882935 -0.08584757149219513 -0.5818657279014587 1.429222106933594 -0.2015324234962463 -0.5818657279014587 1.429222106933594 -0.2015324234962463 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6068722605705261 1.372803092002869 -0.0766732394695282 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096302270889282 1.377291679382324 -0.07435642927885056 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.6096188426017761 1.377811193466187 -0.08866681903600693 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.577681303024292 1.430278301239014 -0.1948744356632233 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5776685476303101 1.430812239646912 -0.2091859728097916 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708605647087097 1.432844161987305 -0.2067403495311737 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.5708708167076111 1.432509899139404 -0.1976338624954224 -0.6264719963073731 1.370048642158508 -0.08082878589630127 -0.6264719963073731 1.370048642158508 -0.08082878589630127 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.627228856086731 1.377870798110962 -0.07677979022264481 -0.627228856086731 1.377870798110962 -0.07677979022264481 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.5907652378082275 1.438162326812744 -0.2029987573623657 -0.5907652378082275 1.438162326812744 -0.2029987573623657 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6264805197715759 1.369716882705689 -0.07172197103500366 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269466280937195 1.374564647674561 -0.06967961043119431 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.6269367933273315 1.375102162361145 -0.08399141579866409 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873817205429077 1.440011262893677 -0.1962379366159439 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5873729586601257 1.440538763999939 -0.2105502635240555 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818691253662109 1.443846225738525 -0.2079374939203262 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.5818772315979004 1.443515300750732 -0.1988306492567062 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.646413266658783 1.371087551116943 -0.0758097916841507 -0.646413266658783 1.371087551116943 -0.0758097916841507 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6433968544006348 1.378713488578796 -0.07221866399049759 -0.6433968544006348 1.378713488578796 -0.07221866399049759 -0.6034278273582459 1.444821834564209 -0.2040233165025711 -0.6034278273582459 1.444821834564209 -0.2040233165025711 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6445367932319641 1.376007080078125 -0.07925429940223694 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6464229226112366 1.37075686454773 -0.06670287251472473 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6445559859275818 1.375486612319946 -0.06494501233100891 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011794209480286 1.447242736816406 -0.1971209943294525 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.6011734008789063 1.447778224945068 -0.2114336341619492 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975128412246704 1.452012419700623 -0.2085931152105331 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.5975230932235718 1.451673030853272 -0.1994860470294952 -0.6582387089729309 1.382810711860657 -0.06779345870018005 -0.6582387089729309 1.382810711860657 -0.06779345870018005 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6647380590438843 1.376140356063843 -0.07095810770988464 -0.6647380590438843 1.376140356063843 -0.07095810770988464 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6186198592185974 1.448546290397644 -0.2047647386789322 -0.6186198592185974 1.448546290397644 -0.2047647386789322 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6162691712379456 1.45654559135437 -0.2088989764451981 -0.6162691712379456 1.45654559135437 -0.2088989764451981 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6607100963592529 1.380475521087647 -0.07466799765825272 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6647456288337708 1.37580156326294 -0.06185076385736466 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6609035134315491 1.379949569702148 -0.06033876910805702 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177328228950501 1.451282978057861 -0.1976975351572037 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6177206039428711 1.45180094242096 -0.2120086848735809 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.6162787079811096 1.456219553947449 -0.1997916847467423 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.6703106760978699 1.389740109443665 -0.06368611007928848 -0.6703106760978699 1.389740109443665 -0.06368611007928848 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6796504855155945 1.384695649147034 -0.06649493426084518 -0.6796504855155945 1.384695649147034 -0.06649493426084518 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6348575949668884 1.448981881141663 -0.2054028511047363 -0.6348575949668884 1.448981881141663 -0.2054028511047363 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6362943053245544 1.457031488418579 -0.2090783268213272 -0.6362943053245544 1.457031488418579 -0.2090783268213272 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.673873782157898 1.38749635219574 -0.05611360818147659 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6738608479499817 1.388030052185059 -0.07042459398508072 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6796594262123108 1.384361624717712 -0.057388786226511 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6354132294654846 1.451727509498596 -0.1981620788574219 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6353995203971863 1.452251195907593 -0.2124725431203842 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6363039612770081 1.456692457199097 -0.1999711692333221 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6784234642982483 1.398842453956604 -0.060040432959795 -0.6784234642982483 1.398842453956604 -0.060040432959795 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6505376100540161 1.446078181266785 -0.2061298489570618 -0.6505376100540161 1.446078181266785 -0.2061298489570618 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6556281447410584 1.453407168388367 -0.2093694508075714 -0.6556281447410584 1.453407168388367 -0.2093694508075714 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6897029876708984 1.395576357841492 -0.05349572747945786 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827253103256226 1.397401571273804 -0.0523749403655529 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6827111840248108 1.397922873497009 -0.06668570637702942 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6896926760673523 1.395901441574097 -0.06260257959365845 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524824500083923 1.448546290397644 -0.1987212300300598 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6524724960327148 1.449078798294067 -0.2130316942930222 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6556337475776672 1.453073143959045 -0.2002613693475723 -0.6938823461532593 1.408680319786072 -0.05940676108002663 -0.6938823461532593 1.408680319786072 -0.05940676108002663 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6641404628753662 1.440156102180481 -0.2071295976638794 -0.6641404628753662 1.440156102180481 -0.2071295976638794 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6723766326904297 1.446055293083191 -0.2099965065717697 -0.6723766326904297 1.446055293083191 -0.2099965065717697 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6938854455947876 1.408352017402649 -0.05029852688312531 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6863981485366821 1.408669829368591 -0.0492497943341732 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6817800998687744 1.409170031547546 -0.0569603256881237 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6863865852355957 1.409187912940979 -0.06356075406074524 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6674678325653076 1.442078948020935 -0.1995784044265747 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6672707796096802 1.442606687545776 -0.2138902246952057 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6724037528038025 1.445716619491577 -0.2008908092975617 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6918065547943115 1.421743154525757 -0.05696588382124901 -0.6918065547943115 1.421743154525757 -0.05696588382124901 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6800680756568909 1.419736385345459 -0.05449339374899864 -0.6800680756568909 1.419736385345459 -0.05449339374899864 -0.6742206811904907 1.431780219078064 -0.2085531204938889 -0.6742206811904907 1.431780219078064 -0.2085531204938889 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6849071979522705 1.435693502426148 -0.2111567407846451 -0.6849071979522705 1.435693502426148 -0.2111567407846451 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6845351457595825 1.420713901519775 -0.06110360473394394 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6918118596076965 1.421411275863648 -0.04785801097750664 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6845455169677734 1.420189619064331 -0.04679228365421295 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783635020256043 1.432957887649536 -0.2009061723947525 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6783543825149536 1.433475732803345 -0.2152172774076462 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6849160194396973 1.435360074043274 -0.2020495086908341 -0.6734410524368286 1.429511189460754 -0.05262438207864761 -0.6734410524368286 1.429511189460754 -0.05262438207864761 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6836695075035095 1.433806657791138 -0.05526319518685341 -0.6836695075035095 1.433806657791138 -0.05526319518685341 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6919834613800049 1.423349499702454 -0.2129876613616943 -0.6919834613800049 1.423349499702454 -0.2129876613616943 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6773338913917542 1.431349396705627 -0.05929950997233391 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6836769580841065 1.433473706245422 -0.04615573585033417 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6773427128791809 1.430829882621765 -0.04498735442757607 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6846347451210022 1.422068357467651 -0.2028246372938156 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6801003217697144 1.421895384788513 -0.2105291783809662 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6846209168434143 1.422597050666809 -0.2171361595392227 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.6919951438903809 1.423012375831604 -0.2038815319538117 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.6625518202781677 1.437491416931152 -0.05128387361764908 -0.6625518202781677 1.437491416931152 -0.05128387361764908 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.670270562171936 1.443693280220032 -0.05421211943030357 -0.670270562171936 1.443693280220032 -0.05421211943030357 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6929225921630859 1.410237550735474 -0.2155666798353195 -0.6929225921630859 1.410237550735474 -0.2155666798353195 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.665500283241272 1.439541459083557 -0.04375690966844559 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6654874682426453 1.440055966377258 -0.05806753784418106 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6702786684036255 1.44335949420929 -0.04510511830449104 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6854832172393799 1.410515546798706 -0.2054043859243393 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6808905005455017 1.411192178726196 -0.2131114006042481 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6854702234268189 1.411031842231751 -0.2197144627571106 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.6929291486740112 1.409893751144409 -0.2064598798751831 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.6484687328338623 1.442898869514465 -0.05034679174423218 -0.6484687328338623 1.442898869514465 -0.05034679174423218 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6529207229614258 1.45041811466217 -0.05366069078445435 -0.6529207229614258 1.45041811466217 -0.05366069078445435 -0.6766313910484314 1.401006579399109 -0.2162990570068359 -0.6766313910484314 1.401006579399109 -0.2162990570068359 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.652927041053772 1.450084567070007 -0.04455286636948586 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.65017169713974 1.445450901985169 -0.04296676069498062 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.6501614451408386 1.44597053527832 -0.05727827921509743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.680828332901001 1.399414896965027 -0.2086455523967743 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6808087825775147 1.399940371513367 -0.2229543328285217 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876245141029358 1.397657513618469 -0.2188946902751923 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6876313090324402 1.39732563495636 -0.2097879350185394 -0.6333166360855103 1.45330548286438 -0.05340726673603058 -0.6333166360855103 1.45330548286438 -0.05340726673603058 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6325675249099731 1.445207118988037 -0.04965006932616234 -0.6325675249099731 1.445207118988037 -0.04965006932616234 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6677297353744507 1.392238020896912 -0.2200373858213425 -0.6677297353744507 1.392238020896912 -0.2200373858213425 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6766144037246704 1.386852860450745 -0.2229033708572388 -0.6766144037246704 1.386852860450745 -0.2229033708572388 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6333238482475281 1.452973604202271 -0.04429985582828522 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328585743904114 1.447976469993591 -0.04243809729814529 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6328456997871399 1.448511958122253 -0.05674884095788002 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711212396621704 1.389871835708618 -0.2124867886304855 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6711085438728333 1.390391826629639 -0.2267983555793762 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.6766236424446106 1.386522054672241 -0.2137970328330994 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.6133754849433899 1.452083706855774 -0.05322098359465599 -0.6133754849433899 1.452083706855774 -0.05322098359465599 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6164035201072693 1.444173455238342 -0.04900713264942169 -0.6164035201072693 1.444173455238342 -0.04900713264942169 -0.6550570130348206 1.385769128799439 -0.224215105175972 -0.6550570130348206 1.385769128799439 -0.224215105175972 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6611210703849793 1.378874778747559 -0.2274495214223862 -0.6611210703849793 1.378874778747559 -0.2274495214223862 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.615243673324585 1.4473956823349 -0.05628038942813873 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6133869290351868 1.451751708984375 -0.04411515220999718 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6152613759040833 1.446865200996399 -0.04197105765342712 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6572862863540649 1.382830619812012 -0.2168052047491074 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6573042869567871 1.383353352546692 -0.2311172038316727 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6609703898429871 1.378539562225342 -0.2183439135551453 -0.6015651226043701 1.439891576766968 -0.04822826012969017 -0.6015651226043701 1.439891576766968 -0.04822826012969017 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.6398611068725586 1.382240414619446 -0.228678435087204 -0.6398611068725586 1.382240414619446 -0.228678435087204 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6422072649002075 1.374526381492615 -0.232350692152977 -0.6422072649002075 1.374526381492615 -0.232350692152977 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5990809202194214 1.442742824554443 -0.05566437169909477 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950599312782288 1.44684374332428 -0.05287004262208939 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5950642228126526 1.446516871452332 -0.04376213997602463 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.5990933179855347 1.442215204238892 -0.0413534976541996 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407589912414551 1.378994703292847 -0.2214326411485672 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6407491564750671 1.379517078399658 -0.2357449978590012 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.6422119140625 1.374193906784058 -0.22324338555336 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5897339582443237 1.432587265968323 -0.04706352949142456 -0.5897339582443237 1.432587265968323 -0.04706352949142456 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861180424690247 1.434245347976685 -0.04033220559358597 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5861073136329651 1.434776186943054 -0.05464353784918785 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802279710769653 1.437796831130981 -0.05208135396242142 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5802322030067444 1.437459349632263 -0.04297329112887383 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5824712514877319 1.422901391983032 -0.04536456242203713 -0.5824712514877319 1.422901391983032 -0.04536456242203713 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5710212588310242 1.425464868545532 -0.04152580350637436 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781128406524658 1.423687338829041 -0.03872904554009438 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.5781017541885376 1.424214482307434 -0.05304029956459999 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.571012020111084 1.42579460144043 -0.05063216015696526 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.567670464515686 1.412810564041138 -0.04852132126688957 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5676781535148621 1.412343502044678 -0.03941844776272774 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5751808285713196 1.412116646766663 -0.03655980527400971 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5797939300537109 1.412406325340271 -0.04315497726202011 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5751708149909973 1.412653803825378 -0.05087108537554741 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.5822021961212158 1.401564002037048 -0.0403386652469635 -0.5822021961212158 1.401564002037048 -0.0403386652469635 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5777789950370789 1.4009929895401 -0.04803450033068657 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5705989003181458 1.399592638015747 -0.04567830637097359 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.5706080794334412 1.399187207221985 -0.03655113652348518 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.577788770198822 1.400471806526184 -0.0337221622467041 -0.5894622206687927 1.391803979873657 -0.03692591562867165 -0.5894622206687927 1.391803979873657 -0.03692591562867165 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5795128345489502 1.387503027915955 -0.04206120222806931 -0.5795128345489502 1.387503027915955 -0.04206120222806931 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5856666564941406 1.390369296073914 -0.04455096274614334 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5795202255249023 1.387165427207947 -0.03295395523309708 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5856775641441345 1.389837980270386 -0.0302396509796381 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.6008565425872803 1.383934259414673 -0.03299903497099876 -0.6008565425872803 1.383934259414673 -0.03299903497099876 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5935401320457459 1.3777996301651 -0.03782991692423821 -0.5935401320457459 1.3777996301651 -0.03782991692423821 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980792045593262 1.381283164024353 -0.02619795501232147 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.5980666279792786 1.381804823875427 -0.04050884768366814 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.593547523021698 1.377462983131409 -0.02872365713119507 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6152828931808472 1.378727078437805 -0.02869041077792645 -0.6152828931808472 1.378727078437805 -0.02869041077792645 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6113107800483704 1.371376752853394 -0.03312573954463005 -0.6113107800483704 1.371376752853394 -0.03312573954463005 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6113156080245972 1.371039748191834 -0.02401775866746903 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137741208076477 1.375604391098023 -0.02173730358481407 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6137642860412598 1.376137614250183 -0.03604928031563759 -0.6310753226280212 1.368846535682678 -0.02815037220716476 -0.6310753226280212 1.368846535682678 -0.02815037220716476 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6313201785087585 1.376682281494141 -0.02416513673961163 -0.6313201785087585 1.376682281494141 -0.02416513673961163 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6310853958129883 1.368515014648438 -0.01904390566051006 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312346458435059 1.373317003250122 -0.01692897267639637 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6312211751937866 1.373900532722473 -0.03135117888450623 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6508672833442688 1.370474815368652 -0.0231905784457922 -0.6508672833442688 1.370474815368652 -0.0231905784457922 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.6473941802978516 1.377981305122376 -0.01961001008749008 -0.6473941802978516 1.377981305122376 -0.01961001008749008 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6487294435501099 1.375316977500916 -0.02662339434027672 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.6508719325065613 1.370113372802734 -0.01403834484517574 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.648742139339447 1.37479031085968 -0.01231258362531662 -0.661943793296814 1.382484555244446 -0.01521891355514526 -0.661943793296814 1.382484555244446 -0.01521891355514526 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.668872058391571 1.376001477241516 -0.01832914911210537 -0.668872058391571 1.376001477241516 -0.01832914911210537 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.664577841758728 1.38022518157959 -0.02207219414412975 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.668878436088562 1.375661611557007 -0.009222261607646942 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6645901799201965 1.379707217216492 -0.007761143147945404 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6735398173332214 1.389763116836548 -0.01116631925106049 -0.6735398173332214 1.389763116836548 -0.01116631925106049 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6832011342048645 1.384974122047424 -0.01393519341945648 -0.6832011342048645 1.384974122047424 -0.01393519341945648 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772254109382629 1.38762891292572 -0.003577623516321182 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6772148609161377 1.388144612312317 -0.01788981258869171 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6832060813903809 1.384644389152527 -0.004827328026294708 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.681041955947876 1.399080157279968 -0.007593415677547455 -0.681041955947876 1.399080157279968 -0.007593415677547455 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6925013661384583 1.396139144897461 -0.001023586839437485 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854100227355957 1.397767066955566 8.367747068405151e-005 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6854000091552734 1.398297667503357 -0.01422820053994656 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6924921274185181 1.396477818489075 -0.0101308710873127 -0.6958399415016174 1.409468173980713 -0.007031377404928207 -0.6958399415016174 1.409468173980713 -0.007031377404928207 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6958487033843994 1.408831834793091 0.002064023166894913 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6883454918861389 1.409133434295654 0.003118306398391724 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6837211847305298 1.409309506416321 -0.00460168719291687 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6883376240730286 1.409784436225891 -0.01118958741426468 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6929180026054382 1.422368407249451 -0.00469767302274704 -0.6929180026054382 1.422368407249451 -0.00469767302274704 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.681103527545929 1.420044422149658 -0.002224501222372055 -0.681103527545929 1.420044422149658 -0.002224501222372055 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6857340931892395 1.421131014823914 -0.008827336132526398 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6929252743721008 1.422033309936523 0.004409633576869965 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.6857432126998901 1.420616269111633 0.005484584718942642 -0.674067497253418 1.429614067077637 -0.000420156866312027 -0.674067497253418 1.429614067077637 -0.000420156866312027 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6840076446533203 1.434201598167419 -0.00309058278799057 -0.6840076446533203 1.434201598167419 -0.00309058278799057 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6778451800346375 1.431559205055237 -0.007105104625225067 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6840128898620606 1.433870911598206 0.00601789727807045 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6778578758239746 1.431046485900879 0.007205944508314133 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6626696586608887 1.43729043006897 0.0008590742945671082 -0.6626696586608887 1.43729043006897 0.0008590742945671082 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6699816584587097 1.443707466125488 -0.002117268741130829 -0.6699816584587097 1.443707466125488 -0.002117268741130829 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654606461524963 1.439408421516419 0.008368443697690964 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6654511094093323 1.439947009086609 -0.005943398922681809 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6699892282485962 1.443374633789063 0.006990574300289154 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6482548713684082 1.442306041717529 0.001752506941556931 -0.6482548713684082 1.442306041717529 0.001752506941556931 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6522186994552612 1.449938297271729 -0.001617971807718277 -0.6522186994552612 1.449938297271729 -0.001617971807718277 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6522294282913208 1.449607968330383 0.007487695664167404 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497766375541687 1.444893479347229 0.009109828621149063 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6497583985328674 1.445418238639832 -0.005199756473302841 -0.6324552297592163 1.452283263206482 -0.001388352364301682 -0.6324552297592163 1.452283263206482 -0.001388352364301682 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6322213411331177 1.444160461425781 0.002431094646453857 -0.6322213411331177 1.444160461425781 0.002431094646453857 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6324636936187744 1.451956272125244 0.007718831300735474 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323216557502747 1.446944117546082 0.009617645293474197 -0.6323062181472778 1.447459578514099 -0.004692345857620239 -0.6323062181472778 1.447459578514099 -0.004692345857620239</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1739\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1736\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1740\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"4554\">-0.5353189689301536 0.6828703396715899 0.4971133680563867 -0.7116816668819402 0.7019417498003985 0.02805325134985364 -0.7372469264351943 0.3797266189146804 0.5588154116964603 0.7372469264351943 -0.3797266189146804 -0.5588154116964603 0.7116816668819402 -0.7019417498003985 -0.02805325134985364 0.5353189689301536 -0.6828703396715899 -0.4971133680563867 -0.7293845581637016 0.4062527308477669 0.5504151932778325 0.7293845581637016 -0.4062527308477669 -0.5504151932778325 -0.8551392002274356 0.1137071511555724 -0.5057742895901941 -0.8413516623732291 0.1893757458970763 -0.5062254508494508 0.8413516623732291 -0.1893757458970763 0.5062254508494508 0.8551392002274356 -0.1137071511555724 0.5057742895901941 -0.3217757869612445 0.832205408561372 0.4515467870405812 0.3217757869612445 -0.832205408561372 -0.4515467870405812 0.3800002390550608 -0.01453535679333304 0.9248721758821527 0.3792474588825147 -0.05516985565409254 0.9236490956842116 0.3750021875470372 0.0907887093952834 0.9225674878193333 -0.3750021875470372 -0.0907887093952834 -0.9225674878193333 -0.3792474588825147 0.05516985565409254 -0.9236490956842116 -0.3800002390550608 0.01453535679333304 -0.9248721758821527 -0.8189126874245672 -0.02916183642036883 0.5731767595355419 0.8189126874245672 0.02916183642036883 -0.5731767595355419 -0.8259665171436808 -0.2403013172063103 -0.5099358680328832 0.8259665171436808 0.2403013172063103 0.5099358680328832 -0.7524198665918472 0.4659225089093442 -0.4655969931706268 0.7524198665918472 -0.4659225089093442 0.4655969931706268 0.3666685901632206 -0.1470439171092801 0.9186578424140705 0.3567386434992287 -0.1797019643206095 0.9167577347661948 -0.3567386434992287 0.1797019643206095 -0.9167577347661948 -0.3666685901632206 0.1470439171092801 -0.9186578424140705 -0.4686152157660842 0.8829385217699244 0.02862422622966481 0.4686152157660842 -0.8829385217699244 -0.02862422622966481 0.3628037800051905 0.1115734467219724 0.9251620307819192 -0.3628037800051905 -0.1115734467219724 -0.9251620307819192 -0.8229383511352589 0.02580793656121492 0.5675442014867508 0.8229383511352589 -0.02580793656121492 -0.5675442014867508 -0.8318585706090238 -0.2056643422248446 -0.5154740505995754 0.8318585706090238 0.2056643422248446 0.5154740505995754 0.3131170613773171 -0.1234346884321168 -0.9416589528943586 0.2544879259100693 -0.3209843162467294 -0.9122526866442273 0.2994944615908431 -0.1347978860984816 -0.9445277112820946 -0.2994944615908431 0.1347978860984816 0.9445277112820946 -0.2544879259100693 0.3209843162467294 0.9122526866442273 -0.3131170613773171 0.1234346884321168 0.9416589528943586 0.1524219605567499 -0.4664428658503491 -0.8713200323861203 0.2471285876267311 -0.2985187141514338 -0.9218535884179179 -0.2471285876267311 0.2985187141514338 0.9218535884179179 -0.1524219605567499 0.4664428658503491 0.8713200323861203 0.3282794195216551 -0.2624290987257349 0.9073938455050947 -0.3282794195216551 0.2624290987257349 -0.9073938455050947 -0.122860978971227 0.8950334705384974 0.4287426576188154 0.122860978971227 -0.8950334705384974 -0.4287426576188154 0.5589821522530445 -0.6499000334403392 -0.5149455310970281 0.711230906598061 -0.7025125433725948 -0.02503445433534567 0.9359990946108151 -0.3517769230944942 -0.01259727216125266 -0.9359990946108151 0.3517769230944942 0.01259727216125266 -0.711230906598061 0.7025125433725948 0.02503445433534567 -0.5589821522530445 0.6499000334403392 0.5149455310970281 0.3329966026074757 0.2202533584349048 0.9168433458067001 -0.3329966026074757 -0.2202533584349048 -0.9168433458067001 0.3289736070380834 -0.8033560225578793 -0.4963823797158163 0.4661256861641913 -0.8841396442277655 -0.03199897190164542 -0.4661256861641913 0.8841396442277655 0.03199897190164542 -0.3289736070380834 0.8033560225578793 0.4963823797158163 -0.830657908451834 -0.5565950976711568 0.01446846138536951 0.830657908451834 0.5565950976711568 -0.01446846138536951 -0.6945189613429058 -0.5290913125569488 -0.4875508130563794 0.6945189613429058 0.5290913125569488 0.4875508130563794 0.3139216253142795 0.05128699424629939 -0.9480626864196382 -0.3139216253142795 -0.05128699424629939 0.9480626864196382 -0.5643116170852814 0.7140481388037558 -0.4143520897660429 0.5643116170852814 -0.7140481388037558 0.4143520897660429 0.1306455717262345 -0.8661952539451892 -0.4823251150740073 0.2464346718766853 -0.9684732639848411 -0.0364621645487298 -0.2464346718766853 0.9684732639848411 0.0364621645487298 -0.1306455717262345 0.8661952539451892 0.4823251150740073 0.3138444079746425 -0.2841739681712777 0.9059507952404677 -0.3138444079746425 0.2841739681712777 -0.9059507952404677 -0.2541056583663925 0.9666073562683737 0.03317428513242991 0.2541056583663925 -0.9666073562683737 -0.03317428513242991 0.959758131596603 -0.2806597881232694 -0.009716592242106387 -0.959758131596603 0.2806597881232694 0.009716592242106387 0.3220489042849751 0.2145040039181532 0.9221022370387829 -0.3220489042849751 -0.2145040039181532 -0.9221022370387829 -0.7616229201923672 -0.3651850671952123 0.5353227009340059 0.7616229201923672 0.3651850671952123 -0.5353227009340059 0.3167666671133447 0.09266765087129925 -0.9439658813155792 -0.3167666671133447 -0.09266765087129925 0.9439658813155792 0.9848212039371086 0.1734733232016412 0.005848282931174579 0.847430815686388 0.5305694661737671 0.01889587757122743 0.8283233395337939 0.5598615346411333 0.02086880956974355 -0.8283233395337939 -0.5598615346411333 -0.02086880956974355 -0.847430815686388 -0.5305694661737671 -0.01889587757122743 -0.9848212039371086 -0.1734733232016412 -0.005848282931174579 0.9931124951697394 0.1171183894367515 0.003294661359817383 -0.9931124951697394 -0.1171183894367515 -0.003294661359817383 0.0394079364567948 -0.5380843959287724 -0.8419692378003992 -0.0394079364567948 0.5380843959287724 0.8419692378003992 -0.06290531134253218 -0.8760067052885424 -0.4781790188772527 0.06290531134253218 0.8760067052885424 0.4781790188772527 0.2570799416314827 -0.3475640482872279 0.9017256433910189 -0.2570799416314827 0.3475640482872279 -0.9017256433910189 0.07303733031478342 0.905984810453543 0.4169617147987892 -0.07303733031478342 -0.905984810453543 -0.4169617147987892 0.2700418578432375 0.3209229036352437 0.9077917629803087 -0.2700418578432375 -0.3209229036352437 -0.9077917629803087 -0.07034752157042788 -0.5595950864454855 -0.8257751300656662 0.07034752157042788 0.5595950864454855 0.8257751300656662 -0.5872928368837237 -0.8093730014725578 -0.001571060906258563 0.5872928368837237 0.8093730014725578 0.001571060906258563 -0.5098775062504932 -0.7296513068775871 -0.4556686284918101 0.5098775062504932 0.7296513068775871 0.4556686284918101 0.2828682148995004 0.2426584319855039 -0.9279560649006541 -0.2828682148995004 -0.2426584319855039 0.9279560649006541 0.6057425454555282 0.795118949920031 0.02935684082329544 -0.6057425454555282 -0.795118949920031 -0.02935684082329544 -0.3711483318994795 0.8484508572864647 -0.377332821919982 0.3711483318994795 -0.8484508572864647 0.377332821919982 -0.1787653455178137 -0.5392253898805517 -0.822969580330928 0.1787653455178137 0.5392253898805517 0.822969580330928 0.03434743098001073 -0.9987511880523433 -0.03628110181770163 -0.03434743098001073 0.9987511880523433 0.03628110181770163 0.2512313522627127 -0.3570620712199921 0.8996607610295883 -0.2512313522627127 0.3570620712199921 -0.8996607610295883 -0.04873633665124259 0.9982743393439536 0.0327584019330816 0.04873633665124259 -0.9982743393439536 -0.0327584019330816 0.2699117572865568 0.2961754200666404 0.916202905380043 -0.2699117572865568 -0.2961754200666404 -0.916202905380043 -0.581601649632432 -0.6635404058683408 0.4705886217546181 0.581601649632432 0.6635404058683408 -0.4705886217546181 0.2686374406810328 0.2880646907886809 -0.9191586693194849 -0.2686374406810328 -0.2880646907886809 0.9191586693194849 0.5932766102188829 0.8044533907604631 0.02962441326314405 -0.5932766102188829 -0.8044533907604631 -0.02962441326314405 0.1919290632645986 0.3817694565981829 0.9041102348071842 0.2022111273747708 0.3531221073613152 0.9134634296229532 -0.2022111273747708 -0.3531221073613152 -0.9134634296229532 -0.1919290632645986 -0.3817694565981829 -0.9041102348071842 -0.2823946957298136 -0.4806677635384306 -0.8301877720845023 0.2823946957298136 0.4806677635384306 0.8301877720845023 -0.2505510817790791 -0.8378345458210682 -0.4850334310623727 0.2505510817790791 0.8378345458210682 0.4850334310623727 0.1747063599861972 -0.3953529339017232 0.9017614681475766 -0.1747063599861972 0.3953529339017232 -0.9017614681475766 0.2697748537168222 0.8648085303379074 0.4234710546859796 -0.2697748537168222 -0.8648085303379074 -0.4234710546859796 -0.1692423110097001 0.9177238739089977 -0.3593604477701434 0.1692423110097001 -0.9177238739089977 0.3593604477701434 -0.3502113437466198 -0.9365369152329918 -0.01583101756233706 0.3502113437466198 0.9365369152329918 0.01583101756233706 -0.3115292871716915 -0.8473652558897481 -0.4300251461777547 0.3115292871716915 0.8473652558897481 0.4300251461777547 0.205388827498093 0.406643352909858 -0.8902003218788382 -0.205388827498093 -0.406643352909858 0.8902003218788382 0.3625328255174533 0.9313572586384038 0.03381726192182619 -0.3625328255174533 -0.9313572586384038 -0.03381726192182619 0.108793985060722 0.4030955877714338 0.9086681550124938 -0.108793985060722 -0.4030955877714338 -0.9086681550124938 0.03205668071441394 0.9319483912854097 -0.3611711023906964 0.1550582238440486 0.9873627922470425 0.03273627505463083 -0.1550582238440486 -0.9873627922470425 -0.03273627505463083 -0.03205668071441394 -0.9319483912854097 0.3611711023906964 -0.1733323927131261 -0.9842540067933552 -0.03464003099837473 0.1733323927131261 0.9842540067933552 0.03464003099837473 0.1803893504148477 -0.4056766443530178 0.8960391411558898 -0.1803893504148477 0.4056766443530178 -0.8960391411558898 -0.3631078081931655 -0.8365023170060291 0.41038590774136 0.3631078081931655 0.8365023170060291 -0.41038590774136 0.1858264884282475 0.4347832369135452 -0.8811538192037793 -0.1858264884282475 -0.4347832369135452 0.8811538192037793 0.3566792268836834 0.933613511936929 0.03384877307158488 -0.3566792268836834 -0.933613511936929 -0.03384877307158488 0.1232315634891896 0.3821018256636007 0.9158668989457766 -0.1232315634891896 -0.3821018256636007 -0.9158668989457766 0.3718843601362071 0.9277760136118621 0.03055636190002758 -0.3718843601362071 -0.9277760136118621 -0.03055636190002758 -0.3768968519524143 -0.3788861319661591 -0.8452183516654629 0.3768968519524143 0.3788861319661591 0.8452183516654629 -0.4429178293437548 -0.7517581318586216 -0.4885524614960525 0.4429178293437548 0.7517581318586216 0.4885524614960525 0.08862115089179973 -0.4049990199475744 0.91001213478509 -0.08862115089179973 0.4049990199475744 -0.91001213478509 0.4722258847312988 0.7596897966544084 0.4470728426654047 -0.4722258847312988 -0.7596897966544084 -0.4470728426654047 -0.134938504780879 -0.9904778400910421 -0.02729923471610317 0.134938504780879 0.9904778400910421 0.02729923471610317 -0.1148107547558477 -0.9010139105177175 -0.4183209576939255 0.1148107547558477 0.9010139105177175 0.4183209576939255 0.1350521351926248 0.8787867419773857 -0.4577060005119932 -0.1350521351926248 -0.8787867419773857 0.4577060005119932 0.1391888030242485 0.9896178014931639 0.03582016304421101 -0.1391888030242485 -0.9896178014931639 -0.03582016304421101 0.02951624900057197 0.3883425462900116 0.9210422671006617 -0.02951624900057197 -0.3883425462900116 -0.9210422671006617 0.2379798019051767 0.8911011038891297 -0.3863993226349491 -0.2379798019051767 -0.8911011038891297 0.3863993226349491 -0.4018013786684738 -0.915489799739539 -0.02083455478219574 0.4018013786684738 0.915489799739539 0.02083455478219574 0.1000383512200405 -0.4249379089738234 0.899677776652358 -0.1000383512200405 0.4249379089738234 -0.899677776652358 -0.1492596146027678 -0.9164518185855611 0.3712649076600842 0.1492596146027678 0.9164518185855611 -0.3712649076600842 0.08635964884196243 0.5299307916689104 -0.8436322463568203 -0.08635964884196243 -0.5299307916689104 0.8436322463568203 0.03901238681598718 0.3769247126752178 0.9254219549209021 -0.03901238681598718 -0.3769247126752178 -0.9254219549209021 0.66763790654427 0.5690493336977597 0.4800442495888477 -0.66763790654427 -0.5690493336977597 -0.4800442495888477 0.6097889567518674 0.7922517439862796 0.02223965768998332 -0.6097889567518674 -0.7922517439862796 -0.02223965768998332 -0.4545744276476597 -0.2369390745980475 -0.8586163081711316 0.4545744276476597 0.2369390745980475 0.8586163081711316 -0.6358506402087751 -0.5907760021941187 -0.4966665668007316 0.6358506402087751 0.5907760021941187 0.4966665668007316 0.00749911142197426 -0.3776641182089101 0.9259122945211211 -0.00749911142197426 0.3776641182089101 -0.9259122945211211 0.06861230926749032 -0.9970217984127046 -0.03521199379300232 -0.06861230926749032 0.9970217984127046 0.03521199379300232 0.08052275145707243 -0.9028239222570414 -0.4224038966418208 -0.08052275145707243 0.9028239222570414 0.4224038966418208 -0.05901818176364425 0.8987960722577277 -0.4343759601029908 0.05901818176364425 -0.8987960722577277 0.4343759601029908 -0.07262520675025015 0.9967081587927398 0.03603367231452105 0.07262520675025015 -0.9967081587927398 -0.03603367231452105 -0.04179386715432833 0.3419093409135336 0.9388031078263212 0.04179386715432833 -0.3419093409135336 -0.9388031078263212 0.01503614499995169 -0.4057302007656598 0.913869202090867 -0.01503614499995169 0.4057302007656598 -0.913869202090867 0.4517132567859688 0.7788055852563449 -0.4352206268288938 -0.4517132567859688 -0.7788055852563449 0.4352206268288938 -0.6412872954209069 -0.7670508228513946 -0.01958672751474826 0.6412872954209069 0.7670508228513946 0.01958672751474826 0.05432148557558725 -0.9322541936396561 0.3577028021222869 -0.05432148557558725 0.9322541936396561 -0.3577028021222869 -0.02124807053412244 0.5780698800169537 -0.8157105695746265 0.02124807053412244 -0.5780698800169537 0.8157105695746265 -0.04350194301247607 0.3322406106058186 0.94219093479953 0.04350194301247607 -0.3322406106058186 -0.94219093479953 -0.06242001613278259 -0.3162789065065942 0.9466104768514747 0.06242001613278259 0.3162789065065942 -0.9466104768514747 0.8151773183089368 0.2813300280037586 0.5062996692257016 -0.8151773183089368 -0.2813300280037586 -0.5062996692257016 0.8494885713735113 0.5275888639950153 0.004376950335583665 -0.8494885713735113 -0.5275888639950153 -0.004376950335583665 -0.4986857171682205 -0.05461584421987939 -0.8650604979147801 0.4986857171682205 0.05461584421987939 0.8650604979147801 -0.843949667442519 -0.5361152936893975 -0.01814802182037343 0.843949667442519 0.5361152936893975 0.01814802182037343 0.2769529753733652 -0.9598229062639651 -0.04513355783489734 -0.2769529753733652 0.9598229062639651 0.04513355783489734 0.2862393451175762 -0.8449469473619248 -0.4518093552046329 -0.2862393451175762 0.8449469473619248 0.4518093552046329 -0.2515009257361038 0.8702961530422076 -0.4234759619551234 0.2515009257361038 -0.8702961530422076 0.4234759619551234 -0.2850039247627784 0.9578553119967536 0.03586034229360154 0.2850039247627784 -0.9578553119967536 -0.03586034229360154 -0.1022808584520593 0.264536745673741 0.9589363566903991 0.1022808584520593 -0.264536745673741 -0.9589363566903991 -0.8727572602942931 -0.4877882954168163 -0.01890353030404927 0.8727572602942931 0.4877882954168163 0.01890353030404927 -0.06500642786178341 -0.3441907809959636 0.9366466092470732 0.06500642786178341 0.3441907809959636 -0.9366466092470732 0.6576526325481181 0.5643559704775162 -0.4989943421411817 -0.6576526325481181 -0.5643559704775162 0.4989943421411817 -0.4964681475591983 -0.01406714647408659 -0.8679409506695802 0.4964681475591983 0.01406714647408659 0.8679409506695802 0.254427399178376 -0.8957836151161926 0.3644700446356216 -0.254427399178376 0.8957836151161926 -0.3644700446356216 -0.1346648842095394 0.5837574737799822 -0.8006825717891233 0.1346648842095394 -0.5837574737799822 0.8006825717891233 -0.1124521561141192 0.2448665363620736 0.9630134432889953 0.1124521561141192 -0.2448665363620736 -0.9630134432889953 -0.8819778059525112 0.007569424246116371 -0.4712301493153602 0.8819778059525112 -0.007569424246116371 0.4712301493153602 -0.1171381695292323 -0.229944623273741 0.9661284176893038 0.1171381695292323 0.229944623273741 -0.9661284176893038 0.859798158835566 -0.06609950503679232 0.5063378136154376 -0.859798158835566 0.06609950503679232 -0.5063378136154376 0.8025644541246544 0.1985618941639249 -0.5625508609553718 -0.8025644541246544 -0.1985618941639249 0.5625508609553718 -0.494378423462553 0.1452899853896314 -0.8570185497176601 0.494378423462553 -0.1452899853896314 0.8570185497176601 0.5011239244892839 -0.8639969818054694 -0.0488265064846754 -0.5011239244892839 0.8639969818054694 0.0488265064846754 0.4954003925555833 -0.7178949844613637 -0.4890861297777648 -0.4954003925555833 0.7178949844613637 0.4890861297777648 -0.4523293940591098 0.7826867124956889 -0.4275507330748126 0.4523293940591098 -0.7826867124956889 0.4275507330748126 -0.5159942670472942 0.8561861757210363 0.02636567614366192 0.5159942670472942 -0.8561861757210363 -0.02636567614366192 -0.1456472171251264 0.1552833927624011 0.9770741814600896 0.1456472171251264 -0.1552833927624011 -0.9770741814600896 -0.9975822073775493 -0.06940109617524032 -0.003636945615651953 0.9975822073775493 0.06940109617524032 0.003636945615651953 -0.129892882441727 -0.2399529132593199 0.9620553198799667 0.129892882441727 0.2399529132593199 -0.9620553198799667 0.8574507231435583 -0.02494746157140876 0.513960972780747 -0.8574507231435583 0.02494746157140876 -0.513960972780747 0.7992126797112316 0.2325406128191567 -0.5542417847640897 -0.7992126797112316 -0.2325406128191567 0.5542417847640897 0.4545739921537308 -0.8001041289772173 0.3914024379727705 -0.4545739921537308 0.8001041289772173 -0.3914024379727705 -0.2485432565694079 0.5432058971079742 -0.8019685797841424 0.2485432565694079 -0.5432058971079742 0.8019685797841424 -0.1547000786466975 0.122265600892958 0.9803667724402889 0.1547000786466975 -0.122265600892958 -0.9803667724402889 -0.43865510712441 0.3279444950865583 -0.8366804080030169 0.43865510712441 -0.3279444950865583 0.8366804080030169 -0.8139420852380522 0.3699313426435741 -0.4479387051910715 0.8139420852380522 -0.3699313426435741 0.4479387051910715 -0.1540751705135024 -0.1214397525775982 0.9805678091417884 0.1540751705135024 0.1214397525775982 -0.9805678091417884 0.7859497821586822 -0.3952523166457131 0.4754561453077631 -0.7859497821586822 0.3952523166457131 -0.4754561453077631 0.9306717204499473 -0.3631548007207968 -0.04437047969285109 -0.9306717204499473 0.3631548007207968 0.04437047969285109 0.7418183026015727 -0.6687046187249083 -0.05039582146663192 -0.7418183026015727 0.6687046187249083 0.05039582146663192 0.6931794090547595 -0.4794791752210309 -0.5381468455652734 -0.6931794090547595 0.4794791752210309 0.5381468455652734 -0.6572340711368572 0.6157650527922096 -0.4345995576351638 0.6572340711368572 -0.6157650527922096 0.4345995576351638 -0.751992946766318 0.6588005018606172 0.02210218907503439 0.751992946766318 -0.6588005018606172 -0.02210218907503439 -0.1709436353647587 0.02372407100715416 0.9849951482028365 0.1709436353647587 -0.02372407100715416 -0.9849951482028365 0.8069895019006633 -0.1634979180636875 -0.5674824883738342 -0.8069895019006633 0.1634979180636875 0.5674824883738342 -0.9307864040379604 0.3653393253321558 0.01280028999389669 0.9307864040379604 -0.3653393253321558 -0.01280028999389669 -0.1665198172244957 -0.1041882674261949 0.9805182075832394 0.1665198172244957 0.1041882674261949 -0.9805182075832394 0.6462009509831134 -0.6271481419195555 0.4348672659966132 -0.6462009509831134 0.6271481419195555 -0.4348672659966132 -0.3568877880871619 0.4535396019386854 -0.8166596207647049 0.3568877880871619 -0.4535396019386854 0.8166596207647049 -0.1683220456462901 -0.008533414432395442 0.9856951200992998 0.1683220456462901 0.008533414432395442 -0.9856951200992998 0.7170105024864666 -0.6952010685266518 -0.05090592935510006 -0.7170105024864666 0.6952010685266518 0.05090592935510006 -0.3464687979461342 0.4660128317092822 -0.8141200235420186 0.3464687979461342 -0.4660128317092822 0.8141200235420186 -0.6354932974717718 0.6397462620713476 -0.4322880856953994 0.6354932974717718 -0.6397462620713476 0.4322880856953994 -0.168577867003286 0.005739587349743737 0.9856716288367425 0.168577867003286 -0.005739587349743737 -0.9856716288367425 0.6279427851002537 -0.6490591178411477 0.4294299945134337 -0.6279427851002537 0.6490591178411477 -0.4294299945134337 0.7973154094603279 -0.3587566901921653 0.4853676699981904 -0.7973154094603279 0.3587566901921653 -0.4853676699981904 0.8133779826593525 -0.1226121451898211 -0.5686673185412999 -0.8133779826593525 0.1226121451898211 0.5686673185412999 -0.8277402359618674 0.3350628304934467 -0.450087770764228 0.8277402359618674 -0.3350628304934467 0.450087770764228 -0.9459898466309302 0.3239974634609624 0.0113513762183776 0.9459898466309302 -0.3239974634609624 -0.0113513762183776 -0.1643183079610741 -0.119171920733218 0.9791820806048104 0.1643183079610741 0.119171920733218 -0.9791820806048104 0.6747170807039695 -0.5099989790625136 -0.533533412600848 -0.6747170807039695 0.5099989790625136 0.533533412600848 -0.725972627130354 0.6873611937007985 0.02232339695622613 0.725972627130354 -0.6873611937007985 -0.02232339695622613 -0.1700308140684207 0.03942891935419392 0.984649624275453 0.1700308140684207 -0.03942891935419392 -0.984649624275453 0.7985834038097226 -0.3635569042956527 0.4796779383071929 -0.7985834038097226 0.3635569042956527 -0.4796779383071929 0.800566496546902 -0.1772960399466202 -0.5724154075720408 -0.800566496546902 0.1772960399466202 0.5724154075720408 -0.446245637034375 0.3107982363495508 -0.8392075355415926 0.446245637034375 -0.3107982363495508 0.8392075355415926 -0.1512172839060151 -0.1336391484561072 0.9794252963080001 0.1512172839060151 0.1336391484561072 -0.9794252963080001 0.4336525392393297 -0.8129875064606352 0.3885830536065618 -0.4336525392393297 0.8129875064606352 -0.3885830536065618 0.4768952456949725 -0.8776622754333116 -0.04774782628302089 -0.4768952456949725 0.8776622754333116 0.04774782628302089 -0.2380118979020678 0.552806908475288 -0.7985955537060361 0.2380118979020678 -0.552806908475288 0.7985955537060361 -0.4293463423448363 0.7959637255735328 -0.4267358268135128 0.4293463423448363 -0.7959637255735328 0.4267358268135128 -0.1533145387346087 0.1385497839304223 0.9784163784327343 0.1533145387346087 -0.1385497839304223 -0.9784163784327343 0.8569334536926627 0.01557625494484925 0.5151916499946968 -0.8569334536926627 -0.01557625494484925 -0.5151916499946968 0.7895676334283633 0.2718021557206546 -0.550187731949685 -0.7895676334283633 -0.2718021557206546 0.550187731949685 -0.8795852430685808 -0.0329580402854965 -0.4745983225386761 0.8795852430685808 0.0329580402854965 0.4745983225386761 -0.9931778911233629 -0.1165080322167977 -0.004853350669279085 0.9931778911233629 0.1165080322167977 0.004853350669279085 -0.1241290899677848 -0.2521934869959305 0.9596824548467078 0.1241290899677848 0.2521934869959305 -0.9596824548467078 -0.1439966388252694 0.1695488524553405 0.9749452059670339 0.1439966388252694 -0.1695488524553405 -0.9749452059670339 0.4731664328371595 -0.736776185545258 -0.4829848644104051 -0.4731664328371595 0.736776185545258 0.4829848644104051 -0.4914489871680581 0.8706058050981024 0.02287848642229128 0.4914489871680581 -0.8706058050981024 -0.02287848642229128 0.8609412706265437 -0.02970954024259701 0.5078360677920839 -0.8609412706265437 0.02970954024259701 -0.5078360677920839 0.7938613775106779 0.2406491885984124 -0.5584550844282598 -0.7938613775106779 -0.2406491885984124 0.5584550844282598 -0.4981259669748733 0.1224026569180195 -0.8584218721612101 0.4981259669748733 -0.1224026569180195 0.8584218721612101 -0.1121252230112493 -0.2398226420513322 0.9643199856500934 0.1121252230112493 0.2398226420513322 -0.9643199856500934 -0.1063043294759756 0.2553976401196332 0.9609742113896634 0.1063043294759756 -0.2553976401196332 -0.9609742113896634 0.2334684884898862 -0.9020954626144305 0.3629273222185187 -0.2334684884898862 0.9020954626144305 -0.3629273222185187 0.2546896491755812 -0.9661216117807919 -0.04173983532435711 -0.2546896491755812 0.9661216117807919 0.04173983532435711 -0.1226026292931632 0.585552722073672 -0.8013093066740932 0.1226026292931632 -0.585552722073672 0.8013093066740932 -0.2322472405560263 0.8745440311703633 -0.4257158169464715 0.2322472405560263 -0.8745440311703633 0.4257158169464715 0.8298662567632869 0.5578930055353653 0.008797173432836682 -0.8298662567632869 -0.5578930055353653 -0.008797173432836682 0.6381703126544575 0.592111941513551 -0.4920793642935712 -0.6381703126544575 -0.592111941513551 0.4920793642935712 -0.7845248083818697 -0.3705894045310878 -0.4971763452565743 0.7845248083818697 0.3705894045310878 0.4971763452565743 -0.8530929822079671 -0.52099985370008 -0.02813389685081899 0.8530929822079671 0.52099985370008 0.02813389685081899 -0.05741992810478202 -0.3531132626594803 0.9338168854708177 0.05741992810478202 0.3531132626594803 -0.9338168854708177 -0.264185815821361 0.9638994062974804 0.03322332400839634 0.264185815821361 -0.9638994062974804 -0.03322332400839634 -0.09618190820093919 0.2735306385631074 0.9570423346446514 0.09618190820093919 -0.2735306385631074 -0.9570423346446514 0.2628326176968178 -0.8574330901829026 -0.4424110203578083 -0.2628326176968178 0.8574330901829026 0.4424110203578083 0.8054401400841557 0.3138185242718401 0.502776406134039 -0.8054401400841557 -0.3138185242718401 -0.502776406134039 -0.501200536774284 -0.07684651976347012 -0.861912196419921 0.501200536774284 0.07684651976347012 0.861912196419921 -0.05593971998397868 -0.3240611364504881 0.9443808170280313 0.05593971998397868 0.3240611364504881 -0.9443808170280313 -0.03897942897021398 0.8991737147912199 -0.4358523084092979 0.03897942897021398 -0.8991737147912199 0.4358523084092979 -0.03524905886950984 0.3387172216289925 0.9402277105152507 0.03524905886950984 -0.3387172216289925 -0.9402277105152507 0.03383327999562884 -0.9336000909487275 0.3567158243549972 -0.03383327999562884 0.9336000909487275 -0.3567158243549972 0.0479021511982165 -0.998254380176327 -0.03454817461690651 -0.0479021511982165 0.998254380176327 0.03454817461690651 -0.009891742364935379 0.5749528165630037 -0.8181267702252841 0.009891742364935379 -0.5749528165630037 0.8181267702252841 0.5854825862187838 0.8104134846393168 0.02097915988127646 -0.5854825862187838 -0.8104134846393168 -0.02097915988127646 0.434067993827172 0.7959996662965257 -0.4218643241501631 -0.434067993827172 -0.7959996662965257 0.4218643241501631 -0.6153609956428084 -0.6092809005341072 -0.5001076177042686 0.6153609956428084 0.6092809005341072 0.5001076177042686 -0.6198781599184149 -0.7840896173444694 -0.03089561180432931 0.6198781599184149 0.7840896173444694 0.03089561180432931 0.02408235691846478 -0.4097166028327391 0.9118949201791022 -0.02408235691846478 0.4097166028327391 -0.9118949201791022 -0.05033591546484884 0.9980440499490416 0.03707249621526213 0.05033591546484884 -0.9980440499490416 -0.03707249621526213 -0.03482879739876794 0.3480452959611305 0.9368305219361102 0.03482879739876794 -0.3480452959611305 -0.9368305219361102 0.06078628308626855 -0.9051840193303721 -0.4206505900833479 -0.06078628308626855 0.9051840193303721 0.4206505900833479 0.648217847914167 0.6029108452383217 0.4650936834010306 -0.648217847914167 -0.6029108452383217 -0.4650936834010306 -0.4478877733719995 -0.2541595320630561 -0.8572044532813398 0.4478877733719995 0.2541595320630561 0.8572044532813398 0.01557869864805954 -0.3810414790504169 0.9244266847032833 -0.01557869864805954 0.3810414790504169 -0.9244266847032833 0.09715697212672433 0.5223084558067829 -0.8472038714264122 -0.09715697212672433 -0.5223084558067829 0.8472038714264122 0.1553565177626282 0.8736758638857383 -0.4610366983789674 -0.1553565177626282 -0.8736758638857383 0.4610366983789674 0.04774289829217883 0.3792087845578838 0.9240786294340948 -0.04774289829217883 -0.3792087845578838 -0.9240786294340948 -0.1710229132487364 -0.9112131171823146 0.3747556780341089 0.1710229132487364 0.9112131171823146 -0.3747556780341089 -0.1565797064201739 -0.9873287205753677 -0.02578358129468785 0.1565797064201739 0.9873287205753677 0.02578358129468785 0.3468281485629135 0.9374124389299637 0.03111518445708742 -0.3468281485629135 -0.9374124389299637 -0.03111518445708742 0.2152227048684301 0.8989314492511036 -0.3815775633556394 -0.2152227048684301 -0.8989314492511036 0.3815775633556394 -0.422906601071092 -0.7599157768747203 -0.4936375379034566 0.422906601071092 0.7599157768747203 0.4936375379034566 -0.377041447076373 -0.9255427595003252 -0.03479004919625452 0.377041447076373 0.9255427595003252 0.03479004919625452 0.1086249523253039 -0.4243391732106769 0.8989643406783191 -0.1086249523253039 0.4243391732106769 -0.8989643406783191 -0.1350243989572021 -0.8980221998058066 -0.4187177334938018 0.1350243989572021 0.8980221998058066 0.4187177334938018 0.1612344870590588 0.9862852115314621 0.03528344792025651 -0.1612344870590588 -0.9862852115314621 -0.03528344792025651 0.03730783496796066 0.3914303137574686 0.9194511596173736 -0.03730783496796066 -0.3914303137574686 -0.9194511596173736 0.4512722265729608 0.7735778610677042 0.4448939990489849 -0.4512722265729608 -0.7735778610677042 -0.4448939990489849 -0.3680378476573901 -0.3929392604520207 -0.8427021302258199 0.3680378476573901 0.3929392604520207 0.8427021302258199 0.09728700059972795 -0.405499946012708 0.9089032034809864 -0.09728700059972795 0.405499946012708 -0.9089032034809864 -0.3736452978695597 -0.9274591404343351 -0.0144476366500685 0.3736452978695597 0.9274591404343351 0.0144476366500685 0.1954704969969504 0.4220554389144019 -0.8852460060833579 -0.1954704969969504 -0.4220554389144019 0.8852460060833579 0.3804125365405834 0.9242038214090115 0.03366895507346956 -0.3804125365405834 -0.9242038214090115 -0.03366895507346956 0.1318310967062573 0.3805434644254365 0.9153181051548757 -0.1318310967062573 -0.3805434644254365 -0.9153181051548757 -0.3857750282049133 -0.8236703394848209 0.4156257925904723 0.3857750282049133 0.8236703394848209 -0.4156257925904723 0.133803156203462 0.9904540603065167 0.03312808192948819 -0.133803156203462 -0.9904540603065167 -0.03312808192948819 0.01112162573014972 0.932918757925959 -0.3599151296500387 -0.01112162573014972 -0.932918757925959 0.3599151296500387 -0.2325374771575537 -0.8441249328219719 -0.4830935929046272 0.2325374771575537 0.8441249328219719 0.4830935929046272 -0.1545310923684629 -0.9873169013180834 -0.03640711280872882 0.1545310923684629 0.9873169013180834 0.03640711280872882 0.1883975201061494 -0.4022503373112764 0.89593584622495 -0.1883975201061494 0.4022503373112764 -0.89593584622495 -0.3322803417933081 -0.8385545505459972 -0.431759238715656 0.3322803417933081 0.8385545505459972 0.431759238715656 0.2152734814352987 0.3916917509483593 -0.8945584946943014 -0.2152734814352987 -0.3916917509483593 0.8945584946943014 0.3868386225116456 0.9215265932979312 0.0338322032685134 -0.3868386225116456 -0.9215265932979312 -0.0338322032685134 0.1173933242861763 0.4026912250949326 0.9077767262078177 -0.1173933242861763 -0.4026912250949326 -0.9077767262078177 0.2489647452821473 0.8717144270282413 0.4220551069675863 -0.2489647452821473 -0.8717144270282413 -0.4220551069675863 -0.2718742560936834 -0.4882450598316793 -0.8292774869869953 0.2718742560936834 0.4882450598316793 0.8292774869869953 0.1836766769243425 -0.3924427081114895 0.901250020362913 -0.1836766769243425 0.3924427081114895 -0.901250020362913 -0.6033486848119686 -0.6385057915997583 0.4777873152661486 0.6033486848119686 0.6385057915997583 -0.4777873152661486 -0.613133194869655 -0.7899793293964897 0.000586920098347499 0.613133194869655 0.7899793293964897 -0.000586920098347499 0.2753573485624073 0.269490624296329 -0.9227963664910346 -0.2753573485624073 -0.269490624296329 0.9227963664910346 0.6186599220804722 0.7850965417642933 0.02972071535362874 -0.6186599220804722 -0.7850965417642933 -0.02972071535362874 0.2101194044082203 0.348677204744304 0.913386031633303 -0.2101194044082203 -0.348677204744304 -0.913386031633303 -0.06459543488668709 0.9973987985734438 0.03198540911181907 0.06459543488668709 -0.9973987985734438 -0.03198540911181907 -0.1834693850567989 0.9148456478580954 -0.3597171462996748 0.1834693850567989 -0.9148456478580954 0.3597171462996748 -0.04704796442226061 -0.8766443618860301 -0.4788331147875603 0.04704796442226061 0.8766443618860301 0.4788331147875603 0.05242499028212754 -0.9979360278861268 -0.03708509998339386 -0.05242499028212754 0.9979360278861268 0.03708509998339386 0.2558833332126828 -0.3504308325034475 0.9009561317927238 -0.2558833332126828 0.3504308325034475 -0.9009561317927238 0.2006801611871336 0.3777280010185098 0.9039076447029677 -0.2006801611871336 -0.3777280010185098 -0.9039076447029677 -0.5305646299865623 -0.7131920398338357 -0.4581029226329765 0.5305646299865623 0.7131920398338357 0.4581029226329765 0.2881041820876135 0.2233323426540353 -0.9311920559091385 -0.2881041820876135 -0.2233323426540353 0.9311920559091385 0.6320379801169027 0.7743845161625741 0.02926794863671614 -0.6320379801169027 -0.7743845161625741 -0.02926794863671614 0.05520749936104614 0.9079850299239638 0.415349632777349 -0.05520749936104614 -0.9079850299239638 -0.415349632777349 -0.1693070499459147 -0.5434446410981264 -0.8221940433379094 0.1693070499459147 0.5434446410981264 0.8221940433379094 0.2624175750312578 -0.3400271074477818 0.9030606748803808 -0.2624175750312578 0.3400271074477818 -0.9030606748803808 0.2784905568168335 0.2831290588019411 0.9177586533646944 -0.2784905568168335 -0.2831290588019411 -0.9177586533646944 -0.7799975549569794 -0.3127583210905691 0.5420203380406886 0.7799975549569794 0.3127583210905691 -0.5420203380406886 -0.8613574413193473 -0.5077569331240402 0.01569251886269644 0.8613574413193473 0.5077569331240402 -0.01569251886269644 0.3204140413190193 0.06508380150322665 -0.9450391213635034 -0.3204140413190193 -0.06508380150322665 0.9450391213635034 0.8570042708707975 0.5149543685538287 0.01912270944559269 -0.8570042708707975 -0.5149543685538287 -0.01912270944559269 -0.2668350307977969 0.9632227108355886 0.03163977986141616 0.2668350307977969 -0.9632227108355886 -0.03163977986141616 -0.3847975276529873 0.8412080114665909 -0.3798683247607947 0.3847975276529873 -0.8412080114665909 0.3798683247607947 0.1463569553225811 -0.8636853266535993 -0.4823145220206099 -0.1463569553225811 0.8636853266535993 0.4823145220206099 0.2615119302468758 -0.9645779176513866 -0.03465474163615081 -0.2615119302468758 0.9645779176513866 0.03465474163615081 0.312813937715214 -0.2727711947504667 0.909803998499405 -0.312813937715214 0.2727711947504667 -0.909803998499405 0.8772392349435124 0.4797279675852498 0.01767489157665823 -0.8772392349435124 -0.4797279675852498 -0.01767489157665823 0.2801739029134954 0.3069287177025624 0.9095588746066304 -0.2801739029134954 -0.3069287177025624 -0.9095588746066304 -0.7175182984891687 -0.493062063844748 -0.4919931834185976 0.7175182984891687 0.493062063844748 0.4919931834185976 0.3153872024323705 0.02589512471056812 -0.9486096958486705 -0.3153872024323705 -0.02589512471056812 0.9486096958486705 -0.1392729079951383 0.8940030201217805 0.4258657735856609 0.1392729079951383 -0.8940030201217805 -0.4258657735856609 -0.06132960783264231 -0.559245999409194 -0.826730059540541 0.06132960783264231 0.559245999409194 0.826730059540541 0.3280053829650535 -0.2498508836382989 0.9110362257841945 -0.3280053829650535 0.2498508836382989 -0.9110362257841945 0.9954166754633305 0.09554236411270736 0.004159190941202639 -0.9954166754633305 -0.09554236411270736 -0.004159190941202639 0.3316023839629258 0.1947600294281073 0.9230971725052932 -0.3316023839629258 -0.1947600294281073 -0.9230971725052932 -0.817567595914628 0.09710393958585177 0.5675861617651391 0.817567595914628 -0.09710393958585177 -0.5675861617651391 -0.845892723795817 -0.1331824473670872 -0.5164570994212462 0.845892723795817 0.1331824473670872 0.5164570994212462 0.3083737805748481 -0.1573865694169123 -0.9381551466687964 -0.3083737805748481 0.1573865694169123 0.9381551466687964 -0.49906066751783 0.8659886361325957 0.03165647210073535 0.49906066751783 -0.8659886361325957 -0.03165647210073535 -0.595683679261985 0.6858494732127083 -0.4180567597285746 0.595683679261985 -0.6858494732127083 0.4180567597285746 0.3620936228730396 -0.7880808320770243 -0.4978120231447428 -0.3620936228730396 0.7880808320770243 0.4978120231447428 0.4980653832134243 -0.8665764896036617 -0.03124198634305158 -0.4980653832134243 0.8665764896036617 0.03124198634305158 0.3599605548031149 -0.1644806461059633 0.9183542432212084 -0.3599605548031149 0.1644806461059633 -0.9183542432212084 0.2943113679946609 -0.1612759056071542 -0.9420036629120419 -0.2943113679946609 0.1612759056071542 0.9420036629120419 0.9995125382383325 0.03116340676367468 0.001878292641629105 -0.9995125382383325 -0.03116340676367468 -0.001878292641629105 0.3430705686096357 0.1961097339489665 0.9186095782237014 -0.3430705686096357 -0.1961097339489665 -0.9186095782237014 -0.817429378877535 0.04638033217416691 0.5741585803027777 0.817429378877535 -0.04638033217416691 -0.5741585803027777 -0.8407811832775961 -0.1768953411198223 -0.5116591053977513 0.8407811832775961 0.1768953411198223 0.5116591053977513 -0.35129808944451 0.817004074140153 0.457267968691257 0.35129808944451 -0.817004074140153 -0.457267968691257 0.05310044443485681 -0.5295514525895975 -0.8466141989484161 -0.05310044443485681 0.5295514525895975 0.8466141989484161 0.371910903977818 -0.1265529056336114 0.9196013492693953 -0.371910903977818 0.1265529056336114 -0.9196013492693953 0.2430188581667099 -0.3409755324468221 -0.9081175699478317 -0.2430188581667099 0.3409755324468221 0.9081175699478317 0.9393103414085213 -0.3428645216659327 -0.01183225700355211 -0.9393103414085213 0.3428645216659327 0.01183225700355211 0.3671618082724976 0.09387191368893687 0.9254081641991531 -0.3671618082724976 -0.09387191368893687 -0.9254081641991531 -0.710551092386904 0.4479071478781239 0.5426751624936063 0.710551092386904 -0.4479071478781239 -0.5426751624936063 -0.8322539404838799 0.2410568820350278 -0.4992443872219347 0.8322539404838799 -0.2410568820350278 0.4992443872219347 -0.7492711674649847 0.6617218743863794 0.02677458803110484 0.7492711674649847 -0.6617218743863794 -0.02677458803110484 -0.7717817241406854 0.4268254570173437 -0.4713523093444719 0.7717817241406854 -0.4268254570173437 0.4713523093444719 0.170483809089675 -0.4188156083364765 -0.8919241879509842 -0.170483809089675 0.4188156083364765 0.8919241879509842 0.7457553687214293 -0.6658114120340799 -0.02332581463421711 -0.7457553687214293 0.6658114120340799 0.02332581463421711 0.3833096998644326 -0.03329288471623132 0.9230196410787314 -0.3833096998644326 0.03329288471623132 -0.9230196410787314 -0.8487259779749151 0.1691092802598101 -0.501065131136196 0.8487259779749151 -0.1691092802598101 0.501065131136196 0.2375776990483421 -0.3172714586584776 -0.9180934911192963 -0.2375776990483421 0.3172714586584776 0.9180934911192963 0.9142794687668824 -0.4048141260264062 -0.01478432821686986 -0.9142794687668824 0.4048141260264062 0.01478432821686986 0.3773359827893207 0.07296130221177047 0.923197814377818 -0.3773359827893207 -0.07296130221177047 -0.923197814377818 -0.71627631917822 0.4292064200544956 0.5502091271221374 0.71627631917822 -0.4292064200544956 -0.5502091271221374 -0.563440059942193 0.6543362690745136 0.5043603333193283 0.563440059942193 -0.6543362690745136 -0.5043603333193283 0.1654907986919666 -0.4499909829468489 -0.8775653313656048 -0.1654907986919666 0.4499909829468489 0.8775653313656048 0.7849570711114606 -0.6191700521832394 -0.02169891682831128 -0.7849570711114606 0.6191700521832394 0.02169891682831128 0.3812310444774221 0.001923529054748386 0.9244777935475949 -0.3812310444774221 -0.001923529054748386 -0.9244777935475949 -0.706244167523754 0.7074598653524543 0.02682749996118028 0.706244167523754 -0.7074598653524543 -0.02682749996118028 0.1468982078016113 -0.4681795663506381 -0.8713373687593129 -0.1468982078016113 0.4681795663506381 0.8713373687593129 0.5453458991786713 -0.6596964530242664 -0.5171058306731888 -0.5453458991786713 0.6596964530242664 0.5171058306731888 0.3801228128996285 -0.0195318704039094 0.9247297730428056 -0.3801228128996285 0.0195318704039094 -0.9247297730428056 -0.5268314951105831 0.6908844891673766 0.4951032199324509 0.5268314951105831 -0.6908844891673766 -0.4951032199324509 -0.7478765392265949 0.3581085305286898 0.5589623980528871 0.7478765392265949 -0.3581085305286898 -0.5589623980528871 -0.8574561927620363 0.09222928633258869 -0.5062238993139449 0.8574561927620363 -0.09222928633258869 0.5062238993139449 0.2503982173729226 -0.2899535615827029 -0.9237032341948189 -0.2503982173729226 0.2899535615827029 0.9237032341948189 0.9458582625252803 -0.3243810247306563 -0.01136213040530748 -0.9458582625252803 0.3243810247306563 0.01136213040530748 0.3740624146983042 0.1012565533149434 0.9218592193609889 -0.3740624146983042 -0.1012565533149434 -0.9218592193609889 -0.745636455100407 0.4794183673176139 -0.462800503353024 0.745636455100407 -0.4794183673176139 0.462800503353024 0.7019971799635735 -0.711598225048078 -0.02877369339544687 -0.7019971799635735 0.711598225048078 0.02877369339544687 0.3797672618496636 -0.05575662695424759 0.9234002519914611 -0.3797672618496636 0.05575662695424759 -0.9234002519914611 -0.7412895916953542 0.3839107668710773 0.5505472407746644 0.7412895916953542 -0.3839107668710773 -0.5505472407746644 -0.8464357023243537 0.1648019192866333 -0.5063466492731238 0.8464357023243537 -0.1648019192866333 0.5063466492731238 0.2584249755419185 -0.308893984350796 -0.9153147209829244 -0.2584249755419185 0.308893984350796 0.9153147209829244 0.9667076585006691 -0.2557249669506977 -0.009002459342761676 -0.9667076585006691 0.2557249669506977 0.009002459342761676 0.3621324315713503 0.1188542361564693 0.9245181299206 -0.3621324315713503 -0.1188542361564693 -0.9245181299206 -0.319828480820247 0.8330315432288135 0.4514069016331435 0.319828480820247 -0.8330315432288135 -0.4514069016331435 -0.467388207130944 0.8835831911143512 0.02879250275856144 0.467388207130944 -0.8835831911143512 -0.02879250275856144 0.03704287157454465 -0.5386864577944474 -0.8416915859472416 -0.03704287157454465 0.5386864577944474 0.8416915859472416 0.3259175095422821 -0.8059100577942621 -0.4942537361718227 -0.3259175095422821 0.8059100577942621 0.4942537361718227 0.3683376420512646 -0.1471633872619588 0.917970761461225 -0.3683376420512646 0.1471633872619588 -0.917970761461225 -0.8187865510945885 -0.04530477039692678 0.5723076633471812 0.8187865510945885 0.04530477039692678 -0.5723076633471812 -0.8222367497664668 -0.2530950633661906 -0.5097740835243987 0.8222367497664668 0.2530950633661906 0.5097740835243987 0.3007567281968733 -0.1278839000026509 -0.9450878787522481 -0.3007567281968733 0.1278839000026509 0.9450878787522481 0.9912244872234244 0.1320756401905205 0.005480985032222161 -0.9912244872234244 -0.1320756401905205 -0.005480985032222161 0.333509771844488 0.2262200175126377 0.9152025654251738 -0.333509771844488 -0.2262200175126377 -0.9152025654251738 0.3572217274096596 -0.1813045293836095 0.9162539522924015 -0.3572217274096596 0.1813045293836095 -0.9162539522924015 -0.565300419429448 0.7136719270249551 -0.4136518057127 0.565300419429448 -0.7136719270249551 0.4136518057127 0.4589697805821287 -0.8877956677493337 -0.03414077969096929 -0.4589697805821287 0.8877956677493337 0.03414077969096929 -0.8236095268115204 0.01010747496905179 0.5670671797018883 0.8236095268115204 -0.01010747496905179 -0.5670671797018883 -0.8284159133026785 -0.2197540306626502 -0.5152040766476993 0.8284159133026785 0.2197540306626502 0.5152040766476993 0.3143300407786073 -0.1151558513428136 -0.9423034306239319 -0.3143300407786073 0.1151558513428136 0.9423034306239319 0.9814083768292785 0.1917744503380455 0.007756164442642895 -0.9814083768292785 -0.1917744503380455 -0.007756164442642895 0.3229203741173248 0.2179533747215781 0.9209879252343119 -0.3229203741173248 -0.2179533747215781 -0.9209879252343119 0.3242541706614489 -0.2627750901835281 0.9087400534738713 -0.3242541706614489 0.2627750901835281 -0.9087400534738713 -0.1173928708922645 0.8977239858185802 0.4246299084493154 0.1173928708922645 -0.8977239858185802 -0.4246299084493154 -0.2470209679738535 0.9685272980215588 0.03058617936779985 0.2470209679738535 -0.9685272980215588 -0.03058617936779985 -0.07434429498979471 -0.5620855008319186 -0.8237310335036563 0.07434429498979471 0.5620855008319186 0.8237310335036563 0.1220193310967036 -0.8647783357873065 -0.4871033902485693 -0.1220193310967036 0.8647783357873065 0.4871033902485693 -0.8216091760256223 -0.5698910467663091 0.01351135396984268 0.8216091760256223 0.5698910467663091 -0.01351135396984268 -0.6877399972820246 -0.5387620609649704 -0.4865687390321107 0.6877399972820246 0.5387620609649704 0.4865687390321107 0.3137535991503929 0.05872408916709184 -0.9476867416882385 -0.3137535991503929 -0.05872408916709184 0.9476867416882385 0.8392336626659065 0.5433720470069278 0.02082493649135057 -0.8392336626659065 -0.5433720470069278 -0.02082493649135057 0.2680747318234752 0.3235036174975843 0.9074587305347547 -0.2680747318234752 -0.3235036174975843 -0.9074587305347547 0.2377472828951252 -0.9701780601104388 -0.04723093431566958 -0.2377472828951252 0.9701780601104388 0.04723093431566958 0.3107193740576593 -0.2832717599607755 0.907309528547971 -0.3107193740576593 0.2832717599607755 -0.907309528547971 -0.3635071034682662 0.851689493842403 -0.3774752863520772 0.3635071034682662 -0.851689493842403 0.3774752863520772 -0.7564394689297171 -0.3791257143731235 0.5329756303494525 0.7564394689297171 0.3791257143731235 -0.5329756303494525 0.3158554290317395 0.1010314995531506 -0.9434129446054985 -0.3158554290317395 -0.1010314995531506 0.9434129446054985 0.8201439144736518 0.5717406329886114 0.02183135684324419 -0.8201439144736518 -0.5717406329886114 -0.02183135684324419 0.2680273659666383 0.2977098905819318 0.9162587801176478 -0.2680273659666383 -0.2977098905819318 -0.9162587801176478 -0.06941768949860945 -0.8752680117319243 -0.4786304336578678 0.06941768949860945 0.8752680117319243 0.4786304336578678 0.2548562942491333 -0.3498302492799214 0.9014804856292495 -0.2548562942491333 0.3498302492799214 -0.9014804856292495 0.07989374694636887 0.905524056762171 0.4167051377459245 -0.07989374694636887 -0.905524056762171 -0.4167051377459245 -0.04083407666331518 0.9986109237387494 0.03329866622998426 0.04083407666331518 -0.9986109237387494 -0.03329866622998426 -0.1825168070008863 -0.5375088204783604 -0.8232690222947557 0.1825168070008863 0.5375088204783604 0.8232690222947557 -0.5778166565947228 -0.8161636802074702 -0.002181392191840661 0.5778166565947228 0.8161636802074702 0.002181392191840661 -0.5021055235161622 -0.7356162437443379 -0.4547073621506819 0.5021055235161622 0.7356162437443379 0.4547073621506819 0.2805007666319367 0.2496917903147441 -0.9268081407542307 -0.2805007666319367 -0.2496917903147441 0.9268081407542307 0.5959037904870111 0.8025039654624023 0.02976672471622715 -0.5959037904870111 -0.8025039654624023 -0.02976672471622715 0.1886906347700052 0.3827643441045949 0.9043712187106974 -0.1886906347700052 -0.3827643441045949 -0.9043712187106974 0.02641701591325398 -0.9989898112601752 -0.03635241764447635 -0.02641701591325398 0.9989898112601752 0.03635241764447635 0.2495514332803363 -0.3597419611084889 0.8990605116261908 -0.2495514332803363 0.3597419611084889 -0.8990605116261908 -0.1610314974983271 0.9195489868697272 -0.3584668988348915 0.1610314974983271 -0.9195489868697272 0.3584668988348915 -0.5735130645200138 -0.6719746140646919 0.4685433628571327 0.5735130645200138 0.6719746140646919 -0.4685433628571327 0.265776222113249 0.2945794855482167 -0.9179247934626001 -0.265776222113249 -0.2945794855482167 0.9179247934626001 0.5837459602281524 0.8113763080652734 0.03015195893601343 -0.5837459602281524 -0.8113763080652734 -0.03015195893601343 0.1992330068427163 0.3545630541910325 0.9135596584718136 -0.1992330068427163 -0.3545630541910325 -0.9135596584718136 -0.286198125250775 -0.4777541886152585 -0.8305670161784163 0.286198125250775 0.4777541886152585 0.8305670161784163 -0.25962599946674 -0.8357038626627454 -0.4839353204008397 0.25962599946674 0.8357038626627454 0.4839353204008397 0.1711466414133597 -0.3975101723518444 0.9014956960572436 -0.1711466414133597 0.3975101723518444 -0.9014956960572436 0.2759882413612637 0.8620904505986943 0.4250065242050496 -0.2759882413612637 -0.8620904505986943 -0.4250065242050496 0.1627409593554778 0.9861125950546078 0.0331259720268841 -0.1627409593554778 -0.9861125950546078 -0.0331259720268841 -0.3416776399149192 -0.9396748590695885 -0.0163569439297154 0.3416776399149192 0.9396748590695885 0.0163569439297154 -0.3037978508011625 -0.8503116366343569 -0.4297406036817975 0.3037978508011625 0.8503116366343569 0.4297406036817975 0.2017729220895513 0.4122219067906814 -0.8884597838243995 -0.2017729220895513 -0.4122219067906814 0.8884597838243995 0.3534036074999896 0.9348125618392212 0.03509080269223711 -0.3534036074999896 -0.9348125618392212 -0.03509080269223711 0.1058950680610089 0.4040213110050124 0.9085994798667593 -0.1058950680610089 -0.4040213110050124 -0.9085994798667593 0.03904623842495032 0.9310187796789678 -0.3628765949326953 -0.03904623842495032 -0.9310187796789678 0.3628765949326953 -0.185280144163769 -0.9820270394990084 -0.03597446137839718 0.185280144163769 0.9820270394990084 0.03597446137839718 0.1773343338050253 -0.407918090695269 0.8956312663911717 -0.1773343338050253 0.407918090695269 -0.8956312663911717 -0.3548846155969388 -0.8408590923146846 0.4086721136612301 0.3548846155969388 0.8408590923146846 -0.4086721136612301 0.1821956052109466 0.439781889757753 -0.8794297304975063 -0.1821956052109466 -0.439781889757753 0.8794297304975063 0.3477969156729294 0.9369126823191033 0.03509887687690649 -0.3477969156729294 -0.9369126823191033 -0.03509887687690649 0.1203147449577395 0.3836090892651766 0.9156246112784954 -0.1203147449577395 -0.3836090892651766 -0.9156246112784954 0.3817361878603577 0.9236387664447153 0.03418935504402063 -0.3817361878603577 -0.9236387664447153 -0.03418935504402063 -0.3808561525487514 -0.3762278222568641 -0.8446308168813282 0.3808561525487514 0.3762278222568641 0.8446308168813282 -0.4502518883566059 -0.7431705871337786 -0.4949451640844119 0.4502518883566059 0.7431705871337786 0.4949451640844119 0.08537821147082986 -0.4050004694324626 0.9103214711109079 -0.08537821147082986 0.4050004694324626 -0.9103214711109079 0.4839402349904592 0.7462603074213654 0.4570529537425049 -0.4839402349904592 -0.7462603074213654 -0.4570529537425049 -0.1272823242317779 -0.9915104149325137 -0.02657643728025157 0.1272823242317779 0.9915104149325137 0.02657643728025157 -0.107485252019738 -0.9023317361563371 -0.4174258718902604 0.107485252019738 0.9023317361563371 0.4174258718902604 0.1272952337579134 0.8804963853411909 -0.4566421343498815 -0.1272952337579134 -0.8804963853411909 0.4566421343498815 0.1306568334550952 0.9907806768235814 0.03581120361693436 -0.1306568334550952 -0.9907806768235814 -0.03581120361693436 0.02655459317774895 0.3881777094386431 0.9212018885543671 -0.02655459317774895 -0.3881777094386431 -0.9212018885543671 0.2461740196361449 0.8881072047840408 -0.3881545373518912 -0.2461740196361449 -0.8881072047840408 0.3881545373518912 -0.4100851868289213 -0.9114063973479533 -0.03418359865072141 0.4100851868289213 0.9114063973479533 0.03418359865072141 0.09585588479500046 -0.4239048722954816 0.9006199579147239 -0.09585588479500046 0.4239048722954816 -0.9006199579147239 -0.1414586116089602 -0.9177243521144169 0.3711758003127884 0.1414586116089602 0.9177243521144169 -0.3711758003127884 0.08229943604642631 0.5326286561408844 -0.8423381253890837 -0.08229943604642631 -0.5326286561408844 0.8423381253890837 0.03579019274096595 0.3769091626890147 0.9255585044634567 -0.03579019274096595 -0.3769091626890147 -0.9255585044634567 0.6746750770627003 0.5584493657598201 0.4826467095846549 -0.6746750770627003 -0.5584493657598201 -0.4826467095846549 0.619528573217243 0.7846549825333663 0.02238091492700978 -0.619528573217243 -0.7846549825333663 -0.02238091492700978 -0.4569814034594899 -0.2308057509950033 -0.8590091397650129 0.4569814034594899 0.2308057509950033 0.8590091397650129 -0.6401975749858474 -0.58216510744509 -0.5012293413754696 0.6401975749858474 0.58216510744509 0.5012293413754696 0.00408306155931046 -0.3751957745293469 0.9269365994412057 -0.00408306155931046 0.3751957745293469 -0.9269365994412057 0.07706466119739523 -0.9963908167601588 -0.03558620899385377 -0.07706466119739523 0.9963908167601588 0.03558620899385377 0.0890429529909573 -0.9019492033324196 -0.4225624061966039 -0.0890429529909573 0.9019492033324196 0.4225624061966039 -0.06621635051689698 0.8987936255464268 -0.4333421438094072 0.06621635051689698 -0.8987936255464268 0.4333421438094072 -0.08027752129711639 0.996092975350629 0.03680086998322935 0.08027752129711639 -0.996092975350629 -0.03680086998322935 -0.04440117795251147 0.3395248659412713 0.9395485090212167 0.04440117795251147 -0.3395248659412713 -0.9395485090212167 0.01158391838349427 -0.4044989765681269 0.91446508451128 -0.01158391838349427 0.4044989765681269 -0.91446508451128 0.4607747597898561 0.7726062491475303 -0.4367679069240149 -0.4607747597898561 -0.7726062491475303 0.4367679069240149 -0.6528365961929814 -0.7569697116279336 -0.02830608325228319 0.6528365961929814 0.7569697116279336 0.02830608325228319 0.06271318085236688 -0.9322264024201509 0.3564000443015705 -0.06271318085236688 0.9322264024201509 -0.3564000443015705 -0.02539505075182641 0.5792832754279267 -0.8147306169567982 0.02539505075182641 -0.5792832754279267 0.8147306169567982 -0.04651188970002081 0.3295206170603162 0.9430020185814672 0.04651188970002081 -0.3295206170603162 -0.9430020185814672 -0.06473643536617336 -0.3132162085453832 0.9474728495532399 0.06473643536617336 0.3132162085453832 -0.9474728495532399 0.8189863945610214 0.267804498993347 0.5074859957110751 -0.8189863945610214 -0.267804498993347 -0.5074859957110751 0.8580747624937155 0.5135118524823926 0.00364408170257575 -0.8580747624937155 -0.5135118524823926 -0.00364408170257575 -0.4994276384374227 -0.04700378027259036 -0.8650795793479956 0.4994276384374227 0.04700378027259036 0.8650795793479956 -0.8539205796523492 -0.5200329319132497 -0.01963143835548998 0.8539205796523492 0.5200329319132497 0.01963143835548998 0.2852468130184876 -0.9574703627261206 -0.04341382457129295 -0.2852468130184876 0.9574703627261206 0.04341382457129295 0.2924335662428017 -0.8450028909434059 -0.4477194697930873 -0.2924335662428017 0.8450028909434059 0.4477194697930873 -0.2599785599269004 0.8674531651416381 -0.4241888195887405 0.2599785599269004 -0.8674531651416381 0.4241888195887405 -0.2945723042932884 0.9549914746939281 0.03490617144945838 0.2945723042932884 -0.9549914746939281 -0.03490617144945838 -0.1034209544155115 0.260833981179355 0.9598279744047434 0.1034209544155115 -0.260833981179355 -0.9598279744047434 -0.8820108241384292 -0.4708976330123468 -0.01767272831279923 0.8820108241384292 0.4708976330123468 0.01767272831279923 -0.06793973200068289 -0.3407081446211087 0.9377111244965142 0.06793973200068289 0.3407081446211087 -0.9377111244965142 0.6640962514205898 0.5539647316542878 -0.5020948565085224 -0.6640962514205898 -0.5539647316542878 0.5020948565085224 -0.4964816572811355 -0.007177603277728776 -0.8680175378381272 0.4964816572811355 0.007177603277728776 0.8680175378381272 0.2615164558810464 -0.8933693306476449 0.3653770413717801 -0.2615164558810464 0.8933693306476449 -0.3653770413717801 -0.1382161165012245 0.5831356619914788 -0.8005305146295673 0.1382161165012245 -0.5831356619914788 0.8005305146295673 -0.1141259954480732 0.2414788498438282 0.9636717398788285 0.1141259954480732 -0.2414788498438282 -0.9636717398788285 -0.8822877168491453 0.02221624459042109 -0.4701859453167663 0.8822877168491453 -0.02221624459042109 0.4701859453167663 -0.1188546313479534 -0.226015175599825 0.9668457565742957 0.1188546313479534 0.226015175599825 -0.9668457565742957 0.8587171771022855 -0.08021848991260513 0.5061321997518272 -0.8587171771022855 0.08021848991260513 -0.5061321997518272 0.80509121276603 0.182684089460753 -0.5643178737066713 -0.80509121276603 -0.182684089460753 0.5643178737066713 -0.4925833391417399 0.1528107137817175 -0.8567441506969837 0.4925833391417399 -0.1528107137817175 0.8567441506969837 0.5097604686917933 -0.8591228422745929 -0.04530128520415593 -0.5097604686917933 0.8591228422745929 0.04530128520415593 0.503262502862575 -0.7120610666436443 -0.4895874697975962 -0.503262502862575 0.7120610666436443 0.4895874697975962 -0.4603535068224687 0.7788744847979318 -0.4259450500792463 0.4603535068224687 -0.7788744847979318 0.4259450500792463 -0.5234978772167905 0.8514922081889411 0.03018264307570166 0.5234978772167905 -0.8514922081889411 -0.03018264307570166 -0.1518393415659207 0.1544949781778873 0.9762561733841388 0.1518393415659207 -0.1544949781778873 -0.9762561733841388 -0.9986618584080447 -0.05166696240940564 -0.002239990262371929 0.9986618584080447 0.05166696240940564 0.002239990262371929 -0.1318587900484524 -0.2349770160994678 0.9630156080728645 0.1318587900484524 0.2349770160994678 -0.9630156080728645 0.857028387459813 -0.04027418967984569 0.5136928388966155 -0.857028387459813 0.04027418967984569 -0.5136928388966155 0.802064657774842 0.2179832984637024 -0.5560355801020377 -0.802064657774842 -0.2179832984637024 0.5560355801020377 0.461629591813155 -0.791022940541534 0.4014733210307315 -0.461629591813155 0.791022940541534 -0.4014733210307315 -0.2525244762890936 0.5414008070120525 -0.8019454813399832 0.2525244762890936 -0.5414008070120525 0.8019454813399832 -0.1597796618615042 0.122807679034642 0.9794839118768351 0.1597796618615042 -0.122807679034642 -0.9794839118768351 -0.4353127671755993 0.3341078671532379 -0.8359872773195993 0.4353127671755993 -0.3341078671532379 0.8359872773195993 -0.8085216629104076 0.3822954044526677 -0.4473733835835125 0.8085216629104076 -0.3822954044526677 0.4473733835835125 -0.1551553136597286 -0.1168551605829648 0.9809544842082534 0.1551553136597286 0.1168551605829648 -0.9809544842082534 0.780633767826844 -0.4067753626586666 0.4744941779014527 -0.780633767826844 0.4067753626586666 -0.4744941779014527 0.9244937614473499 -0.3785567368550198 -0.04478930705659131 -0.9244937614473499 0.3785567368550198 0.04478930705659131 0.7501777083173664 -0.6593857530995007 -0.04943515503271423 -0.7501777083173664 0.6593857530995007 0.04943515503271423 0.6978756724217701 -0.4623606802271916 -0.5469845950497244 -0.6978756724217701 0.4623606802271916 0.5469845950497244 -0.6649137266292722 0.6072454867179655 -0.4349053402760593 0.6649137266292722 -0.6072454867179655 0.4349053402760593 -0.7604909755671593 0.6489453172537542 0.02287905800802799 0.7604909755671593 -0.6489453172537542 -0.02287905800802799 -0.1719481295432023 0.01942719420443318 0.984914425151717 0.1719481295432023 -0.01942719420443318 -0.984914425151717 0.8041236149092155 -0.1784768550586106 -0.567037233480945 -0.8041236149092155 0.1784768550586106 0.567037233480945 -0.9246639437465246 0.3805517200660055 0.01330336385764 0.9246639437465246 -0.3805517200660055 -0.01330336385764 -0.1673398208350277 -0.09875008188294676 0.9809412855472096 0.1673398208350277 0.09875008188294676 -0.9809412855472096 0.6515680064245015 -0.6172448359197024 0.4409851987702768 -0.6515680064245015 0.6172448359197024 -0.4409851987702768 -0.3609331625954829 0.4492091988848745 -0.8172749523728423 0.3609331625954829 -0.4492091988848745 0.8172749523728423 -0.1680954692977072 -0.01327613670707577 0.9856813163470833 0.1680954692977072 0.01327613670707577 -0.9856813163470833 0.7077312487955543 -0.70465695649397 -0.05074498145571148 -0.7077312487955543 0.70465695649397 0.05074498145571148 -0.3422913146461143 0.4701646595185103 -0.8134997534465994 0.3422913146461143 -0.4701646595185103 0.8134997534465994 -0.6285504469312564 0.6463465159876448 -0.432620523014282 0.6285504469312564 -0.6463465159876448 0.432620523014282 -0.1684919533531034 0.01077137011397833 0.9856441747614214 0.1684919533531034 -0.01077137011397833 -0.9856441747614214 0.6208555916692818 -0.6569446747327986 0.4277406090532013 -0.6208555916692818 0.6569446747327986 -0.4277406090532013 0.8016848346520146 -0.3477112372625088 0.4862081050027315 -0.8016848346520146 0.3477112372625088 -0.4862081050027315 0.8149407653504821 -0.1080939743893893 -0.5693744301166648 -0.8149407653504821 0.1080939743893893 0.5693744301166648 -0.8324361114609851 0.3218662650475636 -0.4510567899500528 0.8324361114609851 -0.3218662650475636 0.4510567899500528 -0.9513176264003224 0.3080434766497365 0.01019755821753643 0.9513176264003224 -0.3080434766497365 -0.01019755821753643 -0.1634226488672288 -0.1247288266203847 0.978639748654795 0.1634226488672288 0.1247288266203847 -0.978639748654795 0.6678545272762165 -0.5214214448413437 -0.5311214618674591 -0.6678545272762165 0.5214214448413437 0.5311214618674591 -0.7182512980189613 0.6953403055486193 0.02483812339187629 0.7182512980189613 -0.6953403055486193 -0.02483812339187629 -0.1693919375325174 0.04484508914520848 0.9845279526141134 0.1693919375325174 -0.04484508914520848 -0.9845279526141134 0.8048770154338162 -0.3506427111350812 0.4787720534389954 -0.8048770154338162 0.3506427111350812 -0.4787720534389954 0.8033666650645278 -0.1701831128983491 -0.5706484991194902 -0.8033666650645278 0.1701831128983491 0.5706484991194902 -0.449276662052396 0.3041261528388937 -0.840034382685894 0.449276662052396 -0.3041261528388937 0.840034382685894 -0.1500241186418038 -0.1381877067319115 0.9789774877564473 0.1500241186418038 0.1381877067319115 -0.9789774877564473 0.4259164727472657 -0.8178739305926825 0.3868816251767502 -0.4259164727472657 0.8178739305926825 -0.3868816251767502 0.4675417481522561 -0.8827033205932906 -0.04732400604672524 -0.4675417481522561 0.8827033205932906 0.04732400604672524 -0.2320469253631314 0.5524833462257559 -0.8005725304884679 0.2320469253631314 -0.5524833462257559 0.8005725304884679 -0.423557627267104 0.8000749581641595 -0.4248281978664779 0.423557627267104 -0.8000749581641595 0.4248281978664779 -0.1520261298610904 0.1435922819635595 0.9778902353536191 0.1520261298610904 -0.1435922819635595 -0.9778902353536191 0.8563237254984636 0.03079858925869943 0.5155202460118381 -0.8563237254984636 -0.03079858925869943 -0.5155202460118381 0.7854940101452571 0.2863170703831796 -0.5486544406392022 -0.7854940101452571 -0.2863170703831796 0.5486544406392022 -0.8789082253122669 -0.04564312127338695 -0.4748021029427568 0.8789082253122669 0.04564312127338695 0.4748021029427568 -0.9909634038787927 -0.1340025373020281 -0.005903572611154711 0.9909634038787927 0.1340025373020281 0.005903572611154711 -0.1214750110649079 -0.2566275933410345 0.9588462337740964 0.1214750110649079 0.2566275933410345 -0.9588462337740964 -0.142452558699072 0.1742583355203759 0.9743414704413209 0.142452558699072 -0.1742583355203759 -0.9743414704413209 0.4649669496611292 -0.7434136308494656 -0.4807722009330817 -0.4649669496611292 0.7434136308494656 0.4807722009330817 -0.4807005703786668 0.8763117445965224 0.03169681245525551 0.4807005703786668 -0.8763117445965224 -0.03169681245525551 0.860818501158697 -0.01639334936765001 0.5086479786251046 -0.860818501158697 0.01639334936765001 -0.5086479786251046 0.7900970044825006 0.256243834616507 -0.5568535002393426 -0.7900970044825006 -0.256243834616507 0.5568535002393426 -0.4980016540115691 0.1169037436321664 -0.8592600696683899 0.4980016540115691 -0.1169037436321664 0.8592600696683899 -0.1096713944455775 -0.2434581647668065 0.9636909812013087 0.1096713944455775 0.2434581647668065 -0.9636909812013087 -0.1039331501312693 0.2596929771875718 0.9600820058220267 0.1039331501312693 -0.2596929771875718 -0.9600820058220267 0.2255519598441016 -0.9042487363484568 0.3625748698168476 -0.2255519598441016 0.9042487363484568 -0.3625748698168476 0.2462996175769647 -0.9683051549927454 -0.04149247155709469 -0.2462996175769647 0.9683051549927454 0.04149247155709469 -0.1177075886272675 0.5855797316620933 -0.8020232549284995 0.1177075886272675 -0.5855797316620933 0.8020232549284995 -0.2245596538812725 0.8769503476001817 -0.4248894558501582 0.2245596538812725 -0.8769503476001817 0.4248894558501582 0.8181557879751343 0.574941013221297 0.007996118987057179 -0.8181557879751343 -0.574941013221297 -0.007996118987057179 0.6305745196917911 0.6022609822383443 -0.4895482452105935 -0.6305745196917911 -0.6022609822383443 0.4895482452105935 -0.4949674466025706 -0.03893954632934858 -0.8680385582077539 0.4949674466025706 0.03893954632934858 0.8680385582077539 -0.8451073230742584 -0.5342149830365645 -0.02019812826735253 0.8451073230742584 0.5342149830365645 0.02019812826735253 -0.05381835492117146 -0.3553815859925096 0.9331706773206214 0.05381835492117146 0.3553815859925096 -0.9331706773206214 -0.2549244234810441 0.9663206296739521 0.03518492545671107 0.2549244234810441 -0.9663206296739521 -0.03518492545671107 -0.09421689584469263 0.2772090208169448 0.9561790289036364 0.09421689584469263 -0.2772090208169448 -0.9561790289036364 0.2549044366570637 -0.860011990970127 -0.4420442325832825 -0.2549044366570637 0.860011990970127 0.4420442325832825 0.7993074046846863 0.3271452838378929 0.5040670948185921 -0.7993074046846863 -0.3271452838378929 -0.5040670948185921 -0.4949001898211957 -0.08217580751408803 -0.8650554541613803 0.4949001898211957 0.08217580751408803 0.8650554541613803 -0.8143883665441624 -0.5799121006899042 -0.02176106410434394 0.8143883665441624 0.5799121006899042 0.02176106410434394 -0.0528267853515411 -0.3265124915131391 0.943715488712199 0.0528267853515411 0.3265124915131391 -0.943715488712199 -0.03142267022114505 0.8992661103168952 -0.4362717944489363 0.03142267022114505 -0.8992661103168952 0.4362717944489363 -0.03222591778629572 0.3414505049292814 0.9393471365296059 0.03222591778629572 -0.3414505049292814 -0.9393471365296059 0.02593088187460911 -0.9334529941299953 0.3577612291947694 -0.02593088187460911 0.9334529941299953 -0.3577612291947694 0.04047658744709259 -0.9985690523142606 -0.03494987308757316 -0.04047658744709259 0.9985690523142606 0.03494987308757316 -0.005340848939804973 0.5750843972474491 -0.8180766537282069 0.005340848939804973 -0.5750843972474491 0.8180766537282069 0.5748670573803423 0.8178949423428396 0.02399436660696463 -0.5748670573803423 -0.8178949423428396 -0.02399436660696463 0.4214047194118107 0.8001772768590731 -0.4267720563202931 -0.4214047194118107 -0.8001772768590731 0.4267720563202931 -0.6075070051510968 -0.6169889755584409 -0.500259775248511 0.6075070051510968 0.6169889755584409 0.500259775248511 -0.6082644619063846 -0.7931893218307541 -0.02941163231452664 0.6082644619063846 0.7931893218307541 0.02941163231452664 0.02731427010381074 -0.4112080491155628 0.9111321918312783 -0.02731427010381074 0.4112080491155628 -0.9111321918312783 -0.04234697716265905 0.9984412466868483 0.03635671106684103 0.04234697716265905 -0.9984412466868483 -0.03635671106684103 -0.03223101623502139 0.3507029644867439 0.9359319378526771 0.03223101623502139 -0.3507029644867439 -0.9359319378526771 0.05359354659176144 -0.9050878967654793 -0.4218336531055313 -0.05359354659176144 0.9050878967654793 0.4218336531055313 0.6412413465959838 0.60272082229122 0.4749075128826295 -0.6412413465959838 -0.60272082229122 -0.4749075128826295 -0.4462105565441957 -0.2575226230380935 -0.8570753979972237 0.4462105565441957 0.2575226230380935 0.8570753979972237 0.01844952214499368 -0.3829088407142423 0.9236018811346676 -0.01844952214499368 0.3829088407142423 -0.9236018811346676 0.1011330725469509 0.5194724520743951 -0.8484812744975747 -0.1011330725469509 -0.5194724520743951 0.8484812744975747 0.1630294479068578 0.871814449518784 -0.4619101262425891 -0.1630294479068578 -0.871814449518784 0.4619101262425891 0.0510637975217282 0.3804469862760125 0.9233918882122364 -0.0510637975217282 -0.3804469862760125 -0.9233918882122364 -0.1789348057381016 -0.9094822423736374 0.375265753969754 0.1789348057381016 0.9094822423736374 -0.375265753969754 -0.1644532411474187 -0.9860473726968939 -0.02580136185672202 0.1644532411474187 0.9860473726968939 0.02580136185672202 0.3395373426710984 0.9400998637165698 0.03044074854427659 -0.3395373426710984 -0.9400998637165698 -0.03044074854427659 0.2080958314185695 0.9007190269975417 -0.3813153017527829 -0.2080958314185695 -0.9007190269975417 0.3813153017527829 -0.4170843605138727 -0.763075286070442 -0.4937172713236264 0.4170843605138727 0.763075286070442 0.4937172713236264 -0.3672173125572642 -0.929670628098362 -0.02939334294389833 0.3672173125572642 0.929670628098362 0.02939334294389833 0.111827054596911 -0.424651065403749 0.8984242775613538 -0.111827054596911 0.424651065403749 -0.8984242775613538 -0.1429775543358956 -0.8969391337325153 -0.4183988639268644 0.1429775543358956 0.8969391337325153 0.4183988639268644 0.1697457261997588 0.9848297526555807 0.03601036963520293 -0.1697457261997588 -0.9848297526555807 -0.03601036963520293 0.04028526280218579 0.3929503182275642 0.9186768447097243 -0.04028526280218579 -0.3929503182275642 -0.9186768447097243 0.4425252753879181 0.7806935143644559 0.4412357842153354 -0.4425252753879181 -0.7806935143644559 -0.4412357842153354 -0.3615510851970467 -0.3924085741928782 -0.8457519279864222 0.3615510851970467 0.3924085741928782 0.8457519279864222 0.1003763762971855 -0.405997808450411 0.908344847849598 -0.1003763762971855 0.405997808450411 -0.908344847849598 -0.3904713290394705 -0.9204989061760063 -0.01462548894655272 0.3904713290394705 0.9204989061760063 0.01462548894655272 0.2028376560254069 0.413744952877412 -0.8875088727818932 -0.2028376560254069 -0.413744952877412 0.8875088727818932 0.396608791264394 0.9173863486612863 0.03322279310517088 -0.396608791264394 -0.9173863486612863 -0.03322279310517088 0.1367919978862975 0.3783260601638079 0.915509334477375 -0.1367919978862975 -0.3783260601638079 -0.915509334477375 -0.4037411148157989 -0.8136336634161336 0.4183220935634858 0.4037411148157989 0.8136336634161336 -0.4183220935634858 0.2130963481630372 0.976225375381003 -0.03967320080101625 -0.2130963481630372 -0.976225375381003 0.03967320080101625 0.1082527642888195 0.9240157235623439 -0.3667100784453402 -0.1082527642888195 -0.9240157235623439 0.3667100784453402 -0.3282095679388387 -0.7677571340105247 -0.5502976128326798 0.3282095679388387 0.7677571340105247 0.5502976128326798 -0.2328766928025201 -0.9718884443470868 -0.03465974168917625 0.2328766928025201 0.9718884443470868 0.03465974168917625 0.147376313159506 -0.3971289635474629 0.9058525313930679 -0.147376313159506 0.3971289635474629 -0.9058525313930679 -0.3468889467228274 -0.831933338942228 -0.4330761805940883 0.3468889467228274 0.831933338942228 0.4330761805940883 0.2234161499957088 0.3810200301792597 -0.897167186494965 -0.2234161499957088 -0.3810200301792597 0.897167186494965 0.4038395713122486 0.9142287575762091 0.03315689163658483 -0.4038395713122486 -0.9142287575762091 -0.03315689163658483 0.1223263146597214 0.4011059037466704 0.9078272559916547 -0.1223263146597214 -0.4011059037466704 -0.9078272559916547 0.3151557714650701 0.850933809128837 0.4202243355563129 -0.3151557714650701 -0.850933809128837 -0.4202243355563129 -0.3363397734911338 -0.4604549379996871 -0.8214966870533548 0.3363397734911338 0.4604549379996871 0.8214966870533548 0.147769700001947 -0.3878723864430676 0.9097907053802509 -0.147769700001947 0.3878723864430676 -0.9097907053802509 -0.6420063779804296 -0.5914967439439237 0.4878108368375864 0.6420063779804296 0.5914967439439237 -0.4878108368375864 -0.6565684656533083 -0.7542650483841933 0.00144453994444209 0.6565684656533083 0.7542650483841933 -0.00144453994444209 0.2874140128009826 0.2414414916118539 -0.9268760388390025 -0.2874140128009826 -0.2414414916118539 0.9268760388390025 0.6582611817184929 0.7522680620784041 0.02801748417284312 -0.6582611817184929 -0.7522680620784041 -0.02801748417284312 0.2200941092028078 0.3382586534371596 0.9149533684669958 -0.2200941092028078 -0.3382586534371596 -0.9149533684669958 0.2116410019073268 0.368243600618228 0.9053202399788628 -0.2116410019073268 -0.368243600618228 -0.9053202399788628 -0.5633513745399559 -0.6828443070427693 -0.4651439359415776 0.5633513745399559 0.6828443070427693 0.4651439359415776 0.298370217248233 0.191205473160415 -0.935101962618379 -0.298370217248233 -0.191205473160415 0.935101962618379 0.6749359517078825 0.7373591867748749 0.0276204773830946 -0.6749359517078825 -0.7373591867748749 -0.0276204773830946 0.2878241731108553 0.272326905732818 0.9181477559668931 -0.2878241731108553 -0.272326905732818 -0.9181477559668931 -0.7965386423346083 -0.2532915234743957 0.5489713976190006 0.7965386423346083 0.2532915234743957 -0.5489713976190006 -0.8951956121350305 -0.445246287935769 0.01950792386714897 0.8951956121350305 0.445246287935769 -0.01950792386714897 0.3232983020271709 0.02813755581106068 -0.9458786845358804 -0.3232983020271709 -0.02813755581106068 0.9458786845358804 0.8886201215023675 0.4583095248458386 0.01751168457628765 -0.8886201215023675 -0.4583095248458386 -0.01751168457628765 0.9067694045013615 0.4212875724775627 0.01691237228210239 -0.9067694045013615 -0.4212875724775627 -0.01691237228210239 0.2923017754237066 0.2931792918416378 0.9102777460310586 -0.2923017754237066 -0.2931792918416378 -0.9102777460310586 -0.741970476744986 -0.45126640558974 -0.4958209786051158 0.741970476744986 0.45126640558974 0.4958209786051158 0.3148780279575754 -0.004851247987694989 -0.9491197463452703 -0.3148780279575754 0.004851247987694989 0.9491197463452703 0.9986408233613113 0.05204832849954173 0.002734486541561556 -0.9986408233613113 -0.05204832849954173 -0.002734486541561556 0.338159771584448 0.1884759967616518 0.9220221079381208 -0.338159771584448 -0.1884759967616518 -0.9220221079381208 -0.810222486636613 0.1385864754966381 0.5695026874017393 0.810222486636613 -0.1385864754966381 -0.5695026874017393 -0.8502769913784182 -0.1027726419431457 -0.51620424446191 0.8502769913784182 0.1027726419431457 0.51620424446191 0.3038735326440124 -0.1820268002010055 -0.9351615476306924 -0.3038735326440124 0.1820268002010055 0.9351615476306924 0.2901925836013853 -0.1816704618298906 -0.9395659145165215 -0.2901925836013853 0.1816704618298906 0.9395659145165215 0.9998134129065579 -0.01931572795425492 0.0002050017991617721 -0.9998134129065579 0.01931572795425492 -0.0002050017991617721 0.3505536682700014 0.1890931772732937 0.917254542627692 -0.3505536682700014 -0.1890931772732937 -0.917254542627692 -0.8136363054643536 0.08549797737053264 0.5750530917192472 0.8136363054643536 -0.08549797737053264 -0.5750530917192472 -0.8477387422046507 -0.145690523253534 -0.510013035519082 0.8477387422046507 0.145690523253534 0.510013035519082 0.2332790290379629 -0.3605655833137569 -0.9030910002545234 -0.2332790290379629 0.3605655833137569 0.9030910002545234 0.9227552955186689 -0.3850316805994672 -0.01653086588790668 -0.9227552955186689 0.3850316805994672 0.01653086588790668 0.3710773255409565 0.08356988843990149 0.9248338727660842 -0.3710773255409565 -0.08356988843990149 -0.9248338727660842 -0.6915776048788422 0.481449819457784 0.5384482219992104 0.6915776048788422 -0.481449819457784 -0.5384482219992104 -0.8981508096072901 0.4388332978278862 0.02739452352699584 0.8981508096072901 -0.4388332978278862 -0.02739452352699584 -0.8429540014162222 0.203978418702621 -0.497816588915996 0.8429540014162222 -0.203978418702621 0.497816588915996 0.2290286556424245 -0.3336022894551302 -0.9144700035347902 -0.2290286556424245 0.3336022894551302 0.9144700035347902 0.8927775322530374 -0.4501268218996853 -0.01827900737638643 -0.8927775322530374 0.4501268218996853 0.01827900737638643 0.3806461863454164 0.0586449495950467 0.9228592800138519 -0.3806461863454164 -0.0586449495950467 -0.9228592800138519 -0.6731385750235163 0.7390084312967923 0.02740432972295189 0.6731385750235163 -0.7390084312967923 -0.02740432972295189 0.1328489735460141 -0.4811768208942334 -0.8664987116331387 -0.1328489735460141 0.4811768208942334 0.8664987116331387 0.516198589719263 -0.6859647819407342 -0.5128268069327548 -0.516198589719263 0.6859647819407342 0.5128268069327548 0.3820636629172851 -0.03798957389201383 0.9233548341530087 -0.3820636629172851 0.03798957389201383 -0.9233548341530087 -0.4982064155529421 0.7158489907291226 0.4892346982522662 0.4982064155529421 -0.7158489907291226 -0.4892346982522662 -0.7240797982617366 0.5172808467785057 -0.456211542275461 0.7240797982617366 -0.5172808467785057 0.456211542275461 0.6700114878873773 -0.74186164789632 -0.02694255888922608 -0.6700114878873773 0.74186164789632 0.02694255888922608 0.379894693238227 -0.07528147932801071 0.9219613445907695 -0.379894693238227 0.07528147932801071 -0.9219613445907695 -0.2919623060451244 0.845665083770505 0.4467757580042115 0.2919623060451244 -0.845665083770505 -0.4467757580042115 -0.4366392706915987 0.8991736906649493 0.02885864352118438 0.4366392706915987 -0.8991736906649493 -0.02885864352118438 0.02177713585574996 -0.5441272858997885 -0.8387200087593295 -0.02177713585574996 0.5441272858997885 0.8387200087593295 0.2991010112138623 -0.8171191965929602 -0.4928030069410294 -0.2991010112138623 0.8171191965929602 0.4928030069410294 0.3640632629061393 -0.1638809515800347 0.916842938736705 -0.3640632629061393 0.1638809515800347 -0.916842938736705 0.351699520032644 -0.1960107315629559 0.9153618086423327 -0.351699520032644 0.1960107315629559 -0.9153618086423327 -0.5385204348562104 0.737321150528917 -0.4078642693654254 0.5385204348562104 -0.737321150528917 0.4078642693654254 0.4313254792109038 -0.9015926789875245 -0.03299957847583465 -0.4313254792109038 0.9015926789875245 0.03299957847583465 0.3161388477041972 -0.2763160755931569 0.9075823132592764 -0.3161388477041972 0.2763160755931569 -0.9075823132592764 -0.09028294640818048 0.9018061391263758 0.4226046344064832 0.09028294640818048 -0.9018061391263758 -0.4226046344064832 -0.2181679418180512 0.9753952588071517 0.03173071476353479 0.2181679418180512 -0.9753952588071517 -0.03173071476353479 -0.08967032070999265 -0.5583348527658186 -0.8247553732900068 0.08967032070999265 0.5583348527658186 0.8247553732900068 0.09609590767600762 -0.8714827722638359 -0.4809192803114296 -0.09609590767600762 0.8714827722638359 0.4809192803114296 0.208645464388462 -0.9773301409440586 -0.03595644298856492 -0.208645464388462 0.9773301409440586 0.03595644298856492 0.3037402224766287 -0.2968019404946466 0.9053455060740404 -0.3037402224766287 0.2968019404946466 -0.9053455060740404 -0.3354649239994378 0.8652214844413689 -0.3726326175029842 0.3354649239994378 -0.8652214844413689 0.3726326175029842 -0.09635811980048231 -0.8729912242445731 -0.4781228243249607 0.09635811980048231 0.8729912242445731 0.4781228243249607 0.2454506262031012 -0.377838807823859 0.8927439864814272 -0.2454506262031012 0.377838807823859 -0.8927439864814272 0.1068562574116552 0.9026725963806916 0.4168500017935887 -0.1068562574116552 -0.9026725963806916 -0.4168500017935887 -0.01341961262984234 0.9993629150444336 0.0330708032977326 0.01341961262984234 -0.9993629150444336 -0.0330708032977326 -0.1974089586396487 -0.532140896373992 -0.8233199678467016 0.1974089586396487 0.532140896373992 0.8233199678467016 -0.003042879031513646 -0.9993172156254773 -0.03682177944834953 0.003042879031513646 0.9993172156254773 0.03682177944834953 0.2410763476317336 -0.387128098884963 0.8899517007491239 -0.2410763476317336 0.387128098884963 -0.8899517007491239 -0.1342923521062531 0.9239445732737138 -0.3581787119355711 0.1342923521062531 -0.9239445732737138 0.3581787119355711 -0.2993802353626548 -0.4646202361375466 -0.8333663725191293 0.2993802353626548 0.4646202361375466 0.8333663725191293 -0.2850143040300812 -0.8249952226453783 -0.4880058699550152 0.2850143040300812 0.8249952226453783 0.4880058699550152 0.1571484006186686 -0.4017221510281468 0.9021771963180587 -0.1571484006186686 0.4017221510281468 -0.9021771963180587 0.3048994353963863 0.8512331346139842 0.4271281831373522 -0.3048994353963863 -0.8512331346139842 -0.4271281831373522 0.1916540383574875 0.9809149286690172 0.03278158470122235 -0.1916540383574875 -0.9809149286690172 -0.03278158470122235 0.0671884696021032 0.9289349896042631 -0.3640954471583719 -0.0671884696021032 -0.9289349896042631 0.3640954471583719 -0.2140789725420893 -0.9760632326372259 -0.03835048121069835 0.2140789725420893 0.9760632326372259 0.03835048121069835 0.1633996295092597 -0.4106962735212303 0.897011221775966 -0.1633996295092597 0.4106962735212303 -0.897011221775966 0.4114591536304653 0.9109580158340394 0.02927214172914724 -0.4114591536304653 -0.9109580158340394 -0.02927214172914724 -0.3926689146402455 -0.35857041203632 -0.8468992756446043 0.3926689146402455 0.35857041203632 0.8468992756446043 -0.4758443584816475 -0.7262158686624752 -0.4961679741821269 0.4758443584816475 0.7262158686624752 0.4961679741821269 0.07403530606453394 -0.4018766838318172 0.9126959540001656 -0.07403530606453394 0.4018766838318172 -0.9126959540001656 0.5074146196525977 0.7336990492225338 0.4519027649093994 -0.5074146196525977 -0.7336990492225338 -0.4519027649093994 0.274872235547456 0.8774438918920908 -0.3931125420365075 -0.274872235547456 -0.8774438918920908 0.3931125420365075 -0.4416336979657198 -0.8965662113422417 -0.03359621259223083 0.4416336979657198 0.8965662113422417 0.03359621259223083 0.08549088373456706 -0.4236410853674398 0.9017868592893668 -0.08549088373456706 0.4236410853674398 -0.9017868592893668 0.6984002947064492 0.5260813162216286 0.4852581550849647 -0.6984002947064492 -0.5260813162216286 -0.4852581550849647 0.652959689507299 0.7571332382136453 0.01982179282131184 -0.652959689507299 -0.7571332382136453 -0.01982179282131184 -0.4651746175759606 -0.207852160314994 -0.8604708330997912 0.4651746175759606 0.207852160314994 0.8604708330997912 -0.665423853153388 -0.5535581018224417 -0.5007839090478381 0.665423853153388 0.5535581018224417 0.5007839090478381 -0.005387601560723753 -0.3680435395178345 0.9297929483323731 0.005387601560723753 0.3680435395178345 -0.9297929483323731 0.000868304132819345 -0.3981816825083262 0.9173061614111023 -0.000868304132819345 0.3981816825083262 -0.9173061614111023 0.4895014731041097 0.7496380756810936 -0.4454560172655136 -0.4895014731041097 -0.7496380756810936 0.4454560172655136 -0.6864943599299461 -0.7266385896011196 -0.02686733866368751 0.6864943599299461 0.7266385896011196 0.02686733866368751 -0.07262576442607609 -0.3044614123800715 0.9497519395679382 0.07262576442607609 0.3044614123800715 -0.9497519395679382 0.8316127756564834 0.2226940531091179 0.5087509705885118 -0.8316127756564834 -0.2226940531091179 -0.5087509705885118 0.8847533030430639 0.466059554598581 -0.0002903820942461804 -0.8847533030430639 -0.466059554598581 0.0002903820942461804 -0.5016223448988417 -0.02024006257359567 -0.8648499077673559 0.5016223448988417 0.02024006257359567 0.8648499077673559 -0.8822448680326102 -0.4704388045425635 -0.01820230783956228 0.8822448680326102 0.4704388045425635 0.01820230783956228 -0.9072917110443275 -0.4201047632020399 -0.01826852498738157 0.9072917110443275 0.4201047632020399 0.01826852498738157 -0.07685647797368571 -0.3297862966323041 0.9409219310585922 0.07685647797368571 0.3297862966323041 -0.9409219310585922 0.6901787415728549 0.5152442173959565 -0.5081109141919102 -0.6901787415728549 -0.5152442173959565 0.5081109141919102 -0.4967373698995862 0.01608717979290114 -0.8677518009151883 0.4967373698995862 -0.01608717979290114 0.8677518009151883 -0.8811357659201282 0.0768003594678575 -0.4665848977431188 0.8811357659201282 -0.0768003594678575 0.4665848977431188 -0.1213401419479091 -0.2131789266836514 0.9694489750214126 0.1213401419479091 0.2131789266836514 -0.9694489750214126 0.8530841702615671 -0.129409370341721 0.5054706849233622 -0.8530841702615671 0.129409370341721 -0.5054706849233622 0.8141415650726762 0.1226466323187181 -0.5675661332407798 -0.8141415650726762 -0.1226466323187181 0.5675661332407798 -0.4880841511746171 0.1805356816951876 -0.8539207978536462 0.4880841511746171 -0.1805356816951876 0.8539207978536462 -0.9999912890016439 0.003565470406150566 -0.002170101751911943 0.9999912890016439 -0.003565470406150566 0.002170101751911943 -0.1346341299312233 -0.2158364992083521 0.967103022778414 0.1346341299312233 0.2158364992083521 -0.967103022778414 0.8525399834492935 -0.09184736460572623 0.5145285592027534 -0.8525399834492935 0.09184736460572623 -0.5145285592027534 0.8136691103485404 0.1551681516635968 -0.5602369352103785 -0.8136691103485404 -0.1551681516635968 0.5602369352103785 -0.4242011506809903 0.3566735691717121 -0.8323685174339763 0.4242011506809903 -0.3566735691717121 0.8323685174339763 -0.7885509876220191 0.4252210297831079 -0.4442684050779792 0.7885509876220191 -0.4252210297831079 0.4442684050779792 -0.1578790767136951 -0.1001809033739212 0.9823634682413714 0.1578790767136951 0.1001809033739212 -0.9823634682413714 0.7547715708514621 -0.44639443705225 0.4806785645347849 -0.7547715708514621 0.44639443705225 -0.4806785645347849 0.9002426714264509 -0.4324438669647231 -0.05055130530029929 -0.9002426714264509 0.4324438669647231 0.05055130530029929 0.7844421490554812 -0.2204106761446065 -0.5797151443827353 -0.7844421490554812 0.2204106761446065 0.5797151443827353 -0.9025620350092503 0.4302953214917916 0.01509003851010579 0.9025620350092503 -0.4302953214917916 -0.01509003851010579 -0.169444804962263 -0.07902734954524104 0.9823660906684203 0.169444804962263 0.07902734954524104 -0.9823660906684203 0.6777943647040133 -0.7334431215125454 -0.05153626569141771 -0.6777943647040133 0.7334431215125454 0.05153626569141771 -0.3277576958189358 0.4837068770718885 -0.8115433136344744 0.3277576958189358 -0.4837068770718885 0.8115433136344744 -0.6008360970729323 0.6729522999371917 -0.4314292369130882 0.6008360970729323 -0.6729522999371917 0.4314292369130882 -0.168089397435747 0.02890991779143854 0.9853477412177792 0.168089397435747 -0.02890991779143854 -0.9853477412177792 0.5960603579688953 -0.6811454613724286 0.4251504558503186 -0.5960603579688953 0.6811454613724286 -0.4251504558503186 0.642457615765161 -0.5591213942028391 -0.5240529348167207 -0.642457615765161 0.5591213942028391 0.5240529348167207 -0.6860462605246198 0.7270928103701851 0.026011027049533 0.6860462605246198 -0.7270928103701851 -0.026011027049533 -0.1672078096097679 0.0635631640950807 0.9838705568192014 0.1672078096097679 -0.0635631640950807 -0.9838705568192014 0.3991470387627658 -0.8338683812760162 0.3812416086355626 -0.3991470387627658 0.8338683812760162 -0.3812416086355626 0.4366355637622926 -0.8983679002551223 -0.04779644598908765 -0.4366355637622926 0.8983679002551223 0.04779644598908765 -0.2165491592345843 0.5605205997528345 -0.7993266659429781 0.2165491592345843 -0.5605205997528345 0.7993266659429781 -0.395878753458329 0.8145817266860315 -0.4239535624446186 0.395878753458329 -0.8145817266860315 0.4239535624446186 -0.1470001632110153 0.1606471829413976 0.9760038087164046 0.1470001632110153 -0.1606471829413976 -0.9760038087164046 -0.1367704356193799 0.1896404371318128 0.9722810049285855 0.1367704356193799 -0.1896404371318128 -0.9722810049285855 0.4363268549376191 -0.7641342532907666 -0.4750975885099907 -0.4363268549376191 0.7641342532907666 0.4750975885099907 -0.4488588098000007 0.8930220883870532 0.032207429542781 0.4488588098000007 -0.8930220883870532 -0.032207429542781 -0.09536560608358956 0.2728967479651381 0.9573049493898803 0.09536560608358956 -0.2728967479651381 -0.9573049493898803 0.1991484148306641 -0.9116095558872244 0.3595941135301458 -0.1991484148306641 0.9116095558872244 -0.3595941135301458 0.2176539959285311 -0.9751768928606872 -0.04070338667628007 -0.2176539959285311 0.9751768928606872 0.04070338667628007 -0.1020086360497765 0.5870416815121564 -0.8031041665554002 0.1020086360497765 -0.5870416815121564 0.8031041665554002 -0.1981121207031203 0.8828403326833408 -0.4258456699534237 0.1981121207031203 -0.8828403326833408 0.4258456699534237 -0.2257134547048324 0.973564616878436 0.0350053299877863 0.2257134547048324 -0.973564616878436 -0.0350053299877863 -0.08665208688554509 0.2887112025816377 0.9534868941638603 0.08665208688554509 -0.2887112025816377 -0.9534868941638603 0.2265500462827463 -0.8703548962419158 -0.4372155430871709 -0.2265500462827463 0.8703548962419158 0.4372155430871709 -0.1010732297696643 0.8940250761423974 -0.4364669122081412 0.1010732297696643 -0.8940250761423974 0.4364669122081412 -0.06445738612506215 0.342596166498884 0.9372689646383228 0.06445738612506215 -0.342596166498884 -0.9372689646383228 0.09421242280934485 -0.9292856702354743 0.3571444560446074 -0.09421242280934485 0.9292856702354743 -0.3571444560446074 0.1141520068239995 -0.9931836877053528 -0.02356866169407399 -0.1141520068239995 0.9931836877053528 0.02356866169407399 -0.05548150953601904 0.5705702570479805 -0.8193725549905893 0.05548150953601904 -0.5705702570479805 0.8193725549905893 -0.1183122180816655 0.9923409512272472 0.03551979124373652 0.1183122180816655 -0.9923409512272472 -0.03551979124373652 -0.06848399295769723 0.3517417087860151 0.9335886208651348 0.06848399295769723 -0.3517417087860151 -0.9335886208651348 0.1175068314992904 -0.9005861550453422 -0.4184933952784017 -0.1175068314992904 0.9005861550453422 0.4184933952784017</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"1518\" source=\"#ID1740\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1738\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1741\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"5340\">-6.580618697481437 -6.545009713473284 -6.567617648033625 -6.606732382168279 -6.682986093858498 -6.636723984740837 -6.881886868690907 -6.456583340927664 -6.756099899164711 -6.426275566867586 -6.859254916403135 -6.517442078751968 -10.61693605112678 3.184827725803856 -10.74657196519547 3.086140098357892 -10.73262445343298 3.155608790016468 -1.533092614824339 -6.434690839908924 -1.559405791392609 -6.375650075232074 -1.412648348859682 -6.340772034012076 14.30898493615991 2.947457128116731 14.33751141972596 3.00117761298326 14.44051209027738 2.936797991894637 -12.06110462075435 -5.035157135385706 -12.05809024149011 -5.098522253808291 -12.16418758194686 -5.123866330376003 -14.28814175341842 1.085588573710755 -14.2824434631127 1.015401747004727 -14.39929201747007 0.9912305055100119 -10.42933963478339 3.127297029085289 -10.43391457166809 3.05891381887446 -10.56001487618986 3.029461348607242 11.45762516172873 6.540259670332341 11.47797163129741 6.589504610126216 11.5973584461837 6.513844369553664 -1.137064559277398 -6.562851727461976 -1.271113876150494 -6.597002986620765 -1.151641495433576 -6.502319096981208 14.36063873912256 2.926066127749094 14.49201889613716 2.914338663113008 14.47716685152766 2.853122092708056 11.70748954317793 6.478829872756479 11.84637456995346 6.449777749136851 11.84093961111974 6.391715699527722 -12.26906940977927 -4.818979687707555 -12.37360027290782 -4.906634087921719 -12.38566096444787 -4.844084924398307 -14.46544077452874 1.025991648232917 -14.35893502858219 1.050252502010602 -14.46923482461555 0.9552788433374404 7.739432046823051 -10.03694049230219 7.639865864740337 -9.983099743997331 7.788914935261003 -9.989105445713978 1.776162464053896 -11.05068803421863 1.665101898714817 -10.99523746474838 1.835380771051105 -11.01096062030451 -5.51283250728245 3.713463970245473 -5.492925841198693 3.780127176594322 -5.358548342198889 3.813470732354115 8.498016943087372 8.575624199463169 8.654092498597761 8.533859822440421 8.648754551688274 8.482249557601401 2.154550179828575 -6.049267118074262 2.132428225229554 -5.990166820626622 2.295670935413403 -5.951642658655977 8.789434211505821 -1.333744793888774 8.78660936696904 -1.262091227687889 8.931615188888184 -1.28876984275119 15.16729014396182 -0.9180957161036953 15.26952992075916 -0.9688286178485134 15.12876549151582 -0.9725522853113809 3.599636952745333 -1.413590562477219 3.433219173912354 -1.452833223600031 3.431199227589967 -1.38114939033275 -15.14559909809822 -1.830127624946375 -15.15581010256368 -1.89288024694656 -15.26670342851949 -1.912248653014465 -15.25394005643405 -1.482299422728862 -15.23889520811196 -1.552078610595723 -15.36006185113027 -1.570071821484925 13.85366256063633 -5.420686821229857 13.71907883153179 -5.432419650090949 13.72955096136054 -5.37130008509078 7.549530277180296 -10.14466754688337 7.586489731770421 -10.09078718230263 7.698527486315976 -10.15142284030032 1.443950192576218 -11.23213334560071 1.48862060606892 -11.18611617644985 1.613950649777629 -11.24962180671451 -5.26436046835787 3.677468389356899 -5.411283838790938 3.643250863079274 -5.256608640031511 3.742883125396392 -0.3357938802278748 -1.464238976150553 -0.5205981776007085 -1.499422698088571 -0.5219607647003055 -1.427740732370425 8.00466637656822 8.553374808734567 8.025367063583357 8.595594769838016 8.16254167270783 8.516030499292146 2.513018264421359 -6.144422261422504 2.363355207479492 -6.181765356209835 2.503714277356395 -6.083463704108516 8.793899512558674 -1.342409054410137 8.936080091119722 -1.297433323036027 8.939069665865294 -1.369088249545524 3.601889307207162 -1.485948865938943 3.433482610389947 -1.453520654717407 3.599900363322454 -1.414277925622595 15.13150972544219 -0.8935372586893242 15.27225588363935 -0.8894082489526436 15.248732610583 -0.9497920914519146 -0.3405600250748775 -1.516300042088481 -0.5266630625965385 -1.47978758183525 -0.341858146444467 -1.444605871307476 -15.18190061644777 -1.693846131829051 -15.30408639043193 -1.774969756514498 -15.30295819003457 -1.71251456640385 -15.34925793102598 -1.576142044610847 -15.23814176621759 -1.557580808910237 -15.34359016192504 -1.645854029450044 13.73176474112583 -5.594929424044595 13.6227734567117 -5.549565167589616 13.75754370861559 -5.539241983940605 15.26794181216265 -1.201586369010382 15.4026095543531 -1.144914174005858 15.40571873838469 -1.21656415117917 13.48542759954237 -1.187513996421264 13.61668585883023 -1.136727326662673 13.61880185168607 -1.208401062036025 -2.825915076579227 -10.47298883662777 -2.960545493628167 -10.41543244096379 -2.768166969085556 -10.43709035758611 -1.576757897260338 3.588180983045058 -1.560462817920151 3.652616633508753 -1.410422583172373 3.689011024111676 -3.855155477236379 -1.513649149798202 -4.053412360945431 -1.474737389203775 -3.855770975181954 -1.441960805270113 4.724495152034121 9.853778914633699 4.899144023582807 9.804261874598007 4.890014490506999 9.75958378494558 5.551234798891407 -5.548974550687335 5.534993013697682 -5.488922348098751 5.708732910407464 -5.448701022701108 13.4905068726135 -1.195619266123532 13.48703512130899 -1.123977794312584 13.6217650401156 -1.144832449562632 -3.201129253911908 -10.66053231288505 -3.16082607796162 -10.61822488135849 -3.00915445380823 -10.68430400185338 14.37427292395258 -4.176146895236155 14.48831819664287 -4.213143445949156 14.33046992460895 -4.229073863684964 -6.369583058882933 -9.699417895355477 -6.340211027574866 -9.656796230945387 -6.169441283768498 -9.725494835892333 -14.64957652871657 0.923466453846057 -14.66872736513775 0.8628490103790216 -14.79396394674563 0.8493250318827015 -13.95363701997803 -3.483949602294809 -14.09018366605725 -3.496235699392138 -13.97401382069266 -3.415959253979947 15.33774035154781 1.482968778162605 15.20555793672612 1.454279869603094 15.18685504058227 1.511689594454686 14.21924000644283 -1.337679074555944 14.21686019370335 -1.266011810181029 14.37169429347407 -1.275618970363387 15.26796047500114 -1.202005770447221 15.26602492824712 -1.130328878983037 15.40263019764715 -1.145336487865999 -1.267835338164149 3.498298483228099 -1.431319179278802 3.46084420333183 -1.264503010966737 3.561181434576645 -9.160814424796168 -8.499192251752284 -9.144238663360635 -8.454079626645166 -8.960772650829012 -8.524847766534801 -3.86164844663055 -1.420083168817847 -4.059290449338185 -1.452857450474979 -4.059859140568322 -1.381171091724309 4.214209765097551 9.706760423997796 4.241542992263189 9.742374720772524 4.390780778657863 9.661658774634711 5.81186686549028 -5.573885606192285 5.652480019532534 -5.612966590725296 5.809591946258694 -5.512318845908505 -6.033043384738718 -9.582836337394287 -6.18482113180164 -9.522118487933822 -5.984319102058612 -9.5464225342368 14.55599533754309 -4.100115412335536 14.52721092316535 -4.156341655985824 14.39840191736806 -4.117537457912769 -8.838526383720716 -8.422930952291223 -9.001390688661905 -8.360520461954543 -8.801007145604851 -8.384468629366044 -14.57989631441111 0.930398879062954 -14.72494760888468 0.8570637678566174 -14.7163862676825 0.9179154899456861 -14.0306366128091 -3.579026633172484 -14.04018196318075 -3.51161279617297 -13.91489750526628 -3.498366077317781 15.41082394072371 1.048020730342602 15.41000292946648 0.9933688473472547 15.27762056853224 1.022420357830555 14.21925518578394 -1.337701234835617 14.37170946756895 -1.275641122667588 14.37401384332346 -1.347306285535949 13.0887863053135 -6.493482618447323 13.06315073182448 -6.545122205857973 12.91092616280336 -6.520870100630303 2.127796006892804 3.268686239813019 2.137888030772398 3.331121076362597 2.297674464496027 3.369178892006708 -11.37844683521693 -6.982809433271168 -11.54227904446258 -6.919146089585195 -11.35264213589822 -6.940464393467607 -6.969309814844864 -1.426064401907399 -7.169138685558715 -1.386538944137186 -6.969196157910561 -1.354376702983068 1.42520110639496 10.39663474916311 1.612490304249503 10.34081313466535 1.592711432960707 10.30223042044524 8.453040928387372 -4.992847012691402 8.444295306881864 -4.931639694667493 8.619460029473876 -4.89075152620012 12.76951926405819 -6.58402051542777 12.90328343694316 -6.608753264278488 12.72476870385108 -6.633364448175943 2.407180428441364 3.204189162625434 2.23306101354886 3.164845509836631 2.403265162843157 3.264996539024871 -12.35283524094875 2.180077371835965 -12.49521664307451 2.170956610667029 -12.33259332827868 2.239193604852102 -11.69818573484253 -4.611799464835253 -11.85326884084011 -4.619672060400372 -11.71832234626677 -4.545844331156123 12.91355851458836 5.873539148831609 12.76729556861925 5.836704493622889 12.73843114318628 5.886420206183411 12.09933149555814 -1.413658653592374 11.92509416941972 -1.480043363795554 11.92360826871389 -1.408364807887314 10.73634488754209 -8.418595656168597 10.89032174383181 -8.434532527665484 10.69717051496003 -8.46467865356014 5.643858274455487 2.926661275647715 5.468269400764852 2.886867463753028 5.631447352565838 2.985822581768346 -11.65582502015529 -6.98915157199934 -11.65108099485204 -6.939921509951684 -11.46645447821991 -7.01188800712644 -6.965985707632302 -1.366717202869575 -7.165927874619835 -1.398880831512013 -7.165827256803913 -1.327192503347199 0.7801477962360326 10.10764074744187 0.8182364949793919 10.13751902548013 0.9700146556492773 10.05749671451439 8.723178341362342 -5.015695452878983 8.562511038127378 -5.055254750609865 8.728457801296788 -4.952684578861925 5.345906999601398 3.012691888508398 5.347606173231061 3.073562544472592 5.508696716004757 3.112041933800061 -12.40414412804927 2.093244503543819 -12.39614885820377 2.153142600001177 -12.2411624686734 2.160950347915142 -11.78142239803167 -4.708666933913214 -11.78914349148463 -4.643650716949074 -11.64676366339286 -4.63451476242067 13.18444934977494 5.405790420926806 13.1910463331518 5.356494691067041 13.03692878725645 5.37220248823331 12.09903157083867 -1.482461054462999 11.92326983500567 -1.477153316455752 12.09750765770709 -1.410769412804343 11.19293202676992 -8.361555992246322 11.17581316769602 -8.408864006524265 11.00078907970504 -8.395455855922011 8.349940607121187 2.770164038364921 8.343046405724209 2.829879762215903 8.496457616513332 2.867464522416447 -13.73781930567416 -4.950021043184917 -13.5667927907526 -4.966126671524558 -13.58339781367837 -5.01373858803485 -9.787465578114976 -1.33714349510687 -9.977689162282866 -1.298547919271151 -9.786660593367122 -1.265457920206907 -1.540663983600659 10.42391404241789 -1.698261919738346 10.5165668192658 -1.508151406391066 10.45762366983972 11.17020878208226 -4.338152115199367 11.16822940178264 -4.275023718190871 11.33502815430458 -4.235091375357936 -9.657233538443592 2.681820150366768 -9.813195316583219 2.675426316849174 -9.641494532806298 2.740761166024233 -9.178178231308547 -5.285337157931499 -9.348074900643844 -5.290382256160782 -9.193859608338926 -5.221213654048633 9.885571768328758 7.863936913957202 9.717679502805417 7.823330067871 9.693210009691446 7.869007899782335 9.512450238363343 -1.510120633095816 9.320747298568746 -1.579336947718089 9.319975255294587 -1.507637855880181 8.437421926016747 -9.860048553291033 8.606893690995154 -9.870739657042387 8.408286612285954 -9.903569669546064 11.43900873246514 -4.344292112528978 11.28606236631415 -4.3830315371237 11.45024536052453 -4.279344105490417 8.625209168225046 2.697365357843957 8.457966351327173 2.658536111132082 8.604871386527611 2.755473851257801 -13.80607872821243 -4.950517452724858 -13.8085196224234 -4.894970160690024 -13.63523288702387 -4.967768993194435 -9.825403099073675 -1.1267962098599 -10.0164357063077 -1.15987177837336 -10.01604388857866 -1.088538960955641 -2.416974896300678 10.10841135529833 -2.367217661635781 10.13394259615223 -2.223841672100698 10.05590036790189 -9.714052122718687 2.55395860802712 -9.711995436647182 2.613926362003435 -9.542096120738417 2.618876750620487 -9.276235356357377 -5.384468978016525 -9.278183705883597 -5.32150953395901 -9.12222877247862 -5.315013201765334 10.22243353383894 7.392617643500108 10.22301859722848 7.346483456068675 10.0533596751163 7.35516742620614 9.513631385594843 -1.5825512236796 9.321187330051941 -1.580077940731893 9.512890162017262 -1.510861441294382 9.011320398795435 -9.846726940850362 9.006295466617312 -9.890532321696613 8.813975425696585 -9.88397028792234 13.6283101194571 -3.333011606144537 13.6301839502992 -3.267481406042489 13.78103525783518 -3.229909684064479 11.23578323518249 2.432169448976095 11.22197592125114 2.491453418764042 11.36059798039002 2.527000839227673 -15.24219524522934 -2.147910153808393 -15.09069163087842 -2.155463254795222 -15.10501134657915 -2.209890196813368 -12.61653793888787 -1.099487738837097 -12.78996521975508 -1.064551872379149 -12.61567482503242 -1.028157486989288 -4.514463801464838 10.22908780676873 -4.649449032964846 10.31928223269812 -4.469241791069255 10.259393133881 -6.898059523765879 2.935309156349139 -7.06036786434691 2.929920571296418 -6.89002090736066 2.994964498730822 -6.4768693768259 -5.802689461290159 -6.653575517158874 -5.806687320941736 -6.485699800785439 -5.740095647568451 7.016357742053017 8.746921207086649 6.829475787650675 8.704571097402486 6.8162270405816 8.749514948466191 6.812687123351545 -1.570667613968221 6.612521211682392 -1.640945252495422 6.612478742513698 -1.569253106600074 5.779856660322627 -11.04698341280049 5.956274989550351 -11.05623514011434 5.76305316106203 -11.08893340390857 -5.398781630269481 9.835257217887111 -5.340262316193581 9.858328963978593 -5.215213233226105 9.782059105907912 13.85850269088957 -3.291224874435558 13.72033593265452 -3.327852831506265 13.87226008146309 -3.224021153701466 11.47884612410998 2.370707512678263 11.32763469245847 2.3341287484315 11.4528811563251 2.428607235668462 -15.2535181349102 -2.106908730339627 -15.25836441831756 -2.04628258371339 -15.10205393297601 -2.114936106408872 -12.60691287598073 -1.054252242449673 -12.78120227643468 -1.090649574333243 -12.77826650363888 -1.019032138509699 -6.977266672820781 2.819025713613953 -6.98348601445656 2.879881379179938 -6.806745836905758 2.883787073659976 -6.587756763350166 -5.897017118716976 -6.582343092500292 -5.835702020549165 -6.420042303747156 -5.830174464184631 7.352899858918036 8.284719654169544 7.341596596604858 8.239010029899403 7.164996350990712 8.24526589774629 6.813826939136831 -1.644364765160081 6.613677082927434 -1.642956700035511 6.813842734205907 -1.572678602544766 6.45561059982691 -11.07378386689607 6.46395966180476 -11.11541748444512 6.263811337699195 -11.11130890824892 -7.4896043285356 9.650721743375158 -7.59932281454822 9.739501582872135 -7.435656638661346 9.679884880975632 15.29262319608855 -1.607508324843404 15.29328082124637 -1.539440722165434 15.42508685680786 -1.505608493010264 13.89984302429149 1.612364449169118 13.88311681005951 1.672334928638294 14.00406654530691 1.704928375628051 -15.28946899818318 1.47629385012519 -15.15330884157945 1.478704050245536 -15.17098274107001 1.419570661111087 -14.80515277802571 -0.9036683428333258 -14.8085897588165 -0.9752719773663642 -14.95994028606035 -0.9444455687562027 -4.004611721636414 3.224448327942247 -4.16439719315087 3.218368710771394 -4.00523925739104 3.285498351391439 -3.525613296463322 -6.290315199046522 -3.700902602954646 -6.294977946562653 -3.526950387315453 -6.228861380004147 4.019128095171453 9.21265159326504 4.216147713730148 9.208763189863083 4.018671019552032 9.166086516832904 3.879644224425563 -1.596352886128034 3.681901906438548 -1.665818496212343 3.682604549984756 -1.594134463565752 2.530786356206917 -11.98103156753165 2.352255936779051 -12.01025137141678 2.35749035013115 -11.96830449992463 -14.93783250703113 -0.9199274905746537 -14.78540593368363 -0.9508055480783045 -14.94018901959406 -0.9915931604994908 -8.369275036428196 9.172063195774641 -8.302263925849339 9.194573360537296 -8.201790501962247 9.119416714856088 15.32434054185617 -1.526890769140963 15.45579366934975 -1.424184296665054 15.44501229547651 -1.49366580413421 14.11532223931024 1.531544655849606 13.98322776896051 1.498268720660948 14.08813296315718 1.59035487382117 -15.29430011815301 1.530169201172563 -15.29253058392694 1.595581857050894 -15.1581444831912 1.532732608428125 -4.058883089848411 3.085514390787332 -4.073465714486674 3.14769619433696 -3.899516138725254 3.152336453714596 -3.572284764846403 -6.466569931810668 -3.558406321219816 -6.406267497356507 -3.398634912760937 -6.399963308387198 4.552296166406597 8.749981776186615 4.529059490484951 8.703150495698562 4.353890163085291 8.710061516263082 3.890830433234426 -1.688761907672652 3.693769104214244 -1.686537598712137 3.891508959769352 -1.617067650930654 3.135413932412313 -12.04928645761342 3.155189195964897 -12.09127973286478 2.958368440101325 -12.08364558267659 -15.45179350199093 -0.8108783782093466 -15.45489039400424 -0.8825266134035953 -15.58968420799133 -0.8571572623338638 -10.6288286384174 8.353707500251726 -10.7079782300312 8.443173295059195 -10.56775234872707 8.384966708096389 14.98504350561728 0.8932095856606679 14.97824207983449 0.9630020334364804 15.0955806585724 0.9916757394352925 15.53991589285761 -0.4072276683117909 15.52720097191658 -0.3454532515377727 15.63448253709443 -0.3166197435687619 -13.23516410695105 5.172889418019462 -13.09944546757803 5.186906493985469 -13.12796202377806 5.125445020432204 -0.7714234616223903 3.569497695964973 -0.9202629271224827 3.561122633958776 -0.7799017318880719 3.632376091183371 0.1656356926783598 -6.89096651016542 0.004784692386134992 -6.89859131050403 0.171236231494023 -6.829842298317031 1.061959575325601 9.468422412170185 1.24545871531379 9.460108100923545 1.049723399136092 9.419080201494202 0.5231611971093531 -1.603350003673135 0.3370699779424913 -1.670258122669144 0.3384888140735509 -1.598570567462979 -2.433997532195966 -12.1929427012513 -2.593059003934676 -12.21337891439185 -2.593411621858572 -12.16859762168006 -13.30336674209489 5.301667592890514 -13.18135620361946 5.249945769596239 -13.31691957776318 5.235027842207697 -15.58653943729579 -0.7855254209561395 -15.45178502990319 -0.8108934204931523 -15.5896757392267 -0.8571722984902477 -11.51936289142144 7.675549632771387 -11.45083636673444 7.700794083951917 -11.37432675960208 7.625162732531086 14.90602371303191 1.049369786129195 15.01538811441356 1.14864303110114 15.01345585400729 1.077854229522494 15.66975608881318 -0.4911047002283587 15.55242944620488 -0.520159475879824 15.64794960475148 -0.4301726425674983 -0.7912545568075957 3.421809981775434 -0.812757172466364 3.485604502693287 -0.6506196923301988 3.492728710202487 0.04031753644333835 -6.938102185477932 0.05787497746319148 -6.877980049121938 0.2066783875467149 -6.869217465137623 1.555805246969699 9.059057021365206 1.519814634586167 9.00947316056442 1.359276784555576 9.020446762671895 0.4838123445634712 -1.611748782600903 0.3001114271489069 -1.606924269512813 0.4862089657499891 -1.540027028526313 -1.806813482336177 -12.36058167089581 -1.782046272876322 -12.40751261267392 -1.964752550151362 -12.38583687432793 -9.364868457319943 7.841968717887717 -9.404274314388495 7.782022322527892 -9.514291688348363 7.817861846619273 -13.00588378390801 -0.8330881645659296 -13.00921958271158 -0.9047294657183257 -13.14133814969962 -0.8852845692050879 -14.10662791163087 5.146832549511292 -14.17206869042138 5.239095622041519 -14.04973001711376 5.186073799696009 11.87582082679493 3.174077517464692 11.85862862908628 3.243578971293362 11.97435313651517 3.265965803721697 14.24415916065581 -3.699885454686495 14.2433433916009 -3.636587915769243 14.34888102482089 -3.612702452326936 3.082265902202215 3.913234350788317 2.949879546846864 3.901073276272257 3.06862831925348 3.978355594566274 4.638556061977957 -7.082302383479022 4.494472431598605 -7.094157831914902 4.645067237443768 -7.020827165557492 -2.258038310727093 9.539468265293392 -2.095500805512067 9.523668310217966 -2.281201335801816 9.485355998138813 -3.758985514210841 -1.436225758280148 -3.924511705853747 -1.498961607814649 -3.921467008486363 -1.427255068912489 -9.942859975291702 -9.737197332008847 -10.08385967003032 -9.737458014349842 -10.07311078507561 -9.687351915146522 14.13219270095305 -3.75542860612047 14.23796080910545 -3.669030738188305 14.24742880761821 -3.7318278326521 -9.692573401430575 8.017214571832103 -9.567163615954282 7.979171406292741 -9.716153039117891 7.953456566602755 -13.13636509854378 -0.8161126710265887 -13.00435282828845 -0.835552906974163 -13.13980714664969 -0.8877493877843717 -14.61132809459356 4.133016612116871 -14.73902312735568 4.177542038502442 -14.67768843796868 4.210885943633517 11.81382164778991 3.35991687746054 11.70782989559965 3.33731003177597 11.80542024055859 3.429818317153772 3.084054598257912 3.781063644743033 3.059008768636864 3.8467800671526 3.203147841068263 3.858017235194181 4.640534808377569 -7.205309901937741 4.658401343593503 -7.144308835955269 4.790673709270291 -7.131402974614767 -1.777453462061554 9.165138723842739 -1.820684873074955 9.112184883238179 -1.96392635099604 9.129222911432287 -3.713016996837181 -1.586432416109982 -3.876397154170795 -1.577505932639365 -3.71087700645962 -1.514760215541944 -9.935098212837286 -9.770221769537702 -9.928915609223267 -9.825435982157931 -10.07609767572446 -9.770551036172224 9.535254719845881 -6.232486872110084 9.547416077059241 -6.169977481532637 9.664144208440034 -6.152083811655688 -5.202437761249897 9.098226050134119 -5.246985562162003 9.041825168459443 -5.372201684154333 9.0667502344476 -8.169380333522604 -0.998140020974474 -8.172333180839713 -1.069790248980376 -8.317069662718822 -1.056185649157978 -15.53708250320204 -2.251370365196449 -15.56791830901686 -2.304769315519559 -15.66339926021932 -2.217943928631032 7.190374158714231 4.14387548593698 7.16637335975607 4.211502502977067 7.293903690933179 4.22756430462664 7.623017113961595 3.918334089413627 7.507695615163 3.901060666062974 7.609282664872703 3.986084436598195 9.937161022967274 -6.359847681237002 10.06409273077519 -6.279461156273472 10.06269187858483 -6.342050763081067 -6.042398342483293 9.076543377210122 -5.902190296778123 9.050166540243174 -6.069234815193065 9.017255839469092 -8.860293170789058 -1.363260985078544 -8.717265287849051 -1.37745368279562 -8.863173737785129 -1.434917132087402 -15.54588277960083 -2.300117636965598 -15.67386043491606 -2.271009447778388 -15.63233045989777 -2.226233122461609 7.127076406813334 4.30648851770742 7.010063381235103 4.289786013635767 7.112978878199199 4.373942213029542 9.365989235203019 -6.175965195635077 9.495627012248997 -6.096310096386373 9.493297944669719 -6.158811689884664 -5.626765668099157 9.373422181532749 -5.484536290666949 9.348316109263141 -5.653651189339984 9.314747731718946 -8.320882227736359 -0.9741148604507341 -8.175970906962778 -0.9877206687505513 -8.323660932723731 -1.045765200133378 -15.29985691444622 -3.123406437962885 -15.42886369827114 -3.097095081416124 -15.39058877662906 -3.051099015080164 7.703689925709059 3.739906870570485 7.680092902839074 3.807750538554544 7.80597269273771 3.824412889779136 10.11197049403219 -6.404336089477216 10.12307435948808 -6.341661858037234 10.23808752303897 -6.323159921128914 -5.622323037873064 8.794266442244357 -5.66679086339616 8.737492485458621 -5.790007307260759 8.763434754360988 -8.71332912534854 -1.3836606494726 -8.716209437777366 -1.455319908141439 -8.85923718393571 -1.441124713702576 -15.74112137389917 -1.379939906837552 -15.83089195408338 -1.291204338195767 -15.70609736706944 -1.327881354721675 2.668957752347219 4.11398850238898 2.644058069704343 4.179481329382527 2.790273579329713 4.190200612134772 4.110704377365827 -6.858048905277235 4.128872676387156 -6.797175811182837 4.262918876140688 -6.784782652748659 -1.404548250035355 9.402043598154606 -1.447358125095773 9.349547274608119 -1.592685016488453 9.365794399010678 -3.142255332231726 -1.190604595156031 -3.309399930982235 -1.18223930450561 -3.140241197251263 -1.118938432231013 -8.884739533256173 -10.30055981670408 -8.8746530565973 -10.35495896236701 -9.027896891744119 -10.30477273628952 12.25230914127811 2.830885924238499 12.14678909668437 2.807636870818182 12.24476854587685 2.900972728124928 14.46950347790334 -3.751846905612519 14.57341788799027 -3.664906214825244 14.5842967264192 -3.727604863342996 -10.10915643332227 7.601517383621898 -9.984934002081559 7.562044962447504 -10.13208624570263 7.537317666313326 -13.54652455382239 -1.212685624363464 -13.41493796144714 -1.23274352628007 -13.54984038915993 -1.284333229776651 -14.31552014081287 4.540011722011334 -14.44437455773784 4.585467759621272 -14.38166273281025 4.617646058061919 -8.992810656003718 -10.18550474366308 -9.136006742442406 -10.1888041041313 -9.127637057064113 -10.13972581033172 2.64541488824554 4.267441028695297 2.511268042398294 4.25574119252915 2.632188799017837 4.332340862186194 4.110214696525336 -6.72600436272806 3.964135035991645 -6.737327709543592 4.116794042818764 -6.664636040505522 -1.847994126281742 9.726975441471867 -1.68154386583189 9.712369976900524 -1.869009832302726 9.674030376466263 -3.221745658877027 -0.9840961042457377 -3.390913981113689 -1.047381117225486 -3.387390757737077 -0.9756486725148655 12.31086394288981 2.638894324171158 12.29469950298908 2.708522654783262 12.40982838366794 2.731584851287013 14.56781304329401 -3.684253140151958 14.56561528418519 -3.621025071170431 14.67068615442086 -3.596549445688026 -9.79429850738692 7.422103133151579 -9.832748794853689 7.361829306246924 -9.941855832659382 7.398917779285227 -13.41536406114684 -1.232052822969565 -13.4187394178731 -1.303691732214197 -13.55026649850321 -1.283642510860688 -13.75606080583945 5.54957007316308 -13.8214887016976 5.641594391354468 -13.69804627494504 5.587638493520042 -1.221213860760367 -12.28941609449073 -1.197314620885995 -12.33522616255462 -1.381018567246686 -12.31575286127009 -1.158444741834577 3.776285934969499 -1.179315014711423 3.839930993540694 -1.015625787160668 3.846724503200335 -0.3639596171475557 -6.526495008969826 -0.3467953056654904 -6.466407244800233 -0.1964911856277107 -6.457981244297234 1.889308263414858 9.245364640510919 1.8560148969994 9.196471474896031 1.692605215227949 9.206681508849934 0.8311335920267338 -1.171595201869042 0.6469610273251247 -1.167087605318954 0.8341172451760792 -1.099847614205433 15.08582761132801 0.4219027948256017 15.1972816313386 0.5216801222266934 15.19423004530341 0.4509408901608906 15.61597067828074 -0.5544253552112738 15.49766385890772 -0.5839776656338219 15.59329687845167 -0.4937406854428438 -13.67695675489851 4.671155136831288 -13.55390223659972 4.618128351257922 -13.68851524023786 4.604333191912186 -15.65335930625685 -1.200253474075816 -15.51741693607865 -1.226221228726238 -15.65648638482215 -1.271899355939858 -11.18419981902873 7.765024509756246 -11.11554434043974 7.789825135613168 -11.03686915883918 7.714214129428135 0.8628927635053685 -1.149246746696862 0.6757410017744359 -1.216494412927886 0.6776162145131159 -1.144761328936643 -1.817296954238128 -12.12292682149871 -1.978216785636624 -12.14465921332994 -1.978660335218768 -12.10025498667682 -1.119852415948217 3.905701574361555 -1.270188663992674 3.897638071339116 -1.127604301284266 3.968370140358324 -0.3149882110398894 -6.385162711576555 -0.478664682763138 -6.392250897908245 -0.3109104338240121 -6.324171217182053 1.35602465911457 9.692105094374945 1.540020729240347 9.684324940488828 1.344216351572449 9.642916334152829 15.1503181862958 0.272451662028181 15.14440741345618 0.3421599203781767 15.26291134869998 0.3714343502470228 15.47546960258415 -0.4726056566771423 15.4619154372069 -0.4110595507947483 15.5702187722331 -0.3817935148578727 -13.60440101994327 4.519074513822507 -13.46962933206102 4.531875006477813 -13.49633283110545 4.471036214690025 -15.52339401901288 -1.215887594823921 -15.52607384501523 -1.287495597378499 -15.66245767488744 -1.261576634875901 -10.30287224798799 8.422158584401114 -10.38477487025269 8.511374836302048 -10.24206885150665 8.452964559084938 4.193413526692812 -1.248979369953439 3.995989188438798 -1.246889332118508 4.194617944274724 -1.17723737563748 3.545434574107766 -11.8403693110206 3.564458668862518 -11.88217705283562 3.366580276825393 -11.8752744320007 -4.381486190343945 3.430189749235295 -4.395274028373782 3.49221306336199 -4.22059861230353 3.496696702811534 -3.906132402229603 -5.989536288718155 -3.894246243631405 -5.929180494614697 -3.733804005271036 -5.923050460604896 4.839475801182161 8.951908471804766 4.816660144011579 8.905178595681052 4.64211224373599 8.912059416234641 15.26769483598374 -2.028982905709747 15.39941025645091 -1.926008699285874 15.38870377049515 -1.99536231905134 13.87683702687967 1.295577712842807 13.74277741991184 1.261920781824981 13.84948743201057 1.354218300739058 -15.38503010703776 0.9190988764496163 -15.38396194352577 0.9834567520767894 -15.24800374380212 0.9203888456145569 -14.80542258483778 -1.37304428388984 -14.6519647618678 -1.404397022819082 -14.80700106420073 -1.44467254877207 -8.069483288834693 9.100067508489389 -8.002998633579212 9.122461408995804 -7.899822687477273 9.047370810969055 4.30050980966578 9.40638186612038 4.497896969137264 9.402714164536823 4.30148408259397 9.360057245213058 4.210324558875172 -1.204736203883551 4.011699039759829 -1.274393872179983 4.012268808980655 -1.202689337845282 2.94635723149312 -11.7582358396856 2.766001547649617 -11.78797834450742 2.77226467546402 -11.74615678653372 -4.311075727597036 3.549367622226657 -4.471530230414992 3.543439572157604 -4.310820513849258 3.610212116165647 -3.820722736339858 -5.863601551858727 -3.995390741770848 -5.868226454835453 -3.822853797049344 -5.802076190336565 15.17813959311702 -2.197897267570782 15.17832423091742 -2.130718778289336 15.31206718285843 -2.096704259321336 13.75471368908578 1.245959351470354 13.74009231762092 1.305504866232826 13.86151359312978 1.338192505089929 -15.38346210198331 0.864612924360296 -15.24643481378675 0.8658405848337932 -15.2631686191402 0.8071703815371325 -14.66661126842772 -1.368813502006148 -14.66894932222831 -1.440483344197503 -14.82165237035537 -1.409077592683825 -7.156109762578709 9.611477304658802 -7.267157639433686 9.700499709311567 -7.101428897832124 9.640557950184437 7.642933539818706 8.4514581814478 7.632939746545516 8.405799115909543 7.456600956256732 8.412138919910097 7.09905506333754 -1.246225796623535 6.899143822007092 -1.244783890534279 7.098917666031889 -1.174519942877966 6.735946139475866 -10.81425805978309 6.742890926812308 -10.85601295253187 6.543109301778447 -10.85191920692165 -7.24931483410561 3.155942963884379 -7.254598685486653 3.216645642405485 -7.078148066229574 3.220562898325931 -6.881109201548074 -5.467438362678905 -6.876458184081285 -5.405999012727969 -6.71444189340942 -5.400458307481159 13.54289973800221 -3.793239524561747 13.40113671090732 -3.82994730857532 13.55555848570621 -3.726803055088812 11.22051562797499 1.971360530270614 11.06738780234263 1.934622185809914 11.19688747135034 2.02908810728976 -15.15944887014694 -2.654272722150803 -15.16462187738555 -2.594281710774259 -15.00716591901408 -2.663946858506669 -12.33003012466921 -1.538278183228604 -12.50642232294561 -1.574300370388085 -12.50492198873034 -1.502616647203531 -5.106572456921741 9.699955233492505 -5.047464832849933 9.72306287674154 -4.920092824371729 9.646643338529119 -6.765567956877243 -5.378664041690035 -6.942016859221509 -5.382683167631275 -6.775198665617581 -5.315935967627734 7.306945672480333 8.896659682715963 7.121645675312682 8.854428398166862 7.107055023237226 8.899338094212071 7.086927551773695 -1.153674396152059 6.887150959067983 -1.223933507323446 6.887086393422282 -1.152247544599366 6.068461076715506 -10.7707733757235 6.244596215789673 -10.7799484138813 6.050343053501913 -10.81279782146106 -7.190458301551813 3.296869990709006 -7.352481727994905 3.291459955852127 -7.181533645440522 3.356437144782981 13.4064024040758 -3.830027603750226 13.40800611262621 -3.764734657461192 13.56078239146676 -3.726844646767989 10.89275480103259 2.123704759042569 10.87935612045681 2.182979039270679 11.02147345875079 2.218828959770153 -15.14280266200676 -2.709862584694672 -14.9904621357679 -2.71895847218444 -15.00361624151294 -2.772085289375142 -12.3298287645453 -1.615197089627549 -12.50470098658898 -1.579540202041051 -12.32830907634541 -1.543517142056604 -4.2186634479956 10.10930458407336 -4.35782527381292 10.19994614024944 -4.174686778476256 10.13989285621025 -9.530881584966986 -4.958117123807443 -9.533598214238545 -4.894969342211351 -9.378692555904275 -4.888255413093771 10.51879056657059 7.466617310788993 10.52040027135098 7.420281349626403 10.35198833383415 7.429466775226744 9.779612343487239 -1.163778969753085 9.588536731702755 -1.161090864251027 9.778853876226279 -1.092095472159671 9.247523585465691 -9.548377605199301 9.241160229931531 -9.592469999068552 9.050207409363122 -9.585381227395791 -9.992750973069121 2.905388391185323 -9.989925676611493 2.965326665140856 -9.821266129877113 2.970493660435413 11.18021025093981 -4.798654021224784 11.02606697303592 -4.837560802460762 11.1909052307857 -4.733893111744886 8.327575597729036 2.348001471532391 8.15903106685761 2.309000791232402 8.307962280010665 2.406194939046271 -13.61096713852748 -5.41079182060458 -13.6137236618704 -5.35671007297559 -13.4379115757018 -5.428681550983511 -9.577047105168576 -1.68144576802487 -9.769848619206979 -1.714646780450293 -9.769111940770507 -1.642959206690308 -2.096594429976431 9.939152071445729 -2.047998874030708 9.965056443975168 -1.90320939661126 9.886777065068808 -9.928948534649916 3.019048413742917 -10.08386105505521 3.012433190057662 -9.912618715634523 3.077932273075196 -9.436649522835996 -4.854469034712737 -9.605332920141853 -4.85973619069905 -9.452922106823499 -4.790174331111039 10.18593894936577 7.919327916820009 10.02032773292191 7.879014533263928 9.994964991562728 7.924918970938178 9.782205087217882 -1.097721154188855 9.591888768740418 -1.166717956342206 9.591070573120943 -1.095021381572384 8.685295077323588 -9.545229928016722 8.853494574201475 -9.556302478471219 8.654940067597003 -9.588950585783939 10.90100930951394 -4.788306543495204 10.89838378838198 -4.725395104228611 11.06651389314619 -4.685297939273396 8.053966074678961 2.418914265419263 8.047912445656873 2.478726192902335 8.202526702783448 2.516458755327649 -13.54234860915186 -5.417300237040662 -13.36911470494113 -5.434087852022033 -13.38652101772389 -5.481126557379015 -9.57958417890816 -1.74669364855356 -9.771641843944998 -1.70820312804927 -9.578840097705355 -1.67500295009411 -1.232071204741369 10.26024010353983 -1.39133841086147 10.35304135429066 -1.200900593791367 10.29436270678662 -12.66814228241877 2.377350203719332 -12.65985061475272 2.437265019574824 -12.50661857132272 2.445496128669671 -12.03052410539118 -4.250910352726612 -12.03861942245435 -4.185663731301816 -11.89798321092683 -4.176183785629822 13.47992294829923 5.26206001227856 13.48652202046466 5.212276969555388 13.33440360260036 5.229012466248198 12.34952094851159 -1.06598506396593 12.17584834422437 -1.060290564118863 12.34793933833145 -0.9942963962296096 11.3988586349841 -8.025023599979276 11.38061846961403 -8.072729195697223 11.20772626084921 -8.058368713758338 8.4424042264723 -5.447712519310838 8.281486854483566 -5.487292765584106 8.446886637151334 -5.384866029489158 5.326202948193276 2.572171962007705 5.150342548509622 2.532346473062847 5.314659582432 2.631482032995606 -11.41694591869068 -7.391797075547344 -11.41107163624376 -7.343024311266442 -11.2260390863675 -7.414971645054204 -6.663163940965292 -1.773915639314141 -6.863368980011134 -1.806055580152876 -6.863333402150362 -1.734362497573469 1.123411846022329 9.899235056911641 1.160320994681222 9.929609107955077 1.312352450261986 9.849517003864184 10.95273527705855 -8.066561653166469 11.10484782493345 -8.083273682877548 10.91273131509726 -8.112912976540896 -12.62077190933074 2.457892391418022 -12.76140762630289 2.448407906507579 -12.60027454748111 2.517123744110278 -11.95378822116459 -4.146197175280741 -12.10702978057557 -4.15443346242402 -11.97416850944753 -4.080059809051368 13.21760574024167 5.721157335881676 13.07336636473598 5.684802709083901 13.04471307190146 5.735288867506887 12.35297015807041 -1.002215973513505 12.18088058096877 -1.068212428034827 12.17926693222815 -0.9965353506596878 8.154207475654019 -5.415234497688508 8.144706604398934 -5.354226727625072 8.320146068873566 -5.313348508334474 5.036468451197996 2.650618232763651 5.039082417752474 2.711631749460519 5.2004271591157 2.750120261643422 -11.13145969565566 -7.391439012256403 -11.29566255085978 -7.327883082870408 -11.10447404847891 -7.34957311867031 -6.661353700164007 -1.852639055062037 -6.861539409342557 -1.81309092649848 -6.66133457462573 -1.780950198004933 1.776404712719477 10.20105318224619 1.962748793365945 10.14560132187811 1.944060654455028 10.10636740511557 13.26146385023715 -6.106462768850968 13.23522851803179 -6.158547760548513 13.08559094550833 -6.132999753246461 -14.75266802473825 1.082403605504083 -14.89549335129753 1.008308709708283 -14.88724251443864 1.069351538455833 -14.21983854152778 -3.060925163840504 -14.22933759963834 -2.993283812426771 -14.10578324831537 -2.979534349015542 15.48160399255966 0.5770145181887046 15.47885196503021 0.5217674052181079 15.34902864631813 0.5526157947697609 14.4085589140391 -0.9186814868510287 14.55875325221186 -0.8571281806953498 14.56121365463613 -0.9287903644628499 5.622700034337741 -5.968613656585633 5.459599557046754 -6.008022127867005 5.619306958676546 -5.907207759221429 2.234185883457617 2.846221968502641 2.05619471312794 2.806527840834541 2.231453283260552 2.907232268431428 -8.946607458595071 -8.829138194235512 -8.928442840027005 -8.784425541352926 -8.740777747529357 -8.855817660330374 -3.64931768975727 -1.843105382720829 -3.851067051202477 -1.875538653393438 -3.851721353743065 -1.803851642590221 4.464883826458179 9.499526558368027 4.491027881312752 9.536029190383411 4.643341830391423 9.453439173665121 14.40483075529906 -0.9132789595077125 14.40244610638993 -0.8416120689180313 14.55502645137366 -0.8517277038589923 12.95794062711668 -6.180291355015434 13.08950781508153 -6.206091741606143 12.913023507048 -6.229985096728305 -14.8140162096653 1.059420999466457 -14.83266353466066 0.9985963012948811 -14.95615782680249 0.9845168882099653 -14.13872375661686 -2.969314619296041 -14.27335445897661 -2.982154651695046 -14.15887680713695 -2.90113161730601 15.43783777060533 0.9736996323347391 15.30620218310803 0.9463326193768932 15.28972980437781 1.00449669855066 5.300298042191185 -5.906065881053298 5.282977278655332 -5.84649076619006 5.460606203409836 -5.805843315806659 1.975272582752247 2.888976142369894 1.986781634531835 2.951575167215556 2.150279520351499 2.989951018310447 -8.617044218355225 -8.765436230663473 -8.783856957352235 -8.702500729815426 -8.577669085911051 -8.727410006077253 -3.652464057159661 -1.900252282074727 -3.85485969339872 -1.860995764877565 -3.653109946158304 -1.828563979354239 5.024587562277183 9.658440544008718 5.200860985140309 9.607414922305379 5.192864437241487 9.561645281532233 15.20139571713304 -0.7832599830878805 15.33667675910309 -0.7274851764706164 15.33977922602832 -0.7991350594632984 14.79933303406314 -3.341115508192154 14.77265350496479 -3.39836517498379 14.64320091501064 -3.356774936119895 -14.95610897954592 -1.909208840203968 -15.07599869206904 -1.991458496775166 -15.07751573528091 -1.928901275241892 -15.39326752157513 -0.7843296655218965 -15.28266583431196 -0.7647900852643523 -15.38973642756603 -0.8542764057859086 12.99926510517248 -6.365972724385981 12.89096280979466 -6.318940293998509 13.0298524886994 -6.311456731823297 2.23443586118247 -6.509701919163327 2.083014637381942 -6.547087535680173 2.223981335268463 -6.449144382802151 -1.582237017695348 3.153970070279289 -1.747768390871122 3.116335919057514 -1.577866681390738 3.217126931730753 -6.086444133991895 -10.02632646503929 -6.055284107720793 -9.983846051526383 -5.88265736500265 -10.05312735819156 -0.02282180959464641 -1.847353471482086 -0.2096720101373384 -1.882527368021266 -0.2110394681772509 -1.810845336039839 8.314236475210478 8.29180456189332 8.334324174282287 8.335217906230978 8.47216433976871 8.254142624876106 13.11564997703518 -6.271351032549298 12.97686232071334 -6.279926297514996 12.99238219867244 -6.219393559674243 15.20122131714194 -0.7829757674501733 15.19813309062258 -0.7113288802199134 15.33650224083415 -0.7272007832983679 14.63121237378913 -3.407336470604331 14.74471450841038 -3.446539825899017 14.58836189301911 -3.460772823618976 -14.8866795803959 -2.084725420977736 -14.8949642921855 -2.147673992041696 -15.00530682266275 -2.168100194095186 -15.28508189753491 -0.6949102504479959 -15.2715043214534 -0.7648946804394748 -15.39283394735346 -0.7838889417101314 1.892160919020289 -6.425902585879954 1.868767859027434 -6.366956771317088 2.033817736372647 -6.328577566966812 -1.794666810238712 3.158459666940161 -1.77672709548575 3.223006485215223 -1.624920812525558 3.259412909341735 -5.738308517484776 -9.9196026756715 -5.892018101380105 -9.858350346301181 -5.687844696006196 -9.88326371919716 -0.0195177593414797 -1.925601222013958 -0.2076687309883118 -1.889078926504697 -0.02081872739155832 -1.853904382528707 8.739247614306635 8.311403056835225 8.89559514850038 8.269860595000885 8.891695216677331 8.217201971763647 6.718849235909625 -10.21256745616353 6.614934288656784 -10.15785381161231 6.770911987895387 -10.16635193070093 12.80581362546677 -0.80648554750152 12.94019774484273 -0.756859543847706 12.9434178150733 -0.8285028390757576 15.12326805705956 -0.005724728568732991 15.26336284828557 -0.004608053785640344 15.2415335510137 -0.06540980439345059 -11.50453675627246 -4.949390297011129 -11.3841115316841 -4.923095392646786 -11.49038109852061 -5.011687906892525 -13.93860978541115 1.88165947576014 -13.82696621993622 1.907054775980008 -13.94476584078105 1.811030498634434 -2.078754942071048 -6.987921009483267 -2.210242828918581 -7.021818338598409 -2.092936155250775 -6.92718544558576 -6.151128742657361 3.304125242236099 -6.15877162023911 3.238327767956296 -6.302032922385633 3.204635065414963 -2.596341069426784 -11.00527113169676 -2.555269252944989 -10.96222996201333 -2.409159206372325 -11.02869179128193 4.494748338616994 -1.806386664472731 4.333051896468609 -1.846237497856189 4.330927366861394 -1.774552834468218 12.1120515392074 5.779978294847714 12.13426506364874 5.829747561268214 12.25054356714622 5.755275000657892 -13.75373242564983 1.925344024270304 -13.75142221387348 1.8552081856282 -13.87224284248714 1.82986253059147 6.486184885703263 -10.36384751618531 6.525792680336604 -10.31147456855855 6.642062520857404 -10.37341461552715 12.80655862080864 -0.8077278979498137 12.80324973613752 -0.7360785452619145 12.94094270752326 -0.7581018395624251 15.15939684649568 0.01018895454359727 15.26368926087048 -0.04398609028138865 15.12359326558368 -0.045005003937031 -11.19241568530256 -5.108324762408362 -11.18623690987708 -5.171355351421689 -11.29748715051238 -5.197797271961211 -2.41097718015388 -6.898922099391771 -2.436240357128277 -6.839506268963933 -2.292903159146043 -6.804881631879261 -6.381986106912356 3.453728300457278 -6.531958987267718 3.353370442805959 -6.513780889231478 3.42057673745037 -2.227949932497694 -10.85096291745813 -2.357990225637678 -10.79290016711018 -2.170413558114848 -10.81427691463804 4.493568953358743 -1.869716488258018 4.329708440164693 -1.8379011292138 4.491405204687568 -1.798051105317685 12.33040395020914 5.723885370656501 12.46813695344504 5.696682417251439 12.45948417594871 5.638383849952093 -10.19381424441942 3.628655104702682 -10.3267417310972 3.529490086089372 -10.31196573141311 3.598679870542613 1.263047233919458 -10.86497810175628 1.149601729725166 -10.80812222609864 1.321968911207776 -10.82541457156122 8.33495194681948 -0.9393709846483315 8.479313128830071 -0.8952687873145162 8.482133503898519 -0.9669310694859402 14.24004603569673 3.303754303346462 14.37300884631387 3.289109543227458 14.35765749283158 3.228332671543959 -6.422243354337583 -6.122216021210996 -6.293816491819487 -6.091079264381685 -6.399197657147495 -6.182778468998228 -7.058934942962307 -6.842877791739229 -7.0463371544553 -6.904740474893552 -7.16151167373051 -6.934754810238522 -10.88648996590411 2.64862185474179 -10.89023252981966 2.57997412362618 -11.0162835850136 2.550501913388109 1.853554562682688 -11.40137518247395 1.89837555497093 -11.3549931071721 2.021890098738182 -11.41897718556329 9.260413972355488 -1.722941074899034 9.257523772930266 -1.651291545528555 9.401407576662528 -1.677829723944222 14.51714728365275 2.448061596623807 14.6201775251934 2.383960104401724 14.48741809509194 2.394227534894988 -6.087123770824414 -6.231823276455812 -6.073781202193569 -6.293378880329974 -6.191595657321873 -6.324164106489588 -10.05041992293245 3.580831462101102 -10.0552548504074 3.512660789276433 -10.18411339270548 3.482305749303916 0.9356761749270038 -11.03968848633572 0.9805044406586662 -10.99431749290079 1.107750468641205 -11.05870048010149 8.350072620762127 -0.9697666054076026 8.346837925408174 -0.8979562164649447 8.494432355201985 -0.9256614758650968 14.17664989377583 3.358260377678533 14.20549124667891 3.411489102167506 14.30982380949343 3.344855133454883 -7.410190894200336 -6.718994021734125 -7.284596669721097 -6.688718920687671 -7.388212431718038 -6.77987156751045 -11.01960778418768 2.686646339388251 -11.14862836689238 2.587897482017326 -11.13513444487951 2.657481536116447 2.170761244673912 -11.26174330560949 2.060598415327624 -11.20525307218632 2.229199003757358 -11.22120813922551 9.265735761459213 -1.733143836158397 9.406728916481065 -1.688031616218538 9.409726614996046 -1.759681118882882 14.53016391219004 2.386157286837497 14.66279109864979 2.374881698012832 14.64589534681116 2.313857388509863 -1.592010528313675 -6.110358672654588 -1.617113455819886 -6.051119391115596 -1.470442782662715 -6.015815558400712 -5.675868120392944 4.102737333330855 -5.657527477341786 4.169472186846489 -5.522591507270088 4.203220492284856 -2.881399738377283 -10.27094442238407 -3.015480122053204 -10.21231916761222 -2.824909466322803 -10.23451209583057 3.62459326922874 -1.129226331396547 3.456989302230531 -1.096531799400456 3.62225729422133 -1.057394373402834 11.7882318389257 6.541826169582367 11.9280522850443 6.511764698448218 11.91982790342517 6.454265066894251 -12.27667041523024 -5.248005691055829 -12.27356082976313 -5.311243545222993 -12.38023254958901 -5.336378614898749 -14.3947114078396 0.6318532942106032 -14.38937508335385 0.5615894983034399 -14.50614646384963 0.5376517645847719 7.825441422692121 -10.18630463490646 7.861589823375244 -10.13201110231001 7.973730621424816 -10.19249291082982 13.63024992791607 -1.601611422134419 13.62683556517517 -1.529973458177701 13.76027134916013 -1.550616612102672 15.17341156392762 -1.230085607317037 15.27593408757522 -1.28029106195924 15.13451778086249 -1.284532676661235 11.50588148154212 6.634546521068818 11.52727757931671 6.683237604602827 11.6466988274536 6.607517660109634 -1.266398153327455 -6.19702090032682 -1.401026381253884 -6.231521409648109 -1.280175711516491 -6.136411075446405 -5.355324221922913 4.021786819202103 -5.502326438409484 3.987301835127076 -5.348373572331146 4.087143164817413 -3.232307863926394 -10.44020248185125 -3.192655004137607 -10.39775020088385 -3.042109121301317 -10.46428904576698 3.601572222001094 -1.003612093881301 3.436302030887274 -1.042743772599786 3.434251235682388 -0.9710784511540591 -12.46001996591958 -5.055837435589588 -12.56488972964608 -5.143250858935527 -12.57657385768954 -5.080702991098518 -14.56778065992224 0.5730555138965601 -14.46071794843574 0.5971398635819519 -14.57131938023068 0.5023323048544063 8.008160250368158 -10.10018678908535 7.908633852134024 -10.0465087055165 8.056967300212826 -10.05200162859289 13.63038543231162 -1.601824645575183 13.7604068508368 -1.550829831253393 13.76379106725562 -1.622482571299682 15.13823423222872 -1.192664803811458 15.27962873725492 -1.187995013980668 15.25468513525911 -1.247916035253395 8.320032834994811 8.805923976284776 8.476908639299536 8.763849472740052 8.471560558106781 8.71250335215912 2.335793623000484 -5.635510610887174 2.313753974424717 -5.576430839983729 2.477461437781119 -5.538016445730615 -1.387768377610958 3.941909945668608 -1.371653774586548 4.00625780843145 -1.221087150265096 4.042716217823372 -6.143763369393341 -9.292311573887611 -6.296179211808116 -9.231594788140507 -6.095413776644467 -9.255861970724185 -0.59654329885026 -1.109980878857306 -0.7828790743715841 -1.07390236865711 -0.5978160800109561 -1.038304393877002 -15.19988637368895 -2.039567051502149 -15.2104133528292 -2.102241935128155 -15.32186333026375 -2.121385542184521 -15.2489235624405 -1.933534688701624 -15.23371607094502 -2.003294297435437 -15.3553343954287 -2.021058750420265 14.03986414997043 -5.279907791132423 13.90574350790007 -5.292442028823126 13.91492662070425 -5.231255514286556 15.2836046432 -1.614345238868835 15.28049663115124 -1.542684755638662 15.41870051283549 -1.557444339407133 14.35291432004064 -4.424301511264253 14.46767404925814 -4.460417939230651 14.30828664924902 -4.476675693021341 -0.5482991866424092 -1.197011249585408 -0.7333561165364616 -1.232628729202202 -0.7351003442153165 -1.160376429460887 7.867035186887023 8.800561401308919 7.888370725125638 8.84260897639618 8.02557362790731 8.7625386466067 2.654628259052303 -5.707906477776437 2.504413073575968 -5.745251242350809 2.645470506589455 -5.647210911703112 -1.107727804707062 3.878743020473473 -1.271754052167728 3.841154715274977 -1.104690114787528 3.941568165447574 -6.474519628556968 -9.420163277772423 -6.445742078490899 -9.378641684539636 -6.274102022018866 -9.44614888008285 -15.23122871280863 -1.908193742106417 -15.35430200967466 -1.988989828758354 -15.35259956099925 -1.926587386148011 -15.34296726267979 -2.022400720208078 -15.23130273960793 -2.004047118516191 -15.33708136952566 -2.092044149149024 13.91755290956209 -5.487568927409439 13.807768837111 -5.442732944224471 13.94210294924037 -5.431703757328234 15.28364711295021 -1.614368949648991 15.41874279649783 -1.557467776773037 15.42178839963 -1.629113715372726 14.54640155736297 -4.316358253819901 14.51806974243327 -4.372510095152036 14.38731274245073 -4.334334957351431 -3.945561259909191 -1.247432961482665 -4.144241219602215 -1.207901852260645 -3.946328897595604 -1.175170157205103 4.698119345898045 10.04174579545983 4.873269089505744 9.991083025891768 4.863049793779602 9.946528886118488 5.620742496854408 -5.119726974429264 5.604888190087659 -5.059891377747156 5.778909082300534 -5.019521984430201 2.255254847342431 3.653745439426706 2.265000412056336 3.716146832646577 2.424990328432509 3.754277698767847 -8.917101681407059 -8.1146430470783 -9.080400592411378 -8.052479295692518 -8.880447140686428 -8.077158578998903 -14.58309113522061 0.6528608788794718 -14.60258209094925 0.5923566551232347 -14.72844300025383 0.5790313991206636 -13.8781529907074 -3.913382065177766 -14.01536599989013 -3.925487686114186 -13.89863766316225 -3.845470610647374 15.29800908158372 1.581883090390108 15.16558032337974 1.552750298666116 15.1460034833457 1.609818010593414 14.30881866211792 -1.692632445532497 14.15545791007416 -1.754877769326812 14.15317194537882 -1.683214341573573 12.70320001683093 -6.854170988082087 12.83778415861989 -6.878492687552768 12.65867243096264 -6.903392772628819 -9.257803762624148 -8.215598339111129 -9.241682369780454 -8.170300177861128 -9.058245592027379 -8.242183947451787 -3.990225029160866 -1.011135991860506 -4.188142784922009 -1.043847348048704 -4.188713548611261 -0.972160923671727 4.105970040594284 9.892966958188575 4.133838264938596 9.928255723326144 4.283387189200413 9.847447681103789 5.932770313230748 -5.179347270187138 5.773173490248002 -5.218484296031162 5.930759023218888 -5.117714367413588 2.566288905324989 3.559640027457126 2.391913650836002 3.520273378337419 2.562072709238854 3.620361535147916 -14.51788030950068 0.6511415311768315 -14.66381877539293 0.5780316863240446 -14.65508634971654 0.6388715415331973 -13.953495816722 -4.008506070146007 -13.96310290289799 -3.941174895708128 -13.83719945610775 -3.928100685185102 15.38104342951547 1.130716903359272 15.3808273263972 1.076182356802825 15.24758353691842 1.104658260444447 14.30976407854533 -1.76235145348969 14.15412577445248 -1.75293064072785 14.30748698386486 -1.690686014295796 13.02993856590179 -6.744615836827118 13.00465364406757 -6.796144945084329 12.85150333301094 -6.772359295408605 -11.46806795988844 -6.668713535147372 -11.63157258163808 -6.604958809325613 -11.4426114880492 -6.626149117170876 -7.091008477986005 -1.015978160065062 -7.290683259657538 -0.9764692306588462 -7.090890625410724 -0.9442903895154495 1.268230750697823 10.56912364664678 1.455885385089209 10.51319634304936 1.435646116346202 10.47482423077415 8.561760365605766 -4.594017132148604 8.553260152533577 -4.532727619544389 8.728292994576382 -4.491858061524657 5.479008622761363 3.369754560595218 5.480353569302521 3.430557380024089 5.641294908696153 3.469013249891727 -12.26274549061468 1.848468235279291 -12.40572891545067 1.839508031990456 -12.24253538428687 1.907594473980516 -11.61596664841403 -5.017679400703231 -11.77174917677895 -5.025388663622297 -11.63596240303391 -4.951776659613474 12.8001487679496 5.829148100571635 12.65317416080626 5.792018540894521 12.62426740366962 5.841586059234314 11.99751906690489 -1.828368635046137 11.82252494270866 -1.894888782999132 11.82107046575765 -1.823210091500027 10.65802845375483 -8.671799730436419 10.81277826721054 -8.687484796257966 10.61926089981305 -8.717852064054716 5.750990975317477 3.31136559973065 5.575661432809635 3.271551670185389 5.738255817284522 3.370497837393292 -11.74127109927246 -6.685258370954052 -11.73702922390491 -6.635874988853528 -11.55256894943259 -6.707831543817108 -7.091190853730137 -0.9431360261704894 -7.29098352156178 -0.9753147382708393 -7.290877554208054 -0.9036264341043482 0.6127651770859544 10.28894483561995 0.6512023903603736 10.31855930465727 0.8030406641483201 10.238796073121 8.842100762020555 -4.623888330104501 8.681598202884702 -4.663462788416764 8.847608271360844 -4.560778736174043 -12.31107478204764 1.753873798862986 -12.30324168179712 1.813755915452977 -12.14751688514993 1.821417013215402 -11.69979945966459 -5.113004999379952 -11.70727777050524 -5.048050794785733 -11.56429641792128 -5.039070150895581 13.0805070206411 5.337211616342939 13.08713011415995 5.288110761292079 12.93225127445354 5.303380595568586 12.00351771803758 -1.907218547989442 11.82704899982748 -1.902058087232394 12.00204187342531 -1.835535903356021 11.10929452063571 -8.599960102656215 11.09255170630536 -8.647019929233085 10.91676123488222 -8.63397882214665 8.463770738087579 3.147350521491687 8.456621527355717 3.207061144183714 8.609545807931912 3.244617348842078 -13.8062820408144 -4.61324397110358 -13.63605353607343 -4.629094035547781 -13.652308496306 -4.676909725656401 -9.979086762679119 -0.9118319020731873 -10.16916560811681 -0.8736416729799855 -9.978271983861317 -0.8401464148777312 -1.691145200738942 10.57184081927629 -1.84826347036215 10.66420366060691 -1.658201889270249 10.60530275772313 11.2422689293593 -3.949126275565361 11.24055594957627 -3.885882491929603 11.40862041560554 -3.845831598182718 -9.551511654434053 2.322499571152712 -9.707899358580669 2.316167172924643 -9.53602032789137 2.381451480189401 -9.065592145234403 -5.690193882424489 -9.235863490903935 -5.69516644275171 -9.081037644808127 -5.626115617917052 9.766136736852715 7.721607438938638 9.59747249678175 7.680960875880517 9.573249630871358 7.72651232525906 9.412631202623736 -1.935108157351509 9.220341160553913 -2.004392150565284 9.219643163405078 -1.9327022073625 8.348317994832483 -10.08961773556786 8.5182783225238 -10.10018936119623 8.319681983772494 -10.13298405159051 11.56950513659177 -3.978981277320125 11.41710016845712 -4.017821891039564 11.58246404278411 -3.913550478102852 8.745706457272915 3.068643334189087 8.578885930147454 3.029875765457264 8.725079453870832 3.126753152607873 -13.86692416850899 -4.626230174078959 -13.87054121951037 -4.571360192675914 -13.6968569159072 -4.64311752595167 -9.976255327306809 -0.8472843743890994 -10.16714868373195 -0.8807805770805147 -10.16629217501194 -0.8090897253007084 -2.533344626979457 10.29228061277762 -2.484853677362083 10.31806146223492 -2.340389993372554 10.23952093611932 -9.616884700676433 2.201801032923582 -9.61515097977825 2.261810656067003 -9.444773814499946 2.266706227235113 -9.175409906166889 -5.773230089398138 -9.17713875390521 -5.710372376972855 -9.020757719505559 -5.703938852938419 10.09943425579705 7.240053896620663 10.09965679120681 7.193989782612289 9.929612574154675 7.202508009369316 9.404929318733672 -1.992687653339935 9.211965735149661 -1.990280067643737 9.404257851321997 -1.920999636882653 8.924979711879992 -10.05891894134058 8.920486714005742 -10.10248339065917 8.727643741996864 -10.09612523033034 13.77850389282831 -2.910019633285045 13.78143809692783 -2.843839681106521 13.9298626843523 -2.80633027919083 11.33665266398774 2.78593156790716 11.32260415247666 2.845243600480377 11.46056303825653 2.880680914411926 -15.26293140775587 -1.796101148916797 -15.11329806202435 -1.803862510157038 -15.12638808131952 -1.857832623224716 -12.68632087590331 -0.7758630810570987 -12.85823725814127 -0.740734212245754 -12.68467554174819 -0.7041807476080513 -4.672671231989843 10.35045117739623 -4.808478246220423 10.44054762600533 -4.628862510747769 10.38098144188843 -6.792177553506492 2.582245445252399 -6.954594046043071 2.576853371634834 -6.784470370629784 2.641963576601192 -6.374573240540036 -6.187568733252327 -6.551407360976489 -6.191571608097306 -6.383121211835027 -6.125056941771275 6.912893816468734 8.555956293179982 6.725300584775114 8.513581467421554 6.712602637005921 8.558549812744028 6.700547613092615 -1.977959297731593 6.500219845192263 -2.048236408727563 6.500239259365231 -1.976546447869798 5.649213380515395 -11.25946113552951 5.82574159759708 -11.26872936192003 5.632899024968824 -11.30124203253089 -5.551800941494372 9.974274129334603 -5.491410055673462 9.997149337750599 -5.368852850462249 9.921354873469303 13.92984095638246 -2.872343983031653 13.79233213900375 -2.908847779068738 13.94356398530553 -2.805043860669955 11.59642830635142 2.7069070901034 11.44591128028059 2.670459769131661 11.5703433303029 2.764785082557915 -15.2740524274328 -1.762126047424486 -15.27882762962187 -1.701266132642114 -15.12446246544826 -1.770388747532218 -12.6855267837619 -0.7016557110857535 -12.85908865025668 -0.7382087346658343 -12.85747893362189 -0.666536678107947 -6.852022620543488 2.437853727669991 -6.858536899366711 2.498713277647795 -6.681685596940605 2.502617822574034 -6.479790861557024 -6.288473587179761 -6.474088080872148 -6.227215822866979 -6.311679035328347 -6.221686679518379 7.252266400767371 8.072841323806804 7.240377966717661 8.02713389712147 7.06364894197481 8.033380336635075 6.70970018536817 -2.065598269347671 6.509389914405678 -2.064186401653375 6.70971560786901 -1.993905631379044 6.339797585227679 -11.26859984910191 6.348655884494512 -11.31017592455815 6.148408117669895 -11.30605105569771 -7.604905728673864 9.751676976709444 -7.711809764154808 9.840509215937177 -7.549008303386884 9.780774128464524 15.31342956581983 -1.159996385191196 15.31385734274435 -1.091836756716515 15.44506005980742 -1.058185235361697 13.99248058745683 1.90429339551723 13.97576403205957 1.964276792873518 14.09615622794651 1.996729211303031 -15.23497945323221 1.841607913028883 -15.09924819783357 1.844487547686547 -15.11720579889005 1.785170785042847 -14.87221805652376 -0.531679520155393 -14.87466073377773 -0.603337002607631 -15.02512862964613 -0.5727075492745442 -3.874968577375353 2.844150243789763 -4.034409893278372 2.838018583062885 -3.875926197158899 2.905220518865693 -3.360693470480006 -6.683452321535736 -3.534325837207582 -6.688309731489518 -3.361837750162391 -6.622037101381629 3.89708856379888 9.001318164271137 4.093750487282498 8.997317177626449 3.89607054180398 8.954670637020273 3.761763602072166 -2.017536826766855 3.564385902169928 -2.086942805548035 3.565106551543301 -2.015252408016748 2.365764794796064 -12.15676920708673 2.1879813970502 -12.1857763220583 2.192828326141625 -12.14379308608111 -15.02351923782273 -0.4992513991472314 -14.87297546578908 -0.5298859801427713 -15.02588627862789 -0.5709134563710172 -8.49524937736966 9.278735825274966 -8.428113086530171 9.301266284762386 -8.328530578409394 9.226110260287666 15.34374877225697 -1.071967297237093 15.47427426737303 -0.9692795259564059 15.46385705216017 -1.0388702376328 14.19060461650755 1.845540874017543 14.05929252752984 1.812400823296398 14.16353397493676 1.90444200215758 -15.2412219754005 1.882507909375573 -15.23908262849998 1.948067774145756 -15.10549720994015 1.885571001658158 -3.930704494340847 2.70612638188966 -3.945635065013709 2.768333950593896 -3.772016258706118 2.77302894642654 -3.436389851907229 -6.81557418920629 -3.423558414325446 -6.755284260426986 -3.264130945621227 -6.748933690890019 4.431781809352727 8.520026033747911 4.406673536944801 8.472956880211376 4.233171750787022 8.48014339648196 3.757884909242363 -2.083646128699481 3.561178800323074 -2.081354475691449 3.758557160119626 -2.011949658255776 2.983330606037973 -12.20717948585779 3.00347212370062 -12.24935120400201 2.807053193032321 -12.24140501544334 -15.4035264028204 -0.3993835653760778 -15.40658650987916 -0.4710293799135456 -15.54106757485568 -0.4458871004901172 -10.76348273852581 8.373436725822025 -10.84168260677484 8.463054712708299 -10.70238673733465 8.404852547835649 14.89271804834208 1.362310896943695 14.88536805414721 1.432143494436257 15.00247151614127 1.460613558457811 15.54442831576886 -0.1772025300544178 15.53215565459417 -0.1153184851625176 15.63898173772364 -0.08663501576942562 -13.08798323996053 5.523970908762649 -12.95196251343829 5.538395629649434 -12.98101957240073 5.476926694483 -0.6272731539126153 3.19803476748175 -0.7755778935279711 3.189543266014197 -0.636083871153228 3.260960878875714 0.2617281090394091 -7.19436483523608 0.1002711030644504 -7.201954603348653 0.2664692778492001 -7.133349633543099 0.9329726925144188 9.265565936736246 1.115668704270432 9.257032177211325 0.9189564141891182 9.215725544524082 0.3316474585252793 -1.997065103135946 0.1471248963081939 -2.063800763453142 0.1485215216200342 -1.992110761023125 -2.580866583210967 -12.30237726684135 -2.74053381243914 -12.3223531980944 -2.741168096657231 -12.27730591062638 -13.16180678069201 5.642533833652262 -13.03990629734695 5.591268123566143 -13.17575952501795 5.575897571630211 -15.53731998110256 -0.3753548647507164 -15.40289189900673 -0.4005078232859363 -15.54043326706968 -0.4470109996039769 -11.64771592694504 7.705653340079344 -11.57930451534662 7.731094740011856 -11.50357329573282 7.655281235309178 14.8107764665212 1.513313846791035 14.91938860170879 1.612397884305921 14.91777504032939 1.541596645895389 15.55247350337337 -0.2866621609038716 15.64798935396019 -0.1967217884386764 15.66938335224284 -0.2577625852211226 -0.7257061121927522 3.135624826641909 -0.7492826830192656 3.199645525826849 -0.5861050103982013 3.206912841397215 0.2046698268300501 -7.315777736863169 0.2223359818162479 -7.255666211178008 0.3706030609532812 -7.246777032734928 1.446737205727232 8.81586091648888 1.41032005688943 8.766193914618109 1.249175226116862 8.777145049173717 0.3265215087350981 -2.062757591221067 0.1436112862092576 -2.057822093329615 0.328134466515313 -1.991087490628809 -2.060940502956821 -12.43180914816927 -2.038646191294379 -12.47791345644089 -2.219711610518229 -12.4558014587378 -9.182703170680265 8.142981667147495 -9.222363525422407 8.083086258425697 -9.332830983025458 8.118515293549825 -12.82885888313337 -0.4333106680017894 -12.83210656012083 -0.5049631113588409 -12.96437386323524 -0.4857612753338539 -14.22667272500704 5.027393164206575 -14.29224145579548 5.119741104330275 -14.17026943404672 5.067076696042379 11.68675887388286 3.602706758615832 11.66930486808475 3.672175459232727 11.78517351991617 3.694316614731889 14.09814757657465 -3.494449347467016 14.09792665432916 -3.431131137389283 14.20357449836181 -3.407465746909945 3.311842824457591 3.69480617978706 3.180952569015447 3.682442626085488 3.296724549315826 3.760389661226368 4.841221589877175 -7.431855999181114 4.697824292369404 -7.443925136107564 4.847706590950949 -7.370370172292076 -2.400479053744023 9.30757624764987 -2.238769655885183 9.291399539759695 -2.423927921558295 9.253287604899537 -3.905360039888937 -1.912633707595967 -4.070156549817515 -1.975172376102798 -4.067783527303628 -1.903515356447446 -10.17289669217167 -9.682773219005764 -10.31371533681537 -9.682207133991504 -10.30134664771371 -9.633848868670501 13.97984504926813 -3.543690590935927 14.08633077382004 -3.45750883909293 14.09538737111564 -3.520336337190298 -9.511988152546504 8.305585174373318 -9.386222448783157 8.26807649807159 -9.535912013812602 8.242001299443496 -12.96189303870368 -0.4128193214747257 -12.82966451108063 -0.4320182967679505 -12.96517952201887 -0.484468854796048 -14.71269481696847 4.013498378462776 -14.84004376486605 4.057588390279326 -14.77920814462923 4.091349341689019 11.62583048565259 3.782543859477425 11.51972838591437 3.760171445361742 11.61722827716697 3.852384628676802 3.370585161341922 3.515682000496788 3.344894772389757 3.581699094405173 3.48686275523955 3.593161887339996 4.955591728013779 -7.628168954165989 4.973881571941138 -7.566714195225301 5.104651600287307 -7.553586915436286 -1.92119739166922 8.919516933797494 -1.964602942159007 8.866450198779596 -2.107123554284511 8.883793314033616 -3.901264302188793 -1.994557209596358 -4.063862195684717 -1.985426570730759 -3.899066565719143 -1.922886467266069 -10.19290282709548 -9.682566741176609 -10.18739774005304 -9.73803100462597 -10.33372012348084 -9.68182146362974 9.311076820884212 -5.949331613577347 9.323484570056838 -5.886859372862432 9.440922056310367 -5.869195587661766 -5.026780911688034 9.357246248914594 -5.071445833698491 9.301009797261001 -5.197347146347086 9.325529548587996 -7.947102303290013 -0.5894643933295963 -7.949887549912635 -0.6611270684132946 -8.09539992411437 -0.6477299531407387 -15.43124420531314 -2.567005871622457 -15.46057470326414 -2.620836623976506 -15.55809902521233 -2.534853325241069 6.98240149880651 4.531278791130957 6.958357616329172 4.598849252041651 7.086537431753661 4.614685916919045 7.630287216100353 3.649601229581525 7.51575006665552 3.632015506039547 7.615492771450722 3.71765445620545 10.19784578773473 -6.696913920680565 10.32410489018963 -6.615635440950904 10.32273040499034 -6.678742755244736 -6.218252828831257 8.823750056783792 -6.078905355053932 8.796930614847144 -6.245046099709876 8.764271056133902 -9.074801065170108 -1.766913467321274 -8.932470938382535 -1.781327539503857 -9.077741070611141 -1.838567743463145 -15.62387269144929 -2.045133868235527 -15.75144007862989 -2.01505964539902 -15.70876149207593 -1.970699328397222 6.937165609727131 4.677847019309463 6.819450760308195 4.661365312288654 6.923038988214199 4.745193443225125 9.126273613450488 -5.880017574332839 9.256920704058864 -5.800692167285071 9.254189010252405 -5.863139782920194 -5.45296217489605 9.620680742919076 -5.309853573753243 9.596006380142441 -5.479766393658354 9.562188841765938 -8.093488363116617 -0.5746549751459601 -7.94799687680568 -0.588048802177663 -8.09629459340672 -0.6463142111322279 -15.17091417538628 -3.380255623136744 -15.30025758137425 -3.35497264948756 -15.26327467135561 -3.308565833622692 7.912526008402184 3.30463990496084 7.888398934878699 3.372370813701915 8.013696414966562 3.389236110353795 10.17847454433213 -6.692745542119415 10.19057221808936 -6.630247968358376 10.3048258676164 -6.611555797063267 -5.801968218888781 8.531798935816008 -5.846230111475199 8.474858109547116 -5.968740488989815 8.501196010495569 -8.932934856513818 -1.780596796018044 -8.93592119289028 -1.852242308710759 -9.078205033349054 -1.837836929919548 -15.7881399394003 -1.079236078955304 -15.87590417856727 -0.989918974313639 -15.75169750049168 -1.027709019856362 2.485499947307374 4.472956968423371 2.460685075866149 4.538363142456573 2.60760486618398 4.548901101428431 3.893771875855423 -6.489944943947041 3.912077587770289 -6.429142407816977 4.046854114150587 -6.41693195800528 -1.248765647391035 9.644188906583567 -1.291345768410386 9.591806514279671 -1.437472144776269 9.607794773559277 -3.040185400566218 -0.7887452822798593 -3.20670150097601 -0.7804733697264258 -3.03814380460506 -0.7170700421782971 -8.513804773128053 -10.4062803803854 -8.502502129869862 -10.46032620295482 -8.657480188289187 -10.411727784352 12.45338725151071 2.380162317891126 12.34711374232451 2.35668023675648 12.44546212911098 2.450225481813456 14.59647349106598 -3.96016234246847 14.70064903028807 -3.873024521808449 14.71112753794043 -3.935702814139552 -10.27897970006404 7.308989002682967 -10.15504398845437 7.268988025667653 -10.30152361223623 7.244645151739499 -13.70483722245436 -1.612202720142785 -13.57331890939997 -1.632485741994377 -13.70820827785765 -1.68383766910858 -14.2028553197867 4.626108982969789 -14.33209904411481 4.671881631678597 -14.26895117078108 4.703648871959323 -8.65468903430116 -10.25613977628639 -8.798428666794013 -10.26041203342668 -8.790869198118646 -10.21150150056348 2.466283758066018 4.62206719277332 2.331411514804468 4.610529309645149 2.45313393602676 4.686852483491413 3.899780881918737 -6.35755508248576 3.752928732434449 -6.368692221510917 3.906433381573336 -6.29623014674705 -1.738061956477426 10.0025226433876 -1.57224390367624 9.987962863051735 -1.760158718123047 9.949116364288217 -3.037901029249006 -0.7174698557880698 -3.206458689350344 -0.7808732430068408 -3.204406899013374 -0.709201541547975 12.47944916925332 2.215860560716169 12.46370053507993 2.285545533903941 12.57861381290743 2.308871000587931 14.69020064242352 -3.886202013238754 14.68750845235864 -3.823009847978879 14.79333028128099 -3.79829764480802 -9.970634185330551 7.120645168812637 -10.00870519256849 7.060282258332443 -10.11750423388941 7.097804445309613 -13.57092739168663 -1.63637693552676 -13.57436135615463 -1.708017233436424 -13.7058167275451 -1.687728915632827 -13.61655813152524 5.653729477197946 -13.68199679706545 5.745737994101852 -13.55823324313051 5.691394848970783 -0.9651417306627153 -12.1903128044228 -0.9411700735599637 -12.2358319372882 -1.125829964372461 -12.21718643351928 -1.307272511457143 4.132392262628038 -1.327963409677663 4.195947023325036 -1.163709907130863 4.202618734424284 -0.5424318152963675 -6.128563043848196 -0.5253337200742964 -6.068502914171412 -0.374555827329372 -6.060206327407129 2.025731516931676 9.50697533047069 1.991131215615393 9.457847709200854 1.827162434671363 9.467904827482494 1.016174088466246 -0.8488228054622627 0.8300988427380829 -0.8444824172850816 1.017459078152508 -0.7771400586307555 15.15518710247812 -0.03318400000511543 15.26741700610177 0.06679190440925965 15.2639164584943 -0.003932191538588688 15.5957148926139 -0.7967731904316677 15.47698606049068 -0.8265016514138293 15.57273598886456 -0.7361846880388361 -13.72692273584289 4.418177030246787 -13.60401690940409 4.364623460154547 -13.73869195468838 4.351431872008032 -15.6799312945193 -1.612403890972654 -15.54354137897865 -1.638587615398943 -15.68307901962822 -1.684052325355588 -11.03879089350273 7.731276161976674 -10.97013630155064 7.755912851801601 -10.89081929424308 7.680259539919994 1.017777879283641 -0.7776872549510454 0.8304177020221126 -0.8450297137301469 0.8316850995889413 -0.7733403800626774 -1.569649361279834 -12.00708917035595 -1.731490234092568 -12.02927318578456 -1.731721758177149 -11.98506702141827 -1.27689611786837 4.270249441001878 -1.427704339055886 4.262301296164493 -1.284393612364609 4.332845418309569 -0.4768695860635913 -6.003074595482511 -0.6410985706009481 -6.010024228785104 -0.4729776896325871 -5.942040994595607 1.508792833793395 9.915206756308226 1.69470575196733 9.907709608288483 1.496998334133953 9.866022521605903 15.2158557830502 -0.1856491978260113 15.21035735172968 -0.1159851765296647 15.32924101466242 -0.08648330756052865 15.45202549812743 -0.7170852671353226 15.43828422633217 -0.6556487308512626 15.54693757546256 -0.626222667456477 -13.67256105384179 4.268310473676549 -13.53776430242038 4.280708947193965 -13.56465032673341 4.219309751932072 -15.54334637266879 -1.638933078303796 -15.54638343012961 -1.710580639808732 -15.68288418743848 -1.684397457548985 -10.14971608300705 8.399009003018778 -10.23241816551191 8.488254682885824 -10.08906478873455 8.429643325274901 4.339017509140963 -0.8564796243527708 4.140861753849923 -0.8544847212515481 4.339567555086288 -0.7847846637370757 3.699382311833095 -11.67090225287114 3.71783520399307 -11.7126574429133 3.519850652009076 -11.70599678757342 -4.50537421534081 3.802371597858572 -4.518853551989814 3.864344202425445 -4.343901062936304 3.868783566897275 -4.04058586026891 -5.600772283655673 -4.028928924437079 -5.540353885523346 -3.868284633442033 -5.534280895761829 4.953631353428841 9.176891065890603 4.930912668534059 9.130138878781994 4.756036237288059 9.136981115520211 15.20407379657936 -2.550694552940539 15.33875681649253 -2.447686412556339 15.3272151963297 -2.516891539415384 13.78814693799148 0.9804669907860264 13.65340518493312 0.946638082137786 13.76085437072605 1.039036029627068 -15.4234703497418 0.5823809010124016 -15.42300420394083 0.6473198227317659 -15.28604123406698 0.5831960997448842 -14.57602405337075 -1.786098695150936 -14.73254867342964 -1.826214196813726 -14.73025598991482 -1.754549503807031 -7.932527008532775 8.994218151299025 -7.866309291966403 9.016610778141754 -7.762173894371046 8.94131606693251 4.429163170990766 9.597599347922857 4.627285304991204 9.594102959155697 4.430601934518833 9.551497004255873 4.338241397456769 -0.7824611247578051 4.139535319693241 -0.8521606944085538 4.14009205451134 -0.7804694906427024 3.102421808410494 -11.56980195035978 2.921382189592833 -11.59972090951355 2.928029327262789 -11.5579370367607 -4.437944164640006 3.924238167275824 -4.598600350258493 3.918363123700351 -4.437311998773864 3.985052415290227 -3.942603233965789 -5.48977363460459 -4.117598386900145 -5.494368310684473 -3.945116347766006 -5.428167666829939 15.15822454418859 -2.629161469947828 15.15945046169503 -2.561445222070429 15.29394047582268 -2.526995747627188 13.56743855243598 1.060457367569741 13.55079179298401 1.120246283547247 13.67425917461145 1.153305243339403 -15.42233769553148 0.5002762489799705 -15.28490811606211 0.5010415332033941 -15.3014240543213 0.4425514418021893 -14.57811415605308 -1.85819470982053 -14.73237102080251 -1.826648712043318 -14.57584644803768 -1.786533096182711 -7.04065833549342 9.503037249446964 -7.152861912652641 9.592060152138798 -6.986311416938761 9.532131511434839 7.764461992210457 8.632461813180054 7.754949455702805 8.586956770476412 7.578699845847527 8.593336071204217 7.205277969077836 -0.8241765165558987 7.005492534309306 -0.8227101175508707 7.20514812373491 -0.752484047795964 6.852620308498011 -10.60845354291583 6.859092992628851 -10.6502543614842 6.659410747873375 -10.64610733472859 -7.364742582075103 3.53356537261087 -7.369668791026909 3.594258059515068 -7.193355203094174 3.598188453423781 -6.980332878497021 -5.095051337169447 -6.976051799754297 -5.033505729922132 -6.814108973926651 -5.027931536210256 13.55594233288692 -4.207921895725812 13.41530713738491 -4.244916323561624 13.56962835308064 -4.141060050976737 11.09103565904192 1.68805621484499 10.93719415709646 1.651092925899092 11.06567832801427 1.745920641683279 -15.15206474338726 -2.915050256737084 -15.15673804272043 -2.855247401915437 -15.00001185562436 -2.925048133276372 -12.22895856218775 -1.952535264416888 -12.40610931229432 -1.988422154488813 -12.40466354503639 -1.916747362956051 -4.992868586225648 9.539630381690051 -4.934112127642773 9.562821703270483 -4.805572544266353 9.486385740626805 -6.887431091332368 -4.973288280527533 -7.063792324411773 -4.977330313835136 -6.897359937205413 -4.910530995541072 7.416530844046871 9.078414568490658 7.231841606460934 9.036262582380612 7.216766920685943 9.081147554592967 7.205448569468707 -0.7530069532245003 7.005793049236243 -0.8232331447176947 7.005705301689735 -0.7515529855191754 6.190248227592309 -10.54546233783966 6.366248537770588 -10.55461390390411 6.171630995909871 -10.5874755228118 -7.291638703516363 3.653764989293129 -7.453589085305908 3.648328343063984 -7.282391346204348 3.713261751538656 13.30463094662861 -4.245762442299805 13.30608464422483 -4.180658949544814 13.45982830875285 -4.142717282815737 10.83933951710539 1.757271202450565 10.82629135128724 1.816570756997123 10.96738701545944 1.852463738118953 -15.13800315641078 -2.971053121670076 -14.9859007400069 -2.980573364090908 -14.99860330558335 -3.034195994998006 -12.25010433462629 -1.968286950185916 -12.42436858858694 -1.932512771247769 -12.24721522035828 -1.896633880074123 -4.105850767016604 9.967104081378478 -4.246074555877347 10.05775577346526 -4.062094648224949 9.997781498584489 -9.632840066946871 -4.553709194494421 -9.635857806635888 -4.490512295311388 -9.48146251027967 -4.48374471792433 10.63332914354063 7.609239715614118 10.6352721337107 7.56283977509181 10.46738744838891 7.572182499641626 9.883230595420139 -0.760218351170224 9.692726902676272 -0.7574558857503435 9.882429536870054 -0.6885409287951335 9.332858027012399 -9.324939664483836 9.325926358570776 -9.369096948766666 9.135559451554414 -9.361826718298952 -10.0991445848126 3.256078896068714 -10.09604877633081 3.315969240205699 -9.927833604965425 3.32122584717763 11.06896706631566 -5.187860959001069 10.9144296678064 -5.226775623567064 11.07929079611799 -5.123255878195095 8.209082207550653 1.976001216674127 8.040090831921477 1.936964020328915 8.189719311391089 2.034223034418282 -13.54966811733205 -5.727025044182225 -13.5534041200049 -5.672558516458073 -13.37590536992232 -5.745342831371116 -9.454482909435733 -2.053079866740842 -9.649277344128501 -2.086184998707014 -9.647029179436522 -2.014517710853325 -1.977248898694103 9.756595355171145 -1.928855954581787 9.782608517687971 -1.783809670599348 9.704377825419831 -10.0333991053454 3.363988899440471 -10.18780132907776 3.357319844145383 -10.01672897389133 3.422853694292189 -9.542431112247556 -4.444152523403687 -9.710598987538798 -4.449481041915071 -9.558987616015688 -4.379830578949584 10.30134582005999 8.045749546269994 10.13660435995184 8.005514548127943 10.11095143030446 8.051528451943446 9.878114605291582 -0.6813041883577111 9.688410893525187 -0.750217309641563 9.687556231625864 -0.6785254928230605 8.780219706276258 -9.302858890704133 8.94795983101233 -9.314101490219105 8.749446798971057 -9.346707911095617 10.80095462466428 -5.182673348228666 10.79810187268672 -5.119857639927745 10.96640917501999 -5.079741167183528 7.938821908743909 2.044189248108815 7.933104889987783 2.104004196327593 8.088096645567495 2.14178406981703 -13.46751776715227 -5.750203168081354 -13.29354146707838 -5.767220381946506 -13.31120462339177 -5.814048248190137 -9.445753225813039 -2.159151248452337 -9.639817677750333 -2.120570917459065 -9.445024375553036 -2.087461661946528 -1.109026058521657 10.09816370011107 -1.268849258163866 10.19102216441297 -1.078357276157821 10.13248228479399 -12.94922782176304 2.622952801668769 -12.94138597196129 2.682944310987686 -12.78919005865232 2.691856451936566 -12.28494275339074 -3.77532243712409 -12.29265316698073 -3.70997598941128 -12.15373119559062 -3.699740665607629 13.7874570125565 5.043117162724284 13.79245490789307 4.993026585256168 13.64165279123874 5.011325846234993 12.60135807779593 -0.6410363685417869 12.42762464136455 -0.6348290545653279 12.59969652880776 -0.5693533150350367 11.5870711407825 -7.697376004837497 11.56906769975656 -7.745419553558944 11.39625301990679 -7.729684922609989 11.15080866099431 -7.71977076020801 11.30168962856202 -7.737827728903889 11.10992671920756 -7.766466510300469 -12.91736101618802 2.703545425129174 -13.05627938838025 2.693279914947971 -12.89672430793186 2.762872853923474 -12.19621419338813 -3.684683831107974 -12.34837655016544 -3.693618841669041 -12.21688517931147 -3.618338602904815 13.52284187905048 5.523094335233549 13.37838441657597 5.48770221991789 13.35008403691579 5.538833514885466 12.60409722057998 -0.5763447567548026 12.43202657391812 -0.6418225141774961 12.43030801490067 -0.5701359906933247 13.63883762063815 -5.44721725469206 13.61380770682593 -5.500387588420982 13.46647062975505 -5.471246767751426 -15.08284575239363 0.9023122650785057 -15.2208774698849 0.8263693256048723 -15.21501108736677 0.8877044396126678 -14.65558630309197 -2.228513104774374 -14.53488429669925 -2.213259457727746 -14.64810175579504 -2.296567850615621 15.48587450658961 -0.7072889677386613 15.47663886213827 -0.7625814925174052 15.35059687589667 -0.7279832370859108 14.77712889439435 -0.4739337402526738 14.92580542114912 -0.4136680383010598 14.92845178059544 -0.4853370795224028 14.77695868621397 -0.4736855870769765 14.77440434565205 -0.4020301011265953 14.92563528444638 -0.4134199942503872 13.36315811661996 -5.505850708264952 13.49142853853721 -5.534852926611777 13.31854127327991 -5.55644589682683 -15.14308331136975 0.8222650216642411 -15.15942011753485 0.7608371691472305 -15.28002369432089 0.7451090954453021 -14.56682633686609 -2.158250207633158 -14.54812640721705 -2.226936965939771 -14.68036973337736 -2.241283632392268 15.50191653252 -0.3450732201808038 15.36745057636905 -0.3688165363621706 15.35690532506454 -0.3091914489386688 15.10021536284021 -0.3662279915260838 15.23111772726949 -0.311193799246996 15.23428652672321 -0.3828340980822404 14.88976637221621 -2.875499185090969 14.8619901803013 -2.933069444389281 14.73653897341562 -2.889690282496022 -14.73496300520511 -1.949911756351197 -14.85116097744007 -2.033151742686197 -14.85344805127599 -1.970419707572393 -15.37266981255824 -0.1985636265403373 -15.26515227565445 -0.1783591027017222 -15.36906792625269 -0.2687508349277519 12.27637969665627 -6.961895664635397 12.17219897658405 -6.913142028974974 12.30988240291489 -6.907772124465024 12.37290369012539 -6.930466342006296 12.23526761316119 -6.936541147100408 12.25557413188744 -6.876797102240095 15.09650646155816 -0.3604887175889291 15.09200202514185 -0.2888728323966503 15.22740726568313 -0.3054522286639152 14.73133013411215 -2.925839927156168 14.84129018010756 -2.9661607923514 14.68786685384163 -2.978975091679462 -14.66064124112387 -2.109733152076942 -14.66851274842569 -2.172785016023917 -14.77574424471845 -2.193909326829141 -15.25747024489183 -0.07495710939616335 -15.24382004786392 -0.1449260058766786 -15.36243409627423 -0.1645962231422714 6.03386172741644 -10.21767282582687 5.932457171360901 -10.16317404452643 6.087589634298196 -10.17252724470024 12.41157018994403 -0.4297672803806035 12.54237962024552 -0.3805204047709608 12.54695424854139 -0.45213353650516 15.09487387640644 0.3974383334978142 15.23201612814255 0.397254742927811 15.20902571872694 0.3367131686311351 -10.98712584533499 -4.849561545362082 -10.86929883635138 -4.822741124821027 -10.97273312875936 -4.911896830158986 -13.70457250306834 2.417609427095513 -13.59478112626419 2.443397062640642 -13.71013437721912 2.346956678822359 -13.49038788234305 2.465709305726437 -13.48832815351597 2.395756007580745 -13.60668383318516 2.369972128742379 5.782375216031333 -10.40676227272839 5.823411415695212 -10.35564304221167 5.937382259001554 -10.41732418404963 12.40484663768798 -0.4187945576933733 12.4008708050482 -0.3469914029424408 12.53565653467715 -0.3695484492197242 15.13090356342597 0.4350627298086503 15.23190260217394 0.3803072128496608 15.09476031670884 0.3804744861507038 -10.73780554325371 -4.944639933453256 -10.73104969928929 -5.007569784255614 -10.84045410968247 -5.034355851595636 -9.544941499632319 4.142377734180887 -9.680805060016205 4.042950024687994 -9.665164420806672 4.111831819762289 0.6340271569205269 -10.61879292461714 0.5178530618738975 -10.56192998465888 0.6933256189549752 -10.58033198874102 7.648286092361099 -0.5932042054774838 7.795185560238386 -0.5498439571936551 7.798488689745046 -0.6216682097405024 13.96258039388776 3.981724190343859 14.09535019572185 3.965280020489766 14.08135721185337 3.904723252982765 -5.68787695437435 -5.867931290295552 -5.711654345374643 -5.807610991094385 -5.580829653580337 -5.775862177318796 -5.332142741039728 -5.996186471919412 -5.452028763627292 -6.027541099610095 -5.345984512023594 -5.934756433926544 -9.394812668832024 4.086181564035421 -9.400396586560289 4.018375566797347 -9.531433494290146 3.987398087419543 0.2881168626483132 -10.8232904406098 0.3327333124216058 -10.77852803635801 0.4632568442969797 -10.84355849880215 7.627901409660059 -0.5507444676405745 7.625155506600297 -0.4790841097123246 7.774802930959926 -0.5073885247506258 13.87626745298261 4.058762996429186 13.90304203644856 4.111682936716666 14.00931740778716 4.043785504780377 -0.9698620582504997 -5.703973797750612 -0.9948800152954102 -5.644771743493748 -0.8456732788253712 -5.608985438806956 -5.04138747325854 4.478234045003741 -5.023010081853935 4.544626420326458 -4.885790544153968 4.578818331596664 -3.376904130188155 -9.926194395710335 -3.513791243313864 -9.867290261457155 -3.321215758343276 -9.88991210647607 3.017333138410127 -0.6803795545526759 2.846773855884061 -0.6470782813351531 3.015372274814703 -0.6087032437720168 11.31461462182813 7.090698705791401 11.4564464843799 7.059023992830101 11.44972926712058 7.002312147853783 11.03056301613796 7.181508993779926 11.05159541727096 7.229415296301694 11.1733965499343 7.152754351899574 -0.6658258923951649 -5.77688512985852 -0.8027353016488087 -5.811837926182647 -0.6791679499268127 -5.716349355206121 -4.727218536967268 4.400324955167648 -4.8767743732512 4.365339340919428 -4.720554650599593 4.465324443450634 -3.729793439227283 -10.11161655929486 -3.691401246021242 -10.06927678307762 -3.537596747270898 -10.13615110308193 3.015019654902513 -0.6077477474185807 2.846421200780263 -0.6461226893006792 2.844465769389484 -0.5744543267382288 7.82491077220336 9.18999813771053 7.984347672989259 9.146423658150694 7.978585978662852 9.095943729765835 2.825096377434917 -5.193458104746092 2.8038177485176 -5.134343466934438 2.969403087866285 -5.095571713750636 -0.8454049309525047 4.285268214793661 -0.8300058803818644 4.349343699075141 -0.6777035027097456 4.386105891731725 -6.569442722241135 -8.899328438531347 -6.723836593058756 -8.838369739939827 -6.522497025377552 -8.86270961001396 -1.027675897030994 -0.704612100157213 -1.216626362265736 -0.6675837535635272 -1.028862602917045 -0.6329333098865464 -1.028429339557004 -0.6343843110642063 -1.216193054719459 -0.6690349029146713 -1.217356860704336 -0.5973422587712638 7.340454447088572 9.18473470243754 7.362364140986393 9.225822791546465 7.501683731484558 9.145453024682254 3.145397483662717 -5.267752515487297 2.993451021536473 -5.305415116969103 3.137146591433285 -5.206973925027834 -0.5400141202644004 4.200873842161887 -0.7059185647481259 4.163000414839618 -0.5377639419120495 4.263369951674332 -6.910651649969095 -9.049178393484784 -6.883447650120314 -9.006211694656061 -6.709683305598594 -9.07534805653305 -4.453739812752393 -0.673887341422711 -4.652989865808114 -0.6347214635370874 -4.454185056034181 -0.6021897073338043 4.190344325497041 10.32043007936972 4.367608418376572 10.26886391022222 4.356303897407086 10.2252036951963 6.057360411496986 -4.675126088168224 6.042488942533275 -4.615131902889079 6.217248163624792 -4.573643703816179 2.745187890173904 3.974617698687972 2.753889331227458 4.036763022297162 2.914592259355919 4.074978758843405 -9.325165683557737 -7.693027677857053 -9.488916831716066 -7.63025419934652 -9.289703949787167 -7.65396491464223 -9.63626064291622 -7.783806612308135 -9.621840946052661 -7.738118920868959 -9.437370037509659 -7.809136345732454 -4.456148911123684 -0.5947595445543384 -4.65495392669866 -0.6272905224453702 -4.655444342175763 -0.5556065241597588 3.360497516967772 10.0837563652402 3.388642207661477 10.11861295671525 3.540872736891919 10.0393659888867 6.364273555500626 -4.731065156888241 6.203977729599966 -4.770324712202349 6.363293284226373 -4.668286951436723 3.027149084833707 3.910056709996752 2.852061020894742 3.870518301492106 3.02179588809579 3.970533196939693 -11.79847206291671 -6.183676269876259 -11.9613470528831 -6.119953793488703 -11.774525862427 -6.140534852155146 -7.530723493352798 -0.5944756733336493 -7.729303575854914 -0.5554328541028434 -7.530521995348592 -0.5227908121643355 0.3370638904271806 10.68415226208111 0.5269096477277668 10.63207285568546 0.5066794352907478 10.59396886554546 8.962634518807981 -4.136922198784777 8.955002512906784 -4.074426986196031 9.129446717033083 -4.034557490062549 5.911330168665807 3.724138605218663 5.911513487134059 3.784761362705865 6.071809441965142 3.82318923896752 6.202369586795212 3.646891088741236 6.027616141963214 3.607158535332953 6.188470493961638 3.705831943974747 -12.0739932164062 -6.211992837790632 -12.07077395120753 -6.162428167095074 -11.88744252521079 -6.234040089218626 -7.522291528342579 -0.553886035913332 -7.721072119037555 -0.586531807834816 -7.720791637710336 -0.5144784421199378 0.007504092126482398 10.52882807230201 0.04682647160282105 10.55818404921214 0.1985990434058815 10.47965718881442 9.237830477681218 -4.164036425076068 9.077972098535717 -4.203576236362054 9.244267679995579 -4.100692661614889 8.872217854548568 3.476976523384762 8.863914571162766 3.536566034327765 9.015162431649493 3.57387516861083 -14.07468187064337 -4.033398539612293 -13.90724954969449 -4.049060944033338 -13.92291557286726 -4.09713578804043 -10.35237831463158 -0.5118062827308205 -10.5407083867405 -0.4735357372673448 -10.35132834301624 -0.4397573135773165 -2.114721840026888 10.72574737364265 -2.269963036006161 10.81789606209527 -2.080415184287394 10.75876728321423 11.64221593525102 -3.447685572813448 11.64111947051411 -3.384145571355619 11.80564094646939 -3.344515362532484 11.89115932281014 -3.446110781665308 11.74037045522237 -3.48455247238597 11.90322137684379 -3.380822008952721 9.148618889796934 3.403099226540594 8.983694086315714 3.364581703044573 9.127054287006649 3.461099618686497 -14.12770915990698 -4.046415067460084 -14.13183652635171 -3.99072261790696 -13.96042934922502 -4.063055412625169 -10.35639500277101 -0.4220725563315408 -10.54577576789361 -0.4558484769781266 -10.54480610601822 -0.3841617976162464 -2.967831741841932 10.44882560332407 -2.916065774234811 10.47381856075407 -2.77531516961091 10.39596453232755 13.99776000856275 -2.351036041630497 13.99993335183557 -2.285083495011548 14.14750912604804 -2.248086677132897 11.73893395218349 3.070107912156248 11.72423158084615 3.129421138109455 11.85987446586462 3.164495207897467 -15.36615484406754 -1.11152892677551 -15.21898742551485 -1.1179613835451 -15.23224793414486 -1.172764419650652 -13.03841839753838 -0.344525156737945 -13.20747791172357 -0.3099418533609996 -13.0366446559998 -0.27284799942994 -5.044529322881477 10.46419534326874 -5.176394091894054 10.55437218277403 -4.997235224268471 10.49417510118767 -5.942736660151951 10.0878392685903 -5.881162255682046 10.11053496282436 -5.760072536994693 10.03455869673605 14.21841670250299 -2.303105043589105 14.08321040442646 -2.339207235243235 14.23211411894402 -2.23550179311217 11.97946280401635 3.008192950811849 11.83151071848079 2.972138415474863 11.9529190204441 3.066153331737504 -15.37253476758558 -1.087710750677238 -15.37686103107155 -1.026099469526584 -15.22539739965658 -1.094555426461536 -13.03892074894272 -0.2662782497109539 -13.20975442471094 -0.303370906474995 -13.20802230937834 -0.2316883661006361 -8.01519210529187 9.762768674362446 -8.117828381545795 9.851650911232564 -7.95822034332968 9.791970590795909 15.40644264244356 -0.4896987443385565 15.40626948300709 -0.4212422762021754 15.53493491447027 -0.3882142377729557 14.3019859158781 2.068117515668397 14.28538395745249 2.128324305041223 14.40341528993963 2.160318544062168 -15.06280433743487 2.596781799116851 -14.92785237912183 2.601214141968385 -14.94708383215803 2.54139229198745 -15.08440682962398 -0.09759145962411998 -15.08695336810553 -0.1692589567737261 -15.23482152814353 -0.1393237032180684 -15.2310784703 -0.07032863462336783 -15.08325310146444 -0.1002600127068801 -15.2336673640194 -0.1419932287022291 -8.923501571659722 9.278233095447522 -8.855796036394333 9.300928013876968 -8.759788426160879 9.225884569880648 15.42269730208561 -0.39456208251547 15.55007824759031 -0.2922142497577432 15.54050299736091 -0.3620572786078744 14.50501102834022 1.991793463294441 14.37605372091801 1.959178835531572 14.4781972508869 2.050890668485262 -15.07494915176085 2.625073435839844 -15.07137148952717 2.691017551110971 -14.94001271801862 2.629789213653717 -15.24023466630929 0.01803061193403345 -15.24349337565169 -0.05361706873139931 -15.37764112986811 -0.02923312204259128 -11.17379038783902 8.218058979555096 -11.24756867238939 8.306854805425431 -11.11232677730228 8.249902524780154 14.6081143939815 2.072982524136852 14.59947076634131 2.142900707743456 14.71552135142038 2.170538218250184 15.57040072192249 -0.2015423709642447 15.55893652538407 -0.1394450099388824 15.66290714972646 -0.1114443365707351 -12.64746675036222 6.172275617075066 -12.5091305573086 6.188161280253866 -12.53966240365795 6.126682304290108 -12.73189783878665 6.283132119631011 -12.60942599573926 6.233646763938713 -12.7475672144483 6.216743695442649 -15.38322178452326 0.06278446206338052 -15.25195648521375 0.03849111662281274 -15.38935982458751 -0.008778237746010326 -11.93999354397293 7.643712140944677 -11.87219872278999 7.670434827113372 -11.80049347675016 7.593516752301118 14.52374127858401 2.205489717281069 14.63017203523485 2.303705277816539 14.62795696542006 2.232920814541139 15.55506445802076 -0.398258729183709 15.64945297891789 -0.3093769257399935 15.67214967852244 -0.370203149261651 -8.54839110278726 8.623242911206008 -8.589500730286041 8.563967964495342 -8.700307001582862 8.597641665084741 -12.22809598385107 -0.09508996753259236 -12.23432484395121 -0.16664781085706 -12.36659450222033 -0.1482874482510324 -14.62849232864295 4.428383040986871 -14.69572068029503 4.522497691729503 -14.57502755675156 4.470684822090064 11.0588119608929 4.221626283973954 11.04193421389389 4.291176220129056 11.15893122799804 4.312494179033167 13.44597960504432 -3.733615678859734 13.445262070515 -3.670225596935286 13.55448063631427 -3.647351842270001 13.49857814533701 -3.720427902630387 13.60666369526593 -3.633841888280487 13.61377027345967 -3.697612960420056 -8.903997383667488 8.791884335880527 -8.777518133577825 8.75632742511168 -8.928936755413485 8.728963743272056 -12.39797464456105 -0.02042396311228745 -12.26276181108309 -0.0388765674941793 -12.40126288542828 -0.09206992995855183 -15.06807793567746 3.327135604180729 -15.19446933123039 3.369718094183054 -15.13578257508136 3.405165420796467 10.82084241768013 4.550793100853755 10.71123706296746 4.529094472234048 10.80957153275353 4.621160583629894 8.805237495214664 -5.898225281103608 8.819235838540205 -5.835163893416791 8.937363221363 -5.81793122585713 -4.453527643237622 9.680031307379561 -4.498312116988717 9.624329240474673 -4.626853244536841 9.647559187348119 -7.224473656264715 -0.2024561136401654 -7.227198864023237 -0.2741167013485265 -7.375326410588214 -0.2614713567053737 -14.97807478769535 -3.841003856061851 -15.00147562983513 -3.896221771046057 -15.10724005825326 -3.813608743486643 6.276395569442173 5.09478813808756 6.250346440124336 5.162687143151492 6.380813558265123 5.177848294284729 6.448964633867097 5.068582522850016 6.330528176182517 5.052716917275782 6.435123530158036 5.135638856122859 8.342396197105265 -5.694778516819682 8.476463380671603 -5.616501348129942 8.472700910110687 -5.678743244827615 -4.895891510749848 9.947554121826881 -4.749827945594436 9.92440957229512 -4.922464054724919 9.889738886876938 -7.373465903498186 -0.1885022018947242 -7.225290927097896 -0.2011567483559721 -7.376143774493156 -0.2601718441936091 -14.65676718015812 -4.490675852808604 -14.7877524968433 -4.469287118161665 -14.75521375002407 -4.421639961685035 1.890563509546316 4.809123824166695 1.866074027419942 4.874269546670157 2.01553007700042 4.884200158116475 3.205939475569675 -6.111452539562135 3.224393110308801 -6.050854891290597 3.361615865019676 -6.039258929326409 -0.7676884958980825 9.900145880226742 -0.8094506093732026 9.848181883736482 -0.9583344481684544 9.863219009824517 -2.410832530329938 -0.3910235908288219 -2.580269533082864 -0.3833634786129642 -2.408929256897106 -0.3193386298986475 -7.288700934033111 -10.87408448590869 -7.273930193533063 -10.92690918877539 -7.434462179179099 -10.88366059278024 -7.538791827017521 -10.66346199697339 -7.684743928740911 -10.67102819840123 -7.679508861739828 -10.62262207251408 1.897682384418705 4.937667855919856 1.760377070360397 4.926693325757354 1.885030845884099 5.002090771446181 3.234235649934867 -5.987639309513234 3.084720048396567 -5.998101243428897 3.240747746919706 -5.926378505588351 -1.247557829743616 10.23691422319599 -1.078699202127026 10.22350670569535 -1.268577676296933 10.18420882195949 -2.408527616989741 -0.3200047225100269 -2.579867831331792 -0.3840296736449853 -2.577933338039743 -0.3123496115177421 -0.1685220150025957 -12.08770164830406 -0.1446461954825252 -12.13250497194081 -0.3318065003090365 -12.11634038522847 -1.780495169689983 4.445768895739395 -1.800346714957548 4.509057825016537 -1.634216421094819 4.515306213592063 -1.080275376123639 -5.703996468393416 -1.063767000879461 -5.64390921346938 -0.911210693614315 -5.636017390377594 2.471362890751208 9.709100619462886 2.438145264634871 9.660433934430397 2.272222755839425 9.669892737749537 1.529057938430958 -0.4425775669875655 1.34081722078492 -0.4386474684998436 1.530233880554405 -0.3708873206268546 1.527581115267748 -0.3663096835725314 1.338163965121219 -0.4340689831274146 1.33936191560301 -0.3623967585573739 -0.7939552681231509 -11.89726344824159 -0.9585061737584809 -11.92099627409395 -0.9583251256377255 -11.877285930713 -1.74951115256183 4.58606532944532 -1.902094216453603 4.578500389517765 -1.756065214724875 4.64836179546472 -1.026835607588378 -5.555860976960113 -1.192986144613087 -5.562388518878315 -1.023645774281973 -5.494835425090695 1.946084829015014 10.11428880389738 2.134194195256248 10.10750369521477 1.935938164111682 10.06561476524944 4.762085798310935 -0.4406358202106993 4.563064811535311 -0.4388283180180524 4.762582902347806 -0.3689584671257234 4.19983081160802 -11.41623606602867 4.216821345354481 -11.45785297941772 4.017903272249143 -11.45192303901008 -4.917063727231247 4.131394648990662 -4.929452754842037 4.193139668179431 -4.753712636422665 4.197401429665823 -4.492741562457353 -5.146055132008041 -4.482032521215455 -5.085561798002201 -4.320660257068589 -5.079657241423282 5.364420454192764 9.355961710715812 5.343439849295003 9.309480870318586 5.167854397829749 9.316065540823772 4.823660435379992 9.77986002874316 5.0226533164348 9.776667890444797 4.827055427473608 9.733928360193522 4.760280236867404 -0.3649140410248083 4.56076166476567 -0.4347830413995857 4.561232822824662 -0.3630946259172963 3.616651290194356 -11.30236390770575 3.433215122456619 -11.33290002050897 3.441399704503314 -11.29121597308221 -4.865623919993504 4.273635316650265 -5.027006713256696 4.267911615617678 -4.863874081670242 4.334251898799096 -4.397171470467212 -5.028050408533186 -4.572867515688794 -5.032445412914375 -4.400598281005675 -4.966349783325662</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"2670\" source=\"#ID1741\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1737\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1735\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1736\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"890\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 0 4 2 5 1 6 8 7 9 8 1 9 0 10 12 11 14 12 15 13 16 14 6 15 2 16 20 17 9 18 8 19 22 20 1 21 24 22 8 23 26 24 27 25 15 26 30 27 1 28 12 29 14 30 16 31 32 32 26 33 15 34 14 35 6 36 20 37 34 38 36 39 9 40 22 41 38 42 39 43 40 44 39 45 44 46 45 47 24 48 1 49 30 50 48 51 27 52 26 53 30 54 12 55 50 56 52 57 53 58 54 59 16 60 58 61 32 62 53 63 60 64 61 65 34 66 20 67 64 68 36 69 22 70 66 71 68 72 38 73 40 74 39 75 45 76 40 77 44 78 52 79 45 80 70 81 24 82 30 83 61 84 72 85 73 86 48 87 76 88 27 89 78 90 30 91 50 92 52 93 54 94 80 95 52 96 60 97 53 98 32 99 58 100 82 101 60 102 72 103 61 104 34 105 64 106 84 107 64 108 36 109 66 110 86 111 38 112 68 113 88 114 89 115 90 116 80 117 94 118 88 119 44 120 96 121 52 122 70 123 30 124 78 125 72 126 98 127 73 128 100 129 76 130 48 131 78 132 50 133 102 134 80 135 54 136 94 137 96 138 60 139 52 140 58 141 104 142 82 143 106 144 72 145 60 146 84 147 64 148 108 149 66 150 110 151 64 152 112 153 86 154 68 155 90 156 89 157 114 158 88 159 94 160 89 161 116 162 70 163 78 164 118 165 98 166 72 167 73 168 98 169 120 170 100 171 122 172 76 173 124 174 78 175 102 176 96 177 106 178 60 179 104 180 126 181 82 182 106 183 118 184 72 185 84 186 108 187 128 188 110 189 108 190 64 191 112 192 130 193 86 194 90 195 114 196 132 197 134 198 135 199 126 200 116 201 78 202 124 203 118 204 138 205 98 206 98 207 140 208 120 209 142 210 122 211 100 212 124 213 102 214 144 215 104 216 134 217 126 218 146 219 116 220 124 221 108 222 148 223 128 224 110 225 150 226 108 227 152 228 130 229 112 230 154 231 132 232 114 233 134 234 156 235 135 236 158 237 146 238 159 239 138 240 140 241 98 242 120 243 140 244 162 245 142 246 164 247 122 248 159 249 124 250 144 251 146 252 124 253 159 254 148 255 166 256 128 257 150 258 148 259 108 260 152 261 168 262 130 263 170 264 132 265 154 266 156 267 172 268 135 269 158 270 159 271 174 272 176 273 140 274 138 275 140 276 178 277 162 278 142 279 180 280 164 281 159 282 144 283 182 284 148 285 184 286 166 287 150 288 186 289 148 290 188 291 168 292 152 293 190 294 170 295 154 296 156 297 192 298 172 299 174 300 159 301 182 302 194 303 158 304 174 305 176 306 178 307 140 308 162 309 178 310 196 311 180 312 198 313 164 314 184 315 200 316 166 317 186 318 184 319 148 320 188 321 202 322 168 323 188 324 170 325 190 326 192 327 204 328 172 329 174 330 182 331 206 332 194 333 174 334 208 335 210 336 178 337 176 338 178 339 212 340 196 341 180 342 214 343 198 344 184 345 216 346 200 347 186 348 218 349 184 350 220 351 202 352 188 353 222 354 188 355 190 356 192 357 224 358 204 359 214 360 226 361 198 362 208 363 174 364 206 365 228 366 194 367 208 368 210 369 212 370 178 371 196 372 212 373 230 374 216 375 232 376 200 377 218 378 216 379 184 380 220 381 234 382 202 383 220 384 188 385 222 386 224 387 236 388 204 389 214 390 238 391 226 392 208 393 206 394 240 395 228 396 208 397 242 398 244 399 212 400 210 401 230 402 212 403 246 404 216 405 248 406 232 407 218 408 250 409 216 410 220 411 252 412 234 413 254 414 220 415 222 416 256 417 236 418 224 419 258 420 230 421 246 422 238 423 260 424 226 425 208 426 240 427 242 428 262 429 228 430 242 431 244 432 264 433 212 434 248 435 266 436 232 437 250 438 248 439 216 440 252 441 268 442 234 443 252 444 220 445 254 446 256 447 270 448 236 449 258 450 246 451 272 452 238 453 274 454 260 455 242 456 240 457 276 458 262 459 242 460 278 461 280 462 264 463 244 464 248 465 282 466 266 467 250 468 284 469 248 470 252 471 286 472 268 473 288 474 252 475 254 476 290 477 270 478 256 479 272 480 264 481 280 482 292 483 258 484 272 485 274 486 294 487 260 488 242 489 276 490 296 491 298 492 262 493 278 494 282 495 300 496 266 497 284 498 282 499 248 500 286 501 302 502 268 503 286 504 252 505 288 506 290 507 304 508 270 509 272 510 280 511 306 512 292 513 272 514 308 515 274 516 310 517 294 518 296 519 276 520 312 521 298 522 278 523 314 524 282 525 316 526 300 527 284 528 318 529 282 530 286 531 320 532 302 533 322 534 286 535 288 536 324 537 304 538 290 539 298 540 314 541 326 542 308 543 272 544 306 545 328 546 292 547 308 548 294 549 310 550 330 551 314 552 296 553 312 554 316 555 332 556 300 557 318 558 316 559 282 560 320 561 334 562 302 563 320 564 286 565 322 566 324 567 336 568 304 569 326 570 314 571 338 572 308 573 306 574 340 575 328 576 308 577 342 578 330 579 310 580 344 581 314 582 312 583 346 584 316 585 348 586 332 587 350 588 316 589 318 590 320 591 352 592 334 593 322 594 354 595 320 596 356 597 336 598 324 599 338 600 314 601 346 602 326 603 338 604 358 605 342 606 308 607 340 608 360 609 328 610 342 611 330 612 344 613 362 614 348 615 364 616 332 617 350 618 366 619 316 620 352 621 368 622 334 623 354 624 352 625 320 626 370 627 336 628 356 629 338 630 346 631 372 632 358 633 338 634 374 635 342 636 340 637 376 638 342 639 378 640 360 641 362 642 344 643 380 644 348 645 382 646 364 647 384 648 366 649 350 650 352 651 386 652 368 653 354 654 388 655 352 656 390 657 370 658 356 659 362 660 380 661 392 662 374 663 338 664 372 665 394 666 358 667 374 668 378 669 342 670 376 671 360 672 378 673 396 674 382 675 398 676 364 677 384 678 400 679 366 680 386 681 402 682 368 683 388 684 386 685 352 686 404 687 370 688 390 689 392 690 380 691 406 692 374 693 372 694 408 695 394 696 374 697 410 698 378 699 376 700 412 701 378 702 414 703 396 704 416 705 398 706 382 707 384 708 418 709 400 710 386 711 420 712 402 713 388 714 422 715 386 716 404 717 390 718 424 719 396 720 414 721 426 722 392 723 406 724 428 725 410 726 374 727 408 728 430 729 394 730 410 731 414 732 378 733 412 734 416 735 432 736 398 737 418 738 416 739 400 740 402 741 420 742 434 743 422 744 420 745 386 746 436 747 404 748 424 749 414 750 438 751 426 752 428 753 406 754 440 755 410 756 408 757 442 758 430 759 410 760 444 761 414 762 412 763 446 764 448 765 432 766 416 767 418 768 450 769 416 770 434 771 420 772 452 773 422 774 454 775 420 776 436 777 424 778 456 779 438 780 414 781 446 782 426 783 438 784 458 785 428 786 440 787 460 788 444 789 410 790 442 791 462 792 430 793 444 794 448 795 464 796 432 797 450 798 448 799 416 800 434 801 452 802 466 803 454 804 452 805 420 806 468 807 436 808 456 809 438 810 446 811 470 812 438 813 472 814 458 815 460 816 440 817 474 818 444 819 442 820 476 821 462 822 444 823 478 824 448 825 480 826 464 827 450 828 482 829 448 830 466 831 452 832 484 833 486 834 452 835 454 836 468 837 456 838 488 839 490 840 462 841 478 842 438 843 470 844 472 845 458 846 472 847 492 848 494 849 460 850 474 851 478 852 444 853 476 854 480 855 496 856 464 857 482 858 480 859 448 860 466 861 484 862 498 863 484 864 452 865 486 866 500 867 468 868 488 869 490 870 478 871 502 872 472 873 470 874 504 875 472 876 506 877 492 878 494 879 474 880 508 881 478 882 476 883 510 884 480 885 512 886 496 887 482 888 514 889 480 890 498 891 484 892 516 893 518 894 484 895 486 896 500 897 488 898 520 899 502 900 478 901 510 902 522 903 490 904 502 905 472 906 504 907 524 908 492 909 506 910 526 911 528 912 494 913 508 914 512 915 530 916 496 917 514 918 512 919 480 920 498 921 516 922 532 923 516 924 484 925 518 926 534 927 500 928 520 929 502 930 510 931 536 932 522 933 502 934 538 935 524 936 504 937 540 938 506 939 542 940 526 941 528 942 508 943 544 944 512 945 546 946 530 947 514 948 548 949 512 950 532 951 516 952 550 953 552 954 516 955 518 956 534 957 520 958 554 959 556 960 528 961 544 962 538 963 502 964 536 965 558 966 522 967 538 968 524 969 540 970 560 971 526 972 542 973 562 974 546 975 564 976 530 977 548 978 546 979 512 980 566 981 532 982 550 983 550 984 516 985 552 986 534 987 554 988 568 989 556 990 544 991 570 992 572 993 538 994 536 995 558 996 538 997 574 998 560 999 540 1000 576 1001 578 1002 562 1003 542 1004 546 1005 580 1006 564 1007 548 1008 582 1009 546 1010 566 1011 550 1012 584 1013 586 1014 550 1015 552 1016 568 1017 554 1018 588 1019 578 1020 590 1021 562 1022 592 1023 556 1024 570 1025 572 1026 574 1027 538 1028 594 1029 558 1030 574 1031 560 1032 576 1033 596 1034 580 1035 598 1036 564 1037 582 1038 580 1039 546 1040 600 1041 566 1042 584 1043 584 1044 550 1045 586 1046 568 1047 588 1048 602 1049 604 1050 590 1051 578 1052 592 1053 570 1054 606 1055 608 1056 574 1057 572 1058 574 1059 610 1060 594 1061 576 1062 612 1063 596 1064 580 1065 614 1066 598 1067 582 1068 616 1069 580 1070 600 1071 584 1072 618 1073 620 1074 584 1075 586 1076 602 1077 588 1078 622 1079 596 1080 612 1081 624 1082 604 1083 626 1084 590 1085 628 1086 592 1087 606 1088 608 1089 630 1090 574 1091 610 1092 632 1093 594 1094 614 1095 634 1096 598 1097 616 1098 614 1099 580 1100 636 1101 600 1102 618 1103 618 1104 584 1105 620 1106 602 1107 622 1108 638 1109 612 1110 640 1111 624 1112 642 1113 626 1114 604 1115 644 1116 628 1117 606 1118 608 1119 646 1120 630 1121 610 1122 648 1123 632 1124 614 1125 650 1126 634 1127 614 1128 616 1129 652 1130 636 1131 618 1132 654 1133 656 1134 618 1135 620 1136 638 1137 622 1138 658 1139 648 1140 660 1141 632 1142 640 1143 662 1144 624 1145 642 1146 664 1147 626 1148 666 1149 628 1150 644 1151 646 1152 668 1153 630 1154 650 1155 670 1156 634 1157 614 1158 652 1159 650 1160 672 1161 636 1162 654 1163 674 1164 618 1165 656 1166 638 1167 658 1168 676 1169 678 1170 660 1171 648 1172 640 1173 680 1174 662 1175 682 1176 664 1177 642 1178 684 1179 666 1180 644 1181 646 1182 686 1183 668 1184 670 1185 650 1186 688 1187 650 1188 652 1189 690 1190 672 1191 654 1192 692 1193 674 1194 656 1195 694 1196 658 1197 696 1198 676 1199 686 1200 678 1201 668 1202 678 1203 698 1204 660 1205 680 1206 682 1207 662 1208 682 1209 700 1210 664 1211 684 1212 702 1213 666 1214 704 1215 670 1216 688 1217 650 1218 690 1219 706 1220 708 1221 672 1222 692 1223 674 1224 694 1225 710 1226 676 1227 696 1228 712 1229 678 1230 686 1231 714 1232 698 1233 678 1234 716 1235 680 1236 718 1237 682 1238 682 1239 720 1240 700 1241 722 1242 702 1243 684 1244 704 1245 688 1246 724 1247 706 1248 690 1249 726 1250 708 1251 692 1252 728 1253 710 1254 694 1255 730 1256 696 1257 732 1258 712 1259 722 1260 734 1261 702 1262 716 1263 678 1264 714 1265 736 1266 698 1267 716 1268 718 1269 720 1270 682 1271 700 1272 720 1273 738 1274 704 1275 724 1276 740 1277 742 1278 706 1279 726 1280 744 1281 708 1282 728 1283 710 1284 730 1285 746 1286 712 1287 732 1288 748 1289 750 1290 734 1291 722 1292 716 1293 714 1294 752 1295 736 1296 716 1297 754 1298 718 1299 756 1300 720 1301 720 1302 758 1303 738 1304 740 1305 724 1306 760 1307 742 1308 726 1309 762 1310 764 1311 744 1312 728 1313 746 1314 730 1315 766 1316 732 1317 768 1318 748 1319 738 1320 758 1321 770 1322 750 1323 772 1324 734 1325 754 1326 716 1327 752 1328 774 1329 736 1330 754 1331 756 1332 758 1333 720 1334 740 1335 760 1336 776 1337 760 1338 742 1339 762 1340 778 1341 744 1342 764 1343 746 1344 766 1345 780 1346 768 1347 782 1348 748 1349 758 1350 784 1351 770 1352 786 1353 772 1354 750 1355 754 1356 752 1357 788 1358 774 1359 754 1360 790 1361 756 1362 792 1363 758 1364 776 1365 760 1366 794 1367 762 1368 796 1369 760 1370 798 1371 778 1372 764 1373 800 1374 780 1375 766 1376 768 1377 802 1378 782 1379 792 1380 784 1381 758 1382 770 1383 784 1384 804 1385 786 1386 806 1387 772 1388 790 1389 754 1390 788 1391 808 1392 774 1393 790 1394 776 1395 794 1396 810 1397 796 1398 794 1399 760 1400 798 1401 812 1402 778 1403 814 1404 780 1405 800 1406 802 1407 816 1408 782 1409 792 1410 818 1411 784 1412 784 1413 820 1414 804 1415 822 1416 806 1417 786 1418 790 1419 788 1420 824 1421 808 1422 790 1423 826 1424 794 1425 828 1426 810 1427 796 1428 830 1429 794 1430 832 1431 812 1432 798 1433 834 1434 814 1435 800 1436 802 1437 836 1438 816 1439 838 1440 808 1441 826 1442 818 1443 820 1444 784 1445 804 1446 820 1447 840 1448 822 1449 842 1450 806 1451 826 1452 790 1453 824 1454 828 1455 844 1456 810 1457 830 1458 828 1459 794 1460 832 1461 846 1462 812 1463 848 1464 814 1465 834 1466 836 1467 850 1468 816 1469 838 1470 826 1471 852 1472 854 1473 820 1474 818 1475 820 1476 856 1477 840 1478 822 1479 858 1480 842 1481 826 1482 824 1483 860 1484 828 1485 862 1486 844 1487 830 1488 864 1489 828 1490 866 1491 846 1492 832 1493 868 1494 848 1495 834 1496 836 1497 870 1498 850 1499 852 1500 826 1501 860 1502 872 1503 838 1504 852 1505 854 1506 856 1507 820 1508 840 1509 856 1510 874 1511 858 1512 876 1513 842 1514 862 1515 878 1516 844 1517 864 1518 862 1519 828 1520 866 1521 880 1522 846 1523 866 1524 848 1525 868 1526 870 1527 882 1528 850 1529 852 1530 860 1531 884 1532 872 1533 852 1534 886 1535 888 1536 856 1537 854 1538 856 1539 890 1540 874 1541 858 1542 892 1543 876 1544 862 1545 894 1546 878 1547 864 1548 896 1549 862 1550 898 1551 880 1552 866 1553 900 1554 866 1555 868 1556 870 1557 902 1558 882 1559 892 1560 904 1561 876 1562 886 1563 852 1564 884 1565 906 1566 872 1567 886 1568 888 1569 890 1570 856 1571 874 1572 890 1573 908 1574 894 1575 910 1576 878 1577 896 1578 894 1579 862 1580 898 1581 912 1582 880 1583 898 1584 866 1585 900 1586 902 1587 914 1588 882 1589 892 1590 916 1591 904 1592 886 1593 884 1594 918 1595 906 1596 886 1597 920 1598 922 1599 890 1600 888 1601 908 1602 890 1603 924 1604 894 1605 926 1606 910 1607 896 1608 928 1609 894 1610 898 1611 930 1612 912 1613 932 1614 898 1615 900 1616 934 1617 914 1618 902 1619 936 1620 908 1621 924 1622 916 1623 938 1624 904 1625 886 1626 918 1627 920 1628 940 1629 906 1630 920 1631 922 1632 942 1633 890 1634 926 1635 944 1636 910 1637 928 1638 926 1639 894 1640 930 1641 946 1642 912 1643 930 1644 898 1645 932 1646 934 1647 948 1648 914 1649 936 1650 924 1651 950 1652 916 1653 952 1654 938 1655 920 1656 918 1657 954 1658 940 1659 920 1660 956 1661 958 1662 942 1663 922 1664 926 1665 960 1666 944 1667 928 1668 962 1669 926 1670 930 1671 964 1672 946 1673 966 1674 930 1675 932 1676 968 1677 948 1678 934 1679 950 1680 942 1681 958 1682 970 1683 936 1684 950 1685 952 1686 972 1687 938 1688 920 1689 954 1690 974 1691 940 1692 956 1693 976 1694 960 1695 978 1696 944 1697 962 1698 960 1699 926 1700 964 1701 980 1702 946 1703 964 1704 930 1705 966 1706 968 1707 982 1708 948 1709 950 1710 958 1711 984 1712 970 1713 950 1714 986 1715 952 1716 988 1717 972 1718 974 1719 954 1720 990 1721 976 1722 956 1723 992 1724 960 1725 994 1726 978 1727 962 1728 996 1729 960 1730 964 1731 998 1732 980 1733 1000 1734 964 1735 966 1736 1002 1737 982 1738 968 1739 976 1740 992 1741 1004 1742 986 1743 950 1744 984 1745 1006 1746 970 1747 986 1748 972 1749 988 1750 1008 1751 992 1752 974 1753 990 1754 994 1755 1010 1756 978 1757 996 1758 994 1759 960 1760 998 1761 1012 1762 980 1763 998 1764 964 1765 1000 1766 1002 1767 1014 1768 982 1769 1004 1770 992 1771 1016 1772 986 1773 984 1774 1018 1775 1006 1776 986 1777 1020 1778 1008 1779 988 1780 1022 1781 992 1782 990 1783 1024 1784 994 1785 1026 1786 1010 1787 1028 1788 994 1789 996 1790 998 1791 1030 1792 1012 1793 1000 1794 1032 1795 998 1796 1034 1797 1014 1798 1002 1799 1016 1800 992 1801 1024 1802 1004 1803 1016 1804 1036 1805 1020 1806 986 1807 1018 1808 1038 1809 1006 1810 1020 1811 1008 1812 1022 1813 1040 1814 1026 1815 1042 1816 1010 1817 1028 1818 1044 1819 994 1820 1030 1821 1046 1822 1012 1823 1032 1824 1030 1825 998 1826 1048 1827 1014 1828 1034 1829 1016 1830 1024 1831 1050 1832 1036 1833 1016 1834 1052 1835 1020 1836 1018 1837 1054 1838 1020 1839 1056 1840 1038 1841 1040 1842 1022 1843 1058 1844 1026 1845 1060 1846 1042 1847 1062 1848 1044 1849 1028 1850 1030 1851 1064 1852 1046 1853 1032 1854 1066 1855 1030 1856 1068 1857 1048 1858 1034 1859 1040 1860 1058 1861 1070 1862 1052 1863 1016 1864 1050 1865 1072 1866 1036 1867 1052 1868 1056 1869 1020 1870 1054 1871 1038 1872 1056 1873 1074 1874 1060 1875 1076 1876 1042 1877 1062 1878 1078 1879 1044 1880 1064 1881 1080 1882 1046 1883 1066 1884 1064 1885 1030 1886 1082 1887 1048 1888 1068 1889 1070 1890 1058 1891 1084 1892 1052 1893 1050 1894 1086 1895 1072 1896 1052 1897 1088 1898 1056 1899 1054 1900 1090 1901 1056 1902 1092 1903 1074 1904 1094 1905 1076 1906 1060 1907 1062 1908 1096 1909 1078 1910 1064 1911 1098 1912 1080 1913 1066 1914 1100 1915 1064 1916 1082 1917 1068 1918 1102 1919 1074 1920 1092 1921 1104 1922 1070 1923 1084 1924 1106 1925 1088 1926 1052 1927 1086 1928 1108 1929 1072 1930 1088 1931 1092 1932 1056 1933 1090 1934 1094 1935 1110 1936 1076 1937 1096 1938 1094 1939 1078 1940 1080 1941 1098 1942 1112 1943 1100 1944 1114 1945 1064 1946 1116 1947 1082 1948 1102 1949 1092 1950 1118 1951 1104 1952 1106 1953 1084 1954 1120 1955 1088 1956 1086 1957 1122 1958 1108 1959 1088 1960 1124 1961 1092 1962 1090 1963 1126 1964 1128 1965 1110 1966 1094 1967 1096 1968 1130 1969 1094 1970 1112 1971 1098 1972 1132 1973 1134 1974 1114 1975 1100 1976 1116 1977 1102 1978 1136 1979 1118 1980 1092 1981 1126 1982 1104 1983 1118 1984 1138 1985 1106 1986 1120 1987 1140 1988 1124 1989 1088 1990 1122 1991 1142 1992 1108 1993 1124 1994 1128 1995 1144 1996 1110 1997 1130 1998 1128 1999 1094 2000 1112 2001 1132 2002 1146 2003 1132 2004 1114 2005 1134 2006 1148 2007 1116 2008 1136 2009 1118 2010 1126 2011 1150 2012 1118 2013 1152 2014 1138 2015 1140 2016 1120 2017 1154 2018 1124 2019 1122 2020 1156 2021 1142 2022 1124 2023 1158 2024 1128 2025 1160 2026 1144 2027 1130 2028 1162 2029 1128 2030 1146 2031 1132 2032 1164 2033 1166 2034 1132 2035 1134 2036 1148 2037 1136 2038 1168 2039 1170 2040 1142 2041 1158 2042 1118 2043 1150 2044 1152 2045 1138 2046 1152 2047 1172 2048 1174 2049 1140 2050 1154 2051 1158 2052 1124 2053 1156 2054 1160 2055 1176 2056 1144 2057 1162 2058 1160 2059 1128 2060 1146 2061 1164 2062 1178 2063 1164 2064 1132 2065 1166 2066 1180 2067 1148 2068 1168 2069 1170 2070 1158 2071 1182 2072 1152 2073 1150 2074 1184 2075 1152 2076 1186 2077 1172 2078 1174 2079 1154 2080 1188 2081 1158 2082 1156 2083 1190 2084 1160 2085 1192 2086 1176 2087 1162 2088 1194 2089 1160 2090 1178 2091 1164 2092 1196 2093 1198 2094 1164 2095 1166 2096 1180 2097 1168 2098 1200 2099 1182 2100 1158 2101 1190 2102 1202 2103 1170 2104 1182 2105 1152 2106 1184 2107 1204 2108 1172 2109 1186 2110 1206 2111 1208 2112 1174 2113 1188 2114 1192 2115 1210 2116 1176 2117 1194 2118 1192 2119 1160 2120 1178 2121 1196 2122 1212 2123 1196 2124 1164 2125 1198 2126 1214 2127 1180 2128 1200 2129 1182 2130 1190 2131 1216 2132 1202 2133 1182 2134 1218 2135 1204 2136 1184 2137 1220 2138 1186 2139 1222 2140 1206 2141 1208 2142 1188 2143 1224 2144 1226 2145 1208 2146 1224 2147 1218 2148 1182 2149 1216 2150 1228 2151 1202 2152 1218 2153 1204 2154 1220 2155 1230 2156 1206 2157 1222 2158 1232 2159 1226 2160 1224 2161 1234 2162 1236 2163 1218 2164 1216 2165 1218 2166 1238 2167 1228 2168 1230 2169 1220 2170 1240 2171 1242 2172 1232 2173 1222 2174 1242 2175 1244 2176 1232 2177 1246 2178 1226 2179 1234 2180 1236 2181 1238 2182 1218 2183 1238 2184 1248 2185 1228 2186 1230 2187 1240 2188 1250 2189 1252 2190 1244 2191 1242 2192 1246 2193 1234 2194 1254 2195 1256 2196 1238 2197 1236 2198 1238 2199 1258 2200 1248 2201 1240 2202 1260 2203 1250 2204 1250 2205 1260 2206 1262 2207 1252 2208 1264 2209 1244 2210 1266 2211 1246 2212 1254 2213 1256 2214 1268 2215 1238 2216 1258 2217 1270 2218 1248 2219 1260 2220 1272 2221 1262 2222 1274 2223 1264 2224 1252 2225 1276 2226 1266 2227 1254 2228 1256 2229 1278 2230 1268 2231 1258 2232 1280 2233 1270 2234 1280 2235 1282 2236 1270 2237 1272 2238 1284 2239 1262 2240 1274 2241 1286 2242 1264 2243 1288 2244 1266 2245 1276 2246 1278 2247 1280 2248 1268 2249 1290 2250 1282 2251 1280 2252 1272 2253 1292 2254 1284 2255 1294 2256 1286 2257 1274 2258 1296 2259 1288 2260 1276 2261 1280 2262 1278 2263 1298 2264 1290 2265 1280 2266 1298 2267 1290 2268 1300 2269 1282 2270 1292 2271 1294 2272 1284 2273 1294 2274 1302 2275 1286 2276 1296 2277 1304 2278 1288 2279 1290 2280 1298 2281 1306 2282 1300 2283 1290 2284 1308 2285 1292 2286 1310 2287 1294 2288 1294 2289 1312 2290 1302 2291 1314 2292 1304 2293 1296 2294 1314 2295 1316 2296 1304 2297 1308 2298 1290 2299 1306 2300 1318 2301 1300 2302 1308 2303 1310 2304 1312 2305 1294 2306 1302 2307 1312 2308 1320 2309 1322 2310 1316 2311 1314 2312 1308 2313 1306 2314 1324 2315 1318 2316 1308 2317 1326 2318 1310 2319 1328 2320 1312 2321 1312 2322 1330 2323 1320 2324 1320 2325 1330 2326 1332 2327 1322 2328 1334 2329 1316 2330 1326 2331 1308 2332 1324 2333 1336 2334 1318 2335 1326 2336 1328 2337 1330 2338 1312 2339 1330 2340 1338 2341 1332 2342 1340 2343 1334 2344 1322 2345 1326 2346 1324 2347 1342 2348 1336 2349 1326 2350 1344 2351 1328 2352 1346 2353 1330 2354 1346 2355 1338 2356 1330 2357 1332 2358 1338 2359 1348 2360 1340 2361 1350 2362 1334 2363 1344 2364 1326 2365 1342 2366 1352 2367 1336 2368 1344 2369 1346 2370 1354 2371 1338 2372 1338 2373 1356 2374 1348 2375 1358 2376 1350 2377 1340 2378 1344 2379 1342 2380 1360 2381 1352 2382 1344 2383 1362 2384 1364 2385 1352 2386 1362 2387 1354 2388 1356 2389 1338 2390 1348 2391 1356 2392 1366 2393 1358 2394 1368 2395 1350 2396 1362 2397 1344 2398 1360 2399 1364 2400 1362 2401 1370 2402 1372 2403 1356 2404 1354 2405 1356 2406 1374 2407 1366 2408 1358 2409 1376 2410 1368 2411 1362 2412 1360 2413 1378 2414 1370 2415 1362 2416 1378 2417 1380 2418 1364 2419 1370 2420 1372 2421 1374 2422 1356 2423 1366 2424 1374 2425 1382 2426 1376 2427 1384 2428 1368 2429 1370 2430 1378 2431 1386 2432 1380 2433 1370 2434 1388 2435 1390 2436 1374 2437 1372 2438 1374 2439 1392 2440 1382 2441 1376 2442 1394 2443 1384 2444 1394 2445 1396 2446 1384 2447 1388 2448 1370 2449 1386 2450 1398 2451 1380 2452 1388 2453 1390 2454 1392 2455 1374 2456 1382 2457 1392 2458 1400 2459 1394 2460 1402 2461 1396 2462 1388 2463 1386 2464 1404 2465 1398 2466 1388 2467 1406 2468 1408 2469 1392 2470 1390 2471 1400 2472 1392 2473 1410 2474 1412 2475 1400 2476 1410 2477 1402 2478 1414 2479 1396 2480 1388 2481 1404 2482 1406 2483 1416 2484 1398 2485 1406 2486 1408 2487 1418 2488 1392 2489 1412 2490 1410 2491 1420 2492 1402 2493 1422 2494 1414 2495 1406 2496 1404 2497 1424 2498 1416 2499 1406 2500 1426 2501 1428 2502 1418 2503 1408 2504 1420 2505 1418 2506 1428 2507 1430 2508 1412 2509 1420 2510 1422 2511 1432 2512 1414 2513 1406 2514 1424 2515 1434 2516 1416 2517 1426 2518 1436 2519 1420 2520 1428 2521 1438 2522 1430 2523 1420 2524 1440 2525 1422 2526 1442 2527 1432 2528 1434 2529 1424 2530 1444 2531 1436 2532 1426 2533 1446 2534 1436 2535 1446 2536 1448 2537 1440 2538 1420 2539 1438 2540 1450 2541 1430 2542 1440 2543 1432 2544 1442 2545 1452 2546 1446 2547 1434 2548 1444 2549 1448 2550 1446 2551 1454 2552 1440 2553 1438 2554 1456 2555 1450 2556 1440 2557 1458 2558 1452 2559 1442 2560 1460 2561 1446 2562 1444 2563 1462 2564 1454 2565 1446 2566 1462 2567 1448 2568 1454 2569 1464 2570 1458 2571 1440 2572 1456 2573 1466 2574 1450 2575 1458 2576 1452 2577 1460 2578 1468 2579 1454 2580 1462 2581 1470 2582 1464 2583 1454 2584 1472 2585 1458 2586 1456 2587 1474 2588 1458 2589 1476 2590 1466 2591 1468 2592 1460 2593 1478 2594 1468 2595 1478 2596 1480 2597 1472 2598 1454 2599 1470 2600 1482 2601 1464 2602 1472 2603 1476 2604 1458 2605 1474 2606 1466 2607 1476 2608 1484 2609 1480 2610 1478 2611 1486 2612 1472 2613 1470 2614 1488 2615 1482 2616 1472 2617 1490 2618 1476 2619 1474 2620 1492 2621 1476 2622 1494 2623 1484 2624 1484 2625 1494 2626 1496 2627 1480 2628 1486 2629 1498 2630 1490 2631 1472 2632 1488 2633 1500 2634 1482 2635 1490 2636 1494 2637 1476 2638 1492 2639 1494 2640 1502 2641 1496 2642 1498 2643 1486 2644 1504 2645 1490 2646 1488 2647 1506 2648 1500 2649 1490 2650 1508 2651 1494 2652 1492 2653 1510 2654 1502 2655 1494 2656 1510 2657 1496 2658 1502 2659 1512 2660 1498 2661 1504 2662 1514 2663 1508 2664 1490 2665 1506 2666 1516 2667 1500 2668 1508 2669</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1737\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1738\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"890\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 5 7 10 11 4 13 5 4 17 18 19 21 3 7 23 11 10 11 25 4 18 28 29 13 4 31 33 17 19 19 18 29 35 21 7 23 10 37 41 42 43 46 47 42 31 4 25 29 28 49 51 13 31 55 56 57 33 59 17 62 63 56 65 21 35 67 23 37 41 43 69 41 46 42 46 57 47 31 25 71 74 75 62 28 77 49 51 31 79 81 55 57 56 63 57 83 59 33 62 75 63 85 65 35 67 37 65 69 43 87 91 92 93 93 95 81 57 97 47 79 31 71 74 99 75 49 77 101 103 51 79 95 55 81 57 63 97 83 105 59 63 75 107 109 65 85 65 111 67 69 87 113 115 92 91 92 95 93 79 71 117 75 99 119 121 99 74 77 123 101 103 79 125 63 107 97 83 127 105 75 119 107 129 109 85 65 109 111 87 131 113 133 115 91 127 136 137 125 79 117 99 139 119 121 141 99 101 123 143 145 103 125 127 137 105 125 117 147 129 149 109 109 151 111 113 131 153 115 133 155 136 157 137 160 147 161 99 141 139 163 141 121 123 165 143 145 125 160 160 125 147 129 167 149 109 149 151 131 169 153 155 133 171 136 173 157 175 160 161 139 141 177 163 179 141 165 181 143 183 145 160 167 185 149 149 187 151 153 169 189 155 171 191 173 193 157 183 160 175 175 161 195 141 179 177 197 179 163 165 199 181 167 201 185 149 185 187 169 203 189 191 171 189 173 205 193 207 183 175 209 175 195 177 179 211 197 213 179 199 215 181 201 217 185 185 219 187 189 203 221 191 189 223 205 225 193 199 227 215 207 175 209 209 195 229 179 213 211 231 213 197 201 233 217 185 217 219 203 235 221 223 189 221 205 237 225 227 239 215 241 207 209 243 209 229 211 213 245 247 213 231 233 249 217 217 251 219 235 253 221 223 221 255 225 237 257 247 231 259 227 261 239 243 241 209 243 229 263 213 265 245 233 267 249 217 249 251 235 269 253 255 221 253 237 271 257 273 247 259 261 275 239 277 241 243 279 243 263 245 265 281 267 283 249 249 285 251 269 287 253 255 253 289 257 271 291 281 265 273 273 259 293 261 295 275 297 277 243 279 263 299 267 301 283 249 283 285 269 303 287 289 253 287 271 305 291 307 281 273 309 273 293 295 311 275 313 277 297 315 279 299 301 317 283 283 319 285 303 321 287 289 287 323 291 305 325 327 315 299 307 273 309 309 293 329 331 311 295 313 297 315 301 333 317 283 317 319 303 335 321 323 287 321 305 337 325 339 315 327 341 307 309 343 309 329 345 311 331 347 313 315 333 349 317 319 317 351 335 353 321 321 355 323 325 337 357 347 315 339 359 339 327 341 309 343 343 329 361 363 345 331 333 365 349 317 367 351 335 369 353 321 353 355 357 337 371 373 347 339 375 339 359 377 341 343 361 379 343 381 345 363 365 383 349 351 367 385 369 387 353 353 389 355 357 371 391 393 381 363 373 339 375 375 359 395 377 343 379 397 379 361 365 399 383 367 401 385 369 403 387 353 387 389 391 371 405 407 381 393 409 373 375 411 375 395 413 377 379 397 415 379 383 399 417 401 419 385 403 421 387 387 423 389 425 391 405 427 415 397 429 407 393 409 375 411 411 395 431 413 379 415 399 433 417 401 417 419 435 421 403 387 421 423 425 405 437 427 439 415 441 407 429 443 409 411 445 411 431 447 413 415 417 433 449 417 451 419 453 421 435 421 455 423 457 425 437 447 415 439 459 439 427 461 441 429 443 411 445 445 431 463 433 465 449 417 449 451 467 453 435 421 453 455 457 437 469 471 447 439 459 473 439 475 441 461 477 443 445 479 445 463 465 481 449 449 483 451 485 453 467 455 453 487 489 457 469 479 463 491 473 471 439 493 473 459 475 461 495 477 445 479 465 497 481 449 481 483 499 485 467 487 453 485 489 469 501 503 479 491 505 471 473 493 507 473 509 475 495 511 477 479 497 513 481 481 515 483 517 485 499 487 485 519 521 489 501 511 479 503 503 491 523 525 505 473 527 507 493 509 495 529 497 531 513 481 513 515 533 517 499 519 485 517 521 501 535 537 511 503 539 503 523 541 505 525 527 543 507 545 509 529 531 547 513 513 549 515 551 517 533 519 517 553 555 521 535 545 529 557 537 503 539 539 523 559 561 541 525 563 543 527 531 565 547 513 547 549 551 533 567 553 517 551 569 555 535 571 545 557 537 539 573 575 539 559 577 541 561 543 563 579 565 581 547 547 583 549 585 551 567 553 551 587 589 555 569 563 591 579 571 557 593 539 575 573 575 559 595 597 577 561 565 599 581 547 581 583 585 567 601 587 551 585 603 589 569 579 591 605 607 571 593 573 575 609 595 611 575 597 613 577 599 615 581 581 617 583 619 585 601 587 585 621 623 589 603 625 613 597 591 627 605 607 593 629 575 631 609 595 633 611 599 635 615 581 615 617 619 601 637 621 585 619 639 623 603 625 641 613 605 627 643 607 629 645 631 647 609 633 649 611 635 651 615 653 617 615 655 619 637 621 619 657 659 623 639 633 661 649 625 663 641 627 665 643 645 629 667 631 669 647 635 671 651 651 653 615 655 637 673 657 619 675 677 659 639 649 661 679 663 681 641 643 665 683 645 667 685 669 687 647 689 651 671 691 653 651 693 655 673 695 657 675 677 697 659 669 679 687 661 699 679 663 683 681 665 701 683 667 703 685 689 671 705 707 691 651 693 673 709 711 695 675 713 697 677 715 687 679 717 679 699 683 719 681 701 721 683 685 703 723 725 689 705 727 691 707 729 693 709 731 695 711 713 733 697 703 735 723 715 679 717 717 699 737 683 721 719 739 721 701 741 725 705 727 707 743 729 709 745 747 731 711 749 733 713 723 735 751 753 715 717 755 717 737 721 757 719 739 759 721 761 725 741 763 727 743 729 745 765 767 731 747 749 769 733 771 759 739 735 773 751 753 717 755 755 737 775 721 759 757 777 761 741 763 743 761 765 745 779 781 767 747 749 783 769 771 785 759 751 773 787 789 753 755 791 755 775 759 793 757 795 761 777 761 797 763 765 779 799 767 781 801 783 803 769 759 785 793 805 785 771 773 807 787 789 755 791 791 775 809 811 795 777 761 795 797 779 813 799 801 781 815 783 817 803 785 819 793 805 821 785 787 807 823 825 789 791 827 791 809 811 829 795 795 831 797 799 813 833 801 815 835 817 837 803 827 809 839 785 821 819 841 821 805 807 843 823 825 791 827 811 845 829 795 829 831 813 847 833 835 815 849 817 851 837 853 827 839 819 821 855 841 857 821 843 859 823 861 825 827 845 863 829 829 865 831 833 847 867 835 849 869 851 871 837 861 827 853 853 839 873 821 857 855 875 857 841 843 877 859 845 879 863 829 863 865 847 881 867 869 849 867 851 883 871 885 861 853 887 853 873 855 857 889 875 891 857 877 893 859 879 895 863 863 897 865 867 881 899 869 867 901 883 903 871 877 905 893 885 853 887 887 873 907 857 891 889 909 891 875 879 911 895 863 895 897 881 913 899 901 867 899 883 915 903 905 917 893 919 885 887 921 887 907 889 891 923 925 891 909 911 927 895 895 929 897 913 931 899 901 899 933 903 915 935 925 909 937 905 939 917 921 919 887 921 907 941 891 943 923 911 945 927 895 927 929 913 947 931 933 899 931 915 949 935 951 925 937 939 953 917 955 919 921 957 921 941 923 943 959 945 961 927 927 963 929 947 965 931 933 931 967 935 949 969 959 943 951 951 937 971 939 973 953 975 955 921 977 957 941 945 979 961 927 961 963 947 981 965 967 931 965 949 983 969 985 959 951 987 951 971 973 989 953 991 955 975 993 957 977 979 995 961 961 997 963 981 999 965 967 965 1001 969 983 1003 1005 993 977 985 951 987 987 971 1007 1009 989 973 991 975 993 979 1011 995 961 995 997 981 1013 999 1001 965 999 983 1015 1003 1017 993 1005 1019 985 987 1021 987 1007 1023 989 1009 1025 991 993 1011 1027 995 997 995 1029 1013 1031 999 999 1033 1001 1003 1015 1035 1025 993 1017 1037 1017 1005 1019 987 1021 1021 1007 1039 1041 1023 1009 1011 1043 1027 995 1045 1029 1013 1047 1031 999 1031 1033 1035 1015 1049 1051 1025 1017 1053 1017 1037 1055 1019 1021 1039 1057 1021 1059 1023 1041 1043 1061 1027 1029 1045 1063 1047 1065 1031 1031 1067 1033 1035 1049 1069 1071 1059 1041 1051 1017 1053 1053 1037 1073 1055 1021 1057 1075 1057 1039 1043 1077 1061 1045 1079 1063 1047 1081 1065 1031 1065 1067 1069 1049 1083 1085 1059 1071 1087 1051 1053 1089 1053 1073 1091 1055 1057 1075 1093 1057 1061 1077 1095 1079 1097 1063 1081 1099 1065 1065 1101 1067 1103 1069 1083 1105 1093 1075 1107 1085 1071 1087 1053 1089 1089 1073 1109 1091 1057 1093 1077 1111 1095 1079 1095 1097 1113 1099 1081 1065 1115 1101 1103 1083 1117 1105 1119 1093 1121 1085 1107 1123 1087 1089 1125 1089 1109 1127 1091 1093 1095 1111 1129 1095 1131 1097 1133 1099 1113 1101 1115 1135 1137 1103 1117 1127 1093 1119 1139 1119 1105 1141 1121 1107 1123 1089 1125 1125 1109 1143 1111 1145 1129 1095 1129 1131 1147 1133 1113 1135 1115 1133 1137 1117 1149 1151 1127 1119 1139 1153 1119 1155 1121 1141 1157 1123 1125 1159 1125 1143 1145 1161 1129 1129 1163 1131 1165 1133 1147 1135 1133 1167 1169 1137 1149 1159 1143 1171 1153 1151 1119 1173 1153 1139 1155 1141 1175 1157 1125 1159 1145 1177 1161 1129 1161 1163 1179 1165 1147 1167 1133 1165 1169 1149 1181 1183 1159 1171 1185 1151 1153 1173 1187 1153 1189 1155 1175 1191 1157 1159 1177 1193 1161 1161 1195 1163 1197 1165 1179 1167 1165 1199 1201 1169 1181 1191 1159 1183 1183 1171 1203 1205 1185 1153 1207 1187 1173 1189 1175 1209 1177 1211 1193 1161 1193 1195 1213 1197 1179 1199 1165 1197 1201 1181 1215 1217 1191 1183 1219 1183 1203 1221 1185 1205 1207 1223 1187 1225 1189 1209 1225 1209 1227 1217 1183 1219 1219 1203 1229 1231 1221 1205 1233 1223 1207 1235 1225 1227 1217 1219 1237 1229 1239 1219 1241 1221 1231 1223 1233 1243 1233 1245 1243 1235 1227 1247 1219 1239 1237 1229 1249 1239 1251 1241 1231 1243 1245 1253 1255 1235 1247 1237 1239 1257 1249 1259 1239 1251 1261 1241 1263 1261 1251 1245 1265 1253 1255 1247 1267 1239 1269 1257 1249 1271 1259 1263 1273 1261 1253 1265 1275 1255 1267 1277 1269 1279 1257 1271 1281 1259 1271 1283 1281 1263 1285 1273 1265 1287 1275 1277 1267 1289 1269 1281 1279 1281 1283 1291 1285 1293 1273 1275 1287 1295 1277 1289 1297 1299 1279 1281 1299 1281 1291 1283 1301 1291 1285 1295 1293 1287 1303 1295 1289 1305 1297 1307 1299 1291 1309 1291 1301 1295 1311 1293 1303 1313 1295 1297 1305 1315 1305 1317 1315 1307 1291 1309 1309 1301 1319 1295 1313 1311 1321 1313 1303 1315 1317 1323 1325 1307 1309 1327 1309 1319 1313 1329 1311 1321 1331 1313 1333 1331 1321 1317 1335 1323 1325 1309 1327 1327 1319 1337 1313 1331 1329 1333 1339 1331 1323 1335 1341 1343 1325 1327 1345 1327 1337 1331 1347 1329 1331 1339 1347 1349 1339 1333 1335 1351 1341 1343 1327 1345 1345 1337 1353 1339 1355 1347 1349 1357 1339 1341 1351 1359 1361 1343 1345 1363 1345 1353 1363 1353 1365 1339 1357 1355 1367 1357 1349 1351 1369 1359 1361 1345 1363 1371 1363 1365 1355 1357 1373 1367 1375 1357 1369 1377 1359 1379 1361 1363 1379 1363 1371 1371 1365 1381 1357 1375 1373 1383 1375 1367 1369 1385 1377 1387 1379 1371 1389 1371 1381 1373 1375 1391 1383 1393 1375 1385 1395 1377 1385 1397 1395 1387 1371 1389 1389 1381 1399 1375 1393 1391 1401 1393 1383 1397 1403 1395 1405 1387 1389 1407 1389 1399 1391 1393 1409 1411 1393 1401 1411 1401 1413 1397 1415 1403 1407 1405 1389 1407 1399 1417 1393 1419 1409 1421 1411 1413 1415 1423 1403 1425 1405 1407 1427 1407 1417 1409 1419 1429 1429 1419 1421 1421 1413 1431 1415 1433 1423 1435 1425 1407 1437 1427 1417 1439 1429 1421 1441 1421 1431 1433 1443 1423 1445 1425 1435 1447 1427 1437 1449 1447 1437 1439 1421 1441 1441 1431 1451 1453 1443 1433 1445 1435 1447 1455 1447 1449 1457 1439 1441 1459 1441 1451 1461 1443 1453 1463 1445 1447 1463 1447 1455 1465 1455 1449 1457 1441 1459 1459 1451 1467 1469 1461 1453 1471 1463 1455 1473 1455 1465 1475 1457 1459 1467 1477 1459 1479 1461 1469 1481 1479 1469 1471 1455 1473 1473 1465 1483 1475 1459 1477 1485 1477 1467 1487 1479 1481 1489 1471 1473 1491 1473 1483 1493 1475 1477 1485 1495 1477 1497 1495 1485 1499 1487 1481 1489 1473 1491 1491 1483 1501 1493 1477 1495 1497 1503 1495 1505 1487 1499 1507 1489 1491 1509 1491 1501 1511 1493 1495 1511 1495 1503 1513 1503 1497 1515 1505 1499 1507 1491 1509 1509 1501 1517</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1737\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1742\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1743\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1746\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6211520433425903 1.414041757583618 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.2385112643241882 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6343077421188355 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6211520433425903 1.414041757583618 -0.0860319584608078 -0.6261053085327148 1.424327969551086 -0.0860319584608078 -0.6343077421188355 1.414041757583618 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.0860319584608078 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6261053085327148 1.403754353523254 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.426867127418518 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6372348070144653 1.401215672492981 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6372348070144653 1.401215672492981 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.408332943916321 -0.2385112643241882 -0.6461607217788696 1.419749855995178 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078 -0.6461607217788696 1.408332943916321 -0.0860319584608078</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1746\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1744\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1747\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">0.9999999997435105 2.264904028305049e-005 -2.209455120321467e-018 0.9999999997435105 2.264904028312894e-005 -6.051660786087425e-018 0.6234634960262413 0.7818524599454407 -1.526749119931941e-019 -0.6234634960262413 -0.7818524599454407 1.526749119931941e-019 -0.9999999997435105 -2.264904028312894e-005 6.051660786087425e-018 -0.9999999997435105 -2.264904028305049e-005 2.209455120321467e-018 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234634960262414 0.7818524599454408 -1.040780674003078e-018 -0.6234634960262414 -0.7818524599454408 1.040780674003078e-018 0.6234652837365569 -0.7818510343890929 -5.707467413603938e-018 -0.6234652837365569 0.7818510343890929 5.707467413603938e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.2225354781476582 0.9749245924509203 4.145506498485379e-018 0.2225354781476582 -0.9749245924509203 -4.145506498485379e-018 0 0 1 -0 -0 -1 0.623465283736557 -0.7818510343890928 7.994120291056104e-019 -0.623465283736557 0.7818510343890928 -7.994120291056104e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225354781476585 0.9749245924509202 1.043018590684045e-018 0.2225354781476585 -0.9749245924509202 -1.043018590684045e-018 0 0 1 -0 -0 -1 -0.2225553300349599 -0.9749200608629561 -4.056770881837861e-018 0.2225553300349599 0.9749200608629561 4.056770881837861e-018 0 0 -1 -0 -0 1 -0.9009553760018496 0.4339117542235586 2.214555474022641e-018 0.9009553760018496 -0.4339117542235586 -2.214555474022641e-018 -0.2225553300349603 -0.974920060862956 8.21790817236331e-019 0.2225553300349603 0.974920060862956 -8.21790817236331e-019 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009553760018496 0.4339117542235587 0 -0.9009553760018496 -0.4339117542235587 0 0.9009553760018496 0.4339117542235587 -0 0.9009553760018496 -0.4339117542235587 -0 -0.9009553760018495 -0.4339117542235588 -2.21455547402264e-018 0.9009553760018495 0.4339117542235588 2.21455547402264e-018</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1747\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1745\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1743\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1744\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"56\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1745\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1748\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1749\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1752\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">-0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6348807811737061 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6158701777458191 1.413632392883301 -0.1321489065885544 -0.6348807811737061 1.413632392883301 -0.1321489065885544 -0.6230280995368958 1.428494930267334 -0.1321489065885544 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6348807811737061 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6158701777458191 1.413632392883301 0.01115624234080315 -0.6230280995368958 1.428494930267334 0.01115624234080315 -0.6348807811737061 1.413632392883301 0.01115624234080315 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6391103863716126 1.432165741920471 -0.1321489065885544 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 0.01115624234080315 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6230280995368958 1.39876925945282 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.432165741920471 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6391103863716126 1.395098686218262 0.01115624234080315 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6520081758499146 1.42188024520874 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6391103863716126 1.395098686218262 -0.1321489065885544 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.405384659767151 -0.1321489065885544 -0.6520081758499146 1.42188024520874 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315 -0.6520081758499146 1.405384659767151 0.01115624234080315</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1752\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1750\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1753\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">0.9999999999692774 7.838719476032881e-006 4.376233027348433e-018 0.9999999999692772 7.838719476072105e-006 4.376233027348431e-018 0.6234822154226067 0.7818375323887425 4.376154661136589e-018 -0.6234822154226067 -0.7818375323887425 -4.376154661136589e-018 -0.9999999999692772 -7.838719476072105e-006 -4.376233027348431e-018 -0.9999999999692774 -7.838719476032881e-006 -4.376233027348433e-018 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.623482215422607 0.7818375323887425 6.250799169781779e-018 -0.623482215422607 -0.7818375323887425 -6.250799169781779e-018 0.6234828356507187 -0.7818370377827716 2.022204829232494e-018 -0.6234828356507187 0.7818370377827716 -2.022204829232494e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.2225136552712602 0.9749295734656032 -2.373810475256616e-018 0.2225136552712602 -0.9749295734656032 2.373810475256616e-018 0 0 1 -0 -0 -1 0.6234828356507183 -0.7818370377827718 2.022204829232495e-018 -0.6234828356507183 0.7818370377827718 -2.022204829232495e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225136552712601 0.9749295734656031 -4.991495804369193e-019 0.2225136552712601 -0.9749295734656031 4.991495804369193e-019 0 0 1 -0 -0 -1 -0.2225315399609898 -0.9749254913697715 7.064833780320975e-018 0.2225315399609898 0.9749254913697715 -7.064833780320975e-018 0 0 -1 -0 -0 1 -0.9009673547404414 0.4338868812167653 -2.521354725908289e-018 0.9009673547404414 -0.4338868812167653 2.521354725908289e-018 -0.2225315399609899 -0.9749254913697715 7.064833780320978e-018 0.2225315399609899 0.9749254913697715 -7.064833780320978e-018 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009673547404414 0.4338868812167655 -2.521354725908289e-018 -0.9009722572624185 -0.4338767009686765 5.042591135187332e-018 0.9009722572624185 0.4338767009686765 -5.042591135187332e-018 0.9009673547404414 -0.4338868812167655 2.521354725908289e-018 -0.9009722572624185 -0.4338767009686765 5.042591135187332e-018 0.9009722572624185 0.4338767009686765 -5.042591135187332e-018</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1753\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1751\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1749\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1750\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"56\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1751\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1754\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1755\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1758\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6438632011413574 1.414041757583618 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.2360890060663223 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6307075619697571 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6438632011413574 1.414041757583618 -0.08363990485668182 0.6389099955558777 1.424327969551086 -0.08363990485668182 0.6307075619697571 1.414041757583618 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.08363990485668182 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6389099955558777 1.403754591941834 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.426867961883545 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6277799010276794 1.401215672492981 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6277799010276794 1.401215672492981 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.408333420753479 -0.2360890060663223 0.6188541650772095 1.419750094413757 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182 0.6188541650772095 1.408333420753479 -0.08363990485668182</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1758\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1756\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1759\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">0.999999999835843 1.81194371653217e-005 0 0.9999999998358429 1.811943716606694e-005 0 0.6234886533956409 0.7818323983354045 0 -0.6234886533956409 -0.7818323983354045 -0 -0.9999999998358429 -1.811943716606694e-005 -0 -0.999999999835843 -1.81194371653217e-005 -0 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234886533956403 0.7818323983354046 8.883269865254059e-019 -0.6234886533956403 -0.7818323983354046 -8.883269865254059e-019 0.6234670018001388 -0.7818496643641576 0 -0.6234670018001388 0.7818496643641576 -0 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.22253105986498 0.9749256009539236 -2.281655084337777e-018 0.22253105986498 -0.9749256009539236 2.281655084337777e-018 0 0 1 -0 -0 -1 0.6234670018001383 -0.7818496643641582 8.883738370841776e-019 -0.6234670018001383 0.7818496643641582 -8.883738370841776e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.22253105986498 0.9749256009539233 -1.393350726446899e-018 0.22253105986498 -0.9749256009539233 1.393350726446899e-018 0 0 1 -0 -0 -1 -0.2225717438300778 -0.9749163137666937 -2.281615407694076e-018 0.2225717438300778 0.9749163137666937 2.281615407694076e-018 0 0 -1 -0 -0 1 -0.9009663507201748 0.4338889660615616 -2.326067923860243e-018 0.9009663507201748 -0.4338889660615616 2.326067923860243e-018 -0.2225717438300776 -0.9749163137666936 5.25262819099682e-018 0.2225717438300776 0.9749163137666936 -5.25262819099682e-018 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009663507201748 0.4338889660615616 -2.326067923860243e-018 -0.900964579576922 -0.4338926438046397 4.652175280298288e-018 0.900964579576922 0.4338926438046397 -4.652175280298288e-018 0.9009663507201748 -0.4338889660615616 2.326067923860243e-018 -0.9009645795769223 -0.4338926438046395 -1.994027489437981e-018 0.9009645795769223 0.4338926438046395 1.994027489437981e-018</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1759\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1757\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1755\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1756\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"56\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1757\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1760\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1761\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1764\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.630134642124176 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.6491447687149048 1.413632392883301 -0.1297478228807449 0.630134642124176 1.413632392883301 -0.1297478228807449 0.6419874429702759 1.428494930267334 -0.1297478228807449 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.630134642124176 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6491447687149048 1.413632392883301 0.01352904364466667 0.6419874429702759 1.428494930267334 0.01352904364466667 0.630134642124176 1.413632392883301 0.01352904364466667 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6259045004844666 1.43216598033905 -0.1297478228807449 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 0.01352904364466667 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6419874429702759 1.398769497871399 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.43216598033905 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6259045004844666 1.395098924636841 0.01352904364466667 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6130068302154541 1.421880483627319 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6259045004844666 1.395098924636841 -0.1297478228807449 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.405384659767151 -0.1297478228807449 0.6130068302154541 1.421880483627319 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667 0.6130068302154541 1.405384659767151 0.01352904364466667</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1764\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1762\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1765\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"180\">0.9999999999889406 4.703048739066014e-006 -3.194773570613557e-019 0.9999999999889407 4.703048739026789e-006 -4.377776668071451e-018 0.6234969919307719 0.7818257485228271 0 -0.6234969919307719 -0.7818257485228271 -0 -0.9999999999889407 -4.703048739026789e-006 4.377776668071451e-018 -0.9999999999889406 -4.703048739066014e-006 3.194773570613557e-019 0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 0.6234969919307718 0.7818257485228271 0 -0.6234969919307718 -0.7818257485228271 -0 0.6234896527204427 -0.7818316014018247 -2.035488031807518e-018 -0.6234896527204427 0.7818316014018247 2.035488031807518e-018 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 0 0 1 0 0 1 -0 -0 -1 -0 -0 -1 -0 -0 -1 -0.222513294333848 0.9749296558443067 0 0.222513294333848 -0.9749296558443067 -0 0 0 1 -0 -0 -1 0.623489652720443 -0.7818316014018245 1.476226992554694e-019 -0.623489652720443 0.7818316014018245 -1.476226992554694e-019 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1 0 0 1 -0 -0 -1 -0.2225132943338478 0.9749296558443067 0 0.2225132943338478 -0.9749296558443067 -0 0 0 1 -0 -0 -1 -0.2225325393559867 -0.9749252632524076 1.875220685418097e-018 0.2225325393559867 0.9749252632524076 -1.875220685418097e-018 0 0 -1 -0 -0 1 -0.9009683321664772 0.4338848515829476 0 0.9009683321664772 -0.4338848515829476 -0 -0.2225325393559866 -0.9749252632524076 0 0.2225325393559866 0.9749252632524076 -0 0 0 1 -0 -0 -1 0 0 1 -0 -0 -1 -0.9009683321664771 0.4338848515829476 0 -0.9009707834575071 -0.4338797614039701 0 0.9009707834575071 0.4338797614039701 -0 0.9009683321664771 -0.4338848515829476 -0 -0.9009707834575071 -0.4338797614039701 0 0.9009707834575071 0.4338797614039701 -0</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"60\" source=\"#ID1765\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1763\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1761\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1762\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"56\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 2 1 12 13 4 3 0 14 1 4 15 5 16 7 6 11 10 17 7 18 8 9 19 10 20 21 22 23 24 25 26 2 12 13 3 27 28 20 22 23 25 29 30 14 0 5 15 31 16 32 7 10 33 17 7 34 18 19 35 10 20 36 21 24 37 25 38 26 12 13 27 39 40 20 28 29 25 41 14 30 42 43 31 15 32 44 7 10 45 33 46 26 38 39 27 47 30 48 42 43 49 31 44 34 7 10 35 45 50 36 20 25 37 51 40 52 20 25 53 41 54 55 46 47 56 57 54 46 38 39 47 57 42 48 58 59 49 43 48 55 58 59 56 49 52 50 20 25 51 53 58 55 54 57 56 59</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1763\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1766\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1767\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1770\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">-0.1994215846061707 1.409376740455627 -0.3330435454845429 -0.193339616060257 1.374477028846741 -0.3185877501964569 0.6995053887367249 1.409376740455627 -0.3330435454845429 0.6995053887367249 1.409376740455627 -0.3330435454845429 -0.193339616060257 1.374477028846741 -0.3185877501964569 -0.1994215846061707 1.409376740455627 -0.3330435454845429 0.6995053887367249 1.444277167320252 -0.3185878992080689 0.6995053887367249 1.444277167320252 -0.3185878992080689 0.6995051503181458 1.374477028846741 -0.3185877501964569 0.6995051503181458 1.374477028846741 -0.3185877501964569 -0.193339616060257 1.444277167320252 -0.3185877501964569 -0.193339616060257 1.444277167320252 -0.3185877501964569 -0.1788957566022873 1.360021471977234 -0.2836892902851105 -0.1788957566022873 1.360021471977234 -0.2836892902851105 0.7010865807533264 1.458731651306152 -0.2836892902851105 0.7010865807533264 1.458731651306152 -0.2836892902851105 0.6995053887367249 1.360021471977234 -0.2836892902851105 0.6995053887367249 1.360021471977234 -0.2836892902851105 -0.1788957566022873 1.458731651306152 -0.2836892902851105 -0.1788957566022873 1.458731651306152 -0.2836892902851105 -0.1937200576066971 1.374477028846741 -0.2487903386354446 -0.1937200576066971 1.374477028846741 -0.2487903386354446 0.7010863423347473 1.444277167320252 -0.2487903386354446 0.7010863423347473 1.444277167320252 -0.2487903386354446 0.6995053887367249 1.374477028846741 -0.2487903386354446 0.6995053887367249 1.374477028846741 -0.2487903386354446 -0.193339616060257 1.444277167320252 -0.2487903386354446 -0.193339616060257 1.444277167320252 -0.2487903386354446 -0.1994215846061707 1.409376740455627 -0.234334796667099 -0.1994215846061707 1.409376740455627 -0.234334796667099 0.6995053887367249 1.409376740455627 -0.234334796667099 0.6995053887367249 1.409376740455627 -0.234334796667099</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1770\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1768\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1771\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">-8.096430529381678e-008 -3.262168771017521e-006 -0.9999999999946758 -5.358906807957343e-019 -0.6529572867494989 -0.7573947330690468 -6.454358988662185e-019 -4.612929654933531e-006 -0.9999999999893605 6.454358988662185e-019 4.612929654933531e-006 0.9999999999893605 5.358906807957343e-019 0.6529572867494989 0.7573947330690468 8.096430529381678e-008 3.262168771017521e-006 0.9999999999946758 -3.721890660944332e-008 0.710949073141372 -0.7032434965212425 3.721890660944332e-008 -0.710949073141372 0.7032434965212425 -6.754312247816869e-019 -0.707104359561471 -0.7071092028033309 6.754312247816869e-019 0.707104359561471 0.7071092028033309 -9.908881861986481e-008 0.6529616761953019 -0.7573909488634067 9.908881861986481e-008 -0.6529616761953019 0.7573909488634067 -1.33086602427526e-018 -0.9999995659069757 0.0009317649168456204 1.33086602427526e-018 0.9999995659069757 -0.0009317649168456204 -3.315459573728493e-008 0.9999843910927442 0.005587268641536886 3.315459573728493e-008 -0.9999843910927442 -0.005587268641536886 -5.804664278375616e-020 -0.9999999999986244 -1.658672334207115e-006 5.804664278375616e-020 0.9999999999986244 1.658672334207115e-006 1.492557576426979e-020 0.999999999995737 -2.919923129949256e-006 -1.492557576426979e-020 -0.999999999995737 2.919923129949256e-006 2.542821332172197e-019 -0.6527159455234829 0.7576027286509636 -2.542821332172197e-019 0.6527159455234829 -0.7576027286509636 2.088161681493532e-020 0.7110525047396676 0.7031389162202907 -2.088161681493532e-020 -0.7110525047396676 -0.7031389162202907 6.71234797742628e-019 -0.7071039303900618 0.7071096319715401 -6.71234797742628e-019 0.7071039303900618 -0.7071096319715401 -7.589358461867882e-019 0.6529607501764125 0.7573917472015763 7.589358461867882e-019 -0.6529607501764125 -0.7573917472015763 -6.588288910052687e-021 -0.001441131677589446 0.9999989615692048 6.588288910052687e-021 0.001441131677589446 -0.9999989615692048 -6.60329578561079e-019 0.005438410613650082 0.9999852117356524 6.60329578561079e-019 -0.005438410613650082 -0.9999852117356524</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1771\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1769\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1767\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1768\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 1 8 2 3 9 4 10 0 6 7 5 11 8 1 12 13 4 9 10 6 14 15 7 11 16 8 12 13 9 17 18 10 14 15 11 19 16 12 20 21 13 17 18 14 22 23 15 19 24 16 20 21 17 25 26 18 22 23 19 27 20 28 24 25 29 21 30 26 22 23 27 31 24 28 30 31 29 25 28 26 30 31 27 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1769\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1772\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1773\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1776\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">-0.6978123784065247 1.409376740455627 -0.3330435454845429 -0.1487381309270859 1.374477028846741 -0.3185877501964569 -0.1426564902067184 1.409376740455627 -0.3330435454845429 -0.1426564902067184 1.409376740455627 -0.3330435454845429 -0.1487381309270859 1.374477028846741 -0.3185877501964569 -0.6978123784065247 1.409376740455627 -0.3330435454845429 -0.6978123784065247 1.374477028846741 -0.3185877501964569 -0.6978123784065247 1.374477028846741 -0.3185877501964569 -0.6965032815933228 1.444277167320252 -0.3185878992080689 -0.6965032815933228 1.444277167320252 -0.3185878992080689 -0.1631820350885391 1.360021471977234 -0.2836892902851105 -0.1631820350885391 1.360021471977234 -0.2836892902851105 -0.1487381309270859 1.444277167320252 -0.3185877501964569 -0.1487381309270859 1.444277167320252 -0.3185877501964569 -0.6978123784065247 1.360021471977234 -0.2836892902851105 -0.6978123784065247 1.360021471977234 -0.2836892902851105 -0.6980850100517273 1.458731651306152 -0.2836892902851105 -0.6980850100517273 1.458731651306152 -0.2836892902851105 -0.148358017206192 1.374477028846741 -0.2487903386354446 -0.148358017206192 1.374477028846741 -0.2487903386354446 -0.1631820350885391 1.458731651306152 -0.2836892902851105 -0.1631820350885391 1.458731651306152 -0.2836892902851105 -0.6978126168251038 1.374477028846741 -0.2487903386354446 -0.6978126168251038 1.374477028846741 -0.2487903386354446 -0.6958645582199097 1.444277167320252 -0.2487903386354446 -0.6958645582199097 1.444277167320252 -0.2487903386354446 -0.1426564902067184 1.409376740455627 -0.234334796667099 -0.1426564902067184 1.409376740455627 -0.234334796667099 -0.1487381309270859 1.444277167320252 -0.2487903386354446 -0.1487381309270859 1.444277167320252 -0.2487903386354446 -0.6978123784065247 1.409376740455627 -0.234334796667099 -0.6978123784065247 1.409376740455627 -0.234334796667099</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1776\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1774\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1777\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">0 -0.004623503802832999 -0.999989311549171 1.416990788477893e-018 -0.6529578956657299 -0.7573942081160786 1.294541359425236e-007 -3.2886846322709e-006 -0.9999999999945839 -1.294541359425236e-007 3.2886846322709e-006 0.9999999999945839 -1.416990788477893e-018 0.6529578956657299 0.7573942081160786 -0 0.004623503802832999 0.999989311549171 1.8206542497657e-018 -0.7071043595420349 -0.7071092028227668 -1.8206542497657e-018 0.7071043595420349 0.7071092028227668 6.222058690068734e-008 0.7077661876840558 -0.7064467591907929 -6.222058690068734e-008 -0.7077661876840558 0.7064467591907929 3.55867895444724e-018 -0.9999995666540326 0.0009309628065998062 -3.55867895444724e-018 0.9999995666540326 -0.0009309628065998062 1.625244536583127e-007 0.6529623179344262 -0.7573903956069651 -1.625244536583127e-007 -0.6529623179344262 0.7573903956069651 1.904648892250437e-018 -0.9999999999986244 -1.658685686398783e-006 -1.904648892250437e-018 0.9999999999986244 1.658685686398783e-006 5.410515884143392e-008 0.9999973576755113 -0.002298834920714152 -5.410515884143392e-008 -0.9999973576755113 0.002298834920714152 1.407486538539841e-018 -0.6527167650363455 0.7576020225952993 -1.407486538539841e-018 0.6527167650363455 -0.7576020225952993 0 0.999999999995737 -2.919923890702951e-006 -0 -0.999999999995737 2.919923890702951e-006 0 -0.7071039303792133 0.7071096319823883 -0 0.7071039303792133 -0.7071096319823883 0 0.7077587064059777 0.7064542543622602 -0 -0.7077587064059777 -0.7064542543622602 -1.686404762606598e-018 -0.001439890283937835 0.9999989633574479 1.686404762606598e-018 0.001439890283937835 -0.9999989633574479 -1.910403059081659e-018 0.6529613591191861 0.7573912222208713 1.910403059081659e-018 -0.6529613591191861 -0.7573912222208713 -7.52346634838247e-020 -0.006909725138064178 0.9999761275643115 7.52346634838247e-020 0.006909725138064178 -0.9999761275643115</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1777\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1775\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1773\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1774\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 8 0 2 3 5 9 1 6 10 11 7 4 12 8 2 3 9 13 10 6 14 15 7 11 8 12 16 17 13 9 10 14 18 19 15 11 16 12 20 21 13 17 18 14 22 23 15 19 16 20 24 25 21 17 18 22 26 27 23 19 24 20 28 29 21 25 22 30 26 27 31 23 30 24 28 29 25 31 30 28 26 27 29 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1775\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1778\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1779\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1782\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"312\">0.0416390672326088 -0.9620028138160706 -0.3203812837600708 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 -0.001550662331283093 -0.9620028138160706 -0.3203812837600708 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.03131802380084992 -0.9620028138160706 -0.2875131964683533 0.0416390672326088 -0.9620028138160706 -0.3203812837600708 -0.001550662331283093 -0.9620028138160706 -0.3203812837600708 0.05974317342042923 -1.127685785293579 -0.254153698682785 0.05974317342042923 -1.127685785293579 -0.254153698682785 0.05999584496021271 -1.127685785293579 -0.3760610222816467 0.05999584496021271 -1.127685785293579 -0.3760610222816467 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.08528012782335281 -1.201554536819458 -0.3151014745235443 0.08528012782335281 -1.201554536819458 -0.3151014745235443 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 -0.001550662331283093 -0.9620028138160706 -0.2718385457992554 0.0599658340215683 -1.201554536819458 -0.3762143552303314 0.0599658340215683 -1.201554536819458 -0.3762143552303314 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 0.02596459724009037 -0.9620028138160706 -0.3489671051502228 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 0.05996581166982651 -1.201554536819458 -0.2539876401424408 0.05996581166982651 -1.201554536819458 -0.2539876401424408 -0.001166453585028648 -1.127685785293579 -0.2285331338644028 -0.001166453585028648 -1.127685785293579 -0.2285331338644028 -0.0011480413377285 -1.201554536819458 -0.4015282690525055 -0.0011480413377285 -1.201554536819458 -0.4015282690525055 -0.001084049232304096 -1.127685785293579 -0.4012084305286408 -0.001084049232304096 -1.127685785293579 -0.4012084305286408 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.03334858641028404 -0.9620028138160706 -0.2885836064815521 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.002621475607156754 -0.9620028138160706 -0.3582172393798828 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.0599658340215683 -1.260503172874451 -0.3762143552303314 0.0599658340215683 -1.260503172874451 -0.3762143552303314 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.06201579421758652 -1.127685785293579 -0.2540891170501709 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.04474033787846565 -0.9620028138160706 -0.3203812837600708 -0.06201579421758652 -1.127685785293579 -0.2540891170501709 -0.06228426843881607 -1.127685785293579 -0.3760357797145844 -0.06228426843881607 -1.127685785293579 -0.3760357797145844 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 -0.03013674356043339 -0.9620028138160706 -0.3489671051502228 0.05996581166982651 -1.255197525024414 -0.2539876401424408 0.05996581166982651 -1.255197525024414 -0.2539876401424408 -0.0011480413377285 -1.201554536819458 -0.2286733090877533 -0.0011480413377285 -1.201554536819458 -0.2286733090877533 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.3762143552303314 -0.08734796196222305 -1.127685785293579 -0.3150011897087097 -0.08734796196222305 -1.127685785293579 -0.3150011897087097 0.08528012782335281 -1.272850155830383 -0.3151014745235443 -0.0011480413377285 -1.272850155830383 -0.3151014745235443 0.05996581166982651 -1.255197525024414 -0.2539876401424408 0.05996581166982651 -1.255197525024414 -0.2539876401424408 -0.0011480413377285 -1.272850155830383 -0.3151014745235443 0.08528012782335281 -1.272850155830383 -0.3151014745235443 0.0599658340215683 -1.260503172874451 -0.3762143552303314 0.0599658340215683 -1.260503172874451 -0.3762143552303314 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.0011480413377285 -1.255320549011231 -0.4015282690525055 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.260420918464661 -0.3762143552303314 -0.06226229667663574 -1.201554536819458 -0.2539876401424408 -0.06226229667663574 -1.201554536819458 -0.2539876401424408 -0.08757650107145309 -1.201554536819458 -0.3151014745235443 -0.08757650107145309 -1.201554536819458 -0.3151014745235443 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.0011480413377285 -1.248100161552429 -0.2286733090877533 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08757650107145309 -1.272335767745972 -0.3151014745235443 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408 -0.06226229667663574 -1.255047917366028 -0.2539876401424408</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"104\" source=\"#ID1782\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1780\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1783\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"312\">0.9588055248038134 0.2673775352725806 -0.09592298596918099 0.9927188762608409 0.1204370590336892 0.002036547747779517 0.7267388695696598 0.2673148040119704 0.6327664743115384 -0.7267388695696598 -0.2673148040119704 -0.6327664743115384 -0.9927188762608409 -0.1204370590336892 -0.002036547747779517 -0.9588055248038134 -0.2673775352725806 0.09592298596918099 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0.7014198014966242 0.1227309440114259 0.7021021132645168 -0.7014198014966242 -0.1227309440114259 -0.7021021132645168 0.7021847014273169 0.1188769731776902 -0.7020006483825644 -0.7021847014273169 -0.1188769731776902 0.7020006483825644 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.9999979850203875 1.252127069247626e-005 0.002007435773011593 -0.9999979850203875 -1.252127069247626e-005 -0.002007435773011593 -0.02735841910897286 0.2599523734912984 0.965233795730391 0.02735841910897286 -0.2599523734912984 -0.965233795730391 0.7069516630176301 1.861547685198636e-017 -0.7072618653346207 -0.7069516630176301 -1.861547685198636e-017 0.7072618653346207 0.6128719715456383 0.2606762782951462 -0.7459462610858466 -0.6128719715456383 -0.2606762782951462 0.7459462610858466 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.7071967559861893 4.940692391890928e-005 0.7070167932104344 -0.7071967559861893 -4.940692391890928e-005 -0.7070167932104344 -0.002129131927144091 0.127389319086275 0.9918505069716767 0.002129131927144091 -0.127389319086275 -0.9918505069716767 -0.0001044805771491545 1.056216625318663e-017 -0.9999999945419046 0.0001044805771491545 -1.056216625318663e-017 0.9999999945419046 -0.0007385280053009249 0.1199347071867176 -0.9927815069734235 0.0007385280053009249 -0.1199347071867176 0.9927815069734235 0 1 0 -0 -1 -0 -0.7317481826565028 0.245393817043592 0.6358667090952959 0.7317481826565028 -0.245393817043592 -0.6358667090952959 -0.01585223753510582 0.24114725236149 -0.9703590620196394 0.01585223753510582 -0.24114725236149 0.9703590620196394 0 1 0 -0 -1 -0 0.9999950606089046 -0.0001299568922094801 -0.003140361284808484 0.9999403015474239 -0.0002181347411306611 -0.01092454843376879 -0.9999950606089046 0.0001299568922094801 0.003140361284808484 -0.9999403015474239 0.0002181347411306611 0.01092454843376879 0.7303355718171639 -0.0001769559157017471 -0.6830885163908848 -0.7303355718171639 0.0001769559157017471 0.6830885163908848 0.0001564439772790366 1.585409395917139e-017 -0.9999999877626409 -0.0001564439772790366 -1.585409395917139e-017 0.9999999877626409 -0.7007551070965294 0.1294143228606862 0.7015655442769705 -0.9685914825527583 0.2389457120624006 -0.06881487203535318 0.9685914825527583 -0.2389457120624006 0.06881487203535318 0.7007551070965294 -0.1294143228606862 -0.7015655442769705 -0.7025685150389799 0.1222251163648164 -0.7010410134974484 0.7025685150389799 -0.1222251163648164 0.7010410134974484 -0.6354681256002953 0.2306381677411489 -0.736876039050703 0.6354681256002953 -0.2306381677411489 0.736876039050703 0.7389951719709527 0 0.6737107211582891 -0.7389951719709527 -0 -0.6737107211582891 3.151945290005802e-005 0 0.9999999995032621 -3.151945290005802e-005 -0 -0.9999999995032621 -0.7297614892512843 0 -0.6837018127851847 0.7297614892512843 -0 0.6837018127851847 -0.7064864909428557 -0.0005189046843104191 -0.7077263375438129 0.7064864909428557 0.0005189046843104191 0.7077263375438129 -0.9921320911846666 0.1251728336561139 0.002382300577020578 0.9921320911846666 -0.1251728336561139 -0.002382300577020578 2.783101748555154e-018 -0.9991332874558135 0.04162539967061679 -0.001976815644048048 -0.999186020482851 0.04029129771493174 0.001227976782420993 -0.9610505558098917 0.276369899320675 -0.001227976782420993 0.9610505558098917 -0.276369899320675 0.001976815644048048 0.999186020482851 -0.04029129771493174 -2.783101748555154e-018 0.9991332874558135 -0.04162539967061679 -0.0003929350606584693 -0.9801186500829385 -0.1984118881560179 0.0003929350606584693 0.9801186500829385 0.1984118881560179 -0.0006595177768321808 -0.9800442170581398 -0.198778514048173 0.0006595177768321808 0.9800442170581398 0.198778514048173 -0.003153641731496768 -0.9805446087454121 -0.1962710493275461 0.003153641731496768 0.9805446087454121 0.1962710493275461 -0.7072261597750277 1.014303739521108e-017 0.7069873824403566 0.7072261597750277 -1.014303739521108e-017 -0.7069873824403566 -0.999998337373055 -0.001428955693152681 0.00113284454026866 0.999998337373055 0.001428955693152681 -0.00113284454026866 -0.001177557507855119 -0.9613578838764064 0.2752991690270668 0.001177557507855119 0.9613578838764064 -0.2752991690270668 0.0002775081825241019 0 0.9999999614946036 -0.0002775081825241019 -0 -0.9999999614946036 -0.005946185829815228 -0.9990893998823336 0.04224942504739838 0.005946185829815228 0.9990893998823336 -0.04224942504739838 -0.999931651654992 -0.002552479234430599 -0.01140950780173313 0.999931651654992 0.002552479234430599 0.01140950780173313 -0.9999837153562079 -0.003484709543799063 -0.004519493532456611 0.9999837153562079 0.003484709543799063 0.004519493532456611 -0.00521796392204423 -0.9614714839872087 0.2748551588235937 0.00521796392204423 0.9614714839872087 -0.2748551588235937 -0.7381117946964493 -0.0008439160915865995 0.6746778982118927 0.7381117946964493 0.0008439160915865995 -0.6746778982118927</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"104\" source=\"#ID1783\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1781\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1779\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1780\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"136\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 6 8 16 17 9 11 6 18 7 10 19 11 1 20 12 13 21 4 22 2 12 13 3 23 14 24 1 4 25 15 26 14 0 5 15 27 28 6 16 17 11 29 30 18 6 11 19 31 20 32 12 13 33 21 24 20 1 4 21 25 34 22 12 13 23 35 36 24 14 15 25 37 26 38 14 15 39 27 40 6 28 29 11 41 42 22 34 35 23 43 44 38 26 27 39 45 46 30 6 11 31 47 20 48 32 49 32 48 50 33 51 33 50 21 34 12 32 33 13 35 24 52 20 21 53 25 36 54 24 25 55 37 38 36 14 15 37 39 40 46 6 11 47 41 42 56 57 58 59 43 56 42 34 35 43 59 44 60 38 39 61 45 62 60 44 45 61 63 49 64 32 33 65 51 20 52 48 49 48 52 53 50 51 50 53 21 66 34 32 33 35 67 24 54 52 53 55 25 36 68 54 55 69 37 70 36 38 39 37 71 57 72 62 63 73 58 56 72 57 58 73 59 56 34 66 67 35 59 60 70 38 39 71 61 72 60 62 63 61 73 74 75 76 77 78 79 64 66 32 33 67 65 74 80 75 78 81 79 80 82 75 78 83 81 82 84 75 78 85 83 70 68 36 37 69 71 56 86 72 73 87 59 86 56 66 67 59 87 88 70 60 61 71 89 72 88 60 61 89 73 76 75 90 91 78 77 92 66 64 65 67 93 75 84 94 95 85 78 96 68 70 71 69 97 86 88 72 73 89 87 92 86 66 67 87 93 88 98 70 96 70 98 99 71 97 71 99 89 75 100 90 91 101 78 75 94 100 101 95 78 86 102 88 89 103 87 102 86 92 93 87 103 88 102 98 96 98 102 103 99 97 99 103 89</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1781\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1784\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1785\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1788\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">0.07268758118152618 -1.139533400535584 -0.3458027541637421 0.06737570464611054 -1.170013546943665 -0.3584281504154205 0.5328076481819153 -1.170013546943665 -0.3584281504154205 0.5328076481819153 -1.170013546943665 -0.3584281504154205 0.06737570464611054 -1.170013546943665 -0.3584281504154205 0.07268758118152618 -1.139533400535584 -0.3458027541637421 0.5328074097633362 -1.139533400535584 -0.3458027541637421 0.5328074097633362 -1.139533400535584 -0.3458027541637421 0.5328076481819153 -1.200496077537537 -0.3458027541637421 0.5328076481819153 -1.200496077537537 -0.3458027541637421 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.08522202074527741 -1.127685785293579 -0.3150011897087097 0.07268758118152618 -1.200496077537537 -0.3458027541637421 0.07268758118152618 -1.200496077537537 -0.3458027541637421 0.5328076481819153 -1.126907825469971 -0.3153224587440491 0.5328076481819153 -1.126907825469971 -0.3153224587440491 0.534188449382782 -1.213120579719544 -0.3153224587440491 0.534188449382782 -1.213120579719544 -0.3153224587440491 0.07235550135374069 -1.139533400535584 -0.2848415970802307 0.07235550135374069 -1.139533400535584 -0.2848415970802307 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.08530302345752716 -1.213120579719544 -0.3153224587440491 0.5328076481819153 -1.139533400535584 -0.2848415970802307 0.5328076481819153 -1.139533400535584 -0.2848415970802307 0.5341882705688477 -1.200496077537537 -0.2848415970802307 0.5341882705688477 -1.200496077537537 -0.2848415970802307 0.06737570464611054 -1.170013546943665 -0.272216260433197 0.06737570464611054 -1.170013546943665 -0.272216260433197 0.07268758118152618 -1.200496077537537 -0.2848415970802307 0.07268758118152618 -1.200496077537537 -0.2848415970802307 0.5328076481819153 -1.170013546943665 -0.272216260433197 0.5328076481819153 -1.170013546943665 -0.272216260433197</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1788\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1786\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1789\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">-4.800243990006268e-018 0.6532257470633736 -0.7571632078842036 -3.15653781780934e-018 1.228913601519482e-005 -0.9999999999244885 1.397492513338611e-018 1.287400279910259e-005 -0.99999999991713 -1.397492513338611e-018 -1.287400279910259e-005 0.99999999991713 3.15653781780934e-018 -1.228913601519482e-005 0.9999999999244885 4.800243990006268e-018 -0.6532257470633736 0.7571632078842036 3.166570582828221e-018 0.7071056219034221 -0.7071079404677721 -3.166570582828221e-018 -0.7071056219034221 0.7071079404677721 0 -0.7109447180994457 -0.7032478992549495 -0 0.7109447180994457 0.7032478992549495 1.946404600427405e-018 0.9999984994589262 0.001732362518675635 -1.946404600427405e-018 -0.9999984994589262 -0.001732362518675635 -2.614800096576075e-018 -0.6529553154274723 -0.7573964325602611 2.614800096576075e-018 0.6529553154274723 0.7573964325602611 1.860628050482077e-018 0.999999984286978 -0.0001772739229532261 -1.860628050482077e-018 -0.999999984286978 0.0001772739229532261 -1.875828047693226e-018 -0.9999844037696157 0.005584999330916269 1.875828047693226e-018 0.9999844037696157 -0.005584999330916269 2.620721983057941e-018 0.65220608506156 0.7580417024205681 -2.620721983057941e-018 -0.65220608506156 -0.7580417024205681 -5.00221309808669e-018 -0.9999999999925899 -3.849693032704404e-006 5.00221309808669e-018 0.9999999999925899 3.849693032704404e-006 1.507180131247409e-018 0.7071073539430651 0.7071062084295658 -1.507180131247409e-018 -0.7071073539430651 -0.7071062084295658 -1.715282097682279e-018 -0.7110494810907638 0.7031419738861814 1.715282097682279e-018 0.7110494810907638 -0.7031419738861814 7.88705997477675e-020 0.001449403516777924 0.999998949614171 -7.88705997477675e-020 -0.001449403516777924 -0.999998949614171 -1.314688606444315e-018 -0.6529571740461475 0.7573948302316759 1.314688606444315e-018 0.6529571740461475 -0.7573948302316759 1.557517845199634e-018 -0.005427442056589383 0.9999852713278943 -1.557517845199634e-018 0.005427442056589383 -0.9999852713278943</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1789\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1787\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1785\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1786\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 0 2 3 5 7 2 1 8 9 4 3 0 6 10 11 7 5 1 12 8 9 13 4 6 14 10 11 15 7 8 12 16 17 13 9 10 14 18 19 15 11 16 12 20 21 13 17 18 14 22 23 15 19 16 20 24 25 21 17 26 18 22 23 19 27 24 20 28 29 21 25 30 26 22 23 27 31 28 30 24 25 31 29 28 26 30 31 27 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1787\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1790\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1791\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1794\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">-0.0755949392914772 -1.139533400535584 -0.3458027541637421 -0.556448757648468 -1.170013546943665 -0.3584281504154205 -0.07028322666883469 -1.170013546943665 -0.3584281504154205 -0.07028322666883469 -1.170013546943665 -0.3584281504154205 -0.556448757648468 -1.170013546943665 -0.3584281504154205 -0.0755949392914772 -1.139533400535584 -0.3458027541637421 -0.5553047060966492 -1.200496077537537 -0.3458027541637421 -0.5553047060966492 -1.200496077537537 -0.3458027541637421 -0.556448757648468 -1.139533400535584 -0.3458027541637421 -0.556448757648468 -1.139533400535584 -0.3458027541637421 -0.0755949392914772 -1.200496077537537 -0.3458027541637421 -0.0755949392914772 -1.200496077537537 -0.3458027541637421 -0.08821037411689758 -1.126907825469971 -0.3153224587440491 -0.08821037411689758 -1.126907825469971 -0.3153224587440491 -0.5566866397857666 -1.213120579719544 -0.3153224587440491 -0.5566866397857666 -1.213120579719544 -0.3153224587440491 -0.556448757648468 -1.126907825469971 -0.3153224587440491 -0.556448757648468 -1.126907825469971 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.08821037411689758 -1.213120579719544 -0.3153224587440491 -0.07526279240846634 -1.139533400535584 -0.2848415970802307 -0.07526279240846634 -1.139533400535584 -0.2848415970802307 -0.5547472238540649 -1.200496077537537 -0.2848415970802307 -0.5547472238540649 -1.200496077537537 -0.2848415970802307 -0.5564488768577576 -1.139533400535584 -0.2848415970802307 -0.5564488768577576 -1.139533400535584 -0.2848415970802307 -0.0755949392914772 -1.200496077537537 -0.2848415970802307 -0.0755949392914772 -1.200496077537537 -0.2848415970802307 -0.07028322666883469 -1.170013546943665 -0.272216260433197 -0.07028322666883469 -1.170013546943665 -0.272216260433197 -0.556448757648468 -1.170013546943665 -0.272216260433197 -0.556448757648468 -1.170013546943665 -0.272216260433197</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1794\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1792\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1795\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">3.128676832243398e-018 0.6529590142748708 -0.7573932437493676 -2.732303166435686e-018 0.00463460391985898 -0.999989260165581 2.893044017440788e-018 1.228918634285302e-005 -0.9999999999244879 -2.893044017440788e-018 -1.228918634285302e-005 0.9999999999244879 2.732303166435686e-018 -0.00463460391985898 0.999989260165581 -3.128676832243398e-018 -0.6529590142748708 0.7573932437493676 0 -0.7077617258416615 -0.7064512293383264 -0 0.7077617258416615 0.7064512293383264 -4.446897604623978e-018 0.7071056219076308 -0.7071079404635636 4.446897604623978e-018 -0.7071056219076308 0.7071079404635636 0 -0.6529557627629424 -0.7573960469098476 -0 0.6529557627629424 0.7573960469098476 -3.182260625065258e-018 0.9999995671155167 0.0009304669684801947 3.182260625065258e-018 -0.9999995671155167 -0.0009304669684801947 1.549129489225603e-018 -0.9999973578805378 -0.002298745732710514 -1.549129489225603e-018 0.9999973578805378 0.002298745732710514 -1.695318849550394e-018 0.9999999999960586 -2.807632896495617e-006 1.695318849550394e-018 -0.9999999999960586 2.807632896495617e-006 5.680541635093363e-020 -0.9999999999925899 -3.849692841830614e-006 -5.680541635093363e-020 0.9999999999925899 3.849692841830614e-006 -2.405777604426924e-018 0.6527205424928446 0.7575987680875982 2.405777604426924e-018 -0.6527205424928446 -0.7575987680875982 7.907717898537523e-021 -0.7077556757223815 0.7064572906289207 -7.907717898537523e-021 0.7077556757223815 -0.7064572906289207 0 0.7071073539507441 0.7071062084218869 -0 -0.7071073539507441 -0.7071062084218869 3.196556846155714e-018 -0.6529576213860789 0.7573944445755024 -3.196556846155714e-018 0.6529576213860789 -0.7573944445755024 2.882604743371304e-018 0.001449690439264127 0.9999989491982629 -2.882604743371304e-018 -0.001449690439264127 -0.9999989491982629 -1.269824525755839e-018 0.006920767023478588 0.999976051205131 1.269824525755839e-018 -0.006920767023478588 -0.999976051205131</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1795\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1793\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1791\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1792\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"32\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 1 6 2 3 7 4 8 1 0 5 4 9 6 10 2 3 11 7 8 0 12 13 5 9 10 6 14 15 7 11 16 8 12 13 9 17 18 10 14 15 11 19 16 12 20 21 13 17 18 14 22 23 15 19 24 16 20 21 17 25 26 18 22 23 19 27 24 20 28 29 21 25 22 30 26 27 31 23 30 24 28 29 25 31 26 30 28 29 31 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1793\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1796\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1797\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1800\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"420\">0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289294123649597 -1.244844317436218 -0.3492810726165772 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.528922975063324 -1.210564017295837 -0.3656778335571289 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289459824562073 -1.256602764129639 -0.2818514406681061 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.554831862449646 -1.210564017295837 -0.3656868636608124 0.5548511743545532 -1.255672335624695 -0.2811850607395172 0.5548368096351624 -1.244843721389771 -0.3492889702320099 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5289214253425598 -1.133453845977783 -0.351294070482254 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548301935195923 -1.133448719978333 -0.3513023555278778 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5548346638679504 -1.213759303092957 -0.3473330140113831 0.5289309024810791 -1.157842874526978 -0.3406597673892975 0.5289261341094971 -1.212958931922913 -0.3474534451961517 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5548376441001892 -1.15784215927124 -0.3406679332256317 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5289332270622253 -1.056802272796631 -0.3086422681808472 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5548404455184937 -1.056671619415283 -0.3078483641147614 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289409160614014 -1.06420624256134 -0.275700181722641 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5548511147499085 -1.064203500747681 -0.2757071554660797 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289466977119446 -1.013332962989807 -0.2464721649885178 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548552870750427 -1.013330578804016 -0.2464773505926132 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.5289411544799805 -0.9177671074867249 -0.2175145447254181 0.5289518237113953 -0.8153008818626404 -0.2128923386335373 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.528944194316864 -0.7583829760551453 -0.2260089963674545 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548514127731323 -0.7583818435668945 -0.2260166704654694 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548468232154846 -0.9177647233009338 -0.2175224125385284 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5548591017723084 -0.8152992129325867 -0.2128993272781372 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289518237113953 -0.7364101409912109 -0.1902750730514526 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.554857075214386 -0.7364049553871155 -0.1902827173471451 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5289453864097595 -0.7083093523979187 -0.1946254968643189 0.5548555850982666 -0.708305835723877 -0.1946335881948471 0.5548555850982666 -0.708305835723877 -0.1946335881948471</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"140\" source=\"#ID1800\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1798\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1801\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"420\">-0.9999999710445691 -0.0001104833632839914 0.0002137856110456591 -0.9999999700643614 -7.663589426042924e-005 0.0002323751623919958 -0.9999999802680193 -8.573050672086329e-005 0.0001792044679426364 0.9999999802680193 8.573050672086329e-005 -0.0001792044679426364 0.9999999700643614 7.663589426042924e-005 -0.0002323751623919958 0.9999999710445691 0.0001104833632839914 -0.0002137856110456591 0.004961922813059091 -0.7979285849641429 -0.6027315759267288 -0.0001763919522577015 -0.7969131936155863 -0.6040938095422647 0.03049636748995247 -0.9865933133747843 -0.160323440501015 -0.03049636748995247 0.9865933133747843 0.160323440501015 0.0001763919522577015 0.7969131936155863 0.6040938095422647 -0.004961922813059091 0.7979285849641429 0.6027315759267288 -0.9999999695818748 -0.0001704942869253314 0.0001782356517235991 0.9999999695818748 0.0001704942869253314 -0.0001782356517235991 -0.0003464089528092289 -0.1304839459037725 -0.9914503617742135 -0.0003356659977346473 -0.1305078226455562 -0.991447222779233 0.0003356659977346473 0.1305078226455562 0.991447222779233 0.0003464089528092289 0.1304839459037725 0.9914503617742135 0.03947983509217013 -0.9868227730252783 -0.1569144902798821 -0.03947983509217013 0.9868227730252783 0.1569144902798821 -0.04410908481141456 0.8317655093958543 0.5533719599117346 0.00972661921211627 0.8422186636899086 0.5390483423692974 -0.03041555429328463 0.8346805984310199 0.5498938012560851 0.03041555429328463 -0.8346805984310199 -0.5498938012560851 -0.00972661921211627 -0.8422186636899086 -0.5390483423692974 0.04410908481141456 -0.8317655093958543 -0.5533719599117346 -0.9999998385693959 -0.0001250412032718077 0.0005542796040042547 0.9999998385693959 0.0001250412032718077 -0.0005542796040042547 -0.0003673869990641776 0.3426475969726668 -0.939463937208688 0.0003673869990641776 -0.3426475969726668 0.939463937208688 0.9999999781995033 4.699620345741876e-005 -0.0002034511002851032 0.9999999794693828 7.698928926646006e-005 -0.0001874403455906109 0.9999999855371815 6.872156045996573e-005 -0.0001555730832890062 -0.9999999855371815 -6.872156045996573e-005 0.0001555730832890062 -0.9999999794693828 -7.698928926646006e-005 0.0001874403455906109 -0.9999999781995033 -4.699620345741876e-005 0.0002034511002851032 0.02360047584532965 0.8444748722209845 0.5350749552419978 -0.02360047584532965 -0.8444748722209845 -0.5350749552419978 -0.9999997268103815 -4.676815955930713e-005 0.0007376936366238248 0.9999997268103815 4.676815955930713e-005 -0.0007376936366238248 0.001908403844572751 0.3420016409162702 -0.939697417047288 -0.001908403844572751 -0.3420016409162702 0.939697417047288 0.9999999777905969 0.0001522573889000832 -0.0001457274619571062 0.9999998982721315 9.728089302000219e-005 -0.0004404454047939104 -0.9999998982721315 -9.728089302000219e-005 0.0004404454047939104 -0.9999999777905969 -0.0001522573889000832 0.0001457274619571062 -0.008392300707209957 -0.1223304537586148 0.9924539431994067 -0.0009271782674676281 -0.3551960317513965 0.9347913774573027 -0.005955223996627054 -0.1212198217342457 0.9926078229219573 0.005955223996627054 0.1212198217342457 -0.9926078229219573 0.0009271782674676281 0.3551960317513965 -0.9347913774573027 0.008392300707209957 0.1223304537586148 -0.9924539431994067 -0.9999999647802734 -5.986156320317399e-005 0.0002585653599272689 0.9999999647802734 5.986156320317399e-005 -0.0002585653599272689 0.02138638165005725 0.5168164865779673 -0.855829037764625 -0.02138638165005725 -0.5168164865779673 0.855829037764625 0.9999998319739059 4.59237093275836e-005 -0.0005778781644368841 -0.9999998319739059 -4.59237093275836e-005 0.0005778781644368841 0.0003049958327635592 -0.3546827300580774 0.9349866672718339 -0.0003049958327635592 0.3546827300580774 -0.9349866672718339 -0.9999999738512297 -2.953591568042569e-005 0.0002267711839617163 0.9999999738512297 2.953591568042569e-005 -0.0002267711839617163 0.02250528561464173 0.5156341578366951 -0.8565132383048412 -0.02250528561464173 -0.5156341578366951 0.8565132383048412 0.9999999405841482 9.905564214886539e-005 -0.0003301812833618662 -0.9999999405841482 -9.905564214886539e-005 0.0003301812833618662 0.0002835536457019438 -0.534567467405807 0.845125755369384 -0.0002835536457019438 0.534567467405807 -0.845125755369384 -0.9999999421572299 -0.0001359886900621858 0.0003117572988199132 0.9999999421572299 0.0001359886900621858 -0.0003117572988199132 0.00088649570702846 0.2602505468779262 -0.9655407122307697 -0.00088649570702846 -0.2602505468779262 0.9655407122307697 0.9999999476742829 8.742145870394942e-005 -0.0003114625499332963 -0.9999999476742829 -8.742145870394942e-005 0.0003114625499332963 0.0002751967351688296 -0.5345688612684229 0.8451248764702993 -0.0002751967351688296 0.5345688612684229 -0.8451248764702993 0.0002284427270975212 -0.337955662273133 0.9411620042008967 -0.0002284427270975212 0.337955662273133 -0.9411620042008967 -0.9999999344292633 -0.000156901232732886 0.0003263793381189007 0.9999999344292633 0.000156901232732886 -0.0003263793381189007 -0.0003169333868864173 0.2604400519765147 -0.9654899682957348 0.0003169333868864173 -0.2604400519765147 0.9654899682957348 0.9999999114917834 0.0001894836831243463 -0.0003756492506452966 0.9999999038277406 0.0002058925015349785 -0.0003872373785017013 -0.9999999038277406 -0.0002058925015349785 0.0003872373785017013 -0.9999999114917834 -0.0001894836831243463 0.0003756492506452966 0.000222128065331292 -0.3379435563570671 0.9411663526581582 -0.000222128065331292 0.3379435563570671 -0.9411663526581582 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 0.9999997936283012 -0.0001324821515320269 0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.9999997936283012 0.0001324821515320269 -0.000628642851339183 -0.000297981301382343 0.2505951925739997 -0.9680919174675223 0.000297981301382343 -0.2505951925739997 0.9680919174675223 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 -0.9999996612245929 0.0001562940157440903 -0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.9999996612245929 -0.0001562940157440903 0.0008081601822682215 0.0002747071523925597 -0.2217236845486482 0.9751094975674023 -0.0002747071523925597 0.2217236845486482 -0.9751094975674023 -0.9999996997481733 4.424631410726776e-005 0.0007736574350763412 -0.9999996243670856 6.513592050351822e-005 0.0008643049230435587 -0.9999999477055301 -8.378372903372794e-005 0.0003123607271175583 0.9999999477055301 8.378372903372794e-005 -0.0003123607271175583 0.9999996243670856 -6.513592050351822e-005 -0.0008643049230435587 0.9999996997481733 -4.424631410726776e-005 -0.0007736574350763412 -0.0003063365191113349 0.2505969935595491 -0.9680914486642531 0.0003063365191113349 -0.2505969935595491 0.9680914486642531 0.9999995691084593 -7.809505908810414e-005 -0.0009250319224987596 0.9999996638854315 -5.346291194945224e-005 -0.0008181508057818759 0.9999999657621683 6.410373996497947e-005 -0.0002537052871345287 -0.9999999657621683 -6.410373996497947e-005 0.0002537052871345287 -0.9999996638854315 5.346291194945224e-005 0.0008181508057818759 -0.9999995691084593 7.809505908810414e-005 0.0009250319224987596 0.0002833451553801525 -0.2217220549394402 0.9751098656402543 -0.0002833451553801525 0.2217220549394402 -0.9751098656402543 -0.9999999418829865 -0.0001503792467214633 0.000305974028555818 0.9999999418829865 0.0001503792467214633 -0.000305974028555818 -0.0003202536291034038 0.5310569474512576 -0.8473360702822497 0.0003202536291034038 -0.5310569474512576 0.8473360702822497 0.9999999820584712 4.249982566400346e-005 -0.000184599085539308 -0.9999999820584712 -4.249982566400346e-005 0.000184599085539308 0.0003009137736632499 -0.06276316217133647 0.9980284038669217 -0.0003009137736632499 0.06276316217133647 -0.9980284038669217 -0.999999931634918 -0.0001789863694918537 0.0003235645826783615 0.999999931634918 0.0001789863694918537 -0.0003235645826783615 -0.0003366867603659674 0.5310630500708145 -0.8473322391432472 0.0003366867603659674 -0.5310630500708145 0.8473322391432472 0.9999999844430778 2.601700140070584e-005 -0.000174461915128319 -0.9999999844430778 -2.601700140070584e-005 0.000174461915128319 0.0003135305943188504 -0.06272726288933955 0.9980306569384418 -0.0003135305943188504 0.06272726288933955 -0.9980306569384418 0.0002752074406906135 0.1530052876970384 0.988225331691923 -0.0002752074406906135 -0.1530052876970384 -0.988225331691923 0.0002878377690457768 0.1530166634393099 0.9882235667394902 -0.0002878377690457768 -0.1530166634393099 -0.9882235667394902</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"140\" source=\"#ID1801\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1799\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1797\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1798\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"104\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 14 7 15 16 10 17 6 8 18 19 9 11 15 7 6 11 10 16 20 21 22 23 24 25 12 2 26 27 3 13 28 14 15 16 17 29 30 31 32 33 34 35 21 36 22 23 37 24 38 12 26 27 13 39 40 14 28 29 17 41 32 42 43 44 45 33 31 42 32 33 45 34 46 47 48 49 50 51 38 26 52 53 27 39 40 28 54 55 29 41 42 56 43 44 57 45 48 47 58 59 50 49 60 38 52 53 39 61 62 40 54 55 41 63 43 56 64 65 57 44 47 66 58 59 67 50 60 52 68 69 53 61 62 54 70 71 55 63 56 72 64 65 73 57 58 66 74 75 67 59 66 76 74 75 77 67 68 52 78 79 53 69 80 62 70 71 63 81 64 82 83 84 85 65 64 72 82 85 73 65 74 76 86 87 77 75 88 89 90 91 92 93 80 70 94 95 71 81 96 97 98 99 100 101 76 102 86 87 103 77 104 105 106 107 108 109 110 80 94 95 81 111 112 113 114 115 116 117 86 102 118 119 103 87 104 106 120 121 107 109 110 94 122 123 95 111 114 113 124 125 116 115 102 126 118 119 127 103 120 106 128 129 107 121 130 110 122 123 111 131 114 124 132 133 125 115 126 134 118 119 135 127 126 136 134 135 137 127 136 138 134 135 139 137</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1799\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1802\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1803\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1806\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"420\">-0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608031153678894 -1.247872471809387 -0.3468936085700989 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.560808539390564 -1.213561296463013 -0.3632311820983887 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5607894062995911 -1.259750366210938 -0.2794849276542664 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348989367485046 -1.213563799858093 -0.3632392883300781 -0.5348796248435974 -1.258819937705994 -0.2788176536560059 -0.5348930358886719 -1.247872471809387 -0.3469014763832092 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.560810387134552 -1.13647985458374 -0.3487123250961304 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5349004864692688 -1.136476755142212 -0.3487202823162079 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5348954796791077 -1.216791391372681 -0.3448910117149353 -0.5608025193214417 -1.160883188247681 -0.3381218314170837 -0.5608051419258118 -1.215991377830505 -0.3450102508068085 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5348924994468689 -1.160885214805603 -0.3381282985210419 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5608002543449402 -1.059903621673584 -0.3059261739253998 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5348899364471436 -1.059774518013001 -0.3051319122314453 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607911944389343 -1.067364573478699 -0.2729972004890442 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5348814725875855 -1.067362785339356 -0.2730053663253784 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607850551605225 -1.016543388366699 -0.2436815649271011 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348749160766602 -1.016541957855225 -0.2436883449554443 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607941746711731 -0.9209601283073425 -0.2145557850599289 -0.5607836842536926 -0.8185901641845703 -0.2097545266151428 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5607907772064209 -0.7616487145423889 -0.2227715104818344 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348812341690064 -0.7616477012634277 -0.2227791100740433 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348843336105347 -0.9209582209587097 -0.2145633101463318 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5348730087280273 -0.8185886740684509 -0.2097619771957398 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607836842536926 -0.739723801612854 -0.1869997531175613 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5348730087280273 -0.739721953868866 -0.1870074421167374 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5607865452766419 -0.7116178870201111 -0.1912998855113983 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012 -0.5348761677742004 -0.7116161584854126 -0.1913094073534012</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"140\" source=\"#ID1806\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1804\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1807\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"420\">-0.9999999796474213 -7.372837380031436e-005 0.0001878011821307511 -0.9999999794114374 -6.685496042745983e-005 0.0001915921166301781 -0.9999999814053816 -6.625935140178148e-005 0.0001811047625334675 0.9999999814053816 6.625935140178148e-005 -0.0001811047625334675 0.9999999794114374 6.685496042745983e-005 -0.0001915921166301781 0.9999999796474213 7.372837380031436e-005 -0.0001878011821307511 0.004952013066311905 -0.796870136383622 -0.6041303363567656 -0.0001945461549902302 -0.7958507196312642 -0.6054928523229591 0.03051534998570993 -0.9863101208755875 -0.162052950832849 -0.03051534998570993 0.9863101208755875 0.162052950832849 0.0001945461549902302 0.7958507196312642 0.6054928523229591 -0.004952013066311905 0.796870136383622 0.6041303363567656 -0.9999999775545849 -8.380028082577559e-005 0.0001945978994759896 0.9999999775545849 8.380028082577559e-005 -0.0001945978994759896 -0.0003263719987045853 -0.1287268519209083 -0.9916800346260133 -0.0003127148091308122 -0.1287912989425779 -0.9916716712330405 0.0003127148091308122 0.1287912989425779 0.9916716712330405 0.0003263719987045853 0.1287268519209083 0.9916800346260133 0.03951270650674746 -0.9865457996395824 -0.158638366223334 -0.03951270650674746 0.9865457996395824 0.158638366223334 -0.04412298859978101 0.8307933462406718 0.5548293230528203 0.009702529785641144 0.8412708268827518 0.5405268325918423 -0.03043120518351949 0.8337144134479427 0.5513567071871268 0.03043120518351949 -0.8337144134479427 -0.5513567071871268 -0.009702529785641144 -0.8412708268827518 -0.5405268325918423 0.04412298859978101 -0.8307933462406718 -0.5548293230528203 -0.9999998879205081 -0.0001067768407130082 0.0004612566285053172 0.9999998879205081 0.0001067768407130082 -0.0004612566285053172 -0.0003259821602667881 0.3442855023723608 -0.9388649458744545 0.0003259821602667881 -0.3442855023723608 0.9388649458744545 0.9999999796040053 8.467560949920889e-005 -0.0001833631096726923 0.9999999796560025 8.967387180890078e-005 -0.0001806836774636798 0.9999999816423528 6.897477977519543e-005 -0.0001787673738543972 -0.9999999816423528 -6.897477977519543e-005 0.0001787673738543972 -0.9999999796560025 -8.967387180890078e-005 0.0001806836774636798 -0.9999999796040053 -8.467560949920889e-005 0.0001833631096726923 0.023576545125666 0.8435343970522004 0.5365574223787406 -0.023576545125666 -0.8435343970522004 -0.5365574223787406 -0.9999998253700634 -5.479900386395953e-005 0.0005884359877822771 0.9999998253700634 5.479900386395953e-005 -0.0005884359877822771 0.001943192923113494 0.3436563931974262 -0.9390934497779226 -0.001943192923113494 -0.3436563931974262 0.9390934497779226 0.9999999774256322 9.036082572671157e-005 -0.0001923113531821971 0.9999998844095683 0.0001075835678604766 -0.000468622050062329 -0.9999998844095683 -0.0001075835678604766 0.000468622050062329 -0.9999999774256322 -9.036082572671157e-005 0.0001923113531821971 -0.008396031932909377 -0.1240281200667111 0.9922431819269403 -0.001015849563375322 -0.3568515298151736 0.9341605609948617 -0.005979590096272994 -0.1229270838485122 0.9923976907262438 0.005979590096272994 0.1229270838485122 -0.9923976907262438 0.001015849563375322 0.3568515298151736 -0.9341605609948617 0.008396031932909377 0.1240281200667111 -0.9922431819269403 -0.9999999543077748 -7.676893325396516e-005 0.0002923884051408668 0.9999999543077748 7.676893325396516e-005 -0.0002923884051408668 0.02139729440545909 0.5182176088367644 -0.8549810908339625 -0.02139729440545909 -0.5182176088367644 0.8549810908339625 0.9999998149178142 5.103504527862209e-005 -0.0006062670709983245 -0.9999998149178142 -5.103504527862209e-005 0.0006062670709983245 0.0002154623307682091 -0.3563155275693334 0.9343656663153733 -0.0002154623307682091 0.3563155275693334 -0.9343656663153733 -0.9999999638778768 -4.413850467589816e-005 0.0002651339993739532 0.9999999638778768 4.413850467589816e-005 -0.0002651339993739532 0.02251288538210824 0.5170403867847911 -0.8556648925982681 -0.02251288538210824 -0.5170403867847911 0.8556648925982681 0.9999999568998583 7.114767680534288e-005 -0.000284847836186255 -0.9999999568998583 -7.114767680534288e-005 0.000284847836186255 0.0002932292485633025 -0.536041123254263 0.8441918195510521 -0.0002932292485633025 0.536041123254263 -0.8441918195510521 -0.9999999118959498 -0.0001881429300790426 0.0003752470261725238 0.9999999118959498 0.0001881429300790426 -0.0003752470261725238 0.0009032151263764276 0.2618195655509092 -0.9651164174840093 -0.0009032151263764276 -0.2618195655509092 0.9651164174840093 0.9999999668096723 3.431042508831439e-005 -0.0002553496607921055 -0.9999999668096723 -3.431042508831439e-005 0.0002553496607921055 0.0002960012507453714 -0.5360422065958079 0.8441911306873324 -0.0002960012507453714 0.5360422065958079 -0.8441911306873324 0.0002720308578548875 -0.3395970168755311 0.9405709926042013 -0.0002720308578548875 0.3395970168755311 -0.9405709926042013 -0.9999998990046093 -0.0002155761766725763 0.0003943573040884083 0.9999998990046093 0.0002155761766725763 -0.0003943573040884083 -0.0002998260502447587 0.2620009282912986 -0.9650675746696897 0.0002998260502447587 -0.2620009282912986 0.9650675746696897 0.9999999102642094 0.0001904143557393747 -0.0003784361855243776 0.9999998959825797 0.0002202313195086972 -0.0003994158180963879 -0.9999998959825797 -0.0002202313195086972 0.0003994158180963879 -0.9999999102642094 -0.0001904143557393747 0.0003784361855243776 0.0002659471541952785 -0.3395951480894923 0.9405716690748168 -0.0002659471541952785 0.3395951480894923 -0.9405716690748168 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 0.9999996958505543 -0.0001384741245603834 0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.9999996958505543 0.0001384741245603834 -0.0007675439503504688 -0.0002934433779523444 0.2522218127606528 -0.9676694017373464 0.0002934433779523444 -0.2522218127606528 0.9676694017373464 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 -0.9999996598539143 0.0001486783786107064 -0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.9999996598539143 -0.0001486783786107064 0.0008112871228949647 0.0002920699888821517 -0.2234143247973296 0.9747235270426559 -0.0002920699888821517 0.2234143247973296 -0.9747235270426559 -0.9999997276497483 4.385392790234016e-005 0.0007367341868116179 -0.9999996583977281 6.382463746765831e-005 0.0008240939525973544 -0.9999999589200279 -5.960901760188783e-005 0.0002803688776326599 0.9999999589200279 5.960901760188783e-005 -0.0002803688776326599 0.9999996583977281 -6.382463746765831e-005 -0.0008240939525973544 0.9999997276497483 -4.385392790234016e-005 -0.0007367341868116179 -0.0003043815696399995 0.2522203005924734 -0.9676697925020199 0.0003043815696399995 -0.2522203005924734 0.9676697925020199 0.9999995691343151 -6.720279912305352e-005 -0.0009258590432243916 0.999999655350043 -4.506394947157887e-005 -0.0008290169092028616 0.9999999456349861 6.865112386163782e-005 -0.000322516740449088 -0.9999999456349861 -6.865112386163782e-005 0.000322516740449088 -0.999999655350043 4.506394947157887e-005 0.0008290169092028616 -0.9999995691343151 6.720279912305352e-005 0.0009258590432243916 0.0002943637441851266 -0.223413529751691 0.9747237085830406 -0.0002943637441851266 0.223413529751691 -0.9747237085830406 -0.9999999692246961 -6.646992415419717e-005 0.0002390237561556552 0.9999999692246961 6.646992415419717e-005 -0.0002390237561556552 -0.0003262085661851687 0.5324510706906751 -0.8464607202394717 0.0003262085661851687 -0.5324510706906751 0.8464607202394717 0.9999999595324278 7.331680825462007e-005 -0.0002748814082542198 -0.9999999595324278 -7.331680825462007e-005 0.0002748814082542198 0.0002994691661593511 -0.06449091226997794 0.997918249433692 -0.0002994691661593511 0.06449091226997794 -0.997918249433692 -0.9999999694663382 -6.533110756353835e-005 0.0002383257626904562 0.9999999694663382 6.533110756353835e-005 -0.0002383257626904562 -0.0003465867334712809 0.5324586302942831 -0.8464559568594058 0.0003465867334712809 -0.5324586302942831 0.8464559568594058 0.9999999601888447 7.058082113336549e-005 -0.0002732044230723244 -0.9999999601888447 -7.058082113336549e-005 0.0002732044230723244 0.0003177401799641748 -0.06447600574064884 0.997919207012727 -0.0003177401799641748 0.06447600574064884 -0.997919207012727 0.000319944634965314 0.1512712693546003 0.9884922360359129 -0.000319944634965314 -0.1512712693546003 -0.9884922360359129 0.0003531671350192214 0.1513012009785921 0.9884876437545442 -0.0003531671350192214 -0.1513012009785921 -0.9884876437545442</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"140\" source=\"#ID1807\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1805\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1803\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1804\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"104\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 14 7 15 16 10 17 6 8 18 19 9 11 15 7 6 11 10 16 20 21 22 23 24 25 12 2 26 27 3 13 28 14 15 16 17 29 30 31 32 33 34 35 21 36 22 23 37 24 38 12 26 27 13 39 40 14 28 29 17 41 32 42 43 44 45 33 31 42 32 33 45 34 46 47 48 49 50 51 38 26 52 53 27 39 40 28 54 55 29 41 42 56 43 44 57 45 48 47 58 59 50 49 60 38 52 53 39 61 62 40 54 55 41 63 43 56 64 65 57 44 47 66 58 59 67 50 60 52 68 69 53 61 62 54 70 71 55 63 56 72 64 65 73 57 58 66 74 75 67 59 66 76 74 75 77 67 68 52 78 79 53 69 80 62 70 71 63 81 64 82 83 84 85 65 64 72 82 85 73 65 74 76 86 87 77 75 88 89 90 91 92 93 80 70 94 95 71 81 96 97 98 99 100 101 76 102 86 87 103 77 104 105 106 107 108 109 110 80 94 95 81 111 112 113 114 115 116 117 86 102 118 119 103 87 104 106 120 121 107 109 110 94 122 123 95 111 114 113 124 125 116 115 102 126 118 119 127 103 120 106 128 129 107 121 130 110 122 123 111 131 114 124 132 133 125 115 118 126 134 135 127 119 126 136 134 135 137 127 136 138 134 135 139 137</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1805\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1808\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1809\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1812\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5608031153678894 1.481810569763184 -0.3395479917526245 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.560808539390564 1.422909498214722 -0.3591154217720032 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5607894062995911 1.509298920631409 -0.2700772881507874 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348796248435974 1.507829546928406 -0.2694806456565857 -0.5348989367485046 1.422904849052429 -0.3591227531433106 -0.5348930358886719 1.481802105903626 -0.3395566344261169 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5349004864692688 1.296450614929199 -0.3510739803314209 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.560810387134552 1.296456336975098 -0.3510651290416718 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5348899364471436 1.173974275588989 -0.3134766221046448 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5608002543449402 1.174095749855042 -0.3142724633216858 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5348843336105347 0.9490802884101868 -0.2740320861339569 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5607941746711731 0.9490834474563599 -0.2740236520767212 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348812341690064 0.6891821622848511 -0.2446908503770828 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607907772064209 0.689190149307251 -0.2446835041046143 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607865452766419 0.6087086796760559 -0.3402119576931</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1812\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1810\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1813\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"300\">-0.999999984411443 3.080246314798667e-005 0.0001738629406479815 -0.9999999823747726 3.054551147014028e-005 0.0001852496326182806 -0.9999999829039918 3.417859454922746e-005 0.0001817246268044369 0.9999999829039918 -3.417859454922746e-005 -0.0001817246268044369 0.9999999823747726 -3.054551147014028e-005 -0.0001852496326182806 0.999999984411443 -3.080246314798667e-005 -0.0001738629406479815 -1.769463302100483e-005 0.68708007618282 -0.7265817012556195 0.007141960610142448 0.6885656521728911 -0.7251388384622385 0.04815605561094433 0.9347644673763428 -0.3519891828431915 -0.04815605561094433 -0.9347644673763428 0.3519891828431915 -0.007141960610142448 -0.6885656521728911 0.7251388384622385 1.769463302100483e-005 -0.68708007618282 0.7265817012556195 -0.0002616104941960659 0.1282516270709203 -0.9917416254819653 -0.0002578241739765837 0.1282135302883974 -0.9917465523901162 0.0002578241739765837 -0.1282135302883974 0.9917465523901162 0.0002616104941960659 -0.1282516270709203 0.9917416254819653 -0.9999999828490539 4.21748978558922e-005 0.0001803418140285232 0.9999999828490539 -4.21748978558922e-005 -0.0001803418140285232 0.06106622712373427 0.9356753701782472 -0.347537792976063 -0.06106622712373427 -0.9356753701782472 0.347537792976063 -0.0003717950278579427 -0.1797419237099666 -0.9837137300198152 0.0003717950278579427 0.1797419237099666 0.9837137300198152 -0.9999998988493954 4.503593342057304e-005 0.0004475186744983042 0.9999998988493954 -4.503593342057304e-005 -0.0004475186744983042 0.003688797389667888 -0.3374031293935553 0.9413530267913594 -0.05461194083058513 -0.658038213705086 0.7510014948204405 -0.04202449406539048 -0.6607579488210175 0.7494216936867983 0.04202449406539048 0.6607579488210175 -0.7494216936867983 0.05461194083058513 0.658038213705086 -0.7510014948204405 -0.003688797389667888 0.3374031293935553 -0.9413530267913594 0.999999983663352 -4.17648800326373e-005 -0.0001758664004577456 0.9999999846999328 -3.155013974575054e-005 -0.0001720602310259234 0.999999983985305 -4.439629059590873e-005 -0.0001733734677599167 -0.999999983985305 4.439629059590873e-005 0.0001733734677599167 -0.9999999846999328 3.155013974575054e-005 0.0001720602310259234 -0.999999983663352 4.17648800326373e-005 0.0001758664004577456 0.9999998958878661 -4.558295482759263e-005 -0.0004540335354482252 0.9999999832112049 -4.683516868800383e-005 -0.0001771554595090167 -0.9999999832112049 4.683516868800383e-005 0.0001771554595090167 -0.9999998958878661 4.558295482759263e-005 0.0004540335354482252 0.00144405316009299 -0.1793549727249666 -0.9837833646028464 -0.00144405316009299 0.1793549727249666 0.9837833646028464 -0.9999998195145633 -2.455150091527985e-006 0.0006008034730474542 0.9999998195145633 2.455150091527985e-006 -0.0006008034730474542 0.01266054751111889 -0.3617188438700049 0.9322012596677101 -0.01266054751111889 0.3617188438700049 -0.9322012596677101 0.9999998074597568 6.109781507060899e-006 -0.000620518428385647 -0.9999998074597568 -6.109781507060899e-006 0.000620518428385647 0.0269870394274772 -0.2306017678121405 -0.9726739044432391 -0.0269870394274772 0.2306017678121405 0.9726739044432391 -0.999999963093016 1.797775736911185e-005 0.0002710918056143681 0.999999963093016 -1.797775736911185e-005 -0.0002710918056143681 0.9999999649068889 -1.437273717084181e-005 -0.0002645366617785483 -0.9999999649068889 1.437273717084181e-005 0.0002645366617785483 0.02771718101855024 -0.2312164877542377 -0.9725074260215083 -0.02771718101855024 0.2312164877542377 0.9725074260215083 -0.9999999664707235 1.5466008783727e-005 0.0002584943998064539 0.9999999664707235 -1.5466008783727e-005 -0.0002584943998064539 0.9999999689300021 -1.08382129044566e-005 -0.0002490432252599668 -0.9999999689300021 1.08382129044566e-005 0.0002490432252599668 0.0007309652795617584 -0.1440840201039932 -0.9895651877670476 -0.0007309652795617584 0.1440840201039932 0.9895651877670476 -0.9999999607022785 2.060547431277325e-005 0.0002795905151389421 0.9999999607022785 -2.060547431277325e-005 -0.0002795905151389421 0.9999999601351655 -2.072338356797332e-005 -0.0002816029281138686 -0.9999999601351655 2.072338356797332e-005 0.0002816029281138686 0.9999999506935324 -2.16022513446366e-005 -0.0003132830601111448 -0.9999999506935324 2.16022513446366e-005 0.0003132830601111448 -0.000339041137228352 -0.1442078179617186 -0.9895473663700121 0.000339041137228352 0.1442078179617186 0.9895473663700121 -0.9999999558190014 2.135714131397518e-005 0.0002964892372467364 0.9999999558190014 -2.135714131397518e-005 -0.0002964892372467364 0.9999999449633971 -2.495140936292704e-005 -0.0003308332364104989 -0.9999999449633971 2.495140936292704e-005 0.0003308332364104989 -0.0001499912736990772 0.3702509537358272 -0.9289317567832032 0.0001499912736990772 -0.3702509537358272 0.9289317567832032 -0.9999999562731093 2.02279099250094e-005 0.0002950332374563406 0.9999999562731093 -2.02279099250094e-005 -0.0002950332374563406 0.9999999675719412 5.01596575947656e-005 -0.0002496800460373278 0.9999999449833134 -2.541309867504692e-005 -0.0003307378790345847 -0.9999999449833134 2.541309867504692e-005 0.0003307378790345847 -0.9999999675719412 -5.01596575947656e-005 0.0002496800460373278 -0.0001644005810996404 0.3700142651591096 -0.9290260580582297 0.0001644005810996404 -0.3700142651591096 0.9290260580582297 -0.9999999563847567 2.019219442861884e-005 0.0002946570214695821 -0.9999999756782813 -4.311763024688826e-005 0.0002162968025300171 0.9999999756782813 4.311763024688826e-005 -0.0002162968025300171 0.9999999563847567 -2.019219442861884e-005 -0.0002946570214695821 0.9999999787959655 0.0001109095879281376 -0.0001735140691197846 -0.9999999787959655 -0.0001109095879281376 0.0001735140691197846 -0.0001242106906019887 0.7647709191762052 -0.6443022782468542 0.0001242106906019887 -0.7647709191762052 0.6443022782468542 -0.9999999841897669 -9.517416516503213e-005 0.0001502076704646804 0.9999999841897669 9.517416516503213e-005 -0.0001502076704646804 0.9999999805261771 0.0001738433233134982 -9.341383556635226e-005 -0.9999999805261771 -0.0001738433233134982 9.341383556635226e-005 -0.0001507559291783691 0.7647673683511757 -0.6443064873007778 0.0001507559291783691 -0.7647673683511757 0.6443064873007778 -0.9999999855523141 -0.0001492205700541566 8.14161725338505e-005 0.9999999855523141 0.0001492205700541566 -8.14161725338505e-005</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"100\" source=\"#ID1813\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1811\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1809\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1810\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"80\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 6 12 13 14 15 11 16 0 2 3 5 17 8 7 18 19 10 9 6 13 7 10 14 11 12 20 13 14 21 15 22 0 16 17 5 23 24 25 26 27 28 29 30 31 32 33 34 35 31 36 37 38 39 34 12 40 20 21 41 15 42 22 16 17 23 43 44 24 26 27 29 45 31 37 32 33 38 34 36 46 37 38 47 39 20 40 48 49 41 21 50 22 42 43 23 51 36 52 46 47 53 39 40 54 48 49 55 41 56 50 42 43 51 57 52 58 46 47 59 53 48 54 60 61 55 49 62 50 56 57 51 63 52 64 58 59 65 53 66 64 52 53 65 67 54 68 60 61 69 55 62 70 50 51 71 63 66 72 64 65 73 67 60 68 74 75 69 61 76 70 62 63 71 77 78 79 66 67 80 81 68 82 74 75 83 69 84 85 70 71 86 87 78 88 72 73 89 81 90 74 82 83 75 91 92 85 76 77 86 93 94 88 78 81 89 95 96 90 82 83 91 97 92 98 85 86 99 93</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1811\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1814\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1815\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1818\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"102\">-0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5348954796791077 1.430376529693604 -0.3402135670185089 -0.5608051419258118 1.429038286209106 -0.3404039442539215 -0.5608025193214417 1.33824348449707 -0.3381932675838471 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5348924994468689 1.338237524032593 -0.3382009267807007 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5607911944389343 1.190282702445984 -0.2801921963691711 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5348814725875855 1.19028103351593 -0.2802007794380188 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5607850551605225 1.109183430671692 -0.2548387050628662 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5348749160766602 1.109183430671692 -0.2548462450504303 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5607836842536926 0.7852437496185303 -0.2271939516067505 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5348730087280273 0.7852428555488586 -0.2272019535303116 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607836842536926 0.6559188961982727 -0.2185437679290772 -0.5607865452766419 0.6087086796760559 -0.3402119576931 -0.5348730087280273 0.6559127569198608 -0.2185515016317368 -0.5348761677742004 0.6087058782577515 -0.3402213454246521 -0.5348761677742004 0.6087058782577515 -0.3402213454246521</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID1818\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1816\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1819\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"102\">-0.0004538475399847224 0.1966213553393696 0.9804793912402851 0.003688797389667888 -0.3374031293935553 0.9413530267913594 0.01266054751111889 -0.3617188438700049 0.9322012596677101 -0.01266054751111889 0.3617188438700049 -0.9322012596677101 -0.003688797389667888 0.3374031293935553 -0.9413530267913594 0.0004538475399847224 -0.1966213553393696 -0.9804793912402851 0.0003336166368011087 0.1964552482294163 0.9805127353293572 -0.0003336166368011087 -0.1964552482294163 -0.9805127353293572 0.0003352725620566191 0.3318817225163497 0.9433209474255778 -0.0003352725620566191 -0.3318817225163497 -0.9433209474255778 0.0003284351731852359 0.3318825095467581 0.9433206729353932 -0.0003284351731852359 -0.3318825095467581 -0.9433206729353932 0.0002910058735337027 0.1928548670595222 0.9812272497067311 -0.0002910058735337027 -0.1928548670595222 -0.9812272497067311 0.0002860690277062792 0.1928586257396166 0.9812265124028894 -0.0002860690277062792 -0.1928586257396166 -0.9812265124028894 0.000310031474760802 0.07588661516819907 0.9971164051999135 -0.000310031474760802 -0.07588661516819907 -0.9971164051999135 0.0003107550880094139 0.07588637661018609 0.9971164231303444 -0.0003107550880094139 -0.07588637661018609 -0.9971164231303444 0.0003132233325970984 0.06673756753526176 0.9977705141818034 -0.0003132233325970984 -0.06673756753526176 -0.9977705141818034 0.000313622874468566 0.06673748783363555 0.9977705193872728 0.000313622874468566 0.06673748783363555 0.9977705193872728 -0.000313622874468566 -0.06673748783363555 -0.9977705193872728 -0.000313622874468566 -0.06673748783363555 -0.9977705193872728 -9.50595624338689e-005 -0.932277960717291 0.3617427192418518 1.239626849636202e-005 -0.9322856835495533 0.3617228277215512 -0.0001129214045189766 -0.9322766759051838 0.3617460252883749 0.0001129214045189766 0.9322766759051838 -0.3617460252883749 -1.239626849636202e-005 0.9322856835495533 -0.3617228277215512 9.50595624338689e-005 0.932277960717291 -0.3617427192418518 3.02581460467479e-005 -0.9322869661950879 0.3617195208268472 -3.02581460467479e-005 0.9322869661950879 -0.3617195208268472</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"34\" source=\"#ID1819\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1817\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1815\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1816\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 0 2 6 8 0 6 8 6 10 12 8 10 12 10 14 16 12 14 16 14 18 20 16 18 22 23 18 26 27 28 32 27 26</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1817\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 7 3 5 7 5 9 11 7 9 11 9 13 15 11 13 15 13 17 19 15 17 19 17 21 19 24 25 29 30 31 31 30 33</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1817\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1820\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1821\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1824\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"312\">0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5299186110496521 1.480006098747253 -0.3386235237121582 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.555822491645813 1.421113967895508 -0.3582329750061035 0.555822491645813 1.421113967895508 -0.3582329750061035 0.5299125909805298 1.421116590499878 -0.3582248091697693 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.5299325585365295 1.507454514503479 -0.2691366970539093 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.555822491645813 1.421113967895508 -0.3582329750061035 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555841863155365 1.505983471870422 -0.2685408592224121 0.555822491645813 1.421113967895508 -0.3582329750061035 0.5558279752731323 1.480002999305725 -0.3386321067810059 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558210611343384 1.294655680656433 -0.3502571284770966 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299108028411865 1.294658899307251 -0.3502485454082489 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.555831253528595 1.172155499458313 -0.3127322494983673 0.555831253528595 1.172155499458313 -0.3127322494983673 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.555831253528595 1.172155499458313 -0.3127322494983673 0.555831253528595 1.172155499458313 -0.3127322494983673 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299217104911804 1.172280669212341 -0.3135255575180054 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5558371543884277 0.947236955165863 -0.2734180390834808 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5299274325370789 0.9472411870956421 -0.2734081745147705 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558404922485352 0.6873263120651245 -0.2442289292812347 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299310684204102 0.6873282194137573 -0.244221031665802 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299354195594788 0.6068390607833862 -0.3397958278656006</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"104\" source=\"#ID1824\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1822\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1825\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"312\">-0.9999999848904151 3.528278127642576e-005 0.0001702183750348007 -0.9999999821275435 4.077827133365155e-005 0.0001846132324601768 -0.9999999828207767 4.598721379066316e-005 0.0001795650924393674 0.9999999828207767 -4.598721379066316e-005 -0.0001795650924393674 0.9999999821275435 -4.077827133365155e-005 -0.0001846132324601768 0.9999999848904151 -3.528278127642576e-005 -0.0001702183750348007 -0.0001570206413457278 0.6874668076573934 -0.7262157831621885 0.007030060403267907 0.6890189558672211 -0.7247092221756054 0.04815427865322053 0.9349903218087026 -0.351389048735795 -0.04815427865322053 -0.9349903218087026 0.351389048735795 -0.007030060403267907 -0.6890189558672211 0.7247092221756054 0.0001570206413457278 -0.6874668076573934 0.7262157831621885 -0.0003006440224052878 0.1288144224115145 -0.9916686715793536 -0.0003007162018480404 0.1287931075008599 -0.9916714400596791 0.0003007162018480404 -0.1287931075008599 0.9916714400596791 0.0003006440224052878 -0.1288144224115145 0.9916686715793536 -0.9999999832730073 5.485520590614737e-005 0.000174484646019524 0.9999999832730073 -5.485520590614737e-005 -0.000174484646019524 0.06111545261249659 0.9359016075152975 -0.3469194178800774 -0.06111545261249659 -0.9359016075152975 0.3469194178800774 -0.000347024791685719 -0.1791548186261827 -0.9838208325385338 0.000347024791685719 0.1791548186261827 0.9838208325385338 -0.9999998851838614 4.645765363971029e-005 0.0004769422924880472 0.9999998851838614 -4.645765363971029e-005 -0.0004769422924880472 0.003744679559962774 -0.3379545967345152 0.9411549648814507 -0.05464788827610732 -0.6584735395667153 0.7506172166939976 -0.04204452399270275 -0.6611961254129715 0.7490340057307822 0.04204452399270275 0.6611961254129715 -0.7490340057307822 0.05464788827610732 0.6584735395667153 -0.7506172166939976 -0.003744679559962774 0.3379545967345152 -0.9411549648814507 0.9999999821001934 -3.099181584322151e-005 -0.0001866524055217305 0.9999999871170857 -3.304050953679614e-005 -0.0001570800856432446 0.9999999834183203 -4.065045476826068e-005 -0.0001775130975463934 -0.9999999834183203 4.065045476826068e-005 0.0001775130975463934 -0.9999999871170857 3.304050953679614e-005 0.0001570800856432446 -0.9999999821001934 3.099181584322151e-005 0.0001866524055217305 0.9999999066122413 -4.146598711928248e-005 -0.0004301814508853706 0.9999999864921676 -7.054760133948506e-005 -0.0001484543718766534 -0.9999999864921676 7.054760133948506e-005 0.0001484543718766534 -0.9999999066122413 4.146598711928248e-005 0.0004301814508853706 0.001461077543801844 -0.1787827834529962 -0.98388748421413 -0.001461077543801844 0.1787827834529962 0.98388748421413 -0.9999997899934668 -6.887446674136239e-006 0.0006480475176959769 0.9999997899934668 6.887446674136239e-006 -0.0006480475176959769 0.01272641420307216 -0.3622788561835054 0.9319828693403665 -0.01272641420307216 0.3622788561835054 -0.9319828693403665 0.9999998255747505 7.504722018172481e-006 -0.0005905879676731446 -0.9999998255747505 -7.504722018172481e-006 0.0005905879676731446 0.02687724453678354 -0.2300407755504435 -0.9728097734450761 -0.02687724453678354 0.2300407755504435 0.9728097734450761 -0.9999999628618436 1.707942303663736e-005 0.0002720011119534417 0.9999999628618436 -1.707942303663736e-005 -0.0002720011119534417 0.9999999625126778 -1.855958253013337e-005 -0.0002731852579091885 -0.9999999625126778 1.855958253013337e-005 0.0002731852579091885 0.02759868326011885 -0.2306650373348312 -0.9726417394054341 -0.02759868326011885 0.2306650373348312 0.9726417394054341 -0.9999999667524542 1.376135579283297e-005 0.0002574989626878153 0.9999999667524542 -1.376135579283297e-005 -0.0002574989626878153 0.9999999654584074 -1.64977949172472e-005 -0.000262318521738804 -0.9999999654584074 1.64977949172472e-005 0.000262318521738804 0.0006684749033927384 -0.1435045057193308 -0.989649437922113 -0.0006684749033927384 0.1435045057193308 0.989649437922113 -0.9999999599982802 2.18659309668192e-005 0.0002820023393009842 0.9999999599982802 -2.18659309668192e-005 -0.0002820023393009842 0.9999999604701944 -2.058008749922922e-005 -0.0002804212366822801 -0.9999999604701944 2.058008749922922e-005 0.0002804212366822801 0.9999999523663518 -1.982392295917662e-005 -0.0003080167310226706 -0.9999999523663518 1.982392295917662e-005 0.0003080167310226706 -0.0003975532815431017 -0.1436292508536076 -0.9896314870953833 0.0003975532815431017 0.1436292508536076 0.9896314870953833 -0.9999999522757483 2.199274651290159e-005 0.0003081636260085259 0.9999999522757483 -2.199274651290159e-005 -0.0003081636260085259 0.9999999468635423 -2.330866435320481e-005 -0.0003251609124248027 -0.9999999468635423 2.330866435320481e-005 0.0003251609124248027 -0.0002588876947958197 0.3705342992523084 -0.9288187476869545 0.0002588876947958197 -0.3705342992523084 0.9288187476869545 -0.9999999528133073 2.047393718783433e-005 0.000306519495778921 0.9999999528133073 -2.047393718783433e-005 -0.000306519495778921 0.9999999691223772 4.803574051412936e-005 -0.0002438192210273459 0.9999999467611762 -2.370677477091507e-005 -0.0003254468214559952 -0.9999999467611762 2.370677477091507e-005 0.0003254468214559952 -0.9999999691223772 -4.803574051412936e-005 0.0002438192210273459 -0.0002554135440773512 0.3704180693355161 -0.9288651078997802 0.0002554135440773512 -0.3704180693355161 0.9288651078997802 -0.9999999529147998 2.039539899707468e-005 0.0003061934457488081 -0.9999999739713007 -4.46492633153544e-005 0.0002237495055216183 0.9999999739713007 4.46492633153544e-005 -0.0002237495055216183 0.9999999529147998 -2.039539899707468e-005 -0.0003061934457488081 0.999999979842059 0.0001062569116814978 -0.0001703682780391255 -0.999999979842059 -0.0001062569116814978 0.0001703682780391255 -0.0001347276003381009 0.7648908936276634 -0.6441598425033559 0.0001347276003381009 -0.7648908936276634 0.6441598425033559 -0.9999999830989202 -9.836897367025223e-005 0.0001553245127247652 -0.9999999527965546 2.032403094106207e-005 0.0003065841196284575 0.9999999527965546 -2.032403094106207e-005 -0.0003065841196284575 0.9999999830989202 9.836897367025223e-005 -0.0001553245127247652 0.9999999817559017 0.0001665683458724161 -9.350498646018241e-005 -0.9999999817559017 -0.0001665683458724161 9.350498646018241e-005 -0.0001339321159678741 0.7648909999718571 -0.6441597163935671 -0.0001339321159678741 0.7648909999718571 -0.6441597163935671 0.0001339321159678741 -0.7648909999718571 0.6441597163935671 0.0001339321159678741 -0.7648909999718571 0.6441597163935671 -0.9999999845720291 -0.0001541243402943206 8.427116555330488e-005 0.9999999845720291 0.0001541243402943206 -8.427116555330488e-005</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"104\" source=\"#ID1825\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1823\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1821\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1822\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"80\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 6 12 13 14 15 11 16 0 2 3 5 17 8 7 18 19 10 9 6 13 7 10 14 11 12 20 13 14 21 15 22 0 16 17 5 23 24 25 26 27 28 29 30 31 32 33 34 35 31 36 37 38 39 34 12 40 20 21 41 15 42 22 16 17 23 43 44 24 26 27 29 45 31 37 32 33 38 34 36 46 37 38 47 39 20 40 48 49 41 21 50 22 42 43 23 51 36 52 46 47 53 39 40 54 48 49 55 41 56 50 42 43 51 57 52 58 46 47 59 53 48 54 60 61 55 49 62 50 56 57 51 63 52 64 58 59 65 53 66 64 52 53 65 67 54 68 60 61 69 55 62 70 50 51 71 63 66 72 64 65 73 67 60 68 74 75 69 61 76 70 62 63 71 77 78 79 66 67 80 81 68 82 74 75 83 69 84 85 70 71 86 87 78 88 72 73 89 81 90 74 82 83 75 91 92 85 93 94 86 95 96 88 78 81 89 97 98 99 82 83 100 101 92 102 85 86 103 95</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1823\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1826\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1827\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1830\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">0.5299191474914551 1.336438298225403 -0.337350994348526 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5558255910873413 1.428575396537781 -0.3393191397190094 0.5299159288406372 1.427236080169678 -0.3395089507102966 0.5299191474914551 1.336438298225403 -0.337350994348526 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5558285713195801 1.336434721946716 -0.3373600244522095 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5299307107925415 1.188444375991821 -0.2794366180896759 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5558402538299561 1.188440799713135 -0.2794458866119385 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5299369096755981 1.107331395149231 -0.2541317939758301 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5558462142944336 1.10732638835907 -0.2541377544403076 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5299383997917175 0.7833757996559143 -0.2266751229763031 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5558484792709351 0.7833729386329651 -0.2266836166381836 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299383997917175 0.6540418863296509 -0.2181013375520706 0.5299354195594788 0.6068390607833862 -0.3397958278656006 0.5558484792709351 0.6540384292602539 -0.2181093096733093 0.5558449625968933 0.6068353652954102 -0.3398056030273438 0.5558449625968933 0.6068353652954102 -0.3398056030273438</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1830\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1828\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1831\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"96\">-0.0004200498066727247 0.1960606869999712 0.9805916737211566 0.003744679559962774 -0.3379545967345152 0.9411549648814507 0.01272641420307216 -0.3622788561835054 0.9319828693403665 -0.01272641420307216 0.3622788561835054 -0.9319828693403665 -0.003744679559962774 0.3379545967345152 -0.9411549648814507 0.0004200498066727247 -0.1960606869999712 -0.9805916737211566 0.0003692586280801227 0.195873020390035 0.9806291977762801 -0.0003692586280801227 -0.195873020390035 -0.9806291977762801 0.0003828121807958291 0.331324506299434 0.9435167857437781 -0.0003828121807958291 -0.331324506299434 -0.9435167857437781 0.0003733136420398944 0.3313237310209041 0.9435170617955525 -0.0003733136420398944 -0.3313237310209041 -0.9435170617955525 0.0002729107498873451 0.1922976988738959 0.9813365989952312 -0.0002729107498873451 -0.1922976988738959 -0.9813365989952312 0.0002652170170330006 0.1922754556501566 0.981340959511249 -0.0002652170170330006 -0.1922754556501566 -0.981340959511249 0.0003329080878166919 0.0752994296670667 0.9971609123225897 -0.0003329080878166919 -0.0752994296670667 -0.9971609123225897 0.000334031071719432 0.0752984514242747 0.9971609858174103 -0.000334031071719432 -0.0752984514242747 -0.9971609858174103 0.000318167767874384 0.06614990713798376 0.9978096454509285 -0.000318167767874384 -0.06614990713798376 -0.9978096454509285 0.0003158363779133048 0.06615037220994488 0.9978096153594974 -0.0003158363779133048 -0.06615037220994488 -0.9978096153594974 -1.105960625052409e-005 -0.9323222872788488 0.361628473050479 1.388113031852923e-006 -0.9323231810389382 0.3616261689860238 -1.312822105434077e-005 -0.9323221387354551 0.3616288559440424 1.312822105434077e-005 0.9323221387354551 -0.3616288559440424 -1.388113031852923e-006 0.9323231810389382 -0.3616261689860238 1.105960625052409e-005 0.9323222872788488 -0.361628473050479 3.456675991517009e-006 -0.93232332954951 0.3616257860907698 -3.456675991517009e-006 0.93232332954951 -0.3616257860907698</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"32\" source=\"#ID1831\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1829\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1827\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1828\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 0 2 6 8 0 6 8 6 10 12 8 10 12 10 14 16 12 14 16 14 18 20 16 18 22 20 18 24 25 26 30 25 24</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1829\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 7 3 5 7 5 9 11 7 9 11 9 13 15 11 13 15 13 17 19 15 17 19 17 21 19 21 23 27 28 29 29 28 31</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1829\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1832\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1833\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1836\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 -0.002306933514773846 -0.9634888768196106 -0.3111290037631989 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 0.01533294282853603 -0.9692762494087219 -0.2780719101428986 -0.002306933514773846 -0.9634888768196106 -0.3111290037631989 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.03564992547035217 -0.9626252055168152 -0.3111827075481415 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 -0.005092551000416279 -0.0468074306845665 -0.3878971040248871 -0.005092551000416279 -0.0468074306845665 -0.3878971040248871 0.03286346048116684 -0.04594298452138901 -0.3879513442516327 0.01369708590209484 -0.04015206545591354 -0.4202107191085815 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 0.01407275348901749 -0.05259791761636734 -0.3556391000747681 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.02262343280017376 -0.9701413512229919 -0.2780191600322723 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 0.01450111530721188 -0.9568350911140442 -0.3471100628376007 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02425976470112801 -0.04101430624723434 -0.4201563894748688 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.02388451993465424 -0.05346225947141647 -0.3555848300457001 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.04026526585221291 -0.9643533825874329 -0.3110750615596771 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.02345463261008263 -0.9576987624168396 -0.347055971622467 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877 -0.04305120185017586 -0.04767126590013504 -0.3878431916236877</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1836\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1834\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1837\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"174\">0.8471696031554058 0.04689773012802803 0.5292487755284382 0.4401502978273895 0.07678570680066062 0.8946349370293916 0.8592402655707703 0.04433593462399087 0.5096474182441124 -0.8592402655707703 -0.04433593462399087 -0.5096474182441124 -0.4401502978273895 -0.07678570680066062 -0.8946349370293916 -0.8471696031554058 -0.04689773012802803 -0.5292487755284382 0.02213461350851198 -0.9838296001132999 -0.1777340058225582 0.02214728878768746 -0.9838135953026865 -0.1778209979078871 0.02212201164671536 -0.9827055370523353 -0.1838489707542149 -0.02212201164671536 0.9827055370523353 0.1838489707542149 -0.02214728878768746 0.9838135953026865 0.1778209979078871 -0.02213461350851198 0.9838296001132999 0.1777340058225582 0.8581777584640484 -0.0400658295849563 -0.511786737007995 0.8557850237502858 -0.04058963644497733 -0.5157368268196364 0.4572619699902916 -0.07040587592748571 -0.8865407511420336 -0.4572619699902916 0.07040587592748571 0.8865407511420336 -0.8557850237502858 0.04058963644497733 0.5157368268196364 -0.8581777584640484 0.0400658295849563 0.511786737007995 0.5333584259121058 0.07204941364349686 0.8428153246721306 -0.5333584259121058 -0.07204941364349686 -0.8428153246721306 0.02213103454147481 -0.9827021412438243 -0.1838660352129422 -0.02213103454147481 0.9827021412438243 0.1838660352129422 0.02216710073291421 -0.9848868105875184 -0.1717748234632854 -0.02216710073291421 0.9848868105875184 0.1717748234632854 -0.02205767583973393 0.9816602697034845 0.1893583212384166 -0.02208675936962806 0.9816633185654566 0.1893391244397288 -0.0220711862311958 0.981660700387417 0.1893545142140372 0.0220711862311958 -0.981660700387417 -0.1893545142140372 0.02208675936962806 -0.9816633185654566 -0.1893391244397288 0.02205767583973393 -0.9816602697034845 -0.1893583212384166 0.5203171375320179 -0.06743066470191132 -0.8513067495611353 -0.5203171375320179 0.06743066470191132 0.8513067495611353 -0.02208499222937724 0.9816640967406718 0.189335295939636 0.02208499222937724 -0.9816640967406718 -0.189335295939636 -0.4744560974523423 0.07357336721613098 0.8771991628055591 0.4744560974523423 -0.07357336721613098 -0.8771991628055591 0.02215434434420591 -0.9838320356359597 -0.1777180651568155 -0.02215434434420591 0.9838320356359597 0.1777180651568155 0.02216599408817481 -0.9848867473709602 -0.1717753287266057 0.02217588882505957 -0.9848855426448274 -0.1717809589099522 -0.02217588882505957 0.9848855426448274 0.1717809589099522 -0.02216599408817481 0.9848867473709602 0.1717753287266057 -0.02204966620218046 0.9816549723349188 0.1893867141868779 0.02204966620218046 -0.9816549723349188 -0.1893867141868779 -0.4488827510890986 -0.07142531229437267 -0.8907315535773579 0.4488827510890986 0.07142531229437267 0.8907315535773579 -0.02207713179279975 0.9816638088999858 0.1893377050346172 0.02207713179279975 -0.9816638088999858 -0.1893377050346172 -0.5213050402861289 0.0701336647363395 0.8504835824652514 0.5213050402861289 -0.0701336647363395 -0.8504835824652514 -0.9946912270840029 0.006756099022091487 0.1026826075249562 0.9946912270840029 -0.006756099022091487 -0.1026826075249562 -0.5731013847754379 -0.06790698381044293 -0.8166660543442733 0.5731013847754379 0.06790698381044293 0.8166660543442733 -0.02207088802970789 0.981657733885077 0.1893699274045254 0.02207088802970789 -0.981657733885077 -0.1893699274045254 -0.9964745463580103 -0.007490646736988896 -0.08356056888305249 0.9964745463580103 0.007490646736988896 0.08356056888305249</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"58\" source=\"#ID1837\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1835\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1833\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1834\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"48\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 18 2 3 19 4 8 7 20 21 10 9 6 22 7 10 23 11 24 25 26 27 28 29 30 12 14 15 17 31 26 25 32 33 28 27 34 18 1 4 19 35 7 36 20 21 37 10 38 39 7 10 40 41 42 24 26 27 29 43 14 44 30 31 45 15 26 32 46 47 33 27 34 48 18 19 49 35 7 39 36 37 40 10 34 50 48 49 51 35 44 52 30 31 53 45 42 26 54 55 27 43 54 26 46 47 27 55 50 52 56 57 53 51 48 50 56 57 51 49 56 52 44 45 53 57</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1835\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1838\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1839\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1842\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"450\">0.05343644320964813 0.1741137206554413 -0.30791175365448 0.03954382240772247 0.173693522810936 -0.3557284474372864 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.1620966047048569 0.173693522810936 -0.3075017929077148 0.1620966047048569 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 0.03954382240772247 0.173693522810936 -0.3557284474372864 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.01555462367832661 0.173693522810936 -0.3075017929077148 0.05343644320964813 0.1741137206554413 -0.30791175365448 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 0.0009693335741758347 0.1741137206554413 -0.3072046339511871 -0.1196891516447067 0.1741137206554413 -0.3583599030971527 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1385429054498673 0.1741137206554413 -0.3953162431716919 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1282066255807877 0.1741137206554413 -0.4369454681873322 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 0.05343644320964813 -0.0231819823384285 -0.30791175365448 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 0.05343644320964813 -0.0231819823384285 -0.30791175365448 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.1203668862581253 -0.0231819823384285 -0.3583599030971527 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 0.0001983661204576492 -0.0231819823384285 -0.3079753816127777 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 -0.04882822185754776 -0.02235805243253708 -0.4001826941967011 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.3287597894668579 -0.04882822185754776 -0.02235805243253708 -0.4001826941967011 -0.09933178871870041 -0.02235805243253708 -0.3496791124343872 0.004646843299269676 0.1741137206554413 -0.4509885311126709 0.004646843299269676 0.1741137206554413 -0.4509885311126709 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.05382932722568512 0.1741137206554413 -0.4630730748176575 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.1385429054498673 -0.0231819823384285 -0.3959941267967224 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 0.004646843299269676 0.1741137206554413 -0.4509885311126709 0.004646843299269676 0.1741137206554413 -0.4509885311126709 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.1281135976314545 -0.0231819823384285 -0.4369457364082336 -0.04882822185754776 -0.08871229737997055 -0.4001826941967011 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.04882822185754776 -0.08871229737997055 -0.3287597894668579 -0.09933178871870041 -0.08871229737997055 -0.3496791124343872 -0.04882822185754776 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 -0.1202511861920357 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.08871229737997055 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 0.001675356179475784 -0.02235805243253708 -0.3496791124343872 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.1620966047048569 0.173693522810936 -0.3633331656455994 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.0545070543885231 -0.0231819823384285 -0.4637511372566223 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 -0.1202511861920357 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 0.02259479276835918 -0.08871229737997055 -0.4001826941967011 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 -0.09933172911405563 -0.02235805243253708 -0.4506860971450806 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.005324795842170715 -0.0231819823384285 -0.4509885311126709 0.02259479276835918 -0.02235805243253708 -0.4001826941967011 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.04882822185754776 -0.02235805243253708 -0.4716052711009979 -0.09933172911405563 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.08871229737997055 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.001675356179475784 -0.02235805243253708 -0.4506860971450806 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 0.1621784716844559 -0.0231819823384285 -0.3641405701637268 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979 -0.04882822185754776 -0.08871229737997055 -0.4716052711009979</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"150\" source=\"#ID1842\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1840\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1843\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"450\">-0.0008524021846609801 -0.9999934579831282 0.003515309582559555 -0.000674593647413681 -0.9999959026174352 0.00278202655478913 -0.0008524021846609801 -0.9999934579831282 0.003515309582559555 -0.0002018871823877642 -0.9999996330231196 0.0008325834443114648 0.0002018871823877642 0.9999996330231196 -0.0008325834443114648 0.0008524021846609801 0.9999934579831282 -0.003515309582559555 0.000674593647413681 0.9999959026174352 -0.00278202655478913 0.0008524021846609801 0.9999934579831282 -0.003515309582559555 -0.002064684151654042 0.9999612923901422 0.008552824141210507 -9.923755920933442e-005 0.99999991058037 0.0004110853427341175 -0.002064684151654042 0.9999612923901422 0.008552824141210507 0.00152764242395126 0.999998774964976 0.0003411409852822999 9.923755920933442e-005 -0.99999991058037 -0.0004110853427341175 0.002064684151654042 -0.9999612923901422 -0.008552824141210507 -0.00152764242395126 -0.999998774964976 -0.0003411409852822999 0.002064684151654042 -0.9999612923901422 -0.008552824141210507 0 -1 0 -0 1 -0 0 1 0 -0 -1 -0 -0.3872695190778213 -0.0002125953994443339 0.9219665256376879 -0.680525551593799 0.001113914692902286 0.7327235036642488 -0.3903344446072451 -0.002071356399789515 0.9206708048134352 0.3903344446072451 0.002071356399789515 -0.9206708048134352 0.680525551593799 -0.001113914692902286 -0.7327235036642488 0.3872695190778213 0.0002125953994443339 -0.9219665256376879 0 1 0 -0 -1 -0 -0.6902235729625602 -3.497933862440305e-006 0.723596171434428 -0.993564706888407 0.001753445859980048 0.1132523670983072 0.993564706888407 -0.001753445859980048 -0.1132523670983072 0.6902235729625602 3.497933862440305e-006 -0.723596171434428 -0.3854140957586625 0.0009109952854830883 0.9227432713805733 -0.3854140957586625 0.0009109952854830883 0.9227432713805733 0.3854140957586625 -0.0009109952854830883 -0.9227432713805733 0.3854140957586625 -0.0009109952854830883 -0.9227432713805733 0 1 0 -0 -1 -0 -0.9950096440210436 -0.000943752455602703 0.09977433355537235 -0.7394914584646463 0.0002843368189138564 -0.673165880010569 0.7394914584646463 -0.0002843368189138564 0.673165880010569 0.9950096440210436 0.000943752455602703 -0.09977433355537235 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.0009595663710950525 -0.9999994004879673 0.0005274998439833328 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.00578959802049866 -0.99992866491342 0.01044727903459306 -0.0002623361050891516 -0.9999998535440419 0.0004733832091642585 0.0009595663710950525 0.9999994004879673 -0.0005274998439833328 0.00578959802049866 0.99992866491342 -0.01044727903459306 0.0002623361050891516 0.9999998535440419 -0.0004733832091642585 0.00578959802049866 0.99992866491342 -0.01044727903459306 0.00578959802049866 0.99992866491342 -0.01044727903459306 -3.911876577611277e-008 -1.861256100673479e-017 0.9999999999999991 -0.707106372870083 -9.672022582894041e-018 0.7071071895027762 -3.911876573786155e-008 -4.242689383461759e-017 0.9999999999999992 3.911876573786155e-008 4.242689383461759e-017 -0.9999999999999992 0.707106372870083 9.672022582894041e-018 -0.7071071895027762 3.911876577611277e-008 1.861256100673479e-017 -0.9999999999999991 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0.0008523534733143322 0.999999594506523 -0.0002906550293067631 -0.0008523534733143322 -0.999999594506523 0.0002906550293067631 -0.7405281290730719 0.001610344907837274 -0.6720234347407936 -0.06779187227960655 0.001877425022851561 -0.9976977184138035 0.06779187227960655 -0.001877425022851561 0.9976977184138035 0.7405281290730719 -0.001610344907837274 0.6720234347407936 0 -1 0 -0 1 -0 -0.707106372870083 1.41422847206689e-017 0.7071071895027762 0.707106372870083 -1.41422847206689e-017 -0.7071071895027762 0.7071061114800435 -1.414227721279664e-017 0.7071074508924174 -0.7071061114800435 1.414227721279664e-017 -0.7071074508924174 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.003294124417085093 0.9999939434455599 -0.001123306068390831 -0.003294124417085093 -0.9999939434455599 0.001123306068390831 -0.07063814495457572 0.002857620332911681 -0.9974979130220821 0.3466598206120948 0.002001151010611005 -0.9379887868028183 -0.3466598206120948 -0.002001151010611005 0.9379887868028183 0.07063814495457572 -0.002857620332911681 0.9974979130220821 0 -1 0 -0 1 -0 0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 -0.9999999999993621 1.414238529049367e-017 -1.129588202910892e-006 0.9999999999993621 -1.414238529049367e-017 1.129588202910892e-006 0 -1 0 -0 1 -0 0.7071061114800435 -1.414227721279663e-017 0.7071074508924172 -0.7071061114800435 1.414227721279663e-017 -0.7071074508924172 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 0.3501992826352902 0.0007580898147801481 -0.9366749103832989 0.4835462335726444 0.0008799597322555606 -0.8753183796017191 -0.4835462335726444 -0.0008799597322555606 0.8753183796017191 -0.3501992826352902 -0.0007580898147801481 0.9366749103832989 0.001901451832417029 -0.9999977322604323 -0.0009591428056673119 -0.001901451832417029 0.9999977322604323 0.0009591428056673119 0 -1 0 -0 1 -0 -0.999999999999362 -1.733948662692664e-018 -1.129588202930018e-006 0.999999999999362 1.733948662692664e-018 1.129588202930018e-006 0 -1 0 -0 1 -0 0.9999999999998042 0 -6.259043495723284e-007 -0.9999999999998042 -0 6.259043495723284e-007 0 1 0 -0 -1 -0 -0.7071048312562522 -1.240838486938628e-017 -0.7071087311114657 0.7071048312562522 1.240838486938628e-017 0.7071087311114657 0.9999999999998041 0 -6.259043496297053e-007 -0.9999999999998041 -0 6.259043496297053e-007 0 1 0 -0 -1 -0 0.4843937839313932 0 -0.8748500797786023 -0.4843937839313932 -0 0.8748500797786023 0.002267514730237025 -0.9999957149613051 -0.001851603622948137 0.004312416916715417 -0.9999874718538377 -0.002541494778023185 -0.004312416916715417 0.9999874718538377 0.002541494778023185 -0.002267514730237025 0.9999957149613051 0.001851603622948137 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 -0.7071048312562522 -2.828468600615452e-017 -0.7071087311114657 -2.477511845108208e-007 -1.414233203803552e-017 -0.9999999999999691 2.477511845108208e-007 1.414233203803552e-017 0.9999999999999691 0.7071048312562522 2.828468600615452e-017 0.7071087311114657 0.7071047784991345 0 -0.7071087838682884 -0.7071047784991345 -0 0.7071087838682884 0.7071047784991347 0 -0.7071087838682884 -0.7071047784991347 -0 0.7071087838682884 -0.001955581172541138 -0.9999979967544046 -0.0004268365677167187 0.001955581172541138 0.9999979967544046 0.0004268365677167187 0 -1 0 -0 1 -0 -2.477511845299464e-007 -1.414233203803551e-017 -0.9999999999999691 2.477511845299464e-007 1.414233203803551e-017 0.9999999999999691</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"150\" source=\"#ID1843\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1841\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1839\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1840\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"132\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 1 0 3 4 5 6 7 6 5 8 9 10 11 10 9 12 13 14 13 12 15 16 1 3 4 6 17 9 18 11 14 19 12 20 21 22 23 24 25 18 26 11 14 27 19 21 28 29 30 31 24 20 32 21 32 33 21 28 21 33 34 24 31 24 34 35 24 35 25 26 36 11 14 37 27 29 38 39 40 41 30 28 38 29 30 41 31 42 43 44 44 43 45 46 45 43 47 48 49 48 47 50 50 47 51 52 53 54 55 56 57 58 59 60 61 62 63 36 64 11 14 65 37 39 66 67 68 69 40 38 66 39 40 69 41 70 46 43 47 49 71 72 53 52 57 56 73 52 54 74 75 55 57 76 59 58 63 62 77 59 78 60 61 79 62 64 80 11 14 81 65 67 82 83 84 85 68 66 82 67 68 85 69 86 70 43 47 71 87 88 89 90 91 92 93 53 72 94 95 73 56 96 88 90 91 93 97 74 54 98 99 55 75 76 100 59 62 101 77 59 102 78 79 103 62 83 104 105 106 107 84 83 82 104 107 85 84 108 86 43 47 87 109 88 110 89 92 111 93 72 112 94 95 113 73 114 88 96 97 93 115 116 74 98 99 75 117 100 118 59 62 119 101 94 112 120 121 113 95 122 116 98 99 117 123 59 124 102 103 125 62 105 104 126 127 107 106 128 129 43 108 43 129 130 47 109 47 130 131 88 132 110 111 133 93 114 134 88 93 135 115 118 124 59 62 125 119 120 136 137 138 139 121 112 136 120 121 139 113 140 116 122 123 117 141 142 140 122 123 141 143 43 144 128 129 128 144 145 131 130 131 145 47 146 132 88 93 133 147 134 146 88 93 147 135 137 148 142 143 149 138 137 136 148 149 139 138 142 148 140 141 149 143</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1841\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1844\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1845\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1848\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"42\">0.001038577407598496 0.171336904168129 -0.3997860848903656 -0.04898601025342941 0.171336904168129 -0.3997860848903656 -0.02397382631897926 0.171336904168129 -0.3564637303352356 -0.02397382631897926 0.171336904168129 -0.3564637303352356 -0.04898601025342941 0.171336904168129 -0.3997860848903656 0.001038577407598496 0.171336904168129 -0.3997860848903656 -0.02397382631897926 0.171336904168129 -0.4431087970733643 -0.02397382631897926 0.171336904168129 -0.4431087970733643 -0.07399865239858627 0.171336904168129 -0.3564637303352356 -0.07399865239858627 0.171336904168129 -0.3564637303352356 -0.07399865239858627 0.171336904168129 -0.4431087970733643 -0.07399865239858627 0.171336904168129 -0.4431087970733643 -0.09901061654090881 0.171336904168129 -0.3997860848903656 -0.09901061654090881 0.171336904168129 -0.3997860848903656</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"14\" source=\"#ID1848\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1846\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1849\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"42\">0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"14\" source=\"#ID1849\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1847\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1845\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1846\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"12\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 0 6 1 4 7 5 2 1 8 9 4 3 6 10 1 4 11 7 1 12 8 9 13 4 1 10 12 13 11 4</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1847\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1850\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1851\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1854\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"396\">-0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.170267701148987 -0.3140725195407867 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.220622777938843 -0.4356364607810974 -0.6165584921836853 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.5808534622192383 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.119914293289185 -0.4356366693973541 -0.5808534622192383 -1.170267701148987 -0.3140725195407867 -0.5808534622192383 -1.170267701148987 -0.4456525444984436 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.6165584921836853 -1.119914293289185 -0.4356364607810974 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.5808534622192383 -1.220622777938843 -0.4356366693973541 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.5808534622192383 -1.263310670852661 -0.4071134328842163 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.6165584921836853 -1.077226281166077 -0.4071135222911835 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.301849365234375 -0.3140725195407867 -0.5808534622192383 -1.291834712028503 -0.3644255101680756 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.048702836036682 -0.3644255101680756 -0.6165584921836853 -1.048702836036682 -0.3644255101680756 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.301849365234375 -0.3140725195407867 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.038687348365784 -0.3140725195407867 -0.6165584921836853 -1.038687348365784 -0.3140725195407867 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.291834712028503 -0.2637185454368591 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.048702836036682 -0.2637185454368591 -0.6165584921836853 -1.048702836036682 -0.2637185454368591 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.5808534622192383 -1.263310670852661 -0.2210303395986557 -0.6165584921836853 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.077226281166077 -0.2210303395986557 -0.6165584921836853 -1.077226281166077 -0.2210303395986557 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.5808534622192383 -1.220622777938843 -0.1925071477890015 -0.6165584921836853 -1.170267701148987 -0.1824909001588821 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.119914293289185 -0.1925071477890015 -0.6165584921836853 -1.119914293289185 -0.1925071477890015 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821 -0.5808534622192383 -1.170267701148987 -0.1824909001588821</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"132\" source=\"#ID1854\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1852\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1855\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"396\">-1.130159922583212e-006 1.949100471316308e-006 -0.9999999999974618 -4.267889876472928e-006 -0.3826802897704246 -0.9238808342004986 -1.1301334122519e-006 1.949057629495692e-006 -0.999999999997462 1.1301334122519e-006 -1.949057629495692e-006 0.999999999997462 4.267889876472928e-006 0.3826802897704246 0.9238808342004986 1.130159922583212e-006 -1.949100471316308e-006 0.9999999999974618 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 -4.267853575409275e-006 0.382683418680344 -0.9238795381698363 4.267853575409275e-006 -0.382683418680344 0.9238795381698363 -4.439926465004716e-006 -0.3826796682521984 -0.9238810916382445 4.439926465004716e-006 0.3826796682521984 0.9238810916382445 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -4.439913468692071e-006 0.3826840402307754 -0.9238792807141728 4.439913468692071e-006 -0.3826840402307754 0.9238792807141728 1 0 0 -1 -0 -0 -9.580972100645668e-007 -0.7071018257267022 -0.7071117366110157 9.580972100645668e-007 0.7071018257267022 0.7071117366110157 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -9.580991023527817e-007 0.7071043423311452 -0.7071092200328891 9.580991023527817e-007 -0.7071043423311452 0.7071092200328891 1 0 0 -1 -0 -0 -1.121026176803332e-017 -0.7071022878340889 -0.7071112745104529 1.121026176803332e-017 0.7071022878340889 0.7071112745104529 -1 0 0 1 -0 -0 -5.484074183472452e-018 -0.923881106935747 -0.3826796313460895 5.484074183472452e-018 0.923881106935747 0.3826796313460895 -1 0 0 1 -0 -0 -2.89782612884685e-017 0.7071038802247908 -0.7071096821364028 2.89782612884685e-017 -0.7071038802247908 0.7071096821364028 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -2.144655999698515e-017 -0.9238811069357469 -0.3826796313460895 4.752124784497387e-018 -0.9999999999982547 -1.868370662626244e-006 -4.752124784497387e-018 0.9999999999982547 1.868370662626244e-006 2.144655999698515e-017 0.9238811069357469 0.3826796313460895 -1 0 0 1 -0 -0 -4.879379169258916e-017 0.9238800887855799 -0.3826820893973862 -5.354591770247694e-017 0.9238800887855798 -0.3826820893973862 5.354591770247694e-017 -0.9238800887855798 0.3826820893973862 4.879379169258916e-017 -0.9238800887855799 0.3826820893973862 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -9.503747639056373e-018 -0.9999999999982547 -1.868370662680292e-006 -1.506300306250552e-017 -0.9238824081403895 0.3826764899085318 1.506300306250552e-017 0.9238824081403895 -0.3826764899085318 9.503747639056373e-018 0.9999999999982547 1.868370662680292e-006 -1 0 0 1 -0 -0 -1.784295402865374e-017 0.9999999999982544 -1.868514494595799e-006 -4.160251598163036e-017 0.9999999999982544 -1.868514494577784e-006 4.160251598163036e-017 -0.9999999999982544 1.868514494577784e-006 1.784295402865374e-017 -0.9999999999982544 1.868514494595799e-006 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -2.456683227551504e-017 -0.9238824081403895 0.3826764899085318 0 -0.7071031150808818 0.707110447273206 -0 0.7071031150808818 -0.707110447273206 2.456683227551504e-017 0.9238824081403895 -0.3826764899085318 -1 0 0 1 -0 -0 2.456669184427625e-017 0.9238812049271341 0.3826793947711148 5.559188559376211e-018 0.9238812049271341 0.382679394771115 -5.559188559376211e-018 -0.9238812049271341 -0.382679394771115 -2.456669184427625e-017 -0.9238812049271341 -0.3826793947711148 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 0 -0.3826838347087458 0.9238793658549851 0 -0.7071031150808818 0.707110447273206 -0 0.7071031150808818 -0.707110447273206 -0 0.3826838347087458 -0.9238793658549851 -1 0 0 1 -0 -0 1.121040847797749e-017 0.7071060718481682 0.7071074905242151 0 0.7071060718481682 0.7071074905242151 -0 -0.7071060718481682 -0.7071074905242151 -1.121040847797749e-017 -0.7071060718481682 -0.7071074905242151 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 1.228357465642283e-017 3.170942685220934e-006 0.9999999999949726 0 -0.3826838347087458 0.9238793658549851 -0 0.3826838347087458 -0.9238793658549851 -1.228357465642283e-017 -3.170942685220934e-006 -0.9999999999949726 4.126187744361914e-017 0.3826861683731713 0.9238783992148861 3.005147520923364e-017 0.3826861683731713 0.9238783992148861 -3.005147520923364e-017 -0.3826861683731713 -0.9238783992148861 -4.126187744361914e-017 -0.3826861683731713 -0.9238783992148861 1 0 0 -1 -0 -0 1.228357465642284e-017 3.170942685292997e-006 0.9999999999949726 -1.228357465642284e-017 -3.170942685292997e-006 -0.9999999999949726</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"132\" source=\"#ID1855\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1853\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1851\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1852\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"128\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 16 7 6 11 10 17 6 8 18 19 9 11 20 21 22 23 24 25 26 0 12 13 5 27 20 28 21 24 29 25 1 30 14 15 31 4 32 16 6 11 17 33 6 18 34 35 19 11 22 21 36 37 24 23 38 26 12 13 27 39 28 40 21 24 41 29 14 30 42 43 31 15 44 32 6 11 33 45 42 30 46 47 31 43 6 34 48 49 35 11 50 26 38 39 27 51 36 21 52 53 24 37 40 54 21 24 55 41 56 44 6 11 45 57 58 46 59 60 47 61 58 42 46 47 43 61 6 48 62 63 49 11 64 50 65 66 51 67 50 38 65 66 39 51 52 21 68 69 24 53 54 70 21 24 71 55 72 56 6 11 57 73 74 59 75 76 60 77 74 58 59 60 61 77 78 6 62 63 11 79 80 64 81 82 67 83 64 65 81 82 66 67 21 84 68 69 85 24 70 86 21 24 87 71 88 72 6 11 73 89 90 75 91 92 76 93 90 74 75 76 77 93 94 6 78 79 11 95 96 80 97 98 83 99 80 81 97 98 82 83 21 100 84 85 101 24 86 102 21 24 103 87 104 88 6 11 89 105 91 106 107 108 109 92 107 90 91 92 93 108 110 6 94 95 11 111 112 96 113 114 99 115 96 97 113 114 98 99 21 116 100 101 117 24 102 118 21 24 119 103 104 6 110 111 11 105 106 120 121 122 123 109 107 106 121 122 109 108 124 112 125 126 115 127 125 112 113 114 115 126 21 128 116 117 129 24 21 118 128 129 119 24 120 124 130 131 127 123 121 120 130 131 123 122 130 124 125 126 127 131</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1853\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1856\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1857\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1860\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"402\">-0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.358799338340759 -0.4039503931999207 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6596336960792542 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.45950722694397 -0.4039506316184998 -0.6596336960792542 1.40915322303772 -0.2823854684829712 -0.6596336960792542 1.40915322303772 -0.4139664471149445 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6953383088111877 1.45950722694397 -0.4039503931999207 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6596336960792542 1.358799338340759 -0.4039506316184998 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6596336960792542 1.316112399101257 -0.3754271864891052 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6953383088111877 1.502194881439209 -0.3754272162914276 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.277571797370911 -0.2823854684829712 -0.6596336960792542 1.287587761878967 -0.3327391743659973 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.530718922615051 -0.3327391743659973 -0.6953383088111877 1.530718922615051 -0.3327391743659973 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.277571797370911 -0.2823854684829712 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.540734052658081 -0.2823854684829712 -0.6953383088111877 1.540734052658081 -0.2823854684829712 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.287587761878967 -0.2320313453674316 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.530718922615051 -0.2320313453674316 -0.6953383088111877 1.530718922615051 -0.2320313453674316 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953383088111877 1.40915322303772 -0.2823854684829712 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6596336960792542 1.316112399101257 -0.1893433481454849 -0.6953383088111877 1.358799338340759 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.502194881439209 -0.1893433481454849 -0.6953383088111877 1.502194881439209 -0.1893433481454849 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6596336960792542 1.358799338340759 -0.1608202308416367 -0.6953381896018982 1.40915322303772 -0.1508040428161621 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.45950722694397 -0.1608202308416367 -0.6953383088111877 1.45950722694397 -0.1608202308416367 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621 -0.6596336960792542 1.40915322303772 -0.1508040428161621</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"134\" source=\"#ID1860\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1858\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1861\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"402\">-1.2916044995839e-006 -1.622831494590891e-006 -0.9999999999978491 -4.877612574350995e-006 -0.3826880997193461 -0.9238775992031654 -1.291606467001254e-006 -1.622828384775344e-006 -0.9999999999978491 1.291606467001254e-006 1.622828384775344e-006 0.9999999999978491 4.877612574350995e-006 0.3826880997193461 0.9238775992031654 1.2916044995839e-006 1.622831494590891e-006 0.9999999999978491 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 -4.877617766074997e-006 0.3826857653536466 -0.923878566139459 4.877617766074997e-006 -0.3826857653536466 0.923878566139459 -5.074247172752549e-006 -0.3826873893609037 -0.9238778934460917 5.074247172752549e-006 0.3826873893609037 0.9238778934460917 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -5.07425111606672e-006 0.3826864757063207 -0.9238782718982666 5.07425111606672e-006 -0.3826864757063207 0.9238782718982666 1 0 0 -1 -0 -0 -1.094970217341462e-006 -0.7071035322409311 -0.7071100301163883 1.094970217341462e-006 0.7071035322409311 0.7071100301163883 -1 0 0 1 -0 -0 -1 0 0 1 -0 -0 1 0 0 -1 -0 -0 -1.094968152871253e-006 0.7071038429309827 -0.7071097194290553 1.094968152871253e-006 -0.7071038429309827 0.7071097194290553 1 0 0 -1 -0 -0 -2.897845197819312e-017 -0.7071040603653174 -0.7071095019973086 2.897845197819312e-017 0.7071040603653174 0.7071095019973086 -1 0 0 1 -0 -0 -4.126238201343536e-017 -0.9238751717500278 -0.3826939600044098 4.126238201343536e-017 0.9238751717500278 0.3826939600044098 -1 0 0 1 -0 -0 -3.553734694154178e-017 0.7071033148137366 -0.7071102475423658 3.553734694154178e-017 -0.7071033148137366 0.7071102475423658 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 -3.175837688221498e-017 -0.9238751717500278 -0.3826939600044099 2.734678571659092e-017 -0.9999999999996858 -7.92724898079175e-007 -2.734678571659092e-017 0.9999999999996858 7.92724898079175e-007 3.175837688221498e-017 0.9238751717500278 0.3826939600044099 -1 0 0 1 -0 -0 3.453826897195781e-017 0.9238801307652029 -0.3826819880491786 3.112559068021542e-017 0.9238801307652028 -0.3826819880491787 -3.112559068021542e-017 -0.9238801307652028 0.3826819880491787 -3.453826897195781e-017 -0.9238801307652029 0.3826819880491786 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -1 0 0 1 -0 -0 2.259511444695752e-017 -0.9999999999996858 -7.92724898061159e-007 -2.700651582927052e-017 -0.923875444265542 0.3826933021143006 2.700651582927052e-017 0.923875444265542 -0.3826933021143006 -2.259511444695752e-017 0.9999999999996858 7.92724898061159e-007 -1 0 0 1 -0 -0 -2.456744429449738e-017 0.9999999999996858 -7.926638801005441e-007 -5.559435115472413e-018 0.9999999999996858 -7.926638801185601e-007 5.559435115472413e-018 -0.9999999999996858 7.926638801185601e-007 2.456744429449738e-017 -0.9999999999996858 7.926638801005441e-007 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -0.9999999999992996 1.093614454009465e-006 4.529891701655164e-007 0.9999999999992996 -1.093614454009465e-006 -4.529891701655164e-007 -3.005190997543079e-017 -0.9238754442655419 0.3826933021143006 -4.019040723039297e-017 -0.7071021262401992 0.7071114361022521 4.019040723039297e-017 0.7071021262401992 -0.7071114361022521 3.005190997543079e-017 0.9238754442655419 -0.3826933021143006 -1 0 0 1 -0 -0 0 0.923880341541087 0.3826814791885339 0 0.923880341541087 0.3826814791885339 -0 -0.923880341541087 -0.3826814791885339 -0 -0.923880341541087 -0.3826814791885339 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 -0.9999999999995898 2.228600270075891e-012 9.059735365126267e-007 -0.9999999999999937 3.226053236698175e-014 1.132466397375109e-007 0.9999999999999937 -3.226053236698175e-014 -1.132466397375109e-007 0.9999999999995898 -2.228600270075891e-012 -9.059735365126267e-007 -2.898031124377796e-017 -0.3826897469708954 0.9238769168906387 -2.898017534171995e-017 -0.7071021262401992 0.7071114361022521 2.898017534171995e-017 0.7071021262401992 -0.7071114361022521 2.898031124377796e-017 0.3826897469708954 -0.9238769168906387 -0.9999999999992995 -1.093607939434975e-006 4.529875441586822e-007 0.9999999999992995 1.093607939434975e-006 -4.529875441586822e-007 6.557847939278634e-018 0.7071028024874713 0.7071107598632367 2.897940419550977e-017 0.7071028024874714 0.7071107598632367 -2.897940419550977e-017 -0.7071028024874714 -0.7071107598632367 -6.557847939278634e-018 -0.7071028024874713 -0.7071107598632367 1 0 0 -1 -0 -0 1 0 0 -1 -0 -0 0 -2.264975746200799e-007 0.9999999999999745 -2.898028982454418e-017 -0.3826896111443652 0.9238769731529056 2.898028982454418e-017 0.3826896111443652 -0.9238769731529056 -0 2.264975746200799e-007 -0.9999999999999745 -2.144780083289451e-017 0.3826859622291119 0.9238784846032399 5.725712895478056e-018 0.3826858264052466 0.9238785408637508 -5.725712895478056e-018 -0.3826858264052466 -0.9238785408637508 2.144780083289451e-017 -0.3826859622291119 -0.9238784846032399 1 0 0 -1 -0 -0 4.751911402923225e-018 -2.264972398285469e-007 0.9999999999999744 -4.751911402923225e-018 2.264972398285469e-007 -0.9999999999999744</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"134\" source=\"#ID1861\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1859\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1857\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1858\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"128\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 0 2 3 5 13 2 1 14 15 4 3 16 7 6 11 10 17 6 8 18 19 9 11 20 21 22 23 24 25 26 0 12 13 5 27 20 28 21 24 29 25 1 30 14 15 31 4 32 16 6 11 17 33 6 18 34 35 19 11 22 21 36 37 24 23 38 26 12 13 27 39 28 40 21 24 41 29 14 30 42 43 31 15 44 32 6 11 33 45 42 30 46 47 31 43 6 34 48 49 35 11 50 26 38 39 27 51 36 21 52 53 24 37 40 54 21 24 55 41 56 44 6 11 45 57 58 46 59 60 47 61 58 42 46 47 43 61 6 48 62 63 49 11 64 50 65 66 51 67 50 38 65 66 39 51 52 21 68 69 24 53 54 70 21 24 71 55 72 56 6 11 57 73 74 59 75 76 60 77 74 58 59 60 61 77 78 6 62 63 11 79 80 64 81 82 67 83 64 65 81 82 66 67 21 84 68 69 85 24 70 86 21 24 87 71 88 72 6 11 73 89 90 75 91 92 76 93 90 74 75 76 77 93 94 6 78 79 11 95 96 80 97 98 83 99 80 81 97 98 82 83 21 100 84 85 101 24 86 102 21 24 103 87 104 88 105 106 89 107 91 108 109 110 111 92 109 90 91 92 93 110 112 6 94 95 11 113 114 96 115 116 99 117 96 97 115 116 98 99 21 118 100 101 119 24 102 120 21 24 121 103 104 105 112 113 106 107 108 122 123 124 125 111 109 108 123 124 111 110 126 114 127 128 117 129 127 114 115 116 117 128 21 130 118 119 131 24 21 120 130 131 121 24 122 126 132 133 129 125 123 122 132 133 125 124 132 126 127 128 129 133</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1859\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1862\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1863\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1867\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"954\">0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4049413502216339 0.5701420903205872 -0.4031210839748383 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4049413502216339 0.5701420903205872 -0.4031210839748383 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4317043721675873 1.190332651138306 -0.07991550862789154 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4085270166397095 1.18561863899231 -0.06739199906587601 0.4317043721675873 1.190332651138306 -0.07991550862789154 0.4049413502216339 1.190332651138306 -0.07991550862789154 0.4085270166397095 0.5722740888595581 -0.4163314998149872 0.4085270166397095 0.5722740888595581 -0.4163314998149872 0.4085270166397095 0.568010151386261 -0.3899107277393341 0.4085270166397095 0.568010151386261 -0.3899107277393341 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4085270166397095 1.195046424865723 -0.09243901818990707 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4183229506015778 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4183229506015778 0.5738347768783569 -0.4260024130344391 0.4183229506015778 0.5738347768783569 -0.4260024130344391 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4183229506015778 0.5664496421813965 -0.3802396655082703 0.4183229506015778 0.5664496421813965 -0.3802396655082703 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.180904626846314 -0.05486820265650749 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.4183229506015778 1.198497414588928 -0.1016071438789368 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4085270166397095 -0.1203473433852196 -0.4102422595024109 0.4183229506015778 -0.1203473433852196 -0.4200382232666016 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.4049413502216339 -0.1203473433852196 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.4085270166397095 -0.1203473433852196 -0.3834795951843262 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4317043721675873 0.5658783912658691 -0.3766999244689941 0.445085734128952 1.182167768478394 -0.05822398141026497 0.445085734128952 1.182167768478394 -0.05822398141026497 0.4317043721675873 0.5658783912658691 -0.3766999244689941 0.445085734128952 1.198497414588928 -0.1016071438789368 0.445085734128952 1.198497414588928 -0.1016071438789368 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 0.5744060277938843 -0.42954221367836 0.4317043721675873 0.5744060277938843 -0.42954221367836 0.4317043721675873 1.19976019859314 -0.1049628034234047 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.445085734128952 0.5664496421813965 -0.3802396655082703 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.4548816978931427 1.18561863899231 -0.06739199906587601 0.445085734128952 0.5664496421813965 -0.3802396655082703 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.445085734128952 1.198497414588928 -0.1016071438789368 0.445085734128952 0.5738347768783569 -0.4260024130344391 0.445085734128952 0.5738347768783569 -0.4260024130344391 0.445085734128952 1.198497414588928 -0.1016071438789368 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.3698104023933411 -0.1336172223091126 -0.4587240517139435 0.4317043721675873 -0.1336172223091126 -0.4682944416999817 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.4317043721675873 -0.1203473433852196 -0.4236239194869995 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3245008289813995 -0.1336172223091126 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.3079163432121277 -0.1336172223091126 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3245008289813995 -0.1336172223091126 -0.3611441254615784 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4183229506015778 -0.1203473433852196 -0.3736835718154907 0.4548816978931427 0.568010151386261 -0.3899107277393341 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4584673047065735 1.190332651138306 -0.07991550862789154 0.4548816978931427 0.568010151386261 -0.3899107277393341 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4548816978931427 0.5722740888595581 -0.4163314998149872 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 1.195046424865723 -0.09243901818990707 0.4548816978931427 0.5722740888595581 -0.4163314998149872 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.4584673047065735 0.5701420903205872 -0.4031210839748383 0.4584673047065735 0.5701420903205872 -0.4031210839748383 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4317043721675873 -0.1203473433852196 -0.3700979650020599 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.445085734128952 -0.1203473433852196 -0.4200382828712463 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.4317043721675873 -0.748434841632843 -0.4682944416999817 0.4935983419418335 -0.748434841632843 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.4935983419418335 -0.1336172223091126 -0.4587242901325226 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.3698104023933411 -0.748434841632843 -0.4587240517139435 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.3245008289813995 -0.748434841632843 -0.4325778484344482 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.3079163432121277 -0.748434841632843 -0.3968609273433685 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.3245008289813995 -0.748434841632843 -0.3611441254615784 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.3698104023933411 -0.1336172223091126 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.445085734128952 -0.1203473433852196 -0.3736835718154907 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.4548816978931427 -0.1203473433852196 -0.4102422595024109 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4548816978931427 -0.1203473433852196 -0.3834795951843262 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4317043721675873 -0.1336172223091126 -0.3254274725914002 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.4584673047065735 -0.1203473433852196 -0.3968609273433685 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.5389079451560974 -0.1336172223091126 -0.4325778484344482 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -0.7617045640945435 -0.4102422595024109 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.445085734128952 -0.7617045640945435 -0.4200382828712463 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.5389079451560974 -0.748434841632843 -0.4325778484344482 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.4317043721675873 -0.7617045640945435 -0.4236239194869995 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4183229506015778 -0.7617045640945435 -0.4200382232666016 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4085270166397095 -0.7617045640945435 -0.4102422595024109 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4049413502216339 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4085270166397095 -0.7617045640945435 -0.3834795951843262 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.3698104023933411 -0.748434841632843 -0.3349975645542145 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4935983419418335 -0.1336172223091126 -0.3349975645542145 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.1336172223091126 -0.3968609273433685 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.5389079451560974 -0.1336172223091126 -0.3611441254615784 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.4317043721675873 -0.748434841632843 -0.3254274725914002 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.5554925203323364 -0.748434841632843 -0.3968609273433685 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4317043721675873 -2.021480560302734 -0.340120404958725 0.4317043721675873 -2.021480560302734 -0.340120404958725 0.4548816978931427 -2.021480560302734 -0.3535017669200897 0.4584673047065735 -2.021480560302734 -0.340120404958725 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.4584673047065735 -0.7617045640945435 -0.3968609273433685 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.445085734128952 -2.021480560302734 -0.3632977306842804 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4317043721675873 -2.021480560302734 -0.3668833076953888 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4183229506015778 -2.021480560302734 -0.3632976710796356 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4085270166397095 -2.021480560302734 -0.3535017669200897 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4049413502216339 -2.021480560302734 -0.340120404958725 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4085270166397095 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4183229506015778 -0.7617045640945435 -0.3736835718154907 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4935983419418335 -0.748434841632843 -0.3349975645542145 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.5389079451560974 -0.748434841632843 -0.3611441254615784 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4548816978931427 -2.021480560302734 -0.3267389833927155 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.4183229506015778 -2.021480560302734 -0.3169430494308472 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4317043721675873 -0.7617045640945435 -0.3700979650020599 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.4548816978931427 -0.7617045640945435 -0.3834795951843262 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.445085734128952 -0.7617045640945435 -0.3736835718154907 0.4317043721675873 -2.021480560302734 -0.313357412815094 0.445085734128952 -2.021480560302734 -0.3169430494308472 0.445085734128952 -2.021480560302734 -0.3169430494308472</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"318\" source=\"#ID1867\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1864\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1868\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"954\">-0.8556685834497534 -0.239464828911311 0.4587895716028961 -0.9991689723260824 0.01267121750300655 -0.03874022441638811 -0.9998015493569296 -0.009297490012715751 0.01761869980862258 0.9998015493569296 0.009297490012715751 -0.01761869980862258 0.9991689723260824 -0.01267121750300655 0.03874022441638811 0.8556685834497534 0.239464828911311 -0.4587895716028961 2.067409586496516e-017 0.935896621035304 0.3522747716409744 5.921428077004473e-013 0.9358968013032771 0.3522742927184643 -1.587002344317823e-006 0.9358946522337397 0.3522800021542084 1.587002344317823e-006 -0.9358946522337397 -0.3522800021542084 -5.921428077004473e-013 -0.9358968013032771 -0.3522742927184643 -2.067409586496516e-017 -0.935896621035304 -0.3522747716409744 -0.8480525375658584 0.1265398159716716 -0.514581935654531 0.8480525375658584 -0.1265398159716716 0.514581935654531 -0.8829612559730874 -0.1097985247969643 0.4564249165008834 0.8829612559730874 0.1097985247969643 -0.4564249165008834 -1.682874098589758e-006 0.9358953173048604 0.3522782352686621 1.682874098589758e-006 -0.9358953173048604 -0.3522782352686621 -2.838051631940314e-006 0.9358978264604545 0.352271569131746 2.838051631940314e-006 -0.9358978264604545 -0.352271569131746 -0.8666306184148966 -0.00442290063085205 -0.4989306656999783 0.8666306184148966 0.00442290063085205 0.4989306656999783 -0.8730063918053552 0.2248510712722504 -0.4327838208791034 0.8730063918053552 -0.2248510712722504 0.4327838208791034 -0.9999988486572118 5.052889436661559e-005 0.001516618304645341 0.9999988486572118 -5.052889436661559e-005 -0.001516618304645341 -0.4886371618025431 -0.4041532626989209 0.7732359693879821 0.4886371618025431 0.4041532626989209 -0.7732359693879821 -1.917342724171167e-007 0.9358950140260669 0.3522790409903935 1.917342724171167e-007 -0.9358950140260669 -0.3522790409903935 5.980649598987417e-006 0.9358984655541968 0.3522698711748308 -5.980649598987417e-006 -0.9358984655541968 -0.3522698711748308 -0.5005661618020015 -0.007509959021396832 -0.8656657080965546 0.5005661618020015 0.007509959021396832 0.8656657080965546 -0.4827533759849262 0.2035025572784121 -0.8517839439413629 0.4827533759849262 -0.2035025572784121 0.8517839439413629 -0.8653247216990916 0.004756257951794971 0.5011890900914403 0.8653247216990916 -0.004756257951794971 -0.5011890900914403 -0.5171218611954367 -0.202882400749179 0.8315189186903789 0.5171218611954367 0.202882400749179 -0.8315189186903789 1.68287208713074e-006 0.9358953173029266 0.3522782352737994 1.917351264601493e-007 0.9358950140260669 0.3522790409903935 -1.917351264601493e-007 -0.9358950140260669 -0.3522790409903935 -1.68287208713074e-006 -0.9358953173029266 -0.3522782352737994 6.836166544110813e-005 -0.4635403853521201 0.8860757904797371 -6.836166544110813e-005 0.4635403853521201 -0.8860757904797371 -3.177932804283919e-011 0.9359008363333675 0.3522635725568331 3.177932804283919e-011 -0.9359008363333675 -0.3522635725568331 -0.5059370200118128 0.3974419379304228 -0.7655505455263398 0.5059370200118128 -0.3974419379304228 0.7655505455263398 -0.09003842888364019 0.9737652901199937 -0.2089838297134265 -0.09509752941100279 0.9689853039308536 -0.2280875723619209 -0.1403416273619077 0.9842110206774678 -0.1078558964842833 0.1403416273619077 -0.9842110206774678 0.1078558964842833 0.09509752941100279 -0.9689853039308536 0.2280875723619209 0.09003842888364019 -0.9737652901199937 0.2089838297134265 -0.126852229460708 0.9869510620438351 -0.09917717989232054 -0.1395093049752446 0.9902123892279267 -0.004071614525624451 0.1395093049752446 -0.9902123892279267 0.004071614525624451 0.126852229460708 -0.9869510620438351 0.09917717989232054 -0.1371433043003548 0.9905509185681858 -0.0007692914296476124 -0.1287262632701252 0.9876956149108226 0.08880834099589038 0.1287262632701252 -0.9876956149108226 -0.08880834099589038 0.1371433043003548 -0.9905509185681858 0.0007692914296476124 1.587004143046497e-006 0.935894652233592 0.3522800021546005 -1.587004143046497e-006 -0.935894652233592 -0.3522800021546005 2.786697723764069e-005 -0.2371628431086368 0.9714699095041799 0.4886794166797998 -0.4044362861970698 0.7730612641444482 -0.4886794166797998 0.4044362861970698 -0.7730612641444482 -2.786697723764069e-005 0.2371628431086368 -0.9714699095041799 -5.980705087972674e-006 0.935898465560064 0.3522698711592422 5.980705087972674e-006 -0.935898465560064 -0.3522698711592422 -6.919749986476737e-005 0.4607735675319257 -0.8875177264007791 -2.030936765399969e-005 0.2302497252968681 -0.9731315756814423 2.030936765399969e-005 -0.2302497252968681 0.9731315756814423 6.919749986476737e-005 -0.4607735675319257 0.8875177264007791 -0.002416077874502486 0.9596332719212614 -0.2812439261377904 0.002416077874502486 -0.9596332719212614 0.2812439261377904 2.100185833579053e-005 -0.008554339815961683 -0.9999634107452307 -2.100185833579053e-005 0.008554339815961683 0.9999634107452307 -0.1312303575950728 0.9861239462733067 0.1016767221729236 0.1312303575950728 -0.9861239462733067 -0.1016767221729236 -0.4992870124823224 0.008307555237405912 0.8663968280715567 0.4992870124823224 -0.008307555237405912 -0.8663968280715567 -5.168604428006794e-018 0.9358966210353041 0.3522747716409743 5.168604428006794e-018 -0.9358966210353041 -0.3522747716409743 0.5171535886277142 -0.2026337189272053 0.8315598245004428 0.8556154675465553 -0.2398097110614041 0.4587084849615663 -0.8556154675465553 0.2398097110614041 -0.4587084849615663 -0.5171535886277142 0.2026337189272053 -0.8315598245004428 2.838054848582697e-006 0.9358978264607185 0.3522715691310447 -2.838054848582697e-006 -0.9358978264607185 -0.3522715691310447 0.5058589369169176 0.3977581476772782 -0.7654379085841166 0.4827393731108922 0.2033075991014512 -0.8518384340918802 -0.4827393731108922 -0.2033075991014512 0.8518384340918802 -0.5058589369169176 -0.3977581476772782 0.7654379085841166 -1.881051239773034e-006 -7.640001222029348e-019 -0.9999999999982308 -0.3319732451570799 0 -0.9432888022763108 -1.881051239737275e-006 8.774096407935407e-019 -0.9999999999982309 1.881051239737275e-006 -8.774096407935407e-019 0.9999999999982309 0.3319732451570799 -0 0.9432888022763108 1.881051239773034e-006 7.640001222029348e-019 0.9999999999982308 -0.01115576265166628 0.9608317846152155 -0.2769076211172235 0.01115576265166628 -0.9608317846152155 0.2769076211172235 -0.7377515990043749 -1.25323332689929e-018 -0.6750722762538011 -0.33197324515708 0 -0.9432888022763108 0.33197324515708 -0 0.9432888022763108 0.7377515990043749 1.25323332689929e-018 0.6750722762538011 -0.9999999999997967 -2.527537940891982e-018 6.374458576434603e-007 -0.7377515990043749 1.151169250985365e-018 -0.6750722762538011 0.7377515990043749 -1.151169250985365e-018 0.6750722762538011 0.9999999999997967 2.527537940891982e-018 -6.374458576434603e-007 -0.7377531673073663 2.340989451153134e-019 0.6750705623325232 -0.9999999999997968 -8.014181208772256e-024 6.374458577993136e-007 0.9999999999997968 8.014181208772256e-024 -6.374458577993136e-007 0.7377531673073663 -2.340989451153134e-019 -0.6750705623325232 -0.08760462976196862 0.9740271832325209 0.208797689566694 0.08760462976196862 -0.9740271832325209 -0.208797689566694 0.8829571124029861 -0.1095877801416802 0.4564835770327334 0.9997987427153047 -0.009377883076055511 0.01773497600528058 -0.9997987427153047 0.009377883076055511 -0.01773497600528058 -0.8829571124029861 0.1095877801416802 -0.4564835770327334 -2.237914300538736e-005 0.009583330192389836 0.9999540785864107 2.237914300538736e-005 -0.009583330192389836 -0.9999540785864107 0.8480717938194996 0.1262944581961821 -0.5146104763378888 0.873024571469934 0.2251232287911784 -0.4326056281052904 -0.873024571469934 -0.2251232287911784 0.4326056281052904 -0.8480717938194996 -0.1262944581961821 0.5146104763378888 0.5005854389560404 -0.007401400196843076 -0.8656554958990987 -0.5005854389560404 0.007401400196843076 0.8656554958990987 0.3319731982955007 -6.745699210829516e-019 -0.9432888187683854 -0.3319731982955007 6.745699210829516e-019 0.9432888187683854 0.09263129721724944 0.9711531077667437 -0.2197295702695592 -0.09263129721724944 -0.9711531077667437 0.2197295702695592 -0.7377531673073663 -1.172867571393463e-018 0.6750705623325233 0.7377531673073663 1.172867571393463e-018 -0.6750705623325233 -0.09263146804003425 0.9711531171285674 0.2197294568787146 0.09263146804003425 -0.9711531171285674 -0.2197294568787146 0.9991711718222368 0.01261032889182782 -0.03870334616823358 -0.9991711718222368 -0.01261032889182782 0.03870334616823358 0.4992676227779674 0.008197452986455137 0.8664090503971966 -0.4992676227779674 -0.008197452986455137 -0.8664090503971966 0.01115519159442941 0.9608316972177918 0.2769079473797549 -0.01115519159442941 -0.9608316972177918 -0.2769079473797549 0.86662126022728 -0.004314606107473825 -0.4989478685155576 -0.86662126022728 0.004314606107473825 0.4989478685155576 0.08760487199195768 0.9740272570283463 -0.2087972436817805 -0.08760487199195768 -0.9740272570283463 0.2087972436817805 0.09003726007103659 -0.9737660595087934 -0.2089807482703076 0.00241508734230594 -0.9596341737255689 -0.281240857577937 0.09509584820952806 -0.9689861245568474 -0.2280847870192401 -0.09509584820952806 0.9689861245568474 0.2280847870192401 -0.00241508734230594 0.9596341737255689 0.281240857577937 -0.09003726007103659 0.9737660595087934 0.2089807482703076 0.3319731982955007 -2.324859276687647e-018 -0.9432888187683854 -0.3319731982955007 2.324859276687647e-018 0.9432888187683854 -0.09263044473430689 -0.9711535481634911 -0.2197279831923698 0.01115459616213048 -0.9608326541598842 -0.2769046508900355 -0.01115459616213048 0.9608326541598842 0.2769046508900355 0.09263044473430689 0.9711535481634911 0.2197279831923698 -0.1312286864881223 -0.9861242709384043 -0.1016757301857369 -0.08760434262081819 -0.974027721213559 -0.208795300381727 0.08760434262081819 0.974027721213559 0.208795300381727 0.1312286864881223 0.9861242709384043 0.1016757301857369 -0.1287246115928297 -0.9876958999286996 -0.088807565186258 -0.1371417064276759 -0.9905511396965514 0.0007694179413118097 0.1371417064276759 0.9905511396965514 -0.0007694179413118097 0.1287246115928297 0.9876958999286996 0.088807565186258 -0.1395077150076342 -0.9902126133369116 0.004071589595286874 -0.1268509467525985 -0.9869513608391595 0.09917584708839622 0.1268509467525985 0.9869513608391595 -0.09917584708839622 0.1395077150076342 0.9902126133369116 -0.004071589595286874 -0.331973819900527 1.364743535802257e-018 0.9432886000056675 0.331973819900527 -1.364743535802257e-018 -0.9432886000056675 0.8653372986924505 0.004645889019576963 0.5011684100248843 -0.8653372986924505 -0.004645889019576963 -0.5011684100248843 0.09509666920911056 0.968985414375468 0.2280874618056319 0.002415579229262457 0.9596332152764271 0.2812441236989915 -0.002415579229262457 -0.9596332152764271 -0.2812441236989915 -0.09509666920911056 -0.968985414375468 -0.2280874618056319 0.9999989165626203 4.94714478615198e-005 0.001471198885774526 -0.9999989165626203 -4.94714478615198e-005 -0.001471198885774526 0.1312301110781591 0.9861239705929389 -0.1016768044759023 0.1287260017345746 0.9876956692818676 -0.08880811539084656 -0.1287260017345746 -0.9876956692818676 0.08880811539084656 -0.1312301110781591 -0.9861239705929389 0.1016768044759023 0.1403399956962591 -0.9842114735813607 -0.1078538867115155 -0.1403399956962591 0.9842114735813607 0.1078538867115155 0.7377521402481055 -1.487338798067641e-018 -0.6750716847560261 -0.7377521402481055 1.487338798067641e-018 0.6750716847560261 -0.1403401479142629 -0.9842114215621126 0.1078541633414679 0.1403401479142629 0.9842114215621126 -0.1078541633414679 -0.3319738199005269 0 0.9432886000056675 0.3319738199005269 -0 -0.9432886000056675 0.1403416649897658 0.9842111004808136 0.1078551192954987 0.090038403757831 0.9737654687449453 0.2089830082295663 -0.090038403757831 -0.9737654687449453 -0.2089830082295663 -0.1403416649897658 -0.9842111004808136 -0.1078551192954987 -1.787972108189189e-017 -8.774093855961984e-019 1 1.787972108189189e-017 8.774093855961984e-019 -1 0.1395091761623891 0.9902124067922382 0.004071756526886208 0.1371430596439661 0.9905509523182452 0.0007694497444450702 -0.1371430596439661 -0.9905509523182452 -0.0007694497444450702 -0.1395091761623891 -0.9902124067922382 -0.004071756526886208 0.7377521402481055 -2.851397952395639e-019 -0.6750716847560262 -0.7377521402481055 2.851397952395639e-019 0.6750716847560262 0.4964416914178915 -0.03905842806366463 -0.8671909168224369 0.8690189797524137 -0.02226235366205126 -0.4942776552095997 0.8625898747785986 -0.02276290866836874 -0.5053914897566019 -0.8625898747785986 0.02276290866836874 0.5053914897566019 -0.8690189797524137 0.02226235366205126 0.4942776552095997 -0.4964416914178915 0.03905842806366463 0.8671909168224369 0.1268506497066003 -0.9869513978373604 -0.09917585883618071 -0.1268506497066003 0.9869513978373604 0.09917585883618071 -1.52281652602719e-006 -0.04499460000659483 -0.9989872301325615 0.5028583418923243 -0.0388919326887635 -0.8634934311047393 -0.5028583418923243 0.0388919326887635 0.8634934311047393 1.52281652602719e-006 0.04499460000659483 0.9989872301325615 -0.4964423698710854 -0.03905845126508915 -0.867190527382278 -1.545680386762055e-006 -0.04499460000420967 -0.9989872301326338 1.545680386762055e-006 0.04499460000420967 0.9989872301326338 0.4964423698710854 0.03905845126508915 0.867190527382278 -0.8625884526310785 -0.02276303227608779 -0.5053939114681928 -0.50285897280859 -0.03889187568526324 -0.8634930662556427 0.50285897280859 0.03889187568526324 0.8634930662556427 0.8625884526310785 0.02276303227608779 0.5053939114681928 -0.999972444272022 -0.0003340209379775213 -0.007416139605689701 -0.8690175476164547 -0.0222624533144969 -0.4942801686362734 0.8690175476164547 0.0222624533144969 0.4942801686362734 0.999972444272022 0.0003340209379775213 0.007416139605689701 -0.869018890990955 0.02226238096317084 0.4942778100367258 -0.9999724485762634 0.0003340077636549147 0.007415559803963278 0.9999724485762634 -0.0003340077636549147 -0.007415559803963278 0.869018890990955 -0.02226238096317084 -0.4942778100367258 -0.09003745435493794 -0.9737660522810231 0.2089806982434363 0.09003745435493794 0.9737660522810231 -0.2089806982434363 0.1268522136644417 0.9869510788455127 0.0991770328962782 -0.1268522136644417 -0.9869510788455127 -0.0991770328962782 3.575944216378378e-017 -5.670473461277961e-020 1 0.3319736856030877 -2.267846863054493e-018 0.9432886472692769 -0.3319736856030877 2.267846863054493e-018 -0.9432886472692769 -3.575944216378378e-017 5.670473461277961e-020 -1 0.9999999999997968 5.364539505124322e-020 6.374480754040954e-007 0.9999999999997968 1.317410307255766e-018 6.374480752092781e-007 -0.9999999999997968 -1.317410307255766e-018 -6.374480752092781e-007 -0.9999999999997968 -5.364539505124322e-020 -6.374480754040954e-007 0.9999724494907532 0.0003339955886191514 0.007415437034315195 -0.9999724494907532 -0.0003339955886191514 -0.007415437034315195 0.1395075400449987 -0.9902126375751152 -0.004071689713896718 -0.1395075400449987 0.9902126375751152 0.004071689713896718 -0.8625884776429428 0.02276303416273365 0.5053938686938501 0.8625884776429428 -0.02276303416273365 -0.5053938686938501 -0.09509564702997102 -0.9689861231902501 0.2280848767031266 0.09509564702997102 0.9689861231902501 -0.2280848767031266 0.3319736856030877 2.651523838246855e-018 0.9432886472692769 0.7377523761315967 -1.246220707811482e-018 0.675071426970645 -0.7377523761315967 1.246220707811482e-018 -0.675071426970645 -0.3319736856030877 -2.651523838246855e-018 -0.9432886472692769 -0.002415539982883647 -0.9596341030532715 0.2812410948345463 0.002415539982883647 0.9596341030532715 -0.2812410948345463 0.7377523761315968 2.974672679722514e-018 0.6750714269706449 -0.7377523761315968 -2.974672679722514e-018 -0.6750714269706449 0.1371414842093252 -0.9905511705498352 -0.0007693056707454696 -0.1371414842093252 0.9905511705498352 0.0007693056707454696 0 -1 0 0 -1 0 0 -1 0 -0 1 -0 -0 1 -0 -0 1 -0 0.9999724450707984 -0.0003340101651128226 -0.007416032385219119 -0.9999724450707984 0.0003340101651128226 0.007416032385219119 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 -0.5028607391297926 0.03889185254060898 0.8634920386707676 0.5028607391297926 -0.03889185254060898 -0.8634920386707676 0.0926303973702594 -0.9711537878116366 0.2197269439603129 -0.0111548222395139 -0.9608325919480819 0.2769048576517494 0.0111548222395139 0.9608325919480819 -0.2769048576517494 -0.0926303973702594 0.9711537878116366 -0.2197269439603129 0.1287245943318308 -0.9876959332292812 0.08880721984413723 0.1312287128889473 -0.9861242716440033 0.1016756892678608 -0.1312287128889473 0.9861242716440033 -0.1016756892678608 -0.1287245943318308 0.9876959332292812 -0.08880721984413723 0 -1 0 -0 1 -0 0.8625890965858487 0.02276300383816705 0.505392813668213 -0.8625890965858487 -0.02276300383816705 -0.505392813668213 0 -1 0 -0 1 -0 -0.4964399158161878 0.03905848206527661 0.8671919308683476 0.4964399158161878 -0.03905848206527661 -0.8671919308683476 0.08760369597439988 -0.9740277899170934 0.2087952511932388 -0.08760369597439988 0.9740277899170934 -0.2087952511932388 5.530634213415967e-007 0.04499456454482068 0.9989872317307745 -5.530634213415967e-007 -0.04499456454482068 -0.9989872317307745 0.8690195690259515 0.02226231191655951 0.4942766210514911 -0.8690195690259515 -0.02226231191655951 -0.4942766210514911 0 -1 0 -0 1 -0 0 -1 0 -0 1 -0 5.449766517714774e-007 0.04499456454602577 0.9989872317307246 0.5028605664170018 0.0388918425240569 0.8634921397024157 -0.5028605664170018 -0.0388918425240569 -0.8634921397024157 -5.449766517714774e-007 -0.04499456454602577 -0.9989872317307246 0.496439775365582 0.03905849917252066 0.8671920105013425 -0.496439775365582 -0.03905849917252066 -0.8671920105013425</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"318\" source=\"#ID1868\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1866\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1869\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"932\">-11.25932805518937 0.4879479208894881 -5.156333825802362 -2.226597808822293 -11.31054402336369 0.3866887779356041 -4.049413502216338 -3.887123517758756 -4.317043721675872 -3.887123517758756 -4.085270166397094 -3.781856993454377 -6.177416765474117 -3.699072506932177 -6.203196720386824 -3.806149211170691 -12.3271952343616 -1.079337578188712 -5.102641539361006 -2.069736751696081 -5.128428871588065 -2.176811828073098 -11.22662195928344 0.5444030103276085 -4.085310375791861 -3.781806192112567 -4.317084090941696 -3.887072498583008 -4.183269598376145 -3.704744458619817 -4.049413502216339 -3.886981074854326 -4.085270166397095 -3.992246938446414 -4.317043721675873 -3.886981074854326 -5.691727905781828 -3.898548109315947 1.213232401357073 -3.956600576821714 -5.712962145088035 -4.006240615044608 -12.31249712833532 -1.074900243098617 -6.183715396076771 -3.795053293626222 -12.36370455952466 -1.176161371079548 -5.690152164672538 -2.119796852854564 1.19349024601802 -2.176455698956791 -5.711383122707162 -2.227489233440087 -8.946129821920774 3.992730203131711 -3.421382997099307 0.6360191868382803 -9.018805069777802 3.899948727227846 -4.183231927890725 -3.704762860955324 -4.317046160277991 -3.887091019087 -4.317046140963053 -3.67655585860222 -4.085342644956503 -3.992324055119378 -4.183302193873223 -4.069386657642355 -4.317115914344315 -3.887057801982695 1.239341430844225 -4.548491456372043 1.240202612821271 -4.657470718763132 -5.686605238373446 -4.616233736127349 1.213307491042461 -3.839496262162217 1.213394600898758 -3.948476423527015 -5.691566469847769 -3.890480190500433 -6.932807065752982 -3.100785743552962 -6.989664092101249 -3.200166193023483 -12.53403592490533 0.2276052443095399 1.193242306620966 -2.081487505141862 1.193332072744563 -2.190467665172695 -5.690311070112399 -2.133863893882101 -3.253442528050039 0.8671135758711629 -3.310462406844037 0.7677901596581189 -8.785764873295038 4.174268162888379 -4.317041283062712 -3.887091509280536 -4.450854919403604 -3.70476335114886 -4.317041302377735 -3.676556348795756 0.8086484589963355 3.167786974002858 -2.256126201329711 8.073424631186649 -2.133779487386396 8.124547093341629 -4.183003643697426 -4.069300554675565 -4.316817621357123 -4.097506379542639 -4.316819398015708 -3.886972622755279 -12.55968530201353 0.09185059392995383 -6.966178530172553 -3.286159003938216 -12.63222926681517 -0.0009953749343425782 -3.454986706984768 -3.788184490826589 -3.954554745392738 -3.480431070579061 -3.857710392536873 -3.40250224046097 -5.701675118576261 -4.724124724152334 -5.686922497683787 -4.615762644769067 1.239882489387081 -4.657296288159409 -3.015430911568257 -3.45549861995946 -3.866061732078935 -3.279657853897043 -3.830588484267588 -3.174311014602082 -2.869703246413577 -3.070216614262001 -3.848985722099194 -3.070216614262001 -3.88451166256943 -2.964880763915582 1.164702397532125 0.1770946387850281 -5.718563410058719 0.1050305212584034 -5.70388740067092 0.213399701844485 -4.317003352372439 -3.88708061339941 -4.548776769499002 -3.781814306928624 -4.450817248891459 -3.704752573435621 6.560394906950577 0.3286585774584608 9.620672185692577 5.229913621577116 9.74302937016806 5.178807635345643 1.065295834394154 3.235331682227785 0.9452107955214961 3.180992217859886 -1.891195156386079 8.175852241738964 -4.317269821468539 -4.09746128944816 -4.451083203080727 -4.069255464581087 -4.31726804480204 -3.8869275326608 -9.738500023425573 5.129012709894578 -9.616306594751213 5.180360521298965 -6.611051826073217 0.1623460613082861 -9.454700111799376 5.323132414276861 -6.435619234164136 0.321223851333408 -6.555527445260597 0.2666430333145937 -3.63515919421932 -3.793903989688869 -4.253489030695904 -3.872230866086532 -4.125696002155108 -3.477287832190934 -3.0825751920921 -3.587025621783866 -3.533045564090324 -3.79624728320938 -3.932232694741615 -3.408296458879248 -5.60134158197208 -4.184464320313635 1.336914105341033 -4.00328014102398 1.341202412833731 -4.112208839164714 -2.869703246413577 -3.201819735854989 -3.034018435132346 -3.483348470546936 -3.848985722099194 -3.201819735854989 -2.863179646514935 -3.026580096309139 -3.877962833675873 -2.921093940708686 -3.027409744579753 -2.74502157313123 1.163488109067834 0.2544732377842759 1.164423167756218 0.1454940206030179 -5.704168854698622 0.1815377279855652 -4.317043721675873 -3.887123517758756 -4.584673047065735 -3.887123517758756 -4.548816978931427 -3.781856993454378 7.015589282693689 -3.135250642444145 12.59462165360195 0.1229826177130727 12.66733284910373 0.03021837817334129 6.626458302856106 0.3769634224572723 6.506386650646912 0.4313202821127311 9.587445864106229 5.321890509821727 1.051594831123396 2.461417897561974 -5.811893690170207 2.259574663057269 -5.811018120800472 2.368553090480205 -4.450784653294967 -4.069401169118899 -4.548744500234847 -3.992338566596373 -4.316971528870174 -3.887072313460307 2.137071460503123 8.09309811398556 2.259275193355469 8.041766441740156 -0.9858725881521666 3.130809355669199 2.021936242369472 8.097526591115551 -1.001649242573136 3.091217127777414 -1.121544259135674 3.145814976261 -5.601937532846225 -4.285877158378675 -5.600540831480743 -4.176901973356207 1.341986773373886 -4.103678421953079 1.336172223091126 -3.919127434132936 1.336172223091126 -3.426441934360624 7.48434841632843 -3.919127434132936 -4.197406435494571 -3.906323168964242 -4.207936052303553 -3.539831343929594 -4.074543774712506 -3.510413099263281 1.336172223091126 -4.323366513692371 1.336172223091126 -3.911842736837371 7.48434841632843 -4.323366513692371 1.336172223091125 -3.851737772472658 7.484348416328429 -4.161523032657492 1.336172223091125 -4.161523032657492 1.336172223091126 -1.501688990757509 7.48434841632843 -1.811473400382779 1.336172223091126 -1.811473400382779 -3.904849011048787 -2.829543218396435 -4.002054740016886 -2.751892858936738 -3.054622934974881 -2.652496146602985 -4.317043721675873 -3.886981074854326 -4.548816978931427 -3.992246938446414 -4.584673047065735 -3.886981074854326 6.200269010085168 -3.676611865574002 12.32869786298523 -1.068931443338561 12.37991994486331 -1.170188541916581 7.099454365084103 -3.157335906409499 7.042478665492553 -3.0579966201888 12.65024069585977 0.1555142783734717 -1.359823511635173 -3.991770761742349 5.497885797001669 -4.195025570283538 5.498723478042611 -4.304003729090315 1.047798218522696 2.556907610501718 1.052599619174476 2.447992343471312 -5.810040288314465 2.356368562112011 3.272678277624529 0.6929156207975984 8.920339665811422 3.972390455149541 8.992918972889115 3.879561386303931 3.219001459711274 0.7306060224236908 3.162187818934207 0.8300020072767896 8.838692483510227 4.064684875963754 5.879996342784142 2.385105372291689 5.881356040750983 2.276130350597654 -1.05815630851208 2.568714925286193 5.878332357443201 2.264896201096839 -1.065693258161062 2.444689632603452 -1.061441379121859 2.553618639921662 -1.336172223091126 2.793267631778692 -7.48434841632843 2.793267631778692 -7.48434841632843 3.285952844951019 7.48434841632843 -3.426441934360624 7.48434841632843 -3.919127434132937 -4.373805526414469 -3.786082117950414 -4.992093348699553 -3.707552063028582 -4.367716810338519 -3.419527989936349 1.336172223091126 -3.911842736837372 7.48434841632843 -3.911842736837372 7.48434841632843 -4.323366513692371 7.484348416328429 -3.851737772472658 7.48434841632843 -1.50168899075751 7.48434841632843 -1.811473400382779 1.336172223091126 -1.50168899075751 -3.071376953586833 -2.528029870351948 -4.01861156644576 -2.628582916074811 -3.521514195545894 -2.318362213566327 5.090084218558638 -2.130050174670152 11.24429520147112 0.4832352675482442 11.29550869958536 0.3819761689427624 6.246664052589845 -3.799673615981539 6.22088480913609 -3.692597457778136 12.39644358099423 -1.179940226426094 -1.246517528801427 -4.550546713363268 5.621130304306502 -4.624012347117448 5.635786058304162 -4.732383390786898 -1.361171579666276 -4.108489238448604 -1.356407496565788 -3.999573410498429 5.502444219199675 -4.307636108092342 -4.090766564433891 -2.557312620769638 -4.224265238009214 -2.528195260713025 -3.597677451377235 -2.243158152309802 5.087383672399941 -2.18337100296408 5.061611741987281 -2.07629322683374 11.26295794793213 0.4419579085109923 5.763077703654339 0.2202165617892674 5.77781040199036 0.1118526383413461 -1.162861216860616 0.2884473437345334 -1.165190709042337 0.1448846668801672 -1.164349115898163 0.2538645213187106 5.77637430400276 0.07853427013600932 -4.389463072911469 -3.404813019702051 -5.016050916463099 -3.689849823559386 -4.522961146031338 -3.375695424019953 4.598967770056982 -1.79833966492206 3.980637888849862 -1.876664520023774 4.108430616914907 -1.481722326957809 -1.336172223091126 3.285952844951019 4.655911190883181 -1.902843944830234 4.037623385678563 -1.8243120086256 4.661999914893328 -1.53629016742144 4.527828169528757 -2.470008229966375 4.07769082770391 -2.260343465780514 5.024925214163027 -2.159788998055654 5.105821210832828 -2.86663478637923 4.255268363443153 -3.042708082620281 4.091038227155185 -2.761148637412749 5.044209145774468 -3.461507701973369 4.064926882103503 -3.461507701973369 4.229242106396518 -3.179979916059498 7.48434841632843 0.7910374011194875 1.336172223091126 0.7910374011194875 1.336172223091126 1.20256258411519 -1.215021998055715 -3.849100321047893 5.668530750543769 -3.901527771948362 5.689759008936475 -4.009220359061231 -1.245917132711283 -4.65707195273612 -1.245001968579687 -4.548092465262331 5.637357416913735 -4.728617467005762 -4.398925360414483 -2.600159325581975 -4.532317060479 -2.629576838601912 -4.409454769913681 -2.233667721657282 -3.632900943290331 -2.189733141137928 -4.25727745510186 -2.477757474604675 -4.25118877281414 -2.11120357100095 -1.192171369996044 -2.066029100906539 5.712701999614013 -2.117062561299272 5.733933557029467 -2.224755271440215 -1.192754216500659 -2.190516302592015 -1.192669748549435 -2.081536261301629 5.73344088719767 -2.240108200678426 -4.5656090608546 -3.341432354019074 -5.513041748663499 -3.440830012428862 -4.662815089009785 -3.26378199367109 -5.056196599029924 -3.656721323771787 -5.506334157822702 -3.447054609347743 -4.55909866668642 -3.346500601184748 3.753809016424408 -2.615614101766433 3.254240738201578 -2.307859367455506 3.35108541456917 -2.229930090628913 3.709564931190559 -1.789345549227117 3.699035689224811 -1.422854068111199 3.832427392771667 -1.393436340067068 -1.336172223091126 1.559534496414023 -7.48434841632843 1.559534496414023 -7.48434841632843 1.971059413755167 4.829653773475252 -1.802847712215602 4.203066030624735 -2.087882385388729 4.696155106397431 -1.773729652384058 5.094043006545995 -2.598784550747651 4.146611422267142 -2.698182668655443 4.996837256437833 -2.521134673002487 5.044209145774468 -2.920156948337632 5.079735093936073 -3.025492797078757 4.064926882103503 -2.920156948337632 5.152507738915643 -3.227597421005711 5.117034482475075 -3.332944258502495 4.301877161004605 -3.051757596440364 7.48434841632843 1.202562584115189 7.48434841632843 0.7910374011194871 1.336172223091126 1.202562584115189 -1.214607660721589 -3.948469926420947 -1.21452055376132 -3.839489886416141 5.690266300846059 -3.999453797983608 -4.581257623197647 -2.846054034152716 -4.678102273719453 -2.923983330856098 -5.080826238882672 -2.538299221345286 -4.499882057339431 -2.607496069431633 -4.990419312283299 -2.290878423264997 -4.372089439082432 -2.21255397974204 7.48434841632843 2.472321861005408 1.336172223091126 2.472321861005408 1.336172223091126 2.965007002528828 -4.705464220787445 -3.136219238946584 -4.669938869463472 -3.241555086694751 -5.684748763393963 -3.136219238946584 -4.672057829454055 -3.248859832323046 -5.522611505920555 -3.424933140104601 -5.686842493943526 -3.143373676442608 -1.336172223091126 1.971059413755167 -7.409068430673221 0.3249145827098133 -19.98966233534827 1.064766094517656 -7.404660809672519 0.4338412765039134 4.553338623446104 -2.190003492843049 4.102867905139561 -2.39922693608906 3.703680739113433 -2.011274437576131 -6.773888439565022 3.424174211924911 -6.796069614361738 3.316599855601481 -19.19736891434987 5.126473979874669 8.227265295491549 -3.147241571366506 8.205084261732841 -3.039666615267271 20.65074956555781 -1.444958821421544 7.793145823602609 -4.361621890856246 20.38255487059625 -3.839621650024103 7.797553449196779 -4.470548086950229 7.665359653794686 -3.821278902456142 20.26263494218131 -3.468155153201388 7.665792375382231 -3.930258553720039 7.567189501579987 -2.063511180631772 20.16446478923026 -1.710387188664076 7.567622223394784 -2.17249083189511 4.880381975831446 -3.993377869666359 4.030724667132458 -3.814649776983288 4.481195069289785 -3.605425389978992 -4.675700925023747 -2.998210361679813 -4.711173582560055 -3.103557198429646 -5.52633233621239 -2.822370538361239 -4.651826560390079 -2.863763786398194 -5.501484679215371 -2.685035624024081 -5.051014038527462 -2.475811155437392 -7.48434841632843 -3.747377295356638 -1.336172223091126 -3.747377295356638 -1.336172223091126 -4.240062436880058 7.48434841632843 2.965007002528828 -4.705464220787446 -3.087597849971966 -5.684748763393964 -3.087597849971966 -5.520432682364712 -2.806070047567281 -1.336172223091126 -1.301030195544497 -7.48434841632843 -0.9912446391528237 -1.336172223091126 -0.9912446391528237 -7.48434841632843 -1.301030195544497 -20.15843905855736 -1.71041840842217 -20.1580063523185 -1.601438652025392 -7.561596457176316 -2.172521225557526 -7.409066894753678 0.3249310810472088 -19.99406823863991 0.9558584747962992 -19.98966058625407 1.064784836080833 4.23988799867491 -3.14874530170004 3.3892568309797 -2.972904543073474 3.424729497680645 -2.867557708233359 -6.796053666512249 3.316632542204058 -19.21952810808441 5.018959681046655 -19.19734655203097 5.126533865774118 8.205091549186252 -3.039640111859205 20.62857050345016 -1.337333476700804 20.65075187313587 -1.444908266987489 7.793146669529714 -4.361620302146933 20.37814796266671 -3.730692613673115 20.38255561040468 -3.839618477489444 20.26220214244573 -3.359174136038071 20.26263486329693 -3.468154013760685 7.66535957252434 -3.821277710341584 20.16403233412861 -1.601413715692121 20.16446505373437 -1.710394046331714 7.567189758926244 -2.063517880278766 5.281576370006603 -3.714577262213224 5.184731992727119 -3.792506537220064 4.782008663444936 -3.406822535088784 -7.48434841632843 -4.680337721352934 -1.336172223091126 -4.680337721352934 -1.336172223091126 -5.091863107409017 -7.48434841632843 -4.240062436880058 4.517147758492656 -4.436747328136954 4.02661122550878 -4.120129960750964 4.644941112825926 -4.041805586192385 -1.336172223091126 -4.67196897260322 -7.48434841632843 -4.362184266770298 -1.336172223091126 -4.362184266770298 -7.48434841632843 -4.671968972603219 -7.48434841632843 -4.362184266770297 -1.336172223091126 -4.671968972603219 4.489529502429271 -2.712320343277041 4.32521338582573 -2.993849068761489 3.510245171836957 -2.712320343277041 4.584673047065735 -2.67561385234197 4.548816978931427 -2.780880566438039 4.317043721675873 -2.67561385234197 -7.561596303053825 -2.172518746637224 -20.15800619195587 -1.601436087927794 -7.561163595624159 -2.063539216700533 4.45085734128952 -2.857942148049673 4.317043721675873 -2.886148687203725 4.183229506015778 -2.8579416791598 4.085270166397095 -2.780880566438039 4.049413502216339 -2.67561385234197 4.085270166397095 -2.570346669356028 7.421110337296863 0.4342469318247725 20.01051949040724 0.9562455888556181 7.425517940747502 0.3253204034521427 -7.48434841632843 -5.091863107409017 4.587381043742893 -4.250297109005382 3.963004660012281 -4.538321168202035 3.969093198871385 -4.171767613647894 4.907821426619737 -4.411092705981898 4.774429118744769 -4.440510191280975 4.897292311241881 -4.04460144741143 4.45898714546114 -3.530783843134048 3.444202684978536 -3.425297690768829 4.294756120613209 -3.249225328591466 4.489529502429272 -3.353068421083288 3.510245171836957 -3.353068421083288 3.474719812821777 -3.247732574940354 4.548816978931427 -2.570346669356028 -20.2686605899131 -3.468131277202411 -20.26822788537411 -3.359151067887034 -7.67181798132415 -3.930234199200581 4.183229506015778 -2.493285322189331 20.00611015981752 1.065196324778427 20.01051779648356 0.9562702948233963 7.421108802549014 0.4342692620815847 4.500018497887991 -4.01532093159186 3.55278321095577 -4.115873932433938 4.049880885509911 -3.805653368389173 3.91758195470852 -4.390624369043138 3.784083870261765 -4.361507032611902 4.410671495546644 -4.076470155483391 19.24171640300716 5.0217752023098 6.818240106739196 3.319456624246194 6.796058569085949 3.427031331626517 3.570827690233118 -3.778814896990638 3.473621646181085 -3.701164548957879 4.42105411993872 -3.601767851251229 -7.671818428944595 -3.930238394956164 -20.26822831427421 -3.35915500811207 -7.671385720833205 -3.821258865021147 4.45085734128952 -2.493285322189331 4.317043721675873 -2.465078314145406 -20.65075244470812 -1.334488134425936 -8.22727480719437 -3.036800716469167 -8.249456161287556 -3.14437498844048 19.21954454934701 5.129323310270896 19.24172591903273 5.021748519984212 6.79606559508311 3.427016675112495 -7.814002178949348 -4.470136603468768 -20.39459606793192 -3.730284760667527 -7.809594555638277 -4.361209909732523 -20.39900543977191 -3.839206439762744 -20.39459776938297 -3.730280244790479 -7.814004200164126 -4.470135452444637 -20.67293229873431 -1.442089613319826 -20.65075113526788 -1.33451525555063 -8.249451644654457 -3.14438851003459</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"466\" source=\"#ID1869\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1865\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1863\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1864\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"168\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 1 6 12 7 2 8 14 9 1 10 0 11 8 12 7 13 16 14 6 15 18 16 7 17 1 18 20 19 12 20 2 21 12 22 22 23 14 24 24 25 1 26 26 27 14 28 0 29 16 30 7 31 28 32 18 33 30 34 7 35 20 36 32 37 12 38 24 39 20 40 1 41 12 42 34 43 22 44 36 45 24 46 14 47 38 48 14 49 26 50 7 51 40 52 41 53 38 54 26 55 44 56 30 57 46 58 7 59 22 60 34 61 48 62 50 63 51 64 52 65 34 66 12 67 32 68 56 69 52 70 57 71 60 72 57 73 61 74 36 75 14 76 38 77 7 78 64 79 40 80 66 81 44 82 67 83 66 84 38 85 44 86 46 87 70 88 7 89 72 90 48 91 73 92 48 93 34 94 73 95 50 96 76 97 51 98 56 99 50 100 52 101 34 102 32 103 78 104 60 105 56 106 57 107 60 108 61 109 80 110 82 111 36 112 38 113 7 114 84 115 64 116 86 117 67 118 87 119 86 120 66 121 67 122 82 123 38 124 66 125 70 126 90 127 7 128 92 129 72 130 93 131 72 132 73 133 93 134 73 135 34 136 78 137 96 138 97 139 98 140 76 141 102 142 51 143 97 144 104 145 105 146 108 147 109 148 104 149 112 150 113 151 108 152 61 153 116 154 80 155 7 156 90 157 84 158 118 159 87 160 119 161 118 162 86 163 87 164 122 165 66 166 86 167 122 168 82 169 66 170 124 171 125 172 92 173 93 174 124 175 92 176 93 177 73 178 128 179 73 180 78 181 128 182 96 183 98 184 130 185 97 139 105 186 98 187 76 188 132 189 102 190 104 191 109 192 105 193 113 194 109 148 108 147 134 195 113 196 112 197 80 198 116 199 136 200 138 201 119 202 125 203 138 204 118 205 119 206 140 207 86 208 118 209 140 210 122 211 86 212 116 213 142 214 136 215 124 216 138 217 125 218 124 219 93 220 144 221 128 222 144 223 93 224 102 225 132 226 146 227 148 228 149 229 150 230 154 231 96 183 130 185 149 232 156 233 157 234 156 235 160 236 161 237 164 238 160 239 165 240 168 241 165 242 169 243 134 244 112 245 172 246 174 247 118 248 138 249 174 250 140 251 118 252 142 253 176 254 177 255 136 256 142 257 177 258 180 259 138 260 124 261 144 262 180 263 124 264 146 265 182 266 183 267 132 268 182 269 146 270 148 271 150 272 186 273 149 274 157 275 150 276 154 277 130 278 188 279 157 280 156 281 161 282 161 283 160 284 164 285 168 286 164 287 165 288 190 289 168 290 169 291 192 292 134 293 172 294 180 295 174 296 138 297 176 298 194 299 195 300 176 301 195 302 177 303 192 304 172 305 198 306 200 307 183 308 201 309 183 310 182 311 201 312 204 313 154 277 188 279 206 314 207 315 208 316 212 317 148 318 186 319 206 320 214 321 215 322 214 323 218 324 219 325 222 326 223 327 218 328 226 329 227 330 222 331 230 332 231 333 226 334 190 335 169 336 234 337 194 338 200 339 236 340 194 341 236 342 195 343 238 344 198 345 239 346 238 347 192 304 198 306 200 348 201 349 236 350 204 351 242 352 243 353 188 354 242 352 204 351 207 355 246 356 208 357 206 358 215 359 207 360 212 361 186 362 248 363 214 364 219 365 215 366 218 367 223 368 219 369 222 370 227 371 223 372 231 373 227 374 226 375 250 376 231 377 230 378 252 379 190 380 234 381 254 382 239 383 255 384 254 385 238 344 239 346 252 386 234 387 258 388 243 389 260 390 255 391 242 392 260 393 243 394 262 395 212 396 248 397 264 398 265 399 266 400 208 401 246 402 270 403 265 399 272 404 266 400 272 404 274 405 266 400 274 405 276 406 266 400 276 406 278 407 266 400 266 400 278 407 280 408 266 400 280 408 282 409 284 410 250 411 230 412 260 413 254 382 255 384 286 414 287 415 258 416 287 417 252 418 258 419 262 420 290 421 291 422 262 423 248 424 290 425 264 398 266 400 294 426 246 427 296 428 270 429 266 400 282 409 298 430 300 431 250 432 284 433 291 434 302 435 286 436 302 437 287 438 286 439 300 440 284 441 304 442 290 443 302 444 291 445 270 446 296 447 306 448 294 426 266 400 308 449 266 400 298 430 310 450 312 451 304 452 313 453 312 454 300 455 304 456 306 457 316 458 313 459 296 460 316 461 306 462 308 449 266 400 310 450 316 463 312 464 313 465</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1865\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1866\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"168\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 9 10 11 3 13 4 5 4 15 17 10 9 10 19 11 13 21 4 23 13 3 4 25 15 5 15 27 29 10 17 10 31 19 13 33 21 4 21 25 23 35 13 15 25 37 27 15 39 42 43 10 45 27 39 10 47 31 49 35 23 53 54 55 33 13 35 58 53 59 62 58 63 39 15 37 43 65 10 68 45 69 45 39 69 10 71 47 74 49 75 74 35 49 54 77 55 53 55 59 79 33 35 58 59 63 81 62 63 39 37 83 65 85 10 88 68 89 68 69 89 69 39 83 10 91 71 94 75 95 94 74 75 79 35 74 99 100 101 54 103 77 106 107 100 107 110 111 111 114 115 81 117 62 85 91 10 120 88 121 88 89 121 89 69 123 69 83 123 95 126 127 95 127 94 129 74 94 129 79 74 131 99 101 99 106 100 103 133 77 106 110 107 111 110 114 115 114 135 137 117 81 126 120 139 120 121 139 121 89 141 89 123 141 137 143 117 126 139 127 145 94 127 94 145 129 147 133 103 151 152 153 131 101 155 158 159 152 162 163 159 166 163 167 170 166 171 173 115 135 139 121 175 121 141 175 178 179 143 178 143 137 127 139 181 127 181 145 184 185 147 147 185 133 187 151 153 151 158 152 189 131 155 162 159 158 167 163 162 166 167 171 170 171 191 173 135 193 139 175 181 196 197 179 178 196 179 199 173 193 202 184 203 202 185 184 189 155 205 209 210 211 187 153 213 216 217 211 220 221 217 221 224 225 225 228 229 229 232 233 235 170 191 237 203 197 196 237 197 240 199 241 199 193 241 237 202 203 244 245 205 205 245 189 209 247 210 210 216 211 249 187 213 216 220 217 220 224 221 224 228 225 229 228 232 233 232 251 235 191 253 256 240 257 240 241 257 259 235 253 256 261 244 244 261 245 249 213 263 267 268 269 271 247 209 267 273 268 267 275 273 267 277 275 267 279 277 281 279 267 283 281 267 233 251 285 256 257 261 259 288 289 259 253 288 292 293 263 293 249 263 295 267 269 271 297 247 299 283 267 285 251 301 289 303 292 289 288 303 305 285 301 292 303 293 307 297 271 309 267 295 311 299 267 314 305 315 305 301 315 314 317 307 307 317 297 311 267 309 314 315 317</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1865\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1870\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1871\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1875\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">0.4059732258319855 0.3273707330226898 0.4861110150814056 0.001826941967010498 0.36569744348526 0.4825262129306793 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.001826941967010498 0.36569744348526 0.4825262129306793 0.4059732258319855 0.3273707330226898 0.4861110150814056 -0.002457162365317345 0.3667368292808533 0.4761049449443817 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.4000329077243805 0.333241194486618 0.4851138293743134 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4000329077243805 0.333241194486618 0.4851138293743134 0.3997212946414948 0.3264333605766296 0.4921310245990753 0.001826941967010498 0.36569744348526 0.4825262129306793 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.001826941967010498 0.36569744348526 0.4825262129306793 -0.002457162365317345 0.3667368292808533 0.4761049449443817 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4000329077243805 0.333241194486618 0.4851138293743134 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4059732258319855 0.3273707330226898 0.4861110150814056 0.4059732258319855 0.3273707330226898 0.4861110150814056 -0.002457162365317345 0.3667368292808533 0.4761049449443817 0.4000329077243805 0.333241194486618 0.4851138293743134 0.002138050273060799 0.3725078105926514 0.4755116403102875 0.002138050273060799 0.3725078105926514 0.4755116403102875</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"28\" source=\"#ID1875\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1872\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1876\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">-0.08952341132944511 -0.9665019931361217 -0.2405399261824177 -0.09307031415484783 -0.9906940182325136 -0.09931404161262442 -0.08943517782608092 -0.96582685467682 -0.2432690604090423 0.08943517782608092 0.96582685467682 0.2432690604090423 0.09307031415484783 0.9906940182325136 0.09931404161262442 0.08952341132944511 0.9665019931361217 0.2405399261824177 -0.09308928585367543 -0.9907963814413132 -0.09826960558612438 0.09308928585367543 0.9907963814413132 0.09826960558612438 0.2301586543286202 0.693333295190555 0.6828732939702983 0.2287261533222507 0.6936103530025589 0.6830732208146296 0.5000460578009219 0.6103526617752574 0.6143480840220922 -0.5000460578009219 -0.6103526617752574 -0.6143480840220922 -0.2287261533222507 -0.6936103530025589 -0.6830732208146296 -0.2301586543286202 -0.693333295190555 -0.6828732939702983 -0.1956589388659544 0.7079285700643496 0.6786418196136265 -0.2198282281697055 0.704780168735802 0.6745075713856016 0.2198282281697055 -0.704780168735802 -0.6745075713856016 0.1956589388659544 -0.7079285700643496 -0.6786418196136265 -0.6416528063592415 0.5643263746532536 0.5194395238735935 0.6416528063592415 -0.5643263746532536 -0.5194395238735935 0.00891550759678178 -0.1584192619794581 -0.9873316824442412 0.01283181494370217 -0.113021758016135 -0.993509651055385 0.008890355094381066 -0.1587090432062825 -0.9872853696833769 -0.008890355094381066 0.1587090432062825 0.9872853696833769 -0.01283181494370217 0.113021758016135 0.993509651055385 -0.00891550759678178 0.1584192619794581 0.9873316824442412 0.01288447646505487 -0.1124075253154992 -0.9935786524068777 -0.01288447646505487 0.1124075253154992 0.9935786524068777</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"28\" source=\"#ID1876\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1874\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1877\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"48\">3.740585338318493 3.013731988598182 -0.3190001965646728 2.984658132854389 3.679196662021946 3.062556130331506 -0.3675170164644492 3.445144035647753 -0.3238915542370874 3.495903695925194 3.73570239328401 3.524241298361504 -1.023265483343171 0.6100779464911402 -0.9825317248039001 0.540116630602465 -1.065686325361761 0.5500585549780868 0.2558773499497036 0.7229336923277917 0.2578794837875551 0.6460002533954288 -3.741303136691545 0.8282759892767549 -2.758101724615067 2.262331227225474 -2.737613796339283 2.203216483757234 -2.811295632258756 2.19775447044182 4.180446050558359 -1.803728767205834 0.1805791100523501 -2.249569534563329 4.236472959786632 -1.754379034249905 0.2579904479145674 0.6477436715358349 -3.739199756091682 0.7530193926241987 -3.74119699173816 0.8299539626872152 0.4454430976743594 -2.467499234909472 0.393218062595942 -2.426247833057311 4.353792175678316 -1.799876336016639</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"24\" source=\"#ID1877\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1873\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1871\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1872\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"8\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 1 4 0 5 8 6 9 7 10 8 14 9 15 10 8 11 14 12 18 13 15 14 20 15 21 16 22 17 15 18 9 19 8 20 26 21 21 22 20 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1873\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1874\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"8\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 5 4 7 11 12 13 13 16 17 16 19 17 23 24 25 13 12 16 25 24 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1873\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1878\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1879\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1883\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">0.4527354836463928 0.3918493390083313 0.4402284026145935 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.278479278087616 0.3278618454933167 0.4869411289691925 0.278479278087616 0.3278618454933167 0.4869411289691925 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.2781703174114227 0.328160971403122 0.4818757474422455 0.2781703174114227 0.328160971403122 0.4818757474422455 0.278479278087616 0.3278618454933167 0.4869411289691925 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.4527354836463928 0.3918493390083313 0.4402284026145935 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.278479278087616 0.3278618454933167 0.4869411289691925 0.278479278087616 0.3278618454933167 0.4869411289691925 0.2781703174114227 0.328160971403122 0.4818757474422455 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2781703174114227 0.328160971403122 0.4818757474422455 0.278479278087616 0.3278618454933167 0.4869411289691925 0.450115442276001 0.4019450545310974 0.4316630661487579 0.2781703174114227 0.328160971403122 0.4818757474422455 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.4520324766635895 0.3894363343715668 0.4269518554210663 0.2781703174114227 0.328160971403122 0.4818757474422455 0.450115442276001 0.4019450545310974 0.4316630661487579 0.450115442276001 0.4019450545310974 0.4316630661487579 0.450115442276001 0.4019450545310974 0.4316630661487579 0.2769213914871216 0.3349538445472717 0.4808885753154755 0.2769213914871216 0.3349538445472717 0.4808885753154755</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1883\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1880\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1884\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"90\">0.3753432908168096 -0.9152399140173331 0.1464694979453154 0.3743393837305015 -0.9162770354900349 0.1425005965666867 0.3140457485376386 -0.9472657429590871 -0.06374072514180626 -0.3140457485376386 0.9472657429590871 0.06374072514180626 -0.3743393837305015 0.9162770354900349 -0.1425005965666867 -0.3753432908168096 0.9152399140173331 -0.1464694979453154 0.3103356675491998 -0.9476724175128053 -0.0748916719817901 -0.3103356675491998 0.9476724175128053 0.0748916719817901 -0.0320246630172527 0.6447511012904932 0.7637214402799806 -0.03197120955853455 0.6446490719368806 0.7638098034264045 -0.0306315124552247 0.6420879074995785 0.7660188179721946 0.0306315124552247 -0.6420879074995785 -0.7660188179721946 0.03197120955853455 -0.6446490719368806 -0.7638098034264045 0.0320246630172527 -0.6447511012904932 -0.7637214402799806 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 -0.9835581372566181 -0.1736068969677589 0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 0.9835581372566181 0.1736068969677589 -0.04973968196035651 -0.3734428630561606 0.2653397858601099 -0.8888955090853641 -0.214729926251855 -0.1557520238905489 -0.9641744478183761 -0.3765001999056426 0.2754405094322084 -0.8845225408290831 0.3765001999056426 -0.2754405094322084 0.8845225408290831 0.214729926251855 0.1557520238905489 0.9641744478183761 0.3734428630561606 -0.2653397858601099 0.8888955090853641 -0.0305931151776909 0.6420143877261446 0.7660819716298956 0.0305931151776909 -0.6420143877261446 -0.7660819716298956 -0.2048984381399542 -0.1775537005661291 -0.9625441877976724 0.2048984381399542 0.1775537005661291 0.9625441877976724</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"30\" source=\"#ID1884\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1882\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1885\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"42\">5.675606409170287 3.645582267663513 5.659946265937674 3.540001426781414 3.820565024918846 4.017062055030105 5.507814679000523 3.214093020966341 3.664835962078402 3.64737777577287 3.666841234253838 3.687337664122705 -2.944011794455307 0.5884805452487562 -2.931970355226452 0.5147237154584141 -4.716171622766688 0.01923609011483403 -2.744649910765467 3.95546743810215 -2.74813267594593 3.915570386156207 -2.817198242306778 3.907795007853151 -5.901691802031239 0.7076990140758661 -4.290956863184142 1.55444838564906 -5.812055584839532 0.6282526547049071 -2.925505739982495 0.4946091484498839 -4.687369548932571 -0.1078723146314636 -4.70873493322951 -0.003039342193471217 -0.7178649052072967 -2.219952427122569 -0.658349870247449 -2.191309704240082 -0.08993094495510154 -3.648226767105204</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"21\" source=\"#ID1885\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1881\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1879\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1880\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"7\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 1 3 6 4 2 5 8 6 9 7 10 8 14 9 15 10 16 11 20 12 21 13 22 14 9 15 26 16 10 17 28 18 21 19 20 20</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1881\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1882\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"7\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 3 7 4 11 12 13 17 18 19 23 24 25 11 27 12 25 24 29</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1881\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1886\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1887\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1891\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">-0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.0824550986289978 0.368058055639267 0.4921310245990753 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4860901534557343 0.341913640499115 0.4825262129306793 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.07620321959257126 0.3689954280853272 0.4861110150814056 -0.4903751313686371 0.3429506123065949 0.4761049449443817 -0.08214428275823593 0.3748658895492554 0.4851138293743134 -0.4857785105705261 0.3487239181995392 0.4755116403102875 -0.4857785105705261 0.3487239181995392 0.4755116403102875</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"28\" source=\"#ID1891\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1888\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1892\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"84\">0.06643847930277297 -0.9938912340263244 -0.08812572492504646 0.06633104125145112 -0.97728997819365 -0.2012572768591321 0.06643161212964106 -0.9940951924153975 -0.08579970469908901 -0.06643161212964106 0.9940951924153975 0.08579970469908901 -0.06633104125145112 0.97728997819365 0.2012572768591321 -0.06643847930277297 0.9938912340263244 0.08812572492504646 0.06632714945836096 -0.9771252259347203 -0.2020569278365634 -0.06632714945836096 0.9771252259347203 0.2020569278365634 0.1483616996249534 0.7064948699628552 0.6919926334872094 0.1667432826893118 0.7039832970799793 0.6903652620970971 0.5000246418360753 0.6103909512396994 0.6143274730967185 -0.5000246418360753 -0.6103909512396994 -0.6143274730967185 -0.1667432826893118 -0.7039832970799793 -0.6903652620970971 -0.1483616996249534 -0.7064948699628552 -0.6919926334872094 -0.2829318543527633 0.6944133696561045 0.6616189521434231 -0.2819434410746255 0.6946029234445578 0.6618418804950871 0.2819434410746255 -0.6946029234445578 -0.6618418804950871 0.2829318543527633 -0.6944133696561045 -0.6616189521434231 -0.6417297630809646 0.5643090885482262 0.5193632291161162 0.6417297630809646 -0.5643090885482262 -0.5193632291161162 0.03243382116071587 -0.1353354646732991 -0.9902688318060792 0.03183450279756919 -0.1273658168435666 -0.9913448003249942 0.0324374153669634 -0.1353833180656773 -0.9902621729995744 -0.0324374153669634 0.1353833180656773 0.9902621729995744 -0.03183450279756919 0.1273658168435666 0.9913448003249942 -0.03243382116071587 0.1353354646732991 0.9902688318060792 0.0318232705334067 -0.1272166352544075 -0.9913643160650402 -0.0318232705334067 0.1272166352544075 0.9913643160650402</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"28\" source=\"#ID1892\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1890\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1893\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"48\">-0.514299458387062 3.558040160755181 -4.622104547076903 3.529735340488684 -0.5773041346071366 3.60557285021357 -4.660232738055397 3.07144481308713 -4.618183617302604 3.123022643673471 -0.5103840265403392 3.151817006159239 2.970250233962921 1.931303125244438 3.010987332162051 1.861343232198031 2.927827369906226 1.871284954379196 4.543290583036389 0.6429759251745825 4.534230771580503 0.5663574870330614 0.4995400012906756 0.7478869024359247 0.6423111745411636 0.8299071247853209 0.6628200850528088 0.7707955892611047 0.5891112246848734 0.7653338723494632 0.0746122667299122 -2.457676676137602 -3.969698889945972 -2.966744434585249 0.1187093862438805 -2.40132840165215 4.534342051249654 0.5681553693967262 0.4905992050906123 0.6730013937242312 0.4996467130933653 0.7496219451777118 -3.866319101991072 -3.067124713239394 -3.924921539642796 -3.031533338845224 0.1128090865029688 -2.491105099802389</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"24\" source=\"#ID1893\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1889\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1887\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1888\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"8\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 1 4 0 5 8 6 9 7 10 8 14 9 15 10 8 11 14 12 18 13 15 14 20 15 21 16 22 17 15 18 9 19 8 20 26 21 21 22 20 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1889\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1890\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"8\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 5 4 7 11 12 13 13 16 17 16 19 17 23 24 25 13 12 16 25 24 27</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1889\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1894\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1895\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1899\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"108\">-0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.03014400787651539 0.3953791558742523 0.4379055202007294 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.029442073777318 0.3977971374988556 0.4511821568012238 -0.03206175565719605 0.4078904986381531 0.4426167607307434 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2036990523338318 0.3694864809513092 0.4869411289691925 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2052550911903381 0.37657830119133 0.4808885753154755 -0.2040082067251205 0.3697856068611145 0.4818757474422455 -0.2036990523338318 0.3694864809513092 0.4869411289691925</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID1899\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1896\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1900\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"108\">0.9795936295032293 0.18214670401301 -0.08496410567932189 0.9795936295032293 0.18214670401301 -0.08496410567932189 0.9795936295032293 0.18214670401301 -0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 -0.9795936295032293 -0.18214670401301 0.08496410567932189 0.1912466287913627 -0.9673905650834347 0.1660729404914957 0.1901391011590887 -0.9683589746445472 0.1616416358361136 0.1323020193661333 -0.9897186121510229 -0.05434376167967066 -0.1323020193661333 0.9897186121510229 0.05434376167967066 -0.1901391011590887 0.9683589746445472 -0.1616416358361136 -0.1912466287913627 0.9673905650834347 -0.1660729404914957 -0.2737980892231487 0.2910412612865604 -0.9166949277521288 -0.1877574692592857 -0.1524536115158973 -0.9703118205366297 -0.27525050122197 0.3015517299802667 -0.9128547067978357 0.27525050122197 -0.3015517299802667 0.9128547067978357 0.1877574692592857 0.1524536115158973 0.9703118205366297 0.2737980892231487 -0.2910412612865604 0.9166949277521288 0.04849407853223773 0.6545005993707064 0.7545046651749046 0.04873458354262738 0.6535903151767286 0.7552778563377263 0.04872646369884298 0.6536210681566902 0.7552517666295874 -0.04872646369884298 -0.6536210681566902 -0.7552517666295874 -0.04873458354262738 -0.6535903151767286 -0.7552778563377263 -0.04849407853223773 -0.6545005993707064 -0.7545046651749046 0.1288838023786896 -0.9894411854224582 -0.06629559619018259 -0.1288838023786896 0.9894411854224582 0.06629559619018259 0.04848283384157669 0.654543128816357 0.754468493273234 -0.04848283384157669 -0.654543128816357 -0.754468493273234 -0.1823608443937586 -0.1741080918962435 -0.9676935954982056 0.1823608443937586 0.1741080918962435 0.9676935954982056 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 -0.9836064562508099 -0.1733163521013666 0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283 0.9836064562508099 0.1733163521013666 -0.04979740270334283</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"36\" source=\"#ID1900\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1898\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1901\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"48\">3.942270540375164 3.460901661789526 3.964759705040326 3.565723571073764 4.068781433212398 3.498097921829887 0.4826561900046933 4.017302936508278 0.4710806939569447 3.911389289020603 -1.281733807990918 4.302568195073747 -2.513045940023659 3.740222789853266 -0.9861907509344283 4.496649532908113 -2.44286319332222 3.649448456932891 2.326884740212548 0.3388181497531386 0.6230291713841536 -0.1205493134629069 0.5893996542737505 -0.01774090714535293 0.2117883897707467 3.230774675204582 -1.545347190268103 3.577436442692035 -1.542667919918237 3.61737196778006 2.304360962456652 0.4165031666429619 2.325117488597726 0.3439589166597305 0.5874647138896388 -0.01209407751420741 -4.141120206364048 0.1043282782762547 -4.083379394414218 0.1351289780370625 -3.171607438855324 -1.08978836902274 -3.992289723655305 3.772382147634574 -3.99577208095218 3.732484980792526 -4.064832195748746 3.724709580097823</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"24\" source=\"#ID1901\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1897\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1895\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1896\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"8\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 6 3 7 4 8 5 12 6 13 7 14 8 18 9 19 10 20 11 7 12 24 13 8 14 26 15 18 16 20 17 28 18 13 19 12 20 30 21 31 22 32 23</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1897\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1898\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"8\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 9 10 11 15 16 17 21 22 23 9 25 10 21 23 27 17 16 29 33 34 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1897\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1902\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1903\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1906\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 0.2490299940109253 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 0.2490299940109253 1.738512992858887 -0.3226235210895538 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.738512992858887 -0.3226235210895538 -0.2490299493074417 1.747376799583435 0.1069428324699402 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.747376799583435 0.1069428324699402 -0.2490299493074417 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"44\" source=\"#ID1906\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1904\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1907\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"132\">0 0 -1 0 0 -1 0 0 -1 -0 -0 1 -0 -0 1 -0 -0 1 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 0 -0.9997871805147028 0.02062992192086592 0 -0.9997871805147028 0.02062992192086592 0 -0.9997871805147028 0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 -0 0.9997871805147028 -0.02062992192086592 0 0 -1 -0 -0 1 1 0 0 -1 -0 -0 0 -0.9997871805147028 0.02062992192086593 0 -0.9997871805147028 0.02062992192086593 0 -0.9997871805147028 0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -0 0.9997871805147028 -0.02062992192086593 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0 0.2374728579818554 0.971394174226884 0 0.2374728579818554 0.971394174226884 0 0.2374728579818554 0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 0 0.2374728579818554 0.971394174226884 -0 -0.2374728579818554 -0.971394174226884 -1 0 0 1 -0 -0</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"44\" source=\"#ID1907\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1905\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1903\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1904\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"20\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 0 5 4 19 7 20 8 9 21 10 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 35 34 39 38 41 42 28 30 31 33 43</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1905\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1908\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1909\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1913\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">-0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 0.08604952692985535 -0.2490299493074417 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 -0.3226235210895538 -0.2490299493074417 1.832841873168945 -0.3226235210895538 0.2490299940109253 1.832841873168945 0.08604952692985535 0.2490299940109253 1.832841873168945 0.08604952692985535</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1913\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1910\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1914\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"24\">0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 0 1 0 -0 -1 -0</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"8\" source=\"#ID1914\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1912\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1915\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"8\">4.980598986148834 -5.075943398475648 -4.980599880218506 -5.075943398475648 4.980598986148834 1.353845890363058 -4.980599880218506 1.353845890363058</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"2\" offset=\"0\" count=\"4\" source=\"#ID1915\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"S\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"T\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1911\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1909\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1910\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material3\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 0 1 1 2 2 2 2 1 1 6 3</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1911\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1912\" offset=\"1\" semantic=\"TEXCOORD\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"2\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">3 4 5 7 4 3</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1911\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1916\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1917\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1920\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"900\">0.2478943765163422 1.814255595207214 0.000725477933883667 0.2448281943798065 1.616339206695557 0.007112216204404831 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.616339206695557 0.007112216204404831 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2851106524467468 1.814255595207214 -0.01469011977314949 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2478943765163422 1.814255595207214 0.000725477933883667 0.2851106524467468 1.814255595207214 -0.01469011977314949 0.2448281943798065 1.814255595207214 -0.01469011977314949 0.2478943765163422 1.616339206695557 -0.00830315425992012 0.2478943765163422 1.616339206695557 -0.00830315425992012 0.2478943765163422 1.616339206695557 0.02252786979079247 0.2478943765163422 1.616339206695557 0.02252786979079247 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2695431709289551 1.453958511352539 0.0193280465900898 0.2695431709289551 1.453958511352539 0.0193280465900898 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2478943765163422 1.814255595207214 -0.03010560385882855 0.2664770185947418 1.453958511352539 0.03474375978112221 0.2664770185947418 1.453958511352539 0.03474375978112221 0.2566267848014832 1.814255595207214 0.01379405707120895 0.2566267848014832 1.814255595207214 0.01379405707120895 0.269695371389389 1.814255595207214 0.0225263275206089 0.269695371389389 1.814255595207214 0.0225263275206089 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2782755792140961 1.453958511352539 0.006259582936763763 0.2782755792140961 1.453958511352539 0.006259582936763763 0.2566267848014832 1.616339206695557 -0.02137184515595436 0.2566267848014832 1.616339206695557 -0.02137184515595436 0.2695431709289551 1.453958511352539 0.05015917494893074 0.2695431709289551 1.453958511352539 0.05015917494893074 0.2566267848014832 1.616339206695557 0.0355965681374073 0.2566267848014832 1.616339206695557 0.0355965681374073 0.2851106524467468 1.814255595207214 0.02559248730540276 0.2851106524467468 1.814255595207214 0.02559248730540276 0.269695371389389 1.814255595207214 0.0225263275206089 0.269695371389389 1.814255595207214 0.0225263275206089 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2566267848014832 1.814255595207214 -0.04317429289221764 0.2782755792140961 1.312108874320984 0.05416208878159523 0.2782755792140961 1.312108874320984 0.05416208878159523 0.2695431709289551 1.312108874320984 0.06723077595233917 0.2695431709289551 1.312108874320984 0.06723077595233917 0.2664770185947418 1.312108874320984 0.08264619112014771 0.2664770185947418 1.312108874320984 0.08264619112014771 0.3005262613296509 1.814255595207214 0.0225263275206089 0.3005262613296509 1.814255595207214 0.0225263275206089 0.269695371389389 1.616339206695557 0.04432866349816322 0.2851106524467468 1.814255595207214 0.02559248730540276 0.2851106524467468 1.814255595207214 0.02559248730540276 0.269695371389389 1.616339206695557 0.04432866349816322 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2696953117847443 1.616339206695557 -0.03010406345129013 0.2696953117847443 1.616339206695557 -0.03010406345129013 0.2696953117847443 1.814255595207214 -0.05190644785761833 0.2913441359996796 1.312108874320984 0.0454297699034214 0.2913441359996796 1.312108874320984 0.0454297699034214 0.2913441359996796 1.453958511352539 -0.002472575753927231 0.2913441359996796 1.453958511352539 -0.002472575753927231 0.2695431709289551 1.312108874320984 0.09806185960769653 0.2695431709289551 1.312108874320984 0.09806185960769653 0.2782755792140961 1.453958511352539 0.06322780251502991 0.2782755792140961 1.453958511352539 0.06322780251502991 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3135948479175568 1.814255595207214 0.01379405707120895 0.2851106524467468 1.616339206695557 0.04739503934979439 0.3005262613296509 1.814255595207214 0.0225263275206089 0.3005262613296509 1.814255595207214 0.0225263275206089 0.2851106524467468 1.616339206695557 0.04739503934979439 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2851106524467468 1.616339206695557 -0.03317039087414742 0.2851106524467468 1.616339206695557 -0.03317039087414742 0.2851106524467468 1.814255595207214 -0.05497277900576592 0.2696953117847443 1.160151720046997 0.1071765571832657 0.2696953117847443 1.160151720046997 0.1071765571832657 0.2566267848014832 1.160151720046997 0.1159086525440216 0.2566267848014832 1.160151720046997 0.1159086525440216 0.2478943765163422 1.160151720046997 0.1289774775505066 0.2478943765163422 1.160151720046997 0.1289774775505066 0.2448281943798065 1.160151720046997 0.1443928182125092 0.2448281943798065 1.160151720046997 0.1443928182125092 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3005262613296509 1.616339206695557 0.04432866349816322 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3135948479175568 1.814255595207214 0.01379405707120895 0.3005262613296509 1.616339206695557 0.04432866349816322 0.2913441956043243 1.453958511352539 0.07196013629436493 0.2913441956043243 1.453958511352539 0.07196013629436493 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3005262613296509 1.616339206695557 -0.03010406345129013 0.3005262613296509 1.616339206695557 -0.03010406345129013 0.3005262613296509 1.814255595207214 -0.05190644785761833 0.3067594766616821 1.453958511352539 -0.005538847297430039 0.3067594766616821 1.453958511352539 -0.005538847297430039 0.2851106524467468 1.160151720046997 0.1041101217269898 0.2851106524467468 1.160151720046997 0.1041101217269898 0.3067594766616821 1.312108874320984 0.04236360266804695 0.3067594766616821 1.312108874320984 0.04236360266804695 0.2478943765163422 1.160151720046997 0.1598084419965744 0.2478943765163422 1.160151720046997 0.1598084419965744 0.2782755792140961 1.312108874320984 0.1111303716897965 0.2782755792140961 1.312108874320984 0.1111303716897965 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3135948479175568 1.616339206695557 0.0355965681374073 0.3135948479175568 1.616339206695557 0.0355965681374073 0.3223271369934082 1.814255595207214 0.000725477933883667 0.3067594766616821 1.453958511352539 0.07502646744251251 0.3067594766616821 1.453958511352539 0.07502646744251251 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3135948479175568 1.616339206695557 -0.02137184515595436 0.3135948479175568 1.616339206695557 -0.02137184515595436 0.3135948479175568 1.814255595207214 -0.04317429289221764 0.3221750557422638 1.453958511352539 -0.002472575753927231 0.3221750557422638 1.453958511352539 -0.002472575753927231 0.2688740491867065 1.048043012619019 0.1517271846532822 0.2688740491867065 1.048043012619019 0.1517271846532822 0.2534586787223816 1.048043012619019 0.1547933518886566 0.2534586787223816 1.048043012619019 0.1547933518886566 0.2403901517391205 1.048043012619019 0.1635255962610245 0.2403901517391205 1.048043012619019 0.1635255962610245 0.2316577583551407 1.048043012619019 0.1765943020582199 0.2316577583551407 1.048043012619019 0.1765943020582199 0.228591576218605 1.048043012619019 0.1920096725225449 0.228591576218605 1.048043012619019 0.1920096725225449 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3223271369934082 1.616339206695557 0.02252786979079247 0.3223271369934082 1.616339206695557 0.02252786979079247 0.3253934681415558 1.814255595207214 -0.01469011977314949 0.3221750557422638 1.453958511352539 0.07196013629436493 0.3221750557422638 1.453958511352539 0.07196013629436493 0.2913441956043243 1.312108874320984 0.1198627650737763 0.2913441956043243 1.312108874320984 0.1198627650737763 0.3223271369934082 1.616339206695557 -0.00830315425992012 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.814255595207214 -0.03010560385882855 0.3223271369934082 1.616339206695557 -0.00830315425992012 0.3352437019348145 1.453958511352539 0.006259582936763763 0.3352437019348145 1.453958511352539 0.006259582936763763 0.3221750557422638 1.312108874320984 0.0454297699034214 0.3221750557422638 1.312108874320984 0.0454297699034214 0.2842896282672882 1.048043012619019 0.1547933518886566 0.2842896282672882 1.048043012619019 0.1547933518886566 0.3005262613296509 1.160151720046997 0.1071765571832657 0.3005262613296509 1.160151720046997 0.1071765571832657 0.2316577583551407 1.048043012619019 0.207425132393837 0.2316577583551407 1.048043012619019 0.207425132393837 0.2566267848014832 1.160151720046997 0.1728769987821579 0.2566267848014832 1.160151720046997 0.1728769987821579 0.3253934681415558 1.616339206695557 0.007112216204404831 0.3253934681415558 1.616339206695557 0.007112216204404831 0.3352437019348145 1.453958511352539 0.06322780251502991 0.3352437019348145 1.453958511352539 0.06322780251502991 0.3067594766616821 1.312108874320984 0.1229289472103119 0.3067594766616821 1.312108874320984 0.1229289472103119 0.3439759612083435 1.453958511352539 0.0193280465900898 0.3439759612083435 1.453958511352539 0.0193280465900898 0.3352437019348145 1.312108874320984 0.05416208878159523 0.3352437019348145 1.312108874320984 0.05416208878159523 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.3439759612083435 1.453958511352539 0.05015917494893074 0.3439759612083435 1.453958511352539 0.05015917494893074 0.3221750557422638 1.312108874320984 0.1198627650737763 0.3221750557422638 1.312108874320984 0.1198627650737763 0.269695371389389 1.160151720046997 0.1816091537475586 0.269695371389389 1.160151720046997 0.1816091537475586 0.3470422923564911 1.453958511352539 0.03474375978112221 0.3470422923564911 1.453958511352539 0.03474375978112221 0.3439759612083435 1.312108874320984 0.06723077595233917 0.3439759612083435 1.312108874320984 0.06723077595233917 0.3135948479175568 1.160151720046997 0.1159086525440216 0.3135948479175568 1.160151720046997 0.1159086525440216 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2973582744598389 1.048043012619019 0.1635255962610245 0.2973582744598389 1.048043012619019 0.1635255962610245 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2403901517391205 1.048043012619019 0.220493957400322 0.2403901517391205 1.048043012619019 0.220493957400322 0.3352437019348145 1.312108874320984 0.1111303716897965 0.3352437019348145 1.312108874320984 0.1111303716897965 0.2851106524467468 1.160151720046997 0.1846755594015122 0.2851106524467468 1.160151720046997 0.1846755594015122 0.3470422923564911 1.312108874320984 0.08264619112014771 0.3470422923564911 1.312108874320984 0.08264619112014771 0.3223271369934082 1.160151720046997 0.1289774775505066 0.3223271369934082 1.160151720046997 0.1289774775505066 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9449533820152283 0.2128610759973526 0.2634618580341339 0.9449533820152283 0.2128610759973526 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2919460237026215 0.9415437579154968 0.184581384062767 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2634618580341339 0.9401311874389648 0.1728678643703461 0.2788774371147156 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2349779903888702 0.9415437579154968 0.184581384062767 0.2349779903888702 0.9415437579154968 0.184581384062767 0.248046487569809 0.9404983520507813 0.1759119778871536 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2262456119060516 0.9431080222129822 0.1975557804107666 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2231793850660324 0.9449533820152283 0.2128610759973526 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.2262456119060516 0.9467988014221191 0.2281655818223953 0.3439759612083435 1.312108874320984 0.09806185960769653 0.3439759612083435 1.312108874320984 0.09806185960769653 0.3005262613296509 1.160151720046997 0.1816091537475586 0.3005262613296509 1.160151720046997 0.1816091537475586 0.2534587383270264 1.048043012619019 0.229226216673851 0.2534587383270264 1.048043012619019 0.229226216673851 0.3253934681415558 1.160151720046997 0.1443928182125092 0.3253934681415558 1.160151720046997 0.1443928182125092 0.3060905337333679 1.048043012619019 0.1765943020582199 0.3060905337333679 1.048043012619019 0.1765943020582199 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.3006782829761505 0.9431080222129822 0.1975557804107666 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.3135948479175568 1.160151720046997 0.1728769987821579 0.3135948479175568 1.160151720046997 0.1728769987821579 0.2688740491867065 1.048043012619019 0.2322925180196762 0.2688740491867065 1.048043012619019 0.2322925180196762 0.3223271369934082 1.160151720046997 0.1598084419965744 0.3223271369934082 1.160151720046997 0.1598084419965744 0.3091568052768707 1.048043012619019 0.1920096725225449 0.3091568052768707 1.048043012619019 0.1920096725225449 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2349779903888702 0.9483634233474731 0.2411401122808456 0.2842896282672882 1.048043012619019 0.229226216673851 0.2842896282672882 1.048043012619019 0.229226216673851 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.2480465471744537 0.9494088888168335 0.2498091608285904 0.3060905337333679 1.048043012619019 0.2074250131845474 0.3060905337333679 1.048043012619019 0.2074250131845474 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3037446439266205 0.9449533820152283 0.2128610759973526 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2973582744598389 1.048043012619019 0.220493957400322 0.2973582744598389 1.048043012619019 0.220493957400322 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.2634618580341339 0.9497759342193604 0.2528538703918457 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.3006782829761505 0.9467988014221191 0.2281655818223953 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2788774371147156 0.9494088888168335 0.2498091608285904 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456 0.2919460237026215 0.9483634233474731 0.2411401122808456</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"300\" source=\"#ID1920\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1918\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1921\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"900\">-0.9278834584867581 0.04082824076895225 0.3706283073678604 -0.9977752429982424 -0.06659565527506635 -0.003095667663508074 -0.9999060571191866 -0.0015009125374733 -0.01362439715793088 0.9999060571191866 0.0015009125374733 0.01362439715793088 0.9977752429982424 0.06659565527506635 0.003095667663508074 0.9278834584867581 -0.04082824076895225 -0.3706283073678604 0 1 0 0 1 0 0 1 0 -0 -1 -0 -0 -1 -0 -0 -1 -0 -0.9181195771732412 -0.1128555365036274 -0.3798948142469269 0.9181195771732412 0.1128555365036274 0.3798948142469269 -0.9262328309242459 -0.009838731266650419 0.376823489561253 0.9262328309242459 0.009838731266650419 -0.376823489561253 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 -0.9074324623206211 -0.16194011862512 -0.3877392478282493 0.9074324623206211 0.16194011862512 0.3877392478282493 -0.9181627939907852 -0.04338327862263842 -0.3938209934310071 0.9181627939907852 0.04338327862263842 0.3938209934310071 -0.9973766201166378 -0.07177404651176834 -0.009400207021054655 0.9973766201166378 0.07177404651176834 0.009400207021054655 -0.7118594156381571 0.07690255944710663 0.6980989677100129 0.7118594156381571 -0.07690255944710663 -0.6980989677100129 0 1 0 -0 -1 -0 0 1 0 -0 -1 -0 -0.6812443792921055 -0.2235944870704588 -0.6970735980042656 0.6812443792921055 0.2235944870704588 0.6970735980042656 -0.7023525969223536 -0.1425518319043876 -0.6974093524015353 0.7023525969223536 0.1425518319043876 0.6974093524015353 -0.9257640070876061 0.03240469828584276 0.3767106830315573 0.9257640070876061 -0.03240469828584276 -0.3767106830315573 -0.7122707414796282 0.04923594247854864 0.7001758441993767 0.7122707414796282 -0.04923594247854864 -0.7001758441993767 0 1 0 -0 -1 -0 -0.3855939466651815 0.1010297577800753 0.9171206552782838 0.3855939466651815 -0.1010297577800753 -0.9171206552782838 0 1 0 -0 -1 -0 -0.698206287333844 -0.07838876277499718 -0.7115920054343605 0.698206287333844 0.07838876277499718 0.7115920054343605 -0.6865612058071743 -0.2129815016822076 -0.6951780999296444 0.6865612058071743 0.2129815016822076 0.6951780999296444 -0.918631782408507 -0.08137942273024804 -0.3866432954352902 0.918631782408507 0.08137942273024804 0.3866432954352902 -0.9976578949460037 0.06826378471123371 -0.004333629980390467 0.9976578949460037 -0.06826378471123371 0.004333629980390467 0 1 0 -0 -1 -0 -0.3892810171184926 0.1013539679360428 0.9155258941694722 -2.393178270834055e-006 0.1094975151487385 0.9939870694181712 2.393178270834055e-006 -0.1094975151487385 -0.9939870694181712 0.3892810171184926 -0.1013539679360428 -0.9155258941694722 0 1 0 -0 -1 -0 -0.3760075129696564 -0.1014619271283846 -0.9210449649901834 -0.3837485045026092 -0.151865364150826 -0.9108644226575917 0.3837485045026092 0.151865364150826 0.9108644226575917 0.3760075129696564 0.1014619271283846 0.9210449649901834 -0.3586501388646112 -0.3043385606965022 -0.8824670636151676 0.3586501388646112 0.3043385606965022 0.8824670636151676 -0.3608812211348434 -0.2502658350465012 -0.8984051179956075 0.3608812211348434 0.2502658350465012 0.8984051179956075 -0.9051185998244229 0.2040136890513151 0.373013049277836 0.9051185998244229 -0.2040136890513151 -0.373013049277836 -0.7023014897468005 0.1308985885008609 0.6997415072924479 0.7023014897468005 -0.1308985885008609 -0.6997415072924479 0 1 0 -0 -1 -0 -0.008401330541124052 0.1380870073671109 0.9903844688006441 0.3855926321539393 0.101029953574417 0.9171211863812481 -0.3855926321539393 -0.101029953574417 -0.9171211863812481 0.008401330541124052 -0.1380870073671109 -0.9903844688006441 0 1 0 -0 -1 -0 -1.638231529636708e-006 -0.1094972025388148 -0.99398710385673 -0.007631153113921558 -0.1391706131257301 -0.9902390145537391 0.007631153113921558 0.1391706131257301 0.9902390145537391 1.638231529636708e-006 0.1094972025388148 0.99398710385673 -0.3662193663722516 -0.3115596822211134 -0.8768203579457914 0.3662193663722516 0.3115596822211134 0.8768203579457914 -0.6959225224503867 -0.1881870782373219 -0.6930205381738634 0.6959225224503867 0.1881870782373219 0.6930205381738634 -0.9233610041195496 -0.02695596401956038 -0.3829854201860868 0.9233610041195496 0.02695596401956038 0.3829854201860868 -0.9900751925700994 0.1405038325815632 -0.003128272234421052 0.9900751925700994 -0.1405038325815632 0.003128272234421052 0 1 0 -0 -1 -0 0.372444873648539 0.1536379776875442 0.9152487027606241 0.7118615315130566 0.07690215948648875 0.6980968541815671 -0.7118615315130566 -0.07690215948648875 -0.6980968541815671 -0.372444873648539 -0.1536379776875442 -0.9152487027606241 -0.3716544858453784 0.2062193195996614 0.9051776264219417 0.3716544858453784 -0.2062193195996614 -0.9051776264219417 0 1 0 -0 -1 -0 0.3760050988688112 -0.1014621485315936 -0.9210459261296412 0.3727923870498216 -0.1053407161597084 -0.9219160317928394 -0.3727923870498216 0.1053407161597084 0.9219160317928394 -0.3760050988688112 0.1014621485315936 0.9210459261296412 0.008524709455946767 -0.2412434067665272 -0.9704271987224861 -0.008524709455946767 0.2412434067665272 0.9704271987224861 -0.001769691265078404 -0.3831527280308419 -0.9236833089297164 0.001769691265078404 0.3831527280308419 0.9236833089297164 0.006757712597036472 -0.3479646493279616 -0.937483299125123 -0.006757712597036472 0.3479646493279616 0.937483299125123 -0.8887837245303268 0.2787263987682289 0.3638338709352034 0.8887837245303268 -0.2787263987682289 -0.3638338709352034 -0.6731366259941853 0.3011140907802258 0.6754386627065128 0.6731366259941853 -0.3011140907802258 -0.6754386627065128 0 1 0 -0 -1 -0 0.92788273378111 0.04082861569481912 0.3706300803919435 0.69743660672445 0.1455764279823549 0.7017048405252619 -0.69743660672445 -0.1455764279823549 -0.7017048405252619 -0.92788273378111 -0.04082861569481912 -0.3706300803919435 0.007541491712564928 0.2479115095044231 0.96875332740486 -0.007541491712564928 -0.2479115095044231 -0.96875332740486 0 1 0 -0 -1 -0 0.6982075685403409 -0.07838876150760024 -0.7115907484659211 0.7003338033897056 -0.05443976690440847 -0.7117365211994555 -0.7003338033897056 0.05443976690440847 0.7117365211994555 -0.6982075685403409 0.07838876150760024 0.7115907484659211 0.3798630473314066 -0.1989567823800468 -0.9033937480506915 -0.3798630473314066 0.1989567823800468 0.9033937480506915 -0.005635586040699611 -0.2960074815373276 -0.9551689960650454 0.005635586040699611 0.2960074815373276 0.9551689960650454 -0.3816071479147141 -0.2387551755530475 -0.8929568583123325 0.3816071479147141 0.2387551755530475 0.8929568583123325 -0.7098304672308439 -0.1417542192581981 -0.6899611939184266 0.7098304672308439 0.1417542192581981 0.6899611939184266 -0.9289611800626436 -0.01936517639756433 -0.369670279951894 0.9289611800626436 0.01936517639756433 0.369670279951894 -0.9944649258713336 0.1045181174147558 0.01074589892926797 0.9944649258713336 -0.1045181174147558 -0.01074589892926797 0.9999060487122554 -0.001500897788054666 -0.01362501576053045 0.9179646390316492 0.1148282162395459 0.3796780244401015 -0.9179646390316492 -0.1148282162395459 -0.3796780244401015 -0.9999060487122554 0.001500897788054666 0.01362501576053045 0.3806523626443638 0.2518291433121385 0.8897673074416356 -0.3806523626443638 -0.2518291433121385 -0.8897673074416356 -0.3537134707814479 0.3497158032888347 0.8675169378852421 0.3537134707814479 -0.3497158032888347 -0.8675169378852421 0.921345206780097 0.005934785861217529 -0.3887001263958144 0.9181623827624436 -0.04338333562204136 -0.3938219458972514 -0.9181623827624436 0.04338333562204136 0.3938219458972514 -0.921345206780097 -0.005934785861217529 0.3887001263958144 0.7015290843239972 -0.1283687549116059 -0.7009838847006245 -0.7015290843239972 0.1283687549116059 0.7009838847006245 0.3657233985650752 -0.3438852352404744 -0.8648637700387356 -0.3657233985650752 0.3438852352404744 0.8648637700387356 0.3642088029488595 -0.3089946523204002 -0.8785637442394 -0.3642088029488595 0.3089946523204002 0.8785637442394 0.3505759552465831 -0.4015174329235807 -0.8460970692901636 -0.3505759552465831 0.4015174329235807 0.8460970692901636 -0.9013961822165807 0.20734820052424 0.3801205682737156 0.9013961822165807 -0.20734820052424 -0.3801205682737156 -0.6596514643945155 0.3673948200588811 0.6556531031849642 0.6596514643945155 -0.3673948200588811 -0.6556531031849642 0.9978309586316174 0.06571395092330679 -0.00388003226236238 -0.9978309586316174 -0.06571395092330679 0.00388003226236238 0.6994711189498942 0.2180208117223518 0.6805931820191191 -0.6994711189498942 -0.2180208117223518 -0.6805931820191191 0.008464885077093781 0.348522777411564 0.93726208679641 -0.008464885077093781 -0.348522777411564 -0.93726208679641 0.9211619882759639 -0.03774266290814756 -0.3873449144523199 -0.9211619882759639 0.03774266290814756 0.3873449144523199 0.6801456499297029 -0.2935333652825748 -0.671744042286635 -0.6801456499297029 0.2935333652825748 0.671744042286635 0.3790810955637079 -0.19642576246323 -0.9042756453797469 -0.3790810955637079 0.19642576246323 0.9042756453797469 -0.006044309831385856 -0.1921480039205631 -0.9813473446787359 0.006044309831385856 0.1921480039205631 0.9813473446787359 -0.3905063998979781 -0.158817254297096 -0.9067975691278908 0.3905063998979781 0.158817254297096 0.9067975691278908 -0.7146296876788553 -0.1007834488547026 -0.6922045260795203 0.7146296876788553 0.1007834488547026 0.6922045260795203 -0.9280009073201813 -0.02617730560519464 -0.3716571870476507 0.9280009073201813 0.02617730560519464 0.3716571870476507 -0.9985404266470882 0.05387682925104136 0.003782012864173349 0.9985404266470882 -0.05387682925104136 -0.003782012864173349 0.9183014699405613 0.1508524255126332 0.3660136008701858 -0.9183014699405613 -0.1508524255126332 -0.3660136008701858 0.3751679501491385 0.2980710925467551 0.8777258301821118 -0.3751679501491385 -0.2980710925467551 -0.8777258301821118 -0.3509058671403431 0.4021828481140018 0.8456441503903361 0.3509058671403431 -0.4021828481140018 -0.8456441503903361 0.998110783889415 0.06055026068505935 -0.01041772598165128 -0.998110783889415 -0.06055026068505935 0.01041772598165128 0.9063208563190007 -0.1999380076574004 -0.3723000114090551 -0.9063208563190007 0.1999380076574004 0.3723000114090551 0.6590070579046725 -0.3672064245772851 -0.6564062304556487 -0.6590070579046725 0.3672064245772851 0.6564062304556487 0.7056660067207059 -0.1711741214844488 -0.6875572027787068 -0.7056660067207059 0.1711741214844488 0.6875572027787068 0.683689509659014 -0.2771341735831983 -0.675103921048141 -0.683689509659014 0.2771341735831983 0.675103921048141 -0.9179897149819096 0.1269594088680677 0.3757342035100124 0.9179897149819096 -0.1269594088680677 -0.3757342035100124 -0.6780154320216124 0.2762585796519279 0.6811580368088197 0.6780154320216124 -0.2762585796519279 -0.6811580368088197 0.7001825816432064 0.2013928833579944 0.6849709912808045 -0.7001825816432064 -0.2013928833579944 -0.6849709912808045 0.00182622600025505 0.3838176269837862 0.9234071117958379 -0.00182622600025505 -0.3838176269837862 -0.9234071117958379 0.9973814967216617 -0.07228423368496069 -0.002267059292581186 -0.9973814967216617 0.07228423368496069 0.002267059292581186 0.8880252344353042 -0.2794186648003958 -0.3651525609485538 -0.8880252344353042 0.2794186648003958 0.3651525609485538 2.767822979625016e-006 -0.9928096497302067 0.119703798581848 6.988246788429636e-006 -0.9928091445060229 0.119707988607209 1.022978707970098e-012 -0.9928086747316344 0.1197118848636839 -1.022978707970098e-012 0.9928086747316344 -0.1197118848636839 -6.988246788429636e-006 0.9928091445060229 -0.119707988607209 -2.767822979625016e-006 0.9928096497302067 -0.119703798581848 7.7044375863041e-006 -0.9928091089888651 0.1197082831276827 -4.487500212477783e-011 -0.992809109018331 0.1197082831312356 4.487500212477783e-011 0.992809109018331 -0.1197082831312356 -7.7044375863041e-006 0.9928091089888651 -0.1197082831276827 -7.704541850535809e-006 -0.9928091089888644 0.1197082831276827 7.704541850535809e-006 0.9928091089888644 -0.1197082831276827 -6.988304734759506e-006 -0.9928091445078384 0.1197079885921475 -2.767862602807982e-006 -0.99280964972893 0.1197037985924347 2.767862602807982e-006 0.99280964972893 -0.1197037985924347 6.988304734759506e-006 0.9928091445078384 -0.1197079885921475 7.263087261654657e-007 -0.9928099450407807 0.119701349314009 -7.263087261654657e-007 0.9928099450407807 -0.119701349314009 -1.620367296495998e-018 -0.9928091383418375 0.1197080399344108 1.620367296495998e-018 0.9928091383418375 -0.1197080399344108 1.864050476297287e-006 -0.9928080027483553 0.1197174576882873 -1.864050476297287e-006 0.9928080027483553 -0.1197174576882873 0.9244950035235966 0.07025899496707923 0.3746633983806281 -0.9244950035235966 -0.07025899496707923 -0.3746633983806281 0.366829762646364 0.3116869016756962 0.8765199373434794 -0.366829762646364 -0.3116869016756962 -0.8765199373434794 -0.3650183505487395 0.306446614185513 0.8791200580221754 0.3650183505487395 -0.306446614185513 -0.8791200580221754 0.989853531960413 -0.142085927353355 0.001254796251494292 -0.989853531960413 0.142085927353355 -0.001254796251494292 0.9089907206869328 -0.2017201479115875 -0.3647531379324622 -0.9089907206869328 0.2017201479115875 0.3647531379324622 -7.263066999167067e-007 -0.9928099450412038 0.1197013493105016 7.263066999167067e-007 0.9928099450412038 -0.1197013493105016 0.9235320681947282 -0.1196443897616437 -0.364381309913848 -0.9235320681947282 0.1196443897616437 0.364381309913848 3.72812004797981e-006 -0.9928074639693836 0.1197219256142426 -3.72812004797981e-006 0.9928074639693836 -0.1197219256142426 -0.7014909392805421 0.1815654435095798 0.6891621375485398 0.7014909392805421 -0.1815654435095798 -0.6891621375485398 0.6969906333227904 0.1873181938119533 0.6921820218174717 -0.6969906333227904 -0.1873181938119533 -0.6921820218174717 -0.003396875497569148 0.2964495907894091 0.9550424604998702 0.003396875497569148 -0.2964495907894091 -0.9550424604998702 0.9240998232652282 0.02525655702831663 0.3813156474212005 -0.9240998232652282 -0.02525655702831663 -0.3813156474212005 0.9958207025834769 -0.09034340820677622 0.01338644462634576 -0.9958207025834769 0.09034340820677622 -0.01338644462634576 1.53915816714803e-022 -0.9928091383418375 0.11970803993441 -1.53915816714803e-022 0.9928091383418375 -0.11970803993441 4.737953150718969e-006 -0.9928073430655861 0.1197229281825484 -9.319458481162999e-007 -0.9928076242494585 0.1197205965207222 9.319458481162999e-007 0.9928076242494585 -0.1197205965207222 -4.737953150718969e-006 0.9928073430655861 -0.1197229281825484 0.3650778311907859 0.2458346860527413 0.8979328952134352 -0.3650778311907859 -0.2458346860527413 -0.8979328952134352 -0.3825054217257609 0.2090597695823078 0.8999908972276278 0.3825054217257609 -0.2090597695823078 -0.8999908972276278 0.9182591755738117 0.03778298693575775 0.3941732263519633 -0.9182591755738117 -0.03778298693575775 -0.3941732263519633 0.9986935520278727 -0.04870062046963348 0.01547380702423765 -0.9986935520278727 0.04870062046963348 -0.01547380702423765 -1.864045275509994e-006 -0.99280800274727 0.1197174576972886 1.864045275509994e-006 0.99280800274727 -0.1197174576972886 -4.943669760534657e-011 -0.992807905415018 0.1197182648781908 4.943669760534657e-011 0.992807905415018 -0.1197182648781908 0.6914121802415991 0.1565791227048186 0.7052887177224286 -0.6914121802415991 -0.1565791227048186 -0.7052887177224286 -0.00671355415309078 0.2049424367028966 0.9787510029772194 0.00671355415309078 -0.2049424367028966 -0.9787510029772194 0.9191827796336586 0.0314685300227289 0.3925719669603901 -0.9191827796336586 -0.0314685300227289 -0.3925719669603901 -3.728117051116277e-006 -0.9928074639650725 0.1197219256499936 3.728117051116277e-006 0.9928074639650725 -0.1197219256499936 9.318671640651015e-007 -0.9928076242463607 0.119720596546412 -9.318671640651015e-007 0.9928076242463607 -0.119720596546412 0.3723992922150309 0.1695607732054095 0.9124515939751148 -0.3723992922150309 -0.1695607732054095 -0.9124515939751148 0.6982521995652733 0.108409624641729 0.7075953780850305 -0.6982521995652733 -0.108409624641729 -0.7075953780850305 -4.737926818070232e-006 -0.9928073430628038 0.119722928205621 4.737926818070232e-006 0.9928073430628038 -0.119722928205621</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"300\" source=\"#ID1921\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1919\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1917\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1918\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"448\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 1 12 2 3 13 4 14 1 0 5 4 15 8 7 16 17 10 9 6 18 7 10 19 11 1 20 12 13 21 4 2 12 22 23 13 3 14 24 1 4 25 15 26 14 0 5 15 27 16 7 28 29 10 17 18 30 7 10 31 19 20 32 12 13 33 21 24 20 1 4 21 25 12 34 22 23 35 13 36 24 14 15 25 37 38 14 26 27 15 39 28 7 40 41 10 29 38 26 42 43 27 39 30 44 7 10 45 31 22 34 46 47 35 23 20 48 32 33 49 21 12 32 34 35 33 13 24 50 20 21 51 25 36 52 24 25 53 37 38 36 14 15 37 39 7 54 40 41 55 10 56 42 57 58 43 59 56 38 42 43 39 59 44 60 7 10 61 45 62 46 63 64 47 65 46 34 63 64 35 47 32 48 66 67 49 33 50 48 20 21 49 51 34 32 68 69 33 35 52 50 24 25 51 53 70 52 36 37 53 71 72 36 38 39 37 73 7 74 54 55 75 10 76 57 77 78 58 79 76 56 57 58 59 79 38 56 72 73 59 39 60 80 7 10 81 61 82 62 83 84 65 85 62 63 83 84 64 65 63 34 68 69 35 64 48 86 66 67 87 49 68 32 66 67 33 69 50 88 48 49 89 51 52 90 50 51 91 53 70 92 52 53 93 71 72 70 36 37 71 73 7 94 74 75 95 10 96 77 97 98 78 99 96 76 77 78 79 99 56 76 100 101 79 59 72 56 100 101 59 73 80 102 7 10 103 81 104 82 105 106 85 107 82 83 105 106 84 85 83 63 108 109 64 84 63 68 108 109 69 64 86 110 66 67 111 87 88 86 48 49 87 89 68 66 112 113 67 69 90 88 50 51 89 91 92 90 52 53 91 93 114 92 70 71 93 115 116 70 72 73 71 117 7 118 94 95 119 10 120 121 97 98 122 123 121 96 97 98 99 122 76 96 124 125 99 79 100 76 124 125 79 101 116 72 100 101 73 117 102 126 7 10 127 103 128 104 129 130 107 131 104 105 129 130 106 107 105 83 132 133 84 106 83 108 132 133 109 84 108 68 112 113 69 109 86 134 110 111 135 87 66 110 112 113 111 67 88 136 86 87 137 89 90 138 88 89 139 91 92 140 90 91 141 93 114 142 92 93 143 115 116 114 70 71 115 117 7 126 118 119 127 10 144 145 120 123 146 147 145 121 120 123 122 146 96 121 148 149 122 99 124 96 148 149 99 125 150 100 124 125 101 151 150 116 100 101 117 151 128 152 153 154 155 131 129 152 128 131 155 130 129 105 156 157 106 130 105 132 156 157 133 106 132 108 158 159 109 133 108 112 158 159 113 109 134 160 110 111 161 135 136 134 86 87 135 137 110 162 112 113 163 111 138 136 88 89 137 139 140 138 90 91 139 141 142 140 92 93 141 143 164 142 114 115 143 165 166 114 116 117 115 167 153 168 144 147 169 154 168 145 144 147 146 169 145 170 121 122 171 146 148 121 170 171 122 149 172 124 148 149 125 173 172 150 124 125 151 173 166 116 150 151 117 167 152 168 153 154 169 155 129 174 152 155 175 130 156 174 129 130 175 157 156 132 176 177 133 157 132 158 176 177 159 133 112 162 158 159 163 113 134 178 160 161 179 135 110 160 162 163 161 111 136 180 134 135 181 137 138 182 136 137 183 139 140 184 138 139 185 141 142 186 140 141 187 143 164 188 142 143 189 165 166 164 114 115 165 167 168 190 145 146 191 169 190 170 145 146 171 191 192 148 170 171 149 193 192 172 148 149 173 193 194 150 172 173 151 195 194 166 150 151 167 195 152 196 168 169 197 155 174 196 152 155 197 175 156 198 174 175 199 157 176 198 156 157 199 177 158 200 176 177 201 159 162 200 158 159 201 163 160 178 202 203 179 161 134 180 178 179 181 135 160 204 162 163 205 161 136 182 180 181 183 137 138 184 182 183 185 139 186 184 140 141 185 187 188 186 142 143 187 189 206 188 164 165 189 207 208 164 166 167 165 209 196 190 168 169 191 197 190 210 170 171 211 191 210 192 170 171 193 211 212 172 192 193 173 213 212 194 172 173 195 213 208 166 194 195 167 209 174 214 196 197 215 175 198 214 174 175 215 199 176 216 198 199 217 177 200 216 176 177 217 201 162 204 200 201 205 163 218 219 220 221 222 223 160 202 204 205 203 161 224 225 220 221 226 227 225 228 220 221 229 226 230 231 220 221 232 233 231 234 220 221 235 232 220 234 236 237 235 221 220 236 238 239 237 221 208 206 164 165 207 209 196 240 190 191 241 197 240 210 190 191 211 241 242 192 210 211 193 243 242 212 192 193 213 243 244 194 212 213 195 245 244 208 194 195 209 245 214 240 196 197 241 215 198 246 214 215 247 199 216 246 198 199 247 217 200 248 216 217 249 201 204 248 200 201 249 205 250 218 220 221 223 251 202 252 204 205 253 203 220 238 254 255 239 221 256 206 208 209 207 257 240 258 210 211 259 241 258 242 210 211 243 259 260 212 242 243 213 261 260 244 212 213 245 261 256 208 244 245 209 257 214 262 240 241 263 215 246 262 214 215 263 247 216 264 246 247 265 217 248 264 216 217 265 249 204 252 248 249 253 205 266 250 220 221 251 267 220 268 269 270 271 221 262 258 240 241 259 263 272 242 258 259 243 273 272 260 242 243 261 273 274 244 260 261 245 275 274 256 244 245 257 275 246 276 262 263 277 247 264 276 246 247 277 265 248 278 264 265 279 249 252 278 248 249 279 253 266 220 280 281 221 267 220 269 282 283 270 221 262 284 258 259 285 263 284 272 258 259 273 285 286 260 272 273 261 287 286 274 260 261 275 287 276 284 262 263 285 277 264 288 276 277 289 265 278 288 264 265 289 279 280 220 290 291 221 281 292 220 282 283 221 293 294 272 284 285 273 295 294 286 272 273 287 295 276 296 284 285 297 277 288 296 276 277 297 289 298 220 292 293 221 299 296 294 284 285 295 297</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1919\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t\t<geometry xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1922\">\r\n\t\t\t<mesh xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1923\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1926\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"168\">0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.8810513019561768 0.1702155768871307 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.1216127499938011 0.8837398290634155 0.1702155768871307 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9250890016555786 0.08409255743026733 0.1216127499938011 0.9277774095535278 0.08409255743026733 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.3437203168869019 0.9518036246299744 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.3437203168869019 0.8823847770690918 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.8850732445716858 0.2863470017910004 0.1216127499938011 0.9544921517372131 0.2861669361591339 0.1216127499938011 0.9544921517372131 0.2861669361591339</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1926\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<source xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1924\">\r\n\t\t\t\t\t<float_array xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"ID1927\" magnitude=\"0\" digits=\"0\" name=\"\" count=\"168\">-0.01178446120591827 -0.9735588360470699 -0.2281322406604561 -0.01077676797450188 -0.8903022429431368 -0.4552425479702483 -0.01178204009587801 -0.9733659401803182 -0.2289539910725835 0.01178204009587801 0.9733659401803182 0.2289539910725835 0.01077676797450188 0.8903022429431368 0.4552425479702483 0.01178446120591827 0.9735588360470699 0.2281322406604561 1 0 0 1 0 0 1 0 0 -1 -0 -0 -1 -0 -0 -1 -0 -0 -0.01210293299673509 -0.999860850551699 0.01148035482507463 0.01210293299673509 0.999860850551699 -0.01148035482507463 -0.01077629623372305 -0.8903027469965876 -0.455241573375953 -0.01077629623372305 -0.8903027469965876 -0.455241573375953 0.01077629623372305 0.8903027469965876 0.455241573375953 0.01077629623372305 0.8903027469965876 0.455241573375953 0.0119993417301939 0.991302854576546 -0.1310521510942627 0.0119993417301939 0.991302854576546 -0.1310521510942627 0.0119993417301939 0.991302854576546 -0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 -0.0119993417301939 -0.991302854576546 0.1310521510942627 1 0 0 -1 -0 -0 -0.01210266464271436 -0.9998608479078918 0.01148086797494273 -0.01210266464271436 -0.9998608479078918 0.01148086797494273 0.01210266464271436 0.9998608479078918 -0.01148086797494273 0.01210266464271436 0.9998608479078918 -0.01148086797494273 -1 0 0 -1 0 0 -1 0 0 1 -0 -0 1 -0 -0 1 -0 -0 0.01199880883641628 0.991302784932601 -0.1310527266842495 0.01199880883641628 0.991302784932601 -0.1310527266842495 0.01199880883641628 0.991302784932601 -0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 -0.01199880883641628 -0.991302784932601 0.1310527266842495 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 3.139807579819501e-005 0.002593892470671268 0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 -3.139807579819501e-005 -0.002593892470671268 -0.9999966353623454 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 3.13973527445499e-005 0.002593890243511532 0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -3.13973527445499e-005 -0.002593890243511532 -0.9999966353681452 -1 0 0 1 -0 -0</float_array>\r\n\t\t\t\t\t<technique_common xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<accessor xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" stride=\"3\" offset=\"0\" count=\"56\" source=\"#ID1927\">\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"X\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Y\" semantic=\"\"></param>\r\n\t\t\t\t\t\t\t<param xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" type=\"float\" sid=\"\" name=\"Z\" semantic=\"\"></param>\r\n\t\t\t\t\t\t</accessor>\r\n\t\t\t\t\t</technique_common>\r\n\t\t\t\t</source>\r\n\t\t\t\t<vertices xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1925\">\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"POSITION\" source=\"#ID1923\"></input>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" semantic=\"NORMAL\" source=\"#ID1924\"></input>\r\n\t\t\t\t</vertices>\r\n\t\t\t\t<triangles xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" material=\"Material2\" count=\"24\">\r\n\t\t\t\t\t<p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0 1 2 3 4 5 6 7 8 9 10 11 0 2 12 13 3 5 14 15 2 3 16 17 18 19 20 21 22 23 7 24 8 9 25 10 26 0 27 28 5 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 30 32 54 55 33 35</p>\r\n\t\t\t\t\t<input xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" source=\"#ID1925\" offset=\"0\" semantic=\"VERTEX\" set=\"0\"></input>\r\n\t\t\t\t</triangles>\r\n\t\t\t</mesh>\r\n\t\t</geometry>\r\n\t</library_geometries>\r\n\t<library_images xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID9\" sid=\"\">\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" mips_generate=\"false\">\r\n\t\t\t\t<ref xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">mg midget/texture0_fix.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID152\" sid=\"\">\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" mips_generate=\"false\">\r\n\t\t\t\t<ref xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">mg midget/texture1_fix.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID202\" sid=\"\">\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" mips_generate=\"false\">\r\n\t\t\t\t<ref xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">mg midget/texture2_fix.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID349\" sid=\"\">\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" mips_generate=\"false\">\r\n\t\t\t\t<ref xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">mg midget/texture3_fix.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1225\" sid=\"\">\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" mips_generate=\"false\">\r\n\t\t\t\t<ref xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">mg midget/texture4.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t\t<image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1540\" sid=\"\">\r\n\t\t\t<init_from xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" mips_generate=\"false\">\r\n\t\t\t\t<ref xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">mg midget/texture5.jpg</ref>\r\n\t\t\t</init_from>\r\n\t\t</image>\r\n\t</library_images>\r\n\t<library_effects xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\" name=\"\">\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID8\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" texture=\"ID11\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"ID11\">\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float3>\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float2>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID9\" sid=\"\" name=\"\"></instance_image>\r\n\t\t\t\t\t\t<mip_min_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_min_level>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<mip_bias xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_bias>\r\n\t\t\t\t\t\t<max_anisotropy xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</max_anisotropy>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_p>\r\n\t\t\t\t\t\t<mip_max_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_max_level>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float4>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID21\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.5019607843137255 0.5019607843137255 0.5019607843137255 0.5019607843137255</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" opaque=\"RGB_ZERO\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.4980392156862745 0.4980392156862745 0.4980392156862745 0.4980392156862745</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID39\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0 0.392156862745098 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID49\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0.9215686274509803 0.803921568627451 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID146\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.1372549019607843 0.1372549019607843 0.1372549019607843 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID151\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" texture=\"ID154\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"ID154\">\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float3>\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float2>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID152\" sid=\"\" name=\"\"></instance_image>\r\n\t\t\t\t\t\t<mip_min_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_min_level>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<mip_bias xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_bias>\r\n\t\t\t\t\t\t<max_anisotropy xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</max_anisotropy>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_p>\r\n\t\t\t\t\t\t<mip_max_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_max_level>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float4>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID190\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">1 0.5490196078431373 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID201\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" texture=\"ID204\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"ID204\">\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float3>\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float2>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID202\" sid=\"\" name=\"\"></instance_image>\r\n\t\t\t\t\t\t<mip_min_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_min_level>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<mip_bias xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_bias>\r\n\t\t\t\t\t\t<max_anisotropy xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</max_anisotropy>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_p>\r\n\t\t\t\t\t\t<mip_max_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_max_level>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float4>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID348\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" texture=\"ID351\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"ID351\">\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float3>\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float2>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID349\" sid=\"\" name=\"\"></instance_image>\r\n\t\t\t\t\t\t<mip_min_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_min_level>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<mip_bias xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_bias>\r\n\t\t\t\t\t\t<max_anisotropy xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</max_anisotropy>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_p>\r\n\t\t\t\t\t\t<mip_max_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_max_level>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float4>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID385\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.9607843137254902 0.9607843137254902 0.9607843137254902 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID627\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.4313725490196079 0.4549019607843137 0.5294117647058824 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID693\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<constant xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.6549019607843137 0.6549019607843137 0.6549019607843137 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t</constant>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID755\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<constant xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" opaque=\"A_ONE\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.08627450980392157 0.08627450980392157 0.08627450980392157 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t</constant>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1224\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" texture=\"ID1227\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"ID1227\">\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float3>\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float2>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID1225\" sid=\"\" name=\"\"></instance_image>\r\n\t\t\t\t\t\t<mip_min_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_min_level>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<mip_bias xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_bias>\r\n\t\t\t\t\t\t<max_anisotropy xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</max_anisotropy>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_p>\r\n\t\t\t\t\t\t<mip_max_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_max_level>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float4>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1305\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.7215686274509804 0.5254901960784314 0.04313725490196078 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1539\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<texture xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" texture=\"ID1542\" texcoord=\"UVSET0\"></texture>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t\t<transparency xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<float xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\"></float>\r\n\t\t\t\t\t\t</transparency>\r\n\t\t\t\t\t\t<transparent xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" opaque=\"RGB_ZERO\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.1399999856948853 0.1399999856948853 0.1399999856948853 1</color>\r\n\t\t\t\t\t\t</transparent>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t\t<newparam xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"ID1542\">\r\n\t\t\t\t\t<float3 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float3>\r\n\t\t\t\t\t<float2 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float2>\r\n\t\t\t\t\t<sampler2D xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<instance_image xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID1540\" sid=\"\" name=\"\"></instance_image>\r\n\t\t\t\t\t\t<mip_min_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_min_level>\r\n\t\t\t\t\t\t<magfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></magfilter>\r\n\t\t\t\t\t\t<border_color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></border_color>\r\n\t\t\t\t\t\t<mip_bias xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_bias>\r\n\t\t\t\t\t\t<max_anisotropy xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</max_anisotropy>\r\n\t\t\t\t\t\t<wrap_s xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_s>\r\n\t\t\t\t\t\t<minfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></minfilter>\r\n\t\t\t\t\t\t<wrap_t xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_t>\r\n\t\t\t\t\t\t<mipfilter xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></mipfilter>\r\n\t\t\t\t\t\t<wrap_p xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></wrap_p>\r\n\t\t\t\t\t\t<mip_max_level xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">0</mip_max_level>\r\n\t\t\t\t\t</sampler2D>\r\n\t\t\t\t\t<semantic xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></semantic>\r\n\t\t\t\t\t<float4 xmlns=\"http://www.collada.org/2008/03/COLLADASchema\"></float4>\r\n\t\t\t\t</newparam>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t\t<effect xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1552\">\r\n\t\t\t<profile_COMMON xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" id=\"\">\r\n\t\t\t\t<technique xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"COMMON\" id=\"\">\r\n\t\t\t\t\t<lambert xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t<diffuse xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t\t\t\t\t\t<color xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">0.5450980392156862 0 0 1</color>\r\n\t\t\t\t\t\t</diffuse>\r\n\t\t\t\t\t</lambert>\r\n\t\t\t\t</technique>\r\n\t\t\t</profile_COMMON>\r\n\t\t</effect>\r\n\t</library_effects>\r\n\t<library_visual_scenes xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"\">\r\n\t\t<visual_scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"\" id=\"ID1\">\r\n\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"SketchUp\" layer=\"\" type=\"\" id=\"\" sid=\"\">\r\n\t\t\t\t<node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" name=\"instance_0\" layer=\"\" type=\"\" id=\"ID2\" sid=\"\">\r\n\t\t\t\t\t<instance_node xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID3\" sid=\"\" name=\"\" proxy=\"\"></instance_node>\r\n\t\t\t\t\t<matrix xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" sid=\"\">-1 0 0 -0.1047857155373135 0 1 0 -1.159676022821707 0 -0 1 -1.110223024625157e-016 0 0 0 1</matrix>\r\n\t\t\t\t</node>\r\n\t\t\t</node>\r\n\t\t</visual_scene>\r\n\t</library_visual_scenes>\r\n\t<scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\">\r\n\t\t<instance_visual_scene xmlns=\"http://www.collada.org/2008/03/COLLADASchema\" url=\"#ID1\" sid=\"\" name=\"\"></instance_visual_scene>\r\n\t</scene>\r\n</COLLADA>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-collada/main.go",
    "content": "package main\r\n\r\nimport (\r\n\t\"encoding/xml\"\r\n\t\"log\"\r\n\r\n\t\"github.com/metaleap/go-xsd/xsd-makepkg/tests\"\r\n\r\n\t\"github.com/metaleap/go-util/dev/go\"\r\n\r\n\tcollada14 \"github.com/metaleap/go-xsd-pkg/khronos.org/files/collada_schema_1_4_go\"\r\n\tcollada15 \"github.com/metaleap/go-xsd-pkg/khronos.org/files/collada_schema_1_5_go\"\r\n)\r\n\r\ntype Col14Doc struct {\r\n\tXMLName xml.Name `xml:\"COLLADA\"`\r\n\tcollada14.TxsdCollada\r\n}\r\n\r\ntype Col15Doc struct {\r\n\tXMLName xml.Name `xml:\"COLLADA\"`\r\n\tcollada15.TxsdCollada\r\n}\r\n\r\nfunc main() {\r\n\tvar (\r\n\t\tcol14DirBasePath  = udevgo.GopathSrcGithub(\"metaleap\", \"go-xsd\", \"xsd-makepkg\", \"tests\", \"xsd-test-collada\", \"1.4.1\")\r\n\t\tcol14MakeEmptyDoc = func() interface{} { return &Col14Doc{} }\r\n\t\tcol15DirBasePath  = udevgo.GopathSrcGithub(\"metaleap\", \"go-xsd\", \"xsd-makepkg\", \"tests\", \"xsd-test-collada\", \"1.5\")\r\n\t\tcol15MakeEmptyDoc = func() interface{} { return &Col15Doc{} }\r\n\t)\r\n\tif false {\r\n\t\ttests.OnDocLoaded = func(doc interface{}) {\r\n\t\t\tif c14, ok := doc.(*Col14Doc); ok {\r\n\t\t\t\tlog.Print(\"ISC14\")\r\n\t\t\t\tfor _, camLib := range c14.CamerasLibraries {\r\n\t\t\t\t\tlog.Print(\"CAMLIB\")\r\n\t\t\t\t\tfor _, cam := range camLib.Cameras {\r\n\t\t\t\t\t\tlog.Printf(\"CAM aspect: %#v\\n\", cam.Optics.TechniqueCommon.Perspective.AspectRatio)\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\ttests.TestViaRemarshal(col14DirBasePath, col14MakeEmptyDoc)\r\n\ttests.TestViaRemarshal(col15DirBasePath, col15MakeEmptyDoc)\r\n}\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-kml/infiles/doc.kml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\r\n<kml xmlns=\"http://www.opengis.net/kml/2.2\" xmlns:gx=\"http://www.google.com/kml/ext/2.2\">\r\n\r\n  <Folder>\r\n    <name>alex-ensemle</name>\r\n    <description>Created with &lt;a href=\"http://sketchup.google.com\"&gt;Google SketchUp&lt;/a&gt;</description>\r\n    <visibility>1</visibility>\r\n    <LookAt>\r\n      <heading>233.7145392362</heading>\r\n      <tilt>87.53120326691</tilt>\r\n      <latitude>52.52096539762</latitude>\r\n      <longitude>13.40971798781</longitude>\r\n      <range>105.1522961342</range>\r\n      <altitude>22.59064284836</altitude>\r\n    </LookAt>\r\n    <Folder>\r\n      <name>Tour</name>\r\n      <Placemark>\r\n        <name>Scene 2</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>231.0285112108</heading>\r\n          <tilt>41.90231233603</tilt>\r\n          <latitude>52.52204043736</latitude>\r\n          <longitude>13.40778681277</longitude>\r\n          <range>637.0868613123</range>\r\n          <altitude>670.8642042001</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 42</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>234.0405148609</heading>\r\n          <tilt>1.520408311538</tilt>\r\n          <latitude>52.52081432939</latitude>\r\n          <longitude>13.4092224728</longitude>\r\n          <range>210.1809412605</range>\r\n          <altitude>394.9373575241</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 46</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>234.2466129812</heading>\r\n          <tilt>2.605111944025</tilt>\r\n          <latitude>52.5207992629</latitude>\r\n          <longitude>13.40919646551</longitude>\r\n          <range>183.4342782737</range>\r\n          <altitude>368.7598758814</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 47</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>238.7947537832</heading>\r\n          <tilt>84.34240939119</tilt>\r\n          <latitude>52.52088796403</latitude>\r\n          <longitude>13.40941294272</longitude>\r\n          <range>6.056799243995</range>\r\n          <altitude>365.081714339</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Szene 36</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>234.554131994</heading>\r\n          <tilt>89.27332195026</tilt>\r\n          <latitude>52.52098778808</latitude>\r\n          <longitude>13.40955562159</longitude>\r\n          <range>148.3909818628</range>\r\n          <altitude>238.855030569</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 44</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>227.3162816419</heading>\r\n          <tilt>87.70627341263</tilt>\r\n          <latitude>52.52093605102</latitude>\r\n          <longitude>13.40959779432</longitude>\r\n          <range>25.94872406782</range>\r\n          <altitude>249.0964871505</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 38</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>220.36078808</heading>\r\n          <tilt>35.82549617825</tilt>\r\n          <latitude>52.52149635307</latitude>\r\n          <longitude>13.41019728414</longitude>\r\n          <range>95.27493521225</range>\r\n          <altitude>202.8693606468</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 41</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>233.1672207281</heading>\r\n          <tilt>69.61052835863</tilt>\r\n          <latitude>52.52125725743</latitude>\r\n          <longitude>13.41031016758</longitude>\r\n          <range>58.97396952365</range>\r\n          <altitude>45.50162852764</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>model</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>233.9789798983</heading>\r\n          <tilt>85.47986263808</tilt>\r\n          <latitude>52.52101021107</latitude>\r\n          <longitude>13.40979579843</longitude>\r\n          <range>54.62381406979</range>\r\n          <altitude>8.4</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 3</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>141.339300639</heading>\r\n          <tilt>84.83980862361</tilt>\r\n          <latitude>52.52098853519</latitude>\r\n          <longitude>13.41013373999</longitude>\r\n          <range>73.99573064962</range>\r\n          <altitude>8.4</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 4</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>152.9996594078</heading>\r\n          <tilt>86.38250239675</tilt>\r\n          <latitude>52.52058797034</latitude>\r\n          <longitude>13.40925371706</longitude>\r\n          <range>118.7903338535</range>\r\n          <altitude>8.4</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 5</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>194.8245037126</heading>\r\n          <tilt>78.36868187296</tilt>\r\n          <latitude>52.52122930214</latitude>\r\n          <longitude>13.40858634211</longitude>\r\n          <range>38.81220511443</range>\r\n          <altitude>13.22762788357</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 6</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>186.9348837138</heading>\r\n          <tilt>87.46036935047</tilt>\r\n          <latitude>52.5208678822</latitude>\r\n          <longitude>13.40819598555</longitude>\r\n          <range>48.60892493113</range>\r\n          <altitude>8.4</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 8</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>96.76516656909</heading>\r\n          <tilt>86.53687435254</tilt>\r\n          <latitude>52.52096553595</latitude>\r\n          <longitude>13.4098083872</longitude>\r\n          <range>147.7719734624</range>\r\n          <altitude>8.917789468056</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 7</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>101.3360194181</heading>\r\n          <tilt>85.78976589827</tilt>\r\n          <latitude>52.52042734034</latitude>\r\n          <longitude>13.40965027491</longitude>\r\n          <range>114.4541609754</range>\r\n          <altitude>8.4</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 9</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>52.79505077617</heading>\r\n          <tilt>83.62325995844</tilt>\r\n          <latitude>52.52082607727</latitude>\r\n          <longitude>13.40936275489</longitude>\r\n          <range>97.01328195934</range>\r\n          <altitude>8.4</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 13</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>53.37277467435</heading>\r\n          <tilt>68.91775444721</tilt>\r\n          <latitude>52.5205614986</latitude>\r\n          <longitude>13.40880078105</longitude>\r\n          <range>83.28377400939</range>\r\n          <altitude>34.06426604508</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 17</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>44.52131064883</heading>\r\n          <tilt>89.07749201863</tilt>\r\n          <latitude>52.52060175339</latitude>\r\n          <longitude>13.41002483182</longitude>\r\n          <range>124.2607630593</range>\r\n          <altitude>7.888213242617</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 39</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>324.770805802</heading>\r\n          <tilt>88.38601353692</tilt>\r\n          <latitude>52.5203440181</latitude>\r\n          <longitude>13.4092839739</longitude>\r\n          <range>72.63987643487</range>\r\n          <altitude>8.124052723933</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 40</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>318.8456450499</heading>\r\n          <tilt>89.43307969644</tilt>\r\n          <latitude>52.52048522322</latitude>\r\n          <longitude>13.40959793783</longitude>\r\n          <range>73.52704856209</range>\r\n          <altitude>7.967360654994</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 18</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>285.571620949</heading>\r\n          <tilt>87.79183918239</tilt>\r\n          <latitude>52.52034733142</latitude>\r\n          <longitude>13.40988962647</longitude>\r\n          <range>51.69084933439</range>\r\n          <altitude>9.391816918987</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 23</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>117.4969912319</heading>\r\n          <tilt>29.11020814674</tilt>\r\n          <latitude>52.52059448276</latitude>\r\n          <longitude>13.40949533884</longitude>\r\n          <range>255.2893669053</range>\r\n          <altitude>48.88635313853</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 45</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>118.0962236336</heading>\r\n          <tilt>21.84203944706</tilt>\r\n          <latitude>52.520601307</latitude>\r\n          <longitude>13.40957627757</longitude>\r\n          <range>231.9339444059</range>\r\n          <altitude>38.0173635574</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 43</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>113.2817834754</heading>\r\n          <tilt>14.52650316965</tilt>\r\n          <latitude>52.52073906053</latitude>\r\n          <longitude>13.4095095867</longitude>\r\n          <range>79.67600099932</range>\r\n          <altitude>99.53973409449</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 48</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>112.1626417613</heading>\r\n          <tilt>35.81543413712</tilt>\r\n          <latitude>52.5205624483</latitude>\r\n          <longitude>13.40987714907</longitude>\r\n          <range>368.9730384293</range>\r\n          <altitude>113.8871010178</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 25</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>358.1223590418</heading>\r\n          <tilt>65.83834128503</tilt>\r\n          <latitude>52.52073941289</latitude>\r\n          <longitude>13.40985555524</longitude>\r\n          <range>38.27862031646</range>\r\n          <altitude>25.12201278608</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 24</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>41.80349781356</heading>\r\n          <tilt>82.24998162917</tilt>\r\n          <latitude>52.52081939525</latitude>\r\n          <longitude>13.40985456748</longitude>\r\n          <range>41.99669832581</range>\r\n          <altitude>8.4</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 26</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>46.45393100387</heading>\r\n          <tilt>88.45816145551</tilt>\r\n          <latitude>52.52078933308</latitude>\r\n          <longitude>13.40996255537</longitude>\r\n          <range>2.236196288613</range>\r\n          <altitude>7.276953428368</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 27</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>337.7863673095</heading>\r\n          <tilt>85.00063272226</tilt>\r\n          <latitude>52.52086853442</latitude>\r\n          <longitude>13.41007245514</longitude>\r\n          <range>14.7807937038</range>\r\n          <altitude>8.477762090279</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 36</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>322.2839022828</heading>\r\n          <tilt>87.06605646191</tilt>\r\n          <latitude>52.52088958073</latitude>\r\n          <longitude>13.41010476858</longitude>\r\n          <range>0.2985695275778</range>\r\n          <altitude>7.15</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 28</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>264.3063088688</heading>\r\n          <tilt>87.06351290917</tilt>\r\n          <latitude>52.52098378121</latitude>\r\n          <longitude>13.40973793114</longitude>\r\n          <range>27.29073199542</range>\r\n          <altitude>7.15</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 30</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>263.9783559441</heading>\r\n          <tilt>88.96951942219</tilt>\r\n          <latitude>52.52110923132</latitude>\r\n          <longitude>13.40979534166</longitude>\r\n          <range>23.43156795038</range>\r\n          <altitude>7.15</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 37</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>261.3927384415</heading>\r\n          <tilt>87.01363337846</tilt>\r\n          <latitude>52.52110628525</latitude>\r\n          <longitude>13.40995129256</longitude>\r\n          <range>37.7627991075</range>\r\n          <altitude>7.15</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 31</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>234.9740719742</heading>\r\n          <tilt>88.55362889221</tilt>\r\n          <latitude>52.52095860361</latitude>\r\n          <longitude>13.40969181882</longitude>\r\n          <range>164.9351330775</range>\r\n          <altitude>7.918353335037</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 29</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>234.0057854045</heading>\r\n          <tilt>64.02535108975</tilt>\r\n          <latitude>52.52133004464</latitude>\r\n          <longitude>13.41043662907</longitude>\r\n          <range>104.9612034507</range>\r\n          <altitude>85.57890273515</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 33</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>231.0285112108</heading>\r\n          <tilt>41.90231233603</tilt>\r\n          <latitude>52.52204043736</latitude>\r\n          <longitude>13.40778681277</longitude>\r\n          <range>637.0868613123</range>\r\n          <altitude>670.8642042001</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 34</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>231.0285112108</heading>\r\n          <tilt>41.90231233603</tilt>\r\n          <latitude>52.52204043736</latitude>\r\n          <longitude>13.40778681277</longitude>\r\n          <range>637.0868613123</range>\r\n          <altitude>670.8642042001</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n      <Placemark>\r\n        <name>Scene 32</name>\r\n        <visibility>1</visibility>\r\n        <LookAt>\r\n          <heading>231.0285112108</heading>\r\n          <tilt>41.90231233603</tilt>\r\n          <latitude>52.52204043736</latitude>\r\n          <longitude>13.40778681277</longitude>\r\n          <range>637.0868613123</range>\r\n          <altitude>670.8642042001</altitude>\r\n        </LookAt>\r\n      </Placemark>\r\n    </Folder>\r\n    <Placemark>\r\n      <name>Model</name>\r\n      <description></description>\r\n      <Style id=\"default\"/>\r\n      <Model>\r\n        <altitudeMode>relativeToGround</altitudeMode>\r\n        <Location>\r\n          <latitude>52.52048719573</latitude>\r\n          <longitude>13.40949134166</longitude>\r\n          <altitude>0</altitude>\r\n        </Location>\r\n        <Orientation>\r\n          <heading>-0</heading>\r\n          <tilt>0</tilt>\r\n          <roll>0</roll>\r\n        </Orientation>\r\n        <Scale>\r\n          <x>1</x>\r\n          <y>1</y>\r\n          <z>1</z>\r\n        </Scale>\r\n        <Link>\r\n          <href>models/untitled.dae</href>\r\n        </Link>\r\n      </Model>\r\n    </Placemark>\r\n  </Folder>\r\n\r\n</kml>\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-kml/main.go",
    "content": "package main\r\n\r\nimport (\r\n\t\"encoding/xml\"\r\n\r\n\t\"github.com/metaleap/go-xsd/xsd-makepkg/tests\"\r\n\r\n\t\"github.com/metaleap/go-util/dev/go\"\r\n\r\n\tkml \"github.com/metaleap/go-xsd-pkg/schemas.opengis.net/kml/2.2.0/ogckml22.xsd_go\"\r\n)\r\n\r\ntype KmlDoc struct {\r\n\tXMLName xml.Name `xml:\"http://www.opengis.net/kml/2.2 kml\"`\r\n\tkml.TKmlType\r\n}\r\n\r\nfunc main() {\r\n\tvar (\r\n\t\tdirBasePath  = udevgo.GopathSrcGithub(\"metaleap\", \"go-xsd\", \"xsd-makepkg\", \"tests\", \"xsd-test-kml\")\r\n\t\tmakeEmptyDoc = func() interface{} { return &KmlDoc{} }\r\n\t)\r\n\ttests.TestViaRemarshal(dirBasePath, makeEmptyDoc)\r\n}\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-kml/outfiles/doc.kml",
    "content": "<kml xmlns=\"http://www.opengis.net/kml/2.2\" hint=\"\">\r\n\t<Folder xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t<Model xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<Orientation xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">0</tilt>\r\n\t\t\t\t\t<roll xmlns=\"http://www.opengis.net/kml/2.2\">0</roll>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">-0</heading>\r\n\t\t\t\t</Orientation>\r\n\t\t\t\t<Location xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">0</altitude>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40949134166</longitude>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52048719573</latitude>\r\n\t\t\t\t</Location>\r\n\t\t\t\t<scale xmlns=\"http://www.opengis.net/kml/2.2\">0</scale>\r\n\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\">relativeToGround</altitudeMode>\r\n\t\t\t\t<Link xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<viewBoundScale xmlns=\"http://www.opengis.net/kml/2.2\">0</viewBoundScale>\r\n\t\t\t\t\t<httpQuery xmlns=\"http://www.opengis.net/kml/2.2\"></httpQuery>\r\n\t\t\t\t\t<href xmlns=\"http://www.opengis.net/kml/2.2\">models/untitled.dae</href>\r\n\t\t\t\t\t<viewRefreshTime xmlns=\"http://www.opengis.net/kml/2.2\">0</viewRefreshTime>\r\n\t\t\t\t\t<viewRefreshMode xmlns=\"http://www.opengis.net/kml/2.2\"></viewRefreshMode>\r\n\t\t\t\t\t<viewFormat xmlns=\"http://www.opengis.net/kml/2.2\"></viewFormat>\r\n\t\t\t\t\t<refreshMode xmlns=\"http://www.opengis.net/kml/2.2\"></refreshMode>\r\n\t\t\t\t\t<refreshInterval xmlns=\"http://www.opengis.net/kml/2.2\">0</refreshInterval>\r\n\t\t\t\t</Link>\r\n\t\t\t</Model>\r\n\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t<Style xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"default\"></Style>\r\n\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Model</name>\r\n\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">false</visibility>\r\n\t\t</Placemark>\r\n\t\t<Folder xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">41.90231233603</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40778681277</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">231.0285112108</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">637.0868613123</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52204043736</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">670.8642042001</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 2</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">1.520408311538</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.4092224728</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">234.0405148609</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">210.1809412605</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52081432939</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">394.9373575241</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 42</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">2.605111944025</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40919646551</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">234.2466129812</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">183.4342782737</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.5207992629</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">368.7598758814</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 46</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">84.34240939119</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40941294272</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">238.7947537832</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">6.056799243995</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52088796403</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">365.081714339</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 47</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">89.27332195026</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40955562159</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">234.554131994</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">148.3909818628</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52098778808</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">238.855030569</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Szene 36</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">87.70627341263</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40959779432</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">227.3162816419</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">25.94872406782</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52093605102</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">249.0964871505</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 44</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">35.82549617825</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.41019728414</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">220.36078808</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">95.27493521225</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52149635307</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">202.8693606468</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 38</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">69.61052835863</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.41031016758</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">233.1672207281</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">58.97396952365</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52125725743</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">45.50162852764</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 41</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">85.47986263808</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40979579843</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">233.9789798983</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">54.62381406979</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52101021107</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">8.4</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">model</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">84.83980862361</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.41013373999</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">141.339300639</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">73.99573064962</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52098853519</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">8.4</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 3</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">86.38250239675</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40925371706</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">152.9996594078</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">118.7903338535</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52058797034</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">8.4</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 4</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">78.36868187296</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40858634211</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">194.8245037126</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">38.81220511443</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52122930214</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">13.22762788357</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 5</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">87.46036935047</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40819598555</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">186.9348837138</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">48.60892493113</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.5208678822</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">8.4</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 6</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">86.53687435254</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.4098083872</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">96.76516656909</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">147.7719734624</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52096553595</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">8.917789468056</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 8</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">85.78976589827</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40965027491</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">101.3360194181</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">114.4541609754</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52042734034</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">8.4</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 7</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">83.62325995844</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40936275489</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">52.79505077617</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">97.01328195934</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52082607727</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">8.4</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 9</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">68.91775444721</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40880078105</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">53.37277467435</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">83.28377400939</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.5205614986</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">34.06426604508</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 13</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">89.07749201863</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.41002483182</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">44.52131064883</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">124.2607630593</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52060175339</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">7.888213242617</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 17</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">88.38601353692</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.4092839739</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">324.770805802</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">72.63987643487</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.5203440181</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">8.124052723933</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 39</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">89.43307969644</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40959793783</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">318.8456450499</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">73.52704856209</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52048522322</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">7.967360654994</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 40</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">87.79183918239</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40988962647</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">285.571620949</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">51.69084933439</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52034733142</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">9.391816918987</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 18</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">29.11020814674</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40949533884</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">117.4969912319</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">255.2893669053</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52059448276</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">48.88635313853</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 23</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">21.84203944706</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40957627757</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">118.0962236336</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">231.9339444059</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.520601307</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">38.0173635574</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 45</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">14.52650316965</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.4095095867</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">113.2817834754</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">79.67600099932</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52073906053</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">99.53973409449</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 43</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">35.81543413712</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40987714907</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">112.1626417613</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">368.9730384293</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.5205624483</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">113.8871010178</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 48</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">65.83834128503</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40985555524</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">358.1223590418</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">38.27862031646</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52073941289</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">25.12201278608</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 25</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">82.24998162917</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40985456748</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">41.80349781356</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">41.99669832581</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52081939525</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">8.4</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 24</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">88.45816145551</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40996255537</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">46.45393100387</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">2.236196288613</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52078933308</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">7.276953428368</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 26</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">85.00063272226</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.41007245514</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">337.7863673095</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">14.7807937038</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52086853442</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">8.477762090279</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 27</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">87.06605646191</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.41010476858</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">322.2839022828</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">0.2985695275778</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52088958073</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">7.15</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 36</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">87.06351290917</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40973793114</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">264.3063088688</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">27.29073199542</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52098378121</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">7.15</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 28</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">88.96951942219</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40979534166</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">263.9783559441</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">23.43156795038</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52110923132</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">7.15</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 30</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">87.01363337846</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40995129256</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">261.3927384415</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">37.7627991075</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52110628525</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">7.15</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 37</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">88.55362889221</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40969181882</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">234.9740719742</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">164.9351330775</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52095860361</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">7.918353335037</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 31</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">64.02535108975</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.41043662907</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">234.0057854045</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">104.9612034507</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52133004464</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">85.57890273515</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 29</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">41.90231233603</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40778681277</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">231.0285112108</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">637.0868613123</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52204043736</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">670.8642042001</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 33</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">41.90231233603</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40778681277</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">231.0285112108</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">637.0868613123</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52204043736</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">670.8642042001</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 34</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<Placemark xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">41.90231233603</tilt>\r\n\t\t\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40778681277</longitude>\r\n\t\t\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">231.0285112108</heading>\r\n\t\t\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">637.0868613123</range>\r\n\t\t\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52204043736</latitude>\r\n\t\t\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">670.8642042001</altitude>\r\n\t\t\t\t</LookAt>\r\n\t\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Scene 32</name>\r\n\t\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t\t\t</Placemark>\r\n\t\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\"></description>\r\n\t\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">Tour</name>\r\n\t\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">false</visibility>\r\n\t\t</Folder>\r\n\t\t<snippet xmlns=\"http://www.opengis.net/kml/2.2\"></snippet>\r\n\t\t<description xmlns=\"http://www.opengis.net/kml/2.2\">Created with &lt;a href=&#34;http://sketchup.google.com&#34;&gt;Google SketchUp&lt;/a&gt;</description>\r\n\t\t<LookAt xmlns=\"http://www.opengis.net/kml/2.2\" targetId=\"\" id=\"\">\r\n\t\t\t<tilt xmlns=\"http://www.opengis.net/kml/2.2\">87.53120326691</tilt>\r\n\t\t\t<longitude xmlns=\"http://www.opengis.net/kml/2.2\">13.40971798781</longitude>\r\n\t\t\t<heading xmlns=\"http://www.opengis.net/kml/2.2\">233.7145392362</heading>\r\n\t\t\t<altitudeModeGroup xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeModeGroup>\r\n\t\t\t<altitudeMode xmlns=\"http://www.opengis.net/kml/2.2\"></altitudeMode>\r\n\t\t\t<range xmlns=\"http://www.opengis.net/kml/2.2\">105.1522961342</range>\r\n\t\t\t<latitude xmlns=\"http://www.opengis.net/kml/2.2\">52.52096539762</latitude>\r\n\t\t\t<altitude xmlns=\"http://www.opengis.net/kml/2.2\">22.59064284836</altitude>\r\n\t\t</LookAt>\r\n\t\t<open xmlns=\"http://www.opengis.net/kml/2.2\">false</open>\r\n\t\t<phoneNumber xmlns=\"http://www.opengis.net/kml/2.2\"></phoneNumber>\r\n\t\t<styleUrl xmlns=\"http://www.opengis.net/kml/2.2\"></styleUrl>\r\n\t\t<name xmlns=\"http://www.opengis.net/kml/2.2\">alex-ensemle</name>\r\n\t\t<address xmlns=\"http://www.opengis.net/kml/2.2\"></address>\r\n\t\t<visibility xmlns=\"http://www.opengis.net/kml/2.2\">true</visibility>\r\n\t</Folder>\r\n</kml>"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-rss/infiles/go-ngine-blog.rss",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<!--Generated by Site Server v6.0.0 (http://www.squarespace.com) on Mon, 12 Nov 2012 09:03:57 GMT--><rss xmlns:content=\"http://purl.org/rss/1.0/modules/content/\" xmlns:wfw=\"http://wellformedweb.org/CommentAPI/\" xmlns:itunes=\"http://www.itunes.com/dtds/podcast-1.0.dtd\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" version=\"2.0\"><channel><title>DevBlog - go:ngine</title><link>http://go-ngine.com/blog/</link><lastBuildDate>Sun, 28 Oct 2012 14:53:48 +0000</lastBuildDate><language>en-US</language><generator>Site Server v6.0.0 (http://www.squarespace.com)</generator><description></description><item><title>Now even works under Mac OS X...</title><category>Engine dev progress</category><dc:creator>go:ngine</dc:creator><pubDate>Sun, 28 Oct 2012 14:48:54 +0000</pubDate><link>http://go-ngine.com/blog/2012/10/28/now-even-works-under-mac-os-x</link><guid isPermaLink=\"false\">507f8e7184aebdcd9b93536a:507f8e7184aebdcd9b93538c:508d45dbe4b09d6a6297afa2</guid><description><![CDATA[<p>under OpenGL 3.2 core profile only, that is. Of course. That means some rather recent version of OS X required -- not the latest but perhaps the one before -- not sure right now which version introduced OpenGL 3.2 for Mac users. Surreal feel to see my OpenGL Go code running as a native binary under OS X&nbsp; :)<br></p><img src=\"http://static.squarespace.com/static/507f8e7184aebdcd9b93536a/t/508d46cce4b01df297a0fc23/1351435988930/12-10-28-mac-os-x.png?format=500w\" /><br/>]]></description></item><item><title>Yay, finally some decent timing stats!</title><category>Engine dev progress</category><dc:creator>go:ngine</dc:creator><pubDate>Sun, 28 Oct 2012 08:05:05 +0000</pubDate><link>http://go-ngine.com/blog/2012/10/28/yay-finally-some-decent-timing-stats</link><guid isPermaLink=\"false\">507f8e7184aebdcd9b93536a:507f8e7184aebdcd9b93538c:508ce732e4b0b3e60effe78f</guid><description><![CDATA[<p>Now we're talking milliseconds and nanoseconds!</p><img src=\"http://static.squarespace.com/static/507f8e7184aebdcd9b93536a/t/508ce760e4b01df297a08642/1351411554167/golang-3d-engine-timing-fps-tracking-benchmark.png?format=500w\" /><br/>]]></description></item><item><title>Hashing uints in Go</title><category>Coding</category><category>Go</category><category>Development</category><dc:creator>go:ngine</dc:creator><pubDate>Sat, 27 Oct 2012 05:20:37 +0000</pubDate><link>http://go-ngine.com/blog/2012/10/27/hashing-uints-in-go</link><guid isPermaLink=\"false\">507f8e7184aebdcd9b93536a:507f8e7184aebdcd9b93538c:508b6f24e4b01df2979e331e</guid><description><![CDATA[<p>So I needed to hash three unsigned integers into one integer value uniquely identifying that particular combination of uints, to be used as a \"hash key\" in a <strong>map[int]sometype</strong>.</p><p>Simple arithmetics (add or mult) are out to uniquely hash different combinations: the set 1,2,4 should produce a different hash key than 1,4,2 and 2,1,4 and 2,4,1 and 4,1,2 and 4,2,1.<br></p><p>Found Robert Jenkins' 96 bit Mix Function with a neat source snippet right there (Java). Implemented in Go and seems to work even though I'm not sure if Golangs <strong>&gt;&gt;</strong> right-shift operator (spec'd as <strong>integer &gt;&gt; unsigned integer</strong>) really works like Java's <strong>&gt;&gt;&gt; \"unsigned right shift\"</strong>...</p><p><strong>Update:</strong> actually by now it dawned on me I can just use a <strong>[3]uint</strong> as a hash key in Golang here, which is fine in this use-case. Simplicity FTW!</p><p>But if you're curious about this topic, here's an <a href=\"http://programmers.stackexchange.com/questions/49550/which-hashing-algorithm-is-best-for-uniqueness-and-speed/145633#145633\">incredible testing &amp; comparison of hashing algos</a>.</p><p></p>]]></description></item><item><title>Painless XML parsing in Go; plus, how to analyse your Go source tree for package references</title><category>Coding</category><category>OpenGL</category><category>Go</category><category>Parsing</category><category>Development</category><category>XML</category><dc:creator>go:ngine</dc:creator><pubDate>Fri, 19 Oct 2012 15:28:54 +0000</pubDate><link>http://go-ngine.com/blog/2012/10/19/painless-xml-parsing-in-go-plus-how-to-analyse-your-source-tree-for-package-references</link><guid isPermaLink=\"false\">507f8e7184aebdcd9b93536a:507f8e7184aebdcd9b93538c:508171bce4b09ec41a87ca83</guid><description><![CDATA[<p>Getting seriously tricky stuff done in Go is, time and again, surprisingly simple.</p><p>Here's an interesting \"convoluted custom\" use-case I just had while working on <strong>go:ngine</strong>. So the engine is supposed to support OpenGL versions 3.2 or higher, but during development, 99% of the time I just run under OpenGL 4.2. To stay in the flow, I don't want to consult the GL specs every time I use a GL function or enumeration. At the same time, when I push to GitHub, I'd like to make sure any and all GL function or enumeration references in all go:ngine sources are either GL 3.2 or lower, or else wrapped in some conditional logic (ie. \"only go ahead here if client GL version supports it\")...</p><p>So for talking to OpenGL, go:ngine uses the <a href=\"http://github.com/chsc/gogl\">fantastic GoGL ​binding</a>. Specifically it uses the <strong>gl42</strong> sub-package -- don't worry, that package even works under OpenGL 3.2! --- at least, <strong>if</strong> we <em>(A)</em> ignore the version-related error (but not any other kind of error) returned by <strong>gl42.Init()</strong> and <em>(B)</em> ensure we don't use API functions or enum values newer than the detected run-time GL version. So part <em>(A)</em> is easy, but ensuring <em>(B)</em> at all times (when mostly I happily develop using just my 4.2-capable GPU) could over time become an issue. What to do?<br></p><p>Ideally, I'd have a simple code checker tool that I would run just occasionally -- every other week, or right before major commits. It would:</p><ol><li>run over the entire​ go:ngine code-base</li><li>for each <em>.go</em> source file, collect all its references to the <strong>gl42</strong> package<br></li><li>record the name of every <strong>gl42</strong> function or enum value referenced​ (ignoring GL types here since from what I gather none have been added ever since 3.2)<br></li><li>​then for each such tracked reference, check a <a href=\"http://bitbucket.org/alfonse/gl-xml-specs/downloads\">GL Specification XML file</a> for the minimum version that would support it<br></li><li>if the version for the func/enum reference is 3.2 or lower, ignore it​</li><li>otherwise, keep it and later show a summary like this:​</li></ol><blockquote>GL v4.2 used 4x:<br>&nbsp;&nbsp;&nbsp; function TexStorage2D:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\buffers.go<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\textures.go<br>&nbsp;&nbsp;&nbsp; function TexStorage3D:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\textures.go<br>&nbsp;&nbsp;&nbsp; enum ATOMIC_COUNTER_BUFFER:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\buffers.go<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\counters.go<br>&nbsp;&nbsp;&nbsp; function TexStorage1D:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\textures.go<br>GL v4.0 used 2x:<br>&nbsp;&nbsp;&nbsp; enum TESS_CONTROL_SHADER:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; c:\\gd\\src\\github.com\\go3d\\go-ngine\\client\\glcore\\shaders.go<br>&nbsp;&nbsp;&nbsp; enum TESS_EVALUATION_SHADER:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; c:\\gd\\src\\github.com\\go3d\\go-ngine\\client\\glcore\\shaders.go​</blockquote><p>The above is actually real output of said tool, because I just wrote it today in just a few hours and it's only a 100 lines or so in total! That's why I find Go amazingly fun to work with... (OK,&nbsp; maybe JavaScript could have done all this half the space, but I like statically-typed native-compiled code so anyway and Go's strict compiler saved me from a few bugs just right there today.)<br></p><ul><li>Parsing all <em>.go</em> source files was surprisingly simple just working off the <a href=\"http://golang.org/pkg/go/ast/\">go/ast</a> and <a href=\"http://go-ngine.com#\">go/parser</a> package examples.</li><li> Parsing the XML GL-specification file using the <a href=\"http://golang.org/pkg/encoding/xml/\">encoding/xml</a> package <strong>would have been a major pain point</strong>, but before even taking the trouble to write out all XML tags as Go structs (I didn't <em>really</em> want to \"unmarshal\" anything, thanks very much...), I luckily came across the awesome <a href=\"http://github.com/jteeuwen/go-pkg-xmlx\">go-pkg-xmlx</a> package -- it made loading and searching the 1.4MB spec file painless and also crucially, <strong>Just-Worked</strong> right off the bat! Kudos to <a href=\"http://github.com/jteeuwen/\">jteeuwen</a>, once again great work and a superb contribution to the Go eco-system. (go:ngine also uses his <a href=\"http://github.com/go-gl/glfw\">Go GLFW binding</a>, which also works a <em>charm</em> across platforms. Yay!)<br></li></ul><p>If you wanna see (or use) the code to parse the .go source tree, load the XML spec and checks any and all <strong>gogl/gl42​</strong> references across a given code-base against specific OpenGL versions, <a href=\"http://github.com/metaleap/go-ngine/tree/master/_tools/gl_imp_parser_version_checker\">it's right here on GitHub</a>.<br></p>]]></description></item><item><title>First post! Actually, post zero.</title><dc:creator>go:ngine</dc:creator><pubDate>Thu, 18 Oct 2012 07:30:53 +0000</pubDate><link>http://go-ngine.com/blog/2012/10/18/first-post-actually-post-zero</link><guid isPermaLink=\"false\">507f8e7184aebdcd9b93536a:507f8e7184aebdcd9b93538c:507fb02b84aebdcd9b9396e0</guid><description><![CDATA[<p>​I'm too eager to get back to coding this thing, so I'll catch up with y'all here later (yeah, yeah)... just testing the blogging engine here.<br></p>]]></description></item></channel></rss>\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-rss/main.go",
    "content": "package main\r\n\r\nimport (\r\n\t\"encoding/xml\"\r\n\r\n\t\"github.com/metaleap/go-xsd/xsd-makepkg/tests\"\r\n\r\n\t\"github.com/metaleap/go-util/dev/go\"\r\n\r\n\trss \"github.com/metaleap/go-xsd-pkg/thearchitect.co.uk/schemas/rss-2_0.xsd_go\"\r\n)\r\n\r\ntype RssDoc struct {\r\n\tXMLName xml.Name `xml:\"rss\"`\r\n\trss.TxsdRss\r\n}\r\n\r\nfunc main() {\r\n\tvar (\r\n\t\tdirBasePath  = udevgo.GopathSrcGithub(\"metaleap\", \"go-xsd\", \"xsd-makepkg\", \"tests\", \"xsd-test-rss\")\r\n\t\tmakeEmptyDoc = func() interface{} { return &RssDoc{} }\r\n\t)\r\n\ttests.TestViaRemarshal(dirBasePath, makeEmptyDoc)\r\n}\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-rss/outfiles/go-ngine-blog.rss",
    "content": "<rss version=\"2.0\">\r\n\t<channel>\r\n\t\t<generator>Site Server v6.0.0 (http://www.squarespace.com)</generator>\r\n\t\t<item>\r\n\t\t\t<title>Now even works under Mac OS X...</title>\r\n\t\t\t<category domain=\"\">Engine dev progress</category>\r\n\t\t\t<link>http://go-ngine.com/blog/2012/10/28/now-even-works-under-mac-os-x</link>\r\n\t\t\t<pubDate>Sun, 28 Oct 2012 14:48:54 +0000</pubDate>\r\n\t\t\t<description>&lt;p&gt;under OpenGL 3.2 core profile only, that is. Of course. That means some rather recent version of OS X required -- not the latest but perhaps the one before -- not sure right now which version introduced OpenGL 3.2 for Mac users. Surreal feel to see my OpenGL Go code running as a native binary under OS X&amp;nbsp; :)&lt;br&gt;&lt;/p&gt;&lt;img src=&#34;http://static.squarespace.com/static/507f8e7184aebdcd9b93536a/t/508d46cce4b01df297a0fc23/1351435988930/12-10-28-mac-os-x.png?format=500w&#34; /&gt;&lt;br/&gt;</description>\r\n\t\t\t<guid isPermaLink=\"false\">507f8e7184aebdcd9b93536a:507f8e7184aebdcd9b93538c:508d45dbe4b09d6a6297afa2</guid>\r\n\t\t</item>\r\n\t\t<item>\r\n\t\t\t<title>Yay, finally some decent timing stats!</title>\r\n\t\t\t<category domain=\"\">Engine dev progress</category>\r\n\t\t\t<link>http://go-ngine.com/blog/2012/10/28/yay-finally-some-decent-timing-stats</link>\r\n\t\t\t<pubDate>Sun, 28 Oct 2012 08:05:05 +0000</pubDate>\r\n\t\t\t<description>&lt;p&gt;Now we&#39;re talking milliseconds and nanoseconds!&lt;/p&gt;&lt;img src=&#34;http://static.squarespace.com/static/507f8e7184aebdcd9b93536a/t/508ce760e4b01df297a08642/1351411554167/golang-3d-engine-timing-fps-tracking-benchmark.png?format=500w&#34; /&gt;&lt;br/&gt;</description>\r\n\t\t\t<guid isPermaLink=\"false\">507f8e7184aebdcd9b93536a:507f8e7184aebdcd9b93538c:508ce732e4b0b3e60effe78f</guid>\r\n\t\t</item>\r\n\t\t<item>\r\n\t\t\t<title>Hashing uints in Go</title>\r\n\t\t\t<category domain=\"\">Coding</category>\r\n\t\t\t<category domain=\"\">Go</category>\r\n\t\t\t<category domain=\"\">Development</category>\r\n\t\t\t<link>http://go-ngine.com/blog/2012/10/27/hashing-uints-in-go</link>\r\n\t\t\t<pubDate>Sat, 27 Oct 2012 05:20:37 +0000</pubDate>\r\n\t\t\t<description>&lt;p&gt;So I needed to hash three unsigned integers into one integer value uniquely identifying that particular combination of uints, to be used as a &#34;hash key&#34; in a &lt;strong&gt;map[int]sometype&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Simple arithmetics (add or mult) are out to uniquely hash different combinations: the set 1,2,4 should produce a different hash key than 1,4,2 and 2,1,4 and 2,4,1 and 4,1,2 and 4,2,1.&lt;br&gt;&lt;/p&gt;&lt;p&gt;Found Robert Jenkins&#39; 96 bit Mix Function with a neat source snippet right there (Java). Implemented in Go and seems to work even though I&#39;m not sure if Golangs &lt;strong&gt;&amp;gt;&amp;gt;&lt;/strong&gt; right-shift operator (spec&#39;d as &lt;strong&gt;integer &amp;gt;&amp;gt; unsigned integer&lt;/strong&gt;) really works like Java&#39;s &lt;strong&gt;&amp;gt;&amp;gt;&amp;gt; &#34;unsigned right shift&#34;&lt;/strong&gt;...&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt; actually by now it dawned on me I can just use a &lt;strong&gt;[3]uint&lt;/strong&gt; as a hash key in Golang here, which is fine in this use-case. Simplicity FTW!&lt;/p&gt;&lt;p&gt;But if you&#39;re curious about this topic, here&#39;s an &lt;a href=&#34;http://programmers.stackexchange.com/questions/49550/which-hashing-algorithm-is-best-for-uniqueness-and-speed/145633#145633&#34;&gt;incredible testing &amp;amp; comparison of hashing algos&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description>\r\n\t\t\t<guid isPermaLink=\"false\">507f8e7184aebdcd9b93536a:507f8e7184aebdcd9b93538c:508b6f24e4b01df2979e331e</guid>\r\n\t\t</item>\r\n\t\t<item>\r\n\t\t\t<title>Painless XML parsing in Go; plus, how to analyse your Go source tree for package references</title>\r\n\t\t\t<category domain=\"\">Coding</category>\r\n\t\t\t<category domain=\"\">OpenGL</category>\r\n\t\t\t<category domain=\"\">Go</category>\r\n\t\t\t<category domain=\"\">Parsing</category>\r\n\t\t\t<category domain=\"\">Development</category>\r\n\t\t\t<category domain=\"\">XML</category>\r\n\t\t\t<link>http://go-ngine.com/blog/2012/10/19/painless-xml-parsing-in-go-plus-how-to-analyse-your-source-tree-for-package-references</link>\r\n\t\t\t<pubDate>Fri, 19 Oct 2012 15:28:54 +0000</pubDate>\r\n\t\t\t<description>&lt;p&gt;Getting seriously tricky stuff done in Go is, time and again, surprisingly simple.&lt;/p&gt;&lt;p&gt;Here&#39;s an interesting &#34;convoluted custom&#34; use-case I just had while working on &lt;strong&gt;go:ngine&lt;/strong&gt;. So the engine is supposed to support OpenGL versions 3.2 or higher, but during development, 99% of the time I just run under OpenGL 4.2. To stay in the flow, I don&#39;t want to consult the GL specs every time I use a GL function or enumeration. At the same time, when I push to GitHub, I&#39;d like to make sure any and all GL function or enumeration references in all go:ngine sources are either GL 3.2 or lower, or else wrapped in some conditional logic (ie. &#34;only go ahead here if client GL version supports it&#34;)...&lt;/p&gt;&lt;p&gt;So for talking to OpenGL, go:ngine uses the &lt;a href=&#34;http://github.com/chsc/gogl&#34;&gt;fantastic GoGL ​binding&lt;/a&gt;. Specifically it uses the &lt;strong&gt;gl42&lt;/strong&gt; sub-package -- don&#39;t worry, that package even works under OpenGL 3.2! --- at least, &lt;strong&gt;if&lt;/strong&gt; we &lt;em&gt;(A)&lt;/em&gt; ignore the version-related error (but not any other kind of error) returned by &lt;strong&gt;gl42.Init()&lt;/strong&gt; and &lt;em&gt;(B)&lt;/em&gt; ensure we don&#39;t use API functions or enum values newer than the detected run-time GL version. So part &lt;em&gt;(A)&lt;/em&gt; is easy, but ensuring &lt;em&gt;(B)&lt;/em&gt; at all times (when mostly I happily develop using just my 4.2-capable GPU) could over time become an issue. What to do?&lt;br&gt;&lt;/p&gt;&lt;p&gt;Ideally, I&#39;d have a simple code checker tool that I would run just occasionally -- every other week, or right before major commits. It would:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;run over the entire​ go:ngine code-base&lt;/li&gt;&lt;li&gt;for each &lt;em&gt;.go&lt;/em&gt; source file, collect all its references to the &lt;strong&gt;gl42&lt;/strong&gt; package&lt;br&gt;&lt;/li&gt;&lt;li&gt;record the name of every &lt;strong&gt;gl42&lt;/strong&gt; function or enum value referenced​ (ignoring GL types here since from what I gather none have been added ever since 3.2)&lt;br&gt;&lt;/li&gt;&lt;li&gt;​then for each such tracked reference, check a &lt;a href=&#34;http://bitbucket.org/alfonse/gl-xml-specs/downloads&#34;&gt;GL Specification XML file&lt;/a&gt; for the minimum version that would support it&lt;br&gt;&lt;/li&gt;&lt;li&gt;if the version for the func/enum reference is 3.2 or lower, ignore it​&lt;/li&gt;&lt;li&gt;otherwise, keep it and later show a summary like this:​&lt;/li&gt;&lt;/ol&gt;&lt;blockquote&gt;GL v4.2 used 4x:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function TexStorage2D:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\buffers.go&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\textures.go&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function TexStorage3D:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\textures.go&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; enum ATOMIC_COUNTER_BUFFER:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\buffers.go&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\counters.go&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function TexStorage1D:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; c:\\gd\\src\\github.com\\go3d\\go-util\\gl\\textures.go&lt;br&gt;GL v4.0 used 2x:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; enum TESS_CONTROL_SHADER:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; c:\\gd\\src\\github.com\\go3d\\go-ngine\\client\\glcore\\shaders.go&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; enum TESS_EVALUATION_SHADER:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; c:\\gd\\src\\github.com\\go3d\\go-ngine\\client\\glcore\\shaders.go​&lt;/blockquote&gt;&lt;p&gt;The above is actually real output of said tool, because I just wrote it today in just a few hours and it&#39;s only a 100 lines or so in total! That&#39;s why I find Go amazingly fun to work with... (OK,&amp;nbsp; maybe JavaScript could have done all this half the space, but I like statically-typed native-compiled code so anyway and Go&#39;s strict compiler saved me from a few bugs just right there today.)&lt;br&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Parsing all &lt;em&gt;.go&lt;/em&gt; source files was surprisingly simple just working off the &lt;a href=&#34;http://golang.org/pkg/go/ast/&#34;&gt;go/ast&lt;/a&gt; and &lt;a href=&#34;http://go-ngine.com#&#34;&gt;go/parser&lt;/a&gt; package examples.&lt;/li&gt;&lt;li&gt; Parsing the XML GL-specification file using the &lt;a href=&#34;http://golang.org/pkg/encoding/xml/&#34;&gt;encoding/xml&lt;/a&gt; package &lt;strong&gt;would have been a major pain point&lt;/strong&gt;, but before even taking the trouble to write out all XML tags as Go structs (I didn&#39;t &lt;em&gt;really&lt;/em&gt; want to &#34;unmarshal&#34; anything, thanks very much...), I luckily came across the awesome &lt;a href=&#34;http://github.com/jteeuwen/go-pkg-xmlx&#34;&gt;go-pkg-xmlx&lt;/a&gt; package -- it made loading and searching the 1.4MB spec file painless and also crucially, &lt;strong&gt;Just-Worked&lt;/strong&gt; right off the bat! Kudos to &lt;a href=&#34;http://github.com/jteeuwen/&#34;&gt;jteeuwen&lt;/a&gt;, once again great work and a superb contribution to the Go eco-system. (go:ngine also uses his &lt;a href=&#34;http://github.com/go-gl/glfw&#34;&gt;Go GLFW binding&lt;/a&gt;, which also works a &lt;em&gt;charm&lt;/em&gt; across platforms. Yay!)&lt;br&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;If you wanna see (or use) the code to parse the .go source tree, load the XML spec and checks any and all &lt;strong&gt;gogl/gl42​&lt;/strong&gt; references across a given code-base against specific OpenGL versions, &lt;a href=&#34;http://github.com/metaleap/go-ngine/tree/master/_tools/gl_imp_parser_version_checker&#34;&gt;it&#39;s right here on GitHub&lt;/a&gt;.&lt;br&gt;&lt;/p&gt;</description>\r\n\t\t\t<guid isPermaLink=\"false\">507f8e7184aebdcd9b93536a:507f8e7184aebdcd9b93538c:508171bce4b09ec41a87ca83</guid>\r\n\t\t</item>\r\n\t\t<item>\r\n\t\t\t<title>First post! Actually, post zero.</title>\r\n\t\t\t<link>http://go-ngine.com/blog/2012/10/18/first-post-actually-post-zero</link>\r\n\t\t\t<pubDate>Thu, 18 Oct 2012 07:30:53 +0000</pubDate>\r\n\t\t\t<description>&lt;p&gt;​I&#39;m too eager to get back to coding this thing, so I&#39;ll catch up with y&#39;all here later (yeah, yeah)... just testing the blogging engine here.&lt;br&gt;&lt;/p&gt;</description>\r\n\t\t\t<guid isPermaLink=\"false\">507f8e7184aebdcd9b93536a:507f8e7184aebdcd9b93538c:507fb02b84aebdcd9b9396e0</guid>\r\n\t\t</item>\r\n\t\t<language>en-US</language>\r\n\t\t<title>DevBlog - go:ngine</title>\r\n\t\t<link>http://go-ngine.com/blog/</link>\r\n\t\t<description></description>\r\n\t\t<lastBuildDate>Sun, 28 Oct 2012 14:53:48 +0000</lastBuildDate>\r\n\t</channel>\r\n</rss>\r\n"
  },
  {
    "path": "xsd-makepkg/tests/xsd-test-svg/main.go",
    "content": "package main\r\n\r\nimport (\r\n\t\"encoding/xml\"\r\n\r\n\t\"github.com/metaleap/go-xsd/xsd-makepkg/tests\"\r\n\r\n\t\"github.com/metaleap/go-util/dev/go\"\r\n\r\n\tsvg \"github.com/metaleap/go-xsd-pkg/www.w3.org/TR/2002/WD-SVG11-20020108/SVG.xsd_go\"\r\n)\r\n\r\ntype SvgDoc struct {\r\n\tXMLName xml.Name `xml:\"svg\"`\r\n\tsvg.TsvgType\r\n}\r\n\r\nfunc main() {\r\n\tvar (\r\n\t\tdirBasePath  = udevgo.GopathSrcGithub(\"metaleap\", \"go-xsd\", \"xsd-makepkg\", \"tests\", \"xsd-test-svg\")\r\n\t\tmakeEmptyDoc = func() interface{} { return &SvgDoc{} }\r\n\t)\r\n\ttests.TestViaRemarshal(dirBasePath, makeEmptyDoc)\r\n}\r\n"
  },
  {
    "path": "xsd-schema.go",
    "content": "package xsd\r\n\r\nimport (\r\n\t\"bytes\"\r\n\t\"encoding/xml\"\r\n\t\"fmt\"\r\n\t\"io\"\r\n\t\"io/ioutil\"\r\n\t\"os\"\r\n\t\"path\"\r\n\t\"path/filepath\"\r\n\t\"strings\"\r\n\r\n\t\"github.com/metaleap/go-util/fs\"\r\n\t\"github.com/metaleap/go-util/net\"\r\n\t\"github.com/metaleap/go-util/str\"\r\n)\r\n\r\nconst (\r\n\tgoPkgPrefix     = \"\"\r\n\tgoPkgSuffix     = \"_go\"\r\n\tprotSep         = \"://\"\r\n\txsdNamespaceUri = \"http://www.w3.org/2001/XMLSchema\"\r\n)\r\n\r\nvar (\r\n\tloadedSchemas = map[string]*Schema{}\r\n)\r\n\r\ntype Schema struct {\r\n\telemBase\r\n\r\n\tXMLName            xml.Name          `xml:\"schema\"`\r\n\tXMLNamespacePrefix string            `xml:\"-\"`\r\n\tXMLNamespaces      map[string]string `xml:\"-\"`\r\n\tXMLIncludedSchemas []*Schema         `xml:\"-\"`\r\n\tXSDNamespacePrefix string            `xml:\"-\"`\r\n\tXSDParentSchema    *Schema           `xml:\"-\"`\r\n\r\n\thasAttrAttributeFormDefault\r\n\thasAttrBlockDefault\r\n\thasAttrElementFormDefault\r\n\thasAttrFinalDefault\r\n\thasAttrLang\r\n\thasAttrId\r\n\thasAttrSchemaLocation\r\n\thasAttrTargetNamespace\r\n\thasAttrVersion\r\n\thasElemAnnotation\r\n\thasElemsAttribute\r\n\thasElemsAttributeGroup\r\n\thasElemsComplexType\r\n\thasElemsElement\r\n\thasElemsGroup\r\n\thasElemsInclude\r\n\thasElemsImport\r\n\thasElemsNotation\r\n\thasElemsRedefine\r\n\thasElemsSimpleType\r\n\r\n\tloadLocalPath, loadUri string\r\n}\r\n\r\nfunc (me *Schema) allSchemas(loadedSchemas map[string]bool) (schemas []*Schema) {\r\n\tschemas = append(schemas, me)\r\n\tloadedSchemas[me.loadUri] = true\r\n\tfor _, ss := range me.XMLIncludedSchemas {\r\n\t\tif v, ok := loadedSchemas[ss.loadUri]; ok && v {\r\n\t\t\tcontinue\r\n\t\t}\r\n\t\tschemas = append(schemas, ss.allSchemas(loadedSchemas)...)\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc (me *Schema) collectGlobals(bag *PkgBag, loadedSchemas map[string]bool) {\r\n\tloadedSchemas[me.loadUri] = true\r\n\tfor _, att := range me.Attributes {\r\n\t\tbag.allAtts = append(bag.allAtts, att)\r\n\t}\r\n\tfor _, agr := range me.AttributeGroups {\r\n\t\tbag.allAttGroups = append(bag.allAttGroups, agr)\r\n\t}\r\n\tfor _, el := range me.Elements {\r\n\t\tbag.allElems = append(bag.allElems, el)\r\n\t}\r\n\tfor _, egr := range me.Groups {\r\n\t\tbag.allElemGroups = append(bag.allElemGroups, egr)\r\n\t}\r\n\tfor _, not := range me.Notations {\r\n\t\tbag.allNotations = append(bag.allNotations, not)\r\n\t}\r\n\tfor _, ss := range me.XMLIncludedSchemas {\r\n\t\tif v, ok := loadedSchemas[ss.loadUri]; ok && v {\r\n\t\t\tcontinue\r\n\t\t}\r\n\t\tss.collectGlobals(bag, loadedSchemas)\r\n\t}\r\n}\r\n\r\nfunc (me *Schema) globalComplexType(bag *PkgBag, name string, loadedSchemas map[string]bool) (ct *ComplexType) {\r\n\tvar imp string\r\n\tfor _, ct = range me.ComplexTypes {\r\n\t\tif bag.resolveQnameRef(ustr.PrefixWithSep(me.XMLNamespacePrefix, \":\", ct.Name.String()), \"T\", &imp) == name {\r\n\t\t\treturn\r\n\t\t}\r\n\t}\r\n\tloadedSchemas[me.loadUri] = true\r\n\tfor _, ss := range me.XMLIncludedSchemas {\r\n\t\tif v, ok := loadedSchemas[ss.loadUri]; ok && v {\r\n\t\t\t//fmt.Printf(\"Ignoring processed schema: %s\\n\", ss.loadUri)\r\n\t\t\tcontinue\r\n\t\t}\r\n\t\tif ct = ss.globalComplexType(bag, name, loadedSchemas); ct != nil {\r\n\t\t\treturn\r\n\t\t}\r\n\t}\r\n\tct = nil\r\n\treturn\r\n}\r\n\r\nfunc (me *Schema) globalElement(bag *PkgBag, name string) (el *Element) {\r\n\tvar imp string\r\n\tif len(name) > 0 {\r\n\t\tvar rname = bag.resolveQnameRef(name, \"\", &imp)\r\n\t\tfor _, el = range me.Elements {\r\n\t\t\tif bag.resolveQnameRef(ustr.PrefixWithSep(me.XMLNamespacePrefix, \":\", el.Name.String()), \"\", &imp) == rname {\r\n\t\t\t\treturn\r\n\t\t\t}\r\n\t\t}\r\n\t\tfor _, ss := range me.XMLIncludedSchemas {\r\n\t\t\tif el = ss.globalElement(bag, name); el != nil {\r\n\t\t\t\treturn\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tel = nil\r\n\treturn\r\n}\r\n\r\nfunc (me *Schema) globalSubstitutionElems(el *Element, loadedSchemas map[string]bool) (els []*Element) {\r\n\tvar elName = el.Ref.String()\r\n\tif len(elName) == 0 {\r\n\t\telName = el.Name.String()\r\n\t}\r\n\tfor _, tle := range me.Elements {\r\n\t\tif (tle != el) && (len(tle.SubstitutionGroup) > 0) {\r\n\t\t\tif tle.SubstitutionGroup.String()[(strings.Index(tle.SubstitutionGroup.String(), \":\")+1):] == elName {\r\n\t\t\t\tels = append(els, tle)\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\tloadedSchemas[me.loadUri] = true\r\n\tfor _, inc := range me.XMLIncludedSchemas {\r\n\t\tif v, ok := loadedSchemas[inc.loadUri]; ok && v {\r\n\t\t\t//fmt.Printf(\"Ignoring processed schema: %s\\n\", inc.loadUri)\r\n\t\t\tcontinue\r\n\t\t}\r\n\t\tels = append(els, inc.globalSubstitutionElems(el, loadedSchemas)...)\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc (me *Schema) MakeGoPkgSrcFile() (goOutFilePath string, err error) {\r\n\tvar goOutDirPath = filepath.Join(filepath.Dir(me.loadLocalPath), goPkgPrefix+filepath.Base(me.loadLocalPath)+goPkgSuffix)\r\n\tgoOutFilePath = filepath.Join(goOutDirPath, path.Base(me.loadUri)+\".go\")\r\n\tvar bag = newPkgBag(me)\r\n\tloadedSchemas := make(map[string]bool)\r\n\tfor _, inc := range me.allSchemas(loadedSchemas) {\r\n\t\tbag.Schema = inc\r\n\t\tinc.makePkg(bag)\r\n\t}\r\n\tbag.Schema = me\r\n\tme.hasElemAnnotation.makePkg(bag)\r\n\tbag.appendFmt(true, \"\")\r\n\tme.makePkg(bag)\r\n\tif err = ufs.EnsureDirExists(filepath.Dir(goOutFilePath)); err == nil {\r\n\t\terr = ufs.WriteTextFile(goOutFilePath, bag.assembleSource())\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc (me *Schema) onLoad(rootAtts []xml.Attr, loadUri, localPath string) (err error) {\r\n\tvar tmpUrl string\r\n\tvar sd *Schema\r\n\tloadedSchemas[loadUri] = me\r\n\tme.loadLocalPath, me.loadUri = localPath, loadUri\r\n\tme.XMLNamespaces = map[string]string{}\r\n\tfor _, att := range rootAtts {\r\n\t\tif att.Name.Space == \"xmlns\" {\r\n\t\t\tme.XMLNamespaces[att.Name.Local] = att.Value\r\n\t\t} else if len(att.Name.Space) > 0 {\r\n\r\n\t\t} else if att.Name.Local == \"xmlns\" {\r\n\t\t\tme.XMLNamespaces[\"\"] = att.Value\r\n\t\t}\r\n\t}\r\n\tfor k, v := range me.XMLNamespaces {\r\n\t\tif v == xsdNamespaceUri {\r\n\t\t\tme.XSDNamespacePrefix = k\r\n\t\t} else if v == me.TargetNamespace.String() {\r\n\t\t\tme.XMLNamespacePrefix = k\r\n\t\t}\r\n\t}\r\n\tif len(me.XMLNamespaces[\"xml\"]) == 0 {\r\n\t\tme.XMLNamespaces[\"xml\"] = \"http://www.w3.org/XML/1998/namespace\"\r\n\t}\r\n\tme.XMLIncludedSchemas = []*Schema{}\r\n\tfor _, inc := range me.Includes {\r\n\t\tif tmpUrl = inc.SchemaLocation.String(); strings.Index(tmpUrl, protSep) < 0 {\r\n\t\t\ttmpUrl = path.Join(path.Dir(loadUri), tmpUrl)\r\n\t\t}\r\n\t\tvar ok bool\r\n\t\tvar toLoadUri string\r\n\t\tif pos := strings.Index(tmpUrl, protSep); pos >= 0 {\r\n\t\t\ttoLoadUri = tmpUrl[pos+len(protSep):]\r\n\t\t} else {\r\n\t\t\ttoLoadUri = tmpUrl\r\n\t\t}\r\n\t\tif sd, ok = loadedSchemas[toLoadUri]; !ok {\r\n\t\t\tif sd, err = LoadSchema(tmpUrl, len(localPath) > 0); err != nil {\r\n\t\t\t\treturn\r\n\t\t\t}\r\n\t\t}\r\n\t\tsd.XSDParentSchema = me\r\n\t\tme.XMLIncludedSchemas = append(me.XMLIncludedSchemas, sd)\r\n\t}\r\n\tme.initElement(nil)\r\n\treturn\r\n}\r\n\r\nfunc (me *Schema) RootSchema(pathSchemas []string) *Schema {\r\n\tif me.XSDParentSchema != nil {\r\n\t\tfor _, sch := range pathSchemas {\r\n\t\t\tif me.XSDParentSchema.loadUri == sch {\r\n\t\t\t\tfmt.Printf(\"schema loop detected %+v - > %s!\\n\", pathSchemas, me.XSDParentSchema.loadUri)\r\n\t\t\t\treturn me\r\n\t\t\t}\r\n\t\t}\r\n\t\tpathSchemas = append(pathSchemas, me.loadUri)\r\n\t\treturn me.XSDParentSchema.RootSchema(pathSchemas)\r\n\t}\r\n\treturn me\r\n}\r\n\r\nfunc ClearLoadedSchemasCache() {\r\n\tloadedSchemas = map[string]*Schema{}\r\n}\r\n\r\nfunc loadSchema(r io.Reader, loadUri, localPath string) (sd *Schema, err error) {\r\n\tvar data []byte\r\n\tvar rootAtts []xml.Attr\r\n\tif data, err = ioutil.ReadAll(r); err == nil {\r\n\t\tvar t xml.Token\r\n\t\tsd = new(Schema)\r\n\t\tfor xd := xml.NewDecoder(bytes.NewReader(data)); err == nil; {\r\n\t\t\tif t, err = xd.Token(); err == nil {\r\n\t\t\t\tif startEl, ok := t.(xml.StartElement); ok {\r\n\t\t\t\t\trootAtts = startEl.Attr\r\n\t\t\t\t\tbreak\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\tif err = xml.Unmarshal(data, sd); err == nil {\r\n\t\t\terr = sd.onLoad(rootAtts, loadUri, localPath)\r\n\t\t}\r\n\t\tif err != nil {\r\n\t\t\tsd = nil\r\n\t\t}\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc loadSchemaFile(filename string, loadUri string) (sd *Schema, err error) {\r\n\tvar file *os.File\r\n\tif file, err = os.Open(filename); err == nil {\r\n\t\tdefer file.Close()\r\n\t\tsd, err = loadSchema(file, loadUri, filename)\r\n\t}\r\n\treturn\r\n}\r\n\r\nfunc LoadSchema(uri string, localCopy bool) (sd *Schema, err error) {\r\n\tvar protocol, localPath string\r\n\tvar rc io.ReadCloser\r\n\r\n\tif pos := strings.Index(uri, protSep); pos < 0 {\r\n\t\tprotocol = \"http\" + protSep\r\n\t} else {\r\n\t\tprotocol = uri[:pos+len(protSep)]\r\n\t\turi = uri[pos+len(protSep):]\r\n\t}\r\n\tif localCopy {\r\n\t\tif localPath = filepath.Join(PkgGen.BaseCodePath, uri); !ufs.FileExists(localPath) {\r\n\t\t\tif err = ufs.EnsureDirExists(filepath.Dir(localPath)); err == nil {\r\n\t\t\t\terr = unet.DownloadFile(protocol+uri, localPath)\r\n\t\t\t}\r\n\t\t}\r\n\t\tif err == nil {\r\n\t\t\tif sd, err = loadSchemaFile(localPath, uri); sd != nil {\r\n\t\t\t\tsd.loadLocalPath = localPath\r\n\t\t\t}\r\n\t\t}\r\n\t} else if rc, err = unet.OpenRemoteFile(protocol + uri); err == nil {\r\n\t\tdefer rc.Close()\r\n\t\tsd, err = loadSchema(rc, uri, \"\")\r\n\t}\r\n\treturn\r\n}\r\n"
  }
]